From dbdb0eea77ec9a0cef17cf5556bcfeb912a7906f Mon Sep 17 00:00:00 2001 From: Alicia Date: Wed, 5 Jun 2024 17:08:33 +0200 Subject: [PATCH 01/19] wip - setup of the cloud function base logic --- cloud_functions/README.md | 56 + .../earth_engine_tiler/.editorconfig | 22 + .../earth_engine_tiler/.eslintignore | 1 + .../earth_engine_tiler/.eslintrc.json | 3 + .../earth_engine_tiler/.gcloudignore | 7 +- cloud_functions/earth_engine_tiler/.gitignore | 4 + .../earth_engine_tiler/.prettierrc.js | 3 + .../earth_engine_tiler/package-lock.json | 5025 +++++++++-------- .../earth_engine_tiler/package.json | 16 +- .../src/geeAssets/EEDataset.d.ts | 20 + .../geeAssets/ModisNetPrimaryProduction.ts | 25 + .../earth_engine_tiler/src/index.ts | 85 +- .../earth_engine_tiler/src/utils.ts | 32 + .../earth_engine_tiler/tsconfig.json | 2 +- 14 files changed, 2828 insertions(+), 2473 deletions(-) create mode 100644 cloud_functions/README.md create mode 100644 cloud_functions/earth_engine_tiler/.editorconfig create mode 100644 cloud_functions/earth_engine_tiler/.eslintignore create mode 100644 cloud_functions/earth_engine_tiler/.eslintrc.json create mode 100644 cloud_functions/earth_engine_tiler/.gitignore create mode 100644 cloud_functions/earth_engine_tiler/.prettierrc.js create mode 100644 cloud_functions/earth_engine_tiler/src/geeAssets/EEDataset.d.ts create mode 100644 cloud_functions/earth_engine_tiler/src/geeAssets/ModisNetPrimaryProduction.ts create mode 100644 cloud_functions/earth_engine_tiler/src/utils.ts diff --git a/cloud_functions/README.md b/cloud_functions/README.md new file mode 100644 index 0000000..04a2b0b --- /dev/null +++ b/cloud_functions/README.md @@ -0,0 +1,56 @@ +# Global rangelands cloud functions + +Alerts and analysis accessing for the mangrove atlas project + +## Cloud functions + +[Documentation of the library](https://www.npmjs.com/package/@google-cloud/functions-framework) to simulate a cloud function in your local machine. +In order to deploy the cloud function you need to create a service account and a bucket in Google Cloud Storage. + +Also automatic deployment of the cloud function is available at push in develop/master + +### earth engine tiler + +1. Go to the folder `earth_engine_tiler` +2. Download `credentials.json` and save to the root of the project (you will require access to google earth engine). +3. For development run `npm install && npm run watch`. +4. Open the browser and go to `http://localhost:8080/` + +By default the endpoint returns all data for all locations and aggregated by month. + +Params: + +* `location_id`, location ID from Mangrove API. Optional. +* `start_date`, start date in format `YYYY-MM-DD`. Optional. +* `end_date`, end date in format `YYYY-MM-DD`. Optional. +* geometry, geojson of the area to filter. Optional, should be located in the body. + +Example request: + +``` bash +curl -X GET -G \ +'http://localhost:8080?location_id=MOZ&start_date=2019-01-01&end_date=2022-01-01' +``` + +Example response: + +``` json +[ + { + "date": { + "value": "2020-01-01" + }, + "count": 492 + } +] +``` + +#### Deploying the function + +```bash +gcloud functions deploy fetch-alerts --runtime nodejs10 --trigger-http --memory 128MB --timeout 540s --region us-central1 --entry-point fetchAlerts --service-account-file ./credentials.json --source ./cloud-functions/fetch-alerts +``` + +``` bash +curl --request GET 'https://us-central1-mangrove-atlas-246414.cloudfunctions.net/fetch-alerts?location_id=MOZ&start_date=2019-01-01&end_date=2022-01-01' +``` diff --git a/cloud_functions/earth_engine_tiler/.editorconfig b/cloud_functions/earth_engine_tiler/.editorconfig new file mode 100644 index 0000000..dfe471b --- /dev/null +++ b/cloud_functions/earth_engine_tiler/.editorconfig @@ -0,0 +1,22 @@ +# editorconfig.org + +root = true + +[*] +indent_style = space +indent_size = 2 +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true + +[*.md] +indent_style = tab +indent_size = 4 +trim_trailing_whitespace = false + +[*.py] +indent_size = 4 + +[Dockerfile] +indent_size = 4 diff --git a/cloud_functions/earth_engine_tiler/.eslintignore b/cloud_functions/earth_engine_tiler/.eslintignore new file mode 100644 index 0000000..567609b --- /dev/null +++ b/cloud_functions/earth_engine_tiler/.eslintignore @@ -0,0 +1 @@ +build/ diff --git a/cloud_functions/earth_engine_tiler/.eslintrc.json b/cloud_functions/earth_engine_tiler/.eslintrc.json new file mode 100644 index 0000000..f95bb33 --- /dev/null +++ b/cloud_functions/earth_engine_tiler/.eslintrc.json @@ -0,0 +1,3 @@ +{ + "extends": "./node_modules/gts/" +} diff --git a/cloud_functions/earth_engine_tiler/.gcloudignore b/cloud_functions/earth_engine_tiler/.gcloudignore index 483a9c4..0486179 100644 --- a/cloud_functions/earth_engine_tiler/.gcloudignore +++ b/cloud_functions/earth_engine_tiler/.gcloudignore @@ -1 +1,6 @@ -package-lock.json \ No newline at end of file +.editorconfig +.eslintignore +.eslintrc.json +.gitignore +.prettierrc.js +package-lock.json diff --git a/cloud_functions/earth_engine_tiler/.gitignore b/cloud_functions/earth_engine_tiler/.gitignore new file mode 100644 index 0000000..e4891f4 --- /dev/null +++ b/cloud_functions/earth_engine_tiler/.gitignore @@ -0,0 +1,4 @@ +node_modules +build +credentials.json +.env diff --git a/cloud_functions/earth_engine_tiler/.prettierrc.js b/cloud_functions/earth_engine_tiler/.prettierrc.js new file mode 100644 index 0000000..ff15483 --- /dev/null +++ b/cloud_functions/earth_engine_tiler/.prettierrc.js @@ -0,0 +1,3 @@ +module.exports = { + ...require('gts/.prettierrc.json') +} diff --git a/cloud_functions/earth_engine_tiler/package-lock.json b/cloud_functions/earth_engine_tiler/package-lock.json index 16e04be..a680bb0 100644 --- a/cloud_functions/earth_engine_tiler/package-lock.json +++ b/cloud_functions/earth_engine_tiler/package-lock.json @@ -1,64 +1,99 @@ { - "name": "earth_engine_tiler", + "name": "analysis", "version": "1.0.0", - "lockfileVersion": 3, + "lockfileVersion": 1, "requires": true, - "packages": { - "": { - "name": "earth_engine_tiler", - "version": "1.0.0", - "license": "ISC", - "devDependencies": { - "@google-cloud/functions-framework": "3.1.1", - "@types/express": "^4.17.13", - "@types/node": "^14.11.2", - "gts": "^3.1.0", - "typescript": "^4.0.3" - } - }, - "node_modules/@babel/code-frame": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.7.tgz", - "integrity": "sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==", + "dependencies": { + "@babel/code-frame": { + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz", + "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==", "dev": true, - "dependencies": { - "@babel/highlight": "^7.24.7", - "picocolors": "^1.0.0" - }, - "engines": { - "node": ">=6.9.0" + "requires": { + "@babel/highlight": "^7.10.4" } }, - "node_modules/@babel/helper-validator-identifier": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz", - "integrity": "sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==", - "dev": true, - "engines": { - "node": ">=6.9.0" - } + "@babel/helper-validator-identifier": { + "version": "7.19.1", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz", + "integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==", + "dev": true }, - "node_modules/@babel/highlight": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.7.tgz", - "integrity": "sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==", - "dev": true, - "dependencies": { - "@babel/helper-validator-identifier": "^7.24.7", - "chalk": "^2.4.2", - "js-tokens": "^4.0.0", - "picocolors": "^1.0.0" - }, - "engines": { - "node": ">=6.9.0" + "@babel/highlight": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", + "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", + "dev": true, + "requires": { + "@babel/helper-validator-identifier": "^7.18.6", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } } }, - "node_modules/@eslint/eslintrc": { + "@eslint/eslintrc": { "version": "0.4.3", "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.3.tgz", "integrity": "sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==", "dev": true, - "dependencies": { + "requires": { "ajv": "^6.12.4", "debug": "^4.1.1", "espree": "^7.3.0", @@ -69,70 +104,42 @@ "minimatch": "^3.0.4", "strip-json-comments": "^3.1.1" }, - "engines": { - "node": "^10.12.0 || >=12.0.0" - } - }, - "node_modules/@eslint/eslintrc/node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "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/@eslint/eslintrc/node_modules/debug": { - "version": "4.3.5", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.5.tgz", - "integrity": "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==", - "dev": true, "dependencies": { - "ms": "2.1.2" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true + "debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "requires": { + "ms": "2.1.2" + } + }, + "ignore": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", + "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", + "dev": true + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true } } }, - "node_modules/@eslint/eslintrc/node_modules/ignore": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", - "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", - "dev": true, - "engines": { - "node": ">= 4" - } - }, - "node_modules/@eslint/eslintrc/node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true - }, - "node_modules/@eslint/eslintrc/node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true - }, - "node_modules/@google-cloud/functions-framework": { + "@google-cloud/functions-framework": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/@google-cloud/functions-framework/-/functions-framework-3.1.1.tgz", "integrity": "sha512-ZC85zX757DUYuE6H0HONCD40PPdim4Ew0gOBVwtm7Lb5jqv7t2TeM8c2B3btHwaNnxBVOdMOhbwwXzVLsivOaA==", "dev": true, - "dependencies": { + "requires": { "@types/express": "4.17.13", "body-parser": "^1.18.3", "cloudevents": "^6.0.0", @@ -142,222 +149,208 @@ "read-pkg-up": "^7.0.1", "semver": "^7.3.5" }, - "bin": { - "functions-framework": "build/src/main.js", - "functions-framework-nodejs": "build/src/main.js" - }, - "engines": { - "node": ">=10.0.0" + "dependencies": { + "semver": { + "version": "7.3.7", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz", + "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + } } }, - "node_modules/@google-cloud/functions-framework/node_modules/@types/express": { - "version": "4.17.13", - "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.13.tgz", - "integrity": "sha512-6bSZTPaTIACxn48l50SR+axgrqm6qXFIxrdAKaG6PaJk3+zuUr35hBlgT7vOmJcum+OEaIBLtHV/qloEAFITeA==", - "dev": true, - "dependencies": { - "@types/body-parser": "*", - "@types/express-serve-static-core": "^4.17.18", - "@types/qs": "*", - "@types/serve-static": "*" + "@google/earthengine": { + "version": "0.1.324", + "resolved": "https://registry.npmjs.org/@google/earthengine/-/earthengine-0.1.324.tgz", + "integrity": "sha512-vo7R6WDhh38GriO98wWBOMRk8xUhrV0fACFboAhJ/f37PVrOsCtLx6Mg+GQfwdxDo9EDInHr0MjNsBRviOnh0A==", + "requires": { + "googleapis": "^92.0.0", + "xmlhttprequest": "^1.8.0" } }, - "node_modules/@humanwhocodes/config-array": { + "@humanwhocodes/config-array": { "version": "0.5.0", "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.5.0.tgz", "integrity": "sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==", "dev": true, - "dependencies": { + "requires": { "@humanwhocodes/object-schema": "^1.2.0", "debug": "^4.1.1", "minimatch": "^3.0.4" }, - "engines": { - "node": ">=10.10.0" - } - }, - "node_modules/@humanwhocodes/config-array/node_modules/debug": { - "version": "4.3.5", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.5.tgz", - "integrity": "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==", - "dev": true, "dependencies": { - "ms": "2.1.2" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true + "debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "requires": { + "ms": "2.1.2" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true } } }, - "node_modules/@humanwhocodes/config-array/node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true - }, - "node_modules/@humanwhocodes/object-schema": { + "@humanwhocodes/object-schema": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", "dev": true }, - "node_modules/@nodelib/fs.scandir": { + "@nodelib/fs.scandir": { "version": "2.1.5", "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", "dev": true, - "dependencies": { + "requires": { "@nodelib/fs.stat": "2.0.5", "run-parallel": "^1.1.9" - }, - "engines": { - "node": ">= 8" } }, - "node_modules/@nodelib/fs.stat": { + "@nodelib/fs.stat": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", - "dev": true, - "engines": { - "node": ">= 8" - } + "dev": true }, - "node_modules/@nodelib/fs.walk": { + "@nodelib/fs.walk": { "version": "1.2.8", "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", "dev": true, - "dependencies": { + "requires": { "@nodelib/fs.scandir": "2.1.5", "fastq": "^1.6.0" - }, - "engines": { - "node": ">= 8" } }, - "node_modules/@types/body-parser": { - "version": "1.19.5", - "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.5.tgz", - "integrity": "sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==", + "@sindresorhus/is": { + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.14.0.tgz", + "integrity": "sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==", + "dev": true + }, + "@szmarczak/http-timer": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-1.1.2.tgz", + "integrity": "sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==", + "dev": true, + "requires": { + "defer-to-connect": "^1.0.1" + } + }, + "@types/body-parser": { + "version": "1.19.2", + "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.2.tgz", + "integrity": "sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==", "dev": true, - "dependencies": { + "requires": { "@types/connect": "*", "@types/node": "*" } }, - "node_modules/@types/connect": { - "version": "3.4.38", - "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.38.tgz", - "integrity": "sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==", + "@types/connect": { + "version": "3.4.35", + "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz", + "integrity": "sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==", "dev": true, - "dependencies": { + "requires": { "@types/node": "*" } }, - "node_modules/@types/express": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.21.tgz", - "integrity": "sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==", + "@types/express": { + "version": "4.17.13", + "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.13.tgz", + "integrity": "sha512-6bSZTPaTIACxn48l50SR+axgrqm6qXFIxrdAKaG6PaJk3+zuUr35hBlgT7vOmJcum+OEaIBLtHV/qloEAFITeA==", "dev": true, - "dependencies": { + "requires": { "@types/body-parser": "*", - "@types/express-serve-static-core": "^4.17.33", + "@types/express-serve-static-core": "^4.17.18", "@types/qs": "*", "@types/serve-static": "*" } }, - "node_modules/@types/express-serve-static-core": { - "version": "4.19.3", - "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.19.3.tgz", - "integrity": "sha512-KOzM7MhcBFlmnlr/fzISFF5vGWVSvN6fTd4T+ExOt08bA/dA5kpSzY52nMsI1KDFmUREpJelPYyuslLRSjjgCg==", + "@types/express-serve-static-core": { + "version": "4.17.29", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.29.tgz", + "integrity": "sha512-uMd++6dMKS32EOuw1Uli3e3BPgdLIXmezcfHv7N4c1s3gkhikBplORPpMq3fuWkxncZN1reb16d5n8yhQ80x7Q==", "dev": true, - "dependencies": { + "requires": { "@types/node": "*", "@types/qs": "*", - "@types/range-parser": "*", - "@types/send": "*" + "@types/range-parser": "*" } }, - "node_modules/@types/http-errors": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.4.tgz", - "integrity": "sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==", - "dev": true - }, - "node_modules/@types/json-schema": { - "version": "7.0.15", - "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", - "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", + "@types/json-schema": { + "version": "7.0.11", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz", + "integrity": "sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==", "dev": true }, - "node_modules/@types/mime": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.5.tgz", - "integrity": "sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==", + "@types/mime": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.2.tgz", + "integrity": "sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw==", "dev": true }, - "node_modules/@types/minimist": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.5.tgz", - "integrity": "sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==", + "@types/minimist": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.2.tgz", + "integrity": "sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==", "dev": true }, - "node_modules/@types/node": { - "version": "14.18.63", - "resolved": "https://registry.npmjs.org/@types/node/-/node-14.18.63.tgz", - "integrity": "sha512-fAtCfv4jJg+ExtXhvCkCqUKZ+4ok/JQk01qDKhL5BDDoS3AxKXhV5/MAVUZyQnSEd2GT92fkgZl0pz0Q0AzcIQ==", + "@types/node": { + "version": "14.18.21", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.18.21.tgz", + "integrity": "sha512-x5W9s+8P4XteaxT/jKF0PSb7XEvo5VmqEWgsMlyeY4ZlLK8I6aH6g5TPPyDlLAep+GYf4kefb7HFyc7PAO3m+Q==", "dev": true }, - "node_modules/@types/normalize-package-data": { - "version": "2.4.4", - "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz", - "integrity": "sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==", + "@types/normalize-package-data": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz", + "integrity": "sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==", "dev": true }, - "node_modules/@types/qs": { - "version": "6.9.15", - "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.15.tgz", - "integrity": "sha512-uXHQKES6DQKKCLh441Xv/dwxOq1TVS3JPUMlEqoEglvlhR6Mxnlew/Xq/LRVHpLyk7iK3zODe1qYHIMltO7XGg==", + "@types/qs": { + "version": "6.9.7", + "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.7.tgz", + "integrity": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==", "dev": true }, - "node_modules/@types/range-parser": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.7.tgz", - "integrity": "sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==", + "@types/range-parser": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.4.tgz", + "integrity": "sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==", "dev": true }, - "node_modules/@types/send": { - "version": "0.17.4", - "resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.4.tgz", - "integrity": "sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==", + "@types/serve-static": { + "version": "1.13.10", + "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.13.10.tgz", + "integrity": "sha512-nCkHGI4w7ZgAdNkrEu0bv+4xNV/XDqW+DydknebMOQwkpDGx8G+HTlj7R7ABI8i8nKxVw0wtKPi1D+lPOkh4YQ==", "dev": true, - "dependencies": { + "requires": { "@types/mime": "^1", "@types/node": "*" } }, - "node_modules/@types/serve-static": { - "version": "1.15.7", - "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.7.tgz", - "integrity": "sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw==", - "dev": true, - "dependencies": { - "@types/http-errors": "*", - "@types/node": "*", - "@types/send": "*" - } + "@types/validator": { + "version": "12.0.1", + "resolved": "https://registry.npmjs.org/@types/validator/-/validator-12.0.1.tgz", + "integrity": "sha512-l57fIANZLMe8DArz+SDb+7ATXnDm15P7u2wHBw5mb0aSMd+UuvmvhouBF2hdLgQPDMJ39sh9g2MJO4GkZ0VAdQ==", + "dev": true }, - "node_modules/@typescript-eslint/eslint-plugin": { + "@typescript-eslint/eslint-plugin": { "version": "4.33.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.33.0.tgz", "integrity": "sha512-aINiAxGVdOl1eJyVjaWn/YcVAq4Gi/Yo35qHGCnqbWVz61g39D0h23veY/MA0rFFGfxK7TySg2uwDeNv+JgVpg==", "dev": true, - "dependencies": { + "requires": { "@typescript-eslint/experimental-utils": "4.33.0", "@typescript-eslint/scope-manager": "4.33.0", "debug": "^4.3.1", @@ -367,156 +360,98 @@ "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" - }, - "peerDependencies": { - "@typescript-eslint/parser": "^4.0.0", - "eslint": "^5.0.0 || ^6.0.0 || ^7.0.0" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@typescript-eslint/eslint-plugin/node_modules/debug": { - "version": "4.3.5", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.5.tgz", - "integrity": "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==", - "dev": true, "dependencies": { - "ms": "2.1.2" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true + "debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "requires": { + "ms": "2.1.2" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "semver": { + "version": "7.3.7", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz", + "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } } } }, - "node_modules/@typescript-eslint/eslint-plugin/node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true - }, - "node_modules/@typescript-eslint/experimental-utils": { + "@typescript-eslint/experimental-utils": { "version": "4.33.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.33.0.tgz", "integrity": "sha512-zeQjOoES5JFjTnAhI5QY7ZviczMzDptls15GFsI6jyUOq0kOf9+WonkhtlIhh0RgHRnqj5gdNxW5j1EvAyYg6Q==", "dev": true, - "dependencies": { + "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" - }, - "engines": { - "node": "^10.12.0 || >=12.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "*" } }, - "node_modules/@typescript-eslint/parser": { + "@typescript-eslint/parser": { "version": "4.33.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.33.0.tgz", "integrity": "sha512-ZohdsbXadjGBSK0/r+d87X0SBmKzOq4/S5nzK6SBgJspFo9/CUDJ7hjayuze+JK7CZQLDMroqytp7pOcFKTxZA==", "dev": true, - "dependencies": { + "requires": { "@typescript-eslint/scope-manager": "4.33.0", "@typescript-eslint/types": "4.33.0", "@typescript-eslint/typescript-estree": "4.33.0", "debug": "^4.3.1" }, - "engines": { - "node": "^10.12.0 || >=12.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "^5.0.0 || ^6.0.0 || ^7.0.0" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@typescript-eslint/parser/node_modules/debug": { - "version": "4.3.5", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.5.tgz", - "integrity": "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==", - "dev": true, "dependencies": { - "ms": "2.1.2" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true + "debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "requires": { + "ms": "2.1.2" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true } } }, - "node_modules/@typescript-eslint/parser/node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true - }, - "node_modules/@typescript-eslint/scope-manager": { + "@typescript-eslint/scope-manager": { "version": "4.33.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.33.0.tgz", "integrity": "sha512-5IfJHpgTsTZuONKbODctL4kKuQje/bzBRkwHE8UOZ4f89Zeddg+EGZs8PD8NcN4LdM3ygHWYB3ukPAYjvl/qbQ==", "dev": true, - "dependencies": { + "requires": { "@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": { + "@typescript-eslint/types": { "version": "4.33.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.33.0.tgz", "integrity": "sha512-zKp7CjQzLQImXEpLt2BUw1tvOMPfNoTAfb8l51evhYbOEEzdWyQNmHWWGPR6hwKJDAi+1VXSBmnhL9kyVTTOuQ==", - "dev": true, - "engines": { - "node": "^8.10.0 || ^10.13.0 || >=11.10.1" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } + "dev": true }, - "node_modules/@typescript-eslint/typescript-estree": { + "@typescript-eslint/typescript-estree": { "version": "4.33.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.33.0.tgz", "integrity": "sha512-rkWRY1MPFzjwnEVHsxGemDzqqddw2QbTJlICPD9p9I9LfsO8fdmfQPOX3uKfUaGRDFJbfrtm/sXhVXN4E+bzCA==", "dev": true, - "dependencies": { + "requires": { "@typescript-eslint/types": "4.33.0", "@typescript-eslint/visitor-keys": "4.33.0", "debug": "^4.3.1", @@ -525,677 +460,895 @@ "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/typescript-estree/node_modules/debug": { - "version": "4.3.5", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.5.tgz", - "integrity": "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==", - "dev": true, "dependencies": { - "ms": "2.1.2" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true + "debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "requires": { + "ms": "2.1.2" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "semver": { + "version": "7.3.7", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz", + "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } } } }, - "node_modules/@typescript-eslint/typescript-estree/node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true - }, - "node_modules/@typescript-eslint/visitor-keys": { + "@typescript-eslint/visitor-keys": { "version": "4.33.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.33.0.tgz", "integrity": "sha512-uqi/2aSz9g2ftcHWf8uLPJA70rUv6yuMW5Bohw+bwcuzaxQIHaKFZCKGoGXIrc9vkTJ3+0txM73K0Hq3d5wgIg==", "dev": true, - "dependencies": { + "requires": { "@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/accepts": { + "abbrev": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", + "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", + "dev": true + }, + "abort-controller": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz", + "integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==", + "requires": { + "event-target-shim": "^5.0.0" + } + }, + "accepts": { "version": "1.3.8", "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", "dev": true, - "dependencies": { + "requires": { "mime-types": "~2.1.34", "negotiator": "0.6.3" - }, - "engines": { - "node": ">= 0.6" } }, - "node_modules/acorn": { + "acorn": { "version": "7.4.1", "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", - "dev": true, - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } + "dev": true }, - "node_modules/acorn-jsx": { + "acorn-jsx": { "version": "5.3.2", "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", - "dev": true, - "peerDependencies": { - "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + "dev": true + }, + "agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "requires": { + "debug": "4" + }, + "dependencies": { + "debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "requires": { + "ms": "2.1.2" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + } } }, - "node_modules/ajv": { - "version": "8.16.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.16.0.tgz", - "integrity": "sha512-F0twR8U1ZU67JIEtekUcLkXkoO5mMMmgGD8sK/xUFzJ805jxHQl92hImFAqqXMyMYjSPOyUPAwHYhB72g5sTXw==", + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", "dev": true, - "dependencies": { - "fast-deep-equal": "^3.1.3", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.4.1" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" + "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" } }, - "node_modules/ajv-formats": { + "ajv-formats": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", "dev": true, - "dependencies": { - "ajv": "^8.0.0" - }, - "peerDependencies": { + "requires": { "ajv": "^8.0.0" }, - "peerDependenciesMeta": { + "dependencies": { "ajv": { - "optional": true + "version": "8.11.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", + "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + } + }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true } } }, - "node_modules/ansi-colors": { + "ansi-align": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.1.tgz", + "integrity": "sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==", + "dev": true, + "requires": { + "string-width": "^4.1.0" + } + }, + "ansi-colors": { "version": "4.1.3", "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz", "integrity": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==", - "dev": true, - "engines": { - "node": ">=6" - } + "dev": true }, - "node_modules/ansi-escapes": { + "ansi-escapes": { "version": "4.3.2", "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", "dev": true, - "dependencies": { + "requires": { "type-fest": "^0.21.3" }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/ansi-escapes/node_modules/type-fest": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", - "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "dependencies": { + "type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "dev": true + } } }, - "node_modules/ansi-regex": { + "ansi-regex": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, - "engines": { - "node": ">=8" + "requires": { + "color-convert": "^2.0.1" } }, - "node_modules/ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "anymatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", + "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", "dev": true, - "dependencies": { - "color-convert": "^1.9.0" - }, - "engines": { - "node": ">=4" + "requires": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" } }, - "node_modules/argparse": { + "argparse": { "version": "1.0.10", "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", "dev": true, - "dependencies": { + "requires": { "sprintf-js": "~1.0.2" } }, - "node_modules/array-flatten": { + "array-flatten": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", "dev": true }, - "node_modules/array-union": { + "array-union": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", - "dev": true, - "engines": { - "node": ">=8" - } + "dev": true }, - "node_modules/arrify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", - "integrity": "sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } + "arrify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/arrify/-/arrify-2.0.1.tgz", + "integrity": "sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==" }, - "node_modules/astral-regex": { + "astral-regex": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", - "dev": true, - "engines": { - "node": ">=8" - } + "dev": true }, - "node_modules/available-typed-arrays": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", - "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", - "dev": true, - "dependencies": { - "possible-typed-array-names": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } + "available-typed-arrays": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", + "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", + "dev": true }, - "node_modules/balanced-match": { + "balanced-match": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", "dev": true }, - "node_modules/body-parser": { - "version": "1.20.2", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.2.tgz", - "integrity": "sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==", + "base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==" + }, + "bignumber.js": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/bignumber.js/-/bignumber.js-9.1.0.tgz", + "integrity": "sha512-4LwHK4nfDOraBCtst+wOWIHbu1vhvAPJK8g8nROd4iuc3PSEjWif/qwbkh8jwCJz6yDBvtU4KPynETgrfh7y3A==" + }, + "binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "dev": true + }, + "body-parser": { + "version": "1.20.0", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.0.tgz", + "integrity": "sha512-DfJ+q6EPcGKZD1QWUjSpqp+Q7bDQTsQIF4zfUAtZ6qk+H/3/QRhg9CEp39ss+/T2vw0+HaidC0ecJj/DRLIaKg==", "dev": true, - "dependencies": { + "requires": { "bytes": "3.1.2", - "content-type": "~1.0.5", + "content-type": "~1.0.4", "debug": "2.6.9", "depd": "2.0.0", "destroy": "1.2.0", "http-errors": "2.0.0", "iconv-lite": "0.4.24", "on-finished": "2.4.1", - "qs": "6.11.0", - "raw-body": "2.5.2", + "qs": "6.10.3", + "raw-body": "2.5.1", "type-is": "~1.6.18", "unpipe": "1.0.0" }, - "engines": { - "node": ">= 0.8", - "npm": "1.2.8000 || >= 1.4.16" + "dependencies": { + "qs": { + "version": "6.10.3", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.10.3.tgz", + "integrity": "sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ==", + "dev": true, + "requires": { + "side-channel": "^1.0.4" + } + } + } + }, + "boxen": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/boxen/-/boxen-5.1.2.tgz", + "integrity": "sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ==", + "dev": true, + "requires": { + "ansi-align": "^3.0.0", + "camelcase": "^6.2.0", + "chalk": "^4.1.0", + "cli-boxes": "^2.2.1", + "string-width": "^4.2.2", + "type-fest": "^0.20.2", + "widest-line": "^3.1.0", + "wrap-ansi": "^7.0.0" } }, - "node_modules/brace-expansion": { + "brace-expansion": { "version": "1.1.11", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", "dev": true, - "dependencies": { + "requires": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" } }, - "node_modules/braces": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", - "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", "dev": true, - "dependencies": { - "fill-range": "^7.1.1" - }, - "engines": { - "node": ">=8" + "requires": { + "fill-range": "^7.0.1" } }, - "node_modules/bytes": { + "buffer-equal-constant-time": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz", + "integrity": "sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==" + }, + "bytes": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", - "dev": true, - "engines": { - "node": ">= 0.8" + "dev": true + }, + "cacheable-request": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-6.1.0.tgz", + "integrity": "sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==", + "dev": true, + "requires": { + "clone-response": "^1.0.2", + "get-stream": "^5.1.0", + "http-cache-semantics": "^4.0.0", + "keyv": "^3.0.0", + "lowercase-keys": "^2.0.0", + "normalize-url": "^4.1.0", + "responselike": "^1.0.2" + }, + "dependencies": { + "get-stream": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "dev": true, + "requires": { + "pump": "^3.0.0" + } + }, + "lowercase-keys": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", + "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==", + "dev": true + } } }, - "node_modules/call-bind": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", - "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", - "dev": true, - "dependencies": { - "es-define-property": "^1.0.0", - "es-errors": "^1.3.0", - "function-bind": "^1.1.2", - "get-intrinsic": "^1.2.4", - "set-function-length": "^1.2.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" } }, - "node_modules/callsites": { + "callsites": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", - "dev": true, - "engines": { - "node": ">=6" - } + "dev": true }, - "node_modules/camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", - "dev": true, - "engines": { - "node": ">=6" - } + "camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "dev": true }, - "node_modules/camelcase-keys": { + "camelcase-keys": { "version": "6.2.2", "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-6.2.2.tgz", "integrity": "sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==", "dev": true, - "dependencies": { + "requires": { "camelcase": "^5.3.1", "map-obj": "^4.0.0", "quick-lru": "^4.0.1" }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "dependencies": { + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true + } } }, - "node_modules/chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, - "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, - "engines": { - "node": ">=4" + "dependencies": { + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } } }, - "node_modules/chardet": { + "chardet": { "version": "0.7.0", "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==", "dev": true }, - "node_modules/cli-cursor": { + "chokidar": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "dev": true, + "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" + } + }, + "ci-info": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", + "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==", + "dev": true + }, + "class-transformer": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/class-transformer/-/class-transformer-0.5.1.tgz", + "integrity": "sha512-SQa1Ws6hUbfC98vKGxZH3KFY0Y1lm5Zm0SY8XX9zbK7FJCyVEac3ATW0RIpwzW+oOfmHE5PMPufDG9hCfoEOMw==" + }, + "class-validator": { + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/class-validator/-/class-validator-0.14.0.tgz", + "integrity": "sha512-ct3ltplN8I9fOwUd8GrP8UQixwff129BkEtuWDKL5W45cQuLd19xqmTLu5ge78YDm/fdje6FMt0hGOhl0lii3A==", + "requires": { + "@types/validator": "^13.7.10", + "libphonenumber-js": "^1.10.14", + "validator": "^13.7.0" + }, + "dependencies": { + "@types/validator": { + "version": "13.7.10", + "resolved": "https://registry.npmjs.org/@types/validator/-/validator-13.7.10.tgz", + "integrity": "sha512-t1yxFAR2n0+VO6hd/FJ9F2uezAZVWHLmpmlJzm1eX03+H7+HsuTAp7L8QJs+2pQCfWkP1+EXsGK9Z9v7o/qPVQ==" + } + } + }, + "cli-boxes": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-2.2.1.tgz", + "integrity": "sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==", + "dev": true + }, + "cli-cursor": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", "dev": true, - "dependencies": { + "requires": { "restore-cursor": "^3.1.0" - }, - "engines": { - "node": ">=8" } }, - "node_modules/cli-width": { + "cli-width": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz", "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==", + "dev": true + }, + "cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", "dev": true, - "engines": { - "node": ">= 10" + "requires": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" } }, - "node_modules/cloudevents": { - "version": "6.0.4", - "resolved": "https://registry.npmjs.org/cloudevents/-/cloudevents-6.0.4.tgz", - "integrity": "sha512-Vay81bTsutFkZxHnM2K0rev95d0x7aTZ3G+Bmm8/GnIzsVtGfeBkLcXFD4czZ08RoOn6POKl+rIXaBS+Xn+jIA==", + "clone-response": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz", + "integrity": "sha512-yjLXh88P599UOyPTFX0POsd7WxnbsVsGohcwzHOLspIhhpalPw1BcqED8NblyZLKcGrL8dTgMlcaZxV2jAD41Q==", "dev": true, - "dependencies": { + "requires": { + "mimic-response": "^1.0.0" + } + }, + "cloudevents": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/cloudevents/-/cloudevents-6.0.2.tgz", + "integrity": "sha512-mn/4EZnAbhfb/TghubK2jPnxYM15JRjf8LnWJtXidiVKi5ZCkd+p9jyBZbL57w7nRm6oFAzJhjxRLsXd/DNaBQ==", + "dev": true, + "requires": { "ajv": "^8.11.0", "ajv-formats": "^2.1.1", - "process": "^0.11.10", "util": "^0.12.4", "uuid": "^8.3.2" }, - "engines": { - "node": ">=12 <20.0.0" + "dependencies": { + "ajv": { + "version": "8.11.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", + "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + } + }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + } } }, - "node_modules/color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, - "dependencies": { - "color-name": "1.1.3" + "requires": { + "color-name": "~1.1.4" } }, - "node_modules/color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, - "node_modules/concat-map": { + "concat-map": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", "dev": true }, - "node_modules/content-disposition": { - "version": "0.5.4", - "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", - "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "concurrently": { + "version": "7.2.2", + "resolved": "https://registry.npmjs.org/concurrently/-/concurrently-7.2.2.tgz", + "integrity": "sha512-DcQkI0ruil5BA/g7Xy3EWySGrFJovF5RYAYxwGvv9Jf9q9B1v3jPFP2tl6axExNf1qgF30kjoNYrangZ0ey4Aw==", "dev": true, - "dependencies": { - "safe-buffer": "5.2.1" - }, - "engines": { - "node": ">= 0.6" + "requires": { + "chalk": "^4.1.0", + "date-fns": "^2.16.1", + "lodash": "^4.17.21", + "rxjs": "^7.0.0", + "shell-quote": "^1.7.3", + "spawn-command": "^0.0.2-1", + "supports-color": "^8.1.0", + "tree-kill": "^1.2.2", + "yargs": "^17.3.1" } }, - "node_modules/content-type": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", - "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", + "configstore": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/configstore/-/configstore-5.0.1.tgz", + "integrity": "sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA==", "dev": true, - "engines": { - "node": ">= 0.6" + "requires": { + "dot-prop": "^5.2.0", + "graceful-fs": "^4.1.2", + "make-dir": "^3.0.0", + "unique-string": "^2.0.0", + "write-file-atomic": "^3.0.0", + "xdg-basedir": "^4.0.0" } }, - "node_modules/cookie": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.6.0.tgz", - "integrity": "sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==", + "content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", "dev": true, - "engines": { - "node": ">= 0.6" + "requires": { + "safe-buffer": "5.2.1" } }, - "node_modules/cookie-signature": { + "content-type": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", + "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==", + "dev": true + }, + "cookie": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", + "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", + "dev": true + }, + "cookie-signature": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", "dev": true }, - "node_modules/cross-spawn": { + "cross-spawn": { "version": "7.0.3", "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", "dev": true, - "dependencies": { + "requires": { "path-key": "^3.1.0", "shebang-command": "^2.0.0", "which": "^2.0.1" - }, - "engines": { - "node": ">= 8" } }, - "node_modules/debug": { + "crypto-random-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz", + "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==", + "dev": true + }, + "date-fns": { + "version": "2.28.0", + "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.28.0.tgz", + "integrity": "sha512-8d35hViGYx/QH0icHYCeLmsLmMUheMmTyV9Fcm6gvNwdw31yXXH+O85sOBJ+OLnLQMKZowvpKb6FgMIQjcpvQw==", + "dev": true + }, + "debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, - "dependencies": { + "requires": { "ms": "2.0.0" } }, - "node_modules/decamelize": { + "decamelize": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } + "dev": true }, - "node_modules/decamelize-keys": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/decamelize-keys/-/decamelize-keys-1.1.1.tgz", - "integrity": "sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==", + "decamelize-keys": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/decamelize-keys/-/decamelize-keys-1.1.0.tgz", + "integrity": "sha512-ocLWuYzRPoS9bfiSdDd3cxvrzovVMZnRDVEzAs+hWIVXGDbHxWMECij2OBuyB/An0FFW/nLuq6Kv1i/YC5Qfzg==", "dev": true, - "dependencies": { + "requires": { "decamelize": "^1.1.0", "map-obj": "^1.0.0" }, - "engines": { - "node": ">=0.10.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "dependencies": { + "map-obj": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", + "integrity": "sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==", + "dev": true + } } }, - "node_modules/decamelize-keys/node_modules/map-obj": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", - "integrity": "sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==", + "decompress-response": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz", + "integrity": "sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA==", "dev": true, - "engines": { - "node": ">=0.10.0" + "requires": { + "mimic-response": "^1.0.0" } }, - "node_modules/deep-is": { + "deep-extend": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", + "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", + "dev": true + }, + "deep-is": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", "dev": true }, - "node_modules/define-data-property": { + "defer-to-connect": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-1.1.3.tgz", + "integrity": "sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==", + "dev": true + }, + "define-properties": { "version": "1.1.4", - "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", - "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.4.tgz", + "integrity": "sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==", "dev": true, - "dependencies": { - "es-define-property": "^1.0.0", - "es-errors": "^1.3.0", - "gopd": "^1.0.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "requires": { + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" } }, - "node_modules/depd": { + "depd": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", - "dev": true, - "engines": { - "node": ">= 0.8" - } + "dev": true }, - "node_modules/destroy": { + "destroy": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", - "dev": true, - "engines": { - "node": ">= 0.8", - "npm": "1.2.8000 || >= 1.4.16" - } + "dev": true }, - "node_modules/dir-glob": { + "dir-glob": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", "dev": true, - "dependencies": { + "requires": { "path-type": "^4.0.0" - }, - "engines": { - "node": ">=8" } }, - "node_modules/doctrine": { + "doctrine": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", "dev": true, - "dependencies": { + "requires": { "esutils": "^2.0.2" - }, - "engines": { - "node": ">=6.0.0" } }, - "node_modules/ee-first": { + "dot-prop": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz", + "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==", + "dev": true, + "requires": { + "is-obj": "^2.0.0" + } + }, + "duplexer3": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz", + "integrity": "sha512-CEj8FwwNA4cVH2uFCoHUrmojhYh1vmCdOaneKJXwkeY1i9jnlslVo9dx+hQ5Hl9GnH/Bwy/IjxAyOePyPKYnzA==", + "dev": true + }, + "ecdsa-sig-formatter": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz", + "integrity": "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==", + "requires": { + "safe-buffer": "^5.0.1" + } + }, + "ee-first": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", "dev": true }, - "node_modules/emoji-regex": { + "emoji-regex": { "version": "8.0.0", "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", "dev": true }, - "node_modules/encodeurl": { + "encodeurl": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "dev": true + }, + "end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", "dev": true, - "engines": { - "node": ">= 0.8" + "requires": { + "once": "^1.4.0" } }, - "node_modules/enquirer": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.4.1.tgz", - "integrity": "sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==", + "enquirer": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz", + "integrity": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==", "dev": true, - "dependencies": { - "ansi-colors": "^4.1.1", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=8.6" + "requires": { + "ansi-colors": "^4.1.1" } }, - "node_modules/error-ex": { + "error-ex": { "version": "1.3.2", "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", "dev": true, - "dependencies": { + "requires": { "is-arrayish": "^0.2.1" } }, - "node_modules/es-define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", - "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", + "es-abstract": { + "version": "1.20.2", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.20.2.tgz", + "integrity": "sha512-XxXQuVNrySBNlEkTYJoDNFe5+s2yIOpzq80sUHEdPdQr0S5nTLz4ZPPPswNIpKseDDUS5yghX1gfLIHQZ1iNuQ==", "dev": true, - "dependencies": { - "get-intrinsic": "^1.2.4" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/es-errors": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", - "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "requires": { + "call-bind": "^1.0.2", + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "function.prototype.name": "^1.1.5", + "get-intrinsic": "^1.1.2", + "get-symbol-description": "^1.0.0", + "has": "^1.0.3", + "has-property-descriptors": "^1.0.0", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.3", + "is-callable": "^1.2.4", + "is-negative-zero": "^2.0.2", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.2", + "is-string": "^1.0.7", + "is-weakref": "^1.0.2", + "object-inspect": "^1.12.2", + "object-keys": "^1.1.1", + "object.assign": "^4.1.4", + "regexp.prototype.flags": "^1.4.3", + "string.prototype.trimend": "^1.0.5", + "string.prototype.trimstart": "^1.0.5", + "unbox-primitive": "^1.0.2" + } + }, + "es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", "dev": true, - "engines": { - "node": ">= 0.4" + "requires": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" } }, - "node_modules/escape-html": { + "escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "dev": true + }, + "escape-goat": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/escape-goat/-/escape-goat-2.1.1.tgz", + "integrity": "sha512-8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q==", + "dev": true + }, + "escape-html": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", "dev": true }, - "node_modules/escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", - "dev": true, - "engines": { - "node": ">=0.8.0" - } + "escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true }, - "node_modules/eslint": { + "eslint": { "version": "7.32.0", "resolved": "https://registry.npmjs.org/eslint/-/eslint-7.32.0.tgz", "integrity": "sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA==", "dev": true, - "dependencies": { + "requires": { "@babel/code-frame": "7.12.11", "@eslint/eslintrc": "^0.4.3", "@humanwhocodes/config-array": "^0.5.0", @@ -1237,77 +1390,101 @@ "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" + "dependencies": { + "debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "requires": { + "ms": "2.1.2" + } + }, + "eslint-utils": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", + "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", + "dev": true, + "requires": { + "eslint-visitor-keys": "^1.1.0" + }, + "dependencies": { + "eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "dev": true + } + } + }, + "ignore": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", + "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", + "dev": true + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "semver": { + "version": "7.3.7", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz", + "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true + } } }, - "node_modules/eslint-config-prettier": { + "eslint-config-prettier": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-7.2.0.tgz", "integrity": "sha512-rV4Qu0C3nfJKPOAhFujFxB7RMP+URFyQqqOZW9DMRD7ZDTFyjaIlETU3xzHELt++4ugC0+Jm084HQYkkJe+Ivg==", - "dev": true, - "bin": { - "eslint-config-prettier": "bin/cli.js" - }, - "peerDependencies": { - "eslint": ">=7.0.0" - } + "dev": true }, - "node_modules/eslint-plugin-es": { + "eslint-plugin-es": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/eslint-plugin-es/-/eslint-plugin-es-3.0.1.tgz", "integrity": "sha512-GUmAsJaN4Fc7Gbtl8uOBlayo2DqhwWvEzykMHSCZHU3XdJ+NSzzZcVhXh3VxX5icqQ+oQdIEawXX8xkR3mIFmQ==", "dev": true, - "dependencies": { + "requires": { "eslint-utils": "^2.0.0", "regexpp": "^3.0.0" }, - "engines": { - "node": ">=8.10.0" - }, - "funding": { - "url": "https://github.com/sponsors/mysticatea" - }, - "peerDependencies": { - "eslint": ">=4.19.1" - } - }, - "node_modules/eslint-plugin-es/node_modules/eslint-utils": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", - "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", - "dev": true, "dependencies": { - "eslint-visitor-keys": "^1.1.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/mysticatea" - } - }, - "node_modules/eslint-plugin-es/node_modules/eslint-visitor-keys": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", - "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", - "dev": true, - "engines": { - "node": ">=4" + "eslint-utils": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", + "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", + "dev": true, + "requires": { + "eslint-visitor-keys": "^1.1.0" + } + }, + "eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "dev": true + } } }, - "node_modules/eslint-plugin-node": { + "eslint-plugin-node": { "version": "11.1.0", "resolved": "https://registry.npmjs.org/eslint-plugin-node/-/eslint-plugin-node-11.1.0.tgz", "integrity": "sha512-oUwtPJ1W0SKD0Tr+wqu92c5xuCeQqB3hSCHasn/ZgjFdA9iDGNkNf2Zi9ztY7X+hNuMib23LNGRm6+uN+KLE3g==", "dev": true, - "dependencies": { + "requires": { "eslint-plugin-es": "^3.0.0", "eslint-utils": "^2.0.0", "ignore": "^5.1.1", @@ -1315,387 +1492,152 @@ "resolve": "^1.10.1", "semver": "^6.1.0" }, - "engines": { - "node": ">=8.10.0" - }, - "peerDependencies": { - "eslint": ">=5.16.0" - } - }, - "node_modules/eslint-plugin-node/node_modules/eslint-utils": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", - "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", - "dev": true, "dependencies": { - "eslint-visitor-keys": "^1.1.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/mysticatea" - } - }, - "node_modules/eslint-plugin-node/node_modules/eslint-visitor-keys": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", - "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/eslint-plugin-node/node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "dev": true, - "bin": { - "semver": "bin/semver.js" + "eslint-utils": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", + "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", + "dev": true, + "requires": { + "eslint-visitor-keys": "^1.1.0" + } + }, + "eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "dev": true + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } } }, - "node_modules/eslint-plugin-prettier": { + "eslint-plugin-prettier": { "version": "3.4.1", "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-3.4.1.tgz", "integrity": "sha512-htg25EUYUeIhKHXjOinK4BgCcDwtLHjqaxCDsMy5nbnUMkKFvIhMVCp+5GFUXQ4Nr8lBsPqtGAqBenbpFqAA2g==", "dev": true, - "dependencies": { + "requires": { "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-scope": { + "eslint-scope": { "version": "5.1.1", "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", "dev": true, - "dependencies": { + "requires": { "esrecurse": "^4.3.0", "estraverse": "^4.1.1" - }, - "engines": { - "node": ">=8.0.0" } }, - "node_modules/eslint-utils": { + "eslint-utils": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", "dev": true, - "dependencies": { + "requires": { "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/eslint-visitor-keys": { + "eslint-visitor-keys": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", + "dev": true + }, + "espree": { + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-7.3.1.tgz", + "integrity": "sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==", "dev": true, - "engines": { - "node": ">=10" + "requires": { + "acorn": "^7.4.0", + "acorn-jsx": "^5.3.1", + "eslint-visitor-keys": "^1.3.0" + }, + "dependencies": { + "eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "dev": true + } } }, - "node_modules/eslint/node_modules/@babel/code-frame": { - "version": "7.12.11", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz", - "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==", + "esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "dev": true + }, + "esquery": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz", + "integrity": "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==", "dev": true, + "requires": { + "estraverse": "^5.1.0" + }, "dependencies": { - "@babel/highlight": "^7.10.4" + "estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true + } } }, - "node_modules/eslint/node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "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/eslint/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "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/eslint/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "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/eslint/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/eslint/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/eslint/node_modules/debug": { - "version": "4.3.5", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.5.tgz", - "integrity": "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==", - "dev": true, - "dependencies": { - "ms": "2.1.2" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "node_modules/eslint/node_modules/escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/eslint/node_modules/eslint-utils": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", - "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", - "dev": true, - "dependencies": { - "eslint-visitor-keys": "^1.1.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/mysticatea" - } - }, - "node_modules/eslint/node_modules/eslint-utils/node_modules/eslint-visitor-keys": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", - "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/eslint/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/eslint/node_modules/ignore": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", - "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", - "dev": true, - "engines": { - "node": ">= 4" - } - }, - "node_modules/eslint/node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true - }, - "node_modules/eslint/node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true - }, - "node_modules/eslint/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/espree": { - "version": "7.3.1", - "resolved": "https://registry.npmjs.org/espree/-/espree-7.3.1.tgz", - "integrity": "sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==", - "dev": true, - "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", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", - "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/esprima": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", - "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", - "dev": true, - "bin": { - "esparse": "bin/esparse.js", - "esvalidate": "bin/esvalidate.js" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/esquery": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", - "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", - "dev": true, - "dependencies": { - "estraverse": "^5.1.0" - }, - "engines": { - "node": ">=0.10" - } - }, - "node_modules/esquery/node_modules/estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", - "dev": true, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/esrecurse": { + "esrecurse": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", "dev": true, - "dependencies": { + "requires": { "estraverse": "^5.2.0" }, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/esrecurse/node_modules/estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", - "dev": true, - "engines": { - "node": ">=4.0" + "dependencies": { + "estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true + } } }, - "node_modules/estraverse": { + "estraverse": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", - "dev": true, - "engines": { - "node": ">=4.0" - } + "dev": true }, - "node_modules/esutils": { + "esutils": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } + "dev": true }, - "node_modules/etag": { + "etag": { "version": "1.8.1", "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", - "dev": true, - "engines": { - "node": ">= 0.6" - } + "dev": true + }, + "event-target-shim": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz", + "integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==" }, - "node_modules/execa": { + "execa": { "version": "5.1.1", "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", "dev": true, - "dependencies": { + "requires": { "cross-spawn": "^7.0.3", "get-stream": "^6.0.0", "human-signals": "^2.1.0", @@ -1706,25 +1648,27 @@ "signal-exit": "^3.0.3", "strip-final-newline": "^2.0.0" }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" + "dependencies": { + "get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true + } } }, - "node_modules/express": { - "version": "4.19.2", - "resolved": "https://registry.npmjs.org/express/-/express-4.19.2.tgz", - "integrity": "sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==", + "express": { + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/express/-/express-4.18.1.tgz", + "integrity": "sha512-zZBcOX9TfehHQhtupq57OF8lFZ3UZi08Y97dwFCkD8p9d/d2Y3M+ykKcwaMDEL+4qyUolgBDX6AblpR3fL212Q==", "dev": true, - "dependencies": { + "requires": { "accepts": "~1.3.8", "array-flatten": "1.1.1", - "body-parser": "1.20.2", + "body-parser": "1.20.0", "content-disposition": "0.5.4", "content-type": "~1.0.4", - "cookie": "0.6.0", + "cookie": "0.5.0", "cookie-signature": "1.0.6", "debug": "2.6.9", "depd": "2.0.0", @@ -1740,7 +1684,7 @@ "parseurl": "~1.3.3", "path-to-regexp": "0.1.7", "proxy-addr": "~2.0.7", - "qs": "6.11.0", + "qs": "6.10.3", "range-parser": "~1.2.1", "safe-buffer": "5.2.1", "send": "0.18.0", @@ -1751,118 +1695,126 @@ "utils-merge": "1.0.1", "vary": "~1.1.2" }, - "engines": { - "node": ">= 0.10.0" + "dependencies": { + "qs": { + "version": "6.10.3", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.10.3.tgz", + "integrity": "sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ==", + "dev": true, + "requires": { + "side-channel": "^1.0.4" + } + } } }, - "node_modules/external-editor": { + "extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" + }, + "external-editor": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz", "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==", "dev": true, - "dependencies": { + "requires": { "chardet": "^0.7.0", "iconv-lite": "^0.4.24", "tmp": "^0.0.33" - }, - "engines": { - "node": ">=4" } }, - "node_modules/fast-deep-equal": { + "fast-deep-equal": { "version": "3.1.3", "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", "dev": true }, - "node_modules/fast-diff": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.3.0.tgz", - "integrity": "sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==", + "fast-diff": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.2.0.tgz", + "integrity": "sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==", "dev": true }, - "node_modules/fast-glob": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", - "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", + "fast-glob": { + "version": "3.2.12", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz", + "integrity": "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==", "dev": true, - "dependencies": { + "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" - }, - "engines": { - "node": ">=8.6.0" } }, - "node_modules/fast-json-stable-stringify": { + "fast-json-stable-stringify": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", "dev": true }, - "node_modules/fast-levenshtein": { + "fast-levenshtein": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", "dev": true }, - "node_modules/fastq": { - "version": "1.17.1", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", - "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", + "fast-text-encoding": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/fast-text-encoding/-/fast-text-encoding-1.0.6.tgz", + "integrity": "sha512-VhXlQgj9ioXCqGstD37E/HBeqEGV/qOD/kmbVG8h5xKBYvM1L3lR1Zn4555cQ8GkYbJa8aJSipLPndE1k6zK2w==" + }, + "fastq": { + "version": "1.13.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz", + "integrity": "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==", "dev": true, - "dependencies": { + "requires": { "reusify": "^1.0.4" } }, - "node_modules/figures": { + "figures": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", "dev": true, - "dependencies": { + "requires": { "escape-string-regexp": "^1.0.5" }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "dependencies": { + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true + } } }, - "node_modules/file-entry-cache": { + "file-entry-cache": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", "dev": true, - "dependencies": { + "requires": { "flat-cache": "^3.0.4" - }, - "engines": { - "node": "^10.12.0 || >=12.0.0" } }, - "node_modules/fill-range": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", - "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", "dev": true, - "dependencies": { + "requires": { "to-regex-range": "^5.0.1" - }, - "engines": { - "node": ">=8" } }, - "node_modules/finalhandler": { + "finalhandler": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", "dev": true, - "dependencies": { + "requires": { "debug": "2.6.9", "encodeurl": "~1.0.2", "escape-html": "~1.0.3", @@ -1870,221 +1822,295 @@ "parseurl": "~1.3.3", "statuses": "2.0.1", "unpipe": "~1.0.0" - }, - "engines": { - "node": ">= 0.8" } }, - "node_modules/find-up": { + "find-up": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", "dev": true, - "dependencies": { + "requires": { "locate-path": "^5.0.0", "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=8" } }, - "node_modules/flat-cache": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", - "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", + "flat-cache": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", + "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", "dev": true, - "dependencies": { - "flatted": "^3.2.9", - "keyv": "^4.5.3", + "requires": { + "flatted": "^3.1.0", "rimraf": "^3.0.2" - }, - "engines": { - "node": "^10.12.0 || >=12.0.0" } }, - "node_modules/flatted": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.1.tgz", - "integrity": "sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==", + "flatted": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", + "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==", "dev": true }, - "node_modules/for-each": { + "for-each": { "version": "0.3.3", "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", "dev": true, - "dependencies": { + "requires": { "is-callable": "^1.1.3" } }, - "node_modules/forwarded": { + "forwarded": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", - "dev": true, - "engines": { - "node": ">= 0.6" - } + "dev": true }, - "node_modules/fresh": { + "fresh": { "version": "0.5.2", "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", - "dev": true, - "engines": { - "node": ">= 0.6" - } + "dev": true }, - "node_modules/fs.realpath": { + "fs.realpath": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", "dev": true }, - "node_modules/function-bind": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", - "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "dev": true, + "optional": true + }, + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + }, + "function.prototype.name": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz", + "integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==", "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.0", + "functions-have-names": "^1.2.2" } }, - "node_modules/functional-red-black-tree": { + "functional-red-black-tree": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", "integrity": "sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==", "dev": true }, - "node_modules/get-intrinsic": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", - "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", + "functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "dev": true + }, + "gaxios": { + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/gaxios/-/gaxios-4.3.3.tgz", + "integrity": "sha512-gSaYYIO1Y3wUtdfHmjDUZ8LWaxJQpiavzbF5Kq53akSzvmVg0RfyOcFDbO1KJ/KCGRFz2qG+lS81F0nkr7cRJA==", + "requires": { + "abort-controller": "^3.0.0", + "extend": "^3.0.2", + "https-proxy-agent": "^5.0.0", + "is-stream": "^2.0.0", + "node-fetch": "^2.6.7" + } + }, + "gcp-metadata": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/gcp-metadata/-/gcp-metadata-4.3.1.tgz", + "integrity": "sha512-x850LS5N7V1F3UcV7PoupzGsyD6iVwTVvsh3tbXfkctZnBnjW5yu5z1/3k3SehF7TyoTIe78rJs02GMMy+LF+A==", + "requires": { + "gaxios": "^4.0.0", + "json-bigint": "^1.0.0" + } + }, + "get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true + }, + "get-intrinsic": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.3.tgz", + "integrity": "sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==", + "requires": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.3" + } + }, + "get-stream": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", "dev": true, - "dependencies": { - "es-errors": "^1.3.0", - "function-bind": "^1.1.2", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3", - "hasown": "^2.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "requires": { + "pump": "^3.0.0" } }, - "node_modules/get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "get-symbol-description": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", + "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "requires": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" } }, - "node_modules/glob": { + "glob": { "version": "7.2.3", "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "deprecated": "Glob versions prior to v9 are no longer supported", "dev": true, - "dependencies": { + "requires": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^3.1.1", "once": "^1.3.0", "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/glob-parent": { + "glob-parent": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", "dev": true, - "dependencies": { + "requires": { "is-glob": "^4.0.1" - }, - "engines": { - "node": ">= 6" } }, - "node_modules/globals": { - "version": "13.24.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", - "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", + "global-dirs": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-3.0.0.tgz", + "integrity": "sha512-v8ho2DS5RiCjftj1nD9NmnfaOzTdud7RRnVd9kFNOjqZbISlx5DQ+OrTkywgd0dIt7oFCvKetZSHoHcP3sDdiA==", "dev": true, - "dependencies": { - "type-fest": "^0.20.2" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "requires": { + "ini": "2.0.0" } }, - "node_modules/globals/node_modules/type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "globals": { + "version": "13.17.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.17.0.tgz", + "integrity": "sha512-1C+6nQRb1GwGMKm2dH/E7enFAMxGTmGI7/dEdhy/DNelv85w9B72t3uc5frtMNXIbzrarJJ/lTCjcaZwbLJmyw==", "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "requires": { + "type-fest": "^0.20.2" } }, - "node_modules/globby": { + "globby": { "version": "11.1.0", "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", "dev": true, - "dependencies": { + "requires": { "array-union": "^2.1.0", "dir-glob": "^3.0.1", "fast-glob": "^3.2.9", "ignore": "^5.2.0", "merge2": "^1.4.1", "slash": "^3.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/gopd": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", - "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", - "dev": true, - "dependencies": { - "get-intrinsic": "^1.1.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "google-auth-library": { + "version": "7.14.1", + "resolved": "https://registry.npmjs.org/google-auth-library/-/google-auth-library-7.14.1.tgz", + "integrity": "sha512-5Rk7iLNDFhFeBYc3s8l1CqzbEBcdhwR193RlD4vSNFajIcINKI8W8P0JLmBpwymHqqWbX34pJDQu39cSy/6RsA==", + "requires": { + "arrify": "^2.0.0", + "base64-js": "^1.3.0", + "ecdsa-sig-formatter": "^1.0.11", + "fast-text-encoding": "^1.0.0", + "gaxios": "^4.0.0", + "gcp-metadata": "^4.2.0", + "gtoken": "^5.0.4", + "jws": "^4.0.0", + "lru-cache": "^6.0.0" } }, - "node_modules/gts": { + "google-p12-pem": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/google-p12-pem/-/google-p12-pem-3.1.4.tgz", + "integrity": "sha512-HHuHmkLgwjdmVRngf5+gSmpkyaRI6QmOg77J8tkNBHhNEI62sGHyw4/+UkgyZEI7h84NbWprXDJ+sa3xOYFvTg==", + "requires": { + "node-forge": "^1.3.1" + } + }, + "googleapis": { + "version": "92.0.0", + "resolved": "https://registry.npmjs.org/googleapis/-/googleapis-92.0.0.tgz", + "integrity": "sha512-5HgJg7XvqEEJ+GO+2gvnzd5cAcDuSS/VB6nW7thoyj2GMq9nH4VvJwncSevinjLCnv06a+VSxrXNiL5vePHojA==", + "requires": { + "google-auth-library": "^7.0.2", + "googleapis-common": "^5.0.2" + } + }, + "googleapis-common": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/googleapis-common/-/googleapis-common-5.1.0.tgz", + "integrity": "sha512-RXrif+Gzhq1QAzfjxulbGvAY3FPj8zq/CYcvgjzDbaBNCD6bUl+86I7mUs4DKWHGruuK26ijjR/eDpWIDgNROA==", + "requires": { + "extend": "^3.0.2", + "gaxios": "^4.0.0", + "google-auth-library": "^7.14.0", + "qs": "^6.7.0", + "url-template": "^2.0.8", + "uuid": "^8.0.0" + } + }, + "got": { + "version": "9.6.0", + "resolved": "https://registry.npmjs.org/got/-/got-9.6.0.tgz", + "integrity": "sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==", + "dev": true, + "requires": { + "@sindresorhus/is": "^0.14.0", + "@szmarczak/http-timer": "^1.1.2", + "cacheable-request": "^6.0.0", + "decompress-response": "^3.3.0", + "duplexer3": "^0.1.4", + "get-stream": "^4.1.0", + "lowercase-keys": "^1.0.1", + "mimic-response": "^1.0.1", + "p-cancelable": "^1.0.0", + "to-readable-stream": "^1.0.0", + "url-parse-lax": "^3.0.0" + } + }, + "graceful-fs": { + "version": "4.2.10", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", + "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==", + "dev": true + }, + "gtoken": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/gtoken/-/gtoken-5.3.2.tgz", + "integrity": "sha512-gkvEKREW7dXWF8NV8pVrKfW7WqReAmjjkMBh6lNCCGOM4ucS0r0YyXXl0r/9Yj8wcW/32ISkfc8h5mPTDbtifQ==", + "requires": { + "gaxios": "^4.0.0", + "google-p12-pem": "^3.1.3", + "jws": "^4.0.0" + } + }, + "gts": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/gts/-/gts-3.1.1.tgz", "integrity": "sha512-Jw44aBbzMnd1vtZs7tZt3LMstKQukCBg7N4CKVGzviIQ45Cz5b9lxDJGXVKj/9ySuGv6TYEeijZJGbiiVcM27w==", "dev": true, - "dependencies": { + "requires": { "@typescript-eslint/eslint-plugin": "^4.2.0", "@typescript-eslint/parser": "^4.2.0", "chalk": "^4.1.0", @@ -2100,277 +2126,198 @@ "prettier": "^2.1.2", "rimraf": "^3.0.2", "write-file-atomic": "^3.0.3" - }, - "bin": { - "gts": "build/src/cli.js" - }, - "engines": { - "node": ">=10" - }, - "peerDependencies": { - "typescript": ">=3" } }, - "node_modules/gts/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "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/gts/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "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" - } + "hard-rejection": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/hard-rejection/-/hard-rejection-2.1.0.tgz", + "integrity": "sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==", + "dev": true }, - "node_modules/gts/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" + "has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "requires": { + "function-bind": "^1.1.1" } }, - "node_modules/gts/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "has-bigints": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", + "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", "dev": true }, - "node_modules/gts/node_modules/has-flag": { + "has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/gts/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/hard-rejection": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/hard-rejection/-/hard-rejection-2.1.0.tgz", - "integrity": "sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/has-property-descriptors": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", - "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", - "dev": true, - "dependencies": { - "es-define-property": "^1.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } + "dev": true }, - "node_modules/has-proto": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", - "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", + "has-property-descriptors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", + "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", "dev": true, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "requires": { + "get-intrinsic": "^1.1.1" } }, - "node_modules/has-symbols": { + "has-symbols": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", - "dev": true, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==" }, - "node_modules/has-tostringtag": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", - "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", + "has-tostringtag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", "dev": true, - "dependencies": { - "has-symbols": "^1.0.3" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "requires": { + "has-symbols": "^1.0.2" } }, - "node_modules/hasown": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", - "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "has-yarn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/has-yarn/-/has-yarn-2.1.0.tgz", + "integrity": "sha512-UqBRqi4ju7T+TqGNdqAO0PaSVGsDGJUBQvk9eUWNGRY1CFGDzYhLWoM7JQEemnlvVcv/YEmc2wNW8BC24EnUsw==", + "dev": true + }, + "hosted-git-info": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz", + "integrity": "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==", "dev": true, - "dependencies": { - "function-bind": "^1.1.2" - }, - "engines": { - "node": ">= 0.4" + "requires": { + "lru-cache": "^6.0.0" } }, - "node_modules/hosted-git-info": { - "version": "2.8.9", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", - "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", + "http-cache-semantics": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz", + "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==", "dev": true }, - "node_modules/http-errors": { + "http-errors": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", "dev": true, - "dependencies": { + "requires": { "depd": "2.0.0", "inherits": "2.0.4", "setprototypeof": "1.2.0", "statuses": "2.0.1", "toidentifier": "1.0.1" - }, - "engines": { - "node": ">= 0.8" } }, - "node_modules/human-signals": { + "https-proxy-agent": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", + "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", + "requires": { + "agent-base": "6", + "debug": "4" + }, + "dependencies": { + "debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "requires": { + "ms": "2.1.2" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + } + } + }, + "human-signals": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", - "dev": true, - "engines": { - "node": ">=10.17.0" - } + "dev": true }, - "node_modules/iconv-lite": { + "iconv-lite": { "version": "0.4.24", "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", "dev": true, - "dependencies": { + "requires": { "safer-buffer": ">= 2.1.2 < 3" - }, - "engines": { - "node": ">=0.10.0" } }, - "node_modules/ignore": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz", - "integrity": "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==", - "dev": true, - "engines": { - "node": ">= 4" - } + "ignore": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz", + "integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==", + "dev": true + }, + "ignore-by-default": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz", + "integrity": "sha512-Ius2VYcGNk7T90CppJqcIkS5ooHUZyIQK+ClZfMfMNFEF9VSE73Fq+906u/CWu92x4gzZMWOwfFYckPObzdEbA==", + "dev": true }, - "node_modules/import-fresh": { + "import-fresh": { "version": "3.3.0", "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", "dev": true, - "dependencies": { + "requires": { "parent-module": "^1.0.0", "resolve-from": "^4.0.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/imurmurhash": { + "import-lazy": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-2.1.0.tgz", + "integrity": "sha512-m7ZEHgtw69qOGw+jwxXkHlrlIPdTGkyh66zXZ1ajZbxkDBNjSY/LGbmjc7h0s2ELsUDTAhFr55TrPSSqJGPG0A==", + "dev": true + }, + "imurmurhash": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", - "dev": true, - "engines": { - "node": ">=0.8.19" - } + "dev": true }, - "node_modules/indent-string": { + "indent-string": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", - "dev": true, - "engines": { - "node": ">=8" - } + "dev": true }, - "node_modules/inflight": { + "inflight": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", - "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", "dev": true, - "dependencies": { + "requires": { "once": "^1.3.0", "wrappy": "1" } }, - "node_modules/inherits": { + "inherits": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", "dev": true }, - "node_modules/inquirer": { + "ini": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ini/-/ini-2.0.0.tgz", + "integrity": "sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==", + "dev": true + }, + "inquirer": { "version": "7.3.3", "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-7.3.3.tgz", "integrity": "sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA==", "dev": true, - "dependencies": { + "requires": { "ansi-escapes": "^4.2.1", "chalk": "^4.1.0", "cli-cursor": "^3.1.0", @@ -2385,398 +2332,479 @@ "strip-ansi": "^6.0.0", "through": "^2.3.6" }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/inquirer/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "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/inquirer/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "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" + "rxjs": { + "version": "6.6.7", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz", + "integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==", + "dev": true, + "requires": { + "tslib": "^1.9.0" + } + }, + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true + } } }, - "node_modules/inquirer/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "internal-slot": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz", + "integrity": "sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==", "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" + "requires": { + "get-intrinsic": "^1.1.0", + "has": "^1.0.3", + "side-channel": "^1.0.4" } }, - "node_modules/inquirer/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", "dev": true }, - "node_modules/inquirer/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "is-arguments": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", + "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", "dev": true, - "engines": { - "node": ">=8" + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" } }, - "node_modules/inquirer/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", + "dev": true + }, + "is-bigint": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" + "requires": { + "has-bigints": "^1.0.1" } }, - "node_modules/ipaddr.js": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", - "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", "dev": true, - "engines": { - "node": ">= 0.10" + "requires": { + "binary-extensions": "^2.0.0" } }, - "node_modules/is-arguments": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", - "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", + "is-boolean-object": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", "dev": true, - "dependencies": { + "requires": { "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", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", + "is-callable": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.6.tgz", + "integrity": "sha512-krO72EO2NptOGAX2KYyqbP9vYMlNAXdB53rq6f8LXY6RY7JdSR/3BD6wLUlPHSAesmY9vstNrjvqGaCiRK/91Q==", "dev": true }, - "node_modules/is-callable": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", - "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "is-ci": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz", + "integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==", "dev": true, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "requires": { + "ci-info": "^2.0.0" } }, - "node_modules/is-core-module": { - "version": "2.13.1", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", - "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", + "is-core-module": { + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.10.0.tgz", + "integrity": "sha512-Erxj2n/LDAZ7H8WNJXd9tw38GYM3dv8rk8Zcs+jJuxYTW7sozH+SS8NtrSjVL1/vpLvWi1hxy96IzjJ3EHTJJg==", "dev": true, - "dependencies": { - "hasown": "^2.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "requires": { + "has": "^1.0.3" + } + }, + "is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "dev": true, + "requires": { + "has-tostringtag": "^1.0.0" } }, - "node_modules/is-extglob": { + "is-extglob": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } + "dev": true }, - "node_modules/is-fullwidth-code-point": { + "is-fullwidth-code-point": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true, - "engines": { - "node": ">=8" - } + "dev": true }, - "node_modules/is-generator-function": { + "is-generator-function": { "version": "1.0.10", "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", "dev": true, - "dependencies": { + "requires": { "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-glob": { + "is-glob": { "version": "4.0.3", "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", "dev": true, - "dependencies": { + "requires": { "is-extglob": "^2.1.1" - }, - "engines": { - "node": ">=0.10.0" } }, - "node_modules/is-number": { + "is-installed-globally": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.4.0.tgz", + "integrity": "sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==", + "dev": true, + "requires": { + "global-dirs": "^3.0.0", + "is-path-inside": "^3.0.2" + } + }, + "is-negative-zero": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", + "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", + "dev": true + }, + "is-npm": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/is-npm/-/is-npm-5.0.0.tgz", + "integrity": "sha512-WW/rQLOazUq+ST/bCAVBp/2oMERWLsR7OrKyt052dNDk4DHcDE0/7QSXITlmi+VBcV13DfIbysG3tZJm5RfdBA==", + "dev": true + }, + "is-number": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true + }, + "is-number-object": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", "dev": true, - "engines": { - "node": ">=0.12.0" + "requires": { + "has-tostringtag": "^1.0.0" } }, - "node_modules/is-plain-obj": { + "is-obj": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", + "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", + "dev": true + }, + "is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "dev": true + }, + "is-plain-obj": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", "integrity": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==", + "dev": true + }, + "is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", "dev": true, - "engines": { - "node": ">=0.10.0" + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" } }, - "node_modules/is-stream": { + "is-shared-array-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", + "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", + "dev": true, + "requires": { + "call-bind": "^1.0.2" + } + }, + "is-stream": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==" + }, + "is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", "dev": true, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "requires": { + "has-tostringtag": "^1.0.0" } }, - "node_modules/is-typed-array": { - "version": "1.1.13", - "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.13.tgz", - "integrity": "sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==", + "is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", "dev": true, - "dependencies": { - "which-typed-array": "^1.1.14" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "requires": { + "has-symbols": "^1.0.2" + } + }, + "is-typed-array": { + "version": "1.1.9", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.9.tgz", + "integrity": "sha512-kfrlnTTn8pZkfpJMUgYD7YZ3qzeJgWUn8XfVYBARc4wnmNOmLbmuuaAs3q5fvB0UJOn6yHAKaGTPM7d6ezoD/A==", + "dev": true, + "requires": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "es-abstract": "^1.20.0", + "for-each": "^0.3.3", + "has-tostringtag": "^1.0.0" } }, - "node_modules/is-typedarray": { + "is-typedarray": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==", "dev": true }, - "node_modules/isexe": { + "is-weakref": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "dev": true, + "requires": { + "call-bind": "^1.0.2" + } + }, + "is-yarn-global": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/is-yarn-global/-/is-yarn-global-0.3.0.tgz", + "integrity": "sha512-VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw==", + "dev": true + }, + "isexe": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", "dev": true }, - "node_modules/js-tokens": { + "js-tokens": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", "dev": true }, - "node_modules/js-yaml": { + "js-yaml": { "version": "3.14.1", "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", "dev": true, - "dependencies": { + "requires": { "argparse": "^1.0.7", "esprima": "^4.0.0" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" } }, - "node_modules/json-buffer": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", - "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "json-bigint": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-bigint/-/json-bigint-1.0.0.tgz", + "integrity": "sha512-SiPv/8VpZuWbvLSMtTDU8hEfrZWg/mH/nV/b4o0CYbSxu1UIQPLdwKOCIyLQX+VIPO5vrLX3i8qtqFyhdPSUSQ==", + "requires": { + "bignumber.js": "^9.0.0" + } + }, + "json-buffer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz", + "integrity": "sha512-CuUqjv0FUZIdXkHPI8MezCnFCdaTAacej1TZYulLoAg1h/PhwkdXFN4V/gzY4g+fMBCOV2xF+rp7t2XD2ns/NQ==", "dev": true }, - "node_modules/json-parse-even-better-errors": { + "json-parse-even-better-errors": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", "dev": true }, - "node_modules/json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", "dev": true }, - "node_modules/json-stable-stringify-without-jsonify": { + "json-stable-stringify-without-jsonify": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", "dev": true }, - "node_modules/json5": { + "json5": { "version": "2.2.3", "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", - "dev": true, - "bin": { - "json5": "lib/cli.js" - }, - "engines": { - "node": ">=6" + "dev": true + }, + "jwa": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/jwa/-/jwa-2.0.0.tgz", + "integrity": "sha512-jrZ2Qx916EA+fq9cEAeCROWPTfCwi1IVHqT2tapuqLEVVDKFDENFw1oL+MwrTvH6msKxsd1YTDVw6uKEcsrLEA==", + "requires": { + "buffer-equal-constant-time": "1.0.1", + "ecdsa-sig-formatter": "1.0.11", + "safe-buffer": "^5.0.1" + } + }, + "jws": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jws/-/jws-4.0.0.tgz", + "integrity": "sha512-KDncfTmOZoOMTFG4mBlG0qUIOlc03fmzH+ru6RgYVZhPkyiy/92Owlt/8UEN+a4TXR1FQetfIpJE8ApdvdVxTg==", + "requires": { + "jwa": "^2.0.0", + "safe-buffer": "^5.0.1" } }, - "node_modules/keyv": { - "version": "4.5.4", - "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", - "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "keyv": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-3.1.0.tgz", + "integrity": "sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==", "dev": true, - "dependencies": { - "json-buffer": "3.0.1" + "requires": { + "json-buffer": "3.0.0" } }, - "node_modules/kind-of": { + "kind-of": { "version": "6.0.3", "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true + }, + "latest-version": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/latest-version/-/latest-version-5.1.0.tgz", + "integrity": "sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA==", "dev": true, - "engines": { - "node": ">=0.10.0" + "requires": { + "package-json": "^6.3.0" } }, - "node_modules/levn": { + "levn": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", "dev": true, - "dependencies": { + "requires": { "prelude-ls": "^1.2.1", "type-check": "~0.4.0" - }, - "engines": { - "node": ">= 0.8.0" } }, - "node_modules/lines-and-columns": { + "libphonenumber-js": { + "version": "1.10.18", + "resolved": "https://registry.npmjs.org/libphonenumber-js/-/libphonenumber-js-1.10.18.tgz", + "integrity": "sha512-NS4ZEgNhwbcPz1gfSXCGFnQm0xEiyTSPRthIuWytDzOiEG9xnZ2FbLyfJC4tI2BMAAXpoWbNxHYH75pa3Dq9og==" + }, + "lines-and-columns": { "version": "1.2.4", "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", "dev": true }, - "node_modules/locate-path": { + "locate-path": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", "dev": true, - "dependencies": { + "requires": { "p-locate": "^4.1.0" - }, - "engines": { - "node": ">=8" } }, - "node_modules/lodash": { + "lodash": { "version": "4.17.21", "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", "dev": true }, - "node_modules/lodash.merge": { + "lodash.merge": { "version": "4.6.2", "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", "dev": true }, - "node_modules/lodash.truncate": { + "lodash.truncate": { "version": "4.4.2", "resolved": "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz", "integrity": "sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==", "dev": true }, - "node_modules/lru-cache": { + "lowercase-keys": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz", + "integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==", + "dev": true + }, + "lru-cache": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "dependencies": { + "requires": { "yallist": "^4.0.0" + } + }, + "make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dev": true, + "requires": { + "semver": "^6.0.0" }, - "engines": { - "node": ">=10" + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } } }, - "node_modules/map-obj": { + "map-obj": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-4.3.0.tgz", "integrity": "sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==", - "dev": true, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } + "dev": true }, - "node_modules/media-typer": { + "media-typer": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", - "dev": true, - "engines": { - "node": ">= 0.6" - } + "dev": true }, - "node_modules/meow": { + "meow": { "version": "9.0.0", "resolved": "https://registry.npmjs.org/meow/-/meow-9.0.0.tgz", "integrity": "sha512-+obSblOQmRhcyBt62furQqRAQpNyWXo8BuQ5bN7dG8wmwQ+vwHKp/rCFD4CrTP8CsDQD1sjoZ94K417XEUk8IQ==", "dev": true, - "dependencies": { + "requires": { "@types/minimist": "^1.2.0", "camelcase-keys": "^6.2.2", "decamelize": "^1.2.0", @@ -2790,843 +2818,838 @@ "type-fest": "^0.18.0", "yargs-parser": "^20.2.3" }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/meow/node_modules/hosted-git-info": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz", - "integrity": "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==", - "dev": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/meow/node_modules/normalize-package-data": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz", - "integrity": "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==", - "dev": true, "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/meow/node_modules/type-fest": { - "version": "0.18.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.18.1.tgz", - "integrity": "sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "type-fest": { + "version": "0.18.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.18.1.tgz", + "integrity": "sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==", + "dev": true + }, + "yargs-parser": { + "version": "20.2.9", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "dev": true + } } }, - "node_modules/merge-descriptors": { + "merge-descriptors": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==", "dev": true }, - "node_modules/merge-stream": { + "merge-stream": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", "dev": true }, - "node_modules/merge2": { + "merge2": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", - "dev": true, - "engines": { - "node": ">= 8" - } + "dev": true }, - "node_modules/methods": { + "methods": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", - "dev": true, - "engines": { - "node": ">= 0.6" - } + "dev": true }, - "node_modules/micromatch": { - "version": "4.0.7", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.7.tgz", - "integrity": "sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==", + "micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", "dev": true, - "dependencies": { - "braces": "^3.0.3", + "requires": { + "braces": "^3.0.2", "picomatch": "^2.3.1" - }, - "engines": { - "node": ">=8.6" } }, - "node_modules/mime": { + "mime": { "version": "1.6.0", "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", - "dev": true, - "bin": { - "mime": "cli.js" - }, - "engines": { - "node": ">=4" - } + "dev": true }, - "node_modules/mime-db": { + "mime-db": { "version": "1.52.0", "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", - "dev": true, - "engines": { - "node": ">= 0.6" - } + "dev": true }, - "node_modules/mime-types": { + "mime-types": { "version": "2.1.35", "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", "dev": true, - "dependencies": { + "requires": { "mime-db": "1.52.0" - }, - "engines": { - "node": ">= 0.6" } }, - "node_modules/mimic-fn": { + "mimic-fn": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", - "dev": true, - "engines": { - "node": ">=6" - } + "dev": true + }, + "mimic-response": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", + "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", + "dev": true }, - "node_modules/min-indent": { + "min-indent": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", - "dev": true, - "engines": { - "node": ">=4" - } + "dev": true }, - "node_modules/minimatch": { + "minimatch": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, - "dependencies": { + "requires": { "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" } }, - "node_modules/minimist": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", - "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } + "minimist": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz", + "integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==", + "dev": true }, - "node_modules/minimist-options": { + "minimist-options": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/minimist-options/-/minimist-options-4.1.0.tgz", "integrity": "sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==", "dev": true, - "dependencies": { + "requires": { "arrify": "^1.0.1", "is-plain-obj": "^1.1.0", "kind-of": "^6.0.3" }, - "engines": { - "node": ">= 6" + "dependencies": { + "arrify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", + "integrity": "sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==", + "dev": true + } } }, - "node_modules/ms": { + "ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "dev": true }, - "node_modules/mute-stream": { + "mute-stream": { "version": "0.0.8", "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==", "dev": true }, - "node_modules/natural-compare": { + "natural-compare": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", "dev": true }, - "node_modules/ncp": { + "ncp": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ncp/-/ncp-2.0.0.tgz", "integrity": "sha512-zIdGUrPRFTUELUvr3Gmc7KZ2Sw/h1PiVM0Af/oHB6zgnV1ikqSfRk+TOufi79aHYCW3NiOXmr1BP5nWbzojLaA==", - "dev": true, - "bin": { - "ncp": "bin/ncp" - } + "dev": true }, - "node_modules/negotiator": { + "negotiator": { "version": "0.6.3", "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "dev": true + }, + "node-fetch": { + "version": "2.6.7", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", + "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", + "requires": { + "whatwg-url": "^5.0.0" + } + }, + "node-forge": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz", + "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==" + }, + "nodemon": { + "version": "2.0.16", + "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-2.0.16.tgz", + "integrity": "sha512-zsrcaOfTWRuUzBn3P44RDliLlp263Z/76FPoHFr3cFFkOz0lTPAcIw8dCzfdVIx/t3AtDYCZRCDkoCojJqaG3w==", "dev": true, - "engines": { - "node": ">= 0.6" + "requires": { + "chokidar": "^3.5.2", + "debug": "^3.2.7", + "ignore-by-default": "^1.0.1", + "minimatch": "^3.0.4", + "pstree.remy": "^1.1.8", + "semver": "^5.7.1", + "supports-color": "^5.5.0", + "touch": "^3.1.0", + "undefsafe": "^2.0.5", + "update-notifier": "^5.1.0" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "requires": { + "ms": "^2.1.1" + } + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true + }, + "ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } } }, - "node_modules/normalize-package-data": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", - "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "nopt": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-1.0.10.tgz", + "integrity": "sha512-NWmpvLSqUrgrAC9HCuxEvb+PSloHpqVu+FqcO4eeF2h5qYRhA7ev6KvelyQAKtegUbC6RypJnlEOhd8vloNKYg==", "dev": true, - "dependencies": { - "hosted-git-info": "^2.1.4", - "resolve": "^1.10.0", - "semver": "2 || 3 || 4 || 5", - "validate-npm-package-license": "^3.0.1" + "requires": { + "abbrev": "1" } }, - "node_modules/normalize-package-data/node_modules/semver": { - "version": "5.7.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", - "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "normalize-package-data": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz", + "integrity": "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==", "dev": true, - "bin": { - "semver": "bin/semver" + "requires": { + "hosted-git-info": "^4.0.1", + "is-core-module": "^2.5.0", + "semver": "^7.3.4", + "validate-npm-package-license": "^3.0.1" + }, + "dependencies": { + "semver": { + "version": "7.3.7", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz", + "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + } } }, - "node_modules/npm-run-path": { + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true + }, + "normalize-url": { + "version": "4.5.1", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-4.5.1.tgz", + "integrity": "sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA==", + "dev": true + }, + "npm-run-path": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", "dev": true, - "dependencies": { + "requires": { "path-key": "^3.0.0" - }, - "engines": { - "node": ">=8" } }, - "node_modules/object-inspect": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz", - "integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==", + "object-inspect": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.2.tgz", + "integrity": "sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==" + }, + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "dev": true + }, + "object.assign": { + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", + "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "has-symbols": "^1.0.3", + "object-keys": "^1.1.1" } }, - "node_modules/on-finished": { + "on-finished": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", "dev": true, - "dependencies": { + "requires": { "ee-first": "1.1.1" - }, - "engines": { - "node": ">= 0.8" } }, - "node_modules/once": { + "once": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", "dev": true, - "dependencies": { + "requires": { "wrappy": "1" } }, - "node_modules/onetime": { + "onetime": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", "dev": true, - "dependencies": { + "requires": { "mimic-fn": "^2.1.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/optionator": { - "version": "0.9.4", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", - "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", + "optionator": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", + "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", "dev": true, - "dependencies": { + "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.5" - }, - "engines": { - "node": ">= 0.8.0" + "word-wrap": "^1.2.3" } }, - "node_modules/os-tmpdir": { + "os-tmpdir": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", "integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } + "dev": true + }, + "p-cancelable": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-1.1.0.tgz", + "integrity": "sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==", + "dev": true }, - "node_modules/p-limit": { + "p-limit": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", "dev": true, - "dependencies": { + "requires": { "p-try": "^2.0.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/p-locate": { + "p-locate": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", "dev": true, - "dependencies": { + "requires": { "p-limit": "^2.2.0" - }, - "engines": { - "node": ">=8" } }, - "node_modules/p-try": { + "p-try": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true + }, + "package-json": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/package-json/-/package-json-6.5.0.tgz", + "integrity": "sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ==", "dev": true, - "engines": { - "node": ">=6" + "requires": { + "got": "^9.6.0", + "registry-auth-token": "^4.0.0", + "registry-url": "^5.0.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==", + "dev": true + } } }, - "node_modules/parent-module": { + "parent-module": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", "dev": true, - "dependencies": { + "requires": { "callsites": "^3.0.0" - }, - "engines": { - "node": ">=6" } }, - "node_modules/parse-json": { + "parse-json": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", "dev": true, - "dependencies": { + "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" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/parseurl": { + "parseurl": { "version": "1.3.3", "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", - "dev": true, - "engines": { - "node": ">= 0.8" - } + "dev": true }, - "node_modules/path-exists": { + "path-exists": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "dev": true, - "engines": { - "node": ">=8" - } + "dev": true }, - "node_modules/path-is-absolute": { + "path-is-absolute": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } + "dev": true }, - "node_modules/path-key": { + "path-key": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", - "dev": true, - "engines": { - "node": ">=8" - } + "dev": true }, - "node_modules/path-parse": { + "path-parse": { "version": "1.0.7", "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", "dev": true }, - "node_modules/path-to-regexp": { + "path-to-regexp": { "version": "0.1.7", "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==", "dev": true }, - "node_modules/path-type": { + "path-type": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/picocolors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.1.tgz", - "integrity": "sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==", "dev": true }, - "node_modules/picomatch": { + "picomatch": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", - "dev": true, - "engines": { - "node": ">=8.6" - }, - "funding": { - "url": "https://github.com/sponsors/jonschlinkert" - } - }, - "node_modules/possible-typed-array-names": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz", - "integrity": "sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==", - "dev": true, - "engines": { - "node": ">= 0.4" - } + "dev": true }, - "node_modules/prelude-ls": { + "prelude-ls": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", - "dev": true, - "engines": { - "node": ">= 0.8.0" - } + "dev": true }, - "node_modules/prettier": { - "version": "2.8.8", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.8.tgz", - "integrity": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==", - "dev": true, - "bin": { - "prettier": "bin-prettier.js" - }, - "engines": { - "node": ">=10.13.0" - }, - "funding": { - "url": "https://github.com/prettier/prettier?sponsor=1" - } + "prepend-http": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz", + "integrity": "sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA==", + "dev": true + }, + "prettier": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.7.1.tgz", + "integrity": "sha512-ujppO+MkdPqoVINuDFDRLClm7D78qbDt0/NR+wp5FqEZOoTNAjPHWj17QRhu7geIHJfcNhRk1XVQmF8Bp3ye+g==", + "dev": true }, - "node_modules/prettier-linter-helpers": { + "prettier-linter-helpers": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz", "integrity": "sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==", "dev": true, - "dependencies": { + "requires": { "fast-diff": "^1.1.2" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/process": { - "version": "0.11.10", - "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", - "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", - "dev": true, - "engines": { - "node": ">= 0.6.0" } }, - "node_modules/progress": { + "progress": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", - "dev": true, - "engines": { - "node": ">=0.4.0" - } + "dev": true }, - "node_modules/proxy-addr": { + "proxy-addr": { "version": "2.0.7", "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", "dev": true, - "dependencies": { + "requires": { "forwarded": "0.2.0", "ipaddr.js": "1.9.1" - }, - "engines": { - "node": ">= 0.10" } }, - "node_modules/punycode": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", - "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "pstree.remy": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/pstree.remy/-/pstree.remy-1.1.8.tgz", + "integrity": "sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==", + "dev": true + }, + "pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "dev": true, + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "punycode": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", + "dev": true + }, + "pupa": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/pupa/-/pupa-2.1.1.tgz", + "integrity": "sha512-l1jNAspIBSFqbT+y+5FosojNpVpF94nlI+wDUpqP9enwOTfHx9f0gh5nB96vl+6yTpsJsypeNrwfzPrKuHB41A==", "dev": true, - "engines": { - "node": ">=6" + "requires": { + "escape-goat": "^2.0.0" } }, - "node_modules/qs": { + "qs": { "version": "6.11.0", "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", - "dev": true, - "dependencies": { + "requires": { "side-channel": "^1.0.4" - }, - "engines": { - "node": ">=0.6" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/queue-microtask": { + "queue-microtask": { "version": "1.2.3", "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] + "dev": true }, - "node_modules/quick-lru": { + "quick-lru": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-4.0.1.tgz", "integrity": "sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==", - "dev": true, - "engines": { - "node": ">=8" - } + "dev": true }, - "node_modules/range-parser": { + "range-parser": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", - "dev": true, - "engines": { - "node": ">= 0.6" - } + "dev": true }, - "node_modules/raw-body": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz", - "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==", + "raw-body": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", + "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", "dev": true, - "dependencies": { + "requires": { "bytes": "3.1.2", "http-errors": "2.0.0", "iconv-lite": "0.4.24", "unpipe": "1.0.0" + } + }, + "rc": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", + "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", + "dev": true, + "requires": { + "deep-extend": "^0.6.0", + "ini": "~1.3.0", + "minimist": "^1.2.0", + "strip-json-comments": "~2.0.1" }, - "engines": { - "node": ">= 0.8" + "dependencies": { + "ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", + "dev": true + } } }, - "node_modules/read-pkg": { + "read-pkg": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", "dev": true, - "dependencies": { + "requires": { "@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" + "dependencies": { + "hosted-git-info": { + "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", + "dev": true + }, + "normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "dev": true, + "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", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", + "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", + "dev": true + } } }, - "node_modules/read-pkg-up": { + "read-pkg-up": { "version": "7.0.1", "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", "dev": true, - "dependencies": { + "requires": { "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" + "dependencies": { + "type-fest": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", + "dev": true + } } }, - "node_modules/read-pkg/node_modules/type-fest": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", - "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", + "readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", "dev": true, - "engines": { - "node": ">=8" + "requires": { + "picomatch": "^2.2.1" } }, - "node_modules/redent": { + "redent": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz", "integrity": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==", "dev": true, - "dependencies": { + "requires": { "indent-string": "^4.0.0", "strip-indent": "^3.0.0" - }, - "engines": { - "node": ">=8" } }, - "node_modules/regexpp": { + "reflect-metadata": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/reflect-metadata/-/reflect-metadata-0.1.13.tgz", + "integrity": "sha512-Ts1Y/anZELhSsjMcU605fU9RE4Oi3p5ORujwbIKXfWa+0Zxs510Qrmrce5/Jowq3cHSZSJqBjypxmHarc+vEWg==" + }, + "regexp.prototype.flags": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz", + "integrity": "sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "functions-have-names": "^1.2.2" + } + }, + "regexpp": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==", + "dev": true + }, + "registry-auth-token": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-4.2.2.tgz", + "integrity": "sha512-PC5ZysNb42zpFME6D/XlIgtNGdTl8bBOCw90xQLVMpzuuubJKYDWFAEuUNc+Cn8Z8724tg2SDhDRrkVEsqfDMg==", "dev": true, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/mysticatea" + "requires": { + "rc": "1.2.8" + } + }, + "registry-url": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/registry-url/-/registry-url-5.1.0.tgz", + "integrity": "sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw==", + "dev": true, + "requires": { + "rc": "^1.2.8" } }, - "node_modules/require-from-string": { + "require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "dev": true + }, + "require-from-string": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } + "dev": true }, - "node_modules/resolve": { - "version": "1.22.8", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", - "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "resolve": { + "version": "1.22.1", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz", + "integrity": "sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==", "dev": true, - "dependencies": { - "is-core-module": "^2.13.0", + "requires": { + "is-core-module": "^2.9.0", "path-parse": "^1.0.7", "supports-preserve-symlinks-flag": "^1.0.0" - }, - "bin": { - "resolve": "bin/resolve" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/resolve-from": { + "resolve-from": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true + }, + "responselike": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz", + "integrity": "sha512-/Fpe5guzJk1gPqdJLJR5u7eG/gNY4nImjbRDaVWVMRhne55TCmj2i9Q+54PBRfatRC8v/rIiv9BN0pMd9OV5EQ==", "dev": true, - "engines": { - "node": ">=4" + "requires": { + "lowercase-keys": "^1.0.0" } }, - "node_modules/restore-cursor": { + "restore-cursor": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", "dev": true, - "dependencies": { + "requires": { "onetime": "^5.1.0", "signal-exit": "^3.0.2" - }, - "engines": { - "node": ">=8" } }, - "node_modules/reusify": { + "reusify": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", - "dev": true, - "engines": { - "iojs": ">=1.0.0", - "node": ">=0.10.0" - } + "dev": true }, - "node_modules/rimraf": { + "rimraf": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "deprecated": "Rimraf versions prior to v4 are no longer supported", "dev": true, - "dependencies": { + "requires": { "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/run-async": { + "run-async": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz", "integrity": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==", - "dev": true, - "engines": { - "node": ">=0.12.0" - } + "dev": true }, - "node_modules/run-parallel": { + "run-parallel": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", "dev": true, - "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": { + "requires": { "queue-microtask": "^1.2.2" } }, - "node_modules/rxjs": { - "version": "6.6.7", - "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz", - "integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==", + "rxjs": { + "version": "7.5.5", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.5.5.tgz", + "integrity": "sha512-sy+H0pQofO95VDmFLzyaw9xNJU4KTRSwQIGM6+iG3SypAtCiLDzpeG8sJrNCWn2Up9km+KhkvTdbkrdy+yzZdw==", "dev": true, - "dependencies": { - "tslib": "^1.9.0" - }, - "engines": { - "npm": ">=2.0.0" + "requires": { + "tslib": "^2.1.0" } }, - "node_modules/safe-buffer": { + "safe-buffer": { "version": "5.2.1", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" }, - "node_modules/safer-buffer": { + "safer-buffer": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", "dev": true }, - "node_modules/semver": { - "version": "7.6.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", - "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true + }, + "semver-diff": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/semver-diff/-/semver-diff-3.1.1.tgz", + "integrity": "sha512-GX0Ix/CJcHyB8c4ykpHGIAvLyOwOobtM/8d+TQkAd81/bEjgPHrfba41Vpesr7jX/t8Uh+R3EX9eAS5be+jQYg==", "dev": true, - "bin": { - "semver": "bin/semver.js" + "requires": { + "semver": "^6.3.0" }, - "engines": { - "node": ">=10" + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } } }, - "node_modules/send": { + "send": { "version": "0.18.0", "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", "dev": true, - "dependencies": { + "requires": { "debug": "2.6.9", "depd": "2.0.0", "destroy": "1.2.0", @@ -3641,584 +3664,656 @@ "range-parser": "~1.2.1", "statuses": "2.0.1" }, - "engines": { - "node": ">= 0.8.0" + "dependencies": { + "ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true + } } }, - "node_modules/send/node_modules/ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "dev": true - }, - "node_modules/serve-static": { + "serve-static": { "version": "1.15.0", "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", "dev": true, - "dependencies": { + "requires": { "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "parseurl": "~1.3.3", "send": "0.18.0" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/set-function-length": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", - "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", - "dev": true, - "dependencies": { - "define-data-property": "^1.1.4", - "es-errors": "^1.3.0", - "function-bind": "^1.1.2", - "get-intrinsic": "^1.2.4", - "gopd": "^1.0.1", - "has-property-descriptors": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" } }, - "node_modules/setprototypeof": { + "setprototypeof": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", "dev": true }, - "node_modules/shebang-command": { + "shebang-command": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", "dev": true, - "dependencies": { + "requires": { "shebang-regex": "^3.0.0" - }, - "engines": { - "node": ">=8" } }, - "node_modules/shebang-regex": { + "shebang-regex": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", - "dev": true, - "engines": { - "node": ">=8" - } + "dev": true }, - "node_modules/side-channel": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz", - "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.7", - "es-errors": "^1.3.0", - "get-intrinsic": "^1.2.4", - "object-inspect": "^1.13.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "shell-quote": { + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.3.tgz", + "integrity": "sha512-Vpfqwm4EnqGdlsBFNmHhxhElJYrdfcxPThu+ryKS5J8L/fhAwLazFZtq+S+TWZ9ANj2piSQLGj6NQg+lKPmxrw==", + "dev": true + }, + "side-channel": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "requires": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" } }, - "node_modules/signal-exit": { + "signal-exit": { "version": "3.0.7", "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", "dev": true }, - "node_modules/slash": { + "slash": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", - "dev": true, - "engines": { - "node": ">=8" - } + "dev": true }, - "node_modules/slice-ansi": { + "slice-ansi": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", "dev": true, - "dependencies": { + "requires": { "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/slice-ansi/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "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/slice-ansi/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" } }, - "node_modules/slice-ansi/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "spawn-command": { + "version": "0.0.2-1", + "resolved": "https://registry.npmjs.org/spawn-command/-/spawn-command-0.0.2-1.tgz", + "integrity": "sha512-n98l9E2RMSJ9ON1AKisHzz7V42VDiBQGY6PB1BwRglz99wpVsSuGzQ+jOi6lFXBGVTCrRpltvjm+/XA+tpeJrg==", "dev": true }, - "node_modules/spdx-correct": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", - "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==", + "spdx-correct": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz", + "integrity": "sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==", "dev": true, - "dependencies": { + "requires": { "spdx-expression-parse": "^3.0.0", "spdx-license-ids": "^3.0.0" } }, - "node_modules/spdx-exceptions": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.5.0.tgz", - "integrity": "sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==", + "spdx-exceptions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", + "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", "dev": true }, - "node_modules/spdx-expression-parse": { + "spdx-expression-parse": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", "dev": true, - "dependencies": { + "requires": { "spdx-exceptions": "^2.1.0", "spdx-license-ids": "^3.0.0" } }, - "node_modules/spdx-license-ids": { - "version": "3.0.18", - "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.18.tgz", - "integrity": "sha512-xxRs31BqRYHwiMzudOrpSiHtZ8i/GeionCBDSilhYRj+9gIcI8wCZTlXZKu9vZIVqViP3dcp9qE5G6AlIaD+TQ==", + "spdx-license-ids": { + "version": "3.0.12", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.12.tgz", + "integrity": "sha512-rr+VVSXtRhO4OHbXUiAF7xW3Bo9DuuF6C5jH+q/x15j2jniycgKbxU09Hr0WqlSLUs4i4ltHGXqTe7VHclYWyA==", "dev": true }, - "node_modules/sprintf-js": { + "sprintf-js": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", "dev": true }, - "node_modules/statuses": { + "statuses": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", - "dev": true, - "engines": { - "node": ">= 0.8" - } + "dev": true }, - "node_modules/string-width": { + "string-width": { "version": "4.2.3", "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", "dev": true, - "dependencies": { + "requires": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=8" } }, - "node_modules/strip-ansi": { + "string.prototype.trimend": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.5.tgz", + "integrity": "sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.19.5" + } + }, + "string.prototype.trimstart": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.5.tgz", + "integrity": "sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.19.5" + } + }, + "strip-ansi": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "dev": true, - "dependencies": { + "requires": { "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" } }, - "node_modules/strip-final-newline": { + "strip-final-newline": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", - "dev": true, - "engines": { - "node": ">=6" - } + "dev": true }, - "node_modules/strip-indent": { + "strip-indent": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz", "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==", "dev": true, - "dependencies": { + "requires": { "min-indent": "^1.0.0" - }, - "engines": { - "node": ">=8" } }, - "node_modules/strip-json-comments": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", - "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", - "dev": true, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } + "strip-json-comments": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", + "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==", + "dev": true }, - "node_modules/supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", "dev": true, - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=4" + "requires": { + "has-flag": "^4.0.0" } }, - "node_modules/supports-preserve-symlinks-flag": { + "supports-preserve-symlinks-flag": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", - "dev": true, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } + "dev": true }, - "node_modules/table": { - "version": "6.8.2", - "resolved": "https://registry.npmjs.org/table/-/table-6.8.2.tgz", - "integrity": "sha512-w2sfv80nrAh2VCbqR5AK27wswXhqcck2AhfnNW76beQXskGZ1V12GwS//yYVa3d3fcvAip2OUnbDAjW2k3v9fA==", + "table": { + "version": "6.8.0", + "resolved": "https://registry.npmjs.org/table/-/table-6.8.0.tgz", + "integrity": "sha512-s/fitrbVeEyHKFa7mFdkuQMWlH1Wgw/yEXMt5xACT4ZpzWFluehAxRtUUQKPuWhaLAWhFcVx6w3oC8VKaUfPGA==", "dev": true, - "dependencies": { + "requires": { "ajv": "^8.0.1", "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" + "dependencies": { + "ajv": { + "version": "8.11.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", + "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + } + }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + } } }, - "node_modules/text-table": { + "text-table": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", "dev": true }, - "node_modules/through": { + "through": { "version": "2.3.8", "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", "dev": true }, - "node_modules/tmp": { + "tmp": { "version": "0.0.33", "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", "dev": true, - "dependencies": { + "requires": { "os-tmpdir": "~1.0.2" - }, - "engines": { - "node": ">=0.6.0" } }, - "node_modules/to-regex-range": { + "to-readable-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/to-readable-stream/-/to-readable-stream-1.0.0.tgz", + "integrity": "sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==", + "dev": true + }, + "to-regex-range": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", "dev": true, - "dependencies": { + "requires": { "is-number": "^7.0.0" - }, - "engines": { - "node": ">=8.0" } }, - "node_modules/toidentifier": { + "toidentifier": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "dev": true + }, + "touch": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/touch/-/touch-3.1.0.tgz", + "integrity": "sha512-WBx8Uy5TLtOSRtIq+M03/sKDrXCLHxwDcquSP2c43Le03/9serjQBIztjRz6FkJez9D/hleyAXTBGLwwZUw9lA==", "dev": true, - "engines": { - "node": ">=0.6" + "requires": { + "nopt": "~1.0.10" } }, - "node_modules/trim-newlines": { + "tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" + }, + "tree-kill": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.2.tgz", + "integrity": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==", + "dev": true + }, + "trim-newlines": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-3.0.1.tgz", "integrity": "sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==", - "dev": true, - "engines": { - "node": ">=8" - } + "dev": true }, - "node_modules/tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "tslib": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", + "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==", "dev": true }, - "node_modules/tsutils": { + "tsutils": { "version": "3.21.0", "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", "dev": true, - "dependencies": { + "requires": { "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" + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true + } } }, - "node_modules/type-check": { + "type-check": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", "dev": true, - "dependencies": { + "requires": { "prelude-ls": "^1.2.1" - }, - "engines": { - "node": ">= 0.8.0" } }, - "node_modules/type-fest": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", - "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", - "dev": true, - "engines": { - "node": ">=8" - } + "type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true }, - "node_modules/type-is": { + "type-is": { "version": "1.6.18", "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", "dev": true, - "dependencies": { + "requires": { "media-typer": "0.3.0", "mime-types": "~2.1.24" - }, - "engines": { - "node": ">= 0.6" } }, - "node_modules/typedarray-to-buffer": { + "typedarray-to-buffer": { "version": "3.1.5", "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", "dev": true, - "dependencies": { + "requires": { "is-typedarray": "^1.0.0" } }, - "node_modules/typescript": { - "version": "4.9.5", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz", - "integrity": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==", + "typescript": { + "version": "4.7.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.7.4.tgz", + "integrity": "sha512-C0WQT0gezHuw6AdY1M2jxUO83Rjf0HP7Sk1DtXj6j1EwkQNZrHAg2XPWlq62oqEhYvONq5pkC2Y9oPljWToLmQ==", + "dev": true + }, + "unbox-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", + "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", "dev": true, - "bin": { - "tsc": "bin/tsc", - "tsserver": "bin/tsserver" - }, - "engines": { - "node": ">=4.2.0" + "requires": { + "call-bind": "^1.0.2", + "has-bigints": "^1.0.2", + "has-symbols": "^1.0.3", + "which-boxed-primitive": "^1.0.2" + } + }, + "undefsafe": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/undefsafe/-/undefsafe-2.0.5.tgz", + "integrity": "sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA==", + "dev": true + }, + "unique-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz", + "integrity": "sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==", + "dev": true, + "requires": { + "crypto-random-string": "^2.0.0" } }, - "node_modules/unpipe": { + "unpipe": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", + "dev": true + }, + "update-notifier": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/update-notifier/-/update-notifier-5.1.0.tgz", + "integrity": "sha512-ItnICHbeMh9GqUy31hFPrD1kcuZ3rpxDZbf4KUDavXwS0bW5m7SLbDQpGX3UYr072cbrF5hFUs3r5tUsPwjfHw==", "dev": true, - "engines": { - "node": ">= 0.8" + "requires": { + "boxen": "^5.0.0", + "chalk": "^4.1.0", + "configstore": "^5.0.1", + "has-yarn": "^2.1.0", + "import-lazy": "^2.1.0", + "is-ci": "^2.0.0", + "is-installed-globally": "^0.4.0", + "is-npm": "^5.0.0", + "is-yarn-global": "^0.3.0", + "latest-version": "^5.1.0", + "pupa": "^2.1.1", + "semver": "^7.3.4", + "semver-diff": "^3.1.1", + "xdg-basedir": "^4.0.0" + }, + "dependencies": { + "semver": { + "version": "7.3.7", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz", + "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + } } }, - "node_modules/uri-js": { + "uri-js": { "version": "4.4.1", "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", "dev": true, - "dependencies": { + "requires": { "punycode": "^2.1.0" } }, - "node_modules/util": { - "version": "0.12.5", - "resolved": "https://registry.npmjs.org/util/-/util-0.12.5.tgz", - "integrity": "sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==", + "url-parse-lax": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz", + "integrity": "sha512-NjFKA0DidqPa5ciFcSrXnAltTtzz84ogy+NebPvfEgAck0+TNg4UJ4IN+fB7zRZfbgUf0syOo9MDxFkDSMuFaQ==", "dev": true, - "dependencies": { + "requires": { + "prepend-http": "^2.0.0" + } + }, + "url-template": { + "version": "2.0.8", + "resolved": "https://registry.npmjs.org/url-template/-/url-template-2.0.8.tgz", + "integrity": "sha512-XdVKMF4SJ0nP/O7XIPB0JwAEuT9lDIYnNsK8yGVe43y0AWoKeJNdv3ZNWh7ksJ6KqQFjOO6ox/VEitLnaVNufw==" + }, + "util": { + "version": "0.12.4", + "resolved": "https://registry.npmjs.org/util/-/util-0.12.4.tgz", + "integrity": "sha512-bxZ9qtSlGUWSOy9Qa9Xgk11kSslpuZwaxCg4sNIDj6FLucDab2JxnHwyNTCpHMtK1MjoQiWQ6DiUMZYbSrO+Sw==", + "dev": true, + "requires": { "inherits": "^2.0.3", "is-arguments": "^1.0.4", "is-generator-function": "^1.0.7", "is-typed-array": "^1.1.3", + "safe-buffer": "^5.1.2", "which-typed-array": "^1.1.2" } }, - "node_modules/utils-merge": { + "utils-merge": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", - "dev": true, - "engines": { - "node": ">= 0.4.0" - } + "dev": true }, - "node_modules/uuid": { + "uuid": { "version": "8.3.2", "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", - "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", - "dev": true, - "bin": { - "uuid": "dist/bin/uuid" - } + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==" }, - "node_modules/v8-compile-cache": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.4.0.tgz", - "integrity": "sha512-ocyWc3bAHBB/guyqJQVI5o4BZkPhznPYUG2ea80Gond/BgNWpap8TOmLSeeQG7bnh2KMISxskdADG59j7zruhw==", + "v8-compile-cache": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz", + "integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==", "dev": true }, - "node_modules/validate-npm-package-license": { + "validate-npm-package-license": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", "dev": true, - "dependencies": { + "requires": { "spdx-correct": "^3.0.0", "spdx-expression-parse": "^3.0.0" } }, - "node_modules/vary": { + "validator": { + "version": "13.7.0", + "resolved": "https://registry.npmjs.org/validator/-/validator-13.7.0.tgz", + "integrity": "sha512-nYXQLCBkpJ8X6ltALua9dRrZDHVYxjJ1wgskNt1lH9fzGjs3tgojGSCBjmEPwkWS1y29+DrizMTW19Pr9uB2nw==" + }, + "vary": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", - "dev": true, - "engines": { - "node": ">= 0.8" + "dev": true + }, + "webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" + }, + "whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "requires": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" } }, - "node_modules/which": { + "which": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", "dev": true, - "dependencies": { + "requires": { "isexe": "^2.0.0" - }, - "bin": { - "node-which": "bin/node-which" - }, - "engines": { - "node": ">= 8" } }, - "node_modules/which-typed-array": { - "version": "1.1.15", - "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.15.tgz", - "integrity": "sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==", + "which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "dev": true, + "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-typed-array": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.8.tgz", + "integrity": "sha512-Jn4e5PItbcAHyLoRDwvPj1ypu27DJbtdYXUa5zsinrUx77Uvfb0cXwwnGMTn7cjUfhhqgVQnVJCwF+7cgU7tpw==", "dev": true, - "dependencies": { - "available-typed-arrays": "^1.0.7", - "call-bind": "^1.0.7", + "requires": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "es-abstract": "^1.20.0", "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-tostringtag": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "has-tostringtag": "^1.0.0", + "is-typed-array": "^1.1.9" + } + }, + "widest-line": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-3.1.0.tgz", + "integrity": "sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==", + "dev": true, + "requires": { + "string-width": "^4.0.0" } }, - "node_modules/word-wrap": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", - "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", + "word-wrap": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", + "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", + "dev": true + }, + "wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", "dev": true, - "engines": { - "node": ">=0.10.0" + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" } }, - "node_modules/wrappy": { + "wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", "dev": true }, - "node_modules/write-file-atomic": { + "write-file-atomic": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", "dev": true, - "dependencies": { + "requires": { "imurmurhash": "^0.1.4", "is-typedarray": "^1.0.0", "signal-exit": "^3.0.2", "typedarray-to-buffer": "^3.1.5" } }, - "node_modules/yallist": { + "xdg-basedir": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-4.0.0.tgz", + "integrity": "sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==", "dev": true }, - "node_modules/yargs-parser": { - "version": "20.2.9", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", - "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", - "dev": true, - "engines": { - "node": ">=10" + "xmlhttprequest": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/xmlhttprequest/-/xmlhttprequest-1.8.0.tgz", + "integrity": "sha512-58Im/U0mlVBLM38NdZjHyhuMtCqa61469k2YP/AaPbvCoV9aQGUpbJBj1QRm2ytRiVQBD/fsw7L2bJGDVQswBA==" + }, + "y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + }, + "yargs": { + "version": "17.5.1", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.5.1.tgz", + "integrity": "sha512-t6YAJcxDkNX7NFYiVtKvWUz8l+PaKTLiL63mJYWR2GnHq2gjEWISzsLp9wg3aY36dY1j+gfIEL3pIF+XlJJfbA==", + "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.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.0.0" } + }, + "yargs-parser": { + "version": "21.0.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.0.1.tgz", + "integrity": "sha512-9BK1jFpLzJROCI5TzwZL/TU4gqjK5xiHV/RfWLOahrjAko/e4DJkRDZQXfvqAsiZzzYhgAzbgz6lg48jcm4GLg==", + "dev": true } } } diff --git a/cloud_functions/earth_engine_tiler/package.json b/cloud_functions/earth_engine_tiler/package.json index 5a6c71a..b0f5bb5 100644 --- a/cloud_functions/earth_engine_tiler/package.json +++ b/cloud_functions/earth_engine_tiler/package.json @@ -4,7 +4,10 @@ "description": "", "main": "build/src/index.js", "scripts": { - "start": "functions-framework -source=build/src/ --target=helloEET", + "start": "functions-framework -source=build/src/ --target=analyze", + "watch": "concurrently \"tsc -w\" \"nodemon --watch ./build/ --exec npm run start\"", + "lint": "gts lint", + "clean": "gts clean", "compile": "tsc", "build": "npm run compile" }, @@ -13,10 +16,17 @@ "devDependencies": { "@google-cloud/functions-framework": "3.1.1", "@types/express": "^4.17.13", + "concurrently": "^7.2.2", + "nodemon": "^2.0.16", "gts": "^3.1.0", "typescript": "^4.0.3", - "@types/node": "^14.11.2" + "@types/node": "^14.11.2", + "@types/validator": "^12.0.1" }, "dependencies": { + "@google/earthengine": "0.1.324", + "class-transformer": "^0.5.1", + "class-validator": "^0.14.0", + "reflect-metadata": "^0.1.13" } -} \ No newline at end of file +} diff --git a/cloud_functions/earth_engine_tiler/src/geeAssets/EEDataset.d.ts b/cloud_functions/earth_engine_tiler/src/geeAssets/EEDataset.d.ts new file mode 100644 index 0000000..22befa2 --- /dev/null +++ b/cloud_functions/earth_engine_tiler/src/geeAssets/EEDataset.d.ts @@ -0,0 +1,20 @@ +import ee from '@google/earthengine'; + +export interface IDataAsset { + /** Path to earth engine asset */ + readonly assetPath: { [key: string]: string }; + /** Number of years */ + readonly numYears: number; + + /** Visualization parameters */ + readonly vizParams: { + bands: string[], + min: number, + max: number, + palette: string[] + }; + + /** Function that returns ee.Image instance with asset */ + getEEAsset: (key?: string) => any; + getMapUrl: (z: number, x: number, y: number, year?: number) => BinaryData; +} diff --git a/cloud_functions/earth_engine_tiler/src/geeAssets/ModisNetPrimaryProduction.ts b/cloud_functions/earth_engine_tiler/src/geeAssets/ModisNetPrimaryProduction.ts new file mode 100644 index 0000000..0920251 --- /dev/null +++ b/cloud_functions/earth_engine_tiler/src/geeAssets/ModisNetPrimaryProduction.ts @@ -0,0 +1,25 @@ +import { IDataAsset } from './EEDataset'; +import ee from '@google/earthengine'; + + +export const ModisNetPrimaryProduction: IDataAsset = { + assetPath: { + default: "MODIS/061/MOD17A3HGF" + }, + numYears: 20, + vizParams: { + bands:['Npp'], + min: 0.0, + max: 20000.0, + palette: ['bbe029', '0a9501', '074b03'], + }, + getEEAsset(){ + return ee.ImageCollection(this.assetPath.default); + } + getMapUrl(z, x, y, year) { + const image = ee.ImageCollection(this.assetPath.default).filter(ee.Filter.date(`${String(year)}-01-01`, `${String(year)}-12-31`)); + const url = ee.data.getTileUrl(image.getMapId(this.vizParams),x,y,z) + + return url; + }, +}; diff --git a/cloud_functions/earth_engine_tiler/src/index.ts b/cloud_functions/earth_engine_tiler/src/index.ts index 74545f3..1c9721e 100644 --- a/cloud_functions/earth_engine_tiler/src/index.ts +++ b/cloud_functions/earth_engine_tiler/src/index.ts @@ -1,6 +1,85 @@ -import {HttpFunction} from "@google-cloud/functions-framework"; +import{ Request, Response} from 'express'; +import { + ArrayNotEmpty, + validateOrReject, + IsEnum, + IsInt +} from 'class-validator'; +import 'reflect-metadata'; +import { plainToClass } from 'class-transformer'; + +import ee from '@google/earthengine' +import type { HttpFunction } from '@google-cloud/functions-framework/build/src/functions'; + +import { eeAuthenticate, eeEvaluate } from './utils'; + +import { ModisNetPrimaryProduction } from './geeAssets/ModisNetPrimaryProduction'; + +enum Tilesets { + // this is a placeholder for now + // modis_net_primary_production = "modis_net_primary_production" +} + +class TileRequestParams { + // this is a placeholder for now + // tileset, z, x, y +} export const getTiles: HttpFunction = async (req, res) => { - res.status(200).send('Here is your data'); -} \ No newline at end of file + res.set('Access-Control-Allow-Origin', '*'); + + const TEST_DICT = { + "modis_net_primary_production": ModisNetPrimaryProduction + } + const isValid = await validateInput(req, res); + + if (!isValid.status) { + return isValid.res; + } + + if (req.method === 'OPTIONS') { + // Send response to OPTIONS requests + res.set('Access-Control-Allow-Methods', 'GET, OPTIONS'); + res.set('Access-Control-Allow-Headers', 'Content-Type'); + res.set('Access-Control-Max-Age', '3600'); + return res.status(204).send(''); + } + + try { + + await eeAuthenticate(); + + const tileset = req.query.tileset; + const asset = TEST_DICT[tileset]; + const {x, y, z} = req.query; + + const response = await eeEvaluate(asset.getMapUrl(asset.vizParams, x, y, z)) + + // This is wrong as what we need to give back is the image in the url + res.status(200).json(response); + + } catch (error) { + console.error(error) + res.status(400).json({"error": error.message}); + } + + return res +} + +async function validateInput(req: Request, res: Response): Promise<{"status": Boolean, "res": Response}> { + try { + if (!req.body || !req.query) { + return {"status": false, + "res": res.status(400).json({"error":"No data provided"})}; + } + + await validateOrReject(plainToClass(TileRequestParams, req.query)); + + return {"status": true, "res": res}; + } + catch (errors) { + return {"status": false, "res": res.status(400).json({"error": errors})}; + } +} + diff --git a/cloud_functions/earth_engine_tiler/src/utils.ts b/cloud_functions/earth_engine_tiler/src/utils.ts new file mode 100644 index 0000000..efa72a3 --- /dev/null +++ b/cloud_functions/earth_engine_tiler/src/utils.ts @@ -0,0 +1,32 @@ +import ee from '@google/earthengine'; +import { readFileSync } from 'fs'; +import path from 'path'; + +export function eeAuthenticate(): Promise { + return new Promise((resolve, reject) => { + // Authenticate to service account using short living access tokens + const PRIVATE_KEY = JSON.parse(readFileSync(path.resolve(process.cwd(), './credentials.json'), 'utf8')); + ee.data.authenticateViaPrivateKey(PRIVATE_KEY, + () => ee.initialize(null, null, resolve, reject), + (error) => console.error(error), + ); + }); +} + +export function eeEvaluate(eeStatement: ee.ComputedObject): Promise { + return new Promise((resolve, reject) => { + eeStatement.evaluate((success: any, failure: any) => { + if (failure) reject(new Error(failure)); + resolve(success); + }); + }); +} + +export function arrSum(arr: []): number { + return arr.reduce((a, b) => a + b, 0) +} + +export function cumSum(arr: []): number { + return arr.reduce((a, b) => a + b, 0) +} + diff --git a/cloud_functions/earth_engine_tiler/tsconfig.json b/cloud_functions/earth_engine_tiler/tsconfig.json index 665c18a..e86cff4 100644 --- a/cloud_functions/earth_engine_tiler/tsconfig.json +++ b/cloud_functions/earth_engine_tiler/tsconfig.json @@ -36,4 +36,4 @@ "types": [ "node" ] -} \ No newline at end of file +} From 346d409faeb514f9ca9847a79f108edfa14611da Mon Sep 17 00:00:00 2001 From: Alicia Date: Thu, 6 Jun 2024 16:23:05 +0200 Subject: [PATCH 02/19] remove unneded functions --- cloud_functions/earth_engine_tiler/src/utils.ts | 9 --------- 1 file changed, 9 deletions(-) diff --git a/cloud_functions/earth_engine_tiler/src/utils.ts b/cloud_functions/earth_engine_tiler/src/utils.ts index efa72a3..2a3e436 100644 --- a/cloud_functions/earth_engine_tiler/src/utils.ts +++ b/cloud_functions/earth_engine_tiler/src/utils.ts @@ -21,12 +21,3 @@ export function eeEvaluate(eeStatement: ee.ComputedObject): Promise { }); }); } - -export function arrSum(arr: []): number { - return arr.reduce((a, b) => a + b, 0) -} - -export function cumSum(arr: []): number { - return arr.reduce((a, b) => a + b, 0) -} - From dfb65a29804ca9985aed2ca3f6930bdd19f187c4 Mon Sep 17 00:00:00 2001 From: Kevin Date: Mon, 10 Jun 2024 19:55:34 +0200 Subject: [PATCH 03/19] feat(EE Cloud Function): Several tweaks to the EE function, currently streaming image from a given URL Makes several tweaks to the code of the function as well as modifying the infrastructure to account for the credentials file. Fetches image from URL and streams the response to the function's response directly Currently only supports a single Asset, more to be implemented --- .../earth_engine_tiler/.gcloudignore | 3 +- .../earth_engine_tiler/package-lock.json | 5933 ++++++++++------- .../earth_engine_tiler/package.json | 34 +- .../src/earth-engine-utils.ts | 38 + ...Dataset.d.ts => earth-engine-dataset.d.ts} | 6 +- ...> modis-net-primary-production-dataset.ts} | 22 +- .../earth_engine_tiler/src/index.ts | 112 +- .../src/tile-request.dto.ts | 34 + .../earth_engine_tiler/src/utils.ts | 23 - .../earth_engine_tiler/tsconfig.json | 8 +- .../base/modules/cloudfunction/main.tf | 1 + infrastructure/base/modules/env/main.tf | 25 +- 12 files changed, 3722 insertions(+), 2517 deletions(-) create mode 100644 cloud_functions/earth_engine_tiler/src/earth-engine-utils.ts rename cloud_functions/earth_engine_tiler/src/geeAssets/{EEDataset.d.ts => earth-engine-dataset.d.ts} (84%) rename cloud_functions/earth_engine_tiler/src/geeAssets/{ModisNetPrimaryProduction.ts => modis-net-primary-production-dataset.ts} (57%) create mode 100644 cloud_functions/earth_engine_tiler/src/tile-request.dto.ts delete mode 100644 cloud_functions/earth_engine_tiler/src/utils.ts diff --git a/cloud_functions/earth_engine_tiler/.gcloudignore b/cloud_functions/earth_engine_tiler/.gcloudignore index 0486179..ab1546c 100644 --- a/cloud_functions/earth_engine_tiler/.gcloudignore +++ b/cloud_functions/earth_engine_tiler/.gcloudignore @@ -3,4 +3,5 @@ .eslintrc.json .gitignore .prettierrc.js -package-lock.json +ee_credentials.json +node_modules diff --git a/cloud_functions/earth_engine_tiler/package-lock.json b/cloud_functions/earth_engine_tiler/package-lock.json index a680bb0..78c3518 100644 --- a/cloud_functions/earth_engine_tiler/package-lock.json +++ b/cloud_functions/earth_engine_tiler/package-lock.json @@ -1,725 +1,1113 @@ { - "name": "analysis", + "name": "earth_engine_tiler", "version": "1.0.0", - "lockfileVersion": 1, + "lockfileVersion": 3, "requires": true, - "dependencies": { - "@babel/code-frame": { + "packages": { + "": { + "name": "earth_engine_tiler", + "version": "1.0.0", + "license": "ISC", + "dependencies": { + "@google/earthengine": "0.1.406", + "class-transformer": "0.5.1", + "class-validator": "0.14.1", + "node-fetch": "2.7.0", + "reflect-metadata": "0.2.2" + }, + "devDependencies": { + "@google-cloud/functions-framework": "3.4.0", + "@types/express": "4.17.21", + "@types/node": "20.11.5", + "@types/node-fetch": "^2.6.11", + "@types/validator": "13.11.10", + "@typescript-eslint/eslint-plugin": "^7.12.0", + "concurrently": "8.2.2", + "gts": "^5.3.0", + "nodemon": "3.1.3", + "typescript": "5.4.3" + } + }, + "node_modules/@babel/code-frame": { "version": "7.12.11", "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz", "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==", "dev": true, - "requires": { + "dependencies": { "@babel/highlight": "^7.10.4" } }, - "@babel/helper-validator-identifier": { + "node_modules/@babel/helper-validator-identifier": { "version": "7.19.1", "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz", "integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==", - "dev": true + "dev": true, + "engines": { + "node": ">=6.9.0" + } }, - "@babel/highlight": { + "node_modules/@babel/highlight": { "version": "7.18.6", "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", "dev": true, - "requires": { + "dependencies": { "@babel/helper-validator-identifier": "^7.18.6", "chalk": "^2.0.0", "js-tokens": "^4.0.0" }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, "dependencies": { - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "requires": { - "color-convert": "^1.9.0" - } - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "dev": true, - "requires": { - "color-name": "1.1.3" - } - }, - "color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", - "dev": true - }, - "escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", - "dev": true - }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", - "dev": true - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - } + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/@babel/highlight/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "node_modules/@babel/highlight/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/@babel/highlight/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/runtime": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.24.7.tgz", + "integrity": "sha512-UwgBRMjJP+xv857DCngvqXI3Iq6J4v0wXmwc6sapg+zyhbwmQX67LUEFrkK5tbyJ30jGuG3ZvWpBiB9LCy1kWw==", + "dev": true, + "dependencies": { + "regenerator-runtime": "^0.14.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@eslint-community/eslint-utils": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", + "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", + "dev": true, + "dependencies": { + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" } }, - "@eslint/eslintrc": { - "version": "0.4.3", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.3.tgz", - "integrity": "sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==", + "node_modules/@eslint-community/regexpp": { + "version": "4.10.1", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.1.tgz", + "integrity": "sha512-Zm2NGpWELsQAD1xsJzGQpYfvICSsFkEpU0jxBjfdC6uNEWXcHnfs9hScFWtXVDVl+rBQJGrl4g1vcKIejpH9dA==", "dev": true, - "requires": { + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", + "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", + "dev": true, + "dependencies": { "ajv": "^6.12.4", - "debug": "^4.1.1", - "espree": "^7.3.0", - "globals": "^13.9.0", - "ignore": "^4.0.6", + "debug": "^4.3.2", + "espree": "^9.6.0", + "globals": "^13.19.0", + "ignore": "^5.2.0", "import-fresh": "^3.2.1", - "js-yaml": "^3.13.1", - "minimatch": "^3.0.4", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", "strip-json-comments": "^3.1.1" }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint/eslintrc/node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "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/@eslint/eslintrc/node_modules/debug": { + "version": "4.3.5", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.5.tgz", + "integrity": "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==", + "dev": true, "dependencies": { - "debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "dev": true, - "requires": { - "ms": "2.1.2" - } - }, - "ignore": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", - "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", - "dev": true - }, - "ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true - }, - "strip-json-comments": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", - "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", - "dev": true + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true } } }, - "@google-cloud/functions-framework": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/@google-cloud/functions-framework/-/functions-framework-3.1.1.tgz", - "integrity": "sha512-ZC85zX757DUYuE6H0HONCD40PPdim4Ew0gOBVwtm7Lb5jqv7t2TeM8c2B3btHwaNnxBVOdMOhbwwXzVLsivOaA==", + "node_modules/@eslint/eslintrc/node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "node_modules/@eslint/eslintrc/node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "node_modules/@eslint/js": { + "version": "8.56.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.56.0.tgz", + "integrity": "sha512-gMsVel9D7f2HLkBma9VbtzZRehRogVRfbr++f06nL2vnCGCNlzOD+/MUov/F4p8myyAHspEhVobgjpX64q5m6A==", + "dev": true, + "peer": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/@google-cloud/functions-framework": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/@google-cloud/functions-framework/-/functions-framework-3.4.0.tgz", + "integrity": "sha512-TAh4h8bspgWkZBgFEUfali5C1NQBgqEGIIKdBjrAeG3vaPtI4CjV4AzGNA6TrEBidLIXXqHb3naO2lI1eqT7+A==", "dev": true, - "requires": { - "@types/express": "4.17.13", + "dependencies": { + "@types/express": "4.17.21", "body-parser": "^1.18.3", - "cloudevents": "^6.0.0", + "cloudevents": "^8.0.0", "express": "^4.16.4", - "minimist": "^1.2.5", + "minimist": "^1.2.7", "on-finished": "^2.3.0", "read-pkg-up": "^7.0.1", "semver": "^7.3.5" }, + "bin": { + "functions-framework": "build/src/main.js", + "functions-framework-nodejs": "build/src/main.js" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/@google-cloud/functions-framework/node_modules/semver": { + "version": "7.3.7", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz", + "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", + "dev": true, "dependencies": { - "semver": { - "version": "7.3.7", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz", - "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - } + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" } }, - "@google/earthengine": { - "version": "0.1.324", - "resolved": "https://registry.npmjs.org/@google/earthengine/-/earthengine-0.1.324.tgz", - "integrity": "sha512-vo7R6WDhh38GriO98wWBOMRk8xUhrV0fACFboAhJ/f37PVrOsCtLx6Mg+GQfwdxDo9EDInHr0MjNsBRviOnh0A==", - "requires": { + "node_modules/@google/earthengine": { + "version": "0.1.406", + "resolved": "https://registry.npmjs.org/@google/earthengine/-/earthengine-0.1.406.tgz", + "integrity": "sha512-ITl9Gx6z/zoajrTwwyqJBWvI1croGrAPzFeN/auaSQ1nc4soVb8oStboqDkqd148BuOKjjmoxUT8S3j4PpgjOQ==", + "dependencies": { "googleapis": "^92.0.0", "xmlhttprequest": "^1.8.0" } }, - "@humanwhocodes/config-array": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.5.0.tgz", - "integrity": "sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==", - "dev": true, - "requires": { - "@humanwhocodes/object-schema": "^1.2.0", - "debug": "^4.1.1", - "minimatch": "^3.0.4" - }, - "dependencies": { - "debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "dev": true, - "requires": { - "ms": "2.1.2" - } - }, - "ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true + "node_modules/@humanwhocodes/config-array": { + "version": "0.11.14", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.14.tgz", + "integrity": "sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==", + "dev": true, + "dependencies": { + "@humanwhocodes/object-schema": "^2.0.2", + "debug": "^4.3.1", + "minimatch": "^3.0.5" + }, + "engines": { + "node": ">=10.10.0" + } + }, + "node_modules/@humanwhocodes/config-array/node_modules/debug": { + "version": "4.3.5", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.5.tgz", + "integrity": "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==", + "dev": true, + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true } } }, - "@humanwhocodes/object-schema": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", - "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", + "node_modules/@humanwhocodes/config-array/node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "dev": true, + "engines": { + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/object-schema": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz", + "integrity": "sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==", "dev": true }, - "@nodelib/fs.scandir": { + "node_modules/@nodelib/fs.scandir": { "version": "2.1.5", "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", "dev": true, - "requires": { + "dependencies": { "@nodelib/fs.stat": "2.0.5", "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" } }, - "@nodelib/fs.stat": { + "node_modules/@nodelib/fs.stat": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", - "dev": true + "dev": true, + "engines": { + "node": ">= 8" + } }, - "@nodelib/fs.walk": { + "node_modules/@nodelib/fs.walk": { "version": "1.2.8", "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", "dev": true, - "requires": { + "dependencies": { "@nodelib/fs.scandir": "2.1.5", "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" } }, - "@sindresorhus/is": { - "version": "0.14.0", - "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.14.0.tgz", - "integrity": "sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==", - "dev": true - }, - "@szmarczak/http-timer": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-1.1.2.tgz", - "integrity": "sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==", + "node_modules/@pkgr/core": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/@pkgr/core/-/core-0.1.1.tgz", + "integrity": "sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA==", "dev": true, - "requires": { - "defer-to-connect": "^1.0.1" + "engines": { + "node": "^12.20.0 || ^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/unts" } }, - "@types/body-parser": { - "version": "1.19.2", - "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.2.tgz", - "integrity": "sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==", + "node_modules/@types/body-parser": { + "version": "1.19.5", + "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.5.tgz", + "integrity": "sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==", "dev": true, - "requires": { + "dependencies": { "@types/connect": "*", "@types/node": "*" } }, - "@types/connect": { - "version": "3.4.35", - "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz", - "integrity": "sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==", + "node_modules/@types/connect": { + "version": "3.4.38", + "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.38.tgz", + "integrity": "sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==", "dev": true, - "requires": { + "dependencies": { "@types/node": "*" } }, - "@types/express": { - "version": "4.17.13", - "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.13.tgz", - "integrity": "sha512-6bSZTPaTIACxn48l50SR+axgrqm6qXFIxrdAKaG6PaJk3+zuUr35hBlgT7vOmJcum+OEaIBLtHV/qloEAFITeA==", + "node_modules/@types/express": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.21.tgz", + "integrity": "sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==", "dev": true, - "requires": { + "dependencies": { "@types/body-parser": "*", - "@types/express-serve-static-core": "^4.17.18", + "@types/express-serve-static-core": "^4.17.33", "@types/qs": "*", "@types/serve-static": "*" } }, - "@types/express-serve-static-core": { - "version": "4.17.29", - "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.29.tgz", - "integrity": "sha512-uMd++6dMKS32EOuw1Uli3e3BPgdLIXmezcfHv7N4c1s3gkhikBplORPpMq3fuWkxncZN1reb16d5n8yhQ80x7Q==", + "node_modules/@types/express-serve-static-core": { + "version": "4.19.3", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.19.3.tgz", + "integrity": "sha512-KOzM7MhcBFlmnlr/fzISFF5vGWVSvN6fTd4T+ExOt08bA/dA5kpSzY52nMsI1KDFmUREpJelPYyuslLRSjjgCg==", "dev": true, - "requires": { + "dependencies": { "@types/node": "*", "@types/qs": "*", - "@types/range-parser": "*" + "@types/range-parser": "*", + "@types/send": "*" } }, - "@types/json-schema": { - "version": "7.0.11", - "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz", - "integrity": "sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==", + "node_modules/@types/http-errors": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.4.tgz", + "integrity": "sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==", "dev": true }, - "@types/mime": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.2.tgz", - "integrity": "sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw==", + "node_modules/@types/json-schema": { + "version": "7.0.15", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", + "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", + "dev": true + }, + "node_modules/@types/mime": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.5.tgz", + "integrity": "sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==", "dev": true }, - "@types/minimist": { + "node_modules/@types/minimist": { "version": "1.2.2", "resolved": "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.2.tgz", "integrity": "sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==", "dev": true }, - "@types/node": { - "version": "14.18.21", - "resolved": "https://registry.npmjs.org/@types/node/-/node-14.18.21.tgz", - "integrity": "sha512-x5W9s+8P4XteaxT/jKF0PSb7XEvo5VmqEWgsMlyeY4ZlLK8I6aH6g5TPPyDlLAep+GYf4kefb7HFyc7PAO3m+Q==", - "dev": true + "node_modules/@types/node": { + "version": "20.11.5", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.11.5.tgz", + "integrity": "sha512-g557vgQjUUfN76MZAN/dt1z3dzcUsimuysco0KeluHgrPdJXkP/XdAURgyO2W9fZWHRtRBiVKzKn8vyOAwlG+w==", + "dev": true, + "dependencies": { + "undici-types": "~5.26.4" + } + }, + "node_modules/@types/node-fetch": { + "version": "2.6.11", + "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.11.tgz", + "integrity": "sha512-24xFj9R5+rfQJLRyM56qh+wnVSYhyXC2tkoBndtY0U+vubqNsYXGjufB2nn8Q6gt0LrARwL6UBtMCSVCwl4B1g==", + "dev": true, + "dependencies": { + "@types/node": "*", + "form-data": "^4.0.0" + } }, - "@types/normalize-package-data": { + "node_modules/@types/normalize-package-data": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz", "integrity": "sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==", "dev": true }, - "@types/qs": { - "version": "6.9.7", - "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.7.tgz", - "integrity": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==", + "node_modules/@types/qs": { + "version": "6.9.15", + "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.15.tgz", + "integrity": "sha512-uXHQKES6DQKKCLh441Xv/dwxOq1TVS3JPUMlEqoEglvlhR6Mxnlew/Xq/LRVHpLyk7iK3zODe1qYHIMltO7XGg==", "dev": true }, - "@types/range-parser": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.4.tgz", - "integrity": "sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==", + "node_modules/@types/range-parser": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.7.tgz", + "integrity": "sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==", + "dev": true + }, + "node_modules/@types/semver": { + "version": "7.5.8", + "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.8.tgz", + "integrity": "sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==", "dev": true }, - "@types/serve-static": { - "version": "1.13.10", - "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.13.10.tgz", - "integrity": "sha512-nCkHGI4w7ZgAdNkrEu0bv+4xNV/XDqW+DydknebMOQwkpDGx8G+HTlj7R7ABI8i8nKxVw0wtKPi1D+lPOkh4YQ==", + "node_modules/@types/send": { + "version": "0.17.4", + "resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.4.tgz", + "integrity": "sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==", "dev": true, - "requires": { + "dependencies": { "@types/mime": "^1", "@types/node": "*" } }, - "@types/validator": { - "version": "12.0.1", - "resolved": "https://registry.npmjs.org/@types/validator/-/validator-12.0.1.tgz", - "integrity": "sha512-l57fIANZLMe8DArz+SDb+7ATXnDm15P7u2wHBw5mb0aSMd+UuvmvhouBF2hdLgQPDMJ39sh9g2MJO4GkZ0VAdQ==", - "dev": true - }, - "@typescript-eslint/eslint-plugin": { - "version": "4.33.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.33.0.tgz", - "integrity": "sha512-aINiAxGVdOl1eJyVjaWn/YcVAq4Gi/Yo35qHGCnqbWVz61g39D0h23veY/MA0rFFGfxK7TySg2uwDeNv+JgVpg==", + "node_modules/@types/serve-static": { + "version": "1.15.7", + "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.7.tgz", + "integrity": "sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw==", "dev": true, - "requires": { - "@typescript-eslint/experimental-utils": "4.33.0", - "@typescript-eslint/scope-manager": "4.33.0", - "debug": "^4.3.1", - "functional-red-black-tree": "^1.0.1", - "ignore": "^5.1.8", - "regexpp": "^3.1.0", - "semver": "^7.3.5", - "tsutils": "^3.21.0" - }, "dependencies": { - "debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "dev": true, - "requires": { - "ms": "2.1.2" - } - }, - "ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true - }, - "semver": { - "version": "7.3.7", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz", - "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - } + "@types/http-errors": "*", + "@types/node": "*", + "@types/send": "*" } }, - "@typescript-eslint/experimental-utils": { - "version": "4.33.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.33.0.tgz", - "integrity": "sha512-zeQjOoES5JFjTnAhI5QY7ZviczMzDptls15GFsI6jyUOq0kOf9+WonkhtlIhh0RgHRnqj5gdNxW5j1EvAyYg6Q==", + "node_modules/@types/validator": { + "version": "13.11.10", + "resolved": "https://registry.npmjs.org/@types/validator/-/validator-13.11.10.tgz", + "integrity": "sha512-e2PNXoXLr6Z+dbfx5zSh9TRlXJrELycxiaXznp4S5+D2M3b9bqJEitNHA5923jhnB2zzFiZHa2f0SI1HoIahpg==" + }, + "node_modules/@typescript-eslint/eslint-plugin": { + "version": "7.12.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-7.12.0.tgz", + "integrity": "sha512-7F91fcbuDf/d3S8o21+r3ZncGIke/+eWk0EpO21LXhDfLahriZF9CGj4fbAetEjlaBdjdSm9a6VeXbpbT6Z40Q==", "dev": true, - "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-community/regexpp": "^4.10.0", + "@typescript-eslint/scope-manager": "7.12.0", + "@typescript-eslint/type-utils": "7.12.0", + "@typescript-eslint/utils": "7.12.0", + "@typescript-eslint/visitor-keys": "7.12.0", + "graphemer": "^1.4.0", + "ignore": "^5.3.1", + "natural-compare": "^1.4.0", + "ts-api-utils": "^1.3.0" + }, + "engines": { + "node": "^18.18.0 || >=20.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^7.0.0", + "eslint": "^8.56.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } } }, - "@typescript-eslint/parser": { - "version": "4.33.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.33.0.tgz", - "integrity": "sha512-ZohdsbXadjGBSK0/r+d87X0SBmKzOq4/S5nzK6SBgJspFo9/CUDJ7hjayuze+JK7CZQLDMroqytp7pOcFKTxZA==", + "node_modules/@typescript-eslint/parser": { + "version": "7.12.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-7.12.0.tgz", + "integrity": "sha512-dm/J2UDY3oV3TKius2OUZIFHsomQmpHtsV0FTh1WO8EKgHLQ1QCADUqscPgTpU+ih1e21FQSRjXckHn3txn6kQ==", "dev": true, - "requires": { - "@typescript-eslint/scope-manager": "4.33.0", - "@typescript-eslint/types": "4.33.0", - "@typescript-eslint/typescript-estree": "4.33.0", - "debug": "^4.3.1" - }, + "peer": true, "dependencies": { - "debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "dev": true, - "requires": { - "ms": "2.1.2" - } - }, - "ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true + "@typescript-eslint/scope-manager": "7.12.0", + "@typescript-eslint/types": "7.12.0", + "@typescript-eslint/typescript-estree": "7.12.0", + "@typescript-eslint/visitor-keys": "7.12.0", + "debug": "^4.3.4" + }, + "engines": { + "node": "^18.18.0 || >=20.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.56.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true } } }, - "@typescript-eslint/scope-manager": { - "version": "4.33.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.33.0.tgz", - "integrity": "sha512-5IfJHpgTsTZuONKbODctL4kKuQje/bzBRkwHE8UOZ4f89Zeddg+EGZs8PD8NcN4LdM3ygHWYB3ukPAYjvl/qbQ==", + "node_modules/@typescript-eslint/parser/node_modules/debug": { + "version": "4.3.5", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.5.tgz", + "integrity": "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==", "dev": true, - "requires": { - "@typescript-eslint/types": "4.33.0", - "@typescript-eslint/visitor-keys": "4.33.0" + "peer": true, + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } } }, - "@typescript-eslint/types": { - "version": "4.33.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.33.0.tgz", - "integrity": "sha512-zKp7CjQzLQImXEpLt2BUw1tvOMPfNoTAfb8l51evhYbOEEzdWyQNmHWWGPR6hwKJDAi+1VXSBmnhL9kyVTTOuQ==", - "dev": true + "node_modules/@typescript-eslint/parser/node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true, + "peer": true }, - "@typescript-eslint/typescript-estree": { - "version": "4.33.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.33.0.tgz", - "integrity": "sha512-rkWRY1MPFzjwnEVHsxGemDzqqddw2QbTJlICPD9p9I9LfsO8fdmfQPOX3uKfUaGRDFJbfrtm/sXhVXN4E+bzCA==", + "node_modules/@typescript-eslint/scope-manager": { + "version": "7.12.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-7.12.0.tgz", + "integrity": "sha512-itF1pTnN6F3unPak+kutH9raIkL3lhH1YRPGgt7QQOh43DQKVJXmWkpb+vpc/TiDHs6RSd9CTbDsc/Y+Ygq7kg==", "dev": true, - "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" + "dependencies": { + "@typescript-eslint/types": "7.12.0", + "@typescript-eslint/visitor-keys": "7.12.0" + }, + "engines": { + "node": "^18.18.0 || >=20.0.0" }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/type-utils": { + "version": "7.12.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-7.12.0.tgz", + "integrity": "sha512-lib96tyRtMhLxwauDWUp/uW3FMhLA6D0rJ8T7HmH7x23Gk1Gwwu8UZ94NMXBvOELn6flSPiBrCKlehkiXyaqwA==", + "dev": true, "dependencies": { - "debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "dev": true, - "requires": { - "ms": "2.1.2" - } - }, - "ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true - }, - "semver": { - "version": "7.3.7", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz", - "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } + "@typescript-eslint/typescript-estree": "7.12.0", + "@typescript-eslint/utils": "7.12.0", + "debug": "^4.3.4", + "ts-api-utils": "^1.3.0" + }, + "engines": { + "node": "^18.18.0 || >=20.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.56.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true } } }, - "@typescript-eslint/visitor-keys": { - "version": "4.33.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.33.0.tgz", - "integrity": "sha512-uqi/2aSz9g2ftcHWf8uLPJA70rUv6yuMW5Bohw+bwcuzaxQIHaKFZCKGoGXIrc9vkTJ3+0txM73K0Hq3d5wgIg==", + "node_modules/@typescript-eslint/type-utils/node_modules/debug": { + "version": "4.3.5", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.5.tgz", + "integrity": "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==", "dev": true, - "requires": { - "@typescript-eslint/types": "4.33.0", - "eslint-visitor-keys": "^2.0.0" + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } } }, - "abbrev": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", - "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", + "node_modules/@typescript-eslint/type-utils/node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", "dev": true }, - "abort-controller": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz", - "integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==", - "requires": { - "event-target-shim": "^5.0.0" + "node_modules/@typescript-eslint/types": { + "version": "7.12.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-7.12.0.tgz", + "integrity": "sha512-o+0Te6eWp2ppKY3mLCU+YA9pVJxhUJE15FV7kxuD9jgwIAa+w/ycGJBMrYDTpVGUM/tgpa9SeMOugSabWFq7bg==", + "dev": true, + "engines": { + "node": "^18.18.0 || >=20.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" } }, - "accepts": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", - "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "node_modules/@typescript-eslint/typescript-estree": { + "version": "7.12.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-7.12.0.tgz", + "integrity": "sha512-5bwqLsWBULv1h6pn7cMW5dXX/Y2amRqLaKqsASVwbBHMZSnHqE/HN4vT4fE0aFsiwxYvr98kqOWh1a8ZKXalCQ==", "dev": true, - "requires": { - "mime-types": "~2.1.34", - "negotiator": "0.6.3" + "dependencies": { + "@typescript-eslint/types": "7.12.0", + "@typescript-eslint/visitor-keys": "7.12.0", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "minimatch": "^9.0.4", + "semver": "^7.6.0", + "ts-api-utils": "^1.3.0" + }, + "engines": { + "node": "^18.18.0 || >=20.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } } }, - "acorn": { - "version": "7.4.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", - "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", - "dev": true - }, - "acorn-jsx": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", - "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", - "dev": true + "node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" + } }, - "agent-base": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", - "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", - "requires": { - "debug": "4" - }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/debug": { + "version": "4.3.5", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.5.tgz", + "integrity": "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==", + "dev": true, "dependencies": { - "debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "requires": { - "ms": "2.1.2" - } - }, - "ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true } } }, - "ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": { + "version": "9.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz", + "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==", "dev": 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" + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "ajv-formats": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", - "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", + "node_modules/@typescript-eslint/typescript-estree/node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/semver": { + "version": "7.6.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", + "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", "dev": true, - "requires": { - "ajv": "^8.0.0" + "bin": { + "semver": "bin/semver.js" }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/utils": { + "version": "7.12.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-7.12.0.tgz", + "integrity": "sha512-Y6hhwxwDx41HNpjuYswYp6gDbkiZ8Hin9Bf5aJQn1bpTs3afYY4GX+MPYxma8jtoIV2GRwTM/UJm/2uGCVv+DQ==", + "dev": true, "dependencies": { - "ajv": { - "version": "8.11.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", - "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - } - }, - "json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", - "dev": true - } + "@eslint-community/eslint-utils": "^4.4.0", + "@typescript-eslint/scope-manager": "7.12.0", + "@typescript-eslint/types": "7.12.0", + "@typescript-eslint/typescript-estree": "7.12.0" + }, + "engines": { + "node": "^18.18.0 || >=20.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.56.0" } }, - "ansi-align": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.1.tgz", - "integrity": "sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==", + "node_modules/@typescript-eslint/visitor-keys": { + "version": "7.12.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-7.12.0.tgz", + "integrity": "sha512-uZk7DevrQLL3vSnfFl5bj4sL75qC9D6EdjemIdbtkuUmIheWpuiiylSY01JxJE7+zGrOWDZrp1WxOuDntvKrHQ==", "dev": true, - "requires": { - "string-width": "^4.1.0" + "dependencies": { + "@typescript-eslint/types": "7.12.0", + "eslint-visitor-keys": "^3.4.3" + }, + "engines": { + "node": "^18.18.0 || >=20.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" } }, - "ansi-colors": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz", - "integrity": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==", + "node_modules/@ungap/structured-clone": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", + "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==", + "dev": true + }, + "node_modules/abbrev": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", + "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", "dev": true }, - "ansi-escapes": { + "node_modules/abort-controller": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz", + "integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==", + "dependencies": { + "event-target-shim": "^5.0.0" + }, + "engines": { + "node": ">=6.5" + } + }, + "node_modules/accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "dev": true, + "dependencies": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/acorn": { + "version": "8.11.3", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz", + "integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "dependencies": { + "debug": "4" + }, + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/agent-base/node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/agent-base/node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + }, + "node_modules/ajv": { + "version": "8.16.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.16.0.tgz", + "integrity": "sha512-F0twR8U1ZU67JIEtekUcLkXkoO5mMMmgGD8sK/xUFzJ805jxHQl92hImFAqqXMyMYjSPOyUPAwHYhB72g5sTXw==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.3", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.4.1" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ajv-formats": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", + "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", + "dev": true, + "dependencies": { + "ajv": "^8.0.0" + }, + "peerDependencies": { + "ajv": "^8.0.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true + } + } + }, + "node_modules/ansi-escapes": { "version": "4.3.2", "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", "dev": true, - "requires": { + "dependencies": { "type-fest": "^0.21.3" }, - "dependencies": { - "type-fest": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", - "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", - "dev": true - } + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ansi-escapes/node_modules/type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "ansi-regex": { + "node_modules/ansi-regex": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true + "dev": true, + "engines": { + "node": ">=8" + } }, - "ansi-styles": { + "node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, - "requires": { + "dependencies": { "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "anymatch": { + "node_modules/anymatch": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", "dev": true, - "requires": { + "dependencies": { "normalize-path": "^3.0.0", "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" } }, - "argparse": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", - "dev": true, - "requires": { - "sprintf-js": "~1.0.2" - } + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true }, - "array-flatten": { + "node_modules/array-flatten": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", "dev": true }, - "array-union": { + "node_modules/array-union": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", - "dev": true + "dev": true, + "engines": { + "node": ">=8" + } }, - "arrify": { + "node_modules/arrify": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/arrify/-/arrify-2.0.1.tgz", - "integrity": "sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==" + "integrity": "sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==", + "engines": { + "node": ">=8" + } }, - "astral-regex": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", - "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", "dev": true }, - "available-typed-arrays": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", - "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", - "dev": true + "node_modules/available-typed-arrays": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", + "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", + "dev": true, + "dependencies": { + "possible-typed-array-names": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, - "balanced-match": { + "node_modules/balanced-match": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", "dev": true }, - "base64-js": { + "node_modules/base64-js": { "version": "1.5.1", "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", - "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==" + "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" + } + ] }, - "bignumber.js": { + "node_modules/bignumber.js": { "version": "9.1.0", "resolved": "https://registry.npmjs.org/bignumber.js/-/bignumber.js-9.1.0.tgz", - "integrity": "sha512-4LwHK4nfDOraBCtst+wOWIHbu1vhvAPJK8g8nROd4iuc3PSEjWif/qwbkh8jwCJz6yDBvtU4KPynETgrfh7y3A==" + "integrity": "sha512-4LwHK4nfDOraBCtst+wOWIHbu1vhvAPJK8g8nROd4iuc3PSEjWif/qwbkh8jwCJz6yDBvtU4KPynETgrfh7y3A==", + "engines": { + "node": "*" + } }, - "binary-extensions": { + "node_modules/binary-extensions": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", - "dev": true + "dev": true, + "engines": { + "node": ">=8" + } }, - "body-parser": { + "node_modules/body-parser": { "version": "1.20.0", "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.0.tgz", "integrity": "sha512-DfJ+q6EPcGKZD1QWUjSpqp+Q7bDQTsQIF4zfUAtZ6qk+H/3/QRhg9CEp39ss+/T2vw0+HaidC0ecJj/DRLIaKg==", "dev": true, - "requires": { + "dependencies": { "bytes": "3.1.2", "content-type": "~1.0.4", "debug": "2.6.9", @@ -733,758 +1121,687 @@ "type-is": "~1.6.18", "unpipe": "1.0.0" }, - "dependencies": { - "qs": { - "version": "6.10.3", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.10.3.tgz", - "integrity": "sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ==", - "dev": true, - "requires": { - "side-channel": "^1.0.4" - } - } + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" } }, - "boxen": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/boxen/-/boxen-5.1.2.tgz", - "integrity": "sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ==", + "node_modules/body-parser/node_modules/qs": { + "version": "6.10.3", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.10.3.tgz", + "integrity": "sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ==", "dev": true, - "requires": { - "ansi-align": "^3.0.0", - "camelcase": "^6.2.0", - "chalk": "^4.1.0", - "cli-boxes": "^2.2.1", - "string-width": "^4.2.2", - "type-fest": "^0.20.2", - "widest-line": "^3.1.0", - "wrap-ansi": "^7.0.0" + "dependencies": { + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "brace-expansion": { + "node_modules/brace-expansion": { "version": "1.1.11", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", "dev": true, - "requires": { + "dependencies": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" } }, - "braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "node_modules/braces": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", "dev": true, - "requires": { - "fill-range": "^7.0.1" + "dependencies": { + "fill-range": "^7.1.1" + }, + "engines": { + "node": ">=8" } }, - "buffer-equal-constant-time": { + "node_modules/buffer-equal-constant-time": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz", "integrity": "sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==" }, - "bytes": { + "node_modules/bytes": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", - "dev": true - }, - "cacheable-request": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-6.1.0.tgz", - "integrity": "sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==", - "dev": true, - "requires": { - "clone-response": "^1.0.2", - "get-stream": "^5.1.0", - "http-cache-semantics": "^4.0.0", - "keyv": "^3.0.0", - "lowercase-keys": "^2.0.0", - "normalize-url": "^4.1.0", - "responselike": "^1.0.2" - }, - "dependencies": { - "get-stream": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", - "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", - "dev": true, - "requires": { - "pump": "^3.0.0" - } - }, - "lowercase-keys": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", - "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==", - "dev": true - } + "dev": true, + "engines": { + "node": ">= 0.8" } }, - "call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", - "requires": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" + "node_modules/call-bind": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", + "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", + "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "set-function-length": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "callsites": { + "node_modules/callsites": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", - "dev": true - }, - "camelcase": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", - "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", - "dev": true + "dev": true, + "engines": { + "node": ">=6" + } }, - "camelcase-keys": { + "node_modules/camelcase-keys": { "version": "6.2.2", "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-6.2.2.tgz", "integrity": "sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==", "dev": true, - "requires": { + "dependencies": { "camelcase": "^5.3.1", "map-obj": "^4.0.0", "quick-lru": "^4.0.1" }, - "dependencies": { - "camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", - "dev": true - } + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/camelcase-keys/node_modules/camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true, + "engines": { + "node": ">=6" } }, - "chalk": { + "node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, - "requires": { + "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/chalk/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, "dependencies": { - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" } }, - "chardet": { + "node_modules/chardet": { "version": "0.7.0", "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==", "dev": true }, - "chokidar": { + "node_modules/chokidar": { "version": "3.5.3", "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", "dev": true, - "requires": { + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ], + "dependencies": { "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" + }, + "engines": { + "node": ">= 8.10.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" } }, - "ci-info": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", - "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==", - "dev": true - }, - "class-transformer": { + "node_modules/class-transformer": { "version": "0.5.1", "resolved": "https://registry.npmjs.org/class-transformer/-/class-transformer-0.5.1.tgz", "integrity": "sha512-SQa1Ws6hUbfC98vKGxZH3KFY0Y1lm5Zm0SY8XX9zbK7FJCyVEac3ATW0RIpwzW+oOfmHE5PMPufDG9hCfoEOMw==" }, - "class-validator": { - "version": "0.14.0", - "resolved": "https://registry.npmjs.org/class-validator/-/class-validator-0.14.0.tgz", - "integrity": "sha512-ct3ltplN8I9fOwUd8GrP8UQixwff129BkEtuWDKL5W45cQuLd19xqmTLu5ge78YDm/fdje6FMt0hGOhl0lii3A==", - "requires": { - "@types/validator": "^13.7.10", - "libphonenumber-js": "^1.10.14", - "validator": "^13.7.0" - }, + "node_modules/class-validator": { + "version": "0.14.1", + "resolved": "https://registry.npmjs.org/class-validator/-/class-validator-0.14.1.tgz", + "integrity": "sha512-2VEG9JICxIqTpoK1eMzZqaV+u/EiwEJkMGzTrZf6sU/fwsnOITVgYJ8yojSy6CaXtO9V0Cc6ZQZ8h8m4UBuLwQ==", "dependencies": { - "@types/validator": { - "version": "13.7.10", - "resolved": "https://registry.npmjs.org/@types/validator/-/validator-13.7.10.tgz", - "integrity": "sha512-t1yxFAR2n0+VO6hd/FJ9F2uezAZVWHLmpmlJzm1eX03+H7+HsuTAp7L8QJs+2pQCfWkP1+EXsGK9Z9v7o/qPVQ==" - } + "@types/validator": "^13.11.8", + "libphonenumber-js": "^1.10.53", + "validator": "^13.9.0" } }, - "cli-boxes": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-2.2.1.tgz", - "integrity": "sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==", - "dev": true - }, - "cli-cursor": { + "node_modules/cli-cursor": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", "dev": true, - "requires": { + "dependencies": { "restore-cursor": "^3.1.0" + }, + "engines": { + "node": ">=8" } }, - "cli-width": { + "node_modules/cli-width": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz", "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==", - "dev": true - }, - "cliui": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", - "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", "dev": true, - "requires": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.0", - "wrap-ansi": "^7.0.0" + "engines": { + "node": ">= 10" } }, - "clone-response": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz", - "integrity": "sha512-yjLXh88P599UOyPTFX0POsd7WxnbsVsGohcwzHOLspIhhpalPw1BcqED8NblyZLKcGrL8dTgMlcaZxV2jAD41Q==", + "node_modules/cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", "dev": true, - "requires": { - "mimic-response": "^1.0.0" + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" } }, - "cloudevents": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/cloudevents/-/cloudevents-6.0.2.tgz", - "integrity": "sha512-mn/4EZnAbhfb/TghubK2jPnxYM15JRjf8LnWJtXidiVKi5ZCkd+p9jyBZbL57w7nRm6oFAzJhjxRLsXd/DNaBQ==", + "node_modules/cloudevents": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/cloudevents/-/cloudevents-8.0.0.tgz", + "integrity": "sha512-G1Z/r8QMFAsP+F1PuZSHzx1ocPy4vrdQMTHD3orjDaM5kccmPU6nMmpVrF07b53aaxcrLbORUmRepY/DgvdhVw==", "dev": true, - "requires": { + "dependencies": { "ajv": "^8.11.0", "ajv-formats": "^2.1.1", + "json-bigint": "^1.0.0", + "process": "^0.11.10", "util": "^0.12.4", "uuid": "^8.3.2" }, - "dependencies": { - "ajv": { - "version": "8.11.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", - "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - } - }, - "json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", - "dev": true - } + "engines": { + "node": ">=16 <=20" } }, - "color-convert": { + "node_modules/color-convert": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, - "requires": { + "dependencies": { "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" } }, - "color-name": { + "node_modules/color-name": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, - "concat-map": { + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dev": true, + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/concat-map": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", "dev": true }, - "concurrently": { - "version": "7.2.2", - "resolved": "https://registry.npmjs.org/concurrently/-/concurrently-7.2.2.tgz", - "integrity": "sha512-DcQkI0ruil5BA/g7Xy3EWySGrFJovF5RYAYxwGvv9Jf9q9B1v3jPFP2tl6axExNf1qgF30kjoNYrangZ0ey4Aw==", + "node_modules/concurrently": { + "version": "8.2.2", + "resolved": "https://registry.npmjs.org/concurrently/-/concurrently-8.2.2.tgz", + "integrity": "sha512-1dP4gpXFhei8IOtlXRE/T/4H88ElHgTiUzh71YUmtjTEHMSRS2Z/fgOxHSxxusGHogsRfxNq1vyAwxSC+EVyDg==", "dev": true, - "requires": { - "chalk": "^4.1.0", - "date-fns": "^2.16.1", + "dependencies": { + "chalk": "^4.1.2", + "date-fns": "^2.30.0", "lodash": "^4.17.21", - "rxjs": "^7.0.0", - "shell-quote": "^1.7.3", - "spawn-command": "^0.0.2-1", - "supports-color": "^8.1.0", + "rxjs": "^7.8.1", + "shell-quote": "^1.8.1", + "spawn-command": "0.0.2", + "supports-color": "^8.1.1", "tree-kill": "^1.2.2", - "yargs": "^17.3.1" - } - }, - "configstore": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/configstore/-/configstore-5.0.1.tgz", - "integrity": "sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA==", - "dev": true, - "requires": { - "dot-prop": "^5.2.0", - "graceful-fs": "^4.1.2", - "make-dir": "^3.0.0", - "unique-string": "^2.0.0", - "write-file-atomic": "^3.0.0", - "xdg-basedir": "^4.0.0" + "yargs": "^17.7.2" + }, + "bin": { + "conc": "dist/bin/concurrently.js", + "concurrently": "dist/bin/concurrently.js" + }, + "engines": { + "node": "^14.13.0 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/open-cli-tools/concurrently?sponsor=1" } }, - "content-disposition": { + "node_modules/content-disposition": { "version": "0.5.4", "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", "dev": true, - "requires": { + "dependencies": { "safe-buffer": "5.2.1" + }, + "engines": { + "node": ">= 0.6" } }, - "content-type": { + "node_modules/content-type": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==", - "dev": true + "dev": true, + "engines": { + "node": ">= 0.6" + } }, - "cookie": { + "node_modules/cookie": { "version": "0.5.0", "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", - "dev": true + "dev": true, + "engines": { + "node": ">= 0.6" + } }, - "cookie-signature": { + "node_modules/cookie-signature": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", "dev": true }, - "cross-spawn": { + "node_modules/cross-spawn": { "version": "7.0.3", "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", "dev": true, - "requires": { + "dependencies": { "path-key": "^3.1.0", "shebang-command": "^2.0.0", "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" } }, - "crypto-random-string": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz", - "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==", - "dev": true - }, - "date-fns": { - "version": "2.28.0", - "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.28.0.tgz", - "integrity": "sha512-8d35hViGYx/QH0icHYCeLmsLmMUheMmTyV9Fcm6gvNwdw31yXXH+O85sOBJ+OLnLQMKZowvpKb6FgMIQjcpvQw==", - "dev": true + "node_modules/date-fns": { + "version": "2.30.0", + "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.30.0.tgz", + "integrity": "sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.21.0" + }, + "engines": { + "node": ">=0.11" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/date-fns" + } }, - "debug": { + "node_modules/debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, - "requires": { + "dependencies": { "ms": "2.0.0" } }, - "decamelize": { + "node_modules/decamelize": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", - "dev": true + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "decamelize-keys": { + "node_modules/decamelize-keys": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/decamelize-keys/-/decamelize-keys-1.1.0.tgz", "integrity": "sha512-ocLWuYzRPoS9bfiSdDd3cxvrzovVMZnRDVEzAs+hWIVXGDbHxWMECij2OBuyB/An0FFW/nLuq6Kv1i/YC5Qfzg==", "dev": true, - "requires": { + "dependencies": { "decamelize": "^1.1.0", "map-obj": "^1.0.0" }, - "dependencies": { - "map-obj": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", - "integrity": "sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==", - "dev": true - } + "engines": { + "node": ">=0.10.0" } }, - "decompress-response": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz", - "integrity": "sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA==", + "node_modules/decamelize-keys/node_modules/map-obj": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", + "integrity": "sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==", "dev": true, - "requires": { - "mimic-response": "^1.0.0" + "engines": { + "node": ">=0.10.0" } }, - "deep-extend": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", - "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", - "dev": true - }, - "deep-is": { + "node_modules/deep-is": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", "dev": true }, - "defer-to-connect": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-1.1.3.tgz", - "integrity": "sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==", - "dev": true - }, - "define-properties": { + "node_modules/define-data-property": { "version": "1.1.4", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.4.tgz", - "integrity": "sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", + "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", + "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", "dev": true, - "requires": { - "has-property-descriptors": "^1.0.0", - "object-keys": "^1.1.1" + "engines": { + "node": ">=0.4.0" } }, - "depd": { + "node_modules/depd": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", - "dev": true + "dev": true, + "engines": { + "node": ">= 0.8" + } }, - "destroy": { + "node_modules/destroy": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", - "dev": true + "dev": true, + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } }, - "dir-glob": { + "node_modules/dir-glob": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", "dev": true, - "requires": { + "dependencies": { "path-type": "^4.0.0" + }, + "engines": { + "node": ">=8" } }, - "doctrine": { + "node_modules/doctrine": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", "dev": true, - "requires": { + "dependencies": { "esutils": "^2.0.2" + }, + "engines": { + "node": ">=6.0.0" } }, - "dot-prop": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz", - "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==", - "dev": true, - "requires": { - "is-obj": "^2.0.0" - } - }, - "duplexer3": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz", - "integrity": "sha512-CEj8FwwNA4cVH2uFCoHUrmojhYh1vmCdOaneKJXwkeY1i9jnlslVo9dx+hQ5Hl9GnH/Bwy/IjxAyOePyPKYnzA==", - "dev": true - }, - "ecdsa-sig-formatter": { + "node_modules/ecdsa-sig-formatter": { "version": "1.0.11", "resolved": "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz", "integrity": "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==", - "requires": { + "dependencies": { "safe-buffer": "^5.0.1" } }, - "ee-first": { + "node_modules/ee-first": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", "dev": true }, - "emoji-regex": { + "node_modules/emoji-regex": { "version": "8.0.0", "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", "dev": true }, - "encodeurl": { + "node_modules/encodeurl": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", - "dev": true - }, - "end-of-stream": { - "version": "1.4.4", - "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", - "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", - "dev": true, - "requires": { - "once": "^1.4.0" - } - }, - "enquirer": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz", - "integrity": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==", "dev": true, - "requires": { - "ansi-colors": "^4.1.1" + "engines": { + "node": ">= 0.8" } }, - "error-ex": { + "node_modules/error-ex": { "version": "1.3.2", "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", "dev": true, - "requires": { + "dependencies": { "is-arrayish": "^0.2.1" } }, - "es-abstract": { - "version": "1.20.2", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.20.2.tgz", - "integrity": "sha512-XxXQuVNrySBNlEkTYJoDNFe5+s2yIOpzq80sUHEdPdQr0S5nTLz4ZPPPswNIpKseDDUS5yghX1gfLIHQZ1iNuQ==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "es-to-primitive": "^1.2.1", - "function-bind": "^1.1.1", - "function.prototype.name": "^1.1.5", - "get-intrinsic": "^1.1.2", - "get-symbol-description": "^1.0.0", - "has": "^1.0.3", - "has-property-descriptors": "^1.0.0", - "has-symbols": "^1.0.3", - "internal-slot": "^1.0.3", - "is-callable": "^1.2.4", - "is-negative-zero": "^2.0.2", - "is-regex": "^1.1.4", - "is-shared-array-buffer": "^1.0.2", - "is-string": "^1.0.7", - "is-weakref": "^1.0.2", - "object-inspect": "^1.12.2", - "object-keys": "^1.1.1", - "object.assign": "^4.1.4", - "regexp.prototype.flags": "^1.4.3", - "string.prototype.trimend": "^1.0.5", - "string.prototype.trimstart": "^1.0.5", - "unbox-primitive": "^1.0.2" - } - }, - "es-to-primitive": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", - "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", - "dev": true, - "requires": { - "is-callable": "^1.1.4", - "is-date-object": "^1.0.1", - "is-symbol": "^1.0.2" + "node_modules/es-define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", + "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", + "dependencies": { + "get-intrinsic": "^1.2.4" + }, + "engines": { + "node": ">= 0.4" } }, - "escalade": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", - "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", - "dev": true + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "engines": { + "node": ">= 0.4" + } }, - "escape-goat": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/escape-goat/-/escape-goat-2.1.1.tgz", - "integrity": "sha512-8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q==", - "dev": true + "node_modules/escalade": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", + "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", + "dev": true, + "engines": { + "node": ">=6" + } }, - "escape-html": { + "node_modules/escape-html": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", "dev": true }, - "escape-string-regexp": { + "node_modules/escape-string-regexp": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", - "dev": true + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "eslint": { - "version": "7.32.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-7.32.0.tgz", - "integrity": "sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA==", + "node_modules/eslint": { + "version": "8.56.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.56.0.tgz", + "integrity": "sha512-Go19xM6T9puCOWntie1/P997aXxFsOi37JIHRWI514Hc6ZnaHGKY9xFhrU65RT6CcBEzZoGG1e6Nq+DT04ZtZQ==", "dev": true, - "requires": { - "@babel/code-frame": "7.12.11", - "@eslint/eslintrc": "^0.4.3", - "@humanwhocodes/config-array": "^0.5.0", - "ajv": "^6.10.0", + "peer": true, + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.6.1", + "@eslint/eslintrc": "^2.1.4", + "@eslint/js": "8.56.0", + "@humanwhocodes/config-array": "^0.11.13", + "@humanwhocodes/module-importer": "^1.0.1", + "@nodelib/fs.walk": "^1.2.8", + "@ungap/structured-clone": "^1.2.0", + "ajv": "^6.12.4", "chalk": "^4.0.0", "cross-spawn": "^7.0.2", - "debug": "^4.0.1", + "debug": "^4.3.2", "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", + "eslint-scope": "^7.2.2", + "eslint-visitor-keys": "^3.4.3", + "espree": "^9.6.1", + "esquery": "^1.4.2", "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", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "globals": "^13.19.0", + "graphemer": "^1.4.0", + "ignore": "^5.2.0", "imurmurhash": "^0.1.4", "is-glob": "^4.0.0", - "js-yaml": "^3.13.1", + "is-path-inside": "^3.0.3", + "js-yaml": "^4.1.0", "json-stable-stringify-without-jsonify": "^1.0.1", "levn": "^0.4.1", "lodash.merge": "^4.6.2", - "minimatch": "^3.0.4", + "minimatch": "^3.1.2", "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": { - "debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "dev": true, - "requires": { - "ms": "2.1.2" - } - }, - "eslint-utils": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", - "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", - "dev": true, - "requires": { - "eslint-visitor-keys": "^1.1.0" - }, - "dependencies": { - "eslint-visitor-keys": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", - "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", - "dev": true - } - } - }, - "ignore": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", - "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", - "dev": true - }, - "ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true - }, - "semver": { - "version": "7.3.7", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz", - "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "strip-json-comments": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", - "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", - "dev": true - } + "optionator": "^0.9.3", + "strip-ansi": "^6.0.1", + "text-table": "^0.2.0" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" } }, - "eslint-config-prettier": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-7.2.0.tgz", - "integrity": "sha512-rV4Qu0C3nfJKPOAhFujFxB7RMP+URFyQqqOZW9DMRD7ZDTFyjaIlETU3xzHELt++4ugC0+Jm084HQYkkJe+Ivg==", - "dev": true + "node_modules/eslint-config-prettier": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-9.1.0.tgz", + "integrity": "sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==", + "dev": true, + "bin": { + "eslint-config-prettier": "bin/cli.js" + }, + "peerDependencies": { + "eslint": ">=7.0.0" + } }, - "eslint-plugin-es": { + "node_modules/eslint-plugin-es": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/eslint-plugin-es/-/eslint-plugin-es-3.0.1.tgz", "integrity": "sha512-GUmAsJaN4Fc7Gbtl8uOBlayo2DqhwWvEzykMHSCZHU3XdJ+NSzzZcVhXh3VxX5icqQ+oQdIEawXX8xkR3mIFmQ==", "dev": true, - "requires": { + "dependencies": { "eslint-utils": "^2.0.0", "regexpp": "^3.0.0" }, + "engines": { + "node": ">=8.10.0" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + }, + "peerDependencies": { + "eslint": ">=4.19.1" + } + }, + "node_modules/eslint-plugin-es/node_modules/eslint-utils": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", + "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", + "dev": true, "dependencies": { - "eslint-utils": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", - "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", - "dev": true, - "requires": { - "eslint-visitor-keys": "^1.1.0" - } - }, - "eslint-visitor-keys": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", - "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", - "dev": true - } + "eslint-visitor-keys": "^1.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + } + }, + "node_modules/eslint-plugin-es/node_modules/eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "dev": true, + "engines": { + "node": ">=4" } }, - "eslint-plugin-node": { + "node_modules/eslint-plugin-node": { "version": "11.1.0", "resolved": "https://registry.npmjs.org/eslint-plugin-node/-/eslint-plugin-node-11.1.0.tgz", "integrity": "sha512-oUwtPJ1W0SKD0Tr+wqu92c5xuCeQqB3hSCHasn/ZgjFdA9iDGNkNf2Zi9ztY7X+hNuMib23LNGRm6+uN+KLE3g==", "dev": true, - "requires": { + "dependencies": { "eslint-plugin-es": "^3.0.0", "eslint-utils": "^2.0.0", "ignore": "^5.1.1", @@ -1492,152 +1809,313 @@ "resolve": "^1.10.1", "semver": "^6.1.0" }, + "engines": { + "node": ">=8.10.0" + }, + "peerDependencies": { + "eslint": ">=5.16.0" + } + }, + "node_modules/eslint-plugin-node/node_modules/eslint-utils": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", + "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", + "dev": true, "dependencies": { - "eslint-utils": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", - "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", - "dev": true, - "requires": { - "eslint-visitor-keys": "^1.1.0" - } - }, - "eslint-visitor-keys": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", - "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", - "dev": true + "eslint-visitor-keys": "^1.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + } + }, + "node_modules/eslint-plugin-node/node_modules/eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/eslint-plugin-node/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" + } + }, + "node_modules/eslint-plugin-prettier": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-5.1.3.tgz", + "integrity": "sha512-C9GCVAs4Eq7ZC/XFQHITLiHJxQngdtraXaM+LoUFoFp/lHNl2Zn8f3WQbe9HvTBBQ9YnKFB0/2Ajdqwo5D1EAw==", + "dev": true, + "dependencies": { + "prettier-linter-helpers": "^1.0.0", + "synckit": "^0.8.6" + }, + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint-plugin-prettier" + }, + "peerDependencies": { + "@types/eslint": ">=8.0.0", + "eslint": ">=8.0.0", + "eslint-config-prettier": "*", + "prettier": ">=3.0.0" + }, + "peerDependenciesMeta": { + "@types/eslint": { + "optional": true }, - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true + "eslint-config-prettier": { + "optional": true } } }, - "eslint-plugin-prettier": { - "version": "3.4.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-3.4.1.tgz", - "integrity": "sha512-htg25EUYUeIhKHXjOinK4BgCcDwtLHjqaxCDsMy5nbnUMkKFvIhMVCp+5GFUXQ4Nr8lBsPqtGAqBenbpFqAA2g==", + "node_modules/eslint-scope": { + "version": "7.2.2", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", + "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", "dev": true, - "requires": { - "prettier-linter-helpers": "^1.0.0" + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" } }, - "eslint-scope": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", - "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", "dev": true, - "requires": { - "esrecurse": "^4.3.0", - "estraverse": "^4.1.1" + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" } }, - "eslint-utils": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", - "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", + "node_modules/eslint/node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", "dev": true, - "requires": { - "eslint-visitor-keys": "^2.0.0" + "peer": true, + "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" } }, - "eslint-visitor-keys": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", - "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", - "dev": true + "node_modules/eslint/node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "peer": true, + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/eslint/node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "peer": true, + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "espree": { - "version": "7.3.1", - "resolved": "https://registry.npmjs.org/espree/-/espree-7.3.1.tgz", - "integrity": "sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==", + "node_modules/eslint/node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", "dev": true, - "requires": { - "acorn": "^7.4.0", - "acorn-jsx": "^5.3.1", - "eslint-visitor-keys": "^1.3.0" + "peer": true, + "dependencies": { + "is-glob": "^4.0.3" }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/eslint/node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true, + "peer": true + }, + "node_modules/eslint/node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "peer": true, "dependencies": { - "eslint-visitor-keys": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", - "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", - "dev": true - } + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "esprima": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", - "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", - "dev": true + "node_modules/eslint/node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true, + "peer": true }, - "esquery": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz", - "integrity": "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==", + "node_modules/eslint/node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", "dev": true, - "requires": { - "estraverse": "^5.1.0" + "peer": true, + "dependencies": { + "yocto-queue": "^0.1.0" }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "peer": true, "dependencies": { - "estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", - "dev": true - } + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "esrecurse": { + "node_modules/espree": { + "version": "9.6.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", + "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", + "dev": true, + "dependencies": { + "acorn": "^8.9.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.4.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/esquery": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", + "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", + "dev": true, + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esrecurse": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", "dev": true, - "requires": { + "dependencies": { "estraverse": "^5.2.0" }, - "dependencies": { - "estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", - "dev": true - } + "engines": { + "node": ">=4.0" } }, - "estraverse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", - "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", - "dev": true + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "engines": { + "node": ">=4.0" + } }, - "esutils": { + "node_modules/esutils": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", - "dev": true + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "etag": { + "node_modules/etag": { "version": "1.8.1", "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", - "dev": true + "dev": true, + "engines": { + "node": ">= 0.6" + } }, - "event-target-shim": { + "node_modules/event-target-shim": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz", - "integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==" + "integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==", + "engines": { + "node": ">=6" + } }, - "execa": { + "node_modules/execa": { "version": "5.1.1", "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", "dev": true, - "requires": { + "dependencies": { "cross-spawn": "^7.0.3", "get-stream": "^6.0.0", "human-signals": "^2.1.0", @@ -1648,21 +2126,31 @@ "signal-exit": "^3.0.3", "strip-final-newline": "^2.0.0" }, - "dependencies": { - "get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", - "dev": true - } + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, - "express": { + "node_modules/execa/node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/express": { "version": "4.18.1", "resolved": "https://registry.npmjs.org/express/-/express-4.18.1.tgz", "integrity": "sha512-zZBcOX9TfehHQhtupq57OF8lFZ3UZi08Y97dwFCkD8p9d/d2Y3M+ykKcwaMDEL+4qyUolgBDX6AblpR3fL212Q==", "dev": true, - "requires": { + "dependencies": { "accepts": "~1.3.8", "array-flatten": "1.1.1", "body-parser": "1.20.0", @@ -1695,126 +2183,152 @@ "utils-merge": "1.0.1", "vary": "~1.1.2" }, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/express/node_modules/qs": { + "version": "6.10.3", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.10.3.tgz", + "integrity": "sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ==", + "dev": true, "dependencies": { - "qs": { - "version": "6.10.3", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.10.3.tgz", - "integrity": "sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ==", - "dev": true, - "requires": { - "side-channel": "^1.0.4" - } - } + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "extend": { + "node_modules/extend": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" }, - "external-editor": { + "node_modules/external-editor": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz", "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==", "dev": true, - "requires": { + "dependencies": { "chardet": "^0.7.0", "iconv-lite": "^0.4.24", "tmp": "^0.0.33" + }, + "engines": { + "node": ">=4" } }, - "fast-deep-equal": { + "node_modules/fast-deep-equal": { "version": "3.1.3", "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", "dev": true }, - "fast-diff": { + "node_modules/fast-diff": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.2.0.tgz", "integrity": "sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==", "dev": true }, - "fast-glob": { - "version": "3.2.12", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz", - "integrity": "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==", + "node_modules/fast-glob": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", + "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", "dev": true, - "requires": { + "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.6.0" } }, - "fast-json-stable-stringify": { + "node_modules/fast-json-stable-stringify": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", "dev": true }, - "fast-levenshtein": { + "node_modules/fast-levenshtein": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", "dev": true }, - "fast-text-encoding": { + "node_modules/fast-text-encoding": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/fast-text-encoding/-/fast-text-encoding-1.0.6.tgz", "integrity": "sha512-VhXlQgj9ioXCqGstD37E/HBeqEGV/qOD/kmbVG8h5xKBYvM1L3lR1Zn4555cQ8GkYbJa8aJSipLPndE1k6zK2w==" }, - "fastq": { - "version": "1.13.0", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz", - "integrity": "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==", + "node_modules/fastq": { + "version": "1.17.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", + "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", "dev": true, - "requires": { + "dependencies": { "reusify": "^1.0.4" } }, - "figures": { + "node_modules/figures": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", "dev": true, - "requires": { + "dependencies": { "escape-string-regexp": "^1.0.5" }, - "dependencies": { - "escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", - "dev": true - } + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "file-entry-cache": { + "node_modules/figures/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/file-entry-cache": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", "dev": true, - "requires": { + "dependencies": { "flat-cache": "^3.0.4" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" } }, - "fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "node_modules/fill-range": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", "dev": true, - "requires": { + "dependencies": { "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" } }, - "finalhandler": { + "node_modules/finalhandler": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", "dev": true, - "requires": { + "dependencies": { "debug": "2.6.9", "encodeurl": "~1.0.2", "escape-html": "~1.0.3", @@ -1822,213 +2336,239 @@ "parseurl": "~1.3.3", "statuses": "2.0.1", "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" } }, - "find-up": { + "node_modules/find-up": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", "dev": true, - "requires": { + "dependencies": { "locate-path": "^5.0.0", "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" } }, - "flat-cache": { + "node_modules/flat-cache": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", "dev": true, - "requires": { + "dependencies": { "flatted": "^3.1.0", "rimraf": "^3.0.2" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" } }, - "flatted": { + "node_modules/flatted": { "version": "3.2.7", "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==", "dev": true }, - "for-each": { + "node_modules/for-each": { "version": "0.3.3", "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", "dev": true, - "requires": { + "dependencies": { "is-callable": "^1.1.3" } }, - "forwarded": { + "node_modules/form-data": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "dev": true, + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/forwarded": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", - "dev": true + "dev": true, + "engines": { + "node": ">= 0.6" + } }, - "fresh": { + "node_modules/fresh": { "version": "0.5.2", "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", - "dev": true + "dev": true, + "engines": { + "node": ">= 0.6" + } }, - "fs.realpath": { + "node_modules/fs.realpath": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", "dev": true }, - "fsevents": { + "node_modules/fsevents": { "version": "2.3.2", "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", "dev": true, - "optional": true - }, - "function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" - }, - "function.prototype.name": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz", - "integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.0", - "functions-have-names": "^1.2.2" + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" } }, - "functional-red-black-tree": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", - "integrity": "sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==", - "dev": true - }, - "functions-have-names": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", - "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", - "dev": true + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, - "gaxios": { + "node_modules/gaxios": { "version": "4.3.3", "resolved": "https://registry.npmjs.org/gaxios/-/gaxios-4.3.3.tgz", "integrity": "sha512-gSaYYIO1Y3wUtdfHmjDUZ8LWaxJQpiavzbF5Kq53akSzvmVg0RfyOcFDbO1KJ/KCGRFz2qG+lS81F0nkr7cRJA==", - "requires": { + "dependencies": { "abort-controller": "^3.0.0", "extend": "^3.0.2", "https-proxy-agent": "^5.0.0", "is-stream": "^2.0.0", "node-fetch": "^2.6.7" + }, + "engines": { + "node": ">=10" } }, - "gcp-metadata": { + "node_modules/gcp-metadata": { "version": "4.3.1", "resolved": "https://registry.npmjs.org/gcp-metadata/-/gcp-metadata-4.3.1.tgz", "integrity": "sha512-x850LS5N7V1F3UcV7PoupzGsyD6iVwTVvsh3tbXfkctZnBnjW5yu5z1/3k3SehF7TyoTIe78rJs02GMMy+LF+A==", - "requires": { + "dependencies": { "gaxios": "^4.0.0", "json-bigint": "^1.0.0" + }, + "engines": { + "node": ">=10" } }, - "get-caller-file": { + "node_modules/get-caller-file": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", - "dev": true - }, - "get-intrinsic": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.3.tgz", - "integrity": "sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==", - "requires": { - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.3" - } - }, - "get-stream": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", - "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", "dev": true, - "requires": { - "pump": "^3.0.0" + "engines": { + "node": "6.* || 8.* || >= 10.*" } }, - "get-symbol-description": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", - "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.1" + "node_modules/get-intrinsic": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", + "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "hasown": "^2.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "glob": { + "node_modules/glob": { "version": "7.2.3", "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "deprecated": "Glob versions prior to v9 are no longer supported", "dev": true, - "requires": { + "dependencies": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^3.1.1", "once": "^1.3.0", "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "glob-parent": { + "node_modules/glob-parent": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", "dev": true, - "requires": { + "dependencies": { "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" } }, - "global-dirs": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-3.0.0.tgz", - "integrity": "sha512-v8ho2DS5RiCjftj1nD9NmnfaOzTdud7RRnVd9kFNOjqZbISlx5DQ+OrTkywgd0dIt7oFCvKetZSHoHcP3sDdiA==", - "dev": true, - "requires": { - "ini": "2.0.0" - } - }, - "globals": { - "version": "13.17.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.17.0.tgz", - "integrity": "sha512-1C+6nQRb1GwGMKm2dH/E7enFAMxGTmGI7/dEdhy/DNelv85w9B72t3uc5frtMNXIbzrarJJ/lTCjcaZwbLJmyw==", + "node_modules/globals": { + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", "dev": true, - "requires": { + "dependencies": { "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "globby": { + "node_modules/globby": { "version": "11.1.0", "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", "dev": true, - "requires": { + "dependencies": { "array-union": "^2.1.0", "dir-glob": "^3.0.1", "fast-glob": "^3.2.9", "ignore": "^5.2.0", "merge2": "^1.4.1", "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "google-auth-library": { + "node_modules/google-auth-library": { "version": "7.14.1", "resolved": "https://registry.npmjs.org/google-auth-library/-/google-auth-library-7.14.1.tgz", "integrity": "sha512-5Rk7iLNDFhFeBYc3s8l1CqzbEBcdhwR193RlD4vSNFajIcINKI8W8P0JLmBpwymHqqWbX34pJDQu39cSy/6RsA==", - "requires": { + "dependencies": { "arrify": "^2.0.0", "base64-js": "^1.3.0", "ecdsa-sig-formatter": "^1.0.11", @@ -2038,286 +2578,777 @@ "gtoken": "^5.0.4", "jws": "^4.0.0", "lru-cache": "^6.0.0" + }, + "engines": { + "node": ">=10" } }, - "google-p12-pem": { + "node_modules/google-p12-pem": { "version": "3.1.4", "resolved": "https://registry.npmjs.org/google-p12-pem/-/google-p12-pem-3.1.4.tgz", "integrity": "sha512-HHuHmkLgwjdmVRngf5+gSmpkyaRI6QmOg77J8tkNBHhNEI62sGHyw4/+UkgyZEI7h84NbWprXDJ+sa3xOYFvTg==", - "requires": { + "dependencies": { "node-forge": "^1.3.1" + }, + "bin": { + "gp12-pem": "build/src/bin/gp12-pem.js" + }, + "engines": { + "node": ">=10" } }, - "googleapis": { + "node_modules/googleapis": { "version": "92.0.0", "resolved": "https://registry.npmjs.org/googleapis/-/googleapis-92.0.0.tgz", "integrity": "sha512-5HgJg7XvqEEJ+GO+2gvnzd5cAcDuSS/VB6nW7thoyj2GMq9nH4VvJwncSevinjLCnv06a+VSxrXNiL5vePHojA==", - "requires": { + "dependencies": { "google-auth-library": "^7.0.2", "googleapis-common": "^5.0.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/googleapis-common": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/googleapis-common/-/googleapis-common-5.1.0.tgz", + "integrity": "sha512-RXrif+Gzhq1QAzfjxulbGvAY3FPj8zq/CYcvgjzDbaBNCD6bUl+86I7mUs4DKWHGruuK26ijjR/eDpWIDgNROA==", + "dependencies": { + "extend": "^3.0.2", + "gaxios": "^4.0.0", + "google-auth-library": "^7.14.0", + "qs": "^6.7.0", + "url-template": "^2.0.8", + "uuid": "^8.0.0" + }, + "engines": { + "node": ">=10.10.0" + } + }, + "node_modules/gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "dependencies": { + "get-intrinsic": "^1.1.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", + "dev": true + }, + "node_modules/gtoken": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/gtoken/-/gtoken-5.3.2.tgz", + "integrity": "sha512-gkvEKREW7dXWF8NV8pVrKfW7WqReAmjjkMBh6lNCCGOM4ucS0r0YyXXl0r/9Yj8wcW/32ISkfc8h5mPTDbtifQ==", + "dependencies": { + "gaxios": "^4.0.0", + "google-p12-pem": "^3.1.3", + "jws": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/gts": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/gts/-/gts-5.3.0.tgz", + "integrity": "sha512-/V0nbaWLBv8g0v2kol5M7Vf+kHXk19Ew5sa3wQJXeUaccesXg7AFo7eEInoIpR+aIJ3QDjoYt4zHYeFr8w8rng==", + "dev": true, + "dependencies": { + "@typescript-eslint/eslint-plugin": "5.62.0", + "@typescript-eslint/parser": "5.62.0", + "chalk": "^4.1.2", + "eslint": "8.53.0", + "eslint-config-prettier": "9.1.0", + "eslint-plugin-node": "11.1.0", + "eslint-plugin-prettier": "5.1.3", + "execa": "^5.0.0", + "inquirer": "^7.3.3", + "json5": "^2.1.3", + "meow": "^9.0.0", + "ncp": "^2.0.0", + "prettier": "3.1.1", + "rimraf": "3.0.2", + "write-file-atomic": "^4.0.0" + }, + "bin": { + "gts": "build/src/cli.js" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "typescript": ">=3" + } + }, + "node_modules/gts/node_modules/@eslint/js": { + "version": "8.53.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.53.0.tgz", + "integrity": "sha512-Kn7K8dx/5U6+cT1yEhpX1w4PCSg0M+XyRILPgvwcEBjerFWCwQj5sbr3/VmxqV0JGHCBCzyd6LxypEuehypY1w==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/gts/node_modules/@typescript-eslint/eslint-plugin": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.62.0.tgz", + "integrity": "sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==", + "dev": true, + "dependencies": { + "@eslint-community/regexpp": "^4.4.0", + "@typescript-eslint/scope-manager": "5.62.0", + "@typescript-eslint/type-utils": "5.62.0", + "@typescript-eslint/utils": "5.62.0", + "debug": "^4.3.4", + "graphemer": "^1.4.0", + "ignore": "^5.2.0", + "natural-compare-lite": "^1.4.0", + "semver": "^7.3.7", + "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/gts/node_modules/@typescript-eslint/parser": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.62.0.tgz", + "integrity": "sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==", + "dev": true, + "dependencies": { + "@typescript-eslint/scope-manager": "5.62.0", + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/typescript-estree": "5.62.0", + "debug": "^4.3.4" + }, + "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/gts/node_modules/@typescript-eslint/scope-manager": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.62.0.tgz", + "integrity": "sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/visitor-keys": "5.62.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/gts/node_modules/@typescript-eslint/type-utils": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.62.0.tgz", + "integrity": "sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==", + "dev": true, + "dependencies": { + "@typescript-eslint/typescript-estree": "5.62.0", + "@typescript-eslint/utils": "5.62.0", + "debug": "^4.3.4", + "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": { + "eslint": "*" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/gts/node_modules/@typescript-eslint/types": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.62.0.tgz", + "integrity": "sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/gts/node_modules/@typescript-eslint/typescript-estree": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz", + "integrity": "sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/visitor-keys": "5.62.0", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "semver": "^7.3.7", + "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/gts/node_modules/@typescript-eslint/utils": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.62.0.tgz", + "integrity": "sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==", + "dev": true, + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@types/json-schema": "^7.0.9", + "@types/semver": "^7.3.12", + "@typescript-eslint/scope-manager": "5.62.0", + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/typescript-estree": "5.62.0", + "eslint-scope": "^5.1.1", + "semver": "^7.3.7" + }, + "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" + } + }, + "node_modules/gts/node_modules/@typescript-eslint/utils/node_modules/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "dev": true, + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/gts/node_modules/@typescript-eslint/visitor-keys": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz", + "integrity": "sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "5.62.0", + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" } }, - "googleapis-common": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/googleapis-common/-/googleapis-common-5.1.0.tgz", - "integrity": "sha512-RXrif+Gzhq1QAzfjxulbGvAY3FPj8zq/CYcvgjzDbaBNCD6bUl+86I7mUs4DKWHGruuK26ijjR/eDpWIDgNROA==", - "requires": { - "extend": "^3.0.2", - "gaxios": "^4.0.0", - "google-auth-library": "^7.14.0", - "qs": "^6.7.0", - "url-template": "^2.0.8", - "uuid": "^8.0.0" + "node_modules/gts/node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "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/gts/node_modules/debug": { + "version": "4.3.5", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.5.tgz", + "integrity": "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==", + "dev": true, + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/gts/node_modules/eslint": { + "version": "8.53.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.53.0.tgz", + "integrity": "sha512-N4VuiPjXDUa4xVeV/GC/RV3hQW9Nw+Y463lkWaKKXKYMvmRiRDAtfpuPFLN+E1/6ZhyR8J2ig+eVREnYgUsiag==", + "dev": true, + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.6.1", + "@eslint/eslintrc": "^2.1.3", + "@eslint/js": "8.53.0", + "@humanwhocodes/config-array": "^0.11.13", + "@humanwhocodes/module-importer": "^1.0.1", + "@nodelib/fs.walk": "^1.2.8", + "@ungap/structured-clone": "^1.2.0", + "ajv": "^6.12.4", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "doctrine": "^3.0.0", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^7.2.2", + "eslint-visitor-keys": "^3.4.3", + "espree": "^9.6.1", + "esquery": "^1.4.2", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "globals": "^13.19.0", + "graphemer": "^1.4.0", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", + "js-yaml": "^4.1.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3", + "strip-ansi": "^6.0.1", + "text-table": "^0.2.0" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/gts/node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/gts/node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/gts/node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/gts/node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "node_modules/gts/node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "got": { - "version": "9.6.0", - "resolved": "https://registry.npmjs.org/got/-/got-9.6.0.tgz", - "integrity": "sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==", - "dev": true, - "requires": { - "@sindresorhus/is": "^0.14.0", - "@szmarczak/http-timer": "^1.1.2", - "cacheable-request": "^6.0.0", - "decompress-response": "^3.3.0", - "duplexer3": "^0.1.4", - "get-stream": "^4.1.0", - "lowercase-keys": "^1.0.1", - "mimic-response": "^1.0.1", - "p-cancelable": "^1.0.0", - "to-readable-stream": "^1.0.0", - "url-parse-lax": "^3.0.0" - } - }, - "graceful-fs": { - "version": "4.2.10", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", - "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==", + "node_modules/gts/node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", "dev": true }, - "gtoken": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/gtoken/-/gtoken-5.3.2.tgz", - "integrity": "sha512-gkvEKREW7dXWF8NV8pVrKfW7WqReAmjjkMBh6lNCCGOM4ucS0r0YyXXl0r/9Yj8wcW/32ISkfc8h5mPTDbtifQ==", - "requires": { - "gaxios": "^4.0.0", - "google-p12-pem": "^3.1.3", - "jws": "^4.0.0" + "node_modules/gts/node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/gts/node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "gts": { + "node_modules/gts/node_modules/prettier": { "version": "3.1.1", - "resolved": "https://registry.npmjs.org/gts/-/gts-3.1.1.tgz", - "integrity": "sha512-Jw44aBbzMnd1vtZs7tZt3LMstKQukCBg7N4CKVGzviIQ45Cz5b9lxDJGXVKj/9ySuGv6TYEeijZJGbiiVcM27w==", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.1.1.tgz", + "integrity": "sha512-22UbSzg8luF4UuZtzgiUOfcGM8s4tjBv6dJRT7j275NXsy2jb4aJa4NNveul5x4eqlF1wuhuR2RElK71RvmVaw==", "dev": true, - "requires": { - "@typescript-eslint/eslint-plugin": "^4.2.0", - "@typescript-eslint/parser": "^4.2.0", - "chalk": "^4.1.0", - "eslint": "^7.10.0", - "eslint-config-prettier": "^7.0.0", - "eslint-plugin-node": "^11.1.0", - "eslint-plugin-prettier": "^3.1.4", - "execa": "^5.0.0", - "inquirer": "^7.3.3", - "json5": "^2.1.3", - "meow": "^9.0.0", - "ncp": "^2.0.0", - "prettier": "^2.1.2", - "rimraf": "^3.0.2", - "write-file-atomic": "^3.0.3" + "bin": { + "prettier": "bin/prettier.cjs" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/prettier/prettier?sponsor=1" + } + }, + "node_modules/gts/node_modules/semver": { + "version": "7.6.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", + "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" } }, - "hard-rejection": { + "node_modules/hard-rejection": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/hard-rejection/-/hard-rejection-2.1.0.tgz", "integrity": "sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==", - "dev": true + "dev": true, + "engines": { + "node": ">=6" + } }, - "has": { + "node_modules/has": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", - "requires": { + "dev": true, + "dependencies": { "function-bind": "^1.1.1" + }, + "engines": { + "node": ">= 0.4.0" } }, - "has-bigints": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", - "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", - "dev": true - }, - "has-flag": { + "node_modules/has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "has-property-descriptors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", - "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", "dev": true, - "requires": { - "get-intrinsic": "^1.1.1" + "engines": { + "node": ">=8" + } + }, + "node_modules/has-property-descriptors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", + "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", + "dependencies": { + "es-define-property": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-proto": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", + "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "has-symbols": { + "node_modules/has-symbols": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==" + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, - "has-tostringtag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", - "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "node_modules/has-tostringtag": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", "dev": true, - "requires": { - "has-symbols": "^1.0.2" + "dependencies": { + "has-symbols": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "has-yarn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/has-yarn/-/has-yarn-2.1.0.tgz", - "integrity": "sha512-UqBRqi4ju7T+TqGNdqAO0PaSVGsDGJUBQvk9eUWNGRY1CFGDzYhLWoM7JQEemnlvVcv/YEmc2wNW8BC24EnUsw==", - "dev": true + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } }, - "hosted-git-info": { + "node_modules/hosted-git-info": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz", "integrity": "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==", "dev": true, - "requires": { + "dependencies": { "lru-cache": "^6.0.0" + }, + "engines": { + "node": ">=10" } }, - "http-cache-semantics": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz", - "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==", - "dev": true - }, - "http-errors": { + "node_modules/http-errors": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", "dev": true, - "requires": { + "dependencies": { "depd": "2.0.0", "inherits": "2.0.4", "setprototypeof": "1.2.0", "statuses": "2.0.1", "toidentifier": "1.0.1" + }, + "engines": { + "node": ">= 0.8" } }, - "https-proxy-agent": { + "node_modules/https-proxy-agent": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", - "requires": { + "dependencies": { "agent-base": "6", "debug": "4" }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/https-proxy-agent/node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", "dependencies": { - "debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "requires": { - "ms": "2.1.2" - } - }, - "ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true } } }, - "human-signals": { + "node_modules/https-proxy-agent/node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + }, + "node_modules/human-signals": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", - "dev": true + "dev": true, + "engines": { + "node": ">=10.17.0" + } }, - "iconv-lite": { + "node_modules/iconv-lite": { "version": "0.4.24", "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", "dev": true, - "requires": { + "dependencies": { "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" } }, - "ignore": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz", - "integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==", - "dev": true + "node_modules/ignore": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz", + "integrity": "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==", + "dev": true, + "engines": { + "node": ">= 4" + } }, - "ignore-by-default": { + "node_modules/ignore-by-default": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz", "integrity": "sha512-Ius2VYcGNk7T90CppJqcIkS5ooHUZyIQK+ClZfMfMNFEF9VSE73Fq+906u/CWu92x4gzZMWOwfFYckPObzdEbA==", "dev": true }, - "import-fresh": { + "node_modules/import-fresh": { "version": "3.3.0", "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", "dev": true, - "requires": { + "dependencies": { "parent-module": "^1.0.0", "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "import-lazy": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-2.1.0.tgz", - "integrity": "sha512-m7ZEHgtw69qOGw+jwxXkHlrlIPdTGkyh66zXZ1ajZbxkDBNjSY/LGbmjc7h0s2ELsUDTAhFr55TrPSSqJGPG0A==", - "dev": true - }, - "imurmurhash": { + "node_modules/imurmurhash": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", - "dev": true + "dev": true, + "engines": { + "node": ">=0.8.19" + } }, - "indent-string": { + "node_modules/indent-string": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", - "dev": true + "dev": true, + "engines": { + "node": ">=8" + } }, - "inflight": { + "node_modules/inflight": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", "dev": true, - "requires": { + "dependencies": { "once": "^1.3.0", "wrappy": "1" } }, - "inherits": { + "node_modules/inherits": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", "dev": true }, - "ini": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ini/-/ini-2.0.0.tgz", - "integrity": "sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==", - "dev": true - }, - "inquirer": { + "node_modules/inquirer": { "version": "7.3.3", "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-7.3.3.tgz", "integrity": "sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA==", "dev": true, - "requires": { + "dependencies": { "ansi-escapes": "^4.2.1", "chalk": "^4.1.0", "cli-cursor": "^3.1.0", @@ -2332,479 +3363,369 @@ "strip-ansi": "^6.0.0", "through": "^2.3.6" }, - "dependencies": { - "rxjs": { - "version": "6.6.7", - "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz", - "integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==", - "dev": true, - "requires": { - "tslib": "^1.9.0" - } - }, - "tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", - "dev": true - } + "engines": { + "node": ">=8.0.0" } }, - "internal-slot": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz", - "integrity": "sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==", + "node_modules/inquirer/node_modules/rxjs": { + "version": "6.6.7", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz", + "integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==", "dev": true, - "requires": { - "get-intrinsic": "^1.1.0", - "has": "^1.0.3", - "side-channel": "^1.0.4" + "dependencies": { + "tslib": "^1.9.0" + }, + "engines": { + "npm": ">=2.0.0" } }, - "ipaddr.js": { + "node_modules/inquirer/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true + }, + "node_modules/ipaddr.js": { "version": "1.9.1", "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", - "dev": true + "dev": true, + "engines": { + "node": ">= 0.10" + } }, - "is-arguments": { + "node_modules/is-arguments": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", "dev": true, - "requires": { + "dependencies": { "call-bind": "^1.0.2", "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "is-arrayish": { + "node_modules/is-arrayish": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", "dev": true }, - "is-bigint": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", - "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", - "dev": true, - "requires": { - "has-bigints": "^1.0.1" - } - }, - "is-binary-path": { + "node_modules/is-binary-path": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", "dev": true, - "requires": { + "dependencies": { "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" } }, - "is-boolean-object": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", - "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - } - }, - "is-callable": { - "version": "1.2.6", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.6.tgz", - "integrity": "sha512-krO72EO2NptOGAX2KYyqbP9vYMlNAXdB53rq6f8LXY6RY7JdSR/3BD6wLUlPHSAesmY9vstNrjvqGaCiRK/91Q==", - "dev": true - }, - "is-ci": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz", - "integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==", + "node_modules/is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", "dev": true, - "requires": { - "ci-info": "^2.0.0" + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "is-core-module": { + "node_modules/is-core-module": { "version": "2.10.0", "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.10.0.tgz", "integrity": "sha512-Erxj2n/LDAZ7H8WNJXd9tw38GYM3dv8rk8Zcs+jJuxYTW7sozH+SS8NtrSjVL1/vpLvWi1hxy96IzjJ3EHTJJg==", "dev": true, - "requires": { + "dependencies": { "has": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "is-date-object": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", - "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", - "dev": true, - "requires": { - "has-tostringtag": "^1.0.0" - } - }, - "is-extglob": { + "node_modules/is-extglob": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", - "dev": true + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "is-fullwidth-code-point": { + "node_modules/is-fullwidth-code-point": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true + "dev": true, + "engines": { + "node": ">=8" + } }, - "is-generator-function": { + "node_modules/is-generator-function": { "version": "1.0.10", "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", "dev": true, - "requires": { + "dependencies": { "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "is-glob": { + "node_modules/is-glob": { "version": "4.0.3", "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", "dev": true, - "requires": { + "dependencies": { "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" } }, - "is-installed-globally": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.4.0.tgz", - "integrity": "sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==", - "dev": true, - "requires": { - "global-dirs": "^3.0.0", - "is-path-inside": "^3.0.2" - } - }, - "is-negative-zero": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", - "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", - "dev": true - }, - "is-npm": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/is-npm/-/is-npm-5.0.0.tgz", - "integrity": "sha512-WW/rQLOazUq+ST/bCAVBp/2oMERWLsR7OrKyt052dNDk4DHcDE0/7QSXITlmi+VBcV13DfIbysG3tZJm5RfdBA==", - "dev": true - }, - "is-number": { + "node_modules/is-number": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "dev": true - }, - "is-number-object": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", - "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", "dev": true, - "requires": { - "has-tostringtag": "^1.0.0" + "engines": { + "node": ">=0.12.0" } }, - "is-obj": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", - "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", - "dev": true - }, - "is-path-inside": { + "node_modules/is-path-inside": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", - "dev": true + "dev": true, + "engines": { + "node": ">=8" + } }, - "is-plain-obj": { + "node_modules/is-plain-obj": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", "integrity": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==", - "dev": true - }, - "is-regex": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", - "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - } - }, - "is-shared-array-buffer": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", - "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", "dev": true, - "requires": { - "call-bind": "^1.0.2" + "engines": { + "node": ">=0.10.0" } }, - "is-stream": { + "node_modules/is-stream": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==" - }, - "is-string": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", - "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", - "dev": true, - "requires": { - "has-tostringtag": "^1.0.0" - } - }, - "is-symbol": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", - "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", - "dev": true, - "requires": { - "has-symbols": "^1.0.2" - } - }, - "is-typed-array": { - "version": "1.1.9", - "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.9.tgz", - "integrity": "sha512-kfrlnTTn8pZkfpJMUgYD7YZ3qzeJgWUn8XfVYBARc4wnmNOmLbmuuaAs3q5fvB0UJOn6yHAKaGTPM7d6ezoD/A==", - "dev": true, - "requires": { - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", - "es-abstract": "^1.20.0", - "for-each": "^0.3.3", - "has-tostringtag": "^1.0.0" + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "is-typedarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", - "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==", - "dev": true - }, - "is-weakref": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", - "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "node_modules/is-typed-array": { + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.13.tgz", + "integrity": "sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==", "dev": true, - "requires": { - "call-bind": "^1.0.2" + "dependencies": { + "which-typed-array": "^1.1.14" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "is-yarn-global": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/is-yarn-global/-/is-yarn-global-0.3.0.tgz", - "integrity": "sha512-VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw==", - "dev": true - }, - "isexe": { + "node_modules/isexe": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", "dev": true }, - "js-tokens": { + "node_modules/js-tokens": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", "dev": true }, - "js-yaml": { - "version": "3.14.1", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", - "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", "dev": true, - "requires": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" } }, - "json-bigint": { + "node_modules/json-bigint": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/json-bigint/-/json-bigint-1.0.0.tgz", "integrity": "sha512-SiPv/8VpZuWbvLSMtTDU8hEfrZWg/mH/nV/b4o0CYbSxu1UIQPLdwKOCIyLQX+VIPO5vrLX3i8qtqFyhdPSUSQ==", - "requires": { + "dependencies": { "bignumber.js": "^9.0.0" } }, - "json-buffer": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz", - "integrity": "sha512-CuUqjv0FUZIdXkHPI8MezCnFCdaTAacej1TZYulLoAg1h/PhwkdXFN4V/gzY4g+fMBCOV2xF+rp7t2XD2ns/NQ==", - "dev": true - }, - "json-parse-even-better-errors": { + "node_modules/json-parse-even-better-errors": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", "dev": true }, - "json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", "dev": true }, - "json-stable-stringify-without-jsonify": { + "node_modules/json-stable-stringify-without-jsonify": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", "dev": true }, - "json5": { + "node_modules/json5": { "version": "2.2.3", "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", - "dev": true + "dev": true, + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } }, - "jwa": { + "node_modules/jwa": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/jwa/-/jwa-2.0.0.tgz", "integrity": "sha512-jrZ2Qx916EA+fq9cEAeCROWPTfCwi1IVHqT2tapuqLEVVDKFDENFw1oL+MwrTvH6msKxsd1YTDVw6uKEcsrLEA==", - "requires": { + "dependencies": { "buffer-equal-constant-time": "1.0.1", "ecdsa-sig-formatter": "1.0.11", "safe-buffer": "^5.0.1" } }, - "jws": { + "node_modules/jws": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/jws/-/jws-4.0.0.tgz", "integrity": "sha512-KDncfTmOZoOMTFG4mBlG0qUIOlc03fmzH+ru6RgYVZhPkyiy/92Owlt/8UEN+a4TXR1FQetfIpJE8ApdvdVxTg==", - "requires": { + "dependencies": { "jwa": "^2.0.0", "safe-buffer": "^5.0.1" } }, - "keyv": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/keyv/-/keyv-3.1.0.tgz", - "integrity": "sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==", - "dev": true, - "requires": { - "json-buffer": "3.0.0" - } - }, - "kind-of": { + "node_modules/kind-of": { "version": "6.0.3", "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "dev": true - }, - "latest-version": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/latest-version/-/latest-version-5.1.0.tgz", - "integrity": "sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA==", "dev": true, - "requires": { - "package-json": "^6.3.0" + "engines": { + "node": ">=0.10.0" } }, - "levn": { + "node_modules/levn": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", "dev": true, - "requires": { + "dependencies": { "prelude-ls": "^1.2.1", "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" } }, - "libphonenumber-js": { - "version": "1.10.18", - "resolved": "https://registry.npmjs.org/libphonenumber-js/-/libphonenumber-js-1.10.18.tgz", - "integrity": "sha512-NS4ZEgNhwbcPz1gfSXCGFnQm0xEiyTSPRthIuWytDzOiEG9xnZ2FbLyfJC4tI2BMAAXpoWbNxHYH75pa3Dq9og==" + "node_modules/libphonenumber-js": { + "version": "1.11.3", + "resolved": "https://registry.npmjs.org/libphonenumber-js/-/libphonenumber-js-1.11.3.tgz", + "integrity": "sha512-RU0CTsLCu2v6VEzdP+W6UU2n5+jEpMDRkGxUeBgsAJgre3vKgm17eApISH9OQY4G0jZYJVIc8qXmz6CJFueAFg==" }, - "lines-and-columns": { + "node_modules/lines-and-columns": { "version": "1.2.4", "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", "dev": true }, - "locate-path": { + "node_modules/locate-path": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", "dev": true, - "requires": { + "dependencies": { "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" } }, - "lodash": { + "node_modules/lodash": { "version": "4.17.21", "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", "dev": true }, - "lodash.merge": { + "node_modules/lodash.merge": { "version": "4.6.2", "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", "dev": true }, - "lodash.truncate": { - "version": "4.4.2", - "resolved": "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz", - "integrity": "sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==", - "dev": true - }, - "lowercase-keys": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz", - "integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==", - "dev": true - }, - "lru-cache": { + "node_modules/lru-cache": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "requires": { + "dependencies": { "yallist": "^4.0.0" - } - }, - "make-dir": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", - "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", - "dev": true, - "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==", - "dev": true - } + "engines": { + "node": ">=10" } }, - "map-obj": { + "node_modules/map-obj": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-4.3.0.tgz", "integrity": "sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==", - "dev": true + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "media-typer": { + "node_modules/media-typer": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", - "dev": true + "dev": true, + "engines": { + "node": ">= 0.6" + } }, - "meow": { + "node_modules/meow": { "version": "9.0.0", "resolved": "https://registry.npmjs.org/meow/-/meow-9.0.0.tgz", "integrity": "sha512-+obSblOQmRhcyBt62furQqRAQpNyWXo8BuQ5bN7dG8wmwQ+vwHKp/rCFD4CrTP8CsDQD1sjoZ94K417XEUk8IQ==", "dev": true, - "requires": { + "dependencies": { "@types/minimist": "^1.2.0", "camelcase-keys": "^6.2.2", "decamelize": "^1.2.0", @@ -2818,838 +3739,1026 @@ "type-fest": "^0.18.0", "yargs-parser": "^20.2.3" }, - "dependencies": { - "type-fest": { - "version": "0.18.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.18.1.tgz", - "integrity": "sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==", - "dev": true - }, - "yargs-parser": { - "version": "20.2.9", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", - "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", - "dev": true - } + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "merge-descriptors": { + "node_modules/meow/node_modules/type-fest": { + "version": "0.18.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.18.1.tgz", + "integrity": "sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/meow/node_modules/yargs-parser": { + "version": "20.2.9", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/merge-descriptors": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==", "dev": true }, - "merge-stream": { + "node_modules/merge-stream": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", "dev": true }, - "merge2": { + "node_modules/merge2": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", - "dev": true + "dev": true, + "engines": { + "node": ">= 8" + } }, - "methods": { + "node_modules/methods": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", - "dev": true + "dev": true, + "engines": { + "node": ">= 0.6" + } }, - "micromatch": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", - "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "node_modules/micromatch": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.7.tgz", + "integrity": "sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==", "dev": true, - "requires": { - "braces": "^3.0.2", + "dependencies": { + "braces": "^3.0.3", "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" } }, - "mime": { + "node_modules/mime": { "version": "1.6.0", "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", - "dev": true + "dev": true, + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4" + } }, - "mime-db": { + "node_modules/mime-db": { "version": "1.52.0", "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", - "dev": true + "dev": true, + "engines": { + "node": ">= 0.6" + } }, - "mime-types": { + "node_modules/mime-types": { "version": "2.1.35", "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", "dev": true, - "requires": { + "dependencies": { "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" } }, - "mimic-fn": { + "node_modules/mimic-fn": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", - "dev": true - }, - "mimic-response": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", - "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", - "dev": true + "dev": true, + "engines": { + "node": ">=6" + } }, - "min-indent": { + "node_modules/min-indent": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", - "dev": true + "dev": true, + "engines": { + "node": ">=4" + } }, - "minimatch": { + "node_modules/minimatch": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, - "requires": { + "dependencies": { "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" } }, - "minimist": { - "version": "1.2.6", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz", - "integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==", - "dev": true + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, - "minimist-options": { + "node_modules/minimist-options": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/minimist-options/-/minimist-options-4.1.0.tgz", "integrity": "sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==", "dev": true, - "requires": { + "dependencies": { "arrify": "^1.0.1", "is-plain-obj": "^1.1.0", "kind-of": "^6.0.3" }, - "dependencies": { - "arrify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", - "integrity": "sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==", - "dev": true - } + "engines": { + "node": ">= 6" + } + }, + "node_modules/minimist-options/node_modules/arrify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", + "integrity": "sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==", + "dev": true, + "engines": { + "node": ">=0.10.0" } }, - "ms": { + "node_modules/ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "dev": true }, - "mute-stream": { + "node_modules/mute-stream": { "version": "0.0.8", "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==", "dev": true }, - "natural-compare": { + "node_modules/natural-compare": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", "dev": true }, - "ncp": { + "node_modules/natural-compare-lite": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz", + "integrity": "sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==", + "dev": true + }, + "node_modules/ncp": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ncp/-/ncp-2.0.0.tgz", "integrity": "sha512-zIdGUrPRFTUELUvr3Gmc7KZ2Sw/h1PiVM0Af/oHB6zgnV1ikqSfRk+TOufi79aHYCW3NiOXmr1BP5nWbzojLaA==", - "dev": true + "dev": true, + "bin": { + "ncp": "bin/ncp" + } }, - "negotiator": { + "node_modules/negotiator": { "version": "0.6.3", "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", - "dev": true + "dev": true, + "engines": { + "node": ">= 0.6" + } }, - "node-fetch": { - "version": "2.6.7", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", - "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", - "requires": { + "node_modules/node-fetch": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", + "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", + "dependencies": { "whatwg-url": "^5.0.0" + }, + "engines": { + "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } } }, - "node-forge": { + "node_modules/node-forge": { "version": "1.3.1", "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz", - "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==" + "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==", + "engines": { + "node": ">= 6.13.0" + } }, - "nodemon": { - "version": "2.0.16", - "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-2.0.16.tgz", - "integrity": "sha512-zsrcaOfTWRuUzBn3P44RDliLlp263Z/76FPoHFr3cFFkOz0lTPAcIw8dCzfdVIx/t3AtDYCZRCDkoCojJqaG3w==", + "node_modules/nodemon": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-3.1.3.tgz", + "integrity": "sha512-m4Vqs+APdKzDFpuaL9F9EVOF85+h070FnkHVEoU4+rmT6Vw0bmNl7s61VEkY/cJkL7RCv1p4urnUDUMrS5rk2w==", "dev": true, - "requires": { + "dependencies": { "chokidar": "^3.5.2", - "debug": "^3.2.7", + "debug": "^4", "ignore-by-default": "^1.0.1", - "minimatch": "^3.0.4", + "minimatch": "^3.1.2", "pstree.remy": "^1.1.8", - "semver": "^5.7.1", + "semver": "^7.5.3", + "simple-update-notifier": "^2.0.0", "supports-color": "^5.5.0", "touch": "^3.1.0", - "undefsafe": "^2.0.5", - "update-notifier": "^5.1.0" - }, - "dependencies": { - "debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "requires": { - "ms": "^2.1.1" - } - }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", - "dev": true - }, - "ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "dev": true - }, + "undefsafe": "^2.0.5" + }, + "bin": { + "nodemon": "bin/nodemon.js" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/nodemon" + } + }, + "node_modules/nodemon/node_modules/debug": { + "version": "4.3.5", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.5.tgz", + "integrity": "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==", + "dev": true, + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } + "optional": true } } }, - "nopt": { + "node_modules/nodemon/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/nodemon/node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "node_modules/nodemon/node_modules/semver": { + "version": "7.6.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", + "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/nodemon/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/nopt": { "version": "1.0.10", "resolved": "https://registry.npmjs.org/nopt/-/nopt-1.0.10.tgz", "integrity": "sha512-NWmpvLSqUrgrAC9HCuxEvb+PSloHpqVu+FqcO4eeF2h5qYRhA7ev6KvelyQAKtegUbC6RypJnlEOhd8vloNKYg==", "dev": true, - "requires": { + "dependencies": { "abbrev": "1" + }, + "bin": { + "nopt": "bin/nopt.js" + }, + "engines": { + "node": "*" } }, - "normalize-package-data": { + "node_modules/normalize-package-data": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz", "integrity": "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==", "dev": true, - "requires": { + "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-package-data/node_modules/semver": { + "version": "7.3.7", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz", + "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", + "dev": true, "dependencies": { - "semver": { - "version": "7.3.7", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz", - "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - } + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" } }, - "normalize-path": { + "node_modules/normalize-path": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", - "dev": true - }, - "normalize-url": { - "version": "4.5.1", - "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-4.5.1.tgz", - "integrity": "sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA==", - "dev": true + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "npm-run-path": { + "node_modules/npm-run-path": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", "dev": true, - "requires": { + "dependencies": { "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" } }, - "object-inspect": { + "node_modules/object-inspect": { "version": "1.12.2", "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.2.tgz", - "integrity": "sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==" - }, - "object-keys": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", - "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", - "dev": true - }, - "object.assign": { - "version": "4.1.4", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", - "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "has-symbols": "^1.0.3", - "object-keys": "^1.1.1" + "integrity": "sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==", + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "on-finished": { + "node_modules/on-finished": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", "dev": true, - "requires": { + "dependencies": { "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" } }, - "once": { + "node_modules/once": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", "dev": true, - "requires": { + "dependencies": { "wrappy": "1" } }, - "onetime": { + "node_modules/onetime": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", "dev": true, - "requires": { + "dependencies": { "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "optionator": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", - "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", + "node_modules/optionator": { + "version": "0.9.4", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", + "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", "dev": true, - "requires": { + "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" + "word-wrap": "^1.2.5" + }, + "engines": { + "node": ">= 0.8.0" } }, - "os-tmpdir": { + "node_modules/os-tmpdir": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", "integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==", - "dev": true - }, - "p-cancelable": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-1.1.0.tgz", - "integrity": "sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==", - "dev": true + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "p-limit": { + "node_modules/p-limit": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", "dev": true, - "requires": { + "dependencies": { "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "p-locate": { + "node_modules/p-locate": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", "dev": true, - "requires": { + "dependencies": { "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" } }, - "p-try": { + "node_modules/p-try": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", - "dev": true - }, - "package-json": { - "version": "6.5.0", - "resolved": "https://registry.npmjs.org/package-json/-/package-json-6.5.0.tgz", - "integrity": "sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ==", "dev": true, - "requires": { - "got": "^9.6.0", - "registry-auth-token": "^4.0.0", - "registry-url": "^5.0.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==", - "dev": true - } + "engines": { + "node": ">=6" } }, - "parent-module": { + "node_modules/parent-module": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", "dev": true, - "requires": { + "dependencies": { "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" } }, - "parse-json": { + "node_modules/parse-json": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", "dev": true, - "requires": { + "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" } }, - "parseurl": { + "node_modules/parseurl": { "version": "1.3.3", "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", - "dev": true + "dev": true, + "engines": { + "node": ">= 0.8" + } }, - "path-exists": { + "node_modules/path-exists": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "dev": true + "dev": true, + "engines": { + "node": ">=8" + } }, - "path-is-absolute": { + "node_modules/path-is-absolute": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", - "dev": true + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "path-key": { + "node_modules/path-key": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", - "dev": true + "dev": true, + "engines": { + "node": ">=8" + } }, - "path-parse": { + "node_modules/path-parse": { "version": "1.0.7", "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", "dev": true }, - "path-to-regexp": { + "node_modules/path-to-regexp": { "version": "0.1.7", "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==", "dev": true }, - "path-type": { + "node_modules/path-type": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", - "dev": true + "dev": true, + "engines": { + "node": ">=8" + } }, - "picomatch": { + "node_modules/picomatch": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", - "dev": true + "dev": true, + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/possible-typed-array-names": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz", + "integrity": "sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==", + "dev": true, + "engines": { + "node": ">= 0.4" + } }, - "prelude-ls": { + "node_modules/prelude-ls": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", - "dev": true - }, - "prepend-http": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz", - "integrity": "sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA==", - "dev": true + "dev": true, + "engines": { + "node": ">= 0.8.0" + } }, - "prettier": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.7.1.tgz", - "integrity": "sha512-ujppO+MkdPqoVINuDFDRLClm7D78qbDt0/NR+wp5FqEZOoTNAjPHWj17QRhu7geIHJfcNhRk1XVQmF8Bp3ye+g==", - "dev": true + "node_modules/prettier": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.3.1.tgz", + "integrity": "sha512-7CAwy5dRsxs8PHXT3twixW9/OEll8MLE0VRPCJyl7CkS6VHGPSlsVaWTiASPTyGyYRyApxlaWTzwUxVNrhcwDg==", + "dev": true, + "peer": true, + "bin": { + "prettier": "bin/prettier.cjs" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/prettier/prettier?sponsor=1" + } }, - "prettier-linter-helpers": { + "node_modules/prettier-linter-helpers": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz", "integrity": "sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==", "dev": true, - "requires": { + "dependencies": { "fast-diff": "^1.1.2" + }, + "engines": { + "node": ">=6.0.0" } }, - "progress": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", - "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", - "dev": true + "node_modules/process": { + "version": "0.11.10", + "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", + "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", + "dev": true, + "engines": { + "node": ">= 0.6.0" + } }, - "proxy-addr": { + "node_modules/proxy-addr": { "version": "2.0.7", "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", "dev": true, - "requires": { + "dependencies": { "forwarded": "0.2.0", "ipaddr.js": "1.9.1" + }, + "engines": { + "node": ">= 0.10" } }, - "pstree.remy": { + "node_modules/pstree.remy": { "version": "1.1.8", "resolved": "https://registry.npmjs.org/pstree.remy/-/pstree.remy-1.1.8.tgz", "integrity": "sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==", "dev": true }, - "pump": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", - "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", - "dev": true, - "requires": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" - } - }, - "punycode": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", - "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", - "dev": true - }, - "pupa": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/pupa/-/pupa-2.1.1.tgz", - "integrity": "sha512-l1jNAspIBSFqbT+y+5FosojNpVpF94nlI+wDUpqP9enwOTfHx9f0gh5nB96vl+6yTpsJsypeNrwfzPrKuHB41A==", + "node_modules/punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", "dev": true, - "requires": { - "escape-goat": "^2.0.0" + "engines": { + "node": ">=6" } }, - "qs": { + "node_modules/qs": { "version": "6.11.0", "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", - "requires": { + "dependencies": { "side-channel": "^1.0.4" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "queue-microtask": { + "node_modules/queue-microtask": { "version": "1.2.3", "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", - "dev": true + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] }, - "quick-lru": { + "node_modules/quick-lru": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-4.0.1.tgz", "integrity": "sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==", - "dev": true + "dev": true, + "engines": { + "node": ">=8" + } }, - "range-parser": { + "node_modules/range-parser": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", - "dev": true + "dev": true, + "engines": { + "node": ">= 0.6" + } }, - "raw-body": { + "node_modules/raw-body": { "version": "2.5.1", "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", "dev": true, - "requires": { + "dependencies": { "bytes": "3.1.2", "http-errors": "2.0.0", "iconv-lite": "0.4.24", "unpipe": "1.0.0" - } - }, - "rc": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", - "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", - "dev": true, - "requires": { - "deep-extend": "^0.6.0", - "ini": "~1.3.0", - "minimist": "^1.2.0", - "strip-json-comments": "~2.0.1" }, - "dependencies": { - "ini": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", - "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", - "dev": true - } + "engines": { + "node": ">= 0.8" } }, - "read-pkg": { + "node_modules/read-pkg": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", "dev": true, - "requires": { + "dependencies": { "@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", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", - "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", - "dev": true - }, - "normalize-package-data": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", - "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", - "dev": true, - "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", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", - "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", - "dev": true - } + "engines": { + "node": ">=8" } }, - "read-pkg-up": { + "node_modules/read-pkg-up": { "version": "7.0.1", "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", "dev": true, - "requires": { + "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/type-fest": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/read-pkg/node_modules/hosted-git-info": { + "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", + "dev": true + }, + "node_modules/read-pkg/node_modules/normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "dev": true, "dependencies": { - "type-fest": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", - "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", - "dev": true - } + "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/type-fest": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", + "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", + "dev": true, + "engines": { + "node": ">=8" } }, - "readdirp": { + "node_modules/readdirp": { "version": "3.6.0", "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", "dev": true, - "requires": { + "dependencies": { "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" } }, - "redent": { + "node_modules/redent": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz", "integrity": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==", "dev": true, - "requires": { + "dependencies": { "indent-string": "^4.0.0", "strip-indent": "^3.0.0" + }, + "engines": { + "node": ">=8" } }, - "reflect-metadata": { - "version": "0.1.13", - "resolved": "https://registry.npmjs.org/reflect-metadata/-/reflect-metadata-0.1.13.tgz", - "integrity": "sha512-Ts1Y/anZELhSsjMcU605fU9RE4Oi3p5ORujwbIKXfWa+0Zxs510Qrmrce5/Jowq3cHSZSJqBjypxmHarc+vEWg==" + "node_modules/reflect-metadata": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/reflect-metadata/-/reflect-metadata-0.2.2.tgz", + "integrity": "sha512-urBwgfrvVP/eAyXx4hluJivBKzuEbSQs9rKWCrCkbSxNv8mxPcUZKeuoF3Uy4mJl3Lwprp6yy5/39VWigZ4K6Q==" }, - "regexp.prototype.flags": { - "version": "1.4.3", - "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz", - "integrity": "sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "functions-have-names": "^1.2.2" - } + "node_modules/regenerator-runtime": { + "version": "0.14.1", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", + "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==", + "dev": true }, - "regexpp": { + "node_modules/regexpp": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==", - "dev": true - }, - "registry-auth-token": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-4.2.2.tgz", - "integrity": "sha512-PC5ZysNb42zpFME6D/XlIgtNGdTl8bBOCw90xQLVMpzuuubJKYDWFAEuUNc+Cn8Z8724tg2SDhDRrkVEsqfDMg==", - "dev": true, - "requires": { - "rc": "1.2.8" - } - }, - "registry-url": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/registry-url/-/registry-url-5.1.0.tgz", - "integrity": "sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw==", "dev": true, - "requires": { - "rc": "^1.2.8" + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" } }, - "require-directory": { + "node_modules/require-directory": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", - "dev": true + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "require-from-string": { + "node_modules/require-from-string": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", - "dev": true + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "resolve": { + "node_modules/resolve": { "version": "1.22.1", "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz", "integrity": "sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==", "dev": true, - "requires": { + "dependencies": { "is-core-module": "^2.9.0", "path-parse": "^1.0.7", "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "resolve-from": { + "node_modules/resolve-from": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", - "dev": true - }, - "responselike": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz", - "integrity": "sha512-/Fpe5guzJk1gPqdJLJR5u7eG/gNY4nImjbRDaVWVMRhne55TCmj2i9Q+54PBRfatRC8v/rIiv9BN0pMd9OV5EQ==", "dev": true, - "requires": { - "lowercase-keys": "^1.0.0" + "engines": { + "node": ">=4" } }, - "restore-cursor": { + "node_modules/restore-cursor": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", "dev": true, - "requires": { + "dependencies": { "onetime": "^5.1.0", "signal-exit": "^3.0.2" + }, + "engines": { + "node": ">=8" } }, - "reusify": { + "node_modules/reusify": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", - "dev": true + "dev": true, + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } }, - "rimraf": { + "node_modules/rimraf": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "deprecated": "Rimraf versions prior to v4 are no longer supported", "dev": true, - "requires": { + "dependencies": { "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "run-async": { + "node_modules/run-async": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz", "integrity": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==", - "dev": true + "dev": true, + "engines": { + "node": ">=0.12.0" + } }, - "run-parallel": { + "node_modules/run-parallel": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", "dev": true, - "requires": { + "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" } }, - "rxjs": { - "version": "7.5.5", - "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.5.5.tgz", - "integrity": "sha512-sy+H0pQofO95VDmFLzyaw9xNJU4KTRSwQIGM6+iG3SypAtCiLDzpeG8sJrNCWn2Up9km+KhkvTdbkrdy+yzZdw==", + "node_modules/rxjs": { + "version": "7.8.1", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz", + "integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==", "dev": true, - "requires": { + "dependencies": { "tslib": "^2.1.0" } }, - "safe-buffer": { + "node_modules/safe-buffer": { "version": "5.2.1", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" + "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" + } + ] }, - "safer-buffer": { + "node_modules/safer-buffer": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", "dev": true }, - "semver": { + "node_modules/semver": { "version": "5.7.1", "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", - "dev": true - }, - "semver-diff": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/semver-diff/-/semver-diff-3.1.1.tgz", - "integrity": "sha512-GX0Ix/CJcHyB8c4ykpHGIAvLyOwOobtM/8d+TQkAd81/bEjgPHrfba41Vpesr7jX/t8Uh+R3EX9eAS5be+jQYg==", "dev": true, - "requires": { - "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==", - "dev": true - } + "bin": { + "semver": "bin/semver" } }, - "send": { + "node_modules/send": { "version": "0.18.0", "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", "dev": true, - "requires": { + "dependencies": { "debug": "2.6.9", "depd": "2.0.0", "destroy": "1.2.0", @@ -3664,656 +4773,698 @@ "range-parser": "~1.2.1", "statuses": "2.0.1" }, - "dependencies": { - "ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "dev": true - } + "engines": { + "node": ">= 0.8.0" } }, - "serve-static": { + "node_modules/send/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true + }, + "node_modules/serve-static": { "version": "1.15.0", "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", "dev": true, - "requires": { + "dependencies": { "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "parseurl": "~1.3.3", "send": "0.18.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/set-function-length": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", + "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", + "dependencies": { + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" } }, - "setprototypeof": { + "node_modules/setprototypeof": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", "dev": true }, - "shebang-command": { + "node_modules/shebang-command": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", "dev": true, - "requires": { + "dependencies": { "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" } }, - "shebang-regex": { + "node_modules/shebang-regex": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", - "dev": true + "dev": true, + "engines": { + "node": ">=8" + } }, - "shell-quote": { - "version": "1.7.3", - "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.3.tgz", - "integrity": "sha512-Vpfqwm4EnqGdlsBFNmHhxhElJYrdfcxPThu+ryKS5J8L/fhAwLazFZtq+S+TWZ9ANj2piSQLGj6NQg+lKPmxrw==", - "dev": true + "node_modules/shell-quote": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.1.tgz", + "integrity": "sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, - "side-channel": { + "node_modules/side-channel": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", - "requires": { + "dependencies": { "call-bind": "^1.0.0", "get-intrinsic": "^1.0.2", "object-inspect": "^1.9.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "signal-exit": { + "node_modules/signal-exit": { "version": "3.0.7", "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", "dev": true }, - "slash": { + "node_modules/simple-update-notifier": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/simple-update-notifier/-/simple-update-notifier-2.0.0.tgz", + "integrity": "sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w==", + "dev": true, + "dependencies": { + "semver": "^7.5.3" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/simple-update-notifier/node_modules/semver": { + "version": "7.6.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", + "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/slash": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", - "dev": true - }, - "slice-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", - "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", "dev": true, - "requires": { - "ansi-styles": "^4.0.0", - "astral-regex": "^2.0.0", - "is-fullwidth-code-point": "^3.0.0" + "engines": { + "node": ">=8" } }, - "spawn-command": { - "version": "0.0.2-1", - "resolved": "https://registry.npmjs.org/spawn-command/-/spawn-command-0.0.2-1.tgz", - "integrity": "sha512-n98l9E2RMSJ9ON1AKisHzz7V42VDiBQGY6PB1BwRglz99wpVsSuGzQ+jOi6lFXBGVTCrRpltvjm+/XA+tpeJrg==", + "node_modules/spawn-command": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/spawn-command/-/spawn-command-0.0.2.tgz", + "integrity": "sha512-zC8zGoGkmc8J9ndvml8Xksr1Amk9qBujgbF0JAIWO7kXr43w0h/0GJNM/Vustixu+YE8N/MTrQ7N31FvHUACxQ==", "dev": true }, - "spdx-correct": { + "node_modules/spdx-correct": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz", "integrity": "sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==", "dev": true, - "requires": { + "dependencies": { "spdx-expression-parse": "^3.0.0", "spdx-license-ids": "^3.0.0" } }, - "spdx-exceptions": { + "node_modules/spdx-exceptions": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", "dev": true }, - "spdx-expression-parse": { + "node_modules/spdx-expression-parse": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", "dev": true, - "requires": { + "dependencies": { "spdx-exceptions": "^2.1.0", "spdx-license-ids": "^3.0.0" } }, - "spdx-license-ids": { + "node_modules/spdx-license-ids": { "version": "3.0.12", "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.12.tgz", "integrity": "sha512-rr+VVSXtRhO4OHbXUiAF7xW3Bo9DuuF6C5jH+q/x15j2jniycgKbxU09Hr0WqlSLUs4i4ltHGXqTe7VHclYWyA==", "dev": true }, - "sprintf-js": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", - "dev": true - }, - "statuses": { + "node_modules/statuses": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", - "dev": true + "dev": true, + "engines": { + "node": ">= 0.8" + } }, - "string-width": { + "node_modules/string-width": { "version": "4.2.3", "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", "dev": true, - "requires": { + "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" } }, - "string.prototype.trimend": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.5.tgz", - "integrity": "sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.19.5" - } - }, - "string.prototype.trimstart": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.5.tgz", - "integrity": "sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.19.5" - } - }, - "strip-ansi": { + "node_modules/strip-ansi": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "dev": true, - "requires": { + "dependencies": { "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" } }, - "strip-final-newline": { + "node_modules/strip-final-newline": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", - "dev": true + "dev": true, + "engines": { + "node": ">=6" + } }, - "strip-indent": { + "node_modules/strip-indent": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz", "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==", "dev": true, - "requires": { + "dependencies": { "min-indent": "^1.0.0" + }, + "engines": { + "node": ">=8" } }, - "strip-json-comments": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", - "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==", - "dev": true + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "supports-color": { + "node_modules/supports-color": { "version": "8.1.1", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", "dev": true, - "requires": { + "dependencies": { "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" } }, - "supports-preserve-symlinks-flag": { + "node_modules/supports-preserve-symlinks-flag": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", - "dev": true - }, - "table": { - "version": "6.8.0", - "resolved": "https://registry.npmjs.org/table/-/table-6.8.0.tgz", - "integrity": "sha512-s/fitrbVeEyHKFa7mFdkuQMWlH1Wgw/yEXMt5xACT4ZpzWFluehAxRtUUQKPuWhaLAWhFcVx6w3oC8VKaUfPGA==", "dev": true, - "requires": { - "ajv": "^8.0.1", - "lodash.truncate": "^4.4.2", - "slice-ansi": "^4.0.0", - "string-width": "^4.2.3", - "strip-ansi": "^6.0.1" + "engines": { + "node": ">= 0.4" }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/synckit": { + "version": "0.8.8", + "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.8.8.tgz", + "integrity": "sha512-HwOKAP7Wc5aRGYdKH+dw0PRRpbO841v2DENBtjnR5HFWoiNByAl7vrx3p0G/rCyYXQsrxqtX48TImFtPcIHSpQ==", + "dev": true, "dependencies": { - "ajv": { - "version": "8.11.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", - "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - } - }, - "json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", - "dev": true - } + "@pkgr/core": "^0.1.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/unts" } }, - "text-table": { + "node_modules/text-table": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", "dev": true }, - "through": { + "node_modules/through": { "version": "2.3.8", "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", "dev": true }, - "tmp": { + "node_modules/tmp": { "version": "0.0.33", "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", "dev": true, - "requires": { + "dependencies": { "os-tmpdir": "~1.0.2" + }, + "engines": { + "node": ">=0.6.0" } }, - "to-readable-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/to-readable-stream/-/to-readable-stream-1.0.0.tgz", - "integrity": "sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==", - "dev": true - }, - "to-regex-range": { + "node_modules/to-regex-range": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", "dev": true, - "requires": { + "dependencies": { "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" } }, - "toidentifier": { + "node_modules/toidentifier": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", - "dev": true + "dev": true, + "engines": { + "node": ">=0.6" + } }, - "touch": { + "node_modules/touch": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/touch/-/touch-3.1.0.tgz", "integrity": "sha512-WBx8Uy5TLtOSRtIq+M03/sKDrXCLHxwDcquSP2c43Le03/9serjQBIztjRz6FkJez9D/hleyAXTBGLwwZUw9lA==", "dev": true, - "requires": { + "dependencies": { "nopt": "~1.0.10" + }, + "bin": { + "nodetouch": "bin/nodetouch.js" } }, - "tr46": { + "node_modules/tr46": { "version": "0.0.3", "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" }, - "tree-kill": { + "node_modules/tree-kill": { "version": "1.2.2", "resolved": "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.2.tgz", "integrity": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==", - "dev": true + "dev": true, + "bin": { + "tree-kill": "cli.js" + } }, - "trim-newlines": { + "node_modules/trim-newlines": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-3.0.1.tgz", "integrity": "sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==", - "dev": true + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/ts-api-utils": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.3.0.tgz", + "integrity": "sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==", + "dev": true, + "engines": { + "node": ">=16" + }, + "peerDependencies": { + "typescript": ">=4.2.0" + } }, - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==", + "node_modules/tslib": { + "version": "2.6.3", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.3.tgz", + "integrity": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==", "dev": true }, - "tsutils": { + "node_modules/tsutils": { "version": "3.21.0", "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", "dev": true, - "requires": { + "dependencies": { "tslib": "^1.8.1" }, - "dependencies": { - "tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", - "dev": true - } + "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" } }, - "type-check": { + "node_modules/tsutils/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true + }, + "node_modules/type-check": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", "dev": true, - "requires": { + "dependencies": { "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" } }, - "type-fest": { + "node_modules/type-fest": { "version": "0.20.2", "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", - "dev": true + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "type-is": { + "node_modules/type-is": { "version": "1.6.18", "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", "dev": true, - "requires": { + "dependencies": { "media-typer": "0.3.0", "mime-types": "~2.1.24" + }, + "engines": { + "node": ">= 0.6" } }, - "typedarray-to-buffer": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", - "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", - "dev": true, - "requires": { - "is-typedarray": "^1.0.0" - } - }, - "typescript": { - "version": "4.7.4", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.7.4.tgz", - "integrity": "sha512-C0WQT0gezHuw6AdY1M2jxUO83Rjf0HP7Sk1DtXj6j1EwkQNZrHAg2XPWlq62oqEhYvONq5pkC2Y9oPljWToLmQ==", - "dev": true - }, - "unbox-primitive": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", - "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", + "node_modules/typescript": { + "version": "5.4.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.4.3.tgz", + "integrity": "sha512-KrPd3PKaCLr78MalgiwJnA25Nm8HAmdwN3mYUYZgG/wizIo9EainNVQI9/yDavtVFRN2h3k8uf3GLHuhDMgEHg==", "dev": true, - "requires": { - "call-bind": "^1.0.2", - "has-bigints": "^1.0.2", - "has-symbols": "^1.0.3", - "which-boxed-primitive": "^1.0.2" + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" } }, - "undefsafe": { + "node_modules/undefsafe": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/undefsafe/-/undefsafe-2.0.5.tgz", "integrity": "sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA==", "dev": true }, - "unique-string": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz", - "integrity": "sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==", - "dev": true, - "requires": { - "crypto-random-string": "^2.0.0" - } + "node_modules/undici-types": { + "version": "5.26.5", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", + "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==", + "dev": true }, - "unpipe": { + "node_modules/unpipe": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", - "dev": true - }, - "update-notifier": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/update-notifier/-/update-notifier-5.1.0.tgz", - "integrity": "sha512-ItnICHbeMh9GqUy31hFPrD1kcuZ3rpxDZbf4KUDavXwS0bW5m7SLbDQpGX3UYr072cbrF5hFUs3r5tUsPwjfHw==", "dev": true, - "requires": { - "boxen": "^5.0.0", - "chalk": "^4.1.0", - "configstore": "^5.0.1", - "has-yarn": "^2.1.0", - "import-lazy": "^2.1.0", - "is-ci": "^2.0.0", - "is-installed-globally": "^0.4.0", - "is-npm": "^5.0.0", - "is-yarn-global": "^0.3.0", - "latest-version": "^5.1.0", - "pupa": "^2.1.1", - "semver": "^7.3.4", - "semver-diff": "^3.1.1", - "xdg-basedir": "^4.0.0" - }, - "dependencies": { - "semver": { - "version": "7.3.7", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz", - "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - } + "engines": { + "node": ">= 0.8" } }, - "uri-js": { + "node_modules/uri-js": { "version": "4.4.1", "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", "dev": true, - "requires": { + "dependencies": { "punycode": "^2.1.0" } }, - "url-parse-lax": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz", - "integrity": "sha512-NjFKA0DidqPa5ciFcSrXnAltTtzz84ogy+NebPvfEgAck0+TNg4UJ4IN+fB7zRZfbgUf0syOo9MDxFkDSMuFaQ==", - "dev": true, - "requires": { - "prepend-http": "^2.0.0" - } - }, - "url-template": { + "node_modules/url-template": { "version": "2.0.8", "resolved": "https://registry.npmjs.org/url-template/-/url-template-2.0.8.tgz", "integrity": "sha512-XdVKMF4SJ0nP/O7XIPB0JwAEuT9lDIYnNsK8yGVe43y0AWoKeJNdv3ZNWh7ksJ6KqQFjOO6ox/VEitLnaVNufw==" }, - "util": { - "version": "0.12.4", - "resolved": "https://registry.npmjs.org/util/-/util-0.12.4.tgz", - "integrity": "sha512-bxZ9qtSlGUWSOy9Qa9Xgk11kSslpuZwaxCg4sNIDj6FLucDab2JxnHwyNTCpHMtK1MjoQiWQ6DiUMZYbSrO+Sw==", + "node_modules/util": { + "version": "0.12.5", + "resolved": "https://registry.npmjs.org/util/-/util-0.12.5.tgz", + "integrity": "sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==", "dev": true, - "requires": { + "dependencies": { "inherits": "^2.0.3", "is-arguments": "^1.0.4", "is-generator-function": "^1.0.7", "is-typed-array": "^1.1.3", - "safe-buffer": "^5.1.2", "which-typed-array": "^1.1.2" } }, - "utils-merge": { + "node_modules/utils-merge": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", - "dev": true + "dev": true, + "engines": { + "node": ">= 0.4.0" + } }, - "uuid": { + "node_modules/uuid": { "version": "8.3.2", "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", - "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==" - }, - "v8-compile-cache": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz", - "integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==", - "dev": true + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "bin": { + "uuid": "dist/bin/uuid" + } }, - "validate-npm-package-license": { + "node_modules/validate-npm-package-license": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", "dev": true, - "requires": { + "dependencies": { "spdx-correct": "^3.0.0", "spdx-expression-parse": "^3.0.0" } }, - "validator": { - "version": "13.7.0", - "resolved": "https://registry.npmjs.org/validator/-/validator-13.7.0.tgz", - "integrity": "sha512-nYXQLCBkpJ8X6ltALua9dRrZDHVYxjJ1wgskNt1lH9fzGjs3tgojGSCBjmEPwkWS1y29+DrizMTW19Pr9uB2nw==" + "node_modules/validator": { + "version": "13.12.0", + "resolved": "https://registry.npmjs.org/validator/-/validator-13.12.0.tgz", + "integrity": "sha512-c1Q0mCiPlgdTVVVIJIrBuxNicYE+t/7oKeI9MWLj3fh/uq2Pxh/3eeWbVZ4OcGW1TUf53At0njHw5SMdA3tmMg==", + "engines": { + "node": ">= 0.10" + } }, - "vary": { + "node_modules/vary": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", - "dev": true + "dev": true, + "engines": { + "node": ">= 0.8" + } }, - "webidl-conversions": { + "node_modules/webidl-conversions": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" }, - "whatwg-url": { + "node_modules/whatwg-url": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", - "requires": { + "dependencies": { "tr46": "~0.0.3", "webidl-conversions": "^3.0.0" } }, - "which": { + "node_modules/which": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", "dev": true, - "requires": { + "dependencies": { "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" } }, - "which-boxed-primitive": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", - "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", - "dev": true, - "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-typed-array": { - "version": "1.1.8", - "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.8.tgz", - "integrity": "sha512-Jn4e5PItbcAHyLoRDwvPj1ypu27DJbtdYXUa5zsinrUx77Uvfb0cXwwnGMTn7cjUfhhqgVQnVJCwF+7cgU7tpw==", + "node_modules/which-typed-array": { + "version": "1.1.15", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.15.tgz", + "integrity": "sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==", "dev": true, - "requires": { - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", - "es-abstract": "^1.20.0", + "dependencies": { + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.7", "for-each": "^0.3.3", - "has-tostringtag": "^1.0.0", - "is-typed-array": "^1.1.9" + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "widest-line": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-3.1.0.tgz", - "integrity": "sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==", + "node_modules/word-wrap": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", "dev": true, - "requires": { - "string-width": "^4.0.0" + "engines": { + "node": ">=0.10.0" } }, - "word-wrap": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", - "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", - "dev": true - }, - "wrap-ansi": { + "node_modules/wrap-ansi": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", "dev": true, - "requires": { + "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" } }, - "wrappy": { + "node_modules/wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", "dev": true }, - "write-file-atomic": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", - "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", + "node_modules/write-file-atomic": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", + "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", "dev": true, - "requires": { + "dependencies": { "imurmurhash": "^0.1.4", - "is-typedarray": "^1.0.0", - "signal-exit": "^3.0.2", - "typedarray-to-buffer": "^3.1.5" + "signal-exit": "^3.0.7" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "xdg-basedir": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-4.0.0.tgz", - "integrity": "sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==", - "dev": true - }, - "xmlhttprequest": { + "node_modules/xmlhttprequest": { "version": "1.8.0", "resolved": "https://registry.npmjs.org/xmlhttprequest/-/xmlhttprequest-1.8.0.tgz", - "integrity": "sha512-58Im/U0mlVBLM38NdZjHyhuMtCqa61469k2YP/AaPbvCoV9aQGUpbJBj1QRm2ytRiVQBD/fsw7L2bJGDVQswBA==" + "integrity": "sha512-58Im/U0mlVBLM38NdZjHyhuMtCqa61469k2YP/AaPbvCoV9aQGUpbJBj1QRm2ytRiVQBD/fsw7L2bJGDVQswBA==", + "engines": { + "node": ">=0.4.0" + } }, - "y18n": { + "node_modules/y18n": { "version": "5.0.8", "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", - "dev": true + "dev": true, + "engines": { + "node": ">=10" + } }, - "yallist": { + "node_modules/yallist": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" }, - "yargs": { - "version": "17.5.1", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.5.1.tgz", - "integrity": "sha512-t6YAJcxDkNX7NFYiVtKvWUz8l+PaKTLiL63mJYWR2GnHq2gjEWISzsLp9wg3aY36dY1j+gfIEL3pIF+XlJJfbA==", + "node_modules/yargs": { + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", "dev": true, - "requires": { - "cliui": "^7.0.2", + "dependencies": { + "cliui": "^8.0.1", "escalade": "^3.1.1", "get-caller-file": "^2.0.5", "require-directory": "^2.1.1", "string-width": "^4.2.3", "y18n": "^5.0.5", - "yargs-parser": "^21.0.0" + "yargs-parser": "^21.1.1" + }, + "engines": { + "node": ">=12" } }, - "yargs-parser": { - "version": "21.0.1", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.0.1.tgz", - "integrity": "sha512-9BK1jFpLzJROCI5TzwZL/TU4gqjK5xiHV/RfWLOahrjAko/e4DJkRDZQXfvqAsiZzzYhgAzbgz6lg48jcm4GLg==", - "dev": true + "node_modules/yargs-parser": { + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "dev": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } } } } diff --git a/cloud_functions/earth_engine_tiler/package.json b/cloud_functions/earth_engine_tiler/package.json index b0f5bb5..38996f4 100644 --- a/cloud_functions/earth_engine_tiler/package.json +++ b/cloud_functions/earth_engine_tiler/package.json @@ -4,29 +4,33 @@ "description": "", "main": "build/src/index.js", "scripts": { - "start": "functions-framework -source=build/src/ --target=analyze", + "start": "functions-framework -source=build/src/ --target=getTiles", "watch": "concurrently \"tsc -w\" \"nodemon --watch ./build/ --exec npm run start\"", "lint": "gts lint", "clean": "gts clean", - "compile": "tsc", - "build": "npm run compile" + "compile": "rm -rf build && tsc", + "build": "npm run compile", + "fix": "gts fix" }, "author": "Vizzuality", "license": "ISC", "devDependencies": { - "@google-cloud/functions-framework": "3.1.1", - "@types/express": "^4.17.13", - "concurrently": "^7.2.2", - "nodemon": "^2.0.16", - "gts": "^3.1.0", - "typescript": "^4.0.3", - "@types/node": "^14.11.2", - "@types/validator": "^12.0.1" + "@google-cloud/functions-framework": "3.4.0", + "@types/express": "4.17.21", + "@types/node": "20.11.5", + "@types/node-fetch": "^2.6.11", + "@types/validator": "13.11.10", + "@typescript-eslint/eslint-plugin": "^7.12.0", + "concurrently": "8.2.2", + "gts": "^5.3.0", + "nodemon": "3.1.3", + "typescript": "5.4.3" }, "dependencies": { - "@google/earthengine": "0.1.324", - "class-transformer": "^0.5.1", - "class-validator": "^0.14.0", - "reflect-metadata": "^0.1.13" + "@google/earthengine": "0.1.406", + "class-transformer": "0.5.1", + "class-validator": "0.14.1", + "node-fetch": "2.7.0", + "reflect-metadata": "0.2.2" } } diff --git a/cloud_functions/earth_engine_tiler/src/earth-engine-utils.ts b/cloud_functions/earth_engine_tiler/src/earth-engine-utils.ts new file mode 100644 index 0000000..509a58a --- /dev/null +++ b/cloud_functions/earth_engine_tiler/src/earth-engine-utils.ts @@ -0,0 +1,38 @@ +//import ee from '@google/earthengine'; +import { readFileSync } from 'fs'; +import path from 'path'; + +function getCredentialsJSON(): string { + // By default returns the credentials found in env variable, if not present, assumes it's stored locally (meant for local development) + return process.env.EE_CREDENTIALS_JSON || + readFileSync(path.resolve(process.cwd(), './credentials.json'), 'utf8') +} + +export class EarthEngineUtils { + static authenticate(): Promise { + return new Promise((resolve, reject) => {resolve();}) + /* + return new Promise((resolve, reject) => { + // Authenticate to service account using short living access tokens + const PRIVATE_KEY = JSON.parse(getCredentialsJSON()); + + ee.data.authenticateViaPrivateKey(PRIVATE_KEY, + () => ee.initialize(null, null, resolve, reject), + (error: any) => console.error(error), + ); + }); + */ + } + + /* + static evaluate(eeStatement: ee.ComputedObject): Promise { + return new Promise((resolve, reject) => { + eeStatement.evaluate((success: any, failure: any) => { + if (failure) reject(new Error(failure)); + resolve(success); + }); + }); + } + + */ +} diff --git a/cloud_functions/earth_engine_tiler/src/geeAssets/EEDataset.d.ts b/cloud_functions/earth_engine_tiler/src/geeAssets/earth-engine-dataset.d.ts similarity index 84% rename from cloud_functions/earth_engine_tiler/src/geeAssets/EEDataset.d.ts rename to cloud_functions/earth_engine_tiler/src/geeAssets/earth-engine-dataset.d.ts index 22befa2..c6d05e2 100644 --- a/cloud_functions/earth_engine_tiler/src/geeAssets/EEDataset.d.ts +++ b/cloud_functions/earth_engine_tiler/src/geeAssets/earth-engine-dataset.d.ts @@ -1,6 +1,4 @@ -import ee from '@google/earthengine'; - -export interface IDataAsset { +export interface EarthEngineDataset { /** Path to earth engine asset */ readonly assetPath: { [key: string]: string }; /** Number of years */ @@ -16,5 +14,5 @@ export interface IDataAsset { /** Function that returns ee.Image instance with asset */ getEEAsset: (key?: string) => any; - getMapUrl: (z: number, x: number, y: number, year?: number) => BinaryData; + getMapUrl: (z: number, x: number, y: number, year?: number) => string; } diff --git a/cloud_functions/earth_engine_tiler/src/geeAssets/ModisNetPrimaryProduction.ts b/cloud_functions/earth_engine_tiler/src/geeAssets/modis-net-primary-production-dataset.ts similarity index 57% rename from cloud_functions/earth_engine_tiler/src/geeAssets/ModisNetPrimaryProduction.ts rename to cloud_functions/earth_engine_tiler/src/geeAssets/modis-net-primary-production-dataset.ts index 0920251..e662066 100644 --- a/cloud_functions/earth_engine_tiler/src/geeAssets/ModisNetPrimaryProduction.ts +++ b/cloud_functions/earth_engine_tiler/src/geeAssets/modis-net-primary-production-dataset.ts @@ -1,25 +1,31 @@ -import { IDataAsset } from './EEDataset'; -import ee from '@google/earthengine'; +import { EarthEngineDataset } from './earth-engine-dataset'; +//import ee from '@google/earthengine/src/ee'; -export const ModisNetPrimaryProduction: IDataAsset = { +export const ModisNetPrimaryProductionDataset: EarthEngineDataset = { assetPath: { default: "MODIS/061/MOD17A3HGF" }, numYears: 20, vizParams: { - bands:['Npp'], + bands: ['Npp'], min: 0.0, max: 20000.0, palette: ['bbe029', '0a9501', '074b03'], }, - getEEAsset(){ - return ee.ImageCollection(this.assetPath.default); - } + + getEEAsset() { + //return ee.ImageCollection(this.assetPath.default); + }, + getMapUrl(z, x, y, year) { +/* const image = ee.ImageCollection(this.assetPath.default).filter(ee.Filter.date(`${String(year)}-01-01`, `${String(year)}-12-31`)); - const url = ee.data.getTileUrl(image.getMapId(this.vizParams),x,y,z) + const url = ee.data.getTileUrl(image.getMapId(this.vizParams), x, y, z) return url; + + */ + return '' }, }; diff --git a/cloud_functions/earth_engine_tiler/src/index.ts b/cloud_functions/earth_engine_tiler/src/index.ts index 1c9721e..da32d5b 100644 --- a/cloud_functions/earth_engine_tiler/src/index.ts +++ b/cloud_functions/earth_engine_tiler/src/index.ts @@ -1,43 +1,20 @@ -import{ Request, Response} from 'express'; -import { - ArrayNotEmpty, - validateOrReject, - IsEnum, - IsInt -} from 'class-validator'; +import {Request, Response} from 'express'; +import {validateOrReject} from 'class-validator'; import 'reflect-metadata'; -import { plainToClass } from 'class-transformer'; - -import ee from '@google/earthengine' -import type { HttpFunction } from '@google-cloud/functions-framework/build/src/functions'; - -import { eeAuthenticate, eeEvaluate } from './utils'; - -import { ModisNetPrimaryProduction } from './geeAssets/ModisNetPrimaryProduction'; - -enum Tilesets { - // this is a placeholder for now - // modis_net_primary_production = "modis_net_primary_production" +import {plainToClass} from 'class-transformer'; +import type {HttpFunction} from '@google-cloud/functions-framework/build/src/functions'; +import {EarthEngineUtils} from './earth-engine-utils'; +import {ModisNetPrimaryProductionDataset} from './geeAssets/modis-net-primary-production-dataset'; +import {EarthEngineDataset} from "./geeAssets/earth-engine-dataset"; +import {TileRequestDTO, Tilesets} from "./tile-request.dto"; +import {default as fetch , Response as FetchResponse} from "node-fetch"; + +const assets: Record = { + [Tilesets.modis_net_primary_production]: ModisNetPrimaryProductionDataset, } - -class TileRequestParams { - // this is a placeholder for now - // tileset, z, x, y -} - -export const getTiles: HttpFunction = async (req, res) => { - +export const getTiles: HttpFunction = async (req: Request, res: Response) => { + // This block handles CORS res.set('Access-Control-Allow-Origin', '*'); - - const TEST_DICT = { - "modis_net_primary_production": ModisNetPrimaryProduction - } - const isValid = await validateInput(req, res); - - if (!isValid.status) { - return isValid.res; - } - if (req.method === 'OPTIONS') { // Send response to OPTIONS requests res.set('Access-Control-Allow-Methods', 'GET, OPTIONS'); @@ -46,40 +23,55 @@ export const getTiles: HttpFunction = async (req, res) => { return res.status(204).send(''); } + let tileRequestDTO: TileRequestDTO; + try { + tileRequestDTO = await getAndValidateRequestDTO(req); + } catch (errors) { + return {status: false, res: res.status(400).json({error: errors})} + } + + const { tileset, x, y, z, year } = tileRequestDTO; + console.log(`Requesting tile for ${tileset} with coordinates ${x}-${y}-${z} and year ${year || 'N/A'}`) + try { + await EarthEngineUtils.authenticate(); + + const asset = assets[tileset]; - await eeAuthenticate(); + const tileURL = 'https://sportshub.cbsistatic.com/i/2021/08/09/3664e245-13d4-48f3-8650-c4f7fd5e4087/dragon-ball-is-super-saiyan-a-godly-power-technique-explained-1269931.jpg' + //const tileURL = await EarthEngineUtils.evaluate(asset.getMapUrl(x, y, z, year)) + console.log(`Obtained tile URL on ${tileURL}`) - const tileset = req.query.tileset; - const asset = TEST_DICT[tileset]; - const {x, y, z} = req.query; + //TODO CACHING + // what takes the longest? getting the image url or the image itself? should we cache the url or the image? + // create new DB on SQL instance, can't use same strapi DB, redis on memorystore might be overkill + + //Get the tile image and stream it into the function response + const imageResponse: FetchResponse = await fetch(tileURL); + const contentType = imageResponse.headers.get('content-type'); + + if(!imageResponse.ok || !contentType || !imageResponse.body){ + throw new Error (`A problem ocurred retrieving the tile on ${tileURL}`) + } - const response = await eeEvaluate(asset.getMapUrl(asset.vizParams, x, y, z)) + res.status(200).contentType(contentType); + imageResponse.body.pipe(res); - // This is wrong as what we need to give back is the image in the url - res.status(200).json(response); + return {status: true, res} } catch (error) { console.error(error) - res.status(400).json({"error": error.message}); + return {status: false, res: res.status(500).json({"error": error.message})} } - - return res } -async function validateInput(req: Request, res: Response): Promise<{"status": Boolean, "res": Response}> { - try { - if (!req.body || !req.query) { - return {"status": false, - "res": res.status(400).json({"error":"No data provided"})}; - } +async function getAndValidateRequestDTO(req: Request): Promise { + if (!req.query) { + throw new Error("No data provided"); + } - await validateOrReject(plainToClass(TileRequestParams, req.query)); + const result = plainToClass(TileRequestDTO, req.query, {enableImplicitConversion: true}) + await validateOrReject(result); - return {"status": true, "res": res}; - } - catch (errors) { - return {"status": false, "res": res.status(400).json({"error": errors})}; - } + return result; } - diff --git a/cloud_functions/earth_engine_tiler/src/tile-request.dto.ts b/cloud_functions/earth_engine_tiler/src/tile-request.dto.ts new file mode 100644 index 0000000..dd656ab --- /dev/null +++ b/cloud_functions/earth_engine_tiler/src/tile-request.dto.ts @@ -0,0 +1,34 @@ +import {IsEnum, IsInt, IsNotEmpty, IsNumber, IsOptional} from "class-validator"; +import {Type} from "class-transformer"; + +export enum Tilesets { + // this is a placeholder for now + modis_net_primary_production = "modis_net_primary_production" +} + + +export class TileRequestDTO { + @IsEnum(Tilesets) + @IsNotEmpty() + tileset!: Tilesets + + @IsNumber() + @Type(()=>Number) + @IsNotEmpty() + x!: number; + + @IsNotEmpty() + @Type(()=>Number) + @IsNumber() + y!: number; + + @IsNotEmpty() + @Type(()=>Number) + @IsNumber() + z!: number; + + @IsOptional() + @Type(()=>Number) + @IsInt() + year?: number; +} diff --git a/cloud_functions/earth_engine_tiler/src/utils.ts b/cloud_functions/earth_engine_tiler/src/utils.ts deleted file mode 100644 index 2a3e436..0000000 --- a/cloud_functions/earth_engine_tiler/src/utils.ts +++ /dev/null @@ -1,23 +0,0 @@ -import ee from '@google/earthengine'; -import { readFileSync } from 'fs'; -import path from 'path'; - -export function eeAuthenticate(): Promise { - return new Promise((resolve, reject) => { - // Authenticate to service account using short living access tokens - const PRIVATE_KEY = JSON.parse(readFileSync(path.resolve(process.cwd(), './credentials.json'), 'utf8')); - ee.data.authenticateViaPrivateKey(PRIVATE_KEY, - () => ee.initialize(null, null, resolve, reject), - (error) => console.error(error), - ); - }); -} - -export function eeEvaluate(eeStatement: ee.ComputedObject): Promise { - return new Promise((resolve, reject) => { - eeStatement.evaluate((success: any, failure: any) => { - if (failure) reject(new Error(failure)); - resolve(success); - }); - }); -} diff --git a/cloud_functions/earth_engine_tiler/tsconfig.json b/cloud_functions/earth_engine_tiler/tsconfig.json index e86cff4..8dc9c7c 100644 --- a/cloud_functions/earth_engine_tiler/tsconfig.json +++ b/cloud_functions/earth_engine_tiler/tsconfig.json @@ -12,8 +12,8 @@ "noImplicitReturns": true, "pretty": true, "sourceMap": true, - "strict": false, - "target": "es2018", + "strict": true, + "target": "ES2020", "moduleResolution": "node", "allowJs": true, "esModuleInterop": true, @@ -22,8 +22,8 @@ "rootDir": ".", "outDir": "build", "experimentalDecorators": true, + "useUnknownInCatchVariables": false }, - "include": [ "src/**/*.ts", "test/**/*.ts" @@ -31,7 +31,7 @@ "exclude": [ "node_modules", "test/fixtures/**/*.*", - "template/**/*.*", + "template/**/*.*" ], "types": [ "node" diff --git a/infrastructure/base/modules/cloudfunction/main.tf b/infrastructure/base/modules/cloudfunction/main.tf index a32936f..86db8bb 100644 --- a/infrastructure/base/modules/cloudfunction/main.tf +++ b/infrastructure/base/modules/cloudfunction/main.tf @@ -33,6 +33,7 @@ resource "random_id" "default" { data "archive_file" "default" { type = "zip" output_path = "/tmp/function-${var.function_name}-${random_id.default.hex}.zip" + excludes = ["node_modules", "ee_credentials.json"] source_dir = var.source_dir } diff --git a/infrastructure/base/modules/env/main.tf b/infrastructure/base/modules/env/main.tf index 22f8d42..e410ec4 100644 --- a/infrastructure/base/modules/env/main.tf +++ b/infrastructure/base/modules/env/main.tf @@ -35,6 +35,15 @@ module "postgres_application_user_password" { use_random_value = true } +//This credentials json file is not commited to the VCS and must be +// placed locally in the correct path when deploying infrastructure changes +module "earth_engine_credentials" { + source = "../secret_value" + region = var.gcp_region + key = "${var.project_name}_earth_engine_credentials_json" + value = file("${path.root}/../../cloud_functions/earth_engine_tiler/ee_credentials.json") +} + module "frontend_cloudrun" { source = "../cloudrun" name = "${var.project_name}-fe" @@ -71,7 +80,7 @@ module "eet_cloud_function" { function_name = "${var.project_name}-eet" description = "Earth Engine Tiler Cloud Function" source_dir = "${path.root}/../../cloud_functions/earth_engine_tiler" - runtime = "nodejs18" + runtime = "nodejs20" entry_point = "getTiles" runtime_environment_variables = local.eet_cloud_function_env secrets = local.eet_cloud_function_secrets @@ -86,19 +95,13 @@ module "eet_cloud_function" { locals { - eet_cloud_function_env = { - DATABASE_CLIENT = "postgres" - DATABASE_HOST = module.database.database_host - DATABASE_NAME = module.database.database_name - DATABASE_USERNAME = module.database.database_user - DATABASE_SSL = false - } + eet_cloud_function_env = {} eet_cloud_function_secrets = [{ - key = "DATABASE_PASSWORD" + key = "EE_CREDENTIALS_JSON" project_id = var.gcp_project_id - secret = module.postgres_application_user_password.secret_name - version = module.postgres_application_user_password.latest_version + secret = module.earth_engine_credentials.secret_name + version = module.earth_engine_credentials.latest_version }] } From 2e7b78d6f508927dd36a3d9b4af2f95b336a6f7d Mon Sep 17 00:00:00 2001 From: Alicia Date: Tue, 11 Jun 2024 17:06:03 +0200 Subject: [PATCH 04/19] make the tiler work --- cloud_functions/earth_engine_tiler/package-lock.json | 8 ++++---- cloud_functions/earth_engine_tiler/package.json | 4 ++-- .../earth_engine_tiler/src/earth-engine-utils.ts | 9 ++------- .../src/geeAssets/earth-engine-dataset.d.ts | 2 +- .../modis-net-primary-production-dataset.ts | 12 ++++-------- cloud_functions/earth_engine_tiler/src/index.ts | 8 ++++---- cloud_functions/earth_engine_tiler/tsconfig.json | 2 +- 7 files changed, 18 insertions(+), 27 deletions(-) diff --git a/cloud_functions/earth_engine_tiler/package-lock.json b/cloud_functions/earth_engine_tiler/package-lock.json index 78c3518..73dadbc 100644 --- a/cloud_functions/earth_engine_tiler/package-lock.json +++ b/cloud_functions/earth_engine_tiler/package-lock.json @@ -9,7 +9,7 @@ "version": "1.0.0", "license": "ISC", "dependencies": { - "@google/earthengine": "0.1.406", + "@google/earthengine": "0.1.405", "class-transformer": "0.5.1", "class-validator": "0.14.1", "node-fetch": "2.7.0", @@ -284,9 +284,9 @@ } }, "node_modules/@google/earthengine": { - "version": "0.1.406", - "resolved": "https://registry.npmjs.org/@google/earthengine/-/earthengine-0.1.406.tgz", - "integrity": "sha512-ITl9Gx6z/zoajrTwwyqJBWvI1croGrAPzFeN/auaSQ1nc4soVb8oStboqDkqd148BuOKjjmoxUT8S3j4PpgjOQ==", + "version": "0.1.405", + "resolved": "https://registry.npmjs.org/@google/earthengine/-/earthengine-0.1.405.tgz", + "integrity": "sha512-RCk0ek8TpCUe4z8OvtFaxjGtXX9Li8tMS+4+WftN9kdquGE6WfkS460vJYzuwdjFf5VdflPZ/Zre/p1xN7KpDw==", "dependencies": { "googleapis": "^92.0.0", "xmlhttprequest": "^1.8.0" diff --git a/cloud_functions/earth_engine_tiler/package.json b/cloud_functions/earth_engine_tiler/package.json index 38996f4..3b1ad3c 100644 --- a/cloud_functions/earth_engine_tiler/package.json +++ b/cloud_functions/earth_engine_tiler/package.json @@ -27,10 +27,10 @@ "typescript": "5.4.3" }, "dependencies": { - "@google/earthengine": "0.1.406", + "@google/earthengine": "0.1.405", "class-transformer": "0.5.1", "class-validator": "0.14.1", "node-fetch": "2.7.0", "reflect-metadata": "0.2.2" } -} +} \ No newline at end of file diff --git a/cloud_functions/earth_engine_tiler/src/earth-engine-utils.ts b/cloud_functions/earth_engine_tiler/src/earth-engine-utils.ts index 509a58a..ec73239 100644 --- a/cloud_functions/earth_engine_tiler/src/earth-engine-utils.ts +++ b/cloud_functions/earth_engine_tiler/src/earth-engine-utils.ts @@ -1,4 +1,4 @@ -//import ee from '@google/earthengine'; +import ee from '@google/earthengine'; import { readFileSync } from 'fs'; import path from 'path'; @@ -10,8 +10,7 @@ function getCredentialsJSON(): string { export class EarthEngineUtils { static authenticate(): Promise { - return new Promise((resolve, reject) => {resolve();}) - /* + // return new Promise((resolve, reject) => {resolve();}) return new Promise((resolve, reject) => { // Authenticate to service account using short living access tokens const PRIVATE_KEY = JSON.parse(getCredentialsJSON()); @@ -21,10 +20,8 @@ export class EarthEngineUtils { (error: any) => console.error(error), ); }); - */ } - /* static evaluate(eeStatement: ee.ComputedObject): Promise { return new Promise((resolve, reject) => { eeStatement.evaluate((success: any, failure: any) => { @@ -33,6 +30,4 @@ export class EarthEngineUtils { }); }); } - - */ } diff --git a/cloud_functions/earth_engine_tiler/src/geeAssets/earth-engine-dataset.d.ts b/cloud_functions/earth_engine_tiler/src/geeAssets/earth-engine-dataset.d.ts index c6d05e2..822886f 100644 --- a/cloud_functions/earth_engine_tiler/src/geeAssets/earth-engine-dataset.d.ts +++ b/cloud_functions/earth_engine_tiler/src/geeAssets/earth-engine-dataset.d.ts @@ -14,5 +14,5 @@ export interface EarthEngineDataset { /** Function that returns ee.Image instance with asset */ getEEAsset: (key?: string) => any; - getMapUrl: (z: number, x: number, y: number, year?: number) => string; + getMapUrl: (z: number, x: number, y: number, year?: number) => any; } diff --git a/cloud_functions/earth_engine_tiler/src/geeAssets/modis-net-primary-production-dataset.ts b/cloud_functions/earth_engine_tiler/src/geeAssets/modis-net-primary-production-dataset.ts index e662066..e4fb77a 100644 --- a/cloud_functions/earth_engine_tiler/src/geeAssets/modis-net-primary-production-dataset.ts +++ b/cloud_functions/earth_engine_tiler/src/geeAssets/modis-net-primary-production-dataset.ts @@ -1,5 +1,5 @@ import { EarthEngineDataset } from './earth-engine-dataset'; -//import ee from '@google/earthengine/src/ee'; +import ee from '@google/earthengine'; export const ModisNetPrimaryProductionDataset: EarthEngineDataset = { @@ -15,17 +15,13 @@ export const ModisNetPrimaryProductionDataset: EarthEngineDataset = { }, getEEAsset() { - //return ee.ImageCollection(this.assetPath.default); + return ee.ImageCollection(this.assetPath.default); }, getMapUrl(z, x, y, year) { -/* - const image = ee.ImageCollection(this.assetPath.default).filter(ee.Filter.date(`${String(year)}-01-01`, `${String(year)}-12-31`)); - const url = ee.data.getTileUrl(image.getMapId(this.vizParams), x, y, z) - return url; + const image = this.getEEAsset().filter(ee.Filter.date(`${String(year)}-01-01`, `${String(year)}-12-31`)); - */ - return '' + return ee.data.getTileUrl(image.getMapId(this.vizParams), x, y, z); }, }; diff --git a/cloud_functions/earth_engine_tiler/src/index.ts b/cloud_functions/earth_engine_tiler/src/index.ts index da32d5b..b0ea4a6 100644 --- a/cloud_functions/earth_engine_tiler/src/index.ts +++ b/cloud_functions/earth_engine_tiler/src/index.ts @@ -37,10 +37,10 @@ export const getTiles: HttpFunction = async (req: Request, res: Response) => { await EarthEngineUtils.authenticate(); const asset = assets[tileset]; - - const tileURL = 'https://sportshub.cbsistatic.com/i/2021/08/09/3664e245-13d4-48f3-8650-c4f7fd5e4087/dragon-ball-is-super-saiyan-a-godly-power-technique-explained-1269931.jpg' - //const tileURL = await EarthEngineUtils.evaluate(asset.getMapUrl(x, y, z, year)) - console.log(`Obtained tile URL on ${tileURL}`) + if (!asset) { + throw new Error(`Tileset ${tileset} not found`) + } + const tileURL = await asset.getMapUrl(z, x, y, year); //TODO CACHING // what takes the longest? getting the image url or the image itself? should we cache the url or the image? diff --git a/cloud_functions/earth_engine_tiler/tsconfig.json b/cloud_functions/earth_engine_tiler/tsconfig.json index 8dc9c7c..76bc782 100644 --- a/cloud_functions/earth_engine_tiler/tsconfig.json +++ b/cloud_functions/earth_engine_tiler/tsconfig.json @@ -12,7 +12,7 @@ "noImplicitReturns": true, "pretty": true, "sourceMap": true, - "strict": true, + "strict": false, "target": "ES2020", "moduleResolution": "node", "allowJs": true, From 0921261dbae78f758a657136a1bcde8c7839a2f4 Mon Sep 17 00:00:00 2001 From: Kevin Date: Tue, 11 Jun 2024 18:43:36 +0200 Subject: [PATCH 05/19] feat(EE_Cloud_Function): Refactor tweaks plus extra validation for the request year --- .../src/earth-engine-utils.ts | 3 +- .../src/geeAssets/earth-engine-dataset.d.ts | 6 +++- .../modis-net-primary-production-dataset.ts | 15 ++++++---- .../earth_engine_tiler/src/index.ts | 28 +++++++++++++------ 4 files changed, 36 insertions(+), 16 deletions(-) diff --git a/cloud_functions/earth_engine_tiler/src/earth-engine-utils.ts b/cloud_functions/earth_engine_tiler/src/earth-engine-utils.ts index ec73239..b135f81 100644 --- a/cloud_functions/earth_engine_tiler/src/earth-engine-utils.ts +++ b/cloud_functions/earth_engine_tiler/src/earth-engine-utils.ts @@ -5,12 +5,11 @@ import path from 'path'; function getCredentialsJSON(): string { // By default returns the credentials found in env variable, if not present, assumes it's stored locally (meant for local development) return process.env.EE_CREDENTIALS_JSON || - readFileSync(path.resolve(process.cwd(), './credentials.json'), 'utf8') + readFileSync(path.resolve(process.cwd(), './ee_credentials.json'), 'utf8') } export class EarthEngineUtils { static authenticate(): Promise { - // return new Promise((resolve, reject) => {resolve();}) return new Promise((resolve, reject) => { // Authenticate to service account using short living access tokens const PRIVATE_KEY = JSON.parse(getCredentialsJSON()); diff --git a/cloud_functions/earth_engine_tiler/src/geeAssets/earth-engine-dataset.d.ts b/cloud_functions/earth_engine_tiler/src/geeAssets/earth-engine-dataset.d.ts index 822886f..ccdd6b3 100644 --- a/cloud_functions/earth_engine_tiler/src/geeAssets/earth-engine-dataset.d.ts +++ b/cloud_functions/earth_engine_tiler/src/geeAssets/earth-engine-dataset.d.ts @@ -12,7 +12,11 @@ export interface EarthEngineDataset { palette: string[] }; - /** Function that returns ee.Image instance with asset */ + // Performs validation of the year, intended for use with Assets that require a year + // If not valid, an error should be thrown + isYearValid: (year?: number) => boolean; + + // Function that returns ee.Image instance with asset getEEAsset: (key?: string) => any; getMapUrl: (z: number, x: number, y: number, year?: number) => any; } diff --git a/cloud_functions/earth_engine_tiler/src/geeAssets/modis-net-primary-production-dataset.ts b/cloud_functions/earth_engine_tiler/src/geeAssets/modis-net-primary-production-dataset.ts index e4fb77a..bac4aad 100644 --- a/cloud_functions/earth_engine_tiler/src/geeAssets/modis-net-primary-production-dataset.ts +++ b/cloud_functions/earth_engine_tiler/src/geeAssets/modis-net-primary-production-dataset.ts @@ -1,7 +1,6 @@ import { EarthEngineDataset } from './earth-engine-dataset'; import ee from '@google/earthengine'; - export const ModisNetPrimaryProductionDataset: EarthEngineDataset = { assetPath: { default: "MODIS/061/MOD17A3HGF" @@ -14,14 +13,20 @@ export const ModisNetPrimaryProductionDataset: EarthEngineDataset = { palette: ['bbe029', '0a9501', '074b03'], }, + isYearValid (year?: number) : boolean { + if(!year){ + throw new Error(`Year ${year} is not valid`) + } + return true; + }, + getEEAsset() { return ee.ImageCollection(this.assetPath.default); }, getMapUrl(z, x, y, year) { - - const image = this.getEEAsset().filter(ee.Filter.date(`${String(year)}-01-01`, `${String(year)}-12-31`)); - - return ee.data.getTileUrl(image.getMapId(this.vizParams), x, y, z); + const image = this.getEEAsset() + .filter( ee.Filter.date( `${String(year)}-01-01`, `${String(year)}-12-31` ) ); + return ee.data.getTileUrl( image.getMapId(this.vizParams), x, y, z ); }, }; diff --git a/cloud_functions/earth_engine_tiler/src/index.ts b/cloud_functions/earth_engine_tiler/src/index.ts index b0ea4a6..f51f342 100644 --- a/cloud_functions/earth_engine_tiler/src/index.ts +++ b/cloud_functions/earth_engine_tiler/src/index.ts @@ -24,10 +24,20 @@ export const getTiles: HttpFunction = async (req: Request, res: Response) => { } let tileRequestDTO: TileRequestDTO; + let asset: EarthEngineDataset; + + //Validation Block try { tileRequestDTO = await getAndValidateRequestDTO(req); + + asset = assets[tileRequestDTO.tileset]; + if (!asset) { + throw new Error(`Tileset ${tileRequestDTO.tileset} not found`); + } + + asset.isYearValid(tileRequestDTO.year); } catch (errors) { - return {status: false, res: res.status(400).json({error: errors})} + return generateErrorResponse(res, 400, errors) } const { tileset, x, y, z, year } = tileRequestDTO; @@ -36,15 +46,13 @@ export const getTiles: HttpFunction = async (req: Request, res: Response) => { try { await EarthEngineUtils.authenticate(); - const asset = assets[tileset]; - if (!asset) { - throw new Error(`Tileset ${tileset} not found`) - } const tileURL = await asset.getMapUrl(z, x, y, year); + console.log(`Obtained tile URL on ${tileURL}`) //TODO CACHING - // what takes the longest? getting the image url or the image itself? should we cache the url or the image? - // create new DB on SQL instance, can't use same strapi DB, redis on memorystore might be overkill + // The calculations when requesting the tile URL take the longest, images are not probably going to be very big (not even MBs) + // create new schema on Strapi DB instance, can't use same schema without workarounds, redis on memorystore might be overkill + // Not critical for MVP phase //Get the tile image and stream it into the function response const imageResponse: FetchResponse = await fetch(tileURL); @@ -61,7 +69,7 @@ export const getTiles: HttpFunction = async (req: Request, res: Response) => { } catch (error) { console.error(error) - return {status: false, res: res.status(500).json({"error": error.message})} + return generateErrorResponse(res, 500, error) } } @@ -75,3 +83,7 @@ async function getAndValidateRequestDTO(req: Request): Promise { return result; } + +function generateErrorResponse(res: Response, status: number, error: Error | Error[]){ + return {status: false, res: res.status(500).json({"error": error})} +} From 3267859585452d327eeae7a598768f37bc171ac2 Mon Sep 17 00:00:00 2001 From: Kevin Date: Thu, 13 Jun 2024 11:03:38 +0200 Subject: [PATCH 06/19] feat(EE_Cloud_Function): Further tweaks (path parameters) and documentation --- README.md | 13 +- cloud_functions/README.md | 50 +++--- .../earth_engine_tiler/package-lock.json | 143 ++++-------------- .../earth_engine_tiler/package.json | 5 +- .../modis-net-primary-production-dataset.ts | 2 +- .../earth_engine_tiler/src/index.ts | 66 +++++--- .../src/tile-request.dto.ts | 1 - infrastructure/README.md | 8 +- infrastructure/base/modules/env/main.tf | 2 +- 9 files changed, 119 insertions(+), 171 deletions(-) diff --git a/README.md b/README.md index 7a5e4ca..8141c08 100644 --- a/README.md +++ b/README.md @@ -8,21 +8,22 @@ This README is an early WIP, and will be edited as needed, as the project moves - *Strapi Headless CMS*: The back-end application is implemented using Strapi, which provides a flexible content management system and exposes APIs for dynamic data retrieval. -- *TiTiler*: A Python FastAPI application for dynamic tiling, used for serving Raster tile data +- *Cloud Functions*: A small GCP Cloud Function to server as a mini tiler server/interface to use request data from GMV's Earth Engine account External services: -- *Mapbox*: used for serving layers for the map +- *Mapbox* and *Google Earth Engine*: used for serving layers for the map - *Transifex*: a globalization management system, used to localize the application into several languages. This repository contains all the code and documentation necessary to set up and deploy the project. It is organized into the following subdirectories: -| Subdirectory name | Description | Documentation | -|-------------------|-------------------------------------------------------------|---------------------------------------------------------| -| frontend | The Next.js client application | [frontend/README.md](frontend/README.md) | -| cms | The Strapi CMS / API | [cms/README.md](cms/README.md) | +| Subdirectory name | Description | Documentation | +|-------------------|--------------------------------------------------------------------------------------------------|------------------------------------------------------| +| frontend | The Next.js client application | [frontend/README.md](frontend/README.md) | +| cms | The Strapi CMS / API | [cms/README.md](cms/README.md) | +| cloud_functions | Cloud Functions (Earth Engine Tiler) | [cloud_functions/README.md](cms/README.md) | | infrastructure | The Terraform project & GH Actions workflow (provisioning & deployment to Google Cloud Platform) | [infrastructure/README.md](infrastructure/README.md) | ### Deployment and Infrastructure diff --git a/cloud_functions/README.md b/cloud_functions/README.md index 04a2b0b..9bd78ba 100644 --- a/cloud_functions/README.md +++ b/cloud_functions/README.md @@ -1,54 +1,48 @@ -# Global rangelands cloud functions - -Alerts and analysis accessing for the mangrove atlas project - -## Cloud functions +# Global Rangelands Cloud Functions [Documentation of the library](https://www.npmjs.com/package/@google-cloud/functions-framework) to simulate a cloud function in your local machine. In order to deploy the cloud function you need to create a service account and a bucket in Google Cloud Storage. -Also automatic deployment of the cloud function is available at push in develop/master +Also automatic deployment of the cloud function is available at push in staging/production -### earth engine tiler +## Earth Engine Tiler (EET) +For local development: 1. Go to the folder `earth_engine_tiler` -2. Download `credentials.json` and save to the root of the project (you will require access to google earth engine). +2. Download the EE Service Account credentials json, with the name `ee_credentials.json` and save it to the root of the cloud function folder (you will require access to google earth engine). 3. For development run `npm install && npm run watch`. 4. Open the browser and go to `http://localhost:8080/` -By default the endpoint returns all data for all locations and aggregated by month. +The function grabs the EE credentials from the `EE_CREDENTIALS_JSON` environment variable, which in GCP Cloud Functions will get injected from the corresponding secret that must been created by the corresponding previous Terraform installation; if not present it will grab the credentials from the local `ee_credentials.json` file. + +The path follows the subsequent format: + +`GET /:z/:x/:y/?tileset=&year=` + Params: -* `location_id`, location ID from Mangrove API. Optional. -* `start_date`, start date in format `YYYY-MM-DD`. Optional. -* `end_date`, end date in format `YYYY-MM-DD`. Optional. -* geometry, geojson of the area to filter. Optional, should be located in the body. +* `x`, `y` `z`, are the coordinates for the tile. +* `tileset`is a string indicating the asset from where to get the tile, defined on `tile-request-dto.ts`. +* `year`, year of the asset to inspect. Can be optional or not, depending on the asset being referenced on `tileset`. Example request: ``` bash curl -X GET -G \ -'http://localhost:8080?location_id=MOZ&start_date=2019-01-01&end_date=2022-01-01' +'http://localhost:8080/1/2/3/?tileset=modis_net_primary_production&year=2020' ``` -Example response: - -``` json -[ - { - "date": { - "value": "2020-01-01" - }, - "count": 492 - } -] -``` +Response: + +Binary Image data representing the tile requested + + -#### Deploying the function +### Deploying the function ```bash -gcloud functions deploy fetch-alerts --runtime nodejs10 --trigger-http --memory 128MB --timeout 540s --region us-central1 --entry-point fetchAlerts --service-account-file ./credentials.json --source ./cloud-functions/fetch-alerts +gcloud functions deploy rdp--eet --region=us-central1 --source ./cloud-functions/fetch-alerts ``` ``` bash diff --git a/cloud_functions/earth_engine_tiler/package-lock.json b/cloud_functions/earth_engine_tiler/package-lock.json index 73dadbc..87c8da3 100644 --- a/cloud_functions/earth_engine_tiler/package-lock.json +++ b/cloud_functions/earth_engine_tiler/package-lock.json @@ -12,6 +12,7 @@ "@google/earthengine": "0.1.405", "class-transformer": "0.5.1", "class-validator": "0.14.1", + "express": "4.19.2", "node-fetch": "2.7.0", "reflect-metadata": "0.2.2" }, @@ -851,7 +852,6 @@ "version": "1.3.8", "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", - "dev": true, "dependencies": { "mime-types": "~2.1.34", "negotiator": "0.6.3" @@ -1019,8 +1019,7 @@ "node_modules/array-flatten": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", - "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", - "dev": true + "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" }, "node_modules/array-union": { "version": "2.1.0", @@ -1103,21 +1102,20 @@ } }, "node_modules/body-parser": { - "version": "1.20.0", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.0.tgz", - "integrity": "sha512-DfJ+q6EPcGKZD1QWUjSpqp+Q7bDQTsQIF4zfUAtZ6qk+H/3/QRhg9CEp39ss+/T2vw0+HaidC0ecJj/DRLIaKg==", - "dev": true, + "version": "1.20.2", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.2.tgz", + "integrity": "sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==", "dependencies": { "bytes": "3.1.2", - "content-type": "~1.0.4", + "content-type": "~1.0.5", "debug": "2.6.9", "depd": "2.0.0", "destroy": "1.2.0", "http-errors": "2.0.0", "iconv-lite": "0.4.24", "on-finished": "2.4.1", - "qs": "6.10.3", - "raw-body": "2.5.1", + "qs": "6.11.0", + "raw-body": "2.5.2", "type-is": "~1.6.18", "unpipe": "1.0.0" }, @@ -1126,21 +1124,6 @@ "npm": "1.2.8000 || >= 1.4.16" } }, - "node_modules/body-parser/node_modules/qs": { - "version": "6.10.3", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.10.3.tgz", - "integrity": "sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ==", - "dev": true, - "dependencies": { - "side-channel": "^1.0.4" - }, - "engines": { - "node": ">=0.6" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, "node_modules/brace-expansion": { "version": "1.1.11", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", @@ -1172,7 +1155,6 @@ "version": "3.1.2", "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", - "dev": true, "engines": { "node": ">= 0.8" } @@ -1425,7 +1407,6 @@ "version": "0.5.4", "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", - "dev": true, "dependencies": { "safe-buffer": "5.2.1" }, @@ -1434,19 +1415,17 @@ } }, "node_modules/content-type": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", - "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==", - "dev": true, + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", "engines": { "node": ">= 0.6" } }, "node_modules/cookie": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", - "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", - "dev": true, + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.6.0.tgz", + "integrity": "sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==", "engines": { "node": ">= 0.6" } @@ -1454,8 +1433,7 @@ "node_modules/cookie-signature": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", - "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", - "dev": true + "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" }, "node_modules/cross-spawn": { "version": "7.0.3", @@ -1491,7 +1469,6 @@ "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, "dependencies": { "ms": "2.0.0" } @@ -1562,7 +1539,6 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", - "dev": true, "engines": { "node": ">= 0.8" } @@ -1571,7 +1547,6 @@ "version": "1.2.0", "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", - "dev": true, "engines": { "node": ">= 0.8", "npm": "1.2.8000 || >= 1.4.16" @@ -1612,8 +1587,7 @@ "node_modules/ee-first": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", - "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", - "dev": true + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" }, "node_modules/emoji-regex": { "version": "8.0.0", @@ -1625,7 +1599,6 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", - "dev": true, "engines": { "node": ">= 0.8" } @@ -1670,8 +1643,7 @@ "node_modules/escape-html": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", - "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", - "dev": true + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" }, "node_modules/escape-string-regexp": { "version": "4.0.0", @@ -2097,7 +2069,6 @@ "version": "1.8.1", "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", - "dev": true, "engines": { "node": ">= 0.6" } @@ -2146,17 +2117,16 @@ } }, "node_modules/express": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/express/-/express-4.18.1.tgz", - "integrity": "sha512-zZBcOX9TfehHQhtupq57OF8lFZ3UZi08Y97dwFCkD8p9d/d2Y3M+ykKcwaMDEL+4qyUolgBDX6AblpR3fL212Q==", - "dev": true, + "version": "4.19.2", + "resolved": "https://registry.npmjs.org/express/-/express-4.19.2.tgz", + "integrity": "sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==", "dependencies": { "accepts": "~1.3.8", "array-flatten": "1.1.1", - "body-parser": "1.20.0", + "body-parser": "1.20.2", "content-disposition": "0.5.4", "content-type": "~1.0.4", - "cookie": "0.5.0", + "cookie": "0.6.0", "cookie-signature": "1.0.6", "debug": "2.6.9", "depd": "2.0.0", @@ -2172,7 +2142,7 @@ "parseurl": "~1.3.3", "path-to-regexp": "0.1.7", "proxy-addr": "~2.0.7", - "qs": "6.10.3", + "qs": "6.11.0", "range-parser": "~1.2.1", "safe-buffer": "5.2.1", "send": "0.18.0", @@ -2187,21 +2157,6 @@ "node": ">= 0.10.0" } }, - "node_modules/express/node_modules/qs": { - "version": "6.10.3", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.10.3.tgz", - "integrity": "sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ==", - "dev": true, - "dependencies": { - "side-channel": "^1.0.4" - }, - "engines": { - "node": ">=0.6" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, "node_modules/extend": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", @@ -2327,7 +2282,6 @@ "version": "1.2.0", "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", - "dev": true, "dependencies": { "debug": "2.6.9", "encodeurl": "~1.0.2", @@ -2400,7 +2354,6 @@ "version": "0.2.0", "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", - "dev": true, "engines": { "node": ">= 0.6" } @@ -2409,7 +2362,6 @@ "version": "0.5.2", "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", - "dev": true, "engines": { "node": ">= 0.6" } @@ -3211,7 +3163,6 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", - "dev": true, "dependencies": { "depd": "2.0.0", "inherits": "2.0.4", @@ -3269,7 +3220,6 @@ "version": "0.4.24", "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", - "dev": true, "dependencies": { "safer-buffer": ">= 2.1.2 < 3" }, @@ -3340,8 +3290,7 @@ "node_modules/inherits": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", - "dev": true + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" }, "node_modules/inquirer": { "version": "7.3.3", @@ -3389,7 +3338,6 @@ "version": "1.9.1", "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", - "dev": true, "engines": { "node": ">= 0.10" } @@ -3715,7 +3663,6 @@ "version": "0.3.0", "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", - "dev": true, "engines": { "node": ">= 0.6" } @@ -3770,8 +3717,7 @@ "node_modules/merge-descriptors": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", - "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==", - "dev": true + "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==" }, "node_modules/merge-stream": { "version": "2.0.0", @@ -3792,7 +3738,6 @@ "version": "1.1.2", "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", - "dev": true, "engines": { "node": ">= 0.6" } @@ -3814,7 +3759,6 @@ "version": "1.6.0", "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", - "dev": true, "bin": { "mime": "cli.js" }, @@ -3826,7 +3770,6 @@ "version": "1.52.0", "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", - "dev": true, "engines": { "node": ">= 0.6" } @@ -3835,7 +3778,6 @@ "version": "2.1.35", "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", - "dev": true, "dependencies": { "mime-db": "1.52.0" }, @@ -3908,8 +3850,7 @@ "node_modules/ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" }, "node_modules/mute-stream": { "version": "0.0.8", @@ -3942,7 +3883,6 @@ "version": "0.6.3", "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", - "dev": true, "engines": { "node": ">= 0.6" } @@ -4136,7 +4076,6 @@ "version": "2.4.1", "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", - "dev": true, "dependencies": { "ee-first": "1.1.1" }, @@ -4264,7 +4203,6 @@ "version": "1.3.3", "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", - "dev": true, "engines": { "node": ">= 0.8" } @@ -4305,8 +4243,7 @@ "node_modules/path-to-regexp": { "version": "0.1.7", "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", - "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==", - "dev": true + "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==" }, "node_modules/path-type": { "version": "4.0.0", @@ -4388,7 +4325,6 @@ "version": "2.0.7", "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", - "dev": true, "dependencies": { "forwarded": "0.2.0", "ipaddr.js": "1.9.1" @@ -4459,16 +4395,14 @@ "version": "1.2.1", "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", - "dev": true, "engines": { "node": ">= 0.6" } }, "node_modules/raw-body": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", - "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", - "dev": true, + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz", + "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==", "dependencies": { "bytes": "3.1.2", "http-errors": "2.0.0", @@ -4741,8 +4675,7 @@ "node_modules/safer-buffer": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", - "dev": true + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" }, "node_modules/semver": { "version": "5.7.1", @@ -4757,7 +4690,6 @@ "version": "0.18.0", "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", - "dev": true, "dependencies": { "debug": "2.6.9", "depd": "2.0.0", @@ -4780,14 +4712,12 @@ "node_modules/send/node_modules/ms": { "version": "2.1.3", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "dev": true + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" }, "node_modules/serve-static": { "version": "1.15.0", "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", - "dev": true, "dependencies": { "encodeurl": "~1.0.2", "escape-html": "~1.0.3", @@ -4817,8 +4747,7 @@ "node_modules/setprototypeof": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", - "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", - "dev": true + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" }, "node_modules/shebang-command": { "version": "2.0.0", @@ -4944,7 +4873,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", - "dev": true, "engines": { "node": ">= 0.8" } @@ -5091,7 +5019,6 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", - "dev": true, "engines": { "node": ">=0.6" } @@ -5198,7 +5125,6 @@ "version": "1.6.18", "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", - "dev": true, "dependencies": { "media-typer": "0.3.0", "mime-types": "~2.1.24" @@ -5236,7 +5162,6 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", - "dev": true, "engines": { "node": ">= 0.8" } @@ -5272,7 +5197,6 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", - "dev": true, "engines": { "node": ">= 0.4.0" } @@ -5307,7 +5231,6 @@ "version": "1.1.2", "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", - "dev": true, "engines": { "node": ">= 0.8" } diff --git a/cloud_functions/earth_engine_tiler/package.json b/cloud_functions/earth_engine_tiler/package.json index 3b1ad3c..53335f0 100644 --- a/cloud_functions/earth_engine_tiler/package.json +++ b/cloud_functions/earth_engine_tiler/package.json @@ -4,7 +4,7 @@ "description": "", "main": "build/src/index.js", "scripts": { - "start": "functions-framework -source=build/src/ --target=getTiles", + "start": "functions-framework -source=build/src/ --target=eetApp", "watch": "concurrently \"tsc -w\" \"nodemon --watch ./build/ --exec npm run start\"", "lint": "gts lint", "clean": "gts clean", @@ -31,6 +31,7 @@ "class-transformer": "0.5.1", "class-validator": "0.14.1", "node-fetch": "2.7.0", + "express": "4.19.2", "reflect-metadata": "0.2.2" } -} \ No newline at end of file +} diff --git a/cloud_functions/earth_engine_tiler/src/geeAssets/modis-net-primary-production-dataset.ts b/cloud_functions/earth_engine_tiler/src/geeAssets/modis-net-primary-production-dataset.ts index bac4aad..0cad553 100644 --- a/cloud_functions/earth_engine_tiler/src/geeAssets/modis-net-primary-production-dataset.ts +++ b/cloud_functions/earth_engine_tiler/src/geeAssets/modis-net-primary-production-dataset.ts @@ -15,7 +15,7 @@ export const ModisNetPrimaryProductionDataset: EarthEngineDataset = { isYearValid (year?: number) : boolean { if(!year){ - throw new Error(`Year ${year} is not valid`) + throw new Error(`Year '${year}' is not valid`) } return true; }, diff --git a/cloud_functions/earth_engine_tiler/src/index.ts b/cloud_functions/earth_engine_tiler/src/index.ts index f51f342..bae05de 100644 --- a/cloud_functions/earth_engine_tiler/src/index.ts +++ b/cloud_functions/earth_engine_tiler/src/index.ts @@ -1,28 +1,39 @@ -import {Request, Response} from 'express'; -import {validateOrReject} from 'class-validator'; +import express, {Request, Response, Router} from 'express'; +import {validateOrReject, ValidationError} from 'class-validator'; import 'reflect-metadata'; import {plainToClass} from 'class-transformer'; -import type {HttpFunction} from '@google-cloud/functions-framework/build/src/functions'; import {EarthEngineUtils} from './earth-engine-utils'; import {ModisNetPrimaryProductionDataset} from './geeAssets/modis-net-primary-production-dataset'; import {EarthEngineDataset} from "./geeAssets/earth-engine-dataset"; import {TileRequestDTO, Tilesets} from "./tile-request.dto"; import {default as fetch , Response as FetchResponse} from "node-fetch"; +import {pipeline} from "stream/promises"; +//Asset Mapping const assets: Record = { [Tilesets.modis_net_primary_production]: ModisNetPrimaryProductionDataset, } -export const getTiles: HttpFunction = async (req: Request, res: Response) => { - // This block handles CORS + +//We're using express to simplify path parameter parsing for the Tiles endpoint +const router = Router(); +const app = express(); +app.use('/', router); +exports.eetApp = app; + + +router.get('/:z/:x/:y', async (req: Request, res: Response) : Promise => { + ///// This block handles CORS res.set('Access-Control-Allow-Origin', '*'); if (req.method === 'OPTIONS') { // Send response to OPTIONS requests res.set('Access-Control-Allow-Methods', 'GET, OPTIONS'); res.set('Access-Control-Allow-Headers', 'Content-Type'); res.set('Access-Control-Max-Age', '3600'); - return res.status(204).send(''); + res.status(204).send(''); + return; } + ///// Request processing let tileRequestDTO: TileRequestDTO; let asset: EarthEngineDataset; @@ -35,9 +46,10 @@ export const getTiles: HttpFunction = async (req: Request, res: Response) => { throw new Error(`Tileset ${tileRequestDTO.tileset} not found`); } - asset.isYearValid(tileRequestDTO.year); + asset.isYearValid(tileRequestDTO.year); //Year might be required or not depending on the asset } catch (errors) { - return generateErrorResponse(res, 400, errors) + sendErrorResponse(res, 400, errors) + return; } const { tileset, x, y, z, year } = tileRequestDTO; @@ -63,27 +75,41 @@ export const getTiles: HttpFunction = async (req: Request, res: Response) => { } res.status(200).contentType(contentType); - imageResponse.body.pipe(res); - - return {status: true, res} - + await pipeline(imageResponse.body, res); } catch (error) { - console.error(error) - return generateErrorResponse(res, 500, error) + sendErrorResponse(res, 500, error); } -} +}); async function getAndValidateRequestDTO(req: Request): Promise { if (!req.query) { - throw new Error("No data provided"); + throw new Error("Missing query parameters (tileset and/or year)"); } - const result = plainToClass(TileRequestDTO, req.query, {enableImplicitConversion: true}) - await validateOrReject(result); + const result = plainToClass( + TileRequestDTO, + { ...req.query, ...req.params }, + { enableImplicitConversion: true } + ) + await validateOrReject(result, { validationError: { target: false } }); return result; } -function generateErrorResponse(res: Response, status: number, error: Error | Error[]){ - return {status: false, res: res.status(500).json({"error": error})} +function sendErrorResponse(res: Response, status: number, errors: any){ + // Using class validator's validateOrReject, rejects by throwing a list of ValidationErrors, but native Errors are thrown + // as a single non-array Error object, so this check must be done first to process the errors as a list later + errors = errors.length ? errors : [errors]; + + // Native JS Errors have all their properties as non-enumerable, so it's JSON.stringified when sending the response + // it will yield empty objects, but ValidationErrors are their own classes and don't extend native Errors + // This is a bit of a hacky way to simplify responses, by transforming native Errors to actual objects with the error + // message and leaving the ValidationErrors as is + const responseErrors = errors.map((error)=> + error instanceof ValidationError ? + error : { message: error.message } + ) + console.log('Returning Errors: ' + JSON.stringify(responseErrors)) + + res.status( status ).json( { errors: responseErrors } ) } diff --git a/cloud_functions/earth_engine_tiler/src/tile-request.dto.ts b/cloud_functions/earth_engine_tiler/src/tile-request.dto.ts index dd656ab..1c33471 100644 --- a/cloud_functions/earth_engine_tiler/src/tile-request.dto.ts +++ b/cloud_functions/earth_engine_tiler/src/tile-request.dto.ts @@ -2,7 +2,6 @@ import {IsEnum, IsInt, IsNotEmpty, IsNumber, IsOptional} from "class-validator"; import {Type} from "class-transformer"; export enum Tilesets { - // this is a placeholder for now modis_net_primary_production = "modis_net_primary_production" } diff --git a/infrastructure/README.md b/infrastructure/README.md index d46ee59..ac437e2 100644 --- a/infrastructure/README.md +++ b/infrastructure/README.md @@ -34,8 +34,9 @@ These resources include, but are not limited to: - Google Compute instance - bastion host to access the GCP infrastructure - Artifact Registry, for docker image storage -- Cloud Run, to host the client application, API/CMS and TiTiler server +- Cloud Run, to host the client application, API/CMS - Cloud SQL, for relational data storage +- Cloud Functions for the Earth Engine mini tiler server - Networking resources - Uptime monitoring - Error reporting @@ -73,7 +74,7 @@ to allow terraform to write to GH Secrets. ### Github Actions -As part of this infrastructure, Github Actions are used to automatically apply code updates for the client application, API/CMS and the TiTiler server. +As part of this infrastructure, Github Actions are used to automatically apply code updates for the client application, API/CMS and the Cloud Functions EE tiler. #### Building new code versions @@ -82,6 +83,7 @@ Deployment to the CloudRun instances is accomplished by building Docker images a - the following secrets set by terraform in STAGING_CLIENT_ENV_TF_MANAGED (in the format of an .env file): - NEXT_PUBLIC_URL - NEXT_PUBLIC_API_URL + - NEXT_PUBLIC_EET_CF_URL - NEXT_PUBLIC_ENVIRONMENT - LOG_LEVEL - additional secrets set manually in STAGING_CLIENT_ENV (copy to be managed in LastPass) @@ -102,6 +104,8 @@ Deployment to the CloudRun instances is accomplished by building Docker images a - DATABASE_PASSWORD - DATABASE_SSL +For Cloud Functions, build is executed remotely on GCP, and all variables and secrets are defined as part of the Cloud Functions (they can be checked on the GCP console). + The workflow is currently set up to deploy to the staging instance when merging to develop. #### Service account permissions diff --git a/infrastructure/base/modules/env/main.tf b/infrastructure/base/modules/env/main.tf index e410ec4..2950ab2 100644 --- a/infrastructure/base/modules/env/main.tf +++ b/infrastructure/base/modules/env/main.tf @@ -81,7 +81,7 @@ module "eet_cloud_function" { description = "Earth Engine Tiler Cloud Function" source_dir = "${path.root}/../../cloud_functions/earth_engine_tiler" runtime = "nodejs20" - entry_point = "getTiles" + entry_point = "eetApp" runtime_environment_variables = local.eet_cloud_function_env secrets = local.eet_cloud_function_secrets timeout_seconds = var.eet_function_timeout_seconds From fddec1a66275de9e080b2c2687f63528d61f39ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Barrenechea=20S=C3=A1nchez?= Date: Tue, 11 Jun 2024 09:38:19 +0200 Subject: [PATCH 07/19] Masks: first steps --- .../documentation/documentation/1.0.0/full_documentation.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cms/src/extensions/documentation/documentation/1.0.0/full_documentation.json b/cms/src/extensions/documentation/documentation/1.0.0/full_documentation.json index d42cb85..2f038d7 100644 --- a/cms/src/extensions/documentation/documentation/1.0.0/full_documentation.json +++ b/cms/src/extensions/documentation/documentation/1.0.0/full_documentation.json @@ -21,7 +21,7 @@ "name": "Apache 2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" }, - "x-generation-date": "2024-06-12T07:48:43.874Z" + "x-generation-date": "2024-06-13T08:40:32.783Z" }, "servers": [ { From fa36f4a0ee50118260b477951aaa0bd233f0ac9f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Barrenechea=20S=C3=A1nchez?= Date: Tue, 11 Jun 2024 09:38:19 +0200 Subject: [PATCH 08/19] Masks: first steps --- client/package.json | 4 + client/src/components/map/provider.tsx | 4 +- .../containers/map/layer-manager/index.tsx | 3 + .../src/containers/map/layer-manager/mask.tsx | 463 ++++ client/src/lib/json-converter/index.ts | 8 +- client/src/types/generated/dataset.ts | 420 ---- client/src/types/generated/ecoregion.ts | 425 ---- client/src/types/generated/layer.ts | 414 ---- client/src/types/generated/rangeland.ts | 425 ---- client/src/types/generated/strapi.schemas.ts | 1958 ----------------- client/yarn.lock | 64 +- .../1.0.0/full_documentation.json | 4 + 12 files changed, 538 insertions(+), 3654 deletions(-) create mode 100644 client/src/containers/map/layer-manager/mask.tsx delete mode 100644 client/src/types/generated/dataset.ts delete mode 100644 client/src/types/generated/ecoregion.ts delete mode 100644 client/src/types/generated/layer.ts delete mode 100644 client/src/types/generated/rangeland.ts delete mode 100644 client/src/types/generated/strapi.schemas.ts diff --git a/client/package.json b/client/package.json index 4d25810..d2261de 100644 --- a/client/package.json +++ b/client/package.json @@ -16,6 +16,8 @@ "@deck.gl/json": "^9.0.17", "@deck.gl/layers": "^9.0.17", "@deck.gl/mapbox": "^9.0.17", + "@loaders.gl/core": "^4.2.2", + "@loaders.gl/csv": "^4.2.2", "@radix-ui/react-collapsible": "^1.0.3", "@radix-ui/react-dialog": "^1.0.5", "@radix-ui/react-popover": "^1.0.7", @@ -36,6 +38,7 @@ "clsx": "^2.1.1", "cmdk": "^1.0.0", "color": "^4.2.3", + "d3-dsv": "^3.0.1", "deck.gl": "^9.0.17", "express": "^4.19.2", "jotai": "^2.8.2", @@ -58,6 +61,7 @@ }, "devDependencies": { "@types/color": "^3.0.6", + "@types/d3-dsv": "^3", "@types/express": "^4", "@types/mapbox-gl": "^3", "@types/node": "^20", diff --git a/client/src/components/map/provider.tsx b/client/src/components/map/provider.tsx index bb80f20..6ecf8ce 100644 --- a/client/src/components/map/provider.tsx +++ b/client/src/components/map/provider.tsx @@ -118,8 +118,10 @@ export const useDeckMapboxOverlay = ({ // Give the map a chance to load the background layer before adding the Deck layer setTimeout(() => { // https://github.com/visgl/deck.gl/blob/c2ba79b08b0ea807c6779d8fe1aaa307ebc22f91/modules/mapbox/src/resolve-layers.ts#L66 + layer.id = i; // @ts-expect-error not typed - addLayer(layer.clone({ id: i, beforeId: id })); + layer.beforeId = id; + addLayer(layer); }, 10); }, [i, id, layer, addLayer]); diff --git a/client/src/containers/map/layer-manager/index.tsx b/client/src/containers/map/layer-manager/index.tsx index 7217cd5..3ad3a14 100644 --- a/client/src/containers/map/layer-manager/index.tsx +++ b/client/src/containers/map/layer-manager/index.tsx @@ -9,6 +9,7 @@ import { useSyncLayers, useSyncLayersSettings } from "@/store/map"; import LayerManagerItem from "@/containers/map/layer-manager/item"; import { DeckMapboxOverlayProvider } from "@/components/map/provider"; +import Mask from "@/containers/map/layer-manager/mask"; const LayerManager = () => { const { current: map } = useMap(); @@ -87,6 +88,8 @@ const LayerManager = () => { /> ); })} + + ); diff --git a/client/src/containers/map/layer-manager/mask.tsx b/client/src/containers/map/layer-manager/mask.tsx new file mode 100644 index 0000000..060fcd6 --- /dev/null +++ b/client/src/containers/map/layer-manager/mask.tsx @@ -0,0 +1,463 @@ +"use client"; + +// import { ReactElement, cloneElement, useCallback } from "react"; + +import { CompositeLayer, Layer as DLayer, GeoJsonLayer, MVTLayer } from "deck.gl"; +import { Layer } from "react-map-gl"; + +// import { useAtomValue, useSetAtom } from "jotai"; + +import { parseConfig } from "@/lib/json-converter"; + +// import { layersInteractiveAtom, layersInteractiveIdsAtom } from "@/store/map"; + +import DeckLayer from "@/components/map/layers/deck-layer"; +import { env } from "@/env.mjs"; +import { useMemo } from "react"; +// import MapboxLayer from "@/components/map/layers/mapbox-layer"; + +interface MaskProps { + beforeId?: string; + settings: Record; + id: string; +} + +const PORTUGAL_GEOJSON = { + type: "FeatureCollection", + features: [ + { + type: "Feature", + properties: { + scalerank: 1, + featurecla: "Admin-0 country", + labelrank: 2, + sovereignt: "Portugal", + sov_a3: "PRT", + adm0_dif: 0, + level: 2, + type: "Sovereign country", + admin: "Portugal", + adm0_a3: "PRT", + geou_dif: 0, + geounit: "Portugal", + gu_a3: "PRT", + su_dif: 1, + subunit: "Portugal", + su_a3: "PR1", + brk_diff: 0, + name: "Portugal", + name_long: "Portugal", + brk_a3: "PR1", + brk_name: "Portugal", + brk_group: null, + abbrev: "Port.", + postal: "P", + formal_en: "Portuguese Republic", + formal_fr: null, + note_adm0: null, + note_brk: null, + name_sort: "Portugal", + name_alt: null, + mapcolor7: 1, + mapcolor8: 7, + mapcolor9: 1, + mapcolor13: 4, + pop_est: 10707924, + gdp_md_est: 208627, + pop_year: -99, + lastcensus: 2011, + gdp_year: 0, + economy: "2. Developed region: nonG7", + income_grp: "1. High income: OECD", + wikipedia: -99, + fips_10: null, + iso_a2: "PT", + iso_a3: "PRT", + iso_n3: "620", + un_a3: "620", + wb_a2: "PT", + wb_a3: "PRT", + woe_id: -99, + adm0_a3_is: "PRT", + adm0_a3_us: "PRT", + adm0_a3_un: -99, + adm0_a3_wb: -99, + continent: "Europe", + region_un: "Europe", + subregion: "Southern Europe", + region_wb: "Europe & Central Asia", + name_len: 8, + long_len: 8, + abbrev_len: 5, + tiny: -99, + homepart: 1, + filename: "PRT.geojson", + }, + geometry: { + type: "MultiPolygon", + coordinates: [ + [ + [ + [-17.190869140624926, 32.868603515624976], + [-17.054492187499932, 32.81586914062498], + [-16.92919921875, 32.84140625000003], + [-16.77397460937499, 32.77353515624998], + [-16.693261718749966, 32.75800781250001], + [-16.765283203124994, 32.70971679687503], + [-16.837402343749943, 32.648291015625034], + [-17.018261718749926, 32.66279296874998], + [-17.17119140624999, 32.721875], + [-17.226025390624983, 32.76684570312503], + [-17.241015625000017, 32.80737304687503], + [-17.190869140624926, 32.868603515624976], + ], + ], + [ + [ + [-25.02734375, 36.95996093750003], + [-25.03154296874999, 36.94155273437502], + [-25.08837890625, 36.948876953124994], + [-25.15991210937503, 36.94335937500003], + [-25.198388671874934, 36.99653320312501], + [-25.163525390624955, 37.01855468749997], + [-25.082910156249966, 37.02402343750003], + [-25.044335937499994, 37.00019531249998], + [-25.02734375, 36.95996093750003], + ], + ], + [ + [ + [-25.648974609374985, 37.84091796875], + [-25.585498046874932, 37.83403320312502], + [-25.2666015625, 37.84863281249997], + [-25.18193359374996, 37.837890625], + [-25.19072265624999, 37.764355468749955], + [-25.251123046874937, 37.73500976562502], + [-25.43901367187493, 37.71533203125], + [-25.73447265624992, 37.76289062500001], + [-25.833691406249983, 37.82607421874999], + [-25.847851562499923, 37.872412109375034], + [-25.84589843749998, 37.89404296875], + [-25.783740234375014, 37.9111328125], + [-25.648974609374985, 37.84091796875], + ], + ], + [ + [ + [-28.14726562499996, 38.45268554687502], + [-28.064794921875034, 38.412744140624966], + [-28.18974609374999, 38.404150390625006], + [-28.231152343749983, 38.384667968750016], + [-28.33242187500002, 38.41289062500002], + [-28.45449218750002, 38.40864257812504], + [-28.53115234374999, 38.462548828124994], + [-28.54882812499997, 38.51855468750003], + [-28.51025390625, 38.553027343750045], + [-28.402148437500014, 38.55336914062502], + [-28.14726562499996, 38.45268554687502], + ], + ], + [ + [ + [-28.641308593749983, 38.525], + [-28.74384765624998, 38.52236328125002], + [-28.842041015625, 38.5984375], + [-28.697753906249996, 38.638476562500045], + [-28.65541992187499, 38.614062500000045], + [-28.624218749999955, 38.58632812499999], + [-28.605810546875034, 38.55073242187501], + [-28.641308593749983, 38.525], + ], + ], + [ + [ + [-27.778466796874966, 38.55561523437504], + [-27.825878906249923, 38.54355468749998], + [-28.09233398437496, 38.62055664062504], + [-28.18725585937503, 38.65537109375003], + [-28.310644531250002, 38.74389648437503], + [-27.962646484375, 38.63632812500006], + [-27.778466796874966, 38.55561523437504], + ], + ], + [ + [ + [-27.075244140624957, 38.643457031249994], + [-27.09531249999995, 38.63403320312503], + [-27.30283203124995, 38.66103515625002], + [-27.361914062500006, 38.69785156250006], + [-27.38593750000001, 38.765820312499955], + [-27.35102539062501, 38.788964843749966], + [-27.259667968749966, 38.80268554687501], + [-27.127001953125017, 38.78984374999995], + [-27.04194335937501, 38.7412109375], + [-27.041992187500025, 38.67890625000001], + [-27.075244140624957, 38.643457031249994], + ], + ], + [ + [ + [-31.137109374999937, 39.40693359375001], + [-31.18134765624998, 39.35893554687502], + [-31.25761718749999, 39.3759765625], + [-31.282958984375, 39.39409179687496], + [-31.26083984375003, 39.49677734375001], + [-31.199853515624937, 39.520849609375034], + [-31.13862304687498, 39.479443359374955], + [-31.137109374999937, 39.40693359375001], + ], + ], + [ + [ + [-8.173535156249955, 41.819970703124994], + [-8.152490234374937, 41.81196289062498], + [-8.094433593749926, 41.81420898437499], + [-7.990966796874972, 41.851904296875034], + [-7.920849609374982, 41.883642578125], + [-7.896386718749994, 41.87055664062501], + [-7.693066406249955, 41.88847656250002], + [-7.644677734374937, 41.87397460937498], + [-7.612597656249988, 41.85795898437502], + [-7.512597656249966, 41.83598632812498], + [-7.40361328124996, 41.83369140624995], + [-7.268554687499972, 41.864404296874994], + [-7.209619140624966, 41.89526367187497], + [-7.198339843749978, 41.92939453125001], + [-7.195361328124989, 41.95522460937502], + [-7.177929687499983, 41.9716796875], + [-7.147119140625023, 41.98115234374998], + [-7.09912109375, 41.964208984375006], + [-7.030468749999955, 41.95063476562498], + [-6.865527343749932, 41.945263671874955], + [-6.833203124999926, 41.96416015624999], + [-6.777294921874983, 41.958496093749964], + [-6.70361328125, 41.9345703125], + [-6.61826171874992, 41.9423828125], + [-6.575341796874966, 41.91308593749997], + [-6.557519531249966, 41.874121093750034], + [-6.552587890624948, 41.78955078125003], + [-6.558984375000023, 41.70405273437501], + [-6.542187499999954, 41.672509765624994], + [-6.48466796874996, 41.664404296875034], + [-6.391699218749949, 41.66538085937503], + [-6.308056640624954, 41.642187500000034], + [-6.243115234374955, 41.60180664062497], + [-6.221679687499943, 41.560449218749994], + [-6.2125, 41.53203125], + [-6.244335937499955, 41.51591796874995], + [-6.28935546874996, 41.45502929687501], + [-6.403125, 41.37539062500002], + [-6.56591796875, 41.3037109375], + [-6.690136718749983, 41.21450195312502], + [-6.775781249999937, 41.10771484375002], + [-6.8828125, 41.06240234375002], + [-6.915527343749999, 41.038037109374955], + [-6.928466796874972, 41.009130859375], + [-6.857714843749932, 40.87832031250002], + [-6.835888671874926, 40.777490234374994], + [-6.818359375, 40.65405273437497], + [-6.829833984374943, 40.619091796874955], + [-6.835693359374971, 40.48315429687497], + [-6.852050781249943, 40.44326171875002], + [-6.847949218749988, 40.410986328125006], + [-6.82177734375, 40.37626953124996], + [-6.8101562499999, 40.343115234375034], + [-6.85888671875, 40.30073242187504], + [-6.948437499999955, 40.251611328124966], + [-7.01469726562496, 40.208349609375034], + [-7.032617187499965, 40.16791992187498], + [-7.027832031249972, 40.14262695312496], + [-6.91640625, 40.05683593749998], + [-6.896093749999949, 40.02182617187506], + [-6.911181640624989, 39.937109375000034], + [-6.975390624999932, 39.79838867187502], + [-7.03671875, 39.713964843750034], + [-7.04741210937496, 39.70556640625], + [-7.117675781249972, 39.681689453125045], + [-7.454101562499943, 39.6806640625], + [-7.535693359374961, 39.66157226562501], + [-7.524218749999932, 39.644726562499955], + [-7.44511718749996, 39.53618164062496], + [-7.362695312499966, 39.47832031249999], + [-7.335449218749999, 39.46513671874996], + [-7.30576171874992, 39.33813476562502], + [-7.172412109374932, 39.13520507812498], + [-7.042968749999942, 39.10708007812502], + [-6.997949218749993, 39.05644531250002], + [-7.00625, 38.98525390624999], + [-7.046044921874937, 38.907031250000045], + [-7.125488281249971, 38.82695312499999], + [-7.219921874999925, 38.77050781250002], + [-7.28154296874996, 38.71455078125001], + [-7.286376953124972, 38.649365234374955], + [-7.30595703124996, 38.56684570312501], + [-7.335791015625006, 38.50146484375003], + [-7.343017578124943, 38.45742187500002], + [-7.106396484374982, 38.181005859375006], + [-6.974804687499982, 38.194433593750006], + [-6.957568359374932, 38.18789062499999], + [-6.981103515624937, 38.121972656249966], + [-7.022851562500023, 38.04472656249996], + [-7.072509765625, 38.030029296875], + [-7.185449218749994, 38.00634765625006], + [-7.292236328125, 37.90644531250004], + [-7.378906249999971, 37.786376953125], + [-7.443945312499921, 37.72827148437497], + [-7.503515624999977, 37.58549804687502], + [-7.496044921874954, 37.523583984375016], + [-7.467187499999937, 37.42802734374999], + [-7.406152343749937, 37.17944335937497], + [-7.493603515624983, 37.168310546875034], + [-7.834130859374994, 37.00571289062503], + [-7.939697265625, 37.00541992187496], + [-8.136767578124932, 37.077050781249994], + [-8.484326171874955, 37.10004882812498], + [-8.597656249999943, 37.12133789062506], + [-8.739111328124977, 37.07460937500002], + [-8.8484375, 37.07568359374997], + [-8.935351562499987, 37.01601562499999], + [-8.997802734375028, 37.03227539062502], + [-8.92626953125, 37.16606445312502], + [-8.814160156249983, 37.43081054687502], + [-8.818554687500011, 37.59243164062502], + [-8.791845703124977, 37.73281250000002], + [-8.822656249999936, 37.871875], + [-8.87895507812496, 37.95869140625001], + [-8.80224609374997, 38.18383789062497], + [-8.810937499999966, 38.299755859374955], + [-8.881103515624943, 38.44667968750005], + [-8.668310546874947, 38.42431640625003], + [-8.73398437499992, 38.48242187500006], + [-8.798876953124989, 38.518164062500034], + [-8.861621093749987, 38.50996093749998], + [-8.914794921874972, 38.512109374999966], + [-9.09599609374996, 38.45522460937502], + [-9.186718749999953, 38.438183593750004], + [-9.213281249999937, 38.44809570312498], + [-9.203369140624972, 38.53896484375002], + [-9.250390624999964, 38.65673828125002], + [-9.17783203124992, 38.68779296874996], + [-9.09331054687493, 38.69667968749999], + [-9.021484374999943, 38.746875], + [-8.977050781249972, 38.80292968749998], + [-9.000488281249943, 38.90302734375004], + [-8.93808593749992, 38.998095703125045], + [-8.79160156249992, 39.07817382812502], + [-8.867480468749932, 39.06596679687502], + [-8.954296874999955, 39.016064453124955], + [-9.091015625000011, 38.834667968749955], + [-9.13579101562496, 38.74277343749997], + [-9.252294921875004, 38.712792968749994], + [-9.35673828124996, 38.697900390624994], + [-9.410205078124932, 38.70751953125], + [-9.474121093749972, 38.73085937500002], + [-9.479736328124972, 38.79877929687501], + [-9.474755859374937, 38.852929687500016], + [-9.431445312499987, 38.96044921875], + [-9.41435546874996, 39.11210937499999], + [-9.35283203124996, 39.248144531250006], + [-9.35722656249996, 39.28427734374997], + [-9.374755859374972, 39.338281249999966], + [-9.319628906249932, 39.39111328125], + [-9.251416015624983, 39.426025390625], + [-9.148291015624949, 39.542578125000034], + [-9.004052734374966, 39.820556640625], + [-8.837841796874926, 40.11567382812498], + [-8.851318359375028, 40.151806640624976], + [-8.886621093750023, 40.179443359375], + [-8.8726562499999, 40.25908203124999], + [-8.772412109374926, 40.60566406249998], + [-8.731591796874966, 40.65092773437495], + [-8.684619140624989, 40.75253906250006], + [-8.673974609374936, 40.91650390624997], + [-8.655566406249932, 41.02949218749998], + [-8.659814453124994, 41.086279296875006], + [-8.674609374999989, 41.154492187499955], + [-8.73837890624992, 41.28466796875003], + [-8.805664062499943, 41.56000976562498], + [-8.810839843749932, 41.65195312500006], + [-8.75541992187493, 41.69838867187502], + [-8.846386718749983, 41.70517578124998], + [-8.887597656249937, 41.764599609375004], + [-8.878222656249989, 41.83208007812499], + [-8.777148437500017, 41.941064453124994], + [-8.68295898437492, 42.008496093749955], + [-8.589648437499989, 42.05273437499999], + [-8.538085937499972, 42.0693359375], + [-8.322558593749932, 42.115087890625006], + [-8.266064453124983, 42.13740234375001], + [-8.213085937499926, 42.133691406249966], + [-8.204199218749977, 42.11186523437496], + [-8.17358398437497, 42.06938476562501], + [-8.139306640624994, 42.039941406249966], + [-8.129980468749977, 42.01816406250006], + [-8.213330078124983, 41.92709960937498], + [-8.224755859374994, 41.895849609375006], + [-8.18125, 41.83696289062502], + [-8.173535156249955, 41.819970703124994], + ], + ], + ], + }, + }, + ], +}; + +class CompositeMask extends CompositeLayer { + renderLayers() { + return [ + new MVTLayer({ + data: `https://api.mapbox.com/v4/grass2024.6i7whpd0/{z}/{x}/{y}.mvt?access_token=${env.NEXT_PUBLIC_MAPBOX_TOKEN}`, + binary: false, + renderSubLayers: (props) => { + if (!props.data) return null; + + console.log(props.data); + return new GeoJsonLayer(props, { + data: props.data, + operation: "mask", + }); + }, + }), + ]; + } +} +const Mask = ({ id, settings }: MaskProps) => { + // const c = parseConfig({ + // config: { + // id, + // "@@type": "MVTLayer", + // data: { + // dataUrls: "https://api.mapbox.com/v4/grass2024.6i7whpd0/{z}/{x}/{y}.mvt", + // "@@function": "setDataWithMapboxToken", + // }, + // binary: false, + // getFillColor: [255, 255, 255, 1], + // operation: "mask", + // }, + // params_config: [], + // settings, + // }); + + const c = useMemo(() => { + return new GeoJsonLayer({ + id, + data: PORTUGAL_GEOJSON, + operation: "mask", + }); + + return new CompositeMask({ + id, + operation: "mask", + }); + }, [id]); + + return ( + <> + + ; + + ); +}; + +export default Mask; diff --git a/client/src/lib/json-converter/index.ts b/client/src/lib/json-converter/index.ts index 6bf7c5e..b9051e4 100644 --- a/client/src/lib/json-converter/index.ts +++ b/client/src/lib/json-converter/index.ts @@ -6,13 +6,19 @@ import { JSONConfiguration, JSONConverter } from "@deck.gl/json"; import FUNCTIONS from "./utils"; import { ParamsConfig } from "@/types/layers"; +import * as Layers from "@deck.gl/layers"; import * as GeoLayers from "@deck.gl/geo-layers"; import * as AggregationLayers from "@deck.gl/aggregation-layers"; +import { MaskExtension } from "@deck.gl/extensions"; +import { CSVLoader } from "@loaders.gl/csv"; export const JSON_CONFIGURATION = new JSONConfiguration({ React, - classes: Object.assign({}, GeoLayers, AggregationLayers), + classes: Object.assign({}, Layers, GeoLayers, AggregationLayers, { MaskExtension, CSVLoader }), functions: FUNCTIONS, + constants: { + CSVLoader, + }, enumerations: {}, reactComponents: { // LegendTypeBasic, diff --git a/client/src/types/generated/dataset.ts b/client/src/types/generated/dataset.ts deleted file mode 100644 index 1bb132c..0000000 --- a/client/src/types/generated/dataset.ts +++ /dev/null @@ -1,420 +0,0 @@ -/** - * Generated by orval v6.29.1 🍺 - * Do not edit manually. - * DOCUMENTATION - * OpenAPI spec version: 1.0.0 - */ -import { useMutation, useQuery } from "@tanstack/react-query"; -import type { - MutationFunction, - QueryFunction, - QueryKey, - UseMutationOptions, - UseMutationResult, - UseQueryOptions, - UseQueryResult, -} from "@tanstack/react-query"; -import type { - DatasetListResponse, - DatasetLocalizationRequest, - DatasetLocalizationResponse, - DatasetRequest, - DatasetResponse, - Error, - GetDatasetsIdParams, - GetDatasetsParams, -} from "./strapi.schemas"; -import { API } from "../../services/api/index"; -import type { ErrorType } from "../../services/api/index"; - -type SecondParameter any> = Parameters[1]; - -export const getDatasets = ( - params?: GetDatasetsParams, - options?: SecondParameter, - signal?: AbortSignal, -) => { - return API({ url: `/datasets`, method: "GET", params, signal }, options); -}; - -export const getGetDatasetsQueryKey = (params?: GetDatasetsParams) => { - return [`/datasets`, ...(params ? [params] : [])] as const; -}; - -export const getGetDatasetsQueryOptions = < - TData = Awaited>, - TError = ErrorType, ->( - params?: GetDatasetsParams, - options?: { - query?: Partial>, TError, TData>>; - request?: SecondParameter; - }, -) => { - const { query: queryOptions, request: requestOptions } = options ?? {}; - - const queryKey = queryOptions?.queryKey ?? getGetDatasetsQueryKey(params); - - const queryFn: QueryFunction>> = ({ signal }) => - getDatasets(params, requestOptions, signal); - - return { queryKey, queryFn, ...queryOptions } as UseQueryOptions< - Awaited>, - TError, - TData - > & { queryKey: QueryKey }; -}; - -export type GetDatasetsQueryResult = NonNullable>>; -export type GetDatasetsQueryError = ErrorType; - -export const useGetDatasets = < - TData = Awaited>, - TError = ErrorType, ->( - params?: GetDatasetsParams, - options?: { - query?: Partial>, TError, TData>>; - request?: SecondParameter; - }, -): UseQueryResult & { queryKey: QueryKey } => { - const queryOptions = getGetDatasetsQueryOptions(params, options); - - const query = useQuery(queryOptions) as UseQueryResult & { queryKey: QueryKey }; - - query.queryKey = queryOptions.queryKey; - - return query; -}; - -export const postDatasets = ( - datasetRequest: DatasetRequest, - options?: SecondParameter, -) => { - return API( - { - url: `/datasets`, - method: "POST", - headers: { "Content-Type": "application/json" }, - data: datasetRequest, - }, - options, - ); -}; - -export const getPostDatasetsMutationOptions = < - TError = ErrorType, - TContext = unknown, ->(options?: { - mutation?: UseMutationOptions< - Awaited>, - TError, - { data: DatasetRequest }, - TContext - >; - request?: SecondParameter; -}): UseMutationOptions< - Awaited>, - TError, - { data: DatasetRequest }, - TContext -> => { - const { mutation: mutationOptions, request: requestOptions } = options ?? {}; - - const mutationFn: MutationFunction< - Awaited>, - { data: DatasetRequest } - > = (props) => { - const { data } = props ?? {}; - - return postDatasets(data, requestOptions); - }; - - return { mutationFn, ...mutationOptions }; -}; - -export type PostDatasetsMutationResult = NonNullable>>; -export type PostDatasetsMutationBody = DatasetRequest; -export type PostDatasetsMutationError = ErrorType; - -export const usePostDatasets = , TContext = unknown>(options?: { - mutation?: UseMutationOptions< - Awaited>, - TError, - { data: DatasetRequest }, - TContext - >; - request?: SecondParameter; -}): UseMutationResult< - Awaited>, - TError, - { data: DatasetRequest }, - TContext -> => { - const mutationOptions = getPostDatasetsMutationOptions(options); - - return useMutation(mutationOptions); -}; -export const getDatasetsId = ( - id: number, - params?: GetDatasetsIdParams, - options?: SecondParameter, - signal?: AbortSignal, -) => { - return API({ url: `/datasets/${id}`, method: "GET", params, signal }, options); -}; - -export const getGetDatasetsIdQueryKey = (id: number, params?: GetDatasetsIdParams) => { - return [`/datasets/${id}`, ...(params ? [params] : [])] as const; -}; - -export const getGetDatasetsIdQueryOptions = < - TData = Awaited>, - TError = ErrorType, ->( - id: number, - params?: GetDatasetsIdParams, - options?: { - query?: Partial>, TError, TData>>; - request?: SecondParameter; - }, -) => { - const { query: queryOptions, request: requestOptions } = options ?? {}; - - const queryKey = queryOptions?.queryKey ?? getGetDatasetsIdQueryKey(id, params); - - const queryFn: QueryFunction>> = ({ signal }) => - getDatasetsId(id, params, requestOptions, signal); - - return { queryKey, queryFn, enabled: !!id, ...queryOptions } as UseQueryOptions< - Awaited>, - TError, - TData - > & { queryKey: QueryKey }; -}; - -export type GetDatasetsIdQueryResult = NonNullable>>; -export type GetDatasetsIdQueryError = ErrorType; - -export const useGetDatasetsId = < - TData = Awaited>, - TError = ErrorType, ->( - id: number, - params?: GetDatasetsIdParams, - options?: { - query?: Partial>, TError, TData>>; - request?: SecondParameter; - }, -): UseQueryResult & { queryKey: QueryKey } => { - const queryOptions = getGetDatasetsIdQueryOptions(id, params, options); - - const query = useQuery(queryOptions) as UseQueryResult & { queryKey: QueryKey }; - - query.queryKey = queryOptions.queryKey; - - return query; -}; - -export const putDatasetsId = ( - id: number, - datasetRequest: DatasetRequest, - options?: SecondParameter, -) => { - return API( - { - url: `/datasets/${id}`, - method: "PUT", - headers: { "Content-Type": "application/json" }, - data: datasetRequest, - }, - options, - ); -}; - -export const getPutDatasetsIdMutationOptions = < - TError = ErrorType, - TContext = unknown, ->(options?: { - mutation?: UseMutationOptions< - Awaited>, - TError, - { id: number; data: DatasetRequest }, - TContext - >; - request?: SecondParameter; -}): UseMutationOptions< - Awaited>, - TError, - { id: number; data: DatasetRequest }, - TContext -> => { - const { mutation: mutationOptions, request: requestOptions } = options ?? {}; - - const mutationFn: MutationFunction< - Awaited>, - { id: number; data: DatasetRequest } - > = (props) => { - const { id, data } = props ?? {}; - - return putDatasetsId(id, data, requestOptions); - }; - - return { mutationFn, ...mutationOptions }; -}; - -export type PutDatasetsIdMutationResult = NonNullable>>; -export type PutDatasetsIdMutationBody = DatasetRequest; -export type PutDatasetsIdMutationError = ErrorType; - -export const usePutDatasetsId = , TContext = unknown>(options?: { - mutation?: UseMutationOptions< - Awaited>, - TError, - { id: number; data: DatasetRequest }, - TContext - >; - request?: SecondParameter; -}): UseMutationResult< - Awaited>, - TError, - { id: number; data: DatasetRequest }, - TContext -> => { - const mutationOptions = getPutDatasetsIdMutationOptions(options); - - return useMutation(mutationOptions); -}; -export const deleteDatasetsId = (id: number, options?: SecondParameter) => { - return API({ url: `/datasets/${id}`, method: "DELETE" }, options); -}; - -export const getDeleteDatasetsIdMutationOptions = < - TError = ErrorType, - TContext = unknown, ->(options?: { - mutation?: UseMutationOptions< - Awaited>, - TError, - { id: number }, - TContext - >; - request?: SecondParameter; -}): UseMutationOptions< - Awaited>, - TError, - { id: number }, - TContext -> => { - const { mutation: mutationOptions, request: requestOptions } = options ?? {}; - - const mutationFn: MutationFunction< - Awaited>, - { id: number } - > = (props) => { - const { id } = props ?? {}; - - return deleteDatasetsId(id, requestOptions); - }; - - return { mutationFn, ...mutationOptions }; -}; - -export type DeleteDatasetsIdMutationResult = NonNullable< - Awaited> ->; - -export type DeleteDatasetsIdMutationError = ErrorType; - -export const useDeleteDatasetsId = , TContext = unknown>(options?: { - mutation?: UseMutationOptions< - Awaited>, - TError, - { id: number }, - TContext - >; - request?: SecondParameter; -}): UseMutationResult< - Awaited>, - TError, - { id: number }, - TContext -> => { - const mutationOptions = getDeleteDatasetsIdMutationOptions(options); - - return useMutation(mutationOptions); -}; -export const postDatasetsIdLocalizations = ( - id: number, - datasetLocalizationRequest: DatasetLocalizationRequest, - options?: SecondParameter, -) => { - return API( - { - url: `/datasets/${id}/localizations`, - method: "POST", - headers: { "Content-Type": "application/json" }, - data: datasetLocalizationRequest, - }, - options, - ); -}; - -export const getPostDatasetsIdLocalizationsMutationOptions = < - TError = ErrorType, - TContext = unknown, ->(options?: { - mutation?: UseMutationOptions< - Awaited>, - TError, - { id: number; data: DatasetLocalizationRequest }, - TContext - >; - request?: SecondParameter; -}): UseMutationOptions< - Awaited>, - TError, - { id: number; data: DatasetLocalizationRequest }, - TContext -> => { - const { mutation: mutationOptions, request: requestOptions } = options ?? {}; - - const mutationFn: MutationFunction< - Awaited>, - { id: number; data: DatasetLocalizationRequest } - > = (props) => { - const { id, data } = props ?? {}; - - return postDatasetsIdLocalizations(id, data, requestOptions); - }; - - return { mutationFn, ...mutationOptions }; -}; - -export type PostDatasetsIdLocalizationsMutationResult = NonNullable< - Awaited> ->; -export type PostDatasetsIdLocalizationsMutationBody = DatasetLocalizationRequest; -export type PostDatasetsIdLocalizationsMutationError = ErrorType; - -export const usePostDatasetsIdLocalizations = < - TError = ErrorType, - TContext = unknown, ->(options?: { - mutation?: UseMutationOptions< - Awaited>, - TError, - { id: number; data: DatasetLocalizationRequest }, - TContext - >; - request?: SecondParameter; -}): UseMutationResult< - Awaited>, - TError, - { id: number; data: DatasetLocalizationRequest }, - TContext -> => { - const mutationOptions = getPostDatasetsIdLocalizationsMutationOptions(options); - - return useMutation(mutationOptions); -}; diff --git a/client/src/types/generated/ecoregion.ts b/client/src/types/generated/ecoregion.ts deleted file mode 100644 index a1ebe10..0000000 --- a/client/src/types/generated/ecoregion.ts +++ /dev/null @@ -1,425 +0,0 @@ -/** - * Generated by orval v6.29.1 🍺 - * Do not edit manually. - * DOCUMENTATION - * OpenAPI spec version: 1.0.0 - */ -import { useMutation, useQuery } from "@tanstack/react-query"; -import type { - MutationFunction, - QueryFunction, - QueryKey, - UseMutationOptions, - UseMutationResult, - UseQueryOptions, - UseQueryResult, -} from "@tanstack/react-query"; -import type { - EcoregionListResponse, - EcoregionLocalizationRequest, - EcoregionLocalizationResponse, - EcoregionRequest, - EcoregionResponse, - Error, - GetEcoregionsIdParams, - GetEcoregionsParams, -} from "./strapi.schemas"; -import { API } from "../../services/api/index"; -import type { ErrorType } from "../../services/api/index"; - -type SecondParameter any> = Parameters[1]; - -export const getEcoregions = ( - params?: GetEcoregionsParams, - options?: SecondParameter, - signal?: AbortSignal, -) => { - return API({ url: `/ecoregions`, method: "GET", params, signal }, options); -}; - -export const getGetEcoregionsQueryKey = (params?: GetEcoregionsParams) => { - return [`/ecoregions`, ...(params ? [params] : [])] as const; -}; - -export const getGetEcoregionsQueryOptions = < - TData = Awaited>, - TError = ErrorType, ->( - params?: GetEcoregionsParams, - options?: { - query?: Partial>, TError, TData>>; - request?: SecondParameter; - }, -) => { - const { query: queryOptions, request: requestOptions } = options ?? {}; - - const queryKey = queryOptions?.queryKey ?? getGetEcoregionsQueryKey(params); - - const queryFn: QueryFunction>> = ({ signal }) => - getEcoregions(params, requestOptions, signal); - - return { queryKey, queryFn, ...queryOptions } as UseQueryOptions< - Awaited>, - TError, - TData - > & { queryKey: QueryKey }; -}; - -export type GetEcoregionsQueryResult = NonNullable>>; -export type GetEcoregionsQueryError = ErrorType; - -export const useGetEcoregions = < - TData = Awaited>, - TError = ErrorType, ->( - params?: GetEcoregionsParams, - options?: { - query?: Partial>, TError, TData>>; - request?: SecondParameter; - }, -): UseQueryResult & { queryKey: QueryKey } => { - const queryOptions = getGetEcoregionsQueryOptions(params, options); - - const query = useQuery(queryOptions) as UseQueryResult & { queryKey: QueryKey }; - - query.queryKey = queryOptions.queryKey; - - return query; -}; - -export const postEcoregions = ( - ecoregionRequest: EcoregionRequest, - options?: SecondParameter, -) => { - return API( - { - url: `/ecoregions`, - method: "POST", - headers: { "Content-Type": "application/json" }, - data: ecoregionRequest, - }, - options, - ); -}; - -export const getPostEcoregionsMutationOptions = < - TError = ErrorType, - TContext = unknown, ->(options?: { - mutation?: UseMutationOptions< - Awaited>, - TError, - { data: EcoregionRequest }, - TContext - >; - request?: SecondParameter; -}): UseMutationOptions< - Awaited>, - TError, - { data: EcoregionRequest }, - TContext -> => { - const { mutation: mutationOptions, request: requestOptions } = options ?? {}; - - const mutationFn: MutationFunction< - Awaited>, - { data: EcoregionRequest } - > = (props) => { - const { data } = props ?? {}; - - return postEcoregions(data, requestOptions); - }; - - return { mutationFn, ...mutationOptions }; -}; - -export type PostEcoregionsMutationResult = NonNullable>>; -export type PostEcoregionsMutationBody = EcoregionRequest; -export type PostEcoregionsMutationError = ErrorType; - -export const usePostEcoregions = , TContext = unknown>(options?: { - mutation?: UseMutationOptions< - Awaited>, - TError, - { data: EcoregionRequest }, - TContext - >; - request?: SecondParameter; -}): UseMutationResult< - Awaited>, - TError, - { data: EcoregionRequest }, - TContext -> => { - const mutationOptions = getPostEcoregionsMutationOptions(options); - - return useMutation(mutationOptions); -}; -export const getEcoregionsId = ( - id: number, - params?: GetEcoregionsIdParams, - options?: SecondParameter, - signal?: AbortSignal, -) => { - return API( - { url: `/ecoregions/${id}`, method: "GET", params, signal }, - options, - ); -}; - -export const getGetEcoregionsIdQueryKey = (id: number, params?: GetEcoregionsIdParams) => { - return [`/ecoregions/${id}`, ...(params ? [params] : [])] as const; -}; - -export const getGetEcoregionsIdQueryOptions = < - TData = Awaited>, - TError = ErrorType, ->( - id: number, - params?: GetEcoregionsIdParams, - options?: { - query?: Partial>, TError, TData>>; - request?: SecondParameter; - }, -) => { - const { query: queryOptions, request: requestOptions } = options ?? {}; - - const queryKey = queryOptions?.queryKey ?? getGetEcoregionsIdQueryKey(id, params); - - const queryFn: QueryFunction>> = ({ signal }) => - getEcoregionsId(id, params, requestOptions, signal); - - return { queryKey, queryFn, enabled: !!id, ...queryOptions } as UseQueryOptions< - Awaited>, - TError, - TData - > & { queryKey: QueryKey }; -}; - -export type GetEcoregionsIdQueryResult = NonNullable>>; -export type GetEcoregionsIdQueryError = ErrorType; - -export const useGetEcoregionsId = < - TData = Awaited>, - TError = ErrorType, ->( - id: number, - params?: GetEcoregionsIdParams, - options?: { - query?: Partial>, TError, TData>>; - request?: SecondParameter; - }, -): UseQueryResult & { queryKey: QueryKey } => { - const queryOptions = getGetEcoregionsIdQueryOptions(id, params, options); - - const query = useQuery(queryOptions) as UseQueryResult & { queryKey: QueryKey }; - - query.queryKey = queryOptions.queryKey; - - return query; -}; - -export const putEcoregionsId = ( - id: number, - ecoregionRequest: EcoregionRequest, - options?: SecondParameter, -) => { - return API( - { - url: `/ecoregions/${id}`, - method: "PUT", - headers: { "Content-Type": "application/json" }, - data: ecoregionRequest, - }, - options, - ); -}; - -export const getPutEcoregionsIdMutationOptions = < - TError = ErrorType, - TContext = unknown, ->(options?: { - mutation?: UseMutationOptions< - Awaited>, - TError, - { id: number; data: EcoregionRequest }, - TContext - >; - request?: SecondParameter; -}): UseMutationOptions< - Awaited>, - TError, - { id: number; data: EcoregionRequest }, - TContext -> => { - const { mutation: mutationOptions, request: requestOptions } = options ?? {}; - - const mutationFn: MutationFunction< - Awaited>, - { id: number; data: EcoregionRequest } - > = (props) => { - const { id, data } = props ?? {}; - - return putEcoregionsId(id, data, requestOptions); - }; - - return { mutationFn, ...mutationOptions }; -}; - -export type PutEcoregionsIdMutationResult = NonNullable< - Awaited> ->; -export type PutEcoregionsIdMutationBody = EcoregionRequest; -export type PutEcoregionsIdMutationError = ErrorType; - -export const usePutEcoregionsId = , TContext = unknown>(options?: { - mutation?: UseMutationOptions< - Awaited>, - TError, - { id: number; data: EcoregionRequest }, - TContext - >; - request?: SecondParameter; -}): UseMutationResult< - Awaited>, - TError, - { id: number; data: EcoregionRequest }, - TContext -> => { - const mutationOptions = getPutEcoregionsIdMutationOptions(options); - - return useMutation(mutationOptions); -}; -export const deleteEcoregionsId = (id: number, options?: SecondParameter) => { - return API({ url: `/ecoregions/${id}`, method: "DELETE" }, options); -}; - -export const getDeleteEcoregionsIdMutationOptions = < - TError = ErrorType, - TContext = unknown, ->(options?: { - mutation?: UseMutationOptions< - Awaited>, - TError, - { id: number }, - TContext - >; - request?: SecondParameter; -}): UseMutationOptions< - Awaited>, - TError, - { id: number }, - TContext -> => { - const { mutation: mutationOptions, request: requestOptions } = options ?? {}; - - const mutationFn: MutationFunction< - Awaited>, - { id: number } - > = (props) => { - const { id } = props ?? {}; - - return deleteEcoregionsId(id, requestOptions); - }; - - return { mutationFn, ...mutationOptions }; -}; - -export type DeleteEcoregionsIdMutationResult = NonNullable< - Awaited> ->; - -export type DeleteEcoregionsIdMutationError = ErrorType; - -export const useDeleteEcoregionsId = , TContext = unknown>(options?: { - mutation?: UseMutationOptions< - Awaited>, - TError, - { id: number }, - TContext - >; - request?: SecondParameter; -}): UseMutationResult< - Awaited>, - TError, - { id: number }, - TContext -> => { - const mutationOptions = getDeleteEcoregionsIdMutationOptions(options); - - return useMutation(mutationOptions); -}; -export const postEcoregionsIdLocalizations = ( - id: number, - ecoregionLocalizationRequest: EcoregionLocalizationRequest, - options?: SecondParameter, -) => { - return API( - { - url: `/ecoregions/${id}/localizations`, - method: "POST", - headers: { "Content-Type": "application/json" }, - data: ecoregionLocalizationRequest, - }, - options, - ); -}; - -export const getPostEcoregionsIdLocalizationsMutationOptions = < - TError = ErrorType, - TContext = unknown, ->(options?: { - mutation?: UseMutationOptions< - Awaited>, - TError, - { id: number; data: EcoregionLocalizationRequest }, - TContext - >; - request?: SecondParameter; -}): UseMutationOptions< - Awaited>, - TError, - { id: number; data: EcoregionLocalizationRequest }, - TContext -> => { - const { mutation: mutationOptions, request: requestOptions } = options ?? {}; - - const mutationFn: MutationFunction< - Awaited>, - { id: number; data: EcoregionLocalizationRequest } - > = (props) => { - const { id, data } = props ?? {}; - - return postEcoregionsIdLocalizations(id, data, requestOptions); - }; - - return { mutationFn, ...mutationOptions }; -}; - -export type PostEcoregionsIdLocalizationsMutationResult = NonNullable< - Awaited> ->; -export type PostEcoregionsIdLocalizationsMutationBody = EcoregionLocalizationRequest; -export type PostEcoregionsIdLocalizationsMutationError = ErrorType; - -export const usePostEcoregionsIdLocalizations = < - TError = ErrorType, - TContext = unknown, ->(options?: { - mutation?: UseMutationOptions< - Awaited>, - TError, - { id: number; data: EcoregionLocalizationRequest }, - TContext - >; - request?: SecondParameter; -}): UseMutationResult< - Awaited>, - TError, - { id: number; data: EcoregionLocalizationRequest }, - TContext -> => { - const mutationOptions = getPostEcoregionsIdLocalizationsMutationOptions(options); - - return useMutation(mutationOptions); -}; diff --git a/client/src/types/generated/layer.ts b/client/src/types/generated/layer.ts deleted file mode 100644 index 5e5eb2f..0000000 --- a/client/src/types/generated/layer.ts +++ /dev/null @@ -1,414 +0,0 @@ -/** - * Generated by orval v6.29.1 🍺 - * Do not edit manually. - * DOCUMENTATION - * OpenAPI spec version: 1.0.0 - */ -import { useMutation, useQuery } from "@tanstack/react-query"; -import type { - MutationFunction, - QueryFunction, - QueryKey, - UseMutationOptions, - UseMutationResult, - UseQueryOptions, - UseQueryResult, -} from "@tanstack/react-query"; -import type { - Error, - GetLayersIdParams, - GetLayersParams, - LayerListResponse, - LayerLocalizationRequest, - LayerLocalizationResponse, - LayerRequest, - LayerResponse, -} from "./strapi.schemas"; -import { API } from "../../services/api/index"; -import type { ErrorType } from "../../services/api/index"; - -type SecondParameter any> = Parameters[1]; - -export const getLayers = ( - params?: GetLayersParams, - options?: SecondParameter, - signal?: AbortSignal, -) => { - return API({ url: `/layers`, method: "GET", params, signal }, options); -}; - -export const getGetLayersQueryKey = (params?: GetLayersParams) => { - return [`/layers`, ...(params ? [params] : [])] as const; -}; - -export const getGetLayersQueryOptions = < - TData = Awaited>, - TError = ErrorType, ->( - params?: GetLayersParams, - options?: { - query?: Partial>, TError, TData>>; - request?: SecondParameter; - }, -) => { - const { query: queryOptions, request: requestOptions } = options ?? {}; - - const queryKey = queryOptions?.queryKey ?? getGetLayersQueryKey(params); - - const queryFn: QueryFunction>> = ({ signal }) => - getLayers(params, requestOptions, signal); - - return { queryKey, queryFn, ...queryOptions } as UseQueryOptions< - Awaited>, - TError, - TData - > & { queryKey: QueryKey }; -}; - -export type GetLayersQueryResult = NonNullable>>; -export type GetLayersQueryError = ErrorType; - -export const useGetLayers = < - TData = Awaited>, - TError = ErrorType, ->( - params?: GetLayersParams, - options?: { - query?: Partial>, TError, TData>>; - request?: SecondParameter; - }, -): UseQueryResult & { queryKey: QueryKey } => { - const queryOptions = getGetLayersQueryOptions(params, options); - - const query = useQuery(queryOptions) as UseQueryResult & { queryKey: QueryKey }; - - query.queryKey = queryOptions.queryKey; - - return query; -}; - -export const postLayers = (layerRequest: LayerRequest, options?: SecondParameter) => { - return API( - { - url: `/layers`, - method: "POST", - headers: { "Content-Type": "application/json" }, - data: layerRequest, - }, - options, - ); -}; - -export const getPostLayersMutationOptions = < - TError = ErrorType, - TContext = unknown, ->(options?: { - mutation?: UseMutationOptions< - Awaited>, - TError, - { data: LayerRequest }, - TContext - >; - request?: SecondParameter; -}): UseMutationOptions< - Awaited>, - TError, - { data: LayerRequest }, - TContext -> => { - const { mutation: mutationOptions, request: requestOptions } = options ?? {}; - - const mutationFn: MutationFunction< - Awaited>, - { data: LayerRequest } - > = (props) => { - const { data } = props ?? {}; - - return postLayers(data, requestOptions); - }; - - return { mutationFn, ...mutationOptions }; -}; - -export type PostLayersMutationResult = NonNullable>>; -export type PostLayersMutationBody = LayerRequest; -export type PostLayersMutationError = ErrorType; - -export const usePostLayers = , TContext = unknown>(options?: { - mutation?: UseMutationOptions< - Awaited>, - TError, - { data: LayerRequest }, - TContext - >; - request?: SecondParameter; -}): UseMutationResult< - Awaited>, - TError, - { data: LayerRequest }, - TContext -> => { - const mutationOptions = getPostLayersMutationOptions(options); - - return useMutation(mutationOptions); -}; -export const getLayersId = ( - id: number, - params?: GetLayersIdParams, - options?: SecondParameter, - signal?: AbortSignal, -) => { - return API({ url: `/layers/${id}`, method: "GET", params, signal }, options); -}; - -export const getGetLayersIdQueryKey = (id: number, params?: GetLayersIdParams) => { - return [`/layers/${id}`, ...(params ? [params] : [])] as const; -}; - -export const getGetLayersIdQueryOptions = < - TData = Awaited>, - TError = ErrorType, ->( - id: number, - params?: GetLayersIdParams, - options?: { - query?: Partial>, TError, TData>>; - request?: SecondParameter; - }, -) => { - const { query: queryOptions, request: requestOptions } = options ?? {}; - - const queryKey = queryOptions?.queryKey ?? getGetLayersIdQueryKey(id, params); - - const queryFn: QueryFunction>> = ({ signal }) => - getLayersId(id, params, requestOptions, signal); - - return { queryKey, queryFn, enabled: !!id, ...queryOptions } as UseQueryOptions< - Awaited>, - TError, - TData - > & { queryKey: QueryKey }; -}; - -export type GetLayersIdQueryResult = NonNullable>>; -export type GetLayersIdQueryError = ErrorType; - -export const useGetLayersId = < - TData = Awaited>, - TError = ErrorType, ->( - id: number, - params?: GetLayersIdParams, - options?: { - query?: Partial>, TError, TData>>; - request?: SecondParameter; - }, -): UseQueryResult & { queryKey: QueryKey } => { - const queryOptions = getGetLayersIdQueryOptions(id, params, options); - - const query = useQuery(queryOptions) as UseQueryResult & { queryKey: QueryKey }; - - query.queryKey = queryOptions.queryKey; - - return query; -}; - -export const putLayersId = ( - id: number, - layerRequest: LayerRequest, - options?: SecondParameter, -) => { - return API( - { - url: `/layers/${id}`, - method: "PUT", - headers: { "Content-Type": "application/json" }, - data: layerRequest, - }, - options, - ); -}; - -export const getPutLayersIdMutationOptions = < - TError = ErrorType, - TContext = unknown, ->(options?: { - mutation?: UseMutationOptions< - Awaited>, - TError, - { id: number; data: LayerRequest }, - TContext - >; - request?: SecondParameter; -}): UseMutationOptions< - Awaited>, - TError, - { id: number; data: LayerRequest }, - TContext -> => { - const { mutation: mutationOptions, request: requestOptions } = options ?? {}; - - const mutationFn: MutationFunction< - Awaited>, - { id: number; data: LayerRequest } - > = (props) => { - const { id, data } = props ?? {}; - - return putLayersId(id, data, requestOptions); - }; - - return { mutationFn, ...mutationOptions }; -}; - -export type PutLayersIdMutationResult = NonNullable>>; -export type PutLayersIdMutationBody = LayerRequest; -export type PutLayersIdMutationError = ErrorType; - -export const usePutLayersId = , TContext = unknown>(options?: { - mutation?: UseMutationOptions< - Awaited>, - TError, - { id: number; data: LayerRequest }, - TContext - >; - request?: SecondParameter; -}): UseMutationResult< - Awaited>, - TError, - { id: number; data: LayerRequest }, - TContext -> => { - const mutationOptions = getPutLayersIdMutationOptions(options); - - return useMutation(mutationOptions); -}; -export const deleteLayersId = (id: number, options?: SecondParameter) => { - return API({ url: `/layers/${id}`, method: "DELETE" }, options); -}; - -export const getDeleteLayersIdMutationOptions = < - TError = ErrorType, - TContext = unknown, ->(options?: { - mutation?: UseMutationOptions< - Awaited>, - TError, - { id: number }, - TContext - >; - request?: SecondParameter; -}): UseMutationOptions< - Awaited>, - TError, - { id: number }, - TContext -> => { - const { mutation: mutationOptions, request: requestOptions } = options ?? {}; - - const mutationFn: MutationFunction>, { id: number }> = ( - props, - ) => { - const { id } = props ?? {}; - - return deleteLayersId(id, requestOptions); - }; - - return { mutationFn, ...mutationOptions }; -}; - -export type DeleteLayersIdMutationResult = NonNullable>>; - -export type DeleteLayersIdMutationError = ErrorType; - -export const useDeleteLayersId = , TContext = unknown>(options?: { - mutation?: UseMutationOptions< - Awaited>, - TError, - { id: number }, - TContext - >; - request?: SecondParameter; -}): UseMutationResult< - Awaited>, - TError, - { id: number }, - TContext -> => { - const mutationOptions = getDeleteLayersIdMutationOptions(options); - - return useMutation(mutationOptions); -}; -export const postLayersIdLocalizations = ( - id: number, - layerLocalizationRequest: LayerLocalizationRequest, - options?: SecondParameter, -) => { - return API( - { - url: `/layers/${id}/localizations`, - method: "POST", - headers: { "Content-Type": "application/json" }, - data: layerLocalizationRequest, - }, - options, - ); -}; - -export const getPostLayersIdLocalizationsMutationOptions = < - TError = ErrorType, - TContext = unknown, ->(options?: { - mutation?: UseMutationOptions< - Awaited>, - TError, - { id: number; data: LayerLocalizationRequest }, - TContext - >; - request?: SecondParameter; -}): UseMutationOptions< - Awaited>, - TError, - { id: number; data: LayerLocalizationRequest }, - TContext -> => { - const { mutation: mutationOptions, request: requestOptions } = options ?? {}; - - const mutationFn: MutationFunction< - Awaited>, - { id: number; data: LayerLocalizationRequest } - > = (props) => { - const { id, data } = props ?? {}; - - return postLayersIdLocalizations(id, data, requestOptions); - }; - - return { mutationFn, ...mutationOptions }; -}; - -export type PostLayersIdLocalizationsMutationResult = NonNullable< - Awaited> ->; -export type PostLayersIdLocalizationsMutationBody = LayerLocalizationRequest; -export type PostLayersIdLocalizationsMutationError = ErrorType; - -export const usePostLayersIdLocalizations = < - TError = ErrorType, - TContext = unknown, ->(options?: { - mutation?: UseMutationOptions< - Awaited>, - TError, - { id: number; data: LayerLocalizationRequest }, - TContext - >; - request?: SecondParameter; -}): UseMutationResult< - Awaited>, - TError, - { id: number; data: LayerLocalizationRequest }, - TContext -> => { - const mutationOptions = getPostLayersIdLocalizationsMutationOptions(options); - - return useMutation(mutationOptions); -}; diff --git a/client/src/types/generated/rangeland.ts b/client/src/types/generated/rangeland.ts deleted file mode 100644 index 8ea6de3..0000000 --- a/client/src/types/generated/rangeland.ts +++ /dev/null @@ -1,425 +0,0 @@ -/** - * Generated by orval v6.29.1 🍺 - * Do not edit manually. - * DOCUMENTATION - * OpenAPI spec version: 1.0.0 - */ -import { useMutation, useQuery } from "@tanstack/react-query"; -import type { - MutationFunction, - QueryFunction, - QueryKey, - UseMutationOptions, - UseMutationResult, - UseQueryOptions, - UseQueryResult, -} from "@tanstack/react-query"; -import type { - Error, - GetRangelandsIdParams, - GetRangelandsParams, - RangelandListResponse, - RangelandLocalizationRequest, - RangelandLocalizationResponse, - RangelandRequest, - RangelandResponse, -} from "./strapi.schemas"; -import { API } from "../../services/api/index"; -import type { ErrorType } from "../../services/api/index"; - -type SecondParameter any> = Parameters[1]; - -export const getRangelands = ( - params?: GetRangelandsParams, - options?: SecondParameter, - signal?: AbortSignal, -) => { - return API({ url: `/rangelands`, method: "GET", params, signal }, options); -}; - -export const getGetRangelandsQueryKey = (params?: GetRangelandsParams) => { - return [`/rangelands`, ...(params ? [params] : [])] as const; -}; - -export const getGetRangelandsQueryOptions = < - TData = Awaited>, - TError = ErrorType, ->( - params?: GetRangelandsParams, - options?: { - query?: Partial>, TError, TData>>; - request?: SecondParameter; - }, -) => { - const { query: queryOptions, request: requestOptions } = options ?? {}; - - const queryKey = queryOptions?.queryKey ?? getGetRangelandsQueryKey(params); - - const queryFn: QueryFunction>> = ({ signal }) => - getRangelands(params, requestOptions, signal); - - return { queryKey, queryFn, ...queryOptions } as UseQueryOptions< - Awaited>, - TError, - TData - > & { queryKey: QueryKey }; -}; - -export type GetRangelandsQueryResult = NonNullable>>; -export type GetRangelandsQueryError = ErrorType; - -export const useGetRangelands = < - TData = Awaited>, - TError = ErrorType, ->( - params?: GetRangelandsParams, - options?: { - query?: Partial>, TError, TData>>; - request?: SecondParameter; - }, -): UseQueryResult & { queryKey: QueryKey } => { - const queryOptions = getGetRangelandsQueryOptions(params, options); - - const query = useQuery(queryOptions) as UseQueryResult & { queryKey: QueryKey }; - - query.queryKey = queryOptions.queryKey; - - return query; -}; - -export const postRangelands = ( - rangelandRequest: RangelandRequest, - options?: SecondParameter, -) => { - return API( - { - url: `/rangelands`, - method: "POST", - headers: { "Content-Type": "application/json" }, - data: rangelandRequest, - }, - options, - ); -}; - -export const getPostRangelandsMutationOptions = < - TError = ErrorType, - TContext = unknown, ->(options?: { - mutation?: UseMutationOptions< - Awaited>, - TError, - { data: RangelandRequest }, - TContext - >; - request?: SecondParameter; -}): UseMutationOptions< - Awaited>, - TError, - { data: RangelandRequest }, - TContext -> => { - const { mutation: mutationOptions, request: requestOptions } = options ?? {}; - - const mutationFn: MutationFunction< - Awaited>, - { data: RangelandRequest } - > = (props) => { - const { data } = props ?? {}; - - return postRangelands(data, requestOptions); - }; - - return { mutationFn, ...mutationOptions }; -}; - -export type PostRangelandsMutationResult = NonNullable>>; -export type PostRangelandsMutationBody = RangelandRequest; -export type PostRangelandsMutationError = ErrorType; - -export const usePostRangelands = , TContext = unknown>(options?: { - mutation?: UseMutationOptions< - Awaited>, - TError, - { data: RangelandRequest }, - TContext - >; - request?: SecondParameter; -}): UseMutationResult< - Awaited>, - TError, - { data: RangelandRequest }, - TContext -> => { - const mutationOptions = getPostRangelandsMutationOptions(options); - - return useMutation(mutationOptions); -}; -export const getRangelandsId = ( - id: number, - params?: GetRangelandsIdParams, - options?: SecondParameter, - signal?: AbortSignal, -) => { - return API( - { url: `/rangelands/${id}`, method: "GET", params, signal }, - options, - ); -}; - -export const getGetRangelandsIdQueryKey = (id: number, params?: GetRangelandsIdParams) => { - return [`/rangelands/${id}`, ...(params ? [params] : [])] as const; -}; - -export const getGetRangelandsIdQueryOptions = < - TData = Awaited>, - TError = ErrorType, ->( - id: number, - params?: GetRangelandsIdParams, - options?: { - query?: Partial>, TError, TData>>; - request?: SecondParameter; - }, -) => { - const { query: queryOptions, request: requestOptions } = options ?? {}; - - const queryKey = queryOptions?.queryKey ?? getGetRangelandsIdQueryKey(id, params); - - const queryFn: QueryFunction>> = ({ signal }) => - getRangelandsId(id, params, requestOptions, signal); - - return { queryKey, queryFn, enabled: !!id, ...queryOptions } as UseQueryOptions< - Awaited>, - TError, - TData - > & { queryKey: QueryKey }; -}; - -export type GetRangelandsIdQueryResult = NonNullable>>; -export type GetRangelandsIdQueryError = ErrorType; - -export const useGetRangelandsId = < - TData = Awaited>, - TError = ErrorType, ->( - id: number, - params?: GetRangelandsIdParams, - options?: { - query?: Partial>, TError, TData>>; - request?: SecondParameter; - }, -): UseQueryResult & { queryKey: QueryKey } => { - const queryOptions = getGetRangelandsIdQueryOptions(id, params, options); - - const query = useQuery(queryOptions) as UseQueryResult & { queryKey: QueryKey }; - - query.queryKey = queryOptions.queryKey; - - return query; -}; - -export const putRangelandsId = ( - id: number, - rangelandRequest: RangelandRequest, - options?: SecondParameter, -) => { - return API( - { - url: `/rangelands/${id}`, - method: "PUT", - headers: { "Content-Type": "application/json" }, - data: rangelandRequest, - }, - options, - ); -}; - -export const getPutRangelandsIdMutationOptions = < - TError = ErrorType, - TContext = unknown, ->(options?: { - mutation?: UseMutationOptions< - Awaited>, - TError, - { id: number; data: RangelandRequest }, - TContext - >; - request?: SecondParameter; -}): UseMutationOptions< - Awaited>, - TError, - { id: number; data: RangelandRequest }, - TContext -> => { - const { mutation: mutationOptions, request: requestOptions } = options ?? {}; - - const mutationFn: MutationFunction< - Awaited>, - { id: number; data: RangelandRequest } - > = (props) => { - const { id, data } = props ?? {}; - - return putRangelandsId(id, data, requestOptions); - }; - - return { mutationFn, ...mutationOptions }; -}; - -export type PutRangelandsIdMutationResult = NonNullable< - Awaited> ->; -export type PutRangelandsIdMutationBody = RangelandRequest; -export type PutRangelandsIdMutationError = ErrorType; - -export const usePutRangelandsId = , TContext = unknown>(options?: { - mutation?: UseMutationOptions< - Awaited>, - TError, - { id: number; data: RangelandRequest }, - TContext - >; - request?: SecondParameter; -}): UseMutationResult< - Awaited>, - TError, - { id: number; data: RangelandRequest }, - TContext -> => { - const mutationOptions = getPutRangelandsIdMutationOptions(options); - - return useMutation(mutationOptions); -}; -export const deleteRangelandsId = (id: number, options?: SecondParameter) => { - return API({ url: `/rangelands/${id}`, method: "DELETE" }, options); -}; - -export const getDeleteRangelandsIdMutationOptions = < - TError = ErrorType, - TContext = unknown, ->(options?: { - mutation?: UseMutationOptions< - Awaited>, - TError, - { id: number }, - TContext - >; - request?: SecondParameter; -}): UseMutationOptions< - Awaited>, - TError, - { id: number }, - TContext -> => { - const { mutation: mutationOptions, request: requestOptions } = options ?? {}; - - const mutationFn: MutationFunction< - Awaited>, - { id: number } - > = (props) => { - const { id } = props ?? {}; - - return deleteRangelandsId(id, requestOptions); - }; - - return { mutationFn, ...mutationOptions }; -}; - -export type DeleteRangelandsIdMutationResult = NonNullable< - Awaited> ->; - -export type DeleteRangelandsIdMutationError = ErrorType; - -export const useDeleteRangelandsId = , TContext = unknown>(options?: { - mutation?: UseMutationOptions< - Awaited>, - TError, - { id: number }, - TContext - >; - request?: SecondParameter; -}): UseMutationResult< - Awaited>, - TError, - { id: number }, - TContext -> => { - const mutationOptions = getDeleteRangelandsIdMutationOptions(options); - - return useMutation(mutationOptions); -}; -export const postRangelandsIdLocalizations = ( - id: number, - rangelandLocalizationRequest: RangelandLocalizationRequest, - options?: SecondParameter, -) => { - return API( - { - url: `/rangelands/${id}/localizations`, - method: "POST", - headers: { "Content-Type": "application/json" }, - data: rangelandLocalizationRequest, - }, - options, - ); -}; - -export const getPostRangelandsIdLocalizationsMutationOptions = < - TError = ErrorType, - TContext = unknown, ->(options?: { - mutation?: UseMutationOptions< - Awaited>, - TError, - { id: number; data: RangelandLocalizationRequest }, - TContext - >; - request?: SecondParameter; -}): UseMutationOptions< - Awaited>, - TError, - { id: number; data: RangelandLocalizationRequest }, - TContext -> => { - const { mutation: mutationOptions, request: requestOptions } = options ?? {}; - - const mutationFn: MutationFunction< - Awaited>, - { id: number; data: RangelandLocalizationRequest } - > = (props) => { - const { id, data } = props ?? {}; - - return postRangelandsIdLocalizations(id, data, requestOptions); - }; - - return { mutationFn, ...mutationOptions }; -}; - -export type PostRangelandsIdLocalizationsMutationResult = NonNullable< - Awaited> ->; -export type PostRangelandsIdLocalizationsMutationBody = RangelandLocalizationRequest; -export type PostRangelandsIdLocalizationsMutationError = ErrorType; - -export const usePostRangelandsIdLocalizations = < - TError = ErrorType, - TContext = unknown, ->(options?: { - mutation?: UseMutationOptions< - Awaited>, - TError, - { id: number; data: RangelandLocalizationRequest }, - TContext - >; - request?: SecondParameter; -}): UseMutationResult< - Awaited>, - TError, - { id: number; data: RangelandLocalizationRequest }, - TContext -> => { - const mutationOptions = getPostRangelandsIdLocalizationsMutationOptions(options); - - return useMutation(mutationOptions); -}; diff --git a/client/src/types/generated/strapi.schemas.ts b/client/src/types/generated/strapi.schemas.ts deleted file mode 100644 index 949022f..0000000 --- a/client/src/types/generated/strapi.schemas.ts +++ /dev/null @@ -1,1958 +0,0 @@ -/** - * Generated by orval v6.29.1 🍺 - * Do not edit manually. - * DOCUMENTATION - * OpenAPI spec version: 1.0.0 - */ -export type GetRangelandsIdPopulateOneOf = { [key: string]: any }; - -export type GetRangelandsIdParams = { - /** - * Relations to return - */ - populate?: string | GetRangelandsIdPopulateOneOf; -}; - -export type GetRangelandsPopulateOneOf = { [key: string]: any }; - -export type GetRangelandsParams = { - /** - * Sort by attributes ascending (asc) or descending (desc) - */ - sort?: string; - /** - * Return page/pageSize (default: true) - */ - "pagination[withCount]"?: boolean; - /** - * Page number (default: 0) - */ - "pagination[page]"?: number; - /** - * Page size (default: 25) - */ - "pagination[pageSize]"?: number; - /** - * Offset value (default: 0) - */ - "pagination[start]"?: number; - /** - * Number of entities to return (default: 25) - */ - "pagination[limit]"?: number; - /** - * Fields to return (ex: ['title','author','test']) - */ - fields?: string[]; - /** - * Relations to return - */ - populate?: string | GetRangelandsPopulateOneOf; - /** - * Filters to apply - */ - filters?: { [key: string]: any }; - /** - * Locale to apply - */ - locale?: string; -}; - -export type GetLayersIdPopulateOneOf = { [key: string]: any }; - -export type GetLayersIdParams = { - /** - * Relations to return - */ - populate?: string | GetLayersIdPopulateOneOf; -}; - -export type GetLayersPopulateOneOf = { [key: string]: any }; - -export type GetLayersParams = { - /** - * Sort by attributes ascending (asc) or descending (desc) - */ - sort?: string; - /** - * Return page/pageSize (default: true) - */ - "pagination[withCount]"?: boolean; - /** - * Page number (default: 0) - */ - "pagination[page]"?: number; - /** - * Page size (default: 25) - */ - "pagination[pageSize]"?: number; - /** - * Offset value (default: 0) - */ - "pagination[start]"?: number; - /** - * Number of entities to return (default: 25) - */ - "pagination[limit]"?: number; - /** - * Fields to return (ex: ['title','author','test']) - */ - fields?: string[]; - /** - * Relations to return - */ - populate?: string | GetLayersPopulateOneOf; - /** - * Filters to apply - */ - filters?: { [key: string]: any }; - /** - * Locale to apply - */ - locale?: string; -}; - -export type GetEcoregionsIdPopulateOneOf = { [key: string]: any }; - -export type GetEcoregionsIdParams = { - /** - * Relations to return - */ - populate?: string | GetEcoregionsIdPopulateOneOf; -}; - -export type GetEcoregionsPopulateOneOf = { [key: string]: any }; - -export type GetEcoregionsParams = { - /** - * Sort by attributes ascending (asc) or descending (desc) - */ - sort?: string; - /** - * Return page/pageSize (default: true) - */ - "pagination[withCount]"?: boolean; - /** - * Page number (default: 0) - */ - "pagination[page]"?: number; - /** - * Page size (default: 25) - */ - "pagination[pageSize]"?: number; - /** - * Offset value (default: 0) - */ - "pagination[start]"?: number; - /** - * Number of entities to return (default: 25) - */ - "pagination[limit]"?: number; - /** - * Fields to return (ex: ['title','author','test']) - */ - fields?: string[]; - /** - * Relations to return - */ - populate?: string | GetEcoregionsPopulateOneOf; - /** - * Filters to apply - */ - filters?: { [key: string]: any }; - /** - * Locale to apply - */ - locale?: string; -}; - -export type GetDatasetsIdPopulateOneOf = { [key: string]: any }; - -export type GetDatasetsIdParams = { - /** - * Relations to return - */ - populate?: string | GetDatasetsIdPopulateOneOf; -}; - -export type GetDatasetsPopulateOneOf = { [key: string]: any }; - -export type GetDatasetsParams = { - /** - * Sort by attributes ascending (asc) or descending (desc) - */ - sort?: string; - /** - * Return page/pageSize (default: true) - */ - "pagination[withCount]"?: boolean; - /** - * Page number (default: 0) - */ - "pagination[page]"?: number; - /** - * Page size (default: 25) - */ - "pagination[pageSize]"?: number; - /** - * Offset value (default: 0) - */ - "pagination[start]"?: number; - /** - * Number of entities to return (default: 25) - */ - "pagination[limit]"?: number; - /** - * Fields to return (ex: ['title','author','test']) - */ - fields?: string[]; - /** - * Relations to return - */ - populate?: string | GetDatasetsPopulateOneOf; - /** - * Filters to apply - */ - filters?: { [key: string]: any }; - /** - * Locale to apply - */ - locale?: string; -}; - -/** - * every controller of the api - */ -export type UsersPermissionsPermissionsTreeControllers = { - [key: string]: { - [key: string]: { - enabled?: boolean; - policy?: string; - }; - }; -}; - -export interface UsersPermissionsPermissionsTree { - [key: string]: { - /** every controller of the api */ - controllers?: UsersPermissionsPermissionsTreeControllers; - }; -} - -export type UsersPermissionsRoleRequestBody = { - description?: string; - name?: string; - permissions?: UsersPermissionsPermissionsTree; - type?: string; -}; - -export interface UsersPermissionsUser { - blocked?: boolean; - confirmed?: boolean; - createdAt?: string; - email?: string; - id?: number; - provider?: string; - updatedAt?: string; - username?: string; -} - -export interface UsersPermissionsUserRegistration { - jwt?: string; - user?: UsersPermissionsUser; -} - -export interface UsersPermissionsRole { - createdAt?: string; - description?: string; - id?: number; - name?: string; - type?: string; - updatedAt?: string; -} - -export type UploadFileProviderMetadata = { [key: string]: any }; - -export interface UploadFile { - alternativeText?: string; - caption?: string; - createdAt?: string; - ext?: string; - formats?: number; - hash?: string; - height?: number; - id?: number; - mime?: string; - name?: string; - previewUrl?: string; - provider?: string; - provider_metadata?: UploadFileProviderMetadata; - size?: number; - updatedAt?: string; - url?: string; - width?: number; -} - -export type RangelandResponseMeta = { [key: string]: any }; - -export interface RangelandResponse { - data?: RangelandResponseDataObject; - meta?: RangelandResponseMeta; -} - -export type RangelandUpdatedByDataAttributes = { [key: string]: any }; - -export type RangelandUpdatedByData = { - attributes?: RangelandUpdatedByDataAttributes; - id?: number; -}; - -export type RangelandUpdatedBy = { - data?: RangelandUpdatedByData; -}; - -export type RangelandLocalizations = { - data?: RangelandListResponseDataItemLocalized[]; -}; - -export type RangelandEcoregionsDataItem = { - attributes?: RangelandEcoregionsDataItemAttributes; - id?: number; -}; - -export type RangelandEcoregions = { - data?: RangelandEcoregionsDataItem[]; -}; - -export interface Rangeland { - code?: string; - color?: string; - createdAt?: string; - createdBy?: RangelandCreatedBy; - ecoregions?: RangelandEcoregions; - locale?: string; - localizations?: RangelandLocalizations; - publishedAt?: string; - slug?: string; - title: string; - updatedAt?: string; - updatedBy?: RangelandUpdatedBy; -} - -export interface RangelandResponseDataObject { - attributes?: Rangeland; - id?: number; -} - -export type RangelandEcoregionsDataItemAttributesUpdatedByDataAttributes = { [key: string]: any }; - -export type RangelandEcoregionsDataItemAttributesUpdatedByData = { - attributes?: RangelandEcoregionsDataItemAttributesUpdatedByDataAttributes; - id?: number; -}; - -export type RangelandEcoregionsDataItemAttributesUpdatedBy = { - data?: RangelandEcoregionsDataItemAttributesUpdatedByData; -}; - -export type RangelandEcoregionsDataItemAttributesRangeland = { - data?: RangelandEcoregionsDataItemAttributesRangelandData; -}; - -export type RangelandEcoregionsDataItemAttributes = { - code?: string; - color?: string; - createdAt?: string; - createdBy?: RangelandEcoregionsDataItemAttributesCreatedBy; - locale?: string; - localizations?: RangelandEcoregionsDataItemAttributesLocalizations; - publishedAt?: string; - rangeland?: RangelandEcoregionsDataItemAttributesRangeland; - slug?: string; - title?: string; - updatedAt?: string; - updatedBy?: RangelandEcoregionsDataItemAttributesUpdatedBy; -}; - -export type RangelandEcoregionsDataItemAttributesRangelandDataAttributesUpdatedByDataAttributes = { - [key: string]: any; -}; - -export type RangelandEcoregionsDataItemAttributesRangelandDataAttributesUpdatedByData = { - attributes?: RangelandEcoregionsDataItemAttributesRangelandDataAttributesUpdatedByDataAttributes; - id?: number; -}; - -export type RangelandEcoregionsDataItemAttributesRangelandDataAttributesUpdatedBy = { - data?: RangelandEcoregionsDataItemAttributesRangelandDataAttributesUpdatedByData; -}; - -export type RangelandEcoregionsDataItemAttributesRangelandDataAttributesLocalizations = { - data?: unknown[]; -}; - -export type RangelandEcoregionsDataItemAttributesRangelandDataAttributesEcoregionsDataItemAttributes = - { [key: string]: any }; - -export type RangelandEcoregionsDataItemAttributesRangelandDataAttributesEcoregionsDataItem = { - attributes?: RangelandEcoregionsDataItemAttributesRangelandDataAttributesEcoregionsDataItemAttributes; - id?: number; -}; - -export type RangelandEcoregionsDataItemAttributesRangelandDataAttributesEcoregions = { - data?: RangelandEcoregionsDataItemAttributesRangelandDataAttributesEcoregionsDataItem[]; -}; - -export type RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributes = { - blocked?: boolean; - createdAt?: string; - createdBy?: RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesCreatedBy; - email?: string; - firstname?: string; - isActive?: boolean; - lastname?: string; - preferedLanguage?: string; - registrationToken?: string; - resetPasswordToken?: string; - roles?: RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRoles; - updatedAt?: string; - updatedBy?: RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesUpdatedBy; - username?: string; -}; - -export type RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByData = { - attributes?: RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributes; - id?: number; -}; - -export type RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedBy = { - data?: RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByData; -}; - -export type RangelandEcoregionsDataItemAttributesRangelandDataAttributes = { - code?: string; - color?: string; - createdAt?: string; - createdBy?: RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedBy; - ecoregions?: RangelandEcoregionsDataItemAttributesRangelandDataAttributesEcoregions; - locale?: string; - localizations?: RangelandEcoregionsDataItemAttributesRangelandDataAttributesLocalizations; - publishedAt?: string; - slug?: string; - title?: string; - updatedAt?: string; - updatedBy?: RangelandEcoregionsDataItemAttributesRangelandDataAttributesUpdatedBy; -}; - -export type RangelandEcoregionsDataItemAttributesRangelandData = { - attributes?: RangelandEcoregionsDataItemAttributesRangelandDataAttributes; - id?: number; -}; - -export type RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesUpdatedByDataAttributes = - { [key: string]: any }; - -export type RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesUpdatedByData = - { - attributes?: RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesUpdatedByDataAttributes; - id?: number; - }; - -export type RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesUpdatedBy = - { - data?: RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesUpdatedByData; - }; - -export type RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItem = - { - attributes?: RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributes; - id?: number; - }; - -export type RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRoles = - { - data?: RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItem[]; - }; - -export type RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesUsersDataItemAttributes = - { [key: string]: any }; - -export type RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesUsersDataItem = - { - attributes?: RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesUsersDataItemAttributes; - id?: number; - }; - -export type RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesUsers = - { - data?: RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesUsersDataItem[]; - }; - -export type RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesUpdatedByDataAttributes = - { [key: string]: any }; - -export type RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesUpdatedByData = - { - attributes?: RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesUpdatedByDataAttributes; - id?: number; - }; - -export type RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesUpdatedBy = - { - data?: RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesUpdatedByData; - }; - -export type RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributes = - { - action?: string; - actionParameters?: unknown; - conditions?: unknown; - createdAt?: string; - createdBy?: RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesCreatedBy; - properties?: unknown; - role?: RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesRole; - subject?: string; - updatedAt?: string; - updatedBy?: RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesUpdatedBy; - }; - -export type RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItem = - { - attributes?: RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributes; - id?: number; - }; - -export type RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissions = - { - data?: RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItem[]; - }; - -export type RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributes = - { - code?: string; - createdAt?: string; - createdBy?: RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesCreatedBy; - description?: string; - name?: string; - permissions?: RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissions; - updatedAt?: string; - updatedBy?: RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesUpdatedBy; - users?: RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesUsers; - }; - -export type RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesUpdatedByDataAttributes = - { [key: string]: any }; - -export type RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesUpdatedByData = - { - attributes?: RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesUpdatedByDataAttributes; - id?: number; - }; - -export type RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesUpdatedBy = - { - data?: RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesUpdatedByData; - }; - -export type RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesRoleDataAttributes = - { [key: string]: any }; - -export type RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesRoleData = - { - attributes?: RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesRoleDataAttributes; - id?: number; - }; - -export type RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesRole = - { - data?: RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesRoleData; - }; - -export type RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesCreatedByDataAttributes = - { [key: string]: any }; - -export type RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesCreatedByData = - { - attributes?: RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesCreatedByDataAttributes; - id?: number; - }; - -export type RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesCreatedBy = - { - data?: RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesCreatedByData; - }; - -export type RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesCreatedByDataAttributes = - { [key: string]: any }; - -export type RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesCreatedByData = - { - attributes?: RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesCreatedByDataAttributes; - id?: number; - }; - -export type RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesCreatedBy = - { - data?: RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesCreatedByData; - }; - -export type RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesCreatedByData = - { - attributes?: RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesCreatedByDataAttributes; - id?: number; - }; - -export type RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesCreatedBy = - { - data?: RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesCreatedByData; - }; - -export type RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesCreatedByDataAttributes = - { [key: string]: any }; - -export type RangelandEcoregionsDataItemAttributesLocalizations = { - data?: unknown[]; -}; - -export type RangelandEcoregionsDataItemAttributesCreatedByDataAttributes = { [key: string]: any }; - -export type RangelandEcoregionsDataItemAttributesCreatedByData = { - attributes?: RangelandEcoregionsDataItemAttributesCreatedByDataAttributes; - id?: number; -}; - -export type RangelandEcoregionsDataItemAttributesCreatedBy = { - data?: RangelandEcoregionsDataItemAttributesCreatedByData; -}; - -export type RangelandCreatedByDataAttributes = { [key: string]: any }; - -export type RangelandCreatedByData = { - attributes?: RangelandCreatedByDataAttributes; - id?: number; -}; - -export type RangelandCreatedBy = { - data?: RangelandCreatedByData; -}; - -export type RangelandListResponseMetaPagination = { - page?: number; - /** @maximum 1 */ - pageCount?: number; - /** @minimum 25 */ - pageSize?: number; - total?: number; -}; - -export type RangelandListResponseMeta = { - pagination?: RangelandListResponseMetaPagination; -}; - -export interface RangelandListResponseDataItem { - attributes?: Rangeland; - id?: number; -} - -export interface RangelandListResponse { - data?: RangelandListResponseDataItem[]; - meta?: RangelandListResponseMeta; -} - -export type RangelandLocalizationListResponseMetaPagination = { - page?: number; - /** @maximum 1 */ - pageCount?: number; - /** @minimum 25 */ - pageSize?: number; - total?: number; -}; - -export type RangelandLocalizationListResponseMeta = { - pagination?: RangelandLocalizationListResponseMetaPagination; -}; - -export interface RangelandListResponseDataItemLocalized { - attributes?: Rangeland; - id?: number; -} - -export interface RangelandLocalizationListResponse { - data?: RangelandListResponseDataItemLocalized[]; - meta?: RangelandLocalizationListResponseMeta; -} - -export type RangelandLocalizationResponseMeta = { [key: string]: any }; - -export interface RangelandResponseDataObjectLocalized { - attributes?: Rangeland; - id?: number; -} - -export interface RangelandLocalizationResponse { - data?: RangelandResponseDataObjectLocalized; - meta?: RangelandLocalizationResponseMeta; -} - -export type RangelandRequestDataEcoregionsItem = number | string; - -export type RangelandRequestData = { - code?: string; - color?: string; - ecoregions?: RangelandRequestDataEcoregionsItem[]; - locale?: string; - slug?: string; - title: string; -}; - -export interface RangelandRequest { - data: RangelandRequestData; -} - -export type RangelandLocalizationRequestEcoregionsItem = number | string; - -export interface RangelandLocalizationRequest { - code?: string; - color?: string; - ecoregions?: RangelandLocalizationRequestEcoregionsItem[]; - locale: string; - slug?: string; - title: string; -} - -export type DefaultLegendComponentType = - (typeof DefaultLegendComponentType)[keyof typeof DefaultLegendComponentType]; - -// eslint-disable-next-line @typescript-eslint/no-redeclare -export const DefaultLegendComponentType = { - Basic: "Basic", - Gradient: "Gradient", - Choropleth: "Choropleth", -} as const; - -export type DefaultLegendComponentItemsItem = { - color?: string; - id?: number; - name?: string; -}; - -export interface DefaultLegendComponent { - id?: number; - items?: DefaultLegendComponentItemsItem[]; - type?: DefaultLegendComponentType; -} - -export type LayerResponseMeta = { [key: string]: any }; - -export interface LayerResponse { - data?: LayerResponseDataObject; - meta?: LayerResponseMeta; -} - -export type LayerUpdatedByDataAttributes = { [key: string]: any }; - -export type LayerUpdatedByData = { - attributes?: LayerUpdatedByDataAttributes; - id?: number; -}; - -export type LayerUpdatedBy = { - data?: LayerUpdatedByData; -}; - -export type LayerType = (typeof LayerType)[keyof typeof LayerType]; - -// eslint-disable-next-line @typescript-eslint/no-redeclare -export const LayerType = { - Mapbox: "Mapbox", - GEE: "GEE", -} as const; - -export type LayerLocalizations = { - data?: LayerListResponseDataItemLocalized[]; -}; - -export interface Layer { - config: unknown; - createdAt?: string; - createdBy?: LayerCreatedBy; - description: string; - interaction_config?: unknown; - legend: DefaultLegendComponent; - locale?: string; - localizations?: LayerLocalizations; - params_config?: unknown; - publishedAt?: string; - slug?: string; - title: string; - type: LayerType; - updatedAt?: string; - updatedBy?: LayerUpdatedBy; -} - -export interface LayerResponseDataObject { - attributes?: Layer; - id?: number; -} - -export type LayerCreatedByDataAttributesUpdatedByData = { - attributes?: LayerCreatedByDataAttributesUpdatedByDataAttributes; - id?: number; -}; - -export type LayerCreatedByDataAttributesUpdatedBy = { - data?: LayerCreatedByDataAttributesUpdatedByData; -}; - -export type LayerCreatedByDataAttributes = { - blocked?: boolean; - createdAt?: string; - createdBy?: LayerCreatedByDataAttributesCreatedBy; - email?: string; - firstname?: string; - isActive?: boolean; - lastname?: string; - preferedLanguage?: string; - registrationToken?: string; - resetPasswordToken?: string; - roles?: LayerCreatedByDataAttributesRoles; - updatedAt?: string; - updatedBy?: LayerCreatedByDataAttributesUpdatedBy; - username?: string; -}; - -export type LayerCreatedByData = { - attributes?: LayerCreatedByDataAttributes; - id?: number; -}; - -export type LayerCreatedBy = { - data?: LayerCreatedByData; -}; - -export type LayerCreatedByDataAttributesUpdatedByDataAttributes = { [key: string]: any }; - -export type LayerCreatedByDataAttributesRolesDataItem = { - attributes?: LayerCreatedByDataAttributesRolesDataItemAttributes; - id?: number; -}; - -export type LayerCreatedByDataAttributesRoles = { - data?: LayerCreatedByDataAttributesRolesDataItem[]; -}; - -export type LayerCreatedByDataAttributesRolesDataItemAttributesUsersDataItemAttributes = { - [key: string]: any; -}; - -export type LayerCreatedByDataAttributesRolesDataItemAttributesUsersDataItem = { - attributes?: LayerCreatedByDataAttributesRolesDataItemAttributesUsersDataItemAttributes; - id?: number; -}; - -export type LayerCreatedByDataAttributesRolesDataItemAttributesUsers = { - data?: LayerCreatedByDataAttributesRolesDataItemAttributesUsersDataItem[]; -}; - -export type LayerCreatedByDataAttributesRolesDataItemAttributes = { - code?: string; - createdAt?: string; - createdBy?: LayerCreatedByDataAttributesRolesDataItemAttributesCreatedBy; - description?: string; - name?: string; - permissions?: LayerCreatedByDataAttributesRolesDataItemAttributesPermissions; - updatedAt?: string; - updatedBy?: LayerCreatedByDataAttributesRolesDataItemAttributesUpdatedBy; - users?: LayerCreatedByDataAttributesRolesDataItemAttributesUsers; -}; - -export type LayerCreatedByDataAttributesRolesDataItemAttributesUpdatedByDataAttributes = { - [key: string]: any; -}; - -export type LayerCreatedByDataAttributesRolesDataItemAttributesUpdatedByData = { - attributes?: LayerCreatedByDataAttributesRolesDataItemAttributesUpdatedByDataAttributes; - id?: number; -}; - -export type LayerCreatedByDataAttributesRolesDataItemAttributesUpdatedBy = { - data?: LayerCreatedByDataAttributesRolesDataItemAttributesUpdatedByData; -}; - -export type LayerCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributes = { - action?: string; - actionParameters?: unknown; - conditions?: unknown; - createdAt?: string; - createdBy?: LayerCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesCreatedBy; - properties?: unknown; - role?: LayerCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesRole; - subject?: string; - updatedAt?: string; - updatedBy?: LayerCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesUpdatedBy; -}; - -export type LayerCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItem = { - attributes?: LayerCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributes; - id?: number; -}; - -export type LayerCreatedByDataAttributesRolesDataItemAttributesPermissions = { - data?: LayerCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItem[]; -}; - -export type LayerCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesUpdatedByDataAttributes = - { [key: string]: any }; - -export type LayerCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesUpdatedByData = - { - attributes?: LayerCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesUpdatedByDataAttributes; - id?: number; - }; - -export type LayerCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesUpdatedBy = - { - data?: LayerCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesUpdatedByData; - }; - -export type LayerCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesRoleDataAttributes = - { [key: string]: any }; - -export type LayerCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesRoleData = - { - attributes?: LayerCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesRoleDataAttributes; - id?: number; - }; - -export type LayerCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesRole = { - data?: LayerCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesRoleData; -}; - -export type LayerCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesCreatedByDataAttributes = - { [key: string]: any }; - -export type LayerCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesCreatedByData = - { - attributes?: LayerCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesCreatedByDataAttributes; - id?: number; - }; - -export type LayerCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesCreatedBy = - { - data?: LayerCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesCreatedByData; - }; - -export type LayerCreatedByDataAttributesRolesDataItemAttributesCreatedByDataAttributes = { - [key: string]: any; -}; - -export type LayerCreatedByDataAttributesRolesDataItemAttributesCreatedByData = { - attributes?: LayerCreatedByDataAttributesRolesDataItemAttributesCreatedByDataAttributes; - id?: number; -}; - -export type LayerCreatedByDataAttributesRolesDataItemAttributesCreatedBy = { - data?: LayerCreatedByDataAttributesRolesDataItemAttributesCreatedByData; -}; - -export type LayerCreatedByDataAttributesCreatedByDataAttributes = { [key: string]: any }; - -export type LayerCreatedByDataAttributesCreatedByData = { - attributes?: LayerCreatedByDataAttributesCreatedByDataAttributes; - id?: number; -}; - -export type LayerCreatedByDataAttributesCreatedBy = { - data?: LayerCreatedByDataAttributesCreatedByData; -}; - -export type LayerListResponseMetaPagination = { - page?: number; - /** @maximum 1 */ - pageCount?: number; - /** @minimum 25 */ - pageSize?: number; - total?: number; -}; - -export type LayerListResponseMeta = { - pagination?: LayerListResponseMetaPagination; -}; - -export interface LayerListResponseDataItem { - attributes?: Layer; - id?: number; -} - -export interface LayerListResponse { - data?: LayerListResponseDataItem[]; - meta?: LayerListResponseMeta; -} - -export type LayerLocalizationListResponseMetaPagination = { - page?: number; - /** @maximum 1 */ - pageCount?: number; - /** @minimum 25 */ - pageSize?: number; - total?: number; -}; - -export type LayerLocalizationListResponseMeta = { - pagination?: LayerLocalizationListResponseMetaPagination; -}; - -export interface LayerListResponseDataItemLocalized { - attributes?: Layer; - id?: number; -} - -export interface LayerLocalizationListResponse { - data?: LayerListResponseDataItemLocalized[]; - meta?: LayerLocalizationListResponseMeta; -} - -export type LayerLocalizationResponseMeta = { [key: string]: any }; - -export interface LayerResponseDataObjectLocalized { - attributes?: Layer; - id?: number; -} - -export interface LayerLocalizationResponse { - data?: LayerResponseDataObjectLocalized; - meta?: LayerLocalizationResponseMeta; -} - -export type LayerRequestData = { - config: unknown; - description: string; - interaction_config?: unknown; - legend: DefaultLegendComponent; - locale?: string; - params_config?: unknown; - slug?: string; - title: string; - type: LayerRequestDataType; -}; - -export interface LayerRequest { - data: LayerRequestData; -} - -export type LayerRequestDataType = (typeof LayerRequestDataType)[keyof typeof LayerRequestDataType]; - -// eslint-disable-next-line @typescript-eslint/no-redeclare -export const LayerRequestDataType = { - Mapbox: "Mapbox", - GEE: "GEE", -} as const; - -export type LayerLocalizationRequestType = - (typeof LayerLocalizationRequestType)[keyof typeof LayerLocalizationRequestType]; - -// eslint-disable-next-line @typescript-eslint/no-redeclare -export const LayerLocalizationRequestType = { - Mapbox: "Mapbox", - GEE: "GEE", -} as const; - -export interface LayerLocalizationRequest { - config: unknown; - description: string; - interaction_config?: unknown; - legend: DefaultLegendComponent; - locale: string; - params_config?: unknown; - slug?: string; - title: string; - type: LayerLocalizationRequestType; -} - -export type EcoregionResponseMeta = { [key: string]: any }; - -export interface EcoregionResponseDataObject { - attributes?: Ecoregion; - id?: number; -} - -export interface EcoregionResponse { - data?: EcoregionResponseDataObject; - meta?: EcoregionResponseMeta; -} - -export type EcoregionUpdatedByDataAttributes = { [key: string]: any }; - -export type EcoregionUpdatedByData = { - attributes?: EcoregionUpdatedByDataAttributes; - id?: number; -}; - -export type EcoregionUpdatedBy = { - data?: EcoregionUpdatedByData; -}; - -export type EcoregionRangelandData = { - attributes?: EcoregionRangelandDataAttributes; - id?: number; -}; - -export type EcoregionRangeland = { - data?: EcoregionRangelandData; -}; - -export interface Ecoregion { - code?: string; - color?: string; - createdAt?: string; - createdBy?: EcoregionCreatedBy; - locale?: string; - localizations?: EcoregionLocalizations; - publishedAt?: string; - rangeland?: EcoregionRangeland; - slug?: string; - title: string; - updatedAt?: string; - updatedBy?: EcoregionUpdatedBy; -} - -export type EcoregionRangelandDataAttributesUpdatedByDataAttributes = { [key: string]: any }; - -export type EcoregionRangelandDataAttributesUpdatedByData = { - attributes?: EcoregionRangelandDataAttributesUpdatedByDataAttributes; - id?: number; -}; - -export type EcoregionRangelandDataAttributesUpdatedBy = { - data?: EcoregionRangelandDataAttributesUpdatedByData; -}; - -export type EcoregionRangelandDataAttributesLocalizations = { - data?: unknown[]; -}; - -export type EcoregionRangelandDataAttributesEcoregionsDataItem = { - attributes?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributes; - id?: number; -}; - -export type EcoregionRangelandDataAttributesEcoregions = { - data?: EcoregionRangelandDataAttributesEcoregionsDataItem[]; -}; - -export type EcoregionRangelandDataAttributes = { - code?: string; - color?: string; - createdAt?: string; - createdBy?: EcoregionRangelandDataAttributesCreatedBy; - ecoregions?: EcoregionRangelandDataAttributesEcoregions; - locale?: string; - localizations?: EcoregionRangelandDataAttributesLocalizations; - publishedAt?: string; - slug?: string; - title?: string; - updatedAt?: string; - updatedBy?: EcoregionRangelandDataAttributesUpdatedBy; -}; - -export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributesUpdatedByDataAttributes = { - [key: string]: any; -}; - -export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributesUpdatedByData = { - attributes?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributesUpdatedByDataAttributes; - id?: number; -}; - -export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributesUpdatedBy = { - data?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributesUpdatedByData; -}; - -export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributesRangelandDataAttributes = { - [key: string]: any; -}; - -export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributesRangelandData = { - attributes?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributesRangelandDataAttributes; - id?: number; -}; - -export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributesRangeland = { - data?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributesRangelandData; -}; - -export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributesLocalizations = { - data?: unknown[]; -}; - -export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByData = { - attributes?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributes; - id?: number; -}; - -export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedBy = { - data?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByData; -}; - -export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributes = { - code?: string; - color?: string; - createdAt?: string; - createdBy?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedBy; - locale?: string; - localizations?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributesLocalizations; - publishedAt?: string; - rangeland?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributesRangeland; - slug?: string; - title?: string; - updatedAt?: string; - updatedBy?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributesUpdatedBy; -}; - -export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesUpdatedByDataAttributes = - { [key: string]: any }; - -export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesUpdatedByData = - { - attributes?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesUpdatedByDataAttributes; - id?: number; - }; - -export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesUpdatedBy = - { - data?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesUpdatedByData; - }; - -export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItem = - { - attributes?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributes; - id?: number; - }; - -export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRoles = - { - data?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItem[]; - }; - -export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributes = { - blocked?: boolean; - createdAt?: string; - createdBy?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesCreatedBy; - email?: string; - firstname?: string; - isActive?: boolean; - lastname?: string; - preferedLanguage?: string; - registrationToken?: string; - resetPasswordToken?: string; - roles?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRoles; - updatedAt?: string; - updatedBy?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesUpdatedBy; - username?: string; -}; - -export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesUsersDataItemAttributes = - { [key: string]: any }; - -export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesUsersDataItem = - { - attributes?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesUsersDataItemAttributes; - id?: number; - }; - -export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesUsers = - { - data?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesUsersDataItem[]; - }; - -export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesUpdatedByData = - { - attributes?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesUpdatedByDataAttributes; - id?: number; - }; - -export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesUpdatedBy = - { - data?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesUpdatedByData; - }; - -export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributes = - { - code?: string; - createdAt?: string; - createdBy?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesCreatedBy; - description?: string; - name?: string; - permissions?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesPermissions; - updatedAt?: string; - updatedBy?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesUpdatedBy; - users?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesUsers; - }; - -export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesUpdatedByDataAttributes = - { [key: string]: any }; - -export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItem = - { - attributes?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributes; - id?: number; - }; - -export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesPermissions = - { - data?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItem[]; - }; - -export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesUpdatedByDataAttributes = - { [key: string]: any }; - -export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesUpdatedByData = - { - attributes?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesUpdatedByDataAttributes; - id?: number; - }; - -export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesUpdatedBy = - { - data?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesUpdatedByData; - }; - -export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributes = - { - action?: string; - actionParameters?: unknown; - conditions?: unknown; - createdAt?: string; - createdBy?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesCreatedBy; - properties?: unknown; - role?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesRole; - subject?: string; - updatedAt?: string; - updatedBy?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesUpdatedBy; - }; - -export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesRoleDataAttributes = - { [key: string]: any }; - -export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesRoleData = - { - attributes?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesRoleDataAttributes; - id?: number; - }; - -export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesRole = - { - data?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesRoleData; - }; - -export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesCreatedByDataAttributes = - { [key: string]: any }; - -export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesCreatedByData = - { - attributes?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesCreatedByDataAttributes; - id?: number; - }; - -export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesCreatedBy = - { - data?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesCreatedByData; - }; - -export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesCreatedByDataAttributes = - { [key: string]: any }; - -export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesCreatedByData = - { - attributes?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesCreatedByDataAttributes; - id?: number; - }; - -export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesCreatedBy = - { - data?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesCreatedByData; - }; - -export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesCreatedByDataAttributes = - { [key: string]: any }; - -export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesCreatedByData = - { - attributes?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesCreatedByDataAttributes; - id?: number; - }; - -export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesCreatedBy = - { - data?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesCreatedByData; - }; - -export type EcoregionRangelandDataAttributesCreatedByDataAttributes = { [key: string]: any }; - -export type EcoregionRangelandDataAttributesCreatedByData = { - attributes?: EcoregionRangelandDataAttributesCreatedByDataAttributes; - id?: number; -}; - -export type EcoregionRangelandDataAttributesCreatedBy = { - data?: EcoregionRangelandDataAttributesCreatedByData; -}; - -export type EcoregionCreatedByDataAttributes = { [key: string]: any }; - -export type EcoregionCreatedByData = { - attributes?: EcoregionCreatedByDataAttributes; - id?: number; -}; - -export type EcoregionCreatedBy = { - data?: EcoregionCreatedByData; -}; - -export type EcoregionListResponseMetaPagination = { - page?: number; - /** @maximum 1 */ - pageCount?: number; - /** @minimum 25 */ - pageSize?: number; - total?: number; -}; - -export type EcoregionListResponseMeta = { - pagination?: EcoregionListResponseMetaPagination; -}; - -export interface EcoregionListResponseDataItem { - attributes?: Ecoregion; - id?: number; -} - -export interface EcoregionListResponse { - data?: EcoregionListResponseDataItem[]; - meta?: EcoregionListResponseMeta; -} - -export type EcoregionLocalizationListResponseMetaPagination = { - page?: number; - /** @maximum 1 */ - pageCount?: number; - /** @minimum 25 */ - pageSize?: number; - total?: number; -}; - -export type EcoregionLocalizationListResponseMeta = { - pagination?: EcoregionLocalizationListResponseMetaPagination; -}; - -export interface EcoregionListResponseDataItemLocalized { - attributes?: Ecoregion; - id?: number; -} - -export type EcoregionLocalizations = { - data?: EcoregionListResponseDataItemLocalized[]; -}; - -export interface EcoregionLocalizationListResponse { - data?: EcoregionListResponseDataItemLocalized[]; - meta?: EcoregionLocalizationListResponseMeta; -} - -export type EcoregionLocalizationResponseMeta = { [key: string]: any }; - -export interface EcoregionResponseDataObjectLocalized { - attributes?: Ecoregion; - id?: number; -} - -export interface EcoregionLocalizationResponse { - data?: EcoregionResponseDataObjectLocalized; - meta?: EcoregionLocalizationResponseMeta; -} - -export type EcoregionRequestDataRangeland = number | string; - -export type EcoregionRequestData = { - code?: string; - color?: string; - locale?: string; - rangeland?: EcoregionRequestDataRangeland; - slug?: string; - title: string; -}; - -export interface EcoregionRequest { - data: EcoregionRequestData; -} - -export type EcoregionLocalizationRequestRangeland = number | string; - -export interface EcoregionLocalizationRequest { - code?: string; - color?: string; - locale: string; - rangeland?: EcoregionLocalizationRequestRangeland; - slug?: string; - title: string; -} - -export interface DefaultSourceComponent { - id?: number; - name?: string; - url?: string; -} - -export interface DefaultCitationsComponent { - id?: number; - name?: string; - url?: string; -} - -export type DefaultLayerComponentLayerData = { - attributes?: DefaultLayerComponentLayerDataAttributes; - id?: number; -}; - -export type DefaultLayerComponentLayer = { - data?: DefaultLayerComponentLayerData; -}; - -export interface DefaultLayerComponent { - id?: number; - layer?: DefaultLayerComponentLayer; - name?: string; -} - -export type DefaultLayerComponentLayerDataAttributesUpdatedByDataAttributes = { - [key: string]: any; -}; - -export type DefaultLayerComponentLayerDataAttributesUpdatedByData = { - attributes?: DefaultLayerComponentLayerDataAttributesUpdatedByDataAttributes; - id?: number; -}; - -export type DefaultLayerComponentLayerDataAttributesUpdatedBy = { - data?: DefaultLayerComponentLayerDataAttributesUpdatedByData; -}; - -export type DefaultLayerComponentLayerDataAttributesType = - (typeof DefaultLayerComponentLayerDataAttributesType)[keyof typeof DefaultLayerComponentLayerDataAttributesType]; - -// eslint-disable-next-line @typescript-eslint/no-redeclare -export const DefaultLayerComponentLayerDataAttributesType = { - Mapbox: "Mapbox", - GEE: "GEE", -} as const; - -export type DefaultLayerComponentLayerDataAttributesLocalizations = { - data?: unknown[]; -}; - -export type DefaultLayerComponentLayerDataAttributes = { - config?: unknown; - createdAt?: string; - createdBy?: DefaultLayerComponentLayerDataAttributesCreatedBy; - description?: string; - interaction_config?: unknown; - legend?: DefaultLayerComponentLayerDataAttributesLegend; - locale?: string; - localizations?: DefaultLayerComponentLayerDataAttributesLocalizations; - params_config?: unknown; - publishedAt?: string; - slug?: string; - title?: string; - type?: DefaultLayerComponentLayerDataAttributesType; - updatedAt?: string; - updatedBy?: DefaultLayerComponentLayerDataAttributesUpdatedBy; -}; - -export type DefaultLayerComponentLayerDataAttributesLegendType = - (typeof DefaultLayerComponentLayerDataAttributesLegendType)[keyof typeof DefaultLayerComponentLayerDataAttributesLegendType]; - -// eslint-disable-next-line @typescript-eslint/no-redeclare -export const DefaultLayerComponentLayerDataAttributesLegendType = { - Basic: "Basic", - Gradient: "Gradient", - Choropleth: "Choropleth", -} as const; - -export type DefaultLayerComponentLayerDataAttributesLegendItemsItem = { - color?: string; - id?: number; - name?: string; -}; - -export type DefaultLayerComponentLayerDataAttributesLegend = { - id?: number; - items?: DefaultLayerComponentLayerDataAttributesLegendItemsItem[]; - type?: DefaultLayerComponentLayerDataAttributesLegendType; -}; - -export type DefaultLayerComponentLayerDataAttributesCreatedByData = { - attributes?: DefaultLayerComponentLayerDataAttributesCreatedByDataAttributes; - id?: number; -}; - -export type DefaultLayerComponentLayerDataAttributesCreatedBy = { - data?: DefaultLayerComponentLayerDataAttributesCreatedByData; -}; - -export type DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesUpdatedByDataAttributes = - { [key: string]: any }; - -export type DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesUpdatedByData = { - attributes?: DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesUpdatedByDataAttributes; - id?: number; -}; - -export type DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesUpdatedBy = { - data?: DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesUpdatedByData; -}; - -export type DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItem = { - attributes?: DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributes; - id?: number; -}; - -export type DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRoles = { - data?: DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItem[]; -}; - -export type DefaultLayerComponentLayerDataAttributesCreatedByDataAttributes = { - blocked?: boolean; - createdAt?: string; - createdBy?: DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesCreatedBy; - email?: string; - firstname?: string; - isActive?: boolean; - lastname?: string; - preferedLanguage?: string; - registrationToken?: string; - resetPasswordToken?: string; - roles?: DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRoles; - updatedAt?: string; - updatedBy?: DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesUpdatedBy; - username?: string; -}; - -export type DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesUsersDataItemAttributes = - { [key: string]: any }; - -export type DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesUsersDataItem = - { - attributes?: DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesUsersDataItemAttributes; - id?: number; - }; - -export type DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesUsers = - { - data?: DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesUsersDataItem[]; - }; - -export type DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributes = - { - code?: string; - createdAt?: string; - createdBy?: DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesCreatedBy; - description?: string; - name?: string; - permissions?: DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissions; - updatedAt?: string; - updatedBy?: DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesUpdatedBy; - users?: DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesUsers; - }; - -export type DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesUpdatedByDataAttributes = - { [key: string]: any }; - -export type DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesUpdatedByData = - { - attributes?: DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesUpdatedByDataAttributes; - id?: number; - }; - -export type DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesUpdatedBy = - { - data?: DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesUpdatedByData; - }; - -export type DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItem = - { - attributes?: DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributes; - id?: number; - }; - -export type DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissions = - { - data?: DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItem[]; - }; - -export type DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesUpdatedByDataAttributes = - { [key: string]: any }; - -export type DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesUpdatedByData = - { - attributes?: DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesUpdatedByDataAttributes; - id?: number; - }; - -export type DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesUpdatedBy = - { - data?: DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesUpdatedByData; - }; - -export type DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributes = - { - action?: string; - actionParameters?: unknown; - conditions?: unknown; - createdAt?: string; - createdBy?: DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesCreatedBy; - properties?: unknown; - role?: DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesRole; - subject?: string; - updatedAt?: string; - updatedBy?: DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesUpdatedBy; - }; - -export type DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesRoleDataAttributes = - { [key: string]: any }; - -export type DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesRoleData = - { - attributes?: DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesRoleDataAttributes; - id?: number; - }; - -export type DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesRole = - { - data?: DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesRoleData; - }; - -export type DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesCreatedByData = - { - attributes?: DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesCreatedByDataAttributes; - id?: number; - }; - -export type DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesCreatedBy = - { - data?: DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesCreatedByData; - }; - -export type DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesCreatedByDataAttributes = - { [key: string]: any }; - -export type DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesCreatedByDataAttributes = - { [key: string]: any }; - -export type DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesCreatedByData = - { - attributes?: DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesCreatedByDataAttributes; - id?: number; - }; - -export type DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesCreatedBy = - { - data?: DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesCreatedByData; - }; - -export type DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesCreatedByDataAttributes = - { [key: string]: any }; - -export type DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesCreatedByData = { - attributes?: DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesCreatedByDataAttributes; - id?: number; -}; - -export type DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesCreatedBy = { - data?: DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesCreatedByData; -}; - -export type DatasetResponseMeta = { [key: string]: any }; - -export interface DatasetResponseDataObject { - attributes?: Dataset; - id?: number; -} - -export interface DatasetResponse { - data?: DatasetResponseDataObject; - meta?: DatasetResponseMeta; -} - -export type DatasetUpdatedByDataAttributes = { [key: string]: any }; - -export type DatasetUpdatedByData = { - attributes?: DatasetUpdatedByDataAttributes; - id?: number; -}; - -export type DatasetUpdatedBy = { - data?: DatasetUpdatedByData; -}; - -export type DatasetType = (typeof DatasetType)[keyof typeof DatasetType]; - -// eslint-disable-next-line @typescript-eslint/no-redeclare -export const DatasetType = { - Group: "Group", - Temporal: "Temporal", -} as const; - -export type DatasetLocalizations = { - data?: DatasetListResponseDataItemLocalized[]; -}; - -export type DatasetCreatedByDataAttributes = { [key: string]: any }; - -export type DatasetCreatedByData = { - attributes?: DatasetCreatedByDataAttributes; - id?: number; -}; - -export type DatasetCreatedBy = { - data?: DatasetCreatedByData; -}; - -export interface Dataset { - citations?: DefaultCitationsComponent[]; - createdAt?: string; - createdBy?: DatasetCreatedBy; - layers: DefaultLayerComponent[]; - locale?: string; - localizations?: DatasetLocalizations; - publishedAt?: string; - slug?: string; - sources?: DefaultSourceComponent[]; - title: string; - type: DatasetType; - updatedAt?: string; - updatedBy?: DatasetUpdatedBy; -} - -export type DatasetListResponseMetaPagination = { - page?: number; - /** @maximum 1 */ - pageCount?: number; - /** @minimum 25 */ - pageSize?: number; - total?: number; -}; - -export type DatasetListResponseMeta = { - pagination?: DatasetListResponseMetaPagination; -}; - -export interface DatasetListResponseDataItem { - attributes?: Dataset; - id?: number; -} - -export interface DatasetListResponse { - data?: DatasetListResponseDataItem[]; - meta?: DatasetListResponseMeta; -} - -export type DatasetLocalizationListResponseMetaPagination = { - page?: number; - /** @maximum 1 */ - pageCount?: number; - /** @minimum 25 */ - pageSize?: number; - total?: number; -}; - -export type DatasetLocalizationListResponseMeta = { - pagination?: DatasetLocalizationListResponseMetaPagination; -}; - -export interface DatasetListResponseDataItemLocalized { - attributes?: Dataset; - id?: number; -} - -export interface DatasetLocalizationListResponse { - data?: DatasetListResponseDataItemLocalized[]; - meta?: DatasetLocalizationListResponseMeta; -} - -export type DatasetLocalizationResponseMeta = { [key: string]: any }; - -export interface DatasetResponseDataObjectLocalized { - attributes?: Dataset; - id?: number; -} - -export interface DatasetLocalizationResponse { - data?: DatasetResponseDataObjectLocalized; - meta?: DatasetLocalizationResponseMeta; -} - -export type DatasetRequestDataType = - (typeof DatasetRequestDataType)[keyof typeof DatasetRequestDataType]; - -// eslint-disable-next-line @typescript-eslint/no-redeclare -export const DatasetRequestDataType = { - Group: "Group", - Temporal: "Temporal", -} as const; - -export type DatasetRequestData = { - citations?: DefaultCitationsComponent[]; - layers: DefaultLayerComponent[]; - locale?: string; - slug?: string; - sources?: DefaultSourceComponent[]; - title: string; - type: DatasetRequestDataType; -}; - -export interface DatasetRequest { - data: DatasetRequestData; -} - -export type DatasetLocalizationRequestType = - (typeof DatasetLocalizationRequestType)[keyof typeof DatasetLocalizationRequestType]; - -// eslint-disable-next-line @typescript-eslint/no-redeclare -export const DatasetLocalizationRequestType = { - Group: "Group", - Temporal: "Temporal", -} as const; - -export interface DatasetLocalizationRequest { - citations?: DefaultCitationsComponent[]; - layers: DefaultLayerComponent[]; - locale: string; - slug?: string; - sources?: DefaultSourceComponent[]; - title: string; - type: DatasetLocalizationRequestType; -} - -export type ErrorErrorDetails = { [key: string]: any }; - -export type ErrorError = { - details?: ErrorErrorDetails; - message?: string; - name?: string; - status?: number; -}; - -export interface Error { - /** @nullable */ - data?: ErrorData; - error: ErrorError; -} - -export type ErrorDataOneOfTwoItem = { [key: string]: any }; - -export type ErrorDataOneOf = { [key: string]: any }; - -/** - * @nullable - */ -export type ErrorData = ErrorDataOneOf | ErrorDataOneOfTwoItem[] | null; diff --git a/client/yarn.lock b/client/yarn.lock index 30915e6..e5cd854 100644 --- a/client/yarn.lock +++ b/client/yarn.lock @@ -2251,7 +2251,7 @@ __metadata: languageName: node linkType: hard -"@loaders.gl/core@npm:^4.2.0": +"@loaders.gl/core@npm:^4.2.0, @loaders.gl/core@npm:^4.2.2": version: 4.2.2 resolution: "@loaders.gl/core@npm:4.2.2" dependencies: @@ -2276,6 +2276,18 @@ __metadata: languageName: node linkType: hard +"@loaders.gl/csv@npm:^4.2.2": + version: 4.2.2 + resolution: "@loaders.gl/csv@npm:4.2.2" + dependencies: + "@loaders.gl/loader-utils": "npm:4.2.2" + "@loaders.gl/schema": "npm:4.2.2" + peerDependencies: + "@loaders.gl/core": ^4.0.0 + checksum: 10c0/fa84f13e3fdf9574524a45519e6ad7c1c3b7b20d9f50cd3b37ed4c7fc79552d5fde701c72ae84f8723a2bea55e4694de6ada06613678f258401fab80bde40e6d + languageName: node + linkType: hard + "@loaders.gl/draco@npm:4.2.2": version: 4.2.2 resolution: "@loaders.gl/draco@npm:4.2.2" @@ -4355,6 +4367,13 @@ __metadata: languageName: node linkType: hard +"@types/d3-dsv@npm:^3": + version: 3.0.7 + resolution: "@types/d3-dsv@npm:3.0.7" + checksum: 10c0/c0f01da862465594c8a28278b51c850af3b4239cc22b14fd1a19d7a98f93d94efa477bf59d8071beb285dca45bf614630811451e18e7c52add3a0abfee0a1871 + languageName: node + linkType: hard + "@types/d3-scale@npm:^3.0.0": version: 3.3.5 resolution: "@types/d3-scale@npm:3.3.5" @@ -5670,6 +5689,8 @@ __metadata: "@deck.gl/json": "npm:^9.0.17" "@deck.gl/layers": "npm:^9.0.17" "@deck.gl/mapbox": "npm:^9.0.17" + "@loaders.gl/core": "npm:^4.2.2" + "@loaders.gl/csv": "npm:^4.2.2" "@radix-ui/react-collapsible": "npm:^1.0.3" "@radix-ui/react-dialog": "npm:^1.0.5" "@radix-ui/react-popover": "npm:^1.0.7" @@ -5685,6 +5706,7 @@ __metadata: "@tanstack/react-query": "npm:^5.40.1" "@transifex/native": "npm:^7.1.0" "@types/color": "npm:^3.0.6" + "@types/d3-dsv": "npm:^3" "@types/express": "npm:^4" "@types/mapbox-gl": "npm:^3" "@types/node": "npm:^20" @@ -5696,6 +5718,7 @@ __metadata: clsx: "npm:^2.1.1" cmdk: "npm:^1.0.0" color: "npm:^4.2.3" + d3-dsv: "npm:^3.0.1" deck.gl: "npm:^9.0.17" eslint: "npm:^8" eslint-config-next: "npm:14.2.3" @@ -5842,6 +5865,13 @@ __metadata: languageName: node linkType: hard +"commander@npm:7, commander@npm:^7.2.0": + version: 7.2.0 + resolution: "commander@npm:7.2.0" + checksum: 10c0/8d690ff13b0356df7e0ebbe6c59b4712f754f4b724d4f473d3cc5b3fdcf978e3a5dc3078717858a2ceb50b0f84d0660a7f22a96cdc50fb877d0c9bb31593d23a + languageName: node + linkType: hard + "commander@npm:^4.0.0": version: 4.1.1 resolution: "commander@npm:4.1.1" @@ -5849,13 +5879,6 @@ __metadata: languageName: node linkType: hard -"commander@npm:^7.2.0": - version: 7.2.0 - resolution: "commander@npm:7.2.0" - checksum: 10c0/8d690ff13b0356df7e0ebbe6c59b4712f754f4b724d4f473d3cc5b3fdcf978e3a5dc3078717858a2ceb50b0f84d0660a7f22a96cdc50fb877d0c9bb31593d23a - languageName: node - linkType: hard - "compare-versions@npm:^6.1.0": version: 6.1.0 resolution: "compare-versions@npm:6.1.0" @@ -6065,6 +6088,27 @@ __metadata: languageName: node linkType: hard +"d3-dsv@npm:^3.0.1": + version: 3.0.1 + resolution: "d3-dsv@npm:3.0.1" + dependencies: + commander: "npm:7" + iconv-lite: "npm:0.6" + rw: "npm:1" + bin: + csv2json: bin/dsv2json.js + csv2tsv: bin/dsv2dsv.js + dsv2dsv: bin/dsv2dsv.js + dsv2json: bin/dsv2json.js + json2csv: bin/json2dsv.js + json2dsv: bin/json2dsv.js + json2tsv: bin/json2dsv.js + tsv2csv: bin/dsv2dsv.js + tsv2json: bin/dsv2json.js + checksum: 10c0/10e6af9e331950ed258f34ab49ac1b7060128ef81dcf32afc790bd1f7e8c3cc2aac7f5f875250a83f21f39bb5925fbd0872bb209f8aca32b3b77d32bab8a65ab + languageName: node + linkType: hard + "d3-format@npm:1 - 3, d3-format@npm:^3.1.0": version: 3.1.0 resolution: "d3-format@npm:3.1.0" @@ -7891,7 +7935,7 @@ __metadata: languageName: node linkType: hard -"iconv-lite@npm:^0.6.2": +"iconv-lite@npm:0.6, iconv-lite@npm:^0.6.2": version: 0.6.3 resolution: "iconv-lite@npm:0.6.3" dependencies: @@ -10751,7 +10795,7 @@ __metadata: languageName: node linkType: hard -"rw@npm:^1.3.3": +"rw@npm:1, rw@npm:^1.3.3": version: 1.3.3 resolution: "rw@npm:1.3.3" checksum: 10c0/b1e1ef37d1e79d9dc7050787866e30b6ddcb2625149276045c262c6b4d53075ddc35f387a856a8e76f0d0df59f4cd58fe24707e40797ebee66e542b840ed6a53 diff --git a/cms/src/extensions/documentation/documentation/1.0.0/full_documentation.json b/cms/src/extensions/documentation/documentation/1.0.0/full_documentation.json index 2f038d7..4ec5571 100644 --- a/cms/src/extensions/documentation/documentation/1.0.0/full_documentation.json +++ b/cms/src/extensions/documentation/documentation/1.0.0/full_documentation.json @@ -21,7 +21,11 @@ "name": "Apache 2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" }, +<<<<<<< HEAD "x-generation-date": "2024-06-13T08:40:32.783Z" +======= + "x-generation-date": "2024-06-10T15:12:02.509Z" +>>>>>>> b45498b (Masks: first steps) }, "servers": [ { From 875bb7fe933d0057baf0fc1abf6ff6b18cf3c932 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Barrenechea=20S=C3=A1nchez?= Date: Tue, 11 Jun 2024 18:07:04 +0200 Subject: [PATCH 09/19] Masks: geojson --- client/public/data/rangeland-biomes.json | 305484 +++++++++++++++ client/public/data/rangeland-ecoregions.json | 372 + client/public/data/rangeland-systems.json | 1 + .../src/containers/map/layer-manager/mask.tsx | 442 +- client/src/types/generated/dataset.ts | 420 + client/src/types/generated/ecoregion.ts | 425 + client/src/types/generated/layer.ts | 414 + client/src/types/generated/rangeland.ts | 425 + client/src/types/generated/strapi.schemas.ts | 1958 + .../1.0.0/full_documentation.json | 4 + 10 files changed, 309516 insertions(+), 429 deletions(-) create mode 100644 client/public/data/rangeland-biomes.json create mode 100644 client/public/data/rangeland-ecoregions.json create mode 100644 client/public/data/rangeland-systems.json create mode 100644 client/src/types/generated/dataset.ts create mode 100644 client/src/types/generated/ecoregion.ts create mode 100644 client/src/types/generated/layer.ts create mode 100644 client/src/types/generated/rangeland.ts create mode 100644 client/src/types/generated/strapi.schemas.ts diff --git a/client/public/data/rangeland-biomes.json b/client/public/data/rangeland-biomes.json new file mode 100644 index 0000000..2100a7c --- /dev/null +++ b/client/public/data/rangeland-biomes.json @@ -0,0 +1,305484 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + -58.07823557099988, + -32.98143094799991 + ], + [ + -58.105483629999924, + -33.07216002099989 + ], + [ + -58.17392354599991, + -33.11705768499996 + ], + [ + -58.3103675189999, + -33.11025711199994 + ], + [ + -58.360389542999826, + -33.15166388099988 + ], + [ + -58.34675553999989, + -33.32213368699996 + ], + [ + -58.429626577999954, + -33.51248905599988 + ], + [ + -58.41500049199993, + -33.90909187999995 + ], + [ + -58.23121653599998, + -34.06903720099996 + ], + [ + -58.207744524999896, + -34.164909744999875 + ], + [ + -58.10976460299986, + -34.17209236499991 + ], + [ + -57.99289656499991, + -34.27004764499998 + ], + [ + -57.85629652099993, + -34.48298989499989 + ], + [ + -57.766529522999974, + -34.481650969999976 + ], + [ + -57.61392959999995, + -34.43845432899997 + ], + [ + -57.126472476999936, + -34.45938863499998 + ], + [ + -57.044189511999946, + -34.54556029899982 + ], + [ + -56.81542558199993, + -34.69518850299988 + ], + [ + -56.63907955899998, + -34.7279324079999 + ], + [ + -56.553260604999934, + -34.76802053599994 + ], + [ + -56.449043540999924, + -34.760600539999984 + ], + [ + -56.38454462799996, + -34.853665313999954 + ], + [ + -56.25726660199996, + -34.910525965999966 + ], + [ + -56.14673260099994, + -34.918521630999976 + ], + [ + -56.018897512999956, + -34.88164142499994 + ], + [ + -55.89719060199997, + -34.81355120199993 + ], + [ + -55.782443520999834, + -34.778625319999946 + ], + [ + -55.60317958999997, + -34.777984103999984 + ], + [ + -55.53380961799985, + -34.80096661199997 + ], + [ + -55.329006530999834, + -34.81587432999993 + ], + [ + -55.23268555599998, + -34.90693985199988 + ], + [ + -55.05412654299994, + -34.88647141199988 + ], + [ + -54.92100549199989, + -34.959825637999984 + ], + [ + -54.44131051299996, + -34.76410668999989 + ], + [ + -54.190006471999936, + -34.674733808999974 + ], + [ + -53.98323061999997, + -34.50857448099998 + ], + [ + -53.78885663199998, + -34.4092650209999 + ], + [ + -53.75247162799997, + -34.26376507299989 + ], + [ + -53.627952588999904, + -34.13466046199994 + ], + [ + -53.53871147199993, + -34.0703881959999 + ], + [ + -53.47393059199993, + -33.846647539999935 + ], + [ + -53.3955235869999, + -33.76636868899993 + ], + [ + -53.41602354299994, + -33.71600116199994 + ], + [ + -53.2333066029999, + -33.55409900199987 + ], + [ + -53.116817594999986, + -33.490833737999935 + ], + [ + -52.95348347099991, + -33.35415389899998 + ], + [ + -52.70835454499996, + -33.10400018899992 + ], + [ + -52.64759848699998, + -33.00614096599992 + ], + [ + -52.48155952299993, + -32.66696457199993 + ], + [ + -52.46632759299996, + -32.534689757999956 + ], + [ + -52.358207579999885, + -32.277155781999966 + ], + [ + -52.246402546999946, + -32.15472366999995 + ], + [ + -52.161674581999875, + -32.125717757999894 + ], + [ + -52.22611247399993, + -32.039348615999984 + ], + [ + -52.23055655899992, + -31.978011692999928 + ], + [ + -52.14841860199988, + -31.944639480999854 + ], + [ + -52.219974573999934, + -31.8695542239999 + ], + [ + -52.22195052399991, + -31.754131058999974 + ], + [ + -52.137100517999954, + -31.69328296799995 + ], + [ + -52.054244566999955, + -31.67450750499995 + ], + [ + -52.00614551799998, + -31.603527871999972 + ], + [ + -52.002475585999946, + -31.44685937299994 + ], + [ + -51.91519147499997, + -31.31117681199993 + ], + [ + -51.84402861399991, + -31.32338337799996 + ], + [ + -51.780326484999875, + -31.273203269999897 + ], + [ + -51.65366754599995, + -31.273350288999893 + ], + [ + -51.61091648699988, + -31.136416812999926 + ], + [ + -51.46839848499991, + -31.097931136999932 + ], + [ + -51.500621537999905, + -30.93309296399991 + ], + [ + -51.400871525999946, + -30.788780060999898 + ], + [ + -51.374542626999926, + -30.633582752999928 + ], + [ + -51.300598482999874, + -30.639333576999945 + ], + [ + -51.25700353399998, + -30.46436570599991 + ], + [ + -51.173255579999875, + -30.38129786099995 + ], + [ + -51.28751349299995, + -30.300621706999948 + ], + [ + -51.32398650699997, + -30.232041142999947 + ], + [ + -51.29766448099997, + -30.025587994999853 + ], + [ + -51.229927471999986, + -30.041170287999932 + ], + [ + -51.25885761099994, + -30.11803049599996 + ], + [ + -51.13119150199998, + -30.260385218999943 + ], + [ + -51.020957572999976, + -30.294845905999978 + ], + [ + -51.05249750099995, + -30.353618636999897 + ], + [ + -50.93436061099993, + -30.418268423999905 + ], + [ + -50.898517580999965, + -30.324139818999925 + ], + [ + -50.78850962799993, + -30.288232080999876 + ], + [ + -50.66142254099992, + -30.291388202999883 + ], + [ + -50.65924458799992, + -30.199514329999943 + ], + [ + -50.60135262599988, + -30.192240848999973 + ], + [ + -50.534465541999964, + -30.27653446499994 + ], + [ + -50.569248595999966, + -30.46960255199997 + ], + [ + -50.695423563999896, + -30.434193704999984 + ], + [ + -50.67740649499996, + -30.60770664399996 + ], + [ + -50.68663446799991, + -30.700608306999982 + ], + [ + -50.733520486999964, + -30.802138467999953 + ], + [ + -50.87942159399995, + -30.886318591999952 + ], + [ + -50.965167624999935, + -30.903738197999928 + ], + [ + -50.95524948699989, + -31.000671722999982 + ], + [ + -51.09732861299989, + -31.09032942099998 + ], + [ + -51.17534250699998, + -31.077357922999965 + ], + [ + -51.154045598999915, + -31.229501703999972 + ], + [ + -51.17994350099997, + -31.375710760999937 + ], + [ + -51.23350956199994, + -31.455922891999876 + ], + [ + -51.34463146999997, + -31.52556946699997 + ], + [ + -51.43494446499983, + -31.490003710999872 + ], + [ + -51.587253535999935, + -31.697838867999963 + ], + [ + -51.702342598999905, + -31.778533963999962 + ], + [ + -51.80364259299995, + -31.78279482099998 + ], + [ + -51.87052950999998, + -31.867948251999962 + ], + [ + -52.047424546999935, + -31.813547855999957 + ], + [ + -52.08718863099995, + -31.864171365999937 + ], + [ + -52.01814655999988, + -31.927726308999866 + ], + [ + -52.03554956999989, + -32.03457964899991 + ], + [ + -51.9346505659999, + -31.998072939999872 + ], + [ + -51.82406660899983, + -31.910714900999892 + ], + [ + -51.45979362299988, + -31.724288800999943 + ], + [ + -51.21203646699996, + -31.53998114399991 + ], + [ + -51.05422551399994, + -31.37669462899987 + ], + [ + -50.90100046799989, + -31.253082008999968 + ], + [ + -50.68299454299995, + -30.82736481099994 + ], + [ + -50.47414349899992, + -30.59740779999987 + ], + [ + -50.387988598999925, + -30.42750092299997 + ], + [ + -50.31501356999996, + -30.331487730999868 + ], + [ + -50.288383592999935, + -30.19735045799996 + ], + [ + -50.18460859099997, + -29.927828683999962 + ], + [ + -50.29033657699995, + -29.874781630999905 + ], + [ + -50.43817155599987, + -29.886239021999927 + ], + [ + -50.51908860499998, + -29.81627058199996 + ], + [ + -50.669242521999934, + -29.809840823999878 + ], + [ + -50.81517061799991, + -29.906271267999898 + ], + [ + -50.92452662699992, + -29.845194685999957 + ], + [ + -50.975105544999906, + -29.714122506999956 + ], + [ + -51.056278577999876, + -29.73211577099994 + ], + [ + -51.08536562599994, + -29.628855752999982 + ], + [ + -51.17085248899997, + -29.63890548699993 + ], + [ + -51.35508755899997, + -29.604270792999955 + ], + [ + -51.76776452699994, + -29.602176993999876 + ], + [ + -51.845790489999956, + -29.663165396999887 + ], + [ + -51.81594856799995, + -29.771174266999935 + ], + [ + -51.875850509999964, + -29.794868565999934 + ], + [ + -51.93550149699996, + -29.70039412299991 + ], + [ + -52.06649756799993, + -29.70095302899989 + ], + [ + -52.11895755299997, + -29.647461063999913 + ], + [ + -52.21031560399996, + -29.778605158999937 + ], + [ + -52.350151564999976, + -29.792904517999943 + ], + [ + -52.353919565999945, + -29.901977385999885 + ], + [ + -52.20206060299995, + -29.886181018999935 + ], + [ + -51.89264247899996, + -29.89747462799994 + ], + [ + -51.73652651499998, + -29.948677662999955 + ], + [ + -51.891021586999955, + -30.088957361999974 + ], + [ + -51.897048509999934, + -29.949222653999925 + ], + [ + -51.99755859399994, + -29.95692847299989 + ], + [ + -52.213249604999874, + -30.037907547999964 + ], + [ + -52.17431247999997, + -30.081503670999894 + ], + [ + -52.19831456299994, + -30.17854616099993 + ], + [ + -52.27868259699994, + -30.163659732999918 + ], + [ + -52.2697865479999, + -30.052146892999815 + ], + [ + -52.38502162399993, + -30.059978439999952 + ], + [ + -52.40963759699997, + -30.18108922999994 + ], + [ + -52.55503847199992, + -30.095543190999877 + ], + [ + -52.61448259399998, + -30.141831580999963 + ], + [ + -52.83988957199989, + -30.07866572599994 + ], + [ + -52.86234653499986, + -30.161788891999947 + ], + [ + -52.97032154099992, + -30.23430727499988 + ], + [ + -52.96039552399992, + -30.089560523999864 + ], + [ + -53.11463947399989, + -30.25593442899998 + ], + [ + -53.152748466999924, + -30.184512063999875 + ], + [ + -53.05528252299996, + -30.07108613899993 + ], + [ + -53.102287565999916, + -30.0113503259999 + ], + [ + -53.254898553999965, + -30.10182592999996 + ], + [ + -53.27448655799992, + -29.9772115049999 + ], + [ + -53.5257225389999, + -30.10725187199995 + ], + [ + -53.61833955199995, + -30.069980229999885 + ], + [ + -53.613334549999934, + -30.006809681999982 + ], + [ + -53.732055490999926, + -29.98140262399994 + ], + [ + -53.82766350199995, + -30.03350570799995 + ], + [ + -53.91268148199998, + -30.03030868299993 + ], + [ + -54.07989156499997, + -30.093678217999923 + ], + [ + -54.098594608999974, + -30.02513604199993 + ], + [ + -53.8185045969999, + -29.916359893999925 + ], + [ + -53.87533155299997, + -29.86683776599989 + ], + [ + -53.761020498999926, + -29.827063455999905 + ], + [ + -53.75033558399997, + -29.776410105999958 + ], + [ + -53.908294560999934, + -29.69991098999992 + ], + [ + -53.968769489999886, + -29.597644897999885 + ], + [ + -54.09434163099996, + -29.596117212999957 + ], + [ + -54.280158533999895, + -29.484032223999918 + ], + [ + -54.40163460699989, + -29.55556673899997 + ], + [ + -54.46849453399989, + -29.508212505999893 + ], + [ + -54.60890147099991, + -29.47885053199991 + ], + [ + -54.658428627999854, + -29.519525057999942 + ], + [ + -54.73887662599998, + -29.43547921199996 + ], + [ + -54.827678531999936, + -29.405368397999894 + ], + [ + -54.93002358099983, + -29.4464149129999 + ], + [ + -55.04739352699988, + -29.45080166599996 + ], + [ + -55.111385502999894, + -29.390502086999902 + ], + [ + -55.151996493999945, + -29.291017948999922 + ], + [ + -55.09443259999995, + -29.25506008699989 + ], + [ + -55.03160453599992, + -29.334862007999902 + ], + [ + -54.96273747899994, + -29.361831116999895 + ], + [ + -54.892837602999975, + -29.263751952999883 + ], + [ + -54.83243559699997, + -29.250591358999884 + ], + [ + -54.64764061599993, + -29.27856528999996 + ], + [ + -54.424930597999946, + -29.20947393299997 + ], + [ + -54.40363352299988, + -29.296383539999965 + ], + [ + -54.3514176189999, + -29.34159669899998 + ], + [ + -54.259773577999965, + -29.309419243999912 + ], + [ + -54.16584747999997, + -29.327611493999882 + ], + [ + -54.06013156399996, + -29.402908644999968 + ], + [ + -54.00661462099987, + -29.498441888999878 + ], + [ + -53.77555857499988, + -29.499265662999846 + ], + [ + -53.690040530999966, + -29.540207068999905 + ], + [ + -53.648723615999984, + -29.502759742999956 + ], + [ + -53.5589256049999, + -29.301510414999882 + ], + [ + -53.495826469999884, + -29.295715669999936 + ], + [ + -53.372604613999954, + -29.22560239099988 + ], + [ + -53.224506610999924, + -29.02177026399994 + ], + [ + -53.188548580999964, + -29.12654220899998 + ], + [ + -53.03248961399993, + -29.11045783999998 + ], + [ + -52.94256553899993, + -29.042996594999977 + ], + [ + -52.92083361099992, + -28.982828946999916 + ], + [ + -53.1144066249999, + -28.838124608999976 + ], + [ + -53.12303160299996, + -28.769479503999946 + ], + [ + -53.19218448299989, + -28.602346198999953 + ], + [ + -53.18101157399997, + -28.358884097999976 + ], + [ + -53.09079748499994, + -28.275441580999882 + ], + [ + -53.00788856099996, + -28.34010896999996 + ], + [ + -52.87618254199998, + -28.374882300999843 + ], + [ + -52.62174249499998, + -28.366271906999884 + ], + [ + -52.48811350099999, + -28.267537948999916 + ], + [ + -52.384181588999866, + -28.21883188299995 + ], + [ + -52.30838051899991, + -28.222462587999928 + ], + [ + -52.23534363199997, + -28.290373940999928 + ], + [ + -52.148754547999886, + -28.200685397999905 + ], + [ + -52.13766461999995, + -28.083346296999878 + ], + [ + -52.21656062499994, + -27.996142987999974 + ], + [ + -52.22130159699998, + -27.83680971399997 + ], + [ + -52.280712526999935, + -27.707704097999965 + ], + [ + -52.33560946599988, + -27.697767686999896 + ], + [ + -52.477107558999876, + -27.77161543899996 + ], + [ + -52.541267507999976, + -27.757255226999916 + ], + [ + -52.63573055099988, + -27.461390807999976 + ], + [ + -52.802371502999904, + -27.435718882999936 + ], + [ + -52.85433561499997, + -27.47139829799994 + ], + [ + -52.824680608999984, + -27.749500289999958 + ], + [ + -52.771839582999974, + -27.85606193999996 + ], + [ + -52.813182481999945, + -27.904112875999886 + ], + [ + -52.804889593999974, + -27.999140859999955 + ], + [ + -52.71835348499991, + -27.978645932999882 + ], + [ + -52.74193546699996, + -28.091670197999917 + ], + [ + -52.86609257499998, + -28.079787675999967 + ], + [ + -52.90851556599995, + -28.015398398999935 + ], + [ + -53.04481855599994, + -28.071330838999984 + ], + [ + -53.14665247699992, + -27.974932078999927 + ], + [ + -53.23226959399989, + -27.938918393999984 + ], + [ + -53.20343752399998, + -27.81094668099996 + ], + [ + -53.24245058899993, + -27.627049736999822 + ], + [ + -53.356231571999956, + -27.545658942999864 + ], + [ + -53.527065487999835, + -27.555926605999957 + ], + [ + -53.6352275779999, + -27.68990395299994 + ], + [ + -53.70910651099996, + -27.855316117999905 + ], + [ + -53.874999629999934, + -27.876532055999917 + ], + [ + -53.903404558999966, + -27.769156523999982 + ], + [ + -53.9785045669999, + -27.779547065999964 + ], + [ + -53.985885503999896, + -27.85882863799992 + ], + [ + -54.07008758799992, + -27.934711516999982 + ], + [ + -54.17832947499994, + -27.789465706999977 + ], + [ + -54.23119346699991, + -27.675494622999906 + ], + [ + -54.31377046899996, + -27.700724486999945 + ], + [ + -54.30027359299993, + -27.86689052099996 + ], + [ + -54.4046705319999, + -27.989869300999942 + ], + [ + -54.300743481999916, + -28.119288065999854 + ], + [ + -54.21412657099995, + -28.084819499999924 + ], + [ + -54.05706060199998, + -28.059563316999913 + ], + [ + -53.93758746899988, + -28.103577528999892 + ], + [ + -53.65693653999995, + -28.02074102399996 + ], + [ + -53.62911951799998, + -28.144136887999878 + ], + [ + -53.47804258599996, + -28.14012799199992 + ], + [ + -53.43741952499994, + -28.294212684999934 + ], + [ + -53.49513261599992, + -28.382540174999917 + ], + [ + -53.65072655499995, + -28.376286269999923 + ], + [ + -53.73946760799993, + -28.325099495999893 + ], + [ + -53.810291504999896, + -28.422694520999983 + ], + [ + -53.806430632999934, + -28.531612993999943 + ], + [ + -53.913284475999944, + -28.549455215999956 + ], + [ + -54.003238557999964, + -28.62430812599996 + ], + [ + -54.11268659999996, + -28.585818761999917 + ], + [ + -54.185749470999895, + -28.465281796999932 + ], + [ + -54.301010529999985, + -28.383138977999977 + ], + [ + -54.40912249599995, + -28.39946340499995 + ], + [ + -54.45383458599997, + -28.457377997999913 + ], + [ + -54.568805630999975, + -28.459887874999936 + ], + [ + -54.6676525769999, + -28.321045503999926 + ], + [ + -54.73064760899996, + -28.2976224439999 + ], + [ + -54.72336960199988, + -28.17251985599995 + ], + [ + -54.84427252099988, + -28.19551661399987 + ], + [ + -54.824191491999954, + -28.327229504999934 + ], + [ + -54.898769475999984, + -28.314162787999976 + ], + [ + -54.94223048199996, + -28.181498215999966 + ], + [ + -55.031913492999934, + -28.202904422999836 + ], + [ + -55.1831855559999, + -28.199465662999955 + ], + [ + -55.2411915109999, + -28.135636129999966 + ], + [ + -55.360301539999966, + -28.07444370999997 + ], + [ + -55.45480347499995, + -28.098162651999928 + ], + [ + -55.61250261299995, + -28.119607750999933 + ], + [ + -55.67861152199998, + -28.19377183699993 + ], + [ + -55.768890486999965, + -28.2282194469999 + ], + [ + -55.691390571999875, + -28.29098984399991 + ], + [ + -55.73555750199995, + -28.360157140999945 + ], + [ + -55.87333654399998, + -28.354599100999906 + ], + [ + -55.89972663099991, + -28.471262619999948 + ], + [ + -56.01833357899994, + -28.505981133999967 + ], + [ + -56.02139246999997, + -28.597644453999976 + ], + [ + -56.11083961499992, + -28.66041987899996 + ], + [ + -56.18722557499996, + -28.75346990099996 + ], + [ + -56.28139458099997, + -28.776527175999888 + ], + [ + -56.325561510999876, + -28.92207741599998 + ], + [ + -56.39278454199996, + -28.950409253999908 + ], + [ + -56.43117550299996, + -29.071765298999935 + ], + [ + -56.51500660399995, + -29.09096069499998 + ], + [ + -56.62499946999992, + -29.172622559999922 + ], + [ + -56.69889047299989, + -29.3456728189999 + ], + [ + -56.7791674799999, + -29.390671065999925 + ], + [ + -56.82972762299994, + -29.486222247999933 + ], + [ + -56.96805551199992, + -29.598441849999915 + ], + [ + -56.970283589999895, + -29.63066188599987 + ], + [ + -57.10111252599995, + -29.759263916999885 + ], + [ + -57.274169489999906, + -29.79843322199997 + ], + [ + -57.31597154999997, + -29.860930870999937 + ], + [ + -57.322814534999964, + -29.973460938999835 + ], + [ + -57.53361554499992, + -30.161471720999828 + ], + [ + -57.62751062999985, + -30.184512063999875 + ], + [ + -57.62583961399997, + -30.283969212999978 + ], + [ + -57.66889158299995, + -30.352857895999932 + ], + [ + -57.87833355099991, + -30.506463311999937 + ], + [ + -57.889724556999965, + -30.602566860999957 + ], + [ + -57.81222547999988, + -30.716454629999873 + ], + [ + -57.81361352299996, + -30.910334923999926 + ], + [ + -57.89972651499994, + -30.926720370999874 + ], + [ + -57.852226604999885, + -31.038943157999938 + ], + [ + -57.91278049099992, + -31.154772342999877 + ], + [ + -57.90778353499991, + -31.23310240199993 + ], + [ + -57.975006565999934, + -31.323656292999885 + ], + [ + -57.991393521999896, + -31.404483822999964 + ], + [ + -58.07917048899998, + -31.45948385999992 + ], + [ + -58.00666853499996, + -31.52670655599991 + ], + [ + -57.97917153399993, + -31.60836691299994 + ], + [ + -58.03722358999994, + -31.784473883999908 + ], + [ + -58.16222358199997, + -31.83919212099994 + ], + [ + -58.20361358799988, + -31.88974857599993 + ], + [ + -58.14049953299991, + -32.01030347799991 + ], + [ + -58.17970655599993, + -32.13869143599993 + ], + [ + -58.09603152499989, + -32.249893641999904 + ], + [ + -58.10416750299993, + -32.316938473999926 + ], + [ + -58.19216156099992, + -32.399683951999975 + ], + [ + -58.198413622999965, + -32.48918926699997 + ], + [ + -58.13498658799995, + -32.652758921999975 + ], + [ + -58.13957953599993, + -32.759986597999955 + ], + [ + -58.07823557099988, + -32.98143094799991 + ] + ] + ], + [ + [ + [ + -54.25483646899994, + -28.27123369799989 + ], + [ + -54.18556959499995, + -28.277140256999928 + ], + [ + -54.02005349399997, + -28.206989259999943 + ], + [ + -54.10210461499997, + -28.14858063799994 + ], + [ + -54.302082574999986, + -28.18698618299993 + ], + [ + -54.37134157099996, + -28.249849450999875 + ], + [ + -54.25483646899994, + -28.27123369799989 + ] + ] + ], + [ + [ + [ + -59.267223624999986, + -16.279495767999947 + ], + [ + -59.14800647499993, + -16.190405188999932 + ], + [ + -58.968490583999824, + -16.141456215999938 + ], + [ + -58.93657263199998, + -16.10886335299989 + ], + [ + -58.78649549399984, + -16.138892358999897 + ], + [ + -58.5830536279999, + -16.131146977999947 + ], + [ + -58.30578647299984, + -16.26074595299997 + ], + [ + -58.338542615999984, + -16.49343931999988 + ], + [ + -58.462051634999966, + -16.67167914999993 + ], + [ + -58.47170658199991, + -16.79349133799991 + ], + [ + -58.37091453099998, + -16.822527758999968 + ], + [ + -58.33245048099997, + -16.771890837999877 + ], + [ + -58.3368456149999, + -16.67024098299993 + ], + [ + -58.30445056499997, + -16.59356785899996 + ], + [ + -58.177570511999875, + -16.566893625999967 + ], + [ + -58.05755657799989, + -16.722135021999975 + ], + [ + -58.00747252699989, + -16.838118601999895 + ], + [ + -57.86828247499989, + -16.864498127999923 + ], + [ + -57.86920549099989, + -16.75693366699994 + ], + [ + -57.951614518999975, + -16.71653926399989 + ], + [ + -58.00434155099998, + -16.650199349999923 + ], + [ + -58.04695548199999, + -16.52005957399996 + ], + [ + -58.14241747999989, + -16.396828330999938 + ], + [ + -58.18134655899985, + -16.29859426899992 + ], + [ + -58.07659154499993, + -16.218572574999826 + ], + [ + -58.07261651099992, + -16.138209401999973 + ], + [ + -58.208423626999945, + -16.01956691499987 + ], + [ + -58.21187562999995, + -15.965187641999933 + ], + [ + -58.088878576999946, + -15.879307834999906 + ], + [ + -57.94787250199988, + -15.892684011999961 + ], + [ + -57.86850761299996, + -16.039434707999817 + ], + [ + -57.833389617999956, + -16.2404602389999 + ], + [ + -57.80528660599998, + -16.30788996799987 + ], + [ + -57.663757499999974, + -16.202895398999942 + ], + [ + -57.62430153499997, + -16.09772497699987 + ], + [ + -57.44254247899988, + -16.067083923999917 + ], + [ + -57.34431059699995, + -16.100175845999956 + ], + [ + -57.390994611999986, + -16.185308488999908 + ], + [ + -57.34062155299989, + -16.21485385999989 + ], + [ + -57.23863558499994, + -16.205340399999955 + ], + [ + -57.08987859599995, + -16.26074192999988 + ], + [ + -56.91791546999991, + -16.206029391999834 + ], + [ + -56.74941658499989, + -16.25405736199997 + ], + [ + -56.6155015999999, + -16.235869469999955 + ], + [ + -56.48692655799994, + -16.12539145999989 + ], + [ + -56.39373354099996, + -16.091862505999927 + ], + [ + -56.32484049999988, + -16.113992071999974 + ], + [ + -56.18049255999995, + -16.22081741599993 + ], + [ + -56.024791499999935, + -16.16429287899996 + ], + [ + -55.927577515999985, + -16.184929626999917 + ], + [ + -55.84543654099997, + -16.160696203999976 + ], + [ + -55.624511533999964, + -15.99462253899992 + ], + [ + -55.61383449799996, + -16.0926693479999 + ], + [ + -55.75069857199992, + -16.1777200169999 + ], + [ + -55.83198157499993, + -16.313129662999927 + ], + [ + -55.76274856299989, + -16.359904705999952 + ], + [ + -55.70145757299997, + -16.33577421299998 + ], + [ + -55.521171551999885, + -16.152172646999873 + ], + [ + -55.44696052899991, + -16.204711421999946 + ], + [ + -55.409728617999974, + -16.366347203999908 + ], + [ + -55.41883454899994, + -16.440919320999967 + ], + [ + -55.494201604999944, + -16.666260249999937 + ], + [ + -55.623138577999896, + -16.71113545099996 + ], + [ + -55.77980456299997, + -16.68756386299998 + ], + [ + -55.83472061299983, + -16.595748829999934 + ], + [ + -55.99431959399993, + -16.66544653499983 + ], + [ + -56.11782056699997, + -16.614200584999878 + ], + [ + -56.23835753099996, + -16.64090381899996 + ], + [ + -56.276107611999976, + -16.720329895999896 + ], + [ + -56.18092355699997, + -16.77183484699998 + ], + [ + -55.798896526999954, + -16.765749249999942 + ], + [ + -55.61127047399998, + -16.79853204699998 + ], + [ + -55.453540489999966, + -16.79358756199997 + ], + [ + -55.17645254099989, + -16.663145534999956 + ], + [ + -54.97610057899993, + -16.63019258499986 + ], + [ + -54.952457576999905, + -16.749324071999922 + ], + [ + -55.031326591999914, + -16.850723977999962 + ], + [ + -54.99767660399988, + -17.080884501999947 + ], + [ + -55.053596470999935, + -17.15246310499998 + ], + [ + -55.281478625999966, + -17.20574870799993 + ], + [ + -55.36134760199991, + -17.246745433999877 + ], + [ + -55.437076587999854, + -17.210816573999978 + ], + [ + -55.530349568999895, + -17.27552168199992 + ], + [ + -55.73859761799997, + -17.34822111299991 + ], + [ + -55.92950853899998, + -17.27751053999998 + ], + [ + -56.07588556999991, + -17.19333862999997 + ], + [ + -56.162025550999886, + -17.248250153999948 + ], + [ + -56.03816951999988, + -17.29124462299984 + ], + [ + -55.741050497999936, + -17.498411741999973 + ], + [ + -55.46753659199993, + -17.62967469299997 + ], + [ + -55.28690356099992, + -17.72960089299994 + ], + [ + -55.1755595329999, + -17.82302307099991 + ], + [ + -55.01704449999994, + -17.91110664799993 + ], + [ + -54.88624154799999, + -17.955652104999956 + ], + [ + -54.81280149199989, + -18.064688426999908 + ], + [ + -54.79908752499995, + -18.247773500999926 + ], + [ + -54.81706955699991, + -18.295297382999934 + ], + [ + -54.913570575999984, + -18.328428531999975 + ], + [ + -55.05899458399989, + -18.229650484999866 + ], + [ + -55.29835860499992, + -18.267721088999906 + ], + [ + -55.33602151399998, + -18.347325364999847 + ], + [ + -55.234569471999976, + -18.412497511999902 + ], + [ + -55.09733156499988, + -18.447649369999965 + ], + [ + -55.05074662399994, + -18.492047639999953 + ], + [ + -55.049484476999964, + -18.59253861299993 + ], + [ + -55.1077765899999, + -18.71263167199993 + ], + [ + -55.12707156399989, + -18.867746501999818 + ], + [ + -55.27210648399995, + -18.944989929999906 + ], + [ + -55.23466854599985, + -19.053383528999973 + ], + [ + -55.13411755899995, + -19.210734314999968 + ], + [ + -55.100040596999975, + -19.33805374799988 + ], + [ + -55.11884656999996, + -19.435230012999966 + ], + [ + -55.24634151999987, + -19.556052967999904 + ], + [ + -55.382801585999914, + -19.792762439999933 + ], + [ + -55.44383961099999, + -19.95298721399996 + ], + [ + -55.51816161099998, + -20.05418947399994 + ], + [ + -55.64564147399989, + -20.126251210999897 + ], + [ + -55.68999062599994, + -20.22712255399989 + ], + [ + -55.77035849299989, + -20.241945781999902 + ], + [ + -55.79377350699997, + -20.147525989999906 + ], + [ + -55.90145849999993, + -20.03597341899996 + ], + [ + -55.94515654599985, + -20.072924200999978 + ], + [ + -55.9357225469999, + -20.160361365999904 + ], + [ + -55.87613257899994, + -20.226169698999854 + ], + [ + -55.86917861699993, + -20.312437754999962 + ], + [ + -55.95221360599993, + -20.314186722999978 + ], + [ + -56.06566953899983, + -20.087877348999882 + ], + [ + -56.15125262599997, + -20.063543007999954 + ], + [ + -56.22837451699996, + -20.204651844999887 + ], + [ + -56.32135362799994, + -20.21810295599994 + ], + [ + -56.36974352799996, + -20.084714688999952 + ], + [ + -56.46894452599997, + -20.09811701699988 + ], + [ + -56.592132518999904, + -20.079621006999957 + ], + [ + -56.663574496999956, + -20.140118566999945 + ], + [ + -56.69887555299994, + -20.094100073999982 + ], + [ + -56.76966055799994, + -19.885011989999896 + ], + [ + -56.85010151499995, + -19.796498086999975 + ], + [ + -56.94039556699988, + -19.783628847999978 + ], + [ + -57.163635487999954, + -19.985891212999945 + ], + [ + -57.13480358499993, + -20.134829752999963 + ], + [ + -57.1537165119999, + -20.27548881799987 + ], + [ + -57.087066634999985, + -20.303857200999914 + ], + [ + -56.95376252299991, + -20.267135244999963 + ], + [ + -56.954910508999944, + -20.41017024399997 + ], + [ + -57.1337275169999, + -20.579266590999907 + ], + [ + -57.15650550599992, + -20.715188035999915 + ], + [ + -57.20810651399995, + -20.826553689999855 + ], + [ + -57.20551650599998, + -20.912908078999976 + ], + [ + -57.25525253999996, + -21.016873182999973 + ], + [ + -57.35979063099995, + -21.13242576499988 + ], + [ + -57.43387961399998, + -21.156510325999932 + ], + [ + -57.49642554299999, + -21.050853250999978 + ], + [ + -57.589153531999955, + -21.024738760999924 + ], + [ + -57.713519517999885, + -21.080432651999956 + ], + [ + -57.748149518999924, + -21.17401341599998 + ], + [ + -57.721916507999936, + -21.3413812469999 + ], + [ + -57.74108860299987, + -21.424752684999874 + ], + [ + -57.695312514999955, + -21.45911882399986 + ], + [ + -57.61555853899989, + -21.382130874999973 + ], + [ + -57.58130253899998, + -21.461066777999918 + ], + [ + -57.679107613999975, + -21.62502283899994 + ], + [ + -57.80849050399996, + -21.623744933999888 + ], + [ + -57.89878053299992, + -21.51715847399987 + ], + [ + -57.990444522999894, + -21.502770266999903 + ], + [ + -58.039565492999884, + -21.445667544999935 + ], + [ + -58.06821450299992, + -21.248666500999946 + ], + [ + -58.057395477999876, + -21.044566655999972 + ], + [ + -58.00138458299995, + -20.733069987999954 + ], + [ + -58.0269205539999, + -20.38072981499994 + ], + [ + -58.13239255699989, + -20.1663309569999 + ], + [ + -58.14702953899996, + -20.10127565399995 + ], + [ + -58.23229562199998, + -20.101252686999885 + ], + [ + -58.24259161699996, + -19.81837300999996 + ], + [ + -58.458717481999884, + -19.696799874999954 + ], + [ + -58.54998752299997, + -19.681648913999936 + ], + [ + -58.579067529999975, + -19.63215981099995 + ], + [ + -58.56713857299991, + -19.45204913999993 + ], + [ + -58.63241163799995, + -19.295032455999944 + ], + [ + -58.616619629999946, + -19.203498720999903 + ], + [ + -58.67721559299997, + -19.156492336999975 + ], + [ + -58.76173350799996, + -19.222574590999955 + ], + [ + -58.79761861499992, + -19.1557485269999 + ], + [ + -58.774475508999956, + -19.081713858999933 + ], + [ + -58.83924850999995, + -19.018053638999902 + ], + [ + -58.81034854599989, + -18.97367632299995 + ], + [ + -58.88558953799998, + -18.885516471999892 + ], + [ + -59.065448584999956, + -18.82789289899995 + ], + [ + -59.00073962099992, + -18.75637497999992 + ], + [ + -59.04307158499995, + -18.659478838999917 + ], + [ + -59.10432854499999, + -18.623451071999966 + ], + [ + -59.162113553999916, + -18.594948577999958 + ], + [ + -59.34162860599997, + -18.55755187799997 + ], + [ + -59.612068532999956, + -18.442223595999906 + ], + [ + -59.69711249699998, + -18.315203396999948 + ], + [ + -59.807437620999906, + -18.239443732999973 + ], + [ + -59.93813663699996, + -18.187973985999975 + ], + [ + -60.0585094839999, + -18.03730592299985 + ], + [ + -60.08833363699995, + -17.88201339699998 + ], + [ + -60.25899153199998, + -17.81693646799988 + ], + [ + -60.26718148999993, + -17.754801252999926 + ], + [ + -60.36441056099994, + -17.71351585299982 + ], + [ + -60.34488257099997, + -17.660905999999898 + ], + [ + -60.439437478999935, + -17.576425132999873 + ], + [ + -60.523860510999896, + -17.584126760999936 + ], + [ + -60.72111552699994, + -17.676025108999966 + ], + [ + -60.72964059299994, + -17.77659101599994 + ], + [ + -60.653064530999984, + -17.86013193599996 + ], + [ + -60.488376561999985, + -17.955293023999843 + ], + [ + -60.47541461999998, + -18.039168046999976 + ], + [ + -60.51790248699996, + -18.100884167999936 + ], + [ + -60.64357755799989, + -18.048003410999968 + ], + [ + -60.787860621999926, + -18.09125570799995 + ], + [ + -60.87919654399997, + -18.08103347399998 + ], + [ + -61.01816950499983, + -18.02856762199997 + ], + [ + -61.19248157499999, + -18.02845446599997 + ], + [ + -61.49211852099995, + -17.97338904999998 + ], + [ + -61.70456355699997, + -17.966223360999948 + ], + [ + -61.72890057999996, + -17.90935365699994 + ], + [ + -61.819499565999934, + -17.903269232999946 + ], + [ + -61.862350536999884, + -17.963948511999945 + ], + [ + -62.07936857199985, + -17.97788057699995 + ], + [ + -62.420566513999916, + -18.030123637999964 + ], + [ + -62.559856477999915, + -18.065752258999908 + ], + [ + -62.97133248699993, + -18.19958912399983 + ], + [ + -63.13089358099995, + -18.129776419999928 + ], + [ + -63.17984758399996, + -18.029124514999978 + ], + [ + -63.21347862899995, + -17.846489717999816 + ], + [ + -63.28097960399998, + -17.688063365999938 + ], + [ + -63.42206949799993, + -17.58807832499997 + ], + [ + -63.37832652499986, + -17.729472649999877 + ], + [ + -63.435745578999956, + -17.90526496399997 + ], + [ + -63.55698058899998, + -17.9591077959999 + ], + [ + -63.65917157899992, + -17.933047284999873 + ], + [ + -63.664150596999946, + -18.022544050999954 + ], + [ + -63.71916153099994, + -18.09641543999993 + ], + [ + -63.63712348599989, + -18.116708194999944 + ], + [ + -63.62716662299994, + -18.171580994999943 + ], + [ + -63.679222599999946, + -18.263053541999966 + ], + [ + -63.64850661299994, + -18.299509121999904 + ], + [ + -63.534374595999964, + -18.186634892999848 + ], + [ + -63.50756859899991, + -18.310162687999934 + ], + [ + -63.56227459899998, + -18.372631838999837 + ], + [ + -63.62406163099996, + -18.379177602999903 + ], + [ + -63.659271490999856, + -18.46019657599993 + ], + [ + -63.72729851499997, + -18.516867293999894 + ], + [ + -63.70167151599992, + -18.77616096599985 + ], + [ + -63.748493497999846, + -18.833059503999948 + ], + [ + -63.748405487999946, + -18.931169680999915 + ], + [ + -63.9057195609999, + -18.954455445999884 + ], + [ + -63.964939550999986, + -19.05080475199992 + ], + [ + -63.9070775969999, + -19.128567020999867 + ], + [ + -63.86193048699994, + -19.019858430999932 + ], + [ + -63.6906855229999, + -19.056605364999882 + ], + [ + -63.741104514999904, + -19.269667811999852 + ], + [ + -63.835586500999966, + -19.27845841599992 + ], + [ + -63.831798550999906, + -19.40003523999991 + ], + [ + -63.67979055799992, + -19.551573343999905 + ], + [ + -63.60765053499995, + -19.84378241399986 + ], + [ + -63.632595580999975, + -19.969313316999887 + ], + [ + -63.72079449299997, + -20.01607159599996 + ], + [ + -63.72336153499998, + -19.847849145999874 + ], + [ + -63.77635159099992, + -19.813587110999947 + ], + [ + -63.853374575999965, + -19.867885079999894 + ], + [ + -63.796161548999976, + -19.961199634999844 + ], + [ + -63.749519609999936, + -20.10016773399991 + ], + [ + -63.80873155399996, + -20.12051765399997 + ], + [ + -63.89677053899993, + -20.201818090999893 + ], + [ + -63.869537567999885, + -20.26316239099998 + ], + [ + -63.63803459799988, + -20.194228444999965 + ], + [ + -63.533863634999875, + -20.259656743999983 + ], + [ + -63.52843853199988, + -20.34564467699994 + ], + [ + -63.61947656199993, + -20.479124305999846 + ], + [ + -63.617725581999935, + -20.547514432999947 + ], + [ + -63.53502251699996, + -20.63482050399989 + ], + [ + -63.48537851599991, + -20.723682423999946 + ], + [ + -63.499671504999924, + -20.819792007999922 + ], + [ + -63.460361552999984, + -20.849638623999965 + ], + [ + -63.48601554099997, + -20.976899215999936 + ], + [ + -63.59438349099986, + -21.014090223999972 + ], + [ + -63.68046161299998, + -20.81833120999994 + ], + [ + -63.731689625999934, + -20.854183124999906 + ], + [ + -63.81349951599992, + -20.805910067999946 + ], + [ + -63.84368559899997, + -20.885176552999894 + ], + [ + -63.92466350099994, + -20.93914963899988 + ], + [ + -64.0768205249999, + -20.911627994999947 + ], + [ + -63.903118488999894, + -21.170484801999976 + ], + [ + -63.81176362299993, + -21.1848557429999 + ], + [ + -63.79327062999994, + -21.29875457599985 + ], + [ + -63.874557488999926, + -21.599723237999967 + ], + [ + -63.78149455899984, + -21.594396537999955 + ], + [ + -63.621871606999946, + -21.927437211999973 + ], + [ + -63.621871606999946, + -22.11794697499994 + ], + [ + -63.6467365229999, + -22.215839892999895 + ], + [ + -63.934554481999896, + -23.083838102999948 + ], + [ + -64.02623758299995, + -23.18315024499998 + ], + [ + -64.06254563999983, + -23.26857256699998 + ], + [ + -64.21223452899994, + -23.312240605999932 + ], + [ + -64.2840495019999, + -23.37049248599982 + ], + [ + -64.31422452099997, + -23.445023530999833 + ], + [ + -64.49456753799996, + -23.670697221999887 + ], + [ + -64.54908762799988, + -23.67600698999985 + ], + [ + -64.68161054599994, + -23.808855125999912 + ], + [ + -64.71036550299982, + -23.7959317399999 + ], + [ + -64.85237153899993, + -23.919151751999948 + ], + [ + -64.87663262299992, + -23.974388996999835 + ], + [ + -64.98922756599995, + -24.069737000999964 + ], + [ + -65.08671563799999, + -24.10985228699991 + ], + [ + -65.25880449299996, + -24.120362690999855 + ], + [ + -65.26485454999994, + -24.20179153899994 + ], + [ + -65.11876652699988, + -24.379369701999963 + ], + [ + -65.0609055789999, + -24.604049801999963 + ], + [ + -65.09424560499997, + -24.701209973999937 + ], + [ + -65.03039561899988, + -24.825285944999962 + ], + [ + -65.16532162899995, + -25.043941635999943 + ], + [ + -65.25550051399995, + -25.122219894999944 + ], + [ + -65.32142652899995, + -25.08782743699993 + ], + [ + -65.32137254999992, + -24.858012582999947 + ], + [ + -65.38733661899994, + -24.78288809999998 + ], + [ + -65.34719048799997, + -24.68815666799992 + ], + [ + -65.34637459399994, + -24.592393423999965 + ], + [ + -65.40660862599998, + -24.59025151299994 + ], + [ + -65.52405551799995, + -24.68881984399991 + ], + [ + -65.59967051099994, + -24.803959197999973 + ], + [ + -65.54184761699997, + -25.1928033989999 + ], + [ + -65.69652558199988, + -25.414634991999947 + ], + [ + -65.62577058399995, + -25.705314365999982 + ], + [ + -65.37069652999992, + -25.47344326299998 + ], + [ + -65.33641052199994, + -25.474492174999966 + ], + [ + -65.34429956999992, + -25.72107770799994 + ], + [ + -65.23752552299993, + -25.68225943799996 + ], + [ + -65.26570162499996, + -25.610591650999936 + ], + [ + -65.2271886239999, + -25.441643495999983 + ], + [ + -65.05073548099989, + -25.250312641999983 + ], + [ + -65.01125353199996, + -25.250053640999965 + ], + [ + -64.93744651499998, + -25.413500082999917 + ], + [ + -65.0183635649999, + -25.672568784999896 + ], + [ + -65.17056249799992, + -26.0050233959999 + ], + [ + -65.34314756099991, + -26.16747004399997 + ], + [ + -65.43309761999996, + -26.21572566599997 + ], + [ + -65.54412849999989, + -26.321432026999958 + ], + [ + -65.54588350299997, + -26.552408611999965 + ], + [ + -65.34134662499997, + -26.717948182999976 + ], + [ + -65.26271062699993, + -26.72115191399996 + ], + [ + -65.1578825229999, + -26.660733646999915 + ], + [ + -65.14144862799998, + -26.363864908999915 + ], + [ + -65.08763161299993, + -26.28095983899982 + ], + [ + -65.0293954899999, + -26.099881058999983 + ], + [ + -64.95993063499992, + -26.01203804299996 + ], + [ + -64.94004859299997, + -25.86589369299992 + ], + [ + -64.80491655599991, + -25.887579855999945 + ], + [ + -64.83808860899995, + -26.01230492299993 + ], + [ + -64.80870852899989, + -26.036001065999983 + ], + [ + -64.81632952299992, + -26.20000456899993 + ], + [ + -64.85418655699988, + -26.26253758999985 + ], + [ + -64.7038495789999, + -26.414420859999893 + ], + [ + -64.71810149699996, + -26.567706926999904 + ], + [ + -64.81108060799994, + -26.71210431999998 + ], + [ + -65.0640635449999, + -26.89587620599997 + ], + [ + -65.60361453199994, + -27.170059154999876 + ], + [ + -65.66896856599993, + -27.239632136999887 + ], + [ + -65.8102495679999, + -27.606049548999977 + ], + [ + -65.76690657899991, + -27.777089323999974 + ], + [ + -65.60856655999987, + -28.038760439999976 + ], + [ + -65.60142551399991, + -28.147619903999953 + ], + [ + -65.46483653399986, + -28.468983412999933 + ], + [ + -65.4670795319999, + -28.561115951999966 + ], + [ + -65.55169652099988, + -28.737286625999957 + ], + [ + -65.5758975899999, + -29.129752142999905 + ], + [ + -65.6345745999999, + -29.10360932199984 + ], + [ + -65.61972052599992, + -28.695620519999977 + ], + [ + -65.54972057099991, + -28.56620058199985 + ], + [ + -65.54328159299996, + -28.48721673499989 + ], + [ + -65.60883360799994, + -28.337873850999983 + ], + [ + -65.74706259099997, + -28.210178238999845 + ], + [ + -65.84999051799997, + -28.01171740199993 + ], + [ + -65.91071355099996, + -27.944770302999927 + ], + [ + -66.01313051699998, + -28.13264228099996 + ], + [ + -65.91037760399996, + -28.344387595999933 + ], + [ + -65.90763051899995, + -28.39343664899991 + ], + [ + -66.06336963299992, + -28.639911541999936 + ], + [ + -66.29855359899994, + -28.841778615999942 + ], + [ + -66.40855451099992, + -28.82833320499992 + ], + [ + -66.77637455099989, + -28.965484777999905 + ], + [ + -66.91989854899998, + -29.044729469999936 + ], + [ + -67.05440563199994, + -29.152592325999933 + ], + [ + -67.04840854799994, + -29.232785011999965 + ], + [ + -66.99210361599995, + -29.333687032999933 + ], + [ + -67.01248957799993, + -29.73662774999997 + ], + [ + -67.09846460299997, + -29.953626505999978 + ], + [ + -67.20293463299998, + -30.074703935999935 + ], + [ + -67.22130558499998, + -30.226424429999952 + ], + [ + -67.30413052299997, + -30.345218963999912 + ], + [ + -67.41436763799993, + -30.34048318899994 + ], + [ + -67.52787754999991, + -30.280610583999874 + ], + [ + -67.61734061999988, + -30.274749621999888 + ], + [ + -67.7200854859999, + -30.399001278999947 + ], + [ + -67.65148161999997, + -30.502724480999916 + ], + [ + -67.36106862399993, + -30.770365857999877 + ], + [ + -67.2837826149999, + -30.894323476999944 + ], + [ + -67.26477849399998, + -31.030835510999964 + ], + [ + -67.22367062299992, + -31.074282937999897 + ], + [ + -67.23564148999998, + -31.35398050999993 + ], + [ + -67.32563060799993, + -31.510917061999976 + ], + [ + -67.40148951399993, + -31.54358703899993 + ], + [ + -67.4093326279999, + -31.878285819999974 + ], + [ + -67.2883075019999, + -32.14141438099995 + ], + [ + -67.26160460199992, + -32.344933527999956 + ], + [ + -67.18634064399993, + -32.40544064299996 + ], + [ + -67.22307550799997, + -32.51627723099989 + ], + [ + -67.09947948399997, + -33.13789308499992 + ], + [ + -66.99125654099993, + -33.24399993299994 + ], + [ + -67.07382163999995, + -33.36405644699988 + ], + [ + -67.07331051199998, + -33.554128841999955 + ], + [ + -66.99903159399992, + -33.67428442999994 + ], + [ + -66.97434957199994, + -33.7677228689999 + ], + [ + -66.90670761299998, + -33.86864986799998 + ], + [ + -66.72328156399988, + -33.52678271499997 + ], + [ + -66.50428053899992, + -33.41908196499992 + ], + [ + -66.45077549799993, + -33.549589873999935 + ], + [ + -66.34941062799993, + -33.54872419099996 + ], + [ + -66.34540558699996, + -33.62046087699997 + ], + [ + -66.26824161899987, + -33.619458065999936 + ], + [ + -66.12237554899997, + -33.53481241099996 + ], + [ + -65.98256657699994, + -33.116439938999974 + ], + [ + -65.77315562299992, + -32.78505971999988 + ], + [ + -65.69093351099997, + -32.82194663199988 + ], + [ + -65.59709156699995, + -32.90656932099989 + ], + [ + -65.35797849999994, + -33.04544706299998 + ], + [ + -65.39399754999988, + -33.17474194299996 + ], + [ + -65.39604960799994, + -33.290716637999935 + ], + [ + -65.33847062699994, + -33.37530512799998 + ], + [ + -65.23266552699982, + -33.41653302799989 + ], + [ + -65.0095675959999, + -33.3539896129999 + ], + [ + -64.89395851999996, + -33.14620105999995 + ], + [ + -64.93235048599996, + -33.02698759799995 + ], + [ + -64.75915555599994, + -32.92975031199995 + ], + [ + -64.70822157999999, + -32.82522781199992 + ], + [ + -64.54249559599998, + -32.65604295199984 + ], + [ + -64.46154753399998, + -32.51401143499993 + ], + [ + -64.4541935869999, + -32.28318656199997 + ], + [ + -64.33176449199993, + -32.28282882199994 + ], + [ + -64.3364486349999, + -32.56501565099995 + ], + [ + -64.18573748899985, + -32.52680087799996 + ], + [ + -64.18330355199998, + -32.17677193099996 + ], + [ + -64.32550857399985, + -31.932454036999957 + ], + [ + -64.31393450699994, + -31.411025562999953 + ], + [ + -64.27110247899992, + -31.31360873799997 + ], + [ + -64.15678354599987, + -31.176910625999938 + ], + [ + -64.15927162999992, + -31.047820095999896 + ], + [ + -64.26552549599995, + -31.085160804999873 + ], + [ + -64.27079050499987, + -30.947729610999943 + ], + [ + -64.41060651699996, + -30.713955648999956 + ], + [ + -64.38404862499988, + -30.646667071999957 + ], + [ + -64.27304858899998, + -30.666762348999953 + ], + [ + -64.22663162099991, + -30.784514174999913 + ], + [ + -64.17463649599989, + -30.824444890999928 + ], + [ + -64.07904055499995, + -30.824261829999898 + ], + [ + -63.99871459799988, + -30.75608728599991 + ], + [ + -63.943427563999876, + -30.621310975999904 + ], + [ + -63.881755532999875, + -30.53303914199995 + ], + [ + -63.916541603999974, + -30.3913182579999 + ], + [ + -63.79884358999993, + -30.28895325999997 + ], + [ + -63.755851634999885, + -30.42213030199997 + ], + [ + -63.69432863399999, + -30.51550872699994 + ], + [ + -63.53795651799987, + -30.63817553299998 + ], + [ + -62.95021461699997, + -30.864741393999964 + ], + [ + -62.830097585999965, + -30.8941254959999 + ], + [ + -62.56837047999994, + -30.850396771999954 + ], + [ + -62.37513358099994, + -30.796136856999965 + ], + [ + -62.26296963499993, + -30.690196473999947 + ], + [ + -62.258369478999896, + -30.594482180999933 + ], + [ + -62.33620450199999, + -30.471241548999956 + ], + [ + -62.32744558099995, + -30.263088215999915 + ], + [ + -62.12956259299989, + -30.079365782999957 + ], + [ + -61.74356857599997, + -29.854795149999916 + ], + [ + -61.529663579999976, + -29.704392793999943 + ], + [ + -61.470786576999956, + -29.553106817999947 + ], + [ + -61.32012153199997, + -29.384272153999916 + ], + [ + -61.140289475999964, + -29.410062263999976 + ], + [ + -60.848297496999976, + -29.655717740999876 + ], + [ + -60.74511760899992, + -29.79966116999998 + ], + [ + -60.67609062499986, + -29.965182970999876 + ], + [ + -60.668765511999936, + -30.20358910799996 + ], + [ + -60.63464747799998, + -30.27499772599998 + ], + [ + -60.62845660499988, + -30.41318949399988 + ], + [ + -60.59130448899998, + -30.53696204099998 + ], + [ + -60.60474352999995, + -30.642543342999886 + ], + [ + -60.431701485999895, + -30.531410202999893 + ], + [ + -60.272212475999936, + -30.383685696999976 + ], + [ + -60.22245062499991, + -30.387452524999958 + ], + [ + -59.99734858099998, + -30.17567737099995 + ], + [ + -59.95432259499995, + -30.071111283999983 + ], + [ + -59.894641599999886, + -29.724839272999873 + ], + [ + -59.812171551999825, + -29.443115795999972 + ], + [ + -59.69000648699995, + -29.171441549999884 + ], + [ + -59.62610252099989, + -29.106398148999915 + ], + [ + -59.44640759299989, + -28.771051445999888 + ], + [ + -59.44158950699995, + -28.696908315999906 + ], + [ + -59.35948155699998, + -28.562952761999952 + ], + [ + -59.14728948699985, + -28.064949024999976 + ], + [ + -59.08850451799998, + -27.97619104099988 + ], + [ + -59.087486619999936, + -27.9082178299999 + ], + [ + -58.95697049699993, + -27.687123004999876 + ], + [ + -58.95747760199998, + -27.45006719199995 + ], + [ + -58.82247548399994, + -27.32878624999995 + ], + [ + -58.78921558899992, + -27.142446316999838 + ], + [ + -58.74206553999994, + -27.04829759499995 + ], + [ + -58.53169250999986, + -26.85148313199994 + ], + [ + -58.37007851999982, + -26.728531843999917 + ], + [ + -58.36542857599994, + -26.619956525999953 + ], + [ + -58.331706502999964, + -26.58956475099984 + ], + [ + -58.339000602999874, + -26.420937622999872 + ], + [ + -58.16802955899993, + -26.093012256999884 + ], + [ + -57.97609353199988, + -25.98266030999997 + ], + [ + -57.836898617999964, + -25.685431317999928 + ], + [ + -57.682468589999985, + -25.583806105999884 + ], + [ + -57.60498862399993, + -25.43955656999998 + ], + [ + -57.560398574999965, + -25.446537521999915 + ], + [ + -57.57024747899993, + -25.55405940199995 + ], + [ + -57.662879578999934, + -25.597340197999984 + ], + [ + -57.744022604999884, + -25.729178314999956 + ], + [ + -57.83348450099999, + -25.777402923999944 + ], + [ + -57.86787461199998, + -25.854437307999888 + ], + [ + -57.85644555199991, + -25.993891892999898 + ], + [ + -57.95119458499988, + -26.06505374799997 + ], + [ + -58.110691473999964, + -26.1332914919999 + ], + [ + -58.11784760799992, + -26.23910866199998 + ], + [ + -58.221626632999914, + -26.398136498999975 + ], + [ + -58.18763751299997, + -26.640352545999974 + ], + [ + -58.24864955399988, + -26.640333770999916 + ], + [ + -58.24313761399992, + -26.73354153999992 + ], + [ + -58.414199517999975, + -26.90888475199995 + ], + [ + -58.47875961799997, + -26.921001127999943 + ], + [ + -58.47703160499998, + -27.06592088199983 + ], + [ + -58.557334595999976, + -27.051055575999897 + ], + [ + -58.63216353399997, + -27.114231656999834 + ], + [ + -58.662151636999965, + -27.186988420999967 + ], + [ + -58.56514351199996, + -27.328360449999877 + ], + [ + -58.65185547399989, + -27.40799691199993 + ], + [ + -58.71967362099997, + -27.41157497799992 + ], + [ + -58.76805161899995, + -27.46770556699994 + ], + [ + -58.73506547699992, + -27.643444906999946 + ], + [ + -58.73073555399998, + -27.968380280999952 + ], + [ + -58.80121260699991, + -28.078122694999877 + ], + [ + -58.86828962599992, + -28.09950861799996 + ], + [ + -58.966022616999965, + -28.20705044799996 + ], + [ + -59.04803853299995, + -28.720068519999984 + ], + [ + -59.207054635999896, + -29.07978024199997 + ], + [ + -59.29792754299996, + -29.184496866999893 + ], + [ + -59.4192654819999, + -29.409898313999975 + ], + [ + -59.46008249999994, + -29.663470498999914 + ], + [ + -59.49033362699993, + -29.723386353999842 + ], + [ + -59.501136558999974, + -29.914680159999932 + ], + [ + -59.54235054499998, + -29.933407175999832 + ], + [ + -59.53862763899997, + -30.11684043299988 + ], + [ + -59.57252154099996, + -30.228206254999918 + ], + [ + -59.54363247299983, + -30.31263012499994 + ], + [ + -59.60620455399987, + -30.364607311999976 + ], + [ + -59.56915654199997, + -30.538695920999942 + ], + [ + -59.50835455099991, + -30.53188126599997 + ], + [ + -59.28583547399984, + -30.335194375999947 + ], + [ + -59.23197151999989, + -30.17987921899993 + ], + [ + -59.11288060099997, + -30.110812838999948 + ], + [ + -59.09075153899994, + -30.059316604999935 + ], + [ + -58.957443570999885, + -29.938300195999943 + ], + [ + -58.90258451799997, + -29.84618257699998 + ], + [ + -58.74399555699995, + -29.706927816999894 + ], + [ + -58.702434559999915, + -29.636280442999976 + ], + [ + -58.66153757799998, + -29.26265895299997 + ], + [ + -58.6145325359999, + -29.181604942999968 + ], + [ + -58.528636635999874, + -29.11486957099993 + ], + [ + -58.47768354899989, + -28.952393250999933 + ], + [ + -58.33327861299995, + -28.909952657999952 + ], + [ + -58.103290588999926, + -28.71614461599995 + ], + [ + -57.99824556099992, + -28.73261991699991 + ], + [ + -57.695075474999896, + -28.72247529999987 + ], + [ + -57.550743628999896, + -28.677761198999917 + ], + [ + -57.51696355299987, + -28.615599663999944 + ], + [ + -57.30814754599999, + -28.598702417999903 + ], + [ + -56.9970815399999, + -28.472485372999984 + ], + [ + -56.95928150399993, + -28.427176156999963 + ], + [ + -56.823493498999824, + -28.365742673999932 + ], + [ + -56.69128456599998, + -28.158352427999944 + ], + [ + -56.4607235549999, + -27.964259401999982 + ], + [ + -56.43012256799989, + -27.84221436499996 + ], + [ + -56.432479558999944, + -27.66431785799989 + ], + [ + -56.303131537999946, + -27.49347623099993 + ], + [ + -56.297988569999916, + -27.424790221999956 + ], + [ + -56.169776631999866, + -27.33407824899996 + ], + [ + -56.08073852399997, + -27.307731411999953 + ], + [ + -55.96892963499988, + -27.347972593999827 + ], + [ + -55.9008335449999, + -27.338019083999882 + ], + [ + -55.835014482999895, + -27.42477714699993 + ], + [ + -55.77689755099988, + -27.439935482999942 + ], + [ + -55.92826851999996, + -27.29433293999989 + ], + [ + -56.19955049299989, + -27.252567760999966 + ], + [ + -56.22094747999989, + -27.189908339999874 + ], + [ + -56.17563256499989, + -27.078057206999972 + ], + [ + -56.16995952499997, + -26.875913026999967 + ], + [ + -56.24230557499993, + -26.709466534999876 + ], + [ + -56.18487947999989, + -26.559447398999964 + ], + [ + -56.17063560899999, + -26.454848958999946 + ], + [ + -56.10974158499994, + -26.288142627999946 + ], + [ + -56.1470264699999, + -26.155883570999947 + ], + [ + -56.05370755699994, + -26.01323715799998 + ], + [ + -56.115879485999926, + -25.95071603899987 + ], + [ + -56.23372250599988, + -25.97291383299995 + ], + [ + -56.35076857599989, + -26.134819512999968 + ], + [ + -56.500415554999904, + -26.083189839999875 + ], + [ + -56.56835557399984, + -26.1041258219999 + ], + [ + -56.64418748999992, + -26.204633222999917 + ], + [ + -56.744010592999985, + -26.235808873999872 + ], + [ + -56.881488556999955, + -26.203193211999974 + ], + [ + -56.91957056099989, + -26.169943710999917 + ], + [ + -56.95651648099988, + -25.962077373999932 + ], + [ + -56.933902609999905, + -25.8702977129999 + ], + [ + -56.74740258099996, + -25.777514067999903 + ], + [ + -56.598380556999984, + -25.772158031999936 + ], + [ + -56.58185949099993, + -25.706729230999883 + ], + [ + -56.45285462499993, + -25.692112029999976 + ], + [ + -56.47731050399989, + -25.570209652999893 + ], + [ + -56.457038534999924, + -25.40584036399997 + ], + [ + -56.45883159199997, + -25.22889972899992 + ], + [ + -56.52175856299988, + -25.03527910699995 + ], + [ + -56.47822547199996, + -24.97296904399991 + ], + [ + -56.45159951799991, + -24.8233220649999 + ], + [ + -56.5049174749999, + -24.65710825499997 + ], + [ + -56.55736153499993, + -24.596469040999978 + ], + [ + -56.69275257299984, + -24.52401285199994 + ], + [ + -56.65261851199995, + -24.430064457999947 + ], + [ + -56.784072569999864, + -24.382016706999934 + ], + [ + -56.826969473999895, + -24.329728382999974 + ], + [ + -56.71479748099995, + -24.255032046999872 + ], + [ + -56.75337954899999, + -24.188999245999923 + ], + [ + -56.67724957199988, + -24.11962675999996 + ], + [ + -56.755302524999934, + -23.908429118999948 + ], + [ + -56.77010748099991, + -23.81272689499997 + ], + [ + -56.868347576999895, + -23.728130189999888 + ], + [ + -57.13897659999998, + -23.768387297999936 + ], + [ + -57.17026154999991, + -23.682775711999966 + ], + [ + -57.14672047199997, + -23.611447224999893 + ], + [ + -57.17441159799989, + -23.53652792999992 + ], + [ + -57.04257146999993, + -23.521324833999927 + ], + [ + -57.01708562299996, + -23.443392747999894 + ], + [ + -57.12085760699995, + -23.428772361999904 + ], + [ + -57.26629653599997, + -23.486292501999912 + ], + [ + -57.292148503999954, + -23.44993851199996 + ], + [ + -57.1364445939999, + -23.32495695899985 + ], + [ + -56.993251512999905, + -23.31161145999988 + ], + [ + -56.7597005099999, + -23.14493295699998 + ], + [ + -56.66738155799993, + -23.09933842099997 + ], + [ + -56.53765852999999, + -22.968554076999965 + ], + [ + -56.37598050299994, + -22.843904615999975 + ], + [ + -56.25410058899996, + -22.82746351299994 + ], + [ + -56.138965593999956, + -22.705051012999945 + ], + [ + -56.17339761399995, + -22.617597587999967 + ], + [ + -56.20195056699998, + -22.454782303999934 + ], + [ + -56.14091857699998, + -22.376121494999893 + ], + [ + -56.12262758799994, + -22.290508735999936 + ], + [ + -55.85555651599992, + -22.263897199999974 + ], + [ + -55.82340655299993, + -22.326846968999916 + ], + [ + -55.748142593999944, + -22.365597009999874 + ], + [ + -55.75086252199992, + -22.48488356199988 + ], + [ + -55.54562357599997, + -22.674429741999916 + ], + [ + -55.56139362399989, + -22.58617031299991 + ], + [ + -55.41696152899988, + -22.47036644099984 + ], + [ + -55.32640847699997, + -22.44898755899993 + ], + [ + -55.248874530999956, + -22.379462018999902 + ], + [ + -55.14231153999998, + -22.35324342599995 + ], + [ + -55.17708956499985, + -22.252562016999946 + ], + [ + -55.07437554399996, + -22.225181523999936 + ], + [ + -54.998443547999955, + -22.332311633999893 + ], + [ + -54.79586049199992, + -22.419637151999893 + ], + [ + -54.73894451899997, + -22.320248398999922 + ], + [ + -54.83591458999996, + -22.230685919999928 + ], + [ + -54.94546153799996, + -22.21007833999994 + ], + [ + -55.065067607999936, + -22.081602204999967 + ], + [ + -55.10248157399997, + -21.968331176999925 + ], + [ + -55.04877855299992, + -21.811677429999975 + ], + [ + -54.95869052799986, + -21.791219550999983 + ], + [ + -54.85098659299996, + -21.877276885999947 + ], + [ + -54.67312947999994, + -21.924529529999973 + ], + [ + -54.60528149399988, + -21.906452614999978 + ], + [ + -54.542388553999956, + -21.666823389999934 + ], + [ + -54.47803850399998, + -21.597068353999873 + ], + [ + -54.41719862799988, + -21.612297265999928 + ], + [ + -54.22961062899998, + -21.725527222999972 + ], + [ + -54.02773651399991, + -21.734973794999974 + ], + [ + -53.98804451399991, + -21.799768085999915 + ], + [ + -53.81887457399989, + -21.95073320299997 + ], + [ + -53.6193276109999, + -22.058477203999928 + ], + [ + -53.48207059299989, + -22.092576462999887 + ], + [ + -53.30490146799997, + -22.180853660999958 + ], + [ + -53.181976498999916, + -22.181701741999973 + ], + [ + -53.131748614999935, + -22.156500208999944 + ], + [ + -52.90288158599998, + -22.12953160299992 + ], + [ + -52.54948847799989, + -21.99809749399998 + ], + [ + -52.2647134849999, + -21.947006273999875 + ], + [ + -52.16819352299996, + -21.867448601999968 + ], + [ + -52.08013157199997, + -21.76052334499991 + ], + [ + -52.00317748599991, + -21.62173076299996 + ], + [ + -51.97144661799996, + -21.60934163899998 + ], + [ + -51.83703257499997, + -21.3172886399999 + ], + [ + -51.84081650099989, + -21.17390445099994 + ], + [ + -51.7608145879999, + -21.03033837499987 + ], + [ + -51.6416624819999, + -20.986572937999938 + ], + [ + -51.62813157499994, + -20.712958113999946 + ], + [ + -51.529079607999904, + -20.597424642999954 + ], + [ + -51.49928261299988, + -20.43809555999991 + ], + [ + -51.427299498999844, + -20.360083845999952 + ], + [ + -51.38098948399983, + -20.219736085999898 + ], + [ + -51.20656157499997, + -20.19807221899987 + ], + [ + -51.114788619999956, + -20.162921366999967 + ], + [ + -51.09813662899995, + -20.02350215299998 + ], + [ + -51.22754248499996, + -20.000189397999918 + ], + [ + -51.17910346599996, + -19.761035259999915 + ], + [ + -51.09976154399993, + -19.598908465999955 + ], + [ + -51.04669957099992, + -19.550104498999872 + ], + [ + -51.00910556199989, + -19.449009190999902 + ], + [ + -50.86671462899983, + -19.254871572999946 + ], + [ + -50.82809852999992, + -19.121592438999926 + ], + [ + -50.88383449799994, + -19.00298130099992 + ], + [ + -51.01270659499994, + -18.94070795099998 + ], + [ + -51.14876952599991, + -18.77985369699985 + ], + [ + -51.2019956179999, + -18.65299610699992 + ], + [ + -51.1904185329999, + -18.537841161999893 + ], + [ + -51.112453589999916, + -18.546833602999982 + ], + [ + -51.004558546999874, + -18.70630685499998 + ], + [ + -50.91009148099988, + -18.794994766999935 + ], + [ + -50.86376151699989, + -18.79917733699989 + ], + [ + -50.847751578999976, + -18.616174405999914 + ], + [ + -50.674114586999906, + -18.464534545999925 + ], + [ + -50.6029855889999, + -18.454040905999875 + ], + [ + -50.454654568999956, + -18.374256921999915 + ], + [ + -50.435844571999894, + -18.30016106599993 + ], + [ + -50.22803858399993, + -18.16992892199994 + ], + [ + -50.176307488999896, + -18.19097588099993 + ], + [ + -50.13830561699996, + -18.316891344999874 + ], + [ + -50.05733157099991, + -18.425122836999947 + ], + [ + -49.92293546399992, + -18.476213721999954 + ], + [ + -49.86516554399992, + -18.465966342999934 + ], + [ + -49.78425251799996, + -18.321784866999963 + ], + [ + -49.768859487999975, + -18.231748306999975 + ], + [ + -49.711543530999904, + -18.104535994999935 + ], + [ + -49.65811157999991, + -18.05428413899989 + ], + [ + -49.59558157699996, + -18.07245308699993 + ], + [ + -49.59582146699995, + -18.17449571799989 + ], + [ + -49.55408059499996, + -18.26683428399997 + ], + [ + -49.56167962799998, + -18.339358868999966 + ], + [ + -49.508007619999944, + -18.504564838999954 + ], + [ + -49.404392543999904, + -18.618393095999977 + ], + [ + -49.247951529999966, + -18.51332862199996 + ], + [ + -49.28702561599994, + -18.27772857799988 + ], + [ + -49.24155848499993, + -18.188740929999938 + ], + [ + -49.28976448599997, + -18.0646733399999 + ], + [ + -49.284923601999935, + -18.012899497999967 + ], + [ + -49.199657517999924, + -17.973842845999968 + ], + [ + -49.18043546699988, + -18.12430873699998 + ], + [ + -49.09943359299996, + -18.14725654399996 + ], + [ + -48.99750160399992, + -18.126879801999905 + ], + [ + -49.0165295299999, + -18.058951684999897 + ], + [ + -48.97642161999988, + -18.012555671999962 + ], + [ + -49.01435861699997, + -17.95345319599994 + ], + [ + -48.90940059299987, + -17.873356902999888 + ], + [ + -48.79962146599985, + -17.869063356999902 + ], + [ + -48.672340589999976, + -17.9723059399999 + ], + [ + -48.651576603999956, + -18.072200959999975 + ], + [ + -48.51438848599997, + -18.197756336999873 + ], + [ + -48.436313571999904, + -18.185025064999877 + ], + [ + -48.31355255299991, + -18.21600021999984 + ], + [ + -48.36259456599987, + -18.34310859699991 + ], + [ + -48.361026478999975, + -18.41862099499997 + ], + [ + -48.472167497999976, + -18.427199704999907 + ], + [ + -48.439170627999886, + -18.52418083999993 + ], + [ + -48.27515052899997, + -18.572628910999924 + ], + [ + -48.220210505999944, + -18.645599579999953 + ], + [ + -48.16187262699992, + -18.646249680999915 + ], + [ + -48.09485646199988, + -18.716298418999884 + ], + [ + -47.97002460999988, + -18.79721647399998 + ], + [ + -47.95391459199982, + -18.889141979999863 + ], + [ + -47.99105446999994, + -18.964231594999887 + ], + [ + -48.23134653499994, + -18.75376619699989 + ], + [ + -48.335132600999884, + -18.63156726899996 + ], + [ + -48.50185351699997, + -18.69430866399989 + ], + [ + -48.53665953799998, + -18.63291038499989 + ], + [ + -48.64111347399995, + -18.609037718999957 + ], + [ + -48.62161247299997, + -18.516502345999925 + ], + [ + -48.6876945599999, + -18.50573998199991 + ], + [ + -48.81567750399995, + -18.614584526999977 + ], + [ + -48.888076527999885, + -18.623517958999912 + ], + [ + -48.85044060999991, + -18.47861144899997 + ], + [ + -48.894794623999985, + -18.41638839099994 + ], + [ + -48.9637605879999, + -18.46868023499985 + ], + [ + -49.0647735849999, + -18.610590549999927 + ], + [ + -49.161418604999824, + -18.620465940999964 + ], + [ + -49.22165649399983, + -18.705563044999906 + ], + [ + -49.31033350899992, + -18.781533597999953 + ], + [ + -49.2785225099999, + -18.861593848999917 + ], + [ + -49.212711493999905, + -18.889754193999977 + ], + [ + -49.20809155699993, + -18.959486934999973 + ], + [ + -49.38240446499998, + -18.926725762999865 + ], + [ + -49.453426509999986, + -18.94229313699998 + ], + [ + -49.596858475999966, + -18.891985959999886 + ], + [ + -49.71310457599992, + -18.87602379899988 + ], + [ + -49.64524854399991, + -18.791870998999855 + ], + [ + -49.48434450099995, + -18.854129261999958 + ], + [ + -49.44336654999995, + -18.795105742999965 + ], + [ + -49.47938157599998, + -18.67503782999995 + ], + [ + -49.57082361399989, + -18.640922813999907 + ], + [ + -49.73330362199994, + -18.61875921799998 + ], + [ + -49.839061614999935, + -18.751395291999927 + ], + [ + -49.822376597999835, + -18.825300878999883 + ], + [ + -49.88682153199994, + -18.851916438999922 + ], + [ + -49.84542448499991, + -18.961563802999876 + ], + [ + -49.89508860299998, + -18.993338088999963 + ], + [ + -49.955627568999944, + -18.91768738899998 + ], + [ + -50.022602495999934, + -18.776856663999922 + ], + [ + -50.09147257099988, + -18.757676018999916 + ], + [ + -50.21162748799992, + -18.817265483999904 + ], + [ + -50.322849475999874, + -18.917773554999883 + ], + [ + -50.35042560199997, + -19.04272392699994 + ], + [ + -50.39760247399994, + -19.10756834199998 + ], + [ + -50.5184856109999, + -19.128010126999982 + ], + [ + -50.543147516999966, + -19.20923127199984 + ], + [ + -50.58367150499987, + -19.497621547999927 + ], + [ + -50.68531750299991, + -19.548288475999982 + ], + [ + -50.80683162999998, + -19.561715781999965 + ], + [ + -50.935600628999964, + -19.732584733999943 + ], + [ + -50.76187160399991, + -19.738076556999943 + ], + [ + -50.672843554999986, + -19.763639181999906 + ], + [ + -50.49505249199996, + -19.719371669999873 + ], + [ + -50.36087749999996, + -19.657058253999935 + ], + [ + -50.24266047899994, + -19.679022025999927 + ], + [ + -50.16695747599988, + -19.761054370999943 + ], + [ + -49.922759611999936, + -19.835283834999927 + ], + [ + -49.696502540999916, + -19.783728089999954 + ], + [ + -49.66553861699998, + -19.663180898999883 + ], + [ + -49.695003520999876, + -19.60818723299991 + ], + [ + -49.813449535999894, + -19.55562414999997 + ], + [ + -49.683101553999904, + -19.497598413999867 + ], + [ + -49.5781705199999, + -19.548345472999927 + ], + [ + -49.517166524999936, + -19.623790312999972 + ], + [ + -49.56440357899993, + -19.683094792999896 + ], + [ + -49.57510760499997, + -19.81656503399995 + ], + [ + -49.44672048499996, + -19.86622026599997 + ], + [ + -49.365135564999946, + -19.759553171999983 + ], + [ + -49.30118549999992, + -19.76712873599996 + ], + [ + -49.283252585999946, + -19.930301424999925 + ], + [ + -49.34168249699991, + -20.03486365599997 + ], + [ + -49.34464650599995, + -20.098049961999948 + ], + [ + -49.26901256999997, + -20.2610027099999 + ], + [ + -49.30102557299995, + -20.33118756999994 + ], + [ + -49.221805523999876, + -20.46413427699997 + ], + [ + -49.26992753899992, + -20.531602395999926 + ], + [ + -49.33629947199995, + -20.531070479999983 + ], + [ + -49.40419758099995, + -20.451465700999904 + ], + [ + -49.368522524999946, + -20.404059500999892 + ], + [ + -49.40905355299992, + -20.330136646999847 + ], + [ + -49.53743748799985, + -20.239286706999962 + ], + [ + -49.614532556999905, + -20.242523629999937 + ], + [ + -49.795360550999874, + -20.15249276999998 + ], + [ + -49.93905252299993, + -20.172045570999956 + ], + [ + -49.98073958299989, + -20.304480143999854 + ], + [ + -50.055824503999986, + -20.352193457999874 + ], + [ + -50.1822705429999, + -20.37778005499996 + ], + [ + -50.209651537999946, + -20.45112070199997 + ], + [ + -50.305450488999895, + -20.45019986599982 + ], + [ + -50.394931496999845, + -20.53734902799988 + ], + [ + -50.311042559999976, + -20.65580744899995 + ], + [ + -50.268497527999955, + -20.672538229999873 + ], + [ + -50.16732460399987, + -20.518321939999964 + ], + [ + -50.10823050999994, + -20.548140392999983 + ], + [ + -50.09910161199997, + -20.613176585999895 + ], + [ + -49.969314545999964, + -20.681440816999896 + ], + [ + -49.856487591999894, + -20.649347515999978 + ], + [ + -49.74328948599998, + -20.702046719999885 + ], + [ + -49.58591053699996, + -20.701186736999887 + ], + [ + -49.5060345199999, + -20.773465731999977 + ], + [ + -49.40004753299996, + -20.825071936999905 + ], + [ + -49.33835957599996, + -20.65957125799997 + ], + [ + -49.21768950699993, + -20.68635060099996 + ], + [ + -49.17741362399994, + -20.75104397399997 + ], + [ + -49.18098062599995, + -20.89975854999983 + ], + [ + -49.06682949799995, + -20.79951618399997 + ], + [ + -49.05456560099998, + -20.729068131999952 + ], + [ + -48.986312600999895, + -20.693886098999883 + ], + [ + -48.978420535999874, + -20.588123244999963 + ], + [ + -49.13169453299997, + -20.50108103599996 + ], + [ + -49.14288353499995, + -20.4511627789999 + ], + [ + -49.09142652899993, + -20.21282621199998 + ], + [ + -48.9999425819999, + -20.227059521999934 + ], + [ + -48.98612953999992, + -20.30319938899993 + ], + [ + -49.009799531999874, + -20.41310910699991 + ], + [ + -48.90710847799994, + -20.473736585999916 + ], + [ + -48.827842495999846, + -20.440300335999893 + ], + [ + -48.74024154899996, + -20.515257348999967 + ], + [ + -48.72951556299995, + -20.62127316899995 + ], + [ + -48.61213254099994, + -20.873389081999903 + ], + [ + -48.52106450399998, + -21.001826828999924 + ], + [ + -48.48803762599982, + -21.126175044999968 + ], + [ + -48.51099046199994, + -21.177682342999958 + ], + [ + -48.60575055999993, + -21.247569477999946 + ], + [ + -48.53494661199994, + -21.36207314899991 + ], + [ + -48.5217055519999, + -21.48395339699988 + ], + [ + -48.61460453199993, + -21.48162658099983 + ], + [ + -48.65597961699996, + -21.36337787599996 + ], + [ + -48.859947531999865, + -21.339884406999886 + ], + [ + -48.87763552699994, + -21.24334164599992 + ], + [ + -48.993350549999946, + -21.226954521999915 + ], + [ + -49.06426949799993, + -21.37687139899998 + ], + [ + -49.137512578999974, + -21.46271851599988 + ], + [ + -49.12184948399994, + -21.546794871999907 + ], + [ + -49.14363052999994, + -21.693312047999882 + ], + [ + -49.07567257399995, + -21.713108929999976 + ], + [ + -48.99087956499994, + -21.79051982999988 + ], + [ + -48.8667335209999, + -21.860276038999928 + ], + [ + -48.7933125749999, + -21.973607751999964 + ], + [ + -48.64819349999982, + -22.12118088099993 + ], + [ + -48.574592510999935, + -22.147323701999824 + ], + [ + -48.52774052199993, + -22.266374219999932 + ], + [ + -48.38180957599997, + -22.33458145399993 + ], + [ + -48.39757560099997, + -22.382329132999814 + ], + [ + -48.50740853999986, + -22.398190040999964 + ], + [ + -48.50764055099995, + -22.539051611999867 + ], + [ + -48.64311959899993, + -22.67066676999997 + ], + [ + -48.72631853699994, + -22.63469683799991 + ], + [ + -48.738445474999935, + -22.53449286199998 + ], + [ + -48.7883875359999, + -22.489970203999974 + ], + [ + -48.8386035179999, + -22.353798642999948 + ], + [ + -48.829177564999895, + -22.236502792999886 + ], + [ + -48.93097661799993, + -22.10733883799992 + ], + [ + -48.98670956799998, + -21.977071657999886 + ], + [ + -49.100116550999985, + -21.94569031499998 + ], + [ + -49.197509571999944, + -21.95703572399998 + ], + [ + -49.33616653499996, + -22.009154062999983 + ], + [ + -49.35108162799992, + -22.078587065999955 + ], + [ + -49.44380961699983, + -22.13315124499985 + ], + [ + -49.46628149999992, + -22.248760990999926 + ], + [ + -49.34177754799998, + -22.275292564999972 + ], + [ + -49.272495585999934, + -22.337478406999935 + ], + [ + -49.26856246199986, + -22.432415194999976 + ], + [ + -49.364482614999986, + -22.40811354399989 + ], + [ + -49.4649844839999, + -22.460751895999977 + ], + [ + -49.50935358599992, + -22.351530499999967 + ], + [ + -49.623378481999964, + -22.503252670999927 + ], + [ + -49.69704049099994, + -22.475489124999854 + ], + [ + -49.91819348599995, + -22.484862439999915 + ], + [ + -50.005226474999915, + -22.43687118299988 + ], + [ + -50.20090451999988, + -22.43103855199996 + ], + [ + -50.25524858899996, + -22.38732575299997 + ], + [ + -50.48155947199996, + -22.33532861699996 + ], + [ + -50.63777551599992, + -22.34579811699996 + ], + [ + -50.6940004839999, + -22.396067407999908 + ], + [ + -50.78958854699994, + -22.372026432999917 + ], + [ + -50.91003750099998, + -22.289150867999865 + ], + [ + -51.02890059999993, + -22.300210285999924 + ], + [ + -51.012489503999916, + -22.217022914999973 + ], + [ + -51.02021761799995, + -22.061238202999903 + ], + [ + -51.077442547999965, + -22.027641020999965 + ], + [ + -51.19828058999991, + -22.138466879999953 + ], + [ + -51.25472248199998, + -22.155277121999916 + ], + [ + -51.34680154499995, + -22.276522692999947 + ], + [ + -51.312221499999964, + -22.36489695399996 + ], + [ + -51.33213455499998, + -22.458511915999964 + ], + [ + -51.277450515999874, + -22.580635406999875 + ], + [ + -51.20178254999996, + -22.542520545999935 + ], + [ + -51.13265246799989, + -22.588361174999818 + ], + [ + -51.06706658999997, + -22.57806970599995 + ], + [ + -50.96212750899991, + -22.49751877899996 + ], + [ + -50.86375447599994, + -22.58465922299996 + ], + [ + -50.66416560299996, + -22.61866544299994 + ], + [ + -50.5400395069999, + -22.717238467999948 + ], + [ + -50.42913049999993, + -22.688894726999933 + ], + [ + -50.30266954099994, + -22.72638882399997 + ], + [ + -50.16685856999993, + -22.698034521999887 + ], + [ + -49.85881055199991, + -22.772454422999942 + ], + [ + -49.757312577999926, + -22.756663252999886 + ], + [ + -49.67350762799998, + -22.7129236319999 + ], + [ + -49.54099661099997, + -22.718583260999935 + ], + [ + -49.43036252999991, + -22.872963164999874 + ], + [ + -49.30679651299994, + -22.939546656999937 + ], + [ + -49.302761464999946, + -23.125018225999952 + ], + [ + -49.27354852099995, + -23.422769745999915 + ], + [ + -49.25539046899996, + -23.49984972799996 + ], + [ + -49.28169656899996, + -23.65578112199995 + ], + [ + -49.33351148299994, + -23.69486208099994 + ], + [ + -49.29533761399995, + -23.791644228999814 + ], + [ + -49.30813258899997, + -23.854121929999963 + ], + [ + -49.538040481999985, + -23.860095544999922 + ], + [ + -49.678501564999976, + -23.891597083999955 + ], + [ + -49.716045618999885, + -23.965472327999976 + ], + [ + -49.660568483999896, + -24.059309745999826 + ], + [ + -49.56585348099998, + -24.063087637999956 + ], + [ + -49.60153960099984, + -24.147224343999824 + ], + [ + -49.682380542999965, + -24.21388494899992 + ], + [ + -49.74883260599995, + -24.221416759999954 + ], + [ + -49.84993746899994, + -24.170808001999887 + ], + [ + -49.86642450499983, + -24.07407195399992 + ], + [ + -49.97766158099995, + -24.0914531709999 + ], + [ + -50.04262149799996, + -24.175611837999895 + ], + [ + -50.32053355599999, + -24.31780981999998 + ], + [ + -50.183143601999916, + -24.33856575899995 + ], + [ + -50.19506048899996, + -24.40213059199982 + ], + [ + -50.299175628999876, + -24.41671594199994 + ], + [ + -50.433185496999954, + -24.388839240999914 + ], + [ + -50.454841484999974, + -24.436719018999952 + ], + [ + -50.37387447899994, + -24.642217803999984 + ], + [ + -50.20696647999989, + -24.713381502999937 + ], + [ + -50.16179657099997, + -24.8032401989999 + ], + [ + -50.16281161899997, + -25.07618782399993 + ], + [ + -50.185188618999916, + -25.15854102799983 + ], + [ + -50.15488854199998, + -25.20313476499996 + ], + [ + -49.94961958799996, + -25.28378895799989 + ], + [ + -49.855682593999916, + -25.256744243999947 + ], + [ + -49.81716959199997, + -25.37770466199993 + ], + [ + -49.76205857899993, + -25.45204929399995 + ], + [ + -49.76970656299994, + -25.520025857999883 + ], + [ + -49.67113454299982, + -25.527031452999893 + ], + [ + -49.62955057999994, + -25.45177419999993 + ], + [ + -49.69749059999998, + -25.332213726999896 + ], + [ + -49.77242648999999, + -25.28973189499993 + ], + [ + -49.80358856199996, + -25.18680061499998 + ], + [ + -49.976623565999944, + -24.971961874999977 + ], + [ + -50.04316749499992, + -24.84180835299992 + ], + [ + -50.16159456699995, + -24.709206811999934 + ], + [ + -50.140396565999936, + -24.60511866199994 + ], + [ + -50.056621622999955, + -24.489229294999973 + ], + [ + -49.88718446799993, + -24.449043433999975 + ], + [ + -49.76484656799988, + -24.378186008999876 + ], + [ + -49.59086256499995, + -24.331240142999945 + ], + [ + -49.43616850699988, + -24.257501858999944 + ], + [ + -49.37309250599998, + -24.389812211999867 + ], + [ + -49.21186056299996, + -24.363688501999945 + ], + [ + -49.07213256099993, + -24.211228220999942 + ], + [ + -48.96112850299983, + -24.150667126999906 + ], + [ + -48.851882464999846, + -24.14514747599992 + ], + [ + -48.86062260999995, + -23.919801516999883 + ], + [ + -48.75109460499982, + -23.90160859599996 + ], + [ + -48.58218752099998, + -23.928373186999977 + ], + [ + -48.384822534999955, + -23.92705940699983 + ], + [ + -48.404716478999944, + -23.852515956999923 + ], + [ + -48.7477455319999, + -23.8131939349999 + ], + [ + -48.89604553899994, + -23.72903023899994 + ], + [ + -48.82337158799993, + -23.68525356999993 + ], + [ + -48.63897357399998, + -23.723926665999898 + ], + [ + -48.589866517999894, + -23.645750498999917 + ], + [ + -48.47384253799993, + -23.635078156999896 + ], + [ + -48.37461454999993, + -23.656149087999836 + ], + [ + -48.24976761099998, + -23.645987538999975 + ], + [ + -48.10232959899997, + -23.692887974999906 + ], + [ + -47.99122948399997, + -23.683271585999876 + ], + [ + -47.91442157899985, + -23.630864238999948 + ], + [ + -47.95196546399984, + -23.482972597999947 + ], + [ + -47.99938960199995, + -23.467302461999964 + ], + [ + -48.20390351299983, + -23.502609720999885 + ], + [ + -48.29443762299985, + -23.556768046999935 + ], + [ + -48.45235452299994, + -23.558321883999895 + ], + [ + -48.58798260099991, + -23.454297268999937 + ], + [ + -48.78859758699997, + -23.45198134899988 + ], + [ + -48.881240582999965, + -23.53688114399995 + ], + [ + -48.953319585999964, + -23.399489847999916 + ], + [ + -48.851055505999966, + -23.37146445199994 + ], + [ + -48.69266553099982, + -23.36114297599994 + ], + [ + -48.551784513999905, + -23.391683445999888 + ], + [ + -48.50523360299985, + -23.43507907399993 + ], + [ + -48.37136052799997, + -23.471536496999818 + ], + [ + -48.32470350199992, + -23.456440018999956 + ], + [ + -48.2897915339999, + -23.35605415499998 + ], + [ + -48.32301354299989, + -23.188296900999944 + ], + [ + -48.46332961899998, + -23.184262187999877 + ], + [ + -48.63554755499996, + -23.21039176499994 + ], + [ + -48.60618256299995, + -23.097730436999825 + ], + [ + -48.390388621999875, + -23.03149211199991 + ], + [ + -48.371028604999935, + -22.96173556699989 + ], + [ + -48.2365984679999, + -23.014145762999874 + ], + [ + -48.22285449299994, + -23.092437767999968 + ], + [ + -48.06614659899992, + -22.90756449999992 + ], + [ + -48.01541160999989, + -22.93913862599993 + ], + [ + -47.90307952299992, + -22.900867693999885 + ], + [ + -47.695083600999965, + -22.8571119799999 + ], + [ + -47.693290543999865, + -22.75399026399998 + ], + [ + -47.8069224969999, + -22.619587619999947 + ], + [ + -47.68298750899993, + -22.385971739999945 + ], + [ + -47.62972252599991, + -22.32687999399991 + ], + [ + -47.60580862099994, + -22.200776606999852 + ], + [ + -47.46414557199989, + -22.183540563999884 + ], + [ + -47.44502661899992, + -22.117222107999908 + ], + [ + -47.48057561099989, + -22.012838746999932 + ], + [ + -47.455429565999964, + -21.94388753499993 + ], + [ + -47.54167549399989, + -21.914464204999945 + ], + [ + -47.52292651799996, + -21.86076202199996 + ], + [ + -47.5492175309999, + -21.762688222999884 + ], + [ + -47.62898257099988, + -21.75457470799995 + ], + [ + -47.64640837999991, + -21.696029796999937 + ], + [ + -47.53627050799997, + -21.601747131999844 + ], + [ + -47.50815156999988, + -21.72832694599998 + ], + [ + -47.355083600999876, + -21.70358239399991 + ], + [ + -47.252365555999916, + -21.72167439699996 + ], + [ + -47.21957052199991, + -21.548187943999892 + ], + [ + -47.30685060899992, + -21.42624265199987 + ], + [ + -47.36087750699994, + -21.39386822199998 + ], + [ + -47.39178460199986, + -21.20570371599996 + ], + [ + -47.24075360299997, + -21.23255916599993 + ], + [ + -47.14489748799997, + -21.22702258299995 + ], + [ + -47.089347597999904, + -21.282119347999924 + ], + [ + -47.19525562699994, + -21.395791365999912 + ], + [ + -47.207645587999934, + -21.486868287999982 + ], + [ + -47.15954251699998, + -21.521818476999954 + ], + [ + -47.13284648999996, + -21.62319373999992 + ], + [ + -47.19613656499996, + -21.801902956999925 + ], + [ + -47.18091150799995, + -21.98745515899998 + ], + [ + -47.24805457599996, + -22.183580461999895 + ], + [ + -47.332645580999895, + -22.29034897699995 + ], + [ + -47.26956957999994, + -22.303817186999936 + ], + [ + -47.219673618999934, + -22.431290343999876 + ], + [ + -47.34234646099992, + -22.43850900699988 + ], + [ + -47.52299156199996, + -22.600043535999816 + ], + [ + -47.523525488999894, + -22.701923221999948 + ], + [ + -47.428535558999954, + -22.705565996999894 + ], + [ + -47.159061562999966, + -22.79601712599998 + ], + [ + -47.0677796199999, + -22.764196906999814 + ], + [ + -47.048767618999875, + -22.69899726799997 + ], + [ + -46.91428350299998, + -22.524983424999903 + ], + [ + -46.78067361999996, + -22.479022767999936 + ], + [ + -46.755313500999875, + -22.332258827999965 + ], + [ + -46.78684655599989, + -22.15471821699998 + ], + [ + -46.77379962099997, + -22.043030026999872 + ], + [ + -46.81282861199992, + -21.913948047999952 + ], + [ + -46.86694754299998, + -21.83263034399988 + ], + [ + -46.927215605999834, + -21.62702175599992 + ], + [ + -46.94751758199982, + -21.280637594999973 + ], + [ + -46.91383356299997, + -21.196320174999983 + ], + [ + -47.06213759299982, + -21.100986586999966 + ], + [ + -47.12682761299993, + -21.092165974999887 + ], + [ + -47.13083248699985, + -20.958588445999965 + ], + [ + -47.02503157799998, + -20.93872936999992 + ], + [ + -46.919387578999874, + -20.953121600999964 + ], + [ + -46.848686560999965, + -20.921915439999964 + ], + [ + -46.965976543999886, + -20.700886832999856 + ], + [ + -46.97147356399995, + -20.61888549999992 + ], + [ + -46.86851847899993, + -20.59686976099988 + ], + [ + -46.81658554799992, + -20.692121205999968 + ], + [ + -46.65624661399994, + -20.7705717959999 + ], + [ + -46.56139347699997, + -20.789981769999883 + ], + [ + -46.475406549999946, + -20.874999077999973 + ], + [ + -46.34719846699994, + -20.843102751999822 + ], + [ + -46.20616154699991, + -20.88683533099993 + ], + [ + -46.09330357899995, + -20.981326201999934 + ], + [ + -46.00632054599993, + -20.97462235599994 + ], + [ + -45.99146261699991, + -21.0581517089999 + ], + [ + -45.91427953799996, + -21.018918031999817 + ], + [ + -45.75358554599984, + -21.089461134999908 + ], + [ + -45.7538225859999, + -21.19903021199997 + ], + [ + -45.581302566999966, + -21.195546189999902 + ], + [ + -45.54763447299996, + -21.089560208999956 + ], + [ + -45.44034158599993, + -21.151831546999972 + ], + [ + -45.344734580999955, + -21.128228107999917 + ], + [ + -45.45939247899997, + -20.987736681999934 + ], + [ + -45.405860615999984, + -20.75832147699998 + ], + [ + -45.27126351199996, + -20.764049166999882 + ], + [ + -45.27007261099993, + -20.68530168899997 + ], + [ + -45.310184543999924, + -20.61276469899991 + ], + [ + -45.435127539999826, + -20.570972026999925 + ], + [ + -45.48212051199994, + -20.390478302999895 + ], + [ + -45.64085062399994, + -20.467066937999903 + ], + [ + -45.68651154499997, + -20.382192791999955 + ], + [ + -45.75534054899998, + -20.347854648999885 + ], + [ + -45.88419353499984, + -20.331011717999957 + ], + [ + -45.937015617999975, + -20.27957968899989 + ], + [ + -45.86476562399997, + -20.21108143499987 + ], + [ + -45.741405466999936, + -20.25453389199987 + ], + [ + -45.65349556399991, + -20.232881256999974 + ], + [ + -45.57879654499993, + -20.280493483999976 + ], + [ + -45.541656499999874, + -20.21989299499984 + ], + [ + -45.38090148799995, + -20.12492720499995 + ], + [ + -45.3017275389999, + -20.102572668999983 + ], + [ + -45.213684530999956, + -20.116071723999823 + ], + [ + -45.1274416199999, + -20.02707804099998 + ], + [ + -45.047714465999945, + -20.028527942999972 + ], + [ + -45.02367047399997, + -20.163627122999856 + ], + [ + -45.09191861199997, + -20.372256380999886 + ], + [ + -45.04323953499994, + -20.490863495999918 + ], + [ + -44.92272553699996, + -20.476845433999927 + ], + [ + -44.66075149999995, + -20.329821822999975 + ], + [ + -44.63047455699996, + -20.173977599999944 + ], + [ + -44.64130347299994, + -20.009651896999912 + ], + [ + -44.80817459299993, + -19.75817032599997 + ], + [ + -45.033260543999916, + -19.645855840999843 + ], + [ + -45.018943582999896, + -19.57767794299997 + ], + [ + -44.93029758099988, + -19.618416339999953 + ], + [ + -44.78630855399996, + -19.647346813999945 + ], + [ + -44.77474957399994, + -19.54521080899997 + ], + [ + -44.64526760999985, + -19.622846342999935 + ], + [ + -44.531806480999876, + -19.864234425999882 + ], + [ + -44.229850597999985, + -19.90420990099983 + ], + [ + -44.03982547699991, + -19.877935651999962 + ], + [ + -43.8346596209999, + -19.82876724099998 + ], + [ + -43.693962502999966, + -19.842176608999864 + ], + [ + -43.566173515999935, + -19.8757506579999 + ], + [ + -43.5260205109999, + -19.830695077999962 + ], + [ + -43.449729601999934, + -19.83513581099993 + ], + [ + -43.38023356599996, + -19.734476696999934 + ], + [ + -43.33921856699993, + -19.630324844999905 + ], + [ + -43.36223259099995, + -19.562829736999845 + ], + [ + -43.35671646099996, + -19.429603408999924 + ], + [ + -43.31589860399998, + -19.29486247099993 + ], + [ + -43.37170447699992, + -19.170800580999924 + ], + [ + -43.547168555999974, + -18.985165565999864 + ], + [ + -43.55690346599988, + -18.85880183699993 + ], + [ + -43.46568254299996, + -18.650777416999915 + ], + [ + -43.470573550999916, + -18.607978748999926 + ], + [ + -43.63678350599997, + -18.591965625999876 + ], + [ + -43.58024253999997, + -18.491755614999875 + ], + [ + -43.48326861399994, + -18.513452505999908 + ], + [ + -43.46138346499998, + -18.421483917999865 + ], + [ + -43.37189055499988, + -18.34314866199992 + ], + [ + -43.29294559999994, + -18.35745673899993 + ], + [ + -43.206718614999886, + -18.22892042099994 + ], + [ + -43.232879540999875, + -18.184842170999843 + ], + [ + -43.17746359399996, + -18.071799968999983 + ], + [ + -43.15585353899991, + -17.819612139999947 + ], + [ + -43.08869152799997, + -17.900897321999878 + ], + [ + -42.963752554999985, + -17.98669900899995 + ], + [ + -42.98137651199988, + -18.055450060999817 + ], + [ + -42.897952602999965, + -18.085557186999893 + ], + [ + -42.739570507999986, + -18.082759307999936 + ], + [ + -42.67367148199992, + -18.059328702999835 + ], + [ + -42.6181065049999, + -17.982028277999916 + ], + [ + -42.75641645699983, + -17.880903465999893 + ], + [ + -42.76794861499991, + -17.758288961999938 + ], + [ + -42.70820257599985, + -17.677965854999968 + ], + [ + -42.68822447799994, + -17.58475255299993 + ], + [ + -42.6118395229999, + -17.58813532199997 + ], + [ + -42.50364256399996, + -17.63890635399997 + ], + [ + -42.49703561299998, + -17.71651137799995 + ], + [ + -42.320972562999884, + -17.739370168999926 + ], + [ + -42.27275449199993, + -17.667812519999927 + ], + [ + -42.334270619999984, + -17.598959543999854 + ], + [ + -42.28264262299996, + -17.524905261999947 + ], + [ + -42.26654048399996, + -17.43093205699995 + ], + [ + -42.340312463999965, + -17.315456923999875 + ], + [ + -42.30245257999991, + -17.14973244899994 + ], + [ + -42.2412645199999, + -17.032067626999947 + ], + [ + -42.10562554499995, + -17.09763355599995 + ], + [ + -42.01517860699994, + -17.042192965999902 + ], + [ + -41.98952059499993, + -16.975838132999968 + ], + [ + -42.03202857899993, + -16.886381599999936 + ], + [ + -41.86988049399997, + -16.840241402999936 + ], + [ + -41.822864555999956, + -16.86942467499989 + ], + [ + -41.69215346899995, + -16.86395397399997 + ], + [ + -41.59566150299992, + -16.78317204099983 + ], + [ + -41.67840949499998, + -16.61794025399996 + ], + [ + -41.855838459999916, + -16.537623516999872 + ], + [ + -42.04446749099992, + -16.609319801999902 + ], + [ + -42.15658550499995, + -16.57580409199994 + ], + [ + -42.245803487999865, + -16.484005655999965 + ], + [ + -42.213306513999896, + -16.396839394999972 + ], + [ + -42.26418349299996, + -16.287485229999845 + ], + [ + -42.284404498999834, + -16.155535465999947 + ], + [ + -42.24299957399995, + -16.10394066099991 + ], + [ + -42.2679484759999, + -16.00172821299998 + ], + [ + -42.37311956799988, + -15.974178908999932 + ], + [ + -42.41040746999994, + -15.911230815999943 + ], + [ + -42.283424486999934, + -15.760911608999834 + ], + [ + -42.14353957499992, + -15.80520761999992 + ], + [ + -42.11051554699998, + -15.93391459299994 + ], + [ + -42.04317852199995, + -15.996834522999961 + ], + [ + -41.91733547799993, + -16.012521421999907 + ], + [ + -41.78564856999992, + -15.953183414999955 + ], + [ + -41.76214956899992, + -15.860025266999969 + ], + [ + -41.87102546199992, + -15.772013774999948 + ], + [ + -41.934452496999825, + -15.801453868999943 + ], + [ + -41.9783555649999, + -15.880304778999971 + ], + [ + -42.074092489999884, + -15.80587951299998 + ], + [ + -42.066436458999874, + -15.766916068999876 + ], + [ + -41.955368530999976, + -15.69003306199994 + ], + [ + -42.03569046499996, + -15.567032990999962 + ], + [ + -42.129661489999876, + -15.57258365499996 + ], + [ + -42.112518486999875, + -15.456131023999944 + ], + [ + -42.20771746099996, + -15.4605756119999 + ], + [ + -42.27130157299996, + -15.302277000999936 + ], + [ + -42.322841559999915, + -15.314897128999974 + ], + [ + -42.33792160999991, + -15.537516789999927 + ], + [ + -42.415283558999874, + -15.463759394999897 + ], + [ + -42.468799495999974, + -15.27860650599996 + ], + [ + -42.47941953499998, + -15.169640590999961 + ], + [ + -42.562347569999986, + -15.078182459999937 + ], + [ + -42.63988855699989, + -15.041452624999977 + ], + [ + -42.68138149199996, + -15.154332385999965 + ], + [ + -42.60986759699989, + -15.22715285199996 + ], + [ + -42.59249861699993, + -15.39453392699994 + ], + [ + -42.686424547999934, + -15.439892930999974 + ], + [ + -42.71136858899996, + -15.506716647999951 + ], + [ + -42.716598560999955, + -15.70623393999989 + ], + [ + -42.65672645899997, + -15.650110727999902 + ], + [ + -42.541511499999956, + -15.764341147999971 + ], + [ + -42.504253604999974, + -15.85902329399994 + ], + [ + -42.57855649499993, + -15.98076255899997 + ], + [ + -42.686454554999955, + -16.056219636999913 + ], + [ + -42.68153353999992, + -15.8566793789999 + ], + [ + -42.77015657599998, + -15.824319364999894 + ], + [ + -42.77841157699993, + -15.494342444999916 + ], + [ + -42.714321532999975, + -15.409628057999953 + ], + [ + -42.73238755199992, + -15.05436796499987 + ], + [ + -42.705123567999976, + -14.907665547999954 + ], + [ + -42.79646250799982, + -14.801788196999894 + ], + [ + -42.92794456199994, + -14.78456539799987 + ], + [ + -42.91944849699996, + -14.855233725999938 + ], + [ + -43.00188451499997, + -14.947990716999925 + ], + [ + -43.064613504999954, + -15.06472632099991 + ], + [ + -43.069999547999885, + -15.135129780999932 + ], + [ + -42.9553035969999, + -15.129941047999864 + ], + [ + -42.9207994919999, + -15.232206468999948 + ], + [ + -42.9817424659999, + -15.343423259999895 + ], + [ + -42.948242513999844, + -15.459835657999975 + ], + [ + -42.98129252599989, + -15.601524690999952 + ], + [ + -43.070976542999915, + -15.53375012999993 + ], + [ + -43.116783475999966, + -15.545741280999891 + ], + [ + -43.114559589999885, + -15.76168039699985 + ], + [ + -43.05031950999995, + -15.824170334999849 + ], + [ + -43.11334656099996, + -15.907584017999909 + ], + [ + -43.21995548399997, + -15.834259798999938 + ], + [ + -43.230945499999905, + -15.957091058999879 + ], + [ + -43.390560573999835, + -16.095984055999963 + ], + [ + -43.4792255189999, + -16.368765047999943 + ], + [ + -43.50330756499994, + -16.511230915999874 + ], + [ + -43.566699563999975, + -16.62567088399993 + ], + [ + -43.674217588999966, + -16.612281798999845 + ], + [ + -43.853721576999874, + -16.71697210499991 + ], + [ + -43.91633657399984, + -16.604203152999958 + ], + [ + -43.849121588999935, + -16.471085454999923 + ], + [ + -43.850311483999974, + -16.386000922999813 + ], + [ + -43.89671353199998, + -16.274269985999922 + ], + [ + -43.98528258899995, + -16.236720233999904 + ], + [ + -44.07143346599986, + -16.2876072709999 + ], + [ + -44.074546504999944, + -16.158516405999933 + ], + [ + -44.218780617999926, + -16.11920561599993 + ], + [ + -44.173423457999945, + -16.06078559399998 + ], + [ + -44.205757487999904, + -15.994908696999971 + ], + [ + -44.0808525459999, + -15.797190329999921 + ], + [ + -44.120063591999894, + -15.718143114999918 + ], + [ + -44.119819510999946, + -15.597140954999873 + ], + [ + -44.1661875289999, + -15.600000860999899 + ], + [ + -44.22304952199988, + -15.676316747999977 + ], + [ + -44.3697584759999, + -15.819613596999943 + ], + [ + -44.430656522999925, + -15.839152651999939 + ], + [ + -44.61691246999993, + -15.820443572999977 + ], + [ + -44.663932599999896, + -15.9346014059999 + ], + [ + -44.617790557999854, + -15.992181895999863 + ], + [ + -44.68501258399988, + -16.033898292999936 + ], + [ + -44.79553954399995, + -16.22702186899994 + ], + [ + -44.87822349899989, + -16.27985970999987 + ], + [ + -44.699615534999964, + -16.420319787999972 + ], + [ + -44.676811561999955, + -16.51847656799987 + ], + [ + -44.786148459999936, + -16.57628085499988 + ], + [ + -44.803859588999956, + -16.682765222999876 + ], + [ + -44.74910748899998, + -16.75192011499996 + ], + [ + -44.74650155499984, + -16.854160725999918 + ], + [ + -44.64590446699998, + -16.793774477999932 + ], + [ + -44.62216959999989, + -16.880492139999888 + ], + [ + -44.74591046299997, + -16.92814392999992 + ], + [ + -44.85716245799989, + -16.896781865999912 + ], + [ + -44.91944452499985, + -16.715476270999943 + ], + [ + -44.910610501999884, + -16.56333684899994 + ], + [ + -44.971626565999884, + -16.354413050999938 + ], + [ + -44.96647655699991, + -16.298478263999982 + ], + [ + -44.89397460299995, + -16.154940518999922 + ], + [ + -44.99143954099998, + -16.017602196999917 + ], + [ + -45.12660259199993, + -15.942767894999974 + ], + [ + -45.08800560399993, + -15.88805150099995 + ], + [ + -44.938240607999944, + -15.815012099999876 + ], + [ + -44.78715546199993, + -15.71458030399998 + ], + [ + -44.70387253599989, + -15.61519373099992 + ], + [ + -44.641807560999894, + -15.587744505999922 + ], + [ + -44.55512258899995, + -15.454563943999972 + ], + [ + -44.520225540999945, + -15.29995102199996 + ], + [ + -44.482738483999924, + -15.227456779999955 + ], + [ + -44.456565488999956, + -15.051242017999868 + ], + [ + -44.35223359299994, + -15.068521981999936 + ], + [ + -44.27646655299998, + -14.809139628999958 + ], + [ + -44.345207545999926, + -14.777216982999903 + ], + [ + -44.444366466999895, + -14.67921929199997 + ], + [ + -44.47351051199996, + -14.621031113999948 + ], + [ + -44.45969747099991, + -14.540722422999977 + ], + [ + -44.533500463999985, + -14.486483797999938 + ], + [ + -44.59239154799985, + -14.382531769999957 + ], + [ + -44.59291860199994, + -14.291603710999937 + ], + [ + -44.66111762199995, + -14.149208083999952 + ], + [ + -44.63600946299988, + -14.083677190999936 + ], + [ + -44.57254051899997, + -14.076149906999945 + ], + [ + -44.48341356299994, + -13.831459018999965 + ], + [ + -44.52259057799995, + -13.666656888999853 + ], + [ + -44.50366558199994, + -13.587366263999911 + ], + [ + -44.54745851199988, + -13.476076717999888 + ], + [ + -44.73144547699985, + -13.448468404999971 + ], + [ + -44.7442096069999, + -13.288477989999876 + ], + [ + -44.65811958299997, + -13.088359380999975 + ], + [ + -44.56935858099996, + -13.028050748999874 + ], + [ + -44.452171526999905, + -13.141952095999898 + ], + [ + -44.420177467999906, + -13.254375377999963 + ], + [ + -44.29847357499989, + -13.215489885999887 + ], + [ + -44.2546315269999, + -12.982203749999883 + ], + [ + -44.330661591999956, + -12.913549257999932 + ], + [ + -44.44782651699995, + -12.663869292999891 + ], + [ + -44.39761355199994, + -12.595218823999971 + ], + [ + -44.296218506999935, + -12.617111181999917 + ], + [ + -44.15194348999995, + -12.586615470999902 + ], + [ + -44.102848503999894, + -12.520307743999979 + ], + [ + -44.104949511999905, + -12.397163336999938 + ], + [ + -44.072677507999856, + -12.311816953999823 + ], + [ + -44.07681246899995, + -12.186390657999937 + ], + [ + -44.14730846499998, + -12.08945713299994 + ], + [ + -44.14351649199983, + -12.012150336999866 + ], + [ + -44.3961715289999, + -12.058249462999925 + ], + [ + -44.393768604999934, + -12.015008397999907 + ], + [ + -44.288513526999964, + -11.969240356999876 + ], + [ + -44.20382646499985, + -11.807007447999979 + ], + [ + -44.06187457599998, + -11.646821398999975 + ], + [ + -43.932762588999935, + -11.62544503099997 + ], + [ + -43.7800754939999, + -11.656735848999972 + ], + [ + -43.69928752599998, + -11.738695103999873 + ], + [ + -43.670539609999935, + -11.859121091999953 + ], + [ + -43.629989470999874, + -11.929466214999934 + ], + [ + -43.47625748699994, + -12.06919471999987 + ], + [ + -43.45073660399987, + -12.14100449599988 + ], + [ + -43.469268488999944, + -12.211354815999925 + ], + [ + -43.45590957899998, + -12.320876450999947 + ], + [ + -43.39132651199998, + -12.364782367999908 + ], + [ + -43.43553954299995, + -12.565505647999885 + ], + [ + -43.47869846499998, + -12.572445192999965 + ], + [ + -43.56639848599991, + -12.463920836999932 + ], + [ + -43.640201478999984, + -12.244095534999872 + ], + [ + -43.69789847699991, + -12.223409165999954 + ], + [ + -43.75248746499989, + -12.270726685999932 + ], + [ + -43.82717156399997, + -12.238746036999828 + ], + [ + -43.83741760199996, + -12.371758961999944 + ], + [ + -43.747207536999895, + -12.412354194999978 + ], + [ + -43.76638046999983, + -12.477544781999882 + ], + [ + -43.882385506999924, + -12.51822886399998 + ], + [ + -43.93074053899994, + -12.588785210999959 + ], + [ + -43.83393056299991, + -12.684012850999977 + ], + [ + -43.768501593999986, + -12.71608469499995 + ], + [ + -43.515197462999936, + -12.793418312999904 + ], + [ + -43.38042450599994, + -12.761629609999886 + ], + [ + -43.25701958999997, + -12.533774947999916 + ], + [ + -43.32795747999995, + -12.210835807999956 + ], + [ + -43.39817050399995, + -11.97495295899995 + ], + [ + -43.530334508999886, + -11.897286411999914 + ], + [ + -43.559455587999935, + -11.776793703999942 + ], + [ + -43.64877348299996, + -11.673737701999926 + ], + [ + -43.69260446699991, + -11.520679287999883 + ], + [ + -43.88687854199998, + -11.274865224999928 + ], + [ + -43.90674549699986, + -11.22655562299991 + ], + [ + -43.99834461099988, + -11.153854347999925 + ], + [ + -44.06110360899993, + -10.99444965999993 + ], + [ + -44.1025695539999, + -10.83731361799994 + ], + [ + -44.17887152799989, + -10.66186881699997 + ], + [ + -44.16098756399998, + -10.569553217999896 + ], + [ + -44.31892357399988, + -10.530868722999855 + ], + [ + -44.42279848899989, + -10.347828576999973 + ], + [ + -44.578590575999954, + -10.349771333999968 + ], + [ + -44.687972568999896, + -10.40532172699983 + ], + [ + -44.837371610999924, + -10.616311831999894 + ], + [ + -44.90209147099995, + -10.5800324409999 + ], + [ + -44.87646447199984, + -10.462376503999963 + ], + [ + -44.81234760699988, + -10.349701428999879 + ], + [ + -44.926300586999844, + -10.288116736999825 + ], + [ + -44.90209951799994, + -10.213734051999893 + ], + [ + -44.772407502999954, + -10.187473883999871 + ], + [ + -44.71876550199988, + -10.256971930999953 + ], + [ + -44.593009461999884, + -10.22373114699991 + ], + [ + -44.53266160299995, + -10.158936017999963 + ], + [ + -44.544937569999945, + -10.06484446099995 + ], + [ + -44.647560563999946, + -10.02940979799996 + ], + [ + -44.68905651699998, + -9.984699049999904 + ], + [ + -44.63483448799991, + -9.901860867999915 + ], + [ + -44.473922565999885, + -9.81368827599988 + ], + [ + -44.407150480999974, + -9.80792538199995 + ], + [ + -44.36838551999995, + -9.684512083999948 + ], + [ + -44.35964956599997, + -9.528748159999907 + ], + [ + -44.29256450099996, + -9.454859335999913 + ], + [ + -44.2514574679999, + -9.48251358199991 + ], + [ + -44.18045855699995, + -9.433541976999948 + ], + [ + -44.08747860799997, + -9.444329318999962 + ], + [ + -44.1074215029999, + -9.306229919999907 + ], + [ + -44.07984956699988, + -9.229696605999948 + ], + [ + -44.09734360499988, + -9.158505413999876 + ], + [ + -44.011283587999856, + -9.111595757999964 + ], + [ + -43.96576650099996, + -9.000742740999897 + ], + [ + -43.82726259099991, + -8.94563759499988 + ], + [ + -43.72602847899992, + -8.999875716999952 + ], + [ + -43.71322646299984, + -8.945175584999845 + ], + [ + -43.74633749499998, + -8.776828579999972 + ], + [ + -43.82246361599988, + -8.695037465999917 + ], + [ + -43.92935953699998, + -8.703637968999942 + ], + [ + -43.91912053899995, + -8.55373969999988 + ], + [ + -43.77238459499995, + -8.402830573999893 + ], + [ + -43.70082057599984, + -8.25205824099993 + ], + [ + -43.68994857699994, + -8.136275491999925 + ], + [ + -43.717704578999985, + -7.98481148399992 + ], + [ + -43.697532522999836, + -7.865501964999964 + ], + [ + -43.68848459399993, + -7.612622292999959 + ], + [ + -43.67189747799995, + -7.477518083999826 + ], + [ + -43.62796758799993, + -7.398742610999875 + ], + [ + -43.524055457999964, + -7.320313477999946 + ], + [ + -43.32479850899989, + -7.215723921999938 + ], + [ + -43.23227654699997, + -7.23483566699997 + ], + [ + -43.23980751899995, + -7.436405015999924 + ], + [ + -43.17681852199996, + -7.509070584999961 + ], + [ + -42.9950145389999, + -7.55685145599989 + ], + [ + -42.90761961999982, + -7.541804430999946 + ], + [ + -42.72624546099996, + -7.453719680999939 + ], + [ + -42.624145497999905, + -7.330625732999977 + ], + [ + -42.50917059699992, + -7.261290629999905 + ], + [ + -42.43174745999988, + -7.156297234999897 + ], + [ + -42.39471051199996, + -7.155853160999925 + ], + [ + -42.33588061599988, + -7.251609363999933 + ], + [ + -42.18896060599991, + -7.197859403999928 + ], + [ + -42.13472751299997, + -7.043152605999978 + ], + [ + -42.16610349099989, + -6.913552791999962 + ], + [ + -42.051937610999914, + -7.005761102999941 + ], + [ + -42.003250487999935, + -7.206749753999929 + ], + [ + -41.91402445799997, + -7.330309567999961 + ], + [ + -41.81750147899987, + -7.313642823999942 + ], + [ + -41.88339245799989, + -7.243250091999926 + ], + [ + -41.96999361099995, + -7.10039530499995 + ], + [ + -41.98671751899997, + -7.0142556589999 + ], + [ + -41.93635150099993, + -7.001943648999941 + ], + [ + -41.83931353799983, + -7.047379263999971 + ], + [ + -41.687438480999845, + -6.977684241999896 + ], + [ + -41.67124548199985, + -6.877824594999936 + ], + [ + -41.59521860299998, + -6.845261738999966 + ], + [ + -41.473701458999926, + -6.720670782999889 + ], + [ + -41.56489958299994, + -6.598417874999939 + ], + [ + -41.65867648299985, + -6.647434406999878 + ], + [ + -41.63564250999997, + -6.283712781999952 + ], + [ + -41.57001857899991, + -6.251740179999956 + ], + [ + -41.49459050199994, + -6.284679718999939 + ], + [ + -41.40127561299994, + -6.381008572999974 + ], + [ + -41.372337594999976, + -6.356165450999924 + ], + [ + -41.396602533999896, + -6.200724731999969 + ], + [ + -41.441066518999946, + -6.162024814999825 + ], + [ + -41.42488458399998, + -6.056682396999975 + ], + [ + -41.46907850399998, + -5.862584675999926 + ], + [ + -41.54006953599992, + -5.822609535999959 + ], + [ + -41.535892497999896, + -5.731932262999919 + ], + [ + -41.72154260099995, + -5.684711637999953 + ], + [ + -41.91260959299996, + -5.860867894999899 + ], + [ + -41.9846074589999, + -5.98885938899997 + ], + [ + -42.169628583999895, + -6.175544656999875 + ], + [ + -42.35255456899989, + -6.437994450999895 + ], + [ + -42.55688860399994, + -6.417921133999926 + ], + [ + -42.64232249399993, + -6.338790938999978 + ], + [ + -42.741702528999895, + -6.339300725999976 + ], + [ + -42.81726857099994, + -6.384109374999923 + ], + [ + -42.91825860199998, + -6.401636101999941 + ], + [ + -42.901752622999936, + -6.326317660999905 + ], + [ + -42.83877955199995, + -6.284278895999876 + ], + [ + -42.862682560999986, + -6.209414083999945 + ], + [ + -42.96297052399996, + -6.158955026999934 + ], + [ + -43.003387557999986, + -6.102779008999903 + ], + [ + -43.01621253999991, + -5.985563624999941 + ], + [ + -43.121383464999894, + -6.04158340399988 + ], + [ + -43.11307146599995, + -6.132972970999901 + ], + [ + -43.149314480999976, + -6.264554098999952 + ], + [ + -43.30515652399998, + -6.125492289999954 + ], + [ + -43.306152461999886, + -6.04283331299996 + ], + [ + -43.48177361799998, + -6.070888213999979 + ], + [ + -43.52034361599988, + -5.971430729999952 + ], + [ + -43.671424570999875, + -5.976954236999916 + ], + [ + -43.71415752499996, + -5.91726351899996 + ], + [ + -43.798168501999896, + -5.924835059999907 + ], + [ + -43.85323760599988, + -5.813355243999979 + ], + [ + -43.98338660199994, + -5.882680121999897 + ], + [ + -44.0593264769999, + -5.859269968999968 + ], + [ + -44.094253532999915, + -5.759452230999898 + ], + [ + -44.179981458999976, + -5.657970684999952 + ], + [ + -44.3203355899999, + -5.638959019999959 + ], + [ + -44.47644451299993, + -5.56701630699996 + ], + [ + -44.657207463999896, + -5.513992218999874 + ], + [ + -44.83813453199991, + -5.422180874999981 + ], + [ + -44.788314510999896, + -5.196430573999976 + ], + [ + -44.78858960499991, + -5.020115396999927 + ], + [ + -44.80990260599998, + -4.969605376999937 + ], + [ + -44.91991860499991, + -4.989023731999907 + ], + [ + -45.00339548799997, + -4.940444400999979 + ], + [ + -45.105205603999934, + -4.754647278999926 + ], + [ + -45.18720257799998, + -4.713894297999957 + ], + [ + -45.39828454899998, + -4.743109924999942 + ], + [ + -45.39377558799998, + -4.846652244999973 + ], + [ + -45.33613256899997, + -4.88247867899986 + ], + [ + -45.29051255199994, + -5.007508343999973 + ], + [ + -45.36005049799991, + -5.031320659999949 + ], + [ + -45.460342483999966, + -4.89085404399998 + ], + [ + -45.52422750599993, + -4.875715320999973 + ], + [ + -45.57312048799997, + -4.967255426999941 + ], + [ + -45.71448162099989, + -5.051403364999942 + ], + [ + -45.84627162599992, + -5.182051586999876 + ], + [ + -46.03018550099995, + -5.200249368999948 + ], + [ + -46.13978156699994, + -5.127113575999886 + ], + [ + -46.1861725519999, + -5.262082835999877 + ], + [ + -46.31031054999994, + -5.274993649999828 + ], + [ + -46.36440651399988, + -5.242372287999899 + ], + [ + -46.44305759999992, + -5.052845219999938 + ], + [ + -46.58595262099993, + -5.054782947999968 + ], + [ + -46.663066464999986, + -5.095902888999888 + ], + [ + -46.738494541999955, + -5.264993535999906 + ], + [ + -46.79737456199996, + -5.189004207999972 + ], + [ + -46.844623516999945, + -5.226977246999922 + ], + [ + -46.857471465999936, + -5.332536420999929 + ], + [ + -46.930301487999884, + -5.290096497999969 + ], + [ + -46.92926062299995, + -5.100252593999812 + ], + [ + -47.08912262799993, + -5.037391169999978 + ], + [ + -47.205696460999945, + -5.222632570999963 + ], + [ + -47.22373951299983, + -5.311252085999968 + ], + [ + -47.28446153999994, + -5.324454086999935 + ], + [ + -47.459117603999914, + -5.193272775999901 + ], + [ + -47.59348252899997, + -5.134105088999888 + ], + [ + -47.78989046999993, + -5.00215297799997 + ], + [ + -47.90864946499994, + -5.11997923499996 + ], + [ + -47.93694358499994, + -5.216996914999868 + ], + [ + -47.80413048499992, + -5.340438878999919 + ], + [ + -47.7270126169999, + -5.373768343999927 + ], + [ + -47.628051509999864, + -5.470208509999907 + ], + [ + -47.551040594999904, + -5.496454427999936 + ], + [ + -47.486495581999975, + -5.589078816999972 + ], + [ + -47.52441447299998, + -5.665790162999883 + ], + [ + -47.588836607999895, + -5.625813848999883 + ], + [ + -47.70032446999983, + -5.661422352999978 + ], + [ + -47.80611448099995, + -5.610019157999886 + ], + [ + -47.91988356199994, + -5.669648687999938 + ], + [ + -47.79434947499993, + -5.887061677999952 + ], + [ + -47.72062661299998, + -5.971667769999954 + ], + [ + -47.71587357099992, + -6.072394106999923 + ], + [ + -47.788223476999974, + -6.145799964999924 + ], + [ + -47.73514557799996, + -6.223535243999947 + ], + [ + -47.74415562099989, + -6.322002991999966 + ], + [ + -47.8453136249999, + -6.388631243999953 + ], + [ + -47.83458747099991, + -6.551192388999937 + ], + [ + -47.875602470999866, + -6.729921386999933 + ], + [ + -47.83493850499991, + -6.854602196999906 + ], + [ + -47.88409451199993, + -6.981848874999969 + ], + [ + -47.95257549899998, + -6.980252959999973 + ], + [ + -48.01699059299989, + -7.022835039999904 + ], + [ + -48.13883261999996, + -7.199643072999891 + ], + [ + -48.17645261299998, + -7.290243567999823 + ], + [ + -48.188713492999966, + -7.42890958299995 + ], + [ + -48.2553176049999, + -7.52194585899997 + ], + [ + -48.264846486999886, + -7.775211433999914 + ], + [ + -48.32704154999993, + -7.815558729999964 + ], + [ + -48.32894155999992, + -7.926716680999959 + ], + [ + -48.396766578999916, + -8.01179936799997 + ], + [ + -48.45264453699997, + -8.20571855399993 + ], + [ + -48.37817350599994, + -8.326874940999971 + ], + [ + -48.492378613999904, + -8.383546664999926 + ], + [ + -48.474723475999895, + -8.459127458999944 + ], + [ + -48.40630350899994, + -8.502352263999967 + ], + [ + -48.433731610999985, + -8.572396139999967 + ], + [ + -48.41719847399992, + -8.645660176999968 + ], + [ + -48.46201349299997, + -8.711215376999917 + ], + [ + -48.5245134889999, + -8.708084567999947 + ], + [ + -48.56195846799989, + -8.86989888599993 + ], + [ + -48.533821592999914, + -8.943121682999902 + ], + [ + -48.564720472999966, + -9.016642708999939 + ], + [ + -48.643112557999984, + -9.089274413999817 + ], + [ + -48.55365753399997, + -9.139239944999929 + ], + [ + -48.50994155099994, + -9.0816970059999 + ], + [ + -48.41934960599991, + -9.12588287999995 + ], + [ + -48.38270560099994, + -9.050032354999928 + ], + [ + -48.278282510999986, + -9.0814919849999 + ], + [ + -48.254814522999936, + -9.131763454999941 + ], + [ + -48.29556247399984, + -9.287836168999888 + ], + [ + -48.29496752699998, + -9.382942606999961 + ], + [ + -48.325477486999944, + -9.506897710999965 + ], + [ + -48.31163762399996, + -9.669516355999917 + ], + [ + -48.26334361199997, + -9.771155146999945 + ], + [ + -48.30098757699983, + -9.863089536999894 + ], + [ + -48.238586487999896, + -9.98177728599984 + ], + [ + -48.24028751099996, + -10.060847634999902 + ], + [ + -48.14480556399991, + -10.088721820999979 + ], + [ + -48.128410560999896, + -10.24552476599996 + ], + [ + -48.07612659599994, + -10.376785704999975 + ], + [ + -48.0846255109999, + -10.467344122999975 + ], + [ + -47.993614470999944, + -10.497434986999963 + ], + [ + -47.985565496999925, + -10.61187529099982 + ], + [ + -48.018478547999905, + -10.699237185999891 + ], + [ + -48.11386158899995, + -10.829578126999934 + ], + [ + -48.30424461699994, + -10.898943236999969 + ], + [ + -48.35903158599996, + -10.89256276499998 + ], + [ + -48.404838519999885, + -10.98235842899993 + ], + [ + -48.465469518999896, + -10.978304772999934 + ], + [ + -48.56116453499993, + -11.098335302999942 + ], + [ + -48.550514487999976, + -11.252989630999934 + ], + [ + -48.67387347199997, + -11.28386655099996 + ], + [ + -48.72695958499986, + -11.35080476499985 + ], + [ + -48.78414159899995, + -11.491175155999883 + ], + [ + -48.83624250399987, + -11.542065713999818 + ], + [ + -48.94636562399995, + -11.492495137999924 + ], + [ + -48.95418560499991, + -11.387039228999924 + ], + [ + -49.01554147099995, + -11.292294889999823 + ], + [ + -49.12034660899997, + -11.318286165999893 + ], + [ + -49.20474248399995, + -11.254615552999894 + ], + [ + -49.24384355899997, + -11.157344403999957 + ], + [ + -49.17757455599997, + -10.943511157999922 + ], + [ + -49.18846851599989, + -10.677381540999875 + ], + [ + -49.280380609999895, + -10.684798015999888 + ], + [ + -49.29928548999993, + -10.630979994999961 + ], + [ + -49.21817062799988, + -10.567413149999936 + ], + [ + -49.141151498999875, + -10.400608079999927 + ], + [ + -49.152137491999895, + -10.301996664999933 + ], + [ + -49.20965561999992, + -10.19215769199991 + ], + [ + -49.307357597999896, + -10.174279929999955 + ], + [ + -49.36175547899995, + -9.954192274999969 + ], + [ + -49.41259758899997, + -10.01639588699993 + ], + [ + -49.481475542999874, + -9.927144040999849 + ], + [ + -49.48058354099987, + -9.849082705999933 + ], + [ + -49.234603516999925, + -9.820505780999895 + ], + [ + -49.17907759899998, + -9.775497977999976 + ], + [ + -49.16662561099997, + -9.707750742999906 + ], + [ + -49.236419539999986, + -9.66445452499994 + ], + [ + -49.33376361099994, + -9.694695592999949 + ], + [ + -49.58288550799995, + -9.808135432999904 + ], + [ + -49.61402846899995, + -9.869093326999973 + ], + [ + -49.53930648399995, + -9.988208887999974 + ], + [ + -49.61444052299993, + -10.09182463399992 + ], + [ + -49.67635361899988, + -9.986422871999878 + ], + [ + -49.747299555999916, + -9.953355257999931 + ], + [ + -49.794738613999925, + -10.014374171999975 + ], + [ + -49.85301262199988, + -9.941046265999944 + ], + [ + -49.918106481999985, + -9.910227180999925 + ], + [ + -49.928733561999934, + -9.835604437999962 + ], + [ + -49.88033259699995, + -9.675833963999935 + ], + [ + -49.93495159299994, + -9.63921946399995 + ], + [ + -49.93880458599995, + -9.430193070999962 + ], + [ + -50.02130162399993, + -9.31433555599989 + ], + [ + -49.83621260599995, + -9.100371550999967 + ], + [ + -49.82101453899992, + -9.185332700999936 + ], + [ + -49.691497538999954, + -9.05299116699996 + ], + [ + -49.686691522999865, + -9.142539732999978 + ], + [ + -49.74312553599998, + -9.311475649999977 + ], + [ + -49.82601954099988, + -9.35061796499997 + ], + [ + -49.86344959999997, + -9.433471065999868 + ], + [ + -49.819290548999845, + -9.47586187099995 + ], + [ + -49.7382435799999, + -9.42169600099993 + ], + [ + -49.675476536999895, + -9.482377459999952 + ], + [ + -49.58398454299993, + -9.44077438599993 + ], + [ + -49.488388601999986, + -9.604622990999928 + ], + [ + -49.403625599999884, + -9.627262343999917 + ], + [ + -49.262351471999864, + -9.556698118999975 + ], + [ + -49.219711556999926, + -9.489967104999948 + ], + [ + -49.19140653999989, + -9.309702709999897 + ], + [ + -49.264793622999946, + -9.204409409999869 + ], + [ + -49.30759447099996, + -9.226362619999975 + ], + [ + -49.39577460699991, + -9.188802473999942 + ], + [ + -49.42606361999992, + -9.125762682999948 + ], + [ + -49.4254374919999, + -8.922600436999971 + ], + [ + -49.44528147999995, + -8.859525944999916 + ], + [ + -49.41538255999984, + -8.7779507489999 + ], + [ + -49.36326556299986, + -8.788138784999887 + ], + [ + -49.332832548999875, + -8.92233020499998 + ], + [ + -49.29678349199986, + -8.972707621999916 + ], + [ + -49.14654558899997, + -8.880415156999902 + ], + [ + -49.19187156799984, + -8.819748449999963 + ], + [ + -49.296142611999926, + -8.785654890999979 + ], + [ + -49.21774247999997, + -8.677549797999916 + ], + [ + -49.11704246299996, + -8.690999734999878 + ], + [ + -48.98027058999992, + -8.75820399099996 + ], + [ + -48.96565255099995, + -8.630827225999951 + ], + [ + -49.160156625999946, + -8.578696984999965 + ], + [ + -49.25282258899995, + -8.533067244999927 + ], + [ + -49.29460956199995, + -8.463165189999927 + ], + [ + -49.36532549899994, + -8.417486331999953 + ], + [ + -49.41493261999989, + -8.537247802999957 + ], + [ + -49.51510658899997, + -8.637852768999949 + ], + [ + -49.59628649499996, + -8.752174552999975 + ], + [ + -49.588905557999965, + -8.81740285799998 + ], + [ + -49.78554550999985, + -8.91309183899989 + ], + [ + -49.830543589999934, + -9.023413944999902 + ], + [ + -49.92175260999994, + -9.12315808999989 + ], + [ + -49.950908556999934, + -9.195253018999892 + ], + [ + -50.052982535999945, + -9.279822901999978 + ], + [ + -50.179904498999974, + -9.276593186999946 + ], + [ + -50.276515488999905, + -9.351771649999932 + ], + [ + -50.3383335339999, + -9.538615670999945 + ], + [ + -50.246383552999816, + -9.612995170999966 + ], + [ + -50.207740464999915, + -9.699888181999881 + ], + [ + -50.29098550399988, + -9.828095258999895 + ], + [ + -50.31113861599982, + -9.929841001999876 + ], + [ + -50.43798061599995, + -10.088703715999827 + ], + [ + -50.47497950999997, + -10.174847719999946 + ], + [ + -50.42108554899988, + -10.267882151999913 + ], + [ + -50.348365497999964, + -10.319006731999934 + ], + [ + -50.39968856199988, + -10.381913082999915 + ], + [ + -50.465183579999916, + -10.378068471999882 + ], + [ + -50.622554482999874, + -10.308996224999873 + ], + [ + -50.7159535269999, + -10.335069475999887 + ], + [ + -50.75292258199994, + -10.383863216999885 + ], + [ + -50.87806355799995, + -10.272453976999884 + ], + [ + -51.037074463999886, + -10.261853551999877 + ], + [ + -51.20149655899991, + -10.143171 + ], + [ + -51.26295853999994, + -10.237987423999812 + ], + [ + -51.36004662799991, + -10.281843384999888 + ], + [ + -51.34825848699995, + -10.36643941899996 + ], + [ + -51.21347061099988, + -10.440179212999965 + ], + [ + -51.13909949199996, + -10.511522283999966 + ], + [ + -51.023940524999944, + -10.526499236999882 + ], + [ + -51.03429452199998, + -10.597765026999923 + ], + [ + -50.95880861099994, + -10.782882376999964 + ], + [ + -50.98865153899993, + -10.840487341999903 + ], + [ + -51.07324254399998, + -10.83477255999992 + ], + [ + -51.163455626999905, + -10.75437015999995 + ], + [ + -51.23631649399994, + -10.956627159999869 + ], + [ + -51.39180347999991, + -10.890577762999897 + ], + [ + -51.5935825439999, + -10.931557054999928 + ], + [ + -51.61884358799995, + -10.86428356499988 + ], + [ + -51.69568250699996, + -10.840921188999914 + ], + [ + -51.78416858199989, + -10.855135387999951 + ], + [ + -51.807022511999946, + -10.997164390999842 + ], + [ + -51.78158561499998, + -11.073148186999958 + ], + [ + -51.59295658299993, + -11.16895551999994 + ], + [ + -51.560363552999945, + -11.203506059999881 + ], + [ + -51.52911347099996, + -11.348470068999916 + ], + [ + -51.483673496999984, + -11.396819568999945 + ], + [ + -51.39852157499996, + -11.418733048999968 + ], + [ + -51.30048348299988, + -11.386583253999959 + ], + [ + -51.2065126249999, + -11.44812804799983 + ], + [ + -51.29425857899997, + -11.670034743999963 + ], + [ + -51.18434148499989, + -11.66657318599988 + ], + [ + -51.13293460299997, + -11.771185036999952 + ], + [ + -51.03598749899993, + -11.730888702999948 + ], + [ + -51.019569529999956, + -11.813647926999977 + ], + [ + -51.08376350899994, + -11.932104 + ], + [ + -51.01827955499982, + -11.952739574999896 + ], + [ + -50.99716956399993, + -12.023987763999969 + ], + [ + -51.06026450799993, + -12.079239927999936 + ], + [ + -51.13659246499992, + -12.248725362999949 + ], + [ + -51.05091449499997, + -12.276202415999933 + ], + [ + -51.03805548199995, + -12.389765803999921 + ], + [ + -51.09720657299994, + -12.42253954899985 + ], + [ + -51.321041608999906, + -12.430009835999954 + ], + [ + -51.39538959299989, + -12.468903207999972 + ], + [ + -51.564479569999946, + -12.619723149999857 + ], + [ + -51.723941589999924, + -12.74142285299996 + ], + [ + -51.797443504999876, + -12.85850010299987 + ], + [ + -51.854328464999924, + -12.894533568999975 + ], + [ + -52.07658753599998, + -12.932486994999977 + ], + [ + -52.23125058099998, + -13.0273275589999 + ], + [ + -52.32921256499998, + -13.170231128999944 + ], + [ + -52.41961256499991, + -13.242673235999916 + ], + [ + -52.66390950299996, + -13.314090570999895 + ], + [ + -52.83516653699991, + -13.327214619999893 + ], + [ + -52.90360662099994, + -13.284971503999941 + ], + [ + -53.0204086089999, + -13.29905645499997 + ], + [ + -53.216083468999955, + -13.490994493999892 + ], + [ + -53.33506357899995, + -13.46466827699993 + ], + [ + -53.34658048099993, + -13.37044881199995 + ], + [ + -53.46522849999997, + -13.412016010999878 + ], + [ + -53.50851449199996, + -13.492360408999957 + ], + [ + -53.50022160499998, + -13.548637847999885 + ], + [ + -53.546173544999874, + -13.616357422999954 + ], + [ + -53.61552054999987, + -13.585461391999957 + ], + [ + -53.58792849899993, + -13.374121426999977 + ], + [ + -53.68284651099998, + -13.362136310999972 + ], + [ + -53.83326361999991, + -13.41565358899993 + ], + [ + -53.87254758799992, + -13.464760477999903 + ], + [ + -54.04552458899991, + -13.45751583099991 + ], + [ + -54.14356251399994, + -13.405092390999869 + ], + [ + -54.29131652399985, + -13.41567068799992 + ], + [ + -54.51798263199987, + -13.309935829999858 + ], + [ + -54.63105349999995, + -13.340500774999896 + ], + [ + -54.76481258099989, + -13.336764960999972 + ], + [ + -54.85954652799995, + -13.255233349999912 + ], + [ + -55.02124048099995, + -13.198794977999967 + ], + [ + -55.228507511999965, + -12.922904634999952 + ], + [ + -55.296153493999896, + -12.814391845999978 + ], + [ + -55.450500541999986, + -12.660895226999912 + ], + [ + -55.48361257999983, + -12.477066678999961 + ], + [ + -55.575595584999974, + -12.475894049999908 + ], + [ + -55.62566354299997, + -12.432738815999869 + ], + [ + -55.634338476999915, + -12.3073353179999 + ], + [ + -55.7506445919999, + -12.335185532999958 + ], + [ + -55.92821856399996, + -12.265799132999916 + ], + [ + -55.89627060499993, + -12.177948069999957 + ], + [ + -55.927741633999915, + -12.105764963999945 + ], + [ + -56.0208355769999, + -12.098719470999981 + ], + [ + -56.08892462599988, + -12.04285224299997 + ], + [ + -56.168502581999974, + -12.065806754999926 + ], + [ + -56.206016627999986, + -12.2025725929999 + ], + [ + -56.27977352099998, + -12.196753875999946 + ], + [ + -56.36859855999995, + -12.056414496999878 + ], + [ + -56.38959153999991, + -11.990871031999916 + ], + [ + -56.46086453899994, + -11.924103472999946 + ], + [ + -56.58099347199993, + -11.715877886999976 + ], + [ + -56.708583472999976, + -11.812139183999932 + ], + [ + -56.662189471999966, + -11.997260388999962 + ], + [ + -56.425952570999925, + -12.06897461099993 + ], + [ + -56.3664776039999, + -12.256409724999912 + ], + [ + -56.31846656499994, + -12.25532778899992 + ], + [ + -56.31629162899998, + -12.416248929999938 + ], + [ + -56.45137756599996, + -12.614855443999886 + ], + [ + -56.39872362299997, + -12.687365611999951 + ], + [ + -56.41896860199995, + -12.859720004999929 + ], + [ + -56.29589862599994, + -12.987531455999886 + ], + [ + -56.21491653299995, + -13.03363108499991 + ], + [ + -56.23268549699998, + -13.153147300999933 + ], + [ + -56.32322647999996, + -13.18632002399994 + ], + [ + -56.433891574999905, + -13.27112627699995 + ], + [ + -56.55660649299989, + -13.431678446999967 + ], + [ + -56.766979521999986, + -13.370060561999821 + ], + [ + -56.85952763599994, + -13.27663184599993 + ], + [ + -56.90189748599994, + -13.286794400999952 + ], + [ + -56.93311353699994, + -13.43600417999994 + ], + [ + -57.03055953199993, + -13.393042063999928 + ], + [ + -57.04774461299996, + -13.296469463999927 + ], + [ + -57.19239463599996, + -13.300320445999887 + ], + [ + -57.340454585999964, + -13.080129021999937 + ], + [ + -57.40015049999994, + -13.043029544999968 + ], + [ + -57.50579852299995, + -13.032040199999926 + ], + [ + -57.57578657599993, + -12.956954272999894 + ], + [ + -57.53776156899994, + -12.886013028999912 + ], + [ + -57.42506755199997, + -12.886706044999869 + ], + [ + -57.4187206069999, + -12.80406383299993 + ], + [ + -57.56172157499998, + -12.776783419999958 + ], + [ + -57.62114759199994, + -12.712105804999965 + ], + [ + -57.51952355399993, + -12.588739277999878 + ], + [ + -57.60475158399987, + -12.528511447999904 + ], + [ + -57.670379538999896, + -12.525796381999953 + ], + [ + -57.687419611999985, + -12.440729283999929 + ], + [ + -57.77775959699994, + -12.279417210999952 + ], + [ + -57.7957835389999, + -12.170245603999888 + ], + [ + -57.87285949699998, + -12.142179638999949 + ], + [ + -58.04558152099992, + -12.229313713999943 + ], + [ + -58.121166505999895, + -12.311355111999887 + ], + [ + -58.181541521999975, + -12.097448774999918 + ], + [ + -58.110431634999884, + -11.978657760999965 + ], + [ + -58.12291748599995, + -11.9269253249999 + ], + [ + -58.32653453299997, + -11.939098529999853 + ], + [ + -58.355323520999946, + -11.883796241999903 + ], + [ + -58.36227463299991, + -11.731162622999875 + ], + [ + -58.41937249299991, + -11.710047267999926 + ], + [ + -58.62985247599994, + -11.721999358999938 + ], + [ + -58.65778751499994, + -11.709131293999974 + ], + [ + -58.77083960699997, + -11.549857027999906 + ], + [ + -58.84561154799991, + -11.551449924999929 + ], + [ + -58.914001507999956, + -11.617280553999933 + ], + [ + -59.04410557699998, + -11.657235745999856 + ], + [ + -59.13587953799993, + -11.715865816999951 + ], + [ + -59.23272354399995, + -11.701059855999972 + ], + [ + -59.30319255099994, + -11.628093711999952 + ], + [ + -59.2806965289999, + -11.495437856999956 + ], + [ + -59.50323857299992, + -11.550193980999893 + ], + [ + -59.563285521999944, + -11.49222406799987 + ], + [ + -59.626243504999934, + -11.483454584999947 + ], + [ + -59.77376148099995, + -11.512549847999878 + ], + [ + -59.82239562999996, + -11.570315744999903 + ], + [ + -59.970809630999895, + -11.574091624999937 + ], + [ + -60.00181948799991, + -11.620596434999925 + ], + [ + -60.105480495999984, + -11.67981726399995 + ], + [ + -60.10874960599995, + -11.744989745999874 + ], + [ + -60.05218550599989, + -11.877380732999882 + ], + [ + -59.95810350399995, + -12.005738012999814 + ], + [ + -59.98043456999994, + -12.093547836999846 + ], + [ + -60.06351850899995, + -12.092349056999865 + ], + [ + -60.1575245709999, + -12.039478693999968 + ], + [ + -60.17779955699996, + -12.14099862899991 + ], + [ + -60.25897560699991, + -12.09172108499996 + ], + [ + -60.378391575999956, + -12.093302079999944 + ], + [ + -60.43960159699992, + -12.18610248799996 + ], + [ + -60.580478590999974, + -12.276403580999897 + ], + [ + -60.579849612999965, + -12.375875649999955 + ], + [ + -60.666744634999986, + -12.45212045799991 + ], + [ + -60.731128547999845, + -12.447562714999947 + ], + [ + -60.83738761099994, + -12.489092027999959 + ], + [ + -60.86902963099993, + -12.674766269999907 + ], + [ + -60.75990663899984, + -12.736197406999963 + ], + [ + -60.62710560899984, + -12.724873957999932 + ], + [ + -60.58851247699988, + -12.796439317999955 + ], + [ + -60.71028560499997, + -12.843398930999967 + ], + [ + -60.78772751699995, + -12.902539124999919 + ], + [ + -60.64318461399989, + -12.974339177999923 + ], + [ + -60.47607461099989, + -12.965915700999915 + ], + [ + -60.36029051999992, + -12.999988472999974 + ], + [ + -60.28255859399991, + -12.925777448999952 + ], + [ + -60.18018353799994, + -12.919475933999934 + ], + [ + -60.14543551999998, + -12.94981791999993 + ], + [ + -60.09952548899986, + -13.154382961999943 + ], + [ + -60.008975620999934, + -13.15702007599998 + ], + [ + -60.06238158799994, + -13.045067520999908 + ], + [ + -60.06553251299994, + -12.952261747999955 + ], + [ + -60.010536498999954, + -12.895884563999914 + ], + [ + -59.97651653399987, + -12.753261116999965 + ], + [ + -60.00241057899996, + -12.608559796999884 + ], + [ + -59.98761350299992, + -12.487388991999921 + ], + [ + -59.90930557199994, + -12.508029596999961 + ], + [ + -59.88420462199991, + -12.708855973999903 + ], + [ + -59.844055473999845, + -12.771315903999948 + ], + [ + -59.75547049199997, + -12.817313776999981 + ], + [ + -59.734432584999865, + -12.902407025999935 + ], + [ + -59.64596561999997, + -12.959852231999946 + ], + [ + -59.715618564999886, + -13.131838658999982 + ], + [ + -59.63134355799997, + -13.313005449999821 + ], + [ + -59.60247058399983, + -13.500231853999935 + ], + [ + -59.61044361799998, + -13.557407161999947 + ], + [ + -59.55587759599996, + -13.60981182699993 + ], + [ + -59.39546154699997, + -13.680983069999911 + ], + [ + -59.40335847399996, + -13.734742249999897 + ], + [ + -59.50918150999996, + -13.789313635999918 + ], + [ + -59.67137955099997, + -13.824588540999855 + ], + [ + -59.72517762299998, + -13.796224347999896 + ], + [ + -59.78940948799993, + -13.827253314999894 + ], + [ + -59.69769252399993, + -13.985722917999965 + ], + [ + -59.60593448899982, + -14.076591632999964 + ], + [ + -59.51858147899992, + -14.2934515849999 + ], + [ + -59.448398629999986, + -14.410342924999952 + ], + [ + -59.24053547799997, + -14.65320806699998 + ], + [ + -59.10660557299991, + -14.871982612999943 + ], + [ + -58.978031536999936, + -14.989744161999965 + ], + [ + -58.95725648699994, + -14.949906819999853 + ], + [ + -58.84242256899995, + -15.04218872399997 + ], + [ + -58.75608058499995, + -15.059468519999939 + ], + [ + -58.725242556999945, + -14.977287814999954 + ], + [ + -58.638725557999976, + -14.980752726999981 + ], + [ + -58.53108951599995, + -15.09003849499993 + ], + [ + -58.43886561499994, + -15.023498923999966 + ], + [ + -58.296523631999946, + -15.022938844999828 + ], + [ + -58.20703558399987, + -14.978061799999978 + ], + [ + -58.1695974779999, + -14.919931457999894 + ], + [ + -58.075366613999904, + -14.86814990399995 + ], + [ + -58.02215560999991, + -14.769960433999927 + ], + [ + -58.00807954499993, + -14.671349689999886 + ], + [ + -57.9349095529999, + -14.579064768999956 + ], + [ + -57.951873518999946, + -14.500804949999974 + ], + [ + -57.65356460299995, + -14.348455980999972 + ], + [ + -57.56121849299984, + -14.334277655999927 + ], + [ + -57.4341205099999, + -14.255974083999888 + ], + [ + -57.18178549399994, + -14.163459162999914 + ], + [ + -57.052894621999826, + -14.143540408999968 + ], + [ + -57.015483505999896, + -14.213867593999964 + ], + [ + -56.931808474999855, + -14.256854016999966 + ], + [ + -56.79328947799996, + -14.20581023799997 + ], + [ + -56.71083854099987, + -14.267119333999858 + ], + [ + -56.66858653999998, + -14.615682453999966 + ], + [ + -56.77359351399997, + -14.784191564999958 + ], + [ + -56.747848498999986, + -14.848701373999972 + ], + [ + -56.87201650399999, + -15.013588664999872 + ], + [ + -56.98620954099982, + -15.068092157999956 + ], + [ + -57.18936156099983, + -15.109267418999934 + ], + [ + -57.17709347199997, + -15.21738139699994 + ], + [ + -57.1276476189999, + -15.275195573999895 + ], + [ + -57.17740259699997, + -15.419647281999914 + ], + [ + -57.26838262399991, + -15.503995882999902 + ], + [ + -57.43284947799998, + -15.8151649859999 + ], + [ + -57.66466157199983, + -16.010562738999965 + ], + [ + -57.7226985399999, + -16.196041012999842 + ], + [ + -57.78059351899992, + -16.14718507899994 + ], + [ + -57.72384652499994, + -16.083467023999845 + ], + [ + -57.73048348399993, + -15.926042141999858 + ], + [ + -57.76729160599996, + -15.805060601999912 + ], + [ + -57.81570447299998, + -15.549583041999881 + ], + [ + -57.885745499999985, + -15.539661718999866 + ], + [ + -57.98447761399996, + -15.74758438299989 + ], + [ + -58.06566958999997, + -15.670868342999938 + ], + [ + -58.25184255599993, + -15.714552475999938 + ], + [ + -58.336688538999965, + -15.563108248999981 + ], + [ + -58.47273252699989, + -15.511989535999874 + ], + [ + -58.512424526999894, + -15.544740481999952 + ], + [ + -58.63256050099994, + -15.466212441999915 + ], + [ + -58.74015463299992, + -15.50713859299998 + ], + [ + -58.8988795489999, + -15.47037908599998 + ], + [ + -58.97090960199995, + -15.514010412999937 + ], + [ + -59.022426621999955, + -15.680651700999931 + ], + [ + -59.21155957399998, + -15.60990927599994 + ], + [ + -59.241405519999944, + -15.54864208999993 + ], + [ + -59.3633955709999, + -15.456005127999845 + ], + [ + -59.337749628999916, + -15.350976695999975 + ], + [ + -59.343913512999904, + -15.161721871999873 + ], + [ + -59.47522356999991, + -15.004767213999969 + ], + [ + -59.518657586999836, + -14.91348392999987 + ], + [ + -59.673496483999884, + -14.887877550999974 + ], + [ + -59.78031562599989, + -14.832120292999946 + ], + [ + -59.84860651199989, + -14.931681879999928 + ], + [ + -59.83066555099998, + -14.984707475999869 + ], + [ + -59.62295159599995, + -15.040023678999887 + ], + [ + -59.50683256499991, + -15.113107168999932 + ], + [ + -59.42300749899982, + -15.137466655999901 + ], + [ + -59.43218249699993, + -15.251935121999907 + ], + [ + -59.64987561099986, + -15.27215596099984 + ], + [ + -59.783519524999974, + -15.304056645999822 + ], + [ + -59.867118614999924, + -15.208542009999917 + ], + [ + -59.94290158099989, + -15.372015272999931 + ], + [ + -60.028049479999936, + -15.40926310999987 + ], + [ + -60.05122762199994, + -15.468817034999972 + ], + [ + -59.97812250599998, + -15.525431426999887 + ], + [ + -59.951827637999884, + -15.676875820999953 + ], + [ + -59.806693474999975, + -15.716204380999898 + ], + [ + -59.67832948999995, + -15.840329302999976 + ], + [ + -59.58712063699994, + -15.900267789999873 + ], + [ + -59.54871358299994, + -15.976229792999902 + ], + [ + -59.612094516999946, + -16.169335598999908 + ], + [ + -59.659122525999976, + -16.20666406999993 + ], + [ + -59.798534530999916, + -16.1709725849999 + ], + [ + -59.822227488999886, + -15.998302529999933 + ], + [ + -59.895980525999846, + -16.017583253999874 + ], + [ + -59.99188659699996, + -16.23495047899985 + ], + [ + -60.12256650299997, + -16.194440907999876 + ], + [ + -60.153758581999966, + -16.23796930499998 + ], + [ + -59.82599247199994, + -16.25332226899991 + ], + [ + -59.267223624999986, + -16.279495767999947 + ] + ], + [ + [ + -64.12113162299994, + -23.795867031999876 + ], + [ + -64.04222153699988, + -23.940880662999973 + ], + [ + -64.04256452399994, + -24.00430836799984 + ], + [ + -63.97993058499998, + -24.09444299599994 + ], + [ + -63.98746859799991, + -24.36138884299993 + ], + [ + -64.03165463899995, + -24.460088937999956 + ], + [ + -64.21607260199988, + -24.6394869799999 + ], + [ + -64.44969149899998, + -24.69952219399994 + ], + [ + -64.5796886149999, + -24.903066150999962 + ], + [ + -64.67518648799984, + -24.930272970999965 + ], + [ + -64.75292947799994, + -25.030280139999945 + ], + [ + -64.81662758399989, + -24.962582524999846 + ], + [ + -64.81410949199994, + -24.81415544799995 + ], + [ + -64.69302351299996, + -24.606092806999982 + ], + [ + -64.54596754799991, + -24.416846866999947 + ], + [ + -64.57935350699995, + -24.353730968999912 + ], + [ + -64.56957249599998, + -23.941914486999963 + ], + [ + -64.51847054699988, + -23.855252815999904 + ], + [ + -64.25587457299991, + -23.737609954999982 + ], + [ + -64.12113162299994, + -23.795867031999876 + ] + ], + [ + [ + -64.70908357499997, + -25.20224007999991 + ], + [ + -64.77832748299994, + -25.117858957999886 + ], + [ + -64.75790363499993, + -25.05784771599997 + ], + [ + -64.67611654399997, + -25.088256254999976 + ], + [ + -64.70908357499997, + -25.20224007999991 + ] + ], + [ + [ + -43.735691472999974, + -17.848049589999903 + ], + [ + -43.79361746399985, + -17.884695438999927 + ], + [ + -43.81547562399987, + -18.05836964599996 + ], + [ + -43.948722570999905, + -18.01082464099983 + ], + [ + -43.991455524999935, + -18.11490725899995 + ], + [ + -43.853790476999905, + -18.612028548999888 + ], + [ + -43.70133958299988, + -18.886229435999837 + ], + [ + -43.617671592999955, + -19.101600761999862 + ], + [ + -43.596809538999935, + -19.262466079999854 + ], + [ + -43.67103548299991, + -19.264526016999923 + ], + [ + -43.77912850599989, + -19.079295008999907 + ], + [ + -43.882804601999965, + -18.824291865999953 + ], + [ + -43.94339754799995, + -18.736555299999964 + ], + [ + -44.07736248899988, + -18.45727196199988 + ], + [ + -44.210823509999955, + -18.457406910999964 + ], + [ + -44.23149847999997, + -18.409935666999957 + ], + [ + -44.23091560299997, + -18.24502255999988 + ], + [ + -44.18354058299997, + -18.073527814999977 + ], + [ + -44.122848562999934, + -18.028467541999873 + ], + [ + -44.101158544999976, + -17.948556320999955 + ], + [ + -44.02052647999989, + -17.864634526999907 + ], + [ + -43.930751602999976, + -17.711920776999932 + ], + [ + -43.87309249099991, + -17.50350743599995 + ], + [ + -43.88968262399993, + -17.39673020399988 + ], + [ + -43.85148947699986, + -17.2964593399999 + ], + [ + -43.799076597999886, + -17.272454742999912 + ], + [ + -43.766006468999876, + -17.405329533999975 + ], + [ + -43.782760552999946, + -17.454171721999955 + ], + [ + -43.70784360499988, + -17.502384596999946 + ], + [ + -43.65711951199995, + -17.71912234099989 + ], + [ + -43.735691472999974, + -17.848049589999903 + ] + ], + [ + [ + -49.62814359399988, + -8.880632247999927 + ], + [ + -49.724021501999914, + -9.007134109999924 + ], + [ + -49.74037962499989, + -8.92105146199998 + ], + [ + -49.62814359399988, + -8.880632247999927 + ] + ], + [ + [ + -49.50993361299993, + -10.7516344739999 + ], + [ + -49.51300055199994, + -10.840036227999974 + ], + [ + -49.624916560999964, + -10.81875172599996 + ], + [ + -49.50993361299993, + -10.7516344739999 + ] + ], + [ + [ + -49.87116262799998, + -14.997911655999928 + ], + [ + -49.81302658499982, + -14.992403906999868 + ], + [ + -49.75033950499994, + -15.041779686999973 + ], + [ + -49.62392850299983, + -15.075043437999852 + ], + [ + -49.47340058599991, + -15.027058717999978 + ], + [ + -49.39362347499991, + -15.026373748999902 + ], + [ + -49.27057260999993, + -14.97815768899983 + ], + [ + -49.07682458299996, + -14.96956623899996 + ], + [ + -49.040626495999845, + -15.008274872999948 + ], + [ + -49.058597463999945, + -15.116716751999832 + ], + [ + -49.11334956399992, + -15.173872278999966 + ], + [ + -49.414066601999934, + -15.223220062999872 + ], + [ + -49.475746512999876, + -15.288605780999944 + ], + [ + -49.616935480999985, + -15.306468454999958 + ], + [ + -49.83380146799993, + -15.431369540999924 + ], + [ + -49.828403521999974, + -15.536714808999932 + ], + [ + -49.93034758099992, + -15.555293632999962 + ], + [ + -50.01219552499987, + -15.599506663999932 + ], + [ + -50.02860662099988, + -15.69876331699993 + ], + [ + -50.09250253899995, + -15.71478649799991 + ], + [ + -50.11007352299998, + -15.631635671999902 + ], + [ + -50.22693250799989, + -15.448630394999896 + ], + [ + -50.21938359899997, + -15.364596953999978 + ], + [ + -50.047260545999904, + -15.373554357999922 + ], + [ + -49.93828557899997, + -15.414457710999955 + ], + [ + -49.892555591999894, + -15.333666724999887 + ], + [ + -49.87944746799997, + -15.24256784299996 + ], + [ + -49.95528759899997, + -15.16264874299992 + ], + [ + -49.87116262799998, + -14.997911655999928 + ] + ], + [ + [ + -45.17211146399984, + -15.53999347499996 + ], + [ + -44.99909959499996, + -15.492580735999923 + ], + [ + -44.97293062299997, + -15.56460508899994 + ], + [ + -45.072868556999936, + -15.631448922999937 + ], + [ + -45.153442618999975, + -15.60204470399998 + ], + [ + -45.17211146399984, + -15.53999347499996 + ] + ], + [ + [ + -49.810607567999966, + -15.563603116999957 + ], + [ + -49.73375356299994, + -15.54474433699994 + ], + [ + -49.62561058299991, + -15.561406219999924 + ], + [ + -49.49293159299998, + -15.535804869999936 + ], + [ + -49.39616352699994, + -15.565390975999946 + ], + [ + -49.41235753199993, + -15.690996812999913 + ], + [ + -49.31908052799997, + -15.943092944999933 + ], + [ + -49.202964513999916, + -15.971791239999902 + ], + [ + -49.082130494999944, + -16.051810084999943 + ], + [ + -49.14776649699991, + -16.110604441999953 + ], + [ + -49.16095357699999, + -16.191372125999976 + ], + [ + -49.220729622999954, + -16.22126433899996 + ], + [ + -49.26161554099997, + -16.299694309999893 + ], + [ + -49.35848653699992, + -16.332169155999964 + ], + [ + -49.446544464999874, + -16.319547015999945 + ], + [ + -49.520572595999965, + -16.185930593999956 + ], + [ + -49.60993960899992, + -16.168683486999953 + ], + [ + -49.57037752899993, + -16.395411285999955 + ], + [ + -49.57748052099993, + -16.594088877999923 + ], + [ + -49.53112457299994, + -16.66684614499991 + ], + [ + -49.613426480999976, + -16.707862652999893 + ], + [ + -49.55105254799997, + -16.78917951899996 + ], + [ + -49.558536581999874, + -16.921356431999982 + ], + [ + -49.6461024919999, + -16.982082817999924 + ], + [ + -49.67882946599997, + -17.060185726999975 + ], + [ + -49.749340549999886, + -17.043381016999888 + ], + [ + -49.80189860299993, + -16.93869121399996 + ], + [ + -50.03182560699992, + -16.873793490999958 + ], + [ + -50.145900626999946, + -16.876778285999933 + ], + [ + -50.27522651999993, + -16.980079878999845 + ], + [ + -50.45706956199996, + -17.00480515199996 + ], + [ + -50.67186354299997, + -17.049995344999957 + ], + [ + -50.827960563999966, + -17.02531700999998 + ], + [ + -50.90015758399994, + -17.057521119999933 + ], + [ + -50.9092864829999, + -17.13704107399991 + ], + [ + -51.089462531999914, + -17.180697545999863 + ], + [ + -51.19491961499995, + -17.15988360399996 + ], + [ + -51.28482860199989, + -17.20514772499996 + ], + [ + -51.303722585999935, + -17.146005518999914 + ], + [ + -51.25337249299986, + -17.070963010999947 + ], + [ + -51.17382052099998, + -17.04094909199995 + ], + [ + -51.209457522999855, + -16.950180791999912 + ], + [ + -51.18887357999989, + -16.885235793999982 + ], + [ + -51.108287615999984, + -16.852873600999942 + ], + [ + -51.073425604999954, + -16.78517783099994 + ], + [ + -50.99675750999995, + -16.77931318099985 + ], + [ + -50.90783356399993, + -16.84650721099996 + ], + [ + -50.84251758299996, + -16.85816945499988 + ], + [ + -50.672676586999955, + -16.836495697999908 + ], + [ + -50.5583995639999, + -16.902676522999855 + ], + [ + -50.43576460899993, + -16.872075535999954 + ], + [ + -50.49529657299996, + -16.76163541199992 + ], + [ + -50.54131355699991, + -16.625456977999875 + ], + [ + -50.62331052999991, + -16.551304626999865 + ], + [ + -50.685543478999875, + -16.425942367999937 + ], + [ + -50.580848479999986, + -16.307670864999977 + ], + [ + -50.53927256299994, + -16.393519322999964 + ], + [ + -50.551475608999965, + -16.483463849999964 + ], + [ + -50.49482752199998, + -16.49073230099998 + ], + [ + -50.42977959399997, + -16.3094597299999 + ], + [ + -50.31900452999997, + -16.260893809999857 + ], + [ + -50.36853453699996, + -16.218988316999855 + ], + [ + -50.46326060399997, + -16.216478439999946 + ], + [ + -50.5711405589999, + -16.15008287099988 + ], + [ + -50.64426059499988, + -16.245493738999926 + ], + [ + -50.70530649799997, + -16.27964563599994 + ], + [ + -50.828945604999944, + -16.273330877999967 + ], + [ + -50.87247048199998, + -16.228800843999863 + ], + [ + -50.903316555999936, + -16.102332676999822 + ], + [ + -50.825984613999935, + -15.988493020999897 + ], + [ + -50.772453589999884, + -16.013181413999916 + ], + [ + -50.65966753799995, + -15.988847909999947 + ], + [ + -50.618884549999905, + -16.121819427999924 + ], + [ + -50.56456361499994, + -16.13379297699987 + ], + [ + -50.44480851399993, + -16.039090881999982 + ], + [ + -50.18261352999997, + -16.04154359499995 + ], + [ + -49.98802161299989, + -15.999073496999927 + ], + [ + -49.83580356899995, + -16.005030012999953 + ], + [ + -49.77063762499995, + -15.813366061999943 + ], + [ + -49.72417455599998, + -15.750863215999914 + ], + [ + -49.75390650799994, + -15.695749687999978 + ], + [ + -49.87225361599991, + -15.634662711999908 + ], + [ + -49.810607567999966, + -15.563603116999957 + ] + ], + [ + [ + -55.347370610999974, + -17.51855747899998 + ], + [ + -55.587837521999916, + -17.474674191999952 + ], + [ + -55.61444855599996, + -17.405140437999933 + ], + [ + -55.554302532999884, + -17.35732251899998 + ], + [ + -55.36050756699996, + -17.327140458999963 + ], + [ + -55.27264057899998, + -17.33689984399996 + ], + [ + -55.176864594999984, + -17.28032736199998 + ], + [ + -55.04727148699993, + -17.26707423199997 + ], + [ + -54.998294517999966, + -17.330358103999913 + ], + [ + -54.99902759899993, + -17.56919657899988 + ], + [ + -55.08501452599995, + -17.520522531999973 + ], + [ + -55.20643661999992, + -17.39769714099998 + ], + [ + -55.24961850899996, + -17.406426556999975 + ], + [ + -55.25966254299993, + -17.504667491999953 + ], + [ + -55.347370610999974, + -17.51855747899998 + ] + ], + [ + [ + -51.15315259099992, + -17.72585501999987 + ], + [ + -51.107845554999926, + -17.609589976999928 + ], + [ + -50.964805526999896, + -17.594663818999948 + ], + [ + -50.90364059999996, + -17.487044539999943 + ], + [ + -50.797012565999864, + -17.50074677299989 + ], + [ + -50.678367563999984, + -17.449702993999892 + ], + [ + -50.60262248499998, + -17.537809536999873 + ], + [ + -50.545154479999894, + -17.55764531099993 + ], + [ + -50.44095652699991, + -17.508108095999944 + ], + [ + -50.3039355439999, + -17.55605224599998 + ], + [ + -50.30945251299994, + -17.628549841999813 + ], + [ + -50.46176560799984, + -17.744125892999932 + ], + [ + -50.505351503999975, + -17.832883541999877 + ], + [ + -50.63950352899991, + -17.80079225199995 + ], + [ + -50.897987508999904, + -17.801440508999917 + ], + [ + -51.030193591999875, + -17.81952832099995 + ], + [ + -51.1044616129999, + -17.803540175999956 + ], + [ + -51.15315259099992, + -17.72585501999987 + ] + ], + [ + [ + -49.37079955299998, + -17.830109466999943 + ], + [ + -49.409870620999925, + -17.900494487999936 + ], + [ + -49.46323048699992, + -17.896918599999935 + ], + [ + -49.48548846299991, + -17.80607704199997 + ], + [ + -49.46850153099996, + -17.701043413999912 + ], + [ + -49.525855540999885, + -17.55310952799988 + ], + [ + -49.44324853299986, + -17.511973996999814 + ], + [ + -49.26671257599992, + -17.49451516299996 + ], + [ + -49.18492162999996, + -17.696355917999938 + ], + [ + -49.279865625999946, + -17.732373458999916 + ], + [ + -49.37079955299998, + -17.830109466999943 + ] + ], + [ + [ + -55.26535452599995, + -17.661985923999907 + ], + [ + -55.12071657199988, + -17.640336138999885 + ], + [ + -54.90798152299993, + -17.71708536999995 + ], + [ + -54.86006553499993, + -17.780342587999826 + ], + [ + -54.91512256899995, + -17.834222299999908 + ], + [ + -55.04272061599988, + -17.73995924899998 + ], + [ + -55.24518163199991, + -17.69369902199992 + ], + [ + -55.26535452599995, + -17.661985923999907 + ] + ], + [ + [ + -54.76713956499998, + -21.526147058999925 + ], + [ + -54.84331849199998, + -21.470786097999962 + ], + [ + -54.87701055799994, + -21.275998713999968 + ], + [ + -54.85647556599997, + -21.16210407299991 + ], + [ + -54.79874755499998, + -21.148797800999944 + ], + [ + -54.74521652999988, + -21.264113510999948 + ], + [ + -54.68579051299997, + -21.51367394899995 + ], + [ + -54.76713956499998, + -21.526147058999925 + ] + ], + [ + [ + -46.12821554699997, + -19.358827624999947 + ], + [ + -46.08942057899992, + -19.19665506499996 + ], + [ + -46.02014548999995, + -19.053198623999947 + ], + [ + -45.86711859199994, + -18.926323934999914 + ], + [ + -45.76413752399992, + -18.938238139999896 + ], + [ + -45.765846593999925, + -19.03530862499997 + ], + [ + -45.8116645909999, + -19.05868206499997 + ], + [ + -45.898761617999924, + -19.327648285999942 + ], + [ + -46.00309351399994, + -19.352335001999904 + ], + [ + -46.12997054999994, + -19.421724922999886 + ], + [ + -46.12821554699997, + -19.358827624999947 + ] + ], + [ + [ + -44.418991595999955, + -10.961255981999898 + ], + [ + -44.57279247899993, + -10.962266671999942 + ], + [ + -44.65524257799996, + -11.02880305799988 + ], + [ + -44.79222148399998, + -11.055555242999958 + ], + [ + -44.790237486999956, + -10.98386331599994 + ], + [ + -44.67509461299994, + -10.808661590999975 + ], + [ + -44.54315155399996, + -10.715020811999977 + ], + [ + -44.435020476999966, + -10.708232475999978 + ], + [ + -44.37005653699998, + -10.64324607199984 + ], + [ + -44.28949756199995, + -10.654045315999952 + ], + [ + -44.25638552399988, + -10.730560860999958 + ], + [ + -44.19114648899989, + -10.78363607699987 + ], + [ + -44.17944350899995, + -10.88898486599993 + ], + [ + -44.26190148699993, + -10.89987999899995 + ], + [ + -44.27524547699994, + -10.825224398999922 + ], + [ + -44.345741473999965, + -10.849466538999877 + ], + [ + -44.418991595999955, + -10.961255981999898 + ] + ], + [ + [ + -47.460632548999854, + -10.617843876999927 + ], + [ + -47.494483534999915, + -10.713191209999934 + ], + [ + -47.45638258899993, + -10.785983177999924 + ], + [ + -47.33526660199988, + -10.787987961999818 + ], + [ + -47.376136594999934, + -10.875412720999975 + ], + [ + -47.573020626999835, + -10.871996926999941 + ], + [ + -47.6074675669999, + -10.812872155999855 + ], + [ + -47.59835057099997, + -10.6903297369999 + ], + [ + -47.52941846999994, + -10.607176395999943 + ], + [ + -47.460632548999854, + -10.617843876999927 + ] + ], + [ + [ + -47.55098762099988, + -10.103914858999929 + ], + [ + -47.49766547299993, + -10.20520948799998 + ], + [ + -47.54225149899986, + -10.276607712999976 + ], + [ + -47.47563950799997, + -10.309102171999939 + ], + [ + -47.56429255099994, + -10.503418659999966 + ], + [ + -47.641502619999926, + -10.461893538999902 + ], + [ + -47.624793463999936, + -10.390760684999861 + ], + [ + -47.65412157499998, + -10.306469416999903 + ], + [ + -47.598915510999916, + -10.155089059999966 + ], + [ + -47.55098762099988, + -10.103914858999929 + ] + ], + [ + [ + -47.440002505999985, + -9.441504449999911 + ], + [ + -47.49378951399996, + -9.523233537999886 + ], + [ + -47.64002254399992, + -9.511945460999925 + ], + [ + -47.70520759899989, + -9.481591571999957 + ], + [ + -47.669296507999945, + -9.337076832999912 + ], + [ + -47.68161052999994, + -9.24560830799993 + ], + [ + -47.639411502999906, + -9.159432452999852 + ], + [ + -47.574897502999875, + -9.113131657999872 + ], + [ + -47.540023588999986, + -8.982396934999883 + ], + [ + -47.48046848999991, + -9.016739603999952 + ], + [ + -47.517341487999886, + -9.184137776999933 + ], + [ + -47.49169956999998, + -9.20338430299995 + ], + [ + -47.33605952999994, + -9.108247019999851 + ], + [ + -47.237808537999854, + -9.111394759999882 + ], + [ + -47.24156949699989, + -9.208636068999908 + ], + [ + -47.32599655299998, + -9.227706574999957 + ], + [ + -47.38808449499993, + -9.283163760999912 + ], + [ + -47.384597622999934, + -9.414695267999946 + ], + [ + -47.440002505999985, + -9.441504449999911 + ] + ], + [ + [ + -47.490821481999944, + -8.906495448999976 + ], + [ + -47.6195525949999, + -8.877726409999923 + ], + [ + -47.58876049999998, + -8.969053111999926 + ], + [ + -47.632514537999896, + -9.002576701999942 + ], + [ + -47.74162260999992, + -8.887341793999894 + ], + [ + -47.68984960499989, + -8.841192207999939 + ], + [ + -47.66201749599992, + -8.684192455999948 + ], + [ + -47.5796964779999, + -8.62452755499993 + ], + [ + -47.51067351699993, + -8.730433068999957 + ], + [ + -47.490821481999944, + -8.906495448999976 + ] + ], + [ + [ + -48.27571161299994, + -8.83689329799995 + ], + [ + -48.204902468999876, + -8.657767332999924 + ], + [ + -48.16096453199992, + -8.651799585999981 + ], + [ + -48.151061480999886, + -8.768589168999881 + ], + [ + -48.186393549999934, + -8.865022461999956 + ], + [ + -48.27571161299994, + -8.83689329799995 + ] + ], + [ + [ + -44.1057436129999, + -7.468790510999952 + ], + [ + -44.00964358499988, + -7.405164153999976 + ], + [ + -43.90948453499993, + -7.452772693999975 + ], + [ + -43.829521513999964, + -7.323364322999964 + ], + [ + -43.74792452499997, + -7.322326139999916 + ], + [ + -43.75675955399993, + -7.424566750999929 + ], + [ + -43.80049850399996, + -7.603149903999963 + ], + [ + -43.85343156399995, + -7.939539818999947 + ], + [ + -43.90557856799995, + -8.084344236999925 + ], + [ + -43.90048957999994, + -8.190883590999874 + ], + [ + -43.97174061799984, + -8.366669031999947 + ], + [ + -44.07365450299994, + -8.504426113999955 + ], + [ + -44.12062048599989, + -8.384853738999936 + ], + [ + -44.19206950499989, + -8.32463814599987 + ], + [ + -44.33532746199984, + -8.33129957999995 + ], + [ + -44.25921659599993, + -8.159869878999928 + ], + [ + -44.20406350499991, + -8.138650419999976 + ], + [ + -44.085945557999935, + -8.155094205999944 + ], + [ + -44.00509656999998, + -8.07447689299994 + ], + [ + -44.039230528999894, + -8.031853070999887 + ], + [ + -44.13558151199993, + -8.07977257999994 + ], + [ + -44.181220471999836, + -7.956701597999881 + ], + [ + -44.039237569999955, + -7.950163880999924 + ], + [ + -43.96608752799989, + -7.896928737999929 + ], + [ + -43.93756055799997, + -7.791041327999892 + ], + [ + -43.986206609999954, + -7.780364124999949 + ], + [ + -44.07050357799994, + -7.86210025399987 + ], + [ + -44.130607522999924, + -7.858390422999946 + ], + [ + -44.108871571999885, + -7.759351698999978 + ], + [ + -44.0122835489999, + -7.645718740999939 + ], + [ + -44.08966058499993, + -7.553701368999953 + ], + [ + -44.1057436129999, + -7.468790510999952 + ] + ], + [ + [ + -47.77680246299991, + -8.36601507599994 + ], + [ + -47.787681502999874, + -8.28365801599989 + ], + [ + -47.68708760099997, + -8.288762762999909 + ], + [ + -47.694236525999884, + -8.443326565999882 + ], + [ + -47.76833355599996, + -8.430064383999934 + ], + [ + -47.77680246299991, + -8.36601507599994 + ] + ], + [ + [ + -47.696739529999945, + -7.439063755999882 + ], + [ + -47.78763556999996, + -7.495564823999814 + ], + [ + -47.91862459999987, + -7.470251476999977 + ], + [ + -47.93107658799988, + -7.404558142999974 + ], + [ + -47.860908490999975, + -7.351605301999882 + ], + [ + -47.79972847699992, + -7.360516437999934 + ], + [ + -47.696739529999945, + -7.439063755999882 + ] + ], + [ + [ + -47.64902453999986, + -7.106211842999812 + ], + [ + -47.753295582999954, + -7.139385403999938 + ], + [ + -47.75823252399988, + -7.050120146999916 + ], + [ + -47.67990162699988, + -7.036089007999919 + ], + [ + -47.64902453999986, + -7.106211842999812 + ] + ], + [ + [ + -47.42768060499992, + -6.531202722999865 + ], + [ + -47.4029234809999, + -6.499582998999927 + ], + [ + -47.38379648099988, + -6.355366654999841 + ], + [ + -47.286132555999984, + -6.40334600999995 + ], + [ + -47.27445958299995, + -6.452495478999879 + ], + [ + -47.42768060499992, + -6.531202722999865 + ] + ], + [ + [ + -47.46960453799994, + -6.536406375999888 + ], + [ + -47.520164512999884, + -6.566309150999871 + ], + [ + -47.602497600999925, + -6.514095090999945 + ], + [ + -47.757953574999874, + -6.568097010999907 + ], + [ + -47.83296557299991, + -6.536012426999889 + ], + [ + -47.824249566999924, + -6.410887543999934 + ], + [ + -47.68267050499992, + -6.357365570999946 + ], + [ + -47.675579582999944, + -6.217437743999938 + ], + [ + -47.48170850899993, + -6.300753526999927 + ], + [ + -47.3977204979999, + -6.300029665999887 + ], + [ + -47.46960453799994, + -6.536406375999888 + ] + ] + ], + [ + [ + [ + -55.41173960399993, + -23.220878196999934 + ], + [ + -55.287620548999826, + -23.024810225999943 + ], + [ + -55.29526551499998, + -22.89863089999983 + ], + [ + -55.437812518999976, + -22.866463669999973 + ], + [ + -55.569351569999924, + -22.93967070899987 + ], + [ + -55.52480359899994, + -23.032328792999976 + ], + [ + -55.57530557099989, + -23.10954389099993 + ], + [ + -55.74485353499995, + -23.237953138999956 + ], + [ + -55.78676657199992, + -23.39071248699986 + ], + [ + -55.74818752099992, + -23.52139591299988 + ], + [ + -55.624118589999966, + -23.699536668999883 + ], + [ + -55.56756555399994, + -23.84819223599993 + ], + [ + -55.4039804759999, + -23.972003171999972 + ], + [ + -55.28067060999996, + -23.995626895999976 + ], + [ + -55.26551059699989, + -23.887632107999877 + ], + [ + -55.09799557999992, + -23.71290110999996 + ], + [ + -55.24599048599998, + -23.612055247999933 + ], + [ + -55.279663607999964, + -23.743157433999897 + ], + [ + -55.42885947299993, + -23.763786470999946 + ], + [ + -55.43089661099992, + -23.684626603999902 + ], + [ + -55.341312505999895, + -23.61167236299997 + ], + [ + -55.343402617999914, + -23.53250528699988 + ], + [ + -55.268001530999925, + -23.437805035999872 + ], + [ + -55.16553863199988, + -23.521853731999897 + ], + [ + -55.03486258199996, + -23.547038333999865 + ], + [ + -55.02759161599988, + -23.431053412999972 + ], + [ + -54.958652473999905, + -23.43495518899988 + ], + [ + -54.916435509999985, + -23.498796792999883 + ], + [ + -54.79005451499995, + -23.570883339999966 + ], + [ + -54.71441655599995, + -23.67905280599996 + ], + [ + -54.563232503999984, + -23.715089121999938 + ], + [ + -54.561000570999965, + -23.622087715999953 + ], + [ + -54.64214359599998, + -23.488802378999935 + ], + [ + -54.74876056599993, + -23.482031644999893 + ], + [ + -54.814498491999984, + -23.356518344999927 + ], + [ + -54.69469460799996, + -23.332179476999954 + ], + [ + -54.77700858599985, + -23.183919032999825 + ], + [ + -54.790428515999906, + -23.122092438999914 + ], + [ + -54.94239862299992, + -23.066354290999982 + ], + [ + -55.15476654499997, + -23.064977143999897 + ], + [ + -55.24987449199989, + -23.04974605299998 + ], + [ + -55.33120761899994, + -23.267315951999933 + ], + [ + -55.41173960399993, + -23.220878196999934 + ] + ] + ], + [ + [ + [ + -54.25618360899995, + -22.822373685999878 + ], + [ + -54.32290657599998, + -22.6511429709999 + ], + [ + -54.41658758699998, + -22.70641977799994 + ], + [ + -54.55624048799996, + -22.624485165999943 + ], + [ + -54.787540614999955, + -22.56074045699995 + ], + [ + -54.8231925369999, + -22.6759386519999 + ], + [ + -54.72545250499991, + -22.795338191999917 + ], + [ + -54.71656047899995, + -22.88706538199989 + ], + [ + -54.66533263399998, + -22.89218420999987 + ], + [ + -54.61743558899991, + -22.76761756199994 + ], + [ + -54.5687025339999, + -22.775033366999878 + ], + [ + -54.59501651299985, + -22.920012631999953 + ], + [ + -54.50563055599997, + -23.04053652099998 + ], + [ + -54.46356949599988, + -23.017017737999936 + ], + [ + -54.41273861699989, + -22.854459275999886 + ], + [ + -54.310275549999915, + -22.86449476099989 + ], + [ + -54.25618360899995, + -22.822373685999878 + ] + ] + ], + [ + [ + [ + -44.85326353199997, + -22.720900018999885 + ], + [ + -44.71030849699997, + -22.700700134999977 + ], + [ + -44.63345348599995, + -22.78319683799998 + ], + [ + -44.5200275599999, + -22.750771612999927 + ], + [ + -44.44112753199988, + -22.620309301999896 + ], + [ + -44.611972511999966, + -22.573864840999875 + ], + [ + -44.74243146999987, + -22.60254737799994 + ], + [ + -44.85326353199997, + -22.720900018999885 + ] + ] + ], + [ + [ + [ + -55.06638759099991, + -22.65209783699993 + ], + [ + -54.94938661599991, + -22.556786880999937 + ], + [ + -55.02444052399994, + -22.527715422999904 + ], + [ + -55.022682502999885, + -22.37847630699997 + ], + [ + -55.0856515509999, + -22.411243513999977 + ], + [ + -55.18885054899994, + -22.40991967599996 + ], + [ + -55.2519345959999, + -22.544771421999883 + ], + [ + -55.38759251399995, + -22.542444437999904 + ], + [ + -55.31236660899998, + -22.81843318499989 + ], + [ + -55.15402256799996, + -22.71606148099994 + ], + [ + -55.125022523999974, + -22.643479228999865 + ], + [ + -55.06638759099991, + -22.65209783699993 + ] + ] + ], + [ + [ + [ + -45.79274747399995, + -22.551505945999963 + ], + [ + -45.896842496999966, + -22.578964725999867 + ], + [ + -45.95073360799984, + -22.561080593999918 + ], + [ + -45.89728958799992, + -22.323096234999923 + ], + [ + -45.974677520999876, + -22.396877098999937 + ], + [ + -46.04668058399989, + -22.397944115999962 + ], + [ + -46.1549415799999, + -22.312371756999937 + ], + [ + -46.2417485929999, + -22.34809174099985 + ], + [ + -46.27638647299989, + -22.537649821999878 + ], + [ + -46.18955649399993, + -22.62647419099983 + ], + [ + -46.03514456999994, + -22.59668675099988 + ], + [ + -46.04801548599994, + -22.705979895999974 + ], + [ + -46.02918654599989, + -22.78210199399996 + ], + [ + -45.96196753799995, + -22.781254917999888 + ], + [ + -45.76833350499993, + -22.640952252999966 + ], + [ + -45.79274747399995, + -22.551505945999963 + ] + ] + ], + [ + [ + [ + -42.62181449099995, + -22.22136557899995 + ], + [ + -42.679935613999874, + -22.171971190999898 + ], + [ + -42.75279245699983, + -22.241011585999843 + ], + [ + -42.63901147399997, + -22.256130695999957 + ], + [ + -42.62181449099995, + -22.22136557899995 + ] + ] + ], + [ + [ + [ + -44.213855579999915, + -22.06630992499987 + ], + [ + -44.12274160999988, + -21.98057160499991 + ], + [ + -44.13068346299991, + -21.926592315999926 + ], + [ + -44.317623540999875, + -22.016761477999978 + ], + [ + -44.358577519999926, + -21.97336601799998 + ], + [ + -44.31917955799992, + -21.894938058999912 + ], + [ + -44.19956946399998, + -21.81112757699998 + ], + [ + -44.145584474999964, + -21.832042436999927 + ], + [ + -44.04352960699998, + -21.767320062999943 + ], + [ + -43.931636563999916, + -21.621051995999835 + ], + [ + -43.90103959999982, + -21.703099596999948 + ], + [ + -43.83004756199995, + -21.643202683999903 + ], + [ + -43.81904547599993, + -21.54305503499984 + ], + [ + -43.742179567999926, + -21.460240657999975 + ], + [ + -43.79736350399992, + -21.260439722999934 + ], + [ + -43.79684851999991, + -21.170589743999926 + ], + [ + -43.94708256799993, + -21.078627692999873 + ], + [ + -44.0983465839999, + -21.070732275999887 + ], + [ + -44.21953951599994, + -21.025188533999938 + ], + [ + -44.26269558899992, + -20.911191129999963 + ], + [ + -44.321426577999944, + -20.901864586999977 + ], + [ + -44.44215347699986, + -20.945998156999963 + ], + [ + -44.41956759999994, + -21.02288887499998 + ], + [ + -44.33969460099996, + -21.090996028999882 + ], + [ + -44.44279050099988, + -21.18396089099997 + ], + [ + -44.71092255499997, + -21.284333510999886 + ], + [ + -44.89607661699995, + -21.256575832999886 + ], + [ + -45.0339815559999, + -21.261759704999974 + ], + [ + -45.084171553999965, + -21.34278521599998 + ], + [ + -44.98400462599989, + -21.35852927999997 + ], + [ + -44.956077464999964, + -21.530913847999955 + ], + [ + -44.982383564999964, + -21.704879409999933 + ], + [ + -44.83884850299984, + -21.60382802399988 + ], + [ + -44.72034850799997, + -21.5956724319999 + ], + [ + -44.693897568999944, + -21.65898698099994 + ], + [ + -44.755844526999965, + -21.76033441699991 + ], + [ + -44.751865469999984, + -21.806752893999942 + ], + [ + -44.623725615999945, + -21.854308123999942 + ], + [ + -44.507297460999894, + -21.79558048699994 + ], + [ + -44.42815050199988, + -21.79309458299997 + ], + [ + -44.40663147399994, + -21.87414121599994 + ], + [ + -44.493133552999836, + -21.972799736999832 + ], + [ + -44.65797457599996, + -21.905696398999964 + ], + [ + -44.78048748999987, + -21.98835906399995 + ], + [ + -44.81088261799988, + -22.04411514899988 + ], + [ + -44.944351517999905, + -22.020848158999968 + ], + [ + -45.109981612999945, + -21.94019681599991 + ], + [ + -45.188594476999924, + -21.962668362999977 + ], + [ + -45.29730256499988, + -21.858282990999953 + ], + [ + -45.35680351599996, + -21.86782846999995 + ], + [ + -45.40965258899985, + -22.033318753999822 + ], + [ + -45.30430949999993, + -22.109970587999896 + ], + [ + -45.18413161699988, + -22.111200548999875 + ], + [ + -45.212951616999874, + -22.19405515899996 + ], + [ + -45.16422660799998, + -22.329936705999955 + ], + [ + -45.22641747999995, + -22.37584036599992 + ], + [ + -45.44742546799995, + -22.458532869999942 + ], + [ + -45.574466621999875, + -22.545933489999925 + ], + [ + -45.615173501999834, + -22.67236259699996 + ], + [ + -45.54704254299992, + -22.687330998999983 + ], + [ + -45.38566961699996, + -22.611929912999983 + ], + [ + -45.172866505999934, + -22.470741279999856 + ], + [ + -45.062625535999985, + -22.4248776849999 + ], + [ + -44.870571491999954, + -22.42278572999993 + ], + [ + -44.78541152299988, + -22.441487766999956 + ], + [ + -44.678649545999974, + -22.41843300699992 + ], + [ + -44.39607262299995, + -22.23778857699989 + ], + [ + -44.213855579999915, + -22.06630992499987 + ] + ] + ], + [ + [ + [ + -54.38453652999988, + -22.128499455999872 + ], + [ + -54.30141051399994, + -22.060712154999976 + ], + [ + -54.40846250499993, + -22.03813432499993 + ], + [ + -54.54588347299995, + -21.976856577999854 + ], + [ + -54.535228564999954, + -22.094972345999963 + ], + [ + -54.62200959399996, + -22.252225901999907 + ], + [ + -54.557662560999916, + -22.313397701999918 + ], + [ + -54.50289554099999, + -22.24608716399996 + ], + [ + -54.45025651899988, + -22.27407182399992 + ], + [ + -54.422527506999984, + -22.15543922799992 + ], + [ + -54.38453652999988, + -22.128499455999872 + ] + ] + ], + [ + [ + [ + -46.15699346999986, + -22.070162750999884 + ], + [ + -46.04744752799985, + -22.053771603999962 + ], + [ + -45.91416554399996, + -21.990992992999963 + ], + [ + -45.85341250399995, + -21.920245706999935 + ], + [ + -45.850482525999894, + -21.763857330999883 + ], + [ + -45.94128049799997, + -21.648039544999904 + ], + [ + -46.08686057799997, + -21.623071866999965 + ], + [ + -46.1116795609999, + -21.692154004999963 + ], + [ + -46.10854355499998, + -21.91166833799997 + ], + [ + -46.195312513999966, + -21.906623605999926 + ], + [ + -46.39342449599985, + -21.680283720999967 + ], + [ + -46.520233470999926, + -21.647652468999922 + ], + [ + -46.57815946299996, + -21.684298652999928 + ], + [ + -46.54298346499996, + -21.79363253299988 + ], + [ + -46.40003546999998, + -21.93874171699997 + ], + [ + -46.24391950599994, + -21.938312731999815 + ], + [ + -46.232047545999876, + -22.060048140999925 + ], + [ + -46.15699346999986, + -22.070162750999884 + ] + ] + ], + [ + [ + [ + -49.720886502999974, + -21.091600867999944 + ], + [ + -49.80172358899995, + -21.12820715299989 + ], + [ + -49.86281156999985, + -21.11466887099988 + ], + [ + -49.875530604999824, + -21.003964716999974 + ], + [ + -49.8406865309999, + -20.908521326999846 + ], + [ + -49.96469846499997, + -20.864240737999978 + ], + [ + -50.06499849699992, + -20.98406708499988 + ], + [ + -50.02520759099991, + -21.018033070999934 + ], + [ + -50.08195860799998, + -21.14873275799988 + ], + [ + -50.21086456699993, + -21.29601989599996 + ], + [ + -50.21318451099995, + -21.40621476499996 + ], + [ + -50.11145754299986, + -21.44119680599988 + ], + [ + -50.101982471999975, + -21.563529006999943 + ], + [ + -49.96188750999988, + -21.59572322599996 + ], + [ + -49.82399346699992, + -21.50635034499993 + ], + [ + -49.784633558999985, + -21.602166059999945 + ], + [ + -49.719703480999954, + -21.589118788999883 + ], + [ + -49.65482755099998, + -21.501534606999883 + ], + [ + -49.41199157799991, + -21.367254673999923 + ], + [ + -49.34015246499996, + -21.275844822999943 + ], + [ + -49.38000858199996, + -21.221440905999884 + ], + [ + -49.40161159599995, + -21.017226228999903 + ], + [ + -49.508609607999915, + -21.02185303999994 + ], + [ + -49.578399512999965, + -20.957199396999954 + ], + [ + -49.60901257099988, + -21.035307 + ], + [ + -49.720886502999974, + -21.091600867999944 + ] + ] + ], + [ + [ + [ + -50.41959356999996, + -20.933528734999868 + ], + [ + -50.40505247699997, + -20.844652900999904 + ], + [ + -50.498092607999865, + -20.771262799999874 + ], + [ + -50.59040854299997, + -20.741385506999904 + ], + [ + -50.7134396269999, + -20.62305817899994 + ], + [ + -50.7761345859999, + -20.53348832399996 + ], + [ + -50.87399649099996, + -20.60346313399998 + ], + [ + -50.91947552399995, + -20.72437661299989 + ], + [ + -50.888706562999914, + -20.78527499599994 + ], + [ + -50.821140544999935, + -20.782916159999957 + ], + [ + -50.73015247099994, + -20.840504863999968 + ], + [ + -50.64854056199988, + -20.791681619999963 + ], + [ + -50.63534560199997, + -20.87036639999991 + ], + [ + -50.41959356999996, + -20.933528734999868 + ] + ] + ], + [ + [ + [ + -44.05525253699989, + -20.743287359999954 + ], + [ + -44.09816754599984, + -20.666014762999964 + ], + [ + -44.04998048799996, + -20.503004850999957 + ], + [ + -44.11109160299998, + -20.526210484999865 + ], + [ + -44.21298956199996, + -20.467519057999937 + ], + [ + -44.27146155099996, + -20.370587375999833 + ], + [ + -44.33431258099995, + -20.40520044599998 + ], + [ + -44.27955662499994, + -20.64497082099996 + ], + [ + -44.37643047099988, + -20.631335643999932 + ], + [ + -44.43758047799986, + -20.695307 + ], + [ + -44.38786657199995, + -20.76547207899995 + ], + [ + -44.254623479999964, + -20.743453321999937 + ], + [ + -44.10845549399994, + -20.861240854999892 + ], + [ + -43.97241955199996, + -20.845888728999853 + ], + [ + -43.88181352599997, + -20.875663092999957 + ], + [ + -43.85647151199987, + -20.815613293999945 + ], + [ + -43.9249615519999, + -20.753110782999897 + ], + [ + -44.05525253699989, + -20.743287359999954 + ] + ] + ], + [ + [ + [ + -42.45514252599992, + -20.49941622299997 + ], + [ + -42.520812557999875, + -20.56812637099995 + ], + [ + -42.54757345999997, + -20.72787823699997 + ], + [ + -42.51111251699996, + -20.735249785999827 + ], + [ + -42.284816552999985, + -20.53682616499998 + ], + [ + -42.14487447699997, + -20.464681112999926 + ], + [ + -42.125637505999975, + -20.38226772599984 + ], + [ + -42.24607858199988, + -20.376518913999973 + ], + [ + -42.301120527999956, + -20.46285218199995 + ], + [ + -42.45514252599992, + -20.49941622299997 + ] + ] + ], + [ + [ + [ + -41.77259459399994, + -20.587856029999898 + ], + [ + -41.7320174649999, + -20.459165484999914 + ], + [ + -41.75804159799992, + -20.383377657999915 + ], + [ + -41.843563497999924, + -20.317135476999965 + ], + [ + -41.92275957499993, + -20.310316798999963 + ], + [ + -41.963455558999954, + -20.444966037999848 + ], + [ + -41.90153156699989, + -20.559854773999973 + ], + [ + -41.77259459399994, + -20.587856029999898 + ] + ] + ], + [ + [ + [ + -43.59230057799988, + -20.524854627999957 + ], + [ + -43.516624564999915, + -20.587025215999972 + ], + [ + -43.449508486999946, + -20.543158524999967 + ], + [ + -43.51956560799988, + -20.453554638999947 + ], + [ + -43.512439480999944, + -20.369437546999904 + ], + [ + -43.41656458999989, + -20.15893141299989 + ], + [ + -43.45948747799997, + -20.08165998899989 + ], + [ + -43.61208756999997, + -20.018520284999965 + ], + [ + -43.64412353899996, + -20.128698055999962 + ], + [ + -43.63521961099991, + -20.447583203999955 + ], + [ + -43.59230057799988, + -20.524854627999957 + ] + ] + ], + [ + [ + [ + -43.95362849899993, + -20.05243849499982 + ], + [ + -43.87940557299993, + -20.25507485999998 + ], + [ + -43.867832510999904, + -20.413057976999937 + ], + [ + -43.82563046699988, + -20.395251964999886 + ], + [ + -43.77283855899992, + -20.145977013999982 + ], + [ + -43.804698507999944, + -20.052341431999935 + ], + [ + -43.97058860999982, + -19.967171237999935 + ], + [ + -43.95362849899993, + -20.05243849499982 + ] + ] + ], + [ + [ + [ + -65.37538151099994, + -16.1982338869999 + ], + [ + -65.24610155099998, + -16.14724106999995 + ], + [ + -65.24522362999988, + -16.05899454899992 + ], + [ + -65.20059955099993, + -15.99449865399987 + ], + [ + -65.20960959399997, + -15.91301767099992 + ], + [ + -65.3122106269999, + -15.955767220999974 + ], + [ + -65.29494457699997, + -16.030592469999874 + ], + [ + -65.38793961299984, + -16.124718560999895 + ], + [ + -65.37538151099994, + -16.1982338869999 + ] + ] + ], + [ + [ + [ + -64.84252162999991, + -15.565216129999953 + ], + [ + -64.91279550599995, + -15.367300787999966 + ], + [ + -64.9612345239999, + -15.30676265999989 + ], + [ + -65.0152055989999, + -15.36992851499997 + ], + [ + -65.00473760799991, + -15.457620991999931 + ], + [ + -65.06743658999983, + -15.574383249999926 + ], + [ + -65.14120454699992, + -15.784825010999839 + ], + [ + -65.1392515629999, + -15.973092949999966 + ], + [ + -65.16759463399995, + -16.137341539999852 + ], + [ + -65.11642462399993, + -16.16884760499994 + ], + [ + -65.14394358499999, + -16.27781687299995 + ], + [ + -65.07453958299993, + -16.366224995999914 + ], + [ + -65.01589157399991, + -16.227376757999878 + ], + [ + -64.88474261699992, + -16.06947896899993 + ], + [ + -64.81457552599994, + -15.933676379999952 + ], + [ + -64.84310148999992, + -15.827082207999979 + ], + [ + -64.81264450299994, + -15.653839500999936 + ], + [ + -64.84252162999991, + -15.565216129999953 + ] + ] + ], + [ + [ + [ + -65.2461545239999, + -15.858286356999884 + ], + [ + -65.19845562799998, + -15.760606506999977 + ], + [ + -65.24937451599988, + -15.707681829999956 + ], + [ + -65.35298154499992, + -15.759372523999957 + ], + [ + -65.49694861099994, + -15.866900773999873 + ], + [ + -65.43769056699989, + -15.93567328399996 + ], + [ + -65.34214055899992, + -15.92755675199993 + ], + [ + -65.2461545239999, + -15.858286356999884 + ] + ] + ], + [ + [ + [ + -61.012245510999946, + -15.065963153999917 + ], + [ + -61.02622551999997, + -14.93480464199996 + ], + [ + -60.97068049099994, + -14.899276100999828 + ], + [ + -60.95432253699988, + -14.786179416999914 + ], + [ + -61.10830647999995, + -14.702933706999943 + ], + [ + -61.16769461099989, + -14.805301890999942 + ], + [ + -61.10361848199983, + -14.872136671999954 + ], + [ + -61.093402617999914, + -15.00960172899994 + ], + [ + -61.012245510999946, + -15.065963153999917 + ] + ] + ], + [ + [ + [ + -59.64458059499998, + -14.732548814999916 + ], + [ + -59.568481630999884, + -14.783133600999975 + ], + [ + -59.50210550699995, + -14.78196365499997 + ], + [ + -59.47130150999993, + -14.71370998499998 + ], + [ + -59.51750155499991, + -14.577702038999917 + ], + [ + -59.58578456099997, + -14.623545851999893 + ], + [ + -59.624198487999934, + -14.519762803999924 + ], + [ + -59.767391569999916, + -14.38898734399993 + ], + [ + -59.89620549599988, + -14.383288487999948 + ], + [ + -59.93729760899993, + -14.554352402999939 + ], + [ + -59.90124151099991, + -14.650076084999966 + ], + [ + -59.767368602999966, + -14.773927085999844 + ], + [ + -59.727962593999905, + -14.693282280999881 + ], + [ + -59.64458059499998, + -14.732548814999916 + ] + ] + ], + [ + [ + [ + -60.59702647899985, + -13.801743998999882 + ], + [ + -60.70645155499989, + -13.671628530999897 + ], + [ + -60.823223535999944, + -13.767386074999933 + ], + [ + -60.81899251899989, + -13.882520734999957 + ], + [ + -60.7486955089999, + -14.007544196999902 + ], + [ + -60.77261360499995, + -14.122012830999893 + ], + [ + -60.76142460199992, + -14.21073393599994 + ], + [ + -60.80225754599991, + -14.31941872099992 + ], + [ + -60.74911460399994, + -14.387189257999921 + ], + [ + -60.79729462199998, + -14.475446675999876 + ], + [ + -60.723842494999985, + -14.505449529999964 + ], + [ + -60.704185590999884, + -14.559927206999873 + ], + [ + -60.57402452499991, + -14.653186105999907 + ], + [ + -60.521942563999914, + -14.648411102999887 + ], + [ + -60.45755362199998, + -14.739267413999926 + ], + [ + -60.38698151799997, + -14.771646369999871 + ], + [ + -60.32233055699999, + -14.890012421999927 + ], + [ + -60.25529863299994, + -14.889366679999966 + ], + [ + -60.25679748499988, + -14.814607479999893 + ], + [ + -60.301013532999946, + -14.63201542999991 + ], + [ + -60.45461660299998, + -14.461773444999892 + ], + [ + -60.44958159399994, + -14.3905079889999 + ], + [ + -60.51576660999996, + -14.26890316999993 + ], + [ + -60.63832059599997, + -14.27317995199985 + ], + [ + -60.65260654399992, + -14.214183591999813 + ], + [ + -60.520244557999945, + -14.08529825099987 + ], + [ + -60.42322553799988, + -14.084426365999946 + ], + [ + -60.38644457299995, + -14.034134611999889 + ], + [ + -60.4679984789999, + -13.883953537999844 + ], + [ + -60.54679457199995, + -13.862962736999975 + ], + [ + -60.59702647899985, + -13.801743998999882 + ] + ] + ], + [ + [ + [ + -67.97401457299998, + -13.77369781599998 + ], + [ + -68.09969349999989, + -13.716343469999913 + ], + [ + -68.07587464499989, + -13.815706907999925 + ], + [ + -67.97401457299998, + -13.77369781599998 + ] + ] + ], + [ + [ + [ + -61.51760855899994, + -13.666132013999857 + ], + [ + -61.55739259199993, + -13.61141947599998 + ], + [ + -61.629138497999975, + -13.638064875999873 + ], + [ + -61.55276460799996, + -13.834219682999958 + ], + [ + -61.47814555299988, + -13.883906598999943 + ], + [ + -61.44702153499992, + -13.772539938999842 + ], + [ + -61.51760855899994, + -13.666132013999857 + ] + ] + ], + [ + [ + [ + -65.26730357499997, + -11.694876190999935 + ], + [ + -65.29839356199994, + -11.578623216999972 + ], + [ + -65.40272562599995, + -11.629972599999974 + ], + [ + -65.35288263899992, + -11.683939818999932 + ], + [ + -65.33727251699992, + -11.87178815999988 + ], + [ + -65.41196449499995, + -11.883592225999905 + ], + [ + -65.50946061299999, + -11.551786877999973 + ], + [ + -65.58395360399999, + -11.606081325999924 + ], + [ + -65.49305756399986, + -11.755174931999818 + ], + [ + -65.50587449999995, + -11.858190868999884 + ], + [ + -65.45130160499997, + -11.92491551199987 + ], + [ + -65.47333561599999, + -11.978583664999974 + ], + [ + -65.46160162299998, + -12.105649125999946 + ], + [ + -65.63119551999989, + -12.033330064999973 + ], + [ + -65.68298361099994, + -12.10201221799997 + ], + [ + -65.78509564399997, + -12.167512935999923 + ], + [ + -65.86947659899994, + -12.182479829999977 + ], + [ + -65.82805658599995, + -12.280021042999977 + ], + [ + -65.85626252799995, + -12.39624920599988 + ], + [ + -65.96224951499994, + -12.400627073999942 + ], + [ + -66.01132153399993, + -12.281708151999965 + ], + [ + -66.07298250199995, + -12.312786907999964 + ], + [ + -66.12007153099984, + -12.15516454799996 + ], + [ + -66.19146757699997, + -12.180426095999962 + ], + [ + -66.17924458299984, + -12.258781802999977 + ], + [ + -66.28176850199998, + -12.390613549999898 + ], + [ + -66.40440362499993, + -12.446896855999967 + ], + [ + -66.34869363999996, + -12.217207562999931 + ], + [ + -66.45407863899993, + -12.196361937999939 + ], + [ + -66.39113658099984, + -12.131073281999818 + ], + [ + -66.40194655399995, + -12.0471850159999 + ], + [ + -66.51167253899996, + -12.098215550999953 + ], + [ + -66.48077349199997, + -11.94259110199988 + ], + [ + -66.62032362999997, + -11.761979695999912 + ], + [ + -66.67378961099996, + -11.778505455999891 + ], + [ + -66.55011747899988, + -11.945730962999903 + ], + [ + -66.62770054299989, + -12.108171742999957 + ], + [ + -66.62946359199992, + -12.193166252999902 + ], + [ + -66.68120558399988, + -12.27186779799996 + ], + [ + -66.66826660699985, + -12.348835629999883 + ], + [ + -66.59455162499995, + -12.435836766999955 + ], + [ + -66.59111755899994, + -12.556040467999935 + ], + [ + -66.65171050499998, + -12.663808272999972 + ], + [ + -66.67194358099988, + -12.795192258999975 + ], + [ + -66.82169348999997, + -13.126614889999928 + ], + [ + -66.8344195659999, + -12.939097465999907 + ], + [ + -66.78088351199995, + -12.783349131999898 + ], + [ + -66.71988655799998, + -12.685594683999966 + ], + [ + -66.67801660499993, + -12.570676611999886 + ], + [ + -66.82568361099999, + -12.577350114999888 + ], + [ + -66.78143353199988, + -12.355666042999871 + ], + [ + -66.69334459099991, + -12.21182168799993 + ], + [ + -66.79315159999999, + -12.153981693999981 + ], + [ + -66.67091361199994, + -12.089407343999937 + ], + [ + -66.73747262899997, + -11.917726856999934 + ], + [ + -66.81455261099995, + -12.033184890999962 + ], + [ + -66.8246155889999, + -12.188696351999909 + ], + [ + -66.87619748599991, + -12.222832155999924 + ], + [ + -66.91418460599994, + -12.477989860999855 + ], + [ + -66.96540054899987, + -12.592961074999948 + ], + [ + -66.96752150599991, + -12.75395916199983 + ], + [ + -66.99465154699982, + -12.87052813399987 + ], + [ + -67.04072552799994, + -12.932269902999963 + ], + [ + -67.07464558099991, + -13.055782778999912 + ], + [ + -67.04612749699987, + -13.083267876999969 + ], + [ + -67.03776554299998, + -13.259752201999959 + ], + [ + -67.13152349999984, + -13.421248341999842 + ], + [ + -67.06237749299999, + -13.531074910999962 + ], + [ + -67.07907860199998, + -13.648278224999956 + ], + [ + -67.14393659599989, + -13.68870129399994 + ], + [ + -67.09300261999994, + -13.745774510999922 + ], + [ + -67.17764257499994, + -13.781817364999881 + ], + [ + -67.19744850999984, + -14.004746485999874 + ], + [ + -67.26974460399992, + -14.06766624799991 + ], + [ + -67.43752264499989, + -14.154596641999944 + ], + [ + -67.46455361199992, + -14.368585623999877 + ], + [ + -67.36825560299997, + -14.366681590999974 + ], + [ + -67.23157458999992, + -14.393578782999953 + ], + [ + -67.15526557599998, + -14.498185102999912 + ], + [ + -67.04682151799983, + -14.557708181999942 + ], + [ + -66.94773049099996, + -14.692937281999946 + ], + [ + -66.94719656399991, + -14.963087865999967 + ], + [ + -66.93241155699997, + -15.05110002799995 + ], + [ + -66.83987450799998, + -15.012943592999875 + ], + [ + -66.79264851899984, + -14.890048631999889 + ], + [ + -66.72109958699991, + -14.820912179999937 + ], + [ + -66.63947259099996, + -14.67848419899991 + ], + [ + -66.57163952499991, + -14.660152640999968 + ], + [ + -66.52719163299997, + -14.55800003999991 + ], + [ + -66.42893963499995, + -14.513593219999905 + ], + [ + -66.32356251499982, + -14.531330835999881 + ], + [ + -66.21753663699991, + -14.379787869999973 + ], + [ + -66.08074950899999, + -14.352443587999915 + ], + [ + -66.02675664099996, + -14.371843501999876 + ], + [ + -65.96789556499982, + -14.318100750999918 + ], + [ + -65.8626255659999, + -14.273877829999947 + ], + [ + -65.76127662199991, + -14.353476405999857 + ], + [ + -65.96031949799993, + -14.36319203699992 + ], + [ + -65.96202052099989, + -14.460277609999878 + ], + [ + -65.99627652099997, + -14.590357035999943 + ], + [ + -66.09033957999998, + -14.762907900999892 + ], + [ + -66.14270049099997, + -14.708952248999935 + ], + [ + -66.27972449099997, + -14.685168765999947 + ], + [ + -66.44178758299995, + -14.841161683999928 + ], + [ + -66.25151854899997, + -14.877438393999967 + ], + [ + -66.21620961399998, + -14.820591990999901 + ], + [ + -66.09822057999992, + -14.845862255999918 + ], + [ + -66.05873158999987, + -14.76100906499994 + ], + [ + -65.98029357299998, + -14.70461746399991 + ], + [ + -65.93852956699993, + -14.56655075499998 + ], + [ + -65.86840052999992, + -14.655992869999977 + ], + [ + -65.74082159299996, + -14.656682867999962 + ], + [ + -65.76721955899995, + -14.776355825999872 + ], + [ + -65.75103762399988, + -14.856761746999894 + ], + [ + -65.79369363299992, + -14.956831109999882 + ], + [ + -65.78152461799988, + -15.177518070999895 + ], + [ + -65.83496863799996, + -15.27730043799994 + ], + [ + -65.83656354699997, + -15.62899101399995 + ], + [ + -65.81703957999997, + -15.654450373999964 + ], + [ + -65.88465857199998, + -15.874532329999909 + ], + [ + -65.67215754499995, + -15.89997961999984 + ], + [ + -65.61056564399996, + -15.852663776999975 + ], + [ + -65.53487353799983, + -15.846346000999972 + ], + [ + -65.45864850999988, + -15.756835656999897 + ], + [ + -65.32511154899993, + -15.647980550999932 + ], + [ + -65.30221554299999, + -15.548364145999926 + ], + [ + -65.21683462699986, + -15.439772063999897 + ], + [ + -65.14928453399995, + -15.515753010999958 + ], + [ + -65.05815849399988, + -15.328017321999937 + ], + [ + -65.00669863799993, + -15.266934202999948 + ], + [ + -64.98673260899994, + -15.155241486999955 + ], + [ + -65.05860860199994, + -15.076519322999843 + ], + [ + -65.07755254199998, + -14.945001059999925 + ], + [ + -65.06891649899995, + -14.638528000999884 + ], + [ + -65.00401357899989, + -14.453352984999981 + ], + [ + -65.06422447699998, + -14.409805812999934 + ], + [ + -65.08741753899989, + -14.291781742999945 + ], + [ + -65.0372166439999, + -14.267329215999894 + ], + [ + -65.08983655599991, + -14.158102288999885 + ], + [ + -65.08478562099998, + -14.007451325999966 + ], + [ + -65.16264361099996, + -13.956054835999964 + ], + [ + -65.19661764399996, + -13.99182142299992 + ], + [ + -65.32212859799995, + -13.817006773999935 + ], + [ + -65.31391952899992, + -13.72748771299996 + ], + [ + -65.41564951499998, + -13.641672446999962 + ], + [ + -65.35384353999984, + -13.332839044999957 + ], + [ + -65.2935635739999, + -13.158397892999972 + ], + [ + -65.2942195419999, + -13.016764515999967 + ], + [ + -65.22466248599994, + -12.982876481999938 + ], + [ + -65.16391749299999, + -12.908617513999957 + ], + [ + -65.11130562799991, + -12.708652963999896 + ], + [ + -64.9910355429999, + -12.683127721999938 + ], + [ + -64.96590458599997, + -12.756576830999961 + ], + [ + -65.00337957199991, + -12.888747038999895 + ], + [ + -65.08393049999995, + -12.95412873299989 + ], + [ + -65.12129953799996, + -13.032752325999866 + ], + [ + -65.17830653799996, + -13.06000742599997 + ], + [ + -65.21046454799983, + -13.176949726999908 + ], + [ + -65.19766253199992, + -13.225245246999975 + ], + [ + -65.26967649199986, + -13.427038727999957 + ], + [ + -65.29749250799983, + -13.54948358199988 + ], + [ + -65.15217561999998, + -13.734211339999945 + ], + [ + -65.14711764399988, + -13.817092771999967 + ], + [ + -65.10071559599999, + -13.903553108999972 + ], + [ + -65.00123548099998, + -13.96830800499987 + ], + [ + -64.98178058099984, + -14.132988094999916 + ], + [ + -64.89193764299989, + -14.443072579999978 + ], + [ + -64.93954450599983, + -14.560786854999947 + ], + [ + -64.93107559799995, + -14.682344064999882 + ], + [ + -64.96379854899988, + -14.83176238599998 + ], + [ + -64.91299449199988, + -14.938236527999948 + ], + [ + -64.8965525509999, + -15.073570736999955 + ], + [ + -64.84412357899987, + -15.298182105999956 + ], + [ + -64.7591785219999, + -15.405159161999961 + ], + [ + -64.61709553999992, + -15.435481367999898 + ], + [ + -64.51358758499998, + -15.515067202999887 + ], + [ + -64.43421163299985, + -15.505654660999937 + ], + [ + -64.23801458099985, + -15.657630970999946 + ], + [ + -64.11603559399998, + -15.692207830999962 + ], + [ + -63.87960456899998, + -15.68712604999996 + ], + [ + -63.79026052099994, + -15.657622085999947 + ], + [ + -63.83411748899994, + -15.499291119999953 + ], + [ + -63.90820663999989, + -15.409181134999926 + ], + [ + -63.92435454399998, + -15.336375588999942 + ], + [ + -64.04162558399986, + -15.233372391999922 + ], + [ + -64.15360261299992, + -15.186306328999876 + ], + [ + -64.18610361099996, + -15.07524158599989 + ], + [ + -64.27924348599998, + -15.060893611999973 + ], + [ + -64.33000948899985, + -14.96202101699987 + ], + [ + -64.41371150899988, + -14.891653598999937 + ], + [ + -64.41357454899992, + -14.84363451299987 + ], + [ + -64.5765304819999, + -14.885282010999958 + ], + [ + -64.66793060999998, + -15.013254393999944 + ], + [ + -64.72116055599986, + -14.926140268999916 + ], + [ + -64.56352260599982, + -14.822681934999821 + ], + [ + -64.55084950399998, + -14.765268747999926 + ], + [ + -64.46827652599995, + -14.747890882999968 + ], + [ + -64.36151153099996, + -14.601526424999918 + ], + [ + -64.45011159999996, + -14.48282409199993 + ], + [ + -64.45197254999988, + -14.313211250999927 + ], + [ + -64.51387055799995, + -14.217505339999946 + ], + [ + -64.44280962099998, + -14.04266101899998 + ], + [ + -64.29141250099985, + -13.988294485999972 + ], + [ + -64.16681651599998, + -13.81281531899998 + ], + [ + -64.17881755699989, + -13.705094284999973 + ], + [ + -64.0706256279999, + -13.71107292899984 + ], + [ + -64.06674949999984, + -13.770814943999937 + ], + [ + -63.946361565999894, + -13.771889838999982 + ], + [ + -63.94815847799998, + -13.92666670999995 + ], + [ + -64.00778163799993, + -14.087975933999928 + ], + [ + -64.12051354199986, + -14.188425332999941 + ], + [ + -64.08013154399998, + -14.21688038499991 + ], + [ + -64.0830236359999, + -14.368210617999921 + ], + [ + -64.03488150399988, + -14.364150926999969 + ], + [ + -63.92822647999998, + -14.426098723999928 + ], + [ + -63.72503255099997, + -14.383196454999961 + ], + [ + -63.68045054899994, + -14.310061331999918 + ], + [ + -63.81987764099989, + -14.156050566999966 + ], + [ + -63.86341861099993, + -14.06646528799996 + ], + [ + -63.84915562899994, + -13.96516713899996 + ], + [ + -63.78726549999993, + -13.828374310999891 + ], + [ + -63.80032349899989, + -13.72480500099988 + ], + [ + -63.78201658399996, + -13.565794597999968 + ], + [ + -63.70078655499998, + -13.569152555999892 + ], + [ + -63.65026848899993, + -13.613788369999952 + ], + [ + -63.701320481999915, + -13.686267524999835 + ], + [ + -63.63776352799994, + -13.75259620699984 + ], + [ + -63.546417546999976, + -13.690954181999928 + ], + [ + -63.51285154499993, + -13.799594207999917 + ], + [ + -63.36960951299989, + -13.845800119999865 + ], + [ + -63.30631658899989, + -13.933895095999958 + ], + [ + -63.16719862099984, + -13.866466707999905 + ], + [ + -63.02193856299988, + -13.883643574999951 + ], + [ + -63.004138585999954, + -13.924655891999862 + ], + [ + -63.10356555899995, + -14.027105882999933 + ], + [ + -63.02864056499993, + -14.065047405999962 + ], + [ + -62.90646762099993, + -14.218461379999894 + ], + [ + -62.77078656899994, + -14.261944513999879 + ], + [ + -62.762523520999935, + -14.416667405999931 + ], + [ + -62.679275631999985, + -14.54438397399997 + ], + [ + -62.65863452499991, + -14.346664935999911 + ], + [ + -62.567848622999975, + -14.318192783999905 + ], + [ + -62.62208959499998, + -14.245936587999836 + ], + [ + -62.56306456799996, + -14.18827026699995 + ], + [ + -62.4526516009999, + -14.207710079999913 + ], + [ + -62.46726259899992, + -14.078931524999973 + ], + [ + -62.62182656999988, + -13.915673508999873 + ], + [ + -62.740085500999896, + -13.909060689999933 + ], + [ + -62.76480054899997, + -13.849427807999973 + ], + [ + -62.697799637999935, + -13.806572477999907 + ], + [ + -62.763263474999974, + -13.638343824999879 + ], + [ + -62.773700620999875, + -13.558251051999946 + ], + [ + -62.90242754299993, + -13.463601595999933 + ], + [ + -62.86391051899989, + -13.400864558999842 + ], + [ + -62.8851584759999, + -13.313924273999817 + ], + [ + -63.00644662699989, + -13.350855106999973 + ], + [ + -63.071323562999964, + -13.232021009999926 + ], + [ + -63.05016763899994, + -13.144849887999953 + ], + [ + -63.11582157799995, + -13.013930426999934 + ], + [ + -63.05965461299991, + -12.959734214999969 + ], + [ + -63.09638562099997, + -12.86562136799995 + ], + [ + -63.22375450699991, + -12.832109680999906 + ], + [ + -63.191692553999985, + -12.92590351299998 + ], + [ + -63.181747593999944, + -13.05574187499991 + ], + [ + -63.24834449699995, + -13.10826925099991 + ], + [ + -63.30357755099993, + -13.208407344999898 + ], + [ + -63.45597848799997, + -13.278671665999866 + ], + [ + -63.549922522999964, + -13.245327113999963 + ], + [ + -63.60726563799983, + -13.279147925999837 + ], + [ + -63.70433461399989, + -13.192271678999873 + ], + [ + -63.72114150399989, + -13.055559651999943 + ], + [ + -63.765628622999884, + -12.99430889499996 + ], + [ + -63.85924961999996, + -12.95370662099998 + ], + [ + -63.86959054099992, + -12.893304614999977 + ], + [ + -63.94057050899994, + -12.853271303999975 + ], + [ + -63.95594459599994, + -12.71551656899993 + ], + [ + -64.02864855299993, + -12.690345378999837 + ], + [ + -64.10655951699994, + -12.551199917999895 + ], + [ + -64.18407451899992, + -12.496348575999889 + ], + [ + -64.21511857399997, + -12.544190299999968 + ], + [ + -64.14064050299999, + -12.718245548999846 + ], + [ + -64.1471175349999, + -12.793244303999927 + ], + [ + -64.26040649999999, + -12.696093854999958 + ], + [ + -64.28942850499993, + -12.560139050999965 + ], + [ + -64.35958050799996, + -12.543247168999926 + ], + [ + -64.38466653799992, + -12.713695851999887 + ], + [ + -64.46039552499997, + -12.733106327999906 + ], + [ + -64.52284958799999, + -12.826721289999966 + ], + [ + -64.63452956399993, + -12.843216875999929 + ], + [ + -64.43460055299994, + -12.63934585599992 + ], + [ + -64.43588248099996, + -12.440020342999901 + ], + [ + -64.54386855199988, + -12.479643610999972 + ], + [ + -64.63629948599998, + -12.463215750999836 + ], + [ + -64.80158256999994, + -12.39087774799998 + ], + [ + -64.81729159799994, + -12.334306438999874 + ], + [ + -64.9436264929999, + -12.214077592999956 + ], + [ + -65.00759147799988, + -12.060349297999949 + ], + [ + -64.9981385349999, + -11.977040891999934 + ], + [ + -65.13657354499992, + -11.988155965999908 + ], + [ + -65.15312160199989, + -12.139558785999895 + ], + [ + -65.18990357199993, + -12.189160541999968 + ], + [ + -65.17735250999988, + -12.336948414999881 + ], + [ + -65.09214057399998, + -12.424234536999847 + ], + [ + -65.11427349199994, + -12.533866980999903 + ], + [ + -65.19943949599997, + -12.533292987999914 + ], + [ + -65.30084962799987, + -12.286835865999933 + ], + [ + -65.2658085779999, + -12.170914479999908 + ], + [ + -65.3292386309999, + -12.055183530999898 + ], + [ + -65.34939559899988, + -11.969962206999924 + ], + [ + -65.26810454899999, + -11.909067511999922 + ], + [ + -65.29199951099997, + -11.793466482999918 + ], + [ + -65.26730357499997, + -11.694876190999935 + ] + ], + [ + [ + -64.82479859799997, + -12.497403522999946 + ], + [ + -64.88687161999997, + -12.518816099999981 + ], + [ + -65.01531255199995, + -12.485309274999906 + ], + [ + -64.99940453799991, + -12.322380331999966 + ], + [ + -64.89965050199999, + -12.320242610999912 + ], + [ + -64.88442259599998, + -12.427253027999939 + ], + [ + -64.82479859799997, + -12.497403522999946 + ] + ] + ], + [ + [ + [ + -67.55262763399998, + -13.588662943999907 + ], + [ + -67.53538555599994, + -13.510149321999904 + ], + [ + -67.58950063199995, + -13.465186445999962 + ], + [ + -67.7381204919999, + -13.49743129199993 + ], + [ + -67.80753354699993, + -13.48536906299995 + ], + [ + -67.96496563799991, + -13.554278532999945 + ], + [ + -68.03464557199999, + -13.640676508999888 + ], + [ + -68.08787551899997, + -13.552528391999942 + ], + [ + -68.20235454699986, + -13.587005170999817 + ], + [ + -68.22872954599995, + -13.633786248999968 + ], + [ + -68.16966260999993, + -13.739177114999848 + ], + [ + -68.07604949199998, + -13.699630624999884 + ], + [ + -67.93396751599983, + -13.729608668999958 + ], + [ + -67.94139857599998, + -13.59940753799998 + ], + [ + -67.66096456999998, + -13.55159548599994 + ], + [ + -67.6601406289999, + -13.651774818999968 + ], + [ + -67.58866864399988, + -13.644131529999925 + ], + [ + -67.55262763399998, + -13.588662943999907 + ] + ] + ], + [ + [ + [ + -61.345607546999986, + -13.561216066999862 + ], + [ + -61.44063552999995, + -13.604221097999982 + ], + [ + -61.39861654699996, + -13.669341611999926 + ], + [ + -61.267970503999834, + -13.629960245999882 + ], + [ + -61.345607546999986, + -13.561216066999862 + ] + ] + ], + [ + [ + [ + -41.378826528999866, + -13.343614316999947 + ], + [ + -41.379489536999984, + -13.497632289999956 + ], + [ + -41.32167452199991, + -13.583272374999979 + ], + [ + -41.24021549899993, + -13.579501691999894 + ], + [ + -41.24346147499989, + -13.482280331999903 + ], + [ + -41.2110174739999, + -13.213569255999971 + ], + [ + -41.26269157199994, + -13.144395755999938 + ], + [ + -41.378826528999866, + -13.343614316999947 + ] + ] + ], + [ + [ + [ + -62.30684655099998, + -13.105236342999888 + ], + [ + -62.43740056099995, + -13.158798882999918 + ], + [ + -62.32343651699995, + -13.324003680999965 + ], + [ + -62.310432496999965, + -13.416173434999962 + ], + [ + -62.230739540999934, + -13.552889483999877 + ], + [ + -62.102672609999956, + -13.582248440999876 + ], + [ + -61.96846761099988, + -13.539720508999892 + ], + [ + -61.950523632999875, + -13.458093679999934 + ], + [ + -62.095245572999886, + -13.47891550099996 + ], + [ + -62.17817360799995, + -13.419599453999922 + ], + [ + -62.26592660299997, + -13.404185301999973 + ], + [ + -62.25723658099997, + -13.341264700999943 + ], + [ + -62.146266552999975, + -13.325460790999898 + ], + [ + -62.157752609999875, + -13.2512485929999 + ], + [ + -62.26689957399992, + -13.117801485999905 + ], + [ + -62.30684655099998, + -13.105236342999888 + ] + ] + ], + [ + [ + [ + -43.70961755099995, + -13.069090893999942 + ], + [ + -43.59612255899992, + -13.01804543899982 + ], + [ + -43.59360547299997, + -12.949934931999906 + ], + [ + -43.657485465999855, + -12.821447564999971 + ], + [ + -43.74417848499985, + -12.864819722999812 + ], + [ + -43.812560565999945, + -12.854332452999927 + ], + [ + -43.85414151099991, + -12.914530107999894 + ], + [ + -43.93328059099997, + -12.898660315999905 + ], + [ + -44.08343551299993, + -12.941527379999968 + ], + [ + -44.135887618999845, + -12.994104040999957 + ], + [ + -44.12155154699991, + -13.081131162999895 + ], + [ + -44.15970647399985, + -13.17697453799991 + ], + [ + -44.06697060499988, + -13.326424709999912 + ], + [ + -44.017532463999885, + -13.365834909999933 + ], + [ + -43.85020453099992, + -13.375608375999946 + ], + [ + -43.750190488999976, + -13.339678677999927 + ], + [ + -43.68231148999996, + -13.18848372899987 + ], + [ + -43.76929452199988, + -13.187706725999817 + ], + [ + -43.77447554399993, + -13.135681258999966 + ], + [ + -43.70961755099995, + -13.069090893999942 + ] + ] + ], + [ + [ + [ + -67.68383056999983, + -13.0390508239999 + ], + [ + -67.62171949399982, + -12.869444185999896 + ], + [ + -67.73198661499998, + -12.884890189999908 + ], + [ + -67.77985348499993, + -12.946644196999955 + ], + [ + -67.89540053499991, + -12.981123657999944 + ], + [ + -68.02517653599989, + -13.048848262999911 + ], + [ + -68.04247259399995, + -13.19231073799989 + ], + [ + -68.07686655999998, + -13.292681849999894 + ], + [ + -67.95771059799995, + -13.259905087999982 + ], + [ + -67.98406950399988, + -13.156410040999958 + ], + [ + -67.84649648899995, + -13.142880978999926 + ], + [ + -67.76170347999994, + -13.062274394999974 + ], + [ + -67.68383056999983, + -13.0390508239999 + ] + ] + ], + [ + [ + [ + -68.05200952299998, + -12.996138831999929 + ], + [ + -68.10029548799997, + -12.967726694999953 + ], + [ + -68.21521758299991, + -12.983896559999891 + ], + [ + -68.31053155699993, + -13.119487589999892 + ], + [ + -68.28561349999984, + -13.14664462099995 + ], + [ + -68.08699759899997, + -13.045383350999941 + ], + [ + -68.05200952299998, + -12.996138831999929 + ] + ] + ], + [ + [ + [ + -68.65615849699992, + -12.90406681099995 + ], + [ + -68.76363360599993, + -12.898086489999855 + ], + [ + -68.80426052299993, + -12.970161469999937 + ], + [ + -68.74443854499998, + -13.153970236999896 + ], + [ + -68.6478495159999, + -13.067773090999879 + ], + [ + -68.68042762699997, + -12.939435424999886 + ], + [ + -68.65615849699992, + -12.90406681099995 + ] + ] + ], + [ + [ + [ + -67.23631254499998, + -12.679070209999963 + ], + [ + -67.27829749799992, + -12.614349344999937 + ], + [ + -67.40308358399994, + -12.672720415999947 + ], + [ + -67.42033354099993, + -12.826889263999874 + ], + [ + -67.32807963199997, + -12.959046395999906 + ], + [ + -67.46131853299988, + -12.977042173999962 + ], + [ + -67.6137545069999, + -12.96267005999988 + ], + [ + -67.64392851999992, + -13.04229059699992 + ], + [ + -67.74645947999994, + -13.094321092999962 + ], + [ + -67.76131455899991, + -13.146218652999892 + ], + [ + -67.57326555599997, + -13.169727208999973 + ], + [ + -67.37355749199997, + -13.149297325999953 + ], + [ + -67.2733156299999, + -13.068262761999904 + ], + [ + -67.2700275769999, + -13.001223294999875 + ], + [ + -67.15757763999994, + -12.841702097999928 + ], + [ + -67.13966350099992, + -12.751784225999927 + ], + [ + -67.09568751099994, + -12.703179413999976 + ], + [ + -67.23631254499998, + -12.679070209999963 + ] + ] + ], + [ + [ + [ + -68.64788052899996, + -12.674980343999948 + ], + [ + -68.82055661899994, + -12.789573533999942 + ], + [ + -68.83843957699997, + -12.884327428999882 + ], + [ + -68.9401325149999, + -12.963299875999951 + ], + [ + -68.92280561199988, + -13.056824816999892 + ], + [ + -68.85962651399996, + -13.04300942899988 + ], + [ + -68.84028661399992, + -12.951356669999939 + ], + [ + -68.7728275479999, + -12.853224532999832 + ], + [ + -68.75737752099991, + -12.77472080099983 + ], + [ + -68.6723555189999, + -12.744204638999918 + ], + [ + -68.64788052899996, + -12.674980343999948 + ] + ] + ], + [ + [ + [ + -41.75971546499994, + -13.320477078999943 + ], + [ + -41.7264934559999, + -13.230624920999958 + ], + [ + -41.75181149699995, + -12.96005825899988 + ], + [ + -41.74507948799993, + -12.869167415999982 + ], + [ + -41.82563058399995, + -12.598891438999829 + ], + [ + -41.79664260999982, + -12.477530700999978 + ], + [ + -41.71783461499996, + -12.304050617999906 + ], + [ + -41.693210594999925, + -12.148924053999849 + ], + [ + -41.71581658799994, + -12.13185514599985 + ], + [ + -41.87984858899995, + -12.20284936299987 + ], + [ + -41.92094757499984, + -12.322504215999913 + ], + [ + -41.90323661299993, + -12.462081846999979 + ], + [ + -41.9724235249999, + -12.594361857999957 + ], + [ + -41.97348450599992, + -12.741600045999974 + ], + [ + -41.907855544999904, + -12.87896166999991 + ], + [ + -41.880596589999925, + -13.058860445999926 + ], + [ + -41.90830950899988, + -13.243567081999913 + ], + [ + -41.841598611999984, + -13.358231517999855 + ], + [ + -41.75971546499994, + -13.320477078999943 + ] + ] + ], + [ + [ + [ + -41.571334536999984, + -12.79998603699994 + ], + [ + -41.50859448299997, + -12.887663928999928 + ], + [ + -41.38427761599996, + -12.877383859999952 + ], + [ + -41.411437496999895, + -12.740506039999957 + ], + [ + -41.40950747999989, + -12.602251240999976 + ], + [ + -41.473361488999956, + -12.625616633999982 + ], + [ + -41.571334536999984, + -12.79998603699994 + ] + ] + ], + [ + [ + [ + -67.52226251299993, + -12.468506240999943 + ], + [ + -67.54679852299995, + -12.368455317999974 + ], + [ + -67.75017551299993, + -12.605509118999976 + ], + [ + -67.87287148799987, + -12.648666029999958 + ], + [ + -67.95386464499995, + -12.619396255999959 + ], + [ + -68.02824364199995, + -12.69856484099995 + ], + [ + -68.06109651199989, + -12.820345679999889 + ], + [ + -68.13021854699986, + -12.793429376999939 + ], + [ + -68.18323559299995, + -12.829299898999977 + ], + [ + -68.29686754599993, + -12.812297207999848 + ], + [ + -68.18756853399992, + -12.670409859999893 + ], + [ + -68.12462664399999, + -12.68216095299988 + ], + [ + -68.09342953599997, + -12.513059240999894 + ], + [ + -68.2325825399999, + -12.64923499299988 + ], + [ + -68.29685262599992, + -12.73802399099992 + ], + [ + -68.36944560799998, + -12.661032186999876 + ], + [ + -68.40051262899993, + -12.780386296999893 + ], + [ + -68.52571848099996, + -12.824939297999947 + ], + [ + -68.63126357399989, + -13.002042373999814 + ], + [ + -68.52587153499985, + -13.024963861999822 + ], + [ + -68.4847645019999, + -12.9774119839999 + ], + [ + -68.3702925149999, + -12.942591210999979 + ], + [ + -68.28431648399999, + -12.961123095999938 + ], + [ + -68.11924764199983, + -12.911864494999975 + ], + [ + -68.04836255699996, + -12.853441456999917 + ], + [ + -67.99325556699995, + -12.880780374999858 + ], + [ + -67.82942959299993, + -12.79421727599987 + ], + [ + -67.65058861299997, + -12.768372179999972 + ], + [ + -67.75511161599997, + -12.702266623999947 + ], + [ + -67.61866764299998, + -12.679069203999973 + ], + [ + -67.5253825929999, + -12.569398706999948 + ], + [ + -67.42983258399994, + -12.561969154999929 + ], + [ + -67.36033654899995, + -12.513574392999885 + ], + [ + -67.24424752499982, + -12.517434929999922 + ], + [ + -67.19911952599989, + -12.485754353999937 + ], + [ + -67.26452653399986, + -12.407688492999966 + ], + [ + -67.31238552499997, + -12.47082115499984 + ], + [ + -67.44692948799991, + -12.516808131999937 + ], + [ + -67.52226251299993, + -12.468506240999943 + ] + ] + ], + [ + [ + [ + -67.61934657699993, + -12.145335425999917 + ], + [ + -67.69956960499991, + -12.127115682999943 + ], + [ + -67.71123453199988, + -12.247053340999969 + ], + [ + -67.6275256379999, + -12.241415840999935 + ], + [ + -67.61934657699993, + -12.145335425999917 + ] + ] + ], + [ + [ + [ + -42.04629156099992, + -11.984102476999965 + ], + [ + -42.14594652199992, + -11.798495959999968 + ], + [ + -42.23222748699993, + -11.843249120999872 + ], + [ + -42.376556483999934, + -11.757081981999931 + ], + [ + -42.4208035449999, + -11.82253458799994 + ], + [ + -42.36442149899989, + -11.883332386999825 + ], + [ + -42.256088585999976, + -11.887376990999883 + ], + [ + -42.297878575999846, + -12.036501776999955 + ], + [ + -42.24672348599995, + -12.13150930899991 + ], + [ + -42.136779569999874, + -12.121893086999819 + ], + [ + -42.01554858399993, + -12.141191580999816 + ], + [ + -41.985122610999895, + -12.04467832399996 + ], + [ + -42.04629156099992, + -11.984102476999965 + ] + ] + ], + [ + [ + [ + -65.59554259099997, + -11.817221801999835 + ], + [ + -65.70251461899983, + -11.765983227999982 + ], + [ + -65.70323948599992, + -11.919026721999899 + ], + [ + -65.80796851699984, + -12.040505476999954 + ], + [ + -65.89958154499993, + -12.04515022499993 + ], + [ + -65.90031462599995, + -12.118392132999873 + ], + [ + -65.8241045179999, + -12.12488861099996 + ], + [ + -65.70294159299988, + -12.05997429099989 + ], + [ + -65.66252858199994, + -11.941606227999955 + ], + [ + -65.59554259099997, + -11.817221801999835 + ] + ] + ], + [ + [ + [ + -66.29162561999993, + -11.428553621999981 + ], + [ + -66.37538161999993, + -11.345751147999863 + ], + [ + -66.43867454499986, + -11.491533063999896 + ], + [ + -66.35632351899994, + -11.50317837699987 + ], + [ + -66.3398745369999, + -11.639891073999934 + ], + [ + -66.22650963199999, + -11.831009865999874 + ], + [ + -66.22142751599995, + -11.91872899699996 + ], + [ + -66.15413659199993, + -11.938746489999858 + ], + [ + -66.12474863299991, + -11.84496690799989 + ], + [ + -66.23394756499994, + -11.776811640999938 + ], + [ + -66.24460548999997, + -11.648702297999876 + ], + [ + -66.27626762699992, + -11.563890345999937 + ], + [ + -66.20844260699994, + -11.465756028999976 + ], + [ + -66.29162561999993, + -11.428553621999981 + ] + ] + ], + [ + [ + [ + -67.12846360199995, + -11.52774975799997 + ], + [ + -67.22947659999988, + -11.598424959999875 + ], + [ + -67.36897259099987, + -11.583635929999957 + ], + [ + -67.33296158799988, + -11.678098469999952 + ], + [ + -67.22006958999987, + -11.76696122899989 + ], + [ + -67.15547160299997, + -11.74795358699987 + ], + [ + -67.09611549099992, + -11.529300745999933 + ], + [ + -67.12846360199995, + -11.52774975799997 + ] + ] + ], + [ + [ + [ + -65.48643451999993, + -11.479460943999982 + ], + [ + -65.54142751599994, + -11.476648144999956 + ], + [ + -65.64025853599998, + -11.397728669999935 + ], + [ + -65.62855555499988, + -11.518577273999881 + ], + [ + -65.48643451999993, + -11.479460943999982 + ] + ] + ], + [ + [ + [ + -42.43541353699993, + -11.488067481999963 + ], + [ + -42.42667758199991, + -11.390290066999967 + ], + [ + -42.456008543999985, + -11.298802598999941 + ], + [ + -42.52879347099997, + -11.273776247999933 + ], + [ + -42.55919647799993, + -11.342073335999942 + ], + [ + -42.50545154699989, + -11.523009121999962 + ], + [ + -42.43541353699993, + -11.488067481999963 + ] + ] + ], + [ + [ + [ + -66.77392552599986, + -11.342385310999816 + ], + [ + -66.77703051799989, + -11.214926402999936 + ], + [ + -66.86097762599996, + -11.246127031999947 + ], + [ + -66.77392552599986, + -11.342385310999816 + ] + ] + ], + [ + [ + [ + -65.60142551399991, + -11.325315731999922 + ], + [ + -65.58843255799991, + -11.259608148999973 + ], + [ + -65.62219955799998, + -11.108476734999897 + ], + [ + -65.68777453899997, + -11.148217014999886 + ], + [ + -65.66753358399995, + -11.251401762999933 + ], + [ + -65.60142551399991, + -11.325315731999922 + ] + ] + ], + [ + [ + [ + -66.35215754599994, + -11.162528778999956 + ], + [ + -66.24301963399995, + -10.98609726099994 + ], + [ + -66.3627016449999, + -10.981910332999973 + ], + [ + -66.44178054299988, + -11.055231197999888 + ], + [ + -66.49672659999999, + -11.061402960999942 + ], + [ + -66.62578561299983, + -11.128432369999928 + ], + [ + -66.65961463899993, + -11.195980451999901 + ], + [ + -66.58789052599991, + -11.241538442999968 + ], + [ + -66.56169858699985, + -11.30910379099987 + ], + [ + -66.41061360899994, + -11.266140836999966 + ], + [ + -66.35215754599994, + -11.162528778999956 + ] + ] + ], + [ + [ + [ + -65.55352058999983, + -11.039358555999911 + ], + [ + -65.47905760699996, + -10.97953473399997 + ], + [ + -65.43596657799998, + -10.818315866999967 + ], + [ + -65.51557956999994, + -10.776255811999874 + ], + [ + -65.52301750399994, + -10.953863310999907 + ], + [ + -65.55352058999983, + -11.039358555999911 + ] + ] + ], + [ + [ + [ + -43.51860856199994, + -10.990329953999947 + ], + [ + -43.51607555099997, + -10.906415703999926 + ], + [ + -43.546676537999986, + -10.610236125999904 + ], + [ + -43.540222472999915, + -10.392497582999965 + ], + [ + -43.506561587999954, + -10.23990319099994 + ], + [ + -43.52519958799985, + -10.085077033999937 + ], + [ + -43.588340463999884, + -10.067186364999827 + ], + [ + -43.66349746999998, + -10.136812319999876 + ], + [ + -43.752769599999965, + -10.146676813999932 + ], + [ + -43.716133474999936, + -10.329561894999927 + ], + [ + -43.75164759899985, + -10.404055723999875 + ], + [ + -43.76958453599997, + -10.534861693999915 + ], + [ + -43.82889555399993, + -10.637135496999974 + ], + [ + -43.884750544999974, + -10.63839445899987 + ], + [ + -43.93902554699997, + -10.707678599999895 + ], + [ + -43.92903146899994, + -10.786876856999982 + ], + [ + -44.011955480999916, + -10.877260762999924 + ], + [ + -43.97788958199993, + -10.937765530999968 + ], + [ + -43.86386854199992, + -11.02701134199998 + ], + [ + -43.73342148499995, + -11.069257474999915 + ], + [ + -43.70747345999996, + -10.988125010999852 + ], + [ + -43.65068053399989, + -10.975422738999953 + ], + [ + -43.601097552999875, + -11.046761955999898 + ], + [ + -43.51860856199994, + -10.990329953999947 + ] + ] + ], + [ + [ + [ + -42.80535151599997, + -10.032515627999885 + ], + [ + -42.979286568999896, + -9.924682275999885 + ], + [ + -43.02478756199997, + -9.924689316999945 + ], + [ + -43.308155568999894, + -10.037351483999942 + ], + [ + -43.40499856999992, + -9.971829140999887 + ], + [ + -43.43780550699995, + -10.095619456999941 + ], + [ + -43.39289057499997, + -10.472933845999876 + ], + [ + -43.388984608999976, + -10.63255361399996 + ], + [ + -43.427749569999946, + -10.94277522699997 + ], + [ + -43.42538453199984, + -11.079799561999891 + ], + [ + -43.38719155199988, + -11.201168178999978 + ], + [ + -43.31277450099998, + -11.318024314999889 + ], + [ + -43.230529589999946, + -11.105679861999931 + ], + [ + -43.17716955699996, + -11.031563050999921 + ], + [ + -43.056518597999855, + -10.967310565999924 + ], + [ + -42.93105357699994, + -10.823762259999853 + ], + [ + -42.72965957799994, + -10.73368781299996 + ], + [ + -42.67131851399989, + -10.56714040299994 + ], + [ + -42.59518451399998, + -10.49849211299994 + ], + [ + -42.51645245899988, + -10.311735263999935 + ], + [ + -42.54837761999994, + -10.24329182699995 + ], + [ + -42.64970762099989, + -10.144486957999845 + ], + [ + -42.80535151599997, + -10.032515627999885 + ] + ] + ], + [ + [ + [ + -48.584609555999975, + -10.331630883999878 + ], + [ + -48.56768062599991, + -10.260435836999932 + ], + [ + -48.647567538999965, + -10.133743704999915 + ], + [ + -48.72039051999997, + -10.193858546999934 + ], + [ + -48.84243052799991, + -10.190054839999902 + ], + [ + -48.89420353199995, + -10.080277220999903 + ], + [ + -48.948516587999904, + -10.132210822999923 + ], + [ + -48.90934761899996, + -10.270753959999922 + ], + [ + -48.92184453399983, + -10.320147676999909 + ], + [ + -48.85640751899996, + -10.374782597999967 + ], + [ + -48.764503470999955, + -10.381050417999973 + ], + [ + -48.785903474999884, + -10.484404144999928 + ], + [ + -48.780441491999966, + -10.602471800999979 + ], + [ + -48.81120257399982, + -10.697862050999902 + ], + [ + -48.86665355699995, + -10.75904105899997 + ], + [ + -48.863830531999895, + -10.830122112999902 + ], + [ + -48.91754947899989, + -10.976163699999972 + ], + [ + -48.846458534999954, + -10.979081607999888 + ], + [ + -48.736709582999936, + -10.855556159999878 + ], + [ + -48.65966061399996, + -10.880178502999911 + ], + [ + -48.50964348999986, + -10.850308417999827 + ], + [ + -48.63523055099989, + -10.724081313999932 + ], + [ + -48.59785447199994, + -10.588514926999892 + ], + [ + -48.63347655399991, + -10.490192519999937 + ], + [ + -48.62383250399989, + -10.375484665999977 + ], + [ + -48.584609555999975, + -10.331630883999878 + ] + ] + ], + [ + [ + [ + -48.98027058999992, + -8.75820399099996 + ], + [ + -49.013839608999945, + -9.080674916999897 + ], + [ + -48.97401450499996, + -9.187179569999955 + ], + [ + -49.006118535999974, + -9.269920520999904 + ], + [ + -48.929313479999905, + -9.341837417999898 + ], + [ + -48.99493456199997, + -9.445373200999938 + ], + [ + -49.05981451599996, + -9.460584007999842 + ], + [ + -49.08966062899992, + -9.52955533699992 + ], + [ + -49.019271585999945, + -9.698998191999976 + ], + [ + -48.96554559799989, + -9.770994213999927 + ], + [ + -48.859207576999836, + -9.686694228999954 + ], + [ + -48.7682184979999, + -9.77333092099991 + ], + [ + -48.69300851899993, + -9.732758821999937 + ], + [ + -48.62892149299995, + -9.579893694999896 + ], + [ + -48.674621472999945, + -9.496462409999936 + ], + [ + -48.814125510999986, + -9.428421471999968 + ], + [ + -48.81795453199982, + -9.35733941299992 + ], + [ + -48.769889513999885, + -9.230949197999962 + ], + [ + -48.80552651699992, + -9.035029251999958 + ], + [ + -48.72290760599998, + -8.860350724999876 + ], + [ + -48.7487106239999, + -8.780204474999948 + ], + [ + -48.88014959499992, + -8.807652357999928 + ], + [ + -48.98027058999992, + -8.75820399099996 + ] + ] + ], + [ + [ + [ + -49.76080347299995, + -8.28376379599996 + ], + [ + -49.83592946499988, + -8.303358505999938 + ], + [ + -49.86830858999991, + -8.255156024999906 + ], + [ + -49.85449253099995, + -8.111590451999916 + ], + [ + -49.93190762099994, + -8.03926535599993 + ], + [ + -49.99661256099989, + -8.094419451999897 + ], + [ + -50.05783062899991, + -8.081795467999882 + ], + [ + -50.111045487999945, + -8.312716732999945 + ], + [ + -50.09947946799997, + -8.378194316999952 + ], + [ + -50.14804857299998, + -8.557427234999977 + ], + [ + -50.13875555699997, + -8.709072626999898 + ], + [ + -50.09246062999995, + -8.750397421999935 + ], + [ + -49.996414579999964, + -8.736524533999955 + ], + [ + -49.916473519999954, + -8.821427344999961 + ], + [ + -49.858657498999946, + -8.773111875999916 + ], + [ + -49.76139858799996, + -8.801669858999901 + ], + [ + -49.688728492999985, + -8.731431856999905 + ], + [ + -49.681892547999894, + -8.553501653999831 + ], + [ + -49.7074204729999, + -8.489249169999937 + ], + [ + -49.72261853899994, + -8.32391009399987 + ], + [ + -49.76080347299995, + -8.28376379599996 + ] + ] + ], + [ + [ + [ + -49.70788550099991, + -7.869177596999975 + ], + [ + -49.669799473999944, + -7.815181544999973 + ], + [ + -49.714836612999875, + -7.763540471999931 + ], + [ + -49.587161619999904, + -7.655606033999902 + ], + [ + -49.57830848599997, + -7.564614774999825 + ], + [ + -49.619636464999985, + -7.53821060599995 + ], + [ + -49.73942559599993, + -7.561087837999935 + ], + [ + -49.93180854699983, + -7.626922154999818 + ], + [ + -49.943397533999985, + -7.719959603999939 + ], + [ + -49.98843349999993, + -7.763595456999951 + ], + [ + -49.85106651199982, + -7.899109708999958 + ], + [ + -49.70788550099991, + -7.869177596999975 + ] + ] + ], + [ + [ + [ + -48.09661062599997, + -6.134826544999896 + ], + [ + -48.0470355249999, + -6.208063423999931 + ], + [ + -48.00167048499992, + -6.495469495999942 + ], + [ + -47.95440660999992, + -6.520559549999973 + ], + [ + -47.887969465999845, + -6.352078769999935 + ], + [ + -47.925033570999915, + -6.226191971999924 + ], + [ + -47.898704503999966, + -6.129959173999964 + ], + [ + -47.94831849799988, + -6.025821737999877 + ], + [ + -47.95532258399987, + -5.935359376999941 + ], + [ + -48.01860846799991, + -5.902219678999927 + ], + [ + -48.07044249199993, + -5.772836118999976 + ], + [ + -48.138275557999975, + -5.80610087499997 + ], + [ + -48.149742504999836, + -5.878276436999954 + ], + [ + -48.10823850499992, + -6.0088398339999 + ], + [ + -48.09661062599997, + -6.134826544999896 + ] + ] + ], + [ + [ + [ + -50.80081962599991, + 1.671697374000189 + ], + [ + -50.80130057999992, + 1.729207120000069 + ], + [ + -50.72821055199995, + 1.908917975000122 + ], + [ + -50.707122521999906, + 2.045515671000032 + ], + [ + -50.759803620999946, + 2.043853875000025 + ], + [ + -50.75743858299995, + 2.146173109000188 + ], + [ + -50.79129761699994, + 2.186847132000025 + ], + [ + -50.86236559399998, + 2.556913354000187 + ], + [ + -50.94311550899994, + 2.509583932000112 + ], + [ + -50.897125514999914, + 2.050072409000109 + ], + [ + -50.911819493999985, + 1.807500466000079 + ], + [ + -50.98354360699989, + 1.742767362999984 + ], + [ + -50.97389955699998, + 1.684002511000187 + ], + [ + -50.89552356499996, + 1.631351586000108 + ], + [ + -50.92739860199998, + 1.545446131000062 + ], + [ + -50.89054152999995, + 1.464529081000023 + ], + [ + -51.093872586999964, + 1.188404715000047 + ], + [ + -51.20821348099997, + 1.090707096000074 + ], + [ + -51.25714853999989, + 1.009547977000182 + ], + [ + -51.16772452999999, + 0.918864670000062 + ], + [ + -51.152374582999926, + 0.855431431999989 + ], + [ + -51.18843855999995, + 0.799427746000049 + ], + [ + -51.33921860399994, + 0.71471503600003 + ], + [ + -51.37326053099997, + 0.632227218000082 + ], + [ + -51.32063257199991, + 0.520076515000142 + ], + [ + -51.227371493999954, + 0.465057702000024 + ], + [ + -51.22402158299997, + 0.34422167200006 + ], + [ + -51.28840650099994, + 0.313809948000142 + ], + [ + -51.423828552999964, + 0.38651072000016 + ], + [ + -51.473052619999976, + 0.270784297000091 + ], + [ + -51.54026760499994, + 0.185147734000111 + ], + [ + -51.36164053099998, + -0.053745223999897 + ], + [ + -51.167968610999935, + -0.091043519999914 + ], + [ + -51.05960049299995, + -0.041952388999903 + ], + [ + -51.010280536999915, + 0.063549788000159 + ], + [ + -50.91340249999985, + 0.146593661000054 + ], + [ + -50.86180853299987, + 0.270300494000139 + ], + [ + -50.86512759899995, + 0.393401146999963 + ], + [ + -50.766990599999986, + 0.367094209000072 + ], + [ + -50.731231556999944, + 0.504735956000104 + ], + [ + -50.744590466999966, + 0.649785126000154 + ], + [ + -50.89127360499998, + 0.737586400000055 + ], + [ + -51.03392756199992, + 0.774760476000097 + ], + [ + -51.040214492999894, + 0.82889566800003 + ], + [ + -50.978828618999955, + 0.89611149100017 + ], + [ + -50.85977156299998, + 1.111082329000055 + ], + [ + -50.75856058499994, + 1.260617326000045 + ], + [ + -50.73908255099985, + 1.159204009000177 + ], + [ + -50.68118254299992, + 1.117161891000023 + ], + [ + -50.650360607999914, + 1.213424864000103 + ], + [ + -50.58529658799995, + 1.298932346000186 + ], + [ + -50.66172060199989, + 1.322791602000052 + ], + [ + -50.695968554999865, + 1.431278407000093 + ], + [ + -50.804511518999846, + 1.548659585000053 + ], + [ + -50.80081962599991, + 1.671697374000189 + ] + ] + ], + [ + [ + [ + -55.52952562799993, + 1.957222044000105 + ], + [ + -55.57616454899983, + 1.99102558900006 + ], + [ + -55.76071947199995, + 2.226342157000147 + ], + [ + -55.81796250699995, + 2.227987022000093 + ], + [ + -55.86441048799992, + 2.285938830000134 + ], + [ + -55.978759595999975, + 2.304171313000097 + ], + [ + -56.09531062999997, + 2.121175926000035 + ], + [ + -56.05704154299997, + 2.004868638000175 + ], + [ + -56.060172518999934, + 1.837750084000049 + ], + [ + -56.10404256199996, + 1.84597642000017 + ], + [ + -56.13298761999988, + 1.545801021000102 + ], + [ + -56.16423049399998, + 1.37803756400001 + ], + [ + -56.08538846899995, + 1.236919003000082 + ], + [ + -56.07735458199994, + 0.988213519000112 + ], + [ + -55.96451555699997, + 0.939980360000163 + ], + [ + -55.86006949999995, + 0.973542842000143 + ], + [ + -55.846824583999876, + 1.044812320000062 + ], + [ + -55.764877566999985, + 1.120031854999979 + ], + [ + -55.66728254199984, + 1.154814071000033 + ], + [ + -55.5954814829999, + 1.123061410000105 + ], + [ + -55.65668463099996, + 1.062619171000165 + ], + [ + -55.555107530999976, + 1.034035372000062 + ], + [ + -55.596038543999896, + 0.940007182000045 + ], + [ + -55.679260616999954, + 0.973015620000069 + ], + [ + -55.76859259399998, + 0.894277530000181 + ], + [ + -55.856468633999896, + 0.745571839000092 + ], + [ + -55.925414481999894, + 0.715140166000026 + ], + [ + -55.97305252599995, + 0.638458660000026 + ], + [ + -55.971679569999935, + 0.541745914000103 + ], + [ + -55.90375547699995, + 0.465124925000168 + ], + [ + -55.81564356899986, + 0.465438911000035 + ], + [ + -55.672920544999954, + 0.553882239000188 + ], + [ + -55.633506488999956, + 0.487873243000138 + ], + [ + -55.389564607999944, + 0.510888440000087 + ], + [ + -55.32166247499998, + 0.551687185999981 + ], + [ + -55.28320362099993, + 0.625012914000024 + ], + [ + -55.188735548999944, + 0.932723644000134 + ], + [ + -55.145675532999974, + 1.008324219000031 + ], + [ + -55.044410575999905, + 1.068405701000017 + ], + [ + -55.04017654099988, + 1.152432269000144 + ], + [ + -55.08341961799988, + 1.178164543999969 + ], + [ + -55.180961501999946, + 1.150294548999966 + ], + [ + -55.260131594999905, + 1.248924236000164 + ], + [ + -55.35947458199996, + 1.645949341000062 + ], + [ + -55.301208619999954, + 1.759421032000091 + ], + [ + -55.13893849499988, + 1.853516109000054 + ], + [ + -55.230911609999964, + 1.936119933000043 + ], + [ + -55.400375586999985, + 1.933036901000037 + ], + [ + -55.52952562799993, + 1.957222044000105 + ] + ] + ], + [ + [ + [ + -61.41052656099998, + 5.956346070000052 + ], + [ + -61.53614849099995, + 5.95325633300007 + ], + [ + -61.66775157899997, + 5.976478396000118 + ], + [ + -61.727004593999936, + 5.905688697000187 + ], + [ + -61.83282863599999, + 5.887029910000138 + ], + [ + -61.927295534999985, + 5.805117929000119 + ], + [ + -62.00757958299994, + 5.800187526000116 + ], + [ + -62.0794026019999, + 5.719305178000127 + ], + [ + -61.945575626999926, + 5.689465602000155 + ], + [ + -61.946918575999916, + 5.614065019000122 + ], + [ + -61.87779955799988, + 5.48506954100003 + ], + [ + -61.66527556499983, + 5.380376385000091 + ], + [ + -61.55736157899992, + 5.298038435000137 + ], + [ + -61.5471765609999, + 5.226867360000085 + ], + [ + -61.68540151999997, + 5.119911425000055 + ], + [ + -61.75473360599989, + 5.120207474000154 + ], + [ + -61.88905360399997, + 5.285415121000142 + ], + [ + -61.90621152799997, + 5.190003079 + ], + [ + -62.01485457199988, + 5.067422271000112 + ], + [ + -61.90528448899994, + 4.92978639200004 + ], + [ + -61.79504754299995, + 4.894817930000045 + ], + [ + -61.65253054599992, + 4.771106068000165 + ], + [ + -61.60476258199998, + 4.769554075000087 + ], + [ + -61.45743152299991, + 4.882627961000139 + ], + [ + -61.42010858499998, + 4.835868340000047 + ], + [ + -61.55424451699997, + 4.732194927000023 + ], + [ + -61.771099606999826, + 4.70720377900011 + ], + [ + -61.73436356999997, + 4.670547370000179 + ], + [ + -61.660816559999944, + 4.70506605900016 + ], + [ + -61.535354556999835, + 4.690663938000171 + ], + [ + -61.29648255399991, + 4.694389861 + ], + [ + -61.26417953699996, + 4.717390977000093 + ], + [ + -61.322593522999966, + 4.814857926000172 + ], + [ + -61.236679517999846, + 4.843196806000151 + ], + [ + -61.14129262199992, + 4.71279953800007 + ], + [ + -61.09886560699994, + 4.609697938000011 + ], + [ + -61.04558553699991, + 4.614049654000041 + ], + [ + -61.00280748799992, + 4.511366311000188 + ], + [ + -60.93893453599998, + 4.551543455000171 + ], + [ + -60.77825160799989, + 4.55036227800008 + ], + [ + -60.74273647799998, + 4.449678018000156 + ], + [ + -60.88159158899998, + 4.448613014000159 + ], + [ + -60.92868061899998, + 4.376604251000117 + ], + [ + -61.02281157099998, + 4.327487807000182 + ], + [ + -61.12723549999998, + 4.304682660000026 + ], + [ + -61.12613663199994, + 4.222395840000161 + ], + [ + -61.270946582999954, + 4.108363233000091 + ], + [ + -61.47742051799992, + 4.032987795000111 + ], + [ + -61.71247858799984, + 3.904076136000128 + ], + [ + -61.90627254799995, + 3.917852296000092 + ], + [ + -62.05308560599997, + 3.857440567000026 + ], + [ + -62.00038153999998, + 3.782148278000079 + ], + [ + -61.79980460799999, + 3.707847903000129 + ], + [ + -61.60954261399996, + 3.66884070500015 + ], + [ + -61.520400570999925, + 3.496308616000022 + ], + [ + -61.56415561399996, + 3.399333852000098 + ], + [ + -61.52309451499991, + 3.311327221000113 + ], + [ + -61.63888547799996, + 3.293307470000116 + ], + [ + -61.621856635999904, + 3.222491955000066 + ], + [ + -61.72465548199989, + 2.917981436000161 + ], + [ + -61.78218048299988, + 2.839395394000064 + ], + [ + -61.8043595019999, + 2.715083555000035 + ], + [ + -61.77706953399996, + 2.659078696000051 + ], + [ + -61.79679852199996, + 2.587256179000121 + ], + [ + -61.869049521999955, + 2.56127211200004 + ], + [ + -61.972495617999925, + 2.465824363000081 + ], + [ + -62.04043563699986, + 2.370275360000107 + ], + [ + -62.049980612999946, + 2.280217175000189 + ], + [ + -61.96356151499987, + 2.147532989000069 + ], + [ + -61.90879851799997, + 2.106212218000053 + ], + [ + -61.92522453399988, + 2.025302209000188 + ], + [ + -61.85428647599997, + 2.016964898000026 + ], + [ + -61.76340451699997, + 2.104398374000084 + ], + [ + -61.64184563099997, + 2.144915153000056 + ], + [ + -61.52005758299998, + 2.006156601000043 + ], + [ + -61.5366135189999, + 1.908049945000073 + ], + [ + -61.49531554599997, + 1.797423072000072 + ], + [ + -61.41891449899998, + 1.74900668500004 + ], + [ + -61.39547752399994, + 1.649487175000047 + ], + [ + -61.34598557099997, + 1.622577242000091 + ], + [ + -61.28511853699996, + 1.531141910000031 + ], + [ + -61.21735353199995, + 1.532382935000101 + ], + [ + -61.17402663599995, + 1.666087031000075 + ], + [ + -61.0987395439999, + 1.81078516700012 + ], + [ + -60.98478656399993, + 1.916428327000176 + ], + [ + -61.02185050199995, + 2.041248780000046 + ], + [ + -61.0018925199999, + 2.132595264000031 + ], + [ + -60.89035051099995, + 2.225777049000101 + ], + [ + -60.832252521999976, + 2.307649970000057 + ], + [ + -60.68214453899998, + 2.411166475000073 + ], + [ + -60.59394847699997, + 2.415323061000095 + ], + [ + -60.42824562699997, + 2.574738980000177 + ], + [ + -60.39697257899985, + 2.646681861000104 + ], + [ + -60.296081621999974, + 2.670272895000153 + ], + [ + -60.18973555399998, + 2.631983858000183 + ], + [ + -60.105598512999904, + 2.513612778000038 + ], + [ + -60.0969165379999, + 2.421957672000076 + ], + [ + -60.019676628999946, + 2.307007079000073 + ], + [ + -59.95129354299996, + 2.252786223000044 + ], + [ + -59.88909948599991, + 2.315448326000137 + ], + [ + -59.74434653299983, + 2.296765734000132 + ], + [ + -59.711742605999916, + 2.243496895000021 + ], + [ + -59.7295834869999, + 2.062403362000111 + ], + [ + -59.66175058799996, + 2.001531970000144 + ], + [ + -59.54829750499988, + 2.06218627100003 + ], + [ + -59.47942759799997, + 2.204520710000054 + ], + [ + -59.28044859199997, + 2.405350607000116 + ], + [ + -59.29389551199995, + 2.477918443000135 + ], + [ + -59.168418588999884, + 2.618562923000184 + ], + [ + -59.09305555599997, + 2.836678484000174 + ], + [ + -59.12375259999993, + 2.980944952000073 + ], + [ + -59.30876551099993, + 2.957212766000055 + ], + [ + -59.339973515999986, + 3.032625084000074 + ], + [ + -59.42726550499998, + 3.001355221000154 + ], + [ + -59.49993157699993, + 3.043130124000072 + ], + [ + -59.610595497999896, + 3.036863645000039 + ], + [ + -59.69415251099997, + 3.10154478000004 + ], + [ + -59.77544356099992, + 3.103869585000098 + ], + [ + -59.83134850799996, + 2.984697697000172 + ], + [ + -59.87921856299994, + 3.048054995000143 + ], + [ + -59.85633060299995, + 3.128786804000015 + ], + [ + -59.75123260099997, + 3.271256359 + ], + [ + -59.58114249599993, + 3.403871311000103 + ], + [ + -59.40563550099995, + 3.590018461000057 + ], + [ + -59.382690543999956, + 3.678038 + ], + [ + -59.40625760599994, + 3.767513307 + ], + [ + -59.37163548499984, + 3.807327515000168 + ], + [ + -59.28630050199996, + 3.800456869000129 + ], + [ + -59.11867149099987, + 3.838394201000085 + ], + [ + -59.090599490999864, + 3.867154858000049 + ], + [ + -59.09920150299996, + 3.972042139000166 + ], + [ + -59.31208055399992, + 4.011381260000178 + ], + [ + -59.38500562599995, + 3.952840540000125 + ], + [ + -59.502494594999916, + 3.956078469000033 + ], + [ + -59.61797358399991, + 4.071053035000148 + ], + [ + -59.63269857599988, + 4.137567963000151 + ], + [ + -59.710540472999924, + 4.196222510000155 + ], + [ + -59.66894561399994, + 4.316459737 + ], + [ + -59.54691348499995, + 4.433513015000187 + ], + [ + -59.50572548399998, + 4.546392776000062 + ], + [ + -59.519454537999934, + 4.653169841000079 + ], + [ + -59.61556261399994, + 4.506732795000175 + ], + [ + -59.74816147199988, + 4.513106227000094 + ], + [ + -60.09128155199994, + 4.552658249000046 + ], + [ + -60.05573255899992, + 4.608193219000157 + ], + [ + -59.81720354399988, + 4.561652534000018 + ], + [ + -59.74337054399996, + 4.624908913000127 + ], + [ + -59.820758476999856, + 4.731397975000164 + ], + [ + -59.87022763099998, + 4.741689444000031 + ], + [ + -59.959712493999916, + 4.679811887000142 + ], + [ + -59.96910056099989, + 4.776400581000075 + ], + [ + -59.946807547999924, + 4.879755147000139 + ], + [ + -60.07091553899994, + 4.831495501000177 + ], + [ + -60.09717553899992, + 5.027346213000158 + ], + [ + -60.16156062499988, + 4.909426917000076 + ], + [ + -60.37512950699988, + 4.94614015600007 + ], + [ + -60.4084314779999, + 5.01022852300008 + ], + [ + -60.57641252999997, + 4.971968152000159 + ], + [ + -60.63613560099992, + 5.108267286000057 + ], + [ + -60.839187540999944, + 5.117505652000034 + ], + [ + -60.885059517999935, + 5.150342260000059 + ], + [ + -60.95434147999998, + 5.292204631000061 + ], + [ + -61.05132663799992, + 5.359155920000148 + ], + [ + -61.0997046359999, + 5.423226015000068 + ], + [ + -61.214588509999885, + 5.431083546000139 + ], + [ + -61.270473507999895, + 5.493638863000115 + ], + [ + -61.04672262599996, + 5.552365662000057 + ], + [ + -61.043743529999915, + 5.635785548000058 + ], + [ + -61.11495953199994, + 5.707887182000036 + ], + [ + -61.177532618999976, + 5.699071934000074 + ], + [ + -61.16516159999992, + 5.845274957000015 + ], + [ + -61.26292459799987, + 5.887547912000173 + ], + [ + -61.27476152199995, + 5.806436067000107 + ], + [ + -61.41052656099998, + 5.956346070000052 + ] + ], + [ + [ + -60.37720452999997, + 2.972818529000108 + ], + [ + -60.30751755499995, + 2.925613997000085 + ], + [ + -60.20553560999997, + 2.929760692000059 + ], + [ + -60.138961504999884, + 2.961537325 + ], + [ + -60.11402852799989, + 2.899592043000155 + ], + [ + -60.22089360299998, + 2.82563432000012 + ], + [ + -60.22353356699983, + 2.750082024000108 + ], + [ + -60.310394558999974, + 2.793966820000094 + ], + [ + -60.527893547999895, + 2.826937371000042 + ], + [ + -60.517333522999934, + 2.885266030000082 + ], + [ + -60.42328655799997, + 2.910055173000046 + ], + [ + -60.37720452999997, + 2.972818529000108 + ] + ], + [ + [ + -61.67489648099996, + 2.428149216000065 + ], + [ + -61.644821541999875, + 2.50223266800009 + ], + [ + -61.55427552999993, + 2.519000330000097 + ], + [ + -61.4257816249999, + 2.573309363000078 + ], + [ + -61.32160948799998, + 2.561469254000031 + ], + [ + -61.303817556999945, + 2.439157338000143 + ], + [ + -61.23426050099988, + 2.374877863000165 + ], + [ + -61.29795055999989, + 2.22777797700013 + ], + [ + -61.370407586999875, + 2.402898901000128 + ], + [ + -61.442550627999935, + 2.402070936000086 + ], + [ + -61.50865148999992, + 2.475418624000156 + ], + [ + -61.54779061899984, + 2.428762101000075 + ], + [ + -61.610671488999856, + 2.454146192000053 + ], + [ + -61.67489648099996, + 2.428149216000065 + ] + ], + [ + [ + -61.87137549999994, + 2.276046340000164 + ], + [ + -61.7666545159999, + 2.391999912000074 + ], + [ + -61.70171354199988, + 2.318683237000187 + ], + [ + -61.74691060799984, + 2.201332065999964 + ], + [ + -61.84657260999995, + 2.190366693000158 + ], + [ + -61.87137549999994, + 2.276046340000164 + ] + ], + [ + [ + -61.24400362499995, + 1.905696139000042 + ], + [ + -61.187881586999936, + 1.908806663000178 + ], + [ + -61.17395052899997, + 1.748713821000138 + ], + [ + -61.201881543999946, + 1.67573007500016 + ], + [ + -61.29589062399998, + 1.650023112999975 + ], + [ + -61.35405751099995, + 1.684643559000108 + ], + [ + -61.38450661899992, + 1.760235753000075 + ], + [ + -61.355544628999894, + 1.81947736799998 + ], + [ + -61.24400362499995, + 1.905696139000042 + ] + ] + ], + [ + [ + [ + -60.132015589999924, + 5.382545956000115 + ], + [ + -60.120098534999954, + 5.552365662000057 + ], + [ + -60.182666592999965, + 5.513635570000076 + ], + [ + -60.132015589999924, + 5.382545956000115 + ] + ] + ], + [ + [ + [ + -60.36215549399998, + 5.727940717000081 + ], + [ + -60.306858569999974, + 5.636601442000085 + ], + [ + -60.24643359699991, + 5.678987218000032 + ], + [ + -60.36215549399998, + 5.727940717000081 + ] + ] + ], + [ + [ + [ + -60.86658462999998, + 6.085703479000131 + ], + [ + -60.91264754699995, + 5.999258900000086 + ], + [ + -60.845447481999884, + 5.974736636000046 + ], + [ + -60.8243105009999, + 6.059283553000114 + ], + [ + -60.86658462999998, + 6.085703479000131 + ] + ] + ], + [ + [ + [ + -62.81328952299998, + 6.500806170000089 + ], + [ + -62.873954552999976, + 6.507819644000051 + ], + [ + -62.97554053799996, + 6.380075919000092 + ], + [ + -62.896263491999946, + 6.217426764000038 + ], + [ + -62.89157851099998, + 6.012721745000135 + ], + [ + -62.81933253999995, + 6.096248752000179 + ], + [ + -62.69288247799989, + 6.162465954000027 + ], + [ + -62.77344849299982, + 6.240616305000174 + ], + [ + -62.871028598999885, + 6.280708122000135 + ], + [ + -62.88889663699996, + 6.3284207640001 + ], + [ + -62.81328952299998, + 6.500806170000089 + ] + ] + ], + [ + [ + [ + -60.89564854399998, + 6.236302475000116 + ], + [ + -61.04672262599996, + 6.297186943000156 + ], + [ + -61.052684505999935, + 6.228663041000061 + ], + [ + -60.972236507999924, + 6.175036965000174 + ], + [ + -60.89564854399998, + 6.236302475000116 + ] + ] + ], + [ + [ + [ + -62.16754954599992, + 8.663468954999985 + ], + [ + -62.122764533999884, + 8.776803015000098 + ], + [ + -62.13786352699998, + 8.87871254100014 + ], + [ + -62.33147861799995, + 8.993563558000062 + ], + [ + -62.36506255699993, + 9.074711612000158 + ], + [ + -62.46248256799993, + 9.133907462000082 + ], + [ + -62.59031648199982, + 9.172623641000087 + ], + [ + -62.620136610999964, + 9.351664110000115 + ], + [ + -62.6965785619999, + 9.439812730000028 + ], + [ + -62.74518555399982, + 9.542591459000107 + ], + [ + -62.87585053999999, + 9.615592304000188 + ], + [ + -62.9058684819999, + 9.700183477 + ], + [ + -62.89183851699988, + 9.867461454000079 + ], + [ + -63.01057454599993, + 9.898830391000047 + ], + [ + -63.03554959999997, + 9.94904989400004 + ], + [ + -63.1750945419999, + 9.964383747 + ], + [ + -63.25400161099998, + 9.828199446000099 + ], + [ + -63.33683358999997, + 9.816074017000062 + ], + [ + -63.48431049399994, + 9.754715636000185 + ], + [ + -63.68902959399992, + 9.795064609000065 + ], + [ + -63.74668149799993, + 9.78579942100015 + ], + [ + -63.91617162699998, + 9.703511092000099 + ], + [ + -64.04492151599999, + 9.571750424000186 + ], + [ + -64.1196745129999, + 9.444614555000044 + ], + [ + -64.1794125049999, + 9.395126793000088 + ], + [ + -64.37245159099984, + 9.319003186000145 + ], + [ + -64.47920250399994, + 9.250381215000175 + ], + [ + -64.58878348299993, + 9.106103348000147 + ], + [ + -64.74464463699996, + 9.027779157000168 + ], + [ + -64.84074349299988, + 8.892574700000182 + ], + [ + -64.92398853199995, + 8.854058346000102 + ], + [ + -65.05043054699996, + 8.83414177100002 + ], + [ + -65.25050355899992, + 8.748158867000086 + ], + [ + -65.33690656299984, + 8.72852241400011 + ], + [ + -65.50234957399994, + 8.75885015200015 + ], + [ + -65.6196665469999, + 8.808342776000131 + ], + [ + -65.91136951799996, + 8.86447856 + ], + [ + -66.08348050099988, + 8.863941616000034 + ], + [ + -66.28461449399998, + 8.9123253140001 + ], + [ + -66.39904054799996, + 8.999416138000072 + ], + [ + -66.51097164499993, + 9.026095065000106 + ], + [ + -66.69491552799997, + 9.038503131000027 + ], + [ + -66.87793756899993, + 9.035427308000124 + ], + [ + -67.05693864299991, + 9.059419836000018 + ], + [ + -67.16133155899996, + 9.114195740000014 + ], + [ + -67.27040861799998, + 9.256564713000046 + ], + [ + -67.55944061199995, + 9.377705007000145 + ], + [ + -67.73382560499994, + 9.49123000700007 + ], + [ + -68.10498851599988, + 9.493480883000132 + ], + [ + -68.33287050199988, + 9.561193250000144 + ], + [ + -68.45900758399995, + 9.630025271000022 + ], + [ + -68.57949861599997, + 9.778019003000168 + ], + [ + -68.80316953499988, + 9.816965181000057 + ], + [ + -69.02793160999994, + 9.872327316000167 + ], + [ + -69.08636453899999, + 9.902430083000127 + ], + [ + -69.21739162299991, + 9.87614896100007 + ], + [ + -69.22487649499982, + 9.755318295 + ], + [ + -69.34281154899992, + 9.628983400000095 + ], + [ + -69.32556963899998, + 9.560876077999978 + ], + [ + -69.36638648999991, + 9.488646201000108 + ], + [ + -69.47757763199996, + 9.477271120000182 + ], + [ + -69.54727952799993, + 9.390229247000093 + ], + [ + -69.55050655999986, + 9.328160583000113 + ], + [ + -69.62213863999989, + 9.297946671999966 + ], + [ + -69.65005456899996, + 9.182620904000146 + ], + [ + -69.53444649899996, + 9.134411382000053 + ], + [ + -69.26403859099992, + 9.15229115500017 + ], + [ + -69.20797757199995, + 9.136418345000095 + ], + [ + -69.05255864699984, + 9.007217510000032 + ], + [ + -68.94542652499996, + 8.961234725000054 + ], + [ + -68.63302662299992, + 8.888255840000056 + ], + [ + -68.38848157999996, + 8.74475514300002 + ], + [ + -68.3654405669999, + 8.67230549300018 + ], + [ + -68.4665834839999, + 8.498303720000138 + ], + [ + -68.60301957699994, + 8.36135666600012 + ], + [ + -68.89927660399997, + 8.216555097000082 + ], + [ + -69.07505064599991, + 8.051484746000028 + ], + [ + -69.2070005779999, + 7.966388983000058 + ], + [ + -69.35731458899988, + 7.950020299000187 + ], + [ + -69.55039960699997, + 7.807422501000133 + ], + [ + -69.69873850699986, + 7.728249055000163 + ], + [ + -69.88488062699997, + 7.675331921000122 + ], + [ + -70.04939257599995, + 7.481523879000065 + ], + [ + -70.13774152399992, + 7.437250164000147 + ], + [ + -70.24964864899988, + 7.420303464000085 + ], + [ + -70.42767356699994, + 7.290326800000173 + ], + [ + -70.51578564199991, + 7.263710737000167 + ], + [ + -70.6524425149999, + 7.263350651000053 + ], + [ + -70.77375061499993, + 7.241596427000104 + ], + [ + -70.89297463799994, + 7.160751294000079 + ], + [ + -70.95815248499986, + 7.071261569000114 + ], + [ + -70.90715748899999, + 6.986169829000175 + ], + [ + -70.90393062299995, + 6.864103671000066 + ], + [ + -70.83409159999997, + 6.778768017000175 + ], + [ + -70.80215453699998, + 6.68919849700012 + ], + [ + -70.72747060699993, + 6.617847714000163 + ], + [ + -70.70490249999995, + 6.537771537000026 + ], + [ + -70.73889161999989, + 6.467822543000125 + ], + [ + -70.84313952899993, + 6.441016378000029 + ], + [ + -70.93356350099998, + 6.385866641000121 + ], + [ + -71.06636050799995, + 6.335922065000034 + ], + [ + -71.10008962099994, + 6.280054165000138 + ], + [ + -71.25093856499984, + 6.291254567000124 + ], + [ + -71.44052162499997, + 6.213756999000054 + ], + [ + -71.63869462699995, + 6.201909012000044 + ], + [ + -71.6862416429999, + 6.164935766000099 + ], + [ + -71.73956261699988, + 6.029629553 + ], + [ + -71.77274355399999, + 6.011248039000066 + ], + [ + -71.7646635669999, + 5.88935974400016 + ], + [ + -71.68561551499988, + 5.799475567000059 + ], + [ + -71.86906452999995, + 5.815554404000068 + ], + [ + -71.95424662699997, + 5.774318123000057 + ], + [ + -71.97357160799993, + 5.727698648000057 + ], + [ + -71.90003951799997, + 5.567710412000167 + ], + [ + -72.06040963399994, + 5.527320535000058 + ], + [ + -72.06091355399997, + 5.480521017000115 + ], + [ + -72.13218655299988, + 5.411083822000023 + ], + [ + -72.10536161299996, + 5.284451202000071 + ], + [ + -72.17553758799994, + 5.313283273000081 + ], + [ + -72.25101461499997, + 5.286014092000073 + ], + [ + -72.33660155799993, + 5.188685444000157 + ], + [ + -72.38321650599988, + 5.221905944000127 + ], + [ + -72.54792760899994, + 5.186157462000097 + ], + [ + -72.58167264899993, + 5.097669040000142 + ], + [ + -72.46136450999995, + 4.932827179000185 + ], + [ + -72.5414125239999, + 4.905618180000147 + ], + [ + -72.65819556899999, + 4.953541544000188 + ], + [ + -72.70688654799994, + 4.776479706000146 + ], + [ + -72.77758052499996, + 4.739823464000153 + ], + [ + -72.79254155199999, + 4.65123194500012 + ], + [ + -72.87687657299995, + 4.652079020000144 + ], + [ + -72.97916462599994, + 4.732451078000167 + ], + [ + -73.07802548599994, + 4.682026554000174 + ], + [ + -73.06583350499989, + 4.641901713000152 + ], + [ + -73.14516452999993, + 4.514637936000099 + ], + [ + -73.14569862499991, + 4.45864833100012 + ], + [ + -73.2641905729999, + 4.301170978000073 + ], + [ + -73.25073962999994, + 4.240410394000151 + ], + [ + -73.3264156429999, + 4.152545921000069 + ], + [ + -73.34346057799996, + 4.082779150000079 + ], + [ + -73.53560648899997, + 4.024030390000178 + ], + [ + -73.60099757099994, + 4.024638246000166 + ], + [ + -73.69575465099996, + 3.876457262000031 + ], + [ + -73.84725956299997, + 3.816586836000056 + ], + [ + -73.7551265219999, + 3.678252073000067 + ], + [ + -73.73984564199998, + 3.51909398100014 + ], + [ + -73.54473153199996, + 3.364894288000187 + ], + [ + -73.49871857099998, + 3.383640917000093 + ], + [ + -73.39117456199989, + 3.27849966499997 + ], + [ + -73.33213763299995, + 3.191320328000074 + ], + [ + -73.24994653499988, + 3.147548353000104 + ], + [ + -73.26447253999999, + 3.030872093000028 + ], + [ + -73.22109250299991, + 2.974936468000124 + ], + [ + -73.22560163199995, + 2.909659212000065 + ], + [ + -73.11252556699998, + 2.84120638800016 + ], + [ + -72.96511052099999, + 2.860963707000053 + ], + [ + -72.83000949699993, + 2.77594405100001 + ], + [ + -72.77306351699997, + 2.669986066000149 + ], + [ + -72.65756256799995, + 2.586380270000063 + ], + [ + -72.60460654199989, + 2.613210239000182 + ], + [ + -72.53401951799998, + 2.710882881000089 + ], + [ + -72.43929261199997, + 2.726443716000176 + ], + [ + -72.33890557499996, + 2.806123764000176 + ], + [ + -72.25114453399988, + 2.82055270800015 + ], + [ + -72.21707964199999, + 2.873429776000023 + ], + [ + -72.12791463199994, + 2.891762340000071 + ], + [ + -72.09847252599997, + 2.842705072000172 + ], + [ + -71.92024258699985, + 2.837623460000032 + ], + [ + -71.77953356699993, + 2.879066439000042 + ], + [ + -71.87220757599994, + 3.077928768000049 + ], + [ + -72.08940850399989, + 3.206403227000067 + ], + [ + -71.94627359299983, + 3.216432175000136 + ], + [ + -71.87302363799995, + 3.245593319000136 + ], + [ + -71.89021257499991, + 3.340079999000068 + ], + [ + -71.96694956899995, + 3.40407130300008 + ], + [ + -71.82518761399996, + 3.411297845000092 + ], + [ + -71.76766948599993, + 3.476971900000024 + ], + [ + -71.60537756699995, + 3.516622996000024 + ], + [ + -71.55606850699985, + 3.498782283000139 + ], + [ + -71.39719355599993, + 3.517004038000096 + ], + [ + -71.32460057499998, + 3.612302756000076 + ], + [ + -71.11428051899992, + 3.641504804000078 + ], + [ + -71.09677156099991, + 3.761509685000135 + ], + [ + -71.00148759499984, + 3.79231753800002 + ], + [ + -70.95195054699997, + 3.860481522000157 + ], + [ + -70.80308559899993, + 3.934560950000048 + ], + [ + -70.71000657599984, + 3.92393772600019 + ], + [ + -70.6181186209999, + 3.864200237000091 + ], + [ + -70.58045956899997, + 3.961462165000171 + ], + [ + -70.48102555399993, + 4.001813988000151 + ], + [ + -70.4161756069999, + 3.960227008 + ], + [ + -70.39255557199994, + 4.040807272000052 + ], + [ + -70.24266853499995, + 4.089165489000095 + ], + [ + -70.29196150199994, + 4.183826681000085 + ], + [ + -70.25897955099992, + 4.209203563000131 + ], + [ + -70.1364595959999, + 4.207337919000111 + ], + [ + -70.11927049199988, + 4.260995678000029 + ], + [ + -69.89266959499997, + 4.337100174000113 + ], + [ + -69.80369552499997, + 4.333272494000141 + ], + [ + -69.71511054299992, + 4.386565473000076 + ], + [ + -69.59991452699995, + 4.423879860999989 + ], + [ + -69.42135651999996, + 4.413369625000087 + ], + [ + -69.20987657599994, + 4.310481261000064 + ], + [ + -69.07099950499992, + 4.36957686400018 + ], + [ + -68.98334457899995, + 4.378194298000153 + ], + [ + -68.8413395479999, + 4.526772082000093 + ], + [ + -68.80101052399993, + 4.641433835000157 + ], + [ + -68.71525560799995, + 4.693231817000139 + ], + [ + -68.65752457899998, + 4.680231821000064 + ], + [ + -68.59286456599995, + 4.793844328000034 + ], + [ + -68.53730059499992, + 4.800606847000097 + ], + [ + -68.43000049899996, + 4.86692513600002 + ], + [ + -68.29511254299985, + 4.876090244000011 + ], + [ + -68.15420554199989, + 4.845872477000114 + ], + [ + -68.05022451299993, + 4.854146086000185 + ], + [ + -67.93350248799999, + 4.92134497700016 + ], + [ + -67.80966154499998, + 4.898234561000038 + ], + [ + -67.78979458999993, + 5.019837872000153 + ], + [ + -67.71595756699998, + 5.06091774700019 + ], + [ + -67.58723449999997, + 5.191879116999985 + ], + [ + -67.45095062199994, + 5.516555322000102 + ], + [ + -67.43252552199988, + 5.598608119000176 + ], + [ + -67.3369595879999, + 5.776620967000042 + ], + [ + -67.18511152199994, + 5.955510059000062 + ], + [ + -67.20185856399996, + 6.061395289000018 + ], + [ + -67.03772748899996, + 6.102889063000077 + ], + [ + -67.02072161299992, + 6.244601732000149 + ], + [ + -66.86766051699993, + 6.357970493000039 + ], + [ + -66.88466656099996, + 6.488346136000132 + ], + [ + -66.85632348999991, + 6.53936141600019 + ], + [ + -66.61822563999993, + 6.567704319000086 + ], + [ + -66.56720750999995, + 6.675404566000054 + ], + [ + -66.58421355299998, + 6.794442847000028 + ], + [ + -66.55586964399993, + 6.987170796000157 + ], + [ + -66.42548360799998, + 7.145888336000041 + ], + [ + -66.29510461299992, + 7.100540563000095 + ], + [ + -66.23841059299997, + 6.947491537000019 + ], + [ + -66.18172461999995, + 6.856796159999988 + ], + [ + -66.09101851399998, + 6.845458965000148 + ], + [ + -65.87581650199996, + 6.913594953000143 + ], + [ + -65.85292854199997, + 7.077866342000107 + ], + [ + -65.67719255399999, + 7.094871044000058 + ], + [ + -65.63184360799988, + 7.145888336000041 + ], + [ + -65.64318063499991, + 7.225246351000123 + ], + [ + -65.76222964399989, + 7.344284967000078 + ], + [ + -65.73954754399989, + 7.485995624000168 + ], + [ + -65.63751262499989, + 7.48032794900007 + ], + [ + -65.54680651799987, + 7.440649025000084 + ], + [ + -65.45610862599989, + 7.434980177 + ], + [ + -65.36540251999992, + 7.48032794900007 + ], + [ + -65.3030475299999, + 7.434980177 + ], + [ + -65.16709155199999, + 7.41518865900008 + ], + [ + -65.09264348799991, + 7.338396343999989 + ], + [ + -64.97299953099997, + 7.289425913000116 + ], + [ + -64.9375305019999, + 7.368884008000123 + ], + [ + -64.95365158399989, + 7.45565984000018 + ], + [ + -64.92041750599998, + 7.529115655 + ], + [ + -64.75666847699995, + 7.526108731000079 + ], + [ + -64.81264450299994, + 7.429893702000072 + ], + [ + -64.67239363799996, + 7.431257438000102 + ], + [ + -64.60417148399995, + 7.458598703000064 + ], + [ + -64.53266949099998, + 7.438136131000022 + ], + [ + -64.44065848999998, + 7.350258581000162 + ], + [ + -64.3426435319999, + 7.387090676000071 + ], + [ + -64.35997764299998, + 7.543767557000137 + ], + [ + -64.15263349799994, + 7.592239768000184 + ], + [ + -64.07044256699987, + 7.561763 + ], + [ + -64.02415451199988, + 7.491379321000181 + ], + [ + -64.04554747599991, + 7.428616636000072 + ], + [ + -63.93370857999997, + 7.335873391000064 + ], + [ + -63.873256617999914, + 7.358998895000184 + ], + [ + -63.82233454399994, + 7.455626816000063 + ], + [ + -63.719181478999985, + 7.315421883000056 + ], + [ + -63.67744060699994, + 7.367804252000155 + ], + [ + -63.600742504999914, + 7.334972672000049 + ], + [ + -63.654346619999956, + 7.273737840000024 + ], + [ + -63.632411514999944, + 7.201737292000189 + ], + [ + -63.53612155199994, + 7.18565543700015 + ], + [ + -63.54944961599995, + 7.057657573000029 + ], + [ + -63.59310960899995, + 6.927984166000101 + ], + [ + -63.64965459799987, + 6.840962409000042 + ], + [ + -63.80630163999996, + 6.740086875000145 + ], + [ + -63.74421654799988, + 6.697914670000046 + ], + [ + -63.751357593999955, + 6.6352902860001 + ], + [ + -63.70555451699994, + 6.525345365000021 + ], + [ + -63.646926623999946, + 6.54707477900007 + ], + [ + -63.61597057899996, + 6.618668470000046 + ], + [ + -63.49857749899991, + 6.721238154000162 + ], + [ + -63.48922748599989, + 6.805265056999986 + ], + [ + -63.27324662799998, + 6.947654649000015 + ], + [ + -63.18263657799997, + 7.031328505999966 + ], + [ + -62.94068958999992, + 7.154191617000095 + ], + [ + -62.95437254399991, + 7.270888161000187 + ], + [ + -62.923580616999914, + 7.357658964000052 + ], + [ + -62.88007753399995, + 7.374641705000045 + ], + [ + -62.69417161499996, + 7.322174344000189 + ], + [ + -62.57865155499991, + 7.398730960000023 + ], + [ + -62.48073952599998, + 7.360128608000139 + ], + [ + -62.42427047699988, + 7.222142868000105 + ], + [ + -62.36994954199997, + 7.280984498000066 + ], + [ + -62.24471250899995, + 7.255335372000047 + ], + [ + -62.22355658499998, + 7.095854744000064 + ], + [ + -62.123569531999976, + 7.061361536000163 + ], + [ + -62.06666948599991, + 7.194985669000118 + ], + [ + -62.130744608999976, + 7.358014021000031 + ], + [ + -62.10733747399996, + 7.404697534000036 + ], + [ + -62.011978572999965, + 7.370208852000189 + ], + [ + -61.938129479999986, + 7.489722386000153 + ], + [ + -61.88278964099993, + 7.650111780000032 + ], + [ + -61.879318526999896, + 7.736229465000179 + ], + [ + -61.932983493999984, + 7.865142130000038 + ], + [ + -62.06995351499995, + 7.948956133000081 + ], + [ + -62.20726048899991, + 7.931190354000137 + ], + [ + -62.319595592999974, + 7.95882649400005 + ], + [ + -62.43164453999992, + 7.952179813000157 + ], + [ + -62.67279055299997, + 7.830520847000116 + ], + [ + -62.81499456999984, + 7.71224112900012 + ], + [ + -62.94432063099998, + 7.728333209000027 + ], + [ + -63.00804153499996, + 7.896500002999971 + ], + [ + -62.973800621999885, + 8.029231295999978 + ], + [ + -62.882232520999935, + 8.11920197400002 + ], + [ + -62.81608153499997, + 8.144773987000121 + ], + [ + -62.68593555699994, + 8.297536184000137 + ], + [ + -62.652828547999945, + 8.380589278000173 + ], + [ + -62.492675523999935, + 8.491148425000063 + ], + [ + -62.29185451099994, + 8.560426196000094 + ], + [ + -62.16754954599992, + 8.663468954999985 + ] + ], + [ + [ + -62.222949567999876, + 7.697780334000072 + ], + [ + -62.25154862099998, + 7.691849802000036 + ], + [ + -62.39079248499996, + 7.826135100000045 + ], + [ + -62.294074541999976, + 7.87497058200006 + ], + [ + -62.222949567999876, + 7.697780334000072 + ] + ] + ], + [ + [ + [ + -60.885829479999984, + 6.598094921000154 + ], + [ + -60.90370958799991, + 6.642784881000182 + ], + [ + -60.99905055199986, + 6.624907958000108 + ], + [ + -61.00501259899994, + 6.541488073000039 + ], + [ + -60.95138149499991, + 6.496799285000122 + ], + [ + -60.885829479999984, + 6.598094921000154 + ] + ] + ], + [ + [ + [ + -14.971570476999943, + 10.874355176000051 + ], + [ + -14.904609463999975, + 10.926092641000082 + ], + [ + -14.95433057899993, + 10.9742481830001 + ], + [ + -15.077989466999952, + 10.889444110000113 + ], + [ + -15.014889493999931, + 10.776976823000041 + ], + [ + -14.952930465999827, + 10.772082211000054 + ], + [ + -14.971570476999943, + 10.874355176000051 + ] + ] + ], + [ + [ + [ + -16.08857944099998, + 11.13084828600006 + ], + [ + -16.118770552999933, + 11.207642110000165 + ], + [ + -16.246969582999895, + 11.103839112000173 + ], + [ + -16.16161951299989, + 11.016006154000081 + ], + [ + -16.063470443999904, + 11.036244930000066 + ], + [ + -16.08857944099998, + 11.13084828600006 + ] + ] + ], + [ + [ + [ + -15.679209467999954, + 11.245559492999973 + ], + [ + -15.708820552999953, + 11.306535156 + ], + [ + -15.783670445999974, + 11.23433109500013 + ], + [ + -15.73130953499998, + 11.17875488600015 + ], + [ + -15.679209467999954, + 11.245559492999973 + ] + ] + ], + [ + [ + [ + -15.911930495999854, + 11.486712547000138 + ], + [ + -16.02672049199998, + 11.515800769000123 + ], + [ + -16.033700437999983, + 11.43056754200012 + ], + [ + -15.952540480999971, + 11.429787522000083 + ], + [ + -15.911930495999854, + 11.486712547000138 + ] + ] + ], + [ + [ + [ + -16.270490543999927, + 11.529270655000175 + ], + [ + -16.394720574999894, + 11.56187860500006 + ], + [ + -16.412740493999877, + 11.500601696000103 + ], + [ + -16.28244045599996, + 11.49225231500003 + ], + [ + -16.270490543999927, + 11.529270655000175 + ] + ] + ], + [ + [ + [ + -16.09028046399993, + 11.75725423 + ], + [ + -16.040340581999885, + 11.773013885000069 + ], + [ + -15.99691947399998, + 11.886205285000074 + ], + [ + -16.10419056799998, + 11.861697941000045 + ], + [ + -16.149179510999943, + 11.808970573000067 + ], + [ + -16.09028046399993, + 11.75725423 + ] + ] + ], + [ + [ + [ + -16.187980597999854, + 11.871827136000093 + ], + [ + -16.295299468999872, + 11.970789583999988 + ], + [ + -16.33946958399997, + 11.853167678000034 + ], + [ + -16.235309516999962, + 11.840209591000189 + ], + [ + -16.187980597999854, + 11.871827136000093 + ] + ] + ], + [ + [ + [ + -83.80283355299991, + 13.730211915000098 + ], + [ + -83.88351456799995, + 13.672318613000073 + ], + [ + -83.8923034959999, + 13.760687844000017 + ], + [ + -83.9497986579999, + 13.838374676000115 + ], + [ + -83.96735354899988, + 13.991855538000038 + ], + [ + -84.03543052799995, + 14.000424860000123 + ], + [ + -84.05261963199996, + 13.873488480000049 + ], + [ + -84.11133553499997, + 13.868112663000147 + ], + [ + -84.25090763399993, + 13.936413271000049 + ], + [ + -84.32827762899984, + 13.90178159400017 + ], + [ + -84.18984965999994, + 13.686625851000088 + ], + [ + -84.20822865899999, + 13.451374495000096 + ], + [ + -84.28339354399992, + 13.263245863000122 + ], + [ + -84.22190859599988, + 13.195530479000126 + ], + [ + -84.14252459699998, + 13.221526784 + ], + [ + -84.0764155199999, + 13.18903383300011 + ], + [ + -84.01105461299994, + 13.225647494999976 + ], + [ + -83.94229165799999, + 13.203789168000185 + ], + [ + -83.89347863899997, + 13.133402806 + ], + [ + -83.85526252499989, + 12.99921390100019 + ], + [ + -83.72394559499992, + 12.97158647700013 + ], + [ + -83.59568755599997, + 12.8937318400001 + ], + [ + -83.5501865629999, + 13.046376523000163 + ], + [ + -83.57122765399993, + 13.224519626000188 + ], + [ + -83.60920756599995, + 13.344614697000054 + ], + [ + -83.54615050899992, + 13.493950538999968 + ], + [ + -83.67843655499985, + 13.548000069000068 + ], + [ + -83.63032560399995, + 13.594479901000057 + ], + [ + -83.67065462799997, + 13.69778618700019 + ], + [ + -83.77540561899991, + 13.677080371999978 + ], + [ + -83.80283355299991, + 13.730211915000098 + ] + ] + ], + [ + [ + [ + -83.53774262199994, + 13.528055498000185 + ], + [ + -83.51243564399994, + 13.67105797400012 + ], + [ + -83.60997065499993, + 13.66435530200016 + ], + [ + -83.53774262199994, + 13.528055498000185 + ] + ] + ], + [ + [ + [ + -16.069328768999924, + 17.590229972000145 + ], + [ + -16.10017949199994, + 17.45648353500013 + ], + [ + -16.175550460999887, + 17.25416946400003 + ], + [ + -16.353279439999937, + 16.84428156400014 + ], + [ + -16.4361804859999, + 16.623834157000147 + ], + [ + -16.448190579999903, + 16.486513773000127 + ], + [ + -16.5102295719999, + 16.30696519200012 + ], + [ + -16.50613048599996, + 15.999634498000034 + ], + [ + -16.53722000099998, + 15.775830269000096 + ], + [ + -16.612659445999896, + 15.633646909999982 + ], + [ + -16.75915952299988, + 15.422780186000182 + ], + [ + -16.865219431999947, + 15.24653156100004 + ], + [ + -17.128900527999974, + 14.919962890000079 + ], + [ + -17.29674947999996, + 14.827449645000058 + ], + [ + -17.45837051099994, + 14.76619285300012 + ], + [ + -17.423120583999946, + 14.71799707700012 + ], + [ + -17.346059545999935, + 14.735595720999981 + ], + [ + -17.23119947699996, + 14.687927838000064 + ], + [ + -17.15847054099993, + 14.621502093000117 + ], + [ + -17.06092044299993, + 14.451854384000114 + ], + [ + -17.01115959799995, + 14.433234489000029 + ], + [ + -16.93654054299992, + 14.331952097 + ], + [ + -16.873640562999924, + 14.180291281999985 + ], + [ + -16.796037549999937, + 14.084679416000029 + ], + [ + -16.703380471999935, + 14.07759704300014 + ], + [ + -16.45551854199988, + 14.195324057999983 + ], + [ + -16.414207493999925, + 14.164343202999987 + ], + [ + -16.503097577999938, + 14.046349811000027 + ], + [ + -16.531396838999967, + 13.868333665000137 + ], + [ + -16.62409956999994, + 13.781428529000095 + ], + [ + -16.648529464999967, + 13.705573646000119 + ], + [ + -16.54073953099993, + 13.550222782000048 + ], + [ + -16.55610288899993, + 13.497717255000055 + ], + [ + -16.36311744799991, + 13.42205325600014 + ], + [ + -16.147615531999918, + 13.50310894200004 + ], + [ + -15.99481947199996, + 13.411972006000155 + ], + [ + -16.145637569999963, + 13.333089412000106 + ], + [ + -16.214836550999962, + 13.255988476000141 + ], + [ + -16.361141497999938, + 13.230288387000087 + ], + [ + -16.53314753899997, + 13.24214928300006 + ], + [ + -16.628047446999915, + 13.30343524500006 + ], + [ + -16.732719479999957, + 13.450629343000116 + ], + [ + -16.824289592999833, + 13.328647506000095 + ], + [ + -16.794160506999958, + 13.22870437500012 + ], + [ + -16.78226055099998, + 13.07667458900005 + ], + [ + -16.748880459999896, + 13.037037239000142 + ], + [ + -16.791479470999832, + 12.792424805999985 + ], + [ + -16.772199584999953, + 12.572178565000115 + ], + [ + -16.67483296699993, + 12.558407014000124 + ], + [ + -16.513179498999932, + 12.443827320000139 + ], + [ + -16.39089054899989, + 12.334704831000067 + ], + [ + -16.304750567999918, + 12.33170478000011 + ], + [ + -16.20352953099996, + 12.420768704000068 + ], + [ + -16.071159498999975, + 12.42641844200017 + ], + [ + -16.018609491999882, + 12.388331074000064 + ], + [ + -15.996190582999873, + 12.299908198000026 + ], + [ + -16.03158953999997, + 12.239691097000048 + ], + [ + -16.152490446999877, + 12.13638816300005 + ], + [ + -16.023349457999927, + 12.009637862000034 + ], + [ + -15.881030441999883, + 12.130889635000187 + ], + [ + -15.685059533999947, + 12.170955803000084 + ], + [ + -15.24722947999993, + 12.104311458000154 + ], + [ + -15.241379581999979, + 11.99241808000005 + ], + [ + -15.206669450999982, + 11.969179588000031 + ], + [ + -14.963199470999939, + 12.033795345000158 + ], + [ + -14.880169510999963, + 12.03345604500015 + ], + [ + -14.840299479999885, + 11.991399175000026 + ], + [ + -14.84805944599998, + 11.913813430000062 + ], + [ + -14.904499493999936, + 11.875925886000118 + ], + [ + -15.038800548999859, + 11.85656838400007 + ], + [ + -15.28411052499996, + 11.784632376000104 + ], + [ + -15.284079511999892, + 11.747134926000115 + ], + [ + -15.12559046299998, + 11.77184427400016 + ], + [ + -15.026679478999881, + 11.719236599999988 + ], + [ + -14.945050470999945, + 11.643501914000126 + ], + [ + -14.925180498999907, + 11.58839559400019 + ], + [ + -15.005829494999944, + 11.559738538000147 + ], + [ + -15.150340546999928, + 11.558037849000016 + ], + [ + -15.169799469999873, + 11.520020554000155 + ], + [ + -15.09193946899984, + 11.44632535300019 + ], + [ + -15.188619524999979, + 11.357521603000066 + ], + [ + -15.123749461999978, + 11.338622757999985 + ], + [ + -15.072999551999942, + 11.427517703000092 + ], + [ + -14.995670460999975, + 11.439766849000023 + ], + [ + -14.999540552999974, + 11.321345141000165 + ], + [ + -15.086589466999953, + 11.16187624800017 + ], + [ + -14.991270463999967, + 11.205661969 + ], + [ + -14.949754562999942, + 11.327831561000039 + ], + [ + -14.885589584999934, + 11.387429575 + ], + [ + -14.802029553999887, + 11.313144622000095 + ], + [ + -14.75104059299997, + 11.088190267000073 + ], + [ + -14.68251953999993, + 11.121588966000104 + ], + [ + -14.62716058999996, + 11.197352653000166 + ], + [ + -14.569370552999885, + 11.12616749600005 + ], + [ + -14.60848051299996, + 10.94079131400008 + ], + [ + -14.362750436999875, + 11.006727052000087 + ], + [ + -14.284749450999925, + 11.00175608100011 + ], + [ + -14.223730536999938, + 10.947931019000066 + ], + [ + -14.227390578999916, + 10.886254293000036 + ], + [ + -14.367810591999955, + 10.767352637999977 + ], + [ + -14.497839558999942, + 10.557887201000028 + ], + [ + -14.552129480999952, + 10.417447072000073 + ], + [ + -14.46345045399994, + 10.338523407000082 + ], + [ + -14.471150572999875, + 10.254808310999977 + ], + [ + -14.317090521999944, + 10.19705247200011 + ], + [ + -14.238039451999953, + 10.114588123000033 + ], + [ + -14.137599440999907, + 10.046332944000085 + ], + [ + -14.078619508999907, + 10.065041520000136 + ], + [ + -14.032739485999912, + 9.995554536999975 + ], + [ + -13.878179537999927, + 9.905385878 + ], + [ + -13.82666050499995, + 9.845578149000175 + ], + [ + -13.717709509999963, + 9.874726888000112 + ], + [ + -13.69289957999996, + 9.93308706199997 + ], + [ + -13.594710444999976, + 10.015296266000178 + ], + [ + -13.550860518999968, + 9.999646079000115 + ], + [ + -13.453060472999937, + 9.846645164999984 + ], + [ + -13.451435556999968, + 9.740754403000096 + ], + [ + -13.372534522999956, + 9.732221122000055 + ], + [ + -13.173868497999877, + 9.638803638000127 + ], + [ + -12.904731453999943, + 9.46582680500012 + ], + [ + -12.638825465999957, + 9.3272286830001 + ], + [ + -12.469089578999899, + 9.221508241000095 + ], + [ + -12.239845532999936, + 9.060873760000106 + ], + [ + -11.997127577999947, + 8.852465449000022 + ], + [ + -11.825662504999912, + 8.68476636500003 + ], + [ + -11.754996522999875, + 8.648425115000123 + ], + [ + -11.636852591999968, + 8.634588102 + ], + [ + -11.519827476999922, + 8.70258126200008 + ], + [ + -11.407070426999894, + 8.93633058100005 + ], + [ + -11.33822952099996, + 9.165774285000055 + ], + [ + -11.225230569999951, + 9.330352618 + ], + [ + -11.119007548999832, + 9.384159743000055 + ], + [ + -10.980388471999902, + 9.39115209400012 + ], + [ + -10.744183590999967, + 9.3493661280001 + ], + [ + -10.570587502999956, + 9.304340219999972 + ], + [ + -10.482567460999917, + 9.195849056000043 + ], + [ + -10.200480543999959, + 8.78312732900008 + ], + [ + -10.09461459299996, + 8.637586979000105 + ], + [ + -9.898488451999867, + 8.410646950000057 + ], + [ + -9.66689847799995, + 8.558608496000147 + ], + [ + -9.5456904589999, + 8.622416740000176 + ], + [ + -9.437308426999948, + 8.651925901000084 + ], + [ + -9.394556529999875, + 8.706343060000108 + ], + [ + -9.357707503999904, + 8.84563201900005 + ], + [ + -9.451747428999909, + 8.85451432200017 + ], + [ + -9.603284526999914, + 8.914935103000118 + ], + [ + -9.676959443999976, + 8.924210348999964 + ], + [ + -9.721634484999981, + 9.027009195000062 + ], + [ + -9.714920580999944, + 9.09611111400011 + ], + [ + -9.625506460999873, + 9.14104800600012 + ], + [ + -9.487113527999952, + 9.14101196300004 + ], + [ + -9.536904547999939, + 9.206611252000187 + ], + [ + -9.534811585999876, + 9.27667625099997 + ], + [ + -9.415894507999951, + 9.286977443000183 + ], + [ + -9.359119519999979, + 9.24269283100017 + ], + [ + -9.296470492999958, + 9.127199089999976 + ], + [ + -9.214260450999973, + 9.11445390299997 + ], + [ + -9.23420351399983, + 9.279600027000129 + ], + [ + -9.091124425999965, + 9.334742053000014 + ], + [ + -9.114941435999981, + 9.13453241700006 + ], + [ + -9.046071528999846, + 8.965685515000075 + ], + [ + -9.086887541999943, + 8.76136204100004 + ], + [ + -9.037912583999969, + 8.70842378400016 + ], + [ + -9.012168574999919, + 8.55462575100006 + ], + [ + -8.940340525999886, + 8.525396881000177 + ], + [ + -8.889683487999946, + 8.71546726500003 + ], + [ + -8.904140426999902, + 8.859413879000101 + ], + [ + -8.936432546999924, + 8.921175598000161 + ], + [ + -8.973025589999963, + 9.152582007000092 + ], + [ + -8.94801952299997, + 9.280042927000181 + ], + [ + -8.862925435999898, + 9.375482294000165 + ], + [ + -8.912603466999883, + 9.111776053000085 + ], + [ + -8.907039559999873, + 9.001301898000122 + ], + [ + -8.867416458999969, + 8.929306882000049 + ], + [ + -8.86537747799997, + 8.669622613000058 + ], + [ + -8.825425470999903, + 8.549498038000081 + ], + [ + -8.852480577999927, + 8.49842492300013 + ], + [ + -8.73742856399997, + 8.454227986000149 + ], + [ + -8.719144447999952, + 8.399991875000126 + ], + [ + -8.592021486999897, + 8.315781744000049 + ], + [ + -8.162296564999963, + 7.957460579000099 + ], + [ + -7.96967657499988, + 7.83333867500005 + ], + [ + -7.560275588999957, + 7.667294514000105 + ], + [ + -7.532002423999927, + 7.812245113000188 + ], + [ + -7.416940518999979, + 7.787293863 + ], + [ + -7.358716465999976, + 7.816403878000131 + ], + [ + -7.240882497999962, + 7.751253356000063 + ], + [ + -7.282471489999978, + 7.670854141000177 + ], + [ + -7.475164570999937, + 7.587683365000032 + ], + [ + -7.463328485999966, + 7.490853105000156 + ], + [ + -7.392522525999937, + 7.522179127000015 + ], + [ + -7.192718573999912, + 7.655516264000084 + ], + [ + -6.867346502999908, + 7.839562070000113 + ], + [ + -6.887896582999929, + 7.944500480999977 + ], + [ + -6.75646046199995, + 7.972454463000076 + ], + [ + -6.64970049599998, + 7.973324337000122 + ], + [ + -6.700633465999886, + 7.819016517000023 + ], + [ + -6.564864571999976, + 7.800167796000039 + ], + [ + -6.514922510999952, + 7.734272793000116 + ], + [ + -6.558864469999946, + 7.631288037000104 + ], + [ + -6.461643445999812, + 7.618035913000028 + ], + [ + -6.454854439999963, + 7.451604005000036 + ], + [ + -6.367269585999964, + 7.122343067000145 + ], + [ + -6.258336528999962, + 7.133234009000091 + ], + [ + -6.256256474999873, + 7.189840186000083 + ], + [ + -6.363028510999868, + 7.523619809000024 + ], + [ + -6.275671477999936, + 7.567055837000055 + ], + [ + -6.204659490999916, + 7.541811556000027 + ], + [ + -6.124720441999955, + 7.428943697000079 + ], + [ + -6.069753429999935, + 7.261934779000114 + ], + [ + -6.121409422999875, + 7.136064075000149 + ], + [ + -6.09033452299991, + 7.064739108000026 + ], + [ + -5.929119510999953, + 7.087262623000129 + ], + [ + -5.852408500999957, + 7.048098180000181 + ], + [ + -5.700170507999871, + 6.884745281000164 + ], + [ + -5.566891541999951, + 6.929149920999976 + ], + [ + -5.553917528999932, + 7.051889147000054 + ], + [ + -5.410555468999974, + 6.935041394000109 + ], + [ + -5.323113442999841, + 6.994588278000151 + ], + [ + -5.267226432999962, + 6.975656576000119 + ], + [ + -5.159267519999958, + 6.826411593000159 + ], + [ + -5.02731155399988, + 6.683696783000187 + ], + [ + -5.020127424999941, + 6.566426246000105 + ], + [ + -4.964557585999898, + 6.301289717000145 + ], + [ + -4.794613492999929, + 6.1068300660001 + ], + [ + -4.746907555999883, + 6.452244608000058 + ], + [ + -4.719317514999886, + 6.520370706000108 + ], + [ + -4.55185245399997, + 6.55351828300013 + ], + [ + -4.505845528999885, + 6.59962411500004 + ], + [ + -4.531040523999877, + 6.722849826000129 + ], + [ + -4.45400144599995, + 6.796379737000052 + ], + [ + -4.2840845099999, + 6.88217136600008 + ], + [ + -4.279777552999974, + 6.947673592000115 + ], + [ + -4.408240445999979, + 7.11385353999998 + ], + [ + -4.260980464999818, + 7.24804881600005 + ], + [ + -4.22728253199989, + 7.317277804000071 + ], + [ + -4.233306437999943, + 7.509120960000075 + ], + [ + -4.325473509999824, + 7.745987677000073 + ], + [ + -4.268977470999971, + 7.98219993400005 + ], + [ + -4.212750490999838, + 8.036804010000026 + ], + [ + -4.032803434999948, + 8.069786464000174 + ], + [ + -3.948700423999981, + 8.050715790000027 + ], + [ + -3.855459462999931, + 7.994375822000109 + ], + [ + -3.714767540999958, + 7.985798452999973 + ], + [ + -3.688338561999956, + 7.927394860000163 + ], + [ + -3.532318486999941, + 7.893741351000187 + ], + [ + -3.412625579999883, + 7.79284033600004 + ], + [ + -3.358747544999972, + 7.616430108000088 + ], + [ + -3.301059430999885, + 7.584137652000038 + ], + [ + -3.220007432999978, + 7.722454478000031 + ], + [ + -3.146559497999874, + 7.805332557000042 + ], + [ + -3.01811756099994, + 7.873193786000115 + ], + [ + -2.928256517999955, + 7.942597789000104 + ], + [ + -2.777340517999903, + 8.02708670200019 + ], + [ + -2.667942432999951, + 8.054285475000086 + ], + [ + -2.526774418999935, + 8.018539340000132 + ], + [ + -2.389225543999942, + 7.953876813000079 + ], + [ + -2.277813454999944, + 7.853756991000125 + ], + [ + -2.104943574999936, + 7.657853138000178 + ], + [ + -1.625123537999968, + 7.295082524000179 + ], + [ + -1.401775490999967, + 7.169952445000092 + ], + [ + -0.988799455999924, + 6.999141830000156 + ], + [ + -0.700087482999947, + 6.850389703000076 + ], + [ + -0.69888853599997, + 6.798662297000078 + ], + [ + -0.603055553999923, + 6.705613281000069 + ], + [ + -0.559444511999914, + 6.726167719000102 + ], + [ + -0.417499495999891, + 6.674227579999979 + ], + [ + -0.371388467999907, + 6.612287159000061 + ], + [ + -0.277996463999955, + 6.602417636000155 + ], + [ + -0.162499537999963, + 6.508128601000124 + ], + [ + -0.035277502999975, + 6.432856260000051 + ], + [ + -0.008194483999944, + 6.330780019000031 + ], + [ + 0.074722571000109, + 6.470631486000116 + ], + [ + 0.11111143100004, + 6.432856260000051 + ], + [ + 0.06611150700013, + 6.275367508000045 + ], + [ + 0.090000434000046, + 6.197595349000096 + ], + [ + 0.117537501000072, + 5.986254880000047 + ], + [ + -0.151075506999916, + 5.746648287000028 + ], + [ + -0.417264467999928, + 5.53476685000004 + ], + [ + -0.551497461999816, + 5.451025100000038 + ], + [ + -0.822108546999914, + 5.334169635000023 + ], + [ + -1.25904542599983, + 5.203217317000053 + ], + [ + -1.36173245699996, + 5.148314175000166 + ], + [ + -1.328248429999974, + 5.093852256000162 + ], + [ + -1.246983531999945, + 5.100162991000161 + ], + [ + -1.092568422999932, + 5.192134932000101 + ], + [ + -0.809011487999953, + 5.213184574000081 + ], + [ + -0.724099455999863, + 5.297935170000187 + ], + [ + -0.495813461999944, + 5.378294320000066 + ], + [ + -0.466799503999937, + 5.428550535000056 + ], + [ + -0.33493557099996, + 5.50488016900016 + ], + [ + -0.212782574999892, + 5.5305331510001 + ], + [ + 0.023361454000167, + 5.63722120000017 + ], + [ + 0.069418503000179, + 5.688875683999981 + ], + [ + 0.395277562000103, + 5.82262269600011 + ], + [ + 0.549066542000048, + 5.894800437000072 + ], + [ + 0.44658654400007, + 5.998768726000037 + ], + [ + 0.526319566000041, + 6.050098160000118 + ], + [ + 0.7864054960001, + 6.006699348000041 + ], + [ + 1.003633581000031, + 6.062516285000072 + ], + [ + 1.106220532000066, + 6.069169840000029 + ], + [ + 1.434465584000122, + 6.182387391000134 + ], + [ + 1.870625459000109, + 6.278036306000047 + ], + [ + 2.327578490000178, + 6.338709048000169 + ], + [ + 2.580795449999982, + 6.352603058000113 + ], + [ + 2.844388535000121, + 6.38779732800009 + ], + [ + 2.915324582000039, + 6.450372928999968 + ], + [ + 2.772845471000153, + 6.475447057 + ], + [ + 2.578694442000085, + 6.484954315000095 + ], + [ + 2.565650524000148, + 6.61404601800001 + ], + [ + 2.635752572000058, + 6.840199321000171 + ], + [ + 2.762130549000176, + 7.031636457000161 + ], + [ + 2.828634581000131, + 7.07847503500011 + ], + [ + 2.929399474000036, + 7.099181521000105 + ], + [ + 3.09760650100003, + 7.068909775000066 + ], + [ + 3.227725490000068, + 6.98486996400004 + ], + [ + 3.303335453000045, + 7.003164641000183 + ], + [ + 3.332751575000145, + 7.065123167000081 + ], + [ + 3.362405575000025, + 7.234989643000176 + ], + [ + 3.441222455, + 7.381142206999982 + ], + [ + 3.645900484000151, + 7.607482929000128 + ], + [ + 3.729172513000094, + 7.679023646000132 + ], + [ + 3.845288526000047, + 7.732915931000093 + ], + [ + 3.989375453000093, + 7.76760242600011 + ], + [ + 4.41727647200014, + 7.956151661000149 + ], + [ + 4.643377473000044, + 8.085962196000082 + ], + [ + 4.933845454000163, + 8.175941759000068 + ], + [ + 5.078172439000184, + 8.178027679000138 + ], + [ + 5.188559422000026, + 8.150439819000155 + ], + [ + 5.404201483000179, + 8.027842415000066 + ], + [ + 5.53667444600012, + 7.899911606000103 + ], + [ + 5.548971536000067, + 7.794262410000101 + ], + [ + 5.524579527000071, + 7.631909974000166 + ], + [ + 5.518802552000011, + 7.409391232000075 + ], + [ + 5.619608516000028, + 7.238256406000062 + ], + [ + 5.796910579000155, + 7.136524912000027 + ], + [ + 5.899371466000048, + 7.008116334000022 + ], + [ + 5.954064558000084, + 6.991041392000113 + ], + [ + 6.101597454000057, + 7.013552837000134 + ], + [ + 6.196564584000157, + 7.004337437000061 + ], + [ + 6.357419509000067, + 6.918593585000167 + ], + [ + 6.557504423000069, + 6.675920556000108 + ], + [ + 6.62358650900012, + 6.568080163000047 + ], + [ + 6.699209549000159, + 6.320073395000179 + ], + [ + 6.76850257500007, + 6.293138316000125 + ], + [ + 7.114558500000044, + 6.417639083000154 + ], + [ + 7.18774257299998, + 6.36623505 + ], + [ + 7.26183055100006, + 6.148529028999974 + ], + [ + 7.361153589000082, + 6.054285927000137 + ], + [ + 7.574349475000076, + 5.969293931000095 + ], + [ + 7.799216492000028, + 5.921227405000138 + ], + [ + 7.890094427000065, + 5.931313684000088 + ], + [ + 8.191458548000071, + 6.141512538000029 + ], + [ + 8.413106578000168, + 6.202770001000147 + ], + [ + 8.642021551000028, + 6.007590177000111 + ], + [ + 8.724781445000076, + 6.258730771000103 + ], + [ + 8.70628543500004, + 6.326371892000054 + ], + [ + 8.584559581000178, + 6.432304061000139 + ], + [ + 8.549212425000121, + 6.522613703000104 + ], + [ + 8.574382442000058, + 6.569719999000029 + ], + [ + 8.998478580000096, + 6.570033147000174 + ], + [ + 9.217863496000064, + 6.486670258000061 + ], + [ + 9.372847568000111, + 6.527184355000145 + ], + [ + 9.413658552000186, + 6.637519202000135 + ], + [ + 9.520906512000124, + 6.633614409000074 + ], + [ + 9.550865446000046, + 6.580652180000129 + ], + [ + 9.55467451800007, + 6.419109101000117 + ], + [ + 9.623385504, + 6.306217270000104 + ], + [ + 9.6846154750001, + 6.250017615 + ], + [ + 9.815670554000178, + 6.209691273000089 + ], + [ + 9.891278506, + 6.212842031000037 + ], + [ + 9.94168459000008, + 6.260094842000058 + ], + [ + 10.033045490000063, + 6.238043227999981 + ], + [ + 10.075602592000166, + 6.122746630000051 + ], + [ + 10.136432578000097, + 6.118692136000163 + ], + [ + 10.221593553, + 6.167351431000043 + ], + [ + 10.185096567000016, + 6.228177226000128 + ], + [ + 10.083713592000151, + 6.297112177000031 + ], + [ + 10.148598575000165, + 6.374157290000028 + ], + [ + 10.172930570000176, + 6.455257567000046 + ], + [ + 10.286478536, + 6.43903774600011 + ], + [ + 10.363530522000133, + 6.540413177000062 + ], + [ + 10.440581502000043, + 6.580963316000123 + ], + [ + 10.529797474000134, + 6.552578336000067 + ], + [ + 10.667678439999975, + 6.617457787000149 + ], + [ + 10.809614571000111, + 6.613402790000123 + ], + [ + 10.975009470000145, + 6.370349726000143 + ], + [ + 10.905701524, + 6.326247840000121 + ], + [ + 10.896250593000048, + 6.253794166000091 + ], + [ + 10.962409458000138, + 6.231742720000057 + ], + [ + 10.978160562000085, + 6.06163518000011 + ], + [ + 10.877347557000121, + 6.036433982000176 + ], + [ + 10.741882591000149, + 6.112037575000159 + ], + [ + 10.622167556000136, + 6.008082194000053 + ], + [ + 10.590663502000098, + 6.058485596000082 + ], + [ + 10.442594500000155, + 6.039583901000128 + ], + [ + 10.389889428000117, + 5.969788128000062 + ], + [ + 10.445929492000062, + 5.901645938000115 + ], + [ + 10.385889584000097, + 5.781271917000083 + ], + [ + 10.470949473000132, + 5.771821489000104 + ], + [ + 10.245300591999978, + 5.554680408000081 + ], + [ + 10.111430534000021, + 5.52551054700001 + ], + [ + 10.073956554, + 5.433858124000039 + ], + [ + 10.272370452000132, + 5.471328416000063 + ], + [ + 10.382109513000046, + 5.408438158000138 + ], + [ + 10.402370585000085, + 5.508861907999972 + ], + [ + 10.488630427000032, + 5.494039015 + ], + [ + 10.473420458000021, + 5.38764768600015 + ], + [ + 10.505450560000043, + 5.259389144000124 + ], + [ + 10.62656956300009, + 5.016606983000088 + ], + [ + 10.710000513000125, + 4.926168763000135 + ], + [ + 10.789669497000034, + 4.880636923000111 + ], + [ + 10.855669441000032, + 4.711798571000145 + ], + [ + 10.829279522000093, + 4.601581573000033 + ], + [ + 10.846128488000147, + 4.540132332000098 + ], + [ + 11.1648404660001, + 4.212863270000128 + ], + [ + 11.292160570000078, + 4.269700117000184 + ], + [ + 11.473779480000076, + 4.394302975000073 + ], + [ + 11.576270542000032, + 4.606263369000146 + ], + [ + 11.519120547, + 4.685480401 + ], + [ + 11.371470473000102, + 4.659060307000175 + ], + [ + 11.30930055600004, + 4.693005003000167 + ], + [ + 11.272939525000027, + 4.770177186000069 + ], + [ + 11.268950577000055, + 4.874849554000036 + ], + [ + 11.202850553000133, + 4.915956419000167 + ], + [ + 11.146690461, + 4.81722983700007 + ], + [ + 11.09148054100018, + 4.774539799000138 + ], + [ + 11.046759567000095, + 4.886760407000111 + ], + [ + 11.044509529000095, + 5.05593604600017 + ], + [ + 11.057169555000087, + 5.351049279000051 + ], + [ + 11.05521958899999, + 5.599841935000143 + ], + [ + 11.164449534000084, + 5.652606183000103 + ], + [ + 11.231829475000097, + 5.80336426700012 + ], + [ + 11.248029514000166, + 5.89060780900013 + ], + [ + 11.221329464000064, + 6.066232989000127 + ], + [ + 11.331080428000178, + 6.113106435000134 + ], + [ + 11.506030529000157, + 6.122372965000125 + ], + [ + 11.580369460999975, + 6.160995098000171 + ], + [ + 11.66646049100018, + 6.122617884000078 + ], + [ + 11.771129507000069, + 5.817535048000138 + ], + [ + 11.863869566, + 5.649560534999978 + ], + [ + 11.876970481000171, + 5.56426679100008 + ], + [ + 11.678540490000046, + 5.61965356900015 + ], + [ + 11.681050535000168, + 5.418130321000149 + ], + [ + 11.539059586000178, + 5.341664230000106 + ], + [ + 11.55329943400011, + 5.217578032000119 + ], + [ + 11.63619947400008, + 5.051225585000054 + ], + [ + 11.65589946100016, + 4.952954811000041 + ], + [ + 11.709620587000074, + 4.916361265000091 + ], + [ + 11.801469482000186, + 4.976843905000067 + ], + [ + 11.825559575000057, + 5.045620941000152 + ], + [ + 11.78913953500006, + 5.176503354000147 + ], + [ + 11.803999476000058, + 5.221950033000098 + ], + [ + 11.929320495000127, + 5.22833955700014 + ], + [ + 11.975020476000111, + 5.169556600000021 + ], + [ + 11.994250573000045, + 5.034581807000166 + ], + [ + 11.96370054800019, + 4.821794287000046 + ], + [ + 11.874230437000108, + 4.660164203000022 + ], + [ + 11.692520499000068, + 4.566058230000067 + ], + [ + 11.63395949400018, + 4.45504042500005 + ], + [ + 11.591910503000122, + 4.321191489 + ], + [ + 11.628609493000113, + 4.223146524000128 + ], + [ + 11.854869582, + 4.235109679000061 + ], + [ + 11.949729592000097, + 4.371306721000053 + ], + [ + 12.045269542000142, + 4.375674363000087 + ], + [ + 12.031800494000038, + 4.267965231000176 + ], + [ + 12.13815058400013, + 4.336015220000036 + ], + [ + 12.254619476000073, + 4.50559486800006 + ], + [ + 12.410619435000115, + 4.841859892 + ], + [ + 12.48075953600005, + 4.896909718000131 + ], + [ + 12.612680466000086, + 4.942173504000152 + ], + [ + 12.853110496999989, + 4.924742666000157 + ], + [ + 12.938839429000097, + 4.948279888000059 + ], + [ + 12.977149588000088, + 5.003901862000021 + ], + [ + 12.962280595000038, + 5.070779056000106 + ], + [ + 12.894459431000143, + 5.073184662000017 + ], + [ + 12.67115949600003, + 5.029934879999985 + ], + [ + 12.457839557, + 5.044072971000162 + ], + [ + 12.406149533000075, + 5.155308706000085 + ], + [ + 12.432749503000082, + 5.34759275000016 + ], + [ + 12.479940456000179, + 5.388883513 + ], + [ + 12.672069435000083, + 5.401279678000094 + ], + [ + 12.902029463000133, + 5.503622045000157 + ], + [ + 13.027070527000092, + 5.617410907000021 + ], + [ + 12.991220457000168, + 5.885198129000173 + ], + [ + 13.065010542000152, + 5.907451412000114 + ], + [ + 13.161100512000075, + 5.721601316000033 + ], + [ + 13.36217952000004, + 5.672517729000049 + ], + [ + 13.478090512, + 5.615699993000021 + ], + [ + 13.42691044300011, + 5.502136101000133 + ], + [ + 13.485959443000127, + 5.443149631000097 + ], + [ + 13.5938395660001, + 5.566189600000087 + ], + [ + 13.674010458000168, + 5.576081922000185 + ], + [ + 13.630209482, + 5.459026297000094 + ], + [ + 13.61268946000007, + 5.324103304000118 + ], + [ + 13.793180502000155, + 5.156992630000161 + ], + [ + 13.733699499000181, + 5.097385061000182 + ], + [ + 13.618740523999975, + 5.110208031000127 + ], + [ + 13.683970506000037, + 4.8999025600001 + ], + [ + 13.598850434999974, + 4.685974430000158 + ], + [ + 13.630709546, + 4.475045010000088 + ], + [ + 13.711299534000148, + 4.437186636000092 + ], + [ + 13.854399576000162, + 4.493140533000144 + ], + [ + 13.918979457000148, + 4.456207521000124 + ], + [ + 13.805569458000093, + 4.312686037000049 + ], + [ + 13.874380524000117, + 4.237889453000037 + ], + [ + 14.04603955400006, + 4.190236992000109 + ], + [ + 14.107330545000082, + 4.204552110000122 + ], + [ + 14.167010533999985, + 4.330152582000096 + ], + [ + 14.17463052200003, + 4.399956569000153 + ], + [ + 14.253729537000027, + 4.37659838400009 + ], + [ + 14.465720441000087, + 4.358631439000021 + ], + [ + 14.546339430000046, + 4.217772886000091 + ], + [ + 14.651599538000028, + 4.16648368500006 + ], + [ + 14.749930494000068, + 4.175022329000058 + ], + [ + 14.849599537000074, + 4.282652169000187 + ], + [ + 14.940250489999983, + 4.3240832460001 + ], + [ + 14.912449561000017, + 4.173270344000173 + ], + [ + 15.005330436000065, + 4.122928131000094 + ], + [ + 15.061920520000058, + 4.127230562000022 + ], + [ + 15.10414050200012, + 4.207246724000129 + ], + [ + 15.371259519000148, + 4.2224065690001 + ], + [ + 15.58176950900014, + 4.371309571000097 + ], + [ + 15.657259443000157, + 4.468624472000158 + ], + [ + 15.725959533000093, + 4.501079201000096 + ], + [ + 15.912159488999976, + 4.484443303000148 + ], + [ + 15.940380518999973, + 4.363527141000077 + ], + [ + 16.02345054400007, + 4.298149134000141 + ], + [ + 16.230239472000164, + 4.292560584000114 + ], + [ + 16.44621043899997, + 4.198796424000136 + ], + [ + 16.544570564000026, + 4.18979409300016 + ], + [ + 16.76481043500013, + 4.135120111999981 + ], + [ + 17.086240496000187, + 3.970701369000096 + ], + [ + 17.206729516000053, + 3.921242944000142 + ], + [ + 17.281480502000022, + 3.921743846000027 + ], + [ + 17.48648056400009, + 4.070319786000141 + ], + [ + 17.603860569, + 4.122555974000136 + ], + [ + 17.712930587000074, + 4.13545522000004 + ], + [ + 17.80258945800017, + 4.104053593 + ], + [ + 17.967630473000042, + 3.936811994000152 + ], + [ + 18.00201957800016, + 3.848882477000132 + ], + [ + 18.05201947400002, + 3.828566755000168 + ], + [ + 18.132589513000028, + 3.88834145900006 + ], + [ + 18.290309438000065, + 4.121480073000043 + ], + [ + 18.415599445000055, + 4.252300459000082 + ], + [ + 18.610439466000173, + 4.412065737000034 + ], + [ + 18.856391495000082, + 4.522670481000091 + ], + [ + 19.049133527000038, + 4.818962544000158 + ], + [ + 19.105785469000182, + 4.891700365000133 + ], + [ + 19.437984600000107, + 5.138061096000115 + ], + [ + 19.573326520000023, + 5.15649876800012 + ], + [ + 19.84228553200012, + 5.097490002000029 + ], + [ + 19.959716498999967, + 5.024512291000121 + ], + [ + 20.01362253000019, + 4.950769816000161 + ], + [ + 20.268388465000044, + 4.845098492000091 + ], + [ + 20.47071050900007, + 4.595659926000053 + ], + [ + 20.509023518000106, + 4.42092708500013 + ], + [ + 20.638454520000153, + 4.379639171000065 + ], + [ + 20.865612478000173, + 4.410232782000151 + ], + [ + 20.989225601000157, + 4.467426531000115 + ], + [ + 21.161083450000092, + 4.408486832000108 + ], + [ + 21.252687594000065, + 4.418611165000186 + ], + [ + 21.385934541000097, + 4.386120561000041 + ], + [ + 21.444065554000133, + 4.506258715000172 + ], + [ + 21.495367496000085, + 4.730813924000074 + ], + [ + 21.549867468000173, + 4.906658039000149 + ], + [ + 21.667264571999965, + 5.104387470000177 + ], + [ + 21.7797054560001, + 5.250253876000102 + ], + [ + 21.94778457600006, + 5.40738807300005 + ], + [ + 22.07029950200007, + 5.469731496000065 + ], + [ + 22.161958463000076, + 5.471294553000178 + ], + [ + 22.388483587000167, + 5.432489359000044 + ], + [ + 22.47649943800019, + 5.457954587000074 + ], + [ + 22.68036257900002, + 5.565245797000046 + ], + [ + 22.77047558100014, + 5.581108549000021 + ], + [ + 22.90803149700008, + 5.567481586000042 + ], + [ + 23.03304657800004, + 5.615639978000161 + ], + [ + 23.149997596000105, + 5.758167369000091 + ], + [ + 23.19060557000006, + 5.780348735000075 + ], + [ + 23.322784496000054, + 5.745561322000071 + ], + [ + 23.503351477000137, + 5.77883999200003 + ], + [ + 23.677410582000107, + 5.730547657000159 + ], + [ + 23.826185507000105, + 5.627168951000044 + ], + [ + 23.958526539000047, + 5.644447909000121 + ], + [ + 24.037652543000036, + 5.480297891000134 + ], + [ + 24.04037448200006, + 5.38888569300002 + ], + [ + 24.001718486000186, + 5.305591703000175 + ], + [ + 23.88883051100015, + 5.160256375000074 + ], + [ + 23.659177595000074, + 4.933941134000065 + ], + [ + 23.583864519000088, + 4.88109289900018 + ], + [ + 23.406515517000116, + 4.831577644000163 + ], + [ + 23.30549849700003, + 4.740546487000017 + ], + [ + 23.128822562000096, + 4.688328069000079 + ], + [ + 23.050895505000085, + 4.640490871000111 + ], + [ + 23.00972359700006, + 4.510440279000136 + ], + [ + 23.024896518, + 4.328392885000085 + ], + [ + 23.140945476000013, + 4.261303797000039 + ], + [ + 23.27747947100005, + 4.239779405000093 + ], + [ + 23.415620444000012, + 4.242043357000171 + ], + [ + 23.5959644670001, + 4.208788659000049 + ], + [ + 23.698547562000158, + 4.117417532000047 + ], + [ + 23.82792458500012, + 4.070891934999963 + ], + [ + 23.920009514000185, + 4.073260828000116 + ], + [ + 24.053468524000095, + 4.037774365000189 + ], + [ + 24.374511509000115, + 4.016878950000148 + ], + [ + 24.601058594000108, + 3.975066162000189 + ], + [ + 24.73870855500013, + 3.975969898000187 + ], + [ + 24.964305467000145, + 4.022617369000045 + ], + [ + 25.005208484000093, + 4.045047677000184 + ], + [ + 25.04287960700009, + 4.222339682000154 + ], + [ + 25.11817156100011, + 4.265819296000188 + ], + [ + 25.24714658800019, + 4.220531873000027 + ], + [ + 25.308811579000064, + 4.150756049000108 + ], + [ + 25.392614517000084, + 4.146362423000028 + ], + [ + 25.37965358100007, + 3.964955910000128 + ], + [ + 25.40700758600019, + 3.736404544000095 + ], + [ + 25.436204605000057, + 3.649147256000049 + ], + [ + 25.54348156599997, + 3.499955246000127 + ], + [ + 25.707834594000076, + 3.417753419000121 + ], + [ + 25.841098473000102, + 3.449653937000051 + ], + [ + 26.096708466000166, + 3.55481832300012 + ], + [ + 26.24833156300008, + 3.657458416000111 + ], + [ + 26.383157493000112, + 3.652150827000128 + ], + [ + 26.44939648900015, + 3.482671427000071 + ], + [ + 26.45375457600005, + 3.29848329500004 + ], + [ + 26.505798483000035, + 3.223474817000181 + ], + [ + 26.673086518000048, + 3.147367639000095 + ], + [ + 26.893573487000083, + 3.081111544000123 + ], + [ + 26.984634484000026, + 3.069849116000114 + ], + [ + 27.064115545000163, + 3.110480057000132 + ], + [ + 27.1604725630001, + 3.319012588000135 + ], + [ + 27.217651560000093, + 3.681006702000161 + ], + [ + 27.26297955100017, + 3.687231439000129 + ], + [ + 27.39371846500012, + 3.55880173900016 + ], + [ + 27.54827858100009, + 3.458604301000037 + ], + [ + 27.776750486000083, + 3.436261835000096 + ], + [ + 27.862142466000137, + 3.40248561500016 + ], + [ + 27.904697556000087, + 3.323830505999979 + ], + [ + 27.876865446000124, + 3.188610291000145 + ], + [ + 27.809301607000123, + 2.969662575000143 + ], + [ + 27.83567459500017, + 2.883495269000036 + ], + [ + 27.970968571000185, + 2.871235059000071 + ], + [ + 28.057596546000127, + 2.90034792300014 + ], + [ + 28.236272570000096, + 3.043240262000154 + ], + [ + 28.30692447000007, + 3.212188585000035 + ], + [ + 28.283662510000056, + 3.394793207000021 + ], + [ + 28.35111654600007, + 3.513624286999971 + ], + [ + 28.470371582000155, + 3.581476127999963 + ], + [ + 28.539775585000143, + 3.701339355000187 + ], + [ + 28.62165655299998, + 3.664801969000109 + ], + [ + 28.69969944800016, + 3.55080842100017 + ], + [ + 28.750156493000077, + 3.326462088000142 + ], + [ + 28.72325846300015, + 3.144440679000184 + ], + [ + 28.734806546000073, + 3.053337605000081 + ], + [ + 28.699663573000123, + 2.919994434000103 + ], + [ + 28.783346483000173, + 2.823726432000171 + ], + [ + 28.85936749500013, + 2.936474094000062 + ], + [ + 28.945600515000137, + 2.967432821000045 + ], + [ + 29.045808514000157, + 3.117060857000183 + ], + [ + 29.180370582000023, + 3.147441400000048 + ], + [ + 29.31805960300005, + 3.154080873000055 + ], + [ + 29.369401610000068, + 3.088561883000068 + ], + [ + 29.212200524000025, + 2.993959030000042 + ], + [ + 29.150403602000154, + 2.87465487500009 + ], + [ + 29.238922534000153, + 2.858015121000165 + ], + [ + 29.294580551000024, + 2.92937965100009 + ], + [ + 29.37486258700011, + 2.974367337000047 + ], + [ + 29.46585049300006, + 2.983874762000028 + ], + [ + 29.640960521000068, + 2.929101874000082 + ], + [ + 29.737520548000077, + 2.774094333000107 + ], + [ + 29.947729460000176, + 2.471471920999988 + ], + [ + 30.010251584000173, + 2.348290131000113 + ], + [ + 30.11326249200016, + 2.195533298000157 + ], + [ + 30.14347657100012, + 2.108486898000137 + ], + [ + 30.149055566000186, + 1.925022628000136 + ], + [ + 30.099960580000186, + 1.796015247000014 + ], + [ + 30.037778592999985, + 1.729593191000106 + ], + [ + 29.880220606000023, + 1.634072352000146 + ], + [ + 29.877553484000146, + 1.578748606000147 + ], + [ + 30.05411559300012, + 1.543635975000029 + ], + [ + 30.058002449000185, + 1.454935826000053 + ], + [ + 29.960651505000044, + 1.299013316000128 + ], + [ + 29.84826057700019, + 1.153203404000067 + ], + [ + 29.91227755800014, + 0.733197700000062 + ], + [ + 29.860112246000142, + 0.607951195999988 + ], + [ + 29.979988412000125, + 0.646320715000115 + ], + [ + 30.147189458000128, + 0.787881273000096 + ], + [ + 30.194710991000193, + 0.848752796000042 + ], + [ + 30.23888134500004, + 0.760401530000081 + ], + [ + 30.340960222000092, + 0.797878040000057 + ], + [ + 30.40663334500016, + 0.886393989999988 + ], + [ + 30.511210657000106, + 0.929224288000171 + ], + [ + 30.531911967000156, + 0.972768424000037 + ], + [ + 30.614166667000177, + 0.976666667000075 + ], + [ + 30.69000000000011, + 1.105000000000132 + ], + [ + 30.75333333300017, + 1.109166666000135 + ], + [ + 30.7825, + 1.245833333000121 + ], + [ + 30.844166667000025, + 1.328333334000092 + ], + [ + 30.942500000000166, + 1.359166667000125 + ], + [ + 31.094166666000035, + 1.5025 + ], + [ + 31.169166667000127, + 1.511666667000043 + ], + [ + 31.286666667000134, + 1.650833333000037 + ], + [ + 31.546666667000068, + 1.870833333000064 + ], + [ + 31.664788013000134, + 1.875338902000124 + ], + [ + 31.710473664000176, + 1.825370221000071 + ], + [ + 31.750448609000046, + 1.931018289000122 + ], + [ + 31.831826175000174, + 2.001688281000156 + ], + [ + 31.86180738400003, + 1.973134749 + ], + [ + 32.08238341900005, + 1.963854851000121 + ], + [ + 32.06168210800007, + 1.852496076000136 + ], + [ + 31.920342125000104, + 1.83179476600003 + ], + [ + 31.868231929000046, + 1.793961336000166 + ], + [ + 31.85538283900007, + 1.713297607000072 + ], + [ + 31.774243219000084, + 1.784919384000091 + ], + [ + 31.71237723300004, + 1.706397171000049 + ], + [ + 31.786140524000132, + 1.659283843000082 + ], + [ + 31.679263067000193, + 1.579552069999977 + ], + [ + 31.634648173000187, + 1.588772481000035 + ], + [ + 31.63197128000013, + 1.448086849000106 + ], + [ + 31.55017730700007, + 1.519768112000065 + ], + [ + 31.48295753400015, + 1.376108154000065 + ], + [ + 31.494200487000057, + 1.24580886900003 + ], + [ + 31.468502308000154, + 1.228676750000147 + ], + [ + 31.316910814000096, + 1.257622893000189 + ], + [ + 31.277352274000123, + 1.222228411000117 + ], + [ + 31.202616549000027, + 1.270157686 + ], + [ + 31.186852620000025, + 1.16040504700004 + ], + [ + 31.256823645000054, + 1.166591646000086 + ], + [ + 31.276454198000067, + 1.07593418100015 + ], + [ + 31.327850556000044, + 0.990987423000149 + ], + [ + 31.38807947300006, + 0.998142463000079 + ], + [ + 31.58684378200013, + 0.932770737000055 + ], + [ + 31.52243970400002, + 0.881017460000123 + ], + [ + 31.52600889600012, + 0.761449545000175 + ], + [ + 31.490316981000092, + 0.693634906000057 + ], + [ + 31.515301321000152, + 0.542539132000172 + ], + [ + 31.17069588100003, + 0.390134655000054 + ], + [ + 31.00080236500014, + 0.481149038000069 + ], + [ + 30.801819939000097, + 0.548963677000188 + ], + [ + 30.72478488900009, + 0.598040060000073 + ], + [ + 30.871716606000177, + 0.672398217000023 + ], + [ + 30.615418912000166, + 0.69967873700017 + ], + [ + 30.625412648000122, + 0.605452081000067 + ], + [ + 30.68180587400019, + 0.543110203000083 + ], + [ + 30.526141535000193, + 0.442244851000112 + ], + [ + 30.52227491100018, + 0.362830340000187 + ], + [ + 30.318533562000084, + 0.364614936 + ], + [ + 30.217703902000096, + 0.379784000000143 + ], + [ + 30.033941698000092, + 0.229466309000031 + ], + [ + 30.031657415000154, + 0.16493532700008 + ], + [ + 29.948281102000124, + 0.035492648000059 + ], + [ + 29.910971153000162, + 0.066520820000164 + ], + [ + 29.800944876000074, + 0.002751265000086 + ], + [ + 29.696794801000067, + 0.073326789000077 + ], + [ + 29.539750374999983, + 0.050483964000023 + ], + [ + 29.528328962000103, + -0.08371763699995 + ], + [ + 29.454634624000107, + -0.248603194999873 + ], + [ + 29.42915058200009, + -0.254543940999895 + ], + [ + 29.30752355000004, + -0.471784095999908 + ], + [ + 29.274660455000117, + -0.61115754399998 + ], + [ + 29.143529603000104, + -0.920407525999963 + ], + [ + 29.096578540000166, + -1.073721922999937 + ], + [ + 29.157552527000064, + -1.117647202999933 + ], + [ + 29.18311146400015, + -1.021364867999921 + ], + [ + 29.24310602700018, + -0.927955010999881 + ], + [ + 29.32025951700018, + -0.936802193999881 + ], + [ + 29.362235585000178, + -1.074576038999908 + ], + [ + 29.328140518000055, + -1.167746927999872 + ], + [ + 29.34015304200011, + -1.281372510999859 + ], + [ + 29.388776546000145, + -1.30489464599998 + ], + [ + 29.536603479000064, + -1.284262422999973 + ], + [ + 29.573333333000107, + -1.180833332999953 + ], + [ + 29.593910675000018, + -0.961285007999948 + ], + [ + 29.63174410500011, + -0.897753398999896 + ], + [ + 29.6274610750001, + -0.788536138999973 + ], + [ + 29.667703709000193, + -0.662766752999971 + ], + [ + 29.73462605000003, + -0.61220320699988 + ], + [ + 29.815527724000162, + -0.459322836999945 + ], + [ + 29.930039285000078, + -0.371580212999959 + ], + [ + 29.928849555000056, + -0.246658509999975 + ], + [ + 30.043063683000128, + -0.307037332999926 + ], + [ + 30.103145073000178, + -0.211561459999928 + ], + [ + 30.191185131000168, + -0.190443743999879 + ], + [ + 30.308680536, + -0.118603056999973 + ], + [ + 30.31248767300019, + -0.029706393999902 + ], + [ + 30.435458218000065, + 0.004938558000106 + ], + [ + 30.50798419, + -0.033132817999899 + ], + [ + 30.53330165500006, + -0.268794635999939 + ], + [ + 30.49503992200016, + -0.409278013999824 + ], + [ + 30.450877125000147, + -0.441067612999859 + ], + [ + 30.44478570500013, + -0.549380677999977 + ], + [ + 30.484189579000088, + -0.620193436999955 + ], + [ + 30.673547086000042, + -0.742521526999894 + ], + [ + 30.800883941999984, + -0.793834603999812 + ], + [ + 30.745680447000098, + -0.895865891999961 + ], + [ + 30.745870804000106, + -0.982478272999856 + ], + [ + 30.576643537000052, + -0.999229677999949 + ], + [ + 30.45540206700008, + -0.892249110999842 + ], + [ + 30.38401823700019, + -0.866550931999939 + ], + [ + 30.176291291000098, + -0.867740662999893 + ], + [ + 30.09538961700008, + -0.925323618999869 + ], + [ + 30.066666667000106, + -1.049166666999952 + ], + [ + 30.141666667000152, + -1.091666666999856 + ], + [ + 30.165833333000023, + -1.148333333999972 + ], + [ + 30.172500000000184, + -1.301666666999893 + ], + [ + 30.15166666600004, + -1.406666665999921 + ], + [ + 30.165833333000023, + -1.502499999999884 + ], + [ + 30.241666666000185, + -1.5675 + ], + [ + 30.257500000000164, + -1.6425 + ], + [ + 30.335833332999982, + -1.6725 + ], + [ + 30.34333333300009, + -1.7875 + ], + [ + 30.26, + -1.785 + ], + [ + 30.211666666000042, + -1.830833332999873 + ], + [ + 30.130833334000044, + -1.758333333999872 + ], + [ + 30.035, + -1.825833332999878 + ], + [ + 30.041666666000083, + -1.855833332999907 + ], + [ + 29.99416666700006, + -1.875 + ], + [ + 29.893333333000044, + -1.7825 + ], + [ + 29.878333333000114, + -1.7625 + ], + [ + 29.86916666600007, + -1.802499999999895 + ], + [ + 29.855000000000132, + -1.807499999999891 + ], + [ + 29.811666667, + -1.807499999999891 + ], + [ + 29.796666667000068, + -1.759166666999874 + ], + [ + 29.757500000000107, + -1.7325 + ], + [ + 29.738333334000174, + -1.770833332999928 + ], + [ + 29.79, + -1.920833332999848 + ], + [ + 29.8241666670001, + -1.945 + ], + [ + 29.820833333000166, + -1.905833332999975 + ], + [ + 29.9275, + -1.910833332999971 + ], + [ + 29.921666666000192, + -1.944166666999934 + ], + [ + 29.923333333000187, + -2.0175 + ], + [ + 29.856666666000024, + -2.048333333999892 + ], + [ + 29.811666667, + -2.148333332999925 + ], + [ + 29.803333334000172, + -2.241666665999844 + ], + [ + 29.82166666700016, + -2.376666666999881 + ], + [ + 29.785, + -2.438333332999889 + ], + [ + 29.8275000000001, + -2.626666665999835 + ], + [ + 29.74583333300012, + -2.760833332999937 + ], + [ + 29.81416666700011, + -2.804166666999947 + ], + [ + 29.822500000000105, + -2.804999999999893 + ], + [ + 29.906666667000138, + -2.860833333999949 + ], + [ + 30.055833333000123, + -2.84083333399991 + ], + [ + 30.140833334000035, + -2.795 + ], + [ + 30.18916666700011, + -2.724166666999963 + ], + [ + 30.31916666700016, + -2.668333333999954 + ], + [ + 30.276666666999972, + -2.789166666999961 + ], + [ + 30.33916666600004, + -2.855 + ], + [ + 30.30916666700017, + -2.939166666999881 + ], + [ + 30.29333333300019, + -3.1175 + ], + [ + 30.18833333300006, + -3.256666666999877 + ], + [ + 30.133333333000053, + -3.260833332999937 + ], + [ + 30.140833334000035, + -3.1625 + ], + [ + 30.229166666000083, + -3.04833333299996 + ], + [ + 30.2125, + -2.983333332999962 + ], + [ + 30.12416666700011, + -3.021666666999977 + ], + [ + 30.018333334000033, + -3.182499999999891 + ], + [ + 29.946666667000045, + -3.144166666999979 + ], + [ + 29.985000000000184, + -3.021666665999874 + ], + [ + 29.916666666000026, + -2.944166666999877 + ], + [ + 29.853333333000137, + -2.94 + ], + [ + 29.822500000000105, + -2.997499999999889 + ], + [ + 29.77416666700003, + -3.01416666599988 + ], + [ + 29.906666666000035, + -3.0875 + ], + [ + 29.843333332999975, + -3.22 + ], + [ + 29.882500000000164, + -3.298333332999903 + ], + [ + 29.823333334000154, + -3.325833332999935 + ], + [ + 29.853333333000137, + -3.405833333999851 + ], + [ + 29.846666667000136, + -3.516666666999868 + ], + [ + 29.915833334000183, + -3.510833332999937 + ], + [ + 29.86166666600019, + -3.423333333999892 + ], + [ + 29.9375, + -3.379166666999936 + ], + [ + 30.045833334000065, + -3.444999999999823 + ], + [ + 30.079166666000106, + -3.52916666699997 + ], + [ + 30.076666667000097, + -3.6275 + ], + [ + 30.13583333400004, + -3.690833332999887 + ], + [ + 30.080833333000044, + -3.815 + ], + [ + 30.020833334000145, + -3.875833332999889 + ], + [ + 30.003333334000047, + -3.942499999999882 + ], + [ + 29.92666666700012, + -3.944999999999879 + ], + [ + 29.915000000000134, + -4.05833333399994 + ], + [ + 29.833333334000088, + -4.078333332999875 + ], + [ + 29.75000000000017, + -4.139999999999873 + ], + [ + 29.74583333300012, + -4.188333333999879 + ], + [ + 29.670833333000132, + -4.195833332999939 + ], + [ + 29.645833334000088, + -4.098333333999904 + ], + [ + 29.560000000000116, + -4.125833333999935 + ], + [ + 29.581666667000036, + -4.016666665999878 + ], + [ + 29.571666667000045, + -3.909166666999965 + ], + [ + 29.589166667000086, + -3.829166666999868 + ], + [ + 29.459166667000034, + -3.82 + ], + [ + 29.331666667000093, + -3.763333333999981 + ], + [ + 29.37166666700017, + -3.884166666999931 + ], + [ + 29.440833333000114, + -3.985833332999903 + ], + [ + 29.458333332999985, + -4.063333332999832 + ], + [ + 29.595833333000144, + -4.3475 + ], + [ + 29.662500000000136, + -4.410833333999904 + ], + [ + 29.636666667000043, + -4.596666666999965 + ], + [ + 29.59166666699997, + -4.72333333399996 + ], + [ + 29.59083333400008, + -4.87 + ], + [ + 29.82, + -5.137499999999875 + ], + [ + 29.78166666700008, + -5.202499999999873 + ], + [ + 29.79833333300013, + -5.259166665999828 + ], + [ + 29.75000000000017, + -5.4225 + ], + [ + 29.770000000000152, + -5.508333332999939 + ], + [ + 29.829166666000162, + -5.559166666999943 + ], + [ + 29.928333333000182, + -5.770833332999928 + ], + [ + 29.94416666700016, + -5.869166666999888 + ], + [ + 29.904166667000084, + -5.935 + ], + [ + 29.72083333300003, + -6.0525 + ], + [ + 29.715833333000035, + -6.294166665999967 + ], + [ + 29.858333334000065, + -6.453333333999922 + ], + [ + 29.967500000000143, + -6.5275 + ], + [ + 30.13, + -6.484999999999843 + ], + [ + 30.35750000000013, + -6.7075 + ], + [ + 30.405, + -6.823333333999869 + ], + [ + 30.483333333000132, + -6.92 + ], + [ + 30.555, + -6.961666666999918 + ], + [ + 30.56250000000017, + -7.033333333999906 + ], + [ + 30.525000000000148, + -7.2175 + ], + [ + 30.6025, + -7.380833332999828 + ], + [ + 30.59416666700008, + -7.475 + ], + [ + 30.639166667000154, + -7.605 + ], + [ + 30.739166667000063, + -7.7025 + ], + [ + 30.8, + -7.868333332999953 + ], + [ + 30.85666666700007, + -7.9125 + ], + [ + 30.91666666700013, + -8.030833333999908 + ], + [ + 30.921666667000068, + -8.11666666699989 + ], + [ + 30.98000000000019, + -8.155833332999975 + ], + [ + 30.953333333000103, + -8.220833332999973 + ], + [ + 30.981666667000127, + -8.305 + ], + [ + 31.04333333300002, + -8.313333332999946 + ], + [ + 31.144166667000036, + -8.42 + ], + [ + 31.136666666000053, + -8.490833332999898 + ], + [ + 31.2, + -8.6125 + ], + [ + 31.199166667000043, + -8.73916666699995 + ], + [ + 31.029166667000084, + -8.80833333299995 + ], + [ + 30.78916666600003, + -8.5675 + ], + [ + 30.6875, + -8.5425 + ], + [ + 30.593333334000135, + -8.583333332999928 + ], + [ + 30.567500000000166, + -8.51416666699987 + ], + [ + 30.496666667, + -8.531666665999921 + ], + [ + 30.454166667000038, + -8.483333332999905 + ], + [ + 30.475, + -8.362499999999898 + ], + [ + 30.56250000000017, + -8.31666666599989 + ], + [ + 30.587497499000165, + -8.152176296999926 + ], + [ + 30.52749648300005, + -8.059406230999969 + ], + [ + 30.272777486000166, + -7.843865422999954 + ], + [ + 30.268753502000095, + -7.771545859999947 + ], + [ + 30.156610511000054, + -7.792237425999929 + ], + [ + 30.096279583000182, + -7.841092856999978 + ], + [ + 30.04492120000009, + -7.993446727999981 + ], + [ + 29.964988093000045, + -8.002325399999961 + ], + [ + 29.89952060800016, + -7.945153346999973 + ], + [ + 29.69888672100012, + -8.042403436999962 + ], + [ + 29.580460608000124, + -8.026434560999917 + ], + [ + 29.58148738, + -7.871846079999955 + ], + [ + 29.426855610000132, + -7.846470609999869 + ], + [ + 29.344385333000105, + -7.882947847999958 + ], + [ + 29.2412352770001, + -7.994644103999917 + ], + [ + 29.155655276000175, + -7.995551495999962 + ], + [ + 29.013546613000017, + -7.83021126899996 + ], + [ + 28.851104645000134, + -7.797147505999931 + ], + [ + 28.73833140700009, + -7.746610432999944 + ], + [ + 28.672439678000103, + -7.671867853999913 + ], + [ + 28.65861946300015, + -7.507474601999888 + ], + [ + 28.685983265000118, + -7.382552898999904 + ], + [ + 28.741826571000104, + -7.266095908999944 + ], + [ + 28.81638855800003, + -7.173680384999955 + ], + [ + 28.886975919000065, + -7.003094262999923 + ], + [ + 28.90238409800014, + -6.745807598999875 + ], + [ + 28.879880526000136, + -6.640526712999872 + ], + [ + 28.866790508000122, + -6.434293840999885 + ], + [ + 28.800210537, + -6.225489064999977 + ], + [ + 28.845220519, + -6.139527283999882 + ], + [ + 28.91251664100014, + -6.104500365999968 + ], + [ + 29.193054581000126, + -6.085104256999898 + ], + [ + 29.181663574000083, + -5.919282383999871 + ], + [ + 29.324996466000187, + -5.82262344999998 + ], + [ + 29.350555571000086, + -5.721242151999945 + ], + [ + 29.18428685700013, + -5.604252161999966 + ], + [ + 29.112050691000036, + -5.519682991999844 + ], + [ + 29.057169473000044, + -5.523603770999955 + ], + [ + 29.01481506700003, + -5.611881773999926 + ], + [ + 28.85681885600019, + -5.402965097999925 + ], + [ + 29.038133785000127, + -5.385832978999929 + ], + [ + 29.064480532000175, + -5.343497219999904 + ], + [ + 28.955245354000112, + -5.038695834999942 + ], + [ + 28.87948547200017, + -4.895985359999884 + ], + [ + 28.668062546000158, + -4.681038717999911 + ], + [ + 28.563141656000028, + -4.512909600999933 + ], + [ + 28.521501088000093, + -4.25473808199996 + ], + [ + 28.428702109000085, + -4.291619727999887 + ], + [ + 28.379923159000157, + -4.229753740999911 + ], + [ + 28.38111288900018, + -4.155990449999933 + ], + [ + 28.297831754000185, + -4.158369910999966 + ], + [ + 28.197894392000137, + -4.107211499999892 + ], + [ + 28.108664604000126, + -3.982289796999908 + ], + [ + 28.002778589000116, + -3.951356803999886 + ], + [ + 27.91949745400018, + -3.787173993999943 + ], + [ + 27.926635837000106, + -3.731256660999918 + ], + [ + 28.036516561999974, + -3.603755477999925 + ], + [ + 27.922250602000076, + -3.533499706999976 + ], + [ + 27.891790598000114, + -3.466058578999878 + ], + [ + 27.736309480000102, + -3.541523869999935 + ], + [ + 27.374370517999978, + -3.803124409999953 + ], + [ + 27.216819572000134, + -3.86809773799996 + ], + [ + 27.087680596000098, + -3.856613524999943 + ], + [ + 26.93284052500013, + -3.819617312999981 + ], + [ + 26.422090594999986, + -3.648423142999945 + ], + [ + 26.31806950000015, + -3.552096299999903 + ], + [ + 26.213890490000097, + -3.407880961999979 + ], + [ + 26.069129490000137, + -3.100974894999922 + ], + [ + 25.985370473000103, + -2.841491120999819 + ], + [ + 25.918930479000096, + -2.704309205999891 + ], + [ + 25.865680584000188, + -2.663088178999942 + ], + [ + 25.721790463000048, + -2.693039233999912 + ], + [ + 25.523120582, + -2.646985704999963 + ], + [ + 25.325309511000114, + -2.668214047999868 + ], + [ + 25.189439531000062, + -2.769161331999953 + ], + [ + 25.103090506000115, + -2.964961751999908 + ], + [ + 24.999309469000025, + -3.347063380999884 + ], + [ + 24.897790539000027, + -3.47751479599998 + ], + [ + 24.75645052900012, + -3.512516282999854 + ], + [ + 24.385049573000174, + -3.51102933299984 + ], + [ + 24.194780538000145, + -3.684962205999966 + ], + [ + 24.021110522000072, + -3.759959787999946 + ], + [ + 23.783479543000112, + -3.789270632999944 + ], + [ + 23.679510584000127, + -3.642001599999958 + ], + [ + 23.587680464000073, + -3.543984629999954 + ], + [ + 23.407279443999983, + -3.297283090999883 + ], + [ + 23.346019465999973, + -3.346306327999969 + ], + [ + 23.254909520000183, + -3.499136082999883 + ], + [ + 23.104810589000067, + -3.590537384999891 + ], + [ + 22.987199579000162, + -3.625116757999933 + ], + [ + 22.751399543000048, + -3.660692237999911 + ], + [ + 22.655500513000163, + -3.693409822999911 + ], + [ + 22.62299951500006, + -3.752714134999962 + ], + [ + 22.659900509000067, + -3.96098079199993 + ], + [ + 22.69920744400008, + -4.005889352999873 + ], + [ + 22.323665492000146, + -3.954423293999923 + ], + [ + 22.19203155800011, + -3.986691777999965 + ], + [ + 22.100507545000085, + -3.975972664999915 + ], + [ + 21.824516452000125, + -3.974353950999841 + ], + [ + 21.562364551000087, + -4.058487471999968 + ], + [ + 21.471088475000045, + -4.058466516999943 + ], + [ + 21.389949473000115, + -4.014787916999865 + ], + [ + 21.162483563000023, + -3.986583818999918 + ], + [ + 21.030590460999974, + -4.026124105999884 + ], + [ + 20.821649564000097, + -4.122798964999959 + ], + [ + 20.51205055900016, + -4.211816117999888 + ], + [ + 20.451942590000158, + -4.25051637099989 + ], + [ + 20.348178484000186, + -4.370933474999958 + ], + [ + 20.302505494000172, + -4.377009012999906 + ], + [ + 20.182674453000175, + -4.308453091999922 + ], + [ + 19.982776456000067, + -4.226907231999917 + ], + [ + 19.816944524, + -4.124414660999889 + ], + [ + 19.61916346000004, + -4.072474521999879 + ], + [ + 19.38582954800006, + -3.918319084999951 + ], + [ + 19.209287556999982, + -3.825475927999946 + ], + [ + 19.056493508000187, + -3.775019720999978 + ], + [ + 18.795829563000098, + -3.643061406999891 + ], + [ + 18.64916654100017, + -3.605009410999969 + ], + [ + 18.599163460000113, + -3.56473419799994 + ], + [ + 18.49124545000018, + -3.584253638999826 + ], + [ + 18.368432464000023, + -3.3907411429999 + ], + [ + 18.316835479000076, + -3.262852746999954 + ], + [ + 18.293901586000118, + -3.080183415999954 + ], + [ + 18.298381546000087, + -2.450757304999968 + ], + [ + 18.28562345100005, + -2.340236378999919 + ], + [ + 18.186239560000047, + -2.216512614999942 + ], + [ + 18.076000434000036, + -1.999500950999902 + ], + [ + 17.924619575000065, + -2.102150262999942 + ], + [ + 17.695669566, + -2.036214021999967 + ], + [ + 17.60304048300003, + -2.092700002999891 + ], + [ + 17.603200578000042, + -2.174580635999973 + ], + [ + 17.735120502000143, + -2.349831813999913 + ], + [ + 17.69647054100011, + -2.437088096999958 + ], + [ + 17.626819440000077, + -2.403562663999935 + ], + [ + 17.421140444000173, + -2.232089375999919 + ], + [ + 17.317409530000077, + -2.214921897999943 + ], + [ + 17.074430562000032, + -2.218594511999868 + ], + [ + 16.96890055700004, + -2.249633034999931 + ], + [ + 16.61119043400015, + -2.254751695999971 + ], + [ + 16.354799582000055, + -2.27833619199987 + ], + [ + 16.291910498000107, + -2.386073989999943 + ], + [ + 16.327560576000167, + -2.632120566999959 + ], + [ + 16.286220527000125, + -2.753290700999969 + ], + [ + 16.187538536999966, + -2.709964978999949 + ], + [ + 16.221385500000167, + -2.632303795999974 + ], + [ + 16.17694045800016, + -2.553420530999972 + ], + [ + 16.124443593000024, + -2.346490954999979 + ], + [ + 16.11770253100002, + -2.213842978999935 + ], + [ + 16.05876953699999, + -2.183693105999964 + ], + [ + 15.888099572000101, + -1.997631953999814 + ], + [ + 15.532400434000124, + -1.690555901999971 + ], + [ + 15.442749442000093, + -1.586066593999931 + ], + [ + 15.25697059300012, + -1.412024755999937 + ], + [ + 15.058050596000157, + -1.198140882999894 + ], + [ + 14.947529503000169, + -1.10435191199997 + ], + [ + 14.735540442000115, + -0.991572063999968 + ], + [ + 14.554200481000066, + -0.785214636999967 + ], + [ + 14.45310048000016, + -0.694090440999958 + ], + [ + 14.294340528000134, + -0.499133072999882 + ], + [ + 14.194109562000051, + -0.449016834999952 + ], + [ + 14.065739541000141, + -0.470937020999884 + ], + [ + 14.049440594999965, + -0.605645939999931 + ], + [ + 14.178910489000032, + -0.854431554999962 + ], + [ + 14.212010457000133, + -0.996636912999918 + ], + [ + 14.166660505999971, + -1.104578726999819 + ], + [ + 14.099929492000115, + -1.144952677999925 + ], + [ + 13.85072059100014, + -1.170819901999948 + ], + [ + 13.611390433000167, + -1.150032445999955 + ], + [ + 13.49435056600015, + -1.090296801999955 + ], + [ + 13.25852052300013, + -1.069396358999882 + ], + [ + 13.062509549000083, + -1.064403761999927 + ], + [ + 12.839730465000173, + -1.086947057999964 + ], + [ + 12.777919461000181, + -1.108195349999903 + ], + [ + 12.393760576999966, + -1.365100179999899 + ], + [ + 12.5298404400001, + -1.611925938999946 + ], + [ + 12.698370506000117, + -1.830274515999918 + ], + [ + 12.853736458000014, + -1.988356539999927 + ], + [ + 13.049114430000088, + -2.28325066899987 + ], + [ + 13.238035487, + -2.698193600999957 + ], + [ + 13.355376432000071, + -2.934628146999898 + ], + [ + 13.450980587, + -3.079869429999974 + ], + [ + 13.549466441000106, + -3.271947111999964 + ], + [ + 13.695253553000043, + -3.525922298999831 + ], + [ + 13.771368443000085, + -3.815764486999967 + ], + [ + 13.77086049899998, + -3.953204565999897 + ], + [ + 13.744254495000064, + -4.017415810999978 + ], + [ + 13.59771552500007, + -4.108950719999825 + ], + [ + 13.47642653600019, + -4.141898472999912 + ], + [ + 13.424283554999988, + -4.129952248999871 + ], + [ + 13.146351548000098, + -3.964174464999928 + ], + [ + 13.002195552999979, + -3.866984788999901 + ], + [ + 12.924007484000072, + -3.792621214999883 + ], + [ + 12.718955453999968, + -3.55751670899997 + ], + [ + 12.626534578000076, + -3.397714551999911 + ], + [ + 12.562095512000099, + -3.320066444999838 + ], + [ + 12.336760450999975, + -2.994511815999886 + ], + [ + 12.192237497, + -2.826170342999944 + ], + [ + 12.01156758500008, + -2.642030993999924 + ], + [ + 11.47941446599998, + -2.136090768999964 + ], + [ + 11.38819957800007, + -2.087813185999948 + ], + [ + 11.217390473000023, + -1.885303386999965 + ], + [ + 11.12240942800014, + -1.728835047999951 + ], + [ + 11.035659580000129, + -1.622941938999929 + ], + [ + 10.854660427000056, + -1.483423315999971 + ], + [ + 10.759220557000106, + -1.466571666999926 + ], + [ + 10.702409526000054, + -1.502578981999932 + ], + [ + 10.687769527000114, + -1.614160721999838 + ], + [ + 10.732199481000123, + -1.762978394999891 + ], + [ + 10.795929438000087, + -1.88667332599988 + ], + [ + 10.947540463999985, + -2.064661865999938 + ], + [ + 11.102800469000101, + -2.195997068999873 + ], + [ + 11.25687057800019, + -2.305876107999893 + ], + [ + 11.513939525000126, + -2.564021794999974 + ], + [ + 11.703410434999967, + -2.778487874999882 + ], + [ + 11.724470470000142, + -2.885254881999913 + ], + [ + 11.67597043100011, + -2.92457992199985 + ], + [ + 11.592829495000103, + -2.908613066999976 + ], + [ + 11.47381049300003, + -2.838528117999886 + ], + [ + 10.97167045499998, + -2.403258567999899 + ], + [ + 10.819959516000097, + -2.326012624999976 + ], + [ + 10.765669593999974, + -2.327093554999976 + ], + [ + 10.731060548000073, + -2.560943121999969 + ], + [ + 10.742329514000062, + -2.752836568999953 + ], + [ + 10.794710541000086, + -2.895635868999875 + ], + [ + 10.917269556000065, + -2.970366402999957 + ], + [ + 11.252779539000187, + -3.108333031999962 + ], + [ + 11.48573945000004, + -3.252948521999883 + ], + [ + 11.625439457000027, + -3.454257361999964 + ], + [ + 11.795160591000183, + -3.654871676999903 + ], + [ + 11.96253043400003, + -3.832091428999945 + ], + [ + 12.122799464000025, + -3.984399997999901 + ], + [ + 12.349089560000039, + -4.157851413999879 + ], + [ + 12.509779528000081, + -4.245700632999956 + ], + [ + 12.798190591000036, + -4.453359265999893 + ], + [ + 12.959910528000137, + -4.54355172999982 + ], + [ + 13.084810441000172, + -4.578361270999949 + ], + [ + 13.209380442000054, + -4.644192235999981 + ], + [ + 13.519289577999984, + -4.934945871999957 + ], + [ + 13.575453526000103, + -5.057235827999875 + ], + [ + 13.452650430000062, + -5.092724302999954 + ], + [ + 13.477629507000131, + -5.338264110999944 + ], + [ + 13.436140595000154, + -5.392566269999975 + ], + [ + 13.190910583000175, + -5.491016919999879 + ], + [ + 12.958388542000137, + -5.659948646999908 + ], + [ + 12.919783508000023, + -5.658121558999881 + ], + [ + 12.810908452999968, + -5.743660389999945 + ], + [ + 12.690795445000163, + -5.689067377999947 + ], + [ + 12.559765511000137, + -5.514373092999961 + ], + [ + 12.527008530000103, + -5.427025447999881 + ], + [ + 12.548177530000146, + -5.207375830999979 + ], + [ + 12.525819474000116, + -5.12308707699998 + ], + [ + 12.492429492000042, + -4.834476189999975 + ], + [ + 12.396180432999984, + -4.697464426999886 + ], + [ + 12.29598048000014, + -4.591362272999902 + ], + [ + 12.020890441000176, + -4.372368455999833 + ], + [ + 11.783829432000061, + -4.199261200999899 + ], + [ + 11.670160431000056, + -4.102689270999917 + ], + [ + 11.282649456000058, + -3.726525381999977 + ], + [ + 11.165080524000075, + -3.661689180999815 + ], + [ + 11.056879541000058, + -3.631451129999903 + ], + [ + 10.926353528000107, + -3.647657204999916 + ], + [ + 10.994859493000035, + -3.724580444999958 + ], + [ + 11.017990528000155, + -3.830488473999878 + ], + [ + 11.374239517999968, + -4.147523902999978 + ], + [ + 11.38903944499998, + -4.202319924999927 + ], + [ + 11.787280429000077, + -4.564356115999885 + ], + [ + 11.773139488000027, + -4.666718767999896 + ], + [ + 11.846670572, + -4.757264779999957 + ], + [ + 11.88416047800007, + -4.861319402999925 + ], + [ + 12.13097953099998, + -5.197562633999951 + ], + [ + 12.221679434000066, + -5.446340034999878 + ], + [ + 12.140899513000079, + -5.628633855999908 + ], + [ + 12.159440451000137, + -5.702023453999971 + ], + [ + 12.23719953400007, + -5.824698305999959 + ], + [ + 12.345135201000176, + -5.932180847999859 + ], + [ + 12.595689510000057, + -5.938259012999879 + ], + [ + 12.708849561000022, + -5.92413215299996 + ], + [ + 12.95270343300001, + -5.807745571999874 + ], + [ + 13.14999046700018, + -5.823486617999947 + ], + [ + 13.151479596000172, + -5.90551058199992 + ], + [ + 13.09428953500003, + -5.967834893999964 + ], + [ + 12.92370053899998, + -6.066814776999877 + ], + [ + 12.79164952200017, + -6.160282719999941 + ], + [ + 12.76877044600019, + -6.218812543999888 + ], + [ + 12.609370452000121, + -6.232944600999929 + ], + [ + 12.499210451000181, + -6.196039248999909 + ], + [ + 12.431819447000066, + -6.203575752999882 + ], + [ + 12.290710441999977, + -6.153815410999925 + ], + [ + 12.374970530000041, + -6.289092454999889 + ], + [ + 12.574560576000124, + -6.674068406999936 + ], + [ + 12.741490536000072, + -6.85090745399998 + ], + [ + 12.821290446000035, + -6.973883383999919 + ], + [ + 12.84751054800006, + -7.100029350999932 + ], + [ + 12.855079574000115, + -7.270256081999946 + ], + [ + 12.915379488000099, + -7.349523404999957 + ], + [ + 12.973389467000061, + -7.528216359999931 + ], + [ + 13.072890536000045, + -7.758535804999951 + ], + [ + 13.180720536000024, + -7.962156204999928 + ], + [ + 13.268890446000057, + -8.170367206999913 + ], + [ + 13.346460434000107, + -8.28231489999996 + ], + [ + 13.39898043300019, + -8.402419525999903 + ], + [ + 13.358539594000149, + -8.486921346999964 + ], + [ + 13.408800503, + -8.699423044999946 + ], + [ + 13.366189590000033, + -8.771323177999875 + ], + [ + 13.304160489000026, + -8.752313524999977 + ], + [ + 13.222359484000151, + -8.80713636799993 + ], + [ + 13.104359554000041, + -8.950558442999977 + ], + [ + 13.059379579000108, + -9.040133830999878 + ], + [ + 12.99989053000013, + -9.092293240999936 + ], + [ + 13.08133044200008, + -9.210375815999896 + ], + [ + 13.169329529000152, + -9.38060791099997 + ], + [ + 13.194160582000052, + -9.553173527999945 + ], + [ + 13.241559574000178, + -9.628851217999966 + ], + [ + 13.20827956300002, + -9.707405575999871 + ], + [ + 13.318949519000114, + -9.861683723999931 + ], + [ + 13.344610548000162, + -9.937917468999956 + ], + [ + 13.313730443000168, + -9.98451900699996 + ], + [ + 13.439319516000182, + -10.117548694999925 + ], + [ + 13.456399488000102, + -10.184393031999889 + ], + [ + 13.53415052400004, + -10.295086456999968 + ], + [ + 13.528840589000026, + -10.386439813999914 + ], + [ + 13.642049591000102, + -10.50037083299992 + ], + [ + 13.77478054800008, + -10.66843033899994 + ], + [ + 13.723440553000046, + -10.757094109999912 + ], + [ + 13.831549502000087, + -10.909882291999963 + ], + [ + 13.865059512000016, + -11.007676470999911 + ], + [ + 13.77085044100005, + -11.571566827999959 + ], + [ + 13.793419554000025, + -11.806591369999921 + ], + [ + 13.759791925000059, + -11.960567032999961 + ], + [ + 14.002443139000036, + -12.020189749999872 + ], + [ + 14.07284130500011, + -12.071456964999982 + ], + [ + 14.093246023000177, + -12.148409839999943 + ], + [ + 14.045855816000142, + -12.37664681299998 + ], + [ + 13.92738029800006, + -12.594773963999955 + ], + [ + 13.88883068000007, + -12.771111023999936 + ], + [ + 13.881696170000055, + -12.897714966999843 + ], + [ + 13.900245896000115, + -13.065957204999847 + ], + [ + 13.960175779999986, + -13.217416206999872 + ], + [ + 13.87855120800009, + -13.18504842599998 + ], + [ + 13.678413051, + -13.192948117999947 + ], + [ + 13.599304387000075, + -13.277195579999955 + ], + [ + 13.599769672000093, + -13.395851119999975 + ], + [ + 13.55597358000017, + -13.497558712999819 + ], + [ + 13.45631512600005, + -13.56924958199994 + ], + [ + 13.427713597000093, + -13.502338774999885 + ], + [ + 13.328948940000146, + -13.541444777999914 + ], + [ + 13.321798558000069, + -13.675225469999873 + ], + [ + 13.403581056000121, + -13.798948396999947 + ], + [ + 13.39821826900004, + -13.85839891899991 + ], + [ + 13.130525830000181, + -14.102549802999874 + ], + [ + 13.067066187000137, + -14.19138558799989 + ], + [ + 12.983496092999985, + -14.460712446999878 + ], + [ + 12.932549619000156, + -14.75261924799986 + ], + [ + 12.918695753000122, + -14.912461926999981 + ], + [ + 13.039358455000183, + -15.278354543999967 + ], + [ + 13.096114615000033, + -15.627256249999846 + ], + [ + 13.074216569000043, + -15.820404962999874 + ], + [ + 13.106393290000085, + -15.887899095999956 + ], + [ + 13.13186652700017, + -16.052025830999867 + ], + [ + 13.257892016000085, + -16.181255673999942 + ], + [ + 13.266829994000148, + -16.264072898999927 + ], + [ + 13.184153698000046, + -16.376871231999814 + ], + [ + 13.167618439000137, + -16.460034307999933 + ], + [ + 13.235100172000045, + -16.612549994999938 + ], + [ + 13.221246306000069, + -16.823558452999976 + ], + [ + 13.16969231100012, + -16.96379184499989 + ], + [ + 12.984609022000143, + -16.982998961999954 + ], + [ + 12.808094205000032, + -17.115066245999913 + ], + [ + 12.612896082000134, + -17.20937067899996 + ], + [ + 12.473862374000134, + -17.253677018999838 + ], + [ + 12.548744027000055, + -17.385818099999938 + ], + [ + 12.54538222900004, + -17.422797878999972 + ], + [ + 12.683215949999976, + -17.621143964999874 + ], + [ + 12.622703585000124, + -17.81612825299993 + ], + [ + 12.434442893000039, + -17.799319262999916 + ], + [ + 12.50840245, + -17.947238377999952 + ], + [ + 12.484869864000188, + -17.99430355099986 + ], + [ + 12.51176424800019, + -18.098519290999832 + ], + [ + 12.599170998000147, + -18.159031655999968 + ], + [ + 12.627746282000146, + -18.21450132399997 + ], + [ + 12.787431690000062, + -18.344771 + ], + [ + 12.774824947000127, + -18.470838426999876 + ], + [ + 12.833656414000188, + -18.500254159999884 + ], + [ + 12.867274394000162, + -18.57589461699996 + ], + [ + 13.102600259000042, + -18.78600699599997 + ], + [ + 13.211858697000025, + -18.84063621499996 + ], + [ + 13.098398012000075, + -18.886860937999927 + ], + [ + 13.106802507000111, + -18.97510813799994 + ], + [ + 13.23286993400012, + -18.996119375999967 + ], + [ + 13.353702984000165, + -18.865938168999946 + ], + [ + 13.392555343000083, + -18.983512632999975 + ], + [ + 13.476600295000082, + -19.02973735599994 + ], + [ + 13.35473511500004, + -19.096973317999982 + ], + [ + 13.34633061900007, + -19.19782725999994 + ], + [ + 13.368462440000144, + -19.33157392399994 + ], + [ + 13.439824699000155, + -19.36913300799995 + ], + [ + 13.650155566000137, + -19.38040073299993 + ], + [ + 13.687714650000032, + -19.45551889999996 + ], + [ + 13.78536826700008, + -19.45927480799992 + ], + [ + 13.800391900000136, + -19.515613432999885 + ], + [ + 14.052037760000019, + -19.49307798299992 + ], + [ + 14.1083763850001, + -19.6696056749999 + ], + [ + 14.175982735000105, + -19.72970020899993 + ], + [ + 14.258612719000098, + -19.733456116999946 + ], + [ + 14.314951344000178, + -19.80857428399986 + ], + [ + 14.303683619000026, + -19.88744835999995 + ], + [ + 14.202274094000074, + -19.943786984999917 + ], + [ + 14.179738643000178, + -20.056464234999908 + ], + [ + 14.266124535000074, + -20.041440601999966 + ], + [ + 14.408849053000097, + -20.150361943999883 + ], + [ + 14.495234945, + -20.37196053699995 + ], + [ + 14.649227187000122, + -20.390740077999965 + ], + [ + 14.713077629000054, + -20.420787344999894 + ], + [ + 14.795707613000047, + -20.510929144999977 + ], + [ + 14.698053996, + -20.578535495999915 + ], + [ + 14.570353112000134, + -20.616094578999935 + ], + [ + 14.570353112000134, + -20.751307279999878 + ], + [ + 14.525282212000036, + -20.815157721999924 + ], + [ + 14.570353112000134, + -20.909055429999967 + ], + [ + 14.641715370000043, + -20.961638146999974 + ], + [ + 14.758148529000152, + -20.94285860499997 + ], + [ + 14.867069871000183, + -20.863984529999982 + ], + [ + 14.810731246000103, + -20.781354545999932 + ], + [ + 14.885849413000017, + -20.751307279999878 + ], + [ + 15.009794388000103, + -20.751307279999878 + ], + [ + 15.06237710500011, + -20.84144907999996 + ], + [ + 15.017306205000182, + -20.886519979999946 + ], + [ + 15.03232983900017, + -21.160701289999963 + ], + [ + 15.272707973000138, + -21.34849670699998 + ], + [ + 15.331263350000143, + -21.656773544999965 + ], + [ + 15.220125256000188, + -21.806717525999943 + ], + [ + 15.368803878999984, + -21.854413386999965 + ], + [ + 15.400408857000059, + -22.020804301999874 + ], + [ + 15.463917283000114, + -22.077043690999915 + ], + [ + 15.56191291600004, + -22.020804301999874 + ], + [ + 15.580692457000168, + -21.926906592999842 + ], + [ + 15.663322441000162, + -21.964465675999918 + ], + [ + 15.603227908, + -22.22362335199989 + ], + [ + 15.723830970000108, + -22.323766966999983 + ], + [ + 15.971306926000125, + -22.32127696999993 + ], + [ + 16.016911072000084, + -22.539525384999877 + ], + [ + 15.969898460000081, + -22.586537996999937 + ], + [ + 15.864263538000046, + -22.59827520999994 + ], + [ + 15.852526324, + -22.69804152599994 + ], + [ + 15.77036582900007, + -22.674567098999944 + ], + [ + 15.74689140200013, + -22.791939234999973 + ], + [ + 15.805577470000173, + -22.791939234999973 + ], + [ + 15.782103043000063, + -22.950391617999912 + ], + [ + 15.858394931000191, + -23.061895146999973 + ], + [ + 15.98750428, + -23.16753006999994 + ], + [ + 15.999241494000046, + -23.331851059999963 + ], + [ + 16.110745023000106, + -23.45509180299996 + ], + [ + 16.22997134000019, + -23.445996115999947 + ], + [ + 16.291546582000024, + -23.34217347299989 + ], + [ + 16.411516799000026, + -23.19643505199997 + ], + [ + 16.350091425000187, + -23.099909462999904 + ], + [ + 16.313892432000046, + -22.98226273599994 + ], + [ + 16.060499480000033, + -22.90986474899995 + ], + [ + 15.997151242000086, + -22.70172053899995 + ], + [ + 16.196245704000034, + -22.54787481799997 + ], + [ + 16.368190922000167, + -22.37592960099994 + ], + [ + 16.350091425000187, + -22.249233124999932 + ], + [ + 16.40438991500008, + -22.213034131999905 + ], + [ + 16.531086390000098, + -22.25828287299987 + ], + [ + 16.68493211100008, + -22.113486900999874 + ], + [ + 16.4586884040001, + -22.00488992199996 + ], + [ + 16.1781462080001, + -21.950591431999953 + ], + [ + 16.07859897700007, + -21.860093948999918 + ], + [ + 16.23244469700012, + -21.73339747299991 + ], + [ + 16.02430048700012, + -21.35330804599988 + ], + [ + 15.770907535000106, + -21.199462324999843 + ], + [ + 15.618356139000014, + -20.98267876199992 + ], + [ + 15.760047837000059, + -20.904440530999977 + ], + [ + 15.745568240000068, + -20.730685363999896 + ], + [ + 15.846925421000151, + -20.607608787999823 + ], + [ + 15.93380300400014, + -20.45557301699995 + ], + [ + 15.926563206000083, + -20.35421583599998 + ], + [ + 16.01344078900007, + -20.303537245999905 + ], + [ + 15.891383259000122, + -20.187301681999884 + ], + [ + 16.00180411800011, + -20.189157445999967 + ], + [ + 16.168270204000066, + -20.105924410999933 + ], + [ + 16.257905787000027, + -20.112326952999865 + ], + [ + 16.398761701000183, + -19.97787358799991 + ], + [ + 16.590837943999986, + -19.965068505999852 + ], + [ + 16.61644810900009, + -19.843420222999896 + ], + [ + 16.654863358000057, + -19.805004975999964 + ], + [ + 16.795719267000095, + -19.805004975999964 + ], + [ + 16.840537056000073, + -19.683356692999894 + ], + [ + 17.192676825000035, + -19.632136362999972 + ], + [ + 17.16706666000016, + -19.766589728999975 + ], + [ + 17.211884449000138, + -19.830615140999896 + ], + [ + 17.512054572000125, + -19.730719353999973 + ], + [ + 17.798981428000047, + -19.780619675999958 + ], + [ + 17.973632558000077, + -19.718244284999855 + ], + [ + 18.173233849000155, + -19.780619687999945 + ], + [ + 18.056799763000072, + -19.83467837099994 + ], + [ + 17.74810226500017, + -19.862707087999922 + ], + [ + 17.671354673000167, + -19.932497566999928 + ], + [ + 17.42002047700015, + -20.092011563999904 + ], + [ + 17.289493314000083, + -20.20489992099982 + ], + [ + 17.151910629000156, + -20.282510665999837 + ], + [ + 17.060188838999977, + -20.360121411999955 + ], + [ + 17.056661078000047, + -20.430676634999884 + ], + [ + 17.10604973400018, + -20.50475961899997 + ], + [ + 17.190716002000045, + -20.536509469999885 + ], + [ + 17.34593749300018, + -20.465954245999853 + ], + [ + 17.586430427000096, + -20.272581190999915 + ], + [ + 17.779968568000072, + -20.23936044499993 + ], + [ + 18.03751185600015, + -20.30316710099993 + ], + [ + 18.22891836000008, + -20.383341802999894 + ], + [ + 18.493383305, + -20.564670327999977 + ], + [ + 18.599603425, + -20.713218646999962 + ], + [ + 18.66489628700009, + -20.856095315999937 + ], + [ + 18.823418975000095, + -21.027779505999888 + ], + [ + 18.925973415000158, + -21.108512724999912 + ], + [ + 19.154529055000012, + -21.2484542549999 + ], + [ + 19.409527055000183, + -21.385737880999955 + ], + [ + 19.77213365500006, + -21.498391010999853 + ], + [ + 20.009475042000076, + -21.4534366179999 + ], + [ + 20.127831179999987, + -21.44836240199993 + ], + [ + 20.213961349000158, + -21.50329996599993 + ], + [ + 20.335859338000148, + -21.517081194999946 + ], + [ + 20.53951305700008, + -21.59550649499994 + ], + [ + 21.030926574000034, + -21.737014910999903 + ], + [ + 21.488473505000172, + -21.52427814899994 + ], + [ + 21.586571472, + -21.48802882399991 + ], + [ + 22.024219557000094, + -21.250273762999882 + ], + [ + 22.09372726700019, + -21.163602162999894 + ], + [ + 22.101513102000013, + -21.10714657099993 + ], + [ + 22.16987991900004, + -21.044731404999823 + ], + [ + 22.25491151900013, + -20.86554450199992 + ], + [ + 22.42012538400013, + -20.842564494999976 + ], + [ + 22.44790130000007, + -20.636387120999927 + ], + [ + 22.633481153000105, + -20.564581183999962 + ], + [ + 22.757315186000028, + -20.482389212999976 + ], + [ + 22.804732962000116, + -20.48032025799995 + ], + [ + 22.90831704400017, + -20.370752626999888 + ], + [ + 22.976662198000042, + -20.34813747599992 + ], + [ + 22.90851126800004, + -20.296524612999917 + ], + [ + 22.935055128000045, + -20.245711855999957 + ], + [ + 22.888567020000096, + -20.128458965999982 + ], + [ + 22.78390798000015, + -20.013302782999915 + ], + [ + 22.64970774400018, + -19.95837660299992 + ], + [ + 22.529000542000063, + -19.94008103599998 + ], + [ + 22.38618953800011, + -19.94302051699998 + ], + [ + 22.33539995900003, + -20.003510050999864 + ], + [ + 22.28553227599997, + -19.89902733799994 + ], + [ + 22.160650224000108, + -19.86295444299998 + ], + [ + 22.157964911000022, + -19.80924004799988 + ], + [ + 22.09401253200008, + -19.663337555999874 + ], + [ + 22.066696678000028, + -19.494787773999917 + ], + [ + 22.110876428000097, + -19.348671940999964 + ], + [ + 22.21313368200009, + -19.209792968999864 + ], + [ + 22.23552593100004, + -19.033769277999966 + ], + [ + 22.18570551199997, + -18.890782270999864 + ], + [ + 22.10975589100019, + -18.778998541999954 + ], + [ + 22.156238140000085, + -18.697255688999917 + ], + [ + 21.977546524000047, + -18.459792211999968 + ], + [ + 21.894386003000136, + -18.404320499999926 + ], + [ + 21.854171525000027, + -18.28599707999996 + ], + [ + 22.007498710000107, + -18.384610109999983 + ], + [ + 22.158064675000105, + -18.530922054999905 + ], + [ + 22.2468627, + -18.658270767999966 + ], + [ + 22.39983627600003, + -18.752986052999916 + ], + [ + 22.509445957000082, + -18.88568567699997 + ], + [ + 22.688054427000168, + -18.81370490699993 + ], + [ + 22.78337987900005, + -18.70888257699994 + ], + [ + 22.939320810000027, + -18.60213639999995 + ], + [ + 23.061965969000028, + -18.69930486499993 + ], + [ + 23.16558555300014, + -18.70510073099996 + ], + [ + 23.37530185600008, + -18.522571260999882 + ], + [ + 23.457523102000152, + -18.509535679999942 + ], + [ + 23.4795419350001, + -18.425360820999913 + ], + [ + 23.32821020400013, + -18.14028915499989 + ], + [ + 23.252422898000134, + -17.972146712999972 + ], + [ + 23.302320470000097, + -17.887664127999926 + ], + [ + 23.36906659000016, + -17.70347796599998 + ], + [ + 23.427842319999968, + -17.70348295599996 + ], + [ + 23.339562698000066, + -17.88357084499995 + ], + [ + 23.318412790000025, + -17.97998667899992 + ], + [ + 23.38793800000019, + -18.163447759999883 + ], + [ + 23.46267564100009, + -18.204075446999923 + ], + [ + 23.671616738000182, + -18.258142142999873 + ], + [ + 23.805548488000113, + -18.298451674999967 + ], + [ + 23.93008397400007, + -18.19635110199988 + ], + [ + 24.01284096800009, + -18.095525994999946 + ], + [ + 24.15085326700006, + -17.979351557999962 + ], + [ + 24.222644920000107, + -17.82898410699994 + ], + [ + 24.351653171000066, + -17.79297489999982 + ], + [ + 24.452237437000065, + -17.818012155999895 + ], + [ + 24.508398963000104, + -17.71470883199993 + ], + [ + 24.459143246000053, + -17.641630957999894 + ], + [ + 24.389153703000147, + -17.468679660999896 + ], + [ + 24.544166667000127, + -17.4783333339999 + ], + [ + 24.581666666000046, + -17.420833332999962 + ], + [ + 24.650833334000026, + -17.435833332999948 + ], + [ + 24.78718344600003, + -17.515833332999932 + ], + [ + 24.850833333000026, + -17.52873036699998 + ], + [ + 24.915930487000082, + -17.39333333299993 + ], + [ + 24.973333334000074, + -17.327499999999873 + ], + [ + 25.19000000000017, + -17.230833333999954 + ], + [ + 25.130833333000055, + -17.329166666999924 + ], + [ + 25.093333333000032, + -17.44833333299988 + ], + [ + 24.98416666600008, + -17.47833333299991 + ], + [ + 25.034166667000022, + -17.5675 + ], + [ + 25.08, + -17.4975 + ], + [ + 25.183333333, + -17.540833333999956 + ], + [ + 25.23666666700018, + -17.6 + ], + [ + 25.16916666700007, + -17.704166666999868 + ], + [ + 25.191666667000106, + -17.76782037499987 + ], + [ + 25.0795143470001, + -17.85907412699993 + ], + [ + 24.907602335000036, + -17.823024338999915 + ], + [ + 24.725241584000116, + -17.9050069729999 + ], + [ + 24.661975368000185, + -17.96100697199995 + ], + [ + 24.554903269000135, + -18.109175552999943 + ], + [ + 24.443441713000084, + -18.17176010399993 + ], + [ + 24.33913970800006, + -18.203155703999983 + ], + [ + 24.26871438400019, + -18.155811503999928 + ], + [ + 24.293776024000067, + -18.098576027999968 + ], + [ + 24.211572298000192, + -18.03725939599991 + ], + [ + 23.94548136500015, + -18.22890397499998 + ], + [ + 23.86413592300005, + -18.33104708899998 + ], + [ + 23.725054, + -18.42955748299994 + ], + [ + 23.562784866000072, + -18.570380734999958 + ], + [ + 23.715049840000063, + -18.587536500999875 + ], + [ + 23.818925621000176, + -18.532480271999873 + ], + [ + 23.911929843, + -18.54913880599986 + ], + [ + 24.02198582900013, + -18.492490745999874 + ], + [ + 24.07596473500007, + -18.53594189699993 + ], + [ + 24.063983066000162, + -18.612728805999836 + ], + [ + 24.052567352000096, + -18.63950796299997 + ], + [ + 24.01273752100019, + -18.793765158999975 + ], + [ + 23.967291900000077, + -19.084728619999964 + ], + [ + 23.890844439000148, + -18.992885439999895 + ], + [ + 23.79453982200016, + -18.94834971399996 + ], + [ + 23.849177154000017, + -18.889663888999962 + ], + [ + 23.802880669000047, + -18.81486528899984 + ], + [ + 23.85644767600013, + -18.680920437999873 + ], + [ + 23.823154529000135, + -18.612644969999906 + ], + [ + 23.892421219000028, + -18.572767942999974 + ], + [ + 23.819886975000145, + -18.564157331999922 + ], + [ + 23.730342689000054, + -18.616912880999905 + ], + [ + 23.50357496300012, + -18.64615278699989 + ], + [ + 23.449451241000133, + -18.608462619999898 + ], + [ + 23.316605030000176, + -18.618840755999884 + ], + [ + 23.166073108000035, + -18.749813908999897 + ], + [ + 22.94453343900011, + -18.817116973999873 + ], + [ + 22.87586359300019, + -18.869825076999916 + ], + [ + 22.804035165000073, + -18.96929231899992 + ], + [ + 22.970755393000047, + -18.976833840999973 + ], + [ + 23.192872636, + -19.04100622099992 + ], + [ + 23.212892802000056, + -19.099827523999977 + ], + [ + 23.337626417000024, + -19.053721958999972 + ], + [ + 23.446429823000074, + -19.056296088999886 + ], + [ + 23.7516764880001, + -19.16754071099996 + ], + [ + 23.70034459400017, + -19.210140279999905 + ], + [ + 23.485817161000057, + -19.218974095999954 + ], + [ + 23.428192487000103, + -19.280792110999926 + ], + [ + 23.462632405000022, + -19.32615857899998 + ], + [ + 23.59461360400013, + -19.40800548399983 + ], + [ + 23.68849303400009, + -19.42964074199989 + ], + [ + 23.695370730000036, + -19.499265441999967 + ], + [ + 23.654656191000072, + -19.6136057949999 + ], + [ + 23.559275777000096, + -19.720942942999955 + ], + [ + 23.676031694000073, + -19.76143488799994 + ], + [ + 23.477108087000147, + -19.97205237599985 + ], + [ + 23.45746281200013, + -20.08133990799996 + ], + [ + 23.684301499000128, + -19.825299115999883 + ], + [ + 23.85495249100012, + -19.60336569599997 + ], + [ + 23.895661105000045, + -19.42893999699993 + ], + [ + 23.88116700100005, + -19.33742126999988 + ], + [ + 23.95952013200008, + -19.243388714999924 + ], + [ + 24.07161925300005, + -19.188830140999983 + ], + [ + 24.165586678000125, + -19.108726460999947 + ], + [ + 24.279442781000114, + -19.063574484999947 + ], + [ + 24.54479521500008, + -18.871799845999817 + ], + [ + 24.557211535000135, + -18.817542853999953 + ], + [ + 24.506937873000027, + -18.698219929999937 + ], + [ + 24.569041537000032, + -18.64592617699998 + ], + [ + 24.71808095500012, + -18.69304982299991 + ], + [ + 24.750309786000173, + -18.744274308999934 + ], + [ + 24.904069541000126, + -18.794219351999914 + ], + [ + 24.90711695800013, + -18.855892527999913 + ], + [ + 25.05375651700018, + -18.92775233599997 + ], + [ + 25.204392126000073, + -18.81793042399994 + ], + [ + 25.302876677000143, + -18.80457200099994 + ], + [ + 25.391769252000074, + -18.859267652999847 + ], + [ + 25.53621582000011, + -18.880784468999877 + ], + [ + 25.6012583160001, + -18.85388932199993 + ], + [ + 25.709668610000108, + -18.873071241999924 + ], + [ + 25.830801979000114, + -18.83850334799996 + ], + [ + 26.372417746999986, + -19.360344708999946 + ], + [ + 26.102394511000114, + -19.48374602199982 + ], + [ + 25.95589309800016, + -19.519766035999908 + ], + [ + 25.728863592000096, + -19.522666122999965 + ], + [ + 25.71258702000017, + -19.45519847099996 + ], + [ + 25.557209415000102, + -19.59951635899995 + ], + [ + 25.421678369, + -19.544573053999898 + ], + [ + 25.347451491000015, + -19.458215091999932 + ], + [ + 25.221682204, + -19.53498260799995 + ], + [ + 25.083122931000105, + -19.589059300999907 + ], + [ + 24.923761849000186, + -19.601663799999983 + ], + [ + 24.91623826800003, + -19.49977096999993 + ], + [ + 24.853507578, + -19.484864140999946 + ], + [ + 24.839836850000097, + -19.40547525799991 + ], + [ + 24.888952902000028, + -19.32155501699998 + ], + [ + 24.89270767900007, + -19.231139088999896 + ], + [ + 24.965328507000038, + -19.13631736899987 + ], + [ + 24.90213319000003, + -19.071585119999952 + ], + [ + 24.76888800500018, + -19.263315895999824 + ], + [ + 24.653197430000034, + -19.120138499999882 + ], + [ + 24.707421784000076, + -19.31254824599995 + ], + [ + 24.653194670000175, + -19.38587415599983 + ], + [ + 24.588305985000034, + -19.398096155999895 + ], + [ + 24.51614044900009, + -19.268091595999977 + ], + [ + 24.448934356000052, + -19.262175771999978 + ], + [ + 24.38669223100004, + -19.347317724999982 + ], + [ + 24.25090836300012, + -19.383121917999915 + ], + [ + 24.310100047000105, + -19.55881392999993 + ], + [ + 24.261947080000027, + -19.59755076899995 + ], + [ + 24.30809330700015, + -19.748939451999945 + ], + [ + 24.268515203000163, + -19.892569392999917 + ], + [ + 24.302775485000154, + -19.940990652999915 + ], + [ + 24.398707672000057, + -19.866136163999954 + ], + [ + 24.44107731500003, + -19.87118660899995 + ], + [ + 24.5993298840001, + -19.742783193999912 + ], + [ + 24.7058871320001, + -19.688903548999917 + ], + [ + 24.72926846700011, + -19.726529536999976 + ], + [ + 24.59112616900012, + -19.841301231999978 + ], + [ + 24.502141601000176, + -19.95742602399997 + ], + [ + 24.627798261, + -20.00420699199998 + ], + [ + 24.60197997400013, + -20.169717662999915 + ], + [ + 24.70809902700006, + -20.22933975099994 + ], + [ + 24.798436903000095, + -20.36810828399996 + ], + [ + 24.841913932000182, + -20.52570486299993 + ], + [ + 24.886663247, + -20.57806635599991 + ], + [ + 25.03156608800009, + -20.547519263999902 + ], + [ + 25.09901738500014, + -20.492925200999878 + ], + [ + 25.137232494000102, + -20.54790934899995 + ], + [ + 25.284381598000095, + -20.540181238999935 + ], + [ + 25.361081455000146, + -20.471569901999885 + ], + [ + 25.370442202000106, + -20.410407904999886 + ], + [ + 25.495535349000136, + -20.287544315999924 + ], + [ + 25.668832165000026, + -20.234741047999933 + ], + [ + 25.9282285270001, + -20.29978747399997 + ], + [ + 26.05854245300003, + -20.21228222099984 + ], + [ + 26.07285576600009, + -20.295834194999884 + ], + [ + 26.14619581500017, + -20.31338099499993 + ], + [ + 26.249808392000148, + -20.268152233999842 + ], + [ + 26.350672483000096, + -20.315141586999914 + ], + [ + 26.343286123000155, + -20.411969641999974 + ], + [ + 26.208639988000186, + -20.64699595299993 + ], + [ + 26.19702727300006, + -20.778172063999932 + ], + [ + 26.255455940000047, + -20.96494227599993 + ], + [ + 26.316745210000192, + -20.98153909599995 + ], + [ + 26.405765520999978, + -21.058773458999838 + ], + [ + 26.415243556000064, + -21.14247803099994 + ], + [ + 26.305417004000105, + -21.28964677299996 + ], + [ + 26.27253722500018, + -21.231961906999913 + ], + [ + 26.025986788000125, + -21.230631080999842 + ], + [ + 25.835755978000122, + -21.172920593999947 + ], + [ + 25.819814069000074, + -21.140884101999916 + ], + [ + 25.642132627000137, + -21.131878656999902 + ], + [ + 25.469069032000107, + -21.163001195999982 + ], + [ + 25.276481157000035, + -21.128484913999955 + ], + [ + 25.27424050000019, + -21.078451807999897 + ], + [ + 25.169151669000087, + -21.029085402999954 + ], + [ + 25.123720175000187, + -21.038891311999976 + ], + [ + 24.990312069000083, + -21.205239769999935 + ], + [ + 24.82909626200012, + -21.216110375999904 + ], + [ + 24.662784210000098, + -21.347725643999865 + ], + [ + 24.54024296700004, + -21.39342442399993 + ], + [ + 24.617015296000034, + -21.484245390999945 + ], + [ + 24.70801379200003, + -21.41869743799998 + ], + [ + 24.81652837600012, + -21.37794300799993 + ], + [ + 24.877658407000126, + -21.411113804999843 + ], + [ + 25.028329785000096, + -21.41166536999998 + ], + [ + 25.316294907000156, + -21.522549576999893 + ], + [ + 25.41498374200006, + -21.51846871899994 + ], + [ + 25.669237270000053, + -21.443187213999977 + ], + [ + 25.8815557260001, + -21.45298620899996 + ], + [ + 26.157793097000138, + -21.410149580999928 + ], + [ + 26.320787189000043, + -21.432857085999956 + ], + [ + 26.32711268600019, + -21.530421032999982 + ], + [ + 26.384489628000097, + -21.550245617999963 + ], + [ + 26.420541644000025, + -21.66614365399994 + ], + [ + 26.35819843700017, + -21.80574672599988 + ], + [ + 26.37692126100012, + -21.934932375999892 + ], + [ + 26.499121867000042, + -21.974686169999927 + ], + [ + 26.509280442999966, + -22.067377369999917 + ], + [ + 26.720634315000154, + -22.09873491299993 + ], + [ + 26.773132660000044, + -22.075814260999948 + ], + [ + 26.885137336000128, + -22.109470395999892 + ], + [ + 26.822696740000083, + -22.198217770999975 + ], + [ + 26.7048850220001, + -22.31030633399996 + ], + [ + 26.651393407000057, + -22.41275320299991 + ], + [ + 26.521763174000114, + -22.434172815999943 + ], + [ + 26.470322667000175, + -22.497240958999953 + ], + [ + 26.380028270000082, + -22.508274703999973 + ], + [ + 26.35495383300008, + -22.588637303999917 + ], + [ + 26.26881007100019, + -22.647390805999862 + ], + [ + 26.283129124000027, + -22.74241905799994 + ], + [ + 26.342278944000043, + -22.81997189699996 + ], + [ + 26.448356079, + -22.775587445999918 + ], + [ + 26.488623924000137, + -22.82163007899993 + ], + [ + 26.333295324000176, + -22.865624589999925 + ], + [ + 26.30198004900018, + -22.84614193599998 + ], + [ + 26.068279330000166, + -22.8341818909999 + ], + [ + 26.076676799000154, + -22.90921793699988 + ], + [ + 26.00138531099998, + -22.933568068999875 + ], + [ + 26.002677778000077, + -23.00317125999993 + ], + [ + 26.145216499000128, + -23.070350135999945 + ], + [ + 26.078931654000087, + -23.117216984999914 + ], + [ + 26.08190876200007, + -23.22979965199994 + ], + [ + 26.006117856000174, + -23.237661011999876 + ], + [ + 25.851192245, + -23.182536209999967 + ], + [ + 25.630907779999973, + -23.407019202999948 + ], + [ + 25.642565886, + -23.488209852999944 + ], + [ + 25.78363183700003, + -23.522070020999877 + ], + [ + 25.72745674400005, + -23.784482177999905 + ], + [ + 25.841975756000124, + -23.58941068699994 + ], + [ + 25.931333219000123, + -23.604047861999902 + ], + [ + 26.07095573400011, + -23.58191728099996 + ], + [ + 26.049707709000188, + -23.70342560099988 + ], + [ + 26.17645648200005, + -23.702954460999877 + ], + [ + 26.011253519000093, + -23.85684606199993 + ], + [ + 25.858419061000063, + -23.90344715799995 + ], + [ + 25.826887678000162, + -24.02172394999991 + ], + [ + 25.756757162000156, + -24.10612657699994 + ], + [ + 25.64053313200003, + -24.047497716999942 + ], + [ + 25.516499605000092, + -24.105465429999867 + ], + [ + 25.546692422000092, + -24.196620855999868 + ], + [ + 25.45799999800016, + -24.281812426999977 + ], + [ + 25.508328547000133, + -24.360851844999956 + ], + [ + 25.405408288000046, + -24.381346768999947 + ], + [ + 25.33265326500009, + -24.44601505099996 + ], + [ + 25.27980483700003, + -24.580629851999902 + ], + [ + 25.225273231000017, + -24.596585927999968 + ], + [ + 25.225795039000047, + -24.705604405999907 + ], + [ + 25.079403825000043, + -24.676627557999836 + ], + [ + 25.046381577000147, + -24.763308815999835 + ], + [ + 24.964279313000134, + -24.742410091999943 + ], + [ + 24.77327937200016, + -24.767910676999918 + ], + [ + 24.749193124000158, + -24.73424483499997 + ], + [ + 24.631663509000077, + -24.71657731799985 + ], + [ + 24.542756046000022, + -24.737241270999846 + ], + [ + 24.478883551000138, + -24.699636347999956 + ], + [ + 24.381458442000167, + -24.714562444999956 + ], + [ + 24.350185624000062, + -24.79220736499991 + ], + [ + 24.424011569000186, + -24.83700225599989 + ], + [ + 24.573597017000168, + -24.8530462679999 + ], + [ + 24.688984569000183, + -24.841098444999886 + ], + [ + 24.862116403000073, + -24.925054574999933 + ], + [ + 24.785132005000037, + -25.065127695999877 + ], + [ + 24.657387866000192, + -25.108446302999937 + ], + [ + 24.592009606000147, + -25.19890618399984 + ], + [ + 24.661790054000107, + -25.237050332999956 + ], + [ + 24.650941439000178, + -25.294186411999874 + ], + [ + 24.707844366000188, + -25.366166103999944 + ], + [ + 24.89010169200003, + -25.404524597999966 + ], + [ + 25.07773578600012, + -25.601627031999953 + ], + [ + 25.082891576, + -25.66589444199991 + ], + [ + 25.17432402000003, + -25.654054616999872 + ], + [ + 25.19741685000008, + -25.76033148399995 + ], + [ + 25.342472076000092, + -25.768367766999972 + ], + [ + 25.58155441300005, + -25.637720107999883 + ], + [ + 25.663482666000164, + -25.467847823999932 + ], + [ + 25.69029617300015, + -25.37393951399997 + ], + [ + 25.735279083000023, + -25.360385894999865 + ], + [ + 25.898609161000024, + -25.49729156499984 + ], + [ + 25.990283966000106, + -25.594535827999948 + ], + [ + 26.048542022999982, + -25.745178222999982 + ], + [ + 26.11656379700014, + -25.785844802999975 + ], + [ + 26.33793830899998, + -25.765804290999938 + ], + [ + 26.442131042000028, + -25.85910987899996 + ], + [ + 26.503473282000073, + -25.80820846599994 + ], + [ + 26.509386063000193, + -25.74373054499995 + ], + [ + 26.679033279000123, + -25.74059867899996 + ], + [ + 26.753770828000143, + -25.836481093999907 + ], + [ + 26.85557937600015, + -25.83445358299997 + ], + [ + 26.95345306400003, + -25.882450103999872 + ], + [ + 27.14076995800019, + -25.92259788499996 + ], + [ + 27.26613616900005, + -25.928752898999846 + ], + [ + 27.332496643000013, + -25.97008323699987 + ], + [ + 27.24474525500011, + -26.09569358799996 + ], + [ + 27.45195198100015, + -26.068971633999922 + ], + [ + 27.580810547000112, + -26.024963378999928 + ], + [ + 27.63788414000004, + -26.04033660899995 + ], + [ + 27.702877045000093, + -25.939020156999902 + ], + [ + 27.853204727000048, + -25.820434569999975 + ], + [ + 28.049261093000098, + -25.784488677999946 + ], + [ + 28.171255112000097, + -25.77782058699995 + ], + [ + 28.435140610000133, + -25.928339004999884 + ], + [ + 28.503149033000113, + -25.88926887499997 + ], + [ + 28.504005432000042, + -25.733133315999908 + ], + [ + 28.535039902000108, + -25.62508583099998 + ], + [ + 28.67403602600001, + -25.680772780999973 + ], + [ + 28.843215941999972, + -25.59602928199996 + ], + [ + 28.961977005000165, + -25.650638579999907 + ], + [ + 29.0530662540001, + -25.628929137999933 + ], + [ + 29.172304153000084, + -25.652067183999918 + ], + [ + 29.264802933, + -25.546810149999942 + ], + [ + 29.496629714999983, + -25.461389541999893 + ], + [ + 29.661767960000134, + -25.43537712099993 + ], + [ + 29.63204193100006, + -25.358833312999934 + ], + [ + 29.697324753000032, + -25.23682594299993 + ], + [ + 29.535768509000036, + -25.146350860999917 + ], + [ + 29.69556808500016, + -25.004886626999962 + ], + [ + 29.748132706000035, + -24.90904998799988 + ], + [ + 29.808835983000108, + -24.91086387599995 + ], + [ + 29.790746689000173, + -25.031169890999934 + ], + [ + 29.809833527000023, + -25.199447631999874 + ], + [ + 29.920339583999976, + -25.145631789999925 + ], + [ + 29.962270737000097, + -25.05727577199991 + ], + [ + 30.09171867400005, + -25.08161926299988 + ], + [ + 30.144615173000034, + -25.13592719999997 + ], + [ + 30.17308235200005, + -24.925508498999932 + ], + [ + 30.238559723000037, + -24.872535705999894 + ], + [ + 30.301471710000044, + -24.948553084999958 + ], + [ + 30.427572250000082, + -24.909805297999924 + ], + [ + 30.41441535900009, + -24.862863540999967 + ], + [ + 30.517873764000115, + -24.762348174999943 + ], + [ + 30.616130829000156, + -24.743705749999947 + ], + [ + 30.68212890600006, + -24.586772918999884 + ], + [ + 30.78091049200009, + -24.54514884899993 + ], + [ + 30.925546646000043, + -24.63813018799982 + ], + [ + 30.946399689000145, + -24.789855956999872 + ], + [ + 30.852457047000087, + -25.051334380999947 + ], + [ + 30.954076767000117, + -25.124200820999874 + ], + [ + 30.950487137000152, + -25.239395141999978 + ], + [ + 30.85251426700006, + -25.294033050999815 + ], + [ + 30.797687531000122, + -25.38434219399994 + ], + [ + 30.693386078000174, + -25.374347686999897 + ], + [ + 30.704750061000084, + -25.23623657199994 + ], + [ + 30.62611579900016, + -25.224725722999892 + ], + [ + 30.55377960200019, + -25.294631957999968 + ], + [ + 30.67759323100006, + -25.458215713999834 + ], + [ + 30.843206406000036, + -25.50542640699996 + ], + [ + 30.743116379000185, + -25.636444091999977 + ], + [ + 30.746143341, + -25.73682594299993 + ], + [ + 30.898250580000024, + -25.825372695999818 + ], + [ + 31.018678665000095, + -25.82166671799996 + ], + [ + 31.12825965900015, + -25.717645644999948 + ], + [ + 31.220478058000083, + -25.729101180999976 + ], + [ + 31.42972755400018, + -25.64197349499983 + ], + [ + 31.444871902000045, + -25.711408614999982 + ], + [ + 31.337179184000036, + -25.760196685999972 + ], + [ + 31.212173462000067, + -25.848583220999956 + ], + [ + 31.256511688000103, + -25.900272368999936 + ], + [ + 31.16019058200004, + -25.99667358399995 + ], + [ + 31.090454102000024, + -25.99851417499991 + ], + [ + 30.735824585000103, + -25.92963600199988 + ], + [ + 30.684757233000028, + -25.826110839999956 + ], + [ + 30.59480094900016, + -25.839908599999944 + ], + [ + 30.61700630200005, + -25.942026137999846 + ], + [ + 30.57606315600009, + -25.971210479999968 + ], + [ + 30.719493866000107, + -26.059726714999897 + ], + [ + 30.9042682650001, + -26.103109359999905 + ], + [ + 30.9842052460001, + -26.029331206999927 + ], + [ + 31.07361412, + -26.043851851999932 + ], + [ + 31.154479980000076, + -26.110475539999925 + ], + [ + 31.229047775000083, + -26.083570479999935 + ], + [ + 31.396343231000117, + -26.170614242999818 + ], + [ + 31.283964157000185, + -26.321296691999976 + ], + [ + 31.256498337000153, + -26.42498397799983 + ], + [ + 31.16457176199998, + -26.357727050999927 + ], + [ + 31.048530578999987, + -26.371435164999923 + ], + [ + 31.073310852000134, + -26.48943328899992 + ], + [ + 30.982387543000073, + -26.502813338999886 + ], + [ + 31.032930374000046, + -26.621683120999876 + ], + [ + 31.15679359400019, + -26.61492156999998 + ], + [ + 31.29613304100019, + -26.647783278999896 + ], + [ + 31.195995331000063, + -26.7020988459999 + ], + [ + 31.244743347000053, + -26.796001433999947 + ], + [ + 31.110385895000093, + -26.95193481399997 + ], + [ + 31.264087677000134, + -26.978055953999956 + ], + [ + 31.3359355930001, + -26.91661262499997 + ], + [ + 31.3932685850001, + -26.95043373099992 + ], + [ + 31.290624619000027, + -27.092346190999933 + ], + [ + 31.38735580400015, + -27.150743483999975 + ], + [ + 31.35406303400009, + -27.2740955349999 + ], + [ + 31.236032486000113, + -27.231908797999893 + ], + [ + 31.048223495000173, + -27.236743926999964 + ], + [ + 31.07306480400007, + -27.388925551999876 + ], + [ + 31.049617767000086, + -27.492805480999948 + ], + [ + 30.921844482000154, + -27.47239875799994 + ], + [ + 30.891380309999988, + -27.539924621999944 + ], + [ + 30.935417175000055, + -27.62059402499989 + ], + [ + 30.870002747, + -27.717357634999928 + ], + [ + 30.80662918100012, + -27.753929137999933 + ], + [ + 30.56865501400017, + -27.74609184299993 + ], + [ + 30.480888367000148, + -27.68801307699988 + ], + [ + 30.418178558000136, + -27.70713043199993 + ], + [ + 30.214960098000063, + -27.576227187999905 + ], + [ + 30.03810882600004, + -27.51601982099993 + ], + [ + 29.918142319000026, + -27.50891303999998 + ], + [ + 29.8786468510001, + -27.427553176999936 + ], + [ + 29.694755554000153, + -27.332489013999975 + ], + [ + 29.657958984000118, + -27.361181258999977 + ], + [ + 29.71406745900009, + -27.459861754999906 + ], + [ + 29.781713486000115, + -27.470619201999966 + ], + [ + 29.788496017000114, + -27.596290587999874 + ], + [ + 29.667552948000036, + -27.65386962899987 + ], + [ + 29.70741081200009, + -27.815586089999954 + ], + [ + 29.66749763500019, + -27.944410323999875 + ], + [ + 29.601320267000062, + -27.99434661899994 + ], + [ + 29.6245994570001, + -28.106895446999886 + ], + [ + 29.662237167000114, + -28.14649200399998 + ], + [ + 29.58500099200012, + -28.2626075739999 + ], + [ + 29.376306534000094, + -28.37836646999989 + ], + [ + 29.209390640000038, + -28.50112152099996 + ], + [ + 29.012981415000183, + -28.540325164999956 + ], + [ + 28.976381302000107, + -28.514173507999942 + ], + [ + 28.854862213000047, + -28.534400939999955 + ], + [ + 28.796966553000175, + -28.57924461399989 + ], + [ + 28.655038834000095, + -28.534154891999947 + ], + [ + 28.620229721000044, + -28.457281112999965 + ], + [ + 28.488870621, + -28.457868575999896 + ], + [ + 28.426773071000127, + -28.50353431699989 + ], + [ + 28.332418442, + -28.497173308999947 + ], + [ + 28.227508544999978, + -28.573379516999978 + ], + [ + 28.259712219, + -28.620504378999954 + ], + [ + 28.362791061000166, + -28.63544082599998 + ], + [ + 28.47100067100007, + -28.729375838999943 + ], + [ + 28.332141876000037, + -28.831533431999958 + ], + [ + 28.152471542000058, + -29.06012153599994 + ], + [ + 28.028575897000167, + -29.074420928999928 + ], + [ + 28.003961563000132, + -29.14762687699988 + ], + [ + 27.927272797, + -29.233644484999957 + ], + [ + 27.82529640200005, + -29.220464705999973 + ], + [ + 27.71136093100006, + -29.29161834699994 + ], + [ + 27.791177750000088, + -29.491361617999928 + ], + [ + 27.65777206400014, + -29.524507522999897 + ], + [ + 27.635723114000086, + -29.629495620999933 + ], + [ + 27.70266723600008, + -29.837755202999915 + ], + [ + 27.609607697000172, + -29.919645308999975 + ], + [ + 27.538272858000084, + -29.947029113999974 + ], + [ + 27.565898895000146, + -30.16341972399988 + ], + [ + 27.551944733000028, + -30.2626457209999 + ], + [ + 27.643167496000046, + -30.2828330989999 + ], + [ + 27.643167496000046, + -30.187332152999886 + ], + [ + 27.800167084000066, + -30.127332686999978 + ], + [ + 27.88716697700005, + -30.015333175999842 + ], + [ + 27.974666595000087, + -30.036832808999975 + ], + [ + 28.001167297000052, + -29.98283386199995 + ], + [ + 28.101167679000184, + -30.04733276399992 + ], + [ + 28.219167708999976, + -29.956832885999972 + ], + [ + 28.607667923000065, + -30.030332564999924 + ], + [ + 28.713167191000082, + -29.899833678999983 + ], + [ + 28.732166290000066, + -30.03283309899996 + ], + [ + 28.660667419000106, + -30.03133392299992 + ], + [ + 28.50216674800015, + -30.114332198999932 + ], + [ + 28.363666534, + -30.069833754999934 + ], + [ + 28.15566635100015, + -30.06833267199994 + ], + [ + 28.07216644300013, + -30.162332534999905 + ], + [ + 28.00516700700007, + -30.116333007999913 + ], + [ + 27.944667816000162, + -30.155832290999967 + ], + [ + 28.023166656000114, + -30.219333648999964 + ], + [ + 27.91916656500007, + -30.288333892999958 + ], + [ + 28.001167297000052, + -30.434833526999967 + ], + [ + 27.896167755000135, + -30.406833648999964 + ], + [ + 27.860166550000088, + -30.363332747999948 + ], + [ + 27.764167786000087, + -30.44683265699996 + ], + [ + 27.76366615300003, + -30.55583381699995 + ], + [ + 27.625566483000057, + -30.67908668499996 + ], + [ + 27.44931221000013, + -30.640100478999898 + ], + [ + 27.37982177700013, + -30.695724486999893 + ], + [ + 27.251550674000043, + -30.66047859199989 + ], + [ + 27.23708725000006, + -30.724269866999975 + ], + [ + 27.166103363000047, + -30.802604674999884 + ], + [ + 27.22230720500005, + -30.86040878299997 + ], + [ + 27.256778717000145, + -30.965660094999976 + ], + [ + 27.16082954400008, + -30.974740981999958 + ], + [ + 27.064115524000044, + -31.10210800199991 + ], + [ + 26.889387131000092, + -31.144556045999877 + ], + [ + 26.870788574000187, + -31.04493331899988 + ], + [ + 26.755968094000025, + -30.96590232799997 + ], + [ + 26.73213768000005, + -30.89174842799997 + ], + [ + 26.65078926100017, + -30.938383101999932 + ], + [ + 26.543394089000117, + -30.958370208999952 + ], + [ + 26.520492554000157, + -31.03915405299989 + ], + [ + 26.431089401000122, + -31.044916152999974 + ], + [ + 26.489315033000025, + -31.156768798999963 + ], + [ + 26.467353821000188, + -31.212341308999953 + ], + [ + 26.374628067000117, + -31.27206993099992 + ], + [ + 26.372270583999978, + -31.321763991999887 + ], + [ + 26.46780776999998, + -31.39672279399997 + ], + [ + 26.413133621000156, + -31.431413650999957 + ], + [ + 26.46380615200019, + -31.56039428699995 + ], + [ + 26.396680832000186, + -31.565601348999962 + ], + [ + 26.324167252, + -31.63385581999995 + ], + [ + 26.175838470000087, + -31.59825897199994 + ], + [ + 26.077026367000087, + -31.59713554399997 + ], + [ + 26.103754044000084, + -31.485359191999976 + ], + [ + 26.064872742000034, + -31.597082137999905 + ], + [ + 25.979175568000073, + -31.634893416999887 + ], + [ + 26.015752792000114, + -31.763433455999973 + ], + [ + 26.08742904700017, + -31.80285263099995 + ], + [ + 26.002925873000095, + -31.709728240999937 + ], + [ + 26.137418747000083, + -31.631513595999934 + ], + [ + 26.2525138850001, + -31.626611709999906 + ], + [ + 26.267894745000092, + -31.686683654999968 + ], + [ + 26.19124412500014, + -31.786371230999976 + ], + [ + 26.091320038000163, + -31.82252693199996 + ], + [ + 26.125005722000026, + -31.882112502999973 + ], + [ + 25.90359306300013, + -32.05258941699998 + ], + [ + 25.988843918000157, + -32.03752136199995 + ], + [ + 26.105222702000106, + -32.11366271999998 + ], + [ + 26.18319702100007, + -32.09836959799992 + ], + [ + 26.23446273800016, + -32.02948379499992 + ], + [ + 26.32278251600019, + -32.06431198099983 + ], + [ + 26.433776855000076, + -32.163345336999896 + ], + [ + 26.542081833000054, + -32.15865707399996 + ], + [ + 26.546274185000186, + -32.04341506999998 + ], + [ + 26.66156959500006, + -32.20405578599997 + ], + [ + 26.564691544000027, + -32.2830772399999 + ], + [ + 26.477266312000097, + -32.27627563499988 + ], + [ + 26.29981422400016, + -32.358600615999876 + ], + [ + 26.25189399700014, + -32.32168197599992 + ], + [ + 26.128231049000192, + -32.3884696959999 + ], + [ + 26.150175095000066, + -32.43040466299993 + ], + [ + 26.051673889000142, + -32.471290587999874 + ], + [ + 26.12201118500019, + -32.63359832799995 + ], + [ + 26.23803710900006, + -32.65710067699996 + ], + [ + 26.265756607000128, + -32.57955551099997 + ], + [ + 26.384454727000104, + -32.64818954499992 + ], + [ + 26.405721664, + -32.70078659099994 + ], + [ + 26.508434296000075, + -32.7688026429999 + ], + [ + 26.633857727000077, + -32.73476409899996 + ], + [ + 26.706850052000107, + -32.78050613399989 + ], + [ + 26.732110977000104, + -32.886230468999884 + ], + [ + 26.97377395600006, + -32.97665405299989 + ], + [ + 27.073297501000127, + -32.93493270899995 + ], + [ + 27.106060028000115, + -32.87499618499993 + ], + [ + 27.235322952000104, + -32.85541534399994 + ], + [ + 27.21154594400008, + -32.93361663799993 + ], + [ + 27.347307205000163, + -32.96468353299997 + ], + [ + 27.462511063000022, + -32.90019607499988 + ], + [ + 27.623128891000135, + -32.88071823099989 + ], + [ + 27.703741074000106, + -32.91531753499987 + ], + [ + 27.765813828000034, + -32.89205932599998 + ], + [ + 27.826925278000033, + -32.78471755999993 + ], + [ + 27.94686889600007, + -32.8410415649999 + ], + [ + 27.995456696000133, + -32.796558379999965 + ], + [ + 28.135890961000143, + -32.80305099499998 + ], + [ + 28.176179886000057, + -32.70287322999991 + ], + [ + 28.348260880000055, + -32.703769683999894 + ], + [ + 28.35779571500018, + -32.69976043699995 + ], + [ + 28.36332511900008, + -32.69586181599993 + ], + [ + 28.310588837000125, + -32.64287948599997 + ], + [ + 28.312664032000157, + -32.63182067899993 + ], + [ + 28.424903870000094, + -32.50048446699998 + ], + [ + 28.561185837000096, + -32.460124968999935 + ], + [ + 28.613262177000024, + -32.39313888499987 + ], + [ + 28.77980423000008, + -32.34358978299997 + ], + [ + 28.806713104000096, + -32.20525741599994 + ], + [ + 28.93295478800019, + -32.12040710399998 + ], + [ + 28.910797119000165, + -32.03156661999992 + ], + [ + 28.99394416800004, + -31.96918487499994 + ], + [ + 28.99998855600012, + -31.905113219999976 + ], + [ + 29.09552002000015, + -31.92408561699989 + ], + [ + 29.102895477000118, + -31.84687581199995 + ], + [ + 29.208538055000133, + -31.81083297699996 + ], + [ + 29.179838181000093, + -31.72444915799997 + ], + [ + 29.267419814999982, + -31.708040236999977 + ], + [ + 29.233539581000173, + -31.63996314999997 + ], + [ + 29.35787773100003, + -31.622262954999883 + ], + [ + 29.430627823, + -31.576761245999876 + ], + [ + 29.480712891000053, + -31.497966765999877 + ], + [ + 29.61209487900004, + -31.39286994899993 + ], + [ + 29.704759598000123, + -31.37151336699992 + ], + [ + 29.79981994600007, + -31.28704070999987 + ], + [ + 29.97343635600015, + -31.052656173999935 + ], + [ + 30.094425201000035, + -30.98316383399998 + ], + [ + 30.177885056000036, + -30.791980742999954 + ], + [ + 30.16139030500011, + -30.68506622299998 + ], + [ + 30.21001243600017, + -30.65351104699988 + ], + [ + 30.170104980000076, + -30.555807113999947 + ], + [ + 30.31700515700004, + -30.431158065999966 + ], + [ + 30.38825607300015, + -30.447376250999923 + ], + [ + 30.411815643000125, + -30.356435775999955 + ], + [ + 30.530370712000092, + -30.332046508999895 + ], + [ + 30.564723969000056, + -30.26193237299998 + ], + [ + 30.534488678000116, + -30.200740813999914 + ], + [ + 30.622501373000034, + -30.14462661699997 + ], + [ + 30.59272003200016, + -30.09284019499995 + ], + [ + 30.718891144000168, + -30.018306731999928 + ], + [ + 30.78633499100016, + -29.802495955999973 + ], + [ + 30.845888138000078, + -29.800577163999947 + ], + [ + 30.872810364000088, + -29.669048308999947 + ], + [ + 30.833381653000117, + -29.580619811999952 + ], + [ + 30.975294113000075, + -29.50419235199996 + ], + [ + 30.978391647000024, + -29.455322265999882 + ], + [ + 31.13388061500018, + -29.36468696599991 + ], + [ + 31.101854323999987, + -29.283473968999942 + ], + [ + 31.04432296800013, + -29.282873153999958 + ], + [ + 31.05944252000006, + -29.17826652499997 + ], + [ + 31.199270248, + -29.252355575999957 + ], + [ + 31.219120026000155, + -29.186752318999936 + ], + [ + 31.304733276000093, + -29.194154738999885 + ], + [ + 31.356584549000104, + -29.14381027199994 + ], + [ + 31.305418015000157, + -28.943418502999975 + ], + [ + 31.51000404400014, + -28.896244048999904 + ], + [ + 31.566823959000033, + -28.859512328999983 + ], + [ + 31.74912834200012, + -28.805086135999886 + ], + [ + 31.769744873000036, + -28.764749526999935 + ], + [ + 31.99106979400017, + -28.632198333999895 + ], + [ + 32.00874710100004, + -28.578134536999983 + ], + [ + 32.12429046600005, + -28.499673842999982 + ], + [ + 32.18240737899998, + -28.41150474499989 + ], + [ + 32.19276858300003, + -28.335881137999877 + ], + [ + 32.102081588000146, + -28.260311239999965 + ], + [ + 32.0503275260001, + -28.156807475999926 + ], + [ + 32.17834047800005, + -28.052050617999953 + ], + [ + 32.26991645800018, + -27.855456933999903 + ], + [ + 32.30573652200013, + -27.730452247999892 + ], + [ + 32.160430530000156, + -27.507992680999962 + ], + [ + 31.97394357800016, + -27.349683507999885 + ], + [ + 31.86711354000016, + -27.314815125999928 + ], + [ + 31.84765059300014, + -27.211910332999935 + ], + [ + 31.821008546000144, + -26.739061190999905 + ], + [ + 31.840990499999975, + -26.386090027999956 + ], + [ + 31.900930496000058, + -26.113036455999975 + ], + [ + 32.007492481000156, + -25.899921202999963 + ], + [ + 32.07266244900006, + -25.84504588899989 + ], + [ + 32.12071657000013, + -25.726767175999953 + ], + [ + 32.25183451400011, + -25.580226194999966 + ], + [ + 32.34083959700013, + -25.38108944199996 + ], + [ + 32.52317851300012, + -25.200468145999935 + ], + [ + 32.75371152800011, + -25.013437040999975 + ], + [ + 32.93891957000017, + -24.818496267999933 + ], + [ + 33.15032960800016, + -24.69538337699987 + ], + [ + 33.185554556000056, + -24.616991124999856 + ], + [ + 33.14807856400006, + -24.436184923999917 + ], + [ + 33.24486155100004, + -24.34498964999989 + ], + [ + 33.280601483000055, + -24.40678657199993 + ], + [ + 33.300388558000066, + -24.60970901099995 + ], + [ + 33.41226961500013, + -24.743130888999815 + ], + [ + 33.493408449000185, + -24.72667168099997 + ], + [ + 33.529571500000145, + -24.63165559999993 + ], + [ + 33.587841485000126, + -24.56939951699985 + ], + [ + 33.67724957000007, + -24.623295992999886 + ], + [ + 33.74861158500005, + -24.60726761399991 + ], + [ + 34.14754156100014, + -24.334110944999964 + ], + [ + 34.27344847600017, + -24.17556791699991 + ], + [ + 34.264659548000054, + -24.07466287799997 + ], + [ + 34.20970946700015, + -23.89157193799997 + ], + [ + 34.2748485890001, + -23.809337085999914 + ], + [ + 34.34238845600004, + -23.820855664999954 + ], + [ + 34.43896055400006, + -23.95544991899982 + ], + [ + 34.500110561000156, + -23.98348855899991 + ], + [ + 34.57770955000012, + -23.96183961199995 + ], + [ + 34.73638953800014, + -23.737569889999975 + ], + [ + 34.78253945900008, + -23.61904676099988 + ], + [ + 34.79594061400019, + -23.443865654999968 + ], + [ + 34.78876855400006, + -23.238646322999955 + ], + [ + 34.735828454000114, + -22.83649601899998 + ], + [ + 34.66431053499997, + -22.57570064499987 + ], + [ + 34.58810059500007, + -22.54987130799998 + ], + [ + 34.39363859700006, + -22.61401767699988 + ], + [ + 34.26126051800003, + -22.591280088999838 + ], + [ + 34.24694053999997, + -22.519193876999964 + ], + [ + 34.30184954900005, + -22.42260903899995 + ], + [ + 34.521461615000135, + -22.211320034999915 + ], + [ + 34.57841849100009, + -22.135583001999976 + ], + [ + 34.50014861500006, + -21.860717932999876 + ], + [ + 34.51646046900004, + -21.643059856999912 + ], + [ + 34.591152614000066, + -21.32888081199991 + ], + [ + 34.390787992000014, + -21.368080124999835 + ], + [ + 34.27919722000013, + -21.33536657899998 + ], + [ + 34.24338763300011, + -21.202011208999977 + ], + [ + 34.25780545500004, + -21.161445244999868 + ], + [ + 34.420903365000186, + -21.173112642999968 + ], + [ + 34.60438604700016, + -21.14381311999989 + ], + [ + 34.69569003200013, + -21.02246672399997 + ], + [ + 34.471099192, + -20.722857632999876 + ], + [ + 34.374621022000156, + -20.514384667999877 + ], + [ + 34.375106753000125, + -20.3163663119999 + ], + [ + 34.398465128, + -20.105497533999937 + ], + [ + 34.40176556000006, + -19.948710447999872 + ], + [ + 34.3506365, + -19.85423021599985 + ], + [ + 34.26617342300017, + -19.695788645999926 + ], + [ + 34.26218887699997, + -19.58292169699996 + ], + [ + 34.310911719000046, + -19.455199547999882 + ], + [ + 34.36660060700012, + -19.406203593999862 + ], + [ + 34.409356501000104, + -19.27888240099992 + ], + [ + 34.4991375890001, + -19.10433544199998 + ], + [ + 34.58314152600019, + -19.112637884999856 + ], + [ + 34.66342155100017, + -19.15747134399993 + ], + [ + 34.72661556900016, + -19.014786875999903 + ], + [ + 35.064991072000055, + -18.43459572899991 + ], + [ + 35.226528535000114, + -18.306790983999974 + ], + [ + 35.35456059800015, + -18.14314069399984 + ], + [ + 35.397861510000155, + -17.9602618159999 + ], + [ + 35.46239847600003, + -17.939611823999826 + ], + [ + 35.718898460000105, + -17.938112971999885 + ], + [ + 35.97060047400004, + -17.920925208999904 + ], + [ + 36.06365954900008, + -17.87430791399987 + ], + [ + 36.20096954000019, + -17.72605685699989 + ], + [ + 36.28683057100011, + -17.671729382999956 + ], + [ + 36.57606859200007, + -17.53444654999987 + ], + [ + 36.76623955800005, + -17.423835434999944 + ], + [ + 37.018001588000175, + -17.314131074999977 + ], + [ + 37.18632847600003, + -17.26317631099994 + ], + [ + 37.46495048200012, + -17.214028183999858 + ], + [ + 37.610710605000065, + -17.158892695999953 + ], + [ + 38.116939503000026, + -16.89313707899987 + ], + [ + 38.61436053000017, + -16.64368292299997 + ], + [ + 39.00350161700004, + -16.376620399999922 + ], + [ + 39.16807156900012, + -16.204100380999932 + ], + [ + 39.19786856400003, + -16.094671449999908 + ], + [ + 39.33074553400013, + -15.964000428999952 + ], + [ + 39.48728545500006, + -15.769095866999919 + ], + [ + 39.70795447900019, + -15.472198797999965 + ], + [ + 39.87366856000017, + -15.216997337999885 + ], + [ + 39.96737656200003, + -15.04043992399994 + ], + [ + 40.08780255000016, + -14.701444745999936 + ], + [ + 40.15159252100017, + -14.37822598699995 + ], + [ + 40.142402602000175, + -14.169158521999975 + ], + [ + 40.09159854600017, + -13.986331611999901 + ], + [ + 40.03998161300018, + -13.86710172099987 + ], + [ + 39.98717160000007, + -13.84386809199998 + ], + [ + 39.73916650700005, + -13.814959912999939 + ], + [ + 39.45035948300011, + -13.832254796999905 + ], + [ + 39.311359533000086, + -13.825155324999855 + ], + [ + 39.27939648600017, + -13.707307274999948 + ], + [ + 39.32368461900006, + -13.668187926999963 + ], + [ + 39.751373576000105, + -13.499722904999828 + ], + [ + 39.88650159000008, + -13.415761715999906 + ], + [ + 39.94925354600008, + -13.325740745999894 + ], + [ + 40.01705559900006, + -13.181286188999877 + ], + [ + 40.03698759700006, + -13.063153320999845 + ], + [ + 40.02680962000005, + -12.743967765999855 + ], + [ + 39.96370646200012, + -12.52396158299996 + ], + [ + 39.9010654810001, + -12.447682743999906 + ], + [ + 39.66242247200006, + -12.323931151999943 + ], + [ + 39.620769610000025, + -12.120393228999887 + ], + [ + 39.58026154800018, + -12.030119125999875 + ], + [ + 39.498607562000075, + -11.942454141999917 + ], + [ + 39.301650607, + -11.773752916999968 + ], + [ + 39.13877145200013, + -11.735175374999812 + ], + [ + 39.046180591999985, + -11.679300099999978 + ], + [ + 38.89764052700008, + -11.478003162999926 + ], + [ + 38.70495247499997, + -11.420129138999926 + ], + [ + 38.626708582000106, + -11.42534570099997 + ], + [ + 38.52919050300005, + -11.473322540999959 + ], + [ + 38.381362564000085, + -11.450735993999956 + ], + [ + 38.27011459300019, + -11.406676016999938 + ], + [ + 38.213809493000156, + -11.316506351999976 + ], + [ + 38.26250000000016, + -11.288333332999969 + ], + [ + 38.378333334000104, + -11.383333333999929 + ], + [ + 38.486666667000065, + -11.415 + ], + [ + 38.652500000000146, + -11.278333332999978 + ], + [ + 38.745000000000175, + -11.278333332999978 + ], + [ + 38.885, + -11.17499999999984 + ], + [ + 38.91416666600014, + -11.09833333399996 + ], + [ + 38.93583333300006, + -10.939166666999824 + ], + [ + 39.010000000000105, + -10.660833332999914 + ], + [ + 39.074166666999986, + -10.546666666999954 + ], + [ + 39.20416666600016, + -10.433333333999883 + ], + [ + 39.069166666000115, + -10.384999999999877 + ], + [ + 39.118333333000066, + -10.312499999999886 + ], + [ + 39.205, + -10.313333332999832 + ], + [ + 39.27, + -10.241666666999947 + ], + [ + 39.42500000000018, + -10.12833333399982 + ], + [ + 39.41416666700013, + -10.069166666999877 + ], + [ + 39.2925, + -10.020833332999871 + ], + [ + 39.2825, + -9.949166665999883 + ], + [ + 39.197500000000105, + -9.9075 + ], + [ + 39.236666667000065, + -9.79 + ], + [ + 39.186666667, + -9.735 + ], + [ + 39.26916666700009, + -9.578333332999932 + ], + [ + 39.321666667000045, + -9.568333332999941 + ], + [ + 39.391666667000095, + -9.655 + ], + [ + 39.450833333000105, + -9.57 + ], + [ + 39.43166666700017, + -9.4675 + ], + [ + 39.34, + -9.3375 + ], + [ + 39.41166666600009, + -9.312499999999886 + ], + [ + 39.406666667000025, + -9.226666666999904 + ], + [ + 39.230833334000124, + -9.12083333399994 + ], + [ + 39.17750000000018, + -9.169166665999967 + ], + [ + 39.11, + -9.104166665999912 + ], + [ + 39.22333333299997, + -9.088333332999923 + ], + [ + 39.23583333400012, + -8.941666666999936 + ], + [ + 39.197500000000105, + -8.8975 + ], + [ + 39.13083333300011, + -8.93249999999989 + ], + [ + 39.07416666600011, + -8.861666666999952 + ], + [ + 38.916666666000026, + -8.886666666999872 + ], + [ + 38.8475, + -8.93666666699994 + ], + [ + 38.78666666700008, + -8.875 + ], + [ + 38.723333333000085, + -8.752499999999884 + ], + [ + 38.63333333400004, + -8.850833333999958 + ], + [ + 38.63000000000011, + -8.92499999999984 + ], + [ + 38.54500000000013, + -8.96333333299998 + ], + [ + 38.42250000000013, + -8.88583333399987 + ], + [ + 38.44166666700016, + -8.736666665999962 + ], + [ + 38.485, + -8.6825 + ], + [ + 38.3225, + -8.569166666999934 + ], + [ + 38.31083333300006, + -8.485833332999903 + ], + [ + 38.18833333300012, + -8.519166666999979 + ], + [ + 38.11, + -8.589166666999972 + ], + [ + 38.065833333000114, + -8.734166666999897 + ], + [ + 38.00666666600017, + -8.720833332999973 + ], + [ + 38.06916666700005, + -8.595 + ], + [ + 38.03833333300008, + -8.515833332999932 + ], + [ + 37.97583333300014, + -8.474166666999963 + ], + [ + 37.966666666000094, + -8.3575 + ], + [ + 37.92583333300007, + -8.3025 + ], + [ + 37.94416666700016, + -8.238333333999947 + ], + [ + 38.00833333400004, + -8.194166666999934 + ], + [ + 37.97166666600009, + -8.105 + ], + [ + 38.109166667000125, + -8.01416666699987 + ], + [ + 38.134166667000045, + -7.900833333999969 + ], + [ + 38.18, + -7.845833333999963 + ], + [ + 38.13333333300005, + -7.769166666999922 + ], + [ + 38.115, + -7.664166666999904 + ], + [ + 38.075833333000105, + -7.66 + ], + [ + 38.037500000000136, + -7.530833332999919 + ], + [ + 37.98833333400012, + -7.530833332999919 + ], + [ + 37.825, + -7.45166666699987 + ], + [ + 37.78500000000014, + -7.406666665999978 + ], + [ + 37.83, + -7.258333332999939 + ], + [ + 37.810833333000176, + -7.190833332999887 + ], + [ + 37.861666667000065, + -7.160833332999971 + ], + [ + 37.892500000000155, + -7.049166666999895 + ], + [ + 37.95416666700015, + -6.997499999999889 + ], + [ + 38.03, + -7.036666666999963 + ], + [ + 38.049166667000065, + -7.1075 + ], + [ + 38.18333333300012, + -6.940833333999876 + ], + [ + 38.13166666600006, + -6.818333332999885 + ], + [ + 38.185, + -6.715 + ], + [ + 38.2875, + -6.658333333999906 + ], + [ + 38.265, + -6.61416666599996 + ], + [ + 38.16000000000014, + -6.606666666999956 + ], + [ + 38.16000000000014, + -6.539166665999971 + ], + [ + 38.34250000000014, + -6.5875 + ], + [ + 38.399166667000145, + -6.509166666999931 + ], + [ + 38.358333333000076, + -6.32333333299988 + ], + [ + 38.42666666700018, + -6.301666666999949 + ], + [ + 38.5, + -6.188333332999946 + ], + [ + 38.545833333000076, + -5.9575 + ], + [ + 38.583333334000145, + -5.90083333299998 + ], + [ + 38.4575, + -5.784166666999909 + ], + [ + 38.34666666700019, + -5.806666666999945 + ], + [ + 38.34916666700008, + -5.746666666999943 + ], + [ + 38.49250000000018, + -5.67 + ], + [ + 38.4525, + -5.585833332999925 + ], + [ + 38.48750000000018, + -5.439166666999938 + ], + [ + 38.53166666700014, + -5.340833333999967 + ], + [ + 38.36500000000018, + -5.255 + ], + [ + 38.2975, + -5.141666666999924 + ], + [ + 38.11750000000012, + -5.033333332999973 + ], + [ + 38.18166666700006, + -4.913333332999969 + ], + [ + 38.107500000000186, + -4.844166665999978 + ], + [ + 38.15583333400019, + -4.80833333399994 + ], + [ + 38.21833333300003, + -4.871666666999943 + ], + [ + 38.24750000000017, + -4.99583333299995 + ], + [ + 38.31916666600006, + -5.078333333999865 + ], + [ + 38.38833333300016, + -5.052499999999895 + ], + [ + 38.4025, + -4.96666666699997 + ], + [ + 38.20833333300004, + -4.70166666699987 + ], + [ + 38.24166666700006, + -4.524166666999918 + ], + [ + 38.30000000000018, + -4.464166666999972 + ], + [ + 38.374166667000054, + -4.511666666999872 + ], + [ + 38.35, + -4.61 + ], + [ + 38.44416666600017, + -4.634999999999877 + ], + [ + 38.49583333300018, + -4.6975 + ], + [ + 38.476666667000075, + -4.752499999999884 + ], + [ + 38.57083333300017, + -4.820833332999939 + ], + [ + 38.5816666660001, + -4.91 + ], + [ + 38.54416666600008, + -4.961666666999974 + ], + [ + 38.57583333300016, + -5.051666666999949 + ], + [ + 38.65, + -4.961666666999974 + ], + [ + 38.62000000000012, + -4.8725 + ], + [ + 38.7016666670001, + -4.8625 + ], + [ + 38.6875, + -4.965 + ], + [ + 38.76000000000016, + -5.055833332999896 + ], + [ + 38.83583333400003, + -5.005833333999931 + ], + [ + 38.87833333300006, + -4.909166666999909 + ], + [ + 38.7616666670001, + -4.8475 + ], + [ + 38.87083333400011, + -4.765 + ], + [ + 38.93333333300012, + -4.6775 + ], + [ + 39.01583333400009, + -4.474166666999963 + ], + [ + 39.028333334000024, + -4.342499999999859 + ], + [ + 39.08666666700009, + -4.21 + ], + [ + 39.165, + -4.181666666999945 + ], + [ + 39.28416666700008, + -4.185833332999891 + ], + [ + 39.361666666000076, + -4.150833333999969 + ], + [ + 39.38000000000011, + -4.04 + ], + [ + 39.433333333, + -3.895833332999928 + ], + [ + 39.42666666700018, + -3.68666666699994 + ], + [ + 39.47083333300003, + -3.6 + ], + [ + 39.47583333400013, + -3.524166666999974 + ], + [ + 39.561666667000054, + -3.396666666999977 + ], + [ + 39.6875, + -3.278333333999967 + ], + [ + 39.58666666600004, + -3.255833332999941 + ], + [ + 39.62000000000012, + -3.184999999999889 + ], + [ + 39.575, + -3.128333332999944 + ], + [ + 39.484166667000125, + -3.100833332999855 + ], + [ + 39.483333333000076, + -3.04833333299996 + ], + [ + 39.6625, + -3.024166666999974 + ], + [ + 39.705, + -2.895833333999974 + ], + [ + 39.788333334000185, + -2.989166666999949 + ], + [ + 39.910833333000085, + -2.85 + ], + [ + 39.8908333330001, + -2.774166665999928 + ], + [ + 39.9725, + -2.691666666999936 + ], + [ + 40.00083333300006, + -2.7225 + ], + [ + 40.15666666600015, + -2.638333332999935 + ], + [ + 40.14333333300016, + -2.595 + ], + [ + 40.05333333300018, + -2.535833332999914 + ], + [ + 40.1375, + -2.45 + ], + [ + 40.064166667, + -2.326666666999927 + ], + [ + 40.08083333400015, + -2.26416666699987 + ], + [ + 39.99833333400005, + -2.069166666999877 + ], + [ + 40.115833333000126, + -1.904166666999913 + ], + [ + 40.056666667000115, + -1.770833332999928 + ], + [ + 40.0575, + -1.676666666999893 + ], + [ + 40.01166666700004, + -1.61083333299996 + ], + [ + 39.978333333000194, + -1.354166666999959 + ], + [ + 39.880833334000044, + -1.181666666999888 + ], + [ + 39.99083333300007, + -1.242499999999893 + ], + [ + 40.030833333000146, + -1.471666666999965 + ], + [ + 40.09333333300009, + -1.6725 + ], + [ + 40.108333333000076, + -1.859166666999954 + ], + [ + 40.32, + -1.755833332999941 + ], + [ + 40.4516666670001, + -1.797499999999843 + ], + [ + 40.65333333400014, + -1.741666665999958 + ], + [ + 40.69833333400004, + -1.656666666999968 + ], + [ + 40.705, + -1.5775 + ], + [ + 40.81666666600006, + -1.384166666999874 + ], + [ + 40.915833334000126, + -1.420833333999951 + ], + [ + 40.93, + -1.5775 + ], + [ + 41.050000000000125, + -1.53 + ], + [ + 40.935, + -1.409166666999909 + ], + [ + 40.8175, + -1.3475 + ], + [ + 40.86416666700012, + -1.2975 + ], + [ + 40.97833333300014, + -1.300833332999957 + ], + [ + 41.01916666700009, + -1.266666665999878 + ], + [ + 41.12666666700011, + -1.385 + ], + [ + 41.07250000000016, + -1.468333332999919 + ], + [ + 41.17250000000013, + -1.4625 + ], + [ + 41.29802030600007, + -1.352124554999932 + ], + [ + 41.37701841100005, + -1.21506760099993 + ], + [ + 41.27137034200001, + -1.013289307999912 + ], + [ + 41.30277922800019, + -0.940001908999932 + ], + [ + 41.53786997500015, + -0.902882316999978 + ], + [ + 41.552146741000115, + -0.826739564999912 + ], + [ + 41.47410042000001, + -0.683020119999981 + ], + [ + 41.48457004900007, + -0.608780936999949 + ], + [ + 41.55500209400003, + -0.51455428099996 + ], + [ + 41.567375292000065, + -0.383208032999903 + ], + [ + 41.60163953000006, + -0.315631340999914 + ], + [ + 41.698721539000076, + -0.222356468999976 + ], + [ + 41.71395008900009, + -0.112901262999912 + ], + [ + 41.774864291000085, + -0.02724066699983 + ], + [ + 41.858621319000065, + 0.034625319000156 + ], + [ + 41.98806399700004, + 0.041287810000142 + ], + [ + 42.13654236399998, + 0.261150007000026 + ], + [ + 42.33260995100005, + 0.287799970000151 + ], + [ + 42.35259742300019, + 0.347762388000092 + ], + [ + 42.4925097310001, + 0.536215699000024 + ], + [ + 42.52106326300003, + 0.690404772000136 + ], + [ + 42.64193988200009, + 0.803667116000156 + ], + [ + 42.724745125000084, + 0.815088529000093 + ], + [ + 42.76091293200011, + 0.875050947000034 + ], + [ + 42.75520222600011, + 0.953097268000079 + ], + [ + 42.68857731700018, + 1.113948832000176 + ], + [ + 42.77138256000006, + 1.144405932000097 + ], + [ + 42.87798241400003, + 1.084443515000089 + ], + [ + 42.90939129900005, + 1.224355822000064 + ], + [ + 42.905163669000046, + 1.427637936000053 + ], + [ + 42.98796891200004, + 1.476178940000182 + ], + [ + 43.10146920200003, + 1.477606617000106 + ], + [ + 43.13430576400003, + 1.533999843000174 + ], + [ + 43.16571464900005, + 1.709604065000178 + ], + [ + 43.23781231800018, + 1.809541427000113 + ], + [ + 43.40913351000006, + 1.773849512000027 + ], + [ + 43.49550794400005, + 1.780987895000123 + ], + [ + 43.63827560500005, + 1.890205155000103 + ], + [ + 43.67539519700017, + 2.097932101000026 + ], + [ + 43.76533882300009, + 2.130054825000059 + ], + [ + 43.93309082300004, + 2.112208867000163 + ], + [ + 44.0701477770001, + 2.000136254000097 + ], + [ + 44.22590084800015, + 2.009130236000146 + ], + [ + 44.406796382000095, + 2.151286430000084 + ], + [ + 44.499595361000104, + 2.154855622000127 + ], + [ + 44.733377405000056, + 2.131655877000014 + ], + [ + 44.90826778900015, + 2.267285153999978 + ], + [ + 45.090754861000164, + 2.263119767000035 + ], + [ + 45.19184604900016, + 2.34986315600014 + ], + [ + 45.23438028000004, + 2.353676708000023 + ], + [ + 45.43846788900004, + 2.573778861000051 + ], + [ + 45.39544481600018, + 2.815050285000041 + ], + [ + 45.43256440700003, + 3.074887427000021 + ], + [ + 45.47502787200011, + 3.207485231000078 + ], + [ + 45.53596117700005, + 3.268418536000127 + ], + [ + 45.61530701300006, + 3.224793470000122 + ], + [ + 45.665275694000115, + 3.159120346 + ], + [ + 45.693829226000105, + 3.064893691000179 + ], + [ + 45.71297054700017, + 2.760292083000138 + ], + [ + 45.740096402, + 2.636084219000054 + ], + [ + 45.81861861500005, + 2.67891451700018 + ], + [ + 45.852882854000086, + 2.887355301000184 + ], + [ + 46.02563172300006, + 3.031550638000169 + ], + [ + 46.01706566300004, + 3.140054060000068 + ], + [ + 46.17125473600004, + 3.284249397 + ], + [ + 46.145556557000134, + 3.435583117000078 + ], + [ + 46.16982705999999, + 3.501256240000089 + ], + [ + 46.331154516000026, + 3.558363304000068 + ], + [ + 46.481060559000184, + 3.535520479000184 + ], + [ + 46.58528095100007, + 3.552652598000066 + ], + [ + 46.678079931000184, + 3.709697024000093 + ], + [ + 46.78658335200004, + 3.738250557000185 + ], + [ + 46.86796091900004, + 3.902433366000082 + ], + [ + 46.96932595800001, + 3.932414575000166 + ], + [ + 47.02928837500008, + 4.035207290000187 + ], + [ + 47.16348997600005, + 4.212239189000115 + ], + [ + 47.34623258100015, + 4.376421998000069 + ], + [ + 47.598622009999985, + 4.496870314000091 + ], + [ + 47.68190314500015, + 4.60870498200012 + ], + [ + 47.71402586900018, + 4.769318600000076 + ], + [ + 47.80135208799999, + 4.923745619000158 + ], + [ + 47.99072265600006, + 5.020690918000071 + ], + [ + 48.10687255900018, + 5.144897461000085 + ], + [ + 48.159912109000174, + 5.106079102000024 + ], + [ + 48.22063981000014, + 5.306633560000137 + ], + [ + 48.457713721, + 5.791557470000157 + ], + [ + 48.570862633000104, + 5.963974860000121 + ], + [ + 48.65865194700012, + 6.195503062000057 + ], + [ + 48.69427490200013, + 6.24890136700003 + ], + [ + 48.89007568400001, + 6.429687500000057 + ], + [ + 49.05773776600017, + 6.537551169000096 + ], + [ + 49.134495964000166, + 6.535037730000056 + ], + [ + 49.21110149800012, + 6.733143306000045 + ], + [ + 49.39744947900016, + 7.048994372999971 + ], + [ + 49.603881505000174, + 7.329425026000081 + ], + [ + 49.705898068000124, + 7.491642680000041 + ], + [ + 49.569755592000035, + 7.469782677000126 + ], + [ + 49.50043859400006, + 7.536927924000111 + ], + [ + 49.49177153800002, + 7.69287876500016 + ], + [ + 49.58976755300017, + 7.906489220000026 + ], + [ + 49.779266626000094, + 8.474949391 + ], + [ + 49.93547060100019, + 8.978235571000027 + ], + [ + 49.97018056500008, + 9.533586278000143 + ], + [ + 50.10902762900008, + 9.880677536000064 + ], + [ + 50.26400028000006, + 10.128607960000181 + ], + [ + 50.15959, + 10.21624 + ], + [ + 50.12572, + 10.32376 + ], + [ + 50.1819, + 10.466970000000117 + ], + [ + 50.309520000000134, + 10.66328 + ], + [ + 50.39413596000014, + 10.758818789000088 + ], + [ + 50.386840613, + 10.919386950999979 + ], + [ + 50.172492550000186, + 10.90152628800007 + ], + [ + 49.96739680400003, + 11.023050706000106 + ], + [ + 49.93131000000011, + 10.99058 + ], + [ + 49.95089000000013, + 10.85703 + ], + [ + 49.835610000000145, + 10.83874 + ], + [ + 49.7676, + 10.867070000000183 + ], + [ + 49.78635, + 10.93109 + ], + [ + 49.71067, + 10.96702 + ], + [ + 49.681652491000136, + 11.055505370000105 + ], + [ + 49.28105387700003, + 10.997450966000144 + ], + [ + 49.1849, + 10.953680000000134 + ], + [ + 49.04644353600003, + 10.959268214000133 + ], + [ + 48.738464586000134, + 10.77641800200007 + ], + [ + 48.39198654800015, + 10.651310720000026 + ], + [ + 48.074382490000175, + 10.737923441000135 + ], + [ + 47.49692149600003, + 10.439589546000036 + ], + [ + 47.42791000000011, + 10.39826 + ], + [ + 47.266031076000104, + 10.39204982400014 + ], + [ + 47.28938, + 10.23888 + ], + [ + 47.34857, + 10.187770000000171 + ], + [ + 47.15865000000014, + 10.152230000000145 + ], + [ + 46.99194000000011, + 10.248 + ], + [ + 46.96903735000012, + 10.342136881999977 + ], + [ + 46.87018949600014, + 10.327317138000012 + ], + [ + 46.869590525000035, + 10.389969014000087 + ], + [ + 46.76166000000018, + 10.39380000000017 + ], + [ + 46.67488, + 10.34725 + ], + [ + 46.52351000000016, + 10.41585 + ], + [ + 46.42586000000017, + 10.44097 + ], + [ + 46.228310000000135, + 10.45537 + ], + [ + 46.14828000000011, + 10.51737 + ], + [ + 46.008690000000115, + 10.384050000000116 + ], + [ + 45.83195, + 10.37128 + ], + [ + 45.692310000000134, + 10.199960000000146 + ], + [ + 45.60220000000015, + 10.134960000000149 + ], + [ + 45.47703, + 10.09932 + ], + [ + 45.22126, + 10.08124 + ], + [ + 45.11921, + 10.09984 + ], + [ + 44.98430000000019, + 10.16517 + ], + [ + 45.00202000000013, + 10.27370000000019 + ], + [ + 45.04819, + 10.329000000000178 + ], + [ + 45.20201, + 10.42756 + ], + [ + 45.25140000000016, + 10.42423 + ], + [ + 45.42032000000012, + 10.349080000000185 + ], + [ + 45.49059, + 10.363090000000113 + ], + [ + 45.717, + 10.5701 + ], + [ + 45.72041, + 10.650440000000117 + ], + [ + 45.78208000000012, + 10.790380000000141 + ], + [ + 45.8743, + 10.803270000000111 + ], + [ + 45.95525000000015, + 10.62078 + ], + [ + 46.07706, + 10.60866 + ], + [ + 46.15947000000017, + 10.66933 + ], + [ + 46.24935000000016, + 10.57692 + ], + [ + 46.337260000000185, + 10.65062 + ], + [ + 46.45570000000015, + 10.57771 + ], + [ + 46.523800000000165, + 10.611270000000104 + ], + [ + 46.669660000000135, + 10.52746000000019 + ], + [ + 46.721270000000175, + 10.54584 + ], + [ + 46.76537000000019, + 10.67822 + ], + [ + 46.82469, + 10.710700000000145 + ], + [ + 46.88524000000018, + 10.83436 + ], + [ + 47.023135168000124, + 10.862037239000074 + ], + [ + 47.18618000000015, + 10.97071 + ], + [ + 47.38829, + 11.07462 + ], + [ + 47.490400000000136, + 11.09294 + ], + [ + 47.54197618200004, + 11.143217897000113 + ], + [ + 47.45066694200011, + 11.121018315000072 + ], + [ + 47.37820860100015, + 11.15770558100013 + ], + [ + 47.15039853100018, + 11.06168300100012 + ], + [ + 47.10749056300017, + 10.991707017000124 + ], + [ + 47.017261554000186, + 10.959888977000048 + ], + [ + 46.87051052300012, + 10.85767636200012 + ], + [ + 46.666789539000035, + 10.744245072000126 + ], + [ + 46.44966153400003, + 10.679939614000034 + ], + [ + 46.34471859700011, + 10.688898024000139 + ], + [ + 46.2362286070001, + 10.779601616000036 + ], + [ + 46.096939481000106, + 10.761644059000105 + ], + [ + 45.895694417000016, + 10.78887215300017 + ], + [ + 45.80825208100015, + 10.860936699000092 + ], + [ + 45.597209575000136, + 10.76414287200015 + ], + [ + 45.4606014850001, + 10.663169939999989 + ], + [ + 45.324451549000116, + 10.65933991300011 + ], + [ + 45.23324956900018, + 10.561216996000098 + ], + [ + 45.08797056800012, + 10.507730730999981 + ], + [ + 44.943489523000096, + 10.410057586000107 + ], + [ + 44.725769588, + 10.416786913000067 + ], + [ + 44.6156194780001, + 10.381339342 + ], + [ + 44.410400481000124, + 10.391029660000129 + ], + [ + 44.28818160300017, + 10.430617054000152 + ], + [ + 44.21830115100005, + 10.490214821000052 + ], + [ + 44.11974334700011, + 10.50703811600016 + ], + [ + 44.064441618000046, + 10.607943592000026 + ], + [ + 43.97118496700017, + 10.66371652500004 + ], + [ + 43.71646000200013, + 10.409081535999974 + ], + [ + 43.47891886300016, + 10.160037034000027 + ], + [ + 43.31295159399997, + 10.006844001000104 + ], + [ + 43.17975984300011, + 9.849869438000042 + ], + [ + 43.00843865100006, + 9.745173154000042 + ], + [ + 42.8725, + 9.6991666670001 + ], + [ + 42.92169189500015, + 9.640000000000157 + ], + [ + 42.94916666600011, + 9.52250000000015 + ], + [ + 42.90083333400014, + 9.476666667000131 + ], + [ + 42.70916666700009, + 9.478333333000023 + ], + [ + 42.71666666600004, + 9.355833334000124 + ], + [ + 42.608333333000076, + 9.430833333000066 + ], + [ + 42.55166666700018, + 9.431666666000183 + ], + [ + 42.41416666700002, + 9.361666666000133 + ], + [ + 42.305, + 9.35333333400007 + ], + [ + 42.20333333300016, + 9.388333333000048 + ], + [ + 42.1400000000001, + 9.31 + ], + [ + 42.14416666700015, + 9.1725 + ], + [ + 42.040000000000134, + 9.259166666000112 + ], + [ + 41.958333332999985, + 9.275 + ], + [ + 41.958333332999985, + 9.203333334000035 + ], + [ + 41.91416666700013, + 9.160833333000141 + ], + [ + 41.9025, + 9.011666667000156 + ], + [ + 41.75416666700016, + 8.965833333000091 + ], + [ + 41.660833333000085, + 8.970833334000133 + ], + [ + 41.516666667000095, + 8.945000000000164 + ], + [ + 41.594166667000025, + 9.110000000000127 + ], + [ + 41.65000000000015, + 9.289166666000028 + ], + [ + 41.50583333300011, + 9.039166666000085 + ], + [ + 41.459166666000044, + 9.158333333000087 + ], + [ + 41.33583333300015, + 8.98916666700012 + ], + [ + 41.31, + 9.071666667000045 + ], + [ + 41.16666666600008, + 8.998333333000062 + ], + [ + 41.099166665999974, + 8.93833333300006 + ], + [ + 40.9625, + 8.96000000000015 + ], + [ + 40.99000000000012, + 8.834166667000147 + ], + [ + 40.78, + 8.7475 + ], + [ + 40.735000000000184, + 8.908333333000087 + ], + [ + 40.49833333300006, + 8.818333333000169 + ], + [ + 40.36916666700017, + 8.69833333300005 + ], + [ + 40.31333333400005, + 8.581666667000093 + ], + [ + 40.22416666700019, + 8.5275 + ], + [ + 40.14416666699998, + 8.355833333000078 + ], + [ + 40.045000000000186, + 8.306666666000126 + ], + [ + 40.0425, + 8.160833334000074 + ], + [ + 40.1325, + 8.08083333400009 + ], + [ + 39.98916666700018, + 8.081666667000036 + ], + [ + 39.97416666700002, + 7.9725 + ], + [ + 40.05416666700006, + 7.903333334000081 + ], + [ + 40.00500000000011, + 7.855833332999964 + ], + [ + 40.0775, + 7.808333333000178 + ], + [ + 40.14416666699998, + 7.835833333000039 + ], + [ + 40.18333333400017, + 7.716666666000094 + ], + [ + 40.22833333300014, + 7.669166667000184 + ], + [ + 40.17083333300019, + 7.62083333400011 + ], + [ + 40.1, + 7.498333333 + ], + [ + 39.99166666700012, + 7.494166666000126 + ], + [ + 39.92000000000013, + 7.540833333000023 + ], + [ + 39.81750000000011, + 7.55 + ], + [ + 39.6975, + 7.655 + ], + [ + 39.62000000000012, + 7.661666667000134 + ], + [ + 39.705, + 7.528333334000024 + ], + [ + 39.585833333000096, + 7.519166666999979 + ], + [ + 39.57833333400015, + 7.453333333000103 + ], + [ + 39.69833333400004, + 7.420000000000186 + ], + [ + 39.77166666700009, + 7.3575 + ], + [ + 39.86083333300019, + 7.390833332999989 + ], + [ + 39.93416666700011, + 7.458333333000098 + ], + [ + 40.18, + 7.41 + ], + [ + 40.278333333000035, + 7.485 + ], + [ + 40.32250000000016, + 7.449166666000053 + ], + [ + 40.42500000000018, + 7.436666666 + ], + [ + 40.600000000000136, + 7.5325 + ], + [ + 40.74166666700012, + 7.425000000000182 + ], + [ + 40.73916666600013, + 7.358333334000065 + ], + [ + 40.795000000000186, + 7.318333333999988 + ], + [ + 40.80000000000018, + 7.243333333000066 + ], + [ + 40.74666666700011, + 7.1225 + ], + [ + 40.64166666699998, + 7.07666666700004 + ], + [ + 40.59500000000014, + 7.102500000000134 + ], + [ + 40.497500000000116, + 7.085833332999982 + ], + [ + 40.47333333400019, + 6.966666666000037 + ], + [ + 40.540833333000194, + 6.909166667000022 + ], + [ + 40.41916666600014, + 6.88 + ], + [ + 40.48, + 6.73583333300013 + ], + [ + 40.40166666700003, + 6.72 + ], + [ + 40.299166666000076, + 6.880833333000112 + ], + [ + 40.20666666700015, + 6.89333333400009 + ], + [ + 40.060833334000165, + 6.868333333000066 + ], + [ + 39.98416666700018, + 6.695833333000053 + ], + [ + 39.995833333000064, + 6.641666666999981 + ], + [ + 39.910833333000085, + 6.515000000000157 + ], + [ + 39.79, + 6.525833333000094 + ], + [ + 39.59166666700014, + 6.454166666999981 + ], + [ + 39.53666666700008, + 6.322500000000161 + ], + [ + 39.3975, + 6.1625 + ], + [ + 39.29500000000013, + 6.186666667000168 + ], + [ + 39.28916666700002, + 6.075000000000102 + ], + [ + 39.215000000000146, + 6.118333333000066 + ], + [ + 39.108333333000076, + 6.232500000000186 + ], + [ + 39.171666666000135, + 6.354166667000072 + ], + [ + 39.185833333000176, + 6.450000000000102 + ], + [ + 39.12583333400005, + 6.33 + ], + [ + 39.06333333300017, + 6.310000000000116 + ], + [ + 39.0725, + 6.19583333300011 + ], + [ + 39.231666666000194, + 6.081666667000093 + ], + [ + 39.20083333400004, + 6.0475 + ], + [ + 39.12, + 6.151666666000153 + ], + [ + 38.96916666700008, + 6.167500000000189 + ], + [ + 38.929166667000175, + 6.294166667000184 + ], + [ + 38.7691666660001, + 6.415 + ], + [ + 38.776666667000086, + 6.4425 + ], + [ + 38.75000000000017, + 6.440000000000168 + ], + [ + 38.886666666999986, + 6.29500000000013 + ], + [ + 38.932500000000175, + 6.187500000000114 + ], + [ + 38.893333333000044, + 6.150833333000037 + ], + [ + 38.91583333300008, + 6.028333333000091 + ], + [ + 39.024166667000145, + 5.938333333000116 + ], + [ + 39.0725, + 6.02250000000015 + ], + [ + 39.14333333300016, + 5.983333333000189 + ], + [ + 39.275, + 5.991666667000118 + ], + [ + 39.370000000000175, + 5.943333333000112 + ], + [ + 39.34083333300015, + 5.900833333000094 + ], + [ + 39.3575, + 5.794166666000024 + ], + [ + 39.265, + 5.688333333000173 + ], + [ + 39.21333333400008, + 5.675833334000174 + ], + [ + 39.15416666700003, + 5.5975 + ], + [ + 39.16250000000019, + 5.53416666600009 + ], + [ + 39.12416666600018, + 5.422500000000127 + ], + [ + 39.023333333000096, + 5.531666666000035 + ], + [ + 38.99666666700011, + 5.643333333000101 + ], + [ + 38.93083333400011, + 5.661666666000087 + ], + [ + 38.7675, + 5.56666666700005 + ], + [ + 38.75083333300012, + 5.618333333000123 + ], + [ + 38.64333333400003, + 5.680000000000121 + ], + [ + 38.606666666000194, + 5.671666666000021 + ], + [ + 38.445000000000164, + 5.629166667000163 + ], + [ + 38.330833333000044, + 5.437500000000114 + ], + [ + 38.28416666600015, + 5.4425 + ], + [ + 38.25500000000011, + 5.4575 + ], + [ + 38.215, + 5.5275 + ], + [ + 38.111666667, + 5.492500000000121 + ], + [ + 38.116666667, + 5.680000000000121 + ], + [ + 38.197500000000105, + 5.6975 + ], + [ + 38.192500000000166, + 5.815833333000114 + ], + [ + 38.190833334000104, + 5.819166666000172 + ], + [ + 38.158333333000144, + 5.995833333000064 + ], + [ + 38.0975, + 6.017500000000155 + ], + [ + 38.06916666700005, + 6.172500000000127 + ], + [ + 38.17000000000013, + 6.241666666000128 + ], + [ + 38.22083333300009, + 6.322500000000161 + ], + [ + 38.289166667000075, + 6.280833334000022 + ], + [ + 38.345833334000076, + 6.386666667000043 + ], + [ + 38.338333334000026, + 6.531666667000081 + ], + [ + 38.29583333300013, + 6.547500000000184 + ], + [ + 38.34583333299997, + 6.664166666000142 + ], + [ + 38.46916666600009, + 6.7575 + ], + [ + 38.40416666700014, + 6.834166666999977 + ], + [ + 38.35083333300014, + 6.834166666999977 + ], + [ + 38.2875, + 6.759166667000159 + ], + [ + 38.24083333400017, + 6.792500000000132 + ], + [ + 38.218333334000135, + 6.940833333000171 + ], + [ + 38.23083333400018, + 7.030833333000146 + ], + [ + 38.14166666600005, + 7.230833333000021 + ], + [ + 38.11333333300007, + 7.33416666700009 + ], + [ + 38.035, + 7.3241666670001 + ], + [ + 37.999166667000054, + 7.115833333000126 + ], + [ + 37.94583333300005, + 7.013333333000105 + ], + [ + 37.968333334000135, + 6.948333333000051 + ], + [ + 37.79083333300002, + 6.791666666000083 + ], + [ + 37.64583333300004, + 6.797500000000127 + ], + [ + 37.574166667000156, + 6.838333333000151 + ], + [ + 37.638333333000105, + 6.980000000000132 + ], + [ + 37.60833333300019, + 7.105833333000135 + ], + [ + 37.705833333000044, + 7.035 + ], + [ + 37.7708333330001, + 7.11833333300018 + ], + [ + 37.75, + 7.209166666000101 + ], + [ + 37.639166667000154, + 7.255 + ], + [ + 37.525, + 7.245 + ], + [ + 37.50250000000017, + 7.291666667000072 + ], + [ + 37.52333333300004, + 7.401666667000029 + ], + [ + 37.5575, + 7.430833333000066 + ], + [ + 37.558333334000054, + 7.571666666000056 + ], + [ + 37.64750000000015, + 7.62 + ], + [ + 37.619166666000126, + 7.750000000000114 + ], + [ + 37.66750000000013, + 7.778333333000091 + ], + [ + 37.73166666700001, + 7.916666667000072 + ], + [ + 37.686666666000065, + 8.055833333000066 + ], + [ + 37.65416666700014, + 8.09 + ], + [ + 37.698333333000164, + 8.20333333300016 + ], + [ + 37.82666666600005, + 8.24666666700017 + ], + [ + 37.85500000000013, + 8.399166667000088 + ], + [ + 37.80583333300018, + 8.495000000000175 + ], + [ + 37.68666666700011, + 8.53 + ], + [ + 37.61166666700012, + 8.480833334000067 + ], + [ + 37.49833333300012, + 8.51083333300005 + ], + [ + 37.298333333000016, + 8.618333333000066 + ], + [ + 37.23500000000013, + 8.692500000000166 + ], + [ + 37.3025, + 8.78333333300003 + ], + [ + 37.40666666600015, + 8.83333333400003 + ], + [ + 37.395833334000145, + 8.947500000000105 + ], + [ + 37.26416666600005, + 9.029166667000027 + ], + [ + 37.21583333300015, + 9.025833333000094 + ], + [ + 37.16166666600003, + 9.115833333000069 + ], + [ + 37.06583333400005, + 9.170000000000186 + ], + [ + 36.88333333400004, + 9.0275 + ], + [ + 36.76416666700004, + 9.059166666000067 + ], + [ + 36.69000000000017, + 9.02833333400008 + ], + [ + 36.59, + 8.900833333000037 + ], + [ + 36.6975, + 8.821666667000102 + ], + [ + 36.698333333, + 8.644166667000036 + ], + [ + 36.525, + 8.66333333300014 + ], + [ + 36.453333333000046, + 8.726666667000131 + ], + [ + 36.43083333300018, + 8.878333333000171 + ], + [ + 36.368333333000066, + 9.012500000000102 + ], + [ + 36.400833333000094, + 9.15 + ], + [ + 36.58750000000015, + 9.173333333000016 + ], + [ + 36.688333334000106, + 9.229166667000129 + ], + [ + 36.75666666700016, + 9.23250000000013 + ], + [ + 36.791666666000026, + 9.297500000000127 + ], + [ + 36.90750000000014, + 9.243333334000113 + ], + [ + 36.97250000000014, + 9.441666666000117 + ], + [ + 36.9325, + 9.551666666000074 + ], + [ + 36.88750000000016, + 9.588333334000026 + ], + [ + 36.981666667000184, + 9.765 + ], + [ + 36.955833333000044, + 9.870833333000064 + ], + [ + 36.90833333300003, + 9.904166666000037 + ], + [ + 36.78916666700019, + 9.89416666700015 + ], + [ + 36.68500000000017, + 9.73166666700007 + ], + [ + 36.65583333300003, + 9.738333333000128 + ], + [ + 36.58166666600016, + 9.774166667000088 + ], + [ + 36.515, + 9.752500000000168 + ], + [ + 36.44250000000011, + 9.670833334000122 + ], + [ + 36.350833333000026, + 9.790833334000183 + ], + [ + 36.250000000000114, + 9.713333334000083 + ], + [ + 36.181666667000115, + 9.803333333000182 + ], + [ + 36.13750000000016, + 9.986666667 + ], + [ + 36.244166666000126, + 10.06250000000017 + ], + [ + 36.30250000000012, + 10.008333333000053 + ], + [ + 36.410833333000085, + 10.079166666000162 + ], + [ + 36.3908333330001, + 10.174166667 + ], + [ + 36.48833333300013, + 10.2025 + ], + [ + 36.505, + 10.113333333000128 + ], + [ + 36.48583333300007, + 10.013333333000048 + ], + [ + 36.574166667000156, + 10.025000000000148 + ], + [ + 36.635000000000105, + 10.054166666000071 + ], + [ + 36.67583333300013, + 10.125833333 + ], + [ + 36.78833333400007, + 10.001666666000062 + ], + [ + 36.91500000000019, + 10.155833333000146 + ], + [ + 37.03750000000019, + 10.119166667000172 + ], + [ + 37.09666666700008, + 10.000833333000116 + ], + [ + 37.215, + 9.964166666000096 + ], + [ + 37.228333334000126, + 9.844166665999978 + ], + [ + 37.32333333400004, + 9.77333333300004 + ], + [ + 37.35, + 9.686666666000121 + ], + [ + 37.46333333299998, + 9.605 + ], + [ + 37.505, + 9.831666667000036 + ], + [ + 37.595, + 9.8525 + ], + [ + 37.60166666700013, + 9.75 + ], + [ + 37.57000000000011, + 9.71 + ], + [ + 37.56333333300012, + 9.532500000000141 + ], + [ + 37.50583333300017, + 9.534166667000079 + ], + [ + 37.57750000000016, + 9.378333333000057 + ], + [ + 37.47583333300008, + 9.358333334000065 + ], + [ + 37.41416666700013, + 9.2525 + ], + [ + 37.5375, + 9.2075 + ], + [ + 37.69416666700005, + 9.193333334000044 + ], + [ + 37.76083333300011, + 9.138333334000038 + ], + [ + 37.86666666700006, + 9.201666666000165 + ], + [ + 37.80583333400011, + 9.295 + ], + [ + 37.83333333300004, + 9.403333334000138 + ], + [ + 37.93833333300012, + 9.415000000000134 + ], + [ + 37.96666666700003, + 9.45583333400009 + ], + [ + 37.889166666, + 9.543333333000078 + ], + [ + 37.73583333300019, + 9.511666667000043 + ], + [ + 37.65583333400008, + 9.655833333000032 + ], + [ + 37.670000000000186, + 9.752500000000168 + ], + [ + 37.70916666699998, + 9.770833333000155 + ], + [ + 37.88, + 9.65083333399997 + ], + [ + 37.89, + 9.69 + ], + [ + 38.00916666699999, + 9.730833333000078 + ], + [ + 38.0675, + 9.67 + ], + [ + 38.059166667000056, + 9.5125 + ], + [ + 38.113333334000174, + 9.431666667000059 + ], + [ + 38.16333333400007, + 9.4925 + ], + [ + 38.16000000000014, + 9.615833333000126 + ], + [ + 38.23500000000013, + 9.66833333400001 + ], + [ + 38.338333334000026, + 9.635000000000161 + ], + [ + 38.36166666700018, + 9.532500000000141 + ], + [ + 38.510833333000164, + 9.564166667000052 + ], + [ + 38.57583333300016, + 9.421666666000021 + ], + [ + 38.63666666700004, + 9.4975 + ], + [ + 38.41833333400018, + 9.635833333000107 + ], + [ + 38.23166666700013, + 9.721666667000136 + ], + [ + 38.165000000000134, + 9.726666666000028 + ], + [ + 38.2025000000001, + 9.821666667000045 + ], + [ + 38.125, + 9.863333334000117 + ], + [ + 38.219166667000025, + 10.013333333000048 + ], + [ + 38.34916666700008, + 10.075833333000162 + ], + [ + 38.380000000000166, + 10.008333334000099 + ], + [ + 38.46333333300015, + 9.988333333000071 + ], + [ + 38.586666666999974, + 10.030000000000143 + ], + [ + 38.68000000000018, + 9.9675 + ], + [ + 38.79583333300019, + 9.78 + ], + [ + 38.88333333300005, + 9.856666667000127 + ], + [ + 38.945, + 9.829166667000152 + ], + [ + 39.013333333000105, + 9.889166667000154 + ], + [ + 39.08, + 9.891666667000095 + ], + [ + 39.066666666, + 10.01 + ], + [ + 38.95916666700009, + 9.954166666000106 + ], + [ + 38.86833333300012, + 9.991666667 + ], + [ + 39.00083333400016, + 10.163333333000026 + ], + [ + 39.03416666700008, + 10.245833333000121 + ], + [ + 39.0025, + 10.396666667000147 + ], + [ + 38.89833333400014, + 10.461666666999974 + ], + [ + 38.73833333300007, + 10.495833333000064 + ], + [ + 38.662500000000136, + 10.411666667000077 + ], + [ + 38.57, + 10.5625 + ], + [ + 38.575, + 10.708333332999985 + ], + [ + 38.63333333300011, + 10.82 + ], + [ + 38.59, + 10.979166666000026 + ], + [ + 38.5975, + 11.048333334000176 + ], + [ + 38.52, + 11.090000000000146 + ], + [ + 38.60000000000019, + 11.166666667000129 + ], + [ + 38.70416666700015, + 11.17416666700018 + ], + [ + 38.737500000000125, + 11.23583333300013 + ], + [ + 38.69500000000011, + 11.323333334000097 + ], + [ + 38.775, + 11.360833333000187 + ], + [ + 38.87, + 11.320000000000164 + ], + [ + 38.97916666600014, + 11.343333334000022 + ], + [ + 38.94000000000011, + 11.40083333399997 + ], + [ + 38.75833333300017, + 11.415 + ], + [ + 38.72333333400019, + 11.461666667000145 + ], + [ + 38.74666666600007, + 11.543333334000124 + ], + [ + 38.70666666600016, + 11.6425 + ], + [ + 38.61083333300007, + 11.64666666700009 + ], + [ + 38.63833333400004, + 11.5375 + ], + [ + 38.6925, + 11.526666666999972 + ], + [ + 38.63166666700005, + 11.406666667000081 + ], + [ + 38.585, + 11.493333333000123 + ], + [ + 38.510833333000164, + 11.376666667000165 + ], + [ + 38.575, + 11.315833334 + ], + [ + 38.45416666700004, + 11.223333333000028 + ], + [ + 38.484166667000125, + 11.138333333000048 + ], + [ + 38.41166666700002, + 11.125 + ], + [ + 38.299166667000065, + 11.189166667000165 + ], + [ + 38.19166666700005, + 11.18000000000012 + ], + [ + 38.21333333400014, + 11.24333333300018 + ], + [ + 38.16833333400007, + 11.346666666000147 + ], + [ + 38.13583333300011, + 11.194166667000161 + ], + [ + 38.04833333300007, + 11.2425 + ], + [ + 38.0675, + 11.381666667000161 + ], + [ + 38.03916666700013, + 11.301666666000074 + ], + [ + 37.97166666700019, + 11.305833333000123 + ], + [ + 37.885, + 11.225 + ], + [ + 37.75, + 11.305000000000177 + ], + [ + 37.61583333300007, + 11.53333333300003 + ], + [ + 37.54833333300019, + 11.516666667000038 + ], + [ + 37.51666666699998, + 11.569166666000058 + ], + [ + 37.41083333300003, + 11.601666667000188 + ], + [ + 37.47083333300009, + 11.81250000000017 + ], + [ + 37.55500000000012, + 11.8375 + ], + [ + 37.63000000000011, + 11.803333333000126 + ], + [ + 37.67750000000012, + 11.921666667000125 + ], + [ + 37.75416666700005, + 11.984166665999965 + ], + [ + 37.64166666700004, + 12.11416666700012 + ], + [ + 37.56083333300006, + 12.2425 + ], + [ + 37.451666667000154, + 12.348333333000085 + ], + [ + 37.338333333000094, + 12.3875 + ], + [ + 37.2975, + 12.370833334000054 + ], + [ + 37.270833332999985, + 12.26250000000016 + ], + [ + 37.182500000000175, + 12.196666667000045 + ], + [ + 37.17000000000013, + 12.326666667000097 + ], + [ + 37.07416666600017, + 12.246666667000113 + ], + [ + 37.025, + 12.163333334000072 + ], + [ + 37.0025, + 12.0175 + ], + [ + 37.005000000000166, + 11.875833334000106 + ], + [ + 37.079166666000106, + 11.79916666700018 + ], + [ + 37.277500000000146, + 11.792500000000189 + ], + [ + 37.291666667000186, + 11.645 + ], + [ + 37.496666667000056, + 11.439166666 + ], + [ + 37.62916666600012, + 11.433333334000167 + ], + [ + 37.69916666700004, + 11.2725 + ], + [ + 37.80833333400017, + 11.217500000000143 + ], + [ + 37.75416666700005, + 11.156666667000138 + ], + [ + 37.7691666660001, + 11.103333333000137 + ], + [ + 37.892500000000155, + 11.185833334000108 + ], + [ + 38.03250000000014, + 11.120833333 + ], + [ + 38.05166666700018, + 11.075833333000105 + ], + [ + 38.2075, + 11.064166666000176 + ], + [ + 38.306666667000115, + 11.0808333330001 + ], + [ + 38.38833333300016, + 11.031666667000081 + ], + [ + 38.43583333300012, + 10.946666667000102 + ], + [ + 38.475833333000026, + 10.705000000000155 + ], + [ + 38.44166666700016, + 10.68416666600018 + ], + [ + 38.34083333299998, + 10.72416666700019 + ], + [ + 38.35500000000019, + 10.53 + ], + [ + 38.44166666700016, + 10.524166667000088 + ], + [ + 38.4575, + 10.41166666600003 + ], + [ + 38.38833333300016, + 10.30833333400011 + ], + [ + 38.38583333300005, + 10.213333333000094 + ], + [ + 38.32333333300011, + 10.23250000000013 + ], + [ + 38.14166666600005, + 10.089166666000153 + ], + [ + 38.05583333300012, + 10.108333333000132 + ], + [ + 37.70916666699998, + 9.9725 + ], + [ + 37.662500000000136, + 10.0175 + ], + [ + 37.585833334000085, + 10.164166667000075 + ], + [ + 37.51583333300016, + 10.15 + ], + [ + 37.43666666600012, + 10.21833333300009 + ], + [ + 37.36333333300007, + 10.1675 + ], + [ + 37.30000000000018, + 10.194166667000161 + ], + [ + 37.2375, + 10.339166666000096 + ], + [ + 37.186666667000054, + 10.352500000000191 + ], + [ + 37.1991666670001, + 10.455 + ], + [ + 37.3875, + 10.640000000000157 + ], + [ + 37.11083333300019, + 10.626666667000109 + ], + [ + 37.12083333300018, + 10.55166666700012 + ], + [ + 37.005000000000166, + 10.43750000000017 + ], + [ + 36.93333333400011, + 10.475 + ], + [ + 36.83333333300004, + 10.48416666700001 + ], + [ + 36.80333333400006, + 10.551666666000017 + ], + [ + 36.83083333400003, + 10.648333333000153 + ], + [ + 36.65833333300009, + 10.643333333000157 + ], + [ + 36.62833333300017, + 10.75 + ], + [ + 36.53416666700008, + 10.711666667000088 + ], + [ + 36.47666666700013, + 10.742500000000177 + ], + [ + 36.49166666700006, + 10.848333333000028 + ], + [ + 36.62500000000017, + 10.905833332999975 + ], + [ + 36.60166666700019, + 11.081666666000046 + ], + [ + 36.57083333300005, + 11.12 + ], + [ + 36.5725, + 11.226666666000085 + ], + [ + 36.630000000000166, + 11.249166666000121 + ], + [ + 36.7016666670001, + 11.3375 + ], + [ + 36.76083333300011, + 11.369166667000115 + ], + [ + 36.78916666700019, + 11.476666667000131 + ], + [ + 36.68916666700005, + 11.57666666700004 + ], + [ + 36.73166666700007, + 11.65 + ], + [ + 36.8425, + 11.613333333000014 + ], + [ + 36.90083333300015, + 11.704166666000106 + ], + [ + 36.941666667000106, + 11.866666667000061 + ], + [ + 36.825, + 11.84 + ], + [ + 36.730833334000124, + 11.935833333000062 + ], + [ + 36.72916666600008, + 11.999166667000054 + ], + [ + 36.810833333000176, + 12.1525 + ], + [ + 36.906666667000025, + 12.134166667000102 + ], + [ + 36.93333333300018, + 12.250000000000114 + ], + [ + 37.01833333300016, + 12.323333333000164 + ], + [ + 36.9583333330001, + 12.451666666000051 + ], + [ + 37.041666667000015, + 12.6 + ], + [ + 37.0808333330001, + 12.603333333000023 + ], + [ + 37.11833333300012, + 12.711666667000088 + ], + [ + 37.178333333000126, + 12.696666666 + ], + [ + 37.19833333399998, + 12.575 + ], + [ + 37.27250000000015, + 12.6975 + ], + [ + 37.366666667000175, + 12.714166667000143 + ], + [ + 37.368333333000066, + 12.761666667000156 + ], + [ + 37.55083333300007, + 12.812500000000114 + ], + [ + 37.6075, + 12.928333333000182 + ], + [ + 37.70000000000016, + 12.98583333300013 + ], + [ + 37.70333333400009, + 13.123333333000062 + ], + [ + 37.65083333400008, + 13.28 + ], + [ + 37.585, + 13.284166667000079 + ], + [ + 37.64583333300004, + 13.293333334000124 + ], + [ + 37.77500000000015, + 13.19 + ], + [ + 37.86166666600019, + 13.238333333000128 + ], + [ + 38.023333333000096, + 13.280833333000146 + ], + [ + 38.09, + 13.417500000000132 + ], + [ + 38.186666667000054, + 13.425 + ], + [ + 38.21583333300009, + 13.504166666000174 + ], + [ + 38.310000000000116, + 13.515833333000103 + ], + [ + 38.33166666600016, + 13.600833333000082 + ], + [ + 38.41083333300003, + 13.620833334000167 + ], + [ + 38.50750000000011, + 13.56666666700005 + ], + [ + 38.5175, + 13.482500000000186 + ], + [ + 38.60583333300008, + 13.284166666000147 + ], + [ + 38.6275, + 13.193333333000055 + ], + [ + 38.52, + 13.141666667000152 + ], + [ + 38.54333333400007, + 13.064166667000052 + ], + [ + 38.42666666700018, + 13.042500000000132 + ], + [ + 38.40083333400014, + 12.933333333000121 + ], + [ + 38.41916666700013, + 12.885 + ], + [ + 38.31583333400016, + 12.8308333330001 + ], + [ + 38.24000000000012, + 12.87 + ], + [ + 38.058333333000064, + 12.923333334000063 + ], + [ + 37.913333333000026, + 12.7775 + ], + [ + 37.959166666000044, + 12.670833334000065 + ], + [ + 37.88666666700004, + 12.535 + ], + [ + 37.81416666700011, + 12.468333332999975 + ], + [ + 37.840000000000146, + 12.35750000000013 + ], + [ + 37.8975, + 12.343333334000022 + ], + [ + 37.96, + 12.422500000000127 + ], + [ + 38.21833333300003, + 12.444166667000047 + ], + [ + 38.15166666700014, + 12.36 + ], + [ + 38.23666666700012, + 12.315000000000111 + ], + [ + 38.365833333000126, + 12.3875 + ], + [ + 38.351666666000085, + 12.293333334000124 + ], + [ + 38.390833333000046, + 12.163333332999969 + ], + [ + 38.370833334, + 12.072500000000105 + ], + [ + 38.52333333300004, + 12.05 + ], + [ + 38.5925, + 11.9425 + ], + [ + 38.72166666700019, + 11.991666666000071 + ], + [ + 38.73833333300007, + 12.043333334000181 + ], + [ + 38.68083333400017, + 12.130833333000169 + ], + [ + 38.58083333300016, + 12.119166667000115 + ], + [ + 38.518333333000044, + 12.203333334000149 + ], + [ + 38.63166666700005, + 12.249166666000065 + ], + [ + 38.65333333300009, + 12.325000000000102 + ], + [ + 38.554166667000175, + 12.325000000000102 + ], + [ + 38.525833333000094, + 12.525 + ], + [ + 38.71916666700014, + 12.5225 + ], + [ + 38.65, + 12.610000000000184 + ], + [ + 38.755000000000166, + 12.634166667000159 + ], + [ + 38.871666666000124, + 12.700833334000151 + ], + [ + 38.91666666700013, + 12.76833333400009 + ], + [ + 38.76833333300016, + 12.89583333400003 + ], + [ + 38.80333333300007, + 12.955833332999987 + ], + [ + 38.9, + 12.9 + ], + [ + 38.913333333000026, + 12.8 + ], + [ + 38.991666666000185, + 12.786666665999974 + ], + [ + 39.09666666700002, + 12.66166666700019 + ], + [ + 39.16333333300014, + 12.614166667 + ], + [ + 39.138333334000095, + 12.5375 + ], + [ + 39.225000000000136, + 12.494166667000115 + ], + [ + 39.2025000000001, + 12.649166667000145 + ], + [ + 39.1475, + 12.680833333000123 + ], + [ + 39.15000000000015, + 12.760000000000161 + ], + [ + 39.21000000000015, + 12.916666666000026 + ], + [ + 39.2975, + 12.945833333000053 + ], + [ + 39.23333333300013, + 13.047500000000127 + ], + [ + 39.33750000000015, + 13.135833333000107 + ], + [ + 39.21916666600009, + 13.175833333000014 + ], + [ + 39.091666667000084, + 13.171666665999965 + ], + [ + 39.08916666700014, + 13.243333333000123 + ], + [ + 39.14666666700009, + 13.275 + ], + [ + 39.066666667000106, + 13.432500000000118 + ], + [ + 39.09333333400019, + 13.511666667000156 + ], + [ + 38.9616666660001, + 13.585 + ], + [ + 38.9725, + 13.628333334000047 + ], + [ + 38.881666667, + 13.716666667000027 + ], + [ + 39.0025, + 13.804166667000118 + ], + [ + 39.04250000000013, + 13.768333333000157 + ], + [ + 39.0875, + 13.701666667000097 + ], + [ + 39.20833333300004, + 13.77166666700009 + ], + [ + 39.28583333400019, + 13.863333333000128 + ], + [ + 39.3075, + 14.00500000000011 + ], + [ + 39.2, + 14.029166667000084 + ], + [ + 39.126666667000165, + 14.073333333000164 + ], + [ + 39.070000000000164, + 13.953333333000103 + ], + [ + 38.9875, + 13.90583333300009 + ], + [ + 38.9075, + 13.939166667000165 + ], + [ + 38.97, + 14.035833333000141 + ], + [ + 38.9075, + 14.061666667000111 + ], + [ + 38.87666666700005, + 13.974166667000077 + ], + [ + 38.79250000000019, + 13.852500000000191 + ], + [ + 38.755000000000166, + 13.886666666999986 + ], + [ + 38.58833333400014, + 13.759166667000045 + ], + [ + 38.57166666600011, + 13.845833334000133 + ], + [ + 38.60500000000013, + 13.961666666000099 + ], + [ + 38.49583333300018, + 13.994166667 + ], + [ + 38.518333333000044, + 13.875 + ], + [ + 38.43333333400017, + 13.872500000000173 + ], + [ + 38.362500000000125, + 13.981666666000024 + ], + [ + 38.26583333400009, + 14.03 + ], + [ + 38.197500000000105, + 14.122500000000116 + ], + [ + 38.26583333300016, + 14.14666666700009 + ], + [ + 38.246666667000056, + 14.230833334000124 + ], + [ + 38.40583333300003, + 14.256666666000115 + ], + [ + 38.41833333400018, + 14.193333334000158 + ], + [ + 38.48, + 14.175 + ], + [ + 38.553333333000126, + 14.226666666000028 + ], + [ + 38.68000000000018, + 14.2025000000001 + ], + [ + 38.78916666700013, + 14.230833333000078 + ], + [ + 38.81750000000011, + 14.286666667000134 + ], + [ + 38.8975, + 14.310000000000116 + ], + [ + 38.881666667, + 14.3875 + ], + [ + 39.00916666700016, + 14.3825 + ], + [ + 39.14500000000015, + 14.520000000000152 + ], + [ + 39.17833333300007, + 14.585833333000096 + ], + [ + 39.07833333300016, + 14.638333333000105 + ], + [ + 38.89833333300004, + 14.506666666000058 + ], + [ + 38.69916666600011, + 14.47083333300003 + ], + [ + 38.52, + 14.418333333000078 + ], + [ + 38.44000000000017, + 14.425833333000128 + ], + [ + 38.39155948500013, + 14.497220262000042 + ], + [ + 38.41875859300012, + 14.644500862000143 + ], + [ + 38.27046948200018, + 14.748633939000172 + ], + [ + 38.28237949600009, + 14.812849711000183 + ], + [ + 38.36640958400011, + 14.942317426000159 + ], + [ + 38.214420534, + 14.923162598000147 + ], + [ + 38.157150510000065, + 14.961951028000158 + ], + [ + 38.213409509000144, + 15.06856431000017 + ], + [ + 38.401908452999976, + 15.08122333100016 + ], + [ + 38.5028605980001, + 15.195625078000035 + ], + [ + 38.4514505300001, + 15.316037320000078 + ], + [ + 38.447910517000025, + 15.583801072000085 + ], + [ + 38.39944853200012, + 15.75824892999998 + ], + [ + 38.402828619000104, + 15.812956271000076 + ], + [ + 38.34421145500011, + 16.01792347500009 + ], + [ + 38.33686052600018, + 16.194282070999975 + ], + [ + 38.35272948000011, + 16.22963911800008 + ], + [ + 38.24029161300018, + 16.332493452000108 + ], + [ + 38.17247061700016, + 16.539759310000022 + ], + [ + 38.15703953400015, + 16.83143210600008 + ], + [ + 38.014869547000046, + 17.06888656200016 + ], + [ + 37.90219849600004, + 17.11524351600002 + ], + [ + 37.86729859800005, + 17.234197139000116 + ], + [ + 37.85807045800016, + 17.4778124610001 + ], + [ + 37.75308946800004, + 17.596135094000033 + ], + [ + 37.744628607000095, + 17.735335540000165 + ], + [ + 37.97098156699997, + 17.895307012000103 + ], + [ + 38.16141298200017, + 17.792106526 + ], + [ + 38.276569496000036, + 18.017718338 + ], + [ + 38.391590498000085, + 18.181384720000153 + ], + [ + 38.3311615020001, + 18.167850293000015 + ], + [ + 38.10504155900003, + 18.26754347600007 + ], + [ + 38.07302855600011, + 18.344587751 + ], + [ + 38.10737960700004, + 18.412865729000032 + ], + [ + 38.01937850799999, + 18.462792703000105 + ], + [ + 37.91875057600015, + 18.577235018000124 + ], + [ + 37.79978957700018, + 18.615823624000143 + ], + [ + 37.73852155200012, + 18.707577133000143 + ], + [ + 37.673919542000135, + 18.736015421 + ], + [ + 37.54032156100004, + 18.71731740700011 + ], + [ + 37.42153959900003, + 18.8466387740001 + ], + [ + 37.39010391700015, + 19.02169811500005 + ], + [ + 36.803194779000194, + 19.049324908000187 + ], + [ + 36.43796410800019, + 19.110112892000018 + ], + [ + 36.21715180600012, + 19.08474149200009 + ], + [ + 36.12845441900015, + 19.034318436000035 + ], + [ + 35.83408213100006, + 18.758248498000057 + ], + [ + 35.761585229, + 18.70754119200012 + ], + [ + 35.59583892300009, + 18.641602242000033 + ], + [ + 35.41237198400012, + 18.601350871000022 + ], + [ + 35.16329891500004, + 18.58702590900009 + ], + [ + 34.90135538200013, + 18.62878820600008 + ], + [ + 34.774635352000075, + 18.683646446000125 + ], + [ + 34.6771973970001, + 18.757486456000095 + ], + [ + 34.55639016900017, + 18.900581548000048 + ], + [ + 34.36502599700003, + 19.218361186000152 + ], + [ + 34.257233324000026, + 19.541739205000113 + ], + [ + 34.1746416310001, + 19.848353561000124 + ], + [ + 34.13213588100018, + 19.94329459000005 + ], + [ + 34.02543705700003, + 20.107558518000076 + ], + [ + 33.86977928700014, + 20.301222874000132 + ], + [ + 33.74797311200007, + 20.413529996000136 + ], + [ + 33.57506128900019, + 20.506949187000146 + ], + [ + 32.950132152000094, + 20.444456274000174 + ], + [ + 32.762020199000176, + 20.318200177000165 + ], + [ + 32.62684672300003, + 20.18243019900018 + ], + [ + 32.51132928100009, + 19.990770789000123 + ], + [ + 32.4913881920001, + 19.838223190000065 + ], + [ + 32.60590672500007, + 19.55192685900016 + ], + [ + 32.721855491000156, + 19.40614996300019 + ], + [ + 33.07474133600016, + 19.135696826000185 + ], + [ + 33.30911746000004, + 18.88133229100015 + ], + [ + 33.408366160000185, + 18.746037620000152 + ], + [ + 33.45041601100013, + 18.627760390000105 + ], + [ + 33.406881667, + 18.495278897 + ], + [ + 33.31606488800003, + 18.39756304100007 + ], + [ + 33.10052399500012, + 18.2434683460001 + ], + [ + 32.70884801700004, + 18.009818188000054 + ], + [ + 32.45812548200007, + 17.893416646 + ], + [ + 32.25385977500008, + 17.825095177000037 + ], + [ + 31.97440455600008, + 17.776941669 + ], + [ + 31.694886601000064, + 17.80120837100003 + ], + [ + 31.519262417000164, + 17.843522421999978 + ], + [ + 31.111294907000172, + 17.95943874700015 + ], + [ + 30.96602584400017, + 17.989493336000066 + ], + [ + 30.323129666000057, + 18.00118235700006 + ], + [ + 29.574059723000175, + 18.01480181100004 + ], + [ + 25.67917969300015, + 17.939659431000166 + ], + [ + 25.59525769100003, + 17.931420187000185 + ], + [ + 25.479872306000118, + 17.854573450999965 + ], + [ + 25.27541456200015, + 17.669910557000037 + ], + [ + 25.051452351000137, + 17.52346273800009 + ], + [ + 24.94547319100019, + 17.49815869100013 + ], + [ + 24.764099793000128, + 17.500318084000185 + ], + [ + 24.546341622000057, + 17.529486013000053 + ], + [ + 23.833374260000085, + 17.51992273100018 + ], + [ + 23.80443998000004, + 17.49086998900009 + ], + [ + 23.795490069000152, + 17.312269922000098 + ], + [ + 23.67896995500007, + 17.124309817000096 + ], + [ + 23.760349970000107, + 17.053740067000035 + ], + [ + 23.657220048, + 16.992330045000017 + ], + [ + 23.455790015000048, + 16.94310007700011 + ], + [ + 23.488410035000186, + 16.848210000999984 + ], + [ + 23.388010006000115, + 16.81136004500013 + ], + [ + 23.396439954000186, + 16.711949952000055 + ], + [ + 23.165179817000137, + 16.540560015000096 + ], + [ + 23.15901999800019, + 16.442310070000133 + ], + [ + 23.284770071000025, + 16.42459999700003 + ], + [ + 23.352829951000103, + 16.388820066000108 + ], + [ + 23.45167994800005, + 16.278199966000045 + ], + [ + 23.340679997000052, + 16.226309984000125 + ], + [ + 23.236759921000157, + 16.237920084999985 + ], + [ + 23.13507001800008, + 16.329679998000188 + ], + [ + 23.04052001200006, + 16.355570070000056 + ], + [ + 22.988150024, + 16.313469967 + ], + [ + 23.01906001000009, + 16.200590122000108 + ], + [ + 23.104900019000013, + 16.13008004400018 + ], + [ + 23.113310077000108, + 15.979989929999988 + ], + [ + 22.757640084000116, + 16.066390035000097 + ], + [ + 22.750429954000026, + 16.162440083000092 + ], + [ + 22.689790019000043, + 16.159250073000067 + ], + [ + 22.58384993800007, + 16.22670004400004 + ], + [ + 22.545420027000148, + 16.332739929000127 + ], + [ + 22.634290044000124, + 16.39144998100005 + ], + [ + 22.56757002700016, + 16.44663998500016 + ], + [ + 22.454480015000172, + 16.442630074000135 + ], + [ + 22.36729996600002, + 16.383550028000172 + ], + [ + 22.357179874000053, + 16.46913991300005 + ], + [ + 22.404539806000173, + 16.532889945000022 + ], + [ + 22.47780002000013, + 16.548950007000087 + ], + [ + 22.47037004100008, + 16.644129987000042 + ], + [ + 22.60045002900017, + 16.654570084000113 + ], + [ + 22.56014990600005, + 16.71320004600011 + ], + [ + 22.553629950000072, + 16.848530004999986 + ], + [ + 22.422770018000108, + 16.79699998400008 + ], + [ + 22.25662001900008, + 16.908219960000054 + ], + [ + 22.253309963000106, + 17.002160056000093 + ], + [ + 22.202889924000033, + 17.047199870000043 + ], + [ + 22.023299920000113, + 17.014850040000056 + ], + [ + 22.017789967000112, + 17.132250077000037 + ], + [ + 21.86596992900013, + 17.21823002200017 + ], + [ + 21.88738997500019, + 17.275849983 + ], + [ + 21.963299994000067, + 17.311129841000024 + ], + [ + 21.942233299000065, + 17.42278360800009 + ], + [ + 21.303230958000142, + 17.388242941000044 + ], + [ + 20.902986665000128, + 17.326666896000063 + ], + [ + 20.754724825000096, + 17.292441867000093 + ], + [ + 20.368814064000105, + 17.133307226 + ], + [ + 20.18322329199998, + 17.067595913 + ], + [ + 20.01665593900009, + 17.027057694000064 + ], + [ + 19.825536312, + 17.02022168600007 + ], + [ + 19.687954816000058, + 17.069467518000067 + ], + [ + 19.561669031000122, + 17.224645855000176 + ], + [ + 19.400113620000127, + 17.625288020000028 + ], + [ + 19.28704417600011, + 17.80953089000002 + ], + [ + 19.072697022000057, + 18.089579415000117 + ], + [ + 18.961889419000045, + 18.19895534000017 + ], + [ + 18.844213935000084, + 18.28453312500011 + ], + [ + 18.70963093900008, + 18.335136410000075 + ], + [ + 18.528660852000087, + 18.341809764000118 + ], + [ + 18.381422108000095, + 18.312276388999976 + ], + [ + 18.235006502000033, + 18.26267819500015 + ], + [ + 18.006332680000128, + 18.162160222000068 + ], + [ + 17.571580271000073, + 17.951893242000097 + ], + [ + 17.262423725000076, + 17.841213270000083 + ], + [ + 15.357780102000163, + 17.480875288000107 + ], + [ + 15.046805075000066, + 17.39266012900015 + ], + [ + 14.72152487500017, + 17.237600797000027 + ], + [ + 14.14512187500003, + 16.922013634000052 + ], + [ + 13.999065006000023, + 16.81768729900017 + ], + [ + 13.730424694000021, + 16.679454905 + ], + [ + 13.534812816000112, + 16.640332529999966 + ], + [ + 13.36205531700017, + 16.62733256300004 + ], + [ + 11.1436998960001, + 16.732968535 + ], + [ + 10.950896923000187, + 16.766355047 + ], + [ + 10.48990496099998, + 16.922165825000093 + ], + [ + 10.209723609000037, + 17.037153095000065 + ], + [ + 9.938251551000178, + 17.17440222700003 + ], + [ + 9.675913729000115, + 17.34485948700012 + ], + [ + 9.527779786000053, + 17.471801009000103 + ], + [ + 9.28628433200015, + 17.73617955000003 + ], + [ + 9.240020039000171, + 17.725090078000107 + ], + [ + 9.190759971000034, + 17.56022995300009 + ], + [ + 9.097909966999964, + 17.591259984999965 + ], + [ + 8.99766993999998, + 17.55032002900009 + ], + [ + 8.954429755000149, + 17.41515007200013 + ], + [ + 8.923440032000087, + 17.390590006000025 + ], + [ + 8.821399849000045, + 17.444090043000188 + ], + [ + 8.685599916000172, + 17.396579966 + ], + [ + 8.609190001000115, + 17.459020056000156 + ], + [ + 8.62818994800017, + 17.305329983000092 + ], + [ + 8.53455999900018, + 17.309010032 + ], + [ + 8.526809840000112, + 17.414149927000096 + ], + [ + 8.478079944000115, + 17.45785005200014 + ], + [ + 8.392449751000129, + 17.619640036000078 + ], + [ + 8.305330076000189, + 17.665790007 + ], + [ + 8.311929945000145, + 17.84628000099997 + ], + [ + 8.444230072000153, + 17.86108979300019 + ], + [ + 8.490559936000125, + 17.99868002500017 + ], + [ + 8.36940996900006, + 18.126729974000057 + ], + [ + 8.38319004400006, + 18.29707998600003 + ], + [ + 8.432179921000113, + 18.350910060000103 + ], + [ + 8.641737678000084, + 18.437589981000087 + ], + [ + 7.471696100999964, + 18.650324813000054 + ], + [ + 7.130356503000087, + 18.757264011000075 + ], + [ + 5.638038706000145, + 19.53326926600016 + ], + [ + 4.655243265000024, + 20.17422281400013 + ], + [ + 4.431843605999973, + 20.28816759700004 + ], + [ + 3.834994502000086, + 20.48064247400015 + ], + [ + 3.484791434000101, + 20.532064960000127 + ], + [ + 2.473387475000038, + 20.56860993300012 + ], + [ + 1.71635588100014, + 20.55713975700013 + ], + [ + 1.023262277000185, + 20.51890980900015 + ], + [ + 0.757011086000034, + 20.4758983750001 + ], + [ + 0.612250456000083, + 20.43259997000007 + ], + [ + 0.429524624000067, + 20.340720668000017 + ], + [ + 0.296524603000023, + 20.24464512300017 + ], + [ + 0.080441619000112, + 20.02355043900019 + ], + [ + -0.11100375999996, + 19.780949579000094 + ], + [ + -0.336269014999971, + 19.461552733000133 + ], + [ + -0.533364931999927, + 19.204208947999973 + ], + [ + -0.642117344999917, + 19.08144794800006 + ], + [ + -0.83111586099983, + 18.908484326000064 + ], + [ + -1.081015449999825, + 18.730832111000097 + ], + [ + -1.282597303999921, + 18.599304406000044 + ], + [ + -1.698551936999877, + 18.359252245000107 + ], + [ + -2.063668683999822, + 18.18414034100016 + ], + [ + -2.233278345999963, + 18.114773996000054 + ], + [ + -2.529948067999953, + 18.013166295000076 + ], + [ + -2.965631658999826, + 17.90816789600018 + ], + [ + -3.298919282999975, + 17.857814545999986 + ], + [ + -3.523834067999871, + 17.836658425000053 + ], + [ + -3.94004165799987, + 17.822315545000095 + ], + [ + -4.261157405999882, + 17.83191930099997 + ], + [ + -4.785843111999952, + 17.884864104000087 + ], + [ + -5.081222493999974, + 17.935129490000065 + ], + [ + -5.322840329999963, + 17.98767518699998 + ], + [ + -5.613202772999955, + 18.065319732000034 + ], + [ + -5.84450412599989, + 18.139489267000158 + ], + [ + -6.17029463099982, + 18.271939890000056 + ], + [ + -6.517301674999942, + 18.459077094000065 + ], + [ + -7.023777252999821, + 18.763711039000043 + ], + [ + -7.362120838999886, + 18.948262086000057 + ], + [ + -9.507147163999946, + 19.79327245600018 + ], + [ + -11.13216710699993, + 20.183277243000134 + ], + [ + -12.094278595999981, + 20.744508944000074 + ], + [ + -12.07300014999987, + 20.638939923000066 + ], + [ + -12.160390014999962, + 20.56615003400003 + ], + [ + -12.024360024999964, + 20.55484004700014 + ], + [ + -12.059779994999928, + 20.42843007600004 + ], + [ + -12.142739964999919, + 20.380550005000146 + ], + [ + -12.133840043999953, + 20.249940021000043 + ], + [ + -12.186399957999981, + 20.143600022000157 + ], + [ + -12.083860053999956, + 20.13177975300016 + ], + [ + -11.974960020999902, + 20.0881199370001 + ], + [ + -11.972480075999954, + 20.030969950000042 + ], + [ + -12.08929995099993, + 19.903699945000028 + ], + [ + -12.211479986999962, + 19.831330040000125 + ], + [ + -12.283709955999939, + 19.836380053000084 + ], + [ + -12.346730032999915, + 19.88914995900018 + ], + [ + -12.398100051999904, + 19.788460025000177 + ], + [ + -12.37170004899997, + 19.71683996500002 + ], + [ + -12.26318004299992, + 19.668619998999986 + ], + [ + -12.165470127999924, + 19.685950045000027 + ], + [ + -12.173190010999974, + 19.586209915000097 + ], + [ + -12.24384002599993, + 19.563880021999978 + ], + [ + -12.29611003499997, + 19.642990082999972 + ], + [ + -12.345180000999903, + 19.593040017000135 + ], + [ + -12.430020040999977, + 19.6584199940001 + ], + [ + -12.447380009999904, + 19.718489800000043 + ], + [ + -12.527290082999912, + 19.803440028000182 + ], + [ + -12.61252000699983, + 19.789900044000035 + ], + [ + -12.689849978999973, + 19.81653996200015 + ], + [ + -12.680050066999854, + 19.87808006300014 + ], + [ + -12.409159914999918, + 20.072900018000155 + ], + [ + -12.458879922999927, + 20.120159971000078 + ], + [ + -12.734669942999972, + 19.999999941000056 + ], + [ + -12.874550017999923, + 19.951929944000085 + ], + [ + -12.860660106999887, + 20.024950067000134 + ], + [ + -12.947240103999945, + 20.05348008700014 + ], + [ + -13.097180071999958, + 20.034359918000064 + ], + [ + -13.183259996999936, + 20.157769982000048 + ], + [ + -13.165480043999935, + 20.304849978 + ], + [ + -13.10277997199995, + 20.331440082000086 + ], + [ + -13.059310080999978, + 20.430689996000126 + ], + [ + -12.918989954999972, + 20.511419970000134 + ], + [ + -12.845030061999921, + 20.581269973000076 + ], + [ + -12.874870022999971, + 20.640709980000054 + ], + [ + -12.849060214999952, + 20.73007003600003 + ], + [ + -12.873369979999893, + 20.787740161999977 + ], + [ + -12.976120051999942, + 20.82390997699997 + ], + [ + -13.025140027999896, + 20.740459967000163 + ], + [ + -13.090960054999925, + 20.76108000200003 + ], + [ + -13.129709969999965, + 20.70810996100016 + ], + [ + -13.161980062999874, + 20.584879967000177 + ], + [ + -13.12528993299992, + 20.409489799000085 + ], + [ + -13.165590055999871, + 20.350120025000138 + ], + [ + -13.22757003099997, + 20.355419986000186 + ], + [ + -13.219359931999918, + 20.568779948000042 + ], + [ + -13.155960003999951, + 20.728569994000054 + ], + [ + -13.16612005299993, + 20.91105024600006 + ], + [ + -13.106031534999943, + 21.010519355000042 + ], + [ + -13.254815509999958, + 20.980762560000073 + ], + [ + -13.494200896999814, + 20.879722063000088 + ], + [ + -13.60780725099994, + 20.78714466300005 + ], + [ + -13.69109313399997, + 20.691950270000063 + ], + [ + -13.846641367999837, + 20.437292639000134 + ], + [ + -13.960154299999886, + 20.18395001900018 + ], + [ + -14.180348454999887, + 19.636633671000027 + ], + [ + -14.295088731999897, + 19.414893242000176 + ], + [ + -14.466302460999941, + 19.202763586000117 + ], + [ + -14.603906165999945, + 19.114996019000046 + ], + [ + -14.745787480999923, + 19.08555111900006 + ], + [ + -15.5843800479999, + 19.171319939000057 + ], + [ + -15.504469975999882, + 19.09253991500009 + ], + [ + -15.472279971999967, + 18.987500000000125 + ], + [ + -15.477379974999963, + 18.892569966999986 + ], + [ + -15.682839984999873, + 18.393340025000043 + ], + [ + -15.735619923999934, + 18.139290055 + ], + [ + -15.736649992999958, + 17.942089958000054 + ], + [ + -15.777196450999952, + 17.89526498900011 + ], + [ + -15.78607901199996, + 17.885006987000054 + ], + [ + -15.88117981199997, + 17.775180079999984 + ], + [ + -16.069328768999924, + 17.590229972000145 + ] + ], + [ + [ + 37.585, + 13.284166667000079 + ], + [ + 37.51333333400015, + 13.323333333000107 + ], + [ + 37.47083333400019, + 13.225000000000136 + ], + [ + 37.39333333300016, + 13.253333334000047 + ], + [ + 37.36333333300007, + 13.328333333000103 + ], + [ + 37.270833332999985, + 13.360000000000184 + ], + [ + 37.19916666600005, + 13.33083333400009 + ], + [ + 37.18333333300012, + 13.415 + ], + [ + 37.27666666700003, + 13.459166667000034 + ], + [ + 37.433333333000064, + 13.499166667000111 + ], + [ + 37.3925, + 13.625000000000114 + ], + [ + 37.3375, + 13.635833333 + ], + [ + 37.21833333300003, + 13.769166666000103 + ], + [ + 37.30416666700006, + 13.80916666600018 + ], + [ + 37.36083333300013, + 13.722500000000139 + ], + [ + 37.42, + 13.7025 + ], + [ + 37.42833333300007, + 13.60833333300019 + ], + [ + 37.49250000000018, + 13.54916666700018 + ], + [ + 37.47166666700008, + 13.35750000000013 + ], + [ + 37.585, + 13.284166667000079 + ] + ], + [ + [ + 34.40666666700014, + 8.229166667000129 + ], + [ + 34.35083333400013, + 8.172500000000127 + ], + [ + 34.09916666700008, + 8.091666666000094 + ], + [ + 34.11083333300007, + 7.99 + ], + [ + 34.006666667, + 7.905833333000032 + ], + [ + 34.095, + 7.85 + ], + [ + 34.10666666700013, + 7.77583333299998 + ], + [ + 33.975000000000136, + 7.810000000000173 + ], + [ + 33.899166666999974, + 7.783333333000087 + ], + [ + 34.09083333300015, + 7.625833333000173 + ], + [ + 33.959166667000034, + 7.565833333000114 + ], + [ + 34.03500000000014, + 7.458333334000031 + ], + [ + 33.95666666600005, + 7.446666666000169 + ], + [ + 33.93916666700005, + 7.508333333000166 + ], + [ + 33.87500000000017, + 7.51416666700004 + ], + [ + 33.795833334, + 7.603333334000069 + ], + [ + 33.67166666700007, + 7.693333333999988 + ], + [ + 33.54197064100015, + 7.701666666000108 + ], + [ + 33.62330246800008, + 7.492836263000129 + ], + [ + 33.6376995600001, + 7.243523258999971 + ], + [ + 33.62607553600003, + 7.124226648000104 + ], + [ + 33.52650053800011, + 6.603735606000157 + ], + [ + 33.45967849700003, + 6.363097368000126 + ], + [ + 33.393497504000095, + 6.217614686000104 + ], + [ + 33.235031590000176, + 5.999503652000101 + ], + [ + 33.09556946099997, + 5.84252234000013 + ], + [ + 32.79841657700018, + 5.545816043000059 + ], + [ + 32.59310956900015, + 5.32711525700006 + ], + [ + 32.451080567000076, + 5.201224436000075 + ], + [ + 32.31560856000016, + 5.11631860600005 + ], + [ + 31.669931447000067, + 4.789387670000053 + ], + [ + 31.591329479000137, + 4.789467633000186 + ], + [ + 31.561889553000185, + 4.859552581000116 + ], + [ + 31.579980550000187, + 5.065863237000087 + ], + [ + 31.64357958100004, + 5.414999512000179 + ], + [ + 31.643459552000138, + 5.507591714000057 + ], + [ + 31.603719608000063, + 5.720678301000135 + ], + [ + 31.509849501000076, + 5.884256171 + ], + [ + 31.309949491999987, + 6.056592627000043 + ], + [ + 31.274139487000127, + 6.320156375000124 + ], + [ + 31.203029600000036, + 6.490819971000121 + ], + [ + 30.976350583999988, + 6.750458977 + ], + [ + 30.81174056600014, + 6.906437478000043 + ], + [ + 30.682449542000143, + 6.92671330200011 + ], + [ + 30.45756358300008, + 6.861232030000053 + ], + [ + 30.228450462000183, + 6.854664474 + ], + [ + 30.07442460900006, + 6.92335450600018 + ], + [ + 29.81780660800007, + 7.130359351000095 + ], + [ + 29.592176503000076, + 7.357152026000051 + ], + [ + 29.51561552900006, + 7.46206143500001 + ], + [ + 29.442254597000158, + 7.614921198000104 + ], + [ + 29.422821490000103, + 7.813038041000084 + ], + [ + 29.458162444000152, + 8.080222772000184 + ], + [ + 29.40327858000012, + 8.238905442000089 + ], + [ + 29.240915583000117, + 8.36905594700005 + ], + [ + 29.086284557000113, + 8.439602067000123 + ], + [ + 28.754873493000105, + 8.64484839000005 + ], + [ + 28.27518253800008, + 8.892733453000062 + ], + [ + 27.845031481000035, + 9.079752153000072 + ], + [ + 27.820425566000097, + 9.173895678000122 + ], + [ + 27.849866498000154, + 9.225473049000016 + ], + [ + 27.977687504000187, + 9.336878098000113 + ], + [ + 28.222961605000023, + 9.373882356000138 + ], + [ + 28.406572559000097, + 9.38560159800005 + ], + [ + 28.930053593000025, + 9.38560159800005 + ], + [ + 29.115533543000083, + 9.377667288000112 + ], + [ + 29.256530566000094, + 9.337812009 + ], + [ + 29.370910520000052, + 9.338374938000129 + ], + [ + 29.55087048400003, + 9.416140559000098 + ], + [ + 29.668840575000104, + 9.521721023000111 + ], + [ + 29.838609486000053, + 9.57551524000013 + ], + [ + 29.933404452000104, + 9.584565516000055 + ], + [ + 30.008829511000158, + 9.532023388000141 + ], + [ + 30.192174590000036, + 9.484018720000165 + ], + [ + 30.711332575000142, + 9.46286698700004 + ], + [ + 31.076854464000064, + 9.406415037000102 + ], + [ + 31.286403553000014, + 9.394021052000028 + ], + [ + 31.631074452000178, + 9.33375718000002 + ], + [ + 31.720878498000047, + 9.329583663000108 + ], + [ + 31.88156545000004, + 9.381981957000164 + ], + [ + 32.04360959900015, + 9.48098095100005 + ], + [ + 32.212978525000096, + 9.541336689000047 + ], + [ + 32.585391513000104, + 9.615711326999985 + ], + [ + 32.819339483000135, + 9.703369271000156 + ], + [ + 32.95508960200016, + 9.76708749300019 + ], + [ + 33.081840574000125, + 9.792537968000033 + ], + [ + 33.2274585400001, + 9.799292441000148 + ], + [ + 33.35739849100008, + 9.852871578000133 + ], + [ + 33.53252058900017, + 9.96042396900009 + ], + [ + 33.60100945500005, + 9.957414195000126 + ], + [ + 33.64075057300005, + 9.849797766000165 + ], + [ + 33.545238450000056, + 9.69386167800019 + ], + [ + 33.45952946700015, + 9.504437204000112 + ], + [ + 33.396560587000124, + 9.439465719 + ], + [ + 33.23423044700007, + 9.343522600000085 + ], + [ + 33.19200158100011, + 9.291280377000078 + ], + [ + 33.19638045500005, + 9.207730236000032 + ], + [ + 33.32883045100016, + 9.05537288500011 + ], + [ + 33.37041055800012, + 8.97870747200011 + ], + [ + 33.51842155700018, + 8.815930241999979 + ], + [ + 33.54925153800008, + 8.760740942000098 + ], + [ + 33.542308472000116, + 8.661430979000158 + ], + [ + 33.48537053900003, + 8.6342561780001 + ], + [ + 33.518089466000106, + 8.485268855000129 + ], + [ + 33.679166667000175, + 8.438333333000116 + ], + [ + 33.69166666700005, + 8.379166667000106 + ], + [ + 33.77, + 8.363333333000128 + ], + [ + 33.903333334000024, + 8.4825 + ], + [ + 34.024166666000156, + 8.49000000000018 + ], + [ + 34.1400000000001, + 8.595 + ], + [ + 34.15833333300009, + 8.681666667000059 + ], + [ + 34.24666666700017, + 8.689166667000109 + ], + [ + 34.191666667000106, + 8.465 + ], + [ + 34.247500000000116, + 8.465 + ], + [ + 34.27500000000015, + 8.398333334000142 + ], + [ + 34.23083333400007, + 8.269166667000036 + ], + [ + 34.29, + 8.237500000000125 + ], + [ + 34.40666666700014, + 8.229166667000129 + ] + ], + [ + [ + 30.87666666600012, + 2.892500000000155 + ], + [ + 30.952500000000157, + 2.796666666000021 + ], + [ + 30.876666667, + 2.681666667000172 + ], + [ + 30.95166666700004, + 2.624166667000054 + ], + [ + 30.90833333300003, + 2.534166667000079 + ], + [ + 30.996666667000113, + 2.46666666700014 + ], + [ + 30.965733113, + 2.406666667000081 + ], + [ + 31.01781652900013, + 2.335018896000065 + ], + [ + 31.052537557000107, + 2.175313801000073 + ], + [ + 30.990039573000104, + 2.057271626000102 + ], + [ + 30.84421155600006, + 1.869791586000133 + ], + [ + 30.698383540000123, + 1.751749411000105 + ], + [ + 30.608108599000047, + 1.640650805000064 + ], + [ + 30.524778567000055, + 1.592044651000037 + ], + [ + 30.441448535000063, + 1.60593245900003 + ], + [ + 30.39283953200004, + 1.723974634 + ], + [ + 30.302564591000134, + 1.821186438000041 + ], + [ + 30.316451560000132, + 1.890623297000047 + ], + [ + 30.302564591000134, + 2.036440250000112 + ], + [ + 30.32537661100008, + 2.09346686300006 + ], + [ + 30.295810453000172, + 2.201068037000084 + ], + [ + 30.308885551, + 2.25336122200008 + ], + [ + 30.416093446000104, + 2.297809616000166 + ], + [ + 30.562522445000127, + 2.439000093000175 + ], + [ + 30.609590519000108, + 2.577575919000139 + ], + [ + 30.784784533000106, + 2.663858560000108 + ], + [ + 30.87, + 2.800833333000071 + ], + [ + 30.87666666600012, + 2.892500000000155 + ] + ], + [ + [ + 11.558979514000043, + 6.486271280000096 + ], + [ + 11.381032548000178, + 6.434944863000112 + ], + [ + 11.162021464000077, + 6.482850457000097 + ], + [ + 11.062782581000135, + 6.424679546000164 + ], + [ + 11.086916427000176, + 6.579723297000101 + ], + [ + 11.049710500000117, + 6.662398367000094 + ], + [ + 10.938090538999973, + 6.70786901800011 + ], + [ + 10.927755484999977, + 6.8050129290001 + ], + [ + 10.8843474520001, + 6.883554380000135 + ], + [ + 10.942225499000187, + 6.939359079000042 + ], + [ + 10.969096540000123, + 7.092308025000136 + ], + [ + 10.981498572000078, + 7.332066834000159 + ], + [ + 11.091051555000035, + 7.387871701000108 + ], + [ + 11.08071650100004, + 7.270059358000083 + ], + [ + 11.161330460000102, + 7.185318485000153 + ], + [ + 11.155127517000153, + 7.127445634000026 + ], + [ + 11.241943582000033, + 7.119178060000024 + ], + [ + 11.31429047000006, + 7.005499336000184 + ], + [ + 11.41920256200018, + 6.999968957000078 + ], + [ + 11.47155358200007, + 7.133216239000092 + ], + [ + 11.533423594000112, + 7.052316121000047 + ], + [ + 11.685718584000142, + 7.118940182000074 + ], + [ + 11.719032459000061, + 7.199840300000062 + ], + [ + 11.576256461000014, + 7.347364644999971 + ], + [ + 11.561979565000058, + 7.45205914200011 + ], + [ + 11.581015538000088, + 7.528200686000105 + ], + [ + 11.657162446000143, + 7.537719008000181 + ], + [ + 11.795179534000056, + 7.480613101000074 + ], + [ + 11.790420456999982, + 7.56151305200018 + ], + [ + 11.904641490000017, + 7.575790115000075 + ], + [ + 11.961751588000027, + 7.551995736000151 + ], + [ + 11.99506546200007, + 7.632896021000136 + ], + [ + 12.047417488000065, + 7.62337870600004 + ], + [ + 11.952233434000163, + 7.423506189000136 + ], + [ + 12.00934353100007, + 7.423506189000136 + ], + [ + 12.095008593000045, + 7.342605904000152 + ], + [ + 12.171155501000044, + 7.490130250000107 + ], + [ + 12.175915584, + 7.580548857 + ], + [ + 12.247303583000019, + 7.647172917000091 + ], + [ + 12.318691582000042, + 7.54247758200006 + ], + [ + 12.32820956800009, + 7.447301574000107 + ], + [ + 12.418634546000078, + 7.404471558000182 + ], + [ + 12.551892557000144, + 7.428264931000058 + ], + [ + 12.589965508000034, + 7.471095786000149 + ], + [ + 12.589965508000034, + 7.566271960999984 + ], + [ + 12.537614488000145, + 7.675726038000164 + ], + [ + 12.556651466000176, + 7.74710884000018 + ], + [ + 12.632799548000094, + 7.832767532000105 + ], + [ + 12.670872498999984, + 7.77566179300004 + ], + [ + 12.751778484000056, + 7.77566179300004 + ], + [ + 12.837444552000079, + 7.889874444000043 + ], + [ + 12.927868524000132, + 7.904150502000164 + ], + [ + 13.004015432000188, + 7.813732062000042 + ], + [ + 12.970702564000078, + 7.599584494 + ], + [ + 12.918350538000084, + 7.580548857 + ], + [ + 12.827925560000153, + 7.342605904000152 + ], + [ + 12.756538567, + 7.304534629000045 + ], + [ + 12.708946456000149, + 7.347364644999971 + ], + [ + 12.609003493000046, + 7.361641708999969 + ], + [ + 12.628039464999972, + 7.271223102000135 + ], + [ + 12.490022545000102, + 7.18080483000017 + ], + [ + 12.417913534000093, + 7.037181085999975 + ], + [ + 12.294719506000092, + 6.996120154000039 + ], + [ + 12.137305521000087, + 7.078243192 + ], + [ + 12.051753447000067, + 7.006385471000044 + ], + [ + 11.993579518000047, + 7.119304124000166 + ], + [ + 11.94224958100017, + 7.033759426000017 + ], + [ + 11.791678580999985, + 6.941371072000152 + ], + [ + 11.784834590000116, + 6.859248034000188 + ], + [ + 11.719815496000138, + 6.766859680000152 + ], + [ + 11.863541499000121, + 6.691580131000023 + ], + [ + 11.843008518000033, + 6.629987895000056 + ], + [ + 11.675329551, + 6.592347450000034 + ], + [ + 11.644530583000062, + 6.537598367000044 + ], + [ + 11.558979514000043, + 6.486271280000096 + ] + ], + [ + [ + 12.172865577000152, + 8.368184061000022 + ], + [ + 12.199386590000074, + 8.46100056299997 + ], + [ + 12.308786519000023, + 8.431166520000033 + ], + [ + 12.312101562000123, + 8.348294642999974 + ], + [ + 12.255743489000054, + 8.311830179000026 + ], + [ + 12.172865577000152, + 8.368184061000022 + ] + ], + [ + [ + 12.796112550000146, + 8.712933416000055 + ], + [ + 12.736438428000042, + 8.61680136800004 + ], + [ + 12.617094544000054, + 8.537244031 + ], + [ + 12.517640580000034, + 8.580337072000134 + ], + [ + 12.48448747100008, + 8.669839537000087 + ], + [ + 12.544160587000022, + 8.72950829400014 + ], + [ + 12.706603546999986, + 8.749396874000126 + ], + [ + 12.796112550000146, + 8.828954043000124 + ], + [ + 12.855784492, + 8.792490753000095 + ], + [ + 12.796112550000146, + 8.712933416000055 + ] + ], + [ + [ + 14.265709455000035, + 7.277817815000162 + ], + [ + 14.429140474000121, + 7.337470312000107 + ], + [ + 14.518750563000083, + 7.424215969000045 + ], + [ + 14.593009531000064, + 7.45884144300004 + ], + [ + 14.676560510000115, + 7.371321801000136 + ], + [ + 14.66425956400019, + 7.272329178000177 + ], + [ + 14.55922057100014, + 7.30143902400016 + ], + [ + 14.475299448000158, + 7.250629604000096 + ], + [ + 14.502070576000108, + 7.125179838000122 + ], + [ + 14.437439564000044, + 7.036491088000105 + ], + [ + 14.334759574000032, + 7.161802217000059 + ], + [ + 14.292670518000136, + 7.147497996000027 + ], + [ + 14.268739513000071, + 7.008940275000043 + ], + [ + 14.192879434000076, + 7.008853104000025 + ], + [ + 14.164580452, + 7.067545872000096 + ], + [ + 14.172470506000025, + 7.194720801000074 + ], + [ + 14.265709455000035, + 7.277817815000162 + ] + ], + [ + [ + 14.246549431000119, + 7.383622076000108 + ], + [ + 14.146349478000047, + 7.343539815000042 + ], + [ + 13.98954049800011, + 7.413466010000093 + ], + [ + 14.028530597000042, + 7.462308366000116 + ], + [ + 14.221269443000097, + 7.480664902000171 + ], + [ + 14.297880540999984, + 7.443779498000026 + ], + [ + 14.246549431000119, + 7.383622076000108 + ] + ], + [ + [ + 13.346425565000118, + 8.255477135000149 + ], + [ + 13.120996458000036, + 8.348294642999974 + ], + [ + 13.179968511000027, + 8.404783474000055 + ], + [ + 13.246970596000097, + 8.381443059 + ], + [ + 13.326534471000116, + 8.427851980000014 + ], + [ + 13.435933562000173, + 8.348294642999974 + ], + [ + 13.44256348, + 8.285311179000189 + ], + [ + 13.346425565000118, + 8.255477135000149 + ] + ], + [ + [ + 10.653671442000132, + 5.774971241000117 + ], + [ + 10.707227444000068, + 5.856875175000084 + ], + [ + 10.67572456400012, + 5.970280817000059 + ], + [ + 10.726129474000118, + 6.055334671000026 + ], + [ + 10.83639357800007, + 6.014382703000081 + ], + [ + 10.871047551, + 5.957679799000175 + ], + [ + 10.937205578000032, + 5.963980308000032 + ], + [ + 11.00966444800008, + 5.860024927000097 + ], + [ + 10.842694590000065, + 5.756070720000082 + ], + [ + 10.76393454000015, + 5.740319783000075 + ], + [ + 10.694625588000122, + 5.626913974 + ], + [ + 10.609565532000147, + 5.718268336000108 + ], + [ + 10.653671442000132, + 5.774971241000117 + ] + ], + [ + [ + 0.578421476000074, + 7.842079994000073 + ], + [ + 0.583860493000088, + 7.918078542999979 + ], + [ + 0.540253474000053, + 8.117388969000046 + ], + [ + 0.551495450000118, + 8.242674114000124 + ], + [ + 0.583583555000075, + 8.311551229999964 + ], + [ + 0.812199461000148, + 8.363616427000125 + ], + [ + 0.845077477000132, + 8.32706110300012 + ], + [ + 0.859042566000028, + 8.04705122200005 + ], + [ + 0.831214479000096, + 7.923646138000151 + ], + [ + 0.870520576000047, + 7.833955415000105 + ], + [ + 1.034198526000068, + 7.765802328 + ], + [ + 1.125068582000097, + 7.613062427000102 + ], + [ + 1.087223451000057, + 7.549442104999969 + ], + [ + 0.900164518000054, + 7.376693428000067 + ], + [ + 0.780181430000084, + 7.183119576000024 + ], + [ + 0.643235548000177, + 6.8845473 + ], + [ + 0.520070522000083, + 6.794715761000077 + ], + [ + 0.42452654900012, + 6.782831731000158 + ], + [ + 0.385867535000159, + 6.871965225 + ], + [ + 0.516725472000076, + 7.024790119000158 + ], + [ + 0.580156530000124, + 7.13345512300009 + ], + [ + 0.605391423000015, + 7.31009820100013 + ], + [ + 0.567272539000157, + 7.71567016500012 + ], + [ + 0.578421476000074, + 7.842079994000073 + ] + ], + [ + [ + 8.630823496000119, + 9.518218058000059 + ], + [ + 8.549996468000074, + 9.541990645000169 + ], + [ + 8.47867753600002, + 9.513464513000145 + ], + [ + 8.374077587000045, + 9.570515602000171 + ], + [ + 8.52146949900009, + 9.722648821 + ], + [ + 8.569014503000062, + 9.793962892000138 + ], + [ + 8.640332430000171, + 10.069706217000146 + ], + [ + 8.840023562000056, + 10.202825088000054 + ], + [ + 8.816249467000034, + 10.321679637000159 + ], + [ + 8.86379547700011, + 10.431025923000163 + ], + [ + 8.935113571000102, + 10.469059479000066 + ], + [ + 9.034958466000091, + 10.611685441000134 + ], + [ + 9.068241495000109, + 10.587915202000033 + ], + [ + 9.115786500000183, + 10.454797336000127 + ], + [ + 9.106277566000188, + 10.383484439000142 + ], + [ + 8.96839542600003, + 10.312171206000073 + ], + [ + 8.944622505000098, + 10.240858309000032 + ], + [ + 8.925604470000167, + 10.031672996000168 + ], + [ + 9.006431497000108, + 10.045935139000107 + ], + [ + 9.096768465000025, + 10.107740611000168 + ], + [ + 9.111031446000027, + 10.198070370000153 + ], + [ + 9.163331505000087, + 10.21233335200003 + ], + [ + 9.253667466000024, + 10.345449877000135 + ], + [ + 9.320231511999964, + 10.307416488000115 + ], + [ + 9.496223483000051, + 10.313616246000095 + ], + [ + 9.567467481000108, + 10.359712858000137 + ], + [ + 9.66731254400014, + 10.321679637000159 + ], + [ + 9.681576532000122, + 10.264628549 + ], + [ + 9.567467481000108, + 10.107740611000168 + ], + [ + 9.557958547000112, + 9.917572159000144 + ], + [ + 9.529431578000072, + 9.86527578900018 + ], + [ + 9.557958547000112, + 9.541990645000169 + ], + [ + 9.600749504000078, + 9.342313594000075 + ], + [ + 9.500904441000102, + 9.275754242000176 + ], + [ + 9.358267583000043, + 9.256737715000156 + ], + [ + 9.277441561000046, + 9.190178531000072 + ], + [ + 9.015940431000104, + 9.11411192100013 + ], + [ + 8.930358517000116, + 9.066569096000023 + ], + [ + 8.821004520000088, + 9.061814713000047 + ], + [ + 8.754441480000082, + 9.137882161000107 + ], + [ + 8.659350465000102, + 9.194932075999986 + ], + [ + 8.659350465000102, + 9.35182185800005 + ], + [ + 8.67836850000009, + 9.427889473 + ], + [ + 8.630823496000119, + 9.518218058000059 + ] + ], + [ + [ + -12.469495430999928, + 12.161725315000183 + ], + [ + -12.350332427999888, + 12.172383744000172 + ], + [ + -12.105774476999954, + 12.159404702000074 + ], + [ + -11.94681252199996, + 12.12320812300004 + ], + [ + -11.902311488999942, + 12.029241457000126 + ], + [ + -11.846899564999944, + 11.770158170000116 + ], + [ + -11.831834434999905, + 11.636105555000029 + ], + [ + -11.850824474999968, + 11.397161802000142 + ], + [ + -11.884179587999938, + 11.24078264600007 + ], + [ + -11.872325564999926, + 11.042016541000066 + ], + [ + -11.8375054629999, + 10.965364874999977 + ], + [ + -11.754469468999957, + 10.87228719300009 + ], + [ + -11.71443246999985, + 10.708922559000086 + ], + [ + -11.753290469999968, + 10.569712222000135 + ], + [ + -11.847959540999966, + 10.36806341300013 + ], + [ + -11.898785556999883, + 10.300423131000116 + ], + [ + -11.965004436999948, + 10.284112115000084 + ], + [ + -12.021734497999887, + 10.337491595000131 + ], + [ + -12.058967582999912, + 10.567608532000122 + ], + [ + -12.040868538999973, + 10.801838135000082 + ], + [ + -12.037017557999832, + 11.061772016000134 + ], + [ + -12.046097505999967, + 11.28154685900006 + ], + [ + -12.06818147399997, + 11.434699150000029 + ], + [ + -12.108198523999931, + 11.525819993000084 + ], + [ + -12.234210546999975, + 11.660154911000177 + ], + [ + -12.446056444999897, + 11.770632083000123 + ], + [ + -12.523677561999875, + 11.843314080000141 + ], + [ + -12.531053468999914, + 11.982713680000018 + ], + [ + -12.594152435999945, + 12.098838746000126 + ], + [ + -12.469495430999928, + 12.161725315000183 + ] + ], + [ + [ + -11.370533543999898, + 10.950200838000058 + ], + [ + -11.307910500999924, + 10.967810714000109 + ], + [ + -11.244637525999963, + 11.046748126000125 + ], + [ + -11.167901536999864, + 11.030723100000102 + ], + [ + -10.91882657899987, + 11.030397212000139 + ], + [ + -10.88296343199994, + 10.962926076000088 + ], + [ + -10.907288553999933, + 10.88202646100018 + ], + [ + -10.823671525999885, + 10.861352832000023 + ], + [ + -10.800481481999952, + 10.808131603000106 + ], + [ + -10.854223562999948, + 10.709258673000022 + ], + [ + -10.992660583999964, + 10.720593688000065 + ], + [ + -11.047182517999886, + 10.66979918700008 + ], + [ + -11.220203439999977, + 10.624232646999985 + ], + [ + -11.221464580999964, + 10.501946882000084 + ], + [ + -11.191105494999874, + 10.441400204000104 + ], + [ + -11.2476585309999, + 10.33968547400002 + ], + [ + -11.220026580999956, + 10.265358445 + ], + [ + -11.261742474999949, + 10.225897283000108 + ], + [ + -11.344790539999963, + 10.304792785000188 + ], + [ + -11.575384574999816, + 10.363104679000173 + ], + [ + -11.676139577999948, + 10.405425914000034 + ], + [ + -11.709179530999961, + 10.50878768900003 + ], + [ + -11.577796551999882, + 10.611649399000157 + ], + [ + -11.541116504999877, + 10.750467629000127 + ], + [ + -11.430243539999935, + 10.804233012000054 + ], + [ + -11.370533543999898, + 10.950200838000058 + ] + ], + [ + [ + -12.31432846599995, + 11.575629453000033 + ], + [ + -12.264191441999856, + 11.586794986000086 + ], + [ + -12.260549504999972, + 11.474654677000103 + ], + [ + -12.190924554999981, + 11.402999463000072 + ], + [ + -12.202602557999967, + 11.295263844000033 + ], + [ + -12.16659943399992, + 11.279028097000037 + ], + [ + -12.128482561999931, + 11.157062521000057 + ], + [ + -12.19141355599993, + 11.022554768000134 + ], + [ + -12.339609459999963, + 10.953508673000101 + ], + [ + -12.30708851299994, + 10.907551871000067 + ], + [ + -12.17737051499995, + 10.859717188000047 + ], + [ + -12.126951522999946, + 10.780969543000026 + ], + [ + -12.13856548799987, + 10.660136026000146 + ], + [ + -12.23390544599988, + 10.503184889000124 + ], + [ + -12.293008591999978, + 10.493527763000088 + ], + [ + -12.378241483999943, + 10.596930440999984 + ], + [ + -12.414565466999875, + 10.790703950000136 + ], + [ + -12.6168554919999, + 10.842891188000124 + ], + [ + -12.654644463999944, + 10.924988577000022 + ], + [ + -12.744613465999976, + 10.983143562000066 + ], + [ + -12.73816258599993, + 11.090661084000146 + ], + [ + -12.769843496999954, + 11.146256236000056 + ], + [ + -12.889651571999877, + 10.996909497 + ], + [ + -12.981983431999936, + 11.045239215000038 + ], + [ + -12.947300457999972, + 11.15415668300011 + ], + [ + -12.896435548999932, + 11.217422450000072 + ], + [ + -12.996087492999948, + 11.349211281000123 + ], + [ + -12.940239542999905, + 11.41951633800005 + ], + [ + -12.870016460999977, + 11.436619109000162 + ], + [ + -12.760199446999934, + 11.42078820800009 + ], + [ + -12.701482538999926, + 11.501275769000017 + ], + [ + -12.654726438999944, + 11.506623255000022 + ], + [ + -12.491234567999982, + 11.633097792000115 + ], + [ + -12.394248571999924, + 11.625039263000133 + ], + [ + -12.31432846599995, + 11.575629453000033 + ] + ], + [ + [ + -12.93930345199982, + 9.83942365300004 + ], + [ + -12.832369477999919, + 9.851782769000181 + ], + [ + -12.819978509999885, + 9.765627868000138 + ], + [ + -12.845020451999858, + 9.668964408000022 + ], + [ + -12.822998509999934, + 9.600059464000026 + ], + [ + -12.840827488999935, + 9.511083718000066 + ], + [ + -12.913606547999962, + 9.539625774000172 + ], + [ + -12.944442563999928, + 9.674717243000032 + ], + [ + -12.93930345199982, + 9.83942365300004 + ] + ], + [ + [ + -8.587658537999971, + 8.890663794000147 + ], + [ + -8.625872472999959, + 8.983395303000066 + ], + [ + -8.506212590999894, + 9.002801756000054 + ], + [ + -8.278475442999877, + 8.907017557000131 + ], + [ + -8.309595437999974, + 8.845291043000088 + ], + [ + -8.390624469999977, + 8.808333723000032 + ], + [ + -8.455210553999962, + 8.719559813000046 + ], + [ + -8.586708532999978, + 8.802481143000023 + ], + [ + -8.587658537999971, + 8.890663794000147 + ] + ], + [ + [ + -7.38884856999988, + 8.031942339000011 + ], + [ + -7.462818530999925, + 8.02642352600003 + ], + [ + -7.465078458999869, + 8.108300639000163 + ], + [ + -7.354211528999883, + 8.122027681000134 + ], + [ + -7.38884856999988, + 8.031942339000011 + ] + ], + [ + [ + -7.587056440999902, + 7.878718131000085 + ], + [ + -7.685255465999887, + 7.898241930000154 + ], + [ + -7.659958546999974, + 7.962681332000159 + ], + [ + -7.576589454999919, + 7.954575864000049 + ], + [ + -7.587056440999902, + 7.878718131000085 + ] + ], + [ + [ + -6.229634544999954, + 7.728095163000035 + ], + [ + -6.229265573999953, + 7.85548885999998 + ], + [ + -6.16111047499993, + 7.837105335000103 + ], + [ + -6.229634544999954, + 7.728095163000035 + ] + ], + [ + [ + -6.099287568999955, + 7.716643807000025 + ], + [ + -6.042150481999954, + 7.834040408000078 + ], + [ + -5.995554475999938, + 7.804127742000105 + ], + [ + -6.00130747899982, + 7.722165470000107 + ], + [ + -6.099287568999955, + 7.716643807000025 + ] + ], + [ + [ + -5.503334587999973, + 7.457503691000056 + ], + [ + -5.531303489999971, + 7.538936731000092 + ], + [ + -5.444749442999921, + 7.592594992999977 + ], + [ + -5.438333430999933, + 7.499722500000132 + ], + [ + -5.503334587999973, + 7.457503691000056 + ] + ], + [ + [ + -5.775000451999915, + 7.245296031000123 + ], + [ + -5.80832354599994, + 7.181597758000066 + ], + [ + -5.868237557999976, + 7.190418873000112 + ], + [ + -5.99744643899993, + 7.301435838999964 + ], + [ + -5.810617504999925, + 7.345324658000038 + ], + [ + -5.775000451999915, + 7.245296031000123 + ] + ], + [ + [ + 12.007108580000022, + 8.37812734500011 + ], + [ + 12.017054547000043, + 8.21901267100003 + ], + [ + 11.914284535000036, + 8.109620621000147 + ], + [ + 11.960697479000146, + 8.020119161000025 + ], + [ + 11.838036541000179, + 8.003544451000153 + ], + [ + 11.665649458000132, + 8.12619533100019 + ], + [ + 11.692171476000055, + 8.29857000800007 + ], + [ + 11.751843586000177, + 8.414591809000058 + ], + [ + 11.672280550000096, + 8.540558906000115 + ], + [ + 11.685540553000067, + 8.633376079000016 + ], + [ + 11.612607434000097, + 8.71956283000003 + ], + [ + 11.725321568000027, + 8.78254663000007 + ], + [ + 11.791625440000132, + 8.646635244000095 + ], + [ + 11.834721498000079, + 8.633376079000016 + ], + [ + 11.907654449000177, + 8.437797108000098 + ], + [ + 12.007108580000022, + 8.37812734500011 + ] + ], + [ + [ + 10.681338428000117, + 7.440149798999983 + ], + [ + 10.698450586000035, + 7.515008576000128 + ], + [ + 10.763688447000106, + 7.497897592000129 + ], + [ + 10.788286483000036, + 7.414484747000074 + ], + [ + 10.679199534000077, + 7.384541906000038 + ], + [ + 10.681338428000117, + 7.440149798999983 + ] + ], + [ + [ + -5.148252525999965, + 14.1135606040001 + ], + [ + -5.032285542999944, + 14.309892605000186 + ], + [ + -4.977437552999959, + 14.568975723000108 + ], + [ + -4.865797475999955, + 14.733534779000024 + ], + [ + -4.780522507999876, + 14.974079307000068 + ], + [ + -4.766684488999942, + 15.097331337000128 + ], + [ + -4.724433493999868, + 15.267500233000021 + ], + [ + -4.651059486999941, + 15.43535941100015 + ], + [ + -4.519555472999969, + 15.486557248999986 + ], + [ + -4.528307520999874, + 15.546093572000132 + ], + [ + -4.631530490999978, + 15.572670743000117 + ], + [ + -4.598003547999895, + 15.658256177 + ], + [ + -4.659661498999981, + 15.668044564000184 + ], + [ + -4.789558534999969, + 15.623957597000071 + ], + [ + -4.917558577999898, + 15.6144580510001 + ], + [ + -4.926146508999921, + 15.662106153000082 + ], + [ + -4.868333504999896, + 15.787227013000177 + ], + [ + -4.576787442999944, + 15.910269328000027 + ], + [ + -4.514319464999971, + 16.03284125099998 + ], + [ + -4.458703525999965, + 16.05343022300019 + ], + [ + -4.385224577999963, + 16.000893292000114 + ], + [ + -4.348847452999962, + 16.096866251000165 + ], + [ + -4.113107431999936, + 16.129514435000033 + ], + [ + -4.049637481999923, + 16.231249784000113 + ], + [ + -3.789771492999932, + 16.32197315800005 + ], + [ + -3.68010954499988, + 16.315284566000173 + ], + [ + -3.611710532999837, + 16.350701460000096 + ], + [ + -3.539902432999952, + 16.46345532500004 + ], + [ + -3.247840548999932, + 16.650972581000076 + ], + [ + -3.142115580999871, + 16.694359658 + ], + [ + -2.929841535999969, + 16.743657822000102 + ], + [ + -2.684607499999913, + 16.82956126500011 + ], + [ + -2.439606481999874, + 16.880248143000188 + ], + [ + -2.201596473999814, + 16.95459361200011 + ], + [ + -1.837839476999932, + 17.04127908700019 + ], + [ + -1.641101457999923, + 17.104503448000116 + ], + [ + -1.285361583999929, + 17.182360432000053 + ], + [ + -1.151847421999946, + 17.167070332000094 + ], + [ + -0.567629440999895, + 17.04534883700012 + ], + [ + -0.448174579999829, + 17.064386653000042 + ], + [ + -0.356382513999904, + 17.106134231000112 + ], + [ + -0.287210522999942, + 17.047088752000093 + ], + [ + -0.234954552999966, + 16.94258536300015 + ], + [ + -0.185972554999978, + 16.76971598500012 + ], + [ + -0.253659440999968, + 16.691710977000128 + ], + [ + -0.335631435999971, + 16.704590274000054 + ], + [ + -0.434930501999929, + 16.861440325000103 + ], + [ + -0.552444448999836, + 16.886428790000082 + ], + [ + -0.676550427999928, + 16.87661844300004 + ], + [ + -0.955042513999899, + 16.95064389200013 + ], + [ + -1.114696479999964, + 16.952623697000092 + ], + [ + -1.46343344099995, + 16.918485882000027 + ], + [ + -1.733755517999953, + 16.85198101200018 + ], + [ + -2.015875459999904, + 16.7978231890001 + ], + [ + -2.187364504999891, + 16.715209475 + ], + [ + -2.489353579999886, + 16.61971462000008 + ], + [ + -2.958801513999845, + 16.548658879000186 + ], + [ + -3.037802459999966, + 16.45903437400011 + ], + [ + -3.015161430999967, + 16.39413866199999 + ], + [ + -3.062077457999919, + 16.288965055000176 + ], + [ + -3.052839426999867, + 16.176932202000046 + ], + [ + -2.974945561999959, + 16.16635306699999 + ], + [ + -2.675715473999958, + 16.20049071400007 + ], + [ + -2.478275553999879, + 16.179771991000052 + ], + [ + -2.34292156399988, + 16.218370655 + ], + [ + -2.188184422999939, + 16.29742574800008 + ], + [ + -2.11589050799995, + 16.270077275000062 + ], + [ + -2.165170565999972, + 16.17094383500006 + ], + [ + -2.322371483999973, + 16.09171758300016 + ], + [ + -2.391753525999945, + 16.03741106500007 + ], + [ + -2.53290343499998, + 15.828794379000101 + ], + [ + -2.61110055599994, + 15.765219488000128 + ], + [ + -2.706180506999942, + 15.751409464000062 + ], + [ + -2.93343049899994, + 15.796401509000077 + ], + [ + -3.078525433999971, + 15.761369512000101 + ], + [ + -3.131350534999854, + 15.667074778000028 + ], + [ + -3.323374571999977, + 15.64136647500004 + ], + [ + -3.571110437999835, + 15.750349488999973 + ], + [ + -3.621715507999966, + 15.683893737000119 + ], + [ + -3.49599550999983, + 15.612969090000092 + ], + [ + -3.473192541999936, + 15.54746250500017 + ], + [ + -3.61792554699997, + 15.538843729000064 + ], + [ + -3.641549437999913, + 15.50767478400013 + ], + [ + -3.649341422999896, + 15.346175122999966 + ], + [ + -3.699598475999949, + 15.258741815000121 + ], + [ + -3.801945536999938, + 15.273839969 + ], + [ + -3.838179498999978, + 15.235503323000046 + ], + [ + -3.781003519999899, + 15.092101533000118 + ], + [ + -3.879904444999966, + 14.928543277000074 + ], + [ + -4.010570436999956, + 14.678758371000185 + ], + [ + -4.070543456999872, + 14.228397874000052 + ], + [ + -4.092889442999876, + 14.117005231000121 + ], + [ + -4.255138445999876, + 13.828404234000118 + ], + [ + -4.451346561999912, + 13.628068702000178 + ], + [ + -4.713101495999979, + 13.447919642000159 + ], + [ + -4.719943475999969, + 13.30169046800006 + ], + [ + -4.757257529999947, + 13.242873479000082 + ], + [ + -4.833024569999907, + 13.234944031 + ], + [ + -4.914549474999887, + 13.333757450000121 + ], + [ + -5.041845438999928, + 13.277551089000156 + ], + [ + -5.225863584999956, + 13.24023351500017 + ], + [ + -5.280385517999889, + 13.260623333000012 + ], + [ + -5.24117748999987, + 13.36486638100007 + ], + [ + -5.127549559999977, + 13.423412466000116 + ], + [ + -4.785821546999898, + 13.552273666000133 + ], + [ + -4.659810528999969, + 13.698953115999984 + ], + [ + -4.548388548999981, + 13.771448029000112 + ], + [ + -4.649722572999906, + 13.88680145700016 + ], + [ + -4.674348436999878, + 14.013692072000026 + ], + [ + -4.766938459999949, + 14.021672648999981 + ], + [ + -4.919569563999914, + 13.991184650000093 + ], + [ + -5.148297452999941, + 14.008333521000168 + ], + [ + -5.148252525999965, + 14.1135606040001 + ] + ], + [ + [ + 8.33091346800012, + 11.24036187500019 + ], + [ + 8.222751545000108, + 11.242638400000146 + ], + [ + 8.18130454300001, + 11.3416756150001 + ], + [ + 8.295747528000106, + 11.452486051000108 + ], + [ + 8.291165477000163, + 11.540608017000125 + ], + [ + 8.482474538000133, + 11.548590439000122 + ], + [ + 8.686161491000178, + 11.392465254000058 + ], + [ + 8.76194093700019, + 11.283517780000182 + ], + [ + 8.762951459000135, + 11.16567291500013 + ], + [ + 8.695835046000013, + 11.111927146000028 + ], + [ + 8.550169471000117, + 11.1429353260001 + ], + [ + 8.514442445999975, + 11.237227881000024 + ], + [ + 8.412207535000107, + 11.25651405400015 + ], + [ + 8.33091346800012, + 11.24036187500019 + ] + ], + [ + [ + 1.670132515000091, + 10.368349236000086 + ], + [ + 1.543532584000104, + 10.122385472000133 + ], + [ + 1.495224491000158, + 10.12168055400008 + ], + [ + 1.445730526000091, + 10.240769461000184 + ], + [ + 1.452608548000057, + 10.341910366000093 + ], + [ + 1.511363510000137, + 10.455472414000042 + ], + [ + 1.558298480000076, + 10.473994073000142 + ], + [ + 1.660031483000125, + 10.41801503 + ], + [ + 1.670132515000091, + 10.368349236000086 + ] + ], + [ + [ + 1.16713852800001, + 9.192351288000168 + ], + [ + 1.056458514000155, + 9.24859436100013 + ], + [ + 1.100158572000112, + 9.349721185000078 + ], + [ + 1.327337485000044, + 9.377006291000043 + ], + [ + 1.408616464999966, + 9.358863327000108 + ], + [ + 1.428892456000142, + 9.313153624 + ], + [ + 1.292508498000132, + 9.203927534000172 + ], + [ + 1.16713852800001, + 9.192351288000168 + ] + ], + [ + [ + 1.158843461000174, + 9.049246552000113 + ], + [ + 1.208247572000062, + 9.128020013000139 + ], + [ + 1.260822557000097, + 9.112657997000042 + ], + [ + 1.265596554000126, + 9.021918363 + ], + [ + 1.158843461000174, + 9.049246552000113 + ] + ], + [ + [ + 0.804823554000109, + 8.79721244600006 + ], + [ + 0.816974464000054, + 8.74732587300008 + ], + [ + 0.756175491000079, + 8.529553635000184 + ], + [ + 0.704679425000052, + 8.536156228000152 + ], + [ + 0.608289550000109, + 8.61726237300013 + ], + [ + 0.607690579, + 8.744789006000076 + ], + [ + 0.64731049400018, + 8.890125843000135 + ], + [ + 0.721367459000078, + 8.892667571000118 + ], + [ + 0.735668494000038, + 8.798209390000125 + ], + [ + 0.804823554000109, + 8.79721244600006 + ] + ], + [ + [ + 22.325260061, + 15.310819927000182 + ], + [ + 22.387990056999968, + 15.086380036000037 + ], + [ + 22.323629940000046, + 15.07305004400007 + ], + [ + 22.27964976700008, + 15.13267997600019 + ], + [ + 22.209709993000047, + 15.092189927000163 + ], + [ + 22.275999993000084, + 15.005490060000113 + ], + [ + 22.211800054000093, + 14.894019959000161 + ], + [ + 22.124349991000145, + 14.829250068000078 + ], + [ + 22.00773993100006, + 14.80657007100018 + ], + [ + 21.871699907000107, + 14.845440032999988 + ], + [ + 21.803679983000166, + 14.958800060000044 + ], + [ + 21.87197995500003, + 15.10576001000004 + ], + [ + 21.854619986000102, + 15.199640083000133 + ], + [ + 21.87180006300008, + 15.343050063000021 + ], + [ + 21.990429951000124, + 15.424840029000165 + ], + [ + 22.04728, + 15.403280047000123 + ], + [ + 22.083499981000102, + 15.530130069000109 + ], + [ + 22.133770051000113, + 15.56147007200019 + ], + [ + 22.177480033, + 15.66267996800002 + ], + [ + 22.279990014000077, + 15.589760001000116 + ], + [ + 22.358080040000118, + 15.614029986000105 + ], + [ + 22.362330042000053, + 15.674860022000075 + ], + [ + 22.48132006800006, + 15.792649944000061 + ], + [ + 22.576400069000158, + 15.788370017999966 + ], + [ + 22.55716003000009, + 15.623020030000191 + ], + [ + 22.456949927000096, + 15.419640047000144 + ], + [ + 22.381369946000177, + 15.44865007400017 + ], + [ + 22.325260061, + 15.310819927000182 + ] + ], + [ + [ + 36.94324859000017, + 18.870147330000066 + ], + [ + 37.01152053200019, + 18.94883278100008 + ], + [ + 37.120510587000126, + 18.918395576000137 + ], + [ + 37.16971956700013, + 18.873577372 + ], + [ + 37.21002948100005, + 18.752404389000162 + ], + [ + 37.1562885730001, + 18.568945316000054 + ], + [ + 37.07123958100016, + 18.535798241000066 + ], + [ + 37.020099577999986, + 18.683879481000133 + ], + [ + 36.95468150600004, + 18.76217383300002 + ], + [ + 36.94324859000017, + 18.870147330000066 + ] + ], + [ + [ + 11.458369934000132, + 16.111079921000112 + ], + [ + 11.459929999000167, + 16.027770022000084 + ], + [ + 11.40581002, + 15.965040026999986 + ], + [ + 11.313729926000065, + 15.937160048000067 + ], + [ + 11.233760007000171, + 15.961459957000102 + ], + [ + 11.24175993900019, + 16.099910046000048 + ], + [ + 11.297680074000084, + 16.10790997700019 + ], + [ + 11.304119940000021, + 16.33900993600014 + ], + [ + 11.35359000000011, + 16.40024006599998 + ], + [ + 11.427590026000132, + 16.430190039000138 + ], + [ + 11.524409985000148, + 16.392709931000184 + ], + [ + 11.537529985000162, + 16.31133994900017 + ], + [ + 11.44044001200001, + 16.243230079000057 + ], + [ + 11.42435002700006, + 16.186690002000034 + ], + [ + 11.458369934000132, + 16.111079921000112 + ] + ], + [ + [ + 2.276200001000177, + 18.627939965000166 + ], + [ + 2.177059923000115, + 18.577350066000065 + ], + [ + 2.106489998000143, + 18.6378400320001 + ], + [ + 2.091150034000123, + 18.713449937000064 + ], + [ + 2.158020019000048, + 18.75503993500007 + ], + [ + 2.12287006400004, + 18.920170074000055 + ], + [ + 2.071729927000092, + 18.961850018000064 + ], + [ + 1.966640022000092, + 18.95347006000003 + ], + [ + 1.908139962000178, + 18.896869959000185 + ], + [ + 1.837840052000047, + 18.989179758000034 + ], + [ + 1.823139920000187, + 19.062269937 + ], + [ + 1.846870052000043, + 19.151750040000024 + ], + [ + 1.845529835999969, + 19.28880006600008 + ], + [ + 1.873060063000139, + 19.391009932000088 + ], + [ + 1.788270013000101, + 19.407849938000027 + ], + [ + 1.751990009000167, + 19.3492500750001 + ], + [ + 1.689150001000144, + 19.13724001000014 + ], + [ + 1.652019997000025, + 19.308679937000136 + ], + [ + 1.737280021000174, + 19.428309971000147 + ], + [ + 1.620089975000099, + 19.481639797000184 + ], + [ + 1.505380051000031, + 19.677109970000174 + ], + [ + 1.51092978500003, + 19.74752992600014 + ], + [ + 1.660050028000171, + 19.809020037000096 + ], + [ + 1.640309917000138, + 19.882889984000144 + ], + [ + 1.463329761000125, + 19.90142999200009 + ], + [ + 1.354229945000043, + 19.96859991500014 + ], + [ + 1.417260055000156, + 20.065229948000024 + ], + [ + 1.522900022000044, + 20.04730002600013 + ], + [ + 1.530479794000144, + 20.15450991600011 + ], + [ + 1.467180022000093, + 20.24735006300017 + ], + [ + 1.407810071000029, + 20.18528999900019 + ], + [ + 1.293669924000142, + 20.16204005000003 + ], + [ + 1.18510996100008, + 20.234409955000103 + ], + [ + 1.062430029000154, + 20.190549828000087 + ], + [ + 1.071560009000052, + 20.29346993500019 + ], + [ + 1.192329948000179, + 20.266079820000073 + ], + [ + 1.270309962000169, + 20.368039914 + ], + [ + 1.351829913000074, + 20.402070030000175 + ], + [ + 1.457030006000139, + 20.38232006100003 + ], + [ + 1.589090043, + 20.446819938000147 + ], + [ + 1.693310057000076, + 20.443200087000037 + ], + [ + 1.851750030000062, + 20.523720069000092 + ], + [ + 1.948850036000181, + 20.530649975000074 + ], + [ + 2.066739937000023, + 20.495980026000154 + ], + [ + 2.219320029000187, + 20.523720069000092 + ], + [ + 2.344150045000049, + 20.4543699620001 + ], + [ + 2.413499975999969, + 20.461300044000097 + ], + [ + 2.489790022000136, + 20.385019856000042 + ], + [ + 2.683969968000042, + 20.287920025000176 + ], + [ + 2.67704006200006, + 20.24629992800004 + ], + [ + 2.739450054000031, + 20.128420060000053 + ], + [ + 2.829609945000186, + 20.066000036000162 + ], + [ + 2.905899991000183, + 19.941170019000026 + ], + [ + 2.885090031000175, + 19.830199992000075 + ], + [ + 2.799320077000061, + 19.821870023000145 + ], + [ + 2.739820048000126, + 19.749690043000044 + ], + [ + 2.676319965000118, + 19.746519923000164 + ], + [ + 2.577879742000164, + 19.486560083000143 + ], + [ + 2.492190054000162, + 19.444719961000033 + ], + [ + 2.517979971000159, + 19.28503992700007 + ], + [ + 2.491479813000069, + 19.097329946 + ], + [ + 2.42883008299998, + 18.900309917000016 + ], + [ + 2.43039982900001, + 18.781430080000177 + ], + [ + 2.276200001000177, + 18.627939965000166 + ] + ], + [ + [ + 1.438639968000189, + 19.28584997100012 + ], + [ + 1.455259950000084, + 19.207019957000114 + ], + [ + 1.341240024000058, + 19.097439959000155 + ], + [ + 1.265759846000094, + 19.172630056000173 + ], + [ + 1.163310064000143, + 19.176250083000127 + ], + [ + 1.146939855000085, + 19.2460300300001 + ], + [ + 1.23703990000007, + 19.28774993100012 + ], + [ + 1.199160051000149, + 19.37136997600004 + ], + [ + 1.244900071000188, + 19.40166002000018 + ], + [ + 1.317009995000149, + 19.32223998700016 + ], + [ + 1.438639968000189, + 19.28584997100012 + ] + ], + [ + [ + 1.261090036000098, + 19.47653979400019 + ], + [ + 1.088809965000053, + 19.43281995500007 + ], + [ + 1.184650021000039, + 19.653629962000082 + ], + [ + 1.331730017000041, + 19.60719008600006 + ], + [ + 1.327480015000106, + 19.49936975999998 + ], + [ + 1.261090036000098, + 19.47653979400019 + ] + ], + [ + [ + 1.316789970000173, + 19.72296000300014 + ], + [ + 1.272439803000111, + 19.69892993300016 + ], + [ + 1.147829988000069, + 19.70214000900006 + ], + [ + 1.128290011999979, + 19.734619917000146 + ], + [ + 1.229819737000128, + 19.84235997900015 + ], + [ + 1.381990054000028, + 19.793950088000088 + ], + [ + 1.316789970000173, + 19.72296000300014 + ] + ], + [ + [ + 12.979880014, + 14.079060010000148 + ], + [ + 13.02291003199997, + 14.188939946000062 + ], + [ + 13.210380097000098, + 14.364589919000082 + ], + [ + 13.34817996900017, + 14.43114007600019 + ], + [ + 13.443720086000155, + 14.450840055000072 + ], + [ + 13.613250021, + 14.430249944000082 + ], + [ + 13.704169966000165, + 14.364830011000038 + ], + [ + 13.836099924000052, + 14.339689959000054 + ], + [ + 13.882780067000112, + 14.305000120000102 + ], + [ + 13.884440111000174, + 14.230279996000036 + ], + [ + 14.042779929000062, + 14.258330010000066 + ], + [ + 14.12443999200002, + 14.124719942000127 + ], + [ + 14.22110998100004, + 14.084440061000066 + ], + [ + 14.246670017000156, + 14.01861000100007 + ], + [ + 14.17805004100012, + 13.972499987 + ], + [ + 14.16027994500007, + 13.884999933000131 + ], + [ + 14.187780073000113, + 13.796390074000158 + ], + [ + 14.14278021600012, + 13.746109970000191 + ], + [ + 14.09971992400017, + 13.629440064000107 + ], + [ + 14.20111006500008, + 13.522500189000027 + ], + [ + 14.256940078000184, + 13.537220035000075 + ], + [ + 14.365550030000179, + 13.500000085000124 + ], + [ + 14.483609966000131, + 13.54583005100011 + ], + [ + 14.661110085000075, + 13.505279979000022 + ], + [ + 14.742219910000188, + 13.54861011100013 + ], + [ + 14.841939973000137, + 13.543049992000078 + ], + [ + 14.975560075000033, + 13.447780065000075 + ], + [ + 15.15416999900009, + 13.408890037000162 + ], + [ + 15.281109967000077, + 13.427220053000156 + ], + [ + 15.283609978000072, + 13.344169960000102 + ], + [ + 15.334169954000117, + 13.296939930000065 + ], + [ + 15.280550047000077, + 13.18972018400018 + ], + [ + 15.32750002900002, + 13.086669998000104 + ], + [ + 15.274719914000059, + 13.04556000700012 + ], + [ + 15.212500024000065, + 13.066670082000144 + ], + [ + 15.200280014000043, + 12.966389922000133 + ], + [ + 15.141390070000057, + 12.931110064000109 + ], + [ + 15.054999998000142, + 12.948890017000167 + ], + [ + 14.936109952000095, + 12.891669974000024 + ], + [ + 14.787499990000128, + 12.890000073000124 + ], + [ + 14.832219975000044, + 12.708899994000035 + ], + [ + 14.813049992000117, + 12.686109985000087 + ], + [ + 14.87000002000002, + 12.4497199220001 + ], + [ + 14.902219947000049, + 12.378890015000081 + ], + [ + 14.888689997000029, + 12.157809817000043 + ], + [ + 14.968889974000149, + 12.090000061000069 + ], + [ + 14.916669954000099, + 12.030549845 + ], + [ + 14.79582995900006, + 12.105280001999972 + ], + [ + 14.615830005000134, + 12.176389781000069 + ], + [ + 14.552780005000159, + 12.232219970000187 + ], + [ + 14.493329965000157, + 12.384719973000188 + ], + [ + 14.68277990300004, + 12.276110020000033 + ], + [ + 14.73193999200015, + 12.306670079000071 + ], + [ + 14.59333007600003, + 12.373609944000066 + ], + [ + 14.607689961, + 12.579470048000076 + ], + [ + 14.66244994900012, + 12.71303998400009 + ], + [ + 14.522219946000178, + 12.778330014000119 + ], + [ + 14.456130257000098, + 12.660869954000077 + ], + [ + 14.341739985, + 12.550269920000062 + ], + [ + 14.313799984000127, + 12.430359838000129 + ], + [ + 14.186049972000035, + 12.358909988999983 + ], + [ + 14.006449935999967, + 12.387749980000137 + ], + [ + 13.734230128000092, + 12.409849991000044 + ], + [ + 13.64768005400009, + 12.494010066000044 + ], + [ + 13.623639951000087, + 12.609449945000051 + ], + [ + 13.678330059000075, + 12.766099970000027 + ], + [ + 13.642349993999972, + 12.87373001900005 + ], + [ + 13.636879997000108, + 13.053060042000084 + ], + [ + 13.585289953000142, + 13.102520068000047 + ], + [ + 13.488050011000098, + 13.327499989000103 + ], + [ + 13.383890019000034, + 13.419439970000099 + ], + [ + 13.354719990000149, + 13.647500064000155 + ], + [ + 13.171829964000153, + 13.763620084000024 + ], + [ + 13.051559921000035, + 13.874360054000022 + ], + [ + 12.986700260000191, + 14.017629922000083 + ], + [ + 12.979880014, + 14.079060010000148 + ] + ], + [ + [ + 24.601699889000145, + 12.888419942000041 + ], + [ + 24.58826991800015, + 12.770310016000053 + ], + [ + 24.510660074000043, + 12.707060057000149 + ], + [ + 24.41898993100017, + 12.76933997000009 + ], + [ + 24.26208995700017, + 12.813349890000097 + ], + [ + 24.190930013000127, + 12.93652003800014 + ], + [ + 24.213159927, + 13.006139983000025 + ], + [ + 24.30816001500017, + 13.11580992800009 + ], + [ + 24.354700047000108, + 13.289280069000029 + ], + [ + 24.45409993000004, + 13.35013017200015 + ], + [ + 24.560790032, + 13.20675997300009 + ], + [ + 24.580720069000165, + 13.150210038000125 + ], + [ + 24.527209999000092, + 13.068709977000083 + ], + [ + 24.565200037000125, + 13.018719954000062 + ], + [ + 24.55708991700004, + 12.932540051000046 + ], + [ + 24.601699889000145, + 12.888419942000041 + ] + ], + [ + [ + 33.41916666600014, + 1.779166667000084 + ], + [ + 33.435000000000116, + 1.713333334000083 + ], + [ + 33.37250000000017, + 1.645000000000152 + ], + [ + 33.24666666600007, + 1.615833333000126 + ], + [ + 33.09833333400013, + 1.524166667000145 + ], + [ + 33.152500000000146, + 1.411666666000031 + ], + [ + 33.300833333000185, + 1.388333334000151 + ], + [ + 33.25250000000011, + 1.2875 + ], + [ + 33.1433333330001, + 1.296666667000011 + ], + [ + 32.94083333300017, + 1.435833334000108 + ], + [ + 32.78416666700008, + 1.425000000000125 + ], + [ + 32.71583333300015, + 1.358333333000132 + ], + [ + 32.590000000000146, + 1.388333333000048 + ], + [ + 32.555, + 1.485833333000073 + ], + [ + 32.695, + 1.491666666000185 + ], + [ + 32.774166667000145, + 1.588333333000094 + ], + [ + 32.81000000000017, + 1.549166666000133 + ], + [ + 32.92, + 1.5625 + ], + [ + 32.98416666600008, + 1.537500000000136 + ], + [ + 33.1475, + 1.63916666700004 + ], + [ + 33.26000000000016, + 1.6425 + ], + [ + 33.388333333000105, + 1.703333333000046 + ], + [ + 33.41916666600014, + 1.779166667000084 + ] + ], + [ + [ + 33.95666666700015, + 1.075833333000162 + ], + [ + 33.94666666700016, + 0.991666667 + ], + [ + 33.83166666600016, + 1.030833333000089 + ], + [ + 33.852500000000134, + 1.075 + ], + [ + 33.95666666700015, + 1.075833333000162 + ] + ], + [ + [ + 34.1975, + 1.12916666600006 + ], + [ + 34.2616666670001, + 1.212500000000148 + ], + [ + 34.30333333400017, + 1.217500000000143 + ], + [ + 34.4, + 1.300833333000185 + ], + [ + 34.413333333000026, + 1.408333334000076 + ], + [ + 34.510000000000105, + 1.406666667000138 + ], + [ + 34.62416666600018, + 1.435833334000108 + ], + [ + 34.7058333330001, + 1.36 + ], + [ + 34.69, + 1.276666667000086 + ], + [ + 34.76916666700009, + 1.213333333000094 + ], + [ + 34.834166666000044, + 0.8900000000001 + ], + [ + 34.79083333300008, + 0.85 + ], + [ + 34.58833333300015, + 0.810833333000062 + ], + [ + 34.46083333300015, + 0.829166666000049 + ], + [ + 34.449166667000156, + 0.868333334000113 + ], + [ + 34.33166666700015, + 0.916666667000186 + ], + [ + 34.1775, + 1.01416666700004 + ], + [ + 34.155, + 1.072500000000161 + ], + [ + 34.1975, + 1.12916666600006 + ] + ], + [ + [ + 34.74333333300012, + 0.291666667000072 + ], + [ + 34.855833333000135, + 0.345833333000087 + ], + [ + 34.9466666670001, + 0.317500000000109 + ], + [ + 34.9575, + 0.416666667000129 + ], + [ + 34.90416666700014, + 0.535 + ], + [ + 35.05666666700006, + 0.514166667000154 + ], + [ + 35.13833333399998, + 0.566666667000106 + ], + [ + 35.19833333300011, + 0.455 + ], + [ + 35.12333333400005, + 0.350833334000185 + ], + [ + 35.206666667000036, + 0.306666666000126 + ], + [ + 35.25083333300012, + 0.24 + ], + [ + 35.43833333300012, + 0.336666666000042 + ], + [ + 35.43750000000017, + 0.573333334000097 + ], + [ + 35.47916666600014, + 0.810833333000062 + ], + [ + 35.399166666000156, + 0.943333333 + ], + [ + 35.31, + 0.940000000000168 + ], + [ + 35.225, + 1.063333333000116 + ], + [ + 35.1575, + 1.0225 + ], + [ + 35.07166666699999, + 1.120000000000118 + ], + [ + 35.057500000000175, + 1.250000000000171 + ], + [ + 35.100833334000185, + 1.308333333000064 + ], + [ + 35.300833333000185, + 1.250833333000116 + ], + [ + 35.375, + 1.308333333000064 + ], + [ + 35.3908333330001, + 1.458333334000145 + ], + [ + 35.44083333300017, + 1.41583333300008 + ], + [ + 35.45250000000016, + 1.315833333000114 + ], + [ + 35.530833333000146, + 1.358333334 + ], + [ + 35.61416666700006, + 1.209166667000147 + ], + [ + 35.598333333000085, + 1.001666667000165 + ], + [ + 35.51583333400009, + 0.542500000000132 + ], + [ + 35.604166666000026, + 0.374166666000065 + ], + [ + 35.60333333300008, + 0.2175 + ], + [ + 35.72000000000014, + 0.220833334000133 + ], + [ + 35.77666666600004, + 0.170000000000186 + ], + [ + 35.73916666700012, + 0.086666667000031 + ], + [ + 35.84083333400008, + -0.015 + ], + [ + 35.85666666700013, + -0.083333332999871 + ], + [ + 35.7925, + -0.1075 + ], + [ + 35.800833334000174, + -0.204166665999878 + ], + [ + 35.88000000000011, + -0.269166666999979 + ], + [ + 35.985, + -0.16 + ], + [ + 36.10416666600008, + -0.16083333399996 + ], + [ + 36.1725, + 0.000833333000173 + ], + [ + 36.26416666600005, + 0.069166666000058 + ], + [ + 36.29083333300014, + 0.140833334000092 + ], + [ + 36.191666666000174, + 0.326666667000154 + ], + [ + 36.2675, + 0.401666666000096 + ], + [ + 36.285, + 0.485000000000184 + ], + [ + 36.42750000000018, + 0.234166666000021 + ], + [ + 36.50416666700016, + 0.189166667000052 + ], + [ + 36.53, + 0.095833334000019 + ], + [ + 36.60750000000013, + -0.006666666999877 + ], + [ + 36.61083333300013, + -0.096666666999965 + ], + [ + 36.80916666700011, + -0.066666666999936 + ], + [ + 36.87833333400005, + -0.295833333999894 + ], + [ + 36.98833333300007, + -0.341666665999981 + ], + [ + 37.04, + -0.320833332999939 + ], + [ + 36.99666666700017, + -0.11083333299996 + ], + [ + 37.06416666700005, + -0.024166665999928 + ], + [ + 37.07416666700004, + 0.22 + ], + [ + 37.16000000000014, + 0.195833333000053 + ], + [ + 37.215, + 0.311666667 + ], + [ + 37.1425, + 0.398333333000039 + ], + [ + 37.131666667, + 0.475833333000139 + ], + [ + 37.04, + 0.493333334000113 + ], + [ + 37.00000000000017, + 0.545 + ], + [ + 36.86666666700012, + 0.583333333000155 + ], + [ + 36.90833333300003, + 0.665000000000134 + ], + [ + 36.95833333400003, + 0.674166667000122 + ], + [ + 37.009166667000045, + 0.5825 + ], + [ + 37.11, + 0.533333334000019 + ], + [ + 37.1675, + 0.438333334000049 + ], + [ + 37.285, + 0.4025 + ], + [ + 37.275, + 0.258333333 + ], + [ + 37.330833333000044, + 0.194166666000115 + ], + [ + 37.44083333300017, + 0.1400000000001 + ], + [ + 37.58083333400009, + 0.164166667000075 + ], + [ + 37.60916666700007, + 0.145833333000041 + ], + [ + 37.75416666700005, + 0.176666667000177 + ], + [ + 37.80083333400012, + 0.265833333000103 + ], + [ + 37.85833333300013, + 0.29 + ], + [ + 37.9325, + 0.41583333300008 + ], + [ + 38.00833333400004, + 0.458333333000098 + ], + [ + 38.03250000000014, + 0.358333333000132 + ], + [ + 37.990833333000126, + 0.274166666000099 + ], + [ + 38.00083333300006, + 0.208333334000031 + ], + [ + 37.916666666000026, + 0.083333334000145 + ], + [ + 37.78583333300003, + 0.038333333000026 + ], + [ + 37.79666666700007, + -0.03 + ], + [ + 37.708333333000155, + -0.130833332999941 + ], + [ + 37.715833333000035, + -0.366666665999958 + ], + [ + 37.60833333300019, + -0.470833332999916 + ], + [ + 37.59416666700008, + -0.51416666699987 + ], + [ + 37.348333333000085, + -0.550833333999947 + ], + [ + 37.250000000000114, + -0.639166666999927 + ], + [ + 37.17416666700018, + -0.65 + ], + [ + 37.16166666600003, + -0.839166666999915 + ], + [ + 37.11083333400012, + -0.890833332999932 + ], + [ + 37.12333333300006, + -0.9825 + ], + [ + 37.06333333400016, + -1.008333332999939 + ], + [ + 36.974166667000134, + -1.091666666999856 + ], + [ + 36.870833333000064, + -1.214166666999915 + ], + [ + 36.77166666700015, + -1.389166665999937 + ], + [ + 36.715833333000035, + -1.369166665999899 + ], + [ + 36.65583333300003, + -1.43666666699994 + ], + [ + 36.5783333330001, + -1.084166666999977 + ], + [ + 36.598333333000085, + -0.9725 + ], + [ + 36.52250000000015, + -0.866666666999947 + ], + [ + 36.44583333300017, + -0.714166666999915 + ], + [ + 36.43333333400017, + -0.605 + ], + [ + 36.36083333300019, + -0.494166665999899 + ], + [ + 36.30583333300012, + -0.464166665999812 + ], + [ + 36.16416666600014, + -0.2875 + ], + [ + 36.090000000000146, + -0.27 + ], + [ + 35.98666666700018, + -0.30833333299995 + ], + [ + 35.975, + -0.3925 + ], + [ + 36.04666666700007, + -0.495 + ], + [ + 36.12416666700011, + -0.598333332999914 + ], + [ + 36.2683333330001, + -0.586666666999974 + ], + [ + 36.274166667000145, + -0.681666666999945 + ], + [ + 36.22, + -0.696666666999874 + ], + [ + 36.196666667000045, + -0.778333332999921 + ], + [ + 36.250000000000114, + -0.959166665999874 + ], + [ + 36.15416666600015, + -1.119999999999891 + ], + [ + 36.16583333400018, + -1.2325 + ], + [ + 35.96, + -1.201666665999937 + ], + [ + 35.94000000000017, + -1.2575 + ], + [ + 35.849166666000144, + -1.159166666999965 + ], + [ + 35.84833333400013, + -1.098333332999971 + ], + [ + 35.73000000000013, + -1.029166665999981 + ], + [ + 35.59750000000014, + -0.97833333299991 + ], + [ + 35.52250000000015, + -0.975 + ], + [ + 35.37833333300006, + -0.924999999999898 + ], + [ + 35.315833333000114, + -0.975 + ], + [ + 35.26000000000016, + -0.955 + ], + [ + 35.17916666600013, + -0.99166666699989 + ], + [ + 35.11083333300007, + -0.914166666999904 + ], + [ + 35.03833333400007, + -0.93333333399994 + ], + [ + 34.965833333000035, + -0.998333333999938 + ], + [ + 34.909166667000136, + -1.117499999999893 + ], + [ + 34.96916666699997, + -1.129999999999882 + ], + [ + 34.97916666700013, + -1.2325 + ], + [ + 34.94916666600011, + -1.314166665999949 + ], + [ + 34.770833333000155, + -1.434166665999953 + ], + [ + 34.66666666700007, + -1.484166665999908 + ], + [ + 34.625, + -1.425833333999947 + ], + [ + 34.50833333400004, + -1.415833332999966 + ], + [ + 34.47500000000019, + -1.4075 + ], + [ + 34.44083333300006, + -1.325833332999878 + ], + [ + 34.44083333300006, + -1.284166665999919 + ], + [ + 34.42083333400018, + -1.214166666999915 + ], + [ + 34.50333333300017, + -1.229166665999969 + ], + [ + 34.5775, + -1.19 + ], + [ + 34.624166667000054, + -1.225 + ], + [ + 34.65083333399997, + -1.176666666999836 + ], + [ + 34.545000000000186, + -1.046666666999954 + ], + [ + 34.61333333300007, + -0.88916666699987 + ], + [ + 34.638333334000095, + -0.7725 + ], + [ + 34.68916666700011, + -0.655 + ], + [ + 34.77, + -0.563333332999889 + ], + [ + 34.891666667000095, + -0.4875 + ], + [ + 35.050833333000014, + -0.424999999999841 + ], + [ + 35.05, + -0.365833333999831 + ], + [ + 35.14083333300016, + -0.359166666999954 + ], + [ + 35.18583333300006, + -0.276666666999972 + ], + [ + 35.372500000000116, + -0.266666666999924 + ], + [ + 35.43916666700011, + -0.20583333299993 + ], + [ + 35.38583333400004, + -0.144999999999868 + ], + [ + 35.248333333000176, + -0.118333332999953 + ], + [ + 35.24583333300012, + -0.0675 + ], + [ + 35.36083333300019, + 0.031666667000138 + ], + [ + 35.205, + 0.060833333000062 + ], + [ + 35.08, + 0.005833334000101 + ], + [ + 34.9475, + -0.0225 + ], + [ + 34.84750000000014, + -0.019999999999811 + ], + [ + 34.7608333340001, + 0.039166667000188 + ], + [ + 34.66833333400001, + -0.01 + ], + [ + 34.59083333400014, + -0.005833332999941 + ], + [ + 34.66250000000019, + 0.086666666000099 + ], + [ + 34.67416666700012, + 0.135833333000051 + ], + [ + 34.785, + 0.15 + ], + [ + 34.7925, + 0.159166667000079 + ], + [ + 34.72666666700013, + 0.190000000000168 + ], + [ + 34.78416666700008, + 0.285 + ], + [ + 34.74333333300012, + 0.291666667000072 + ] + ], + [ + [ + 36.00166666600006, + -2.145833332999928 + ], + [ + 36.108333334000065, + -2.191666665999946 + ], + [ + 36.12416666700011, + -2.307499999999891 + ], + [ + 36.084166667000034, + -2.443333332999941 + ], + [ + 36.011666667000156, + -2.586666666999918 + ], + [ + 35.92916666700006, + -2.574999999999875 + ], + [ + 35.9500000000001, + -2.498333332999835 + ], + [ + 36.02500000000015, + -2.508333333999815 + ], + [ + 35.97666666700002, + -2.341666665999981 + ], + [ + 35.96833333400019, + -2.190833332999944 + ], + [ + 36.00166666600006, + -2.145833332999928 + ] + ], + [ + [ + 35.893603738000024, + -3.439672390999817 + ], + [ + 35.864191579000135, + -3.57429865499995 + ], + [ + 35.87825210699998, + -3.66293486099994 + ], + [ + 35.777414821000036, + -3.775585088999946 + ], + [ + 35.73066660200004, + -3.74760478099995 + ], + [ + 35.752879710000116, + -3.670296489999942 + ], + [ + 35.73196153300012, + -3.597667834999925 + ], + [ + 35.81437369600013, + -3.419051789999912 + ], + [ + 35.893603738000024, + -3.439672390999817 + ] + ], + [ + [ + 36.595833333000144, + -3.425833332999957 + ], + [ + 36.639166666999984, + -3.283333332999973 + ], + [ + 36.62583333300012, + -3.213333333999856 + ], + [ + 36.73750000000018, + -3.13 + ], + [ + 36.86083333300007, + -3.263333332999935 + ], + [ + 36.82, + -3.353333333999956 + ], + [ + 36.66583333400007, + -3.366666665999958 + ], + [ + 36.595833333000144, + -3.425833332999957 + ] + ], + [ + [ + 37.11583333300018, + -3.213333332999923 + ], + [ + 37.05416666700012, + -3.145833332999928 + ], + [ + 37.09500000000014, + -2.991666666999947 + ], + [ + 37.14416666700009, + -2.888333332999878 + ], + [ + 37.22583333300014, + -2.8625 + ], + [ + 37.42833333300007, + -2.898333333999972 + ], + [ + 37.567500000000166, + -3 + ], + [ + 37.610833334000176, + -3.088333333999969 + ], + [ + 37.61500000000018, + -3.285 + ], + [ + 37.41833333400018, + -3.32 + ], + [ + 37.362500000000125, + -3.266666665999935 + ], + [ + 37.16000000000014, + -3.246666666999886 + ], + [ + 37.11583333300018, + -3.213333332999923 + ] + ], + [ + [ + 38.01916666700015, + -4.5625 + ], + [ + 38.04629360500007, + -4.484304766999912 + ], + [ + 38.15333333400008, + -4.514166665999937 + ], + [ + 38.15500000000014, + -4.576666666999927 + ], + [ + 38.099166667000134, + -4.665 + ], + [ + 38.0175, + -4.568333332999885 + ], + [ + 38.01916666700015, + -4.5625 + ] + ], + [ + [ + 23.77833333300009, + -14.312499999999886 + ], + [ + 23.728333333000023, + -14.4025 + ], + [ + 23.787389785000187, + -14.440833333999876 + ], + [ + 23.749166667, + -14.514166666999927 + ], + [ + 23.8125, + -14.5875 + ], + [ + 23.787500000000136, + -14.658333333999906 + ], + [ + 23.698333333000107, + -14.646666666999977 + ], + [ + 23.614166666000074, + -14.7275 + ], + [ + 23.558333333000064, + -14.72666666699996 + ], + [ + 23.375000000000114, + -14.804999999999893 + ], + [ + 23.371666667000113, + -14.87083333299995 + ], + [ + 23.485833333000187, + -14.844166666999968 + ], + [ + 23.622500000000173, + -14.850833332999912 + ], + [ + 23.617500000000177, + -14.911666666999963 + ], + [ + 23.518333333000157, + -14.949166666999872 + ], + [ + 23.500833333000116, + -14.887499999999875 + ], + [ + 23.412500000000136, + -14.87499999999983 + ], + [ + 23.1625, + -15.00749999999988 + ], + [ + 23.119166666000183, + -15.2375 + ], + [ + 23.19583333300011, + -15.377499999999884 + ], + [ + 23.210833333000096, + -15.658333332999973 + ], + [ + 23.2775, + -15.766666666999924 + ], + [ + 23.276666667000143, + -15.893333332999873 + ], + [ + 23.30666666700006, + -15.94916666599994 + ], + [ + 23.247500000000173, + -16.095 + ], + [ + 23.303333333000126, + -16.18833333399982 + ], + [ + 23.245, + -16.3275 + ], + [ + 23.07166666600017, + -16.37416666699994 + ], + [ + 23.12166666700017, + -16.45916666599993 + ], + [ + 23.19, + -16.4125 + ], + [ + 23.317500000000166, + -16.485 + ], + [ + 23.321666667000045, + -16.56583333299983 + ], + [ + 23.257500000000107, + -16.605833332999907 + ], + [ + 23.247500000000173, + -16.696666666999818 + ], + [ + 23.34416666700008, + -16.73583333399995 + ], + [ + 23.3366666660001, + -16.836666666999918 + ], + [ + 23.3625, + -17.06083333299989 + ], + [ + 23.1425, + -17.079166665999878 + ], + [ + 23.0475, + -17.043333332999964 + ], + [ + 23.063333334000106, + -16.96083333399997 + ], + [ + 22.979166667000015, + -16.947499999999877 + ], + [ + 22.865833334000115, + -17.04916666699995 + ], + [ + 22.798333333000073, + -17.023333333999915 + ], + [ + 22.7475, + -16.931666666999888 + ], + [ + 22.698333333000107, + -16.910833333999904 + ], + [ + 22.6675, + -16.82 + ], + [ + 22.5775000000001, + -16.753333332999944 + ], + [ + 22.60583333400018, + -16.66083333299997 + ], + [ + 22.448333333000164, + -16.634166666999874 + ], + [ + 22.34416666700008, + -16.596666666999965 + ], + [ + 22.2325, + -16.398333332999925 + ], + [ + 22.172500000000184, + -16.368333332999953 + ], + [ + 22.193333333000055, + -16.27583333299998 + ], + [ + 22.056666667000172, + -16.180833333999942 + ], + [ + 22.034166667000136, + -16.1125 + ], + [ + 21.79726221100009, + -15.92605584699993 + ], + [ + 21.698381128000108, + -15.785100396999951 + ], + [ + 21.578286501000093, + -15.684223843999973 + ], + [ + 21.482011844000112, + -15.516232531999947 + ], + [ + 21.47846424200003, + -15.474562620999905 + ], + [ + 21.57171251300008, + -15.33232272299989 + ], + [ + 21.596215880000045, + -15.184675143999925 + ], + [ + 21.683258429000034, + -15.1181797939999 + ], + [ + 21.723808515000144, + -15.04444489499997 + ], + [ + 21.889677837000136, + -14.9816754659999 + ], + [ + 21.910304250000138, + -14.840163466999911 + ], + [ + 21.968992837000087, + -14.774619735999863 + ], + [ + 21.82001120800004, + -14.693307795999942 + ], + [ + 21.790573061000146, + -14.612161584999967 + ], + [ + 21.847331006000104, + -14.476342125999963 + ], + [ + 21.780746838000084, + -14.316486444999953 + ], + [ + 21.652247125000088, + -14.30948172099994 + ], + [ + 21.65622679300003, + -14.231919245999904 + ], + [ + 21.937702427000147, + -14.199186525999892 + ], + [ + 21.990439884000125, + -14.163897429999963 + ], + [ + 21.991940404000104, + -14.014571143999945 + ], + [ + 21.918849861000126, + -13.913083293999875 + ], + [ + 21.750703985000087, + -13.803546124999968 + ], + [ + 21.63009396800004, + -13.704347740999935 + ], + [ + 21.59048174100019, + -13.573427 + ], + [ + 21.68699885200016, + -13.467760591999877 + ], + [ + 21.57024614200003, + -13.380054270999892 + ], + [ + 21.426394508000158, + -13.37076916299992 + ], + [ + 21.42464807100015, + -13.229293649999931 + ], + [ + 21.32562342199998, + -13.137089573999958 + ], + [ + 21.24273657200007, + -12.928032453999947 + ], + [ + 20.992062675000057, + -12.762135452999814 + ], + [ + 20.860213568, + -12.575956737999888 + ], + [ + 20.730660494000176, + -12.475242721999905 + ], + [ + 20.720024959000114, + -12.290504419999877 + ], + [ + 20.66881627000015, + -12.195403400999908 + ], + [ + 20.655697053000097, + -12.03132737199985 + ], + [ + 20.6743180900001, + -11.905136371999902 + ], + [ + 20.910851958000137, + -11.728666956999973 + ], + [ + 20.76800889200007, + -11.570013754999877 + ], + [ + 20.77922310600013, + -11.47091616199998 + ], + [ + 20.674322171000142, + -11.317822949999936 + ], + [ + 20.66228911200011, + -11.221990782999967 + ], + [ + 20.75299613900006, + -11.134959340999956 + ], + [ + 21.0319475660001, + -11.114942471999939 + ], + [ + 21.103993727000045, + -11.182847264999964 + ], + [ + 21.218976670000075, + -11.188393945999962 + ], + [ + 21.33869510300019, + -10.951307045999954 + ], + [ + 21.468549780000046, + -10.964964387999942 + ], + [ + 21.589270244000033, + -11.049200605999886 + ], + [ + 21.685723940000173, + -11.085022153999944 + ], + [ + 21.76428625400007, + -11.027999955999974 + ], + [ + 21.94181670300003, + -11.133726975999934 + ], + [ + 22.00146783000008, + -11.05207495299993 + ], + [ + 22.084418001000188, + -11.07437994299994 + ], + [ + 22.120359129000178, + -11.173602060999883 + ], + [ + 22.288088086000073, + -11.210284153999908 + ], + [ + 22.50024361100003, + -11.065281302999836 + ], + [ + 22.45347952300017, + -10.952601952999885 + ], + [ + 22.537418538000054, + -10.902720096999929 + ], + [ + 22.650900245000173, + -11.042412144999957 + ], + [ + 22.73654472400011, + -11.081358971999975 + ], + [ + 22.901609781000047, + -11.079907 + ], + [ + 22.937611610000147, + -11.15769342699997 + ], + [ + 22.82922512199997, + -11.294917325999904 + ], + [ + 22.84983921500003, + -11.423562912999898 + ], + [ + 22.761429096000086, + -11.424284384999908 + ], + [ + 22.561058556999967, + -11.505916903999946 + ], + [ + 22.544748773000038, + -11.565483473999961 + ], + [ + 22.598827126000117, + -11.611616365999964 + ], + [ + 22.686387508000166, + -11.571171534999905 + ], + [ + 22.809095077, + -11.563330161999943 + ], + [ + 23.055440973000145, + -11.51426654599993 + ], + [ + 23.12850564900009, + -11.527028939999923 + ], + [ + 23.132965653000156, + -11.583439191999958 + ], + [ + 23.061641583000153, + -11.636626343999922 + ], + [ + 23.08322882200008, + -11.708169173999977 + ], + [ + 23.04527087200006, + -11.774914407999972 + ], + [ + 22.746990246000166, + -11.994550267999955 + ], + [ + 22.751642908, + -12.12864968699995 + ], + [ + 22.58090659800007, + -12.278159753999887 + ], + [ + 22.59791861500014, + -12.39524643899989 + ], + [ + 22.52876280700019, + -12.510996740999872 + ], + [ + 22.67078055400009, + -12.755706956999916 + ], + [ + 22.705429498000115, + -12.860009850999916 + ], + [ + 22.707521146000147, + -13.00166671999989 + ], + [ + 22.654166667000084, + -13.04 + ], + [ + 22.620833333000064, + -13.178333332999898 + ], + [ + 22.65, + -13.240833332999955 + ], + [ + 22.7650000000001, + -13.204166666999981 + ], + [ + 22.775, + -13.124999999999886 + ], + [ + 22.918333333000135, + -13.115833332999955 + ], + [ + 22.972473829000137, + -13.059999999999889 + ], + [ + 23.016231093000044, + -12.999166666999884 + ], + [ + 22.73245716600013, + -13.001666666999881 + ], + [ + 22.76030146000005, + -12.955233467999903 + ], + [ + 22.929841545000045, + -12.800643009999874 + ], + [ + 23.01971046699998, + -12.757644852999874 + ], + [ + 23.236531707999973, + -12.726116702999889 + ], + [ + 23.3506183610001, + -12.50238342699987 + ], + [ + 23.551148818000115, + -12.334013539999887 + ], + [ + 23.56143865200005, + -12.261101388999975 + ], + [ + 23.450338354000053, + -12.174592392999841 + ], + [ + 23.435785515000077, + -12.077198622999958 + ], + [ + 23.462163885000166, + -12.006934615999967 + ], + [ + 23.53971955700007, + -11.94702734699996 + ], + [ + 23.620226525000078, + -11.840733243999978 + ], + [ + 23.72851421700011, + -11.785237250999842 + ], + [ + 23.90423328200012, + -11.661962763999895 + ], + [ + 23.971666667000136, + -11.654166666999913 + ], + [ + 24.023333334000142, + -11.8125 + ], + [ + 24.11083333300013, + -11.750833332999946 + ], + [ + 24.177500000000123, + -11.8125 + ], + [ + 24.145833334000145, + -11.94333333399993 + ], + [ + 23.988333333000128, + -11.996666666999943 + ], + [ + 24.0183333330001, + -12.080833332999873 + ], + [ + 24.15416666700014, + -12.1175 + ], + [ + 24.243333333000066, + -12.258333332999939 + ], + [ + 24.15833333400019, + -12.5441666669999 + ], + [ + 24.325, + -12.539166665999915 + ], + [ + 24.4525, + -12.559999999999889 + ], + [ + 24.53916666700013, + -12.5975 + ], + [ + 24.632500000000107, + -12.69416666699982 + ], + [ + 24.66416666700019, + -12.640833332999932 + ], + [ + 24.56333333300006, + -12.5975 + ], + [ + 24.609166667000125, + -12.525 + ], + [ + 24.73000000000019, + -12.440833332999944 + ], + [ + 24.848333333000085, + -12.4975 + ], + [ + 24.80666666600007, + -12.55166666599996 + ], + [ + 24.8125, + -12.634166666999874 + ], + [ + 24.876666666000062, + -12.775 + ], + [ + 24.9725, + -12.856666666999956 + ], + [ + 25.009166667000102, + -12.942499999999882 + ], + [ + 24.89666666700009, + -13.000833332999946 + ], + [ + 24.7525, + -13.01 + ], + [ + 24.68333333300012, + -13.1025 + ], + [ + 24.565, + -13.149166666999918 + ], + [ + 24.49666666700017, + -13.149166665999928 + ], + [ + 24.248333333000062, + -13.30833333299995 + ], + [ + 24.204166667000038, + -13.127499999999884 + ], + [ + 24.273333334000085, + -13.070833332999882 + ], + [ + 24.280000000000143, + -12.896666666999977 + ], + [ + 24.22750000000019, + -12.859166666999954 + ], + [ + 24.1475, + -12.8825 + ], + [ + 24.129166666000117, + -12.951666666999927 + ], + [ + 24.039166666000142, + -12.923333333999949 + ], + [ + 24.0275, + -13.01749999999987 + ], + [ + 24.071666667000045, + -13.11083333299996 + ], + [ + 24.167500000000132, + -13.190833333999876 + ], + [ + 24.215000000000146, + -13.294166666999843 + ], + [ + 24.169166667000127, + -13.346666666999965 + ], + [ + 24.10750000000013, + -13.315833332999944 + ], + [ + 24.0675, + -13.22166666599992 + ], + [ + 24.016666667000038, + -13.248333332999835 + ], + [ + 24.0525, + -13.331666665999933 + ], + [ + 24.0425, + -13.396666666999977 + ], + [ + 23.93083333300018, + -13.40666666699991 + ], + [ + 23.904166666000094, + -13.360833333999835 + ], + [ + 23.93916666700011, + -13.250833332999889 + ], + [ + 23.872500000000116, + -13.251666666999938 + ], + [ + 23.86, + -13.375 + ], + [ + 23.93416666600001, + -13.5625 + ], + [ + 23.79833333400012, + -13.65 + ], + [ + 23.685833333000062, + -13.65 + ], + [ + 23.590000000000146, + -13.6875 + ], + [ + 23.53166666599998, + -13.7625 + ], + [ + 23.44083333400016, + -13.7475 + ], + [ + 23.332500000000152, + -13.8025 + ], + [ + 23.29500000000013, + -13.70583333299993 + ], + [ + 23.343333333000032, + -13.653333332999864 + ], + [ + 23.23416666700018, + -13.535 + ], + [ + 23.213333334000083, + -13.3725 + ], + [ + 23.30666666700006, + -13.4191666669999 + ], + [ + 23.35500000000019, + -13.346666666999965 + ], + [ + 23.503333333000057, + -13.254166665999946 + ], + [ + 23.596666667000136, + -13.23916666599996 + ], + [ + 23.72583333300014, + -13.15 + ], + [ + 23.72583333400007, + -13.081666666999979 + ], + [ + 23.655, + -13.040833332999966 + ], + [ + 23.601719855000056, + -12.95025725399995 + ], + [ + 23.59489268800013, + -12.839693476999969 + ], + [ + 23.370833334000167, + -13.08333333399986 + ], + [ + 23.29416666600008, + -13.029166666999913 + ], + [ + 23.405396899000095, + -12.843729828999926 + ], + [ + 23.175, + -13.01833333399992 + ], + [ + 23.23583333400012, + -13.060833333999824 + ], + [ + 23.229166666000083, + -13.124166666999884 + ], + [ + 23.15666666600015, + -13.2175 + ], + [ + 23.066952398000012, + -13.179166665999844 + ], + [ + 22.96583333300015, + -13.28 + ], + [ + 22.92416666700018, + -13.23916666599996 + ], + [ + 22.850833333000026, + -13.33416666699992 + ], + [ + 22.875, + -13.53583333399996 + ], + [ + 22.941666666000117, + -13.626666666999938 + ], + [ + 23.0575, + -13.658333332999916 + ], + [ + 23.10083333299997, + -13.729166666999959 + ], + [ + 23.06166666700011, + -13.828333333999979 + ], + [ + 22.999166666000065, + -13.771666666999977 + ], + [ + 22.91000000000014, + -13.8025 + ], + [ + 23.00416666600006, + -13.904166666999913 + ], + [ + 23.04000000000019, + -14.075833332999935 + ], + [ + 23.096666667000022, + -14.20583333299993 + ], + [ + 23.16666666600014, + -14.201666665999937 + ], + [ + 23.209166667000034, + -14.119166666999945 + ], + [ + 23.2075, + -13.979166666999845 + ], + [ + 23.092500000000143, + -14.020833332999871 + ], + [ + 23.07166666600017, + -13.920833332999962 + ], + [ + 23.240833333000182, + -13.998333332999948 + ], + [ + 23.228333333000137, + -14.093333332999975 + ], + [ + 23.2975, + -14.200833332999935 + ], + [ + 23.23916666700012, + -14.2575 + ], + [ + 23.22750000000019, + -14.424999999999898 + ], + [ + 23.236666667000065, + -14.646666666999977 + ], + [ + 23.37333333400005, + -14.707499999999868 + ], + [ + 23.41166666700019, + -14.606666666999956 + ], + [ + 23.48250000000013, + -14.503333333999933 + ], + [ + 23.543333333000135, + -14.46 + ], + [ + 23.539166666000085, + -14.39333333299993 + ], + [ + 23.49, + -14.361666666999952 + ], + [ + 23.428333334000115, + -14.399166665999928 + ], + [ + 23.368333334000056, + -14.3725 + ], + [ + 23.266666667000152, + -14.382499999999823 + ], + [ + 23.28083333300009, + -14.266666665999878 + ], + [ + 23.393333334000033, + -14.253333333999876 + ], + [ + 23.456666667000093, + -14.1725 + ], + [ + 23.52833333400008, + -14.1775 + ], + [ + 23.55333333300007, + -14.280833332999975 + ], + [ + 23.605000000000132, + -14.26833333299993 + ], + [ + 23.660833334000188, + -14.27 + ], + [ + 23.6575, + -14.23 + ], + [ + 23.71916666700008, + -14.1675 + ], + [ + 23.72916666600014, + -14.164166665999858 + ], + [ + 23.8925, + -14.045833332999905 + ], + [ + 24.050000000000125, + -14.04166666599997 + ], + [ + 24.09916666600003, + -13.980833332999964 + ], + [ + 24.22750000000019, + -13.945833333999872 + ], + [ + 24.35583333400018, + -13.9775 + ], + [ + 24.4175, + -14.020833332999871 + ], + [ + 24.612500000000182, + -14.07666666599988 + ], + [ + 24.6575, + -14.228333332999966 + ], + [ + 24.72666666600003, + -14.21666666599998 + ], + [ + 24.872500000000116, + -14.3425 + ], + [ + 24.856666667000184, + -14.420833332999962 + ], + [ + 24.918333333000135, + -14.530833332999862 + ], + [ + 24.69166666700005, + -14.656666665999865 + ], + [ + 24.612500000000182, + -14.5725 + ], + [ + 24.445000000000107, + -14.645833332999928 + ], + [ + 24.285833333000085, + -14.5875 + ], + [ + 24.110833334000063, + -14.58416666699992 + ], + [ + 24.040833334000183, + -14.6575 + ], + [ + 23.980833333000078, + -14.635 + ], + [ + 24.020833333000155, + -14.535833332999914 + ], + [ + 23.978333332999966, + -14.484166666999897 + ], + [ + 24.009166667000102, + -14.385833333999926 + ], + [ + 23.898333334000085, + -14.321666666999931 + ], + [ + 23.77833333300009, + -14.312499999999886 + ] + ], + [ + [ + 14.085960000000114, + -13.75059 + ], + [ + 14.28838, + -13.68521 + ], + [ + 14.46024, + -13.51248 + ], + [ + 14.5161, + -13.542279999999835 + ], + [ + 14.61858, + -13.454069999999888 + ], + [ + 14.6645, + -13.38078 + ], + [ + 14.721300000000156, + -13.37819 + ], + [ + 14.79666, + -13.276609999999891 + ], + [ + 14.793550000000153, + -13.11944 + ], + [ + 14.848240000000146, + -13.01053 + ], + [ + 14.895240000000115, + -13.07132 + ], + [ + 14.89444, + -13.19001999999989 + ], + [ + 14.84966, + -13.40049 + ], + [ + 14.76562, + -13.54231 + ], + [ + 14.64047, + -13.6818 + ], + [ + 14.58125, + -13.80158 + ], + [ + 14.42550000000017, + -13.91081 + ], + [ + 14.36177, + -14.04147 + ], + [ + 14.258650000000102, + -14.09732 + ], + [ + 14.27493, + -13.96291 + ], + [ + 14.24214, + -13.90186 + ], + [ + 14.088640000000169, + -13.806039999999825 + ], + [ + 14.085960000000114, + -13.75059 + ] + ], + [ + [ + 17.056862890000048, + -18.669414403999895 + ], + [ + 17.145251943000062, + -18.688255364999975 + ], + [ + 17.069975488000182, + -18.768346615999974 + ], + [ + 16.881825193999987, + -18.860790583999915 + ], + [ + 16.732954580000182, + -18.844539727999916 + ], + [ + 16.681055451000134, + -18.948348685999974 + ], + [ + 16.52957393600019, + -18.93444609099987 + ], + [ + 16.41187176300008, + -18.98366236499993 + ], + [ + 16.374831034000124, + -19.038353018999942 + ], + [ + 16.289955008000106, + -19.06777236199997 + ], + [ + 16.190286058000027, + -19.044335390999947 + ], + [ + 16.098250962000066, + -19.117052095999952 + ], + [ + 16.043593008000073, + -19.24193799999989 + ], + [ + 15.916411798000013, + -19.185673622999957 + ], + [ + 15.739788315000112, + -19.07207404499991 + ], + [ + 15.57943654200011, + -19.110960144999922 + ], + [ + 15.561749753000129, + -19.159650830999965 + ], + [ + 15.456735803000129, + -19.104676411999947 + ], + [ + 15.361195897000073, + -19.2033022949999 + ], + [ + 15.182212410000147, + -19.22162541499995 + ], + [ + 15.18838827900015, + -19.074620035999885 + ], + [ + 15.25225204000003, + -19.068753801999833 + ], + [ + 15.343143352000027, + -19.181056947999878 + ], + [ + 15.397284917000036, + -19.154457373999946 + ], + [ + 15.447016948000055, + -19.005872644999954 + ], + [ + 15.600709946000052, + -18.861382078999895 + ], + [ + 15.67890608800019, + -18.917855154999813 + ], + [ + 15.721469157000172, + -18.830552358999967 + ], + [ + 15.834799283000109, + -18.81680664299995 + ], + [ + 15.878801731000067, + -18.742808505999903 + ], + [ + 15.998576541000148, + -18.655218826999885 + ], + [ + 16.226275836000127, + -18.56457187199993 + ], + [ + 16.356278886999974, + -18.49543196299993 + ], + [ + 16.47597836300008, + -18.502294270999926 + ], + [ + 16.522309299000142, + -18.44519993299997 + ], + [ + 16.623506609, + -18.417808230999924 + ], + [ + 16.74396906300018, + -18.439460227999973 + ], + [ + 16.80493608400019, + -18.495627893999824 + ], + [ + 16.829581344000076, + -18.62060818699996 + ], + [ + 16.89338743100018, + -18.679661582999927 + ], + [ + 16.865797512000086, + -18.762616698999977 + ], + [ + 16.913754864000055, + -18.797851640999966 + ], + [ + 16.97650526900003, + -18.717581861999975 + ], + [ + 17.056862890000048, + -18.669414403999895 + ] + ], + [ + [ + 15.70849868199997, + -18.529974905999893 + ], + [ + 15.743291953000096, + -18.520434986999874 + ], + [ + 15.804044476000172, + -18.634697056999926 + ], + [ + 15.719519664000074, + -18.658854452999947 + ], + [ + 15.675013760000184, + -18.58387560099993 + ], + [ + 15.70849868199997, + -18.529974905999893 + ] + ], + [ + [ + 15.094174853000084, + -19.222932890999914 + ], + [ + 14.984165381000082, + -19.22068465599989 + ], + [ + 15.04036129300016, + -19.129338412999914 + ], + [ + 15.128264933000025, + -19.13001352499998 + ], + [ + 15.094174853000084, + -19.222932890999914 + ] + ], + [ + [ + 23.612500000000182, + -16.7291666669999 + ], + [ + 23.65916666700008, + -16.827499999999873 + ], + [ + 23.76083333300005, + -16.8925 + ], + [ + 23.8325, + -17.07333333299988 + ], + [ + 23.93083333300018, + -17.18416666599984 + ], + [ + 23.944166667000104, + -17.31999999999988 + ], + [ + 23.815833333000114, + -17.28 + ], + [ + 23.78583333299997, + -17.169166666999956 + ], + [ + 23.665000000000134, + -17.101666665999915 + ], + [ + 23.59500000000014, + -16.90416666699997 + ], + [ + 23.5208333330001, + -16.79166666699996 + ], + [ + 23.529166666000094, + -16.72166666699985 + ], + [ + 23.612500000000182, + -16.7291666669999 + ] + ], + [ + [ + 14.823570000000132, + -12.16473 + ], + [ + 14.81985, + -12.0569 + ], + [ + 14.77855, + -11.965169999999887 + ], + [ + 14.59414, + -11.82367 + ], + [ + 14.73721, + -11.79175 + ], + [ + 14.822920000000181, + -11.81329 + ], + [ + 14.83745000000016, + -11.74982 + ], + [ + 14.713910000000112, + -11.65191 + ], + [ + 14.78515, + -11.58123 + ], + [ + 14.88298, + -11.65649999999988 + ], + [ + 14.936, + -11.623149999999896 + ], + [ + 14.994330000000105, + -11.697609999999884 + ], + [ + 14.98551, + -11.81029 + ], + [ + 15.12417, + -11.71525 + ], + [ + 15.21647, + -11.750549999999862 + ], + [ + 15.22948, + -11.92912 + ], + [ + 15.144880000000114, + -11.96304 + ], + [ + 15.210320000000138, + -12.077449999999885 + ], + [ + 15.2032, + -12.19627 + ], + [ + 15.28599, + -12.2302 + ], + [ + 15.417030000000125, + -12.149169999999856 + ], + [ + 15.515620000000126, + -12.26296 + ], + [ + 15.61991, + -12.34582 + ], + [ + 15.549760000000106, + -12.39181 + ], + [ + 15.64576, + -12.45478 + ], + [ + 15.59729, + -12.55895 + ], + [ + 15.6953, + -12.72362 + ], + [ + 15.659890000000132, + -12.849129999999889 + ], + [ + 15.69834, + -12.956329999999866 + ], + [ + 15.79034, + -13.05637 + ], + [ + 15.77086, + -13.10914 + ], + [ + 15.67195, + -13.1387 + ], + [ + 15.495360000000119, + -13.15275 + ], + [ + 15.3628700000001, + -13.32012 + ], + [ + 15.299910000000125, + -13.33053 + ], + [ + 15.148600000000101, + -13.2655 + ], + [ + 15.04099, + -13.33376 + ], + [ + 14.98382, + -13.31786 + ], + [ + 14.92501, + -13.21874999999983 + ], + [ + 14.954810000000123, + -13.128799999999899 + ], + [ + 14.92407, + -13.01221 + ], + [ + 14.827580000000125, + -12.924589999999853 + ], + [ + 14.99354000000011, + -12.85216 + ], + [ + 15.03073, + -12.89618 + ], + [ + 15.14876, + -12.87551 + ], + [ + 15.18976, + -13.03198 + ], + [ + 15.289740000000108, + -13.05635 + ], + [ + 15.33652, + -13.02619 + ], + [ + 15.36616, + -12.928539999999828 + ], + [ + 15.230840000000114, + -12.79384 + ], + [ + 15.13715, + -12.76782 + ], + [ + 14.99527, + -12.62091 + ], + [ + 14.863930000000153, + -12.766689999999869 + ], + [ + 14.787440000000174, + -12.81125999999989 + ], + [ + 14.73579000000018, + -12.75518 + ], + [ + 14.76154, + -12.69921 + ], + [ + 14.69756000000018, + -12.65877 + ], + [ + 14.56596, + -12.712059999999894 + ], + [ + 14.51508, + -12.69451 + ], + [ + 14.60113, + -12.574239999999861 + ], + [ + 14.57935, + -12.511429999999848 + ], + [ + 14.68013, + -12.41709 + ], + [ + 14.89149, + -12.484109999999873 + ], + [ + 15.048860000000161, + -12.456529999999816 + ], + [ + 14.933650000000114, + -12.380039999999894 + ], + [ + 14.94775, + -12.295 + ], + [ + 14.71685, + -12.27768 + ], + [ + 14.703240000000108, + -12.2286 + ], + [ + 14.823570000000132, + -12.16473 + ] + ], + [ + [ + 14.86161, + -11.21604 + ], + [ + 14.866800000000126, + -11.31922 + ], + [ + 14.75186, + -11.41537 + ], + [ + 14.69544, + -11.516599999999869 + ], + [ + 14.637650000000122, + -11.38972 + ], + [ + 14.659600000000125, + -11.222849999999823 + ], + [ + 14.782620000000122, + -11.29457 + ], + [ + 14.86161, + -11.21604 + ] + ], + [ + [ + 15.501870000000167, + -11.09171 + ], + [ + 15.419210000000191, + -11.144109999999898 + ], + [ + 15.310410000000104, + -11.15228 + ], + [ + 15.180920000000128, + -11.072969999999884 + ], + [ + 15.31721000000016, + -10.93788 + ], + [ + 15.219940000000122, + -10.89036 + ], + [ + 15.22038, + -10.83330999999987 + ], + [ + 15.32921, + -10.746529999999893 + ], + [ + 15.26119, + -10.66146 + ], + [ + 15.30138, + -10.61756 + ], + [ + 15.380020000000172, + -10.68085 + ], + [ + 15.4736, + -10.861019999999883 + ], + [ + 15.57273, + -10.92239 + ], + [ + 15.537620000000175, + -11.063309999999888 + ], + [ + 15.501870000000167, + -11.09171 + ] + ], + [ + [ + 16.05688, + -12.56128 + ], + [ + 16.11139, + -12.52328 + ], + [ + 16.18968000000018, + -12.72839 + ], + [ + 16.105910000000165, + -12.80392 + ], + [ + 16.020570000000134, + -12.80087 + ], + [ + 15.988470000000177, + -12.6951 + ], + [ + 16.011800000000108, + -12.597559999999874 + ], + [ + 16.05688, + -12.56128 + ] + ], + [ + [ + 29.989543915000183, + -23.765899657999967 + ], + [ + 30.036289215000068, + -23.88464927699988 + ], + [ + 30.09663963300011, + -23.93111991899997 + ], + [ + 29.976041794000082, + -24.09532546999992 + ], + [ + 29.88902092, + -24.1398315429999 + ], + [ + 29.77394485500014, + -24.11277008099995 + ], + [ + 29.810388565000153, + -24.05005836499987 + ], + [ + 29.881511688000103, + -24.035091399999885 + ], + [ + 29.907648087000155, + -23.923860549999915 + ], + [ + 29.880426407000073, + -23.83667564399991 + ], + [ + 29.989543915000183, + -23.765899657999967 + ] + ], + [ + [ + 30.138328552000075, + -24.05950164799998 + ], + [ + 30.24252700800014, + -24.040296554999884 + ], + [ + 30.28307533300017, + -24.1269168849999 + ], + [ + 30.396251678000112, + -24.28874015799994 + ], + [ + 30.493934631000116, + -24.355293273999962 + ], + [ + 30.415229797000165, + -24.388675689999957 + ], + [ + 30.33153915400004, + -24.314243316999864 + ], + [ + 30.29779243500019, + -24.210052489999896 + ], + [ + 30.165283203000172, + -24.188196181999956 + ], + [ + 30.138328552000075, + -24.05950164799998 + ] + ], + [ + [ + 30.636666667000043, + -2.940833333999933 + ], + [ + 30.613333333000185, + -3.040833332999966 + ], + [ + 30.535833333000085, + -2.99916666699994 + ], + [ + 30.636666667000043, + -2.940833333999933 + ] + ], + [ + [ + 35.328900347, + -8.693333333999874 + ], + [ + 35.25083333300012, + -8.64249999999987 + ], + [ + 35.12333333400005, + -8.68583333399988 + ], + [ + 35.098333334000074, + -8.634999999999877 + ], + [ + 35.174166667000065, + -8.5825 + ], + [ + 35.32500000000016, + -8.575 + ], + [ + 35.305833334000056, + -8.44499999999988 + ], + [ + 35.49500000000012, + -8.341666665999924 + ], + [ + 35.60416666700013, + -8.35 + ], + [ + 35.715000000000146, + -8.295 + ], + [ + 35.77916666600015, + -8.21 + ], + [ + 35.85166666700013, + -8.180833333999828 + ], + [ + 35.90166666700003, + -8.085 + ], + [ + 35.88333333300011, + -7.996666665999953 + ], + [ + 35.90916666700008, + -7.905833332999919 + ], + [ + 35.8875, + -7.81 + ], + [ + 35.9325, + -7.759166666999931 + ], + [ + 36.021666666000044, + -7.818333332999941 + ], + [ + 35.96166666700009, + -7.905833332999919 + ], + [ + 35.999166667000054, + -7.941666666999879 + ], + [ + 36.090000000000146, + -7.854999999999848 + ], + [ + 36.1825, + -7.88 + ], + [ + 36.2625, + -7.775 + ], + [ + 36.37416666600018, + -7.770833333999974 + ], + [ + 36.4525000000001, + -7.725 + ], + [ + 36.56500000000011, + -7.73583333299996 + ], + [ + 36.656666667000025, + -7.82666666699987 + ], + [ + 36.4491666670001, + -7.80166666599996 + ], + [ + 36.100000000000136, + -8.0225 + ], + [ + 36.01416666700004, + -8.18 + ], + [ + 35.98, + -8.275 + ], + [ + 35.855833333000135, + -8.465833332999978 + ], + [ + 35.74750000000017, + -8.559999999999889 + ], + [ + 35.66166666700008, + -8.668333332999907 + ], + [ + 35.47333333300003, + -8.7225 + ], + [ + 35.42000000000013, + -8.671666666999954 + ], + [ + 35.328900347, + -8.693333333999874 + ] + ], + [ + [ + 35.882843244000185, + -8.459759277999922 + ], + [ + 35.95683098400008, + -8.376975061999872 + ], + [ + 36.064670528000136, + -8.356755107999902 + ], + [ + 36.08867540200015, + -8.245807338999896 + ], + [ + 36.16808292000013, + -8.286236606999978 + ], + [ + 36.2284233580001, + -8.269842743999902 + ], + [ + 36.30149176400016, + -8.303301118999968 + ], + [ + 36.34908349700004, + -8.261668209999868 + ], + [ + 36.519469628000024, + -8.20956090899989 + ], + [ + 36.64454479500017, + -8.14016185099996 + ], + [ + 36.736623383, + -8.136533568999937 + ], + [ + 36.88535810100012, + -8.086946599999976 + ], + [ + 36.9259845740001, + -8.177522947999933 + ], + [ + 36.829043103000174, + -8.162933722999924 + ], + [ + 36.594157575000054, + -8.208686267999894 + ], + [ + 36.49002962300017, + -8.310522067999955 + ], + [ + 36.39051714700008, + -8.337725063999926 + ], + [ + 36.31462449800017, + -8.418065233999926 + ], + [ + 36.31276160100015, + -8.520484167999882 + ], + [ + 36.24453145400008, + -8.558271438999952 + ], + [ + 36.07508085600011, + -8.816874868999946 + ], + [ + 36.01944468500011, + -8.860906797999974 + ], + [ + 36.02049353700005, + -8.935433847999832 + ], + [ + 35.94073345900017, + -9.086709476999943 + ], + [ + 35.8979373520001, + -9.07265446799994 + ], + [ + 35.89205646300013, + -8.94363974099997 + ], + [ + 35.82984047700006, + -8.98555178499987 + ], + [ + 35.76924735600011, + -8.87454065299994 + ], + [ + 35.848863836000135, + -8.80540072499997 + ], + [ + 35.86086581400019, + -8.660743657999888 + ], + [ + 35.94160669500013, + -8.573860283999977 + ], + [ + 35.882843244000185, + -8.459759277999922 + ] + ], + [ + [ + 35.233333333000076, + -14.421666665999965 + ], + [ + 35.079166667000095, + -14.21333333299998 + ], + [ + 34.940833333000114, + -14.151666666999972 + ], + [ + 34.930833334000056, + -14.068333333999874 + ], + [ + 34.86416666700006, + -13.995 + ], + [ + 34.82250000000016, + -14.0375 + ], + [ + 34.85916666700007, + -14.116666666999947 + ], + [ + 34.81166666700011, + -14.148333332999869 + ], + [ + 34.7975, + -14.2575 + ], + [ + 34.62583333400005, + -14.20916666699992 + ], + [ + 34.566666667000106, + -14.1325 + ], + [ + 34.5175, + -13.96583333399991 + ], + [ + 34.57416666700004, + -13.911666665999917 + ], + [ + 34.62833333300006, + -13.7175 + ], + [ + 34.5975, + -13.666666666999959 + ], + [ + 34.48666666700012, + -13.578333332999932 + ], + [ + 34.40583333400019, + -13.55333333399983 + ], + [ + 34.297500000000184, + -13.335833333999972 + ], + [ + 34.34583333400019, + -13.265833333999979 + ], + [ + 34.33500000000015, + -13.02166666699992 + ], + [ + 34.305833334000056, + -12.88916666599988 + ], + [ + 34.2575, + -12.825833333999924 + ], + [ + 34.27666666599998, + -12.754166665999946 + ], + [ + 34.1925, + -12.6875 + ], + [ + 34.16833333300002, + -12.575833332999878 + ], + [ + 34.198333333000164, + -12.528333332999978 + ], + [ + 34.16583333400007, + -12.406666665999978 + ], + [ + 34.033333334000076, + -12.349166666999906 + ], + [ + 34, + -12.221666666999965 + ], + [ + 34.11166666700012, + -11.973333332999971 + ], + [ + 34.191666667000106, + -11.92 + ], + [ + 34.184166667000056, + -11.823333332999937 + ], + [ + 34.30250000000012, + -11.7275 + ], + [ + 34.328333333000046, + -11.667499999999848 + ], + [ + 34.276666667000086, + -11.515 + ], + [ + 34.27583333300004, + -11.383333332999825 + ], + [ + 34.22166666700002, + -11.276666666999915 + ], + [ + 34.2125, + -11.186666665999951 + ], + [ + 34.24416666700006, + -11.13 + ], + [ + 34.25000000000017, + -10.979166666999902 + ], + [ + 34.19666666600017, + -10.70499999999987 + ], + [ + 34.17916666700006, + -10.561666666999884 + ], + [ + 34.227500000000134, + -10.521666666999977 + ], + [ + 34.20833333400003, + -10.46 + ], + [ + 34.237500000000125, + -10.38083333399993 + ], + [ + 34.14916666600004, + -10.283333333999906 + ], + [ + 34.075, + -10.236666665999962 + ], + [ + 33.99250000000018, + -10.10249999999985 + ], + [ + 33.943333333000055, + -9.97 + ], + [ + 33.89583333300004, + -9.741666666999947 + ], + [ + 33.943333333000055, + -9.706666666999922 + ], + [ + 33.94916666600017, + -9.5725 + ], + [ + 34.036666667000134, + -9.49166666699989 + ], + [ + 34.30916666600018, + -9.743333332999896 + ], + [ + 34.343333332999975, + -9.805833332999953 + ], + [ + 34.501666666000176, + -9.975833332999969 + ], + [ + 34.53583333299997, + -10.049166666999952 + ], + [ + 34.534166667000136, + -10.1325 + ], + [ + 34.57083333300011, + -10.294999999999845 + ], + [ + 34.541666667000186, + -10.415833333999956 + ], + [ + 34.54750000000013, + -10.509166666999931 + ], + [ + 34.59416666700014, + -10.58083333399992 + ], + [ + 34.65000000000015, + -10.748333332999948 + ], + [ + 34.64916666700003, + -10.9075 + ], + [ + 34.60166666700002, + -11.001666666999938 + ], + [ + 34.62833333300006, + -11.104166666999959 + ], + [ + 34.73083333300008, + -11.189999999999884 + ], + [ + 34.78333333300003, + -11.326666666999813 + ], + [ + 34.88333333400004, + -11.355833333999954 + ], + [ + 34.92666666700018, + -11.418333332999907 + ], + [ + 34.96511639900007, + -11.582821972999966 + ], + [ + 34.953231278000146, + -11.78381970299995 + ], + [ + 34.90152348300012, + -11.904539281999973 + ], + [ + 34.88813795900012, + -12.032069435999972 + ], + [ + 34.81408026100013, + -12.073134015999926 + ], + [ + 34.70185948200003, + -12.184289568999873 + ], + [ + 34.722974862000115, + -12.249216908999927 + ], + [ + 34.68875930400009, + -12.440648303999978 + ], + [ + 34.755493043000115, + -12.546362835999957 + ], + [ + 34.820895697000026, + -12.69801699899989 + ], + [ + 34.755560106000075, + -12.911916012999939 + ], + [ + 34.80262007700014, + -13.055330337999976 + ], + [ + 34.815172165000035, + -13.236151168999868 + ], + [ + 34.79440112900005, + -13.338655813999935 + ], + [ + 34.868640783000046, + -13.399015849999898 + ], + [ + 34.852500000000134, + -13.7125 + ], + [ + 35.061666667000054, + -13.736666666999952 + ], + [ + 35.13000000000011, + -13.943333333999874 + ], + [ + 35.18083333400017, + -14.0425 + ], + [ + 35.18000000000012, + -14.121666666999943 + ], + [ + 35.29250000000013, + -14.368333333999885 + ], + [ + 35.2425, + -14.414166665999971 + ], + [ + 35.259166667000045, + -14.535833332999914 + ], + [ + 35.34583333300003, + -14.619166666999945 + ], + [ + 35.23000000000019, + -14.755833333999874 + ], + [ + 35.17833333300018, + -14.706666666999922 + ], + [ + 35.19000000000011, + -14.548333333999892 + ], + [ + 35.26000000000016, + -14.516666666999924 + ], + [ + 35.233333333000076, + -14.421666665999965 + ] + ], + [ + [ + 28.330833333000044, + -15.4075 + ], + [ + 28.297500000000127, + -15.47166666599992 + ], + [ + 28.171666667000125, + -15.461666665999928 + ], + [ + 28.214166667000086, + -15.365833333999944 + ], + [ + 28.330833333000044, + -15.4075 + ] + ], + [ + [ + 28.21583333400008, + -15.7375 + ], + [ + 28.122500000000173, + -15.776666665999926 + ], + [ + 28.033333333000144, + -15.753333332999944 + ], + [ + 27.848333333000028, + -15.774999999999864 + ], + [ + 27.62833333300017, + -15.8175 + ], + [ + 27.60083333299997, + -15.7725 + ], + [ + 27.43916666700011, + -15.88249999999988 + ], + [ + 27.3325, + -15.90083333399997 + ], + [ + 27.200833334000095, + -15.855 + ], + [ + 27.11583333300007, + -15.89 + ], + [ + 27.098333334000074, + -15.8175 + ], + [ + 27.034166667000193, + -15.8175 + ], + [ + 26.936666667000168, + -15.877499999999884 + ], + [ + 26.871666667000113, + -15.81666666599989 + ], + [ + 26.866666667000118, + -15.73833333399989 + ], + [ + 26.746666667000056, + -15.68249999999989 + ], + [ + 26.630833333000112, + -15.772647857999914 + ], + [ + 26.56166666700011, + -15.7475 + ], + [ + 26.438333333000116, + -15.745 + ], + [ + 26.31750000000011, + -15.795 + ], + [ + 26.13416666700016, + -15.916666666999959 + ], + [ + 26.05583333300001, + -15.9 + ], + [ + 25.992500000000177, + -15.840833332999921 + ], + [ + 25.905833334000135, + -15.879166666999936 + ], + [ + 25.820000000000107, + -15.843333332999975 + ], + [ + 25.852500000000134, + -15.78166666699991 + ], + [ + 25.924166667000122, + -15.74583333299995 + ], + [ + 26.024166666000156, + -15.538333332999912 + ], + [ + 26.05833333300012, + -15.58416666699992 + ], + [ + 26.01916666600016, + -15.74166666699989 + ], + [ + 26.125000000000114, + -15.774999999999864 + ], + [ + 26.5925, + -15.634166666999874 + ], + [ + 26.66083333400013, + -15.550833333999947 + ], + [ + 26.74833333300012, + -15.559999999999832 + ], + [ + 26.76666666699998, + -15.448740818999909 + ], + [ + 26.910833334000074, + -15.4125 + ], + [ + 27.0875, + -15.41 + ], + [ + 27.383333333000053, + -15.365 + ], + [ + 27.435, + -15.41583333299991 + ], + [ + 27.510000000000105, + -15.395833333999974 + ], + [ + 27.6333333340001, + -15.444166666999877 + ], + [ + 27.694166667000047, + -15.51 + ], + [ + 27.87583333300006, + -15.493333332999839 + ], + [ + 27.97666666700019, + -15.56833333399993 + ], + [ + 28.062500000000114, + -15.574999999999875 + ], + [ + 28.02583333400014, + -15.667499999999848 + ], + [ + 28.08833333299998, + -15.7475 + ], + [ + 28.21583333400008, + -15.7375 + ] + ], + [ + [ + 25.074166667000156, + -15.205 + ], + [ + 25.09083333300015, + -15.258333333999929 + ], + [ + 24.935833333000176, + -15.235833332999903 + ], + [ + 24.94583333300011, + -15.145 + ], + [ + 24.76250000000016, + -15.004166665999946 + ], + [ + 24.84583333300003, + -14.974166666999906 + ], + [ + 24.868333333000066, + -15.076666666999927 + ], + [ + 24.929166667000118, + -15.119166666999945 + ], + [ + 25.03333333300003, + -15.115833332999898 + ], + [ + 25.074166667000156, + -15.205 + ] + ], + [ + [ + 25.38333333300011, + -15.770833332999814 + ], + [ + 25.32166666700016, + -15.99833333399988 + ], + [ + 25.320833333000166, + -16.13333333299994 + ], + [ + 25.245, + -16.11916666699983 + ], + [ + 25.1425, + -16.040833332999966 + ], + [ + 25.239166666000187, + -15.835833332999925 + ], + [ + 25.38333333300011, + -15.770833332999814 + ] + ], + [ + [ + 25.049166666000076, + -16.13333333299994 + ], + [ + 24.955833334000033, + -16.08416666599993 + ], + [ + 24.965833334000024, + -16.005 + ], + [ + 25.11500000000018, + -16.0416666669999 + ], + [ + 25.049166666000076, + -16.13333333299994 + ] + ], + [ + [ + 24.992500000000177, + -15.944166665999887 + ], + [ + 24.987500000000182, + -15.874999999999886 + ], + [ + 24.898333333000153, + -15.835833333999915 + ], + [ + 24.89166666600005, + -15.779166666999913 + ], + [ + 24.9625, + -15.74583333299995 + ], + [ + 25.050833334000174, + -15.803333332999898 + ], + [ + 24.992500000000177, + -15.944166665999887 + ] + ], + [ + [ + 24.448333333000164, + -15.5225 + ], + [ + 24.37000000000012, + -15.485 + ], + [ + 24.44416666700016, + -15.419166665999967 + ], + [ + 24.42916666600013, + -15.335833333999915 + ], + [ + 24.445833334000156, + -15.18333333299995 + ], + [ + 24.479166666000026, + -15.144166666999979 + ], + [ + 24.5825, + -15.241666666999834 + ], + [ + 24.596666665999976, + -15.303333332999841 + ], + [ + 24.680833334000113, + -15.351666665999915 + ], + [ + 24.659166667000022, + -15.429166666999947 + ], + [ + 24.58583333399997, + -15.524166665999871 + ], + [ + 24.448333333000164, + -15.5225 + ] + ], + [ + [ + 24.353333333000023, + -15.077499999999873 + ], + [ + 24.25, + -15.089999999999861 + ], + [ + 24.160833333000028, + -14.980833333999954 + ], + [ + 24.206666667000093, + -14.921666665999965 + ], + [ + 24.311666667000054, + -15.004999999999882 + ], + [ + 24.353333333000023, + -15.077499999999873 + ] + ], + [ + [ + 27.80416666600007, + -14.750833332999946 + ], + [ + 27.803333333000126, + -14.655833332999919 + ], + [ + 27.560833333000062, + -14.569166666999877 + ], + [ + 27.481666667000127, + -14.486666666999895 + ], + [ + 27.375, + -14.545833333999894 + ], + [ + 27.3275, + -14.46 + ], + [ + 27.18416666700017, + -14.3975 + ], + [ + 27.079166667000095, + -14.385833332999937 + ], + [ + 27.276666667000086, + -14.208333332999814 + ], + [ + 27.34020633400013, + -14.086012621999942 + ], + [ + 27.435833333000176, + -14.07666666699987 + ], + [ + 27.52333333399997, + -14.019166666999922 + ], + [ + 27.804166667000175, + -13.930833332999839 + ], + [ + 27.790000000000134, + -13.861666666999952 + ], + [ + 27.917500000000132, + -13.903333332999978 + ], + [ + 27.95083333400015, + -13.975833332999912 + ], + [ + 27.875833334000163, + -14.08666666699986 + ], + [ + 27.90583333400008, + -14.228333332999966 + ], + [ + 28.03166666600015, + -14.254166666999936 + ], + [ + 28.03833333300014, + -14.319166666999934 + ], + [ + 28.004166666000117, + -14.4775 + ], + [ + 28.04, + -14.57666666699987 + ], + [ + 27.80416666600007, + -14.750833332999946 + ] + ], + [ + [ + 23.306666666000183, + -13.963333332999923 + ], + [ + 23.419166665999967, + -14.023333333999972 + ], + [ + 23.40333333300009, + -14.09416666699991 + ], + [ + 23.299166666000076, + -14.114999999999895 + ], + [ + 23.306666666000183, + -13.963333332999923 + ] + ], + [ + [ + 25.03333333300003, + -12.844999999999857 + ], + [ + 25.025833334000026, + -12.68666666699994 + ], + [ + 25.113333334000117, + -12.6675 + ], + [ + 25.133333334000042, + -12.758333333999929 + ], + [ + 25.03333333300003, + -12.844999999999857 + ] + ], + [ + [ + 24.66000000000014, + -12.43333333399994 + ], + [ + 24.604166666000083, + -12.45499999999987 + ], + [ + 24.49000000000018, + -12.3875 + ], + [ + 24.5825, + -12.2175 + ], + [ + 24.6575, + -12.195 + ], + [ + 24.671666667000068, + -12.331666666999865 + ], + [ + 24.66000000000014, + -12.43333333399994 + ] + ], + [ + [ + 29.716666667000084, + -11.05 + ], + [ + 29.804166667000118, + -10.91666666599997 + ], + [ + 29.875, + -10.87499999999983 + ], + [ + 29.906666667000138, + -10.833333333999974 + ], + [ + 30.0075, + -10.839166666999972 + ], + [ + 30.11416666700012, + -10.809515246999922 + ], + [ + 30.16000000000014, + -10.877499999999884 + ], + [ + 30.11416666700012, + -10.9525 + ], + [ + 30.150000000000148, + -11.041666666999959 + ], + [ + 30.26333333399998, + -11.039379372999974 + ], + [ + 30.3825, + -11.095 + ], + [ + 30.48166666700007, + -11.1075 + ], + [ + 30.570833333000166, + -11.197499999999877 + ], + [ + 30.688333333000173, + -11.177499999999895 + ], + [ + 30.736666666000076, + -11.21666666699997 + ], + [ + 30.729166667000072, + -11.345833333999906 + ], + [ + 30.808333333000064, + -11.351666666999904 + ], + [ + 30.791666667000015, + -11.42583333399989 + ], + [ + 30.6875, + -11.51833333299993 + ], + [ + 30.7525, + -11.695833332999882 + ], + [ + 30.664166667000075, + -11.7 + ], + [ + 30.655, + -11.808333333999883 + ], + [ + 30.568333334000158, + -11.794166666999956 + ], + [ + 30.543333334000067, + -11.928333332999955 + ], + [ + 30.5775000000001, + -12.071666666999931 + ], + [ + 30.495, + -12.099166666999963 + ], + [ + 30.481666666000137, + -12.188333332999889 + ], + [ + 30.36833333300018, + -12.24166666699989 + ], + [ + 30.19833333300005, + -12.189166666999938 + ], + [ + 30.16000000000014, + -12.229166666999902 + ], + [ + 30.19, + -12.305 + ], + [ + 30.105, + -12.350833333999958 + ], + [ + 29.96, + -12.253333332999944 + ], + [ + 29.878333333000114, + -12.305833332999896 + ], + [ + 29.816666667000163, + -12.2775 + ], + [ + 29.787050555000064, + -12.403590747999829 + ], + [ + 29.67826049300004, + -12.361833781999962 + ], + [ + 29.529729480000185, + -12.378451407999819 + ], + [ + 29.46149056200005, + -12.306056574999957 + ], + [ + 29.57916666600005, + -12.155833332999975 + ], + [ + 29.562414257000114, + -12.11333333399989 + ], + [ + 29.62833333300017, + -11.944166666999877 + ], + [ + 29.595, + -11.889166665999937 + ], + [ + 29.596666667000136, + -11.669166665999967 + ], + [ + 29.66500000000019, + -11.625 + ], + [ + 29.737500000000125, + -11.501666666999938 + ], + [ + 29.705833333000044, + -11.44166666599989 + ], + [ + 29.605833333000135, + -11.468333333999965 + ], + [ + 29.54166666700013, + -11.3625 + ], + [ + 29.575, + -11.241666666999834 + ], + [ + 29.525, + -11.208333332999871 + ], + [ + 29.616666667000118, + -11.1375 + ], + [ + 29.65, + -11.054166665999901 + ], + [ + 29.716666667000084, + -11.05 + ] + ], + [ + [ + 25.11166666600002, + -11.916666666999959 + ], + [ + 24.943333333000055, + -12.0225 + ], + [ + 24.86916666700006, + -12.0875 + ], + [ + 24.835, + -12.033333333999906 + ], + [ + 25.060000000000116, + -11.925833332999957 + ], + [ + 25.11166666600002, + -11.916666666999959 + ] + ], + [ + [ + 31.888333334000095, + -10.57999999999987 + ], + [ + 31.80750000000012, + -10.518333333999976 + ], + [ + 31.607020897000098, + -10.56916666799998 + ], + [ + 31.55670444200007, + -10.480833332999964 + ], + [ + 31.5775000000001, + -10.3975 + ], + [ + 31.653333334000138, + -10.384166665999942 + ], + [ + 31.744166666000126, + -10.25666666699982 + ], + [ + 31.844166666999968, + -10.2275 + ], + [ + 31.84583333300003, + -10.185833332999948 + ], + [ + 31.9825, + -10.125833332999889 + ], + [ + 31.961666667000145, + -10.061666666999827 + ], + [ + 31.87416666600018, + -10.000833333999935 + ], + [ + 31.947500000000105, + -9.938333332999889 + ], + [ + 31.918333333000135, + -9.82583333399998 + ], + [ + 31.940833334000104, + -9.7325 + ], + [ + 31.99083333300007, + -9.66666666599997 + ], + [ + 32.085, + -9.624999999999886 + ], + [ + 32.039166667000075, + -9.54333333299985 + ], + [ + 32.0750000000001, + -9.490833333999944 + ], + [ + 32.14416666699998, + -9.4775 + ], + [ + 32.234166667000125, + -9.415833332999966 + ], + [ + 32.208333333000155, + -9.349166666999963 + ], + [ + 32.254166666000174, + -9.258333332999882 + ], + [ + 32.413333333000026, + -9.276666666999972 + ], + [ + 32.52333333300015, + -9.359166666999954 + ], + [ + 32.629166667000106, + -9.601666666999904 + ], + [ + 32.70750000000015, + -9.631666666999934 + ], + [ + 32.65833333300003, + -9.758333332999882 + ], + [ + 32.738333333000185, + -9.758333332999882 + ], + [ + 32.67583333300007, + -9.928333332999841 + ], + [ + 32.5775000000001, + -10.0725 + ], + [ + 32.523333334000085, + -9.9725 + ], + [ + 32.55250000000012, + -9.875833332999946 + ], + [ + 32.483333333000076, + -9.793333332999964 + ], + [ + 32.406666667000025, + -9.81166666699994 + ], + [ + 32.30500000000012, + -9.876666666999881 + ], + [ + 32.19166666700016, + -9.88666666599994 + ], + [ + 32.18583333300012, + -9.985 + ], + [ + 32.12500000000017, + -10.045 + ], + [ + 32.17916666700012, + -10.1325 + ], + [ + 32.141666667000095, + -10.16583333299991 + ], + [ + 32.12166666600007, + -10.273333332999925 + ], + [ + 32.020833333000155, + -10.504166665999946 + ], + [ + 31.888333334000095, + -10.57999999999987 + ] + ], + [ + [ + 28.45636587200005, + -9.525917618999927 + ], + [ + 28.352811213000052, + -9.499637375999953 + ], + [ + 28.374205570000186, + -9.430878111999903 + ], + [ + 28.328703862000168, + -9.372732837999934 + ], + [ + 28.36036719500015, + -9.200435568999978 + ], + [ + 28.33594647400008, + -9.1473998969999 + ], + [ + 28.394653582000103, + -9.059952586999941 + ], + [ + 28.493154377000053, + -8.961138441999879 + ], + [ + 28.6712198460001, + -8.747061500999962 + ], + [ + 28.725358396000104, + -8.713933247999819 + ], + [ + 28.887430618999986, + -8.47624498499988 + ], + [ + 29.0125, + -8.541666666999902 + ], + [ + 29.150000000000148, + -8.645833333999974 + ], + [ + 29.108333333000132, + -8.804166665999901 + ], + [ + 29.016666667000095, + -9 + ], + [ + 28.945833333000053, + -9.025 + ], + [ + 28.725, + -9.312499999999886 + ], + [ + 28.729166666000026, + -9.493333332999953 + ], + [ + 28.70000000000016, + -9.536666666999963 + ], + [ + 28.741666667, + -9.645 + ], + [ + 28.741666667, + -9.856666665999967 + ], + [ + 28.708333333000155, + -9.975 + ], + [ + 28.640833333000046, + -10.071666666999874 + ], + [ + 28.6366666670001, + -10.317499999999882 + ], + [ + 28.577500000000157, + -10.225 + ], + [ + 28.58450595500011, + -10.04272575099992 + ], + [ + 28.463125595000065, + -10.02276328399995 + ], + [ + 28.417398457000047, + -9.961799689999964 + ], + [ + 28.371671487000015, + -9.66205679799998 + ], + [ + 28.33793248300003, + -9.568268497999952 + ], + [ + 28.37172404200004, + -9.52015989399996 + ], + [ + 28.45636587200005, + -9.525917618999927 + ] + ], + [ + [ + 33.55750000000012, + -9.395833333999917 + ], + [ + 33.56000000000017, + -9.4925 + ], + [ + 33.455, + -9.564166665999892 + ], + [ + 33.34833333300003, + -9.486666666999895 + ], + [ + 33.31916666600017, + -9.333333332999871 + ], + [ + 33.26083333300011, + -9.309166665999953 + ], + [ + 33.25916666600017, + -9.230833332999964 + ], + [ + 33.156666667000025, + -9.202499999999816 + ], + [ + 33.123333333000176, + -9.141666665999935 + ], + [ + 33.21916666700014, + -9.0425 + ], + [ + 33.275833333000094, + -8.953333333999979 + ], + [ + 33.42666666700012, + -8.986666666999952 + ], + [ + 33.5150000000001, + -8.9525 + ], + [ + 33.44000000000011, + -8.859166666999954 + ], + [ + 33.56500000000017, + -8.875 + ], + [ + 33.60333333300014, + -8.9925 + ], + [ + 33.42833333300018, + -9.068333332999885 + ], + [ + 33.5150000000001, + -9.160833332999914 + ], + [ + 33.535, + -9.274166666999974 + ], + [ + 33.5083333340001, + -9.315833333999933 + ], + [ + 33.55750000000012, + -9.395833333999917 + ] + ], + [ + [ + 34.237500000000125, + -9.590833332999978 + ], + [ + 34.21666666600015, + -9.519166666999922 + ], + [ + 34.14916666600004, + -9.509166665999942 + ], + [ + 34.006666667, + -9.405833332999975 + ], + [ + 33.9575, + -9.263333332999878 + ], + [ + 33.895833334000145, + -9.235 + ], + [ + 33.81166666700011, + -9.115 + ], + [ + 33.750000000000114, + -9.195833332999939 + ], + [ + 33.68, + -9.195 + ], + [ + 33.60583333300019, + -9.133333332999939 + ], + [ + 33.685833333000176, + -9.06083333399988 + ], + [ + 33.7225, + -8.9191666669999 + ], + [ + 33.86083333300013, + -8.950833332999878 + ], + [ + 33.982500000000186, + -8.939166666999938 + ], + [ + 34.125000000000114, + -9.109166665999908 + ], + [ + 34.2075, + -9.117499999999836 + ], + [ + 34.30333333300007, + -9.054999999999893 + ], + [ + 34.375, + -9.095 + ], + [ + 34.46083333300015, + -9.194166666999877 + ], + [ + 34.545000000000186, + -9.18333333299995 + ], + [ + 34.57500000000016, + -9.301666666999893 + ], + [ + 34.62583333300012, + -9.3 + ], + [ + 34.7325, + -9.1775 + ], + [ + 34.8075, + -9.034166666999909 + ], + [ + 34.810000000000116, + -8.965833332999864 + ], + [ + 34.934166667000056, + -8.95916666599993 + ], + [ + 34.995, + -8.984166665999851 + ], + [ + 35.10083333300008, + -8.954166666999981 + ], + [ + 35.13416666700016, + -9.063333332999889 + ], + [ + 35.278333334000024, + -9.109166666999897 + ], + [ + 35.335833333000096, + -9.21333333299998 + ], + [ + 35.30666666600007, + -9.455833333999976 + ], + [ + 35.213333333000094, + -9.461666666999974 + ], + [ + 35.22, + -9.5508333329999 + ], + [ + 35.31333333300006, + -9.566666666999936 + ], + [ + 35.29750000000013, + -9.644166666999979 + ], + [ + 35.35, + -9.650833332999866 + ], + [ + 35.34583333300003, + -9.68333333299995 + ], + [ + 35.326666667000154, + -9.82583333399998 + ], + [ + 35.24166666600007, + -9.8575 + ], + [ + 35.11583333400017, + -9.778333332999921 + ], + [ + 34.97083333300003, + -9.889999999999873 + ], + [ + 34.950833333000105, + -9.795 + ], + [ + 34.82250000000016, + -9.821666665999942 + ], + [ + 34.70833333300004, + -9.785833332999971 + ], + [ + 34.615, + -10.044166665999967 + ], + [ + 34.565833333000114, + -10.03916666699996 + ], + [ + 34.49166666700012, + -9.901666665999926 + ], + [ + 34.36166666600013, + -9.724166666999963 + ], + [ + 34.25250000000011, + -9.640833332999875 + ], + [ + 34.237500000000125, + -9.590833332999978 + ] + ], + [ + [ + 33.57833333400009, + -10.0225 + ], + [ + 33.636666667000156, + -10.014166665999937 + ], + [ + 33.694166666, + -10.090833332999978 + ], + [ + 33.61333333300007, + -10.145 + ], + [ + 33.57833333400009, + -10.0225 + ] + ], + [ + [ + 33.490833334, + -10.141666666999981 + ], + [ + 33.38750000000016, + -10.125833332999889 + ], + [ + 33.44333333300011, + -10.048333332999903 + ], + [ + 33.490833334, + -10.141666666999981 + ] + ], + [ + [ + 33.79166666700013, + -10.365 + ], + [ + 33.84583333299997, + -10.43583333399988 + ], + [ + 33.959166667000034, + -10.46 + ], + [ + 33.96000000000015, + -10.6025 + ], + [ + 33.995, + -10.681666666999888 + ], + [ + 33.98, + -10.76 + ], + [ + 33.915, + -10.740833332999898 + ], + [ + 33.83, + -10.650833332999923 + ], + [ + 33.76166666700004, + -10.687499999999886 + ], + [ + 33.70083333300016, + -10.665833333999899 + ], + [ + 33.7275, + -10.497499999999889 + ], + [ + 33.79166666700013, + -10.365 + ] + ], + [ + [ + 34.16750000000013, + -10.7975 + ], + [ + 34.21, + -10.834166665999874 + ], + [ + 34.225833333000026, + -10.990833332999955 + ], + [ + 34.21416666700014, + -11.064999999999827 + ], + [ + 34.15333333300009, + -11.163333333999958 + ], + [ + 34.054166667000175, + -11.168333332999964 + ], + [ + 34.0375, + -11.095 + ], + [ + 34.0925, + -10.9725 + ], + [ + 34.1175, + -10.8325 + ], + [ + 34.16750000000013, + -10.7975 + ] + ], + [ + [ + 34.106666666000024, + -11.304166666999947 + ], + [ + 34.1400000000001, + -11.434166665999896 + ], + [ + 34.04500000000013, + -11.44 + ], + [ + 34.106666666000024, + -11.304166666999947 + ] + ], + [ + [ + 34.02666666700014, + -11.47 + ], + [ + 33.96583333300009, + -11.570833332999939 + ], + [ + 33.9591666660001, + -11.668333333999954 + ], + [ + 33.923333334000176, + -11.724166666999963 + ], + [ + 33.911666666000144, + -11.86416666599996 + ], + [ + 33.884166667000045, + -11.946666666999874 + ], + [ + 33.835833334000085, + -11.980833332999964 + ], + [ + 33.729166667000015, + -12.14249999999987 + ], + [ + 33.68750000000017, + -12.11416666699995 + ], + [ + 33.8216666670001, + -11.961666666999918 + ], + [ + 33.705, + -11.895 + ], + [ + 33.7975, + -11.798333333999835 + ], + [ + 33.74500000000012, + -11.655 + ], + [ + 33.90166666600015, + -11.5 + ], + [ + 34.02666666700014, + -11.47 + ] + ], + [ + [ + 34.8175, + -10.695833332999939 + ], + [ + 34.87916666600012, + -10.71333333299998 + ], + [ + 34.9025, + -10.824166666999929 + ], + [ + 34.968333333000146, + -10.970833333999963 + ], + [ + 34.99583333300018, + -11.110833333999949 + ], + [ + 34.975, + -11.220833332999916 + ], + [ + 34.87583333300006, + -11.2 + ], + [ + 34.845, + -11.053333333999888 + ], + [ + 34.788333333000026, + -10.998333333999938 + ], + [ + 34.779166667000084, + -10.878333332999944 + ], + [ + 34.85500000000019, + -10.741666666999947 + ], + [ + 34.8175, + -10.695833332999939 + ] + ], + [ + [ + 33.411666667000134, + -8.846666665999976 + ], + [ + 33.265833334000035, + -8.817499999999825 + ], + [ + 33.50416666700005, + -8.76083333299988 + ], + [ + 33.5025, + -8.828333332999932 + ], + [ + 33.411666667000134, + -8.846666665999976 + ] + ], + [ + [ + 31.695000000000107, + -8.36416666599996 + ], + [ + 31.631666666000115, + -8.26166666599994 + ], + [ + 31.563333334000163, + -8.316666666999879 + ], + [ + 31.49666666700017, + -8.28 + ], + [ + 31.498333333000062, + -8.124166666999884 + ], + [ + 31.535833333000028, + -8.085833332999869 + ], + [ + 31.628333333000114, + -8.131666666999877 + ], + [ + 31.693333333000112, + -8.244166665999956 + ], + [ + 31.695000000000107, + -8.36416666599996 + ] + ], + [ + [ + 31.124166667000054, + -7.984166665999965 + ], + [ + 30.995833333000064, + -7.88583333299988 + ], + [ + 30.98083333400018, + -7.805 + ], + [ + 31.070000000000107, + -7.765833332999819 + ], + [ + 31.16416666700013, + -7.626666666999881 + ], + [ + 31.159166667000136, + -7.496666665999953 + ], + [ + 31.30416666600007, + -7.720833332999916 + ], + [ + 31.2675, + -7.773333332999869 + ], + [ + 31.17416666600002, + -7.786666666999963 + ], + [ + 31.120833334000054, + -7.880833332999885 + ], + [ + 31.124166667000054, + -7.984166665999965 + ] + ], + [ + [ + 31.525000000000148, + -7.380833332999828 + ], + [ + 31.61166666600019, + -7.381666666999934 + ], + [ + 31.823333333000164, + -7.469999999999857 + ], + [ + 32.05833333300018, + -7.62916666599989 + ], + [ + 32.18166666700017, + -7.764999999999873 + ], + [ + 32.31, + -7.846666665999919 + ], + [ + 32.43000000000018, + -7.989166666999949 + ], + [ + 32.50083333300012, + -8.005 + ], + [ + 32.61833333300012, + -8.165 + ], + [ + 32.66583333300008, + -8.18 + ], + [ + 32.79916666600013, + -8.335 + ], + [ + 32.93, + -8.416666666999902 + ], + [ + 32.8275, + -8.508333332999939 + ], + [ + 32.586666667000145, + -8.47916666599997 + ], + [ + 32.51083333300011, + -8.411666666999963 + ], + [ + 32.53750000000019, + -8.360833333999949 + ], + [ + 32.4175, + -8.289166665999971 + ], + [ + 32.43333333300018, + -8.238333332999957 + ], + [ + 32.366666666000185, + -8.139166666999927 + ], + [ + 32.2025, + -8.0775 + ], + [ + 32.09333333300009, + -8.1475 + ], + [ + 32.0783333330001, + -8.090833333999967 + ], + [ + 31.983333334000065, + -8.045 + ], + [ + 31.87166666700017, + -7.893333332999873 + ], + [ + 31.79083333400007, + -7.8175 + ], + [ + 31.77666666700003, + -7.757499999999879 + ], + [ + 31.700000000000102, + -7.749166666999884 + ], + [ + 31.68416666700017, + -7.690833333999876 + ], + [ + 31.54583333300019, + -7.604166665999969 + ], + [ + 31.549166666000076, + -7.553333332999955 + ], + [ + 31.446666666, + -7.516666665999878 + ], + [ + 31.38416666700016, + -7.40416666699997 + ], + [ + 31.525000000000148, + -7.380833332999828 + ] + ], + [ + [ + 31.955, + -8.28 + ], + [ + 31.912500000000193, + -8.2825 + ], + [ + 31.716666667000027, + -8.0775 + ], + [ + 31.66500000000019, + -7.928333332999955 + ], + [ + 31.689166667000165, + -7.851666665999915 + ], + [ + 31.819166667000047, + -7.9883333329999 + ], + [ + 31.91750000000019, + -8.137499999999875 + ], + [ + 31.955, + -8.28 + ] + ], + [ + [ + 31.469166667000138, + -7.856666665999967 + ], + [ + 31.45416666699998, + -7.795833332999905 + ], + [ + 31.551666667000063, + -7.77916666699997 + ], + [ + 31.537500000000193, + -7.8475 + ], + [ + 31.469166667000138, + -7.856666665999967 + ] + ], + [ + [ + 31.573333334000154, + -7.239166666999893 + ], + [ + 31.513333334000095, + -7.2275 + ], + [ + 31.463333334000026, + -7.144166665999876 + ], + [ + 31.36583333300007, + -7.1225 + ], + [ + 31.383333334000042, + -7.056666665999899 + ], + [ + 31.5, + -7.074999999999875 + ], + [ + 31.573333334000154, + -7.239166666999893 + ] + ], + [ + [ + 31.253333333000114, + -7.104166665999969 + ], + [ + 31.229166666000083, + -7.11416666599996 + ], + [ + 31.035, + -7.070833333999929 + ], + [ + 31.07416666600011, + -6.989999999999895 + ], + [ + 31.1425, + -6.96 + ], + [ + 31.064166667000052, + -6.889166666999927 + ], + [ + 30.96583333300015, + -6.9375 + ], + [ + 30.9075, + -6.86083333299996 + ], + [ + 31.02833333300009, + -6.8475 + ], + [ + 31.0683333340001, + -6.762499999999818 + ], + [ + 31.044166665999967, + -6.7075 + ], + [ + 31.13166666700016, + -6.6525 + ], + [ + 31.258333334000156, + -6.85 + ], + [ + 31.321666666000112, + -6.845 + ], + [ + 31.33, + -6.671666666999897 + ], + [ + 31.430000000000177, + -6.776666666999915 + ], + [ + 31.405, + -6.886666666999929 + ], + [ + 31.332500000000152, + -6.93 + ], + [ + 31.319166666000058, + -7.048333333999892 + ], + [ + 31.253333333000114, + -7.104166665999969 + ] + ], + [ + [ + 30.89833333300004, + -6.720833332999916 + ], + [ + 30.916666666000026, + -6.55833333299995 + ], + [ + 30.991666666000185, + -6.55 + ], + [ + 31.048333333000016, + -6.635833332999937 + ], + [ + 30.89833333300004, + -6.720833332999916 + ] + ], + [ + [ + 30.018333334000033, + -6.408333332999973 + ], + [ + 29.9875, + -6.421666665999965 + ], + [ + 29.878333333000114, + -6.307499999999891 + ], + [ + 29.78916666700013, + -6.241666666999947 + ], + [ + 29.82, + -6.16 + ], + [ + 30.018333334000033, + -6.408333332999973 + ] + ], + [ + [ + 30.480833334000124, + -6.14 + ], + [ + 30.44583333300011, + -6.105 + ], + [ + 30.530833334000192, + -5.9825 + ], + [ + 30.645, + -6.066666666999879 + ], + [ + 30.579166666000162, + -6.164166666999961 + ], + [ + 30.480833334000124, + -6.14 + ] + ], + [ + [ + 30.419166666000024, + -3.831666666999865 + ], + [ + 30.474166667000134, + -3.866666666999947 + ], + [ + 30.490833333000182, + -3.944999999999879 + ], + [ + 30.567500000000166, + -3.9775 + ], + [ + 30.68666666600018, + -4.124166666999884 + ], + [ + 30.780833333000032, + -4.078333333999979 + ], + [ + 30.824166667000043, + -4.130833332999941 + ], + [ + 30.76833333400009, + -4.1775 + ], + [ + 30.769166666000103, + -4.359166666999954 + ], + [ + 30.8325, + -4.375 + ], + [ + 30.786666667000077, + -4.511666666999872 + ], + [ + 30.785, + -4.7025 + ], + [ + 30.84916666700019, + -4.726666666999904 + ], + [ + 30.92333333300013, + -4.6825 + ], + [ + 30.850833333000026, + -4.603333333999899 + ], + [ + 30.9625, + -4.601666666999961 + ], + [ + 31.0216666660001, + -4.67 + ], + [ + 31.138333333000162, + -4.731666665999967 + ], + [ + 31.12500000000017, + -4.7775 + ], + [ + 31.005833334000158, + -4.840833332999978 + ], + [ + 31.021666667000034, + -4.927499999999895 + ], + [ + 31.098333333000085, + -4.908333333999906 + ], + [ + 31.256666666000115, + -4.764166666999927 + ], + [ + 31.36583333300007, + -4.77916666699997 + ], + [ + 31.405, + -4.706666666999979 + ], + [ + 31.308333334000054, + -4.619166666999888 + ], + [ + 31.209166667000034, + -4.580833333999976 + ], + [ + 31.19583333300011, + -4.420833332999962 + ], + [ + 31.30500000000012, + -4.439999999999884 + ], + [ + 31.31333333400005, + -4.195 + ], + [ + 31.271666667000147, + -4.094166665999978 + ], + [ + 31.288333333000026, + -3.9725 + ], + [ + 31.243333334, + -3.8875 + ], + [ + 31.2558333340001, + -3.793333332999907 + ], + [ + 31.161666666000144, + -3.789166666999961 + ], + [ + 31.118333334000113, + -3.840833333999967 + ], + [ + 31.11083333300013, + -3.9625 + ], + [ + 31.058333333000178, + -3.978333333999956 + ], + [ + 30.806666667000172, + -3.759166666999931 + ], + [ + 30.950833333000162, + -3.744166666999888 + ], + [ + 31.0525, + -3.693333333999874 + ], + [ + 31.1325, + -3.58 + ], + [ + 31.21416666700003, + -3.606666666999956 + ], + [ + 31.2775, + -3.7225 + ], + [ + 31.359166667000068, + -3.785833332999857 + ], + [ + 31.3925, + -3.920833332999962 + ], + [ + 31.453333334000092, + -4.003333332999944 + ], + [ + 31.617500000000177, + -3.951666666999927 + ], + [ + 31.565, + -4.093333332999919 + ], + [ + 31.545, + -4.259166665999942 + ], + [ + 31.51416666700004, + -4.37 + ], + [ + 31.55250000000018, + -4.414166666999904 + ], + [ + 31.624166667000168, + -4.3525 + ], + [ + 31.610833333000073, + -4.193333333999874 + ], + [ + 31.62916666600006, + -4.094166666999968 + ], + [ + 31.70583333400009, + -4.074166666999929 + ], + [ + 31.769166666000046, + -4.2 + ], + [ + 31.73916666600013, + -4.406666666999968 + ], + [ + 31.77583333400014, + -4.520833332999928 + ], + [ + 31.645, + -4.550833333999947 + ], + [ + 31.65083333300015, + -4.624166665999951 + ], + [ + 31.820000000000164, + -4.73916666599996 + ], + [ + 31.725000000000193, + -4.77916666699997 + ], + [ + 31.663333333000026, + -4.705833333999919 + ], + [ + 31.53833333300014, + -4.7325 + ], + [ + 31.565, + -4.8575 + ], + [ + 31.490833333000182, + -4.910833332999971 + ], + [ + 31.4575, + -4.99166666699989 + ], + [ + 31.402500000000146, + -4.9775 + ], + [ + 31.268333333000044, + -5.028333332999978 + ], + [ + 31.278333333000035, + -5.226666666999904 + ], + [ + 31.391666667000038, + -5.345833332999973 + ], + [ + 31.3675, + -5.448333333999869 + ], + [ + 31.484166667000125, + -5.486666666999895 + ], + [ + 31.43333333400011, + -5.556666666999945 + ], + [ + 31.354166667000072, + -5.515833332999932 + ], + [ + 31.305833333000066, + -5.333333332999871 + ], + [ + 31.238333333000128, + -5.27083333399986 + ], + [ + 31.024166667000145, + -5.270833332999928 + ], + [ + 30.996666667000113, + -5.288333332999969 + ], + [ + 31.071666667000102, + -5.451666665999824 + ], + [ + 31.079166666000106, + -5.57 + ], + [ + 31.162500000000193, + -5.606666665999967 + ], + [ + 31.15416666699997, + -5.692499999999825 + ], + [ + 31.06500000000017, + -5.66 + ], + [ + 31.03, + -5.5775 + ], + [ + 31.030833333000146, + -5.4925 + ], + [ + 30.985000000000127, + -5.374166666999827 + ], + [ + 30.92750000000018, + -5.309999999999889 + ], + [ + 31.050000000000182, + -5.1725 + ], + [ + 31.1325, + -5.18333333299995 + ], + [ + 31.18833333300006, + -5.148333333999972 + ], + [ + 31.196666666000056, + -5.054166666999947 + ], + [ + 31.12416666600018, + -4.993333332999953 + ], + [ + 31.031666667000025, + -4.993333332999953 + ], + [ + 30.946666667000045, + -5.0375 + ], + [ + 30.875833333000173, + -5.139166665999937 + ], + [ + 30.84916666700019, + -4.983333332999905 + ], + [ + 30.87750000000011, + -4.814999999999827 + ], + [ + 30.85916666600008, + -4.781666665999978 + ], + [ + 30.739166666000187, + -4.748333332999835 + ], + [ + 30.73, + -4.656666665999978 + ], + [ + 30.669166666000137, + -4.609166665999908 + ], + [ + 30.652500000000146, + -4.416666666999902 + ], + [ + 30.73583333300013, + -4.327499999999873 + ], + [ + 30.70416666600005, + -4.169166666999956 + ], + [ + 30.64, + -4.145833333999974 + ], + [ + 30.519166667000036, + -4.214166666999972 + ], + [ + 30.47916666700013, + -4.155833332999975 + ], + [ + 30.500833333000173, + -4.091666665999981 + ], + [ + 30.476666666000142, + -4.015 + ], + [ + 30.34916666600003, + -4.035 + ], + [ + 30.348333333000085, + -3.960833332999869 + ], + [ + 30.419166666000024, + -3.831666666999865 + ] + ], + [ + [ + 30.070833333999985, + -3.936666666999884 + ], + [ + 30.073333333000164, + -3.841666666999913 + ], + [ + 30.18, + -3.682499999999891 + ], + [ + 30.21833333400008, + -3.6975 + ], + [ + 30.179166667000118, + -3.868333333999942 + ], + [ + 30.070833333999985, + -3.936666666999884 + ] + ], + [ + [ + 30.111666667, + -3.583333332999871 + ], + [ + 30.146666667000147, + -3.5275 + ], + [ + 30.295000000000186, + -3.45583333299993 + ], + [ + 30.2325, + -3.398333332999869 + ], + [ + 30.49916666600018, + -3.218333332999919 + ], + [ + 30.583333334000145, + -3.1725 + ], + [ + 30.611666667000122, + -3.090833333999967 + ], + [ + 30.703333333000103, + -3.17 + ], + [ + 30.741666667000175, + -3.236666666999895 + ], + [ + 30.5, + -3.24166666699989 + ], + [ + 30.4525, + -3.348333332999971 + ], + [ + 30.3925, + -3.384166666999931 + ], + [ + 30.3675, + -3.4625 + ], + [ + 30.261666667000043, + -3.516666666999868 + ], + [ + 30.195833333000166, + -3.609166666999954 + ], + [ + 30.111666667, + -3.583333332999871 + ] + ], + [ + [ + 30.534166667000193, + -5.518333333999976 + ], + [ + 30.46333333300015, + -5.536666665999974 + ], + [ + 30.416666667000186, + -5.494166666999888 + ], + [ + 30.498333333000062, + -5.427499999999895 + ], + [ + 30.534166667000193, + -5.518333333999976 + ] + ], + [ + [ + 30.0025, + -4.815833333999933 + ], + [ + 29.954166667000152, + -4.6925 + ], + [ + 30.01583333400015, + -4.61666666699989 + ], + [ + 30.015833333000046, + -4.541666666999902 + ], + [ + 29.920833333000076, + -4.451666666999927 + ], + [ + 29.985000000000184, + -4.385833333999869 + ], + [ + 30.120833333000178, + -4.291666665999969 + ], + [ + 30.193333334000158, + -4.285 + ], + [ + 30.1525, + -4.425 + ], + [ + 30.169166667000184, + -4.483333332999905 + ], + [ + 30.080000000000155, + -4.545 + ], + [ + 30.125, + -4.661666665999974 + ], + [ + 30.0675, + -4.67666666599996 + ], + [ + 30.0025, + -4.815833333999933 + ] + ], + [ + [ + 26.772508621000043, + -32.53974151599988 + ], + [ + 26.720390320000092, + -32.62932968099989 + ], + [ + 26.779607773000123, + -32.694576262999874 + ], + [ + 26.73624801600016, + -32.74461364699994 + ], + [ + 26.616403580000167, + -32.68450927699996 + ], + [ + 26.646099091000053, + -32.550685882999915 + ], + [ + 26.772508621000043, + -32.53974151599988 + ] + ], + [ + [ + 36.675, + -7.231666666999956 + ], + [ + 36.5625, + -7.233333332999905 + ], + [ + 36.60833333300002, + -7.070833332999939 + ], + [ + 36.5216666660001, + -7.0875 + ], + [ + 36.44833333300005, + -6.958333332999928 + ], + [ + 36.49500000000012, + -6.8525 + ], + [ + 36.55916666700017, + -6.838333333999913 + ], + [ + 36.606666667000184, + -6.9025 + ], + [ + 36.715833333000035, + -6.945833332999939 + ], + [ + 36.688333334000106, + -7.067499999999882 + ], + [ + 36.72583333400013, + -7.120833332999894 + ], + [ + 36.72083333300003, + -7.22 + ], + [ + 36.675, + -7.231666666999956 + ] + ], + [ + [ + 35.29763058600008, + -17.57844223799998 + ], + [ + 35.24507148500015, + -17.466772739999954 + ], + [ + 35.295951480999975, + -17.40611558899991 + ], + [ + 35.39601849700017, + -17.442154251999966 + ], + [ + 35.377918615000056, + -17.592845112999953 + ], + [ + 35.29763058600008, + -17.57844223799998 + ] + ], + [ + [ + 32.852985972000056, + -19.530539510999972 + ], + [ + 32.91862240600017, + -19.526129 + ], + [ + 33.14985252000014, + -19.69726348899991 + ], + [ + 33.25725759400012, + -19.690046287999962 + ], + [ + 33.40294038900004, + -19.504898196999875 + ], + [ + 33.41636306200013, + -19.453085632999944 + ], + [ + 33.53171354000011, + -19.26431901999996 + ], + [ + 33.57645973200016, + -19.159491024999966 + ], + [ + 33.671425438000085, + -19.01169133299993 + ], + [ + 33.72065375100016, + -19.02535358699987 + ], + [ + 33.72314557200019, + -19.121350636999978 + ], + [ + 33.792770500000074, + -19.29768762699996 + ], + [ + 33.69530902400004, + -19.281609717999913 + ], + [ + 33.68686604600009, + -19.457535830999916 + ], + [ + 33.46361292000006, + -19.647896343999832 + ], + [ + 33.30947530200018, + -19.80532889299991 + ], + [ + 33.28362115699997, + -19.852320067999813 + ], + [ + 33.09169549799998, + -20.05754570299996 + ], + [ + 33.061367128000086, + -20.12180773299997 + ], + [ + 33.12402206200005, + -20.15153797499994 + ], + [ + 33.31993226700001, + -20.059179289999975 + ], + [ + 33.325903164000124, + -20.126658885999973 + ], + [ + 33.1633107240001, + -20.25637589199988 + ], + [ + 33.09220886400004, + -20.334691209999903 + ], + [ + 33.1003833420001, + -20.45313744499998 + ], + [ + 32.97690341700013, + -20.616601344999935 + ], + [ + 32.761695548000034, + -20.638945331999935 + ], + [ + 32.61835179400015, + -20.677652961999854 + ], + [ + 32.616851174000146, + -20.525021958999957 + ], + [ + 32.68795303400003, + -20.446706640999878 + ], + [ + 32.801313213000014, + -20.235446828999955 + ], + [ + 32.75406730300011, + -20.108516669999972 + ], + [ + 32.61334446400008, + -20.07837554999992 + ], + [ + 32.5054339190001, + -19.94420834699997 + ], + [ + 32.551171313000054, + -19.782746399999894 + ], + [ + 32.555144014000064, + -19.69197169399996 + ], + [ + 32.52479195700005, + -19.348950412999898 + ], + [ + 32.63914333700012, + -19.081056648999834 + ], + [ + 32.74306538900004, + -19.03447634999992 + ], + [ + 32.79181981400012, + -19.449798615999953 + ], + [ + 32.852985972000056, + -19.530539510999972 + ] + ], + [ + [ + 32.49936432400017, + -18.179714953999962 + ], + [ + 32.509801549000144, + -18.094162591999975 + ], + [ + 32.59432213399998, + -17.896154157999888 + ], + [ + 32.58934638700015, + -17.839921160999893 + ], + [ + 32.65000707400003, + -17.779277651999905 + ], + [ + 32.72608862900012, + -17.825075882999954 + ], + [ + 32.751464940000176, + -18.111864166999965 + ], + [ + 32.75346313400013, + -18.270118468999954 + ], + [ + 32.70523786700011, + -18.403463917999943 + ], + [ + 32.75248377700018, + -18.530394076999926 + ], + [ + 32.75348682200013, + -18.677401780999958 + ], + [ + 32.719679377000034, + -18.770181264999962 + ], + [ + 32.66498563900012, + -18.83042381699994 + ], + [ + 32.636647568000114, + -18.917179045999887 + ], + [ + 32.54317063800005, + -19.01396808599992 + ], + [ + 32.468084232000024, + -18.979416454999978 + ], + [ + 32.44569337000013, + -18.726367968999966 + ], + [ + 32.46259511900013, + -18.646037950999983 + ], + [ + 32.4536348260001, + -18.47693800499991 + ], + [ + 32.48793589700006, + -18.321901268999966 + ], + [ + 32.49936432400017, + -18.179714953999962 + ] + ], + [ + [ + 32.82405162800018, + -17.91465764399993 + ], + [ + 32.81062105900014, + -17.830709103999936 + ], + [ + 32.84890667600018, + -17.788539316999902 + ], + [ + 32.927472156000135, + -17.794573493999906 + ], + [ + 32.99460526300004, + -17.87491343299996 + ], + [ + 33.01699217600003, + -18.060081366999952 + ], + [ + 32.98318868000018, + -18.220741402999977 + ], + [ + 32.9115852970001, + -18.225552869999945 + ], + [ + 32.872296635000055, + -18.120714953999823 + ], + [ + 32.82405162800018, + -17.91465764399993 + ] + ], + [ + [ + 33.84840806500006, + -18.36624449999988 + ], + [ + 34.00106085400006, + -18.32770315599987 + ], + [ + 33.99012605400003, + -18.407632217999947 + ], + [ + 33.89067822700002, + -18.436941661999867 + ], + [ + 33.84840806500006, + -18.36624449999988 + ] + ], + [ + [ + 34.549166667000065, + -14.7575 + ], + [ + 34.52296553400015, + -14.796771120999836 + ], + [ + 34.427991932000054, + -14.80880970999982 + ], + [ + 34.331509814000015, + -14.532456191999927 + ], + [ + 34.23404439000018, + -14.448497730999975 + ], + [ + 34.30416666700012, + -14.4 + ], + [ + 34.3875000000001, + -14.399166666999918 + ], + [ + 34.45583333300016, + -14.509166666999931 + ], + [ + 34.515833333000046, + -14.56 + ], + [ + 34.549166667000065, + -14.7575 + ] + ], + [ + [ + 34.43994162100017, + -15.07953000599997 + ], + [ + 34.44142644900006, + -14.960638801999892 + ], + [ + 34.49015323900011, + -14.9007972039999 + ], + [ + 34.57617839200009, + -14.923300324999957 + ], + [ + 34.61583333300018, + -15.004999999999882 + ], + [ + 34.5716666670001, + -15.126666665999835 + ], + [ + 34.60333333300008, + -15.26833333299993 + ], + [ + 34.52250000000015, + -15.351162409999972 + ], + [ + 34.46282610900005, + -15.27032123999993 + ], + [ + 34.43994162100017, + -15.07953000599997 + ] + ], + [ + [ + 35.564166667, + -15.485833333999949 + ], + [ + 35.5725, + -15.43 + ], + [ + 35.4566666660001, + -15.313333332999889 + ], + [ + 35.45916666600016, + -15.190833333999933 + ], + [ + 35.54833333300019, + -15.11 + ], + [ + 35.559166667000056, + -15.015 + ], + [ + 35.735833333000016, + -14.96 + ], + [ + 35.73750000000018, + -14.91416666699996 + ], + [ + 35.87000000000012, + -14.749166665999894 + ], + [ + 35.90133459900011, + -14.772030932999883 + ], + [ + 35.916265788000146, + -15.00861047599983 + ], + [ + 35.94959145000007, + -15.181729898999947 + ], + [ + 35.92672275299998, + -15.262460872999952 + ], + [ + 35.96253628799997, + -15.463696794999976 + ], + [ + 35.858618185000125, + -15.57815764499992 + ], + [ + 35.78916666700019, + -15.525833332999923 + ], + [ + 35.771666666000044, + -15.628333333999876 + ], + [ + 35.70083333400004, + -15.714166666999972 + ], + [ + 35.64583333300004, + -15.6325 + ], + [ + 35.60083333400007, + -15.719166666999968 + ], + [ + 35.52583333300015, + -15.753333332999944 + ], + [ + 35.42666666600019, + -15.8475 + ], + [ + 35.37416666700011, + -15.740833333999888 + ], + [ + 35.40583333300009, + -15.661666666999906 + ], + [ + 35.40500000000014, + -15.533333332999916 + ], + [ + 35.445, + -15.503333332999887 + ], + [ + 35.527500000000146, + -15.564999999999884 + ], + [ + 35.556666667000115, + -15.645 + ], + [ + 35.644166667000036, + -15.595833332999973 + ], + [ + 35.54333333300002, + -15.521666666999977 + ], + [ + 35.564166667, + -15.485833333999949 + ] + ], + [ + [ + 36.30782656800011, + -16.18249367899989 + ], + [ + 36.40543751900003, + -16.239018047999934 + ], + [ + 36.562255551000135, + -16.227138041999922 + ], + [ + 36.67038746700007, + -16.306524890999924 + ], + [ + 36.788322520000065, + -16.303033995999897 + ], + [ + 36.77548245100019, + -16.432574968999916 + ], + [ + 36.842361488000165, + -16.55578810699984 + ], + [ + 36.84857147300016, + -16.6262889649999 + ], + [ + 36.732429476, + -16.60084050099988 + ], + [ + 36.69731852100006, + -16.500602661999892 + ], + [ + 36.625717455000085, + -16.44916778399994 + ], + [ + 36.52593961400015, + -16.49806998599996 + ], + [ + 36.43233454300008, + -16.43773754999995 + ], + [ + 36.31499460400005, + -16.454456764999975 + ], + [ + 36.23086560900015, + -16.426098271999933 + ], + [ + 36.30782656800011, + -16.18249367899989 + ] + ], + [ + [ + 35.760437746000036, + -16.38153798099995 + ], + [ + 35.78231065700015, + -16.48277175699991 + ], + [ + 35.74000166000002, + -16.558647091999944 + ], + [ + 35.59688166900008, + -16.522264099999916 + ], + [ + 35.629402615, + -16.42911299299982 + ], + [ + 35.760437746000036, + -16.38153798099995 + ] + ], + [ + [ + 35.543333334000124, + -16.147441590999847 + ], + [ + 35.61497845100013, + -16.129545195999867 + ], + [ + 35.70462055900015, + -16.04866133899992 + ], + [ + 35.7135814830001, + -16.19053225899995 + ], + [ + 35.66833848400006, + -16.253328136999926 + ], + [ + 35.461299608000104, + -16.264407670999958 + ], + [ + 35.452629535000085, + -16.18059199199996 + ], + [ + 35.543333334000124, + -16.147441590999847 + ] + ], + [ + [ + 35.61916666700006, + -16.059166666999886 + ], + [ + 35.54833333300019, + -16.0425 + ], + [ + 35.48500000000013, + -15.984166665999965 + ], + [ + 35.4925, + -15.9025 + ], + [ + 35.641666667000095, + -15.8225 + ], + [ + 35.73083333300002, + -15.744166666999888 + ], + [ + 35.77833333400014, + -15.949999999999875 + ], + [ + 35.78416666700002, + -16.045 + ], + [ + 35.67083333300019, + -16.03083333299992 + ], + [ + 35.61916666700006, + -16.059166666999886 + ] + ], + [ + [ + 39.0875, + -10.278333332999978 + ], + [ + 39.03416666600003, + -10.259166665999885 + ], + [ + 39.08083333400015, + -10.090833332999978 + ], + [ + 39.17750000000018, + -10.002499999999884 + ], + [ + 39.41083333299997, + -10.118333332999953 + ], + [ + 39.29083333300008, + -10.19916666599994 + ], + [ + 39.18416666600018, + -10.211666666999918 + ], + [ + 39.0875, + -10.278333332999978 + ] + ], + [ + [ + 36.444166667000104, + -8.971666666999965 + ], + [ + 36.486666667000065, + -8.8475 + ], + [ + 36.571666667000045, + -8.683333333999883 + ], + [ + 36.62916666700005, + -8.644166666999922 + ], + [ + 36.694166666000115, + -8.670833332999905 + ], + [ + 36.62166666600007, + -8.77 + ], + [ + 36.62583333300012, + -8.96 + ], + [ + 36.549166667, + -9.0025 + ], + [ + 36.444166667000104, + -8.971666666999965 + ] + ], + [ + [ + 36.84166666600004, + -7.866666666999947 + ], + [ + 36.81, + -7.7875 + ], + [ + 36.85916666700018, + -7.691666666999936 + ], + [ + 36.920000000000186, + -7.749999999999886 + ], + [ + 36.9175, + -7.819166666999877 + ], + [ + 36.84166666600004, + -7.866666666999947 + ] + ], + [ + [ + 37.061214577000044, + -7.390333673999919 + ], + [ + 37.000721909000106, + -7.187222331999919 + ], + [ + 37.06150407700005, + -7.104079157999934 + ], + [ + 37.05402799600006, + -7.006635236999898 + ], + [ + 37.20868480300004, + -6.921744388999969 + ], + [ + 37.20624059800019, + -6.850698934999969 + ], + [ + 37.310737490000065, + -6.853953568999884 + ], + [ + 37.34900081800015, + -6.773432491999927 + ], + [ + 37.351544629000045, + -6.624633606999907 + ], + [ + 37.490823166000155, + -6.461157799999967 + ], + [ + 37.52154116300011, + -6.394722761999958 + ], + [ + 37.668611892000115, + -6.253522571999895 + ], + [ + 37.69729813200007, + -6.284309744999973 + ], + [ + 37.60688993600007, + -6.457710138999971 + ], + [ + 37.494793566000055, + -6.507303882999906 + ], + [ + 37.44271020400009, + -6.599985599999968 + ], + [ + 37.452287987000034, + -6.749011570999926 + ], + [ + 37.418528974000026, + -6.893796564999946 + ], + [ + 37.43639674800016, + -6.966874278999967 + ], + [ + 37.35808220100006, + -7.002880260999973 + ], + [ + 37.25010511400012, + -7.228669943999876 + ], + [ + 37.15218593100013, + -7.138642780999874 + ], + [ + 37.10624080600007, + -7.230306849999977 + ], + [ + 37.10267843500014, + -7.35592372799988 + ], + [ + 37.061214577000044, + -7.390333673999919 + ] + ], + [ + [ + 36.864166666000074, + -6.651666666999972 + ], + [ + 36.86500000000012, + -6.54 + ], + [ + 36.77666666700014, + -6.4225 + ], + [ + 36.91083333300014, + -6.331666666999979 + ], + [ + 36.9525, + -6.256666666999877 + ], + [ + 37.03916666700013, + -6.39333333299993 + ], + [ + 37.03333333400019, + -6.508333332999882 + ], + [ + 36.9275, + -6.528333332999921 + ], + [ + 36.864166666000074, + -6.651666666999972 + ] + ], + [ + [ + 37.70333333300016, + -6.824166665999883 + ], + [ + 37.79583333400012, + -6.835833332999925 + ], + [ + 37.814166666000176, + -6.929166666999947 + ], + [ + 37.75, + -7.008333333999872 + ], + [ + 37.73833333300007, + -7.191666666999936 + ], + [ + 37.7025, + -7.2525 + ], + [ + 37.624166667, + -7.278333332999978 + ], + [ + 37.55083333300007, + -7.203333332999875 + ], + [ + 37.485833333000016, + -7.258333332999939 + ], + [ + 37.46333333299998, + -7.153333332999978 + ], + [ + 37.500833334000106, + -6.984166665999965 + ], + [ + 37.59, + -6.953333332999932 + ], + [ + 37.619166667, + -6.89249999999987 + ], + [ + 37.70333333300016, + -6.824166665999883 + ] + ], + [ + [ + 32.67166666600019, + -2.444166665999887 + ], + [ + 32.53833333300014, + -2.496666665999953 + ], + [ + 32.375000000000114, + -2.41 + ], + [ + 32.317500000000166, + -2.3325 + ], + [ + 32.315, + -2.271666665999931 + ], + [ + 32.22916666600008, + -2.275 + ], + [ + 32.159166667000136, + -2.389999999999873 + ], + [ + 32.066666667000106, + -2.4275 + ], + [ + 32.17166666700018, + -2.508333332999882 + ], + [ + 32.1325, + -2.551666666999893 + ], + [ + 32.038333333000026, + -2.489999999999895 + ], + [ + 31.940833334000104, + -2.584166665999931 + ], + [ + 32.00666666700005, + -2.679999999999893 + ], + [ + 31.9725, + -2.709166665999817 + ], + [ + 31.839166666999972, + -2.675833332999957 + ], + [ + 31.8475, + -2.785833332999971 + ], + [ + 31.784166667000136, + -2.824166666999815 + ], + [ + 31.783333333000087, + -2.64333333299993 + ], + [ + 31.745000000000175, + -2.5525 + ], + [ + 31.79666666700018, + -2.478333332999966 + ], + [ + 31.754166667, + -2.401666666999915 + ], + [ + 31.629166667000106, + -2.335833333999858 + ], + [ + 31.694166666000058, + -2.13583333299988 + ], + [ + 31.698333333000107, + -2.035833333999847 + ], + [ + 31.62750000000017, + -2.036666666999963 + ], + [ + 31.625833334000106, + -1.953333332999932 + ], + [ + 31.68666666600018, + -1.889999999999873 + ], + [ + 31.72583333300014, + -1.6475 + ], + [ + 31.763333333000162, + -1.615833332999955 + ], + [ + 31.74666666600001, + -1.465 + ], + [ + 31.8, + -1.47 + ], + [ + 31.820000000000164, + -1.327499999999873 + ], + [ + 31.865, + -1.255833332999885 + ], + [ + 31.85833333400018, + -1.129166665999946 + ], + [ + 31.87583333400005, + -1.036666666999963 + ], + [ + 31.764166667000154, + -1.0225 + ], + [ + 31.773333333000096, + -0.868333333999885 + ], + [ + 31.698333333000107, + -0.828333332999819 + ], + [ + 31.73000000000019, + -0.73 + ], + [ + 31.801666666000074, + -0.648333332999869 + ], + [ + 31.79, + -0.574166666999929 + ], + [ + 31.843333333000146, + -0.4875 + ], + [ + 31.92083333300002, + -0.424999999999841 + ], + [ + 31.989166666000074, + -0.317499999999825 + ], + [ + 31.98666666600019, + -0.185833333999881 + ], + [ + 31.92916666600007, + -0.155833332999975 + ], + [ + 31.990833334000172, + -0.080833332999873 + ], + [ + 32.08583333300004, + -0.021666666999863 + ], + [ + 32.1575, + -0.069166666999934 + ], + [ + 32.29416666600008, + -0.013333333999924 + ], + [ + 32.299166666000076, + 0.014166666000165 + ], + [ + 32.45333333300016, + 0.0275 + ], + [ + 32.57083333300011, + 0.101666666000085 + ], + [ + 32.572500000000105, + 0.200000000000102 + ], + [ + 32.683333334000054, + 0.21 + ], + [ + 32.74500000000012, + 0.180833334 + ], + [ + 32.6675, + 0.098333333000028 + ], + [ + 32.86083333300019, + 0.15083333299998 + ], + [ + 32.943333333000055, + 0.079166667000095 + ], + [ + 33.03333333300003, + 0.125000000000114 + ], + [ + 33.131666667000104, + 0.215833333000035 + ], + [ + 33.1475, + 0.30583333300018 + ], + [ + 33.2725, + 0.375833333000173 + ], + [ + 33.25333333400016, + 0.465833333000148 + ], + [ + 33.35833333300013, + 0.42000000000013 + ], + [ + 33.434166666000124, + 0.223333333000085 + ], + [ + 33.52083333300004, + 0.174166667000065 + ], + [ + 33.626666667000165, + 0.23250000000013 + ], + [ + 33.615, + 0.323333333000051 + ], + [ + 33.7116666660001, + 0.3275000000001 + ], + [ + 33.71833333300003, + 0.185833333000119 + ], + [ + 33.785, + 0.198333333000164 + ], + [ + 33.9, + 0.1775 + ], + [ + 33.93166666700017, + 0.233333334000179 + ], + [ + 34.01, + 0.235 + ], + [ + 33.98750000000018, + 0.1125 + ], + [ + 34.00916666600017, + -0.017499999999814 + ], + [ + 34.079166667000095, + -0.062499999999886 + ], + [ + 34.095, + -0.143333332999816 + ], + [ + 34.14583333400009, + -0.204166666999868 + ], + [ + 34.2675, + -0.265 + ], + [ + 34.26333333300016, + -0.328333333999922 + ], + [ + 34.315, + -0.365833332999898 + ], + [ + 34.3875000000001, + -0.304166665999901 + ], + [ + 34.385833333000164, + -0.234166665999965 + ], + [ + 34.4583333330001, + -0.159166665999976 + ], + [ + 34.51083333300005, + -0.1875 + ], + [ + 34.67750000000018, + -0.0925 + ], + [ + 34.73833333400006, + -0.115 + ], + [ + 34.81916666600006, + -0.26 + ], + [ + 34.755, + -0.285833333999904 + ], + [ + 34.74000000000012, + -0.35 + ], + [ + 34.46250000000015, + -0.345833333999963 + ], + [ + 34.44916666600005, + -0.408333332999973 + ], + [ + 34.50500000000011, + -0.485833332999903 + ], + [ + 34.42333333400006, + -0.533333332999973 + ], + [ + 34.36833333300012, + -0.478333333999899 + ], + [ + 34.293333333000135, + -0.47 + ], + [ + 34.227500000000134, + -0.424166666999895 + ], + [ + 34.162500000000136, + -0.48 + ], + [ + 34.16333333400013, + -0.531666665999921 + ], + [ + 34.0925, + -0.564166665999949 + ], + [ + 34.05250000000018, + -0.703333332999932 + ], + [ + 34.08416666700009, + -0.776666666999972 + ], + [ + 34.18833333300017, + -0.850833332999855 + ], + [ + 34.12666666700011, + -0.9725 + ], + [ + 33.98333333300013, + -1.16583333299991 + ], + [ + 33.873333333, + -1.236666666999952 + ], + [ + 33.9, + -1.289166666999904 + ], + [ + 33.79833333300019, + -1.34583333299986 + ], + [ + 33.865833333000126, + -1.412499999999852 + ], + [ + 33.89833333300015, + -1.525 + ], + [ + 33.810833334000165, + -1.488333332999957 + ], + [ + 33.7375, + -1.490833333999944 + ], + [ + 33.695, + -1.598333332999971 + ], + [ + 33.703333333000046, + -1.675833332999957 + ], + [ + 33.54, + -1.68333333299995 + ], + [ + 33.568333333, + -1.760833332999937 + ], + [ + 33.503333334000104, + -1.835833333999972 + ], + [ + 33.37666666600012, + -1.791666666999902 + ], + [ + 33.32166666699999, + -1.844166666999968 + ], + [ + 33.318333333000055, + -1.943333332999885 + ], + [ + 33.4533333330001, + -1.874166665999894 + ], + [ + 33.575833333000105, + -1.985 + ], + [ + 33.490833333000126, + -2.02 + ], + [ + 33.420000000000186, + -1.963333332999923 + ], + [ + 33.35333333400007, + -2.012499999999875 + ], + [ + 33.235, + -2.045833332999905 + ], + [ + 33.354166667000186, + -2.163333332999969 + ], + [ + 33.46666666700003, + -2.146666666999977 + ], + [ + 33.60666666600014, + -2.184166666999886 + ], + [ + 33.753333333000114, + -2.07 + ], + [ + 33.81916666700016, + -2.118333332999896 + ], + [ + 33.84083333400008, + -2.229166666999959 + ], + [ + 33.53583333300003, + -2.37 + ], + [ + 33.42833333300018, + -2.4775 + ], + [ + 33.44583333300005, + -2.535 + ], + [ + 33.205833333000044, + -2.520833333999974 + ], + [ + 33.141666667000095, + -2.4675 + ], + [ + 33.10166666700019, + -2.382499999999879 + ], + [ + 32.98750000000018, + -2.385833332999937 + ], + [ + 32.87333333300006, + -2.465 + ], + [ + 32.89500000000015, + -2.5325 + ], + [ + 32.85833333400018, + -2.636666666999872 + ], + [ + 32.96583333300009, + -2.824166666999815 + ], + [ + 32.84666666700002, + -2.845833332999916 + ], + [ + 32.8125, + -2.959166665999931 + ], + [ + 32.75666666600017, + -2.968333333999965 + ], + [ + 32.76083333300005, + -2.8475 + ], + [ + 32.823333333000164, + -2.843333332999919 + ], + [ + 32.86333333300007, + -2.779999999999859 + ], + [ + 32.820000000000164, + -2.7175 + ], + [ + 32.83, + -2.5125 + ], + [ + 32.743333334000056, + -2.530833332999919 + ], + [ + 32.67166666600019, + -2.444166665999887 + ] + ], + [ + [ + 33.477500000000134, + -4.688333332999946 + ], + [ + 33.55166666700018, + -4.7725 + ], + [ + 33.48583333300013, + -4.841666665999981 + ], + [ + 33.47833333300008, + -4.944166665999944 + ], + [ + 33.391666666000106, + -4.915 + ], + [ + 33.4125, + -4.764166666999927 + ], + [ + 33.477500000000134, + -4.688333332999946 + ] + ], + [ + [ + 34.3308333330001, + -4.16 + ], + [ + 34.270833334000145, + -4.1825 + ], + [ + 34.24833333400011, + -4.32416666599994 + ], + [ + 34.16333333300008, + -4.364999999999895 + ], + [ + 34.20583333400015, + -4.428333333999944 + ], + [ + 34.191666667000106, + -4.515833332999932 + ], + [ + 34.09833333300003, + -4.609166665999908 + ], + [ + 34.09, + -4.873333332999891 + ], + [ + 34.0325, + -4.930833332999953 + ], + [ + 34.01833333400015, + -5.075833333999981 + ], + [ + 33.93166666700017, + -5.085 + ], + [ + 33.955000000000155, + -4.986666666999952 + ], + [ + 33.89666666600016, + -4.93333333399994 + ], + [ + 33.852500000000134, + -4.841666665999981 + ], + [ + 33.891666667000095, + -4.742499999999893 + ], + [ + 33.8925, + -4.64666666699992 + ], + [ + 33.9483333340001, + -4.550833332999957 + ], + [ + 33.96333333300015, + -4.461666666999974 + ], + [ + 34.004166667000106, + -4.4225 + ], + [ + 33.98833333300013, + -4.285 + ], + [ + 33.954166666000106, + -4.19416666699982 + ], + [ + 34.02333333300004, + -4.096666666999965 + ], + [ + 34.176666666000074, + -4.054166666999947 + ], + [ + 34.21916666700014, + -3.985833333999835 + ], + [ + 34.3391666660001, + -3.868333332999839 + ], + [ + 34.449166667000156, + -3.880833332999885 + ], + [ + 34.53250000000014, + -3.82666666699987 + ], + [ + 34.756666666000115, + -3.64249999999987 + ], + [ + 34.93500000000017, + -3.58833333299998 + ], + [ + 35.04500000000013, + -3.515833332999932 + ], + [ + 35.08, + -3.524166666999974 + ], + [ + 35.185000000000116, + -3.447499999999877 + ], + [ + 35.288333334000185, + -3.330833333999919 + ], + [ + 35.340000000000146, + -3.413333332999912 + ], + [ + 35.33166666700009, + -3.489999999999895 + ], + [ + 35.368333333000066, + -3.550833332999957 + ], + [ + 35.29583333300019, + -3.663333332999969 + ], + [ + 35.1725, + -3.7125 + ], + [ + 35.02416666700003, + -3.748333332999948 + ], + [ + 34.78, + -3.850833332999969 + ], + [ + 34.753333333000114, + -3.924166666999895 + ], + [ + 34.6425, + -3.931666665999899 + ], + [ + 34.5891666660001, + -4.011666665999883 + ], + [ + 34.501666666000176, + -3.986666666999952 + ], + [ + 34.3841666670001, + -4.085833332999869 + ], + [ + 34.3308333330001, + -4.16 + ] + ], + [ + [ + 32.53666666700008, + 1.595 + ], + [ + 32.526766581000174, + 1.661666667000077 + ], + [ + 32.75416666700016, + 1.814166667000165 + ], + [ + 32.78916666600003, + 1.77666666600004 + ], + [ + 32.631666667, + 1.635833333000107 + ], + [ + 32.53666666700008, + 1.595 + ] + ], + [ + [ + 30.175, + -1.8775 + ], + [ + 30.263333333000105, + -1.856666666999956 + ], + [ + 30.28, + -1.86 + ], + [ + 30.26, + -1.91083333399996 + ], + [ + 30.175, + -1.8775 + ] + ], + [ + [ + 36.349166667000134, + -7.130833333999874 + ], + [ + 36.4575, + -7.146666666999977 + ], + [ + 36.41250000000019, + -7.248333333999938 + ], + [ + 36.349166667000134, + -7.130833333999874 + ] + ], + [ + [ + 36.101666667000075, + -6.383333332999939 + ], + [ + 36.03107254500014, + -6.463751777999903 + ], + [ + 35.949700362000044, + -6.480493560999946 + ], + [ + 35.90168512400004, + -6.637344806999977 + ], + [ + 35.80647690800009, + -6.62467269699988 + ], + [ + 35.757864753000035, + -6.561828763999813 + ], + [ + 35.61332671800011, + -6.565759533999881 + ], + [ + 35.56457535900006, + -6.529771797999956 + ], + [ + 35.56485353800008, + -6.417887253999879 + ], + [ + 35.50269358300011, + -6.376738145999923 + ], + [ + 35.57265268800006, + -6.300895320999928 + ], + [ + 35.612129129000095, + -6.389360340999872 + ], + [ + 35.70903087300019, + -6.401406697999903 + ], + [ + 35.75148923799998, + -6.45953754899989 + ], + [ + 35.84881944900013, + -6.444105401999877 + ], + [ + 35.88129493200012, + -6.364544930999955 + ], + [ + 36.05019498200005, + -6.36522418699991 + ], + [ + 36.101666667000075, + -6.383333332999939 + ] + ], + [ + [ + 35.8725, + -4.479166666999959 + ], + [ + 35.97768227500006, + -4.319710628999928 + ], + [ + 36.07486268600019, + -4.290203536999968 + ], + [ + 36.17047994700016, + -4.334631917999957 + ], + [ + 36.13013012500011, + -4.380771455999934 + ], + [ + 36.12262007200013, + -4.477584126999943 + ], + [ + 36.232506646000104, + -4.532044516999918 + ], + [ + 36.252460036000116, + -4.645936774999939 + ], + [ + 36.41300206600016, + -4.903731577999906 + ], + [ + 36.32503143800005, + -4.905299571999876 + ], + [ + 36.278170633000116, + -4.867283460999886 + ], + [ + 36.29116843600008, + -4.773773082999924 + ], + [ + 36.194825528000024, + -4.697264972999903 + ], + [ + 36.17914022500014, + -4.62166316399987 + ], + [ + 36.12635894400006, + -4.611142727999891 + ], + [ + 36.04199815300012, + -4.528537471999925 + ], + [ + 35.843590089000145, + -4.588674883999943 + ], + [ + 35.8725, + -4.479166666999959 + ] + ], + [ + [ + 35.53577869400016, + -4.547430032999898 + ], + [ + 35.44097502200009, + -4.573470527999973 + ], + [ + 35.41675654799997, + -4.53618662599996 + ], + [ + 35.479284495, + -4.463862221999932 + ], + [ + 35.53577869400016, + -4.547430032999898 + ] + ], + [ + [ + 35.687500000000114, + -1.394999999999868 + ], + [ + 35.7591666670001, + -1.541666666999959 + ], + [ + 35.79083333300008, + -1.5425 + ], + [ + 35.85583333400018, + -1.661666666999963 + ], + [ + 35.94583333300005, + -1.63 + ], + [ + 35.9425, + -1.719166666999968 + ], + [ + 36.00416666700005, + -1.789166666999904 + ], + [ + 35.96083333300004, + -1.9475 + ], + [ + 35.833333334000145, + -1.994166665999956 + ], + [ + 35.80333333400006, + -1.8975 + ], + [ + 35.843333334000135, + -1.833333333999974 + ], + [ + 35.6275, + -1.5525 + ], + [ + 35.63083333300011, + -1.44 + ], + [ + 35.687500000000114, + -1.394999999999868 + ] + ], + [ + [ + 35.7058333330001, + -2.013333332999878 + ], + [ + 35.651666667000086, + -2.136666666999929 + ], + [ + 35.51666666700004, + -2.0175 + ], + [ + 35.63083333300011, + -1.9075 + ], + [ + 35.725000000000136, + -1.941666666999936 + ], + [ + 35.7058333330001, + -2.013333332999878 + ] + ], + [ + [ + 37.6325, + -3.665833332999966 + ], + [ + 37.6175, + -3.611666665999849 + ], + [ + 37.6825, + -3.572499999999877 + ], + [ + 37.71083333300004, + -3.6625 + ], + [ + 37.7016666670001, + -3.74 + ], + [ + 37.638333333000105, + -3.758333332999939 + ], + [ + 37.6325, + -3.665833332999966 + ] + ], + [ + [ + 36.907314650000046, + -4.523019679999891 + ], + [ + 36.89546371300014, + -4.614874287999839 + ], + [ + 36.840667357000086, + -4.783963780999954 + ], + [ + 36.84300560500009, + -4.87593228999998 + ], + [ + 36.8144120020001, + -4.996061306999934 + ], + [ + 36.74889117300006, + -4.925147209999921 + ], + [ + 36.79531582600015, + -4.73365562399988 + ], + [ + 36.80867342099998, + -4.56597705299987 + ], + [ + 36.907314650000046, + -4.523019679999891 + ] + ], + [ + [ + 37.11148896200018, + -4.777235673999883 + ], + [ + 37.145498420000024, + -4.716639019999946 + ], + [ + 37.214431836000074, + -4.751662533999934 + ], + [ + 37.350269836000166, + -4.745950580999931 + ], + [ + 37.372944279000194, + -4.857153319999895 + ], + [ + 37.45370745800017, + -4.917517053999916 + ], + [ + 37.590577263000114, + -5.060328721999895 + ], + [ + 37.31758709300004, + -4.899474245999897 + ], + [ + 37.2462459570001, + -4.88779326599996 + ], + [ + 37.19873929400018, + -4.92556622099994 + ], + [ + 37.12446863600013, + -4.836449008999921 + ], + [ + 37.11148896200018, + -4.777235673999883 + ] + ], + [ + [ + 37.86256759000008, + -4.796186062999936 + ], + [ + 37.89421183000019, + -4.838693166999974 + ], + [ + 37.90356831500014, + -4.970488656999919 + ], + [ + 37.79978290200006, + -5.020385896999926 + ], + [ + 37.719629669000085, + -4.953636177999897 + ], + [ + 37.86256759000008, + -4.796186062999936 + ] + ], + [ + [ + 37.74140463000009, + -5.150053530999912 + ], + [ + 37.79363303900004, + -5.077401478999946 + ], + [ + 37.84136577300012, + -5.156968518999975 + ], + [ + 37.77936887300007, + -5.235120734999953 + ], + [ + 37.74140463000009, + -5.150053530999912 + ] + ], + [ + [ + 35.325833333000105, + -6.118333333999942 + ], + [ + 35.31583333400005, + -6.230833332999907 + ], + [ + 35.199166667000156, + -6.234166666999954 + ], + [ + 35.07083333300017, + -6.150833332999923 + ], + [ + 35.019166667000036, + -6.059166666999829 + ], + [ + 35.09583333400019, + -5.989166666999893 + ], + [ + 35.14, + -6.038333333999958 + ], + [ + 35.31, + -6.041666665999969 + ], + [ + 35.325833333000105, + -6.118333333999942 + ] + ], + [ + [ + 35.48731990200008, + -7.248120472999915 + ], + [ + 35.49171669800006, + -7.314008758999933 + ], + [ + 35.374239901000124, + -7.335471083999892 + ], + [ + 35.36256244600003, + -7.277531831999909 + ], + [ + 35.48731990200008, + -7.248120472999915 + ] + ], + [ + [ + 34.3275000000001, + -8.6925 + ], + [ + 34.21416666700014, + -8.724166666999906 + ], + [ + 34.18333333300018, + -8.614166665999903 + ], + [ + 34.11333333400006, + -8.7125 + ], + [ + 34.0425, + -8.610833333999892 + ], + [ + 34.1325, + -8.55833333399994 + ], + [ + 34.060000000000116, + -8.442499999999882 + ], + [ + 34.054166667000175, + -8.286666666999963 + ], + [ + 34.227500000000134, + -8.283333332999916 + ], + [ + 34.310833333000176, + -8.22166666599992 + ], + [ + 34.39166666699998, + -8.276666666999972 + ], + [ + 34.464166667000086, + -8.246666666999943 + ], + [ + 34.494166666000126, + -8.170833332999962 + ], + [ + 34.63583333400004, + -8.161666666999963 + ], + [ + 34.80333333400006, + -8.194166666999934 + ], + [ + 34.65583333300009, + -8.304166666999947 + ], + [ + 34.49500000000012, + -8.368333332999896 + ], + [ + 34.365, + -8.460833332999869 + ], + [ + 34.375, + -8.5475 + ], + [ + 34.237500000000125, + -8.564166666999938 + ], + [ + 34.24833333400011, + -8.643333332999816 + ], + [ + 34.3275000000001, + -8.6925 + ] + ], + [ + [ + 36.91886848399997, + -15.178785917999903 + ], + [ + 37.051521489000095, + -15.122067422999976 + ], + [ + 37.20771758400019, + -15.133223735999934 + ], + [ + 37.25513451400002, + -15.20016144699997 + ], + [ + 37.257926525000016, + -15.286621952999951 + ], + [ + 37.377860496000096, + -15.328457204999893 + ], + [ + 37.37304660100011, + -15.436593142999868 + ], + [ + 37.31869850900017, + -15.477292647999832 + ], + [ + 37.171596611000155, + -15.457970013999955 + ], + [ + 37.05774656099999, + -15.492432711999925 + ], + [ + 36.93484858200003, + -15.437929050999912 + ], + [ + 36.840557535000016, + -15.34387504499989 + ], + [ + 36.89715147500016, + -15.29300560999991 + ], + [ + 36.91886848399997, + -15.178785917999903 + ] + ], + [ + [ + 33.93250000000012, + 4.059166667000056 + ], + [ + 33.87083333300012, + 4.101666667000075 + ], + [ + 33.80120129500017, + 4.037500000000136 + ], + [ + 33.654220459000044, + 4.093133315000102 + ], + [ + 33.54571554800009, + 4.110452003000091 + ], + [ + 33.47370158900014, + 4.161245163000046 + ], + [ + 33.433261588000164, + 4.230096127000024 + ], + [ + 33.372009490000096, + 4.227317191000111 + ], + [ + 33.26842861200015, + 4.329694595000149 + ], + [ + 33.3239865490001, + 4.37025881500017 + ], + [ + 33.44299649800007, + 4.35898767000009 + ], + [ + 33.33147460599997, + 4.471155137000039 + ], + [ + 33.33537655000009, + 4.546047777000069 + ], + [ + 33.46289061000016, + 4.561889406000091 + ], + [ + 33.634868488000166, + 4.435569767000175 + ], + [ + 33.75546245000015, + 4.497187316 + ], + [ + 33.82916653600006, + 4.418339088000153 + ], + [ + 33.897785489000114, + 4.241517141000145 + ], + [ + 34.00333333300006, + 4.220833333000087 + ], + [ + 34.065, + 4.146666667000147 + ], + [ + 34.03166666700014, + 4.086666667000088 + ], + [ + 34.03833333400007, + 3.995833333000121 + ], + [ + 33.99250000000018, + 3.940833333000057 + ], + [ + 33.93250000000012, + 4.059166667000056 + ] + ], + [ + [ + 36.1958333340001, + 5.1525 + ], + [ + 36.11666666600013, + 5.130833333000112 + ], + [ + 36.090000000000146, + 5.03 + ], + [ + 36.13, + 4.955833333000157 + ], + [ + 36.11416666700018, + 4.83500000000015 + ], + [ + 36.07416666600017, + 4.743333333000066 + ], + [ + 36.14583333400003, + 4.706666667000093 + ], + [ + 36.20416666700015, + 4.595833333000144 + ], + [ + 36.22416666700008, + 4.507500000000107 + ], + [ + 36.21, + 4.325000000000102 + ], + [ + 36.2650000000001, + 4.155000000000143 + ], + [ + 36.20166666600011, + 3.940000000000111 + ], + [ + 36.25083333300006, + 3.868333333000123 + ], + [ + 36.29, + 3.75416666700005 + ], + [ + 36.22833333300002, + 3.6075 + ], + [ + 36.264166667000154, + 3.352500000000134 + ], + [ + 36.315833333000114, + 3.190000000000111 + ], + [ + 36.394166667000036, + 3.127500000000168 + ], + [ + 36.41250000000019, + 3.028333334000024 + ], + [ + 36.545833333000076, + 2.888333333000105 + ], + [ + 36.68666666700017, + 2.8900000000001 + ], + [ + 36.71916666699997, + 2.84 + ], + [ + 36.7075, + 2.465833333000091 + ], + [ + 36.641666667000095, + 2.394166667000036 + ], + [ + 36.55333333300018, + 2.39333333400009 + ], + [ + 36.517500000000155, + 2.550833334000174 + ], + [ + 36.43833333400016, + 2.649166667000145 + ], + [ + 36.44250000000011, + 2.701666666000051 + ], + [ + 36.3925, + 2.8325 + ], + [ + 36.275, + 2.901666667000029 + ], + [ + 36.260000000000105, + 2.96 + ], + [ + 36.150833334000026, + 2.96 + ], + [ + 36.14916666700009, + 3.166666666000026 + ], + [ + 36.023333334000085, + 3.292500000000132 + ], + [ + 35.945000000000164, + 3.335833333000039 + ], + [ + 35.9466666670001, + 3.458333334000088 + ], + [ + 35.906666667000025, + 3.543333334000067 + ], + [ + 35.83416666700009, + 3.615833333000126 + ], + [ + 35.864166667, + 3.879166667000163 + ], + [ + 35.85833333400012, + 3.975833334000072 + ], + [ + 35.9325, + 4.13 + ], + [ + 35.91833333300008, + 4.309166666000124 + ], + [ + 35.9425, + 4.513333333000048 + ], + [ + 35.99, + 4.7025 + ], + [ + 35.99, + 4.838333334000083 + ], + [ + 36.05, + 4.937500000000171 + ], + [ + 36.01416666600011, + 5.03 + ], + [ + 36.03000000000014, + 5.153333333000148 + ], + [ + 36.06083333400005, + 5.190833333000171 + ], + [ + 36.1958333340001, + 5.1525 + ] + ], + [ + [ + 34.16583333300014, + 3.851666667000131 + ], + [ + 34.11166666600019, + 3.785833333000085 + ], + [ + 34.24250000000012, + 3.721666667000079 + ], + [ + 34.1975, + 3.7275 + ], + [ + 34.11500000000012, + 3.666666667000186 + ], + [ + 33.96333333300015, + 3.682500000000118 + ], + [ + 33.94916666600017, + 3.775000000000148 + ], + [ + 33.831666667000036, + 3.7875 + ], + [ + 33.834166666000044, + 3.830833334000033 + ], + [ + 33.966666667000084, + 3.822500000000105 + ], + [ + 34.07250000000016, + 3.846666667000136 + ], + [ + 34.11500000000012, + 3.856666667000127 + ], + [ + 34.16083333300014, + 3.850833333000082 + ], + [ + 34.16416666599997, + 3.850833333000082 + ], + [ + 34.16583333300014, + 3.851666667000131 + ] + ], + [ + [ + 34.28166666600015, + 3.61500000000018 + ], + [ + 34.25083333400005, + 3.724166666000031 + ], + [ + 34.29, + 3.682500000000118 + ], + [ + 34.361666667000065, + 3.690000000000168 + ], + [ + 34.40583333300009, + 3.6325 + ], + [ + 34.36750000000018, + 3.511666667000043 + ], + [ + 34.26500000000016, + 3.556666667000115 + ], + [ + 34.279166666000094, + 3.556666666000183 + ], + [ + 34.325, + 3.585 + ], + [ + 34.31416666700011, + 3.6125 + ], + [ + 34.312500000000114, + 3.614166666000131 + ], + [ + 34.290833334000126, + 3.616666666000015 + ], + [ + 34.28166666600015, + 3.61500000000018 + ] + ], + [ + [ + 34.81333333300012, + 1.879166667000163 + ], + [ + 34.85500000000019, + 1.7875 + ], + [ + 34.81166666700011, + 1.730833333000078 + ], + [ + 34.71416666700003, + 1.683333334000167 + ], + [ + 34.626666667000165, + 1.703333334000092 + ], + [ + 34.64166666700015, + 1.843333333000032 + ], + [ + 34.7325, + 1.80916666700017 + ], + [ + 34.81333333300012, + 1.879166667000163 + ] + ], + [ + [ + 38.63666666700004, + 10.340833333000035 + ], + [ + 38.73666666700018, + 10.316666667000163 + ], + [ + 38.794166666000024, + 10.2575 + ], + [ + 38.74000000000018, + 10.149166665999985 + ], + [ + 38.61333333400006, + 10.145833333000155 + ], + [ + 38.52916666700003, + 10.076666666999984 + ], + [ + 38.44166666700016, + 10.110833333000073 + ], + [ + 38.493333333000066, + 10.248333333000176 + ], + [ + 38.50750000000011, + 10.340833334000138 + ], + [ + 38.63666666700004, + 10.340833333000035 + ] + ], + [ + [ + 35.68916666700011, + 10.39416666600016 + ], + [ + 35.64333333300016, + 10.440833333000171 + ], + [ + 35.6, + 10.634166667000045 + ], + [ + 35.612500000000125, + 10.720833334000133 + ], + [ + 35.72666666599997, + 10.74583333400011 + ], + [ + 35.76333333400015, + 10.640000000000157 + ], + [ + 35.8241666670001, + 10.556666666000012 + ], + [ + 35.82, + 10.451666666000108 + ], + [ + 35.7641666670001, + 10.4491666670001 + ], + [ + 35.690833333000114, + 10.52 + ], + [ + 35.68916666700011, + 10.39416666600016 + ] + ], + [ + [ + 36.128333334, + 11.369166667000115 + ], + [ + 36.13333333300011, + 11.445833334000042 + ], + [ + 36.19000000000011, + 11.511666667000043 + ], + [ + 36.21583333300015, + 11.363333333000071 + ], + [ + 36.128333334, + 11.369166667000115 + ] + ], + [ + [ + 36.764166666000165, + 7.33 + ], + [ + 36.73, + 7.395 + ], + [ + 36.555833333000066, + 7.4425 + ], + [ + 36.52666666699997, + 7.5225 + ], + [ + 36.4675, + 7.575833333000105 + ], + [ + 36.35833333400018, + 7.546666667000011 + ], + [ + 36.26166666600017, + 7.560833334000051 + ], + [ + 36.220833334000076, + 7.620833333000178 + ], + [ + 36.1341666670001, + 7.5775000000001 + ], + [ + 36.05166666700006, + 7.623333333000062 + ], + [ + 35.90416666700014, + 7.589166667000029 + ], + [ + 35.86416666600013, + 7.469166667000138 + ], + [ + 35.9625, + 7.463333333000094 + ], + [ + 36.125, + 7.544166667000127 + ], + [ + 36.150833334000026, + 7.515833334000149 + ], + [ + 36.0925, + 7.423333333000187 + ], + [ + 36.03083333300003, + 7.390833332999989 + ], + [ + 36.0225, + 7.331666666999979 + ], + [ + 35.9625, + 7.294166667000184 + ], + [ + 35.99, + 7.231666666000137 + ], + [ + 35.888333333000105, + 7.215000000000146 + ], + [ + 35.851666666000085, + 7.1400000000001 + ], + [ + 35.738333334, + 7.085 + ], + [ + 35.84916666700008, + 7.038333333000026 + ], + [ + 35.84833333300003, + 6.900833333999969 + ], + [ + 35.97166666700002, + 6.760000000000105 + ], + [ + 35.902500000000146, + 6.730833333000135 + ], + [ + 35.86166666700012, + 6.794166666000024 + ], + [ + 35.80500000000012, + 6.711666667000031 + ], + [ + 35.744166667000115, + 6.859166667000125 + ], + [ + 35.687500000000114, + 6.9125 + ], + [ + 35.6366666670001, + 6.854166667000129 + ], + [ + 35.5150000000001, + 6.915833333000023 + ], + [ + 35.446666667000045, + 6.875 + ], + [ + 35.17666666600002, + 6.784166667000136 + ], + [ + 35.100000000000136, + 6.889166666000165 + ], + [ + 34.938333334000106, + 6.965833333000091 + ], + [ + 34.90750000000014, + 7.017500000000155 + ], + [ + 34.81083333300006, + 7.010833334000097 + ], + [ + 34.590833333000035, + 7.040833334000183 + ], + [ + 34.415000000000134, + 7.16166666700002 + ], + [ + 34.386666666999986, + 7.308333334 + ], + [ + 34.411666667000134, + 7.4375 + ], + [ + 34.5025, + 7.394166666000046 + ], + [ + 34.62166666700017, + 7.448333333000164 + ], + [ + 34.5575, + 7.545833333000189 + ], + [ + 34.445833333, + 7.500000000000171 + ], + [ + 34.365833334000115, + 7.564166667000052 + ], + [ + 34.36750000000018, + 7.644166667000093 + ], + [ + 34.43916666600006, + 7.645 + ], + [ + 34.61916666600018, + 7.792500000000132 + ], + [ + 34.68416666700011, + 7.880833333000112 + ], + [ + 34.545833334000065, + 7.998333334 + ], + [ + 34.56916666700005, + 8.04 + ], + [ + 34.51166666600017, + 8.1075 + ], + [ + 34.530833332999975, + 8.1925 + ], + [ + 34.598333333000085, + 8.19166666600006 + ], + [ + 34.65916666700019, + 8.11833333300018 + ], + [ + 34.73083333300008, + 8.134166667000159 + ], + [ + 34.80916666700017, + 8.191666667000106 + ], + [ + 34.91416666700013, + 8.210833334000142 + ], + [ + 34.926666666000074, + 8.25 + ], + [ + 34.85666666600008, + 8.429166666000128 + ], + [ + 34.90416666700014, + 8.562500000000114 + ], + [ + 34.974166667000134, + 8.569166667000047 + ], + [ + 34.90083333300004, + 8.759166667000159 + ], + [ + 35.0125000000001, + 8.91 + ], + [ + 35.0875, + 8.870000000000175 + ], + [ + 35.1825, + 8.858333333000076 + ], + [ + 35.2650000000001, + 8.905 + ], + [ + 35.385833333000164, + 8.7825 + ], + [ + 35.425000000000125, + 8.931666667000172 + ], + [ + 35.49500000000012, + 8.988333334 + ], + [ + 35.4625, + 9.11166666600019 + ], + [ + 35.53166666600009, + 9.135000000000105 + ], + [ + 35.537500000000136, + 9.278333333000148 + ], + [ + 35.5150000000001, + 9.386666666999986 + ], + [ + 35.46416666600015, + 9.448333333000107 + ], + [ + 35.372500000000116, + 9.464166665999983 + ], + [ + 35.39416666600016, + 9.566666667000106 + ], + [ + 35.36750000000018, + 9.636666667000156 + ], + [ + 35.428333333000126, + 9.694166667000104 + ], + [ + 35.57333333400004, + 9.71666666700014 + ], + [ + 35.624166667000054, + 9.47 + ], + [ + 35.6525, + 9.4075 + ], + [ + 35.7225, + 9.360833333000016 + ], + [ + 35.746666667000056, + 9.286666667000077 + ], + [ + 35.870833333000064, + 9.20333333300016 + ], + [ + 35.91083333300014, + 9.078333333000046 + ], + [ + 35.84083333400008, + 8.956666667000093 + ], + [ + 35.82583333300016, + 8.8675 + ], + [ + 35.85916666700007, + 8.770833333000155 + ], + [ + 35.96166666700009, + 8.78333333300003 + ], + [ + 36.01000000000016, + 8.726666667000131 + ], + [ + 36.08583333400003, + 8.728333333000023 + ], + [ + 36.234166666000135, + 8.556666667000172 + ], + [ + 36.27083333300004, + 8.585833334000142 + ], + [ + 36.19083333300006, + 8.751666666000176 + ], + [ + 36.30833333400011, + 8.810833334000165 + ], + [ + 36.341666667000084, + 8.7683333330001 + ], + [ + 36.30083333300013, + 8.684166667000113 + ], + [ + 36.316666667000106, + 8.610833333000187 + ], + [ + 36.508333333999985, + 8.379166667000106 + ], + [ + 36.66333333300008, + 8.286666667000077 + ], + [ + 36.6475, + 8.199166667000043 + ], + [ + 36.528333333000035, + 8.089166667000086 + ], + [ + 36.43, + 8.0625 + ], + [ + 36.490833334000115, + 7.995 + ], + [ + 36.515, + 7.8875 + ], + [ + 36.60083333300014, + 7.810000000000173 + ], + [ + 36.71666666599998, + 7.810833333000119 + ], + [ + 36.839166667000086, + 7.862500000000125 + ], + [ + 36.79166666700007, + 7.942500000000109 + ], + [ + 36.871666667000056, + 8.145833333000041 + ], + [ + 36.9325, + 8.243333333000066 + ], + [ + 36.91500000000019, + 8.326666667000154 + ], + [ + 36.95666666600016, + 8.440833333000057 + ], + [ + 36.86000000000013, + 8.510000000000105 + ], + [ + 36.9125, + 8.547500000000127 + ], + [ + 36.976666666000085, + 8.4975 + ], + [ + 37.03833333300008, + 8.542500000000132 + ], + [ + 37.05, + 8.632500000000107 + ], + [ + 36.97250000000014, + 8.72 + ], + [ + 36.99250000000012, + 8.799166667000065 + ], + [ + 36.89916666700009, + 8.906666667000081 + ], + [ + 37.05333333300007, + 8.91 + ], + [ + 37.131666666000115, + 8.852500000000134 + ], + [ + 37.0925, + 8.786666667000134 + ], + [ + 37.105833334000124, + 8.683333334 + ], + [ + 37.05833333400017, + 8.520833333000041 + ], + [ + 37.05750000000012, + 8.461666667000031 + ], + [ + 36.97083333299997, + 8.309166667000113 + ], + [ + 36.87916666700016, + 8.089166667000086 + ], + [ + 36.8625, + 7.961666667000145 + ], + [ + 36.91666666600008, + 7.906666667000081 + ], + [ + 36.96833333400019, + 7.9625 + ], + [ + 36.99583333300012, + 8.08 + ], + [ + 37.06916666700005, + 8.075 + ], + [ + 37.02166666600016, + 8.1325 + ], + [ + 37.065833333000114, + 8.203333334000092 + ], + [ + 37.16583333300008, + 8.26416666700004 + ], + [ + 37.16583333300008, + 8.265833334000035 + ], + [ + 37.16583333400018, + 8.295 + ], + [ + 37.20583333300016, + 8.384166666000056 + ], + [ + 37.19166666600012, + 8.459166667000147 + ], + [ + 37.23500000000013, + 8.555833334000056 + ], + [ + 37.29416666700007, + 8.5275 + ], + [ + 37.31833333300017, + 8.322500000000105 + ], + [ + 37.29583333300013, + 8.249166667000054 + ], + [ + 37.352500000000134, + 8.129166667 + ], + [ + 37.3925, + 7.958333333000041 + ], + [ + 37.3325, + 7.870833333000121 + ], + [ + 37.26250000000016, + 7.900000000000148 + ], + [ + 37.194166667000104, + 7.782500000000141 + ], + [ + 37.09500000000014, + 7.723333334000131 + ], + [ + 37.090000000000146, + 7.8275 + ], + [ + 37.065, + 7.8375 + ], + [ + 36.91333333400013, + 7.682500000000175 + ], + [ + 36.875000000000114, + 7.66583333300008 + ], + [ + 36.828333333000046, + 7.706666667000036 + ], + [ + 36.71416666700003, + 7.603333333000137 + ], + [ + 36.73916666600002, + 7.567500000000109 + ], + [ + 36.870833333000064, + 7.586666667000088 + ], + [ + 36.92333333300019, + 7.533333333000144 + ], + [ + 37.05333333300007, + 7.544166667000127 + ], + [ + 37.09666666700008, + 7.622500000000173 + ], + [ + 37.28, + 7.65 + ], + [ + 37.3325, + 7.710833333000153 + ], + [ + 37.408333333000144, + 7.933333333000064 + ], + [ + 37.42833333400017, + 8.083333333000098 + ], + [ + 37.507500000000164, + 8.133333334000042 + ], + [ + 37.57250000000016, + 8.03 + ], + [ + 37.57750000000016, + 7.935833333000176 + ], + [ + 37.54083333400018, + 7.767500000000155 + ], + [ + 37.48166666700007, + 7.670833333000076 + ], + [ + 37.38083333300011, + 7.696666666000112 + ], + [ + 37.3958333330001, + 7.495000000000175 + ], + [ + 37.29083333400007, + 7.395 + ], + [ + 37.11583333300018, + 7.370000000000118 + ], + [ + 37.145, + 7.300000000000125 + ], + [ + 36.97833333400018, + 7.312500000000171 + ], + [ + 36.92416666600013, + 7.388333333000105 + ], + [ + 36.86583333300007, + 7.3275000000001 + ], + [ + 36.764166666000165, + 7.33 + ] + ], + [ + [ + 37.43416666600018, + 6.695833333000053 + ], + [ + 37.340833333000035, + 6.753333334000047 + ], + [ + 37.35666666600008, + 6.801666667000177 + ], + [ + 37.43916666700011, + 6.799166667000065 + ], + [ + 37.5525, + 6.867500000000121 + ], + [ + 37.5525, + 6.76916666700015 + ], + [ + 37.43416666600018, + 6.695833333000053 + ] + ], + [ + [ + 36.7175, + 7.138333333000162 + ], + [ + 36.83083333300016, + 7.155833333000032 + ], + [ + 36.9533333330001, + 7.100833333000139 + ], + [ + 36.975, + 7.155833333000032 + ], + [ + 37.08500000000015, + 7.143333334000033 + ], + [ + 37.0875, + 7.085833332999982 + ], + [ + 37.192500000000166, + 7.093333333999965 + ], + [ + 37.26083333300005, + 7.048333333000187 + ], + [ + 37.24166666700012, + 6.865833334000058 + ], + [ + 36.98, + 6.860833333000187 + ], + [ + 36.93083333400017, + 6.888333333000048 + ], + [ + 36.97666666700019, + 6.974166666000144 + ], + [ + 36.96833333300009, + 7.064166667000165 + ], + [ + 36.845, + 7.119166667000059 + ], + [ + 36.72750000000019, + 7.098333334000131 + ], + [ + 36.66333333300008, + 7.094166667000081 + ], + [ + 36.59250000000014, + 7.043333334000124 + ], + [ + 36.520833333000155, + 7.041666666000026 + ], + [ + 36.49000000000012, + 6.942500000000109 + ], + [ + 36.43166666700006, + 7.028333333000035 + ], + [ + 36.37083333300018, + 6.918333333000135 + ], + [ + 36.32916666700004, + 6.955833334000033 + ], + [ + 36.326666666, + 7.064166666000062 + ], + [ + 36.27666666700003, + 7.14666666700009 + ], + [ + 36.30000000000018, + 7.219166666000092 + ], + [ + 36.25166666700011, + 7.255 + ], + [ + 36.28583333299997, + 7.365833334000172 + ], + [ + 36.44250000000011, + 7.378333334000047 + ], + [ + 36.500833334000106, + 7.405833333000146 + ], + [ + 36.54333333300019, + 7.336666666999974 + ], + [ + 36.605833333000135, + 7.309166666000067 + ], + [ + 36.64666666700009, + 7.234166666000021 + ], + [ + 36.656666667000025, + 7.25 + ], + [ + 36.6575, + 7.250833334000049 + ], + [ + 36.72833333300014, + 7.219166666000092 + ], + [ + 36.69000000000017, + 7.129166666000117 + ], + [ + 36.7175, + 7.138333333000162 + ] + ], + [ + [ + 36.125, + 6.854166667000129 + ], + [ + 36.17333333300019, + 7.024166665999985 + ], + [ + 36.07666666600005, + 7.09 + ], + [ + 36.06666666700016, + 7.155833333000032 + ], + [ + 35.99333333400017, + 7.160833334000074 + ], + [ + 36.029166666000094, + 7.331666666999979 + ], + [ + 36.09083333300009, + 7.396666666000101 + ], + [ + 36.16833333300019, + 7.29083333300008 + ], + [ + 36.235833334, + 7.237500000000182 + ], + [ + 36.20250000000016, + 7.141666666000162 + ], + [ + 36.20583333400009, + 7.038333333000026 + ], + [ + 36.2375, + 6.9675 + ], + [ + 36.15666666700014, + 6.916666667000072 + ], + [ + 36.125, + 6.854166667000129 + ] + ], + [ + [ + 37.3958333330001, + 6.658333334000133 + ], + [ + 37.444166667000104, + 6.544166667000127 + ], + [ + 37.3375, + 6.579166667000038 + ], + [ + 37.3958333330001, + 6.658333334000133 + ] + ], + [ + [ + 37.62916666600012, + 6.571666667000159 + ], + [ + 37.684166667000056, + 6.516666667000095 + ], + [ + 37.715, + 6.273333334000142 + ], + [ + 37.63333333300017, + 6.225000000000136 + ], + [ + 37.59833333400013, + 6.148333334000085 + ], + [ + 37.48583333400012, + 6.112500000000125 + ], + [ + 37.479166667000186, + 6.04416666700007 + ], + [ + 37.3908333330001, + 5.978333334000126 + ], + [ + 37.37416666600018, + 5.895833333000098 + ], + [ + 37.28666666700019, + 5.872500000000116 + ], + [ + 37.287500000000136, + 5.796666667000181 + ], + [ + 37.3375, + 5.7675 + ], + [ + 37.38583333300011, + 5.648333333000096 + ], + [ + 37.3275, + 5.59 + ], + [ + 37.34583333300003, + 5.533333334000076 + ], + [ + 37.244166666000126, + 5.482500000000186 + ], + [ + 37.189166667000165, + 5.566666666000117 + ], + [ + 37.29583333300013, + 5.629166667000163 + ], + [ + 37.295000000000186, + 5.785 + ], + [ + 37.135, + 5.954166666 + ], + [ + 37.195, + 6.151666667000086 + ], + [ + 37.25833333300011, + 6.175 + ], + [ + 37.32000000000011, + 6.29083333300008 + ], + [ + 37.408333333000144, + 6.310000000000116 + ], + [ + 37.419166666000024, + 6.38333333300011 + ], + [ + 37.47416666600009, + 6.42583333400006 + ], + [ + 37.58583333300015, + 6.422500000000127 + ], + [ + 37.62916666600012, + 6.571666667000159 + ] + ], + [ + [ + 36.732500000000186, + 5.723333333000085 + ], + [ + 36.59250000000014, + 5.811666667000168 + ], + [ + 36.6175, + 5.8975 + ], + [ + 36.56833333300011, + 6.048333333000187 + ], + [ + 36.67416666600019, + 6.203333333000046 + ], + [ + 36.7025, + 6.28 + ], + [ + 36.836666667000145, + 6.365000000000123 + ], + [ + 36.94583333300005, + 6.50416666700005 + ], + [ + 36.96166666700003, + 6.40083333299998 + ], + [ + 36.80250000000018, + 6.241666667000061 + ], + [ + 36.78333333299997, + 6.167500000000189 + ], + [ + 36.8325, + 6.07333333400004 + ], + [ + 36.68666666700017, + 5.885 + ], + [ + 36.765, + 5.769166666999979 + ], + [ + 36.732500000000186, + 5.723333333000085 + ] + ], + [ + [ + 35.549166667000065, + 6.035833333000141 + ], + [ + 35.573333333000164, + 6.211666667000145 + ], + [ + 35.66083333300003, + 6.220833334000133 + ], + [ + 35.6333333340001, + 6.141666666 + ], + [ + 35.549166667000065, + 6.035833333000141 + ] + ], + [ + [ + 36.60000000000019, + 6.294166667000184 + ], + [ + 36.581666667000036, + 6.3875 + ], + [ + 36.630000000000166, + 6.456666667000093 + ], + [ + 36.6425, + 6.535 + ], + [ + 36.75666666700016, + 6.6525 + ], + [ + 36.80166666600013, + 6.528333333000148 + ], + [ + 36.744166667000115, + 6.491666666000071 + ], + [ + 36.688333334000106, + 6.3675 + ], + [ + 36.619166666000126, + 6.356666667000127 + ], + [ + 36.60000000000019, + 6.294166667000184 + ] + ], + [ + [ + 35.08583333400003, + 6.669166667000013 + ], + [ + 35.0225, + 6.698333333000107 + ], + [ + 34.961666665999985, + 6.808333333 + ], + [ + 34.9675, + 6.885000000000161 + ], + [ + 35.065, + 6.905833333000089 + ], + [ + 35.13333333300011, + 6.780833334000079 + ], + [ + 35.08583333400003, + 6.669166667000013 + ] + ], + [ + [ + 34.775, + 8.488333333000014 + ], + [ + 34.71333333300004, + 8.49333333300018 + ], + [ + 34.57916666699998, + 8.693333333000055 + ], + [ + 34.591666667000084, + 8.7825 + ], + [ + 34.65583333300009, + 8.80500000000012 + ], + [ + 34.61833333400017, + 8.885000000000161 + ], + [ + 34.53, + 8.9525 + ], + [ + 34.54083333300014, + 9.03083333300009 + ], + [ + 34.626666667000165, + 9.02 + ], + [ + 34.66083333300003, + 8.960833333000096 + ], + [ + 34.753333333000114, + 8.916666667000015 + ], + [ + 34.79500000000013, + 8.991666666000128 + ], + [ + 34.870000000000175, + 8.985 + ], + [ + 34.905, + 8.880833333999988 + ], + [ + 34.785, + 8.73333333300019 + ], + [ + 34.8900000000001, + 8.713333333000037 + ], + [ + 34.90083333300004, + 8.627500000000111 + ], + [ + 34.83, + 8.629166667000106 + ], + [ + 34.775, + 8.488333333000014 + ] + ], + [ + [ + 33.10824960400009, + 4.041958946000136 + ], + [ + 33.02204156300013, + 4.120126228000174 + ], + [ + 32.98479054100011, + 4.2546482300001 + ], + [ + 33.00149148300011, + 4.331892665000112 + ], + [ + 33.05218556900007, + 4.37905193500012 + ], + [ + 33.18755347300015, + 4.372329648 + ], + [ + 33.22349155300009, + 4.279981358999976 + ], + [ + 33.23404654800004, + 4.15066301000013 + ], + [ + 33.174617513999976, + 4.064073256000086 + ], + [ + 33.10824960400009, + 4.041958946000136 + ] + ], + [ + [ + 32.861595507000175, + 4.116214561000106 + ], + [ + 33.055843599000184, + 4.019376758000078 + ], + [ + 33.1001734730001, + 3.891041103000134 + ], + [ + 33.03333333400013, + 3.8275000000001 + ], + [ + 32.96666666700014, + 3.855000000000132 + ], + [ + 32.961666667000145, + 3.745833334000054 + ], + [ + 32.79750000000013, + 3.75333333400016 + ], + [ + 32.76922257500013, + 3.894702821000067 + ], + [ + 32.620037607000086, + 3.951586607000024 + ], + [ + 32.55516452600017, + 4.013014223000027 + ], + [ + 32.54720658000019, + 4.088487729000121 + ], + [ + 32.61207161400006, + 4.107225305999975 + ], + [ + 32.74674951900005, + 3.993179622000184 + ], + [ + 32.81620750100012, + 4.03493558200006 + ], + [ + 32.77128955300009, + 4.099723837000056 + ], + [ + 32.861595507000175, + 4.116214561000106 + ] + ], + [ + [ + 33.48083333400007, + 3.751666666000062 + ], + [ + 33.43879485800005, + 3.755 + ], + [ + 33.42112761000004, + 3.872041507000176 + ], + [ + 33.49093260300015, + 3.863316448999967 + ], + [ + 33.561666666000065, + 3.801666666000131 + ], + [ + 33.48083333400007, + 3.751666666000062 + ] + ], + [ + [ + 31.35055545400013, + 2.289550256000155 + ], + [ + 31.405830585000103, + 2.038179997000043 + ], + [ + 31.412776501000167, + 1.92180079200017 + ], + [ + 31.375831586000174, + 1.826252125 + ], + [ + 31.292221599000186, + 1.699317589000145 + ], + [ + 31.19832953100007, + 1.615712799000107 + ], + [ + 31.11972052300007, + 1.577381685000091 + ], + [ + 31.050830499000085, + 1.580992441000092 + ], + [ + 30.939720493000152, + 1.507109820000039 + ], + [ + 30.822923534000154, + 1.330693892 + ], + [ + 30.70581057700008, + 1.266269746000035 + ], + [ + 30.702220608000175, + 1.154913145000023 + ], + [ + 30.588333510000155, + 1.022423083000035 + ], + [ + 30.494441610000024, + 1.045477508000033 + ], + [ + 30.505275555000026, + 1.205465409000169 + ], + [ + 30.392497549999973, + 1.25546178500008 + ], + [ + 30.496108602000106, + 1.502665232000027 + ], + [ + 30.6411094930001, + 1.644321575000049 + ], + [ + 30.81638749300015, + 1.790699780000125 + ], + [ + 30.90388852800004, + 1.895135946000153 + ], + [ + 30.988609452, + 1.928744193000114 + ], + [ + 31.05611059500012, + 1.997350238000138 + ], + [ + 31.14055257000001, + 2.03651434600016 + ], + [ + 31.23860960500008, + 2.117341373000102 + ], + [ + 31.35055545400013, + 2.289550256000155 + ] + ], + [ + [ + 34.266666667000095, + 1.935833334 + ], + [ + 34.21916666700014, + 2.090833334000024 + ], + [ + 34.25416666700005, + 2.134166667000102 + ], + [ + 34.3425, + 2.139166666 + ], + [ + 34.3841666670001, + 2.0825 + ], + [ + 34.27500000000015, + 2.020833333000098 + ], + [ + 34.266666667000095, + 1.935833334 + ] + ], + [ + [ + 38.68166666600001, + -4.7225 + ], + [ + 38.62333333300012, + -4.778333332999921 + ], + [ + 38.565, + -4.724166666999906 + ], + [ + 38.648333333000096, + -4.68666666699994 + ], + [ + 38.68166666600001, + -4.7225 + ] + ], + [ + [ + 36.78083333300009, + 2.284166666000033 + ], + [ + 36.88166666700005, + 2.253333333000171 + ], + [ + 36.92666666700012, + 2.135833333000164 + ], + [ + 36.892500000000155, + 2.016666667000152 + ], + [ + 36.807500000000175, + 2.066666667 + ], + [ + 36.7708333330001, + 2.235000000000184 + ], + [ + 36.78083333300009, + 2.284166666000033 + ] + ], + [ + [ + 36.94000000000011, + -3.039166665999915 + ], + [ + 36.9533333330001, + -3.035 + ], + [ + 37.05666666600007, + -3.064999999999884 + ], + [ + 37.020833334000145, + -3.204166666999924 + ], + [ + 36.924166667000065, + -3.169166666999899 + ], + [ + 36.94000000000011, + -3.039166665999915 + ] + ], + [ + [ + 36.21699992200013, + -3.122500383999977 + ], + [ + 36.27633427600017, + -3.231432663999954 + ], + [ + 36.23028248200012, + -3.244192267999892 + ], + [ + 36.15337174600012, + -3.185356559999889 + ], + [ + 36.12239373200009, + -3.074140710999927 + ], + [ + 36.21699992200013, + -3.122500383999977 + ] + ], + [ + [ + 37.486666667000065, + -1.715833332999978 + ], + [ + 37.425, + -1.699999999999875 + ], + [ + 37.41666666600014, + -1.605833333999954 + ], + [ + 37.482500000000186, + -1.584166666999863 + ], + [ + 37.486666667000065, + -1.715833332999978 + ] + ], + [ + [ + 37.34083333400014, + -1.4875 + ], + [ + 37.27833333399997, + -1.51749999999987 + ], + [ + 37.24916666700017, + -1.431666666999945 + ], + [ + 37.33166666700009, + -1.430833333999942 + ], + [ + 37.34083333400014, + -1.4875 + ] + ], + [ + [ + 38.13250000000011, + -0.71 + ], + [ + 38.23083333300008, + -0.684166666999829 + ], + [ + 38.21083333300015, + -0.784166666999965 + ], + [ + 38.182500000000175, + -0.791666666999845 + ], + [ + 38.156666666000035, + -0.9675 + ], + [ + 38.17083333300002, + -1.1675 + ], + [ + 38.1408333330001, + -1.191666666999879 + ], + [ + 38.150833333000094, + -1.307499999999891 + ], + [ + 38.197500000000105, + -1.441666666999936 + ], + [ + 38.116666667, + -1.4075 + ], + [ + 38.10083333400013, + -1.317499999999882 + ], + [ + 38.06666666700016, + -1.225833333999958 + ], + [ + 38.090833333000035, + -1.125833332999946 + ], + [ + 38.0825, + -1 + ], + [ + 38.125, + -0.9675 + ], + [ + 38.04250000000013, + -0.781666666999968 + ], + [ + 38.06666666700016, + -0.7 + ], + [ + 38.13250000000011, + -0.71 + ] + ], + [ + [ + 38.2925, + -0.925833332999957 + ], + [ + 38.33250000000015, + -1.06 + ], + [ + 38.29083333400001, + -1.155833332999919 + ], + [ + 38.24083333400017, + -1.1075 + ], + [ + 38.25833333400004, + -0.965833332999921 + ], + [ + 38.2925, + -0.925833332999957 + ] + ], + [ + [ + 38.358333333000076, + -1.284166666999852 + ], + [ + 38.48166666700007, + -1.290833333999899 + ], + [ + 38.510833333000164, + -1.239999999999895 + ], + [ + 38.616666666000185, + -1.244166666999945 + ], + [ + 38.5225, + -1.395833333999917 + ], + [ + 38.40083333300004, + -1.475833332999912 + ], + [ + 38.32333333300011, + -1.481666666999899 + ], + [ + 38.26666666700004, + -1.441666665999946 + ], + [ + 38.2125, + -1.415833332999966 + ], + [ + 38.22, + -1.289166666999904 + ], + [ + 38.30833333300018, + -1.2575 + ], + [ + 38.358333333000076, + -1.284166666999852 + ] + ], + [ + [ + 35.843333334000135, + 0.740833333000069 + ], + [ + 35.84833333300003, + 0.641666667000152 + ], + [ + 35.808333334000054, + 0.539166666000028 + ], + [ + 35.8241666670001, + 0.430000000000121 + ], + [ + 35.7641666670001, + 0.418333334000067 + ], + [ + 35.70583333400003, + 0.543333333000078 + ], + [ + 35.738333334, + 0.622500000000116 + ], + [ + 35.843333334000135, + 0.740833333000069 + ] + ], + [ + [ + 36.91166666700019, + 0.883333334000099 + ], + [ + 36.889166667000154, + 0.959166666000101 + ], + [ + 36.825833334000095, + 1.038333333000139 + ], + [ + 36.68666666700017, + 1.074166666 + ], + [ + 36.6175, + 1.116666667000118 + ], + [ + 36.60416666700007, + 1.2675 + ], + [ + 36.709166667000034, + 1.294166666000024 + ], + [ + 36.75, + 1.23 + ], + [ + 36.874166666000065, + 1.1775 + ], + [ + 36.930833333000066, + 1.0825 + ], + [ + 36.95083333300005, + 0.919166666000024 + ], + [ + 36.91166666700019, + 0.883333334000099 + ] + ], + [ + [ + 37.214166667000086, + 1.281666667000081 + ], + [ + 37.20916666700009, + 1.324166667000043 + ], + [ + 37.3325, + 1.3475 + ], + [ + 37.35, + 1.200000000000102 + ], + [ + 37.41083333300003, + 1.174166667000065 + ], + [ + 37.32083333300005, + 1.0775000000001 + ], + [ + 37.3266666670001, + 1.195833333000053 + ], + [ + 37.235833334000176, + 1.217500000000143 + ], + [ + 37.214166667000086, + 1.281666667000081 + ] + ], + [ + [ + 37.255833333000055, + 1.599166666000031 + ], + [ + 37.196666667000045, + 1.698333333000051 + ], + [ + 37.24333333300018, + 1.746666667000056 + ], + [ + 37.3075, + 1.641666667000095 + ], + [ + 37.255833333000055, + 1.599166666000031 + ] + ], + [ + [ + 35.420833333000076, + 1.55166666700012 + ], + [ + 35.30250000000012, + 1.64666666700009 + ], + [ + 35.357500000000186, + 1.734166667000181 + ], + [ + 35.419166667000184, + 1.752500000000168 + ], + [ + 35.4625, + 1.677500000000123 + ], + [ + 35.420833333000076, + 1.55166666700012 + ] + ], + [ + [ + 35.235000000000184, + 1.8725 + ], + [ + 35.106666666000024, + 1.951666666 + ], + [ + 35.13750000000016, + 2.115833334000115 + ], + [ + 35.10333333400007, + 2.230000000000189 + ], + [ + 34.983333333000076, + 2.335833334000142 + ], + [ + 34.98083333300019, + 2.445833333000166 + ], + [ + 35.19000000000011, + 2.445833333000166 + ], + [ + 35.2475, + 2.255833333000055 + ], + [ + 35.287500000000136, + 2.175000000000125 + ], + [ + 35.309166667000056, + 2.034166667000022 + ], + [ + 35.235000000000184, + 1.8725 + ] + ], + [ + [ + 34.756666666000115, + 2.470833333000087 + ], + [ + 34.701666667000154, + 2.523333333000096 + ], + [ + 34.76166666700004, + 2.586666667000031 + ], + [ + 34.80083333300007, + 2.55166666700012 + ], + [ + 34.756666666000115, + 2.470833333000087 + ] + ], + [ + [ + 37.81666666600012, + 3.475833334000185 + ], + [ + 37.83666666600004, + 3.42 + ], + [ + 37.725, + 3.310000000000173 + ], + [ + 37.68333333400011, + 3.35333333300008 + ], + [ + 37.745, + 3.446666667000159 + ], + [ + 37.81666666600012, + 3.475833334000185 + ] + ], + [ + [ + 40.714166667000086, + 8.815000000000111 + ], + [ + 40.73666666700012, + 8.730833334000181 + ], + [ + 40.636666666999986, + 8.666666667000072 + ], + [ + 40.5875, + 8.71 + ], + [ + 40.64416666700009, + 8.805833333000066 + ], + [ + 40.714166667000086, + 8.815000000000111 + ] + ], + [ + [ + 43.15583333400008, + 9.281666667000081 + ], + [ + 43.08, + 9.3275000000001 + ], + [ + 43.025833334000026, + 9.435000000000116 + ], + [ + 43.075833334000095, + 9.45583333400009 + ], + [ + 43.15750000000014, + 9.425000000000125 + ], + [ + 43.15583333400008, + 9.281666667000081 + ] + ], + [ + [ + 37.956666667000036, + 5.310833333000062 + ], + [ + 37.911666667000134, + 5.42 + ], + [ + 37.94916666600005, + 5.521666667000147 + ], + [ + 38.03083333300003, + 5.610833333000073 + ], + [ + 38.09583333400013, + 5.528333334000081 + ], + [ + 38.02583333300004, + 5.370000000000175 + ], + [ + 37.956666667000036, + 5.310833333000062 + ] + ], + [ + [ + 37.874166666000065, + 5.406666667000025 + ], + [ + 37.77833333400008, + 5.48 + ], + [ + 37.80250000000018, + 5.723333334000188 + ], + [ + 37.761666667000156, + 5.763333333000162 + ], + [ + 37.751666667000165, + 5.849166666999963 + ], + [ + 37.854166667000186, + 5.948333333000107 + ], + [ + 37.89333333400015, + 5.925000000000125 + ], + [ + 37.87333333300012, + 5.590833333000091 + ], + [ + 37.874166666000065, + 5.406666667000025 + ] + ], + [ + [ + 38.06916666700005, + 6.910000000000139 + ], + [ + 37.97416666700008, + 6.96 + ], + [ + 38.0225, + 7.01 + ], + [ + 38.08583333400014, + 6.98833333400006 + ], + [ + 38.06916666700005, + 6.910000000000139 + ] + ], + [ + [ + 38.02833333300009, + 4.966674805000139 + ], + [ + 38.10250000000019, + 4.943333334000044 + ], + [ + 38.09416666699997, + 4.886666666999986 + ], + [ + 38.16000000000014, + 4.83166666700015 + ], + [ + 38.1458333330001, + 4.745833333000121 + ], + [ + 38.07500000000016, + 4.780833334000135 + ], + [ + 38.058333333000064, + 4.855833334000124 + ], + [ + 37.98416666700007, + 4.9025 + ], + [ + 38.02833333300009, + 4.966674805000139 + ] + ], + [ + [ + 43.97633165927272, + 3.761581259289358 + ], + [ + 44.142533682909914, + 3.732682457863177 + ], + [ + 44.25639933037883, + 3.674411392339437 + ], + [ + 44.31560677641346, + 3.54657697449619 + ], + [ + 44.314640216761404, + 3.415563673370286 + ], + [ + 44.279745362988535, + 3.265700977072015 + ], + [ + 44.364351202420664, + 3.124955703828334 + ], + [ + 44.35166820565371, + 2.979456335358407 + ], + [ + 44.28484554481844, + 2.921904824651619 + ], + [ + 44.05988968949055, + 2.893185829174058 + ], + [ + 43.932077402425534, + 2.958526607843737 + ], + [ + 43.8081415398085, + 2.972364510584214 + ], + [ + 43.73799938530891, + 3.050377843024478 + ], + [ + 43.711536407278174, + 3.154861273625272 + ], + [ + 43.72630471549809, + 3.255410284344919 + ], + [ + 43.582024902275634, + 3.412820379467519 + ], + [ + 43.59893986388056, + 3.513450013083968 + ], + [ + 43.69694807350339, + 3.634392725170585 + ], + [ + 43.774264737699696, + 3.681136945164155 + ], + [ + 43.97633165927272, + 3.761581259289358 + ] + ], + [ + [ + 43.4263460645588, + 3.009861105608138 + ], + [ + 43.354613276416615, + 2.871550428293801 + ], + [ + 43.24354911995084, + 2.768197267512278 + ], + [ + 43.1670902628091, + 2.735446732977778 + ], + [ + 43.06775225835372, + 2.800799268320077 + ], + [ + 43.064720811068696, + 2.899263748106137 + ], + [ + 43.155886092368405, + 3.041915725475576 + ], + [ + 43.35075527936323, + 3.15525566403835 + ], + [ + 43.42469893056085, + 3.136575895003887 + ], + [ + 43.4263460645588, + 3.009861105608138 + ] + ], + [ + [ + 44.85654, + 9.87008 + ], + [ + 44.93232000000012, + 9.901450000000125 + ], + [ + 44.97856, + 9.99366 + ], + [ + 45.06637, + 9.99353 + ], + [ + 45.15080000000012, + 9.938040000000171 + ], + [ + 45.18901, + 9.800120000000106 + ], + [ + 45.06065000000018, + 9.83613000000014 + ], + [ + 45.06926, + 9.71888 + ], + [ + 44.92213, + 9.687610000000177 + ], + [ + 44.87171, + 9.73328 + ], + [ + 44.85654, + 9.87008 + ] + ] + ], + [ + [ + [ + -83.58023853499998, + 13.847671045000084 + ], + [ + -83.55552650599998, + 13.936330123000118 + ], + [ + -83.66827349699997, + 13.919065414000045 + ], + [ + -83.70689361899991, + 13.850583756000105 + ], + [ + -83.78955862999999, + 13.782056333000128 + ], + [ + -83.75145751599996, + 13.736245544000042 + ], + [ + -83.62264258399983, + 13.732556836000015 + ], + [ + -83.58023853499998, + 13.847671045000084 + ] + ] + ], + [ + [ + [ + -83.84754949799986, + 15.431125879000149 + ], + [ + -84.03349263199993, + 15.57932631 + ], + [ + -84.16316251899991, + 15.629471213000102 + ], + [ + -84.22566251499995, + 15.547180369999978 + ], + [ + -84.13285858599988, + 15.51604227000007 + ], + [ + -84.0747225429999, + 15.565244042000131 + ], + [ + -84.06099650599992, + 15.43141187000009 + ], + [ + -84.11619552999991, + 15.435146511000085 + ], + [ + -84.1438216119999, + 15.228303771000185 + ], + [ + -84.22107660799998, + 15.106622845000118 + ], + [ + -84.16499362899992, + 15.088737875000163 + ], + [ + -84.1235196369999, + 15.014356698000142 + ], + [ + -84.17884053299997, + 14.959812302000103 + ], + [ + -84.43830854899994, + 14.857878971000162 + ], + [ + -84.5698546399999, + 14.910904232000178 + ], + [ + -84.6498795199999, + 14.868295162000038 + ], + [ + -84.70918265799992, + 14.79514092900007 + ], + [ + -84.59369662899996, + 14.772665526000026 + ], + [ + -84.54756162799993, + 14.706927600000029 + ], + [ + -84.4173355179999, + 14.63795208100015 + ], + [ + -84.19252063699997, + 14.705960832000187 + ], + [ + -84.18370857499997, + 14.597656752000034 + ], + [ + -84.13954164499995, + 14.509987409000132 + ], + [ + -84.02463564299995, + 14.419068570000036 + ], + [ + -83.89112852099987, + 14.390631455 + ], + [ + -83.82697259599996, + 14.32291774700019 + ], + [ + -83.66105651099997, + 14.011438178000049 + ], + [ + -83.54293051699995, + 14.00690742400019 + ], + [ + -83.50888054399996, + 13.917375622000066 + ], + [ + -83.45771053399989, + 13.915898563000155 + ], + [ + -83.41541259999991, + 13.997090371000183 + ], + [ + -83.32263163799996, + 14.098370584000065 + ], + [ + -83.35754360499999, + 14.156483827000045 + ], + [ + -83.33113859899998, + 14.250810413000067 + ], + [ + -83.26123855499998, + 14.20388751300004 + ], + [ + -83.29141256899999, + 14.495603393000124 + ], + [ + -83.35438563999998, + 14.49322175900005 + ], + [ + -83.39160162499996, + 14.746177203000116 + ], + [ + -83.45713754699989, + 14.757885381000051 + ], + [ + -83.50232656599997, + 14.866084184000044 + ], + [ + -83.64833060199993, + 14.864544261000106 + ], + [ + -83.82424965099989, + 14.788068279000186 + ], + [ + -84.00704957199997, + 14.745354267999971 + ], + [ + -83.97309163199992, + 14.80452916300004 + ], + [ + -83.82632450699998, + 14.8458777620001 + ], + [ + -83.71302062199999, + 14.96095106700011 + ], + [ + -83.61043551499995, + 15.102592993000087 + ], + [ + -83.57984156799989, + 15.181699887000093 + ], + [ + -83.65659365, + 15.184943516000146 + ], + [ + -83.74927553899983, + 15.127038311000149 + ], + [ + -83.86325852599998, + 15.02060222200015 + ], + [ + -83.87602952899988, + 15.0896977700001 + ], + [ + -83.75870551499997, + 15.20002859400006 + ], + [ + -83.63229350699999, + 15.276936579000107 + ], + [ + -83.60580451399994, + 15.323215749000099 + ], + [ + -83.72214549699993, + 15.388030491999984 + ], + [ + -83.84754949799986, + 15.431125879000149 + ] + ] + ], + [ + [ + [ + -84.57752961399996, + 15.166063782000151 + ], + [ + -84.54741662099985, + 15.104296699000031 + ], + [ + -84.44265758299997, + 15.117693998000163 + ], + [ + -84.38800053399996, + 15.166257739000116 + ], + [ + -84.27388762699997, + 15.174348455000029 + ], + [ + -84.18253359999989, + 15.230922781000174 + ], + [ + -84.14800250599995, + 15.364521936000187 + ], + [ + -84.24954959799993, + 15.44482308300013 + ], + [ + -84.32247953199999, + 15.585621789000186 + ], + [ + -84.39169359999988, + 15.439361435000137 + ], + [ + -84.44905850699996, + 15.419368416000168 + ], + [ + -84.54034464099993, + 15.30963371300004 + ], + [ + -84.57752961399996, + 15.166063782000151 + ] + ] + ], + [ + [ + [ + -84.61792753699996, + 15.43913143500015 + ], + [ + -84.67388964899993, + 15.365978878000135 + ], + [ + -84.51242049899997, + 15.39272419000008 + ], + [ + -84.46918462999997, + 15.497759663000181 + ], + [ + -84.61792753699996, + 15.43913143500015 + ] + ] + ], + [ + [ + [ + -84.46655254499996, + 15.52766344400004 + ], + [ + -84.4112626619999, + 15.602143862000048 + ], + [ + -84.40074152899996, + 15.723758068000109 + ], + [ + -84.53447764399988, + 15.740273100000024 + ], + [ + -84.58997355499991, + 15.494312689000083 + ], + [ + -84.46655254499996, + 15.52766344400004 + ] + ] + ], + [ + [ + [ + -88.56478151199991, + 16.54689616500019 + ], + [ + -88.52989955099997, + 16.40820265700006 + ], + [ + -88.43016864999993, + 16.487625716000025 + ], + [ + -88.39652251699994, + 16.54689616500019 + ], + [ + -88.55072053399994, + 16.61628357100011 + ], + [ + -88.56478151199991, + 16.54689616500019 + ] + ] + ], + [ + [ + [ + -88.33767652699999, + 16.71268652200007 + ], + [ + -88.4203645049999, + 16.736519123000164 + ], + [ + -88.4564895019999, + 16.695705792000183 + ], + [ + -88.36115256199997, + 16.641066008999985 + ], + [ + -88.33767652699999, + 16.71268652200007 + ] + ] + ], + [ + [ + [ + -88.65328250699991, + 17.03707355100005 + ], + [ + -88.67382856399996, + 17.100664536000068 + ], + [ + -88.78123460599983, + 17.09024901600003 + ], + [ + -88.87907455099992, + 17.144250936000105 + ], + [ + -88.92666666199989, + 17.084237515000098 + ], + [ + -88.92916061299991, + 16.879990315000157 + ], + [ + -88.7956166109999, + 16.893732278000016 + ], + [ + -88.6968385639999, + 16.951101711000092 + ], + [ + -88.65328250699991, + 17.03707355100005 + ] + ] + ], + [ + [ + [ + -88.31713063899991, + 17.50199173699997 + ], + [ + -88.39400459299998, + 17.49272856000016 + ], + [ + -88.45723750299999, + 17.543489366000074 + ], + [ + -88.55228459699993, + 17.483095071000037 + ], + [ + -88.51807352399999, + 17.39311936400003 + ], + [ + -88.31713063899991, + 17.50199173699997 + ] + ] + ], + [ + [ + [ + -88.44197053699997, + 17.829646703000037 + ], + [ + -88.44296261899996, + 17.920907188000115 + ], + [ + -88.50637054299989, + 17.953183215000024 + ], + [ + -88.58268760399989, + 17.91360889700013 + ], + [ + -88.67167659399996, + 17.726559184 + ], + [ + -88.66270460499999, + 17.612645097000154 + ], + [ + -88.74125661599999, + 17.56406593300005 + ], + [ + -88.71939057799989, + 17.512792322000053 + ], + [ + -88.61881260099989, + 17.61954776099998 + ], + [ + -88.62654859499997, + 17.764817878000088 + ], + [ + -88.58559461599998, + 17.863137770000094 + ], + [ + -88.47341155899994, + 17.666888918000097 + ], + [ + -88.34697758999988, + 17.630288834999988 + ], + [ + -88.30471050199998, + 17.77393822700003 + ], + [ + -88.25429553399994, + 17.842337072000134 + ], + [ + -88.27158354399995, + 17.929797705000055 + ], + [ + -88.44197053699997, + 17.829646703000037 + ] + ] + ], + [ + [ + [ + -155.787200633, + 19.32538073 + ], + [ + -155.78654466499998, + 19.246495286000084 + ], + [ + -155.70367463299993, + 19.183799991000058 + ], + [ + -155.42539963799996, + 19.44887265 + ], + [ + -155.3941497239999, + 19.490232146000153 + ], + [ + -155.4588316969999, + 19.59768395300017 + ], + [ + -155.47859169799997, + 19.69449929400014 + ], + [ + -155.5795746889999, + 19.69820895700019 + ], + [ + -155.71897864699991, + 19.578862055000172 + ], + [ + -155.787200633, + 19.32538073 + ] + ] + ], + [ + [ + [ + -155.41960170799993, + 19.76356014100014 + ], + [ + -155.41252168199998, + 19.883280541000033 + ], + [ + -155.502456653, + 19.87628785400011 + ], + [ + -155.513213652, + 19.77921938000003 + ], + [ + -155.41960170799993, + 19.76356014100014 + ] + ] + ], + [ + [ + [ + -155.91987559899994, + 19.856765899000152 + ], + [ + -155.70889270299992, + 19.934390535999967 + ], + [ + -155.75823964899996, + 20.022600512000167 + ], + [ + -155.88030966399998, + 19.945903751 + ], + [ + -155.91987559899994, + 19.856765899000152 + ] + ] + ], + [ + [ + [ + -156.53865065899998, + 20.52083994800006 + ], + [ + -156.58944666799994, + 20.600207519000037 + ], + [ + -156.67131070499997, + 20.50298817100014 + ], + [ + -156.53865065899998, + 20.52083994800006 + ] + ] + ], + [ + [ + [ + -156.25549370799993, + 20.66906284200013 + ], + [ + -156.16856364899996, + 20.68730974200014 + ], + [ + -156.13563567799997, + 20.745982561000062 + ], + [ + -156.2580567269999, + 20.768031325000095 + ], + [ + -156.25549370799993, + 20.66906284200013 + ] + ] + ], + [ + [ + [ + -156.47990458199996, + 20.853914485000132 + ], + [ + -156.42027270499992, + 20.688253544000077 + ], + [ + -156.38273669799997, + 20.750512142000105 + ], + [ + -156.40090966999992, + 20.84079311800008 + ], + [ + -156.47990458199996, + 20.853914485000132 + ] + ] + ], + [ + [ + [ + -156.80413872499997, + 20.814299599000094 + ], + [ + -156.8981017039999, + 20.916596033000133 + ], + [ + -157.0268406959999, + 20.92859640400019 + ], + [ + -157.04678358999993, + 20.87380926700007 + ], + [ + -156.98800666799994, + 20.821961329000032 + ], + [ + -156.959380624, + 20.73709187700001 + ], + [ + -156.8366087089999, + 20.761548594000033 + ], + [ + -156.80413872499997, + 20.814299599000094 + ] + ], + [ + [ + -156.83642564799993, + 20.801000368000075 + ], + [ + -156.9589846629999, + 20.77310103600007 + ], + [ + -156.9600986179999, + 20.82811196900019 + ], + [ + -156.88183561499991, + 20.863536909000118 + ], + [ + -156.83642564799993, + 20.801000368000075 + ] + ] + ], + [ + [ + [ + -157.10073857199993, + 21.1926216600001 + ], + [ + -157.25817870899994, + 21.224045918000115 + ], + [ + -157.302703714, + 21.096017879000044 + ], + [ + -157.08554067199995, + 21.1049476230001 + ], + [ + -157.10073857199993, + 21.1926216600001 + ] + ] + ], + [ + [ + [ + -97.7767552759999, + 24.110902161000126 + ], + [ + -97.74846806099993, + 24.311614899 + ], + [ + -97.74737913699994, + 24.438111963000154 + ], + [ + -97.826413157, + 24.411446534000163 + ], + [ + -97.8606725219999, + 24.516982144000167 + ], + [ + -97.77364553799993, + 24.54482863800007 + ], + [ + -97.70998587499997, + 24.65401547600004 + ], + [ + -97.73602091299989, + 24.84636805300005 + ], + [ + -97.66457640899995, + 24.92819886400008 + ], + [ + -97.75220653199995, + 24.97627747100006 + ], + [ + -97.69073749199993, + 25.18425945900009 + ], + [ + -97.72607154599996, + 25.246720239000183 + ], + [ + -97.70022609699987, + 25.401643040000067 + ], + [ + -97.58203055399997, + 25.31052655900004 + ], + [ + -97.51621698699995, + 25.41139075700005 + ], + [ + -97.4348005469999, + 25.41928424800011 + ], + [ + -97.41869778799992, + 25.303477013000077 + ], + [ + -97.24600425199992, + 25.540030535000028 + ], + [ + -97.17834394499988, + 25.703396281000096 + ], + [ + -97.14478004199998, + 25.97221344400009 + ], + [ + -97.21079823999992, + 25.990304356000024 + ], + [ + -97.23650733899996, + 26.06574073500019 + ], + [ + -97.29598008299996, + 26.10764074200017 + ], + [ + -97.29652553999995, + 26.20159530800015 + ], + [ + -97.35424373999996, + 26.330122607000078 + ], + [ + -97.40106193499992, + 26.364313522000145 + ], + [ + -97.43580740199991, + 26.46968627000018 + ], + [ + -97.425661946, + 26.55776810700013 + ], + [ + -97.47004378199995, + 26.749259055000152 + ], + [ + -97.56065289799989, + 26.839631799000017 + ], + [ + -97.55639835699992, + 26.994140921999985 + ], + [ + -97.48013470199999, + 27.00541365500004 + ], + [ + -97.496452891, + 27.091059127000165 + ], + [ + -97.45101651699986, + 27.121586407000166 + ], + [ + -97.42320742399994, + 27.26240461900005 + ], + [ + -97.54618017999996, + 27.229431880999982 + ], + [ + -97.60866201599998, + 27.285413709000125 + ], + [ + -97.53361654499997, + 27.34000463200016 + ], + [ + -97.41203469499999, + 27.322331903000133 + ], + [ + -97.32013468099996, + 27.57106832200003 + ], + [ + -97.25426194199991, + 27.696804713 + ], + [ + -97.37483470099994, + 27.748877447000154 + ], + [ + -97.3877437989999, + 27.84030473900009 + ], + [ + -97.33768924299989, + 27.88316838600008 + ], + [ + -97.25080740199996, + 27.876722932 + ], + [ + -97.18830738499997, + 27.824086560000126 + ], + [ + -97.03455280999998, + 28.044841154999972 + ], + [ + -97.09921646299995, + 28.07785025100003 + ], + [ + -97.15178011099988, + 28.03475024000005 + ], + [ + -97.22053467499995, + 28.07861388400005 + ], + [ + -97.1690801179999, + 28.13075935100011 + ], + [ + -97.02877099499995, + 28.190704821000054 + ], + [ + -96.95834370199992, + 28.122486628000104 + ], + [ + -96.8004254839999, + 28.224632109000027 + ], + [ + -96.78073457699992, + 28.400013963000163 + ], + [ + -96.70131637399993, + 28.360232139000175 + ], + [ + -96.59560725699998, + 28.35605941400013 + ], + [ + -96.41250721399996, + 28.461413987000185 + ], + [ + -96.60995272299994, + 28.596332191000045 + ], + [ + -96.66495274199991, + 28.69542311900011 + ], + [ + -96.58567999599995, + 28.725068582000063 + ], + [ + -96.55816180299996, + 28.645314021000047 + ], + [ + -96.45671632299997, + 28.635923113000047 + ], + [ + -96.19936171499995, + 28.712650410000037 + ], + [ + -96.2256980809999, + 28.579414016999976 + ], + [ + -96.03900712699993, + 28.65247767500017 + ], + [ + -95.95942528799992, + 28.625295853000182 + ], + [ + -95.92354346299987, + 28.7015504150001 + ], + [ + -95.777488883, + 28.749532248000037 + ], + [ + -95.65350703299998, + 28.750004978999982 + ], + [ + -95.43999789199995, + 28.859832282000127 + ], + [ + -95.38410696899996, + 28.864868648000083 + ], + [ + -95.21067965799995, + 29.00941413800018 + ], + [ + -95.14777964899986, + 29.17981417599998 + ], + [ + -95.0372341669999, + 29.21162327600007 + ], + [ + -94.93751596399994, + 29.313705120000122 + ], + [ + -94.89239777099993, + 29.31405057500018 + ], + [ + -94.89177050299998, + 29.43337787300004 + ], + [ + -95.01831599399986, + 29.5548960750001 + ], + [ + -95.01582508899997, + 29.63806882000017 + ], + [ + -94.96583416999988, + 29.700514289000125 + ], + [ + -94.87277050799992, + 29.671496105000074 + ], + [ + -94.81406140599995, + 29.758950670000047 + ], + [ + -94.74118866099997, + 29.786814315000015 + ], + [ + -94.68907046399988, + 29.751305218000027 + ], + [ + -94.70611591699998, + 29.62853246500009 + ], + [ + -94.76046138099997, + 29.524386987000184 + ], + [ + -94.54573405599996, + 29.571705186000145 + ], + [ + -94.49908858599997, + 29.50604153800009 + ], + [ + -94.13258849699997, + 29.646223397000142 + ], + [ + -94.00140664599996, + 29.681459773000086 + ], + [ + -93.85852479099992, + 29.674196139 + ], + [ + -93.74557930899994, + 29.73586888300008 + ], + [ + -93.48566106099992, + 29.76875071600017 + ], + [ + -93.23905190499988, + 29.778414364000184 + ], + [ + -92.94626091599991, + 29.703677994000145 + ], + [ + -92.74016994899995, + 29.615823436000085 + ], + [ + -92.61627900499997, + 29.5787325230001 + ], + [ + -92.25953345499983, + 29.536823435000144 + ], + [ + -92.13374347899992, + 29.584384195000155 + ], + [ + -92.11179705599994, + 29.621778003000088 + ], + [ + -92.20163344899998, + 29.753705301000082 + ], + [ + -92.13293343099997, + 29.766596215000163 + ], + [ + -92.0614620739999, + 29.858555992000163 + ], + [ + -91.91767625899996, + 29.94760551400003 + ], + [ + -91.68369962299994, + 29.843151949000116 + ], + [ + -91.64285196099996, + 29.879936911000073 + ], + [ + -91.79588228899996, + 29.97755973500017 + ], + [ + -91.86088814399994, + 30.041689966999968 + ], + [ + -91.91383310599997, + 30.154461672000025 + ], + [ + -91.97371409999994, + 30.16981502700014 + ], + [ + -91.99893059599992, + 30.31311548700006 + ], + [ + -91.98062128899988, + 30.412057388000107 + ], + [ + -92.05923839799993, + 30.43806470100003 + ], + [ + -92.03646118699999, + 30.576611902000025 + ], + [ + -92.09932244599997, + 30.6949743080001 + ], + [ + -92.29367513799997, + 30.798573957000087 + ], + [ + -92.33478167299995, + 30.765309560000162 + ], + [ + -92.49547163499989, + 30.727954443000158 + ], + [ + -92.54187073799989, + 30.60701016400003 + ], + [ + -92.62697071899998, + 30.58774267900003 + ], + [ + -92.7190193059999, + 30.663694744 + ], + [ + -92.7757460389999, + 30.644159564000176 + ], + [ + -92.89866984699995, + 30.499891621000017 + ], + [ + -93.03141398899999, + 30.418744305000132 + ], + [ + -93.11271484299994, + 30.29156797700017 + ], + [ + -93.22298616699993, + 30.22106639000009 + ], + [ + -93.3167070049999, + 30.269450550000045 + ], + [ + -93.48104644799997, + 30.285534511000094 + ], + [ + -93.61979185099989, + 30.226814026000113 + ], + [ + -93.65809784399988, + 30.13308920300011 + ], + [ + -93.72833885599994, + 30.111211360000084 + ], + [ + -93.81374864999992, + 30.222477563000098 + ], + [ + -93.89858818699986, + 30.16021396500014 + ], + [ + -94.03840522899992, + 30.172760698000104 + ], + [ + -94.10066902899996, + 30.120832769000117 + ], + [ + -94.1629030329999, + 30.167657670000096 + ], + [ + -94.45853442499998, + 30.042451531000097 + ], + [ + -94.58726959799998, + 30.00713072000019 + ], + [ + -94.69563005799995, + 30.19130861400015 + ], + [ + -94.73419180699989, + 30.185532523000177 + ], + [ + -94.74009602899991, + 30.03190578600004 + ], + [ + -94.72234930999997, + 29.908523497000147 + ], + [ + -94.8175122699999, + 29.91126301100013 + ], + [ + -94.85521128099992, + 30.037415302000056 + ], + [ + -94.9503679799999, + 30.174918749000028 + ], + [ + -95.08304233599989, + 30.06530472500009 + ], + [ + -95.11074874499985, + 29.90861992400005 + ], + [ + -95.17601457899991, + 29.899786410000104 + ], + [ + -95.26766901299999, + 29.955120051000165 + ], + [ + -95.36095427299995, + 30.06511205000004 + ], + [ + -95.58184191099986, + 30.12138384600013 + ], + [ + -95.81025590199988, + 30.086127088000126 + ], + [ + -95.8921530099999, + 30.14007728900009 + ], + [ + -95.9897867439999, + 30.13088781400012 + ], + [ + -96.10817427199999, + 30.068317488000048 + ], + [ + -96.14134458699994, + 29.86433652800008 + ], + [ + -96.3436310589999, + 29.85567562900013 + ], + [ + -96.39927042799985, + 29.77758701700003 + ], + [ + -96.40070483899996, + 29.69986015000012 + ], + [ + -96.51214559499988, + 29.654729532000033 + ], + [ + -96.59457072099991, + 29.56223313400011 + ], + [ + -96.58878749099995, + 29.460043606000056 + ], + [ + -96.65402918899997, + 29.422422905000076 + ], + [ + -96.67712407599987, + 29.29207992200014 + ], + [ + -96.7472780839999, + 29.082115655000166 + ], + [ + -96.84958948699989, + 29.07997163700003 + ], + [ + -96.92147033799989, + 29.1278804210001 + ], + [ + -96.9803267659999, + 29.086998335000033 + ], + [ + -97.11718075299996, + 29.053066480000098 + ], + [ + -97.11411688999993, + 28.972963188999984 + ], + [ + -97.16074579799988, + 28.940698935000114 + ], + [ + -97.14771561099991, + 28.78320523400015 + ], + [ + -97.10647682899992, + 28.736223308000035 + ], + [ + -97.2151905579999, + 28.696955539000044 + ], + [ + -97.29317488699985, + 28.699773296000046 + ], + [ + -97.304017177, + 28.633233771000107 + ], + [ + -97.47993992399995, + 28.611610525000117 + ], + [ + -97.37186670999995, + 28.474968160000174 + ], + [ + -97.46405896799996, + 28.41882291400003 + ], + [ + -97.55803707599989, + 28.42832125300015 + ], + [ + -97.70863466399999, + 28.39095901000013 + ], + [ + -97.711218407, + 28.306597759000113 + ], + [ + -97.77380912999996, + 28.280962687000056 + ], + [ + -97.85091383599985, + 28.321782068000175 + ], + [ + -97.88234340099984, + 28.240893912000047 + ], + [ + -97.83224373699989, + 28.11694014900013 + ], + [ + -97.92165204799994, + 28.015064464000147 + ], + [ + -98.09590638899988, + 27.992663725000057 + ], + [ + -98.12482700499999, + 27.949362856000164 + ], + [ + -98.09372199699999, + 27.859395764000055 + ], + [ + -98.23765351499998, + 27.771639268000115 + ], + [ + -98.30738235099994, + 27.680849609000063 + ], + [ + -98.29241952499996, + 27.46314034100004 + ], + [ + -98.39311037499994, + 27.469497301000047 + ], + [ + -98.4652556819999, + 27.40752331100009 + ], + [ + -98.42085479799994, + 27.35072793300003 + ], + [ + -98.62455322399995, + 27.3239078470001 + ], + [ + -98.68101929799997, + 27.284379256000022 + ], + [ + -98.65103003799993, + 27.188306838000187 + ], + [ + -98.67222829899993, + 27.051144092000072 + ], + [ + -98.80670211299997, + 27.02521607100016 + ], + [ + -98.87339729699983, + 26.962569750000114 + ], + [ + -98.8200820159999, + 26.865682056000082 + ], + [ + -98.74726604299997, + 26.90665961800005 + ], + [ + -98.60885369599993, + 26.721614781000085 + ], + [ + -98.45418530199998, + 26.722434686000156 + ], + [ + -98.34569079499994, + 26.682787636000114 + ], + [ + -98.33933928799996, + 26.5821722820001 + ], + [ + -98.44439823499988, + 26.5134542940001 + ], + [ + -98.47650971299998, + 26.461676799000145 + ], + [ + -98.420993722, + 26.296188444000165 + ], + [ + -98.43037405799993, + 26.147373521000077 + ], + [ + -98.51071166699995, + 26.139459509 + ], + [ + -98.55228419299993, + 26.08498628200016 + ], + [ + -98.54045102099991, + 25.953180577000182 + ], + [ + -98.47795870199997, + 25.921922633000065 + ], + [ + -98.40827184699992, + 25.819702354000185 + ], + [ + -98.4215392459999, + 25.69293539800009 + ], + [ + -98.24040988699994, + 25.569109852000054 + ], + [ + -98.30185699799989, + 25.479726890000165 + ], + [ + -98.21305845899997, + 25.469541957000047 + ], + [ + -98.2173614319999, + 25.384307739000064 + ], + [ + -98.36897281799986, + 25.36138831700015 + ], + [ + -98.41855626799992, + 25.29892637500018 + ], + [ + -98.34774779099996, + 25.254703173000053 + ], + [ + -98.31147003199993, + 25.152212859000088 + ], + [ + -98.35563657699998, + 25.104163896000102 + ], + [ + -98.36303711299996, + 25.01080509000002 + ], + [ + -98.23604584499992, + 24.94892568400013 + ], + [ + -98.15908821399995, + 24.883572361000063 + ], + [ + -98.09522244999988, + 24.672281008000027 + ], + [ + -98.09676353999993, + 24.550644933000058 + ], + [ + -98.19015495499997, + 24.47198086500009 + ], + [ + -98.1087569359999, + 24.434636004000026 + ], + [ + -98.13968657799995, + 24.356349397000145 + ], + [ + -98.13890836099995, + 24.09471813199997 + ], + [ + -98.11029811799989, + 24.0186387870001 + ], + [ + -98.01007078799995, + 24.028019861000075 + ], + [ + -97.91027059399994, + 24.090039845000092 + ], + [ + -97.7767552759999, + 24.110902161000126 + ] + ] + ], + [ + [ + [ + -96.39873447899998, + 28.350004873000046 + ], + [ + -96.65169817499992, + 28.251341208999975 + ], + [ + -96.69032545599998, + 28.206686653000077 + ], + [ + -96.78864366199991, + 28.189295738000112 + ], + [ + -96.77658001999998, + 28.12325936100018 + ], + [ + -96.56038906199984, + 28.26438666900009 + ], + [ + -96.39873447899998, + 28.350004873000046 + ] + ] + ], + [ + [ + [ + 15.65859795700004, + -18.974261586999944 + ], + [ + 15.562635206000095, + -18.957682344999967 + ], + [ + 15.522261997000157, + -19.020507753999937 + ], + [ + 15.665614876000063, + -19.026073708999945 + ], + [ + 15.65859795700004, + -18.974261586999944 + ] + ] + ], + [ + [ + [ + 22.373333333000176, + -16.3325 + ], + [ + 22.235000000000127, + -16.32916666699998 + ], + [ + 22.25166666600012, + -16.405 + ], + [ + 22.37500000000017, + -16.38 + ], + [ + 22.373333333000176, + -16.3325 + ] + ] + ], + [ + [ + [ + -5.655278542999952, + -15.972477047999973 + ], + [ + -5.716389490999973, + -15.904149281999935 + ], + [ + -5.793056579999813, + -15.993031653999935 + ], + [ + -5.766388548999942, + -16.02219698899995 + ], + [ + -5.655278542999952, + -15.972477047999973 + ] + ] + ], + [ + [ + [ + 22.060833334, + -15.3175 + ], + [ + 22.000000000000114, + -15.333333332999928 + ], + [ + 22.00083333300006, + -15.574999999999875 + ], + [ + 22.100833333000026, + -15.480833333999954 + ], + [ + 22.1525, + -15.403333332999978 + ], + [ + 22.060833334, + -15.3175 + ] + ] + ], + [ + [ + [ + 22.567500000000166, + -14.961666666999974 + ], + [ + 22.35, + -14.970833332999973 + ], + [ + 22.14916666700003, + -15.005833332999885 + ], + [ + 22.195833333000166, + -15.0975 + ], + [ + 22.23666666600019, + -15.255 + ], + [ + 22.12916666700005, + -15.280833332999975 + ], + [ + 22.19250000000011, + -15.41833333399984 + ], + [ + 22.12750000000011, + -15.498333332999891 + ], + [ + 22.05416666700006, + -15.5325 + ], + [ + 22.031666666000092, + -15.5875 + ], + [ + 22.095, + -15.665833332999966 + ], + [ + 22.303333333000182, + -15.7075 + ], + [ + 22.413333333000082, + -15.7 + ], + [ + 22.489166666000187, + -15.725 + ], + [ + 22.49, + -15.638333333999924 + ], + [ + 22.560833333000176, + -15.524166666999974 + ], + [ + 22.6075, + -15.5075 + ], + [ + 22.586666667000145, + -15.415 + ], + [ + 22.664166667000075, + -15.38833333299982 + ], + [ + 22.67583333300007, + -15.320833332999882 + ], + [ + 22.7425, + -15.3225 + ], + [ + 22.779166666000037, + -15.2325 + ], + [ + 22.720833334000076, + -15.114999999999895 + ], + [ + 22.76916666699998, + -15.036666666999963 + ], + [ + 22.66, + -14.963333332999923 + ], + [ + 22.567500000000166, + -14.961666666999974 + ] + ] + ], + [ + [ + [ + 22.176666667000063, + -15.155 + ], + [ + 22.035, + -15.234166665999851 + ], + [ + 22.134166667000045, + -15.2525 + ], + [ + 22.176666667000063, + -15.155 + ] + ] + ], + [ + [ + [ + 22.0075, + -14.81583333399982 + ], + [ + 22.000000000000114, + -14.936206951999964 + ], + [ + 22.055000000000177, + -14.935 + ], + [ + 22.0075, + -14.81583333399982 + ] + ] + ], + [ + [ + [ + 22.240000000000123, + -14.724166666999963 + ], + [ + 22.3725, + -14.879166666999879 + ], + [ + 22.320833333000053, + -14.95 + ], + [ + 22.433333333000064, + -14.95166666699987 + ], + [ + 22.413333334000185, + -14.88249999999988 + ], + [ + 22.34, + -14.790833332999966 + ], + [ + 22.240000000000123, + -14.724166666999963 + ] + ] + ], + [ + [ + [ + 22.361666667000122, + -14.699166666999929 + ], + [ + 22.42833333300007, + -14.77416666699986 + ], + [ + 22.37500000000017, + -14.815833332999887 + ], + [ + 22.465833333000035, + -14.9375 + ], + [ + 22.575, + -14.930833332999896 + ], + [ + 22.41166666700019, + -14.735833332999903 + ], + [ + 22.361666667000122, + -14.699166666999929 + ] + ] + ], + [ + [ + [ + 22.0683333340001, + -14.68 + ], + [ + 22.000000000000114, + -14.70499999999987 + ], + [ + 22.000000000000114, + -14.775 + ], + [ + 22.10416666700013, + -14.795833332999962 + ], + [ + 22.0683333340001, + -14.68 + ] + ] + ], + [ + [ + [ + 22.008333333000166, + -14.280833333999908 + ], + [ + 22.000833334000163, + -14.423333333999949 + ], + [ + 22.08, + -14.374166666999884 + ], + [ + 22.008333333000166, + -14.280833333999908 + ] + ] + ], + [ + [ + [ + 22.013333333000105, + -13.016666665999935 + ], + [ + 22.00083333300006, + -13.086666665999871 + ], + [ + 22.238333333000128, + -13.040833332999966 + ], + [ + 22.013333333000105, + -13.016666665999935 + ] + ] + ], + [ + [ + [ + 11.54833047400001, + -0.25497929699992 + ], + [ + 11.727780483, + -0.356161775999851 + ], + [ + 11.939889572000027, + -0.369966770999952 + ], + [ + 12.164130461000013, + -0.369600816999878 + ], + [ + 12.238050465000015, + -0.395166962999951 + ], + [ + 12.268409551, + -0.266697532999956 + ], + [ + 12.251449440000158, + -0.109232081999835 + ], + [ + 12.20897951000012, + -0.01896904299997 + ], + [ + 12.12040056300009, + 0.050999899000146 + ], + [ + 12.024539586, + 0.06930949600013 + ], + [ + 11.769860487000074, + 0.031501246000062 + ], + [ + 11.493370502000118, + 0.019839001000094 + ], + [ + 11.372110515000145, + 0.028272369000149 + ], + [ + 11.225460569, + 0.001828470000021 + ], + [ + 11.172249566000119, + -0.055772303999959 + ], + [ + 11.18585054500005, + -0.185278574999927 + ], + [ + 11.25745949000003, + -0.242819166999936 + ], + [ + 11.54833047400001, + -0.25497929699992 + ] + ] + ], + [ + [ + [ + 23.260683047000157, + -19.974063382999873 + ], + [ + 23.267560424000123, + -19.89802660099997 + ], + [ + 23.135602438999967, + -19.864301839999882 + ], + [ + 23.235816964000037, + -20.051965209999935 + ], + [ + 23.106495189000043, + -20.19891386199987 + ], + [ + 23.10621383600011, + -20.306626257999937 + ], + [ + 23.30413333100006, + -20.15191292199995 + ], + [ + 23.478437082000085, + -19.929255282999975 + ], + [ + 23.38497918300004, + -19.905329219999885 + ], + [ + 23.260683047000157, + -19.974063382999873 + ] + ] + ], + [ + [ + [ + 23.147975119000023, + -20.08808457599997 + ], + [ + 23.200836464000133, + -20.052404291999892 + ], + [ + 23.140775171000087, + -19.94019395299989 + ], + [ + 23.105119316000128, + -20.044403444999887 + ], + [ + 23.147975119000023, + -20.08808457599997 + ] + ] + ], + [ + [ + [ + 23.179488982000066, + -19.363335053999947 + ], + [ + 23.02794242800013, + -19.244443822999926 + ], + [ + 22.949335877000067, + -19.314334692999978 + ], + [ + 23.221160276000035, + -19.52919340899996 + ], + [ + 23.241314095000178, + -19.431028946999902 + ], + [ + 23.179488982000066, + -19.363335053999947 + ] + ] + ], + [ + [ + [ + 22.7425, + -16.74499999999989 + ], + [ + 22.661666666000087, + -16.786666666999963 + ], + [ + 22.70083333400015, + -16.90416666699997 + ], + [ + 22.799166667000122, + -17.017499999999814 + ], + [ + 22.896666667000147, + -17.014999999999816 + ], + [ + 22.938333333000116, + -16.944166666999934 + ], + [ + 22.79166666600014, + -16.895 + ], + [ + 22.7425, + -16.74499999999989 + ] + ] + ], + [ + [ + [ + 22.79916666600019, + -16.043333332999964 + ], + [ + 22.628333333000114, + -16.12 + ], + [ + 22.713333333000094, + -16.15083333299998 + ], + [ + 22.679166667, + -16.21666666699997 + ], + [ + 22.798333334000176, + -16.24583333299995 + ], + [ + 23.0183333330001, + -16.266666666999924 + ], + [ + 23.24166666600013, + -16.268333333999976 + ], + [ + 23.19250000000011, + -16.1875 + ], + [ + 23.084166667000147, + -16.14249999999987 + ], + [ + 23.040833333000137, + -16.07583333399998 + ], + [ + 22.867500000000177, + -16.06749999999988 + ], + [ + 22.79916666600019, + -16.043333332999964 + ] + ] + ], + [ + [ + [ + 22.45000000000016, + -15.733333332999905 + ], + [ + 22.35083333300014, + -15.751666666999881 + ], + [ + 22.43250000000012, + -15.82666666699987 + ], + [ + 22.56250000000017, + -16.02833333299992 + ], + [ + 22.715, + -16.07416666699993 + ], + [ + 22.715, + -16.01916666699998 + ], + [ + 22.55833333300012, + -15.820833332999939 + ], + [ + 22.48916666700012, + -15.7975 + ], + [ + 22.45000000000016, + -15.733333332999905 + ] + ] + ], + [ + [ + [ + 22.59166666700014, + -15.739166666999893 + ], + [ + 22.51666666600005, + -15.759166666999874 + ], + [ + 22.595, + -15.8566666669999 + ], + [ + 22.7475, + -15.785 + ], + [ + 22.59166666700014, + -15.739166666999893 + ] + ] + ], + [ + [ + [ + 22.79166666600014, + -15.258333332999939 + ], + [ + 22.69000000000011, + -15.390833332999875 + ], + [ + 22.6625, + -15.470833332999973 + ], + [ + 22.830000000000155, + -15.611666666999952 + ], + [ + 22.942500000000166, + -15.785833332999971 + ], + [ + 22.900833333000094, + -15.805833332999896 + ], + [ + 22.886666667000156, + -15.900833332999866 + ], + [ + 22.7775, + -15.8325 + ], + [ + 22.683333334000054, + -15.811666665999837 + ], + [ + 22.600000000000136, + -15.86249999999984 + ], + [ + 22.72250000000014, + -16.004166666999936 + ], + [ + 22.86416666700012, + -16.046666665999908 + ], + [ + 23.0725, + -16.070833332999825 + ], + [ + 23.126666667000165, + -16.0325 + ], + [ + 23.125833333000116, + -15.921666665999851 + ], + [ + 23.03666666700019, + -15.8225 + ], + [ + 23.030833333000146, + -15.758333333999929 + ], + [ + 22.94750000000016, + -15.628333332999944 + ], + [ + 22.94, + -15.5275 + ], + [ + 22.79166666600014, + -15.258333332999939 + ] + ] + ], + [ + [ + [ + 23.590833334000024, + -14.289166665999915 + ], + [ + 23.5741666670001, + -14.430833332999896 + ], + [ + 23.418333334000124, + -14.61416666599996 + ], + [ + 23.395, + -14.702499999999873 + ], + [ + 23.509166667000045, + -14.655 + ], + [ + 23.63083333300017, + -14.430833333999828 + ], + [ + 23.607500000000186, + -14.355 + ], + [ + 23.6625, + -14.297499999999843 + ], + [ + 23.590833334000024, + -14.289166665999915 + ] + ] + ], + [ + [ + [ + 22.65916666700008, + -13.876666666999881 + ], + [ + 22.68083333400017, + -13.929999999999893 + ], + [ + 22.9125, + -14.061666665999894 + ], + [ + 23.030833333000146, + -14.250833333999879 + ], + [ + 23.085, + -14.180833332999953 + ], + [ + 23.025, + -14.07 + ], + [ + 22.8958333330001, + -13.9625 + ], + [ + 22.723333334000188, + -13.934166666999943 + ], + [ + 22.65916666700008, + -13.876666666999881 + ] + ] + ], + [ + [ + [ + 22.893333333000044, + -13.804999999999836 + ], + [ + 22.932500000000175, + -13.940833332999887 + ], + [ + 22.994166667000172, + -13.911666666999906 + ], + [ + 22.893333333000044, + -13.804999999999836 + ] + ] + ], + [ + [ + [ + 22.707500000000152, + -13.37 + ], + [ + 22.7025, + -13.513333333999924 + ], + [ + 22.791666667000015, + -13.493333332999953 + ], + [ + 22.7875, + -13.439999999999884 + ], + [ + 22.707500000000152, + -13.37 + ] + ] + ], + [ + [ + [ + 26.058147430000076, + -32.410476684999935 + ], + [ + 26.020462036000026, + -32.350185393999936 + ], + [ + 26.028841019000083, + -32.2526245119999 + ], + [ + 25.844795227000077, + -32.23420333899986 + ], + [ + 25.74972534200009, + -32.376491546999944 + ], + [ + 25.78728485100015, + -32.44745635999993 + ], + [ + 25.807477951000067, + -32.427345275999926 + ], + [ + 25.903541565000126, + -32.3889312739999 + ], + [ + 26.058147430000076, + -32.410476684999935 + ] + ] + ], + [ + [ + [ + 24.613610999000173, + -17.875132476999966 + ], + [ + 24.704684577000137, + -17.887959677999845 + ], + [ + 24.683599046000154, + -17.788231247999875 + ], + [ + 24.59403633600016, + -17.688697280999975 + ], + [ + 24.442285868000056, + -17.848261652999952 + ], + [ + 24.45807721500006, + -17.912273032999906 + ], + [ + 24.62326623600012, + -17.98101068099993 + ], + [ + 24.613610999000173, + -17.875132476999966 + ] + ] + ], + [ + [ + [ + 24.880833333000112, + -12.798333333999892 + ], + [ + 24.79333333300002, + -12.925833333999947 + ], + [ + 24.834166666000044, + -12.9675 + ], + [ + 24.880833333000112, + -12.798333333999892 + ] + ] + ], + [ + [ + [ + 29.428868152000177, + -6.704315890999908 + ], + [ + 29.361287557000082, + -6.877491164999981 + ], + [ + 29.429572117000077, + -6.992941347999931 + ], + [ + 29.526015257000097, + -7.002092886999947 + ], + [ + 29.66753166100017, + -6.901901700999815 + ], + [ + 29.632774585999982, + -6.826994050999815 + ], + [ + 29.557220446000144, + -6.784775242999899 + ], + [ + 29.493331569000134, + -6.689227078999977 + ], + [ + 29.428868152000177, + -6.704315890999908 + ] + ] + ], + [ + [ + [ + 31.228333333000137, + -4.859166666999954 + ], + [ + 31.187500000000114, + -4.853333332999966 + ], + [ + 31.161666666000144, + -4.959166666999977 + ], + [ + 31.259166666, + -4.969166665999978 + ], + [ + 31.228333333000137, + -4.859166666999954 + ] + ] + ], + [ + [ + [ + 32.438333334000106, + -2.284166666999909 + ], + [ + 32.41083333300014, + -2.348333333999904 + ], + [ + 32.44000000000011, + -2.421666665999965 + ], + [ + 32.50000000000017, + -2.39249999999987 + ], + [ + 32.438333334000106, + -2.284166666999909 + ] + ] + ], + [ + [ + [ + 31.81083333300012, + -2.189999999999884 + ], + [ + 31.791666666000083, + -2.315833332999887 + ], + [ + 31.885833333000107, + -2.316666666999936 + ], + [ + 31.81083333300012, + -2.189999999999884 + ] + ] + ], + [ + [ + [ + 32.04416666700007, + -2.22083333299986 + ], + [ + 31.978333333000023, + -2.266666666999868 + ], + [ + 31.983333334000065, + -2.365833332999955 + ], + [ + 32.0725, + -2.281666666999911 + ], + [ + 32.04416666700007, + -2.22083333299986 + ] + ] + ], + [ + [ + [ + 32.91750000000019, + -1.884999999999877 + ], + [ + 32.876666667000165, + -1.926666666999949 + ], + [ + 32.84666666600015, + -2.056666665999899 + ], + [ + 32.975833334000185, + -2.083333332999928 + ], + [ + 33.14833333400003, + -2.168333333999897 + ], + [ + 33.09666666700019, + -1.9625 + ], + [ + 32.95333333400015, + -1.96666666699997 + ], + [ + 32.91750000000019, + -1.884999999999877 + ] + ] + ], + [ + [ + [ + 32.085, + -0.220833332999973 + ], + [ + 32.10083333400007, + -0.311666666999884 + ], + [ + 32.23, + -0.329166666999924 + ], + [ + 32.175, + -0.424166665999905 + ], + [ + 32.27333333300004, + -0.460833333999972 + ], + [ + 32.283333334000076, + -0.340833333999967 + ], + [ + 32.25666666700016, + -0.30083333399989 + ], + [ + 32.15583333300003, + -0.303333332999955 + ], + [ + 32.14416666699998, + -0.220833332999973 + ], + [ + 32.085, + -0.220833332999973 + ] + ] + ], + [ + [ + [ + 33.32083333300017, + 0.31 + ], + [ + 33.23583333300019, + 0.304166667000118 + ], + [ + 33.28416666700019, + 0.120000000000118 + ], + [ + 33.32083333300017, + 0.113333334000117 + ], + [ + 33.32083333300017, + 0.31 + ] + ] + ], + [ + [ + [ + 33.692500000000166, + 7.968333332999975 + ], + [ + 33.583333333000155, + 7.95 + ], + [ + 33.46083333299998, + 7.958333333000041 + ], + [ + 33.59166666599998, + 7.85 + ], + [ + 33.775, + 7.93 + ], + [ + 33.692500000000166, + 7.968333332999975 + ] + ] + ], + [ + [ + [ + 39.805, + -3.611666666999952 + ], + [ + 39.80666666700017, + -3.615833332999898 + ], + [ + 39.80666666700017, + -3.61 + ], + [ + 39.805, + -3.611666666999952 + ] + ] + ], + [ + [ + [ + 44.145, + 13.59 + ], + [ + 43.96333333300015, + 13.565 + ], + [ + 43.975833333000026, + 13.419166667000127 + ], + [ + 44.086666667000145, + 13.330833333000044 + ], + [ + 44.05416666700012, + 13.245833333000064 + ], + [ + 44.050833333000185, + 13.125 + ], + [ + 44.1391666670001, + 13.127500000000111 + ], + [ + 44.14666666699998, + 13.191666667 + ], + [ + 44.38333333300005, + 13.325833334000095 + ], + [ + 44.1525, + 13.40416666700014 + ], + [ + 44.10833333300013, + 13.4725 + ], + [ + 44.145, + 13.59 + ] + ] + ], + [ + [ + [ + 43.8725, + 13.548333334000063 + ], + [ + 43.83416666700009, + 13.4725 + ], + [ + 43.86833333300018, + 13.434166667000056 + ], + [ + 43.96083333300004, + 13.480833334000124 + ], + [ + 43.8725, + 13.548333334000063 + ] + ] + ], + [ + [ + [ + 46.216032049000034, + 13.528795698000181 + ], + [ + 46.264444371000195, + 13.527282813000113 + ], + [ + 46.26582411800007, + 13.634197351000182 + ], + [ + 46.110886536000066, + 13.646044291000067 + ], + [ + 45.97926553500008, + 13.552245417000165 + ], + [ + 45.83175924000011, + 13.52350060000009 + ], + [ + 45.83510957400017, + 13.446785810000108 + ], + [ + 45.97850909200014, + 13.469793180000067 + ], + [ + 46.125258944000166, + 13.540142335999974 + ], + [ + 46.216032049000034, + 13.528795698000181 + ] + ] + ], + [ + [ + [ + 44.701666667000154, + 13.793333333000078 + ], + [ + 44.64892141100012, + 13.783559264000075 + ], + [ + 44.5833333330001, + 13.665833333000137 + ], + [ + 44.68666666700017, + 13.64 + ], + [ + 44.7225, + 13.678333333000182 + ], + [ + 44.701666667000154, + 13.793333333000078 + ] + ] + ], + [ + [ + [ + 44.751666667, + 13.872502214000178 + ], + [ + 44.79083333300008, + 13.797500000000127 + ], + [ + 44.78416666700019, + 13.700833333000048 + ], + [ + 44.85583333300008, + 13.6925 + ], + [ + 44.85666480300017, + 13.819981807000033 + ], + [ + 44.751666667, + 13.872502214000178 + ] + ] + ], + [ + [ + [ + 43.73166666700007, + 14.7575 + ], + [ + 43.595833334000076, + 14.7375 + ], + [ + 43.56166666700011, + 14.641666667000038 + ], + [ + 43.585, + 14.554166667000118 + ], + [ + 43.656666668000184, + 14.498333333000062 + ], + [ + 43.78166666800007, + 14.525833333000094 + ], + [ + 43.90666666800013, + 14.583333333000041 + ], + [ + 43.84333333300003, + 14.730833333000135 + ], + [ + 43.73166666700007, + 14.7575 + ] + ] + ], + [ + [ + [ + 51.231778923000036, + 15.224453046000122 + ], + [ + 51.21534853200012, + 15.297130459000073 + ], + [ + 50.972973909000075, + 15.318206513000064 + ], + [ + 50.83597955800013, + 15.290105107000045 + ], + [ + 50.512813394000034, + 15.283079756000063 + ], + [ + 50.18964723100004, + 15.247952999000063 + ], + [ + 49.85945571700006, + 15.226876945000072 + ], + [ + 49.7154360130001, + 15.188237513000104 + ], + [ + 49.51521349900014, + 15.156623431000014 + ], + [ + 49.30094028200011, + 15.093395269000041 + ], + [ + 49.03397693000011, + 15.040705134000063 + ], + [ + 48.57732909100008, + 14.910736133 + ], + [ + 48.20849814400003, + 14.773741781000183 + ], + [ + 48.092579846000035, + 14.707000942999969 + ], + [ + 47.966123521000156, + 14.552443213000174 + ], + [ + 47.94856014300018, + 14.471651672000121 + ], + [ + 47.97190135200009, + 14.328527869000027 + ], + [ + 48.10053861900013, + 14.257164229000182 + ], + [ + 48.33428818700003, + 14.271970493000083 + ], + [ + 48.49708273600004, + 14.389103156000147 + ], + [ + 48.588406507, + 14.432779743000026 + ], + [ + 48.73333336200011, + 14.462559233000036 + ], + [ + 48.99273682500018, + 14.446359612000037 + ], + [ + 49.020795673000066, + 14.515697343000056 + ], + [ + 49.16792476000012, + 14.576221715000145 + ], + [ + 49.30992771100006, + 14.682341716999986 + ], + [ + 49.24949326900014, + 14.757794836000073 + ], + [ + 49.13330086100012, + 14.812923278000142 + ], + [ + 49.308039135000115, + 14.842421041000136 + ], + [ + 49.46434130600011, + 14.842241176000073 + ], + [ + 49.42270269600016, + 14.746823107000125 + ], + [ + 49.47153588300006, + 14.702216734 + ], + [ + 49.58790815500015, + 14.792868396000074 + ], + [ + 49.520009341000105, + 14.882980465000173 + ], + [ + 49.69870463200016, + 14.82974059999998 + ], + [ + 49.87038521000011, + 14.832618431000185 + ], + [ + 50.08541311100004, + 14.929385483000146 + ], + [ + 50.13568521400015, + 14.987391755000033 + ], + [ + 50.22076107900011, + 14.963829517000079 + ], + [ + 50.30331884300017, + 15.015900264000095 + ], + [ + 50.38677592900018, + 15.001601043000164 + ], + [ + 50.44783989600006, + 15.040631620000056 + ], + [ + 50.427695082000184, + 15.11977196000015 + ], + [ + 50.64047467800003, + 15.114555892000055 + ], + [ + 50.653424916, + 15.244148199 + ], + [ + 50.776182375000076, + 15.15556497700004 + ], + [ + 50.96566953000013, + 15.20646660500006 + ], + [ + 51.12772736400018, + 15.194325758000161 + ], + [ + 51.231778923000036, + 15.224453046000122 + ] + ] + ], + [ + [ + [ + 43.97666666700002, + 15.005833333 + ], + [ + 44.075, + 15.041666668000062 + ], + [ + 44.09583333300009, + 14.983333334000065 + ], + [ + 44.06750000000011, + 14.90416666800013 + ], + [ + 43.98666666700018, + 14.83583333300004 + ], + [ + 43.82750000000016, + 14.8175 + ], + [ + 43.93916666700005, + 14.66 + ], + [ + 43.99583333300012, + 14.63333333300011 + ], + [ + 43.77333333300004, + 14.37583333300006 + ], + [ + 43.839166667000086, + 14.322500000000161 + ], + [ + 43.81833333300011, + 14.253333333000114 + ], + [ + 43.912500000000136, + 14.223333332999971 + ], + [ + 43.9425, + 14.28 + ], + [ + 43.920000000000186, + 14.405 + ], + [ + 44.01666666700015, + 14.4475 + ], + [ + 44.09500000000014, + 14.435000000000173 + ], + [ + 44.125833333, + 14.36083333300013 + ], + [ + 44.128333333000114, + 14.244166667000115 + ], + [ + 44.03000000100002, + 14.167500000000189 + ], + [ + 43.921999401000164, + 13.92196492700009 + ], + [ + 43.825833333, + 13.895833333000098 + ], + [ + 44.00833333300005, + 13.705 + ], + [ + 44.15666666700014, + 13.7125 + ], + [ + 44.231666667000184, + 13.74250000000012 + ], + [ + 44.31916666700005, + 13.673333333000187 + ], + [ + 44.48333333300019, + 13.653333333000091 + ], + [ + 44.560000000000116, + 13.689166667 + ], + [ + 44.56833333300017, + 13.745000000000175 + ], + [ + 44.48166666700013, + 13.857500000000186 + ], + [ + 44.50015079900004, + 14.072495954000033 + ], + [ + 44.47309490200007, + 14.232930798000154 + ], + [ + 44.36199298000014, + 14.317267258000129 + ], + [ + 44.32462233300009, + 14.439984381000045 + ], + [ + 44.39077847800013, + 14.498565395000071 + ], + [ + 44.52922717200005, + 14.546285908000073 + ], + [ + 44.584906559000046, + 14.640512563000073 + ], + [ + 44.50923970000002, + 14.687625891000039 + ], + [ + 44.39217021800016, + 14.589116206000028 + ], + [ + 44.28675921000013, + 14.55529424000008 + ], + [ + 44.24693404300007, + 14.610090937000109 + ], + [ + 44.18861330300001, + 14.82587767400014 + ], + [ + 44.15481086199998, + 15.04653154100015 + ], + [ + 44.097335773000054, + 15.155095598000173 + ], + [ + 44.04662155700004, + 15.191956311000126 + ], + [ + 43.91822449800003, + 15.395799043000181 + ], + [ + 43.785407662000125, + 15.487124789000063 + ], + [ + 43.80253978000013, + 15.661301335000076 + ], + [ + 43.876849820000075, + 15.922705553000014 + ], + [ + 43.94252294400019, + 16.085460686000147 + ], + [ + 43.89624390000017, + 16.200833333000105 + ], + [ + 43.83250000000015, + 16.087500000000148 + ], + [ + 43.76666666699998, + 16.0375 + ], + [ + 43.80166666700012, + 15.874166667000054 + ], + [ + 43.651666667000086, + 15.7375 + ], + [ + 43.693333333000055, + 15.66583333300008 + ], + [ + 43.655, + 15.693333333000112 + ], + [ + 43.5475, + 15.645 + ], + [ + 43.62333333300006, + 15.559166667000113 + ], + [ + 43.50416666700016, + 15.487500000000125 + ], + [ + 43.60333333300008, + 15.361666667000122 + ], + [ + 43.659166667000136, + 15.391666667000038 + ], + [ + 43.719166667000025, + 15.345 + ], + [ + 43.79916666700018, + 15.361423816000183 + ], + [ + 43.790000000000134, + 15.285000000000139 + ], + [ + 43.78, + 15.19583333300011 + ], + [ + 43.896666667000034, + 15.116666667000175 + ], + [ + 43.875000000000114, + 15.101666667000188 + ], + [ + 43.845833333000144, + 15.11083333300013 + ], + [ + 43.84166666700003, + 15.1175 + ], + [ + 43.73916666700018, + 15.141666667000095 + ], + [ + 43.71583333300009, + 15.224166668000066 + ], + [ + 43.62166666700017, + 15.195000000000164 + ], + [ + 43.66, + 15.182500000000118 + ], + [ + 43.665833333000194, + 15.18 + ], + [ + 43.62916666700005, + 15.045833334 + ], + [ + 43.70833333300004, + 15.024166667000088 + ], + [ + 43.73083333300008, + 14.925833334000117 + ], + [ + 43.81083333300006, + 15.019166667000093 + ], + [ + 43.7825, + 14.891666667000152 + ], + [ + 43.88000000000011, + 14.88916666700004 + ], + [ + 43.92833333300001, + 14.993333333000123 + ], + [ + 43.97666666700002, + 15.005833333 + ] + ] + ], + [ + [ + [ + 44.366624220000176, + 15.291632403000108 + ], + [ + 44.40250717000009, + 15.227510741000117 + ], + [ + 44.58417022300006, + 15.31915165800001 + ], + [ + 44.573288427000136, + 15.353325895000125 + ], + [ + 44.51833985000019, + 15.465021692999983 + ], + [ + 44.30753876200009, + 15.437502439000184 + ], + [ + 44.32912249100008, + 15.284977420000075 + ], + [ + 44.366624220000176, + 15.291632403000108 + ] + ] + ], + [ + [ + [ + 44.609980766000035, + 15.676632171000051 + ], + [ + 44.53164981600008, + 15.65082162800013 + ], + [ + 44.42912710300004, + 15.540834542000027 + ], + [ + 44.50080307000013, + 15.501624101000175 + ], + [ + 44.609980766000035, + 15.676632171000051 + ] + ] + ], + [ + [ + [ + 52.17384079700008, + 15.609697899000082 + ], + [ + 52.22634887700019, + 15.631984456000112 + ], + [ + 52.197096761000125, + 15.745833333000064 + ], + [ + 52.12918038800012, + 15.805955460000177 + ], + [ + 52.00852635400008, + 15.833952528000111 + ], + [ + 51.964530961000094, + 15.736629385000072 + ], + [ + 52.06052090999998, + 15.740628966000145 + ], + [ + 52.119181435000144, + 15.701966348000042 + ], + [ + 52.17384079700008, + 15.609697899000082 + ] + ] + ], + [ + [ + [ + 43.63833333300016, + 16.26333333300005 + ], + [ + 43.61083333300013, + 16.233333333000076 + ], + [ + 43.665, + 16.134166666999988 + ], + [ + 43.710833333000096, + 16.120000000000175 + ], + [ + 43.74250000000018, + 16.219166666999968 + ], + [ + 43.63833333300016, + 16.26333333300005 + ] + ] + ], + [ + [ + [ + 55.187626808000175, + 17.160513547000164 + ], + [ + 55.25865478500003, + 17.22916666700013 + ], + [ + 55.2875, + 17.346048991000146 + ], + [ + 55.26192156700017, + 17.44699929000012 + ], + [ + 55.12251589100009, + 17.296670905000042 + ], + [ + 54.783253120000154, + 17.16272573300006 + ], + [ + 54.69092247800012, + 17.159884790000092 + ], + [ + 54.51904543800009, + 17.218124118000105 + ], + [ + 54.33154321100017, + 17.218124118000105 + ], + [ + 54.24915586900016, + 17.25647684600017 + ], + [ + 54.07159694300003, + 17.24795401800003 + ], + [ + 53.918186030000186, + 17.15278243300014 + ], + [ + 53.81875303099997, + 17.051928963000137 + ], + [ + 53.70653579000003, + 16.98800774900019 + ], + [ + 53.644035048000035, + 16.853062965000106 + ], + [ + 53.58437524800007, + 16.82465353700013 + ], + [ + 53.385509251000144, + 16.83459683700005 + ], + [ + 53.27755342300003, + 16.80760788000009 + ], + [ + 53.09573308300014, + 16.706754410000087 + ], + [ + 52.84288917100008, + 16.644253668000033 + ], + [ + 52.754819944000076, + 16.590275754 + ], + [ + 52.57868148900013, + 16.554763969000135 + ], + [ + 52.6375, + 16.494775391000132 + ], + [ + 52.841115725000066, + 16.57874211500007 + ], + [ + 53.10342610700019, + 16.6382405600001 + ], + [ + 53.19591878300014, + 16.68758544900004 + ], + [ + 53.479353841000034, + 16.75397949200004 + ], + [ + 53.59027710000004, + 16.745833333000064 + ], + [ + 53.78563516600008, + 16.875462908000088 + ], + [ + 53.77921023200014, + 16.951366544999985 + ], + [ + 54.19442617700008, + 17.111385298000187 + ], + [ + 54.28425083000002, + 17.07331392100008 + ], + [ + 54.481151229000034, + 17.052493638000044 + ], + [ + 54.64295457700001, + 17.051898772000186 + ], + [ + 54.74884059200019, + 17.018586318000075 + ], + [ + 54.96299208199997, + 17.048924446000115 + ], + [ + 55.08553432400009, + 17.1339901770001 + ], + [ + 55.187626808000175, + 17.160513547000164 + ] + ] + ], + [ + [ + [ + 56.37120050400017, + 17.963571556000034 + ], + [ + 56.4225484210001, + 18.00245157900008 + ], + [ + 56.3059916900001, + 18.06421629600004 + ], + [ + 56.24531543400008, + 18.066357811000046 + ], + [ + 55.984764454000015, + 18.027096704000087 + ], + [ + 55.84984901500013, + 18.02424135100017 + ], + [ + 55.71065054600007, + 18.04922569100006 + ], + [ + 55.64354974600013, + 17.992832466000095 + ], + [ + 55.54361238300015, + 17.989263274000052 + ], + [ + 55.349448365000114, + 17.925731665000058 + ], + [ + 55.215960603000156, + 17.730139970000153 + ], + [ + 55.22381282400016, + 17.690878864000126 + ], + [ + 55.374595861000046, + 17.678343181 + ], + [ + 55.379177668000125, + 17.69668935100009 + ], + [ + 55.38561412800016, + 17.70163562199997 + ], + [ + 55.385061, + 17.703344334000178 + ], + [ + 55.394920539, + 17.750828538000064 + ], + [ + 55.42261965900019, + 17.812522030000082 + ], + [ + 55.49168759200006, + 17.88833487900007 + ], + [ + 55.67667813700018, + 17.96162962600016 + ], + [ + 55.7100429840001, + 17.897507964000113 + ], + [ + 55.824166952000155, + 17.90749043800008 + ], + [ + 55.91832597000018, + 17.89831735300004 + ], + [ + 55.97669197100009, + 17.930872812000132 + ], + [ + 56.14081824400017, + 17.933300981 + ], + [ + 56.24837716100018, + 17.96495711700004 + ], + [ + 56.353417976, + 17.920710472000053 + ], + [ + 56.354587095000056, + 17.92169972700009 + ], + [ + 56.355036756, + 17.924127896000186 + ], + [ + 56.355936078000184, + 17.924037964000036 + ], + [ + 56.37120050400017, + 17.963571556000034 + ] + ] + ], + [ + [ + [ + 42.36248504100013, + 18.414977869000154 + ], + [ + 42.405292770000074, + 18.441687734000084 + ], + [ + 42.33001951500012, + 18.616695804000187 + ], + [ + 42.27668971700007, + 18.7716489930001 + ], + [ + 42.30079154800018, + 18.824978790000102 + ], + [ + 42.25420666600007, + 18.903309740000168 + ], + [ + 42.17623544600008, + 18.86652746900012 + ], + [ + 42.122725783000135, + 18.979212521000022 + ], + [ + 42.09079985100004, + 19.191632388000187 + ], + [ + 42.12749219000011, + 19.22670594800013 + ], + [ + 42.0950266640001, + 19.32581123700004 + ], + [ + 42.046643138000036, + 19.320685102000027 + ], + [ + 41.96273639100019, + 19.47437923900003 + ], + [ + 41.89420805100008, + 19.50864340900017 + ], + [ + 41.88278666100007, + 19.6742985300001 + ], + [ + 41.8485224910001, + 19.848407278000025 + ], + [ + 41.72864286300006, + 19.777091040000187 + ], + [ + 41.677201642, + 19.83419799000012 + ], + [ + 41.57162123300009, + 19.82277660000011 + ], + [ + 41.52872357200016, + 19.934112670000104 + ], + [ + 41.443108113000164, + 20.0226059580001 + ], + [ + 41.311717162000036, + 20.071169350000105 + ], + [ + 41.22322387300011, + 20.18826107900003 + ], + [ + 41.19471536400005, + 20.296719318000157 + ], + [ + 41.10900997300007, + 20.39105820100002 + ], + [ + 41.01476102200019, + 20.45374094700003 + ], + [ + 41.011973124000065, + 20.562289118000137 + ], + [ + 40.940566954000076, + 20.59655328800011 + ], + [ + 40.900547123000194, + 20.716432917000077 + ], + [ + 40.82635305399998, + 20.736487799000145 + ], + [ + 40.800002918000075, + 20.825790478000044 + ], + [ + 40.65503220400018, + 20.923456852000186 + ], + [ + 40.626433763000136, + 20.969142412000167 + ], + [ + 40.477955693000126, + 20.957721022000158 + ], + [ + 40.266704944000026, + 21.149006821000114 + ], + [ + 40.29674230100011, + 21.33309804400011 + ], + [ + 40.24458162200011, + 21.372128621000172 + ], + [ + 40.295842979000156, + 21.50666719900005 + ], + [ + 40.35451015500007, + 21.587825195000107 + ], + [ + 40.17549811400005, + 21.572223229000087 + ], + [ + 40.13810189200012, + 21.488141165 + ], + [ + 40.22578579100019, + 21.404144486000177 + ], + [ + 40.22299789300013, + 21.337504722 + ], + [ + 40.111661824, + 21.280038043000047 + ], + [ + 40.132616027000154, + 21.170860347000144 + ], + [ + 40.04834955200005, + 20.94000437800014 + ], + [ + 40.22650524900007, + 21.02346146400015 + ], + [ + 40.25168626600015, + 20.962487429000078 + ], + [ + 40.42111854000018, + 20.879390072000035 + ], + [ + 40.320844132000104, + 20.806275189000132 + ], + [ + 40.37912020000016, + 20.754474240000036 + ], + [ + 40.47085104900003, + 20.804836274000024 + ], + [ + 40.545854508000104, + 20.89027186900006 + ], + [ + 40.58020861, + 20.851780885000153 + ], + [ + 40.537850541000125, + 20.762478206000083 + ], + [ + 40.59100047400017, + 20.59835193200007 + ], + [ + 40.587493118000054, + 20.484587694000084 + ], + [ + 40.77491183300015, + 20.56246898300003 + ], + [ + 40.85000522400014, + 20.508329796000055 + ], + [ + 40.94587295400015, + 20.518761930999972 + ], + [ + 41.094800685000166, + 20.320821149000153 + ], + [ + 41.17304170300008, + 20.287456302000066 + ], + [ + 41.16099078700006, + 20.137539317000062 + ], + [ + 41.23734322900003, + 20.137449384000035 + ], + [ + 41.229698991000134, + 20.01199395800012 + ], + [ + 41.27457516200019, + 19.97539155100003 + ], + [ + 41.30542190799997, + 19.81369344700005 + ], + [ + 41.36252885800013, + 19.88599894000015 + ], + [ + 41.47080723200003, + 19.902636398000027 + ], + [ + 41.51424448700004, + 19.802361989000076 + ], + [ + 41.55417438600011, + 19.78698358200012 + ], + [ + 41.665600387000154, + 19.651096021000114 + ], + [ + 41.70418130300004, + 19.71566734400011 + ], + [ + 41.77405862600017, + 19.679154869000172 + ], + [ + 41.83746083000011, + 19.476627544000166 + ], + [ + 41.98423018799997, + 19.304137576000073 + ], + [ + 41.990525442000035, + 19.145856896000055 + ], + [ + 42.05824439200012, + 19.112492048000092 + ], + [ + 42.007702493000124, + 18.98748628300018 + ], + [ + 42.07407246000008, + 18.96572269 + ], + [ + 42.116340597000146, + 18.887481672000092 + ], + [ + 42.071734223000135, + 18.796740077000152 + ], + [ + 42.123535173000164, + 18.681896652000148 + ], + [ + 42.135046495000154, + 18.56246668400013 + ], + [ + 42.19880842800012, + 18.445824615000163 + ], + [ + 42.15896846200013, + 18.349777021000023 + ], + [ + 42.021821850000094, + 18.27918024000013 + ], + [ + 42.133157918999984, + 18.216497493000077 + ], + [ + 42.24584297100006, + 18.141404103000127 + ], + [ + 42.32921012500009, + 18.026470745000097 + ], + [ + 42.37084873600014, + 18.078811288000054 + ], + [ + 42.44603205900012, + 17.96234908300005 + ], + [ + 42.563843247000136, + 17.95281626900004 + ], + [ + 42.55745806000016, + 17.795794640000167 + ], + [ + 42.64909897700011, + 17.812522030000082 + ], + [ + 42.71250118100011, + 17.88069064100017 + ], + [ + 42.80836891100006, + 17.83338630200012 + ], + [ + 42.903157455000155, + 17.821874980000132 + ], + [ + 42.92141369200016, + 17.754245962000027 + ], + [ + 42.74181907999997, + 17.7069416220001 + ], + [ + 42.79775691100008, + 17.60432897700008 + ], + [ + 42.98418637100019, + 17.415831076000188 + ], + [ + 43.06890250800018, + 17.251614870000026 + ], + [ + 43.10604450800008, + 17.220858056 + ], + [ + 43.23977369700003, + 17.310160735000125 + ], + [ + 43.249126646000036, + 17.257460463000086 + ], + [ + 43.18779288200011, + 17.17912951300019 + ], + [ + 43.21378328900005, + 17.11959439400016 + ], + [ + 43.141118068000026, + 17.03280981600011 + ], + [ + 43.279164002000186, + 16.833160322000083 + ], + [ + 43.339778308000064, + 16.82083961000012 + ], + [ + 43.328806579000116, + 16.620650523000165 + ], + [ + 43.40434963100006, + 16.53737330100006 + ], + [ + 43.555795464000084, + 16.75500923600015 + ], + [ + 43.620007058000056, + 16.774974186000065 + ], + [ + 43.66057364800014, + 16.88253340200015 + ], + [ + 43.63336737600008, + 16.944964636000122 + ], + [ + 43.53342012600007, + 17.019137523000154 + ], + [ + 43.45294683800017, + 17.141708936999976 + ], + [ + 43.39939344099997, + 17.292059385000016 + ], + [ + 43.37075526000001, + 17.46131103199997 + ], + [ + 43.43060905700014, + 17.549230247000025 + ], + [ + 43.40082535000005, + 17.72478229400008 + ], + [ + 43.396705394000094, + 17.846696268000073 + ], + [ + 43.32424519300014, + 17.887031113000035 + ], + [ + 43.2838396410001, + 18.034204915000146 + ], + [ + 43.2025417640001, + 18.057497356000113 + ], + [ + 43.22664359500004, + 17.92169972700009 + ], + [ + 43.31261878300006, + 17.873406133000174 + ], + [ + 43.160183696000104, + 17.921429930000045 + ], + [ + 43.05856030400014, + 18.03798206700003 + ], + [ + 42.970246879, + 17.98609118500019 + ], + [ + 42.89065687800013, + 18.052820881000173 + ], + [ + 42.78885362300008, + 17.980875117000096 + ], + [ + 42.61438514600013, + 18.153544950000082 + ], + [ + 42.45835277100008, + 18.205795561000116 + ], + [ + 42.42750602500007, + 18.354183699000146 + ], + [ + 42.36248504100013, + 18.414977869000154 + ] + ] + ], + [ + [ + [ + 85.79146556400008, + 27.057229267000025 + ], + [ + 85.68741563600008, + 27.099795589 + ], + [ + 85.46984858600007, + 27.132902095000134 + ], + [ + 85.27593258600018, + 27.20384300300003 + ], + [ + 85.2002565730001, + 27.21330248400011 + ], + [ + 85.06309561200004, + 27.284245403000057 + ], + [ + 84.89282965400014, + 27.279515831000083 + ], + [ + 84.77931957400006, + 27.35045673900015 + ], + [ + 84.69106266000006, + 27.204847993000044 + ], + [ + 84.62695350600018, + 27.177768243000116 + ], + [ + 84.45153854500012, + 27.177839154000026 + ], + [ + 84.7296526070001, + 27.02099497000006 + ], + [ + 85.12919664200007, + 26.873342381000043 + ], + [ + 85.5721735190001, + 26.690948479999975 + ], + [ + 85.91960860300009, + 26.586722196000153 + ], + [ + 86.40601363000019, + 26.508553739999968 + ], + [ + 86.66658755400016, + 26.456440934000057 + ], + [ + 87.44831854600017, + 26.3609004810001 + ], + [ + 87.96946756700015, + 26.343531333000044 + ], + [ + 88.21266966200011, + 26.369586144000095 + ], + [ + 88.44718961300009, + 26.491184593000185 + ], + [ + 88.64696456400009, + 26.63015118300018 + ], + [ + 88.93359363400009, + 26.67357732100004 + ], + [ + 89.27233852800009, + 26.67357732100004 + ], + [ + 89.61109163700013, + 26.63015118300018 + ], + [ + 89.83259566600015, + 26.63015118300018 + ], + [ + 89.97248862400005, + 26.659956058000034 + ], + [ + 90.09951066700017, + 26.75814552700018 + ], + [ + 89.93374662900004, + 26.744035096000175 + ], + [ + 89.79129752600011, + 26.704140087000155 + ], + [ + 89.66995254600016, + 26.734367744 + ], + [ + 89.63919062600007, + 26.77787669500009 + ], + [ + 89.52353662300015, + 26.81515403600008 + ], + [ + 89.10874154800018, + 26.842741729000124 + ], + [ + 89.0223006560002, + 26.90051114700003 + ], + [ + 88.97360951000007, + 26.882100129000094 + ], + [ + 88.82855262900006, + 26.90196523900005 + ], + [ + 88.75835452500019, + 26.851828550000164 + ], + [ + 88.59791551100011, + 26.8718835950001 + ], + [ + 88.34722150400017, + 26.81172030500005 + ], + [ + 88.246940581, + 26.751553831000138 + ], + [ + 88.15429657900012, + 26.781366416000083 + ], + [ + 88.10127266000006, + 26.74952289600003 + ], + [ + 87.97945359900018, + 26.737636351 + ], + [ + 87.89031960200003, + 26.67821620100017 + ], + [ + 87.7922746370001, + 26.69603948000008 + ], + [ + 87.67482757700003, + 26.777425748000155 + ], + [ + 87.36865962000013, + 26.78000653600003 + ], + [ + 87.2606505830002, + 26.816124157000104 + ], + [ + 86.94587659100011, + 26.856972189000032 + ], + [ + 86.8414535, + 26.778192693000108 + ], + [ + 86.82253252700008, + 26.669413359000146 + ], + [ + 86.59077458100012, + 26.683603753000057 + ], + [ + 86.58605154600002, + 26.792379063999988 + ], + [ + 86.51510661400016, + 26.825487581000175 + ], + [ + 86.21240256300018, + 26.868049712000072 + ], + [ + 85.88605450400013, + 27.024124773000096 + ], + [ + 85.79146556400008, + 27.057229267000025 + ] + ] + ], + [ + [ + [ + 84.92120357000016, + 27.41666891300008 + ], + [ + 85.03472152900008, + 27.43558703600013 + ], + [ + 84.79350259300014, + 27.525448079000057 + ], + [ + 84.50499765300003, + 27.719354021000072 + ], + [ + 84.39148757300012, + 27.719356033000054 + ], + [ + 84.15499854500018, + 27.686248353 + ], + [ + 84.02729756800005, + 27.648412945000132 + ], + [ + 83.88068349600007, + 27.634225568000033 + ], + [ + 83.8617625230001, + 27.57274397300006 + ], + [ + 83.94231462500011, + 27.50917696 + ], + [ + 84.15972862000012, + 27.53963662900003 + ], + [ + 84.44824261300005, + 27.506529788000023 + ], + [ + 84.65161859700004, + 27.525450257999978 + ], + [ + 84.92120357000016, + 27.41666891300008 + ] + ] + ], + [ + [ + [ + 82.9685435020001, + 27.54504530300011 + ], + [ + 83.09138465200004, + 27.52698112900009 + ], + [ + 83.86196855100013, + 27.503540969000085 + ], + [ + 83.76716654300003, + 27.61057636400011 + ], + [ + 83.54960653500007, + 27.6815194510001 + ], + [ + 83.4219055580001, + 27.69097792600013 + ], + [ + 83.18068662200017, + 27.743002890000184 + ], + [ + 83.01988265900019, + 27.747732631000133 + ], + [ + 82.76036854300014, + 27.710481274000188 + ], + [ + 82.85293559900003, + 27.573947950000104 + ], + [ + 82.9685435020001, + 27.54504530300011 + ] + ] + ], + [ + [ + [ + 79.40142863300014, + 29.238375154000153 + ], + [ + 79.11534153700018, + 29.315369976 + ], + [ + 78.98802160100018, + 29.31515120800003 + ], + [ + 78.78305858800007, + 29.26257706100006 + ], + [ + 78.99159950100011, + 29.140329853000026 + ], + [ + 79.21453063299998, + 29.05403933400015 + ], + [ + 79.51656362900019, + 28.96055613500016 + ], + [ + 79.73229956800009, + 28.867072601000075 + ], + [ + 80.04871356300009, + 28.773592588000042 + ], + [ + 80.11343359000011, + 28.723255403000053 + ], + [ + 80.27883150700006, + 28.500337347000027 + ], + [ + 80.4154665870002, + 28.44280765200017 + ], + [ + 80.52333849600018, + 28.421234645000027 + ], + [ + 80.64558453000012, + 28.435617990000026 + ], + [ + 80.839752659, + 28.363708134000092 + ], + [ + 81.29289259400002, + 28.153866853000125 + ], + [ + 81.42584265400012, + 28.18449851800017 + ], + [ + 81.50532556000013, + 28.101406868000026 + ], + [ + 81.67915365900018, + 28.022545229000116 + ], + [ + 81.82800251300017, + 28.017311233000157 + ], + [ + 82.12597665700008, + 27.96528660399997 + ], + [ + 82.45705462400014, + 27.809215232000156 + ], + [ + 82.54691365500003, + 27.79029677300008 + ], + [ + 82.84488662500002, + 27.79975658900014 + ], + [ + 82.83542664200007, + 27.884886048000055 + ], + [ + 82.71718564800005, + 27.847051645000192 + ], + [ + 82.62731957600016, + 27.85177937400016 + ], + [ + 82.27259860700019, + 27.951099227000043 + ], + [ + 81.93206065600003, + 28.10717076700007 + ], + [ + 81.75706462200009, + 28.26797607100002 + ], + [ + 81.54895755700005, + 28.32945733100007 + ], + [ + 81.41652650400005, + 28.405128482000123 + ], + [ + 81.36464654700012, + 28.575619411000105 + ], + [ + 81.20462763300003, + 28.67181666900018 + ], + [ + 80.9807505190002, + 28.778791212000158 + ], + [ + 80.7076416270001, + 28.85248825700006 + ], + [ + 80.37832654100015, + 29.00389342400007 + ], + [ + 80.22441049100013, + 29.040230986000154 + ], + [ + 80.11576057400009, + 29.101690286000178 + ], + [ + 79.75504252100006, + 29.132369392000157 + ], + [ + 79.45823664700004, + 29.258463223000035 + ], + [ + 79.40142863300014, + 29.238375154000153 + ] + ] + ], + [ + [ + [ + 124.56006999800013, + -15.252980000999855 + ], + [ + 124.5047399980001, + -15.281180000999882 + ], + [ + 124.4609699990001, + -15.36902000099991 + ], + [ + 124.62529999800006, + -15.374750000999938 + ], + [ + 124.56006999800013, + -15.252980000999855 + ] + ] + ], + [ + [ + [ + 125.17871999800002, + -14.449850001999948 + ], + [ + 125.11973999800011, + -14.49518000199987 + ], + [ + 125.1003399980001, + -14.632590001999915 + ], + [ + 125.21076999800005, + -14.607210001999817 + ], + [ + 125.20812999800012, + -14.487310001999845 + ], + [ + 125.17871999800002, + -14.449850001999948 + ] + ] + ], + [ + [ + [ + 119.54338637900003, + -20.064235464999967 + ], + [ + 119.47065730800023, + -20.07426085999998 + ], + [ + 119.37258149700006, + -20.136926649999964 + ], + [ + 119.3924712500002, + -20.261360194999895 + ], + [ + 119.5026550560001, + -20.252923975999977 + ], + [ + 120.02786259400023, + -20.08935934999994 + ], + [ + 120.20686333300011, + -20.089254408999977 + ], + [ + 120.39736169700006, + -19.996795646999942 + ], + [ + 120.6534194510001, + -19.912572774999887 + ], + [ + 120.78090669000005, + -19.857097651999936 + ], + [ + 121.03435515800004, + -19.856668497999976 + ], + [ + 121.07146452500012, + -19.749406791999945 + ], + [ + 121.14981838900019, + -19.766138076999823 + ], + [ + 121.25948335400017, + -19.747577693999972 + ], + [ + 121.27616116200022, + -19.704742479999936 + ], + [ + 121.37350456200011, + -19.676456406999876 + ], + [ + 121.7007446240001, + -19.685032099999887 + ], + [ + 121.93840024500003, + -19.701847035999833 + ], + [ + 121.96566775000008, + -19.545619926999905 + ], + [ + 121.85272981800006, + -19.468116826999903 + ], + [ + 121.85505680200004, + -19.388706173999935 + ], + [ + 121.98514561600018, + -19.24728972099996 + ], + [ + 122.10074614200005, + -19.16390805599991 + ], + [ + 122.28833766200012, + -19.073768566999888 + ], + [ + 122.42613195900003, + -19.027635577999945 + ], + [ + 122.74119562900012, + -18.900247581999906 + ], + [ + 123.09499358300002, + -18.83789627999994 + ], + [ + 123.23018647300034, + -18.825372709999954 + ], + [ + 123.29765308300023, + -18.91488271999998 + ], + [ + 123.5111924590002, + -18.925474092999934 + ], + [ + 123.72061917200028, + -18.877140014999952 + ], + [ + 123.75351713600003, + -18.811872481999842 + ], + [ + 123.88830568300023, + -18.843219793999936 + ], + [ + 124.02780921800013, + -18.900381021999863 + ], + [ + 124.27593232800007, + -18.846282876999908 + ], + [ + 124.47943135800006, + -18.754880905999926 + ], + [ + 124.635154714, + -18.811634100999925 + ], + [ + 124.71266938200006, + -18.868507326999975 + ], + [ + 124.79085543900021, + -18.97334297499998 + ], + [ + 124.73211673700007, + -19.068615038999894 + ], + [ + 124.76696014200013, + -19.11663814699989 + ], + [ + 124.8756256490002, + -19.162555721999865 + ], + [ + 125.04530336500011, + -19.265338976999885 + ], + [ + 125.36598207200018, + -19.346918028999937 + ], + [ + 125.5028533540002, + -19.302120277999904 + ], + [ + 125.77574917900017, + -19.31149677699983 + ], + [ + 125.89017489800005, + -19.27872085399997 + ], + [ + 126.07909394300009, + -19.27749256999988 + ], + [ + 126.17906959600009, + -19.19998930099996 + ], + [ + 126.29249568900025, + -19.191493906999938 + ], + [ + 126.3672485190001, + -19.25200655499998 + ], + [ + 126.54590610400021, + -19.253751834999946 + ], + [ + 126.56618494500003, + -19.321661007999978 + ], + [ + 126.68591305600012, + -19.327385009999944 + ], + [ + 126.78652958900034, + -19.360157077999872 + ], + [ + 127.0804061550001, + -19.34486194899995 + ], + [ + 127.33006281700011, + -19.295536124999956 + ], + [ + 127.48733514900005, + -19.293201429999954 + ], + [ + 127.51929467600019, + -19.401838270999974 + ], + [ + 127.64909364300001, + -19.474748591999912 + ], + [ + 127.7169875620001, + -19.478202773999897 + ], + [ + 127.72709664100012, + -19.38523489399995 + ], + [ + 127.92285917400011, + -19.267270838999934 + ], + [ + 128.02607728300018, + -19.16164025199987 + ], + [ + 128.20216363400004, + -19.14706797799994 + ], + [ + 128.23628233800002, + -18.915147757999875 + ], + [ + 128.34881592600016, + -18.774360617999832 + ], + [ + 128.46626281800002, + -18.747364015999892 + ], + [ + 128.53800956300006, + -18.675026180999964 + ], + [ + 128.66839593400005, + -18.619905443999983 + ], + [ + 128.76890568200008, + -18.677419716999964 + ], + [ + 128.95236224100006, + -18.692552572999887 + ], + [ + 129.00051999800007, + -18.652488136999978 + ], + [ + 129.10540774600008, + -18.6414489469999 + ], + [ + 129.2673187910002, + -18.671842565999896 + ], + [ + 129.41215506000003, + -18.661548582999956 + ], + [ + 129.57490530100017, + -18.567283687999975 + ], + [ + 129.87199398000007, + -18.2706280189999 + ], + [ + 129.98761009600014, + -18.200017859999946 + ], + [ + 130.14070120000008, + -18.152967387999865 + ], + [ + 130.25271611500023, + -18.158706644999825 + ], + [ + 130.44197077200022, + -18.213468635999902 + ], + [ + 130.72145074900016, + -18.271274598999923 + ], + [ + 131.34124756200004, + -18.372955299999944 + ], + [ + 131.64193727500003, + -18.37128260699984 + ], + [ + 132.2151489790001, + -18.37593070799994 + ], + [ + 132.36535637200018, + -18.39409060299994 + ], + [ + 132.68576048800014, + -18.466512761999923 + ], + [ + 132.86830140900008, + -18.451881478999894 + ], + [ + 133.1094055120002, + -18.23625584699988 + ], + [ + 133.40591449900012, + -18.052892661999977 + ], + [ + 133.48309321900012, + -18.055492392999952 + ], + [ + 133.60339347900015, + -17.987216929999875 + ], + [ + 133.78062429500005, + -17.975128214999927 + ], + [ + 133.8687286590001, + -18.06635483699995 + ], + [ + 133.91796865300012, + -18.201393164999956 + ], + [ + 133.96942130000002, + -18.27998742099993 + ], + [ + 134.06852724700002, + -18.353185743999973 + ], + [ + 134.11462402700022, + -18.442249331999903 + ], + [ + 134.24888602200008, + -18.55721668999996 + ], + [ + 134.3923949340001, + -18.649309161999952 + ], + [ + 134.49038692500028, + -18.78350443799991 + ], + [ + 134.53320319600004, + -18.884717930999898 + ], + [ + 134.58677680100016, + -18.93339348699982 + ], + [ + 134.63162233000014, + -19.04855915999991 + ], + [ + 134.70930480200002, + -19.112794880999957 + ], + [ + 134.84553520400027, + -19.125892610999927 + ], + [ + 134.8722228490003, + -19.010286383999926 + ], + [ + 134.94007871300005, + -18.988811445999886 + ], + [ + 135.03880311600005, + -19.09203726599992 + ], + [ + 135.09506228200019, + -18.992780779999975 + ], + [ + 135.27185053500023, + -19.01595305399985 + ], + [ + 135.29646298700004, + -19.136758742999973 + ], + [ + 135.2585603570003, + -19.245778971999982 + ], + [ + 135.18373108300023, + -19.30571360299996 + ], + [ + 135.3435821920001, + -19.37161262899997 + ], + [ + 135.5801391130002, + -19.381002372999944 + ], + [ + 135.67622371900018, + -19.41023258399997 + ], + [ + 135.89428714500002, + -19.41272351799995 + ], + [ + 135.96824637600014, + -19.376476311999852 + ], + [ + 136.0322571270001, + -19.390796626999872 + ], + [ + 136.25245659600023, + -19.529117642999893 + ], + [ + 136.25637815400012, + -19.698801057999958 + ], + [ + 136.33242799900006, + -19.76705740999995 + ], + [ + 136.6408386190002, + -19.849849825999968 + ], + [ + 136.74909978300025, + -19.85468299899992 + ], + [ + 136.8264769870001, + -19.886405988999968 + ], + [ + 137.00714119800023, + -20.14727026099996 + ], + [ + 137.07746888700012, + -20.28620533599991 + ], + [ + 137.1286772860002, + -20.429090465999934 + ], + [ + 137.2357787300001, + -20.47077182699985 + ], + [ + 137.37347412100019, + -20.582792274999974 + ], + [ + 137.53405763900014, + -20.672393813999918 + ], + [ + 137.71267700300018, + -20.941650383999956 + ], + [ + 137.76545717700003, + -21.117130220999968 + ], + [ + 137.6384584350002, + -21.04702750299998 + ], + [ + 137.41967768600023, + -21.001092996999944 + ], + [ + 137.1058044130001, + -20.982330441999977 + ], + [ + 137.00846855700001, + -21.089910492999877 + ], + [ + 136.8944243830001, + -21.248132660999943 + ], + [ + 136.90599073800013, + -21.326324417999956 + ], + [ + 136.85638428800007, + -21.407400220999875 + ], + [ + 136.73582452500023, + -21.458665784999937 + ], + [ + 136.72026067200022, + -21.499685309999904 + ], + [ + 136.58563238700026, + -21.53625672699991 + ], + [ + 136.6678618740001, + -21.65473559999998 + ], + [ + 136.73899841700006, + -21.70904161499982 + ], + [ + 136.86941529800004, + -21.75728030599987 + ], + [ + 136.9053191810001, + -21.799514703999932 + ], + [ + 137.28866569000013, + -22.049617786999875 + ], + [ + 137.50895685800003, + -22.224180307999973 + ], + [ + 137.64463807700008, + -22.42016412499993 + ], + [ + 137.63932797400014, + -22.560737692999965 + ], + [ + 137.75665282600016, + -22.611930837999978 + ], + [ + 137.89785772000005, + -22.58022880399983 + ], + [ + 137.968098477, + -22.479625305999946 + ], + [ + 138.10893485600002, + -22.473171 + ], + [ + 138.24604842700012, + -22.56521463999991 + ], + [ + 138.40001696800005, + -22.631205116999922 + ], + [ + 138.48974655400002, + -22.74180344499996 + ], + [ + 138.4031355310001, + -22.870460519999938 + ], + [ + 138.44767067200019, + -22.937416688999974 + ], + [ + 138.57802268900014, + -22.83020040399998 + ], + [ + 138.63399333200016, + -22.814237456999933 + ], + [ + 138.71015953900007, + -22.905653569999913 + ], + [ + 138.71165503300017, + -23.10458816299996 + ], + [ + 138.83125544100005, + -23.184153306999917 + ], + [ + 138.89213049800014, + -23.135678836999887 + ], + [ + 138.93157990200007, + -23.03404631999996 + ], + [ + 139.03328030400007, + -23.036806328999887 + ], + [ + 139.0573420400002, + -22.991390885999976 + ], + [ + 139.23819898500005, + -22.99718832799988 + ], + [ + 139.2439127580002, + -23.05448406299996 + ], + [ + 139.36528194200002, + -23.04815728799997 + ], + [ + 139.44703556700006, + -23.008820409999885 + ], + [ + 139.62066630800018, + -23.084545491999847 + ], + [ + 139.62515674000008, + -23.240275200999974 + ], + [ + 139.65090267500022, + -23.306103488999895 + ], + [ + 139.7388965570001, + -23.362343791999876 + ], + [ + 139.94024265200005, + -23.310817940999982 + ], + [ + 140.02587128900007, + -23.351041769999938 + ], + [ + 139.92382087900012, + -23.42356348499993 + ], + [ + 139.89989322200006, + -23.50397841599988 + ], + [ + 139.95042630800015, + -23.66308261899991 + ], + [ + 139.91080876900003, + -23.786231646999966 + ], + [ + 139.97453071400003, + -23.845562644999973 + ], + [ + 139.9919560290001, + -24.041320887999916 + ], + [ + 139.93880591900017, + -24.092989836999948 + ], + [ + 139.94000320500004, + -24.21136687099994 + ], + [ + 139.99444801100003, + -24.271217905999833 + ], + [ + 139.8409404560001, + -24.367780586999856 + ], + [ + 139.88115939600004, + -24.446401878999893 + ], + [ + 140.03022227400015, + -24.485727195999857 + ], + [ + 140.06793629000003, + -24.555746219999946 + ], + [ + 140.14799921300005, + -24.501385617999915 + ], + [ + 140.22483132200023, + -24.585276272999977 + ], + [ + 140.40125455800012, + -24.67138813799994 + ], + [ + 140.49826214700022, + -24.56535619899995 + ], + [ + 140.5469301610002, + -24.59837828399992 + ], + [ + 140.64422062200003, + -24.56838866299995 + ], + [ + 140.69915422400004, + -24.487946590999968 + ], + [ + 140.8768167850002, + -24.37787701999997 + ], + [ + 140.89558178700008, + -24.27972640699994 + ], + [ + 140.85663155200007, + -24.236564228999953 + ], + [ + 140.84214161900013, + -24.052032387999873 + ], + [ + 140.79881907200001, + -23.96905072699991 + ], + [ + 140.82678749800004, + -23.86749922599995 + ], + [ + 140.9012844890001, + -23.71318318999988 + ], + [ + 141.04168112600019, + -23.691719073999934 + ], + [ + 141.09865943500006, + -23.640633673999957 + ], + [ + 141.12289612400002, + -23.560766457999932 + ], + [ + 141.29449127800012, + -23.455921539999963 + ], + [ + 141.43859090500018, + -23.387404879999906 + ], + [ + 141.49759957700007, + -23.321144099999913 + ], + [ + 141.57668028800015, + -23.050166595999883 + ], + [ + 141.6312508850001, + -23.009606826999857 + ], + [ + 141.74361028400006, + -23.024075723999943 + ], + [ + 141.82409966400007, + -23.08922536599988 + ], + [ + 141.99822887000005, + -23.13442571199994 + ], + [ + 142.03829264700005, + -23.174964336999892 + ], + [ + 142.1568172640001, + -23.141255248999983 + ], + [ + 142.244893487, + -23.22192968899998 + ], + [ + 142.37093441000013, + -23.078501012999936 + ], + [ + 142.37938248600017, + -23.00663104499995 + ], + [ + 142.45658923300005, + -22.943555738999976 + ], + [ + 142.45888191300003, + -22.85400106499992 + ], + [ + 142.53619275900007, + -22.759430942999927 + ], + [ + 142.55883034900012, + -22.664232418999973 + ], + [ + 142.62776357000007, + -22.629934892999927 + ], + [ + 142.59271441600004, + -22.561475168999948 + ], + [ + 142.72576316800007, + -22.54854051199993 + ], + [ + 142.8634343320001, + -22.622656989999825 + ], + [ + 142.94910383700017, + -22.63016330399995 + ], + [ + 142.9846586130002, + -22.542414918999953 + ], + [ + 143.07249305300002, + -22.571270113999958 + ], + [ + 143.15577919700013, + -22.548680111999943 + ], + [ + 143.2156304770001, + -22.582259783999916 + ], + [ + 143.29190737000033, + -22.705775514999914 + ], + [ + 143.2683627670001, + -22.790214618999926 + ], + [ + 143.3375941280002, + -22.927112452999893 + ], + [ + 143.25889902300014, + -22.95307711499987 + ], + [ + 143.20147572800022, + -23.012669156999834 + ], + [ + 143.17231689300013, + -23.146051651999983 + ], + [ + 143.09028974800003, + -23.347444107999877 + ], + [ + 143.1272830050001, + -23.642871464999928 + ], + [ + 143.23004725900012, + -23.750040739999918 + ], + [ + 143.18997380100018, + -23.910548603999928 + ], + [ + 143.13336963600023, + -24.0496860209999 + ], + [ + 143.16838600500012, + -24.139616040999954 + ], + [ + 143.22272221900016, + -24.14235165499997 + ], + [ + 143.3203318430002, + -24.33192859099995 + ], + [ + 143.42103557300015, + -24.514402398999948 + ], + [ + 143.49207803100023, + -24.59092272099997 + ], + [ + 143.60832252900025, + -24.604794125999888 + ], + [ + 143.6413197290002, + -24.73812800199994 + ], + [ + 143.58765775700022, + -24.865621760999943 + ], + [ + 143.57112059300005, + -24.980416691999835 + ], + [ + 143.65081576900002, + -25.021355960999983 + ], + [ + 143.61435619500014, + -25.110972267999955 + ], + [ + 143.4985049820001, + -25.173738961999902 + ], + [ + 143.55885784200018, + -25.24832687399993 + ], + [ + 143.5451566180002, + -25.311110223999947 + ], + [ + 143.68940053300025, + -25.298984394999934 + ], + [ + 143.78658237100012, + -25.452099202999932 + ], + [ + 143.842181653, + -25.487812279999957 + ], + [ + 143.8667172160001, + -25.57130042499989 + ], + [ + 143.74086644400006, + -25.572435295999924 + ], + [ + 143.79011793900008, + -25.650870409999925 + ], + [ + 143.7579689700001, + -25.695654523999906 + ], + [ + 143.82064679100006, + -25.858268833999944 + ], + [ + 143.88272559600023, + -25.938449525999943 + ], + [ + 143.8652995670002, + -26.005790108999918 + ], + [ + 143.92682710500014, + -26.144571681999935 + ], + [ + 144.00821171000018, + -26.12836993299993 + ], + [ + 143.98024801600002, + -26.00304680399995 + ], + [ + 144.00851829900023, + -25.863192079999976 + ], + [ + 143.94732263900005, + -25.737759292999954 + ], + [ + 143.86787356300033, + -25.47767701299989 + ], + [ + 143.85894317100008, + -25.324105403999965 + ], + [ + 143.90020480600015, + -25.320409393999967 + ], + [ + 143.97158197600004, + -25.158532733999948 + ], + [ + 143.98328272800006, + -25.080521570999906 + ], + [ + 144.04803559800007, + -25.07518353599994 + ], + [ + 144.11399838000023, + -25.136894112999926 + ], + [ + 144.23713558300005, + -24.922807805999923 + ], + [ + 144.21578398400004, + -24.876668862999963 + ], + [ + 144.37795404800022, + -24.836739361999832 + ], + [ + 144.44796990600014, + -24.89182401599993 + ], + [ + 144.5057806000002, + -24.87169067799988 + ], + [ + 144.59936045300014, + -24.77899169799997 + ], + [ + 144.61783593000018, + -24.67594475699991 + ], + [ + 144.72469718000013, + -24.655424589999825 + ], + [ + 144.8275186420001, + -24.782033765999984 + ], + [ + 144.809664042, + -24.838549715999875 + ], + [ + 144.91466949600022, + -24.93595329199991 + ], + [ + 144.88334045600027, + -25.012786731999938 + ], + [ + 144.95581298800005, + -25.024446551999915 + ], + [ + 145.20143372100017, + -24.992473392999898 + ], + [ + 145.13173562300005, + -25.06837652799993 + ], + [ + 145.0214944080002, + -25.12390603199998 + ], + [ + 145.08815454000023, + -25.2533548159999 + ], + [ + 145.01909349900018, + -25.414953372999832 + ], + [ + 145.08627371700015, + -25.459847264999894 + ], + [ + 145.1092832520003, + -25.535958609999966 + ], + [ + 145.17611491800005, + -25.590066441999966 + ], + [ + 145.33077441700016, + -25.445676705999915 + ], + [ + 145.41560076100018, + -25.49375708899987 + ], + [ + 145.53614121800013, + -25.38304851299995 + ], + [ + 145.4655282550001, + -25.274201294999898 + ], + [ + 145.5573864470001, + -25.240614518999962 + ], + [ + 145.60558588300012, + -25.13070296799998 + ], + [ + 145.7121432570001, + -24.99723193699998 + ], + [ + 145.75936490300012, + -24.812924103999933 + ], + [ + 145.86914257000024, + -24.75453876599994 + ], + [ + 145.8229028390001, + -24.89490095699989 + ], + [ + 145.82308541200007, + -24.98297645299988 + ], + [ + 145.71879000500007, + -25.19214643999993 + ], + [ + 145.7781885820002, + -25.23822837299997 + ], + [ + 145.78982832400015, + -25.3535013959999 + ], + [ + 145.82533817000012, + -25.37398735499994 + ], + [ + 145.73054663400023, + -25.491966240999943 + ], + [ + 145.76148250800009, + -25.617443523999953 + ], + [ + 145.9206132800001, + -25.64846869199988 + ], + [ + 146.12934420300007, + -25.85821237599987 + ], + [ + 146.14236950600014, + -26.045009396999887 + ], + [ + 146.27074745100003, + -25.962434004999977 + ], + [ + 146.4138029940002, + -25.99839143099996 + ], + [ + 146.4788938480001, + -25.934838855999885 + ], + [ + 146.54634753100015, + -26.029283429999964 + ], + [ + 146.42136475100006, + -26.133866544999876 + ], + [ + 146.70299134100014, + -26.123472696999897 + ], + [ + 146.79500759200005, + -26.053972407999936 + ], + [ + 146.91800065600012, + -25.915971697999964 + ], + [ + 146.8937577900001, + -25.837931770999944 + ], + [ + 146.9907359990001, + -25.78844387999993 + ], + [ + 147.0401967160002, + -25.894304914999964 + ], + [ + 147.01878815700013, + -26.020882363999874 + ], + [ + 147.06742948300018, + -26.101160012999912 + ], + [ + 147.03922045000002, + -26.278419708999877 + ], + [ + 146.97358489300007, + -26.34184418399991 + ], + [ + 147.03998121200004, + -26.398498434999965 + ], + [ + 147.02069392900023, + -26.480643229999885 + ], + [ + 147.09578199300006, + -26.582196008999972 + ], + [ + 147.0762517600001, + -26.637513470999977 + ], + [ + 147.1843492370001, + -26.70837933499996 + ], + [ + 147.31641047000016, + -26.66155391999996 + ], + [ + 147.35231809700008, + -26.712826052999844 + ], + [ + 147.45100010500005, + -26.63771242499996 + ], + [ + 147.546980404, + -26.69846079399997 + ], + [ + 147.5741933260001, + -26.608692619999943 + ], + [ + 147.62016419400004, + -26.58581685199988 + ], + [ + 147.7063015010001, + -26.695675865999874 + ], + [ + 147.80441783100014, + -26.741011778999848 + ], + [ + 147.848270242, + -26.713994368999977 + ], + [ + 147.97795039000005, + -26.749850800999866 + ], + [ + 148.05243022500008, + -26.88590874399995 + ], + [ + 148.19970552500024, + -26.79608072199983 + ], + [ + 148.26900828300018, + -26.91806670299991 + ], + [ + 148.34737186100006, + -26.93627820399996 + ], + [ + 148.41878865800004, + -27.044681643999922 + ], + [ + 148.53005492800003, + -27.009205758999883 + ], + [ + 148.6095685560001, + -27.07845652599991 + ], + [ + 148.66975018500023, + -27.18816865799988 + ], + [ + 148.7733630460002, + -27.267678516999922 + ], + [ + 148.81423211900017, + -27.33595995099995 + ], + [ + 148.71530122800016, + -27.406090630999927 + ], + [ + 148.73182685400002, + -27.518163344999948 + ], + [ + 148.67278361400008, + -27.573972073999926 + ], + [ + 148.71758956000008, + -27.68927028699983 + ], + [ + 148.61178954200022, + -27.822221642999978 + ], + [ + 148.66399770400005, + -27.87701329899994 + ], + [ + 148.84060566300002, + -28.132775606999928 + ], + [ + 148.8207494080002, + -28.251278332999902 + ], + [ + 148.77174699900002, + -28.306885452999836 + ], + [ + 148.8991813240001, + -28.527734221999935 + ], + [ + 148.87845494800013, + -28.615771961999883 + ], + [ + 148.90838280900005, + -28.755326976999868 + ], + [ + 148.84061624700007, + -28.802682270999924 + ], + [ + 148.74170630300023, + -28.98008916299989 + ], + [ + 148.55417647800016, + -29.186719787999948 + ], + [ + 148.57714093200002, + -29.252077148999888 + ], + [ + 148.47292341000002, + -29.373961190999978 + ], + [ + 148.49411893500007, + -29.541772069999922 + ], + [ + 148.6672296900001, + -29.419887852999977 + ], + [ + 148.66899954500002, + -29.340398874999835 + ], + [ + 148.60010555600002, + -29.269741023999984 + ], + [ + 148.63013489000002, + -29.146091095999907 + ], + [ + 148.77321666600017, + -29.117827580999972 + ], + [ + 148.82798049100006, + -29.066599802999917 + ], + [ + 148.77573089800012, + -28.991685987999915 + ], + [ + 148.89905070500004, + -28.968019980999884 + ], + [ + 148.94178097100007, + -28.89146412799994 + ], + [ + 149.01033352600018, + -28.893712026999935 + ], + [ + 149.16667427800007, + -28.77539184199992 + ], + [ + 149.2219653860002, + -28.646321526999884 + ], + [ + 149.3072349470002, + -28.638009884999974 + ], + [ + 149.37728323000022, + -28.524222934999898 + ], + [ + 149.4704780930001, + -28.50272016499997 + ], + [ + 149.55082951600014, + -28.426224078999894 + ], + [ + 149.6997972570001, + -28.329283985999894 + ], + [ + 149.94147498600023, + -28.22549964399991 + ], + [ + 149.90174328900002, + -28.37009770399993 + ], + [ + 150.0423360210001, + -28.382137526999884 + ], + [ + 150.16070120100005, + -28.30110394499991 + ], + [ + 150.1808164680001, + -28.353372829999955 + ], + [ + 150.28724864100013, + -28.41615891799995 + ], + [ + 150.39400862000014, + -28.59131387099984 + ], + [ + 150.4807509730001, + -28.645268770999905 + ], + [ + 150.56192399700012, + -28.653923896999913 + ], + [ + 150.68377845500004, + -28.59784939499997 + ], + [ + 150.74724909200006, + -28.66137644299988 + ], + [ + 150.67989692800006, + -28.716411434999884 + ], + [ + 150.73429540300003, + -28.798122627999874 + ], + [ + 150.54015622100007, + -28.74922563499996 + ], + [ + 150.43040963200008, + -28.76371363399994 + ], + [ + 150.26003486000002, + -28.721332987999972 + ], + [ + 150.1430608720001, + -28.755671495999934 + ], + [ + 149.87830527200015, + -28.800393568999937 + ], + [ + 149.88006033300007, + -28.853753750999942 + ], + [ + 149.79392448200008, + -28.927108801999907 + ], + [ + 149.66308034300005, + -28.959740136999926 + ], + [ + 149.65545113800022, + -29.00863895699996 + ], + [ + 149.7143657680001, + -29.095513073999882 + ], + [ + 149.78847843000005, + -29.264731134999977 + ], + [ + 149.90353035500016, + -29.421778212999982 + ], + [ + 149.73435589300004, + -29.46232519299997 + ], + [ + 149.64396293400023, + -29.565564584999947 + ], + [ + 149.6345638260002, + -29.67053403099993 + ], + [ + 149.48911718800002, + -29.74409342799993 + ], + [ + 149.4496887580001, + -29.846110223999972 + ], + [ + 149.54572823400008, + -29.963316612999904 + ], + [ + 149.60426147200008, + -30.08727337099998 + ], + [ + 149.67162940900005, + -30.16529344199995 + ], + [ + 149.70740413700014, + -30.26166696699994 + ], + [ + 149.49291840100022, + -30.22017034399994 + ], + [ + 149.25030410900013, + -30.308168636999937 + ], + [ + 149.08790480200025, + -30.306447040999956 + ], + [ + 148.89901623300022, + -30.35189574499998 + ], + [ + 148.54981865100012, + -30.400685259999932 + ], + [ + 148.45895259400015, + -30.475270557999977 + ], + [ + 148.51438803200017, + -30.561673500999973 + ], + [ + 148.73432875100002, + -30.70885336799995 + ], + [ + 148.8822326170001, + -30.88845124799991 + ], + [ + 148.8925780830001, + -30.932615720999934 + ], + [ + 148.81120285400004, + -31.015017501999978 + ], + [ + 148.79412828900013, + -31.102461980999976 + ], + [ + 148.7176510810001, + -31.257549267999934 + ], + [ + 148.74490353900012, + -31.278388878999976 + ], + [ + 148.70663434900007, + -31.413122565999913 + ], + [ + 148.59281843100007, + -31.394510881999906 + ], + [ + 148.56088169200018, + -31.49282164499988 + ], + [ + 148.67341580900006, + -31.68795698499997 + ], + [ + 148.66694593800003, + -31.739720565999846 + ], + [ + 148.55946261600002, + -31.740407374999904 + ], + [ + 148.5079486840001, + -31.68123946099996 + ], + [ + 148.43197476900002, + -31.692657052999834 + ], + [ + 148.39396519700017, + -31.767478818999905 + ], + [ + 148.22639326700005, + -31.953438665999954 + ], + [ + 148.2741843340002, + -32.06149970599995 + ], + [ + 148.27390999800002, + -32.13302919599994 + ], + [ + 148.34126281700003, + -32.27128543999993 + ], + [ + 148.4211124190001, + -32.21596445599994 + ], + [ + 148.54071116200032, + -32.32780713899996 + ], + [ + 148.59744422500012, + -32.438097520999975 + ], + [ + 148.6526201920001, + -32.45573627599998 + ], + [ + 148.7387255770002, + -32.40871974899994 + ], + [ + 148.96583744300005, + -32.36133283999982 + ], + [ + 149.04945559400005, + -32.281784660999904 + ], + [ + 149.03039733900016, + -32.233547815999884 + ], + [ + 149.1046767580001, + -32.15805087899997 + ], + [ + 149.1629658500002, + -32.27700415199996 + ], + [ + 149.24603458800004, + -32.324756064999974 + ], + [ + 149.39834757900007, + -32.248160113999916 + ], + [ + 149.31178453200016, + -32.20027843399998 + ], + [ + 149.3822493450001, + -32.140879481999946 + ], + [ + 149.34468205100006, + -32.03056645399988 + ], + [ + 149.49194406100003, + -31.903233367999974 + ], + [ + 149.55046142600008, + -31.901486069999976 + ], + [ + 149.6500097710002, + -31.966852155999902 + ], + [ + 149.7408917570001, + -32.13293540799998 + ], + [ + 149.9201060270001, + -32.15607415199992 + ], + [ + 149.97793705700008, + -32.22536807599988 + ], + [ + 150.17448656000022, + -32.22006093699997 + ], + [ + 150.2788418030001, + -32.28376632899989 + ], + [ + 150.31593604800003, + -32.20211250999995 + ], + [ + 150.43910438400007, + -32.21660068099993 + ], + [ + 150.50325197700022, + -32.13550749199993 + ], + [ + 150.56155569400016, + -32.176160995999965 + ], + [ + 150.64328137600012, + -32.14080266899998 + ], + [ + 150.735612198, + -32.17941136099995 + ], + [ + 150.7831734250002, + -32.117048457999886 + ], + [ + 150.77331611500006, + -32.05058841299996 + ], + [ + 150.68386916900022, + -31.93126974699993 + ], + [ + 150.79212993800002, + -31.88903729499998 + ], + [ + 150.88037185200005, + -31.80507433899993 + ], + [ + 150.79245099500008, + -31.740191787999947 + ], + [ + 150.7080245640002, + -31.567441196999937 + ], + [ + 150.5810106150002, + -31.424619046999908 + ], + [ + 150.53474620400004, + -31.23603234199993 + ], + [ + 150.56601195300016, + -31.13753881499997 + ], + [ + 150.4967214840001, + -31.066680770999938 + ], + [ + 150.45894, + -30.870129856999938 + ], + [ + 150.33961606700007, + -30.810416911999937 + ], + [ + 150.23883160200023, + -30.54364569699993 + ], + [ + 150.27548330800016, + -30.506582077999894 + ], + [ + 150.0474547470003, + -30.270538166999927 + ], + [ + 149.97198460200002, + -30.260282573999973 + ], + [ + 149.94035257100018, + -30.12811447799993 + ], + [ + 149.9622792780001, + -30.063806272999955 + ], + [ + 150.0521839710001, + -29.995597027999963 + ], + [ + 150.13889991400004, + -30.010304444999974 + ], + [ + 150.1988357150002, + -29.78041308899998 + ], + [ + 150.25321788800022, + -29.706029912999952 + ], + [ + 150.25703189900003, + -29.51425351599994 + ], + [ + 150.28941120100012, + -29.474118811999915 + ], + [ + 150.41032233500016, + -29.47156089899994 + ], + [ + 150.4685199080002, + -29.544238375999953 + ], + [ + 150.52989072100002, + -29.518467915999963 + ], + [ + 150.6077726100002, + -29.64920316699994 + ], + [ + 150.74090549000005, + -29.534651389999965 + ], + [ + 150.61959756300007, + -29.452389435999976 + ], + [ + 150.68134990300018, + -29.3765032849999 + ], + [ + 150.81448271800014, + -29.308896961999892 + ], + [ + 150.8727246320002, + -29.071659046999912 + ], + [ + 150.812589182, + -29.00352109399995 + ], + [ + 150.92585673900032, + -28.848969273999842 + ], + [ + 150.96335009600023, + -28.870191928999873 + ], + [ + 151.10675072000004, + -28.846096287999956 + ], + [ + 151.08529075500007, + -28.668483883999954 + ], + [ + 151.14694763700004, + -28.550414658999955 + ], + [ + 151.2060963350001, + -28.51559949599988 + ], + [ + 151.22748264300003, + -28.437824983999974 + ], + [ + 151.29902266400006, + -28.417783429999872 + ], + [ + 151.3296307080002, + -28.28907545899989 + ], + [ + 151.25465220600017, + -28.24872703299991 + ], + [ + 151.2453567130001, + -28.131642083999907 + ], + [ + 151.31802404500002, + -28.078233069999953 + ], + [ + 151.4552315830001, + -28.093514793999873 + ], + [ + 151.5700040260001, + -28.153554579999934 + ], + [ + 151.59428720900019, + -28.016090799999972 + ], + [ + 151.7133345100002, + -27.985668486999884 + ], + [ + 151.81917784700022, + -28.154897991999974 + ], + [ + 152.02884432500002, + -28.304746438999928 + ], + [ + 152.12842500300007, + -28.443405098999847 + ], + [ + 152.21630999600006, + -28.44891000499996 + ], + [ + 152.25319294200006, + -28.372094862999973 + ], + [ + 152.32332000400004, + -28.352092091999964 + ], + [ + 152.32501482400016, + -28.22874549999989 + ], + [ + 152.3755204590001, + -28.168226987999958 + ], + [ + 152.33390902700023, + -28.118524127999876 + ], + [ + 152.38249211900006, + -28.05980613899993 + ], + [ + 152.18835338600013, + -27.918863160999877 + ], + [ + 152.11399607700014, + -27.786410562999947 + ], + [ + 151.98869078200005, + -27.753546262999976 + ], + [ + 152.00640460500017, + -27.60089577499997 + ], + [ + 151.96399947500004, + -27.505500564999977 + ], + [ + 152.013498227, + -27.449796169999843 + ], + [ + 151.95970947400008, + -27.318651803999956 + ], + [ + 152.02689245200008, + -27.21871406999992 + ], + [ + 151.95764733500005, + -27.130528763999905 + ], + [ + 151.83981892500003, + -27.11648826499993 + ], + [ + 151.7340593880001, + -27.005371420999893 + ], + [ + 151.59608921200015, + -26.935720546999903 + ], + [ + 151.52719518900005, + -26.85095083899995 + ], + [ + 151.50398564600005, + -26.757897437999873 + ], + [ + 151.57438863100026, + -26.703285735999884 + ], + [ + 151.6195531000002, + -26.586582679999935 + ], + [ + 151.809828325, + -26.496224614999903 + ], + [ + 151.73441845900004, + -26.38259725499995 + ], + [ + 151.70634093900003, + -26.251101533999872 + ], + [ + 151.63457879300006, + -26.211797495999917 + ], + [ + 151.56656959600002, + -26.09319158699998 + ], + [ + 151.6484776560003, + -26.037618734999967 + ], + [ + 151.6489797160001, + -25.867729415999918 + ], + [ + 151.56359077600007, + -25.755238532999897 + ], + [ + 151.5193700540002, + -25.65722222599993 + ], + [ + 151.46673947200009, + -25.39679726099996 + ], + [ + 151.3653748370001, + -25.331327795999982 + ], + [ + 151.39152685800002, + -25.237859929999956 + ], + [ + 151.4134046700001, + -24.944908927999904 + ], + [ + 151.30166490300007, + -24.70686975899997 + ], + [ + 151.1802208140001, + -24.650907695999933 + ], + [ + 151.12855443800004, + -24.568413070999952 + ], + [ + 150.98553473100003, + -24.55929374199991 + ], + [ + 150.91908310000008, + -24.515878761999886 + ], + [ + 150.8673097100002, + -24.406369238999957 + ], + [ + 150.90232763400002, + -24.303022571999975 + ], + [ + 150.7899929020001, + -24.207110496999917 + ], + [ + 150.94808777000003, + -24.213828482999872 + ], + [ + 151.0696991650001, + -24.145927732999894 + ], + [ + 150.99966300300002, + -24.319004295999946 + ], + [ + 151.07282873400004, + -24.36858163099987 + ], + [ + 151.1342609750002, + -24.460946211999897 + ], + [ + 151.22772007500032, + -24.39200780699997 + ], + [ + 151.188473648, + -24.25446406899988 + ], + [ + 151.2647360510001, + -24.22072797399983 + ], + [ + 151.2732495590002, + -24.07556930899989 + ], + [ + 151.2465011050001, + -24.00130133399989 + ], + [ + 151.1589774470001, + -23.91042992399997 + ], + [ + 151.12493529500023, + -23.827622865999956 + ], + [ + 151.15869999400013, + -23.749080007999908 + ], + [ + 151.12225999400005, + -23.672730007999974 + ], + [ + 151.0541499940001, + -23.63985000799994 + ], + [ + 151.0157399940001, + -23.565740007999864 + ], + [ + 150.89277999400008, + -23.61490000799995 + ], + [ + 150.85065999400013, + -23.544180007999955 + ], + [ + 150.86727999400023, + -23.472520007999833 + ], + [ + 150.81989999400002, + -23.421270007999908 + ], + [ + 150.79314999400003, + -23.321600007999905 + ], + [ + 150.8254999940001, + -23.23960000799991 + ], + [ + 150.73884144800002, + -23.116573551999977 + ], + [ + 150.73328539900012, + -23.03157239899997 + ], + [ + 150.62860767700022, + -22.98127210399997 + ], + [ + 150.51022947900003, + -22.843651653999814 + ], + [ + 150.36448136800004, + -22.81460294899989 + ], + [ + 150.47929800500015, + -22.68482265299997 + ], + [ + 150.45712079500015, + -22.63280034499985 + ], + [ + 150.55781999400017, + -22.56335000799993 + ], + [ + 150.45199999400006, + -22.52301000799997 + ], + [ + 150.30093999400003, + -22.419440007999924 + ], + [ + 150.1753699940001, + -22.355070007999927 + ], + [ + 150.1512399940002, + -22.25873000799993 + ], + [ + 150.04268999400017, + -22.127970007999977 + ], + [ + 149.96388999400017, + -22.1748300079999 + ], + [ + 149.91292999400002, + -22.34520000799995 + ], + [ + 149.9619899940002, + -22.538760007999883 + ], + [ + 149.88719999400007, + -22.491550007999933 + ], + [ + 149.8515299940002, + -22.417510007999965 + ], + [ + 149.70322999400003, + -22.45358000799996 + ], + [ + 149.70841999400022, + -22.38461000799998 + ], + [ + 149.57283999400033, + -22.232930007999983 + ], + [ + 149.53533346000017, + -22.15881206599994 + ], + [ + 149.4682805860001, + -22.15315597999995 + ], + [ + 149.41442996600006, + -22.219252393999966 + ], + [ + 149.4340414820001, + -22.288654665999843 + ], + [ + 149.34246176300007, + -22.33302494299994 + ], + [ + 149.48338722900007, + -22.615852177999898 + ], + [ + 149.47614508300023, + -22.760011533999887 + ], + [ + 149.38988820600002, + -22.70969007899987 + ], + [ + 149.31106513600014, + -22.502468150999846 + ], + [ + 149.28338456400002, + -22.31503397599994 + ], + [ + 149.24762582400012, + -22.280369540999914 + ], + [ + 149.29309358900002, + -22.119945607999853 + ], + [ + 149.27127709500007, + -22.034047889999954 + ], + [ + 149.206330137, + -22.00993293299996 + ], + [ + 149.20408213100018, + -21.849730424999905 + ], + [ + 149.12099331500008, + -21.870966899999928 + ], + [ + 149.01514580700018, + -21.6733589829999 + ], + [ + 148.95886901500012, + -21.687746576999928 + ], + [ + 148.9054565910002, + -21.55502232499998 + ], + [ + 148.9232348510002, + -21.505435032999856 + ], + [ + 149.0144603780002, + -21.515476276999948 + ], + [ + 149.0080561970001, + -21.445174931999873 + ], + [ + 148.92193787800022, + -21.37704189999988 + ], + [ + 148.8074230310002, + -21.389577533999955 + ], + [ + 148.7256914410001, + -21.57647190299997 + ], + [ + 148.67352720700023, + -21.50944362199988 + ], + [ + 148.67594827100004, + -21.44206142099995 + ], + [ + 148.56266370400022, + -21.39651734499995 + ], + [ + 148.48414552000008, + -21.297348623999937 + ], + [ + 148.49530032000018, + -21.23185074499986 + ], + [ + 148.43628435200003, + -21.12068489099994 + ], + [ + 148.47509982600002, + -21.027800924999895 + ], + [ + 148.47132121800018, + -20.83752186499993 + ], + [ + 148.39685174900012, + -20.823596471999963 + ], + [ + 148.40048504100002, + -20.761866111999893 + ], + [ + 148.3361807330001, + -20.66753673299985 + ], + [ + 148.25533078500018, + -20.59601227899998 + ], + [ + 148.2457172600001, + -20.512571401999878 + ], + [ + 148.18394384700014, + -20.501474342999927 + ], + [ + 148.2566608520002, + -20.269850994999956 + ], + [ + 148.31544490900023, + -20.22976241099991 + ], + [ + 148.31884470600005, + -20.140104736999945 + ], + [ + 148.27549999300004, + -20.09667000899998 + ], + [ + 148.26719999300008, + -19.98894000899986 + ], + [ + 148.18663999300009, + -19.943740008999953 + ], + [ + 148.11267999300003, + -19.94194000899995 + ], + [ + 148.08020999300004, + -19.881480008999972 + ], + [ + 147.98578999300003, + -19.926600008999912 + ], + [ + 147.92611999300016, + -19.914820008999925 + ], + [ + 147.86280999300016, + -19.846450008999966 + ], + [ + 147.8528799930001, + -19.745880008999904 + ], + [ + 147.75431999300008, + -19.70793000899988 + ], + [ + 147.77134999300017, + -19.830660008999814 + ], + [ + 147.67617999300023, + -19.83061000899994 + ], + [ + 147.59366999300005, + -19.731900008999958 + ], + [ + 147.56483999300008, + -19.561310008999953 + ], + [ + 147.47799999300003, + -19.44173000899997 + ], + [ + 147.31475999300005, + -19.40824000899994 + ], + [ + 147.26260999300007, + -19.42666000899993 + ], + [ + 147.13485999300008, + -19.407770008999876 + ], + [ + 147.06606999300016, + -19.340020008999943 + ], + [ + 147.04136999300033, + -19.210760008999955 + ], + [ + 146.96089999300023, + -19.293230008999842 + ], + [ + 146.88409999300006, + -19.30440000899989 + ], + [ + 146.77485999300018, + -19.19143000899993 + ], + [ + 146.68874999300021, + -19.193940008999846 + ], + [ + 146.60376317700002, + -19.152372604999925 + ], + [ + 146.53239408800005, + -19.279167971999925 + ], + [ + 146.47361115100023, + -19.338535772999876 + ], + [ + 146.40231413300023, + -19.35043467299994 + ], + [ + 146.37614736400008, + -19.267380232999926 + ], + [ + 146.2426793520001, + -19.104903487999934 + ], + [ + 146.08477539600005, + -19.05758729299987 + ], + [ + 146.04625627300004, + -18.902696465999952 + ], + [ + 145.90935343200033, + -18.909517136999966 + ], + [ + 145.76849122900012, + -18.822525820999942 + ], + [ + 145.74084882900002, + -18.721691440999905 + ], + [ + 145.6293736890001, + -18.665371963999917 + ], + [ + 145.6573583080002, + -18.555199073999972 + ], + [ + 145.64774869100006, + -18.439540575999956 + ], + [ + 145.54979339400006, + -18.294505345999937 + ], + [ + 145.5896726440002, + -18.176330969999924 + ], + [ + 145.56170477100022, + -18.122708066999962 + ], + [ + 145.47930538100013, + -18.075266817999875 + ], + [ + 145.45616107700005, + -17.985445917999982 + ], + [ + 145.51077170700023, + -17.954923882999935 + ], + [ + 145.43651928800034, + -17.867811692999908 + ], + [ + 145.417380685, + -17.74246887199996 + ], + [ + 145.43776391000017, + -17.597738197999945 + ], + [ + 145.36411559200008, + -17.538486630999955 + ], + [ + 145.32306829300012, + -17.388043687999982 + ], + [ + 145.34568295200006, + -17.288573157999963 + ], + [ + 145.42545515100016, + -17.179456611999967 + ], + [ + 145.52003335200015, + -17.135807310999894 + ], + [ + 145.56307488300024, + -17.02252087499994 + ], + [ + 145.53958385300007, + -16.868717981999964 + ], + [ + 145.43757002700033, + -16.766686032999928 + ], + [ + 145.374620595, + -16.761188973999936 + ], + [ + 145.33585982800003, + -16.678549526999973 + ], + [ + 145.24762217000023, + -16.63927802899991 + ], + [ + 145.21329421400014, + -16.51493554599989 + ], + [ + 145.12654341000007, + -16.484470372999965 + ], + [ + 145.14641890200005, + -16.36616030499988 + ], + [ + 145.08362825600034, + -16.311991879999823 + ], + [ + 144.99052430100016, + -16.334041586999888 + ], + [ + 144.94311250200008, + -16.293770269999925 + ], + [ + 144.89956053200012, + -16.17626267399993 + ], + [ + 144.9852578650001, + -16.084533246999968 + ], + [ + 145.08203369600005, + -16.093893402999925 + ], + [ + 145.06320870900004, + -16.00323113999997 + ], + [ + 145.08143703500014, + -15.933172185999979 + ], + [ + 145.24869004900006, + -15.697849810999855 + ], + [ + 145.31752960400001, + -15.662288849999982 + ], + [ + 145.3206999920002, + -15.5897400099999 + ], + [ + 145.23147999200023, + -15.463690009999937 + ], + [ + 145.28821999200022, + -15.37591000999987 + ], + [ + 145.23456999200016, + -15.142170009999973 + ], + [ + 145.34872999200002, + -14.982830009999873 + ], + [ + 145.28117999200003, + -14.95445000999996 + ], + [ + 145.17764999200006, + -14.842010009999967 + ], + [ + 145.02306999200016, + -14.794690009999954 + ], + [ + 144.9508699920002, + -14.727650009999877 + ], + [ + 144.89666999200006, + -14.610540009999909 + ], + [ + 144.781369992, + -14.593260009999938 + ], + [ + 144.68293999200012, + -14.55208000999994 + ], + [ + 144.6188399920003, + -14.477170009999895 + ], + [ + 144.64713999200012, + -14.35142001099996 + ], + [ + 144.52418999200017, + -14.170740010999907 + ], + [ + 144.4579899920002, + -14.23710000999995 + ], + [ + 144.33942999200008, + -14.306210009999916 + ], + [ + 144.2609899920002, + -14.290050009999902 + ], + [ + 144.08478999200008, + -14.451980009999886 + ], + [ + 143.9757199920001, + -14.488400009999964 + ], + [ + 143.89740999200023, + -14.484290009999881 + ], + [ + 143.80354999200006, + -14.42923000999997 + ], + [ + 143.74234999200007, + -14.32551000999996 + ], + [ + 143.69850999200003, + -14.187540009999964 + ], + [ + 143.68031999200002, + -14.013930009999967 + ], + [ + 143.62212999200005, + -13.963110009999923 + ], + [ + 143.53174999200007, + -13.751770009999973 + ], + [ + 143.5582699920002, + -13.592780009999956 + ], + [ + 143.5872199920001, + -13.543570009999883 + ], + [ + 143.58286999200004, + -13.37593001099998 + ], + [ + 143.5397099920002, + -13.352950010999848 + ], + [ + 143.51593999200009, + -13.259950010999887 + ], + [ + 143.50302999200005, + -12.92634001099998 + ], + [ + 143.54068999100002, + -12.840860010999961 + ], + [ + 143.45004999100001, + -12.848770010999942 + ], + [ + 143.3512199920002, + -12.891320010999891 + ], + [ + 143.35675999100033, + -12.804740010999922 + ], + [ + 143.43617999100013, + -12.623540010999932 + ], + [ + 143.27419999100005, + -12.51453001099992 + ], + [ + 143.2722399910001, + -12.404480010999976 + ], + [ + 143.1803899910002, + -12.34315001099992 + ], + [ + 143.08440999100014, + -12.348120010999821 + ], + [ + 143.08583999100017, + -12.17356001099995 + ], + [ + 143.183929991, + -11.99343001099993 + ], + [ + 143.10573999100018, + -11.896690010999976 + ], + [ + 142.96979999100017, + -11.930650010999898 + ], + [ + 142.85637999100004, + -11.844910010999968 + ], + [ + 142.85921999100003, + -11.635770010999863 + ], + [ + 142.83421999100028, + -11.558690010999953 + ], + [ + 142.83327999100015, + -11.430970010999943 + ], + [ + 142.86824999100008, + -11.382370010999978 + ], + [ + 142.7853499910001, + -11.220920010999919 + ], + [ + 142.78566999100008, + -11.074910010999929 + ], + [ + 142.71930999100005, + -10.968330010999978 + ], + [ + 142.6090699910003, + -10.93719001099987 + ], + [ + 142.59065999100005, + -10.868090010999879 + ], + [ + 142.51497999100013, + -10.858760010999958 + ], + [ + 142.60614999100028, + -10.74644001199988 + ], + [ + 142.54088999100009, + -10.708200011999963 + ], + [ + 142.42435999100007, + -10.725810010999965 + ], + [ + 142.35170999100012, + -10.88303001099996 + ], + [ + 142.2899399910002, + -10.91535001099993 + ], + [ + 142.18738999100015, + -10.916580010999894 + ], + [ + 142.12615999100012, + -10.982460010999887 + ], + [ + 142.15463999100007, + -11.120160010999882 + ], + [ + 142.11682999100015, + -11.372900010999956 + ], + [ + 141.95196999100006, + -11.86999001099997 + ], + [ + 141.93139999200002, + -12.074870010999973 + ], + [ + 141.85029999200003, + -11.984960010999885 + ], + [ + 141.74267999200003, + -12.205430009999873 + ], + [ + 141.59141999200006, + -12.56301000999997 + ], + [ + 141.75547999200023, + -12.53688000999989 + ], + [ + 141.82746999200003, + -12.649460009999927 + ], + [ + 141.75738999200018, + -12.827510009999912 + ], + [ + 141.6294099920001, + -12.915900009999973 + ], + [ + 141.58369999200022, + -12.997120009999946 + ], + [ + 141.619219992, + -13.046270009999944 + ], + [ + 141.62974999200014, + -13.15969000999985 + ], + [ + 141.6968099920001, + -13.263730009999847 + ], + [ + 141.67260999200005, + -13.346910009999874 + ], + [ + 141.5517399920003, + -13.505560009999954 + ], + [ + 141.50321999200014, + -13.658600009999873 + ], + [ + 141.46641999200017, + -13.870470008999916 + ], + [ + 141.50118999200004, + -13.9817200089999 + ], + [ + 141.5982499920001, + -14.110560008999812 + ], + [ + 141.60227999200015, + -14.224580008999965 + ], + [ + 141.5250699930001, + -14.48412000899998 + ], + [ + 141.55089999300003, + -14.580670008999903 + ], + [ + 141.5890599930001, + -14.850460008999846 + ], + [ + 141.66639999300003, + -15.018040008999947 + ], + [ + 141.62871999300012, + -15.160340008999924 + ], + [ + 141.47205999300002, + -15.52127000799993 + ], + [ + 141.43529999300017, + -15.66158000799993 + ], + [ + 141.41427999300004, + -15.846230007999964 + ], + [ + 141.37554999300005, + -15.919030007999936 + ], + [ + 141.430859993, + -16.08293000799989 + ], + [ + 141.3510799930001, + -16.217860007999946 + ], + [ + 141.29026999300004, + -16.397080007999875 + ], + [ + 141.30486999300012, + -16.457180007999966 + ], + [ + 141.23540999400007, + -16.589810007999915 + ], + [ + 141.20705999400002, + -16.69108000799997 + ], + [ + 141.09419999400006, + -16.808080007999877 + ], + [ + 140.95903999400002, + -16.996430006999958 + ], + [ + 140.94978999400007, + -17.151290006999943 + ], + [ + 140.9128099940001, + -17.232360006999897 + ], + [ + 140.88285999400023, + -17.3820800069999 + ], + [ + 140.84463999400032, + -17.43841000699996 + ], + [ + 140.7106299940001, + -17.509240006999903 + ], + [ + 140.5960299940001, + -17.596500006999918 + ], + [ + 140.3862899940001, + -17.677920006999898 + ], + [ + 140.12324999400016, + -17.719550006999953 + ], + [ + 140.00347999400014, + -17.714570006999907 + ], + [ + 139.9350999940002, + -17.629590006999877 + ], + [ + 139.81773999400002, + -17.570360006999977 + ], + [ + 139.7567499940002, + -17.577850006999938 + ], + [ + 139.62155999400022, + -17.522020006999867 + ], + [ + 139.53319999400003, + -17.439630006999835 + ], + [ + 139.41574999400007, + -17.37430000699993 + ], + [ + 139.34101999400002, + -17.375460005999912 + ], + [ + 139.2412099940002, + -17.32296000599996 + ], + [ + 139.15599999400013, + -17.16731000699997 + ], + [ + 139.15327999400006, + -17.037060006999866 + ], + [ + 139.08298999400006, + -16.995700006999982 + ], + [ + 139.0389399940001, + -16.91331000699995 + ], + [ + 138.8952099940002, + -16.88423000699993 + ], + [ + 138.62812999400012, + -16.768050006999886 + ], + [ + 138.4276199940001, + -16.777780005999887 + ], + [ + 138.1937499940002, + -16.696540005999907 + ], + [ + 137.86152999400008, + -16.423580005999952 + ], + [ + 137.7255799940001, + -16.23112000599997 + ], + [ + 137.57057999400013, + -16.174720005999916 + ], + [ + 137.46440999400022, + -16.159740005999936 + ], + [ + 137.32102999400013, + -16.09945000599987 + ], + [ + 137.2506199940001, + -16.01022000599994 + ], + [ + 137.04877999400003, + -15.92196000599995 + ], + [ + 137.00823999400018, + -15.877420005999909 + ], + [ + 136.81331999400015, + -15.900330005999876 + ], + [ + 136.70691999500013, + -15.932000005999953 + ], + [ + 136.71412999400013, + -15.856410005999976 + ], + [ + 136.62543999400032, + -15.772070005999979 + ], + [ + 136.54430999400006, + -15.741430005999973 + ], + [ + 136.40928999400035, + -15.625420005999956 + ], + [ + 136.33884999400004, + -15.61236000599996 + ], + [ + 136.27067999400003, + -15.536780005999901 + ], + [ + 136.24058999400017, + -15.41742000599993 + ], + [ + 136.16337999400002, + -15.391100005999931 + ], + [ + 135.920589994, + -15.243700005999926 + ], + [ + 135.86271999400014, + -15.182180005999896 + ], + [ + 135.63788999400003, + -15.044070005999913 + ], + [ + 135.57784999400008, + -15.043740005999894 + ], + [ + 135.47390999400022, + -14.973300005999874 + ], + [ + 135.4139399940002, + -14.868940005999889 + ], + [ + 135.37932999400005, + -14.723680005999938 + ], + [ + 135.42504999400012, + -14.727610005999964 + ], + [ + 135.51676999400001, + -14.650660005999896 + ], + [ + 135.5375499940002, + -14.559310005999976 + ], + [ + 135.62099999400016, + -14.423710005999908 + ], + [ + 135.67634999400002, + -14.390140006999843 + ], + [ + 135.78959999400013, + -14.232040006999966 + ], + [ + 135.87905999400016, + -14.169370006999884 + ], + [ + 135.91424999400033, + -14.033930006999924 + ], + [ + 136.01620999400006, + -13.824040006999951 + ], + [ + 136.03466999400018, + -13.715470006999965 + ], + [ + 135.91326999400007, + -13.745090006999874 + ], + [ + 135.84458999400022, + -13.615320006999923 + ], + [ + 135.86170999400008, + -13.436380006999968 + ], + [ + 135.91871999400018, + -13.269850006999945 + ], + [ + 136.00033999400011, + -13.213450006999949 + ], + [ + 136.04902999400008, + -13.24293000699987 + ], + [ + 136.10774999400007, + -13.17232000699994 + ], + [ + 136.1522699940001, + -13.246660006999946 + ], + [ + 136.20088999400002, + -13.247140006999928 + ], + [ + 136.2431399940001, + -13.169320006999953 + ], + [ + 136.31019999300008, + -13.165950006999822 + ], + [ + 136.30854999300004, + -13.072440007999944 + ], + [ + 136.36473999300017, + -13.056420007999975 + ], + [ + 136.36637999300012, + -13.196570006999877 + ], + [ + 136.39184999300005, + -13.254470006999895 + ], + [ + 136.47239999300007, + -13.215010007999979 + ], + [ + 136.52914999300015, + -13.146610007999925 + ], + [ + 136.53542999300032, + -13.023520007999878 + ], + [ + 136.63528999300001, + -12.952390007999895 + ], + [ + 136.5590199930001, + -12.913600007999946 + ], + [ + 136.47797999300008, + -12.832170007999935 + ], + [ + 136.58214999300003, + -12.766690007999898 + ], + [ + 136.67842999300024, + -12.668040007999934 + ], + [ + 136.9269099930002, + -12.341810007999982 + ], + [ + 136.87447999300002, + -12.220970007999938 + ], + [ + 136.7791199930001, + -12.161350007999886 + ], + [ + 136.7406699930002, + -12.273100007999915 + ], + [ + 136.66333999300014, + -12.28166000799996 + ], + [ + 136.6001799930001, + -12.20289000799994 + ], + [ + 136.58902999300005, + -12.09302000799994 + ], + [ + 136.41490999300004, + -11.958330007999962 + ], + [ + 136.33160999300003, + -12.059420007999961 + ], + [ + 136.26695999300023, + -12.072910007999951 + ], + [ + 136.1973099930002, + -12.162180007999837 + ], + [ + 136.22826999300014, + -12.213850007999952 + ], + [ + 136.33916999300027, + -12.204600007999943 + ], + [ + 136.3635999930001, + -12.256990007999946 + ], + [ + 136.30411999300009, + -12.400170007999861 + ], + [ + 136.22311999300018, + -12.462110007999911 + ], + [ + 135.99617999300006, + -12.43958000799995 + ], + [ + 136.02145999300024, + -12.315170007999882 + ], + [ + 135.8961099930002, + -12.186380007999844 + ], + [ + 135.67425999300008, + -12.23817000799994 + ], + [ + 135.6519699930003, + -12.167750007999928 + ], + [ + 135.772449993, + -12.047050007999928 + ], + [ + 135.72708999300016, + -12.009620007999956 + ], + [ + 135.58264999300025, + -12.091290007999817 + ], + [ + 135.53413999300005, + -12.151610007999864 + ], + [ + 135.39349999300032, + -12.179630007999833 + ], + [ + 135.34718999300003, + -12.243070007999904 + ], + [ + 135.21919999300007, + -12.29670000699997 + ], + [ + 135.1254799930001, + -12.237500006999937 + ], + [ + 135.05583999300006, + -12.262260006999895 + ], + [ + 134.97056999300014, + -12.158530006999968 + ], + [ + 134.8420299930001, + -12.11379000699992 + ], + [ + 134.7714299930003, + -11.958230006999884 + ], + [ + 134.6878099930001, + -11.966610006999929 + ], + [ + 134.6096799940001, + -12.047790006999946 + ], + [ + 134.41950999400012, + -12.065910006999957 + ], + [ + 134.28548999400016, + -11.983020006999936 + ], + [ + 134.22735999400015, + -12.04141000699991 + ], + [ + 134.17357999400008, + -11.960850006999863 + ], + [ + 134.037799994, + -11.855000006999944 + ], + [ + 133.98006999400002, + -11.89782000699995 + ], + [ + 133.87838999400003, + -11.911160006999978 + ], + [ + 133.82322999400003, + -11.84126000699996 + ], + [ + 133.9245599940001, + -11.768650006999906 + ], + [ + 133.79777999400017, + -11.72632000699997 + ], + [ + 133.73954999400007, + -11.783090006999885 + ], + [ + 133.60418999400008, + -11.839410006999913 + ], + [ + 133.53434999400008, + -11.760950006999963 + ], + [ + 133.46038999400002, + -11.802560006999954 + ], + [ + 133.41340999400006, + -11.759340006999821 + ], + [ + 133.32132999400017, + -11.771070006999935 + ], + [ + 133.33533999400004, + -11.693810006999911 + ], + [ + 133.22893999400014, + -11.73298000699998 + ], + [ + 133.15688999400015, + -11.710180006999963 + ], + [ + 133.0092599940001, + -11.43566000699991 + ], + [ + 132.9172199940001, + -11.33198000699997 + ], + [ + 132.7341399940001, + -11.518080006999867 + ], + [ + 132.6594799940001, + -11.510010006999948 + ], + [ + 132.61838999400027, + -11.408180006999942 + ], + [ + 132.50670999400006, + -11.271980006999911 + ], + [ + 132.43593999400014, + -11.211800006999908 + ], + [ + 132.30850999400013, + -11.174250006999955 + ], + [ + 132.2373799940002, + -11.340060006999977 + ], + [ + 132.09924999400016, + -11.306330006999872 + ], + [ + 132.0671299940002, + -11.191810006999901 + ], + [ + 131.93205999400004, + -11.24404000699991 + ], + [ + 131.87904999400007, + -11.185530006999954 + ], + [ + 131.82944999400013, + -11.233220006999943 + ], + [ + 131.9268599940002, + -11.336980006999966 + ], + [ + 131.94025999400026, + -11.396900005999953 + ], + [ + 132.06052999400015, + -11.436050006999949 + ], + [ + 132.04187999400017, + -11.49137000599984 + ], + [ + 132.1062599940002, + -11.531310005999842 + ], + [ + 132.2378799940002, + -11.45593000699995 + ], + [ + 132.3550399940001, + -11.441320006999888 + ], + [ + 132.45699999400006, + -11.457240006999939 + ], + [ + 132.5546999940001, + -11.555390006999971 + ], + [ + 132.5481199940001, + -11.609500006999895 + ], + [ + 132.65756999400003, + -11.649570006999909 + ], + [ + 132.65085999400014, + -11.718840006999926 + ], + [ + 132.5804499940001, + -11.787490006999974 + ], + [ + 132.65213999400032, + -11.88379000699996 + ], + [ + 132.61838999400027, + -12.018610005999903 + ], + [ + 132.56384999400007, + -12.092910005999897 + ], + [ + 132.4405499940002, + -12.146870005999972 + ], + [ + 132.4153799940002, + -12.20237000599991 + ], + [ + 132.27852999400022, + -12.226470005999829 + ], + [ + 132.24026999400007, + -12.174760005999929 + ], + [ + 132.0645199940002, + -12.304060005999872 + ], + [ + 131.96163999400017, + -12.281410005999874 + ], + [ + 131.873039994, + -12.215480005999893 + ], + [ + 131.7541299950002, + -12.273810005999962 + ], + [ + 131.66252999500034, + -12.286020005999944 + ], + [ + 131.44633999500013, + -12.28083000599986 + ], + [ + 131.34646999500023, + -12.22718000599997 + ], + [ + 131.28945999500002, + -12.045110005999959 + ], + [ + 131.221379995, + -12.22627000599988 + ], + [ + 131.15850999500003, + -12.169460005999895 + ], + [ + 130.99491999500003, + -12.16909000599992 + ], + [ + 131.03070999500005, + -12.240640005999865 + ], + [ + 130.98398999500034, + -12.342520005999916 + ], + [ + 130.8936699950002, + -12.332030005999911 + ], + [ + 130.85185999500027, + -12.450480004999974 + ], + [ + 130.88190999500011, + -12.606610004999936 + ], + [ + 130.7693899950002, + -12.528360004999968 + ], + [ + 130.76487999500011, + -12.43790000499996 + ], + [ + 130.61745999500022, + -12.386130004999927 + ], + [ + 130.57669999500013, + -12.407270004999873 + ], + [ + 130.5903099950002, + -12.501950004999912 + ], + [ + 130.53087999500008, + -12.712010004999854 + ], + [ + 130.43927999500022, + -12.633630004999873 + ], + [ + 130.3526499950002, + -12.669920004999938 + ], + [ + 130.35053999500008, + -12.840140004999967 + ], + [ + 130.2798799950001, + -12.932700004999958 + ], + [ + 130.14601999500007, + -12.927910004999944 + ], + [ + 130.11716999500027, + -13.167240004999883 + ], + [ + 130.15868999500003, + -13.174630004999926 + ], + [ + 130.2459299960003, + -13.28951000499984 + ], + [ + 130.23728999600007, + -13.33845000499997 + ], + [ + 130.1368199960001, + -13.460540004999928 + ], + [ + 130.00680999600002, + -13.53322000399993 + ], + [ + 129.9292399960001, + -13.528550003999953 + ], + [ + 129.87823999600027, + -13.459260003999873 + ], + [ + 129.79030999600002, + -13.665410003999966 + ], + [ + 129.7851499960001, + -13.766760003999877 + ], + [ + 129.720969996, + -13.850230003999911 + ], + [ + 129.7522799960002, + -13.953100003999907 + ], + [ + 129.72545999600015, + -14.010110003999955 + ], + [ + 129.494069996, + -14.130930003999822 + ], + [ + 129.4155999960002, + -14.230300003999957 + ], + [ + 129.35536999600015, + -14.419640003999973 + ], + [ + 129.52618999600008, + -14.55223000399991 + ], + [ + 129.74911999600022, + -14.601080003999925 + ], + [ + 129.62307999600011, + -14.685530003999872 + ], + [ + 129.67246999600013, + -14.763400003999948 + ], + [ + 129.64547999600018, + -14.833720003999872 + ], + [ + 129.60591999700023, + -15.120620002999942 + ], + [ + 129.47997999600022, + -14.938380002999907 + ], + [ + 129.3668299970002, + -14.902740002999906 + ], + [ + 129.3166199970002, + -14.859170002999917 + ], + [ + 129.2346199970001, + -14.916520002999903 + ], + [ + 129.1890599970002, + -14.98568000299997 + ], + [ + 129.06374999700006, + -14.890160002999892 + ], + [ + 128.91136999700018, + -14.856750002999888 + ], + [ + 128.81927999700008, + -14.86299000299988 + ], + [ + 128.67726999700005, + -14.79578000299989 + ], + [ + 128.54879999700006, + -14.768990002999885 + ], + [ + 128.4340099970001, + -14.811650002999897 + ], + [ + 128.47627999700012, + -14.911680002999844 + ], + [ + 128.3546599970001, + -14.887710002999938 + ], + [ + 128.35955999700002, + -15.05417000299991 + ], + [ + 128.28711999700022, + -14.974030002999882 + ], + [ + 128.23531999700026, + -14.997350002999838 + ], + [ + 128.19472999700008, + -15.097370002999924 + ], + [ + 128.22377999700007, + -15.135650002999967 + ], + [ + 128.1895899970002, + -15.230620002999956 + ], + [ + 128.06676999700005, + -15.312370002999955 + ], + [ + 128.0998099970003, + -15.167250002999936 + ], + [ + 128.0769299970001, + -15.096910002999948 + ], + [ + 128.10770999700026, + -14.950670002999914 + ], + [ + 128.1839599970001, + -14.744400002999953 + ], + [ + 128.1303299970001, + -14.664350002999981 + ], + [ + 127.83006999700024, + -14.454050002999907 + ], + [ + 127.77989999700014, + -14.33355000299997 + ], + [ + 127.67036999700008, + -14.191780002999849 + ], + [ + 127.53794999700017, + -14.088230002999978 + ], + [ + 127.44853999700013, + -14.054390002999924 + ], + [ + 127.4560799970003, + -13.980570002999968 + ], + [ + 127.36022999700003, + -13.908950002999916 + ], + [ + 127.31355999700031, + -13.959560002999922 + ], + [ + 127.16975999700014, + -13.910200002999886 + ], + [ + 127.11363999700029, + -13.964700002999962 + ], + [ + 127.08134999700007, + -13.84011000299995 + ], + [ + 127.01605999700007, + -13.824300002999962 + ], + [ + 126.96411999700001, + -13.747260002999894 + ], + [ + 126.743569997, + -13.789250002999893 + ], + [ + 126.80889999700014, + -13.916170002999934 + ], + [ + 126.70350999700008, + -14.131950002999929 + ], + [ + 126.57475999700011, + -14.230310002999886 + ], + [ + 126.45544999700007, + -14.099170002999927 + ], + [ + 126.48710999700006, + -13.99427000299994 + ], + [ + 126.43086999700006, + -13.989670002999901 + ], + [ + 126.34967999700007, + -14.049990002999948 + ], + [ + 126.30186999700015, + -14.141000002999817 + ], + [ + 126.35269999700017, + -14.178530002999878 + ], + [ + 126.25737999700004, + -14.238320001999966 + ], + [ + 126.19151999700023, + -14.08223000299995 + ], + [ + 126.20065999700012, + -14.005980002999877 + ], + [ + 126.08877999700007, + -13.921270002999847 + ], + [ + 126.10077999700013, + -14.074930001999974 + ], + [ + 126.16468999700021, + -14.149770001999968 + ], + [ + 126.01516999800003, + -14.413140001999864 + ], + [ + 126.04519999800016, + -14.475340001999939 + ], + [ + 125.90197999800012, + -14.569510001999959 + ], + [ + 125.79473999800018, + -14.466440001999956 + ], + [ + 125.68857999800002, + -14.4945600019999 + ], + [ + 125.65960999800006, + -14.44009000199992 + ], + [ + 125.67607999800009, + -14.351840001999904 + ], + [ + 125.62961999800007, + -14.233820001999959 + ], + [ + 125.58996999800013, + -14.245470001999934 + ], + [ + 125.58945999800005, + -14.370580001999883 + ], + [ + 125.62160999800005, + -14.410220001999846 + ], + [ + 125.60697999800016, + -14.515150001999928 + ], + [ + 125.49611999800015, + -14.512180001999866 + ], + [ + 125.42428999800006, + -14.599780001999932 + ], + [ + 125.34472999800005, + -14.550280001999965 + ], + [ + 125.25850999800002, + -14.593250001999934 + ], + [ + 125.18275999800028, + -14.707440001999942 + ], + [ + 125.19870999800003, + -14.83686000199998 + ], + [ + 125.3055799980001, + -14.88195000199994 + ], + [ + 125.25652999800013, + -14.946620001999861 + ], + [ + 125.28548999800012, + -14.999510001999852 + ], + [ + 125.373699998, + -15.003000001999965 + ], + [ + 125.36851999800001, + -15.109190001999934 + ], + [ + 125.31517999800019, + -15.155440001999978 + ], + [ + 125.23061999800007, + -15.102360001999955 + ], + [ + 125.14535999800023, + -15.136090000999957 + ], + [ + 125.09642999800008, + -15.057290001999945 + ], + [ + 124.97857999800021, + -15.13413000099996 + ], + [ + 124.867169998, + -15.129400000999965 + ], + [ + 124.87798999800009, + -15.309760000999916 + ], + [ + 124.92025999800012, + -15.356350000999896 + ], + [ + 125.02521999800013, + -15.301750000999903 + ], + [ + 125.08880999800022, + -15.338630000999956 + ], + [ + 125.0834599980002, + -15.405630000999906 + ], + [ + 125.03034999800002, + -15.512390000999972 + ], + [ + 124.95267999800024, + -15.387030000999971 + ], + [ + 124.78208999800017, + -15.311740000999976 + ], + [ + 124.71549999800004, + -15.258790000999966 + ], + [ + 124.66865999800007, + -15.429740000999914 + ], + [ + 124.6215899990001, + -15.50107000099996 + ], + [ + 124.48396999900001, + -15.476080000999957 + ], + [ + 124.42811999900016, + -15.559040000999971 + ], + [ + 124.43544999900018, + -15.640220000999818 + ], + [ + 124.39268999900003, + -15.746410000999958 + ], + [ + 124.46130999900004, + -15.82837000099994 + ], + [ + 124.47912999900007, + -15.929190000999881 + ], + [ + 124.53121999900009, + -15.958250000999953 + ], + [ + 124.60444999900017, + -15.813750000999903 + ], + [ + 124.70070999900008, + -15.784820000999957 + ], + [ + 124.71138999900006, + -15.836910000999922 + ], + [ + 124.62489999900004, + -15.884800000999917 + ], + [ + 124.58058999900004, + -15.999810000999958 + ], + [ + 124.58797999900003, + -16.112380000999963 + ], + [ + 124.50945999900011, + -16.15720000099998 + ], + [ + 124.44991999900014, + -16.12140000099987 + ], + [ + 124.40628999900014, + -16.240770000999873 + ], + [ + 124.4177399990001, + -16.359570000999952 + ], + [ + 124.57089999900018, + -16.32945000099994 + ], + [ + 124.67294999900002, + -16.350470000999906 + ], + [ + 124.69982999900014, + -16.40084000099995 + ], + [ + 124.45275999900014, + -16.408080000999917 + ], + [ + 124.4034799990003, + -16.367640000999927 + ], + [ + 124.33953999900007, + -16.42261 + ], + [ + 124.21907999900009, + -16.413189999999872 + ], + [ + 124.12633999900027, + -16.28074 + ], + [ + 123.94168999900035, + -16.289149999999836 + ], + [ + 123.87998999900003, + -16.35299 + ], + [ + 123.78557999900022, + -16.28583 + ], + [ + 123.81125999900007, + -16.22176 + ], + [ + 123.71945999900004, + -16.14112 + ], + [ + 123.60519999900009, + -16.16178 + ], + [ + 123.56648999900017, + -16.200689999999895 + ], + [ + 123.59243999900002, + -16.316889999999887 + ], + [ + 123.6605799990001, + -16.31458 + ], + [ + 123.66589999900009, + -16.43475999999987 + ], + [ + 123.62937999900021, + -16.514839999999822 + ], + [ + 123.50290999900005, + -16.48767 + ], + [ + 123.47155999900008, + -16.54203 + ], + [ + 123.61628999900017, + -16.56805 + ], + [ + 123.52190999900017, + -16.63575999999989 + ], + [ + 123.6238899990002, + -16.68451 + ], + [ + 123.71210999900029, + -16.77176 + ], + [ + 123.78900999900009, + -16.90755 + ], + [ + 123.82927000000018, + -17.13320999999985 + ], + [ + 123.65912, + -17.009639999999877 + ], + [ + 123.60055000000034, + -17.01021 + ], + [ + 123.58819000000017, + -17.093979999999874 + ], + [ + 123.62456, + -17.19686 + ], + [ + 123.56768000000011, + -17.4131 + ], + [ + 123.52038000000016, + -17.4257 + ], + [ + 123.42614, + -17.32569 + ], + [ + 123.29639, + -17.11092 + ], + [ + 123.23505000000011, + -16.96973 + ], + [ + 123.16586000000018, + -16.92316 + ], + [ + 123.1529800000003, + -16.802 + ], + [ + 123.10010000000034, + -16.71111 + ], + [ + 123.05012000000033, + -16.69016 + ], + [ + 122.96046000000013, + -16.5739999999999 + ], + [ + 122.9975, + -16.48584 + ], + [ + 122.98517, + -16.38289 + ], + [ + 122.92853, + -16.391 + ], + [ + 122.9057, + -16.48632 + ], + [ + 122.7789, + -16.57914 + ], + [ + 122.7415, + -16.68389999999988 + ], + [ + 122.77466, + -16.735129999999856 + ], + [ + 122.71613000000013, + -16.78513 + ], + [ + 122.57694000000015, + -16.78087 + ], + [ + 122.53383000000031, + -16.8360899999999 + ], + [ + 122.57103000000018, + -16.931409998999982 + ], + [ + 122.48440000000016, + -16.94141999899989 + ], + [ + 122.37012000000016, + -16.99375999899985 + ], + [ + 122.25710000000015, + -17.110839998999893 + ], + [ + 122.17358, + -17.26279999899998 + ], + [ + 122.14944, + -17.35575999899993 + ], + [ + 122.14717, + -17.564259998999944 + ], + [ + 122.19962000000021, + -17.68264999899992 + ], + [ + 122.21320000100002, + -17.878519998999934 + ], + [ + 122.2552300010002, + -17.958569998999906 + ], + [ + 122.35347000100035, + -17.976599998999916 + ], + [ + 122.38290000100005, + -18.068339998999875 + ], + [ + 122.31303000100013, + -18.172859998999968 + ], + [ + 122.21804000100008, + -18.202379998999902 + ], + [ + 122.13515000100006, + -18.304679998999973 + ], + [ + 122.06351000100005, + -18.325869998999906 + ], + [ + 122.01846000100011, + -18.390219998999896 + ], + [ + 121.90486000100009, + -18.464099997999938 + ], + [ + 121.82373000100017, + -18.44663999799991 + ], + [ + 121.75992000100007, + -18.55775999799988 + ], + [ + 121.78060000100015, + -18.66285999799993 + ], + [ + 121.65243000100008, + -18.76672999799996 + ], + [ + 121.62139000100012, + -18.859589997999876 + ], + [ + 121.51047000100016, + -19.095419997999954 + ], + [ + 121.31730000200002, + -19.359809997999946 + ], + [ + 121.19836000200007, + -19.47655999799997 + ], + [ + 120.96412000200007, + -19.630649997999967 + ], + [ + 120.64209000200003, + -19.766019996999887 + ], + [ + 120.19460000200002, + -19.913849996999943 + ], + [ + 119.97795000200006, + -19.932309996999948 + ], + [ + 119.76473000300018, + -19.97657999699993 + ], + [ + 119.72133000300016, + -20.0231299969999 + ], + [ + 119.60291000300003, + -20.079139996999857 + ], + [ + 119.54338637900003, + -20.064235464999967 + ] + ], + [ + [ + 146.6199293310001, + -25.142563451999877 + ], + [ + 146.7737573840002, + -25.123193973999946 + ], + [ + 146.81883089200028, + -25.184685401999957 + ], + [ + 146.79490502900012, + -25.24310411099998 + ], + [ + 146.86907831200006, + -25.3424628599999 + ], + [ + 146.73801785900025, + -25.5684290829999 + ], + [ + 146.68158134200007, + -25.572599380999975 + ], + [ + 146.66042081000023, + -25.689535814999886 + ], + [ + 146.61017730000026, + -25.767419634999953 + ], + [ + 146.49344366100001, + -25.817775410999957 + ], + [ + 146.52815918400006, + -25.706534567999938 + ], + [ + 146.51939777700022, + -25.609795196999983 + ], + [ + 146.69533628200008, + -25.42046473399995 + ], + [ + 146.67396679900003, + -25.23046752199997 + ], + [ + 146.60774516100003, + -25.211486925999907 + ], + [ + 146.6199293310001, + -25.142563451999877 + ] + ], + [ + [ + 150.37443479800004, + -22.69922528199993 + ], + [ + 150.25603018100003, + -22.626473071999897 + ], + [ + 150.26783730500006, + -22.55188333399991 + ], + [ + 150.3563562290002, + -22.527208834999897 + ], + [ + 150.37443479800004, + -22.69922528199993 + ] + ] + ], + [ + [ + [ + 128.13814999700003, + -15.04731000299995 + ], + [ + 128.12687999700006, + -15.155970002999936 + ], + [ + 128.2013499970003, + -15.130800002999877 + ], + [ + 128.13814999700003, + -15.04731000299995 + ] + ] + ], + [ + [ + [ + 135.53887999300002, + -12.074290007999934 + ], + [ + 135.4693799930003, + -12.110170007999898 + ], + [ + 135.397269993, + -12.082500007999954 + ], + [ + 135.30545999300034, + -12.12472000799994 + ], + [ + 135.26905999300004, + -12.180000007999979 + ], + [ + 135.30967999300015, + -12.241000007999958 + ], + [ + 135.36834999300004, + -12.181350007999924 + ], + [ + 135.49401999300017, + -12.144360007999978 + ], + [ + 135.53887999300002, + -12.074290007999934 + ] + ] + ], + [ + [ + [ + 130.35969999500014, + -11.369130005999978 + ], + [ + 130.33708999500004, + -11.318290005999927 + ], + [ + 130.25118999500023, + -11.346610005999935 + ], + [ + 130.1786999950001, + -11.433820005999905 + ], + [ + 130.19935999500012, + -11.508710005999944 + ], + [ + 130.19646999500026, + -11.654440005999902 + ], + [ + 130.15650999500008, + -11.704890005999971 + ], + [ + 130.06900999500021, + -11.686460004999901 + ], + [ + 130.04949999500013, + -11.823960004999947 + ], + [ + 130.1335399950001, + -11.823360004999927 + ], + [ + 130.31110999500004, + -11.770950005999964 + ], + [ + 130.51115999500018, + -11.83035000599989 + ], + [ + 130.6057499950001, + -11.826960005999979 + ], + [ + 130.639199995, + -11.7661800059999 + ], + [ + 130.5512399950003, + -11.69035000599996 + ], + [ + 130.48503999500008, + -11.66969000599994 + ], + [ + 130.46501999500026, + -11.577200005999941 + ], + [ + 130.37620999500018, + -11.507550005999917 + ], + [ + 130.40060999500008, + -11.424050005999959 + ], + [ + 130.35969999500014, + -11.369130005999978 + ] + ] + ], + [ + [ + [ + 130.42047999500005, + -11.18429000599997 + ], + [ + 130.36532999500002, + -11.257900005999943 + ], + [ + 130.42668999500017, + -11.427290005999907 + ], + [ + 130.43171999500032, + -11.499250005999897 + ], + [ + 130.4934999950002, + -11.566440005999937 + ], + [ + 130.4940399950001, + -11.65663000599983 + ], + [ + 130.5572599950001, + -11.674250005999966 + ], + [ + 130.6859899950001, + -11.795800005999922 + ], + [ + 130.85295999500033, + -11.850390005999884 + ], + [ + 130.965569995, + -11.938570005999907 + ], + [ + 131.08231999500015, + -11.835700005999911 + ], + [ + 131.28129999400005, + -11.740020005999895 + ], + [ + 131.38579999400008, + -11.58845000599996 + ], + [ + 131.4552799940002, + -11.547360005999906 + ], + [ + 131.53813999400006, + -11.415550005999933 + ], + [ + 131.43313999400016, + -11.310510005999959 + ], + [ + 131.25175999400005, + -11.192650005999951 + ], + [ + 131.0404699940002, + -11.318570005999845 + ], + [ + 131.03266999400034, + -11.366780005999942 + ], + [ + 130.90978999400022, + -11.310930005999978 + ], + [ + 130.85158999400005, + -11.353220005999844 + ], + [ + 130.65722999500008, + -11.400010005999945 + ], + [ + 130.58596999500026, + -11.398780005999981 + ], + [ + 130.60319999500018, + -11.321660005999888 + ], + [ + 130.49815999500015, + -11.268920005999973 + ], + [ + 130.42047999500005, + -11.18429000599997 + ] + ] + ], + [ + [ + [ + 132.58888999400017, + -10.989970006999897 + ], + [ + 132.4767599940002, + -11.159180006999975 + ], + [ + 132.544689994, + -11.254840006999927 + ], + [ + 132.61961999400012, + -11.28679000699998 + ], + [ + 132.57931999400023, + -11.005230006999966 + ], + [ + 132.58888999400017, + -10.989970006999897 + ] + ] + ], + [ + [ + [ + 136.60657999400019, + -15.521630005999953 + ], + [ + 136.51265999400005, + -15.54372000599983 + ], + [ + 136.51418999400005, + -15.653190005999932 + ], + [ + 136.59073999400005, + -15.645270005999862 + ], + [ + 136.60657999400019, + -15.521630005999953 + ] + ] + ], + [ + [ + [ + 136.24620999400008, + -13.670330006999905 + ], + [ + 136.16105999400008, + -13.750660006999965 + ], + [ + 136.25541999400002, + -13.828290006999964 + ], + [ + 136.27107999400027, + -13.736810006999917 + ], + [ + 136.24620999400008, + -13.670330006999905 + ] + ] + ], + [ + [ + [ + 135.9064699930001, + -11.760340007999957 + ], + [ + 135.87085999300018, + -11.83419000799995 + ], + [ + 135.73361999300005, + -11.939340007999931 + ], + [ + 135.59379999300018, + -11.952530007999883 + ], + [ + 135.55381999300016, + -12.049080007999919 + ], + [ + 135.73461999300002, + -12.00233000799983 + ], + [ + 135.8282099930002, + -11.929210007999927 + ], + [ + 135.9381699930002, + -11.803100007999944 + ], + [ + 135.9064699930001, + -11.760340007999957 + ] + ] + ], + [ + [ + [ + 136.3721599930002, + -11.567750007999962 + ], + [ + 136.2644499930002, + -11.572200007999925 + ], + [ + 136.26621999300005, + -11.658610007999869 + ], + [ + 136.3721599930002, + -11.567750007999962 + ] + ] + ], + [ + [ + [ + 136.67808999400006, + -15.670380005999846 + ], + [ + 136.61644999400005, + -15.711350005999975 + ], + [ + 136.68361999400008, + -15.77851000599992 + ], + [ + 136.72500999400006, + -15.698160005999853 + ], + [ + 136.67808999400006, + -15.670380005999846 + ] + ] + ], + [ + [ + [ + 136.72875999400003, + -13.655350006999925 + ], + [ + 136.58941999400008, + -13.724880006999967 + ], + [ + 136.60095999400005, + -13.805890006999846 + ], + [ + 136.43463999400012, + -13.880790006999916 + ], + [ + 136.40863999400005, + -13.977700006999896 + ], + [ + 136.4433499940003, + -14.115250006999815 + ], + [ + 136.4023199940001, + -14.176340006999965 + ], + [ + 136.491599994, + -14.237790006999887 + ], + [ + 136.62522999400005, + -14.26490000699988 + ], + [ + 136.72735999400015, + -14.263160006999897 + ], + [ + 136.93476999400013, + -14.299030006999942 + ], + [ + 136.95214999400002, + -14.243260006999947 + ], + [ + 136.762989994, + -14.196680006999884 + ], + [ + 136.69981999400022, + -14.11140000699993 + ], + [ + 136.77804999400007, + -14.024890006999897 + ], + [ + 136.79306999400012, + -13.913890006999907 + ], + [ + 136.85957999400023, + -13.90797000699996 + ], + [ + 136.91005999400022, + -13.768490006999969 + ], + [ + 136.8371199940001, + -13.748170006999885 + ], + [ + 136.8405399940001, + -13.836860006999927 + ], + [ + 136.7212199940002, + -13.835610006999957 + ], + [ + 136.68281999400017, + -13.730560006999895 + ], + [ + 136.72875999400003, + -13.655350006999925 + ] + ] + ], + [ + [ + [ + 136.7636399920001, + -11.040460008999844 + ], + [ + 136.5882499930001, + -11.279230008999832 + ], + [ + 136.57747999300022, + -11.331370008999954 + ], + [ + 136.49496999300004, + -11.406310008999867 + ], + [ + 136.53455999300013, + -11.443500008999877 + ], + [ + 136.70937999300008, + -11.207670008999969 + ], + [ + 136.7636399920001, + -11.040460008999844 + ] + ] + ], + [ + [ + [ + 139.5564999940002, + -17.036610006999922 + ], + [ + 139.51437999400002, + -17.003230006999956 + ], + [ + 139.40054999400013, + -17.10672000699998 + ], + [ + 139.5747299940001, + -17.092100006999942 + ], + [ + 139.5564999940002, + -17.036610006999922 + ] + ] + ], + [ + [ + [ + 139.61324999400006, + -16.41531000699996 + ], + [ + 139.55894999400005, + -16.396840006999923 + ], + [ + 139.4635599940002, + -16.44684000699982 + ], + [ + 139.3094299940002, + -16.460450006999963 + ], + [ + 139.16074999400018, + -16.60959000699995 + ], + [ + 139.16614999400008, + -16.66868000699992 + ], + [ + 139.23001999400003, + -16.732180006999954 + ], + [ + 139.28873999400003, + -16.734740006999914 + ], + [ + 139.3822399940002, + -16.65584000699988 + ], + [ + 139.45151999400014, + -16.666400006999936 + ], + [ + 139.4780099940001, + -16.532180006999965 + ], + [ + 139.5762199940001, + -16.501070006999953 + ], + [ + 139.59830999400015, + -16.55376000699988 + ], + [ + 139.6996899940002, + -16.51055000699995 + ], + [ + 139.61324999400006, + -16.41531000699996 + ] + ] + ], + [ + [ + [ + 137.00697999400006, + -15.589440005999961 + ], + [ + 136.98153999400006, + -15.65581000599991 + ], + [ + 136.99343999400003, + -15.791190005999965 + ], + [ + 137.07269999400012, + -15.83821000599994 + ], + [ + 137.07542999400005, + -15.649640005999856 + ], + [ + 137.00697999400006, + -15.589440005999961 + ] + ] + ], + [ + [ + [ + 141.05749458200012, + -8.201016808999952 + ], + [ + 141.01567056200008, + -8.058198230999949 + ], + [ + 140.86766056800013, + -7.949746797999978 + ], + [ + 140.83059663100005, + -7.967846678999933 + ], + [ + 140.58354171100007, + -7.99851857799996 + ], + [ + 140.46171560900007, + -8.041906325999946 + ], + [ + 140.29994169300005, + -8.0067149059999 + ], + [ + 140.21228056400003, + -7.942625364999969 + ], + [ + 140.12802165000005, + -7.931928379999874 + ], + [ + 140.06083667300004, + -7.878265256999953 + ], + [ + 140.059661698, + -8.095261497999957 + ], + [ + 139.93730166900002, + -8.152658424999913 + ], + [ + 139.98977657400008, + -8.218119746999832 + ], + [ + 140.16127064800003, + -8.332502550999834 + ], + [ + 140.49310265200006, + -8.603985856999884 + ], + [ + 140.51832564200015, + -8.670552249999957 + ], + [ + 140.61706563500002, + -8.79174551799997 + ], + [ + 140.80120867200003, + -8.936035454999967 + ], + [ + 140.88240064800004, + -9.043094821999944 + ], + [ + 140.98321566500022, + -9.096448820999967 + ], + [ + 141.10539263300006, + -9.230203375999963 + ], + [ + 141.17199657600008, + -9.240229808999914 + ], + [ + 141.3092036380001, + -9.149277273999928 + ], + [ + 141.39540061500009, + -9.141877561999877 + ], + [ + 141.51310768200005, + -9.20502313299994 + ], + [ + 141.62359658900004, + -9.218132429999969 + ], + [ + 141.7561946090001, + -9.18820434099996 + ], + [ + 141.9073945870001, + -9.203453369999977 + ], + [ + 142.06440758200006, + -9.180983834999893 + ], + [ + 142.1858067100003, + -9.13831810299996 + ], + [ + 142.27630662100012, + -9.196045778999917 + ], + [ + 142.4150997060001, + -9.230275459999973 + ], + [ + 142.55160570500027, + -9.326549664999959 + ], + [ + 142.6253966280002, + -9.338743824999938 + ], + [ + 142.85259968100013, + -9.213372681999942 + ], + [ + 142.99147055000003, + -9.110129092999955 + ], + [ + 143.13059958100007, + -9.076382208999973 + ], + [ + 143.260772717, + -9.018883526999957 + ], + [ + 143.18603564500017, + -8.962448507999909 + ], + [ + 143.02328456600003, + -9.01921528299988 + ], + [ + 142.97030657900018, + -9.064629271999934 + ], + [ + 142.7886357010002, + -9.128965575999928 + ], + [ + 142.5729066360003, + -9.102473564999968 + ], + [ + 142.51612862900015, + -9.045706622999944 + ], + [ + 142.4858547040002, + -8.935957334999955 + ], + [ + 142.5653386150002, + -8.82242227699993 + ], + [ + 142.60696364900014, + -8.625628433999964 + ], + [ + 142.51234470300005, + -8.515879313999903 + ], + [ + 142.37988263700004, + -8.485603376999961 + ], + [ + 142.239852551, + -8.36828388999993 + ], + [ + 142.19821159100002, + -8.36828388999993 + ], + [ + 142.16415357100004, + -8.478034014999935 + ], + [ + 142.11872868500006, + -8.515879313999903 + ], + [ + 141.91813666600012, + -8.409912946999953 + ], + [ + 141.83488458700003, + -8.30773235099997 + ], + [ + 141.88407864700002, + -8.182844339999974 + ], + [ + 141.8651576740001, + -8.137431523999908 + ], + [ + 141.72860758600007, + -8.079512572999931 + ], + [ + 141.66619861700008, + -8.089331804999972 + ], + [ + 141.626907608, + -8.201617791999922 + ], + [ + 141.50489760800008, + -8.200290097999925 + ], + [ + 141.43589761300007, + -8.15311825599997 + ], + [ + 141.46279866100008, + -8.099618243999942 + ], + [ + 141.3802035540001, + -7.992427951999957 + ], + [ + 141.33590670500018, + -8.08549222299996 + ], + [ + 141.25489762200004, + -8.080233583999927 + ], + [ + 141.05749458200012, + -8.201016808999952 + ] + ] + ], + [ + [ + [ + 142.21004999100012, + -10.609800010999948 + ], + [ + 142.1267099910001, + -10.64467001099996 + ], + [ + 142.15425999100023, + -10.764800010999977 + ], + [ + 142.27834999100014, + -10.706370010999876 + ], + [ + 142.21004999100012, + -10.609800010999948 + ] + ] + ], + [ + [ + [ + 142.1831799910001, + -10.068390011999952 + ], + [ + 142.08975999100016, + -10.12959001199988 + ], + [ + 142.1674199910002, + -10.173100011999963 + ], + [ + 142.1831799910001, + -10.068390011999952 + ] + ] + ], + [ + [ + [ + 142.2997999910001, + -10.12464001199993 + ], + [ + 142.22800999100002, + -10.124050011999884 + ], + [ + 142.18631999100023, + -10.19142001199998 + ], + [ + 142.277229991, + -10.260800011999947 + ], + [ + 142.3441099910001, + -10.169490011999926 + ], + [ + 142.2997999910001, + -10.12464001199993 + ] + ] + ], + [ + [ + [ + 147.96471804500004, + -28.951276116999964 + ], + [ + 147.90761311100027, + -29.032381830999952 + ], + [ + 147.8218598090001, + -29.274618201999942 + ], + [ + 147.68343136900012, + -29.3296074779999 + ], + [ + 147.59964528500007, + -29.44250977099989 + ], + [ + 147.59023076800008, + -29.543733141999894 + ], + [ + 147.49872358400012, + -29.531797126999948 + ], + [ + 147.34900474800008, + -29.69006580499996 + ], + [ + 147.37271705100022, + -29.728087020999908 + ], + [ + 147.27855558100032, + -29.8368425299999 + ], + [ + 147.29447091900022, + -29.893872448999957 + ], + [ + 147.38466649200006, + -29.976101980999942 + ], + [ + 147.38935143600008, + -30.033602988999974 + ], + [ + 147.55071342200017, + -30.016686395999898 + ], + [ + 147.54781345300012, + -29.92656565999988 + ], + [ + 147.58757749300003, + -29.85541006099993 + ], + [ + 147.74199657400004, + -29.799371702999906 + ], + [ + 147.84349820400007, + -29.73170417599988 + ], + [ + 147.78519347500003, + -29.6233093809999 + ], + [ + 147.85549035800022, + -29.450891904999935 + ], + [ + 147.9152286210001, + -29.392124398999954 + ], + [ + 147.90528018800012, + -29.302610503999972 + ], + [ + 147.94208402300012, + -29.17942027099997 + ], + [ + 147.93733882400034, + -29.108109937999984 + ], + [ + 148.06064527500018, + -29.076617273999943 + ], + [ + 148.05474447600034, + -28.96898480799996 + ], + [ + 147.96471804500004, + -28.951276116999964 + ] + ] + ], + [ + [ + [ + 151.08366999400016, + -23.470710007999912 + ], + [ + 150.97845999400022, + -23.48711000799989 + ], + [ + 151.04587999400007, + -23.620650007999927 + ], + [ + 151.1366499940002, + -23.676480007999885 + ], + [ + 151.1920399940002, + -23.773970007999935 + ], + [ + 151.30103999400012, + -23.74401000799992 + ], + [ + 151.2267099940002, + -23.61427000799995 + ], + [ + 151.2347699940002, + -23.49757000799991 + ], + [ + 151.15801999400003, + -23.510460007999825 + ], + [ + 151.08366999400016, + -23.470710007999912 + ] + ] + ] + ] + }, + "properties": { + "biome_name": "Tropical & Subtropical Grasslands, Savannas & Shrublands", + "biome_num": 7, + "color_bio": "#FEAA01", + "area_km2": 21439015.76054732, + "percentage": 28.09658287307609 + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + -95.80659729299998, + 30.53623178900017 + ], + [ + -95.9330329799999, + 30.562316494000072 + ], + [ + -96.04166831799995, + 30.44955291900004 + ], + [ + -96.151255199, + 30.366068437000024 + ], + [ + -96.2497231129999, + 30.36408637700015 + ], + [ + -96.36285541199999, + 30.32879200700006 + ], + [ + -96.6197776539999, + 30.20008124200018 + ], + [ + -96.8001163539999, + 30.032136770000136 + ], + [ + -96.904808345, + 29.88172971500012 + ], + [ + -96.99131218199989, + 29.8112778040001 + ], + [ + -97.18673959299997, + 29.582086574000016 + ], + [ + -97.27582499699997, + 29.49623099300004 + ], + [ + -97.30360926699996, + 29.41512779900006 + ], + [ + -97.50446059699993, + 29.238348805000044 + ], + [ + -97.55912746699988, + 29.135259385000097 + ], + [ + -97.65963311799999, + 29.07112479800014 + ], + [ + -97.70032044599992, + 28.996229090999975 + ], + [ + -97.622867209, + 28.938797137000165 + ], + [ + -97.49645825499988, + 28.967726464000066 + ], + [ + -97.45509462399997, + 29.027668246000076 + ], + [ + -97.28611530599989, + 29.05442088600006 + ], + [ + -97.22954971099989, + 29.211339649000138 + ], + [ + -97.17142731699994, + 29.253023007000024 + ], + [ + -97.07057515499991, + 29.25501374000015 + ], + [ + -96.9697531349999, + 29.300946736000185 + ], + [ + -96.95758712199995, + 29.369048482000153 + ], + [ + -96.86844943799991, + 29.36820108100011 + ], + [ + -96.77821777999998, + 29.50696386700008 + ], + [ + -96.72707131199991, + 29.660043369000164 + ], + [ + -96.60620744199997, + 29.707856766000077 + ], + [ + -96.67013198399997, + 29.80983050800006 + ], + [ + -96.5885764169999, + 29.889003682 + ], + [ + -96.51436702599995, + 29.846617636000076 + ], + [ + -96.4351683839999, + 29.935004790000164 + ], + [ + -96.31946932199997, + 29.955219954000142 + ], + [ + -96.31536071799991, + 30.03745641500018 + ], + [ + -96.18684780299998, + 30.063561064000112 + ], + [ + -96.19642865499992, + 30.20049040800012 + ], + [ + -96.10135333499994, + 30.24600554300008 + ], + [ + -95.98737358499983, + 30.24204694700012 + ], + [ + -95.93760038499988, + 30.342692070000055 + ], + [ + -95.71368955299994, + 30.316528253000172 + ], + [ + -95.65467791699996, + 30.383139181000104 + ], + [ + -95.75030218799998, + 30.446042296000087 + ], + [ + -95.85590325099997, + 30.3989192950001 + ], + [ + -95.8711573139999, + 30.499851597000088 + ], + [ + -95.80659729299998, + 30.53623178900017 + ] + ] + ], + [ + [ + [ + -98.7938865139999, + 29.24920963000011 + ], + [ + -98.70217212999984, + 29.212633025000173 + ], + [ + -98.41460483299988, + 29.213680663 + ], + [ + -98.31308703399998, + 29.25906211400013 + ], + [ + -98.26156513899991, + 29.337616017000073 + ], + [ + -98.10576443699995, + 29.40284047700004 + ], + [ + -98.04769610499994, + 29.500253896000117 + ], + [ + -97.98691590699991, + 29.5414884490001 + ], + [ + -97.86961495299988, + 29.555514067000104 + ], + [ + -97.89583062499997, + 29.661307079000096 + ], + [ + -97.86335582499999, + 29.69219814000013 + ], + [ + -97.70723392499997, + 29.71985394700016 + ], + [ + -97.68163370099995, + 29.811666590000073 + ], + [ + -97.60311085299998, + 29.765966279000054 + ], + [ + -97.56842579, + 29.839540869000075 + ], + [ + -97.61740169299998, + 29.943528845000117 + ], + [ + -97.62130926899988, + 30.067313208000087 + ], + [ + -97.51135867099998, + 30.182454627000027 + ], + [ + -97.53676986199997, + 30.302387540000154 + ], + [ + -97.41844836499996, + 30.28667329400008 + ], + [ + -97.33694806799991, + 30.407824426 + ], + [ + -97.19246099799989, + 30.533776095 + ], + [ + -96.97824026099994, + 30.79621368100004 + ], + [ + -96.89505017299996, + 30.852789185000063 + ], + [ + -96.92918789099997, + 30.924334450000117 + ], + [ + -96.79424242099998, + 31.11626516300015 + ], + [ + -96.72734847099991, + 31.175236401000177 + ], + [ + -96.47312101899996, + 31.546346378000123 + ], + [ + -96.40907081699999, + 31.719787558000064 + ], + [ + -96.27979264499999, + 31.895361639000157 + ], + [ + -96.23035750999998, + 31.989234374000034 + ], + [ + -96.18997624399992, + 32.15118430900014 + ], + [ + -96.35923443699988, + 32.24205715900018 + ], + [ + -96.53548965599998, + 32.43660095900003 + ], + [ + -96.50442034099984, + 32.50802787900011 + ], + [ + -96.38562407499995, + 32.49770408300003 + ], + [ + -96.29364805499995, + 32.405237256000134 + ], + [ + -96.19874958899993, + 32.423566222000034 + ], + [ + -96.13929048499989, + 32.55972779900014 + ], + [ + -96.19974290799996, + 32.62008185200011 + ], + [ + -96.14669957099989, + 32.74652870200015 + ], + [ + -96.19609655499988, + 32.8336132660001 + ], + [ + -96.27225252099998, + 32.84348292800013 + ], + [ + -96.22165767399997, + 32.97033425500018 + ], + [ + -96.16208418999997, + 32.99433544300007 + ], + [ + -96.02588505799991, + 33.162511070000164 + ], + [ + -95.91973994299985, + 33.03565619000011 + ], + [ + -95.77235151199994, + 33.10785116300008 + ], + [ + -95.68342269299995, + 33.188959131000104 + ], + [ + -95.60165823499989, + 33.21946125200009 + ], + [ + -95.53399090299996, + 33.321783569000104 + ], + [ + -95.53307484599992, + 33.37934320000011 + ], + [ + -95.46538777499995, + 33.47527713000005 + ], + [ + -95.36399812399998, + 33.44975687200002 + ], + [ + -95.20657699099996, + 33.46488228800007 + ], + [ + -95.17498115799998, + 33.501081944000134 + ], + [ + -95.34393492899994, + 33.63882779400018 + ], + [ + -95.63219460599998, + 33.65327848200019 + ], + [ + -95.60449239299999, + 33.76326295400003 + ], + [ + -95.6882570969999, + 33.759126871000035 + ], + [ + -95.76059141599995, + 33.701411282000095 + ], + [ + -95.8400904689999, + 33.710714226000164 + ], + [ + -96.0563977029999, + 33.6444326080001 + ], + [ + -96.33975245399989, + 33.621494852000126 + ], + [ + -96.45990912999997, + 33.69647502700013 + ], + [ + -96.5380266599999, + 33.69151451700003 + ], + [ + -96.6813799649999, + 33.790475336999975 + ], + [ + -96.6530773099999, + 33.90988321700013 + ], + [ + -96.5023903579999, + 34.0202637970001 + ], + [ + -96.29564795499994, + 34.03381045700007 + ], + [ + -96.26049723099999, + 34.08295298300004 + ], + [ + -96.14078652799998, + 34.049256126000046 + ], + [ + -96.08589741199995, + 34.09148431400007 + ], + [ + -96.16256452199985, + 34.15556625200003 + ], + [ + -96.33548733499998, + 34.19115257500005 + ], + [ + -96.40523222699994, + 34.183650233000094 + ], + [ + -96.51369387599993, + 34.233372152000186 + ], + [ + -96.48417374699983, + 34.2904238750001 + ], + [ + -96.36773116799992, + 34.24490864800009 + ], + [ + -96.41229924199996, + 34.3941806900001 + ], + [ + -96.36275157199992, + 34.4682638160001 + ], + [ + -96.47557793299995, + 34.497625099000174 + ], + [ + -96.505465486, + 34.54243638100007 + ], + [ + -96.64412906099994, + 34.59715969100017 + ], + [ + -96.57756835599992, + 34.70258958300013 + ], + [ + -96.65863427999989, + 34.73210288800004 + ], + [ + -96.57448790999996, + 34.82984073800003 + ], + [ + -96.37609267699997, + 34.90689703200019 + ], + [ + -96.33462409999987, + 34.999305271000026 + ], + [ + -96.18015606599994, + 35.04677481400006 + ], + [ + -96.10164115099997, + 35.188773762000096 + ], + [ + -96.01382612999987, + 35.22195430300019 + ], + [ + -95.84772437399994, + 35.32337631300004 + ], + [ + -95.80155037299983, + 35.28999791400008 + ], + [ + -95.71685075399989, + 35.364889401000084 + ], + [ + -95.55667588999995, + 35.31490154200003 + ], + [ + -95.31813809199997, + 35.29237006700015 + ], + [ + -95.22510369199995, + 35.35290632500016 + ], + [ + -95.16197963699989, + 35.5390436940001 + ], + [ + -95.2094565559999, + 35.59512907800007 + ], + [ + -95.14076096499997, + 35.674042402000055 + ], + [ + -95.28885388699996, + 35.676198837000015 + ], + [ + -95.24775388399996, + 35.869308634000106 + ], + [ + -95.27746694099994, + 35.955068740000115 + ], + [ + -95.25008626699997, + 36.00850734100004 + ], + [ + -95.27310534699996, + 36.15109000700005 + ], + [ + -95.15899082799996, + 36.374371937000035 + ], + [ + -95.17909995799994, + 36.44115036700009 + ], + [ + -95.12834490399996, + 36.58173523200014 + ], + [ + -95.00873994299997, + 36.59103916400005 + ], + [ + -94.82163467399994, + 36.72749788900012 + ], + [ + -94.81511874799992, + 36.78327555400011 + ], + [ + -94.67884685299998, + 37.15022019600008 + ], + [ + -94.6213154589999, + 37.151991621000036 + ], + [ + -94.57360606799995, + 37.30608846100006 + ], + [ + -94.3945013209999, + 37.30886441900009 + ], + [ + -94.3591031819999, + 37.34774674500005 + ], + [ + -94.24676907999998, + 37.35215442500004 + ], + [ + -94.14382350499994, + 37.467311017000156 + ], + [ + -94.05976495199997, + 37.41907275200009 + ], + [ + -93.99468941399988, + 37.43557648900003 + ], + [ + -94.00165342699995, + 37.58520871700017 + ], + [ + -93.93106559699993, + 37.71423334300016 + ], + [ + -93.99482015999996, + 37.73364511400001 + ], + [ + -93.9577551569999, + 37.8264686870001 + ], + [ + -93.82212637199996, + 37.94079495500006 + ], + [ + -93.9394734309999, + 38.06184092700016 + ], + [ + -93.84112573899989, + 38.12316491300015 + ], + [ + -93.70129304799997, + 38.10547617200007 + ], + [ + -93.62324869499992, + 38.25673900400011 + ], + [ + -93.51551576199984, + 38.29622357700009 + ], + [ + -93.4621682149999, + 38.37436824300005 + ], + [ + -93.27162450199995, + 38.365036939000106 + ], + [ + -93.15246587899986, + 38.49997904100019 + ], + [ + -93.14974159299987, + 38.58691089800004 + ], + [ + -93.25157898299994, + 38.63008907300008 + ], + [ + -93.19669066499989, + 38.68126050900008 + ], + [ + -93.08190189699997, + 38.655320250000045 + ], + [ + -92.98810187099991, + 38.70481136000012 + ], + [ + -92.87603696599996, + 38.826621602000046 + ], + [ + -92.71072711199992, + 38.88476194000003 + ], + [ + -92.67905694299992, + 38.84601652200001 + ], + [ + -92.56581356199996, + 38.84404236300003 + ], + [ + -92.545392672, + 38.78439289900007 + ], + [ + -92.69489389299986, + 38.75732052700005 + ], + [ + -92.67939699899989, + 38.63643524100007 + ], + [ + -92.50467557699989, + 38.51000677100012 + ], + [ + -92.53070020599989, + 38.46984380400016 + ], + [ + -92.41201802399996, + 38.40354926000015 + ], + [ + -92.36301151299995, + 38.451350859000115 + ], + [ + -92.27002500799995, + 38.44002584100008 + ], + [ + -92.18704395399999, + 38.48299978200015 + ], + [ + -91.97418706899998, + 38.53111486200004 + ], + [ + -91.90155286099997, + 38.58246856400018 + ], + [ + -91.79590120099994, + 38.58189909000015 + ], + [ + -91.57012399199994, + 38.64343064100018 + ], + [ + -91.39591909599994, + 38.6355618770001 + ], + [ + -91.23054903899992, + 38.507565007000096 + ], + [ + -91.13595494099997, + 38.524029573000064 + ], + [ + -91.00421140399999, + 38.455278907000036 + ], + [ + -90.85820917199999, + 38.47264287500019 + ], + [ + -90.67697829799994, + 38.58211655200017 + ], + [ + -90.61378671499995, + 38.56865438500017 + ], + [ + -90.47046575799993, + 38.630412885000055 + ], + [ + -90.31078216899994, + 38.47272772500014 + ], + [ + -90.38385804799998, + 38.26008670600015 + ], + [ + -90.37127803699997, + 38.174723650000146 + ], + [ + -90.13561475599994, + 37.88859891600009 + ], + [ + -90.03519192299996, + 37.84976698400004 + ], + [ + -89.92514548999986, + 37.7043921340001 + ], + [ + -89.98210106799996, + 37.62710754200009 + ], + [ + -89.85234944899997, + 37.530651775000024 + ], + [ + -89.76142644499998, + 37.29294590100017 + ], + [ + -89.61049339899989, + 37.21923953900006 + ], + [ + -89.70037386799999, + 37.12936560400016 + ], + [ + -89.6148549209999, + 37.05054531600007 + ], + [ + -89.44421641399987, + 37.16374655200019 + ], + [ + -89.33462461999989, + 37.18734480800015 + ], + [ + -89.17361306999987, + 37.05926587400006 + ], + [ + -89.15025493899998, + 36.99844581100007 + ], + [ + -89.06197328999997, + 36.93381386500016 + ], + [ + -89.12703821499997, + 36.70535214000017 + ], + [ + -89.09817301099997, + 36.59965239900015 + ], + [ + -89.17081002199996, + 36.57945001600007 + ], + [ + -89.3090254519999, + 36.47066914100003 + ], + [ + -89.30557928699989, + 36.434793047000085 + ], + [ + -89.41988101099992, + 36.27397074300012 + ], + [ + -89.37933429899994, + 36.17148782900006 + ], + [ + -89.48920759899994, + 36.11493003700008 + ], + [ + -89.44653352899991, + 36.009793767000076 + ], + [ + -89.5055689589999, + 35.90834603900004 + ], + [ + -89.67513512099993, + 35.75992746100019 + ], + [ + -89.73845084399994, + 35.677706635000106 + ], + [ + -89.83498044299989, + 35.64543887000019 + ], + [ + -89.83528187099989, + 35.597785922000185 + ], + [ + -90.07577317899995, + 35.30216595900009 + ], + [ + -90.03635388699985, + 35.19869794300013 + ], + [ + -90.12749624999992, + 35.05667079200015 + ], + [ + -90.1428817129999, + 34.90350169100003 + ], + [ + -90.19366292199993, + 34.83523790400005 + ], + [ + -90.15029734899991, + 34.77809776700008 + ], + [ + -90.21438404299994, + 34.64606736200017 + ], + [ + -90.1705684879999, + 34.47631722400013 + ], + [ + -90.02623565599993, + 34.32098668900005 + ], + [ + -90.06568721699995, + 34.261148650000166 + ], + [ + -90.08015264699998, + 34.07912646100016 + ], + [ + -90.06315448399982, + 33.898661634000064 + ], + [ + -90.00776504099997, + 33.745012382000084 + ], + [ + -90.04256220899998, + 33.708006466000086 + ], + [ + -90.0500090139999, + 33.528829536000046 + ], + [ + -90.07266840299997, + 33.45068970200015 + ], + [ + -90.15130453499995, + 33.35840132200019 + ], + [ + -90.14281269899993, + 33.24968913900017 + ], + [ + -90.1950283239999, + 33.18330277300015 + ], + [ + -90.19782870099982, + 33.101293392000116 + ], + [ + -90.29224187899996, + 32.98056287300005 + ], + [ + -90.34728817299987, + 32.95678914000007 + ], + [ + -90.58356300999998, + 32.61029245700007 + ], + [ + -90.7814925859999, + 32.52017829000016 + ], + [ + -90.87434215299999, + 32.36631230400019 + ], + [ + -90.94323555599993, + 32.2148428320001 + ], + [ + -90.94076365799998, + 32.15057942400006 + ], + [ + -91.04788036899998, + 32.039828066000155 + ], + [ + -91.05810373799994, + 31.98703033900017 + ], + [ + -91.17696969899998, + 31.911111771000037 + ], + [ + -91.21968688799984, + 31.77400996300014 + ], + [ + -91.34855504799992, + 31.69995093700004 + ], + [ + -91.42401725199983, + 31.546218646 + ], + [ + -91.4501632169999, + 31.38871559500012 + ], + [ + -91.3542386819999, + 31.339103461000036 + ], + [ + -91.41400001099993, + 31.234779325000034 + ], + [ + -91.54222722299994, + 31.103980788000115 + ], + [ + -91.56765120599988, + 30.936753089000092 + ], + [ + -91.36193779799993, + 30.760924915000032 + ], + [ + -91.18896538299998, + 30.510629436000045 + ], + [ + -91.18243419399994, + 30.41793835599998 + ], + [ + -91.01012719399989, + 30.32227532900015 + ], + [ + -91.01458915199987, + 30.224279965000164 + ], + [ + -90.95232154299998, + 30.16311883600008 + ], + [ + -90.87620617199997, + 30.15942545400003 + ], + [ + -90.83523688699995, + 30.24501215900011 + ], + [ + -90.68999560099996, + 30.328062213000067 + ], + [ + -90.60299296699992, + 30.314473722000116 + ], + [ + -90.51445014899991, + 30.407025725000096 + ], + [ + -90.41398660199991, + 30.418113952000112 + ], + [ + -90.17496312599991, + 30.412330168000153 + ], + [ + -89.93222815099995, + 30.27240248300012 + ], + [ + -89.85736106999991, + 30.273170344000164 + ], + [ + -89.69563416799997, + 30.184168409999984 + ], + [ + -89.4984327379999, + 30.181241846000148 + ], + [ + -89.32992360699996, + 30.302996423000025 + ], + [ + -89.00133261099995, + 30.386905544000058 + ], + [ + -88.85665075399999, + 30.39059645800006 + ], + [ + -88.74559617599994, + 30.347023725000042 + ], + [ + -88.6104052309999, + 30.375996463000092 + ], + [ + -88.4785597369999, + 30.318514636000145 + ], + [ + -88.33748697499993, + 30.404851023000106 + ], + [ + -88.20536875399995, + 30.361714655000014 + ], + [ + -88.10917781899997, + 30.370787387 + ], + [ + -88.10125964199995, + 30.50937832699998 + ], + [ + -87.99497780099989, + 30.67900564100006 + ], + [ + -87.91753232299999, + 30.63757836100018 + ], + [ + -87.9044868609999, + 30.538723795000124 + ], + [ + -87.93710504899991, + 30.482678327000087 + ], + [ + -87.90745958399992, + 30.41193285700001 + ], + [ + -87.75559589999989, + 30.291960108000183 + ], + [ + -87.66005950799996, + 30.249214648000134 + ], + [ + -87.51506856099991, + 30.3015055730001 + ], + [ + -87.4414230889999, + 30.3657419540001 + ], + [ + -87.38672307099995, + 30.323323764000122 + ], + [ + -87.17459574399993, + 30.428760158000102 + ], + [ + -87.09908663599992, + 30.51810563500004 + ], + [ + -86.93200476699991, + 30.45853290000008 + ], + [ + -86.94986840699994, + 30.395432885000105 + ], + [ + -86.71928652499992, + 30.410905623000133 + ], + [ + -86.60215921799994, + 30.401205624 + ], + [ + -86.49164100799999, + 30.46226927800012 + ], + [ + -86.42125007899995, + 30.450796551000053 + ], + [ + -86.25452275999999, + 30.48697838200019 + ], + [ + -86.24790457399985, + 30.428860188000044 + ], + [ + -86.337750052, + 30.38573290200003 + ], + [ + -85.92258629399993, + 30.237932882000166 + ], + [ + -85.74794987599995, + 30.14436923 + ], + [ + -85.77461352399996, + 30.246132888000034 + ], + [ + -85.68487713499997, + 30.226151069000082 + ], + [ + -85.68367712999998, + 30.116414680000048 + ], + [ + -85.5445043599999, + 30.026932846000136 + ], + [ + -85.48776797799991, + 29.961232833000167 + ], + [ + -85.3637315759999, + 29.898923731000025 + ], + [ + -85.30134064499993, + 29.799232801000073 + ], + [ + -85.31084973399987, + 29.689150958000084 + ], + [ + -85.10094967599991, + 29.718823698000108 + ], + [ + -84.99327691799994, + 29.714950973000043 + ], + [ + -84.79849504599986, + 29.76895099100011 + ], + [ + -84.53726770499998, + 29.90938739500018 + ], + [ + -84.45563131899996, + 29.928814675000183 + ], + [ + -84.3607676609999, + 30.059305617000177 + ], + [ + -84.20572216299996, + 30.105023813000173 + ], + [ + -84.00254937799991, + 30.100660182000183 + ], + [ + -83.92541298899994, + 30.034469261000083 + ], + [ + -83.77650385299995, + 29.978178342000092 + ], + [ + -83.6392947199999, + 29.887360144000127 + ], + [ + -83.53764922899995, + 29.723069200000168 + ], + [ + -83.40027645999999, + 29.65833282500006 + ], + [ + -83.39249463499993, + 29.52476006700016 + ], + [ + -83.29675823999997, + 29.444905505000122 + ], + [ + -83.22038549099989, + 29.42606914000004 + ], + [ + -83.15572183199998, + 29.317405480000048 + ], + [ + -83.0782581709999, + 29.26223274100016 + ], + [ + -83.07114907599993, + 29.201469091000035 + ], + [ + -82.83651264299993, + 29.15611454100008 + ], + [ + -82.75313079699998, + 29.063459976000104 + ], + [ + -82.7530035229999, + 28.99759632400003 + ], + [ + -82.63787621299997, + 28.89021448400007 + ], + [ + -82.66634893299982, + 28.449596196000186 + ], + [ + -82.70663075999994, + 28.394832545000043 + ], + [ + -82.75092342899995, + 28.238713879000045 + ], + [ + -82.80346713799997, + 27.962132439000072 + ], + [ + -82.84802917299987, + 27.87101405200019 + ], + [ + -82.6906034619999, + 27.71061420000018 + ], + [ + -82.62227617199989, + 27.78919603900016 + ], + [ + -82.62542470699992, + 27.874941880000108 + ], + [ + -82.72435802399997, + 27.94906880200017 + ], + [ + -82.676722596, + 28.006791137000107 + ], + [ + -82.54977734699997, + 27.967713874000083 + ], + [ + -82.39771541599998, + 27.8842647190001 + ], + [ + -82.45679214699993, + 27.699010464000025 + ], + [ + -82.54714556699992, + 27.650601648000134 + ], + [ + -82.54405226799997, + 27.602536536000116 + ], + [ + -82.64413762799995, + 27.449212333000162 + ], + [ + -82.58011157499988, + 27.41538800700016 + ], + [ + -82.44299427899995, + 27.056195865000177 + ], + [ + -82.28716695399999, + 26.842859452000027 + ], + [ + -82.17684895899998, + 26.830675172000156 + ], + [ + -82.18708064199996, + 26.93322994099998 + ], + [ + -82.08381203399989, + 26.899679541000125 + ], + [ + -82.03669870599992, + 26.821157328000083 + ], + [ + -82.07147597999989, + 26.73067761200008 + ], + [ + -82.03360540699998, + 26.550136719000022 + ], + [ + -81.93224036799995, + 26.475183697000034 + ], + [ + -81.84729360999995, + 26.47256629000009 + ], + [ + -81.82516462299998, + 26.357162431000063 + ], + [ + -81.80209910199994, + 26.09577998300017 + ], + [ + -81.79859423399995, + 26.09565499900009 + ], + [ + -81.77567856199988, + 26.125959633000036 + ], + [ + -81.77219392099988, + 26.143295451000142 + ], + [ + -81.7848888979999, + 26.17243031999999 + ], + [ + -81.80010655099994, + 26.387072133000174 + ], + [ + -81.75154882799995, + 26.519373875000042 + ], + [ + -81.64667934399995, + 26.416030729000056 + ], + [ + -81.54910577399994, + 26.38356230800008 + ], + [ + -81.58842169999991, + 26.27372419800008 + ], + [ + -81.39747457999982, + 26.274492836000093 + ], + [ + -81.35310141199983, + 26.321418861999973 + ], + [ + -81.20823781699988, + 26.24883835800017 + ], + [ + -81.16775303399993, + 26.2943276150001 + ], + [ + -81.22217266199993, + 26.38670931200005 + ], + [ + -81.10625192699996, + 26.422618221000164 + ], + [ + -81.05789427899998, + 26.336870078000175 + ], + [ + -80.97603004199993, + 26.31213574200018 + ], + [ + -80.92202349999991, + 26.38922649800014 + ], + [ + -80.96387930999998, + 26.46080115100017 + ], + [ + -80.99825593999992, + 26.64341945400008 + ], + [ + -81.15838577599999, + 26.761479899 + ], + [ + -81.1773941919999, + 26.864380816000107 + ], + [ + -81.12617871599997, + 26.8859252740001 + ], + [ + -81.13633542499997, + 26.965818266000156 + ], + [ + -81.01368985899984, + 27.020307859000127 + ], + [ + -80.82612393699998, + 27.201170074000117 + ], + [ + -80.75278771799998, + 27.200179686000013 + ], + [ + -80.63410370799988, + 27.072446153000044 + ], + [ + -80.57145608199988, + 26.937697534000108 + ], + [ + -80.37098773099996, + 26.751394091000066 + ], + [ + -80.30862847699996, + 26.676759675000085 + ], + [ + -80.21119721199983, + 26.668396905000066 + ], + [ + -80.14448082799998, + 26.703074137999977 + ], + [ + -80.0975956289999, + 26.82162481500012 + ], + [ + -80.04599243099995, + 26.85559573800009 + ], + [ + -80.09572086799994, + 27.02350500299997 + ], + [ + -80.18133907899983, + 27.16464139900006 + ], + [ + -80.31463003499994, + 27.423932370000045 + ], + [ + -80.40092292999998, + 27.698103118000063 + ], + [ + -80.60706650399987, + 28.088668889000076 + ], + [ + -80.74483928299992, + 28.396223506000126 + ], + [ + -80.67813013699998, + 28.41455882600019 + ], + [ + -80.60662106499996, + 28.549887183000124 + ], + [ + -80.62149896499994, + 28.62609291000018 + ], + [ + -80.7206029219999, + 28.707114491000027 + ], + [ + -80.81988476699996, + 28.652078112000083 + ], + [ + -80.84913152099989, + 28.74209775900016 + ], + [ + -80.76713020999995, + 28.757423593000112 + ], + [ + -80.97395360899998, + 29.083597624000106 + ], + [ + -80.99993938499995, + 29.212096424000094 + ], + [ + -81.22111839899992, + 29.692544278000184 + ], + [ + -81.26310030099995, + 29.735939592000136 + ], + [ + -81.32334056399998, + 29.876460647000044 + ], + [ + -81.31064859399993, + 29.976451141000098 + ], + [ + -81.38300317099998, + 30.26273302500016 + ], + [ + -81.39298499799997, + 30.397160329000087 + ], + [ + -81.47004866899994, + 30.694251304000147 + ], + [ + -81.53077596399999, + 30.834087699000065 + ], + [ + -81.46237595099996, + 30.99811501200014 + ], + [ + -81.45652140699997, + 31.086769578000144 + ], + [ + -81.40212140099999, + 31.30495144700012 + ], + [ + -81.30722137599997, + 31.381942377000144 + ], + [ + -81.34313957099988, + 31.440906026000164 + ], + [ + -81.28154864799995, + 31.545869688000096 + ], + [ + -81.17155770799997, + 31.556924240000114 + ], + [ + -81.13335770199996, + 31.69776972800014 + ], + [ + -81.18282135799996, + 31.79374247500016 + ], + [ + -81.08947587899996, + 31.8844152260001 + ], + [ + -80.9958122139999, + 31.856560677000175 + ], + [ + -80.86028490599995, + 31.97401525400005 + ], + [ + -80.90749401499988, + 32.05111527000008 + ], + [ + -80.90021219799996, + 32.11967892200005 + ], + [ + -80.7892939859999, + 32.18956075900019 + ], + [ + -80.75880307199992, + 32.277869871 + ], + [ + -80.82904855599992, + 32.46478809300004 + ], + [ + -80.77587581599988, + 32.5364244750001 + ], + [ + -80.58674848599998, + 32.49986083600004 + ], + [ + -80.50651209899996, + 32.51439720600018 + ], + [ + -80.41349388799995, + 32.470679017 + ], + [ + -80.3325756829999, + 32.478033567000125 + ], + [ + -80.19637564499999, + 32.55907904400004 + ], + [ + -80.01571195799994, + 32.61067906100004 + ], + [ + -79.90167556299997, + 32.67975180800016 + ], + [ + -79.85513918999999, + 32.76862455700007 + ], + [ + -79.61560275999989, + 32.89414277499998 + ], + [ + -79.61479367299995, + 32.96331551800006 + ], + [ + -79.52856637799994, + 33.03735190100019 + ], + [ + -79.41562088899991, + 33.01701553600003 + ], + [ + -79.36432996699989, + 33.07713373300015 + ], + [ + -79.19051173699995, + 33.1699428500001 + ], + [ + -79.20340265599992, + 33.302506516000165 + ], + [ + -79.09808445099986, + 33.465024738000125 + ], + [ + -78.94789350399998, + 33.63086114300012 + ], + [ + -78.79597528299996, + 33.75521572200017 + ], + [ + -78.54033884799992, + 33.87651575700011 + ], + [ + -78.17164782999993, + 33.92948850800019 + ], + [ + -78.02294778499993, + 33.91581578300014 + ], + [ + -77.88062956599993, + 34.05692491000019 + ], + [ + -77.84267501499988, + 34.18144312000004 + ], + [ + -77.70063861699998, + 34.344070434000116 + ], + [ + -77.60649313599998, + 34.40581590500011 + ], + [ + -77.28182031799997, + 34.565015951000134 + ], + [ + -77.11816572899994, + 34.686706892000075 + ], + [ + -77.09104753799994, + 34.67286143600006 + ], + [ + -76.90287475599996, + 34.726679635000096 + ], + [ + -76.71894742699999, + 34.71812509400007 + ], + [ + -76.72644743199999, + 34.78377056300013 + ], + [ + -76.51560190999993, + 34.71807964600009 + ], + [ + -76.41417461299994, + 34.85017058800008 + ], + [ + -76.31449276699993, + 34.903234239000085 + ], + [ + -76.50862010199995, + 34.984297886000036 + ], + [ + -76.62959286699993, + 34.98940697500012 + ], + [ + -76.76144744899989, + 34.91616149900017 + ], + [ + -76.81972928799996, + 34.97111605500015 + ], + [ + -76.71183834699991, + 35.00467970300008 + ], + [ + -76.59704740699982, + 35.07337063100016 + ], + [ + -76.48222919799991, + 35.2474252180001 + ], + [ + -76.50086556999997, + 35.30546159300013 + ], + [ + -76.71878382199992, + 35.374861602000124 + ], + [ + -76.70991109499988, + 35.42888888599998 + ], + [ + -76.49382011699998, + 35.379534337000166 + ], + [ + -76.43049282599992, + 35.40668889099999 + ], + [ + -76.20214729899993, + 35.338134338000145 + ], + [ + -76.1125563629999, + 35.35433434400011 + ], + [ + -76.01308360799999, + 35.42371618100003 + ], + [ + -75.91880176799992, + 35.562643487000116 + ], + [ + -75.81792900999989, + 35.5718344010001 + ], + [ + -75.73045625899994, + 35.626543507000065 + ], + [ + -75.72589262899999, + 35.806043546000126 + ], + [ + -75.78421992699992, + 35.93441630000018 + ], + [ + -75.85758358599998, + 35.94557993600017 + ], + [ + -75.98601089499994, + 35.88888901100012 + ], + [ + -76.00488361799995, + 35.67705260000008 + ], + [ + -76.05969272699997, + 35.708461696000086 + ], + [ + -76.06534727999991, + 35.83739808800004 + ], + [ + -76.01256545099989, + 35.924807199000156 + ], + [ + -76.06234728799996, + 35.99089812099999 + ], + [ + -76.27224735099998, + 35.97205265500003 + ], + [ + -76.39876557299988, + 35.98274356200005 + ], + [ + -76.52344742699984, + 35.945416278000096 + ], + [ + -76.66357474199998, + 35.93244354300009 + ], + [ + -76.67433838799991, + 36.04397993100014 + ], + [ + -76.57997472099993, + 36.01082538100013 + ], + [ + -76.4603292299999, + 36.02510720600014 + ], + [ + -76.41188376299993, + 36.07987085600013 + ], + [ + -76.23957461999998, + 36.099834502000135 + ], + [ + -76.07185638799996, + 36.14069815300019 + ], + [ + -76.02150182999998, + 36.19010725600009 + ], + [ + -75.90591997699988, + 36.206407263000074 + ], + [ + -75.89911089099996, + 36.326552744000026 + ], + [ + -75.99572910699999, + 36.410625486000185 + ], + [ + -76.04557457999994, + 36.503807323000046 + ], + [ + -75.9838472919999, + 36.55056188000009 + ], + [ + -75.99292002599998, + 36.635252808000075 + ], + [ + -75.93649273899996, + 36.71537100800009 + ], + [ + -75.9901927659999, + 36.911707412000055 + ], + [ + -76.09498370899996, + 36.9085710440001 + ], + [ + -76.26593830999997, + 36.963934686000016 + ], + [ + -76.35191105899992, + 36.884689212000126 + ], + [ + -76.65659297999991, + 37.04073468900003 + ], + [ + -76.67193844399998, + 37.14143470900018 + ], + [ + -76.74769301399994, + 37.15057107200016 + ], + [ + -76.77310211499997, + 37.212489267000194 + ], + [ + -76.64706571399995, + 37.219525636000185 + ], + [ + -76.62544751999997, + 37.127061981000054 + ], + [ + -76.4653565559999, + 37.028389238000045 + ], + [ + -76.42987472299995, + 36.97028922800018 + ], + [ + -76.29460195799999, + 37.03024379000004 + ], + [ + -76.27020195299991, + 37.08751653000019 + ], + [ + -76.37444744299995, + 37.15002563100006 + ], + [ + -76.4224020069999, + 37.220689280000045 + ], + [ + -76.3819747259999, + 37.28578929600013 + ], + [ + -76.29674742799995, + 37.32328021500018 + ], + [ + -76.25133832999995, + 37.435971150000114 + ], + [ + -76.32739290099988, + 37.48570752100011 + ], + [ + -76.32641109699995, + 37.73188030000006 + ], + [ + -76.23674744199991, + 37.88865306300005 + ], + [ + -76.41887477499989, + 37.96811670900007 + ], + [ + -76.53568390899994, + 38.07336218100011 + ], + [ + -76.70060214699998, + 38.16016219300013 + ], + [ + -76.83880218999997, + 38.16348037000017 + ], + [ + -76.96100222899997, + 38.204907647000084 + ], + [ + -77.03048407499995, + 38.31135312100008 + ], + [ + -76.97723860799994, + 38.35475313200004 + ], + [ + -76.90726585399995, + 38.28840766700017 + ], + [ + -76.7786294469999, + 38.22848038600017 + ], + [ + -76.6868385109999, + 38.24164402800005 + ], + [ + -76.58892938799994, + 38.215271299000165 + ], + [ + -76.53042027399988, + 38.13358946599999 + ], + [ + -76.42083842099993, + 38.10604401000012 + ], + [ + -76.32971112199994, + 38.15518947800018 + ], + [ + -76.38524750599998, + 38.21776221700003 + ], + [ + -76.38193842399994, + 38.38646225100007 + ], + [ + -76.48437482499992, + 38.474389538000025 + ], + [ + -76.55464759099993, + 38.770835051 + ], + [ + -76.50993848899998, + 38.80117142200015 + ], + [ + -76.3950475549999, + 39.01133510500017 + ], + [ + -76.48598395199991, + 39.08103511600012 + ], + [ + -76.43078393799993, + 39.1313078550001 + ], + [ + -76.52399306099994, + 39.176171496 + ], + [ + -76.41042939199997, + 39.23101696700013 + ], + [ + -76.36496574899996, + 39.350753355999984 + ], + [ + -76.28859299499999, + 39.31693517000019 + ], + [ + -76.06046565899993, + 39.44944429599997 + ], + [ + -76.12201113599997, + 39.492889757000114 + ], + [ + -76.0529929359999, + 39.55492613600018 + ], + [ + -75.97022018299992, + 39.557607958 + ], + [ + -76.04984746999997, + 39.37064428000019 + ], + [ + -76.18558387299993, + 39.31934426600003 + ], + [ + -76.27852025499993, + 39.145807864000176 + ], + [ + -76.13660202599993, + 39.098653314000046 + ], + [ + -76.16444748299995, + 39.000116929000114 + ], + [ + -76.2351747749999, + 38.94199873300016 + ], + [ + -76.16116565699997, + 38.87941690500003 + ], + [ + -76.22602021899996, + 38.82018961700015 + ], + [ + -76.30171115199994, + 38.826198707000174 + ], + [ + -76.33842025099995, + 38.76050778300015 + ], + [ + -76.15561109599997, + 38.65808958700012 + ], + [ + -76.25992930899997, + 38.61436230200013 + ], + [ + -76.21260201499996, + 38.51459864700013 + ], + [ + -76.33223841399996, + 38.47473499800003 + ], + [ + -76.28392021299999, + 38.415671352000174 + ], + [ + -76.09974742199995, + 38.292062241 + ], + [ + -76.00439284599997, + 38.29619861000003 + ], + [ + -75.86140188899998, + 38.23273496500002 + ], + [ + -75.84426551199994, + 38.07228038700009 + ], + [ + -75.89895643299997, + 37.97452581900012 + ], + [ + -75.82432004299994, + 37.938471269 + ], + [ + -75.71315637399994, + 37.97663491700001 + ], + [ + -75.68067454099992, + 37.888743991000126 + ], + [ + -75.73255636999988, + 37.7850621500001 + ], + [ + -75.8121563919999, + 37.749507594000136 + ], + [ + -75.89313823099997, + 37.645543933000056 + ], + [ + -76.01531097899993, + 37.330025681 + ], + [ + -76.01327460799996, + 37.20578929100009 + ], + [ + -75.94070185399988, + 37.13485291500001 + ], + [ + -75.89485639799994, + 37.359871146000046 + ], + [ + -75.75312908899997, + 37.50715300000019 + ], + [ + -75.60889269099988, + 37.707062138000026 + ], + [ + -75.53344721699989, + 37.78295306500013 + ], + [ + -75.50013811999992, + 37.86993490200001 + ], + [ + -75.3407744459999, + 38.09868950100008 + ], + [ + -75.22407441899992, + 38.2433986260001 + ], + [ + -75.15185621399996, + 38.246862266000164 + ], + [ + -75.04938346599988, + 38.44419867300002 + ], + [ + -75.06250165999995, + 38.58196233800004 + ], + [ + -75.12751986399996, + 38.63379871000018 + ], + [ + -75.07768348799993, + 38.69414417799999 + ], + [ + -75.09660168199991, + 38.79053510700004 + ], + [ + -75.18294716399993, + 38.801871469000105 + ], + [ + -75.3016835709999, + 38.91148057900017 + ], + [ + -75.34171086299995, + 39.021116963000054 + ], + [ + -75.40238361099995, + 39.06746242500003 + ], + [ + -75.39473816299994, + 39.204189725 + ], + [ + -75.4370200009999, + 39.3114170180001 + ], + [ + -75.49462002099995, + 39.346726114000035 + ], + [ + -75.46571092699998, + 39.439098861000105 + ], + [ + -75.29049268099999, + 39.29191701900004 + ], + [ + -75.10208352599989, + 39.21360791899997 + ], + [ + -74.90161982399991, + 39.174717009000176 + ], + [ + -74.83565676599994, + 39.122802237000144 + ], + [ + -74.77893226699996, + 39.21323173900015 + ], + [ + -75.01537559199988, + 39.38525462400003 + ], + [ + -75.04929506799994, + 39.29528831800019 + ], + [ + -75.1515966099999, + 39.311613407000095 + ], + [ + -75.25409144299994, + 39.38688830600006 + ], + [ + -75.38276751899997, + 39.426832038999976 + ], + [ + -75.41531938299994, + 39.51000737800007 + ], + [ + -75.42505217399997, + 39.69115973700008 + ], + [ + -75.33266802299994, + 39.780807939000056 + ], + [ + -75.20584781399998, + 39.81174211100017 + ], + [ + -75.10613744999995, + 39.87212216400013 + ], + [ + -75.09463294499983, + 39.95672517200012 + ], + [ + -74.81465038999988, + 40.07277505900015 + ], + [ + -74.70134288099996, + 40.159054403000084 + ], + [ + -74.78287653599989, + 40.22460114900008 + ], + [ + -74.95669889199996, + 40.07910066800014 + ], + [ + -75.14438499999989, + 40.002912341000126 + ], + [ + -75.23870081399997, + 39.92022033000006 + ], + [ + -75.5364883719999, + 39.76378644100015 + ], + [ + -75.64924460599997, + 39.73232791300018 + ], + [ + -75.85497783199986, + 39.63802194800019 + ], + [ + -76.05758672699994, + 39.57801741500003 + ], + [ + -76.2266228979999, + 39.48787883500012 + ], + [ + -76.36689844999995, + 39.450610835000134 + ], + [ + -76.38177688099995, + 39.41453769400016 + ], + [ + -76.54399812699995, + 39.401589877000106 + ], + [ + -76.59895266399997, + 39.371253312000135 + ], + [ + -76.65593859199993, + 39.271339361000116 + ], + [ + -76.7878383399999, + 39.20319368500003 + ], + [ + -76.91641593999992, + 39.108059978000085 + ], + [ + -77.22748584599998, + 38.68152426100005 + ], + [ + -77.33402964299995, + 38.59672579200014 + ], + [ + -77.35992137899996, + 38.532775966000145 + ], + [ + -77.52201143799994, + 38.35526479400011 + ], + [ + -77.56433620799999, + 38.19130001800016 + ], + [ + -77.52451340599998, + 38.002751180000075 + ], + [ + -77.5149146249999, + 37.826961443000016 + ], + [ + -77.54006528999997, + 37.762807052000085 + ], + [ + -77.51594537999995, + 37.657597288000034 + ], + [ + -77.54396853299988, + 37.55499964600011 + ], + [ + -77.50865814399998, + 37.37478803900012 + ], + [ + -77.54165675199994, + 37.28749200400017 + ], + [ + -77.5221519349999, + 37.16995599200004 + ], + [ + -77.59034417499993, + 36.91978662600013 + ], + [ + -77.56750968699993, + 36.84559497700013 + ], + [ + -77.5958187629999, + 36.689155874000164 + ], + [ + -77.69508019699987, + 36.50894448500003 + ], + [ + -77.77034176399991, + 36.44834845000014 + ], + [ + -77.74633865899995, + 36.39987560000014 + ], + [ + -77.78725504199991, + 36.30260860000004 + ], + [ + -77.85847660699994, + 36.23855575700014 + ], + [ + -77.87532764999992, + 36.16028882500018 + ], + [ + -77.95628381099988, + 36.1649058750001 + ], + [ + -78.04646055699993, + 36.002043408000134 + ], + [ + -78.12130933999993, + 35.95255987000019 + ], + [ + -78.13959918999996, + 35.844882564000045 + ], + [ + -78.10513120299993, + 35.720964288000175 + ], + [ + -78.20031342499993, + 35.72490050600004 + ], + [ + -78.33693890999984, + 35.63112751900013 + ], + [ + -78.42620926599994, + 35.635754747000135 + ], + [ + -78.44469074999989, + 35.55036167700018 + ], + [ + -78.66195565799995, + 35.59223928600011 + ], + [ + -78.78244800199997, + 35.641278116000024 + ], + [ + -78.86704684799997, + 35.61752717400003 + ], + [ + -78.90410730399992, + 35.42140923500011 + ], + [ + -79.06477121299997, + 35.49932280400003 + ], + [ + -79.18199510799997, + 35.41615693900019 + ], + [ + -79.33933005899996, + 35.35186484500014 + ], + [ + -79.39980293199994, + 35.358371790000035 + ], + [ + -79.53253678199997, + 35.28938571900011 + ], + [ + -79.6028909549999, + 35.36377126500008 + ], + [ + -79.79212147399994, + 35.28540367699998 + ], + [ + -79.7593447129999, + 35.16203841900017 + ], + [ + -79.80650735399996, + 34.98134842600007 + ], + [ + -79.91324847899989, + 34.98395882900019 + ], + [ + -79.93669590899998, + 34.85625657900016 + ], + [ + -79.99959752899986, + 34.88046326099999 + ], + [ + -80.10089780999994, + 34.84577315000007 + ], + [ + -80.06738710299993, + 34.74195577800009 + ], + [ + -80.21769974899996, + 34.74062479100019 + ], + [ + -80.37266733599995, + 34.77894996100008 + ], + [ + -80.46107454099985, + 34.723807202000046 + ], + [ + -80.57574913899992, + 34.6093068560001 + ], + [ + -80.52215295899992, + 34.55338566800003 + ], + [ + -80.61735779499998, + 34.43421827100019 + ], + [ + -80.58463172799998, + 34.395095642000115 + ], + [ + -80.64764053299984, + 34.312624299 + ], + [ + -80.82103375099996, + 34.27875580900013 + ], + [ + -80.87272974899997, + 34.184404440000094 + ], + [ + -80.97125759499994, + 34.22126235600007 + ], + [ + -80.99890474199998, + 34.095482469000046 + ], + [ + -81.0801784539999, + 34.020419652999976 + ], + [ + -81.2224043519999, + 33.96597626800008 + ], + [ + -81.27593401099989, + 34.01277510800014 + ], + [ + -81.51844056499988, + 33.939322504000074 + ], + [ + -81.625703161, + 33.87670962500016 + ], + [ + -81.7262127489999, + 33.87496116600016 + ], + [ + -81.89435419499989, + 33.810535508000044 + ], + [ + -81.87609923499991, + 33.71862320200012 + ], + [ + -81.97351935199993, + 33.63565507200002 + ], + [ + -81.98993059099996, + 33.507410696000136 + ], + [ + -82.04547597499999, + 33.482463510000116 + ], + [ + -82.14026689699989, + 33.52300016800018 + ], + [ + -82.2649387919999, + 33.41905978400018 + ], + [ + -82.39725168099983, + 33.42941370000011 + ], + [ + -82.58291431199996, + 33.401679591000175 + ], + [ + -82.63545167299998, + 33.33267901700009 + ], + [ + -82.73257375799994, + 33.31173037800005 + ], + [ + -82.78297002199992, + 33.251863099000104 + ], + [ + -82.91069600899993, + 33.251801667000166 + ], + [ + -82.94676968299996, + 33.11164465700011 + ], + [ + -83.26571302499997, + 33.006513042 + ], + [ + -83.36200190799991, + 33.022796723000056 + ], + [ + -83.42162313399996, + 32.96913302100006 + ], + [ + -83.51752290199994, + 32.96068614000012 + ], + [ + -83.58211224299998, + 32.85581889000014 + ], + [ + -83.69120220699995, + 32.85932320600017 + ], + [ + -83.83929717299998, + 32.79851301300016 + ], + [ + -83.84898129599992, + 32.766427828000076 + ], + [ + -84.01852674399993, + 32.75678676900009 + ], + [ + -84.09920258199998, + 32.69752095700005 + ], + [ + -84.21915299199998, + 32.65537092500006 + ], + [ + -84.35801381999988, + 32.6744659470001 + ], + [ + -84.39912424199991, + 32.64435791300008 + ], + [ + -84.53731440699994, + 32.62982626500013 + ], + [ + -84.67909081899995, + 32.54341134400005 + ], + [ + -84.83814247399988, + 32.54935286000017 + ], + [ + -84.99922050599997, + 32.50352699500007 + ], + [ + -85.05627701599985, + 32.546922166000115 + ], + [ + -85.29233257099997, + 32.524510503000045 + ], + [ + -85.49421181499997, + 32.561746668000126 + ], + [ + -85.48743858799992, + 32.620802738000066 + ], + [ + -85.68788671599992, + 32.57229354200007 + ], + [ + -85.92381457899995, + 32.60611835000009 + ], + [ + -86.11990957199987, + 32.66319838700019 + ], + [ + -86.25675158099989, + 32.617256209000175 + ], + [ + -86.38596735099998, + 32.738291073000084 + ], + [ + -86.5004927899999, + 32.748677150000105 + ], + [ + -86.52431128199987, + 32.80976652100014 + ], + [ + -86.65637922899998, + 32.89876018500013 + ], + [ + -86.71095964799991, + 32.978794611000126 + ], + [ + -87.0448256649999, + 32.98712493700015 + ], + [ + -87.14878952999999, + 32.97261588300012 + ], + [ + -87.1465331519999, + 33.113301507000074 + ], + [ + -87.39742055499994, + 33.1628483290001 + ], + [ + -87.47175777199999, + 33.215453935000085 + ], + [ + -87.56567832499996, + 33.475701818000175 + ], + [ + -87.66260970999997, + 33.57881008100003 + ], + [ + -87.65090013399993, + 33.712500348000106 + ], + [ + -87.70143520199991, + 33.93358361300017 + ], + [ + -87.76744888399998, + 33.99657054200014 + ], + [ + -87.76806536799984, + 34.10080850500003 + ], + [ + -87.70525305199999, + 34.16940710100005 + ], + [ + -87.56684736799997, + 34.23145208700004 + ], + [ + -87.62045612399993, + 34.2670934410001 + ], + [ + -87.71794375799993, + 34.25190100600008 + ], + [ + -87.68005140199995, + 34.38824847900014 + ], + [ + -87.76703083499996, + 34.42521639100016 + ], + [ + -87.71234712299997, + 34.5585384150001 + ], + [ + -87.90609366099989, + 34.65856794900003 + ], + [ + -87.89547712299998, + 34.72548600800019 + ], + [ + -88.03362576899991, + 34.7538236740001 + ], + [ + -87.99447919899995, + 34.82934180700005 + ], + [ + -87.79802708499989, + 34.980280063000066 + ], + [ + -87.6781839219999, + 34.99156487800002 + ], + [ + -87.67322320899996, + 35.07854528900003 + ], + [ + -87.72443544199996, + 35.13960404799997 + ], + [ + -87.92169196499998, + 35.12042375400017 + ], + [ + -88.05065056199999, + 35.221401566 + ], + [ + -88.10007807999995, + 35.30178382700012 + ], + [ + -88.06124739899997, + 35.348751775000096 + ], + [ + -88.11318489099995, + 35.46465108600012 + ], + [ + -88.1005757659999, + 35.52223739800007 + ], + [ + -88.12855482999998, + 35.72390249100016 + ], + [ + -88.11461791899995, + 35.805490449000104 + ], + [ + -88.05399868799992, + 35.84657650000008 + ], + [ + -88.08151918999994, + 36.012738382000066 + ], + [ + -88.00957908599992, + 36.05543369300017 + ], + [ + -88.04445532799997, + 36.11363913200012 + ], + [ + -88.05488486499996, + 36.26789783800007 + ], + [ + -88.18565089299989, + 36.40474630700004 + ], + [ + -88.24228674999995, + 36.50064422500003 + ], + [ + -88.21433882399998, + 36.575416599 + ], + [ + -88.2686955129999, + 36.75969168000006 + ], + [ + -88.27484251899995, + 36.87429881700007 + ], + [ + -88.36323620899998, + 36.948993008000116 + ], + [ + -88.26591034499995, + 37.0224395030001 + ], + [ + -88.35342675199996, + 37.07391188300011 + ], + [ + -88.48766220699997, + 37.30530490700011 + ], + [ + -88.40726101899992, + 37.41156318700001 + ], + [ + -88.32761041099997, + 37.39627852700016 + ], + [ + -88.04447428599997, + 37.485541122000086 + ], + [ + -87.99178267399992, + 37.35236097400019 + ], + [ + -88.01041495799996, + 37.24800180799997 + ], + [ + -87.87881355199994, + 37.23217738400018 + ], + [ + -87.75927609299993, + 37.09766489599997 + ], + [ + -87.61691845699988, + 37.05234019000005 + ], + [ + -87.45528933399993, + 37.070858427000076 + ], + [ + -87.27405740499995, + 37.004606755000054 + ], + [ + -87.24139568299995, + 36.965253623000024 + ], + [ + -87.04445936299999, + 36.956313794000096 + ], + [ + -86.94657369599992, + 37.02996639300005 + ], + [ + -86.77008373499996, + 37.09144018800009 + ], + [ + -86.69819806399988, + 37.15488228000004 + ], + [ + -86.53859691299988, + 37.13229952200004 + ], + [ + -86.26866211899994, + 37.13450381700011 + ], + [ + -86.20319322199992, + 37.18502756400005 + ], + [ + -86.02461805399986, + 37.22144511800019 + ], + [ + -85.97180277299992, + 37.26673005300012 + ], + [ + -85.79288906899995, + 37.33914851900005 + ], + [ + -85.93720015799994, + 37.35857263200006 + ], + [ + -85.99422820399991, + 37.32917001900012 + ], + [ + -86.1229384479999, + 37.32979517300015 + ], + [ + -86.07561311099994, + 37.407249002000015 + ], + [ + -86.35051944099996, + 37.49438920200015 + ], + [ + -86.47644186299988, + 37.478796552000176 + ], + [ + -86.50937738399995, + 37.56555146700015 + ], + [ + -86.58974354399993, + 37.66768240500005 + ], + [ + -86.57868165799994, + 37.759026501000164 + ], + [ + -86.75384391699998, + 37.89831050100014 + ], + [ + -86.80224125699988, + 37.97750216700018 + ], + [ + -86.78014246399994, + 38.060041964000106 + ], + [ + -86.88650479799998, + 38.151385681000136 + ], + [ + -86.83685602799989, + 38.23269428300006 + ], + [ + -86.95525266699991, + 38.54034637000018 + ], + [ + -86.89478730399992, + 38.64186041900007 + ], + [ + -86.91964640999993, + 38.82747265400013 + ], + [ + -86.8794859539999, + 38.964262824000116 + ], + [ + -86.93250839499984, + 39.20649093300017 + ], + [ + -86.89776393399984, + 39.303354077999984 + ], + [ + -86.98377956799999, + 39.39548035200005 + ], + [ + -86.94970747799994, + 39.52223487700007 + ], + [ + -87.00217561699992, + 39.55316155200018 + ], + [ + -87.05098664499997, + 39.68303555400013 + ], + [ + -86.93845624599999, + 39.74175383400018 + ], + [ + -87.027147873, + 39.785525380000024 + ], + [ + -87.11524977899995, + 39.71482528100006 + ], + [ + -87.29464309299993, + 39.77285536100004 + ], + [ + -87.33330655499992, + 39.914612323000085 + ], + [ + -87.40811254899995, + 40.0065812470001 + ], + [ + -87.38238833299994, + 40.10826345000004 + ], + [ + -87.47763728699982, + 40.20584049700017 + ], + [ + -87.33411579599994, + 40.308475916000134 + ], + [ + -87.35914287099996, + 40.425252177000175 + ], + [ + -87.21636748899988, + 40.393566075000194 + ], + [ + -87.13807796299994, + 40.40623085600009 + ], + [ + -87.04925057899993, + 40.47119767000004 + ], + [ + -86.94090725299992, + 40.48136839900019 + ], + [ + -86.91538216099997, + 40.632538970000155 + ], + [ + -86.93613366899996, + 40.68147916600009 + ], + [ + -86.76690493799993, + 40.74813434500004 + ], + [ + -86.81768327599991, + 40.85053314400011 + ], + [ + -86.73995815499995, + 40.93591490600011 + ], + [ + -86.64717346799995, + 41.16258248300011 + ], + [ + -86.58992942599997, + 41.23420122900012 + ], + [ + -86.40915394699982, + 41.289113225 + ], + [ + -86.43940184099984, + 41.34139022000011 + ], + [ + -86.42978192999993, + 41.46241549500019 + ], + [ + -86.33584194199994, + 41.586675045000106 + ], + [ + -86.31760138399989, + 41.673144861000026 + ], + [ + -86.47296980499993, + 41.600436978 + ], + [ + -86.50780486799994, + 41.55207752100006 + ], + [ + -86.6912701899999, + 41.480227532000185 + ], + [ + -86.92393148899993, + 41.28834590200006 + ], + [ + -87.00157155599999, + 41.29302363200003 + ], + [ + -87.08698557199983, + 41.42061725600007 + ], + [ + -86.99966785799995, + 41.52177451800003 + ], + [ + -87.02361189099997, + 41.606689289000144 + ], + [ + -87.22053444099998, + 41.601587527000106 + ], + [ + -87.41154202699994, + 41.64368964400012 + ], + [ + -87.52843297699991, + 41.715998741000135 + ], + [ + -87.60132391799993, + 41.827971483000056 + ], + [ + -87.68142396599995, + 42.074653339000065 + ], + [ + -87.81062401999998, + 42.22648972100012 + ], + [ + -87.83447857999982, + 42.3023351870001 + ], + [ + -87.80286039799995, + 42.39019884000015 + ], + [ + -87.8159422459999, + 42.642680700000085 + ], + [ + -87.75780588099997, + 42.782044363000125 + ], + [ + -87.84370591499999, + 42.873580737000054 + ], + [ + -87.84525137999998, + 42.962180751000176 + ], + [ + -87.91080036399995, + 43.25585030700006 + ], + [ + -87.87388782399995, + 43.37470266500003 + ], + [ + -87.80420596699997, + 43.46300810900016 + ], + [ + -87.78854233899989, + 43.56641721799997 + ], + [ + -87.70384232699996, + 43.68378087800005 + ], + [ + -87.69620596899989, + 43.762617256000055 + ], + [ + -87.73540487999998, + 43.87207011700008 + ], + [ + -87.64743814499991, + 44.10279527100005 + ], + [ + -87.51820114699984, + 44.17964389900004 + ], + [ + -87.54116052899997, + 44.29315371400003 + ], + [ + -87.45973908899987, + 44.56300825799997 + ], + [ + -87.63431551999992, + 44.66123697600011 + ], + [ + -87.69701926099987, + 44.751871172000165 + ], + [ + -87.77311891599999, + 44.639856768000186 + ], + [ + -87.88355555199996, + 44.60283614300016 + ], + [ + -87.93059823099998, + 44.53535257500016 + ], + [ + -88.03381742399989, + 44.56854609700014 + ], + [ + -88.17538587799993, + 44.51972242199997 + ], + [ + -88.3068234399999, + 44.384116003000145 + ], + [ + -88.39049289499985, + 44.362070002999985 + ], + [ + -88.63755108399994, + 44.24541848700005 + ], + [ + -88.73074662099998, + 44.23417987300007 + ], + [ + -88.80102100599987, + 44.27778860400008 + ], + [ + -89.00271702599991, + 44.104986921000034 + ], + [ + -89.17489498599997, + 43.980048538000176 + ], + [ + -89.12387464499994, + 43.892123778000155 + ], + [ + -89.10645253499996, + 43.74720049300015 + ], + [ + -89.23250146099997, + 43.735088556000164 + ], + [ + -89.49337409999987, + 43.64247641600008 + ], + [ + -89.58470593099997, + 43.52658832100013 + ], + [ + -89.50825049999997, + 43.47315684600011 + ], + [ + -89.68754764899995, + 43.40574578400003 + ], + [ + -89.53552228999996, + 43.320110973000055 + ], + [ + -89.59513052699992, + 43.2444259400001 + ], + [ + -89.60131414699998, + 43.07356829900016 + ], + [ + -89.54240584099995, + 42.95400670400005 + ], + [ + -89.5438868789999, + 42.824832512000114 + ], + [ + -89.67847880499994, + 42.599373249000166 + ], + [ + -89.80382183599994, + 42.575115649000054 + ], + [ + -90.01907483899987, + 42.360082469000076 + ], + [ + -89.92139793199993, + 42.285854845000074 + ], + [ + -90.06614564799997, + 42.101411525000174 + ], + [ + -90.20079865099996, + 42.08727383900015 + ], + [ + -90.36183212799995, + 42.12140930300012 + ], + [ + -90.46128157799996, + 42.178197975000046 + ], + [ + -90.60065393999986, + 42.30091466900018 + ], + [ + -90.69379942399985, + 42.324129446000086 + ], + [ + -90.71437182999989, + 42.396231430000114 + ], + [ + -90.94682572699998, + 42.437127591000035 + ], + [ + -91.00290551799992, + 42.48026386800018 + ], + [ + -91.022144229, + 42.57063545500006 + ], + [ + -91.24207086399997, + 42.598274669000034 + ], + [ + -91.329965384, + 42.58173258100004 + ], + [ + -91.40849008599992, + 42.65805998500008 + ], + [ + -91.53058122599992, + 42.68960250700013 + ], + [ + -91.6187362419999, + 42.75184676800012 + ], + [ + -91.80921054499998, + 42.83493548000007 + ], + [ + -91.78921712399995, + 42.91701196499997 + ], + [ + -91.96061722899987, + 43.15407824500005 + ], + [ + -91.99262632199992, + 43.23826676500005 + ], + [ + -91.92141914099994, + 43.29465409900013 + ], + [ + -91.94096511299983, + 43.37484248200019 + ], + [ + -92.20555747499992, + 43.481149422000044 + ], + [ + -92.24162110499992, + 43.54240832500005 + ], + [ + -92.41079432099997, + 43.5948454760001 + ], + [ + -92.57450911099983, + 43.71572548200015 + ], + [ + -92.59677442999998, + 43.82360119300006 + ], + [ + -92.75122821799988, + 43.959912088000124 + ], + [ + -92.68817547799995, + 44.02532672300009 + ], + [ + -92.70967405599993, + 44.094835993000174 + ], + [ + -92.81908201999988, + 44.159297569000046 + ], + [ + -92.86757846199998, + 44.260214634000135 + ], + [ + -92.97496481799999, + 44.280006942000114 + ], + [ + -92.99759988299985, + 44.47562692800017 + ], + [ + -92.77375093899997, + 44.608480647000135 + ], + [ + -92.77944578099988, + 44.74541390100012 + ], + [ + -92.58091746699989, + 44.764774197000065 + ], + [ + -92.42107048899999, + 44.73030878300017 + ], + [ + -92.23416186899993, + 44.75058502800016 + ], + [ + -92.14497033099991, + 44.84453421000018 + ], + [ + -92.26331328499992, + 45.05678612400004 + ], + [ + -92.56263281099996, + 45.10687647900005 + ], + [ + -92.66246261199984, + 45.02148974400012 + ], + [ + -92.87324300899996, + 44.91478284200019 + ], + [ + -92.93795693599998, + 44.8115169190001 + ], + [ + -93.2002921109999, + 44.731069850000154 + ], + [ + -93.23011384999995, + 44.60030980200008 + ], + [ + -93.15694994999996, + 44.41824663300008 + ], + [ + -93.22977788999992, + 44.272443096000075 + ], + [ + -93.33125398299995, + 44.2668591740001 + ], + [ + -93.45704630699987, + 44.16756982000015 + ], + [ + -93.76228188399989, + 44.10861046000008 + ], + [ + -93.90822483599999, + 44.177594054 + ], + [ + -94.03123014599993, + 44.300617715000044 + ], + [ + -93.97370982399997, + 44.422675705000074 + ], + [ + -94.05679874499992, + 44.51824727700006 + ], + [ + -94.01389517699994, + 44.62837378300014 + ], + [ + -94.02520591099994, + 44.81024361600015 + ], + [ + -94.14142491499996, + 44.91627998200005 + ], + [ + -94.21752872199983, + 44.935119491000194 + ], + [ + -94.4223983249999, + 44.932416621000186 + ], + [ + -94.50705164199991, + 44.95920352100018 + ], + [ + -94.51480215299983, + 45.07620244100008 + ], + [ + -94.5548535989999, + 45.13504979300018 + ], + [ + -94.67320838499995, + 45.182346353000185 + ], + [ + -94.90413209499997, + 45.12071155200016 + ], + [ + -95.00280547599993, + 45.165797349000115 + ], + [ + -95.336439752, + 45.26937563000013 + ], + [ + -95.56164655899988, + 45.36458432000012 + ], + [ + -95.62571185899986, + 45.502844051000125 + ], + [ + -95.7646397829999, + 45.68700146400005 + ], + [ + -95.77262674299993, + 45.84297467900018 + ], + [ + -96.02354777099998, + 46.00105700800003 + ], + [ + -96.056285028, + 46.15471676900006 + ], + [ + -96.13933618399994, + 46.29087104700005 + ], + [ + -96.23976181599994, + 46.39387957200012 + ], + [ + -96.29368127399994, + 46.509130239000115 + ], + [ + -96.27659611899992, + 46.615173248000076 + ], + [ + -96.3115003179999, + 46.69958194400016 + ], + [ + -96.27240709899996, + 46.888117624000074 + ], + [ + -96.16185779699998, + 46.91078017600006 + ], + [ + -95.96284132999995, + 46.855050104000156 + ], + [ + -95.88809231999994, + 46.969847589000096 + ], + [ + -95.88079756399998, + 47.15600632600007 + ], + [ + -95.82324122399996, + 47.30127226400009 + ], + [ + -95.8222316049999, + 47.42028778200006 + ], + [ + -95.70858832099998, + 47.58233158900009 + ], + [ + -95.59733160499991, + 47.673038604000055 + ], + [ + -95.47259649299991, + 47.701618849 + ], + [ + -95.45356575699998, + 47.847863005000136 + ], + [ + -95.62666160999993, + 48.03885066500004 + ], + [ + -95.60840988699994, + 48.15404489100001 + ], + [ + -95.65966623399993, + 48.215717514000175 + ], + [ + -95.49736934599997, + 48.331993650000186 + ], + [ + -95.49720557599994, + 48.37902473900016 + ], + [ + -95.60084942099985, + 48.46043273300012 + ], + [ + -95.57230789299996, + 48.52001304200013 + ], + [ + -95.71020756399997, + 48.59410577700015 + ], + [ + -95.63748065599998, + 48.66683106500005 + ], + [ + -95.72873944399993, + 48.80477805900006 + ], + [ + -95.60901643699987, + 48.86154238300003 + ], + [ + -95.79023989399997, + 48.905214152999974 + ], + [ + -96.00424810499999, + 48.894296506000046 + ], + [ + -96.0815325669999, + 48.824368793000076 + ], + [ + -96.31326547999993, + 48.775551067000094 + ], + [ + -96.34846215599998, + 48.725755308000146 + ], + [ + -96.4621163729999, + 48.707528164000166 + ], + [ + -96.55729794599995, + 48.74718738200011 + ], + [ + -96.57268360699993, + 48.84151685 + ], + [ + -96.50972623899992, + 48.90556837000008 + ], + [ + -96.64096368699995, + 48.99999043600019 + ], + [ + -96.45466337099998, + 49.02413125700019 + ], + [ + -96.41543055299996, + 49.055876449000095 + ], + [ + -96.46096990799998, + 49.25230791600006 + ], + [ + -96.426805173, + 49.52291240400007 + ], + [ + -96.46826389899996, + 49.64131885500018 + ], + [ + -96.3176016779999, + 49.83284899300003 + ], + [ + -96.30054111199996, + 49.924339119000194 + ], + [ + -96.463599822, + 49.95603011000014 + ], + [ + -96.57222714199992, + 49.94098863300019 + ], + [ + -96.81703958999992, + 50.07717661100014 + ], + [ + -96.8849567289999, + 50.043828831000155 + ], + [ + -97.065856909, + 50.249583499000096 + ], + [ + -97.10871108799995, + 50.51669255800016 + ], + [ + -97.2552796679999, + 50.385448109000095 + ], + [ + -97.25804135799996, + 50.31419857700007 + ], + [ + -97.40904975399991, + 50.244571300000075 + ], + [ + -97.52404013299991, + 50.47386789300003 + ], + [ + -97.60829145699995, + 50.56461987100005 + ], + [ + -97.66412351399993, + 50.76612920300016 + ], + [ + -97.789344842, + 50.82367447700011 + ], + [ + -98.08302366299995, + 50.761807590000046 + ], + [ + -98.28422686099992, + 50.780796875000135 + ], + [ + -98.68081373599995, + 50.939665479000155 + ], + [ + -98.8877601129999, + 51.05698265300009 + ], + [ + -99.09241713699993, + 51.274989523000045 + ], + [ + -99.30807813199993, + 51.415043518000175 + ], + [ + -99.77810796499989, + 51.55972775800018 + ], + [ + -99.95745613499997, + 51.572381993000135 + ], + [ + -100.17872418999991, + 51.54773907000015 + ], + [ + -100.34883442199998, + 51.574115632000144 + ], + [ + -100.45523913999995, + 51.63899775300007 + ], + [ + -100.59161366099994, + 51.77606056100012 + ], + [ + -100.5959705539999, + 51.595582653000065 + ], + [ + -100.57237938299994, + 51.51674922400002 + ], + [ + -100.62802846599993, + 51.34513670000007 + ], + [ + -100.74485059499989, + 51.29639613400013 + ], + [ + -101.11707311399994, + 51.29081781000008 + ], + [ + -101.13626042899989, + 51.19978223000004 + ], + [ + -100.96698722399987, + 51.1829494160001 + ], + [ + -100.92051729299993, + 51.08477530200008 + ], + [ + -100.81133264599998, + 51.049351265000155 + ], + [ + -100.5285040259999, + 51.01312752100006 + ], + [ + -100.40630369799993, + 51.0314957760001 + ], + [ + -100.18757605599995, + 51.02508190200018 + ], + [ + -100.09224637799997, + 51.045278512000095 + ], + [ + -99.88146997799998, + 51.008722054000145 + ], + [ + -99.60497278099996, + 50.80033335600001 + ], + [ + -99.49908502899996, + 50.603062010000144 + ], + [ + -99.47739395799994, + 50.41860931400004 + ], + [ + -99.56537551599996, + 50.35904115900007 + ], + [ + -99.65907282799998, + 50.3500529800001 + ], + [ + -99.79727878899996, + 50.42911020200006 + ], + [ + -100.117721669, + 50.399597013000175 + ], + [ + -100.36251061099989, + 50.48345909000005 + ], + [ + -100.50496688599986, + 50.61564071200013 + ], + [ + -100.65325199699998, + 50.6177988230001 + ], + [ + -100.73721364799997, + 50.666547208000054 + ], + [ + -100.87616777699986, + 50.68925291100015 + ], + [ + -100.94197140699993, + 50.76715980100016 + ], + [ + -101.13938153399994, + 50.84456340600019 + ], + [ + -101.13387328099992, + 50.99311479200003 + ], + [ + -101.27648935899998, + 51.039992123000104 + ], + [ + -101.41195703699998, + 50.98103698500017 + ], + [ + -101.39894828699994, + 51.08623891100012 + ], + [ + -101.51934029699999, + 51.24235409700003 + ], + [ + -101.48999749399991, + 51.292120929000134 + ], + [ + -101.77950972399992, + 51.342764808000084 + ], + [ + -101.8823700609999, + 51.31021290800004 + ], + [ + -102.04898103299996, + 51.32271202700014 + ], + [ + -102.18234260899999, + 51.41093706900017 + ], + [ + -102.20870996199989, + 51.52844258200014 + ], + [ + -102.07717891899989, + 51.55266411400015 + ], + [ + -102.02961798499996, + 51.48666496200008 + ], + [ + -101.91738201599992, + 51.53455482700008 + ], + [ + -102.01853932699998, + 51.64111777300019 + ], + [ + -102.14399774899994, + 51.71020258000004 + ], + [ + -102.348297501, + 51.724037957 + ], + [ + -102.47136719999992, + 51.869210064000185 + ], + [ + -102.56889286299997, + 51.94577341400003 + ], + [ + -102.68363957899999, + 51.937861429000066 + ], + [ + -102.68052719699995, + 51.867332712000064 + ], + [ + -102.84652702999995, + 51.81515244600013 + ], + [ + -103.24984000199993, + 51.86932477800008 + ], + [ + -103.49220274899989, + 51.932305848 + ], + [ + -103.51207763499997, + 52.091342840000095 + ], + [ + -103.5680927219999, + 52.20769503100007 + ], + [ + -103.70255302099997, + 52.34679948100006 + ], + [ + -103.8029487099999, + 52.39549053600007 + ], + [ + -104.03649139999999, + 52.403064507000124 + ], + [ + -104.49613895299996, + 52.55382049000008 + ], + [ + -104.6250693749999, + 52.429978807 + ], + [ + -104.73298640999997, + 52.45753760800005 + ], + [ + -104.77131653299989, + 52.56660855200016 + ], + [ + -104.945036787, + 52.593195115000185 + ], + [ + -105.03433122899986, + 52.53941978100005 + ], + [ + -105.03147126999994, + 52.46107673100005 + ], + [ + -105.40474668999997, + 52.48731861400012 + ], + [ + -105.36225885599993, + 52.624065850000136 + ], + [ + -105.36379302499995, + 52.73256832900006 + ], + [ + -105.4136448839999, + 52.78072392900009 + ], + [ + -105.60241856399995, + 52.730640550000146 + ], + [ + -105.76272578899989, + 52.724443840000106 + ], + [ + -105.86875273899994, + 52.78051338900008 + ], + [ + -105.97449362799989, + 52.71307898800018 + ], + [ + -106.02541685399996, + 52.62486655000015 + ], + [ + -106.16731521699995, + 52.58733481600018 + ], + [ + -106.23838727999993, + 52.664678253000034 + ], + [ + -106.27705841999995, + 52.78359924200009 + ], + [ + -106.40824926699986, + 52.84390635200009 + ], + [ + -106.61202635899997, + 52.874942163000014 + ], + [ + -106.64142191199988, + 53.00950360500019 + ], + [ + -106.79211159899995, + 53.04349006800004 + ], + [ + -107.091281359, + 52.96416437200003 + ], + [ + -107.17154016599994, + 52.894074498000066 + ], + [ + -107.33395452399992, + 52.897325264000074 + ], + [ + -107.29064924799991, + 53.02692096200008 + ], + [ + -107.32639434599992, + 53.08807899900012 + ], + [ + -107.48195569099994, + 53.0363254290001 + ], + [ + -107.633162874, + 53.08326914000014 + ], + [ + -107.76892945599997, + 53.023671739000065 + ], + [ + -107.8965829309999, + 53.12057315800007 + ], + [ + -108.04457888199994, + 53.2775345710001 + ], + [ + -108.15413770799995, + 53.26711279700004 + ], + [ + -108.20189789999995, + 53.17000567000008 + ], + [ + -108.54387646599997, + 53.24965213200011 + ], + [ + -108.68762279499998, + 53.083272695000176 + ], + [ + -108.5564426659999, + 53.04637872300003 + ], + [ + -108.56468117599997, + 52.943857573 + ], + [ + -108.81257534399987, + 53.012824319000174 + ], + [ + -109.06294254799991, + 53.22597119700015 + ], + [ + -109.1015160209999, + 53.29175943100006 + ], + [ + -109.22849352599991, + 53.32950033800017 + ], + [ + -109.30769370099989, + 53.39427694900007 + ], + [ + -109.45675633199994, + 53.370420331000105 + ], + [ + -109.56729938699988, + 53.42958216300002 + ], + [ + -109.54460167399998, + 53.477746263000085 + ], + [ + -109.63123331599996, + 53.57775234500019 + ], + [ + -109.75228863899997, + 53.600349999000116 + ], + [ + -109.83090197799999, + 53.54686707100018 + ], + [ + -110.0000233689999, + 53.59770207100007 + ], + [ + -110.07895579699994, + 53.589380679000044 + ], + [ + -110.3359379929999, + 53.6688415480001 + ], + [ + -110.63143326699998, + 53.849011915 + ], + [ + -110.88375044799989, + 53.872728760000086 + ], + [ + -110.89256276299994, + 53.74663092200018 + ], + [ + -110.98000395399993, + 53.69102801300005 + ], + [ + -111.00428546299992, + 53.473646517000134 + ], + [ + -111.31239409099999, + 53.537105982000185 + ], + [ + -111.37901314399994, + 53.614728580000076 + ], + [ + -111.47049667599993, + 53.55262427400004 + ], + [ + -111.61710216499984, + 53.58782873700005 + ], + [ + -111.60592745899999, + 53.806351187000075 + ], + [ + -111.67520189599992, + 53.841857214000186 + ], + [ + -111.88746589899989, + 53.76463335400001 + ], + [ + -112.01967766399997, + 53.87624921700018 + ], + [ + -112.02472725299998, + 53.953206454 + ], + [ + -112.16352236499989, + 53.98731079200007 + ], + [ + -112.23600636299989, + 54.05707417500014 + ], + [ + -112.35588853799999, + 54.01525980200012 + ], + [ + -112.36025185099999, + 53.939019843000096 + ], + [ + -112.5039979039999, + 53.96050315400015 + ], + [ + -112.64862760799991, + 53.94091582200002 + ], + [ + -112.77632982799992, + 53.98502710200012 + ], + [ + -112.95082823399991, + 53.891662042000064 + ], + [ + -113.15500761299995, + 54.00377321000008 + ], + [ + -113.24461209299994, + 53.96968776700004 + ], + [ + -113.37248139199994, + 54.008575578000034 + ], + [ + -113.49762903599998, + 54.11262296800004 + ], + [ + -113.65779849299992, + 54.112835137000104 + ], + [ + -114.01098726899988, + 53.997559044000184 + ], + [ + -114.03891624399995, + 53.889083498000105 + ], + [ + -113.970901546, + 53.809851411000125 + ], + [ + -113.9941085459999, + 53.734606300000166 + ], + [ + -113.89511113599997, + 53.64591208600007 + ], + [ + -114.02039271499996, + 53.580283467000186 + ], + [ + -114.08497628999999, + 53.416897845 + ], + [ + -114.05728992899998, + 53.31059488000017 + ], + [ + -113.83072637399994, + 53.11577999300005 + ], + [ + -113.87191878999994, + 52.92393535500008 + ], + [ + -113.94320600899994, + 52.890783918000125 + ], + [ + -113.89877303599997, + 52.81493898700012 + ], + [ + -113.88491847099993, + 52.634448952000184 + ], + [ + -113.8056321009999, + 52.568721457000095 + ], + [ + -113.92505707499993, + 52.53975369900013 + ], + [ + -114.0742053599999, + 52.563710796000066 + ], + [ + -114.10630752199995, + 52.38776427300019 + ], + [ + -114.09435248599993, + 52.170559582000124 + ], + [ + -114.15440570299995, + 52.16578457100019 + ], + [ + -114.3073806239999, + 52.24340039000015 + ], + [ + -114.379807385, + 52.163854055000115 + ], + [ + -114.36798901599991, + 52.06759070700008 + ], + [ + -114.1589962939999, + 51.939963761000115 + ], + [ + -114.31860166699994, + 51.877425190000054 + ], + [ + -114.490494, + 51.70429403100013 + ], + [ + -114.60604221799991, + 51.37696588500012 + ], + [ + -114.56228667999989, + 51.151759196000114 + ], + [ + -114.48959409999992, + 51.03675605800015 + ], + [ + -114.34969444799992, + 50.943853368000134 + ], + [ + -114.36456275799992, + 50.819105207000064 + ], + [ + -114.4481755519999, + 50.73932418000015 + ], + [ + -114.33080263199992, + 50.71839842800017 + ], + [ + -114.40178076599994, + 50.58204382300005 + ], + [ + -114.55214862899993, + 50.50660332900003 + ], + [ + -114.53531475899996, + 50.40788168800003 + ], + [ + -114.46122717699996, + 50.30551875200018 + ], + [ + -114.28003564499983, + 50.24742346700009 + ], + [ + -114.22091662499992, + 50.188259471000094 + ], + [ + -114.22757770899995, + 50.093094908000126 + ], + [ + -113.95587141099992, + 50.1232667860001 + ], + [ + -113.91542131799997, + 50.061440724000136 + ], + [ + -113.95377188799995, + 49.96909124400008 + ], + [ + -113.8546821, + 49.805513810000036 + ], + [ + -113.97952321499997, + 49.74281103200019 + ], + [ + -114.15199994499994, + 49.9834454920001 + ], + [ + -114.19415485399998, + 49.63484747300009 + ], + [ + -114.11116027599991, + 49.51694459600009 + ], + [ + -113.92150112099995, + 49.36240787400004 + ], + [ + -113.87293396999996, + 49.25243912700017 + ], + [ + -113.66575705099984, + 49.11949243700019 + ], + [ + -113.45272211699995, + 49.07111486600013 + ], + [ + -113.44045780499994, + 48.97152243200003 + ], + [ + -113.32299420199996, + 48.90288763700005 + ], + [ + -113.3753181059999, + 48.83006315300014 + ], + [ + -113.32531546999996, + 48.77176528600012 + ], + [ + -113.31646959899984, + 48.663320264000106 + ], + [ + -113.23339403799991, + 48.55301017099998 + ], + [ + -113.26231642099998, + 48.502645139000094 + ], + [ + -113.09880610499988, + 48.32809650600012 + ], + [ + -112.96289262199991, + 48.31799897800005 + ], + [ + -112.83281662699989, + 48.18050954500018 + ], + [ + -112.70531131899992, + 48.10977814200015 + ], + [ + -112.6401901349999, + 47.943494433000126 + ], + [ + -112.61323640599994, + 47.79813727400011 + ], + [ + -112.7120685839999, + 47.61285144700008 + ], + [ + -112.59570043099995, + 47.522656807000146 + ], + [ + -112.68898161499999, + 47.450952443000176 + ], + [ + -112.66515347199993, + 47.40269650900018 + ], + [ + -112.51515306399989, + 47.34641368100006 + ], + [ + -112.37493214699998, + 47.236452733000135 + ], + [ + -112.43903021199998, + 47.160689793000074 + ], + [ + -112.3392444459999, + 47.032983942000044 + ], + [ + -112.48553230399989, + 46.924183393000135 + ], + [ + -112.53087535799995, + 46.77041503900011 + ], + [ + -112.30270116899999, + 46.680124484000146 + ], + [ + -112.30954590099998, + 46.460998760000166 + ], + [ + -112.218681732, + 46.47376876000004 + ], + [ + -112.02554546399995, + 46.382563884000035 + ], + [ + -111.96062213399995, + 46.40955670400018 + ], + [ + -111.94661536599989, + 46.512062690000164 + ], + [ + -111.80784674499989, + 46.52689527500007 + ], + [ + -111.75513191099998, + 46.49440818200014 + ], + [ + -111.687056983, + 46.34502241400014 + ], + [ + -111.93158078999994, + 46.21565666000015 + ], + [ + -112.04659422899988, + 46.277870206000046 + ], + [ + -112.1558312869999, + 46.27881781200011 + ], + [ + -112.13707576799999, + 46.201852102000146 + ], + [ + -112.04116666999994, + 46.17315317700013 + ], + [ + -111.9692644129999, + 46.024047729000074 + ], + [ + -112.19947616799993, + 45.959232727000085 + ], + [ + -112.27316504899983, + 45.917475250000166 + ], + [ + -112.30621932399998, + 45.813801861000115 + ], + [ + -112.36412460899999, + 45.78709291600012 + ], + [ + -112.37363038099988, + 45.66220333600012 + ], + [ + -112.70670835099997, + 45.75211933000003 + ], + [ + -112.62718270299996, + 45.915222310000104 + ], + [ + -112.557824096, + 45.87242717800018 + ], + [ + -112.457295236, + 45.945014892000074 + ], + [ + -112.4950722779999, + 46.058217552000144 + ], + [ + -112.693777706, + 46.04652907600007 + ], + [ + -112.7503799999999, + 46.08976973600005 + ], + [ + -112.65226675899993, + 46.21182810700003 + ], + [ + -112.65254124799998, + 46.27143187900015 + ], + [ + -112.56534084499992, + 46.41790425200003 + ], + [ + -112.5240349469999, + 46.56776077800009 + ], + [ + -112.39166441599991, + 46.54737126900011 + ], + [ + -112.48708335999999, + 46.66686918500005 + ], + [ + -112.5519134999999, + 46.68567720200008 + ], + [ + -112.65862151099992, + 46.803064210000116 + ], + [ + -112.75729094699983, + 46.7820406190001 + ], + [ + -112.86345487499995, + 46.82739189300014 + ], + [ + -113.12138860999988, + 46.836028541000076 + ], + [ + -113.07426399199989, + 46.74735685700006 + ], + [ + -112.91320210199996, + 46.816265522000094 + ], + [ + -112.80385333799995, + 46.79232848300012 + ], + [ + -112.67045204199991, + 46.61321812500006 + ], + [ + -112.76843707899997, + 46.572634260000086 + ], + [ + -112.89738515899984, + 46.6539806080001 + ], + [ + -112.9816702949999, + 46.64612714400005 + ], + [ + -113.10634457199995, + 46.70626919700004 + ], + [ + -113.27456089599991, + 46.735994261000144 + ], + [ + -113.47558263499997, + 46.703007617000026 + ], + [ + -113.68764654299997, + 46.73170236900012 + ], + [ + -113.71975294399994, + 46.78798828400011 + ], + [ + -114.00241272499989, + 46.93143812500017 + ], + [ + -114.05565294399992, + 47.00211896000013 + ], + [ + -114.15690513499999, + 47.00857506400018 + ], + [ + -114.50679996099996, + 47.16371461000017 + ], + [ + -114.47900713599995, + 47.07518357600003 + ], + [ + -114.3826188139999, + 47.022263697000085 + ], + [ + -114.25122486199996, + 47.00025803500006 + ], + [ + -114.10087991999995, + 46.821213051000086 + ], + [ + -114.10013104599994, + 46.66972565200007 + ], + [ + -114.15832738299997, + 46.50426435500003 + ], + [ + -114.22808704, + 46.40755894299997 + ], + [ + -114.23643707599996, + 46.105337986000166 + ], + [ + -114.20991298899997, + 45.99413854100004 + ], + [ + -114.12796993799998, + 45.974090185000136 + ], + [ + -114.15532094499991, + 46.12146960700005 + ], + [ + -114.01615330499993, + 46.19981173899998 + ], + [ + -113.96018177799988, + 46.41178177800009 + ], + [ + -113.89336160599998, + 46.558785939000074 + ], + [ + -113.91002465599996, + 46.62265716900015 + ], + [ + -114.04498465399996, + 46.760590945000104 + ], + [ + -113.98103406399991, + 46.85202447400013 + ], + [ + -113.89964905599999, + 46.87010136800012 + ], + [ + -113.72962921599998, + 46.77357492800019 + ], + [ + -113.6722833209999, + 46.713872526000046 + ], + [ + -113.32642755299997, + 46.690615044000026 + ], + [ + -113.32232556899993, + 46.61913223099998 + ], + [ + -113.40327218399995, + 46.59014455100015 + ], + [ + -113.2919600439999, + 46.483133883000164 + ], + [ + -113.1586471839999, + 46.48781796800017 + ], + [ + -113.07019133299997, + 46.56068369399998 + ], + [ + -112.87927748099997, + 46.46149401200012 + ], + [ + -112.86938385699989, + 46.38432006600004 + ], + [ + -112.9286985469999, + 46.255041861999985 + ], + [ + -112.91520965799998, + 46.11408803800009 + ], + [ + -113.16544150499993, + 45.93787541400019 + ], + [ + -113.32984223499989, + 45.878387554000085 + ], + [ + -113.41513387199996, + 45.82030624500004 + ], + [ + -113.63670190599993, + 45.74806037200011 + ], + [ + -113.680406254, + 45.60898418700003 + ], + [ + -113.65065462299992, + 45.49663710200019 + ], + [ + -113.6025507899999, + 45.47852986300006 + ], + [ + -113.50250992199994, + 45.28689664500001 + ], + [ + -113.326442521, + 45.204968437 + ], + [ + -113.18732250099993, + 45.309382779000146 + ], + [ + -113.16246704499997, + 45.1942121780001 + ], + [ + -113.30134454199992, + 45.09320119700004 + ], + [ + -113.43083787899997, + 44.93287394000009 + ], + [ + -113.3454333979999, + 44.89903094100009 + ], + [ + -113.32277551599998, + 44.820660654 + ], + [ + -113.40662487099996, + 44.75554894900006 + ], + [ + -113.51130880499994, + 44.85833029500009 + ], + [ + -113.54035746099993, + 45.011114412000154 + ], + [ + -113.66406446499997, + 45.12662542099997 + ], + [ + -113.69441429599988, + 45.19363115300007 + ], + [ + -113.87541624599993, + 45.389269148000096 + ], + [ + -113.97326376299986, + 45.10821791600006 + ], + [ + -113.95445115299992, + 44.98010110800004 + ], + [ + -114.05945345899994, + 44.93335116000014 + ], + [ + -114.04931544999994, + 44.83252313100019 + ], + [ + -114.13961105799984, + 44.755854296 + ], + [ + -114.27866968599994, + 44.75282405200011 + ], + [ + -114.25938902599995, + 44.67407724000009 + ], + [ + -114.343222304, + 44.54755203200011 + ], + [ + -114.27230509099996, + 44.43917011400015 + ], + [ + -114.33871714699984, + 44.28199201600006 + ], + [ + -114.25676563099995, + 44.09113104600016 + ], + [ + -114.16607698799993, + 44.0190836810001 + ], + [ + -114.2056731859999, + 43.94148514000011 + ], + [ + -113.9340384969999, + 43.881098558000076 + ], + [ + -113.9390750849999, + 43.759861611000076 + ], + [ + -113.76744101299994, + 43.76783457099998 + ], + [ + -113.78074248899998, + 43.6803408830001 + ], + [ + -113.70733504299994, + 43.586180567000156 + ], + [ + -113.55788485299996, + 43.51484613400015 + ], + [ + -113.276442681, + 43.57772952900012 + ], + [ + -113.09548720599997, + 43.631532766000134 + ], + [ + -112.83836000799988, + 43.809972875000085 + ], + [ + -112.69635791499996, + 44.01799191499998 + ], + [ + -112.41473723699983, + 44.21705723800011 + ], + [ + -112.38504853699999, + 44.29356125000004 + ], + [ + -112.21460526499993, + 44.32476773400009 + ], + [ + -112.18131328099986, + 44.36176809400018 + ], + [ + -111.9965189859999, + 44.34876405400013 + ], + [ + -111.94087803699995, + 44.39095194000009 + ], + [ + -112.15492184099998, + 44.39888620500011 + ], + [ + -112.12481049999997, + 44.55726234500003 + ], + [ + -111.89018709699997, + 44.607888886000126 + ], + [ + -111.77607314999995, + 44.578645353000184 + ], + [ + -111.45170641799996, + 44.62428500500005 + ], + [ + -111.42473686199997, + 44.80590399700003 + ], + [ + -111.50223857699984, + 44.85743886700004 + ], + [ + -111.52289966199987, + 44.95050702600014 + ], + [ + -111.5835845009999, + 45.018745882000076 + ], + [ + -111.55590517599995, + 45.17789540100017 + ], + [ + -111.61611145799992, + 45.257668027000136 + ], + [ + -111.58051641299988, + 45.32956152200006 + ], + [ + -111.63757202799985, + 45.46279924100003 + ], + [ + -111.58242792099998, + 45.55059079000017 + ], + [ + -111.45139037199993, + 45.46536096400018 + ], + [ + -111.30160855199995, + 45.479470167000045 + ], + [ + -111.06629133799993, + 45.585382417000176 + ], + [ + -110.86019018699989, + 45.65735222500007 + ], + [ + -110.64139257999994, + 45.617251675000034 + ], + [ + -110.75705175499996, + 45.52292302800009 + ], + [ + -110.74668901099983, + 45.48066789100005 + ], + [ + -110.88898557099998, + 45.308681233000186 + ], + [ + -110.98240971799993, + 45.23983358800007 + ], + [ + -110.9562569439999, + 45.151776698000106 + ], + [ + -110.69444543899994, + 45.31680366400019 + ], + [ + -110.61020890099996, + 45.3470023910001 + ], + [ + -110.58890455399984, + 45.43461186500019 + ], + [ + -110.46840664199993, + 45.640786559000105 + ], + [ + -110.24836938399994, + 45.540922473000194 + ], + [ + -110.08747706299994, + 45.59724260600012 + ], + [ + -110.00724787899992, + 45.67645969400019 + ], + [ + -109.89413408499985, + 45.649692211000115 + ], + [ + -109.7540397539999, + 45.69005563300004 + ], + [ + -109.77212975499992, + 45.570484611000154 + ], + [ + -109.71168280199993, + 45.519786600000145 + ], + [ + -109.77424795599995, + 45.35951846400019 + ], + [ + -109.58824946399994, + 45.276725520000184 + ], + [ + -109.3032252939999, + 45.18657033400018 + ], + [ + -109.21670122999996, + 45.11384163300005 + ], + [ + -109.04914017899983, + 45.087474849000046 + ], + [ + -108.99604510499984, + 45.19924726900007 + ], + [ + -108.8590596819999, + 45.24269281 + ], + [ + -108.76219907299992, + 45.20923674300002 + ], + [ + -108.65156370499994, + 45.231718902000125 + ], + [ + -108.69507673599998, + 45.346477964000144 + ], + [ + -108.56227040399989, + 45.334796294000114 + ], + [ + -108.40929732399985, + 45.36087180000004 + ], + [ + -108.36081367699984, + 45.23299467900006 + ], + [ + -108.26784007599997, + 45.13671865800012 + ], + [ + -108.27529166599999, + 45.03031439000017 + ], + [ + -108.1095108259999, + 44.99065996400009 + ], + [ + -108.02364109599989, + 44.91722111200011 + ], + [ + -108.01651414799989, + 44.998411451000095 + ], + [ + -108.10996690699989, + 45.167048055000066 + ], + [ + -108.1114257669999, + 45.2122118800001 + ], + [ + -107.96167037299989, + 45.24961281500015 + ], + [ + -107.73498260399992, + 45.00394877600007 + ], + [ + -107.59644476399984, + 44.94330242500007 + ], + [ + -107.47179828499998, + 44.933659462000094 + ], + [ + -107.31151099499994, + 44.82529392100014 + ], + [ + -107.18758146099998, + 44.69611292900015 + ], + [ + -106.89408628199993, + 44.57597244700003 + ], + [ + -106.9221006809999, + 44.457628964000094 + ], + [ + -106.81695773299987, + 44.3089526710001 + ], + [ + -106.82758326499999, + 44.17334547400003 + ], + [ + -106.79790103299996, + 44.08114100500018 + ], + [ + -106.82932075799994, + 44.00438265900016 + ], + [ + -106.81244869999989, + 43.905840969999986 + ], + [ + -106.817900652, + 43.850308814000186 + ], + [ + -106.667692521, + 43.726673793000145 + ], + [ + -106.69169972799995, + 43.66096161200011 + ], + [ + -106.80901871799989, + 43.62177000700018 + ], + [ + -106.75574362999998, + 43.51409353500014 + ], + [ + -106.82519777099998, + 43.37531588500019 + ], + [ + -106.9069736329999, + 43.32912618600017 + ], + [ + -106.72851422999997, + 43.20269602500014 + ], + [ + -106.67425564299998, + 43.062263393000194 + ], + [ + -106.57775192599996, + 42.9997314470001 + ], + [ + -106.536478188, + 42.85721220500017 + ], + [ + -106.40252673999993, + 42.76913401300004 + ], + [ + -106.20810754099995, + 42.773517324000125 + ], + [ + -106.14423362199994, + 42.68186209300006 + ], + [ + -105.91211458199996, + 42.777892352000094 + ], + [ + -105.75437706999992, + 42.77892180900005 + ], + [ + -105.47980028499995, + 42.73296073200015 + ], + [ + -105.40794342499998, + 42.64295704300014 + ], + [ + -105.41387815499996, + 42.57592360200016 + ], + [ + -105.50204230999998, + 42.567962195 + ], + [ + -105.4653037359999, + 42.47239645500014 + ], + [ + -105.35120091599998, + 42.598765264000065 + ], + [ + -105.23497204299991, + 42.61642483500009 + ], + [ + -105.14129963299996, + 42.52662466300012 + ], + [ + -105.15312495999996, + 42.47214978699998 + ], + [ + -105.03984960299994, + 42.38285055 + ], + [ + -105.05265180999993, + 42.33096538000012 + ], + [ + -105.19794897599996, + 42.2771326890001 + ], + [ + -105.22977929999996, + 42.170923203000086 + ], + [ + -105.15970908999992, + 42.072340752000116 + ], + [ + -105.2524027149999, + 41.98535802600003 + ], + [ + -105.18591235699995, + 41.94319726800006 + ], + [ + -105.25295477199995, + 41.81020138500003 + ], + [ + -105.16087359699998, + 41.796983795000074 + ], + [ + -105.00382745899998, + 41.840132238000194 + ], + [ + -104.898861233, + 41.78788805900018 + ], + [ + -104.95450096899998, + 41.729010755000104 + ], + [ + -105.03014057099995, + 41.42542453300018 + ], + [ + -105.14413837799998, + 41.389847491000126 + ], + [ + -105.10859148499992, + 41.31896341099997 + ], + [ + -105.10566566499989, + 41.203375258000165 + ], + [ + -105.15236086299996, + 41.09932915200011 + ], + [ + -105.0901545879999, + 41.06825317200014 + ], + [ + -105.13334545599997, + 40.96788676900019 + ], + [ + -105.11999175099987, + 40.88132844600017 + ], + [ + -105.1615970179999, + 40.8086403800001 + ], + [ + -105.14310365599982, + 40.440216195000176 + ], + [ + -105.20484013899983, + 40.40373451700003 + ], + [ + -105.19603948099996, + 40.222862527000075 + ], + [ + -105.27910959299987, + 40.14669117600005 + ], + [ + -105.29041094799987, + 40.03861385000005 + ], + [ + -105.26930269999997, + 39.88342644200003 + ], + [ + -105.07217855399989, + 39.44708165499998 + ], + [ + -105.02270403799997, + 39.39347878800015 + ], + [ + -104.82312069999995, + 38.98948537500013 + ], + [ + -104.88531569699995, + 38.866022408000106 + ], + [ + -104.8287250059999, + 38.74334684799999 + ], + [ + -104.8392523519999, + 38.48016701100016 + ], + [ + -105.05244071199996, + 38.49535228800005 + ], + [ + -105.12652961599991, + 38.47601372100007 + ], + [ + -105.26407660299992, + 38.4952063720001 + ], + [ + -105.26326595299992, + 38.39888780900003 + ], + [ + -105.20381628999985, + 38.3056146350001 + ], + [ + -105.1151885669999, + 38.256273170999975 + ], + [ + -105.09461991999996, + 38.19662740600006 + ], + [ + -104.99140144999984, + 38.16492660400007 + ], + [ + -104.94367729099997, + 38.02825477700003 + ], + [ + -104.86829275399992, + 37.95302554000011 + ], + [ + -104.92141537099991, + 37.91208481700011 + ], + [ + -104.93948885799989, + 37.82111528900003 + ], + [ + -105.05264836599991, + 37.66130578899998 + ], + [ + -105.08328562399998, + 37.54131274200006 + ], + [ + -104.99084801799995, + 37.48393518900019 + ], + [ + -104.86301428999991, + 37.53150965900011 + ], + [ + -104.7979384649999, + 37.58559571000012 + ], + [ + -104.68402828699993, + 37.50449049200017 + ], + [ + -104.66108095999994, + 37.41247170000014 + ], + [ + -104.49701663199994, + 37.24750546000013 + ], + [ + -104.53119952399999, + 37.16254607400015 + ], + [ + -104.37149433999991, + 37.100466404000144 + ], + [ + -104.22580515599998, + 37.06849219200012 + ], + [ + -104.13549840899992, + 36.987681560000055 + ], + [ + -104.02015159499996, + 36.96477882000005 + ], + [ + -103.90113369399995, + 36.99449985300009 + ], + [ + -103.91622644599994, + 36.860907651 + ], + [ + -104.06321374399988, + 36.882457701000135 + ], + [ + -104.28445976299997, + 36.812185707000026 + ], + [ + -104.36212900499993, + 36.91420703500006 + ], + [ + -104.42292857899997, + 36.91466020400014 + ], + [ + -104.54145163599998, + 36.80317976500004 + ], + [ + -104.54780168799994, + 36.756790832000036 + ], + [ + -104.71246716699994, + 36.62775963500013 + ], + [ + -104.90793877799996, + 36.54729732100009 + ], + [ + -105.019063056, + 36.47051506400015 + ], + [ + -104.94759776799998, + 36.403457058000185 + ], + [ + -104.88650306799997, + 36.25418745100012 + ], + [ + -105.18032039299999, + 36.085976254000116 + ], + [ + -105.24456444199984, + 35.95208558100012 + ], + [ + -105.23260008499994, + 35.85882526200015 + ], + [ + -105.26937866999987, + 35.7352116350001 + ], + [ + -105.23588294199999, + 35.5325814360001 + ], + [ + -105.30881011499997, + 35.54114738499999 + ], + [ + -105.35435465199998, + 35.41737346800005 + ], + [ + -105.52357337999996, + 35.42894894199998 + ], + [ + -105.51253596899994, + 35.35572485300014 + ], + [ + -105.56455087099994, + 35.3021930000001 + ], + [ + -105.65681648199995, + 35.436325044000114 + ], + [ + -105.77957476899996, + 35.540470349000145 + ], + [ + -105.85287161999992, + 35.50354233400009 + ], + [ + -105.85840254299995, + 35.38976944700005 + ], + [ + -105.89590368799998, + 35.25576638300004 + ], + [ + -106.01861049899992, + 35.29095754500014 + ], + [ + -106.08698363499997, + 35.278164760000095 + ], + [ + -106.23405821399996, + 35.13466654000018 + ], + [ + -106.13292419899989, + 35.00629922600007 + ], + [ + -106.13508526099992, + 34.92602835500014 + ], + [ + -106.24329470499998, + 34.74763696100007 + ], + [ + -106.30783710399999, + 34.72535572900017 + ], + [ + -106.3438791939999, + 34.63743496200004 + ], + [ + -106.34251092999995, + 34.49232598700013 + ], + [ + -106.55682094399998, + 34.2877885800001 + ], + [ + -106.66218747499994, + 34.2738941500001 + ], + [ + -106.73168361599994, + 34.11003064600004 + ], + [ + -106.67951264699991, + 34.066954723000094 + ], + [ + -106.5682510709999, + 34.062981416000014 + ], + [ + -106.42096107799995, + 34.164716625000096 + ], + [ + -106.36012616599993, + 34.150924729999986 + ], + [ + -106.3366807829999, + 34.039015923000136 + ], + [ + -106.29235757199996, + 33.97936014100003 + ], + [ + -106.27161186699988, + 33.810540599000035 + ], + [ + -106.183035051, + 33.728315630000054 + ], + [ + -106.05670302399994, + 33.846752978000154 + ], + [ + -105.97363106499995, + 33.84827593900013 + ], + [ + -105.81198210499997, + 33.80195793900009 + ], + [ + -105.78087436399994, + 33.894296281000095 + ], + [ + -105.65081250799994, + 33.968604624000136 + ], + [ + -105.56782988499998, + 33.95093923500019 + ], + [ + -105.57311273, + 33.83668635000015 + ], + [ + -105.51125977099997, + 33.695555081000066 + ], + [ + -105.33503239399988, + 33.704034449000176 + ], + [ + -105.21919278299998, + 33.68418081600015 + ], + [ + -105.15167502799989, + 33.56604476900003 + ], + [ + -105.17384233699994, + 33.48184697500017 + ], + [ + -105.26628524399996, + 33.369882167000014 + ], + [ + -105.22227534099994, + 33.32531508400018 + ], + [ + -105.15522867499993, + 33.08391935100008 + ], + [ + -105.18474187599992, + 33.04132677700005 + ], + [ + -105.18189372999996, + 32.89885183700005 + ], + [ + -105.25326777399982, + 32.80886916400004 + ], + [ + -105.24621212199992, + 32.756313577000185 + ], + [ + -105.14329510699991, + 32.71345197 + ], + [ + -105.09178015499992, + 32.646939622000104 + ], + [ + -104.97756644899988, + 32.7025458490001 + ], + [ + -104.87224194699985, + 32.70951248200004 + ], + [ + -104.77536980499997, + 32.74873284500018 + ], + [ + -104.8140926179999, + 32.86472207500003 + ], + [ + -104.74332353499994, + 32.95565280500011 + ], + [ + -104.58641434299989, + 33.002659535000134 + ], + [ + -104.58268706099994, + 33.04947969299997 + ], + [ + -104.69614187399992, + 33.079456139000115 + ], + [ + -104.712458444, + 33.24404357200012 + ], + [ + -104.76604324499993, + 33.329034185000125 + ], + [ + -104.62147114599998, + 33.46115643500008 + ], + [ + -104.59105445699993, + 33.592381745000125 + ], + [ + -104.63989338799996, + 33.70910515600008 + ], + [ + -104.61368115099998, + 33.76071239400005 + ], + [ + -104.48293346999998, + 33.79657551100007 + ], + [ + -104.39473899899991, + 33.76926052100009 + ], + [ + -104.30674033199989, + 33.828507186000024 + ], + [ + -104.18687229699998, + 33.774348175 + ], + [ + -104.22952774799995, + 33.66098047200006 + ], + [ + -104.00883736399993, + 33.51294398000016 + ], + [ + -104.03549579299994, + 33.42276399500014 + ], + [ + -103.96742810599994, + 33.383321765 + ], + [ + -104.05335294199989, + 33.243714239000155 + ], + [ + -104.03847798599998, + 33.127739741000084 + ], + [ + -103.95454387799998, + 33.07151414700007 + ], + [ + -104.03653027699994, + 32.93019182600011 + ], + [ + -104.04280670199995, + 32.792151524000076 + ], + [ + -103.75584393899993, + 32.61840769600013 + ], + [ + -103.65637230899989, + 32.60686568400013 + ], + [ + -103.69495113799991, + 32.50182045300005 + ], + [ + -103.6675876, + 32.46415513700009 + ], + [ + -103.54518375499998, + 32.46186483600019 + ], + [ + -103.33916954899985, + 32.40183774900015 + ], + [ + -103.30924215099998, + 32.30878498300018 + ], + [ + -103.3490395799999, + 32.22060610199998 + ], + [ + -103.23397550699991, + 32.177010784000174 + ], + [ + -103.16021605299989, + 32.19382303100002 + ], + [ + -103.0897440789999, + 32.08363707900003 + ], + [ + -103.10726602999989, + 31.966981794 + ], + [ + -103.04544712899991, + 31.74149448500009 + ], + [ + -102.95436748499998, + 31.719291863000137 + ], + [ + -102.9111827029999, + 31.615245727000115 + ], + [ + -102.80610997499997, + 31.4977105480001 + ], + [ + -102.85383858699998, + 31.40068741200008 + ], + [ + -102.78913393199997, + 31.362100641000154 + ], + [ + -102.63318110299997, + 31.368112653000026 + ], + [ + -102.48324430399998, + 31.340655718000107 + ], + [ + -102.39437362399991, + 31.367429386000083 + ], + [ + -102.34208850199997, + 31.426159851000136 + ], + [ + -102.24878245799994, + 31.408362451000187 + ], + [ + -102.02652004599997, + 31.278438476000133 + ], + [ + -101.98785450899999, + 31.007987672000013 + ], + [ + -101.87330615299993, + 30.9660808700001 + ], + [ + -101.82054960699998, + 30.822777237000025 + ], + [ + -101.82067494299997, + 30.76016712000012 + ], + [ + -101.7587242109999, + 30.659334627000135 + ], + [ + -101.64657179599999, + 30.63734078500005 + ], + [ + -101.63778607699999, + 30.560630979000166 + ], + [ + -101.73111807199996, + 30.418985894000173 + ], + [ + -101.65893747299992, + 30.35126470100016 + ], + [ + -101.74331639799993, + 30.303072639000106 + ], + [ + -101.65304774399993, + 30.21961957900004 + ], + [ + -101.42748959599993, + 30.123391418000153 + ], + [ + -101.33673816199996, + 30.163352588000066 + ], + [ + -101.21502426599994, + 29.963122434000127 + ], + [ + -101.07364080399992, + 29.83491599600012 + ], + [ + -101.08447639499991, + 29.745793649000063 + ], + [ + -101.00959083999999, + 29.65267371500005 + ], + [ + -100.94271609999998, + 29.779914007 + ], + [ + -100.67009363699992, + 29.829558865000024 + ], + [ + -100.60009531599997, + 29.776118264000104 + ], + [ + -100.65311167099992, + 29.729744658000072 + ], + [ + -100.75075867099997, + 29.740349663000075 + ], + [ + -100.77137729399993, + 29.683577194 + ], + [ + -100.68623697599998, + 29.616672242000107 + ], + [ + -100.56403262299995, + 29.567995113 + ], + [ + -100.4400816729999, + 29.567977896000116 + ], + [ + -100.06107942099993, + 29.433513126000094 + ], + [ + -99.93191120899996, + 29.329013496000186 + ], + [ + -99.8555063419999, + 29.323408135000136 + ], + [ + -99.554385589, + 29.46721642600005 + ], + [ + -99.28390468999999, + 29.514396365000096 + ], + [ + -99.20562730799998, + 29.483350249000125 + ], + [ + -99.08901392499996, + 29.50463797600014 + ], + [ + -99.01395691, + 29.466585420000058 + ], + [ + -98.87656908499997, + 29.51696175600017 + ], + [ + -98.90773324599996, + 29.38714349600002 + ], + [ + -98.7938865139999, + 29.24920963000011 + ] + ], + [ + [ + -114.16607698799993, + 44.0190836810001 + ], + [ + -114.18006497199991, + 44.11750501300014 + ], + [ + -114.09903262499995, + 44.13771559600002 + ], + [ + -114.08102304699992, + 44.03366708900006 + ], + [ + -114.16607698799993, + 44.0190836810001 + ] + ], + [ + [ + -105.79252649399984, + 34.15445471300012 + ], + [ + -105.86938204599988, + 34.23927059900018 + ], + [ + -105.79200198499996, + 34.31019514400003 + ], + [ + -105.66105693699996, + 34.255793641000025 + ], + [ + -105.72453528499994, + 34.135633909000035 + ], + [ + -105.79252649399984, + 34.15445471300012 + ] + ], + [ + [ + -88.30137631699995, + 37.707604198000126 + ], + [ + -88.30492042499992, + 37.67048479000016 + ], + [ + -88.13588231299997, + 37.575474940000106 + ], + [ + -88.09568861899993, + 37.483948465000026 + ], + [ + -88.31910133799988, + 37.44587319400017 + ], + [ + -88.46927853499989, + 37.40354332200019 + ], + [ + -88.51588095099987, + 37.30302485400017 + ], + [ + -88.61705800099986, + 37.358383295000124 + ], + [ + -88.81410223399996, + 37.323515091000104 + ], + [ + -89.05922137299984, + 37.33298961400004 + ], + [ + -89.26480708499997, + 37.275773781000055 + ], + [ + -89.32135827399992, + 37.542743814000175 + ], + [ + -89.3782984579999, + 37.5913993850001 + ], + [ + -89.34439439199997, + 37.69458865100012 + ], + [ + -89.23656152899997, + 37.640858670000114 + ], + [ + -89.16649702399997, + 37.66371458200007 + ], + [ + -88.84272771799994, + 37.61488531700019 + ], + [ + -88.73250046999988, + 37.64731986200019 + ], + [ + -88.50889777099991, + 37.63177289400011 + ], + [ + -88.40392375699992, + 37.70129675400011 + ], + [ + -88.30137631699995, + 37.707604198000126 + ] + ], + [ + [ + -109.51869280699998, + 46.856891370000085 + ], + [ + -109.54522891999994, + 46.94008165200012 + ], + [ + -109.37769080699991, + 47.032155200000034 + ], + [ + -109.30404252399995, + 46.92261417100019 + ], + [ + -109.04940855199999, + 46.9666550930001 + ], + [ + -108.94828342899996, + 46.952404032 + ], + [ + -108.88819875199994, + 46.88664723200009 + ], + [ + -108.98738161199987, + 46.84319527600019 + ], + [ + -108.87253784299998, + 46.78219728200003 + ], + [ + -109.04443736399992, + 46.71955741600004 + ], + [ + -109.08156880999996, + 46.665547384000035 + ], + [ + -109.26818340799991, + 46.65088441700016 + ], + [ + -109.36716197699997, + 46.68316644300006 + ], + [ + -109.52227251199997, + 46.680113760000154 + ], + [ + -109.65231739499984, + 46.77919841600004 + ], + [ + -109.51869280699998, + 46.856891370000085 + ] + ], + [ + [ + -110.55715797699997, + 46.384065576000125 + ], + [ + -110.39173440099995, + 46.27216041800011 + ], + [ + -110.24201551099986, + 46.266928582000105 + ], + [ + -110.24222122799983, + 46.158318370000075 + ], + [ + -110.1571607539999, + 46.11162245500009 + ], + [ + -110.136608202, + 45.96030743200009 + ], + [ + -110.27514929599982, + 45.92616656300015 + ], + [ + -110.48207455399984, + 45.98555945400011 + ], + [ + -110.45942830499996, + 46.158725937000156 + ], + [ + -110.57701237199996, + 46.17934812700008 + ], + [ + -110.5949877939999, + 46.30216984000009 + ], + [ + -110.55715797699997, + 46.384065576000125 + ] + ], + [ + [ + -109.30469114399995, + 47.21626023000016 + ], + [ + -109.25585478599999, + 47.253530357000045 + ], + [ + -109.14756637999994, + 47.21153552700014 + ], + [ + -109.2151925359999, + 47.13213994200015 + ], + [ + -109.17300633299988, + 47.0219337370001 + ], + [ + -109.37942925699997, + 47.14465940800005 + ], + [ + -109.30469114399995, + 47.21626023000016 + ] + ], + [ + [ + -104.60813109499998, + 44.91238590800009 + ], + [ + -104.4131409549999, + 44.970855872000186 + ], + [ + -104.21300050799994, + 44.84235415000012 + ], + [ + -104.02781160199993, + 44.640708525000036 + ], + [ + -103.7406286339999, + 44.64606463600012 + ], + [ + -103.66135453599992, + 44.61851007200016 + ], + [ + -103.60003251999996, + 44.50906294400016 + ], + [ + -103.45622722099984, + 44.39976157500007 + ], + [ + -103.24180880099993, + 44.1571610740001 + ], + [ + -103.21693524299991, + 43.98724235200012 + ], + [ + -103.23008146299998, + 43.81317438000019 + ], + [ + -103.34835771599995, + 43.5575639110001 + ], + [ + -103.34388424399992, + 43.50169562600007 + ], + [ + -103.42952842699992, + 43.35796235400005 + ], + [ + -103.60357175399997, + 43.31657017300017 + ], + [ + -103.74071280899994, + 43.2565795700001 + ], + [ + -103.81201948899997, + 43.41532692200019 + ], + [ + -103.9053282779999, + 43.40276063800013 + ], + [ + -104.03500823199994, + 43.557789316000026 + ], + [ + -104.12142479, + 43.705373510000186 + ], + [ + -104.115613264, + 43.772803879000094 + ], + [ + -104.16996599699996, + 43.8434692190001 + ], + [ + -104.30445212199993, + 43.89607960100017 + ], + [ + -104.30929785999996, + 43.96136845799998 + ], + [ + -104.42104737899996, + 44.03469241200008 + ], + [ + -104.50708909999997, + 44.168131055000174 + ], + [ + -104.68411721099994, + 44.17049123900006 + ], + [ + -104.71182849999985, + 44.24467797000017 + ], + [ + -104.89653858199995, + 44.45283630300014 + ], + [ + -104.91272194199996, + 44.57655540400003 + ], + [ + -104.88300970099993, + 44.66905002800013 + ], + [ + -104.90658123999998, + 44.74890948900014 + ], + [ + -104.85143403499984, + 44.80886513900009 + ], + [ + -104.60813109499998, + 44.91238590800009 + ] + ], + [ + [ + -110.5760208559999, + 47.55435691000014 + ], + [ + -110.44577264799995, + 47.49390475600018 + ], + [ + -110.505614101, + 47.380563123000115 + ], + [ + -110.6615009059999, + 47.41037835100019 + ], + [ + -110.673220932, + 47.50730511100005 + ], + [ + -110.5760208559999, + 47.55435691000014 + ] + ], + [ + [ + -113.52855090699995, + 43.93653277400017 + ], + [ + -113.81725660599994, + 44.09519086200015 + ], + [ + -114.01956627999988, + 44.3675189760001 + ], + [ + -113.92981610799995, + 44.440225532000056 + ], + [ + -113.85208450399989, + 44.424999026000194 + ], + [ + -113.79743786199998, + 44.250894078000044 + ], + [ + -113.69134116999999, + 44.14094012300012 + ], + [ + -113.55797312199996, + 44.12889112300007 + ], + [ + -113.47140435699993, + 44.06749183400018 + ], + [ + -113.4552303459999, + 43.96901988500008 + ], + [ + -113.32910128899994, + 44.06007395400013 + ], + [ + -113.26093705299996, + 43.984880424000096 + ], + [ + -113.20911279299986, + 43.76294784000004 + ], + [ + -113.29859154299993, + 43.774386679000145 + ], + [ + -113.30981620199992, + 43.83881987400008 + ], + [ + -113.39953530399998, + 43.94376737200014 + ], + [ + -113.52855090699995, + 43.93653277400017 + ] + ], + [ + [ + -113.61194467899992, + 44.43737400100014 + ], + [ + -113.779441809, + 44.60100051700016 + ], + [ + -113.85574057399998, + 44.639032832000055 + ], + [ + -113.93361583099994, + 44.82506120900007 + ], + [ + -113.92584408199997, + 44.99561353400014 + ], + [ + -113.85501590099989, + 45.07811877600011 + ], + [ + -113.73651420299996, + 45.014996675000134 + ], + [ + -113.84594905499995, + 44.87222912300007 + ], + [ + -113.74055634899992, + 44.771530996000195 + ], + [ + -113.64175607599998, + 44.76567863600019 + ], + [ + -113.537665947, + 44.640979703000085 + ], + [ + -113.26933159499998, + 44.47013585800005 + ], + [ + -113.16966593799998, + 44.28570437900015 + ], + [ + -113.05127896499994, + 44.24803055000007 + ], + [ + -113.02427533099996, + 44.14194552900017 + ], + [ + -112.95038834899998, + 44.111027542000045 + ], + [ + -112.91509326799996, + 44.009826381000096 + ], + [ + -112.92278240799988, + 43.881793654000035 + ], + [ + -113.08959515599997, + 44.024834621000025 + ], + [ + -113.17906423099998, + 44.18370064600009 + ], + [ + -113.24886613199988, + 44.2384675510001 + ], + [ + -113.35467492099991, + 44.37854286100014 + ], + [ + -113.42538644299992, + 44.317658059999985 + ], + [ + -113.56956460099997, + 44.37118723900011 + ], + [ + -113.61194467899992, + 44.43737400100014 + ] + ], + [ + [ + -113.18746282299998, + 44.63173145700017 + ], + [ + -113.26695277999988, + 44.70777912400007 + ], + [ + -113.17167259999991, + 44.79299616500015 + ], + [ + -113.16338014099983, + 44.92847866000005 + ], + [ + -113.09177275199994, + 44.90581583000005 + ], + [ + -113.01349783299997, + 44.656932156000096 + ], + [ + -113.04542333999996, + 44.60809832800004 + ], + [ + -112.96754953299995, + 44.454870762000155 + ], + [ + -112.821790347, + 44.46695227100014 + ], + [ + -112.67549631499992, + 44.335183285000085 + ], + [ + -112.83980096099992, + 44.273966684000015 + ], + [ + -112.98915763899998, + 44.375184291000096 + ], + [ + -113.07068672899993, + 44.50282580500004 + ], + [ + -113.18746282299998, + 44.63173145700017 + ] + ], + [ + [ + -112.43039771899998, + 44.91902438100004 + ], + [ + -112.47598134799995, + 44.94668794200015 + ], + [ + -112.71959288799997, + 44.99688296300013 + ], + [ + -112.63680751399988, + 45.063594710000075 + ], + [ + -112.43039771899998, + 44.91902438100004 + ] + ], + [ + [ + -112.20284696699997, + 45.23553071900011 + ], + [ + -112.34657299899999, + 45.24921821300018 + ], + [ + -112.24350771999991, + 45.38785786 + ], + [ + -112.16118998899998, + 45.313011981000045 + ], + [ + -112.20284696699997, + 45.23553071900011 + ] + ], + [ + [ + -113.07100100999992, + 45.28077012800003 + ], + [ + -113.10597632199995, + 45.32563081000012 + ], + [ + -113.30680441499993, + 45.32856736200006 + ], + [ + -113.39386815599988, + 45.42816057900018 + ], + [ + -113.36666482099997, + 45.707849625999984 + ], + [ + -113.21032114399992, + 45.871893730000124 + ], + [ + -112.96640021699989, + 45.98499686500003 + ], + [ + -112.92165386599993, + 46.076266996000186 + ], + [ + -112.78496474699995, + 46.013899724000055 + ], + [ + -112.71270136599998, + 45.890291006000155 + ], + [ + -112.77966455299998, + 45.78621217600005 + ], + [ + -112.71662178399998, + 45.65408278500013 + ], + [ + -112.79186304699994, + 45.60895234500009 + ], + [ + -112.76217127599995, + 45.51291791100016 + ], + [ + -112.776883296, + 45.348704325000085 + ], + [ + -113.07100100999992, + 45.28077012800003 + ] + ], + [ + [ + -112.19418641199997, + 45.616863748000185 + ], + [ + -112.1211835599999, + 45.713792360000184 + ], + [ + -111.97296522299996, + 45.716946545000155 + ], + [ + -111.92578788899988, + 45.647324863000165 + ], + [ + -111.81975544399995, + 45.584788087 + ], + [ + -111.84555610499996, + 45.40726837400007 + ], + [ + -112.01545885099989, + 45.39966982900006 + ], + [ + -112.05307888899995, + 45.45463689500008 + ], + [ + -112.2229391439999, + 45.564660165000134 + ], + [ + -112.19418641199997, + 45.616863748000185 + ] + ], + [ + [ + -110.94776429399997, + 45.71135240000012 + ], + [ + -111.02568594999991, + 45.78653538600014 + ], + [ + -110.99118998199998, + 45.825585483000054 + ], + [ + -111.06235021799989, + 45.91094558800006 + ], + [ + -111.11250477799996, + 46.040552352000134 + ], + [ + -110.99566255799994, + 46.05640311200011 + ], + [ + -111.04624085299997, + 46.16773793300007 + ], + [ + -111.25836521399992, + 46.132670413000085 + ], + [ + -111.32149307099996, + 46.24306174800017 + ], + [ + -111.22821494599998, + 46.29805349300011 + ], + [ + -111.47734043799989, + 46.533604536000155 + ], + [ + -111.5201168879999, + 46.610486574000106 + ], + [ + -111.64836402599997, + 46.6591398380001 + ], + [ + -111.66104488399998, + 46.56785322100018 + ], + [ + -111.73074418599998, + 46.54552091100015 + ], + [ + -111.80822034399989, + 46.68964678500015 + ], + [ + -111.81001787899993, + 46.805951411000194 + ], + [ + -111.89107225999993, + 46.85896083900019 + ], + [ + -111.78553107699992, + 46.935206808000146 + ], + [ + -111.66744720499992, + 46.87029213500017 + ], + [ + -111.67425307799994, + 46.82001778300014 + ], + [ + -111.46332706299995, + 46.74687974100004 + ], + [ + -111.32994032499988, + 46.6778349600001 + ], + [ + -111.19796050799988, + 46.51347172700014 + ], + [ + -111.02761634499996, + 46.41688870400003 + ], + [ + -111.11643078299988, + 46.251377091999984 + ], + [ + -111.10713094999994, + 46.199877007000055 + ], + [ + -110.89299849899999, + 46.19858097500014 + ], + [ + -110.84260800699997, + 46.08901841300019 + ], + [ + -110.9679061679999, + 45.98237437400019 + ], + [ + -110.78588575099997, + 45.849575910000056 + ], + [ + -110.69522446999991, + 45.74588391300006 + ], + [ + -110.80541891199994, + 45.69635558700014 + ], + [ + -110.89237017599999, + 45.760568567000064 + ], + [ + -110.94776429399997, + 45.71135240000012 + ] + ], + [ + [ + -112.05316663099995, + 45.23685330300009 + ], + [ + -111.90712067099997, + 45.25637977200006 + ], + [ + -111.8884311299999, + 45.19408055700012 + ], + [ + -111.72996173699994, + 45.04536002000003 + ], + [ + -111.67451524799998, + 44.94503409700019 + ], + [ + -111.61095830599999, + 44.92074381499998 + ], + [ + -111.54406459999984, + 44.76984724200014 + ], + [ + -111.79906480399995, + 44.75127188100004 + ], + [ + -111.98167479599994, + 44.816425803000186 + ], + [ + -111.97064937899995, + 44.942283638000106 + ], + [ + -111.90723797699991, + 45.05755717000005 + ], + [ + -112.00447940199996, + 45.06464531900008 + ], + [ + -112.06806963599996, + 45.156068189000166 + ], + [ + -112.05316663099995, + 45.23685330300009 + ] + ], + [ + [ + -112.80350297099989, + 44.75479749200014 + ], + [ + -112.76048516699996, + 44.669607995000035 + ], + [ + -112.65761035199995, + 44.56172254500012 + ], + [ + -112.35740101399983, + 44.47415775100018 + ], + [ + -112.27205414499991, + 44.480528233000086 + ], + [ + -112.204370569, + 44.4294842270001 + ], + [ + -112.27815261599994, + 44.37230934400014 + ], + [ + -112.51863633199997, + 44.40196010300008 + ], + [ + -112.68572396299999, + 44.47260704700011 + ], + [ + -112.67731773499992, + 44.56303508900015 + ], + [ + -112.7823936929999, + 44.63525363400015 + ], + [ + -112.80350297099989, + 44.75479749200014 + ] + ], + [ + [ + -112.18371385399996, + 44.87284277900005 + ], + [ + -112.06503474499993, + 44.96206534300018 + ], + [ + -112.02942967899997, + 44.832854512000154 + ], + [ + -112.10599487899998, + 44.753756721000116 + ], + [ + -112.221926882, + 44.736459373000116 + ], + [ + -112.34900545, + 44.795973879000144 + ], + [ + -112.18371385399996, + 44.87284277900005 + ] + ], + [ + [ + -113.52822716399999, + 43.781327778000104 + ], + [ + -113.70763695399995, + 43.787688961000185 + ], + [ + -113.81588613599996, + 43.82426683600016 + ], + [ + -113.79205902099989, + 43.8826083620001 + ], + [ + -113.69009720999998, + 43.933001309000076 + ], + [ + -113.66689509199995, + 43.80974957600017 + ], + [ + -113.52822716399999, + 43.781327778000104 + ] + ] + ], + [ + [ + [ + -89.80558355199997, + 37.07300704200014 + ], + [ + -89.91193632499994, + 37.077299963000144 + ], + [ + -90.08759039899996, + 37.01512832600008 + ], + [ + -90.20700804699993, + 36.94496582100004 + ], + [ + -90.2059495439999, + 36.88875349800014 + ], + [ + -90.04205689899999, + 36.79344292600007 + ], + [ + -90.06270979299995, + 36.64718626900009 + ], + [ + -90.13013334999988, + 36.50405767900003 + ], + [ + -90.20659916599993, + 36.508614892000026 + ], + [ + -90.28144383099988, + 36.42904216300013 + ], + [ + -90.35619039199997, + 36.420948127000145 + ], + [ + -90.50682048799996, + 36.24512945900011 + ], + [ + -90.61495648799985, + 36.19893797700007 + ], + [ + -90.70506693199997, + 36.012925495 + ], + [ + -90.75867103399997, + 35.977201029000184 + ], + [ + -90.8057064059999, + 35.80202691800014 + ], + [ + -90.7131352969999, + 35.75903566400018 + ], + [ + -90.68014113799995, + 35.69648651299997 + ], + [ + -90.71351078299989, + 35.59210615000006 + ], + [ + -90.81523594399994, + 35.07455602500016 + ], + [ + -90.72760729499998, + 34.98872047200007 + ], + [ + -90.67926105799995, + 35.16808907500007 + ], + [ + -90.70545303799997, + 35.31425446000014 + ], + [ + -90.66227927699998, + 35.499524333000124 + ], + [ + -90.66566178699998, + 35.82143832200006 + ], + [ + -90.55771783399985, + 35.93729855400011 + ], + [ + -90.44440072499998, + 36.15345866000018 + ], + [ + -90.28011856699999, + 36.27562470700019 + ], + [ + -90.1713146319999, + 36.434575301000166 + ], + [ + -90.05494651499998, + 36.47985411700006 + ], + [ + -90.0426151339999, + 36.67534233700019 + ], + [ + -89.90754597199992, + 36.83005376900013 + ], + [ + -89.83065307399988, + 36.88318500800017 + ], + [ + -89.84759471799993, + 37.003252029 + ], + [ + -89.80558355199997, + 37.07300704200014 + ] + ] + ], + [ + [ + [ + -122.12556852899996, + 40.19312061800014 + ], + [ + -122.19910587599992, + 40.21749026500004 + ], + [ + -122.32029181099989, + 40.132449538000174 + ], + [ + -122.31240916799993, + 40.051591857000176 + ], + [ + -122.36402432299997, + 39.95401102000011 + ], + [ + -122.31308337099995, + 39.82178105500003 + ], + [ + -122.34687114299993, + 39.80581256400012 + ], + [ + -122.27250238899995, + 39.64786579600019 + ], + [ + -122.29718441399996, + 39.49859451100019 + ], + [ + -122.28319461899997, + 39.327791360000106 + ], + [ + -122.28991910799994, + 39.138970831000165 + ], + [ + -122.15897201699994, + 39.02890477700009 + ], + [ + -122.13380701099993, + 38.93770738000012 + ], + [ + -122.00508850899996, + 38.90507219000011 + ], + [ + -121.87279035199992, + 38.76269679900008 + ], + [ + -121.90782435199998, + 38.70296539100008 + ], + [ + -122.03089101099994, + 38.79874617500013 + ], + [ + -122.07965102599991, + 38.67230981500006 + ], + [ + -121.99915543399993, + 38.61405523200011 + ], + [ + -121.977197075, + 38.362163765000105 + ], + [ + -121.87197840999988, + 38.226780630000064 + ], + [ + -121.71983541799995, + 38.217358811000054 + ], + [ + -121.71637350899994, + 38.111885879000056 + ], + [ + -121.83474192199992, + 38.08018296500006 + ], + [ + -121.90343609099989, + 38.21734762100016 + ], + [ + -121.96220808799995, + 38.18793948300004 + ], + [ + -122.12636931599997, + 38.19864522400019 + ], + [ + -122.10721119599992, + 38.02203283800009 + ], + [ + -122.02045892799993, + 38.05203343900013 + ], + [ + -121.68003694099991, + 38.00398784200007 + ], + [ + -121.68822997599995, + 37.89236405700018 + ], + [ + -121.58679955599996, + 37.772777764000125 + ], + [ + -121.56691366499996, + 37.69368775200013 + ], + [ + -121.27984278099996, + 37.5377201390001 + ], + [ + -121.18863171699996, + 37.46084970700019 + ], + [ + -121.05759321799997, + 37.12821505100004 + ], + [ + -121.07603006199992, + 37.06647047600018 + ], + [ + -120.94505930999992, + 37.03586959300003 + ], + [ + -120.79398727599994, + 36.86952015400004 + ], + [ + -120.77217036199994, + 36.784271993 + ], + [ + -120.714661617, + 36.74631643000009 + ], + [ + -120.68577400399988, + 36.65386945000017 + ], + [ + -120.42727690199996, + 36.476183695000145 + ], + [ + -120.39208724399998, + 36.392675067000084 + ], + [ + -120.26006168099997, + 36.29599690700019 + ], + [ + -120.2630777729999, + 36.239496471000166 + ], + [ + -120.19467156499996, + 36.131527606000134 + ], + [ + -119.95674310899989, + 36.00067600600016 + ], + [ + -119.89590109499989, + 35.877449828000124 + ], + [ + -119.88348264899992, + 35.76102365100007 + ], + [ + -119.98521081399997, + 35.75082978600017 + ], + [ + -120.09546086199998, + 35.651702280999984 + ], + [ + -119.77298706899995, + 35.38940117000004 + ], + [ + -119.65316714599993, + 35.35452965700017 + ], + [ + -119.49014833999996, + 35.33581725300019 + ], + [ + -119.34108514699989, + 35.28615600100005 + ], + [ + -119.30945214099995, + 35.24263919800006 + ], + [ + -119.46396795699997, + 35.21836542799997 + ], + [ + -119.47669363299991, + 35.13009747300009 + ], + [ + -119.41131071899991, + 35.11328925500004 + ], + [ + -119.39365141099995, + 35.03540701600008 + ], + [ + -119.26128074999991, + 34.978855805000194 + ], + [ + -119.02076342599997, + 35.033153676000154 + ], + [ + -118.97261809899999, + 34.93258836100006 + ], + [ + -118.85522611799996, + 34.933945133 + ], + [ + -118.75041900699989, + 35.020655457000146 + ], + [ + -118.72966639099985, + 35.081663224000124 + ], + [ + -118.79443095899995, + 35.15681718100018 + ], + [ + -118.70952089699995, + 35.214698587999976 + ], + [ + -118.66609903599988, + 35.30165629700002 + ], + [ + -118.82266864699989, + 35.45826190000008 + ], + [ + -118.8453604689999, + 35.5582185130001 + ], + [ + -118.91900661399995, + 35.72689634000017 + ], + [ + -118.91632863799998, + 35.88650726600014 + ], + [ + -118.97348932699992, + 36.03187426300019 + ], + [ + -118.92250773099994, + 36.06060694900009 + ], + [ + -118.96638432999987, + 36.16519499100002 + ], + [ + -119.09179288399997, + 36.27432812500018 + ], + [ + -119.05500837699992, + 36.36535459900017 + ], + [ + -119.130104771, + 36.4967572270001 + ], + [ + -119.23649875899991, + 36.52450137400018 + ], + [ + -119.23654854599994, + 36.60307823900007 + ], + [ + -119.30639297, + 36.69868531100019 + ], + [ + -119.51852828899996, + 36.85582234200018 + ], + [ + -119.695752546, + 36.9002184470001 + ], + [ + -119.74054837699993, + 37.01287028600012 + ], + [ + -119.87621478299997, + 37.02121858400005 + ], + [ + -120.05318099899989, + 37.18641392900008 + ], + [ + -120.15688505499998, + 37.25124365900007 + ], + [ + -120.23565695299988, + 37.36592023700007 + ], + [ + -120.30241049999995, + 37.38853759000011 + ], + [ + -120.32477073899997, + 37.5241700680001 + ], + [ + -120.55002189199996, + 37.70385932900018 + ], + [ + -120.61295776299994, + 37.675398373 + ], + [ + -120.71864390599995, + 37.71181882200017 + ], + [ + -120.84047195599993, + 37.86133433100014 + ], + [ + -120.980982929, + 37.96846467800003 + ], + [ + -120.99442972199995, + 38.1339082180001 + ], + [ + -121.05749021799988, + 38.19553318200013 + ], + [ + -121.05217442299988, + 38.297985638000114 + ], + [ + -121.10217381799998, + 38.31374525900014 + ], + [ + -121.11989481499995, + 38.4075302710001 + ], + [ + -121.1821728459999, + 38.48363526500003 + ], + [ + -121.14046012999995, + 38.656562849000125 + ], + [ + -121.29554729699998, + 38.776700225000184 + ], + [ + -121.26270048399994, + 38.900378372000034 + ], + [ + -121.51964880599996, + 39.40181486400013 + ], + [ + -121.51047065499995, + 39.50717022800018 + ], + [ + -121.60894484599999, + 39.58190398400018 + ], + [ + -121.58137333599996, + 39.62225176600009 + ], + [ + -121.75226277799999, + 39.664896247 + ], + [ + -121.9492135459999, + 40.01508898900005 + ], + [ + -122.12556852899996, + 40.19312061800014 + ] + ] + ], + [ + [ + [ + -122.81189750599998, + 45.9682361940001 + ], + [ + -122.87884422099995, + 45.93494878100006 + ], + [ + -122.90451351499996, + 45.77204279200009 + ], + [ + -122.87720298199997, + 45.66366407800018 + ], + [ + -123.16420977999996, + 45.733865241000046 + ], + [ + -123.28277757499995, + 45.63404763800003 + ], + [ + -123.32198173399996, + 45.40876547800008 + ], + [ + -123.39804872399998, + 45.367709215000104 + ], + [ + -123.35060990499983, + 45.22188610000012 + ], + [ + -123.5187395019999, + 45.18484799200013 + ], + [ + -123.66010511099995, + 45.03860395300012 + ], + [ + -123.52231825799998, + 45.02811519900001 + ], + [ + -123.41491115799994, + 44.95621168100007 + ], + [ + -123.47799038999995, + 44.67445706800004 + ], + [ + -123.49403610199994, + 44.54016466000013 + ], + [ + -123.42477769399989, + 44.41745081200003 + ], + [ + -123.41222578599996, + 44.23359564100008 + ], + [ + -123.50508860599996, + 44.10396360400017 + ], + [ + -123.46526635899988, + 44.025586359000044 + ], + [ + -123.3290893329999, + 43.93701800700006 + ], + [ + -123.39120184899997, + 43.886117151000064 + ], + [ + -123.40485868499997, + 43.785479661000124 + ], + [ + -123.29296719899997, + 43.667588162000186 + ], + [ + -123.12416885599987, + 43.605579323000086 + ], + [ + -122.95635990099998, + 43.77378943700012 + ], + [ + -123.00171184399989, + 43.868563359 + ], + [ + -122.889612237, + 43.92016426600014 + ], + [ + -122.76516473299995, + 43.85488757000013 + ], + [ + -122.65769747399997, + 43.911872582000115 + ], + [ + -122.76274924499995, + 44.01087818800016 + ], + [ + -122.77179456799996, + 44.08819040500009 + ], + [ + -122.91992966599997, + 44.187081623000154 + ], + [ + -122.91799083599994, + 44.30009253900016 + ], + [ + -122.72400442299988, + 44.32768009900013 + ], + [ + -122.65124496599998, + 44.38139139200001 + ], + [ + -122.72690104799995, + 44.551557210000055 + ], + [ + -122.70187641099989, + 44.6721078330001 + ], + [ + -122.61103807699993, + 44.712616193000144 + ], + [ + -122.5818107849999, + 44.80238846900011 + ], + [ + -122.7202956299999, + 44.87102092300012 + ], + [ + -122.70265312399994, + 45.006656988000145 + ], + [ + -122.50603847699995, + 45.08234241100007 + ], + [ + -122.37519456099989, + 45.17798915200018 + ], + [ + -122.34757873599995, + 45.283334872000125 + ], + [ + -122.2601798579999, + 45.45277888099997 + ], + [ + -122.3102737719999, + 45.539158388000146 + ], + [ + -122.2003178029999, + 45.564230090000194 + ], + [ + -122.19218684099997, + 45.62173827200007 + ], + [ + -122.35437695899998, + 45.63520069700013 + ], + [ + -122.45481130799988, + 45.69771913400007 + ], + [ + -122.46387055399998, + 45.81655309700005 + ], + [ + -122.59983295799998, + 45.9538841640001 + ], + [ + -122.74687676199994, + 45.93941276800018 + ], + [ + -122.81189750599998, + 45.9682361940001 + ] + ] + ], + [ + [ + [ + -116.30569732499993, + 46.47131316300016 + ], + [ + -116.35873789699997, + 46.425281455000174 + ], + [ + -116.31615200499988, + 46.35572195000009 + ], + [ + -116.51907373999984, + 46.29077802500018 + ], + [ + -116.52158398499995, + 46.18787352000015 + ], + [ + -116.62482584799983, + 46.138526374000094 + ], + [ + -116.53989016099985, + 46.01249631700017 + ], + [ + -116.43601156999995, + 46.01108353600006 + ], + [ + -116.41875595099998, + 45.953681310000036 + ], + [ + -116.26913966199993, + 45.861724277000064 + ], + [ + -116.07748498499996, + 45.91591391700001 + ], + [ + -115.9671932579999, + 45.99941609700005 + ], + [ + -116.06023022499994, + 46.081585354000026 + ], + [ + -116.00688293399998, + 46.132425720000185 + ], + [ + -116.1256466989999, + 46.20378426200017 + ], + [ + -116.12839268999988, + 46.271710531999986 + ], + [ + -116.244163314, + 46.438583729000186 + ], + [ + -116.30569732499993, + 46.47131316300016 + ] + ] + ], + [ + [ + [ + -113.44961941499992, + 46.30621453000009 + ], + [ + -113.55806560099995, + 46.183461925000074 + ], + [ + -113.42439815699998, + 46.14107671300019 + ], + [ + -113.31786089899992, + 46.245553278000045 + ], + [ + -113.44961941499992, + 46.30621453000009 + ] + ] + ], + [ + [ + [ + -119.57241898499996, + 49.36586907499998 + ], + [ + -119.75508961699995, + 49.370077386000105 + ], + [ + -119.6595343699999, + 49.25762157400004 + ], + [ + -119.61919594299997, + 49.15778192200003 + ], + [ + -119.62605289299995, + 49.03836092500018 + ], + [ + -119.50000542599997, + 48.914399446000175 + ], + [ + -119.60907429199995, + 48.83716651300006 + ], + [ + -119.52033334299989, + 48.65086087500009 + ], + [ + -119.56332200599991, + 48.51975279400011 + ], + [ + -119.68485725, + 48.51234778700018 + ], + [ + -119.63683117799991, + 48.43420967200012 + ], + [ + -119.65196624099997, + 48.36239086800009 + ], + [ + -119.79205266299994, + 48.30792536500013 + ], + [ + -119.770968, + 48.22477792800004 + ], + [ + -119.89789062499995, + 48.15830990200004 + ], + [ + -120.05732608199992, + 48.21536459800012 + ], + [ + -119.98121358999998, + 48.32667695200007 + ], + [ + -119.99790137899998, + 48.41514703500019 + ], + [ + -120.08789933699995, + 48.46357243099999 + ], + [ + -120.16621059, + 48.565740135000055 + ], + [ + -120.30624555599991, + 48.530428186 + ], + [ + -120.25963030299994, + 48.46253016400004 + ], + [ + -120.249801973, + 48.28056909000003 + ], + [ + -120.16040432799991, + 48.25680565700014 + ], + [ + -120.02590337899989, + 48.09474976400014 + ], + [ + -119.88407299099993, + 47.956904317000124 + ], + [ + -119.97192037199994, + 47.8896460790001 + ], + [ + -120.18381666699997, + 47.94953329900005 + ], + [ + -120.14072049599991, + 47.804069637000055 + ], + [ + -120.23456519699994, + 47.759223144000146 + ], + [ + -120.27289477999994, + 47.599121739000054 + ], + [ + -120.37052819299998, + 47.53999749300016 + ], + [ + -120.50334751199983, + 47.518068327000094 + ], + [ + -120.41610282499994, + 47.44143879200004 + ], + [ + -120.36063416699983, + 47.334891264000134 + ], + [ + -120.25631119499997, + 47.28850647900015 + ], + [ + -120.21980510599997, + 47.19080707500012 + ], + [ + -120.23817865299998, + 47.10788127899997 + ], + [ + -120.51032137099997, + 47.171584721000045 + ], + [ + -120.64416739399991, + 47.18197602300006 + ], + [ + -120.79241257499996, + 47.15363091900008 + ], + [ + -120.74709011299996, + 46.928721785000164 + ], + [ + -120.79984095999998, + 46.880278824000015 + ], + [ + -120.74629809299995, + 46.80619288300005 + ], + [ + -120.9074056469999, + 46.76331061999997 + ], + [ + -120.95694112599989, + 46.65159857700007 + ], + [ + -120.87688181899989, + 46.60468697600004 + ], + [ + -120.934758193, + 46.55363796300014 + ], + [ + -120.905354209, + 46.48528955000006 + ], + [ + -120.97999295399995, + 46.433585105000134 + ], + [ + -120.86446147799995, + 46.321892966000064 + ], + [ + -120.88647485099995, + 46.29677226299998 + ], + [ + -120.74667719599995, + 46.14384481600018 + ], + [ + -120.6205725989999, + 46.03950116900006 + ], + [ + -120.48302669199995, + 46.01409597100019 + ], + [ + -120.38409687699993, + 46.02839091700008 + ], + [ + -120.41440717699999, + 45.83910909100007 + ], + [ + -120.50465328799987, + 45.85196776900017 + ], + [ + -120.57157233799995, + 45.793649332000086 + ], + [ + -120.67175793899997, + 45.842219756000134 + ], + [ + -120.82692542299998, + 45.84201096100003 + ], + [ + -120.89994334299996, + 45.88934818700005 + ], + [ + -121.0532533889999, + 45.812240724 + ], + [ + -121.09193686699996, + 45.718645383000194 + ], + [ + -121.2016216109999, + 45.697359479000056 + ], + [ + -121.28187006199994, + 45.61471613300006 + ], + [ + -121.19525145799997, + 45.560587751000185 + ], + [ + -121.14552520899991, + 45.45318435200005 + ], + [ + -121.32412497899998, + 45.21564466300015 + ], + [ + -121.37045691699996, + 45.10278686500004 + ], + [ + -121.27054909299989, + 45.07796015100007 + ], + [ + -120.97884080999995, + 44.91376094599997 + ], + [ + -121.06821176299997, + 44.80970050999997 + ], + [ + -120.9630542679999, + 44.80117086900009 + ], + [ + -120.92695535899992, + 44.865512659 + ], + [ + -120.83469281999999, + 44.88426075800004 + ], + [ + -120.64138478599989, + 44.965999298000156 + ], + [ + -120.54875472099991, + 44.96900802900012 + ], + [ + -120.4813662819999, + 45.06700821100003 + ], + [ + -120.28702279199996, + 45.033071001999986 + ], + [ + -120.07752557799995, + 45.02261444600009 + ], + [ + -119.85250005499995, + 45.05400027500019 + ], + [ + -119.52382125199983, + 45.131533996000144 + ], + [ + -119.39701566199994, + 45.229580722000094 + ], + [ + -119.30649675199993, + 45.258069626000065 + ], + [ + -119.10962062699997, + 45.223572669000134 + ], + [ + -118.94522257799997, + 45.292694220000044 + ], + [ + -118.92260259999995, + 45.329078573000174 + ], + [ + -118.61444419999992, + 45.37199327299999 + ], + [ + -118.56159412099998, + 45.480085891000044 + ], + [ + -118.59946707599983, + 45.59019640800011 + ], + [ + -118.42945074199991, + 45.646977743000036 + ], + [ + -118.35033973799995, + 45.810718241000075 + ], + [ + -118.18270126399989, + 45.83838162100011 + ], + [ + -118.15397496599985, + 45.892888524000114 + ], + [ + -118.15238609199992, + 46.080965452999976 + ], + [ + -118.04522865399991, + 46.11110557400008 + ], + [ + -117.96084687799993, + 46.21021443600017 + ], + [ + -117.82009644699997, + 46.23593898200005 + ], + [ + -117.79369778699987, + 46.309991761000106 + ], + [ + -117.61805242999998, + 46.310508399000184 + ], + [ + -117.49107076399991, + 46.27522586300017 + ], + [ + -117.25363435299994, + 46.17297704200007 + ], + [ + -117.10861051199993, + 46.08350572400013 + ], + [ + -116.98723883499997, + 46.121089117 + ], + [ + -116.95456317499998, + 46.174565143999985 + ], + [ + -116.74281400899997, + 46.23224236900012 + ], + [ + -116.72055771299995, + 46.30152979100018 + ], + [ + -116.62537860899982, + 46.37892005100008 + ], + [ + -116.83270438099993, + 46.62292627000011 + ], + [ + -116.88805945799999, + 46.64079681300018 + ], + [ + -116.93409793199999, + 46.746280463000176 + ], + [ + -117.0270495609999, + 46.80195180900017 + ], + [ + -117.00288493599999, + 46.87444722600014 + ], + [ + -116.86089321099985, + 46.91231004400015 + ], + [ + -116.88384052799995, + 47.033667444000116 + ], + [ + -116.96693146699988, + 47.011862513000096 + ], + [ + -117.0182578919999, + 47.12396083600004 + ], + [ + -116.94729330699994, + 47.14310011400016 + ], + [ + -116.853913004, + 47.05355240100005 + ], + [ + -116.77534508199989, + 47.110427770000115 + ], + [ + -116.8720258009999, + 47.18518012700014 + ], + [ + -116.87002636299997, + 47.245307056000115 + ], + [ + -116.94811956099983, + 47.31205879500004 + ], + [ + -117.0289076009999, + 47.48186026400015 + ], + [ + -117.1067180249999, + 47.53973945800004 + ], + [ + -117.28213251499989, + 47.50785243000013 + ], + [ + -117.36604297099996, + 47.53970865000019 + ], + [ + -117.55504583299995, + 47.76105538200005 + ], + [ + -117.69156180399995, + 47.866497355000035 + ], + [ + -118.05458629799995, + 47.817473323000115 + ], + [ + -118.22112280399995, + 47.951729248000106 + ], + [ + -118.34452216199992, + 47.91070179500019 + ], + [ + -118.39039971299997, + 47.849752157000125 + ], + [ + -118.66514243699993, + 47.95099791000018 + ], + [ + -118.78835084999992, + 47.932133011000076 + ], + [ + -118.86983694599996, + 48.01765896300009 + ], + [ + -118.83365701899993, + 48.219675706000146 + ], + [ + -118.99073456599996, + 48.179614408000134 + ], + [ + -119.15609466599989, + 48.164556296000114 + ], + [ + -119.28118280999996, + 48.127407162000054 + ], + [ + -119.29802981599988, + 48.22998681300015 + ], + [ + -119.42572058199994, + 48.34529056800005 + ], + [ + -119.36826364599989, + 48.39376242700007 + ], + [ + -119.49165565799996, + 48.506749461000084 + ], + [ + -119.337240926, + 48.49540891400011 + ], + [ + -119.28279240899991, + 48.634187515000065 + ], + [ + -119.2179697339999, + 48.66979851399998 + ], + [ + -119.34793688699989, + 48.786463646000186 + ], + [ + -119.40686915099997, + 48.88356413600002 + ], + [ + -119.32801259399997, + 48.94529809900013 + ], + [ + -119.35556709199989, + 49.155161023000176 + ], + [ + -119.457589236, + 49.209332744000164 + ], + [ + -119.44671722699991, + 49.28257393400014 + ], + [ + -119.57241898499996, + 49.36586907499998 + ] + ] + ], + [ + [ + [ + -80.64003926099991, + 28.667559938000124 + ], + [ + -80.57240649599993, + 28.558323715000085 + ], + [ + -80.60345742399994, + 28.410550786000044 + ], + [ + -80.52673921999997, + 28.451714435000042 + ], + [ + -80.57490287499996, + 28.585187193000024 + ], + [ + -80.64003926099991, + 28.667559938000124 + ] + ] + ], + [ + [ + [ + -81.40354865999996, + 30.952424094000094 + ], + [ + -81.50530323099991, + 30.877487709000093 + ], + [ + -81.43083957099998, + 30.83116042800009 + ], + [ + -81.40354865999996, + 30.952424094000094 + ] + ] + ], + [ + [ + [ + -81.33650319999998, + 31.309260542 + ], + [ + -81.38391230499997, + 31.314087814000118 + ], + [ + -81.40894866799988, + 31.135715045000097 + ], + [ + -81.29077590999992, + 31.216487795000035 + ], + [ + -81.33650319999998, + 31.309260542 + ] + ] + ], + [ + [ + [ + -81.12273952399983, + 31.85113339900016 + ], + [ + -81.1757122649999, + 31.816769754000063 + ], + [ + -81.13063951999993, + 31.72269700600009 + ], + [ + -81.03687585999995, + 31.812724302000163 + ], + [ + -81.12273952399983, + 31.85113339900016 + ] + ] + ], + [ + [ + [ + -80.72023942399994, + 32.26931532500009 + ], + [ + -80.78433943999994, + 32.22139713000007 + ], + [ + -80.72145760099994, + 32.16044257300018 + ], + [ + -80.66895758899994, + 32.22379713400005 + ], + [ + -80.72023942399994, + 32.26931532500009 + ] + ] + ], + [ + [ + [ + -80.65571214199997, + 32.49909719699997 + ], + [ + -80.67226668599994, + 32.367669895000176 + ], + [ + -80.64639394699998, + 32.26450623500011 + ], + [ + -80.5594121069999, + 32.353915350000136 + ], + [ + -80.45820298899991, + 32.40828809300007 + ], + [ + -80.65571214199997, + 32.49909719699997 + ] + ] + ], + [ + [ + [ + -80.73036671199998, + 32.53440629400018 + ], + [ + -80.80941218599997, + 32.47766991500009 + ], + [ + -80.75943943999994, + 32.36665171000004 + ], + [ + -80.67707577899995, + 32.380642625000064 + ], + [ + -80.68839396999994, + 32.49935174199999 + ], + [ + -80.73036671199998, + 32.53440629400018 + ] + ] + ], + [ + [ + [ + -69.28302762499999, + -52.59969226399994 + ], + [ + -69.39411952499995, + -52.466445819999876 + ], + [ + -69.55979957599993, + -52.509415813999965 + ], + [ + -69.61596654199991, + -52.56097172699998 + ], + [ + -69.58637959699996, + -52.62997004599998 + ], + [ + -69.69393148499995, + -52.74709540799995 + ], + [ + -69.90105451499988, + -52.838211221999984 + ], + [ + -70.03049456999997, + -52.82458392399997 + ], + [ + -70.13375056499984, + -52.73108815199987 + ], + [ + -70.34701551799992, + -52.74324928799996 + ], + [ + -70.26989748299991, + -52.866275677999965 + ], + [ + -70.09574852399993, + -52.92813294999985 + ], + [ + -70.14414261599984, + -53.01469386999992 + ], + [ + -70.02061448499995, + -53.08180324199998 + ], + [ + -69.88745856499992, + -53.20029368099989 + ], + [ + -69.75115155299989, + -53.36764022199998 + ], + [ + -69.58958450199992, + -53.34334074999998 + ], + [ + -69.3787915389999, + -53.351474045999964 + ], + [ + -69.31545251399984, + -53.48200391499989 + ], + [ + -69.45397955799996, + -53.54572230499991 + ], + [ + -69.34700048899987, + -53.685061219999966 + ], + [ + -69.14149449599995, + -53.791398736999895 + ], + [ + -68.92816952699997, + -53.86233444899989 + ], + [ + -68.76696055099995, + -53.946393370999886 + ], + [ + -68.59477262299998, + -54.00014735399998 + ], + [ + -68.14168549299995, + -54.05389379299987 + ], + [ + -68.04579149199992, + -54.080585293999945 + ], + [ + -67.83434256099991, + -54.01846583599996 + ], + [ + -67.66938754499995, + -53.94104102199998 + ], + [ + -67.53593457099998, + -53.932758863999936 + ], + [ + -67.55749550799987, + -53.838773756999956 + ], + [ + -67.79193163999992, + -53.72330817899996 + ], + [ + -68.0219345839999, + -53.54750027399996 + ], + [ + -68.0672075899999, + -53.40203519499994 + ], + [ + -68.13198863699995, + -53.32340422599998 + ], + [ + -68.44380951699986, + -53.29594175799991 + ], + [ + -68.52021760599985, + -53.257236810999984 + ], + [ + -68.52681751599994, + -53.1453306919999 + ], + [ + -68.37446552899996, + -53.028766246999965 + ], + [ + -68.25185354099995, + -52.99937359499995 + ], + [ + -68.58948548599994, + -52.68766117699994 + ], + [ + -68.77886955899999, + -52.539048188999914 + ], + [ + -68.81185150999988, + -52.60887061599988 + ], + [ + -69.12790659199993, + -52.70261449199995 + ], + [ + -69.28302762499999, + -52.59969226399994 + ] + ] + ], + [ + [ + [ + -72.94795259799997, + -52.26081091299994 + ], + [ + -73.20076756199995, + -52.24491463399983 + ], + [ + -73.4055406409999, + -52.26847817499993 + ], + [ + -73.47612749799998, + -52.32322792799988 + ], + [ + -73.47708152599995, + -52.39475154699994 + ], + [ + -73.32053355899995, + -52.41773874799986 + ], + [ + -73.27072158399983, + -52.382441212999936 + ], + [ + -73.10660559699988, + -52.379686248999974 + ], + [ + -72.99289652999994, + -52.342835546999936 + ], + [ + -72.94795259799997, + -52.26081091299994 + ] + ] + ], + [ + [ + [ + -72.34172859999995, + -52.34002040099989 + ], + [ + -72.25017558599984, + -52.39460234899991 + ], + [ + -72.17231759599997, + -52.35126271199994 + ], + [ + -72.02760353499997, + -52.336572253999975 + ], + [ + -72.15007755699997, + -52.18652964899991 + ], + [ + -72.24706254699993, + -52.20136192899997 + ], + [ + -72.36286155699997, + -52.278492201999825 + ], + [ + -72.34172859999995, + -52.34002040099989 + ] + ] + ], + [ + [ + [ + -60.850910638999835, + -51.80790248599993 + ], + [ + -61.02174354899995, + -51.78298409299998 + ], + [ + -61.136630606999915, + -51.83456012299996 + ], + [ + -61.098407619999875, + -51.93035689499993 + ], + [ + -60.99588755699989, + -51.98826880499996 + ], + [ + -60.880783573999906, + -51.923688754999944 + ], + [ + -60.850910638999835, + -51.80790248599993 + ] + ] + ], + [ + [ + [ + -59.28710952299991, + -51.38255224799997 + ], + [ + -59.40530357799997, + -51.34372978699997 + ], + [ + -59.44653348899993, + -51.46044678299995 + ], + [ + -59.58679960999996, + -51.43880940199995 + ], + [ + -59.73131552299998, + -51.462834786999906 + ], + [ + -59.88934758999994, + -51.38611137099997 + ], + [ + -60.069248545999926, + -51.424851186999945 + ], + [ + -60.082538555999975, + -51.48821418399996 + ], + [ + -60.242088585999966, + -51.495961241999964 + ], + [ + -60.52927052699988, + -51.370605017999935 + ], + [ + -60.5945476149999, + -51.439194298999894 + ], + [ + -60.41361249999994, + -51.45961060399992 + ], + [ + -60.50875850099993, + -51.530015740999886 + ], + [ + -60.225524604999976, + -51.61448219099998 + ], + [ + -60.28418350999982, + -51.68468951499989 + ], + [ + -60.3854295239999, + -51.67741117299988 + ], + [ + -60.63397558499992, + -51.731405381999934 + ], + [ + -60.53453855299995, + -51.77990625899997 + ], + [ + -60.43528759899988, + -51.77549620399992 + ], + [ + -60.373378526999886, + -51.719213064999906 + ], + [ + -60.2807345249999, + -51.75803569399994 + ], + [ + -60.56435348499991, + -51.98818481799992 + ], + [ + -60.692314636999924, + -51.96536458399987 + ], + [ + -60.734878611999875, + -52.016452450999964 + ], + [ + -60.94139847999992, + -52.04664205499995 + ], + [ + -60.833755564999876, + -52.128506426999934 + ], + [ + -60.71351649299993, + -52.11472003999984 + ], + [ + -60.68609660599998, + -52.21287816099988 + ], + [ + -60.613037590999966, + -52.25838099899988 + ], + [ + -60.462207589999934, + -52.17483722899988 + ], + [ + -60.36188157299995, + -52.17402116699998 + ], + [ + -60.25721758599991, + -52.09058770299998 + ], + [ + -60.26738751699992, + -51.99650083899991 + ], + [ + -59.987594559999934, + -52.005377274999944 + ], + [ + -59.854206628999975, + -51.96409858099992 + ], + [ + -59.744461531999946, + -51.820446003999905 + ], + [ + -59.62722351699995, + -51.75851681499995 + ], + [ + -59.53398557299994, + -51.635002430999975 + ], + [ + -59.43489052299998, + -51.63754667399991 + ], + [ + -59.27423860799996, + -51.47902409799997 + ], + [ + -59.28710952299991, + -51.38255224799997 + ] + ] + ], + [ + [ + [ + -58.766136521999954, + -51.318766299999936 + ], + [ + -58.940730558999974, + -51.282483722999984 + ], + [ + -58.86942654699993, + -51.390617481999925 + ], + [ + -59.00095352799997, + -51.3913805709999 + ], + [ + -59.02795448799998, + -51.492101207999895 + ], + [ + -59.16030457099998, + -51.59701078399996 + ], + [ + -59.011615475999974, + -51.669625055999916 + ], + [ + -59.04010757699996, + -51.705498930999966 + ], + [ + -59.20769451099983, + -51.72048711499991 + ], + [ + -59.302543623999895, + -51.76132776999992 + ], + [ + -59.385425558999884, + -51.845230285999946 + ], + [ + -59.5027995289999, + -51.84483717499995 + ], + [ + -59.59081252999988, + -51.904278278999925 + ], + [ + -59.58235954799994, + -52.07857140599998 + ], + [ + -59.64233357399996, + -52.160707183999875 + ], + [ + -59.58008553799988, + -52.25993701599987 + ], + [ + -59.420413634999875, + -52.23741836199997 + ], + [ + -59.30429862699998, + -52.17367030099996 + ], + [ + -59.04085960099991, + -52.24388868899996 + ], + [ + -59.13272056599993, + -51.99359801899993 + ], + [ + -58.97895052899992, + -52.08985981799998 + ], + [ + -58.634159599999975, + -52.04394894899997 + ], + [ + -58.633178581999914, + -51.90631943999995 + ], + [ + -58.38478054599989, + -51.90124218599988 + ], + [ + -58.237533473999974, + -51.84564921299989 + ], + [ + -58.225921519999986, + -51.79332652399995 + ], + [ + -57.8190454999999, + -51.72331818599997 + ], + [ + -57.77691654599988, + -51.62365350199997 + ], + [ + -58.14336362999995, + -51.559496234999926 + ], + [ + -57.991966508999894, + -51.505456261999825 + ], + [ + -57.81890853899995, + -51.55163820099989 + ], + [ + -57.850532621999946, + -51.416244983999945 + ], + [ + -57.93923562099991, + -51.36579112299995 + ], + [ + -58.267456532999915, + -51.397460635999835 + ], + [ + -58.413536508999925, + -51.32188621199998 + ], + [ + -58.526134637999974, + -51.30238202599992 + ], + [ + -58.63043552099998, + -51.332846555999936 + ], + [ + -58.766136521999954, + -51.318766299999936 + ] + ] + ], + [ + [ + [ + -73.25422650199988, + -51.46943788199991 + ], + [ + -73.12992857699999, + -51.43834320099995 + ], + [ + -73.14064064999991, + -51.365049995999925 + ], + [ + -73.39566759799993, + -51.38075634099988 + ], + [ + -73.37014051199992, + -51.45909561999997 + ], + [ + -73.25422650199988, + -51.46943788199991 + ] + ] + ], + [ + [ + [ + -72.88278162399996, + -46.1132553999999 + ], + [ + -72.79226662499991, + -46.02506721799995 + ], + [ + -72.61136654699993, + -46.06722332899989 + ], + [ + -72.5423206189999, + -46.003826971999956 + ], + [ + -72.56677264199988, + -45.94226071999998 + ], + [ + -72.82234156399983, + -45.89431371899997 + ], + [ + -72.96504262799988, + -45.78202052399996 + ], + [ + -73.11077156999988, + -45.796833693999986 + ], + [ + -73.06642157899995, + -45.90989668299994 + ], + [ + -73.08593749999983, + -46.04274012499991 + ], + [ + -73.16848751099997, + -46.09384224199994 + ], + [ + -73.24351459699989, + -46.21683258999991 + ], + [ + -73.40476950599998, + -46.31473288399985 + ], + [ + -73.46653759499992, + -46.436487402999944 + ], + [ + -73.2362055779999, + -46.386907272999906 + ], + [ + -73.19580849199991, + -46.413274392999824 + ], + [ + -73.24156161399986, + -46.78842910099985 + ], + [ + -73.23768649199997, + -46.971325916999945 + ], + [ + -73.28364564099996, + -47.2558154219999 + ], + [ + -73.3785475599999, + -47.40449831499984 + ], + [ + -73.53981051599993, + -47.391093303999924 + ], + [ + -73.63288149299996, + -47.44269179799994 + ], + [ + -73.57906363899997, + -47.58460663899996 + ], + [ + -73.62141454599993, + -47.70433156399997 + ], + [ + -73.5270006209999, + -47.72259656999984 + ], + [ + -73.26503764799992, + -47.58205870799998 + ], + [ + -73.32550050699996, + -47.51844827699989 + ], + [ + -73.18083958699992, + -47.383296289999976 + ], + [ + -72.97752361699997, + -47.30031863399984 + ], + [ + -72.90600553099995, + -47.242060383999956 + ], + [ + -72.90387753299996, + -47.14770278499992 + ], + [ + -73.04780553999996, + -47.11407274499993 + ], + [ + -73.11330458099997, + -47.03656830399984 + ], + [ + -73.05575560699992, + -46.759085734999985 + ], + [ + -73.12194062399988, + -46.62878318199995 + ], + [ + -73.07948259599988, + -46.51535692099992 + ], + [ + -72.95992262599998, + -46.34732608199994 + ], + [ + -72.8283465269999, + -46.314153190999946 + ], + [ + -72.56066156399999, + -46.29115794299997 + ], + [ + -72.6343155269999, + -46.21269779699992 + ], + [ + -72.79666863299997, + -46.18930172599988 + ], + [ + -72.88278162399996, + -46.1132553999999 + ] + ] + ], + [ + [ + [ + -70.27447551099988, + -36.60975080899988 + ], + [ + -70.29996454299999, + -36.70462355999996 + ], + [ + -70.38996858099995, + -36.729171303999976 + ], + [ + -70.38179052599997, + -36.941904844999954 + ], + [ + -70.47179456399994, + -36.941904844999954 + ], + [ + -70.46360762399996, + -37.081001019999974 + ], + [ + -70.50452455499993, + -37.25282634699988 + ], + [ + -70.60270664799992, + -37.277370067999925 + ], + [ + -70.63053154899995, + -37.002453533999926 + ], + [ + -70.56507156799995, + -36.85190265099982 + ], + [ + -70.6043474899999, + -36.72753415099987 + ], + [ + -70.5323405709999, + -36.675171227999954 + ], + [ + -70.55197853199996, + -36.583528359999946 + ], + [ + -70.63706960199983, + -36.590075129999946 + ], + [ + -70.70907551399989, + -36.675171227999954 + ], + [ + -70.78762853199999, + -36.62935038099994 + ], + [ + -70.83999648299994, + -36.70135076199989 + ], + [ + -70.96436364199997, + -36.94354065699997 + ], + [ + -70.83999648299994, + -37.07445508899991 + ], + [ + -70.90544858599998, + -37.2970075259999 + ], + [ + -71.06255361499996, + -37.36246616699998 + ], + [ + -70.87271859499992, + -37.40173756199988 + ], + [ + -70.93817857699992, + -37.55228961899991 + ], + [ + -70.91199451699998, + -37.68975014899996 + ], + [ + -70.85308851299988, + -37.715933538999934 + ], + [ + -70.91199451699998, + -37.82720933799993 + ], + [ + -70.91199451699998, + -38.0235788899999 + ], + [ + -70.83999648299994, + -38.206856578999975 + ], + [ + -70.78762853199999, + -38.43595561799992 + ], + [ + -70.74835160399994, + -38.49486866299998 + ], + [ + -70.75489854099993, + -38.5799624149999 + ], + [ + -70.63706960199983, + -38.75015259999998 + ], + [ + -70.63706960199983, + -39.005435698999975 + ], + [ + -70.57489063199995, + -39.19853278799991 + ], + [ + -70.6468884979999, + -39.30326315899998 + ], + [ + -70.82363148799993, + -39.453815886999905 + ], + [ + -70.93490561099992, + -39.48654135199985 + ], + [ + -70.96763660799996, + -39.552000662999944 + ], + [ + -71.15091664399995, + -39.64364034499994 + ], + [ + -71.22292356299994, + -39.78764714199997 + ], + [ + -71.22946949399994, + -40.02983904899992 + ], + [ + -71.07237251199996, + -40.21966367499988 + ], + [ + -71.15091664399995, + -40.625500004999935 + ], + [ + -71.14109757999995, + -41.054245248999905 + ], + [ + -71.24583448899995, + -41.17861425199982 + ], + [ + -71.15418960999995, + -41.302984092999964 + ], + [ + -71.00363956399991, + -41.610632126999974 + ], + [ + -70.94472450799992, + -41.695726548999914 + ], + [ + -71.14764351099996, + -41.78736975199996 + ], + [ + -71.22619652799995, + -42.140836788999934 + ], + [ + -71.29820260899993, + -42.232480326999905 + ], + [ + -71.38329350999999, + -42.22593422799997 + ], + [ + -71.40293163899997, + -42.369942197999876 + ], + [ + -71.4484866119999, + -42.44152080099997 + ], + [ + -71.29165650999983, + -42.46812747699988 + ], + [ + -71.23274262699994, + -42.38303003699991 + ], + [ + -71.15418960999995, + -42.38303003699991 + ], + [ + -71.17382857599995, + -42.54667613499987 + ], + [ + -71.33093259899994, + -42.62522362099992 + ], + [ + -71.1181864859999, + -42.674318438999876 + ], + [ + -71.19019357199988, + -42.76595895999998 + ], + [ + -71.19673950299989, + -42.89687422999998 + ], + [ + -71.27529151499988, + -42.89687422999998 + ], + [ + -71.32765963399987, + -42.78559675399998 + ], + [ + -71.44548052699986, + -42.92960388499989 + ], + [ + -71.32765963399987, + -43.027790336999885 + ], + [ + -71.32111353499994, + -43.12597578399988 + ], + [ + -71.20328560199982, + -43.145613744999935 + ], + [ + -71.0789186099999, + -43.32234801699991 + ], + [ + -71.1050946229999, + -43.59072700199988 + ], + [ + -71.31456760399993, + -43.695458713999926 + ], + [ + -71.30147557399994, + -43.80019143299995 + ], + [ + -71.20328560199982, + -43.89837704699994 + ], + [ + -71.28838354399988, + -44.02929382499991 + ], + [ + -71.24910762199994, + -44.17330129199996 + ], + [ + -71.38656664399997, + -44.23221232499998 + ], + [ + -71.34074361699993, + -44.31076400099994 + ], + [ + -71.22292356299994, + -44.36967419599995 + ], + [ + -71.30147557399994, + -44.487498776999985 + ], + [ + -71.42911553099992, + -44.54968595999998 + ], + [ + -71.18692060599989, + -44.595503622999956 + ], + [ + -71.0821915759999, + -44.66096460999984 + ], + [ + -71.06255361499996, + -44.751929549999886 + ], + [ + -71.31784056999993, + -44.844245651999984 + ], + [ + -71.41602350099998, + -45.047164486999975 + ], + [ + -71.46839162099997, + -44.994799720999936 + ], + [ + -71.6123965729999, + -45.07989464599996 + ], + [ + -71.67131062399989, + -45.28281381599987 + ], + [ + -71.57312048399996, + -45.335181935999856 + ], + [ + -71.56657455199996, + -45.40718382499995 + ], + [ + -71.69766248899987, + -45.422004035999976 + ], + [ + -71.70927460999991, + -45.54333795199989 + ], + [ + -71.58359551599989, + -45.569522178999875 + ], + [ + -71.45791658899998, + -45.66378036799989 + ], + [ + -71.46466049999998, + -45.72734453099997 + ], + [ + -71.62025460699994, + -45.86277379099994 + ], + [ + -71.75777464899994, + -45.877342879999844 + ], + [ + -71.77854148499995, + -46.03951325999998 + ], + [ + -71.94698353999996, + -46.159112456999935 + ], + [ + -72.26559459999993, + -46.27308387699992 + ], + [ + -71.98269665099997, + -46.412725545999876 + ], + [ + -71.85897053899998, + -46.38799440499997 + ], + [ + -71.81842056799996, + -46.518030747999944 + ], + [ + -71.87755556599984, + -46.59744106699998 + ], + [ + -72.35589552499994, + -46.740050767999946 + ], + [ + -72.40692857499994, + -46.85707822899991 + ], + [ + -72.29451753099983, + -46.96231201799998 + ], + [ + -72.18057259799997, + -46.97188297799994 + ], + [ + -71.83382449499993, + -47.0915846019999 + ], + [ + -71.81042456799997, + -47.17101101399987 + ], + [ + -72.17773448499997, + -47.78520418999989 + ], + [ + -72.22189353599993, + -48.0662041409999 + ], + [ + -72.20583364199996, + -48.234807799999885 + ], + [ + -72.15364858299995, + -48.38333797399997 + ], + [ + -72.06533852799998, + -48.45960960499991 + ], + [ + -72.09343751699993, + -48.535881235999966 + ], + [ + -72.31021163799994, + -48.491722016999915 + ], + [ + -72.40253461399988, + -48.56799465399996 + ], + [ + -72.44567861699988, + -48.83885937599996 + ], + [ + -72.44329849099995, + -48.953061465999895 + ], + [ + -72.63243865099997, + -49.23856367299993 + ], + [ + -72.65623453899991, + -49.33611058499997 + ], + [ + -72.76805164199999, + -49.44079468899997 + ], + [ + -72.79660761299982, + -49.58354637899993 + ], + [ + -72.86560056699989, + -49.68823064999992 + ], + [ + -72.91199456799995, + -49.90473638299994 + ], + [ + -72.7882765039999, + -50.35677962999989 + ], + [ + -72.55536654899998, + -50.62180635599998 + ], + [ + -72.41831958199998, + -50.8373815299999 + ], + [ + -72.25653057799985, + -51.19901740199998 + ], + [ + -72.02813762999995, + -51.32273730999998 + ], + [ + -71.99006652299994, + -51.48452111699993 + ], + [ + -71.70456649499994, + -51.60824102599997 + ], + [ + -71.30487057999989, + -51.74147640599995 + ], + [ + -71.24777255299989, + -51.817610740999896 + ], + [ + -71.41906764099997, + -51.83664319399992 + ], + [ + -71.83779952799995, + -51.69389049799986 + ], + [ + -72.09474961999996, + -51.570174444999964 + ], + [ + -72.18911761299995, + -51.638744614999894 + ], + [ + -72.08989750399996, + -51.685624431999884 + ], + [ + -72.08007860799995, + -51.756097797999985 + ], + [ + -71.99351450199987, + -51.82907785499992 + ], + [ + -71.89286058599998, + -51.810622580999905 + ], + [ + -71.67644453899993, + -51.89450514799995 + ], + [ + -71.60940557499998, + -52.11263328199993 + ], + [ + -71.55794555099999, + -52.17052608099988 + ], + [ + -71.36669952099999, + -52.24766171899984 + ], + [ + -70.77498660999998, + -52.53734733299996 + ], + [ + -70.56011149299997, + -52.666934908999906 + ], + [ + -70.55100254299992, + -52.723915924999915 + ], + [ + -70.32417248499985, + -52.63783629399995 + ], + [ + -69.92841354999996, + -52.527265076999925 + ], + [ + -69.85199758299996, + -52.48794925699997 + ], + [ + -69.70076759799997, + -52.54693740399995 + ], + [ + -69.55024755999983, + -52.46725869699998 + ], + [ + -69.44712852499993, + -52.26159679999995 + ], + [ + -69.20446756699994, + -52.194570575999876 + ], + [ + -68.99999958799998, + -52.28052112599994 + ], + [ + -68.72460964399994, + -52.30588577099991 + ], + [ + -68.59252157899988, + -52.34354532699996 + ], + [ + -68.36820257099998, + -52.307571706999965 + ], + [ + -68.62894463599997, + -52.07041531199991 + ], + [ + -68.75740048799997, + -51.92886491599995 + ], + [ + -68.84633650399991, + -51.78677221099997 + ], + [ + -69.00440964199998, + -51.61043926399992 + ], + [ + -69.09169760899982, + -51.65650201299991 + ], + [ + -69.19781451499989, + -51.62622037599988 + ], + [ + -68.9409334899999, + -51.547499049999885 + ], + [ + -69.11328855299996, + -51.172381892999965 + ], + [ + -69.16187257899992, + -50.99059014699992 + ], + [ + -69.12796761299984, + -50.898913583999956 + ], + [ + -69.14242555699997, + -50.737809213999924 + ], + [ + -69.0772626299999, + -50.56172755599994 + ], + [ + -68.87493857499999, + -50.34024733199982 + ], + [ + -68.78524064399988, + -50.30255676299993 + ], + [ + -68.38013454599997, + -50.17949315699997 + ], + [ + -68.36395261099989, + -50.137325646999955 + ], + [ + -68.49449957999991, + -50.07997783799988 + ], + [ + -68.50725549499998, + -49.945115195999904 + ], + [ + -68.33169552699991, + -50.124587332999965 + ], + [ + -68.13983158399998, + -50.10695616699991 + ], + [ + -67.99597951799996, + -50.05509833799988 + ], + [ + -67.77747352799992, + -49.89636235899985 + ], + [ + -67.71281452099998, + -49.75208164199995 + ], + [ + -67.69471748899991, + -49.57195336899997 + ], + [ + -67.58488454999997, + -49.25927367899993 + ], + [ + -67.62637362899994, + -49.11308205599988 + ], + [ + -67.56449858799994, + -49.03164113699995 + ], + [ + -67.40019953899997, + -48.89110981299996 + ], + [ + -67.22180950499995, + -48.81204885299985 + ], + [ + -67.11443363799998, + -48.66634555899998 + ], + [ + -66.85630756499995, + -48.571682523999925 + ], + [ + -66.68132058299989, + -48.447212434999926 + ], + [ + -66.48875457199995, + -48.41487823799997 + ], + [ + -66.07432561799993, + -48.10736967899987 + ], + [ + -65.95225560399984, + -48.09838159699996 + ], + [ + -65.95166048899989, + -47.96078829699985 + ], + [ + -65.84757954699995, + -47.88888799699998 + ], + [ + -65.88330858299997, + -47.79484823999991 + ], + [ + -65.73921964399995, + -47.5103071019999 + ], + [ + -65.71581250899999, + -47.33503999699997 + ], + [ + -65.75169359199998, + -47.198702139999966 + ], + [ + -65.8631826269999, + -47.10959764699993 + ], + [ + -65.97236663899992, + -47.07450949199995 + ], + [ + -66.19187963099995, + -47.09455263399997 + ], + [ + -66.50030550499991, + -47.049062368999955 + ], + [ + -66.73990656599995, + -47.03458531299998 + ], + [ + -67.04499862199998, + -46.79549420699982 + ], + [ + -67.12089558199995, + -46.699824672999966 + ], + [ + -67.33976752599989, + -46.61882313399997 + ], + [ + -67.42070754199995, + -46.55407997299989 + ], + [ + -67.55683853399995, + -46.360704101999886 + ], + [ + -67.60772657699994, + -46.25333192199997 + ], + [ + -67.61574554399988, + -46.064969099999985 + ], + [ + -67.5451275069999, + -45.927097688999936 + ], + [ + -67.36695858699994, + -45.774635396999884 + ], + [ + -67.34336051299994, + -45.62965428799998 + ], + [ + -67.2065886399999, + -45.5268819289999 + ], + [ + -67.05215458799995, + -45.33566171599995 + ], + [ + -66.84672553999991, + -45.231452865999984 + ], + [ + -66.5491485309999, + -45.21590778899997 + ], + [ + -66.58834063399996, + -45.139369612999985 + ], + [ + -66.35326362199999, + -45.0402257799999 + ], + [ + -66.28469060099991, + -45.05461767599991 + ], + [ + -66.19528955699991, + -44.98504955599992 + ], + [ + -66.0052795229999, + -45.005248768999934 + ], + [ + -65.9351885399999, + -45.04733145499995 + ], + [ + -65.75264761999995, + -45.02331847599987 + ], + [ + -65.64631664099994, + -45.04863668499985 + ], + [ + -65.57592759699997, + -44.899790512999914 + ], + [ + -65.72367054299986, + -44.8498296759999 + ], + [ + -65.63782459899994, + -44.668376726999895 + ], + [ + -65.45707656799993, + -44.57521773999997 + ], + [ + -65.40155048299988, + -44.58436189399998 + ], + [ + -65.33264151599991, + -44.46054006199989 + ], + [ + -65.21665156599988, + -44.36999505499995 + ], + [ + -65.30622862999996, + -44.222812355999906 + ], + [ + -65.23773154999992, + -44.14541654399994 + ], + [ + -65.23549659899993, + -44.03656059999997 + ], + [ + -65.3014675419999, + -43.93180910599989 + ], + [ + -65.35165351599983, + -43.759049363999964 + ], + [ + -65.32807153499988, + -43.644593972999985 + ], + [ + -65.0591205689999, + -43.40515384499997 + ], + [ + -65.01074257099992, + -43.281424380999965 + ], + [ + -64.88924453699991, + -43.203582483999924 + ], + [ + -64.69480148199989, + -43.12763187999997 + ], + [ + -64.50608058499995, + -43.08200431999984 + ], + [ + -64.32898756699996, + -43.00162941199983 + ], + [ + -64.52817561699999, + -42.92533179699984 + ], + [ + -64.63915251799989, + -42.91939204499988 + ], + [ + -64.95968655399997, + -42.78578366999989 + ], + [ + -65.03450761299985, + -42.730272168999875 + ], + [ + -64.98638962199988, + -42.65715649299983 + ], + [ + -64.84324649699994, + -42.61707171699993 + ], + [ + -64.67735253899991, + -42.510306218999915 + ], + [ + -64.56581153599996, + -42.49263750299997 + ], + [ + -64.34578657799989, + -42.53589516399995 + ], + [ + -64.27709151699992, + -42.57697202199995 + ], + [ + -64.26129950799998, + -42.74757895499994 + ], + [ + -64.15083356799988, + -42.87118235499997 + ], + [ + -64.08871461299992, + -42.8734441279999 + ], + [ + -63.78187560099991, + -42.81676653699998 + ], + [ + -63.63584859799994, + -42.76583289599995 + ], + [ + -63.64360051699998, + -42.70196329699991 + ], + [ + -63.58766958599989, + -42.59919965499989 + ], + [ + -63.602233477999846, + -42.341000324999925 + ], + [ + -63.748405487999946, + -42.08099217899996 + ], + [ + -63.92899359199993, + -42.09630809599997 + ], + [ + -64.07243360399985, + -42.17773945799996 + ], + [ + -64.19017755099998, + -42.207383567999955 + ], + [ + -64.05946361499997, + -42.279449829999976 + ], + [ + -64.05645752899994, + -42.37947828899996 + ], + [ + -64.12579363799995, + -42.43092272299998 + ], + [ + -64.28409560299991, + -42.41636687799996 + ], + [ + -64.47688256099997, + -42.44127286499997 + ], + [ + -64.61299863399995, + -42.424338905999946 + ], + [ + -64.56699355199993, + -42.31902364499996 + ], + [ + -64.47901961099984, + -42.236978055999884 + ], + [ + -64.87704450899997, + -42.18770352999991 + ], + [ + -65.01896655899998, + -42.09627037699994 + ], + [ + -65.08551752899996, + -41.97158705299995 + ], + [ + -65.03009051799995, + -41.73729089799997 + ], + [ + -65.00413561899995, + -41.534102667999946 + ], + [ + -65.08792162699996, + -41.41181589799993 + ], + [ + -65.17156949999998, + -41.09583608499997 + ], + [ + -65.17765057099996, + -40.98226196699994 + ], + [ + -65.11483759399994, + -40.83167872999991 + ], + [ + -64.9298706159999, + -40.73980284499987 + ], + [ + -64.80799858199993, + -40.73089992299998 + ], + [ + -64.74123353799996, + -40.825307644999896 + ], + [ + -64.43204457599995, + -40.90605303299992 + ], + [ + -64.23162857699992, + -41.00037777499995 + ], + [ + -63.95914463899993, + -41.07799905999997 + ], + [ + -63.783622556999944, + -41.16178422899998 + ], + [ + -63.4419475169999, + -41.16516733199984 + ], + [ + -63.095184493999966, + -41.15555446299993 + ], + [ + -62.326709481999956, + -40.880804225999896 + ], + [ + -62.173252592999916, + -40.59776814299988 + ], + [ + -62.40493057599991, + -40.46811569099992 + ], + [ + -62.48482553599996, + -40.334965470999975 + ], + [ + -62.436222567999835, + -40.24386357099996 + ], + [ + -62.35452650399992, + -40.20110496799998 + ], + [ + -62.33121861099994, + -39.91588355499994 + ], + [ + -62.26150850199991, + -39.859549453999875 + ], + [ + -62.11386161199994, + -39.845564583999874 + ], + [ + -62.11546758499992, + -39.66999187599998 + ], + [ + -62.01192861699991, + -39.36308815499996 + ], + [ + -62.138240544999974, + -39.28954919199987 + ], + [ + -62.26226052599998, + -39.27289468599997 + ], + [ + -62.34634056999994, + -39.16030912999997 + ], + [ + -62.35733460999984, + -39.10125493399994 + ], + [ + -62.29991957899989, + -39.027854272999946 + ], + [ + -62.32287962299989, + -38.90565199199989 + ], + [ + -62.37621652299998, + -38.803251788999944 + ], + [ + -62.24351154999994, + -38.79240694799989 + ], + [ + -62.1429136239999, + -38.82710819399995 + ], + [ + -62.02942248699998, + -38.940647610999974 + ], + [ + -61.80459553599991, + -38.99014593399994 + ], + [ + -61.7135506329999, + -38.97342990499993 + ], + [ + -61.55418751999986, + -39.01269845099995 + ], + [ + -61.3745846249999, + -38.98462293099993 + ], + [ + -61.14433659399998, + -39.00276153699997 + ], + [ + -60.94012862199992, + -38.985438992999946 + ], + [ + -60.14565663399998, + -38.878579449999904 + ], + [ + -60.07798751799993, + -38.8597007219999 + ], + [ + -59.784271548999925, + -38.830942243999914 + ], + [ + -59.64358147199988, + -38.78854305799996 + ], + [ + -59.10226860899991, + -38.695122555999944 + ], + [ + -58.7037696299999, + -38.57543836599996 + ], + [ + -58.49935948599989, + -38.53520506299992 + ], + [ + -58.196395595999945, + -38.44376855799993 + ], + [ + -57.856426608999925, + -38.296630114999914 + ], + [ + -57.710037507999914, + -38.22228347199996 + ], + [ + -57.551589529999944, + -38.10753538499995 + ], + [ + -57.55322651599994, + -37.97717382399992 + ], + [ + -57.47449161099996, + -37.81352269599989 + ], + [ + -57.3387225489999, + -37.68134226199993 + ], + [ + -57.111644554999884, + -37.48934068799997 + ], + [ + -56.983344606999935, + -37.28574677499989 + ], + [ + -56.66903262499994, + -36.896498566999924 + ], + [ + -56.690154517999986, + -36.443368354999905 + ], + [ + -56.750404475999915, + -36.34030547899994 + ], + [ + -56.998626491999914, + -36.33700954699998 + ], + [ + -57.08069957399994, + -36.29627349699996 + ], + [ + -57.25619148099992, + -36.158260767999934 + ], + [ + -57.37622854899996, + -35.969647158999976 + ], + [ + -57.387329540999986, + -35.81911840399994 + ], + [ + -57.29913750299994, + -35.67108209099996 + ], + [ + -57.126316572999826, + -35.46699582399992 + ], + [ + -57.13451357199983, + -35.39148560499996 + ], + [ + -57.30942561799998, + -35.18391079099996 + ], + [ + -57.46804056299993, + -35.055786191999914 + ], + [ + -57.570327609999936, + -35.013383149999925 + ], + [ + -57.888332490999915, + -34.83111397099992 + ], + [ + -58.18644359499996, + -34.746472171999926 + ], + [ + -58.35533559099997, + -34.635618819999934 + ], + [ + -58.38245054499993, + -34.57759140699994 + ], + [ + -58.46561863799997, + -34.542142493999904 + ], + [ + -58.53372562499993, + -34.4420590499999 + ], + [ + -58.497409519999906, + -34.32307039099993 + ], + [ + -58.55087248399997, + -34.29864887699989 + ], + [ + -58.787425549999966, + -34.23594184799987 + ], + [ + -58.9773904889999, + -34.121816871999954 + ], + [ + -59.15761951199994, + -33.979787701999896 + ], + [ + -59.254436528999975, + -33.933428903999925 + ], + [ + -59.37713954499998, + -33.755940091999946 + ], + [ + -59.45325460199996, + -33.72908480999996 + ], + [ + -59.4724764849999, + -33.66348183299988 + ], + [ + -59.58985162799996, + -33.692256067999836 + ], + [ + -59.678047521999986, + -33.63494463799992 + ], + [ + -59.80777356699991, + -33.591553703999864 + ], + [ + -59.84858354499994, + -33.53766527499994 + ], + [ + -59.97742060599995, + -33.495994643999836 + ], + [ + -60.25412349099997, + -33.27271616499996 + ], + [ + -60.50665263199994, + -33.132961172999956 + ], + [ + -60.685729478999974, + -32.89000667999994 + ], + [ + -60.723071527999934, + -32.683892998999966 + ], + [ + -60.79544054499996, + -32.57737141499996 + ], + [ + -60.80363050199992, + -32.508640646999936 + ], + [ + -60.75737362799987, + -32.43407272099995 + ], + [ + -60.7611086039999, + -32.32110427999993 + ], + [ + -60.7176854839999, + -32.24784191999987 + ], + [ + -60.72694363199997, + -32.13629136199995 + ], + [ + -60.8395115859999, + -32.08806406999997 + ], + [ + -60.84720650799994, + -31.825777555999878 + ], + [ + -60.56169156099992, + -31.37707952599993 + ], + [ + -60.44432060899993, + -31.268219390999946 + ], + [ + -60.34019457199986, + -31.220704895999972 + ], + [ + -60.28054861399988, + -31.104708072999927 + ], + [ + -60.10849747799995, + -30.45153921499991 + ], + [ + -59.99734858099998, + -30.17567737099995 + ], + [ + -60.22245062499991, + -30.387452524999958 + ], + [ + -60.272212475999936, + -30.383685696999976 + ], + [ + -60.431701485999895, + -30.531410202999893 + ], + [ + -60.60474352999995, + -30.642543342999886 + ], + [ + -60.59130448899998, + -30.53696204099998 + ], + [ + -60.62845660499988, + -30.41318949399988 + ], + [ + -60.63464747799998, + -30.27499772599998 + ], + [ + -60.668765511999936, + -30.20358910799996 + ], + [ + -60.67609062499986, + -29.965182970999876 + ], + [ + -60.74511760899992, + -29.79966116999998 + ], + [ + -60.848297496999976, + -29.655717740999876 + ], + [ + -61.140289475999964, + -29.410062263999976 + ], + [ + -61.32012153199997, + -29.384272153999916 + ], + [ + -61.470786576999956, + -29.553106817999947 + ], + [ + -61.529663579999976, + -29.704392793999943 + ], + [ + -61.74356857599997, + -29.854795149999916 + ], + [ + -62.12956259299989, + -30.079365782999957 + ], + [ + -62.32744558099995, + -30.263088215999915 + ], + [ + -62.33620450199999, + -30.471241548999956 + ], + [ + -62.258369478999896, + -30.594482180999933 + ], + [ + -62.26296963499993, + -30.690196473999947 + ], + [ + -62.37513358099994, + -30.796136856999965 + ], + [ + -62.56837047999994, + -30.850396771999954 + ], + [ + -62.830097585999965, + -30.8941254959999 + ], + [ + -62.95021461699997, + -30.864741393999964 + ], + [ + -63.53795651799987, + -30.63817553299998 + ], + [ + -63.69432863399999, + -30.51550872699994 + ], + [ + -63.755851634999885, + -30.42213030199997 + ], + [ + -63.79884358999993, + -30.28895325999997 + ], + [ + -63.916541603999974, + -30.3913182579999 + ], + [ + -63.881755532999875, + -30.53303914199995 + ], + [ + -63.943427563999876, + -30.621310975999904 + ], + [ + -63.99871459799988, + -30.75608728599991 + ], + [ + -64.07904055499995, + -30.824261829999898 + ], + [ + -64.17463649599989, + -30.824444890999928 + ], + [ + -64.22663162099991, + -30.784514174999913 + ], + [ + -64.27304858899998, + -30.666762348999953 + ], + [ + -64.38404862499988, + -30.646667071999957 + ], + [ + -64.41060651699996, + -30.713955648999956 + ], + [ + -64.27079050499987, + -30.947729610999943 + ], + [ + -64.26552549599995, + -31.085160804999873 + ], + [ + -64.15927162999992, + -31.047820095999896 + ], + [ + -64.15678354599987, + -31.176910625999938 + ], + [ + -64.27110247899992, + -31.31360873799997 + ], + [ + -64.31393450699994, + -31.411025562999953 + ], + [ + -64.32550857399985, + -31.932454036999957 + ], + [ + -64.18330355199998, + -32.17677193099996 + ], + [ + -64.18573748899985, + -32.52680087799996 + ], + [ + -64.3364486349999, + -32.56501565099995 + ], + [ + -64.33176449199993, + -32.28282882199994 + ], + [ + -64.4541935869999, + -32.28318656199997 + ], + [ + -64.46154753399998, + -32.51401143499993 + ], + [ + -64.54249559599998, + -32.65604295199984 + ], + [ + -64.70822157999999, + -32.82522781199992 + ], + [ + -64.75915555599994, + -32.92975031199995 + ], + [ + -64.93235048599996, + -33.02698759799995 + ], + [ + -64.89395851999996, + -33.14620105999995 + ], + [ + -65.0095675959999, + -33.3539896129999 + ], + [ + -65.23266552699982, + -33.41653302799989 + ], + [ + -65.33847062699994, + -33.37530512799998 + ], + [ + -65.39604960799994, + -33.290716637999935 + ], + [ + -65.39399754999988, + -33.17474194299996 + ], + [ + -65.35797849999994, + -33.04544706299998 + ], + [ + -65.59709156699995, + -32.90656932099989 + ], + [ + -65.69093351099997, + -32.82194663199988 + ], + [ + -65.77315562299992, + -32.78505971999988 + ], + [ + -65.98256657699994, + -33.116439938999974 + ], + [ + -66.12237554899997, + -33.53481241099996 + ], + [ + -66.26824161899987, + -33.619458065999936 + ], + [ + -66.34540558699996, + -33.62046087699997 + ], + [ + -66.34941062799993, + -33.54872419099996 + ], + [ + -66.45077549799993, + -33.549589873999935 + ], + [ + -66.50428053899992, + -33.41908196499992 + ], + [ + -66.72328156399988, + -33.52678271499997 + ], + [ + -66.90670761299998, + -33.86864986799998 + ], + [ + -66.97434957199994, + -33.7677228689999 + ], + [ + -66.99903159399992, + -33.67428442999994 + ], + [ + -67.07331051199998, + -33.554128841999955 + ], + [ + -67.07382163999995, + -33.36405644699988 + ], + [ + -66.99125654099993, + -33.24399993299994 + ], + [ + -67.09947948399997, + -33.13789308499992 + ], + [ + -67.22307550799997, + -32.51627723099989 + ], + [ + -67.18634064399993, + -32.40544064299996 + ], + [ + -67.26160460199992, + -32.344933527999956 + ], + [ + -67.2883075019999, + -32.14141438099995 + ], + [ + -67.4093326279999, + -31.878285819999974 + ], + [ + -67.40148951399993, + -31.54358703899993 + ], + [ + -67.66950254499994, + -31.541561970999965 + ], + [ + -67.75245656399994, + -31.572738123999954 + ], + [ + -67.8521886389999, + -31.672952661999886 + ], + [ + -68.07218157899996, + -31.759226584999965 + ], + [ + -68.22608153599998, + -31.641869546999885 + ], + [ + -68.30844848599997, + -31.52564942999993 + ], + [ + -68.32341755999994, + -31.453648881999925 + ], + [ + -68.40280155899995, + -31.449797229999945 + ], + [ + -68.4540485149999, + -31.38307644199989 + ], + [ + -68.65711956599995, + -31.370659825999894 + ], + [ + -68.72223655999989, + -31.40634862899998 + ], + [ + -68.77427661199988, + -31.564195120999955 + ], + [ + -68.60842154599999, + -31.922679396999968 + ], + [ + -68.65020751299994, + -32.01145246899995 + ], + [ + -68.67467462399992, + -32.17707300899991 + ], + [ + -68.74769558499997, + -32.315336692999836 + ], + [ + -68.76941661599994, + -32.47380545699997 + ], + [ + -68.82291461599988, + -32.60646147999995 + ], + [ + -68.91593949299994, + -32.732197403999976 + ], + [ + -68.95910662899996, + -32.96778520999993 + ], + [ + -69.06906848199992, + -32.99141664499996 + ], + [ + -69.09255960399992, + -33.377960179999945 + ], + [ + -69.25746164599997, + -33.37015109599997 + ], + [ + -69.27615362599994, + -33.63966750499998 + ], + [ + -69.32093059099986, + -33.68984107399996 + ], + [ + -69.33209260399997, + -33.793475092999984 + ], + [ + -69.26977549999998, + -33.92297331799995 + ], + [ + -69.27467354899994, + -34.0506707749999 + ], + [ + -69.23992150799995, + -34.08026794499989 + ], + [ + -69.2584606019999, + -34.26374998499989 + ], + [ + -69.3870084859999, + -34.419133873999954 + ], + [ + -69.31623856899995, + -34.452133761999846 + ], + [ + -69.34805258599994, + -34.52652181199994 + ], + [ + -69.3156895539999, + -34.65641650099997 + ], + [ + -69.27777854199991, + -34.68492268299991 + ], + [ + -69.34439857899997, + -35.009206279999944 + ], + [ + -69.39328753799992, + -35.03293276499994 + ], + [ + -69.63047058699988, + -34.912593780999885 + ], + [ + -69.74319461199997, + -34.9043919209999 + ], + [ + -69.60816148099991, + -35.06494476199998 + ], + [ + -69.41255954499997, + -35.216335176999905 + ], + [ + -69.41706850599991, + -35.323704506999945 + ], + [ + -69.58693649099996, + -35.30922460199997 + ], + [ + -69.76126850999998, + -35.266897834999895 + ], + [ + -69.84901463099999, + -35.36683627199983 + ], + [ + -69.71090651499998, + -35.439237642999956 + ], + [ + -69.46820062999996, + -35.49662803099989 + ], + [ + -69.47871354799997, + -35.638451844999906 + ], + [ + -69.52245350399988, + -35.66823207599987 + ], + [ + -69.54782854199988, + -35.84424198499988 + ], + [ + -69.66071349999993, + -36.00207908899995 + ], + [ + -69.79551663099994, + -36.02415383699997 + ], + [ + -70.02513149299995, + -36.001129251999885 + ], + [ + -70.08616649999993, + -36.07309560199997 + ], + [ + -69.9345014939999, + -36.15818365399997 + ], + [ + -69.89565254599995, + -36.23587584999996 + ], + [ + -70.13814553199995, + -36.417565838999906 + ], + [ + -70.27447551099988, + -36.60975080899988 + ] + ] + ], + [ + [ + [ + -62.02957554099993, + -39.08830439099984 + ], + [ + -62.077979522999954, + -39.141308360999915 + ], + [ + -61.86025656999993, + -39.231098157999895 + ], + [ + -61.874637568999844, + -39.13402666699989 + ], + [ + -62.02957554099993, + -39.08830439099984 + ] + ] + ], + [ + [ + [ + -58.07823557099988, + -32.98143094799991 + ], + [ + -58.13957953599993, + -32.759986597999955 + ], + [ + -58.13498658799995, + -32.652758921999975 + ], + [ + -58.198413622999965, + -32.48918926699997 + ], + [ + -58.19216156099992, + -32.399683951999975 + ], + [ + -58.10416750299993, + -32.316938473999926 + ], + [ + -58.09603152499989, + -32.249893641999904 + ], + [ + -58.17970655599993, + -32.13869143599993 + ], + [ + -58.14049953299991, + -32.01030347799991 + ], + [ + -58.20361358799988, + -31.88974857599993 + ], + [ + -58.16222358199997, + -31.83919212099994 + ], + [ + -58.03722358999994, + -31.784473883999908 + ], + [ + -57.97917153399993, + -31.60836691299994 + ], + [ + -58.00666853499996, + -31.52670655599991 + ], + [ + -58.07917048899998, + -31.45948385999992 + ], + [ + -57.991393521999896, + -31.404483822999964 + ], + [ + -57.975006565999934, + -31.323656292999885 + ], + [ + -57.90778353499991, + -31.23310240199993 + ], + [ + -57.91278049099992, + -31.154772342999877 + ], + [ + -57.852226604999885, + -31.038943157999938 + ], + [ + -57.89972651499994, + -30.926720370999874 + ], + [ + -57.81361352299996, + -30.910334923999926 + ], + [ + -57.81222547999988, + -30.716454629999873 + ], + [ + -57.889724556999965, + -30.602566860999957 + ], + [ + -57.87833355099991, + -30.506463311999937 + ], + [ + -57.66889158299995, + -30.352857895999932 + ], + [ + -57.62583961399997, + -30.283969212999978 + ], + [ + -57.62751062999985, + -30.184512063999875 + ], + [ + -57.6149025709999, + -30.04502713699992 + ], + [ + -57.719085603999986, + -29.936904105999872 + ], + [ + -57.69678856899998, + -29.778436179999915 + ], + [ + -57.55700658699993, + -29.592270254999903 + ], + [ + -57.51622058099986, + -29.486008341999934 + ], + [ + -57.57129655799997, + -29.319543576999877 + ], + [ + -57.65091357399996, + -29.196154585999977 + ], + [ + -57.56345361099994, + -29.018108544999905 + ], + [ + -57.59965153099995, + -28.960967937999953 + ], + [ + -57.5897335599999, + -28.733159711999917 + ], + [ + -57.550743628999896, + -28.677761198999917 + ], + [ + -57.695075474999896, + -28.72247529999987 + ], + [ + -57.99824556099992, + -28.73261991699991 + ], + [ + -58.103290588999926, + -28.71614461599995 + ], + [ + -58.33327861299995, + -28.909952657999952 + ], + [ + -58.47768354899989, + -28.952393250999933 + ], + [ + -58.528636635999874, + -29.11486957099993 + ], + [ + -58.6145325359999, + -29.181604942999968 + ], + [ + -58.66153757799998, + -29.26265895299997 + ], + [ + -58.702434559999915, + -29.636280442999976 + ], + [ + -58.74399555699995, + -29.706927816999894 + ], + [ + -58.90258451799997, + -29.84618257699998 + ], + [ + -58.957443570999885, + -29.938300195999943 + ], + [ + -59.09075153899994, + -30.059316604999935 + ], + [ + -59.11288060099997, + -30.110812838999948 + ], + [ + -59.23197151999989, + -30.17987921899993 + ], + [ + -59.28583547399984, + -30.335194375999947 + ], + [ + -59.50835455099991, + -30.53188126599997 + ], + [ + -59.56915654199997, + -30.538695920999942 + ], + [ + -59.57757163699989, + -30.62682392199997 + ], + [ + -59.673740564999946, + -30.796935819999874 + ], + [ + -59.78662149999991, + -30.928794220999976 + ], + [ + -59.87448463199985, + -31.106502805999924 + ], + [ + -59.990058503999876, + -31.25516792899998 + ], + [ + -60.06859961899988, + -31.324219556999935 + ], + [ + -60.09293748099992, + -31.392675062999956 + ], + [ + -60.17087560199985, + -31.460763776999954 + ], + [ + -60.31719949099988, + -31.633996928999977 + ], + [ + -60.61041656999993, + -31.761055683999928 + ], + [ + -60.64209362599996, + -31.841504855999972 + ], + [ + -60.65138647399988, + -32.03298172299998 + ], + [ + -60.603919588999986, + -32.08417721399991 + ], + [ + -60.433170497999924, + -32.428792960999886 + ], + [ + -60.20200749899982, + -32.61042042099996 + ], + [ + -59.95031755399992, + -32.9134200179999 + ], + [ + -59.80855962199985, + -33.140228115999946 + ], + [ + -59.41644647999982, + -33.39667043199995 + ], + [ + -59.387767630999974, + -33.45594574199998 + ], + [ + -58.99538459099989, + -33.48913271499998 + ], + [ + -58.76474747299994, + -33.54255225999998 + ], + [ + -58.63869856899993, + -33.40161843699997 + ], + [ + -58.58815753599998, + -33.069673277999925 + ], + [ + -58.55928456199996, + -33.010855954999954 + ], + [ + -58.4052845249999, + -32.994815338999956 + ], + [ + -58.28657950999997, + -33.00764819999995 + ], + [ + -58.240055587999905, + -33.08519069499988 + ], + [ + -58.116508514999964, + -33.02755236999997 + ], + [ + -58.07823557099988, + -32.98143094799991 + ] + ] + ], + [ + [ + [ + -6.778484582999965, + 61.553563194000105 + ], + [ + -6.90541258099995, + 61.654436046000114 + ], + [ + -6.987874582999893, + 61.58526824500012 + ], + [ + -6.745346560999906, + 61.410548312 + ], + [ + -6.717043555999965, + 61.52307888200005 + ], + [ + -6.778484582999965, + 61.553563194000105 + ] + ] + ], + [ + [ + [ + -6.62085451199988, + 61.83399367900017 + ], + [ + -6.822412460999885, + 61.908958571000085 + ], + [ + -6.869383472999971, + 61.82046210200008 + ], + [ + -6.62085451199988, + 61.83399367900017 + ] + ] + ], + [ + [ + [ + -7.144302521999919, + 62.047159726000075 + ], + [ + -7.076407428999971, + 62.09691772100007 + ], + [ + -7.270107511999981, + 62.16037727700018 + ], + [ + -7.387509476999924, + 62.13751144500009 + ], + [ + -7.412931453999875, + 62.0674514750001 + ], + [ + -7.242197450999868, + 62.02762771200008 + ], + [ + -7.144302521999919, + 62.047159726000075 + ] + ] + ], + [ + [ + [ + -6.852020527999969, + 62.108083086000136 + ], + [ + -7.035067547999972, + 62.19775888900017 + ], + [ + -7.123083565999934, + 62.28505825500014 + ], + [ + -7.257724423999889, + 62.280717435000156 + ], + [ + -7.271887492999895, + 62.19040058400003 + ], + [ + -7.048889473999964, + 62.10354780600005 + ], + [ + -6.917963474999965, + 61.99924943800005 + ], + [ + -6.724556423999957, + 61.98195991800003 + ], + [ + -6.852020527999969, + 62.108083086000136 + ] + ] + ], + [ + [ + [ + -6.839865427999939, + 62.28965589600017 + ], + [ + -7.034079488999907, + 62.339255976000175 + ], + [ + -7.080527469999822, + 62.28106042200005 + ], + [ + -6.955032441999833, + 62.170684671 + ], + [ + -6.727397553999936, + 62.09038235100007 + ], + [ + -6.623627580999937, + 62.11957350200015 + ], + [ + -6.645923442999958, + 62.20259189400008 + ], + [ + -6.839865427999939, + 62.28965589600017 + ] + ] + ], + [ + [ + [ + 55.69619342600009, + 24.048331166000082 + ], + [ + 55.76346271400013, + 23.949675537000076 + ], + [ + 55.83082193500002, + 23.985018894000063 + ], + [ + 55.82623539200006, + 24.082685268000034 + ], + [ + 55.77254586600009, + 24.143839167000067 + ], + [ + 55.69619342600009, + 24.048331166000082 + ] + ] + ], + [ + [ + [ + 35.77108396799997, + 31.384550756000067 + ], + [ + 35.612353627000175, + 31.408202926000058 + ], + [ + 35.602371153000036, + 31.1184413630001 + ], + [ + 35.537106154000014, + 30.984855304000064 + ], + [ + 35.64717623200005, + 30.952896835000047 + ], + [ + 35.63690511900012, + 31.053600243000062 + ], + [ + 35.67800413800012, + 31.283287094000173 + ], + [ + 35.77108396799997, + 31.384550756000067 + ] + ] + ], + [ + [ + [ + 35.77836847700007, + 31.501372690000096 + ], + [ + 35.645448679000026, + 31.42511018100015 + ], + [ + 35.78943013800006, + 31.41296933300015 + ], + [ + 35.77836847700007, + 31.501372690000096 + ] + ] + ], + [ + [ + [ + 35.60794694900005, + 31.47079574100013 + ], + [ + 35.64706745800015, + 31.44777309699998 + ], + [ + 35.788710680000065, + 31.532039572000144 + ], + [ + 35.799052884000105, + 31.58590896300018 + ], + [ + 35.748690849000184, + 31.782770558000152 + ], + [ + 35.77432152799997, + 31.863439746000097 + ], + [ + 35.69491139100006, + 31.895005950000098 + ], + [ + 35.65147413600005, + 31.87576045800006 + ], + [ + 35.681691358000194, + 31.750215100000162 + ], + [ + 35.617120034000095, + 31.638249506000136 + ], + [ + 35.61289322000016, + 31.618104692000145 + ], + [ + 35.60794694900005, + 31.47079574100013 + ] + ] + ], + [ + [ + [ + 35.647876849000056, + 32.09186754600006 + ], + [ + 35.64535874500007, + 31.905797814000096 + ], + [ + 35.692483222000135, + 31.89878310199998 + ], + [ + 35.67449678100007, + 32.08035622299997 + ], + [ + 35.647876849000056, + 32.09186754600006 + ] + ] + ], + [ + [ + [ + 35.679532984000105, + 32.18665608900017 + ], + [ + 35.698418747000176, + 32.45384466900015 + ], + [ + 35.69167383200016, + 32.598995247 + ], + [ + 35.57722873200015, + 32.592607042 + ], + [ + 35.558955081000136, + 32.4263314050001 + ], + [ + 35.66163647500002, + 32.35069243099997 + ], + [ + 35.638973560000125, + 32.20185463200016 + ], + [ + 35.679532984000105, + 32.18665608900017 + ] + ] + ], + [ + [ + [ + 45.770076604999986, + 34.499781613000096 + ], + [ + 45.771652571, + 34.519854259 + ], + [ + 45.60493450500019, + 34.81687353700016 + ], + [ + 45.10448861600008, + 35.28717558600016 + ], + [ + 44.923812502000146, + 35.76854091000007 + ], + [ + 44.94292860600018, + 35.9391907590001 + ], + [ + 44.909633507000194, + 36.031081899000185 + ], + [ + 44.614234620000104, + 36.094224452000105 + ], + [ + 44.343749598000045, + 36.061709206000046 + ], + [ + 44.24895446400012, + 36.09870726200012 + ], + [ + 44.14614153700006, + 36.41808107500003 + ], + [ + 44.07022060500009, + 36.53142452200012 + ], + [ + 44.008388478000086, + 36.55960397800004 + ], + [ + 43.860629607000135, + 36.564977784000064 + ], + [ + 43.740478545000144, + 36.60443995100013 + ], + [ + 43.177204593000056, + 36.65867287700013 + ], + [ + 42.83009757700006, + 36.820656341000074 + ], + [ + 42.786636571000145, + 36.90334985100003 + ], + [ + 42.64019751400019, + 37.00794343000018 + ], + [ + 42.59354752900009, + 36.90687075300019 + ], + [ + 42.45463558800009, + 36.81426748700011 + ], + [ + 42.22774551600003, + 36.79111197600014 + ], + [ + 41.93947258700018, + 36.87249740600015 + ], + [ + 41.624168523000094, + 36.79670505200016 + ], + [ + 41.31141658100012, + 36.80167887400012 + ], + [ + 41.070903569000166, + 36.6968720590001 + ], + [ + 40.98463450700018, + 36.72105770600007 + ], + [ + 40.83839762100013, + 36.81014359000005 + ], + [ + 40.7519954550001, + 36.834652107000124 + ], + [ + 40.614364604000116, + 36.83152817200016 + ], + [ + 40.44060557200015, + 36.855323725 + ], + [ + 40.261501568000085, + 36.95639573100004 + ], + [ + 39.95695450300019, + 36.950647924000066 + ], + [ + 39.73285258700008, + 36.87020428500006 + ], + [ + 39.27315850600007, + 36.7322983410001 + ], + [ + 39.12099846500013, + 36.6383903470001 + ], + [ + 39.095519491000175, + 36.55297422800004 + ], + [ + 39.013629471000115, + 36.481865681000045 + ], + [ + 38.78363759100006, + 36.51402687600017 + ], + [ + 38.63822950800011, + 36.40066733500004 + ], + [ + 38.54808448600005, + 36.36599341400017 + ], + [ + 38.49407150200017, + 36.42069002600016 + ], + [ + 38.46456150299997, + 36.53612861400012 + ], + [ + 38.486579589000144, + 36.66743883900017 + ], + [ + 38.403221562, + 36.742537171000095 + ], + [ + 38.337551530000155, + 36.66977772500002 + ], + [ + 38.24330557800005, + 36.42202593400003 + ], + [ + 38.0847474630001, + 36.33100098000017 + ], + [ + 37.93885054700013, + 36.32685897800013 + ], + [ + 37.81841651200011, + 36.120018753000124 + ], + [ + 37.60887161500017, + 36.128708608000125 + ], + [ + 37.553417614000125, + 36.02693101300014 + ], + [ + 37.646728481000025, + 35.93713501400009 + ], + [ + 37.65701659600012, + 35.87178332600007 + ], + [ + 37.83251152100007, + 35.87378257800009 + ], + [ + 37.761829613000145, + 35.94081986600014 + ], + [ + 37.77489448600011, + 36.05463337100019 + ], + [ + 37.87919251900013, + 36.04704154600006 + ], + [ + 37.920967588999986, + 35.913152545 + ], + [ + 37.84120154300018, + 35.75153537000011 + ], + [ + 37.818016528000044, + 35.621487292000154 + ], + [ + 37.85232147800019, + 35.52825856800018 + ], + [ + 37.736606455000185, + 35.44346354700019 + ], + [ + 37.55396646100013, + 35.41167635300019 + ], + [ + 37.37701057100003, + 35.42358603200017 + ], + [ + 37.344470514000136, + 35.247774606000064 + ], + [ + 37.29367048100005, + 35.1684655410001 + ], + [ + 37.31139753600013, + 35.03690788300014 + ], + [ + 37.253921484000045, + 34.929026419000024 + ], + [ + 37.1833725140001, + 34.88442279100008 + ], + [ + 37.12018956000014, + 34.67966312300018 + ], + [ + 36.9931225900001, + 34.5633942230001 + ], + [ + 36.99584553500006, + 34.46260887800008 + ], + [ + 37.072105599000054, + 34.24485273300019 + ], + [ + 36.99585358200011, + 34.16431085800019 + ], + [ + 36.791820456000096, + 33.87426884500013 + ], + [ + 36.671634526000105, + 33.79787718500012 + ], + [ + 36.61114451000003, + 33.70022382200011 + ], + [ + 36.41495148200016, + 33.60601156500019 + ], + [ + 36.52024059100012, + 33.565824866000014 + ], + [ + 36.639450532000126, + 33.44043545000011 + ], + [ + 36.621993542999974, + 33.31270429799997 + ], + [ + 36.466560536000145, + 33.348492007000175 + ], + [ + 36.44348951500001, + 33.429140835 + ], + [ + 36.21307753400015, + 33.45672785800002 + ], + [ + 36.23324254900018, + 33.50774732900015 + ], + [ + 36.354255606000095, + 33.59101198200017 + ], + [ + 36.239189510000074, + 33.619904067 + ], + [ + 36.06762351900011, + 33.43072384100009 + ], + [ + 36.04865661300005, + 33.32342676400009 + ], + [ + 35.92540357600018, + 33.253014083000096 + ], + [ + 35.865867588000185, + 33.13985017600015 + ], + [ + 35.93589352800018, + 32.97720705600011 + ], + [ + 35.927612543000066, + 32.90337640300015 + ], + [ + 35.83045555600006, + 32.77392444600008 + ], + [ + 35.96369948600011, + 32.74632619099998 + ], + [ + 36.04864152500005, + 32.69114091400019 + ], + [ + 36.049244277000184, + 32.58559534900013 + ], + [ + 36.01138281900012, + 32.35500917600001 + ], + [ + 36.085756752000066, + 32.214085412000145 + ], + [ + 36.023074006000115, + 31.981700595000063 + ], + [ + 36.00481776800018, + 31.850219712000126 + ], + [ + 35.91650434300004, + 31.50083309700011 + ], + [ + 35.8725274950001, + 31.405594892000067 + ], + [ + 35.88709651200003, + 31.36692404400003 + ], + [ + 35.92864519200015, + 31.236522348000108 + ], + [ + 35.800311936000185, + 31.136787534000064 + ], + [ + 35.72225078100013, + 30.923738140000182 + ], + [ + 35.718833357000165, + 30.887405529000034 + ], + [ + 35.662715662000096, + 30.77211244400013 + ], + [ + 35.70705223800013, + 30.601511051000045 + ], + [ + 35.64823657700015, + 30.464814101000115 + ], + [ + 35.645898341000134, + 30.37829932000011 + ], + [ + 35.59616583100018, + 30.27145986000005 + ], + [ + 35.557674847000044, + 30.123701249000135 + ], + [ + 35.491125016000126, + 30.064885586000116 + ], + [ + 35.467832574000056, + 29.94509588900013 + ], + [ + 35.404430370000114, + 29.923242364000032 + ], + [ + 35.37322389500008, + 30.061737959000027 + ], + [ + 35.42844226900007, + 30.407257489000074 + ], + [ + 35.514687253000034, + 30.509870134000096 + ], + [ + 35.51756508400001, + 30.78029627400008 + ], + [ + 35.61783949300002, + 30.852601766000078 + ], + [ + 35.64113193300011, + 30.915014716000087 + ], + [ + 35.53420254100001, + 30.943972886000154 + ], + [ + 35.48716799800013, + 30.87544454600004 + ], + [ + 35.490675354000075, + 30.85449034200019 + ], + [ + 35.432938879000176, + 30.728315458999987 + ], + [ + 35.48896664200009, + 30.60780630500011 + ], + [ + 35.325469895000026, + 30.33944860700018 + ], + [ + 35.25847040200006, + 30.172174706000078 + ], + [ + 35.21413382500009, + 30.008767890000115 + ], + [ + 35.2147633510001, + 29.9353832110001 + ], + [ + 35.09560318000018, + 29.717297615000064 + ], + [ + 35.07896572200008, + 29.547685477000186 + ], + [ + 35.15315979000019, + 29.576193986000078 + ], + [ + 35.21988948600017, + 29.68851931 + ], + [ + 35.20127352000014, + 29.729438463000065 + ], + [ + 35.32564975899999, + 29.814963989000148 + ], + [ + 35.3941780990001, + 29.805161379000026 + ], + [ + 35.54445481300013, + 29.886729889000094 + ], + [ + 35.601921491000155, + 29.77935083600005 + ], + [ + 35.66473304900012, + 29.79639722900015 + ], + [ + 35.65597074600015, + 29.94716433100018 + ], + [ + 35.74464390100019, + 30.097351113 + ], + [ + 35.82450369800006, + 30.538648441000134 + ], + [ + 35.86092624200006, + 30.629030306000175 + ], + [ + 35.974240819000045, + 30.753856206000023 + ], + [ + 36.04960400600015, + 31.12374736400011 + ], + [ + 36.112406698000086, + 31.256793684000115 + ], + [ + 36.24210166400013, + 31.238926105000132 + ], + [ + 36.314003980000166, + 31.10181006100015 + ], + [ + 36.42436567400017, + 31.075055711 + ], + [ + 36.5464323970001, + 31.090105033000157 + ], + [ + 36.67351556000011, + 31.183745258000158 + ], + [ + 36.743745729000125, + 31.310828421000167 + ], + [ + 36.75879505100005, + 31.40614079300002 + ], + [ + 36.71531923200007, + 31.556634013000178 + ], + [ + 36.683548441000084, + 31.772340961000054 + ], + [ + 36.698597763000066, + 31.99139220300009 + ], + [ + 36.80059872300018, + 32.09506530900006 + ], + [ + 36.99958420200005, + 32.120147513 + ], + [ + 37.16178245000003, + 32.240542088000154 + ], + [ + 37.228668325, + 32.344215195000174 + ], + [ + 37.22771154200018, + 32.540355779000095 + ], + [ + 37.18273548900004, + 32.626468999 + ], + [ + 37.097164472000145, + 32.65188527700013 + ], + [ + 37.16930751300009, + 32.77030866000001 + ], + [ + 37.119106618000046, + 32.85468006000008 + ], + [ + 37.14597346800008, + 32.90378845700013 + ], + [ + 36.98505752300008, + 32.97076439000017 + ], + [ + 36.93556959300008, + 33.08515993400016 + ], + [ + 36.80929957400019, + 33.20605229100005 + ], + [ + 36.80786861600012, + 33.34256432500018 + ], + [ + 36.76150546000008, + 33.527941681000016 + ], + [ + 36.84952952500004, + 33.62084619300015 + ], + [ + 37.037799475000156, + 33.572523683000156 + ], + [ + 37.14379853200006, + 33.77573772900007 + ], + [ + 37.20812947100006, + 33.84291667100007 + ], + [ + 37.39382550700003, + 33.944175091000034 + ], + [ + 37.617954581000106, + 34.10738935300009 + ], + [ + 37.808784532, + 34.06813740400014 + ], + [ + 37.917007475000105, + 34.10148866100013 + ], + [ + 37.85859248300011, + 34.1915129840001 + ], + [ + 37.932273603000056, + 34.246652495000035 + ], + [ + 38.026996485000154, + 34.23978671100008 + ], + [ + 38.10207755000005, + 34.32512638800017 + ], + [ + 38.252841502000024, + 34.35854252100006 + ], + [ + 38.395774576000065, + 34.549981502000094 + ], + [ + 38.497852579000096, + 34.56624306400016 + ], + [ + 38.54060347000012, + 34.505724550000025 + ], + [ + 38.64122754700014, + 34.49153801100016 + ], + [ + 38.7567864990001, + 34.52961599200006 + ], + [ + 38.83581946400011, + 34.493731891000095 + ], + [ + 38.97783254100017, + 34.521204249000164 + ], + [ + 39.20062654500009, + 34.59664221600008 + ], + [ + 39.57950550100003, + 34.810697583000035 + ], + [ + 39.615467553000144, + 34.89118246100014 + ], + [ + 39.40836749000016, + 34.91456595900013 + ], + [ + 39.359134537000045, + 34.97248658700005 + ], + [ + 39.38958750000006, + 35.02342710000005 + ], + [ + 39.62892151400018, + 34.98207229900004 + ], + [ + 39.854122465000046, + 35.02154620100009 + ], + [ + 40.04719155800012, + 34.96520858000014 + ], + [ + 40.168117611000184, + 35.027806142000145 + ], + [ + 40.353885564000166, + 35.051799340000116 + ], + [ + 40.56284356000015, + 34.98326320000007 + ], + [ + 40.618720512000095, + 35.06888903500004 + ], + [ + 40.59429950200007, + 35.145485883 + ], + [ + 40.744098528000166, + 35.23673882500009 + ], + [ + 40.75513850100015, + 35.354782006000164 + ], + [ + 40.84244155400012, + 35.42707994400007 + ], + [ + 40.88205359099999, + 35.50306307000005 + ], + [ + 40.97394959200011, + 35.52532976300006 + ], + [ + 40.947250548000056, + 35.35742163499998 + ], + [ + 40.97043958600011, + 35.250857303000146 + ], + [ + 41.050262462000035, + 35.27583470400009 + ], + [ + 41.206069469000056, + 35.228530092000085 + ], + [ + 41.239730522000116, + 35.34456714800018 + ], + [ + 41.771621455, + 35.51140993700011 + ], + [ + 42.31426251400012, + 35.629697031000035 + ], + [ + 42.73101862000004, + 35.66888427200013 + ], + [ + 43.44662846500006, + 35.689540634000025 + ], + [ + 43.954311624000184, + 35.63276011400012 + ], + [ + 44.31307552100003, + 35.49017337900017 + ], + [ + 44.76898148400011, + 35.239374598000154 + ], + [ + 44.78865850500006, + 35.24787753600003 + ], + [ + 45.09349860000009, + 35.06185510900019 + ], + [ + 45.17169153100019, + 34.98352219999998 + ], + [ + 45.31828649200014, + 34.91580581000011 + ], + [ + 45.49341160600011, + 34.80428576200018 + ], + [ + 45.7143366140001, + 34.54478271000016 + ], + [ + 45.770076604999986, + 34.499781613000096 + ] + ], + [ + [ + 41.44011651400018, + 36.674060710000106 + ], + [ + 41.52659260900015, + 36.71673566100009 + ], + [ + 41.64899857000006, + 36.733161341000084 + ], + [ + 41.74679157600019, + 36.71565556900009 + ], + [ + 41.90864947900019, + 36.763200741000105 + ], + [ + 41.960739487000126, + 36.690731309 + ], + [ + 41.655109480000135, + 36.65671587000014 + ], + [ + 41.44011651400018, + 36.674060710000106 + ] + ], + [ + [ + 40.55437046200018, + 36.363200396000025 + ], + [ + 40.51839449500005, + 36.34158262900007 + ], + [ + 40.21968458800012, + 36.34656080899998 + ], + [ + 40.20771757700004, + 36.287419106000186 + ], + [ + 40.09795353800018, + 36.31224848300013 + ], + [ + 40.03175360199998, + 36.3709402450001 + ], + [ + 40.042423597000095, + 36.437421813000185 + ], + [ + 40.220371569000065, + 36.548217330000114 + ], + [ + 40.48549250800011, + 36.61894768500002 + ], + [ + 40.60573157900018, + 36.61056293200005 + ], + [ + 40.70754253400008, + 36.56920092200005 + ], + [ + 40.879871614000024, + 36.54532138200011 + ], + [ + 40.918949555000154, + 36.486221589000024 + ], + [ + 40.864356542999985, + 36.40407424400007 + ], + [ + 40.698932475000106, + 36.33811587399998 + ], + [ + 40.55437046200018, + 36.363200396000025 + ] + ], + [ + [ + 39.61828253200008, + 35.4030937870001 + ], + [ + 39.47152345400019, + 35.29080746500017 + ], + [ + 39.38747459000007, + 35.26115313000014 + ], + [ + 39.27107945900008, + 35.27401868099997 + ], + [ + 39.157710531000134, + 35.34839985700012 + ], + [ + 39.23916251300017, + 35.41724244000005 + ], + [ + 39.30766261100007, + 35.41871514000002 + ], + [ + 39.39101058000006, + 35.51813490500018 + ], + [ + 39.473918499000035, + 35.56696552600005 + ], + [ + 39.753528563000145, + 35.59827981400019 + ], + [ + 39.84781659200007, + 35.661823525000045 + ], + [ + 39.90662754500005, + 35.61248948700006 + ], + [ + 39.833286563, + 35.52006877800005 + ], + [ + 39.61828253200008, + 35.4030937870001 + ] + ], + [ + [ + 40.7034494830001, + 35.59878691900013 + ], + [ + 40.80437061500004, + 35.624200346000066 + ], + [ + 40.71643858300013, + 35.466427950000025 + ], + [ + 40.61527253200006, + 35.41524737900011 + ], + [ + 40.54212550699998, + 35.43188294200013 + ], + [ + 40.53898246099999, + 35.556762068000126 + ], + [ + 40.7034494830001, + 35.59878691900013 + ] + ], + [ + [ + 38.13792058000007, + 35.00566568000005 + ], + [ + 38.186508461000074, + 34.96235471000011 + ], + [ + 38.16513846400005, + 34.88539559500009 + ], + [ + 38.080829593000146, + 34.853696578000154 + ], + [ + 38.01034952200007, + 35.01010658000013 + ], + [ + 38.09558157500015, + 35.08522653700004 + ], + [ + 38.13792058000007, + 35.00566568000005 + ] + ], + [ + [ + 38.840827484000044, + 34.97166231000017 + ], + [ + 38.766086556000175, + 34.87118206700018 + ], + [ + 38.67303452300018, + 34.81050362600007 + ], + [ + 38.49819556600016, + 34.77952847000006 + ], + [ + 38.44388552700008, + 34.93424549500003 + ], + [ + 38.59563452000009, + 34.98761491600004 + ], + [ + 38.840827484000044, + 34.97166231000017 + ] + ], + [ + [ + 37.645324512000116, + 34.877784827000085 + ], + [ + 37.85664754600003, + 35.042621659000076 + ], + [ + 37.9454264850001, + 34.99404702100014 + ], + [ + 37.826015546, + 34.88733650900008 + ], + [ + 37.63739355500019, + 34.827261229000044 + ], + [ + 37.645324512000116, + 34.877784827000085 + ] + ], + [ + [ + 37.86031747900017, + 34.339824055000065 + ], + [ + 37.74623458000002, + 34.20882764900017 + ], + [ + 37.63671160300004, + 34.199145880000174 + ], + [ + 37.57567559000017, + 34.14300640700003 + ], + [ + 37.34215560000007, + 33.994397610000135 + ], + [ + 37.273807550000186, + 33.92800455500003 + ], + [ + 37.139083544000016, + 33.85419938300015 + ], + [ + 37.11502848700002, + 33.899998102000154 + ], + [ + 37.30651859700015, + 34.02404457000017 + ], + [ + 37.50027048100014, + 34.19021999100016 + ], + [ + 37.835025589000054, + 34.38503486700017 + ], + [ + 37.86031747900017, + 34.339824055000065 + ] + ], + [ + [ + 37.00486345700011, + 33.86404912500012 + ], + [ + 36.93849554800016, + 33.773208741000076 + ], + [ + 36.88808460300015, + 33.829039089000105 + ], + [ + 37.00486345700011, + 33.86404912500012 + ] + ], + [ + [ + 36.721569261000184, + 32.26239833400007 + ], + [ + 36.62140583600012, + 32.29912492400018 + ], + [ + 36.54491054300013, + 32.388515485000084 + ], + [ + 36.52869457800017, + 32.46737008300016 + ], + [ + 36.59167452200006, + 32.72501805200005 + ], + [ + 36.56874850800011, + 32.835045619000084 + ], + [ + 36.652194546000146, + 32.973255324000036 + ], + [ + 36.766300579000074, + 32.94655024500014 + ], + [ + 36.80812459900005, + 32.857170994000114 + ], + [ + 36.79959148700016, + 32.79349384300019 + ], + [ + 36.98392848100008, + 32.593246991000115 + ], + [ + 37.02280056200004, + 32.43393500700006 + ], + [ + 36.93859001700008, + 32.29912492400018 + ], + [ + 36.82729732100012, + 32.255720773000064 + ], + [ + 36.721569261000184, + 32.26239833400007 + ] + ] + ], + [ + [ + [ + 33.09233455000009, + 37.75435006400005 + ], + [ + 32.984237502999974, + 37.902503388000014 + ], + [ + 32.97743961200018, + 38.00929319300019 + ], + [ + 32.730854581000074, + 37.98292288700003 + ], + [ + 32.71352348800008, + 37.9036284070001 + ], + [ + 32.553966584000136, + 37.78318548699997 + ], + [ + 32.54774453000016, + 37.62976849600017 + ], + [ + 32.65333555500001, + 37.55497476200014 + ], + [ + 32.699733581000146, + 37.488184908 + ], + [ + 32.81395360800008, + 37.472556514000075 + ], + [ + 32.897079456000085, + 37.418789455000024 + ], + [ + 32.99623854400005, + 37.456431744000156 + ], + [ + 33.08082954900004, + 37.444640753000044 + ], + [ + 33.06662356400017, + 37.55524181000004 + ], + [ + 33.167358450000165, + 37.64707913800015 + ], + [ + 33.40698247800009, + 37.63119945400007 + ], + [ + 33.406127524000055, + 37.51802247100011 + ], + [ + 33.20318957800009, + 37.36402243500004 + ], + [ + 33.20364354200018, + 37.297491916000126 + ], + [ + 33.303661607000095, + 37.219944392 + ], + [ + 33.46619760600004, + 37.338761893000026 + ], + [ + 33.39773556200009, + 37.387811114000044 + ], + [ + 33.563896567000086, + 37.46969543500006 + ], + [ + 33.705581575999986, + 37.443126981000034 + ], + [ + 33.825973534000184, + 37.48894799600009 + ], + [ + 33.930328564000035, + 37.497740780000186 + ], + [ + 34.08980550400008, + 37.57973239000012 + ], + [ + 34.31373257300004, + 37.627567240000076 + ], + [ + 34.39632449400017, + 37.7025631460001 + ], + [ + 34.37230648600013, + 37.76055703100019 + ], + [ + 34.2272035040001, + 37.75838192700013 + ], + [ + 34.12657557200009, + 37.71916082300004 + ], + [ + 34.047172462000105, + 37.73706624400012 + ], + [ + 33.96090658500009, + 37.67740939000004 + ], + [ + 33.79304556200009, + 37.641754282000136 + ], + [ + 33.624320534000105, + 37.68448522500012 + ], + [ + 33.73945955199997, + 37.83689135800017 + ], + [ + 33.59270047400008, + 37.861293090000174 + ], + [ + 33.52026356400006, + 37.744859235000035 + ], + [ + 33.47566245100006, + 37.83287458300009 + ], + [ + 33.34281146500018, + 37.85191307000014 + ], + [ + 33.27128248300011, + 37.77141679200014 + ], + [ + 33.09233455000009, + 37.75435006400005 + ] + ] + ], + [ + [ + [ + 46.74453353500007, + 39.1227390090001 + ], + [ + 46.57662959800007, + 38.94515682300016 + ], + [ + 46.15652056300013, + 38.90818911000008 + ], + [ + 46.13143956200014, + 38.98121225000011 + ], + [ + 45.96884556000009, + 39.09154743300013 + ], + [ + 45.74135551100005, + 39.49783336800016 + ], + [ + 45.737384501000065, + 39.54575287600005 + ], + [ + 45.640094577000184, + 39.63705962900002 + ], + [ + 45.409995576000085, + 39.66832798400003 + ], + [ + 45.30002953300004, + 39.70074549700007 + ], + [ + 45.36304049000006, + 39.80326019700004 + ], + [ + 45.57448556500003, + 39.831465971 + ], + [ + 45.66436756300004, + 39.89763808000015 + ], + [ + 45.58148160400009, + 40.02088927200009 + ], + [ + 45.50805646800018, + 40.04477317000004 + ], + [ + 45.26995459400007, + 40.052570184 + ], + [ + 45.00762952300005, + 40.108821304 + ], + [ + 44.87483955700009, + 40.199144190000084 + ], + [ + 44.81229346000015, + 40.37499215999998 + ], + [ + 44.90795561800019, + 40.4416452210001 + ], + [ + 44.99568547800004, + 40.40336976300006 + ], + [ + 45.12480148800017, + 40.24137255300002 + ], + [ + 45.28623962600011, + 40.185858370000176 + ], + [ + 45.38248047100018, + 40.193884378000064 + ], + [ + 45.65830660800009, + 40.168058728 + ], + [ + 45.760173554000175, + 40.20748317700003 + ], + [ + 45.72317851600019, + 40.29337404800009 + ], + [ + 45.11390652300014, + 40.62479802000007 + ], + [ + 44.99329747400003, + 40.63461406699997 + ], + [ + 44.81179859200006, + 40.57476577000017 + ], + [ + 44.75189949999998, + 40.47085380700008 + ], + [ + 44.686370620000105, + 40.43630527900007 + ], + [ + 44.44476360100009, + 40.41660965000017 + ], + [ + 44.174556524000025, + 40.44690218400012 + ], + [ + 44.05510350700018, + 40.51985743100016 + ], + [ + 44.02666454800004, + 40.63078705800018 + ], + [ + 44.06070748000013, + 40.71632723000005 + ], + [ + 44.16050359299999, + 40.764090499000076 + ], + [ + 44.38153052400003, + 40.79039224100006 + ], + [ + 44.401252471000134, + 40.85230868900004 + ], + [ + 44.1293634810001, + 40.9788362000001 + ], + [ + 44.031490512000175, + 41.04011981400015 + ], + [ + 44.011737552000056, + 41.15646666500004 + ], + [ + 44.073722564000036, + 41.295785296000076 + ], + [ + 44.190418605, + 41.30759506200002 + ], + [ + 44.35032251900003, + 41.035484789000066 + ], + [ + 44.520343558000036, + 40.958500529 + ], + [ + 44.48653749800013, + 41.206183086000124 + ], + [ + 44.3272625620001, + 41.66425895600008 + ], + [ + 44.072158501, + 41.72654119100008 + ], + [ + 43.730564598000115, + 41.56460064200019 + ], + [ + 43.50268160500002, + 41.5351441200001 + ], + [ + 43.254611469000054, + 41.615690186000165 + ], + [ + 43.13732550900005, + 41.633188247000135 + ], + [ + 42.762424605000035, + 41.623762126000145 + ], + [ + 42.83135955600011, + 41.51726099400014 + ], + [ + 42.94855851200009, + 41.50009837700003 + ], + [ + 43.120971578000194, + 41.50677439500015 + ], + [ + 43.154308586000184, + 41.31353498200019 + ], + [ + 43.00413857600017, + 41.278169217000084 + ], + [ + 42.978702518000034, + 41.199679064000065 + ], + [ + 43.10791056099998, + 41.17429631500016 + ], + [ + 43.23228861700011, + 40.92331799300007 + ], + [ + 43.10817358500009, + 40.79960127000004 + ], + [ + 43.06634554100009, + 40.652874881000116 + ], + [ + 42.928737490000174, + 40.5368063090001 + ], + [ + 43.01508349800014, + 40.44506336200004 + ], + [ + 43.10796755800004, + 40.440631179000036 + ], + [ + 43.145988541000065, + 40.597291632 + ], + [ + 43.33566246100014, + 40.68059165600005 + ], + [ + 43.50568752300006, + 40.6009454710001 + ], + [ + 43.500392507000186, + 40.53740813000002 + ], + [ + 43.40879054300018, + 40.442431276000036 + ], + [ + 43.41342154400007, + 40.35990909300017 + ], + [ + 43.263503495, + 40.30324189500004 + ], + [ + 43.244270547000156, + 40.24768144400008 + ], + [ + 43.04880154700015, + 40.183744286000035 + ], + [ + 42.78573249900012, + 40.13558505600008 + ], + [ + 42.573623577000035, + 40.30059505800017 + ], + [ + 42.42047849400012, + 40.25238536800009 + ], + [ + 42.363223558000186, + 40.295990878000055 + ], + [ + 42.40276351000006, + 40.36507804500013 + ], + [ + 42.34125861300009, + 40.42778356500003 + ], + [ + 42.253475611000056, + 40.37598005100011 + ], + [ + 42.14796857300013, + 40.35837118100011 + ], + [ + 42.04440362100007, + 40.255776518000175 + ], + [ + 41.76079555700011, + 40.284833056000025 + ], + [ + 41.697807566, + 40.335399402000064 + ], + [ + 41.580379617, + 40.365486076000025 + ], + [ + 41.47358360900017, + 40.325935730000026 + ], + [ + 41.40838246100003, + 40.238084668000056 + ], + [ + 41.186164461000146, + 40.11885310100007 + ], + [ + 41.111240472000134, + 40.180643485000076 + ], + [ + 41.11019860200008, + 40.292526973000065 + ], + [ + 41.04396061200015, + 40.36750024700018 + ], + [ + 40.9519655360001, + 40.40591769400015 + ], + [ + 40.78702946300018, + 40.18255439100011 + ], + [ + 40.718704547000016, + 39.98963298700005 + ], + [ + 40.738800495000135, + 39.78867233200015 + ], + [ + 40.718704547000016, + 39.66810016400018 + ], + [ + 40.62224158200007, + 39.587717209 + ], + [ + 40.590087595, + 39.51135220400016 + ], + [ + 40.574012614000026, + 39.330491856000094 + ], + [ + 40.61420450999998, + 39.18982005100014 + ], + [ + 40.762916572, + 39.105417303000024 + ], + [ + 40.99201158800008, + 39.02101438799997 + ], + [ + 41.056316543000094, + 38.92053716200019 + ], + [ + 41.012107535999974, + 38.739676981 + ], + [ + 41.09249149600015, + 38.69546579500019 + ], + [ + 41.34971953200005, + 38.65527423400016 + ], + [ + 41.357757609000146, + 38.55479281700008 + ], + [ + 41.06033751000018, + 38.42216227400007 + ], + [ + 41.028182517000175, + 38.245320211000035 + ], + [ + 41.07332258600019, + 38.14545989200019 + ], + [ + 41.312950470000146, + 38.098273801000175 + ], + [ + 41.45494845899998, + 38.13237607700006 + ], + [ + 41.71708259000019, + 38.13950890900014 + ], + [ + 42.01769250700016, + 38.17520642900001 + ], + [ + 42.2375144560001, + 38.141390143000194 + ], + [ + 42.38594052700017, + 38.05496568100011 + ], + [ + 42.59636653000018, + 37.97417989200005 + ], + [ + 42.851882478000164, + 37.962907070000085 + ], + [ + 43.25756055800008, + 37.79808113500019 + ], + [ + 43.53060155700018, + 37.74207527000016 + ], + [ + 43.726631473, + 37.68606839800009 + ], + [ + 43.985668492000116, + 37.57405247700012 + ], + [ + 44.24470551000013, + 37.518045605000054 + ], + [ + 44.363723506000156, + 37.55304893600015 + ], + [ + 44.25870848500011, + 37.77007786700011 + ], + [ + 44.20641362300006, + 37.91076509500016 + ], + [ + 44.187599603000194, + 38.03172283100008 + ], + [ + 44.21178860200007, + 38.149991987000135 + ], + [ + 44.321998559000065, + 38.343523426000104 + ], + [ + 44.437580478000086, + 38.2306294170001 + ], + [ + 44.5988615390001, + 38.174184507 + ], + [ + 44.64993247500013, + 38.04247664500008 + ], + [ + 44.70906847800018, + 37.78712146100003 + ], + [ + 44.74938962300007, + 37.53714226300002 + ], + [ + 44.89185347900002, + 37.46725429000014 + ], + [ + 44.92679562200004, + 37.391992007000056 + ], + [ + 44.918731560000026, + 36.92429237100015 + ], + [ + 45.09076358500016, + 36.983426195000106 + ], + [ + 45.28161248000009, + 36.93235626500018 + ], + [ + 45.35956149700007, + 36.72269737400018 + ], + [ + 45.46217359400009, + 36.60100018600019 + ], + [ + 45.58649850900014, + 36.54292248200005 + ], + [ + 45.75441351000018, + 36.595155150000096 + ], + [ + 45.869159586000194, + 36.60421213100011 + ], + [ + 46.00186958800015, + 36.53332872300018 + ], + [ + 46.192493513000045, + 36.55342400100005 + ], + [ + 46.371871605000024, + 36.46904103400004 + ], + [ + 46.45034449100018, + 36.299175731000105 + ], + [ + 46.567928512000094, + 36.15291185600006 + ], + [ + 46.61907957900007, + 36.05709329200005 + ], + [ + 46.68851861700006, + 36.19579987500009 + ], + [ + 46.71171553400012, + 36.37786805600018 + ], + [ + 46.66315447500017, + 36.661190799999986 + ], + [ + 46.646347586, + 36.89948981700019 + ], + [ + 46.66741952300009, + 37.079498061000095 + ], + [ + 46.746246461000055, + 37.083883975000106 + ], + [ + 46.76074262700007, + 36.895804797000096 + ], + [ + 46.81302256900011, + 36.75344286500007 + ], + [ + 46.939521581, + 36.763013657000045 + ], + [ + 47.01360654100017, + 36.64248708600019 + ], + [ + 47.26524753600012, + 36.72875531000011 + ], + [ + 47.329601609000065, + 36.795869041000174 + ], + [ + 47.407932506000066, + 36.80191993700004 + ], + [ + 47.42468256600006, + 36.72131251600018 + ], + [ + 47.50275446200004, + 36.64944909500008 + ], + [ + 47.746868508000034, + 36.52932284400015 + ], + [ + 47.81613555000018, + 36.83123128500006 + ], + [ + 47.97352556300012, + 36.84156801600005 + ], + [ + 48.09991460499998, + 36.75171501900007 + ], + [ + 48.29934355100005, + 36.648556255000074 + ], + [ + 48.64849860100003, + 36.50671416900008 + ], + [ + 48.76739153900019, + 36.562991105000094 + ], + [ + 48.78490049700008, + 36.69370202400006 + ], + [ + 48.62928057400006, + 36.73471719000014 + ], + [ + 48.464996612000164, + 36.80281998600003 + ], + [ + 48.273479512000165, + 37.01065966900012 + ], + [ + 48.237857597000186, + 37.11184952500008 + ], + [ + 48.24201150100015, + 37.2076305380001 + ], + [ + 48.28889450300005, + 37.29260191399999 + ], + [ + 48.410655561, + 37.34802372800016 + ], + [ + 48.355419489000155, + 37.58834898600003 + ], + [ + 48.29625649600018, + 37.525823341000034 + ], + [ + 48.18164453100013, + 37.5518048940001 + ], + [ + 47.94642653500006, + 37.716051807000156 + ], + [ + 47.78284447400006, + 37.680388318000155 + ], + [ + 47.50875054, + 37.692187188000105 + ], + [ + 47.28814656000009, + 37.67539957700012 + ], + [ + 47.16048061900017, + 37.70785782600012 + ], + [ + 46.97105446900014, + 37.69513627700013 + ], + [ + 46.74085957900019, + 37.73511745200017 + ], + [ + 46.85808150100007, + 37.83889748300015 + ], + [ + 47.45902255300018, + 37.955053395000164 + ], + [ + 47.55606051700016, + 37.944612393000114 + ], + [ + 47.59060653100016, + 38.02211029600011 + ], + [ + 47.43997551600012, + 38.09643481100005 + ], + [ + 47.13090859400006, + 38.15838076400007 + ], + [ + 46.93274648900007, + 38.23697317600016 + ], + [ + 46.72094350700007, + 38.40675549800005 + ], + [ + 46.72741349800009, + 38.457150685000045 + ], + [ + 46.44504159700017, + 38.44617575700005 + ], + [ + 46.31279746000013, + 38.45547547800004 + ], + [ + 46.15629559300015, + 38.50047674300015 + ], + [ + 45.92992754599999, + 38.52760628100009 + ], + [ + 45.79594047600011, + 38.60899892000009 + ], + [ + 45.769187621000185, + 38.66208335700003 + ], + [ + 45.89483251700011, + 38.713924422000105 + ], + [ + 46.14081153600017, + 38.770861349000086 + ], + [ + 46.24921049900007, + 38.74238182099998 + ], + [ + 46.5247726070001, + 38.799253873000055 + ], + [ + 46.65341956500009, + 38.934772819000045 + ], + [ + 46.722572614000114, + 39.02611829700015 + ], + [ + 46.74453353500007, + 39.1227390090001 + ] + ], + [ + [ + 44.99387347800007, + 38.14124496900007 + ], + [ + 45.104705540000054, + 38.26846264500011 + ], + [ + 45.340827607999984, + 38.26235190300008 + ], + [ + 45.45331559900018, + 38.194009049000044 + ], + [ + 45.50083160200012, + 38.128733134000186 + ], + [ + 45.45887749500008, + 37.94290751400018 + ], + [ + 45.40608961000004, + 37.895697282000185 + ], + [ + 45.41081247700009, + 37.80347505700013 + ], + [ + 45.47721056100016, + 37.74820110000002 + ], + [ + 45.67581958900007, + 37.750138996000146 + ], + [ + 45.798606592000056, + 37.66458457500005 + ], + [ + 45.692756566000185, + 37.64263505300005 + ], + [ + 45.72664661200008, + 37.55819458600013 + ], + [ + 45.86831653400009, + 37.40874575600009 + ], + [ + 45.80888347600006, + 37.3159815570001 + ], + [ + 45.740272569000126, + 37.27514224200013 + ], + [ + 45.622207595000134, + 37.26348452400009 + ], + [ + 45.57166254000015, + 37.12126022300015 + ], + [ + 45.458320601000025, + 37.111540400000024 + ], + [ + 45.34915150900014, + 37.20348049000006 + ], + [ + 45.28443148200006, + 37.35570658100016 + ], + [ + 45.31998449700018, + 37.387642973000084 + ], + [ + 45.26054356100002, + 37.50903170700013 + ], + [ + 45.29165651500006, + 37.566815541000096 + ], + [ + 45.23359658000004, + 37.660975830000154 + ], + [ + 45.263053605000096, + 37.74735402500005 + ], + [ + 45.16915852000017, + 37.830131689000154 + ], + [ + 45.05721250300007, + 37.854026148 + ], + [ + 45.043609513000035, + 37.943746375000046 + ], + [ + 45.084159484000054, + 38.00764145500011 + ], + [ + 45.17165347700006, + 38.02512794900008 + ], + [ + 45.204162521000114, + 38.113741597000114 + ], + [ + 45.114440618000174, + 38.149011808000125 + ], + [ + 44.99387347800007, + 38.14124496900007 + ] + ] + ], + [ + [ + [ + 33.86156460300009, + 39.966748212000084 + ], + [ + 33.77989553000009, + 39.939565533000064 + ], + [ + 33.48663352500006, + 39.95414115900013 + ], + [ + 33.41366151400007, + 39.905705829 + ], + [ + 33.4457814700001, + 39.82830683200001 + ], + [ + 33.38199652700018, + 39.68004705800013 + ], + [ + 33.379333597000084, + 39.556235787000105 + ], + [ + 33.25507758200001, + 39.495414518000075 + ], + [ + 33.21566754899999, + 39.346601538000186 + ], + [ + 33.37418358800005, + 39.40554878100011 + ], + [ + 33.33305761200006, + 39.217693399000154 + ], + [ + 33.16964352500014, + 39.16844217500005 + ], + [ + 33.11524145300018, + 39.18526499000012 + ], + [ + 33.03959645300006, + 39.11118522600003 + ], + [ + 33.16779749400007, + 39.07786347299998 + ], + [ + 33.186176494000165, + 39.02377639300016 + ], + [ + 33.05611751900011, + 38.9483727920001 + ], + [ + 32.99906559200019, + 38.98669401500007 + ], + [ + 32.859992552000165, + 39.00619082500015 + ], + [ + 32.79561651800003, + 38.894028555000034 + ], + [ + 32.94088747300003, + 38.80110795000007 + ], + [ + 32.967853564000166, + 38.68230084200013 + ], + [ + 32.88634458500013, + 38.663430161000065 + ], + [ + 32.866428512000084, + 38.57539972600006 + ], + [ + 32.80551554600004, + 38.54451308300008 + ], + [ + 32.801815606000105, + 38.44212394500016 + ], + [ + 32.71456954900003, + 38.37849993500009 + ], + [ + 32.73582857000014, + 38.19703793400009 + ], + [ + 32.78921157000019, + 38.19573706200009 + ], + [ + 32.91913257900018, + 38.31386892400013 + ], + [ + 33.03268456800009, + 38.36605716700018 + ], + [ + 33.07476054800014, + 38.289050276000125 + ], + [ + 33.00675950900006, + 38.17457342700004 + ], + [ + 33.23001451800019, + 38.061447574000056 + ], + [ + 33.29358253600003, + 38.08869093900006 + ], + [ + 33.42655958600005, + 38.08477306900011 + ], + [ + 33.55394356, + 38.172185591000186 + ], + [ + 33.60394647400011, + 38.10748551200004 + ], + [ + 33.85139450500003, + 38.08633394700007 + ], + [ + 33.89040757000009, + 38.13798021700012 + ], + [ + 34.00646960500006, + 38.17511540100014 + ], + [ + 34.04830955100016, + 38.25347211400015 + ], + [ + 34.12387861000008, + 38.29650027900004 + ], + [ + 34.27408952400009, + 38.26775370399997 + ], + [ + 34.26909256900012, + 38.4195990880001 + ], + [ + 34.12085358200005, + 38.44202084700015 + ], + [ + 34.00113653500006, + 38.48722093100008 + ], + [ + 33.829788473000065, + 38.654851283000085 + ], + [ + 33.711235505, + 38.72377818700011 + ], + [ + 33.508144506000065, + 38.925954051000076 + ], + [ + 33.58868453700006, + 39.03525423600013 + ], + [ + 33.45419354800015, + 39.15475150900005 + ], + [ + 33.62680057100005, + 39.175263032000146 + ], + [ + 33.878227492000065, + 39.01362574100017 + ], + [ + 33.98628648500005, + 38.96419531100014 + ], + [ + 34.02081255000007, + 39.02556157100008 + ], + [ + 34.14419550600013, + 39.006945699000084 + ], + [ + 34.22777146200002, + 38.89143452400003 + ], + [ + 34.28453454900006, + 38.90112450700008 + ], + [ + 34.418823534000126, + 38.789565063000055 + ], + [ + 34.777534457, + 38.72782128200009 + ], + [ + 34.778320512000164, + 38.77604924400009 + ], + [ + 34.62541146400014, + 38.796968966000065 + ], + [ + 34.52646259400012, + 38.86368288000017 + ], + [ + 34.414005449, + 38.87797687500006 + ], + [ + 34.30493945400019, + 38.98250507500006 + ], + [ + 34.29126756400018, + 39.036032412 + ], + [ + 34.14377557200004, + 39.06751081700014 + ], + [ + 34.01530848900006, + 39.14438376500004 + ], + [ + 33.85961547599999, + 39.14348371699998 + ], + [ + 33.73620653600011, + 39.21026971500004 + ], + [ + 33.52661553799999, + 39.4378823080001 + ], + [ + 33.539974448000066, + 39.508605454000076 + ], + [ + 33.48737347900004, + 39.549608719000105 + ], + [ + 33.52990761400008, + 39.643338513000174 + ], + [ + 33.551639542000146, + 39.779491634000124 + ], + [ + 33.64198355000019, + 39.86005245200016 + ], + [ + 33.76362659100005, + 39.88746814900003 + ], + [ + 33.86156460300009, + 39.966748212000084 + ] + ] + ], + [ + [ + [ + 31.03638847999997, + 39.49428145200011 + ], + [ + 31.018743568000048, + 39.350847643000066 + ], + [ + 31.181426585000054, + 39.24884709000008 + ], + [ + 31.338905447000172, + 39.08662641800004 + ], + [ + 31.584432514000127, + 39.070623856000054 + ], + [ + 31.708286533000148, + 38.9577595180001 + ], + [ + 31.819744555000057, + 38.897881381000104 + ], + [ + 31.915946508000104, + 38.894440609000185 + ], + [ + 31.854343543000027, + 39.00551574600013 + ], + [ + 31.977756506000162, + 39.00149075600018 + ], + [ + 32.102539575000094, + 39.03956823400017 + ], + [ + 32.009258548, + 39.12008412500012 + ], + [ + 32.016143611000075, + 39.19646086500018 + ], + [ + 32.172687555000095, + 39.19994371400014 + ], + [ + 32.28170057600016, + 39.094446398000116 + ], + [ + 32.42609059300008, + 39.04466929200004 + ], + [ + 32.43298755800009, + 39.11038408400003 + ], + [ + 32.33643758900007, + 39.165860213000144 + ], + [ + 32.44333652700004, + 39.23471419499998 + ], + [ + 32.43590546600012, + 39.27966265400016 + ], + [ + 32.30854747700005, + 39.30295411900005 + ], + [ + 32.245239465000054, + 39.3690504540001 + ], + [ + 32.11000047500016, + 39.393178098000135 + ], + [ + 32.117504457, + 39.480090890000156 + ], + [ + 32.33630750200001, + 39.56592845200015 + ], + [ + 32.21379861100013, + 39.63093363200005 + ], + [ + 32.338699529000166, + 39.73234627800019 + ], + [ + 32.40054657600018, + 39.69363864899998 + ], + [ + 32.43866747100009, + 39.533855100000096 + ], + [ + 32.50659961100007, + 39.642797377000136 + ], + [ + 32.46928455200003, + 39.728230429000064 + ], + [ + 32.55248650800007, + 39.79111431600006 + ], + [ + 32.43169758300019, + 39.84705580800005 + ], + [ + 32.28897858300007, + 39.84215759200009 + ], + [ + 32.11098048700006, + 39.89031028500017 + ], + [ + 31.87210244900018, + 39.82485499700016 + ], + [ + 31.85962447700018, + 39.732464128000174 + ], + [ + 31.615077590000112, + 39.746018168000035 + ], + [ + 31.508583498, + 39.78088772399997 + ], + [ + 31.37983746599997, + 39.76694861900012 + ], + [ + 31.202453595000065, + 39.813308255000095 + ], + [ + 31.100975570000116, + 39.768493739000064 + ], + [ + 31.215332557000067, + 39.63898662900016 + ], + [ + 31.467300446000024, + 39.71639652200014 + ], + [ + 31.70349845400017, + 39.62843867400005 + ], + [ + 31.672315595000157, + 39.55664750600016 + ], + [ + 31.841863559000046, + 39.54373082500018 + ], + [ + 31.878978459000166, + 39.42668643200011 + ], + [ + 32.016639484000166, + 39.32370201100008 + ], + [ + 31.984809542000164, + 39.267275710000035 + ], + [ + 31.860864496000033, + 39.23502717500014 + ], + [ + 31.761007529999972, + 39.24195012400014 + ], + [ + 31.493312509000134, + 39.30361411000001 + ], + [ + 31.485448607000137, + 39.37740134500012 + ], + [ + 31.364688517000047, + 39.43516925400013 + ], + [ + 31.03638847999997, + 39.49428145200011 + ] + ] + ], + [ + [ + [ + 33.88423949600008, + 39.557520733 + ], + [ + 34.04449461100012, + 39.58792726000007 + ], + [ + 33.9304995550001, + 39.72621541900014 + ], + [ + 33.8745235290001, + 39.73763324700019 + ], + [ + 33.814331573000175, + 39.622464892000096 + ], + [ + 33.743595519000166, + 39.605729919000055 + ], + [ + 33.71669346500005, + 39.512817361000145 + ], + [ + 33.82704960300015, + 39.469177988000126 + ], + [ + 33.88423949600008, + 39.557520733 + ] + ] + ], + [ + [ + [ + 34.24485746900001, + 40.16908450500006 + ], + [ + 34.188632501000086, + 40.22622477800019 + ], + [ + 34.02966350400004, + 40.25351457800008 + ], + [ + 33.97307945500012, + 40.11813628000016 + ], + [ + 34.0010074540001, + 39.97304603900005 + ], + [ + 34.0728914930001, + 40.0076064700001 + ], + [ + 34.11616860100008, + 40.12855414800009 + ], + [ + 34.24485746900001, + 40.16908450500006 + ] + ] + ], + [ + [ + [ + 86.64571359799999, + 51.30914127600005 + ], + [ + 86.39106752300012, + 51.282990912000116 + ], + [ + 86.16607662200005, + 51.4967054710001 + ], + [ + 86.05461860000014, + 51.65481599300006 + ], + [ + 85.90931663200018, + 51.808409842000174 + ], + [ + 86.37342864600004, + 52.086463890000175 + ], + [ + 86.30538150600012, + 52.16323625600006 + ], + [ + 85.75005359800008, + 52.440451611000015 + ], + [ + 85.6753695000001, + 52.53183514199998 + ], + [ + 85.70765659100016, + 52.77938727700018 + ], + [ + 85.6962206570002, + 52.901249756000084 + ], + [ + 85.62206260700003, + 53.06430509700016 + ], + [ + 85.33173359700015, + 53.31960848100016 + ], + [ + 84.75935354600006, + 53.57496617900006 + ], + [ + 84.66741161100009, + 53.63032613500019 + ], + [ + 84.59264352600019, + 53.78204059400002 + ], + [ + 84.59165965800014, + 53.90179452100011 + ], + [ + 84.54662352500014, + 54.094806785 + ], + [ + 84.34573361300016, + 54.19195119900013 + ], + [ + 83.85418662400008, + 54.32455240400003 + ], + [ + 83.71064753800016, + 54.41754559700013 + ], + [ + 83.43908661500012, + 54.71825810800004 + ], + [ + 83.29139764900003, + 54.85598753000011 + ], + [ + 82.96186061100019, + 55.050122466 + ], + [ + 82.52340660800007, + 55.107012789000066 + ], + [ + 82.08651750600006, + 55.12858127000004 + ], + [ + 81.82002260600007, + 55.179012667 + ], + [ + 81.72870663200013, + 55.27460810500003 + ], + [ + 81.71234163700012, + 55.401320521 + ], + [ + 81.8427885260001, + 55.49341299400004 + ], + [ + 82.42106658700004, + 55.62896077400006 + ], + [ + 82.64489760100014, + 55.69584953500015 + ], + [ + 82.85376758700016, + 55.78970120200006 + ], + [ + 82.84647365500007, + 55.87929167700014 + ], + [ + 82.59664164300017, + 55.93425516900004 + ], + [ + 82.07965054800013, + 55.86234296600014 + ], + [ + 81.66652665700008, + 55.830271122000056 + ], + [ + 81.22778364600003, + 55.754628301000025 + ], + [ + 80.90218358800018, + 55.77898996800019 + ], + [ + 80.39089956400011, + 55.79107114000004 + ], + [ + 80.03070051800012, + 55.87620160400019 + ], + [ + 79.50681262600011, + 55.90203228300004 + ], + [ + 78.77198056100019, + 55.818124906000094 + ], + [ + 78.26914951900017, + 55.81519995700012 + ], + [ + 77.80153655100014, + 55.801019453000094 + ], + [ + 77.33339653000019, + 55.83474253200018 + ], + [ + 76.77256757900011, + 55.97336512900017 + ], + [ + 76.35285953500005, + 56.021187407000184 + ], + [ + 76.01817349300012, + 56.027405773000055 + ], + [ + 75.31120254000007, + 55.965404165000166 + ], + [ + 74.69451155700006, + 55.970225100000164 + ], + [ + 74.38253058300012, + 56.04329819700018 + ], + [ + 74.10513250300005, + 56.067937807000135 + ], + [ + 73.14804052900007, + 56.015907479000134 + ], + [ + 72.78569051900013, + 55.95849479399999 + ], + [ + 72.28488957400009, + 55.86173226000005 + ], + [ + 71.74677256300004, + 55.79348931900006 + ], + [ + 71.16928860200005, + 55.81718278000017 + ], + [ + 70.87957750700019, + 55.93631510500012 + ], + [ + 70.44474750400008, + 56.00948727600013 + ], + [ + 69.53591148800012, + 56.32042822400018 + ], + [ + 69.16899149700009, + 56.42944040700013 + ], + [ + 68.78594958500014, + 56.509490600000106 + ], + [ + 67.65318264400003, + 56.56232106500016 + ], + [ + 67.21820059300018, + 56.507563600000196 + ], + [ + 66.17269161100006, + 56.33113644000014 + ], + [ + 65.69589258000002, + 56.20286784100006 + ], + [ + 65.16921955000015, + 55.962916081000174 + ], + [ + 64.22277862800019, + 55.50082142300005 + ], + [ + 63.74956554300019, + 55.41052888000013 + ], + [ + 63.21871161900003, + 55.37177079200012 + ], + [ + 62.46158956000005, + 55.46083119500008 + ], + [ + 62.07960158900016, + 55.551344686000164 + ], + [ + 61.74325559500005, + 55.53119894900016 + ], + [ + 61.394370610000124, + 55.4482228010001 + ], + [ + 61.08617054500013, + 55.40957569000011 + ], + [ + 60.035427567000056, + 54.768243252000104 + ], + [ + 59.58234060500007, + 54.622247598000115 + ], + [ + 59.126579481000135, + 54.42473659900003 + ], + [ + 58.97484959900004, + 54.37625466500015 + ], + [ + 58.814468587000135, + 54.202681376000044 + ], + [ + 58.59902953500017, + 53.99938367900006 + ], + [ + 58.22137852900005, + 53.597637550000115 + ], + [ + 58.15095159900005, + 53.417690662000155 + ], + [ + 58.17092148299997, + 53.17010717900001 + ], + [ + 58.13220547300011, + 52.93411838300011 + ], + [ + 58.06276358400015, + 52.730458252000176 + ], + [ + 58.028270544000065, + 52.553861610000126 + ], + [ + 57.98086551700004, + 52.08017360700006 + ], + [ + 57.92279049500013, + 51.889878421000105 + ], + [ + 57.81198156700009, + 51.69300176400009 + ], + [ + 57.674690519000194, + 51.568792520000045 + ], + [ + 57.567024637000145, + 51.51057567700002 + ], + [ + 57.36771756400009, + 51.502908414000046 + ], + [ + 57.215160556000114, + 51.53267506700013 + ], + [ + 56.966060619000075, + 51.63003154300003 + ], + [ + 56.711563575000014, + 51.78849242900003 + ], + [ + 56.5708615960001, + 51.92590082300006 + ], + [ + 56.46678149200005, + 52.06099329800003 + ], + [ + 56.22683358800015, + 52.16786340200014 + ], + [ + 56.101295477000065, + 52.392469741000184 + ], + [ + 56.016662562000135, + 52.499508824000145 + ], + [ + 55.81929757600017, + 52.587622408000186 + ], + [ + 55.619293631, + 52.608820911000066 + ], + [ + 55.51663962500004, + 52.708378643 + ], + [ + 55.50890363100018, + 52.76828209300004 + ], + [ + 55.603767497000035, + 52.904820782000115 + ], + [ + 55.848926598000105, + 52.959280018000015 + ], + [ + 55.860248538000064, + 53.166522239000074 + ], + [ + 55.92060461100016, + 53.550967616000094 + ], + [ + 55.71598458400018, + 53.63284037000011 + ], + [ + 55.617507616000125, + 53.73706766000009 + ], + [ + 55.61177858500014, + 53.88325090100005 + ], + [ + 55.741336489, + 54.078640608000114 + ], + [ + 55.710823511000115, + 54.193446195000035 + ], + [ + 55.57669059700004, + 54.28390252100007 + ], + [ + 54.993579530000034, + 54.538951597000164 + ], + [ + 54.92702856000011, + 54.585468645 + ], + [ + 54.868946497000024, + 54.72931735900016 + ], + [ + 54.74764258800019, + 54.858291379000036 + ], + [ + 54.54321651900011, + 54.84281503300008 + ], + [ + 54.448337566000134, + 54.70867960400011 + ], + [ + 54.50135763000014, + 54.59407484800005 + ], + [ + 54.69005556000013, + 54.38161757500018 + ], + [ + 54.7240674790001, + 54.26485883700002 + ], + [ + 54.70126350600003, + 54.05732710500013 + ], + [ + 54.72753557600009, + 53.939789185000166 + ], + [ + 54.81188954099997, + 53.83203277900009 + ], + [ + 55.08922559500007, + 53.58046001300005 + ], + [ + 55.18453956800016, + 53.47555697400003 + ], + [ + 55.24328262800009, + 53.361739446000115 + ], + [ + 55.258830556000134, + 53.1545428230001 + ], + [ + 55.20605859600005, + 53.00921202100005 + ], + [ + 55.04603549100017, + 52.94489868400012 + ], + [ + 54.90230161000005, + 52.96926001500003 + ], + [ + 54.73526754600016, + 53.03824257500008 + ], + [ + 54.558704600000056, + 53.18229949500005 + ], + [ + 54.54615052000014, + 53.270234377 + ], + [ + 54.676731518999986, + 53.3985063290001 + ], + [ + 54.651252545000034, + 53.456033510000054 + ], + [ + 54.47470049500009, + 53.510328629000185 + ], + [ + 54.27014148900014, + 53.48550193500017 + ], + [ + 53.82934155900017, + 53.40391919500013 + ], + [ + 53.62664450900007, + 53.42336386900013 + ], + [ + 53.53998552100012, + 53.45611347400012 + ], + [ + 53.26073856100004, + 53.63098612600004 + ], + [ + 53.03179559300008, + 53.69812684700014 + ], + [ + 52.72130156800017, + 53.707652041000074 + ], + [ + 52.517070629000045, + 53.688959559000125 + ], + [ + 52.016235486000085, + 53.60786481300016 + ], + [ + 51.77920146600019, + 53.550059353000165 + ], + [ + 51.2081375410001, + 53.2967848940001 + ], + [ + 51.01916853900002, + 53.24920284100017 + ], + [ + 50.57443246800011, + 53.20046995300015 + ], + [ + 50.43313554100013, + 53.164450233000025 + ], + [ + 50.38149262400009, + 53.114149091000115 + ], + [ + 50.17588051500013, + 53.15732092100012 + ], + [ + 49.992946484000186, + 53.225341574000026 + ], + [ + 49.63526553000014, + 53.21587035900018 + ], + [ + 49.46024351200015, + 53.24488901100011 + ], + [ + 49.152282499000194, + 53.211147156000095 + ], + [ + 49.02219050000008, + 53.163657305000186 + ], + [ + 48.78861954700011, + 53.033908461000124 + ], + [ + 48.64458056400014, + 52.91125188100017 + ], + [ + 48.547573614000044, + 52.91306404800008 + ], + [ + 48.422496508000165, + 52.73788931200005 + ], + [ + 48.253379541000186, + 52.61197971500013 + ], + [ + 48.18938454800008, + 52.51336394200007 + ], + [ + 48.04681357200013, + 52.523866132000194 + ], + [ + 48.041999510000096, + 52.456927750000034 + ], + [ + 47.93664552399997, + 52.39671567800019 + ], + [ + 47.688938492000034, + 52.36139115300017 + ], + [ + 47.487255485000105, + 52.27555442900007 + ], + [ + 47.40058157700014, + 52.180357467000135 + ], + [ + 47.293281482000054, + 51.963888447000045 + ], + [ + 47.07326155200019, + 51.93950414900007 + ], + [ + 46.985038501000076, + 51.967969595000056 + ], + [ + 46.937530544000026, + 52.05035733300008 + ], + [ + 46.96537355000004, + 52.10760908500009 + ], + [ + 47.11183959700014, + 52.227015498000185 + ], + [ + 47.33797060400019, + 52.34166451100009 + ], + [ + 47.46939448800009, + 52.467144116000156 + ], + [ + 47.60409955100016, + 52.53672531200016 + ], + [ + 47.30767052700003, + 52.52229402200015 + ], + [ + 47.16698061700009, + 52.49644859100016 + ], + [ + 47.07868548200008, + 52.52394626299997 + ], + [ + 46.97281651200018, + 52.66117092600018 + ], + [ + 46.81872947200003, + 52.64332551900003 + ], + [ + 46.70947253700007, + 52.58273542300003 + ], + [ + 46.690906622, + 52.526307277000114 + ], + [ + 46.78417960200005, + 52.41902411300009 + ], + [ + 46.745876484000064, + 52.368082258000186 + ], + [ + 46.38760359899999, + 52.263187099000106 + ], + [ + 46.38095859400005, + 52.145719084 + ], + [ + 46.23690050000016, + 52.074756551000064 + ], + [ + 46.039184480000074, + 52.08485473200005 + ], + [ + 45.76106656200017, + 52.14723402900006 + ], + [ + 45.78380146899997, + 52.20512314100006 + ], + [ + 45.69289352600015, + 52.276748515000065 + ], + [ + 45.548347606, + 52.29475066400005 + ], + [ + 45.15833647700009, + 52.23314267000018 + ], + [ + 44.81206849000017, + 52.23242149100008 + ], + [ + 44.72750849800019, + 52.198095921 + ], + [ + 44.63145456900014, + 52.09273204500016 + ], + [ + 44.49948150400019, + 52.05440931300012 + ], + [ + 43.74093250900006, + 51.90296659500012 + ], + [ + 43.64072048600008, + 51.901272612000014 + ], + [ + 43.369255620000104, + 51.624129678000145 + ], + [ + 43.14628257900006, + 51.51070559600004 + ], + [ + 42.90190550900013, + 51.508130675000075 + ], + [ + 42.79177048600013, + 51.56671045600012 + ], + [ + 42.65848548500014, + 51.591151080000145 + ], + [ + 42.49222557400009, + 51.443871485000045 + ], + [ + 42.19419460100005, + 51.114661006000176 + ], + [ + 41.957832475000146, + 50.955726711000125 + ], + [ + 41.664775491000114, + 50.869143327000074 + ], + [ + 41.33841754100007, + 50.88246451800012 + ], + [ + 40.80558347600015, + 51.02899275900006 + ], + [ + 40.48588159600013, + 51.06229623900009 + ], + [ + 40.2327885200001, + 51.05563530800009 + ], + [ + 39.95970946700004, + 50.942405352000094 + ], + [ + 39.77987657300008, + 50.9823690930001 + ], + [ + 39.540103515000055, + 50.86248306700003 + ], + [ + 39.44019659300017, + 50.78255592000011 + ], + [ + 39.287006584000096, + 50.75591370600017 + ], + [ + 39.16712156400013, + 50.76923472900006 + ], + [ + 39.040573601000176, + 50.82917975400005 + ], + [ + 38.880722493000064, + 50.749253613000064 + ], + [ + 38.78081557200011, + 50.73593225399998 + ], + [ + 38.67424755200011, + 50.636023824000176 + ], + [ + 38.57434448599997, + 50.616042373000084 + ], + [ + 38.228000558000076, + 50.60272118199998 + ], + [ + 38.08147449699999, + 50.57607879900013 + ], + [ + 37.61524152600009, + 50.39624724600003 + ], + [ + 37.48869758700005, + 50.32298136500009 + ], + [ + 36.902580601000125, + 50.2497151500001 + ], + [ + 36.88259848000013, + 50.03657743300005 + ], + [ + 36.915901457000075, + 49.836764931 + ], + [ + 36.86261753100007, + 49.783480167000164 + ], + [ + 36.582878553000114, + 49.71021411900006 + ], + [ + 36.47631455700014, + 49.58366464800014 + ], + [ + 36.54024551100014, + 49.39045943200006 + ], + [ + 36.38428846800008, + 49.364774096000076 + ], + [ + 36.265869610000095, + 49.442530162000025 + ], + [ + 36.19485846200013, + 49.57623375500003 + ], + [ + 36.10241646300017, + 49.679490756000064 + ], + [ + 35.93865553300003, + 49.58800194700012 + ], + [ + 36.007320587000095, + 49.51922608500013 + ], + [ + 35.82781961500001, + 49.450926314000185 + ], + [ + 35.70684058900014, + 49.35001088200016 + ], + [ + 35.48048058800015, + 49.25876699300005 + ], + [ + 35.350200499000096, + 49.25187002800004 + ], + [ + 35.1593516050001, + 49.15637886000013 + ], + [ + 34.77941150000015, + 49.17011210600009 + ], + [ + 34.48295247000004, + 49.049737583000194 + ], + [ + 34.415657522, + 48.87993279700004 + ], + [ + 34.202892465000104, + 48.70805214900008 + ], + [ + 33.81056558400002, + 48.87678874500017 + ], + [ + 33.651428614000054, + 48.886299020000195 + ], + [ + 33.53772759500009, + 48.84243752599997 + ], + [ + 33.331893533000084, + 48.81725225399998 + ], + [ + 33.045516590999966, + 48.73467542100008 + ], + [ + 32.93286548900011, + 48.796581140000114 + ], + [ + 32.618698514000016, + 48.69285408200017 + ], + [ + 32.80634351000015, + 48.63427145200018 + ], + [ + 32.72006958600008, + 48.59300315200011 + ], + [ + 32.53404246500003, + 48.62873637900003 + ], + [ + 32.45029451200014, + 48.55244865400016 + ], + [ + 32.3500325330001, + 48.531464392000146 + ], + [ + 32.21479756600007, + 48.564106708 + ], + [ + 31.86505360300015, + 48.459182882000164 + ], + [ + 31.440696453000157, + 48.4008892600001 + ], + [ + 31.186548599, + 48.28197737900007 + ], + [ + 31.09328249200007, + 48.38690103700009 + ], + [ + 30.902088598000148, + 48.38457019800006 + ], + [ + 30.706230510000125, + 48.477837143000045 + ], + [ + 30.689908598000045, + 48.36591593700018 + ], + [ + 30.612964570000088, + 48.198037648000195 + ], + [ + 30.489387490000183, + 48.1793832190001 + ], + [ + 30.30285846000004, + 48.26099211100012 + ], + [ + 30.151300575, + 48.13974503200018 + ], + [ + 30.316846515000066, + 48.11176389200011 + ], + [ + 30.34715849500003, + 48.04181741300005 + ], + [ + 30.232908461000193, + 48.02083197700006 + ], + [ + 30.111663561000114, + 47.955542483000045 + ], + [ + 30.165290474000187, + 47.86694174300004 + ], + [ + 30.291198562000034, + 47.834299595000175 + ], + [ + 30.237571480999975, + 47.76434909200009 + ], + [ + 30.141975540000033, + 47.792330232000154 + ], + [ + 30.072025540000084, + 47.74569499900019 + ], + [ + 29.92300049900018, + 47.73876383600003 + ], + [ + 29.750791448000143, + 47.65290146400014 + ], + [ + 29.655258539000044, + 47.66244224900004 + ], + [ + 29.656263529000057, + 47.772734013000104 + ], + [ + 29.438354498000137, + 47.75283202200018 + ], + [ + 29.48867056000006, + 47.92486538800017 + ], + [ + 29.30956454400018, + 47.92762320200006 + ], + [ + 29.19135255200007, + 48.01439702200008 + ], + [ + 29.023813562000157, + 48.08772375500013 + ], + [ + 28.795087517000127, + 48.11879077700007 + ], + [ + 28.883840473000134, + 48.16956817800002 + ], + [ + 28.707660579000105, + 48.31122435400016 + ], + [ + 28.687305463000087, + 48.373614212000064 + ], + [ + 28.50506947600013, + 48.37537692600006 + ], + [ + 28.39307249799998, + 48.323816655000144 + ], + [ + 28.34787358799997, + 48.38343730000014 + ], + [ + 28.081094541000027, + 48.39512938400014 + ], + [ + 28.03629846500013, + 48.329153580000195 + ], + [ + 28.179176554000037, + 48.325872568000136 + ], + [ + 28.214742478000062, + 48.147550092000074 + ], + [ + 28.29113045000014, + 48.07435244100009 + ], + [ + 28.464853608000112, + 48.03143324100006 + ], + [ + 28.776296464000154, + 48.037682116999974 + ], + [ + 28.876886511000123, + 48.00390187400018 + ], + [ + 29.036201512, + 47.875299842000175 + ], + [ + 28.97251849400004, + 47.695309535000035 + ], + [ + 29.03226050899997, + 47.52596642500009 + ], + [ + 29.117303466000067, + 47.46678499199999 + ], + [ + 29.070531608000124, + 47.337138239000126 + ], + [ + 29.192169452000144, + 47.20687357300005 + ], + [ + 29.364419574000124, + 47.101334851000104 + ], + [ + 29.492204538000067, + 46.87737676800009 + ], + [ + 29.506551506000164, + 46.79193835300015 + ], + [ + 29.704727525000067, + 46.56481409000014 + ], + [ + 29.35211745500004, + 46.547141013999976 + ], + [ + 29.149919463000174, + 46.46920574300003 + ], + [ + 29.072637478000104, + 46.46334293700005 + ], + [ + 28.8913895500001, + 46.52004098000003 + ], + [ + 28.650289469000143, + 46.540167103000044 + ], + [ + 28.581594576000043, + 46.50349292400006 + ], + [ + 28.551156532999983, + 46.35079023800006 + ], + [ + 28.57366160800018, + 46.1509986910001 + ], + [ + 28.565967523000154, + 46.025128154000015 + ], + [ + 28.523399525, + 45.90996197800007 + ], + [ + 28.411270448000096, + 45.716373710000084 + ], + [ + 28.290403571000127, + 45.57723914600007 + ], + [ + 28.164337568000064, + 45.55950521800003 + ], + [ + 28.006826520000118, + 45.395937909000054 + ], + [ + 27.74493445800016, + 45.39979090300017 + ], + [ + 27.498138539000024, + 45.288306896999984 + ], + [ + 27.376417547000187, + 45.16673174900018 + ], + [ + 27.305990448999978, + 45.132304758000146 + ], + [ + 27.09823257400012, + 45.091280707000124 + ], + [ + 26.790918475000012, + 45.13022587900019 + ], + [ + 26.79421457500007, + 44.993414779000034 + ], + [ + 26.829172475000064, + 44.96629664000005 + ], + [ + 27.070072563999986, + 44.926005669000176 + ], + [ + 26.97039949800012, + 44.88334966100007 + ], + [ + 26.92641646600015, + 44.81914495300009 + ], + [ + 27.001964571000144, + 44.72649692800013 + ], + [ + 26.91031449500008, + 44.62126096000003 + ], + [ + 26.78272851800017, + 44.631831881000096 + ], + [ + 26.807989562000046, + 44.51709318100012 + ], + [ + 26.93628146400016, + 44.43814403500005 + ], + [ + 27.110626558000092, + 44.39209335600003 + ], + [ + 27.18628647800017, + 44.34603815100013 + ], + [ + 27.171009454, + 44.2538984040001 + ], + [ + 27.250968451000062, + 44.200092453000025 + ], + [ + 27.487289506000025, + 44.11740464300004 + ], + [ + 27.684961605000126, + 44.12223479800008 + ], + [ + 27.75549548800018, + 44.066394894000155 + ], + [ + 27.81133254200006, + 43.94590000700009 + ], + [ + 27.93476646, + 43.81364950000011 + ], + [ + 28.055261515000097, + 43.740178599000046 + ], + [ + 28.357965567, + 43.719605888000046 + ], + [ + 28.522542559000158, + 43.657892114000106 + ], + [ + 28.583576561000143, + 43.601179151 + ], + [ + 28.606037547000142, + 43.83906225700014 + ], + [ + 28.677923598000177, + 43.98012616800003 + ], + [ + 28.65681645700016, + 44.05459971300007 + ], + [ + 28.644151569000144, + 44.30284838300008 + ], + [ + 28.80310447300019, + 44.463038958000084 + ], + [ + 28.760656503000064, + 44.498160977000055 + ], + [ + 28.776885544000038, + 44.633796096000026 + ], + [ + 28.825715495000168, + 44.76129875700008 + ], + [ + 28.932447465000052, + 44.790316906000044 + ], + [ + 28.95112452400008, + 44.84348583200011 + ], + [ + 28.87994758200017, + 44.902773884000055 + ], + [ + 28.878568591000032, + 44.978602950000095 + ], + [ + 29.010087525000188, + 45.035380789000044 + ], + [ + 29.05037849500019, + 44.86822082900011 + ], + [ + 29.13336151600015, + 44.81360887400007 + ], + [ + 28.985263513000064, + 44.76409898300017 + ], + [ + 29.013345571000116, + 44.707210001000135 + ], + [ + 29.17037750900016, + 44.79335283100016 + ], + [ + 29.542242488000056, + 44.833624859 + ], + [ + 29.581804568000166, + 44.859072820000165 + ], + [ + 29.691818556000158, + 45.117499971000086 + ], + [ + 29.636194570000157, + 45.24504387100012 + ], + [ + 29.774299500999973, + 45.35136009800016 + ], + [ + 29.760969593000027, + 45.40145102200012 + ], + [ + 29.609685460000094, + 45.580261325000095 + ], + [ + 29.612276474000055, + 45.69519465200011 + ], + [ + 29.681922546000067, + 45.702800558000035 + ], + [ + 29.735813490000055, + 45.61763723700017 + ], + [ + 29.94495052400009, + 45.724525613000026 + ], + [ + 29.99476853300007, + 45.806621661000065 + ], + [ + 30.213470492000113, + 45.84603487900006 + ], + [ + 30.319944467000028, + 45.92629294300008 + ], + [ + 30.65165845300004, + 46.24702210900017 + ], + [ + 30.68388351800013, + 46.32423938700015 + ], + [ + 30.76305361100009, + 46.37340344000006 + ], + [ + 30.79361151500018, + 46.44618082300008 + ], + [ + 30.74943553300011, + 46.50646782900009 + ], + [ + 31.015270610000073, + 46.601462453000124 + ], + [ + 31.196105477000117, + 46.622290309000164 + ], + [ + 31.34527753800006, + 46.600081283000065 + ], + [ + 31.42360659000019, + 46.62507544700003 + ], + [ + 31.578880509000044, + 46.60507823800009 + ], + [ + 31.653045600000155, + 46.65090864100017 + ], + [ + 31.814714575000096, + 46.61368444100009 + ], + [ + 31.989433503000043, + 46.65590542799998 + ], + [ + 32.13248459500011, + 46.5617431280001 + ], + [ + 32.2558284910001, + 46.59534316000014 + ], + [ + 32.375259546999985, + 46.555350083 + ], + [ + 32.35665859500017, + 46.45673984200005 + ], + [ + 32.1099925960001, + 46.507024891000185 + ], + [ + 31.870828567000103, + 46.51369303000007 + ], + [ + 31.76666246500008, + 46.55063526200007 + ], + [ + 31.59694250400014, + 46.538695073999975 + ], + [ + 31.614997459000165, + 46.491735963999986 + ], + [ + 31.778331583000124, + 46.491178903 + ], + [ + 32.06137051600018, + 46.38673955100012 + ], + [ + 31.788326500000153, + 46.28313201900011 + ], + [ + 32.066375518000086, + 46.25340794600015 + ], + [ + 32.230819574000066, + 46.184506858000134 + ], + [ + 32.26054347900015, + 46.12785072500009 + ], + [ + 32.52720652000005, + 46.072018532000186 + ], + [ + 32.634437549000154, + 46.10701465400018 + ], + [ + 32.81499044900016, + 46.126736770000036 + ], + [ + 32.910537607000094, + 46.10924239700017 + ], + [ + 33.230537549000076, + 46.15728461599997 + ], + [ + 33.435264528000175, + 46.04257625900016 + ], + [ + 33.58721150100007, + 46.15646067500012 + ], + [ + 33.64833049500015, + 46.088688629000046 + ], + [ + 33.627212458000145, + 45.99451124100011 + ], + [ + 33.687202577000164, + 45.902568972000154 + ], + [ + 33.55165848500002, + 45.83868797300005 + ], + [ + 32.93720245300011, + 45.65784053300018 + ], + [ + 32.71914657100018, + 45.52979623300013 + ], + [ + 32.536384537000174, + 45.46173400500004 + ], + [ + 32.48053759200013, + 45.39367999200016 + ], + [ + 32.50888049500014, + 45.33700910700014 + ], + [ + 32.65442654400016, + 45.30840603000007 + ], + [ + 32.72748555900006, + 45.353678867999974 + ], + [ + 32.93221253800016, + 45.34145704800005 + ], + [ + 33.25804159000012, + 45.155352981000135 + ], + [ + 33.40470846800008, + 45.18118583900008 + ], + [ + 33.566375599000025, + 45.08729092100009 + ], + [ + 33.62220745600007, + 44.91868877100012 + ], + [ + 33.78321057200009, + 45.01433483600016 + ], + [ + 34.03776159600005, + 45.077757680000104 + ], + [ + 34.35287857600008, + 45.19510180900005 + ], + [ + 34.55714756800006, + 45.24711889500003 + ], + [ + 34.69754059100018, + 45.25636597800013 + ], + [ + 34.90606658400003, + 45.16813571800009 + ], + [ + 35.192047565000166, + 45.098296863000144 + ], + [ + 35.34305559799998, + 45.02579792600005 + ], + [ + 35.51526649200008, + 45.113955934000046 + ], + [ + 35.641929455000025, + 45.10924094600017 + ], + [ + 35.78887947200013, + 45.048403919000066 + ], + [ + 35.83525050800017, + 44.98689969300011 + ], + [ + 35.98688550700018, + 44.99100079100015 + ], + [ + 36.02970848200016, + 45.03480092900003 + ], + [ + 36.23332955300009, + 45.00396273300004 + ], + [ + 36.456092545000104, + 45.08257576500006 + ], + [ + 36.40554061600011, + 45.14256571700014 + ], + [ + 36.43276956400007, + 45.27312794000005 + ], + [ + 36.50638547200015, + 45.34090015400017 + ], + [ + 36.625541602, + 45.33146196300004 + ], + [ + 36.586372466000114, + 45.423122098000135 + ], + [ + 36.39054857600007, + 45.43312405500018 + ], + [ + 36.31166045000009, + 45.46368715700015 + ], + [ + 36.13970956200018, + 45.45840018700005 + ], + [ + 36.00860553200005, + 45.356456128000104 + ], + [ + 35.863044563000074, + 45.402286195000045 + ], + [ + 35.721099548000154, + 45.33589515200009 + ], + [ + 35.50305154500006, + 45.2845109000001 + ], + [ + 35.311660509000035, + 45.38090111000014 + ], + [ + 35.05387859700011, + 45.651729455000066 + ], + [ + 34.86997947300017, + 45.932010909000155 + ], + [ + 34.843040539000185, + 45.90784102100014 + ], + [ + 35.00943757800019, + 45.66146436500014 + ], + [ + 35.38248457300017, + 45.304789909000135 + ], + [ + 35.33859256900013, + 45.28396892600017 + ], + [ + 35.04943048800004, + 45.37284392200013 + ], + [ + 35.083320534000165, + 45.52784324900017 + ], + [ + 34.95165257000008, + 45.66646132000017 + ], + [ + 34.71776545199998, + 45.727840656000126 + ], + [ + 34.7305374610001, + 45.81061966100009 + ], + [ + 34.60166150900017, + 45.873401960000194 + ], + [ + 34.370536564000076, + 45.90173011100012 + ], + [ + 34.41193361000012, + 45.95368600800009 + ], + [ + 34.27582558400002, + 46.00951820100016 + ], + [ + 34.165267610000114, + 45.98757605400016 + ], + [ + 34.006652498000165, + 46.09645563600009 + ], + [ + 33.929153589000066, + 46.048680464000086 + ], + [ + 33.69860045700017, + 46.17312389800014 + ], + [ + 33.73998258300003, + 46.235624062000056 + ], + [ + 33.973037546000114, + 46.20312977100008 + ], + [ + 34.03942858900018, + 46.12923172700016 + ], + [ + 34.13777161500019, + 46.12368475100004 + ], + [ + 34.152488561000155, + 46.27840194300006 + ], + [ + 34.46943648300004, + 46.13896663700001 + ], + [ + 34.404159562000075, + 46.01952032600019 + ], + [ + 34.57110544800014, + 45.98479125100005 + ], + [ + 34.63027145899997, + 46.0686843790001 + ], + [ + 34.621093610000116, + 46.15951286100005 + ], + [ + 34.771282563, + 46.13547657999999 + ], + [ + 34.88360559800003, + 46.22201285699998 + ], + [ + 35.029708541000105, + 46.246464881000065 + ], + [ + 35.119712579000065, + 46.29729223900006 + ], + [ + 35.216659515000174, + 46.402845545000105 + ], + [ + 35.307487494000156, + 46.32951931500003 + ], + [ + 35.51110051900008, + 46.45257386800017 + ], + [ + 35.653312582000126, + 46.50173808900007 + ], + [ + 35.72554748800013, + 46.56840422600004 + ], + [ + 35.907203615000014, + 46.64895548900006 + ], + [ + 36.2130505450001, + 46.658675647000166 + ], + [ + 36.254432503000146, + 46.61701842700006 + ], + [ + 36.37554161700018, + 46.706740665000154 + ], + [ + 36.61360158100018, + 46.77313221200012 + ], + [ + 36.74694056200019, + 46.760916929000075 + ], + [ + 36.80248257300008, + 46.715903762000096 + ], + [ + 36.92027245200018, + 46.82563025100018 + ], + [ + 37.23915860600016, + 46.93201487500011 + ], + [ + 37.37998949900009, + 46.93119093300015 + ], + [ + 37.56359860900005, + 47.08619076400004 + ], + [ + 37.74137860800005, + 47.06646848100007 + ], + [ + 37.835815499000034, + 47.090630825000176 + ], + [ + 38.219985615000155, + 47.10090787700017 + ], + [ + 38.44999660500014, + 47.13230296600011 + ], + [ + 38.55165853, + 47.10897193800008 + ], + [ + 38.75387546400003, + 47.15618317500008 + ], + [ + 38.844993457000044, + 47.15618317500008 + ], + [ + 38.97081755900007, + 47.25647180900006 + ], + [ + 39.063880489000155, + 47.273691758000155 + ], + [ + 39.25638548000012, + 47.25924186000003 + ], + [ + 39.2447125060001, + 47.14063390700011 + ], + [ + 39.29387655900018, + 47.06202054 + ], + [ + 39.26970650300018, + 47.00563128600015 + ], + [ + 39.06970960000007, + 47.0245143730001 + ], + [ + 38.93915559000004, + 46.94451212500013 + ], + [ + 38.69776147199997, + 46.85868864400015 + ], + [ + 38.41442850200019, + 46.82813241600019 + ], + [ + 38.3647156020001, + 46.74702392400013 + ], + [ + 38.492492519000166, + 46.73535111800015 + ], + [ + 38.59110259300019, + 46.6567375840001 + ], + [ + 38.466384567000034, + 46.637572530000114 + ], + [ + 38.3024824850001, + 46.675078697 + ], + [ + 38.11749254100016, + 46.67729872700005 + ], + [ + 38.01610554300004, + 46.6167362920001 + ], + [ + 37.809432453000056, + 46.63230064800001 + ], + [ + 37.766929499000184, + 46.59479448100012 + ], + [ + 37.82720946400002, + 46.473951912000075 + ], + [ + 37.99193548699998, + 46.34256524500012 + ], + [ + 38.073043476000066, + 46.39340735500008 + ], + [ + 38.272758580000016, + 46.26479090599997 + ], + [ + 38.308593563000045, + 46.20840182000012 + ], + [ + 38.557487473000094, + 46.10701465400018 + ], + [ + 38.56304148900011, + 46.032292167000094 + ], + [ + 38.44553357700016, + 46.02534926900012 + ], + [ + 38.252212524000186, + 46.13423672900018 + ], + [ + 37.91276556100013, + 45.98534831200004 + ], + [ + 37.8480374880001, + 45.77506681300008 + ], + [ + 37.59136953100011, + 45.62533936800014 + ], + [ + 37.65664645100014, + 45.50702226700014 + ], + [ + 37.72998056100016, + 45.44839806200014 + ], + [ + 37.70109551600018, + 45.330622935000065 + ], + [ + 37.60499548800016, + 45.31118312200016 + ], + [ + 37.51415258900016, + 45.35979011400008 + ], + [ + 37.426101534000054, + 45.31840111399998 + ], + [ + 37.16498546800017, + 45.324511857000175 + ], + [ + 37.24720758000018, + 45.2659030750001 + ], + [ + 37.11582158300013, + 45.23228778800012 + ], + [ + 37.089431495999975, + 45.34034292500013 + ], + [ + 36.83665458600012, + 45.43396325100014 + ], + [ + 36.75694251900006, + 45.34285313700019 + ], + [ + 36.79387653700013, + 45.287578006 + ], + [ + 36.75027454700012, + 45.20729379100004 + ], + [ + 36.58415947600014, + 45.199793831000136 + ], + [ + 36.629432482000084, + 45.123118696000176 + ], + [ + 36.82193747300005, + 45.10423577600011 + ], + [ + 37.19638055700017, + 44.98145564700013 + ], + [ + 37.30470257400009, + 44.907572690999984 + ], + [ + 37.33551746800009, + 44.80522495900016 + ], + [ + 37.438053457000194, + 44.89426373700019 + ], + [ + 37.44166957800013, + 44.953692772000124 + ], + [ + 37.31270561600019, + 45.06080578299998 + ], + [ + 37.39845650800015, + 45.13905688400013 + ], + [ + 37.7790525800001, + 45.05831769900004 + ], + [ + 37.88839752500007, + 44.95623265600011 + ], + [ + 38.061027515000035, + 44.924265921000085 + ], + [ + 38.34234949900002, + 44.95623265600011 + ], + [ + 38.45743554400008, + 44.89868887900019 + ], + [ + 38.566127539000036, + 44.95623265600011 + ], + [ + 38.853843574000166, + 44.937052849999986 + ], + [ + 38.94335559400008, + 44.95623265600011 + ], + [ + 39.21189148800016, + 44.91787287600005 + ], + [ + 39.339763456000185, + 44.91787287600005 + ], + [ + 39.403701619, + 44.975413636000155 + ], + [ + 39.672237513000084, + 44.975413636000155 + ], + [ + 39.870441528000185, + 44.91787287600005 + ], + [ + 40.05585861400016, + 44.89229482800005 + ], + [ + 40.29242358200014, + 44.81557392700006 + ], + [ + 40.407508454000094, + 44.758028977000095 + ], + [ + 40.78473651000007, + 44.42555927799998 + ], + [ + 41.129997495, + 44.23374948200012 + ], + [ + 41.32180745900013, + 44.18259858300013 + ], + [ + 41.53279857000018, + 44.18899162800017 + ], + [ + 41.57115952300012, + 44.169811654 + ], + [ + 41.59034352000015, + 43.997180825999976 + ], + [ + 41.77575658300003, + 44.19538450500005 + ], + [ + 41.86526860400005, + 44.10587365800012 + ], + [ + 41.967571576000125, + 44.1250538000001 + ], + [ + 41.99728760199997, + 44.064769811000076 + ], + [ + 42.19310746800005, + 44.06978990100015 + ], + [ + 42.31361358700019, + 44.02460104900007 + ], + [ + 42.41403549300003, + 43.878991130000145 + ], + [ + 42.51445756600015, + 43.828778333000116 + ], + [ + 42.639987463000125, + 43.80869344900009 + ], + [ + 42.92116946900006, + 43.81371337100012 + ], + [ + 43.202350470000056, + 43.7132926380001 + ], + [ + 43.46344759200019, + 43.547597500000165 + ], + [ + 43.51365653400012, + 43.48734469200019 + ], + [ + 43.94547257199997, + 43.331690067000125 + ], + [ + 44.01576656500009, + 43.28650155100007 + ], + [ + 44.146316551000155, + 43.110763048000194 + ], + [ + 44.25677846800005, + 43.150931978000074 + ], + [ + 44.33711649500003, + 43.27646154000007 + ], + [ + 44.47770649300003, + 43.28650155100007 + ], + [ + 44.55804452000018, + 43.2513537160001 + ], + [ + 44.703655613000194, + 43.105743127000096 + ], + [ + 44.854289477000066, + 43.11578732900017 + ], + [ + 45.00994460400017, + 43.20616469700008 + ], + [ + 45.20074454900009, + 43.090679170000044 + ], + [ + 45.39656860600007, + 43.02038568000012 + ], + [ + 45.61247654099998, + 43.00532172400017 + ], + [ + 45.707874502000095, + 43.03042653000011 + ], + [ + 45.84374951100017, + 43.18208281900007 + ], + [ + 46.07846057000012, + 43.34771207500006 + ], + [ + 46.4530144630001, + 43.315814240000066 + ], + [ + 46.825321503000055, + 43.23916173500004 + ], + [ + 46.90492259399997, + 43.02230463300015 + ], + [ + 46.80028962000006, + 42.889432357000146 + ], + [ + 46.645523477000154, + 42.81592289800011 + ], + [ + 46.203548572000045, + 42.72485922000004 + ], + [ + 46.176837626000065, + 42.642412809000064 + ], + [ + 46.29074450500008, + 42.61485177000003 + ], + [ + 46.533622555000136, + 42.654070527000044 + ], + [ + 46.694599520000054, + 42.744233989000065 + ], + [ + 46.78832646500007, + 42.687200335000114 + ], + [ + 46.789348554000185, + 42.63358582600006 + ], + [ + 46.7124295050001, + 42.566825141000095 + ], + [ + 46.755813565000096, + 42.45001980000012 + ], + [ + 46.70930858700018, + 42.401619338000046 + ], + [ + 46.74694450600015, + 42.32117184300006 + ], + [ + 47.007675507000044, + 42.23375831600015 + ], + [ + 47.15110747200009, + 42.28443195000017 + ], + [ + 47.18652352800018, + 42.38133228300006 + ], + [ + 47.26787962100019, + 42.39914332400019 + ], + [ + 47.37475257500017, + 42.3548625680001 + ], + [ + 47.44238246300006, + 42.4951355610001 + ], + [ + 47.57769353800012, + 42.470832736000034 + ], + [ + 47.74526555200009, + 42.23108448900018 + ], + [ + 47.86801148400019, + 42.01067211900016 + ], + [ + 47.99663547600011, + 41.89473296300014 + ], + [ + 48.11217850300005, + 41.86790115000008 + ], + [ + 48.250064498000086, + 41.924056716000166 + ], + [ + 48.321964464000075, + 42.04327286000006 + ], + [ + 48.14179662800012, + 42.29506405900014 + ], + [ + 47.9857026250001, + 42.41646201200018 + ], + [ + 47.877193523000074, + 42.56976216000004 + ], + [ + 47.73361252800015, + 42.687174351000124 + ], + [ + 47.623512541000025, + 43.02899557100011 + ], + [ + 47.544258462000016, + 43.103164350000156 + ], + [ + 47.552757543999974, + 43.20835086500017 + ], + [ + 47.629039568, + 43.343234295000116 + ], + [ + 47.564151568, + 43.530210583000155 + ], + [ + 47.695583498000076, + 43.91416628900009 + ], + [ + 47.57083546500019, + 43.90718919300008 + ], + [ + 47.51801254300011, + 43.701317749000054 + ], + [ + 47.210491580000166, + 44.21889155300005 + ], + [ + 47.11828947099997, + 44.25909753100012 + ], + [ + 46.96381351000008, + 44.44403819000007 + ], + [ + 46.76745653199998, + 44.502127964000124 + ], + [ + 46.67230952500006, + 44.49782100700003 + ], + [ + 46.74495648600015, + 44.68973088300004 + ], + [ + 46.594314575000055, + 44.788863987000184 + ], + [ + 46.21156351600007, + 44.74300692999998 + ], + [ + 45.99774954700018, + 44.766775996000035 + ], + [ + 45.80065546400016, + 44.82628566400018 + ], + [ + 45.75780147600017, + 44.878298726000025 + ], + [ + 45.82545852200013, + 45.01970595900002 + ], + [ + 45.81602452200008, + 45.13693173700011 + ], + [ + 45.71919258600008, + 45.235496045000104 + ], + [ + 45.367683562000025, + 45.45855709600016 + ], + [ + 45.17390452100017, + 45.619304230000125 + ], + [ + 44.959739519000095, + 45.94487394600014 + ], + [ + 44.76982855900013, + 46.27773005000017 + ], + [ + 44.65816451000006, + 46.503397035000035 + ], + [ + 44.59326561299997, + 46.76683405 + ], + [ + 44.58537254200019, + 46.91506985100017 + ], + [ + 44.64353959700014, + 47.20924950700015 + ], + [ + 44.619808585000044, + 47.47567316200019 + ], + [ + 44.699172468000086, + 47.58178386500009 + ], + [ + 44.83527747700015, + 47.661725261000015 + ], + [ + 45.086212547, + 47.73437674800016 + ], + [ + 45.48250155400018, + 47.67179242900005 + ], + [ + 45.86803456700011, + 47.763849028000095 + ], + [ + 46.19895160100009, + 47.89864226900016 + ], + [ + 46.32468450800013, + 48.02437601300005 + ], + [ + 46.32468450800013, + 48.11368686800006 + ], + [ + 46.391742583000166, + 48.21108056000003 + ], + [ + 46.486625559, + 48.27623929600003 + ], + [ + 46.568492614000036, + 48.255186134000155 + ], + [ + 46.695857476000185, + 48.13205782100016 + ], + [ + 46.832153592, + 48.118614924000155 + ], + [ + 46.95646660400007, + 48.157548362000114 + ], + [ + 46.99382357300004, + 48.21324376100006 + ], + [ + 46.91348252900008, + 48.41329146000004 + ], + [ + 46.970794462000015, + 48.494686110000146 + ], + [ + 46.83148957800012, + 48.61338911400003 + ], + [ + 46.83745548200011, + 48.66968784300019 + ], + [ + 46.94796349900008, + 48.765032830000166 + ], + [ + 46.969619487000045, + 48.883502985000064 + ], + [ + 47.04780956800016, + 48.916466160000084 + ], + [ + 47.23230749400011, + 48.90559801700016 + ], + [ + 47.38499861300011, + 48.84765241100007 + ], + [ + 47.454360538000174, + 48.88676488600004 + ], + [ + 47.43613861600005, + 48.97287486000016 + ], + [ + 47.233093549000046, + 49.17250011000016 + ], + [ + 47.25042749300019, + 49.257908015000055 + ], + [ + 47.33967548300012, + 49.27405625500012 + ], + [ + 47.743190528000184, + 49.12116145600015 + ], + [ + 47.880050579000056, + 49.10611241900011 + ], + [ + 48.165031599000145, + 49.207332450000024 + ], + [ + 48.47992360800015, + 49.14839878600014 + ], + [ + 49.228706511999974, + 49.20590232900008 + ], + [ + 49.41565346400006, + 49.20965541000004 + ], + [ + 49.54990054000018, + 49.180313050000166 + ], + [ + 49.84173561000017, + 49.084376133000035 + ], + [ + 50.515712542000074, + 48.955189547000145 + ], + [ + 50.703414535000036, + 48.948349746000076 + ], + [ + 50.7940675000001, + 48.970913830000086 + ], + [ + 50.84632447600006, + 49.110640323000155 + ], + [ + 50.96239455600005, + 49.15595171900003 + ], + [ + 51.05109755600017, + 49.14023481200019 + ], + [ + 51.51826862900009, + 48.93994957100006 + ], + [ + 51.68324661200012, + 48.98345701300008 + ], + [ + 51.66884247900015, + 49.15824500700006 + ], + [ + 51.69052562400003, + 49.29479727400002 + ], + [ + 51.77531461000012, + 49.24645984400007 + ], + [ + 51.88360561400003, + 49.11592042000012 + ], + [ + 51.87452348700003, + 48.848525638000126 + ], + [ + 52.010002535000126, + 48.87812800500012 + ], + [ + 52.01906152800012, + 48.99650713300019 + ], + [ + 52.09558159900007, + 49.067495818000054 + ], + [ + 52.01510661100019, + 49.22779049600007 + ], + [ + 51.89585157500011, + 49.306607376000045 + ], + [ + 51.82182361200017, + 49.42454393900016 + ], + [ + 51.67754758799998, + 49.52108385000008 + ], + [ + 51.63697850699998, + 49.6354192120001 + ], + [ + 51.50625250000019, + 49.69929300200016 + ], + [ + 51.481838531000164, + 49.83778383600003 + ], + [ + 51.37026953200018, + 49.970685616000026 + ], + [ + 51.40650148200007, + 50.121253431000184 + ], + [ + 51.528518523000116, + 50.13995379200003 + ], + [ + 51.742530472000055, + 50.26026628900007 + ], + [ + 51.912033509000196, + 50.26931941500004 + ], + [ + 52.03735754600012, + 50.377338008000095 + ], + [ + 52.27696648699998, + 50.488198736000186 + ], + [ + 52.655254518, + 50.48693960600008 + ], + [ + 52.791080577000116, + 50.406448357000045 + ], + [ + 52.93281151899998, + 50.39482835700011 + ], + [ + 52.99314848100005, + 50.448718966000115 + ], + [ + 53.102008616000035, + 50.34479778300005 + ], + [ + 53.2213245050001, + 50.34680457800005 + ], + [ + 53.319702568000025, + 50.2935349010001 + ], + [ + 53.57640053200015, + 50.38456723100006 + ], + [ + 53.76125351600018, + 50.258664340000166 + ], + [ + 53.8598635890001, + 50.12307364499998 + ], + [ + 53.89498158400011, + 49.99214395900009 + ], + [ + 53.951049476000094, + 49.91098064900012 + ], + [ + 54.03694152000014, + 49.86673040300013 + ], + [ + 54.18866352300006, + 49.84154077200003 + ], + [ + 54.48175051400017, + 49.64700853400012 + ], + [ + 54.61656554799998, + 49.60383703900004 + ], + [ + 54.824867577000134, + 49.63245838800003 + ], + [ + 54.933189594000055, + 49.55132625900012 + ], + [ + 55.08922961800016, + 49.556366298000114 + ], + [ + 55.24226355600018, + 49.50100667700008 + ], + [ + 55.37739559400012, + 49.484126530000026 + ], + [ + 55.544071582000015, + 49.37418512900007 + ], + [ + 55.70589059400004, + 49.34021478400018 + ], + [ + 56.226432597999974, + 49.2779622220001 + ], + [ + 56.352977543000065, + 49.20488325800005 + ], + [ + 56.59036259600015, + 49.181102122000084 + ], + [ + 56.67379354600013, + 49.19730316700003 + ], + [ + 56.86481058200019, + 49.16461106300011 + ], + [ + 56.98606151700011, + 49.17267613000013 + ], + [ + 57.18572951500005, + 49.089133030000085 + ], + [ + 57.405525480000165, + 49.070741794000185 + ], + [ + 57.57889961500018, + 48.949993605000145 + ], + [ + 57.71823852900019, + 48.93729133400012 + ], + [ + 57.83421355900015, + 48.89471797099998 + ], + [ + 58.04631862500008, + 48.86530268800004 + ], + [ + 58.17248957000015, + 48.79584805900015 + ], + [ + 58.284179602999984, + 48.78095894900008 + ], + [ + 58.45693247200012, + 48.712095076000026 + ], + [ + 58.30028559800007, + 48.483315220000065 + ], + [ + 58.2895394950001, + 48.29278450200013 + ], + [ + 58.1473125120001, + 47.89723109200003 + ], + [ + 58.22389963799998, + 47.81315037700017 + ], + [ + 58.32786960300007, + 47.81532162500008 + ], + [ + 58.415370637000194, + 47.88471892200005 + ], + [ + 58.52980457000007, + 48.05051028500003 + ], + [ + 58.53453062300002, + 48.144204037000065 + ], + [ + 58.63803053100003, + 48.251444118000165 + ], + [ + 58.72932052100015, + 48.38983822400019 + ], + [ + 58.81184052500009, + 48.44935560400012 + ], + [ + 58.95497158000012, + 48.49160408400007 + ], + [ + 59.236240591000126, + 48.68474811100015 + ], + [ + 59.29895063800012, + 48.85216858100017 + ], + [ + 59.3986734930001, + 48.9043202790001 + ], + [ + 59.528400543000146, + 49.028989522000074 + ], + [ + 59.55612955600003, + 49.16682790800013 + ], + [ + 59.52608160600005, + 49.33872381100019 + ], + [ + 59.53952450200012, + 49.481124467000086 + ], + [ + 59.62533155400007, + 49.624116215000186 + ], + [ + 59.896400627000105, + 49.867950305000136 + ], + [ + 60.11082463000014, + 49.784880113000156 + ], + [ + 60.227020607000156, + 49.81037065400011 + ], + [ + 60.75992155900002, + 50.08463205800018 + ], + [ + 60.87952058900015, + 50.088973045000046 + ], + [ + 61.05950955400016, + 49.99612201000019 + ], + [ + 61.26710163600006, + 49.96879348500005 + ], + [ + 61.529899614000044, + 50.04355050600009 + ], + [ + 61.75268557200019, + 50.203144793000035 + ], + [ + 61.98720150000008, + 50.30705524700005 + ], + [ + 62.23751061000007, + 50.32758537700016 + ], + [ + 62.383201498, + 50.38960626400018 + ], + [ + 62.57580154000016, + 50.421397649000085 + ], + [ + 62.826221626, + 50.36260882400012 + ], + [ + 63.004589532000125, + 50.41677855000006 + ], + [ + 63.13885856900015, + 50.57889813600008 + ], + [ + 63.259899621000045, + 50.62700975800004 + ], + [ + 63.41761049400003, + 50.629881733000104 + ], + [ + 63.50559952200007, + 50.661300291000146 + ], + [ + 63.95119054800017, + 50.657997151000075 + ], + [ + 64.14441655000019, + 50.59633132200014 + ], + [ + 64.16731255700006, + 50.4872787380001 + ], + [ + 64.31298852600014, + 50.45567728600014 + ], + [ + 64.31770351400013, + 50.368536842000026 + ], + [ + 64.463180496, + 50.37812708000018 + ], + [ + 64.62835662700007, + 50.30070696100006 + ], + [ + 64.96794155600003, + 50.35782175200018 + ], + [ + 65.400672563, + 50.26178559300001 + ], + [ + 65.60977154300014, + 50.33397540500005 + ], + [ + 66.05496962500018, + 50.20918361900016 + ], + [ + 66.3825835190001, + 50.24422634400014 + ], + [ + 66.52156050299999, + 50.20381651800005 + ], + [ + 66.64729357700014, + 50.116382372000146 + ], + [ + 66.77411663400017, + 49.931851085000176 + ], + [ + 66.90534957700015, + 49.80884866800011 + ], + [ + 67.04416663400013, + 49.76230882100009 + ], + [ + 67.34602361100019, + 49.72392858900008 + ], + [ + 67.49501059900007, + 49.76451007600002 + ], + [ + 67.540672525, + 49.81198048200008 + ], + [ + 67.69458756900013, + 49.865532126000176 + ], + [ + 67.99035660200008, + 49.85746420900011 + ], + [ + 68.13887755600012, + 49.95917240200009 + ], + [ + 68.212226585, + 49.9796426850001 + ], + [ + 68.533256494, + 49.889011513000185 + ], + [ + 68.72673060100004, + 49.926442075000125 + ], + [ + 68.79382354500007, + 49.97241362900007 + ], + [ + 68.8999635850002, + 49.966470525000034 + ], + [ + 69.142951606, + 49.89699276100009 + ], + [ + 69.22026862700017, + 49.84487107000007 + ], + [ + 69.35971851800008, + 49.843699951000076 + ], + [ + 69.63619257700014, + 49.94786219700012 + ], + [ + 69.71758253400014, + 49.93739001400007 + ], + [ + 69.8048785470001, + 50.00208104000012 + ], + [ + 69.96576649600007, + 50.04242163200013 + ], + [ + 70.11679850100012, + 49.96137348900004 + ], + [ + 70.36717248700012, + 49.937795196000195 + ], + [ + 70.58323649300007, + 49.811999425000124 + ], + [ + 70.75280759100008, + 49.804984443000194 + ], + [ + 70.94750260600006, + 49.66950774100019 + ], + [ + 71.20809161700015, + 49.61477726600015 + ], + [ + 71.28913154500003, + 49.54973638000007 + ], + [ + 71.33809661200013, + 49.443358126000135 + ], + [ + 71.6000215310001, + 49.40858663900008 + ], + [ + 71.59989949100014, + 49.29364442700012 + ], + [ + 71.6738205010002, + 49.24803178700017 + ], + [ + 71.94735754100003, + 49.232543538000016 + ], + [ + 72.10077654400004, + 49.13958270000006 + ], + [ + 72.28943658800011, + 49.10827143000017 + ], + [ + 72.40196950600017, + 48.99959301399997 + ], + [ + 72.79733264700008, + 48.956341556000154 + ], + [ + 72.82042663500005, + 48.799682109000116 + ], + [ + 72.99961060200008, + 48.738566635000154 + ], + [ + 72.96987161000004, + 48.62567648100003 + ], + [ + 72.9139785650001, + 48.59031792500008 + ], + [ + 72.70408648900008, + 48.55032451200009 + ], + [ + 72.58917964900007, + 48.483395016000145 + ], + [ + 72.51093257100018, + 48.3797640140001 + ], + [ + 72.34950264800011, + 48.24197592000013 + ], + [ + 72.25833151300014, + 48.203862568000034 + ], + [ + 72.13638253300007, + 48.102951662 + ], + [ + 72.19290153900005, + 47.995894977000034 + ], + [ + 72.41075860200016, + 47.89208896200017 + ], + [ + 72.41313956500005, + 47.85135861200007 + ], + [ + 72.28412648500012, + 47.74674407800006 + ], + [ + 72.26645659500002, + 47.66821050699997 + ], + [ + 72.32003053500006, + 47.505157344000054 + ], + [ + 72.44669349700007, + 47.407298625000124 + ], + [ + 72.36628757700004, + 47.367575277000185 + ], + [ + 72.4551466470001, + 47.311705030000155 + ], + [ + 72.70168255900012, + 47.346175272000096 + ], + [ + 72.77847252700008, + 47.317815941000106 + ], + [ + 72.93073264800017, + 47.34855942100012 + ], + [ + 73.03340962100015, + 47.45484899400009 + ], + [ + 73.20658158500004, + 47.50811716200019 + ], + [ + 73.34797658000008, + 47.48124712700013 + ], + [ + 73.47099257700006, + 47.527992331 + ], + [ + 73.4040065860001, + 47.639909346000195 + ], + [ + 73.49295852700016, + 47.755621017000124 + ], + [ + 73.69319163300014, + 47.77595316700018 + ], + [ + 73.68441762500015, + 47.83716050600003 + ], + [ + 73.481697608, + 47.88876201700015 + ], + [ + 73.38864155100003, + 47.98015963000006 + ], + [ + 73.39540055000003, + 48.21491360400012 + ], + [ + 73.28488163600014, + 48.33649378000018 + ], + [ + 73.33769952900019, + 48.40707326100011 + ], + [ + 73.36025958900007, + 48.60661821200006 + ], + [ + 73.53843655500015, + 48.71663940900004 + ], + [ + 73.80888352199997, + 48.739409352000166 + ], + [ + 73.99616960500015, + 48.72043825500015 + ], + [ + 74.19049849900011, + 48.655427543000144 + ], + [ + 74.51547259600017, + 48.797557129000154 + ], + [ + 74.65766152600014, + 48.8227492740001 + ], + [ + 74.8271335500001, + 48.779917916000045 + ], + [ + 75.04538758000007, + 48.76780975400004 + ], + [ + 75.18713360900006, + 48.70751805400005 + ], + [ + 75.11071764200005, + 48.55752674700011 + ], + [ + 75.16931150400006, + 48.33880483899998 + ], + [ + 75.4082104970002, + 48.234242776000144 + ], + [ + 75.51429756300018, + 48.15834531300004 + ], + [ + 75.62003359500005, + 47.92592921900018 + ], + [ + 75.72329763700009, + 47.87832906200015 + ], + [ + 75.81687152700016, + 47.87924101300001 + ], + [ + 75.9080966410001, + 47.95280059500004 + ], + [ + 75.93311360500019, + 48.048153461000084 + ], + [ + 75.90381650600006, + 48.21481453000007 + ], + [ + 75.93199160300009, + 48.32640347800003 + ], + [ + 76.08114656400005, + 48.41952457800011 + ], + [ + 76.25418056200004, + 48.407554214000186 + ], + [ + 76.38363654200003, + 48.485133925000184 + ], + [ + 76.53352357900019, + 48.50855732100007 + ], + [ + 76.68485263800011, + 48.48737306700019 + ], + [ + 76.79485355100019, + 48.43383349300018 + ], + [ + 76.90225959300011, + 48.29773133400016 + ], + [ + 77.06578851300003, + 48.19921245500012 + ], + [ + 77.29759960100012, + 48.20554163100013 + ], + [ + 77.3340375780001, + 48.32819251100017 + ], + [ + 77.42820758900001, + 48.42613555300011 + ], + [ + 77.57826260000007, + 48.470196033000036 + ], + [ + 77.69053651600018, + 48.56467583900013 + ], + [ + 77.68459357900008, + 48.66640683100013 + ], + [ + 77.73742655900003, + 48.73667735400005 + ], + [ + 77.84925858200012, + 48.7531876920001 + ], + [ + 78.0450365390002, + 48.70408817900005 + ], + [ + 78.27586359100002, + 48.594758155000136 + ], + [ + 78.53859753100005, + 48.63330233700003 + ], + [ + 78.63310952500012, + 48.55473775200005 + ], + [ + 78.91179657400016, + 48.495705181000176 + ], + [ + 79.11549358500014, + 48.41630559200007 + ], + [ + 79.22843956300011, + 48.28288513900003 + ], + [ + 79.46434755700005, + 48.19794242900019 + ], + [ + 79.53354653800017, + 48.143933133000075 + ], + [ + 79.69924955600004, + 48.143453018 + ], + [ + 79.86210658200014, + 48.20014368500006 + ], + [ + 79.85645265300013, + 48.25302293300018 + ], + [ + 79.73825859800019, + 48.33143882200011 + ], + [ + 79.72820249300008, + 48.45275463300004 + ], + [ + 79.61131249500016, + 48.54219574300015 + ], + [ + 79.5687636080001, + 48.62200721900018 + ], + [ + 79.37133056000016, + 48.70488630400007 + ], + [ + 79.21199058100018, + 48.82715949600009 + ], + [ + 79.17205064400014, + 48.90478916300003 + ], + [ + 79.07131961400012, + 48.98128995500019 + ], + [ + 78.86258658800011, + 49.02720032100012 + ], + [ + 78.54889654400017, + 49.312653578000095 + ], + [ + 78.40840159700014, + 49.36625417200014 + ], + [ + 78.17050155900017, + 49.38245538500013 + ], + [ + 78.03658255100004, + 49.43379487800007 + ], + [ + 78.01432055100014, + 49.49006577900002 + ], + [ + 78.11717957900004, + 49.647626448000096 + ], + [ + 78.11215949000007, + 49.77160904500005 + ], + [ + 78.02297956000012, + 49.88132849300007 + ], + [ + 78.00528754200019, + 49.973432533 + ], + [ + 78.0973436380001, + 50.050352756000166 + ], + [ + 78.45094260500014, + 50.12098269600011 + ], + [ + 78.577926595, + 50.17105534700005 + ], + [ + 78.64576754000018, + 50.251905341 + ], + [ + 78.68448656800018, + 50.38364723400002 + ], + [ + 78.62380259500009, + 50.51978794900003 + ], + [ + 78.65448756900003, + 50.596442298000056 + ], + [ + 78.91742653100016, + 50.568693840000094 + ], + [ + 78.9978865990002, + 50.540700462000075 + ], + [ + 79.29389149800011, + 50.574498978000065 + ], + [ + 79.4986575370001, + 50.54636964700012 + ], + [ + 79.69915752300017, + 50.442867894000074 + ], + [ + 80.12351249400007, + 50.405566414000134 + ], + [ + 80.3799286580001, + 50.324595217000194 + ], + [ + 80.82586652700019, + 50.289655757000105 + ], + [ + 81.09217065500019, + 50.3362184020001 + ], + [ + 81.19093361500012, + 50.30368588900012 + ], + [ + 81.28563654800007, + 50.20269870800013 + ], + [ + 81.29842364400008, + 50.07327206400009 + ], + [ + 81.18108353700012, + 49.82995966400017 + ], + [ + 81.25380660600007, + 49.73795956000009 + ], + [ + 81.1305775420002, + 49.7101991990001 + ], + [ + 81.11002360600003, + 49.64204929700003 + ], + [ + 81.28031152500012, + 49.4046466420001 + ], + [ + 81.28797962500005, + 49.305245484000125 + ], + [ + 81.17401155800019, + 49.12928268200011 + ], + [ + 80.984680626, + 49.07369088300004 + ], + [ + 80.92994663100006, + 48.96839992900004 + ], + [ + 80.7584386420001, + 48.90939736600018 + ], + [ + 80.74707060200006, + 48.850959742999976 + ], + [ + 80.85025753000014, + 48.782619069000134 + ], + [ + 80.83274052600007, + 48.713358397000036 + ], + [ + 80.6382066110001, + 48.56636479300005 + ], + [ + 80.64958152500014, + 48.40304525300007 + ], + [ + 80.70812962100013, + 48.34341287400014 + ], + [ + 80.72660065400015, + 48.24676299200013 + ], + [ + 80.66641255400003, + 48.140374177000126 + ], + [ + 80.4798436260001, + 48.01100201600002 + ], + [ + 80.49904656700011, + 47.87459106800014 + ], + [ + 80.45951063800015, + 47.80431937100013 + ], + [ + 80.27343758400008, + 47.69000747800004 + ], + [ + 80.19248952200019, + 47.61333888100006 + ], + [ + 79.98522165200006, + 47.52845735900013 + ], + [ + 80.24925260800006, + 47.365771491000146 + ], + [ + 80.34403952800017, + 47.173566237000045 + ], + [ + 80.36083954400004, + 47.05336454800005 + ], + [ + 80.24021155200006, + 46.987504247000174 + ], + [ + 80.19773860500004, + 46.894855718000144 + ], + [ + 80.18192262399998, + 46.755541950000065 + ], + [ + 80.25003061700005, + 46.693141698000034 + ], + [ + 80.28495063100013, + 46.59394321500008 + ], + [ + 80.35993161700014, + 46.53179408500017 + ], + [ + 80.548019512, + 46.461881804000086 + ], + [ + 80.53646053300008, + 46.3771685910001 + ], + [ + 80.67916059000015, + 46.30466211099997 + ], + [ + 80.93100761199997, + 46.26489819400018 + ], + [ + 81.04051952400005, + 46.21444098100005 + ], + [ + 81.07659959400013, + 46.146950566999976 + ], + [ + 80.98227652900016, + 46.110711577000075 + ], + [ + 80.78955863700008, + 46.09095056899997 + ], + [ + 80.67400354100005, + 46.043110522 + ], + [ + 80.40714251900016, + 45.88372092100019 + ], + [ + 80.20120955100003, + 45.799930891000145 + ], + [ + 79.99191259000014, + 45.753639651000185 + ], + [ + 79.91117860200018, + 45.678638549000084 + ], + [ + 79.66442861500008, + 45.56103826800006 + ], + [ + 79.51003261800008, + 45.53324840300013 + ], + [ + 79.41401657600005, + 45.487079037000115 + ], + [ + 79.27767150900002, + 45.46765129400012 + ], + [ + 78.926582586, + 45.47961025800004 + ], + [ + 78.67014362300011, + 45.40536805300013 + ], + [ + 78.41129251500001, + 45.443260123000016 + ], + [ + 78.31437659200009, + 45.421298196 + ], + [ + 78.26965360700012, + 45.341017836000105 + ], + [ + 78.33598363000016, + 45.18504989600012 + ], + [ + 78.361518595, + 45.04493967900015 + ], + [ + 78.33009349900016, + 44.947909929000105 + ], + [ + 78.19352765300005, + 44.83462096400012 + ], + [ + 77.93646256200003, + 44.76805792400006 + ], + [ + 77.88964862600017, + 44.68931899600017 + ], + [ + 77.99247764700016, + 44.43415810500011 + ], + [ + 77.98728958400011, + 44.26488842000009 + ], + [ + 77.95683259800006, + 44.22092064399999 + ], + [ + 77.71971861500003, + 44.02719893600016 + ], + [ + 77.6883625860001, + 43.955119933 + ], + [ + 77.70610858400005, + 43.85160544000013 + ], + [ + 77.82447849100015, + 43.83666335700008 + ], + [ + 77.92443855400012, + 43.86291950100008 + ], + [ + 78.08724964700008, + 43.854008532000194 + ], + [ + 78.06964865600008, + 43.76677454500003 + ], + [ + 78.09404753800004, + 43.64596298900017 + ], + [ + 78.19564861000009, + 43.574983357000065 + ], + [ + 78.16404749400004, + 43.489431450000154 + ], + [ + 77.92817654700019, + 43.47289060300017 + ], + [ + 77.80738862900012, + 43.50951147300009 + ], + [ + 77.62593853000004, + 43.485242678000134 + ], + [ + 77.48014856700013, + 43.51655059500001 + ], + [ + 77.26323664700016, + 43.50589149700005 + ], + [ + 77.143623536, + 43.46852363100015 + ], + [ + 76.79406749600008, + 43.42200289500005 + ], + [ + 76.58598356400012, + 43.231181661 + ], + [ + 76.43414253800006, + 43.19269481100008 + ], + [ + 76.1345366060001, + 43.22369276500018 + ], + [ + 75.83318354900018, + 43.30033437300011 + ], + [ + 75.69518255400004, + 43.299914440000066 + ], + [ + 75.51986649900016, + 43.26645136800016 + ], + [ + 75.39488260000007, + 43.26444155500019 + ], + [ + 75.25662260400014, + 43.311072262000096 + ], + [ + 75.04438057800007, + 43.43860074000014 + ], + [ + 74.93010757700017, + 43.576181131000055 + ], + [ + 74.77992264800002, + 43.68634197000006 + ], + [ + 74.4915315340001, + 43.79983260400013 + ], + [ + 74.32631651100019, + 43.77822254800003 + ], + [ + 74.2830885210002, + 43.715729761000034 + ], + [ + 74.29897356900017, + 43.63659017800012 + ], + [ + 74.2704776130002, + 43.52353054100007 + ], + [ + 74.40808063500009, + 43.41708188000007 + ], + [ + 74.59834262900006, + 43.39452198700013 + ], + [ + 74.78491960300005, + 43.28537250900007 + ], + [ + 74.85697949500013, + 43.2157926540001 + ], + [ + 74.94566355100011, + 43.056964473000164 + ], + [ + 75.06797764700019, + 42.93872498900009 + ], + [ + 75.362129643, + 42.85852543000004 + ], + [ + 75.36695057800006, + 42.76175518400015 + ], + [ + 75.14585156200019, + 42.7338771420001 + ], + [ + 74.8252865130001, + 42.83635462600006 + ], + [ + 74.38079050000016, + 42.88793618700015 + ], + [ + 74.13318656500013, + 42.87590547400009 + ], + [ + 73.85061651500001, + 42.83548475200001 + ], + [ + 73.45704659799998, + 42.857186505000186 + ], + [ + 73.21292148900005, + 42.91986520299997 + ], + [ + 73.03019750800007, + 42.933082962000185 + ], + [ + 72.82684348500004, + 42.99125286700007 + ], + [ + 72.57821662200007, + 43.03326464200006 + ], + [ + 72.2031785900001, + 43.03806344900005 + ], + [ + 71.91198758600012, + 43.08969547000004 + ], + [ + 71.60777261200008, + 43.04525344600012 + ], + [ + 71.52284951600006, + 42.94384398400007 + ], + [ + 71.50798756400013, + 42.85269665500016 + ], + [ + 71.37827258300013, + 42.77014697800013 + ], + [ + 71.32084648799997, + 42.784493779000115 + ], + [ + 71.2831876030001, + 42.87319644300004 + ], + [ + 71.15660862700014, + 42.95979407600015 + ], + [ + 71.06333162300007, + 42.98032387100017 + ], + [ + 70.82997156000016, + 42.9796449370001 + ], + [ + 70.66909752400016, + 43.0100866680001 + ], + [ + 70.61833956800007, + 43.055793522000045 + ], + [ + 70.594383586, + 43.1872819460001 + ], + [ + 70.42720049200005, + 43.34066306200009 + ], + [ + 70.28717057400007, + 43.41180295700019 + ], + [ + 70.18752248499999, + 43.51869049500016 + ], + [ + 70.09957151000003, + 43.539041421000036 + ], + [ + 70.00714862300003, + 43.62600098400003 + ], + [ + 69.72213759500016, + 43.77430048800005 + ], + [ + 69.59342961600015, + 43.77098578100015 + ], + [ + 69.5279465000001, + 43.66166095300014 + ], + [ + 69.40029950300016, + 43.640034972000194 + ], + [ + 69.23779250500007, + 43.73543259700011 + ], + [ + 69.09982252300011, + 43.784611738000194 + ], + [ + 68.9381175050001, + 43.900452322000035 + ], + [ + 68.67933663800005, + 43.99250087400003 + ], + [ + 68.47878250500008, + 44.032329834000166 + ], + [ + 68.3050685680002, + 44.130100544000015 + ], + [ + 68.1151125130001, + 44.12606465700014 + ], + [ + 68.02426156800016, + 44.14495461700011 + ], + [ + 67.86927062300015, + 44.26325931300005 + ], + [ + 67.75393664100011, + 44.30937922700008 + ], + [ + 67.47046654200011, + 44.478324029000134 + ], + [ + 67.28562160500013, + 44.60553282100017 + ], + [ + 67.20263657200013, + 44.620718818000114 + ], + [ + 67.14814749600009, + 44.558509003000154 + ], + [ + 67.26193954300015, + 44.47356009100014 + ], + [ + 67.42186759700007, + 44.39588113800005 + ], + [ + 67.49237851400017, + 44.289638336000166 + ], + [ + 67.62449658600013, + 44.20378149600015 + ], + [ + 67.66355860200002, + 44.10322983900011 + ], + [ + 67.58558661800015, + 44.05536296900016 + ], + [ + 67.52555056600016, + 43.94554226700018 + ], + [ + 67.36871359000008, + 43.819321534000096 + ], + [ + 67.52648950700012, + 43.71994183500004 + ], + [ + 67.59443656700012, + 43.552591270000164 + ], + [ + 67.72447961500018, + 43.4095517450001 + ], + [ + 67.81347648400003, + 43.366122088 + ], + [ + 67.91842662900018, + 43.263361463000194 + ], + [ + 67.93668358800005, + 43.17690179700003 + ], + [ + 68.05039248600008, + 43.10255414800008 + ], + [ + 68.10131053600008, + 43.01637259300014 + ], + [ + 68.17946658700015, + 42.96877293800003 + ], + [ + 68.27890060099998, + 42.78632489 + ], + [ + 68.28914664000018, + 42.61927674400005 + ], + [ + 68.26033049500006, + 42.57078810500008 + ], + [ + 68.31800855000006, + 42.38796639100008 + ], + [ + 68.32589759700011, + 42.26669818900007 + ], + [ + 68.24986250400019, + 42.11884141700011 + ], + [ + 68.2672884800001, + 42.019919034000054 + ], + [ + 68.17365256300013, + 41.89908987600012 + ], + [ + 68.16390256600016, + 41.792522862000055 + ], + [ + 68.11134350700019, + 41.653383102000134 + ], + [ + 68.15498355099999, + 41.41232710999998 + ], + [ + 68.11422755200016, + 41.2559414160001 + ], + [ + 67.96987961200011, + 41.13560762900005 + ], + [ + 67.87447360500005, + 41.17480727500015 + ], + [ + 67.89219663600016, + 41.29504534100005 + ], + [ + 67.97387660700014, + 41.45054573900006 + ], + [ + 67.91873960900011, + 41.70468252900014 + ], + [ + 67.96468350300012, + 41.790302664000194 + ], + [ + 67.96013648800005, + 41.87488629300009 + ], + [ + 68.04444150300003, + 41.9693253640001 + ], + [ + 67.95587948700017, + 42.00926915600013 + ], + [ + 67.70654251000013, + 41.95464261600006 + ], + [ + 67.529418647, + 41.82580253800006 + ], + [ + 67.11868259200003, + 41.756482020000135 + ], + [ + 66.91251359000006, + 41.60675239500006 + ], + [ + 66.61932350100011, + 41.50511511300016 + ], + [ + 66.53794863200017, + 41.32985002100014 + ], + [ + 66.31876354100018, + 41.17217954900019 + ], + [ + 66.16101059100009, + 41.13240691500005 + ], + [ + 66.04804952500012, + 41.02195790600001 + ], + [ + 66.00668349200009, + 40.94815156100009 + ], + [ + 65.83100148400001, + 40.79130033600018 + ], + [ + 65.73274948500006, + 40.74028287700003 + ], + [ + 65.55742655700004, + 40.70286924600015 + ], + [ + 65.339469582, + 40.61360231200007 + ], + [ + 65.22926348099998, + 40.53077519500005 + ], + [ + 65.2049866390002, + 40.42184347800014 + ], + [ + 65.06059259900007, + 40.3375855700001 + ], + [ + 65.05943254300018, + 40.27070720299997 + ], + [ + 65.19164248200019, + 40.16770048600006 + ], + [ + 65.38121749500004, + 40.137580116000095 + ], + [ + 65.42597954000007, + 40.06175993500017 + ], + [ + 65.50626358800008, + 40.01868030500003 + ], + [ + 65.60549962200008, + 39.89030324400005 + ], + [ + 65.68068663500003, + 39.86230349600004 + ], + [ + 65.91430653700019, + 39.84534372100006 + ], + [ + 66.02931261900005, + 39.783874531000095 + ], + [ + 66.1196975310001, + 39.67014400700009 + ], + [ + 66.121200574, + 39.55855858000018 + ], + [ + 66.07057153200014, + 39.466136866 + ], + [ + 66.08527355700005, + 39.32673106300007 + ], + [ + 65.99826856400017, + 39.21530154000004 + ], + [ + 65.85420259199998, + 39.09115432200019 + ], + [ + 65.82109860000008, + 38.97542236700002 + ], + [ + 65.9607696060001, + 38.74498272600016 + ], + [ + 65.98312363900004, + 38.68198870000003 + ], + [ + 65.95150760300015, + 38.60042004200011 + ], + [ + 65.72933151300003, + 38.52257144000015 + ], + [ + 65.58673052900008, + 38.38562572600006 + ], + [ + 65.61885048500011, + 38.20568973400009 + ], + [ + 65.59269760600006, + 38.07489030300002 + ], + [ + 65.46956661000013, + 37.86319310000016 + ], + [ + 65.49226363000008, + 37.74265831499997 + ], + [ + 65.66517659300013, + 37.776543667000055 + ], + [ + 66.01078056600016, + 37.79426619600014 + ], + [ + 66.2677685450002, + 37.82971175500006 + ], + [ + 66.66654161200017, + 37.97149801799998 + ], + [ + 66.75827064600003, + 38.050990647 + ], + [ + 66.84722158200003, + 38.0882599410001 + ], + [ + 66.92813159000019, + 38.05639261600015 + ], + [ + 67.00640062800011, + 38.07722030399998 + ], + [ + 67.12212353100006, + 38.04169092500007 + ], + [ + 67.23140762300011, + 37.97285186300019 + ], + [ + 67.31426256800012, + 38.03426003300001 + ], + [ + 67.46269953500007, + 38.01115129300007 + ], + [ + 67.54229760900017, + 38.085941004000176 + ], + [ + 67.65634161600013, + 38.095480951000184 + ], + [ + 67.70739763200015, + 38.16499844400016 + ], + [ + 67.72528863700012, + 38.296275476000176 + ], + [ + 67.84015658500016, + 38.391336652000064 + ], + [ + 67.87924961400006, + 38.47250448800003 + ], + [ + 67.96250152600015, + 38.51567464200008 + ], + [ + 68.1677325930001, + 38.44857465700011 + ], + [ + 68.19376359900008, + 38.40717442600004 + ], + [ + 68.03449251900014, + 38.18621924400003 + ], + [ + 67.95865657900009, + 37.995232550000026 + ], + [ + 67.9793925690002, + 37.910002006000184 + ], + [ + 67.91779362800008, + 37.746336126000074 + ], + [ + 67.95124848600005, + 37.54585106000002 + ], + [ + 67.92903158100012, + 37.48149028200015 + ], + [ + 67.94345851200018, + 37.28835581000004 + ], + [ + 67.85269155300006, + 37.16514350900019 + ], + [ + 67.89328762500008, + 37.089759018999985 + ], + [ + 68.04212960600012, + 37.00857659800016 + ], + [ + 68.17356857700014, + 37.03950096000017 + ], + [ + 68.46310449100014, + 37.24491492000004 + ], + [ + 68.5429075850002, + 37.37338418200005 + ], + [ + 68.64629349900014, + 37.688796373000116 + ], + [ + 68.65563948900018, + 37.88201466400017 + ], + [ + 68.75549360500014, + 37.91257307100017 + ], + [ + 68.74764261100017, + 37.783547586 + ], + [ + 68.80917349200013, + 37.74036620000015 + ], + [ + 69.03262363100004, + 37.71616580099999 + ], + [ + 69.07232652800013, + 37.655146719000015 + ], + [ + 69.04579964800018, + 37.53035912400003 + ], + [ + 69.0812835970001, + 37.46868055400006 + ], + [ + 69.24133251800009, + 37.306334657000036 + ], + [ + 69.31153162800007, + 37.11488930600018 + ], + [ + 69.40998864699998, + 37.17320723500018 + ], + [ + 69.4119265430001, + 37.29459680700012 + ], + [ + 69.38114953600012, + 37.444220820000055 + ], + [ + 69.51220662700013, + 37.57487222700007 + ], + [ + 69.65914960400005, + 37.56903557200002 + ], + [ + 69.91804463300014, + 37.60986767800006 + ], + [ + 69.95864053700012, + 37.563004458000194 + ], + [ + 70.13499460700007, + 37.52697535000004 + ], + [ + 70.28637664000007, + 37.70026700700009 + ], + [ + 70.23414648600004, + 37.82298259600009 + ], + [ + 70.15914957500007, + 37.91602909700015 + ], + [ + 70.33331261500001, + 37.99918059400005 + ], + [ + 70.46415764400012, + 38.109110596 + ], + [ + 70.52063759000004, + 38.19776313600005 + ], + [ + 70.59297961700014, + 38.17879623000016 + ], + [ + 70.61353254700015, + 38.06829441499997 + ], + [ + 70.62918055400019, + 38.13600426700003 + ], + [ + 70.723541506, + 38.30279123300011 + ], + [ + 70.78399648500016, + 38.19085410100013 + ], + [ + 70.83751661400004, + 38.164392600000156 + ], + [ + 70.90393062300012, + 38.25194593700007 + ], + [ + 70.96819249600009, + 38.254851943000176 + ], + [ + 71.06105057200006, + 38.14224107400014 + ], + [ + 71.20671849400014, + 38.169263492000084 + ], + [ + 71.15124555, + 38.0366138390001 + ], + [ + 70.99945850300003, + 37.898890452000046 + ], + [ + 70.99542261700003, + 37.84419249900003 + ], + [ + 71.08071854000008, + 37.778336724000155 + ], + [ + 71.18543952400006, + 37.80259428700003 + ], + [ + 71.28378255000018, + 37.89220337000012 + ], + [ + 71.39157851900012, + 37.90535625200016 + ], + [ + 71.44864653900004, + 37.85187116100013 + ], + [ + 71.46179154300017, + 37.75965983200007 + ], + [ + 71.38304155000009, + 37.48077731700005 + ], + [ + 71.32503559500014, + 37.41240764100007 + ], + [ + 71.36520351900009, + 37.30483463100006 + ], + [ + 71.31927454600014, + 37.13845301499998 + ], + [ + 71.33545664800005, + 37.05074276800002 + ], + [ + 71.47410556400018, + 36.79942498000014 + ], + [ + 71.47884351900007, + 36.745173112000145 + ], + [ + 71.56139353000009, + 36.76538674200003 + ], + [ + 71.58561656000006, + 36.966382601000134 + ], + [ + 71.51654850400007, + 37.13654881400009 + ], + [ + 71.51721151300012, + 37.29395575900003 + ], + [ + 71.59224664500005, + 37.323168200000055 + ], + [ + 71.64864361100018, + 37.25631648800015 + ], + [ + 71.74507858000015, + 37.28184424400007 + ], + [ + 71.69373355600015, + 37.49402508300017 + ], + [ + 71.85545349300008, + 37.60319199500009 + ], + [ + 71.9056926090002, + 37.6771465330001 + ], + [ + 71.8448565880002, + 37.74292117100009 + ], + [ + 71.70596359100017, + 37.68688144300012 + ], + [ + 71.59200256400015, + 37.716631835000044 + ], + [ + 71.58838661100003, + 37.90659224800015 + ], + [ + 71.64095254400002, + 37.95537324800006 + ], + [ + 71.80269662100017, + 37.985863762000065 + ], + [ + 71.86196857900018, + 38.05046074300003 + ], + [ + 71.75846062400018, + 38.08912193600014 + ], + [ + 71.61476161100006, + 38.03543098500012 + ], + [ + 71.49195851500002, + 38.028485069000055 + ], + [ + 71.4085926090001, + 38.094328942000175 + ], + [ + 71.44370255700005, + 38.31673687600011 + ], + [ + 71.52996860200005, + 38.35061552200017 + ], + [ + 71.53031158900012, + 38.453072722 + ], + [ + 71.48358164100006, + 38.49471284300017 + ], + [ + 71.29415163500005, + 38.46931550900007 + ], + [ + 71.19865460000011, + 38.50707179200003 + ], + [ + 71.16381857200008, + 38.61949289500018 + ], + [ + 71.24623849700004, + 38.67427902600019 + ], + [ + 71.33197748800012, + 38.7381739380001 + ], + [ + 71.34595464600017, + 38.79920794000009 + ], + [ + 71.35829163400007, + 38.906571403000044 + ], + [ + 71.22458653200005, + 38.87108376600003 + ], + [ + 71.21339451200004, + 38.94961951600004 + ], + [ + 71.1268235340001, + 38.98833401800016 + ], + [ + 70.97102356700009, + 38.98944395000012 + ], + [ + 70.85439257000013, + 38.953529674000094 + ], + [ + 70.68231159500004, + 38.84109717200016 + ], + [ + 70.45909162200013, + 38.858877032000066 + ], + [ + 70.36356357400001, + 38.95910632199997 + ], + [ + 70.20319362700008, + 38.95354040300015 + ], + [ + 70.19991261400014, + 39.03643323400013 + ], + [ + 70.46334057600018, + 39.07069258700017 + ], + [ + 70.60121148400009, + 39.12527604400009 + ], + [ + 70.71695752100015, + 39.08743460100004 + ], + [ + 70.86872864200006, + 39.140183594000064 + ], + [ + 71.10151655700008, + 39.116163071000074 + ], + [ + 71.19731148400018, + 39.059904910000114 + ], + [ + 71.48688562000012, + 39.136277627000084 + ], + [ + 71.50000748900004, + 39.136162626999976 + ], + [ + 71.61633254700018, + 39.13986675800015 + ], + [ + 71.67458358900012, + 39.24310230100019 + ], + [ + 71.91322358100018, + 39.28278256600004 + ], + [ + 71.99954964000017, + 39.31891896200017 + ], + [ + 71.989517508, + 39.47403697700008 + ], + [ + 71.88745861700016, + 39.51835612200006 + ], + [ + 71.79061863400011, + 39.5014984390001 + ], + [ + 71.65173351500005, + 39.41809950800018 + ], + [ + 71.55016362400016, + 39.414788656000155 + ], + [ + 71.44856255200006, + 39.46893675600006 + ], + [ + 71.33223749400014, + 39.46160896100008 + ], + [ + 71.16678660400015, + 39.415360637000106 + ], + [ + 71.06268353400003, + 39.32879083200004 + ], + [ + 70.95684054900005, + 39.30774521500018 + ], + [ + 70.79067954400006, + 39.32237096500006 + ], + [ + 70.6134266000002, + 39.22191653800007 + ], + [ + 70.51101650600015, + 39.218212407000124 + ], + [ + 70.42430856800007, + 39.16634418400014 + ], + [ + 70.31659658600012, + 39.19428274400019 + ], + [ + 70.25919362500008, + 39.282339666000155 + ], + [ + 70.16211660100004, + 39.29539028900018 + ], + [ + 70.0607606160001, + 39.250846173000184 + ], + [ + 70.0357976320002, + 39.177699987000096 + ], + [ + 69.95113353700003, + 39.150254618000076 + ], + [ + 69.90209152400007, + 39.0340453980001 + ], + [ + 69.78595757400018, + 38.99350682600004 + ], + [ + 69.72499850600019, + 39.05070409500007 + ], + [ + 69.51828753000012, + 38.937824837000164 + ], + [ + 69.45480349900004, + 38.943130582000094 + ], + [ + 69.39909351400013, + 39.08078154900005 + ], + [ + 69.29060352400006, + 39.096143230000166 + ], + [ + 69.21233364700015, + 39.034148160000086 + ], + [ + 69.09203355500011, + 39.0110355650001 + ], + [ + 69.06822157400018, + 38.92713606700005 + ], + [ + 68.99054748300011, + 38.88879556500012 + ], + [ + 68.93328852300004, + 38.94607581500003 + ], + [ + 68.88955661400018, + 39.063772823000136 + ], + [ + 68.80058254400018, + 39.08167455700004 + ], + [ + 68.68196855600007, + 39.025523517000124 + ], + [ + 68.65573152200005, + 38.936126664000085 + ], + [ + 68.58345051600014, + 38.910237144000064 + ], + [ + 68.43814050100013, + 38.914918102000115 + ], + [ + 68.35452263500014, + 38.858946099000036 + ], + [ + 68.21172350300014, + 38.859646994 + ], + [ + 68.16069062100007, + 38.970340419000024 + ], + [ + 67.99275952600016, + 39.01475847100011 + ], + [ + 67.83601357800012, + 38.986445911000146 + ], + [ + 67.9127505720001, + 39.099252414000034 + ], + [ + 68.03658263000017, + 39.13513668200011 + ], + [ + 68.15778360900003, + 39.22735253700017 + ], + [ + 68.33821061300017, + 39.31405527900017 + ], + [ + 68.38155360200017, + 39.22683755300005 + ], + [ + 68.24929052300018, + 39.11684200500014 + ], + [ + 68.23406948900003, + 39.04815499100005 + ], + [ + 68.33595252800012, + 39.027335517000154 + ], + [ + 68.59529850299998, + 39.170033395000075 + ], + [ + 68.79530362200006, + 39.153622467000105 + ], + [ + 68.9084775870001, + 39.17507628300007 + ], + [ + 69.27863349600017, + 39.14745858300006 + ], + [ + 69.40249656700007, + 39.229682371000024 + ], + [ + 69.28106659500014, + 39.268263936000096 + ], + [ + 69.58336663800014, + 39.393460903 + ], + [ + 69.86797349000017, + 39.40441990700015 + ], + [ + 70.0500026110002, + 39.44702914400017 + ], + [ + 70.23709859300016, + 39.41900743600013 + ], + [ + 70.39389751400006, + 39.434998263000125 + ], + [ + 70.39082353499998, + 39.504356500000085 + ], + [ + 70.21025051900006, + 39.53896588100008 + ], + [ + 70.05845659900012, + 39.542658948 + ], + [ + 69.96697952500017, + 39.59065523400005 + ], + [ + 70.0074465150002, + 39.65404622700004 + ], + [ + 70.12859351500015, + 39.677526117000184 + ], + [ + 70.44445061700014, + 39.70010478500012 + ], + [ + 70.61287657900004, + 39.76590674800019 + ], + [ + 70.73210160800005, + 39.735386059000064 + ], + [ + 70.88343854700008, + 39.7786445590001 + ], + [ + 70.877853517, + 39.69970379400007 + ], + [ + 70.95127060700014, + 39.69213963000004 + ], + [ + 71.13957961700015, + 39.81349500300007 + ], + [ + 71.3600235030001, + 39.83310178400012 + ], + [ + 71.4526064850001, + 39.89107706100003 + ], + [ + 71.62441253399999, + 39.910531794000065 + ], + [ + 71.66929662000007, + 39.94845722300005 + ], + [ + 71.83683058000008, + 39.99370290400009 + ], + [ + 71.97458648900016, + 39.957311195000045 + ], + [ + 71.91256761400018, + 39.839193751000096 + ], + [ + 71.9692765530001, + 39.769023810000135 + ], + [ + 72.23515353900012, + 39.802165352000145 + ], + [ + 72.24643759300011, + 39.860563581000065 + ], + [ + 72.17862648700003, + 39.92734253900005 + ], + [ + 72.16246064600017, + 40.00671061200006 + ], + [ + 72.23200948800013, + 40.056942017000154 + ], + [ + 72.34322359600014, + 40.07326476800006 + ], + [ + 72.48578652600014, + 39.98777086400008 + ], + [ + 72.67608657400018, + 40.03310036400006 + ], + [ + 72.75306664300012, + 40.01927257100016 + ], + [ + 72.85256955699998, + 39.936131467000166 + ], + [ + 73.03093762999998, + 39.941396476000136 + ], + [ + 73.07009151200009, + 40.05938282700015 + ], + [ + 73.13881658000008, + 40.12057826400007 + ], + [ + 73.28943653000005, + 40.094088600000134 + ], + [ + 73.35825363200007, + 39.96952094600016 + ], + [ + 73.50440250700007, + 39.928010744000176 + ], + [ + 73.57740050200005, + 40.003479724000044 + ], + [ + 73.6126095250001, + 40.222996739000166 + ], + [ + 73.57673648800017, + 40.28643902900012 + ], + [ + 73.38085157800003, + 40.499715550000076 + ], + [ + 73.26702851800019, + 40.55602383400003 + ], + [ + 73.2522964850001, + 40.635574968000185 + ], + [ + 73.33747053500008, + 40.65282492500006 + ], + [ + 73.44111662400019, + 40.60503449800012 + ], + [ + 73.76431258500014, + 40.49531370900013 + ], + [ + 73.8651586150001, + 40.48485376500008 + ], + [ + 73.8966526100001, + 40.385283796000124 + ], + [ + 73.9902196270001, + 40.35982527400006 + ], + [ + 74.08759353800008, + 40.25853852299997 + ], + [ + 74.33390850300003, + 40.25461663100003 + ], + [ + 74.44217654100004, + 40.319786766 + ], + [ + 74.42948164600006, + 40.402247594000016 + ], + [ + 74.22509748599998, + 40.54291302900015 + ], + [ + 74.13757348500019, + 40.642254004 + ], + [ + 74.15045160900007, + 40.69319133300007 + ], + [ + 74.00626359600017, + 40.84077669900017 + ], + [ + 73.87465665200006, + 40.781882597000106 + ], + [ + 73.80239056500005, + 40.84491987400003 + ], + [ + 73.83827952700011, + 40.92281893500018 + ], + [ + 73.81701665100013, + 40.988243210000064 + ], + [ + 73.71221955900012, + 41.035049769000125 + ], + [ + 73.66589361800004, + 41.10214925100013 + ], + [ + 73.48230764300013, + 41.26487535100006 + ], + [ + 73.32700355000009, + 41.36258755500006 + ], + [ + 73.17955061800018, + 41.38774533500009 + ], + [ + 73.12616761700008, + 41.46168461700012 + ], + [ + 73.06195855100009, + 41.45964781500015 + ], + [ + 72.9618526430001, + 41.38499523200005 + ], + [ + 72.82808652100005, + 41.36854658600009 + ], + [ + 72.76448061600013, + 41.45672571600005 + ], + [ + 72.772247623, + 41.517085309000095 + ], + [ + 72.86270160200013, + 41.55835277200015 + ], + [ + 73.22384662899998, + 41.58777459300012 + ], + [ + 73.5096665100001, + 41.69176266300019 + ], + [ + 73.72248051700018, + 41.51834410400005 + ], + [ + 73.7721176450001, + 41.404267239000035 + ], + [ + 73.92720749700004, + 41.25282854500006 + ], + [ + 73.96704852700014, + 41.129870719000166 + ], + [ + 74.13520861500007, + 40.90712097100004 + ], + [ + 74.34368163500005, + 40.831792807000056 + ], + [ + 74.41860964700015, + 40.87135153500003 + ], + [ + 74.41829649900018, + 40.975460304000194 + ], + [ + 74.46891749400004, + 41.021378046 + ], + [ + 74.66776255700017, + 41.030307958000094 + ], + [ + 74.84536754200013, + 41.067268296 + ], + [ + 74.96164650000014, + 41.05953967800002 + ], + [ + 75.1655424970001, + 41.207667018000166 + ], + [ + 75.2531506520001, + 41.20557623600001 + ], + [ + 75.32023655500018, + 41.156039691000046 + ], + [ + 75.38575755700015, + 41.02436887700014 + ], + [ + 75.54399162800013, + 41.00460099700018 + ], + [ + 75.79192363100009, + 41.10996889600011 + ], + [ + 75.94390849000013, + 41.14133783300002 + ], + [ + 76.10269962300015, + 41.20586591500012 + ], + [ + 76.49359152200014, + 41.29437814199997 + ], + [ + 76.71650656000014, + 41.303765203000125 + ], + [ + 76.71347851400003, + 41.40083736500014 + ], + [ + 76.50868950900013, + 41.408146217000194 + ], + [ + 76.55069759600019, + 41.549067802000025 + ], + [ + 76.33441951499998, + 41.65193403800015 + ], + [ + 76.22824863000011, + 41.584875628000134 + ], + [ + 76.07350159800006, + 41.60462439800011 + ], + [ + 75.93788156600004, + 41.704461414000036 + ], + [ + 75.79557059700005, + 41.730451349000134 + ], + [ + 75.7292705810001, + 41.77132100600011 + ], + [ + 75.53366059700016, + 41.76522199800013 + ], + [ + 75.43202951800004, + 41.84255243100017 + ], + [ + 75.321922491, + 41.88781018200012 + ], + [ + 75.18199952600008, + 41.98781919500004 + ], + [ + 75.14807159300011, + 42.07984042200019 + ], + [ + 75.34971654700007, + 42.06017983000004 + ], + [ + 75.42639956200014, + 42.02022095000018 + ], + [ + 75.46527851700012, + 41.931441676000134 + ], + [ + 75.54490659700002, + 41.89755984400017 + ], + [ + 75.7354815710001, + 41.919749927000055 + ], + [ + 76.00583650500005, + 41.90425078200013 + ], + [ + 76.07689660400013, + 41.87391717700018 + ], + [ + 76.29016155800014, + 41.90363286800016 + ], + [ + 76.29399158500001, + 41.96810026500009 + ], + [ + 76.12185663000008, + 42.01546002900017 + ], + [ + 75.94513660700005, + 42.02635097100011 + ], + [ + 75.93927748900018, + 42.08581034900004 + ], + [ + 76.12420658000019, + 42.09332539500008 + ], + [ + 76.60247764100018, + 42.01305995500019 + ], + [ + 76.99624654400014, + 42.00846013400019 + ], + [ + 77.1388475280001, + 42.043802932 + ], + [ + 77.27966350100007, + 42.08820941700009 + ], + [ + 77.46909350700003, + 42.11086117500008 + ], + [ + 77.61849255000016, + 42.15584014400014 + ], + [ + 77.74192864700007, + 42.21986849600006 + ], + [ + 78.05750260800016, + 42.32475695100004 + ], + [ + 78.19335163300002, + 42.40767610100016 + ], + [ + 78.85439260700008, + 42.675077588000136 + ], + [ + 78.794731561, + 42.762216189000185 + ], + [ + 78.665702555, + 42.74474528500008 + ], + [ + 78.49427050700007, + 42.75256526600009 + ], + [ + 78.34147662600009, + 42.84464349000001 + ], + [ + 78.22305257200003, + 42.85436348000013 + ], + [ + 77.81323249100012, + 42.83170451300015 + ], + [ + 77.61972854500004, + 42.83415370600005 + ], + [ + 77.3281325270001, + 42.8664944410001 + ], + [ + 77.17401162300018, + 42.84089359400008 + ], + [ + 77.10732251900004, + 42.77890606700004 + ], + [ + 76.93923954400015, + 42.777554904000056 + ], + [ + 76.58663165300004, + 42.73278615400011 + ], + [ + 76.43604254800005, + 42.69721838600009 + ], + [ + 76.24710053600006, + 42.678465386000084 + ], + [ + 76.10772658500008, + 42.68929430200012 + ], + [ + 76.15316756500005, + 42.77969480399997 + ], + [ + 76.1404116490001, + 42.89071327900007 + ], + [ + 76.01689961200015, + 42.956254063000074 + ], + [ + 75.52973954300012, + 43.04729460699997 + ], + [ + 75.5065686100001, + 43.105709096 + ], + [ + 75.63893160200007, + 43.12477507600016 + ], + [ + 75.89293662800009, + 43.06411356600006 + ], + [ + 76.17633849800006, + 43.08303420400006 + ], + [ + 76.40881360000003, + 43.0681834830001 + ], + [ + 76.48947852200018, + 43.14551509000006 + ], + [ + 76.74257662600013, + 43.169674081000096 + ], + [ + 76.93187755100018, + 43.207881646000146 + ], + [ + 77.07479855600008, + 43.26422446400011 + ], + [ + 77.40795858800016, + 43.36192225100007 + ], + [ + 77.64453160200009, + 43.395484062000094 + ], + [ + 77.83634156600004, + 43.40168197600008 + ], + [ + 77.9224396370002, + 43.351992210000105 + ], + [ + 77.97712753200005, + 43.17799278500007 + ], + [ + 77.925750489, + 43.075973289 + ], + [ + 78.02660356000013, + 43.03393569700012 + ], + [ + 78.10472055100018, + 43.05581263200003 + ], + [ + 78.25801851900002, + 43.034313554000164 + ], + [ + 78.3672335440001, + 43.06645245300007 + ], + [ + 78.5733566130001, + 43.055748595000125 + ], + [ + 78.70099657000003, + 43.02566577599998 + ], + [ + 78.8650585790001, + 42.94350502000009 + ], + [ + 78.99893165400005, + 42.809353666000106 + ], + [ + 79.10353059800019, + 42.7832277760001 + ], + [ + 79.22810361600011, + 42.8389444660001 + ], + [ + 79.47872151500013, + 42.79997398100005 + ], + [ + 79.65493761900012, + 42.837189631000115 + ], + [ + 79.84893056500005, + 42.83154458700005 + ], + [ + 80.23529053700008, + 42.74563426999998 + ], + [ + 80.26065065600011, + 42.81726987000019 + ], + [ + 80.37359663300015, + 42.823662580000075 + ], + [ + 80.57499650000011, + 42.912545120000175 + ], + [ + 80.40077260800007, + 42.983528776000185 + ], + [ + 80.41280365600005, + 43.05538532300011 + ], + [ + 80.54118356700008, + 43.09485235200003 + ], + [ + 80.45295749899998, + 43.188113933000125 + ], + [ + 80.38205749400004, + 43.20031295500013 + ], + [ + 80.37789152100004, + 43.28499146700017 + ], + [ + 80.20590257900017, + 43.30633447500003 + ], + [ + 79.97161061500015, + 43.27158243400015 + ], + [ + 79.58635755800009, + 43.17179403200009 + ], + [ + 79.4966965070002, + 43.17801189600016 + ], + [ + 79.47157259000005, + 43.24663470500019 + ], + [ + 79.52337660800015, + 43.29535250499998 + ], + [ + 79.69135263000015, + 43.35406421700003 + ], + [ + 79.92642260100018, + 43.38466084600003 + ], + [ + 80.08733351700005, + 43.379317047000086 + ], + [ + 80.17140149200009, + 43.406270901000084 + ], + [ + 80.46412655200015, + 43.42062172500016 + ], + [ + 80.73969251600016, + 43.46337680700009 + ], + [ + 80.63731360300011, + 43.63361493700006 + ], + [ + 80.89582055000005, + 43.6629350020001 + ], + [ + 81.05161263800005, + 43.70380465900013 + ], + [ + 81.58440362000005, + 43.75191259300016 + ], + [ + 81.88407157800009, + 43.83079652700013 + ], + [ + 81.95796157500018, + 43.88436543800003 + ], + [ + 81.97245053300014, + 44.07982287100003 + ], + [ + 81.78477452400006, + 44.261764485000185 + ], + [ + 81.10435459000013, + 44.438396163000164 + ], + [ + 80.78126558200017, + 44.47127518400015 + ], + [ + 80.627509627, + 44.42039418200005 + ], + [ + 80.34983058500012, + 44.442886181 + ], + [ + 80.4050066420001, + 44.6113010790001 + ], + [ + 80.32349363900005, + 44.6616168060001 + ], + [ + 80.17049457000019, + 44.62516005300017 + ], + [ + 79.98172757200012, + 44.666216794000036 + ], + [ + 79.78713951000003, + 44.73877976800003 + ], + [ + 79.61034354700007, + 44.77223496200003 + ], + [ + 79.63127164999997, + 44.911200714000074 + ], + [ + 79.51853957900005, + 44.966132857000105 + ], + [ + 79.27619160100016, + 44.97736678700005 + ], + [ + 79.28404963500003, + 45.058787924000114 + ], + [ + 79.5421215610001, + 45.08922077000017 + ], + [ + 79.84143060600007, + 45.1467357140001 + ], + [ + 79.89520252699998, + 45.22217887700009 + ], + [ + 80.12091863, + 45.33485009600014 + ], + [ + 80.34819762300003, + 45.36686997200002 + ], + [ + 80.51808153400009, + 45.455860135000194 + ], + [ + 80.72557051799998, + 45.49266809000005 + ], + [ + 80.90177958000015, + 45.57878141600014 + ], + [ + 81.07018257600015, + 45.76203161300015 + ], + [ + 81.19568665700007, + 45.77170952600005 + ], + [ + 81.49710861200009, + 45.74052867800009 + ], + [ + 81.57913961700012, + 45.71416859800007 + ], + [ + 81.69354253700004, + 45.594089453000095 + ], + [ + 81.79531862300001, + 45.53314513800018 + ], + [ + 82.31133255500015, + 45.44656711900012 + ], + [ + 82.73520657200004, + 45.28761606000012 + ], + [ + 82.73910549900012, + 45.236971930000095 + ], + [ + 82.93395256100018, + 45.14917685900019 + ], + [ + 83.40505960900009, + 44.980662886000175 + ], + [ + 83.57079363900004, + 45.010809910000035 + ], + [ + 84.03831457400014, + 44.948260963 + ], + [ + 84.07797958300011, + 44.985712816000046 + ], + [ + 84.5497055510001, + 45.025599946 + ], + [ + 84.66370362500004, + 45.104262934000076 + ], + [ + 84.69922663400018, + 45.257208862000084 + ], + [ + 84.78836850900012, + 45.38718401700015 + ], + [ + 85.09151462200009, + 45.50092325800006 + ], + [ + 85.09236153000018, + 45.643165329000055 + ], + [ + 85.0450285870001, + 45.70014550700017 + ], + [ + 84.9993975060001, + 45.87244776400013 + ], + [ + 84.68995658400019, + 45.92608289200007 + ], + [ + 84.55171955500009, + 46.010693343000014 + ], + [ + 84.48542054400014, + 46.09495644800006 + ], + [ + 84.6841125540002, + 46.073185293 + ], + [ + 84.81594865900018, + 46.171444835000045 + ], + [ + 84.88482661300009, + 46.13647168000011 + ], + [ + 85.11142751000011, + 46.24352383799999 + ], + [ + 85.44255861800002, + 46.273157051000055 + ], + [ + 85.51192456700011, + 46.26391399099998 + ], + [ + 85.70931252000014, + 46.31397407000014 + ], + [ + 85.7836304970001, + 46.37967846800018 + ], + [ + 85.922698508, + 46.65227472300006 + ], + [ + 86.51414454000013, + 46.62805856700015 + ], + [ + 86.73465765999998, + 46.63194156700007 + ], + [ + 86.85928365200004, + 46.66936760300018 + ], + [ + 86.9334415350001, + 46.730982805999986 + ], + [ + 86.89265452400014, + 46.91425798000006 + ], + [ + 86.73338361100019, + 47.02084444000013 + ], + [ + 86.5634155460001, + 47.1848814710001 + ], + [ + 86.35188262900016, + 47.29114388700003 + ], + [ + 85.77587857700013, + 47.50106026999998 + ], + [ + 85.61303764400003, + 47.59077077400019 + ], + [ + 85.24999964800014, + 47.65738025000013 + ], + [ + 85.09378863300003, + 47.57858667200014 + ], + [ + 84.85558366100008, + 47.55046169900004 + ], + [ + 84.68184659000008, + 47.59774887600008 + ], + [ + 84.05729656700015, + 47.681119644000034 + ], + [ + 83.98705253000008, + 47.71869471000008 + ], + [ + 83.77549765200018, + 47.698979635000114 + ], + [ + 83.53314263300012, + 47.73999983100009 + ], + [ + 83.3272936520001, + 47.71214090000012 + ], + [ + 83.12433659500005, + 47.714158758999986 + ], + [ + 83.03205150600013, + 47.687543702000085 + ], + [ + 82.84532164600006, + 47.696904611000036 + ], + [ + 82.73145265300019, + 47.74508781400016 + ], + [ + 82.39923055600019, + 47.821169679000036 + ], + [ + 82.22165658400007, + 47.92521239900003 + ], + [ + 82.1252286560001, + 48.04111132100002 + ], + [ + 82.12806660000007, + 48.12425276000016 + ], + [ + 82.41013356800005, + 48.276953099000025 + ], + [ + 82.56784058500011, + 48.45262488100013 + ], + [ + 82.65978252000014, + 48.495735189000186 + ], + [ + 82.8785936110001, + 48.41655336100001 + ], + [ + 83.01142850400015, + 48.43510452400011 + ], + [ + 83.12895955000005, + 48.505734129000075 + ], + [ + 83.20350652100012, + 48.64804258400005 + ], + [ + 83.35056265400016, + 48.77131976000004 + ], + [ + 83.39186062599998, + 48.864158893000194 + ], + [ + 83.49481151900011, + 48.92693046300019 + ], + [ + 83.5756305000001, + 48.914017136000155 + ], + [ + 83.71042659100004, + 48.98890407600004 + ], + [ + 84.07796449600005, + 49.09227624400012 + ], + [ + 84.26181751899998, + 49.09758232400003 + ], + [ + 84.4722515690001, + 49.19584220200005 + ], + [ + 84.74122650700008, + 49.168810899000164 + ], + [ + 84.88564250700011, + 49.21746466200011 + ], + [ + 85.12975353500002, + 49.20756127600015 + ], + [ + 85.44154357000008, + 49.26357300800004 + ], + [ + 85.66546661600017, + 49.21451138200018 + ], + [ + 85.90998852500007, + 49.22266345400004 + ], + [ + 86.18472250100018, + 49.29678428800014 + ], + [ + 86.40099354100005, + 49.27882404900009 + ], + [ + 86.52593955400016, + 49.20958349400013 + ], + [ + 86.76521254700009, + 49.16143381900014 + ], + [ + 86.91137651000008, + 49.19815426600019 + ], + [ + 87.0362775960001, + 49.19712429800006 + ], + [ + 87.12245160800006, + 49.129054527000164 + ], + [ + 87.30603758300015, + 49.09860810100008 + ], + [ + 87.27776358000011, + 49.20273246100004 + ], + [ + 87.17247765600013, + 49.24543373200004 + ], + [ + 87.02890755700003, + 49.25390280700009 + ], + [ + 86.93598963400012, + 49.30838467500007 + ], + [ + 86.74701660900018, + 49.303113463000045 + ], + [ + 86.51545764899998, + 49.419904891000044 + ], + [ + 86.28608653300017, + 49.40388372100011 + ], + [ + 86.02118654100019, + 49.40413467500014 + ], + [ + 85.86596660200019, + 49.4368769030001 + ], + [ + 85.5809936280001, + 49.418115690000036 + ], + [ + 85.31217157700019, + 49.537868108000055 + ], + [ + 85.12539662200004, + 49.5732955630001 + ], + [ + 84.99820761100017, + 49.66848867000016 + ], + [ + 84.81764951500003, + 49.581478815000025 + ], + [ + 84.68340260600007, + 49.67211686000013 + ], + [ + 84.571197589, + 49.69924019600006 + ], + [ + 84.42736865600017, + 49.84202876700016 + ], + [ + 84.30323753200008, + 49.876072368999985 + ], + [ + 83.81591049600013, + 49.87504927400016 + ], + [ + 83.63211866000017, + 49.90844076500014 + ], + [ + 83.4111326330002, + 50.01103425399998 + ], + [ + 82.99376666000018, + 50.042864364000195 + ], + [ + 82.91206355600013, + 50.08730202900017 + ], + [ + 82.91546660900008, + 50.21125478700009 + ], + [ + 82.77419264800005, + 50.35443781000015 + ], + [ + 82.9152835480001, + 50.427047723000044 + ], + [ + 82.93723256700014, + 50.50503982300012 + ], + [ + 82.69912750800017, + 50.784882904000085 + ], + [ + 82.83891250800019, + 50.9182049530001 + ], + [ + 83.06792454300006, + 50.94470652000007 + ], + [ + 83.27751151700005, + 51.088709628000174 + ], + [ + 83.24194358200009, + 51.20383154800004 + ], + [ + 83.02945764200007, + 51.306391174000055 + ], + [ + 82.94835652600011, + 51.369094180000104 + ], + [ + 83.06368262900008, + 51.4171332140001 + ], + [ + 83.28072363000013, + 51.417213177 + ], + [ + 83.43988054900012, + 51.370051226000044 + ], + [ + 83.60077654500014, + 51.27749070700003 + ], + [ + 83.83145155000011, + 51.21083881900012 + ], + [ + 84.19833365500017, + 51.24962724900013 + ], + [ + 84.41300961800016, + 51.30317135000007 + ], + [ + 84.52467350000006, + 51.40542587500016 + ], + [ + 84.63713064500018, + 51.612907483000185 + ], + [ + 84.73934158400016, + 51.67965760700008 + ], + [ + 84.885772595, + 51.69958994000018 + ], + [ + 85.271293538, + 51.63897302200007 + ], + [ + 85.39138056200005, + 51.57686462800007 + ], + [ + 85.68379264200013, + 51.308161432000134 + ], + [ + 85.75202954800011, + 51.16741888400014 + ], + [ + 85.94254266400003, + 50.85950313300003 + ], + [ + 86.3213725010001, + 50.44811714499997 + ], + [ + 86.7542116350001, + 50.154675096000176 + ], + [ + 87.02208753700012, + 50.06947992400006 + ], + [ + 87.18125954300012, + 50.12377554600005 + ], + [ + 87.10575854500007, + 50.30498709600005 + ], + [ + 87.17913858700018, + 50.45550629600007 + ], + [ + 87.25910965400016, + 50.54289048600009 + ], + [ + 87.36151857400012, + 50.59199016600013 + ], + [ + 87.76466364200007, + 50.544320606000156 + ], + [ + 87.59864060300009, + 50.90579588100013 + ], + [ + 87.51859259000008, + 51.03434493900005 + ], + [ + 87.5241165990002, + 51.10589906700005 + ], + [ + 87.01526651200015, + 51.29350818900019 + ], + [ + 86.64571359799999, + 51.30914127600005 + ] + ], + [ + [ + 39.93791149000009, + 50.61138857200001 + ], + [ + 39.981952524000064, + 50.699470808000115 + ], + [ + 40.27555449900012, + 50.83159458000006 + ], + [ + 40.392997535, + 50.80223629400007 + ], + [ + 40.392997535, + 50.68479141300014 + ], + [ + 40.246196548000114, + 50.58202995100015 + ], + [ + 40.09939153700009, + 50.52330516400019 + ], + [ + 39.93791149000009, + 50.61138857200001 + ] + ], + [ + [ + 37.75056048000005, + 50.097575225000185 + ], + [ + 37.633117611000046, + 50.20033752600017 + ], + [ + 37.633117611000046, + 50.27374053400018 + ], + [ + 37.70652045200018, + 50.34714052500004 + ], + [ + 37.91204052700016, + 50.376501997000105 + ], + [ + 38.16160549200009, + 50.33246129800011 + ], + [ + 38.235004477000075, + 50.27374053400018 + ], + [ + 38.17628455100004, + 50.14161693000011 + ], + [ + 37.95608156100013, + 50.08289616600007 + ], + [ + 37.75056048000005, + 50.097575225000185 + ] + ], + [ + [ + 72.90104662900018, + 42.12113018000019 + ], + [ + 72.79604351100016, + 42.16151988900015 + ], + [ + 72.7018966330001, + 42.08038943600013 + ], + [ + 72.57644653199998, + 42.05957281200011 + ], + [ + 72.41204857700018, + 42.09626945500014 + ], + [ + 72.23338361700007, + 42.04331074700008 + ], + [ + 72.17194359600018, + 41.98530127100008 + ], + [ + 72.17340858500012, + 41.82881248000007 + ], + [ + 71.85294361600018, + 41.831421599000066 + ], + [ + 71.5781405730001, + 41.74011333600009 + ], + [ + 71.42598757300016, + 41.60479237100003 + ], + [ + 71.21602659700011, + 41.53220307800012 + ], + [ + 70.9668425070002, + 41.52674411200019 + ], + [ + 70.88948055800006, + 41.39377611400005 + ], + [ + 70.79963661400006, + 41.39346732500013 + ], + [ + 70.7096325760001, + 41.31040719100008 + ], + [ + 70.53436262100013, + 41.338257740000074 + ], + [ + 70.5181575530001, + 41.434463884000024 + ], + [ + 70.72295359900016, + 41.544443841000145 + ], + [ + 70.9719775960001, + 41.62026419100016 + ], + [ + 71.30690755000006, + 41.84682133400014 + ], + [ + 71.67127257000016, + 41.964110311000184 + ], + [ + 71.69978361300008, + 42.02900987900006 + ], + [ + 71.63725260400014, + 42.07641859400019 + ], + [ + 71.44669355600018, + 42.06861353300019 + ], + [ + 71.37212361900015, + 42.08875843100009 + ], + [ + 71.16761054500006, + 42.047830939000164 + ], + [ + 70.98632858700006, + 41.975531325000134 + ], + [ + 70.86692049800001, + 42.00039221700007 + ], + [ + 70.88353762100013, + 42.06944870600012 + ], + [ + 71.04438751600003, + 42.17831990500014 + ], + [ + 71.02159158900008, + 42.24281043600007 + ], + [ + 70.89668262400016, + 42.24133823800008 + ], + [ + 70.81249260900017, + 42.272858050000025 + ], + [ + 70.80416854100014, + 42.3648304940001 + ], + [ + 70.85266858000017, + 42.393707324 + ], + [ + 71.07407353500014, + 42.39784630800017 + ], + [ + 71.17185262700019, + 42.35787653200009 + ], + [ + 71.39103654500019, + 42.32806880800007 + ], + [ + 71.63842757900011, + 42.27594812300015 + ], + [ + 71.83318361400018, + 42.314846859000056 + ], + [ + 71.93052651199997, + 42.20626952900011 + ], + [ + 72.06359056600007, + 42.209328588000176 + ], + [ + 72.12590750100009, + 42.27501806700013 + ], + [ + 72.23757959700015, + 42.27562826900015 + ], + [ + 72.3671876250001, + 42.22919956600009 + ], + [ + 72.51473963100005, + 42.25277031600007 + ], + [ + 72.71990951100014, + 42.314968899000064 + ], + [ + 72.93763749200019, + 42.345276520000084 + ], + [ + 73.08101648400003, + 42.37870841200015 + ], + [ + 73.14182249800012, + 42.43731719300007 + ], + [ + 73.09398664100019, + 42.48769679000003 + ], + [ + 72.86042759100019, + 42.50892546800003 + ], + [ + 72.74140959500005, + 42.551017207000086 + ], + [ + 72.660957574, + 42.52823552900003 + ], + [ + 72.50102264700018, + 42.56157622600006 + ], + [ + 72.32630154000014, + 42.63272668100012 + ], + [ + 71.98798362000014, + 42.70375643800014 + ], + [ + 71.90879056000011, + 42.7854359050001 + ], + [ + 71.99033357000008, + 42.82573475400011 + ], + [ + 72.41171263000018, + 42.75664691700018 + ], + [ + 72.65675354700011, + 42.68741860000017 + ], + [ + 72.85916862900012, + 42.69111434800004 + ], + [ + 72.94992854800017, + 42.638685879000036 + ], + [ + 73.18894153400004, + 42.64822565900016 + ], + [ + 73.333930522, + 42.67905664500012 + ], + [ + 73.63912165200003, + 42.639375710000024 + ], + [ + 73.78067758000003, + 42.56960608900016 + ], + [ + 74.04107649000008, + 42.5430362940001 + ], + [ + 74.2476575460002, + 42.62693696600007 + ], + [ + 74.4907376000001, + 42.61805600400015 + ], + [ + 74.68946850100008, + 42.58050809500014 + ], + [ + 74.89028951400013, + 42.596895889 + ], + [ + 75.0518416450002, + 42.56726016200014 + ], + [ + 75.19380962700018, + 42.576716290000036 + ], + [ + 75.44629652300017, + 42.529746451000165 + ], + [ + 75.4961626450002, + 42.42677695000009 + ], + [ + 75.30680053200018, + 42.44633813300004 + ], + [ + 75.22454053400008, + 42.41162934200014 + ], + [ + 74.91584761300015, + 42.40889717700014 + ], + [ + 74.90142051300018, + 42.3062480320001 + ], + [ + 74.7919086010001, + 42.2556391060001 + ], + [ + 74.79535658100014, + 42.15421086900005 + ], + [ + 74.52570354700015, + 42.204739664000044 + ], + [ + 74.34967050500018, + 42.14634093300009 + ], + [ + 74.24971061000008, + 42.186169893000056 + ], + [ + 74.2836836370002, + 42.24303926200014 + ], + [ + 74.49273651600015, + 42.346966647000045 + ], + [ + 74.39669063500008, + 42.42345000500006 + ], + [ + 74.10636849800011, + 42.39211627200018 + ], + [ + 73.67420159300008, + 42.3783074210001 + ], + [ + 73.58403762800015, + 42.34097660400016 + ], + [ + 73.19612164000011, + 42.283059162000086 + ], + [ + 73.12426760800014, + 42.24244850500003 + ], + [ + 73.13803052499998, + 42.17199877700011 + ], + [ + 73.30724354800014, + 42.131918024000186 + ], + [ + 73.44161953800005, + 42.06207866600016 + ], + [ + 73.53256251700014, + 42.159177818000046 + ], + [ + 73.65897351900009, + 42.09274955900008 + ], + [ + 73.88098163600006, + 42.03953084400007 + ], + [ + 74.06815355700019, + 41.92135187600019 + ], + [ + 74.05101759500008, + 41.85721221200009 + ], + [ + 73.7381595380001, + 41.880122971000105 + ], + [ + 73.60637657400014, + 41.94837144400009 + ], + [ + 73.36338754700006, + 41.98802119900006 + ], + [ + 73.10211155500008, + 42.04963975400017 + ], + [ + 72.98977661800012, + 42.049330797000096 + ], + [ + 72.90104662900018, + 42.12113018000019 + ] + ], + [ + [ + 85.08579263200005, + 46.771560270000066 + ], + [ + 84.99760461699998, + 46.69015086700011 + ], + [ + 84.84156761100019, + 46.676581572000146 + ], + [ + 84.69910459300013, + 46.717288788000076 + ], + [ + 84.64483663200014, + 46.79191236900016 + ], + [ + 84.63805366000008, + 46.9547281560001 + ], + [ + 84.71721654500016, + 46.978543322000064 + ], + [ + 84.91177359400007, + 47.096055928000055 + ], + [ + 84.91467255900005, + 47.13948608900017 + ], + [ + 84.73203256500017, + 47.233946618000175 + ], + [ + 84.74819153300012, + 47.34070138599998 + ], + [ + 84.85485862700011, + 47.391196653000065 + ], + [ + 85.18900252700013, + 47.48578609499998 + ], + [ + 85.42407953900005, + 47.49322939299998 + ], + [ + 85.54591352000011, + 47.44147885200016 + ], + [ + 85.71670552600006, + 47.42282777700018 + ], + [ + 85.85238657800011, + 47.2532258330001 + ], + [ + 85.87274152700007, + 47.131113071000186 + ], + [ + 85.79811861600007, + 46.961514145000194 + ], + [ + 85.71670552600006, + 46.880104742000185 + ], + [ + 85.30966957800007, + 46.852966487000174 + ], + [ + 85.08579263200005, + 46.771560270000066 + ] + ], + [ + [ + 77.19814262000006, + 42.64575769100003 + ], + [ + 77.37566361800009, + 42.683035367000116 + ], + [ + 77.5193326230002, + 42.65139569400014 + ], + [ + 77.80507656400005, + 42.730924198000025 + ], + [ + 78.00038949300017, + 42.70977632100005 + ], + [ + 78.11564652900006, + 42.57184925400003 + ], + [ + 78.0006785010001, + 42.45926604500016 + ], + [ + 77.90149661400011, + 42.46111676900017 + ], + [ + 77.80126950400017, + 42.29759690200018 + ], + [ + 77.68776663300008, + 42.208737497000186 + ], + [ + 77.4940875040001, + 42.15289105500011 + ], + [ + 77.29306063200016, + 42.1748977420001 + ], + [ + 77.05435962000001, + 42.15785800300017 + ], + [ + 76.8086696090001, + 42.21753044800005 + ], + [ + 76.7468036200001, + 42.25348730400009 + ], + [ + 76.59120951300008, + 42.26529824400012 + ], + [ + 76.3876875160002, + 42.34747760800013 + ], + [ + 76.2319566160001, + 42.334308799999974 + ], + [ + 76.18546253500017, + 42.446220115000074 + ], + [ + 76.30442051600005, + 42.477946625000186 + ], + [ + 76.45107264100011, + 42.468257815000015 + ], + [ + 76.61589053000017, + 42.508475528000076 + ], + [ + 76.63169863200005, + 42.54739639200005 + ], + [ + 76.77831253500011, + 42.5890071770001 + ], + [ + 76.96701851200015, + 42.60087511400019 + ], + [ + 77.19814262000006, + 42.64575769100003 + ] + ], + [ + [ + 81.34683952900008, + 47.383776657000055 + ], + [ + 81.27381856700003, + 47.46942914700003 + ], + [ + 81.97445665800012, + 47.41794867100003 + ], + [ + 82.37551865500012, + 47.32741003500007 + ], + [ + 82.80776250600013, + 47.29116685300016 + ], + [ + 83.0111386580001, + 47.33096630900019 + ], + [ + 83.24765752500008, + 47.338217326000176 + ], + [ + 83.34301760000011, + 47.259897828000135 + ], + [ + 83.45252951200013, + 47.235944696000104 + ], + [ + 83.7148205520001, + 47.260465786000054 + ], + [ + 83.80799865000012, + 47.248636741000155 + ], + [ + 83.81316357800006, + 47.1111468740001 + ], + [ + 83.99751264200012, + 46.991627138000126 + ], + [ + 83.944816623, + 46.94673584300011 + ], + [ + 83.62756359900015, + 46.996827103000044 + ], + [ + 83.08488465300019, + 47.188852314000144 + ], + [ + 82.83883656800009, + 47.18134531400017 + ], + [ + 82.70680264900011, + 47.23132559600003 + ], + [ + 82.44435855500006, + 47.2239745 + ], + [ + 82.37394755100019, + 47.19883549600013 + ], + [ + 82.157096652, + 47.18633422200014 + ], + [ + 81.90682257800012, + 47.31036610500013 + ], + [ + 81.66578653500017, + 47.3209670330001 + ], + [ + 81.55853254000016, + 47.37555635700011 + ], + [ + 81.34683952900008, + 47.383776657000055 + ] + ] + ], + [ + [ + [ + 171.62023973400005, + -43.46487238999998 + ], + [ + 171.5754396350003, + -43.573122154999965 + ], + [ + 171.40595973200016, + -43.664124812999944 + ], + [ + 171.2673186950002, + -43.546785041999954 + ], + [ + 171.25904860600008, + -43.493902273999936 + ], + [ + 171.14413472500007, + -43.335638865999954 + ], + [ + 171.11489864700013, + -43.32772316399996 + ], + [ + 171.15184071200008, + -43.41862373099991 + ], + [ + 171.13012672100012, + -43.542154207999886 + ], + [ + 171.0566707390002, + -43.58459999799993 + ], + [ + 170.98185772700003, + -43.530782311999985 + ], + [ + 170.81826761900015, + -43.53210631799993 + ], + [ + 170.86561564900035, + -43.61268004399989 + ], + [ + 170.8518527320001, + -43.69858650499998 + ], + [ + 170.89540074200022, + -43.744908589999966 + ], + [ + 170.82762165600002, + -43.91854206199997 + ], + [ + 170.75152571000012, + -43.95651694499992 + ], + [ + 170.65351863000012, + -44.087055530999976 + ], + [ + 170.52755773600006, + -44.03926879299996 + ], + [ + 170.6256866880001, + -43.84963326199994 + ], + [ + 170.61500562900005, + -43.69368476799997 + ], + [ + 170.42298863200028, + -43.888852019999945 + ], + [ + 170.20532267700003, + -43.8580520459999 + ], + [ + 170.11868263100007, + -43.90008209399991 + ], + [ + 170.09217871800013, + -44.103843477999874 + ], + [ + 169.99290463000023, + -44.177841265999916 + ], + [ + 170.01820356100006, + -44.21614438399996 + ], + [ + 169.80824258600035, + -44.337871243999984 + ], + [ + 169.84992964600008, + -44.37788007899991 + ], + [ + 169.8021846490003, + -44.51238598799995 + ], + [ + 169.6813357100001, + -44.55275675499996 + ], + [ + 169.64456161900023, + -44.46499990499996 + ], + [ + 169.5681307320002, + -44.46969192599994 + ], + [ + 169.49035672900004, + -44.53932492199988 + ], + [ + 169.35476670400033, + -44.55660974799997 + ], + [ + 169.28724661800015, + -44.6104918069999 + ], + [ + 169.14660666500004, + -44.61836576599984 + ], + [ + 169.10385158300005, + -44.76324360999996 + ], + [ + 168.97567769800003, + -44.913603553999906 + ], + [ + 168.9467006210001, + -44.988730551999936 + ], + [ + 169.0385746620001, + -45.05045974899997 + ], + [ + 168.99743661600007, + -45.17212256999994 + ], + [ + 168.87622071700002, + -45.33783296399997 + ], + [ + 168.69441271100004, + -45.44376697699994 + ], + [ + 168.6478886220001, + -45.506740047999926 + ], + [ + 168.5510556800001, + -45.509357045999934 + ], + [ + 168.47581468800013, + -45.58793621499996 + ], + [ + 168.2205506990001, + -45.652187357999935 + ], + [ + 168.4789126390002, + -45.88976284799992 + ], + [ + 168.70237769800008, + -45.98935813099996 + ], + [ + 168.81600965100006, + -46.00857615799998 + ], + [ + 168.8844906380001, + -46.05962412799988 + ], + [ + 168.7536776280001, + -46.10202834399996 + ], + [ + 168.66160560700018, + -46.16333140499995 + ], + [ + 168.87742570000012, + -46.2137807389999 + ], + [ + 168.9993585870002, + -46.087117272999876 + ], + [ + 169.20181272900004, + -46.11461745999998 + ], + [ + 169.48568767300014, + -46.24035790999994 + ], + [ + 169.78350859600005, + -46.38875430899998 + ], + [ + 169.91192672900002, + -46.338140185999976 + ], + [ + 170.23773164100032, + -46.15202840799992 + ], + [ + 170.31524664300002, + -45.98924715399994 + ], + [ + 170.4244076890002, + -45.93729796299988 + ], + [ + 170.6644286830001, + -45.90619288699992 + ], + [ + 170.61691268000015, + -45.83729967799991 + ], + [ + 170.75970460300005, + -45.75925041299996 + ], + [ + 170.69384765400002, + -45.68368939999988 + ], + [ + 170.8599546800001, + -45.4853630099999 + ], + [ + 170.91137665000008, + -45.395083876999934 + ], + [ + 170.87356571700002, + -45.355914740999935 + ], + [ + 170.9755246960001, + -45.148966556999824 + ], + [ + 171.07995566600005, + -45.065081642999985 + ], + [ + 171.1985777010001, + -44.917857536999975 + ], + [ + 171.21524058900013, + -44.74535679599995 + ], + [ + 171.19607570300002, + -44.55813894199997 + ], + [ + 171.26330560700012, + -44.463412874999904 + ], + [ + 171.29357869500006, + -44.34147210899994 + ], + [ + 171.5394286320003, + -44.167858418999856 + ], + [ + 171.86746162200006, + -44.06091757199994 + ], + [ + 171.95523070900003, + -44.004528820999894 + ], + [ + 172.18969768700003, + -43.90702499199989 + ], + [ + 172.07412767000005, + -43.757031336999944 + ], + [ + 171.93609666800012, + -43.70897470099993 + ], + [ + 171.74383559000012, + -43.56147516599998 + ], + [ + 171.6658015810002, + -43.534811325999954 + ], + [ + 171.62023973400005, + -43.46487238999998 + ] + ] + ], + [ + [ + [ + 171.6419217060003, + -43.45454957399994 + ], + [ + 171.93637058900015, + -43.68591055299993 + ], + [ + 172.1921996850001, + -43.79453046299989 + ], + [ + 172.25637874400013, + -43.87702615999996 + ], + [ + 172.38693258600017, + -43.86119509199989 + ], + [ + 172.39025869300008, + -43.76175437199987 + ], + [ + 172.51303060800012, + -43.72729955299985 + ], + [ + 172.5571896590002, + -43.76508047899989 + ], + [ + 172.43664565400013, + -43.85313924499991 + ], + [ + 172.71524067000007, + -43.80619538999997 + ], + [ + 172.8707886760003, + -43.90230195699991 + ], + [ + 172.96524065500012, + -43.89841090999994 + ], + [ + 173.11077865700008, + -43.83118921999994 + ], + [ + 173.1005247400003, + -43.69508069099993 + ], + [ + 172.80386370500025, + -43.59369385999997 + ], + [ + 172.72717264400023, + -43.423139564999985 + ], + [ + 172.74410962000002, + -43.27119326199988 + ], + [ + 172.81802359000005, + -43.15869068699993 + ], + [ + 172.95303358600006, + -43.09063700899992 + ], + [ + 173.1069026980001, + -43.05564138999995 + ], + [ + 173.1685785850002, + -42.9900895429999 + ], + [ + 173.28552273100001, + -42.95591786499995 + ], + [ + 173.31774863400017, + -42.8598112979999 + ], + [ + 173.3730167240002, + -42.81731538399998 + ], + [ + 173.53137166300007, + -42.530085163999956 + ], + [ + 173.59805272000017, + -42.458362726999894 + ], + [ + 173.5907747130001, + -42.373119274999965 + ], + [ + 173.7503966600001, + -42.25647520099989 + ], + [ + 173.80432163400008, + -42.176610583999945 + ], + [ + 173.78132672100003, + -42.10241129399998 + ], + [ + 173.6477966330001, + -42.218465449999826 + ], + [ + 173.47177163700007, + -42.30627460299996 + ], + [ + 173.2390896700001, + -42.37494334399997 + ], + [ + 173.18284559000017, + -42.41100312999998 + ], + [ + 173.08874464600012, + -42.542949205999946 + ], + [ + 172.709808693, + -42.578546813999935 + ], + [ + 172.6528627140001, + -42.708242012999904 + ], + [ + 172.47702061100006, + -42.758515829999965 + ], + [ + 172.43756062200032, + -42.858159391999834 + ], + [ + 172.36817958600022, + -42.89479115899985 + ], + [ + 172.3824916860001, + -42.96189164699996 + ], + [ + 172.33377070000017, + -43.04047433599982 + ], + [ + 172.15858473300023, + -43.11169000299998 + ], + [ + 172.09089667400008, + -43.21419866699989 + ], + [ + 171.97901972400007, + -43.22194253999993 + ], + [ + 171.8883816780001, + -43.264125305999926 + ], + [ + 171.6419217060003, + -43.45454957399994 + ] + ] + ], + [ + [ + [ + 148.34126281700003, + -32.27128543999993 + ], + [ + 148.27390999800002, + -32.13302919599994 + ], + [ + 148.2741843340002, + -32.06149970599995 + ], + [ + 148.22639326700005, + -31.953438665999954 + ], + [ + 148.39396519700017, + -31.767478818999905 + ], + [ + 148.43197476900002, + -31.692657052999834 + ], + [ + 148.5079486840001, + -31.68123946099996 + ], + [ + 148.55946261600002, + -31.740407374999904 + ], + [ + 148.66694593800003, + -31.739720565999846 + ], + [ + 148.67341580900006, + -31.68795698499997 + ], + [ + 148.56088169200018, + -31.49282164499988 + ], + [ + 148.59281843100007, + -31.394510881999906 + ], + [ + 148.70663434900007, + -31.413122565999913 + ], + [ + 148.74490353900012, + -31.278388878999976 + ], + [ + 148.7176510810001, + -31.257549267999934 + ], + [ + 148.79412828900013, + -31.102461980999976 + ], + [ + 148.81120285400004, + -31.015017501999978 + ], + [ + 148.8925780830001, + -30.932615720999934 + ], + [ + 148.8822326170001, + -30.88845124799991 + ], + [ + 148.73432875100002, + -30.70885336799995 + ], + [ + 148.51438803200017, + -30.561673500999973 + ], + [ + 148.45895259400015, + -30.475270557999977 + ], + [ + 148.54981865100012, + -30.400685259999932 + ], + [ + 148.89901623300022, + -30.35189574499998 + ], + [ + 149.08790480200025, + -30.306447040999956 + ], + [ + 149.25030410900013, + -30.308168636999937 + ], + [ + 149.49291840100022, + -30.22017034399994 + ], + [ + 149.70740413700014, + -30.26166696699994 + ], + [ + 149.67162940900005, + -30.16529344199995 + ], + [ + 149.60426147200008, + -30.08727337099998 + ], + [ + 149.54572823400008, + -29.963316612999904 + ], + [ + 149.4496887580001, + -29.846110223999972 + ], + [ + 149.48911718800002, + -29.74409342799993 + ], + [ + 149.6345638260002, + -29.67053403099993 + ], + [ + 149.64396293400023, + -29.565564584999947 + ], + [ + 149.73435589300004, + -29.46232519299997 + ], + [ + 149.90353035500016, + -29.421778212999982 + ], + [ + 149.78847843000005, + -29.264731134999977 + ], + [ + 149.7143657680001, + -29.095513073999882 + ], + [ + 149.65545113800022, + -29.00863895699996 + ], + [ + 149.66308034300005, + -28.959740136999926 + ], + [ + 149.79392448200008, + -28.927108801999907 + ], + [ + 149.88006033300007, + -28.853753750999942 + ], + [ + 149.87830527200015, + -28.800393568999937 + ], + [ + 150.1430608720001, + -28.755671495999934 + ], + [ + 150.26003486000002, + -28.721332987999972 + ], + [ + 150.43040963200008, + -28.76371363399994 + ], + [ + 150.54015622100007, + -28.74922563499996 + ], + [ + 150.73429540300003, + -28.798122627999874 + ], + [ + 150.67989692800006, + -28.716411434999884 + ], + [ + 150.74724909200006, + -28.66137644299988 + ], + [ + 150.68377845500004, + -28.59784939499997 + ], + [ + 150.56192399700012, + -28.653923896999913 + ], + [ + 150.4807509730001, + -28.645268770999905 + ], + [ + 150.39400862000014, + -28.59131387099984 + ], + [ + 150.28724864100013, + -28.41615891799995 + ], + [ + 150.1808164680001, + -28.353372829999955 + ], + [ + 150.16070120100005, + -28.30110394499991 + ], + [ + 150.0423360210001, + -28.382137526999884 + ], + [ + 149.90174328900002, + -28.37009770399993 + ], + [ + 149.94147498600023, + -28.22549964399991 + ], + [ + 149.6997972570001, + -28.329283985999894 + ], + [ + 149.55082951600014, + -28.426224078999894 + ], + [ + 149.4704780930001, + -28.50272016499997 + ], + [ + 149.37728323000022, + -28.524222934999898 + ], + [ + 149.3072349470002, + -28.638009884999974 + ], + [ + 149.2219653860002, + -28.646321526999884 + ], + [ + 149.16667427800007, + -28.77539184199992 + ], + [ + 149.01033352600018, + -28.893712026999935 + ], + [ + 148.94178097100007, + -28.89146412799994 + ], + [ + 148.89905070500004, + -28.968019980999884 + ], + [ + 148.77573089800012, + -28.991685987999915 + ], + [ + 148.82798049100006, + -29.066599802999917 + ], + [ + 148.77321666600017, + -29.117827580999972 + ], + [ + 148.63013489000002, + -29.146091095999907 + ], + [ + 148.60010555600002, + -29.269741023999984 + ], + [ + 148.66899954500002, + -29.340398874999835 + ], + [ + 148.6672296900001, + -29.419887852999977 + ], + [ + 148.49411893500007, + -29.541772069999922 + ], + [ + 148.47292341000002, + -29.373961190999978 + ], + [ + 148.57714093200002, + -29.252077148999888 + ], + [ + 148.55417647800016, + -29.186719787999948 + ], + [ + 148.74170630300023, + -28.98008916299989 + ], + [ + 148.84061624700007, + -28.802682270999924 + ], + [ + 148.90838280900005, + -28.755326976999868 + ], + [ + 148.87845494800013, + -28.615771961999883 + ], + [ + 148.8991813240001, + -28.527734221999935 + ], + [ + 148.77174699900002, + -28.306885452999836 + ], + [ + 148.8207494080002, + -28.251278332999902 + ], + [ + 148.84060566300002, + -28.132775606999928 + ], + [ + 148.66399770400005, + -27.87701329899994 + ], + [ + 148.61178954200022, + -27.822221642999978 + ], + [ + 148.71758956000008, + -27.68927028699983 + ], + [ + 148.67278361400008, + -27.573972073999926 + ], + [ + 148.73182685400002, + -27.518163344999948 + ], + [ + 148.71530122800016, + -27.406090630999927 + ], + [ + 148.81423211900017, + -27.33595995099995 + ], + [ + 148.7733630460002, + -27.267678516999922 + ], + [ + 148.66975018500023, + -27.18816865799988 + ], + [ + 148.6095685560001, + -27.07845652599991 + ], + [ + 148.53005492800003, + -27.009205758999883 + ], + [ + 148.41878865800004, + -27.044681643999922 + ], + [ + 148.34737186100006, + -26.93627820399996 + ], + [ + 148.26900828300018, + -26.91806670299991 + ], + [ + 148.19970552500024, + -26.79608072199983 + ], + [ + 148.05243022500008, + -26.88590874399995 + ], + [ + 147.97795039000005, + -26.749850800999866 + ], + [ + 147.848270242, + -26.713994368999977 + ], + [ + 147.80441783100014, + -26.741011778999848 + ], + [ + 147.7063015010001, + -26.695675865999874 + ], + [ + 147.62016419400004, + -26.58581685199988 + ], + [ + 147.5741933260001, + -26.608692619999943 + ], + [ + 147.546980404, + -26.69846079399997 + ], + [ + 147.45100010500005, + -26.63771242499996 + ], + [ + 147.35231809700008, + -26.712826052999844 + ], + [ + 147.31641047000016, + -26.66155391999996 + ], + [ + 147.1843492370001, + -26.70837933499996 + ], + [ + 147.0762517600001, + -26.637513470999977 + ], + [ + 147.09578199300006, + -26.582196008999972 + ], + [ + 147.02069392900023, + -26.480643229999885 + ], + [ + 147.03998121200004, + -26.398498434999965 + ], + [ + 146.97358489300007, + -26.34184418399991 + ], + [ + 147.03922045000002, + -26.278419708999877 + ], + [ + 147.06742948300018, + -26.101160012999912 + ], + [ + 147.01878815700013, + -26.020882363999874 + ], + [ + 147.0401967160002, + -25.894304914999964 + ], + [ + 146.9907359990001, + -25.78844387999993 + ], + [ + 146.8937577900001, + -25.837931770999944 + ], + [ + 146.91800065600012, + -25.915971697999964 + ], + [ + 146.79500759200005, + -26.053972407999936 + ], + [ + 146.70299134100014, + -26.123472696999897 + ], + [ + 146.42136475100006, + -26.133866544999876 + ], + [ + 146.54634753100015, + -26.029283429999964 + ], + [ + 146.4788938480001, + -25.934838855999885 + ], + [ + 146.4138029940002, + -25.99839143099996 + ], + [ + 146.27074745100003, + -25.962434004999977 + ], + [ + 146.14236950600014, + -26.045009396999887 + ], + [ + 146.12934420300007, + -25.85821237599987 + ], + [ + 145.9206132800001, + -25.64846869199988 + ], + [ + 145.76148250800009, + -25.617443523999953 + ], + [ + 145.73054663400023, + -25.491966240999943 + ], + [ + 145.82533817000012, + -25.37398735499994 + ], + [ + 145.78982832400015, + -25.3535013959999 + ], + [ + 145.7781885820002, + -25.23822837299997 + ], + [ + 145.71879000500007, + -25.19214643999993 + ], + [ + 145.82308541200007, + -24.98297645299988 + ], + [ + 145.8229028390001, + -24.89490095699989 + ], + [ + 145.86914257000024, + -24.75453876599994 + ], + [ + 145.75936490300012, + -24.812924103999933 + ], + [ + 145.7121432570001, + -24.99723193699998 + ], + [ + 145.60558588300012, + -25.13070296799998 + ], + [ + 145.5573864470001, + -25.240614518999962 + ], + [ + 145.4655282550001, + -25.274201294999898 + ], + [ + 145.53614121800013, + -25.38304851299995 + ], + [ + 145.41560076100018, + -25.49375708899987 + ], + [ + 145.33077441700016, + -25.445676705999915 + ], + [ + 145.17611491800005, + -25.590066441999966 + ], + [ + 145.1092832520003, + -25.535958609999966 + ], + [ + 145.08627371700015, + -25.459847264999894 + ], + [ + 145.01909349900018, + -25.414953372999832 + ], + [ + 145.08815454000023, + -25.2533548159999 + ], + [ + 145.0214944080002, + -25.12390603199998 + ], + [ + 145.13173562300005, + -25.06837652799993 + ], + [ + 145.20143372100017, + -24.992473392999898 + ], + [ + 144.95581298800005, + -25.024446551999915 + ], + [ + 144.88334045600027, + -25.012786731999938 + ], + [ + 144.91466949600022, + -24.93595329199991 + ], + [ + 144.809664042, + -24.838549715999875 + ], + [ + 144.8275186420001, + -24.782033765999984 + ], + [ + 144.72469718000013, + -24.655424589999825 + ], + [ + 144.61783593000018, + -24.67594475699991 + ], + [ + 144.59936045300014, + -24.77899169799997 + ], + [ + 144.5057806000002, + -24.87169067799988 + ], + [ + 144.44796990600014, + -24.89182401599993 + ], + [ + 144.37795404800022, + -24.836739361999832 + ], + [ + 144.21578398400004, + -24.876668862999963 + ], + [ + 144.23713558300005, + -24.922807805999923 + ], + [ + 144.11399838000023, + -25.136894112999926 + ], + [ + 144.04803559800007, + -25.07518353599994 + ], + [ + 143.98328272800006, + -25.080521570999906 + ], + [ + 143.97158197600004, + -25.158532733999948 + ], + [ + 143.90020480600015, + -25.320409393999967 + ], + [ + 143.85894317100008, + -25.324105403999965 + ], + [ + 143.86787356300033, + -25.47767701299989 + ], + [ + 143.94732263900005, + -25.737759292999954 + ], + [ + 144.00851829900023, + -25.863192079999976 + ], + [ + 143.98024801600002, + -26.00304680399995 + ], + [ + 144.00821171000018, + -26.12836993299993 + ], + [ + 143.92682710500014, + -26.144571681999935 + ], + [ + 143.8652995670002, + -26.005790108999918 + ], + [ + 143.88272559600023, + -25.938449525999943 + ], + [ + 143.82064679100006, + -25.858268833999944 + ], + [ + 143.7579689700001, + -25.695654523999906 + ], + [ + 143.79011793900008, + -25.650870409999925 + ], + [ + 143.74086644400006, + -25.572435295999924 + ], + [ + 143.8667172160001, + -25.57130042499989 + ], + [ + 143.842181653, + -25.487812279999957 + ], + [ + 143.78658237100012, + -25.452099202999932 + ], + [ + 143.68940053300025, + -25.298984394999934 + ], + [ + 143.5451566180002, + -25.311110223999947 + ], + [ + 143.55885784200018, + -25.24832687399993 + ], + [ + 143.4985049820001, + -25.173738961999902 + ], + [ + 143.31989897300014, + -25.197918865999952 + ], + [ + 143.1715353950001, + -25.43503302199997 + ], + [ + 143.1283614450001, + -25.427552869999943 + ], + [ + 143.0023020010002, + -25.540171390999888 + ], + [ + 142.86446070600016, + -25.593464771999948 + ], + [ + 142.87129991300003, + -25.798565891999942 + ], + [ + 142.7931388170001, + -25.864133485999957 + ], + [ + 142.7423955920001, + -25.81413180699991 + ], + [ + 142.6870941530001, + -25.8864791499999 + ], + [ + 142.67401040200014, + -25.993943255999966 + ], + [ + 142.59182355200005, + -25.954406735999953 + ], + [ + 142.58662624400006, + -25.89903974899994 + ], + [ + 142.46070100500003, + -25.915376232999904 + ], + [ + 142.40051477800012, + -25.866406306999977 + ], + [ + 142.3100965540001, + -25.984845502999974 + ], + [ + 142.32918205600004, + -26.01988652499989 + ], + [ + 142.28024040100001, + -26.168153347999862 + ], + [ + 142.39162714700012, + -26.193832424999925 + ], + [ + 142.51306718900014, + -26.179772539999874 + ], + [ + 142.60146784300014, + -26.09263859399988 + ], + [ + 142.75138762900008, + -26.201276417999907 + ], + [ + 142.83771964000005, + -26.316448531999924 + ], + [ + 142.8584255000003, + -26.427369669999962 + ], + [ + 142.92337673500015, + -26.544551012999875 + ], + [ + 143.06857585700004, + -26.727638703999958 + ], + [ + 143.0538716970001, + -26.794145280999828 + ], + [ + 143.12015126100016, + -26.91929833499995 + ], + [ + 143.0285272210001, + -27.064100120999967 + ], + [ + 143.25834470200016, + -27.08274525099995 + ], + [ + 143.3219046910001, + -27.206662357999903 + ], + [ + 143.46674318400005, + -27.251996951999956 + ], + [ + 143.541978706, + -27.338385855999945 + ], + [ + 143.46190833700007, + -27.45966932099998 + ], + [ + 143.419085794, + -27.635455393999962 + ], + [ + 143.53367333000006, + -27.818761967999933 + ], + [ + 143.70149123600015, + -27.958566622999967 + ], + [ + 143.80782653600022, + -27.99856298799989 + ], + [ + 143.73219803000006, + -28.080738528999973 + ], + [ + 143.55562148700017, + -28.063049833999912 + ], + [ + 143.52344057300013, + -28.149667790999956 + ], + [ + 143.4153674910001, + -28.215976809999916 + ], + [ + 143.35053179600004, + -28.22344118799998 + ], + [ + 143.30762220000008, + -28.39810886099997 + ], + [ + 143.23774024800014, + -28.56853525899993 + ], + [ + 143.33313005500008, + -28.581948047999845 + ], + [ + 143.39171890500006, + -28.45133364499992 + ], + [ + 143.51008267400005, + -28.463250127999856 + ], + [ + 143.50604711000005, + -28.543138772999953 + ], + [ + 143.6313063470002, + -28.685327247999965 + ], + [ + 143.72879525700023, + -28.64218281199993 + ], + [ + 143.7914142630002, + -28.66726636599998 + ], + [ + 143.79530212900022, + -28.79459258099996 + ], + [ + 143.70319833300005, + -28.901154103999943 + ], + [ + 143.68867363000004, + -29.149682445999872 + ], + [ + 143.6118940670002, + -29.13971473999993 + ], + [ + 143.51835725500018, + -29.187990122999906 + ], + [ + 143.33657914600008, + -29.19560830899991 + ], + [ + 143.3165146760001, + -29.365530529999944 + ], + [ + 143.22064470500004, + -29.582078191999926 + ], + [ + 143.06268688600017, + -29.75535190399995 + ], + [ + 143.05002263300014, + -29.847095816999968 + ], + [ + 142.85231472700002, + -29.840284639999936 + ], + [ + 142.81590747500002, + -29.888651508999885 + ], + [ + 142.7301228230001, + -29.894440196999938 + ], + [ + 142.74802149300012, + -30.053706485999953 + ], + [ + 142.66277121600012, + -30.162126642999908 + ], + [ + 142.68048691400008, + -30.21623834199994 + ], + [ + 142.82137137100017, + -30.267552467999906 + ], + [ + 142.87438075100022, + -30.403494380999973 + ], + [ + 142.98853235900003, + -30.525222927999835 + ], + [ + 142.96746056200016, + -30.60988508699984 + ], + [ + 142.8823928190002, + -30.636841619999927 + ], + [ + 142.82930695200014, + -30.536174537999955 + ], + [ + 142.85373578500014, + -30.445193209999957 + ], + [ + 142.70790735500032, + -30.32070278599997 + ], + [ + 142.60941998200008, + -30.38617874499994 + ], + [ + 142.54650019400003, + -30.289593406999984 + ], + [ + 142.43277650100026, + -30.240116514999954 + ], + [ + 142.17542204400013, + -30.337346271999934 + ], + [ + 142.33913496700006, + -30.567295884999908 + ], + [ + 142.44120076000002, + -30.572418970999877 + ], + [ + 142.4861226080002, + -30.539227205999907 + ], + [ + 142.66098761100022, + -30.58130799099996 + ], + [ + 142.70452179100016, + -30.745133746999954 + ], + [ + 142.67147084400017, + -30.79396017099998 + ], + [ + 142.71845314400025, + -30.922810103999893 + ], + [ + 142.78101448500001, + -30.94741510399996 + ], + [ + 142.8485348500003, + -31.035998094999968 + ], + [ + 142.82285415, + -31.106614143999877 + ], + [ + 142.90186440100013, + -31.152268207999896 + ], + [ + 143.01682435200019, + -31.067017756999974 + ], + [ + 143.10108337600013, + -31.04085532299996 + ], + [ + 143.29886667400012, + -31.105029811999884 + ], + [ + 143.33385466500033, + -31.18661640499988 + ], + [ + 143.22715057300013, + -31.218079882999973 + ], + [ + 143.27060744400012, + -31.279193608999947 + ], + [ + 143.13477374600006, + -31.348570610999843 + ], + [ + 143.13477338000018, + -31.45645193199988 + ], + [ + 142.98490160400013, + -31.567574186999934 + ], + [ + 142.94290946200022, + -31.62957993099991 + ], + [ + 143.03528589600035, + -31.772993628999984 + ], + [ + 142.9820479770002, + -31.8142018289999 + ], + [ + 142.97786706000022, + -31.91384516499994 + ], + [ + 142.93718754400004, + -32.01834289499993 + ], + [ + 142.82263976500008, + -32.05747023599997 + ], + [ + 142.76242870500005, + -32.12709575899987 + ], + [ + 142.65064280200022, + -32.14211833799993 + ], + [ + 142.59481100500022, + -32.19164439399998 + ], + [ + 142.4030079810001, + -32.165528991999906 + ], + [ + 142.37389423600007, + -32.24207465599994 + ], + [ + 142.18148092800016, + -32.326719195999885 + ], + [ + 141.98427585700017, + -32.47800661899993 + ], + [ + 141.94136803800006, + -32.468218100999934 + ], + [ + 142.06496493500015, + -32.72429871299994 + ], + [ + 142.06958877300008, + -32.80613898699988 + ], + [ + 142.12548190400003, + -32.8330326329999 + ], + [ + 142.04918792700016, + -32.98940513799994 + ], + [ + 141.97350438800004, + -33.075007083999935 + ], + [ + 141.99813234900034, + -33.13274260799989 + ], + [ + 141.9010102740002, + -33.16883375499998 + ], + [ + 141.88521710700013, + -33.10727246299996 + ], + [ + 141.76801434300035, + -33.169616152999936 + ], + [ + 141.681908313, + -33.11542438699996 + ], + [ + 141.69256065000002, + -33.369838417999915 + ], + [ + 141.7343246700001, + -33.442188226999974 + ], + [ + 141.74876075900033, + -33.578101665999895 + ], + [ + 141.7091338790001, + -33.6017682719999 + ], + [ + 141.68047860700017, + -33.730632173999936 + ], + [ + 141.7434521580003, + -33.762702108999974 + ], + [ + 141.67008828700023, + -33.89878285799989 + ], + [ + 141.7517382860001, + -33.96741618199991 + ], + [ + 141.77041530100007, + -34.06189751799997 + ], + [ + 141.60708460600006, + -34.10196239099997 + ], + [ + 141.53075979400012, + -34.04891610699991 + ], + [ + 141.36536908900007, + -33.991176521999876 + ], + [ + 141.38256556900035, + -33.90015487899984 + ], + [ + 141.25318562300026, + -33.91054171099995 + ], + [ + 141.16988745800018, + -34.0650283789999 + ], + [ + 141.0505316340001, + -34.03255836099987 + ], + [ + 141.05066879900016, + -33.9558069119999 + ], + [ + 140.9662400850002, + -33.88974085499996 + ], + [ + 140.89184452900008, + -33.891483698999934 + ], + [ + 140.86357556000019, + -33.95175700999994 + ], + [ + 140.72430663900013, + -33.977034474999925 + ], + [ + 140.64622587200006, + -34.06432193099988 + ], + [ + 140.65310655100006, + -34.23172345399996 + ], + [ + 140.5593107330003, + -34.243026509999936 + ], + [ + 140.48251363100007, + -34.176628249999965 + ], + [ + 140.3708343940001, + -34.18202613799991 + ], + [ + 140.1601260110001, + -34.14723229299989 + ], + [ + 140.10893250900006, + -34.16593171299991 + ], + [ + 139.95602413000006, + -34.132732191999935 + ], + [ + 139.92262238000023, + -34.06653234599992 + ], + [ + 139.83383174100004, + -34.074432681999895 + ], + [ + 139.94830299600017, + -34.198990075999916 + ], + [ + 140.1817323070003, + -34.16553123799997 + ], + [ + 140.31492615700006, + -34.19682687199992 + ], + [ + 140.386322, + -34.365726666999876 + ], + [ + 140.5580750590002, + -34.495765879999965 + ], + [ + 140.66943326600017, + -34.45322407799989 + ], + [ + 140.61572233800018, + -34.373028156999965 + ], + [ + 140.70541363400002, + -34.283424267999976 + ], + [ + 140.84170540700006, + -34.25462330599987 + ], + [ + 140.80668612500017, + -34.13827512099988 + ], + [ + 140.81951941900013, + -34.07672491999995 + ], + [ + 140.92965662000006, + -33.97862595099997 + ], + [ + 141.0990407600001, + -34.189648597999906 + ], + [ + 141.21699020200015, + -34.24527197199984 + ], + [ + 141.36313091800002, + -34.244528913999886 + ], + [ + 141.47879686800013, + -34.26749024699984 + ], + [ + 141.53260258500006, + -34.22069693999998 + ], + [ + 141.63471056900016, + -34.24779703899998 + ], + [ + 141.85774446000028, + -34.23691858999996 + ], + [ + 142.02542692600002, + -34.13195673099989 + ], + [ + 142.09015213400005, + -34.20454694799997 + ], + [ + 142.2152301020003, + -34.20827489799996 + ], + [ + 142.20921781000004, + -34.27456591399988 + ], + [ + 142.2933200010001, + -34.35618177299989 + ], + [ + 142.3752677020002, + -34.508383789999925 + ], + [ + 142.37046549300032, + -34.65239648099998 + ], + [ + 142.3263509850002, + -34.71233189799989 + ], + [ + 142.36096365900005, + -34.77274215599988 + ], + [ + 142.48835996900027, + -34.76239955599988 + ], + [ + 142.6029595440002, + -34.7955031059999 + ], + [ + 142.7122130350001, + -34.739136664999876 + ], + [ + 142.7055657840001, + -34.629463088999955 + ], + [ + 142.77462308500003, + -34.591846964999945 + ], + [ + 142.87425730200016, + -34.69562941499993 + ], + [ + 142.99900374300012, + -34.71854219799985 + ], + [ + 143.1611777840003, + -34.715913247999936 + ], + [ + 143.20985426000016, + -34.801449564999984 + ], + [ + 143.34311457700005, + -34.86309348999987 + ], + [ + 143.2539627010001, + -34.89804994799994 + ], + [ + 143.2883456180001, + -35.03157597299986 + ], + [ + 143.45364606800013, + -35.27997222299996 + ], + [ + 143.52167744400015, + -35.31032458899995 + ], + [ + 143.5703728100001, + -35.4212088299999 + ], + [ + 143.67256069300015, + -35.44995701399995 + ], + [ + 143.60013224400018, + -35.66421171499991 + ], + [ + 143.52026252700023, + -35.73570017299983 + ], + [ + 143.45979507700008, + -35.84303071399995 + ], + [ + 143.36572309300016, + -35.83841631399997 + ], + [ + 143.32386176800014, + -35.9377058309999 + ], + [ + 143.35283412700005, + -35.99203992199995 + ], + [ + 143.3495829100001, + -36.1278386059999 + ], + [ + 143.4029162270001, + -36.27203265599985 + ], + [ + 143.49315851000017, + -36.42910044699994 + ], + [ + 143.53239496900005, + -36.310770247999926 + ], + [ + 143.46582828500004, + -36.30087372999998 + ], + [ + 143.46537754300005, + -36.21053485599998 + ], + [ + 143.70962247700015, + -36.27959754699998 + ], + [ + 143.70003604300007, + -36.347830330999955 + ], + [ + 143.79321724300019, + -36.412586263999856 + ], + [ + 143.83467701000018, + -36.504466738999895 + ], + [ + 143.93316541000013, + -36.46266524699996 + ], + [ + 143.9549228100003, + -36.56367377299995 + ], + [ + 143.88886888500008, + -36.57935363099995 + ], + [ + 143.90523274400016, + -36.80694555499991 + ], + [ + 143.94826437700033, + -36.87404365499998 + ], + [ + 144.14349727700017, + -36.73929810499993 + ], + [ + 144.12475333400027, + -36.640875688999984 + ], + [ + 144.16564467600006, + -36.57538708099992 + ], + [ + 144.28839667700004, + -36.543621438999935 + ], + [ + 144.34932694400004, + -36.49074757199992 + ], + [ + 144.46816178500023, + -36.49885277999982 + ], + [ + 144.51870606900002, + -36.67523409799992 + ], + [ + 144.58032717700007, + -36.74797369799995 + ], + [ + 144.63473161800016, + -36.60275581399992 + ], + [ + 144.75719548500024, + -36.607493530999875 + ], + [ + 144.82357330900004, + -36.675503979999974 + ], + [ + 144.92832594300012, + -36.579947422999965 + ], + [ + 145.0892299420002, + -36.52217746499997 + ], + [ + 145.210478168, + -36.646620905999896 + ], + [ + 145.1338792260002, + -36.69293613899998 + ], + [ + 145.102721577, + -36.774806388999934 + ], + [ + 145.1002343680002, + -36.968959346999895 + ], + [ + 145.24052291800012, + -36.929577105999954 + ], + [ + 145.29096611800003, + -36.86666683899989 + ], + [ + 145.47866739300014, + -36.79457216399993 + ], + [ + 145.58540359300014, + -36.78175886399998 + ], + [ + 145.695714543, + -36.66556463099994 + ], + [ + 145.814146692, + -36.62876598099996 + ], + [ + 145.99025985100013, + -36.65346379799996 + ], + [ + 146.0601947020001, + -36.68582557299982 + ], + [ + 146.09216415900005, + -36.599876488999826 + ], + [ + 146.08081379300006, + -36.51595217299996 + ], + [ + 146.15570800100022, + -36.47150766399989 + ], + [ + 146.17263540900012, + -36.38664598899993 + ], + [ + 146.05731510900023, + -36.20366608099988 + ], + [ + 146.04526540900008, + -36.12235728999997 + ], + [ + 146.24878190900017, + -36.223603538999896 + ], + [ + 146.23439625100002, + -36.317721322999944 + ], + [ + 146.27131087600003, + -36.40945583999991 + ], + [ + 146.21860800900004, + -36.55278779799994 + ], + [ + 146.35313569300024, + -36.622211888999914 + ], + [ + 146.55709908500012, + -36.46586511399994 + ], + [ + 146.49183403400014, + -36.316577347999896 + ], + [ + 146.43064073400012, + -36.267218355999944 + ], + [ + 146.43317308500013, + -36.194004280999934 + ], + [ + 146.54266051700006, + -36.15731649799989 + ], + [ + 146.60182012600012, + -36.08799508999988 + ], + [ + 146.71918033400016, + -36.15123976499996 + ], + [ + 146.76819855000008, + -36.07749507399984 + ], + [ + 146.85424635900006, + -36.10969456499993 + ], + [ + 146.91439751000007, + -36.184604739999884 + ], + [ + 147.03077465800004, + -36.15565803199996 + ], + [ + 146.99017000100014, + -36.086159997999914 + ], + [ + 146.91404000100022, + -36.112719997999875 + ], + [ + 146.56476221000014, + -35.90691540599988 + ], + [ + 146.48152561500012, + -35.90290655399991 + ], + [ + 146.3224835870002, + -35.748232273999974 + ], + [ + 146.3444562530001, + -35.677290591999906 + ], + [ + 146.1706431150003, + -35.633856557999934 + ], + [ + 146.11738964300002, + -35.55103218399984 + ], + [ + 146.16865928800007, + -35.464263507999874 + ], + [ + 146.27064925000013, + -35.493068035999954 + ], + [ + 146.28500781000014, + -35.57863892099988 + ], + [ + 146.34614990500006, + -35.61611059399996 + ], + [ + 146.4546095940002, + -35.50370313799988 + ], + [ + 146.37572164000005, + -35.42482344699994 + ], + [ + 146.30275397800017, + -35.426795696999875 + ], + [ + 146.2593729780001, + -35.332138097999916 + ], + [ + 146.267262124, + -35.23945653499993 + ], + [ + 146.37868264300016, + -35.19467971299997 + ], + [ + 146.36398827100004, + -35.09668842499997 + ], + [ + 146.40314269400005, + -35.04656765999994 + ], + [ + 146.3547870240002, + -34.84127289499992 + ], + [ + 146.54063944300003, + -34.74238505799997 + ], + [ + 146.53381866300003, + -34.68611832699992 + ], + [ + 146.43150824400016, + -34.645197845999974 + ], + [ + 146.45367882500022, + -34.55824192699998 + ], + [ + 146.39740387200004, + -34.464464789999965 + ], + [ + 146.14506861300003, + -34.40478788899992 + ], + [ + 146.0241422890001, + -34.295267726999896 + ], + [ + 146.1403687080001, + -34.24043889199987 + ], + [ + 146.27978844300003, + -34.23922553999995 + ], + [ + 146.3488954070001, + -34.2996163329999 + ], + [ + 146.61506972600023, + -34.32121873099993 + ], + [ + 146.70349433800004, + -34.31460779299988 + ], + [ + 146.75943263500005, + -34.25781433299994 + ], + [ + 146.6636666620002, + -34.00341962099998 + ], + [ + 146.60565264200034, + -33.92363879499993 + ], + [ + 146.65287805000003, + -33.78262416599995 + ], + [ + 146.78875763300005, + -33.71455057799983 + ], + [ + 146.81147829200017, + -33.64344831499983 + ], + [ + 146.9170842970001, + -33.58522079999989 + ], + [ + 146.90542679900022, + -33.51045996499988 + ], + [ + 147.05040185000007, + -33.378345888999945 + ], + [ + 147.00584654300008, + -33.1651266799999 + ], + [ + 146.9211297080002, + -33.181007260999934 + ], + [ + 146.80026467200014, + -33.07195248499994 + ], + [ + 147.14764752500014, + -33.078899358999934 + ], + [ + 147.21538142200006, + -33.049373656999876 + ], + [ + 147.2179904290001, + -32.9825020429999 + ], + [ + 147.32915111300008, + -33.014633395999965 + ], + [ + 147.4863476590001, + -33.02418579799996 + ], + [ + 147.51500264000003, + -32.86699677699994 + ], + [ + 147.50545000600016, + -32.75670612499994 + ], + [ + 147.53059553800006, + -32.63911818699995 + ], + [ + 147.61735589600005, + -32.474196847999906 + ], + [ + 147.52391002600007, + -32.30147857999992 + ], + [ + 147.618789213, + -32.28845865499994 + ], + [ + 147.73413129500022, + -32.44007376699989 + ], + [ + 147.88740627200002, + -32.49140754699994 + ], + [ + 147.91700894700023, + -32.59432816899994 + ], + [ + 148.02252358600015, + -32.57982038499995 + ], + [ + 148.13780426300013, + -32.64695453699994 + ], + [ + 148.2404346190001, + -32.59800766899991 + ], + [ + 148.26008745500008, + -32.51550306399997 + ], + [ + 148.21632430600016, + -32.41750726299995 + ], + [ + 148.33525146700003, + -32.39086473799989 + ], + [ + 148.30670192700018, + -32.31856124099983 + ], + [ + 148.34126281700003, + -32.27128543999993 + ] + ], + [ + [ + 147.96471804500004, + -28.951276116999964 + ], + [ + 148.05474447600034, + -28.96898480799996 + ], + [ + 148.06064527500018, + -29.076617273999943 + ], + [ + 147.93733882400034, + -29.108109937999984 + ], + [ + 147.94208402300012, + -29.17942027099997 + ], + [ + 147.90528018800012, + -29.302610503999972 + ], + [ + 147.9152286210001, + -29.392124398999954 + ], + [ + 147.85549035800022, + -29.450891904999935 + ], + [ + 147.78519347500003, + -29.6233093809999 + ], + [ + 147.84349820400007, + -29.73170417599988 + ], + [ + 147.74199657400004, + -29.799371702999906 + ], + [ + 147.58757749300003, + -29.85541006099993 + ], + [ + 147.54781345300012, + -29.92656565999988 + ], + [ + 147.55071342200017, + -30.016686395999898 + ], + [ + 147.38935143600008, + -30.033602988999974 + ], + [ + 147.38466649200006, + -29.976101980999942 + ], + [ + 147.29447091900022, + -29.893872448999957 + ], + [ + 147.27855558100032, + -29.8368425299999 + ], + [ + 147.37271705100022, + -29.728087020999908 + ], + [ + 147.34900474800008, + -29.69006580499996 + ], + [ + 147.49872358400012, + -29.531797126999948 + ], + [ + 147.59023076800008, + -29.543733141999894 + ], + [ + 147.59964528500007, + -29.44250977099989 + ], + [ + 147.68343136900012, + -29.3296074779999 + ], + [ + 147.8218598090001, + -29.274618201999942 + ], + [ + 147.90761311100027, + -29.032381830999952 + ], + [ + 147.96471804500004, + -28.951276116999964 + ] + ], + [ + [ + 144.81078124300018, + -30.831773341999963 + ], + [ + 144.99741175000008, + -30.802369338999938 + ], + [ + 145.03163738700016, + -30.86546639599993 + ], + [ + 145.12793598200017, + -30.90924152899987 + ], + [ + 145.07015104900017, + -31.101852310999902 + ], + [ + 145.06941885100002, + -31.221363348999944 + ], + [ + 144.84776993600008, + -31.457305824999935 + ], + [ + 144.60471176900012, + -31.431707759999938 + ], + [ + 144.64937489200008, + -31.534582739999905 + ], + [ + 144.58710418600015, + -31.590716276999956 + ], + [ + 144.62477897100007, + -31.72605245799997 + ], + [ + 144.535576901, + -31.877536858999918 + ], + [ + 144.33158176000006, + -31.952276939999933 + ], + [ + 144.23677859800011, + -31.938116242999968 + ], + [ + 144.30167532100018, + -32.07119832399991 + ], + [ + 144.43665460300008, + -32.014305957999966 + ], + [ + 144.47034641900018, + -32.06458368099993 + ], + [ + 144.37066072100026, + -32.104726061999884 + ], + [ + 144.41962691100002, + -32.18033716899998 + ], + [ + 144.49900331600008, + -32.19246382499989 + ], + [ + 144.58829753900034, + -32.10868106299995 + ], + [ + 144.6867632320001, + -32.13728005699994 + ], + [ + 144.77570654400006, + -32.06763468199995 + ], + [ + 144.8605919150002, + -32.1318321629999 + ], + [ + 144.98753030600017, + -32.15118757699992 + ], + [ + 145.0420197750003, + -32.215259028999924 + ], + [ + 145.15314936700008, + -32.136118258999886 + ], + [ + 145.31304557800013, + -31.914044241999875 + ], + [ + 145.38447281000003, + -31.998736163999922 + ], + [ + 145.52882185100032, + -32.07680109199998 + ], + [ + 145.53544461100012, + -32.153392315999895 + ], + [ + 145.4470805650003, + -32.20126343399994 + ], + [ + 145.53544515400006, + -32.30436644399998 + ], + [ + 145.53176900300014, + -32.61146827099998 + ], + [ + 145.56196645500006, + -32.65492123699994 + ], + [ + 145.49052454500008, + -32.72193779899993 + ], + [ + 145.32334855400006, + -32.79926605399993 + ], + [ + 145.18345517800003, + -32.67292463399997 + ], + [ + 145.10781681100002, + -32.727856333999966 + ], + [ + 145.13171235200002, + -32.846480559999975 + ], + [ + 145.2906029510001, + -32.83794312899994 + ], + [ + 145.32577443200012, + -32.914465492999966 + ], + [ + 145.28854299700004, + -32.99728240299987 + ], + [ + 145.40512036000018, + -33.05539524999995 + ], + [ + 145.439437665, + -32.982530537999935 + ], + [ + 145.6429911800002, + -32.93316767899995 + ], + [ + 145.67073205500014, + -32.873463866999884 + ], + [ + 145.58845606300008, + -32.822694499999955 + ], + [ + 145.5818641760003, + -32.733293567999965 + ], + [ + 145.7649706960001, + -32.787377320999894 + ], + [ + 145.82585306800013, + -32.96160174299996 + ], + [ + 146.00177197400023, + -33.00220106199998 + ], + [ + 146.04576291800015, + -32.9260826819999 + ], + [ + 146.04913500300017, + -32.71294822799996 + ], + [ + 146.12590170600004, + -32.722713645999875 + ], + [ + 146.09480460200007, + -32.82966252199998 + ], + [ + 146.13540819600007, + -32.846580631999984 + ], + [ + 146.1438616590001, + -32.97006195499989 + ], + [ + 146.24873546200013, + -33.06647866299994 + ], + [ + 146.22337543000003, + -33.15782126099998 + ], + [ + 146.1303272370002, + -33.13921328299989 + ], + [ + 146.07098573400003, + -33.20189258399995 + ], + [ + 146.06843689100003, + -33.36392559799998 + ], + [ + 145.93750101700005, + -33.30667534799994 + ], + [ + 145.88830675600013, + -33.25821351999997 + ], + [ + 145.79197747600017, + -33.25264066499989 + ], + [ + 145.49969445600004, + -33.15423766999993 + ], + [ + 145.38885410800003, + -33.13298240499995 + ], + [ + 145.32812407500012, + -33.08136203899994 + ], + [ + 145.2356709080001, + -33.07978282499994 + ], + [ + 145.1186816170001, + -33.03996134799996 + ], + [ + 145.00707813600002, + -32.915888762999884 + ], + [ + 144.87217498600012, + -32.90842373199996 + ], + [ + 144.81663272900005, + -32.81158412499991 + ], + [ + 144.75681819300007, + -32.84576378899993 + ], + [ + 144.63149751100002, + -32.824401576999946 + ], + [ + 144.6087162050003, + -32.90700115299995 + ], + [ + 144.5303925940002, + -32.96966141299998 + ], + [ + 144.437817321, + -32.955421204999936 + ], + [ + 144.36907647600003, + -33.046699228999955 + ], + [ + 144.28019409, + -33.09669852399992 + ], + [ + 144.1047939660001, + -33.015747167999905 + ], + [ + 143.9853328680001, + -33.070022779999874 + ], + [ + 143.98533269200004, + -32.994564251999975 + ], + [ + 143.8551752440003, + -33.022861840999894 + ], + [ + 144.0013700610001, + -33.10114676199993 + ], + [ + 144.00686340100026, + -33.17973709199998 + ], + [ + 144.11739811300004, + -33.25733172899993 + ], + [ + 144.16828615200006, + -33.14987173799983 + ], + [ + 144.28716742500012, + -33.14265041899989 + ], + [ + 144.3678865170001, + -33.22159149699996 + ], + [ + 144.50127915100018, + -33.20490211999993 + ], + [ + 144.54465991300003, + -33.25112084699998 + ], + [ + 144.50504811300004, + -33.32091831699995 + ], + [ + 144.4267702100002, + -33.28696001899988 + ], + [ + 144.2786836460001, + -33.2907332499999 + ], + [ + 144.22846712500007, + -33.39546944999995 + ], + [ + 144.14097327100023, + -33.40863766299998 + ], + [ + 144.01038867600005, + -33.513240488999884 + ], + [ + 144.00536854100005, + -33.59638938499995 + ], + [ + 144.05230480300008, + -33.65513568599988 + ], + [ + 143.92686216200013, + -33.69443101799993 + ], + [ + 143.8419619650001, + -33.63689411899992 + ], + [ + 143.805585134, + -33.731048281999904 + ], + [ + 143.61390453600018, + -33.820819522999955 + ], + [ + 143.47924552700022, + -33.815009707999934 + ], + [ + 143.39010423900004, + -34.03886749399993 + ], + [ + 143.3926833390001, + -34.190612373999954 + ], + [ + 143.27506879100008, + -34.27470738899996 + ], + [ + 143.2896562830001, + -34.33739039599993 + ], + [ + 143.23318368200023, + -34.38890406799993 + ], + [ + 143.25273027200012, + -34.45686281099995 + ], + [ + 143.33154148300025, + -34.5443720909999 + ], + [ + 143.29121184400003, + -34.63064208399982 + ], + [ + 143.19656135100013, + -34.60674682199988 + ], + [ + 142.94958173100008, + -34.649899707999964 + ], + [ + 142.9006637220001, + -34.51945105099992 + ], + [ + 142.79007471500006, + -34.54676729799996 + ], + [ + 142.69497582100007, + -34.52780524899998 + ], + [ + 142.6361216910002, + -34.56867282899998 + ], + [ + 142.66826980100006, + -34.6945436019999 + ], + [ + 142.5554767970001, + -34.70544239499998 + ], + [ + 142.47646876000022, + -34.524536913999896 + ], + [ + 142.41653211400012, + -34.447708856999895 + ], + [ + 142.40508811100028, + -34.34363200599989 + ], + [ + 142.26724095500003, + -34.29023528699997 + ], + [ + 142.25035047100016, + -34.20686809099993 + ], + [ + 142.29176294500007, + -34.15782587299998 + ], + [ + 142.16752566900004, + -34.06519347899996 + ], + [ + 142.11521891800032, + -34.14148035299996 + ], + [ + 141.94084141500014, + -34.050484145999974 + ], + [ + 141.9955585340001, + -33.92138009099989 + ], + [ + 142.06632874000024, + -33.90931783199994 + ], + [ + 142.03898481900012, + -33.80559324799998 + ], + [ + 142.1451248430002, + -33.82649722699995 + ], + [ + 142.2729622920001, + -33.748505645999956 + ], + [ + 142.5262418660002, + -33.55150653599998 + ], + [ + 142.62595760700015, + -33.43170210699998 + ], + [ + 142.52544745300008, + -33.302246785999955 + ], + [ + 142.39840204800032, + -33.204953469999964 + ], + [ + 142.32764685100005, + -33.18002856199996 + ], + [ + 142.32039852700007, + -33.09319070499987 + ], + [ + 142.38553836000006, + -33.05620325199993 + ], + [ + 142.39035992000015, + -32.93317924999991 + ], + [ + 142.43377129700002, + -32.90905885899991 + ], + [ + 142.416086016, + -32.79246624599995 + ], + [ + 142.43699040000013, + -32.728143028999966 + ], + [ + 142.549569721, + -32.62361273699997 + ], + [ + 142.5399106100001, + -32.495766989999936 + ], + [ + 142.60665244400002, + -32.43304956099996 + ], + [ + 142.9627316750001, + -32.381192671999884 + ], + [ + 143.0615629780001, + -32.39459357299995 + ], + [ + 143.16375102200004, + -32.35355510699992 + ], + [ + 143.3685393420002, + -32.369805446999976 + ], + [ + 143.40245914300021, + -32.24131907499992 + ], + [ + 143.37062903600008, + -32.15839914199995 + ], + [ + 143.26111657100012, + -32.1495224169999 + ], + [ + 143.23996779900028, + -32.07882841499992 + ], + [ + 143.31479631700017, + -31.91527773499996 + ], + [ + 143.2886674140001, + -31.826646149999874 + ], + [ + 143.36423452400015, + -31.766935909999916 + ], + [ + 143.40901881700006, + -31.669907278999915 + ], + [ + 143.57228797300002, + -31.711891823999963 + ], + [ + 143.59841112400022, + -31.62139377199992 + ], + [ + 143.72623345900013, + -31.570080428999972 + ], + [ + 143.80585384100016, + -31.620646157999943 + ], + [ + 143.90053456300018, + -31.627291615999923 + ], + [ + 144.07331011200017, + -31.722813391999978 + ], + [ + 144.16135281000004, + -31.628953056999933 + ], + [ + 144.11400476900008, + -31.555857600999957 + ], + [ + 144.14806180400024, + -31.42794095399995 + ], + [ + 144.2352810110001, + -31.435416068999928 + ], + [ + 144.32250017700017, + -31.355675247999955 + ], + [ + 144.33911682300015, + -31.18207335099987 + ], + [ + 144.4404507060001, + -31.20948358399994 + ], + [ + 144.52229871100008, + -31.1110678149999 + ], + [ + 144.617452629, + -31.06092512099991 + ], + [ + 144.76053409400004, + -30.843156615999874 + ], + [ + 144.81078124300018, + -30.831773341999963 + ] + ], + [ + [ + 145.83183329500014, + -33.35734265699995 + ], + [ + 145.87365787900012, + -33.434842021999884 + ], + [ + 145.84332328100004, + -33.523858351999934 + ], + [ + 145.8979347940001, + -33.68773018199988 + ], + [ + 145.8878189210002, + -33.83744239099997 + ], + [ + 145.85141133200023, + -33.89611259499998 + ], + [ + 145.77922372600005, + -34.15295949399996 + ], + [ + 145.72046063300013, + -34.152960468999936 + ], + [ + 145.581116919, + -34.08580674399997 + ], + [ + 145.534119636, + -34.02033113899995 + ], + [ + 145.59286593000002, + -33.985075655999935 + ], + [ + 145.4476472050003, + -33.83410513399991 + ], + [ + 145.4048456720002, + -33.70806371499992 + ], + [ + 145.43841491600017, + -33.65266281699991 + ], + [ + 145.53242440400004, + -33.617407319999984 + ], + [ + 145.57063241000003, + -33.498861684999895 + ], + [ + 145.68684371800032, + -33.36073462599995 + ], + [ + 145.83183329500014, + -33.35734265699995 + ] + ], + [ + [ + 143.5014327250001, + -34.419368131999875 + ], + [ + 143.60867201700023, + -34.401812812999935 + ], + [ + 143.64475918400012, + -34.49829397699989 + ], + [ + 143.6057274030003, + -34.61171632899993 + ], + [ + 143.41723478300003, + -34.68862877299989 + ], + [ + 143.33991803800006, + -34.62293223099988 + ], + [ + 143.36889473300005, + -34.51756623899996 + ], + [ + 143.29266235500018, + -34.4041438349999 + ], + [ + 143.41723457100022, + -34.43575232799998 + ], + [ + 143.5014327250001, + -34.419368131999875 + ] + ], + [ + [ + 143.4096509550002, + -34.729774002999875 + ], + [ + 143.55250486700004, + -34.66057887799991 + ], + [ + 143.60822972000017, + -34.68267744799988 + ], + [ + 143.57556065400001, + -34.76819922499993 + ], + [ + 143.73411477200023, + -34.838347558999885 + ], + [ + 143.7667836930001, + -34.99305230099998 + ], + [ + 143.50456129400004, + -34.95968903199986 + ], + [ + 143.47686633600006, + -34.88406692899997 + ], + [ + 143.2740607200002, + -34.74000173299993 + ], + [ + 143.4096509550002, + -34.729774002999875 + ] + ], + [ + [ + 143.45695337000006, + -34.93552709599987 + ], + [ + 143.493971159, + -35.021892 + ], + [ + 143.4917269550001, + -35.120196328999896 + ], + [ + 143.4031802500001, + -35.18247861499992 + ], + [ + 143.3326235740002, + -34.97188528599992 + ], + [ + 143.34640253200018, + -34.89301264199986 + ], + [ + 143.45695337000006, + -34.93552709599987 + ] + ], + [ + [ + 141.86245664500018, + -34.01713242699992 + ], + [ + 141.77043038700003, + -33.943814721999956 + ], + [ + 141.72643910700015, + -33.87027980899995 + ], + [ + 141.80129826900009, + -33.80462125899987 + ], + [ + 141.7330146590001, + -33.683810782999956 + ], + [ + 141.7927509990002, + -33.51309925499993 + ], + [ + 141.87482794900006, + -33.47370455999993 + ], + [ + 141.89148975500007, + -33.34839580099998 + ], + [ + 141.79303927700005, + -33.27914767999994 + ], + [ + 141.90841102700017, + -33.24685208099993 + ], + [ + 141.9507242210002, + -33.32421778299994 + ], + [ + 142.03231329800008, + -33.355646741999976 + ], + [ + 142.07039887800022, + -33.29580926899996 + ], + [ + 142.01116387900015, + -33.235972222999976 + ], + [ + 142.06254024800012, + -33.161024548999876 + ], + [ + 142.153955407, + -33.10365120699993 + ], + [ + 142.07419722800012, + -32.997316742999885 + ], + [ + 142.20171523500005, + -32.95301990899992 + ], + [ + 142.18834889000016, + -33.1349240319999 + ], + [ + 142.37600225500012, + -33.25679520299991 + ], + [ + 142.41625534700006, + -33.324956141999905 + ], + [ + 142.53374866100035, + -33.421028726999964 + ], + [ + 142.4285857750001, + -33.554104620999965 + ], + [ + 142.38444265600015, + -33.6670578159999 + ], + [ + 142.27993536500003, + -33.718987485999946 + ], + [ + 142.1611304940002, + -33.73132080499988 + ], + [ + 142.10076752400028, + -33.79104373399991 + ], + [ + 142.00623922400007, + -33.77680772899993 + ], + [ + 141.94593679700017, + -33.83592794899994 + ], + [ + 141.86245664500018, + -34.01713242699992 + ] + ], + [ + [ + 142.2311794750001, + -32.75412159399997 + ], + [ + 142.19770192100032, + -32.846647157999826 + ], + [ + 142.1228420010002, + -32.795660032999876 + ], + [ + 142.2311794750001, + -32.75412159399997 + ] + ], + [ + [ + 143.74172854300002, + -35.717784663999964 + ], + [ + 143.81335112600027, + -35.75612408899997 + ], + [ + 143.7922075260002, + -35.94568658099996 + ], + [ + 143.7569598770001, + -36.01491322199996 + ], + [ + 143.66857058400012, + -36.061026863999984 + ], + [ + 143.64500327700011, + -36.122423513999934 + ], + [ + 143.46206046800035, + -36.158323646999975 + ], + [ + 143.4114560600002, + -36.073410913999965 + ], + [ + 143.57188418500016, + -35.96359417199983 + ], + [ + 143.54655801, + -35.878943222999965 + ], + [ + 143.63933461800002, + -35.749447080999914 + ], + [ + 143.74172854300002, + -35.717784663999964 + ] + ], + [ + [ + 144.19508747700002, + -36.02838173099997 + ], + [ + 144.27498950100005, + -36.12440392299993 + ], + [ + 144.1875747260002, + -36.169597447999934 + ], + [ + 144.15724768500013, + -36.054103822999934 + ], + [ + 144.19508747700002, + -36.02838173099997 + ] + ], + [ + [ + 145.67095842700007, + -36.29615351499996 + ], + [ + 145.7968841180002, + -36.33300630599996 + ], + [ + 145.70544122600006, + -36.40646444799995 + ], + [ + 145.6240659260003, + -36.349748014999875 + ], + [ + 145.67095842700007, + -36.29615351499996 + ] + ], + [ + [ + 145.99656114300012, + -36.32520714799995 + ], + [ + 146.1431614090002, + -36.39277598999996 + ], + [ + 146.0463662090002, + -36.45285948999998 + ], + [ + 145.95521829300014, + -36.463252614999874 + ], + [ + 145.9157412930001, + -36.37044809799994 + ], + [ + 145.99656114300012, + -36.32520714799995 + ] + ], + [ + [ + 145.80710868400013, + -36.460927305999974 + ], + [ + 145.78724795100004, + -36.52330212299995 + ], + [ + 145.7053944510002, + -36.56719341499985 + ], + [ + 145.6269654680001, + -36.48556747199996 + ], + [ + 145.69583836800007, + -36.43761691399993 + ], + [ + 145.80710868400013, + -36.460927305999974 + ] + ] + ], + [ + [ + [ + 144.52326521100008, + -32.25089317499993 + ], + [ + 144.4174297310002, + -32.23215180699992 + ], + [ + 144.4122268440002, + -32.31970584599992 + ], + [ + 144.49163371800012, + -32.319705866999925 + ], + [ + 144.52326521100008, + -32.25089317499993 + ] + ] + ], + [ + [ + [ + 146.6199293310001, + -25.142563451999877 + ], + [ + 146.60774516100003, + -25.211486925999907 + ], + [ + 146.67396679900003, + -25.23046752199997 + ], + [ + 146.69533628200008, + -25.42046473399995 + ], + [ + 146.51939777700022, + -25.609795196999983 + ], + [ + 146.52815918400006, + -25.706534567999938 + ], + [ + 146.49344366100001, + -25.817775410999957 + ], + [ + 146.61017730000026, + -25.767419634999953 + ], + [ + 146.66042081000023, + -25.689535814999886 + ], + [ + 146.68158134200007, + -25.572599380999975 + ], + [ + 146.73801785900025, + -25.5684290829999 + ], + [ + 146.86907831200006, + -25.3424628599999 + ], + [ + 146.79490502900012, + -25.24310411099998 + ], + [ + 146.81883089200028, + -25.184685401999957 + ], + [ + 146.7737573840002, + -25.123193973999946 + ], + [ + 146.6199293310001, + -25.142563451999877 + ] + ] + ], + [ + [ + [ + 143.65081576900002, + -25.021355960999983 + ], + [ + 143.57112059300005, + -24.980416691999835 + ], + [ + 143.58765775700022, + -24.865621760999943 + ], + [ + 143.6413197290002, + -24.73812800199994 + ], + [ + 143.60832252900025, + -24.604794125999888 + ], + [ + 143.49207803100023, + -24.59092272099997 + ], + [ + 143.42103557300015, + -24.514402398999948 + ], + [ + 143.3203318430002, + -24.33192859099995 + ], + [ + 143.27112258400007, + -24.450379951999878 + ], + [ + 143.2186006950002, + -24.4979684569999 + ], + [ + 143.21130332000007, + -24.61530279699997 + ], + [ + 143.11486811200007, + -24.72593738099988 + ], + [ + 143.13616047300013, + -24.798636594999948 + ], + [ + 143.30235474300014, + -24.792652958999952 + ], + [ + 143.37336441700018, + -24.86086384299989 + ], + [ + 143.39224089200002, + -24.9242631489999 + ], + [ + 143.30470357600007, + -24.96753998199995 + ], + [ + 143.24453230900008, + -25.052240249999898 + ], + [ + 143.3320751030002, + -25.077506894999885 + ], + [ + 143.35542656300015, + -25.13265386799992 + ], + [ + 143.4695070240001, + -25.108208440999874 + ], + [ + 143.65081576900002, + -25.021355960999983 + ] + ] + ], + [ + [ + [ + 56.32311082299998, + 24.944955246000063 + ], + [ + 56.26168712700013, + 25.144964469000058 + ], + [ + 56.32562892500016, + 25.21915853700017 + ], + [ + 56.33830936500004, + 25.365028573000075 + ], + [ + 56.307462619000034, + 25.38166603100018 + ], + [ + 56.353015258000084, + 25.565890175 + ], + [ + 56.26467488600014, + 25.623007202000167 + ], + [ + 56.27138875300011, + 25.704166667000095 + ], + [ + 56.35006510500017, + 25.77493591300015 + ], + [ + 56.42977041800003, + 25.937357123000083 + ], + [ + 56.419551596000076, + 26.03878173800007 + ], + [ + 56.33750000000015, + 26.154960124000127 + ], + [ + 56.386533610000185, + 26.195833333000053 + ], + [ + 56.44613807900009, + 26.337195705 + ], + [ + 56.345611572000166, + 26.36272176100016 + ], + [ + 56.289166260000115, + 26.222499593 + ], + [ + 56.18742182400007, + 26.23719075000008 + ], + [ + 56.17589314800006, + 26.17916666700006 + ], + [ + 56.09618173100006, + 26.080159081000147 + ], + [ + 56.05914637300015, + 25.9017862500001 + ], + [ + 56.05917276800011, + 25.900218368000026 + ], + [ + 56.026694277, + 25.839960546000157 + ], + [ + 56.03253986900012, + 25.73914654400005 + ], + [ + 55.99171064900003, + 25.387511624000012 + ], + [ + 56.01131587000009, + 25.28615803100007 + ], + [ + 55.92417156300007, + 24.968607416 + ], + [ + 55.94953244499999, + 24.905115280000075 + ], + [ + 55.89179597000009, + 24.854573381000023 + ], + [ + 55.917426648, + 24.738021243000105 + ], + [ + 55.973724208000135, + 24.618591276000018 + ], + [ + 55.97588258100012, + 24.53261608700012 + ], + [ + 56.03271973400018, + 24.511392087000104 + ], + [ + 55.92210312300017, + 24.36156503500007 + ], + [ + 55.975342988000136, + 24.271902626000042 + ], + [ + 55.956367293000085, + 24.153911574000063 + ], + [ + 56.08065359900007, + 24.04104665699998 + ], + [ + 56.08307359300011, + 23.8976129670001 + ], + [ + 56.11581709100005, + 23.79580153500018 + ], + [ + 56.25835963600002, + 23.60496539700017 + ], + [ + 56.404139739000016, + 23.569981769000037 + ], + [ + 56.55990231800013, + 23.45450881900007 + ], + [ + 56.57680957200017, + 23.36961281700019 + ], + [ + 56.507871580000085, + 23.320560461000184 + ], + [ + 56.37832919699997, + 23.274284680000164 + ], + [ + 56.45153401100015, + 23.226350815000046 + ], + [ + 56.581216250000125, + 23.22086495100018 + ], + [ + 56.584453809000195, + 23.134170306000044 + ], + [ + 56.710179032000156, + 22.949449557000094 + ], + [ + 56.65217276000004, + 22.883799048000128 + ], + [ + 56.68382889600002, + 22.7912588100001 + ], + [ + 56.78356371000007, + 22.680282469000133 + ], + [ + 56.935818933000064, + 22.570924908 + ], + [ + 57.09140164700011, + 22.54430497600015 + ], + [ + 57.30148327600011, + 22.442681584000184 + ], + [ + 57.35526273500011, + 22.437285652000128 + ], + [ + 57.59367301000009, + 22.496910704000015 + ], + [ + 57.90025189500011, + 22.53836945 + ], + [ + 58.17904172900006, + 22.45554189 + ], + [ + 58.36798929100007, + 22.353199041000153 + ], + [ + 58.556307328, + 22.329097210000157 + ], + [ + 58.67312926200003, + 22.467233076000127 + ], + [ + 58.72537987200013, + 22.408777143000066 + ], + [ + 58.831050213000026, + 22.36183253300004 + ], + [ + 58.99175906200014, + 22.342137380000167 + ], + [ + 59.051743843000054, + 22.285300226000174 + ], + [ + 59.091943538000066, + 22.156787107000127 + ], + [ + 59.17800865800007, + 22.05345500300018 + ], + [ + 59.284128660000135, + 21.9616342220001 + ], + [ + 59.314975406000144, + 22.038346393000097 + ], + [ + 59.373341407000055, + 22.038346393000097 + ], + [ + 59.439981170000124, + 22.10912303800012 + ], + [ + 59.54583137500015, + 22.281702939000127 + ], + [ + 59.54412266300017, + 22.42586426200012 + ], + [ + 59.605816155000184, + 22.535041959000125 + ], + [ + 59.43503489900007, + 22.490795314000138 + ], + [ + 59.41426056000006, + 22.609955485000114 + ], + [ + 59.385032593000176, + 22.674167079000085 + ], + [ + 59.36749581300012, + 22.692333384000108 + ], + [ + 59.365877034, + 22.69395216400011 + ], + [ + 59.34420337200015, + 22.71751440200012 + ], + [ + 59.33664906700011, + 22.72740694400005 + ], + [ + 59.32333910100016, + 22.736669961000075 + ], + [ + 59.32082099899998, + 22.740537046000043 + ], + [ + 59.319741813000064, + 22.74170616500004 + ], + [ + 59.26497310000008, + 22.809065386000157 + ], + [ + 59.23475587899998, + 22.8441389460001 + ], + [ + 59.16415909900019, + 22.951697863000106 + ], + [ + 59.05678004600014, + 23.057548067000027 + ], + [ + 59.05498140200018, + 23.05934671099999 + ], + [ + 59.05417201200015, + 23.06087555900001 + ], + [ + 59.05255323300008, + 23.06339366100019 + ], + [ + 59.051743843000054, + 23.064292982999973 + ], + [ + 59.0508445210001, + 23.064203051 + ], + [ + 59.046977436000134, + 23.070858034000082 + ], + [ + 59.04418953800001, + 23.07337613500016 + ], + [ + 59.033307741000044, + 23.078322407000144 + ], + [ + 59.029170860000136, + 23.09837728800011 + ], + [ + 58.97817930000008, + 23.177517627999976 + ], + [ + 58.90668319700018, + 23.16330834000007 + ], + [ + 58.861627162, + 23.206655663000106 + ], + [ + 58.90245638300007, + 23.28579600300003 + ], + [ + 58.846518552000134, + 23.360799461000113 + ], + [ + 58.77502244900006, + 23.439130412000168 + ], + [ + 58.777540551000186, + 23.443357225 + ], + [ + 58.777540551000186, + 23.447494107000182 + ], + [ + 58.77349360200009, + 23.461703395000086 + ], + [ + 58.77367346600005, + 23.465030885999965 + ], + [ + 58.77088556800015, + 23.47663214100004 + ], + [ + 58.76926678800015, + 23.47834085300019 + ], + [ + 58.76917685600017, + 23.4824777340001 + ], + [ + 58.76647889000003, + 23.488323327000103 + ], + [ + 58.76333126300011, + 23.491650819000085 + ], + [ + 58.63176044700009, + 23.523396887000104 + ], + [ + 58.64084359999998, + 23.554693295000163 + ], + [ + 58.63247990600007, + 23.558020786000043 + ], + [ + 58.59920498900016, + 23.580863566000062 + ], + [ + 58.59830566700015, + 23.585809838000046 + ], + [ + 58.458371157000045, + 23.587518549000094 + ], + [ + 58.355039053999974, + 23.508378210000103 + ], + [ + 58.28830935800005, + 23.559189905000096 + ], + [ + 58.19415034000019, + 23.54830810800007 + ], + [ + 58.067525795999984, + 23.581672957000137 + ], + [ + 57.908345795000116, + 23.54084373500018 + ], + [ + 57.799977487000035, + 23.572499871 + ], + [ + 57.65662555300008, + 23.570791159 + ], + [ + 57.51417294100003, + 23.641657737000173 + ], + [ + 57.41416832900006, + 23.654158313000096 + ], + [ + 57.198331038000106, + 23.769990992000032 + ], + [ + 56.9791662560001, + 23.894187367000143 + ], + [ + 56.877542865, + 23.992483267000125 + ], + [ + 56.7707933370001, + 24.060831742 + ], + [ + 56.74831028600016, + 24.15004448900015 + ], + [ + 56.583374623000054, + 24.28080591400004 + ], + [ + 56.51835363900011, + 24.368309951000185 + ], + [ + 56.484269333999976, + 24.486930528000073 + ], + [ + 56.31070018000014, + 24.83245005800012 + ], + [ + 56.32311082299998, + 24.944955246000063 + ] + ] + ], + [ + [ + [ + 125.25059461400019, + 46.284852153000145 + ], + [ + 125.2794266850002, + 46.22579695100012 + ], + [ + 125.46890262300008, + 46.1757898460001 + ], + [ + 125.6326146040002, + 46.163804731000084 + ], + [ + 125.83398463100002, + 46.211873939999975 + ], + [ + 125.90071866200003, + 46.291730175000055 + ], + [ + 125.91937258700011, + 46.459955810000054 + ], + [ + 126.04697465800007, + 46.68560385200004 + ], + [ + 125.96599558300022, + 46.74360997500003 + ], + [ + 125.8460996660001, + 46.624350413000116 + ], + [ + 125.70575760500014, + 46.60583428600012 + ], + [ + 125.76997354500008, + 46.73294802700019 + ], + [ + 126.00759865600014, + 46.871154714000056 + ], + [ + 126.24320959600004, + 47.07401353500012 + ], + [ + 126.45426156000008, + 47.48479133100011 + ], + [ + 126.40998868200029, + 47.572994769000104 + ], + [ + 126.28417966800009, + 47.4582520460001 + ], + [ + 126.16342963600016, + 47.258333765000145 + ], + [ + 126.01078059400015, + 47.139623049000136 + ], + [ + 125.8302615570002, + 46.95874811700014 + ], + [ + 125.75372354900026, + 46.92937876600007 + ], + [ + 125.66025560600019, + 46.9794053170001 + ], + [ + 125.50038169900006, + 47.13640791900002 + ], + [ + 125.36930063600016, + 47.23082553200004 + ], + [ + 125.26013959000022, + 47.17001113600014 + ], + [ + 125.15273254200008, + 47.17199915600014 + ], + [ + 125.15641756100001, + 47.28864205600007 + ], + [ + 125.40247369400004, + 47.45585985100013 + ], + [ + 125.69963060200007, + 47.582275715000094 + ], + [ + 125.78495066500011, + 47.65943230700003 + ], + [ + 125.63321659200005, + 47.71045479600002 + ], + [ + 125.46232567900006, + 47.65380939100004 + ], + [ + 125.3684926200001, + 47.591312915000174 + ], + [ + 125.0423816010001, + 47.45291109800013 + ], + [ + 124.85507154600009, + 47.424681686000156 + ], + [ + 124.85302753500002, + 47.37105426900007 + ], + [ + 124.98118566100004, + 47.289606813000034 + ], + [ + 124.84934268300015, + 47.05279659100006 + ], + [ + 124.71929963400032, + 46.9959191750001 + ], + [ + 124.53350854700022, + 47.086121697000124 + ], + [ + 124.49257669700012, + 47.2035204770001 + ], + [ + 124.51415255400002, + 47.304128963000096 + ], + [ + 124.5983655350002, + 47.42301469299997 + ], + [ + 124.65570864900008, + 47.610557933 + ], + [ + 124.71989458200017, + 47.68005849500008 + ], + [ + 124.9535295720002, + 47.79403142300009 + ], + [ + 125.42145568700005, + 47.888259102 + ], + [ + 125.59875456500004, + 47.94169155600008 + ], + [ + 125.70359054800008, + 48.01385102500012 + ], + [ + 125.6682056730001, + 48.09801170300011 + ], + [ + 125.47909568800003, + 48.118786921000094 + ], + [ + 125.20227864200001, + 48.03129628000016 + ], + [ + 124.99005153500002, + 47.99520095500014 + ], + [ + 124.86347960100011, + 48.02734002200003 + ], + [ + 124.88301865500011, + 48.080997613000136 + ], + [ + 125.04412067800001, + 48.18457949700013 + ], + [ + 125.17210362300011, + 48.18927554200013 + ], + [ + 125.5155405390002, + 48.344816843000046 + ], + [ + 125.77479565400006, + 48.39113524000004 + ], + [ + 125.87905161000003, + 48.339399619000176 + ], + [ + 125.98894456300002, + 48.21912567800007 + ], + [ + 126.22257955300006, + 48.150788189000025 + ], + [ + 126.36956762500006, + 48.03847118900006 + ], + [ + 126.40595262800014, + 47.79759825800011 + ], + [ + 126.60785658300006, + 47.71629480300015 + ], + [ + 126.70293469, + 47.6250011250001 + ], + [ + 126.99680354500015, + 47.451675102000195 + ], + [ + 127.19647254900019, + 47.40029873000009 + ], + [ + 127.22747754400007, + 47.62532902500004 + ], + [ + 127.17419462300006, + 47.73864900400014 + ], + [ + 127.002624609, + 47.80982846100011 + ], + [ + 126.90872164500024, + 47.873335794000184 + ], + [ + 126.72221357, + 47.95083939700015 + ], + [ + 126.86550153400015, + 48.08037265900009 + ], + [ + 126.87455767800031, + 48.1395271020001 + ], + [ + 126.77958669200007, + 48.168077373000074 + ], + [ + 126.57285258200011, + 48.311129638000125 + ], + [ + 126.64361562600004, + 48.388919232000035 + ], + [ + 126.91777762100014, + 48.49123813000017 + ], + [ + 126.93357063500014, + 48.52832453100012 + ], + [ + 126.79073361700023, + 48.63397355900014 + ], + [ + 126.82308960700004, + 48.66852376400004 + ], + [ + 126.74467455600018, + 48.884822799000176 + ], + [ + 126.67077668000002, + 48.91459314000019 + ], + [ + 126.51634966900008, + 48.8797608000001 + ], + [ + 126.29073364600004, + 48.79697391600013 + ], + [ + 126.20471956100005, + 48.82107524000014 + ], + [ + 126.00228855300031, + 48.68975294600011 + ], + [ + 125.88919069500002, + 48.66148967100008 + ], + [ + 125.95447566300004, + 48.831252380000194 + ], + [ + 125.85239363700009, + 48.880386928000064 + ], + [ + 125.71929169700013, + 48.854663538000125 + ], + [ + 125.61429561900013, + 48.89453189300008 + ], + [ + 125.60530066300021, + 49.19631913200004 + ], + [ + 125.61746967800013, + 49.33864384800006 + ], + [ + 125.4752805810001, + 49.43723212800006 + ], + [ + 125.29326654800002, + 49.41598786000003 + ], + [ + 125.09561154800019, + 49.268635175000156 + ], + [ + 125.03971867000018, + 49.13775561300014 + ], + [ + 124.75289162000013, + 48.97850196700011 + ], + [ + 124.55370357000004, + 48.8057631800001 + ], + [ + 124.46989459600002, + 48.790717161000146 + ], + [ + 124.24713864600005, + 48.80951207000015 + ], + [ + 124.13145463600006, + 48.791492151000114 + ], + [ + 123.96450757600007, + 48.69942298000012 + ], + [ + 123.856925681, + 48.5337836650001 + ], + [ + 123.79252668100014, + 48.474510031000136 + ], + [ + 123.60712468200006, + 48.37254216700006 + ], + [ + 123.32057959900021, + 48.28448742400019 + ], + [ + 123.20596361000014, + 48.19977756300017 + ], + [ + 123.11877455100012, + 48.065056575000085 + ], + [ + 123.03757469600009, + 48.01495408400018 + ], + [ + 122.670516571, + 47.8793020330001 + ], + [ + 122.41555768400019, + 47.62418120800004 + ], + [ + 122.29682953400004, + 47.474598266000044 + ], + [ + 122.22339668600023, + 47.26192373400005 + ], + [ + 122.06084459400006, + 46.913002874000085 + ], + [ + 122.01545759400017, + 46.655409723000105 + ], + [ + 121.86633264000022, + 46.51839695400008 + ], + [ + 121.62489359500012, + 46.42586359300003 + ], + [ + 121.34751864900022, + 46.37900741300018 + ], + [ + 121.19773068600023, + 46.37999949500005 + ], + [ + 120.6012266790002, + 46.50436581600013 + ], + [ + 120.46612565500016, + 46.573485168000104 + ], + [ + 120.13462054600006, + 46.60553622500004 + ], + [ + 120.13752755700023, + 46.69370982300006 + ], + [ + 120.06560563100015, + 46.83790236300007 + ], + [ + 120.07811763300015, + 47.12151478600015 + ], + [ + 120.21321061100002, + 47.30606719500008 + ], + [ + 120.24311053600013, + 47.381175585000165 + ], + [ + 120.45694763800009, + 47.61754709900009 + ], + [ + 120.5794675940001, + 47.89017017600008 + ], + [ + 120.93682869500003, + 48.12543192600003 + ], + [ + 121.10844464200022, + 48.45288874400006 + ], + [ + 121.26200865200019, + 48.64267866900008 + ], + [ + 121.47150459900001, + 48.781702758999984 + ], + [ + 121.72138254400011, + 48.829063529000166 + ], + [ + 121.89002962100005, + 48.90064716200004 + ], + [ + 122.01594558800002, + 48.88734491400004 + ], + [ + 122.1624066060001, + 48.95066952200017 + ], + [ + 122.23284962900027, + 49.07805902800004 + ], + [ + 122.18452460400033, + 49.26801709400007 + ], + [ + 122.08581562400013, + 49.45389820200006 + ], + [ + 122.1742475530001, + 49.57991860700008 + ], + [ + 122.24471253700005, + 49.79322731500014 + ], + [ + 122.18960554600005, + 49.90544574300014 + ], + [ + 122.10047959600001, + 49.90309981600012 + ], + [ + 121.84108768800013, + 49.82180776000013 + ], + [ + 121.7628855380002, + 49.81977062300007 + ], + [ + 121.53104360400005, + 49.966409672000054 + ], + [ + 121.53025067600015, + 50.162650980000194 + ], + [ + 121.47961459300006, + 50.26403965500003 + ], + [ + 121.38369762500008, + 50.278634560000114 + ], + [ + 121.30203257500023, + 50.368246995000106 + ], + [ + 121.31787856300002, + 50.55092755800001 + ], + [ + 121.30341357700013, + 50.70680698500007 + ], + [ + 121.16832764100002, + 50.84744509400019 + ], + [ + 121.05993655700001, + 50.896880721 + ], + [ + 120.83860754200009, + 50.90900380300019 + ], + [ + 120.6465756250002, + 50.95132453500008 + ], + [ + 120.52455154300014, + 51.002515332000144 + ], + [ + 120.37477162700009, + 51.167312098000195 + ], + [ + 120.35090667200018, + 51.25338452100016 + ], + [ + 120.38463561800006, + 51.51222758200004 + ], + [ + 120.30760961600026, + 51.635024811000164 + ], + [ + 120.14021261600021, + 51.543154123000136 + ], + [ + 120.05116260600016, + 51.54990624900017 + ], + [ + 119.99872558800007, + 51.739084462 + ], + [ + 119.92221859300003, + 51.882527157000084 + ], + [ + 119.76921868500028, + 52.00684637100011 + ], + [ + 119.65881359700006, + 52.032325010000136 + ], + [ + 119.52279659900012, + 51.90621257100014 + ], + [ + 119.32170066000003, + 51.782961211000156 + ], + [ + 118.97820255600004, + 51.704106948000174 + ], + [ + 118.42870359100004, + 51.776369179000085 + ], + [ + 118.2702026400002, + 51.75482802300013 + ], + [ + 118.12609861300018, + 51.654308217000164 + ], + [ + 117.82379957500018, + 51.50917573100003 + ], + [ + 117.6829986890001, + 51.51068682099998 + ], + [ + 117.35340163700016, + 51.57817773700009 + ], + [ + 117.21810162600002, + 51.54434435300004 + ], + [ + 116.98950164500002, + 51.36217424800003 + ], + [ + 116.79620355900022, + 51.33736264100014 + ], + [ + 116.53040368600011, + 51.532655957000145 + ], + [ + 116.30419958800007, + 51.58063380300007 + ], + [ + 116.11289957900021, + 51.46722497600007 + ], + [ + 115.95379664000006, + 51.4776431790001 + ], + [ + 115.90149658200016, + 51.58057697300018 + ], + [ + 116.06809964800004, + 51.77751817100011 + ], + [ + 116.80629754900019, + 52.37226717500016 + ], + [ + 117.27210254000022, + 52.67620521000009 + ], + [ + 117.352302602, + 52.75798978700004 + ], + [ + 117.34950254300009, + 52.84186145700011 + ], + [ + 117.164100544, + 52.8685311640001 + ], + [ + 116.944900533, + 52.83201925900005 + ], + [ + 116.77320059900012, + 52.886540521000086 + ], + [ + 116.6557005650003, + 52.98849363300019 + ], + [ + 116.674201605, + 53.07660336100008 + ], + [ + 116.62059765800018, + 53.160967049000135 + ], + [ + 116.41999859800023, + 53.18140766100015 + ], + [ + 116.10459864500012, + 53.01038297300016 + ], + [ + 115.83699766900008, + 52.597364694000134 + ], + [ + 115.66549655400001, + 52.40040069800011 + ], + [ + 115.4506985500002, + 52.24774880600006 + ], + [ + 115.19850166800006, + 52.17231536600008 + ], + [ + 114.90670062800018, + 52.13279486000005 + ], + [ + 114.5663985440001, + 52.121724378000124 + ], + [ + 114.45587963000025, + 52.04955602400014 + ], + [ + 114.32927668200011, + 51.89812135200009 + ], + [ + 114.37757857300005, + 51.438602286000105 + ], + [ + 114.34197962400003, + 51.274331735000146 + ], + [ + 114.1647796530001, + 51.14158971400013 + ], + [ + 113.9581836770003, + 51.099497808000194 + ], + [ + 113.76187866600003, + 51.093057824000084 + ], + [ + 113.58377864600004, + 51.00502839500018 + ], + [ + 113.33988152400002, + 50.69285161900018 + ], + [ + 113.14517963700007, + 50.61798747700004 + ], + [ + 112.84137755600011, + 50.55211058000003 + ], + [ + 112.75868253700014, + 50.45557033300008 + ], + [ + 112.75917857800005, + 50.312685036000175 + ], + [ + 112.70427660900009, + 50.18095437500017 + ], + [ + 112.56668062800009, + 50.02265425400009 + ], + [ + 112.40910353000004, + 49.93992704900012 + ], + [ + 112.08306157800018, + 49.79468040100011 + ], + [ + 111.94996667800001, + 49.665040690000126 + ], + [ + 111.92716253700013, + 49.55159045700009 + ], + [ + 111.9542005450001, + 49.403730667000104 + ], + [ + 111.8642115940001, + 49.30956769599999 + ], + [ + 111.7068405240002, + 49.06352095200015 + ], + [ + 111.5593265720002, + 48.91365118200008 + ], + [ + 111.43853764700015, + 48.83614757900011 + ], + [ + 111.3261255970001, + 48.837001359000055 + ], + [ + 111.10710864600014, + 48.733855335000044 + ], + [ + 110.95653563399998, + 48.70947908400012 + ], + [ + 110.90892759700006, + 48.761355857000126 + ], + [ + 110.94441255200002, + 48.851459639000154 + ], + [ + 111.09839666300007, + 48.94849458600015 + ], + [ + 111.12416062200009, + 49.01591626800018 + ], + [ + 111.03511061200004, + 49.11980727600019 + ], + [ + 110.93617263800002, + 49.17422410000012 + ], + [ + 110.72344965900004, + 49.23358976700018 + ], + [ + 110.54535668000005, + 49.23358976700018 + ], + [ + 110.14958953000018, + 49.11485943800011 + ], + [ + 110.01943165000006, + 48.990067987000145 + ], + [ + 110.02853355800016, + 48.88533409500019 + ], + [ + 109.86963664600012, + 48.567978980000134 + ], + [ + 109.74236264300009, + 48.468623923000166 + ], + [ + 109.645309592, + 48.35595605700013 + ], + [ + 109.51033764900006, + 48.26206415600012 + ], + [ + 109.40280151900009, + 48.235101753000095 + ], + [ + 109.26674663500017, + 48.26715314500012 + ], + [ + 109.22053552600016, + 48.38877422500019 + ], + [ + 109.143440624, + 48.482475018 + ], + [ + 109.0676955450001, + 48.482711890000076 + ], + [ + 108.7409666120002, + 48.39178031100005 + ], + [ + 108.5113906420001, + 48.29699523500011 + ], + [ + 108.4487766520001, + 48.244180863000054 + ], + [ + 108.11557756000019, + 48.108025731 + ], + [ + 107.76438855700002, + 48.17318144900014 + ], + [ + 107.6575466170001, + 48.17455038200018 + ], + [ + 107.5114825660001, + 48.124062826000056 + ], + [ + 107.37435161200011, + 48.12014881300013 + ], + [ + 107.1012415460001, + 48.2327179400001 + ], + [ + 107.07791856500012, + 48.31832349100017 + ], + [ + 107.1231766520001, + 48.38847314700013 + ], + [ + 107.09095762200008, + 48.546188546 + ], + [ + 106.85600265000011, + 48.61005529600004 + ], + [ + 106.80988357400014, + 48.71417110600004 + ], + [ + 106.82305858500018, + 48.94472541100015 + ], + [ + 106.74829066700005, + 49.006029143000035 + ], + [ + 106.54234361800002, + 49.03946170400002 + ], + [ + 106.33437368000011, + 49.130598641 + ], + [ + 106.29631062000004, + 49.198566153000115 + ], + [ + 106.37093353000012, + 49.26309591100011 + ], + [ + 106.37037663700016, + 49.39452163800007 + ], + [ + 106.4689865430002, + 49.52288394700008 + ], + [ + 106.58021557100017, + 49.58399975599997 + ], + [ + 106.84688565300007, + 49.61561713300006 + ], + [ + 107.02255257500013, + 49.652142617000095 + ], + [ + 107.120620674, + 49.69996808100018 + ], + [ + 107.31968651600005, + 49.74919768000018 + ], + [ + 107.57870459100019, + 49.75935302600004 + ], + [ + 107.84230756700015, + 49.75019663500012 + ], + [ + 108.06649766100014, + 49.83362892600019 + ], + [ + 108.16069768000006, + 50.04465356500015 + ], + [ + 108.1268996670002, + 50.15559408799999 + ], + [ + 108.04499858300011, + 50.22250883300012 + ], + [ + 107.61289957100013, + 50.40893945900007 + ], + [ + 107.39050253400012, + 50.43164871700003 + ], + [ + 107.27629860000013, + 50.50034092800013 + ], + [ + 107.3546985640001, + 50.594050103000086 + ], + [ + 107.4817965470001, + 50.68379245799997 + ], + [ + 107.73139956600016, + 50.77393479800003 + ], + [ + 108.02110261500007, + 50.85985433400003 + ], + [ + 108.25810260400004, + 50.98734727300007 + ], + [ + 108.24520168100014, + 51.081396753000035 + ], + [ + 108.15090158200007, + 51.11955922300018 + ], + [ + 107.94219956900002, + 51.12668920500016 + ], + [ + 107.53070059400017, + 50.99504538000008 + ], + [ + 107.36710361300004, + 51.008637307000186 + ], + [ + 107.2925036690001, + 51.062948184000106 + ], + [ + 107.3769986170002, + 51.159709712000165 + ], + [ + 107.87149855100012, + 51.329672748000064 + ], + [ + 108.14279963500002, + 51.45425465200003 + ], + [ + 108.18669867900013, + 51.55445326300014 + ], + [ + 107.55329854000013, + 51.54927626500006 + ], + [ + 107.3951035280001, + 51.562395452000146 + ], + [ + 107.4639665630001, + 51.731427426000096 + ], + [ + 107.65235168100014, + 51.82562224800006 + ], + [ + 108.4597016240001, + 52.094741858000134 + ], + [ + 108.66153751800016, + 52.121655646000136 + ], + [ + 108.86338062000016, + 52.18893265700018 + ], + [ + 109.10558359100003, + 52.24275872400017 + ], + [ + 109.37470253000015, + 52.22930442900014 + ], + [ + 109.536170675, + 52.18893265700018 + ], + [ + 109.67073056300006, + 52.1081971590001 + ], + [ + 109.80529062000005, + 52.08128387400018 + ], + [ + 110.07440168000011, + 52.121655646000136 + ], + [ + 110.45116454000015, + 52.28312747900014 + ], + [ + 110.61264056300013, + 52.39077642900003 + ], + [ + 110.82793460800008, + 52.49842454100002 + ], + [ + 110.74719257300006, + 52.60607365900012 + ], + [ + 110.63954965800019, + 52.64644258100003 + ], + [ + 110.3300626350001, + 52.60607365900012 + ], + [ + 110.07440168000011, + 52.619529128000124 + ], + [ + 109.80529062000005, + 52.727178078 + ], + [ + 109.3208766300001, + 52.727178078 + ], + [ + 108.89028954600013, + 52.70026864900012 + ], + [ + 108.68845365300012, + 52.673355196000045 + ], + [ + 108.50006853500008, + 52.59261936300015 + ], + [ + 108.19058251800004, + 52.53879329500006 + ], + [ + 107.8676455580001, + 52.43114417800007 + ], + [ + 107.55815853500019, + 52.24275872400017 + ], + [ + 107.00646954600018, + 51.91981287900012 + ], + [ + 106.57588162400015, + 51.556498448000184 + ], + [ + 106.41441364700012, + 51.48921741400005 + ], + [ + 106.18566161900014, + 51.421936045000166 + ], + [ + 105.99728354200005, + 51.34120071500013 + ], + [ + 105.51961564300007, + 51.068834459000186 + ], + [ + 105.38233951500018, + 50.95441846300008 + ], + [ + 105.25254859400013, + 50.72146291000007 + ], + [ + 105.2435226250002, + 50.63598577000005 + ], + [ + 105.12442064300012, + 50.28480364 + ], + [ + 104.98693060800002, + 50.141585749000114 + ], + [ + 104.84649651400014, + 50.045408439000084 + ], + [ + 104.61501366200002, + 49.77707220200011 + ], + [ + 104.41570256500006, + 49.66238161500013 + ], + [ + 104.25069457500013, + 49.64511657100013 + ], + [ + 104.151130641, + 49.7222423180001 + ], + [ + 104.06570463100013, + 49.66870659900013 + ], + [ + 103.81716158800003, + 49.669213872000114 + ], + [ + 103.7479936200001, + 49.69137713300006 + ], + [ + 103.78843663800006, + 49.81853848300011 + ], + [ + 103.73038458200011, + 49.89007651800006 + ], + [ + 103.5231016250001, + 50.013323016000186 + ], + [ + 103.36483754700004, + 50.06961688400003 + ], + [ + 102.93838458500016, + 50.09570220500012 + ], + [ + 102.58744066900016, + 50.00240089400012 + ], + [ + 102.33988954100016, + 49.99525582400008 + ], + [ + 101.9545136050001, + 50.02737226000016 + ], + [ + 101.76554862700004, + 50.076616947 + ], + [ + 101.53133360900017, + 50.06586682100016 + ], + [ + 101.25184659100012, + 50.091495160000136 + ], + [ + 100.99201161600007, + 50.078700017000074 + ], + [ + 100.79747753300006, + 50.094680283000116 + ], + [ + 100.28694955700007, + 50.096824207000054 + ], + [ + 99.88001251600014, + 50.12203546300009 + ], + [ + 99.71115153200009, + 50.145328939000194 + ], + [ + 99.27220953500012, + 50.23206822600014 + ], + [ + 98.94231459000008, + 50.328497328000026 + ], + [ + 98.62604560100016, + 50.39185630200018 + ], + [ + 98.46593465400014, + 50.47948138900017 + ], + [ + 98.32613356200005, + 50.482296702000156 + ], + [ + 98.15591454200012, + 50.46593925000013 + ], + [ + 98.00688162199998, + 50.391418432000194 + ], + [ + 97.91921261400017, + 50.25552950800011 + ], + [ + 97.68250263900018, + 50.08457103800009 + ], + [ + 97.53784959800004, + 49.90046370800013 + ], + [ + 97.41511556900014, + 49.773345104999976 + ], + [ + 97.2836155780002, + 49.79964332600014 + ], + [ + 97.12142156000004, + 49.9837506560001 + ], + [ + 97.007453661, + 50.01005424200008 + ], + [ + 96.6085585530002, + 49.99251695300006 + ], + [ + 96.31925163300014, + 50.01443713900011 + ], + [ + 96.15706666800008, + 50.062654875000135 + ], + [ + 96.09924360600007, + 50.12550355900015 + ], + [ + 96.10526265000016, + 49.929566011000134 + ], + [ + 96.03568262800007, + 49.67622499900011 + ], + [ + 95.98220860000015, + 49.552536271 + ], + [ + 95.75088466900013, + 49.295853394 + ], + [ + 95.73443551900016, + 49.113215244000116 + ], + [ + 95.61575363700007, + 48.90838734700003 + ], + [ + 95.6045306040001, + 48.846301584000116 + ], + [ + 95.75234965800013, + 48.48236488000015 + ], + [ + 95.91919663700003, + 48.2404348230001 + ], + [ + 96.06281266900015, + 48.1120198750001 + ], + [ + 96.29782866200009, + 47.970641811000064 + ], + [ + 96.35732257199999, + 47.70630776600012 + ], + [ + 96.51557961000003, + 47.597085029000084 + ], + [ + 96.753936629, + 47.50334517700014 + ], + [ + 96.81598651700006, + 47.41111674900003 + ], + [ + 96.93931566100008, + 47.140264097000056 + ], + [ + 97.08081861599999, + 47.006165213000145 + ], + [ + 97.14984157700007, + 46.975667156000156 + ], + [ + 97.49111160300009, + 46.91113270400007 + ], + [ + 97.69068857300016, + 46.80271127700013 + ], + [ + 97.96461453400008, + 46.68364282200014 + ], + [ + 98.08370159700007, + 46.686900868000066 + ], + [ + 98.26786760000016, + 46.80935645000011 + ], + [ + 98.4825896640001, + 46.7944101760001 + ], + [ + 98.67315659100012, + 46.85469047700019 + ], + [ + 99.05282562500008, + 47.05038159700007 + ], + [ + 99.3438496620002, + 47.042855486000065 + ], + [ + 99.65536460200013, + 47.011586293000164 + ], + [ + 99.73019354000019, + 46.909202854000114 + ], + [ + 99.93353264400014, + 46.82765548599997 + ], + [ + 100.26726566300016, + 46.75627117500011 + ], + [ + 100.46134159000007, + 46.670260611000174 + ], + [ + 100.78847453100019, + 46.4341185940001 + ], + [ + 100.928871577, + 46.35325435000004 + ], + [ + 101.27572663300009, + 46.20778776200012 + ], + [ + 101.49460561800004, + 45.99850136200013 + ], + [ + 101.58770760700003, + 45.96318907500006 + ], + [ + 101.70646660300014, + 45.98214810200011 + ], + [ + 101.81732967700003, + 45.89011799000002 + ], + [ + 102.06291960800007, + 45.848438976000125 + ], + [ + 102.24060053300002, + 45.88834789900005 + ], + [ + 102.50904053800008, + 46.02225534100012 + ], + [ + 102.93005364400017, + 46.18929393100018 + ], + [ + 102.98482552600018, + 46.264017089 + ], + [ + 102.9486235830002, + 46.40914756300015 + ], + [ + 103.22539553500013, + 46.38772760900014 + ], + [ + 103.34910555300007, + 46.41224065300014 + ], + [ + 103.36865952700003, + 46.32750832900007 + ], + [ + 103.46706357300013, + 46.19126284000009 + ], + [ + 103.61087758600013, + 46.107998522 + ], + [ + 103.85309564500005, + 45.92633518800011 + ], + [ + 103.94393167100009, + 45.82793080600004 + ], + [ + 104.102889603, + 45.71438971300017 + ], + [ + 104.2391355950001, + 45.57057117400012 + ], + [ + 104.347076571, + 45.53836035900014 + ], + [ + 104.6404346330001, + 45.58552532800019 + ], + [ + 104.7786946290002, + 45.543086243000175 + ], + [ + 104.9537585560002, + 45.387865969000075 + ], + [ + 105.10201263000016, + 45.38182814900017 + ], + [ + 105.1565325520001, + 45.41699911800015 + ], + [ + 105.18582965000013, + 45.56010016600004 + ], + [ + 105.2779615190002, + 45.658286618000034 + ], + [ + 105.77677159400014, + 45.708408387000134 + ], + [ + 105.84479560000011, + 45.733722573000136 + ], + [ + 105.91256764600013, + 45.85467980600009 + ], + [ + 105.95674161699998, + 46.00198421100009 + ], + [ + 106.09592462800003, + 46.07795861900007 + ], + [ + 106.35173763100016, + 46.091320379000194 + ], + [ + 106.9377666060002, + 45.900246011000036 + ], + [ + 107.44017754800007, + 45.818721777000064 + ], + [ + 107.77336155200004, + 45.8347627280001 + ], + [ + 108.06356852100004, + 45.802650651000135 + ], + [ + 108.21128062200006, + 45.82108664700013 + ], + [ + 108.59495553500005, + 45.94120418099999 + ], + [ + 109.15283154100013, + 46.090588471000046 + ], + [ + 109.42992368200004, + 46.11628068100009 + ], + [ + 109.67687265400014, + 46.16055758099998 + ], + [ + 109.85482766700005, + 46.22215803200004 + ], + [ + 110.06481965500018, + 46.33205618200003 + ], + [ + 110.27175861900008, + 46.35848834600017 + ], + [ + 110.649749596, + 46.35383421000006 + ], + [ + 110.81587254599998, + 46.40923171700018 + ], + [ + 110.98316963400015, + 46.40650340800016 + ], + [ + 111.02151466200007, + 46.138359619000084 + ], + [ + 111.34525259700013, + 46.02491843900003 + ], + [ + 111.38591756800008, + 45.94031905200006 + ], + [ + 111.33629552700012, + 45.868041901000026 + ], + [ + 111.197799665, + 45.78017776200011 + ], + [ + 111.17668162700011, + 45.71945154400004 + ], + [ + 111.241714635, + 45.658401450000156 + ], + [ + 111.34117161600005, + 45.6615755090001 + ], + [ + 111.7485426720001, + 45.76155468200005 + ], + [ + 112.1202545970001, + 45.95759197500007 + ], + [ + 112.23055256400005, + 45.90438885000009 + ], + [ + 112.16196462300013, + 45.80579772000016 + ], + [ + 111.9754255360001, + 45.668537518000164 + ], + [ + 111.92581154200019, + 45.568595224000035 + ], + [ + 112.07913968500009, + 45.50955930100008 + ], + [ + 112.22732553100013, + 45.51570105700006 + ], + [ + 112.49346956500005, + 45.655528301000174 + ], + [ + 112.67774956200014, + 45.78536565800016 + ], + [ + 112.76609063100011, + 45.790622620000136 + ], + [ + 112.80730461600001, + 45.669368499000086 + ], + [ + 112.71884955400014, + 45.534191200000066 + ], + [ + 112.72431153700006, + 45.463138309000044 + ], + [ + 112.80249055400009, + 45.40171421400004 + ], + [ + 113.07052655100017, + 45.2565260720001 + ], + [ + 113.26596856100002, + 45.19510180900005 + ], + [ + 113.67361454300021, + 45.10575373900019 + ], + [ + 113.82996352500004, + 45.061083727000096 + ], + [ + 114.04215961800003, + 44.97173582400018 + ], + [ + 114.11517353800002, + 44.868182943000136 + ], + [ + 114.10105154000007, + 44.64579697000016 + ], + [ + 114.00344863600003, + 44.46502194900012 + ], + [ + 113.99842066800022, + 44.392814200000146 + ], + [ + 114.05354257800002, + 44.23978730200014 + ], + [ + 114.02391053800034, + 44.08521662600015 + ], + [ + 113.96052558100007, + 44.03175399700001 + ], + [ + 113.74052459400014, + 43.91635933000009 + ], + [ + 113.68862954900021, + 43.70570098100018 + ], + [ + 113.63694757300004, + 43.6246810020001 + ], + [ + 113.51895166600013, + 43.52511455300004 + ], + [ + 113.52883962900012, + 43.492254475000095 + ], + [ + 113.28672768500007, + 43.27928439700014 + ], + [ + 113.30438265600003, + 43.191451775000075 + ], + [ + 113.39370759200017, + 42.980568958000106 + ], + [ + 113.42525456100009, + 42.84155056700018 + ], + [ + 113.3913195880001, + 42.78453200000018 + ], + [ + 113.27466562400014, + 42.71919825000009 + ], + [ + 113.16339166800014, + 42.70775846100008 + ], + [ + 113.09298653100007, + 42.552211460000194 + ], + [ + 113.21205867400022, + 42.37813542500004 + ], + [ + 113.12969155600013, + 42.26011739000012 + ], + [ + 112.8514785870002, + 42.04824668200018 + ], + [ + 112.74767257200006, + 41.99150404700009 + ], + [ + 112.46524853500023, + 41.90598684200006 + ], + [ + 112.2823716690001, + 41.870613031000175 + ], + [ + 112.07614868700011, + 41.87124620000009 + ], + [ + 111.88455967000004, + 41.83464444000015 + ], + [ + 111.81005058599999, + 41.79331294000002 + ], + [ + 111.7402645360001, + 41.68041390100012 + ], + [ + 111.57257852800012, + 41.597864393000066 + ], + [ + 111.23927265100014, + 41.57774564600015 + ], + [ + 111.05481764000007, + 41.58605848200017 + ], + [ + 110.89433252500004, + 41.53247699800005 + ], + [ + 110.5902405980001, + 41.39219344300011 + ], + [ + 110.40567058700015, + 41.33636192100016 + ], + [ + 109.82106066700004, + 41.23403363600005 + ], + [ + 109.6120076200001, + 41.13780067000005 + ], + [ + 109.4788815400002, + 41.12933695900006 + ], + [ + 109.36205256200014, + 41.15144976100004 + ], + [ + 109.17716253000003, + 41.006466138000064 + ], + [ + 109.07307454699998, + 40.95950468100011 + ], + [ + 108.91356659400014, + 40.96425755500013 + ], + [ + 108.95719859100006, + 40.87326260900005 + ], + [ + 108.83644068000012, + 40.768267704000095 + ], + [ + 108.79934656700004, + 40.64478701500008 + ], + [ + 108.92501057400005, + 40.607251344000076 + ], + [ + 109.47370152400003, + 40.50205041300012 + ], + [ + 109.68781254700014, + 40.48184080600015 + ], + [ + 110.00051168300018, + 40.48606377600015 + ], + [ + 110.27455163700006, + 40.42418555000012 + ], + [ + 110.73638159400019, + 40.24445055600006 + ], + [ + 110.95104967800012, + 40.23000065700006 + ], + [ + 111.36915560500006, + 40.13376886500015 + ], + [ + 111.72862961700014, + 40.152895698000066 + ], + [ + 112.05133054200019, + 40.2214330110001 + ], + [ + 112.15288568100016, + 40.159830549 + ], + [ + 111.75686657200009, + 39.83817568500007 + ], + [ + 111.68791167200004, + 39.508918267000126 + ], + [ + 111.58204655800012, + 39.376325108000174 + ], + [ + 111.46145662000009, + 39.29773940100006 + ], + [ + 111.57998662200004, + 39.25353609400008 + ], + [ + 111.68183864800011, + 39.15894430500009 + ], + [ + 111.56931260400006, + 38.98057120200019 + ], + [ + 111.34589364500005, + 38.70533749700007 + ], + [ + 111.42055561500018, + 38.66748113500006 + ], + [ + 111.73514554100012, + 38.78360234500019 + ], + [ + 111.8530425410001, + 38.736800815000095 + ], + [ + 112.04972859300005, + 38.75603074500009 + ], + [ + 112.18618061200004, + 38.73378718600003 + ], + [ + 112.37230664000026, + 38.888089474000026 + ], + [ + 112.43985757100006, + 39.00828462400011 + ], + [ + 112.567321676, + 39.17250521800008 + ], + [ + 112.67705554100019, + 39.232917450000116 + ], + [ + 113.04728655100018, + 39.70890159200013 + ], + [ + 113.12493868100023, + 39.84102469400017 + ], + [ + 113.33216061800033, + 39.93134473000015 + ], + [ + 113.52055361500004, + 39.872240242000146 + ], + [ + 113.66081956800019, + 39.84722378200007 + ], + [ + 113.95919755200009, + 39.89423921800011 + ], + [ + 114.08052861800002, + 39.94635554500002 + ], + [ + 114.14009059000023, + 40.02030958000012 + ], + [ + 114.2021406450001, + 40.21694684900018 + ], + [ + 114.4248355750002, + 40.1819405010001 + ], + [ + 114.67400357300005, + 40.31761568500008 + ], + [ + 114.74076861700007, + 40.21101212600007 + ], + [ + 114.88329366100015, + 40.27892834100004 + ], + [ + 114.98542061300009, + 40.28436316700015 + ], + [ + 115.08769961300004, + 40.38863706000012 + ], + [ + 114.99608658500006, + 40.48438488100004 + ], + [ + 114.86627957100018, + 40.493780659000095 + ], + [ + 114.82052661700016, + 40.57459360500002 + ], + [ + 114.69893655000021, + 40.64351698900015 + ], + [ + 114.65490758600004, + 40.71363831500008 + ], + [ + 115.05007157300031, + 40.868696483000065 + ], + [ + 115.12966160000008, + 40.94829673500004 + ], + [ + 115.42661264800006, + 41.175993315000085 + ], + [ + 115.73724363300005, + 41.36614248800015 + ], + [ + 115.96718555700011, + 41.45777462700005 + ], + [ + 116.0723876620001, + 41.535613003000094 + ], + [ + 116.29919458600011, + 41.65248690900012 + ], + [ + 116.40502164600002, + 41.74081523700016 + ], + [ + 116.56043269200029, + 41.80920452600003 + ], + [ + 116.82334868700002, + 41.96498454400012 + ], + [ + 116.98821267600022, + 42.130087249000155 + ], + [ + 117.04489864900006, + 42.22905858300004 + ], + [ + 117.29496753400008, + 42.48363089600002 + ], + [ + 117.32935362100011, + 42.53468624200019 + ], + [ + 117.31970957100009, + 42.70194443800017 + ], + [ + 117.27822166500016, + 42.765328893000174 + ], + [ + 117.29048958600015, + 42.89612631300014 + ], + [ + 117.2713925930002, + 43.05894042300008 + ], + [ + 117.13809166600015, + 43.12215824599997 + ], + [ + 117.09749559500005, + 43.17436878500007 + ], + [ + 117.14981861900003, + 43.41037602199998 + ], + [ + 117.17191365200006, + 43.65026592300018 + ], + [ + 117.10235559000023, + 43.78318446800006 + ], + [ + 117.24041760500006, + 43.91037414900018 + ], + [ + 117.35998562200018, + 43.94385616400018 + ], + [ + 117.47407556200005, + 43.82586746500016 + ], + [ + 117.4587405340003, + 43.76741877800015 + ], + [ + 117.59777853900005, + 43.709679870000116 + ], + [ + 117.72245767200013, + 43.59996629000011 + ], + [ + 117.92682657700027, + 43.56421043199998 + ], + [ + 118.14713266400008, + 43.43889477700003 + ], + [ + 118.17044860400017, + 43.35418206600008 + ], + [ + 117.98465768500012, + 43.35504825200019 + ], + [ + 117.62898268800006, + 43.29005749000004 + ], + [ + 117.55998956600001, + 43.20188875300016 + ], + [ + 117.80705253300005, + 43.13371605200007 + ], + [ + 117.91901363700003, + 42.982708858000024 + ], + [ + 118.11357169100017, + 42.862950572000045 + ], + [ + 118.37186456400002, + 42.78951403600013 + ], + [ + 118.51164269100002, + 42.78714883100008 + ], + [ + 118.93766063100031, + 42.68590734200018 + ], + [ + 119.12757058500006, + 42.51755061400013 + ], + [ + 119.28649163700015, + 42.51362956000003 + ], + [ + 119.36820262000003, + 42.558001176000175 + ], + [ + 119.42382861800002, + 42.690363498000124 + ], + [ + 119.530464531, + 42.72772415500003 + ], + [ + 119.57369956100024, + 42.84653260300013 + ], + [ + 119.66899056900013, + 42.8768553110001 + ], + [ + 119.82814765500018, + 42.60975909300009 + ], + [ + 119.71440154100026, + 42.52409654600012 + ], + [ + 119.67736057000013, + 42.3994371930001 + ], + [ + 119.58117655400008, + 42.33348184100004 + ], + [ + 119.41220057100008, + 42.339809843000126 + ], + [ + 119.32560763200001, + 42.27172213500006 + ], + [ + 119.309913692, + 42.104616489000136 + ], + [ + 119.31420153800002, + 41.80619072899998 + ], + [ + 119.4594426540001, + 41.86123736899998 + ], + [ + 119.63508560300022, + 41.98283330300012 + ], + [ + 119.7236405770002, + 41.942973498000185 + ], + [ + 119.91738156400004, + 41.962851517000104 + ], + [ + 120.14003760200012, + 42.11529721300013 + ], + [ + 120.17934453700002, + 42.304005035000046 + ], + [ + 120.1773836750001, + 42.40214136300017 + ], + [ + 120.25678259400001, + 42.50029361700018 + ], + [ + 120.25822461600012, + 42.582040978000066 + ], + [ + 120.18982661000018, + 42.65494777700019 + ], + [ + 120.277175596, + 42.713400320000176 + ], + [ + 120.54178658, + 42.786863008000125 + ], + [ + 120.71500363900032, + 42.93030620500002 + ], + [ + 120.75299059100007, + 43.05645351300018 + ], + [ + 120.70429961300022, + 43.26536440299998 + ], + [ + 120.77961755100023, + 43.43622380000011 + ], + [ + 120.76894353300008, + 43.51387240900016 + ], + [ + 120.84937258700006, + 43.55322829500005 + ], + [ + 121.34934959200007, + 43.58519519700019 + ], + [ + 121.41102564700009, + 43.660397968000154 + ], + [ + 121.34103357000015, + 43.72140263300008 + ], + [ + 121.19493062800018, + 43.79276364200018 + ], + [ + 121.29576056400003, + 43.943451150000044 + ], + [ + 121.65814158700005, + 44.141311507000125 + ], + [ + 121.95858755400025, + 44.248283535000155 + ], + [ + 122.14961967700003, + 44.25564938400004 + ], + [ + 122.36029864600005, + 44.22581047900019 + ], + [ + 122.68589065800029, + 44.29489546600007 + ], + [ + 122.92209654500016, + 44.41838805700007 + ], + [ + 122.99139359500009, + 44.36917119800006 + ], + [ + 122.98360462700009, + 44.25081654600001 + ], + [ + 123.11429559700014, + 44.18591664300004 + ], + [ + 123.22713462200022, + 44.26742528700015 + ], + [ + 123.23652654400007, + 44.419750116000046 + ], + [ + 123.28100561600024, + 44.454200241000194 + ], + [ + 123.45477269500009, + 44.367732361000094 + ], + [ + 123.54782053800022, + 44.27168631100011 + ], + [ + 123.80208557100002, + 44.055572684000026 + ], + [ + 123.76130660600006, + 43.99767284400019 + ], + [ + 123.65157357900011, + 43.988914928000156 + ], + [ + 123.57541661300013, + 43.93429207700012 + ], + [ + 123.69842556800006, + 43.792817621000154 + ], + [ + 123.68926968000005, + 43.658265947000075 + ], + [ + 123.55069754200008, + 43.66568879300013 + ], + [ + 123.70105765300013, + 43.55404033400015 + ], + [ + 123.94067363400006, + 43.47260058900014 + ], + [ + 123.97713457800023, + 43.52475161700005 + ], + [ + 123.9994586040001, + 43.72266478000017 + ], + [ + 124.0916746260001, + 43.828114486000175 + ], + [ + 124.13912960900018, + 44.01447705100014 + ], + [ + 123.9913326840001, + 44.11022185500008 + ], + [ + 123.87236766100011, + 44.360122263000164 + ], + [ + 123.93624866000005, + 44.394630055 + ], + [ + 124.0494616850001, + 44.35387439200019 + ], + [ + 124.1575545410002, + 44.26721557200011 + ], + [ + 124.25445554400028, + 44.26530449800009 + ], + [ + 124.23957867200022, + 44.37382131000004 + ], + [ + 124.36309054200024, + 44.41296328900006 + ], + [ + 124.40854660900015, + 44.644987781000054 + ], + [ + 124.52151454700015, + 44.834582910000165 + ], + [ + 124.48002664100022, + 44.90239686600012 + ], + [ + 124.46033453300015, + 45.03071173300009 + ], + [ + 124.30476356000008, + 45.05297792400006 + ], + [ + 124.02210265000008, + 44.999190748 + ], + [ + 123.93135865800002, + 44.948778797000045 + ], + [ + 123.82294460700018, + 44.77460368700014 + ], + [ + 123.68247262700004, + 44.78563980400014 + ], + [ + 123.6448516280002, + 44.8573069200001 + ], + [ + 123.66732753400004, + 45.06680990800004 + ], + [ + 123.88026458800005, + 45.24150804900012 + ], + [ + 123.99550653600011, + 45.28466680399998 + ], + [ + 124.30541265400018, + 45.16696895700005 + ], + [ + 124.51564067700008, + 45.14571697700012 + ], + [ + 124.57593556200015, + 45.164366712000174 + ], + [ + 124.51263459100005, + 45.37747911500003 + ], + [ + 124.41762555100013, + 45.47138928700008 + ], + [ + 124.30363468500002, + 45.46948927799997 + ], + [ + 124.20729057500023, + 45.51560215000012 + ], + [ + 124.02375757300001, + 45.68382242100017 + ], + [ + 123.83291655800008, + 46.03309716500013 + ], + [ + 123.78578964200005, + 46.19773987100018 + ], + [ + 123.69620553700008, + 46.24746484200011 + ], + [ + 123.42765053300002, + 46.28132823300007 + ], + [ + 123.35343163000005, + 46.19552788700014 + ], + [ + 123.23348257200018, + 46.28337224400019 + ], + [ + 123.15460165500008, + 46.444162628000186 + ], + [ + 123.09185757700004, + 46.497690971000054 + ], + [ + 122.8321376020001, + 46.6257203510001 + ], + [ + 122.86415060500008, + 46.76777215200019 + ], + [ + 122.92874859100004, + 46.82671738300007 + ], + [ + 123.11758465600019, + 46.928932849000034 + ], + [ + 123.05374858400023, + 46.991925198000104 + ], + [ + 122.84132366500012, + 47.06091060800003 + ], + [ + 122.87363456000003, + 47.17481011100011 + ], + [ + 123.12920365000002, + 47.47644412900013 + ], + [ + 123.16577154700008, + 47.56400366900016 + ], + [ + 123.32836957200016, + 47.61951517000011 + ], + [ + 123.32330355000022, + 47.725449686000104 + ], + [ + 123.55921154400005, + 47.763494138000056 + ], + [ + 123.71279868800002, + 47.891970944000036 + ], + [ + 123.75549358800015, + 47.803022523000095 + ], + [ + 123.94103958800008, + 47.64662241200017 + ], + [ + 124.07837656900017, + 47.596017007 + ], + [ + 123.94032260000006, + 47.449836951000066 + ], + [ + 123.82015963600008, + 47.29201409600017 + ], + [ + 123.71200559200008, + 47.08809362300019 + ], + [ + 123.72904164300007, + 46.93839283200015 + ], + [ + 123.84949462100008, + 46.814807202000054 + ], + [ + 123.93493655700001, + 46.76071123700012 + ], + [ + 124.167350639, + 46.772052120000126 + ], + [ + 124.24998463700013, + 46.90572369400019 + ], + [ + 124.3378755980001, + 46.958923969000125 + ], + [ + 124.87007867300008, + 46.649352456000145 + ], + [ + 124.90287069000033, + 46.57500732200015 + ], + [ + 125.19525863000001, + 46.53398410900019 + ], + [ + 125.29557056500016, + 46.462690825000095 + ], + [ + 125.28781864600012, + 46.327806389000045 + ], + [ + 125.25059461400019, + 46.284852153000145 + ] + ], + [ + [ + 97.94947061400012, + 48.254544919000125 + ], + [ + 97.9894715710002, + 48.36560396200019 + ], + [ + 97.8697355810001, + 48.483811093000156 + ], + [ + 97.9488295660002, + 48.52906850900007 + ], + [ + 98.07991767000004, + 48.488185944000065 + ], + [ + 98.31066861500011, + 48.5279354430001 + ], + [ + 98.74329367500013, + 48.52438838900008 + ], + [ + 98.85923752400004, + 48.500591160000056 + ], + [ + 99.15989655900012, + 48.49664328400007 + ], + [ + 99.42991655200018, + 48.45799282000013 + ], + [ + 99.78497363600019, + 48.489468207000186 + ], + [ + 99.92594953600013, + 48.54438057000016 + ], + [ + 99.9981076640002, + 48.45690183099998 + ], + [ + 99.9456636050001, + 48.34969192500017 + ], + [ + 99.87685354400008, + 48.265177195000035 + ], + [ + 99.64369162900005, + 48.23477385300015 + ], + [ + 99.1587145430002, + 48.25558695700005 + ], + [ + 98.94140666200008, + 48.214944785000114 + ], + [ + 98.93630258600018, + 48.132606835000104 + ], + [ + 99.34977751100013, + 48.107368925 + ], + [ + 99.55165866700008, + 48.064068516000134 + ], + [ + 99.60578162200011, + 47.99845883300003 + ], + [ + 99.46097552700007, + 47.93920850100005 + ], + [ + 99.36585953400004, + 47.869754040000146 + ], + [ + 99.37248257800019, + 47.80271339900008 + ], + [ + 99.47044355700007, + 47.768633083000054 + ], + [ + 99.69581566700015, + 47.85466979900002 + ], + [ + 99.81747463300019, + 47.85346079300018 + ], + [ + 100.01200066900014, + 47.77160815600013 + ], + [ + 100.131706651, + 47.78430741000017 + ], + [ + 100.21932955900013, + 47.87951912400001 + ], + [ + 100.34326957600018, + 47.933268246000125 + ], + [ + 100.44429766100018, + 47.92884025400008 + ], + [ + 100.48971567400008, + 47.778837212000155 + ], + [ + 100.60283666600014, + 47.72767089000007 + ], + [ + 100.62601464000016, + 47.657231220000085 + ], + [ + 100.5448075760001, + 47.591447026000026 + ], + [ + 100.32108251100016, + 47.5213744830001 + ], + [ + 100.40745567600015, + 47.40768368900018 + ], + [ + 100.57803360800017, + 47.42158859600005 + ], + [ + 100.684127548, + 47.40074079100003 + ], + [ + 100.75959066000013, + 47.345195260000025 + ], + [ + 100.97490666600004, + 47.30100083700006 + ], + [ + 101.1397015880001, + 47.324473184 + ], + [ + 101.27728265000019, + 47.280862980000165 + ], + [ + 101.40639463600013, + 47.15514197500005 + ], + [ + 101.59601558200012, + 47.12414284800013 + ], + [ + 101.69840958200007, + 47.034649603000105 + ], + [ + 101.68258656100011, + 46.913986910000176 + ], + [ + 101.71631651200005, + 46.8474384540001 + ], + [ + 101.63530759700012, + 46.685187775000145 + ], + [ + 101.75702657800008, + 46.651820592000036 + ], + [ + 101.85889453000004, + 46.58991923100018 + ], + [ + 102.06890864600018, + 46.55985904400018 + ], + [ + 102.16546666200009, + 46.51209091300012 + ], + [ + 102.15676155200009, + 46.427698559000135 + ], + [ + 101.94936359600007, + 46.35194543200009 + ], + [ + 101.70533756000003, + 46.11787558900005 + ], + [ + 101.5757905530001, + 46.10813246499998 + ], + [ + 101.45222453600007, + 46.22199777000009 + ], + [ + 101.5649415200001, + 46.36376743600016 + ], + [ + 101.3139725870002, + 46.35751554200016 + ], + [ + 101.11602053200005, + 46.47174294500019 + ], + [ + 100.97055059100012, + 46.50439699600008 + ], + [ + 100.82682760500006, + 46.61960826700016 + ], + [ + 100.70940351200005, + 46.66187552300005 + ], + [ + 100.59413960300009, + 46.82341742800014 + ], + [ + 100.36406658600015, + 46.92141377900015 + ], + [ + 100.15402263100009, + 47.08237968000003 + ], + [ + 100.05928063800008, + 47.18055121200018 + ], + [ + 99.76645667100007, + 47.22760939600005 + ], + [ + 99.55771660400012, + 47.335665204 + ], + [ + 99.15179461100018, + 47.3029890250001 + ], + [ + 98.98706858800006, + 47.247358668 + ], + [ + 98.70041655200009, + 47.09191292100019 + ], + [ + 98.58773058100007, + 47.048894479000126 + ], + [ + 98.34116365500012, + 47.11813503500019 + ], + [ + 98.12163557600019, + 46.99036834300017 + ], + [ + 98.07170860200011, + 46.99828840400011 + ], + [ + 97.79322858600005, + 47.18448031300011 + ], + [ + 97.65259567300012, + 47.19843836100006 + ], + [ + 97.53392753800006, + 47.397353496000164 + ], + [ + 97.36578354199997, + 47.4413299900001 + ], + [ + 97.14849862800008, + 47.4413299900001 + ], + [ + 97.07607261400005, + 47.503410388000134 + ], + [ + 97.08641856500014, + 47.606881127000065 + ], + [ + 97.13815251000005, + 47.66896538100008 + ], + [ + 97.31404859200006, + 47.79312735100012 + ], + [ + 97.32440158400016, + 47.989722711000184 + ], + [ + 97.28301258400006, + 48.10353873000008 + ], + [ + 97.15884357300007, + 48.28978931300003 + ], + [ + 97.11746262000008, + 48.40360616999999 + ], + [ + 97.18988762800018, + 48.48638199100009 + ], + [ + 97.56237756100006, + 48.310480544000086 + ], + [ + 97.68069466300017, + 48.275888094000095 + ], + [ + 97.79618857100007, + 48.197049422000134 + ], + [ + 97.94947061400012, + 48.254544919000125 + ] + ], + [ + [ + 96.35223358400015, + 48.10869695400004 + ], + [ + 96.20318557500008, + 48.21935081600009 + ], + [ + 96.25442465200013, + 48.317598456000155 + ], + [ + 96.4055406440001, + 48.36452001500015 + ], + [ + 96.56789358200007, + 48.30281328199999 + ], + [ + 96.66944855400004, + 48.30243928100009 + ], + [ + 96.79666153600004, + 48.223847875000104 + ], + [ + 96.79643254300004, + 48.114738965000186 + ], + [ + 96.65316754500003, + 48.03522135800006 + ], + [ + 96.35223358400015, + 48.10869695400004 + ] + ], + [ + [ + 112.8609776300002, + 49.38319249000011 + ], + [ + 112.575691677, + 49.157477895 + ], + [ + 112.39236453400008, + 48.96099166800019 + ], + [ + 112.23657965500001, + 48.87903593300007 + ], + [ + 112.09956353400003, + 48.88908415900016 + ], + [ + 112.05577060400003, + 48.997148181000114 + ], + [ + 112.18814868300012, + 49.15051991000013 + ], + [ + 112.39019060400028, + 49.50870478500019 + ], + [ + 112.45906067900012, + 49.56497535000011 + ], + [ + 112.61347159600018, + 49.622040353000045 + ], + [ + 112.83501468500003, + 49.65224940300004 + ], + [ + 113.03976463100003, + 49.63882142600005 + ], + [ + 113.0892406590001, + 49.596237838000036 + ], + [ + 112.8609776300002, + 49.38319249000011 + ] + ] + ], + [ + [ + [ + 95.0005645240002, + 49.6609545120001 + ], + [ + 94.77729761200004, + 49.60489701400013 + ], + [ + 94.51695251400014, + 49.62239105200018 + ], + [ + 94.25885058100016, + 49.67727793300003 + ], + [ + 94.09244566300009, + 49.69268219500003 + ], + [ + 93.89405858800018, + 49.75472487500019 + ], + [ + 93.51659366000013, + 49.82439374500012 + ], + [ + 93.37653356600009, + 49.828196615000195 + ], + [ + 93.05187261600014, + 49.68357609500015 + ], + [ + 92.77687058700019, + 49.691934194000055 + ], + [ + 92.74378956200013, + 49.62823625600015 + ], + [ + 92.8154065550001, + 49.58563674200008 + ], + [ + 93.29500564400018, + 49.57521451600013 + ], + [ + 93.72572365300005, + 49.42225467300011 + ], + [ + 94.0582196700002, + 49.36196699599998 + ], + [ + 94.11228965100014, + 49.278321302000165 + ], + [ + 94.34502459300012, + 49.20703137200019 + ], + [ + 94.55530558900011, + 49.19932924100016 + ], + [ + 94.73681654000012, + 49.22533057499999 + ], + [ + 94.88969457600001, + 49.20505123100003 + ], + [ + 94.9676516400001, + 49.25379987700012 + ], + [ + 95.16655755500017, + 49.22526167600006 + ], + [ + 95.35176056700016, + 49.226253590000056 + ], + [ + 95.55964651800019, + 49.29695645200019 + ], + [ + 95.60685758800008, + 49.466109294000034 + ], + [ + 95.70388063200005, + 49.54212527700014 + ], + [ + 95.61895753600004, + 49.66472771000019 + ], + [ + 95.43189256700009, + 49.73258843600013 + ], + [ + 95.32151061400009, + 49.79642048400012 + ], + [ + 95.17768855500009, + 49.77049911400013 + ], + [ + 95.0005645240002, + 49.6609545120001 + ] + ] + ], + [ + [ + [ + 96.73206355000008, + 50.75086360900008 + ], + [ + 96.90000151800012, + 50.804052317000185 + ], + [ + 97.05837254900007, + 50.906115734000196 + ], + [ + 96.99812359700007, + 51.00422725200002 + ], + [ + 96.85188252000012, + 51.05665806800016 + ], + [ + 96.85520963300013, + 51.2036595510001 + ], + [ + 96.98635859000012, + 51.253800431000116 + ], + [ + 97.32669051400018, + 51.28493299900015 + ], + [ + 97.90161866400018, + 51.27801290000019 + ], + [ + 98.15790557999998, + 51.31345225700011 + ], + [ + 98.23369558700011, + 51.39015572300019 + ], + [ + 98.23675565200006, + 51.46674100500013 + ], + [ + 97.98541254999998, + 51.56243769700018 + ], + [ + 97.74379765300006, + 51.53603604300008 + ], + [ + 97.58313752400011, + 51.44626250699997 + ], + [ + 97.11411254100005, + 51.38427347100003 + ], + [ + 96.91192661900016, + 51.3893845880001 + ], + [ + 96.64341754700013, + 51.42366422499998 + ], + [ + 96.10636855900009, + 51.24186024200009 + ], + [ + 95.74949662500006, + 51.25759257200008 + ], + [ + 95.55754852800015, + 51.170898212000054 + ], + [ + 95.42598751700018, + 51.151889899000196 + ], + [ + 95.06136366400005, + 51.18331918700005 + ], + [ + 94.10738355600017, + 51.416202990000045 + ], + [ + 93.753379575, + 51.469303856000124 + ], + [ + 93.35933658300019, + 51.49712557200013 + ], + [ + 92.789390636, + 51.46152176200019 + ], + [ + 92.22717263600009, + 51.353221035000104 + ], + [ + 91.69354262500019, + 51.206730680000135 + ], + [ + 91.382606539, + 51.084787568000195 + ], + [ + 91.10887956500011, + 51.03125872200019 + ], + [ + 90.64691952100014, + 50.90999588500017 + ], + [ + 90.81224853800006, + 50.860381053000026 + ], + [ + 91.05956262600017, + 50.88707674400018 + ], + [ + 91.48085753200013, + 50.962707662000184 + ], + [ + 91.74420150700007, + 51.05523834200011 + ], + [ + 91.94621258200016, + 51.15409065200009 + ], + [ + 92.22387653600003, + 51.253445541000076 + ], + [ + 92.50978861800002, + 51.308363268000164 + ], + [ + 92.82000754900014, + 51.32341951300003 + ], + [ + 93.11785160500011, + 51.35146200800011 + ], + [ + 94.2183225710001, + 51.156428700000106 + ], + [ + 94.53433959900019, + 51.11119006000018 + ], + [ + 95.06011157500012, + 50.981038047000084 + ], + [ + 95.34275857100016, + 50.87709356200003 + ], + [ + 95.68151855200006, + 50.656402075000074 + ], + [ + 95.80738054000005, + 50.54982550500006 + ], + [ + 96.67147060400004, + 50.18925547600003 + ], + [ + 96.90220662900009, + 50.171829332000016 + ], + [ + 97.19963058400003, + 50.199024584000085 + ], + [ + 97.59120158500002, + 50.30002014800016 + ], + [ + 97.64069353800005, + 50.4513292580001 + ], + [ + 97.58825652000019, + 50.546258335000175 + ], + [ + 97.45205662800015, + 50.62176067500013 + ], + [ + 97.31289658300005, + 50.63450871100014 + ], + [ + 96.99871854400016, + 50.58342989600004 + ], + [ + 96.98284959000006, + 50.430667699000026 + ], + [ + 96.93717961700008, + 50.36365773600005 + ], + [ + 96.7848205890001, + 50.30561708000016 + ], + [ + 96.56925966500017, + 50.31948728500015 + ], + [ + 96.42283653300018, + 50.40435757500006 + ], + [ + 96.03923052000016, + 50.8064133310001 + ], + [ + 95.88983952400008, + 50.86480636300007 + ], + [ + 95.86789654000017, + 50.9155841000001 + ], + [ + 96.02864065600005, + 50.931156335000026 + ], + [ + 95.96930667200007, + 51.05075603500006 + ], + [ + 96.18943053700013, + 51.030888745000084 + ], + [ + 96.37486254300006, + 51.057493409000074 + ], + [ + 96.52677950900005, + 50.884654709000074 + ], + [ + 96.73206355000008, + 50.75086360900008 + ] + ] + ], + [ + [ + [ + 92.9417265290001, + 51.620826537000084 + ], + [ + 93.15220651200019, + 51.61849536200003 + ], + [ + 94.3126675970002, + 51.49902139100004 + ], + [ + 94.73995958700004, + 51.42852438800003 + ], + [ + 95.21569059500007, + 51.38372361900019 + ], + [ + 95.66549654400012, + 51.39474464800003 + ], + [ + 95.80650362500006, + 51.52012484400012 + ], + [ + 95.835037635, + 51.664246137000134 + ], + [ + 95.75348657900014, + 51.79410059300005 + ], + [ + 95.58954661100012, + 51.90669352500015 + ], + [ + 95.09515363000008, + 52.018763761000116 + ], + [ + 93.83088653000004, + 51.969713869000145 + ], + [ + 92.78070061400007, + 51.880921016000116 + ], + [ + 92.06539151100009, + 51.801504831000045 + ], + [ + 91.68028262200005, + 51.733438412000055 + ], + [ + 90.39098363900001, + 51.38076363300007 + ], + [ + 90.20916758600004, + 51.26585159600006 + ], + [ + 90.17594155400013, + 51.18532933500012 + ], + [ + 90.27850352700005, + 51.068056451000075 + ], + [ + 90.60449954699999, + 51.11719016100005 + ], + [ + 91.24474351000015, + 51.24818522700019 + ], + [ + 91.44167364300012, + 51.35123284700006 + ], + [ + 91.64969655400012, + 51.39937179400005 + ], + [ + 92.11071061700005, + 51.42678531100012 + ], + [ + 92.29560064900016, + 51.53466191400014 + ], + [ + 92.57584354700003, + 51.59344420100007 + ], + [ + 92.72051955500007, + 51.52149394400004 + ], + [ + 92.78649150300004, + 51.57649062799999 + ], + [ + 92.9417265290001, + 51.620826537000084 + ] + ] + ], + [ + [ + [ + 104.31529960300014, + 53.784981636000055 + ], + [ + 104.14859763000015, + 53.84454913999997 + ], + [ + 104.0059966460002, + 53.92497283000006 + ], + [ + 103.80729659100012, + 53.99282651600009 + ], + [ + 103.64050258500004, + 54.1178374050001 + ], + [ + 103.54180165100013, + 54.06653630200009 + ], + [ + 103.31849651900018, + 54.17378074100003 + ], + [ + 103.23329967000018, + 54.34146373200002 + ], + [ + 103.15010056300008, + 54.38683279500003 + ], + [ + 102.92252367800012, + 54.27971039600004 + ], + [ + 102.81510154200015, + 54.168817481000076 + ], + [ + 102.81020366000007, + 54.06618526800003 + ], + [ + 102.73339860500005, + 53.988065427000095 + ], + [ + 102.23750258200016, + 53.967725063000046 + ], + [ + 102.13359866600013, + 53.915813589000095 + ], + [ + 102.04830156900016, + 53.804570144000024 + ], + [ + 102.06249967500003, + 53.69763868399997 + ], + [ + 102.22250366900016, + 53.61935489400008 + ], + [ + 102.55319958900014, + 53.57558409300003 + ], + [ + 102.77330065500018, + 53.50532346000017 + ], + [ + 102.79900359400011, + 53.27658970400017 + ], + [ + 102.65589852300013, + 53.08684638200015 + ], + [ + 102.71269966300014, + 52.99289262300016 + ], + [ + 102.98840359300004, + 52.91650096400002 + ], + [ + 103.08979763100001, + 52.86104981300008 + ], + [ + 103.11139662300013, + 52.742398441000034 + ], + [ + 103.09130067400014, + 52.61810604800013 + ], + [ + 103.42330165700014, + 52.541795526000044 + ], + [ + 103.56839759800005, + 52.491383407000114 + ], + [ + 103.86840066500002, + 52.34134046700012 + ], + [ + 104.12709754500014, + 52.37301014700017 + ], + [ + 104.49859657000013, + 52.51228401800006 + ], + [ + 104.63320155300005, + 52.61574503400004 + ], + [ + 104.85839864900004, + 52.72857802400006 + ], + [ + 105.24610156900002, + 52.81325804500011 + ], + [ + 105.41059859900014, + 52.89556967500005 + ], + [ + 105.42939753100018, + 53.01235087600014 + ], + [ + 105.1818006370001, + 53.07135411000013 + ], + [ + 105.07530252200013, + 53.11807433600006 + ], + [ + 105.08989759500008, + 53.227935606000074 + ], + [ + 104.99939751600004, + 53.325128467000184 + ], + [ + 104.84480253200013, + 53.34108995700012 + ], + [ + 103.99539957400003, + 53.285157853000044 + ], + [ + 103.84809852200004, + 53.31411950800015 + ], + [ + 103.81569659900003, + 53.37446954600017 + ], + [ + 103.89630167400009, + 53.43698194700016 + ], + [ + 104.15440360700012, + 53.56101584200013 + ], + [ + 104.38200362600003, + 53.6343972250001 + ], + [ + 104.41100367000018, + 53.73234965400013 + ], + [ + 104.31529960300014, + 53.784981636000055 + ] + ] + ], + [ + [ + [ + 101.99009662800006, + 54.52928826800007 + ], + [ + 101.84729766400005, + 54.500177415999985 + ], + [ + 101.65850065900014, + 54.38776368900011 + ], + [ + 101.38809962400018, + 54.342913634000126 + ], + [ + 101.40509762099998, + 54.269161938000195 + ], + [ + 101.63349962100011, + 54.09845811000008 + ], + [ + 101.78379854400009, + 54.039496617000054 + ], + [ + 102.0257036230002, + 54.05112784900018 + ], + [ + 102.17410253700007, + 54.098167928000066 + ], + [ + 102.31079863700012, + 54.277512324999975 + ], + [ + 102.27680163800011, + 54.35931333000008 + ], + [ + 102.13719953200018, + 54.47739607300002 + ], + [ + 101.99009662800006, + 54.52928826800007 + ] + ] + ], + [ + [ + [ + 100.68070253500002, + 54.55857899700004 + ], + [ + 100.60929861000011, + 54.64771131700013 + ], + [ + 100.48269666800002, + 54.708312645000035 + ], + [ + 100.42990157400016, + 54.79338292700015 + ], + [ + 100.5941005430002, + 54.842266019000135 + ], + [ + 100.81939654500019, + 54.86416675800007 + ], + [ + 100.80339867700008, + 54.952467761000094 + ], + [ + 100.50980357500015, + 55.00481023200007 + ], + [ + 100.04799658400009, + 54.98142958400018 + ], + [ + 99.84825851400007, + 54.98705970800006 + ], + [ + 99.53542359100004, + 55.05173933500015 + ], + [ + 99.38928963500018, + 55.11115210800017 + ], + [ + 99.21550763700014, + 55.09358062200005 + ], + [ + 99.11916352700013, + 55.03892206400002 + ], + [ + 99.22411367200016, + 54.92135799200008 + ], + [ + 99.52356755700015, + 54.853946536000194 + ], + [ + 99.67920659100008, + 54.83452600200002 + ], + [ + 99.87587755500005, + 54.73394048100005 + ], + [ + 100.09580260200016, + 54.53007817900016 + ], + [ + 100.24349961500013, + 54.48064607300017 + ], + [ + 100.56240052100014, + 54.472455947000014 + ], + [ + 100.68070253500002, + 54.55857899700004 + ] + ] + ], + [ + [ + [ + 94.17742961200008, + 56.2576714060001 + ], + [ + 94.03814652100016, + 56.299542365000036 + ], + [ + 93.88772555700012, + 56.45553695900003 + ], + [ + 93.86328862100004, + 56.54444967400002 + ], + [ + 93.89147159700008, + 56.81448056400018 + ], + [ + 93.77875561900015, + 56.97751444800019 + ], + [ + 93.62882952200016, + 57.0154988860001 + ], + [ + 93.47093156600016, + 57.01326678600003 + ], + [ + 93.26098651600006, + 56.95960416500003 + ], + [ + 93.15637952600014, + 56.86649228500016 + ], + [ + 92.99199665800006, + 56.601621462000196 + ], + [ + 92.90621156700007, + 56.51656274700008 + ], + [ + 92.68222062800015, + 56.44993399200018 + ], + [ + 92.40511356700006, + 56.4166678950001 + ], + [ + 92.16426863200007, + 56.340665658000034 + ], + [ + 91.96534762900006, + 56.04268715600011 + ], + [ + 92.00385258300008, + 55.94976269500006 + ], + [ + 91.83394654400013, + 55.79524013100013 + ], + [ + 91.68910256400005, + 55.792646267000066 + ], + [ + 91.22382362100018, + 55.857208044000174 + ], + [ + 91.06888564899998, + 55.83825656100004 + ], + [ + 90.64039655600016, + 55.72454431000017 + ], + [ + 90.49159262900008, + 55.73606573800009 + ], + [ + 90.2025225810001, + 55.81554696800015 + ], + [ + 90.09262057500013, + 55.87427929900019 + ], + [ + 90.02227763200005, + 55.957266678 + ], + [ + 89.99180555800012, + 56.134830759000124 + ], + [ + 89.84888455300012, + 56.39140316200019 + ], + [ + 89.62559551400017, + 56.516661653000085 + ], + [ + 89.1800306400001, + 56.62253079000004 + ], + [ + 89.02423050599998, + 56.618402870000125 + ], + [ + 88.7423325170002, + 56.53018216600009 + ], + [ + 88.44477059600001, + 56.464388417 + ], + [ + 88.12801361300006, + 56.266147689000036 + ], + [ + 87.8219375220001, + 56.214258009000105 + ], + [ + 87.66555752700009, + 56.21055086100017 + ], + [ + 87.35253853800015, + 56.244017789000054 + ], + [ + 86.42217259800009, + 56.3654663690001 + ], + [ + 86.14430261700016, + 56.4532180220001 + ], + [ + 85.70530664000012, + 56.72828509500016 + ], + [ + 85.57397462300008, + 56.73439214900009 + ], + [ + 85.17354562700018, + 56.573060462000115 + ], + [ + 84.86195357300011, + 56.539573418000145 + ], + [ + 84.58020059100011, + 56.45359990200012 + ], + [ + 84.52661860400008, + 56.2845121040001 + ], + [ + 84.28534652700012, + 56.167233856000166 + ], + [ + 84.21588854500015, + 56.085253478000084 + ], + [ + 84.17351551000013, + 55.82047485600003 + ], + [ + 83.9008174980001, + 55.59910175200008 + ], + [ + 83.86640157199997, + 55.42266805500009 + ], + [ + 84.07286863400009, + 55.18099264000011 + ], + [ + 84.29724162100018, + 55.05901868200016 + ], + [ + 84.72187755400006, + 54.946344613000065 + ], + [ + 84.84661854500013, + 54.7863216770001 + ], + [ + 85.11121360400017, + 54.69130324900004 + ], + [ + 85.39194449600012, + 54.61973353000013 + ], + [ + 85.67014355100014, + 54.403137273000084 + ], + [ + 85.77667955200008, + 54.33907153700011 + ], + [ + 86.20973158600003, + 54.26215399700004 + ], + [ + 86.28820061600004, + 54.18556502700005 + ], + [ + 86.45750449900004, + 53.93382730500019 + ], + [ + 86.68288465600017, + 53.69877493500013 + ], + [ + 86.90743265700013, + 53.563014926000164 + ], + [ + 87.03388255100009, + 53.542617229000086 + ], + [ + 87.0752105310001, + 53.612358855000025 + ], + [ + 87.07553055200003, + 53.80922813500007 + ], + [ + 86.95311755000012, + 53.97411894600015 + ], + [ + 86.8875045150001, + 54.148702087000174 + ], + [ + 86.73532050100005, + 54.402721363000126 + ], + [ + 86.73180362200009, + 54.492899409000074 + ], + [ + 86.59944951500006, + 54.65352835800013 + ], + [ + 86.53544664400005, + 54.82985979600011 + ], + [ + 86.4677126520001, + 54.91101589700014 + ], + [ + 86.25842256400017, + 55.04181415500011 + ], + [ + 86.08126064700014, + 55.18963287400004 + ], + [ + 85.83403054500002, + 55.29917177600004 + ], + [ + 85.72445660700004, + 55.37485684100011 + ], + [ + 85.82769751400014, + 55.49387517200006 + ], + [ + 85.65827963700013, + 55.72582221500011 + ], + [ + 85.6228486620002, + 55.87106752100004 + ], + [ + 85.62461053800013, + 56.0021861350001 + ], + [ + 85.70861061900007, + 56.08281937300006 + ], + [ + 85.89930763400014, + 56.13793977500012 + ], + [ + 86.19783062400018, + 56.1863953890001 + ], + [ + 86.64562961100006, + 56.089647439000146 + ], + [ + 86.86968257700005, + 56.00911729900014 + ], + [ + 87.13539863100004, + 55.88773778500018 + ], + [ + 87.34546655900004, + 55.816404939000165 + ], + [ + 87.6626436430002, + 55.584396374000164 + ], + [ + 88.15850060600008, + 55.40235065700017 + ], + [ + 88.54577655200006, + 55.345739283 + ], + [ + 88.994239553, + 55.37454771600005 + ], + [ + 89.36975853900014, + 55.32903364700013 + ], + [ + 89.59026361300005, + 54.95926917300005 + ], + [ + 89.75930765700014, + 54.8494372400001 + ], + [ + 89.94877655500017, + 54.755818757000156 + ], + [ + 90.38115652800008, + 54.69344331600013 + ], + [ + 90.69663962900012, + 54.67273968000006 + ], + [ + 90.79218259700008, + 54.59858095900012 + ], + [ + 90.70787054100015, + 54.38232366600005 + ], + [ + 90.52541360800006, + 54.14346909700009 + ], + [ + 90.36225852100006, + 54.04988799800003 + ], + [ + 90.25916262100014, + 53.90520444700013 + ], + [ + 90.20554358600003, + 53.76799822400011 + ], + [ + 90.20233164100011, + 53.59030539700018 + ], + [ + 90.25921660000006, + 53.39169301600009 + ], + [ + 90.25218954800005, + 53.247059756000056 + ], + [ + 90.20767963100008, + 53.16973720200008 + ], + [ + 90.0771175750001, + 53.09626462400013 + ], + [ + 89.88858057600015, + 53.03252427300015 + ], + [ + 89.78527060200008, + 52.953512598000145 + ], + [ + 89.76616656800019, + 52.885300502000064 + ], + [ + 90.20482659800001, + 52.62542613200009 + ], + [ + 90.34310151400013, + 52.70772284300011 + ], + [ + 90.4585035570002, + 52.73911826700004 + ], + [ + 90.80590863400005, + 52.75499878800014 + ], + [ + 91.20485654700008, + 52.830871105000085 + ], + [ + 91.4048236120002, + 52.91302180300005 + ], + [ + 91.44870756900019, + 53.10480595100012 + ], + [ + 91.5456995990001, + 53.06641415200016 + ], + [ + 91.75826265300014, + 53.05859400400004 + ], + [ + 92.23634361100011, + 53.11496498500014 + ], + [ + 92.55684663400007, + 53.031185516000164 + ], + [ + 92.6319575390001, + 52.981211435000034 + ], + [ + 92.96007552100008, + 53.01020795900007 + ], + [ + 93.00947560900005, + 53.18764748500007 + ], + [ + 92.91117851600006, + 53.353576311000154 + ], + [ + 92.951347613, + 53.441171223000026 + ], + [ + 93.0644075850002, + 53.500921452000114 + ], + [ + 93.12957755300005, + 53.58173423000005 + ], + [ + 93.03329463100016, + 53.74518972400011 + ], + [ + 93.06776453700013, + 54.01598604999998 + ], + [ + 93.04279350600018, + 54.10234094200018 + ], + [ + 92.93097657100009, + 54.26914685100007 + ], + [ + 92.90603655300015, + 54.449601515000154 + ], + [ + 92.84384165800014, + 54.528438176000066 + ], + [ + 92.55652661300013, + 54.73886535200012 + ], + [ + 92.44578557900019, + 54.80229406400019 + ], + [ + 92.37420664000018, + 54.975714467000046 + ], + [ + 92.25283852600006, + 55.02803481000018 + ], + [ + 91.85122650800014, + 55.14080359400003 + ], + [ + 91.83362551800008, + 55.200520295 + ], + [ + 92.01365656000007, + 55.256086782000125 + ], + [ + 91.96064756100003, + 55.32478754200008 + ], + [ + 92.19177250600006, + 55.40547861500016 + ], + [ + 92.22691363500007, + 55.483685795000156 + ], + [ + 92.36818659000016, + 55.61919853900014 + ], + [ + 92.38053866500013, + 55.685023301 + ], + [ + 92.30107855800014, + 55.761845288000075 + ], + [ + 92.64612563800006, + 55.92471103100007 + ], + [ + 92.78336354500004, + 55.96792108300002 + ], + [ + 93.10014366100006, + 55.97347225000004 + ], + [ + 93.25099160000013, + 55.95116649700003 + ], + [ + 93.51777651400016, + 55.85643690900008 + ], + [ + 93.9645386590002, + 55.60510319500008 + ], + [ + 94.34445965200018, + 55.45175610900009 + ], + [ + 94.48497052500011, + 55.414190932999986 + ], + [ + 94.9480056320001, + 55.3866292240001 + ], + [ + 95.41149855900005, + 55.4182811340001 + ], + [ + 95.69051350800004, + 55.344743010000116 + ], + [ + 95.9406735880001, + 55.24716055800019 + ], + [ + 96.15740160899998, + 55.366975840000066 + ], + [ + 96.18259459199999, + 55.545443323000086 + ], + [ + 96.17121867300017, + 55.72320940800006 + ], + [ + 96.25690452200013, + 55.79473319300013 + ], + [ + 96.28609466800003, + 55.96269882200005 + ], + [ + 96.19274859700005, + 56.127238431000194 + ], + [ + 96.31835963100019, + 56.28177692100002 + ], + [ + 96.45460562300013, + 56.327623417000154 + ], + [ + 96.52403259200008, + 56.40748652600007 + ], + [ + 96.53172265300014, + 56.497008269 + ], + [ + 96.1232076340001, + 56.6189297570001 + ], + [ + 96.08319058500007, + 56.885214942 + ], + [ + 95.80901367000018, + 56.97235639200011 + ], + [ + 95.65881365300004, + 56.96554727000017 + ], + [ + 95.59944966200015, + 56.88324972100003 + ], + [ + 95.5751726530001, + 56.703496454 + ], + [ + 95.50726364700006, + 56.62107401500003 + ], + [ + 95.35739153000003, + 56.61208559800019 + ], + [ + 95.22359456200007, + 56.65825613800013 + ], + [ + 95.003776636, + 56.89926519100004 + ], + [ + 94.87493856999998, + 56.94668647900005 + ], + [ + 94.73015561000017, + 56.92816616100015 + ], + [ + 94.72058850500008, + 56.748610539000026 + ], + [ + 94.79450264200017, + 56.48232870700008 + ], + [ + 94.74433862800004, + 56.30773684899998 + ], + [ + 94.64102161300019, + 56.238943720000066 + ], + [ + 94.3267595870002, + 56.227595293000036 + ], + [ + 94.17742961200008, + 56.2576714060001 + ] + ] + ] + ] + }, + "properties": { + "biome_name": "Temperate Grasslands, Savannas & Shrublands", + "biome_num": 8, + "color_bio": "#FEFF73", + "area_km2": 10595297.738522772, + "percentage": 13.885509684784193 + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + -82.59084354499993, + 21.62511076500016 + ], + [ + -82.66648854499994, + 21.711007168000094 + ], + [ + -82.71683461399994, + 21.61825218900003 + ], + [ + -82.59084354499993, + 21.62511076500016 + ] + ] + ], + [ + [ + [ + -82.02841951799996, + 22.727904859000148 + ], + [ + -82.16458152399997, + 22.76802282700004 + ], + [ + -82.37238365599995, + 22.740424405000056 + ], + [ + -82.7353825919999, + 22.749697807000132 + ], + [ + -82.73931856599995, + 22.724539190000087 + ], + [ + -82.07762162499984, + 22.685896269000125 + ], + [ + -81.86815652299998, + 22.69465083199998 + ], + [ + -81.76068862199998, + 22.670538946000192 + ], + [ + -81.67316462099996, + 22.619836646000067 + ], + [ + -81.520057593, + 22.464895992000038 + ], + [ + -81.74614752899987, + 22.3914116790001 + ], + [ + -81.7302856149999, + 22.328204921000122 + ], + [ + -81.65583050999987, + 22.272943033000104 + ], + [ + -81.5280074929999, + 22.297868634000167 + ], + [ + -81.44436649199992, + 22.282158601000162 + ], + [ + -81.37796052899995, + 22.195430042000112 + ], + [ + -81.33059657399991, + 22.28308161600006 + ], + [ + -81.38283561199995, + 22.34456421700014 + ], + [ + -81.44409961299988, + 22.305745276000152 + ], + [ + -81.54817150199995, + 22.37086092900006 + ], + [ + -81.46073165599995, + 22.415381576000186 + ], + [ + -81.38527658999999, + 22.363674285000172 + ], + [ + -81.27716059999995, + 22.36829388800004 + ], + [ + -81.18540960499996, + 22.31946645200003 + ], + [ + -81.03160050799994, + 22.156118414000105 + ], + [ + -80.86289257899995, + 22.14163716700017 + ], + [ + -80.67723861999991, + 22.10358114700017 + ], + [ + -80.91010264199991, + 22.2684171410001 + ], + [ + -81.02645150499995, + 22.44016418100017 + ], + [ + -81.2180256019999, + 22.538786995 + ], + [ + -81.33339663199996, + 22.65263402700009 + ], + [ + -81.44839449999995, + 22.675358707999976 + ], + [ + -81.50393651099984, + 22.6418426620001 + ], + [ + -81.6975475779999, + 22.709932047000052 + ], + [ + -82.02841951799996, + 22.727904859000148 + ] + ] + ], + [ + [ + [ + -80.04599243099995, + 26.85559573800009 + ], + [ + -80.0975956289999, + 26.82162481500012 + ], + [ + -80.14448082799998, + 26.703074137999977 + ], + [ + -80.21119721199983, + 26.668396905000066 + ], + [ + -80.30862847699996, + 26.676759675000085 + ], + [ + -80.37098773099996, + 26.751394091000066 + ], + [ + -80.57145608199988, + 26.937697534000108 + ], + [ + -80.63410370799988, + 27.072446153000044 + ], + [ + -80.75278771799998, + 27.200179686000013 + ], + [ + -80.82612393699998, + 27.201170074000117 + ], + [ + -81.01368985899984, + 27.020307859000127 + ], + [ + -81.13633542499997, + 26.965818266000156 + ], + [ + -81.12617871599997, + 26.8859252740001 + ], + [ + -81.1773941919999, + 26.864380816000107 + ], + [ + -81.15838577599999, + 26.761479899 + ], + [ + -80.99825593999992, + 26.64341945400008 + ], + [ + -80.96387930999998, + 26.46080115100017 + ], + [ + -80.92202349999991, + 26.38922649800014 + ], + [ + -80.97603004199993, + 26.31213574200018 + ], + [ + -81.05789427899998, + 26.336870078000175 + ], + [ + -81.10625192699996, + 26.422618221000164 + ], + [ + -81.22217266199993, + 26.38670931200005 + ], + [ + -81.16775303399993, + 26.2943276150001 + ], + [ + -81.20823781699988, + 26.24883835800017 + ], + [ + -81.35310141199983, + 26.321418861999973 + ], + [ + -81.39747457999982, + 26.274492836000093 + ], + [ + -81.58842169999991, + 26.27372419800008 + ], + [ + -81.54910577399994, + 26.38356230800008 + ], + [ + -81.64667934399995, + 26.416030729000056 + ], + [ + -81.75154882799995, + 26.519373875000042 + ], + [ + -81.80010655099994, + 26.387072133000174 + ], + [ + -81.7848888979999, + 26.17243031999999 + ], + [ + -81.78273426199996, + 26.167185325000105 + ], + [ + -81.77202871499998, + 26.145441842000025 + ], + [ + -81.77219392099988, + 26.143295451000142 + ], + [ + -81.77567856199988, + 26.125959633000036 + ], + [ + -81.77636804699995, + 26.123782472000073 + ], + [ + -81.77916259799997, + 26.11562581800007 + ], + [ + -81.69857729699993, + 26.018803076000097 + ], + [ + -81.56984845699998, + 25.989535706000026 + ], + [ + -81.40495180899995, + 25.90720635500014 + ], + [ + -81.36307329499988, + 25.911965277000036 + ], + [ + -81.24195872999996, + 25.83748814800009 + ], + [ + -81.15848277599997, + 25.71355769100012 + ], + [ + -81.05931624399994, + 25.625111259000107 + ], + [ + -80.87842021599994, + 25.41969425600007 + ], + [ + -80.85486355199998, + 25.335223391000113 + ], + [ + -80.73803201699997, + 25.226719968999987 + ], + [ + -80.49389931699989, + 25.286206494000112 + ], + [ + -80.38991687099997, + 25.352593456000136 + ], + [ + -80.33096677699996, + 25.54802215300009 + ], + [ + -80.23837541899996, + 25.726977401000056 + ], + [ + -80.18909358799982, + 25.75775922800011 + ], + [ + -80.17086631299998, + 25.867668347000063 + ], + [ + -80.12942642899998, + 25.929211806000183 + ], + [ + -80.03681174699994, + 26.594423078000148 + ], + [ + -80.04599243099995, + 26.85559573800009 + ] + ] + ], + [ + [ + [ + -58.240055587999905, + -33.08519069499988 + ], + [ + -58.28657950999997, + -33.00764819999995 + ], + [ + -58.4052845249999, + -32.994815338999956 + ], + [ + -58.55928456199996, + -33.010855954999954 + ], + [ + -58.58815753599998, + -33.069673277999925 + ], + [ + -58.63869856899993, + -33.40161843699997 + ], + [ + -58.76474747299994, + -33.54255225999998 + ], + [ + -58.99538459099989, + -33.48913271499998 + ], + [ + -59.387767630999974, + -33.45594574199998 + ], + [ + -59.41644647999982, + -33.39667043199995 + ], + [ + -59.80855962199985, + -33.140228115999946 + ], + [ + -59.95031755399992, + -32.9134200179999 + ], + [ + -60.20200749899982, + -32.61042042099996 + ], + [ + -60.433170497999924, + -32.428792960999886 + ], + [ + -60.603919588999986, + -32.08417721399991 + ], + [ + -60.65138647399988, + -32.03298172299998 + ], + [ + -60.64209362599996, + -31.841504855999972 + ], + [ + -60.61041656999993, + -31.761055683999928 + ], + [ + -60.31719949099988, + -31.633996928999977 + ], + [ + -60.17087560199985, + -31.460763776999954 + ], + [ + -60.09293748099992, + -31.392675062999956 + ], + [ + -60.06859961899988, + -31.324219556999935 + ], + [ + -59.990058503999876, + -31.25516792899998 + ], + [ + -59.87448463199985, + -31.106502805999924 + ], + [ + -59.78662149999991, + -30.928794220999976 + ], + [ + -59.673740564999946, + -30.796935819999874 + ], + [ + -59.57757163699989, + -30.62682392199997 + ], + [ + -59.56915654199997, + -30.538695920999942 + ], + [ + -59.60620455399987, + -30.364607311999976 + ], + [ + -59.54363247299983, + -30.31263012499994 + ], + [ + -59.57252154099996, + -30.228206254999918 + ], + [ + -59.53862763899997, + -30.11684043299988 + ], + [ + -59.54235054499998, + -29.933407175999832 + ], + [ + -59.501136558999974, + -29.914680159999932 + ], + [ + -59.49033362699993, + -29.723386353999842 + ], + [ + -59.46008249999994, + -29.663470498999914 + ], + [ + -59.4192654819999, + -29.409898313999975 + ], + [ + -59.29792754299996, + -29.184496866999893 + ], + [ + -59.207054635999896, + -29.07978024199997 + ], + [ + -59.04803853299995, + -28.720068519999984 + ], + [ + -58.966022616999965, + -28.20705044799996 + ], + [ + -58.86828962599992, + -28.09950861799996 + ], + [ + -58.80121260699991, + -28.078122694999877 + ], + [ + -58.73073555399998, + -27.968380280999952 + ], + [ + -58.73506547699992, + -27.643444906999946 + ], + [ + -58.76805161899995, + -27.46770556699994 + ], + [ + -58.71967362099997, + -27.41157497799992 + ], + [ + -58.65185547399989, + -27.40799691199993 + ], + [ + -58.56514351199996, + -27.328360449999877 + ], + [ + -58.662151636999965, + -27.186988420999967 + ], + [ + -58.63216353399997, + -27.114231656999834 + ], + [ + -58.557334595999976, + -27.051055575999897 + ], + [ + -58.47703160499998, + -27.06592088199983 + ], + [ + -58.47875961799997, + -26.921001127999943 + ], + [ + -58.414199517999975, + -26.90888475199995 + ], + [ + -58.24313761399992, + -26.73354153999992 + ], + [ + -58.24864955399988, + -26.640333770999916 + ], + [ + -58.18763751299997, + -26.640352545999974 + ], + [ + -58.221626632999914, + -26.398136498999975 + ], + [ + -58.11784760799992, + -26.23910866199998 + ], + [ + -58.110691473999964, + -26.1332914919999 + ], + [ + -57.95119458499988, + -26.06505374799997 + ], + [ + -57.85644555199991, + -25.993891892999898 + ], + [ + -57.86787461199998, + -25.854437307999888 + ], + [ + -57.83348450099999, + -25.777402923999944 + ], + [ + -57.744022604999884, + -25.729178314999956 + ], + [ + -57.662879578999934, + -25.597340197999984 + ], + [ + -57.57024747899993, + -25.55405940199995 + ], + [ + -57.560398574999965, + -25.446537521999915 + ], + [ + -57.60498862399993, + -25.43955656999998 + ], + [ + -57.682468589999985, + -25.583806105999884 + ], + [ + -57.836898617999964, + -25.685431317999928 + ], + [ + -57.97609353199988, + -25.98266030999997 + ], + [ + -58.16802955899993, + -26.093012256999884 + ], + [ + -58.339000602999874, + -26.420937622999872 + ], + [ + -58.331706502999964, + -26.58956475099984 + ], + [ + -58.36542857599994, + -26.619956525999953 + ], + [ + -58.37007851999982, + -26.728531843999917 + ], + [ + -58.53169250999986, + -26.85148313199994 + ], + [ + -58.74206553999994, + -27.04829759499995 + ], + [ + -58.78921558899992, + -27.142446316999838 + ], + [ + -58.82247548399994, + -27.32878624999995 + ], + [ + -58.95747760199998, + -27.45006719199995 + ], + [ + -58.95697049699993, + -27.687123004999876 + ], + [ + -59.087486619999936, + -27.9082178299999 + ], + [ + -59.08850451799998, + -27.97619104099988 + ], + [ + -59.14728948699985, + -28.064949024999976 + ], + [ + -59.35948155699998, + -28.562952761999952 + ], + [ + -59.44158950699995, + -28.696908315999906 + ], + [ + -59.44640759299989, + -28.771051445999888 + ], + [ + -59.62610252099989, + -29.106398148999915 + ], + [ + -59.69000648699995, + -29.171441549999884 + ], + [ + -59.812171551999825, + -29.443115795999972 + ], + [ + -59.894641599999886, + -29.724839272999873 + ], + [ + -59.95432259499995, + -30.071111283999983 + ], + [ + -59.99734858099998, + -30.17567737099995 + ], + [ + -60.10849747799995, + -30.45153921499991 + ], + [ + -60.28054861399988, + -31.104708072999927 + ], + [ + -60.34019457199986, + -31.220704895999972 + ], + [ + -60.44432060899993, + -31.268219390999946 + ], + [ + -60.56169156099992, + -31.37707952599993 + ], + [ + -60.84720650799994, + -31.825777555999878 + ], + [ + -60.8395115859999, + -32.08806406999997 + ], + [ + -60.72694363199997, + -32.13629136199995 + ], + [ + -60.7176854839999, + -32.24784191999987 + ], + [ + -60.7611086039999, + -32.32110427999993 + ], + [ + -60.75737362799987, + -32.43407272099995 + ], + [ + -60.80363050199992, + -32.508640646999936 + ], + [ + -60.79544054499996, + -32.57737141499996 + ], + [ + -60.723071527999934, + -32.683892998999966 + ], + [ + -60.685729478999974, + -32.89000667999994 + ], + [ + -60.50665263199994, + -33.132961172999956 + ], + [ + -60.25412349099997, + -33.27271616499996 + ], + [ + -59.97742060599995, + -33.495994643999836 + ], + [ + -59.84858354499994, + -33.53766527499994 + ], + [ + -59.80777356699991, + -33.591553703999864 + ], + [ + -59.678047521999986, + -33.63494463799992 + ], + [ + -59.58985162799996, + -33.692256067999836 + ], + [ + -59.4724764849999, + -33.66348183299988 + ], + [ + -59.45325460199996, + -33.72908480999996 + ], + [ + -59.37713954499998, + -33.755940091999946 + ], + [ + -59.254436528999975, + -33.933428903999925 + ], + [ + -59.15761951199994, + -33.979787701999896 + ], + [ + -58.9773904889999, + -34.121816871999954 + ], + [ + -58.787425549999966, + -34.23594184799987 + ], + [ + -58.55087248399997, + -34.29864887699989 + ], + [ + -58.436965604999955, + -34.2618008579999 + ], + [ + -58.38360959399995, + -34.20366967699988 + ], + [ + -58.37765458699988, + -34.05355079699996 + ], + [ + -58.41252548399996, + -34.01555663499994 + ], + [ + -58.45798456799997, + -33.838758827999925 + ], + [ + -58.554973581999946, + -33.72344295099998 + ], + [ + -58.52318554899995, + -33.45239768299996 + ], + [ + -58.41423455399996, + -33.30173314099994 + ], + [ + -58.43390252199998, + -33.25682072399991 + ], + [ + -58.41324649499984, + -33.07431517599997 + ], + [ + -58.240055587999905, + -33.08519069499988 + ] + ] + ], + [ + [ + [ + -55.45480347499995, + -28.098162651999928 + ], + [ + -55.36756848299996, + -28.02366982899997 + ], + [ + -55.38261751899995, + -27.984546456999965 + ], + [ + -55.30442056499993, + -27.912041653999893 + ], + [ + -55.439098470999966, + -27.83796758999995 + ], + [ + -55.5871845719999, + -27.781781010999964 + ], + [ + -55.62936750599994, + -27.703194297999914 + ], + [ + -55.642764468999985, + -27.52046830599994 + ], + [ + -55.61114457799994, + -27.475411049999934 + ], + [ + -55.65717363099998, + -27.37160268799994 + ], + [ + -55.77689755099988, + -27.439935482999942 + ], + [ + -55.835014482999895, + -27.42477714699993 + ], + [ + -55.9008335449999, + -27.338019083999882 + ], + [ + -55.96892963499988, + -27.347972593999827 + ], + [ + -56.08073852399997, + -27.307731411999953 + ], + [ + -56.169776631999866, + -27.33407824899996 + ], + [ + -56.297988569999916, + -27.424790221999956 + ], + [ + -56.303131537999946, + -27.49347623099993 + ], + [ + -56.432479558999944, + -27.66431785799989 + ], + [ + -56.43012256799989, + -27.84221436499996 + ], + [ + -56.4607235549999, + -27.964259401999982 + ], + [ + -56.69128456599998, + -28.158352427999944 + ], + [ + -56.823493498999824, + -28.365742673999932 + ], + [ + -56.95928150399993, + -28.427176156999963 + ], + [ + -56.9970815399999, + -28.472485372999984 + ], + [ + -57.30814754599999, + -28.598702417999903 + ], + [ + -57.51696355299987, + -28.615599663999944 + ], + [ + -57.550743628999896, + -28.677761198999917 + ], + [ + -57.5897335599999, + -28.733159711999917 + ], + [ + -57.59965153099995, + -28.960967937999953 + ], + [ + -57.56345361099994, + -29.018108544999905 + ], + [ + -57.65091357399996, + -29.196154585999977 + ], + [ + -57.57129655799997, + -29.319543576999877 + ], + [ + -57.51622058099986, + -29.486008341999934 + ], + [ + -57.55700658699993, + -29.592270254999903 + ], + [ + -57.69678856899998, + -29.778436179999915 + ], + [ + -57.719085603999986, + -29.936904105999872 + ], + [ + -57.6149025709999, + -30.04502713699992 + ], + [ + -57.62751062999985, + -30.184512063999875 + ], + [ + -57.53361554499992, + -30.161471720999828 + ], + [ + -57.322814534999964, + -29.973460938999835 + ], + [ + -57.31597154999997, + -29.860930870999937 + ], + [ + -57.274169489999906, + -29.79843322199997 + ], + [ + -57.10111252599995, + -29.759263916999885 + ], + [ + -56.970283589999895, + -29.63066188599987 + ], + [ + -56.96805551199992, + -29.598441849999915 + ], + [ + -56.82972762299994, + -29.486222247999933 + ], + [ + -56.7791674799999, + -29.390671065999925 + ], + [ + -56.69889047299989, + -29.3456728189999 + ], + [ + -56.62499946999992, + -29.172622559999922 + ], + [ + -56.51500660399995, + -29.09096069499998 + ], + [ + -56.43117550299996, + -29.071765298999935 + ], + [ + -56.39278454199996, + -28.950409253999908 + ], + [ + -56.325561510999876, + -28.92207741599998 + ], + [ + -56.28139458099997, + -28.776527175999888 + ], + [ + -56.18722557499996, + -28.75346990099996 + ], + [ + -56.11083961499992, + -28.66041987899996 + ], + [ + -56.02139246999997, + -28.597644453999976 + ], + [ + -56.01833357899994, + -28.505981133999967 + ], + [ + -55.89972663099991, + -28.471262619999948 + ], + [ + -55.87333654399998, + -28.354599100999906 + ], + [ + -55.73555750199995, + -28.360157140999945 + ], + [ + -55.691390571999875, + -28.29098984399991 + ], + [ + -55.768890486999965, + -28.2282194469999 + ], + [ + -55.67861152199998, + -28.19377183699993 + ], + [ + -55.61250261299995, + -28.119607750999933 + ], + [ + -55.45480347499995, + -28.098162651999928 + ] + ] + ], + [ + [ + [ + -57.91828153399996, + -18.92807491399992 + ], + [ + -57.821762576999845, + -18.896507828999916 + ], + [ + -57.74835956899989, + -18.675311917999977 + ], + [ + -57.86388063499993, + -18.763212601999896 + ], + [ + -58.0133135399999, + -18.78093144199994 + ], + [ + -58.07453948699998, + -18.832037414999945 + ], + [ + -58.036037549999946, + -18.91992133399998 + ], + [ + -57.91828153399996, + -18.92807491399992 + ] + ] + ], + [ + [ + [ + -59.10432854499999, + -18.623451071999966 + ], + [ + -59.04307158499995, + -18.659478838999917 + ], + [ + -59.00073962099992, + -18.75637497999992 + ], + [ + -59.065448584999956, + -18.82789289899995 + ], + [ + -58.88558953799998, + -18.885516471999892 + ], + [ + -58.81034854599989, + -18.97367632299995 + ], + [ + -58.83924850999995, + -19.018053638999902 + ], + [ + -58.774475508999956, + -19.081713858999933 + ], + [ + -58.79761861499992, + -19.1557485269999 + ], + [ + -58.76173350799996, + -19.222574590999955 + ], + [ + -58.67721559299997, + -19.156492336999975 + ], + [ + -58.616619629999946, + -19.203498720999903 + ], + [ + -58.63241163799995, + -19.295032455999944 + ], + [ + -58.56713857299991, + -19.45204913999993 + ], + [ + -58.579067529999975, + -19.63215981099995 + ], + [ + -58.54998752299997, + -19.681648913999936 + ], + [ + -58.458717481999884, + -19.696799874999954 + ], + [ + -58.24259161699996, + -19.81837300999996 + ], + [ + -58.23229562199998, + -20.101252686999885 + ], + [ + -58.14702953899996, + -20.10127565399995 + ], + [ + -58.13239255699989, + -20.1663309569999 + ], + [ + -58.0269205539999, + -20.38072981499994 + ], + [ + -58.00138458299995, + -20.733069987999954 + ], + [ + -58.057395477999876, + -21.044566655999972 + ], + [ + -58.06821450299992, + -21.248666500999946 + ], + [ + -58.039565492999884, + -21.445667544999935 + ], + [ + -57.990444522999894, + -21.502770266999903 + ], + [ + -57.89878053299992, + -21.51715847399987 + ], + [ + -57.80849050399996, + -21.623744933999888 + ], + [ + -57.679107613999975, + -21.62502283899994 + ], + [ + -57.58130253899998, + -21.461066777999918 + ], + [ + -57.61555853899989, + -21.382130874999973 + ], + [ + -57.695312514999955, + -21.45911882399986 + ], + [ + -57.74108860299987, + -21.424752684999874 + ], + [ + -57.721916507999936, + -21.3413812469999 + ], + [ + -57.748149518999924, + -21.17401341599998 + ], + [ + -57.713519517999885, + -21.080432651999956 + ], + [ + -57.589153531999955, + -21.024738760999924 + ], + [ + -57.49642554299999, + -21.050853250999978 + ], + [ + -57.43387961399998, + -21.156510325999932 + ], + [ + -57.35979063099995, + -21.13242576499988 + ], + [ + -57.25525253999996, + -21.016873182999973 + ], + [ + -57.20551650599998, + -20.912908078999976 + ], + [ + -57.20810651399995, + -20.826553689999855 + ], + [ + -57.15650550599992, + -20.715188035999915 + ], + [ + -57.1337275169999, + -20.579266590999907 + ], + [ + -56.954910508999944, + -20.41017024399997 + ], + [ + -56.95376252299991, + -20.267135244999963 + ], + [ + -57.087066634999985, + -20.303857200999914 + ], + [ + -57.1537165119999, + -20.27548881799987 + ], + [ + -57.13480358499993, + -20.134829752999963 + ], + [ + -57.163635487999954, + -19.985891212999945 + ], + [ + -56.94039556699988, + -19.783628847999978 + ], + [ + -56.85010151499995, + -19.796498086999975 + ], + [ + -56.76966055799994, + -19.885011989999896 + ], + [ + -56.69887555299994, + -20.094100073999982 + ], + [ + -56.663574496999956, + -20.140118566999945 + ], + [ + -56.592132518999904, + -20.079621006999957 + ], + [ + -56.46894452599997, + -20.09811701699988 + ], + [ + -56.36974352799996, + -20.084714688999952 + ], + [ + -56.32135362799994, + -20.21810295599994 + ], + [ + -56.22837451699996, + -20.204651844999887 + ], + [ + -56.15125262599997, + -20.063543007999954 + ], + [ + -56.06566953899983, + -20.087877348999882 + ], + [ + -55.95221360599993, + -20.314186722999978 + ], + [ + -55.86917861699993, + -20.312437754999962 + ], + [ + -55.87613257899994, + -20.226169698999854 + ], + [ + -55.9357225469999, + -20.160361365999904 + ], + [ + -55.94515654599985, + -20.072924200999978 + ], + [ + -55.90145849999993, + -20.03597341899996 + ], + [ + -55.79377350699997, + -20.147525989999906 + ], + [ + -55.77035849299989, + -20.241945781999902 + ], + [ + -55.68999062599994, + -20.22712255399989 + ], + [ + -55.64564147399989, + -20.126251210999897 + ], + [ + -55.51816161099998, + -20.05418947399994 + ], + [ + -55.44383961099999, + -19.95298721399996 + ], + [ + -55.382801585999914, + -19.792762439999933 + ], + [ + -55.24634151999987, + -19.556052967999904 + ], + [ + -55.11884656999996, + -19.435230012999966 + ], + [ + -55.100040596999975, + -19.33805374799988 + ], + [ + -55.13411755899995, + -19.210734314999968 + ], + [ + -55.23466854599985, + -19.053383528999973 + ], + [ + -55.27210648399995, + -18.944989929999906 + ], + [ + -55.12707156399989, + -18.867746501999818 + ], + [ + -55.1077765899999, + -18.71263167199993 + ], + [ + -55.049484476999964, + -18.59253861299993 + ], + [ + -55.05074662399994, + -18.492047639999953 + ], + [ + -55.09733156499988, + -18.447649369999965 + ], + [ + -55.234569471999976, + -18.412497511999902 + ], + [ + -55.33602151399998, + -18.347325364999847 + ], + [ + -55.29835860499992, + -18.267721088999906 + ], + [ + -55.05899458399989, + -18.229650484999866 + ], + [ + -54.913570575999984, + -18.328428531999975 + ], + [ + -54.81706955699991, + -18.295297382999934 + ], + [ + -54.79908752499995, + -18.247773500999926 + ], + [ + -54.81280149199989, + -18.064688426999908 + ], + [ + -54.88624154799999, + -17.955652104999956 + ], + [ + -55.01704449999994, + -17.91110664799993 + ], + [ + -55.1755595329999, + -17.82302307099991 + ], + [ + -55.28690356099992, + -17.72960089299994 + ], + [ + -55.46753659199993, + -17.62967469299997 + ], + [ + -55.741050497999936, + -17.498411741999973 + ], + [ + -56.03816951999988, + -17.29124462299984 + ], + [ + -56.162025550999886, + -17.248250153999948 + ], + [ + -56.07588556999991, + -17.19333862999997 + ], + [ + -55.92950853899998, + -17.27751053999998 + ], + [ + -55.73859761799997, + -17.34822111299991 + ], + [ + -55.530349568999895, + -17.27552168199992 + ], + [ + -55.437076587999854, + -17.210816573999978 + ], + [ + -55.36134760199991, + -17.246745433999877 + ], + [ + -55.281478625999966, + -17.20574870799993 + ], + [ + -55.053596470999935, + -17.15246310499998 + ], + [ + -54.99767660399988, + -17.080884501999947 + ], + [ + -55.031326591999914, + -16.850723977999962 + ], + [ + -54.952457576999905, + -16.749324071999922 + ], + [ + -54.97610057899993, + -16.63019258499986 + ], + [ + -55.17645254099989, + -16.663145534999956 + ], + [ + -55.453540489999966, + -16.79358756199997 + ], + [ + -55.61127047399998, + -16.79853204699998 + ], + [ + -55.798896526999954, + -16.765749249999942 + ], + [ + -56.18092355699997, + -16.77183484699998 + ], + [ + -56.276107611999976, + -16.720329895999896 + ], + [ + -56.23835753099996, + -16.64090381899996 + ], + [ + -56.11782056699997, + -16.614200584999878 + ], + [ + -55.99431959399993, + -16.66544653499983 + ], + [ + -55.83472061299983, + -16.595748829999934 + ], + [ + -55.77980456299997, + -16.68756386299998 + ], + [ + -55.623138577999896, + -16.71113545099996 + ], + [ + -55.494201604999944, + -16.666260249999937 + ], + [ + -55.41883454899994, + -16.440919320999967 + ], + [ + -55.409728617999974, + -16.366347203999908 + ], + [ + -55.44696052899991, + -16.204711421999946 + ], + [ + -55.521171551999885, + -16.152172646999873 + ], + [ + -55.70145757299997, + -16.33577421299998 + ], + [ + -55.76274856299989, + -16.359904705999952 + ], + [ + -55.83198157499993, + -16.313129662999927 + ], + [ + -55.75069857199992, + -16.1777200169999 + ], + [ + -55.61383449799996, + -16.0926693479999 + ], + [ + -55.624511533999964, + -15.99462253899992 + ], + [ + -55.84543654099997, + -16.160696203999976 + ], + [ + -55.927577515999985, + -16.184929626999917 + ], + [ + -56.024791499999935, + -16.16429287899996 + ], + [ + -56.18049255999995, + -16.22081741599993 + ], + [ + -56.32484049999988, + -16.113992071999974 + ], + [ + -56.39373354099996, + -16.091862505999927 + ], + [ + -56.48692655799994, + -16.12539145999989 + ], + [ + -56.6155015999999, + -16.235869469999955 + ], + [ + -56.74941658499989, + -16.25405736199997 + ], + [ + -56.91791546999991, + -16.206029391999834 + ], + [ + -57.08987859599995, + -16.26074192999988 + ], + [ + -57.23863558499994, + -16.205340399999955 + ], + [ + -57.34062155299989, + -16.21485385999989 + ], + [ + -57.390994611999986, + -16.185308488999908 + ], + [ + -57.34431059699995, + -16.100175845999956 + ], + [ + -57.44254247899988, + -16.067083923999917 + ], + [ + -57.62430153499997, + -16.09772497699987 + ], + [ + -57.663757499999974, + -16.202895398999942 + ], + [ + -57.80528660599998, + -16.30788996799987 + ], + [ + -57.833389617999956, + -16.2404602389999 + ], + [ + -57.86850761299996, + -16.039434707999817 + ], + [ + -57.94787250199988, + -15.892684011999961 + ], + [ + -58.088878576999946, + -15.879307834999906 + ], + [ + -58.21187562999995, + -15.965187641999933 + ], + [ + -58.208423626999945, + -16.01956691499987 + ], + [ + -58.07261651099992, + -16.138209401999973 + ], + [ + -58.07659154499993, + -16.218572574999826 + ], + [ + -58.18134655899985, + -16.29859426899992 + ], + [ + -58.14241747999989, + -16.396828330999938 + ], + [ + -58.04695548199999, + -16.52005957399996 + ], + [ + -58.00434155099998, + -16.650199349999923 + ], + [ + -57.951614518999975, + -16.71653926399989 + ], + [ + -57.86920549099989, + -16.75693366699994 + ], + [ + -57.86828247499989, + -16.864498127999923 + ], + [ + -58.00747252699989, + -16.838118601999895 + ], + [ + -58.05755657799989, + -16.722135021999975 + ], + [ + -58.177570511999875, + -16.566893625999967 + ], + [ + -58.30445056499997, + -16.59356785899996 + ], + [ + -58.3368456149999, + -16.67024098299993 + ], + [ + -58.33245048099997, + -16.771890837999877 + ], + [ + -58.37091453099998, + -16.822527758999968 + ], + [ + -58.47170658199991, + -16.79349133799991 + ], + [ + -58.462051634999966, + -16.67167914999993 + ], + [ + -58.338542615999984, + -16.49343931999988 + ], + [ + -58.30578647299984, + -16.26074595299997 + ], + [ + -58.5830536279999, + -16.131146977999947 + ], + [ + -58.78649549399984, + -16.138892358999897 + ], + [ + -58.93657263199998, + -16.10886335299989 + ], + [ + -58.968490583999824, + -16.141456215999938 + ], + [ + -59.14800647499993, + -16.190405188999932 + ], + [ + -59.267223624999986, + -16.279495767999947 + ], + [ + -59.248527622999916, + -16.362787242999957 + ], + [ + -59.32466162299994, + -16.454390715999978 + ], + [ + -59.58874555199992, + -16.393606326999816 + ], + [ + -59.70984661899996, + -16.397356054999932 + ], + [ + -59.861728548999906, + -16.429941206999956 + ], + [ + -60.100761483999975, + -16.42361152899997 + ], + [ + -60.09617960099996, + -16.48265499599995 + ], + [ + -59.97108455699993, + -16.566281578999963 + ], + [ + -59.74770348499993, + -16.685312315999965 + ], + [ + -59.68478355499997, + -16.768922805999978 + ], + [ + -59.62183747399996, + -16.70157521999988 + ], + [ + -59.52775949499994, + -16.761528290999934 + ], + [ + -59.37703359799997, + -16.711675412999966 + ], + [ + -59.32067150199987, + -16.61914624299982 + ], + [ + -59.24293555199995, + -16.642223800999943 + ], + [ + -59.23108655899995, + -16.718505154999832 + ], + [ + -59.31443050399997, + -16.726200580999887 + ], + [ + -59.33733355199996, + -16.82615527899992 + ], + [ + -59.44631153599994, + -16.80945953399987 + ], + [ + -59.58020757799994, + -16.845406163999883 + ], + [ + -59.61190055999998, + -16.909825112999954 + ], + [ + -59.562126471999875, + -16.94755977099993 + ], + [ + -59.45431558299998, + -16.945953797999948 + ], + [ + -59.43718347599997, + -17.076783906999935 + ], + [ + -59.51627360599991, + -17.150439378999977 + ], + [ + -59.56225152999991, + -17.23393620999991 + ], + [ + -59.539318474999845, + -17.298410144999934 + ], + [ + -59.42644860499996, + -17.30126904399998 + ], + [ + -59.431152528999974, + -17.37280171499998 + ], + [ + -59.334361495999985, + -17.397506200999885 + ], + [ + -59.29119855099992, + -17.24735328999992 + ], + [ + -59.15094349399993, + -17.266645245999825 + ], + [ + -59.078304579999894, + -17.196830362999947 + ], + [ + -58.82234556399993, + -17.131220512999903 + ], + [ + -58.78025047299997, + -17.140670772999954 + ], + [ + -58.61186256399998, + -17.02440002999998 + ], + [ + -58.54930858899991, + -17.02821295799987 + ], + [ + -58.540264514999876, + -17.11936330499998 + ], + [ + -58.62680850399988, + -17.135368045999883 + ], + [ + -58.65957654799996, + -17.200483028999827 + ], + [ + -58.744529483999884, + -17.249642052999945 + ], + [ + -58.777797592999946, + -17.36312430399994 + ], + [ + -58.90908451599989, + -17.496815995999896 + ], + [ + -58.88892352399995, + -17.583415807999927 + ], + [ + -58.898345621999965, + -17.723372132999884 + ], + [ + -58.76161549099987, + -17.678431720999868 + ], + [ + -58.736644627999965, + -17.637535408999952 + ], + [ + -58.58808863699994, + -17.663694825999983 + ], + [ + -58.530727585999955, + -17.632644736999964 + ], + [ + -58.41897552599994, + -17.62687295799998 + ], + [ + -58.16377658099998, + -17.474907376999965 + ], + [ + -58.09371560499994, + -17.469353695999814 + ], + [ + -57.97864548599995, + -17.561325971999963 + ], + [ + -57.91242560099994, + -17.501901630999953 + ], + [ + -57.782424628999934, + -17.500599586999954 + ], + [ + -57.60902048699995, + -17.368525770999952 + ], + [ + -57.58199354299995, + -17.47021753499996 + ], + [ + -57.616805598999974, + -17.567098588999954 + ], + [ + -57.548820484999965, + -17.613286898999945 + ], + [ + -57.43357451299994, + -17.463253848999955 + ], + [ + -57.38536063199996, + -17.49755779399993 + ], + [ + -57.38665060699992, + -17.579123769999967 + ], + [ + -57.43389553999987, + -17.804887314999917 + ], + [ + -57.440299480999954, + -17.995200773999954 + ], + [ + -57.40825647099996, + -18.200903238999956 + ], + [ + -57.408527541999945, + -18.449135312999886 + ], + [ + -57.49962659199997, + -18.63107240099987 + ], + [ + -57.76041056599996, + -18.818465268999887 + ], + [ + -57.78434358199996, + -18.890488113999936 + ], + [ + -57.62758656999989, + -19.009069076999936 + ], + [ + -57.515388592999955, + -19.050646501999893 + ], + [ + -57.411819617999925, + -19.0578732109999 + ], + [ + -57.478168584999935, + -19.165349996999964 + ], + [ + -57.39349761599988, + -19.335660043999894 + ], + [ + -57.389816619999976, + -19.38057715499997 + ], + [ + -57.47743952699989, + -19.42655776099997 + ], + [ + -57.52492552299998, + -19.40756688299996 + ], + [ + -57.550853598999936, + -19.27278470599998 + ], + [ + -57.59938850699996, + -19.198229017999893 + ], + [ + -57.80059860699993, + -19.233152049999944 + ], + [ + -57.94363058799985, + -19.222503680999864 + ], + [ + -58.05924251399995, + -19.241061549999927 + ], + [ + -58.1061176369999, + -19.15657833599994 + ], + [ + -58.286998604999894, + -19.134736604999887 + ], + [ + -58.37855161899995, + -19.155947345999948 + ], + [ + -58.51228756599994, + -18.99118729299994 + ], + [ + -58.715171532999875, + -18.873772921999887 + ], + [ + -58.825687596999956, + -18.75587005499989 + ], + [ + -58.98548153999985, + -18.629935646999968 + ], + [ + -59.10432854499999, + -18.623451071999966 + ] + ] + ], + [ + [ + [ + -57.822425585999895, + -18.319096120999973 + ], + [ + -57.86513859099995, + -18.174578698999824 + ], + [ + -57.98344060499994, + -18.240840827999932 + ], + [ + -57.97603653499988, + -18.36619939899998 + ], + [ + -57.93601663499993, + -18.472730035999973 + ], + [ + -57.87039957599984, + -18.516947088999927 + ], + [ + -57.83199352799994, + -18.427270447999888 + ], + [ + -57.822425585999895, + -18.319096120999973 + ] + ] + ], + [ + [ + [ + -58.48307059899997, + -18.307738641999947 + ], + [ + -58.53860053999995, + -18.18885475599984 + ], + [ + -58.62873852099989, + -18.20522276899993 + ], + [ + -58.65173360099993, + -18.285489214999927 + ], + [ + -58.48307059899997, + -18.307738641999947 + ] + ] + ], + [ + [ + [ + -58.21330256499988, + -18.03962703999997 + ], + [ + -58.25006458699994, + -18.096127437999883 + ], + [ + -58.25058359399998, + -18.21842124899996 + ], + [ + -58.13863355399991, + -18.099339382999915 + ], + [ + -58.21330256499988, + -18.03962703999997 + ] + ] + ], + [ + [ + [ + -58.76780351499991, + -17.89747549399982 + ], + [ + -58.79524653599992, + -17.790535149999926 + ], + [ + -58.89556148899993, + -17.781736665999972 + ], + [ + -58.918289521999895, + -17.99879744799989 + ], + [ + -58.84534450099994, + -18.151790147999975 + ], + [ + -58.829288629999894, + -18.283318301999884 + ], + [ + -58.74119549799997, + -18.213418593999847 + ], + [ + -58.70036355999997, + -18.10438512099995 + ], + [ + -58.80148350999997, + -17.99852436599997 + ], + [ + -58.76780351499991, + -17.89747549399982 + ] + ] + ], + [ + [ + [ + -58.46643855599996, + -18.01505834099993 + ], + [ + -58.44655953099988, + -17.961409801999935 + ], + [ + -58.50534450099991, + -17.916813214999934 + ], + [ + -58.66436747599988, + -17.959452626999905 + ], + [ + -58.626605493999875, + -18.042852730999982 + ], + [ + -58.54888563799989, + -17.983714213999974 + ], + [ + -58.46643855599996, + -18.01505834099993 + ] + ] + ], + [ + [ + [ + -57.74440347799998, + -17.798673474999873 + ], + [ + -57.80584752299984, + -17.779766750999954 + ], + [ + -57.89861255999995, + -17.69285982599996 + ], + [ + -57.97918360399996, + -17.67946872999994 + ], + [ + -58.031799491999834, + -17.72672891799988 + ], + [ + -58.21878852099991, + -17.704919205999943 + ], + [ + -58.27903747299996, + -17.734254525999972 + ], + [ + -58.246707633999904, + -17.808353902999954 + ], + [ + -58.11140862999997, + -17.843908761999955 + ], + [ + -58.086376578999875, + -17.894904763999932 + ], + [ + -58.201587513999925, + -17.92936947399994 + ], + [ + -58.1603924719999, + -17.97854760799987 + ], + [ + -57.92967656299999, + -17.973526009999944 + ], + [ + -57.871185630999946, + -18.03194351699989 + ], + [ + -57.739826623999875, + -18.06993717499995 + ], + [ + -57.66033148099996, + -18.005608079999945 + ], + [ + -57.74440347799998, + -17.798673474999873 + ] + ] + ], + [ + [ + [ + -55.26535452599995, + -17.661985923999907 + ], + [ + -55.24518163199991, + -17.69369902199992 + ], + [ + -55.04272061599988, + -17.73995924899998 + ], + [ + -54.91512256899995, + -17.834222299999908 + ], + [ + -54.86006553499993, + -17.780342587999826 + ], + [ + -54.90798152299993, + -17.71708536999995 + ], + [ + -55.12071657199988, + -17.640336138999885 + ], + [ + -55.26535452599995, + -17.661985923999907 + ] + ] + ], + [ + [ + [ + -55.347370610999974, + -17.51855747899998 + ], + [ + -55.25966254299993, + -17.504667491999953 + ], + [ + -55.24961850899996, + -17.406426556999975 + ], + [ + -55.20643661999992, + -17.39769714099998 + ], + [ + -55.08501452599995, + -17.520522531999973 + ], + [ + -54.99902759899993, + -17.56919657899988 + ], + [ + -54.998294517999966, + -17.330358103999913 + ], + [ + -55.04727148699993, + -17.26707423199997 + ], + [ + -55.176864594999984, + -17.28032736199998 + ], + [ + -55.27264057899998, + -17.33689984399996 + ], + [ + -55.36050756699996, + -17.327140458999963 + ], + [ + -55.554302532999884, + -17.35732251899998 + ], + [ + -55.61444855599996, + -17.405140437999933 + ], + [ + -55.587837521999916, + -17.474674191999952 + ], + [ + -55.347370610999974, + -17.51855747899998 + ] + ] + ], + [ + [ + [ + -60.05122762199994, + -15.468817034999972 + ], + [ + -60.18867457299996, + -15.452573073999929 + ], + [ + -60.35352749799989, + -15.270628777999946 + ], + [ + -60.375041496999984, + -15.146559846999935 + ], + [ + -60.482006482999964, + -15.120033637999825 + ], + [ + -60.55908948299992, + -15.071199663999948 + ], + [ + -60.68803751899998, + -15.167226434999975 + ], + [ + -60.64177360499997, + -15.302049850999936 + ], + [ + -60.527141522999955, + -15.376748198999962 + ], + [ + -60.44492360299995, + -15.514836197999955 + ], + [ + -60.57308156099998, + -15.704819241999814 + ], + [ + -60.65716948499988, + -15.707683002999886 + ], + [ + -60.778877568999974, + -15.657547989999955 + ], + [ + -60.885677599999894, + -15.645677873999944 + ], + [ + -61.05463061599994, + -15.717386396999927 + ], + [ + -60.974204578999945, + -15.855829285999903 + ], + [ + -60.87751060799991, + -15.85946434999994 + ], + [ + -60.82935355699993, + -15.78010231099995 + ], + [ + -60.65703151799994, + -15.894221922999975 + ], + [ + -60.650176629999976, + -15.978476813999919 + ], + [ + -60.483821500999966, + -16.12509943499998 + ], + [ + -60.47246150699988, + -16.17236431599997 + ], + [ + -60.32995255699984, + -16.213064658999826 + ], + [ + -60.233970545999966, + -16.295807453999828 + ], + [ + -60.155124496999974, + -16.2470286329999 + ], + [ + -60.057079530999886, + -16.30903677999993 + ], + [ + -59.95521962599997, + -16.34200263699995 + ], + [ + -59.82599247199994, + -16.25332226899991 + ], + [ + -60.153758581999966, + -16.23796930499998 + ], + [ + -60.12256650299997, + -16.194440907999876 + ], + [ + -59.99188659699996, + -16.23495047899985 + ], + [ + -59.895980525999846, + -16.017583253999874 + ], + [ + -59.822227488999886, + -15.998302529999933 + ], + [ + -59.798534530999916, + -16.1709725849999 + ], + [ + -59.659122525999976, + -16.20666406999993 + ], + [ + -59.612094516999946, + -16.169335598999908 + ], + [ + -59.54871358299994, + -15.976229792999902 + ], + [ + -59.58712063699994, + -15.900267789999873 + ], + [ + -59.67832948999995, + -15.840329302999976 + ], + [ + -59.806693474999975, + -15.716204380999898 + ], + [ + -59.951827637999884, + -15.676875820999953 + ], + [ + -59.97812250599998, + -15.525431426999887 + ], + [ + -60.05122762199994, + -15.468817034999972 + ] + ] + ], + [ + [ + [ + -61.093402617999914, + -15.00960172899994 + ], + [ + -61.069702618999884, + -15.093939432999946 + ], + [ + -60.967441555999926, + -15.213960574999874 + ], + [ + -60.945556574999955, + -15.362384968999834 + ], + [ + -60.85781447699998, + -15.450699215999919 + ], + [ + -60.76979057999989, + -15.44470481399992 + ], + [ + -60.76838258799984, + -15.359372177999944 + ], + [ + -60.82249447799995, + -15.315443125999934 + ], + [ + -60.82692749899991, + -15.211142746999883 + ], + [ + -60.91846458699996, + -15.157045272999937 + ], + [ + -61.012245510999946, + -15.065963153999917 + ], + [ + -61.093402617999914, + -15.00960172899994 + ] + ] + ], + [ + [ + [ + -79.4484705559999, + -1.878014986999972 + ], + [ + -79.54156449899989, + -1.773044725999853 + ], + [ + -79.60143257799996, + -1.593465131999949 + ], + [ + -79.68390664999998, + -1.577170544999831 + ], + [ + -79.7853166139999, + -1.707031705999952 + ], + [ + -79.8023685899999, + -1.890445013999852 + ], + [ + -79.83371757899988, + -2.006851208999933 + ], + [ + -79.80713655199997, + -2.071541564999904 + ], + [ + -79.85866564299988, + -2.162816634999956 + ], + [ + -79.76776155599998, + -2.173759711999878 + ], + [ + -79.72924050799998, + -2.315173147999815 + ], + [ + -79.63674955999988, + -2.410504052999954 + ], + [ + -79.60670462799999, + -2.522384857999896 + ], + [ + -79.61045854699995, + -2.603462672999967 + ], + [ + -79.70205665499992, + -2.716959173999953 + ], + [ + -79.7382435109999, + -2.884577791999959 + ], + [ + -79.6802365499999, + -2.894614952999973 + ], + [ + -79.61668361899996, + -2.673829419999947 + ], + [ + -79.56298059699998, + -2.615582904999883 + ], + [ + -79.47724965299989, + -2.418383712999912 + ], + [ + -79.49093663099995, + -2.322001716999921 + ], + [ + -79.61797359299993, + -2.136331664999886 + ], + [ + -79.59814452499995, + -2.065121864999981 + ], + [ + -79.53432454699993, + -2.003268448999961 + ], + [ + -79.43215953999999, + -1.957531922999976 + ], + [ + -79.4484705559999, + -1.878014986999972 + ] + ] + ], + [ + [ + [ + -62.16754954599992, + 8.663468954999985 + ], + [ + -62.016731614999856, + 8.818858041000055 + ], + [ + -61.99747050499991, + 8.869095145000188 + ], + [ + -62.09077852099995, + 9.073386768000148 + ], + [ + -62.322158611999896, + 9.160939435000046 + ], + [ + -62.35928356999989, + 9.199684615000024 + ], + [ + -62.38987349299987, + 9.346848371000021 + ], + [ + -62.38019557999996, + 9.39498379700018 + ], + [ + -62.26052848899991, + 9.405976999000075 + ], + [ + -62.15159258199992, + 9.3747463630001 + ], + [ + -62.107509637999954, + 9.414859468999964 + ], + [ + -62.17628851799992, + 9.473345540000082 + ], + [ + -62.19087554399994, + 9.549250881000091 + ], + [ + -62.25242251799989, + 9.568602517000045 + ], + [ + -62.43202960499991, + 9.550958778000108 + ], + [ + -62.51727255399999, + 9.665323812000054 + ], + [ + -62.57260551999997, + 9.695102535000046 + ], + [ + -62.72238158099992, + 9.855994340000052 + ], + [ + -62.84079758799987, + 9.898018353000168 + ], + [ + -62.89183851699988, + 9.867461454000079 + ], + [ + -62.9058684819999, + 9.700183477 + ], + [ + -62.87585053999999, + 9.615592304000188 + ], + [ + -62.74518555399982, + 9.542591459000107 + ], + [ + -62.6965785619999, + 9.439812730000028 + ], + [ + -62.620136610999964, + 9.351664110000115 + ], + [ + -62.59031648199982, + 9.172623641000087 + ], + [ + -62.46248256799993, + 9.133907462000082 + ], + [ + -62.36506255699993, + 9.074711612000158 + ], + [ + -62.33147861799995, + 8.993563558000062 + ], + [ + -62.13786352699998, + 8.87871254100014 + ], + [ + -62.122764533999884, + 8.776803015000098 + ], + [ + -62.16754954599992, + 8.663468954999985 + ] + ] + ], + [ + [ + [ + -61.72434954199997, + 9.087090845000091 + ], + [ + -61.67212257399996, + 9.121046270000022 + ], + [ + -61.53979461899996, + 9.286027606 + ], + [ + -61.3994445109999, + 9.436527024000156 + ], + [ + -61.34551249599991, + 9.525755736000065 + ], + [ + -61.366325599999925, + 9.60939086899998 + ], + [ + -61.457046625999965, + 9.66924754900009 + ], + [ + -61.49486158299999, + 9.589931107000154 + ], + [ + -61.58533048099986, + 9.56440502700002 + ], + [ + -61.616653485999905, + 9.51340667800008 + ], + [ + -61.58029949499996, + 9.45106996100003 + ], + [ + -61.592376476999846, + 9.364148117000013 + ], + [ + -61.732814593999876, + 9.250107295000078 + ], + [ + -61.79321659999988, + 9.180988948000106 + ], + [ + -61.788864547999935, + 9.124244301000033 + ], + [ + -61.72434954199997, + 9.087090845000091 + ] + ] + ], + [ + [ + [ + -61.73363451199987, + 9.63460313100012 + ], + [ + -61.58910753399982, + 9.638789724000048 + ], + [ + -61.59745456899998, + 9.723959583000124 + ], + [ + -61.682544631999974, + 9.7487198930001 + ], + [ + -61.73363451199987, + 9.63460313100012 + ] + ] + ], + [ + [ + [ + -62.668762545999925, + 9.950818811000147 + ], + [ + -62.725036631999956, + 9.890292082000087 + ], + [ + -62.59637860899994, + 9.873936139000136 + ], + [ + -62.49501759499998, + 9.980487563000167 + ], + [ + -62.52544356899989, + 10.073710922000146 + ], + [ + -62.567039600999976, + 10.078596734000087 + ], + [ + -62.668762545999925, + 9.950818811000147 + ] + ] + ], + [ + [ + [ + -62.72551356299982, + 10.278962776000071 + ], + [ + -62.82491656399992, + 10.338566322000133 + ], + [ + -62.93241162299989, + 10.313493200000039 + ], + [ + -62.84580963099995, + 10.197939445000031 + ], + [ + -62.68852958799988, + 10.188115016000097 + ], + [ + -62.72551356299982, + 10.278962776000071 + ] + ] + ], + [ + [ + [ + -5.148252525999965, + 14.1135606040001 + ], + [ + -5.148297452999941, + 14.008333521000168 + ], + [ + -4.919569563999914, + 13.991184650000093 + ], + [ + -4.766938459999949, + 14.021672648999981 + ], + [ + -4.674348436999878, + 14.013692072000026 + ], + [ + -4.649722572999906, + 13.88680145700016 + ], + [ + -4.548388548999981, + 13.771448029000112 + ], + [ + -4.659810528999969, + 13.698953115999984 + ], + [ + -4.785821546999898, + 13.552273666000133 + ], + [ + -5.127549559999977, + 13.423412466000116 + ], + [ + -5.24117748999987, + 13.36486638100007 + ], + [ + -5.280385517999889, + 13.260623333000012 + ], + [ + -5.225863584999956, + 13.24023351500017 + ], + [ + -5.041845438999928, + 13.277551089000156 + ], + [ + -4.914549474999887, + 13.333757450000121 + ], + [ + -4.833024569999907, + 13.234944031 + ], + [ + -4.757257529999947, + 13.242873479000082 + ], + [ + -4.719943475999969, + 13.30169046800006 + ], + [ + -4.713101495999979, + 13.447919642000159 + ], + [ + -4.451346561999912, + 13.628068702000178 + ], + [ + -4.255138445999876, + 13.828404234000118 + ], + [ + -4.092889442999876, + 14.117005231000121 + ], + [ + -4.070543456999872, + 14.228397874000052 + ], + [ + -4.010570436999956, + 14.678758371000185 + ], + [ + -3.879904444999966, + 14.928543277000074 + ], + [ + -3.781003519999899, + 15.092101533000118 + ], + [ + -3.838179498999978, + 15.235503323000046 + ], + [ + -3.801945536999938, + 15.273839969 + ], + [ + -3.699598475999949, + 15.258741815000121 + ], + [ + -3.649341422999896, + 15.346175122999966 + ], + [ + -3.641549437999913, + 15.50767478400013 + ], + [ + -3.61792554699997, + 15.538843729000064 + ], + [ + -3.473192541999936, + 15.54746250500017 + ], + [ + -3.49599550999983, + 15.612969090000092 + ], + [ + -3.621715507999966, + 15.683893737000119 + ], + [ + -3.571110437999835, + 15.750349488999973 + ], + [ + -3.323374571999977, + 15.64136647500004 + ], + [ + -3.131350534999854, + 15.667074778000028 + ], + [ + -3.078525433999971, + 15.761369512000101 + ], + [ + -2.93343049899994, + 15.796401509000077 + ], + [ + -2.706180506999942, + 15.751409464000062 + ], + [ + -2.61110055599994, + 15.765219488000128 + ], + [ + -2.53290343499998, + 15.828794379000101 + ], + [ + -2.391753525999945, + 16.03741106500007 + ], + [ + -2.322371483999973, + 16.09171758300016 + ], + [ + -2.165170565999972, + 16.17094383500006 + ], + [ + -2.11589050799995, + 16.270077275000062 + ], + [ + -2.188184422999939, + 16.29742574800008 + ], + [ + -2.34292156399988, + 16.218370655 + ], + [ + -2.478275553999879, + 16.179771991000052 + ], + [ + -2.675715473999958, + 16.20049071400007 + ], + [ + -2.974945561999959, + 16.16635306699999 + ], + [ + -3.052839426999867, + 16.176932202000046 + ], + [ + -3.062077457999919, + 16.288965055000176 + ], + [ + -3.015161430999967, + 16.39413866199999 + ], + [ + -3.037802459999966, + 16.45903437400011 + ], + [ + -2.958801513999845, + 16.548658879000186 + ], + [ + -2.489353579999886, + 16.61971462000008 + ], + [ + -2.187364504999891, + 16.715209475 + ], + [ + -2.015875459999904, + 16.7978231890001 + ], + [ + -1.733755517999953, + 16.85198101200018 + ], + [ + -1.46343344099995, + 16.918485882000027 + ], + [ + -1.114696479999964, + 16.952623697000092 + ], + [ + -0.955042513999899, + 16.95064389200013 + ], + [ + -0.676550427999928, + 16.87661844300004 + ], + [ + -0.552444448999836, + 16.886428790000082 + ], + [ + -0.434930501999929, + 16.861440325000103 + ], + [ + -0.335631435999971, + 16.704590274000054 + ], + [ + -0.253659440999968, + 16.691710977000128 + ], + [ + -0.185972554999978, + 16.76971598500012 + ], + [ + -0.234954552999966, + 16.94258536300015 + ], + [ + -0.287210522999942, + 17.047088752000093 + ], + [ + -0.356382513999904, + 17.106134231000112 + ], + [ + -0.448174579999829, + 17.064386653000042 + ], + [ + -0.567629440999895, + 17.04534883700012 + ], + [ + -1.151847421999946, + 17.167070332000094 + ], + [ + -1.285361583999929, + 17.182360432000053 + ], + [ + -1.641101457999923, + 17.104503448000116 + ], + [ + -1.837839476999932, + 17.04127908700019 + ], + [ + -2.201596473999814, + 16.95459361200011 + ], + [ + -2.439606481999874, + 16.880248143000188 + ], + [ + -2.684607499999913, + 16.82956126500011 + ], + [ + -2.929841535999969, + 16.743657822000102 + ], + [ + -3.142115580999871, + 16.694359658 + ], + [ + -3.247840548999932, + 16.650972581000076 + ], + [ + -3.539902432999952, + 16.46345532500004 + ], + [ + -3.611710532999837, + 16.350701460000096 + ], + [ + -3.68010954499988, + 16.315284566000173 + ], + [ + -3.789771492999932, + 16.32197315800005 + ], + [ + -4.049637481999923, + 16.231249784000113 + ], + [ + -4.113107431999936, + 16.129514435000033 + ], + [ + -4.348847452999962, + 16.096866251000165 + ], + [ + -4.385224577999963, + 16.000893292000114 + ], + [ + -4.458703525999965, + 16.05343022300019 + ], + [ + -4.514319464999971, + 16.03284125099998 + ], + [ + -4.576787442999944, + 15.910269328000027 + ], + [ + -4.868333504999896, + 15.787227013000177 + ], + [ + -4.926146508999921, + 15.662106153000082 + ], + [ + -4.917558577999898, + 15.6144580510001 + ], + [ + -4.789558534999969, + 15.623957597000071 + ], + [ + -4.659661498999981, + 15.668044564000184 + ], + [ + -4.598003547999895, + 15.658256177 + ], + [ + -4.631530490999978, + 15.572670743000117 + ], + [ + -4.528307520999874, + 15.546093572000132 + ], + [ + -4.519555472999969, + 15.486557248999986 + ], + [ + -4.651059486999941, + 15.43535941100015 + ], + [ + -4.724433493999868, + 15.267500233000021 + ], + [ + -4.766684488999942, + 15.097331337000128 + ], + [ + -4.780522507999876, + 14.974079307000068 + ], + [ + -4.865797475999955, + 14.733534779000024 + ], + [ + -4.977437552999959, + 14.568975723000108 + ], + [ + -5.032285542999944, + 14.309892605000186 + ], + [ + -5.148252525999965, + 14.1135606040001 + ] + ] + ], + [ + [ + [ + -71.4936524979999, + 18.4671395580001 + ], + [ + -71.6775206079999, + 18.57175526500015 + ], + [ + -71.80419161699984, + 18.491143987000044 + ], + [ + -71.62831162799989, + 18.40575116900004 + ], + [ + -71.49903854099995, + 18.429057722000096 + ], + [ + -71.4936524979999, + 18.4671395580001 + ] + ] + ], + [ + [ + [ + -72.03697953199992, + 18.536959302000128 + ], + [ + -71.94544261099998, + 18.47196719900012 + ], + [ + -71.88322458199991, + 18.51550850300015 + ], + [ + -71.99132548499995, + 18.646642708000172 + ], + [ + -72.06893151399998, + 18.59863753700006 + ], + [ + -72.03697953199992, + 18.536959302000128 + ] + ] + ], + [ + [ + [ + -15.524930007999899, + 19.039420081000173 + ], + [ + -15.625650041999904, + 19.113020014000085 + ], + [ + -15.749609814999872, + 19.08590994700006 + ], + [ + -15.827089931999922, + 19.039420081000173 + ], + [ + -15.920059981999941, + 19.07815996400018 + ], + [ + -16.016900006999947, + 19.05879002300003 + ], + [ + -16.059520073999977, + 18.996810048000043 + ], + [ + -16.016900006999947, + 18.892220040000097 + ], + [ + -16.059520073999977, + 18.84186002299998 + ], + [ + -16.09277992699998, + 18.666109894999977 + ], + [ + -16.04789008299997, + 18.57068999900008 + ], + [ + -16.005279872999836, + 18.318899949000183 + ], + [ + -15.916179973999931, + 18.28404007500012 + ], + [ + -15.823209923999968, + 18.454480033000095 + ], + [ + -15.896810032999952, + 18.671399999000187 + ], + [ + -15.830960082999923, + 18.729520031999982 + ], + [ + -15.683760040999971, + 18.776000040000156 + ], + [ + -15.571420049999972, + 18.84961000600009 + ], + [ + -15.524930007999899, + 19.039420081000173 + ] + ] + ], + [ + [ + [ + -77.18564553699997, + 20.715069264000135 + ], + [ + -77.16172760899991, + 20.585159320000116 + ], + [ + -77.10182164399993, + 20.57883668300019 + ], + [ + -77.01151250399988, + 20.441611685000055 + ], + [ + -76.99105864899997, + 20.55089946400011 + ], + [ + -77.07907852299996, + 20.704443861000016 + ], + [ + -77.18564553699997, + 20.715069264000135 + ] + ] + ], + [ + [ + [ + -12.188429995999911, + 20.93294994600012 + ], + [ + -12.145110073999945, + 20.99802998500013 + ], + [ + -11.968860048999943, + 21.164240007000046 + ], + [ + -11.941739948999896, + 21.26501002900011 + ], + [ + -12.096939921999933, + 21.22471993900018 + ], + [ + -12.27784004199998, + 21.01245006800019 + ], + [ + -12.289289964999966, + 20.902939950000075 + ], + [ + -12.188429995999911, + 20.93294994600012 + ] + ] + ], + [ + [ + [ + -78.63319351099994, + 21.616789380000057 + ], + [ + -78.64075449099988, + 21.728025281000157 + ], + [ + -78.74317162499989, + 21.660465130000148 + ], + [ + -78.63536861499995, + 21.56891597200007 + ], + [ + -78.49542955699991, + 21.402941044999977 + ], + [ + -78.43898749699991, + 21.432381307000185 + ], + [ + -78.6273655739999, + 21.57804151800019 + ], + [ + -78.63319351099994, + 21.616789380000057 + ] + ] + ], + [ + [ + [ + -78.58476253999993, + 22.165139688000124 + ], + [ + -78.51329055399998, + 22.136618251000016 + ], + [ + -78.30252055799991, + 22.14656673200011 + ], + [ + -78.42232561399993, + 22.23482817300004 + ], + [ + -78.50885753299991, + 22.23180716700017 + ], + [ + -78.58476253999993, + 22.165139688000124 + ] + ] + ], + [ + [ + [ + -12.954500046999954, + 22.6469100490001 + ], + [ + -12.851450037999825, + 22.617179925000073 + ], + [ + -12.860229913999945, + 22.7555802 + ], + [ + -12.773079963999976, + 22.944919949999985 + ], + [ + -12.869520247999958, + 23.001749933000042 + ], + [ + -12.936190097999884, + 22.849910005000027 + ], + [ + -12.954500046999954, + 22.6469100490001 + ] + ] + ], + [ + [ + [ + -11.50209998199989, + 23.953939977000175 + ], + [ + -11.389489975999936, + 23.91276996200014 + ], + [ + -11.315530082999942, + 23.95252019999998 + ], + [ + -11.372310074999916, + 24.02778000100011 + ], + [ + -11.625730069999975, + 24.16440001000018 + ], + [ + -12.004909994999934, + 24.283970022000176 + ], + [ + -12.082840018999832, + 24.227790081000137 + ], + [ + -12.05789006799995, + 24.16463006800018 + ], + [ + -11.896479934999888, + 24.151269977000084 + ], + [ + -11.622060053999974, + 24.073480065000183 + ], + [ + -11.50209998199989, + 23.953939977000175 + ] + ] + ], + [ + [ + [ + -12.784719987999893, + 24.18971995400011 + ], + [ + -12.699719945999846, + 24.23361000500006 + ], + [ + -12.711399926999889, + 24.301109966000126 + ], + [ + -12.829169958999955, + 24.404720071000042 + ], + [ + -12.877499936999925, + 24.361940002000097 + ], + [ + -12.784719987999893, + 24.18971995400011 + ] + ] + ], + [ + [ + [ + -11.639709927999888, + 24.45110995700003 + ], + [ + -11.743060051999976, + 24.46554993100017 + ], + [ + -11.82943991399992, + 24.33694006200011 + ], + [ + -11.65021004699986, + 24.306770063999977 + ], + [ + -11.58834008499997, + 24.275279916000045 + ], + [ + -11.370830099999921, + 24.246669982000185 + ], + [ + -11.327219920999937, + 24.290550000000167 + ], + [ + -11.402780011999937, + 24.360279958000035 + ], + [ + -11.573620062999908, + 24.385829960000024 + ], + [ + -11.639709927999888, + 24.45110995700003 + ] + ] + ], + [ + [ + [ + -9.79222002199998, + 25.06778006900015 + ], + [ + -9.890450076999912, + 25.151609930000063 + ], + [ + -9.951740052999924, + 25.10884992800004 + ], + [ + -9.926390008999874, + 25.05417002900009 + ], + [ + -9.769170030999874, + 24.970279969000103 + ], + [ + -9.720830019999937, + 25.010560026000178 + ], + [ + -9.79222002199998, + 25.06778006900015 + ] + ] + ], + [ + [ + [ + -7.555560001999879, + 27.732220182000106 + ], + [ + -7.639779922999878, + 27.797570059000066 + ], + [ + -7.791909931999953, + 27.802350057000126 + ], + [ + -7.881990086999963, + 27.73260003300004 + ], + [ + -7.89239004999996, + 27.671300024000175 + ], + [ + -7.689440084999887, + 27.665549980000094 + ], + [ + -7.555560001999879, + 27.732220182000106 + ] + ] + ], + [ + [ + [ + -7.162739937999902, + 27.94320000300013 + ], + [ + -7.453889988999947, + 27.81872994800017 + ], + [ + -7.45906004699998, + 27.76305007900004 + ], + [ + -7.291799889999879, + 27.768169972000123 + ], + [ + -7.166209995999964, + 27.81319007100018 + ], + [ + -7.070130200999927, + 27.916980069000147 + ], + [ + -7.162739937999902, + 27.94320000300013 + ] + ] + ], + [ + [ + [ + -0.155209917999969, + 28.961959918000048 + ], + [ + -0.139680028999976, + 28.839099917000055 + ], + [ + -0.071449936999954, + 28.815579953000167 + ], + [ + -0.00344004599998, + 28.845310254000083 + ], + [ + 0.125639972000158, + 28.958330034000085 + ], + [ + 0.185649931, + 29.082640087000186 + ], + [ + 0.155229985000176, + 29.14314994300014 + ], + [ + 0.289040011000168, + 29.33004002300015 + ], + [ + 0.212739932000147, + 29.365850053000088 + ], + [ + 0.106020082000043, + 29.191799926000158 + ], + [ + -0.022020009999949, + 29.030740072000015 + ], + [ + -0.136290059999965, + 29.006510220000052 + ], + [ + -0.155209917999969, + 28.961959918000048 + ] + ] + ], + [ + [ + [ + 15.094174853000084, + -19.222932890999914 + ], + [ + 15.128264933000025, + -19.13001352499998 + ], + [ + 15.04036129300016, + -19.129338412999914 + ], + [ + 14.984165381000082, + -19.22068465599989 + ], + [ + 15.094174853000084, + -19.222932890999914 + ] + ] + ], + [ + [ + [ + 17.056862890000048, + -18.669414403999895 + ], + [ + 16.97650526900003, + -18.717581861999975 + ], + [ + 16.913754864000055, + -18.797851640999966 + ], + [ + 16.865797512000086, + -18.762616698999977 + ], + [ + 16.89338743100018, + -18.679661582999927 + ], + [ + 16.829581344000076, + -18.62060818699996 + ], + [ + 16.80493608400019, + -18.495627893999824 + ], + [ + 16.74396906300018, + -18.439460227999973 + ], + [ + 16.623506609, + -18.417808230999924 + ], + [ + 16.522309299000142, + -18.44519993299997 + ], + [ + 16.47597836300008, + -18.502294270999926 + ], + [ + 16.356278886999974, + -18.49543196299993 + ], + [ + 16.226275836000127, + -18.56457187199993 + ], + [ + 15.998576541000148, + -18.655218826999885 + ], + [ + 15.878801731000067, + -18.742808505999903 + ], + [ + 15.834799283000109, + -18.81680664299995 + ], + [ + 15.721469157000172, + -18.830552358999967 + ], + [ + 15.67890608800019, + -18.917855154999813 + ], + [ + 15.600709946000052, + -18.861382078999895 + ], + [ + 15.447016948000055, + -19.005872644999954 + ], + [ + 15.397284917000036, + -19.154457373999946 + ], + [ + 15.343143352000027, + -19.181056947999878 + ], + [ + 15.25225204000003, + -19.068753801999833 + ], + [ + 15.18838827900015, + -19.074620035999885 + ], + [ + 15.182212410000147, + -19.22162541499995 + ], + [ + 15.361195897000073, + -19.2033022949999 + ], + [ + 15.456735803000129, + -19.104676411999947 + ], + [ + 15.561749753000129, + -19.159650830999965 + ], + [ + 15.57943654200011, + -19.110960144999922 + ], + [ + 15.739788315000112, + -19.07207404499991 + ], + [ + 15.916411798000013, + -19.185673622999957 + ], + [ + 16.043593008000073, + -19.24193799999989 + ], + [ + 16.098250962000066, + -19.117052095999952 + ], + [ + 16.190286058000027, + -19.044335390999947 + ], + [ + 16.289955008000106, + -19.06777236199997 + ], + [ + 16.374831034000124, + -19.038353018999942 + ], + [ + 16.41187176300008, + -18.98366236499993 + ], + [ + 16.52957393600019, + -18.93444609099987 + ], + [ + 16.681055451000134, + -18.948348685999974 + ], + [ + 16.732954580000182, + -18.844539727999916 + ], + [ + 16.881825193999987, + -18.860790583999915 + ], + [ + 17.069975488000182, + -18.768346615999974 + ], + [ + 17.145251943000062, + -18.688255364999975 + ], + [ + 17.056862890000048, + -18.669414403999895 + ] + ], + [ + [ + 15.65859795700004, + -18.974261586999944 + ], + [ + 15.665614876000063, + -19.026073708999945 + ], + [ + 15.522261997000157, + -19.020507753999937 + ], + [ + 15.562635206000095, + -18.957682344999967 + ], + [ + 15.65859795700004, + -18.974261586999944 + ] + ] + ], + [ + [ + [ + 15.70849868199997, + -18.529974905999893 + ], + [ + 15.675013760000184, + -18.58387560099993 + ], + [ + 15.719519664000074, + -18.658854452999947 + ], + [ + 15.804044476000172, + -18.634697056999926 + ], + [ + 15.743291953000096, + -18.520434986999874 + ], + [ + 15.70849868199997, + -18.529974905999893 + ] + ] + ], + [ + [ + [ + 8.33091346800012, + 11.24036187500019 + ], + [ + 8.412207535000107, + 11.25651405400015 + ], + [ + 8.514442445999975, + 11.237227881000024 + ], + [ + 8.550169471000117, + 11.1429353260001 + ], + [ + 8.695835046000013, + 11.111927146000028 + ], + [ + 8.762951459000135, + 11.16567291500013 + ], + [ + 8.76194093700019, + 11.283517780000182 + ], + [ + 8.686161491000178, + 11.392465254000058 + ], + [ + 8.482474538000133, + 11.548590439000122 + ], + [ + 8.291165477000163, + 11.540608017000125 + ], + [ + 8.295747528000106, + 11.452486051000108 + ], + [ + 8.18130454300001, + 11.3416756150001 + ], + [ + 8.222751545000108, + 11.242638400000146 + ], + [ + 8.33091346800012, + 11.24036187500019 + ] + ] + ], + [ + [ + [ + 12.979880014, + 14.079060010000148 + ], + [ + 12.986700260000191, + 14.017629922000083 + ], + [ + 13.051559921000035, + 13.874360054000022 + ], + [ + 13.171829964000153, + 13.763620084000024 + ], + [ + 13.354719990000149, + 13.647500064000155 + ], + [ + 13.383890019000034, + 13.419439970000099 + ], + [ + 13.488050011000098, + 13.327499989000103 + ], + [ + 13.585289953000142, + 13.102520068000047 + ], + [ + 13.636879997000108, + 13.053060042000084 + ], + [ + 13.642349993999972, + 12.87373001900005 + ], + [ + 13.678330059000075, + 12.766099970000027 + ], + [ + 13.623639951000087, + 12.609449945000051 + ], + [ + 13.64768005400009, + 12.494010066000044 + ], + [ + 13.734230128000092, + 12.409849991000044 + ], + [ + 14.006449935999967, + 12.387749980000137 + ], + [ + 14.186049972000035, + 12.358909988999983 + ], + [ + 14.313799984000127, + 12.430359838000129 + ], + [ + 14.341739985, + 12.550269920000062 + ], + [ + 14.456130257000098, + 12.660869954000077 + ], + [ + 14.522219946000178, + 12.778330014000119 + ], + [ + 14.66244994900012, + 12.71303998400009 + ], + [ + 14.607689961, + 12.579470048000076 + ], + [ + 14.59333007600003, + 12.373609944000066 + ], + [ + 14.73193999200015, + 12.306670079000071 + ], + [ + 14.68277990300004, + 12.276110020000033 + ], + [ + 14.493329965000157, + 12.384719973000188 + ], + [ + 14.552780005000159, + 12.232219970000187 + ], + [ + 14.615830005000134, + 12.176389781000069 + ], + [ + 14.79582995900006, + 12.105280001999972 + ], + [ + 14.916669954000099, + 12.030549845 + ], + [ + 14.968889974000149, + 12.090000061000069 + ], + [ + 14.888689997000029, + 12.157809817000043 + ], + [ + 14.902219947000049, + 12.378890015000081 + ], + [ + 14.87000002000002, + 12.4497199220001 + ], + [ + 14.813049992000117, + 12.686109985000087 + ], + [ + 14.832219975000044, + 12.708899994000035 + ], + [ + 14.787499990000128, + 12.890000073000124 + ], + [ + 14.936109952000095, + 12.891669974000024 + ], + [ + 15.054999998000142, + 12.948890017000167 + ], + [ + 15.141390070000057, + 12.931110064000109 + ], + [ + 15.200280014000043, + 12.966389922000133 + ], + [ + 15.212500024000065, + 13.066670082000144 + ], + [ + 15.274719914000059, + 13.04556000700012 + ], + [ + 15.32750002900002, + 13.086669998000104 + ], + [ + 15.280550047000077, + 13.18972018400018 + ], + [ + 15.334169954000117, + 13.296939930000065 + ], + [ + 15.283609978000072, + 13.344169960000102 + ], + [ + 15.281109967000077, + 13.427220053000156 + ], + [ + 15.15416999900009, + 13.408890037000162 + ], + [ + 14.975560075000033, + 13.447780065000075 + ], + [ + 14.841939973000137, + 13.543049992000078 + ], + [ + 14.742219910000188, + 13.54861011100013 + ], + [ + 14.661110085000075, + 13.505279979000022 + ], + [ + 14.483609966000131, + 13.54583005100011 + ], + [ + 14.365550030000179, + 13.500000085000124 + ], + [ + 14.256940078000184, + 13.537220035000075 + ], + [ + 14.20111006500008, + 13.522500189000027 + ], + [ + 14.09971992400017, + 13.629440064000107 + ], + [ + 14.14278021600012, + 13.746109970000191 + ], + [ + 14.187780073000113, + 13.796390074000158 + ], + [ + 14.16027994500007, + 13.884999933000131 + ], + [ + 14.17805004100012, + 13.972499987 + ], + [ + 14.246670017000156, + 14.01861000100007 + ], + [ + 14.22110998100004, + 14.084440061000066 + ], + [ + 14.12443999200002, + 14.124719942000127 + ], + [ + 14.042779929000062, + 14.258330010000066 + ], + [ + 13.884440111000174, + 14.230279996000036 + ], + [ + 13.882780067000112, + 14.305000120000102 + ], + [ + 13.836099924000052, + 14.339689959000054 + ], + [ + 13.704169966000165, + 14.364830011000038 + ], + [ + 13.613250021, + 14.430249944000082 + ], + [ + 13.443720086000155, + 14.450840055000072 + ], + [ + 13.34817996900017, + 14.43114007600019 + ], + [ + 13.210380097000098, + 14.364589919000082 + ], + [ + 13.02291003199997, + 14.188939946000062 + ], + [ + 12.979880014, + 14.079060010000148 + ] + ] + ], + [ + [ + [ + 1.041390010000043, + 25.942510062000053 + ], + [ + 1.009779993, + 26.06215998700003 + ], + [ + 0.889970066000103, + 26.136550073000024 + ], + [ + 0.822059978000027, + 26.247049952000168 + ], + [ + 0.669630032000043, + 26.194970044000115 + ], + [ + 0.551059990000169, + 26.087179993000177 + ], + [ + 0.706650023, + 26.093360054000186 + ], + [ + 0.74348977, + 25.973580051000113 + ], + [ + 0.835759965000136, + 25.79447005300011 + ], + [ + 0.924829940000166, + 25.667200048000097 + ], + [ + 1.002670018000174, + 25.650140017000126 + ], + [ + 1.076410063000083, + 25.712560042000064 + ], + [ + 1.096389913000166, + 25.86249983400006 + ], + [ + 1.041390010000043, + 25.942510062000053 + ] + ] + ], + [ + [ + [ + 0.975359816000037, + 26.31630993600004 + ], + [ + 1.05197989900006, + 26.29187977300012 + ], + [ + 1.305849977000094, + 26.264979874000062 + ], + [ + 1.411009938000063, + 26.221649919000072 + ], + [ + 1.470640046000028, + 26.151370074000056 + ], + [ + 1.490589796999984, + 25.968480048000117 + ], + [ + 1.525539970000125, + 25.981980076000127 + ], + [ + 1.558930077000184, + 26.101260006000132 + ], + [ + 1.573869948000038, + 26.406609939000077 + ], + [ + 1.517399926000053, + 26.462690077000104 + ], + [ + 1.449059822000095, + 26.441760071000147 + ], + [ + 0.9919099170001, + 26.394890002000125 + ], + [ + 0.975359816000037, + 26.31630993600004 + ] + ] + ], + [ + [ + [ + 19.42146007600013, + 29.153609930000073 + ], + [ + 19.553490013000157, + 29.1182100260001 + ], + [ + 19.633629967000047, + 29.212479984000026 + ], + [ + 19.518010020000077, + 29.302569995000113 + ], + [ + 19.132999962000156, + 29.307050231000062 + ], + [ + 19.05840023600001, + 29.25148002400016 + ], + [ + 19.11748010600013, + 29.19864991900016 + ], + [ + 19.242180043000133, + 29.163620009000056 + ], + [ + 19.42146007600013, + 29.153609930000073 + ] + ] + ], + [ + [ + [ + 18.798610079000127, + 30.201170056000024 + ], + [ + 18.809559928999988, + 30.150249944000052 + ], + [ + 19.044910066000114, + 30.04552 + ], + [ + 19.086729946000162, + 29.950739936 + ], + [ + 19.1666299850001, + 29.920999955000184 + ], + [ + 19.337179956, + 29.90850007300014 + ], + [ + 19.357850155999984, + 29.94340008000006 + ], + [ + 19.21394996100014, + 30.021029990000045 + ], + [ + 19.32995996900013, + 30.091289944000096 + ], + [ + 19.15500017000005, + 30.120800043000088 + ], + [ + 18.914889925000068, + 30.21118999300012 + ], + [ + 18.798610079000127, + 30.201170056000024 + ] + ] + ], + [ + [ + [ + 11.72977252600009, + 33.08821178500017 + ], + [ + 11.53233947900003, + 33.16757047100003 + ], + [ + 11.361008517000073, + 33.121650885000065 + ], + [ + 11.32228378900004, + 33.06750706000008 + ], + [ + 11.343898198000034, + 33.04933240100007 + ], + [ + 11.336265079000043, + 33.01176877300014 + ], + [ + 11.438834948000078, + 32.987960987000065 + ], + [ + 11.397418913000024, + 32.770762322999985 + ], + [ + 11.434610055, + 32.71726001300004 + ], + [ + 11.66444797600002, + 32.770841406000045 + ], + [ + 11.587155450000068, + 32.781047220000175 + ], + [ + 11.570538099000146, + 32.88288919400014 + ], + [ + 11.601115509000067, + 32.944924430000185 + ], + [ + 11.601120191000064, + 33.00439171900007 + ], + [ + 11.65415993500011, + 32.97564007400018 + ], + [ + 11.754377332, + 33.01433959600013 + ], + [ + 11.72977252600009, + 33.08821178500017 + ] + ] + ], + [ + [ + [ + 6.00707010900004, + 33.35061998600008 + ], + [ + 5.902300032000028, + 33.28350005200019 + ], + [ + 5.910979929000121, + 33.124219760000074 + ], + [ + 6.056820040000105, + 33.13614000900003 + ], + [ + 6.087520035000125, + 33.182589918000076 + ], + [ + 6.066929923000032, + 33.30909001100002 + ], + [ + 6.00707010900004, + 33.35061998600008 + ] + ] + ], + [ + [ + [ + 6.015560080000057, + 33.65082996100017 + ], + [ + 5.912550027000179, + 33.64012002600015 + ], + [ + 5.89106995800006, + 33.48498975600006 + ], + [ + 5.938790027000039, + 33.42553003600011 + ], + [ + 6.02306997200003, + 33.540239784000164 + ], + [ + 6.015560080000057, + 33.65082996100017 + ] + ] + ], + [ + [ + [ + 9.65771592800013, + 34.04841548200011 + ], + [ + 9.523550009000076, + 33.99188008800019 + ], + [ + 9.398150040000075, + 33.96728006500007 + ], + [ + 9.159190085999967, + 33.9621497870001 + ], + [ + 8.95061997900001, + 34.029419866000126 + ], + [ + 8.722049955000045, + 34.04441007800017 + ], + [ + 8.532539994000103, + 34.07353997500013 + ], + [ + 8.337980020000032, + 34.056159939000054 + ], + [ + 8.177160081000125, + 33.99433996700009 + ], + [ + 8.100939915000083, + 33.91273992600014 + ], + [ + 7.791549795000094, + 33.90470003800016 + ], + [ + 7.699379932000113, + 33.84930004200004 + ], + [ + 7.719760052000026, + 33.757389984000156 + ], + [ + 7.82960003200003, + 33.65658000500002 + ], + [ + 8.109879793000061, + 33.562310047000096 + ], + [ + 8.266889780000042, + 33.392270007000036 + ], + [ + 8.513349945000073, + 33.338100038000164 + ], + [ + 8.6088300400001, + 33.34076005200018 + ], + [ + 8.675309965000054, + 33.38877002600009 + ], + [ + 8.750569942000027, + 33.38337994200015 + ], + [ + 8.885000087000037, + 33.424489934000064 + ], + [ + 8.934700029000169, + 33.472110023000084 + ], + [ + 9.032369988000141, + 33.49056994100016 + ], + [ + 9.100600080000106, + 33.56907977500015 + ], + [ + 9.068920006000042, + 33.63775995000009 + ], + [ + 9.000479923000057, + 33.66614000100003 + ], + [ + 8.92538998100008, + 33.74907004800008 + ], + [ + 8.999550009000018, + 33.79426986400017 + ], + [ + 9.193189927, + 33.784810023000034 + ], + [ + 9.359449938000068, + 33.823819920000176 + ], + [ + 9.3911400450001, + 33.86900002100015 + ], + [ + 9.825890001000062, + 33.95554006100019 + ], + [ + 9.83708997600013, + 34.00325995400016 + ], + [ + 9.662645545000089, + 34.04955901700015 + ], + [ + 9.65771592800013, + 34.04841548200011 + ] + ] + ], + [ + [ + [ + 8.064850013000012, + 34.19664006700003 + ], + [ + 7.865290016000017, + 34.22608996700012 + ], + [ + 7.697550029000126, + 34.21061992400007 + ], + [ + 7.451389977000076, + 34.165519912000036 + ], + [ + 7.19925000000012, + 34.15260990399997 + ], + [ + 7.088250049000123, + 34.16560000200013 + ], + [ + 7.015730174000055, + 34.20604991800013 + ], + [ + 6.9123399180001, + 34.41189998900006 + ], + [ + 6.764949951000119, + 34.46785004700001 + ], + [ + 6.564589943000101, + 34.520480017000125 + ], + [ + 6.473699921000048, + 34.561450073000174 + ], + [ + 6.302139948000104, + 34.585940083000025 + ], + [ + 6.122929971000076, + 34.65930995800005 + ], + [ + 5.980900164000047, + 34.63049989000018 + ], + [ + 5.946369975000152, + 34.56958008300012 + ], + [ + 5.957130076000055, + 34.38780003900018 + ], + [ + 5.838919995000026, + 34.23301001600004 + ], + [ + 5.830920063000178, + 34.162260023000044 + ], + [ + 5.901940071000183, + 33.95097005500003 + ], + [ + 5.958780087000093, + 33.85402001700004 + ], + [ + 6.229590150000149, + 33.810549950000166 + ], + [ + 6.321569912000143, + 33.84713006800007 + ], + [ + 6.465990070000146, + 33.84377002300016 + ], + [ + 6.67606004400011, + 33.89686996600011 + ], + [ + 6.733470012000055, + 33.81604001300013 + ], + [ + 6.925020221000068, + 33.80720997200007 + ], + [ + 7.015289948000088, + 33.84398001500011 + ], + [ + 7.117310065000083, + 33.992099937000035 + ], + [ + 7.197379964000106, + 34.00342998999997 + ], + [ + 7.562750066000035, + 34.00570997600016 + ], + [ + 7.884319887000117, + 33.94642997200003 + ], + [ + 8.022470038000108, + 33.958269955000105 + ], + [ + 8.117670084999986, + 34.00986985600008 + ], + [ + 8.134509915000137, + 34.071870073000184 + ], + [ + 8.106190063000156, + 34.1828599910001 + ], + [ + 8.064850013000012, + 34.19664006700003 + ] + ] + ], + [ + [ + [ + 10.60052849699997, + 35.5007579980001 + ], + [ + 10.561943581000094, + 35.516581906000056 + ], + [ + 10.409119526000097, + 35.687861907000126 + ], + [ + 10.268998347000093, + 35.62373731400015 + ], + [ + 10.305930071000148, + 35.51256005800019 + ], + [ + 10.47661980099997, + 35.42284004100003 + ], + [ + 10.53943991900013, + 35.41944003900005 + ], + [ + 10.60052849699997, + 35.5007579980001 + ] + ] + ], + [ + [ + [ + 10.119127860000049, + 35.86655903500008 + ], + [ + 10.146909936000156, + 35.79929007100009 + ], + [ + 10.290350015000172, + 35.84050004200003 + ], + [ + 10.331334918000096, + 35.90227971100012 + ], + [ + 10.27386159200006, + 35.96212448500012 + ], + [ + 10.170815480000158, + 35.928327142000114 + ], + [ + 10.119127860000049, + 35.86655903500008 + ] + ] + ], + [ + [ + [ + 23.45746281200013, + -20.08133990799996 + ], + [ + 23.477108087000147, + -19.97205237599985 + ], + [ + 23.676031694000073, + -19.76143488799994 + ], + [ + 23.559275777000096, + -19.720942942999955 + ], + [ + 23.654656191000072, + -19.6136057949999 + ], + [ + 23.695370730000036, + -19.499265441999967 + ], + [ + 23.68849303400009, + -19.42964074199989 + ], + [ + 23.59461360400013, + -19.40800548399983 + ], + [ + 23.462632405000022, + -19.32615857899998 + ], + [ + 23.428192487000103, + -19.280792110999926 + ], + [ + 23.485817161000057, + -19.218974095999954 + ], + [ + 23.70034459400017, + -19.210140279999905 + ], + [ + 23.7516764880001, + -19.16754071099996 + ], + [ + 23.446429823000074, + -19.056296088999886 + ], + [ + 23.337626417000024, + -19.053721958999972 + ], + [ + 23.212892802000056, + -19.099827523999977 + ], + [ + 23.192872636, + -19.04100622099992 + ], + [ + 22.970755393000047, + -18.976833840999973 + ], + [ + 22.804035165000073, + -18.96929231899992 + ], + [ + 22.87586359300019, + -18.869825076999916 + ], + [ + 22.94453343900011, + -18.817116973999873 + ], + [ + 23.166073108000035, + -18.749813908999897 + ], + [ + 23.316605030000176, + -18.618840755999884 + ], + [ + 23.449451241000133, + -18.608462619999898 + ], + [ + 23.50357496300012, + -18.64615278699989 + ], + [ + 23.730342689000054, + -18.616912880999905 + ], + [ + 23.819886975000145, + -18.564157331999922 + ], + [ + 23.892421219000028, + -18.572767942999974 + ], + [ + 24.052567352000096, + -18.63950796299997 + ], + [ + 24.063983066000162, + -18.612728805999836 + ], + [ + 23.911929843, + -18.54913880599986 + ], + [ + 23.818925621000176, + -18.532480271999873 + ], + [ + 23.715049840000063, + -18.587536500999875 + ], + [ + 23.562784866000072, + -18.570380734999958 + ], + [ + 23.725054, + -18.42955748299994 + ], + [ + 23.86413592300005, + -18.33104708899998 + ], + [ + 23.94548136500015, + -18.22890397499998 + ], + [ + 24.211572298000192, + -18.03725939599991 + ], + [ + 24.293776024000067, + -18.098576027999968 + ], + [ + 24.26871438400019, + -18.155811503999928 + ], + [ + 24.33913970800006, + -18.203155703999983 + ], + [ + 24.443441713000084, + -18.17176010399993 + ], + [ + 24.554903269000135, + -18.109175552999943 + ], + [ + 24.661975368000185, + -17.96100697199995 + ], + [ + 24.725241584000116, + -17.9050069729999 + ], + [ + 24.907602335000036, + -17.823024338999915 + ], + [ + 25.0795143470001, + -17.85907412699993 + ], + [ + 25.191666667000106, + -17.76782037499987 + ], + [ + 25.16916666700007, + -17.704166666999868 + ], + [ + 25.23666666700018, + -17.6 + ], + [ + 25.183333333, + -17.540833333999956 + ], + [ + 25.08, + -17.4975 + ], + [ + 25.034166667000022, + -17.5675 + ], + [ + 24.98416666600008, + -17.47833333299991 + ], + [ + 25.093333333000032, + -17.44833333299988 + ], + [ + 25.130833333000055, + -17.329166666999924 + ], + [ + 25.19000000000017, + -17.230833333999954 + ], + [ + 24.973333334000074, + -17.327499999999873 + ], + [ + 24.915930487000082, + -17.39333333299993 + ], + [ + 24.850833333000026, + -17.52873036699998 + ], + [ + 24.78718344600003, + -17.515833332999932 + ], + [ + 24.650833334000026, + -17.435833332999948 + ], + [ + 24.581666666000046, + -17.420833332999962 + ], + [ + 24.544166667000127, + -17.4783333339999 + ], + [ + 24.389153703000147, + -17.468679660999896 + ], + [ + 24.459143246000053, + -17.641630957999894 + ], + [ + 24.508398963000104, + -17.71470883199993 + ], + [ + 24.452237437000065, + -17.818012155999895 + ], + [ + 24.351653171000066, + -17.79297489999982 + ], + [ + 24.222644920000107, + -17.82898410699994 + ], + [ + 24.15085326700006, + -17.979351557999962 + ], + [ + 24.01284096800009, + -18.095525994999946 + ], + [ + 23.93008397400007, + -18.19635110199988 + ], + [ + 23.805548488000113, + -18.298451674999967 + ], + [ + 23.671616738000182, + -18.258142142999873 + ], + [ + 23.46267564100009, + -18.204075446999923 + ], + [ + 23.38793800000019, + -18.163447759999883 + ], + [ + 23.318412790000025, + -17.97998667899992 + ], + [ + 23.339562698000066, + -17.88357084499995 + ], + [ + 23.427842319999968, + -17.70348295599996 + ], + [ + 23.36906659000016, + -17.70347796599998 + ], + [ + 23.302320470000097, + -17.887664127999926 + ], + [ + 23.252422898000134, + -17.972146712999972 + ], + [ + 23.32821020400013, + -18.14028915499989 + ], + [ + 23.4795419350001, + -18.425360820999913 + ], + [ + 23.457523102000152, + -18.509535679999942 + ], + [ + 23.37530185600008, + -18.522571260999882 + ], + [ + 23.16558555300014, + -18.70510073099996 + ], + [ + 23.061965969000028, + -18.69930486499993 + ], + [ + 22.939320810000027, + -18.60213639999995 + ], + [ + 22.78337987900005, + -18.70888257699994 + ], + [ + 22.688054427000168, + -18.81370490699993 + ], + [ + 22.509445957000082, + -18.88568567699997 + ], + [ + 22.39983627600003, + -18.752986052999916 + ], + [ + 22.2468627, + -18.658270767999966 + ], + [ + 22.158064675000105, + -18.530922054999905 + ], + [ + 22.007498710000107, + -18.384610109999983 + ], + [ + 21.854171525000027, + -18.28599707999996 + ], + [ + 21.894386003000136, + -18.404320499999926 + ], + [ + 21.977546524000047, + -18.459792211999968 + ], + [ + 22.156238140000085, + -18.697255688999917 + ], + [ + 22.10975589100019, + -18.778998541999954 + ], + [ + 22.18570551199997, + -18.890782270999864 + ], + [ + 22.23552593100004, + -19.033769277999966 + ], + [ + 22.21313368200009, + -19.209792968999864 + ], + [ + 22.110876428000097, + -19.348671940999964 + ], + [ + 22.066696678000028, + -19.494787773999917 + ], + [ + 22.09401253200008, + -19.663337555999874 + ], + [ + 22.157964911000022, + -19.80924004799988 + ], + [ + 22.160650224000108, + -19.86295444299998 + ], + [ + 22.28553227599997, + -19.89902733799994 + ], + [ + 22.33539995900003, + -20.003510050999864 + ], + [ + 22.38618953800011, + -19.94302051699998 + ], + [ + 22.529000542000063, + -19.94008103599998 + ], + [ + 22.64970774400018, + -19.95837660299992 + ], + [ + 22.78390798000015, + -20.013302782999915 + ], + [ + 22.888567020000096, + -20.128458965999982 + ], + [ + 22.935055128000045, + -20.245711855999957 + ], + [ + 22.90851126800004, + -20.296524612999917 + ], + [ + 22.976662198000042, + -20.34813747599992 + ], + [ + 23.16152812200005, + -20.31976928599994 + ], + [ + 23.233083164000107, + -20.238583803999916 + ], + [ + 23.341759060000072, + -20.162875571999905 + ], + [ + 23.600329951000163, + -20.18619989799987 + ], + [ + 23.695244141000103, + -20.22729834199987 + ], + [ + 23.81560632900016, + -20.234092457999907 + ], + [ + 23.868820462000144, + -20.33295061699988 + ], + [ + 23.992648916000064, + -20.35093480499995 + ], + [ + 24.148603755000124, + -20.261364019999974 + ], + [ + 24.18217875199997, + -20.32093556999996 + ], + [ + 24.246812651000027, + -20.33112272699998 + ], + [ + 24.390977347000046, + -20.422377102999917 + ], + [ + 24.46970693700007, + -20.393585970999823 + ], + [ + 24.495639595000057, + -20.45951621099988 + ], + [ + 24.382418851000125, + -20.697041327999898 + ], + [ + 24.336420479000026, + -21.00147877099988 + ], + [ + 24.39905119700012, + -21.138728632999914 + ], + [ + 24.508611026000153, + -21.299501471999918 + ], + [ + 24.54024296700004, + -21.39342442399993 + ], + [ + 24.662784210000098, + -21.347725643999865 + ], + [ + 24.82909626200012, + -21.216110375999904 + ], + [ + 24.990312069000083, + -21.205239769999935 + ], + [ + 25.123720175000187, + -21.038891311999976 + ], + [ + 25.169151669000087, + -21.029085402999954 + ], + [ + 25.27424050000019, + -21.078451807999897 + ], + [ + 25.276481157000035, + -21.128484913999955 + ], + [ + 25.469069032000107, + -21.163001195999982 + ], + [ + 25.642132627000137, + -21.131878656999902 + ], + [ + 25.819814069000074, + -21.140884101999916 + ], + [ + 25.835755978000122, + -21.172920593999947 + ], + [ + 26.025986788000125, + -21.230631080999842 + ], + [ + 26.27253722500018, + -21.231961906999913 + ], + [ + 26.305417004000105, + -21.28964677299996 + ], + [ + 26.415243556000064, + -21.14247803099994 + ], + [ + 26.405765520999978, + -21.058773458999838 + ], + [ + 26.316745210000192, + -20.98153909599995 + ], + [ + 26.255455940000047, + -20.96494227599993 + ], + [ + 26.19702727300006, + -20.778172063999932 + ], + [ + 26.208639988000186, + -20.64699595299993 + ], + [ + 26.343286123000155, + -20.411969641999974 + ], + [ + 26.350672483000096, + -20.315141586999914 + ], + [ + 26.249808392000148, + -20.268152233999842 + ], + [ + 26.14619581500017, + -20.31338099499993 + ], + [ + 26.07285576600009, + -20.295834194999884 + ], + [ + 26.05854245300003, + -20.21228222099984 + ], + [ + 25.9282285270001, + -20.29978747399997 + ], + [ + 25.668832165000026, + -20.234741047999933 + ], + [ + 25.495535349000136, + -20.287544315999924 + ], + [ + 25.370442202000106, + -20.410407904999886 + ], + [ + 25.361081455000146, + -20.471569901999885 + ], + [ + 25.284381598000095, + -20.540181238999935 + ], + [ + 25.137232494000102, + -20.54790934899995 + ], + [ + 25.09901738500014, + -20.492925200999878 + ], + [ + 25.03156608800009, + -20.547519263999902 + ], + [ + 24.886663247, + -20.57806635599991 + ], + [ + 24.840439366, + -20.654862853999873 + ], + [ + 24.711668476000057, + -20.710133408999923 + ], + [ + 24.579912434, + -20.73214470499994 + ], + [ + 24.528445310000052, + -20.806879469999956 + ], + [ + 24.529309952, + -20.886953681999955 + ], + [ + 24.58988821500003, + -20.949534410999888 + ], + [ + 24.38653468500013, + -20.952293973999872 + ], + [ + 24.381808132000117, + -20.841035096999974 + ], + [ + 24.43241522600016, + -20.643070040999874 + ], + [ + 24.54020196900018, + -20.450233012999888 + ], + [ + 24.507278386, + -20.34254801399993 + ], + [ + 24.406964912999968, + -20.35531163199994 + ], + [ + 24.299047326000164, + -20.265180713999825 + ], + [ + 24.30132578900009, + -20.222926703999917 + ], + [ + 24.18413394400011, + -20.1679087039999 + ], + [ + 24.042463849, + -20.203354782999952 + ], + [ + 23.95412484300016, + -20.278227600999912 + ], + [ + 23.922983425000098, + -20.208079880999946 + ], + [ + 23.839816738000025, + -20.134577547999868 + ], + [ + 23.682589066000105, + -20.136743748999947 + ], + [ + 23.63365119399998, + -20.09255587699994 + ], + [ + 23.45746281200013, + -20.08133990799996 + ] + ], + [ + [ + 23.260683047000157, + -19.974063382999873 + ], + [ + 23.38497918300004, + -19.905329219999885 + ], + [ + 23.478437082000085, + -19.929255282999975 + ], + [ + 23.30413333100006, + -20.15191292199995 + ], + [ + 23.10621383600011, + -20.306626257999937 + ], + [ + 23.106495189000043, + -20.19891386199987 + ], + [ + 23.235816964000037, + -20.051965209999935 + ], + [ + 23.135602438999967, + -19.864301839999882 + ], + [ + 23.267560424000123, + -19.89802660099997 + ], + [ + 23.260683047000157, + -19.974063382999873 + ] + ], + [ + [ + 23.179488982000066, + -19.363335053999947 + ], + [ + 23.241314095000178, + -19.431028946999902 + ], + [ + 23.221160276000035, + -19.52919340899996 + ], + [ + 22.949335877000067, + -19.314334692999978 + ], + [ + 23.02794242800013, + -19.244443822999926 + ], + [ + 23.179488982000066, + -19.363335053999947 + ] + ], + [ + [ + 23.147975119000023, + -20.08808457599997 + ], + [ + 23.105119316000128, + -20.044403444999887 + ], + [ + 23.140775171000087, + -19.94019395299989 + ], + [ + 23.200836464000133, + -20.052404291999892 + ], + [ + 23.147975119000023, + -20.08808457599997 + ] + ], + [ + [ + 24.613610999000173, + -17.875132476999966 + ], + [ + 24.62326623600012, + -17.98101068099993 + ], + [ + 24.45807721500006, + -17.912273032999906 + ], + [ + 24.442285868000056, + -17.848261652999952 + ], + [ + 24.59403633600016, + -17.688697280999975 + ], + [ + 24.683599046000154, + -17.788231247999875 + ], + [ + 24.704684577000137, + -17.887959677999845 + ], + [ + 24.613610999000173, + -17.875132476999966 + ] + ] + ], + [ + [ + [ + 23.612500000000182, + -16.7291666669999 + ], + [ + 23.529166666000094, + -16.72166666699985 + ], + [ + 23.5208333330001, + -16.79166666699996 + ], + [ + 23.59500000000014, + -16.90416666699997 + ], + [ + 23.665000000000134, + -17.101666665999915 + ], + [ + 23.78583333299997, + -17.169166666999956 + ], + [ + 23.815833333000114, + -17.28 + ], + [ + 23.944166667000104, + -17.31999999999988 + ], + [ + 23.93083333300018, + -17.18416666599984 + ], + [ + 23.8325, + -17.07333333299988 + ], + [ + 23.76083333300005, + -16.8925 + ], + [ + 23.65916666700008, + -16.827499999999873 + ], + [ + 23.612500000000182, + -16.7291666669999 + ] + ] + ], + [ + [ + [ + 28.21583333400008, + -15.7375 + ], + [ + 28.08833333299998, + -15.7475 + ], + [ + 28.02583333400014, + -15.667499999999848 + ], + [ + 28.062500000000114, + -15.574999999999875 + ], + [ + 27.97666666700019, + -15.56833333399993 + ], + [ + 27.87583333300006, + -15.493333332999839 + ], + [ + 27.694166667000047, + -15.51 + ], + [ + 27.6333333340001, + -15.444166666999877 + ], + [ + 27.510000000000105, + -15.395833333999974 + ], + [ + 27.435, + -15.41583333299991 + ], + [ + 27.383333333000053, + -15.365 + ], + [ + 27.0875, + -15.41 + ], + [ + 26.910833334000074, + -15.4125 + ], + [ + 26.76666666699998, + -15.448740818999909 + ], + [ + 26.74833333300012, + -15.559999999999832 + ], + [ + 26.66083333400013, + -15.550833333999947 + ], + [ + 26.5925, + -15.634166666999874 + ], + [ + 26.125000000000114, + -15.774999999999864 + ], + [ + 26.01916666600016, + -15.74166666699989 + ], + [ + 26.05833333300012, + -15.58416666699992 + ], + [ + 26.024166666000156, + -15.538333332999912 + ], + [ + 25.924166667000122, + -15.74583333299995 + ], + [ + 25.852500000000134, + -15.78166666699991 + ], + [ + 25.820000000000107, + -15.843333332999975 + ], + [ + 25.905833334000135, + -15.879166666999936 + ], + [ + 25.992500000000177, + -15.840833332999921 + ], + [ + 26.05583333300001, + -15.9 + ], + [ + 26.13416666700016, + -15.916666666999959 + ], + [ + 26.31750000000011, + -15.795 + ], + [ + 26.438333333000116, + -15.745 + ], + [ + 26.56166666700011, + -15.7475 + ], + [ + 26.630833333000112, + -15.772647857999914 + ], + [ + 26.746666667000056, + -15.68249999999989 + ], + [ + 26.866666667000118, + -15.73833333399989 + ], + [ + 26.871666667000113, + -15.81666666599989 + ], + [ + 26.936666667000168, + -15.877499999999884 + ], + [ + 27.034166667000193, + -15.8175 + ], + [ + 27.098333334000074, + -15.8175 + ], + [ + 27.11583333300007, + -15.89 + ], + [ + 27.200833334000095, + -15.855 + ], + [ + 27.3325, + -15.90083333399997 + ], + [ + 27.43916666700011, + -15.88249999999988 + ], + [ + 27.60083333299997, + -15.7725 + ], + [ + 27.62833333300017, + -15.8175 + ], + [ + 27.848333333000028, + -15.774999999999864 + ], + [ + 28.033333333000144, + -15.753333332999944 + ], + [ + 28.122500000000173, + -15.776666665999926 + ], + [ + 28.21583333400008, + -15.7375 + ] + ] + ], + [ + [ + [ + 28.330833333000044, + -15.4075 + ], + [ + 28.214166667000086, + -15.365833333999944 + ], + [ + 28.171666667000125, + -15.461666665999928 + ], + [ + 28.297500000000127, + -15.47166666599992 + ], + [ + 28.330833333000044, + -15.4075 + ] + ] + ], + [ + [ + [ + 27.80416666600007, + -14.750833332999946 + ], + [ + 28.04, + -14.57666666699987 + ], + [ + 28.004166666000117, + -14.4775 + ], + [ + 28.03833333300014, + -14.319166666999934 + ], + [ + 28.03166666600015, + -14.254166666999936 + ], + [ + 27.90583333400008, + -14.228333332999966 + ], + [ + 27.875833334000163, + -14.08666666699986 + ], + [ + 27.95083333400015, + -13.975833332999912 + ], + [ + 27.917500000000132, + -13.903333332999978 + ], + [ + 27.790000000000134, + -13.861666666999952 + ], + [ + 27.804166667000175, + -13.930833332999839 + ], + [ + 27.52333333399997, + -14.019166666999922 + ], + [ + 27.435833333000176, + -14.07666666699987 + ], + [ + 27.34020633400013, + -14.086012621999942 + ], + [ + 27.276666667000086, + -14.208333332999814 + ], + [ + 27.079166667000095, + -14.385833332999937 + ], + [ + 27.18416666700017, + -14.3975 + ], + [ + 27.3275, + -14.46 + ], + [ + 27.375, + -14.545833333999894 + ], + [ + 27.481666667000127, + -14.486666666999895 + ], + [ + 27.560833333000062, + -14.569166666999877 + ], + [ + 27.803333333000126, + -14.655833332999919 + ], + [ + 27.80416666600007, + -14.750833332999946 + ] + ] + ], + [ + [ + [ + 22.972473829000137, + -13.059999999999889 + ], + [ + 22.918333333000135, + -13.115833332999955 + ], + [ + 22.775, + -13.124999999999886 + ], + [ + 22.7650000000001, + -13.204166666999981 + ], + [ + 22.65, + -13.240833332999955 + ], + [ + 22.620833333000064, + -13.178333332999898 + ], + [ + 22.654166667000084, + -13.04 + ], + [ + 22.707521146000147, + -13.00166671999989 + ], + [ + 22.705429498000115, + -12.860009850999916 + ], + [ + 22.67078055400009, + -12.755706956999916 + ], + [ + 22.52876280700019, + -12.510996740999872 + ], + [ + 22.59791861500014, + -12.39524643899989 + ], + [ + 22.58090659800007, + -12.278159753999887 + ], + [ + 22.751642908, + -12.12864968699995 + ], + [ + 22.746990246000166, + -11.994550267999955 + ], + [ + 23.04527087200006, + -11.774914407999972 + ], + [ + 23.08322882200008, + -11.708169173999977 + ], + [ + 23.061641583000153, + -11.636626343999922 + ], + [ + 23.132965653000156, + -11.583439191999958 + ], + [ + 23.12850564900009, + -11.527028939999923 + ], + [ + 23.055440973000145, + -11.51426654599993 + ], + [ + 22.809095077, + -11.563330161999943 + ], + [ + 22.686387508000166, + -11.571171534999905 + ], + [ + 22.598827126000117, + -11.611616365999964 + ], + [ + 22.544748773000038, + -11.565483473999961 + ], + [ + 22.561058556999967, + -11.505916903999946 + ], + [ + 22.761429096000086, + -11.424284384999908 + ], + [ + 22.84983921500003, + -11.423562912999898 + ], + [ + 22.82922512199997, + -11.294917325999904 + ], + [ + 22.937611610000147, + -11.15769342699997 + ], + [ + 22.901609781000047, + -11.079907 + ], + [ + 22.73654472400011, + -11.081358971999975 + ], + [ + 22.650900245000173, + -11.042412144999957 + ], + [ + 22.537418538000054, + -10.902720096999929 + ], + [ + 22.45347952300017, + -10.952601952999885 + ], + [ + 22.50024361100003, + -11.065281302999836 + ], + [ + 22.288088086000073, + -11.210284153999908 + ], + [ + 22.120359129000178, + -11.173602060999883 + ], + [ + 22.084418001000188, + -11.07437994299994 + ], + [ + 22.00146783000008, + -11.05207495299993 + ], + [ + 21.94181670300003, + -11.133726975999934 + ], + [ + 21.76428625400007, + -11.027999955999974 + ], + [ + 21.685723940000173, + -11.085022153999944 + ], + [ + 21.589270244000033, + -11.049200605999886 + ], + [ + 21.468549780000046, + -10.964964387999942 + ], + [ + 21.33869510300019, + -10.951307045999954 + ], + [ + 21.218976670000075, + -11.188393945999962 + ], + [ + 21.103993727000045, + -11.182847264999964 + ], + [ + 21.0319475660001, + -11.114942471999939 + ], + [ + 20.75299613900006, + -11.134959340999956 + ], + [ + 20.66228911200011, + -11.221990782999967 + ], + [ + 20.674322171000142, + -11.317822949999936 + ], + [ + 20.77922310600013, + -11.47091616199998 + ], + [ + 20.76800889200007, + -11.570013754999877 + ], + [ + 20.910851958000137, + -11.728666956999973 + ], + [ + 20.6743180900001, + -11.905136371999902 + ], + [ + 20.655697053000097, + -12.03132737199985 + ], + [ + 20.66881627000015, + -12.195403400999908 + ], + [ + 20.720024959000114, + -12.290504419999877 + ], + [ + 20.730660494000176, + -12.475242721999905 + ], + [ + 20.860213568, + -12.575956737999888 + ], + [ + 20.992062675000057, + -12.762135452999814 + ], + [ + 21.24273657200007, + -12.928032453999947 + ], + [ + 21.32562342199998, + -13.137089573999958 + ], + [ + 21.42464807100015, + -13.229293649999931 + ], + [ + 21.426394508000158, + -13.37076916299992 + ], + [ + 21.57024614200003, + -13.380054270999892 + ], + [ + 21.68699885200016, + -13.467760591999877 + ], + [ + 21.59048174100019, + -13.573427 + ], + [ + 21.63009396800004, + -13.704347740999935 + ], + [ + 21.750703985000087, + -13.803546124999968 + ], + [ + 21.918849861000126, + -13.913083293999875 + ], + [ + 21.991940404000104, + -14.014571143999945 + ], + [ + 21.990439884000125, + -14.163897429999963 + ], + [ + 21.937702427000147, + -14.199186525999892 + ], + [ + 21.65622679300003, + -14.231919245999904 + ], + [ + 21.652247125000088, + -14.30948172099994 + ], + [ + 21.780746838000084, + -14.316486444999953 + ], + [ + 21.847331006000104, + -14.476342125999963 + ], + [ + 21.790573061000146, + -14.612161584999967 + ], + [ + 21.82001120800004, + -14.693307795999942 + ], + [ + 21.968992837000087, + -14.774619735999863 + ], + [ + 21.910304250000138, + -14.840163466999911 + ], + [ + 21.889677837000136, + -14.9816754659999 + ], + [ + 21.723808515000144, + -15.04444489499997 + ], + [ + 21.683258429000034, + -15.1181797939999 + ], + [ + 21.596215880000045, + -15.184675143999925 + ], + [ + 21.57171251300008, + -15.33232272299989 + ], + [ + 21.47846424200003, + -15.474562620999905 + ], + [ + 21.482011844000112, + -15.516232531999947 + ], + [ + 21.578286501000093, + -15.684223843999973 + ], + [ + 21.698381128000108, + -15.785100396999951 + ], + [ + 21.79726221100009, + -15.92605584699993 + ], + [ + 22.034166667000136, + -16.1125 + ], + [ + 22.056666667000172, + -16.180833333999942 + ], + [ + 22.193333333000055, + -16.27583333299998 + ], + [ + 22.172500000000184, + -16.368333332999953 + ], + [ + 22.2325, + -16.398333332999925 + ], + [ + 22.34416666700008, + -16.596666666999965 + ], + [ + 22.448333333000164, + -16.634166666999874 + ], + [ + 22.60583333400018, + -16.66083333299997 + ], + [ + 22.5775000000001, + -16.753333332999944 + ], + [ + 22.6675, + -16.82 + ], + [ + 22.698333333000107, + -16.910833333999904 + ], + [ + 22.7475, + -16.931666666999888 + ], + [ + 22.798333333000073, + -17.023333333999915 + ], + [ + 22.865833334000115, + -17.04916666699995 + ], + [ + 22.979166667000015, + -16.947499999999877 + ], + [ + 23.063333334000106, + -16.96083333399997 + ], + [ + 23.0475, + -17.043333332999964 + ], + [ + 23.1425, + -17.079166665999878 + ], + [ + 23.3625, + -17.06083333299989 + ], + [ + 23.3366666660001, + -16.836666666999918 + ], + [ + 23.34416666700008, + -16.73583333399995 + ], + [ + 23.247500000000173, + -16.696666666999818 + ], + [ + 23.257500000000107, + -16.605833332999907 + ], + [ + 23.321666667000045, + -16.56583333299983 + ], + [ + 23.317500000000166, + -16.485 + ], + [ + 23.19, + -16.4125 + ], + [ + 23.12166666700017, + -16.45916666599993 + ], + [ + 23.07166666600017, + -16.37416666699994 + ], + [ + 23.245, + -16.3275 + ], + [ + 23.303333333000126, + -16.18833333399982 + ], + [ + 23.247500000000173, + -16.095 + ], + [ + 23.30666666700006, + -15.94916666599994 + ], + [ + 23.276666667000143, + -15.893333332999873 + ], + [ + 23.2775, + -15.766666666999924 + ], + [ + 23.210833333000096, + -15.658333332999973 + ], + [ + 23.19583333300011, + -15.377499999999884 + ], + [ + 23.119166666000183, + -15.2375 + ], + [ + 23.1625, + -15.00749999999988 + ], + [ + 23.412500000000136, + -14.87499999999983 + ], + [ + 23.500833333000116, + -14.887499999999875 + ], + [ + 23.518333333000157, + -14.949166666999872 + ], + [ + 23.617500000000177, + -14.911666666999963 + ], + [ + 23.622500000000173, + -14.850833332999912 + ], + [ + 23.485833333000187, + -14.844166666999968 + ], + [ + 23.371666667000113, + -14.87083333299995 + ], + [ + 23.375000000000114, + -14.804999999999893 + ], + [ + 23.558333333000064, + -14.72666666699996 + ], + [ + 23.614166666000074, + -14.7275 + ], + [ + 23.698333333000107, + -14.646666666999977 + ], + [ + 23.787500000000136, + -14.658333333999906 + ], + [ + 23.8125, + -14.5875 + ], + [ + 23.749166667, + -14.514166666999927 + ], + [ + 23.787389785000187, + -14.440833333999876 + ], + [ + 23.728333333000023, + -14.4025 + ], + [ + 23.77833333300009, + -14.312499999999886 + ], + [ + 23.7650000000001, + -14.32583333399998 + ], + [ + 23.75166666700011, + -14.295 + ], + [ + 23.690833334000104, + -14.202499999999873 + ], + [ + 23.72916666600014, + -14.164166665999858 + ], + [ + 23.71916666700008, + -14.1675 + ], + [ + 23.6575, + -14.23 + ], + [ + 23.660833334000188, + -14.27 + ], + [ + 23.6625, + -14.297499999999843 + ], + [ + 23.607500000000186, + -14.355 + ], + [ + 23.63083333300017, + -14.430833333999828 + ], + [ + 23.509166667000045, + -14.655 + ], + [ + 23.395, + -14.702499999999873 + ], + [ + 23.418333334000124, + -14.61416666599996 + ], + [ + 23.5741666670001, + -14.430833332999896 + ], + [ + 23.590833334000024, + -14.289166665999915 + ], + [ + 23.605000000000132, + -14.26833333299993 + ], + [ + 23.55333333300007, + -14.280833332999975 + ], + [ + 23.539166666000085, + -14.39333333299993 + ], + [ + 23.543333333000135, + -14.46 + ], + [ + 23.48250000000013, + -14.503333333999933 + ], + [ + 23.41166666700019, + -14.606666666999956 + ], + [ + 23.37333333400005, + -14.707499999999868 + ], + [ + 23.236666667000065, + -14.646666666999977 + ], + [ + 23.22750000000019, + -14.424999999999898 + ], + [ + 23.23916666700012, + -14.2575 + ], + [ + 23.2975, + -14.200833332999935 + ], + [ + 23.228333333000137, + -14.093333332999975 + ], + [ + 23.240833333000182, + -13.998333332999948 + ], + [ + 23.07166666600017, + -13.920833332999962 + ], + [ + 23.092500000000143, + -14.020833332999871 + ], + [ + 23.2075, + -13.979166666999845 + ], + [ + 23.209166667000034, + -14.119166666999945 + ], + [ + 23.16666666600014, + -14.201666665999937 + ], + [ + 23.096666667000022, + -14.20583333299993 + ], + [ + 23.04000000000019, + -14.075833332999935 + ], + [ + 23.00416666600006, + -13.904166666999913 + ], + [ + 22.91000000000014, + -13.8025 + ], + [ + 22.999166666000065, + -13.771666666999977 + ], + [ + 23.06166666700011, + -13.828333333999979 + ], + [ + 23.10083333299997, + -13.729166666999959 + ], + [ + 23.0575, + -13.658333332999916 + ], + [ + 22.941666666000117, + -13.626666666999938 + ], + [ + 22.875, + -13.53583333399996 + ], + [ + 22.850833333000026, + -13.33416666699992 + ], + [ + 22.92416666700018, + -13.23916666599996 + ], + [ + 22.96583333300015, + -13.28 + ], + [ + 23.066952398000012, + -13.179166665999844 + ], + [ + 23.06500000000011, + -13.170833332999905 + ], + [ + 22.975833333000082, + -13.228333333999956 + ], + [ + 22.97586264600011, + -13.145833332999871 + ], + [ + 22.97666666700013, + -13.06346631599996 + ], + [ + 22.972473829000137, + -13.059999999999889 + ] + ], + [ + [ + 22.013333333000105, + -13.016666665999935 + ], + [ + 22.238333333000128, + -13.040833332999966 + ], + [ + 22.00083333300006, + -13.086666665999871 + ], + [ + 22.013333333000105, + -13.016666665999935 + ] + ], + [ + [ + 22.707500000000152, + -13.37 + ], + [ + 22.7875, + -13.439999999999884 + ], + [ + 22.791666667000015, + -13.493333332999953 + ], + [ + 22.7025, + -13.513333333999924 + ], + [ + 22.707500000000152, + -13.37 + ] + ], + [ + [ + 22.893333333000044, + -13.804999999999836 + ], + [ + 22.994166667000172, + -13.911666666999906 + ], + [ + 22.932500000000175, + -13.940833332999887 + ], + [ + 22.893333333000044, + -13.804999999999836 + ] + ], + [ + [ + 22.65916666700008, + -13.876666666999881 + ], + [ + 22.723333334000188, + -13.934166666999943 + ], + [ + 22.8958333330001, + -13.9625 + ], + [ + 23.025, + -14.07 + ], + [ + 23.085, + -14.180833332999953 + ], + [ + 23.030833333000146, + -14.250833333999879 + ], + [ + 22.9125, + -14.061666665999894 + ], + [ + 22.68083333400017, + -13.929999999999893 + ], + [ + 22.65916666700008, + -13.876666666999881 + ] + ], + [ + [ + 22.008333333000166, + -14.280833333999908 + ], + [ + 22.08, + -14.374166666999884 + ], + [ + 22.000833334000163, + -14.423333333999949 + ], + [ + 22.008333333000166, + -14.280833333999908 + ] + ], + [ + [ + 22.361666667000122, + -14.699166666999929 + ], + [ + 22.41166666700019, + -14.735833332999903 + ], + [ + 22.575, + -14.930833332999896 + ], + [ + 22.465833333000035, + -14.9375 + ], + [ + 22.37500000000017, + -14.815833332999887 + ], + [ + 22.42833333300007, + -14.77416666699986 + ], + [ + 22.361666667000122, + -14.699166666999929 + ] + ], + [ + [ + 22.567500000000166, + -14.961666666999974 + ], + [ + 22.66, + -14.963333332999923 + ], + [ + 22.76916666699998, + -15.036666666999963 + ], + [ + 22.720833334000076, + -15.114999999999895 + ], + [ + 22.779166666000037, + -15.2325 + ], + [ + 22.7425, + -15.3225 + ], + [ + 22.67583333300007, + -15.320833332999882 + ], + [ + 22.664166667000075, + -15.38833333299982 + ], + [ + 22.586666667000145, + -15.415 + ], + [ + 22.6075, + -15.5075 + ], + [ + 22.560833333000176, + -15.524166666999974 + ], + [ + 22.49, + -15.638333333999924 + ], + [ + 22.489166666000187, + -15.725 + ], + [ + 22.413333333000082, + -15.7 + ], + [ + 22.303333333000182, + -15.7075 + ], + [ + 22.095, + -15.665833332999966 + ], + [ + 22.031666666000092, + -15.5875 + ], + [ + 22.05416666700006, + -15.5325 + ], + [ + 22.12750000000011, + -15.498333332999891 + ], + [ + 22.19250000000011, + -15.41833333399984 + ], + [ + 22.12916666700005, + -15.280833332999975 + ], + [ + 22.23666666600019, + -15.255 + ], + [ + 22.195833333000166, + -15.0975 + ], + [ + 22.14916666700003, + -15.005833332999885 + ], + [ + 22.35, + -14.970833332999973 + ], + [ + 22.567500000000166, + -14.961666666999974 + ] + ], + [ + [ + 22.79166666600014, + -15.258333332999939 + ], + [ + 22.94, + -15.5275 + ], + [ + 22.94750000000016, + -15.628333332999944 + ], + [ + 23.030833333000146, + -15.758333333999929 + ], + [ + 23.03666666700019, + -15.8225 + ], + [ + 23.125833333000116, + -15.921666665999851 + ], + [ + 23.126666667000165, + -16.0325 + ], + [ + 23.0725, + -16.070833332999825 + ], + [ + 22.86416666700012, + -16.046666665999908 + ], + [ + 22.72250000000014, + -16.004166666999936 + ], + [ + 22.600000000000136, + -15.86249999999984 + ], + [ + 22.683333334000054, + -15.811666665999837 + ], + [ + 22.7775, + -15.8325 + ], + [ + 22.886666667000156, + -15.900833332999866 + ], + [ + 22.900833333000094, + -15.805833332999896 + ], + [ + 22.942500000000166, + -15.785833332999971 + ], + [ + 22.830000000000155, + -15.611666666999952 + ], + [ + 22.6625, + -15.470833332999973 + ], + [ + 22.69000000000011, + -15.390833332999875 + ], + [ + 22.79166666600014, + -15.258333332999939 + ] + ], + [ + [ + 22.79916666600019, + -16.043333332999964 + ], + [ + 22.867500000000177, + -16.06749999999988 + ], + [ + 23.040833333000137, + -16.07583333399998 + ], + [ + 23.084166667000147, + -16.14249999999987 + ], + [ + 23.19250000000011, + -16.1875 + ], + [ + 23.24166666600013, + -16.268333333999976 + ], + [ + 23.0183333330001, + -16.266666666999924 + ], + [ + 22.798333334000176, + -16.24583333299995 + ], + [ + 22.679166667, + -16.21666666699997 + ], + [ + 22.713333333000094, + -16.15083333299998 + ], + [ + 22.628333333000114, + -16.12 + ], + [ + 22.79916666600019, + -16.043333332999964 + ] + ], + [ + [ + 22.45000000000016, + -15.733333332999905 + ], + [ + 22.48916666700012, + -15.7975 + ], + [ + 22.55833333300012, + -15.820833332999939 + ], + [ + 22.715, + -16.01916666699998 + ], + [ + 22.715, + -16.07416666699993 + ], + [ + 22.56250000000017, + -16.02833333299992 + ], + [ + 22.43250000000012, + -15.82666666699987 + ], + [ + 22.35083333300014, + -15.751666666999881 + ], + [ + 22.45000000000016, + -15.733333332999905 + ] + ], + [ + [ + 22.59166666700014, + -15.739166666999893 + ], + [ + 22.7475, + -15.785 + ], + [ + 22.595, + -15.8566666669999 + ], + [ + 22.51666666600005, + -15.759166666999874 + ], + [ + 22.59166666700014, + -15.739166666999893 + ] + ], + [ + [ + 22.060833334, + -15.3175 + ], + [ + 22.1525, + -15.403333332999978 + ], + [ + 22.100833333000026, + -15.480833333999954 + ], + [ + 22.00083333300006, + -15.574999999999875 + ], + [ + 22.000000000000114, + -15.333333332999928 + ], + [ + 22.060833334, + -15.3175 + ] + ], + [ + [ + 22.176666667000063, + -15.155 + ], + [ + 22.134166667000045, + -15.2525 + ], + [ + 22.035, + -15.234166665999851 + ], + [ + 22.176666667000063, + -15.155 + ] + ], + [ + [ + 22.0075, + -14.81583333399982 + ], + [ + 22.055000000000177, + -14.935 + ], + [ + 22.000000000000114, + -14.936206951999964 + ], + [ + 22.0075, + -14.81583333399982 + ] + ], + [ + [ + 22.240000000000123, + -14.724166666999963 + ], + [ + 22.34, + -14.790833332999966 + ], + [ + 22.413333334000185, + -14.88249999999988 + ], + [ + 22.433333333000064, + -14.95166666699987 + ], + [ + 22.320833333000053, + -14.95 + ], + [ + 22.3725, + -14.879166666999879 + ], + [ + 22.240000000000123, + -14.724166666999963 + ] + ], + [ + [ + 22.0683333340001, + -14.68 + ], + [ + 22.10416666700013, + -14.795833332999962 + ], + [ + 22.000000000000114, + -14.775 + ], + [ + 22.000000000000114, + -14.70499999999987 + ], + [ + 22.0683333340001, + -14.68 + ] + ], + [ + [ + 22.373333333000176, + -16.3325 + ], + [ + 22.37500000000017, + -16.38 + ], + [ + 22.25166666600012, + -16.405 + ], + [ + 22.235000000000127, + -16.32916666699998 + ], + [ + 22.373333333000176, + -16.3325 + ] + ], + [ + [ + 22.7425, + -16.74499999999989 + ], + [ + 22.79166666600014, + -16.895 + ], + [ + 22.938333333000116, + -16.944166666999934 + ], + [ + 22.896666667000147, + -17.014999999999816 + ], + [ + 22.799166667000122, + -17.017499999999814 + ], + [ + 22.70083333400015, + -16.90416666699997 + ], + [ + 22.661666666000087, + -16.786666666999963 + ], + [ + 22.7425, + -16.74499999999989 + ] + ] + ], + [ + [ + [ + 23.236531707999973, + -12.726116702999889 + ], + [ + 23.01971046699998, + -12.757644852999874 + ], + [ + 22.929841545000045, + -12.800643009999874 + ], + [ + 22.76030146000005, + -12.955233467999903 + ], + [ + 22.73245716600013, + -13.001666666999881 + ], + [ + 23.016231093000044, + -12.999166666999884 + ], + [ + 23.075944643000184, + -12.84312588299997 + ], + [ + 23.236531707999973, + -12.726116702999889 + ] + ] + ], + [ + [ + [ + 29.716666667000084, + -11.05 + ], + [ + 29.65, + -11.054166665999901 + ], + [ + 29.616666667000118, + -11.1375 + ], + [ + 29.525, + -11.208333332999871 + ], + [ + 29.575, + -11.241666666999834 + ], + [ + 29.54166666700013, + -11.3625 + ], + [ + 29.605833333000135, + -11.468333333999965 + ], + [ + 29.705833333000044, + -11.44166666599989 + ], + [ + 29.737500000000125, + -11.501666666999938 + ], + [ + 29.66500000000019, + -11.625 + ], + [ + 29.596666667000136, + -11.669166665999967 + ], + [ + 29.595, + -11.889166665999937 + ], + [ + 29.62833333300017, + -11.944166666999877 + ], + [ + 29.562414257000114, + -12.11333333399989 + ], + [ + 29.57916666600005, + -12.155833332999975 + ], + [ + 29.46149056200005, + -12.306056574999957 + ], + [ + 29.529729480000185, + -12.378451407999819 + ], + [ + 29.67826049300004, + -12.361833781999962 + ], + [ + 29.787050555000064, + -12.403590747999829 + ], + [ + 29.816666667000163, + -12.2775 + ], + [ + 29.878333333000114, + -12.305833332999896 + ], + [ + 29.96, + -12.253333332999944 + ], + [ + 30.105, + -12.350833333999958 + ], + [ + 30.19, + -12.305 + ], + [ + 30.16000000000014, + -12.229166666999902 + ], + [ + 30.19833333300005, + -12.189166666999938 + ], + [ + 30.36833333300018, + -12.24166666699989 + ], + [ + 30.481666666000137, + -12.188333332999889 + ], + [ + 30.495, + -12.099166666999963 + ], + [ + 30.5775000000001, + -12.071666666999931 + ], + [ + 30.543333334000067, + -11.928333332999955 + ], + [ + 30.568333334000158, + -11.794166666999956 + ], + [ + 30.655, + -11.808333333999883 + ], + [ + 30.664166667000075, + -11.7 + ], + [ + 30.7525, + -11.695833332999882 + ], + [ + 30.6875, + -11.51833333299993 + ], + [ + 30.791666667000015, + -11.42583333399989 + ], + [ + 30.808333333000064, + -11.351666666999904 + ], + [ + 30.729166667000072, + -11.345833333999906 + ], + [ + 30.736666666000076, + -11.21666666699997 + ], + [ + 30.688333333000173, + -11.177499999999895 + ], + [ + 30.570833333000166, + -11.197499999999877 + ], + [ + 30.48166666700007, + -11.1075 + ], + [ + 30.3825, + -11.095 + ], + [ + 30.26333333399998, + -11.039379372999974 + ], + [ + 30.150000000000148, + -11.041666666999959 + ], + [ + 30.11416666700012, + -10.9525 + ], + [ + 30.16000000000014, + -10.877499999999884 + ], + [ + 30.11416666700012, + -10.809515246999922 + ], + [ + 30.0075, + -10.839166666999972 + ], + [ + 29.906666667000138, + -10.833333333999974 + ], + [ + 29.875, + -10.87499999999983 + ], + [ + 29.804166667000118, + -10.91666666599997 + ], + [ + 29.716666667000084, + -11.05 + ] + ] + ], + [ + [ + [ + 28.58450595500011, + -10.04272575099992 + ], + [ + 28.597916011000166, + -9.975693815999932 + ], + [ + 28.502095462000113, + -9.981453169999952 + ], + [ + 28.487269572000116, + -9.935338815999955 + ], + [ + 28.49898120900008, + -9.727058022999927 + ], + [ + 28.59454777100018, + -9.719132069999887 + ], + [ + 28.45636587200005, + -9.525917618999927 + ], + [ + 28.37172404200004, + -9.52015989399996 + ], + [ + 28.33793248300003, + -9.568268497999952 + ], + [ + 28.371671487000015, + -9.66205679799998 + ], + [ + 28.417398457000047, + -9.961799689999964 + ], + [ + 28.463125595000065, + -10.02276328399995 + ], + [ + 28.58450595500011, + -10.04272575099992 + ] + ] + ], + [ + [ + [ + 30.89833333300004, + -6.720833332999916 + ], + [ + 31.048333333000016, + -6.635833332999937 + ], + [ + 30.991666666000185, + -6.55 + ], + [ + 30.916666666000026, + -6.55833333299995 + ], + [ + 30.89833333300004, + -6.720833332999916 + ] + ] + ], + [ + [ + [ + 30.419166666000024, + -3.831666666999865 + ], + [ + 30.348333333000085, + -3.960833332999869 + ], + [ + 30.34916666600003, + -4.035 + ], + [ + 30.476666666000142, + -4.015 + ], + [ + 30.500833333000173, + -4.091666665999981 + ], + [ + 30.47916666700013, + -4.155833332999975 + ], + [ + 30.519166667000036, + -4.214166666999972 + ], + [ + 30.64, + -4.145833333999974 + ], + [ + 30.70416666600005, + -4.169166666999956 + ], + [ + 30.73583333300013, + -4.327499999999873 + ], + [ + 30.652500000000146, + -4.416666666999902 + ], + [ + 30.669166666000137, + -4.609166665999908 + ], + [ + 30.73, + -4.656666665999978 + ], + [ + 30.739166666000187, + -4.748333332999835 + ], + [ + 30.85916666600008, + -4.781666665999978 + ], + [ + 30.87750000000011, + -4.814999999999827 + ], + [ + 30.84916666700019, + -4.983333332999905 + ], + [ + 30.875833333000173, + -5.139166665999937 + ], + [ + 30.946666667000045, + -5.0375 + ], + [ + 31.031666667000025, + -4.993333332999953 + ], + [ + 31.12416666600018, + -4.993333332999953 + ], + [ + 31.196666666000056, + -5.054166666999947 + ], + [ + 31.18833333300006, + -5.148333333999972 + ], + [ + 31.1325, + -5.18333333299995 + ], + [ + 31.050000000000182, + -5.1725 + ], + [ + 30.92750000000018, + -5.309999999999889 + ], + [ + 30.985000000000127, + -5.374166666999827 + ], + [ + 31.030833333000146, + -5.4925 + ], + [ + 31.03, + -5.5775 + ], + [ + 31.06500000000017, + -5.66 + ], + [ + 31.15416666699997, + -5.692499999999825 + ], + [ + 31.162500000000193, + -5.606666665999967 + ], + [ + 31.079166666000106, + -5.57 + ], + [ + 31.071666667000102, + -5.451666665999824 + ], + [ + 30.996666667000113, + -5.288333332999969 + ], + [ + 31.024166667000145, + -5.270833332999928 + ], + [ + 31.238333333000128, + -5.27083333399986 + ], + [ + 31.305833333000066, + -5.333333332999871 + ], + [ + 31.354166667000072, + -5.515833332999932 + ], + [ + 31.43333333400011, + -5.556666666999945 + ], + [ + 31.484166667000125, + -5.486666666999895 + ], + [ + 31.3675, + -5.448333333999869 + ], + [ + 31.391666667000038, + -5.345833332999973 + ], + [ + 31.278333333000035, + -5.226666666999904 + ], + [ + 31.268333333000044, + -5.028333332999978 + ], + [ + 31.402500000000146, + -4.9775 + ], + [ + 31.4575, + -4.99166666699989 + ], + [ + 31.490833333000182, + -4.910833332999971 + ], + [ + 31.565, + -4.8575 + ], + [ + 31.53833333300014, + -4.7325 + ], + [ + 31.663333333000026, + -4.705833333999919 + ], + [ + 31.725000000000193, + -4.77916666699997 + ], + [ + 31.820000000000164, + -4.73916666599996 + ], + [ + 31.65083333300015, + -4.624166665999951 + ], + [ + 31.645, + -4.550833333999947 + ], + [ + 31.77583333400014, + -4.520833332999928 + ], + [ + 31.73916666600013, + -4.406666666999968 + ], + [ + 31.769166666000046, + -4.2 + ], + [ + 31.70583333400009, + -4.074166666999929 + ], + [ + 31.62916666600006, + -4.094166666999968 + ], + [ + 31.610833333000073, + -4.193333333999874 + ], + [ + 31.624166667000168, + -4.3525 + ], + [ + 31.55250000000018, + -4.414166666999904 + ], + [ + 31.51416666700004, + -4.37 + ], + [ + 31.545, + -4.259166665999942 + ], + [ + 31.565, + -4.093333332999919 + ], + [ + 31.617500000000177, + -3.951666666999927 + ], + [ + 31.453333334000092, + -4.003333332999944 + ], + [ + 31.3925, + -3.920833332999962 + ], + [ + 31.359166667000068, + -3.785833332999857 + ], + [ + 31.2775, + -3.7225 + ], + [ + 31.21416666700003, + -3.606666666999956 + ], + [ + 31.1325, + -3.58 + ], + [ + 31.0525, + -3.693333333999874 + ], + [ + 30.950833333000162, + -3.744166666999888 + ], + [ + 30.806666667000172, + -3.759166666999931 + ], + [ + 31.058333333000178, + -3.978333333999956 + ], + [ + 31.11083333300013, + -3.9625 + ], + [ + 31.118333334000113, + -3.840833333999967 + ], + [ + 31.161666666000144, + -3.789166666999961 + ], + [ + 31.2558333340001, + -3.793333332999907 + ], + [ + 31.243333334, + -3.8875 + ], + [ + 31.288333333000026, + -3.9725 + ], + [ + 31.271666667000147, + -4.094166665999978 + ], + [ + 31.31333333400005, + -4.195 + ], + [ + 31.30500000000012, + -4.439999999999884 + ], + [ + 31.19583333300011, + -4.420833332999962 + ], + [ + 31.209166667000034, + -4.580833333999976 + ], + [ + 31.308333334000054, + -4.619166666999888 + ], + [ + 31.405, + -4.706666666999979 + ], + [ + 31.36583333300007, + -4.77916666699997 + ], + [ + 31.256666666000115, + -4.764166666999927 + ], + [ + 31.098333333000085, + -4.908333333999906 + ], + [ + 31.021666667000034, + -4.927499999999895 + ], + [ + 31.005833334000158, + -4.840833332999978 + ], + [ + 31.12500000000017, + -4.7775 + ], + [ + 31.138333333000162, + -4.731666665999967 + ], + [ + 31.0216666660001, + -4.67 + ], + [ + 30.9625, + -4.601666666999961 + ], + [ + 30.850833333000026, + -4.603333333999899 + ], + [ + 30.92333333300013, + -4.6825 + ], + [ + 30.84916666700019, + -4.726666666999904 + ], + [ + 30.785, + -4.7025 + ], + [ + 30.786666667000077, + -4.511666666999872 + ], + [ + 30.8325, + -4.375 + ], + [ + 30.769166666000103, + -4.359166666999954 + ], + [ + 30.76833333400009, + -4.1775 + ], + [ + 30.824166667000043, + -4.130833332999941 + ], + [ + 30.780833333000032, + -4.078333333999979 + ], + [ + 30.68666666600018, + -4.124166666999884 + ], + [ + 30.567500000000166, + -3.9775 + ], + [ + 30.490833333000182, + -3.944999999999879 + ], + [ + 30.474166667000134, + -3.866666666999947 + ], + [ + 30.419166666000024, + -3.831666666999865 + ] + ], + [ + [ + 31.228333333000137, + -4.859166666999954 + ], + [ + 31.259166666, + -4.969166665999978 + ], + [ + 31.161666666000144, + -4.959166666999977 + ], + [ + 31.187500000000114, + -4.853333332999966 + ], + [ + 31.228333333000137, + -4.859166666999954 + ] + ] + ], + [ + [ + [ + 25.961070057000143, + 29.095389918000023 + ], + [ + 26.110722151000118, + 29.220468507000135 + ], + [ + 26.081935221000037, + 29.302477097000065 + ], + [ + 26.00422745800006, + 29.31723612700017 + ], + [ + 25.505930125000077, + 29.2448900120001 + ], + [ + 25.30590510800016, + 29.23138687100004 + ], + [ + 25.307336025000154, + 29.201408947000175 + ], + [ + 25.574178617000143, + 29.097674395000126 + ], + [ + 25.843243434000044, + 29.111436081000136 + ], + [ + 25.961070057000143, + 29.095389918000023 + ] + ] + ], + [ + [ + [ + 28.18138996800019, + 30.344439924000085 + ], + [ + 28.094720024000083, + 30.389720004000026 + ], + [ + 27.983050141000092, + 30.398610069000085 + ], + [ + 27.933890053000084, + 30.35805999700017 + ], + [ + 27.826110034000067, + 30.375550045000125 + ], + [ + 27.658239968000146, + 30.321779993 + ], + [ + 27.40340019600012, + 30.258919919000164 + ], + [ + 27.278609961000086, + 30.185970028000042 + ], + [ + 27.155550001000165, + 30.17361008200004 + ], + [ + 27.03638994, + 30.07971997500016 + ], + [ + 26.923390050000023, + 29.9179500570001 + ], + [ + 26.740909975000136, + 29.85396996700007 + ], + [ + 26.66982994400007, + 29.76731005700009 + ], + [ + 26.54605992000012, + 29.671459968000192 + ], + [ + 26.49158015600017, + 29.592020045000083 + ], + [ + 26.579360081000175, + 29.389879947000054 + ], + [ + 26.587939998000024, + 29.30287996600009 + ], + [ + 26.482479924000188, + 29.193280078000043 + ], + [ + 26.329789995000112, + 29.12275996600016 + ], + [ + 26.31654994900009, + 29.05758998200008 + ], + [ + 26.397119921000183, + 28.931990054000153 + ], + [ + 26.53692008300004, + 29.039899975000026 + ], + [ + 26.606070055000032, + 29.04434007900005 + ], + [ + 26.836629985000172, + 28.988699990999976 + ], + [ + 26.631400032000045, + 28.9315600380001 + ], + [ + 26.611559942000156, + 28.871580002000087 + ], + [ + 26.648269962000143, + 28.777530069000136 + ], + [ + 26.958789954000167, + 28.911299963000033 + ], + [ + 27.163730001000147, + 28.942259939000166 + ], + [ + 27.349579979000055, + 28.943589946000145 + ], + [ + 27.521789994000187, + 29.00311021800013 + ], + [ + 27.64594004500003, + 29.092519912000057 + ], + [ + 27.721000239000034, + 29.18142002800016 + ], + [ + 27.873729948000175, + 29.318539935000047 + ], + [ + 27.850390053000012, + 29.40537005600015 + ], + [ + 27.75661999200014, + 29.461670043000026 + ], + [ + 27.588900071000126, + 29.3830500200001 + ], + [ + 27.497779990000083, + 29.44277007500017 + ], + [ + 27.40019369800018, + 29.547599777000016 + ], + [ + 27.573007962000133, + 29.567379358000153 + ], + [ + 27.80486002400005, + 29.573889988000076 + ], + [ + 27.905670003000125, + 29.625289931000054 + ], + [ + 27.880469929000185, + 29.7035000030001 + ], + [ + 27.94771026, + 29.858920001000172 + ], + [ + 28.030760001000033, + 29.76712998900007 + ], + [ + 28.100059942000087, + 29.83987006400008 + ], + [ + 28.186680072, + 29.858059967000088 + ], + [ + 28.310000189000107, + 29.95953002100015 + ], + [ + 28.237570084000026, + 30.093980233000025 + ], + [ + 28.289540155999987, + 30.17255008900014 + ], + [ + 28.573800081000172, + 30.158420087000025 + ], + [ + 28.75668025000016, + 30.205780019000144 + ], + [ + 29.010809957000106, + 30.146380145000023 + ], + [ + 29.125529738000182, + 30.180359919000125 + ], + [ + 29.0786499890001, + 30.25264005400004 + ], + [ + 28.634539995000182, + 30.34636998300016 + ], + [ + 28.493709940000087, + 30.353510057000108 + ], + [ + 28.40915998100013, + 30.389160085000185 + ], + [ + 28.291659964000075, + 30.388610022000023 + ], + [ + 28.18138996800019, + 30.344439924000085 + ] + ] + ], + [ + [ + [ + 31.888333334000095, + -10.57999999999987 + ], + [ + 32.020833333000155, + -10.504166665999946 + ], + [ + 32.12166666600007, + -10.273333332999925 + ], + [ + 32.141666667000095, + -10.16583333299991 + ], + [ + 32.17916666700012, + -10.1325 + ], + [ + 32.12500000000017, + -10.045 + ], + [ + 32.18583333300012, + -9.985 + ], + [ + 32.19166666700016, + -9.88666666599994 + ], + [ + 32.30500000000012, + -9.876666666999881 + ], + [ + 32.406666667000025, + -9.81166666699994 + ], + [ + 32.483333333000076, + -9.793333332999964 + ], + [ + 32.55250000000012, + -9.875833332999946 + ], + [ + 32.523333334000085, + -9.9725 + ], + [ + 32.5775000000001, + -10.0725 + ], + [ + 32.67583333300007, + -9.928333332999841 + ], + [ + 32.738333333000185, + -9.758333332999882 + ], + [ + 32.65833333300003, + -9.758333332999882 + ], + [ + 32.70750000000015, + -9.631666666999934 + ], + [ + 32.629166667000106, + -9.601666666999904 + ], + [ + 32.52333333300015, + -9.359166666999954 + ], + [ + 32.413333333000026, + -9.276666666999972 + ], + [ + 32.254166666000174, + -9.258333332999882 + ], + [ + 32.208333333000155, + -9.349166666999963 + ], + [ + 32.234166667000125, + -9.415833332999966 + ], + [ + 32.14416666699998, + -9.4775 + ], + [ + 32.0750000000001, + -9.490833333999944 + ], + [ + 32.039166667000075, + -9.54333333299985 + ], + [ + 32.085, + -9.624999999999886 + ], + [ + 31.99083333300007, + -9.66666666599997 + ], + [ + 31.940833334000104, + -9.7325 + ], + [ + 31.918333333000135, + -9.82583333399998 + ], + [ + 31.947500000000105, + -9.938333332999889 + ], + [ + 31.87416666600018, + -10.000833333999935 + ], + [ + 31.961666667000145, + -10.061666666999827 + ], + [ + 31.9825, + -10.125833332999889 + ], + [ + 31.84583333300003, + -10.185833332999948 + ], + [ + 31.844166666999968, + -10.2275 + ], + [ + 31.744166666000126, + -10.25666666699982 + ], + [ + 31.653333334000138, + -10.384166665999942 + ], + [ + 31.5775000000001, + -10.3975 + ], + [ + 31.55670444200007, + -10.480833332999964 + ], + [ + 31.607020897000098, + -10.56916666799998 + ], + [ + 31.80750000000012, + -10.518333333999976 + ], + [ + 31.888333334000095, + -10.57999999999987 + ] + ] + ], + [ + [ + [ + 31.525000000000148, + -7.380833332999828 + ], + [ + 31.38416666700016, + -7.40416666699997 + ], + [ + 31.446666666, + -7.516666665999878 + ], + [ + 31.549166666000076, + -7.553333332999955 + ], + [ + 31.54583333300019, + -7.604166665999969 + ], + [ + 31.68416666700017, + -7.690833333999876 + ], + [ + 31.700000000000102, + -7.749166666999884 + ], + [ + 31.77666666700003, + -7.757499999999879 + ], + [ + 31.79083333400007, + -7.8175 + ], + [ + 31.87166666700017, + -7.893333332999873 + ], + [ + 31.983333334000065, + -8.045 + ], + [ + 32.0783333330001, + -8.090833333999967 + ], + [ + 32.09333333300009, + -8.1475 + ], + [ + 32.2025, + -8.0775 + ], + [ + 32.366666666000185, + -8.139166666999927 + ], + [ + 32.43333333300018, + -8.238333332999957 + ], + [ + 32.4175, + -8.289166665999971 + ], + [ + 32.53750000000019, + -8.360833333999949 + ], + [ + 32.51083333300011, + -8.411666666999963 + ], + [ + 32.586666667000145, + -8.47916666599997 + ], + [ + 32.8275, + -8.508333332999939 + ], + [ + 32.93, + -8.416666666999902 + ], + [ + 32.79916666600013, + -8.335 + ], + [ + 32.66583333300008, + -8.18 + ], + [ + 32.61833333300012, + -8.165 + ], + [ + 32.50083333300012, + -8.005 + ], + [ + 32.43000000000018, + -7.989166666999949 + ], + [ + 32.31, + -7.846666665999919 + ], + [ + 32.18166666700017, + -7.764999999999873 + ], + [ + 32.05833333300018, + -7.62916666599989 + ], + [ + 31.823333333000164, + -7.469999999999857 + ], + [ + 31.61166666600019, + -7.381666666999934 + ], + [ + 31.525000000000148, + -7.380833332999828 + ] + ] + ], + [ + [ + [ + 31.573333334000154, + -7.239166666999893 + ], + [ + 31.5, + -7.074999999999875 + ], + [ + 31.383333334000042, + -7.056666665999899 + ], + [ + 31.36583333300007, + -7.1225 + ], + [ + 31.463333334000026, + -7.144166665999876 + ], + [ + 31.513333334000095, + -7.2275 + ], + [ + 31.573333334000154, + -7.239166666999893 + ] + ] + ], + [ + [ + [ + 31.253333333000114, + -7.104166665999969 + ], + [ + 31.319166666000058, + -7.048333333999892 + ], + [ + 31.332500000000152, + -6.93 + ], + [ + 31.405, + -6.886666666999929 + ], + [ + 31.430000000000177, + -6.776666666999915 + ], + [ + 31.33, + -6.671666666999897 + ], + [ + 31.321666666000112, + -6.845 + ], + [ + 31.258333334000156, + -6.85 + ], + [ + 31.13166666700016, + -6.6525 + ], + [ + 31.044166665999967, + -6.7075 + ], + [ + 31.0683333340001, + -6.762499999999818 + ], + [ + 31.02833333300009, + -6.8475 + ], + [ + 30.9075, + -6.86083333299996 + ], + [ + 30.96583333300015, + -6.9375 + ], + [ + 31.064166667000052, + -6.889166666999927 + ], + [ + 31.1425, + -6.96 + ], + [ + 31.07416666600011, + -6.989999999999895 + ], + [ + 31.035, + -7.070833333999929 + ], + [ + 31.229166666000083, + -7.11416666599996 + ], + [ + 31.253333333000114, + -7.104166665999969 + ] + ] + ], + [ + [ + [ + 34.40666666700014, + 8.229166667000129 + ], + [ + 34.29, + 8.237500000000125 + ], + [ + 34.23083333400007, + 8.269166667000036 + ], + [ + 34.27500000000015, + 8.398333334000142 + ], + [ + 34.247500000000116, + 8.465 + ], + [ + 34.191666667000106, + 8.465 + ], + [ + 34.24666666700017, + 8.689166667000109 + ], + [ + 34.15833333300009, + 8.681666667000059 + ], + [ + 34.1400000000001, + 8.595 + ], + [ + 34.024166666000156, + 8.49000000000018 + ], + [ + 33.903333334000024, + 8.4825 + ], + [ + 33.77, + 8.363333333000128 + ], + [ + 33.69166666700005, + 8.379166667000106 + ], + [ + 33.679166667000175, + 8.438333333000116 + ], + [ + 33.518089466000106, + 8.485268855000129 + ], + [ + 33.48537053900003, + 8.6342561780001 + ], + [ + 33.542308472000116, + 8.661430979000158 + ], + [ + 33.54925153800008, + 8.760740942000098 + ], + [ + 33.51842155700018, + 8.815930241999979 + ], + [ + 33.37041055800012, + 8.97870747200011 + ], + [ + 33.32883045100016, + 9.05537288500011 + ], + [ + 33.19638045500005, + 9.207730236000032 + ], + [ + 33.19200158100011, + 9.291280377000078 + ], + [ + 33.23423044700007, + 9.343522600000085 + ], + [ + 33.396560587000124, + 9.439465719 + ], + [ + 33.45952946700015, + 9.504437204000112 + ], + [ + 33.545238450000056, + 9.69386167800019 + ], + [ + 33.64075057300005, + 9.849797766000165 + ], + [ + 33.60100945500005, + 9.957414195000126 + ], + [ + 33.53252058900017, + 9.96042396900009 + ], + [ + 33.35739849100008, + 9.852871578000133 + ], + [ + 33.2274585400001, + 9.799292441000148 + ], + [ + 33.081840574000125, + 9.792537968000033 + ], + [ + 32.95508960200016, + 9.76708749300019 + ], + [ + 32.819339483000135, + 9.703369271000156 + ], + [ + 32.585391513000104, + 9.615711326999985 + ], + [ + 32.212978525000096, + 9.541336689000047 + ], + [ + 32.04360959900015, + 9.48098095100005 + ], + [ + 31.88156545000004, + 9.381981957000164 + ], + [ + 31.720878498000047, + 9.329583663000108 + ], + [ + 31.631074452000178, + 9.33375718000002 + ], + [ + 31.286403553000014, + 9.394021052000028 + ], + [ + 31.076854464000064, + 9.406415037000102 + ], + [ + 30.711332575000142, + 9.46286698700004 + ], + [ + 30.192174590000036, + 9.484018720000165 + ], + [ + 30.008829511000158, + 9.532023388000141 + ], + [ + 29.933404452000104, + 9.584565516000055 + ], + [ + 29.838609486000053, + 9.57551524000013 + ], + [ + 29.668840575000104, + 9.521721023000111 + ], + [ + 29.55087048400003, + 9.416140559000098 + ], + [ + 29.370910520000052, + 9.338374938000129 + ], + [ + 29.256530566000094, + 9.337812009 + ], + [ + 29.115533543000083, + 9.377667288000112 + ], + [ + 28.930053593000025, + 9.38560159800005 + ], + [ + 28.406572559000097, + 9.38560159800005 + ], + [ + 28.222961605000023, + 9.373882356000138 + ], + [ + 27.977687504000187, + 9.336878098000113 + ], + [ + 27.849866498000154, + 9.225473049000016 + ], + [ + 27.820425566000097, + 9.173895678000122 + ], + [ + 27.845031481000035, + 9.079752153000072 + ], + [ + 28.27518253800008, + 8.892733453000062 + ], + [ + 28.754873493000105, + 8.64484839000005 + ], + [ + 29.086284557000113, + 8.439602067000123 + ], + [ + 29.240915583000117, + 8.36905594700005 + ], + [ + 29.40327858000012, + 8.238905442000089 + ], + [ + 29.458162444000152, + 8.080222772000184 + ], + [ + 29.422821490000103, + 7.813038041000084 + ], + [ + 29.442254597000158, + 7.614921198000104 + ], + [ + 29.51561552900006, + 7.46206143500001 + ], + [ + 29.592176503000076, + 7.357152026000051 + ], + [ + 29.81780660800007, + 7.130359351000095 + ], + [ + 30.07442460900006, + 6.92335450600018 + ], + [ + 30.228450462000183, + 6.854664474 + ], + [ + 30.45756358300008, + 6.861232030000053 + ], + [ + 30.682449542000143, + 6.92671330200011 + ], + [ + 30.81174056600014, + 6.906437478000043 + ], + [ + 30.976350583999988, + 6.750458977 + ], + [ + 31.203029600000036, + 6.490819971000121 + ], + [ + 31.274139487000127, + 6.320156375000124 + ], + [ + 31.309949491999987, + 6.056592627000043 + ], + [ + 31.509849501000076, + 5.884256171 + ], + [ + 31.603719608000063, + 5.720678301000135 + ], + [ + 31.643459552000138, + 5.507591714000057 + ], + [ + 31.64357958100004, + 5.414999512000179 + ], + [ + 31.579980550000187, + 5.065863237000087 + ], + [ + 31.561889553000185, + 4.859552581000116 + ], + [ + 31.591329479000137, + 4.789467633000186 + ], + [ + 31.669931447000067, + 4.789387670000053 + ], + [ + 32.31560856000016, + 5.11631860600005 + ], + [ + 32.451080567000076, + 5.201224436000075 + ], + [ + 32.59310956900015, + 5.32711525700006 + ], + [ + 32.79841657700018, + 5.545816043000059 + ], + [ + 33.09556946099997, + 5.84252234000013 + ], + [ + 33.235031590000176, + 5.999503652000101 + ], + [ + 33.393497504000095, + 6.217614686000104 + ], + [ + 33.45967849700003, + 6.363097368000126 + ], + [ + 33.52650053800011, + 6.603735606000157 + ], + [ + 33.62607553600003, + 7.124226648000104 + ], + [ + 33.6376995600001, + 7.243523258999971 + ], + [ + 33.62330246800008, + 7.492836263000129 + ], + [ + 33.54197064100015, + 7.701666666000108 + ], + [ + 33.67166666700007, + 7.693333333999988 + ], + [ + 33.795833334, + 7.603333334000069 + ], + [ + 33.87500000000017, + 7.51416666700004 + ], + [ + 33.93916666700005, + 7.508333333000166 + ], + [ + 33.95666666600005, + 7.446666666000169 + ], + [ + 34.03500000000014, + 7.458333334000031 + ], + [ + 33.959166667000034, + 7.565833333000114 + ], + [ + 34.09083333300015, + 7.625833333000173 + ], + [ + 33.899166666999974, + 7.783333333000087 + ], + [ + 33.975000000000136, + 7.810000000000173 + ], + [ + 34.10666666700013, + 7.77583333299998 + ], + [ + 34.095, + 7.85 + ], + [ + 34.006666667, + 7.905833333000032 + ], + [ + 34.11083333300007, + 7.99 + ], + [ + 34.09916666700008, + 8.091666666000094 + ], + [ + 34.35083333400013, + 8.172500000000127 + ], + [ + 34.40666666700014, + 8.229166667000129 + ] + ], + [ + [ + 33.692500000000166, + 7.968333332999975 + ], + [ + 33.775, + 7.93 + ], + [ + 33.59166666599998, + 7.85 + ], + [ + 33.46083333299998, + 7.958333333000041 + ], + [ + 33.583333333000155, + 7.95 + ], + [ + 33.692500000000166, + 7.968333332999975 + ] + ] + ], + [ + [ + [ + 32.695716470000036, + 31.043768368000087 + ], + [ + 32.55334045600006, + 31.064226582000117 + ], + [ + 32.40578057100004, + 31.204270918000077 + ], + [ + 32.31726851200017, + 31.097065538000095 + ], + [ + 32.28268058800006, + 31.19583017400015 + ], + [ + 32.26404158200012, + 31.110833987000035 + ], + [ + 32.15367857200016, + 31.12072362700013 + ], + [ + 32.05068945700009, + 31.091484531000106 + ], + [ + 32.02902961300009, + 31.21876021100013 + ], + [ + 31.868589593000138, + 31.233340699000053 + ], + [ + 31.79549051200013, + 31.286057841 + ], + [ + 31.871530467000127, + 31.45860317400019 + ], + [ + 31.85244956800011, + 31.508791495000082 + ], + [ + 31.585830448000138, + 31.44065349600004 + ], + [ + 31.49836947900019, + 31.45592314400011 + ], + [ + 31.269880474000104, + 31.560647648000156 + ], + [ + 31.112760525999988, + 31.59954739000017 + ], + [ + 31.093160451000188, + 31.510221280000167 + ], + [ + 31.025089507000075, + 31.512731325000118 + ], + [ + 30.979879532000155, + 31.44321249100011 + ], + [ + 30.895759590000125, + 31.409604747000117 + ], + [ + 30.817810573000145, + 31.425454255000034 + ], + [ + 30.623247489000164, + 31.384167682000168 + ], + [ + 30.587902512000028, + 31.330519311000103 + ], + [ + 30.323244590000172, + 31.09107281200005 + ], + [ + 30.110202595000032, + 30.97073483400004 + ], + [ + 30.119594517000166, + 30.89717357500018 + ], + [ + 30.082624457000122, + 30.815842460000113 + ], + [ + 30.178745608000042, + 30.778875585000037 + ], + [ + 30.28965361000013, + 30.823237143000085 + ], + [ + 30.437530499000047, + 30.808450460000074 + ], + [ + 30.51886144600013, + 30.741907033000132 + ], + [ + 30.60758758000003, + 30.741907033000132 + ], + [ + 30.76285948600014, + 30.601430024000024 + ], + [ + 30.82813054000019, + 30.3625357250001 + ], + [ + 31.036010456000156, + 30.018079402000183 + ], + [ + 31.093261537000046, + 29.868819834000135 + ], + [ + 31.121974584000156, + 29.707354875000192 + ], + [ + 31.11068550200008, + 29.59879917000012 + ], + [ + 31.05274056700017, + 29.40310453000012 + ], + [ + 30.998243612000124, + 29.28316938600011 + ], + [ + 30.76326148200019, + 28.895254571000066 + ], + [ + 30.667577531, + 28.63636406900008 + ], + [ + 30.61238253099998, + 28.368609871000046 + ], + [ + 30.60296244500006, + 28.22842874300011 + ], + [ + 30.635776591000138, + 27.905840973000068 + ], + [ + 30.687206122000077, + 27.653847106000114 + ], + [ + 30.78033659300013, + 27.38248918800008 + ], + [ + 31.005721789000063, + 27.08526900900017 + ], + [ + 31.185312603000057, + 26.886898936000023 + ], + [ + 31.364534457000104, + 26.72209814700011 + ], + [ + 31.43159253300007, + 26.641951730000187 + ], + [ + 31.694143580000116, + 26.261188858000082 + ], + [ + 31.81978445300018, + 26.132942889000162 + ], + [ + 32.09628650700017, + 25.93292687500019 + ], + [ + 32.20586061300003, + 25.88913008900016 + ], + [ + 32.487010601, + 25.860357195000176 + ], + [ + 32.44490059000009, + 25.754111208000097 + ], + [ + 32.35258851100019, + 25.644022453 + ], + [ + 32.32702655600002, + 25.529256597000142 + ], + [ + 32.338195609000024, + 25.3272681520001 + ], + [ + 32.38985059700008, + 25.183664023 + ], + [ + 32.639419584000166, + 24.89824680800018 + ], + [ + 32.70052751399999, + 24.810585009000135 + ], + [ + 32.74706652300017, + 24.605760800000155 + ], + [ + 32.75418057999997, + 24.41104935600015 + ], + [ + 32.741825487000085, + 24.240925723000032 + ], + [ + 32.68737748200016, + 23.87530006500009 + ], + [ + 32.67174959100004, + 23.659639061000064 + ], + [ + 32.705875504000176, + 23.56922749500012 + ], + [ + 32.840381581000145, + 23.54298392300018 + ], + [ + 32.91912050900004, + 23.621716816 + ], + [ + 32.97653151600019, + 23.73161530200008 + ], + [ + 33.04243054199998, + 24.09261632800019 + ], + [ + 33.07578649300007, + 24.52103518100006 + ], + [ + 33.056846577000044, + 24.741370270000175 + ], + [ + 32.9918214490001, + 25.062235727000086 + ], + [ + 32.937061469000184, + 25.172755479000045 + ], + [ + 32.69894752600004, + 25.354062079000073 + ], + [ + 32.670692465000116, + 25.46317568300003 + ], + [ + 32.684635594000156, + 25.52489901300015 + ], + [ + 32.78305456000004, + 25.615670666000142 + ], + [ + 32.89614856200012, + 25.78237481800005 + ], + [ + 32.905006557000036, + 25.96067768000006 + ], + [ + 32.852384014000165, + 26.164703997000117 + ], + [ + 32.76624093600009, + 26.243015886000137 + ], + [ + 32.35992232400014, + 26.186309153000025 + ], + [ + 32.21205551000003, + 26.235469994000027 + ], + [ + 32.070106471000145, + 26.35288671100011 + ], + [ + 31.883068492000064, + 26.564045292 + ], + [ + 31.595989482000107, + 26.85890203800011 + ], + [ + 31.52906451100006, + 26.946759303000135 + ], + [ + 31.432350592000148, + 27.137121042000047 + ], + [ + 31.25197455, + 27.293297021000114 + ], + [ + 31.15810947199998, + 27.42154366000011 + ], + [ + 31.065879535000192, + 27.600750761000086 + ], + [ + 31.008460481000157, + 27.745750645999976 + ], + [ + 30.940879543000108, + 28.038226428000087 + ], + [ + 30.91793056200015, + 28.210903189000078 + ], + [ + 30.923658587000034, + 28.367064919000086 + ], + [ + 31.004266512000186, + 28.62193143700017 + ], + [ + 31.08692548900018, + 28.76371099400012 + ], + [ + 31.30157446200019, + 29.065499910000142 + ], + [ + 31.339918484000066, + 29.19340590800016 + ], + [ + 31.407924552999987, + 29.55867785000015 + ], + [ + 31.388719601000105, + 29.815129889000048 + ], + [ + 31.32231749300007, + 29.984055748 + ], + [ + 31.24060047500012, + 30.118325455000104 + ], + [ + 31.341064458000176, + 30.146254627000133 + ], + [ + 31.472469566000143, + 30.283910456000115 + ], + [ + 31.735277602000053, + 30.455981205000057 + ], + [ + 31.87919655600018, + 30.490396126000178 + ], + [ + 32.06691749200013, + 30.496653887000036 + ], + [ + 32.36101148500006, + 30.54983773300006 + ], + [ + 32.45859946900009, + 30.64749126400011 + ], + [ + 32.589138559, + 30.734514195000088 + ], + [ + 32.70004656100008, + 30.838024496000116 + ], + [ + 32.766166533000046, + 30.96991290500017 + ], + [ + 32.695716470000036, + 31.043768368000087 + ] + ] + ], + [ + [ + [ + 34.591152614000066, + -21.32888081199991 + ], + [ + 34.672809450000045, + -21.305252226999926 + ], + [ + 34.945098592000136, + -21.14773480799994 + ], + [ + 34.958015608000096, + -21.079367647999902 + ], + [ + 35.083480461000136, + -21.078791642999875 + ], + [ + 35.06520730300008, + -21.007828273999905 + ], + [ + 34.81048153900008, + -21.002711789999978 + ], + [ + 34.69569003200013, + -21.02246672399997 + ], + [ + 34.60438604700016, + -21.14381311999989 + ], + [ + 34.420903365000186, + -21.173112642999968 + ], + [ + 34.25780545500004, + -21.161445244999868 + ], + [ + 34.24338763300011, + -21.202011208999977 + ], + [ + 34.27919722000013, + -21.33536657899998 + ], + [ + 34.390787992000014, + -21.368080124999835 + ], + [ + 34.591152614000066, + -21.32888081199991 + ] + ] + ], + [ + [ + [ + 34.3506365, + -19.85423021599985 + ], + [ + 34.4499125160001, + -19.922244906999822 + ], + [ + 34.594242519000034, + -19.946401719999983 + ], + [ + 34.712318556000184, + -19.894891403999907 + ], + [ + 34.65531558000015, + -19.772307746999957 + ], + [ + 34.47935847700012, + -19.651418574999923 + ], + [ + 34.51017756200008, + -19.57745397899987 + ], + [ + 34.596477469000035, + -19.595944791999955 + ], + [ + 34.73825048900005, + -19.70072880799995 + ], + [ + 34.89235647200002, + -19.706892356999845 + ], + [ + 34.93966259300004, + -19.668713625999885 + ], + [ + 34.75288747100018, + -19.383509143999902 + ], + [ + 34.71110955100005, + -19.219978715999844 + ], + [ + 34.66342155100017, + -19.15747134399993 + ], + [ + 34.58314152600019, + -19.112637884999856 + ], + [ + 34.4991375890001, + -19.10433544199998 + ], + [ + 34.409356501000104, + -19.27888240099992 + ], + [ + 34.36660060700012, + -19.406203593999862 + ], + [ + 34.310911719000046, + -19.455199547999882 + ], + [ + 34.26218887699997, + -19.58292169699996 + ], + [ + 34.26617342300017, + -19.695788645999926 + ], + [ + 34.3506365, + -19.85423021599985 + ] + ] + ], + [ + [ + [ + 35.397861510000155, + -17.9602618159999 + ], + [ + 35.38956459900015, + -18.075532598999928 + ], + [ + 35.4522325690001, + -18.386132067999938 + ], + [ + 35.56939648800011, + -18.792091945999914 + ], + [ + 35.648410510000076, + -18.961013781999952 + ], + [ + 35.7183496130001, + -18.954913264999846 + ], + [ + 35.773826580000105, + -18.880948501999967 + ], + [ + 35.903270490000125, + -18.88711221799997 + ], + [ + 36.051212590000034, + -18.770001272999934 + ], + [ + 36.032718591000105, + -18.56043156499993 + ], + [ + 36.100830607000034, + -18.390386721999903 + ], + [ + 36.207496528000036, + -18.40677367799998 + ], + [ + 36.38570752400011, + -18.530156297999895 + ], + [ + 36.45804251000004, + -18.437157908999893 + ], + [ + 36.59365449600011, + -18.375519571999916 + ], + [ + 36.68726761400006, + -18.367009090999943 + ], + [ + 36.76517857700014, + -18.28917389999998 + ], + [ + 36.64296757900007, + -18.18444302499995 + ], + [ + 36.67995054700009, + -18.1166411399999 + ], + [ + 36.79090448199997, + -18.141295836999973 + ], + [ + 36.84638245500008, + -18.104314880999937 + ], + [ + 36.821727590000194, + -17.99336765099997 + ], + [ + 36.84638245500008, + -17.894745842999896 + ], + [ + 36.95733655800018, + -17.974874825999905 + ], + [ + 37.123767459000135, + -17.752979193999977 + ], + [ + 37.03130752400011, + -17.72832483199994 + ], + [ + 37.03130752400011, + -17.64819668699994 + ], + [ + 36.83654059200012, + -17.566589806999957 + ], + [ + 36.60046345100011, + -17.52543130999993 + ], + [ + 36.57606859200007, + -17.53444654999987 + ], + [ + 36.28683057100011, + -17.671729382999956 + ], + [ + 36.20096954000019, + -17.72605685699989 + ], + [ + 36.06365954900008, + -17.87430791399987 + ], + [ + 35.97060047400004, + -17.920925208999904 + ], + [ + 35.718898460000105, + -17.938112971999885 + ], + [ + 35.46239847600003, + -17.939611823999826 + ], + [ + 35.397861510000155, + -17.9602618159999 + ] + ] + ], + [ + [ + [ + 35.564166667, + -15.485833333999949 + ], + [ + 35.54333333300002, + -15.521666666999977 + ], + [ + 35.644166667000036, + -15.595833332999973 + ], + [ + 35.556666667000115, + -15.645 + ], + [ + 35.527500000000146, + -15.564999999999884 + ], + [ + 35.445, + -15.503333332999887 + ], + [ + 35.40500000000014, + -15.533333332999916 + ], + [ + 35.40583333300009, + -15.661666666999906 + ], + [ + 35.37416666700011, + -15.740833333999888 + ], + [ + 35.42666666600019, + -15.8475 + ], + [ + 35.52583333300015, + -15.753333332999944 + ], + [ + 35.60083333400007, + -15.719166666999968 + ], + [ + 35.64583333300004, + -15.6325 + ], + [ + 35.70083333400004, + -15.714166666999972 + ], + [ + 35.771666666000044, + -15.628333333999876 + ], + [ + 35.78916666700019, + -15.525833332999923 + ], + [ + 35.858618185000125, + -15.57815764499992 + ], + [ + 35.96253628799997, + -15.463696794999976 + ], + [ + 35.92672275299998, + -15.262460872999952 + ], + [ + 35.94959145000007, + -15.181729898999947 + ], + [ + 35.916265788000146, + -15.00861047599983 + ], + [ + 35.90133459900011, + -14.772030932999883 + ], + [ + 35.87000000000012, + -14.749166665999894 + ], + [ + 35.73750000000018, + -14.91416666699996 + ], + [ + 35.735833333000016, + -14.96 + ], + [ + 35.559166667000056, + -15.015 + ], + [ + 35.54833333300019, + -15.11 + ], + [ + 35.45916666600016, + -15.190833333999933 + ], + [ + 35.4566666660001, + -15.313333332999889 + ], + [ + 35.5725, + -15.43 + ], + [ + 35.564166667, + -15.485833333999949 + ] + ] + ], + [ + [ + [ + 35.882843244000185, + -8.459759277999922 + ], + [ + 35.94160669500013, + -8.573860283999977 + ], + [ + 35.86086581400019, + -8.660743657999888 + ], + [ + 35.848863836000135, + -8.80540072499997 + ], + [ + 35.76924735600011, + -8.87454065299994 + ], + [ + 35.82984047700006, + -8.98555178499987 + ], + [ + 35.89205646300013, + -8.94363974099997 + ], + [ + 35.8979373520001, + -9.07265446799994 + ], + [ + 35.94073345900017, + -9.086709476999943 + ], + [ + 36.02049353700005, + -8.935433847999832 + ], + [ + 36.01944468500011, + -8.860906797999974 + ], + [ + 36.07508085600011, + -8.816874868999946 + ], + [ + 36.24453145400008, + -8.558271438999952 + ], + [ + 36.31276160100015, + -8.520484167999882 + ], + [ + 36.31462449800017, + -8.418065233999926 + ], + [ + 36.39051714700008, + -8.337725063999926 + ], + [ + 36.49002962300017, + -8.310522067999955 + ], + [ + 36.594157575000054, + -8.208686267999894 + ], + [ + 36.829043103000174, + -8.162933722999924 + ], + [ + 36.9259845740001, + -8.177522947999933 + ], + [ + 36.88535810100012, + -8.086946599999976 + ], + [ + 36.736623383, + -8.136533568999937 + ], + [ + 36.64454479500017, + -8.14016185099996 + ], + [ + 36.519469628000024, + -8.20956090899989 + ], + [ + 36.34908349700004, + -8.261668209999868 + ], + [ + 36.30149176400016, + -8.303301118999968 + ], + [ + 36.2284233580001, + -8.269842743999902 + ], + [ + 36.16808292000013, + -8.286236606999978 + ], + [ + 36.08867540200015, + -8.245807338999896 + ], + [ + 36.064670528000136, + -8.356755107999902 + ], + [ + 35.95683098400008, + -8.376975061999872 + ], + [ + 35.882843244000185, + -8.459759277999922 + ] + ] + ], + [ + [ + [ + 34.3275000000001, + -8.6925 + ], + [ + 34.24833333400011, + -8.643333332999816 + ], + [ + 34.237500000000125, + -8.564166666999938 + ], + [ + 34.375, + -8.5475 + ], + [ + 34.365, + -8.460833332999869 + ], + [ + 34.49500000000012, + -8.368333332999896 + ], + [ + 34.65583333300009, + -8.304166666999947 + ], + [ + 34.80333333400006, + -8.194166666999934 + ], + [ + 34.63583333400004, + -8.161666666999963 + ], + [ + 34.494166666000126, + -8.170833332999962 + ], + [ + 34.464166667000086, + -8.246666666999943 + ], + [ + 34.39166666699998, + -8.276666666999972 + ], + [ + 34.310833333000176, + -8.22166666599992 + ], + [ + 34.227500000000134, + -8.283333332999916 + ], + [ + 34.054166667000175, + -8.286666666999963 + ], + [ + 34.060000000000116, + -8.442499999999882 + ], + [ + 34.1325, + -8.55833333399994 + ], + [ + 34.0425, + -8.610833333999892 + ], + [ + 34.11333333400006, + -8.7125 + ], + [ + 34.18333333300018, + -8.614166665999903 + ], + [ + 34.21416666700014, + -8.724166666999906 + ], + [ + 34.3275000000001, + -8.6925 + ] + ] + ], + [ + [ + [ + 35.48731990200008, + -7.248120472999915 + ], + [ + 35.36256244600003, + -7.277531831999909 + ], + [ + 35.374239901000124, + -7.335471083999892 + ], + [ + 35.49171669800006, + -7.314008758999933 + ], + [ + 35.48731990200008, + -7.248120472999915 + ] + ] + ], + [ + [ + [ + 37.061214577000044, + -7.390333673999919 + ], + [ + 37.10267843500014, + -7.35592372799988 + ], + [ + 37.10624080600007, + -7.230306849999977 + ], + [ + 37.15218593100013, + -7.138642780999874 + ], + [ + 37.25010511400012, + -7.228669943999876 + ], + [ + 37.35808220100006, + -7.002880260999973 + ], + [ + 37.43639674800016, + -6.966874278999967 + ], + [ + 37.418528974000026, + -6.893796564999946 + ], + [ + 37.452287987000034, + -6.749011570999926 + ], + [ + 37.44271020400009, + -6.599985599999968 + ], + [ + 37.494793566000055, + -6.507303882999906 + ], + [ + 37.60688993600007, + -6.457710138999971 + ], + [ + 37.69729813200007, + -6.284309744999973 + ], + [ + 37.668611892000115, + -6.253522571999895 + ], + [ + 37.52154116300011, + -6.394722761999958 + ], + [ + 37.490823166000155, + -6.461157799999967 + ], + [ + 37.351544629000045, + -6.624633606999907 + ], + [ + 37.34900081800015, + -6.773432491999927 + ], + [ + 37.310737490000065, + -6.853953568999884 + ], + [ + 37.20624059800019, + -6.850698934999969 + ], + [ + 37.20868480300004, + -6.921744388999969 + ], + [ + 37.05402799600006, + -7.006635236999898 + ], + [ + 37.06150407700005, + -7.104079157999934 + ], + [ + 37.000721909000106, + -7.187222331999919 + ], + [ + 37.061214577000044, + -7.390333673999919 + ] + ] + ], + [ + [ + [ + 36.101666667000075, + -6.383333332999939 + ], + [ + 36.05019498200005, + -6.36522418699991 + ], + [ + 35.88129493200012, + -6.364544930999955 + ], + [ + 35.84881944900013, + -6.444105401999877 + ], + [ + 35.75148923799998, + -6.45953754899989 + ], + [ + 35.70903087300019, + -6.401406697999903 + ], + [ + 35.612129129000095, + -6.389360340999872 + ], + [ + 35.57265268800006, + -6.300895320999928 + ], + [ + 35.50269358300011, + -6.376738145999923 + ], + [ + 35.56485353800008, + -6.417887253999879 + ], + [ + 35.56457535900006, + -6.529771797999956 + ], + [ + 35.61332671800011, + -6.565759533999881 + ], + [ + 35.757864753000035, + -6.561828763999813 + ], + [ + 35.80647690800009, + -6.62467269699988 + ], + [ + 35.90168512400004, + -6.637344806999977 + ], + [ + 35.949700362000044, + -6.480493560999946 + ], + [ + 36.03107254500014, + -6.463751777999903 + ], + [ + 36.101666667000075, + -6.383333332999939 + ] + ] + ], + [ + [ + [ + 35.325833333000105, + -6.118333333999942 + ], + [ + 35.31, + -6.041666665999969 + ], + [ + 35.14, + -6.038333333999958 + ], + [ + 35.09583333400019, + -5.989166666999893 + ], + [ + 35.019166667000036, + -6.059166666999829 + ], + [ + 35.07083333300017, + -6.150833332999923 + ], + [ + 35.199166667000156, + -6.234166666999954 + ], + [ + 35.31583333400005, + -6.230833332999907 + ], + [ + 35.325833333000105, + -6.118333333999942 + ] + ] + ], + [ + [ + [ + 37.74140463000009, + -5.150053530999912 + ], + [ + 37.77936887300007, + -5.235120734999953 + ], + [ + 37.84136577300012, + -5.156968518999975 + ], + [ + 37.79363303900004, + -5.077401478999946 + ], + [ + 37.74140463000009, + -5.150053530999912 + ] + ] + ], + [ + [ + [ + 37.86256759000008, + -4.796186062999936 + ], + [ + 37.719629669000085, + -4.953636177999897 + ], + [ + 37.79978290200006, + -5.020385896999926 + ], + [ + 37.90356831500014, + -4.970488656999919 + ], + [ + 37.89421183000019, + -4.838693166999974 + ], + [ + 37.86256759000008, + -4.796186062999936 + ] + ] + ], + [ + [ + [ + 37.11148896200018, + -4.777235673999883 + ], + [ + 37.12446863600013, + -4.836449008999921 + ], + [ + 37.19873929400018, + -4.92556622099994 + ], + [ + 37.2462459570001, + -4.88779326599996 + ], + [ + 37.31758709300004, + -4.899474245999897 + ], + [ + 37.590577263000114, + -5.060328721999895 + ], + [ + 37.45370745800017, + -4.917517053999916 + ], + [ + 37.372944279000194, + -4.857153319999895 + ], + [ + 37.350269836000166, + -4.745950580999931 + ], + [ + 37.214431836000074, + -4.751662533999934 + ], + [ + 37.145498420000024, + -4.716639019999946 + ], + [ + 37.11148896200018, + -4.777235673999883 + ] + ] + ], + [ + [ + [ + 33.477500000000134, + -4.688333332999946 + ], + [ + 33.4125, + -4.764166666999927 + ], + [ + 33.391666666000106, + -4.915 + ], + [ + 33.47833333300008, + -4.944166665999944 + ], + [ + 33.48583333300013, + -4.841666665999981 + ], + [ + 33.55166666700018, + -4.7725 + ], + [ + 33.477500000000134, + -4.688333332999946 + ] + ] + ], + [ + [ + [ + 36.907314650000046, + -4.523019679999891 + ], + [ + 36.80867342099998, + -4.56597705299987 + ], + [ + 36.79531582600015, + -4.73365562399988 + ], + [ + 36.74889117300006, + -4.925147209999921 + ], + [ + 36.8144120020001, + -4.996061306999934 + ], + [ + 36.84300560500009, + -4.87593228999998 + ], + [ + 36.840667357000086, + -4.783963780999954 + ], + [ + 36.89546371300014, + -4.614874287999839 + ], + [ + 36.907314650000046, + -4.523019679999891 + ] + ] + ], + [ + [ + [ + 38.0175, + -4.568333332999885 + ], + [ + 38.099166667000134, + -4.665 + ], + [ + 38.15500000000014, + -4.576666666999927 + ], + [ + 38.15333333400008, + -4.514166665999937 + ], + [ + 38.04629360500007, + -4.484304766999912 + ], + [ + 38.01916666700015, + -4.5625 + ], + [ + 38.0175, + -4.568333332999885 + ] + ] + ], + [ + [ + [ + 35.53577869400016, + -4.547430032999898 + ], + [ + 35.479284495, + -4.463862221999932 + ], + [ + 35.41675654799997, + -4.53618662599996 + ], + [ + 35.44097502200009, + -4.573470527999973 + ], + [ + 35.53577869400016, + -4.547430032999898 + ] + ] + ], + [ + [ + [ + 35.8725, + -4.479166666999959 + ], + [ + 35.843590089000145, + -4.588674883999943 + ], + [ + 36.04199815300012, + -4.528537471999925 + ], + [ + 36.12635894400006, + -4.611142727999891 + ], + [ + 36.17914022500014, + -4.62166316399987 + ], + [ + 36.194825528000024, + -4.697264972999903 + ], + [ + 36.29116843600008, + -4.773773082999924 + ], + [ + 36.278170633000116, + -4.867283460999886 + ], + [ + 36.32503143800005, + -4.905299571999876 + ], + [ + 36.41300206600016, + -4.903731577999906 + ], + [ + 36.252460036000116, + -4.645936774999939 + ], + [ + 36.232506646000104, + -4.532044516999918 + ], + [ + 36.12262007200013, + -4.477584126999943 + ], + [ + 36.13013012500011, + -4.380771455999934 + ], + [ + 36.17047994700016, + -4.334631917999957 + ], + [ + 36.07486268600019, + -4.290203536999968 + ], + [ + 35.97768227500006, + -4.319710628999928 + ], + [ + 35.8725, + -4.479166666999959 + ] + ] + ], + [ + [ + [ + 34.3308333330001, + -4.16 + ], + [ + 34.3841666670001, + -4.085833332999869 + ], + [ + 34.501666666000176, + -3.986666666999952 + ], + [ + 34.5891666660001, + -4.011666665999883 + ], + [ + 34.6425, + -3.931666665999899 + ], + [ + 34.753333333000114, + -3.924166666999895 + ], + [ + 34.78, + -3.850833332999969 + ], + [ + 35.02416666700003, + -3.748333332999948 + ], + [ + 35.1725, + -3.7125 + ], + [ + 35.29583333300019, + -3.663333332999969 + ], + [ + 35.368333333000066, + -3.550833332999957 + ], + [ + 35.33166666700009, + -3.489999999999895 + ], + [ + 35.340000000000146, + -3.413333332999912 + ], + [ + 35.288333334000185, + -3.330833333999919 + ], + [ + 35.185000000000116, + -3.447499999999877 + ], + [ + 35.08, + -3.524166666999974 + ], + [ + 35.04500000000013, + -3.515833332999932 + ], + [ + 34.93500000000017, + -3.58833333299998 + ], + [ + 34.756666666000115, + -3.64249999999987 + ], + [ + 34.53250000000014, + -3.82666666699987 + ], + [ + 34.449166667000156, + -3.880833332999885 + ], + [ + 34.3391666660001, + -3.868333332999839 + ], + [ + 34.21916666700014, + -3.985833333999835 + ], + [ + 34.176666666000074, + -4.054166666999947 + ], + [ + 34.02333333300004, + -4.096666666999965 + ], + [ + 33.954166666000106, + -4.19416666699982 + ], + [ + 33.98833333300013, + -4.285 + ], + [ + 34.004166667000106, + -4.4225 + ], + [ + 33.96333333300015, + -4.461666666999974 + ], + [ + 33.9483333340001, + -4.550833332999957 + ], + [ + 33.8925, + -4.64666666699992 + ], + [ + 33.891666667000095, + -4.742499999999893 + ], + [ + 33.852500000000134, + -4.841666665999981 + ], + [ + 33.89666666600016, + -4.93333333399994 + ], + [ + 33.955000000000155, + -4.986666666999952 + ], + [ + 33.93166666700017, + -5.085 + ], + [ + 34.01833333400015, + -5.075833333999981 + ], + [ + 34.0325, + -4.930833332999953 + ], + [ + 34.09, + -4.873333332999891 + ], + [ + 34.09833333300003, + -4.609166665999908 + ], + [ + 34.191666667000106, + -4.515833332999932 + ], + [ + 34.20583333400015, + -4.428333333999944 + ], + [ + 34.16333333300008, + -4.364999999999895 + ], + [ + 34.24833333400011, + -4.32416666599994 + ], + [ + 34.270833334000145, + -4.1825 + ], + [ + 34.3308333330001, + -4.16 + ] + ] + ], + [ + [ + [ + 35.893603738000024, + -3.439672390999817 + ], + [ + 35.81437369600013, + -3.419051789999912 + ], + [ + 35.73196153300012, + -3.597667834999925 + ], + [ + 35.752879710000116, + -3.670296489999942 + ], + [ + 35.73066660200004, + -3.74760478099995 + ], + [ + 35.777414821000036, + -3.775585088999946 + ], + [ + 35.87825210699998, + -3.66293486099994 + ], + [ + 35.864191579000135, + -3.57429865499995 + ], + [ + 35.893603738000024, + -3.439672390999817 + ] + ] + ], + [ + [ + [ + 36.21699992200013, + -3.122500383999977 + ], + [ + 36.12239373200009, + -3.074140710999927 + ], + [ + 36.15337174600012, + -3.185356559999889 + ], + [ + 36.23028248200012, + -3.244192267999892 + ], + [ + 36.27633427600017, + -3.231432663999954 + ], + [ + 36.21699992200013, + -3.122500383999977 + ] + ] + ], + [ + [ + [ + 36.00166666600006, + -2.145833332999928 + ], + [ + 35.96833333400019, + -2.190833332999944 + ], + [ + 35.97666666700002, + -2.341666665999981 + ], + [ + 36.02500000000015, + -2.508333333999815 + ], + [ + 35.9500000000001, + -2.498333332999835 + ], + [ + 35.92916666700006, + -2.574999999999875 + ], + [ + 36.011666667000156, + -2.586666666999918 + ], + [ + 36.084166667000034, + -2.443333332999941 + ], + [ + 36.12416666700011, + -2.307499999999891 + ], + [ + 36.108333334000065, + -2.191666665999946 + ], + [ + 36.00166666600006, + -2.145833332999928 + ] + ] + ], + [ + [ + [ + 70.25509655000013, + 22.967576328000177 + ], + [ + 70.28984054500006, + 22.94507075000007 + ], + [ + 70.43192252100005, + 23.04330565000015 + ], + [ + 70.45133249400016, + 22.974018994000176 + ], + [ + 70.37622058400012, + 22.906662691000122 + ], + [ + 70.25428048800012, + 22.73514145900009 + ], + [ + 70.19077248400004, + 22.589048239000192 + ], + [ + 70.38059258400017, + 22.691543828000135 + ], + [ + 70.60028863700018, + 22.976210191 + ], + [ + 70.60463750400004, + 23.07104606100006 + ], + [ + 70.69326758000017, + 23.111571893000132 + ], + [ + 70.84636656200007, + 23.140491470000143 + ], + [ + 70.94609059100003, + 23.117844574000173 + ], + [ + 71.06340052200017, + 23.162169419000065 + ], + [ + 71.236007546, + 23.129131142000062 + ], + [ + 71.33461761900014, + 23.15065100800018 + ], + [ + 71.43279250400019, + 23.124502320000033 + ], + [ + 71.58766962300001, + 23.143130429000053 + ], + [ + 71.68441053200007, + 23.10491330900004 + ], + [ + 71.65936255600008, + 23.301600367000106 + ], + [ + 71.53607951200013, + 23.410557564000158 + ], + [ + 71.51943255000015, + 23.506572768000126 + ], + [ + 71.45809160300007, + 23.546369708999976 + ], + [ + 71.43035152700008, + 23.63725602700009 + ], + [ + 71.26364854800016, + 23.636226226000076 + ], + [ + 71.29374662100014, + 23.725330718 + ], + [ + 71.17590360000008, + 23.75625893500012 + ], + [ + 71.07852164300016, + 23.69115233500014 + ], + [ + 71.078773603, + 23.85096522100008 + ], + [ + 71.12242152600004, + 23.904541676000065 + ], + [ + 71.29680651899997, + 23.922271580000086 + ], + [ + 71.34517663800011, + 24.093062245000056 + ], + [ + 71.29493752200017, + 24.269843457000093 + ], + [ + 71.36596660800006, + 24.294752294000034 + ], + [ + 71.34472653000017, + 24.37655816000006 + ], + [ + 71.36379955100006, + 24.47292439800009 + ], + [ + 71.2866285410002, + 24.52490091500016 + ], + [ + 71.3412785500002, + 24.655494487000112 + ], + [ + 71.25254051500008, + 24.651935531000163 + ], + [ + 71.14369949000002, + 24.708132838999973 + ], + [ + 71.08521258100006, + 24.69305278900015 + ], + [ + 70.98706049500004, + 24.591746593000153 + ], + [ + 71.00018353800004, + 24.44264494000015 + ], + [ + 71.09739651600017, + 24.433696421000036 + ], + [ + 71.04255657300013, + 24.354720284999985 + ], + [ + 70.97846250700007, + 24.35975009700013 + ], + [ + 70.87212364800013, + 24.30171195600019 + ], + [ + 70.80322256000011, + 24.219867868 + ], + [ + 70.65617363500013, + 24.221805931000063 + ], + [ + 70.57274654100007, + 24.257244115000162 + ], + [ + 70.55481748300002, + 24.413807170000098 + ], + [ + 70.38379648300014, + 24.35559015900003 + ], + [ + 70.11321255500008, + 24.28596353300003 + ], + [ + 70.03440053700012, + 24.172751178000112 + ], + [ + 69.73342852200011, + 24.172169307000047 + ], + [ + 69.58958450200015, + 24.285315612000147 + ], + [ + 69.50523355400003, + 24.260854704000053 + ], + [ + 69.29591362700006, + 24.27154330700006 + ], + [ + 69.19496148200011, + 24.23216831100018 + ], + [ + 69.1028515750001, + 24.26452463600009 + ], + [ + 68.97487650900007, + 24.230295291000118 + ], + [ + 68.93930857400017, + 24.286763669000152 + ], + [ + 68.844512602, + 24.215777164000144 + ], + [ + 68.82937656100006, + 24.30237177900017 + ], + [ + 68.73454253500017, + 24.313993120000077 + ], + [ + 68.68578349500012, + 24.19261712700012 + ], + [ + 68.61981154700015, + 24.158276973000056 + ], + [ + 68.5238494840001, + 24.165948426 + ], + [ + 68.46877250100016, + 24.124240746000055 + ], + [ + 68.40165759700011, + 24.1424398690001 + ], + [ + 68.22994961600011, + 24.073953015000086 + ], + [ + 68.19553352200006, + 24.13887990800015 + ], + [ + 68.05721250600004, + 24.081233704 + ], + [ + 67.91858655600015, + 24.128800334000175 + ], + [ + 67.95162952700008, + 23.988846523000177 + ], + [ + 67.9026875940001, + 23.96313067600005 + ], + [ + 67.79825561800004, + 23.979130723000083 + ], + [ + 67.67512562799999, + 24.08040791900015 + ], + [ + 67.44153556500004, + 24.060175681000032 + ], + [ + 67.50897250300011, + 23.88530369900019 + ], + [ + 67.63331552200009, + 23.836051971000188 + ], + [ + 67.65757761100014, + 23.79557710199998 + ], + [ + 67.93605058600008, + 23.83824585100018 + ], + [ + 67.9934086200002, + 23.78874853300016 + ], + [ + 68.13292657200014, + 23.866274600000168 + ], + [ + 68.19410658700019, + 23.848285359000045 + ], + [ + 68.18462363700019, + 23.71945081300015 + ], + [ + 68.3152695120001, + 23.567810618000067 + ], + [ + 68.36744652400017, + 23.59463824000005 + ], + [ + 68.41696949000004, + 23.694273085000077 + ], + [ + 68.66903662000016, + 23.84027477400008 + ], + [ + 68.68229662300013, + 23.79432702500003 + ], + [ + 68.85624659600012, + 23.820616864000044 + ], + [ + 69.04718048300015, + 23.706881647000046 + ], + [ + 69.22207660400011, + 23.81747599800002 + ], + [ + 69.34806851100006, + 23.803195749000054 + ], + [ + 69.40614353299998, + 23.762268760000097 + ], + [ + 69.51061255700006, + 23.778117933000033 + ], + [ + 69.57362351400008, + 23.820115794000117 + ], + [ + 69.69837154700019, + 23.792288379000126 + ], + [ + 69.66562663600007, + 23.873644137000042 + ], + [ + 69.7255406480001, + 23.943470755000078 + ], + [ + 69.8234635730002, + 23.94434046100008 + ], + [ + 69.93283064600007, + 23.884912600000064 + ], + [ + 69.94450361899999, + 23.746350520000135 + ], + [ + 69.84795348200015, + 23.55963993800009 + ], + [ + 69.66953260300005, + 23.525210767999965 + ], + [ + 69.45117949900003, + 23.599226997000017 + ], + [ + 69.21761357600013, + 23.63096540800018 + ], + [ + 69.18193064100012, + 23.57339950300019 + ], + [ + 69.324226523, + 23.524710703999972 + ], + [ + 69.42899360700005, + 23.522301913000092 + ], + [ + 69.64010659100018, + 23.45184447300005 + ], + [ + 69.85140263500017, + 23.474534452000114 + ], + [ + 69.94206264100018, + 23.561299052000038 + ], + [ + 70.0132065590002, + 23.553819376999968 + ], + [ + 70.07330363200015, + 23.451334685000177 + ], + [ + 70.18444062700007, + 23.45268534500019 + ], + [ + 70.26859258800016, + 23.421027232000085 + ], + [ + 70.28437051500009, + 23.51285148400018 + ], + [ + 70.33464852300006, + 23.56717979600012 + ], + [ + 70.52471957699998, + 23.664265704000172 + ], + [ + 70.54415151100005, + 23.732298427000046 + ], + [ + 70.61844652100012, + 23.720480949000148 + ], + [ + 70.62454955300007, + 23.804817647000107 + ], + [ + 70.56276654400006, + 23.847032600000034 + ], + [ + 70.60234857300009, + 23.920383808000054 + ], + [ + 70.84726761700011, + 23.87997280900015 + ], + [ + 70.8331065590001, + 23.786837627000125 + ], + [ + 70.74726849400014, + 23.82471578300016 + ], + [ + 70.72000149300015, + 23.736440093000056 + ], + [ + 70.76024653000013, + 23.709931486000073 + ], + [ + 70.9356236050001, + 23.711112496000112 + ], + [ + 70.99372058800003, + 23.633006234000106 + ], + [ + 71.05902064300005, + 23.469333649000077 + ], + [ + 71.03491948600015, + 23.431075625000062 + ], + [ + 70.92571250800012, + 23.40238722100014 + ], + [ + 70.78999356900005, + 23.27486444300007 + ], + [ + 70.5831905600001, + 23.178338613000165 + ], + [ + 70.48284962399998, + 23.174199628999986 + ], + [ + 70.44708253400006, + 23.207577206000053 + ], + [ + 70.31237059800003, + 23.214286584000092 + ], + [ + 70.21690357000017, + 23.067674189000172 + ], + [ + 70.25509655000013, + 22.967576328000177 + ] + ] + ], + [ + [ + [ + 67.91658763900006, + 23.98438550600008 + ], + [ + 67.90812661100006, + 24.061893803000032 + ], + [ + 67.84915958700003, + 24.08562749700019 + ], + [ + 67.7491606320001, + 24.045134523000172 + ], + [ + 67.78844460099998, + 23.990820293000013 + ], + [ + 67.91658763900006, + 23.98438550600008 + ] + ] + ], + [ + [ + [ + 68.60709351800006, + 24.200167881000084 + ], + [ + 68.68430358600017, + 24.254263343000105 + ], + [ + 68.6488265110001, + 24.32576080900003 + ], + [ + 68.57428758700007, + 24.297139963000177 + ], + [ + 68.60709351800006, + 24.200167881000084 + ] + ] + ], + [ + [ + [ + 49.24338154900016, + 31.247119207000026 + ], + [ + 49.02650449800018, + 31.399660122 + ], + [ + 48.92424762600018, + 31.273260351000033 + ], + [ + 48.808559592, + 31.070148565000068 + ], + [ + 48.7851755910001, + 30.92361345100005 + ], + [ + 48.72268649100016, + 30.85132624100015 + ], + [ + 48.52016059900018, + 30.701982352000186 + ], + [ + 48.470813486000054, + 30.574886883000033 + ], + [ + 48.530544604000056, + 30.533889318999968 + ], + [ + 48.64350147800019, + 30.529643717000056 + ], + [ + 48.766220587000134, + 30.56258644100012 + ], + [ + 49.20521958200004, + 30.737116273000083 + ], + [ + 49.40896956600005, + 30.82542314300008 + ], + [ + 49.55411546300013, + 30.943117972000152 + ], + [ + 49.24338154900016, + 31.247119207000026 + ] + ] + ], + [ + [ + [ + 45.76369462400015, + 31.026007954000136 + ], + [ + 45.71913961200016, + 31.10973612600003 + ], + [ + 45.63563959499999, + 31.131456319000165 + ], + [ + 45.54460156600004, + 31.089131731000123 + ], + [ + 45.52980851200016, + 31.022320922000063 + ], + [ + 45.61118656600013, + 30.850158139000143 + ], + [ + 45.68472653500004, + 30.85746196200006 + ], + [ + 45.76369462400015, + 31.026007954000136 + ] + ] + ], + [ + [ + [ + 45.460529568000084, + 31.798543495000047 + ], + [ + 45.31032552800008, + 31.861568534000185 + ], + [ + 45.26357646800005, + 31.71486729100019 + ], + [ + 45.37850560400017, + 31.59423158700008 + ], + [ + 45.46727750300005, + 31.533614502000034 + ], + [ + 45.54404450400011, + 31.589774594000176 + ], + [ + 45.514457559, + 31.706473820000156 + ], + [ + 45.460529568000084, + 31.798543495000047 + ] + ] + ], + [ + [ + [ + 46.057575549000035, + 32.74128330299999 + ], + [ + 45.80296752900006, + 32.69354383800004 + ], + [ + 45.51729550400006, + 32.61214449400006 + ], + [ + 45.35369852400004, + 32.825211970000055 + ], + [ + 45.28800150200004, + 32.952912948000176 + ], + [ + 45.23384854000011, + 33.13302965300005 + ], + [ + 45.13442257200006, + 33.077306258000135 + ], + [ + 45.108119489000046, + 32.94789319300003 + ], + [ + 45.132442599000115, + 32.80806544600017 + ], + [ + 45.19063161500003, + 32.65791588800005 + ], + [ + 45.25724746100019, + 32.58227239700017 + ], + [ + 45.4261704700001, + 32.47747882600015 + ], + [ + 45.53244361500015, + 32.45485841600009 + ], + [ + 45.56426953400006, + 32.34346895800013 + ], + [ + 45.6425365610001, + 32.234406483999976 + ], + [ + 45.70089355000016, + 31.944166993000124 + ], + [ + 45.75876656800011, + 31.851834797000095 + ], + [ + 45.832530501000065, + 31.911272046000022 + ], + [ + 45.840518622000104, + 31.996928223000054 + ], + [ + 45.89844562000019, + 32.00930863000008 + ], + [ + 46.18487955900014, + 31.97748170500006 + ], + [ + 46.37583557500011, + 31.882006966000176 + ], + [ + 46.71000646400012, + 31.69105732100013 + ], + [ + 46.8532255290001, + 31.56375632800018 + ], + [ + 47.028266490000135, + 31.436456676999967 + ], + [ + 47.075523493, + 31.37570279800019 + ], + [ + 46.901164484000105, + 31.22596395400012 + ], + [ + 46.76453057700013, + 31.144758902000092 + ], + [ + 46.53536247100004, + 31.108073994 + ], + [ + 46.307136490000175, + 31.045126403999973 + ], + [ + 46.26757457800011, + 30.959449440000128 + ], + [ + 46.40569359000011, + 30.817139141000155 + ], + [ + 46.5199474800001, + 30.794982921000155 + ], + [ + 46.720779557000185, + 30.807355783000162 + ], + [ + 46.91518757500012, + 30.845695278999983 + ], + [ + 47.24415548200005, + 30.847402170000123 + ], + [ + 47.50582458600002, + 30.74071311500012 + ], + [ + 47.596954481000125, + 30.69006697400016 + ], + [ + 47.703113464000126, + 30.540220170000055 + ], + [ + 47.76513653000006, + 30.52987254300018 + ], + [ + 47.947097590000055, + 30.593427318000067 + ], + [ + 48.03317252700009, + 30.592160310000054 + ], + [ + 48.035015540000074, + 30.826343811000072 + ], + [ + 47.91579051100007, + 30.98899112200013 + ], + [ + 47.93653153100007, + 31.151224535000097 + ], + [ + 48.06164954100012, + 31.323759809000023 + ], + [ + 48.17673458000007, + 31.346576858000105 + ], + [ + 48.139587494000125, + 31.46392601700012 + ], + [ + 47.9945985060001, + 31.631168288000083 + ], + [ + 47.903964484000085, + 31.8100753170001 + ], + [ + 47.73856757400017, + 32.03187908300015 + ], + [ + 47.67402256000008, + 32.141803553000045 + ], + [ + 47.54820248200002, + 32.19633269400015 + ], + [ + 47.344600522, + 32.24881011399998 + ], + [ + 47.16080449600008, + 32.21385003400019 + ], + [ + 46.94568261500018, + 32.245181923000075 + ], + [ + 46.63402954100019, + 32.46337225100012 + ], + [ + 46.53521360800005, + 32.506141750000154 + ], + [ + 46.34677551600004, + 32.6766155790001 + ], + [ + 46.207275502000186, + 32.75039610800002 + ], + [ + 46.06426246400008, + 32.78198901000013 + ], + [ + 46.057575549000035, + 32.74128330299999 + ] + ] + ], + [ + [ + [ + 44.42048659200003, + 32.65512002100007 + ], + [ + 44.307197459, + 32.74855007800005 + ], + [ + 44.214717575000066, + 32.72220307400005 + ], + [ + 44.213447549000136, + 32.66502977700003 + ], + [ + 44.32052250600003, + 32.60586577800018 + ], + [ + 44.40098156800019, + 32.51547550200007 + ], + [ + 44.471633468000164, + 32.57294669200013 + ], + [ + 44.42048659200003, + 32.65512002100007 + ] + ] + ], + [ + [ + [ + 119.94669358200008, + 34.03706736500004 + ], + [ + 119.9760815410001, + 33.94323313199999 + ], + [ + 120.23847953400013, + 33.73104592400017 + ], + [ + 120.46428666500003, + 33.29997436600007 + ], + [ + 120.53613265100023, + 33.12549566400014 + ], + [ + 120.79273254700001, + 32.81759013800007 + ], + [ + 120.90693664900016, + 32.833596723000085 + ], + [ + 120.88581861100022, + 32.97303437700015 + ], + [ + 120.81498767400012, + 33.046923200000094 + ], + [ + 120.74942057100031, + 33.267474542000116 + ], + [ + 120.66304053300018, + 33.32358669000013 + ], + [ + 120.64749159900009, + 33.423856716000046 + ], + [ + 120.4885866410001, + 33.636070746000144 + ], + [ + 120.50749168800019, + 33.72106726800018 + ], + [ + 120.45192754900006, + 33.77301377800018 + ], + [ + 120.33637966100014, + 34.14300640700003 + ], + [ + 120.25388362900003, + 34.30799478300014 + ], + [ + 120.10247762300003, + 34.36327645200015 + ], + [ + 119.9274676760001, + 34.45326992900016 + ], + [ + 119.78613269500033, + 34.47299942100011 + ], + [ + 119.6480406720002, + 34.527716149000184 + ], + [ + 119.50424962600005, + 34.63515823400013 + ], + [ + 119.51546461300006, + 34.53681772300007 + ], + [ + 119.69984469000008, + 34.38612987900018 + ], + [ + 119.89775869000005, + 34.14869436600003 + ], + [ + 119.94669358200008, + 34.03706736500004 + ] + ] + ], + [ + [ + [ + 117.88916065100022, + 38.24430130600001 + ], + [ + 117.80053660900023, + 38.273185848000026 + ], + [ + 117.67221067700018, + 38.38457279100004 + ], + [ + 117.67851252700007, + 38.27399067800019 + ], + [ + 117.78082254000003, + 38.0947756970001 + ], + [ + 118.09885357200017, + 37.752583997000045 + ], + [ + 118.21549261700011, + 37.72152150200003 + ], + [ + 118.38207959000033, + 37.71314479600005 + ], + [ + 118.54003856700012, + 37.74473719400015 + ], + [ + 118.67523162400005, + 37.72429859400012 + ], + [ + 118.74025759100005, + 37.62448555000003 + ], + [ + 118.67629964700006, + 37.565919684000164 + ], + [ + 118.51995854400002, + 37.602188849000186 + ], + [ + 118.44186368200008, + 37.53621120100013 + ], + [ + 118.6114116460003, + 37.33473003000012 + ], + [ + 118.71042656500003, + 37.26709326800011 + ], + [ + 118.78960453700006, + 37.13326512000003 + ], + [ + 119.01318359100003, + 37.00571149600006 + ], + [ + 119.44687667200003, + 36.87988219800013 + ], + [ + 119.53272965700023, + 36.87213547600004 + ], + [ + 119.71478258200011, + 36.94119498200007 + ], + [ + 119.81160764600008, + 36.99943278000012 + ], + [ + 119.76721155400003, + 37.14932082300004 + ], + [ + 119.64276158200005, + 37.13014822500014 + ], + [ + 119.3874965880002, + 37.12098512900013 + ], + [ + 119.23275760300021, + 37.1415459370001 + ], + [ + 118.97109956300005, + 37.26876445200014 + ], + [ + 118.93887366000001, + 37.345704959000045 + ], + [ + 118.95247665100032, + 37.53153812300019 + ], + [ + 118.97998069300002, + 37.610142772000074 + ], + [ + 119.09387164600003, + 37.719583774000114 + ], + [ + 119.03166166400013, + 37.78069438600005 + ], + [ + 119.03692667200005, + 37.87068886900016 + ], + [ + 118.94831855600012, + 38.04069180200008 + ], + [ + 118.86360165500002, + 38.04735960600004 + ], + [ + 118.83055164300015, + 38.15429894500011 + ], + [ + 118.61637859400003, + 38.13680524200015 + ], + [ + 118.54749259300013, + 38.065418417000046 + ], + [ + 118.45999155900017, + 38.109026442000186 + ], + [ + 118.17803959100002, + 38.14402206100016 + ], + [ + 118.08360253200021, + 38.13180007200009 + ], + [ + 117.88916065100022, + 38.24430130600001 + ] + ] + ], + [ + [ + [ + 118.97804262900002, + 39.15983630700015 + ], + [ + 119.1140056480001, + 39.28518951300015 + ], + [ + 118.88979359400025, + 39.401036970000064 + ], + [ + 118.6698075270001, + 39.42390565200009 + ], + [ + 118.30580862900024, + 39.4185534720001 + ], + [ + 118.06536066100011, + 39.373475093000025 + ], + [ + 117.76710455000011, + 39.257330917000104 + ], + [ + 117.62812069300003, + 39.10196429500013 + ], + [ + 117.6519626810001, + 39.05185895400018 + ], + [ + 117.87996654100016, + 39.19344405100014 + ], + [ + 118.05165054900033, + 39.22206154500009 + ], + [ + 118.14305168300007, + 39.19289403000005 + ], + [ + 118.24275157200009, + 39.06595882400006 + ], + [ + 118.34583255200005, + 39.04234633200019 + ], + [ + 118.50138860500022, + 39.113451022000106 + ], + [ + 118.60498054700031, + 39.18733314000019 + ], + [ + 118.74832165300006, + 39.14067175600013 + ], + [ + 118.84915158900003, + 39.184556048000104 + ], + [ + 118.97804262900002, + 39.15983630700015 + ] + ] + ], + [ + [ + [ + 132.563003664, + 44.17634970600011 + ], + [ + 132.8589016100001, + 44.44551809800009 + ], + [ + 133.01629665300015, + 44.62145894000008 + ], + [ + 133.33329754900012, + 44.933317706000025 + ], + [ + 133.45179754300023, + 45.175539789000084 + ], + [ + 133.5592035860002, + 45.45259002000006 + ], + [ + 133.88830560300005, + 45.76922563200003 + ], + [ + 134.2634886420002, + 46.06784954100016 + ], + [ + 134.20297264200008, + 46.228230888000155 + ], + [ + 134.11958360200015, + 46.34288928900014 + ], + [ + 133.9111027040002, + 46.34288928900014 + ], + [ + 133.72348067400003, + 46.32204215500008 + ], + [ + 133.51499960800027, + 46.3637372610001 + ], + [ + 133.43160956200006, + 46.35331520300019 + ], + [ + 133.21272269800033, + 46.2178049740001 + ], + [ + 132.92085259200007, + 46.16568881500018 + ], + [ + 132.68110669100008, + 46.06144828200013 + ], + [ + 132.52474966300008, + 45.94678904300008 + ], + [ + 132.29942365400007, + 45.88629181900012 + ], + [ + 132.1916355640002, + 45.838977819000036 + ], + [ + 131.99348469100005, + 45.86773277600008 + ], + [ + 131.70429964300013, + 45.813785841000026 + ], + [ + 131.68969769700004, + 45.73072855700002 + ], + [ + 131.60819961400023, + 45.62260854400017 + ], + [ + 131.50016761100017, + 45.54744734700006 + ], + [ + 131.26872264500014, + 45.459602152000116 + ], + [ + 131.1545255840001, + 45.38219007900011 + ], + [ + 131.04153468000004, + 45.34936503800009 + ], + [ + 130.7539976820002, + 45.32440909500019 + ], + [ + 130.70817566100004, + 45.26160785300016 + ], + [ + 130.90338163700028, + 45.20690101500003 + ], + [ + 130.94061254200017, + 45.092528940000136 + ], + [ + 131.12326058300005, + 45.12609795900005 + ], + [ + 131.30967763000012, + 45.23291274200011 + ], + [ + 131.4656376910002, + 45.27186881100005 + ], + [ + 131.6533205730001, + 45.27585490900003 + ], + [ + 131.81970269200008, + 45.02553087900009 + ], + [ + 131.79969760400002, + 44.920397841000124 + ], + [ + 131.87840266900014, + 44.67116077600019 + ], + [ + 131.75270060800017, + 44.300590299000135 + ], + [ + 131.8533325640003, + 44.087711751000086 + ], + [ + 131.84790058800013, + 43.876137427000174 + ], + [ + 131.8173215610002, + 43.779316554000104 + ], + [ + 131.8296506700002, + 43.657464134000065 + ], + [ + 131.80853263300003, + 43.54456140700006 + ], + [ + 131.72964467400016, + 43.40876585799998 + ], + [ + 131.80740359000015, + 43.33329319000012 + ], + [ + 131.99363657100002, + 43.31759539400019 + ], + [ + 132.13723768300008, + 43.479139647000125 + ], + [ + 132.4161076250001, + 43.97252713400013 + ], + [ + 132.563003664, + 44.17634970600011 + ] + ] + ], + [ + [ + [ + 124.30541265400018, + 45.16696895700005 + ], + [ + 123.99550653600011, + 45.28466680399998 + ], + [ + 123.88026458800005, + 45.24150804900012 + ], + [ + 123.66732753400004, + 45.06680990800004 + ], + [ + 123.6448516280002, + 44.8573069200001 + ], + [ + 123.68247262700004, + 44.78563980400014 + ], + [ + 123.82294460700018, + 44.77460368700014 + ], + [ + 123.93135865800002, + 44.948778797000045 + ], + [ + 124.02210265000008, + 44.999190748 + ], + [ + 124.30476356000008, + 45.05297792400006 + ], + [ + 124.35446154000022, + 45.14103987500016 + ], + [ + 124.30541265400018, + 45.16696895700005 + ] + ] + ], + [ + [ + [ + 125.25059461400019, + 46.284852153000145 + ], + [ + 125.28781864600012, + 46.327806389000045 + ], + [ + 125.29557056500016, + 46.462690825000095 + ], + [ + 125.19525863000001, + 46.53398410900019 + ], + [ + 124.90287069000033, + 46.57500732200015 + ], + [ + 124.87007867300008, + 46.649352456000145 + ], + [ + 124.3378755980001, + 46.958923969000125 + ], + [ + 124.24998463700013, + 46.90572369400019 + ], + [ + 124.167350639, + 46.772052120000126 + ], + [ + 123.93493655700001, + 46.76071123700012 + ], + [ + 123.84949462100008, + 46.814807202000054 + ], + [ + 123.72904164300007, + 46.93839283200015 + ], + [ + 123.71200559200008, + 47.08809362300019 + ], + [ + 123.82015963600008, + 47.29201409600017 + ], + [ + 123.94032260000006, + 47.449836951000066 + ], + [ + 124.07837656900017, + 47.596017007 + ], + [ + 123.94103958800008, + 47.64662241200017 + ], + [ + 123.75549358800015, + 47.803022523000095 + ], + [ + 123.71279868800002, + 47.891970944000036 + ], + [ + 123.55921154400005, + 47.763494138000056 + ], + [ + 123.32330355000022, + 47.725449686000104 + ], + [ + 123.32836957200016, + 47.61951517000011 + ], + [ + 123.16577154700008, + 47.56400366900016 + ], + [ + 123.12920365000002, + 47.47644412900013 + ], + [ + 122.87363456000003, + 47.17481011100011 + ], + [ + 122.84132366500012, + 47.06091060800003 + ], + [ + 123.05374858400023, + 46.991925198000104 + ], + [ + 123.11758465600019, + 46.928932849000034 + ], + [ + 122.92874859100004, + 46.82671738300007 + ], + [ + 122.86415060500008, + 46.76777215200019 + ], + [ + 122.8321376020001, + 46.6257203510001 + ], + [ + 123.09185757700004, + 46.497690971000054 + ], + [ + 123.15460165500008, + 46.444162628000186 + ], + [ + 123.23348257200018, + 46.28337224400019 + ], + [ + 123.35343163000005, + 46.19552788700014 + ], + [ + 123.42765053300002, + 46.28132823300007 + ], + [ + 123.69620553700008, + 46.24746484200011 + ], + [ + 123.78578964200005, + 46.19773987100018 + ], + [ + 123.83291655800008, + 46.03309716500013 + ], + [ + 124.02375757300001, + 45.68382242100017 + ], + [ + 124.20729057500023, + 45.51560215000012 + ], + [ + 124.30363468500002, + 45.46948927799997 + ], + [ + 124.41762555100013, + 45.47138928700008 + ], + [ + 124.50369260900004, + 45.66169352600019 + ], + [ + 124.57570656800021, + 45.74928273800003 + ], + [ + 124.95505558100024, + 45.91238099500009 + ], + [ + 124.92752069400012, + 46.00710337400011 + ], + [ + 125.0286946240002, + 46.17279180700007 + ], + [ + 125.25059461400019, + 46.284852153000145 + ] + ] + ], + [ + [ + [ + 134.2655026460002, + 47.41653363800009 + ], + [ + 134.70330755400016, + 47.34356632099997 + ], + [ + 134.9221955910001, + 47.34356632099997 + ], + [ + 135.08531161800022, + 47.36803326400013 + ], + [ + 135.09756462000007, + 47.40481171400012 + ], + [ + 135.35499566500005, + 47.554973677000135 + ], + [ + 135.59095763900018, + 47.941104320000136 + ], + [ + 135.8054805490002, + 48.370143098000085 + ], + [ + 135.97709666400021, + 48.927895388000195 + ], + [ + 135.6338656070002, + 49.07805902800004 + ], + [ + 134.947402656, + 48.927895388000195 + ], + [ + 134.7135616390001, + 48.74907150700017 + ], + [ + 134.53820769800006, + 48.690619132000165 + ], + [ + 134.30503857500014, + 48.675073886 + ], + [ + 134.14959768900007, + 48.581807108000135 + ], + [ + 133.86979668500032, + 48.55071762400013 + ], + [ + 133.5900116060002, + 48.50408607900016 + ], + [ + 133.434554627, + 48.50408607900016 + ], + [ + 132.6107176480001, + 48.34863999600009 + ], + [ + 132.33360254100012, + 48.317175673000065 + ], + [ + 132.19670058100007, + 48.345453867000174 + ], + [ + 132.0274045770003, + 48.33431465300009 + ], + [ + 131.72038267100004, + 48.23364095500017 + ], + [ + 131.63142368900003, + 48.13102081200009 + ], + [ + 131.24281267300023, + 47.86676689700016 + ], + [ + 131.10403467600008, + 47.73788993900013 + ], + [ + 130.92367556500005, + 47.6458561390001 + ], + [ + 130.8673855530002, + 47.552044537000086 + ], + [ + 130.7735746220003, + 47.51034926300002 + ], + [ + 130.62763965300007, + 47.58331389800014 + ], + [ + 130.5129856110001, + 47.53119639700009 + ], + [ + 130.38789358500003, + 47.33314426200019 + ], + [ + 130.15858466300017, + 47.10382176200011 + ], + [ + 130.02307158400004, + 46.89534773600019 + ], + [ + 129.87713661500004, + 46.7285688180001 + ], + [ + 129.6373905470001, + 46.593058421000194 + ], + [ + 129.50503560200002, + 46.46705075600016 + ], + [ + 129.68331868300004, + 46.44228172900006 + ], + [ + 129.82466154200006, + 46.45234185700002 + ], + [ + 130.04425064200007, + 46.4977669110001 + ], + [ + 130.12434358300015, + 46.48488090799998 + ], + [ + 130.14816260500027, + 46.57221128700013 + ], + [ + 130.2419737030001, + 46.67644779700015 + ], + [ + 130.58595259300023, + 46.69729593700009 + ], + [ + 130.69018558200003, + 46.6556004950001 + ], + [ + 130.8673855530002, + 46.540942094000116 + ], + [ + 131.00289963800003, + 46.47839968500011 + ], + [ + 131.21136461100002, + 46.44712680500004 + ], + [ + 131.49281265900015, + 46.44712680500004 + ], + [ + 131.5553585880001, + 46.41585761200014 + ], + [ + 131.53449955100018, + 46.2178049740001 + ], + [ + 131.77424662500005, + 46.35331520300019 + ], + [ + 132.09738156600008, + 46.4054315300001 + ], + [ + 132.26416065200021, + 46.4054315300001 + ], + [ + 132.54560870000034, + 46.3637372610001 + ], + [ + 132.74238561200002, + 46.40746447700019 + ], + [ + 133.30653362900023, + 46.48882174400012 + ], + [ + 133.50457754900015, + 46.582636195000134 + ], + [ + 133.67135663600027, + 46.738989870000125 + ], + [ + 133.89025858700018, + 47.218481671 + ], + [ + 133.98406968500012, + 47.34356632099997 + ], + [ + 134.14042654600007, + 47.41653363800009 + ], + [ + 134.2655026460002, + 47.41653363800009 + ] + ] + ], + [ + [ + [ + 128.45320163500003, + 51.66304819500016 + ], + [ + 128.26119955900015, + 51.55977459800016 + ], + [ + 128.077499589, + 51.490975267000124 + ], + [ + 127.93469961900007, + 51.51044659500019 + ], + [ + 127.79949968800008, + 51.65358804400017 + ], + [ + 127.63909956600003, + 51.71011911900018 + ], + [ + 127.34429964900016, + 51.633575915 + ], + [ + 127.23989868600017, + 51.63841596100008 + ], + [ + 127.18840060800017, + 51.712659170999984 + ], + [ + 127.21730057200034, + 51.87708294300006 + ], + [ + 127.16179661500007, + 51.924733895000145 + ], + [ + 126.77980059800007, + 51.90649168800002 + ], + [ + 126.68080160400018, + 51.75504897000019 + ], + [ + 126.73027059100002, + 51.64207482900014 + ], + [ + 126.68193064600007, + 51.56513063500006 + ], + [ + 126.80246761100011, + 51.53485704400009 + ], + [ + 126.9716496210001, + 51.288744083000154 + ], + [ + 126.89887961400007, + 51.17346223600015 + ], + [ + 126.94109356100012, + 51.045400166000036 + ], + [ + 127.072715592, + 50.94176128600009 + ], + [ + 127.18129761600005, + 50.56173484900012 + ], + [ + 127.22347267000032, + 50.18211023900005 + ], + [ + 127.22347267000032, + 49.92967715500009 + ], + [ + 127.3754576980001, + 49.77230709000003 + ], + [ + 127.594352608, + 49.62637413200008 + ], + [ + 127.94876059700016, + 49.532562196000185 + ], + [ + 128.28231759600033, + 49.522135946000105 + ], + [ + 128.45951857300008, + 49.574257638 + ], + [ + 128.79307557200002, + 49.55340933000008 + ], + [ + 128.7409666210002, + 49.49086658600015 + ], + [ + 128.82435566100014, + 49.31366041200005 + ], + [ + 128.94943260000002, + 49.209423399000116 + ], + [ + 129.00061065700015, + 49.127928502000145 + ], + [ + 129.44976767900005, + 48.92797937500012 + ], + [ + 129.8875576680001, + 48.87586187400012 + ], + [ + 130.10646062500007, + 48.823741356000085 + ], + [ + 130.3566285830001, + 48.83416743800018 + ], + [ + 130.4191746800002, + 48.87586187400012 + ], + [ + 130.63807663100022, + 48.84458949600008 + ], + [ + 130.78399668100008, + 48.92798339800004 + ], + [ + 130.8882445900001, + 49.15730573100018 + ], + [ + 130.8882445900001, + 49.298379532000126 + ], + [ + 130.7346956670002, + 49.565578512000116 + ], + [ + 130.41870160600013, + 49.64387655200011 + ], + [ + 130.28379856200013, + 49.74048871499997 + ], + [ + 130.28810166300002, + 49.99769395200002 + ], + [ + 130.14050255100005, + 50.163334273000146 + ], + [ + 129.95629866100012, + 50.22462995800004 + ], + [ + 129.68179367900018, + 50.2648674510001 + ], + [ + 129.3529055680001, + 50.358076897000046 + ], + [ + 129.2834926810001, + 50.45604709600019 + ], + [ + 129.26860055300006, + 50.58281215000011 + ], + [ + 129.30799868300005, + 50.75483445200007 + ], + [ + 129.30949368000017, + 50.880175420000114 + ], + [ + 129.18040465900015, + 50.93104519100007 + ], + [ + 128.89880355800017, + 50.990655275 + ], + [ + 128.7247007000002, + 51.05343807600019 + ], + [ + 128.72340368400035, + 51.130938494000134 + ], + [ + 128.78990168000018, + 51.213009732000046 + ], + [ + 129.06329354600007, + 51.413951947000044 + ], + [ + 129.1806946730003, + 51.57078473100012 + ], + [ + 129.20979261800028, + 51.72458444000006 + ], + [ + 129.06649761200015, + 51.794939621000026 + ], + [ + 128.66029365300017, + 51.749768707000044 + ], + [ + 128.45320163500003, + 51.66304819500016 + ] + ] + ] + ] + }, + "properties": { + "biome_name": "Flooded Grasslands & Savannas", + "biome_num": 9, + "color_bio": "#BEE7FF", + "area_km2": 1156362.9141420852, + "percentage": 1.515454198617345 + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + -65.69652558199988, + -25.414634991999947 + ], + [ + -65.76129958799999, + -25.31301581599996 + ], + [ + -65.71413461899982, + -25.20999551999995 + ], + [ + -65.77085847799992, + -25.131094318999942 + ], + [ + -65.80001861699992, + -24.987502258999882 + ], + [ + -65.88148451299998, + -24.945693157999983 + ], + [ + -65.88686351599995, + -24.805647145999956 + ], + [ + -65.78341658099993, + -24.716954204999922 + ], + [ + -65.59510757099997, + -24.593268494999904 + ], + [ + -65.52087357999983, + -24.49250226099997 + ], + [ + -65.51974453799994, + -24.443419679999977 + ], + [ + -65.43379247899998, + -24.366511526999943 + ], + [ + -65.42987058699998, + -24.073210126999925 + ], + [ + -65.46398962699993, + -24.019467710999947 + ], + [ + -65.37863955699987, + -23.881475432999935 + ], + [ + -65.20754261699994, + -23.758587678999845 + ], + [ + -65.12731958899997, + -23.49957882399997 + ], + [ + -65.03149448699992, + -23.467885674999877 + ], + [ + -64.97023048599993, + -23.50340885099996 + ], + [ + -64.87575553999989, + -23.470434276999924 + ], + [ + -64.82976554599998, + -23.387499702999946 + ], + [ + -64.84402450499994, + -23.23916432399983 + ], + [ + -64.82949849899984, + -23.1217434159999 + ], + [ + -64.87552654699988, + -23.034686957999952 + ], + [ + -65.02028654099985, + -22.87044021199995 + ], + [ + -65.0332716179999, + -22.677763391999974 + ], + [ + -64.85305751399994, + -22.473053343999936 + ], + [ + -64.84362049699996, + -22.368829742999935 + ], + [ + -64.95535260799994, + -22.229511111999955 + ], + [ + -64.8776096169999, + -22.116747188999966 + ], + [ + -64.78312662499985, + -22.108873732999825 + ], + [ + -64.58353456799995, + -22.217735878999918 + ], + [ + -64.52910651199988, + -22.172377042999983 + ], + [ + -64.42930553699989, + -21.981868452999947 + ], + [ + -64.35672764299994, + -22.06351606899989 + ], + [ + -64.25240362699998, + -22.07162975199998 + ], + [ + -64.22356451499991, + -21.859702046999928 + ], + [ + -64.16642759599995, + -21.704623258999902 + ], + [ + -64.19953158699997, + -21.54035824099998 + ], + [ + -64.26162757599997, + -21.478513708999913 + ], + [ + -64.35305754299992, + -21.44515054999988 + ], + [ + -64.46226452199994, + -21.454381874999967 + ], + [ + -64.51926448099994, + -21.40563473799989 + ], + [ + -64.63507053199993, + -21.385535939999954 + ], + [ + -64.73207848799984, + -21.235783180999874 + ], + [ + -64.82415050899994, + -21.218316132999973 + ], + [ + -64.94988257799997, + -21.15128873499998 + ], + [ + -65.06060751899992, + -21.14118015999992 + ], + [ + -65.08125248099998, + -21.18447403099998 + ], + [ + -65.08474756699997, + -21.43668415699989 + ], + [ + -65.04139753799996, + -21.563580973999876 + ], + [ + -65.10095263599999, + -21.73871162099988 + ], + [ + -65.1150965949999, + -21.865230749999967 + ], + [ + -65.07163961199996, + -21.936853944999882 + ], + [ + -65.13101952899984, + -21.99624559699987 + ], + [ + -65.23674751399994, + -21.902162588999943 + ], + [ + -65.31845061899992, + -21.874281193999877 + ], + [ + -65.35018148599988, + -21.927998463999927 + ], + [ + -65.58253454799996, + -22.041744075999873 + ], + [ + -65.61608160699996, + -22.01027874599987 + ], + [ + -65.49674258399995, + -21.94122862799992 + ], + [ + -65.44074258599994, + -21.8511033879999 + ], + [ + -65.50299850099992, + -21.754019825999933 + ], + [ + -65.54311361899994, + -21.627795404999915 + ], + [ + -65.64390550199994, + -21.51364779799991 + ], + [ + -65.72454863099995, + -21.560031405999894 + ], + [ + -65.72454863099995, + -21.636379982999927 + ], + [ + -65.80744950899998, + -21.66066788799992 + ], + [ + -65.81404858099984, + -21.556024352999827 + ], + [ + -65.74880954699995, + -21.520090295999978 + ], + [ + -65.73446660199988, + -21.43640587799996 + ], + [ + -65.86266361999998, + -21.224987624999983 + ], + [ + -65.72771464299996, + -21.26432842299988 + ], + [ + -65.62208556399997, + -21.415417088999902 + ], + [ + -65.5356066189999, + -21.465386475999935 + ], + [ + -65.44680052299998, + -21.55265281699991 + ], + [ + -65.40374754799996, + -21.69129804499994 + ], + [ + -65.31205757299995, + -21.70427440399982 + ], + [ + -65.32138864299992, + -21.551626703999943 + ], + [ + -65.41040059899996, + -21.34379422899991 + ], + [ + -65.47344256999997, + -21.233240111999976 + ], + [ + -65.4088135699999, + -20.98795360599985 + ], + [ + -65.42849763099991, + -20.928639905999944 + ], + [ + -65.39516447899996, + -20.832418506999886 + ], + [ + -65.53939054599982, + -20.805563894999977 + ], + [ + -65.66989862199989, + -20.869491329999903 + ], + [ + -65.71965058199993, + -20.989984540999842 + ], + [ + -65.82131150099991, + -20.920061698999973 + ], + [ + -65.88735955699997, + -20.78085018899992 + ], + [ + -65.92977148399996, + -20.78073435099992 + ], + [ + -66.02425363799995, + -20.86381376399987 + ], + [ + -66.08174159099991, + -20.86550657299989 + ], + [ + -66.01205461599994, + -20.705523365999966 + ], + [ + -65.92093662299993, + -20.670481478999875 + ], + [ + -65.99931361999995, + -20.584541489999935 + ], + [ + -66.04383057799998, + -20.440033455999924 + ], + [ + -65.98674763799994, + -20.427631256999973 + ], + [ + -65.9080965529999, + -20.4952613129999 + ], + [ + -65.85681154299994, + -20.472872578999954 + ], + [ + -65.87961551599994, + -20.206297714999835 + ], + [ + -65.78606459199989, + -20.230662398999982 + ], + [ + -65.66818251099994, + -20.312244803999874 + ], + [ + -65.66661861599994, + -20.416564797999968 + ], + [ + -65.62843351499998, + -20.436051548999956 + ], + [ + -65.52909857399993, + -20.159486294999965 + ], + [ + -65.45083657699996, + -20.14386041599994 + ], + [ + -65.41596953599992, + -20.22278173399991 + ], + [ + -65.4167326239999, + -20.367194549999965 + ], + [ + -65.46432456799994, + -20.487672840999892 + ], + [ + -65.46074650099985, + -20.561582451999982 + ], + [ + -65.36866760599997, + -20.579739664999977 + ], + [ + -65.28348550899995, + -20.506382757999972 + ], + [ + -65.27633658399998, + -20.420322739999847 + ], + [ + -65.22499860099998, + -20.3326406569999 + ], + [ + -65.1776425239999, + -20.315456581999968 + ], + [ + -65.08438161399994, + -20.35640720799995 + ], + [ + -64.98269655499996, + -20.35412917399998 + ], + [ + -64.96450061699994, + -20.402049687999977 + ], + [ + -65.00765953899992, + -20.549797159999912 + ], + [ + -65.06935856099994, + -20.64962663299997 + ], + [ + -65.0088884939999, + -20.671754521999958 + ], + [ + -64.99725357399996, + -20.77844340899992 + ], + [ + -64.92959552199989, + -20.79845637699998 + ], + [ + -64.90271760799993, + -20.861186707999934 + ], + [ + -64.83736457999998, + -20.84977642299998 + ], + [ + -64.85160861799994, + -20.678576049999947 + ], + [ + -64.80529759799992, + -20.63541142799994 + ], + [ + -64.90662357499997, + -20.561688733999915 + ], + [ + -64.89035748599997, + -20.426521157999957 + ], + [ + -64.92011257199988, + -20.287458174999927 + ], + [ + -65.0521086039999, + -20.186261781999917 + ], + [ + -65.12181854599999, + -20.032563660999926 + ], + [ + -65.10387456799998, + -19.87320574399996 + ], + [ + -65.04026061599996, + -19.798585180999964 + ], + [ + -64.93597448599996, + -19.735833559999833 + ], + [ + -64.85752858899991, + -19.758556228999907 + ], + [ + -64.93793450999993, + -19.545494787999928 + ], + [ + -65.01131455199993, + -19.454343937999965 + ], + [ + -65.09917449899984, + -19.49282072899996 + ], + [ + -65.09801461099988, + -19.587127365999947 + ], + [ + -65.14949056099994, + -19.723174370999914 + ], + [ + -65.41561850199992, + -19.834475986999962 + ], + [ + -65.40959962499994, + -19.737713620999955 + ], + [ + -65.44194052799992, + -19.659467045999918 + ], + [ + -65.41716747699991, + -19.50007325399997 + ], + [ + -65.45449058399993, + -19.434291239999936 + ], + [ + -65.43542460399993, + -19.36164025599993 + ], + [ + -65.46083853399989, + -19.22773918499996 + ], + [ + -65.60102854699994, + -19.065093717999957 + ], + [ + -65.4643636269999, + -19.01149496799991 + ], + [ + -65.35840647999999, + -19.077248985999972 + ], + [ + -65.32614855799994, + -18.9810366399999 + ], + [ + -65.22884354699994, + -18.96461481499989 + ], + [ + -65.1639936009999, + -19.000192641999945 + ], + [ + -65.10364557399993, + -19.149797710999962 + ], + [ + -65.04514357799997, + -19.21062736199997 + ], + [ + -64.76119956699995, + -19.332954197999925 + ], + [ + -64.8549196379999, + -19.2379235329999 + ], + [ + -64.97233551699992, + -19.180869090999977 + ], + [ + -65.05284855799994, + -19.100120852999964 + ], + [ + -65.14334863799996, + -18.956551256999944 + ], + [ + -65.22087051299991, + -18.90100857599998 + ], + [ + -65.21814756799995, + -18.790787889999933 + ], + [ + -65.27417757399996, + -18.79696367599996 + ], + [ + -65.30826559999991, + -18.88524338899998 + ], + [ + -65.41275054999994, + -18.98254152699991 + ], + [ + -65.53246357299997, + -18.972480392999955 + ], + [ + -65.62728854699986, + -18.904247342999838 + ], + [ + -65.65930959599996, + -18.818055393999828 + ], + [ + -65.76014757999997, + -18.69492456599994 + ], + [ + -65.79542550099995, + -18.5272217939999 + ], + [ + -65.85231750199995, + -18.501618096999948 + ], + [ + -65.98629752999989, + -18.514437379999947 + ], + [ + -66.13443761099984, + -18.495892586999958 + ], + [ + -66.07507361899991, + -18.435115071999974 + ], + [ + -65.92126452299988, + -18.43531724299993 + ], + [ + -65.90814952599999, + -18.396209629999873 + ], + [ + -66.08184854399997, + -18.36813125999987 + ], + [ + -66.13167560599993, + -18.317618222999897 + ], + [ + -66.13921361899986, + -18.242695743999832 + ], + [ + -66.2010345139999, + -18.24026499199988 + ], + [ + -66.2661585489999, + -18.299346344999947 + ], + [ + -66.38447548199997, + -18.202568219999932 + ], + [ + -66.49393458799995, + -18.15652374399997 + ], + [ + -66.47713457199995, + -18.060049714999877 + ], + [ + -66.52676348599988, + -17.97429479799996 + ], + [ + -66.51985947999992, + -17.914148607999948 + ], + [ + -66.64627852799998, + -17.85230424399998 + ], + [ + -66.64434063199997, + -17.72758085399994 + ], + [ + -66.42715462499996, + -17.680453770999918 + ], + [ + -66.43650061399984, + -17.602777500999935 + ], + [ + -66.61679048999997, + -17.54813486799992 + ], + [ + -66.68514256399993, + -17.45488468699989 + ], + [ + -66.35266163299991, + -17.316277008999975 + ], + [ + -66.26602158799994, + -17.246022411999945 + ], + [ + -66.17438559399989, + -17.247599214999923 + ], + [ + -66.06597154299993, + -17.300556078999932 + ], + [ + -65.95086655499995, + -17.324458584999945 + ], + [ + -65.92115052899987, + -17.37785030299989 + ], + [ + -65.84164448899998, + -17.396417223999947 + ], + [ + -65.80283359499998, + -17.31916675399998 + ], + [ + -65.71849052699997, + -17.3736405759999 + ], + [ + -65.67369059499993, + -17.50363567999983 + ], + [ + -65.8114775169999, + -17.70233523199994 + ], + [ + -65.90225956299992, + -17.73011956499994 + ], + [ + -65.97658558699993, + -17.666265723999913 + ], + [ + -66.0342026209999, + -17.717709318999937 + ], + [ + -65.89241753199997, + -17.761502918999952 + ], + [ + -65.81464352899997, + -17.738769018999903 + ], + [ + -65.75133551699992, + -17.8153276459999 + ], + [ + -65.59851062299998, + -17.829001714999947 + ], + [ + -65.46336349899991, + -17.912563589999877 + ], + [ + -65.40605961199992, + -17.997618449999948 + ], + [ + -65.38495649399994, + -18.081069347999914 + ], + [ + -65.31902360499998, + -18.11802432099995 + ], + [ + -65.26617453199992, + -18.045533598999896 + ], + [ + -65.24210354999991, + -17.914465443999916 + ], + [ + -65.31492653099991, + -17.889080179999894 + ], + [ + -65.21372963499988, + -17.732257620999917 + ], + [ + -65.31439260399998, + -17.64470981599993 + ], + [ + -65.39027363799994, + -17.63337547099985 + ], + [ + -65.56365162899982, + -17.51996748299996 + ], + [ + -65.71939862199997, + -17.33287686599988 + ], + [ + -65.83271759399997, + -17.306202631999952 + ], + [ + -65.97686755399991, + -17.219234854999968 + ], + [ + -66.05960850499986, + -17.04522470099994 + ], + [ + -66.20037049899997, + -17.06740640199996 + ], + [ + -66.39002949899998, + -16.930594798999948 + ], + [ + -66.49416358199994, + -16.871392410999874 + ], + [ + -66.56047851799997, + -16.906300354999928 + ], + [ + -66.66165160899982, + -16.864357143999825 + ], + [ + -66.62397763699988, + -17.006138041999918 + ], + [ + -66.56085955899988, + -17.05589016999994 + ], + [ + -66.53356959099983, + -17.12828852299998 + ], + [ + -66.60337055999997, + -17.18808786999989 + ], + [ + -66.66392561999993, + -17.148686219999945 + ], + [ + -66.79322854599997, + -17.16182552299989 + ], + [ + -66.87095661699982, + -17.216485254999952 + ], + [ + -66.94467159999988, + -17.206174675999932 + ], + [ + -67.10685757099992, + -17.259220555999946 + ], + [ + -67.16888449199996, + -17.211882584999955 + ], + [ + -67.19734155599997, + -17.119800001999977 + ], + [ + -67.18877458099996, + -17.02958373399997 + ], + [ + -67.32217458199989, + -16.935996599999953 + ], + [ + -67.40634950899988, + -16.91676164099988 + ], + [ + -67.42323250599998, + -16.841195430999903 + ], + [ + -67.4044795069999, + -16.73792300799994 + ], + [ + -67.48638159699988, + -16.708533539999962 + ], + [ + -67.47213755799993, + -16.833859923999967 + ], + [ + -67.52178960599997, + -16.97646191399997 + ], + [ + -67.62292464399997, + -17.020194325999967 + ], + [ + -67.61663855199998, + -17.134855073999972 + ], + [ + -67.74430851599988, + -17.113439478999965 + ], + [ + -67.96394354799997, + -16.94396812499997 + ], + [ + -68.05392461999998, + -16.835980880999955 + ], + [ + -68.11408254499997, + -16.72852152999991 + ], + [ + -68.08027648599995, + -16.579788680999968 + ], + [ + -68.01162752499994, + -16.50445146499993 + ], + [ + -67.8750605059999, + -16.506472508999934 + ], + [ + -67.78845247999993, + -16.662499457999957 + ], + [ + -67.62848653999998, + -16.674413829999878 + ], + [ + -67.7120665199999, + -16.51198495199992 + ], + [ + -67.87580850699999, + -16.354465018999974 + ], + [ + -67.92887852699994, + -16.26537863099992 + ], + [ + -68.02105750099997, + -16.177346183999873 + ], + [ + -67.98257450799991, + -16.105971428999965 + ], + [ + -68.11581458199998, + -16.123625560999812 + ], + [ + -68.11033650499996, + -15.987132972999973 + ], + [ + -68.04181662599996, + -15.88485045199991 + ], + [ + -68.17762759699986, + -15.890769249999892 + ], + [ + -68.22380853099992, + -15.851291826999898 + ], + [ + -68.22764559899997, + -15.722107084999891 + ], + [ + -68.31140863899992, + -15.713579503999881 + ], + [ + -68.40721848699991, + -15.743810681999946 + ], + [ + -68.45551249799996, + -15.636287292999953 + ], + [ + -68.36849962599996, + -15.569832714999905 + ], + [ + -68.51038362199984, + -15.50634382099986 + ], + [ + -68.6204455539999, + -15.484139321999919 + ], + [ + -68.67234059899982, + -15.529678368999953 + ], + [ + -68.68885060099996, + -15.61164198299997 + ], + [ + -68.66791562499998, + -15.785644928999886 + ], + [ + -68.7830885059999, + -15.747577341999943 + ], + [ + -68.85080757899993, + -15.635666361999881 + ], + [ + -68.98538255499989, + -15.59874189899989 + ], + [ + -69.05455052299988, + -15.406347045999894 + ], + [ + -68.92414856099998, + -15.322994550999908 + ], + [ + -68.86880453099997, + -15.24262768899996 + ], + [ + -68.94155157099988, + -15.208474786999943 + ], + [ + -68.81900060299995, + -15.057533809999882 + ], + [ + -68.79896550699993, + -14.960004162999951 + ], + [ + -68.93201464199996, + -14.86503300899983 + ], + [ + -69.08679955999992, + -14.808524732999956 + ], + [ + -69.0721895669999, + -14.752995461999888 + ], + [ + -69.13392664299994, + -14.621287934999941 + ], + [ + -69.2051775139999, + -14.554542504999915 + ], + [ + -69.32692750699982, + -14.494131446999972 + ], + [ + -69.38066053599994, + -14.43538302199994 + ], + [ + -69.3685076139999, + -14.23334830999994 + ], + [ + -69.40884351199998, + -14.16698677099987 + ], + [ + -69.56050851799989, + -14.30263278699988 + ], + [ + -69.6445156399999, + -14.291945692999889 + ], + [ + -69.62709854799994, + -14.201365481999972 + ], + [ + -69.76476258999998, + -14.120093039999972 + ], + [ + -69.80386349799983, + -14.067492406999918 + ], + [ + -70.02692454999988, + -14.073345992999919 + ], + [ + -69.97748556999989, + -13.964990280999814 + ], + [ + -70.08094055099997, + -13.98440779699996 + ], + [ + -70.24352248299988, + -13.980629067999871 + ], + [ + -70.32369957799989, + -13.933122116999925 + ], + [ + -70.29325851699997, + -13.844754225999907 + ], + [ + -70.27703852899987, + -13.658406580999952 + ], + [ + -70.37619761699995, + -13.650335981999945 + ], + [ + -70.41941856599993, + -13.735644477999926 + ], + [ + -70.45368948499998, + -13.904620125999884 + ], + [ + -70.55547361799995, + -13.91934511799991 + ], + [ + -70.54070252499997, + -13.759695845999886 + ], + [ + -70.62690754999994, + -13.773063975999946 + ], + [ + -70.72553254299999, + -13.739493950999929 + ], + [ + -70.7172316089999, + -13.663810058999957 + ], + [ + -70.60870356499998, + -13.595159756999976 + ], + [ + -70.57646961499995, + -13.533524772999897 + ], + [ + -70.65108464699989, + -13.456415789999937 + ], + [ + -70.75376161899993, + -13.565846732999944 + ], + [ + -70.91084250799997, + -13.541556312999887 + ], + [ + -70.97959154899996, + -13.581290724999974 + ], + [ + -71.03110454699998, + -13.554004444999919 + ], + [ + -71.03832253899998, + -13.442889912999817 + ], + [ + -71.23495461099998, + -13.41274892499996 + ], + [ + -71.34940363199996, + -13.298796447999905 + ], + [ + -71.42116563099995, + -13.314088559999902 + ], + [ + -71.40428162799998, + -13.605210999999883 + ], + [ + -71.33088649899997, + -13.621193780999931 + ], + [ + -71.34622957299996, + -13.730781800999864 + ], + [ + -71.39759856899997, + -13.757552760999943 + ], + [ + -71.74414064499996, + -13.34982597699991 + ], + [ + -71.72892749099992, + -13.221968593999861 + ], + [ + -71.87265751699994, + -13.055827705999889 + ], + [ + -71.92710853899996, + -13.023830963999956 + ], + [ + -71.97154251699999, + -12.869494141999951 + ], + [ + -72.04808052399989, + -12.871834201999945 + ], + [ + -72.0274426019999, + -13.10395240299988 + ], + [ + -72.07085449099992, + -13.12084244099998 + ], + [ + -72.1744305069999, + -13.012380612999891 + ], + [ + -72.3149795999999, + -13.006148165999889 + ], + [ + -72.43563055899995, + -12.91049857999991 + ], + [ + -72.48054448399989, + -12.95247984499997 + ], + [ + -72.48780052999996, + -13.028841665999948 + ], + [ + -72.44851656099996, + -13.07481439299994 + ], + [ + -72.22585264399999, + -13.13664936899994 + ], + [ + -71.93067151899999, + -13.30166909399992 + ], + [ + -71.75144161799989, + -13.463190546999954 + ], + [ + -71.58842449799994, + -13.713548774999879 + ], + [ + -71.45901461799997, + -13.865371695999897 + ], + [ + -71.38185852899989, + -13.932312424999907 + ], + [ + -71.33069656499998, + -14.017219762999957 + ], + [ + -71.14689651599986, + -14.119655001999945 + ], + [ + -71.15476963699996, + -14.18481356999996 + ], + [ + -71.23931856499996, + -14.209436919999973 + ], + [ + -71.18676755299992, + -14.326736457999914 + ], + [ + -71.31985457299987, + -14.385024379999948 + ], + [ + -71.3554915759999, + -14.35167681099989 + ], + [ + -71.46621651699996, + -14.098449289999962 + ], + [ + -71.53663657399989, + -13.877785797999934 + ], + [ + -71.62397751299994, + -13.751589371999842 + ], + [ + -71.72418249499998, + -13.660285300999874 + ], + [ + -71.78010554799994, + -13.523494484999901 + ], + [ + -71.88053164399997, + -13.436867347999964 + ], + [ + -72.29529553899988, + -13.319360943999982 + ], + [ + -72.36242653699992, + -13.249822663999964 + ], + [ + -72.5820545279999, + -13.19718917299997 + ], + [ + -72.67083749099999, + -13.227138215999958 + ], + [ + -72.7546615519999, + -13.200121162999892 + ], + [ + -72.97741649599999, + -13.024827739999921 + ], + [ + -73.00907159199988, + -12.954232500999865 + ], + [ + -72.93764453299991, + -12.863724710999975 + ], + [ + -73.12371859299998, + -12.811049310999977 + ], + [ + -73.20852652199989, + -12.838926346999926 + ], + [ + -73.13568157999993, + -12.940608387999873 + ], + [ + -73.15689852399987, + -12.996419625999977 + ], + [ + -73.29872149999983, + -13.01945410199994 + ], + [ + -73.32954360199994, + -13.113399813999877 + ], + [ + -73.17644461999993, + -13.288793148999957 + ], + [ + -72.97858459799988, + -13.271750392999877 + ], + [ + -72.86304458899997, + -13.296259580999902 + ], + [ + -72.52458149499995, + -13.428771602999973 + ], + [ + -72.17647552299991, + -13.621604996999906 + ], + [ + -71.98630556299997, + -13.648506044999976 + ], + [ + -71.85105148499997, + -13.706375374999936 + ], + [ + -71.75205953199992, + -13.920561164999981 + ], + [ + -71.56386552099997, + -14.16124516699989 + ], + [ + -71.4898145919999, + -14.290162861999931 + ], + [ + -71.43123648799991, + -14.437684022999974 + ], + [ + -71.36495960599984, + -14.47301676199993 + ], + [ + -71.41137657399992, + -14.56202888599995 + ], + [ + -71.40043651399998, + -14.660492442999953 + ], + [ + -71.31463650299997, + -14.722464547999891 + ], + [ + -71.15542560499989, + -14.923915375999854 + ], + [ + -71.21323357999995, + -14.985697378999873 + ], + [ + -71.31330160099998, + -14.93995515399996 + ], + [ + -71.34772456899998, + -14.85601776999988 + ], + [ + -71.58177161299994, + -14.878385380999873 + ], + [ + -71.7082365949999, + -14.90664245299996 + ], + [ + -71.69363364299994, + -14.835278928999912 + ], + [ + -71.61982763299994, + -14.78048877499998 + ], + [ + -71.66300952199998, + -14.721327458999895 + ], + [ + -71.58200060699988, + -14.64741935699982 + ], + [ + -71.60046359299997, + -14.589898042999948 + ], + [ + -71.56582655099999, + -14.397931505999964 + ], + [ + -71.65194658299998, + -14.273984614999904 + ], + [ + -71.69476352399988, + -14.39759254099988 + ], + [ + -71.7608486279999, + -14.395575854999834 + ], + [ + -71.74594862199996, + -14.231146719999913 + ], + [ + -71.76063555999997, + -14.134853906999922 + ], + [ + -71.83432757599991, + -14.124368648999962 + ], + [ + -71.87448862699983, + -14.364017821999937 + ], + [ + -71.83020753599999, + -14.457619875999967 + ], + [ + -71.82112155299995, + -14.563839879999932 + ], + [ + -71.87396257899991, + -14.641815718999965 + ], + [ + -71.98559561599996, + -14.598777495999968 + ], + [ + -72.0230555139999, + -14.692604519999918 + ], + [ + -72.07550057999998, + -14.682175923999921 + ], + [ + -72.09319259799997, + -14.59957729699994 + ], + [ + -72.00616463799992, + -14.472366660999967 + ], + [ + -72.07013649699996, + -14.358007159999943 + ], + [ + -72.12379459099998, + -14.465672202999826 + ], + [ + -72.24954258499997, + -14.572974309999893 + ], + [ + -72.26481659199993, + -14.47340584999995 + ], + [ + -72.20846555999992, + -14.427910722999968 + ], + [ + -72.25122852099992, + -14.365458838999814 + ], + [ + -72.24101248999983, + -14.271017085999972 + ], + [ + -72.30554962399992, + -14.216314438999973 + ], + [ + -72.33792153999991, + -14.10646892699998 + ], + [ + -72.27154558399991, + -14.032893586999876 + ], + [ + -72.30215461799997, + -13.947226177999937 + ], + [ + -72.24235560599993, + -13.847923758999968 + ], + [ + -72.27014161499983, + -13.771611056999973 + ], + [ + -72.37397763699988, + -13.72367914399996 + ], + [ + -72.41129252899998, + -13.890852011999982 + ], + [ + -72.49117256999995, + -13.973824470999944 + ], + [ + -72.56145449199994, + -14.120297893999862 + ], + [ + -72.52584062399995, + -14.23255940599995 + ], + [ + -72.55799863399983, + -14.35285765399982 + ], + [ + -72.61172462199988, + -14.428158659999951 + ], + [ + -72.65843964999993, + -14.422684941999933 + ], + [ + -72.6322705099999, + -14.239144228999976 + ], + [ + -72.65571553199987, + -14.188374370999952 + ], + [ + -72.79353363399991, + -14.17452243699995 + ], + [ + -72.86684460899988, + -14.114707331999966 + ], + [ + -72.7829814879999, + -13.976275506999968 + ], + [ + -72.67645252799997, + -13.881516750999936 + ], + [ + -72.62635757999993, + -13.75203713399992 + ], + [ + -72.65380060199988, + -13.672418608999976 + ], + [ + -72.72676858999989, + -13.605896807999898 + ], + [ + -72.80187949499992, + -13.639927836999846 + ], + [ + -72.78173861899995, + -13.739609955999867 + ], + [ + -72.81999949299984, + -13.817157983999948 + ], + [ + -72.88730651099996, + -13.856157469999914 + ], + [ + -72.9070586329999, + -13.91999823599997 + ], + [ + -72.98309355899994, + -13.98233310899991 + ], + [ + -73.07498151399989, + -13.970444719999932 + ], + [ + -73.09962464499995, + -14.036151296999947 + ], + [ + -72.99659764299986, + -14.187032427999952 + ], + [ + -72.87915762499995, + -14.253299083999877 + ], + [ + -72.83692959599989, + -14.352172516999872 + ], + [ + -72.91792258599997, + -14.366042722999964 + ], + [ + -72.92743654899988, + -14.447630323999874 + ], + [ + -73.00556963299994, + -14.406822022999961 + ], + [ + -73.05804453799988, + -14.30500788299986 + ], + [ + -73.15657062399998, + -14.222892053999942 + ], + [ + -73.23182653599997, + -14.192611254999974 + ], + [ + -73.14680453399984, + -14.409569945999976 + ], + [ + -73.25578352399992, + -14.53196584899996 + ], + [ + -73.30688463499996, + -14.49301447399995 + ], + [ + -73.26288551099992, + -14.391203016999953 + ], + [ + -73.36180152399999, + -14.253183245999878 + ], + [ + -73.35547653999998, + -14.135052892999965 + ], + [ + -73.32190651399998, + -14.01191401899996 + ], + [ + -73.27056148999998, + -13.917298256999914 + ], + [ + -73.15937755599998, + -13.820914584999969 + ], + [ + -73.12383258699992, + -13.749066586999902 + ], + [ + -73.15451051999997, + -13.600868335999962 + ], + [ + -73.26329052399996, + -13.665602947999957 + ], + [ + -73.30052159699989, + -13.745285845999888 + ], + [ + -73.40880555999996, + -13.86802255699996 + ], + [ + -73.4522625429999, + -13.999581723999938 + ], + [ + -73.46370652299998, + -14.219879429999821 + ], + [ + -73.48598461599994, + -14.361874904999922 + ], + [ + -73.57517259199994, + -14.269041973999947 + ], + [ + -73.76535059899993, + -14.133909098999936 + ], + [ + -73.79722563599995, + -14.074790026999949 + ], + [ + -73.7457575649999, + -13.947503283999936 + ], + [ + -73.85095262999994, + -13.931125379999912 + ], + [ + -73.99572754399998, + -14.024510174999932 + ], + [ + -73.87619758099999, + -14.270539149999934 + ], + [ + -73.82420362999994, + -14.341329351999946 + ], + [ + -73.82465356999995, + -14.424309857999901 + ], + [ + -73.93261751199998, + -14.366548821999913 + ], + [ + -74.06271353499989, + -14.354927480999947 + ], + [ + -74.24692563799994, + -14.181612018999829 + ], + [ + -74.21588158399993, + -14.095293502999823 + ], + [ + -74.21239454399989, + -13.986554737999882 + ], + [ + -74.17432360499998, + -13.86658975499995 + ], + [ + -74.03658261599992, + -13.78638902299997 + ], + [ + -74.02561154299997, + -13.699613860999932 + ], + [ + -74.15007056799993, + -13.66266307899997 + ], + [ + -74.2379536489999, + -13.70090769199993 + ], + [ + -74.36377758299994, + -13.811346474999937 + ], + [ + -74.45824464899994, + -13.828541278999978 + ], + [ + -74.61856061799995, + -13.824037346999887 + ], + [ + -74.59877764999993, + -13.73024066499994 + ], + [ + -74.51162764999998, + -13.747685416999957 + ], + [ + -74.39469155099994, + -13.709342065999977 + ], + [ + -74.38808459899991, + -13.61902605299997 + ], + [ + -74.48967762499996, + -13.591586048999943 + ], + [ + -74.71860449999997, + -13.605154170999981 + ], + [ + -74.83161954399998, + -13.578009879999911 + ], + [ + -74.91715954799997, + -13.525627343999815 + ], + [ + -74.93067955799995, + -13.409259202999863 + ], + [ + -74.80162054499993, + -13.374007264999875 + ], + [ + -74.69544261899989, + -13.415288640999847 + ], + [ + -74.36632551399998, + -13.446871651999913 + ], + [ + -74.25222752699995, + -13.39783265699998 + ], + [ + -74.34671755999989, + -13.318778066999869 + ], + [ + -74.35425557299999, + -13.244467130999965 + ], + [ + -74.49221750899994, + -13.23861136599993 + ], + [ + -74.60400359899995, + -12.927114361999884 + ], + [ + -74.68418857299997, + -12.861723782999888 + ], + [ + -74.73862450799999, + -12.99417377899988 + ], + [ + -74.89185357699984, + -12.96356994099989 + ], + [ + -74.94045252199999, + -12.862941672999852 + ], + [ + -74.82466859999994, + -12.813944084999946 + ], + [ + -74.78717751999994, + -12.757465982999975 + ], + [ + -74.78233361799994, + -12.635347017999834 + ], + [ + -74.82427951199998, + -12.553279803999942 + ], + [ + -74.87261962399992, + -12.566031695999982 + ], + [ + -74.90849249299987, + -12.701940735999926 + ], + [ + -75.11597460399986, + -12.77321289699995 + ], + [ + -75.08955350399992, + -12.67536725299982 + ], + [ + -75.02864858399988, + -12.56273509399989 + ], + [ + -75.0631025639999, + -12.456337058999907 + ], + [ + -75.12863949199988, + -12.450983704999942 + ], + [ + -75.26394654299992, + -12.622069915999873 + ], + [ + -75.36738559899993, + -12.631092531999968 + ], + [ + -75.37086459199992, + -12.564185832999954 + ], + [ + -75.25469258699997, + -12.40099705199998 + ], + [ + -75.38196558399994, + -12.31930735799989 + ], + [ + -75.50878864099997, + -12.05804527999993 + ], + [ + -75.64501954599996, + -12.009927455999957 + ], + [ + -75.78767350299995, + -11.938864339999839 + ], + [ + -75.85252361699992, + -11.82196545699992 + ], + [ + -75.85517162799988, + -11.738295286999914 + ], + [ + -75.93927748899989, + -11.687975537999876 + ], + [ + -76.02140857299997, + -11.57127664599983 + ], + [ + -75.93384551199995, + -11.548411316999932 + ], + [ + -75.71236461699988, + -11.752750214999935 + ], + [ + -75.63235448999995, + -11.779143486999942 + ], + [ + -75.54212162599998, + -11.681822046999912 + ], + [ + -75.42810058499998, + -11.718175534999943 + ], + [ + -75.32045750199995, + -11.819807619999892 + ], + [ + -75.21165453199995, + -11.97593883899998 + ], + [ + -75.14136456199998, + -12.102605153999889 + ], + [ + -75.05601449199992, + -12.051290639999934 + ], + [ + -75.04723360999992, + -11.914718255999958 + ], + [ + -75.09051557899994, + -11.814611844999888 + ], + [ + -74.99291954799997, + -11.750252239999895 + ], + [ + -74.93269356199994, + -11.655197769999972 + ], + [ + -74.9613874989999, + -11.50260555799997 + ], + [ + -75.02537561799988, + -11.43530792799993 + ], + [ + -75.0736005629999, + -11.525450937999892 + ], + [ + -75.08660860599997, + -11.660712558999933 + ], + [ + -75.24057762999996, + -11.70580535399995 + ], + [ + -75.34311663599982, + -11.649781383999937 + ], + [ + -75.40650964099984, + -11.539572767999971 + ], + [ + -75.37829565199996, + -11.399759437999933 + ], + [ + -75.46320349299998, + -11.30080117999995 + ], + [ + -75.46492764999988, + -11.460260349999942 + ], + [ + -75.59978459299998, + -11.518918417999942 + ], + [ + -75.76987453099997, + -11.425083849999965 + ], + [ + -75.83760852299997, + -11.31261262299995 + ], + [ + -75.75399048999992, + -11.222647643999949 + ], + [ + -75.72885165299994, + -11.091866652999954 + ], + [ + -75.95638260599986, + -10.961211725999874 + ], + [ + -76.00241853299991, + -10.867101392999814 + ], + [ + -75.9663845639999, + -10.800256888999854 + ], + [ + -75.98233063099997, + -10.699947132999966 + ], + [ + -75.8719025769999, + -10.753614446999961 + ], + [ + -75.7792205209999, + -10.738471365999942 + ], + [ + -75.74012749199989, + -10.697680162999973 + ], + [ + -75.83778353799988, + -10.599503936999838 + ], + [ + -75.88480349999992, + -10.498535027999935 + ], + [ + -75.88356750399998, + -10.271282018999841 + ], + [ + -75.94805954399999, + -10.10948429799987 + ], + [ + -75.92281358699995, + -10.045201973999895 + ], + [ + -76.02355953699998, + -10.022948355999915 + ], + [ + -76.07051059999992, + -10.107531482999946 + ], + [ + -76.07211254899994, + -10.220469580999975 + ], + [ + -76.04698963799996, + -10.427482975999908 + ], + [ + -76.07198363599991, + -10.565049452999915 + ], + [ + -76.11941565199999, + -10.652736230999892 + ], + [ + -76.21262358899997, + -10.640742062999948 + ], + [ + -76.2006225479999, + -10.57145004199998 + ], + [ + -76.26340451099998, + -10.52846697199982 + ], + [ + -76.25409657499989, + -10.384542150999948 + ], + [ + -76.41306255399996, + -10.48521098699996 + ], + [ + -76.44029954899997, + -10.561471721999851 + ], + [ + -76.57351648899993, + -10.552900387999955 + ], + [ + -76.59318563099993, + -10.497749140999929 + ], + [ + -76.55219259199993, + -10.399767039999972 + ], + [ + -76.44488562299989, + -10.279394360999959 + ], + [ + -76.39170864999988, + -10.144652919999885 + ], + [ + -76.38721460899995, + -10.062522673999865 + ], + [ + -76.42546860899995, + -9.686931100999914 + ], + [ + -76.47885864999995, + -9.504718919999902 + ], + [ + -76.5710066119999, + -9.318394240999908 + ], + [ + -76.67227156899997, + -9.156248502999915 + ], + [ + -76.68837756399995, + -9.073325496999928 + ], + [ + -76.76183354599993, + -8.921446248999871 + ], + [ + -76.6569065349999, + -8.919943373999956 + ], + [ + -76.64864365499994, + -8.818229816999974 + ], + [ + -76.52968550499992, + -8.799795161999953 + ], + [ + -76.61303749799998, + -8.67054219199997 + ], + [ + -76.72940848899998, + -8.760491747999879 + ], + [ + -76.83567861599994, + -8.745997760999956 + ], + [ + -76.93622557899994, + -8.760716884999965 + ], + [ + -77.02888450199998, + -8.654297559999975 + ], + [ + -76.99224854399989, + -8.598141323999926 + ], + [ + -76.87051363799998, + -8.60666471299993 + ], + [ + -76.81516256699996, + -8.53669292099994 + ], + [ + -76.95159161999999, + -8.494779884999957 + ], + [ + -76.9748006069999, + -8.440760864999959 + ], + [ + -76.89566052099991, + -8.37160060899987 + ], + [ + -76.88043965499998, + -8.270536984999978 + ], + [ + -76.95091251799994, + -8.29041852399996 + ], + [ + -76.99889354899994, + -8.369852813999955 + ], + [ + -77.14044159799988, + -8.26337934199995 + ], + [ + -77.22446464499995, + -8.15875609099993 + ], + [ + -77.22071860499995, + -8.049155833999976 + ], + [ + -77.06258360799995, + -8.051799653999979 + ], + [ + -77.11004663799997, + -7.918481124999971 + ], + [ + -77.23362757399985, + -7.954094490999921 + ], + [ + -77.26114653599996, + -7.798009036999929 + ], + [ + -77.33387765099997, + -7.810915826999974 + ], + [ + -77.39951365299993, + -7.761930475999918 + ], + [ + -77.40946163099989, + -7.689361633999965 + ], + [ + -77.47899655799995, + -7.636682378999922 + ], + [ + -77.445114559, + -7.571689100999947 + ], + [ + -77.55471749799995, + -7.351780985999881 + ], + [ + -77.52605457399994, + -7.181186457999956 + ], + [ + -77.54349563899996, + -7.080356688999814 + ], + [ + -77.61022162299997, + -7.037455760999933 + ], + [ + -77.67043252199994, + -7.048754063999979 + ], + [ + -77.73457352699995, + -6.992496070999948 + ], + [ + -77.71685753599996, + -6.934484247999819 + ], + [ + -77.77924353899988, + -6.843230132999906 + ], + [ + -77.85562161999997, + -6.800315123999951 + ], + [ + -77.90497560699998, + -6.871318896999981 + ], + [ + -77.79014554499997, + -6.994821042999945 + ], + [ + -77.78567463799999, + -7.100884472999894 + ], + [ + -77.65859962099984, + -7.166391560999955 + ], + [ + -77.72348058099993, + -7.256791894999935 + ], + [ + -77.67100550799984, + -7.290899367999884 + ], + [ + -77.6329955889999, + -7.448417121999853 + ], + [ + -77.55741160999992, + -7.549572946999945 + ], + [ + -77.51767753299998, + -7.685040930999889 + ], + [ + -77.53550751699999, + -7.780613234999976 + ], + [ + -77.46092249299994, + -7.846042370999953 + ], + [ + -77.41616061499985, + -7.931714138999837 + ], + [ + -77.43226660999994, + -7.991759075999937 + ], + [ + -77.3978656029999, + -8.072111184999926 + ], + [ + -77.26143654999993, + -8.168802137999933 + ], + [ + -77.24311052399986, + -8.225539239999875 + ], + [ + -77.29601257099995, + -8.315820719999977 + ], + [ + -77.28305062799996, + -8.391776352999898 + ], + [ + -77.2211915119999, + -8.408193986999947 + ], + [ + -77.12319951999996, + -8.483536734999973 + ], + [ + -77.08452558699997, + -8.636735628999872 + ], + [ + -77.19741054399998, + -8.593963782999936 + ], + [ + -77.00551558799992, + -8.846222690999923 + ], + [ + -76.90185558499991, + -8.899648774999946 + ], + [ + -76.90060450299995, + -8.963636390999966 + ], + [ + -76.83035258699988, + -9.0363490659999 + ], + [ + -76.63596351199999, + -9.36260810999994 + ], + [ + -76.57146459899997, + -9.48542444899988 + ], + [ + -76.52313253399996, + -9.654874344999882 + ], + [ + -76.51779963099989, + -9.857105192999882 + ], + [ + -76.54188553299997, + -10.04981352999988 + ], + [ + -76.57548556599994, + -10.12129758499998 + ], + [ + -76.6675036069999, + -10.21662396399995 + ], + [ + -76.77769462099991, + -10.248929494999913 + ], + [ + -76.78754453099998, + -10.159479835999946 + ], + [ + -76.73843361899998, + -10.075418566999929 + ], + [ + -76.74944257799996, + -10.026411255999903 + ], + [ + -76.86701955799998, + -10.029174098999874 + ], + [ + -76.77918961799998, + -9.859289014999945 + ], + [ + -76.84207149299982, + -9.755793129999915 + ], + [ + -76.90927155799989, + -9.819866744999956 + ], + [ + -77.02469656799997, + -9.848731671999928 + ], + [ + -77.02241551599997, + -9.784735170999966 + ], + [ + -76.95340764299988, + -9.598090303999925 + ], + [ + -76.94779964699995, + -9.42271188799998 + ], + [ + -77.00558465499995, + -9.32750754899996 + ], + [ + -77.0867305299999, + -9.33477013299995 + ], + [ + -77.22385360499999, + -9.482063640999911 + ], + [ + -77.27559660199995, + -9.471600175999981 + ], + [ + -77.32218154299989, + -9.360255141999971 + ], + [ + -77.33142862699992, + -9.273252494999895 + ], + [ + -77.29205363099993, + -9.18972632699996 + ], + [ + -77.19853958699991, + -9.136875912999926 + ], + [ + -77.16434460699992, + -9.065358161999939 + ], + [ + -77.23565649799997, + -9.03607212799983 + ], + [ + -77.38213360899988, + -9.128029819999938 + ], + [ + -77.4382625209999, + -9.11521154299993 + ], + [ + -77.48266565299997, + -9.025435827999956 + ], + [ + -77.55492352499994, + -8.971447653999974 + ], + [ + -77.53810858899999, + -8.904831472999888 + ], + [ + -77.57917756799998, + -8.862460616999897 + ], + [ + -77.46667448999989, + -8.762026641999967 + ], + [ + -77.53684258699997, + -8.68572734999998 + ], + [ + -77.68536354099996, + -8.61267436999998 + ], + [ + -77.68693565099994, + -8.473279296999976 + ], + [ + -77.59196449699988, + -8.428024563999884 + ], + [ + -77.6355974999999, + -8.323659977999966 + ], + [ + -77.61903351799992, + -8.274195684999881 + ], + [ + -77.72846261699988, + -8.186121999999898 + ], + [ + -77.71195965499999, + -8.087184193999974 + ], + [ + -77.73091851399994, + -8.025373356999978 + ], + [ + -77.81034861399996, + -8.02324167199987 + ], + [ + -77.78372165399998, + -7.868913734999978 + ], + [ + -77.85305055499998, + -7.887848286999883 + ], + [ + -77.85486557199994, + -7.944474412999909 + ], + [ + -77.95158351499992, + -7.93649886399993 + ], + [ + -78.02949565199992, + -7.840526743999931 + ], + [ + -78.09677852999994, + -7.864090116999932 + ], + [ + -78.10328657499997, + -7.932718290999958 + ], + [ + -78.23609950699989, + -7.828688813999975 + ], + [ + -78.27407053399997, + -7.907601917999898 + ], + [ + -78.37728160199993, + -7.861028375999922 + ], + [ + -78.49755051299996, + -7.892467050999869 + ], + [ + -78.36495953399998, + -7.991434025999979 + ], + [ + -78.43148049699988, + -8.042305136999971 + ], + [ + -78.35543065099995, + -8.084669119999887 + ], + [ + -78.33964551599996, + -8.173325850999959 + ], + [ + -78.40926359199989, + -8.243652867999913 + ], + [ + -78.31439251799998, + -8.373833379999894 + ], + [ + -78.24013556099999, + -8.324858087999871 + ], + [ + -78.23486351199995, + -8.199376134999909 + ], + [ + -78.27303352499996, + -8.100921126999879 + ], + [ + -78.20502460699993, + -8.020677982999871 + ], + [ + -78.11620358999988, + -7.988161059999868 + ], + [ + -78.08851665599997, + -8.052775642999961 + ], + [ + -78.01490761999992, + -8.011182627999972 + ], + [ + -77.94107059699996, + -8.090070920999949 + ], + [ + -77.86757656099996, + -8.07668669799989 + ], + [ + -77.8432695439999, + -8.26802408999987 + ], + [ + -77.91980755199995, + -8.283790114999874 + ], + [ + -77.99779562899994, + -8.429681497999866 + ], + [ + -77.98151361499993, + -8.516819092999981 + ], + [ + -77.85752062399996, + -8.47859811799998 + ], + [ + -77.80441254999988, + -8.552869825999949 + ], + [ + -77.74143260599999, + -8.586054283999943 + ], + [ + -77.82256356099998, + -8.64862871199989 + ], + [ + -77.83553355099991, + -8.729990001999909 + ], + [ + -77.6810755269999, + -9.065097987999877 + ], + [ + -77.50968153199989, + -9.283472717999928 + ], + [ + -77.45367449399993, + -9.449151762999918 + ], + [ + -77.41619162799992, + -9.744195089999891 + ], + [ + -77.47397663699991, + -9.762508877999949 + ], + [ + -77.60018949099998, + -9.515835334999963 + ], + [ + -77.59394849299997, + -9.41963388499994 + ], + [ + -77.6562345829999, + -9.374986168999953 + ], + [ + -77.65098549999993, + -9.318014037999887 + ], + [ + -77.73973057699999, + -9.281074654999884 + ], + [ + -77.74127955199998, + -9.201344482999957 + ], + [ + -77.8204955779999, + -9.133533377999925 + ], + [ + -77.81318655899992, + -9.078924104999885 + ], + [ + -77.94700649299995, + -8.811210140999947 + ], + [ + -78.03667458399997, + -8.789543926999897 + ], + [ + -78.08870658899997, + -8.818040720999875 + ], + [ + -78.08901252899994, + -8.893101502999968 + ], + [ + -77.96700252899984, + -8.96388835099998 + ], + [ + -77.95611560999993, + -9.217706460999977 + ], + [ + -77.89985661099996, + -9.311251685999935 + ], + [ + -77.81497156899991, + -9.398430351999934 + ], + [ + -77.72837862999995, + -9.431940027999929 + ], + [ + -77.68142656099991, + -9.487028074999955 + ], + [ + -77.67097449499994, + -9.567193602999964 + ], + [ + -77.731925516, + -9.70867459599998 + ], + [ + -77.62773158599992, + -9.752228473999935 + ], + [ + -77.60153160099992, + -9.934133542999973 + ], + [ + -77.50208249899998, + -9.961873785999956 + ], + [ + -77.45303361299995, + -10.113459163999948 + ], + [ + -77.38970950799984, + -10.159502802999953 + ], + [ + -77.36414352999998, + -10.250618280999959 + ], + [ + -77.27020251199997, + -10.197412138999823 + ], + [ + -77.17244755999997, + -10.034262751999847 + ], + [ + -77.0874175109999, + -10.039925230999927 + ], + [ + -77.1365205439999, + -10.166496326999948 + ], + [ + -77.07837662299994, + -10.205598743999929 + ], + [ + -77.0817875539999, + -10.426702117999866 + ], + [ + -76.99309561899992, + -10.488936910999882 + ], + [ + -77.02690151099989, + -10.561174666999875 + ], + [ + -76.97141264099997, + -10.645188829999825 + ], + [ + -77.07155660299992, + -10.720316665999917 + ], + [ + -77.17961157299993, + -10.889070025999956 + ], + [ + -76.91413155299995, + -10.737207374999912 + ], + [ + -76.84069853799997, + -10.613266183999883 + ], + [ + -76.74712364099992, + -10.729903048999972 + ], + [ + -76.73724355699989, + -10.832804823999936 + ], + [ + -76.64044162699997, + -10.894641476999936 + ], + [ + -76.64067062099991, + -10.974497041999882 + ], + [ + -76.75429553299995, + -11.039787541999885 + ], + [ + -76.82696562699988, + -11.033254015999944 + ], + [ + -76.77085163599986, + -11.142192269999953 + ], + [ + -76.60533855199998, + -11.200402408999935 + ], + [ + -76.58198556399998, + -11.303013331999978 + ], + [ + -76.53809355999994, + -11.332655261999946 + ], + [ + -76.57286052099994, + -11.41264057899997 + ], + [ + -76.53510256199996, + -11.48466560299994 + ], + [ + -76.6214525929999, + -11.564781006999908 + ], + [ + -76.60029549599989, + -11.644757606999917 + ], + [ + -76.52658051299989, + -11.584138676999828 + ], + [ + -76.43113762599995, + -11.666534125999931 + ], + [ + -76.41826654299996, + -11.750574272999927 + ], + [ + -76.25956761099997, + -11.742496967999955 + ], + [ + -76.26423649899994, + -11.814252093999869 + ], + [ + -76.38886249099994, + -11.948127683999871 + ], + [ + -76.38693951499988, + -12.15851848299991 + ], + [ + -76.22509753699995, + -12.072244223999917 + ], + [ + -76.06705457399994, + -12.215297494999902 + ], + [ + -76.10077664599999, + -12.339215216999946 + ], + [ + -76.03226464599999, + -12.32906573799994 + ], + [ + -75.92436256199994, + -12.213264715999856 + ], + [ + -75.92425560899989, + -12.091519918999893 + ], + [ + -75.84718350699995, + -12.07388020399992 + ], + [ + -75.79609664499992, + -12.11887425999987 + ], + [ + -75.73715258699997, + -12.388925937999886 + ], + [ + -75.80029262599999, + -12.520117809999874 + ], + [ + -75.74350757899998, + -12.598304537999923 + ], + [ + -75.7034756089999, + -12.78367300899987 + ], + [ + -75.72861461299988, + -12.877811671999893 + ], + [ + -75.80641962899989, + -12.981811812999979 + ], + [ + -75.78653758699994, + -13.057545492999907 + ], + [ + -75.7279816119999, + -13.093151314999943 + ], + [ + -75.6461566349999, + -13.04694221799997 + ], + [ + -75.59854859799998, + -12.930641298999944 + ], + [ + -75.48818961099994, + -12.92120763499986 + ], + [ + -75.3991315539999, + -12.98483549999986 + ], + [ + -75.47395361899993, + -13.045218395999939 + ], + [ + -75.46740751999994, + -13.098718742999893 + ], + [ + -75.52403264099996, + -13.162524471999973 + ], + [ + -75.47226751499994, + -13.229303261999917 + ], + [ + -75.39908562099993, + -13.160995612999955 + ], + [ + -75.37426764399993, + -13.07348854299994 + ], + [ + -75.32576760599983, + -13.025966839999853 + ], + [ + -75.25513464899996, + -13.089532511999948 + ], + [ + -75.30663255899992, + -13.257727133999936 + ], + [ + -75.31034054499997, + -13.371540638999875 + ], + [ + -75.20716048999998, + -13.40134266299998 + ], + [ + -75.20095855299991, + -13.489909539999928 + ], + [ + -75.29536459899992, + -13.544242041999894 + ], + [ + -75.12076553199995, + -13.735145251999938 + ], + [ + -75.14579054199999, + -13.78984689299989 + ], + [ + -75.09626053499994, + -13.855557325999825 + ], + [ + -75.03233360399997, + -13.823985378999964 + ], + [ + -75.00106055499987, + -13.748210459999939 + ], + [ + -74.91182765199994, + -13.812256413999933 + ], + [ + -74.86658465299985, + -13.766827336999938 + ], + [ + -74.75274650599988, + -13.845098219999954 + ], + [ + -74.6860885829999, + -14.009521319999976 + ], + [ + -74.71814751799991, + -14.154390614999954 + ], + [ + -74.6630405279999, + -14.239924080999913 + ], + [ + -74.5817716059999, + -14.152963678999981 + ], + [ + -74.51851656799994, + -14.179069954999818 + ], + [ + -74.49332459099998, + -14.290824696999948 + ], + [ + -74.51406862799996, + -14.377689879999934 + ], + [ + -74.49157763399995, + -14.492648519999932 + ], + [ + -74.39111365199989, + -14.727901217999886 + ], + [ + -74.33525849299997, + -14.730948877999879 + ], + [ + -74.3360445479999, + -14.637921821999953 + ], + [ + -74.40448764899998, + -14.453740060999962 + ], + [ + -74.32296760499997, + -14.336099714999875 + ], + [ + -74.28650649399998, + -14.347823817999938 + ], + [ + -74.24045564699998, + -14.477110315999937 + ], + [ + -74.19141363499995, + -14.522683393999841 + ], + [ + -73.97820249299997, + -14.593915824999954 + ], + [ + -73.93199155199989, + -14.662053320999973 + ], + [ + -73.95084362599988, + -14.708388481999918 + ], + [ + -74.05309261899993, + -14.742867105999949 + ], + [ + -73.9696045039999, + -14.930764899999929 + ], + [ + -73.89851355999997, + -14.847450458999958 + ], + [ + -73.80113964999998, + -14.846696422999912 + ], + [ + -73.69862360899992, + -14.960021094999945 + ], + [ + -73.63415554199997, + -14.961376783999924 + ], + [ + -73.61525753599989, + -14.88539969299984 + ], + [ + -73.71003758199993, + -14.806776937999928 + ], + [ + -73.71226448599998, + -14.745193921999942 + ], + [ + -73.58913449599993, + -14.669938847999958 + ], + [ + -73.52675653999995, + -14.66760817599993 + ], + [ + -73.40317560399996, + -14.740291178999883 + ], + [ + -73.08930149299988, + -14.678335167999933 + ], + [ + -73.06567357799997, + -14.739348382999879 + ], + [ + -73.20614656399988, + -14.79206585999998 + ], + [ + -73.30984461999992, + -14.871229749999884 + ], + [ + -73.27081261199999, + -14.959538967999947 + ], + [ + -73.28029656799998, + -15.06597807399993 + ], + [ + -73.20928156399992, + -15.060914565999951 + ], + [ + -73.16790060999989, + -15.179091857999936 + ], + [ + -73.09944158399992, + -15.162445732999913 + ], + [ + -72.8116455849999, + -14.961794872999974 + ], + [ + -72.73238362699988, + -14.927437954999903 + ], + [ + -72.66535958199995, + -14.945899934999943 + ], + [ + -72.52160658899993, + -14.870241858999975 + ], + [ + -72.45442161199986, + -14.887520816999938 + ], + [ + -72.51391552299992, + -15.019496229999902 + ], + [ + -72.64923849999997, + -15.121943538999915 + ], + [ + -72.86024453099986, + -15.240383853999901 + ], + [ + -72.95807659599984, + -15.314276029999917 + ], + [ + -72.98294855199993, + -15.375203078999903 + ], + [ + -72.92597960599994, + -15.41592454399995 + ], + [ + -72.81362153499998, + -15.443615669999872 + ], + [ + -72.85959660899988, + -15.590911524999967 + ], + [ + -72.78289062799996, + -15.681111531999932 + ], + [ + -72.72148161999996, + -15.69710973499997 + ], + [ + -72.62166555899995, + -15.662248728999941 + ], + [ + -72.52568052999993, + -15.571014562999892 + ], + [ + -72.3881226019999, + -15.583344844999942 + ], + [ + -72.43473855699995, + -15.28366615799996 + ], + [ + -72.42698663699997, + -15.213283651999916 + ], + [ + -72.33149764899997, + -15.201756355999976 + ], + [ + -72.2139666029999, + -15.460862775999942 + ], + [ + -72.10111953099994, + -15.488403027999937 + ], + [ + -71.94091755699998, + -15.487188154999956 + ], + [ + -71.70444462199998, + -15.515324359999966 + ], + [ + -71.63115661399996, + -15.504381952999893 + ], + [ + -71.50072464499993, + -15.3480328039999 + ], + [ + -71.42945063999986, + -15.348321979999923 + ], + [ + -71.34280355399994, + -15.463454628999898 + ], + [ + -71.49559056099997, + -15.598822699999914 + ], + [ + -71.59224664499999, + -15.65062369999987 + ], + [ + -71.71554561499988, + -15.677499769999883 + ], + [ + -71.9850155879999, + -15.675475874999961 + ], + [ + -72.21668250699997, + -15.845361126999933 + ], + [ + -72.14141854799993, + -15.869197750999945 + ], + [ + -72.00036654099995, + -15.811890343999949 + ], + [ + -71.81899254899986, + -15.84792280499994 + ], + [ + -71.69709050799997, + -15.932403503999865 + ], + [ + -71.63715352999998, + -15.880471745999841 + ], + [ + -71.58240562099991, + -15.926856862999955 + ], + [ + -71.58719654899994, + -16.111325285999953 + ], + [ + -71.49523952699997, + -16.15470347899992 + ], + [ + -71.43295259899998, + -16.04318460399992 + ], + [ + -71.34240759299996, + -16.012868432999937 + ], + [ + -71.21338663299997, + -16.134669891999977 + ], + [ + -71.37069651599995, + -16.270505337999907 + ], + [ + -71.37053658899998, + -16.375053486999946 + ], + [ + -71.3204724869999, + -16.467153838999877 + ], + [ + -71.18581352499996, + -16.563143729999865 + ], + [ + -71.11078660599992, + -16.658278833999873 + ], + [ + -71.03391248399993, + -16.578752677999944 + ], + [ + -70.90344950199994, + -16.53290165599998 + ], + [ + -70.84696955599992, + -16.374612598999875 + ], + [ + -70.76727257699997, + -16.318042128999934 + ], + [ + -70.75668355099992, + -16.225489991999837 + ], + [ + -70.68110661199995, + -16.094784269999934 + ], + [ + -70.64908556299997, + -15.98519809399994 + ], + [ + -70.53334053199995, + -16.13489687399982 + ], + [ + -70.53963450299989, + -16.187500356999976 + ], + [ + -70.62719756399997, + -16.25407211399994 + ], + [ + -70.66734352699996, + -16.4367848629999 + ], + [ + -70.50607252499998, + -16.554117257999962 + ], + [ + -70.51375554499998, + -16.607756073999838 + ], + [ + -70.69313849899993, + -16.554775405999976 + ], + [ + -70.6547245719999, + -16.70955479199995 + ], + [ + -70.67820764699991, + -16.88756143699993 + ], + [ + -70.54760753699998, + -17.12048396499989 + ], + [ + -70.4590684879999, + -17.17183904799998 + ], + [ + -70.32166260799994, + -17.122926116999906 + ], + [ + -70.22953761299988, + -17.114505320999967 + ], + [ + -70.06039449499997, + -17.216529343999923 + ], + [ + -70.05184964699993, + -17.30833163599982 + ], + [ + -69.97397656999982, + -17.340157553999916 + ], + [ + -69.93443259499998, + -17.40644348899997 + ], + [ + -69.94609852799994, + -17.4794538889999 + ], + [ + -69.8955685599999, + -17.715023589999873 + ], + [ + -69.83461753899996, + -17.847544663999884 + ], + [ + -69.76768452199997, + -18.149066364999953 + ], + [ + -69.71045657499997, + -18.312588410999922 + ], + [ + -69.55802948599995, + -18.455489969999974 + ], + [ + -69.50992557599994, + -18.582643272999917 + ], + [ + -69.47132858799995, + -18.76688454599997 + ], + [ + -69.41379553999991, + -19.1490029389999 + ], + [ + -69.38990057799998, + -19.243249393999974 + ], + [ + -69.27910656999995, + -19.40883774699995 + ], + [ + -69.20417755299997, + -19.59488079399995 + ], + [ + -69.19622061199988, + -19.660234156999877 + ], + [ + -69.11131260299999, + -19.916511182999955 + ], + [ + -69.0475925369999, + -20.050113522999936 + ], + [ + -68.99058553699996, + -20.290553779999982 + ], + [ + -68.94244357299988, + -20.58323542199986 + ], + [ + -68.88652052099997, + -20.737664779999875 + ], + [ + -68.88040156399984, + -21.015115162999848 + ], + [ + -68.90821053999991, + -21.328870082999913 + ], + [ + -68.8651734899999, + -21.904012642999874 + ], + [ + -68.87607549599994, + -22.198447778999878 + ], + [ + -68.82582062199998, + -22.22982627199991 + ], + [ + -68.70269750499989, + -22.17759008399986 + ], + [ + -68.57416554599996, + -22.22546248499998 + ], + [ + -68.44403063199996, + -22.247885249999968 + ], + [ + -68.42628463399996, + -22.292448643999876 + ], + [ + -68.44464854599994, + -22.520505812999886 + ], + [ + -68.50491359199992, + -22.670369714999822 + ], + [ + -68.59925057099991, + -22.797217079999882 + ], + [ + -68.6766354859999, + -22.983526335999954 + ], + [ + -68.7951735339999, + -23.163410191999958 + ], + [ + -68.84399459999986, + -23.20503388499992 + ], + [ + -68.86688255999991, + -23.359255203999965 + ], + [ + -68.84267461799988, + -23.454342195999914 + ], + [ + -68.74536155999994, + -23.60415563999993 + ], + [ + -68.75329553399996, + -23.70424444799994 + ], + [ + -68.88306449499999, + -23.92438356799994 + ], + [ + -68.95071449999989, + -24.211949064999885 + ], + [ + -69.07690455499994, + -24.443544737999957 + ], + [ + -69.26538053299993, + -24.66949771299994 + ], + [ + -69.24347660899986, + -24.946248374999982 + ], + [ + -69.29160348499994, + -25.012951057999942 + ], + [ + -69.42931362799993, + -25.081602867999948 + ], + [ + -69.42980950199984, + -25.180359959999976 + ], + [ + -69.41230054399995, + -25.262854986999912 + ], + [ + -69.24242350599985, + -25.4096579859999 + ], + [ + -69.19107848199997, + -25.496253941999953 + ], + [ + -69.21618664099998, + -25.983680555999968 + ], + [ + -69.18832351799995, + -26.101450150999938 + ], + [ + -69.09739663199991, + -26.191329968999923 + ], + [ + -69.09183456899996, + -26.321793956999898 + ], + [ + -69.14326458599993, + -26.40544702699998 + ], + [ + -69.26844763899999, + -26.47974974899995 + ], + [ + -69.31421651899996, + -26.62301055599994 + ], + [ + -69.41484864299991, + -26.758893276999913 + ], + [ + -69.31663553599992, + -26.861498835999896 + ], + [ + -69.33784460099992, + -27.020230959999935 + ], + [ + -69.39601148899999, + -27.127234167999973 + ], + [ + -69.51092553699988, + -27.399175293999917 + ], + [ + -69.62277264699998, + -27.495122268999978 + ], + [ + -69.70158349199988, + -27.604067563999934 + ], + [ + -69.73245253299996, + -27.731335196999964 + ], + [ + -69.69698350399995, + -28.032153655999934 + ], + [ + -69.72669248899996, + -28.14913971099992 + ], + [ + -69.83296948899994, + -28.310203009999952 + ], + [ + -70.00309764899993, + -28.35674101299992 + ], + [ + -70.02460460599997, + -28.409699888999967 + ], + [ + -69.97734860999992, + -28.49309345499995 + ], + [ + -70.00354758899994, + -28.59992936099991 + ], + [ + -70.15331258599997, + -28.69608236299996 + ], + [ + -70.24500255999999, + -28.790007622999894 + ], + [ + -70.26942457599995, + -28.971048349999876 + ], + [ + -70.36209053899995, + -29.060699844999874 + ], + [ + -70.4107515099999, + -29.153929239999968 + ], + [ + -70.4626924879999, + -29.398222825999937 + ], + [ + -70.46504260599994, + -29.497396832999925 + ], + [ + -70.53069252099988, + -29.64732427099989 + ], + [ + -70.41849554999999, + -29.613364486999956 + ], + [ + -70.37126151399991, + -29.64032839899994 + ], + [ + -70.28437755599992, + -29.78586791099997 + ], + [ + -70.1845546209999, + -29.833493213999873 + ], + [ + -70.10432455199998, + -29.934166408999943 + ], + [ + -70.1098175489999, + -30.176808256999948 + ], + [ + -70.19087256399996, + -30.1964425299999 + ], + [ + -70.26806653999995, + -30.116891394999925 + ], + [ + -70.39907853599988, + -30.032605658999955 + ], + [ + -70.46868152499991, + -30.063979290999953 + ], + [ + -70.31298851199995, + -30.29753196999991 + ], + [ + -70.29994157699986, + -30.467250757999977 + ], + [ + -70.3609614959999, + -30.500920359999952 + ], + [ + -70.46306648799992, + -30.441058650999878 + ], + [ + -70.49159261899996, + -30.352726969999935 + ], + [ + -70.57588154099989, + -30.366981234999912 + ], + [ + -70.52639059299992, + -30.465061739999953 + ], + [ + -70.59040050599992, + -30.522510633999957 + ], + [ + -70.60134157199997, + -30.590522066999938 + ], + [ + -70.44172649799987, + -30.704559199999892 + ], + [ + -70.42568956999997, + -30.809836239999925 + ], + [ + -70.50305956599988, + -30.8945023469999 + ], + [ + -70.43164055399996, + -31.021155753999835 + ], + [ + -70.51770761199987, + -31.07796108499997 + ], + [ + -70.59688558399995, + -31.22833963699992 + ], + [ + -70.67233260299992, + -31.248181947999967 + ], + [ + -70.72331955299984, + -31.310719998999957 + ], + [ + -70.8145595869999, + -31.349130739999907 + ], + [ + -70.81157663499994, + -31.41211252899984 + ], + [ + -70.73561060799994, + -31.45506106499988 + ], + [ + -70.68942263399998, + -31.591267326999912 + ], + [ + -70.62868451299988, + -31.636736972999927 + ], + [ + -70.49064663799993, + -31.85753742499992 + ], + [ + -70.45967852299992, + -31.953466462999927 + ], + [ + -70.47879060299994, + -32.14703293799988 + ], + [ + -70.61862153599992, + -32.190389505999974 + ], + [ + -70.51792151799998, + -32.371547914999894 + ], + [ + -70.50751454699997, + -32.49494176699994 + ], + [ + -70.53882548199994, + -32.56376875899997 + ], + [ + -70.4289476159999, + -32.56506577499994 + ], + [ + -70.37624354999991, + -32.61998802799985 + ], + [ + -70.37190256199995, + -32.78912192599989 + ], + [ + -70.33162651199984, + -32.844669971999906 + ], + [ + -70.1745146099999, + -32.86858320599998 + ], + [ + -70.12875360899994, + -32.95393880899991 + ], + [ + -70.19094062499988, + -33.02453153299996 + ], + [ + -70.3171615259999, + -33.074602004999974 + ], + [ + -70.49272149399991, + -33.0931825049999 + ], + [ + -70.45636750399996, + -33.244800906999956 + ], + [ + -70.33515948399997, + -33.27800296699996 + ], + [ + -70.27153061299987, + -33.328732423999895 + ], + [ + -70.14542353799993, + -33.31704888999997 + ], + [ + -70.02498648599993, + -33.34868286299985 + ], + [ + -69.97226749999999, + -33.42107970699993 + ], + [ + -70.0191645839999, + -33.52531772599997 + ], + [ + -70.16729762299997, + -33.61789802599992 + ], + [ + -70.03795664299992, + -33.88154659999992 + ], + [ + -70.06110360399992, + -33.990224511999884 + ], + [ + -69.92137962499999, + -34.078242038999974 + ], + [ + -69.95642050599992, + -34.183025216999965 + ], + [ + -70.02881651299992, + -34.24181940599988 + ], + [ + -70.09023256099982, + -34.232134954999935 + ], + [ + -70.17836760299991, + -34.14642010499995 + ], + [ + -70.32659150199999, + -34.04640974999995 + ], + [ + -70.35593453399997, + -33.91531745499992 + ], + [ + -70.43557753399995, + -33.893604134999975 + ], + [ + -70.42716260599991, + -33.99610642899984 + ], + [ + -70.33461750999987, + -34.11984092199998 + ], + [ + -70.2964096099999, + -34.35130265199996 + ], + [ + -70.33686855399998, + -34.51227827599985 + ], + [ + -70.46381348299991, + -34.55831286199998 + ], + [ + -70.58634953199987, + -34.65610050299995 + ], + [ + -70.45290359799998, + -34.781394029999944 + ], + [ + -70.43981961499992, + -34.98016901999989 + ], + [ + -70.36508958399997, + -34.99444775999996 + ], + [ + -70.37723563199995, + -35.16694347199984 + ], + [ + -70.53916159599993, + -35.19464448799988 + ], + [ + -70.56333953099983, + -35.29461812999995 + ], + [ + -70.43160249999994, + -35.312218617999974 + ], + [ + -70.4450836179999, + -35.46314702199987 + ], + [ + -70.38849655099989, + -35.58618698999993 + ], + [ + -70.42213463699994, + -35.63430481399996 + ], + [ + -70.37717461199998, + -35.76318177299993 + ], + [ + -70.32224263599994, + -35.81419068299988 + ], + [ + -70.4206926149999, + -35.87112744199993 + ], + [ + -70.37733453799996, + -35.93160790299987 + ], + [ + -70.37882249399996, + -36.0199276809999 + ], + [ + -70.28359954799998, + -36.06642377499986 + ], + [ + -70.28359954799998, + -36.262792487999945 + ], + [ + -70.39815552099998, + -36.32825096099998 + ], + [ + -70.32450859899996, + -36.40188815999994 + ], + [ + -70.27447551099988, + -36.60975080899988 + ], + [ + -70.13814553199995, + -36.417565838999906 + ], + [ + -69.89565254599995, + -36.23587584999996 + ], + [ + -69.9345014939999, + -36.15818365399997 + ], + [ + -70.08616649999993, + -36.07309560199997 + ], + [ + -70.02513149299995, + -36.001129251999885 + ], + [ + -69.79551663099994, + -36.02415383699997 + ], + [ + -69.66071349999993, + -36.00207908899995 + ], + [ + -69.54782854199988, + -35.84424198499988 + ], + [ + -69.52245350399988, + -35.66823207599987 + ], + [ + -69.47871354799997, + -35.638451844999906 + ], + [ + -69.46820062999996, + -35.49662803099989 + ], + [ + -69.71090651499998, + -35.439237642999956 + ], + [ + -69.84901463099999, + -35.36683627199983 + ], + [ + -69.76126850999998, + -35.266897834999895 + ], + [ + -69.58693649099996, + -35.30922460199997 + ], + [ + -69.41706850599991, + -35.323704506999945 + ], + [ + -69.41255954499997, + -35.216335176999905 + ], + [ + -69.60816148099991, + -35.06494476199998 + ], + [ + -69.74319461199997, + -34.9043919209999 + ], + [ + -69.63047058699988, + -34.912593780999885 + ], + [ + -69.39328753799992, + -35.03293276499994 + ], + [ + -69.34439857899997, + -35.009206279999944 + ], + [ + -69.27777854199991, + -34.68492268299991 + ], + [ + -69.3156895539999, + -34.65641650099997 + ], + [ + -69.34805258599994, + -34.52652181199994 + ], + [ + -69.31623856899995, + -34.452133761999846 + ], + [ + -69.3870084859999, + -34.419133873999954 + ], + [ + -69.2584606019999, + -34.26374998499989 + ], + [ + -69.23992150799995, + -34.08026794499989 + ], + [ + -69.27467354899994, + -34.0506707749999 + ], + [ + -69.26977549999998, + -33.92297331799995 + ], + [ + -69.33209260399997, + -33.793475092999984 + ], + [ + -69.32093059099986, + -33.68984107399996 + ], + [ + -69.27615362599994, + -33.63966750499998 + ], + [ + -69.25746164599997, + -33.37015109599997 + ], + [ + -69.09255960399992, + -33.377960179999945 + ], + [ + -69.06906848199992, + -32.99141664499996 + ], + [ + -68.95910662899996, + -32.96778520999993 + ], + [ + -68.91593949299994, + -32.732197403999976 + ], + [ + -68.82291461599988, + -32.60646147999995 + ], + [ + -68.76941661599994, + -32.47380545699997 + ], + [ + -68.74769558499997, + -32.315336692999836 + ], + [ + -68.67467462399992, + -32.17707300899991 + ], + [ + -68.65020751299994, + -32.01145246899995 + ], + [ + -68.60842154599999, + -31.922679396999968 + ], + [ + -68.77427661199988, + -31.564195120999955 + ], + [ + -68.72223655999989, + -31.40634862899998 + ], + [ + -68.65711956599995, + -31.370659825999894 + ], + [ + -68.4540485149999, + -31.38307644199989 + ], + [ + -68.40280155899995, + -31.449797229999945 + ], + [ + -68.32341755999994, + -31.453648881999925 + ], + [ + -68.30844848599997, + -31.52564942999993 + ], + [ + -68.22608153599998, + -31.641869546999885 + ], + [ + -68.07218157899996, + -31.759226584999965 + ], + [ + -67.8521886389999, + -31.672952661999886 + ], + [ + -67.75245656399994, + -31.572738123999954 + ], + [ + -67.66950254499994, + -31.541561970999965 + ], + [ + -67.40148951399993, + -31.54358703899993 + ], + [ + -67.32563060799993, + -31.510917061999976 + ], + [ + -67.23564148999998, + -31.35398050999993 + ], + [ + -67.22367062299992, + -31.074282937999897 + ], + [ + -67.26477849399998, + -31.030835510999964 + ], + [ + -67.2837826149999, + -30.894323476999944 + ], + [ + -67.36106862399993, + -30.770365857999877 + ], + [ + -67.65148161999997, + -30.502724480999916 + ], + [ + -67.7200854859999, + -30.399001278999947 + ], + [ + -67.61734061999988, + -30.274749621999888 + ], + [ + -67.52787754999991, + -30.280610583999874 + ], + [ + -67.41436763799993, + -30.34048318899994 + ], + [ + -67.30413052299997, + -30.345218963999912 + ], + [ + -67.22130558499998, + -30.226424429999952 + ], + [ + -67.20293463299998, + -30.074703935999935 + ], + [ + -67.09846460299997, + -29.953626505999978 + ], + [ + -67.01248957799993, + -29.73662774999997 + ], + [ + -66.99210361599995, + -29.333687032999933 + ], + [ + -67.04840854799994, + -29.232785011999965 + ], + [ + -67.05440563199994, + -29.152592325999933 + ], + [ + -66.91989854899998, + -29.044729469999936 + ], + [ + -66.77637455099989, + -28.965484777999905 + ], + [ + -66.40855451099992, + -28.82833320499992 + ], + [ + -66.14066352099991, + -28.63746084099995 + ], + [ + -66.02264364199988, + -28.44490941399988 + ], + [ + -66.02800755699997, + -28.25826806699996 + ], + [ + -66.08195449099992, + -28.120652806999885 + ], + [ + -66.06691752499995, + -27.805988114999934 + ], + [ + -66.18118247899997, + -27.737680800999897 + ], + [ + -66.2735215479999, + -27.55804638999996 + ], + [ + -66.50806463299995, + -27.47004227399998 + ], + [ + -66.30133856999998, + -27.419190607999894 + ], + [ + -66.16725158799989, + -27.41941541099993 + ], + [ + -65.98623650999997, + -27.309427070999902 + ], + [ + -65.89929957799995, + -27.159815798999944 + ], + [ + -65.89675147899999, + -27.028181361999884 + ], + [ + -65.85803949199982, + -26.995839956999873 + ], + [ + -65.88489561199992, + -26.85944191699997 + ], + [ + -65.73840358199993, + -26.740774283999826 + ], + [ + -65.71559156199993, + -26.260841762999974 + ], + [ + -65.68646260399993, + -26.23564894699996 + ], + [ + -65.67095155699997, + -26.086014540999827 + ], + [ + -65.63685648899997, + -25.969843038999954 + ], + [ + -65.62577058399995, + -25.705314365999982 + ], + [ + -65.69652558199988, + -25.414634991999947 + ] + ], + [ + [ + -66.13941947899991, + -26.60452326299992 + ], + [ + -66.1779026399999, + -26.523101957999927 + ], + [ + -66.23374153799983, + -26.503874877999976 + ], + [ + -66.21491259799996, + -26.396196423999925 + ], + [ + -66.14963550999994, + -26.265829330999964 + ], + [ + -66.14684249199985, + -26.15692644799998 + ], + [ + -66.21245552699997, + -25.76907416199998 + ], + [ + -66.11869052899988, + -25.857748327999843 + ], + [ + -66.07643148799991, + -25.966687084999876 + ], + [ + -66.07785758499989, + -26.11868233799987 + ], + [ + -66.04873650599995, + -26.22521029299992 + ], + [ + -66.07939951999992, + -26.433436045999883 + ], + [ + -66.11666160599998, + -26.477689812999927 + ], + [ + -66.13941947899991, + -26.60452326299992 + ] + ], + [ + [ + -68.83421358999988, + -16.56511481799987 + ], + [ + -68.90171054099983, + -16.591154205999942 + ], + [ + -69.03153951599995, + -16.55925000099984 + ], + [ + -69.09117860099997, + -16.492718140999898 + ], + [ + -69.01835662599996, + -16.401447094999924 + ], + [ + -69.03662163199988, + -16.26902341799996 + ], + [ + -68.9555966229999, + -16.169978658999923 + ], + [ + -69.04094652599997, + -16.096756196999934 + ], + [ + -69.11219756499992, + -16.238455119999912 + ], + [ + -69.27428462899985, + -16.2877329989999 + ], + [ + -69.40209959999993, + -16.188879347999944 + ], + [ + -69.50707254399993, + -16.17104634599997 + ], + [ + -69.44124560299997, + -16.000821290999966 + ], + [ + -69.62306953399991, + -15.994128676999821 + ], + [ + -69.76014751399993, + -15.90553715699997 + ], + [ + -69.77404755999993, + -15.832106990999876 + ], + [ + -69.83332052299994, + -15.797468273999925 + ], + [ + -69.88784748599994, + -15.886954309999908 + ], + [ + -69.9643015069999, + -15.858137158999966 + ], + [ + -70.02114053399998, + -15.79103449199988 + ], + [ + -69.91129250699998, + -15.626757906999899 + ], + [ + -69.7894514859999, + -15.732059421999907 + ], + [ + -69.81866459799994, + -15.605859475999978 + ], + [ + -69.89237958099994, + -15.511993558999961 + ], + [ + -69.93532560299997, + -15.404399426999873 + ], + [ + -69.83078751199997, + -15.28975376699998 + ], + [ + -69.75991852099992, + -15.318891776999976 + ], + [ + -69.67449150499993, + -15.254653037999901 + ], + [ + -69.62681557499997, + -15.358452179999972 + ], + [ + -69.5663835609999, + -15.35214362499994 + ], + [ + -69.43330358199984, + -15.482823194999924 + ], + [ + -69.35999260699998, + -15.47964142499984 + ], + [ + -69.26627354099992, + -15.702523102999976 + ], + [ + -69.17507960799998, + -15.68509947399997 + ], + [ + -69.10621657399997, + -15.732399223999948 + ], + [ + -68.98870849399998, + -15.887221524999916 + ], + [ + -68.92059362799989, + -15.929346790999887 + ], + [ + -68.7602156339999, + -15.95231337399997 + ], + [ + -68.90151256099995, + -16.091955544999905 + ], + [ + -68.84762563999982, + -16.165591905999975 + ], + [ + -68.67176057099988, + -16.217418386999896 + ], + [ + -68.60045655899995, + -16.196027769999887 + ], + [ + -68.58525849199998, + -16.3159334099999 + ], + [ + -68.64892558499992, + -16.315830479999818 + ], + [ + -68.82188448099993, + -16.48563677399983 + ], + [ + -68.83421358999988, + -16.56511481799987 + ] + ] + ], + [ + [ + [ + -78.27191152399996, + -7.39596685999993 + ], + [ + -78.3839945009999, + -7.328622960999951 + ], + [ + -78.33688351099994, + -7.47975269899996 + ], + [ + -78.27191152399996, + -7.39596685999993 + ] + ] + ], + [ + [ + [ + -78.59828154399992, + -6.772350244999927 + ], + [ + -78.64627062199997, + -6.682786759999942 + ], + [ + -78.76977561799998, + -6.714422408999894 + ], + [ + -78.75692750199994, + -6.76880151499995 + ], + [ + -78.90793653999998, + -6.768395327999883 + ], + [ + -78.99047850499994, + -6.840669293999952 + ], + [ + -78.95040864899994, + -6.951684080999883 + ], + [ + -78.79352557299995, + -6.899955835999947 + ], + [ + -78.75253253399995, + -6.957738664999908 + ], + [ + -78.75789661699986, + -7.063547954999933 + ], + [ + -78.67813157699993, + -7.073073317999899 + ], + [ + -78.60573556999992, + -7.131001153999819 + ], + [ + -78.58027654499995, + -7.062834990999932 + ], + [ + -78.3979946259999, + -6.997353886999974 + ], + [ + -78.2679596239999, + -7.059405450999918 + ], + [ + -78.26420553699995, + -7.153967567999871 + ], + [ + -78.12667862299992, + -7.198999342999912 + ], + [ + -78.08148155699996, + -7.143814065999834 + ], + [ + -78.17715461099993, + -7.018940304999887 + ], + [ + -78.29296854099994, + -6.974931457999958 + ], + [ + -78.29178652499996, + -6.858777054999905 + ], + [ + -78.36140460099989, + -6.802291073999925 + ], + [ + -78.37836454399991, + -6.728276353999831 + ], + [ + -78.51467155599994, + -6.842024982999931 + ], + [ + -78.59828154399992, + -6.772350244999927 + ] + ] + ], + [ + [ + [ + -79.20183556999996, + -6.172639991999972 + ], + [ + -79.27389562999997, + -6.201792921999981 + ], + [ + -79.2137905109999, + -6.371140558999969 + ], + [ + -79.17217251699998, + -6.307102985999904 + ], + [ + -79.20183556999996, + -6.172639991999972 + ] + ] + ], + [ + [ + [ + -79.33190158499986, + -6.073004308999884 + ], + [ + -79.45039353299995, + -6.121741555999904 + ], + [ + -79.41977661999994, + -6.164871643999902 + ], + [ + -79.33190158499986, + -6.073004308999884 + ] + ] + ], + [ + [ + [ + -79.3593216399999, + -5.342739711999968 + ], + [ + -79.31056964099992, + -5.365935957999966 + ], + [ + -79.2838975869999, + -5.266935455999942 + ], + [ + -79.33795164199995, + -5.25405414699992 + ], + [ + -79.3593216399999, + -5.342739711999968 + ] + ] + ], + [ + [ + [ + -79.29513554, + -4.438241497999968 + ], + [ + -79.33824953499999, + -4.46465270799996 + ], + [ + -79.33953850399996, + -4.5773043129999 + ], + [ + -79.4961166469999, + -4.785326720999933 + ], + [ + -79.55340561399998, + -4.809574057999953 + ], + [ + -79.50173956299989, + -4.9380325919999 + ], + [ + -79.45304858399999, + -4.969445282999914 + ], + [ + -79.37792158599996, + -4.886859228999924 + ], + [ + -79.34293350999997, + -4.73712558099993 + ], + [ + -79.35436257099997, + -4.673676082999918 + ], + [ + -79.29243455499989, + -4.610685912999941 + ], + [ + -79.29513554, + -4.438241497999968 + ] + ] + ], + [ + [ + [ + -79.57678257399994, + -3.490494843999954 + ], + [ + -79.55603049099989, + -3.554073925999944 + ], + [ + -79.44226861899995, + -3.569260760999896 + ], + [ + -79.37933360099998, + -3.684861455999965 + ], + [ + -79.29631051499996, + -3.730730917999949 + ], + [ + -79.42426261399993, + -3.496553282999969 + ], + [ + -79.48365057699988, + -3.513878173999899 + ], + [ + -79.57678257399994, + -3.490494843999954 + ] + ] + ], + [ + [ + [ + -78.77938060899993, + -3.159272371999975 + ], + [ + -78.87102565599997, + -3.165458887999876 + ], + [ + -78.95208754399994, + -3.214966095999955 + ], + [ + -78.97397654899999, + -3.372805378999942 + ], + [ + -78.85810059299996, + -3.36386021199985 + ], + [ + -78.83496855199996, + -3.28667093099989 + ], + [ + -78.75559963999996, + -3.230026028999873 + ], + [ + -78.77938060899993, + -3.159272371999975 + ] + ] + ], + [ + [ + [ + -78.55472565399998, + -2.655106930999921 + ], + [ + -78.63089754099997, + -2.779790757999933 + ], + [ + -78.59901462499994, + -2.849195430999828 + ], + [ + -78.70350661499998, + -2.922887950999893 + ], + [ + -78.70657355299994, + -3.013710229999958 + ], + [ + -78.76254253799993, + -3.095255083999973 + ], + [ + -78.69752461799993, + -3.156299478999927 + ], + [ + -78.64362361699995, + -3.075562640999976 + ], + [ + -78.55571756899997, + -2.826897053999971 + ], + [ + -78.60409556699994, + -2.794089614999905 + ], + [ + -78.55472565399998, + -2.655106930999921 + ] + ] + ], + [ + [ + [ + -78.98570249599993, + -2.532879168999898 + ], + [ + -79.18286849599991, + -2.588743714999907 + ], + [ + -79.34795359999998, + -2.799944205999907 + ], + [ + -79.32417263199994, + -2.917445412999882 + ], + [ + -79.3897786259999, + -3.112874849999969 + ], + [ + -79.33013954099988, + -3.162596299999905 + ], + [ + -79.26332856399995, + -3.091640471999938 + ], + [ + -79.17093652199998, + -3.079676310999901 + ], + [ + -79.14484365699991, + -2.965335919999973 + ], + [ + -78.95882458299997, + -2.707692141999928 + ], + [ + -78.94274155499994, + -2.592008633999967 + ], + [ + -78.98570249599993, + -2.532879168999898 + ] + ] + ], + [ + [ + [ + -78.65748560799994, + -1.980121151999924 + ], + [ + -78.6968994959999, + -1.997431961999951 + ], + [ + -78.68260952499998, + -2.102871274999927 + ], + [ + -78.77607763599985, + -2.17418567999988 + ], + [ + -78.70106463099995, + -2.264094164999904 + ], + [ + -78.83043662499989, + -2.313833551999892 + ], + [ + -78.92181361899992, + -2.373719902999937 + ], + [ + -78.9577946149999, + -2.436714096999935 + ], + [ + -78.88724564399996, + -2.505510075999894 + ], + [ + -78.74987060999996, + -2.510061616999906 + ], + [ + -78.67734552199994, + -2.443118708999975 + ], + [ + -78.58100157999996, + -2.44508962999987 + ], + [ + -78.52674853799988, + -2.385619020999968 + ], + [ + -78.45101955099989, + -2.527946250999889 + ], + [ + -78.39330260399993, + -2.552620729999887 + ], + [ + -78.35329460699995, + -2.408401368999876 + ], + [ + -78.51079559699997, + -2.363664804999928 + ], + [ + -78.47171765499996, + -2.249403202999929 + ], + [ + -78.60010561299993, + -2.136079536999887 + ], + [ + -78.66395559899996, + -2.027231638999922 + ], + [ + -78.65748560799994, + -1.980121151999924 + ] + ] + ], + [ + [ + [ + -78.42787963099994, + -1.549898345999907 + ], + [ + -78.46646153199998, + -1.54600461699988 + ], + [ + -78.54700457999996, + -1.740240135999954 + ], + [ + -78.5282364929999, + -1.784275804999879 + ], + [ + -78.61581464099987, + -1.990961467999966 + ], + [ + -78.56277462799989, + -2.081817609999916 + ], + [ + -78.48535149099996, + -2.127679193999938 + ], + [ + -78.35595653199994, + -2.047892359999935 + ], + [ + -78.43072562299994, + -2.016004582999926 + ], + [ + -78.36805765299988, + -1.871891503999962 + ], + [ + -78.40075663099992, + -1.799986676999879 + ], + [ + -78.3798146129999, + -1.720466722999902 + ], + [ + -78.42787963099994, + -1.549898345999907 + ] + ] + ], + [ + [ + [ + -78.91265052199998, + -0.706709563999937 + ], + [ + -78.98162050999997, + -0.832391172999905 + ], + [ + -78.96199763599998, + -1.091038599999933 + ], + [ + -78.89033554899999, + -1.105462513999953 + ], + [ + -78.94645658199988, + -1.269212380999932 + ], + [ + -79.00429556899991, + -1.344279867999944 + ], + [ + -79.06694057299995, + -1.360758521999912 + ], + [ + -78.9881205079999, + -1.500737980999929 + ], + [ + -78.90444949999994, + -1.59988784899997 + ], + [ + -78.95265952499994, + -1.727816981999922 + ], + [ + -78.86017662299997, + -1.978634369999952 + ], + [ + -78.89652256699998, + -2.057928347999962 + ], + [ + -78.76378658099992, + -2.049828243999968 + ], + [ + -78.72920251299996, + -1.905347870999947 + ], + [ + -78.7442096399999, + -1.798024808999912 + ], + [ + -78.80972259499998, + -1.612904776999926 + ], + [ + -78.72206163399994, + -1.518753875999948 + ], + [ + -78.63175165599989, + -1.565304283999978 + ], + [ + -78.5467836329999, + -1.50216491599997 + ], + [ + -78.71685764599994, + -1.326192222999907 + ], + [ + -78.70221764599995, + -1.211696598999936 + ], + [ + -78.63330063199999, + -1.158307731999969 + ], + [ + -78.71583555599994, + -1.089388035999946 + ], + [ + -78.76133755599989, + -0.959151700999882 + ], + [ + -78.70858755699993, + -0.84637788699996 + ], + [ + -78.80140657399994, + -0.719015705999936 + ], + [ + -78.85646058999998, + -0.835868824999977 + ], + [ + -78.94606749399986, + -0.821532919999811 + ], + [ + -78.91265052199998, + -0.706709563999937 + ] + ] + ], + [ + [ + [ + -78.64033556399994, + -0.494616399999927 + ], + [ + -78.76338961399995, + -0.629079225999931 + ], + [ + -78.71874256799987, + -0.72663988599993 + ], + [ + -78.64224965499989, + -0.661303787999941 + ], + [ + -78.68000761399998, + -0.594765725999935 + ], + [ + -78.64033556399994, + -0.494616399999927 + ] + ] + ], + [ + [ + [ + -78.04148059999989, + 0.310966303000157 + ], + [ + -78.0378954919999, + 0.15404617900009 + ], + [ + -78.07755262299997, + 0.016190358000131 + ], + [ + -78.06207258899991, + -0.064525692999894 + ], + [ + -78.12300164899989, + -0.099566909999851 + ], + [ + -78.20990756799995, + -0.099213025999973 + ], + [ + -78.2780985419999, + -0.315792853999881 + ], + [ + -78.32414251499995, + -0.374272218999977 + ], + [ + -78.32570657799994, + -0.448092981999935 + ], + [ + -78.44817355999993, + -0.551039013999969 + ], + [ + -78.52474962199989, + -0.546046584999829 + ], + [ + -78.56700849499998, + -0.62022408099989 + ], + [ + -78.50334961699991, + -0.643511186999945 + ], + [ + -78.47824849899996, + -0.772911511999951 + ], + [ + -78.51418255599998, + -0.86455069099992 + ], + [ + -78.52438349999989, + -0.983787622999898 + ], + [ + -78.4557955599999, + -1.018043119999959 + ], + [ + -78.46897157599994, + -1.183225788999948 + ], + [ + -78.41387950599983, + -1.235654928999907 + ], + [ + -78.25807149299993, + -1.253334541999891 + ], + [ + -78.326354499, + -1.09023980499984 + ], + [ + -78.28688059699994, + -1.056959457999938 + ], + [ + -78.33934762299992, + -0.920079458999908 + ], + [ + -78.20461255199996, + -0.942754853999929 + ], + [ + -78.15646354799992, + -0.910044308999886 + ], + [ + -78.25082349299993, + -0.838352717999953 + ], + [ + -78.12870050499998, + -0.795005034999917 + ], + [ + -78.17005161899993, + -0.738046314999906 + ], + [ + -78.13108850899994, + -0.664113737999912 + ], + [ + -78.07254762099996, + -0.678145545999882 + ], + [ + -78.03816253999997, + -0.589298210999914 + ], + [ + -77.9679106239999, + -0.550134103999881 + ], + [ + -78.10890161199995, + -0.449328641999898 + ], + [ + -77.9550246209999, + -0.320345568999812 + ], + [ + -77.99853558399997, + -0.294891237999934 + ], + [ + -78.03498060199996, + -0.204566172999876 + ], + [ + -77.96311952799988, + -0.123700252999924 + ], + [ + -77.91474957699995, + -0.18364862999988 + ], + [ + -77.86566163099997, + -0.143018695999899 + ], + [ + -77.92111160899992, + -0.035248877999948 + ], + [ + -77.91285660799991, + 0.015790542000047 + ], + [ + -77.97339657999999, + 0.113393278000103 + ], + [ + -77.9412845029999, + 0.174466674000087 + ], + [ + -78.04148059999989, + 0.310966303000157 + ] + ] + ], + [ + [ + [ + -78.57779650799989, + -0.101212779999969 + ], + [ + -78.63812257299998, + -0.154076940999857 + ], + [ + -78.61995664199992, + -0.214995271999953 + ], + [ + -78.5394285129999, + -0.218345182999826 + ], + [ + -78.51468664399994, + -0.157306487999904 + ], + [ + -78.57779650799989, + -0.101212779999969 + ] + ] + ], + [ + [ + [ + -78.23687751499995, + 0.161437677000094 + ], + [ + -78.2995525259999, + 0.15481312300011 + ], + [ + -78.310806572, + 0.083841370000073 + ], + [ + -78.2247316349999, + 0.093404618000022 + ], + [ + -78.23687751499995, + 0.161437677000094 + ] + ] + ], + [ + [ + [ + -78.25675151099989, + 0.577528259000189 + ], + [ + -78.39078551899996, + 0.550679514000137 + ], + [ + -78.3996735209999, + 0.492058830000133 + ], + [ + -78.32215851899991, + 0.39937476200015 + ], + [ + -78.25856753399995, + 0.474553057999969 + ], + [ + -78.25675151099989, + 0.577528259000189 + ] + ] + ], + [ + [ + [ + -77.92009756599998, + 0.848809226000071 + ], + [ + -77.99158463899994, + 0.846002294000186 + ], + [ + -78.04302253499986, + 0.751108253000041 + ], + [ + -78.04675264899993, + 0.673116321000123 + ], + [ + -77.95619959699997, + 0.70210312100005 + ], + [ + -77.87683856399997, + 0.636470975000123 + ], + [ + -77.78383665399997, + 0.677158074000147 + ], + [ + -77.82088449899993, + 0.758023827000045 + ], + [ + -77.92009756599998, + 0.848809226000071 + ] + ] + ], + [ + [ + [ + -77.2608265149999, + 1.016220643 + ], + [ + -77.31795454999991, + 1.026925841999969 + ], + [ + -77.40872150899992, + 0.990344367000034 + ], + [ + -77.39065548999997, + 0.934592808000048 + ], + [ + -77.2608265149999, + 1.016220643 + ] + ] + ], + [ + [ + [ + -77.13143155499995, + 0.954210317000104 + ], + [ + -77.19724257099989, + 1.009975957000051 + ], + [ + -77.25984164099998, + 0.892999793000058 + ], + [ + -77.13139350099988, + 0.910913429000061 + ], + [ + -77.13143155499995, + 0.954210317000104 + ] + ] + ], + [ + [ + [ + -76.23384053299998, + 2.746348222000051 + ], + [ + -76.31986249699997, + 2.712633860000096 + ], + [ + -76.28081556799998, + 2.600099266000086 + ], + [ + -76.28263863199999, + 2.486350638000147 + ], + [ + -76.37269564399998, + 2.43820146500002 + ], + [ + -76.44216955099989, + 2.328294430000085 + ], + [ + -76.42533164899999, + 2.256211739000094 + ], + [ + -76.36559265199998, + 2.254745912000089 + ], + [ + -76.32854463999996, + 2.39784427800015 + ], + [ + -76.23976150899989, + 2.427429211000117 + ], + [ + -76.24183653299997, + 2.497521871000117 + ], + [ + -76.18935358199991, + 2.644825940000089 + ], + [ + -76.25444760999989, + 2.680623204000085 + ], + [ + -76.23384053299998, + 2.746348222000051 + ] + ] + ], + [ + [ + [ + -76.0074535419999, + 3.398604794000164 + ], + [ + -76.06025651499988, + 3.422660018000101 + ], + [ + -76.11318152799993, + 3.375086514000088 + ], + [ + -76.09190356399995, + 3.253529640000124 + ], + [ + -76.16660358799999, + 3.088230965000037 + ], + [ + -76.15515156099997, + 3.003058256000088 + ], + [ + -76.08877560499991, + 2.988922344 + ], + [ + -76.06687151299991, + 2.872514808000176 + ], + [ + -76.01779949299998, + 2.883382113000096 + ], + [ + -75.97526552499994, + 3.030664054000169 + ], + [ + -76.00892657799989, + 3.160084663000134 + ], + [ + -75.98622151099994, + 3.348869598000135 + ], + [ + -76.0074535419999, + 3.398604794000164 + ] + ] + ], + [ + [ + [ + -75.73963949799992, + 4.040169242000047 + ], + [ + -75.76232159799991, + 4.098840888000097 + ], + [ + -76.00828552999997, + 3.736781562000033 + ], + [ + -75.99773355199989, + 3.63304126100013 + ], + [ + -75.91474164599998, + 3.733447074000026 + ], + [ + -75.81431554999995, + 3.730132199000082 + ], + [ + -75.76358055999992, + 3.759923829000172 + ], + [ + -75.80979954799994, + 3.848391296999978 + ], + [ + -75.8634415489999, + 3.847453530000109 + ], + [ + -75.80438249199995, + 3.989683027000126 + ], + [ + -75.73963949799992, + 4.040169242000047 + ] + ] + ], + [ + [ + [ + -74.20954855299988, + 4.386366654000085 + ], + [ + -74.26110060999991, + 4.36671595200005 + ], + [ + -74.23480959699992, + 4.280535402999988 + ], + [ + -74.33341950299996, + 4.158910300000059 + ], + [ + -74.31533856499988, + 4.007748543000105 + ], + [ + -74.38037157199989, + 3.92157386100007 + ], + [ + -74.49497263999996, + 3.819344650000176 + ], + [ + -74.55409959099995, + 3.661553143000049 + ], + [ + -74.55189548599992, + 3.541670302000171 + ], + [ + -74.4424816419999, + 3.697834714000066 + ], + [ + -74.40325953199988, + 3.683639626000058 + ], + [ + -74.29695151899989, + 3.768909230000133 + ], + [ + -74.23800662299993, + 3.686117316000093 + ], + [ + -74.16049161999996, + 3.834827534000112 + ], + [ + -74.06955752599998, + 3.924132855999972 + ], + [ + -74.07000763399998, + 4.019549592000146 + ], + [ + -73.95672654799995, + 4.064030341000148 + ], + [ + -74.00525659399995, + 4.106745190000083 + ], + [ + -74.06968660799998, + 4.061367577999988 + ], + [ + -74.15027659499987, + 4.07377380000014 + ], + [ + -74.20777158899995, + 4.144700292000039 + ], + [ + -74.12052150899996, + 4.222697757 + ], + [ + -74.11154164099997, + 4.338269952000076 + ], + [ + -74.19851662699995, + 4.315227765000031 + ], + [ + -74.20954855299988, + 4.386366654000085 + ] + ] + ], + [ + [ + [ + -73.75779749899993, + 4.749582850000138 + ], + [ + -73.83096363499999, + 4.814372782000021 + ], + [ + -73.90218349299994, + 4.733927969000092 + ], + [ + -73.8181306059999, + 4.719678063000174 + ], + [ + -73.81694758399988, + 4.599357687000065 + ], + [ + -73.77727553299997, + 4.50397179600003 + ], + [ + -73.70863361299996, + 4.592076328000019 + ], + [ + -73.75779749899993, + 4.749582850000138 + ] + ] + ], + [ + [ + [ + -75.29483050399989, + 4.980918684000187 + ], + [ + -75.36852251999994, + 5.131863349000071 + ], + [ + -75.40399959599989, + 5.060641647000068 + ], + [ + -75.4247665989999, + 4.838899069000092 + ], + [ + -75.53145565399996, + 4.785928961000138 + ], + [ + -75.44032257299995, + 4.646586191000154 + ], + [ + -75.39417265299994, + 4.618039272999965 + ], + [ + -75.27375051999985, + 4.643477678000067 + ], + [ + -75.25801064699994, + 4.688568126000177 + ], + [ + -75.29279353399994, + 4.817812547000131 + ], + [ + -75.25830853999997, + 4.952265650000129 + ], + [ + -75.29483050399989, + 4.980918684000187 + ] + ] + ], + [ + [ + [ + -73.67137957399996, + 4.931516249000083 + ], + [ + -73.69461856799995, + 5.032612898000082 + ], + [ + -73.79108455099998, + 4.929172334000043 + ], + [ + -73.67137957399996, + 4.931516249000083 + ] + ] + ], + [ + [ + [ + -73.91450455499995, + 5.230960076000144 + ], + [ + -73.93250251299997, + 5.326822226000047 + ], + [ + -73.98712150799997, + 5.304599957000164 + ], + [ + -74.03594257399999, + 5.208814920000179 + ], + [ + -73.9883425839999, + 5.17200344500003 + ], + [ + -73.91450455499995, + 5.230960076000144 + ] + ] + ], + [ + [ + [ + -73.05578661999994, + 5.579571476000069 + ], + [ + -73.09464260899995, + 5.649055441000144 + ], + [ + -73.18559262899993, + 5.542543245000161 + ], + [ + -73.23532849499998, + 5.453559787000074 + ], + [ + -73.10674255699996, + 5.463837174000162 + ], + [ + -72.97442650399995, + 5.348177471000156 + ], + [ + -72.90554050299988, + 5.453954910000164 + ], + [ + -72.99548352099987, + 5.456886565000161 + ], + [ + -73.07731654499992, + 5.548034900000061 + ], + [ + -73.05578661999994, + 5.579571476000069 + ] + ] + ], + [ + [ + [ + -72.73348953499988, + 6.255108113 + ], + [ + -72.85721564599999, + 6.23814029100015 + ], + [ + -72.99288161099997, + 6.069056852000074 + ], + [ + -72.93961360999998, + 6.022433186000114 + ], + [ + -72.77890754799989, + 6.054202946000089 + ], + [ + -72.73348953499988, + 6.255108113 + ] + ] + ], + [ + [ + [ + -73.55743464099993, + 10.93058534100004 + ], + [ + -73.63171355799989, + 10.896174443000177 + ], + [ + -73.73855549899997, + 10.929349178000166 + ], + [ + -73.82891861799999, + 10.88731225700019 + ], + [ + -73.87834955099993, + 10.94524713400017 + ], + [ + -73.94641161099992, + 10.879724791000172 + ], + [ + -73.83267957799995, + 10.81696612900015 + ], + [ + -73.8023456379999, + 10.708681495 + ], + [ + -73.69018554699988, + 10.627943315000095 + ], + [ + -73.56718463899995, + 10.63818751000008 + ], + [ + -73.4914395589999, + 10.841545389000089 + ], + [ + -73.36308261399995, + 10.922038650000104 + ], + [ + -73.55743464099993, + 10.93058534100004 + ] + ] + ], + [ + [ + [ + 25.90359306300013, + -32.05258941699998 + ], + [ + 25.790735245000178, + -31.990304946999913 + ], + [ + 25.682846069000107, + -32.06049728399995 + ], + [ + 25.560218811000084, + -32.003284453999925 + ], + [ + 25.500017166000134, + -32.03821182299998 + ], + [ + 25.432321548000175, + -32.134727477999945 + ], + [ + 25.46768760700013, + -32.20686340299994 + ], + [ + 25.565221786000052, + -32.18080139199998 + ], + [ + 25.665311813000073, + -32.31787872299992 + ], + [ + 25.608745575000114, + -32.45172119099993 + ], + [ + 25.657806396000183, + -32.455165862999934 + ], + [ + 25.70494842500011, + -32.542507171999944 + ], + [ + 25.78728485100015, + -32.44745635999993 + ], + [ + 25.74972534200009, + -32.376491546999944 + ], + [ + 25.844795227000077, + -32.23420333899986 + ], + [ + 26.028841019000083, + -32.2526245119999 + ], + [ + 26.020462036000026, + -32.350185393999936 + ], + [ + 26.058147430000076, + -32.410476684999935 + ], + [ + 26.150175095000066, + -32.43040466299993 + ], + [ + 26.128231049000192, + -32.3884696959999 + ], + [ + 26.25189399700014, + -32.32168197599992 + ], + [ + 26.29981422400016, + -32.358600615999876 + ], + [ + 26.477266312000097, + -32.27627563499988 + ], + [ + 26.564691544000027, + -32.2830772399999 + ], + [ + 26.66156959500006, + -32.20405578599997 + ], + [ + 26.546274185000186, + -32.04341506999998 + ], + [ + 26.542081833000054, + -32.15865707399996 + ], + [ + 26.433776855000076, + -32.163345336999896 + ], + [ + 26.32278251600019, + -32.06431198099983 + ], + [ + 26.23446273800016, + -32.02948379499992 + ], + [ + 26.18319702100007, + -32.09836959799992 + ], + [ + 26.105222702000106, + -32.11366271999998 + ], + [ + 25.988843918000157, + -32.03752136199995 + ], + [ + 25.90359306300013, + -32.05258941699998 + ] + ] + ], + [ + [ + [ + 26.091320038000163, + -31.82252693199996 + ], + [ + 26.19124412500014, + -31.786371230999976 + ], + [ + 26.267894745000092, + -31.686683654999968 + ], + [ + 26.2525138850001, + -31.626611709999906 + ], + [ + 26.137418747000083, + -31.631513595999934 + ], + [ + 26.002925873000095, + -31.709728240999937 + ], + [ + 26.08742904700017, + -31.80285263099995 + ], + [ + 26.091320038000163, + -31.82252693199996 + ] + ] + ], + [ + [ + [ + 25.687807083000052, + -30.881523131999984 + ], + [ + 25.681348801000013, + -30.964017867999928 + ], + [ + 25.498062134, + -31.07025527999997 + ], + [ + 25.39164352400013, + -31.024667739999984 + ], + [ + 25.461879730000135, + -31.228141784999877 + ], + [ + 25.395500183000138, + -31.282814025999983 + ], + [ + 25.520816803000116, + -31.321296691999976 + ], + [ + 25.62290382400016, + -31.257455825999898 + ], + [ + 25.67922592200017, + -31.25762748699998 + ], + [ + 25.712165833000086, + -31.35119438199996 + ], + [ + 25.774583817000178, + -31.40679550199991 + ], + [ + 25.900615692000088, + -31.438800811999954 + ], + [ + 25.866767883000023, + -31.328817367999875 + ], + [ + 25.816274643000156, + -31.33271598799996 + ], + [ + 25.762809753000113, + -31.22033119199989 + ], + [ + 25.658512115, + -31.21142196699992 + ], + [ + 25.594022751000182, + -31.1556892399999 + ], + [ + 25.58878898600011, + -31.087244033999923 + ], + [ + 25.673809052000138, + -31.02895164499995 + ], + [ + 25.743625641000165, + -31.034896850999928 + ], + [ + 25.687807083000052, + -30.881523131999984 + ] + ] + ], + [ + [ + [ + 26.103754044000084, + -31.485359191999976 + ], + [ + 26.077026367000087, + -31.59713554399997 + ], + [ + 26.175838470000087, + -31.59825897199994 + ], + [ + 26.324167252, + -31.63385581999995 + ], + [ + 26.396680832000186, + -31.565601348999962 + ], + [ + 26.46380615200019, + -31.56039428699995 + ], + [ + 26.413133621000156, + -31.431413650999957 + ], + [ + 26.46780776999998, + -31.39672279399997 + ], + [ + 26.372270583999978, + -31.321763991999887 + ], + [ + 26.374628067000117, + -31.27206993099992 + ], + [ + 26.467353821000188, + -31.212341308999953 + ], + [ + 26.489315033000025, + -31.156768798999963 + ], + [ + 26.431089401000122, + -31.044916152999974 + ], + [ + 26.520492554000157, + -31.03915405299989 + ], + [ + 26.543394089000117, + -30.958370208999952 + ], + [ + 26.65078926100017, + -30.938383101999932 + ], + [ + 26.73213768000005, + -30.89174842799997 + ], + [ + 26.755968094000025, + -30.96590232799997 + ], + [ + 26.870788574000187, + -31.04493331899988 + ], + [ + 26.889387131000092, + -31.144556045999877 + ], + [ + 27.064115524000044, + -31.10210800199991 + ], + [ + 27.16082954400008, + -30.974740981999958 + ], + [ + 27.256778717000145, + -30.965660094999976 + ], + [ + 27.22230720500005, + -30.86040878299997 + ], + [ + 27.166103363000047, + -30.802604674999884 + ], + [ + 27.23708725000006, + -30.724269866999975 + ], + [ + 27.251550674000043, + -30.66047859199989 + ], + [ + 27.37982177700013, + -30.695724486999893 + ], + [ + 27.44931221000013, + -30.640100478999898 + ], + [ + 27.625566483000057, + -30.67908668499996 + ], + [ + 27.76366615300003, + -30.55583381699995 + ], + [ + 27.764167786000087, + -30.44683265699996 + ], + [ + 27.860166550000088, + -30.363332747999948 + ], + [ + 27.896167755000135, + -30.406833648999964 + ], + [ + 28.001167297000052, + -30.434833526999967 + ], + [ + 27.91916656500007, + -30.288333892999958 + ], + [ + 28.023166656000114, + -30.219333648999964 + ], + [ + 27.944667816000162, + -30.155832290999967 + ], + [ + 28.00516700700007, + -30.116333007999913 + ], + [ + 28.07216644300013, + -30.162332534999905 + ], + [ + 28.15566635100015, + -30.06833267199994 + ], + [ + 28.363666534, + -30.069833754999934 + ], + [ + 28.50216674800015, + -30.114332198999932 + ], + [ + 28.660667419000106, + -30.03133392299992 + ], + [ + 28.732166290000066, + -30.03283309899996 + ], + [ + 28.713167191000082, + -29.899833678999983 + ], + [ + 28.607667923000065, + -30.030332564999924 + ], + [ + 28.219167708999976, + -29.956832885999972 + ], + [ + 28.101167679000184, + -30.04733276399992 + ], + [ + 28.001167297000052, + -29.98283386199995 + ], + [ + 27.974666595000087, + -30.036832808999975 + ], + [ + 27.88716697700005, + -30.015333175999842 + ], + [ + 27.800167084000066, + -30.127332686999978 + ], + [ + 27.643167496000046, + -30.187332152999886 + ], + [ + 27.643167496000046, + -30.2828330989999 + ], + [ + 27.551944733000028, + -30.2626457209999 + ], + [ + 27.565898895000146, + -30.16341972399988 + ], + [ + 27.538272858000084, + -29.947029113999974 + ], + [ + 27.609607697000172, + -29.919645308999975 + ], + [ + 27.70266723600008, + -29.837755202999915 + ], + [ + 27.635723114000086, + -29.629495620999933 + ], + [ + 27.65777206400014, + -29.524507522999897 + ], + [ + 27.791177750000088, + -29.491361617999928 + ], + [ + 27.71136093100006, + -29.29161834699994 + ], + [ + 27.82529640200005, + -29.220464705999973 + ], + [ + 27.927272797, + -29.233644484999957 + ], + [ + 28.003961563000132, + -29.14762687699988 + ], + [ + 28.028575897000167, + -29.074420928999928 + ], + [ + 28.152471542000058, + -29.06012153599994 + ], + [ + 28.332141876000037, + -28.831533431999958 + ], + [ + 28.47100067100007, + -28.729375838999943 + ], + [ + 28.362791061000166, + -28.63544082599998 + ], + [ + 28.259712219, + -28.620504378999954 + ], + [ + 28.227508544999978, + -28.573379516999978 + ], + [ + 28.332418442, + -28.497173308999947 + ], + [ + 28.426773071000127, + -28.50353431699989 + ], + [ + 28.488870621, + -28.457868575999896 + ], + [ + 28.620229721000044, + -28.457281112999965 + ], + [ + 28.655038834000095, + -28.534154891999947 + ], + [ + 28.796966553000175, + -28.57924461399989 + ], + [ + 28.854862213000047, + -28.534400939999955 + ], + [ + 28.976381302000107, + -28.514173507999942 + ], + [ + 29.012981415000183, + -28.540325164999956 + ], + [ + 29.209390640000038, + -28.50112152099996 + ], + [ + 29.376306534000094, + -28.37836646999989 + ], + [ + 29.58500099200012, + -28.2626075739999 + ], + [ + 29.662237167000114, + -28.14649200399998 + ], + [ + 29.6245994570001, + -28.106895446999886 + ], + [ + 29.601320267000062, + -27.99434661899994 + ], + [ + 29.66749763500019, + -27.944410323999875 + ], + [ + 29.70741081200009, + -27.815586089999954 + ], + [ + 29.667552948000036, + -27.65386962899987 + ], + [ + 29.788496017000114, + -27.596290587999874 + ], + [ + 29.781713486000115, + -27.470619201999966 + ], + [ + 29.71406745900009, + -27.459861754999906 + ], + [ + 29.657958984000118, + -27.361181258999977 + ], + [ + 29.694755554000153, + -27.332489013999975 + ], + [ + 29.8786468510001, + -27.427553176999936 + ], + [ + 29.918142319000026, + -27.50891303999998 + ], + [ + 30.03810882600004, + -27.51601982099993 + ], + [ + 30.214960098000063, + -27.576227187999905 + ], + [ + 30.418178558000136, + -27.70713043199993 + ], + [ + 30.480888367000148, + -27.68801307699988 + ], + [ + 30.56865501400017, + -27.74609184299993 + ], + [ + 30.80662918100012, + -27.753929137999933 + ], + [ + 30.870002747, + -27.717357634999928 + ], + [ + 30.935417175000055, + -27.62059402499989 + ], + [ + 30.891380309999988, + -27.539924621999944 + ], + [ + 30.921844482000154, + -27.47239875799994 + ], + [ + 31.049617767000086, + -27.492805480999948 + ], + [ + 31.07306480400007, + -27.388925551999876 + ], + [ + 31.048223495000173, + -27.236743926999964 + ], + [ + 31.236032486000113, + -27.231908797999893 + ], + [ + 31.35406303400009, + -27.2740955349999 + ], + [ + 31.38735580400015, + -27.150743483999975 + ], + [ + 31.290624619000027, + -27.092346190999933 + ], + [ + 31.3932685850001, + -26.95043373099992 + ], + [ + 31.3359355930001, + -26.91661262499997 + ], + [ + 31.264087677000134, + -26.978055953999956 + ], + [ + 31.110385895000093, + -26.95193481399997 + ], + [ + 31.244743347000053, + -26.796001433999947 + ], + [ + 31.195995331000063, + -26.7020988459999 + ], + [ + 31.29613304100019, + -26.647783278999896 + ], + [ + 31.15679359400019, + -26.61492156999998 + ], + [ + 31.032930374000046, + -26.621683120999876 + ], + [ + 30.982387543000073, + -26.502813338999886 + ], + [ + 31.073310852000134, + -26.48943328899992 + ], + [ + 31.048530578999987, + -26.371435164999923 + ], + [ + 31.16457176199998, + -26.357727050999927 + ], + [ + 31.256498337000153, + -26.42498397799983 + ], + [ + 31.283964157000185, + -26.321296691999976 + ], + [ + 31.396343231000117, + -26.170614242999818 + ], + [ + 31.229047775000083, + -26.083570479999935 + ], + [ + 31.154479980000076, + -26.110475539999925 + ], + [ + 31.07361412, + -26.043851851999932 + ], + [ + 30.9842052460001, + -26.029331206999927 + ], + [ + 30.9042682650001, + -26.103109359999905 + ], + [ + 30.719493866000107, + -26.059726714999897 + ], + [ + 30.57606315600009, + -25.971210479999968 + ], + [ + 30.61700630200005, + -25.942026137999846 + ], + [ + 30.59480094900016, + -25.839908599999944 + ], + [ + 30.684757233000028, + -25.826110839999956 + ], + [ + 30.735824585000103, + -25.92963600199988 + ], + [ + 31.090454102000024, + -25.99851417499991 + ], + [ + 31.16019058200004, + -25.99667358399995 + ], + [ + 31.256511688000103, + -25.900272368999936 + ], + [ + 31.212173462000067, + -25.848583220999956 + ], + [ + 31.337179184000036, + -25.760196685999972 + ], + [ + 31.444871902000045, + -25.711408614999982 + ], + [ + 31.42972755400018, + -25.64197349499983 + ], + [ + 31.220478058000083, + -25.729101180999976 + ], + [ + 31.12825965900015, + -25.717645644999948 + ], + [ + 31.018678665000095, + -25.82166671799996 + ], + [ + 30.898250580000024, + -25.825372695999818 + ], + [ + 30.746143341, + -25.73682594299993 + ], + [ + 30.743116379000185, + -25.636444091999977 + ], + [ + 30.843206406000036, + -25.50542640699996 + ], + [ + 30.67759323100006, + -25.458215713999834 + ], + [ + 30.55377960200019, + -25.294631957999968 + ], + [ + 30.62611579900016, + -25.224725722999892 + ], + [ + 30.704750061000084, + -25.23623657199994 + ], + [ + 30.693386078000174, + -25.374347686999897 + ], + [ + 30.797687531000122, + -25.38434219399994 + ], + [ + 30.85251426700006, + -25.294033050999815 + ], + [ + 30.950487137000152, + -25.239395141999978 + ], + [ + 30.954076767000117, + -25.124200820999874 + ], + [ + 30.852457047000087, + -25.051334380999947 + ], + [ + 30.946399689000145, + -24.789855956999872 + ], + [ + 30.925546646000043, + -24.63813018799982 + ], + [ + 30.78091049200009, + -24.54514884899993 + ], + [ + 30.68212890600006, + -24.586772918999884 + ], + [ + 30.616130829000156, + -24.743705749999947 + ], + [ + 30.517873764000115, + -24.762348174999943 + ], + [ + 30.41441535900009, + -24.862863540999967 + ], + [ + 30.427572250000082, + -24.909805297999924 + ], + [ + 30.301471710000044, + -24.948553084999958 + ], + [ + 30.238559723000037, + -24.872535705999894 + ], + [ + 30.17308235200005, + -24.925508498999932 + ], + [ + 30.144615173000034, + -25.13592719999997 + ], + [ + 30.09171867400005, + -25.08161926299988 + ], + [ + 29.962270737000097, + -25.05727577199991 + ], + [ + 29.920339583999976, + -25.145631789999925 + ], + [ + 29.809833527000023, + -25.199447631999874 + ], + [ + 29.790746689000173, + -25.031169890999934 + ], + [ + 29.808835983000108, + -24.91086387599995 + ], + [ + 29.748132706000035, + -24.90904998799988 + ], + [ + 29.69556808500016, + -25.004886626999962 + ], + [ + 29.535768509000036, + -25.146350860999917 + ], + [ + 29.697324753000032, + -25.23682594299993 + ], + [ + 29.63204193100006, + -25.358833312999934 + ], + [ + 29.661767960000134, + -25.43537712099993 + ], + [ + 29.496629714999983, + -25.461389541999893 + ], + [ + 29.264802933, + -25.546810149999942 + ], + [ + 29.172304153000084, + -25.652067183999918 + ], + [ + 29.0530662540001, + -25.628929137999933 + ], + [ + 28.961977005000165, + -25.650638579999907 + ], + [ + 28.843215941999972, + -25.59602928199996 + ], + [ + 28.67403602600001, + -25.680772780999973 + ], + [ + 28.535039902000108, + -25.62508583099998 + ], + [ + 28.504005432000042, + -25.733133315999908 + ], + [ + 28.503149033000113, + -25.88926887499997 + ], + [ + 28.435140610000133, + -25.928339004999884 + ], + [ + 28.171255112000097, + -25.77782058699995 + ], + [ + 28.049261093000098, + -25.784488677999946 + ], + [ + 27.853204727000048, + -25.820434569999975 + ], + [ + 27.702877045000093, + -25.939020156999902 + ], + [ + 27.63788414000004, + -26.04033660899995 + ], + [ + 27.580810547000112, + -26.024963378999928 + ], + [ + 27.45195198100015, + -26.068971633999922 + ], + [ + 27.24474525500011, + -26.09569358799996 + ], + [ + 27.332496643000013, + -25.97008323699987 + ], + [ + 27.26613616900005, + -25.928752898999846 + ], + [ + 27.14076995800019, + -25.92259788499996 + ], + [ + 26.95345306400003, + -25.882450103999872 + ], + [ + 26.85557937600015, + -25.83445358299997 + ], + [ + 26.753770828000143, + -25.836481093999907 + ], + [ + 26.679033279000123, + -25.74059867899996 + ], + [ + 26.509386063000193, + -25.74373054499995 + ], + [ + 26.503473282000073, + -25.80820846599994 + ], + [ + 26.442131042000028, + -25.85910987899996 + ], + [ + 26.33793830899998, + -25.765804290999938 + ], + [ + 26.11656379700014, + -25.785844802999975 + ], + [ + 26.048542022999982, + -25.745178222999982 + ], + [ + 25.990283966000106, + -25.594535827999948 + ], + [ + 25.898609161000024, + -25.49729156499984 + ], + [ + 25.735279083000023, + -25.360385894999865 + ], + [ + 25.674379349000162, + -25.615942000999894 + ], + [ + 25.84715080300009, + -25.606346129999963 + ], + [ + 25.842975616000047, + -25.72693252599987 + ], + [ + 25.74960136400017, + -25.706899642999872 + ], + [ + 25.703815460000044, + -25.759037017999958 + ], + [ + 25.574045181000088, + -25.82956695599995 + ], + [ + 25.54614067099999, + -25.894371032999913 + ], + [ + 25.40275764500018, + -25.94131660499994 + ], + [ + 25.4599437710001, + -25.98815154999994 + ], + [ + 25.38534545900012, + -26.041887282999937 + ], + [ + 25.355491638000103, + -26.115306853999982 + ], + [ + 25.286283493000155, + -26.145486831999904 + ], + [ + 25.321422577000078, + -26.45009231599994 + ], + [ + 25.213333130000024, + -26.450893401999963 + ], + [ + 25.08985900900018, + -26.51296615599989 + ], + [ + 25.120014191000166, + -26.62388229399994 + ], + [ + 25.17644119300013, + -26.62673568699995 + ], + [ + 25.23854255700013, + -26.69215393099995 + ], + [ + 25.110660553, + -26.844373702999974 + ], + [ + 25.185146332000045, + -26.86424827599984 + ], + [ + 25.239675522000027, + -26.948183059999963 + ], + [ + 25.236118317000148, + -27.05434417699996 + ], + [ + 25.341508865000037, + -27.142889022999952 + ], + [ + 25.415111542000147, + -27.073205947999952 + ], + [ + 25.461912155000107, + -27.20191001899991 + ], + [ + 25.46822547900001, + -27.33458900499994 + ], + [ + 25.55356407200003, + -27.36906623799996 + ], + [ + 25.564287186000172, + -27.260068892999925 + ], + [ + 25.67787933300019, + -27.21595001199995 + ], + [ + 25.770790100000056, + -27.259378432999938 + ], + [ + 25.793066025000087, + -27.36040115399993 + ], + [ + 25.96347236600019, + -27.3614978789999 + ], + [ + 25.911684036000167, + -27.452543258999924 + ], + [ + 25.817411423000067, + -27.44583702099993 + ], + [ + 25.74331092800014, + -27.53348731999995 + ], + [ + 26.025385651000192, + -27.669664495999882 + ], + [ + 26.134880066000107, + -27.588191985999913 + ], + [ + 26.22065925600009, + -27.610443114999953 + ], + [ + 26.27510643000005, + -27.73591995199996 + ], + [ + 26.229742050000027, + -27.771078109999905 + ], + [ + 26.23778152500006, + -27.92875099199989 + ], + [ + 26.07097672500015, + -27.915480979999984 + ], + [ + 26.003068924000104, + -28.000473021999937 + ], + [ + 25.885126114000116, + -28.00712585399998 + ], + [ + 25.705694199000163, + -27.957798003999926 + ], + [ + 25.604120255000055, + -27.996231078999983 + ], + [ + 25.49938201900011, + -27.89608192399993 + ], + [ + 25.44138526900008, + -27.94915199299993 + ], + [ + 25.492380142000115, + -28.004114150999953 + ], + [ + 25.588180542000032, + -28.03929901099997 + ], + [ + 25.529823303000114, + -28.27729415899995 + ], + [ + 25.437244415000123, + -28.263641356999983 + ], + [ + 25.293634415000156, + -28.349292754999965 + ], + [ + 25.227506638000023, + -28.451585769999838 + ], + [ + 25.317651749000163, + -28.502687453999897 + ], + [ + 25.297573090000185, + -28.68105697599998 + ], + [ + 25.36973762500014, + -28.762773513999946 + ], + [ + 25.313274384000067, + -28.82037544299982 + ], + [ + 25.461093903000062, + -28.91628456099994 + ], + [ + 25.521856308000054, + -28.924331664999897 + ], + [ + 25.50257682800003, + -29.013711928999896 + ], + [ + 25.52524757400016, + -29.18123245199996 + ], + [ + 25.487461090000068, + -29.23287582399996 + ], + [ + 25.560516356999983, + -29.498643874999914 + ], + [ + 25.41880226100011, + -29.50591278099995 + ], + [ + 25.212678909000147, + -29.458559035999826 + ], + [ + 25.1458911900001, + -29.50679206799998 + ], + [ + 25.192947388000107, + -29.58983230599989 + ], + [ + 25.265806198000064, + -29.611673354999937 + ], + [ + 25.22484016400017, + -29.757553100999928 + ], + [ + 25.121675491000133, + -29.72002220199994 + ], + [ + 25.070579529000156, + -29.761693953999952 + ], + [ + 24.943798065000124, + -29.775249480999946 + ], + [ + 24.753921509000122, + -29.752853393999885 + ], + [ + 24.74610328700004, + -29.894411086999924 + ], + [ + 24.59302902200011, + -29.89735031099997 + ], + [ + 24.45064353900017, + -29.781549453999958 + ], + [ + 24.415569305000133, + -29.835914611999954 + ], + [ + 24.468561172000022, + -29.995180129999937 + ], + [ + 24.546430588000135, + -29.96342849699994 + ], + [ + 24.606683731000032, + -29.99358749399994 + ], + [ + 24.61810493500019, + -30.092117309999935 + ], + [ + 24.77401733400012, + -30.194585799999913 + ], + [ + 24.822824478000086, + -30.329048156999875 + ], + [ + 24.78142929100011, + -30.415233611999895 + ], + [ + 24.68536949200012, + -30.413051604999907 + ], + [ + 24.622146606000058, + -30.376035689999924 + ], + [ + 24.523841858000026, + -30.383644103999984 + ], + [ + 24.500061035000158, + -30.461999892999927 + ], + [ + 24.372367859000178, + -30.50040435799997 + ], + [ + 24.324001312000178, + -30.375751494999975 + ], + [ + 24.25162506100014, + -30.31321906999989 + ], + [ + 24.230070114, + -30.489250182999967 + ], + [ + 24.19510841400006, + -30.583570479999935 + ], + [ + 24.337579727000048, + -30.641822814999955 + ], + [ + 24.348680496000043, + -30.564474105999977 + ], + [ + 24.52031517000006, + -30.438447951999876 + ], + [ + 24.576560974000188, + -30.46014785799997 + ], + [ + 24.701265335000016, + -30.415109633999975 + ], + [ + 24.662231445000145, + -30.59566116299993 + ], + [ + 24.601474762000123, + -30.644702910999968 + ], + [ + 24.805030823000152, + -30.66547203099998 + ], + [ + 24.93141365100007, + -30.584436416999893 + ], + [ + 24.827348709000034, + -30.507591247999983 + ], + [ + 24.837583542000175, + -30.385429381999984 + ], + [ + 25.00975608800013, + -30.448160171999973 + ], + [ + 25.09562492400005, + -30.433584212999904 + ], + [ + 25.168582916, + -30.498405456999876 + ], + [ + 25.191373825000028, + -30.608020781999926 + ], + [ + 25.306772232000128, + -30.667648314999894 + ], + [ + 25.60327148400006, + -30.595876693999912 + ], + [ + 25.682365417000142, + -30.678874968999935 + ], + [ + 25.770832062000125, + -30.68219375599989 + ], + [ + 25.95167160000011, + -30.548225402999947 + ], + [ + 26.04552459700011, + -30.60231018099995 + ], + [ + 26.193569183000136, + -30.55057144199992 + ], + [ + 26.270053864000147, + -30.662437438999973 + ], + [ + 26.39990043600011, + -30.556776046999914 + ], + [ + 26.747512817000086, + -30.658226012999933 + ], + [ + 26.791406631000086, + -30.717168807999883 + ], + [ + 26.70408248900003, + -30.758699416999946 + ], + [ + 26.608350754000185, + -30.72285461399997 + ], + [ + 26.422283173000153, + -30.750101088999884 + ], + [ + 26.42241287200011, + -30.941190719999895 + ], + [ + 26.335884094000107, + -30.986297606999926 + ], + [ + 26.332511902000192, + -31.068984984999872 + ], + [ + 26.273824692000062, + -31.10792922999991 + ], + [ + 26.33058548000014, + -31.167810439999982 + ], + [ + 26.32900619500009, + -31.237819671999944 + ], + [ + 26.19085693400018, + -31.32415008499987 + ], + [ + 26.118614197000113, + -31.32607078599989 + ], + [ + 26.082683563000103, + -31.395952224999974 + ], + [ + 26.103754044000084, + -31.485359191999976 + ] + ] + ], + [ + [ + [ + 30.138328552000075, + -24.05950164799998 + ], + [ + 30.165283203000172, + -24.188196181999956 + ], + [ + 30.29779243500019, + -24.210052489999896 + ], + [ + 30.33153915400004, + -24.314243316999864 + ], + [ + 30.415229797000165, + -24.388675689999957 + ], + [ + 30.493934631000116, + -24.355293273999962 + ], + [ + 30.396251678000112, + -24.28874015799994 + ], + [ + 30.28307533300017, + -24.1269168849999 + ], + [ + 30.24252700800014, + -24.040296554999884 + ], + [ + 30.138328552000075, + -24.05950164799998 + ] + ] + ], + [ + [ + [ + 29.989543915000183, + -23.765899657999967 + ], + [ + 29.880426407000073, + -23.83667564399991 + ], + [ + 29.907648087000155, + -23.923860549999915 + ], + [ + 29.881511688000103, + -24.035091399999885 + ], + [ + 29.810388565000153, + -24.05005836499987 + ], + [ + 29.77394485500014, + -24.11277008099995 + ], + [ + 29.88902092, + -24.1398315429999 + ], + [ + 29.976041794000082, + -24.09532546999992 + ], + [ + 30.09663963300011, + -23.93111991899997 + ], + [ + 30.036289215000068, + -23.88464927699988 + ], + [ + 29.989543915000183, + -23.765899657999967 + ] + ] + ], + [ + [ + [ + 32.852985972000056, + -19.530539510999972 + ], + [ + 32.79181981400012, + -19.449798615999953 + ], + [ + 32.74306538900004, + -19.03447634999992 + ], + [ + 32.63914333700012, + -19.081056648999834 + ], + [ + 32.52479195700005, + -19.348950412999898 + ], + [ + 32.555144014000064, + -19.69197169399996 + ], + [ + 32.551171313000054, + -19.782746399999894 + ], + [ + 32.5054339190001, + -19.94420834699997 + ], + [ + 32.61334446400008, + -20.07837554999992 + ], + [ + 32.75406730300011, + -20.108516669999972 + ], + [ + 32.87290475200018, + -20.026993705999928 + ], + [ + 32.94698811200004, + -19.91453763399994 + ], + [ + 32.93902691700009, + -19.82456483899989 + ], + [ + 32.995707006000146, + -19.718934932999957 + ], + [ + 32.862435943000094, + -19.569501653999964 + ], + [ + 32.852985972000056, + -19.530539510999972 + ] + ] + ], + [ + [ + [ + 32.49936432400017, + -18.179714953999962 + ], + [ + 32.48793589700006, + -18.321901268999966 + ], + [ + 32.4536348260001, + -18.47693800499991 + ], + [ + 32.46259511900013, + -18.646037950999983 + ], + [ + 32.44569337000013, + -18.726367968999966 + ], + [ + 32.468084232000024, + -18.979416454999978 + ], + [ + 32.54317063800005, + -19.01396808599992 + ], + [ + 32.636647568000114, + -18.917179045999887 + ], + [ + 32.66498563900012, + -18.83042381699994 + ], + [ + 32.719679377000034, + -18.770181264999962 + ], + [ + 32.75348682200013, + -18.677401780999958 + ], + [ + 32.75248377700018, + -18.530394076999926 + ], + [ + 32.70523786700011, + -18.403463917999943 + ], + [ + 32.75346313400013, + -18.270118468999954 + ], + [ + 32.751464940000176, + -18.111864166999965 + ], + [ + 32.72608862900012, + -17.825075882999954 + ], + [ + 32.65000707400003, + -17.779277651999905 + ], + [ + 32.58934638700015, + -17.839921160999893 + ], + [ + 32.59432213399998, + -17.896154157999888 + ], + [ + 32.509801549000144, + -18.094162591999975 + ], + [ + 32.49936432400017, + -18.179714953999962 + ] + ] + ], + [ + [ + [ + 32.82405162800018, + -17.91465764399993 + ], + [ + 32.872296635000055, + -18.120714953999823 + ], + [ + 32.9115852970001, + -18.225552869999945 + ], + [ + 32.98318868000018, + -18.220741402999977 + ], + [ + 33.01699217600003, + -18.060081366999952 + ], + [ + 32.99460526300004, + -17.87491343299996 + ], + [ + 32.927472156000135, + -17.794573493999906 + ], + [ + 32.84890667600018, + -17.788539316999902 + ], + [ + 32.81062105900014, + -17.830709103999936 + ], + [ + 32.82405162800018, + -17.91465764399993 + ] + ] + ], + [ + [ + [ + 14.085960000000114, + -13.75059 + ], + [ + 14.088640000000169, + -13.806039999999825 + ], + [ + 14.24214, + -13.90186 + ], + [ + 14.27493, + -13.96291 + ], + [ + 14.258650000000102, + -14.09732 + ], + [ + 14.36177, + -14.04147 + ], + [ + 14.42550000000017, + -13.91081 + ], + [ + 14.58125, + -13.80158 + ], + [ + 14.64047, + -13.6818 + ], + [ + 14.76562, + -13.54231 + ], + [ + 14.84966, + -13.40049 + ], + [ + 14.89444, + -13.19001999999989 + ], + [ + 14.895240000000115, + -13.07132 + ], + [ + 14.848240000000146, + -13.01053 + ], + [ + 14.793550000000153, + -13.11944 + ], + [ + 14.79666, + -13.276609999999891 + ], + [ + 14.721300000000156, + -13.37819 + ], + [ + 14.6645, + -13.38078 + ], + [ + 14.61858, + -13.454069999999888 + ], + [ + 14.5161, + -13.542279999999835 + ], + [ + 14.46024, + -13.51248 + ], + [ + 14.28838, + -13.68521 + ], + [ + 14.085960000000114, + -13.75059 + ] + ] + ], + [ + [ + [ + 16.05688, + -12.56128 + ], + [ + 16.011800000000108, + -12.597559999999874 + ], + [ + 15.988470000000177, + -12.6951 + ], + [ + 16.020570000000134, + -12.80087 + ], + [ + 16.105910000000165, + -12.80392 + ], + [ + 16.18968000000018, + -12.72839 + ], + [ + 16.11139, + -12.52328 + ], + [ + 16.05688, + -12.56128 + ] + ] + ], + [ + [ + [ + 14.823570000000132, + -12.16473 + ], + [ + 14.703240000000108, + -12.2286 + ], + [ + 14.71685, + -12.27768 + ], + [ + 14.94775, + -12.295 + ], + [ + 14.933650000000114, + -12.380039999999894 + ], + [ + 15.048860000000161, + -12.456529999999816 + ], + [ + 14.89149, + -12.484109999999873 + ], + [ + 14.68013, + -12.41709 + ], + [ + 14.57935, + -12.511429999999848 + ], + [ + 14.60113, + -12.574239999999861 + ], + [ + 14.51508, + -12.69451 + ], + [ + 14.56596, + -12.712059999999894 + ], + [ + 14.69756000000018, + -12.65877 + ], + [ + 14.76154, + -12.69921 + ], + [ + 14.73579000000018, + -12.75518 + ], + [ + 14.787440000000174, + -12.81125999999989 + ], + [ + 14.863930000000153, + -12.766689999999869 + ], + [ + 14.99527, + -12.62091 + ], + [ + 15.13715, + -12.76782 + ], + [ + 15.230840000000114, + -12.79384 + ], + [ + 15.36616, + -12.928539999999828 + ], + [ + 15.33652, + -13.02619 + ], + [ + 15.289740000000108, + -13.05635 + ], + [ + 15.18976, + -13.03198 + ], + [ + 15.14876, + -12.87551 + ], + [ + 15.03073, + -12.89618 + ], + [ + 14.99354000000011, + -12.85216 + ], + [ + 14.827580000000125, + -12.924589999999853 + ], + [ + 14.92407, + -13.01221 + ], + [ + 14.954810000000123, + -13.128799999999899 + ], + [ + 14.92501, + -13.21874999999983 + ], + [ + 14.98382, + -13.31786 + ], + [ + 15.04099, + -13.33376 + ], + [ + 15.148600000000101, + -13.2655 + ], + [ + 15.299910000000125, + -13.33053 + ], + [ + 15.3628700000001, + -13.32012 + ], + [ + 15.495360000000119, + -13.15275 + ], + [ + 15.67195, + -13.1387 + ], + [ + 15.77086, + -13.10914 + ], + [ + 15.79034, + -13.05637 + ], + [ + 15.69834, + -12.956329999999866 + ], + [ + 15.659890000000132, + -12.849129999999889 + ], + [ + 15.6953, + -12.72362 + ], + [ + 15.59729, + -12.55895 + ], + [ + 15.64576, + -12.45478 + ], + [ + 15.549760000000106, + -12.39181 + ], + [ + 15.61991, + -12.34582 + ], + [ + 15.515620000000126, + -12.26296 + ], + [ + 15.417030000000125, + -12.149169999999856 + ], + [ + 15.28599, + -12.2302 + ], + [ + 15.2032, + -12.19627 + ], + [ + 15.210320000000138, + -12.077449999999885 + ], + [ + 15.144880000000114, + -11.96304 + ], + [ + 15.22948, + -11.92912 + ], + [ + 15.21647, + -11.750549999999862 + ], + [ + 15.12417, + -11.71525 + ], + [ + 14.98551, + -11.81029 + ], + [ + 14.994330000000105, + -11.697609999999884 + ], + [ + 14.936, + -11.623149999999896 + ], + [ + 14.88298, + -11.65649999999988 + ], + [ + 14.78515, + -11.58123 + ], + [ + 14.713910000000112, + -11.65191 + ], + [ + 14.83745000000016, + -11.74982 + ], + [ + 14.822920000000181, + -11.81329 + ], + [ + 14.73721, + -11.79175 + ], + [ + 14.59414, + -11.82367 + ], + [ + 14.77855, + -11.965169999999887 + ], + [ + 14.81985, + -12.0569 + ], + [ + 14.823570000000132, + -12.16473 + ] + ] + ], + [ + [ + [ + 14.86161, + -11.21604 + ], + [ + 14.782620000000122, + -11.29457 + ], + [ + 14.659600000000125, + -11.222849999999823 + ], + [ + 14.637650000000122, + -11.38972 + ], + [ + 14.69544, + -11.516599999999869 + ], + [ + 14.75186, + -11.41537 + ], + [ + 14.866800000000126, + -11.31922 + ], + [ + 14.86161, + -11.21604 + ] + ] + ], + [ + [ + [ + 15.501870000000167, + -11.09171 + ], + [ + 15.537620000000175, + -11.063309999999888 + ], + [ + 15.57273, + -10.92239 + ], + [ + 15.4736, + -10.861019999999883 + ], + [ + 15.380020000000172, + -10.68085 + ], + [ + 15.30138, + -10.61756 + ], + [ + 15.26119, + -10.66146 + ], + [ + 15.32921, + -10.746529999999893 + ], + [ + 15.22038, + -10.83330999999987 + ], + [ + 15.219940000000122, + -10.89036 + ], + [ + 15.31721000000016, + -10.93788 + ], + [ + 15.180920000000128, + -11.072969999999884 + ], + [ + 15.310410000000104, + -11.15228 + ], + [ + 15.419210000000191, + -11.144109999999898 + ], + [ + 15.501870000000167, + -11.09171 + ] + ] + ], + [ + [ + [ + 33.490833334, + -10.141666666999981 + ], + [ + 33.44333333300011, + -10.048333332999903 + ], + [ + 33.38750000000016, + -10.125833332999889 + ], + [ + 33.490833334, + -10.141666666999981 + ] + ] + ], + [ + [ + [ + 33.56000000000017, + -9.4925 + ], + [ + 33.55750000000012, + -9.395833333999917 + ], + [ + 33.5083333340001, + -9.315833333999933 + ], + [ + 33.535, + -9.274166666999974 + ], + [ + 33.5150000000001, + -9.160833332999914 + ], + [ + 33.42833333300018, + -9.068333332999885 + ], + [ + 33.60333333300014, + -8.9925 + ], + [ + 33.56500000000017, + -8.875 + ], + [ + 33.44000000000011, + -8.859166666999954 + ], + [ + 33.5150000000001, + -8.9525 + ], + [ + 33.42666666700012, + -8.986666666999952 + ], + [ + 33.275833333000094, + -8.953333333999979 + ], + [ + 33.21916666700014, + -9.0425 + ], + [ + 33.123333333000176, + -9.141666665999935 + ], + [ + 33.156666667000025, + -9.202499999999816 + ], + [ + 33.25916666600017, + -9.230833332999964 + ], + [ + 33.26083333300011, + -9.309166665999953 + ], + [ + 33.31916666600017, + -9.333333332999871 + ], + [ + 33.34833333300003, + -9.486666666999895 + ], + [ + 33.455, + -9.564166665999892 + ], + [ + 33.56000000000017, + -9.4925 + ] + ] + ], + [ + [ + [ + 33.411666667000134, + -8.846666665999976 + ], + [ + 33.5025, + -8.828333332999932 + ], + [ + 33.50416666700005, + -8.76083333299988 + ], + [ + 33.265833334000035, + -8.817499999999825 + ], + [ + 33.411666667000134, + -8.846666665999976 + ] + ] + ], + [ + [ + [ + 31.695000000000107, + -8.36416666599996 + ], + [ + 31.693333333000112, + -8.244166665999956 + ], + [ + 31.628333333000114, + -8.131666666999877 + ], + [ + 31.535833333000028, + -8.085833332999869 + ], + [ + 31.498333333000062, + -8.124166666999884 + ], + [ + 31.49666666700017, + -8.28 + ], + [ + 31.563333334000163, + -8.316666666999879 + ], + [ + 31.631666666000115, + -8.26166666599994 + ], + [ + 31.695000000000107, + -8.36416666599996 + ] + ] + ], + [ + [ + [ + 31.955, + -8.28 + ], + [ + 31.91750000000019, + -8.137499999999875 + ], + [ + 31.819166667000047, + -7.9883333329999 + ], + [ + 31.689166667000165, + -7.851666665999915 + ], + [ + 31.66500000000019, + -7.928333332999955 + ], + [ + 31.716666667000027, + -8.0775 + ], + [ + 31.912500000000193, + -8.2825 + ], + [ + 31.955, + -8.28 + ] + ] + ], + [ + [ + [ + 31.469166667000138, + -7.856666665999967 + ], + [ + 31.537500000000193, + -7.8475 + ], + [ + 31.551666667000063, + -7.77916666699997 + ], + [ + 31.45416666699998, + -7.795833332999905 + ], + [ + 31.469166667000138, + -7.856666665999967 + ] + ] + ], + [ + [ + [ + 31.124166667000054, + -7.984166665999965 + ], + [ + 31.120833334000054, + -7.880833332999885 + ], + [ + 31.17416666600002, + -7.786666666999963 + ], + [ + 31.2675, + -7.773333332999869 + ], + [ + 31.30416666600007, + -7.720833332999916 + ], + [ + 31.159166667000136, + -7.496666665999953 + ], + [ + 31.16416666700013, + -7.626666666999881 + ], + [ + 31.070000000000107, + -7.765833332999819 + ], + [ + 30.98083333400018, + -7.805 + ], + [ + 30.995833333000064, + -7.88583333299988 + ], + [ + 31.124166667000054, + -7.984166665999965 + ] + ] + ], + [ + [ + [ + 29.9825, + 0.393333333000044 + ], + [ + 29.9273621910001, + 0.481227254000146 + ], + [ + 29.86341455400003, + 0.467108225000118 + ], + [ + 29.84277675800007, + 0.369832138000049 + ], + [ + 29.84472829900011, + 0.243956534000176 + ], + [ + 29.923095019000186, + 0.224540132000016 + ], + [ + 29.981666667000127, + 0.314166667000109 + ], + [ + 29.9825, + 0.393333333000044 + ] + ] + ], + [ + [ + [ + -72.90397660699983, + 7.427850865000039 + ], + [ + -72.95443750899994, + 7.349475544000086 + ], + [ + -72.91515353999995, + 7.317284845000188 + ], + [ + -72.92609359999989, + 7.193177860000048 + ], + [ + -72.97418258999994, + 7.100880533000122 + ], + [ + -72.82224248999995, + 7.015773538000133 + ], + [ + -72.78159361299993, + 6.920297626000036 + ], + [ + -72.6640095919999, + 6.883135285000151 + ], + [ + -72.63034853999994, + 6.697659860000101 + ], + [ + -72.55205552899997, + 6.717219367000098 + ], + [ + -72.42684162999996, + 6.366647943000146 + ], + [ + -72.47807349899989, + 6.395183797000072 + ], + [ + -72.51348150799998, + 6.298005855000042 + ], + [ + -72.56659662199996, + 6.299513760000025 + ], + [ + -72.63007361299992, + 6.235983460000114 + ], + [ + -72.57245657899989, + 6.132429907000017 + ], + [ + -72.64160962699998, + 6.051084040000148 + ], + [ + -72.66848753999994, + 5.949888317000159 + ], + [ + -72.72665358999996, + 5.981567049000034 + ], + [ + -72.76406051499998, + 5.884771323 + ], + [ + -72.81697848699997, + 5.840667425 + ], + [ + -72.77343751799992, + 5.759055348000118 + ], + [ + -72.87977553799993, + 5.757122481000181 + ], + [ + -72.99013553099996, + 5.541512271000101 + ], + [ + -72.95697756099986, + 5.485871521000149 + ], + [ + -72.78972657299988, + 5.43693813800013 + ], + [ + -72.82286057199997, + 5.563768906000178 + ], + [ + -72.76082660899993, + 5.580357363000189 + ], + [ + -72.69365655199994, + 5.716366650000168 + ], + [ + -72.66818260699995, + 5.845172195000089 + ], + [ + -72.61939255399983, + 5.850381547000154 + ], + [ + -72.57504256299995, + 5.934153641000137 + ], + [ + -72.43745462799995, + 6.070232665000105 + ], + [ + -72.41804448799996, + 6.187302204000105 + ], + [ + -72.36874364199991, + 6.283604907000097 + ], + [ + -72.20922060199996, + 6.294585200000085 + ], + [ + -72.23610656199997, + 6.406858111000076 + ], + [ + -72.15698960999998, + 6.44358727600013 + ], + [ + -72.0971376249999, + 6.410442884000076 + ], + [ + -72.0799485199999, + 6.516603878000183 + ], + [ + -72.14801057999989, + 6.601424715000178 + ], + [ + -72.22680650499984, + 6.552267368000116 + ], + [ + -72.34284255499995, + 6.763422932000026 + ], + [ + -72.4461285569999, + 6.667634877000125 + ], + [ + -72.48090356499995, + 6.709705996000082 + ], + [ + -72.44190256899998, + 6.781443688000138 + ], + [ + -72.5082396329999, + 6.919354829000099 + ], + [ + -72.62442756299987, + 6.907449677000045 + ], + [ + -72.62771561599988, + 7.03839595900007 + ], + [ + -72.57317356699997, + 7.120583034999981 + ], + [ + -72.62113950999986, + 7.149678129 + ], + [ + -72.66001159199999, + 7.056171797 + ], + [ + -72.76287061999994, + 7.078363221000075 + ], + [ + -72.81185949099995, + 7.323046565000141 + ], + [ + -72.90397660699983, + 7.427850865000039 + ] + ] + ], + [ + [ + [ + -72.28321051099988, + 7.468571995000104 + ], + [ + -72.33505258199995, + 7.445247505000054 + ], + [ + -72.39996354899989, + 7.521353007000073 + ], + [ + -72.45253752799994, + 7.46377821700014 + ], + [ + -72.4293214999999, + 7.353859279000176 + ], + [ + -72.36431162699995, + 7.350737522999964 + ], + [ + -72.23088061299995, + 7.411733136000066 + ], + [ + -72.28321051099988, + 7.468571995000104 + ] + ] + ], + [ + [ + [ + -71.90647162299996, + 8.089364243000091 + ], + [ + -71.9885105059999, + 7.982403782000063 + ], + [ + -71.94615155299994, + 7.953941856000029 + ], + [ + -71.87905156799997, + 8.001489543000105 + ], + [ + -71.90647162299996, + 8.089364243000091 + ] + ] + ], + [ + [ + [ + -70.75678262499997, + 9.13870224599998 + ], + [ + -70.8193966149999, + 9.109156205000033 + ], + [ + -70.88780954099997, + 9.015549960000044 + ], + [ + -70.88774164799997, + 8.9301980460001 + ], + [ + -70.96394354099994, + 8.93487447700005 + ], + [ + -71.10952764399997, + 8.7872341260001 + ], + [ + -71.30191763599998, + 8.760258981999982 + ], + [ + -71.30066655299987, + 8.625888692000046 + ], + [ + -71.21823858199997, + 8.624595867000096 + ], + [ + -71.09796162399988, + 8.7164472770001 + ], + [ + -70.94735759899993, + 8.722270688000094 + ], + [ + -70.98020962999993, + 8.638564812000084 + ], + [ + -71.15278664699997, + 8.490082415000131 + ], + [ + -71.10415652099988, + 8.43647410900013 + ], + [ + -71.14920053299988, + 8.356059135000123 + ], + [ + -71.0456235119999, + 8.351602310000033 + ], + [ + -70.93269362699988, + 8.52663086500013 + ], + [ + -70.88169863099989, + 8.531653302000109 + ], + [ + -70.76902053899983, + 8.68367638300009 + ], + [ + -70.63394952199997, + 8.811520355000084 + ], + [ + -70.70639062299995, + 8.873530010000025 + ], + [ + -70.64063258099992, + 8.976537733000043 + ], + [ + -70.51746353099992, + 8.936871382000163 + ], + [ + -70.54792051699991, + 9.085999689000062 + ], + [ + -70.77023356799998, + 8.954628276000108 + ], + [ + -70.81144755399998, + 9.069629161000023 + ], + [ + -70.75678262499997, + 9.13870224599998 + ] + ] + ], + [ + [ + [ + 8.630823496000119, + 9.518218058000059 + ], + [ + 8.67836850000009, + 9.427889473 + ], + [ + 8.659350465000102, + 9.35182185800005 + ], + [ + 8.659350465000102, + 9.194932075999986 + ], + [ + 8.754441480000082, + 9.137882161000107 + ], + [ + 8.821004520000088, + 9.061814713000047 + ], + [ + 8.930358517000116, + 9.066569096000023 + ], + [ + 9.015940431000104, + 9.11411192100013 + ], + [ + 9.277441561000046, + 9.190178531000072 + ], + [ + 9.358267583000043, + 9.256737715000156 + ], + [ + 9.500904441000102, + 9.275754242000176 + ], + [ + 9.600749504000078, + 9.342313594000075 + ], + [ + 9.557958547000112, + 9.541990645000169 + ], + [ + 9.529431578000072, + 9.86527578900018 + ], + [ + 9.557958547000112, + 9.917572159000144 + ], + [ + 9.567467481000108, + 10.107740611000168 + ], + [ + 9.681576532000122, + 10.264628549 + ], + [ + 9.66731254400014, + 10.321679637000159 + ], + [ + 9.567467481000108, + 10.359712858000137 + ], + [ + 9.496223483000051, + 10.313616246000095 + ], + [ + 9.320231511999964, + 10.307416488000115 + ], + [ + 9.253667466000024, + 10.345449877000135 + ], + [ + 9.163331505000087, + 10.21233335200003 + ], + [ + 9.111031446000027, + 10.198070370000153 + ], + [ + 9.096768465000025, + 10.107740611000168 + ], + [ + 9.006431497000108, + 10.045935139000107 + ], + [ + 8.925604470000167, + 10.031672996000168 + ], + [ + 8.944622505000098, + 10.240858309000032 + ], + [ + 8.96839542600003, + 10.312171206000073 + ], + [ + 9.106277566000188, + 10.383484439000142 + ], + [ + 9.115786500000183, + 10.454797336000127 + ], + [ + 9.068241495000109, + 10.587915202000033 + ], + [ + 9.034958466000091, + 10.611685441000134 + ], + [ + 8.935113571000102, + 10.469059479000066 + ], + [ + 8.86379547700011, + 10.431025923000163 + ], + [ + 8.816249467000034, + 10.321679637000159 + ], + [ + 8.840023562000056, + 10.202825088000054 + ], + [ + 8.640332430000171, + 10.069706217000146 + ], + [ + 8.569014503000062, + 9.793962892000138 + ], + [ + 8.52146949900009, + 9.722648821 + ], + [ + 8.374077587000045, + 9.570515602000171 + ], + [ + 8.47867753600002, + 9.513464513000145 + ], + [ + 8.549996468000074, + 9.541990645000169 + ], + [ + 8.630823496000119, + 9.518218058000059 + ] + ] + ], + [ + [ + [ + -8.353761529999929, + 31.07186836300008 + ], + [ + -8.42846155399991, + 31.07748507700012 + ], + [ + -8.49947756399996, + 30.950481642000113 + ], + [ + -8.766268512999943, + 30.89352057400015 + ], + [ + -8.744705563999958, + 30.853638976000127 + ], + [ + -8.636585550999882, + 30.85875679900016 + ], + [ + -8.575987575999932, + 30.918465789000095 + ], + [ + -8.508936541999958, + 30.899509444000103 + ], + [ + -8.353761529999929, + 31.07186836300008 + ] + ] + ], + [ + [ + [ + -7.432618532999868, + 31.262600750000104 + ], + [ + -7.610122431999969, + 31.287132066000026 + ], + [ + -7.622984462999966, + 31.227733876 + ], + [ + -7.71087844099992, + 31.177339695000114 + ], + [ + -7.755366564999918, + 31.222231157000067 + ], + [ + -7.842771542999969, + 31.1545144320001 + ], + [ + -8.004296516999887, + 31.101082313000177 + ], + [ + -8.059111481999935, + 31.013967517000026 + ], + [ + -7.902281546999973, + 31.001861702000156 + ], + [ + -7.834802531999969, + 31.050009030000012 + ], + [ + -7.700619493999966, + 31.050434161000112 + ], + [ + -7.506047525999918, + 31.222399130000042 + ], + [ + -7.432618532999868, + 31.262600750000104 + ] + ] + ], + [ + [ + [ + -5.836045516999945, + 31.95608555600012 + ], + [ + -5.901650505999896, + 31.88161385500007 + ], + [ + -6.02822042899993, + 31.892679476000183 + ], + [ + -6.055961510999907, + 31.81390098500009 + ], + [ + -6.1405525159999, + 31.854602669000144 + ], + [ + -6.22735148199996, + 31.855119833000117 + ], + [ + -6.244500520999907, + 31.79775073400009 + ], + [ + -6.379846463999968, + 31.761376795000103 + ], + [ + -6.473243496999942, + 31.701996711000163 + ], + [ + -6.488954535999937, + 31.613981698000032 + ], + [ + -6.619503516999941, + 31.534333334 + ], + [ + -6.685210428999824, + 31.609328065000057 + ], + [ + -6.795005481999908, + 31.5541977740001 + ], + [ + -6.808544434999874, + 31.457803037000133 + ], + [ + -6.742752529999962, + 31.430261947000076 + ], + [ + -6.742984540999885, + 31.332493417000023 + ], + [ + -6.607514544999958, + 31.313753996 + ], + [ + -6.597471515999871, + 31.374952953000047 + ], + [ + -6.492197494999914, + 31.434051741000133 + ], + [ + -6.386865469999975, + 31.391195238000023 + ], + [ + -6.379469445999973, + 31.464999907000163 + ], + [ + -6.289886514999978, + 31.466483839000034 + ], + [ + -6.130642424999905, + 31.545974959000034 + ], + [ + -6.024512442999935, + 31.515813183000034 + ], + [ + -5.929573474999927, + 31.591458686000067 + ], + [ + -5.957247501999973, + 31.672399875000053 + ], + [ + -5.821709444999897, + 31.821703867000167 + ], + [ + -5.75336843599996, + 31.86564431800008 + ], + [ + -5.744797436999818, + 31.720917181000175 + ], + [ + -5.656013468999902, + 31.690473269999984 + ], + [ + -5.537174509999886, + 31.812410348000128 + ], + [ + -5.50628652599994, + 31.916730677000032 + ], + [ + -5.557697431999941, + 32.08542033400005 + ], + [ + -5.701688470999954, + 32.11777213300013 + ], + [ + -5.836045516999945, + 31.95608555600012 + ] + ] + ], + [ + [ + [ + -5.502517519999913, + 32.27650409000012 + ], + [ + -5.541120542999977, + 32.1550711000001 + ], + [ + -5.451042575999963, + 32.120522068000184 + ], + [ + -5.355935466999938, + 32.193197863000194 + ], + [ + -5.208828539999956, + 32.24391625600009 + ], + [ + -4.996252578999929, + 32.370514175000096 + ], + [ + -4.842241477999949, + 32.39318018200015 + ], + [ + -4.672354549999909, + 32.52215939900003 + ], + [ + -4.70631349599995, + 32.575288596000064 + ], + [ + -4.909420420999879, + 32.55797812100019 + ], + [ + -5.00608656299994, + 32.5172492800001 + ], + [ + -5.041218471999912, + 32.404247144000124 + ], + [ + -5.263265480999962, + 32.33828508600004 + ], + [ + -5.319060457999967, + 32.27214818200008 + ], + [ + -5.441676469999948, + 32.291140569000106 + ], + [ + -5.502517519999913, + 32.27650409000012 + ] + ] + ], + [ + [ + [ + 33.84840806500006, + -18.36624449999988 + ], + [ + 33.89067822700002, + -18.436941661999867 + ], + [ + 33.99012605400003, + -18.407632217999947 + ], + [ + 34.00106085400006, + -18.32770315599987 + ], + [ + 33.84840806500006, + -18.36624449999988 + ] + ] + ], + [ + [ + [ + 34.43994162100017, + -15.07953000599997 + ], + [ + 34.46282610900005, + -15.27032123999993 + ], + [ + 34.52250000000015, + -15.351162409999972 + ], + [ + 34.60333333300008, + -15.26833333299993 + ], + [ + 34.5716666670001, + -15.126666665999835 + ], + [ + 34.61583333300018, + -15.004999999999882 + ], + [ + 34.57617839200009, + -14.923300324999957 + ], + [ + 34.49015323900011, + -14.9007972039999 + ], + [ + 34.44142644900006, + -14.960638801999892 + ], + [ + 34.43994162100017, + -15.07953000599997 + ] + ] + ], + [ + [ + [ + 34.549166667000065, + -14.7575 + ], + [ + 34.515833333000046, + -14.56 + ], + [ + 34.45583333300016, + -14.509166666999931 + ], + [ + 34.3875000000001, + -14.399166666999918 + ], + [ + 34.30416666700012, + -14.4 + ], + [ + 34.23404439000018, + -14.448497730999975 + ], + [ + 34.331509814000015, + -14.532456191999927 + ], + [ + 34.427991932000054, + -14.80880970999982 + ], + [ + 34.52296553400015, + -14.796771120999836 + ], + [ + 34.549166667000065, + -14.7575 + ] + ] + ], + [ + [ + [ + 34.02666666700014, + -11.47 + ], + [ + 33.90166666600015, + -11.5 + ], + [ + 33.74500000000012, + -11.655 + ], + [ + 33.7975, + -11.798333333999835 + ], + [ + 33.705, + -11.895 + ], + [ + 33.8216666670001, + -11.961666666999918 + ], + [ + 33.68750000000017, + -12.11416666699995 + ], + [ + 33.729166667000015, + -12.14249999999987 + ], + [ + 33.835833334000085, + -11.980833332999964 + ], + [ + 33.884166667000045, + -11.946666666999874 + ], + [ + 33.911666666000144, + -11.86416666599996 + ], + [ + 33.923333334000176, + -11.724166666999963 + ], + [ + 33.9591666660001, + -11.668333333999954 + ], + [ + 33.96583333300009, + -11.570833332999939 + ], + [ + 34.02666666700014, + -11.47 + ] + ] + ], + [ + [ + [ + 34.106666666000024, + -11.304166666999947 + ], + [ + 34.04500000000013, + -11.44 + ], + [ + 34.1400000000001, + -11.434166665999896 + ], + [ + 34.106666666000024, + -11.304166666999947 + ] + ] + ], + [ + [ + [ + 34.8175, + -10.695833332999939 + ], + [ + 34.85500000000019, + -10.741666666999947 + ], + [ + 34.779166667000084, + -10.878333332999944 + ], + [ + 34.788333333000026, + -10.998333333999938 + ], + [ + 34.845, + -11.053333333999888 + ], + [ + 34.87583333300006, + -11.2 + ], + [ + 34.975, + -11.220833332999916 + ], + [ + 34.99583333300018, + -11.110833333999949 + ], + [ + 34.968333333000146, + -10.970833333999963 + ], + [ + 34.9025, + -10.824166666999929 + ], + [ + 34.87916666600012, + -10.71333333299998 + ], + [ + 34.8175, + -10.695833332999939 + ] + ] + ], + [ + [ + [ + 34.16750000000013, + -10.7975 + ], + [ + 34.1175, + -10.8325 + ], + [ + 34.0925, + -10.9725 + ], + [ + 34.0375, + -11.095 + ], + [ + 34.054166667000175, + -11.168333332999964 + ], + [ + 34.15333333300009, + -11.163333333999958 + ], + [ + 34.21416666700014, + -11.064999999999827 + ], + [ + 34.225833333000026, + -10.990833332999955 + ], + [ + 34.21, + -10.834166665999874 + ], + [ + 34.16750000000013, + -10.7975 + ] + ] + ], + [ + [ + [ + 33.79166666700013, + -10.365 + ], + [ + 33.7275, + -10.497499999999889 + ], + [ + 33.70083333300016, + -10.665833333999899 + ], + [ + 33.76166666700004, + -10.687499999999886 + ], + [ + 33.83, + -10.650833332999923 + ], + [ + 33.915, + -10.740833332999898 + ], + [ + 33.98, + -10.76 + ], + [ + 33.995, + -10.681666666999888 + ], + [ + 33.96000000000015, + -10.6025 + ], + [ + 33.959166667000034, + -10.46 + ], + [ + 33.84583333299997, + -10.43583333399988 + ], + [ + 33.79166666700013, + -10.365 + ] + ] + ], + [ + [ + [ + 33.57833333400009, + -10.0225 + ], + [ + 33.61333333300007, + -10.145 + ], + [ + 33.694166666, + -10.090833332999978 + ], + [ + 33.636666667000156, + -10.014166665999937 + ], + [ + 33.57833333400009, + -10.0225 + ] + ] + ], + [ + [ + [ + 35.31333333300006, + -9.566666666999936 + ], + [ + 35.22, + -9.5508333329999 + ], + [ + 35.213333333000094, + -9.461666666999974 + ], + [ + 35.30666666600007, + -9.455833333999976 + ], + [ + 35.335833333000096, + -9.21333333299998 + ], + [ + 35.278333334000024, + -9.109166666999897 + ], + [ + 35.13416666700016, + -9.063333332999889 + ], + [ + 35.10083333300008, + -8.954166666999981 + ], + [ + 34.995, + -8.984166665999851 + ], + [ + 34.934166667000056, + -8.95916666599993 + ], + [ + 34.810000000000116, + -8.965833332999864 + ], + [ + 34.8075, + -9.034166666999909 + ], + [ + 34.7325, + -9.1775 + ], + [ + 34.62583333300012, + -9.3 + ], + [ + 34.57500000000016, + -9.301666666999893 + ], + [ + 34.545000000000186, + -9.18333333299995 + ], + [ + 34.46083333300015, + -9.194166666999877 + ], + [ + 34.375, + -9.095 + ], + [ + 34.30333333300007, + -9.054999999999893 + ], + [ + 34.2075, + -9.117499999999836 + ], + [ + 34.125000000000114, + -9.109166665999908 + ], + [ + 33.982500000000186, + -8.939166666999938 + ], + [ + 33.86083333300013, + -8.950833332999878 + ], + [ + 33.7225, + -8.9191666669999 + ], + [ + 33.685833333000176, + -9.06083333399988 + ], + [ + 33.60583333300019, + -9.133333332999939 + ], + [ + 33.68, + -9.195 + ], + [ + 33.750000000000114, + -9.195833332999939 + ], + [ + 33.81166666700011, + -9.115 + ], + [ + 33.895833334000145, + -9.235 + ], + [ + 33.9575, + -9.263333332999878 + ], + [ + 34.006666667, + -9.405833332999975 + ], + [ + 34.14916666600004, + -9.509166665999942 + ], + [ + 34.21666666600015, + -9.519166666999922 + ], + [ + 34.237500000000125, + -9.590833332999978 + ], + [ + 34.25250000000011, + -9.640833332999875 + ], + [ + 34.36166666600013, + -9.724166666999963 + ], + [ + 34.49166666700012, + -9.901666665999926 + ], + [ + 34.565833333000114, + -10.03916666699996 + ], + [ + 34.615, + -10.044166665999967 + ], + [ + 34.70833333300004, + -9.785833332999971 + ], + [ + 34.82250000000016, + -9.821666665999942 + ], + [ + 34.950833333000105, + -9.795 + ], + [ + 34.97083333300003, + -9.889999999999873 + ], + [ + 35.11583333400017, + -9.778333332999921 + ], + [ + 35.24166666600007, + -9.8575 + ], + [ + 35.326666667000154, + -9.82583333399998 + ], + [ + 35.34583333300003, + -9.68333333299995 + ], + [ + 35.35, + -9.650833332999866 + ], + [ + 35.29750000000013, + -9.644166666999979 + ], + [ + 35.31333333300006, + -9.566666666999936 + ] + ] + ], + [ + [ + [ + 34.5841666660001, + 0.98583333400012 + ], + [ + 34.615, + 0.999166666000178 + ], + [ + 34.68833333400016, + 1.049166667000179 + ], + [ + 34.668333333000135, + 1.171666666000078 + ], + [ + 34.59833333400019, + 1.265000000000157 + ], + [ + 34.52250000000015, + 1.268333333000157 + ], + [ + 34.41833333400007, + 1.170833333000132 + ], + [ + 34.46166666700003, + 1.126666666000176 + ], + [ + 34.46250000000015, + 1.021666667000147 + ], + [ + 34.5841666660001, + 0.98583333400012 + ] + ] + ], + [ + [ + [ + 35.61916666700006, + -16.059166666999886 + ], + [ + 35.67083333300019, + -16.03083333299992 + ], + [ + 35.78416666700002, + -16.045 + ], + [ + 35.77833333400014, + -15.949999999999875 + ], + [ + 35.73083333300002, + -15.744166666999888 + ], + [ + 35.641666667000095, + -15.8225 + ], + [ + 35.4925, + -15.9025 + ], + [ + 35.48500000000013, + -15.984166665999965 + ], + [ + 35.54833333300019, + -16.0425 + ], + [ + 35.61916666700006, + -16.059166666999886 + ] + ] + ], + [ + [ + [ + 36.78666666700008, + -3.200833332999878 + ], + [ + 36.71916666699997, + -3.223333333999904 + ], + [ + 36.71333333300015, + -3.286666666999963 + ], + [ + 36.80333333400006, + -3.289166666999961 + ], + [ + 36.78666666700008, + -3.200833332999878 + ] + ] + ], + [ + [ + [ + 36.67, + -0.534999999999854 + ], + [ + 36.71000000000015, + -0.545 + ], + [ + 36.735, + -0.429999999999893 + ], + [ + 36.6525, + -0.26083333299988 + ], + [ + 36.59250000000014, + -0.233333332999962 + ], + [ + 36.53333333300003, + -0.27916666699997 + ], + [ + 36.56833333300011, + -0.355 + ], + [ + 36.66916666700013, + -0.480833332999907 + ], + [ + 36.67, + -0.534999999999854 + ] + ] + ], + [ + [ + [ + 35.49500000000012, + 1.185833333000062 + ], + [ + 35.574166667000156, + 1.130833334000101 + ], + [ + 35.550833334, + 1.2825 + ], + [ + 35.43000000000012, + 1.226666667000188 + ], + [ + 35.49500000000012, + 1.185833333000062 + ] + ] + ], + [ + [ + [ + 36.732500000000186, + 5.723333333000085 + ], + [ + 36.765, + 5.769166666999979 + ], + [ + 36.68666666700017, + 5.885 + ], + [ + 36.8325, + 6.07333333400004 + ], + [ + 36.78333333299997, + 6.167500000000189 + ], + [ + 36.80250000000018, + 6.241666667000061 + ], + [ + 36.96166666700003, + 6.40083333299998 + ], + [ + 36.94583333300005, + 6.50416666700005 + ], + [ + 36.836666667000145, + 6.365000000000123 + ], + [ + 36.7025, + 6.28 + ], + [ + 36.67416666600019, + 6.203333333000046 + ], + [ + 36.56833333300011, + 6.048333333000187 + ], + [ + 36.6175, + 5.8975 + ], + [ + 36.59250000000014, + 5.811666667000168 + ], + [ + 36.732500000000186, + 5.723333333000085 + ] + ] + ], + [ + [ + [ + 35.549166667000065, + 6.035833333000141 + ], + [ + 35.6333333340001, + 6.141666666 + ], + [ + 35.66083333300003, + 6.220833334000133 + ], + [ + 35.573333333000164, + 6.211666667000145 + ], + [ + 35.549166667000065, + 6.035833333000141 + ] + ] + ], + [ + [ + [ + 36.72750000000019, + 7.098333334000131 + ], + [ + 36.845, + 7.119166667000059 + ], + [ + 36.96833333300009, + 7.064166667000165 + ], + [ + 36.97666666700019, + 6.974166666000144 + ], + [ + 36.93083333400017, + 6.888333333000048 + ], + [ + 36.98, + 6.860833333000187 + ], + [ + 37.24166666700012, + 6.865833334000058 + ], + [ + 37.26083333300005, + 7.048333333000187 + ], + [ + 37.192500000000166, + 7.093333333999965 + ], + [ + 37.0875, + 7.085833332999982 + ], + [ + 37.08500000000015, + 7.143333334000033 + ], + [ + 36.975, + 7.155833333000032 + ], + [ + 36.9533333330001, + 7.100833333000139 + ], + [ + 36.83083333300016, + 7.155833333000032 + ], + [ + 36.7175, + 7.138333333000162 + ], + [ + 36.72750000000019, + 7.098333334000131 + ] + ] + ], + [ + [ + [ + 36.6575, + 7.250833334000049 + ], + [ + 36.73, + 7.17416666600019 + ], + [ + 36.69000000000017, + 7.129166666000117 + ], + [ + 36.72833333300014, + 7.219166666000092 + ], + [ + 36.6575, + 7.250833334000049 + ] + ] + ], + [ + [ + [ + 36.764166666000165, + 7.33 + ], + [ + 36.86583333300007, + 7.3275000000001 + ], + [ + 36.92416666600013, + 7.388333333000105 + ], + [ + 36.97833333400018, + 7.312500000000171 + ], + [ + 37.145, + 7.300000000000125 + ], + [ + 37.11583333300018, + 7.370000000000118 + ], + [ + 37.29083333400007, + 7.395 + ], + [ + 37.3958333330001, + 7.495000000000175 + ], + [ + 37.38083333300011, + 7.696666666000112 + ], + [ + 37.48166666700007, + 7.670833333000076 + ], + [ + 37.54083333400018, + 7.767500000000155 + ], + [ + 37.57750000000016, + 7.935833333000176 + ], + [ + 37.57250000000016, + 8.03 + ], + [ + 37.507500000000164, + 8.133333334000042 + ], + [ + 37.42833333400017, + 8.083333333000098 + ], + [ + 37.408333333000144, + 7.933333333000064 + ], + [ + 37.3325, + 7.710833333000153 + ], + [ + 37.28, + 7.65 + ], + [ + 37.09666666700008, + 7.622500000000173 + ], + [ + 37.05333333300007, + 7.544166667000127 + ], + [ + 36.92333333300019, + 7.533333333000144 + ], + [ + 36.870833333000064, + 7.586666667000088 + ], + [ + 36.73916666600002, + 7.567500000000109 + ], + [ + 36.71416666700003, + 7.603333333000137 + ], + [ + 36.85833333300019, + 7.487500000000125 + ], + [ + 36.85833333300019, + 7.38666666600011 + ], + [ + 36.764166666000165, + 7.33 + ] + ] + ], + [ + [ + [ + 37.05833333400017, + 8.520833333000041 + ], + [ + 37.105833334000124, + 8.683333334 + ], + [ + 37.0925, + 8.786666667000134 + ], + [ + 37.131666666000115, + 8.852500000000134 + ], + [ + 37.05333333300007, + 8.91 + ], + [ + 36.89916666700009, + 8.906666667000081 + ], + [ + 36.99250000000012, + 8.799166667000065 + ], + [ + 36.97250000000014, + 8.72 + ], + [ + 37.05, + 8.632500000000107 + ], + [ + 37.03833333300008, + 8.542500000000132 + ], + [ + 37.05833333400017, + 8.520833333000041 + ] + ] + ], + [ + [ + [ + 36.128333334, + 11.369166667000115 + ], + [ + 36.21583333300015, + 11.363333333000071 + ], + [ + 36.19000000000011, + 11.511666667000043 + ], + [ + 36.13333333300011, + 11.445833334000042 + ], + [ + 36.128333334, + 11.369166667000115 + ] + ] + ], + [ + [ + [ + 36.94324859000017, + 18.870147330000066 + ], + [ + 36.95468150600004, + 18.76217383300002 + ], + [ + 37.020099577999986, + 18.683879481000133 + ], + [ + 37.07123958100016, + 18.535798241000066 + ], + [ + 37.1562885730001, + 18.568945316000054 + ], + [ + 37.21002948100005, + 18.752404389000162 + ], + [ + 37.16971956700013, + 18.873577372 + ], + [ + 37.120510587000126, + 18.918395576000137 + ], + [ + 37.01152053200019, + 18.94883278100008 + ], + [ + 36.94324859000017, + 18.870147330000066 + ] + ] + ], + [ + [ + [ + 36.41473007800016, + 21.551010088 + ], + [ + 36.390230035000116, + 21.641279992000136 + ], + [ + 36.31800006500015, + 21.602969950000045 + ], + [ + 36.34474999600019, + 21.52923008100015 + ], + [ + 36.41473007800016, + 21.551010088 + ] + ] + ], + [ + [ + [ + 36.56048992399997, + 21.86562993700005 + ], + [ + 36.51877002400005, + 21.944800021000162 + ], + [ + 36.45080994600005, + 21.921870076000175 + ], + [ + 36.46252002700004, + 21.82048996800006 + ], + [ + 36.56048992399997, + 21.86562993700005 + ] + ] + ], + [ + [ + [ + 36.385059800000136, + 21.885410181000168 + ], + [ + 36.308139955, + 22.00974998100014 + ], + [ + 36.226150030000156, + 21.979849997000088 + ], + [ + 36.338419965000185, + 21.825130031000185 + ], + [ + 36.385059800000136, + 21.885410181000168 + ] + ] + ], + [ + [ + [ + 37.21666666699997, + -2.934166665999896 + ], + [ + 37.19750000000016, + -3.068333333999931 + ], + [ + 37.43416666700011, + -3.184166665999953 + ], + [ + 37.52166666700015, + -3.179166666999947 + ], + [ + 37.535, + -3.123333332999891 + ], + [ + 37.444166667000104, + -2.964166666999915 + ], + [ + 37.21666666699997, + -2.934166665999896 + ] + ] + ], + [ + [ + [ + 37.39833333300015, + -0.185 + ], + [ + 37.496666666000124, + -0.096666666999965 + ], + [ + 37.5, + 0.06666666700005 + ], + [ + 37.250000000000114, + -0.021666665999931 + ], + [ + 37.20916666599999, + -0.154166665999981 + ], + [ + 37.25500000000011, + -0.273333333999972 + ], + [ + 37.39833333300015, + -0.185 + ] + ] + ], + [ + [ + [ + 38.02833333300009, + 4.966674805000139 + ], + [ + 37.98416666700007, + 4.9025 + ], + [ + 38.058333333000064, + 4.855833334000124 + ], + [ + 38.07500000000016, + 4.780833334000135 + ], + [ + 38.1458333330001, + 4.745833333000121 + ], + [ + 38.16000000000014, + 4.83166666700015 + ], + [ + 38.09416666699997, + 4.886666666999986 + ], + [ + 38.10250000000019, + 4.943333334000044 + ], + [ + 38.02833333300009, + 4.966674805000139 + ] + ] + ], + [ + [ + [ + 37.956666667000036, + 5.310833333000062 + ], + [ + 38.02583333300004, + 5.370000000000175 + ], + [ + 38.09583333400013, + 5.528333334000081 + ], + [ + 38.03083333300003, + 5.610833333000073 + ], + [ + 37.94916666600005, + 5.521666667000147 + ], + [ + 37.911666667000134, + 5.42 + ], + [ + 37.956666667000036, + 5.310833333000062 + ] + ] + ], + [ + [ + [ + 38.215, + 5.5275 + ], + [ + 38.246666667000056, + 5.740833333000126 + ], + [ + 38.192500000000166, + 5.815833333000114 + ], + [ + 38.197500000000105, + 5.6975 + ], + [ + 38.116666667, + 5.680000000000121 + ], + [ + 38.111666667, + 5.492500000000121 + ], + [ + 38.215, + 5.5275 + ] + ] + ], + [ + [ + [ + 37.874166666000065, + 5.406666667000025 + ], + [ + 37.87333333300012, + 5.590833333000091 + ], + [ + 37.89333333400015, + 5.925000000000125 + ], + [ + 37.854166667000186, + 5.948333333000107 + ], + [ + 37.751666667000165, + 5.849166666999963 + ], + [ + 37.761666667000156, + 5.763333333000162 + ], + [ + 37.80250000000018, + 5.723333334000188 + ], + [ + 37.77833333400008, + 5.48 + ], + [ + 37.874166666000065, + 5.406666667000025 + ] + ] + ], + [ + [ + [ + 37.62916666600012, + 6.571666667000159 + ], + [ + 37.58583333300015, + 6.422500000000127 + ], + [ + 37.47416666600009, + 6.42583333400006 + ], + [ + 37.419166666000024, + 6.38333333300011 + ], + [ + 37.408333333000144, + 6.310000000000116 + ], + [ + 37.32000000000011, + 6.29083333300008 + ], + [ + 37.25833333300011, + 6.175 + ], + [ + 37.195, + 6.151666667000086 + ], + [ + 37.135, + 5.954166666 + ], + [ + 37.295000000000186, + 5.785 + ], + [ + 37.29583333300013, + 5.629166667000163 + ], + [ + 37.189166667000165, + 5.566666666000117 + ], + [ + 37.244166666000126, + 5.482500000000186 + ], + [ + 37.34583333300003, + 5.533333334000076 + ], + [ + 37.3275, + 5.59 + ], + [ + 37.38583333300011, + 5.648333333000096 + ], + [ + 37.3375, + 5.7675 + ], + [ + 37.287500000000136, + 5.796666667000181 + ], + [ + 37.28666666700019, + 5.872500000000116 + ], + [ + 37.37416666600018, + 5.895833333000098 + ], + [ + 37.3908333330001, + 5.978333334000126 + ], + [ + 37.479166667000186, + 6.04416666700007 + ], + [ + 37.48583333400012, + 6.112500000000125 + ], + [ + 37.59833333400013, + 6.148333334000085 + ], + [ + 37.63333333300017, + 6.225000000000136 + ], + [ + 37.715, + 6.273333334000142 + ], + [ + 37.684166667000056, + 6.516666667000095 + ], + [ + 37.62916666600012, + 6.571666667000159 + ] + ] + ], + [ + [ + [ + 37.3958333330001, + 6.658333334000133 + ], + [ + 37.3375, + 6.579166667000038 + ], + [ + 37.444166667000104, + 6.544166667000127 + ], + [ + 37.3958333330001, + 6.658333334000133 + ] + ] + ], + [ + [ + [ + 37.43416666600018, + 6.695833333000053 + ], + [ + 37.5525, + 6.76916666700015 + ], + [ + 37.5525, + 6.867500000000121 + ], + [ + 37.43916666700011, + 6.799166667000065 + ], + [ + 37.35666666600008, + 6.801666667000177 + ], + [ + 37.340833333000035, + 6.753333334000047 + ], + [ + 37.43416666600018, + 6.695833333000053 + ] + ] + ], + [ + [ + [ + 38.06916666700005, + 6.910000000000139 + ], + [ + 38.08583333400014, + 6.98833333400006 + ], + [ + 38.0225, + 7.01 + ], + [ + 37.97416666700008, + 6.96 + ], + [ + 38.06916666700005, + 6.910000000000139 + ] + ] + ], + [ + [ + [ + 37.090000000000146, + 7.8275 + ], + [ + 37.09500000000014, + 7.723333334000131 + ], + [ + 37.194166667000104, + 7.782500000000141 + ], + [ + 37.26250000000016, + 7.900000000000148 + ], + [ + 37.3325, + 7.870833333000121 + ], + [ + 37.3925, + 7.958333333000041 + ], + [ + 37.352500000000134, + 8.129166667 + ], + [ + 37.29583333300013, + 8.249166667000054 + ], + [ + 37.31833333300017, + 8.322500000000105 + ], + [ + 37.29416666700007, + 8.5275 + ], + [ + 37.23500000000013, + 8.555833334000056 + ], + [ + 37.19166666600012, + 8.459166667000147 + ], + [ + 37.20583333300016, + 8.384166666000056 + ], + [ + 37.16583333400018, + 8.295 + ], + [ + 37.16583333300008, + 8.265833334000035 + ], + [ + 37.16583333300008, + 8.26416666700004 + ], + [ + 37.1375000000001, + 8.03 + ], + [ + 37.05833333400017, + 7.995 + ], + [ + 37.00583333300011, + 7.921666666000135 + ], + [ + 37.03, + 7.834166667000147 + ], + [ + 37.090000000000146, + 7.8275 + ] + ] + ], + [ + [ + [ + 37.585, + 13.284166667000079 + ], + [ + 37.47166666700008, + 13.35750000000013 + ], + [ + 37.49250000000018, + 13.54916666700018 + ], + [ + 37.42833333300007, + 13.60833333300019 + ], + [ + 37.42, + 13.7025 + ], + [ + 37.36083333300013, + 13.722500000000139 + ], + [ + 37.30416666700006, + 13.80916666600018 + ], + [ + 37.21833333300003, + 13.769166666000103 + ], + [ + 37.3375, + 13.635833333 + ], + [ + 37.3925, + 13.625000000000114 + ], + [ + 37.433333333000064, + 13.499166667000111 + ], + [ + 37.27666666700003, + 13.459166667000034 + ], + [ + 37.18333333300012, + 13.415 + ], + [ + 37.19916666600005, + 13.33083333400009 + ], + [ + 37.270833332999985, + 13.360000000000184 + ], + [ + 37.36333333300007, + 13.328333333000103 + ], + [ + 37.39333333300016, + 13.253333334000047 + ], + [ + 37.47083333400019, + 13.225000000000136 + ], + [ + 37.51333333400015, + 13.323333333000107 + ], + [ + 37.585, + 13.284166667000079 + ] + ] + ], + [ + [ + [ + 38.63666666700004, + 10.340833333000035 + ], + [ + 38.50750000000011, + 10.340833334000138 + ], + [ + 38.493333333000066, + 10.248333333000176 + ], + [ + 38.44166666700016, + 10.110833333000073 + ], + [ + 38.52916666700003, + 10.076666666999984 + ], + [ + 38.61333333400006, + 10.145833333000155 + ], + [ + 38.74000000000018, + 10.149166665999985 + ], + [ + 38.794166666000024, + 10.2575 + ], + [ + 38.73666666700018, + 10.316666667000163 + ], + [ + 38.63666666700004, + 10.340833333000035 + ] + ] + ], + [ + [ + [ + 38.776666667000086, + 6.4425 + ], + [ + 38.8275000000001, + 6.475 + ], + [ + 38.82333333300005, + 6.557500000000118 + ], + [ + 38.86250000000018, + 6.655 + ], + [ + 38.97583333300014, + 6.725833333000139 + ], + [ + 39.210833333000096, + 6.798333333000073 + ], + [ + 39.3625, + 6.776666667000029 + ], + [ + 39.445000000000164, + 6.703333333000103 + ], + [ + 39.487500000000125, + 6.8225 + ], + [ + 39.65833333300003, + 6.831666666 + ], + [ + 39.66833333300019, + 6.765833333000046 + ], + [ + 39.87083333300018, + 6.712500000000148 + ], + [ + 39.97333333300003, + 6.759166667000159 + ], + [ + 39.98416666700018, + 6.695833333000053 + ], + [ + 40.060833334000165, + 6.868333333000066 + ], + [ + 40.20666666700015, + 6.89333333400009 + ], + [ + 40.299166666000076, + 6.880833333000112 + ], + [ + 40.40166666700003, + 6.72 + ], + [ + 40.48, + 6.73583333300013 + ], + [ + 40.41916666600014, + 6.88 + ], + [ + 40.540833333000194, + 6.909166667000022 + ], + [ + 40.47333333400019, + 6.966666666000037 + ], + [ + 40.497500000000116, + 7.085833332999982 + ], + [ + 40.59500000000014, + 7.102500000000134 + ], + [ + 40.64166666699998, + 7.07666666700004 + ], + [ + 40.74666666700011, + 7.1225 + ], + [ + 40.80000000000018, + 7.243333333000066 + ], + [ + 40.795000000000186, + 7.318333333999988 + ], + [ + 40.73916666600013, + 7.358333334000065 + ], + [ + 40.74166666700012, + 7.425000000000182 + ], + [ + 40.600000000000136, + 7.5325 + ], + [ + 40.42500000000018, + 7.436666666 + ], + [ + 40.32250000000016, + 7.449166666000053 + ], + [ + 40.278333333000035, + 7.485 + ], + [ + 40.18, + 7.41 + ], + [ + 39.93416666700011, + 7.458333333000098 + ], + [ + 39.86083333300019, + 7.390833332999989 + ], + [ + 39.77166666700009, + 7.3575 + ], + [ + 39.69833333400004, + 7.420000000000186 + ], + [ + 39.57833333400015, + 7.453333333000103 + ], + [ + 39.585833333000096, + 7.519166666999979 + ], + [ + 39.705, + 7.528333334000024 + ], + [ + 39.62000000000012, + 7.661666667000134 + ], + [ + 39.6975, + 7.655 + ], + [ + 39.81750000000011, + 7.55 + ], + [ + 39.92000000000013, + 7.540833333000023 + ], + [ + 39.99166666700012, + 7.494166666000126 + ], + [ + 40.1, + 7.498333333 + ], + [ + 40.17083333300019, + 7.62083333400011 + ], + [ + 40.22833333300014, + 7.669166667000184 + ], + [ + 40.18333333400017, + 7.716666666000094 + ], + [ + 40.14416666699998, + 7.835833333000039 + ], + [ + 40.0775, + 7.808333333000178 + ], + [ + 40.00500000000011, + 7.855833332999964 + ], + [ + 40.05416666700006, + 7.903333334000081 + ], + [ + 39.97416666700002, + 7.9725 + ], + [ + 39.98916666700018, + 8.081666667000036 + ], + [ + 40.1325, + 8.08083333400009 + ], + [ + 40.0425, + 8.160833334000074 + ], + [ + 40.045000000000186, + 8.306666666000126 + ], + [ + 40.14416666699998, + 8.355833333000078 + ], + [ + 40.22416666700019, + 8.5275 + ], + [ + 40.31333333400005, + 8.581666667000093 + ], + [ + 40.36916666700017, + 8.69833333300005 + ], + [ + 40.49833333300006, + 8.818333333000169 + ], + [ + 40.735000000000184, + 8.908333333000087 + ], + [ + 40.78, + 8.7475 + ], + [ + 40.99000000000012, + 8.834166667000147 + ], + [ + 40.9625, + 8.96000000000015 + ], + [ + 41.099166665999974, + 8.93833333300006 + ], + [ + 41.16666666600008, + 8.998333333000062 + ], + [ + 41.31, + 9.071666667000045 + ], + [ + 41.33583333300015, + 8.98916666700012 + ], + [ + 41.459166666000044, + 9.158333333000087 + ], + [ + 41.50583333300011, + 9.039166666000085 + ], + [ + 41.65000000000015, + 9.289166666000028 + ], + [ + 41.594166667000025, + 9.110000000000127 + ], + [ + 41.516666667000095, + 8.945000000000164 + ], + [ + 41.660833333000085, + 8.970833334000133 + ], + [ + 41.75416666700016, + 8.965833333000091 + ], + [ + 41.9025, + 9.011666667000156 + ], + [ + 41.91416666700013, + 9.160833333000141 + ], + [ + 41.958333332999985, + 9.203333334000035 + ], + [ + 41.958333332999985, + 9.275 + ], + [ + 42.040000000000134, + 9.259166666000112 + ], + [ + 42.14416666700015, + 9.1725 + ], + [ + 42.1400000000001, + 9.31 + ], + [ + 42.20333333300016, + 9.388333333000048 + ], + [ + 42.305, + 9.35333333400007 + ], + [ + 42.41416666700002, + 9.361666666000133 + ], + [ + 42.55166666700018, + 9.431666666000183 + ], + [ + 42.608333333000076, + 9.430833333000066 + ], + [ + 42.71666666600004, + 9.355833334000124 + ], + [ + 42.70916666700009, + 9.478333333000023 + ], + [ + 42.90083333400014, + 9.476666667000131 + ], + [ + 42.94916666600011, + 9.52250000000015 + ], + [ + 42.92169189500015, + 9.640000000000157 + ], + [ + 42.8725, + 9.6991666670001 + ], + [ + 42.775, + 9.73166666700007 + ], + [ + 42.68416666700011, + 9.69250000000011 + ], + [ + 42.64500000000015, + 9.600833334000072 + ], + [ + 42.566666667000106, + 9.645000000000152 + ], + [ + 42.3841666670001, + 9.626666666000062 + ], + [ + 42.30833333400017, + 9.59333333300009 + ], + [ + 42.26000000000016, + 9.625 + ], + [ + 42.17916666700006, + 9.59583333300003 + ], + [ + 42.17166666700018, + 9.535833332999971 + ], + [ + 42.071666667000045, + 9.559166667000056 + ], + [ + 41.95833333400009, + 9.490000000000123 + ], + [ + 41.819166666000115, + 9.464166667000086 + ], + [ + 41.52916666700014, + 9.495000000000118 + ], + [ + 41.47250000000014, + 9.443333333000112 + ], + [ + 41.40666666699997, + 9.440000000000111 + ], + [ + 41.293333333000135, + 9.376666667000052 + ], + [ + 41.2091666660001, + 9.387500000000102 + ], + [ + 41.16, + 9.300833333000185 + ], + [ + 41.09666666700019, + 9.39083333300016 + ], + [ + 41.02583333300015, + 9.361666667000065 + ], + [ + 40.983333334000065, + 9.170000000000186 + ], + [ + 40.90916666700019, + 9.200000000000102 + ], + [ + 40.8958333330001, + 9.113333333000185 + ], + [ + 40.843333333000146, + 9.08083333400009 + ], + [ + 40.745833333000064, + 9.095 + ], + [ + 40.71, + 9.050833333000071 + ], + [ + 40.529166666000094, + 8.965000000000146 + ], + [ + 40.45416666700015, + 8.8900000000001 + ], + [ + 40.44583333300005, + 8.798333333000187 + ], + [ + 40.31333333400005, + 8.796666667000125 + ], + [ + 40.17083333300019, + 8.679166666000071 + ], + [ + 40.11500000000018, + 8.661666667000077 + ], + [ + 40.06166666700011, + 8.538333333000082 + ], + [ + 39.98333333300019, + 8.550833333000128 + ], + [ + 39.92416666700018, + 8.491666667000118 + ], + [ + 39.79250000000013, + 8.4275 + ], + [ + 39.668333334000124, + 8.435833333000062 + ], + [ + 39.43166666700017, + 8.2875 + ], + [ + 39.396666667000034, + 8.21083333300004 + ], + [ + 39.27583333300015, + 8.25 + ], + [ + 39.1525, + 8.245833333000121 + ], + [ + 39.073333333000164, + 8.167500000000132 + ], + [ + 38.98416666700007, + 8.237500000000125 + ], + [ + 38.9566666660001, + 8.178333333000012 + ], + [ + 39.105, + 8.072500000000161 + ], + [ + 39.069166666000115, + 7.953333334000092 + ], + [ + 38.90833333300003, + 7.862500000000125 + ], + [ + 38.864166666000074, + 7.79 + ], + [ + 38.76000000000016, + 7.828333334000035 + ], + [ + 38.730833333000135, + 7.760000000000105 + ], + [ + 38.834166667000034, + 7.741666667000118 + ], + [ + 38.85416666600008, + 7.595833333000087 + ], + [ + 38.81750000000011, + 7.475 + ], + [ + 38.67583333300013, + 7.440000000000111 + ], + [ + 38.53166666700014, + 7.220833334000133 + ], + [ + 38.52333333300004, + 7.146666666000158 + ], + [ + 38.62333333300012, + 7.104166667000072 + ], + [ + 38.60166666600003, + 6.994166667000172 + ], + [ + 38.55416666600007, + 6.9575 + ], + [ + 38.36416666700006, + 6.960833334000029 + ], + [ + 38.29833333400012, + 7.002500000000168 + ], + [ + 38.40583333300003, + 7.176666666000074 + ], + [ + 38.37166666700011, + 7.296666665999965 + ], + [ + 38.33916666700014, + 7.580833333000101 + ], + [ + 38.28416666700008, + 7.510000000000161 + ], + [ + 38.24083333400017, + 7.5875 + ], + [ + 38.48083333300019, + 7.791666667000186 + ], + [ + 38.575, + 7.920833333000189 + ], + [ + 38.579166666, + 8.000833334000106 + ], + [ + 38.674166667000065, + 8.1375 + ], + [ + 38.68916666600012, + 8.310833333000176 + ], + [ + 38.72583333400007, + 8.364166666000074 + ], + [ + 38.735, + 8.484166665999965 + ], + [ + 38.8275000000001, + 8.456666667000036 + ], + [ + 38.890833334000035, + 8.52 + ], + [ + 38.89, + 8.630833334000044 + ], + [ + 38.98083333400018, + 8.59583333300003 + ], + [ + 39.133333333, + 8.598333333000141 + ], + [ + 39.145833333999974, + 8.538333334000185 + ], + [ + 39.24750000000017, + 8.558333333000064 + ], + [ + 39.317500000000166, + 8.649166667000031 + ], + [ + 39.30916666700017, + 8.735833334000176 + ], + [ + 39.440833333000114, + 8.825000000000102 + ], + [ + 39.334166666000044, + 9.070833333000166 + ], + [ + 39.415, + 9.069166667000104 + ], + [ + 39.585, + 9.154166667000084 + ], + [ + 39.649166665999985, + 9.245833334000054 + ], + [ + 39.68833333300017, + 9.40833333300003 + ], + [ + 39.723333333000085, + 9.456666666000103 + ], + [ + 39.81750000000011, + 9.4725 + ], + [ + 39.775, + 9.58916666600004 + ], + [ + 39.84666666600015, + 9.7 + ], + [ + 39.81666666700016, + 9.79 + ], + [ + 39.869166667000115, + 9.803333333000182 + ], + [ + 39.77583333300004, + 9.9725 + ], + [ + 39.8958333330001, + 10.21 + ], + [ + 39.899166666000156, + 10.481666667000127 + ], + [ + 39.781666667000025, + 10.659166666000033 + ], + [ + 39.75083333300012, + 10.814166666000062 + ], + [ + 39.68000000000012, + 10.88000000000011 + ], + [ + 39.730833333000135, + 10.97416666600003 + ], + [ + 39.81666666700016, + 10.96 + ], + [ + 39.865, + 10.91583333400007 + ], + [ + 39.95666666699998, + 10.9575 + ], + [ + 39.86083333300019, + 11.015000000000157 + ], + [ + 39.843333333000146, + 11.143333333000044 + ], + [ + 39.914166666000085, + 11.199166667000156 + ], + [ + 39.85, + 11.310833333000119 + ], + [ + 39.87750000000011, + 11.36750000000012 + ], + [ + 39.808333333000064, + 11.399166667000031 + ], + [ + 39.62666666700005, + 11.394166666000103 + ], + [ + 39.58166666700015, + 11.454166666000162 + ], + [ + 39.62666666700005, + 11.499166666000065 + ], + [ + 39.64083333300016, + 11.6225 + ], + [ + 39.6125, + 11.685000000000173 + ], + [ + 39.6975, + 11.774166666000099 + ], + [ + 39.61000000000013, + 11.959166666000044 + ], + [ + 39.6025, + 12.086666666000042 + ], + [ + 39.505, + 12.266666667000038 + ], + [ + 39.5125000000001, + 12.354166667000129 + ], + [ + 39.59166666700014, + 12.545833333000076 + ], + [ + 39.58416666700009, + 12.649166667000145 + ], + [ + 39.62250000000017, + 12.674166667000065 + ], + [ + 39.62416666700017, + 12.79166666600014 + ], + [ + 39.70083333300005, + 12.879166667000106 + ], + [ + 39.73000000000019, + 12.995000000000175 + ], + [ + 39.764166666999984, + 13.0183333330001 + ], + [ + 39.77916666700014, + 13.135833333000107 + ], + [ + 39.70916666700015, + 13.161666667000077 + ], + [ + 39.77166666700009, + 13.286666667000134 + ], + [ + 39.72, + 13.444166667000047 + ], + [ + 39.80666666600007, + 13.51916666600016 + ], + [ + 39.79083333400007, + 13.7575 + ], + [ + 39.84666666700008, + 13.831666666000046 + ], + [ + 39.83833333300015, + 14.011666667000043 + ], + [ + 39.87, + 14.08333333400003 + ], + [ + 39.774166667000145, + 14.12 + ], + [ + 39.80666666700017, + 14.276666667000143 + ], + [ + 39.73666666700018, + 14.343333333000032 + ], + [ + 39.6075, + 14.38000000000011 + ], + [ + 39.70750000000015, + 14.4625 + ], + [ + 39.74618819900013, + 14.61173298500006 + ], + [ + 39.719089338000174, + 14.752493638000033 + ], + [ + 39.72788932999998, + 14.874486874000013 + ], + [ + 39.70779019600019, + 14.94609095800007 + ], + [ + 39.51744824000008, + 15.08489209000004 + ], + [ + 39.444179341, + 15.219643421 + ], + [ + 39.25872034600002, + 15.200824539999985 + ], + [ + 39.11264020200019, + 15.3950121150001 + ], + [ + 39.00746123100009, + 15.607068398000024 + ], + [ + 38.88714923700013, + 15.730710522000152 + ], + [ + 38.802501235000136, + 15.981175535000148 + ], + [ + 38.64739931300005, + 16.05645106100019 + ], + [ + 38.584689266000055, + 16.11180649000005 + ], + [ + 38.555179267000085, + 16.48171295399999 + ], + [ + 38.48747930600007, + 16.635294566000027 + ], + [ + 38.55883025700018, + 16.76383658300017 + ], + [ + 38.55857829700011, + 16.820411915000022 + ], + [ + 38.452487861000066, + 16.840117373000112 + ], + [ + 38.33269824400003, + 17.05938802100019 + ], + [ + 38.34860927500017, + 17.231237321000037 + ], + [ + 38.27056822400016, + 17.463292155000033 + ], + [ + 38.25827029600015, + 17.72679723000016 + ], + [ + 38.16141298200017, + 17.792106526 + ], + [ + 37.97098156699997, + 17.895307012000103 + ], + [ + 37.744628607000095, + 17.735335540000165 + ], + [ + 37.75308946800004, + 17.596135094000033 + ], + [ + 37.85807045800016, + 17.4778124610001 + ], + [ + 37.86729859800005, + 17.234197139000116 + ], + [ + 37.90219849600004, + 17.11524351600002 + ], + [ + 38.014869547000046, + 17.06888656200016 + ], + [ + 38.15703953400015, + 16.83143210600008 + ], + [ + 38.17247061700016, + 16.539759310000022 + ], + [ + 38.24029161300018, + 16.332493452000108 + ], + [ + 38.35272948000011, + 16.22963911800008 + ], + [ + 38.33686052600018, + 16.194282070999975 + ], + [ + 38.34421145500011, + 16.01792347500009 + ], + [ + 38.402828619000104, + 15.812956271000076 + ], + [ + 38.39944853200012, + 15.75824892999998 + ], + [ + 38.447910517000025, + 15.583801072000085 + ], + [ + 38.4514505300001, + 15.316037320000078 + ], + [ + 38.5028605980001, + 15.195625078000035 + ], + [ + 38.401908452999976, + 15.08122333100016 + ], + [ + 38.213409509000144, + 15.06856431000017 + ], + [ + 38.157150510000065, + 14.961951028000158 + ], + [ + 38.214420534, + 14.923162598000147 + ], + [ + 38.36640958400011, + 14.942317426000159 + ], + [ + 38.28237949600009, + 14.812849711000183 + ], + [ + 38.27046948200018, + 14.748633939000172 + ], + [ + 38.41875859300012, + 14.644500862000143 + ], + [ + 38.39155948500013, + 14.497220262000042 + ], + [ + 38.44000000000017, + 14.425833333000128 + ], + [ + 38.52, + 14.418333333000078 + ], + [ + 38.69916666600011, + 14.47083333300003 + ], + [ + 38.89833333300004, + 14.506666666000058 + ], + [ + 39.07833333300016, + 14.638333333000105 + ], + [ + 39.17833333300007, + 14.585833333000096 + ], + [ + 39.14500000000015, + 14.520000000000152 + ], + [ + 39.00916666700016, + 14.3825 + ], + [ + 38.881666667, + 14.3875 + ], + [ + 38.8975, + 14.310000000000116 + ], + [ + 38.81750000000011, + 14.286666667000134 + ], + [ + 38.78916666700013, + 14.230833333000078 + ], + [ + 38.68000000000018, + 14.2025000000001 + ], + [ + 38.553333333000126, + 14.226666666000028 + ], + [ + 38.48, + 14.175 + ], + [ + 38.41833333400018, + 14.193333334000158 + ], + [ + 38.40583333300003, + 14.256666666000115 + ], + [ + 38.246666667000056, + 14.230833334000124 + ], + [ + 38.26583333300016, + 14.14666666700009 + ], + [ + 38.197500000000105, + 14.122500000000116 + ], + [ + 38.26583333400009, + 14.03 + ], + [ + 38.362500000000125, + 13.981666666000024 + ], + [ + 38.43333333400017, + 13.872500000000173 + ], + [ + 38.518333333000044, + 13.875 + ], + [ + 38.49583333300018, + 13.994166667 + ], + [ + 38.60500000000013, + 13.961666666000099 + ], + [ + 38.57166666600011, + 13.845833334000133 + ], + [ + 38.58833333400014, + 13.759166667000045 + ], + [ + 38.755000000000166, + 13.886666666999986 + ], + [ + 38.79250000000019, + 13.852500000000191 + ], + [ + 38.87666666700005, + 13.974166667000077 + ], + [ + 38.9075, + 14.061666667000111 + ], + [ + 38.97, + 14.035833333000141 + ], + [ + 38.9075, + 13.939166667000165 + ], + [ + 38.9875, + 13.90583333300009 + ], + [ + 39.070000000000164, + 13.953333333000103 + ], + [ + 39.126666667000165, + 14.073333333000164 + ], + [ + 39.2, + 14.029166667000084 + ], + [ + 39.3075, + 14.00500000000011 + ], + [ + 39.28583333400019, + 13.863333333000128 + ], + [ + 39.20833333300004, + 13.77166666700009 + ], + [ + 39.0875, + 13.701666667000097 + ], + [ + 39.04250000000013, + 13.768333333000157 + ], + [ + 39.0025, + 13.804166667000118 + ], + [ + 38.881666667, + 13.716666667000027 + ], + [ + 38.9725, + 13.628333334000047 + ], + [ + 38.9616666660001, + 13.585 + ], + [ + 39.09333333400019, + 13.511666667000156 + ], + [ + 39.066666667000106, + 13.432500000000118 + ], + [ + 39.14666666700009, + 13.275 + ], + [ + 39.08916666700014, + 13.243333333000123 + ], + [ + 39.091666667000084, + 13.171666665999965 + ], + [ + 39.21916666600009, + 13.175833333000014 + ], + [ + 39.33750000000015, + 13.135833333000107 + ], + [ + 39.23333333300013, + 13.047500000000127 + ], + [ + 39.2975, + 12.945833333000053 + ], + [ + 39.21000000000015, + 12.916666666000026 + ], + [ + 39.15000000000015, + 12.760000000000161 + ], + [ + 39.1475, + 12.680833333000123 + ], + [ + 39.2025000000001, + 12.649166667000145 + ], + [ + 39.225000000000136, + 12.494166667000115 + ], + [ + 39.138333334000095, + 12.5375 + ], + [ + 39.16333333300014, + 12.614166667 + ], + [ + 39.09666666700002, + 12.66166666700019 + ], + [ + 38.991666666000185, + 12.786666665999974 + ], + [ + 38.913333333000026, + 12.8 + ], + [ + 38.9, + 12.9 + ], + [ + 38.80333333300007, + 12.955833332999987 + ], + [ + 38.76833333300016, + 12.89583333400003 + ], + [ + 38.91666666700013, + 12.76833333400009 + ], + [ + 38.871666666000124, + 12.700833334000151 + ], + [ + 38.755000000000166, + 12.634166667000159 + ], + [ + 38.65, + 12.610000000000184 + ], + [ + 38.71916666700014, + 12.5225 + ], + [ + 38.525833333000094, + 12.525 + ], + [ + 38.554166667000175, + 12.325000000000102 + ], + [ + 38.65333333300009, + 12.325000000000102 + ], + [ + 38.63166666700005, + 12.249166666000065 + ], + [ + 38.518333333000044, + 12.203333334000149 + ], + [ + 38.58083333300016, + 12.119166667000115 + ], + [ + 38.68083333400017, + 12.130833333000169 + ], + [ + 38.73833333300007, + 12.043333334000181 + ], + [ + 38.72166666700019, + 11.991666666000071 + ], + [ + 38.5925, + 11.9425 + ], + [ + 38.52333333300004, + 12.05 + ], + [ + 38.370833334, + 12.072500000000105 + ], + [ + 38.390833333000046, + 12.163333332999969 + ], + [ + 38.351666666000085, + 12.293333334000124 + ], + [ + 38.365833333000126, + 12.3875 + ], + [ + 38.23666666700012, + 12.315000000000111 + ], + [ + 38.15166666700014, + 12.36 + ], + [ + 38.21833333300003, + 12.444166667000047 + ], + [ + 37.96, + 12.422500000000127 + ], + [ + 37.8975, + 12.343333334000022 + ], + [ + 37.840000000000146, + 12.35750000000013 + ], + [ + 37.81416666700011, + 12.468333332999975 + ], + [ + 37.88666666700004, + 12.535 + ], + [ + 37.959166666000044, + 12.670833334000065 + ], + [ + 37.913333333000026, + 12.7775 + ], + [ + 38.058333333000064, + 12.923333334000063 + ], + [ + 38.24000000000012, + 12.87 + ], + [ + 38.31583333400016, + 12.8308333330001 + ], + [ + 38.41916666700013, + 12.885 + ], + [ + 38.40083333400014, + 12.933333333000121 + ], + [ + 38.42666666700018, + 13.042500000000132 + ], + [ + 38.54333333400007, + 13.064166667000052 + ], + [ + 38.52, + 13.141666667000152 + ], + [ + 38.6275, + 13.193333333000055 + ], + [ + 38.60583333300008, + 13.284166666000147 + ], + [ + 38.5175, + 13.482500000000186 + ], + [ + 38.50750000000011, + 13.56666666700005 + ], + [ + 38.41083333300003, + 13.620833334000167 + ], + [ + 38.33166666600016, + 13.600833333000082 + ], + [ + 38.310000000000116, + 13.515833333000103 + ], + [ + 38.21583333300009, + 13.504166666000174 + ], + [ + 38.186666667000054, + 13.425 + ], + [ + 38.09, + 13.417500000000132 + ], + [ + 38.023333333000096, + 13.280833333000146 + ], + [ + 37.86166666600019, + 13.238333333000128 + ], + [ + 37.77500000000015, + 13.19 + ], + [ + 37.64583333300004, + 13.293333334000124 + ], + [ + 37.585, + 13.284166667000079 + ], + [ + 37.65083333400008, + 13.28 + ], + [ + 37.70333333400009, + 13.123333333000062 + ], + [ + 37.70000000000016, + 12.98583333300013 + ], + [ + 37.6075, + 12.928333333000182 + ], + [ + 37.55083333300007, + 12.812500000000114 + ], + [ + 37.368333333000066, + 12.761666667000156 + ], + [ + 37.366666667000175, + 12.714166667000143 + ], + [ + 37.27250000000015, + 12.6975 + ], + [ + 37.19833333399998, + 12.575 + ], + [ + 37.178333333000126, + 12.696666666 + ], + [ + 37.11833333300012, + 12.711666667000088 + ], + [ + 37.0808333330001, + 12.603333333000023 + ], + [ + 37.041666667000015, + 12.6 + ], + [ + 36.9583333330001, + 12.451666666000051 + ], + [ + 37.01833333300016, + 12.323333333000164 + ], + [ + 36.93333333300018, + 12.250000000000114 + ], + [ + 36.906666667000025, + 12.134166667000102 + ], + [ + 36.810833333000176, + 12.1525 + ], + [ + 36.72916666600008, + 11.999166667000054 + ], + [ + 36.730833334000124, + 11.935833333000062 + ], + [ + 36.825, + 11.84 + ], + [ + 36.941666667000106, + 11.866666667000061 + ], + [ + 36.90083333300015, + 11.704166666000106 + ], + [ + 36.8425, + 11.613333333000014 + ], + [ + 36.73166666700007, + 11.65 + ], + [ + 36.68916666700005, + 11.57666666700004 + ], + [ + 36.78916666700019, + 11.476666667000131 + ], + [ + 36.76083333300011, + 11.369166667000115 + ], + [ + 36.7016666670001, + 11.3375 + ], + [ + 36.630000000000166, + 11.249166666000121 + ], + [ + 36.5725, + 11.226666666000085 + ], + [ + 36.57083333300005, + 11.12 + ], + [ + 36.60166666700019, + 11.081666666000046 + ], + [ + 36.62500000000017, + 10.905833332999975 + ], + [ + 36.49166666700006, + 10.848333333000028 + ], + [ + 36.47666666700013, + 10.742500000000177 + ], + [ + 36.53416666700008, + 10.711666667000088 + ], + [ + 36.62833333300017, + 10.75 + ], + [ + 36.65833333300009, + 10.643333333000157 + ], + [ + 36.83083333400003, + 10.648333333000153 + ], + [ + 36.80333333400006, + 10.551666666000017 + ], + [ + 36.83333333300004, + 10.48416666700001 + ], + [ + 36.93333333400011, + 10.475 + ], + [ + 37.005000000000166, + 10.43750000000017 + ], + [ + 37.12083333300018, + 10.55166666700012 + ], + [ + 37.11083333300019, + 10.626666667000109 + ], + [ + 37.3875, + 10.640000000000157 + ], + [ + 37.1991666670001, + 10.455 + ], + [ + 37.186666667000054, + 10.352500000000191 + ], + [ + 37.2375, + 10.339166666000096 + ], + [ + 37.30000000000018, + 10.194166667000161 + ], + [ + 37.36333333300007, + 10.1675 + ], + [ + 37.43666666600012, + 10.21833333300009 + ], + [ + 37.51583333300016, + 10.15 + ], + [ + 37.585833334000085, + 10.164166667000075 + ], + [ + 37.662500000000136, + 10.0175 + ], + [ + 37.70916666699998, + 9.9725 + ], + [ + 38.05583333300012, + 10.108333333000132 + ], + [ + 38.14166666600005, + 10.089166666000153 + ], + [ + 38.32333333300011, + 10.23250000000013 + ], + [ + 38.38583333300005, + 10.213333333000094 + ], + [ + 38.38833333300016, + 10.30833333400011 + ], + [ + 38.4575, + 10.41166666600003 + ], + [ + 38.44166666700016, + 10.524166667000088 + ], + [ + 38.35500000000019, + 10.53 + ], + [ + 38.34083333299998, + 10.72416666700019 + ], + [ + 38.44166666700016, + 10.68416666600018 + ], + [ + 38.475833333000026, + 10.705000000000155 + ], + [ + 38.43583333300012, + 10.946666667000102 + ], + [ + 38.38833333300016, + 11.031666667000081 + ], + [ + 38.306666667000115, + 11.0808333330001 + ], + [ + 38.2075, + 11.064166666000176 + ], + [ + 38.05166666700018, + 11.075833333000105 + ], + [ + 38.03250000000014, + 11.120833333 + ], + [ + 37.892500000000155, + 11.185833334000108 + ], + [ + 37.7691666660001, + 11.103333333000137 + ], + [ + 37.75416666700005, + 11.156666667000138 + ], + [ + 37.80833333400017, + 11.217500000000143 + ], + [ + 37.69916666700004, + 11.2725 + ], + [ + 37.62916666600012, + 11.433333334000167 + ], + [ + 37.496666667000056, + 11.439166666 + ], + [ + 37.291666667000186, + 11.645 + ], + [ + 37.277500000000146, + 11.792500000000189 + ], + [ + 37.079166666000106, + 11.79916666700018 + ], + [ + 37.005000000000166, + 11.875833334000106 + ], + [ + 37.0025, + 12.0175 + ], + [ + 37.025, + 12.163333334000072 + ], + [ + 37.07416666600017, + 12.246666667000113 + ], + [ + 37.17000000000013, + 12.326666667000097 + ], + [ + 37.182500000000175, + 12.196666667000045 + ], + [ + 37.270833332999985, + 12.26250000000016 + ], + [ + 37.2975, + 12.370833334000054 + ], + [ + 37.338333333000094, + 12.3875 + ], + [ + 37.451666667000154, + 12.348333333000085 + ], + [ + 37.56083333300006, + 12.2425 + ], + [ + 37.64166666700004, + 12.11416666700012 + ], + [ + 37.75416666700005, + 11.984166665999965 + ], + [ + 37.67750000000012, + 11.921666667000125 + ], + [ + 37.63000000000011, + 11.803333333000126 + ], + [ + 37.55500000000012, + 11.8375 + ], + [ + 37.47083333300009, + 11.81250000000017 + ], + [ + 37.41083333300003, + 11.601666667000188 + ], + [ + 37.51666666699998, + 11.569166666000058 + ], + [ + 37.54833333300019, + 11.516666667000038 + ], + [ + 37.61583333300007, + 11.53333333300003 + ], + [ + 37.75, + 11.305000000000177 + ], + [ + 37.885, + 11.225 + ], + [ + 37.97166666700019, + 11.305833333000123 + ], + [ + 38.03916666700013, + 11.301666666000074 + ], + [ + 38.0675, + 11.381666667000161 + ], + [ + 38.04833333300007, + 11.2425 + ], + [ + 38.13583333300011, + 11.194166667000161 + ], + [ + 38.16833333400007, + 11.346666666000147 + ], + [ + 38.21333333400014, + 11.24333333300018 + ], + [ + 38.19166666700005, + 11.18000000000012 + ], + [ + 38.299166667000065, + 11.189166667000165 + ], + [ + 38.41166666700002, + 11.125 + ], + [ + 38.484166667000125, + 11.138333333000048 + ], + [ + 38.45416666700004, + 11.223333333000028 + ], + [ + 38.575, + 11.315833334 + ], + [ + 38.510833333000164, + 11.376666667000165 + ], + [ + 38.585, + 11.493333333000123 + ], + [ + 38.63166666700005, + 11.406666667000081 + ], + [ + 38.6925, + 11.526666666999972 + ], + [ + 38.63833333400004, + 11.5375 + ], + [ + 38.61083333300007, + 11.64666666700009 + ], + [ + 38.70666666600016, + 11.6425 + ], + [ + 38.74666666600007, + 11.543333334000124 + ], + [ + 38.72333333400019, + 11.461666667000145 + ], + [ + 38.75833333300017, + 11.415 + ], + [ + 38.94000000000011, + 11.40083333399997 + ], + [ + 38.97916666600014, + 11.343333334000022 + ], + [ + 38.87, + 11.320000000000164 + ], + [ + 38.775, + 11.360833333000187 + ], + [ + 38.69500000000011, + 11.323333334000097 + ], + [ + 38.737500000000125, + 11.23583333300013 + ], + [ + 38.70416666700015, + 11.17416666700018 + ], + [ + 38.60000000000019, + 11.166666667000129 + ], + [ + 38.52, + 11.090000000000146 + ], + [ + 38.5975, + 11.048333334000176 + ], + [ + 38.59, + 10.979166666000026 + ], + [ + 38.63333333300011, + 10.82 + ], + [ + 38.575, + 10.708333332999985 + ], + [ + 38.57, + 10.5625 + ], + [ + 38.662500000000136, + 10.411666667000077 + ], + [ + 38.73833333300007, + 10.495833333000064 + ], + [ + 38.89833333400014, + 10.461666666999974 + ], + [ + 39.0025, + 10.396666667000147 + ], + [ + 39.03416666700008, + 10.245833333000121 + ], + [ + 39.00083333400016, + 10.163333333000026 + ], + [ + 38.86833333300012, + 9.991666667 + ], + [ + 38.95916666700009, + 9.954166666000106 + ], + [ + 39.066666666, + 10.01 + ], + [ + 39.08, + 9.891666667000095 + ], + [ + 39.013333333000105, + 9.889166667000154 + ], + [ + 38.945, + 9.829166667000152 + ], + [ + 38.88333333300005, + 9.856666667000127 + ], + [ + 38.79583333300019, + 9.78 + ], + [ + 38.68000000000018, + 9.9675 + ], + [ + 38.586666666999974, + 10.030000000000143 + ], + [ + 38.46333333300015, + 9.988333333000071 + ], + [ + 38.380000000000166, + 10.008333334000099 + ], + [ + 38.34916666700008, + 10.075833333000162 + ], + [ + 38.219166667000025, + 10.013333333000048 + ], + [ + 38.125, + 9.863333334000117 + ], + [ + 38.2025000000001, + 9.821666667000045 + ], + [ + 38.165000000000134, + 9.726666666000028 + ], + [ + 38.23166666700013, + 9.721666667000136 + ], + [ + 38.41833333400018, + 9.635833333000107 + ], + [ + 38.63666666700004, + 9.4975 + ], + [ + 38.57583333300016, + 9.421666666000021 + ], + [ + 38.510833333000164, + 9.564166667000052 + ], + [ + 38.36166666700018, + 9.532500000000141 + ], + [ + 38.338333334000026, + 9.635000000000161 + ], + [ + 38.23500000000013, + 9.66833333400001 + ], + [ + 38.16000000000014, + 9.615833333000126 + ], + [ + 38.16333333400007, + 9.4925 + ], + [ + 38.113333334000174, + 9.431666667000059 + ], + [ + 38.059166667000056, + 9.5125 + ], + [ + 38.0675, + 9.67 + ], + [ + 38.00916666699999, + 9.730833333000078 + ], + [ + 37.89, + 9.69 + ], + [ + 37.88, + 9.65083333399997 + ], + [ + 37.70916666699998, + 9.770833333000155 + ], + [ + 37.670000000000186, + 9.752500000000168 + ], + [ + 37.65583333400008, + 9.655833333000032 + ], + [ + 37.73583333300019, + 9.511666667000043 + ], + [ + 37.889166666, + 9.543333333000078 + ], + [ + 37.96666666700003, + 9.45583333400009 + ], + [ + 37.93833333300012, + 9.415000000000134 + ], + [ + 37.83333333300004, + 9.403333334000138 + ], + [ + 37.80583333400011, + 9.295 + ], + [ + 37.86666666700006, + 9.201666666000165 + ], + [ + 37.76083333300011, + 9.138333334000038 + ], + [ + 37.69416666700005, + 9.193333334000044 + ], + [ + 37.5375, + 9.2075 + ], + [ + 37.41416666700013, + 9.2525 + ], + [ + 37.47583333300008, + 9.358333334000065 + ], + [ + 37.57750000000016, + 9.378333333000057 + ], + [ + 37.50583333300017, + 9.534166667000079 + ], + [ + 37.56333333300012, + 9.532500000000141 + ], + [ + 37.57000000000011, + 9.71 + ], + [ + 37.60166666700013, + 9.75 + ], + [ + 37.595, + 9.8525 + ], + [ + 37.505, + 9.831666667000036 + ], + [ + 37.46333333299998, + 9.605 + ], + [ + 37.35, + 9.686666666000121 + ], + [ + 37.32333333400004, + 9.77333333300004 + ], + [ + 37.228333334000126, + 9.844166665999978 + ], + [ + 37.215, + 9.964166666000096 + ], + [ + 37.09666666700008, + 10.000833333000116 + ], + [ + 37.03750000000019, + 10.119166667000172 + ], + [ + 36.91500000000019, + 10.155833333000146 + ], + [ + 36.78833333400007, + 10.001666666000062 + ], + [ + 36.67583333300013, + 10.125833333 + ], + [ + 36.635000000000105, + 10.054166666000071 + ], + [ + 36.574166667000156, + 10.025000000000148 + ], + [ + 36.585, + 9.97416666600003 + ], + [ + 36.69000000000017, + 10.01 + ], + [ + 36.675, + 9.8825 + ], + [ + 36.698333333, + 9.810000000000116 + ], + [ + 36.65583333300003, + 9.738333333000128 + ], + [ + 36.68500000000017, + 9.73166666700007 + ], + [ + 36.78916666700019, + 9.89416666700015 + ], + [ + 36.90833333300003, + 9.904166666000037 + ], + [ + 36.955833333000044, + 9.870833333000064 + ], + [ + 36.981666667000184, + 9.765 + ], + [ + 36.88750000000016, + 9.588333334000026 + ], + [ + 36.9325, + 9.551666666000074 + ], + [ + 36.97250000000014, + 9.441666666000117 + ], + [ + 36.90750000000014, + 9.243333334000113 + ], + [ + 36.791666666000026, + 9.297500000000127 + ], + [ + 36.75666666700016, + 9.23250000000013 + ], + [ + 36.688333334000106, + 9.229166667000129 + ], + [ + 36.790000000000134, + 9.249166666000121 + ], + [ + 36.84333333300003, + 9.11333333400006 + ], + [ + 36.76416666700004, + 9.059166666000067 + ], + [ + 36.88333333400004, + 9.0275 + ], + [ + 37.06583333400005, + 9.170000000000186 + ], + [ + 37.16166666600003, + 9.115833333000069 + ], + [ + 37.21583333300015, + 9.025833333000094 + ], + [ + 37.26416666600005, + 9.029166667000027 + ], + [ + 37.395833334000145, + 8.947500000000105 + ], + [ + 37.40666666600015, + 8.83333333400003 + ], + [ + 37.3025, + 8.78333333300003 + ], + [ + 37.23500000000013, + 8.692500000000166 + ], + [ + 37.298333333000016, + 8.618333333000066 + ], + [ + 37.49833333300012, + 8.51083333300005 + ], + [ + 37.61166666700012, + 8.480833334000067 + ], + [ + 37.68666666700011, + 8.53 + ], + [ + 37.80583333300018, + 8.495000000000175 + ], + [ + 37.85500000000013, + 8.399166667000088 + ], + [ + 37.82666666600005, + 8.24666666700017 + ], + [ + 37.698333333000164, + 8.20333333300016 + ], + [ + 37.65416666700014, + 8.09 + ], + [ + 37.686666666000065, + 8.055833333000066 + ], + [ + 37.73166666700001, + 7.916666667000072 + ], + [ + 37.66750000000013, + 7.778333333000091 + ], + [ + 37.619166666000126, + 7.750000000000114 + ], + [ + 37.64750000000015, + 7.62 + ], + [ + 37.558333334000054, + 7.571666666000056 + ], + [ + 37.5575, + 7.430833333000066 + ], + [ + 37.52333333300004, + 7.401666667000029 + ], + [ + 37.50250000000017, + 7.291666667000072 + ], + [ + 37.525, + 7.245 + ], + [ + 37.639166667000154, + 7.255 + ], + [ + 37.75, + 7.209166666000101 + ], + [ + 37.7708333330001, + 7.11833333300018 + ], + [ + 37.705833333000044, + 7.035 + ], + [ + 37.60833333300019, + 7.105833333000135 + ], + [ + 37.638333333000105, + 6.980000000000132 + ], + [ + 37.574166667000156, + 6.838333333000151 + ], + [ + 37.64583333300004, + 6.797500000000127 + ], + [ + 37.79083333300002, + 6.791666666000083 + ], + [ + 37.968333334000135, + 6.948333333000051 + ], + [ + 37.94583333300005, + 7.013333333000105 + ], + [ + 37.999166667000054, + 7.115833333000126 + ], + [ + 38.035, + 7.3241666670001 + ], + [ + 38.11333333300007, + 7.33416666700009 + ], + [ + 38.14166666600005, + 7.230833333000021 + ], + [ + 38.23083333400018, + 7.030833333000146 + ], + [ + 38.218333334000135, + 6.940833333000171 + ], + [ + 38.24083333400017, + 6.792500000000132 + ], + [ + 38.2875, + 6.759166667000159 + ], + [ + 38.35083333300014, + 6.834166666999977 + ], + [ + 38.40416666700014, + 6.834166666999977 + ], + [ + 38.46916666600009, + 6.7575 + ], + [ + 38.34583333299997, + 6.664166666000142 + ], + [ + 38.29583333300013, + 6.547500000000184 + ], + [ + 38.338333334000026, + 6.531666667000081 + ], + [ + 38.345833334000076, + 6.386666667000043 + ], + [ + 38.289166667000075, + 6.280833334000022 + ], + [ + 38.22083333300009, + 6.322500000000161 + ], + [ + 38.17000000000013, + 6.241666666000128 + ], + [ + 38.06916666700005, + 6.172500000000127 + ], + [ + 38.0975, + 6.017500000000155 + ], + [ + 38.158333333000144, + 5.995833333000064 + ], + [ + 38.190833334000104, + 5.819166666000172 + ], + [ + 38.26666666700004, + 5.860833333000187 + ], + [ + 38.309166666000124, + 5.960833333000153 + ], + [ + 38.35833333400012, + 5.9875 + ], + [ + 38.3875, + 6.122500000000116 + ], + [ + 38.483333334, + 6.15083333400014 + ], + [ + 38.50166666600012, + 6.2225 + ], + [ + 38.596666667000136, + 6.338333333000037 + ], + [ + 38.62666666700005, + 6.4425 + ], + [ + 38.75000000000017, + 6.440000000000168 + ], + [ + 38.776666667000086, + 6.4425 + ] + ], + [ + [ + 37.13416666600017, + 9.292500000000189 + ], + [ + 37.090000000000146, + 9.274166666999974 + ], + [ + 37.05, + 9.414166666000142 + ], + [ + 36.93833333400005, + 9.535833332999971 + ], + [ + 36.93833333300017, + 9.5825 + ], + [ + 37.0175, + 9.661666667000077 + ], + [ + 36.999166667000054, + 9.837500000000148 + ], + [ + 37.12250000000017, + 9.81666666700005 + ], + [ + 37.161666667000134, + 9.62916666700005 + ], + [ + 37.12583333300017, + 9.616666667000175 + ], + [ + 37.0825, + 9.4491666670001 + ], + [ + 37.090000000000146, + 9.344166667000025 + ], + [ + 37.13416666600017, + 9.292500000000189 + ] + ] + ], + [ + [ + [ + 46.96376757700011, + -19.686998579999965 + ], + [ + 47.08080258299998, + -19.663905933999843 + ], + [ + 47.12837960600007, + -19.58635723599997 + ], + [ + 47.12810149500007, + -19.47412371999991 + ], + [ + 47.18613460700004, + -19.332983031999902 + ], + [ + 47.114437484000064, + -19.279118071999903 + ], + [ + 47.050376610000114, + -19.355276714999945 + ], + [ + 47.00512355200004, + -19.55006828899991 + ], + [ + 46.93665346200015, + -19.629998788999842 + ], + [ + 46.96376757700011, + -19.686998579999965 + ] + ] + ], + [ + [ + [ + 49.09816356700003, + -14.214314851999916 + ], + [ + 49.13657347100019, + -14.278900433999922 + ], + [ + 49.19734947700016, + -14.269381105999969 + ], + [ + 49.16643148600019, + -14.140820480999878 + ], + [ + 49.09816356700003, + -14.214314851999916 + ] + ] + ], + [ + [ + [ + 48.92911952300017, + -14.019167717999949 + ], + [ + 48.927627544000075, + -14.17681304399997 + ], + [ + 49.01352662900007, + -14.10613080099995 + ], + [ + 49.03593849700013, + -13.970108773999925 + ], + [ + 49.02777050000009, + -13.870953372999963 + ], + [ + 48.97737162500016, + -13.87645693099995 + ], + [ + 48.92911952300017, + -14.019167717999949 + ] + ] + ], + [ + [ + [ + 40.714166667000086, + 8.815000000000111 + ], + [ + 40.64416666700009, + 8.805833333000066 + ], + [ + 40.5875, + 8.71 + ], + [ + 40.636666666999986, + 8.666666667000072 + ], + [ + 40.73666666700012, + 8.730833334000181 + ], + [ + 40.714166667000086, + 8.815000000000111 + ] + ] + ], + [ + [ + [ + 43.15583333400008, + 9.281666667000081 + ], + [ + 43.15750000000014, + 9.425000000000125 + ], + [ + 43.075833334000095, + 9.45583333400009 + ], + [ + 43.025833334000026, + 9.435000000000116 + ], + [ + 43.08, + 9.3275000000001 + ], + [ + 43.15583333400008, + 9.281666667000081 + ] + ] + ], + [ + [ + [ + 39.9125, + 10.84166666699997 + ], + [ + 39.88, + 10.785000000000139 + ], + [ + 39.92916666600007, + 10.705000000000155 + ], + [ + 39.9875, + 10.720000000000141 + ], + [ + 39.9125, + 10.84166666699997 + ] + ] + ], + [ + [ + [ + 60.36196153700013, + 26.501434152000115 + ], + [ + 60.31805763100016, + 26.558592529000123 + ], + [ + 60.181976594000105, + 26.567539205000173 + ], + [ + 59.83039850300008, + 26.44555870900001 + ], + [ + 59.888637475999985, + 26.381703526000138 + ], + [ + 60.269393474000196, + 26.387396180000053 + ], + [ + 60.406814609000094, + 26.414360092000152 + ], + [ + 60.36196153700013, + 26.501434152000115 + ] + ] + ], + [ + [ + [ + 58.42726154000002, + 26.612919164000175 + ], + [ + 58.582023492000076, + 26.5858853470001 + ], + [ + 58.84206047100014, + 26.514374302000192 + ], + [ + 58.87637363600015, + 26.586875082000176 + ], + [ + 58.639747480000096, + 26.726828055000112 + ], + [ + 58.47248459000008, + 26.717353319000097 + ], + [ + 58.30012852100015, + 26.927644038000096 + ], + [ + 58.17166160500011, + 26.941529499000126 + ], + [ + 57.830501550000065, + 26.858191085000158 + ], + [ + 57.73013647300019, + 26.80059383200006 + ], + [ + 57.791137618, + 26.616095905 + ], + [ + 57.885890507000056, + 26.535215401000187 + ], + [ + 57.97450247900008, + 26.596344956000166 + ], + [ + 58.01325252000004, + 26.661278051000068 + ], + [ + 58.11069851500014, + 26.664191601000084 + ], + [ + 58.24208853500011, + 26.612465200000088 + ], + [ + 58.42726154000002, + 26.612919164000175 + ] + ] + ], + [ + [ + [ + 61.01771151800017, + 26.873178431000156 + ], + [ + 60.964351484000076, + 26.811827258000108 + ], + [ + 61.05295960000018, + 26.746780002000094 + ], + [ + 61.21805560000007, + 26.74078526500017 + ], + [ + 61.46157855400003, + 26.63224313900008 + ], + [ + 61.74997352300005, + 26.672452302000124 + ], + [ + 61.62244454300003, + 26.76310040500016 + ], + [ + 61.2789766140001, + 26.88773293500003 + ], + [ + 61.115844493000054, + 26.89983439200006 + ], + [ + 61.01771151800017, + 26.873178431000156 + ] + ] + ], + [ + [ + [ + 60.941459501000054, + 27.548366046000126 + ], + [ + 61.080959515000075, + 27.481565966000062 + ], + [ + 61.10253554000013, + 27.425053498000068 + ], + [ + 61.063911562000044, + 27.28543948900011 + ], + [ + 61.211322585000175, + 27.13685600600013 + ], + [ + 61.401607545, + 27.077818406000176 + ], + [ + 61.50472255600005, + 27.07221460100004 + ], + [ + 61.656726527000046, + 27.129272394999987 + ], + [ + 61.57712962699998, + 27.230744721000065 + ], + [ + 61.23084655200006, + 27.520254484000134 + ], + [ + 61.01060852500018, + 27.651529672000038 + ], + [ + 60.91758348200011, + 27.646398941000143 + ], + [ + 60.941459501000054, + 27.548366046000126 + ] + ] + ], + [ + [ + [ + 60.64589649500016, + 29.83896114800018 + ], + [ + 60.54867563800019, + 29.885249371000157 + ], + [ + 60.45380355900005, + 29.87245271900008 + ], + [ + 60.433490519000145, + 29.80563336000006 + ], + [ + 60.4690165450001, + 29.7094298990001 + ], + [ + 60.40124852300016, + 29.688587626000185 + ], + [ + 60.2431485620001, + 29.77603635700018 + ], + [ + 60.151035637, + 29.76140792400014 + ], + [ + 60.115199480000115, + 29.827485485000068 + ], + [ + 60.12195261200003, + 30.07983508500007 + ], + [ + 60.095996540000044, + 30.163953854000056 + ], + [ + 60.01991651999998, + 30.195947746000115 + ], + [ + 59.922595583000145, + 30.096542565000107 + ], + [ + 59.90025747600009, + 29.976042984000173 + ], + [ + 59.91960559000012, + 29.75704514400013 + ], + [ + 59.797401633, + 29.779048478000107 + ], + [ + 59.75018352200016, + 29.75037046700004 + ], + [ + 59.791938476000155, + 29.54545405600004 + ], + [ + 59.862495493000154, + 29.33248230200013 + ], + [ + 59.932109546000106, + 29.312212345000148 + ], + [ + 60.014526621000186, + 29.23897999200011 + ], + [ + 60.16372650900007, + 29.26208605000005 + ], + [ + 60.219436493000046, + 29.226254419000156 + ], + [ + 60.335449577000134, + 28.93238925200012 + ], + [ + 60.38051253200018, + 28.880483311000035 + ], + [ + 60.35978660000018, + 28.78460104400017 + ], + [ + 60.29155757300009, + 28.74651250300002 + ], + [ + 60.21909752900007, + 28.772386432000076 + ], + [ + 60.03167348000005, + 28.96223083900003 + ], + [ + 59.971870612000146, + 28.960303002000103 + ], + [ + 59.978172630000074, + 28.81141877600004 + ], + [ + 60.01771157600018, + 28.715501808000056 + ], + [ + 60.131114535, + 28.51905480800019 + ], + [ + 60.131763630000194, + 28.398549694000053 + ], + [ + 60.17648661500016, + 28.332938168000055 + ], + [ + 60.26100553600003, + 28.396404598000174 + ], + [ + 60.24105057200006, + 28.498891469000114 + ], + [ + 60.33721162100005, + 28.54870562200017 + ], + [ + 60.39372660300006, + 28.532061174000034 + ], + [ + 60.50612658300014, + 28.3700837450001 + ], + [ + 60.59489060300018, + 28.436424162000094 + ], + [ + 60.67765049700006, + 28.459261998000045 + ], + [ + 60.731716623000125, + 28.39472184700014 + ], + [ + 60.792613496, + 28.23468331900017 + ], + [ + 60.948512537000056, + 28.03042790600017 + ], + [ + 61.05786854500019, + 27.96392571800004 + ], + [ + 61.147823633000144, + 27.861088986000027 + ], + [ + 61.53952053000012, + 27.590226276000124 + ], + [ + 61.67965656400003, + 27.469553692000034 + ], + [ + 61.73082355700012, + 27.519585273000132 + ], + [ + 61.733928549000154, + 27.63141377500017 + ], + [ + 61.946048534, + 27.387054978000037 + ], + [ + 62.07266958700018, + 27.308425350000107 + ], + [ + 62.13407859500006, + 27.300066749000166 + ], + [ + 62.294811479000145, + 27.188422816000184 + ], + [ + 62.42437759800009, + 27.054101644000184 + ], + [ + 62.57051859400019, + 27.039585026000054 + ], + [ + 62.697723530000076, + 26.938292575000048 + ], + [ + 62.792636514000094, + 26.91962037700017 + ], + [ + 62.99514748600012, + 26.979736896000134 + ], + [ + 63.27360554100005, + 27.172748489000128 + ], + [ + 63.37873053300018, + 27.20695771800007 + ], + [ + 63.45413564300014, + 27.19902122900004 + ], + [ + 63.60891352000016, + 27.22680103600004 + ], + [ + 63.77559654900017, + 27.322043763000067 + ], + [ + 63.79941154800002, + 27.413320007000095 + ], + [ + 63.7240066060001, + 27.47284727700014 + ], + [ + 63.47794762400008, + 27.44506847700012 + ], + [ + 63.331104559000096, + 27.44109880800005 + ], + [ + 63.251731624, + 27.409351176000087 + ], + [ + 63.10092157200012, + 27.43316298900004 + ], + [ + 62.94614453300005, + 27.369665882000106 + ], + [ + 62.854865607000136, + 27.365697051000097 + ], + [ + 62.60277953400015, + 27.21704651200008 + ], + [ + 62.479373611000085, + 27.201226005000024 + ], + [ + 62.312087588000054, + 27.284314470000027 + ], + [ + 62.276313625000114, + 27.428124460000163 + ], + [ + 62.12162359000013, + 27.682446322000146 + ], + [ + 62.068996637000055, + 27.745756848000156 + ], + [ + 61.84205660900011, + 27.840516778000165 + ], + [ + 61.72031063800006, + 27.81045491500015 + ], + [ + 61.66661063400011, + 27.83479495600011 + ], + [ + 61.60138350200009, + 27.97766701000012 + ], + [ + 61.58034861300007, + 28.271891761 + ], + [ + 61.53216960100002, + 28.339211016000036 + ], + [ + 61.46631952600012, + 28.249473690000116 + ], + [ + 61.45716062000008, + 27.965090468000085 + ], + [ + 61.41833162100016, + 27.924383084000112 + ], + [ + 61.33527752200018, + 28.11215045600005 + ], + [ + 61.3019296170001, + 28.295711789000052 + ], + [ + 61.315528585000095, + 28.500255372000083 + ], + [ + 61.294013580000126, + 28.621763464000026 + ], + [ + 61.12898647900016, + 28.94746444000009 + ], + [ + 61.051471477000064, + 29.035197150000045 + ], + [ + 60.96736964000007, + 29.4491897420001 + ], + [ + 60.83277555300009, + 29.27349784300003 + ], + [ + 60.78468656300009, + 29.314079163000088 + ], + [ + 60.752433502000144, + 29.438942195000152 + ], + [ + 60.758975578, + 29.63380266900009 + ], + [ + 60.71351951100013, + 29.778729295000062 + ], + [ + 60.64589649500016, + 29.83896114800018 + ] + ] + ], + [ + [ + [ + 66.2672575840001, + 28.9164156920001 + ], + [ + 66.36876662200001, + 29.08242934300017 + ], + [ + 66.36395256000014, + 29.167176922000124 + ], + [ + 66.43750761600012, + 29.27350186600006 + ], + [ + 66.37325261700005, + 29.369649001000028 + ], + [ + 66.31807756600017, + 29.11326787300004 + ], + [ + 66.27039358900015, + 29.103248314000098 + ], + [ + 66.19270357200003, + 28.958414223000034 + ], + [ + 66.18855251900004, + 28.839678865000167 + ], + [ + 66.11675263300015, + 28.76732275600017 + ], + [ + 66.158203491, + 28.69402452200012 + ], + [ + 66.21803251000006, + 28.726944279000122 + ], + [ + 66.2672575840001, + 28.9164156920001 + ] + ] + ], + [ + [ + [ + 56.75713749100015, + 28.929614172000186 + ], + [ + 56.87610251400014, + 29.1045092870001 + ], + [ + 57.05245960100018, + 29.136613150000073 + ], + [ + 57.26602563300003, + 28.985097006000046 + ], + [ + 57.46860148000019, + 28.892300789000103 + ], + [ + 57.64056360000012, + 28.85281632500005 + ], + [ + 57.82831554900008, + 28.778766234000045 + ], + [ + 57.89689259300013, + 28.658759173000135 + ], + [ + 58.02265550700008, + 28.549684461000084 + ], + [ + 58.13540652100011, + 28.499530505000052 + ], + [ + 58.28861648000003, + 28.400092467000036 + ], + [ + 58.509239571000194, + 28.287205330000063 + ], + [ + 58.63796951100011, + 28.278082467000104 + ], + [ + 58.580234626, + 28.43355403100003 + ], + [ + 58.334266504000084, + 28.621151417000135 + ], + [ + 58.352672493, + 28.65343415000018 + ], + [ + 58.20146547400009, + 28.766107883000075 + ], + [ + 58.19894755000013, + 28.80700318900017 + ], + [ + 57.884891552000056, + 29.088552826000125 + ], + [ + 57.60823057600004, + 29.299633791000133 + ], + [ + 57.577938546000155, + 29.37433180300002 + ], + [ + 57.7045134980001, + 29.4045375 + ], + [ + 57.94958458900004, + 29.273783666000156 + ], + [ + 58.080215545000044, + 29.130778339000017 + ], + [ + 58.29456360800003, + 29.06689968800015 + ], + [ + 58.211078511000096, + 29.282889430000182 + ], + [ + 57.95944556300003, + 29.629590092000115 + ], + [ + 57.984458503000155, + 29.843784766000113 + ], + [ + 57.82731659400014, + 30.034710774000132 + ], + [ + 57.655277528000056, + 30.143944742000087 + ], + [ + 57.61601652600018, + 30.217385805000106 + ], + [ + 57.62865056900006, + 30.309026493000147 + ], + [ + 57.54414757400008, + 30.435109931000113 + ], + [ + 57.56786349800018, + 30.509770225000125 + ], + [ + 57.470470477, + 30.637391741000158 + ], + [ + 57.17158857300012, + 30.789823189000117 + ], + [ + 57.231193628000085, + 30.905851025000118 + ], + [ + 57.099540583000135, + 30.97987043800009 + ], + [ + 56.874011564000114, + 30.880070134000164 + ], + [ + 56.79412448300019, + 30.897619493000093 + ], + [ + 56.8160745080001, + 31.030865937000044 + ], + [ + 56.850822526000115, + 31.066589441000133 + ], + [ + 56.80017051800013, + 31.33580225700007 + ], + [ + 56.703449558000045, + 31.421342429000163 + ], + [ + 56.66289858100009, + 31.529873658000156 + ], + [ + 56.515888548000135, + 31.42310614900009 + ], + [ + 56.48338352800005, + 31.542046193000033 + ], + [ + 56.511432561000106, + 31.60066335700003 + ], + [ + 56.360015492, + 31.715567515000032 + ], + [ + 56.25843856000017, + 31.762478680000015 + ], + [ + 56.160800618999986, + 31.88381092000003 + ], + [ + 55.986801529000104, + 32.13835557300007 + ], + [ + 55.88537949500005, + 32.13161065500009 + ], + [ + 55.90189754400012, + 32.03600281200005 + ], + [ + 56.14954757900006, + 31.63495422600016 + ], + [ + 56.128204571000026, + 31.52560777200017 + ], + [ + 56.20915950700015, + 31.42804024000003 + ], + [ + 56.41687061099998, + 31.254018184000188 + ], + [ + 56.377033605000065, + 31.20183480100019 + ], + [ + 56.219135480000034, + 31.189065307000078 + ], + [ + 56.148090469000124, + 31.116782792000095 + ], + [ + 56.209121621000065, + 31.01544725900004 + ], + [ + 56.315978481000116, + 30.94109206600018 + ], + [ + 56.627956605, + 30.76223516000016 + ], + [ + 56.74601755600014, + 30.71425496700016 + ], + [ + 56.97034058700018, + 30.575357779000058 + ], + [ + 57.10389749700005, + 30.394854332000136 + ], + [ + 57.18988760900004, + 30.17498142100004 + ], + [ + 57.378013559000124, + 29.981268765000095 + ], + [ + 57.48991347500004, + 29.753458192000153 + ], + [ + 57.313133605000075, + 29.93418560400005 + ], + [ + 57.049240615000144, + 30.177403288000164 + ], + [ + 56.79432648699998, + 30.33392862500017 + ], + [ + 56.46822753800018, + 30.48536011100009 + ], + [ + 56.123245502000145, + 30.72013571000008 + ], + [ + 55.8013306310001, + 31.05390795700015 + ], + [ + 55.51365650600002, + 31.29410882700006 + ], + [ + 55.17758560600015, + 31.409798872000124 + ], + [ + 55.07006456400018, + 31.458182905000115 + ], + [ + 54.91532155500005, + 31.55874277700002 + ], + [ + 54.85494955700011, + 31.55537291600018 + ], + [ + 54.769485492, + 31.444656357000042 + ], + [ + 54.771770566999976, + 31.363276292000023 + ], + [ + 54.88380057000012, + 31.423795141000085 + ], + [ + 55.12430151200016, + 31.273172509000062 + ], + [ + 55.382507549000024, + 31.131992090000153 + ], + [ + 55.55487853800014, + 31.061391823000122 + ], + [ + 55.759586574000025, + 30.889866568000173 + ], + [ + 55.86619952100011, + 30.725706658000092 + ], + [ + 55.948860508999985, + 30.64867914700011 + ], + [ + 56.21640348300019, + 30.48441815300015 + ], + [ + 56.46890261600004, + 30.386200855000084 + ], + [ + 56.676952518000064, + 30.334717529000045 + ], + [ + 57.03145958100009, + 30.140465917000085 + ], + [ + 57.084091562000026, + 29.958982458000037 + ], + [ + 57.173557482000035, + 29.780795267000087 + ], + [ + 57.39907459900013, + 29.566987501000142 + ], + [ + 57.418746591000115, + 29.484404632000064 + ], + [ + 57.20525750500008, + 29.577302103000193 + ], + [ + 57.01417961700014, + 29.639541758000178 + ], + [ + 56.59469252000014, + 29.707385887999976 + ], + [ + 55.96296356400012, + 29.907733323000116 + ], + [ + 55.79777955399999, + 29.971745918000067 + ], + [ + 55.74175256600006, + 30.03247867300007 + ], + [ + 55.440830507000044, + 30.214689179000118 + ], + [ + 55.43330355800015, + 30.262083309000047 + ], + [ + 55.58570449600006, + 30.35757078800009 + ], + [ + 55.457569503, + 30.478324341000075 + ], + [ + 55.271041480000065, + 30.554115689000184 + ], + [ + 54.95351453500018, + 30.643172572000026 + ], + [ + 54.69030752000003, + 30.786747533000153 + ], + [ + 54.4363554680001, + 31.02050322300005 + ], + [ + 54.4575725790001, + 31.15032448600016 + ], + [ + 54.40324762100016, + 31.398706094000147 + ], + [ + 54.15592163000019, + 31.56721134900016 + ], + [ + 54.079097631000195, + 31.55857279200012 + ], + [ + 53.75216250400007, + 31.65227945200013 + ], + [ + 53.65326359000011, + 31.704638687000113 + ], + [ + 53.53008247000008, + 31.852408957000193 + ], + [ + 53.37840254400015, + 32.19002782700011 + ], + [ + 53.27268562300014, + 32.31156408200019 + ], + [ + 53.203762574000166, + 32.45477040600014 + ], + [ + 53.07776262000016, + 32.622658082999976 + ], + [ + 52.93972759500008, + 32.66237103800006 + ], + [ + 53.005386563000116, + 32.709676487000024 + ], + [ + 53.16175063100013, + 32.730667789999984 + ], + [ + 53.19520951200019, + 32.78300305300013 + ], + [ + 53.149871630000064, + 32.85050302200011 + ], + [ + 52.942707529000074, + 32.900603501000035 + ], + [ + 52.77768361300008, + 32.97875603100016 + ], + [ + 52.72535757100013, + 32.97823400700008 + ], + [ + 52.614963547000116, + 32.87055940800013 + ], + [ + 52.52121346900003, + 32.8971707770001 + ], + [ + 52.42111259000018, + 33.2209898480001 + ], + [ + 52.293601547000094, + 33.44547029100005 + ], + [ + 52.29809961100011, + 33.57837123400003 + ], + [ + 52.22972457100008, + 33.62341004900003 + ], + [ + 52.128684584000155, + 33.7388887030001 + ], + [ + 51.82381448100011, + 33.88489961200003 + ], + [ + 51.771591536000074, + 33.94732584800005 + ], + [ + 51.57265863100014, + 34.07040353500014 + ], + [ + 51.43485662300003, + 34.06172474500005 + ], + [ + 51.4492414770001, + 34.3179248240001 + ], + [ + 51.48423759900004, + 34.350909625000156 + ], + [ + 51.37668956700014, + 34.52618594900008 + ], + [ + 51.25173148400006, + 34.59401314800016 + ], + [ + 51.11978557600014, + 34.62654432000005 + ], + [ + 50.97992363100008, + 34.560693239000045 + ], + [ + 50.84041556900007, + 34.416054950000046 + ], + [ + 50.98878062000006, + 34.207560640000054 + ], + [ + 51.18568460200015, + 34.00042839000014 + ], + [ + 51.5423734740001, + 33.70915071600007 + ], + [ + 51.94186051200012, + 33.50563056300018 + ], + [ + 52.24380449200004, + 33.27106853500004 + ], + [ + 52.32661853400015, + 32.96815543900004 + ], + [ + 52.37526659700018, + 32.71983803600011 + ], + [ + 52.53198656100017, + 32.61295737100011 + ], + [ + 52.6684535010001, + 32.5655538530001 + ], + [ + 52.78013951100007, + 32.46685912200007 + ], + [ + 52.88863754800013, + 32.41471362600015 + ], + [ + 53.109928509000156, + 32.19791955600016 + ], + [ + 53.14836154700009, + 32.10796044500012 + ], + [ + 53.17775352800004, + 31.872806319000176 + ], + [ + 53.157504527000185, + 31.769789711000044 + ], + [ + 53.20162552400012, + 31.646588643000143 + ], + [ + 53.248100495000074, + 31.617214598000032 + ], + [ + 53.4064175470001, + 31.691549171000133 + ], + [ + 53.50684749900006, + 31.656060528000182 + ], + [ + 53.557945593000056, + 31.505535461000193 + ], + [ + 53.698009542000136, + 31.356385529000136 + ], + [ + 53.91704158000016, + 31.25603185200015 + ], + [ + 54.05180749600004, + 31.163265306000085 + ], + [ + 54.060188561000075, + 31.048394173000077 + ], + [ + 53.95108753, + 30.897792328000094 + ], + [ + 54.01883660900006, + 30.788553330000127 + ], + [ + 54.13304557200013, + 30.798905987000012 + ], + [ + 54.138793546000045, + 30.9196927320001 + ], + [ + 54.242389511000056, + 31.027609735000055 + ], + [ + 54.32076650800013, + 30.898668572000133 + ], + [ + 54.53276847700016, + 30.723669521000033 + ], + [ + 54.56813859900018, + 30.60441297600005 + ], + [ + 54.65969463100009, + 30.525857779000148 + ], + [ + 54.76638754100014, + 30.32735201600019 + ], + [ + 55.12063560300015, + 30.111709787000052 + ], + [ + 55.359992583, + 29.97443097600018 + ], + [ + 55.676826512000105, + 29.839098109000076 + ], + [ + 55.92301960500015, + 29.71710872800014 + ], + [ + 56.14536651800006, + 29.64658943000012 + ], + [ + 56.24291963400009, + 29.574668174000124 + ], + [ + 56.19307362900008, + 29.47898170800005 + ], + [ + 56.351295630000095, + 29.337656115000016 + ], + [ + 56.31246562500007, + 29.245334648000096 + ], + [ + 56.477649635000034, + 29.070048601 + ], + [ + 56.63378554900004, + 28.959365905000084 + ], + [ + 56.75713749100015, + 28.929614172000186 + ] + ] + ], + [ + [ + [ + 59.398292619000074, + 33.76083403399997 + ], + [ + 59.48372650800013, + 33.91497773700007 + ], + [ + 59.41297553400017, + 33.94609404300019 + ], + [ + 59.26397647600004, + 33.95553072500013 + ], + [ + 59.06809659500004, + 34.07225727700006 + ], + [ + 58.96336756500017, + 34.04111515400001 + ], + [ + 58.88069953600012, + 34.05129195800009 + ], + [ + 58.81853062500011, + 34.12531405300007 + ], + [ + 58.68630962300017, + 34.16692785600003 + ], + [ + 58.568702636000125, + 34.34060206300012 + ], + [ + 58.432575499000166, + 34.43954121000013 + ], + [ + 58.243942612000126, + 34.37019638400017 + ], + [ + 58.23122458300003, + 34.323142559000075 + ], + [ + 58.34520757000013, + 34.14073642000011 + ], + [ + 58.486171568000145, + 34.03286065500015 + ], + [ + 58.6069836260001, + 33.88439267500007 + ], + [ + 58.86189255700003, + 33.66097187200006 + ], + [ + 59.14318855700003, + 33.474583491000146 + ], + [ + 59.21118557300002, + 33.25526780900003 + ], + [ + 59.17295051600007, + 33.16468240200004 + ], + [ + 58.93029358100006, + 33.03187047600005 + ], + [ + 58.937496485999986, + 32.925302623000164 + ], + [ + 59.16487857600009, + 32.91622804000008 + ], + [ + 59.17077256300007, + 32.77365438100003 + ], + [ + 59.350383504000035, + 32.5621390660001 + ], + [ + 59.20605853100005, + 32.51033370700014 + ], + [ + 59.08356858300016, + 32.408056719000115 + ], + [ + 59.10590350500007, + 32.332036377000065 + ], + [ + 59.29051961700003, + 32.26787525500015 + ], + [ + 59.41991860000013, + 32.17931223400012 + ], + [ + 59.28495755300003, + 32.057975133000184 + ], + [ + 59.3788715820001, + 31.94635668100011 + ], + [ + 59.53567855000006, + 31.94566383299997 + ], + [ + 59.68209849600015, + 31.849624992000145 + ], + [ + 59.665416497000194, + 31.797946536000097 + ], + [ + 59.525218605000134, + 31.800202609000166 + ], + [ + 59.46623649400004, + 31.744754308000097 + ], + [ + 59.409072585000104, + 31.568731156000013 + ], + [ + 59.41722448799999, + 31.46990181200016 + ], + [ + 59.53471362500005, + 31.484551031000137 + ], + [ + 59.68478053800004, + 31.536711280000134 + ], + [ + 59.820018522000055, + 31.52462289900012 + ], + [ + 59.847541507000074, + 31.30185236400007 + ], + [ + 59.90933256200009, + 31.157637529000112 + ], + [ + 59.99682655600003, + 31.091809582000053 + ], + [ + 60.08563952500009, + 31.08816093900009 + ], + [ + 60.099170599, + 31.197209164000185 + ], + [ + 60.033893511000144, + 31.43772586400013 + ], + [ + 60.00913253100009, + 31.616300803000172 + ], + [ + 60.06042055800003, + 31.600348197000073 + ], + [ + 60.08366055800002, + 31.86013556300003 + ], + [ + 60.158981513000015, + 31.84466022300012 + ], + [ + 60.173385479000046, + 31.72305121300019 + ], + [ + 60.25513451600011, + 31.62189454999998 + ], + [ + 60.31623054300013, + 31.680545409000047 + ], + [ + 60.35822253700019, + 32.114045371000145 + ], + [ + 60.41204055800006, + 32.27779305900009 + ], + [ + 60.478774589000125, + 32.31720962900005 + ], + [ + 60.4689525070001, + 32.43749396300018 + ], + [ + 60.403457489000175, + 32.46503890800011 + ], + [ + 60.30141050000003, + 32.38821742500011 + ], + [ + 60.26287453300006, + 32.40196508700018 + ], + [ + 60.241073538000194, + 32.5676629080001 + ], + [ + 60.17137952200011, + 32.61642446200017 + ], + [ + 60.061366540000165, + 32.83908552899999 + ], + [ + 59.97153852100013, + 32.9390585000001 + ], + [ + 59.95569957400011, + 33.05686380200012 + ], + [ + 60.041938629000015, + 33.068631324000194 + ], + [ + 60.12051763000011, + 32.949380143000155 + ], + [ + 60.2337075210001, + 32.92184290900008 + ], + [ + 60.34077460000009, + 32.95615892300003 + ], + [ + 60.36643948500006, + 33.08154414800009 + ], + [ + 60.35930648500016, + 33.22723067800007 + ], + [ + 60.27664549700012, + 33.44174420000019 + ], + [ + 60.11046253200004, + 33.5125841900001 + ], + [ + 60.03177657700013, + 33.47799039900008 + ], + [ + 59.94459958699997, + 33.3876800860001 + ], + [ + 59.87301260200019, + 33.56936454300006 + ], + [ + 59.825611599000126, + 33.60451573100005 + ], + [ + 59.70047347200011, + 33.619824103000155 + ], + [ + 59.492778628, + 33.42806091099999 + ], + [ + 59.39397459800011, + 33.493904784000165 + ], + [ + 59.315772614000196, + 33.615349173000084 + ], + [ + 59.18266262700013, + 33.73688978700011 + ], + [ + 59.200511555000105, + 33.7979541310001 + ], + [ + 59.29746653800004, + 33.81313560100017 + ], + [ + 59.398292619000074, + 33.76083403399997 + ] + ] + ], + [ + [ + [ + 57.57637062700019, + 33.348847064000154 + ], + [ + 57.44379859100013, + 33.619584213 + ], + [ + 57.433826473000124, + 33.74898537600018 + ], + [ + 57.36622256800001, + 33.83557697400005 + ], + [ + 57.22357548400004, + 33.866814986000065 + ], + [ + 57.20123251500007, + 33.91054186600013 + ], + [ + 57.28355755700005, + 34.051975083 + ], + [ + 57.37326454000004, + 34.34994771800007 + ], + [ + 57.24999960100013, + 34.42393963800015 + ], + [ + 57.189876545000175, + 34.36706440200004 + ], + [ + 56.976184617, + 34.09636161900016 + ], + [ + 56.89902852800009, + 34.04961406800015 + ], + [ + 56.69124953000011, + 33.99399645300008 + ], + [ + 56.70605850900017, + 33.93991004300011 + ], + [ + 56.81372053500007, + 33.95343659100001 + ], + [ + 57.075611591000154, + 33.84550684699997 + ], + [ + 57.21740355300011, + 33.64117046400003 + ], + [ + 57.394672591000074, + 33.324895944000104 + ], + [ + 57.4430505900001, + 33.20086054000012 + ], + [ + 57.657855633999986, + 32.979348297000115 + ], + [ + 57.70426556100011, + 33.006198215000154 + ], + [ + 57.64093056000013, + 33.22067401800007 + ], + [ + 57.57637062700019, + 33.348847064000154 + ] + ] + ], + [ + [ + [ + 63.16513449400003, + 34.06029076900006 + ], + [ + 63.15387759800018, + 34.12255288700004 + ], + [ + 63.21984451700018, + 34.16997166000016 + ], + [ + 63.12725063900018, + 34.23676889100011 + ], + [ + 62.96978351100017, + 34.1889003440001 + ], + [ + 62.81901151300002, + 34.188747123000155 + ], + [ + 62.49057049300012, + 34.10068768600007 + ], + [ + 62.41269657700019, + 34.06248783300015 + ], + [ + 62.41935348500016, + 34.00239646099999 + ], + [ + 62.66987951800019, + 34.044044294000116 + ], + [ + 62.870628614000054, + 34.10486053300008 + ], + [ + 62.956371628000056, + 34.07913932200006 + ], + [ + 63.042545640000185, + 34.00618122500015 + ], + [ + 63.121929639000086, + 34.00295016899997 + ], + [ + 63.16513449400003, + 34.06029076900006 + ] + ] + ], + [ + [ + [ + 71.86911750400009, + 36.58117866099997 + ], + [ + 71.66107950500009, + 36.51299707600009 + ], + [ + 71.48538257700005, + 36.511161942000115 + ], + [ + 71.43847660800009, + 36.469323002000124 + ], + [ + 71.42952758600006, + 36.367026064000186 + ], + [ + 71.35720064600002, + 36.342093925000086 + ], + [ + 71.2555466, + 36.20614180300015 + ], + [ + 71.05282557800007, + 36.39460973400003 + ], + [ + 71.03628556900014, + 36.48516161300006 + ], + [ + 70.91999051800008, + 36.54033247400014 + ], + [ + 70.88204161900018, + 36.68816024400019 + ], + [ + 70.79793559000018, + 36.729746386000045 + ], + [ + 70.75155650800019, + 36.68364726000016 + ], + [ + 70.7847066, + 36.45815026000008 + ], + [ + 70.73671752200005, + 36.25009398800012 + ], + [ + 70.7860485430001, + 36.09730731600007 + ], + [ + 70.7686465380001, + 36.0345406080001 + ], + [ + 70.69255059199998, + 35.99646346500003 + ], + [ + 70.65926354000004, + 35.91687226600004 + ], + [ + 70.57617155400004, + 36.09602941100013 + ], + [ + 70.49433853100015, + 36.11914887900008 + ], + [ + 70.44013963600003, + 36.07824854500012 + ], + [ + 70.33331261500001, + 36.071039940000105 + ], + [ + 70.33796658300014, + 36.16445172500016 + ], + [ + 70.4199595340001, + 36.21295461400007 + ], + [ + 70.42870353500018, + 36.302345599000034 + ], + [ + 70.34153760900006, + 36.41247726900019 + ], + [ + 70.42424050700004, + 36.54267052200015 + ], + [ + 70.38976255400007, + 36.64776315900019 + ], + [ + 70.42124950900018, + 36.800278761000186 + ], + [ + 70.31452156199998, + 36.83604098900008 + ], + [ + 70.27659663500009, + 36.750410963000036 + ], + [ + 70.18019049900016, + 36.70236589400014 + ], + [ + 70.14743050100014, + 36.61851283200002 + ], + [ + 70.03742958900011, + 36.622544527000116 + ], + [ + 69.88098153400011, + 36.551825069000074 + ], + [ + 69.87688462699998, + 36.46847592600017 + ], + [ + 69.76716652000005, + 36.44101848800011 + ], + [ + 69.69600650900009, + 36.377489864000154 + ], + [ + 69.68933049100013, + 36.25672675599998 + ], + [ + 69.46741457500002, + 36.11999964300014 + ], + [ + 69.5484695900002, + 35.986541639000166 + ], + [ + 69.54656254000014, + 35.9291212440001 + ], + [ + 69.44420659400015, + 35.92937203000008 + ], + [ + 69.37342863000003, + 35.87732929600014 + ], + [ + 69.41014857400017, + 35.73944346800005 + ], + [ + 69.45558150700009, + 35.676624122000135 + ], + [ + 69.34194150800016, + 35.564398652000136 + ], + [ + 69.09925858800011, + 35.53798627000003 + ], + [ + 68.91873150400005, + 35.44415857500019 + ], + [ + 68.71228757600011, + 35.38582119900019 + ], + [ + 68.57679763100009, + 35.29073839800003 + ], + [ + 68.38065355300006, + 35.38205319800011 + ], + [ + 68.2706526410002, + 35.386085229 + ], + [ + 68.11647759000016, + 35.29689926500009 + ], + [ + 68.07790356900006, + 35.1582268790001 + ], + [ + 67.98186456000019, + 35.034297926000136 + ], + [ + 68.07209055100009, + 34.942992011 + ], + [ + 68.07981849800012, + 34.89481752500018 + ], + [ + 67.96855158400018, + 34.80709671700015 + ], + [ + 67.91369655300014, + 34.71316223700006 + ], + [ + 67.73723553100007, + 34.68835582700018 + ], + [ + 67.37252853000007, + 34.70527419500007 + ], + [ + 67.27777061100016, + 34.76046383100015 + ], + [ + 67.25831554400008, + 34.81643834800008 + ], + [ + 67.31941961800015, + 34.91796079800008 + ], + [ + 67.4494785920001, + 34.96970949500013 + ], + [ + 67.5781555580001, + 34.95977677200011 + ], + [ + 67.74623853300017, + 34.97971916300003 + ], + [ + 67.80455763600014, + 35.03092186300012 + ], + [ + 67.79220556100017, + 35.16042478200018 + ], + [ + 67.47827948200012, + 35.11488187800012 + ], + [ + 67.41857149700019, + 35.16241565100012 + ], + [ + 67.42001352000005, + 35.252745243 + ], + [ + 67.36941549100015, + 35.3137827650001 + ], + [ + 67.24984764200019, + 35.33721940400011 + ], + [ + 67.24675757000017, + 35.391437074000066 + ], + [ + 67.35647550900006, + 35.41889820100016 + ], + [ + 67.52950263300005, + 35.50075938800006 + ], + [ + 67.51970653500007, + 35.58030549300008 + ], + [ + 67.41711455500007, + 35.553328002 + ], + [ + 67.33532763200009, + 35.678146108000135 + ], + [ + 67.2371215660001, + 35.70302544000003 + ], + [ + 67.17649056600004, + 35.655964574000166 + ], + [ + 67.18823948000016, + 35.57511759800008 + ], + [ + 67.12883760300014, + 35.51811193900005 + ], + [ + 67.07660661100005, + 35.402868649000084 + ], + [ + 67.07788049300012, + 35.33420242200003 + ], + [ + 66.99166155500018, + 35.30546691100005 + ], + [ + 67.00580551299998, + 35.42386816600009 + ], + [ + 66.97097753200018, + 35.53180243700007 + ], + [ + 66.86628756100009, + 35.52186988100016 + ], + [ + 66.79404460800004, + 35.45253947200018 + ], + [ + 66.60023455500004, + 35.39362273900019 + ], + [ + 66.55165857600014, + 35.321594698000126 + ], + [ + 66.44077253500018, + 35.24536045100007 + ], + [ + 66.35112757800005, + 35.11326500900003 + ], + [ + 66.45874048600012, + 34.997353849000035 + ], + [ + 66.4779965670001, + 34.92847371600004 + ], + [ + 66.3969425570001, + 34.90151617400011 + ], + [ + 66.28348561900015, + 35.03565277700005 + ], + [ + 66.12213850900008, + 35.16512350900018 + ], + [ + 66.1302946030001, + 35.230129024000064 + ], + [ + 66.27088963000006, + 35.29834128700003 + ], + [ + 66.37556451300003, + 35.38132011700009 + ], + [ + 66.45891550000005, + 35.5645507000001 + ], + [ + 66.24215663400014, + 35.59002112400003 + ], + [ + 66.10251664100014, + 35.47030709500012 + ], + [ + 66.01122262800016, + 35.48276578800005 + ], + [ + 65.86641653300012, + 35.36127060500013 + ], + [ + 65.53229560000017, + 35.36306366100018 + ], + [ + 65.432472497, + 35.29903128600017 + ], + [ + 65.3207246290001, + 35.317269804000034 + ], + [ + 65.28948963400018, + 35.2793517500001 + ], + [ + 65.16390961400009, + 35.32243758300018 + ], + [ + 65.05621355700009, + 35.32232761200004 + ], + [ + 65.00550857500014, + 35.253020337000066 + ], + [ + 65.08477053400009, + 35.19248572900017 + ], + [ + 65.33870649300019, + 35.15663280900003 + ], + [ + 65.58857756500015, + 35.212173311000015 + ], + [ + 65.45322458100003, + 35.10134409900007 + ], + [ + 65.40213755200017, + 35.020554287000095 + ], + [ + 65.52069052000007, + 35.019963363000045 + ], + [ + 65.59589362600019, + 34.97777322100012 + ], + [ + 65.55744164500004, + 34.89640438700002 + ], + [ + 65.42749750300015, + 34.81458544499998 + ], + [ + 65.3008496280001, + 34.778819529000145 + ], + [ + 65.41215560200004, + 34.72044795500017 + ], + [ + 65.71524857399999, + 34.693646652000155 + ], + [ + 65.94850151700012, + 34.72371773499998 + ], + [ + 66.1647415430001, + 34.702508335000175 + ], + [ + 66.17634561799997, + 34.63740810500019 + ], + [ + 66.04756957800015, + 34.60436295400012 + ], + [ + 65.81236247800007, + 34.57559291000018 + ], + [ + 65.83374052200003, + 34.50399251400006 + ], + [ + 66.0550306450001, + 34.51463535100004 + ], + [ + 66.0768205760001, + 34.46884149400012 + ], + [ + 65.85194350100005, + 34.44363023800008 + ], + [ + 65.50521853200013, + 34.460326654000085 + ], + [ + 65.11698956400016, + 34.46419557200011 + ], + [ + 64.92987849500008, + 34.45299600900006 + ], + [ + 64.68409762400006, + 34.39343454000016 + ], + [ + 64.50373063500007, + 34.37123322500008 + ], + [ + 64.03108953100008, + 34.36080848500012 + ], + [ + 64.01242856500005, + 34.293663238000136 + ], + [ + 64.16573357400006, + 34.229536984000106 + ], + [ + 64.37009460000019, + 34.23187486500018 + ], + [ + 64.79262550100015, + 34.284749419000036 + ], + [ + 64.79721861600012, + 34.18909413400013 + ], + [ + 64.55879957100012, + 34.15724189600007 + ], + [ + 64.36812552300006, + 34.14580227500011 + ], + [ + 63.86522658700011, + 33.97292099500015 + ], + [ + 63.5712014930001, + 33.911532942000065 + ], + [ + 63.54953762600002, + 33.854215644000135 + ], + [ + 63.37926060400008, + 33.80834467300002 + ], + [ + 63.022777591000136, + 33.75849615400017 + ], + [ + 62.8093605900001, + 33.68393241900014 + ], + [ + 62.877967641000055, + 33.637000635000106 + ], + [ + 63.1497575570001, + 33.70404664 + ], + [ + 63.094787527, + 33.64018274 + ], + [ + 62.96385549400003, + 33.59553703600011 + ], + [ + 62.87862360900016, + 33.52962493500007 + ], + [ + 62.96433661500015, + 33.489578883000036 + ], + [ + 63.10825758100003, + 33.530806783000116 + ], + [ + 63.37500360300004, + 33.653369151000106 + ], + [ + 63.5044245470001, + 33.73944962000007 + ], + [ + 63.80892953400013, + 33.78865440900012 + ], + [ + 64.02217051600007, + 33.86463619400013 + ], + [ + 64.18208348200017, + 33.89262035100012 + ], + [ + 64.48136855500007, + 33.99876139700018 + ], + [ + 64.78458356800007, + 34.029259621999984 + ], + [ + 64.77252150600003, + 33.966856185000154 + ], + [ + 64.700134552, + 33.913272690000156 + ], + [ + 64.53781849400008, + 33.84645685200019 + ], + [ + 64.44754757600009, + 33.836065136000116 + ], + [ + 64.27207159500011, + 33.77408984600004 + ], + [ + 63.60057050900002, + 33.58552720000006 + ], + [ + 63.254104541000174, + 33.39599158200019 + ], + [ + 63.26591849800002, + 33.343797135000045 + ], + [ + 63.40785261700012, + 33.37199855100016 + ], + [ + 63.592033540000045, + 33.50904048900003 + ], + [ + 63.690158637000195, + 33.528555907000055 + ], + [ + 64.11769856300009, + 33.67199977400003 + ], + [ + 64.2275546360001, + 33.68371449000011 + ], + [ + 64.53661351200003, + 33.78335537000004 + ], + [ + 64.6102295880001, + 33.82699424000009 + ], + [ + 64.81949654099998, + 33.876930769000126 + ], + [ + 64.74324754200012, + 33.767227079000065 + ], + [ + 64.57745349700008, + 33.65577308000019 + ], + [ + 64.4183195440001, + 33.57771426000005 + ], + [ + 64.25785052300012, + 33.539668465999966 + ], + [ + 64.15409848700006, + 33.55128310200013 + ], + [ + 64.06805456300003, + 33.521125182000105 + ], + [ + 63.99478164100009, + 33.3872718880001 + ], + [ + 63.91984558300004, + 33.31059809300007 + ], + [ + 63.715412641, + 33.19224377600017 + ], + [ + 63.61053458000015, + 33.09635966500019 + ], + [ + 63.61667248000015, + 32.97359914900011 + ], + [ + 63.69879149400015, + 32.918985853000095 + ], + [ + 63.704357581000124, + 32.85920779600002 + ], + [ + 63.80828848599998, + 32.846173266000164 + ], + [ + 63.91229248200011, + 32.94915517300018 + ], + [ + 63.96858953500009, + 33.13342242900006 + ], + [ + 64.04144252300011, + 33.154097902000046 + ], + [ + 64.12621357100016, + 33.09250382200008 + ], + [ + 64.29649361100019, + 33.13837328400018 + ], + [ + 64.36477661700008, + 33.26902351799998 + ], + [ + 64.28251662000002, + 33.339379202000146 + ], + [ + 64.45358254600006, + 33.42254494800005 + ], + [ + 64.5390925430001, + 33.369591436000064 + ], + [ + 64.57772054400004, + 33.28912986000006 + ], + [ + 64.65473950600011, + 33.26138659800017 + ], + [ + 64.70680956500013, + 33.30500652500018 + ], + [ + 64.78762049900007, + 33.46514680900003 + ], + [ + 64.89669755800014, + 33.526934847000064 + ], + [ + 65.13795454799998, + 33.550387076000106 + ], + [ + 65.20374259700014, + 33.59922876200005 + ], + [ + 65.16655762500005, + 33.77002395300019 + ], + [ + 65.19831850000014, + 33.803675953000095 + ], + [ + 65.37134562400007, + 33.725126288000126 + ], + [ + 65.41860162100005, + 33.764122086999976 + ], + [ + 65.42877959800006, + 33.85647339400009 + ], + [ + 65.54759961400003, + 33.89743826900013 + ], + [ + 65.55364950400008, + 33.97948586900009 + ], + [ + 65.45481161000015, + 34.038700160000076 + ], + [ + 65.339614589, + 34.02662669900019 + ], + [ + 65.20259058800013, + 34.04602007600016 + ], + [ + 65.26850151600019, + 34.152161289000105 + ], + [ + 65.25926952100008, + 34.241773893000186 + ], + [ + 65.41108657400008, + 34.23340104200008 + ], + [ + 65.48810553600015, + 34.20566063000007 + ], + [ + 65.68981151000014, + 34.0545649230001 + ], + [ + 65.76950061000014, + 33.94679493800004 + ], + [ + 65.72433455700013, + 33.803382083000145 + ], + [ + 65.53070857000012, + 33.58263225800016 + ], + [ + 65.5027995150001, + 33.51772598500014 + ], + [ + 65.55197949400008, + 33.3806840470001 + ], + [ + 65.62885261000014, + 33.36868652600015 + ], + [ + 65.75196851800013, + 33.418532028000186 + ], + [ + 65.90898855500018, + 33.586683232000155 + ], + [ + 65.96588860200018, + 33.722295217000124 + ], + [ + 65.99357553700008, + 33.847341645000085 + ], + [ + 66.061035608, + 33.92637259900005 + ], + [ + 66.08959962500006, + 34.04431502900019 + ], + [ + 66.03074659500004, + 34.157787893000034 + ], + [ + 66.25065655399999, + 34.10675232900013 + ], + [ + 66.48783859800005, + 34.22159144300019 + ], + [ + 66.51608259400018, + 34.196284969000146 + ], + [ + 66.48892254500015, + 34.06697768400011 + ], + [ + 66.31822156700008, + 33.90792805300015 + ], + [ + 66.30570956500009, + 33.80539172900012 + ], + [ + 66.42084456000009, + 33.78881819100019 + ], + [ + 66.6280215700001, + 33.855798483000115 + ], + [ + 66.70201147900013, + 33.910922907000156 + ], + [ + 66.77522254200017, + 34.01612601800008 + ], + [ + 66.74996149700002, + 34.104654505999974 + ], + [ + 66.687080627, + 34.16342572900004 + ], + [ + 66.61901052100018, + 34.29346525700004 + ], + [ + 66.68714147999998, + 34.35249263100002 + ], + [ + 66.86037463200012, + 34.286843386000044 + ], + [ + 66.81036350300013, + 34.211855695000054 + ], + [ + 66.87967664600006, + 34.159240980000106 + ], + [ + 66.9910275470001, + 34.20256770800012 + ], + [ + 67.07994059700019, + 34.326015540000185 + ], + [ + 67.145370572, + 34.2903294190001 + ], + [ + 67.28182259100004, + 34.333915316000116 + ], + [ + 67.41912855900006, + 34.44344734500015 + ], + [ + 67.53067056800012, + 34.4123052220001 + ], + [ + 67.57457749100007, + 34.463966579000044 + ], + [ + 67.66712158100006, + 34.45589095000008 + ], + [ + 67.77899953700012, + 34.494955816000015 + ], + [ + 67.94447356100005, + 34.46315772500009 + ], + [ + 67.81275161700017, + 34.381220095 + ], + [ + 67.65928651300015, + 34.3684794350001 + ], + [ + 67.51979052200016, + 34.23826472500008 + ], + [ + 67.3527225950001, + 34.19547594700015 + ], + [ + 67.27995258800013, + 34.130406730000175 + ], + [ + 66.99762762600005, + 34.04689397300007 + ], + [ + 66.9170684840002, + 34.00135123700005 + ], + [ + 66.98452754900018, + 33.919970669 + ], + [ + 67.36219062600003, + 33.88531149900007 + ], + [ + 67.42545354300012, + 33.83801895700003 + ], + [ + 67.26541853600014, + 33.75273543900005 + ], + [ + 67.06164558500012, + 33.77478789100019 + ], + [ + 66.87268848600007, + 33.734814930000084 + ], + [ + 66.65229757300011, + 33.64402735200014 + ], + [ + 66.67817653200007, + 33.594213031000095 + ], + [ + 66.77638259700012, + 33.569330513000125 + ], + [ + 66.97406760500019, + 33.61132133300009 + ], + [ + 67.02214854800013, + 33.541522542999985 + ], + [ + 66.80812855300013, + 33.51561726600005 + ], + [ + 66.50273156300011, + 33.546561408000116 + ], + [ + 66.3465725160001, + 33.44435315100014 + ], + [ + 66.16191063900015, + 33.413268193000135 + ], + [ + 66.04821062600007, + 33.27238751100009 + ], + [ + 66.07795749700011, + 33.11827901300012 + ], + [ + 66.22170261000014, + 33.16092563299998 + ], + [ + 66.37523661300003, + 33.28444186100006 + ], + [ + 66.40018451000003, + 33.21307800200009 + ], + [ + 66.47716558500008, + 33.17101140900013 + ], + [ + 66.525184503, + 33.39338983900012 + ], + [ + 66.6043095010001, + 33.435972589000016 + ], + [ + 66.77655761100004, + 33.40749641400015 + ], + [ + 66.8502885200001, + 33.421068895000076 + ], + [ + 66.94075054500007, + 33.35699477700007 + ], + [ + 66.85440856100007, + 33.27095722300004 + ], + [ + 66.73783154200015, + 33.19720267800017 + ], + [ + 66.6612925290001, + 33.11898778600005 + ], + [ + 66.63391857400006, + 32.97677622600003 + ], + [ + 66.56816053200004, + 32.94225820800017 + ], + [ + 66.47197752200009, + 32.83407650400005 + ], + [ + 66.44300061200005, + 32.69032485200012 + ], + [ + 66.55241361800012, + 32.661901819000036 + ], + [ + 66.61788952500012, + 32.727914 + ], + [ + 66.89484353200015, + 32.796739651000166 + ], + [ + 66.98740354800003, + 32.87603329300015 + ], + [ + 67.00002250300008, + 32.948499205000076 + ], + [ + 66.87067448200003, + 32.97844003400019 + ], + [ + 66.87757161500008, + 33.039061310000136 + ], + [ + 67.00511953799997, + 33.08204387700016 + ], + [ + 67.03554551200017, + 33.155710748000104 + ], + [ + 67.11799661700019, + 33.17130544700012 + ], + [ + 67.16413161800011, + 33.102806355000155 + ], + [ + 67.30375652300012, + 33.13515044300004 + ], + [ + 67.37762455900008, + 33.293390715999976 + ], + [ + 67.21833051300007, + 33.30411754100015 + ], + [ + 67.14905559200008, + 33.37105542 + ], + [ + 67.12023156800012, + 33.459344688000044 + ], + [ + 67.34143854200016, + 33.51438127000006 + ], + [ + 67.43984962900004, + 33.50240755400006 + ], + [ + 67.44424459600015, + 33.393847658000084 + ], + [ + 67.48774751200011, + 33.34665821400006 + ], + [ + 67.58280952600006, + 33.34734418900007 + ], + [ + 67.62467947900006, + 33.284285120000106 + ], + [ + 67.7219466040001, + 33.23785842800015 + ], + [ + 67.79588354000009, + 33.26433568700003 + ], + [ + 67.90779854300007, + 33.40509332300019 + ], + [ + 68.0079956460001, + 33.39323779100016 + ], + [ + 68.01245850700013, + 33.56111373300007 + ], + [ + 68.08631849700015, + 33.71935434200003 + ], + [ + 68.01653261500007, + 33.717508480000106 + ], + [ + 67.94831062800017, + 33.61550625000001 + ], + [ + 67.8926006440002, + 33.616043362000084 + ], + [ + 67.9237675780002, + 33.785724431000176 + ], + [ + 68.08083354700017, + 33.89515319500009 + ], + [ + 68.18363155500015, + 33.93503915100018 + ], + [ + 68.2719265230001, + 34.019771811000055 + ], + [ + 68.22600559500006, + 34.10117970400006 + ], + [ + 68.12234458700004, + 34.15576617800019 + ], + [ + 68.06888564700012, + 34.05046784900003 + ], + [ + 67.92879454000013, + 34.05103714800015 + ], + [ + 67.81018055200013, + 34.02297688300018 + ], + [ + 67.80612153200002, + 34.201735720000045 + ], + [ + 67.82580559300004, + 34.24603458200016 + ], + [ + 68.04039757000015, + 34.369372108000164 + ], + [ + 68.11108350000006, + 34.37844317100013 + ], + [ + 68.21170858300013, + 34.31935175900014 + ], + [ + 68.40789758800008, + 34.32973039900014 + ], + [ + 68.51068151400017, + 34.28224255900011 + ], + [ + 68.67150157000015, + 34.317451582 + ], + [ + 68.49523953400006, + 34.46596583000019 + ], + [ + 68.51522048300012, + 34.56613996700008 + ], + [ + 68.66050753100006, + 34.5816805180001 + ], + [ + 68.70567358400012, + 34.47730621000005 + ], + [ + 68.80928061300017, + 34.481437315000164 + ], + [ + 68.81482658300007, + 34.65511973700018 + ], + [ + 68.85859654600006, + 34.8098964400001 + ], + [ + 69.00595057200013, + 34.954477900000086 + ], + [ + 68.94977555900016, + 34.98792387300011 + ], + [ + 68.60488153300014, + 34.785605182000154 + ], + [ + 68.48870064400012, + 34.810705629000154 + ], + [ + 68.26280248600006, + 34.647928902 + ], + [ + 68.23436755000012, + 34.747700372000054 + ], + [ + 68.27166752200009, + 34.79461908100018 + ], + [ + 68.46183060900006, + 34.89769050600012 + ], + [ + 68.41601562900007, + 34.94902698100003 + ], + [ + 68.25910958700013, + 34.911220071 + ], + [ + 68.23769348900004, + 34.96849663300014 + ], + [ + 68.45272048600009, + 35.04460146400015 + ], + [ + 68.73943354300002, + 35.17997423000014 + ], + [ + 68.91969257300008, + 35.232245957000146 + ], + [ + 68.98474854700015, + 35.27244372100006 + ], + [ + 68.97206857200018, + 35.33174551800016 + ], + [ + 69.38313252700016, + 35.43397674200014 + ], + [ + 69.61867557300013, + 35.53295042200011 + ], + [ + 69.8234935800001, + 35.66279247300014 + ], + [ + 69.87590059200005, + 35.61620049000004 + ], + [ + 69.80059053300005, + 35.52804550000013 + ], + [ + 69.61019157800007, + 35.39774194200004 + ], + [ + 69.65459454300003, + 35.27040289500013 + ], + [ + 69.51509050499999, + 35.295358168 + ], + [ + 69.43777448900005, + 35.26722213100004 + ], + [ + 69.4102095940001, + 35.19947757700015 + ], + [ + 69.54818762300005, + 35.128583608000156 + ], + [ + 69.70617660700009, + 35.17219247100013 + ], + [ + 69.72408253200007, + 35.055954417000066 + ], + [ + 69.78327955600008, + 34.93963941700008 + ], + [ + 69.91546652700015, + 34.98866801800017 + ], + [ + 69.91171260800019, + 35.06289228600008 + ], + [ + 70.13567354100007, + 34.993508735000034 + ], + [ + 70.04549448900002, + 35.27260398300018 + ], + [ + 70.01432051400008, + 35.337654425000096 + ], + [ + 70.05575561400002, + 35.48225063700011 + ], + [ + 70.20268249800017, + 35.51365293400016 + ], + [ + 70.16521455300006, + 35.395109857000136 + ], + [ + 70.18327353100017, + 35.35049483000017 + ], + [ + 70.37607557700011, + 35.359214691000034 + ], + [ + 70.454872507, + 35.33159330300009 + ], + [ + 70.50433361500006, + 35.23610180000003 + ], + [ + 70.5704425240001, + 35.26777902400005 + ], + [ + 70.65795864500018, + 35.40259472800011 + ], + [ + 70.66145356400006, + 35.534598303999985 + ], + [ + 70.7515186220001, + 35.532084404000045 + ], + [ + 70.87190253300002, + 35.633313151000095 + ], + [ + 70.93858359000018, + 35.6020069110001 + ], + [ + 70.81021155800016, + 35.37419851700008 + ], + [ + 70.77493263100018, + 35.30358215600012 + ], + [ + 70.84275848800013, + 35.26464318700016 + ], + [ + 70.7938235960001, + 35.155320873 + ], + [ + 70.85867354300007, + 35.01608723500016 + ], + [ + 70.94565557000016, + 35.044498702 + ], + [ + 71.09517648500008, + 35.20953753800018 + ], + [ + 71.20865655800009, + 35.250922346000095 + ], + [ + 71.22851563299997, + 35.31713183800019 + ], + [ + 71.21171561700015, + 35.49891335700016 + ], + [ + 71.2707595870001, + 35.52299875600005 + ], + [ + 71.40605155100013, + 35.44476073100009 + ], + [ + 71.47831763800019, + 35.44104570400009 + ], + [ + 71.57648464400017, + 35.35669291200003 + ], + [ + 71.5502625310001, + 35.29269523700003 + ], + [ + 71.60415649200019, + 35.24721033700018 + ], + [ + 71.67751356700006, + 35.19073106100012 + ], + [ + 71.74359850400003, + 35.20175158800009 + ], + [ + 71.82013651100004, + 35.27839084900006 + ], + [ + 71.92307248500009, + 35.29466029100013 + ], + [ + 71.92192852300013, + 35.41666626800014 + ], + [ + 72.01969152100008, + 35.464234071000135 + ], + [ + 72.07737762300013, + 35.382178089000035 + ], + [ + 72.08934061100018, + 35.21204339100012 + ], + [ + 72.16539749700007, + 35.146314183000186 + ], + [ + 72.25154854200014, + 35.12075273100015 + ], + [ + 72.4075015620001, + 35.224780196000154 + ], + [ + 72.52021754000003, + 35.2564604370001 + ], + [ + 72.57805652800016, + 35.34149920400017 + ], + [ + 72.53662159600003, + 35.53923332900007 + ], + [ + 72.62481665100012, + 35.51773475300013 + ], + [ + 72.62563355200012, + 35.37121942100015 + ], + [ + 72.67439259100007, + 35.35077679700015 + ], + [ + 72.59430652400016, + 35.21062031200006 + ], + [ + 72.66230756300007, + 35.12154549100018 + ], + [ + 72.80626658300014, + 35.10262518900004 + ], + [ + 72.87239862500019, + 35.125833673000045 + ], + [ + 72.88308756400005, + 35.21841028500006 + ], + [ + 73.08860059800014, + 35.193710828 + ], + [ + 73.15541056900008, + 35.247500518000095 + ], + [ + 73.12978357000003, + 35.312589014000025 + ], + [ + 73.0203935310002, + 35.35918770200004 + ], + [ + 73.01364157300003, + 35.41961518900018 + ], + [ + 72.81862653700011, + 35.464425178000056 + ], + [ + 72.88617663000002, + 35.64184978500015 + ], + [ + 73.00060251700012, + 35.66741241 + ], + [ + 72.89438653700012, + 35.516804027000035 + ], + [ + 73.12304653200005, + 35.46427614800018 + ], + [ + 73.23676263900018, + 35.48157572600013 + ], + [ + 73.24675755600003, + 35.54929194800019 + ], + [ + 73.37615955600018, + 35.62362048600005 + ], + [ + 73.34308657800017, + 35.7068392060001 + ], + [ + 73.45245365100004, + 35.71645995500006 + ], + [ + 73.50804863500008, + 35.64643183600009 + ], + [ + 73.64631651000008, + 35.69882862100013 + ], + [ + 73.69130654300011, + 35.61871053500016 + ], + [ + 73.77002753400006, + 35.62075152800003 + ], + [ + 73.96634662600002, + 35.71681903500013 + ], + [ + 73.99458358200013, + 35.57793257600008 + ], + [ + 74.08482348700011, + 35.6346710200001 + ], + [ + 74.30713653700002, + 35.543654280000055 + ], + [ + 74.40622756400018, + 35.46762622700015 + ], + [ + 74.54116849400015, + 35.55479299100017 + ], + [ + 74.55986064100011, + 35.461488327000154 + ], + [ + 74.48034655500004, + 35.377727130000096 + ], + [ + 74.35118863500003, + 35.35376796300005 + ], + [ + 74.26687658000003, + 35.37393934800002 + ], + [ + 74.05589250899999, + 35.25704029800005 + ], + [ + 74.03624750800003, + 35.350448897000035 + ], + [ + 73.90637964100017, + 35.41463751200018 + ], + [ + 73.8391795760001, + 35.318958590000136 + ], + [ + 73.72685955900016, + 35.36243770100009 + ], + [ + 73.74771155500008, + 35.46162528700012 + ], + [ + 73.55914253800017, + 35.48055363700007 + ], + [ + 73.43855260000015, + 35.51200488400008 + ], + [ + 73.25621753900015, + 35.39389699500015 + ], + [ + 73.25797254200018, + 35.32357852700005 + ], + [ + 73.3529586160002, + 35.26275122300012 + ], + [ + 73.282020558, + 35.22476108500007 + ], + [ + 73.22802752200016, + 35.14090517300008 + ], + [ + 73.07095350700007, + 35.066546963000064 + ], + [ + 72.98603862500005, + 34.959436802000084 + ], + [ + 73.19022363000005, + 34.90250037700014 + ], + [ + 73.21642261000011, + 34.82609011000005 + ], + [ + 73.17063160200013, + 34.75857186800005 + ], + [ + 73.22190051900009, + 34.70958433800007 + ], + [ + 73.49593360000017, + 34.75142327800006 + ], + [ + 73.53041054700009, + 34.843739716000016 + ], + [ + 73.62622056200019, + 34.90147024100014 + ], + [ + 73.66741158100012, + 34.869080053000175 + ], + [ + 73.57956655400005, + 34.79704195400018 + ], + [ + 73.69747160100007, + 34.78011235300016 + ], + [ + 73.72324360599998, + 34.737484508000136 + ], + [ + 73.60540058500015, + 34.61271669400014 + ], + [ + 73.69362648600014, + 34.57849975400018 + ], + [ + 73.77837356200013, + 34.466911644000106 + ], + [ + 73.83058963400009, + 34.49650093600019 + ], + [ + 73.77281954600016, + 34.579197631000056 + ], + [ + 74.00483649300014, + 34.70607517000013 + ], + [ + 74.13987750300004, + 34.68851675900015 + ], + [ + 74.31508660500003, + 34.800012835000075 + ], + [ + 74.41407051100009, + 34.67897597400008 + ], + [ + 74.53946663200003, + 34.709405133000075 + ], + [ + 74.6099316160001, + 34.56995876200011 + ], + [ + 74.71366152400014, + 34.588097368000035 + ], + [ + 74.87671653000012, + 34.51195046000004 + ], + [ + 75.03182264300011, + 34.476409347000185 + ], + [ + 75.10556763300019, + 34.36191456100016 + ], + [ + 75.19049860800004, + 34.40258238100006 + ], + [ + 75.34980757400001, + 34.34936467200015 + ], + [ + 75.14705654500017, + 34.23934783400006 + ], + [ + 75.23338361000009, + 34.02171389800009 + ], + [ + 75.28883358700017, + 34.05200207200005 + ], + [ + 75.27240757200008, + 34.16621070000019 + ], + [ + 75.3455965060001, + 34.19475510400014 + ], + [ + 75.44994349000001, + 34.16640884800006 + ], + [ + 75.36560058900017, + 34.05844088300012 + ], + [ + 75.33969162300014, + 33.95375677900006 + ], + [ + 75.39320353699998, + 33.92580732300013 + ], + [ + 75.45433057800011, + 33.99381372700003 + ], + [ + 75.56743665000016, + 33.95556475600017 + ], + [ + 75.52718356600013, + 33.87629793600007 + ], + [ + 75.62375650100012, + 33.811689723000086 + ], + [ + 75.86099252499997, + 33.74797150100005 + ], + [ + 75.81783259600019, + 33.669691901000135 + ], + [ + 75.97090961800006, + 33.686022196000124 + ], + [ + 76.08784454300013, + 33.77015672200008 + ], + [ + 76.12622863100006, + 33.84764255600004 + ], + [ + 76.10952752100008, + 33.92824126000016 + ], + [ + 75.89310460200016, + 33.87560005800009 + ], + [ + 75.84973160500016, + 34.006501246000084 + ], + [ + 75.94143649900013, + 33.985078946000044 + ], + [ + 76.05155962000003, + 34.07105531200017 + ], + [ + 76.14060258900014, + 33.982171934000064 + ], + [ + 76.26328263800013, + 33.978482891000056 + ], + [ + 76.21483657900018, + 33.90042507600009 + ], + [ + 76.34243060300008, + 33.80775777200006 + ], + [ + 76.40296957000004, + 33.72492311100012 + ], + [ + 76.42066963400015, + 33.61731825000004 + ], + [ + 76.61781350600012, + 33.59750896300011 + ], + [ + 76.60395050900019, + 33.526026751000074 + ], + [ + 76.52294159400009, + 33.453581124000095 + ], + [ + 76.4505846470002, + 33.51992807800019 + ], + [ + 76.22887459100008, + 33.535662587000104 + ], + [ + 76.26412954600005, + 33.45682307600009 + ], + [ + 76.36381552000012, + 33.37532030000011 + ], + [ + 76.32765951100004, + 33.23851439600003 + ], + [ + 76.37641150900004, + 33.1352003990001 + ], + [ + 76.36071756900003, + 33.04664106500013 + ], + [ + 76.39270760500017, + 32.936643338000124 + ], + [ + 76.34619156300005, + 32.81756717200011 + ], + [ + 76.37162762200012, + 32.75777000400018 + ], + [ + 76.49063857700014, + 32.63127501500014 + ], + [ + 76.5120085750001, + 32.53371703800019 + ], + [ + 76.6902465610001, + 32.50521890200014 + ], + [ + 76.88906848900007, + 32.37775798300015 + ], + [ + 77.00755356400009, + 32.263004364000096 + ], + [ + 77.15847056900003, + 32.194166643000074 + ], + [ + 77.2179566010002, + 32.09332094800004 + ], + [ + 77.2373806550001, + 31.97699488400019 + ], + [ + 77.36477653100013, + 31.826389854000013 + ], + [ + 77.41264356900012, + 31.692365233000146 + ], + [ + 77.57106757400015, + 31.770109732000094 + ], + [ + 77.62322949800006, + 31.838690464000138 + ], + [ + 77.7027965580001, + 31.751044088000185 + ], + [ + 77.61701951400016, + 31.731546775000027 + ], + [ + 77.61977364000012, + 31.644738757000027 + ], + [ + 77.83680760000004, + 31.717217409000114 + ], + [ + 77.96080763200013, + 31.69172435300004 + ], + [ + 78.04308355500007, + 31.613904752000053 + ], + [ + 78.18704961500015, + 31.571750149000138 + ], + [ + 78.23648054800009, + 31.639434018000088 + ], + [ + 78.29976660000005, + 31.59808039000012 + ], + [ + 78.1716235610001, + 31.443332520000183 + ], + [ + 78.11766857900017, + 31.518580888000145 + ], + [ + 78.03517154100018, + 31.47241168900007 + ], + [ + 77.9845424990001, + 31.34457609800012 + ], + [ + 78.04461660500004, + 31.31219999100017 + ], + [ + 78.22978257000011, + 31.316814732000125 + ], + [ + 78.33441152000012, + 31.168957121 + ], + [ + 78.34899150500001, + 31.084147852000115 + ], + [ + 78.42796361800015, + 31.06913536000019 + ], + [ + 78.51750162200011, + 30.965725138000153 + ], + [ + 78.69288657600009, + 30.96623006400017 + ], + [ + 78.79576153000005, + 30.99061620600014 + ], + [ + 78.90757762700008, + 30.92709026400007 + ], + [ + 78.96347855100004, + 30.925818394000146 + ], + [ + 79.024467625, + 31.008403442000144 + ], + [ + 79.00922362600005, + 31.065574728000115 + ], + [ + 79.10959658100018, + 31.08971880000007 + ], + [ + 79.24681856200016, + 31.056682869000042 + ], + [ + 79.34210956900012, + 31.061765823000144 + ], + [ + 79.25189950400005, + 31.16340813400018 + ], + [ + 79.43994850800004, + 31.223123997000073 + ], + [ + 79.52507059000015, + 31.168490082 + ], + [ + 79.60003665600004, + 31.05414181200001 + ], + [ + 79.66102556300007, + 31.12656145500017 + ], + [ + 79.71184554500013, + 31.047789335000118 + ], + [ + 79.81984754100012, + 31.031273800000122 + ], + [ + 79.76647962800018, + 30.95249966900019 + ], + [ + 79.75885762800016, + 30.769544850000102 + ], + [ + 79.79189255200004, + 30.721264753000185 + ], + [ + 79.72074159400017, + 30.605646959000126 + ], + [ + 79.66864756300015, + 30.596753090000107 + ], + [ + 79.60765865600007, + 30.75302864500003 + ], + [ + 79.53778057300008, + 30.722534779000114 + ], + [ + 79.51998864200016, + 30.84704828600013 + ], + [ + 79.44121551600006, + 30.897867597000015 + ], + [ + 79.41834264400006, + 30.779709584000045 + ], + [ + 79.32559152000005, + 30.763190194000117 + ], + [ + 79.39547765000003, + 30.618351410000116 + ], + [ + 79.30780763600012, + 30.63359792400007 + ], + [ + 79.29383064500018, + 30.690770718000124 + ], + [ + 79.08799758999999, + 30.773355934000165 + ], + [ + 78.979995594, + 30.777166682000143 + ], + [ + 78.71365357899998, + 30.83606346600004 + ], + [ + 78.60001358000011, + 30.71741997400011 + ], + [ + 78.64602654100003, + 30.662489674000142 + ], + [ + 78.84126252300013, + 30.587812616 + ], + [ + 78.9423826420001, + 30.671919315000082 + ], + [ + 79.09964759700017, + 30.683469913000124 + ], + [ + 79.19584653200013, + 30.633710912000026 + ], + [ + 79.2761225340002, + 30.4783265210001 + ], + [ + 79.46234864100006, + 30.508086300000116 + ], + [ + 79.59581754100009, + 30.476499433000072 + ], + [ + 79.62805953800017, + 30.316074333000074 + ], + [ + 79.60343149400006, + 30.20603754600006 + ], + [ + 79.67915360800015, + 30.119849621000128 + ], + [ + 79.80378764700004, + 30.13385913400009 + ], + [ + 79.84123949900015, + 30.194172961999982 + ], + [ + 79.73863963900004, + 30.255928478000158 + ], + [ + 79.74660462700018, + 30.315691280000124 + ], + [ + 79.69680053100018, + 30.410316764000186 + ], + [ + 79.87111662500018, + 30.392388711000137 + ], + [ + 79.84920465400006, + 30.55773466000005 + ], + [ + 79.97072565400003, + 30.662319857000057 + ], + [ + 80.04045856200014, + 30.639411780000046 + ], + [ + 80.15799765500009, + 30.551756854000132 + ], + [ + 80.15002462100017, + 30.501953597000124 + ], + [ + 80.03547652600008, + 30.36150961200002 + ], + [ + 80.16895263500004, + 30.235011438000186 + ], + [ + 80.33236655500008, + 30.184657323000067 + ], + [ + 80.43051964700015, + 30.05550409700004 + ], + [ + 80.57008353100014, + 30.137371989000087 + ], + [ + 80.76020856500008, + 30.024638074000165 + ], + [ + 80.8715365, + 30.121379486000137 + ], + [ + 80.74919155900017, + 29.96908701000018 + ], + [ + 80.74793963800005, + 29.889336219000086 + ], + [ + 80.81807756000012, + 29.84317976000017 + ], + [ + 80.87840262000003, + 29.901185548000058 + ], + [ + 80.94358851300007, + 29.889065148000157 + ], + [ + 80.97199260400004, + 29.69252242700003 + ], + [ + 81.1287536390002, + 29.661626732000173 + ], + [ + 81.2525935770002, + 29.789850739000087 + ], + [ + 81.33067352000018, + 29.748954596000033 + ], + [ + 81.432243578, + 29.767789738000033 + ], + [ + 81.4323346060001, + 29.65746679300014 + ], + [ + 81.58859255900018, + 29.533899770000062 + ], + [ + 81.64101465800019, + 29.570237331999977 + ], + [ + 81.59187357200011, + 29.720938420000095 + ], + [ + 81.8617094990002, + 29.835398337000186 + ], + [ + 81.89427956300017, + 29.89832480400014 + ], + [ + 81.98089563600018, + 29.858690304000106 + ], + [ + 82.04299162400008, + 29.78201030700012 + ], + [ + 82.11633260700006, + 29.847076675000096 + ], + [ + 82.11112258300011, + 29.619878483000093 + ], + [ + 82.30517554400006, + 29.62419633700017 + ], + [ + 82.45453653300007, + 29.60053606800011 + ], + [ + 82.43811051700004, + 29.551720032000162 + ], + [ + 82.2696686290002, + 29.54690027000015 + ], + [ + 82.27627558, + 29.48111456700002 + ], + [ + 82.2182315710001, + 29.442110219000085 + ], + [ + 82.1912455310001, + 29.344901935000053 + ], + [ + 82.37741849700012, + 29.338892111000177 + ], + [ + 82.37272664300002, + 29.21097706000006 + ], + [ + 82.10065459200001, + 29.218804751000164 + ], + [ + 82.11808056900009, + 29.105078418000176 + ], + [ + 82.04763754600009, + 29.088426930000026 + ], + [ + 81.97548662600008, + 29.12515156800015 + ], + [ + 81.90695165900007, + 29.078380380000056 + ], + [ + 81.81534550400016, + 29.06966370400005 + ], + [ + 81.87549554999998, + 28.981317271000023 + ], + [ + 82.05163554600011, + 28.93364318500005 + ], + [ + 82.13630651400007, + 28.984283124000058 + ], + [ + 82.1717296110001, + 29.044813708000106 + ], + [ + 82.32065557800013, + 29.057091352000043 + ], + [ + 82.35780350300007, + 28.95175429800014 + ], + [ + 82.4766845380002, + 28.964650695000046 + ], + [ + 82.43488365200011, + 29.120816615000024 + ], + [ + 82.58457153500012, + 29.132727300000113 + ], + [ + 82.77628359800008, + 29.060813923000126 + ], + [ + 82.86577550200008, + 28.998009664000165 + ], + [ + 82.93213653800012, + 28.998024416000135 + ], + [ + 82.9553455250001, + 28.920816694000052 + ], + [ + 82.80975354300011, + 28.876252461999968 + ], + [ + 82.75953655500007, + 28.944811568000148 + ], + [ + 82.59735058400014, + 28.9153597400001 + ], + [ + 82.53153252800007, + 28.817893628000036 + ], + [ + 82.704429565, + 28.769405659000086 + ], + [ + 82.76976750600005, + 28.718208827000126 + ], + [ + 82.82982652500004, + 28.78113311499999 + ], + [ + 83.07031254700013, + 28.61772573400009 + ], + [ + 82.94918851400018, + 28.57365854800014 + ], + [ + 83.05905162800019, + 28.501765456000157 + ], + [ + 83.21588860300017, + 28.539679989000092 + ], + [ + 83.19428257200013, + 28.623380501000156 + ], + [ + 83.29948450900014, + 28.59788861900006 + ], + [ + 83.37077360100005, + 28.64873441700007 + ], + [ + 83.45848854200005, + 28.54659254500001 + ], + [ + 83.49224062200011, + 28.585088950000113 + ], + [ + 83.61490659000015, + 28.595527604000154 + ], + [ + 83.57538558099998, + 28.66321096900009 + ], + [ + 83.76618150200011, + 28.842234675000043 + ], + [ + 83.76982863600011, + 28.754448153000112 + ], + [ + 83.70416262700013, + 28.744147632000022 + ], + [ + 83.68986561500003, + 28.61500982900003 + ], + [ + 83.79209164100013, + 28.548511498000096 + ], + [ + 83.74121851800004, + 28.503989342000125 + ], + [ + 83.95218649500015, + 28.45119860700015 + ], + [ + 84.00827064700002, + 28.521475501000168 + ], + [ + 84.21629355900012, + 28.377596613000037 + ], + [ + 84.30456556000019, + 28.40075061400006 + ], + [ + 84.33703655099998, + 28.490117796000106 + ], + [ + 84.41990658300017, + 28.54880050600019 + ], + [ + 84.45545155200011, + 28.39424692800003 + ], + [ + 84.53070863800008, + 28.405280362000042 + ], + [ + 84.6867295510001, + 28.280850339000153 + ], + [ + 84.75476059800019, + 28.287795081000127 + ], + [ + 84.83841651800014, + 28.35139042500009 + ], + [ + 84.84412358800017, + 28.494550649000132 + ], + [ + 84.90623449700018, + 28.553197484 + ], + [ + 84.97248858000012, + 28.453122422000092 + ], + [ + 84.90792060000012, + 28.42819430600008 + ], + [ + 84.94802063100008, + 28.19707388700016 + ], + [ + 85.0957945900002, + 28.242245137 + ], + [ + 85.1361995540002, + 28.178122572 + ], + [ + 85.22385364200005, + 28.16109825600006 + ], + [ + 85.23865558000017, + 28.264740154000094 + ], + [ + 85.30687756600014, + 28.381649263000156 + ], + [ + 85.17348460599999, + 28.438502874000164 + ], + [ + 85.45557353500016, + 28.455997415000184 + ], + [ + 85.46432457700018, + 28.347951665000153 + ], + [ + 85.38126360400014, + 28.106441542000027 + ], + [ + 85.45398751100004, + 28.046144310000102 + ], + [ + 85.64804851900004, + 28.062450464000108 + ], + [ + 85.71516459700018, + 28.019871234000163 + ], + [ + 85.75550066200009, + 28.126689872999975 + ], + [ + 85.71063954200014, + 28.14662388300019 + ], + [ + 85.71811653499998, + 28.257524508000074 + ], + [ + 85.63587162500005, + 28.228865440000106 + ], + [ + 85.57979551900013, + 28.28244642100009 + ], + [ + 85.54864451100019, + 28.408296171000075 + ], + [ + 85.48634350100019, + 28.409543231000043 + ], + [ + 85.49132553700014, + 28.540378704000034 + ], + [ + 85.45518461400002, + 28.580252256000165 + ], + [ + 85.33680749900003, + 28.557822116000068 + ], + [ + 85.31313365100004, + 28.588973794000026 + ], + [ + 85.4701386000001, + 28.662491801999977 + ], + [ + 85.605964659, + 28.593957841000076 + ], + [ + 85.60472061700011, + 28.535395160000178 + ], + [ + 85.7305755640001, + 28.486797053000032 + ], + [ + 85.84770964300014, + 28.501750536000145 + ], + [ + 85.89381463700016, + 28.412033997000094 + ], + [ + 85.86390649800012, + 28.302383616000043 + ], + [ + 85.7592396610001, + 28.23384932000016 + ], + [ + 85.84147652500008, + 28.202697809000085 + ], + [ + 85.81442259100004, + 28.06498749800005 + ], + [ + 85.9563446410001, + 28.023033056000088 + ], + [ + 86.01101661000007, + 28.097380872000144 + ], + [ + 86.07549255600009, + 27.87569545800011 + ], + [ + 86.20144657700013, + 27.86702957600005 + ], + [ + 86.17477452300005, + 27.96155280100004 + ], + [ + 86.23625159199997, + 28.018660384000157 + ], + [ + 86.36912554500009, + 28.058802660000083 + ], + [ + 86.48847160800011, + 28.176776774000075 + ], + [ + 86.6174315470002, + 28.174033712000096 + ], + [ + 86.64212061100017, + 28.293378937000114 + ], + [ + 86.76147455400019, + 28.287892144000068 + ], + [ + 86.80674756000008, + 28.165804192000053 + ], + [ + 86.86161751000003, + 28.24399611700011 + ], + [ + 86.92884054100006, + 28.205585710000037 + ], + [ + 87.05093352200004, + 28.19872495500016 + ], + [ + 87.16616859700014, + 28.24399611700011 + ], + [ + 87.26631960000003, + 28.195982899000114 + ], + [ + 87.34588666000008, + 28.095840948999978 + ], + [ + 87.36508960000015, + 27.99021354600012 + ], + [ + 87.34313957500007, + 27.898301451000123 + ], + [ + 87.24162265700005, + 27.929853952000144 + ], + [ + 87.21144059700015, + 27.83245707600014 + ], + [ + 87.14285265700005, + 27.741917099000148 + ], + [ + 87.04544857200005, + 27.669211967000138 + ], + [ + 86.88494166400005, + 27.636288521999973 + ], + [ + 86.78617065800017, + 27.762495174000094 + ], + [ + 86.84241456900003, + 27.854408274000036 + ], + [ + 86.81085955400016, + 27.960032660000138 + ], + [ + 86.69837156300014, + 27.946315172000084 + ], + [ + 86.57901762000017, + 27.96140561500016 + ], + [ + 86.6476136070001, + 27.726828499000135 + ], + [ + 86.58998852600018, + 27.71311000600008 + ], + [ + 86.42399566200015, + 27.82559631999999 + ], + [ + 86.35814659300013, + 27.847545340000124 + ], + [ + 86.34553551599998, + 27.746212824000054 + ], + [ + 86.51072656700006, + 27.716343074000065 + ], + [ + 86.50403562900016, + 27.621826051000028 + ], + [ + 86.6464845650001, + 27.652139707000117 + ], + [ + 86.72763060800014, + 27.76048016400017 + ], + [ + 86.767303664, + 27.642947106000065 + ], + [ + 86.8417735210001, + 27.61424646400019 + ], + [ + 87.10958052500013, + 27.666868220000083 + ], + [ + 87.28791859100005, + 27.784120987000165 + ], + [ + 87.36526461400007, + 27.783957037000107 + ], + [ + 87.41349760500003, + 27.86467476400003 + ], + [ + 87.5130695860002, + 27.824116411000034 + ], + [ + 87.51709759400006, + 27.650610848000042 + ], + [ + 87.59192653100018, + 27.696653983000147 + ], + [ + 87.55738856400006, + 27.884671806000142 + ], + [ + 87.7300646540001, + 27.926880053000048 + ], + [ + 87.79721861900009, + 28.072691138000096 + ], + [ + 87.93727854399998, + 28.114899217000186 + ], + [ + 87.99868051100015, + 28.04774910900005 + ], + [ + 88.15792057900012, + 28.030482722999977 + ], + [ + 88.4495546510002, + 28.020889300000192 + ], + [ + 88.56275962900008, + 28.103386673000102 + ], + [ + 88.6279906170002, + 28.022808085000065 + ], + [ + 88.72583760200007, + 27.992110371000138 + ], + [ + 88.84671755400012, + 28.04391237600015 + ], + [ + 88.9426496100001, + 27.99978500900005 + ], + [ + 88.9829405800001, + 27.930717959000162 + ], + [ + 88.99636855700015, + 27.821358430000032 + ], + [ + 88.950324583, + 27.750372595000044 + ], + [ + 88.77188861700017, + 27.683222319000095 + ], + [ + 88.72609760900019, + 27.57755082700004 + ], + [ + 88.64543151400005, + 27.501494108000088 + ], + [ + 88.65500666500014, + 27.386090053000032 + ], + [ + 88.89363056400003, + 27.40948210099998 + ], + [ + 89.02741261200003, + 27.497974379000084 + ], + [ + 89.14819365700015, + 27.365099924000162 + ], + [ + 89.25861366500004, + 27.40910122700012 + ], + [ + 89.29546352800014, + 27.597131119999972 + ], + [ + 89.39585157100015, + 27.502685176000057 + ], + [ + 89.56033351300005, + 27.601950715000044 + ], + [ + 89.66079766300004, + 27.714346169000123 + ], + [ + 89.5935136120001, + 27.804321206000054 + ], + [ + 89.69460255000007, + 27.955436024000107 + ], + [ + 89.65178661500016, + 28.053188796000143 + ], + [ + 89.8446736530002, + 27.957304853000096 + ], + [ + 89.7922825670002, + 27.833919885000114 + ], + [ + 89.84967764900017, + 27.77379347599998 + ], + [ + 89.95706961000002, + 27.81524399900013 + ], + [ + 89.96115863800014, + 27.991914402000134 + ], + [ + 90.00849962700005, + 28.00442405700005 + ], + [ + 90.06188162100011, + 27.88942686000007 + ], + [ + 90.16059864800008, + 27.921515467000063 + ], + [ + 90.2618555590002, + 27.994416400000034 + ], + [ + 90.32666057900008, + 28.080821752000134 + ], + [ + 90.2780606280001, + 28.129422709000153 + ], + [ + 90.19570155600013, + 28.107822712000086 + ], + [ + 90.15114553800004, + 28.15642350100012 + ], + [ + 89.81227156200003, + 28.09972277600008 + ], + [ + 89.7744675020001, + 28.248228643 + ], + [ + 89.84602364200009, + 28.271178964000114 + ], + [ + 89.88247653900004, + 28.20637763200017 + ], + [ + 89.98913558700013, + 28.245527993000053 + ], + [ + 90.13224753100008, + 28.23877804700004 + ], + [ + 90.06879451200001, + 28.31168132600004 + ], + [ + 89.94457956899998, + 28.30898017400017 + ], + [ + 89.9931865600002, + 28.44938644000007 + ], + [ + 90.11874361400015, + 28.45748637600019 + ], + [ + 90.16329963200008, + 28.39268470900015 + ], + [ + 90.20245351400013, + 28.252277772000127 + ], + [ + 90.25645459600014, + 28.30898017400017 + ], + [ + 90.36986560100013, + 28.36838272200015 + ], + [ + 90.45492565799998, + 28.272528953000176 + ], + [ + 90.55483257900016, + 28.28062956000008 + ], + [ + 90.60343957100008, + 28.338682957000117 + ], + [ + 90.69119256599998, + 28.277930587000185 + ], + [ + 90.61153464600005, + 28.205026469000188 + ], + [ + 90.59533661800009, + 28.132123692999983 + ], + [ + 90.89100657600017, + 28.04301920100005 + ], + [ + 90.89640753900017, + 28.00116617900011 + ], + [ + 90.6655426010002, + 28.052469964000124 + ], + [ + 90.68849158100011, + 27.93501485800016 + ], + [ + 90.60073858700002, + 27.887761879000095 + ], + [ + 90.58392365100019, + 27.75831427999998 + ], + [ + 90.63903064100003, + 27.696086025000056 + ], + [ + 90.70597053100016, + 27.72484668200002 + ], + [ + 90.94605254600009, + 27.684464349000052 + ], + [ + 90.95007351300018, + 27.856688990000123 + ], + [ + 91.01711264500017, + 27.839879754000037 + ], + [ + 91.00399060800004, + 27.978824886000154 + ], + [ + 91.06849656100013, + 28.044412105 + ], + [ + 91.14104461500011, + 28.061205584000163 + ], + [ + 91.18758362400007, + 27.995692126000108 + ], + [ + 91.179206583, + 27.859611089000055 + ], + [ + 91.33895157600011, + 27.760374217000162 + ], + [ + 91.43385366300004, + 27.852989386000047 + ], + [ + 91.53672761000001, + 27.780163387000073 + ], + [ + 91.67319455000012, + 27.764036103000137 + ], + [ + 91.71909351600016, + 27.916901565000046 + ], + [ + 91.69581563000003, + 28.05889569900006 + ], + [ + 91.70512356600017, + 28.145023945000162 + ], + [ + 91.80988360900005, + 28.21718609600009 + ], + [ + 91.83781462500019, + 28.177613623000127 + ], + [ + 91.9029926400001, + 27.944835263000073 + ], + [ + 92.044547562, + 27.91764537500012 + ], + [ + 92.11074850400013, + 28.001700106000158 + ], + [ + 92.28336357400008, + 27.99371818700007 + ], + [ + 92.34023260700013, + 28.02364895800008 + ], + [ + 92.47393066900008, + 27.97875196399997 + ], + [ + 92.51483955300006, + 28.107458602000122 + ], + [ + 92.63257562100006, + 28.13639125500015 + ], + [ + 92.67049350700017, + 28.21121935500014 + ], + [ + 92.73634358200007, + 28.184281427000087 + ], + [ + 92.78922266300009, + 28.225188635000052 + ], + [ + 92.89997861700004, + 28.21620926900016 + ], + [ + 92.85507961100012, + 28.137389540000072 + ], + [ + 92.80020161500005, + 28.16233240700012 + ], + [ + 92.68745462300006, + 28.113443448000112 + ], + [ + 92.75929256300009, + 28.063559390000023 + ], + [ + 92.71140255900013, + 27.898935458000096 + ], + [ + 92.64654557100005, + 27.78519722300001 + ], + [ + 92.69425955500014, + 27.772492773000124 + ], + [ + 92.6843715920001, + 27.65412755900013 + ], + [ + 92.88633757200012, + 27.732636488000082 + ], + [ + 92.79252664100005, + 27.828991159000168 + ], + [ + 92.83690663900018, + 27.86743676900005 + ], + [ + 92.97545664900014, + 27.891868676000172 + ], + [ + 92.95411665900014, + 27.9801240810001 + ], + [ + 93.01042963700013, + 28.04544224100016 + ], + [ + 93.08901266200002, + 28.07479080500019 + ], + [ + 93.27391057300014, + 28.010162643 + ], + [ + 93.3647236320001, + 28.05673266500014 + ], + [ + 93.1970905980001, + 28.126868910000155 + ], + [ + 93.20294166900004, + 28.19935477100006 + ], + [ + 93.28222659400012, + 28.23228542400011 + ], + [ + 93.34671762800014, + 28.19321502700012 + ], + [ + 93.43565364400018, + 28.193844172000183 + ], + [ + 93.50312058800006, + 28.14688808000011 + ], + [ + 93.64824653600016, + 28.21482407600007 + ], + [ + 93.73018651300004, + 28.158436666000114 + ], + [ + 93.80465653800013, + 28.214105244000052 + ], + [ + 93.81537665700012, + 28.270451918000163 + ], + [ + 93.69315358900013, + 28.289670951000062 + ], + [ + 93.41797654500016, + 28.306030582000176 + ], + [ + 93.26914965200012, + 28.347629632000064 + ], + [ + 93.24672655200004, + 28.442954838000105 + ], + [ + 93.28811655700014, + 28.474224701000026 + ], + [ + 93.37875359700001, + 28.414265930000113 + ], + [ + 93.48718256700016, + 28.411496214000124 + ], + [ + 93.59638954500019, + 28.56247993900007 + ], + [ + 93.72992650700019, + 28.584109943000044 + ], + [ + 93.88932063300012, + 28.537331044000155 + ], + [ + 93.84678666600007, + 28.648047436000184 + ], + [ + 93.79232759700011, + 28.64330462000015 + ], + [ + 93.71584356800014, + 28.71626171100013 + ], + [ + 93.5548855460001, + 28.719568539000193 + ], + [ + 93.56517064400003, + 28.79583866200005 + ], + [ + 93.63061553800014, + 28.88598787400008 + ], + [ + 93.76093250800011, + 28.96425976300003 + ], + [ + 93.61543255900006, + 29.05514909800013 + ], + [ + 93.53283661400008, + 29.02252958000014 + ], + [ + 93.47689059600009, + 29.066800949000083 + ], + [ + 93.39136450600012, + 28.98176117700018 + ], + [ + 93.46916952200007, + 28.825742441999978 + ], + [ + 93.32408866800012, + 28.870797687000106 + ], + [ + 93.12261956700007, + 28.886120979000168 + ], + [ + 93.04732560100007, + 28.825887449 + ], + [ + 93.00250253600018, + 28.972823553000183 + ], + [ + 92.9165345520002, + 29.001526542000192 + ], + [ + 92.90684557500009, + 29.078416255000093 + ], + [ + 92.96333356700018, + 29.115006783000183 + ], + [ + 93.17504853899999, + 29.16410612800007 + ], + [ + 93.21647659900015, + 29.041992862000086 + ], + [ + 93.3126606140001, + 29.051399537000123 + ], + [ + 93.44142156700019, + 29.181300261000104 + ], + [ + 93.54187063000006, + 29.236462236000136 + ], + [ + 93.45870957700009, + 29.310934105000058 + ], + [ + 93.51958465800016, + 29.391451170000153 + ], + [ + 93.5861896080001, + 29.252384500000062 + ], + [ + 93.72602054000004, + 29.19679068800008 + ], + [ + 93.85471359900004, + 29.180566174000035 + ], + [ + 93.96900956600001, + 29.269450893 + ], + [ + 93.80090362500005, + 29.300319598000158 + ], + [ + 93.6888736210002, + 29.348796670000127 + ], + [ + 93.76527366300002, + 29.400478647 + ], + [ + 93.94554157800019, + 29.410091517000126 + ], + [ + 93.98912864800008, + 29.36948890700006 + ], + [ + 94.10135663200015, + 29.446777933000135 + ], + [ + 94.07270862800016, + 29.29930672900008 + ], + [ + 94.14282961900017, + 29.271563635 + ], + [ + 94.1980816160002, + 29.34671376700004 + ], + [ + 94.27638250500019, + 29.39167396099998 + ], + [ + 94.21518656500012, + 29.495117207000078 + ], + [ + 94.23995961600019, + 29.57247831800015 + ], + [ + 94.1787266280001, + 29.629324888000042 + ], + [ + 94.00880466300015, + 29.625485306000144 + ], + [ + 93.90656254300012, + 29.67787622400016 + ], + [ + 93.82126662000007, + 29.642153391000193 + ], + [ + 93.77271260200013, + 29.533793488000185 + ], + [ + 93.71029659200019, + 29.583580819000133 + ], + [ + 93.77591666800004, + 29.693142520000094 + ], + [ + 93.69194056000003, + 29.748249342000122 + ], + [ + 93.60108961400016, + 29.685486992000108 + ], + [ + 93.56729160100014, + 29.808034105 + ], + [ + 93.50939964000014, + 29.825377436000167 + ], + [ + 93.363937577, + 29.799816655000086 + ], + [ + 93.32986463800017, + 29.66086565500018 + ], + [ + 93.13831350700008, + 29.664582526000117 + ], + [ + 92.97294660400019, + 29.713433934000193 + ], + [ + 93.062766576, + 29.751922292000074 + ], + [ + 93.2097015060001, + 29.72249745400012 + ], + [ + 93.23525256500005, + 29.82487971900008 + ], + [ + 93.06515458000007, + 29.91951509400019 + ], + [ + 92.87695352900005, + 29.889264302000072 + ], + [ + 92.86263254400006, + 29.774117572000137 + ], + [ + 92.62208566900006, + 29.761514039000133 + ], + [ + 92.56592557700009, + 29.665177473000085 + ], + [ + 92.48345150500006, + 29.661513911000156 + ], + [ + 92.47354862200018, + 29.786671147999982 + ], + [ + 92.34309351900004, + 29.90254073400007 + ], + [ + 92.33488461800005, + 29.9496480360001 + ], + [ + 92.59769466600011, + 29.89405707400016 + ], + [ + 92.76174158700019, + 29.947098093000022 + ], + [ + 92.81182865500017, + 30.010074517000135 + ], + [ + 92.75073262800015, + 30.05110795600001 + ], + [ + 92.68952964700014, + 30.15465513800018 + ], + [ + 92.75856752800001, + 30.240533101000096 + ], + [ + 92.82729360200017, + 30.264696284000138 + ], + [ + 92.91917451600017, + 30.107840030000034 + ], + [ + 92.98445864500013, + 30.06287564500019 + ], + [ + 93.04184752500015, + 30.12929820500011 + ], + [ + 93.01620460100014, + 30.197990584000024 + ], + [ + 92.94652550400008, + 30.23042435800005 + ], + [ + 92.87033853100019, + 30.33617346600016 + ], + [ + 92.88738262800013, + 30.444058786000085 + ], + [ + 93.08145855500004, + 30.25840935300016 + ], + [ + 93.15867650300004, + 30.298279049000143 + ], + [ + 93.23322263500012, + 30.254081777000067 + ], + [ + 93.17724660900018, + 30.093243448000067 + ], + [ + 93.21145650900007, + 29.987429464000115 + ], + [ + 93.56812258300016, + 29.962903513000015 + ], + [ + 93.31740560900005, + 30.045399210000028 + ], + [ + 93.27326952500005, + 30.08586988800016 + ], + [ + 93.32702652600017, + 30.274932934000162 + ], + [ + 93.2265246560001, + 30.393095473000187 + ], + [ + 93.25608863500008, + 30.429201192 + ], + [ + 93.38619957700007, + 30.33759956300014 + ], + [ + 93.397331582, + 30.200460730000145 + ], + [ + 93.52528351400008, + 30.131347076999987 + ], + [ + 93.58415263700005, + 30.21549786500009 + ], + [ + 93.67034961500013, + 30.176986540000144 + ], + [ + 93.63327763100006, + 30.04307826100012 + ], + [ + 93.7211835110001, + 30.052446042999975 + ], + [ + 93.74181355400003, + 30.134867978999978 + ], + [ + 93.83187861300019, + 30.158438226000044 + ], + [ + 93.88555162700004, + 30.22356762600009 + ], + [ + 93.98783163300016, + 30.22295675300012 + ], + [ + 94.03223459700018, + 30.154503426000076 + ], + [ + 94.17538459500008, + 30.11021596400019 + ], + [ + 94.113563533, + 30.030533904000038 + ], + [ + 94.10276060100006, + 29.953048909000188 + ], + [ + 93.97745550700012, + 29.962007320000055 + ], + [ + 93.71793351200006, + 29.927910742999984 + ], + [ + 93.71785757200018, + 29.894447839000065 + ], + [ + 94.14694261900013, + 29.811933199000066 + ], + [ + 94.22468560900006, + 29.872593703000177 + ], + [ + 94.27948766500003, + 29.86369698300018 + ], + [ + 94.35537758400005, + 29.760019043000057 + ], + [ + 94.40795860400016, + 29.828984504000175 + ], + [ + 94.47012366000013, + 29.79725447499999 + ], + [ + 94.4751355350001, + 29.67140137200016 + ], + [ + 94.57460056200011, + 29.71949153500003 + ], + [ + 94.54184760500004, + 29.839489041000093 + ], + [ + 94.4698336460001, + 29.89814593400007 + ], + [ + 94.36226667000005, + 29.931002660000104 + ], + [ + 94.42929054799998, + 30.050139008000144 + ], + [ + 94.30427563500007, + 30.107264025000063 + ], + [ + 94.35942051100017, + 30.197473588000094 + ], + [ + 94.45145464700005, + 30.138657941000076 + ], + [ + 94.50678258400012, + 30.15095335500007 + ], + [ + 94.67529253300017, + 30.10920108300013 + ], + [ + 94.8324736690002, + 30.04351629900009 + ], + [ + 94.96454664700013, + 30.063981554000122 + ], + [ + 94.75026664500018, + 30.243927939000116 + ], + [ + 94.6360935570001, + 30.25541751700007 + ], + [ + 94.29626454700013, + 30.377417962000038 + ], + [ + 94.20854156000019, + 30.367382477000035 + ], + [ + 94.17524763500012, + 30.417608685000175 + ], + [ + 93.96489757200015, + 30.43082811900007 + ], + [ + 93.86586756500009, + 30.37595515200013 + ], + [ + 93.80543555200012, + 30.414907868000057 + ], + [ + 93.67200453800001, + 30.37312810400016 + ], + [ + 93.63681764400008, + 30.416971828000158 + ], + [ + 93.89096851500005, + 30.493367846000183 + ], + [ + 93.76207764300011, + 30.573871835000034 + ], + [ + 93.60152463500003, + 30.553717549000112 + ], + [ + 93.21807066900004, + 30.59600609400013 + ], + [ + 93.18777461500014, + 30.671364601 + ], + [ + 93.43502751600005, + 30.631661034000047 + ], + [ + 93.45165251800017, + 30.681358009000178 + ], + [ + 93.78110456299999, + 30.614781390000132 + ], + [ + 93.98435951300007, + 30.52360589699998 + ], + [ + 94.05537451700008, + 30.626082207000024 + ], + [ + 93.84371956000012, + 30.680752165000115 + ], + [ + 93.69912753900002, + 30.81830523100018 + ], + [ + 93.70444451500015, + 30.863713688000075 + ], + [ + 93.61791963700011, + 30.911995965000187 + ], + [ + 93.51013154700007, + 30.872349396000118 + ], + [ + 93.33295454300008, + 31.051995039000133 + ], + [ + 93.53468365100008, + 31.07758113300008 + ], + [ + 93.7576365760001, + 31.05754084100016 + ], + [ + 93.94342062100014, + 31.15612643900016 + ], + [ + 93.8513566470001, + 31.169156946000157 + ], + [ + 93.70958765100005, + 31.130138349000163 + ], + [ + 93.64376054200011, + 31.149056807000136 + ], + [ + 93.501296519, + 31.123088497000026 + ], + [ + 93.504585577, + 31.18473739500007 + ], + [ + 93.68691259100012, + 31.219761345 + ], + [ + 93.74820760500018, + 31.27654840400004 + ], + [ + 93.98743466600007, + 31.268206566000117 + ], + [ + 94.09724463800006, + 31.22154400900007 + ], + [ + 94.25385262000009, + 31.272223510000117 + ], + [ + 94.26415263800016, + 31.343331888000193 + ], + [ + 94.3357845500002, + 31.346930742000097 + ], + [ + 94.36660765800019, + 31.22118828100014 + ], + [ + 94.31360653700006, + 31.123475574000167 + ], + [ + 94.35671265400003, + 31.04225644100012 + ], + [ + 94.32638558700012, + 30.982298340000057 + ], + [ + 94.17491956700013, + 30.94530883400006 + ], + [ + 94.20053064000012, + 31.05969968400018 + ], + [ + 94.0161586100001, + 31.074508160000107 + ], + [ + 93.98181962900009, + 31.136882093000168 + ], + [ + 93.84703057900009, + 31.060836773 + ], + [ + 93.80872360500013, + 30.940490916000044 + ], + [ + 93.91155966600013, + 30.87111055000014 + ], + [ + 94.08625763900005, + 30.88969473900005 + ], + [ + 94.228736583, + 30.8698725430001 + ], + [ + 94.37493859900019, + 30.97270290500012 + ], + [ + 94.47653162500012, + 30.91695168200016 + ], + [ + 94.50511961400002, + 30.853142935 + ], + [ + 94.5075376260001, + 30.67030144000006 + ], + [ + 94.48464966500018, + 30.61181872200018 + ], + [ + 94.34159052700016, + 30.665167860000054 + ], + [ + 94.18430361100013, + 30.578756808000037 + ], + [ + 94.17304956500016, + 30.50995932 + ], + [ + 94.23121662000017, + 30.481304443000113 + ], + [ + 94.33034553300007, + 30.519138845000043 + ], + [ + 94.44218459700005, + 30.467035761999966 + ], + [ + 94.60836052100018, + 30.57178490900003 + ], + [ + 94.65089465700015, + 30.424844446000122 + ], + [ + 94.78411059100017, + 30.469011712000054 + ], + [ + 94.96687363100011, + 30.48673222800005 + ], + [ + 94.95053864300019, + 30.37162237900003 + ], + [ + 94.97336558300009, + 30.283673415000123 + ], + [ + 95.11353262900008, + 30.289759348000132 + ], + [ + 95.22544059200004, + 30.184085174000018 + ], + [ + 95.17678062700008, + 30.12805516800006 + ], + [ + 95.38411756300007, + 30.00541484900009 + ], + [ + 95.49252356700009, + 29.960773336000102 + ], + [ + 95.51900451400007, + 30.00790176000004 + ], + [ + 95.35487360600007, + 30.067184446000056 + ], + [ + 95.26869154800016, + 30.16891979600007 + ], + [ + 95.20244551200011, + 30.37859913900013 + ], + [ + 95.25166354400011, + 30.40750698200003 + ], + [ + 95.24483464000014, + 30.527023702000065 + ], + [ + 95.30802161700018, + 30.52245187600016 + ], + [ + 95.38412460400002, + 30.40383202099997 + ], + [ + 95.42980161800017, + 30.449526637000133 + ], + [ + 95.37479353400016, + 30.555691655000032 + ], + [ + 95.45925864300006, + 30.574815805000185 + ], + [ + 95.57288355500003, + 30.41465372800019 + ], + [ + 95.41498559800016, + 30.33563551500015 + ], + [ + 95.4142075900001, + 30.24586198000003 + ], + [ + 95.5371245120001, + 30.14405873600009 + ], + [ + 95.6304546570002, + 30.152933495000127 + ], + [ + 95.68732452900002, + 30.220440002000146 + ], + [ + 95.68327355500008, + 30.323650064000105 + ], + [ + 95.56235454400007, + 30.510699275000036 + ], + [ + 95.61920966300005, + 30.521813008000095 + ], + [ + 95.80689958600004, + 30.298686075000035 + ], + [ + 95.75379151300012, + 30.126334364000115 + ], + [ + 95.81237062200012, + 30.106175048000125 + ], + [ + 95.88725253400008, + 30.156092299000193 + ], + [ + 96.00769059200019, + 30.157007268000143 + ], + [ + 96.08316057700011, + 30.005975766000063 + ], + [ + 96.1065975520001, + 29.83398531500012 + ], + [ + 96.14695759000017, + 29.750297377000038 + ], + [ + 96.26026952100011, + 29.829030270000032 + ], + [ + 96.33238255500015, + 29.848859841000035 + ], + [ + 96.36511958600016, + 29.762074789000167 + ], + [ + 96.41905964800009, + 29.756365204000133 + ], + [ + 96.5170435930001, + 29.678181158000143 + ], + [ + 96.53873461700016, + 29.61381065600017 + ], + [ + 96.62957751700009, + 29.604911925000067 + ], + [ + 96.61356355500004, + 29.683918906000088 + ], + [ + 96.5448225610001, + 29.785884926000165 + ], + [ + 96.6269836530002, + 29.81821795000019 + ], + [ + 96.67728462700012, + 29.641970498000035 + ], + [ + 96.75492066400017, + 29.59463135300018 + ], + [ + 96.77451353100014, + 29.4482290090001 + ], + [ + 96.82510351300016, + 29.389729192000118 + ], + [ + 96.86169454400016, + 29.573743147000073 + ], + [ + 96.96031953700009, + 29.595968266 + ], + [ + 97.06034062000009, + 29.56818728600018 + ], + [ + 97.06311754500013, + 29.64875414 + ], + [ + 97.1923066450002, + 29.655698882000138 + ], + [ + 97.13951859200012, + 29.53068279600018 + ], + [ + 97.24787162200005, + 29.415387371000065 + ], + [ + 97.06589463700004, + 29.382050530000186 + ], + [ + 97.05061358900008, + 29.188968864 + ], + [ + 97.1595615670002, + 29.218161859000077 + ], + [ + 97.10700250800005, + 29.33425943300017 + ], + [ + 97.23233056800007, + 29.356288415000165 + ], + [ + 97.23322257000012, + 29.212185227000077 + ], + [ + 97.32532459900006, + 29.132220362000055 + ], + [ + 97.35111253000008, + 29.207010240000102 + ], + [ + 97.30010261400014, + 29.399949749000143 + ], + [ + 97.387496527, + 29.34256606600013 + ], + [ + 97.40663962100012, + 29.117101756000068 + ], + [ + 97.48002653600014, + 29.066846714000064 + ], + [ + 97.50212860900001, + 28.904858221000097 + ], + [ + 97.57613360500011, + 28.810935810000046 + ], + [ + 97.54197651200008, + 28.736938022000174 + ], + [ + 97.58770767300012, + 28.655921061000186 + ], + [ + 97.475341555, + 28.576509232999967 + ], + [ + 97.38271364600013, + 28.387152150000077 + ], + [ + 97.06494865500008, + 28.390266865000115 + ], + [ + 97.08306865399999, + 28.255374383000117 + ], + [ + 97.07971958000019, + 27.993644259000177 + ], + [ + 97.10022758300016, + 27.920407548000185 + ], + [ + 97.18940751200006, + 27.905064977000166 + ], + [ + 97.21056360400007, + 27.858489088 + ], + [ + 96.89605766500006, + 27.61294928000018 + ], + [ + 96.92391961400011, + 27.495704392000107 + ], + [ + 96.98057558000005, + 27.472139342000105 + ], + [ + 97.03073154700013, + 27.61258131500017 + ], + [ + 97.12101755300012, + 27.597528926000052 + ], + [ + 97.16114055000014, + 27.632642730000157 + ], + [ + 97.21130355800005, + 27.76806394300013 + ], + [ + 97.3015895630001, + 27.748001522000095 + ], + [ + 97.4771426580001, + 27.76806394300013 + ], + [ + 97.53733863700012, + 27.7329553350001 + ], + [ + 97.66774764000013, + 27.76806394300013 + ], + [ + 97.65270262600018, + 27.82323765300015 + ], + [ + 97.55238365000014, + 27.963675770000123 + ], + [ + 97.5423505120001, + 28.013832576000027 + ], + [ + 97.6376495660001, + 28.134208440000123 + ], + [ + 97.70787851600005, + 28.03389583400002 + ], + [ + 97.66273459100006, + 27.948629080000046 + ], + [ + 97.76304652600015, + 27.858347936000087 + ], + [ + 97.84330760800009, + 27.833268109000187 + ], + [ + 97.93359361300014, + 27.763049888000126 + ], + [ + 97.92356164800015, + 27.903487 + ], + [ + 98.10413365900007, + 27.89345754900006 + ], + [ + 98.13422351800006, + 27.813207029000125 + ], + [ + 98.1442566560001, + 27.672768744000166 + ], + [ + 98.24958767500016, + 27.61759436400007 + ], + [ + 98.22554066499998, + 27.830727218000163 + ], + [ + 98.14749156800008, + 28.01210858600018 + ], + [ + 98.15220655600007, + 28.135714333000067 + ], + [ + 97.99944251500011, + 28.282786391000116 + ], + [ + 97.91818264600005, + 28.463987883000186 + ], + [ + 97.84685566700011, + 28.564236954000023 + ], + [ + 97.80655665000006, + 28.698136348000162 + ], + [ + 97.83130656600008, + 28.870479677000105 + ], + [ + 97.8112635920001, + 28.965619643000082 + ], + [ + 97.7358395390001, + 29.090110016000153 + ], + [ + 97.76068852900016, + 29.18339406000007 + ], + [ + 97.73408453600013, + 29.246185747000084 + ], + [ + 97.55734255200014, + 29.42965353800014 + ], + [ + 97.49932067100008, + 29.467473188000156 + ], + [ + 97.38598661100013, + 29.652179991000025 + ], + [ + 97.31149261400014, + 29.742183862000047 + ], + [ + 97.14536262300004, + 29.894840950000173 + ], + [ + 97.002715539, + 29.991823426000053 + ], + [ + 96.76834059400016, + 30.125577309999983 + ], + [ + 96.64422556300002, + 30.23765827600016 + ], + [ + 96.4077985610001, + 30.49698564300013 + ], + [ + 96.19725755800016, + 30.61729646400005 + ], + [ + 96.09606954700007, + 30.72556969800013 + ], + [ + 95.970832514, + 30.806136552000112 + ], + [ + 95.82573657300014, + 30.710488140000166 + ], + [ + 95.72168765000009, + 30.76462132000006 + ], + [ + 95.6370316010001, + 30.739408220000087 + ], + [ + 95.557365635, + 30.834274600000185 + ], + [ + 95.44608262700018, + 30.83492453300005 + ], + [ + 95.42279065900016, + 31.027546871000027 + ], + [ + 95.35377457100003, + 31.09964029100007 + ], + [ + 95.26808151300008, + 31.101280462000148 + ], + [ + 95.27976957400017, + 30.97692973100004 + ], + [ + 95.19604458700007, + 30.920827642000063 + ], + [ + 95.21640054200009, + 31.071382213 + ], + [ + 95.10456851900005, + 31.125364352000133 + ], + [ + 95.11477667200006, + 31.017190191 + ], + [ + 95.04180851600017, + 30.905767206000064 + ], + [ + 95.03436253600012, + 30.823140080000087 + ], + [ + 95.24406451100009, + 30.770081124000058 + ], + [ + 95.2541355350001, + 30.705701402000045 + ], + [ + 94.9880676090001, + 30.779062501000055 + ], + [ + 94.9661866510001, + 30.906749229000013 + ], + [ + 95.06758152700019, + 31.0284946970001 + ], + [ + 94.9625546040001, + 31.10912491700003 + ], + [ + 94.76094066400003, + 31.022264093000103 + ], + [ + 94.63647459800012, + 31.060581628000136 + ], + [ + 94.5960086140002, + 31.16137116400006 + ], + [ + 94.48406963800005, + 31.22350101500018 + ], + [ + 94.49056963600003, + 31.30799227600005 + ], + [ + 94.55329862600007, + 31.345253021000076 + ], + [ + 94.50382963900017, + 31.418151438 + ], + [ + 94.3464585690001, + 31.42377720400009 + ], + [ + 93.96327265600019, + 31.502121680000073 + ], + [ + 93.85787156500004, + 31.473872487000108 + ], + [ + 93.77089657900007, + 31.393778372999975 + ], + [ + 93.70701558000013, + 31.457777053000143 + ], + [ + 93.61978964000019, + 31.40541983000014 + ], + [ + 93.40815764900003, + 31.37643487400004 + ], + [ + 93.45059958300004, + 31.494794891000026 + ], + [ + 93.31703965500014, + 31.489663154000084 + ], + [ + 93.24403361400016, + 31.437637687000176 + ], + [ + 93.1697156370002, + 31.50395044300012 + ], + [ + 93.0855336690002, + 31.508825358000138 + ], + [ + 93.10562861100004, + 31.642599863000157 + ], + [ + 93.18161760400005, + 31.672073819000047 + ], + [ + 93.39760567100006, + 31.703591954000103 + ], + [ + 93.50119761200011, + 31.740669638000156 + ], + [ + 93.54896557500012, + 31.79255294899997 + ], + [ + 93.67571252400006, + 31.82894063400005 + ], + [ + 93.6755906520001, + 31.680053559000044 + ], + [ + 93.73341354600012, + 31.640004825000176 + ], + [ + 93.78070860200017, + 31.734153715000048 + ], + [ + 93.72250366100008, + 31.82445061600015 + ], + [ + 93.75441759000017, + 31.931832352000185 + ], + [ + 94.01139064800014, + 31.93533196400017 + ], + [ + 94.19931057000008, + 31.91732361200019 + ], + [ + 94.33813466800012, + 31.86234050700017 + ], + [ + 94.4857026000002, + 31.847804946 + ], + [ + 94.60120355000015, + 31.71741136600008 + ], + [ + 94.65796663600008, + 31.618797772000107 + ], + [ + 94.7564925550002, + 31.527640719000033 + ], + [ + 94.71729257300018, + 31.449180238000167 + ], + [ + 94.73147559200015, + 31.261858616000154 + ], + [ + 94.77685555100015, + 31.167744092000135 + ], + [ + 94.85945166300019, + 31.168295119000163 + ], + [ + 94.86506653200013, + 31.278112132000103 + ], + [ + 94.94220753400003, + 31.286309801000073 + ], + [ + 94.94554152000018, + 31.194553107000104 + ], + [ + 95.0587386200001, + 31.194212968999977 + ], + [ + 95.02082056600017, + 31.341641929000104 + ], + [ + 94.92444661700011, + 31.43919370300017 + ], + [ + 94.84213263900017, + 31.655381259000023 + ], + [ + 94.9432445430001, + 31.70111577300014 + ], + [ + 95.01072657500015, + 31.676240799000027 + ], + [ + 95.0242915120001, + 31.601317313000152 + ], + [ + 95.12489362900004, + 31.55025710600006 + ], + [ + 95.24102053900015, + 31.52698659600003 + ], + [ + 95.40601360900007, + 31.433407843000168 + ], + [ + 95.54217561500013, + 31.422934152000153 + ], + [ + 95.49494157800007, + 31.31121696200006 + ], + [ + 95.6009066040001, + 31.260628823000104 + ], + [ + 95.44335951400018, + 31.19160619700017 + ], + [ + 95.49139351900004, + 31.105337135000127 + ], + [ + 95.58752456100012, + 31.05923683500015 + ], + [ + 95.6802595910001, + 31.096867557000166 + ], + [ + 95.83676967200006, + 31.085465822000117 + ], + [ + 96.0036235250002, + 31.127805330000115 + ], + [ + 96.13317053200018, + 31.044491391000122 + ], + [ + 96.26573955100008, + 31.087452836000182 + ], + [ + 96.40929456300006, + 30.950220629000114 + ], + [ + 96.47274054100012, + 30.846843097000146 + ], + [ + 96.65804262699999, + 30.633206992000055 + ], + [ + 96.87649564399999, + 30.43330111600011 + ], + [ + 97.28277554400017, + 30.136362808000115 + ], + [ + 97.35926057800009, + 30.068742475000136 + ], + [ + 97.55217762300009, + 29.849134600000127 + ], + [ + 97.6305006410002, + 29.673634311000058 + ], + [ + 97.86318160300016, + 29.425146756000117 + ], + [ + 98.04717259199998, + 29.251068541000166 + ], + [ + 98.2097396040001, + 28.934368890000144 + ], + [ + 98.36045058200017, + 28.730878241000028 + ], + [ + 98.47281653200008, + 28.686322894000057 + ], + [ + 98.42031061400013, + 29.06266783200016 + ], + [ + 98.32913964800008, + 29.267071940999983 + ], + [ + 98.23137664900008, + 29.550903132000087 + ], + [ + 98.08842463200011, + 29.74102263300017 + ], + [ + 98.04541758900018, + 29.863542253 + ], + [ + 97.80805952500015, + 30.103365099000087 + ], + [ + 97.49017366800007, + 30.317461202000175 + ], + [ + 97.27278163300008, + 30.559248431000128 + ], + [ + 97.02751960199998, + 30.755534499000078 + ], + [ + 96.82281458300014, + 30.9733598790001 + ], + [ + 96.65063453400018, + 31.31890165800013 + ], + [ + 96.5405425940001, + 31.396540210000182 + ], + [ + 96.28969553300016, + 31.502948470999968 + ], + [ + 96.30057557900011, + 31.66076931400005 + ], + [ + 96.34429156300018, + 31.71775116800012 + ], + [ + 96.49626954900003, + 31.731431943000075 + ], + [ + 96.6797026390002, + 31.906559237000124 + ], + [ + 96.58840158500004, + 32.03349997600009 + ], + [ + 96.30787655200015, + 32.309808911000175 + ], + [ + 96.25321967000008, + 32.40545195900006 + ], + [ + 96.27703852400015, + 32.468549082000095 + ], + [ + 96.36644761500014, + 32.45680318600006 + ], + [ + 96.62532051600016, + 32.23796527200011 + ], + [ + 96.669029626, + 32.43831488600017 + ], + [ + 96.71235652200005, + 32.48315454800013 + ], + [ + 96.85660555499999, + 32.46468502400012 + ], + [ + 96.8832165890002, + 32.193334655000115 + ], + [ + 96.92803965500019, + 32.10333363400002 + ], + [ + 97.05941056400007, + 31.98874933000019 + ], + [ + 96.9990615320001, + 31.824942634000024 + ], + [ + 96.98307053700012, + 31.719721418000063 + ], + [ + 97.03530152800016, + 31.600695376000147 + ], + [ + 97.22476958800007, + 31.41803258300007 + ], + [ + 97.28244764400006, + 31.19745609500012 + ], + [ + 97.5046465320001, + 30.635709661000078 + ], + [ + 97.56622351400006, + 30.544544897000037 + ], + [ + 97.86186262700011, + 30.32243502400013 + ], + [ + 98.10591866900012, + 30.190389036000113 + ], + [ + 98.23843354100006, + 30.080832867000026 + ], + [ + 98.40717365700004, + 29.897409836000122 + ], + [ + 98.4862896030001, + 29.719926389000136 + ], + [ + 98.72483052100011, + 29.299816851 + ], + [ + 98.7719646450002, + 29.132857051000087 + ], + [ + 98.88561252300013, + 28.894676723000032 + ], + [ + 98.9721526560001, + 28.958678924000026 + ], + [ + 98.96759055400014, + 29.174243704000048 + ], + [ + 98.93066357700019, + 29.3620083940001 + ], + [ + 98.82899461200009, + 29.54851915100005 + ], + [ + 98.71258556700019, + 29.716433817000166 + ], + [ + 98.76401558300012, + 29.824843509000118 + ], + [ + 98.68919351900007, + 30.049404251 + ], + [ + 98.74435465600004, + 30.20030868300006 + ], + [ + 98.69477067000014, + 30.48911000700008 + ], + [ + 98.58116956200013, + 30.777910828000074 + ], + [ + 98.47006257400011, + 30.920159604 + ], + [ + 98.36984267200012, + 31.01691627100007 + ], + [ + 98.3624726320001, + 31.179423772000177 + ], + [ + 98.32948263500015, + 31.409327641000118 + ], + [ + 98.29326661100015, + 31.512621187000093 + ], + [ + 98.21150164800008, + 31.64465778700003 + ], + [ + 98.0292666680001, + 31.83505640599998 + ], + [ + 97.88018060600007, + 31.93813604600018 + ], + [ + 97.86399062400005, + 32.043006730000116 + ], + [ + 97.96037262000016, + 32.153800906000185 + ], + [ + 97.90239751000013, + 32.33400914200013 + ], + [ + 97.90595965200015, + 32.40967073800016 + ], + [ + 98.11517363200016, + 32.50118603300018 + ], + [ + 98.21408863900012, + 32.43826895400008 + ], + [ + 98.39746858700016, + 32.24054036000018 + ], + [ + 98.23250552400015, + 32.1847829350001 + ], + [ + 98.40538060100005, + 31.983334620000164 + ], + [ + 98.49224863400013, + 31.86076655300019 + ], + [ + 98.54405952400009, + 31.88278480700012 + ], + [ + 98.54432657200016, + 31.998704181000107 + ], + [ + 98.62680064300014, + 31.95812621400006 + ], + [ + 98.71508052400014, + 31.842829113000164 + ], + [ + 98.74269051300013, + 31.634656165000138 + ], + [ + 98.83261056500004, + 31.54619992900018 + ], + [ + 98.91236152300002, + 31.54122409600012 + ], + [ + 99.00187656100019, + 31.620000575000063 + ], + [ + 99.06996963400007, + 31.585970719000102 + ], + [ + 99.11188451400017, + 31.485776130000147 + ], + [ + 99.10070054099998, + 31.398542143000157 + ], + [ + 99.2662966050001, + 31.409358822000115 + ], + [ + 99.38012653900017, + 31.38230757000008 + ], + [ + 99.49232451500006, + 31.31837393300009 + ], + [ + 99.44329859600003, + 31.22341702900013 + ], + [ + 99.27130160800004, + 31.200071920000084 + ], + [ + 99.11940760800019, + 31.20019278700005 + ], + [ + 99.07394366200009, + 31.133825045000037 + ], + [ + 99.2956696440001, + 31.080873042000064 + ], + [ + 99.42562065900012, + 30.996865082000056 + ], + [ + 99.3430785270001, + 30.91110781900005 + ], + [ + 99.10924555600013, + 30.927418500000044 + ], + [ + 99.05805962000017, + 30.85345088600019 + ], + [ + 99.25473058500006, + 30.64177262700008 + ], + [ + 99.30284857700019, + 30.501986622000118 + ], + [ + 99.30023157900018, + 30.257961424000143 + ], + [ + 99.35968056200016, + 30.151403295000193 + ], + [ + 99.44786053100012, + 30.219016755000098 + ], + [ + 99.494583606, + 30.30565864400012 + ], + [ + 99.57453154000012, + 30.376203256000053 + ], + [ + 99.69966162000014, + 30.41242984200005 + ], + [ + 99.81404157300017, + 30.336739580000142 + ], + [ + 99.88114155800014, + 30.21097515700012 + ], + [ + 99.71623951499998, + 29.881939357000192 + ], + [ + 99.60065457900004, + 29.688631882000095 + ], + [ + 99.6481625360002, + 29.501924989000088 + ], + [ + 99.69079557800018, + 29.45635157600009 + ], + [ + 99.72665352700011, + 29.317786981000097 + ], + [ + 99.55915058000011, + 28.980796252000175 + ], + [ + 99.47821056400011, + 28.870548576000033 + ], + [ + 99.57691954400019, + 28.876638197000034 + ], + [ + 99.66825060500008, + 28.837790758000153 + ], + [ + 99.59242254400004, + 28.616756786000053 + ], + [ + 99.64687356700006, + 28.580398269000057 + ], + [ + 99.72293866800015, + 28.64563646500011 + ], + [ + 99.77542161900004, + 28.75399519500013 + ], + [ + 99.79372367200011, + 28.86926866000016 + ], + [ + 99.92855865500007, + 28.996315681000056 + ], + [ + 99.95745057200008, + 29.152738423000187 + ], + [ + 99.94808161600008, + 29.295532693000098 + ], + [ + 100.01731865100015, + 29.316415031000076 + ], + [ + 100.07665263500013, + 29.24662479100016 + ], + [ + 100.08644856500007, + 29.092609835000133 + ], + [ + 100.11862166200012, + 29.03635284699999 + ], + [ + 100.1280826520001, + 28.884866041000066 + ], + [ + 100.0808635360001, + 28.809741892000034 + ], + [ + 100.03386654000019, + 28.56768677700012 + ], + [ + 100.04711162300015, + 28.479843426000116 + ], + [ + 100.2053755340001, + 28.164169218000154 + ], + [ + 100.30636556500019, + 28.015207542999974 + ], + [ + 100.3710936390001, + 28.09294215100016 + ], + [ + 100.33099360800014, + 28.21134743000016 + ], + [ + 100.40892753800011, + 28.28503140000015 + ], + [ + 100.50746955, + 28.219934020000096 + ], + [ + 100.54740864900015, + 28.23903319200008 + ], + [ + 100.5238345460001, + 28.434326172000056 + ], + [ + 100.4847566050002, + 28.48964304500015 + ], + [ + 100.55622054300005, + 28.545707582999967 + ], + [ + 100.65982857800014, + 28.483498104000034 + ], + [ + 100.65705064800017, + 28.630024165000066 + ], + [ + 100.58895154000004, + 28.745289751000143 + ], + [ + 100.52064556700014, + 28.813373938000154 + ], + [ + 100.50520358700004, + 28.903384347000042 + ], + [ + 100.57234967200009, + 28.95049550400006 + ], + [ + 100.5292586430001, + 29.02620253000015 + ], + [ + 100.63220953700016, + 29.036048081000047 + ], + [ + 100.7422176570002, + 28.913100817000156 + ], + [ + 100.86276266800019, + 28.725702249 + ], + [ + 100.96765866600003, + 28.425673533000122 + ], + [ + 100.99685652300013, + 28.19502283600019 + ], + [ + 100.89616354700001, + 27.911749712000017 + ], + [ + 100.91699961700004, + 27.849742236000168 + ], + [ + 101.05757167700017, + 27.99096439700014 + ], + [ + 101.14482159000005, + 28.026825029000065 + ], + [ + 101.25141157000007, + 28.028093043000183 + ], + [ + 101.1482615230002, + 28.441329922000136 + ], + [ + 101.04367867300016, + 28.700001488999987 + ], + [ + 100.92379767600005, + 28.938503851000064 + ], + [ + 100.810218529, + 29.13747698900005 + ], + [ + 100.58662455600006, + 29.56766643499998 + ], + [ + 100.41093466900014, + 29.626749968000127 + ], + [ + 100.3359835230001, + 29.697984410000174 + ], + [ + 100.31258359600014, + 29.82279178700003 + ], + [ + 100.4377136760001, + 29.834517063000078 + ], + [ + 100.59259062700016, + 29.69064773000008 + ], + [ + 100.676933528, + 29.675113214000135 + ], + [ + 100.74533052800012, + 29.61609958600019 + ], + [ + 100.76641051200005, + 29.469188293 + ], + [ + 100.84202567199998, + 29.36545318800006 + ], + [ + 100.91875462000007, + 29.48219767700016 + ], + [ + 100.84989963200007, + 29.70200923200008 + ], + [ + 100.83743255700017, + 29.83578926900003 + ], + [ + 100.68167852300013, + 29.959943527000064 + ], + [ + 100.58345753800006, + 30.073226290000093 + ], + [ + 100.60352364600016, + 30.17885922500011 + ], + [ + 100.4872586030001, + 30.23282527000015 + ], + [ + 100.34404758400007, + 30.247980757000107 + ], + [ + 100.23626653500014, + 30.32394192200013 + ], + [ + 100.10642264100005, + 30.487292978000085 + ], + [ + 100.07458465200017, + 30.606316841000137 + ], + [ + 100.16902959000004, + 30.867036443000075 + ], + [ + 100.15328954900019, + 31.023497909000014 + ], + [ + 99.99824563000004, + 31.164948057000117 + ], + [ + 99.93103064600007, + 31.29351756700015 + ], + [ + 99.78492753600011, + 31.425008170000183 + ], + [ + 99.72830962400013, + 31.55733478500008 + ], + [ + 99.31582661300018, + 31.841070086000173 + ], + [ + 99.27828255900005, + 31.928977308000185 + ], + [ + 99.15419753500004, + 32.01747930900012 + ], + [ + 99.09262055400018, + 32.08907098800012 + ], + [ + 98.98381758300008, + 32.14524834700012 + ], + [ + 98.83107751400013, + 32.25402868700007 + ], + [ + 98.86412065300004, + 32.31899480700014 + ], + [ + 98.93731662900018, + 32.30790621900013 + ], + [ + 99.181442576, + 32.1920837400001 + ], + [ + 99.27272753700015, + 32.129703940000184 + ], + [ + 99.4766996420002, + 31.950535730000126 + ], + [ + 99.75412756200006, + 31.66037217900015 + ], + [ + 100.06837466700017, + 31.462992776000135 + ], + [ + 100.21447761000007, + 31.398709949000192 + ], + [ + 100.26707455600007, + 31.322737720000134 + ], + [ + 100.40196955300019, + 30.845369390000144 + ], + [ + 100.2995376670001, + 30.659666984000182 + ], + [ + 100.34850357100004, + 30.59855402500017 + ], + [ + 100.50061063900012, + 30.491787857000133 + ], + [ + 100.781562646, + 30.417995593 + ], + [ + 100.93723252500007, + 30.35564479500016 + ], + [ + 101.00729366900003, + 30.367958313000088 + ], + [ + 101.04389157300017, + 30.46802767600019 + ], + [ + 101.03930667200012, + 30.65324125000018 + ], + [ + 101.08820367800007, + 30.72206170400011 + ], + [ + 100.9724506, + 30.916253805000053 + ], + [ + 100.7712555870001, + 31.10613911600018 + ], + [ + 100.58366356500011, + 31.307982217000017 + ], + [ + 100.516410527, + 31.359465543000113 + ], + [ + 100.47281658300011, + 31.45791015800006 + ], + [ + 100.37827257100008, + 31.59504949300009 + ], + [ + 100.37064353100016, + 31.671415840000066 + ], + [ + 100.61578352100014, + 31.525973726000075 + ], + [ + 100.91403158500015, + 31.15978832500008 + ], + [ + 100.99668855000016, + 31.101155236000068 + ], + [ + 101.2251205570002, + 31.022804055000165 + ], + [ + 101.29955252800016, + 30.903091199000073 + ], + [ + 101.31253056400016, + 30.748010903000193 + ], + [ + 101.25821667000002, + 30.525100893000058 + ], + [ + 101.23325351800014, + 30.345383334000132 + ], + [ + 101.29362451100002, + 30.28495132000006 + ], + [ + 101.37312367800007, + 30.148354629000153 + ], + [ + 101.419021638, + 29.891552226000044 + ], + [ + 101.48268856300012, + 30.025609033000137 + ], + [ + 101.45381156600013, + 30.144472635000113 + ], + [ + 101.4975275490001, + 30.20899836899997 + ], + [ + 101.68007651599999, + 30.010217512000168 + ], + [ + 101.73024757100012, + 29.866095884000174 + ], + [ + 101.72832459500017, + 29.79086377600015 + ], + [ + 101.67704059000016, + 29.725518459000057 + ], + [ + 101.64101466800008, + 29.606881840000085 + ], + [ + 101.56366763900013, + 29.551265900000033 + ], + [ + 101.51446553200009, + 29.44335225000009 + ], + [ + 101.56549053500015, + 29.394738888000177 + ], + [ + 101.71816254300006, + 29.36749820500006 + ], + [ + 101.73030859099998, + 29.323056851 + ], + [ + 101.67028762600006, + 29.227757462000056 + ], + [ + 101.51068864600006, + 29.241198012000154 + ], + [ + 101.39661362600015, + 29.20866935400005 + ], + [ + 101.36525759699998, + 29.109249086000148 + ], + [ + 101.4274826670001, + 28.925344430000052 + ], + [ + 101.45636754300017, + 28.622076612 + ], + [ + 101.482810604, + 28.542539894000186 + ], + [ + 101.56262157700007, + 28.581837106000023 + ], + [ + 101.56716959800008, + 28.77196666599997 + ], + [ + 101.65355667700015, + 28.78043909400003 + ], + [ + 101.73374165100017, + 28.69147776400007 + ], + [ + 101.90039065000008, + 28.85401024300006 + ], + [ + 102.06983166100008, + 28.752953157000036 + ], + [ + 102.1436995300001, + 28.818372570000065 + ], + [ + 102.08812751200014, + 29.207824291000065 + ], + [ + 102.00195366800006, + 29.643009351000103 + ], + [ + 101.96706366100005, + 29.87195684600016 + ], + [ + 101.90598255300011, + 30.167348692000132 + ], + [ + 101.889045576, + 30.325540016 + ], + [ + 101.84185060000004, + 30.522498983000105 + ], + [ + 101.68151853800015, + 30.621861416000115 + ], + [ + 101.62515258600001, + 30.716023046000146 + ], + [ + 101.65660852800016, + 30.82817291000015 + ], + [ + 101.79096959800012, + 30.978091631000098 + ], + [ + 101.88793966800017, + 31.214989360000175 + ], + [ + 101.86606558300014, + 31.419657331000167 + ], + [ + 101.74108151600007, + 31.51334018700004 + ], + [ + 101.56805455900002, + 31.551658895000116 + ], + [ + 101.407386551, + 31.702698779000173 + ], + [ + 101.350364631, + 31.729369995000184 + ], + [ + 101.1889345400001, + 31.667707853000138 + ], + [ + 101.02313261600005, + 31.634645101000103 + ], + [ + 101.0158695290001, + 31.76604769400012 + ], + [ + 101.05757167700017, + 31.83256061100019 + ], + [ + 101.19531266600006, + 31.949867692999987 + ], + [ + 101.18025155900011, + 32.03243580900005 + ], + [ + 101.11008463600007, + 32.09408688700006 + ], + [ + 100.98466454200002, + 32.13302669400014 + ], + [ + 100.95929755000009, + 32.201707338 + ], + [ + 100.96158564200005, + 32.350460639000175 + ], + [ + 101.06449160900002, + 32.38682938100004 + ], + [ + 101.28074655500018, + 32.15309112600005 + ], + [ + 101.46306652800013, + 31.918235564000156 + ], + [ + 101.57809457000002, + 31.842476235000106 + ], + [ + 101.75012156600019, + 31.84061830200011 + ], + [ + 101.8757326, + 31.866223507000143 + ], + [ + 101.97320558400014, + 31.931502272000046 + ], + [ + 101.97012355800001, + 32.004875944000105 + ], + [ + 101.8598936520001, + 32.10906735900005 + ], + [ + 101.75949856900007, + 32.1616126720001 + ], + [ + 101.74092863000004, + 32.22028482100012 + ], + [ + 101.628074518, + 32.30272134200004 + ], + [ + 101.47570761100002, + 32.365074152000034 + ], + [ + 101.4204405270001, + 32.45461031200017 + ], + [ + 101.52264358700006, + 32.553068170000074 + ], + [ + 101.76913457200004, + 32.47858154900018 + ], + [ + 101.91585559700007, + 32.470726868000156 + ], + [ + 102.09162159200008, + 32.32790158500006 + ], + [ + 102.16439864000017, + 32.29490940800008 + ], + [ + 102.35295055799997, + 32.12784299000003 + ], + [ + 102.4194255880002, + 31.89314148700015 + ], + [ + 102.43434856100009, + 31.770760671000062 + ], + [ + 102.48674752500006, + 31.69796082400012 + ], + [ + 102.62338260600012, + 31.684133366000026 + ], + [ + 102.81360654600007, + 31.71054742500013 + ], + [ + 102.88011963000008, + 31.676315733000024 + ], + [ + 102.86042064800017, + 31.55305699700017 + ], + [ + 102.80175067900012, + 31.508033436000176 + ], + [ + 102.58892057800011, + 31.467770796000025 + ], + [ + 102.41622956800006, + 31.475737460000175 + ], + [ + 102.34751154100019, + 31.425572105000185 + ], + [ + 102.2942735470001, + 31.312859144000072 + ], + [ + 102.21935257600012, + 30.953409440000087 + ], + [ + 102.36458564500015, + 31.033636827000123 + ], + [ + 102.41095751900008, + 30.974188849000143 + ], + [ + 102.40206163700014, + 30.86133373100006 + ], + [ + 102.50187652500006, + 30.901035454000066 + ], + [ + 102.60947451400006, + 30.866366561000063 + ], + [ + 102.57962052100004, + 30.753676399000142 + ], + [ + 102.30319256300015, + 30.589011396000103 + ], + [ + 102.23646557300003, + 30.505003436000152 + ], + [ + 102.33666954900019, + 30.172614539000165 + ], + [ + 102.39587361300005, + 30.10326216900006 + ], + [ + 102.41797652400004, + 29.989300305000086 + ], + [ + 102.50546263900009, + 30.061887754000054 + ], + [ + 102.56287364600007, + 30.188523056000065 + ], + [ + 102.54918666900011, + 30.435627932000102 + ], + [ + 102.7313846020001, + 30.630287073000147 + ], + [ + 102.85424067100013, + 30.593137137000156 + ], + [ + 102.91418452200008, + 30.663435656000047 + ], + [ + 102.93727867700017, + 30.754908539000155 + ], + [ + 103.00611857700011, + 30.88097420600019 + ], + [ + 103.02740458800014, + 31.038481399000034 + ], + [ + 102.87678564400005, + 31.113736808000112 + ], + [ + 102.85143256600003, + 31.175006676000066 + ], + [ + 102.94696765400005, + 31.372489009000105 + ], + [ + 103.018127665, + 31.437166624000042 + ], + [ + 103.08946252300018, + 31.410472777000166 + ], + [ + 103.19976065800017, + 31.486100007 + ], + [ + 103.24095167700011, + 31.606894128000192 + ], + [ + 103.16744959400017, + 31.797916528000144 + ], + [ + 103.00526462900012, + 31.959255424000048 + ], + [ + 102.98786161900011, + 32.01462560600015 + ], + [ + 103.09555851400017, + 32.20187950300016 + ], + [ + 103.20967058200017, + 32.270751254000174 + ], + [ + 103.34634354800005, + 32.19326558800003 + ], + [ + 103.38802356700018, + 32.21572992700004 + ], + [ + 103.40108458399999, + 32.326642455000126 + ], + [ + 103.37013256300008, + 32.503982907000136 + ], + [ + 103.519882639, + 32.90433747200018 + ], + [ + 103.61544052600004, + 32.92686283100011 + ], + [ + 103.71340167300013, + 32.84672613700019 + ], + [ + 103.84947164500005, + 32.607822617000124 + ], + [ + 103.98638953100016, + 32.73731246000017 + ], + [ + 104.11248755300011, + 32.76706972500017 + ], + [ + 104.11939960500001, + 32.83351256900005 + ], + [ + 104.20526164200004, + 33.03923246900018 + ], + [ + 104.28257765800015, + 33.136989432000064 + ], + [ + 104.33052851500003, + 33.393916725000054 + ], + [ + 104.28935962400016, + 33.584753215000035 + ], + [ + 104.2243656760001, + 33.72198626000005 + ], + [ + 104.15115360800007, + 33.68812018600016 + ], + [ + 103.96163156800009, + 33.793727304000015 + ], + [ + 103.87586257000004, + 33.885342680000065 + ], + [ + 103.84397864900012, + 33.99682350100005 + ], + [ + 103.75006059700019, + 34.08760286500018 + ], + [ + 103.43578365200005, + 34.233119075000104 + ], + [ + 103.35957354400011, + 34.256380197000055 + ], + [ + 103.26231362800007, + 34.3671552620001 + ], + [ + 103.06969464300005, + 34.493117832 + ], + [ + 102.83853952200013, + 34.70902308500007 + ], + [ + 102.74822954500002, + 34.817407464000155 + ], + [ + 102.57495867400007, + 34.948226174000126 + ], + [ + 102.41351366400005, + 34.95141079399997 + ], + [ + 102.23140759700004, + 34.770552793000036 + ], + [ + 102.0616306390001, + 34.70257337900006 + ], + [ + 101.98266556800019, + 34.754364153000154 + ], + [ + 101.99380461400006, + 34.81561859800013 + ], + [ + 102.0892946080001, + 34.965166671000134 + ], + [ + 102.10445361500012, + 35.066242030000126 + ], + [ + 102.03690352200005, + 35.233454963000156 + ], + [ + 102.08346566500018, + 35.324146653000184 + ], + [ + 102.24213358300005, + 35.350730864000184 + ], + [ + 102.39167059200003, + 35.40994850700008 + ], + [ + 102.48867754200012, + 35.473537816000146 + ], + [ + 102.54073352000012, + 35.40005786200015 + ], + [ + 102.56994663200015, + 35.26512414000007 + ], + [ + 102.54000060600009, + 35.09406927800006 + ], + [ + 102.69303152700013, + 35.01427942700013 + ], + [ + 102.9450146710002, + 34.982084201000134 + ], + [ + 103.0531616740002, + 34.91220108900018 + ], + [ + 103.3808746420001, + 34.74786432200011 + ], + [ + 103.43942257100014, + 34.68161191500013 + ], + [ + 103.651588657, + 34.54522846000009 + ], + [ + 103.76406860100013, + 34.498972927000125 + ], + [ + 103.8595886020002, + 34.42864674800006 + ], + [ + 103.97298452100017, + 34.408880041000145 + ], + [ + 104.11473859700004, + 34.451798067000084 + ], + [ + 104.36141951600007, + 34.55945707600017 + ], + [ + 104.51924153300007, + 34.579674729000146 + ], + [ + 104.46739158300005, + 34.76282082200004 + ], + [ + 104.47418260100011, + 34.908081216000085 + ], + [ + 104.38937366600004, + 35.014126373000124 + ], + [ + 104.16396366999999, + 35.065662002000124 + ], + [ + 104.1521076360001, + 35.12542564200015 + ], + [ + 104.3147505880001, + 35.21092926900013 + ], + [ + 104.49612457900014, + 35.2214081570001 + ], + [ + 104.60594159300018, + 35.187503861000096 + ], + [ + 104.68177065900005, + 35.220180208000045 + ], + [ + 104.87190256600013, + 35.22071832600017 + ], + [ + 104.91606865800014, + 35.19252797400003 + ], + [ + 104.94320657800006, + 35.06457101299998 + ], + [ + 105.05442051900013, + 34.914749020000045 + ], + [ + 105.15808052200009, + 34.9406923520001 + ], + [ + 105.21260061100014, + 35.08895061700014 + ], + [ + 105.32180054900016, + 35.105234978000055 + ], + [ + 105.38486464700003, + 35.17209725200013 + ], + [ + 105.47783654900007, + 35.19595365800012 + ], + [ + 105.59241465100007, + 35.26238811900009 + ], + [ + 105.64367652700008, + 35.372501349000174 + ], + [ + 105.7982636320001, + 35.3769943850001 + ], + [ + 105.97206859800013, + 35.46676708200005 + ], + [ + 106.04452562400002, + 35.46543218000005 + ], + [ + 106.12339765700006, + 35.30789313600013 + ], + [ + 106.26493866500005, + 35.21905820600011 + ], + [ + 106.33657057700009, + 35.14061901500003 + ], + [ + 106.54273957900006, + 35.24203367300015 + ], + [ + 106.578796683, + 35.367770603000054 + ], + [ + 106.692321682, + 35.468906982000135 + ], + [ + 106.77176653400005, + 35.50752626600007 + ], + [ + 107.12344353200018, + 35.52915543200015 + ], + [ + 107.29606664800008, + 35.6641654280001 + ], + [ + 107.3226166620002, + 35.71540702000004 + ], + [ + 107.48455067300006, + 35.834747216000096 + ], + [ + 107.58112360900014, + 35.881381276000184 + ], + [ + 107.84245257400016, + 35.93128696000008 + ], + [ + 107.97346457100019, + 35.985542684000166 + ], + [ + 108.13159956800013, + 36.199859063000076 + ], + [ + 108.18248761100006, + 36.49777252200016 + ], + [ + 107.98310862100004, + 36.42773199800018 + ], + [ + 107.7736896200002, + 36.64610723000004 + ], + [ + 107.77037860000013, + 36.69390117800003 + ], + [ + 107.84642760800006, + 36.79582713200017 + ], + [ + 108.05192555500003, + 36.854690891000075 + ], + [ + 108.1653055480001, + 37.05993637500018 + ], + [ + 108.21459952000004, + 37.099154629000054 + ], + [ + 108.38450656500004, + 37.14999556600014 + ], + [ + 108.63246153400013, + 37.10896162400013 + ], + [ + 108.94338957399998, + 37.19733186100018 + ], + [ + 109.04932358600013, + 37.19545096200005 + ], + [ + 109.19885254800005, + 37.10500955600003 + ], + [ + 109.23918961900006, + 36.98012322200009 + ], + [ + 109.31700167600007, + 36.88789697400017 + ], + [ + 109.45407865000004, + 36.79081123300017 + ], + [ + 109.68757668000012, + 36.59801321100002 + ], + [ + 109.79367062000011, + 36.60240314900017 + ], + [ + 109.88121054600009, + 36.64185442000007 + ], + [ + 110.063102539, + 36.811917536000124 + ], + [ + 110.16339167500007, + 36.86912536600005 + ], + [ + 110.21720165000016, + 36.98570389300011 + ], + [ + 110.357971523, + 37.00219478500014 + ], + [ + 110.36501366200014, + 37.118731402000094 + ], + [ + 110.30719764100007, + 37.362039444 + ], + [ + 110.24492663800015, + 37.417526302000056 + ], + [ + 110.23683961000017, + 37.61054678000011 + ], + [ + 110.12454960000014, + 37.69794304100003 + ], + [ + 110.15653259600003, + 37.7883695270001 + ], + [ + 110.36377766700008, + 37.8139769120001 + ], + [ + 110.32972752600017, + 37.87285592600011 + ], + [ + 110.40861565199998, + 37.92693579700017 + ], + [ + 110.45365161800004, + 38.0560494610001 + ], + [ + 110.47714961300011, + 38.22527053100009 + ], + [ + 110.60965761200015, + 38.28647937900013 + ], + [ + 110.67633866900007, + 38.357382400000176 + ], + [ + 110.69955452900018, + 38.473919186000046 + ], + [ + 110.75971262200005, + 38.51522051100005 + ], + [ + 110.86641659600014, + 38.50616084700005 + ], + [ + 111.03462261800013, + 38.65374118400018 + ], + [ + 111.1090465420001, + 38.58134651800009 + ], + [ + 111.15006254700012, + 38.34873847900019 + ], + [ + 111.0041736780002, + 38.20282094400005 + ], + [ + 110.8621825620001, + 38.11910534499998 + ], + [ + 110.84212466700006, + 37.997918615000174 + ], + [ + 110.92488858500013, + 37.82159069700009 + ], + [ + 111.16268954900005, + 37.54834501200014 + ], + [ + 111.21237965000012, + 37.527616398000134 + ], + [ + 111.31905361700012, + 37.582524234000175 + ], + [ + 111.308181618, + 37.7166656980001 + ], + [ + 111.34780857400011, + 37.89468240200006 + ], + [ + 111.43470762000004, + 38.09842970400018 + ], + [ + 111.43564555500012, + 38.16996539200011 + ], + [ + 111.52987658700005, + 38.43381982500017 + ], + [ + 111.8530425410001, + 38.736800815000095 + ], + [ + 111.73514554100012, + 38.78360234500019 + ], + [ + 111.42055561500018, + 38.66748113500006 + ], + [ + 111.34589364500005, + 38.70533749700007 + ], + [ + 111.56931260400006, + 38.98057120200019 + ], + [ + 111.68183864800011, + 39.15894430500009 + ], + [ + 111.57998662200004, + 39.25353609400008 + ], + [ + 111.46145662000009, + 39.29773940100006 + ], + [ + 111.58204655800012, + 39.376325108000174 + ], + [ + 111.68791167200004, + 39.508918267000126 + ], + [ + 111.75686657200009, + 39.83817568500007 + ], + [ + 112.15288568100016, + 40.159830549 + ], + [ + 112.05133054200019, + 40.2214330110001 + ], + [ + 111.72862961700014, + 40.152895698000066 + ], + [ + 111.36915560500006, + 40.13376886500015 + ], + [ + 110.95104967800012, + 40.23000065700006 + ], + [ + 110.73638159400019, + 40.24445055600006 + ], + [ + 110.27455163700006, + 40.42418555000012 + ], + [ + 110.00051168300018, + 40.48606377600015 + ], + [ + 109.68781254700014, + 40.48184080600015 + ], + [ + 109.47370152400003, + 40.50205041300012 + ], + [ + 108.92501057400005, + 40.607251344000076 + ], + [ + 108.79934656700004, + 40.64478701500008 + ], + [ + 108.65489955300012, + 40.550004957000056 + ], + [ + 108.25919359200009, + 40.58053671000016 + ], + [ + 108.01449566300016, + 40.629830180000056 + ], + [ + 107.89991756100017, + 40.632397221000076 + ], + [ + 107.55318454600013, + 40.55053888400005 + ], + [ + 107.26467860000008, + 40.348945228000105 + ], + [ + 107.10723863000015, + 40.325332736000064 + ], + [ + 106.97341165500012, + 40.22299388900012 + ], + [ + 106.8946836240001, + 40.20724999300006 + ], + [ + 106.78447752300008, + 40.097037354000065 + ], + [ + 106.72149657300014, + 40.097037354000065 + ], + [ + 106.69788357800013, + 40.00257581900013 + ], + [ + 106.74511761400015, + 39.7979003050001 + ], + [ + 106.737243654, + 39.49088661400003 + ], + [ + 106.737243654, + 39.40429367500013 + ], + [ + 106.80021655799999, + 39.27834267200018 + ], + [ + 106.79235064400007, + 39.018561676000104 + ], + [ + 106.80809051700004, + 38.98707187100007 + ], + [ + 106.71362261300004, + 38.853246237000064 + ], + [ + 106.67426253700017, + 38.83750334700005 + ], + [ + 106.57192251600014, + 38.67218891400012 + ], + [ + 106.48532857200007, + 38.475388198000076 + ], + [ + 106.40660858700005, + 38.35730612500015 + ], + [ + 106.20980066200019, + 38.184121253000114 + ], + [ + 106.14682759100009, + 37.971574126000064 + ], + [ + 106.02873965100014, + 37.884982696000066 + ], + [ + 106.00512665600013, + 37.751157062000175 + ], + [ + 105.94214654400008, + 37.67243556800008 + ], + [ + 105.77683261500016, + 37.546484062 + ], + [ + 105.61151164400019, + 37.51499459300004 + ], + [ + 105.23365058700011, + 37.49925086400009 + ], + [ + 105.09159057200009, + 37.44557600600007 + ], + [ + 104.89514156000001, + 37.389043086000186 + ], + [ + 104.77706166700011, + 37.373296172000096 + ], + [ + 104.68259460000007, + 37.27096134900012 + ], + [ + 104.43067951700004, + 37.2316019430001 + ], + [ + 104.3362196600001, + 37.15287977900016 + ], + [ + 104.29685254300006, + 36.98756501100007 + ], + [ + 104.39919256300004, + 36.885231025999985 + ], + [ + 104.50940654300007, + 36.83799799600007 + ], + [ + 104.62748761000006, + 36.72779038600004 + ], + [ + 104.796348593, + 36.47378586200006 + ], + [ + 104.74233259200014, + 36.38359373400016 + ], + [ + 104.6624295850001, + 36.32010718800012 + ], + [ + 104.57711756900005, + 36.32165918100003 + ], + [ + 104.45349153800004, + 36.201704926000104 + ], + [ + 104.21240252100012, + 36.13304238700016 + ], + [ + 103.98807563400015, + 36.205042768000055 + ], + [ + 103.58095553300018, + 36.44095746800002 + ], + [ + 103.2717206370001, + 36.60230809800004 + ], + [ + 103.13902253700007, + 36.80000081700007 + ], + [ + 103.10003662900004, + 36.91329062000017 + ], + [ + 103.10958864600019, + 36.98520416400004 + ], + [ + 103.18982659400012, + 37.03276492700019 + ], + [ + 103.352577672, + 37.02453641300019 + ], + [ + 103.50186154700003, + 36.97919216100007 + ], + [ + 103.51783762200017, + 36.86548259100016 + ], + [ + 103.632308604, + 36.87816642300015 + ], + [ + 103.7360836060002, + 37.0591194750001 + ], + [ + 103.83317554900015, + 37.15019773800003 + ], + [ + 103.85649853000012, + 37.31083540300011 + ], + [ + 103.78275253400017, + 37.34885974000002 + ], + [ + 103.6501845210002, + 37.361463607000076 + ], + [ + 103.49555953000004, + 37.34778769400015 + ], + [ + 103.22192358300009, + 37.374913209 + ], + [ + 102.84967052200011, + 37.471850255 + ], + [ + 102.70539064300004, + 37.560601534000114 + ], + [ + 102.61456266400006, + 37.64934091000009 + ], + [ + 102.5417785750002, + 37.7880942650001 + ], + [ + 102.3705825620001, + 37.939599680000185 + ], + [ + 102.25092351800004, + 38.08567395600011 + ], + [ + 102.16795357200016, + 38.12799318000009 + ], + [ + 101.93159463200016, + 38.18588011200006 + ], + [ + 101.70043951100007, + 38.202604020000024 + ], + [ + 101.51659352900003, + 38.26360684100018 + ], + [ + 101.19532054500007, + 38.28826153900013 + ], + [ + 101.10263060900013, + 38.31392206500004 + ], + [ + 100.96056355300016, + 38.39945770999998 + ], + [ + 100.76683765400008, + 38.437367047 + ], + [ + 100.27960164500013, + 38.61550679700008 + ], + [ + 99.97543361000015, + 38.7370831180001 + ], + [ + 99.75611155800004, + 38.84867625600003 + ], + [ + 99.60106663400006, + 38.95739356400003 + ], + [ + 99.38948862200004, + 39.0818696880001 + ], + [ + 99.03603365499998, + 39.24387310100019 + ], + [ + 98.77479554900015, + 39.332395721000125 + ], + [ + 98.69230655800015, + 39.39532202100003 + ], + [ + 98.48214760200011, + 39.41901045300011 + ], + [ + 98.34158358900004, + 39.49132565800011 + ], + [ + 98.09011861400012, + 39.477786873000184 + ], + [ + 97.80030056500016, + 39.588267062000114 + ], + [ + 97.62814365000014, + 39.6037009960001 + ], + [ + 97.2229235580001, + 39.571425304 + ], + [ + 96.98000359900004, + 39.56976954300006 + ], + [ + 96.86002352800011, + 39.60904881800013 + ], + [ + 96.68690453800019, + 39.73456614100007 + ], + [ + 96.44329055600014, + 39.83097697100004 + ], + [ + 96.07133455000013, + 39.91246197800007 + ], + [ + 95.90388457600011, + 39.92849857100009 + ], + [ + 95.7735136280001, + 39.8738314630001 + ], + [ + 95.57197562700003, + 39.73775914400005 + ], + [ + 95.19133764600008, + 39.54878880100017 + ], + [ + 94.95321666100006, + 39.37663423300006 + ], + [ + 95.09469564300008, + 39.30553708600013 + ], + [ + 95.6049805450001, + 39.11478223600011 + ], + [ + 95.69081860900013, + 39.05755110400003 + ], + [ + 95.77189659100014, + 38.9526366660001 + ], + [ + 95.7766645530001, + 38.84295124900018 + ], + [ + 95.888435555, + 38.73462302900003 + ], + [ + 95.86301458400015, + 38.66314031500008 + ], + [ + 95.86746956600018, + 38.47696315800016 + ], + [ + 95.91799165499998, + 38.35356746100007 + ], + [ + 96.01489265800012, + 38.295135202000154 + ], + [ + 96.26768465600014, + 38.262874766000095 + ], + [ + 96.48636666600004, + 38.198579030000076 + ], + [ + 96.58145164600006, + 38.213303687000064 + ], + [ + 96.65366358600016, + 38.28854350600011 + ], + [ + 96.77664152800008, + 38.33742760400003 + ], + [ + 96.8461226440001, + 38.32605285799997 + ], + [ + 97.05928751800019, + 38.193765136000025 + ], + [ + 97.16912867100001, + 38.078769280000074 + ], + [ + 97.32762861600014, + 37.96009611500011 + ], + [ + 97.48287956800016, + 37.89675843100014 + ], + [ + 97.73811354900016, + 37.71919451800005 + ], + [ + 97.88605464300014, + 37.63529619299999 + ], + [ + 98.01416063400006, + 37.53143117000013 + ], + [ + 98.26335159800004, + 37.455966716000034 + ], + [ + 98.52856457000019, + 37.343888936000155 + ], + [ + 98.73680859600006, + 37.181630042000165 + ], + [ + 99.0434955610001, + 37.01283745500018 + ], + [ + 99.10176051700012, + 36.96352956900017 + ], + [ + 98.53949759000011, + 36.85540368800014 + ], + [ + 97.89931464600011, + 36.804192774000114 + ], + [ + 97.88407165300003, + 36.711112745000094 + ], + [ + 96.69577762000017, + 36.85540368800014 + ], + [ + 96.29341860700015, + 36.55070826400015 + ], + [ + 95.87634264800016, + 36.26645060200002 + ], + [ + 95.13373553100013, + 36.112812999000084 + ], + [ + 94.33551767000017, + 36.50508925300011 + ], + [ + 94.38007352100016, + 36.21044775400014 + ], + [ + 94.33969152300011, + 36.128670721000105 + ], + [ + 94.14411959400019, + 36.147446185000035 + ], + [ + 93.89347856000018, + 36.24492084500008 + ], + [ + 93.805419626, + 36.24178500800008 + ], + [ + 93.6829985780002, + 36.15603696500011 + ], + [ + 93.57221261600006, + 36.19121899800007 + ], + [ + 93.45451359700002, + 36.187572199000044 + ], + [ + 93.53353164200007, + 36.32836202100003 + ], + [ + 93.30374863900016, + 36.29844784700009 + ], + [ + 93.1706235650002, + 36.26144945600015 + ], + [ + 93.07515754300005, + 36.32185012100018 + ], + [ + 92.70270566400006, + 36.38924280100014 + ], + [ + 92.60936764000013, + 36.388411820000044 + ], + [ + 92.23078959500009, + 36.435887757000046 + ], + [ + 91.88272050400019, + 36.585062332000064 + ], + [ + 91.79920959100008, + 36.654835138000124 + ], + [ + 91.72602065600006, + 36.828942187000166 + ], + [ + 91.60625465900006, + 36.92145442600008 + ], + [ + 91.41487150200004, + 37.0075464630001 + ], + [ + 91.1129305390001, + 37.06416353600008 + ], + [ + 91.05949355900003, + 37.03862404500018 + ], + [ + 91.07998664200005, + 36.93605704300012 + ], + [ + 90.90578454200005, + 36.979490053 + ], + [ + 90.85804759200016, + 36.86748854800015 + ], + [ + 90.79229759600008, + 36.88589001100007 + ], + [ + 90.70196565800018, + 36.972875391 + ], + [ + 90.55601459500008, + 37.04200379600013 + ], + [ + 90.40077252800006, + 37.069064268000034 + ], + [ + 90.03530864100009, + 37.10744366100005 + ], + [ + 89.68309050800008, + 37.118704413000046 + ], + [ + 89.29798866100009, + 37.14712677600011 + ], + [ + 89.10250859700005, + 37.230160088000105 + ], + [ + 89.0431826590002, + 37.35553156700007 + ], + [ + 88.91711464500008, + 37.41208342900006 + ], + [ + 88.65113858400014, + 37.741960102000064 + ], + [ + 88.54985066000017, + 37.748651208000126 + ], + [ + 88.4260405620002, + 37.71449880800003 + ], + [ + 88.28140260900017, + 37.7470029910001 + ], + [ + 88.3135525720001, + 37.80304422800009 + ], + [ + 88.41566460500007, + 37.82097261600006 + ], + [ + 88.64282960300017, + 37.896521559000064 + ], + [ + 88.80892154100007, + 38.003304323000066 + ], + [ + 89.0428926460001, + 38.009957375000056 + ], + [ + 89.18606561000013, + 38.03586181400016 + ], + [ + 89.34811361500016, + 38.10873642800016 + ], + [ + 89.50697364700017, + 38.225933371 + ], + [ + 89.87111654600005, + 38.37427713200003 + ], + [ + 90.36550852100004, + 38.52806024500018 + ], + [ + 90.68724066600004, + 38.60399023000008 + ], + [ + 90.87126166200017, + 38.68309896700015 + ], + [ + 90.85181464100003, + 38.739699780000024 + ], + [ + 90.45931961900004, + 38.71053746300004 + ], + [ + 90.31523151800008, + 38.711548320000134 + ], + [ + 89.91732061400012, + 38.666169199000194 + ], + [ + 89.7102356370001, + 38.676452956000105 + ], + [ + 89.46538566100014, + 38.707092500000044 + ], + [ + 89.15949263000005, + 38.768367398000066 + ], + [ + 88.92399551700004, + 38.80105883200008 + ], + [ + 88.6182255330001, + 38.78917614300002 + ], + [ + 88.45819052600018, + 38.74657780200016 + ], + [ + 88.32115160500013, + 38.590300402000025 + ], + [ + 88.27085163700008, + 38.440731710000136 + ], + [ + 88.19917261800015, + 38.440117987000065 + ], + [ + 88.02319355500009, + 38.52602746600007 + ], + [ + 87.93839249900009, + 38.489773052000146 + ], + [ + 87.8864055890001, + 38.36839521500019 + ], + [ + 87.8895726070001, + 38.29197623099998 + ], + [ + 87.77450550499998, + 38.23745748200008 + ], + [ + 87.68080856800015, + 38.11336441200007 + ], + [ + 87.51966865900005, + 38.08607008500013 + ], + [ + 87.43154166400006, + 38.194650097000135 + ], + [ + 87.29177057800018, + 38.27234665200007 + ], + [ + 87.2091976000001, + 38.28535452700015 + ], + [ + 86.98464959900008, + 38.19013007200016 + ], + [ + 86.85144053800019, + 38.061431313000014 + ], + [ + 86.53864266300008, + 37.992833817000076 + ], + [ + 86.4607845060001, + 37.90975004600011 + ], + [ + 86.40857664800012, + 37.787407452000025 + ], + [ + 86.19968453400008, + 37.64668200300008 + ], + [ + 85.91211635500008, + 37.500826829000175 + ], + [ + 85.7398226470001, + 37.45543262100017 + ], + [ + 85.47188555700012, + 37.40448858700017 + ], + [ + 85.30768558200003, + 37.33369620600007 + ], + [ + 85.2034685180002, + 37.31024749700009 + ], + [ + 85.01065054700013, + 37.201595736000115 + ], + [ + 84.9355396420001, + 37.17791903800003 + ], + [ + 84.72686763600012, + 37.18773391200017 + ], + [ + 84.556396657, + 37.130007074000105 + ], + [ + 84.27795452700008, + 36.96301056100003 + ], + [ + 83.94152052300018, + 36.940932125000074 + ], + [ + 83.90978965500017, + 36.92177830300017 + ], + [ + 83.78628549700005, + 36.72066459400003 + ], + [ + 83.61543263800019, + 36.65163895100005 + ], + [ + 83.49214959400007, + 36.707949750000125 + ], + [ + 83.22268649500006, + 36.614297740000154 + ], + [ + 83.14855962500019, + 36.52510087900009 + ], + [ + 83.0093005060001, + 36.46351316900018 + ], + [ + 82.72764559300015, + 36.40390224700019 + ], + [ + 82.7071305500001, + 36.28304811100014 + ], + [ + 82.63478852200012, + 36.24835776100008 + ], + [ + 82.15083352600016, + 36.28534391500017 + ], + [ + 81.86233562700016, + 36.226473282000086 + ], + [ + 81.58922556100015, + 36.26247171300008 + ], + [ + 81.3984375190002, + 36.2666034880001 + ], + [ + 81.13422350200005, + 36.2537627480001 + ], + [ + 80.82657664200008, + 36.34569562900003 + ], + [ + 80.63704655600014, + 36.46387225000012 + ], + [ + 80.47158057900009, + 36.52486769500018 + ], + [ + 80.32084663400019, + 36.50991823500016 + ], + [ + 80.19334464400004, + 36.52534060200014 + ], + [ + 80.02619960300012, + 36.502716336000105 + ], + [ + 79.85322562000005, + 36.578451525000105 + ], + [ + 79.61236559700006, + 36.76831655200016 + ], + [ + 79.24906155899998, + 36.903284639000105 + ], + [ + 78.95929749000004, + 37.10703546200011 + ], + [ + 78.84893749700007, + 37.10614245400012 + ], + [ + 78.70064553600008, + 37.182538138000155 + ], + [ + 78.4341816490001, + 37.211098467000056 + ], + [ + 78.20854165300011, + 37.1925558530001 + ], + [ + 77.83690650600005, + 37.372045257000025 + ], + [ + 77.39866657800013, + 37.47434538000016 + ], + [ + 77.25023665100014, + 37.49573784100011 + ], + [ + 77.0340495980002, + 37.55015701200017 + ], + [ + 76.92781853100007, + 37.66556877800019 + ], + [ + 76.7750855020002, + 37.78016045800007 + ], + [ + 76.7049945190002, + 37.926412767000045 + ], + [ + 76.62652548900019, + 37.947797348999984 + ], + [ + 76.64453853400016, + 38.059600538000154 + ], + [ + 76.73338352200011, + 38.32321474600019 + ], + [ + 76.64879654100014, + 38.41621933700014 + ], + [ + 76.35944352000007, + 38.62213285900009 + ], + [ + 76.28955051700012, + 38.65320725600003 + ], + [ + 76.01798255400007, + 38.69696062300005 + ], + [ + 75.87084159600016, + 38.76597151500016 + ], + [ + 75.72876749900007, + 38.88786450300017 + ], + [ + 75.73348248700006, + 39.012187741 + ], + [ + 75.69802854500006, + 39.11903085500006 + ], + [ + 75.54982761200017, + 39.131485693000116 + ], + [ + 75.26941657300011, + 39.276335709000136 + ], + [ + 74.94715854800012, + 39.51230539400012 + ], + [ + 74.76907361500008, + 39.66233207300013 + ], + [ + 74.69107849700003, + 39.74851597500003 + ], + [ + 74.65184062900016, + 39.91034102100019 + ], + [ + 74.87572461600013, + 39.91117669700009 + ], + [ + 74.95004259300009, + 40.00053482600015 + ], + [ + 75.09951053400005, + 40.0290604540001 + ], + [ + 75.36318157200009, + 39.97414105100006 + ], + [ + 75.53392764500006, + 40.07088078700008 + ], + [ + 75.61696648900016, + 40.07916579500011 + ], + [ + 75.8490214900001, + 40.03027717100014 + ], + [ + 76.05007149700009, + 40.06761486200014 + ], + [ + 76.31933561000011, + 40.25603250200004 + ], + [ + 76.46410365100002, + 40.30230781600011 + ], + [ + 76.60466749699998, + 40.41347062700004 + ], + [ + 76.72171054900019, + 40.57083666900007 + ], + [ + 76.82504265100016, + 40.66598166300008 + ], + [ + 76.95099650500009, + 40.616837392000036 + ], + [ + 77.44164260700018, + 40.61010823200019 + ], + [ + 77.67061658800009, + 40.62294411100004 + ], + [ + 77.95380354600007, + 40.65678487200006 + ], + [ + 78.32781965600003, + 40.84255785300007 + ], + [ + 78.40388458900014, + 40.94730063000014 + ], + [ + 78.51751754800017, + 41.04898451500003 + ], + [ + 78.68939953700016, + 41.144572745000175 + ], + [ + 78.81550560500006, + 41.16741443700005 + ], + [ + 78.91287951600009, + 41.22117395200007 + ], + [ + 79.26673849000002, + 41.5385498550001 + ], + [ + 79.40489153300013, + 41.59202036200014 + ], + [ + 79.68712664200007, + 41.65726694000011 + ], + [ + 80.04701254000014, + 41.68583062200008 + ], + [ + 80.31821454900006, + 41.73690524700015 + ], + [ + 80.72234365300011, + 41.78255175000015 + ], + [ + 80.917846515, + 41.83739152500016 + ], + [ + 80.94985951800015, + 41.86889323200012 + ], + [ + 81.36636349600019, + 41.86794708300005 + ], + [ + 81.53350065700016, + 41.91625182299998 + ], + [ + 81.59974652600016, + 41.973025471000085 + ], + [ + 81.76140561000005, + 41.94714651200013 + ], + [ + 81.96351659800018, + 42.03564281400003 + ], + [ + 82.12638854300002, + 42.07224155600011 + ], + [ + 82.48322259100013, + 42.077749472000164 + ], + [ + 82.68108361800006, + 42.1620918700001 + ], + [ + 82.81886266000004, + 42.156519078000144 + ], + [ + 83.1201245210001, + 42.27278998900016 + ], + [ + 83.32900959500006, + 42.27114914800018 + ], + [ + 83.43952163600017, + 42.29435008800016 + ], + [ + 83.69401549500003, + 42.383316447000084 + ], + [ + 83.95552852700013, + 42.40364138800004 + ], + [ + 84.06775651100014, + 42.34978849900011 + ], + [ + 84.58765461800004, + 42.352237691000084 + ], + [ + 84.85893256700007, + 42.295357928000044 + ], + [ + 85.2259365450002, + 42.37133837200014 + ], + [ + 85.86558556100005, + 42.4562488950001 + ], + [ + 86.1071166390002, + 42.586837103000164 + ], + [ + 86.33483165800004, + 42.643572696000035 + ], + [ + 86.51864662700007, + 42.62903881200009 + ], + [ + 86.61640962600012, + 42.64432757100019 + ], + [ + 86.89411951300013, + 42.764477962 + ], + [ + 86.98476459900019, + 42.71939623100019 + ], + [ + 87.1815104980002, + 42.68925641600015 + ], + [ + 87.2825466290002, + 42.73990423300012 + ], + [ + 87.51231353800017, + 42.69065334400011 + ], + [ + 87.64594253299998, + 42.70802148500019 + ], + [ + 87.70919757100006, + 42.77444203300013 + ], + [ + 87.75016764300011, + 43.030147748000104 + ], + [ + 87.72564655300005, + 43.08548725200018 + ], + [ + 87.77752651100019, + 43.196524670000144 + ], + [ + 87.94252762700006, + 43.384103952000146 + ], + [ + 88.22862964300003, + 43.40396688300001 + ], + [ + 88.93438756800003, + 43.38342501800008 + ], + [ + 89.74685650700002, + 43.23542374200008 + ], + [ + 90.04394552200017, + 43.19209181700012 + ], + [ + 90.36392953800004, + 43.20470792200007 + ], + [ + 90.62602259800013, + 43.200945956000055 + ], + [ + 91.06172951600007, + 43.21189758400004 + ], + [ + 91.42168464800011, + 43.14874597800019 + ], + [ + 91.48023961800016, + 43.165001002999986 + ], + [ + 91.35507165200005, + 43.34699106400018 + ], + [ + 91.37513759300003, + 43.43800176900004 + ], + [ + 91.18583666800015, + 43.58411510500014 + ], + [ + 91.05020859000018, + 43.66227886700011 + ], + [ + 90.94246660000005, + 43.65477086100009 + ], + [ + 90.78324162000007, + 43.697831883000106 + ], + [ + 90.57593552900005, + 43.804417672000056 + ], + [ + 90.37422150900011, + 43.812840479000045 + ], + [ + 90.07185357200018, + 43.943631194000034 + ], + [ + 89.98289458900013, + 44.04803886200017 + ], + [ + 89.84411659200003, + 44.10920378900005 + ], + [ + 89.45359752000007, + 44.2428352980001 + ], + [ + 89.37187161700001, + 44.24279741100008 + ], + [ + 89.25775954900007, + 44.15370163600005 + ], + [ + 89.19975258800014, + 44.15466270500008 + ], + [ + 88.91112560700014, + 44.23985636900011 + ], + [ + 88.82892663000018, + 44.25026334000006 + ], + [ + 88.49073762300009, + 44.35644914500017 + ], + [ + 88.02730554900018, + 44.30734242400001 + ], + [ + 87.95226253700014, + 44.26990431900009 + ], + [ + 87.83969156600006, + 44.15011552300007 + ], + [ + 87.78247853900012, + 43.86126441000016 + ], + [ + 87.67736058800011, + 43.65864313300017 + ], + [ + 87.55072059200006, + 43.54768953300004 + ], + [ + 87.50024460400005, + 43.61178024700018 + ], + [ + 87.48783854900006, + 43.727070643000104 + ], + [ + 87.38116458200005, + 43.84217948700018 + ], + [ + 87.19168864300008, + 43.911587178000104 + ], + [ + 86.80696062800013, + 44.024814787000025 + ], + [ + 86.45372057300011, + 44.078269704000036 + ], + [ + 86.31434662200013, + 44.075649689000045 + ], + [ + 86.01038360900003, + 44.10375957500008 + ], + [ + 85.64953664200016, + 44.162181608000026 + ], + [ + 85.39394358000015, + 44.30493547700007 + ], + [ + 85.04706555800016, + 44.187583636 + ], + [ + 84.9395066290001, + 44.17320666000006 + ], + [ + 84.5488816100002, + 44.22247364300017 + ], + [ + 84.21345561400005, + 44.16644246400017 + ], + [ + 84.02530653000014, + 44.15353768600016 + ], + [ + 83.87602952900016, + 44.27572253300008 + ], + [ + 83.61190754500007, + 44.297183223000104 + ], + [ + 83.27513860100015, + 44.26140557200006 + ], + [ + 83.05033159900012, + 44.29426933800016 + ], + [ + 82.84333060900008, + 44.43708707700017 + ], + [ + 82.78858152600009, + 44.50869702900019 + ], + [ + 82.88264458500004, + 44.67051989600009 + ], + [ + 82.78215059500008, + 44.75872668599999 + ], + [ + 82.44409955400005, + 44.81230498500008 + ], + [ + 82.36315953899998, + 44.898295936000125 + ], + [ + 82.6037825210002, + 44.9736777440001 + ], + [ + 82.6910555680002, + 44.96971075700003 + ], + [ + 82.75286858400017, + 45.058016956000074 + ], + [ + 82.73910549900012, + 45.236971930000095 + ], + [ + 82.73520657200004, + 45.28761606000012 + ], + [ + 82.31133255500015, + 45.44656711900012 + ], + [ + 81.79531862300001, + 45.53314513800018 + ], + [ + 81.69354253700004, + 45.594089453000095 + ], + [ + 81.57913961700012, + 45.71416859800007 + ], + [ + 81.49710861200009, + 45.74052867800009 + ], + [ + 81.19568665700007, + 45.77170952600005 + ], + [ + 81.07018257600015, + 45.76203161300015 + ], + [ + 80.90177958000015, + 45.57878141600014 + ], + [ + 80.72557051799998, + 45.49266809000005 + ], + [ + 80.51808153400009, + 45.455860135000194 + ], + [ + 80.34819762300003, + 45.36686997200002 + ], + [ + 80.12091863, + 45.33485009600014 + ], + [ + 79.89520252699998, + 45.22217887700009 + ], + [ + 79.84143060600007, + 45.1467357140001 + ], + [ + 79.5421215610001, + 45.08922077000017 + ], + [ + 79.28404963500003, + 45.058787924000114 + ], + [ + 79.27619160100016, + 44.97736678700005 + ], + [ + 79.51853957900005, + 44.966132857000105 + ], + [ + 79.63127164999997, + 44.911200714000074 + ], + [ + 79.61034354700007, + 44.77223496200003 + ], + [ + 79.78713951000003, + 44.73877976800003 + ], + [ + 79.98172757200012, + 44.666216794000036 + ], + [ + 80.17049457000019, + 44.62516005300017 + ], + [ + 80.32349363900005, + 44.6616168060001 + ], + [ + 80.4050066420001, + 44.6113010790001 + ], + [ + 80.34983058500012, + 44.442886181 + ], + [ + 80.627509627, + 44.42039418200005 + ], + [ + 80.78126558200017, + 44.47127518400015 + ], + [ + 81.10435459000013, + 44.438396163000164 + ], + [ + 81.78477452400006, + 44.261764485000185 + ], + [ + 81.97245053300014, + 44.07982287100003 + ], + [ + 81.95796157500018, + 43.88436543800003 + ], + [ + 81.88407157800009, + 43.83079652700013 + ], + [ + 81.58440362000005, + 43.75191259300016 + ], + [ + 81.05161263800005, + 43.70380465900013 + ], + [ + 80.89582055000005, + 43.6629350020001 + ], + [ + 80.63731360300011, + 43.63361493700006 + ], + [ + 80.73969251600016, + 43.46337680700009 + ], + [ + 80.46412655200015, + 43.42062172500016 + ], + [ + 80.17140149200009, + 43.406270901000084 + ], + [ + 80.08733351700005, + 43.379317047000086 + ], + [ + 79.92642260100018, + 43.38466084600003 + ], + [ + 79.69135263000015, + 43.35406421700003 + ], + [ + 79.52337660800015, + 43.29535250499998 + ], + [ + 79.47157259000005, + 43.24663470500019 + ], + [ + 79.4966965070002, + 43.17801189600016 + ], + [ + 79.58635755800009, + 43.17179403200009 + ], + [ + 79.97161061500015, + 43.27158243400015 + ], + [ + 80.20590257900017, + 43.30633447500003 + ], + [ + 80.37789152100004, + 43.28499146700017 + ], + [ + 80.38205749400004, + 43.20031295500013 + ], + [ + 80.45295749899998, + 43.188113933000125 + ], + [ + 80.54118356700008, + 43.09485235200003 + ], + [ + 80.41280365600005, + 43.05538532300011 + ], + [ + 80.40077260800007, + 42.983528776000185 + ], + [ + 80.57499650000011, + 42.912545120000175 + ], + [ + 80.37359663300015, + 42.823662580000075 + ], + [ + 80.26065065600011, + 42.81726987000019 + ], + [ + 80.23529053700008, + 42.74563426999998 + ], + [ + 80.31404857600012, + 42.673242622000146 + ], + [ + 80.17491954400003, + 42.656500609000034 + ], + [ + 79.84998350000018, + 42.670763423000096 + ], + [ + 79.70458949900018, + 42.73134429900006 + ], + [ + 79.65493761900012, + 42.837189631000115 + ], + [ + 79.47872151500013, + 42.79997398100005 + ], + [ + 79.22810361600011, + 42.8389444660001 + ], + [ + 79.10353059800019, + 42.7832277760001 + ], + [ + 79.15850850600003, + 42.69868236900015 + ], + [ + 78.81647455300015, + 42.60127107500017 + ], + [ + 78.59294864200012, + 42.4485008310001 + ], + [ + 78.21269254000009, + 42.32579865400004 + ], + [ + 78.1255495800001, + 42.21841138600007 + ], + [ + 78.03032663400012, + 42.202237665999974 + ], + [ + 77.92871064200006, + 42.126108192000174 + ], + [ + 77.72239663300007, + 42.13117807000009 + ], + [ + 77.58004761000012, + 42.03731383000013 + ], + [ + 77.18176253700005, + 42.02106383400013 + ], + [ + 77.1388475280001, + 42.043802932 + ], + [ + 76.99624654400014, + 42.00846013400019 + ], + [ + 76.60247764100018, + 42.01305995500019 + ], + [ + 76.12420658000019, + 42.09332539500008 + ], + [ + 75.93927748900018, + 42.08581034900004 + ], + [ + 75.94513660700005, + 42.02635097100011 + ], + [ + 76.12185663000008, + 42.01546002900017 + ], + [ + 76.29399158500001, + 41.96810026500009 + ], + [ + 76.29016155800014, + 41.90363286800016 + ], + [ + 76.07689660400013, + 41.87391717700018 + ], + [ + 76.00583650500005, + 41.90425078200013 + ], + [ + 75.7354815710001, + 41.919749927000055 + ], + [ + 75.54490659700002, + 41.89755984400017 + ], + [ + 75.46527851700012, + 41.931441676000134 + ], + [ + 75.42639956200014, + 42.02022095000018 + ], + [ + 75.34971654700007, + 42.06017983000004 + ], + [ + 75.14807159300011, + 42.07984042200019 + ], + [ + 75.18199952600008, + 41.98781919500004 + ], + [ + 75.321922491, + 41.88781018200012 + ], + [ + 75.43202951800004, + 41.84255243100017 + ], + [ + 75.53366059700016, + 41.76522199800013 + ], + [ + 75.7292705810001, + 41.77132100600011 + ], + [ + 75.79557059700005, + 41.730451349000134 + ], + [ + 75.93788156600004, + 41.704461414000036 + ], + [ + 76.07350159800006, + 41.60462439800011 + ], + [ + 76.22824863000011, + 41.584875628000134 + ], + [ + 76.33441951499998, + 41.65193403800015 + ], + [ + 76.55069759600019, + 41.549067802000025 + ], + [ + 76.50868950900013, + 41.408146217000194 + ], + [ + 76.71347851400003, + 41.40083736500014 + ], + [ + 76.71650656000014, + 41.303765203000125 + ], + [ + 76.49359152200014, + 41.29437814199997 + ], + [ + 76.10269962300015, + 41.20586591500012 + ], + [ + 75.94390849000013, + 41.14133783300002 + ], + [ + 75.79192363100009, + 41.10996889600011 + ], + [ + 75.54399162800013, + 41.00460099700018 + ], + [ + 75.38575755700015, + 41.02436887700014 + ], + [ + 75.32023655500018, + 41.156039691000046 + ], + [ + 75.2531506520001, + 41.20557623600001 + ], + [ + 75.1655424970001, + 41.207667018000166 + ], + [ + 74.96164650000014, + 41.05953967800002 + ], + [ + 74.84536754200013, + 41.067268296 + ], + [ + 74.66776255700017, + 41.030307958000094 + ], + [ + 74.46891749400004, + 41.021378046 + ], + [ + 74.41829649900018, + 40.975460304000194 + ], + [ + 74.41860964700015, + 40.87135153500003 + ], + [ + 74.34368163500005, + 40.831792807000056 + ], + [ + 74.13520861500007, + 40.90712097100004 + ], + [ + 73.96704852700014, + 41.129870719000166 + ], + [ + 73.92720749700004, + 41.25282854500006 + ], + [ + 73.7721176450001, + 41.404267239000035 + ], + [ + 73.72248051700018, + 41.51834410400005 + ], + [ + 73.5096665100001, + 41.69176266300019 + ], + [ + 73.22384662899998, + 41.58777459300012 + ], + [ + 72.86270160200013, + 41.55835277200015 + ], + [ + 72.772247623, + 41.517085309000095 + ], + [ + 72.76448061600013, + 41.45672571600005 + ], + [ + 72.82808652100005, + 41.36854658600009 + ], + [ + 72.9618526430001, + 41.38499523200005 + ], + [ + 73.06195855100009, + 41.45964781500015 + ], + [ + 73.12616761700008, + 41.46168461700012 + ], + [ + 73.17955061800018, + 41.38774533500009 + ], + [ + 73.32700355000009, + 41.36258755500006 + ], + [ + 73.48230764300013, + 41.26487535100006 + ], + [ + 73.66589361800004, + 41.10214925100013 + ], + [ + 73.71221955900012, + 41.035049769000125 + ], + [ + 73.81701665100013, + 40.988243210000064 + ], + [ + 73.83827952700011, + 40.92281893500018 + ], + [ + 73.80239056500005, + 40.84491987400003 + ], + [ + 73.87465665200006, + 40.781882597000106 + ], + [ + 74.00626359600017, + 40.84077669900017 + ], + [ + 74.15045160900007, + 40.69319133300007 + ], + [ + 74.13757348500019, + 40.642254004 + ], + [ + 74.22509748599998, + 40.54291302900015 + ], + [ + 74.42948164600006, + 40.402247594000016 + ], + [ + 74.44217654100004, + 40.319786766 + ], + [ + 74.33390850300003, + 40.25461663100003 + ], + [ + 74.08759353800008, + 40.25853852299997 + ], + [ + 73.9902196270001, + 40.35982527400006 + ], + [ + 73.8966526100001, + 40.385283796000124 + ], + [ + 73.8651586150001, + 40.48485376500008 + ], + [ + 73.76431258500014, + 40.49531370900013 + ], + [ + 73.44111662400019, + 40.60503449800012 + ], + [ + 73.33747053500008, + 40.65282492500006 + ], + [ + 73.2522964850001, + 40.635574968000185 + ], + [ + 73.26702851800019, + 40.55602383400003 + ], + [ + 73.38085157800003, + 40.499715550000076 + ], + [ + 73.57673648800017, + 40.28643902900012 + ], + [ + 73.6126095250001, + 40.222996739000166 + ], + [ + 73.57740050200005, + 40.003479724000044 + ], + [ + 73.50440250700007, + 39.928010744000176 + ], + [ + 73.35825363200007, + 39.96952094600016 + ], + [ + 73.28943653000005, + 40.094088600000134 + ], + [ + 73.13881658000008, + 40.12057826400007 + ], + [ + 73.07009151200009, + 40.05938282700015 + ], + [ + 73.03093762999998, + 39.941396476000136 + ], + [ + 72.85256955699998, + 39.936131467000166 + ], + [ + 72.75306664300012, + 40.01927257100016 + ], + [ + 72.67608657400018, + 40.03310036400006 + ], + [ + 72.48578652600014, + 39.98777086400008 + ], + [ + 72.34322359600014, + 40.07326476800006 + ], + [ + 72.23200948800013, + 40.056942017000154 + ], + [ + 72.16246064600017, + 40.00671061200006 + ], + [ + 72.17862648700003, + 39.92734253900005 + ], + [ + 72.24643759300011, + 39.860563581000065 + ], + [ + 72.23515353900012, + 39.802165352000145 + ], + [ + 71.9692765530001, + 39.769023810000135 + ], + [ + 71.91256761400018, + 39.839193751000096 + ], + [ + 71.97458648900016, + 39.957311195000045 + ], + [ + 71.83683058000008, + 39.99370290400009 + ], + [ + 71.66929662000007, + 39.94845722300005 + ], + [ + 71.62441253399999, + 39.910531794000065 + ], + [ + 71.4526064850001, + 39.89107706100003 + ], + [ + 71.3600235030001, + 39.83310178400012 + ], + [ + 71.13957961700015, + 39.81349500300007 + ], + [ + 70.95127060700014, + 39.69213963000004 + ], + [ + 70.877853517, + 39.69970379400007 + ], + [ + 70.88343854700008, + 39.7786445590001 + ], + [ + 70.73210160800005, + 39.735386059000064 + ], + [ + 70.61287657900004, + 39.76590674800019 + ], + [ + 70.44445061700014, + 39.70010478500012 + ], + [ + 70.12859351500015, + 39.677526117000184 + ], + [ + 70.0074465150002, + 39.65404622700004 + ], + [ + 69.96697952500017, + 39.59065523400005 + ], + [ + 70.05845659900012, + 39.542658948 + ], + [ + 70.21025051900006, + 39.53896588100008 + ], + [ + 70.39082353499998, + 39.504356500000085 + ], + [ + 70.39389751400006, + 39.434998263000125 + ], + [ + 70.23709859300016, + 39.41900743600013 + ], + [ + 70.0500026110002, + 39.44702914400017 + ], + [ + 69.86797349000017, + 39.40441990700015 + ], + [ + 69.58336663800014, + 39.393460903 + ], + [ + 69.28106659500014, + 39.268263936000096 + ], + [ + 69.40249656700007, + 39.229682371000024 + ], + [ + 69.27863349600017, + 39.14745858300006 + ], + [ + 68.9084775870001, + 39.17507628300007 + ], + [ + 68.79530362200006, + 39.153622467000105 + ], + [ + 68.59529850299998, + 39.170033395000075 + ], + [ + 68.33595252800012, + 39.027335517000154 + ], + [ + 68.23406948900003, + 39.04815499100005 + ], + [ + 68.24929052300018, + 39.11684200500014 + ], + [ + 68.38155360200017, + 39.22683755300005 + ], + [ + 68.33821061300017, + 39.31405527900017 + ], + [ + 68.15778360900003, + 39.22735253700017 + ], + [ + 68.03658263000017, + 39.13513668200011 + ], + [ + 67.9127505720001, + 39.099252414000034 + ], + [ + 67.83601357800012, + 38.986445911000146 + ], + [ + 67.99275952600016, + 39.01475847100011 + ], + [ + 68.16069062100007, + 38.970340419000024 + ], + [ + 68.21172350300014, + 38.859646994 + ], + [ + 68.35452263500014, + 38.858946099000036 + ], + [ + 68.43814050100013, + 38.914918102000115 + ], + [ + 68.58345051600014, + 38.910237144000064 + ], + [ + 68.65573152200005, + 38.936126664000085 + ], + [ + 68.68196855600007, + 39.025523517000124 + ], + [ + 68.80058254400018, + 39.08167455700004 + ], + [ + 68.88955661400018, + 39.063772823000136 + ], + [ + 68.93328852300004, + 38.94607581500003 + ], + [ + 68.99054748300011, + 38.88879556500012 + ], + [ + 69.06822157400018, + 38.92713606700005 + ], + [ + 69.09203355500011, + 39.0110355650001 + ], + [ + 69.21233364700015, + 39.034148160000086 + ], + [ + 69.29060352400006, + 39.096143230000166 + ], + [ + 69.39909351400013, + 39.08078154900005 + ], + [ + 69.45480349900004, + 38.943130582000094 + ], + [ + 69.51828753000012, + 38.937824837000164 + ], + [ + 69.72499850600019, + 39.05070409500007 + ], + [ + 69.78595757400018, + 38.99350682600004 + ], + [ + 69.90209152400007, + 39.0340453980001 + ], + [ + 69.95113353700003, + 39.150254618000076 + ], + [ + 70.0357976320002, + 39.177699987000096 + ], + [ + 70.0607606160001, + 39.250846173000184 + ], + [ + 70.16211660100004, + 39.29539028900018 + ], + [ + 70.25919362500008, + 39.282339666000155 + ], + [ + 70.31659658600012, + 39.19428274400019 + ], + [ + 70.42430856800007, + 39.16634418400014 + ], + [ + 70.51101650600015, + 39.218212407000124 + ], + [ + 70.6134266000002, + 39.22191653800007 + ], + [ + 70.79067954400006, + 39.32237096500006 + ], + [ + 70.95684054900005, + 39.30774521500018 + ], + [ + 71.06268353400003, + 39.32879083200004 + ], + [ + 71.16678660400015, + 39.415360637000106 + ], + [ + 71.33223749400014, + 39.46160896100008 + ], + [ + 71.44856255200006, + 39.46893675600006 + ], + [ + 71.55016362400016, + 39.414788656000155 + ], + [ + 71.65173351500005, + 39.41809950800018 + ], + [ + 71.79061863400011, + 39.5014984390001 + ], + [ + 71.88745861700016, + 39.51835612200006 + ], + [ + 71.989517508, + 39.47403697700008 + ], + [ + 71.99954964000017, + 39.31891896200017 + ], + [ + 71.91322358100018, + 39.28278256600004 + ], + [ + 71.67458358900012, + 39.24310230100019 + ], + [ + 71.61633254700018, + 39.13986675800015 + ], + [ + 71.50000748900004, + 39.136162626999976 + ], + [ + 71.51101661600012, + 39.047217223000075 + ], + [ + 71.66414661100004, + 39.087060600000086 + ], + [ + 71.91870149000016, + 39.028285354000104 + ], + [ + 72.03211249600008, + 39.117669969000076 + ], + [ + 72.08090958900016, + 39.069131709000146 + ], + [ + 72.18137357200004, + 39.11624722500011 + ], + [ + 72.21182251200014, + 39.01976364100017 + ], + [ + 72.452354635, + 38.91685499200014 + ], + [ + 72.46015952800019, + 39.00043497200005 + ], + [ + 72.6221775250001, + 38.9126861690001 + ], + [ + 72.580215539, + 38.83785035800008 + ], + [ + 72.70333060900009, + 38.83868636900007 + ], + [ + 72.69915055400014, + 38.76045152800003 + ], + [ + 72.50691965100015, + 38.73034306200003 + ], + [ + 72.53706348900005, + 38.58466156100019 + ], + [ + 72.61476859300006, + 38.55026910300006 + ], + [ + 72.50446358600004, + 38.39932058200003 + ], + [ + 72.29840053100008, + 38.414720150000164 + ], + [ + 72.27550452400004, + 38.34331756700004 + ], + [ + 72.06757364600014, + 38.41911025600018 + ], + [ + 72.03269151800004, + 38.469471412000075 + ], + [ + 71.90007757200004, + 38.46466858200006 + ], + [ + 71.90605152200015, + 38.527728322000144 + ], + [ + 72.01416063900018, + 38.53068143400003 + ], + [ + 72.21582755300017, + 38.57446564600008 + ], + [ + 72.12729655000015, + 38.7318801350001 + ], + [ + 71.95081356700018, + 38.71500032300003 + ], + [ + 71.90303755700006, + 38.66766821900006 + ], + [ + 71.62139152900005, + 38.61462183600008 + ], + [ + 71.54519650800006, + 38.52134634100008 + ], + [ + 71.48358164100006, + 38.49471284300017 + ], + [ + 71.53031158900012, + 38.453072722 + ], + [ + 71.52996860200005, + 38.35061552200017 + ], + [ + 71.44370255700005, + 38.31673687600011 + ], + [ + 71.4085926090001, + 38.094328942000175 + ], + [ + 71.49195851500002, + 38.028485069000055 + ], + [ + 71.61476161100006, + 38.03543098500012 + ], + [ + 71.75846062400018, + 38.08912193600014 + ], + [ + 71.86196857900018, + 38.05046074300003 + ], + [ + 71.80269662100017, + 37.985863762000065 + ], + [ + 71.64095254400002, + 37.95537324800006 + ], + [ + 71.58838661100003, + 37.90659224800015 + ], + [ + 71.59200256400015, + 37.716631835000044 + ], + [ + 71.70596359100017, + 37.68688144300012 + ], + [ + 71.8448565880002, + 37.74292117100009 + ], + [ + 71.9056926090002, + 37.6771465330001 + ], + [ + 71.85545349300008, + 37.60319199500009 + ], + [ + 71.69373355600015, + 37.49402508300017 + ], + [ + 71.74507858000015, + 37.28184424400007 + ], + [ + 71.64864361100018, + 37.25631648800015 + ], + [ + 71.59224664500005, + 37.323168200000055 + ], + [ + 71.51721151300012, + 37.29395575900003 + ], + [ + 71.51654850400007, + 37.13654881400009 + ], + [ + 71.58561656000006, + 36.966382601000134 + ], + [ + 71.56139353000009, + 36.76538674200003 + ], + [ + 71.69525151800019, + 36.66979281200014 + ], + [ + 71.8694836250001, + 36.693760194000106 + ], + [ + 72.07106051800014, + 36.87411846599997 + ], + [ + 72.24081450900007, + 36.94838179300007 + ], + [ + 72.68641659900004, + 37.02264813800019 + ], + [ + 72.74584161000018, + 36.96248853600008 + ], + [ + 72.79028363499998, + 36.87899036400006 + ], + [ + 72.87100253600005, + 36.91444665200004 + ], + [ + 72.94910460700015, + 36.813111790000164 + ], + [ + 72.72155756000012, + 36.77407257300007 + ], + [ + 72.61393761200014, + 36.77733045100018 + ], + [ + 72.54777556200008, + 36.715842653000095 + ], + [ + 72.37254349400013, + 36.74416191900008 + ], + [ + 72.33233651000012, + 36.62695055800009 + ], + [ + 72.27191958400005, + 36.56735070000008 + ], + [ + 72.26417554400007, + 36.46802196300018 + ], + [ + 72.14955855000005, + 36.48998254900016 + ], + [ + 72.02822849000006, + 36.472317856000075 + ], + [ + 71.98945648800014, + 36.40212461300018 + ], + [ + 72.02613049900009, + 36.34044973100009 + ], + [ + 71.93421153200006, + 36.1891850450001 + ], + [ + 71.86254860600013, + 36.17300746900003 + ], + [ + 71.7695926290001, + 36.22274635300016 + ], + [ + 71.75086963700011, + 36.329815108000105 + ], + [ + 71.70557349700005, + 36.37055115700008 + ], + [ + 71.82494353300007, + 36.487938538000094 + ], + [ + 71.91934153200003, + 36.533538606000036 + ], + [ + 71.86911750400009, + 36.58117866099997 + ] + ], + [ + [ + 75.36809554600006, + 36.79714409700017 + ], + [ + 75.42827559900019, + 36.83030022300011 + ], + [ + 75.53881060600008, + 36.80573772700012 + ], + [ + 75.70460549000006, + 36.926093307000144 + ], + [ + 75.73162857800008, + 36.87696814600008 + ], + [ + 75.83355755000008, + 36.8671453930001 + ], + [ + 75.8630375410001, + 36.809422746999985 + ], + [ + 76.03374455500011, + 36.670646593000185 + ], + [ + 75.92812352200019, + 36.680473536000136 + ], + [ + 75.7414476420002, + 36.81802040000002 + ], + [ + 75.66653455000011, + 36.76398260500014 + ], + [ + 75.61372353100006, + 36.67801663300014 + ], + [ + 75.8003995790001, + 36.63134854300006 + ], + [ + 75.81268359300003, + 36.53801236300012 + ], + [ + 75.95269054500011, + 36.481521856000086 + ], + [ + 75.919532575, + 36.437306814000124 + ], + [ + 75.79794351400017, + 36.40537444500012 + ], + [ + 75.69600649500012, + 36.45081425100017 + ], + [ + 75.5867076510001, + 36.569944732000124 + ], + [ + 75.44670053100003, + 36.55643293600002 + ], + [ + 75.45529164700014, + 36.637490299000035 + ], + [ + 75.36563864300012, + 36.71117376500018 + ], + [ + 75.28458362700002, + 36.684158221000075 + ], + [ + 75.16054554200008, + 36.7283695750001 + ], + [ + 75.1507185980002, + 36.79100217299998 + ], + [ + 75.36809554600006, + 36.79714409700017 + ] + ], + [ + [ + 81.189102504, + 34.5046647420001 + ], + [ + 81.22451755399999, + 34.36180358400014 + ], + [ + 81.15662363500007, + 34.31821869400005 + ], + [ + 80.9780956350001, + 34.288044513000045 + ], + [ + 80.90181763400011, + 34.10616542800011 + ], + [ + 80.7928545690001, + 34.18830522900015 + ], + [ + 80.7316665080001, + 34.34671682900017 + ], + [ + 80.74927554600009, + 34.40957825300018 + ], + [ + 80.61013058800012, + 34.392812770000035 + ], + [ + 80.63360561700011, + 34.46154370600004 + ], + [ + 80.71742263700008, + 34.552064237000025 + ], + [ + 80.78112057499999, + 34.50763948000019 + ], + [ + 80.87416053900017, + 34.50093781300018 + ], + [ + 80.97893550200018, + 34.35761145900011 + ], + [ + 81.07699555500011, + 34.44310435699998 + ], + [ + 81.189102504, + 34.5046647420001 + ] + ], + [ + [ + 80.3797985710001, + 34.544980523000106 + ], + [ + 80.31356862800016, + 34.40601125000018 + ], + [ + 80.3255155220001, + 34.305042845000116 + ], + [ + 80.16156750800013, + 34.278985855000144 + ], + [ + 80.06276649400013, + 34.21601429200018 + ], + [ + 79.93465463600012, + 34.2594431120001 + ], + [ + 79.91402459300019, + 34.18670227400014 + ], + [ + 80.00739262400003, + 34.112875141000075 + ], + [ + 79.93139659000002, + 34.05533170000018 + ], + [ + 80.0283965000001, + 34.003869329 + ], + [ + 79.96504959600009, + 33.88813854700004 + ], + [ + 79.89013650400017, + 33.86099341900007 + ], + [ + 79.60242449300017, + 33.93807926800008 + ], + [ + 79.62496158600015, + 34.04222525300014 + ], + [ + 79.80328355900008, + 34.02710362900007 + ], + [ + 79.81630652200016, + 34.12481901800004 + ], + [ + 79.86734057800015, + 34.19104326200011 + ], + [ + 79.8564834980001, + 34.28007265200006 + ], + [ + 79.792419607, + 34.33761223800013 + ], + [ + 79.83259557700012, + 34.42664079100007 + ], + [ + 79.92162362700009, + 34.35824043700006 + ], + [ + 79.96614058500018, + 34.401670430000024 + ], + [ + 80.1702575290002, + 34.44509522700008 + ], + [ + 80.27448264000003, + 34.51892336500009 + ], + [ + 80.3797985710001, + 34.544980523000106 + ] + ], + [ + [ + 79.86981156300004, + 33.12543866700008 + ], + [ + 80.00920060100015, + 33.07475430400018 + ], + [ + 80.08284752300011, + 32.95279794800007 + ], + [ + 80.16283451599998, + 32.97972129100009 + ], + [ + 80.2673726070002, + 32.96863639200012 + ], + [ + 80.39646162700018, + 32.909239209000134 + ], + [ + 80.347366641, + 32.83875729400012 + ], + [ + 80.55881456600008, + 32.79520274499998 + ], + [ + 80.4194335740001, + 32.74055860400017 + ], + [ + 80.31410255500003, + 32.674036467000064 + ], + [ + 80.27925864800017, + 32.72155414700006 + ], + [ + 80.08839449900006, + 32.81817016600007 + ], + [ + 79.89356956400019, + 32.97417917700017 + ], + [ + 79.86981156300004, + 33.12543866700008 + ] + ], + [ + [ + 81.93077051400007, + 30.862746752000135 + ], + [ + 82.01875250100011, + 30.96937294300011 + ], + [ + 82.10202050700013, + 31.002675753000062 + ], + [ + 82.17655959800015, + 30.901178281000057 + ], + [ + 82.25982659800007, + 30.87659734400006 + ], + [ + 82.36132859600013, + 30.80681766500004 + ], + [ + 82.43666061500016, + 30.88214683500013 + ], + [ + 82.47313664600006, + 30.804436869000085 + ], + [ + 82.38432350900018, + 30.616507391000084 + ], + [ + 82.18211361500005, + 30.69104581200014 + ], + [ + 82.12898257500007, + 30.738623004000146 + ], + [ + 82.01717351800016, + 30.770340796000085 + ], + [ + 82.0132065310001, + 30.83694876300018 + ], + [ + 81.93077051400007, + 30.862746752000135 + ] + ], + [ + [ + 83.49295761000013, + 29.383829338000112 + ], + [ + 83.58721160800019, + 29.370204051000087 + ], + [ + 83.5985645610001, + 29.257787307000058 + ], + [ + 83.68373157000013, + 29.298666687000093 + ], + [ + 83.69281755300005, + 29.349763774000053 + ], + [ + 83.89154057600007, + 29.478077636000023 + ], + [ + 83.89949064300015, + 29.388371156000176 + ], + [ + 83.8611375690001, + 29.26131022100003 + ], + [ + 83.85746763600014, + 29.162404935999973 + ], + [ + 83.75413553400017, + 28.938708872000063 + ], + [ + 83.65420564600015, + 28.979587246000165 + ], + [ + 83.58380151500018, + 28.9284891530001 + ], + [ + 83.50772065600017, + 29.02160053 + ], + [ + 83.57812461900016, + 29.132880185000033 + ], + [ + 83.42141756300015, + 29.190793101000054 + ], + [ + 83.45889255000009, + 29.25438140400007 + ], + [ + 83.41005656400006, + 29.349763774000053 + ], + [ + 83.49295761000013, + 29.383829338000112 + ] + ], + [ + [ + 84.91587050000015, + 29.829398570000137 + ], + [ + 84.79200759600019, + 29.926983872000164 + ], + [ + 84.70568053200003, + 29.908216456000048 + ], + [ + 84.62310755300001, + 29.966392396000117 + ], + [ + 84.6062165100002, + 30.05084124399997 + ], + [ + 84.65313756600005, + 30.131533994000108 + ], + [ + 84.64562956000003, + 30.259144279000054 + ], + [ + 84.48986060599998, + 30.354851028000155 + ], + [ + 84.51238261200007, + 30.463695909000137 + ], + [ + 84.48235360600006, + 30.510611432000132 + ], + [ + 84.50675165000013, + 30.61570239300005 + ], + [ + 84.57807158800011, + 30.64384932700017 + ], + [ + 84.7244496240001, + 30.50498063700013 + ], + [ + 84.80702260200013, + 30.493721730000175 + ], + [ + 84.9083635, + 30.38112393600005 + ], + [ + 85.05850249700006, + 30.304182759000128 + ], + [ + 85.07350962400017, + 30.22348984200005 + ], + [ + 85.17109660200015, + 30.189709934 + ], + [ + 85.20487952800005, + 30.266651278999973 + ], + [ + 85.27806863000018, + 30.281663603000084 + ], + [ + 85.37190252700003, + 30.178449517000104 + ], + [ + 85.46199055200009, + 30.174695431000032 + ], + [ + 85.5370555240001, + 30.048964033000175 + ], + [ + 85.52954852400018, + 29.98328059 + ], + [ + 85.59147654000003, + 29.94011932 + ], + [ + 85.65341159600013, + 29.759964058000037 + ], + [ + 85.5370555240001, + 29.679271141000186 + ], + [ + 85.488258599, + 29.735568026000124 + ], + [ + 85.38691753300014, + 29.669886427000108 + ], + [ + 85.30809763600018, + 29.78248304700014 + ], + [ + 85.31748151200014, + 29.95325460100014 + ], + [ + 85.2761915870002, + 30.026444877000188 + ], + [ + 85.12418359300017, + 30.095879557000103 + ], + [ + 85.11104563000015, + 30.045210281000095 + ], + [ + 85.18048064600015, + 29.913846245000173 + ], + [ + 85.14670559900003, + 29.81626278700014 + ], + [ + 84.99520856700019, + 29.805597318000082 + ], + [ + 84.91587050000015, + 29.829398570000137 + ] + ], + [ + [ + 84.38323257200017, + 28.94324968400008 + ], + [ + 84.57855254100019, + 28.920539588000054 + ], + [ + 84.50928466100015, + 28.787684746000025 + ], + [ + 84.56265257400008, + 28.697976422000067 + ], + [ + 84.71595758300009, + 28.372086685000113 + ], + [ + 84.65917957700003, + 28.368677932000082 + ], + [ + 84.53426357100017, + 28.44589370100016 + ], + [ + 84.45137057100004, + 28.536736097000187 + ], + [ + 84.52177453500008, + 28.594645660000026 + ], + [ + 84.45023365000003, + 28.643473767000046 + ], + [ + 84.26059761700014, + 28.644608676000075 + ], + [ + 84.3412166060001, + 28.817207653000025 + ], + [ + 84.25264754900013, + 28.788819823999972 + ], + [ + 84.11183962200016, + 28.836510841000063 + ], + [ + 84.0368886440001, + 28.829698198000074 + ], + [ + 84.06755065200008, + 28.93643704100009 + ], + [ + 84.14930756800015, + 28.969365683000035 + ], + [ + 84.38323257200017, + 28.94324968400008 + ] + ], + [ + [ + 75.26024660400014, + 34.61111776200016 + ], + [ + 75.17916862200013, + 34.54619740800018 + ], + [ + 74.92999257700006, + 34.52931793100004 + ], + [ + 74.75390656100012, + 34.63644703600016 + ], + [ + 74.71420249200014, + 34.687730704000046 + ], + [ + 74.92852758800007, + 34.67403618300017 + ], + [ + 75.02897665100016, + 34.63617630000016 + ], + [ + 75.14701849100004, + 34.65791543700004 + ], + [ + 75.26024660400014, + 34.61111776200016 + ] + ], + [ + [ + 78.23100263900011, + 34.63162526200017 + ], + [ + 78.24292757300003, + 34.69721751000003 + ], + [ + 78.36293061000009, + 34.69870848300019 + ], + [ + 78.44194060900014, + 34.635352024000156 + ], + [ + 78.58281760300008, + 34.59883106600017 + ], + [ + 78.58281760300008, + 34.54069250900005 + ], + [ + 78.68344855300018, + 34.49000915200003 + ], + [ + 78.61561565500006, + 34.421437808000064 + ], + [ + 78.77438365300003, + 34.395349637000095 + ], + [ + 78.83028457700004, + 34.35658970500009 + ], + [ + 78.77960155500011, + 34.27609393000006 + ], + [ + 78.6312715410001, + 34.323051364000094 + ], + [ + 78.3934935440002, + 34.30814398100006 + ], + [ + 78.31001263800016, + 34.36553420200005 + ], + [ + 78.43076350900009, + 34.40429446900015 + ], + [ + 78.29212163300019, + 34.49000915200003 + ], + [ + 78.23100263900011, + 34.63162526200017 + ] + ], + [ + [ + 78.8388515530001, + 34.22698503000015 + ], + [ + 78.88856462000012, + 34.253912397000136 + ], + [ + 79.02009562500012, + 34.20419983200014 + ], + [ + 79.0925975780001, + 34.20316282300007 + ], + [ + 79.101921607, + 34.118238218000045 + ], + [ + 78.95795454100005, + 34.05402680500015 + ], + [ + 78.8502425590001, + 34.051955972000144 + ], + [ + 78.75392158300008, + 33.96495634300015 + ], + [ + 78.61721056300019, + 34.01570608500009 + ], + [ + 78.60166950900003, + 34.101667699000075 + ], + [ + 78.47946152800017, + 34.15759293000019 + ], + [ + 78.38313250600004, + 34.078883171000086 + ], + [ + 78.30856357500005, + 34.14930825700009 + ], + [ + 78.31270557600004, + 34.254949239000155 + ], + [ + 78.42353059700008, + 34.27048308400015 + ], + [ + 78.47220665600014, + 34.236307718000035 + ], + [ + 78.62860157000006, + 34.24873539800018 + ], + [ + 78.70006550900018, + 34.220770184 + ], + [ + 78.72698952300016, + 34.13998959200012 + ], + [ + 78.82434851300007, + 34.17002161600004 + ], + [ + 78.8388515530001, + 34.22698503000015 + ] + ], + [ + [ + 76.64464565500003, + 33.41029613799998 + ], + [ + 76.69696851200018, + 33.42833567000008 + ], + [ + 76.83229065100016, + 33.371502343000145 + ], + [ + 76.80432158100007, + 33.27768202400017 + ], + [ + 76.98655656100016, + 33.268660582000166 + ], + [ + 76.99377455300015, + 33.207318126000075 + ], + [ + 77.14082364500007, + 33.09906467300016 + ], + [ + 76.97573049500005, + 33.01246201100008 + ], + [ + 76.723129605, + 33.01246201100008 + ], + [ + 76.6464465900001, + 33.05125295600004 + ], + [ + 76.65366357700015, + 33.21273099100006 + ], + [ + 76.56796264000013, + 33.29302073900004 + ], + [ + 76.64464565500003, + 33.41029613799998 + ] + ], + [ + [ + 82.03549149700012, + 30.002502808000088 + ], + [ + 82.13063850400005, + 30.101172393000184 + ], + [ + 82.06984757700019, + 30.247413973000107 + ], + [ + 81.95883949600011, + 30.327582853000024 + ], + [ + 81.9059825440001, + 30.236840202000167 + ], + [ + 81.78352360900004, + 30.272959834000176 + ], + [ + 81.75797255000009, + 30.37251220100012 + ], + [ + 81.79849955500015, + 30.43065411100008 + ], + [ + 81.97998854600007, + 30.406868114000133 + ], + [ + 82.03725454700015, + 30.44034493200013 + ], + [ + 82.20993063700018, + 30.367225567000048 + ], + [ + 82.21961961400007, + 30.27207906400014 + ], + [ + 82.3253405590001, + 30.1786972860001 + ], + [ + 82.28393563399999, + 30.090599628000177 + ], + [ + 82.40621150800013, + 30.035280744000033 + ], + [ + 82.47356462600015, + 29.96146132200016 + ], + [ + 82.40463252500012, + 29.93554950700019 + ], + [ + 82.33238957200007, + 30.016601337000168 + ], + [ + 82.26543459400011, + 30.002502808000088 + ], + [ + 82.1817396150002, + 29.890620159000093 + ], + [ + 82.08394660900007, + 29.94259516700015 + ], + [ + 82.03549149700012, + 30.002502808000088 + ] + ], + [ + [ + 77.67034149400007, + 32.31882264200016 + ], + [ + 77.7030335990001, + 32.41688772400005 + ], + [ + 77.83151258400017, + 32.362152388000084 + ], + [ + 77.94783060200007, + 32.22455657400019 + ], + [ + 77.86192363800018, + 32.17134339100011 + ], + [ + 77.81098949400007, + 32.07860048200013 + ], + [ + 77.85964158100006, + 32.01930237300013 + ], + [ + 77.74180560100018, + 31.93492225600005 + ], + [ + 77.71900162700001, + 32.01246257200006 + ], + [ + 77.59660354500016, + 32.08239932800018 + ], + [ + 77.52970154100012, + 32.07327864400014 + ], + [ + 77.41567262100011, + 32.246602153000026 + ], + [ + 77.52590152100015, + 32.23291836100009 + ], + [ + 77.58064255700009, + 32.183505197000045 + ], + [ + 77.67034149400007, + 32.31882264200016 + ] + ], + [ + [ + 74.06622354000012, + 36.88377710100008 + ], + [ + 74.12480952300012, + 36.81824235300019 + ], + [ + 74.14852863300013, + 36.727400292000084 + ], + [ + 74.23926558500017, + 36.717185769000025 + ], + [ + 74.31760352200018, + 36.662635673000125 + ], + [ + 74.41142250000013, + 36.709361766000086 + ], + [ + 74.64677460700005, + 36.55754001800017 + ], + [ + 74.82153360000018, + 36.505955271000175 + ], + [ + 74.76965364300008, + 36.37364106200005 + ], + [ + 74.64598855200012, + 36.36655734800013 + ], + [ + 74.5467375980001, + 36.39963753500007 + ], + [ + 74.48354358000012, + 36.31600240200015 + ], + [ + 74.36198452600001, + 36.42805973000014 + ], + [ + 74.32205951000009, + 36.53134070300018 + ], + [ + 74.2511975590001, + 36.517997887000035 + ], + [ + 74.11405151800005, + 36.44131671600013 + ], + [ + 74.04183957800018, + 36.452516447000164 + ], + [ + 74.11278551600009, + 36.548068132000026 + ], + [ + 74.21061657500007, + 36.569662764999975 + ], + [ + 74.248855488, + 36.656616796000094 + ], + [ + 74.05896749400017, + 36.715830583000184 + ], + [ + 74.06622354000012, + 36.88377710100008 + ] + ], + [ + [ + 74.95615350300017, + 36.41582701300007 + ], + [ + 75.11830158800012, + 36.449429560000056 + ], + [ + 75.33084854800006, + 36.38880761299998 + ], + [ + 75.33669257800005, + 36.304085683000096 + ], + [ + 75.43018348800007, + 36.34352488400009 + ], + [ + 75.5755305510001, + 36.323803104000035 + ], + [ + 75.68655355200019, + 36.2522256740001 + ], + [ + 75.84870163699998, + 36.323803104000035 + ], + [ + 75.99405657900007, + 36.363975387000096 + ], + [ + 76.21901663400007, + 36.23542616100019 + ], + [ + 76.32857565300003, + 36.10103726300008 + ], + [ + 76.29351750400014, + 36.05721516400018 + ], + [ + 76.35998549400017, + 35.99513258700006 + ], + [ + 76.6389996050001, + 35.99074969000009 + ], + [ + 76.68720258900015, + 35.856360792000146 + ], + [ + 76.77192653100019, + 35.82130063200003 + ], + [ + 76.8464275680002, + 35.73657451100007 + ], + [ + 76.93115251600017, + 35.69421371300007 + ], + [ + 77.00273849600012, + 35.721967871000174 + ], + [ + 77.07504263700008, + 35.66426835800013 + ], + [ + 77.13055464000013, + 35.697867552000105 + ], + [ + 77.31753562200004, + 35.60583660200018 + ], + [ + 77.53519453700005, + 35.56639773600017 + ], + [ + 77.62430556700019, + 35.49189837500006 + ], + [ + 77.70610858400005, + 35.526957697000114 + ], + [ + 77.78353155300005, + 35.509426108000014 + ], + [ + 77.59362763400003, + 35.3195277210001 + ], + [ + 77.69223049900012, + 35.273515934000045 + ], + [ + 77.70246161800009, + 35.10406704400003 + ], + [ + 77.73167456200008, + 35.04563562300001 + ], + [ + 77.88359856900007, + 34.93754125900006 + ], + [ + 77.95517750700014, + 34.934619327000064 + ], + [ + 78.07423355700013, + 34.86230931900019 + ], + [ + 78.12535864000006, + 34.75567608800003 + ], + [ + 78.11367057900014, + 34.60083417300007 + ], + [ + 78.17210350900018, + 34.552629513000056 + ], + [ + 78.17940565500004, + 34.43576851500018 + ], + [ + 78.26267265500019, + 34.31598676000016 + ], + [ + 78.16772463500007, + 34.244409666000024 + ], + [ + 78.01433563900014, + 34.39486466 + ], + [ + 77.93107551200018, + 34.390485619000174 + ], + [ + 77.86898757000006, + 34.46863563400012 + ], + [ + 77.83977563200011, + 34.603024029000096 + ], + [ + 77.69661758700016, + 34.66583834700009 + ], + [ + 77.722907594, + 34.730110780000075 + ], + [ + 77.64110558300007, + 34.76224884100003 + ], + [ + 77.61042765000008, + 34.974058529000104 + ], + [ + 77.51109354800013, + 34.97844125800009 + ], + [ + 77.39276856800012, + 35.109907889000056 + ], + [ + 77.29489157500007, + 35.13912334800017 + ], + [ + 77.26714362000001, + 35.222389174 + ], + [ + 77.17803158400017, + 35.16833931000008 + ], + [ + 77.26129959000019, + 35.026645918999975 + ], + [ + 77.3255695090001, + 34.965292735000105 + ], + [ + 77.35040257300011, + 34.88641366100012 + ], + [ + 77.42490361100005, + 34.871804172000054 + ], + [ + 77.42052456900007, + 34.80314867300018 + ], + [ + 77.2817455660001, + 34.813375601000075 + ], + [ + 77.22988857500013, + 34.930964482000036 + ], + [ + 77.1714556460002, + 34.97479043700008 + ], + [ + 77.04290759300011, + 34.922202711000125 + ], + [ + 76.79164864600017, + 35.03906287 + ], + [ + 76.84861759200004, + 35.109178999000164 + ], + [ + 76.93772862200018, + 35.09165042800015 + ], + [ + 77.02245357000015, + 35.1544618960001 + ], + [ + 76.790191536, + 35.25525528700007 + ], + [ + 76.8223265790001, + 35.33267624500019 + ], + [ + 76.73760263700007, + 35.37211544600012 + ], + [ + 76.58421364100013, + 35.51819190200001 + ], + [ + 76.62365753700004, + 35.32391061800007 + ], + [ + 76.4775775600001, + 35.30930381100006 + ], + [ + 76.43959865400012, + 35.614602397000056 + ], + [ + 76.23362763300008, + 35.526957697000114 + ], + [ + 76.19856261100011, + 35.459760146000065 + ], + [ + 76.103614591, + 35.49774223800017 + ], + [ + 76.15912659500015, + 35.614602397000056 + ], + [ + 76.27160653900012, + 35.73146289100009 + ], + [ + 76.10214960200005, + 35.69348482300012 + ], + [ + 76.03349259500004, + 35.70516835800004 + ], + [ + 76.02911355400016, + 35.87607838100007 + ], + [ + 75.81583351200015, + 35.90529484600012 + ], + [ + 75.76178750399998, + 35.81618884500011 + ], + [ + 75.61497461400012, + 35.917711462 + ], + [ + 75.5492405440001, + 36.01412128600009 + ], + [ + 75.49519352900012, + 35.97614288200015 + ], + [ + 75.23516862000014, + 35.987827758000094 + ], + [ + 75.19718954600012, + 36.01996615400003 + ], + [ + 75.09055363300013, + 35.932316928000034 + ], + [ + 74.87435149200019, + 35.95423258700015 + ], + [ + 74.66399354999999, + 36.08277644900011 + ], + [ + 74.54713456500019, + 36.09300421500012 + ], + [ + 74.50184663900012, + 36.056479066000065 + ], + [ + 74.38644459600005, + 36.074014845000136 + ], + [ + 74.42004362300014, + 36.17772631300005 + ], + [ + 74.52230049500014, + 36.22739629800003 + ], + [ + 74.61140465200015, + 36.15289291300019 + ], + [ + 74.76187154900015, + 36.15143211500009 + ], + [ + 74.81446061500003, + 36.09884824500011 + ], + [ + 74.88603955400004, + 36.12075870800015 + ], + [ + 74.94447348900007, + 36.069635804000086 + ], + [ + 75.09493250600013, + 36.20256004800018 + ], + [ + 74.89772761500012, + 36.25222181800012 + ], + [ + 74.95177462900006, + 36.29750471500006 + ], + [ + 74.95615350300017, + 36.41582701300007 + ] + ], + [ + [ + 78.04418158400006, + 34.22713322200019 + ], + [ + 77.95404863300018, + 34.209342633000176 + ], + [ + 77.88848153000004, + 34.15088724000009 + ], + [ + 78.05318458700003, + 34.08137410500012 + ], + [ + 77.97182463800004, + 34.03556046600016 + ], + [ + 78.0215915170001, + 33.98263679400014 + ], + [ + 78.0263286340001, + 33.902854990000094 + ], + [ + 78.15745563000013, + 33.92339249700018 + ], + [ + 78.13771054800014, + 33.82386225800013 + ], + [ + 78.2905656170002, + 33.83729409000017 + ], + [ + 78.29846153699998, + 33.75435331400007 + ], + [ + 78.40984362000017, + 33.71011564100007 + ], + [ + 78.43907165100006, + 33.55134429000009 + ], + [ + 78.49278255200011, + 33.49842078500012 + ], + [ + 78.45645152700013, + 33.36097383400005 + ], + [ + 78.31426259800008, + 33.41152827700006 + ], + [ + 78.3087315480002, + 33.48104208299998 + ], + [ + 78.2107776100001, + 33.48104208299998 + ], + [ + 78.19892861600005, + 33.57899250000008 + ], + [ + 78.1507415580001, + 33.66588081700007 + ], + [ + 78.06622364300011, + 33.69195021300004 + ], + [ + 78.07553861999997, + 33.78798234800007 + ], + [ + 77.98303258300007, + 33.812819604000026 + ], + [ + 77.92222556400014, + 33.913882892000174 + ], + [ + 77.912803634, + 34.02522675300003 + ], + [ + 77.78793356100016, + 34.12788595600017 + ], + [ + 77.84848761400008, + 34.14673350400017 + ], + [ + 77.93389853700006, + 34.24778572900004 + ], + [ + 78.04418158400006, + 34.22713322200019 + ] + ], + [ + [ + 79.00695062100016, + 33.30604722300012 + ], + [ + 78.91074363899997, + 33.37232946900019 + ], + [ + 79.00779752900007, + 33.44325445100003 + ], + [ + 79.11045857600004, + 33.43112080800017 + ], + [ + 79.10765851700006, + 33.2734104380001 + ], + [ + 79.30456551600008, + 33.29860560100008 + ], + [ + 79.37642659000011, + 33.324734676000105 + ], + [ + 79.47068058800016, + 33.25287997200013 + ], + [ + 79.61813352000007, + 33.29767470700017 + ], + [ + 79.73292552800018, + 33.20342054100007 + ], + [ + 79.61813352000007, + 33.130630585000176 + ], + [ + 79.6722645210001, + 33.05504090600016 + ], + [ + 79.65639456100007, + 32.967320433000054 + ], + [ + 79.5117495670001, + 32.99811554600012 + ], + [ + 79.53414165300012, + 33.08023606900014 + ], + [ + 79.41655763300008, + 33.07557019799998 + ], + [ + 79.34189549600006, + 33.16609056200002 + ], + [ + 79.22617359900005, + 33.13716025500008 + ], + [ + 79.08432765700019, + 33.20155439400014 + ], + [ + 79.00695062100016, + 33.30604722300012 + ] + ], + [ + [ + 78.38893865000011, + 35.30014507300007 + ], + [ + 78.50848353300012, + 35.30783194900016 + ], + [ + 78.70230062700017, + 35.289045421000026 + ], + [ + 78.78171563900008, + 35.25147840200009 + ], + [ + 78.76377853400004, + 35.14218726900009 + ], + [ + 78.68522652200011, + 35.121694689000094 + ], + [ + 78.66986065000009, + 35.02179816100016 + ], + [ + 78.56739758300017, + 35.03204386500005 + ], + [ + 78.45383453000005, + 35.10547101300011 + ], + [ + 78.34283449500009, + 35.042289568 + ], + [ + 78.24037159500011, + 35.08925152700016 + ], + [ + 78.26683862800019, + 35.15328692100013 + ], + [ + 78.17292057700013, + 35.20366249400007 + ], + [ + 78.18231149300016, + 35.254893189000086 + ], + [ + 78.3385615680001, + 35.24891555100004 + ], + [ + 78.38893865000011, + 35.30014507300007 + ] + ], + [ + [ + 78.67256163400009, + 34.59013433800004 + ], + [ + 78.77904550000005, + 34.73637860000014 + ], + [ + 78.93939952200003, + 34.726112948000036 + ], + [ + 79.01252760400018, + 34.65940758300002 + ], + [ + 79.1279836270001, + 34.66325655300017 + ], + [ + 79.26781455900016, + 34.54010175200011 + ], + [ + 79.72067252700003, + 34.55934609900015 + ], + [ + 79.75145758100007, + 34.45928595700019 + ], + [ + 79.46537752600011, + 34.3887277660001 + ], + [ + 79.30886861800013, + 34.40540440100017 + ], + [ + 79.22035253500013, + 34.370768365000174 + ], + [ + 78.96762859900002, + 34.36948610100012 + ], + [ + 78.97403756900007, + 34.51829421999997 + ], + [ + 78.85986364300015, + 34.51188156100011 + ], + [ + 78.87012460100004, + 34.398992412000155 + ], + [ + 78.75338765600003, + 34.4387593460001 + ], + [ + 78.63536056900006, + 34.5413877040001 + ], + [ + 78.67256163400009, + 34.59013433800004 + ] + ], + [ + [ + 78.96097554700009, + 36.25830976200007 + ], + [ + 79.08193965300018, + 36.20179695900015 + ], + [ + 79.38011965600015, + 36.189578324000024 + ], + [ + 79.4682764910001, + 36.24160613800018 + ], + [ + 79.48561864800013, + 36.10864803100009 + ], + [ + 79.6941835340001, + 36.15618482200017 + ], + [ + 79.69914260300015, + 36.09174139700008 + ], + [ + 79.6168445510001, + 35.99556744000006 + ], + [ + 79.70112659900019, + 35.878573171000085 + ], + [ + 79.76259662700016, + 35.855769868000095 + ], + [ + 79.90239755200014, + 35.93509083500015 + ], + [ + 79.99658952500016, + 35.87461054200003 + ], + [ + 79.97527350700017, + 35.811153835000084 + ], + [ + 79.81266760200015, + 35.75166512200019 + ], + [ + 79.77400255400005, + 35.67532308300008 + ], + [ + 79.83249650300007, + 35.634675043000186 + ], + [ + 79.9177625870002, + 35.69118885200015 + ], + [ + 80.08929454700012, + 35.684245954000176 + ], + [ + 80.12399260900008, + 35.65152769800005 + ], + [ + 80.0555805210002, + 35.49190156000009 + ], + [ + 80.06847356500009, + 35.40663363200014 + ], + [ + 79.89842955900019, + 35.50479108300016 + ], + [ + 79.72591356300006, + 35.56229680600012 + ], + [ + 79.68823255000012, + 35.62971630900006 + ], + [ + 79.5191875000001, + 35.74472658200017 + ], + [ + 79.51026161100009, + 35.800247973000126 + ], + [ + 79.27825153700007, + 36.01936316000001 + ], + [ + 79.16224650000004, + 36.05307232500019 + ], + [ + 79.25148057600006, + 36.154205854 + ], + [ + 79.1067195760001, + 36.167094539000175 + ], + [ + 78.96097554700009, + 36.25830976200007 + ] + ], + [ + [ + 80.3698886470001, + 35.87262637800018 + ], + [ + 80.43730949100006, + 35.89047094700004 + ], + [ + 80.5116725630001, + 35.788350365000156 + ], + [ + 80.45565060400014, + 35.639629921000164 + ], + [ + 80.55678564200002, + 35.599969941000154 + ], + [ + 80.59991455700009, + 35.72291385300008 + ], + [ + 80.7198865810002, + 35.731836891000114 + ], + [ + 80.73574849500005, + 35.67532308300008 + ], + [ + 80.90033755800005, + 35.68028198400009 + ], + [ + 80.98907458700006, + 35.559320894999985 + ], + [ + 81.03964260900005, + 35.59898205000019 + ], + [ + 81.16654965300017, + 35.54742328700007 + ], + [ + 81.33213063000017, + 35.548415033000026 + ], + [ + 81.39459257200014, + 35.511730125000156 + ], + [ + 81.43276962700008, + 35.41754033200016 + ], + [ + 81.54976657800012, + 35.455216317000065 + ], + [ + 81.57653854400013, + 35.57419458300018 + ], + [ + 81.76491561600005, + 35.58410836200005 + ], + [ + 81.80458062600013, + 35.503799169000104 + ], + [ + 81.70146159100017, + 35.45819239500014 + ], + [ + 81.77880057400012, + 35.38283824700011 + ], + [ + 81.91017165100004, + 35.38085525700018 + ], + [ + 81.9627224960002, + 35.444310622000046 + ], + [ + 82.18183852100003, + 35.60691166500004 + ], + [ + 82.2532275260001, + 35.59898205000019 + ], + [ + 82.29982755500015, + 35.71993894700012 + ], + [ + 82.41384859500005, + 35.74571832900011 + ], + [ + 82.48325360400014, + 35.70804117100016 + ], + [ + 82.41682450600018, + 35.5662597700001 + ], + [ + 82.17639162500018, + 35.410601457999974 + ], + [ + 82.1000445570001, + 35.37589920500011 + ], + [ + 81.997917605, + 35.20635945500004 + ], + [ + 81.80606858100009, + 35.131006481000156 + ], + [ + 81.68212856400004, + 35.201400554000145 + ], + [ + 81.6969985630002, + 35.37589920500011 + ], + [ + 81.557197638, + 35.332276260000185 + ], + [ + 81.56215654000016, + 35.26584498400007 + ], + [ + 81.49473552799998, + 35.14389617200004 + ], + [ + 81.34848757800012, + 35.096304228000065 + ], + [ + 81.28007465200017, + 35.286668481 + ], + [ + 81.15019253600008, + 35.182564238000055 + ], + [ + 81.05500764400011, + 35.171658376000096 + ], + [ + 80.90132863400015, + 35.05367236000018 + ], + [ + 80.81952662300017, + 35.14290425700011 + ], + [ + 80.69757864900004, + 35.16769138900003 + ], + [ + 80.55579356000004, + 35.28964036900004 + ], + [ + 80.45366660800016, + 35.328308603000096 + ], + [ + 80.42689564700015, + 35.37589920500011 + ], + [ + 80.2608186290002, + 35.44629461900013 + ], + [ + 80.2231446560001, + 35.52164474299997 + ], + [ + 80.12895151100003, + 35.54147632600012 + ], + [ + 80.15373964800011, + 35.68028198400009 + ], + [ + 80.27470358700009, + 35.79529309500015 + ], + [ + 80.27767949800005, + 35.859736855000165 + ], + [ + 80.3698886470001, + 35.87262637800018 + ] + ], + [ + [ + 77.77559657300009, + 36.799486 + ], + [ + 77.85678050200005, + 36.80770563000016 + ], + [ + 77.83314554600008, + 36.68542137400004 + ], + [ + 77.75196849100013, + 36.64740122900008 + ], + [ + 77.71572849400019, + 36.452023256000075 + ], + [ + 77.56145453700015, + 36.441384609000124 + ], + [ + 77.29812665500003, + 36.51452995800008 + ], + [ + 77.21300457200016, + 36.62092380200005 + ], + [ + 77.35265361700004, + 36.639542356000106 + ], + [ + 77.49096658700006, + 36.598314289000086 + ], + [ + 77.5772705170001, + 36.716250517000105 + ], + [ + 77.77559657300009, + 36.799486 + ] + ], + [ + [ + 73.07358559200014, + 39.48366158100009 + ], + [ + 73.19121554500015, + 39.342668749000154 + ], + [ + 73.19487759800018, + 39.21918152300003 + ], + [ + 73.03598755900015, + 39.22957223300017 + ], + [ + 73.01654858500007, + 39.173130173000175 + ], + [ + 72.90885956900019, + 39.13248565400016 + ], + [ + 72.87567863200007, + 39.013346791000174 + ], + [ + 72.73116255100001, + 39.03008142800002 + ], + [ + 72.67225654700007, + 39.286036588000115 + ], + [ + 72.4843134910002, + 39.340909723000095 + ], + [ + 72.62162750500005, + 39.408650756000156 + ], + [ + 72.75763662500009, + 39.377778195000076 + ], + [ + 72.830703519, + 39.41775249700015 + ], + [ + 72.97346459700003, + 39.43997644300009 + ], + [ + 73.07358559200014, + 39.48366158100009 + ] + ], + [ + [ + 72.32610355899999, + 38.13950203600018 + ], + [ + 72.4178775200001, + 38.149148936000074 + ], + [ + 72.56694748899997, + 38.058643324 + ], + [ + 72.5598755100001, + 37.98643591100006 + ], + [ + 72.48854048400011, + 37.93201674 + ], + [ + 72.520500514, + 37.81827967800018 + ], + [ + 72.39647651000007, + 37.77744069900018 + ], + [ + 72.09585552900012, + 37.77494557400007 + ], + [ + 71.99304964200007, + 37.80539803400012 + ], + [ + 72.07572152700004, + 37.92251803200014 + ], + [ + 72.06882456100016, + 38.030582892000155 + ], + [ + 72.15661661500002, + 38.00616137900005 + ], + [ + 72.29656958800018, + 37.908522097 + ], + [ + 72.38399451500015, + 38.00002767000012 + ], + [ + 72.49319462000005, + 38.03048013000017 + ], + [ + 72.32610355899999, + 38.13950203600018 + ] + ], + [ + [ + 85.35597959400013, + 43.952351055000065 + ], + [ + 85.00519560400005, + 43.87308943200014 + ], + [ + 84.910629631, + 43.883446279000054 + ], + [ + 85.04708064500005, + 44.07417682100004 + ], + [ + 85.12142158800015, + 44.097213811000074 + ], + [ + 85.40026856399999, + 44.02510899200007 + ], + [ + 85.7299655290002, + 44.06368284600012 + ], + [ + 85.69290963800006, + 43.98694702500012 + ], + [ + 85.35597959400013, + 43.952351055000065 + ] + ], + [ + [ + 86.42443856199998, + 43.67275004300018 + ], + [ + 86.05389356500007, + 43.74181474600016 + ], + [ + 85.98531350400003, + 43.79388564300007 + ], + [ + 86.10158558900014, + 43.869603230000166 + ], + [ + 86.34267460500018, + 43.85894446700013 + ], + [ + 86.44961562000003, + 43.74026962600004 + ], + [ + 86.42443856199998, + 43.67275004300018 + ] + ], + [ + [ + 86.93083157800004, + 43.50137951800002 + ], + [ + 86.73315461700008, + 43.63035001800017 + ], + [ + 86.79782049700015, + 43.698681808000174 + ], + [ + 86.94520553600006, + 43.69849874700003 + ], + [ + 87.18949157800012, + 43.61623908400003 + ], + [ + 87.2910385030001, + 43.542482360000065 + ], + [ + 87.33169559500016, + 43.44566986900014 + ], + [ + 87.1536785560001, + 43.464944726000056 + ], + [ + 87.04267164700008, + 43.41746375900016 + ], + [ + 86.93083157800004, + 43.50137951800002 + ] + ], + [ + [ + 90.09338366300017, + 43.64422408000007 + ], + [ + 90.24773356100019, + 43.64052011700011 + ], + [ + 90.40419754200008, + 43.56180046700018 + ], + [ + 90.37403861600018, + 43.467123686000036 + ], + [ + 90.15945451800008, + 43.46172574000019 + ], + [ + 89.88285858600011, + 43.50743259300003 + ], + [ + 89.62010151200013, + 43.60460399700008 + ], + [ + 89.63590257300007, + 43.656090843000015 + ], + [ + 89.84391760500017, + 43.70053571700004 + ], + [ + 89.97329764500012, + 43.653572919000055 + ], + [ + 90.09338366300017, + 43.64422408000007 + ] + ], + [ + [ + 84.38397252600015, + 43.44665373700019 + ], + [ + 84.34601558000014, + 43.60202924400011 + ], + [ + 84.49111956800004, + 43.677533762999985 + ], + [ + 84.53291358100017, + 43.59159628900011 + ], + [ + 84.66663360299998, + 43.41498003400011 + ], + [ + 84.61905658000012, + 43.33526914000004 + ], + [ + 84.39389753800009, + 43.25845268500012 + ], + [ + 84.31440759100013, + 43.32365735400009 + ], + [ + 84.38397252600015, + 43.44665373700019 + ] + ], + [ + [ + 82.6321336380002, + 43.08086748200003 + ], + [ + 83.05518354700013, + 43.19751675200018 + ], + [ + 83.48230756400017, + 43.34854406300019 + ], + [ + 83.57724753700006, + 43.361982936 + ], + [ + 83.63330855500016, + 43.31684420800019 + ], + [ + 83.29649351100011, + 43.16541607500005 + ], + [ + 83.08229062200007, + 43.082637405000185 + ], + [ + 82.91468055400014, + 43.03808272800012 + ], + [ + 82.42644458400014, + 42.94326110700007 + ], + [ + 82.26350357100011, + 42.94656408000009 + ], + [ + 82.36887365000018, + 43.02413172000007 + ], + [ + 82.6321336380002, + 43.08086748200003 + ] + ], + [ + [ + 81.1213074920002, + 42.97375497400009 + ], + [ + 81.1810376050002, + 43.01706359700012 + ], + [ + 81.60570555600009, + 43.101585367000155 + ], + [ + 81.84761851400003, + 43.11756110700003 + ], + [ + 81.90435058700012, + 43.06200434400017 + ], + [ + 81.78539260500014, + 42.980590919000065 + ], + [ + 81.47888149300019, + 42.92024708300016 + ], + [ + 81.23133053200007, + 42.92273399400011 + ], + [ + 81.1213074920002, + 42.97375497400009 + ] + ], + [ + [ + 81.2211225480001, + 43.32410310400002 + ], + [ + 81.67407959000019, + 43.37605514600011 + ], + [ + 81.87779956800006, + 43.34643417000012 + ], + [ + 81.93129756800016, + 43.288020519000156 + ], + [ + 81.50721752300007, + 43.196337921000065 + ], + [ + 81.28939063500007, + 43.181105824000156 + ], + [ + 81.14305853100018, + 43.21388174800012 + ], + [ + 81.11180157600006, + 43.26603663100019 + ], + [ + 81.2211225480001, + 43.32410310400002 + ] + ], + [ + [ + 83.51426658700012, + 43.43066274200004 + ], + [ + 83.4879306470001, + 43.38804495500017 + ], + [ + 83.204269609, + 43.31550813300004 + ], + [ + 82.9848095910001, + 43.319090391000145 + ], + [ + 82.97982051500009, + 43.378202925000096 + ], + [ + 83.06193550500012, + 43.443670618000056 + ], + [ + 83.39317356700019, + 43.47162057700007 + ], + [ + 83.51426658700012, + 43.43066274200004 + ] + ], + [ + [ + 81.73571759100014, + 42.78464280900005 + ], + [ + 81.6609426330001, + 42.79249682000017 + ], + [ + 81.48422965100019, + 42.751550050000105 + ], + [ + 81.27535262300017, + 42.730619096 + ], + [ + 81.32902563700003, + 42.81102082600006 + ], + [ + 81.79644062400007, + 42.90666337100015 + ], + [ + 81.90039064100006, + 42.911301245000175 + ], + [ + 81.92881753000012, + 42.845975709000015 + ], + [ + 81.73571759100014, + 42.78464280900005 + ] + ], + [ + [ + 80.81436957300019, + 42.431820006000066 + ], + [ + 80.71567551300012, + 42.52218144800008 + ], + [ + 80.59594757000008, + 42.56458231100015 + ], + [ + 80.63819856500015, + 42.618742817 + ], + [ + 80.98874652000018, + 42.67995635900013 + ], + [ + 81.067733552, + 42.603427068000144 + ], + [ + 80.88030263000002, + 42.427768194 + ], + [ + 80.81436957300019, + 42.431820006000066 + ] + ], + [ + [ + 88.4322966470001, + 44.08213476800006 + ], + [ + 88.30763260100008, + 44.045616995000046 + ], + [ + 88.18936159999998, + 43.90722724700004 + ], + [ + 88.14894859000003, + 43.78637462000006 + ], + [ + 88.044586519, + 43.804074350000064 + ], + [ + 88.05022452200012, + 43.94073122300017 + ], + [ + 88.23369566600002, + 44.14964278300005 + ], + [ + 88.33987459800016, + 44.233070380000015 + ], + [ + 88.48751059100005, + 44.184261720000165 + ], + [ + 88.71046452100006, + 44.20660737100013 + ], + [ + 88.90966061800015, + 44.15039866300003 + ], + [ + 89.03627060700012, + 44.080360654000174 + ], + [ + 89.2612915150001, + 43.895962137000026 + ], + [ + 89.29050462700008, + 43.760399605000146 + ], + [ + 89.01898159000018, + 43.835137515000156 + ], + [ + 88.80268054400017, + 43.96289917700011 + ], + [ + 88.4322966470001, + 44.08213476800006 + ] + ], + [ + [ + 93.3485336510002, + 28.677458361000106 + ], + [ + 93.28332562900005, + 28.636525840000047 + ], + [ + 93.059142576, + 28.664253846000122 + ], + [ + 93.06378162400017, + 28.691214740000134 + ], + [ + 93.31607858600012, + 28.713210028000162 + ], + [ + 93.3485336510002, + 28.677458361000106 + ] + ], + [ + [ + 100.74386553900013, + 34.48993203900011 + ], + [ + 100.51963051899997, + 34.580929668000124 + ], + [ + 100.41063660800012, + 34.66652918300008 + ], + [ + 100.11775966800008, + 34.82470525200006 + ], + [ + 100.04845457200014, + 34.98061938000018 + ], + [ + 100.08115354900019, + 35.11123893600012 + ], + [ + 100.18486753100012, + 35.1069210820001 + ], + [ + 100.31933555400013, + 35.02280130800011 + ], + [ + 100.40892066500015, + 34.940592272000174 + ], + [ + 100.50215156799999, + 34.78771121900007 + ], + [ + 100.714858622, + 34.72148982500005 + ], + [ + 100.86189262700003, + 34.65322760600003 + ], + [ + 100.94338953600015, + 34.589520280000045 + ], + [ + 101.03679662700006, + 34.39930556000013 + ], + [ + 100.74386553900013, + 34.48993203900011 + ] + ], + [ + [ + 103.568412518, + 33.11652015400017 + ], + [ + 103.52494866100011, + 33.14677714800007 + ], + [ + 103.50260954800018, + 33.420999828000106 + ], + [ + 103.51547962500001, + 33.56373492200015 + ], + [ + 103.54817156200005, + 33.664801731000125 + ], + [ + 103.65036054100017, + 33.66903174200013 + ], + [ + 103.85961961500004, + 33.451410211000166 + ], + [ + 103.82006055300019, + 33.26829462800009 + ], + [ + 103.73321565400005, + 33.176718312000105 + ], + [ + 103.568412518, + 33.11652015400017 + ] + ], + [ + [ + 90.32070154800005, + 30.367586325000048 + ], + [ + 90.39849851800017, + 30.442500758000165 + ], + [ + 90.4835056010001, + 30.42665225500008 + ], + [ + 90.6074065580001, + 30.51309432000005 + ], + [ + 90.83360260900002, + 30.577927000000102 + ], + [ + 90.8869095020001, + 30.55055371600008 + ], + [ + 90.76589158400014, + 30.442500758000165 + ], + [ + 90.68952959600006, + 30.337330671000075 + ], + [ + 90.61749250200012, + 30.325805052000078 + ], + [ + 90.56130257000018, + 30.262415233000127 + ], + [ + 90.46621658400005, + 30.214871904000063 + ], + [ + 90.42443061800014, + 30.10393909200002 + ], + [ + 90.29908763800012, + 30.11114300200012 + ], + [ + 90.20256063500005, + 29.965633331000106 + ], + [ + 90.08730359900017, + 29.919530181000084 + ], + [ + 90.04264062700008, + 29.869108004000168 + ], + [ + 89.94178755700011, + 29.962751465000053 + ], + [ + 90.09738954300013, + 30.119786589000057 + ], + [ + 90.14205150800007, + 30.23648128900004 + ], + [ + 90.32070154800005, + 30.367586325000048 + ] + ], + [ + [ + 80.41091957200013, + 31.864120320000097 + ], + [ + 80.31269858600012, + 32.053199125000106 + ], + [ + 80.344619556, + 32.16369574300006 + ], + [ + 80.41460459200005, + 32.10353563800004 + ], + [ + 80.40846250100014, + 32.01268050199997 + ], + [ + 80.55580160700009, + 32.02127429900008 + ], + [ + 80.54720261200009, + 31.92305348200017 + ], + [ + 80.81732151200009, + 31.69468802600005 + ], + [ + 80.80750261500009, + 31.606289123000124 + ], + [ + 80.87380263100005, + 31.537533377000045 + ], + [ + 80.85169955300012, + 31.425807301000134 + ], + [ + 80.7055966100001, + 31.45159120900007 + ], + [ + 80.73997465100013, + 31.532622420000052 + ], + [ + 80.63315550900018, + 31.643122726000115 + ], + [ + 80.56562050300016, + 31.63207202400008 + ], + [ + 80.54475358800016, + 31.722926992999987 + ], + [ + 80.41091957200013, + 31.864120320000097 + ] + ], + [ + [ + 82.38364457500012, + 30.949243634000027 + ], + [ + 82.2751995110001, + 31.16974703200009 + ], + [ + 82.21012861800011, + 31.185409456000173 + ], + [ + 82.18000053700018, + 31.29144472300004 + ], + [ + 82.36195355100006, + 31.232402932000184 + ], + [ + 82.44630449800007, + 31.176974579000102 + ], + [ + 82.57764456200016, + 31.0323835640001 + ], + [ + 82.66680957200015, + 30.967316862000075 + ], + [ + 82.85960357100004, + 30.94321889000014 + ], + [ + 82.91142250800004, + 31.013105355000107 + ], + [ + 83.06083663800007, + 30.99262115700003 + ], + [ + 83.19820362600018, + 31.087809737000157 + ], + [ + 83.20784750800004, + 30.98900721500013 + ], + [ + 83.04637953100018, + 30.880561984000167 + ], + [ + 83.1849515020001, + 30.798627875000136 + ], + [ + 83.1186756260002, + 30.760070282000072 + ], + [ + 82.96805550800019, + 30.770914789000074 + ], + [ + 82.86804163300008, + 30.872128281000016 + ], + [ + 82.81381960400017, + 30.804652618999967 + ], + [ + 82.8740695620001, + 30.770914789000074 + ], + [ + 82.8969645630001, + 30.696208729000034 + ], + [ + 82.80658753000006, + 30.603428773000076 + ], + [ + 82.75839259300005, + 30.669701464000184 + ], + [ + 82.66320066000014, + 30.698619365000184 + ], + [ + 82.61861463400004, + 30.66367588100013 + ], + [ + 82.49329361500014, + 30.708259056000088 + ], + [ + 82.50896458900019, + 30.782963607000056 + ], + [ + 82.47521954900003, + 30.888996694000127 + ], + [ + 82.38364457500012, + 30.949243634000027 + ] + ], + [ + [ + 83.29380761400006, + 30.84186156400017 + ], + [ + 83.41734362300019, + 30.94386195000004 + ], + [ + 83.37200959700004, + 31.096861355000158 + ], + [ + 83.39127355700003, + 31.13766010100005 + ], + [ + 83.56015063400002, + 31.17052889600012 + ], + [ + 83.58847861700008, + 31.052659891000076 + ], + [ + 83.50574453900003, + 30.89059478700011 + ], + [ + 83.459274597, + 30.84979419700005 + ], + [ + 83.47514355100009, + 30.77499493100015 + ], + [ + 83.4558795910001, + 30.6231270830001 + ], + [ + 83.51594565000005, + 30.485994118000065 + ], + [ + 83.47061162400001, + 30.456528208000123 + ], + [ + 83.25413556299998, + 30.490527051000072 + ], + [ + 83.25980357300017, + 30.632194961000096 + ], + [ + 83.2053986520001, + 30.816928419000135 + ], + [ + 83.29380761400006, + 30.84186156400017 + ] + ], + [ + [ + 84.04042865700018, + 30.68457816800003 + ], + [ + 84.09384954400002, + 30.76409208700005 + ], + [ + 84.18082453000017, + 30.688304930000015 + ], + [ + 84.07894165800008, + 30.64854721600011 + ], + [ + 84.26779951600014, + 30.5926372400001 + ], + [ + 84.26158852500004, + 30.540456037000126 + ], + [ + 84.3150095800001, + 30.423669471000153 + ], + [ + 84.18579851900006, + 30.349124177000135 + ], + [ + 84.24542955700014, + 30.247246838000024 + ], + [ + 84.18952159200018, + 30.162761947000092 + ], + [ + 84.08391564700014, + 30.141640892000055 + ], + [ + 84.09012563200014, + 30.23979130200007 + ], + [ + 83.95594058199998, + 30.195064796000054 + ], + [ + 83.89009050600015, + 30.207489291000172 + ], + [ + 83.85530057900013, + 30.27457972100018 + ], + [ + 83.7273255140002, + 30.328002787000116 + ], + [ + 83.70744363900019, + 30.42615520800007 + ], + [ + 83.75714866000004, + 30.554123736000065 + ], + [ + 83.86524151600008, + 30.593881282000154 + ], + [ + 83.9621505660001, + 30.542941104000136 + ], + [ + 84.05409250000014, + 30.320549263000146 + ], + [ + 84.11124450700004, + 30.387639693000153 + ], + [ + 84.03048654600008, + 30.54791190700007 + ], + [ + 84.04042865700018, + 30.68457816800003 + ] + ], + [ + [ + 86.23240664500008, + 30.297015058000113 + ], + [ + 86.26172654300007, + 30.40844407900005 + ], + [ + 86.33797453700015, + 30.437768 + ], + [ + 86.31158461700011, + 30.23690122200003 + ], + [ + 86.33357252900004, + 30.137199993000024 + ], + [ + 86.29398362700005, + 30.10054643300009 + ], + [ + 86.25439455700007, + 29.952461673000073 + ], + [ + 86.25292956800007, + 29.857160439999973 + ], + [ + 86.17375159600005, + 29.785316968000018 + ], + [ + 86.07845254200004, + 29.785316968000018 + ], + [ + 86.14443153100018, + 29.64016553900018 + ], + [ + 86.12536655700012, + 29.563924418000113 + ], + [ + 85.87464153700006, + 29.594713160000083 + ], + [ + 85.7896046140001, + 29.691482735000193 + ], + [ + 85.80279555100009, + 29.833701169000108 + ], + [ + 85.75001554400012, + 29.89234817199997 + ], + [ + 85.69869264800019, + 30.0345677790001 + ], + [ + 85.76174165900017, + 30.11374273400014 + ], + [ + 85.8130645550001, + 30.075622173 + ], + [ + 85.87757855500007, + 30.13426917600009 + ], + [ + 85.94062052600015, + 30.097614275000126 + ], + [ + 85.85118059000018, + 30.033102622000115 + ], + [ + 85.83505263400014, + 29.868890075000024 + ], + [ + 85.95822151700014, + 29.914340274000097 + ], + [ + 86.16495562600005, + 29.917274276000057 + ], + [ + 86.18254857100004, + 29.948063018000028 + ], + [ + 86.14882649800012, + 30.08735164100011 + ], + [ + 86.10484363400013, + 30.12987018600012 + ], + [ + 86.20748154800003, + 30.20611248000006 + ], + [ + 86.23240664500008, + 30.297015058000113 + ] + ], + [ + [ + 101.63423957500004, + 38.12430044800004 + ], + [ + 101.72653153800002, + 38.114226573999986 + ], + [ + 101.75505867500004, + 38.04188588800014 + ], + [ + 101.65116867300009, + 37.943788452000035 + ], + [ + 101.45385766600003, + 37.885134575999984 + ], + [ + 101.3815915790002, + 37.90258636900006 + ], + [ + 101.37549558800004, + 37.99400476900013 + ], + [ + 101.4336626440001, + 38.046996670000055 + ], + [ + 101.63423957500004, + 38.12430044800004 + ] + ], + [ + [ + 102.07473758900011, + 37.82775558700018 + ], + [ + 102.2414395620001, + 37.79770327900019 + ], + [ + 102.43962061000013, + 37.71269887800014 + ], + [ + 102.49026457200017, + 37.61208770900015 + ], + [ + 102.44000953000017, + 37.578576357000145 + ], + [ + 102.29329655300006, + 37.62547746400003 + ], + [ + 102.07405865500004, + 37.730371618000106 + ], + [ + 102.07473758900011, + 37.82775558700018 + ] + ], + [ + [ + 102.4410096590002, + 37.040951029000155 + ], + [ + 102.49376653100012, + 36.98408316900009 + ], + [ + 102.577964593, + 36.99834983800008 + ], + [ + 102.74747467100008, + 36.88367400300007 + ], + [ + 102.81116456199999, + 36.81447351400004 + ], + [ + 102.8764875830002, + 36.678547543000036 + ], + [ + 102.90300759000007, + 36.52261296300014 + ], + [ + 102.80258166100015, + 36.52223192100007 + ], + [ + 102.66578665400016, + 36.70391403100007 + ], + [ + 102.49224856800004, + 36.77416058300008 + ], + [ + 102.2790456410001, + 36.90128287300007 + ], + [ + 101.91808367400012, + 37.14159991700012 + ], + [ + 101.81696355600002, + 37.247100753000154 + ], + [ + 101.77075160900011, + 37.32973709800001 + ], + [ + 101.83357967300003, + 37.38917283800009 + ], + [ + 101.98035467700004, + 37.33167113800016 + ], + [ + 102.21432460800014, + 37.215389331000154 + ], + [ + 102.4410096590002, + 37.040951029000155 + ] + ], + [ + [ + 103.98477165600013, + 35.82483343700005 + ], + [ + 104.19499967800004, + 35.691741555000135 + ], + [ + 104.22422066900009, + 35.57490738000007 + ], + [ + 103.96562152200016, + 35.607602837 + ], + [ + 103.85433951900012, + 35.65129853600007 + ], + [ + 103.76967659700017, + 35.76245313400017 + ], + [ + 103.785377579, + 35.81813059600012 + ], + [ + 103.90399156700016, + 35.847773867000114 + ], + [ + 103.98477165600013, + 35.82483343700005 + ] + ], + [ + [ + 100.54816452900013, + 38.39674147100004 + ], + [ + 100.53133366700001, + 38.36160134800019 + ], + [ + 100.38335451900008, + 38.33781669100017 + ], + [ + 100.22518951500007, + 38.40629734300006 + ], + [ + 100.23506959900004, + 38.51962939200007 + ], + [ + 100.36149552100017, + 38.51904249100011 + ], + [ + 100.45620767500009, + 38.43022315100012 + ], + [ + 100.54816452900013, + 38.39674147100004 + ] + ], + [ + [ + 99.80546554500006, + 38.546496241 + ], + [ + 99.69579353900008, + 38.50994862900012 + ], + [ + 99.59623765100014, + 38.53861524100006 + ], + [ + 99.43984257000005, + 38.657124287000045 + ], + [ + 99.43795764700019, + 38.708023562000164 + ], + [ + 99.65890461500004, + 38.722347061 + ], + [ + 99.78980261800007, + 38.650346513000045 + ], + [ + 99.80546554500006, + 38.546496241 + ] + ] + ], + [ + [ + [ + 62.786651500000175, + 34.61194991800011 + ], + [ + 62.99419060800017, + 34.60304297200014 + ], + [ + 62.92990459500015, + 34.67318223500007 + ], + [ + 62.786651500000175, + 34.61194991800011 + ] + ] + ], + [ + [ + [ + 63.68125957000012, + 34.66518254700003 + ], + [ + 63.52276264300008, + 34.713204146000066 + ], + [ + 63.30873862400006, + 34.68729970700019 + ], + [ + 63.300472558000195, + 34.652365779000036 + ], + [ + 63.531379574000084, + 34.58488156699997 + ], + [ + 63.68125957000012, + 34.66518254700003 + ] + ] + ], + [ + [ + [ + 63.963272558000085, + 34.605445896 + ], + [ + 64.09406260200012, + 34.66583834700009 + ], + [ + 64.13227854900015, + 34.719979071000125 + ], + [ + 64.03241756000006, + 34.80203874100016 + ], + [ + 63.84136163200003, + 34.77911624800009 + ], + [ + 63.78636159500002, + 34.700925329000086 + ], + [ + 63.83704361100007, + 34.59549322400005 + ], + [ + 63.963272558000085, + 34.605445896 + ] + ] + ], + [ + [ + [ + 64.9565124950002, + 34.74697936100017 + ], + [ + 65.03833059900018, + 34.79690398800011 + ], + [ + 64.94999657100004, + 34.85825851300007 + ], + [ + 64.76760853700006, + 34.80870671300016 + ], + [ + 64.79114559200019, + 34.74870720600006 + ], + [ + 64.9565124950002, + 34.74697936100017 + ] + ] + ], + [ + [ + [ + 59.21844061400003, + 35.68355897300006 + ], + [ + 59.231670610000094, + 35.55999295600009 + ], + [ + 59.01746755300019, + 35.520659870000145 + ], + [ + 58.901653624000176, + 35.55463289700009 + ], + [ + 58.770606591000046, + 35.56105695500014 + ], + [ + 58.62454555700003, + 35.59713886900005 + ], + [ + 58.50167859100003, + 35.595250929000144 + ], + [ + 58.378578608000055, + 35.62497835500005 + ], + [ + 58.11787761500011, + 35.65187152300018 + ], + [ + 58.05429048600001, + 35.67281706099999 + ], + [ + 57.97764250700004, + 35.78248353600014 + ], + [ + 57.87541547500018, + 35.82002658300007 + ], + [ + 57.68402863, + 35.95942048300003 + ], + [ + 57.60334359100011, + 35.89956095300005 + ], + [ + 57.99605553700013, + 35.53773447700007 + ], + [ + 58.112716542000044, + 35.52180064700008 + ], + [ + 58.188541585, + 35.409433523000075 + ], + [ + 58.30534759700015, + 35.416338199999984 + ], + [ + 58.36922054899998, + 35.455022359 + ], + [ + 58.49385458800009, + 35.45059738499998 + ], + [ + 58.70222853300015, + 35.35943178300005 + ], + [ + 58.89736561000012, + 35.329441333000034 + ], + [ + 59.03458759100005, + 35.32857162700003 + ], + [ + 59.24658955899997, + 35.296453347000124 + ], + [ + 59.296283516000074, + 35.348670928000104 + ], + [ + 59.29872147600014, + 35.44002277599998 + ], + [ + 59.5116005270001, + 35.36047784400017 + ], + [ + 59.63819157300003, + 35.276139805000184 + ], + [ + 59.52852258400003, + 35.16864843500014 + ], + [ + 59.58759354400013, + 35.12099681200016 + ], + [ + 59.683265592000055, + 35.114988664000066 + ], + [ + 59.89613760200007, + 35.23390875900003 + ], + [ + 59.95403660500011, + 35.371707415 + ], + [ + 60.09866349400005, + 35.25953106400004 + ], + [ + 60.272369553000146, + 35.158638766000024 + ], + [ + 60.389388633000124, + 35.054191200000105 + ], + [ + 60.49916859800004, + 35.10639402800018 + ], + [ + 60.50186153600015, + 35.21435931100007 + ], + [ + 60.05506150400004, + 35.52539061600004 + ], + [ + 59.95998758800016, + 35.567861719000064 + ], + [ + 59.69221461500007, + 35.54833909300015 + ], + [ + 59.63691752400001, + 35.60165990000007 + ], + [ + 59.64128851800018, + 35.67570898500003 + ], + [ + 59.538715481000054, + 35.825103502000104 + ], + [ + 59.393905531000144, + 35.819385702000034 + ], + [ + 59.29350256800018, + 35.77485063900019 + ], + [ + 59.21844061400003, + 35.68355897300006 + ] + ] + ], + [ + [ + [ + 56.976901605000194, + 37.6845194230001 + ], + [ + 57.09217456700014, + 37.70401992 + ], + [ + 57.152412623000146, + 37.66583951300015 + ], + [ + 57.31105757500012, + 37.63909504000003 + ], + [ + 57.559959531000175, + 37.56176879800006 + ], + [ + 57.75028254500012, + 37.57228557100012 + ], + [ + 58.00160251300008, + 37.508085725 + ], + [ + 58.09599648900013, + 37.464797554000086 + ], + [ + 58.29559357599999, + 37.33274318400004 + ], + [ + 58.54371651800005, + 37.136057132000076 + ], + [ + 58.676677475000076, + 37.07641234700003 + ], + [ + 59.0123175440001, + 36.97242545000017 + ], + [ + 59.13154559100019, + 36.88851103200017 + ], + [ + 59.39929157400019, + 36.75100591000012 + ], + [ + 59.5906256130001, + 36.704451814000095 + ], + [ + 59.86378060599998, + 36.74726691100011 + ], + [ + 59.950691555000105, + 36.718135774000075 + ], + [ + 60.08406858900014, + 36.60557318500008 + ], + [ + 60.19312653700007, + 36.45473631100015 + ], + [ + 60.199569539000095, + 36.398210600000084 + ], + [ + 60.547576603000095, + 36.19920309600002 + ], + [ + 60.68049950600016, + 36.08400573900008 + ], + [ + 60.80456558700013, + 35.94222366700018 + ], + [ + 60.87643454000016, + 35.77998069900008 + ], + [ + 60.71895953400019, + 35.83518223700008 + ], + [ + 60.28492363200013, + 35.85535379000015 + ], + [ + 60.230079498, + 35.8109209860001 + ], + [ + 60.32233458100018, + 35.75723824900007 + ], + [ + 60.41837660700003, + 35.61787938600003 + ], + [ + 60.65311063200011, + 35.57690244000014 + ], + [ + 60.74150450600007, + 35.611745676000055 + ], + [ + 60.78990563900004, + 35.541274322000106 + ], + [ + 60.94065450300002, + 35.44047690800011 + ], + [ + 60.96348563300012, + 35.51193196200006 + ], + [ + 60.88057754700003, + 35.77160768100009 + ], + [ + 61.0704155840001, + 35.94222366700018 + ], + [ + 61.345123576, + 36.030836812000075 + ], + [ + 61.531925520000186, + 36.18134226600017 + ], + [ + 61.38977447700006, + 36.33270602600004 + ], + [ + 61.24529259500014, + 36.58486351400012 + ], + [ + 61.13245055200014, + 36.693725158 + ], + [ + 60.87477458800015, + 36.84642482600009 + ], + [ + 60.839054604000125, + 36.91500337800011 + ], + [ + 60.732009486000095, + 36.97060138000006 + ], + [ + 60.59371160400002, + 37.12382709700006 + ], + [ + 60.456272532000185, + 37.174176351000085 + ], + [ + 60.373035539000114, + 37.264506445 + ], + [ + 60.28956955300009, + 37.30058567700007 + ], + [ + 60.0605015270001, + 37.35412374200018 + ], + [ + 59.90002060300009, + 37.499941868000064 + ], + [ + 59.724548476999985, + 37.588330043000155 + ], + [ + 59.512214585000095, + 37.74580521700011 + ], + [ + 59.37788050500012, + 37.79829520900017 + ], + [ + 59.27238453100017, + 37.79234439300018 + ], + [ + 59.180309492, + 37.854274252000096 + ], + [ + 59.033100473000104, + 37.89054358500016 + ], + [ + 58.88594861900003, + 37.966623271000174 + ], + [ + 58.69855156000011, + 37.95188335900002 + ], + [ + 58.54763455500017, + 37.993092651000154 + ], + [ + 58.51295862100005, + 37.911635136000086 + ], + [ + 58.36959052600014, + 37.94161452200012 + ], + [ + 58.25299858800014, + 37.925573738000026 + ], + [ + 57.97169152400011, + 38.07244010500017 + ], + [ + 57.738231548000044, + 38.22531948100004 + ], + [ + 57.552410622000195, + 38.27906776400016 + ], + [ + 57.351249471000074, + 38.39267473900003 + ], + [ + 57.30673955400016, + 38.50875487800005 + ], + [ + 57.21245957100018, + 38.58233156000006 + ], + [ + 56.884799577000024, + 38.61526288400006 + ], + [ + 56.62071950300003, + 38.78953824100017 + ], + [ + 56.446933480999974, + 38.82377865100011 + ], + [ + 56.38450959200003, + 38.88264576300003 + ], + [ + 56.49800156700013, + 38.93796565300005 + ], + [ + 56.493522613000096, + 39.01536465000004 + ], + [ + 56.371135595000055, + 39.07966474400007 + ], + [ + 56.25207552200004, + 39.09592228300011 + ], + [ + 55.83845558900015, + 39.220943566000074 + ], + [ + 55.721660474000146, + 39.297411334000174 + ], + [ + 55.60332862000007, + 39.29680934500004 + ], + [ + 55.349761632000195, + 39.14441360500001 + ], + [ + 55.139148545000126, + 39.12586378300017 + ], + [ + 54.99266053800005, + 39.08184269800017 + ], + [ + 54.9421845490001, + 38.97141632000012 + ], + [ + 55.04855358300017, + 38.86493781899998 + ], + [ + 54.95166062599998, + 38.766108642 + ], + [ + 55.03650258500011, + 38.674358989000154 + ], + [ + 54.99261058200017, + 38.61000206600016 + ], + [ + 55.022472621000134, + 38.474834154000064 + ], + [ + 55.10510259600005, + 38.379705923000074 + ], + [ + 55.24546460500011, + 38.30154031700016 + ], + [ + 55.44804347000007, + 38.26925691400004 + ], + [ + 55.509593630000154, + 38.213700822000135 + ], + [ + 55.556976528, + 38.092291972000055 + ], + [ + 55.75785453800006, + 38.02381199000018 + ], + [ + 56.09452859900006, + 37.953676248000136 + ], + [ + 56.431953511000074, + 37.90119044700003 + ], + [ + 56.46866658200008, + 37.79851615600006 + ], + [ + 56.536750601999984, + 37.821941899000194 + ], + [ + 56.650863509000146, + 37.77705144300012 + ], + [ + 56.976901605000194, + 37.6845194230001 + ] + ] + ], + [ + [ + [ + 54.35871155100011, + 39.64848449900012 + ], + [ + 54.43426552400018, + 39.57261553400008 + ], + [ + 54.64237259000009, + 39.517383151000104 + ], + [ + 54.76200447600013, + 39.53061616400015 + ], + [ + 55.06724556200015, + 39.619786874000056 + ], + [ + 55.10311155800014, + 39.7140053330001 + ], + [ + 54.91404348300017, + 39.83725267000017 + ], + [ + 54.68954460000015, + 39.89620410400016 + ], + [ + 54.60022351900011, + 39.94016031300009 + ], + [ + 54.434791572, + 39.97740982600004 + ], + [ + 54.27572249600013, + 40.071700704000136 + ], + [ + 54.17496162600014, + 39.99020094500014 + ], + [ + 54.19464149600009, + 39.922162690000164 + ], + [ + 54.31063060800011, + 39.84402357100004 + ], + [ + 54.35871155100011, + 39.64848449900012 + ] + ] + ], + [ + [ + [ + 88.09077466100018, + 27.548924113000055 + ], + [ + 87.99868051100015, + 27.571947189000184 + ], + [ + 87.98332955900008, + 27.65252778900009 + ], + [ + 88.02362052900008, + 27.72543073300011 + ], + [ + 87.94495351800015, + 27.77915051800005 + ], + [ + 87.91985357400011, + 27.650207846000058 + ], + [ + 87.94127654500011, + 27.498519203000058 + ], + [ + 87.99890162600002, + 27.494947339000134 + ], + [ + 88.02353654200016, + 27.390842760000112 + ], + [ + 88.08342758800006, + 27.313953383000182 + ], + [ + 88.1461565780001, + 27.418267677000017 + ], + [ + 88.19332154699998, + 27.438288020000186 + ], + [ + 88.37349659100005, + 27.43731706000011 + ], + [ + 88.38868761700019, + 27.50643490500005 + ], + [ + 88.3460235620002, + 27.600729974000046 + ], + [ + 88.17903157500018, + 27.596888213000057 + ], + [ + 88.09077466100018, + 27.548924113000055 + ] + ] + ], + [ + [ + [ + 87.79061854000014, + 27.59008546000001 + ], + [ + 87.64694266200007, + 27.538404489000072 + ], + [ + 87.66120949900005, + 27.471975560000033 + ], + [ + 87.7615276370002, + 27.526365226000053 + ], + [ + 87.79061854000014, + 27.59008546000001 + ] + ] + ], + [ + [ + [ + 90.54503664900017, + 27.839160922000076 + ], + [ + 90.55213159500016, + 27.874262488 + ], + [ + 90.46842152800002, + 27.98766444200004 + ], + [ + 90.34556562600011, + 28.013317424000036 + ], + [ + 90.2618555590002, + 27.925564262000137 + ], + [ + 90.28346259700004, + 27.77030878400018 + ], + [ + 90.23341358200008, + 27.685288290000074 + ], + [ + 90.30281054400012, + 27.621790177000037 + ], + [ + 90.40823359600006, + 27.69448709400018 + ], + [ + 90.54503664900017, + 27.839160922000076 + ] + ] + ], + [ + [ + [ + 66.91838058700012, + 28.253433637000114 + ], + [ + 66.80236850900013, + 28.275092810000103 + ], + [ + 66.83791364600012, + 28.18158664500004 + ], + [ + 66.91838058700012, + 28.253433637000114 + ] + ] + ], + [ + [ + [ + 66.95233953200011, + 28.905676127000106 + ], + [ + 66.86237354800016, + 28.867818758000112 + ], + [ + 66.8977966440001, + 28.81159982500003 + ], + [ + 66.81388859700013, + 28.669195480999974 + ], + [ + 66.8774334810002, + 28.597688459000153 + ], + [ + 66.93145752900011, + 28.634906959000148 + ], + [ + 66.92327863600008, + 28.739111785000034 + ], + [ + 66.98811349500005, + 28.798110325000152 + ], + [ + 66.95233953200011, + 28.905676127000106 + ] + ] + ], + [ + [ + [ + 66.98796848800004, + 29.24827284100013 + ], + [ + 66.8926166280001, + 29.30877123900018 + ], + [ + 66.81938964000005, + 29.202255354000158 + ], + [ + 66.71585050400006, + 29.153686416000028 + ], + [ + 66.72255753500013, + 29.088339925000184 + ], + [ + 66.61627148300005, + 29.02509259900006 + ], + [ + 66.50334964500013, + 28.925796382000158 + ], + [ + 66.4473804920001, + 28.707843933000163 + ], + [ + 66.35462953700016, + 28.582039278000025 + ], + [ + 66.32446256400016, + 28.469124648000047 + ], + [ + 66.4177166020001, + 28.36196821900012 + ], + [ + 66.71040360800004, + 28.583300084000086 + ], + [ + 66.71180757700012, + 28.663925946000177 + ], + [ + 66.76631157300017, + 28.832670085000075 + ], + [ + 66.80874663399999, + 28.836349070000097 + ], + [ + 66.93776658800016, + 29.02827219000011 + ], + [ + 66.90895061000015, + 29.141136863000042 + ], + [ + 67.11358656200008, + 29.183045373000084 + ], + [ + 66.98796848800004, + 29.24827284100013 + ] + ] + ], + [ + [ + [ + 66.65141261200017, + 29.101259456000037 + ], + [ + 66.76183362500018, + 29.240821999000048 + ], + [ + 66.6700665370002, + 29.27483274500014 + ], + [ + 66.53079249900003, + 29.28712128600006 + ], + [ + 66.52458955500015, + 29.160045095000044 + ], + [ + 66.60881762400015, + 29.189825997000128 + ], + [ + 66.65141261200017, + 29.101259456000037 + ] + ] + ], + [ + [ + [ + 67.00595856700005, + 29.551751883 + ], + [ + 66.86480748499997, + 29.563621496000053 + ], + [ + 66.76383958200017, + 29.425465939000162 + ], + [ + 66.77938851500016, + 29.36713912400006 + ], + [ + 66.88307148400008, + 29.326590494000072 + ], + [ + 66.99932060300006, + 29.509172653000064 + ], + [ + 67.00595856700005, + 29.551751883 + ] + ] + ], + [ + [ + [ + 66.95205655900008, + 29.734544092000135 + ], + [ + 66.87644156699997, + 29.744203565000134 + ], + [ + 66.73426856300011, + 29.526741960000095 + ], + [ + 66.68025256100015, + 29.419976966000092 + ], + [ + 66.72293052999999, + 29.402736564000065 + ], + [ + 66.81050851000015, + 29.575640977999967 + ], + [ + 66.9254684920001, + 29.642237545000057 + ], + [ + 66.95205655900008, + 29.734544092000135 + ] + ] + ], + [ + [ + [ + 67.52730556900013, + 30.738953921000075 + ], + [ + 67.59948750200016, + 30.813803478000125 + ], + [ + 67.68701954900013, + 30.858061939000038 + ], + [ + 68.07803348800002, + 30.93051041600006 + ], + [ + 68.13712355900003, + 31.020957186000032 + ], + [ + 68.2022786070001, + 30.98438929000008 + ], + [ + 68.35314163200019, + 30.95668022700005 + ], + [ + 68.41584061500015, + 31.02805682600001 + ], + [ + 68.23677064100008, + 31.05852487600015 + ], + [ + 68.23693056800005, + 31.096165489000157 + ], + [ + 68.64614849300006, + 31.179401476000066 + ], + [ + 68.88305661600009, + 31.286898043000065 + ], + [ + 68.97612759200013, + 31.46553165500012 + ], + [ + 68.8230135230001, + 31.46381202400005 + ], + [ + 68.71086852000008, + 31.35872558900013 + ], + [ + 68.55049153100009, + 31.294127770000102 + ], + [ + 68.49461357400014, + 31.338646237000034 + ], + [ + 68.33357961100012, + 31.29558773000008 + ], + [ + 68.11659963100004, + 31.29635769100014 + ], + [ + 67.95623052100007, + 31.223866131000193 + ], + [ + 67.90131363299997, + 31.17773280600005 + ], + [ + 67.78707851800004, + 31.15356861800018 + ], + [ + 67.77169755799997, + 31.22166806100006 + ], + [ + 67.87274961500003, + 31.360062502000176 + ], + [ + 67.88907655700018, + 31.496111688000155 + ], + [ + 67.82321960800004, + 31.51369122100016 + ], + [ + 67.60028059700011, + 31.45623813600008 + ], + [ + 67.45433054000011, + 31.460944910000137 + ], + [ + 67.26364861300016, + 31.442112617000078 + ], + [ + 67.06591063200011, + 31.45152817700017 + ], + [ + 66.9129025100001, + 31.40915883000008 + ], + [ + 66.73870057800008, + 31.336185142000033 + ], + [ + 66.64218849499997, + 31.218487296000035 + ], + [ + 66.58569362900005, + 31.107853047000106 + ], + [ + 66.52007254800009, + 30.820424344000116 + ], + [ + 66.39659856400016, + 30.68418891300007 + ], + [ + 66.3907315670001, + 30.6093588010001 + ], + [ + 66.50901061500008, + 30.619686480000098 + ], + [ + 66.51831855000006, + 30.684191092000162 + ], + [ + 66.61123664100018, + 30.845264281000027 + ], + [ + 66.82488263599998, + 30.86611258900001 + ], + [ + 66.91197161600019, + 30.824713028000076 + ], + [ + 66.98739650700008, + 30.86599272800015 + ], + [ + 67.20761156700013, + 30.83505462000005 + ], + [ + 67.33966057300006, + 30.881713155000114 + ], + [ + 67.38996154700015, + 30.853973079000127 + ], + [ + 67.32894162700012, + 30.763337213000113 + ], + [ + 67.24741353700017, + 30.698148469000103 + ], + [ + 67.26200056300007, + 30.648341189000178 + ], + [ + 67.40350351799998, + 30.70555237200017 + ], + [ + 67.52730556900013, + 30.738953921000075 + ] + ] + ], + [ + [ + [ + 69.79325050000017, + 32.8282178880001 + ], + [ + 69.63021862700003, + 32.811365234000164 + ], + [ + 69.50367753800009, + 32.85091105300006 + ], + [ + 69.45434551100016, + 32.909438195000064 + ], + [ + 69.36915553600016, + 32.86684773300004 + ], + [ + 69.30223056500012, + 32.635642657000176 + ], + [ + 69.22312953900007, + 32.574799595 + ], + [ + 69.17445364800005, + 32.465280140000175 + ], + [ + 69.1927035650001, + 32.35576353400012 + ], + [ + 69.24746656200017, + 32.33142215200013 + ], + [ + 69.50327252400018, + 32.39765125700012 + ], + [ + 69.58188656200002, + 32.40119093400017 + ], + [ + 69.74217252300014, + 32.28332494700004 + ], + [ + 69.80637354300018, + 32.32947352700006 + ], + [ + 69.66362755200004, + 32.436528871000064 + ], + [ + 69.89727763000008, + 32.45757046500006 + ], + [ + 69.81582648600005, + 32.55687523100005 + ], + [ + 69.78391255700012, + 32.69408195700004 + ], + [ + 69.88588762900008, + 32.81730800300005 + ], + [ + 69.79325050000017, + 32.8282178880001 + ] + ] + ], + [ + [ + [ + 66.22753960000006, + 32.57408679800011 + ], + [ + 66.22036754100003, + 32.47190989000018 + ], + [ + 66.28544648100006, + 32.43906573700019 + ], + [ + 66.38881663800004, + 32.576379416000066 + ], + [ + 66.37558748000004, + 32.71298717200011 + ], + [ + 66.32456951700004, + 32.765639772999975 + ], + [ + 66.25408156700013, + 32.664678911000124 + ], + [ + 66.22753960000006, + 32.57408679800011 + ] + ] + ], + [ + [ + [ + 69.95982355900014, + 34.08714605100005 + ], + [ + 69.92118063800018, + 33.982583988000044 + ], + [ + 70.1714785170002, + 33.94833687300013 + ], + [ + 70.35022763100017, + 33.868558086000064 + ], + [ + 70.44452655700019, + 33.69041313900004 + ], + [ + 70.42722362600006, + 33.596474803000035 + ], + [ + 70.57903263300005, + 33.58821594700004 + ], + [ + 70.72042058800008, + 33.67762269000019 + ], + [ + 70.98729653000015, + 33.692282136000074 + ], + [ + 71.0872195440001, + 33.786819443000184 + ], + [ + 71.25447053200014, + 33.75941129000006 + ], + [ + 71.27916764200012, + 33.799009915000056 + ], + [ + 71.1458816350002, + 33.852376655000114 + ], + [ + 71.16117056200017, + 33.899086319000105 + ], + [ + 71.09509249800016, + 33.971025344000054 + ], + [ + 71.04837059700014, + 34.07730720600017 + ], + [ + 70.90804261700015, + 34.10899549400017 + ], + [ + 70.67717751100014, + 34.12559300300006 + ], + [ + 70.50063350800008, + 34.113523397999984 + ], + [ + 70.17469750300006, + 34.12154202900007 + ], + [ + 69.95982355900014, + 34.08714605100005 + ] + ] + ], + [ + [ + [ + 69.36920951500008, + 34.27861587700005 + ], + [ + 69.3426135690001, + 34.24674469600012 + ], + [ + 69.32590458000004, + 34.071234517000164 + ], + [ + 69.50199160200003, + 34.19161624900005 + ], + [ + 69.48786960400008, + 34.24795772500005 + ], + [ + 69.36920951500008, + 34.27861587700005 + ] + ] + ], + [ + [ + [ + 67.99032558900012, + 34.265733228000045 + ], + [ + 67.91323052000001, + 34.177456532000065 + ], + [ + 67.9576495770001, + 34.13748675600016 + ], + [ + 68.05901360900009, + 34.174408704000086 + ], + [ + 68.11833150000007, + 34.27580794000016 + ], + [ + 67.99032558900012, + 34.265733228000045 + ] + ] + ], + [ + [ + [ + 70.39769753400003, + 34.86354129100016 + ], + [ + 70.39116652300015, + 34.77013353000007 + ], + [ + 70.48493152100002, + 34.75211310900005 + ], + [ + 70.54859961900019, + 34.80367874500013 + ], + [ + 70.69231455800019, + 34.8319991840001 + ], + [ + 70.68424261700011, + 34.88123783600008 + ], + [ + 70.54181664800018, + 34.960771871000134 + ], + [ + 70.54356360400016, + 35.10698210200019 + ], + [ + 70.46316556200009, + 35.13306239400015 + ], + [ + 70.44720457500011, + 35.00021476100011 + ], + [ + 70.39769753400003, + 34.86354129100016 + ] + ] + ], + [ + [ + [ + 71.87159754100003, + 36.58280340900012 + ], + [ + 71.94050550300011, + 36.57184474200017 + ], + [ + 72.091674635, + 36.7295182310001 + ], + [ + 71.87159754100003, + 36.58280340900012 + ] + ] + ], + [ + [ + [ + 71.47884351900007, + 36.745173112000145 + ], + [ + 71.47410556400018, + 36.79942498000014 + ], + [ + 71.33545664800005, + 37.05074276800002 + ], + [ + 71.31927454600014, + 37.13845301499998 + ], + [ + 71.36520351900009, + 37.30483463100006 + ], + [ + 71.32503559500014, + 37.41240764100007 + ], + [ + 71.38304155000009, + 37.48077731700005 + ], + [ + 71.46179154300017, + 37.75965983200007 + ], + [ + 71.44864653900004, + 37.85187116100013 + ], + [ + 71.39157851900012, + 37.90535625200016 + ], + [ + 71.28378255000018, + 37.89220337000012 + ], + [ + 71.18543952400006, + 37.80259428700003 + ], + [ + 71.08071854000008, + 37.778336724000155 + ], + [ + 70.99542261700003, + 37.84419249900003 + ], + [ + 70.99945850300003, + 37.898890452000046 + ], + [ + 71.15124555, + 38.0366138390001 + ], + [ + 71.20671849400014, + 38.169263492000084 + ], + [ + 71.06105057200006, + 38.14224107400014 + ], + [ + 70.96819249600009, + 38.254851943000176 + ], + [ + 70.90393062300012, + 38.25194593700007 + ], + [ + 70.83751661400004, + 38.164392600000156 + ], + [ + 70.78399648500016, + 38.19085410100013 + ], + [ + 70.723541506, + 38.30279123300011 + ], + [ + 70.62918055400019, + 38.13600426700003 + ], + [ + 70.61353254700015, + 38.06829441499997 + ], + [ + 70.60734552900004, + 37.919684110000105 + ], + [ + 70.64381451900016, + 37.827613765000194 + ], + [ + 70.57711753600012, + 37.77155056800018 + ], + [ + 70.47150455000013, + 37.8274387510001 + ], + [ + 70.45225550900005, + 37.735906356999976 + ], + [ + 70.69654859200006, + 37.60343976400003 + ], + [ + 70.70066863300013, + 37.45332658400008 + ], + [ + 70.76851661900008, + 37.38343123400006 + ], + [ + 70.78183764200014, + 37.28979800000019 + ], + [ + 70.74038661700018, + 37.21825024200018 + ], + [ + 70.57000750300011, + 37.28982079900004 + ], + [ + 70.53295848500011, + 37.19708375700009 + ], + [ + 70.71088449700005, + 37.07875827400011 + ], + [ + 70.83386964700003, + 37.07130726500009 + ], + [ + 70.8408665250002, + 37.174901218000116 + ], + [ + 70.92689552900003, + 37.27810625100011 + ], + [ + 71.06137059300016, + 37.23562291000019 + ], + [ + 71.1434175230001, + 37.06499032700003 + ], + [ + 71.24543752200009, + 36.99453473100016 + ], + [ + 71.28885661900017, + 36.90436456400005 + ], + [ + 71.32764454700015, + 36.73511013400014 + ], + [ + 71.40795156100017, + 36.66605364500009 + ], + [ + 71.47884351900007, + 36.745173112000145 + ] + ] + ], + [ + [ + [ + 71.24623849700004, + 38.67427902600019 + ], + [ + 71.21425650700007, + 38.61202009300007 + ], + [ + 71.29292251300018, + 38.50327680100003 + ], + [ + 71.38247661000008, + 38.60177405400003 + ], + [ + 71.52238448800011, + 38.60873204000006 + ], + [ + 71.53291350000018, + 38.68631074500013 + ], + [ + 71.34974661900014, + 38.70501362100009 + ], + [ + 71.33197748800012, + 38.7381739380001 + ], + [ + 71.24623849700004, + 38.67427902600019 + ] + ] + ], + [ + [ + [ + 71.34595464600017, + 38.79920794000009 + ], + [ + 71.45023356900003, + 38.76003176300003 + ], + [ + 71.74379749000019, + 38.68380371800009 + ], + [ + 71.9316936080001, + 38.768405452000025 + ], + [ + 71.87487754800009, + 38.8387314630001 + ], + [ + 71.59678662000005, + 38.873944677000054 + ], + [ + 71.58381663000017, + 38.959610577000035 + ], + [ + 71.35829163400007, + 38.906571403000044 + ], + [ + 71.34595464600017, + 38.79920794000009 + ] + ] + ], + [ + [ + [ + 71.21339451200004, + 38.94961951600004 + ], + [ + 71.27021057200005, + 38.916890196000054 + ], + [ + 71.35450754000016, + 38.94910855500012 + ], + [ + 71.35484348700015, + 39.05951599000008 + ], + [ + 71.46368451199999, + 39.062948715000175 + ], + [ + 71.48688562000012, + 39.136277627000084 + ], + [ + 71.19731148400018, + 39.059904910000114 + ], + [ + 71.10151655700008, + 39.116163071000074 + ], + [ + 70.86872864200006, + 39.140183594000064 + ], + [ + 70.71695752100015, + 39.08743460100004 + ], + [ + 70.60121148400009, + 39.12527604400009 + ], + [ + 70.46334057600018, + 39.07069258700017 + ], + [ + 70.19991261400014, + 39.03643323400013 + ], + [ + 70.20319362700008, + 38.95354040300015 + ], + [ + 70.36356357400001, + 38.95910632199997 + ], + [ + 70.45909162200013, + 38.858877032000066 + ], + [ + 70.68231159500004, + 38.84109717200016 + ], + [ + 70.85439257000013, + 38.953529674000094 + ], + [ + 70.97102356700009, + 38.98944395000012 + ], + [ + 71.1268235340001, + 38.98833401800016 + ], + [ + 71.21339451200004, + 38.94961951600004 + ] + ] + ], + [ + [ + [ + 72.93763749200019, + 42.345276520000084 + ], + [ + 72.71990951100014, + 42.314968899000064 + ], + [ + 72.51473963100005, + 42.25277031600007 + ], + [ + 72.3671876250001, + 42.22919956600009 + ], + [ + 72.23757959700015, + 42.27562826900015 + ], + [ + 72.12590750100009, + 42.27501806700013 + ], + [ + 72.06359056600007, + 42.209328588000176 + ], + [ + 71.93052651199997, + 42.20626952900011 + ], + [ + 71.83318361400018, + 42.314846859000056 + ], + [ + 71.63842757900011, + 42.27594812300015 + ], + [ + 71.39103654500019, + 42.32806880800007 + ], + [ + 71.17185262700019, + 42.35787653200009 + ], + [ + 71.07407353500014, + 42.39784630800017 + ], + [ + 70.85266858000017, + 42.393707324 + ], + [ + 70.80416854100014, + 42.3648304940001 + ], + [ + 70.81249260900017, + 42.272858050000025 + ], + [ + 70.89668262400016, + 42.24133823800008 + ], + [ + 71.02159158900008, + 42.24281043600007 + ], + [ + 71.04438751600003, + 42.17831990500014 + ], + [ + 70.88353762100013, + 42.06944870600012 + ], + [ + 70.86692049800001, + 42.00039221700007 + ], + [ + 70.98632858700006, + 41.975531325000134 + ], + [ + 71.16761054500006, + 42.047830939000164 + ], + [ + 71.37212361900015, + 42.08875843100009 + ], + [ + 71.44669355600018, + 42.06861353300019 + ], + [ + 71.63725260400014, + 42.07641859400019 + ], + [ + 71.69978361300008, + 42.02900987900006 + ], + [ + 71.67127257000016, + 41.964110311000184 + ], + [ + 71.30690755000006, + 41.84682133400014 + ], + [ + 70.9719775960001, + 41.62026419100016 + ], + [ + 70.72295359900016, + 41.544443841000145 + ], + [ + 70.5181575530001, + 41.434463884000024 + ], + [ + 70.53436262100013, + 41.338257740000074 + ], + [ + 70.7096325760001, + 41.31040719100008 + ], + [ + 70.79963661400006, + 41.39346732500013 + ], + [ + 70.88948055800006, + 41.39377611400005 + ], + [ + 70.9668425070002, + 41.52674411200019 + ], + [ + 71.21602659700011, + 41.53220307800012 + ], + [ + 71.42598757300016, + 41.60479237100003 + ], + [ + 71.5781405730001, + 41.74011333600009 + ], + [ + 71.85294361600018, + 41.831421599000066 + ], + [ + 72.17340858500012, + 41.82881248000007 + ], + [ + 72.17194359600018, + 41.98530127100008 + ], + [ + 72.23338361700007, + 42.04331074700008 + ], + [ + 72.41204857700018, + 42.09626945500014 + ], + [ + 72.57644653199998, + 42.05957281200011 + ], + [ + 72.7018966330001, + 42.08038943600013 + ], + [ + 72.79604351100016, + 42.16151988900015 + ], + [ + 72.90104662900018, + 42.12113018000019 + ], + [ + 72.96935260200007, + 42.25263721200008 + ], + [ + 72.93763749200019, + 42.345276520000084 + ] + ] + ], + [ + [ + [ + 78.34147662600009, + 42.84464349000001 + ], + [ + 78.61298356900005, + 42.80494495200003 + ], + [ + 78.70809151600014, + 42.859364626 + ], + [ + 78.501830648, + 42.96279580300006 + ], + [ + 78.20172163400008, + 42.960144942000056 + ], + [ + 77.84454359400007, + 42.998058805000085 + ], + [ + 77.61126751699999, + 43.066265536000174 + ], + [ + 77.64076259600017, + 43.15365190600005 + ], + [ + 77.77030155699998, + 43.17353394800017 + ], + [ + 77.84426162600005, + 43.26970254100013 + ], + [ + 77.75498161700006, + 43.31916331300016 + ], + [ + 77.59266656500017, + 43.255991591000054 + ], + [ + 77.30703762400003, + 43.20797284100013 + ], + [ + 77.13120256100018, + 43.1961439640001 + ], + [ + 76.83447262800013, + 43.10344313200011 + ], + [ + 76.5279236290001, + 43.04451349200019 + ], + [ + 76.40881360000003, + 43.0681834830001 + ], + [ + 76.17633849800006, + 43.08303420400006 + ], + [ + 75.89293662800009, + 43.06411356600006 + ], + [ + 75.63893160200007, + 43.12477507600016 + ], + [ + 75.5065686100001, + 43.105709096 + ], + [ + 75.52973954300012, + 43.04729460699997 + ], + [ + 76.01689961200015, + 42.956254063000074 + ], + [ + 76.1404116490001, + 42.89071327900007 + ], + [ + 76.15316756500005, + 42.77969480399997 + ], + [ + 76.10772658500008, + 42.68929430200012 + ], + [ + 76.24710053600006, + 42.678465386000084 + ], + [ + 76.43604254800005, + 42.69721838600009 + ], + [ + 76.58663165300004, + 42.73278615400011 + ], + [ + 76.93923954400015, + 42.777554904000056 + ], + [ + 77.10732251900004, + 42.77890606700004 + ], + [ + 77.17401162300018, + 42.84089359400008 + ], + [ + 77.3281325270001, + 42.8664944410001 + ], + [ + 77.61972854500004, + 42.83415370600005 + ], + [ + 77.81323249100012, + 42.83170451300015 + ], + [ + 78.22305257200003, + 42.85436348000013 + ], + [ + 78.34147662600009, + 42.84464349000001 + ] + ] + ], + [ + [ + [ + 85.08579263200005, + 46.771560270000066 + ], + [ + 85.30966957800007, + 46.852966487000174 + ], + [ + 85.71670552600006, + 46.880104742000185 + ], + [ + 85.79811861600007, + 46.961514145000194 + ], + [ + 85.87274152700007, + 47.131113071000186 + ], + [ + 85.85238657800011, + 47.2532258330001 + ], + [ + 85.71670552600006, + 47.42282777700018 + ], + [ + 85.54591352000011, + 47.44147885200016 + ], + [ + 85.42407953900005, + 47.49322939299998 + ], + [ + 85.18900252700013, + 47.48578609499998 + ], + [ + 84.85485862700011, + 47.391196653000065 + ], + [ + 84.74819153300012, + 47.34070138599998 + ], + [ + 84.73203256500017, + 47.233946618000175 + ], + [ + 84.91467255900005, + 47.13948608900017 + ], + [ + 84.91177359400007, + 47.096055928000055 + ], + [ + 84.71721654500016, + 46.978543322000064 + ], + [ + 84.63805366000008, + 46.9547281560001 + ], + [ + 84.64483663200014, + 46.79191236900016 + ], + [ + 84.69910459300013, + 46.717288788000076 + ], + [ + 84.84156761100019, + 46.676581572000146 + ], + [ + 84.99760461699998, + 46.69015086700011 + ], + [ + 85.08579263200005, + 46.771560270000066 + ] + ] + ], + [ + [ + [ + 81.34683952900008, + 47.383776657000055 + ], + [ + 81.55853254000016, + 47.37555635700011 + ], + [ + 81.66578653500017, + 47.3209670330001 + ], + [ + 81.90682257800012, + 47.31036610500013 + ], + [ + 82.157096652, + 47.18633422200014 + ], + [ + 82.37394755100019, + 47.19883549600013 + ], + [ + 82.44435855500006, + 47.2239745 + ], + [ + 82.70680264900011, + 47.23132559600003 + ], + [ + 82.83883656800009, + 47.18134531400017 + ], + [ + 83.08488465300019, + 47.188852314000144 + ], + [ + 83.62756359900015, + 46.996827103000044 + ], + [ + 83.944816623, + 46.94673584300011 + ], + [ + 83.99751264200012, + 46.991627138000126 + ], + [ + 83.81316357800006, + 47.1111468740001 + ], + [ + 83.80799865000012, + 47.248636741000155 + ], + [ + 83.7148205520001, + 47.260465786000054 + ], + [ + 83.45252951200013, + 47.235944696000104 + ], + [ + 83.34301760000011, + 47.259897828000135 + ], + [ + 83.24765752500008, + 47.338217326000176 + ], + [ + 83.0111386580001, + 47.33096630900019 + ], + [ + 82.80776250600013, + 47.29116685300016 + ], + [ + 82.37551865500012, + 47.32741003500007 + ], + [ + 81.97445665800012, + 47.41794867100003 + ], + [ + 81.27381856700003, + 47.46942914700003 + ], + [ + 81.34683952900008, + 47.383776657000055 + ] + ] + ], + [ + [ + [ + 89.59696963800008, + 48.18921049800008 + ], + [ + 89.73297155000006, + 48.12251804100009 + ], + [ + 90.1080245010001, + 48.023071119000065 + ], + [ + 90.17736865700005, + 47.9932937370001 + ], + [ + 90.27342962600011, + 48.05042344800006 + ], + [ + 90.24374360700011, + 48.13589589400004 + ], + [ + 90.0676425040001, + 48.250714892000076 + ], + [ + 89.74096654400006, + 48.346113691000085 + ], + [ + 89.67893962200014, + 48.348387869000135 + ], + [ + 89.56613965700012, + 48.24910204600019 + ], + [ + 89.59696963800008, + 48.18921049800008 + ] + ] + ], + [ + [ + [ + 88.93235763900003, + 48.59826799300009 + ], + [ + 88.87545055100014, + 48.49479708600012 + ], + [ + 88.87027757600015, + 48.40684845800007 + ], + [ + 88.78749857000008, + 48.37063511600013 + ], + [ + 88.69954659000007, + 48.44306180000018 + ], + [ + 88.4770885320001, + 48.54653253900017 + ], + [ + 88.15633354900007, + 48.62413538400011 + ], + [ + 87.9856106100001, + 48.61379043900013 + ], + [ + 87.97165658500006, + 48.47080992300005 + ], + [ + 88.08237465300004, + 48.490067010000075 + ], + [ + 88.10162352600014, + 48.40823348400005 + ], + [ + 88.31343053100005, + 48.34083879100007 + ], + [ + 88.37120062000002, + 48.27344326100007 + ], + [ + 88.35675860100014, + 48.19160939900007 + ], + [ + 88.4771046250001, + 48.09533351800013 + ], + [ + 88.5974506500001, + 48.1290291040001 + ], + [ + 88.6648406490001, + 48.06644847300015 + ], + [ + 88.73223165300004, + 47.9027780670001 + ], + [ + 88.84776261000007, + 47.926848379000035 + ], + [ + 89.02587855600012, + 47.84982589700019 + ], + [ + 89.14621754000018, + 47.820944541000074 + ], + [ + 89.2473066450001, + 47.91240636000009 + ], + [ + 89.47200753200013, + 48.033543133000194 + ], + [ + 89.36175566500003, + 48.184384366000074 + ], + [ + 89.21689559100008, + 48.2671642090001 + ], + [ + 89.15481552800014, + 48.3344177510001 + ], + [ + 89.06686354800019, + 48.55688167500006 + ], + [ + 88.93235763900003, + 48.59826799300009 + ] + ] + ], + [ + [ + [ + 90.10460652900008, + 48.570428004000064 + ], + [ + 90.23384055600008, + 48.47026794900012 + ], + [ + 90.53623162800005, + 48.4028041900001 + ], + [ + 90.56532253100016, + 48.52185554600004 + ], + [ + 90.61334966300006, + 48.5637868550001 + ], + [ + 90.51190952400009, + 48.62272051900004 + ], + [ + 90.22222156200007, + 48.652307799000084 + ], + [ + 90.10460652900008, + 48.570428004000064 + ] + ] + ], + [ + [ + [ + 87.12245160800006, + 49.129054527000164 + ], + [ + 87.0362775960001, + 49.19712429800006 + ], + [ + 86.91137651000008, + 49.19815426600019 + ], + [ + 86.76521254700009, + 49.16143381900014 + ], + [ + 86.52593955400016, + 49.20958349400013 + ], + [ + 86.40099354100005, + 49.27882404900009 + ], + [ + 86.18472250100018, + 49.29678428800014 + ], + [ + 85.90998852500007, + 49.22266345400004 + ], + [ + 85.66546661600017, + 49.21451138200018 + ], + [ + 85.44154357000008, + 49.26357300800004 + ], + [ + 85.12975353500002, + 49.20756127600015 + ], + [ + 84.88564250700011, + 49.21746466200011 + ], + [ + 84.74122650700008, + 49.168810899000164 + ], + [ + 84.4722515690001, + 49.19584220200005 + ], + [ + 84.26181751899998, + 49.09758232400003 + ], + [ + 84.34024849600013, + 49.03623048100013 + ], + [ + 84.5363766480001, + 49.06017187900005 + ], + [ + 84.76300855800014, + 49.01672948000015 + ], + [ + 84.88923649999998, + 48.86264763600008 + ], + [ + 84.88336162400009, + 48.792068156000084 + ], + [ + 84.97630351900006, + 48.72301736700018 + ], + [ + 85.40709663000007, + 48.727926480000065 + ], + [ + 85.55075859500016, + 48.630796483000154 + ], + [ + 85.86573760800007, + 48.62927751400014 + ], + [ + 86.08406053800007, + 48.68796810300012 + ], + [ + 86.20503252300017, + 48.695227167000155 + ], + [ + 86.44106255800006, + 48.627908414000046 + ], + [ + 86.75134250900004, + 48.66946186700011 + ], + [ + 87.02638259200012, + 48.77881586400014 + ], + [ + 87.13502463000015, + 48.8439975660001 + ], + [ + 87.16979259700014, + 48.97871503500011 + ], + [ + 87.12245160800006, + 49.129054527000164 + ] + ] + ], + [ + [ + [ + 88.49789459500005, + 49.08311298000007 + ], + [ + 88.53395052500008, + 49.06950579800008 + ], + [ + 89.01884463000005, + 49.04027759900015 + ], + [ + 89.07530261500006, + 49.118658452000034 + ], + [ + 88.75999452800005, + 49.19239405400003 + ], + [ + 88.6246485850001, + 49.190036225000085 + ], + [ + 88.49789459500005, + 49.08311298000007 + ] + ] + ], + [ + [ + [ + 89.320602532, + 49.31629652100014 + ], + [ + 89.32131952000003, + 49.26347007900017 + ], + [ + 89.62517558100012, + 49.08937694400004 + ], + [ + 89.69342053400015, + 49.17059289200006 + ], + [ + 89.63228561400018, + 49.30690845400005 + ], + [ + 89.49660456200013, + 49.382326472000045 + ], + [ + 89.320602532, + 49.31629652100014 + ] + ] + ], + [ + [ + [ + 90.13629951100012, + 50.68738158900004 + ], + [ + 90.08511357500015, + 50.796304085000145 + ], + [ + 89.93623353999999, + 50.9165760140001 + ], + [ + 89.81993061000014, + 50.954414775000146 + ], + [ + 89.80416056200005, + 51.08986884500007 + ], + [ + 89.64240257100016, + 51.20232062600007 + ], + [ + 89.44336656900009, + 51.238660032000155 + ], + [ + 89.35491150600018, + 51.30086314100015 + ], + [ + 89.30686962200008, + 51.41126303200019 + ], + [ + 89.32893364100005, + 51.50596361800007 + ], + [ + 89.40399157300004, + 51.538846998 + ], + [ + 90.01055855800013, + 51.629855691000046 + ], + [ + 90.11506664100011, + 51.73140831500001 + ], + [ + 90.26515165800015, + 51.973241813000186 + ], + [ + 90.41206362200006, + 52.096015907000094 + ], + [ + 90.58686854900014, + 52.15066692200014 + ], + [ + 90.80320764900011, + 52.18603771500011 + ], + [ + 91.26152760100018, + 52.22042346700016 + ], + [ + 91.4021226270001, + 52.27109944800014 + ], + [ + 91.440086614, + 52.43595052900014 + ], + [ + 91.18379953000016, + 52.37344215000013 + ], + [ + 90.9917905800001, + 52.3592509180001 + ], + [ + 90.39070854500017, + 52.352986786000145 + ], + [ + 90.29566161800017, + 52.37130107700017 + ], + [ + 90.06730655700011, + 52.29694068800006 + ], + [ + 90.00089254700015, + 52.24695872800004 + ], + [ + 89.94783057400014, + 52.07599673700014 + ], + [ + 89.86459358100012, + 51.97633171700005 + ], + [ + 89.75566857000007, + 51.92983394800012 + ], + [ + 89.45497852200015, + 51.90652152800004 + ], + [ + 89.3624575660001, + 51.86844287700018 + ], + [ + 89.24906952700007, + 51.72474034400017 + ], + [ + 89.13854256600018, + 51.68842373700011 + ], + [ + 88.97879757300007, + 51.684166736 + ], + [ + 88.63627663200003, + 51.78427029700009 + ], + [ + 88.47643256400016, + 51.78702056700013 + ], + [ + 88.33154265100012, + 51.690437908000035 + ], + [ + 88.35523963200012, + 51.48862632200019 + ], + [ + 88.23454257300006, + 51.45015355400017 + ], + [ + 88.1513365940001, + 51.62723550800007 + ], + [ + 88.06271355799998, + 51.71473821900008 + ], + [ + 87.95770256000003, + 51.688587854000104 + ], + [ + 87.93666063100011, + 51.59361200600017 + ], + [ + 88.01261157000005, + 51.44912358600004 + ], + [ + 88.09764866000006, + 51.346632859000124 + ], + [ + 88.2638936510001, + 51.27118064300004 + ], + [ + 88.6957626630001, + 51.15578782000006 + ], + [ + 89.16211650100018, + 51.13441731900008 + ], + [ + 89.258186523, + 51.10291594800003 + ], + [ + 89.36437266300004, + 50.89403456200017 + ], + [ + 89.46846751900006, + 50.803731290000144 + ], + [ + 89.64524856300011, + 50.742314403000194 + ], + [ + 89.6662215930001, + 50.5960113000001 + ], + [ + 89.34599265800011, + 50.59197122300003 + ], + [ + 89.10729265200007, + 50.49857469300008 + ], + [ + 88.92742958200006, + 50.484780595000075 + ], + [ + 88.70359756300013, + 50.57000979900016 + ], + [ + 88.59010357700015, + 50.64367197500013 + ], + [ + 88.42991652200004, + 50.701641721000044 + ], + [ + 88.09530658800008, + 50.77415188900011 + ], + [ + 87.96793351100001, + 50.82364468000003 + ], + [ + 87.59864060300009, + 50.90579588100013 + ], + [ + 87.76466364200007, + 50.544320606000156 + ], + [ + 87.36151857400012, + 50.59199016600013 + ], + [ + 87.25910965400016, + 50.54289048600009 + ], + [ + 87.17913858700018, + 50.45550629600007 + ], + [ + 87.10575854500007, + 50.30498709600005 + ], + [ + 87.18125954300012, + 50.12377554600005 + ], + [ + 87.02208753700012, + 50.06947992400006 + ], + [ + 86.81393453900012, + 49.989579767000066 + ], + [ + 86.7658006210001, + 49.88848965600005 + ], + [ + 86.7880096470002, + 49.799632430000145 + ], + [ + 86.57738465800003, + 49.78140531100007 + ], + [ + 85.96972651700008, + 49.75536173200004 + ], + [ + 85.61381565300019, + 49.816130530000066 + ], + [ + 85.36206854300008, + 49.981069788000184 + ], + [ + 85.28394350600007, + 50.07655609400001 + ], + [ + 85.20581863600017, + 50.24149434700013 + ], + [ + 84.86726350800006, + 50.415115748000176 + ], + [ + 84.60684163200006, + 50.475880523000114 + ], + [ + 84.2769696530001, + 50.51060607700009 + ], + [ + 84.21482052300007, + 50.43354386500016 + ], + [ + 84.0118106600001, + 50.34355877000007 + ], + [ + 83.91220850500014, + 50.339266565000116 + ], + [ + 83.71465257900013, + 50.38836239000011 + ], + [ + 83.51653255100018, + 50.333857388000126 + ], + [ + 83.53687258000014, + 50.209145733000014 + ], + [ + 83.69458764400002, + 50.138312951000046 + ], + [ + 83.70253754400005, + 50.035192408000114 + ], + [ + 83.8137125930001, + 49.98909579600007 + ], + [ + 83.97113764300019, + 50.0355134350001 + ], + [ + 84.13353752000006, + 50.16863331200011 + ], + [ + 84.32396664900006, + 50.115115531000015 + ], + [ + 84.63844258100016, + 50.104804449000085 + ], + [ + 84.73454260900019, + 50.00521302200008 + ], + [ + 84.75118253100015, + 49.87484023000013 + ], + [ + 84.85768165200005, + 49.7588298280001 + ], + [ + 84.99820761100017, + 49.66848867000016 + ], + [ + 85.12539662200004, + 49.5732955630001 + ], + [ + 85.31217157700019, + 49.537868108000055 + ], + [ + 85.5809936280001, + 49.418115690000036 + ], + [ + 85.86596660200019, + 49.4368769030001 + ], + [ + 86.02118654100019, + 49.40413467500014 + ], + [ + 86.28608653300017, + 49.40388372100011 + ], + [ + 86.51545764899998, + 49.419904891000044 + ], + [ + 86.74701660900018, + 49.303113463000045 + ], + [ + 86.93598963400012, + 49.30838467500007 + ], + [ + 87.02890755700003, + 49.25390280700009 + ], + [ + 87.17247765600013, + 49.24543373200004 + ], + [ + 87.27776358000011, + 49.20273246100004 + ], + [ + 87.30603758300015, + 49.09860810100008 + ], + [ + 87.3049465950001, + 48.91609216000006 + ], + [ + 87.41565661600009, + 48.843883405000156 + ], + [ + 87.69486250500006, + 48.77649173000003 + ], + [ + 87.9548035950001, + 48.728354460000105 + ], + [ + 88.03302753900005, + 48.747607691000155 + ], + [ + 88.16667950000016, + 48.71726117800006 + ], + [ + 88.29084063200008, + 48.727606291000086 + ], + [ + 88.42018161200019, + 48.7948641910001 + ], + [ + 88.43569953200017, + 48.88798897900011 + ], + [ + 88.39430952700008, + 48.97076479900011 + ], + [ + 88.42018161200019, + 49.15183972400007 + ], + [ + 88.47191656300015, + 49.301873277000084 + ], + [ + 88.52882365000016, + 49.35878120300009 + ], + [ + 88.69954659000007, + 49.374300129000176 + ], + [ + 88.84857951000004, + 49.420560691000105 + ], + [ + 89.36006151500004, + 49.40678670900019 + ], + [ + 89.62136064100014, + 49.48671653800011 + ], + [ + 89.65328965800006, + 49.684206079000035 + ], + [ + 89.85115051700018, + 49.60625907399998 + ], + [ + 90.01620460800007, + 49.567016679000176 + ], + [ + 90.14050253200014, + 49.44015808300014 + ], + [ + 90.183257615, + 49.516136012000175 + ], + [ + 90.16506150900011, + 49.89887667800008 + ], + [ + 90.1154636080002, + 49.97963463900015 + ], + [ + 89.96729251500005, + 50.09993741300008 + ], + [ + 89.789649644, + 50.18242355500007 + ], + [ + 89.69271863300008, + 50.25729138400004 + ], + [ + 89.6280666670001, + 50.429427848000046 + ], + [ + 89.73191861500004, + 50.457470176000186 + ], + [ + 89.94873850100004, + 50.39531635200012 + ], + [ + 90.05658761100017, + 50.43077867500017 + ], + [ + 90.07962057800017, + 50.540349428000184 + ], + [ + 89.97113058800011, + 50.604720433000125 + ], + [ + 89.99096653000015, + 50.68070255300006 + ], + [ + 90.13629951100012, + 50.68738158900004 + ] + ] + ], + [ + [ + [ + 86.64571359799999, + 51.30914127600005 + ], + [ + 87.01526651200015, + 51.29350818900019 + ], + [ + 87.5241165990002, + 51.10589906700005 + ], + [ + 87.74259157600005, + 51.267751606000104 + ], + [ + 87.73889163700011, + 51.4791651650001 + ], + [ + 87.69905865300012, + 51.54919630100005 + ], + [ + 87.57137259600017, + 51.52794482400003 + ], + [ + 87.32913961700007, + 51.43758438700013 + ], + [ + 87.19220765000011, + 51.48904541700011 + ], + [ + 86.980087664, + 51.65831828700016 + ], + [ + 86.82237964100005, + 51.6284976550001 + ], + [ + 86.69275652599998, + 51.54602626600018 + ], + [ + 86.63804650300006, + 51.457424855000056 + ], + [ + 86.64571359799999, + 51.30914127600005 + ] + ] + ], + [ + [ + [ + 173.78132672100003, + -42.10241129399998 + ], + [ + 173.73789974500005, + -42.06411236699989 + ], + [ + 173.83474760800004, + -41.94231744699988 + ], + [ + 173.80964665700003, + -41.90629973799997 + ], + [ + 173.61517359500021, + -41.89412669999996 + ], + [ + 173.51809674000003, + -41.9319074579999 + ], + [ + 173.2534026070001, + -41.90949558999989 + ], + [ + 172.97535660600022, + -42.0741022549999 + ], + [ + 172.90538062300016, + -42.04169379399991 + ], + [ + 172.94618272200023, + -41.82349038999996 + ], + [ + 172.92643764000002, + -41.78264671699998 + ], + [ + 172.7371977350001, + -41.897147872999824 + ], + [ + 172.5368957300003, + -41.98917697899998 + ], + [ + 172.40727261500012, + -42.072252535999894 + ], + [ + 172.3407135980001, + -42.20202032299994 + ], + [ + 172.2387846260001, + -42.338673507999886 + ], + [ + 171.86624171900007, + -42.54802629199992 + ], + [ + 171.3735967010001, + -42.75888597499994 + ], + [ + 170.86282363700013, + -43.02404848799989 + ], + [ + 170.76887474000011, + -43.086578155999916 + ], + [ + 170.31768762100023, + -43.311736024999846 + ], + [ + 169.95657360600012, + -43.47868526399998 + ], + [ + 169.80705269100008, + -43.56072800299995 + ], + [ + 169.84719865500017, + -43.65967268199989 + ], + [ + 169.9815976110002, + -43.70094450199997 + ], + [ + 169.8016817350001, + -43.7563985029999 + ], + [ + 169.69033770700003, + -43.81853221099993 + ], + [ + 169.4643557300002, + -43.852128051999955 + ], + [ + 169.4144596010001, + -43.96321877899993 + ], + [ + 169.27021760900004, + -43.935234789999924 + ], + [ + 169.1787566280001, + -43.95095488099997 + ], + [ + 169.0878146550001, + -43.901929129999985 + ], + [ + 168.7915956820002, + -44.035476651999886 + ], + [ + 168.7110896810002, + -44.04672265199997 + ], + [ + 168.39884970600008, + -44.37711699099992 + ], + [ + 168.2169037330001, + -44.41541591799995 + ], + [ + 168.12145967200013, + -44.54404393399989 + ], + [ + 168.10266074000003, + -44.61459290399995 + ], + [ + 168.13107271, + -44.770941717999904 + ], + [ + 168.08042858000033, + -44.8758006679999 + ], + [ + 168.00164757500022, + -44.96058143899995 + ], + [ + 167.98614457400015, + -45.064536484999905 + ], + [ + 167.89039558000002, + -45.15221672399997 + ], + [ + 167.80563358400002, + -45.17310677399996 + ], + [ + 167.7814026750002, + -45.30126875499997 + ], + [ + 167.70939659500027, + -45.45688582899993 + ], + [ + 167.60491969200018, + -45.56336215099998 + ], + [ + 167.6840976640002, + -45.62394319399988 + ], + [ + 167.96012865600017, + -45.53071916399995 + ], + [ + 168.11979670300013, + -45.56869806999998 + ], + [ + 168.2205506990001, + -45.652187357999935 + ], + [ + 168.47581468800013, + -45.58793621499996 + ], + [ + 168.5510556800001, + -45.509357045999934 + ], + [ + 168.6478886220001, + -45.506740047999926 + ], + [ + 168.69441271100004, + -45.44376697699994 + ], + [ + 168.87622071700002, + -45.33783296399997 + ], + [ + 168.99743661600007, + -45.17212256999994 + ], + [ + 169.0385746620001, + -45.05045974899997 + ], + [ + 168.9467006210001, + -44.988730551999936 + ], + [ + 168.97567769800003, + -44.913603553999906 + ], + [ + 169.10385158300005, + -44.76324360999996 + ], + [ + 169.14660666500004, + -44.61836576599984 + ], + [ + 169.28724661800015, + -44.6104918069999 + ], + [ + 169.35476670400033, + -44.55660974799997 + ], + [ + 169.49035672900004, + -44.53932492199988 + ], + [ + 169.5681307320002, + -44.46969192599994 + ], + [ + 169.64456161900023, + -44.46499990499996 + ], + [ + 169.6813357100001, + -44.55275675499996 + ], + [ + 169.8021846490003, + -44.51238598799995 + ], + [ + 169.84992964600008, + -44.37788007899991 + ], + [ + 169.80824258600035, + -44.337871243999984 + ], + [ + 170.01820356100006, + -44.21614438399996 + ], + [ + 169.99290463000023, + -44.177841265999916 + ], + [ + 170.09217871800013, + -44.103843477999874 + ], + [ + 170.11868263100007, + -43.90008209399991 + ], + [ + 170.20532267700003, + -43.8580520459999 + ], + [ + 170.42298863200028, + -43.888852019999945 + ], + [ + 170.61500562900005, + -43.69368476799997 + ], + [ + 170.6256866880001, + -43.84963326199994 + ], + [ + 170.52755773600006, + -44.03926879299996 + ], + [ + 170.65351863000012, + -44.087055530999976 + ], + [ + 170.75152571000012, + -43.95651694499992 + ], + [ + 170.82762165600002, + -43.91854206199997 + ], + [ + 170.89540074200022, + -43.744908589999966 + ], + [ + 170.8518527320001, + -43.69858650499998 + ], + [ + 170.86561564900035, + -43.61268004399989 + ], + [ + 170.81826761900015, + -43.53210631799993 + ], + [ + 170.98185772700003, + -43.530782311999985 + ], + [ + 171.0566707390002, + -43.58459999799993 + ], + [ + 171.13012672100012, + -43.542154207999886 + ], + [ + 171.15184071200008, + -43.41862373099991 + ], + [ + 171.11489864700013, + -43.32772316399996 + ], + [ + 171.231628719, + -43.281478359999824 + ], + [ + 171.35580460300014, + -43.27953208199989 + ], + [ + 171.42498765800008, + -43.2436972669999 + ], + [ + 171.50332660200002, + -43.35703182999998 + ], + [ + 171.6419217060003, + -43.45454957399994 + ], + [ + 171.8883816780001, + -43.264125305999926 + ], + [ + 171.97901972400007, + -43.22194253999993 + ], + [ + 172.09089667400008, + -43.21419866699989 + ], + [ + 172.15858473300023, + -43.11169000299998 + ], + [ + 172.33377070000017, + -43.04047433599982 + ], + [ + 172.3824916860001, + -42.96189164699996 + ], + [ + 172.36817958600022, + -42.89479115899985 + ], + [ + 172.43756062200032, + -42.858159391999834 + ], + [ + 172.47702061100006, + -42.758515829999965 + ], + [ + 172.6528627140001, + -42.708242012999904 + ], + [ + 172.709808693, + -42.578546813999935 + ], + [ + 173.08874464600012, + -42.542949205999946 + ], + [ + 173.18284559000017, + -42.41100312999998 + ], + [ + 173.2390896700001, + -42.37494334399997 + ], + [ + 173.47177163700007, + -42.30627460299996 + ], + [ + 173.6477966330001, + -42.218465449999826 + ], + [ + 173.78132672100003, + -42.10241129399998 + ] + ] + ], + [ + [ + [ + 171.62023973400005, + -43.46487238999998 + ], + [ + 171.53192163200004, + -43.38591569999983 + ], + [ + 171.34747265600004, + -43.30702925099996 + ], + [ + 171.14413472500007, + -43.335638865999954 + ], + [ + 171.25904860600008, + -43.493902273999936 + ], + [ + 171.2673186950002, + -43.546785041999954 + ], + [ + 171.40595973200016, + -43.664124812999944 + ], + [ + 171.5754396350003, + -43.573122154999965 + ], + [ + 171.62023973400005, + -43.46487238999998 + ] + ] + ], + [ + [ + [ + 146.44307786800016, + -37.34777660599991 + ], + [ + 146.33615976800013, + -37.40321279799991 + ], + [ + 146.42729911800006, + -37.546980963999886 + ], + [ + 146.3633375930001, + -37.599516372999915 + ], + [ + 146.17580551000015, + -37.5068396719999 + ], + [ + 146.08370266800011, + -37.6882518889999 + ], + [ + 146.07225631000017, + -37.845393054999874 + ], + [ + 146.2022429430001, + -37.80572338899992 + ], + [ + 146.338644218, + -37.91252112199993 + ], + [ + 146.36621938500014, + -37.85083293899993 + ], + [ + 146.28234351800018, + -37.751996604999874 + ], + [ + 146.1742007260001, + -37.74096888099996 + ], + [ + 146.15760313400006, + -37.648771213999964 + ], + [ + 146.287176734, + -37.60322064699983 + ], + [ + 146.474970202, + -37.666995529999895 + ], + [ + 146.5206223350001, + -37.58397093099995 + ], + [ + 146.4047114440002, + -37.45881726399995 + ], + [ + 146.44307786800016, + -37.34777660599991 + ] + ] + ], + [ + [ + [ + 145.95459786000004, + -37.35400600599985 + ], + [ + 145.77043179300006, + -37.42657127199993 + ], + [ + 145.92790201000014, + -37.507027696999955 + ], + [ + 145.95459786000004, + -37.35400600599985 + ] + ] + ], + [ + [ + [ + 146.4150310680002, + -36.97814179799991 + ], + [ + 146.39197919200012, + -37.085801563999894 + ], + [ + 146.49925881000001, + -37.31075928099989 + ], + [ + 146.66802812700007, + -37.31307313099995 + ], + [ + 146.68670290900013, + -37.39075755599998 + ], + [ + 146.75671408400024, + -37.466098088999956 + ], + [ + 146.85820018400022, + -37.518317630999945 + ], + [ + 147.01857579300008, + -37.52987670599998 + ], + [ + 147.06824862700012, + -37.50005797299997 + ], + [ + 147.02180780200013, + -37.41243885599988 + ], + [ + 146.93148124300023, + -37.36771557199995 + ], + [ + 146.80175384300014, + -37.35808723999992 + ], + [ + 146.78204863500002, + -37.263855630999956 + ], + [ + 146.70754555100018, + -37.08862445599988 + ], + [ + 146.55794268400007, + -37.043115430999876 + ], + [ + 146.5063957440001, + -37.09308498999991 + ], + [ + 146.4150310680002, + -36.97814179799991 + ] + ] + ], + [ + [ + [ + 147.56191556800013, + -37.14639745699998 + ], + [ + 147.42571901800022, + -37.137069147999966 + ], + [ + 147.33748613500018, + -37.16547880699994 + ], + [ + 147.36543192600004, + -37.26053873899997 + ], + [ + 147.5252289760001, + -37.397444763999886 + ], + [ + 147.58817114200008, + -37.32818668099998 + ], + [ + 147.53335426800004, + -37.267441130999885 + ], + [ + 147.56191556800013, + -37.14639745699998 + ] + ] + ], + [ + [ + [ + 147.39417585900003, + -36.658605147999936 + ], + [ + 147.2395942920001, + -36.733332089999976 + ], + [ + 147.2432187510001, + -36.81748380699992 + ], + [ + 147.1266389760001, + -36.80647449899993 + ], + [ + 147.08481963500003, + -36.88016526499996 + ], + [ + 147.10762985900033, + -36.93398136399992 + ], + [ + 147.01069539300022, + -36.96726373899992 + ], + [ + 146.9809557760001, + -37.04215288899991 + ], + [ + 146.90333758500003, + -37.0748982479999 + ], + [ + 146.97220333400026, + -37.26318796499987 + ], + [ + 147.03439434300014, + -37.14337573099988 + ], + [ + 147.10410616800004, + -37.23465593899988 + ], + [ + 147.21167684300008, + -37.286056746999975 + ], + [ + 147.22868637600016, + -37.21703996399992 + ], + [ + 147.29460737600004, + -37.17053429799989 + ], + [ + 147.31380742600004, + -37.0540551229999 + ], + [ + 147.45684128400012, + -36.97697542299994 + ], + [ + 147.5792426170002, + -36.88172328999991 + ], + [ + 147.53136466800004, + -36.77418998999997 + ], + [ + 147.37597440900004, + -36.73026905699993 + ], + [ + 147.39417585900003, + -36.658605147999936 + ] + ] + ], + [ + [ + [ + 148.81114338400016, + -35.37187692499998 + ], + [ + 148.761352976, + -35.44633903199997 + ], + [ + 148.7397174680001, + -35.56123708699988 + ], + [ + 148.61457150800004, + -35.51348964399995 + ], + [ + 148.56327115800002, + -35.55464249599993 + ], + [ + 148.43402856800026, + -35.57797329599998 + ], + [ + 148.51160436200007, + -35.65931023999991 + ], + [ + 148.44100092500014, + -35.857960480999964 + ], + [ + 148.34229186200014, + -35.81895540499994 + ], + [ + 148.23018574100013, + -35.61140247999998 + ], + [ + 148.1363897020001, + -35.62486541199985 + ], + [ + 148.0747892180001, + -35.72114846199992 + ], + [ + 148.1426606780002, + -35.73821873199995 + ], + [ + 148.28322462300014, + -35.83243284399998 + ], + [ + 148.2602752580001, + -35.88492269099987 + ], + [ + 148.29564482400008, + -35.99181767999994 + ], + [ + 148.23700519800013, + -36.00070626499996 + ], + [ + 148.17886872400004, + -36.12269684499989 + ], + [ + 148.221776534, + -36.19189512999992 + ], + [ + 148.22224944200013, + -36.35231874499988 + ], + [ + 148.17027764600016, + -36.47453024899988 + ], + [ + 148.16533, + -36.57748999899985 + ], + [ + 148.0715726330002, + -36.57395576499988 + ], + [ + 148.04600288400002, + -36.5093406069999 + ], + [ + 147.8881039920002, + -36.452347148999934 + ], + [ + 147.88077147600006, + -36.58978743999995 + ], + [ + 147.83819660900008, + -36.60892964799996 + ], + [ + 147.906358876, + -36.75892533899997 + ], + [ + 147.8959744340002, + -36.825675972999875 + ], + [ + 147.96758741700012, + -36.95705173999994 + ], + [ + 147.90471891700008, + -36.99498741499991 + ], + [ + 147.85449367600017, + -37.21518432299996 + ], + [ + 147.93241355100008, + -37.27521166499997 + ], + [ + 148.15372163500012, + -37.12239193199997 + ], + [ + 148.10383070800015, + -37.04478442299995 + ], + [ + 148.3801006330002, + -36.86368555199988 + ], + [ + 148.34048931200005, + -36.77384566399991 + ], + [ + 148.39395651700022, + -36.66783537799995 + ], + [ + 148.5045489800002, + -36.65348693899983 + ], + [ + 148.4159443100002, + -36.57335728099986 + ], + [ + 148.45935550600007, + -36.414303601999904 + ], + [ + 148.5331773590002, + -36.386971072999984 + ], + [ + 148.60898320500007, + -36.28797599899997 + ], + [ + 148.58948281200003, + -36.17529713199991 + ], + [ + 148.649084785, + -36.03584398399994 + ], + [ + 148.63150716300004, + -35.944882305999954 + ], + [ + 148.7584309670001, + -35.89230871099994 + ], + [ + 148.80814436000014, + -35.92443634699998 + ], + [ + 148.92032801300002, + -35.89742454199984 + ], + [ + 149.01159147900023, + -35.91653549499995 + ], + [ + 149.08130763400015, + -35.87605263399996 + ], + [ + 149.0532100700002, + -35.81744360999983 + ], + [ + 148.97325866500023, + -35.79055551599998 + ], + [ + 148.9444374090001, + -35.60674009599984 + ], + [ + 148.98295537000024, + -35.52407230499989 + ], + [ + 148.8298082240001, + -35.505400617999896 + ], + [ + 148.78232447900007, + -35.452537504999896 + ], + [ + 148.81114338400016, + -35.37187692499998 + ] + ] + ], + [ + [ + [ + 147.5554656160001, + -8.87598045899989 + ], + [ + 147.5143585830001, + -8.813701912999875 + ], + [ + 147.5081636860001, + -8.722538657999962 + ], + [ + 147.41375764000009, + -8.711800265999898 + ], + [ + 147.42169161400022, + -8.786704137999948 + ], + [ + 147.531921688, + -8.947363596999935 + ], + [ + 147.5554656160001, + -8.87598045899989 + ] + ] + ], + [ + [ + [ + 147.40911859200003, + -8.456607523999935 + ], + [ + 147.42565960700017, + -8.376406288999874 + ], + [ + 147.38706966000018, + -8.289997416999938 + ], + [ + 147.3389287020001, + -8.29275841599997 + ], + [ + 147.31991569600007, + -8.471137385999953 + ], + [ + 147.40911859200003, + -8.456607523999935 + ] + ] + ], + [ + [ + [ + 146.00155665400018, + -6.887001772999952 + ], + [ + 146.05741868600012, + -6.811638236999897 + ], + [ + 146.0437317090002, + -6.712547377999954 + ], + [ + 145.95330757000022, + -6.735355876999904 + ], + [ + 146.00155665400018, + -6.887001772999952 + ] + ] + ], + [ + [ + [ + 146.96936070000004, + -6.293280053999979 + ], + [ + 147.02482559800023, + -6.299391802999935 + ], + [ + 147.08131359000015, + -6.370588526999938 + ], + [ + 147.15792871100007, + -6.403433013999972 + ], + [ + 147.1753696080001, + -6.316024515999914 + ], + [ + 147.0872035540002, + -6.241329017999874 + ], + [ + 147.017608611, + -6.217420644999947 + ], + [ + 147.0007326550001, + -6.150644536999948 + ], + [ + 146.86959861800005, + -6.176804624999932 + ], + [ + 146.7429805830002, + -6.235971305999954 + ], + [ + 146.78625467300026, + -6.281291082999928 + ], + [ + 146.86100767000016, + -6.257016923999913 + ], + [ + 146.96936070000004, + -6.293280053999979 + ] + ] + ], + [ + [ + [ + 144.42852756600007, + -6.055936574999976 + ], + [ + 144.50949071600007, + -6.048020034999922 + ], + [ + 144.5911406790002, + -6.11313317399987 + ], + [ + 144.7545016250001, + -6.162400826999942 + ], + [ + 144.79821760900018, + -6.126382447999958 + ], + [ + 144.76502963100006, + -6.058109163999973 + ], + [ + 144.65879856300023, + -5.99853763699997 + ], + [ + 144.50328056400008, + -5.950168188999896 + ], + [ + 144.39054866000015, + -5.954838752999876 + ], + [ + 144.314300666, + -5.995661973999972 + ], + [ + 144.35470563000024, + -6.072703398999977 + ], + [ + 144.42852756600007, + -6.055936574999976 + ] + ] + ], + [ + [ + [ + 146.60493466100002, + -6.026234630999966 + ], + [ + 146.49447659900022, + -5.933186284999977 + ], + [ + 146.3921965930001, + -5.914014692999956 + ], + [ + 146.3267216920001, + -5.850238635999915 + ], + [ + 146.20481864500005, + -5.788529890999882 + ], + [ + 146.1033176530001, + -5.761452990999885 + ], + [ + 146.09741159600003, + -5.817503950999935 + ], + [ + 146.16293360400005, + -5.88122535899987 + ], + [ + 146.35452262100011, + -5.966671987999973 + ], + [ + 146.44377161700004, + -6.033063031999973 + ], + [ + 146.60493466100002, + -6.026234630999966 + ] + ] + ], + [ + [ + [ + 143.79910262800013, + -5.93547521499994 + ], + [ + 143.8007816910001, + -6.081443544999956 + ], + [ + 143.92459061500017, + -6.126317403999906 + ], + [ + 143.9547116550002, + -5.983517601999949 + ], + [ + 143.8880156780001, + -5.928211792999889 + ], + [ + 143.80851768500008, + -5.758354368999903 + ], + [ + 143.70759571500014, + -5.723989739999979 + ], + [ + 143.73294057800024, + -5.629473554999947 + ], + [ + 143.65023768100002, + -5.572717844999943 + ], + [ + 143.61216758000012, + -5.633602480999969 + ], + [ + 143.65364056600004, + -5.783324393999976 + ], + [ + 143.71325668500003, + -5.829739014999916 + ], + [ + 143.67048668300015, + -5.938793107999913 + ], + [ + 143.79910262800013, + -5.93547521499994 + ] + ] + ], + [ + [ + [ + 144.97991966800032, + -5.837349447999884 + ], + [ + 145.07600360300034, + -5.839236214999971 + ], + [ + 145.09049960200014, + -5.775979834999873 + ], + [ + 145.03187556500018, + -5.721328987999925 + ], + [ + 144.94451870000012, + -5.712270497999953 + ], + [ + 144.93637065200005, + -5.792355726999972 + ], + [ + 144.97991966800032, + -5.837349447999884 + ] + ] + ], + [ + [ + [ + 143.20216360000006, + -5.641556738999952 + ], + [ + 143.17967260700016, + -5.542353226999921 + ], + [ + 143.29252655100015, + -5.53728737199998 + ], + [ + 143.35675070500008, + -5.454740713999968 + ], + [ + 143.02606165800012, + -5.470754339999871 + ], + [ + 142.93884259100025, + -5.543039033999833 + ], + [ + 142.94140661500012, + -5.599860793999881 + ], + [ + 143.02088968900011, + -5.607621430999927 + ], + [ + 143.21940567800027, + -5.877841416999843 + ], + [ + 143.12100263700006, + -5.900534748999974 + ], + [ + 143.11967460900007, + -5.997557792999885 + ], + [ + 143.2964937060002, + -5.90973003199997 + ], + [ + 143.2835386370001, + -5.795151426999951 + ], + [ + 143.20216360000006, + -5.641556738999952 + ] + ] + ], + [ + [ + [ + 142.06623869300017, + -5.007393510999975 + ], + [ + 141.99081464000017, + -5.04057293999989 + ], + [ + 141.99353071200005, + -5.097257739999975 + ], + [ + 142.13836664600012, + -5.094826148999971 + ], + [ + 142.2786716590001, + -5.140406770999959 + ], + [ + 142.2342526010001, + -5.015250036999873 + ], + [ + 142.18075560700004, + -4.985996188999877 + ], + [ + 142.06623869300017, + -5.007393510999975 + ] + ] + ], + [ + [ + [ + 140.8529506640001, + -4.830578604999971 + ], + [ + 140.8247066670001, + -4.876322002999927 + ], + [ + 140.88197367400005, + -4.954002464999917 + ], + [ + 141.00292956600003, + -5.037534164999897 + ], + [ + 141.05870057000004, + -5.042632875999971 + ], + [ + 141.2512665820002, + -5.132857358999956 + ], + [ + 141.34819055200023, + -5.21437706699993 + ], + [ + 141.4053957000001, + -5.203543121999871 + ], + [ + 141.41996763800012, + -5.13232125199994 + ], + [ + 141.33174157000008, + -5.043555723999873 + ], + [ + 141.2253266030002, + -4.977346735999902 + ], + [ + 141.12319965100016, + -4.951859714999898 + ], + [ + 140.98268157000018, + -4.818226361999962 + ], + [ + 140.8529506640001, + -4.830578604999971 + ] + ] + ], + [ + [ + [ + 139.83831759500015, + -4.476504718999877 + ], + [ + 139.72483869600023, + -4.394272883999975 + ], + [ + 139.70428459300012, + -4.318683204999957 + ], + [ + 139.6162566720002, + -4.255324900999938 + ], + [ + 139.54096958000002, + -4.287944585999981 + ], + [ + 139.42337064000003, + -4.286819734999938 + ], + [ + 139.2873685610001, + -4.254049007999868 + ], + [ + 139.10665858400012, + -4.26719602299994 + ], + [ + 139.12567159000002, + -4.36216717699989 + ], + [ + 139.20274369300012, + -4.343154505999905 + ], + [ + 139.34051569500002, + -4.354975671999966 + ], + [ + 139.42355370100017, + -4.389236197999878 + ], + [ + 139.50212063200001, + -4.370418657999949 + ], + [ + 139.59750367300012, + -4.435923733999971 + ], + [ + 139.68583669500003, + -4.443603233999966 + ], + [ + 139.80984460500008, + -4.543340672999932 + ], + [ + 139.82948256600014, + -4.646075983999879 + ], + [ + 139.9887236390001, + -4.601255433999938 + ], + [ + 139.99353066100014, + -4.666523469999902 + ], + [ + 140.11244170400005, + -4.753960130999815 + ], + [ + 140.1872555540001, + -4.658009131999961 + ], + [ + 140.2518915950002, + -4.745210764999911 + ], + [ + 140.3297116980002, + -4.785338790999958 + ], + [ + 140.45133965200012, + -4.773571772999958 + ], + [ + 140.4883425690001, + -4.696917255999949 + ], + [ + 140.375732706, + -4.674778973999878 + ], + [ + 140.35865759500007, + -4.54507555999993 + ], + [ + 140.1951596890002, + -4.602912367999977 + ], + [ + 139.9774327130001, + -4.506798424999943 + ], + [ + 139.91671755900006, + -4.442691282999931 + ], + [ + 139.83831759500015, + -4.476504718999877 + ] + ] + ], + [ + [ + [ + 137.46487458800004, + -4.024189059999912 + ], + [ + 137.32859758300003, + -4.035738315999936 + ], + [ + 137.2945405690001, + -4.010555223999859 + ], + [ + 137.28216569500012, + -3.883811459999947 + ], + [ + 137.33923354700005, + -3.847952168999882 + ], + [ + 137.36849963300017, + -3.765001334999965 + ], + [ + 137.2922365520002, + -3.758919928999944 + ], + [ + 137.2767945710001, + -3.838485982999941 + ], + [ + 137.22566261500003, + -3.856865484999901 + ], + [ + 137.1522825730001, + -3.815126624999948 + ], + [ + 137.05343663300027, + -3.865665812999907 + ], + [ + 136.9506376190002, + -3.853071835999913 + ], + [ + 136.89221156300005, + -3.906844929999977 + ], + [ + 136.72108461600033, + -3.902427163999903 + ], + [ + 136.61819457500008, + -3.948296625999888 + ], + [ + 136.61294566000004, + -4.015257973999951 + ], + [ + 136.69953960500004, + -4.004036784999926 + ], + [ + 136.78225658400004, + -4.041946791999976 + ], + [ + 136.97195464300023, + -4.038882200999979 + ], + [ + 137.12030058300002, + -4.158469159999925 + ], + [ + 137.23930366000013, + -4.136468675999936 + ], + [ + 137.29219061900005, + -4.095741846999886 + ], + [ + 137.33789059900005, + -4.144339282999908 + ], + [ + 137.4286035780002, + -4.138120581999885 + ], + [ + 137.46871970200004, + -4.199786075999896 + ], + [ + 137.5522616290001, + -4.170544297999925 + ], + [ + 137.79336556500016, + -4.145112261999941 + ], + [ + 138.07495157900019, + -4.231084772999907 + ], + [ + 138.19584661800013, + -4.187077098999964 + ], + [ + 138.27947957200013, + -4.211978223999893 + ], + [ + 138.39779667300002, + -4.199308139999971 + ], + [ + 138.53327957700003, + -4.251079299999958 + ], + [ + 138.6735225640001, + -4.352819846999921 + ], + [ + 138.71235659200022, + -4.32008415599995 + ], + [ + 138.92269860800013, + -4.391857051999921 + ], + [ + 138.96545369000012, + -4.260475748999966 + ], + [ + 138.93418868900005, + -4.203843922999909 + ], + [ + 138.74974055000007, + -4.251242243999911 + ], + [ + 138.68110667700012, + -4.209486284999855 + ], + [ + 138.5971986300002, + -4.081049040999972 + ], + [ + 138.53634668300015, + -4.053490013999919 + ], + [ + 138.40452566500005, + -4.064987302999896 + ], + [ + 138.2775265890001, + -3.964590710999914 + ], + [ + 138.23379568500002, + -3.893598839999811 + ], + [ + 138.29356368400022, + -3.826678730999902 + ], + [ + 138.22251867300008, + -3.757966067999973 + ], + [ + 138.11343356700002, + -3.820827156999883 + ], + [ + 137.98779269400018, + -3.756670896999935 + ], + [ + 137.90155062200006, + -3.816972654999972 + ], + [ + 137.8231045570003, + -3.837529942999936 + ], + [ + 137.7109836940001, + -3.828441780999924 + ], + [ + 137.73278770700006, + -3.893068936999953 + ], + [ + 137.67481963800003, + -4.050097354999878 + ], + [ + 137.54701254500014, + -4.012821019999933 + ], + [ + 137.46487458800004, + -4.024189059999912 + ] + ] + ], + [ + [ + [ + 135.6941066810001, + -3.819366358999901 + ], + [ + 135.66694663200008, + -3.880159799999944 + ], + [ + 135.717727555, + -3.924370650999833 + ], + [ + 135.89091460600014, + -3.901507165999931 + ], + [ + 135.94015459900004, + -3.788542747999941 + ], + [ + 135.80934158900004, + -3.78764085499995 + ], + [ + 135.81219462100023, + -3.86863384499992 + ], + [ + 135.6941066810001, + -3.819366358999901 + ] + ] + ], + [ + [ + [ + 138.2351835610001, + -3.66027330999998 + ], + [ + 138.25198357700003, + -3.567444067999872 + ], + [ + 138.0810696980002, + -3.557899594999924 + ], + [ + 138.06394966000016, + -3.655190523999977 + ], + [ + 138.2351835610001, + -3.66027330999998 + ] + ] + ], + [ + [ + [ + 137.88165265400005, + -3.510252330999947 + ], + [ + 137.7929836850002, + -3.489609714999915 + ], + [ + 137.77740457700008, + -3.569065965999869 + ], + [ + 137.82797259900008, + -3.613532632999977 + ], + [ + 137.9598846440001, + -3.548005427999897 + ], + [ + 137.88165265400005, + -3.510252330999947 + ] + ] + ], + [ + [ + [ + 136.16136157300014, + -3.437648787999876 + ], + [ + 136.25567659200033, + -3.503105751999954 + ], + [ + 136.42147868400002, + -3.520306590999951 + ], + [ + 136.44157362600004, + -3.436695597999972 + ], + [ + 136.35034163900002, + -3.447612020999941 + ], + [ + 136.16136157300014, + -3.437648787999876 + ] + ] + ], + [ + [ + [ + 116.52615746989142, + 6.110112711932246 + ], + [ + 116.50222420708155, + 5.979355221366447 + ], + [ + 116.60679535517164, + 5.97137055228427 + ], + [ + 116.6713111712487, + 5.993662721282647 + ], + [ + 116.69772936657432, + 6.126017054222416 + ], + [ + 116.74895487506751, + 6.166792257656752 + ], + [ + 116.66213107688782, + 6.255571854457685 + ], + [ + 116.61110274034303, + 6.197002377301743 + ], + [ + 116.53529310471669, + 6.182704707362376 + ], + [ + 116.52615746989142, + 6.110112711932246 + ] + ] + ], + [ + [ + [ + 94.42778063200012, + 28.327189691000058 + ], + [ + 94.4729916120001, + 28.391246877000015 + ], + [ + 94.26210058100014, + 28.436124928000027 + ], + [ + 94.3935165850001, + 28.287283115000037 + ], + [ + 94.42778063200012, + 28.327189691000058 + ] + ] + ], + [ + [ + [ + 93.6730725600001, + 28.40099637200018 + ], + [ + 93.72496760500019, + 28.44316472100013 + ], + [ + 93.73188066400013, + 28.53173109500017 + ], + [ + 93.62799854100007, + 28.529572420000136 + ], + [ + 93.59152251000012, + 28.46103410000012 + ], + [ + 93.6730725600001, + 28.40099637200018 + ] + ] + ], + [ + [ + [ + 97.30679355200004, + 28.665680781000162 + ], + [ + 97.40140562500011, + 28.712407041000063 + ], + [ + 97.39860556700012, + 28.839344930000152 + ], + [ + 97.33543350900015, + 28.97326662100005 + ], + [ + 97.19998966500015, + 29.07981821200019 + ], + [ + 97.15896561300008, + 29.034781072999976 + ], + [ + 96.97458654200011, + 29.06043422300013 + ], + [ + 96.89165465100007, + 28.99900157800016 + ], + [ + 96.6797026390002, + 28.946726665000085 + ], + [ + 96.74639157500013, + 28.888016966000123 + ], + [ + 96.79033655200004, + 28.773088500000085 + ], + [ + 96.8695525780002, + 28.7108050920001 + ], + [ + 96.94152060500005, + 28.70343320799998 + ], + [ + 96.9672396360001, + 28.636573952000163 + ], + [ + 97.03220357700008, + 28.622661669000024 + ], + [ + 96.96898659300012, + 28.79952150200012 + ], + [ + 96.95175155600003, + 28.940561943000148 + ], + [ + 97.01551051400008, + 29.015668657000106 + ], + [ + 97.09724463100008, + 28.997286473000088 + ], + [ + 97.01923358800008, + 28.868490819000044 + ], + [ + 97.1350785300001, + 28.63299202900015 + ], + [ + 97.13906865200005, + 28.75156628700006 + ], + [ + 97.20760361800012, + 28.77751733000008 + ], + [ + 97.18788955000002, + 28.871032715000183 + ], + [ + 97.23410753100006, + 28.926923413000054 + ], + [ + 97.29035161100006, + 28.802609228000165 + ], + [ + 97.26187862100016, + 28.705561206000027 + ], + [ + 97.30679355200004, + 28.665680781000162 + ] + ] + ], + [ + [ + [ + 95.33473960400005, + 28.664057877000175 + ], + [ + 95.40284759700012, + 28.696564574000092 + ], + [ + 95.39913156400007, + 28.799408347000053 + ], + [ + 95.32691962400014, + 29.02398853400007 + ], + [ + 95.25343363400003, + 28.972654406000117 + ], + [ + 95.31611652400017, + 28.913926769000113 + ], + [ + 95.36740153400012, + 28.78419116900011 + ], + [ + 95.25659159999998, + 28.682194974000083 + ], + [ + 95.19422152300007, + 28.72107342600009 + ], + [ + 95.13498661400018, + 28.666746624000154 + ], + [ + 95.33473960400005, + 28.664057877000175 + ] + ] + ], + [ + [ + [ + 96.090728598, + 29.43344366700012 + ], + [ + 96.08100156700016, + 29.51123359500008 + ], + [ + 96.01154358500003, + 29.519569231000162 + ], + [ + 95.98460364500016, + 29.587578484000062 + ], + [ + 95.7954026330001, + 29.658281010999985 + ], + [ + 95.69768556700006, + 29.76245700300018 + ], + [ + 95.57226564100006, + 29.78039830000006 + ], + [ + 95.45193453600001, + 29.730057092000152 + ], + [ + 95.40607462900016, + 29.61755854000012 + ], + [ + 95.57699554900006, + 29.48665835800017 + ], + [ + 95.67212663000015, + 29.492628117000038 + ], + [ + 95.83386953299998, + 29.4641333350001 + ], + [ + 95.8904576060001, + 29.427670715000147 + ], + [ + 95.7437136150001, + 29.308290452999984 + ], + [ + 95.68171653300004, + 29.122367602 + ], + [ + 95.81757360500012, + 29.185815257000115 + ], + [ + 95.88288858000016, + 29.267451976000075 + ], + [ + 95.97174865600016, + 29.17330677500007 + ], + [ + 95.9142605340001, + 29.08922907800013 + ], + [ + 96.09942666600011, + 29.10983799800016 + ], + [ + 95.96788761600004, + 29.001942453000026 + ], + [ + 95.93586757200018, + 28.838209015000075 + ], + [ + 95.85788754200013, + 28.79968142900009 + ], + [ + 95.86624161700007, + 28.729633194000087 + ], + [ + 95.99607059200014, + 28.812339779000126 + ], + [ + 96.12519867200012, + 29.02780146200007 + ], + [ + 96.20182066600006, + 28.8782483600001 + ], + [ + 96.074928543, + 28.77908122600013 + ], + [ + 96.15667758000006, + 28.75536211600013 + ], + [ + 96.35867356700015, + 28.924096365000082 + ], + [ + 96.4489825390001, + 28.917445660000055 + ], + [ + 96.52068351800006, + 28.833138969000117 + ], + [ + 96.50916259200005, + 28.776481327000056 + ], + [ + 96.3915326400001, + 28.730043068999976 + ], + [ + 96.44158165400017, + 28.623108424000122 + ], + [ + 96.31674963500006, + 28.564970873000107 + ], + [ + 96.03759755800007, + 28.51409992900011 + ], + [ + 96.15809663600004, + 28.45024441200019 + ], + [ + 96.21534754900006, + 28.53096431800003 + ], + [ + 96.3179626640001, + 28.463402994000035 + ], + [ + 96.2727666040002, + 28.42014583499997 + ], + [ + 96.40131365000008, + 28.323559656000157 + ], + [ + 96.45279664100019, + 28.21480513299997 + ], + [ + 96.59307064000006, + 28.35729933100015 + ], + [ + 96.67495764300014, + 28.34707860600014 + ], + [ + 96.62671660500013, + 28.190945207000027 + ], + [ + 96.73055262800011, + 28.169015969000156 + ], + [ + 96.7262265600001, + 28.096110175000092 + ], + [ + 96.80811356300018, + 28.063311285 + ], + [ + 96.837898656, + 27.99579337900019 + ], + [ + 96.91649660000019, + 28.01493362200017 + ], + [ + 96.90561655500011, + 28.110349520000057 + ], + [ + 96.83824164400016, + 28.139548383000033 + ], + [ + 96.79386851900017, + 28.346258688000148 + ], + [ + 96.78728453400015, + 28.535297092000064 + ], + [ + 96.67021164200014, + 28.652365457000144 + ], + [ + 96.6442716630001, + 28.715337690000183 + ], + [ + 96.65978958400007, + 28.805283223000174 + ], + [ + 96.59169751700006, + 28.920509581000147 + ], + [ + 96.57598865700004, + 29.072400563000087 + ], + [ + 96.49916851400019, + 29.10033258500016 + ], + [ + 96.34098859000017, + 29.06667270600019 + ], + [ + 96.26901251700014, + 29.164320034000184 + ], + [ + 96.42340851400019, + 29.202278488000104 + ], + [ + 96.49740563200015, + 29.141084895000176 + ], + [ + 96.59703058600019, + 29.118316629000105 + ], + [ + 96.6185985640002, + 29.184802052000066 + ], + [ + 96.589424512, + 29.283425202000103 + ], + [ + 96.52552054700016, + 29.343156991000058 + ], + [ + 96.40467060200001, + 29.35148977600005 + ], + [ + 96.22269462300011, + 29.473728937000033 + ], + [ + 96.12962364600014, + 29.49039936900016 + ], + [ + 96.090728598, + 29.43344366700012 + ] + ] + ], + [ + [ + [ + 95.45982358300006, + 28.997702383000046 + ], + [ + 95.37941766300003, + 28.965013799000076 + ], + [ + 95.44454957700015, + 28.893864516000065 + ], + [ + 95.50608867200009, + 28.946215537000057 + ], + [ + 95.45982358300006, + 28.997702383000046 + ] + ] + ], + [ + [ + [ + 94.86239656100014, + 29.14557658900003 + ], + [ + 94.84659566800008, + 29.203701400000057 + ], + [ + 94.88439956000013, + 29.32295777700017 + ], + [ + 94.97959166100009, + 29.406074406000187 + ], + [ + 95.12733460700008, + 29.418350038000142 + ], + [ + 95.12950853700016, + 29.529985925000176 + ], + [ + 95.24974861500004, + 29.57378103299999 + ], + [ + 95.27910656600005, + 29.618560345000105 + ], + [ + 95.25438665700011, + 29.74862149900008 + ], + [ + 95.00138058600004, + 29.715081816000122 + ], + [ + 94.94686854300011, + 29.652239 + ], + [ + 94.91374963200013, + 29.49690322300006 + ], + [ + 94.83813463900015, + 29.38876225500013 + ], + [ + 94.77339952500017, + 29.351753806000033 + ], + [ + 94.66684759800017, + 29.342066170000123 + ], + [ + 94.51358751600009, + 29.27485353200018 + ], + [ + 94.42535356800005, + 29.266315055000064 + ], + [ + 94.27822853600009, + 29.119794693000017 + ], + [ + 94.26058161200012, + 29.06685291700012 + ], + [ + 94.35781051500004, + 29.001623269999982 + ], + [ + 94.34133152600015, + 28.9641838230001 + ], + [ + 94.44467150800006, + 28.861120947000074 + ], + [ + 94.46054850900003, + 28.67343555000008 + ], + [ + 94.5134966560002, + 28.722694654000122 + ], + [ + 94.48815162500006, + 28.82461725600018 + ], + [ + 94.36636357700019, + 29.037351132000083 + ], + [ + 94.38684056700015, + 29.090349906000142 + ], + [ + 94.5997085530002, + 29.062252090000186 + ], + [ + 94.66409263400016, + 29.117730901000186 + ], + [ + 94.63784051300007, + 29.250532769000074 + ], + [ + 94.67302656900011, + 29.293159943999967 + ], + [ + 94.78807053700012, + 29.14595679300004 + ], + [ + 94.86239656100014, + 29.14557658900003 + ] + ] + ], + [ + [ + [ + 93.96086855900012, + 30.799384928000165 + ], + [ + 94.14208966400014, + 30.67948331200006 + ], + [ + 94.25117460200016, + 30.713539823000133 + ], + [ + 94.0731505220001, + 30.777719553000168 + ], + [ + 93.96086855900012, + 30.799384928000165 + ] + ] + ], + [ + [ + [ + 94.11540252300011, + 43.676621980000164 + ], + [ + 94.08066556900013, + 43.72401191900019 + ], + [ + 93.82301357600005, + 43.902047398000036 + ], + [ + 93.67828358900005, + 43.949849057000165 + ], + [ + 93.288192665, + 44.042060721000155 + ], + [ + 93.13623865100016, + 44.03780372000011 + ], + [ + 93.03915358100016, + 44.063285879000034 + ], + [ + 92.90904951200014, + 44.026897858000154 + ], + [ + 92.65975964200015, + 43.8337223150001 + ], + [ + 92.4528126310002, + 43.792706477000195 + ], + [ + 92.23861661600017, + 43.71759875700013 + ], + [ + 92.13777159200009, + 43.6210881830001 + ], + [ + 92.02517664800007, + 43.56952824700011 + ], + [ + 91.87620558600008, + 43.56126234900006 + ], + [ + 91.85829161500016, + 43.52221860600014 + ], + [ + 91.9382705610002, + 43.4233379640001 + ], + [ + 92.17656656000014, + 43.284277329000076 + ], + [ + 92.34088857500006, + 43.252631621000035 + ], + [ + 92.77340651400016, + 43.20038587800008 + ], + [ + 92.94613658400004, + 43.154604928000026 + ], + [ + 93.31204957300008, + 43.16714107000007 + ], + [ + 93.59410866200005, + 43.1627920360001 + ], + [ + 93.88253766200012, + 43.11642033000004 + ], + [ + 93.97388464900007, + 43.04143548900015 + ], + [ + 94.10662851400008, + 43.01116961000014 + ], + [ + 94.25839963500016, + 42.9373820400001 + ], + [ + 94.44954659000018, + 42.89482644700007 + ], + [ + 94.63641357800003, + 42.91378513899997 + ], + [ + 94.93301359200012, + 43.00587476200013 + ], + [ + 95.09619164500003, + 43.029239485000176 + ], + [ + 95.17333264700011, + 43.08806217200009 + ], + [ + 95.1386416260001, + 43.132262965 + ], + [ + 94.88026459900004, + 43.21975964100017 + ], + [ + 94.52103466900013, + 43.31927713900012 + ], + [ + 94.35967263900005, + 43.453908777000095 + ], + [ + 94.16431461600013, + 43.520116592000136 + ], + [ + 94.15906553300005, + 43.61960726800004 + ], + [ + 94.11540252300011, + 43.676621980000164 + ] + ], + [ + [ + 93.3870776650001, + 43.63754403800016 + ], + [ + 93.46691160500018, + 43.67781204200003 + ], + [ + 93.6625826080001, + 43.6466840010001 + ], + [ + 93.64308160800005, + 43.56688845000008 + ], + [ + 93.55672453600005, + 43.56958926699997 + ], + [ + 93.3870776650001, + 43.63754403800016 + ] + ], + [ + [ + 92.84503155300007, + 43.50612853700011 + ], + [ + 92.87875362600005, + 43.41419079400015 + ], + [ + 92.45481154800012, + 43.4049670120001 + ], + [ + 92.25545451800014, + 43.37926306800017 + ], + [ + 92.27133151900011, + 43.477735678000045 + ], + [ + 92.44885251700009, + 43.559412463000115 + ], + [ + 92.64057966800016, + 43.53442148300002 + ], + [ + 92.73598466900017, + 43.54284848100008 + ], + [ + 92.84503155300007, + 43.50612853700011 + ] + ], + [ + [ + 93.63896961400019, + 43.32851315800008 + ], + [ + 93.56293452000011, + 43.270522626 + ], + [ + 93.44460266700014, + 43.35400604600011 + ], + [ + 93.24465152800013, + 43.40575591700008 + ], + [ + 93.42746754199999, + 43.45984065000016 + ], + [ + 93.62247453100002, + 43.41633488400009 + ], + [ + 93.63896961400019, + 43.32851315800008 + ] + ], + [ + [ + 94.25318860600004, + 43.13344498100014 + ], + [ + 94.09704565200013, + 43.163009127000066 + ], + [ + 94.09667953000002, + 43.25702541500016 + ], + [ + 94.24192852500016, + 43.29343724100016 + ], + [ + 94.29364755000006, + 43.274642499000095 + ], + [ + 94.25318860600004, + 43.13344498100014 + ] + ] + ], + [ + [ + [ + 90.83295452100009, + 46.31451235600008 + ], + [ + 90.86763766200016, + 46.361585459000025 + ], + [ + 91.11715652700019, + 46.48994273900007 + ], + [ + 91.21002952300017, + 46.646372690000135 + ], + [ + 91.10615561400004, + 46.93584892500007 + ], + [ + 91.02235451900009, + 47.24849156700009 + ], + [ + 91.11788960800016, + 47.23852364000015 + ], + [ + 91.30590055800019, + 47.06521773300017 + ], + [ + 91.47364758600008, + 46.88011580600005 + ], + [ + 91.64641554200006, + 46.72267885400004 + ], + [ + 91.68926953100015, + 46.52350907700003 + ], + [ + 91.8512875290001, + 46.397062535000146 + ], + [ + 91.85466761500015, + 46.25412912500008 + ], + [ + 91.96634658400018, + 46.26629797200019 + ], + [ + 92.1723256520001, + 46.40083556500008 + ], + [ + 92.32334860500009, + 46.393568621999975 + ], + [ + 92.40898164800012, + 46.35699234400005 + ], + [ + 92.53221859100006, + 46.46043290800009 + ], + [ + 92.72018461400017, + 46.41117665400009 + ], + [ + 92.98567955300007, + 46.23148893400008 + ], + [ + 93.35195162300005, + 46.11150064900016 + ], + [ + 93.44093357200006, + 46.15916182700016 + ], + [ + 93.24157754900006, + 46.350458315000026 + ], + [ + 92.83879860200011, + 46.54433307700009 + ], + [ + 92.57355461700018, + 46.656840681 + ], + [ + 92.44080354300007, + 46.73138798700006 + ], + [ + 92.08870661300006, + 46.87332545900017 + ], + [ + 91.96115164800005, + 46.99284821300017 + ], + [ + 91.80226865000014, + 47.181535414999985 + ], + [ + 91.7853546400001, + 47.291808069000126 + ], + [ + 91.83687551700012, + 47.50843416600014 + ], + [ + 91.66533651499998, + 47.66430051700013 + ], + [ + 91.56739766500004, + 47.706052788000136 + ], + [ + 91.4392395380001, + 47.71189262800016 + ], + [ + 91.33013163400011, + 47.52672230500008 + ], + [ + 91.26760062500017, + 47.50776646300005 + ], + [ + 90.95687056600008, + 47.57308965200008 + ], + [ + 90.84216355000007, + 47.55345152300015 + ], + [ + 90.78857452300014, + 47.447895032000076 + ], + [ + 90.82719464400003, + 47.32656430100013 + ], + [ + 90.78301966800018, + 47.300200030000155 + ], + [ + 90.63762650400014, + 47.51057825600009 + ], + [ + 90.40234363200017, + 47.64857237800004 + ], + [ + 90.19307751700018, + 47.66941951300004 + ], + [ + 89.9590455600001, + 47.64188512800007 + ], + [ + 89.6974795540001, + 47.32525119200011 + ], + [ + 89.61473055600004, + 47.09355275700017 + ], + [ + 89.681724594, + 46.97323707400017 + ], + [ + 89.73523751300002, + 46.94079290600013 + ], + [ + 89.90864551100009, + 46.92661676100005 + ], + [ + 90.09457355800015, + 46.73324893700004 + ], + [ + 90.25068650500009, + 46.6999548440001 + ], + [ + 90.31126352500013, + 46.71969892000004 + ], + [ + 90.40748559500008, + 46.63546649300008 + ], + [ + 90.42350760300008, + 46.48460581400013 + ], + [ + 90.5854186470001, + 46.35462345000013 + ], + [ + 90.83295452100009, + 46.31451235600008 + ] + ] + ], + [ + [ + [ + 99.9456636050001, + 48.34969192500017 + ], + [ + 99.89080052800011, + 48.36759114400013 + ], + [ + 99.50637862000019, + 48.379413148000026 + ], + [ + 99.25846857800013, + 48.40281223700015 + ], + [ + 98.99896250900014, + 48.34660570800003 + ], + [ + 98.48536658800003, + 48.286650290000125 + ], + [ + 98.39643057200016, + 48.24434481300011 + ], + [ + 98.1682055980001, + 48.261839186000145 + ], + [ + 97.94947061400012, + 48.254544919000125 + ], + [ + 97.79618857100007, + 48.197049422000134 + ], + [ + 97.68069466300017, + 48.275888094000095 + ], + [ + 97.56237756100006, + 48.310480544000086 + ], + [ + 97.18988762800018, + 48.48638199100009 + ], + [ + 97.11746262000008, + 48.40360616999999 + ], + [ + 97.15884357300007, + 48.28978931300003 + ], + [ + 97.28301258400006, + 48.10353873000008 + ], + [ + 97.32440158400016, + 47.989722711000184 + ], + [ + 97.31404859200006, + 47.79312735100012 + ], + [ + 97.13815251000005, + 47.66896538100008 + ], + [ + 97.08641856500014, + 47.606881127000065 + ], + [ + 97.07607261400005, + 47.503410388000134 + ], + [ + 97.14849862800008, + 47.4413299900001 + ], + [ + 97.36578354199997, + 47.4413299900001 + ], + [ + 97.53392753800006, + 47.397353496000164 + ], + [ + 97.65259567300012, + 47.19843836100006 + ], + [ + 97.79322858600005, + 47.18448031300011 + ], + [ + 98.07170860200011, + 46.99828840400011 + ], + [ + 98.12163557600019, + 46.99036834300017 + ], + [ + 98.34116365500012, + 47.11813503500019 + ], + [ + 98.58773058100007, + 47.048894479000126 + ], + [ + 98.70041655200009, + 47.09191292100019 + ], + [ + 98.98706858800006, + 47.247358668 + ], + [ + 99.15179461100018, + 47.3029890250001 + ], + [ + 99.55771660400012, + 47.335665204 + ], + [ + 99.76645667100007, + 47.22760939600005 + ], + [ + 100.05928063800008, + 47.18055121200018 + ], + [ + 100.15402263100009, + 47.08237968000003 + ], + [ + 100.36406658600015, + 46.92141377900015 + ], + [ + 100.59413960300009, + 46.82341742800014 + ], + [ + 100.70940351200005, + 46.66187552300005 + ], + [ + 100.82682760500006, + 46.61960826700016 + ], + [ + 100.97055059100012, + 46.50439699600008 + ], + [ + 101.11602053200005, + 46.47174294500019 + ], + [ + 101.3139725870002, + 46.35751554200016 + ], + [ + 101.5649415200001, + 46.36376743600016 + ], + [ + 101.45222453600007, + 46.22199777000009 + ], + [ + 101.5757905530001, + 46.10813246499998 + ], + [ + 101.70533756000003, + 46.11787558900005 + ], + [ + 101.94936359600007, + 46.35194543200009 + ], + [ + 102.15676155200009, + 46.427698559000135 + ], + [ + 102.16546666200009, + 46.51209091300012 + ], + [ + 102.06890864600018, + 46.55985904400018 + ], + [ + 101.85889453000004, + 46.58991923100018 + ], + [ + 101.75702657800008, + 46.651820592000036 + ], + [ + 101.63530759700012, + 46.685187775000145 + ], + [ + 101.71631651200005, + 46.8474384540001 + ], + [ + 101.68258656100011, + 46.913986910000176 + ], + [ + 101.69840958200007, + 47.034649603000105 + ], + [ + 101.59601558200012, + 47.12414284800013 + ], + [ + 101.40639463600013, + 47.15514197500005 + ], + [ + 101.27728265000019, + 47.280862980000165 + ], + [ + 101.1397015880001, + 47.324473184 + ], + [ + 100.97490666600004, + 47.30100083700006 + ], + [ + 100.75959066000013, + 47.345195260000025 + ], + [ + 100.684127548, + 47.40074079100003 + ], + [ + 100.57803360800017, + 47.42158859600005 + ], + [ + 100.40745567600015, + 47.40768368900018 + ], + [ + 100.32108251100016, + 47.5213744830001 + ], + [ + 100.5448075760001, + 47.591447026000026 + ], + [ + 100.62601464000016, + 47.657231220000085 + ], + [ + 100.60283666600014, + 47.72767089000007 + ], + [ + 100.48971567400008, + 47.778837212000155 + ], + [ + 100.44429766100018, + 47.92884025400008 + ], + [ + 100.34326957600018, + 47.933268246000125 + ], + [ + 100.21932955900013, + 47.87951912400001 + ], + [ + 100.131706651, + 47.78430741000017 + ], + [ + 100.01200066900014, + 47.77160815600013 + ], + [ + 99.81747463300019, + 47.85346079300018 + ], + [ + 99.69581566700015, + 47.85466979900002 + ], + [ + 99.47044355700007, + 47.768633083000054 + ], + [ + 99.37248257800019, + 47.80271339900008 + ], + [ + 99.36585953400004, + 47.869754040000146 + ], + [ + 99.46097552700007, + 47.93920850100005 + ], + [ + 99.60578162200011, + 47.99845883300003 + ], + [ + 99.55165866700008, + 48.064068516000134 + ], + [ + 99.34977751100013, + 48.107368925 + ], + [ + 98.93630258600018, + 48.132606835000104 + ], + [ + 98.94140666200008, + 48.214944785000114 + ], + [ + 99.1587145430002, + 48.25558695700005 + ], + [ + 99.64369162900005, + 48.23477385300015 + ], + [ + 99.87685354400008, + 48.265177195000035 + ], + [ + 99.9456636050001, + 48.34969192500017 + ] + ] + ], + [ + [ + [ + 91.2216185100001, + 47.872675971000035 + ], + [ + 91.24231762000016, + 48.002013934000104 + ], + [ + 91.13367457600009, + 48.14169801500003 + ], + [ + 91.0457225950002, + 48.06927149800009 + ], + [ + 90.99916062000011, + 48.17791521300012 + ], + [ + 90.88534560600016, + 48.2141287230001 + ], + [ + 90.81809256800005, + 48.04857624400012 + ], + [ + 90.9163896610001, + 47.820940517999986 + ], + [ + 91.03020450700018, + 47.78990015100004 + ], + [ + 91.14919266400011, + 47.81059439900008 + ], + [ + 91.2216185100001, + 47.872675971000035 + ] + ] + ], + [ + [ + [ + 96.35223358400015, + 48.10869695400004 + ], + [ + 96.65316754500003, + 48.03522135800006 + ], + [ + 96.79643254300004, + 48.114738965000186 + ], + [ + 96.79666153600004, + 48.223847875000104 + ], + [ + 96.66944855400004, + 48.30243928100009 + ], + [ + 96.56789358200007, + 48.30281328199999 + ], + [ + 96.4055406440001, + 48.36452001500015 + ], + [ + 96.25442465200013, + 48.317598456000155 + ], + [ + 96.20318557500008, + 48.21935081600009 + ], + [ + 96.35223358400015, + 48.10869695400004 + ] + ] + ], + [ + [ + [ + 90.91608456000012, + 48.49364105400019 + ], + [ + 91.26322158300019, + 48.47824098300009 + ], + [ + 91.28287463200013, + 48.57462800800016 + ], + [ + 91.10787960400006, + 48.65057157200005 + ], + [ + 91.01036856600018, + 48.60747333400013 + ], + [ + 90.81159257000013, + 48.598542081 + ], + [ + 90.79304459100018, + 48.52261025300004 + ], + [ + 90.91608456000012, + 48.49364105400019 + ] + ] + ], + [ + [ + [ + 91.2533036120002, + 49.56438040299997 + ], + [ + 91.33806661400007, + 49.36097910500007 + ], + [ + 91.45838162600012, + 49.326947740000094 + ], + [ + 91.65274052600006, + 49.31062063100018 + ], + [ + 91.7114255830001, + 49.34228980800009 + ], + [ + 91.76047564300012, + 49.48812067400013 + ], + [ + 91.72820263300002, + 49.70527835100006 + ], + [ + 91.59623761400019, + 49.7917514290001 + ], + [ + 91.48608364800015, + 49.93648611000009 + ], + [ + 91.38357565500007, + 49.94737738700019 + ], + [ + 91.25151860200009, + 49.79747325200003 + ], + [ + 91.21960450600005, + 49.699785020000036 + ], + [ + 91.2533036120002, + 49.56438040299997 + ] + ] + ], + [ + [ + [ + 96.99871854400016, + 50.58342989600004 + ], + [ + 96.73206355000008, + 50.75086360900008 + ], + [ + 96.52677950900005, + 50.884654709000074 + ], + [ + 96.37486254300006, + 51.057493409000074 + ], + [ + 96.18943053700013, + 51.030888745000084 + ], + [ + 95.96930667200007, + 51.05075603500006 + ], + [ + 96.02864065600005, + 50.931156335000026 + ], + [ + 95.86789654000017, + 50.9155841000001 + ], + [ + 95.88983952400008, + 50.86480636300007 + ], + [ + 96.03923052000016, + 50.8064133310001 + ], + [ + 96.42283653300018, + 50.40435757500006 + ], + [ + 96.56925966500017, + 50.31948728500015 + ], + [ + 96.7848205890001, + 50.30561708000016 + ], + [ + 96.93717961700008, + 50.36365773600005 + ], + [ + 96.98284959000006, + 50.430667699000026 + ], + [ + 96.99871854400016, + 50.58342989600004 + ] + ] + ], + [ + [ + [ + 100.28694955700007, + 50.096824207000054 + ], + [ + 100.36492958700006, + 50.27021544100012 + ], + [ + 100.34484051200013, + 50.38209809000011 + ], + [ + 100.2504116670001, + 50.41950266900011 + ], + [ + 100.13673361400004, + 50.533922185000165 + ], + [ + 100.15968360000016, + 50.62339648700015 + ], + [ + 100.36930862899999, + 50.898852648 + ], + [ + 100.39771255200014, + 51.04528617300008 + ], + [ + 100.32274665400013, + 51.09060879900005 + ], + [ + 99.99681064900005, + 51.000138225 + ], + [ + 99.6160885130002, + 50.78458501100005 + ], + [ + 99.41026266600011, + 50.643637945000194 + ], + [ + 99.23789251500006, + 50.56019358400005 + ], + [ + 99.09107962500013, + 50.615755544000024 + ], + [ + 98.95211052000002, + 50.89958489100013 + ], + [ + 98.93772164200004, + 50.99459124900005 + ], + [ + 99.01643358000018, + 51.0721345820001 + ], + [ + 99.08856153400006, + 51.214584691000084 + ], + [ + 98.97110760100009, + 51.36261312500005 + ], + [ + 98.71072361100016, + 51.443489606000185 + ], + [ + 98.58155865000003, + 51.384143384000026 + ], + [ + 98.67659753000015, + 51.25773355500013 + ], + [ + 98.48204752200019, + 51.220352782000134 + ], + [ + 98.32829257200018, + 51.29649214600005 + ], + [ + 98.20644367200009, + 51.22568199600016 + ], + [ + 98.1380696380001, + 51.10731812300003 + ], + [ + 98.11161752500004, + 50.97951187000001 + ], + [ + 98.17501857600018, + 50.89346660400008 + ], + [ + 98.33452552300014, + 50.81062540500011 + ], + [ + 98.26576961000012, + 50.66704122400006 + ], + [ + 98.12220755700014, + 50.598448423000036 + ], + [ + 98.30247463400008, + 50.54205833100008 + ], + [ + 98.32613356200005, + 50.482296702000156 + ], + [ + 98.46593465400014, + 50.47948138900017 + ], + [ + 98.62604560100016, + 50.39185630200018 + ], + [ + 98.94231459000008, + 50.328497328000026 + ], + [ + 99.27220953500012, + 50.23206822600014 + ], + [ + 99.71115153200009, + 50.145328939000194 + ], + [ + 99.88001251600014, + 50.12203546300009 + ], + [ + 100.28694955700007, + 50.096824207000054 + ] + ] + ], + [ + [ + [ + 103.06970252200011, + 52.07891481300004 + ], + [ + 102.78924555000009, + 52.062320489000115 + ], + [ + 102.33174166000003, + 51.97818177099998 + ], + [ + 101.65419755700009, + 51.95634238700006 + ], + [ + 101.37300163700019, + 51.96361352000014 + ], + [ + 100.85764367300004, + 51.91045079600008 + ], + [ + 99.7846906630001, + 52.027968767 + ], + [ + 99.4321516710001, + 52.07395155300003 + ], + [ + 99.12559563200006, + 52.13526266000014 + ], + [ + 99.00807967300005, + 52.21190527400017 + ], + [ + 98.8292546180001, + 52.23234052200007 + ], + [ + 98.70663458300004, + 52.18124963600013 + ], + [ + 98.6146626420001, + 52.06373250400014 + ], + [ + 98.26212364900016, + 51.74694970500019 + ], + [ + 98.22125265100016, + 51.61921637400019 + ], + [ + 98.34751160600018, + 51.56211750800003 + ], + [ + 98.67961853600019, + 51.65202716600015 + ], + [ + 98.80814362200005, + 51.667965355000035 + ], + [ + 98.93144259100018, + 51.76350614300014 + ], + [ + 98.93300665400017, + 51.84586353900016 + ], + [ + 99.04000064200005, + 51.89590132100017 + ], + [ + 99.27441364100008, + 51.7985527240001 + ], + [ + 99.4722215270001, + 51.835552457 + ], + [ + 99.58193158700004, + 51.778509247000045 + ], + [ + 99.66207867400004, + 51.69207087000012 + ], + [ + 99.86898763100004, + 51.54969234200013 + ], + [ + 100.07376859000016, + 51.28788879300009 + ], + [ + 100.2296376230002, + 51.23083586000013 + ], + [ + 100.34435251800005, + 51.32686447500015 + ], + [ + 100.44196363600003, + 51.34705983300012 + ], + [ + 101.0664675590001, + 51.280934999000124 + ], + [ + 101.18296059000016, + 51.223663969000086 + ], + [ + 101.24950351400014, + 51.07229853200016 + ], + [ + 101.35460654500014, + 51.085649730000114 + ], + [ + 101.46249354100001, + 51.255372541000156 + ], + [ + 101.55689254600009, + 51.30067622500013 + ], + [ + 101.838828589, + 51.24781139400011 + ], + [ + 101.96659058600011, + 51.25033736400019 + ], + [ + 102.0673826370001, + 51.28967782700016 + ], + [ + 102.04979656600011, + 51.389068591000125 + ], + [ + 101.88349960600016, + 51.586238111000114 + ], + [ + 101.9088895650001, + 51.679321493000145 + ], + [ + 102.16437567300011, + 51.732129494000105 + ], + [ + 102.61028252900007, + 51.69625193100012 + ], + [ + 102.93129751900017, + 51.7623430700001 + ], + [ + 103.139999532, + 51.759679972000015 + ], + [ + 103.45279656800011, + 51.83834849200019 + ], + [ + 103.5115966250001, + 51.90933365600017 + ], + [ + 103.49389656000011, + 52.03144373700013 + ], + [ + 103.4142986550001, + 52.079174820000105 + ], + [ + 103.27449756200008, + 52.09612705100005 + ], + [ + 103.06970252200011, + 52.07891481300004 + ] + ] + ], + [ + [ + [ + 102.14320365600008, + 52.527303215000074 + ], + [ + 101.86669959000011, + 52.53186515000016 + ], + [ + 101.56860357400006, + 52.576715037000156 + ], + [ + 101.24060059100009, + 52.59208560400015 + ], + [ + 101.10079966600006, + 52.65021460500003 + ], + [ + 101.0286026460002, + 52.77280999700008 + ], + [ + 101.00980354600011, + 52.89788173900001 + ], + [ + 101.04340357900008, + 52.97791131300016 + ], + [ + 101.27539856500016, + 53.07625215900015 + ], + [ + 101.18229657600011, + 53.16566728500004 + ], + [ + 101.06539953600009, + 53.22683757599998 + ], + [ + 100.90830255400016, + 53.222618461000025 + ], + [ + 100.76660161900014, + 53.126314417 + ], + [ + 100.76419852800018, + 53.038322371000106 + ], + [ + 100.6855016770001, + 52.98475128100017 + ], + [ + 100.59760267000019, + 53.125547473000154 + ], + [ + 100.51270254000008, + 53.20394509000016 + ], + [ + 100.40119959100008, + 53.168986351 + ], + [ + 100.33779854000011, + 53.07088120300017 + ], + [ + 100.34429954400014, + 53.004801799 + ], + [ + 100.61569953400004, + 52.897900515000174 + ], + [ + 100.6216966180001, + 52.82812804400004 + ], + [ + 100.51909659100005, + 52.778498124000066 + ], + [ + 100.35739861500008, + 52.82860530900018 + ], + [ + 100.14820056100012, + 52.85343971500009 + ], + [ + 100.07080055800009, + 52.79939957400018 + ], + [ + 100.10839859000004, + 52.73294616900006 + ], + [ + 100.7455975760002, + 52.59489337300005 + ], + [ + 101.02410156400009, + 52.29956874900017 + ], + [ + 101.59329967800011, + 52.322778239000115 + ], + [ + 102.16159858100002, + 52.36512512300004 + ], + [ + 102.32199853600014, + 52.422381065000195 + ], + [ + 102.3164976610002, + 52.50231257100006 + ], + [ + 102.14320365600008, + 52.527303215000074 + ] + ] + ], + [ + [ + [ + 97.80387863200013, + 54.05163495400012 + ], + [ + 98.00614166700018, + 54.02767444600005 + ], + [ + 98.04064962700005, + 54.11945829700011 + ], + [ + 97.82156361000006, + 54.27517008600012 + ], + [ + 97.23001867100015, + 54.264641745000176 + ], + [ + 96.92402656700017, + 54.32214227200012 + ], + [ + 96.77388757000011, + 54.381713799000124 + ], + [ + 96.34008066200016, + 54.37656362200005 + ], + [ + 96.18715652700007, + 54.4170534110001 + ], + [ + 96.05796860000015, + 54.54947675300008 + ], + [ + 95.70793160600005, + 54.43028391000007 + ], + [ + 95.54546366800014, + 54.43666605900012 + ], + [ + 95.45677156500011, + 54.48166112100017 + ], + [ + 95.2835695940002, + 54.483625336000046 + ], + [ + 95.17986265300004, + 54.44362421200003 + ], + [ + 95.22048152300016, + 54.32414822900006 + ], + [ + 95.29042850500008, + 54.2785501730001 + ], + [ + 95.60109754400008, + 54.19998843800016 + ], + [ + 95.82576758600015, + 54.12567666400008 + ], + [ + 96.33589155500005, + 54.083408570000074 + ], + [ + 96.76719663199998, + 54.029936386000145 + ], + [ + 96.91108658500008, + 53.95562478000011 + ], + [ + 96.90738664500003, + 53.85297228200005 + ], + [ + 96.477363663, + 53.804349197000136 + ], + [ + 96.24675755800007, + 53.72220922800011 + ], + [ + 96.11196163500011, + 53.64926672100006 + ], + [ + 95.78836066100013, + 53.66646806300008 + ], + [ + 95.0963975050002, + 53.78802979900007 + ], + [ + 94.947776638, + 53.72415852300003 + ], + [ + 95.12999753700012, + 53.488375251000036 + ], + [ + 95.11987253300009, + 53.36334139600012 + ], + [ + 95.43067953800016, + 53.41754163200005 + ], + [ + 95.8430175430002, + 53.42592286400003 + ], + [ + 96.06123351900004, + 53.36936161400013 + ], + [ + 96.27001164000012, + 53.33780894500006 + ], + [ + 96.43242660400011, + 53.56148489300017 + ], + [ + 96.63887053300016, + 53.64639860199998 + ], + [ + 96.83039852900004, + 53.657407896000166 + ], + [ + 96.96070057800011, + 53.601074466000114 + ], + [ + 97.0487135790001, + 53.39728525400005 + ], + [ + 97.19389350700004, + 53.3519312790001 + ], + [ + 97.36425753300011, + 53.401981131000184 + ], + [ + 97.47598260300015, + 53.49134211000012 + ], + [ + 97.68791164900011, + 53.706205828000066 + ], + [ + 97.90615059100008, + 53.70091869100003 + ], + [ + 98.37867753400013, + 53.57924698400012 + ], + [ + 98.92382863800015, + 53.396861968 + ], + [ + 99.04067253600005, + 53.26476719700008 + ], + [ + 99.0440365290001, + 53.12183512800004 + ], + [ + 98.66658752600006, + 52.76646992600013 + ], + [ + 98.58139755000019, + 52.63067521500017 + ], + [ + 98.58011662800004, + 52.535344310000085 + ], + [ + 98.63001258900016, + 52.47677207300012 + ], + [ + 98.96434759600004, + 52.388769466000156 + ], + [ + 99.19529752700004, + 52.50551294900015 + ], + [ + 99.1990506080001, + 52.622844171000054 + ], + [ + 99.42186757800016, + 52.67310709100019 + ], + [ + 99.46970360300014, + 52.71315884200004 + ], + [ + 99.30589254800003, + 52.85702884600016 + ], + [ + 99.29116051500012, + 52.99273169100019 + ], + [ + 99.3861765960001, + 53.058223859000066 + ], + [ + 99.55867767300015, + 53.07914425100017 + ], + [ + 99.69532767300012, + 53.13676648300009 + ], + [ + 99.68533359400016, + 53.235786599000164 + ], + [ + 99.5857775390001, + 53.32818048500013 + ], + [ + 99.24783362000005, + 53.396029980000094 + ], + [ + 99.14907853900013, + 53.56125556400008 + ], + [ + 99.0097426420001, + 53.60921580800016 + ], + [ + 98.81957251400013, + 53.62039307599997 + ], + [ + 98.61926263000004, + 53.65686575500018 + ], + [ + 98.42646762500004, + 53.714969107000115 + ], + [ + 98.27352857000011, + 53.791241744 + ], + [ + 97.85578155600012, + 53.90195444800008 + ], + [ + 97.65940060500009, + 53.940342391000115 + ], + [ + 97.52596255000003, + 54.01580718000014 + ], + [ + 97.58586851500019, + 54.06409817399998 + ], + [ + 97.80387863200013, + 54.05163495400012 + ] + ] + ] + ] + }, + "properties": { + "biome_name": "Montane Grasslands & Shrublands", + "biome_num": 10, + "color_bio": "#D6C39D", + "area_km2": 4883304.421141479, + "percentage": 6.399741895593332 + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + -176.26278349099996, + -85.55021415699991 + ], + [ + -177.16740947199995, + -85.46738784599995 + ], + [ + -177.41731333199994, + -85.61716212099992 + ], + [ + -176.41641864399992, + -85.61770711299988 + ], + [ + -176.26278349099996, + -85.55021415699991 + ] + ] + ], + [ + [ + [ + -177.53361881799995, + -85.29684404499994 + ], + [ + -176.75043343199997, + -85.22657718099987 + ], + [ + -176.65888959699996, + -85.16433364699998 + ], + [ + -178.3251820959999, + -85.19041914499996 + ], + [ + -177.53361881799995, + -85.29684404499994 + ] + ] + ], + [ + [ + [ + -178.0436156549999, + 51.91812595000005 + ], + [ + -178.2278337909999, + 51.873525937000124 + ], + [ + -177.95029744899995, + 51.765680530000054 + ], + [ + -177.95071559299998, + 51.6392169130001 + ], + [ + -177.71990659499994, + 51.8157987300001 + ], + [ + -177.92433384399993, + 51.857516882000084 + ], + [ + -178.0436156549999, + 51.91812595000005 + ] + ] + ], + [ + [ + [ + -176.56379774899997, + 51.94682611300016 + ], + [ + -176.77404317299997, + 51.965889721999986 + ], + [ + -176.79209766099999, + 51.78554429300016 + ], + [ + -176.86581579999998, + 51.68219884600012 + ], + [ + -176.581897668, + 51.69004433100008 + ], + [ + -176.53047951299993, + 51.74628069200003 + ], + [ + -176.42421589499997, + 51.74491706800018 + ], + [ + -176.4264886489999, + 51.83627160000009 + ], + [ + -176.62650680399997, + 51.86418975400011 + ], + [ + -176.56379774899997, + 51.94682611300016 + ] + ] + ], + [ + [ + [ + -177.04510673999994, + 51.89860788400017 + ], + [ + -177.19977944899995, + 51.92481695300006 + ], + [ + -177.20568850699993, + 51.820635150000044 + ], + [ + -177.45758844299996, + 51.75405331400009 + ], + [ + -177.27513390799996, + 51.68050789100005 + ], + [ + -177.14867030199994, + 51.70704426500015 + ], + [ + -177.13699760799994, + 51.81448970400015 + ], + [ + -177.04510673999994, + 51.89860788400017 + ] + ] + ], + [ + [ + [ + -176.08442515299996, + 52.10778978000002 + ], + [ + -176.21187057199995, + 52.06553522600012 + ], + [ + -176.15885237799992, + 51.996526151000126 + ], + [ + -176.02185240099996, + 51.984844350000174 + ], + [ + -175.98157969299996, + 52.02856253100015 + ], + [ + -176.08442515299996, + 52.10778978000002 + ] + ] + ], + [ + [ + [ + -173.51702557899995, + 52.11308098800015 + ], + [ + -173.62478920999993, + 52.15220824200014 + ], + [ + -173.89008007399994, + 52.14154457700005 + ], + [ + -173.9301709499999, + 52.056371856000055 + ], + [ + -173.45135284099996, + 52.0485082780001 + ], + [ + -173.51702557899995, + 52.11308098800015 + ] + ] + ], + [ + [ + [ + -174.06411648699992, + 52.387762702000146 + ], + [ + -174.18536193099993, + 52.41778995700014 + ], + [ + -174.33093461899998, + 52.37018994700003 + ], + [ + -174.44897091699994, + 52.21954450000004 + ], + [ + -174.56499815599994, + 52.17227176500012 + ], + [ + -174.609798128, + 52.110880859000076 + ], + [ + -174.77139809399992, + 52.08454448100008 + ], + [ + -174.92006171399993, + 52.109271733000185 + ], + [ + -174.9878071409999, + 52.05961718700007 + ], + [ + -174.78320716599993, + 52.03228994200009 + ], + [ + -174.4442344999999, + 52.04844452500009 + ], + [ + -174.32726181699994, + 52.12261725500019 + ], + [ + -174.21845273299996, + 52.09430818100003 + ], + [ + -174.09018913099996, + 52.13911728000005 + ], + [ + -173.9852164769999, + 52.31759908700019 + ], + [ + -174.06411648699992, + 52.387762702000146 + ] + ] + ], + [ + [ + [ + -172.40650765199993, + 52.37853562800018 + ], + [ + -172.57722579999998, + 52.35019924900013 + ], + [ + -172.608953035, + 52.253017440000065 + ], + [ + -172.41141671199995, + 52.280844733000094 + ], + [ + -172.30256219799995, + 52.330644738000046 + ], + [ + -172.40650765199993, + 52.37853562800018 + ] + ] + ], + [ + [ + [ + -170.56506256499995, + 52.67518126700003 + ], + [ + -170.633771653, + 52.69747216600007 + ], + [ + -170.81796251499992, + 52.63627215100013 + ], + [ + -170.78325339899993, + 52.54207216700013 + ], + [ + -170.56506256499995, + 52.67518126700003 + ] + ] + ], + [ + [ + [ + -169.74526274999994, + 52.888117706000116 + ], + [ + -169.8870354459999, + 52.85011769300007 + ], + [ + -169.73909907699993, + 52.77842681200019 + ], + [ + -169.67358091799994, + 52.82039045200003 + ], + [ + -169.74526274999994, + 52.888117706000116 + ] + ] + ], + [ + [ + [ + -167.94601775599997, + 53.529726947000086 + ], + [ + -168.0145632159999, + 53.56460875200008 + ], + [ + -168.23388135699992, + 53.528336000000195 + ], + [ + -168.40822674999995, + 53.4195269010001 + ], + [ + -168.38387215199995, + 53.26126328600003 + ], + [ + -168.55571758099993, + 53.254445084000054 + ], + [ + -168.7664629829999, + 53.18024506600017 + ], + [ + -168.75970840299996, + 53.08146326000008 + ], + [ + -168.85731745699997, + 53.013681438000106 + ], + [ + -168.86289015899993, + 52.94099053700012 + ], + [ + -168.64761747199998, + 52.977163288000156 + ], + [ + -168.4559357059999, + 53.05740875600003 + ], + [ + -168.27076306799992, + 53.24280875700009 + ], + [ + -168.12438127999997, + 53.27457240800004 + ], + [ + -167.8423449919999, + 53.38649061300015 + ], + [ + -167.78411776799993, + 53.50104515300012 + ], + [ + -167.94601775599997, + 53.529726947000086 + ] + ] + ], + [ + [ + [ + -166.59517262799991, + 53.95808161700006 + ], + [ + -166.63695446199998, + 54.01199978700015 + ], + [ + -166.89076351399996, + 53.98970884800008 + ], + [ + -167.070454377, + 53.92796337600004 + ], + [ + -167.14930887599996, + 53.82874519600011 + ], + [ + -166.78723615799993, + 53.73455434500005 + ], + [ + -167.02239975799995, + 53.71546340800006 + ], + [ + -167.09139971899992, + 53.633436135000125 + ], + [ + -167.17669964799992, + 53.461917962000086 + ], + [ + -167.26791782399997, + 53.47811794800003 + ], + [ + -167.5122904909999, + 53.39301792800012 + ], + [ + -167.70765409999996, + 53.38283608500012 + ], + [ + -167.81392678999995, + 53.32212698800009 + ], + [ + -167.622190424, + 53.250363384000195 + ], + [ + -167.13415418499991, + 53.426445245000195 + ], + [ + -166.93199968099992, + 53.473436174000085 + ], + [ + -166.83870877299998, + 53.447490735000144 + ], + [ + -166.6740724459999, + 53.48732711600013 + ], + [ + -166.56271794199992, + 53.568990757000165 + ], + [ + -166.55549068899992, + 53.62097257000016 + ], + [ + -166.27491801899993, + 53.68725441700013 + ], + [ + -166.37923624799993, + 53.84656347600003 + ], + [ + -166.23652718699992, + 53.88134531000003 + ], + [ + -166.264536309, + 53.97755438600018 + ], + [ + -166.44295444499994, + 53.90459982500005 + ], + [ + -166.57786350999993, + 53.8805907200001 + ], + [ + -166.59517262799991, + 53.95808161700006 + ] + ] + ], + [ + [ + [ + -166.08739082499997, + 53.840936242 + ], + [ + -166.30843623299998, + 53.78733622000016 + ], + [ + -166.23833621599996, + 53.71149987400008 + ], + [ + -166.13044533799993, + 53.7691544270001 + ], + [ + -166.08739082499997, + 53.840936242 + ] + ] + ], + [ + [ + [ + -165.86525085199992, + 54.21184042400006 + ], + [ + -166.00248188499998, + 54.213627121 + ], + [ + -166.11226365599995, + 54.12252711600007 + ], + [ + -166.04798181599995, + 54.04477258800006 + ], + [ + -165.71589096199992, + 54.090363535999984 + ], + [ + -165.72978189099996, + 54.14721807300009 + ], + [ + -165.86525085199992, + 54.21184042400006 + ] + ] + ], + [ + [ + [ + -165.55760013499997, + 54.254136266000046 + ], + [ + -165.68413648299997, + 54.24990897700013 + ], + [ + -165.54923644399994, + 54.112199920000194 + ], + [ + -165.48133647899994, + 54.179963556000075 + ], + [ + -165.55760013499997, + 54.254136266000046 + ] + ] + ], + [ + [ + [ + -163.66601883799993, + 55.04524552700019 + ], + [ + -163.89470972199996, + 55.03911822300017 + ], + [ + -164.03072786199996, + 54.96981821300017 + ], + [ + -164.14675511699994, + 54.95820910700013 + ], + [ + -164.34355506899993, + 54.894136360000175 + ], + [ + -164.43530052999998, + 54.933127251000144 + ], + [ + -164.55161866699999, + 54.85517269900009 + ], + [ + -164.72075797699995, + 54.65497124700005 + ], + [ + -164.56519892699998, + 54.67080530800001 + ], + [ + -163.95443027399998, + 54.90221363100011 + ], + [ + -163.76107154699997, + 54.88956728100004 + ], + [ + -163.4249007139999, + 54.948170226 + ], + [ + -163.53375522099998, + 55.05361827200011 + ], + [ + -163.66601883799993, + 55.04524552700019 + ] + ] + ], + [ + [ + [ + -161.19747403499997, + 56.00161850400008 + ], + [ + -161.80785575099992, + 55.891954791000046 + ], + [ + -162.24699197899992, + 55.68000929600004 + ], + [ + -162.48371005799993, + 55.49523655400009 + ], + [ + -162.484710012, + 55.390345656000136 + ], + [ + -162.64992816599997, + 55.36415472600004 + ], + [ + -162.80110994499998, + 55.30594561900011 + ], + [ + -162.86757352299995, + 55.182336532000136 + ], + [ + -163.14900985699992, + 55.17882740300013 + ], + [ + -163.16847346999998, + 55.12906376900008 + ], + [ + -163.00418328899997, + 55.08164129000005 + ], + [ + -162.6064794259999, + 55.158291136000116 + ], + [ + -162.71806446099998, + 55.21980018600016 + ], + [ + -162.66198268199994, + 55.29430018600016 + ], + [ + -162.5131372239999, + 55.25237293800012 + ], + [ + -162.37283456999995, + 55.302264364999985 + ], + [ + -162.24364517399994, + 55.442376354000146 + ], + [ + -161.90688574499998, + 55.55181184899999 + ], + [ + -161.86189258999994, + 55.72363019000005 + ], + [ + -161.77357683699998, + 55.73709189099998 + ], + [ + -161.50260157399995, + 55.693890783000086 + ], + [ + -161.3955244269999, + 55.74263349100005 + ], + [ + -160.9557353339999, + 55.843083249000074 + ], + [ + -161.0171376479999, + 55.91101853700013 + ], + [ + -160.86647404399997, + 55.953673101000106 + ], + [ + -160.898701333, + 55.999018547 + ], + [ + -161.07640129299995, + 55.94208216200008 + ], + [ + -161.19747403499997, + 56.00161850400008 + ] + ] + ], + [ + [ + [ + -170.135018981, + 57.232644384000025 + ], + [ + -170.42048255399993, + 57.190144350000025 + ], + [ + -170.26180073799995, + 57.139489833000084 + ], + [ + -170.135018981, + 57.232644384000025 + ] + ] + ], + [ + [ + [ + -166.13371218299994, + 60.39784459300006 + ], + [ + -166.387203032, + 60.35967183200012 + ], + [ + -166.48373939899997, + 60.38662636000009 + ], + [ + -166.759139314, + 60.31074450799997 + ], + [ + -166.81194834699997, + 60.229389963000074 + ], + [ + -166.9379937719999, + 60.20587176600009 + ], + [ + -167.31893009999996, + 60.23778079600004 + ], + [ + -167.4170936929999, + 60.19173533200018 + ], + [ + -167.27357545499993, + 60.06555354900013 + ], + [ + -167.10492997999995, + 59.989171766000084 + ], + [ + -166.86042999799997, + 59.959626351000054 + ], + [ + -166.56383906399995, + 59.84732640700008 + ], + [ + -166.38862999899993, + 59.85259916100006 + ], + [ + -166.03696635399996, + 59.757853769 + ], + [ + -165.7968482789999, + 59.881026519000045 + ], + [ + -165.53479377699998, + 59.89677201100005 + ], + [ + -165.71322112799993, + 60.06705378200019 + ], + [ + -165.66590297199997, + 60.09947197000014 + ], + [ + -165.677539437, + 60.26927194900003 + ], + [ + -165.88347582, + 60.343899183000076 + ], + [ + -166.08518487099997, + 60.32529006200019 + ], + [ + -166.13371218299994, + 60.39784459300006 + ] + ] + ], + [ + [ + [ + -172.37331911999996, + 60.385214481000105 + ], + [ + -172.522444487, + 60.385219248000055 + ], + [ + -172.75183340899997, + 60.445167235000156 + ], + [ + -172.72074439399998, + 60.36008226400014 + ], + [ + -172.5914675729999, + 60.319910750000076 + ], + [ + -172.37331911999996, + 60.385214481000105 + ] + ] + ], + [ + [ + [ + -161.7048597429999, + 63.17171130800011 + ], + [ + -161.60280065699993, + 63.21437129300011 + ], + [ + -161.40124335599998, + 63.14021643800015 + ], + [ + -161.23048034299995, + 63.15634619700006 + ], + [ + -161.1914676439999, + 63.30403176700008 + ], + [ + -160.97570051499991, + 63.2810947120002 + ], + [ + -160.73264868899994, + 63.5058155120002 + ], + [ + -160.77650366799998, + 63.5898239230001 + ], + [ + -160.95994575199995, + 63.62475264800008 + ], + [ + -161.14282410999994, + 63.5027723340001 + ], + [ + -161.52147857299997, + 63.45327227700011 + ], + [ + -162.02557850899998, + 63.44753583200003 + ], + [ + -162.29274205499996, + 63.37339943200004 + ], + [ + -162.437087496, + 63.377835771000036 + ], + [ + -162.6679418919999, + 63.227126657000156 + ], + [ + -163.0405235359999, + 63.06215388600003 + ], + [ + -163.3636143809999, + 63.034590201000185 + ], + [ + -163.41770532299998, + 63.083872006000036 + ], + [ + -163.616296253, + 63.14121742100008 + ], + [ + -163.72583265699993, + 63.21061739700019 + ], + [ + -164.0365872019999, + 63.26119916000016 + ], + [ + -164.4189962039999, + 63.21396274000017 + ], + [ + -164.54540522899995, + 63.153280908 + ], + [ + -164.44348696799992, + 63.03614457200007 + ], + [ + -164.7073778239999, + 63.01080817000019 + ], + [ + -164.78823230499998, + 62.941571801000066 + ], + [ + -164.844468559, + 62.80848089500006 + ], + [ + -164.49759584899996, + 62.769453683000165 + ], + [ + -164.53494125099996, + 62.70686277500016 + ], + [ + -164.72329569199997, + 62.60194457400013 + ], + [ + -165.04606832899992, + 62.54041725600001 + ], + [ + -165.26929548799995, + 62.4273535960001 + ], + [ + -165.67563158399997, + 62.13558992800017 + ], + [ + -165.75683147899994, + 62.00633538300008 + ], + [ + -165.60012230999993, + 61.85959906 + ], + [ + -166.09210401599995, + 61.80073535400004 + ], + [ + -165.90380394899992, + 61.66363539800011 + ], + [ + -166.13495843999996, + 61.63308991100007 + ], + [ + -166.07774019699994, + 61.53008993100008 + ], + [ + -165.89199478199998, + 61.550026322 + ], + [ + -165.75434021999996, + 61.498708167000075 + ], + [ + -165.87176743099997, + 61.43018997399997 + ], + [ + -165.859012813, + 61.31886271500014 + ], + [ + -165.649276461, + 61.29548093200003 + ], + [ + -165.57814906899995, + 61.10036278300004 + ], + [ + -165.4030308879999, + 61.067062814 + ], + [ + -165.30799461399997, + 61.18182645200005 + ], + [ + -165.07673092999997, + 61.06490831800011 + ], + [ + -165.19498540599994, + 60.97991740000015 + ], + [ + -165.14185810399994, + 60.92337196000011 + ], + [ + -164.96068537399995, + 60.88759926400007 + ], + [ + -164.86642171399998, + 60.83211746600011 + ], + [ + -165.03209437599995, + 60.760026540000126 + ], + [ + -164.97127617099997, + 60.7114356460001 + ], + [ + -165.28327604399996, + 60.5763265220001 + ], + [ + -165.19047600699994, + 60.497999271000026 + ], + [ + -165.05745787199993, + 60.54462655900011 + ], + [ + -164.99797602099994, + 60.48033566600003 + ], + [ + -165.06917595699994, + 60.393472028000076 + ], + [ + -164.85037593099992, + 60.30361752600004 + ], + [ + -164.66666685699997, + 60.29595391700019 + ], + [ + -164.38638493899992, + 60.07730852900016 + ], + [ + -164.09243036799998, + 59.97538131100009 + ], + [ + -164.17683942299993, + 59.93399039500002 + ], + [ + -164.086248457, + 59.82165405600017 + ], + [ + -163.90427573199992, + 59.789117724000164 + ], + [ + -163.46764851099996, + 59.790190518000145 + ], + [ + -163.12700311899994, + 59.82878147400015 + ], + [ + -162.88417592, + 59.90681786700014 + ], + [ + -162.51700327799995, + 59.98103609700007 + ], + [ + -162.46193970199997, + 60.069736097000145 + ], + [ + -162.45675796399996, + 60.197545176 + ], + [ + -162.56736706499998, + 60.23613606400005 + ], + [ + -162.53883076899993, + 60.33798151299999 + ], + [ + -162.3372670679999, + 60.19727246700012 + ], + [ + -162.19220342199995, + 60.15974522000005 + ], + [ + -162.2108306119999, + 60.02677250300019 + ], + [ + -161.94730322399997, + 59.792518021000035 + ], + [ + -161.8707758779999, + 59.65728168300018 + ], + [ + -161.7040667109999, + 59.50153627000003 + ], + [ + -161.9428302499999, + 59.37396351900003 + ], + [ + -161.93819381799997, + 59.25745444000006 + ], + [ + -162.02179378399993, + 59.2149998860001 + ], + [ + -161.91343008599995, + 59.08663627800007 + ], + [ + -161.62456650599998, + 59.13448177300012 + ], + [ + -161.60087556099998, + 59.06847269100007 + ], + [ + -161.793302766, + 58.981727216000195 + ], + [ + -161.75308449099998, + 58.80949996500004 + ], + [ + -161.69242083299991, + 58.76098179800016 + ], + [ + -161.97522985199996, + 58.680245401000036 + ], + [ + -161.75060254199997, + 58.57558180800015 + ], + [ + -161.36000262699991, + 58.65920004000003 + ], + [ + -161.34222993899994, + 58.72907276300009 + ], + [ + -160.98399368, + 58.85349098700016 + ], + [ + -160.750039186, + 58.904318291000095 + ], + [ + -160.5329301699999, + 59.005200132000084 + ], + [ + -160.33483930799997, + 59.05355470200004 + ], + [ + -160.31226653199997, + 58.96493653300013 + ], + [ + -160.16252103599996, + 58.86750020100004 + ], + [ + -160.0084028759999, + 58.88070931500016 + ], + [ + -159.89872100599993, + 58.77633661300007 + ], + [ + -159.80736648299998, + 58.80002753400015 + ], + [ + -159.71705747299995, + 58.930745717000036 + ], + [ + -159.63169380099998, + 58.85634573700008 + ], + [ + -159.385348317, + 58.76459123799998 + ], + [ + -159.04796633599997, + 58.42700950300008 + ], + [ + -158.88641178599997, + 58.39450043900018 + ], + [ + -158.78746634699996, + 58.411309542000026 + ], + [ + -158.74819367799992, + 58.51140044800019 + ], + [ + -158.85553922499997, + 58.693064052000125 + ], + [ + -158.7709120069999, + 58.77530951300014 + ], + [ + -158.769221149, + 58.864827686000126 + ], + [ + -158.61538482499992, + 58.914273160000164 + ], + [ + -158.50427570999997, + 58.85750045500009 + ], + [ + -158.56442112899995, + 58.80432772400013 + ], + [ + -158.35114837499992, + 58.726564126000085 + ], + [ + -158.33437561299993, + 58.662909589000094 + ], + [ + -158.14194832599992, + 58.61288235000018 + ], + [ + -157.55528480999996, + 58.753509701000155 + ], + [ + -157.30373032899993, + 58.836900640000124 + ], + [ + -157.11643944899998, + 58.86501884900008 + ], + [ + -157.0082667, + 58.81520068800006 + ], + [ + -157.068066635, + 58.70821886900018 + ], + [ + -157.483721023, + 58.479173372 + ], + [ + -157.5560118409999, + 58.32165519200004 + ], + [ + -157.4020208599999, + 58.17069159200008 + ], + [ + -157.57758445999994, + 58.12547338700011 + ], + [ + -157.67189335799992, + 57.772082494000074 + ], + [ + -157.692129635, + 57.61033705000011 + ], + [ + -157.60059327599998, + 57.60795524700012 + ], + [ + -157.5733750459999, + 57.51596434900006 + ], + [ + -157.77329323199996, + 57.547555225 + ], + [ + -157.93312954799998, + 57.47712793500017 + ], + [ + -158.0106295059999, + 57.40137338500011 + ], + [ + -158.25058399099993, + 57.314282447000096 + ], + [ + -158.45629300699994, + 57.19632788299998 + ], + [ + -158.63812928899992, + 57.05687332200006 + ], + [ + -158.68992924199998, + 56.97406423100011 + ], + [ + -158.65308370999995, + 56.80885516000012 + ], + [ + -158.78361095899993, + 56.780746052000154 + ], + [ + -158.95549279499997, + 56.843746021000186 + ], + [ + -159.23789272099992, + 56.730245989000196 + ], + [ + -159.32443813899997, + 56.67035507400004 + ], + [ + -159.82807440199997, + 56.54393683100017 + ], + [ + -159.93835618099996, + 56.47419136700006 + ], + [ + -160.14410158199996, + 56.40102770700008 + ], + [ + -160.3926923939999, + 56.237673141000016 + ], + [ + -160.488728677, + 56.077218597000126 + ], + [ + -160.56837409099995, + 56.00406404900019 + ], + [ + -160.48021847599992, + 55.92097428200009 + ], + [ + -160.1105791969999, + 56.09288829200017 + ], + [ + -159.78163808099998, + 56.111462857 + ], + [ + -159.67181802299996, + 56.14141288700006 + ], + [ + -159.55315629099994, + 56.32108986500009 + ], + [ + -159.01175412899994, + 56.342602624999984 + ], + [ + -158.89879437099998, + 56.33483916000006 + ], + [ + -158.77054926299994, + 56.38680178900006 + ], + [ + -158.8860043159999, + 56.51125585900007 + ], + [ + -158.83715201199996, + 56.587528728000166 + ], + [ + -158.345393244, + 56.62480799200017 + ], + [ + -158.40071279999992, + 56.81065116000008 + ], + [ + -158.34864738199994, + 56.913353814000175 + ], + [ + -158.08459221099997, + 57.01072101200003 + ], + [ + -157.6960232799999, + 57.07019866000002 + ], + [ + -157.34009886899992, + 57.1812160180001 + ], + [ + -157.12360958999994, + 57.2881414790001 + ], + [ + -156.8229117159999, + 57.51177030200006 + ], + [ + -156.64838905899995, + 57.58276358900014 + ], + [ + -156.31772834999995, + 57.64612438600017 + ], + [ + -156.19094245699992, + 57.63392983500006 + ], + [ + -155.72435316099998, + 57.778688682999984 + ], + [ + -155.58496417399996, + 57.84300115300016 + ], + [ + -155.45405838699995, + 57.96972419300016 + ], + [ + -155.52658904999998, + 58.025643631000094 + ], + [ + -155.83278351599998, + 57.94529356400017 + ], + [ + -155.97404612399993, + 57.93061210899998 + ], + [ + -156.03131750899996, + 57.98204901700012 + ], + [ + -155.97121538499994, + 58.086149286000136 + ], + [ + -155.66980007899997, + 58.14804318000017 + ], + [ + -155.74283427499995, + 58.24594878500011 + ], + [ + -156.01803318099994, + 58.28047201400011 + ], + [ + -156.00278179299997, + 58.384160658999974 + ], + [ + -155.87456921199993, + 58.43999785000011 + ], + [ + -155.58209121699994, + 58.466681471000186 + ], + [ + -155.495603856, + 58.553625968 + ], + [ + -155.3925589259999, + 58.54684788399999 + ], + [ + -155.1993622319999, + 58.42977324000003 + ], + [ + -155.08234155199997, + 58.42623775000004 + ], + [ + -155.03637415699995, + 58.49464050800009 + ], + [ + -154.77339389699992, + 58.52029769200004 + ], + [ + -154.76238157499995, + 58.66273679500017 + ], + [ + -155.17626645699997, + 58.6939697680001 + ], + [ + -155.47731352699992, + 58.76248124000006 + ], + [ + -155.33024908099998, + 58.90288174200015 + ], + [ + -155.34047216699994, + 58.97059987200004 + ], + [ + -155.5923261229999, + 59.036690345000125 + ], + [ + -155.55695716899993, + 59.083575677000056 + ], + [ + -155.36188322599995, + 59.13225723199997 + ], + [ + -155.12363408899998, + 59.15160628900003 + ], + [ + -154.8673904579999, + 59.20827581200007 + ], + [ + -154.9204619489999, + 59.31032353400019 + ], + [ + -154.81400350799998, + 59.41866564300011 + ], + [ + -154.32630082199998, + 59.397520310000175 + ], + [ + -154.0878217249999, + 59.36796473300018 + ], + [ + -153.69904907099996, + 59.463601151000034 + ], + [ + -153.76101275499994, + 59.54341931700009 + ], + [ + -153.5854309469999, + 59.551473890000125 + ], + [ + -153.46457646899992, + 59.65171026500013 + ], + [ + -153.2141764669999, + 59.63427394200016 + ], + [ + -153.04874923799994, + 59.695355781000046 + ], + [ + -152.9944856619999, + 59.791264874000035 + ], + [ + -153.14439475999993, + 59.80761939400014 + ], + [ + -153.22584933399992, + 59.861319378000076 + ], + [ + -153.00254026699994, + 59.88672850300003 + ], + [ + -152.8611039019999, + 59.87501034400009 + ], + [ + -152.70645847799994, + 59.91528309200004 + ], + [ + -152.56914040099994, + 60.07174674000015 + ], + [ + -152.7657222899999, + 60.195219426000165 + ], + [ + -152.5250790409999, + 60.25320946100004 + ], + [ + -152.46573694799994, + 60.560692135000124 + ], + [ + -152.37449647699992, + 60.85428915200015 + ], + [ + -152.188261845, + 60.915605025000104 + ], + [ + -152.11824792099998, + 61.03561341900013 + ], + [ + -151.97840343599995, + 61.168268411000156 + ], + [ + -151.79196203299995, + 61.205446585000175 + ], + [ + -151.76192007399993, + 61.2690944200001 + ], + [ + -151.8946265349999, + 61.35914847600014 + ], + [ + -151.91473304999997, + 61.43420437900005 + ], + [ + -151.594982988, + 61.60075038400015 + ], + [ + -151.58924454899991, + 61.68717223400017 + ], + [ + -151.80408962899992, + 61.92402400500015 + ], + [ + -152.03632896799994, + 61.943053590000034 + ], + [ + -152.08395245499992, + 62.00169998900003 + ], + [ + -152.01151652199997, + 62.08505570000011 + ], + [ + -152.0018846399999, + 62.21612341300016 + ], + [ + -152.10964846399997, + 62.296450539000034 + ], + [ + -152.08186207999998, + 62.417654713000104 + ], + [ + -151.90602591999993, + 62.4622855720001 + ], + [ + -151.54215870199994, + 62.378628434 + ], + [ + -151.4126078109999, + 62.387374991000115 + ], + [ + -151.40523941099997, + 62.46599789600009 + ], + [ + -151.28777222399995, + 62.49811896800003 + ], + [ + -151.4089356339999, + 62.65528339800005 + ], + [ + -151.35679667499997, + 62.74325013100008 + ], + [ + -151.42929058299993, + 62.77959791900014 + ], + [ + -151.59498572099994, + 62.68159067199997 + ], + [ + -151.9352116979999, + 62.691837045 + ], + [ + -151.97526562799993, + 62.60939415400014 + ], + [ + -152.10742158599993, + 62.524554877000014 + ], + [ + -152.34294166699996, + 62.54011940099997 + ], + [ + -152.42021158199992, + 62.5978495920001 + ], + [ + -152.17088365799998, + 62.68100259700009 + ], + [ + -152.15379362799993, + 62.74470338500009 + ], + [ + -151.95805372499993, + 62.874672002000125 + ], + [ + -151.70338468399993, + 62.90364220700019 + ], + [ + -151.66076656199994, + 63.005594816000155 + ], + [ + -151.45996063699997, + 63.0318055300001 + ], + [ + -151.31437670199995, + 63.09278639000007 + ], + [ + -151.22377067499994, + 63.18486662600003 + ], + [ + -150.85284463699995, + 63.200858459000074 + ], + [ + -150.37156665299995, + 63.28754711900018 + ], + [ + -150.2149357039999, + 63.209822737000195 + ], + [ + -150.1083525969999, + 63.30318372700003 + ], + [ + -149.99589561899992, + 63.204219434000095 + ], + [ + -150.06312569099998, + 63.13264418400013 + ], + [ + -150.05973856399996, + 63.02817499200006 + ], + [ + -149.75600805299993, + 62.89731760000012 + ], + [ + -149.9439995639999, + 62.789905541 + ], + [ + -150.08403753099998, + 62.67262460300003 + ], + [ + -150.00359796599994, + 62.52250192300016 + ], + [ + -149.8094572359999, + 62.517796843999974 + ], + [ + -149.660564981, + 62.4207936790001 + ], + [ + -149.62144436199992, + 62.34302304400012 + ], + [ + -149.79670365899992, + 62.2568621530001 + ], + [ + -149.70632116099992, + 62.00498063600014 + ], + [ + -149.6857505879999, + 61.778162747000124 + ], + [ + -149.5822900439999, + 61.72485549200002 + ], + [ + -149.37608732799998, + 61.71197821700014 + ], + [ + -148.880987455, + 61.82443004500004 + ], + [ + -148.73063997499992, + 61.82573855000004 + ], + [ + -148.72718842199998, + 61.72660334200009 + ], + [ + -148.91741407499998, + 61.625754552000046 + ], + [ + -148.9155044219999, + 61.57880139500014 + ], + [ + -148.65890066999998, + 61.505343758000095 + ], + [ + -148.71784064499997, + 61.455296237000084 + ], + [ + -149.08364288899995, + 61.509241183000086 + ], + [ + -149.47027685599994, + 61.428821851 + ], + [ + -149.80342734399997, + 61.05672620300015 + ], + [ + -149.6097501579999, + 60.98281988100007 + ], + [ + -149.49864106799998, + 60.98260171800001 + ], + [ + -149.457286471, + 60.909138093000024 + ], + [ + -149.85371378099993, + 60.967392570000186 + ], + [ + -149.93841132299994, + 60.90222027200008 + ], + [ + -150.05013528999993, + 60.66007329300004 + ], + [ + -150.15982926399994, + 60.550992727000164 + ], + [ + -150.09786870799996, + 60.439894640000034 + ], + [ + -150.36260899199996, + 60.35114141200006 + ], + [ + -150.70879696999992, + 60.296536149000076 + ], + [ + -150.712618232, + 60.11100049700002 + ], + [ + -150.84217567699994, + 59.83954192600015 + ], + [ + -151.0458360519999, + 59.69129916100013 + ], + [ + -151.1688484329999, + 59.51457544900006 + ], + [ + -151.37873885699995, + 59.51651648700005 + ], + [ + -151.40711321399993, + 59.39667635300009 + ], + [ + -151.25383962399997, + 59.35140843900007 + ], + [ + -151.04002972299992, + 59.35156596000019 + ], + [ + -150.8774672479999, + 59.31811978700017 + ], + [ + -150.74185822099994, + 59.417147074000184 + ], + [ + -150.60118550099992, + 59.42565618800006 + ], + [ + -150.62643101599994, + 59.526647085000036 + ], + [ + -150.45616570899998, + 59.62744015400011 + ], + [ + -150.59532155899996, + 59.682381427 + ], + [ + -150.36099271499998, + 59.804662833 + ], + [ + -150.520431601, + 59.88620902800017 + ], + [ + -150.34057657799997, + 59.9177841610001 + ], + [ + -150.26164268699992, + 60.0401638030001 + ], + [ + -150.28492761399997, + 60.08882259500018 + ], + [ + -150.0969845569999, + 60.19036231100017 + ], + [ + -149.94741871499994, + 60.198220681000066 + ], + [ + -149.800735577, + 60.271751429000176 + ], + [ + -149.67204268499992, + 60.20440803400015 + ], + [ + -149.61270166099996, + 59.99814699800004 + ], + [ + -149.44835351299992, + 59.971366855000156 + ], + [ + -149.50825432599993, + 60.141744486000164 + ], + [ + -149.34916555399994, + 60.203972981000106 + ], + [ + -149.23046565099997, + 60.02476166900004 + ], + [ + -149.12558306599996, + 60.06077532000012 + ], + [ + -148.85432320599992, + 59.95484639800003 + ], + [ + -148.62076097799996, + 59.96722618900003 + ], + [ + -148.68809459099998, + 60.034480537000036 + ], + [ + -148.80514568999996, + 60.001085191000016 + ], + [ + -148.96006756799997, + 60.10480621400012 + ], + [ + -149.02981556399993, + 60.205362062 + ], + [ + -148.89303564399998, + 60.32337037400015 + ], + [ + -148.6925966789999, + 60.40630142700007 + ], + [ + -148.45597713899994, + 60.545220096000094 + ], + [ + -148.66584767899994, + 60.52619818200009 + ], + [ + -148.9119266099999, + 60.472779307 + ], + [ + -148.91075163499994, + 60.389782875000094 + ], + [ + -149.14797961199997, + 60.424681264000014 + ], + [ + -148.98025471099996, + 60.552280318000044 + ], + [ + -149.0458526589999, + 60.6170638800001 + ], + [ + -149.01672370199992, + 60.6923875170001 + ], + [ + -148.80824263499997, + 60.74794377699999 + ], + [ + -148.77847262999998, + 60.81178839900019 + ], + [ + -148.65232867499995, + 60.86124833300016 + ], + [ + -148.73391761799996, + 60.90960118600009 + ], + [ + -148.77850364299996, + 61.051765807000095 + ], + [ + -148.67063860699994, + 61.1290550010001 + ], + [ + -148.51316862999997, + 61.16425815600007 + ], + [ + -148.33195456599992, + 61.28559324600013 + ], + [ + -148.40724165799998, + 61.34128244300007 + ], + [ + -148.57925457199994, + 61.319072411000036 + ], + [ + -148.54913369999997, + 61.416453362000084 + ], + [ + -148.33883661099995, + 61.38221211400008 + ], + [ + -148.10494966099995, + 61.43323108300018 + ], + [ + -148.20079068899994, + 61.49777475500008 + ], + [ + -147.88569667599992, + 61.602916006999976 + ], + [ + -147.791992698, + 61.58736640300003 + ], + [ + -147.634231701, + 61.66713563500008 + ], + [ + -147.4930117199999, + 61.58962566100007 + ], + [ + -147.32693470199993, + 61.64346480500018 + ], + [ + -147.17007459199993, + 61.633324378000054 + ], + [ + -147.00096164899992, + 61.715038714000116 + ], + [ + -146.84474158099997, + 61.57641108800016 + ], + [ + -146.615280612, + 61.53566447700018 + ], + [ + -146.5384066569999, + 61.70847736100018 + ], + [ + -146.42741366299998, + 61.71151764400014 + ], + [ + -146.52522259399993, + 61.546838057000116 + ], + [ + -146.30654863099994, + 61.44732357600009 + ], + [ + -146.12965359299994, + 61.334404086 + ], + [ + -145.93720962199998, + 61.354374808000046 + ], + [ + -145.7782895759999, + 61.3014819820001 + ], + [ + -145.90023771799997, + 61.186723333000145 + ], + [ + -145.88363668799997, + 61.119803392000165 + ], + [ + -146.05528264199995, + 61.12753184200011 + ], + [ + -146.0602266239999, + 61.198068575000036 + ], + [ + -146.34562657199993, + 61.29422560000006 + ], + [ + -146.45381162899997, + 61.186777313000164 + ], + [ + -146.82022065899997, + 61.176625655000066 + ], + [ + -146.93933276399994, + 61.03297599400014 + ], + [ + -146.66100485899995, + 61.093125403000045 + ], + [ + -146.59124116299995, + 61.129947637999976 + ], + [ + -146.31985025399996, + 61.136311318000196 + ], + [ + -146.18342145399993, + 61.051867777000155 + ], + [ + -146.376402122, + 60.991166852000106 + ], + [ + -146.34343092499998, + 60.92255133499998 + ], + [ + -146.17206275699996, + 60.891174605 + ], + [ + -145.79029983999993, + 60.76373201299998 + ], + [ + -145.6720735959999, + 60.80385408900008 + ], + [ + -145.84300256199998, + 60.89096955600019 + ], + [ + -145.74761968899998, + 60.98662333200008 + ], + [ + -145.57325766299996, + 61.00265690700019 + ], + [ + -145.476196565, + 60.95637505500014 + ], + [ + -145.30342056199996, + 61.02947497400004 + ], + [ + -145.27394057099997, + 60.89277736500014 + ], + [ + -145.02630662899995, + 60.9361111340001 + ], + [ + -144.872543633, + 60.922175548999974 + ], + [ + -144.88580363599996, + 60.85603696900006 + ], + [ + -144.64739967799997, + 60.764595434000114 + ], + [ + -144.89543159299996, + 60.69791186200007 + ], + [ + -144.83010008299996, + 60.618635544000085 + ], + [ + -144.57306305199995, + 60.48367712100003 + ], + [ + -144.30647008899996, + 60.45995758700013 + ], + [ + -144.15535112799992, + 60.41065666100002 + ], + [ + -144.02405753499994, + 60.42492640500012 + ], + [ + -143.89773753999998, + 60.39151816200001 + ], + [ + -143.8858960209999, + 60.242024884000045 + ], + [ + -143.82907577399993, + 60.113057309000055 + ], + [ + -143.63807653499998, + 60.074325285999976 + ], + [ + -143.39624338099992, + 60.1164778750001 + ], + [ + -143.34436456699996, + 60.051463418000196 + ], + [ + -142.80949490499995, + 60.09351193600014 + ], + [ + -142.4570667399999, + 60.07161570600016 + ], + [ + -142.41734224099997, + 60.099775768000086 + ], + [ + -142.13540737899996, + 60.08945735400005 + ], + [ + -141.76214619299992, + 60.04085945300011 + ], + [ + -141.39121204299988, + 60.01359961200012 + ], + [ + -141.47108576099998, + 60.113157604000094 + ], + [ + -141.39684941199994, + 60.139784888 + ], + [ + -141.1099368369999, + 59.891681017 + ], + [ + -140.92852508699997, + 59.859825349 + ], + [ + -140.78982244399998, + 59.725512725000044 + ], + [ + -140.31561270199995, + 59.69514871500019 + ], + [ + -139.79516730499995, + 59.83836697200013 + ], + [ + -139.64777642399997, + 59.90086699400007 + ], + [ + -139.58666992799994, + 59.78889255900009 + ], + [ + -139.329416628, + 59.68883814300011 + ], + [ + -139.04183592699997, + 59.55132234700011 + ], + [ + -138.90219896199994, + 59.422892237999974 + ], + [ + -138.50481113799992, + 59.27244070400013 + ], + [ + -138.29711244399988, + 59.16813253400005 + ], + [ + -138.12301005299986, + 59.04052636500006 + ], + [ + -138.0344086489999, + 59.07598375700019 + ], + [ + -138.14564555599992, + 59.18196336699998 + ], + [ + -138.05209362599987, + 59.39097400200018 + ], + [ + -137.95722959299997, + 59.35330656700006 + ], + [ + -137.66732755699996, + 59.308966801999986 + ], + [ + -137.54643268599983, + 59.37636736200005 + ], + [ + -137.2748566759999, + 59.22497191800005 + ], + [ + -137.098373692, + 59.15545425700009 + ], + [ + -137.03750565299998, + 59.07241239500007 + ], + [ + -136.91655582199985, + 59.103174859000035 + ], + [ + -137.259887602, + 59.30063871100009 + ], + [ + -137.29853856999995, + 59.368520057000126 + ], + [ + -137.17799355799997, + 59.45892022400005 + ], + [ + -137.0181276979999, + 59.42711207400009 + ], + [ + -136.83779859499992, + 59.32919669300003 + ], + [ + -136.685653641, + 59.456719136 + ], + [ + -137.07193100799998, + 59.60124323800011 + ], + [ + -137.35578820799998, + 59.66552221600017 + ], + [ + -137.55366096199998, + 59.87528538400011 + ], + [ + -137.66389903699996, + 59.943665273000136 + ], + [ + -137.9160426009999, + 59.95882051900014 + ], + [ + -138.02784874999998, + 60.18907672900019 + ], + [ + -137.95897103099998, + 60.340380686000174 + ], + [ + -137.80126991599997, + 60.467364437000185 + ], + [ + -137.85767717799985, + 60.63505742400008 + ], + [ + -137.93125753599998, + 60.63883380200008 + ], + [ + -138.08321580599994, + 60.734561138 + ], + [ + -138.60664106099995, + 60.81522699200002 + ], + [ + -138.65100096999998, + 60.92883861100012 + ], + [ + -138.4947514999999, + 61.01911266299999 + ], + [ + -138.57610877499985, + 61.125211751999984 + ], + [ + -138.855239322, + 61.25811851200007 + ], + [ + -139.08447458299997, + 61.32264235000014 + ], + [ + -139.43960490099988, + 61.48818508700015 + ], + [ + -139.6608728399999, + 61.548777756000106 + ], + [ + -140.08805643499983, + 61.729980374000036 + ], + [ + -140.2643707499999, + 61.856639444999985 + ], + [ + -140.45336268399996, + 61.92710277500015 + ], + [ + -140.41586353099996, + 62.095345493000195 + ], + [ + -140.36160179099988, + 62.12453053600012 + ], + [ + -139.97610435299993, + 62.05453915300018 + ], + [ + -139.320999165, + 62.36199563800011 + ], + [ + -139.04723973199998, + 62.15734061500012 + ], + [ + -138.6495831499999, + 62.144924702000196 + ], + [ + -138.01570034599996, + 61.86575628200018 + ], + [ + -137.73576234099994, + 61.89230280800018 + ], + [ + -137.624008001, + 61.85087201500011 + ], + [ + -137.348800263, + 61.878294950000054 + ], + [ + -137.22540453399995, + 62.00038212900006 + ], + [ + -137.12136765599996, + 62.02434945400012 + ], + [ + -136.91337423899995, + 62.00526366800011 + ], + [ + -136.73439026699998, + 62.07308620499998 + ], + [ + -136.815870992, + 62.17915739900013 + ], + [ + -136.9561906209999, + 62.238776761999986 + ], + [ + -137.29752930699993, + 62.31291886700018 + ], + [ + -137.48693809799994, + 62.381796629000064 + ], + [ + -137.73135478599988, + 62.435067034999975 + ], + [ + -137.73750274399998, + 62.478969948000156 + ], + [ + -137.3887308909999, + 62.41573644099998 + ], + [ + -137.39326404199994, + 62.47343833500014 + ], + [ + -137.74678045399997, + 62.58204706500004 + ], + [ + -137.90495194599993, + 62.60797120799998 + ], + [ + -137.63053870099998, + 62.69095207600009 + ], + [ + -137.73138325199994, + 62.751776945000074 + ], + [ + -137.91845606799995, + 62.766304023000146 + ], + [ + -137.925643665, + 62.93390242800007 + ], + [ + -138.08158926, + 63.050587799000084 + ], + [ + -138.41622886999994, + 63.20797389400008 + ], + [ + -138.7363693239999, + 63.215485643000136 + ], + [ + -138.6237943999999, + 63.31427463500006 + ], + [ + -138.42634496599993, + 63.328086050000195 + ], + [ + -138.32342393999988, + 63.4103084890001 + ], + [ + -138.339844939, + 63.48677910100014 + ], + [ + -138.22292976199998, + 63.53839844100003 + ], + [ + -137.96409504799993, + 63.55652595100014 + ], + [ + -137.98136781699992, + 63.69915698500006 + ], + [ + -138.07786688099992, + 63.764344121000136 + ], + [ + -138.31828337999997, + 63.839194834000125 + ], + [ + -138.27327104899996, + 63.91856442400018 + ], + [ + -138.338531903, + 63.983613251000065 + ], + [ + -138.72050424599996, + 64.02203253600004 + ], + [ + -138.92866732599998, + 64.07705752100009 + ], + [ + -139.01551819499997, + 64.06147068600018 + ], + [ + -139.23487927399998, + 64.11061935700002 + ], + [ + -139.59960930599993, + 64.26184791999998 + ], + [ + -139.59709781599997, + 64.32362592200008 + ], + [ + -139.2144736319999, + 64.37204616999998 + ], + [ + -139.00182081299994, + 64.35450300100018 + ], + [ + -138.8246740149999, + 64.28564184800018 + ], + [ + -138.60104633799995, + 64.24185865200008 + ], + [ + -137.86516771199985, + 64.15553928500009 + ], + [ + -137.21039615099994, + 64.23543375200012 + ], + [ + -136.90802541699998, + 64.08379963699997 + ], + [ + -136.55689598399988, + 64.1375917370001 + ], + [ + -136.29213889999988, + 64.22594337000004 + ], + [ + -136.05265037699996, + 64.2455414580001 + ], + [ + -135.54324226499995, + 64.21215213700015 + ], + [ + -135.030810982, + 64.14563400400004 + ], + [ + -134.767373164, + 64.16218714500013 + ], + [ + -134.49090240199985, + 64.12288614500017 + ], + [ + -134.27769994299996, + 64.05653690500009 + ], + [ + -133.97600076999993, + 64.01256104600009 + ], + [ + -133.471762448, + 63.9762041890001 + ], + [ + -133.14558600499998, + 63.96836048600005 + ], + [ + -132.94218871099991, + 63.93425089300001 + ], + [ + -132.50964046399997, + 63.787949065000134 + ], + [ + -132.34453777099992, + 63.70415372100018 + ], + [ + -132.31979050699994, + 63.59782946900009 + ], + [ + -132.41775116999997, + 63.497934743000144 + ], + [ + -132.01602087899994, + 63.37436057000019 + ], + [ + -132.2905257129999, + 63.18726881300012 + ], + [ + -132.57306904299998, + 63.19798296200014 + ], + [ + -132.63440757699993, + 63.086327654 + ], + [ + -132.2585442929999, + 62.88907576200012 + ], + [ + -131.86882042599996, + 62.72967479500005 + ], + [ + -131.604977309, + 62.642069729000184 + ], + [ + -131.3226742209999, + 62.618012423000096 + ], + [ + -131.0459747559999, + 62.63017553499998 + ], + [ + -130.85842312799997, + 62.55790102600014 + ], + [ + -130.7454188829999, + 62.46434610900013 + ], + [ + -130.6846120439999, + 62.335270780000144 + ], + [ + -130.74350767699997, + 62.22923633400006 + ], + [ + -130.53725528799993, + 62.23310686700012 + ], + [ + -130.46082188499997, + 62.11994162700012 + ], + [ + -130.56489335799995, + 62.00501796000003 + ], + [ + -130.43520933199989, + 61.930934524 + ], + [ + -130.24184107599984, + 61.87900611500004 + ], + [ + -129.957662595, + 61.88867557300017 + ], + [ + -129.49231113899998, + 61.849025633999986 + ], + [ + -129.338164749, + 61.779366806000155 + ], + [ + -129.43661569499994, + 61.710477247000085 + ], + [ + -129.25052742499986, + 61.67508666100019 + ], + [ + -129.35182779599984, + 61.50001155700005 + ], + [ + -129.06392840499996, + 61.34175075900009 + ], + [ + -129.01920281899993, + 61.12100307900005 + ], + [ + -128.90839207099992, + 60.931927996000184 + ], + [ + -128.9152167719999, + 60.80679507700006 + ], + [ + -128.74067390599993, + 60.84689201500015 + ], + [ + -128.62408054499997, + 60.915759027000036 + ], + [ + -128.45961594, + 60.95345118500012 + ], + [ + -128.3357105999999, + 60.844324738000125 + ], + [ + -128.2615585819999, + 60.70421679700013 + ], + [ + -128.06818000899995, + 60.70085236500012 + ], + [ + -127.89999230599994, + 60.79102123299998 + ], + [ + -127.86621416199995, + 61.012882975000025 + ], + [ + -127.66434264699996, + 61.05952287399998 + ], + [ + -127.53247225199993, + 61.12067813100015 + ], + [ + -127.48682800999995, + 61.23667757600009 + ], + [ + -127.49740093099996, + 61.33627954600013 + ], + [ + -127.26329364999998, + 61.289517767 + ], + [ + -126.87464526899998, + 61.165780852000125 + ], + [ + -126.7397519939999, + 60.88644134100008 + ], + [ + -126.60696266399998, + 60.81823401800017 + ], + [ + -126.43440758399998, + 60.87626916100004 + ], + [ + -126.43737609099986, + 61.09291546800017 + ], + [ + -126.34889804699998, + 61.20014144600003 + ], + [ + -126.1374305679999, + 61.221480424000106 + ], + [ + -125.9132077129999, + 61.064555504000054 + ], + [ + -125.77848143399996, + 60.88664544300008 + ], + [ + -125.70287006799998, + 60.89701331800006 + ], + [ + -125.35049978099988, + 61.11603827700014 + ], + [ + -125.16805536499987, + 61.31248212300011 + ], + [ + -125.07364384499994, + 61.30542634300019 + ], + [ + -125.116438658, + 61.20123887200009 + ], + [ + -125.01578652799998, + 61.15685443200016 + ], + [ + -124.87550375899991, + 61.16822154099998 + ], + [ + -124.59633188599997, + 61.271305578000124 + ], + [ + -124.177802623, + 61.309434524000096 + ], + [ + -124.07013897699994, + 61.37392808700008 + ], + [ + -124.0905825399999, + 61.48464258700011 + ], + [ + -124.35996585799995, + 61.58699040200008 + ], + [ + -124.3578237449999, + 61.90613210400011 + ], + [ + -124.12597913499997, + 62.07789697900017 + ], + [ + -123.92019092199996, + 62.139781975000176 + ], + [ + -123.73574900199998, + 62.23954176400008 + ], + [ + -123.55384308699996, + 62.29161261000007 + ], + [ + -123.54190931399995, + 62.42284435000005 + ], + [ + -123.62213973299998, + 62.57796533600009 + ], + [ + -123.72534270499995, + 62.66622753100006 + ], + [ + -123.81800930999998, + 62.86241113000011 + ], + [ + -124.2214800839999, + 63.2057770350001 + ], + [ + -124.2658933759999, + 63.43457454800017 + ], + [ + -124.36012414599998, + 63.51990874600011 + ], + [ + -124.53149958899996, + 63.60445670800016 + ], + [ + -124.51857827599997, + 63.72755914000004 + ], + [ + -124.7249616179999, + 63.75460923900005 + ], + [ + -124.84845324099996, + 63.86486970500005 + ], + [ + -124.7411825399999, + 63.982075572000156 + ], + [ + -124.78007723399992, + 64.05922251300007 + ], + [ + -125.13123413699998, + 64.14962073300012 + ], + [ + -125.32037657899991, + 64.11810037400005 + ], + [ + -125.4638125159999, + 64.1582179630002 + ], + [ + -125.93831404099996, + 64.23167934700007 + ], + [ + -126.31385244199998, + 64.52717834300017 + ], + [ + -126.1793209299999, + 64.64590467800014 + ], + [ + -125.92547324599991, + 64.65103014400017 + ], + [ + -125.75459101299998, + 64.5601935110002 + ], + [ + -125.51450214799985, + 64.56729682600019 + ], + [ + -125.755890938, + 64.72921008500015 + ], + [ + -126.04191773899998, + 64.74846854499998 + ], + [ + -126.22599941899995, + 64.82160409300013 + ], + [ + -126.58732442599995, + 64.82465939200006 + ], + [ + -126.79073778499998, + 64.92590615900019 + ], + [ + -127.00066207299989, + 64.98813483599997 + ], + [ + -126.92943089699997, + 65.05268983600013 + ], + [ + -127.19158984699993, + 65.12247470400013 + ], + [ + -127.56617362999998, + 65.2596410340002 + ], + [ + -127.6877586469999, + 65.32233195800012 + ], + [ + -128.12584555199993, + 65.45360825900013 + ], + [ + -128.94335689499997, + 65.5223448590001 + ], + [ + -129.08032135899998, + 65.60613178000017 + ], + [ + -128.9295687429999, + 65.67926080200004 + ], + [ + -128.92205495699983, + 65.78821233100018 + ], + [ + -129.23901551999995, + 65.77081472700007 + ], + [ + -129.50242084799999, + 65.85693030400012 + ], + [ + -129.65671981699995, + 65.9641853220001 + ], + [ + -129.87698500999988, + 66.03031155600002 + ], + [ + -130.1331058039999, + 66.13763749400005 + ], + [ + -130.36654105299993, + 66.20611088600003 + ], + [ + -131.019390913, + 66.24584799600007 + ], + [ + -131.08273320699993, + 66.28771976000013 + ], + [ + -131.4922611329999, + 66.33773803700018 + ], + [ + -131.62274747299995, + 66.30929825400011 + ], + [ + -132.0426474809999, + 66.3577344840001 + ], + [ + -132.4967252369999, + 66.28335897100015 + ], + [ + -132.1204188519999, + 66.18888666700019 + ], + [ + -131.6961476709999, + 66.16913394100004 + ], + [ + -131.34092870799992, + 66.11637316100018 + ], + [ + -131.11581203499998, + 66.05760848500006 + ], + [ + -130.87922290899996, + 65.95495400300001 + ], + [ + -131.05096838299988, + 65.86039354200011 + ], + [ + -131.287431616, + 65.8571718070001 + ], + [ + -131.61817558799993, + 65.90000633400012 + ], + [ + -132.09099123099998, + 65.98295618200012 + ], + [ + -132.41653422199994, + 66.07741501100014 + ], + [ + -132.96533371799995, + 66.16408791200007 + ], + [ + -133.14123493999995, + 66.05001664100018 + ], + [ + -133.31503549999996, + 66.01721239500006 + ], + [ + -133.5632964009999, + 65.92546974300012 + ], + [ + -133.86123673899993, + 65.98475020800004 + ], + [ + -134.07042168799995, + 65.98918254500006 + ], + [ + -133.97570571999995, + 66.1983867720001 + ], + [ + -133.87003682699992, + 66.3422136280002 + ], + [ + -133.94497605999987, + 66.48465701600009 + ], + [ + -134.1844585789999, + 66.55327239400009 + ], + [ + -134.36079331899998, + 66.6645036700001 + ], + [ + -134.61732711699995, + 66.71280874700017 + ], + [ + -135.04556725999993, + 66.93161998100004 + ], + [ + -135.0517423369999, + 66.96501877200012 + ], + [ + -134.81151087299997, + 67.06836029900006 + ], + [ + -134.939900293, + 67.1606245980002 + ], + [ + -134.84972645899995, + 67.25776331500009 + ], + [ + -134.84660068699986, + 67.4913761890001 + ], + [ + -135.24334187099998, + 67.62079227900011 + ], + [ + -135.34769235099992, + 67.73114315300012 + ], + [ + -135.32882889599995, + 67.97345145000003 + ], + [ + -135.37487790799997, + 68.15338885700004 + ], + [ + -135.31781633699995, + 68.22680989300017 + ], + [ + -135.45685008699996, + 68.318054017 + ], + [ + -135.55998314099998, + 68.4686894940001 + ], + [ + -135.74938456299992, + 68.55665366400007 + ], + [ + -135.72284899799996, + 68.62524211300007 + ], + [ + -135.83786807899992, + 68.71984042700018 + ], + [ + -135.8728347349999, + 68.83163738700011 + ], + [ + -136.13760570199997, + 68.8826177150001 + ], + [ + -136.527779115, + 68.90435013300004 + ], + [ + -136.7551209059999, + 68.86258372600008 + ], + [ + -137.00696606499992, + 68.93929963100004 + ], + [ + -137.21116802999995, + 68.93291870600012 + ], + [ + -138.08152255099998, + 69.13286605400009 + ], + [ + -138.27940231999992, + 69.20618465200005 + ], + [ + -138.59921916399992, + 69.248278734 + ], + [ + -138.74308622099994, + 69.34629232800012 + ], + [ + -139.0688808939999, + 69.47562590100017 + ], + [ + -139.39997244199992, + 69.54147438900003 + ], + [ + -139.5244906609999, + 69.54083322600019 + ], + [ + -139.86849399499994, + 69.61338695700005 + ], + [ + -140.38086358799995, + 69.58933904200012 + ], + [ + -140.94329904199998, + 69.63690742900013 + ], + [ + -141.18699497799986, + 69.68385532600018 + ], + [ + -141.37971337699997, + 69.62044808300004 + ], + [ + -141.470940773, + 69.69789351600014 + ], + [ + -141.69382271899997, + 69.77209347200005 + ], + [ + -142.23302286999996, + 69.84701155000016 + ], + [ + -142.36149571399994, + 69.91863879400017 + ], + [ + -142.88441415099987, + 70.0622568730002 + ], + [ + -143.22525060499999, + 70.10775680700004 + ], + [ + -143.88871422699992, + 70.07932032100018 + ], + [ + -144.01055054899996, + 70.04886575600017 + ], + [ + -144.4020959949999, + 70.03308386700007 + ], + [ + -144.6295595429999, + 69.9707838280001 + ], + [ + -145.25220505899995, + 69.99883825800015 + ], + [ + -145.5369142589999, + 70.06374729200013 + ], + [ + -145.85910534699997, + 70.16899268000009 + ], + [ + -146.08946894999994, + 70.14548354800007 + ], + [ + -146.52034175599994, + 70.19149255700006 + ], + [ + -146.85735993499995, + 70.18622885800016 + ], + [ + -146.9868144229999, + 70.14974701900013 + ], + [ + -147.25194175799996, + 70.18703787700008 + ], + [ + -147.68705086999998, + 70.20000143200019 + ], + [ + -148.06096923299995, + 70.31069226300013 + ], + [ + -148.50138742599995, + 70.31911945400014 + ], + [ + -148.49452387499997, + 70.37091945200007 + ], + [ + -148.73428758199992, + 70.41483758600015 + ], + [ + -148.8930693549999, + 70.38945574100018 + ], + [ + -149.16757860699997, + 70.48944659100005 + ], + [ + -149.4624241079999, + 70.51851017200005 + ], + [ + -149.7781695129999, + 70.49350102300014 + ], + [ + -150.43591480299995, + 70.40428272700018 + ], + [ + -150.42796041899993, + 70.49998272100015 + ], + [ + -150.79486948699991, + 70.4953190170001 + ], + [ + -151.0690602589999, + 70.41800988099999 + ], + [ + -151.56386936799993, + 70.43859160600005 + ], + [ + -151.87805116099997, + 70.4313188220001 + ], + [ + -151.72393316899996, + 70.54304611500004 + ], + [ + -151.975305922, + 70.56522788500007 + ], + [ + -152.5249149489999, + 70.54202778500019 + ], + [ + -152.41894233999997, + 70.61062779800005 + ], + [ + -152.47039700899995, + 70.68560960200017 + ], + [ + -152.26739727399993, + 70.83580053600019 + ], + [ + -152.5931518909999, + 70.88630956400004 + ], + [ + -153.24027919299996, + 70.92524580400004 + ], + [ + -153.50400637899992, + 70.88454575800017 + ], + [ + -153.88606999199996, + 70.88653659700009 + ], + [ + -154.16416977499998, + 70.770118374 + ], + [ + -154.35323351299996, + 70.83689106000014 + ], + [ + -154.56379711299994, + 70.82525465900005 + ], + [ + -154.64321543299994, + 70.90943645400012 + ], + [ + -154.6118338169999, + 71.02371827000007 + ], + [ + -154.77235209299997, + 71.08524550800018 + ], + [ + -155.14657938099998, + 71.11148179900005 + ], + [ + -155.26507920899994, + 71.01906360400011 + ], + [ + -155.50765177999995, + 70.94098174800018 + ], + [ + -155.5047970939999, + 70.85813630000013 + ], + [ + -155.97646063399995, + 70.82546348900013 + ], + [ + -155.98783359399994, + 70.96322711300019 + ], + [ + -155.71696092199994, + 70.98130897900006 + ], + [ + -155.50960656799995, + 71.07992719100008 + ], + [ + -155.56367943899994, + 71.1641817200001 + ], + [ + -155.9539885309999, + 71.18573619100016 + ], + [ + -156.1761522719999, + 71.25635432500013 + ], + [ + -156.34168862899995, + 71.25986338500007 + ], + [ + -156.63842510399994, + 71.34023605000004 + ], + [ + -156.81227044599999, + 71.2865360240001 + ], + [ + -157.23967907899996, + 71.05241778300018 + ], + [ + -157.49915160099994, + 70.94892683600011 + ], + [ + -158.00876043799997, + 70.83483584400011 + ], + [ + -158.9941147529999, + 70.76734476100012 + ], + [ + -159.660387425, + 70.78552645600018 + ], + [ + -160.05957802199995, + 70.627662762 + ], + [ + -159.90999619899992, + 70.61370824500011 + ], + [ + -159.73002328899992, + 70.48666283400001 + ], + [ + -159.97810504899994, + 70.47020824500004 + ], + [ + -159.90133251899994, + 70.58613552100013 + ], + [ + -160.216723333, + 70.55494455900009 + ], + [ + -160.74015932799992, + 70.36879902700002 + ], + [ + -161.31552268299995, + 70.24403529900019 + ], + [ + -161.5366499129999, + 70.23762616900012 + ], + [ + -161.92422266899996, + 70.29212609500019 + ], + [ + -162.15933150899997, + 70.15366243000017 + ], + [ + -162.31455868799995, + 70.10910786000017 + ], + [ + -162.33535857799998, + 70.04038059100003 + ], + [ + -162.60034925499994, + 69.91317146400007 + ], + [ + -162.96363990399993, + 69.78037141300007 + ], + [ + -162.92691251399992, + 69.69481688400015 + ], + [ + -163.11029414199996, + 69.58466231500012 + ], + [ + -163.02549409899993, + 69.54476233400004 + ], + [ + -163.09444839999992, + 69.38218961100011 + ], + [ + -163.63045701199997, + 69.09978954400015 + ], + [ + -163.96600225799997, + 68.98604404300005 + ], + [ + -164.25243849299994, + 68.92626218100008 + ], + [ + -164.604665702, + 68.92340757500017 + ], + [ + -165.34373821299997, + 68.85868927100017 + ], + [ + -165.79582903899995, + 68.85638010300005 + ], + [ + -166.22250170899994, + 68.87224366400017 + ], + [ + -166.19656521999997, + 68.77288913400014 + ], + [ + -166.23325586699997, + 68.5755436930001 + ], + [ + -166.35156472199992, + 68.4076346010001 + ], + [ + -166.6293009409999, + 68.3327709240001 + ], + [ + -166.24601908699998, + 68.24611645300013 + ], + [ + -165.99220081299993, + 68.13550741700004 + ], + [ + -165.8045826119999, + 68.091462 + ], + [ + -165.63479173499994, + 68.09480748200008 + ], + [ + -165.3069644169999, + 68.01170754800006 + ], + [ + -164.804382463, + 67.82934401500006 + ], + [ + -164.686591566, + 67.82336221800011 + ], + [ + -164.52330965399997, + 67.72150771100013 + ], + [ + -164.1065732149999, + 67.60259870400017 + ], + [ + -163.8748094, + 67.41875330800019 + ], + [ + -163.75487287099992, + 67.25817152600007 + ], + [ + -163.73821817999993, + 67.12855336000013 + ], + [ + -163.57424543799996, + 67.09401702800005 + ], + [ + -162.97102726299994, + 67.02214441100006 + ], + [ + -162.68773641299998, + 67.03929900300017 + ], + [ + -162.44745456899997, + 66.98603541300008 + ], + [ + -162.25793745899995, + 66.99124638900008 + ], + [ + -162.34886681199998, + 67.1312715250001 + ], + [ + -162.4717749369999, + 67.19966509500006 + ], + [ + -162.30744220999998, + 67.27708528200003 + ], + [ + -161.8663972889999, + 67.37947177400008 + ], + [ + -161.42075254199992, + 67.50292494600006 + ], + [ + -161.36069889099997, + 67.44327671600013 + ], + [ + -161.13642458199996, + 67.49104426100013 + ], + [ + -160.97370096299994, + 67.48522531900011 + ], + [ + -160.71269635199994, + 67.36881839300014 + ], + [ + -160.35045498399998, + 67.4449644300002 + ], + [ + -160.3881739249999, + 67.32680342400005 + ], + [ + -160.26935303399995, + 67.16969378400012 + ], + [ + -160.00242588299992, + 67.15493960700013 + ], + [ + -160.04288573299993, + 67.49474464100007 + ], + [ + -159.91330639799997, + 67.69985004200004 + ], + [ + -159.80896574499997, + 67.685932277 + ], + [ + -159.79660713799998, + 67.58769357900013 + ], + [ + -159.7057676599999, + 67.45498383000017 + ], + [ + -159.2456042329999, + 67.39912443900016 + ], + [ + -158.6741176069999, + 67.365546574 + ], + [ + -158.5426413929999, + 67.42749985500012 + ], + [ + -157.5595079469999, + 67.33651237200007 + ], + [ + -156.30723155, + 67.14566090600005 + ], + [ + -155.76497843699994, + 67.07753731700012 + ], + [ + -155.16302407199993, + 67.02376810100014 + ], + [ + -154.39153656, + 67.05423748200008 + ], + [ + -153.54546679399994, + 67.11545323700011 + ], + [ + -152.731097974, + 67.18189123800016 + ], + [ + -151.83153295299996, + 67.20165382 + ], + [ + -151.0462236639999, + 67.1721673150002 + ], + [ + -150.27877041899998, + 67.18307222800019 + ], + [ + -150.06860717699993, + 67.14465450800009 + ], + [ + -150.04243668799995, + 67.07925479300013 + ], + [ + -150.57525451999996, + 66.99166585600005 + ], + [ + -150.4522650449999, + 66.84124305299997 + ], + [ + -150.56368883899995, + 66.76828031100018 + ], + [ + -150.509496088, + 66.63515520800007 + ], + [ + -150.871951797, + 66.47325305600009 + ], + [ + -150.87118406099998, + 66.41282181900016 + ], + [ + -150.58310883599995, + 66.40782408500019 + ], + [ + -150.60177682899993, + 66.28138783700012 + ], + [ + -150.90871293699996, + 66.23865490600014 + ], + [ + -151.34037604299996, + 66.21352621900013 + ], + [ + -151.61709216099993, + 66.10968302300017 + ], + [ + -152.2046480429999, + 65.98888389500007 + ], + [ + -152.38760923899997, + 65.93101302500014 + ], + [ + -151.39198116599997, + 65.97852175700012 + ], + [ + -150.7023560949999, + 66.07991397800009 + ], + [ + -150.40037682099992, + 66.15631419700003 + ], + [ + -150.17616869499997, + 66.24930264700015 + ], + [ + -150.13231765699993, + 66.33664677800004 + ], + [ + -150.261271016, + 66.38974715700004 + ], + [ + -149.84125177299998, + 66.44070947800003 + ], + [ + -149.59613600999995, + 66.39662755700016 + ], + [ + -149.23860207599992, + 66.52929115100017 + ], + [ + -149.5984464229999, + 66.60671624600019 + ], + [ + -149.47242841399998, + 66.68702455800008 + ], + [ + -149.24906066099993, + 66.70255791500006 + ], + [ + -149.16723287499997, + 66.77167745500003 + ], + [ + -148.81398498099992, + 66.86401863800018 + ], + [ + -148.59283413199998, + 66.99167689400008 + ], + [ + -148.23275538299998, + 67.00135682400008 + ], + [ + -147.61865897799998, + 67.07887429599998 + ], + [ + -147.9470305709999, + 67.11002466200006 + ], + [ + -148.41223110199996, + 67.20304448900004 + ], + [ + -148.28548796799993, + 67.24571145100003 + ], + [ + -147.88811352699997, + 67.2574314100001 + ], + [ + -147.31560282899997, + 67.22595191500005 + ], + [ + -147.27697540999995, + 67.09964940200013 + ], + [ + -147.06231098899997, + 67.11227976400016 + ], + [ + -146.37847142399997, + 67.25349382899998 + ], + [ + -146.29161053399994, + 67.36864743000007 + ], + [ + -146.0712284699999, + 67.43002217300011 + ], + [ + -145.64333697999996, + 67.43361521700001 + ], + [ + -144.69223261899998, + 67.49660491000009 + ], + [ + -144.53575322999998, + 67.5518781070001 + ], + [ + -144.5209611949999, + 67.61751794300011 + ], + [ + -144.16322125499997, + 67.68199192100013 + ], + [ + -143.87109506299998, + 67.7551097290002 + ], + [ + -143.86908325499996, + 67.53611650700014 + ], + [ + -143.65552097099993, + 67.50498438800008 + ], + [ + -142.85373550799994, + 67.70912603700009 + ], + [ + -142.65587915699996, + 67.80662588800004 + ], + [ + -142.5339080299999, + 67.932637349 + ], + [ + -142.37612709799998, + 67.95707084800006 + ], + [ + -142.30116101399994, + 68.08179565800009 + ], + [ + -142.09186360299992, + 68.14416404399998 + ], + [ + -141.94744554399995, + 68.25610202900015 + ], + [ + -141.71567026899993, + 68.22466826900006 + ], + [ + -141.51405138499996, + 68.24431247700005 + ], + [ + -141.34847118499994, + 68.37108820200007 + ], + [ + -141.22098387599993, + 68.61866097900014 + ], + [ + -141.00213369999994, + 68.73199729100008 + ], + [ + -140.86712282999997, + 68.5931076620002 + ], + [ + -140.7370302619999, + 68.59855623200013 + ], + [ + -140.41784187599995, + 68.71285138500008 + ], + [ + -140.33342880499987, + 68.80484460600007 + ], + [ + -140.19297278599993, + 68.81389498600015 + ], + [ + -139.94683432199992, + 68.77087209100017 + ], + [ + -139.70271393099983, + 68.67659061100017 + ], + [ + -139.32262468999988, + 68.64332799599998 + ], + [ + -139.5791509139999, + 68.55394891300017 + ], + [ + -139.55368777699994, + 68.41887372700012 + ], + [ + -139.2529212789999, + 68.34649112200003 + ], + [ + -138.937116678, + 68.39905587300012 + ], + [ + -138.75124282799987, + 68.47283579700007 + ], + [ + -138.29390376899994, + 68.42106736600016 + ], + [ + -138.10867205299996, + 68.27142917300017 + ], + [ + -137.91452550999998, + 68.2427697240002 + ], + [ + -138.21503840099996, + 68.10444533600008 + ], + [ + -138.34753519799995, + 67.94816537300017 + ], + [ + -138.07400826599996, + 67.95910083700011 + ], + [ + -137.96184002599995, + 67.92892557800013 + ], + [ + -137.6322702459999, + 68.03171852600008 + ], + [ + -137.47227622999998, + 68.0454494230001 + ], + [ + -137.46328767299985, + 67.84053121600016 + ], + [ + -137.56216489899998, + 67.60783408200007 + ], + [ + -137.42124322799998, + 67.54108175800019 + ], + [ + -137.113936143, + 67.47470070100002 + ], + [ + -136.86765271999997, + 67.478343789 + ], + [ + -136.76922790899994, + 67.37453377500015 + ], + [ + -137.0012055719999, + 67.26753939200012 + ], + [ + -136.83136992099992, + 67.13726528100005 + ], + [ + -136.93667418899992, + 67.08692832100019 + ], + [ + -136.98687293599988, + 66.96598620700013 + ], + [ + -137.19466114499988, + 66.9861539050001 + ], + [ + -137.27773708299992, + 67.07093600600007 + ], + [ + -137.4022032619999, + 67.08200550600009 + ], + [ + -137.49448968599995, + 66.96827672500012 + ], + [ + -137.65455611, + 66.97619682000004 + ], + [ + -137.72911240599996, + 67.06617071700003 + ], + [ + -137.77903418499994, + 67.26052036600004 + ], + [ + -137.86915785299993, + 67.31358405900005 + ], + [ + -137.79656972499993, + 67.42060823400004 + ], + [ + -138.14168475299994, + 67.42579159000007 + ], + [ + -138.5312003449999, + 67.49116320600012 + ], + [ + -138.70475764799994, + 67.45371889600011 + ], + [ + -138.942204141, + 67.13480440500018 + ], + [ + -139.0607882509999, + 67.17858769400004 + ], + [ + -138.9978529309999, + 67.29052114300015 + ], + [ + -139.37069421999985, + 67.2182300230001 + ], + [ + -139.5395854759999, + 67.12928892800011 + ], + [ + -139.661594423, + 67.27576522100014 + ], + [ + -140.29208425299998, + 67.26638753500015 + ], + [ + -140.45227261199994, + 67.23960938200003 + ], + [ + -141.0016386009999, + 67.22077215100012 + ], + [ + -141.1804228879999, + 67.1949182080001 + ], + [ + -141.51499524199988, + 67.09369835200016 + ], + [ + -141.7260373109999, + 66.96392718100009 + ], + [ + -141.6726254479999, + 66.84596299100008 + ], + [ + -141.49920989799995, + 66.64716779300005 + ], + [ + -141.28215356699997, + 66.2567369250001 + ], + [ + -141.35146173099992, + 66.0723263500002 + ], + [ + -141.61460071, + 65.90843934600014 + ], + [ + -141.95582105999995, + 65.78387285900016 + ], + [ + -142.38117795699998, + 65.73507397300017 + ], + [ + -143.07569747399998, + 65.74288819400005 + ], + [ + -143.24543039999998, + 65.63988258000012 + ], + [ + -143.28350890699988, + 65.5201421340002 + ], + [ + -143.20318519499995, + 65.43018542300013 + ], + [ + -142.468407663, + 65.37527402800004 + ], + [ + -142.27012777599987, + 65.29258176600007 + ], + [ + -142.1419753319999, + 65.17789821400004 + ], + [ + -142.16230060799995, + 65.07451357399998 + ], + [ + -142.40779042999992, + 65.12907222800015 + ], + [ + -143.23411617899995, + 65.27471930700011 + ], + [ + -144.0409876219999, + 65.38920374899999 + ], + [ + -145.49182252499998, + 65.669071062 + ], + [ + -145.8027730759999, + 65.76980423000003 + ], + [ + -145.63522918999996, + 65.88063081500007 + ], + [ + -145.75443064299995, + 65.91611152800004 + ], + [ + -146.0102338119999, + 65.92665607500004 + ], + [ + -146.29343222399993, + 65.90554446400006 + ], + [ + -146.44887751699991, + 65.86737386599998 + ], + [ + -146.95833429899997, + 65.96188516300009 + ], + [ + -147.61305093199996, + 66.03123298600008 + ], + [ + -147.88978711999997, + 66.03093485900018 + ], + [ + -148.126489077, + 65.95163957300008 + ], + [ + -148.28379888499998, + 65.8199458040001 + ], + [ + -147.98336522099996, + 65.79739321700009 + ], + [ + -148.0272150669999, + 65.73961756300002 + ], + [ + -148.30716463199997, + 65.73072488100001 + ], + [ + -148.54101940699996, + 65.6796994660001 + ], + [ + -148.558236841, + 65.62456180700013 + ], + [ + -148.09477481, + 65.59005154800013 + ], + [ + -148.02977930099996, + 65.47236284500008 + ], + [ + -148.16750147399992, + 65.41952559000003 + ], + [ + -148.23891847699994, + 65.25287036600002 + ], + [ + -148.18233074399996, + 65.21259440200004 + ], + [ + -147.7574866589999, + 65.20317967000017 + ], + [ + -147.68235005699998, + 65.07236182800011 + ], + [ + -147.4401204639999, + 65.04616507200012 + ], + [ + -147.21517475499996, + 65.13742488100013 + ], + [ + -146.98771588299996, + 65.00586180200014 + ], + [ + -146.4723291409999, + 65.02140647300018 + ], + [ + -146.47547615599996, + 64.9455236230001 + ], + [ + -146.88147096199998, + 64.81408237400012 + ], + [ + -146.9148737879999, + 64.70465844800009 + ], + [ + -147.03934795299998, + 64.62143238100003 + ], + [ + -146.98005963399996, + 64.5401352720001 + ], + [ + -146.85283068699994, + 64.50820678300005 + ], + [ + -146.48517676399996, + 64.55835800000011 + ], + [ + -146.50373911399998, + 64.39894923500009 + ], + [ + -146.17696816599994, + 64.3780178720001 + ], + [ + -145.95453166999994, + 64.44645212300014 + ], + [ + -145.86676157399992, + 64.39057239000005 + ], + [ + -145.52115579399998, + 64.30263581800011 + ], + [ + -145.333725663, + 64.30000890200017 + ], + [ + -145.31714247899995, + 64.20559793299998 + ], + [ + -145.12888458899994, + 64.150383094 + ], + [ + -144.96604750299997, + 64.1529137230001 + ], + [ + -144.6807931369999, + 64.05619579199998 + ], + [ + -144.74490515599993, + 63.89522864100019 + ], + [ + -144.29602666399998, + 63.819145189000096 + ], + [ + -143.9267518889999, + 63.72650142800012 + ], + [ + -143.86789478699995, + 63.677895812000145 + ], + [ + -143.769881586, + 63.48433139100007 + ], + [ + -143.43858396699994, + 63.45156378100012 + ], + [ + -143.18573239399996, + 63.48590398099998 + ], + [ + -143.0280588199999, + 63.47575492900012 + ], + [ + -142.56733327799992, + 63.26724820400011 + ], + [ + -142.2360717289999, + 63.14596695200004 + ], + [ + -141.94138317399995, + 63.06946785700012 + ], + [ + -141.69112450499995, + 62.98101297400018 + ], + [ + -141.55408932799998, + 62.88368648200009 + ], + [ + -141.40919853599996, + 62.68886599700005 + ], + [ + -141.44653211399992, + 62.59083718200003 + ], + [ + -141.6294876999999, + 62.535584666000034 + ], + [ + -141.76740412299995, + 62.56216269800018 + ], + [ + -141.73836439999997, + 62.652702457000146 + ], + [ + -142.11280676799993, + 62.74064131199998 + ], + [ + -142.24119613799996, + 62.89207469500019 + ], + [ + -142.57585336299996, + 63.06886394100002 + ], + [ + -142.57872298299998, + 63.18941558 + ], + [ + -142.79183486699992, + 63.24360603700012 + ], + [ + -143.1702559539999, + 63.25536974500005 + ], + [ + -143.35384950899993, + 63.32091090100005 + ], + [ + -143.62851104799995, + 63.370339632000196 + ], + [ + -144.00381091199992, + 63.46877192100004 + ], + [ + -144.14537480499993, + 63.66565768400005 + ], + [ + -144.55896979299996, + 63.677162641000166 + ], + [ + -144.86659393099993, + 63.74578541700009 + ], + [ + -145.17389876599995, + 63.76407847200011 + ], + [ + -145.57739379499998, + 63.85623829200006 + ], + [ + -145.74106491699996, + 63.81388084100007 + ], + [ + -145.9185404079999, + 63.83161874500007 + ], + [ + -145.98143806499996, + 63.66764867000012 + ], + [ + -146.12803027799993, + 63.695266401000026 + ], + [ + -146.09096981299996, + 63.83602598900006 + ], + [ + -146.3200255959999, + 63.90605724700015 + ], + [ + -146.52238806799997, + 63.920668722000016 + ], + [ + -146.67257281499997, + 64.07323148000017 + ], + [ + -147.13465070399994, + 64.07788715100003 + ], + [ + -147.35043578499992, + 64.10972553400006 + ], + [ + -147.795727172, + 64.22213508900012 + ], + [ + -148.096404396, + 64.1612806930001 + ], + [ + -148.5557798829999, + 64.21915197800013 + ], + [ + -148.97732857699998, + 64.20279577300016 + ], + [ + -149.11341645099998, + 64.15180701300017 + ], + [ + -149.03278738599997, + 63.977445119000095 + ], + [ + -149.1317674119999, + 63.92418269300009 + ], + [ + -149.25828299199995, + 63.94374095900008 + ], + [ + -149.36079658899996, + 64.06021374300019 + ], + [ + -149.67437304199993, + 63.996067911000125 + ], + [ + -149.97095334199994, + 63.96029453200009 + ], + [ + -150.03276388099997, + 63.839021506 + ], + [ + -150.27648217599992, + 63.76686559500007 + ], + [ + -150.33469182799996, + 63.818109564999986 + ], + [ + -150.31840945799996, + 64.03025590200008 + ], + [ + -150.4900687519999, + 63.94596600200009 + ], + [ + -150.60187282099994, + 63.8103692160002 + ], + [ + -150.99340779399992, + 63.59010266100006 + ], + [ + -151.36034759499998, + 63.45307056700011 + ], + [ + -151.33330302699997, + 63.33080506200008 + ], + [ + -151.82270880499993, + 63.267873478000126 + ], + [ + -151.95702726599998, + 63.18544597500011 + ], + [ + -152.42106830399993, + 63.021702485 + ], + [ + -152.69653911999998, + 62.967825773000186 + ], + [ + -152.82039244499992, + 62.84559405700003 + ], + [ + -153.063032016, + 62.781653471000084 + ], + [ + -153.3229355539999, + 62.66157171400005 + ], + [ + -153.35951173799995, + 62.581511637000176 + ], + [ + -153.5989821519999, + 62.48786123000008 + ], + [ + -153.87248666199997, + 62.48402843100007 + ], + [ + -154.29526900299996, + 62.37834123200008 + ], + [ + -154.55427670799995, + 62.26362516500012 + ], + [ + -155.14619518, + 62.128400187000125 + ], + [ + -155.31864014199994, + 62.048174314000164 + ], + [ + -155.30230736399992, + 61.95974307300003 + ], + [ + -155.175748453, + 61.856287858000144 + ], + [ + -155.12303830899998, + 61.75407597700007 + ], + [ + -155.19408751399993, + 61.63205239500007 + ], + [ + -154.98566865599997, + 61.64586460800007 + ], + [ + -154.68632275899998, + 61.80045953300004 + ], + [ + -154.56730227299997, + 61.74345105100008 + ], + [ + -154.52393725599998, + 61.57245445500007 + ], + [ + -154.35434127399998, + 61.454893514000105 + ], + [ + -154.44431855799994, + 61.38491116800009 + ], + [ + -154.44180292899998, + 61.21978969600002 + ], + [ + -154.2830548199999, + 61.1174472940001 + ], + [ + -154.12337164899995, + 61.08580066500008 + ], + [ + -153.94306219499998, + 61.19646763300011 + ], + [ + -153.83913533599994, + 61.16976994800012 + ], + [ + -153.80720237099996, + 61.089982052000096 + ], + [ + -153.82502580999994, + 60.90050252200007 + ], + [ + -154.1694995089999, + 60.88434482800005 + ], + [ + -154.49194349399994, + 60.842194326000026 + ], + [ + -154.82032882199994, + 60.75693313900001 + ], + [ + -154.921210098, + 60.604536723000194 + ], + [ + -155.07912709599992, + 60.564378218 + ], + [ + -155.17918535799998, + 60.485263977000045 + ], + [ + -155.15643132299996, + 60.41038914300009 + ], + [ + -154.83228314099998, + 60.302251636 + ], + [ + -154.61024066099998, + 60.28782396200012 + ], + [ + -154.2014272449999, + 60.32433860100008 + ], + [ + -154.21219893699995, + 60.21892535300003 + ], + [ + -154.51531732399997, + 60.09076566200014 + ], + [ + -154.57974131399996, + 60.01918549600009 + ], + [ + -154.52008429999995, + 59.885888189000184 + ], + [ + -154.27873304699992, + 59.78672401199998 + ], + [ + -154.4173404469999, + 59.7705587960001 + ], + [ + -155.16946176499997, + 59.72682909600013 + ], + [ + -155.49473302299998, + 59.747116799000196 + ], + [ + -155.6050262489999, + 59.72467791600013 + ], + [ + -155.63046346799996, + 59.8519300050001 + ], + [ + -155.79849052699993, + 59.912585274000094 + ], + [ + -155.81069727499997, + 59.96178655600016 + ], + [ + -155.59660569399998, + 60.06162261800006 + ], + [ + -155.48130706999996, + 60.178874346999976 + ], + [ + -155.50098438099994, + 60.282817205000015 + ], + [ + -155.62374303599992, + 60.391147589000184 + ], + [ + -155.84620668299993, + 60.42235089200011 + ], + [ + -156.00048455099997, + 60.27076176900016 + ], + [ + -156.16849952299998, + 60.21799397700005 + ], + [ + -156.33609109199998, + 60.22554075800019 + ], + [ + -156.54363611499994, + 60.359227408000095 + ], + [ + -156.7439957699999, + 60.403638161000174 + ], + [ + -156.93393560099992, + 60.372098113 + ], + [ + -157.11213680299997, + 60.227749691999975 + ], + [ + -157.28510668299998, + 60.215286519000074 + ], + [ + -157.91353778199996, + 60.22087702400012 + ], + [ + -157.87922368199997, + 60.35028441300011 + ], + [ + -157.90699687099993, + 60.43793194800003 + ], + [ + -158.02635262099992, + 60.523791399000174 + ], + [ + -158.08365746399997, + 60.61708107500016 + ], + [ + -158.29977072399993, + 60.59743950800009 + ], + [ + -158.38043683999996, + 60.64387656200006 + ], + [ + -158.31721088799992, + 60.796945910000034 + ], + [ + -158.39331272899994, + 60.81205119800018 + ], + [ + -158.52227121899998, + 60.693282194000176 + ], + [ + -158.88527731899998, + 60.68721703800014 + ], + [ + -158.88005678699994, + 60.8120655300001 + ], + [ + -158.74486314599997, + 60.942338213000085 + ], + [ + -158.19647596399994, + 60.94385593400017 + ], + [ + -158.15949300599993, + 61.09734403300001 + ], + [ + -157.74554326999996, + 61.250091250000025 + ], + [ + -157.57150101099992, + 61.34726127800013 + ], + [ + -157.59244950399994, + 61.395884803000115 + ], + [ + -157.82922242499998, + 61.38910791400008 + ], + [ + -157.91947146499996, + 61.45683240100004 + ], + [ + -158.07991732399995, + 61.45747704600018 + ], + [ + -158.25089125099996, + 61.534275050000076 + ], + [ + -158.74588705399995, + 61.47943769700004 + ], + [ + -159.01948797999998, + 61.494172478 + ], + [ + -159.19314901099992, + 61.47971742000004 + ], + [ + -159.25349987699994, + 61.326249819000054 + ], + [ + -159.40455890299998, + 61.31335805600003 + ], + [ + -159.52795008799998, + 61.345128174000024 + ], + [ + -159.49676599599997, + 61.424724445000095 + ], + [ + -159.57439238999993, + 61.48165304200012 + ], + [ + -159.98679479799995, + 61.49037999300003 + ], + [ + -160.28889973899996, + 61.446972656000185 + ], + [ + -160.58828281899991, + 61.357878515000095 + ], + [ + -160.9357387519999, + 61.13549917900008 + ], + [ + -161.05654036499996, + 61.144927748999976 + ], + [ + -161.03384522499994, + 61.378882241000156 + ], + [ + -161.00204440799996, + 61.44856951000014 + ], + [ + -160.7722329439999, + 61.47607346400014 + ], + [ + -160.523243339, + 61.55282816600004 + ], + [ + -160.38169538399995, + 61.656084735000036 + ], + [ + -160.32430868099996, + 61.847841454000104 + ], + [ + -160.50136185299996, + 61.82612535600009 + ], + [ + -161.05264597199997, + 61.683363035000184 + ], + [ + -161.5822341129999, + 61.564174332 + ], + [ + -161.9022453519999, + 61.47650839900018 + ], + [ + -162.02067947699993, + 61.42269158500011 + ], + [ + -162.26638279399998, + 61.53242694300019 + ], + [ + -162.49965954999996, + 61.69856862800003 + ], + [ + -162.73220159399995, + 61.77351798500018 + ], + [ + -162.76862145699994, + 61.90252108100003 + ], + [ + -162.83571572199995, + 61.92809120700002 + ], + [ + -163.069012863, + 61.905458347000035 + ], + [ + -163.2639400669999, + 61.95602427400013 + ], + [ + -163.39632382299993, + 62.026397351000185 + ], + [ + -163.37403386999998, + 62.10287403800004 + ], + [ + -163.17879856699994, + 62.22940764700007 + ], + [ + -163.05007418399993, + 62.375056625000184 + ], + [ + -163.05053091799996, + 62.50107958800004 + ], + [ + -163.16741275299998, + 62.68151122799998 + ], + [ + -163.14845011399998, + 62.76946458000009 + ], + [ + -162.7088373489999, + 63.065816820000066 + ], + [ + -162.41819616399994, + 63.22176817700017 + ], + [ + -161.7048597429999, + 63.17171130800011 + ] + ], + [ + [ + -142.76168915499994, + 61.21731692600008 + ], + [ + -142.73984894199992, + 61.145929582 + ], + [ + -142.32341149299992, + 61.1516570930001 + ], + [ + -142.21042259499995, + 61.07664493800007 + ], + [ + -142.62529221299985, + 61.00583454900004 + ], + [ + -142.76229410599996, + 61.070857704000105 + ], + [ + -143.1539185719999, + 61.15456728400011 + ], + [ + -143.45751963599997, + 61.29725277699998 + ], + [ + -143.73153409099984, + 61.25545203700011 + ], + [ + -143.81104425099988, + 61.32295986800011 + ], + [ + -143.968551957, + 61.337587687999985 + ], + [ + -144.25034535199993, + 61.475218740000116 + ], + [ + -144.53703562399994, + 61.64367460400007 + ], + [ + -145.04530283999998, + 61.5963058480001 + ], + [ + -145.26355816599997, + 61.63662047700018 + ], + [ + -145.48432617599994, + 61.728834228000096 + ], + [ + -145.669207601, + 61.88024172500013 + ], + [ + -145.91951811299998, + 61.79464879700009 + ], + [ + -146.07953218399996, + 61.82253306700011 + ], + [ + -146.13763067399998, + 61.888383423000164 + ], + [ + -146.3374080849999, + 61.9163676710001 + ], + [ + -146.44622945199993, + 61.84681676800005 + ], + [ + -146.68457671999994, + 61.89027100800013 + ], + [ + -146.76064240199992, + 61.96379545600007 + ], + [ + -146.94076708799994, + 61.91513442000013 + ], + [ + -147.03587935799996, + 61.939028250000035 + ], + [ + -146.99001874599992, + 62.23110575400017 + ], + [ + -146.99863988199994, + 62.35902049100008 + ], + [ + -147.331826304, + 62.47219763900017 + ], + [ + -147.3534510929999, + 62.59229610000011 + ], + [ + -147.19815005799998, + 62.670281855000155 + ], + [ + -146.6355605889999, + 62.71733129800009 + ], + [ + -145.69952381399997, + 62.736993021000046 + ], + [ + -145.63384819499993, + 62.77530676900005 + ], + [ + -145.27607359999996, + 62.793606865000186 + ], + [ + -144.996276253, + 62.835949763000144 + ], + [ + -144.57148179499995, + 62.87747682500009 + ], + [ + -144.51913809799996, + 62.71436847899997 + ], + [ + -144.24104982899996, + 62.63507709100003 + ], + [ + -143.96100017599997, + 62.67803101200013 + ], + [ + -143.86140287799998, + 62.740878978000126 + ], + [ + -143.5849483909999, + 62.70217389900017 + ], + [ + -143.49659271399992, + 62.55065699700003 + ], + [ + -143.60250167499998, + 62.52745895400005 + ], + [ + -143.85280752499995, + 62.534125453 + ], + [ + -144.11697789199997, + 62.56944004500019 + ], + [ + -144.39969093499997, + 62.489690941 + ], + [ + -144.56753052699997, + 62.4070685210001 + ], + [ + -144.650346692, + 62.25726306100006 + ], + [ + -144.81338123699996, + 62.20564820000004 + ], + [ + -144.91151484699995, + 62.05342326700003 + ], + [ + -144.89182012799992, + 61.959039171000086 + ], + [ + -144.75768084899997, + 61.8963694790001 + ], + [ + -144.59519752099996, + 61.90087990100011 + ], + [ + -144.5995585569999, + 61.79910837800003 + ], + [ + -144.24664304199993, + 61.663217138000164 + ], + [ + -144.20893857599998, + 61.602231540000105 + ], + [ + -144.05907762999993, + 61.55675288900011 + ], + [ + -143.75455008899996, + 61.514802698000096 + ], + [ + -143.53722494699997, + 61.359708779000016 + ], + [ + -143.44550006699995, + 61.34656012000005 + ], + [ + -143.232820463, + 61.4132877130001 + ], + [ + -142.74835652699988, + 61.41042313200012 + ], + [ + -142.64150087999997, + 61.35435586500017 + ], + [ + -142.76168915499994, + 61.21731692600008 + ] + ] + ], + [ + [ + [ + -162.78697841399992, + 61.99547085500012 + ], + [ + -162.58469307299995, + 62.04070020000012 + ], + [ + -162.33451560399996, + 62.017163223000125 + ], + [ + -162.168754289, + 61.94142058300014 + ], + [ + -162.0449080889999, + 61.825676007000084 + ], + [ + -161.90925425499995, + 61.89387758700019 + ], + [ + -161.66423330599994, + 62.24447498400002 + ], + [ + -161.60782756199993, + 62.41023896300004 + ], + [ + -161.6489458499999, + 62.48625728000002 + ], + [ + -161.938439723, + 62.47066469400005 + ], + [ + -162.281494711, + 62.32586662700015 + ], + [ + -162.50372692399995, + 62.270429622999984 + ], + [ + -162.62852531999994, + 62.17145875800003 + ], + [ + -162.78697841399992, + 61.99547085500012 + ] + ] + ], + [ + [ + [ + -164.61383217999992, + 62.7468173040001 + ], + [ + -164.73705946699997, + 62.789190007000116 + ], + [ + -164.85551395699997, + 62.73639908399997 + ], + [ + -164.73401389199995, + 62.627226387000064 + ], + [ + -164.61383217999992, + 62.7468173040001 + ] + ] + ], + [ + [ + [ + -169.9041409799999, + 63.45535275500009 + ], + [ + -170.03046824899994, + 63.480289096000035 + ], + [ + -170.0802137789999, + 63.58757998400017 + ], + [ + -170.28553199799998, + 63.68460721300005 + ], + [ + -170.46891379499996, + 63.70079809100014 + ], + [ + -170.91076815699995, + 63.57166167500014 + ], + [ + -171.38526811199992, + 63.63018886800012 + ], + [ + -171.627322652, + 63.684170643000186 + ], + [ + -171.745949886, + 63.66502517100008 + ], + [ + -171.83544071299994, + 63.58188880500006 + ], + [ + -171.85299518199994, + 63.4865706330001 + ], + [ + -171.74290420299997, + 63.36564339100005 + ], + [ + -171.43687694299996, + 63.307116172000065 + ], + [ + -171.10441345999996, + 63.42297075500011 + ], + [ + -170.86895895099994, + 63.41378897500016 + ], + [ + -170.56247714399998, + 63.35456175500008 + ], + [ + -170.3683134929999, + 63.285170885000014 + ], + [ + -170.26058615699992, + 63.17778909600014 + ], + [ + -170.07004073299998, + 63.172125489 + ], + [ + -169.83337706999993, + 63.07814371900014 + ], + [ + -169.69819518099993, + 62.952543755000136 + ], + [ + -169.53563158899993, + 62.97697105000003 + ], + [ + -169.53844075299995, + 63.07396194700016 + ], + [ + -169.379122656, + 63.150871054000106 + ], + [ + -169.20184997899992, + 63.17562562400019 + ], + [ + -168.86218637899995, + 63.1465802260002 + ], + [ + -168.72847737299998, + 63.22799842000006 + ], + [ + -168.696386527, + 63.30189841600003 + ], + [ + -169.05540467899996, + 63.342734719000134 + ], + [ + -169.23516827199998, + 63.327643782000166 + ], + [ + -169.5240046149999, + 63.36554373300015 + ], + [ + -169.65995918499996, + 63.42952552300011 + ], + [ + -169.9041409799999, + 63.45535275500009 + ] + ] + ], + [ + [ + [ + -162.21886036799992, + 63.52473579200017 + ], + [ + -162.28367849199992, + 63.463063061000184 + ], + [ + -162.16651483999996, + 63.425272173999986 + ], + [ + -162.04573307599995, + 63.47543582600008 + ], + [ + -162.21886036799992, + 63.52473579200017 + ] + ] + ], + [ + [ + [ + -172.50790373299992, + 64.71921222500015 + ], + [ + -172.25340266599997, + 64.78629242800008 + ], + [ + -172.3197016759999, + 64.83440572600017 + ], + [ + -172.56080661800002, + 64.877117725 + ], + [ + -172.78660570199997, + 64.77943284600008 + ], + [ + -172.76400758799997, + 64.69261510500002 + ], + [ + -172.50790373299992, + 64.71921222500015 + ] + ] + ], + [ + [ + [ + -160.04545346199995, + 65.67157926900018 + ], + [ + -160.11169668399998, + 65.81577398500019 + ], + [ + -159.91918118599995, + 65.80678019800007 + ], + [ + -159.78846449899993, + 65.71820476199997 + ], + [ + -159.5734001769999, + 65.72924105200008 + ], + [ + -159.56442518899993, + 65.65000479500014 + ], + [ + -159.35257719799992, + 65.6072936720002 + ], + [ + -159.17695433599994, + 65.78521919200006 + ], + [ + -159.1166804739999, + 65.93330703200013 + ], + [ + -159.13135985099998, + 66.04406625000018 + ], + [ + -159.4764877879999, + 66.288383259 + ], + [ + -159.24826488499994, + 66.34469662600014 + ], + [ + -159.0014036469999, + 66.29296034300017 + ], + [ + -158.81228044099998, + 66.28218905400007 + ], + [ + -158.2133714779999, + 66.41550374200011 + ], + [ + -157.19656779899995, + 66.52617982700013 + ], + [ + -157.18004936599993, + 66.57225147100002 + ], + [ + -157.36270260399994, + 66.63581620300016 + ], + [ + -157.38767033099995, + 66.70336881700018 + ], + [ + -158.146492214, + 66.73098884500018 + ], + [ + -158.10536648099995, + 66.77884176900005 + ], + [ + -157.72599605199997, + 66.80252473000019 + ], + [ + -157.27817838699997, + 66.78683489200017 + ], + [ + -156.93622126999995, + 66.84098395200016 + ], + [ + -157.048678, + 66.91159600100008 + ], + [ + -157.47510043499992, + 66.93727244000013 + ], + [ + -157.90788116599992, + 67.07860227900017 + ], + [ + -158.12452351199997, + 67.02780304800012 + ], + [ + -158.14713622099998, + 66.933194174 + ], + [ + -158.74857684599993, + 66.85653525300017 + ], + [ + -159.183084192, + 66.81864888200005 + ], + [ + -159.78088682299992, + 66.78625722700008 + ], + [ + -160.1815334579999, + 66.86313369700008 + ], + [ + -160.59756724399992, + 66.74783612600015 + ], + [ + -160.81528713499995, + 66.73849620600004 + ], + [ + -161.09287654299993, + 66.7668615820001 + ], + [ + -161.19744355199992, + 66.98100797400019 + ], + [ + -161.38823468099991, + 67.03237323100018 + ], + [ + -161.6148037419999, + 67.00146677500004 + ], + [ + -161.7929454439999, + 66.87878099000005 + ], + [ + -161.8823907089999, + 66.71616280900002 + ], + [ + -161.49374509999998, + 66.52709925800008 + ], + [ + -161.29756329699993, + 66.52078111000009 + ], + [ + -161.141699809, + 66.6382811260001 + ], + [ + -160.82120895399999, + 66.65428117800019 + ], + [ + -160.65309981399997, + 66.58967212300007 + ], + [ + -160.33597259599995, + 66.60580854000006 + ], + [ + -160.18480884499994, + 66.483281305 + ], + [ + -160.22465419599993, + 66.39125403300017 + ], + [ + -160.54352685699996, + 66.36363580000005 + ], + [ + -160.79205410799992, + 66.36975393900008 + ], + [ + -161.07528147799994, + 66.49159933300007 + ], + [ + -161.24225421299997, + 66.52092657400004 + ], + [ + -161.58064499599996, + 66.440553797 + ], + [ + -161.9183632559999, + 66.55410827300005 + ], + [ + -162.06865423699992, + 66.64112642000015 + ], + [ + -162.01084527799998, + 66.75329914700018 + ], + [ + -162.22738173399995, + 66.86309000800009 + ], + [ + -162.28417270599996, + 66.92598999299997 + ], + [ + -162.59919990299997, + 66.89697175900011 + ], + [ + -162.62042711999993, + 66.84928085200005 + ], + [ + -162.50364519499993, + 66.73663542700018 + ], + [ + -162.22776338099993, + 66.70690820600004 + ], + [ + -162.09753601599996, + 66.60580823700008 + ], + [ + -161.87181773799995, + 66.49035374100004 + ], + [ + -161.92183576199992, + 66.34767192800007 + ], + [ + -161.70605402299995, + 66.39694468800019 + ], + [ + -161.5326813199999, + 66.39909926400014 + ], + [ + -161.10168130199997, + 66.33118116100013 + ], + [ + -161.06487211599992, + 66.23785390400013 + ], + [ + -161.1969538969999, + 66.21561751900015 + ], + [ + -161.34880847499997, + 66.26530839800012 + ], + [ + -161.55844478299994, + 66.23853563800003 + ], + [ + -161.82720814099994, + 65.99932652400014 + ], + [ + -161.987917284, + 66.07123558100011 + ], + [ + -162.39191718899994, + 66.02872642600016 + ], + [ + -162.62888989299992, + 66.03812638400007 + ], + [ + -162.76353538899994, + 66.09518999300002 + ], + [ + -163.09302621899994, + 66.06296266800013 + ], + [ + -163.49587163899994, + 66.0853898690001 + ], + [ + -163.72958067399998, + 66.06163528700017 + ], + [ + -163.92990807599995, + 66.21601705700016 + ], + [ + -163.83010814899995, + 66.27199888600018 + ], + [ + -163.87313553599998, + 66.38901704800008 + ], + [ + -163.76199016699996, + 66.45487160600015 + ], + [ + -163.75419936199998, + 66.55128068900007 + ], + [ + -163.9855811889999, + 66.59036246300019 + ], + [ + -164.40995384299995, + 66.58085330300014 + ], + [ + -164.6625537689999, + 66.5495896270001 + ], + [ + -164.9883263069999, + 66.41805322100015 + ], + [ + -165.14198084499998, + 66.43443501300004 + ], + [ + -165.38719896299995, + 66.41111679200003 + ], + [ + -165.69635338399996, + 66.33818038300018 + ], + [ + -165.87754416299992, + 66.240307637 + ], + [ + -165.568816852, + 66.15577133400012 + ], + [ + -165.73364403899996, + 66.09622585700015 + ], + [ + -166.05392581699996, + 66.10827125700007 + ], + [ + -166.232798579, + 66.17108940300005 + ], + [ + -166.65963477199992, + 66.07362570700013 + ], + [ + -166.77846197999995, + 66.02746205600016 + ], + [ + -166.88667094599992, + 65.92282568500002 + ], + [ + -167.15382537299993, + 65.84678019500006 + ], + [ + -167.32604355799992, + 65.88171652700004 + ], + [ + -167.535625282, + 65.82359831700006 + ], + [ + -167.49029795699994, + 65.76091651299998 + ], + [ + -167.5857887969999, + 65.70868014000007 + ], + [ + -167.7932978519999, + 65.70751647000009 + ], + [ + -168.0752249489999, + 65.57635280200003 + ], + [ + -167.72389766799998, + 65.50258014000013 + ], + [ + -167.39847944599995, + 65.40026202200005 + ], + [ + -166.6113068079999, + 65.35149852000018 + ], + [ + -166.39555220199998, + 65.2505803840001 + ], + [ + -166.69647922699997, + 65.03585308600009 + ], + [ + -166.69084281999997, + 64.98537127300006 + ], + [ + -166.41565185299993, + 64.87192587700014 + ], + [ + -166.4838244439999, + 64.73341678900005 + ], + [ + -166.3924243749999, + 64.63816226900013 + ], + [ + -166.23696071399993, + 64.58355321000005 + ], + [ + -165.33592440599995, + 64.48763518500004 + ], + [ + -165.00198804399992, + 64.4339170630002 + ], + [ + -164.84194266199998, + 64.4906079930002 + ], + [ + -164.33973370299992, + 64.55941715900008 + ], + [ + -163.97437920099995, + 64.55137176500017 + ], + [ + -163.87579741599995, + 64.57293541500019 + ], + [ + -163.59786108099993, + 64.56335364299997 + ], + [ + -163.253051953, + 64.46949916400007 + ], + [ + -163.04346108499996, + 64.48541737900007 + ], + [ + -163.36116113299997, + 64.58401731700013 + ], + [ + -163.18998848399997, + 64.64805370200008 + ], + [ + -163.01486114999997, + 64.5533537410002 + ], + [ + -162.83406866699994, + 64.50972568400005 + ], + [ + -162.85578502699997, + 64.67677122500004 + ], + [ + -163.012255022, + 64.70939344600015 + ], + [ + -163.5035988909999, + 64.68575804400012 + ], + [ + -163.68771354099994, + 64.70949748400005 + ], + [ + -163.892879886, + 64.79013605100005 + ], + [ + -163.85368439999996, + 64.91838683300011 + ], + [ + -163.68042704999996, + 65.01484884500007 + ], + [ + -163.35096915999992, + 65.01930789800019 + ], + [ + -163.01609020899997, + 64.95637036000011 + ], + [ + -162.74379888399994, + 64.86522030300006 + ], + [ + -162.7543762329999, + 64.79164566400016 + ], + [ + -162.5991228869999, + 64.76131221500009 + ], + [ + -162.30546000099994, + 64.83811236300016 + ], + [ + -162.2752495189999, + 65.02072145900013 + ], + [ + -162.1675104169999, + 65.13016264400011 + ], + [ + -161.92392618199995, + 65.17699375300009 + ], + [ + -161.551365972, + 65.19751971900001 + ], + [ + -161.25075334299993, + 65.1573347210001 + ], + [ + -161.12025307099995, + 65.28103744700013 + ], + [ + -161.16724234399996, + 65.48023108600017 + ], + [ + -161.14668983499993, + 65.60774708900016 + ], + [ + -160.70295183199997, + 65.67993566000013 + ], + [ + -160.54292531999994, + 65.60228608200009 + ], + [ + -160.08625669799997, + 65.63369214200003 + ], + [ + -160.04545346199995, + 65.67157926900018 + ] + ] + ], + [ + [ + [ + -179.99998860099998, + 65.06728617700003 + ], + [ + -179.72610471699997, + 65.15030071400014 + ], + [ + -179.56723060399997, + 65.26696054500013 + ], + [ + -179.51171859999994, + 65.44252084900006 + ], + [ + -179.32861374599997, + 65.54726211700012 + ], + [ + -179.40615858799995, + 65.65587934400008 + ], + [ + -179.7517087489999, + 65.80836795600015 + ], + [ + -179.81585662799995, + 65.91726044600011 + ], + [ + -179.76196266699992, + 66.11532934400009 + ], + [ + -179.43670660200002, + 66.12534001900013 + ], + [ + -179.12722762599995, + 66.25841832200007 + ], + [ + -178.99447671899995, + 66.1675628500002 + ], + [ + -178.7683406829999, + 66.21923158300001 + ], + [ + -178.64639270899994, + 66.35922294500006 + ], + [ + -178.51531969199993, + 66.35366842600013 + ], + [ + -178.56500258499995, + 66.19199308000009 + ], + [ + -178.69110060699992, + 66.0747852400001 + ], + [ + -178.947540744, + 66.04367094500009 + ], + [ + -178.65472364999994, + 65.75976666400015 + ], + [ + -178.4769597439999, + 65.6780975900001 + ], + [ + -178.56307960799992, + 65.51477453000012 + ], + [ + -178.36947658799997, + 65.47390923200004 + ], + [ + -177.50033558899997, + 65.48417907500004 + ], + [ + -177.26959269099996, + 65.51437856900014 + ], + [ + -177.181670718, + 65.59365142500019 + ], + [ + -176.73446667899992, + 65.57143301100018 + ], + [ + -176.37054472699992, + 65.49725685600004 + ], + [ + -176.17834466899996, + 65.47615290000005 + ], + [ + -175.95150773799995, + 65.37139620900012 + ], + [ + -175.87789970799992, + 65.16597252600008 + ], + [ + -175.91850265299996, + 65.05811821900016 + ], + [ + -176.00469963099994, + 64.99680526800012 + ], + [ + -175.83850074, + 64.92532188299998 + ], + [ + -175.69599866299998, + 64.92632922000013 + ], + [ + -175.5827026569999, + 64.87052519100007 + ], + [ + -175.51429760899998, + 64.77048348800014 + ], + [ + -175.18310564799992, + 64.78184415200008 + ], + [ + -175.02009573599994, + 64.8162314130002 + ], + [ + -174.79148871499999, + 64.73305175300004 + ], + [ + -174.39750674299998, + 64.65374788500009 + ], + [ + -174.19299366999996, + 64.53811165100012 + ], + [ + -174.07519574399993, + 64.3994109350001 + ], + [ + -173.78680462999998, + 64.32081617600011 + ], + [ + -173.65809665099997, + 64.32586727800009 + ], + [ + -173.43389867799996, + 64.50419796800008 + ], + [ + -173.36109966999993, + 64.39741168300009 + ], + [ + -173.51040667899997, + 64.2850408720002 + ], + [ + -173.23339869299994, + 64.23397429400018 + ], + [ + -172.986495653, + 64.32048123500005 + ], + [ + -172.98530558999994, + 64.41021437 + ], + [ + -172.74429368699998, + 64.35778271600003 + ], + [ + -172.31370559799993, + 64.40192097900012 + ], + [ + -172.59330761499993, + 64.55472206900009 + ], + [ + -172.93989562399994, + 64.58770485800017 + ], + [ + -173.2223966059999, + 64.66886280300014 + ], + [ + -172.957702642, + 64.73464682899998 + ], + [ + -173.08920263299999, + 64.83813684600017 + ], + [ + -172.664398727, + 64.91530450300019 + ], + [ + -172.29049661099995, + 65.01867952100014 + ], + [ + -172.17790267299998, + 65.08768353900018 + ], + [ + -172.264007617, + 65.26017723900003 + ], + [ + -172.20010365199997, + 65.47586255100009 + ], + [ + -172.3491057269999, + 65.49967570500007 + ], + [ + -172.57769766199993, + 65.61134528700012 + ], + [ + -172.64071666499993, + 65.70119275100006 + ], + [ + -172.367095639, + 65.66147292400018 + ], + [ + -172.2801965929999, + 65.58569414900012 + ], + [ + -171.88020362299991, + 65.52284680600013 + ], + [ + -171.48609961099993, + 65.52514411800013 + ], + [ + -171.1672055779999, + 65.46276281000007 + ], + [ + -171.04821758999998, + 65.54575203300004 + ], + [ + -171.10819966199995, + 65.61351938500007 + ], + [ + -171.39160169899995, + 65.70576290000014 + ], + [ + -171.47560161299995, + 65.76375678500017 + ], + [ + -171.42039470999993, + 65.83625505100014 + ], + [ + -171.22161871499998, + 65.70550373200018 + ], + [ + -170.79499861799997, + 65.59826750600013 + ], + [ + -170.56051671999995, + 65.6443438340001 + ], + [ + -170.51551864099994, + 65.70436697800011 + ], + [ + -170.61039759399992, + 65.84637184000007 + ], + [ + -170.37510667499996, + 65.90696780400003 + ], + [ + -170.072799591, + 66.02183474600014 + ], + [ + -169.82099866899998, + 65.9797336200001 + ], + [ + -169.69650259699998, + 66.05039993700012 + ], + [ + -169.79060370899998, + 66.11538349100005 + ], + [ + -170.172103686, + 66.11536035700004 + ], + [ + -170.19630458700001, + 66.18334882400018 + ], + [ + -170.34739660599993, + 66.28658788700017 + ], + [ + -170.55700671499997, + 66.20674187700013 + ], + [ + -170.68840059099998, + 66.23817636100006 + ], + [ + -170.53250171799996, + 66.31642025400015 + ], + [ + -170.919799624, + 66.49228649700012 + ], + [ + -171.1302036669999, + 66.54500816500013 + ], + [ + -171.371002669, + 66.64264677600016 + ], + [ + -171.50300574199997, + 66.79968324000009 + ], + [ + -171.70640569899996, + 66.86394846600007 + ], + [ + -171.78869670999998, + 66.98535379500015 + ], + [ + -172.0234986279999, + 67.00899109800008 + ], + [ + -172.20880172099996, + 66.98574254800008 + ], + [ + -172.62289472799998, + 67.01913035100011 + ], + [ + -172.7328036069999, + 66.9359961200002 + ], + [ + -173.03469863699996, + 66.95832936600016 + ], + [ + -173.12480158099999, + 67.00068932500017 + ], + [ + -173.3829957149999, + 66.86268229500018 + ], + [ + -173.34100372199993, + 67.08811894600018 + ], + [ + -173.7182005969999, + 67.14211583700012 + ], + [ + -173.78900169499994, + 67.09642876500004 + ], + [ + -174.16509970199994, + 67.11989775800004 + ], + [ + -174.38349873899992, + 67.09357439100012 + ], + [ + -174.32130468199998, + 67.01467520100005 + ], + [ + -174.15800458899997, + 66.96312850800018 + ], + [ + -174.08459470699992, + 66.89310977700012 + ], + [ + -174.12109370499996, + 66.69363674200008 + ], + [ + -174.3372036439999, + 66.58108203200015 + ], + [ + -174.034896727, + 66.53146569100011 + ], + [ + -173.8146975919999, + 66.44147187900012 + ], + [ + -173.823394655, + 66.3655019970002 + ], + [ + -173.96150159699997, + 66.32283676800012 + ], + [ + -174.04040564899998, + 66.21928539500004 + ], + [ + -174.175704654, + 66.24794999500017 + ], + [ + -174.0690006789999, + 66.36605201700002 + ], + [ + -174.10839864199994, + 66.45504553300003 + ], + [ + -174.32640071199992, + 66.41968178100007 + ], + [ + -174.59129366299996, + 66.29031816900005 + ], + [ + -174.67300363999993, + 66.44534012700012 + ], + [ + -174.664199624, + 66.55198928400017 + ], + [ + -175.02389558799993, + 66.63482562200016 + ], + [ + -174.99729964199992, + 66.74366497000017 + ], + [ + -174.84049971399995, + 66.7405061660001 + ], + [ + -174.82769769799995, + 66.91524386900011 + ], + [ + -174.98370369199995, + 66.9751835290001 + ], + [ + -175.04530363999993, + 67.07652258300004 + ], + [ + -174.91400162899998, + 67.3187760130001 + ], + [ + -175.06390358599995, + 67.40582358700004 + ], + [ + -175.16879270999996, + 67.34386221100004 + ], + [ + -175.44799759299994, + 67.35047771200004 + ], + [ + -175.24339265499998, + 67.48945419300003 + ], + [ + -175.47599767599996, + 67.62638649600018 + ], + [ + -175.44412263999996, + 67.67965717800013 + ], + [ + -175.778594607, + 67.75851965600015 + ], + [ + -176.04620362999995, + 67.73238689300018 + ], + [ + -175.972396614, + 67.63934206800008 + ], + [ + -175.8058926219999, + 67.61890128900018 + ], + [ + -175.8110966099999, + 67.5088111930001 + ], + [ + -176.27569561299993, + 67.63441250300014 + ], + [ + -176.12602264999998, + 67.84694806400012 + ], + [ + -176.38999962699998, + 67.91564698000013 + ], + [ + -176.638793624, + 67.8909497030001 + ], + [ + -177.0057986079999, + 67.97191000300012 + ], + [ + -176.94749459199994, + 68.06307778400003 + ], + [ + -177.15840171600001, + 68.16843026100008 + ], + [ + -177.3804926459999, + 68.196271926 + ], + [ + -177.42089861599993, + 68.25951539700009 + ], + [ + -177.6786956159999, + 68.19810303600019 + ], + [ + -177.87409973999996, + 68.32439903900013 + ], + [ + -178.057998695, + 68.36431802000016 + ], + [ + -178.11090074199993, + 68.42951464200007 + ], + [ + -178.37280269499993, + 68.45116057200016 + ], + [ + -178.78269972099994, + 68.56668331500009 + ], + [ + -178.84699964699996, + 68.68039053700011 + ], + [ + -179.00509659099995, + 68.7391788590001 + ], + [ + -179.32870460599995, + 68.79703561600019 + ], + [ + -179.55233763799998, + 68.90762175300017 + ], + [ + -179.75192265599992, + 68.91462650900013 + ], + [ + -179.99998860099998, + 68.97818178699998 + ], + [ + -179.99998860099998, + 68.21632361700006 + ], + [ + -179.99998860099998, + 67.45446611800014 + ], + [ + -179.99998860099998, + 66.69260845100018 + ], + [ + -179.99998860099998, + 65.9307504480002 + ], + [ + -179.99998860099998, + 65.06728617700003 + ] + ] + ], + [ + [ + [ + -179.27084365799996, + 71.557844591 + ], + [ + -179.59500169299997, + 71.5764767230001 + ], + [ + -179.99998860099998, + 71.53455782000015 + ], + [ + -179.99998474499992, + 70.9958911240002 + ], + [ + -179.27444469099993, + 70.90643878200007 + ], + [ + -178.88504074699998, + 70.97060560400007 + ], + [ + -177.93890358599992, + 71.03617639400005 + ], + [ + -177.620025646, + 71.11532922100002 + ], + [ + -177.43945262999998, + 71.22562551100015 + ], + [ + -177.71502663999993, + 71.30146614500006 + ], + [ + -178.082214684, + 71.46202854100005 + ], + [ + -178.58917264099998, + 71.56423880900007 + ], + [ + -178.9686275999999, + 71.582855016 + ], + [ + -179.27084365799996, + 71.557844591 + ] + ] + ], + [ + [ + [ + -147.32776690799994, + -86.58918231099995 + ], + [ + -148.56355748699994, + -86.67371752599996 + ], + [ + -147.5712115039999, + -86.78724692899993 + ], + [ + -146.36160835199993, + -86.72662059999988 + ], + [ + -147.32776690799994, + -86.58918231099995 + ] + ] + ], + [ + [ + [ + -146.6050926769999, + -86.17785366099997 + ], + [ + -147.9663204919999, + -86.23244920899987 + ], + [ + -148.51451745799991, + -86.34868462699995 + ], + [ + -146.617596136, + -86.35149860099989 + ], + [ + -146.6050926769999, + -86.17785366099997 + ] + ] + ], + [ + [ + [ + -155.5423365039999, + -86.03415274799988 + ], + [ + -158.72836387399994, + -86.13327667199991 + ], + [ + -156.98625501899994, + -86.23770399399996 + ], + [ + -156.45254147999998, + -86.20646194699992 + ], + [ + -156.73936176399994, + -86.10082327099991 + ], + [ + -155.5423365039999, + -86.03415274799988 + ] + ] + ], + [ + [ + [ + -155.77165205399993, + -85.94015167899988 + ], + [ + -154.50341428099992, + -86.10217929499993 + ], + [ + -152.6042043559999, + -86.05461247899996 + ], + [ + -153.50810194899995, + -86.00517767099996 + ], + [ + -153.76762102799995, + -85.92884448599995 + ], + [ + -155.59390199499998, + -85.97823101499995 + ], + [ + -155.77165205399993, + -85.94015167899988 + ] + ] + ], + [ + [ + [ + -153.08112981499994, + -85.8208860339999 + ], + [ + -153.75182901999992, + -85.71263991499995 + ], + [ + -154.81599435499996, + -85.77440853099989 + ], + [ + -154.7883952489999, + -85.82339926499992 + ], + [ + -153.08112981499994, + -85.8208860339999 + ] + ] + ], + [ + [ + [ + -155.61935298399993, + -85.6302653869999 + ], + [ + -156.36193658899998, + -85.69185245099999 + ], + [ + -156.29084712999997, + -85.7433807239999 + ], + [ + -155.06816232799997, + -85.73194210399993 + ], + [ + -154.696822249, + -85.68495430999997 + ], + [ + -155.61935298399993, + -85.6302653869999 + ] + ] + ], + [ + [ + [ + -160.71700094699995, + 58.80341207600003 + ], + [ + -161.05313002499994, + 58.699590200000046 + ], + [ + -161.07540447199997, + 58.5476994280001 + ], + [ + -160.89056827199994, + 58.57372893500008 + ], + [ + -160.71700094699995, + 58.80341207600003 + ] + ] + ], + [ + [ + [ + -149.98066670699993, + 59.82712784300003 + ], + [ + -150.0402675709999, + 59.72410486500007 + ], + [ + -150.25108566699996, + 59.68805622600013 + ], + [ + -150.25352075499998, + 59.6284438130001 + ], + [ + -149.97182205399997, + 59.719592631000125 + ], + [ + -149.98066670699993, + 59.82712784300003 + ] + ] + ], + [ + [ + [ + -145.37048366699997, + 60.85847107300003 + ], + [ + -145.41502514199993, + 60.76922572899997 + ], + [ + -145.2914275679999, + 60.70617826300003 + ], + [ + -145.23049968099994, + 60.79027339400005 + ], + [ + -145.37048366699997, + 60.85847107300003 + ] + ] + ], + [ + [ + [ + -147.69613658199998, + 61.22889302400006 + ], + [ + -147.93452295699996, + 61.07884742100009 + ], + [ + -147.87930493599998, + 61.03042456100019 + ], + [ + -147.8637174859999, + 60.90601774100014 + ], + [ + -147.56932179399996, + 61.09719694500012 + ], + [ + -147.35745272, + 61.02048041500018 + ], + [ + -147.13672337799994, + 61.02707694500009 + ], + [ + -147.12693763099992, + 61.06769662000005 + ], + [ + -147.31462067999996, + 61.124014795 + ], + [ + -147.63430764099996, + 61.14868173000019 + ], + [ + -147.69613658199998, + 61.22889302400006 + ] + ] + ], + [ + [ + [ + -147.81695603799992, + 61.210576072000094 + ], + [ + -148.013748687, + 61.13779816400012 + ], + [ + -148.396118705, + 61.10307881300008 + ], + [ + -148.46469155799997, + 60.974816751000105 + ], + [ + -148.35055568499996, + 60.97742201400007 + ], + [ + -148.3367774879999, + 61.05701099300012 + ], + [ + -148.15419569999997, + 61.10013829400003 + ], + [ + -147.97498661599994, + 61.110374686 + ], + [ + -147.81695603799992, + 61.210576072000094 + ] + ] + ], + [ + [ + [ + -150.7830966409999, + 62.84596180500006 + ], + [ + -151.01588472399993, + 62.80803788400004 + ], + [ + -151.02635170899998, + 62.721184268 + ], + [ + -151.22398357499995, + 62.648122068000134 + ], + [ + -151.16469986999994, + 62.50354976200015 + ], + [ + -150.9804733199999, + 62.487102156000105 + ], + [ + -150.85234024199994, + 62.40644858900015 + ], + [ + -150.66888818199993, + 62.50456670500017 + ], + [ + -150.47153523999995, + 62.6509578460001 + ], + [ + -150.52436857999996, + 62.71706791500003 + ], + [ + -150.67196668699992, + 62.75317966900013 + ], + [ + -150.7830966409999, + 62.84596180500006 + ] + ] + ], + [ + [ + [ + -156.796431584, + 62.771390835000034 + ], + [ + -156.70892035799997, + 62.79519418799998 + ], + [ + -156.64362223199998, + 62.92577908200013 + ], + [ + -156.87016514699994, + 62.98003879900011 + ], + [ + -157.17267093499996, + 62.95779301600004 + ], + [ + -157.26090315499994, + 62.814743051 + ], + [ + -157.39694173399994, + 62.67890354600007 + ], + [ + -157.38036347099995, + 62.55600467400012 + ], + [ + -157.23200820299996, + 62.5607685830002 + ], + [ + -157.05606014999992, + 62.69905373199998 + ], + [ + -156.796431584, + 62.771390835000034 + ] + ] + ], + [ + [ + [ + -150.44515959499995, + 63.06448036799998 + ], + [ + -150.33601363699992, + 62.990406974999985 + ], + [ + -150.46005256099994, + 62.95901875900012 + ], + [ + -150.6138765769999, + 62.797283567000136 + ], + [ + -150.40338388599994, + 62.701551728000084 + ], + [ + -150.1740920299999, + 62.85913797200004 + ], + [ + -150.00115513899996, + 62.93264595200003 + ], + [ + -150.23310867599994, + 63.04947273800008 + ], + [ + -150.44515959499995, + 63.06448036799998 + ] + ] + ], + [ + [ + [ + -155.49126939899992, + 63.458377882000036 + ], + [ + -155.63580661799992, + 63.511115438000104 + ], + [ + -155.65348142899995, + 63.57594514099998 + ], + [ + -156.0010914769999, + 63.58564120300008 + ], + [ + -156.10157498699996, + 63.500906624000095 + ], + [ + -156.08175653599994, + 63.349307248000116 + ], + [ + -156.18158538299994, + 63.3066536230001 + ], + [ + -156.11311761499996, + 63.15001219499999 + ], + [ + -155.76472129199996, + 63.290894642000126 + ], + [ + -155.51465238799992, + 63.34664600000019 + ], + [ + -155.49126939899992, + 63.458377882000036 + ] + ] + ], + [ + [ + [ + -160.13517509399998, + 63.529518640000106 + ], + [ + -160.1643989899999, + 63.34368869899998 + ], + [ + -160.05234032099992, + 63.28936514600008 + ], + [ + -159.82852879499993, + 63.3440293110001 + ], + [ + -159.68867427099994, + 63.449688872000195 + ], + [ + -159.80940121999996, + 63.495391949000066 + ], + [ + -159.93537517799996, + 63.62582211900019 + ], + [ + -160.00691217399995, + 63.85376192000018 + ], + [ + -160.15222652599994, + 63.88163930000013 + ], + [ + -160.2076903349999, + 63.77066201100013 + ], + [ + -160.37398471899996, + 63.61034911200005 + ], + [ + -160.59588453299997, + 63.530640245000086 + ], + [ + -160.37522346499995, + 63.48790550700005 + ], + [ + -160.13517509399998, + 63.529518640000106 + ] + ] + ], + [ + [ + [ + -153.40010293599994, + 64.06727684700013 + ], + [ + -153.31085866799998, + 64.07319784300012 + ], + [ + -152.94421786899997, + 64.01017579100017 + ], + [ + -152.76318697099993, + 64.00579230700004 + ], + [ + -152.47477934199992, + 64.11723003900005 + ], + [ + -152.06359811199994, + 64.1084946250001 + ], + [ + -151.56536165899996, + 64.26055411300018 + ], + [ + -151.51984294599995, + 64.37688223600009 + ], + [ + -151.658642033, + 64.45983064400014 + ], + [ + -151.91136536799993, + 64.52131580600013 + ], + [ + -152.01306740799996, + 64.58928192100018 + ], + [ + -151.90192593199998, + 64.66829319200014 + ], + [ + -152.15142153099995, + 64.69285869200002 + ], + [ + -152.41498393199993, + 64.611746358 + ], + [ + -152.31503704199994, + 64.52299188700016 + ], + [ + -152.18282105499995, + 64.49802561899997 + ], + [ + -151.930520583, + 64.40029278300005 + ], + [ + -151.87621831399994, + 64.31795046200017 + ], + [ + -152.38162675899997, + 64.29039063800013 + ], + [ + -152.94254203699995, + 64.204204817 + ], + [ + -153.21615071899993, + 64.17890369200012 + ], + [ + -153.66039178899996, + 64.16230275800001 + ], + [ + -153.74364226499995, + 64.2141555020001 + ], + [ + -153.941260821, + 64.17475544299998 + ], + [ + -153.90379142699993, + 63.997811833000185 + ], + [ + -154.04215273499992, + 63.774300618000154 + ], + [ + -154.21448216999997, + 63.743359726 + ], + [ + -154.49338889299997, + 63.78883826400005 + ], + [ + -154.56716646, + 63.746117380999976 + ], + [ + -154.55136166499997, + 63.62605159600008 + ], + [ + -155.09655380999993, + 63.514655742000116 + ], + [ + -154.89169329499998, + 63.410530390000076 + ], + [ + -154.66436144199994, + 63.47381484400012 + ], + [ + -154.47414874299992, + 63.495667240000046 + ], + [ + -154.2069156709999, + 63.43666161900012 + ], + [ + -153.930198855, + 63.58220170300007 + ], + [ + -153.74213836299995, + 63.70788492400004 + ], + [ + -153.43559283499997, + 63.7853681150001 + ], + [ + -153.33038132799996, + 63.89155577800017 + ], + [ + -153.40010293599994, + 64.06727684700013 + ] + ] + ], + [ + [ + [ + -161.06499750999998, + 64.2839631810001 + ], + [ + -160.96971922599994, + 64.28725971600011 + ], + [ + -160.71298925699995, + 64.58713806900005 + ], + [ + -160.6767105589999, + 64.68361177000003 + ], + [ + -160.48646525499996, + 64.95040916700003 + ], + [ + -160.693644263, + 65.05574644600011 + ], + [ + -160.81315669299997, + 65.17378026 + ], + [ + -161.0392466289999, + 65.15439221700018 + ], + [ + -161.13288686799999, + 65.0206307310001 + ], + [ + -161.26579585999994, + 64.96883080800006 + ], + [ + -161.48259096899992, + 64.94678855000006 + ], + [ + -161.33246480199995, + 64.8256122160002 + ], + [ + -161.19522534299998, + 64.91818128200009 + ], + [ + -160.88421619199997, + 64.81649043300013 + ], + [ + -160.78342520499996, + 64.71716318600016 + ], + [ + -160.80207055899993, + 64.61035410300019 + ], + [ + -161.02420679899996, + 64.4997177140001 + ], + [ + -161.19805223099993, + 64.49662677400016 + ], + [ + -161.38864314899996, + 64.53278128500011 + ], + [ + -161.47397033999994, + 64.45247218800006 + ], + [ + -161.25667939599998, + 64.38399041200006 + ], + [ + -161.06499750999998, + 64.2839631810001 + ] + ] + ], + [ + [ + [ + -158.89283743199996, + 64.75215469400007 + ], + [ + -158.74828488999992, + 64.76518470900004 + ], + [ + -158.69436546599994, + 64.85122304500015 + ], + [ + -158.79273165199996, + 64.87871739000013 + ], + [ + -158.96809029699992, + 64.83160881900011 + ], + [ + -159.130239329, + 64.83037000200005 + ], + [ + -159.07662153599992, + 64.94580302000008 + ], + [ + -159.34016523699995, + 65.05120240999997 + ], + [ + -159.0834196989999, + 65.11790505100015 + ], + [ + -159.09647309399992, + 65.2896075880002 + ], + [ + -159.32595168899996, + 65.27550069600005 + ], + [ + -159.53539234599998, + 65.09502341200005 + ], + [ + -159.59176876999996, + 64.98970769400012 + ], + [ + -159.88090631599997, + 64.90084831400003 + ], + [ + -159.7550293049999, + 64.75377263500013 + ], + [ + -159.96866624399996, + 64.71301243900018 + ], + [ + -160.193536722, + 64.54324415100001 + ], + [ + -160.17919578999994, + 64.45393500100005 + ], + [ + -159.87081884199995, + 64.50004773400008 + ], + [ + -159.84504285699992, + 64.42499757700011 + ], + [ + -160.05485468299995, + 64.30976786000008 + ], + [ + -160.14522124099994, + 64.2199446640002 + ], + [ + -160.00786983599997, + 64.18594751000012 + ], + [ + -159.86734320399995, + 64.24512863700016 + ], + [ + -159.69292672599997, + 64.224457492 + ], + [ + -159.56942809699999, + 64.28195950200012 + ], + [ + -159.19503684199998, + 64.31332203599999 + ], + [ + -158.95660876299993, + 64.39474317200018 + ], + [ + -158.89689309599999, + 64.44685420000008 + ], + [ + -158.9630287589999, + 64.53825889000012 + ], + [ + -158.89283743199996, + 64.75215469400007 + ] + ] + ], + [ + [ + [ + -154.2824493649999, + 65.04724629600003 + ], + [ + -154.00226031299994, + 65.07739420800016 + ], + [ + -153.83043288099995, + 65.14744128300003 + ], + [ + -153.5781635879999, + 65.16778249600009 + ], + [ + -153.53022629699998, + 65.26686271800014 + ], + [ + -153.30905842399997, + 65.36371047900013 + ], + [ + -152.92078416699997, + 65.2991536780001 + ], + [ + -152.80604304799996, + 65.35815072499997 + ], + [ + -152.902291318, + 65.43376839300015 + ], + [ + -152.638586911, + 65.44238351500007 + ], + [ + -152.54060712599997, + 65.49537746200019 + ], + [ + -152.76717521499995, + 65.59063582599998 + ], + [ + -153.02492219199996, + 65.57679572100017 + ], + [ + -153.40002154199996, + 65.42681722300017 + ], + [ + -153.55329315899994, + 65.43427206300004 + ], + [ + -153.8897192169999, + 65.30024145600004 + ], + [ + -153.90503129799993, + 65.36802446200011 + ], + [ + -153.78095885499997, + 65.49130738400004 + ], + [ + -154.06032114299992, + 65.49332547 + ], + [ + -154.30385527699994, + 65.42529148900007 + ], + [ + -154.4554113799999, + 65.42405986200004 + ], + [ + -154.84797132599996, + 65.20633719900002 + ], + [ + -154.93443134799995, + 65.1048625730001 + ], + [ + -155.15312366899994, + 65.01014459000015 + ], + [ + -155.13291950499996, + 64.93473583800005 + ], + [ + -154.9942811249999, + 64.92822742600015 + ], + [ + -154.5691200429999, + 65.04523665200003 + ], + [ + -154.2824493649999, + 65.04724629600003 + ] + ] + ], + [ + [ + [ + -149.94823156399994, + 65.53838882600019 + ], + [ + -150.22896470999993, + 65.53837938800012 + ], + [ + -150.25957236599996, + 65.6391913600001 + ], + [ + -150.08509645099994, + 65.6761031900001 + ], + [ + -150.04325151899997, + 65.77902675600018 + ], + [ + -150.106028532, + 65.83838208100008 + ], + [ + -150.3404542529999, + 65.8161735760001 + ], + [ + -150.45971120999997, + 65.9190405540001 + ], + [ + -150.71716244399994, + 65.86963190100005 + ], + [ + -150.83469460699993, + 65.94342328400012 + ], + [ + -151.17616679599996, + 65.90206109000013 + ], + [ + -151.44436703699992, + 65.89324008600005 + ], + [ + -151.7426686, + 65.91471859300003 + ], + [ + -152.41981681599995, + 65.8858523580002 + ], + [ + -152.119096066, + 65.70491168300015 + ], + [ + -151.88416479699993, + 65.66937312000016 + ], + [ + -151.38781289399998, + 65.668810285 + ], + [ + -151.44775081699993, + 65.59651143700006 + ], + [ + -151.80212915099997, + 65.54816362700012 + ], + [ + -152.07716379299998, + 65.4461302250001 + ], + [ + -151.95439096299998, + 65.34719455800007 + ], + [ + -151.20870135899992, + 65.31881020500015 + ], + [ + -151.20063937499998, + 65.22258154700012 + ], + [ + -151.07401109399993, + 65.15715811200016 + ], + [ + -150.86808554699994, + 65.15874593100017 + ], + [ + -150.48417622299996, + 65.25756381500014 + ], + [ + -149.4636832059999, + 65.26666991100006 + ], + [ + -149.4494652539999, + 65.4501619130001 + ], + [ + -149.02339182799992, + 65.5117630690001 + ], + [ + -148.94548859999995, + 65.61453407099998 + ], + [ + -149.53679986799995, + 65.53565942500006 + ], + [ + -149.64177322499998, + 65.59209842000007 + ], + [ + -149.94823156399994, + 65.53838882600019 + ] + ] + ], + [ + [ + [ + -155.84132264199997, + 66.22947632699999 + ], + [ + -156.11244787499996, + 66.36365074100013 + ], + [ + -156.49312735799998, + 66.48104993900012 + ], + [ + -156.62728697699993, + 66.42866546100015 + ], + [ + -156.2426860019999, + 66.17685235400018 + ], + [ + -156.20411611399993, + 66.09689950199999 + ], + [ + -155.86494476099992, + 66.07230575200009 + ], + [ + -155.897657933, + 66.15786607000007 + ], + [ + -155.84132264199997, + 66.22947632699999 + ] + ] + ], + [ + [ + [ + -157.85028658899995, + 66.34716942000006 + ], + [ + -157.79605407999992, + 66.30933051100004 + ], + [ + -157.45584662499996, + 66.24275169000003 + ], + [ + -157.21736289599994, + 66.23585156900009 + ], + [ + -156.8297076709999, + 66.11796365900017 + ], + [ + -156.74852735299996, + 66.18613706700006 + ], + [ + -156.86434727699995, + 66.23784141200014 + ], + [ + -156.81930643599995, + 66.31808175800012 + ], + [ + -157.08626279599991, + 66.38408282200004 + ], + [ + -157.2563522179999, + 66.45367990900019 + ], + [ + -157.35811309699997, + 66.37068775900008 + ], + [ + -157.84066402899995, + 66.39151338300013 + ], + [ + -157.85028658899995, + 66.34716942000006 + ] + ] + ], + [ + [ + [ + -153.83874433499992, + 67.04670019200012 + ], + [ + -154.0602435369999, + 67.04621576700009 + ], + [ + -154.30952003199994, + 66.91751000700003 + ], + [ + -153.54043217399993, + 66.91503380000006 + ], + [ + -153.17969652699995, + 66.81937713200011 + ], + [ + -153.01507397099994, + 66.82746116200019 + ], + [ + -152.54435333299995, + 66.94228112600013 + ], + [ + -152.506135787, + 66.98821642900003 + ], + [ + -153.129204017, + 67.0558005960001 + ], + [ + -153.40151138899995, + 67.0122765100001 + ], + [ + -153.83874433499992, + 67.04670019200012 + ] + ] + ], + [ + [ + [ + -156.613423, + 66.95433846100008 + ], + [ + -155.56924618599993, + 66.8778027520001 + ], + [ + -155.320336978, + 66.91865469500004 + ], + [ + -155.21587628199993, + 67.00980217 + ], + [ + -155.49036745499998, + 67.01656527200004 + ], + [ + -156.61016886799996, + 67.08187666500015 + ], + [ + -157.2245028399999, + 67.07949521600005 + ], + [ + -157.26839992299992, + 66.99724119900014 + ], + [ + -156.613423, + 66.95433846100008 + ] + ] + ], + [ + [ + [ + -130.97425516099997, + 55.67028655500019 + ], + [ + -131.04871362799997, + 55.765299085000095 + ], + [ + -131.3550895049999, + 55.764114589000144 + ], + [ + -131.40596911499995, + 55.62970966000006 + ], + [ + -131.07262348599994, + 55.509978333000106 + ], + [ + -130.98858284299985, + 55.51625062800008 + ], + [ + -130.97425516099997, + 55.67028655500019 + ] + ] + ], + [ + [ + [ + -129.95974681199988, + 56.602366168000174 + ], + [ + -129.8740535839999, + 56.522250874000065 + ], + [ + -129.91130058199985, + 56.436852356000145 + ], + [ + -130.1010586559999, + 56.4065397060001 + ], + [ + -130.07777356099984, + 56.3242542270001 + ], + [ + -130.12826564299985, + 56.25499322000002 + ], + [ + -130.03857458499994, + 56.114799351000045 + ], + [ + -130.29087858799994, + 56.058259726000074 + ], + [ + -130.40844768799997, + 56.09474849800006 + ], + [ + -130.65449348199996, + 56.041638952000085 + ], + [ + -130.62545506499998, + 55.98960685600014 + ], + [ + -130.76319913199995, + 55.88398473600006 + ], + [ + -130.923792043, + 55.80950976100007 + ], + [ + -130.79718987499996, + 55.771032236999986 + ], + [ + -130.527308383, + 55.75008199800004 + ], + [ + -130.46818126899996, + 55.68602638600015 + ], + [ + -130.70955721399991, + 55.62304158000006 + ], + [ + -130.63134765799992, + 55.5165521990001 + ], + [ + -130.63158145699992, + 55.372891689000085 + ], + [ + -130.48615200799998, + 55.38106785500014 + ], + [ + -130.15508464799984, + 55.35718944200016 + ], + [ + -130.4185180689999, + 55.2117715330001 + ], + [ + -130.52126939299995, + 55.010513028000105 + ], + [ + -130.65705187199995, + 54.926960635000114 + ], + [ + -130.6213137179999, + 54.887757657000066 + ], + [ + -130.14187161499996, + 55.16051521300005 + ], + [ + -130.11602152199998, + 55.04679474500011 + ], + [ + -130.00961334699997, + 55.011564059000136 + ], + [ + -129.70076978599997, + 54.989543647000175 + ], + [ + -129.37821818599997, + 55.16511076200004 + ], + [ + -129.2274801439999, + 55.226752276000184 + ], + [ + -129.10735876799993, + 55.349221999000065 + ], + [ + -129.0401916849999, + 55.48027894700016 + ], + [ + -129.08508451499983, + 55.56245307500012 + ], + [ + -129.26399049699995, + 55.59549592500008 + ], + [ + -129.1809564589999, + 55.72530157200015 + ], + [ + -129.38787672899997, + 55.81512092000008 + ], + [ + -129.45783989199992, + 56.036421646000065 + ], + [ + -129.38182057999995, + 56.12909583400017 + ], + [ + -129.4228794249999, + 56.39551809800014 + ], + [ + -129.56753699699993, + 56.45153529900006 + ], + [ + -129.58880667799997, + 56.498370181999974 + ], + [ + -129.7634558929999, + 56.49837868500009 + ], + [ + -129.81239253899992, + 56.57817646900003 + ], + [ + -129.95974681199988, + 56.602366168000174 + ] + ] + ], + [ + [ + [ + -134.9657018709999, + 57.376358688000096 + ], + [ + -135.32482410199998, + 57.44252304500009 + ], + [ + -135.429845275, + 57.423046009000075 + ], + [ + -135.30249519299997, + 57.19075494800012 + ], + [ + -135.30813556899994, + 57.12692727900003 + ], + [ + -135.08179677599998, + 57.02646781300007 + ], + [ + -135.26633526299992, + 56.981675391000124 + ], + [ + -135.2282735949999, + 56.862555423 + ], + [ + -134.91521056599998, + 56.828840424000134 + ], + [ + -134.80315243899992, + 56.737524189000055 + ], + [ + -134.88143859099995, + 56.57644651000015 + ], + [ + -134.84751321399995, + 56.43176199800013 + ], + [ + -134.64426491899997, + 56.23804056900008 + ], + [ + -134.639046851, + 56.479504202999976 + ], + [ + -134.61048328399988, + 56.632458750000126 + ], + [ + -134.69271069199993, + 56.89249509900014 + ], + [ + -134.85803816999993, + 57.267722342000184 + ], + [ + -134.93789272199996, + 57.267676876000166 + ], + [ + -134.9657018709999, + 57.376358688000096 + ] + ] + ], + [ + [ + [ + -132.40942356099993, + 57.96211867800014 + ], + [ + -132.49028059599993, + 57.898983501000146 + ], + [ + -132.52896156999998, + 57.79254607100012 + ], + [ + -132.44190963799986, + 57.67069331500005 + ], + [ + -132.45870965399996, + 57.58866264600016 + ], + [ + -132.19924968499998, + 57.4834841780002 + ], + [ + -132.2018735559999, + 57.38234612200006 + ], + [ + -132.111892652, + 57.32175535599998 + ], + [ + -132.078460593, + 57.22622831400014 + ], + [ + -132.13555862099997, + 57.155722930000024 + ], + [ + -131.95404062799986, + 57.09535411600007 + ], + [ + -131.88623069599993, + 56.91567980700012 + ], + [ + -131.938720688, + 56.85538291000012 + ], + [ + -132.18243357599994, + 56.82734410300003 + ], + [ + -132.07056697199994, + 56.76877877900006 + ], + [ + -132.05027888599994, + 56.709550776000185 + ], + [ + -132.28286483199986, + 56.59256628300011 + ], + [ + -132.16395332399998, + 56.46439395200002 + ], + [ + -132.05094219699993, + 56.406865212000014 + ], + [ + -131.9119040889999, + 56.394195008999986 + ], + [ + -131.82679170299997, + 56.30445743100006 + ], + [ + -131.73852661199993, + 56.34524497300015 + ], + [ + -131.61230586399995, + 56.25802698300015 + ], + [ + -131.35258743799994, + 56.34549701800012 + ], + [ + -131.23584342499998, + 56.219361463000155 + ], + [ + -131.52920779899995, + 56.15701012800014 + ], + [ + -131.53150849899987, + 56.08564890700006 + ], + [ + -131.37376385199997, + 56.072985120000055 + ], + [ + -131.2175904539999, + 56.1143527160001 + ], + [ + -130.98121167099993, + 56.20880287300014 + ], + [ + -130.88246552599992, + 56.299256434000085 + ], + [ + -130.79295713699997, + 56.29697837400005 + ], + [ + -130.940907074, + 56.13137172400013 + ], + [ + -131.03414250799995, + 55.88232417100005 + ], + [ + -130.92266218899994, + 55.90702427700006 + ], + [ + -130.76203574, + 56.0448400520001 + ], + [ + -130.56663565899993, + 56.058064763000175 + ], + [ + -130.5352016779999, + 56.128581715000166 + ], + [ + -130.39353963499997, + 56.18136725300013 + ], + [ + -130.32534765599996, + 56.35947314000009 + ], + [ + -130.41838057899997, + 56.44340264600015 + ], + [ + -130.15660066699996, + 56.48108164700011 + ], + [ + -130.33363366999998, + 56.60996045000002 + ], + [ + -130.57382364899996, + 56.6147755450001 + ], + [ + -130.655276787, + 56.568492825000135 + ], + [ + -130.7858868389999, + 56.57756614500016 + ], + [ + -130.84578087999995, + 56.72312149300012 + ], + [ + -131.09841840799993, + 56.897258608000186 + ], + [ + -130.99909969099997, + 57.11609344800007 + ], + [ + -131.02386359999997, + 57.18906754100004 + ], + [ + -131.16491662399994, + 57.33487795700012 + ], + [ + -131.51507598599994, + 57.41015391400015 + ], + [ + -131.627751097, + 57.4823965130002 + ], + [ + -131.638871436, + 57.56008721500007 + ], + [ + -131.7244407249999, + 57.595356760000186 + ], + [ + -131.99359004599995, + 57.55201192099997 + ], + [ + -132.0982208179999, + 57.63768567000005 + ], + [ + -132.36843698899992, + 57.762649383 + ], + [ + -132.40942356099993, + 57.96211867800014 + ] + ] + ], + [ + [ + [ + -132.51872257199994, + 57.062150045000124 + ], + [ + -132.71912488199996, + 57.09652601200003 + ], + [ + -132.7471410569999, + 56.84961710900012 + ], + [ + -132.58078192199991, + 56.785050266000155 + ], + [ + -132.50338754499995, + 56.84090233400019 + ], + [ + -132.600204562, + 56.97929560200015 + ], + [ + -132.51872257199994, + 57.062150045000124 + ] + ] + ], + [ + [ + [ + -132.87747154899995, + 57.58215124800017 + ], + [ + -132.98402664199995, + 57.33160850500019 + ], + [ + -132.83290061099996, + 57.27449366000019 + ], + [ + -132.75314361699998, + 57.423676281000155 + ], + [ + -132.89985659499996, + 57.55836558600015 + ], + [ + -132.87747154899995, + 57.58215124800017 + ] + ] + ], + [ + [ + [ + -136.27723873799994, + 58.09781302200008 + ], + [ + -136.31517592299997, + 58.06949175000011 + ], + [ + -135.78656933299987, + 57.824736699000084 + ], + [ + -135.433006853, + 57.685204567000085 + ], + [ + -135.12466480799998, + 57.625276639000106 + ], + [ + -135.53312220099997, + 57.81578171200016 + ], + [ + -135.70302977599994, + 57.94116948400017 + ], + [ + -135.8229824249999, + 58.077999157000136 + ], + [ + -135.72280665099998, + 58.1390379180001 + ], + [ + -136.17057680599999, + 58.19542906300006 + ], + [ + -136.27723873799994, + 58.09781302200008 + ] + ] + ], + [ + [ + [ + -134.93986464399995, + 59.109111720000044 + ], + [ + -135.05863956399992, + 59.047181693000084 + ], + [ + -135.05777509299998, + 58.95953019600017 + ], + [ + -134.94167796199997, + 58.958428194000135 + ], + [ + -134.89140952399993, + 58.86181744500004 + ], + [ + -134.77565737199996, + 58.82929260500009 + ], + [ + -134.89653362699988, + 58.71921857500007 + ], + [ + -134.848378686, + 58.603044563000196 + ], + [ + -134.74567752299998, + 58.5327720360001 + ], + [ + -134.63590235099986, + 58.34097690400017 + ], + [ + -134.51712052899995, + 58.35684055900009 + ], + [ + -134.2704923529999, + 58.25473215700015 + ], + [ + -134.1425668739999, + 58.27032805500005 + ], + [ + -134.036387511, + 58.20203768000016 + ], + [ + -133.87426952999994, + 57.97844952200006 + ], + [ + -133.65361427399995, + 58.019690304000164 + ], + [ + -133.51500763099995, + 57.914347638000095 + ], + [ + -133.44145100099996, + 57.812270690000105 + ], + [ + -133.1406293299999, + 57.694717596000146 + ], + [ + -133.05828189299996, + 57.615817447000154 + ], + [ + -132.93531757699992, + 57.66898810100014 + ], + [ + -132.956237634, + 57.72308590900019 + ], + [ + -133.13046269999995, + 57.71854962300017 + ], + [ + -133.17150854499994, + 57.77418953500006 + ], + [ + -133.06677264099994, + 57.877639822000106 + ], + [ + -133.30444368599996, + 57.950395412000034 + ], + [ + -133.07839968199988, + 58.13544151600007 + ], + [ + -132.95338460199991, + 58.068655349000096 + ], + [ + -132.9042505559999, + 57.98685434400005 + ], + [ + -132.81433067199998, + 57.952501449000124 + ], + [ + -132.60519363799995, + 58.015030280000076 + ], + [ + -132.5662685829999, + 58.10575030000007 + ], + [ + -132.37480160699994, + 58.16113020500006 + ], + [ + -132.36111462899999, + 58.08169876400012 + ], + [ + -132.268079721, + 57.974047329000086 + ], + [ + -132.16846928999996, + 57.98042579300011 + ], + [ + -132.01101700499999, + 58.11098199800006 + ], + [ + -132.20890513999996, + 58.09842898000005 + ], + [ + -132.2156031629999, + 58.225165429000185 + ], + [ + -132.48524306199988, + 58.29958362899998 + ], + [ + -132.59324637999998, + 58.41759728900007 + ], + [ + -133.0604518419999, + 58.38728677800009 + ], + [ + -133.16191108199996, + 58.429577459000086 + ], + [ + -133.06062618899995, + 58.63842447800005 + ], + [ + -133.2561961309999, + 58.686323218000155 + ], + [ + -133.52549760699986, + 58.861078967000026 + ], + [ + -133.7525786189999, + 58.78143244700016 + ], + [ + -133.7332606789999, + 58.716096182000115 + ], + [ + -133.87304668399992, + 58.597451013000125 + ], + [ + -134.0394286359999, + 58.53483467600006 + ], + [ + -133.99699357499998, + 58.42481096500006 + ], + [ + -134.27056866899994, + 58.36105385100018 + ], + [ + -134.3625635759999, + 58.437579453000126 + ], + [ + -134.49388167999996, + 58.451640934000125 + ], + [ + -134.6684727, + 58.55849762700012 + ], + [ + -134.762252618, + 58.68344498100009 + ], + [ + -134.57528655599992, + 58.75003618500017 + ], + [ + -134.61611966799995, + 58.816773568000144 + ], + [ + -134.52365067999995, + 58.89729331500007 + ], + [ + -134.85374461199996, + 58.959909485000196 + ], + [ + -134.83297760799996, + 59.063406208 + ], + [ + -134.93986464399995, + 59.109111720000044 + ] + ] + ], + [ + [ + [ + -136.82165555199998, + 58.47239368800001 + ], + [ + -136.956324828, + 58.425703936000104 + ], + [ + -136.677598338, + 58.33974629200014 + ], + [ + -136.82165555199998, + 58.47239368800001 + ] + ] + ], + [ + [ + [ + -136.52228449299997, + 58.59637661100004 + ], + [ + -136.65739455699998, + 58.484608133 + ], + [ + -136.50628784199995, + 58.44804724700009 + ], + [ + -136.45090393499993, + 58.53821095500007 + ], + [ + -136.52228449299997, + 58.59637661100004 + ] + ] + ], + [ + [ + [ + -137.477294557, + 58.69851346400014 + ], + [ + -137.70681755299995, + 58.812504497000134 + ], + [ + -137.78493632799996, + 58.799475160999975 + ], + [ + -137.51540454899998, + 58.61918706300003 + ], + [ + -137.477294557, + 58.69851346400014 + ] + ] + ], + [ + [ + [ + -136.53053912299993, + 58.74651297100013 + ], + [ + -136.4969935869999, + 58.606494796000106 + ], + [ + -136.34942089399993, + 58.68978572600008 + ], + [ + -136.53053912299993, + 58.74651297100013 + ] + ] + ], + [ + [ + [ + -137.03226651799986, + 58.87998561500012 + ], + [ + -136.90690654899993, + 58.88164782300015 + ], + [ + -136.837615702, + 58.78597929400007 + ], + [ + -136.66160562599993, + 58.75751334500012 + ], + [ + -136.48924820499997, + 58.79664180300006 + ], + [ + -136.74265740099992, + 58.87813111600008 + ], + [ + -137.03226651799986, + 58.87998561500012 + ] + ] + ], + [ + [ + [ + -137.86323560099993, + 59.020473597000034 + ], + [ + -138.065441239, + 58.99833202300016 + ], + [ + -137.84961002199992, + 58.84261458000003 + ], + [ + -137.7634126659999, + 58.84978653200017 + ], + [ + -137.78236364699984, + 58.95824249200001 + ], + [ + -137.86323560099993, + 59.020473597000034 + ] + ] + ], + [ + [ + [ + -136.26583864399993, + 59.14599695600015 + ], + [ + -136.30203270799996, + 59.08489908400003 + ], + [ + -136.06593522299994, + 58.93738410100019 + ], + [ + -136.07483009499998, + 59.03168011899999 + ], + [ + -136.22393767799997, + 59.086562054000126 + ], + [ + -136.26583864399993, + 59.14599695600015 + ] + ] + ], + [ + [ + [ + -135.41955001399998, + 59.82382399900001 + ], + [ + -135.66391108699992, + 59.86978534500008 + ], + [ + -135.82562326399994, + 59.864298648000045 + ], + [ + -136.03232054699998, + 59.76311309600004 + ], + [ + -136.49865558899995, + 59.75101763900017 + ], + [ + -136.44186298099999, + 59.577439174000176 + ], + [ + -136.56678769299987, + 59.4995828480001 + ], + [ + -136.41165157299997, + 59.36960702200008 + ], + [ + -136.46774259899996, + 59.27355778700007 + ], + [ + -136.26756263399994, + 59.25433389300002 + ], + [ + -136.04952955099992, + 59.167119687000195 + ], + [ + -135.96827655499993, + 59.177469158 + ], + [ + -135.78999364199996, + 59.09355809300018 + ], + [ + -135.61379966699997, + 59.11927813099999 + ], + [ + -135.42486093199994, + 58.94549442500016 + ], + [ + -135.36597554099995, + 59.028531325000074 + ], + [ + -135.33412108, + 59.17927678199999 + ], + [ + -135.1857391719999, + 59.04804044400015 + ], + [ + -135.08584554599997, + 59.078405624000084 + ], + [ + -135.031509691, + 59.20773235500013 + ], + [ + -135.0349115699999, + 59.35796472600009 + ], + [ + -135.21658362199997, + 59.36127172200014 + ], + [ + -135.23248258299998, + 59.43390225400003 + ], + [ + -135.01470999699995, + 59.56758733900011 + ], + [ + -135.24635774999996, + 59.70507678400014 + ], + [ + -135.44110723499983, + 59.790319913000076 + ], + [ + -135.41955001399998, + 59.82382399900001 + ] + ] + ], + [ + [ + [ + -141.1199155259999, + 68.19046656300009 + ], + [ + -141.53147009199995, + 68.14422148900002 + ], + [ + -141.77294845499995, + 68.07031255900006 + ], + [ + -141.76625562099986, + 68.00919649500008 + ], + [ + -141.970528694, + 67.9682640600002 + ], + [ + -142.17128853399993, + 67.71547878500007 + ], + [ + -141.93479503899994, + 67.6338687810001 + ], + [ + -141.31102444599998, + 67.49055688700014 + ], + [ + -141.12174064599992, + 67.46976922200014 + ], + [ + -141.02393322699993, + 67.543306991 + ], + [ + -141.07053835199997, + 67.87193934700014 + ], + [ + -141.02601707499997, + 68.14083475100011 + ], + [ + -141.1199155259999, + 68.19046656300009 + ] + ] + ], + [ + [ + [ + -135.98985327499997, + 69.0309870420001 + ], + [ + -136.02897070699993, + 68.9371107290001 + ], + [ + -135.66629457999989, + 68.89951592600016 + ], + [ + -135.905181, + 69.02605047300011 + ], + [ + -135.98985327499997, + 69.0309870420001 + ] + ] + ], + [ + [ + [ + -139.32413869699985, + 69.55013194000009 + ], + [ + -139.10561599399995, + 69.51574485400005 + ], + [ + -138.96319981099992, + 69.62182982500013 + ], + [ + -139.14489555999984, + 69.63682393800008 + ], + [ + -139.32413869699985, + 69.55013194000009 + ] + ] + ], + [ + [ + [ + -126.66762907999998, + -85.39807836299997 + ], + [ + -125.89569589299992, + -85.52298318699997 + ], + [ + -124.598941363, + -85.49533630599996 + ], + [ + -126.17902797099998, + -85.38390807999997 + ], + [ + -126.66762907999998, + -85.39807836299997 + ] + ] + ], + [ + [ + [ + -126.79444281699995, + 69.84935478500017 + ], + [ + -126.87905371099998, + 69.98422752300019 + ], + [ + -127.16242835799994, + 70.23555038900014 + ], + [ + -127.49950620499999, + 70.40504659700014 + ], + [ + -128.0175341329999, + 70.56637983000007 + ], + [ + -128.14046724399986, + 70.50289865400009 + ], + [ + -128.20679946699988, + 70.36855644600013 + ], + [ + -128.02623162699996, + 70.27087720700013 + ], + [ + -127.591197, + 70.23581680700016 + ], + [ + -127.75359931499997, + 70.18820455500014 + ], + [ + -128.2697887849999, + 70.1412633220001 + ], + [ + -128.38521198499996, + 70.09500002000016 + ], + [ + -128.3264727039999, + 70.01043759900006 + ], + [ + -128.3835178719999, + 69.93774169600016 + ], + [ + -128.58789386799992, + 69.87393108300006 + ], + [ + -128.81356433199983, + 69.74804941200011 + ], + [ + -129.14095520299998, + 69.68875515200006 + ], + [ + -129.147552535, + 69.85076687300011 + ], + [ + -129.58467397299995, + 69.81253223000016 + ], + [ + -130.07345169299998, + 69.70560961500007 + ], + [ + -130.32161075099998, + 69.68601007500018 + ], + [ + -130.619804489, + 69.42690238800014 + ], + [ + -130.90372595099996, + 69.35926383499998 + ], + [ + -131.0267757939999, + 69.45990307199997 + ], + [ + -130.7897468, + 69.65063214200018 + ], + [ + -130.6136803049999, + 69.68240532100003 + ], + [ + -130.33712308299994, + 69.81658736700007 + ], + [ + -130.0752752979999, + 69.86274316600009 + ], + [ + -129.52263531699998, + 69.99536381700017 + ], + [ + -129.37227231699995, + 70.10087695400006 + ], + [ + -129.5672224559999, + 70.17628562900018 + ], + [ + -129.78143706299988, + 70.20633977400007 + ], + [ + -129.87568668799986, + 70.08675169400016 + ], + [ + -130.29061074099997, + 70.06924833199997 + ], + [ + -130.52797864799993, + 70.130965576 + ], + [ + -130.991986334, + 70.06362891700019 + ], + [ + -131.09017504399998, + 69.88637777700012 + ], + [ + -131.4488444949999, + 69.89314757900019 + ], + [ + -131.63602206399997, + 69.86659545400016 + ], + [ + -131.88192595299995, + 69.76987296000016 + ], + [ + -132.09403773799983, + 69.72639703000004 + ], + [ + -132.56240633, + 69.73428715600011 + ], + [ + -132.6591384919999, + 69.65407879300017 + ], + [ + -132.97503754599995, + 69.62723723800019 + ], + [ + -132.98901937199986, + 69.46454640900004 + ], + [ + -133.2141293929999, + 69.39009404200016 + ], + [ + -133.55127108899995, + 69.39471695700013 + ], + [ + -133.94789124099992, + 69.26942435400008 + ], + [ + -134.1658844189999, + 69.25207068100013 + ], + [ + -134.012402222, + 69.369993222 + ], + [ + -133.78129024999993, + 69.48967911400007 + ], + [ + -134.147941651, + 69.52602429000007 + ], + [ + -134.18282430899995, + 69.64568418700014 + ], + [ + -134.34034588199995, + 69.68623644100012 + ], + [ + -134.48332640499996, + 69.53598689100005 + ], + [ + -134.41831281999998, + 69.47108782600014 + ], + [ + -135.15340353699997, + 69.465874068 + ], + [ + -135.29369773899992, + 69.42313307400019 + ], + [ + -135.20893611699995, + 69.26813971600018 + ], + [ + -135.473584099, + 69.32929562600015 + ], + [ + -135.77625970299994, + 69.31169746300003 + ], + [ + -136.003262227, + 69.19260775900017 + ], + [ + -135.94006859799993, + 69.08350571000017 + ], + [ + -135.585363633, + 69.0102416100001 + ], + [ + -135.80389658299993, + 68.97526844900017 + ], + [ + -135.3302923529999, + 68.82423410900003 + ], + [ + -135.13502019099997, + 68.87306612999998 + ], + [ + -135.05579352799998, + 68.9630769910001 + ], + [ + -134.710911426, + 69.01486821300017 + ], + [ + -134.59682214499992, + 68.98864992600005 + ], + [ + -134.36814998499995, + 68.817337969 + ], + [ + -134.09909392699996, + 68.69361421000013 + ], + [ + -133.82966892199994, + 68.52801780800019 + ], + [ + -133.65591359099994, + 68.30943262700009 + ], + [ + -133.23631593599993, + 68.28073281800016 + ], + [ + -133.1657960799999, + 68.41064139300005 + ], + [ + -132.73309440499986, + 68.40743428100006 + ], + [ + -132.76910102499994, + 68.314016766 + ], + [ + -132.66217566099994, + 68.24135871900006 + ], + [ + -132.33294629699998, + 68.30953203100012 + ], + [ + -132.16652191599997, + 68.26024810500019 + ], + [ + -131.9994631439999, + 68.40295981900005 + ], + [ + -131.7592407279999, + 68.40943575500012 + ], + [ + -131.58115581699997, + 68.45538969800015 + ], + [ + -131.6428183149999, + 68.51158727500007 + ], + [ + -131.23506548199998, + 68.56990984300006 + ], + [ + -131.09231614199996, + 68.55833605800018 + ], + [ + -130.7512262099999, + 68.69092943000004 + ], + [ + -130.37780876499994, + 68.77254425100011 + ], + [ + -130.068626409, + 68.81325787200018 + ], + [ + -129.80790441099992, + 68.74979336800004 + ], + [ + -129.6548664319999, + 68.68178128200003 + ], + [ + -129.58740883399992, + 68.56192375600017 + ], + [ + -128.83214319799998, + 68.40812149900006 + ], + [ + -128.68119092699993, + 68.33665305700004 + ], + [ + -128.47067581599993, + 68.15753291599998 + ], + [ + -128.2178111849999, + 68.10825320300012 + ], + [ + -127.74410403099989, + 68.16151988100012 + ], + [ + -127.56657251899992, + 68.0970481080002 + ], + [ + -127.49332705999996, + 67.99497916900003 + ], + [ + -126.9638503939999, + 67.9701498340001 + ], + [ + -126.43219607999998, + 67.91932270800015 + ], + [ + -126.22140966999996, + 67.95573246200019 + ], + [ + -125.94280356899998, + 67.96090294400005 + ], + [ + -125.68599235599999, + 67.8973518030001 + ], + [ + -125.466658038, + 67.918453844 + ], + [ + -125.27284247999995, + 67.97513910600009 + ], + [ + -125.02793494699989, + 67.98443825700008 + ], + [ + -124.85476916999994, + 67.90728116600019 + ], + [ + -124.73821803699997, + 67.69490137900016 + ], + [ + -124.64124008099992, + 67.6337816910002 + ], + [ + -124.36329126299995, + 67.56964843300011 + ], + [ + -124.26860109399996, + 67.51286897500012 + ], + [ + -124.26934478099992, + 67.36873809100007 + ], + [ + -124.5177242819999, + 67.28638034800008 + ], + [ + -124.86748125799994, + 67.36905155800014 + ], + [ + -124.95457276199988, + 67.28602370099998 + ], + [ + -124.89014280799995, + 67.19295972700019 + ], + [ + -124.93028728399992, + 66.9959629110001 + ], + [ + -124.70703607999991, + 66.91272918400011 + ], + [ + -124.4405053079999, + 66.85380860900017 + ], + [ + -124.28982478199998, + 66.72359805500008 + ], + [ + -124.07164392999994, + 66.67942619700017 + ], + [ + -123.81734077299996, + 66.692069032 + ], + [ + -123.46697137499996, + 66.75182376000004 + ], + [ + -123.05024958799993, + 66.5740395970002 + ], + [ + -122.89138101099996, + 66.60691947400011 + ], + [ + -122.70316202899994, + 66.5831595050002 + ], + [ + -122.27133252899995, + 66.60369977199997 + ], + [ + -121.9579987279999, + 66.6442023940001 + ], + [ + -121.54041301099994, + 66.75427380600007 + ], + [ + -121.40086945799999, + 66.93583532900016 + ], + [ + -121.08911630699998, + 66.94199229000003 + ], + [ + -120.59266455299996, + 67.05195423700007 + ], + [ + -120.18845159099993, + 67.07797886300006 + ], + [ + -119.90691316799996, + 67.06961644100005 + ], + [ + -119.570154517, + 67.02551584600008 + ], + [ + -119.32925774699999, + 67.03246620200014 + ], + [ + -119.3552687959999, + 66.95470346600013 + ], + [ + -118.94323856399996, + 66.9087163550002 + ], + [ + -118.75626241699996, + 66.92870801400011 + ], + [ + -118.73782445899991, + 67.20312730600006 + ], + [ + -118.80963974899993, + 67.2904980780001 + ], + [ + -118.64998519199986, + 67.37339698900007 + ], + [ + -118.43113396799993, + 67.38416803300004 + ], + [ + -118.23385094499997, + 67.26614011000015 + ], + [ + -118.088017676, + 67.24290252000003 + ], + [ + -117.98150775399995, + 67.13220252900004 + ], + [ + -117.7540332769999, + 67.11427757700017 + ], + [ + -117.62189931399996, + 66.93597816800013 + ], + [ + -117.42936813099988, + 66.91465748900009 + ], + [ + -117.30896777799995, + 66.84431353100001 + ], + [ + -117.15017813099996, + 66.95800050700018 + ], + [ + -116.86852271299995, + 67.01044487500019 + ], + [ + -116.75414318599996, + 67.00248083700006 + ], + [ + -116.38399818699992, + 66.88779042100003 + ], + [ + -116.25247792499994, + 66.79588956900017 + ], + [ + -116.08434813799994, + 66.76016755000012 + ], + [ + -115.84180766799989, + 66.82083126000015 + ], + [ + -115.4494738119999, + 66.70512258300016 + ], + [ + -115.11281734199997, + 66.68480074700005 + ], + [ + -114.89989057099996, + 66.61789318300009 + ], + [ + -114.72571108399995, + 66.52639157500005 + ], + [ + -114.58985094699989, + 66.40679599800012 + ], + [ + -113.95975428599996, + 66.08266973000019 + ], + [ + -113.79899996799998, + 65.861048433 + ], + [ + -113.42498445399997, + 65.70332855900006 + ], + [ + -113.38481369199997, + 65.60515050100003 + ], + [ + -113.07193547299988, + 65.44310325200007 + ], + [ + -113.26258574199994, + 65.12857981800005 + ], + [ + -113.15320286999992, + 64.99528031800003 + ], + [ + -112.86517954999994, + 65.00607828100004 + ], + [ + -112.64654541799996, + 64.98751940600005 + ], + [ + -112.65597048699988, + 64.83260470900012 + ], + [ + -112.70865556399997, + 64.73751782500005 + ], + [ + -112.35135014299993, + 64.56761207199997 + ], + [ + -112.30185719499997, + 64.46533852500016 + ], + [ + -112.37137209399992, + 64.2813502410001 + ], + [ + -112.17197369499996, + 64.23073541000002 + ], + [ + -111.70163138299995, + 64.35630049100007 + ], + [ + -111.48922611799992, + 64.25938264400014 + ], + [ + -111.35748257199992, + 64.15338378100006 + ], + [ + -111.14137836399993, + 64.17148038300007 + ], + [ + -110.90261018399991, + 64.15949413300007 + ], + [ + -110.46433330899998, + 64.03897641100014 + ], + [ + -110.24854109999995, + 64.11593082000013 + ], + [ + -109.98431126299988, + 64.2522038960002 + ], + [ + -109.74912583099996, + 64.20354542000007 + ], + [ + -109.54238012499997, + 64.09732464100011 + ], + [ + -109.45858004399997, + 63.983933857000125 + ], + [ + -109.54558114899993, + 63.82596575600013 + ], + [ + -109.84857498499997, + 63.67591931200002 + ], + [ + -109.81530775399989, + 63.62229770500005 + ], + [ + -109.368085469, + 63.70416076700002 + ], + [ + -109.17856689599995, + 63.687145292000196 + ], + [ + -108.98660877499987, + 63.75822214900006 + ], + [ + -108.85700587499997, + 63.869678298999986 + ], + [ + -108.70152321199993, + 63.93854280200014 + ], + [ + -108.56416574999997, + 64.03970375500012 + ], + [ + -108.0271607709999, + 64.05275687000005 + ], + [ + -107.63045548499997, + 63.95365897400012 + ], + [ + -107.63744449499995, + 63.86322201900015 + ], + [ + -107.38914539499996, + 63.806628473000046 + ], + [ + -107.04255736699992, + 63.838025557000094 + ], + [ + -106.28629999799995, + 63.857071852000104 + ], + [ + -105.99906797099999, + 63.84529255000018 + ], + [ + -105.43676753299997, + 63.86703207900007 + ], + [ + -105.36004634299991, + 63.902318364000166 + ], + [ + -104.79212937999995, + 63.89496668400011 + ], + [ + -104.5031598619999, + 63.93599443800014 + ], + [ + -104.22252699099988, + 64.01335267100012 + ], + [ + -104.06700117799994, + 64.13101281600012 + ], + [ + -103.69499186399992, + 64.341153813 + ], + [ + -103.94413099399998, + 64.46753120800008 + ], + [ + -103.88857210999993, + 64.53262353300005 + ], + [ + -103.58936276299988, + 64.40052812300019 + ], + [ + -103.39324251499994, + 64.40023995900015 + ], + [ + -103.24532952999994, + 64.43964994400017 + ], + [ + -102.94116165499997, + 64.45032419500006 + ], + [ + -102.81173718799994, + 64.3508670870001 + ], + [ + -102.94383161299999, + 64.21915328900019 + ], + [ + -103.09319420899999, + 64.18396152500003 + ], + [ + -103.261138744, + 63.98967856900009 + ], + [ + -103.62245199599988, + 63.918914340000185 + ], + [ + -103.86428087299993, + 63.83282136400004 + ], + [ + -104.01616609699994, + 63.71888548000004 + ], + [ + -104.09368908599998, + 63.52045561900013 + ], + [ + -104.03185987899997, + 63.456049663000044 + ], + [ + -104.21367728699988, + 63.323888230000136 + ], + [ + -103.79437885099992, + 63.2710931040001 + ], + [ + -103.61659285599995, + 63.18385331200005 + ], + [ + -103.2082509409999, + 63.171893195000166 + ], + [ + -103.09261314999998, + 63.22016098000017 + ], + [ + -102.888817024, + 63.08590014300006 + ], + [ + -102.91977741399995, + 62.97515621700006 + ], + [ + -103.05520612099997, + 62.893925180999986 + ], + [ + -102.98899194199998, + 62.82352257600019 + ], + [ + -102.75142625299998, + 62.785636350000175 + ], + [ + -102.46288285399999, + 62.65387390500007 + ], + [ + -102.3334505979999, + 62.721978395000065 + ], + [ + -101.95081336599992, + 62.83387025300004 + ], + [ + -101.76241347999996, + 62.73454895900011 + ], + [ + -101.67053226799987, + 62.63971646699997 + ], + [ + -101.43814012799999, + 62.56758297400012 + ], + [ + -101.20839690599996, + 62.56372750100007 + ], + [ + -101.01294671999995, + 62.610842197000125 + ], + [ + -100.92906216899996, + 62.66498537000007 + ], + [ + -100.86131243199998, + 62.79294475300014 + ], + [ + -100.73618258699997, + 62.79295216800011 + ], + [ + -100.62828855699996, + 62.850053570000114 + ], + [ + -100.50225855499997, + 62.77469704900005 + ], + [ + -100.50591252799995, + 62.7211476490001 + ], + [ + -100.33599097299998, + 62.63758030800011 + ], + [ + -100.23781376699998, + 62.73527424200017 + ], + [ + -99.97562220599997, + 62.81923322500012 + ], + [ + -99.44715423799988, + 62.85945964700011 + ], + [ + -99.28323895099999, + 62.918904290000114 + ], + [ + -98.8149221029999, + 62.94890185700007 + ], + [ + -98.56899549199994, + 62.99509266700011 + ], + [ + -98.14941669599995, + 63.015122193000195 + ], + [ + -98.00415867999999, + 62.96064416900015 + ], + [ + -97.7033881449999, + 62.94880820500015 + ], + [ + -97.58961550099997, + 62.97075407400007 + ], + [ + -97.42913015199997, + 63.07471792000007 + ], + [ + -97.20971695599991, + 62.925969756000086 + ], + [ + -96.9623335679999, + 62.88005399000008 + ], + [ + -96.86656244199992, + 62.768269965000115 + ], + [ + -96.54197719199993, + 62.74101653900004 + ], + [ + -96.43619525899987, + 62.64603365800019 + ], + [ + -96.187263423, + 62.5866355620002 + ], + [ + -96.41919704299994, + 62.49426551100015 + ], + [ + -96.20155343799996, + 62.31113197800005 + ], + [ + -96.33358014099991, + 62.23931825100016 + ], + [ + -96.57717881699983, + 62.31026870200003 + ], + [ + -96.65844711899996, + 62.24177728500001 + ], + [ + -96.84674018699997, + 62.17248043000018 + ], + [ + -96.96533191399993, + 62.032157980000136 + ], + [ + -96.81976313799993, + 61.81935180800008 + ], + [ + -96.66279597999988, + 61.7697844540001 + ], + [ + -96.6293795659999, + 61.61868703400006 + ], + [ + -96.51274896899997, + 61.54082248100008 + ], + [ + -96.29946124699995, + 61.45417402500016 + ], + [ + -96.09114845999989, + 61.17295848400016 + ], + [ + -96.1992568689999, + 61.151911841000185 + ], + [ + -95.9988325359999, + 60.99136635100001 + ], + [ + -95.71683495999986, + 60.91329244800016 + ], + [ + -95.61710350499999, + 60.820872246000135 + ], + [ + -95.44857785799991, + 60.54749232400019 + ], + [ + -95.39927696099988, + 60.32964768300002 + ], + [ + -95.22122185299992, + 60.1507822100001 + ], + [ + -95.04926286299997, + 60.03248186400015 + ], + [ + -94.93260958099995, + 59.99977288700018 + ], + [ + -94.96189174099999, + 59.90504574900007 + ], + [ + -94.87577082999991, + 59.824556032000146 + ], + [ + -94.93144245499985, + 59.650548882000066 + ], + [ + -95.081763976, + 59.55577778400004 + ], + [ + -94.98747281399989, + 59.48297205100016 + ], + [ + -94.98654925599993, + 59.23621302000004 + ], + [ + -95.08185563899991, + 59.15287992700007 + ], + [ + -95.08490734299994, + 59.02853237000005 + ], + [ + -95.01840212899998, + 58.87809179100009 + ], + [ + -94.9089889569999, + 58.78538524600009 + ], + [ + -94.78676595899987, + 59.00627030700008 + ], + [ + -94.80958988199995, + 59.08840660400017 + ], + [ + -94.76802130299995, + 59.3394743930001 + ], + [ + -94.71571542499998, + 59.38439887500016 + ], + [ + -94.80135190299995, + 59.524314382 + ], + [ + -94.83109938499996, + 59.647514350000165 + ], + [ + -94.77608274299985, + 59.784770517000084 + ], + [ + -94.84445423999995, + 59.97224086700015 + ], + [ + -94.72991230499991, + 60.132012503000055 + ], + [ + -94.71304729499991, + 60.29251370600002 + ], + [ + -94.64773757999995, + 60.38732686200018 + ], + [ + -94.77011113499992, + 60.53481258700009 + ], + [ + -94.56187417299992, + 60.53536260100009 + ], + [ + -94.52394499699994, + 60.63734496200004 + ], + [ + -94.44222865399996, + 60.6917732 + ], + [ + -94.37380557599994, + 60.84654033600009 + ], + [ + -94.22512539999997, + 60.8931216200001 + ], + [ + -94.17906936699995, + 61.040934235 + ], + [ + -93.93139125399989, + 61.292223307000086 + ], + [ + -93.82206574399999, + 61.33778694100005 + ], + [ + -93.96763805299986, + 61.39499206200003 + ], + [ + -93.99162989999996, + 61.46048559800005 + ], + [ + -93.89390087399988, + 61.536777102000144 + ], + [ + -93.46330317399992, + 61.70644399000008 + ], + [ + -93.60408009799994, + 61.70755350100012 + ], + [ + -93.64494312399995, + 61.7675020480001 + ], + [ + -93.34409010299987, + 61.74450746900004 + ], + [ + -93.55147207999994, + 61.85076290100011 + ], + [ + -93.35668438999983, + 61.88910468300014 + ], + [ + -93.23243398999995, + 61.96363474300017 + ], + [ + -93.34245669899997, + 62.02925915600008 + ], + [ + -93.08658852999997, + 62.04610439400011 + ], + [ + -92.99444790699982, + 62.11443117699997 + ], + [ + -92.99259087899992, + 62.20028160900017 + ], + [ + -92.81605025299996, + 62.18816547199998 + ], + [ + -92.74723424499985, + 62.22495448800015 + ], + [ + -92.53757381999992, + 62.1838548930001 + ], + [ + -92.54537514299994, + 62.29836879200002 + ], + [ + -92.73726940499995, + 62.36869481800005 + ], + [ + -92.75827206299988, + 62.46404741300012 + ], + [ + -92.54328212299998, + 62.4679223010001 + ], + [ + -92.46476166999992, + 62.53357029799997 + ], + [ + -92.25839716399997, + 62.58450139600018 + ], + [ + -92.03066178499984, + 62.53176223200012 + ], + [ + -91.91146361599993, + 62.5667989100001 + ], + [ + -91.88434717799993, + 62.64083413500009 + ], + [ + -92.14445180599989, + 62.66721028600011 + ], + [ + -92.31311964899993, + 62.71077498200009 + ], + [ + -92.42890533499997, + 62.796555801000125 + ], + [ + -92.3700219719999, + 62.84803679100014 + ], + [ + -92.10547215799994, + 62.86323723600009 + ], + [ + -91.6771909869999, + 62.81221211500002 + ], + [ + -91.43983529299999, + 62.79878015900016 + ], + [ + -91.22168383899998, + 62.857195796999974 + ], + [ + -91.02511258599998, + 62.94381195900013 + ], + [ + -90.81483879799993, + 62.929453234 + ], + [ + -90.64992305799984, + 63.048128002000055 + ], + [ + -90.69821038499992, + 63.227057982000076 + ], + [ + -90.76730352099997, + 63.32451585700011 + ], + [ + -90.99387295799988, + 63.46935245100008 + ], + [ + -91.29185865899996, + 63.50860341200013 + ], + [ + -91.38771039099987, + 63.49433802900006 + ], + [ + -91.63701971799998, + 63.58767893400017 + ], + [ + -91.54334487899996, + 63.725682101000075 + ], + [ + -91.39009579499998, + 63.65203718100014 + ], + [ + -91.06161717399988, + 63.61395494700008 + ], + [ + -90.91706104699989, + 63.540668572000016 + ], + [ + -90.74634088999994, + 63.56207128900013 + ], + [ + -90.5761381719999, + 63.63373253200001 + ], + [ + -90.29322079599996, + 63.61290828400007 + ], + [ + -90.19438640499993, + 63.66148592100012 + ], + [ + -90.08495385899988, + 63.78065019200005 + ], + [ + -89.97556382, + 63.803369696000175 + ], + [ + -90.1935340039999, + 63.958769640000014 + ], + [ + -90.01976987599983, + 63.985318814000095 + ], + [ + -89.95591379699994, + 63.911236873000064 + ], + [ + -89.83229643499999, + 63.92787906800015 + ], + [ + -89.8351360339999, + 64.02310855300016 + ], + [ + -89.97155724599986, + 64.158859867 + ], + [ + -89.79872139999992, + 64.13725224199999 + ], + [ + -89.71094528899994, + 64.0325008530001 + ], + [ + -89.55633500699992, + 64.06974857000012 + ], + [ + -89.25235416399988, + 64.00992657800009 + ], + [ + -89.08833278099996, + 64.02077468900012 + ], + [ + -88.86463291899997, + 63.99132680400015 + ], + [ + -88.56983459899993, + 64.01146784200006 + ], + [ + -88.25736497499997, + 64.13003035500009 + ], + [ + -88.11114047199999, + 64.14076010999997 + ], + [ + -88.04842693499995, + 64.24622136200009 + ], + [ + -87.84477603699997, + 64.38036365800019 + ], + [ + -87.80009491499999, + 64.511891494 + ], + [ + -87.55280770999997, + 64.57090927800016 + ], + [ + -87.49181608099997, + 64.68923783800011 + ], + [ + -87.31809261099994, + 64.7468764800002 + ], + [ + -87.23707332599997, + 64.87635794200014 + ], + [ + -86.90079560899994, + 65.14162645300013 + ], + [ + -87.00528468899995, + 65.23819796200019 + ], + [ + -87.55612166399999, + 65.29327961100017 + ], + [ + -88.30786964499998, + 65.28091063200003 + ], + [ + -88.65543251699984, + 65.31546151700019 + ], + [ + -89.04118353899997, + 65.32553500300003 + ], + [ + -89.15859191899995, + 65.4430199580001 + ], + [ + -89.34223417899995, + 65.49904120900015 + ], + [ + -89.43810480899992, + 65.60462797700018 + ], + [ + -89.62523141899993, + 65.69086917700014 + ], + [ + -90.00727427399994, + 65.81500515300013 + ], + [ + -90.60758622899993, + 65.91251990700016 + ], + [ + -90.21021480099995, + 65.93463044400005 + ], + [ + -89.73255165699999, + 65.82668109000014 + ], + [ + -89.67423802699994, + 65.94873975100012 + ], + [ + -89.13320490699994, + 65.77140538000003 + ], + [ + -89.01820634799998, + 65.70494495200012 + ], + [ + -88.75218433299995, + 65.67888942200005 + ], + [ + -88.7423079209999, + 65.63204603800006 + ], + [ + -88.41805129099998, + 65.54354678100003 + ], + [ + -88.05098459999994, + 65.35750093000013 + ], + [ + -87.84103343799995, + 65.32148751500011 + ], + [ + -87.33620061699992, + 65.32072473700009 + ], + [ + -87.09340658899998, + 65.39555372500013 + ], + [ + -87.06440292499997, + 65.4828770740001 + ], + [ + -86.79714333299995, + 65.56418987500007 + ], + [ + -86.43094227299986, + 65.74075236300013 + ], + [ + -86.41231196299998, + 65.8685471600001 + ], + [ + -86.17491866399996, + 65.97875545400018 + ], + [ + -85.98448024399994, + 66.02223996600009 + ], + [ + -85.93133204099996, + 66.20103356600004 + ], + [ + -86.32067454499997, + 66.28936023200015 + ], + [ + -86.62984981099993, + 66.32560671400017 + ], + [ + -86.77091294799999, + 66.45026009300005 + ], + [ + -86.73675829999996, + 66.521383416 + ], + [ + -86.51208091399991, + 66.55003736900005 + ], + [ + -86.04372695399996, + 66.49432571300008 + ], + [ + -85.76940276199997, + 66.51193842000015 + ], + [ + -85.42756268499994, + 66.58630280800014 + ], + [ + -85.29673579199994, + 66.47706701100009 + ], + [ + -85.24020447199996, + 66.27654130200017 + ], + [ + -85.07740210599997, + 66.29420623900006 + ], + [ + -84.77916201399995, + 66.2348555270001 + ], + [ + -84.61590420999994, + 66.22570039000016 + ], + [ + -84.44611436399998, + 66.1623230720001 + ], + [ + -84.35773367199988, + 66.221459901 + ], + [ + -84.60868605799993, + 66.33282029600014 + ], + [ + -84.43253574699992, + 66.38346154600015 + ], + [ + -84.30495480999991, + 66.27151304100005 + ], + [ + -84.1411777969999, + 66.31055113500014 + ], + [ + -84.07643946299993, + 66.24453150400018 + ], + [ + -83.88156465399999, + 66.20082672200016 + ], + [ + -83.65925649999997, + 66.21957467400011 + ], + [ + -83.80515204299991, + 66.31441567500013 + ], + [ + -83.88029573599982, + 66.45489512300003 + ], + [ + -84.15105618299992, + 66.60093194400014 + ], + [ + -84.15122114999991, + 66.6942528840001 + ], + [ + -84.33702913999997, + 66.70633628600012 + ], + [ + -84.41447398999986, + 66.78497401900012 + ], + [ + -84.55539734299998, + 66.82656924100019 + ], + [ + -84.59572609499992, + 66.94041341400015 + ], + [ + -84.72086278599994, + 66.95474986100015 + ], + [ + -85.07522606899988, + 66.84269661100018 + ], + [ + -85.16897546799993, + 66.8800578850001 + ], + [ + -85.00611096199998, + 66.96252405900003 + ], + [ + -84.59114148999993, + 66.97814241900016 + ], + [ + -84.40694484299996, + 66.90838566100018 + ], + [ + -84.42869651599989, + 66.80657909700017 + ], + [ + -84.23061314699987, + 66.78461577300016 + ], + [ + -84.27102671199998, + 66.71716370399997 + ], + [ + -83.98012372599999, + 66.69090473300008 + ], + [ + -83.93403637799986, + 66.58412978600006 + ], + [ + -83.64756755599996, + 66.5258617520002 + ], + [ + -83.4905669829999, + 66.40907742700017 + ], + [ + -83.33611032899984, + 66.3494443350001 + ], + [ + -82.9929563579999, + 66.48563087999997 + ], + [ + -82.98694134299996, + 66.54917375500014 + ], + [ + -82.5668968459999, + 66.57046142800016 + ], + [ + -82.52728413699998, + 66.63635041400005 + ], + [ + -82.15435428699993, + 66.75851512500009 + ], + [ + -81.96105881399995, + 66.92072651400014 + ], + [ + -81.80202588799995, + 67.00034061700012 + ], + [ + -81.68457634799995, + 66.97267723400012 + ], + [ + -81.46328380699993, + 67.01465592900007 + ], + [ + -81.35296973899995, + 67.16403880400009 + ], + [ + -81.33974743099998, + 67.26909271900013 + ], + [ + -81.1912140739999, + 67.46483607700009 + ], + [ + -81.37271034899993, + 67.601556 + ], + [ + -81.5985419079999, + 67.675723555 + ], + [ + -81.61790014499996, + 67.7172353380002 + ], + [ + -82.07585178699992, + 67.91046792300017 + ], + [ + -82.15921695299994, + 68.00445047800002 + ], + [ + -82.09693473899995, + 68.10459233400019 + ], + [ + -82.31529589399992, + 68.16716448000005 + ], + [ + -82.19843897699997, + 68.25177404200008 + ], + [ + -82.35617747899994, + 68.27325943000017 + ], + [ + -82.34286526799991, + 68.36556646600008 + ], + [ + -82.47930880099995, + 68.46839873800002 + ], + [ + -82.21463881099999, + 68.45792294800015 + ], + [ + -82.04628347899995, + 68.5090093290001 + ], + [ + -81.9220212649999, + 68.42275154300017 + ], + [ + -81.75697237399999, + 68.51416139700007 + ], + [ + -81.53692529999995, + 68.54017543900005 + ], + [ + -81.21131915499996, + 68.65070302000004 + ], + [ + -81.19825791099998, + 68.78166768200015 + ], + [ + -81.29562910299995, + 68.85964393800003 + ], + [ + -81.53497589099987, + 68.85780069000009 + ], + [ + -81.72981615999998, + 68.94440403400006 + ], + [ + -81.54264149099998, + 68.99209352500014 + ], + [ + -81.45758350099999, + 69.06087953399998 + ], + [ + -81.28305532999991, + 69.09463773700014 + ], + [ + -81.3006201629999, + 69.1933417090001 + ], + [ + -81.61905621099999, + 69.25670800500018 + ], + [ + -81.98053912099988, + 69.27267283300017 + ], + [ + -82.14322171899994, + 69.31803529100006 + ], + [ + -82.1919580579999, + 69.39673461600017 + ], + [ + -82.43949772499997, + 69.49664760600018 + ], + [ + -82.60810897299984, + 69.61867926800016 + ], + [ + -82.53158166499992, + 69.6921084870001 + ], + [ + -83.26054300899995, + 69.70887010600012 + ], + [ + -83.54150987199989, + 69.68896579900013 + ], + [ + -83.9348712069999, + 69.7511440290001 + ], + [ + -84.08666299899994, + 69.82011317600018 + ], + [ + -84.53113582499998, + 69.86933835100018 + ], + [ + -84.84046796199993, + 69.8397801800001 + ], + [ + -85.06384237999998, + 69.78334698300006 + ], + [ + -85.36075131399997, + 69.85820401400008 + ], + [ + -85.56246898699993, + 69.82371203700018 + ], + [ + -85.39494285599994, + 69.72905737100018 + ], + [ + -85.51692023599986, + 69.65016680400004 + ], + [ + -85.38585692399994, + 69.58894621400009 + ], + [ + -85.507209016, + 69.52463936400005 + ], + [ + -85.41390758299997, + 69.3304556550001 + ], + [ + -85.4771657679999, + 69.31262363600018 + ], + [ + -85.29215604599989, + 69.1567172390001 + ], + [ + -84.97287747099995, + 69.14676834000016 + ], + [ + -84.91591529099998, + 69.09455773800016 + ], + [ + -85.05254943499989, + 68.96669805200008 + ], + [ + -84.77348919999997, + 68.74277718000019 + ], + [ + -85.51159356799991, + 68.78867041600012 + ], + [ + -85.63522140899988, + 68.72406470700008 + ], + [ + -85.71495478399993, + 68.56615785400004 + ], + [ + -85.68541700099996, + 68.40664727200004 + ], + [ + -85.87860958699997, + 68.18745553800011 + ], + [ + -85.87197161199998, + 68.04651606500005 + ], + [ + -86.10133212499994, + 67.96561861600014 + ], + [ + -86.39166823899996, + 67.78729224500006 + ], + [ + -86.50139176399995, + 67.67377804600005 + ], + [ + -86.42222489499994, + 67.59634104600002 + ], + [ + -86.51772011899993, + 67.44552240600018 + ], + [ + -86.65982796899993, + 67.37881555400014 + ], + [ + -86.84337961799991, + 67.41525411700013 + ], + [ + -86.95634729999989, + 67.3478289430002 + ], + [ + -86.96041577199998, + 67.25755533100016 + ], + [ + -87.22483093899984, + 67.19069540800012 + ], + [ + -87.34031432399996, + 67.24040917600013 + ], + [ + -87.4667168019999, + 67.37302952300018 + ], + [ + -87.54204081499995, + 67.3831099090001 + ], + [ + -87.94377696099997, + 67.62920119199998 + ], + [ + -88.11649479599998, + 67.68185706800006 + ], + [ + -88.29539424599989, + 67.89244036900016 + ], + [ + -88.34965124699994, + 68.03400351500005 + ], + [ + -88.25542301699988, + 68.12393559900005 + ], + [ + -88.36511641099992, + 68.25872801800006 + ], + [ + -88.22224674199998, + 68.35846108800013 + ], + [ + -88.09971316799994, + 68.24984200500018 + ], + [ + -87.92935289799993, + 68.21704714300006 + ], + [ + -87.82310477099986, + 68.25964456700012 + ], + [ + -87.76621555999998, + 68.38768230900018 + ], + [ + -87.9262437779999, + 68.59697805100006 + ], + [ + -87.92293185999989, + 68.73642595600012 + ], + [ + -88.05225977499992, + 68.84481985000002 + ], + [ + -88.29069882599998, + 68.95374455500007 + ], + [ + -88.64591267399999, + 69.05275328400018 + ], + [ + -88.86647555999991, + 69.16081406400002 + ], + [ + -88.92256460099992, + 69.23231913700016 + ], + [ + -89.09421115699996, + 69.28276074900015 + ], + [ + -89.37028113599996, + 69.23202851999997 + ], + [ + -89.46628272899989, + 69.12489083000014 + ], + [ + -89.6285854869999, + 69.0629028530002 + ], + [ + -89.74446619399993, + 68.96109089500004 + ], + [ + -89.66875133899993, + 68.81842834900016 + ], + [ + -89.72924607999988, + 68.69770412200012 + ], + [ + -89.92811744099998, + 68.62909953100018 + ], + [ + -89.82812130199994, + 68.54169336100006 + ], + [ + -89.97441397899996, + 68.39057888700006 + ], + [ + -90.14497519399998, + 68.31596896000008 + ], + [ + -90.59310050699997, + 68.45935403300012 + ], + [ + -90.46314965, + 68.53247855000012 + ], + [ + -90.533948319, + 68.63579330800007 + ], + [ + -90.42736280399998, + 68.88735643200005 + ], + [ + -90.59130074199993, + 69.0054950660001 + ], + [ + -90.63159634399995, + 69.08621883300003 + ], + [ + -91.12520108999996, + 69.264364 + ], + [ + -90.80165469599996, + 69.26484399700007 + ], + [ + -90.81604300099991, + 69.34638067800012 + ], + [ + -90.42733289199998, + 69.5029383280002 + ], + [ + -90.67450612699992, + 69.55254182000016 + ], + [ + -90.7514918359999, + 69.5009696030001 + ], + [ + -91.13014697199992, + 69.54974151400012 + ], + [ + -91.25878439399986, + 69.66157946700014 + ], + [ + -91.46099202999989, + 69.66925033800004 + ], + [ + -91.55465176199988, + 69.59760413100014 + ], + [ + -91.804185868, + 69.50041556600019 + ], + [ + -92.08784678999984, + 69.56316474000016 + ], + [ + -92.52991076899997, + 69.71973501200006 + ], + [ + -92.7369823869999, + 69.73880690500005 + ], + [ + -92.21576208, + 69.90149082500005 + ], + [ + -91.95269881999997, + 70.03759767000008 + ], + [ + -92.14583122599998, + 70.1048154660001 + ], + [ + -92.49379684099995, + 70.09817402300013 + ], + [ + -92.40168190599996, + 70.19011914400016 + ], + [ + -92.2232175989999, + 70.21027192700006 + ], + [ + -91.93209040199997, + 70.13018568800015 + ], + [ + -91.52090200299995, + 70.15536771600006 + ], + [ + -91.67348701499998, + 70.26433757200016 + ], + [ + -91.72647142899996, + 70.3783611560001 + ], + [ + -91.99511905999987, + 70.29702144200013 + ], + [ + -91.99738020899997, + 70.41273838400019 + ], + [ + -92.23022720199998, + 70.50844684000015 + ], + [ + -92.19921959899995, + 70.6283957340001 + ], + [ + -92.60290343599996, + 70.69374145000012 + ], + [ + -92.67305157299995, + 70.78543595000014 + ], + [ + -92.94519222699995, + 70.84529546700003 + ], + [ + -92.84129102399999, + 71.04914549500012 + ], + [ + -92.83714592499996, + 71.17276002600005 + ], + [ + -92.96681215199993, + 71.34456881099999 + ], + [ + -93.11744397099989, + 71.3874245360002 + ], + [ + -93.18336016799998, + 71.46934349100007 + ], + [ + -93.63132559199994, + 71.59536723800005 + ], + [ + -93.78582208799986, + 71.65777368300013 + ], + [ + -93.68155143799999, + 71.77260963900017 + ], + [ + -93.90754448099989, + 71.7518485390001 + ], + [ + -94.22534913699985, + 71.77823892500015 + ], + [ + -94.45358279999988, + 71.83174722100006 + ], + [ + -94.3663864589999, + 71.93970689500009 + ], + [ + -94.48096183899986, + 71.99996053000007 + ], + [ + -95.15590019099994, + 71.96104518600004 + ], + [ + -95.25400165799982, + 71.74270671800019 + ], + [ + -95.47517090699995, + 71.73744968300014 + ], + [ + -95.89521226799991, + 71.61102583100006 + ], + [ + -95.81898376699996, + 71.51870176300014 + ], + [ + -95.50734948099995, + 71.50016223800014 + ], + [ + -95.44895838999997, + 71.36829728800018 + ], + [ + -95.52948850199994, + 71.30703268700006 + ], + [ + -95.78620286299997, + 71.3414636230001 + ], + [ + -95.89754310099994, + 71.41864668700009 + ], + [ + -96.17966362599992, + 71.3999013340001 + ], + [ + -96.26249421599994, + 71.30503185700002 + ], + [ + -96.47199250799991, + 71.27825394100006 + ], + [ + -96.38815273999995, + 71.18209057000007 + ], + [ + -96.53346307699996, + 71.14183569700009 + ], + [ + -96.40720946999994, + 71.08094130700016 + ], + [ + -96.59717401199993, + 70.84114387200015 + ], + [ + -96.36122197099996, + 70.68810594600012 + ], + [ + -96.1663234859999, + 70.62472730200017 + ], + [ + -96.13526662199996, + 70.54126066000003 + ], + [ + -96.52374666799994, + 70.34273916100017 + ], + [ + -96.54872312799995, + 70.25008738100018 + ], + [ + -96.45453949599994, + 70.08683649400007 + ], + [ + -96.22010706299994, + 69.96570679900003 + ], + [ + -96.18239062599997, + 69.86970552700018 + ], + [ + -95.91795402099996, + 69.7986861600001 + ], + [ + -95.69552189799998, + 69.79753959800013 + ], + [ + -95.39063550499998, + 69.69105031700013 + ], + [ + -94.91156645599995, + 69.58658095500004 + ], + [ + -94.70932318599989, + 69.60925930100012 + ], + [ + -94.61759661699989, + 69.68461468200013 + ], + [ + -94.27661385, + 69.44721980800006 + ], + [ + -93.88938056799998, + 69.44322028400006 + ], + [ + -93.81335647799989, + 69.49829534899999 + ], + [ + -93.55641748599999, + 69.5369824030002 + ], + [ + -93.43843845999999, + 69.4781907630001 + ], + [ + -93.5316047199999, + 69.37641909700011 + ], + [ + -93.46576628799988, + 69.32390220899998 + ], + [ + -93.812118936, + 69.17734428500006 + ], + [ + -93.85266711499997, + 69.27050626000005 + ], + [ + -93.64790708099997, + 69.36185687200003 + ], + [ + -94.19488476099997, + 69.34235252700017 + ], + [ + -94.30194828299983, + 69.17315579600017 + ], + [ + -94.07119439299998, + 69.13990335000005 + ], + [ + -94.13556497899998, + 69.06189456200013 + ], + [ + -94.58220822499999, + 68.96370112700004 + ], + [ + -94.51860881099992, + 68.89683235200016 + ], + [ + -94.59056498899997, + 68.77383146000017 + ], + [ + -94.40858257699989, + 68.73096397000012 + ], + [ + -94.07214975699998, + 68.76644824500005 + ], + [ + -93.90411664599998, + 68.83934679599997 + ], + [ + -94.05116152899996, + 68.90500815500013 + ], + [ + -93.83334210599998, + 69.01547656600019 + ], + [ + -93.63912036099998, + 68.98013757600006 + ], + [ + -93.56791286599997, + 68.84501936600003 + ], + [ + -93.73254649399985, + 68.62470921900018 + ], + [ + -93.470060215, + 68.58277467300007 + ], + [ + -93.78731733399997, + 68.49552460200005 + ], + [ + -93.98016701499989, + 68.46750260500005 + ], + [ + -94.18597171099992, + 68.37715655400012 + ], + [ + -94.15618199099998, + 68.29107578000009 + ], + [ + -94.65337982699987, + 68.11814999400019 + ], + [ + -94.82095174199992, + 68.04191787200017 + ], + [ + -95.24693072199989, + 68.0833746130001 + ], + [ + -95.51566970399983, + 67.92656687600004 + ], + [ + -95.4926825529999, + 67.86762862900014 + ], + [ + -95.69259562199994, + 67.74054774700005 + ], + [ + -95.47016658099994, + 67.65395882600012 + ], + [ + -95.28989317199995, + 67.53002665600013 + ], + [ + -95.36916954999992, + 67.46024000600005 + ], + [ + -95.27429538899992, + 67.33422439600014 + ], + [ + -95.14491688399994, + 67.29807744900006 + ], + [ + -95.29684357799994, + 67.17728524699999 + ], + [ + -95.45758462999987, + 67.15001116600013 + ], + [ + -95.53272269599995, + 67.22342508800017 + ], + [ + -95.52802916899998, + 67.32643712600009 + ], + [ + -95.69470177599999, + 67.38168250300009 + ], + [ + -96.09030063799992, + 67.22550331700006 + ], + [ + -96.21999966299995, + 67.31051571600011 + ], + [ + -96.17150106299994, + 67.43397702600004 + ], + [ + -96.36136480899995, + 67.45623625100012 + ], + [ + -96.42371206299987, + 67.51310417299999 + ], + [ + -96.13498622299994, + 67.69309214800012 + ], + [ + -96.20161169699998, + 67.84099323599997 + ], + [ + -95.99466225499998, + 68.11832312500019 + ], + [ + -96.06506195499998, + 68.15341133200002 + ], + [ + -96.00917701499998, + 68.25415584500001 + ], + [ + -96.41551241899998, + 68.16813288800006 + ], + [ + -96.48874855599996, + 68.06973728300011 + ], + [ + -96.76144891199993, + 68.08741658100007 + ], + [ + -96.48080695199997, + 68.2096332230002 + ], + [ + -96.53070850799998, + 68.27283060700012 + ], + [ + -96.98715557099996, + 68.27982945800005 + ], + [ + -96.9856230229999, + 68.34909798600012 + ], + [ + -97.32707133299994, + 68.50951425100016 + ], + [ + -97.6143729879999, + 68.5118133250001 + ], + [ + -97.84318611599991, + 68.56642229800008 + ], + [ + -98.00243833599995, + 68.53484333000006 + ], + [ + -97.86227618499998, + 68.47101117300008 + ], + [ + -97.85364771299999, + 68.40512455000015 + ], + [ + -98.07511745899996, + 68.38052853500017 + ], + [ + -98.66486119699994, + 68.39177279800015 + ], + [ + -98.65918171599992, + 68.34104259300017 + ], + [ + -98.35236015199996, + 68.19768325100017 + ], + [ + -98.559394022, + 68.16693288700014 + ], + [ + -98.27923589099998, + 67.97628882900005 + ], + [ + -97.99460983199998, + 67.91614939100003 + ], + [ + -97.72057555799995, + 67.99234755200013 + ], + [ + -97.54009792999994, + 67.9657275150002 + ], + [ + -97.43145557299988, + 67.89044391400006 + ], + [ + -97.24462716899995, + 67.87601096100008 + ], + [ + -97.11975940499991, + 67.81365513100013 + ], + [ + -97.14919816499992, + 67.63034830000004 + ], + [ + -97.59827590899994, + 67.62255853800019 + ], + [ + -98.06414229599994, + 67.7739854850002 + ], + [ + -98.17463072099997, + 67.87008944300004 + ], + [ + -98.56791968699991, + 68.11665220100014 + ], + [ + -98.72305115299997, + 68.07654174300018 + ], + [ + -98.71228023899994, + 67.964683068 + ], + [ + -98.37580735699993, + 67.78908558500012 + ], + [ + -98.68499690399995, + 67.78778646200016 + ], + [ + -98.94178519799993, + 67.71698944000013 + ], + [ + -99.18653576099996, + 67.71886100300014 + ], + [ + -99.29948550199998, + 67.77518070400009 + ], + [ + -100.02801390999997, + 67.81957471800007 + ], + [ + -100.20381979899997, + 67.85524553099998 + ], + [ + -100.69431574099997, + 67.85544750000008 + ], + [ + -100.87687052399991, + 67.7714644620001 + ], + [ + -101.08768754199997, + 67.74140442200013 + ], + [ + -101.20884152299988, + 67.76752806700006 + ], + [ + -101.53638650399989, + 67.67557455700012 + ], + [ + -101.97147597299988, + 67.7680587910001 + ], + [ + -102.21183518399994, + 67.7182142210001 + ], + [ + -102.41658717699988, + 67.79299651700006 + ], + [ + -102.83559214799999, + 67.84610653100003 + ], + [ + -102.95221733899996, + 67.92011708000013 + ], + [ + -103.08318655399995, + 67.90000457300005 + ], + [ + -103.51694380899994, + 68.06823447000016 + ], + [ + -103.78756328499992, + 68.03014960100018 + ], + [ + -103.98289660499995, + 68.0537635660001 + ], + [ + -104.16906563499998, + 68.02142415900016 + ], + [ + -104.48882164499992, + 68.02611922500012 + ], + [ + -104.64871306499998, + 68.14669138600004 + ], + [ + -104.59121532499995, + 68.26233022500014 + ], + [ + -104.85809389399992, + 68.24140083100019 + ], + [ + -105.07304564899988, + 68.27385263400004 + ], + [ + -105.32103965999994, + 68.37851779400017 + ], + [ + -105.33407023299986, + 68.52156723600007 + ], + [ + -105.52874333099999, + 68.67719378500016 + ], + [ + -105.43515768499998, + 68.73596476500006 + ], + [ + -105.77071357099999, + 68.88156621000002 + ], + [ + -106.23183760599989, + 68.91174559200005 + ], + [ + -106.58135429299995, + 68.85126390000016 + ], + [ + -107.28352661199989, + 68.70368418600003 + ], + [ + -107.95653655999985, + 68.63559421400015 + ], + [ + -108.3583712439999, + 68.60498936600004 + ], + [ + -108.58705481799996, + 68.40313619000017 + ], + [ + -108.73218846999993, + 68.34070844500008 + ], + [ + -108.71073812499998, + 68.23074866700006 + ], + [ + -108.46909717099993, + 68.30684011900013 + ], + [ + -108.3668860389999, + 68.29424890600012 + ], + [ + -108.4230867949999, + 68.18791628200006 + ], + [ + -107.87332871599989, + 68.16989585200008 + ], + [ + -107.71108614499991, + 68.2002906990001 + ], + [ + -107.88707224399991, + 68.27528678300013 + ], + [ + -107.80966274099995, + 68.34461715700019 + ], + [ + -107.63265304299989, + 68.35004495600009 + ], + [ + -107.29162161499988, + 68.30654002200009 + ], + [ + -107.22510169099996, + 68.25875325200019 + ], + [ + -106.78279646199996, + 68.41013799000001 + ], + [ + -106.60327967499995, + 68.32534448899997 + ], + [ + -106.45264923799994, + 68.40060916300007 + ], + [ + -106.60795846099995, + 68.46682084700012 + ], + [ + -106.4784299499999, + 68.53485013300019 + ], + [ + -106.02536925899994, + 68.6004244200002 + ], + [ + -105.86910573899996, + 68.63958882800006 + ], + [ + -105.69499614499995, + 68.4397717560002 + ], + [ + -106.43116823899999, + 68.34034334600011 + ], + [ + -106.75871742199996, + 68.19621700200008 + ], + [ + -106.72603769399996, + 68.1172262980001 + ], + [ + -107.01842759999994, + 68.11242329700019 + ], + [ + -107.38284431299996, + 68.04236268400007 + ], + [ + -107.67538898199996, + 68.05144520300007 + ], + [ + -107.74907015699989, + 67.98608303900005 + ], + [ + -107.69772874899996, + 67.89547074200016 + ], + [ + -108.02854896199983, + 67.78281825000016 + ], + [ + -107.95103208999996, + 67.68997643800009 + ], + [ + -107.5704006169999, + 67.50288766900007 + ], + [ + -107.69448463799995, + 67.39034716400016 + ], + [ + -107.49736893, + 67.20364684200007 + ], + [ + -107.221400873, + 67.09377507100004 + ], + [ + -107.36287422999999, + 67.02986890200015 + ], + [ + -107.74847500999994, + 67.0049137060002 + ], + [ + -107.68565197499993, + 66.79121446600016 + ], + [ + -107.52582594499995, + 66.5768369480001 + ], + [ + -107.42480378699997, + 66.54503758000016 + ], + [ + -107.16147472499995, + 66.37523801300017 + ], + [ + -107.22001010199995, + 66.35204217400019 + ], + [ + -107.71520221099996, + 66.62776121700017 + ], + [ + -107.78602765699998, + 66.72636438000006 + ], + [ + -108.09619984699998, + 66.84736290000018 + ], + [ + -108.09316964099992, + 66.92470311200003 + ], + [ + -108.3213823509999, + 67.00189884000014 + ], + [ + -108.136257947, + 67.0814165430001 + ], + [ + -107.98963269499995, + 67.08634890400009 + ], + [ + -107.86888820499996, + 67.15588721500018 + ], + [ + -107.963926072, + 67.27616646100012 + ], + [ + -108.40824989699996, + 67.42653496700007 + ], + [ + -108.56640917299995, + 67.58242677100009 + ], + [ + -108.70235210899995, + 67.61045766500018 + ], + [ + -108.72272994199989, + 67.45714087800013 + ], + [ + -108.83249784599997, + 67.35592252400005 + ], + [ + -108.980690488, + 67.45045631900007 + ], + [ + -108.93757548399992, + 67.5504862460001 + ], + [ + -109.03190863999998, + 67.7279138350001 + ], + [ + -109.46769018799995, + 67.75476415000009 + ], + [ + -109.54995625499993, + 67.6943449630001 + ], + [ + -109.71598101099994, + 67.73342726600004 + ], + [ + -109.78621058799996, + 67.86753136300013 + ], + [ + -109.937778042, + 67.8956275170001 + ], + [ + -110.00959291899989, + 67.99940836900004 + ], + [ + -110.33701036899993, + 67.96538061200016 + ], + [ + -110.7027309479999, + 67.87169582300004 + ], + [ + -110.829548951, + 67.80440512000013 + ], + [ + -111.039241974, + 67.7658473570001 + ], + [ + -111.27957321199989, + 67.82279110500019 + ], + [ + -111.37326243499996, + 67.7563101340001 + ], + [ + -111.62276437299988, + 67.73189423400004 + ], + [ + -111.84257881099995, + 67.76490580100017 + ], + [ + -112.67113460199994, + 67.67207038300006 + ], + [ + -113.1033784739999, + 67.6803031250002 + ], + [ + -113.15544982899996, + 67.70839355700008 + ], + [ + -113.70049443199997, + 67.69198979600003 + ], + [ + -113.98024048499997, + 67.72759899500016 + ], + [ + -114.35934019399991, + 67.74323867600003 + ], + [ + -114.72282761499997, + 67.82162470900016 + ], + [ + -114.99936190099987, + 67.79715522700008 + ], + [ + -115.5518520789999, + 67.92256243600013 + ], + [ + -115.14936928899994, + 67.99928185600015 + ], + [ + -115.210533855, + 68.02747760000017 + ], + [ + -115.15216129499993, + 68.18895487400016 + ], + [ + -114.89273909599996, + 68.15147006000018 + ], + [ + -114.42436821999996, + 68.26117771100019 + ], + [ + -114.27417014199989, + 68.22769554600018 + ], + [ + -113.99125689799996, + 68.24384453300007 + ], + [ + -114.04152004799994, + 68.29641350400016 + ], + [ + -113.88869045299992, + 68.40491196900007 + ], + [ + -114.03945820199993, + 68.43563790000013 + ], + [ + -114.18809208099998, + 68.56742284700016 + ], + [ + -114.41750230399992, + 68.62411919600015 + ], + [ + -114.53769664199996, + 68.72645077900017 + ], + [ + -114.75483795799994, + 68.74765120200004 + ], + [ + -114.81239137299997, + 68.81616032500011 + ], + [ + -115.08797122799996, + 68.85765160200003 + ], + [ + -115.60187799899995, + 68.98282035200003 + ], + [ + -115.88818834699998, + 68.9338247120001 + ], + [ + -116.18828361499999, + 68.9921745050001 + ], + [ + -116.31043175399998, + 68.96014274800001 + ], + [ + -115.93206983799996, + 68.82536010000001 + ], + [ + -116.0006829809999, + 68.80570592800007 + ], + [ + -116.4202269569999, + 68.86404237800014 + ], + [ + -116.97027484599994, + 68.9081516500001 + ], + [ + -117.14904775899993, + 68.90021789500008 + ], + [ + -117.39018069099996, + 68.96137496300008 + ], + [ + -118.00837282499992, + 69.02134699100014 + ], + [ + -118.40110209699986, + 69.11317417700013 + ], + [ + -118.70105516999996, + 69.23503694500016 + ], + [ + -119.15409592799989, + 69.2860627660001 + ], + [ + -119.9596254519999, + 69.34539365500007 + ], + [ + -120.40396544399994, + 69.43936821900013 + ], + [ + -120.94914707699985, + 69.66120326400016 + ], + [ + -121.38376027199996, + 69.7636688390001 + ], + [ + -121.87828713399989, + 69.81339973900009 + ], + [ + -122.34224693299996, + 69.81606339300004 + ], + [ + -123.1122392019999, + 69.76917235200011 + ], + [ + -123.13071287499997, + 69.55345214400018 + ], + [ + -123.41105178099991, + 69.4759597690001 + ], + [ + -123.43571715399997, + 69.3990543600001 + ], + [ + -123.68498935199995, + 69.34033070600015 + ], + [ + -123.98670696899995, + 69.39317501900007 + ], + [ + -124.15008103999992, + 69.33271752100018 + ], + [ + -124.4942658839999, + 69.36665434100007 + ], + [ + -124.43432177999995, + 69.48118300800013 + ], + [ + -124.24166789299994, + 69.556633411 + ], + [ + -124.04684029999999, + 69.67411533900014 + ], + [ + -124.4987745709999, + 69.72341306600009 + ], + [ + -124.34818149699998, + 70.05408417600012 + ], + [ + -124.55362380899993, + 70.20003521000012 + ], + [ + -124.71879199099988, + 70.17758070500003 + ], + [ + -124.70451884099998, + 70.06639177900018 + ], + [ + -124.97194884699996, + 70.0392833140001 + ], + [ + -124.79091395499995, + 69.96312335500016 + ], + [ + -124.954746592, + 69.90733663200012 + ], + [ + -125.05527807199991, + 69.7313968860002 + ], + [ + -125.38258803499997, + 69.68581581200004 + ], + [ + -125.45688596599996, + 69.59975955300013 + ], + [ + -125.25724789599991, + 69.58108468800015 + ], + [ + -125.31753230699996, + 69.49592887900013 + ], + [ + -125.15925990599999, + 69.44065000500012 + ], + [ + -125.18101947299994, + 69.37357542400014 + ], + [ + -125.39270643599997, + 69.33293357900016 + ], + [ + -125.94014130599987, + 69.396015788 + ], + [ + -126.26962183799998, + 69.51661757600016 + ], + [ + -126.68870691299998, + 69.73627366900007 + ], + [ + -126.79444281699995, + 69.84935478500017 + ] + ] + ], + [ + [ + [ + -108.09710543999995, + 67.48497500300016 + ], + [ + -107.89271243799993, + 67.55470301700007 + ], + [ + -107.95606347899997, + 67.65784963000004 + ], + [ + -108.10753343699997, + 67.66953205800013 + ], + [ + -108.09710543999995, + 67.48497500300016 + ] + ] + ], + [ + [ + [ + -105.04302303999987, + 68.55397229200003 + ], + [ + -104.99654905699998, + 68.50059547400019 + ], + [ + -104.73610914199998, + 68.4170177200001 + ], + [ + -104.41740828799993, + 68.43220723500002 + ], + [ + -104.40849041699994, + 68.4926186690002 + ], + [ + -104.64099076799988, + 68.57829136800012 + ], + [ + -104.93727540099997, + 68.59565355300009 + ], + [ + -105.04302303999987, + 68.55397229200003 + ] + ] + ], + [ + [ + [ + -111.00569285599994, + 68.51876855000017 + ], + [ + -110.92838213299996, + 68.46303235200014 + ], + [ + -110.66420089299993, + 68.49674527000013 + ], + [ + -110.787552985, + 68.55560179500014 + ], + [ + -111.00569285599994, + 68.51876855000017 + ] + ] + ], + [ + [ + [ + -102.27128622999993, + 68.72098779300006 + ], + [ + -102.22199047599997, + 68.65076899800016 + ], + [ + -101.81076358699994, + 68.56736925100017 + ], + [ + -101.81050360699993, + 68.66192953800004 + ], + [ + -101.66979164599996, + 68.68801185500013 + ], + [ + -101.71678818799995, + 68.78711698799998 + ], + [ + -102.00314131099992, + 68.83085622000004 + ], + [ + -102.27128622999993, + 68.72098779300006 + ] + ] + ], + [ + [ + [ + -100.37651354099995, + 69.05896430700005 + ], + [ + -100.59891255999997, + 69.01019889100019 + ], + [ + -100.6159354749999, + 68.78864145900013 + ], + [ + -100.40035184499999, + 68.74299951700004 + ], + [ + -100.15149903199989, + 68.8663849830001 + ], + [ + -100.1761324019999, + 68.93181215200019 + ], + [ + -100.37651354099995, + 69.05896430700005 + ] + ] + ], + [ + [ + [ + -99.97070019899996, + 68.97071281100017 + ], + [ + -100.05075479899995, + 69.1253492420002 + ], + [ + -100.24216780299997, + 69.05632584000017 + ], + [ + -100.1668505109999, + 68.97985817400007 + ], + [ + -99.97070019899996, + 68.97071281100017 + ] + ] + ], + [ + [ + [ + -97.38918769599985, + 69.7607950810002 + ], + [ + -97.61887736699993, + 69.80984496200006 + ], + [ + -97.84881818999997, + 69.89804164300011 + ], + [ + -98.02481348099997, + 69.89635754800014 + ], + [ + -98.21258834899999, + 69.80018724300004 + ], + [ + -98.36544113599996, + 69.5819549690001 + ], + [ + -98.53967989199998, + 69.60049654099998 + ], + [ + -98.59304652999998, + 69.45305437800016 + ], + [ + -98.40192659599995, + 69.37678734700006 + ], + [ + -98.67955770599991, + 69.28407785100006 + ], + [ + -98.73515073599992, + 69.19267888000007 + ], + [ + -99.03900597199998, + 69.148399209 + ], + [ + -99.42268884299995, + 69.15935226900012 + ], + [ + -99.55081463199991, + 69.02420109700006 + ], + [ + -99.38876723699991, + 68.89849406800016 + ], + [ + -99.16874164199999, + 68.86583104300007 + ], + [ + -98.98892729599999, + 68.9690589270001 + ], + [ + -98.80392912699995, + 68.9169749450001 + ], + [ + -98.84074775899995, + 68.8524044770001 + ], + [ + -98.68009144799993, + 68.79885276100015 + ], + [ + -98.28491495899993, + 68.77796874000018 + ], + [ + -98.10974877199999, + 68.69058396400004 + ], + [ + -97.72832700699996, + 68.6712289890001 + ], + [ + -97.59613589899999, + 68.59393369300005 + ], + [ + -97.1320171569999, + 68.52140332700009 + ], + [ + -96.97661844799995, + 68.54867635200009 + ], + [ + -96.55270037999998, + 68.46028317300011 + ], + [ + -96.26579041899998, + 68.48693741200003 + ], + [ + -95.76101324899997, + 68.73810199899998 + ], + [ + -95.58742291199997, + 68.77487196600009 + ], + [ + -95.38973070999998, + 68.76728603999999 + ], + [ + -95.15908985999988, + 68.868848743 + ], + [ + -95.30917416299991, + 68.91389319800015 + ], + [ + -95.51834681999998, + 68.84701920700002 + ], + [ + -95.8179034289999, + 68.90352741200007 + ], + [ + -95.81710412599995, + 68.98166814500019 + ], + [ + -95.94111496999989, + 69.07520490400009 + ], + [ + -95.9110573239999, + 69.13483680800005 + ], + [ + -96.27292564499999, + 69.35594580500009 + ], + [ + -96.85218939199996, + 69.5030979600001 + ], + [ + -97.08353161199983, + 69.59650401900007 + ], + [ + -97.08308755899986, + 69.64893511700018 + ], + [ + -97.38918769599985, + 69.7607950810002 + ] + ] + ], + [ + [ + [ + -128.33960478899996, + 70.52516125300014 + ], + [ + -128.08746036599996, + 70.58640118600016 + ], + [ + -128.27551510499995, + 70.63513728200013 + ], + [ + -128.33960478899996, + 70.52516125300014 + ] + ] + ], + [ + [ + [ + -100.582445652, + 70.67303158200008 + ], + [ + -100.66146734999984, + 70.59412275900019 + ], + [ + -100.4868691069999, + 70.51894579900011 + ], + [ + -100.27001201799999, + 70.49034423400019 + ], + [ + -100.32893051499997, + 70.6289292100002 + ], + [ + -100.582445652, + 70.67303158200008 + ] + ] + ], + [ + [ + [ + -114.34338935799997, + 72.73560477700005 + ], + [ + -114.20018461599989, + 72.79901965700003 + ], + [ + -113.97797991899989, + 72.80481160699998 + ], + [ + -114.01921595399995, + 72.96148429200008 + ], + [ + -113.92365650299996, + 73.10332174500019 + ], + [ + -113.98633180899992, + 73.20977003300004 + ], + [ + -114.22874124899994, + 73.33067103000013 + ], + [ + -114.67724241599996, + 73.36967869500012 + ], + [ + -115.41341487199986, + 73.21758721000015 + ], + [ + -116.52419308299994, + 73.0544797340001 + ], + [ + -116.80502951199992, + 72.97644136300016 + ], + [ + -117.32086875499994, + 72.91562272200014 + ], + [ + -117.606180124, + 72.77736721100013 + ], + [ + -118.10721627899994, + 72.64325892200009 + ], + [ + -118.52722796799998, + 72.47127399700008 + ], + [ + -118.44775720399991, + 72.35591738800008 + ], + [ + -118.09452868199998, + 72.32711871200007 + ], + [ + -118.0795544099999, + 72.24090584400011 + ], + [ + -118.42946793599992, + 72.18463070800004 + ], + [ + -118.64405329499994, + 72.12231534000011 + ], + [ + -118.73319820899997, + 72.04322887600006 + ], + [ + -119.0402703879999, + 71.91801682600004 + ], + [ + -119.12256593199993, + 71.78969874200004 + ], + [ + -119.06768974999989, + 71.66698696000014 + ], + [ + -118.47888100399985, + 71.65889860100015 + ], + [ + -118.31448522299996, + 71.58209698200017 + ], + [ + -118.03222042199991, + 71.67347252400009 + ], + [ + -117.96946913399995, + 71.55313195100018 + ], + [ + -118.30444925999984, + 71.47011361200009 + ], + [ + -118.24698863799995, + 71.39971222900004 + ], + [ + -118.00537207099995, + 71.37570834200017 + ], + [ + -117.50371344999996, + 71.38484201600005 + ], + [ + -116.88580755299989, + 71.43308481300011 + ], + [ + -116.29065412699987, + 71.50824119900011 + ], + [ + -115.78721566099995, + 71.49526143300011 + ], + [ + -116.11368161299987, + 71.42868033600013 + ], + [ + -116.14883597999994, + 71.37644838000011 + ], + [ + -116.75279300099999, + 71.29787225500007 + ], + [ + -116.84321121, + 71.25103975800016 + ], + [ + -117.81012045399996, + 71.16463769400019 + ], + [ + -118.40649313999995, + 70.99828253900006 + ], + [ + -118.19644434399999, + 70.84803028300018 + ], + [ + -117.76318254799992, + 70.72449405600014 + ], + [ + -117.67947938799995, + 70.6311182280001 + ], + [ + -117.39423046699994, + 70.57572114800007 + ], + [ + -117.23494395299991, + 70.61407820300019 + ], + [ + -116.70868316599996, + 70.6024257000002 + ], + [ + -116.12423391999988, + 70.63391176700003 + ], + [ + -116.024254843, + 70.57017787100017 + ], + [ + -115.71934440999996, + 70.60427273600004 + ], + [ + -115.08123865599998, + 70.59793600100005 + ], + [ + -114.4903289269999, + 70.64542111300005 + ], + [ + -114.331792899, + 70.68306207900014 + ], + [ + -113.95278972699992, + 70.71402454800005 + ], + [ + -113.50511120399989, + 70.66004168600011 + ], + [ + -113.19439433899998, + 70.64160719500012 + ], + [ + -112.9133427409999, + 70.56289242600019 + ], + [ + -112.66477064899988, + 70.56207461399998 + ], + [ + -112.08000051199991, + 70.48895597100017 + ], + [ + -111.99393686099995, + 70.38321164500007 + ], + [ + -111.5109859449999, + 70.35357632900013 + ], + [ + -111.65579084899997, + 70.27208001200006 + ], + [ + -112.17721973, + 70.27772152000017 + ], + [ + -112.53090706399996, + 70.20143114700011 + ], + [ + -113.31024236899992, + 70.2843094540001 + ], + [ + -113.63266168999996, + 70.26789171600007 + ], + [ + -113.97918844499998, + 70.28274434000014 + ], + [ + -114.19334226399997, + 70.32034016400007 + ], + [ + -114.46566318899988, + 70.32356353900019 + ], + [ + -116.11880234599988, + 70.21680652000009 + ], + [ + -116.94235354699998, + 70.12879393500003 + ], + [ + -117.31036598599985, + 70.05641020600001 + ], + [ + -117.40432878899998, + 69.98691867100007 + ], + [ + -117.22196234299997, + 69.75477623199998 + ], + [ + -116.83453662199992, + 69.64645365200016 + ], + [ + -116.85391266999994, + 69.57538153500013 + ], + [ + -116.56668728099999, + 69.55162004200008 + ], + [ + -116.57954903499996, + 69.44752294000006 + ], + [ + -116.49245522399991, + 69.40439003700004 + ], + [ + -115.94406673999998, + 69.29891451600008 + ], + [ + -115.47073691999992, + 69.257685359 + ], + [ + -115.1403097729999, + 69.25010877400007 + ], + [ + -115.01907368999997, + 69.2871528840002 + ], + [ + -114.65415508299998, + 69.26691853000005 + ], + [ + -114.38023579299988, + 69.29251911400013 + ], + [ + -113.62184939799982, + 69.19990330700017 + ], + [ + -113.5658883019999, + 68.9517868280002 + ], + [ + -113.66455553299988, + 68.89666387500017 + ], + [ + -113.5636694189999, + 68.7641526600001 + ], + [ + -113.42457875499997, + 68.69403184000004 + ], + [ + -113.36642836399994, + 68.60617665200004 + ], + [ + -113.07288850699996, + 68.54279230300006 + ], + [ + -113.19152760399987, + 68.458156717 + ], + [ + -112.33481773799991, + 68.50140039600018 + ], + [ + -112.09651095999999, + 68.53538426600005 + ], + [ + -111.67718997499992, + 68.5486657780001 + ], + [ + -111.18946734999997, + 68.52064385900013 + ], + [ + -111.09782427399995, + 68.58496707000006 + ], + [ + -110.915936021, + 68.55318480200009 + ], + [ + -110.59088632699996, + 68.62121562700014 + ], + [ + -110.40296906299994, + 68.60698969800018 + ], + [ + -110.1623176089999, + 68.64085290100013 + ], + [ + -110.02674810399998, + 68.62018209399997 + ], + [ + -109.70727411499996, + 68.63450495500012 + ], + [ + -109.39985588299999, + 68.69606717400006 + ], + [ + -109.18305970299991, + 68.70411759799998 + ], + [ + -108.92578422899999, + 68.74960750500003 + ], + [ + -108.52345478399997, + 68.8923400220001 + ], + [ + -108.53647185299997, + 68.94396743100009 + ], + [ + -108.09935307599994, + 68.93917956000013 + ], + [ + -107.51291318999995, + 68.97870626200012 + ], + [ + -107.29117236599996, + 69.03395641500003 + ], + [ + -107.106844019, + 69.16204124800015 + ], + [ + -106.90896557799988, + 69.24551340500011 + ], + [ + -106.97628931899999, + 69.34003671500005 + ], + [ + -106.75310145199995, + 69.37828271300015 + ], + [ + -106.62363998499995, + 69.49141157400004 + ], + [ + -106.46905942199987, + 69.47297326800015 + ], + [ + -106.32679398599998, + 69.38680062200012 + ], + [ + -106.25472140799997, + 69.28399711900016 + ], + [ + -106.39110016099988, + 69.17587269700016 + ], + [ + -106.14706237499996, + 69.14917786500013 + ], + [ + -105.84405983099992, + 69.18049750000011 + ], + [ + -105.57984289199999, + 69.15769859400018 + ], + [ + -105.07860575499996, + 69.0618095530001 + ], + [ + -105.02564795399985, + 69.00100947800007 + ], + [ + -105.24498996199998, + 68.96510442100015 + ], + [ + -105.12502318199995, + 68.89622242500008 + ], + [ + -104.64230865499997, + 68.85999278800011 + ], + [ + -104.43617892899994, + 68.94468998300016 + ], + [ + -104.10421918499986, + 68.85749619400013 + ], + [ + -103.94483921899985, + 68.8807339670002 + ], + [ + -103.60832234299988, + 68.82193307100005 + ], + [ + -103.13473950399998, + 68.8529389090001 + ], + [ + -102.99265164199994, + 68.80734334800002 + ], + [ + -102.7890883199999, + 68.84144820000012 + ], + [ + -102.71326635399993, + 68.91097062500018 + ], + [ + -102.47981908799989, + 68.88026990500015 + ], + [ + -102.37081685599992, + 68.93406271700019 + ], + [ + -101.80700786399996, + 69.00317477900006 + ], + [ + -101.72370653699994, + 69.16743239000016 + ], + [ + -101.89690196699996, + 69.25182504200018 + ], + [ + -102.03989550699998, + 69.26161892400012 + ], + [ + -102.07225632899991, + 69.34156483800012 + ], + [ + -101.91485760699999, + 69.41400676100011 + ], + [ + -101.97246697499997, + 69.46728972500017 + ], + [ + -102.28503751599993, + 69.51267406700009 + ], + [ + -102.57562432799995, + 69.4280344460002 + ], + [ + -102.82450956999998, + 69.39846892500003 + ], + [ + -102.9694604209999, + 69.41571525000018 + ], + [ + -102.99812060099998, + 69.50343810400017 + ], + [ + -103.18288107399991, + 69.57776929800008 + ], + [ + -103.48719159299998, + 69.64456020000017 + ], + [ + -103.31022405799996, + 69.70865971400008 + ], + [ + -102.92270125199985, + 69.56145965500019 + ], + [ + -102.58543972399985, + 69.54864394000003 + ], + [ + -102.48945723699995, + 69.57416383700013 + ], + [ + -102.51361966099995, + 69.70150203200012 + ], + [ + -102.21730459999992, + 69.8551807450001 + ], + [ + -101.98752205599999, + 69.81812169000011 + ], + [ + -101.64658887999997, + 69.69340776300015 + ], + [ + -101.4263117289999, + 69.79751570100018 + ], + [ + -101.25613363199994, + 69.67121776100004 + ], + [ + -101.05098956699999, + 69.66230440000015 + ], + [ + -100.89950461399997, + 69.70169533600011 + ], + [ + -100.84674439499986, + 69.88967930500013 + ], + [ + -101.00822679499993, + 70.21041642200004 + ], + [ + -101.41111337399997, + 70.14404085600006 + ], + [ + -101.60268072999997, + 70.17068703400014 + ], + [ + -101.67058636199988, + 70.32003653600015 + ], + [ + -101.87731514799998, + 70.27120667800011 + ], + [ + -102.26422138799995, + 70.39681496400004 + ], + [ + -102.83900898799999, + 70.54419170800008 + ], + [ + -102.8090854649999, + 70.60399286900008 + ], + [ + -103.01351776099995, + 70.68822411800016 + ], + [ + -103.28787481099994, + 70.6126749460002 + ], + [ + -103.53707663699993, + 70.61060168800003 + ], + [ + -103.8252005189999, + 70.75886267000004 + ], + [ + -103.98618260899997, + 70.76849040500002 + ], + [ + -104.08130408599993, + 70.91598631100015 + ], + [ + -104.39294923199998, + 70.99499616000003 + ], + [ + -104.63466394699998, + 71.13302478000003 + ], + [ + -104.43557638699991, + 71.26772382400003 + ], + [ + -104.50646847899992, + 71.34541304700002 + ], + [ + -104.35547383499988, + 71.3748831870002 + ], + [ + -104.38965604999999, + 71.54095584700008 + ], + [ + -104.33728144699984, + 71.59645423800009 + ], + [ + -104.51893351199993, + 71.74091135800012 + ], + [ + -104.84132028099987, + 71.90273070900008 + ], + [ + -104.88196932299991, + 72.0457331180001 + ], + [ + -105.09717759099993, + 72.33982190900014 + ], + [ + -105.21854718299994, + 72.3969876760001 + ], + [ + -105.21856384999995, + 72.53798902199998 + ], + [ + -105.41699315599993, + 72.69905881500011 + ], + [ + -105.29163546199993, + 72.72982964400018 + ], + [ + -105.4889712289999, + 72.87679033500012 + ], + [ + -105.76160964399998, + 72.97087714900005 + ], + [ + -105.8096530819999, + 73.03179439000019 + ], + [ + -106.06772519999993, + 73.06068790900014 + ], + [ + -106.70666069699996, + 73.27426713700004 + ], + [ + -106.99981540999988, + 73.28845138700018 + ], + [ + -107.19414741799994, + 73.20178042400005 + ], + [ + -107.59100694299997, + 73.31732074000007 + ], + [ + -108.02833023799985, + 73.342470956 + ], + [ + -108.03301463999992, + 73.23652229100003 + ], + [ + -108.24951399499992, + 73.11976868300013 + ], + [ + -108.000935455, + 72.76760425900005 + ], + [ + -107.987798608, + 72.62893723899998 + ], + [ + -107.84206178599987, + 72.58541916900015 + ], + [ + -107.81643198999996, + 72.36692582100011 + ], + [ + -107.72001576899999, + 72.29224870800005 + ], + [ + -107.74491242699997, + 72.13741298800016 + ], + [ + -107.59324918099992, + 72.08826657800006 + ], + [ + -107.57509472899983, + 72.00855738700005 + ], + [ + -107.27800278199999, + 71.90986339900013 + ], + [ + -107.48571190899992, + 71.86818781900018 + ], + [ + -107.64476229699994, + 71.73531667800012 + ], + [ + -108.0333235889999, + 71.71839755100012 + ], + [ + -108.30987110399997, + 71.80286518400015 + ], + [ + -108.19969826399995, + 71.96400899100018 + ], + [ + -108.38284755099994, + 71.99714943600003 + ], + [ + -108.36364487299988, + 72.07089025200008 + ], + [ + -108.63830262499988, + 72.3361063480001 + ], + [ + -108.5452251029999, + 72.49780500500003 + ], + [ + -108.65000578899998, + 72.6182411320001 + ], + [ + -108.99185193699998, + 72.57533583000014 + ], + [ + -109.05790920399994, + 72.73564870600006 + ], + [ + -109.33100024899994, + 72.76948203900014 + ], + [ + -109.59831850799992, + 72.84607679800007 + ], + [ + -109.63929672199993, + 72.9312389860001 + ], + [ + -110.25795272599993, + 72.99709004400006 + ], + [ + -110.6642297329999, + 72.99530557500009 + ], + [ + -110.70044805599991, + 72.93479128300015 + ], + [ + -110.53320354099998, + 72.85621387300006 + ], + [ + -110.16052566399998, + 72.8117074610002 + ], + [ + -110.19105012899996, + 72.709062179 + ], + [ + -109.90040852999994, + 72.59116029800009 + ], + [ + -109.77231158799998, + 72.49516459600017 + ], + [ + -110.00987817999993, + 72.43564762200015 + ], + [ + -110.29669609899997, + 72.55020482100008 + ], + [ + -110.47911717999995, + 72.51541257500014 + ], + [ + -110.72371665999998, + 72.55776269900014 + ], + [ + -111.04824897899994, + 72.40172705700007 + ], + [ + -111.08633437499998, + 72.34024816000016 + ], + [ + -111.34172134899995, + 72.36233007500016 + ], + [ + -111.17130215699996, + 72.45343524100008 + ], + [ + -111.41943303299996, + 72.50906034700017 + ], + [ + -111.17655871299996, + 72.624232458 + ], + [ + -111.1854550239999, + 72.72295325300007 + ], + [ + -112.014175121, + 72.88801566300003 + ], + [ + -112.35771106399989, + 72.91264596500014 + ], + [ + -112.47905703499998, + 72.95123199900013 + ], + [ + -113.035841012, + 73.00859979800003 + ], + [ + -113.3613312089999, + 72.90901853200012 + ], + [ + -113.56163743399992, + 72.75338241100019 + ], + [ + -113.80101027599994, + 72.64049619700018 + ], + [ + -114.02174405899996, + 72.65110901700007 + ], + [ + -114.34333498399991, + 72.5587382220001 + ], + [ + -114.54638878599997, + 72.61845287199998 + ], + [ + -114.28396873999998, + 72.69147210700015 + ], + [ + -114.34338935799997, + 72.73560477700005 + ] + ] + ], + [ + [ + [ + -98.01915223799989, + 73.0208088940002 + ], + [ + -98.43986788499996, + 72.999436446 + ], + [ + -97.94114238999998, + 73.18437036400019 + ], + [ + -97.8242284989999, + 73.27410468599999 + ], + [ + -97.61174337699993, + 73.32513261300011 + ], + [ + -97.1445530869999, + 73.35523223200005 + ], + [ + -97.24977043899997, + 73.48508644000009 + ], + [ + -97.65767854199993, + 73.48736538000003 + ], + [ + -96.966105412, + 73.62440076000007 + ], + [ + -96.91389725699992, + 73.69312614100005 + ], + [ + -97.19036346399997, + 73.85377513100008 + ], + [ + -97.7495604849999, + 73.91456120000004 + ], + [ + -98.15419945999992, + 73.80795282900016 + ], + [ + -99.22307236499984, + 73.74319314500013 + ], + [ + -99.45046677699997, + 73.82402713300002 + ], + [ + -99.70126740699999, + 73.85039774000012 + ], + [ + -99.95203061099994, + 73.95106751300017 + ], + [ + -101.00742018799997, + 73.79836678400005 + ], + [ + -101.04232461499998, + 73.67489423800009 + ], + [ + -100.56654022099997, + 73.59798103800006 + ], + [ + -101.15611608199998, + 73.60258322400017 + ], + [ + -101.43874552099999, + 73.54950616500014 + ], + [ + -101.54075754099989, + 73.47076823500015 + ], + [ + -101.25052870299993, + 73.35866772100013 + ], + [ + -100.81446733299998, + 73.26013229300008 + ], + [ + -100.56505047999997, + 73.28019685200013 + ], + [ + -100.25621537299992, + 73.36391082800009 + ], + [ + -100.14525683199997, + 73.28570898900011 + ], + [ + -100.43728070099996, + 73.25714451700014 + ], + [ + -100.57913651099989, + 73.15532555600004 + ], + [ + -100.50322484799995, + 73.1084185420001 + ], + [ + -100.17348785899992, + 73.08998025500011 + ], + [ + -100.03243045999989, + 72.93542290900018 + ], + [ + -100.32305138099997, + 72.8762329450002 + ], + [ + -100.30093898299992, + 72.79866311000012 + ], + [ + -100.42791219699996, + 72.73451447100007 + ], + [ + -100.79302062099998, + 72.73077836800013 + ], + [ + -100.84400541599996, + 72.68981386700011 + ], + [ + -101.26568468799991, + 72.71266062700005 + ], + [ + -101.43638554199998, + 72.79516169800013 + ], + [ + -101.52032204299996, + 72.91923660100014 + ], + [ + -101.73674762699983, + 72.93326627900007 + ], + [ + -101.75478117499995, + 73.00174947400012 + ], + [ + -102.11985694499998, + 73.08838408300005 + ], + [ + -102.49672821699983, + 73.02604288300012 + ], + [ + -102.73532300499988, + 72.76800816300005 + ], + [ + -102.66656035299991, + 72.69089904499998 + ], + [ + -102.36285022499999, + 72.58652722800008 + ], + [ + -101.92695344199996, + 72.47400479300006 + ], + [ + -101.80937480999995, + 72.31546958400008 + ], + [ + -101.45879427499989, + 72.26587851800008 + ], + [ + -101.17512410999996, + 72.33005381200007 + ], + [ + -100.90564205699997, + 72.18412548200018 + ], + [ + -100.61373863999995, + 72.18229916500013 + ], + [ + -100.42985465899989, + 72.05566988700008 + ], + [ + -100.05258467699991, + 71.88350653500004 + ], + [ + -99.82335529099998, + 71.84108307900016 + ], + [ + -99.59430830399998, + 71.71065955300003 + ], + [ + -99.52762416599995, + 71.62601818600018 + ], + [ + -99.34323830399995, + 71.5874505600001 + ], + [ + -99.35095065799993, + 71.52081194000004 + ], + [ + -99.21366072199993, + 71.3664471960002 + ], + [ + -98.942171939, + 71.39996112600011 + ], + [ + -98.7029847039999, + 71.29412266800006 + ], + [ + -98.43168009199997, + 71.33780339700013 + ], + [ + -98.11826241599994, + 71.47477551700013 + ], + [ + -98.03362082999996, + 71.55412400400013 + ], + [ + -98.16974530799996, + 71.6549498650001 + ], + [ + -97.95751680399997, + 71.67838506600015 + ], + [ + -97.45498568499988, + 71.62660043300014 + ], + [ + -97.14803662199995, + 71.68817756200019 + ], + [ + -96.91480255399995, + 71.81847629400005 + ], + [ + -96.7216276289999, + 71.80602068500002 + ], + [ + -96.51512576899984, + 71.84786793300003 + ], + [ + -96.45148786099998, + 72.031492657 + ], + [ + -96.48944893999993, + 72.23820045600007 + ], + [ + -96.65312781399984, + 72.30645691100017 + ], + [ + -96.26919291799987, + 72.42339852100014 + ], + [ + -96.49243191999994, + 72.66956622000015 + ], + [ + -96.63904233399995, + 72.70871030700005 + ], + [ + -96.99827204799993, + 72.73576979600011 + ], + [ + -97.26052622199995, + 72.85231118400003 + ], + [ + -97.2073683559999, + 72.93355270500018 + ], + [ + -97.42837227599995, + 72.99773749500008 + ], + [ + -97.83788690399996, + 73.0458910970001 + ], + [ + -98.01915223799989, + 73.0208088940002 + ] + ] + ], + [ + [ + [ + -96.86772502799994, + 72.85116636300006 + ], + [ + -96.96824302399995, + 72.77624208400005 + ], + [ + -96.75559454999996, + 72.73278069600008 + ], + [ + -96.60422587799997, + 72.78234988600019 + ], + [ + -96.65896299299999, + 72.88954639900004 + ], + [ + -96.86772502799994, + 72.85116636300006 + ] + ] + ], + [ + [ + [ + -119.75362103999998, + 74.13185451100003 + ], + [ + -119.67421257299998, + 74.24193728800014 + ], + [ + -120.07524344799998, + 74.27482152700003 + ], + [ + -120.91397093699999, + 74.43229283900007 + ], + [ + -121.11365218299989, + 74.52362928800005 + ], + [ + -121.46149089399995, + 74.55560464400014 + ], + [ + -121.76200264499994, + 74.54742450200013 + ], + [ + -122.29094713899991, + 74.47601857600011 + ], + [ + -123.18384838699995, + 74.45186860500007 + ], + [ + -124.029000651, + 74.40697024700006 + ], + [ + -124.70675534599997, + 74.35236225600005 + ], + [ + -124.50733869599992, + 74.25100892900014 + ], + [ + -124.36694990299998, + 74.02940694300008 + ], + [ + -124.10049187599992, + 73.85468768700008 + ], + [ + -123.81177861199996, + 73.81963633300018 + ], + [ + -123.86278723099991, + 73.70507346400012 + ], + [ + -124.04949958399993, + 73.66423334500007 + ], + [ + -124.07900312699991, + 73.52348113000005 + ], + [ + -124.28879584699996, + 73.49277507200014 + ], + [ + -124.51530941899995, + 73.3287996160002 + ], + [ + -124.5576760109999, + 73.23918104400019 + ], + [ + -124.81479528099999, + 73.10884622600014 + ], + [ + -124.79570565799992, + 73.03013076200006 + ], + [ + -124.54878845699989, + 72.99616072400005 + ], + [ + -124.455340278, + 72.93742907600017 + ], + [ + -124.72249150699997, + 72.88866629300009 + ], + [ + -125.0484798359999, + 72.88799193100004 + ], + [ + -124.95339936999994, + 72.67884775700014 + ], + [ + -125.0559028799999, + 72.56471386600003 + ], + [ + -125.31597430999989, + 72.48014502199999 + ], + [ + -125.5217314059999, + 72.28629963800006 + ], + [ + -125.63026131899994, + 72.26205776400013 + ], + [ + -125.72682836599989, + 72.11591036100015 + ], + [ + -125.74020721799991, + 71.953007264 + ], + [ + -125.24856136299996, + 71.98162494500008 + ], + [ + -125.06296861399994, + 71.90211306900017 + ], + [ + -124.59456059099989, + 71.7856976290002 + ], + [ + -124.05369621999989, + 71.697142401 + ], + [ + -123.88978648699998, + 71.62306857400017 + ], + [ + -123.80679727699993, + 71.52823260800011 + ], + [ + -123.61558668799995, + 71.4889869380001 + ], + [ + -123.42268480999991, + 71.21897048200009 + ], + [ + -123.08579716299994, + 71.08036387500016 + ], + [ + -122.78679003399992, + 71.08150388700017 + ], + [ + -122.49507227799995, + 71.20849530900011 + ], + [ + -122.02829363899997, + 71.30105894200005 + ], + [ + -121.90178011999996, + 71.3931042320001 + ], + [ + -121.5595878449999, + 71.46055765200009 + ], + [ + -121.32075902799994, + 71.3800897960001 + ], + [ + -120.72581211199991, + 71.47122060700013 + ], + [ + -120.49178980999994, + 71.54894973400008 + ], + [ + -120.37580769999994, + 71.70239591600011 + ], + [ + -120.44702936399995, + 71.74023729100003 + ], + [ + -120.44085348899995, + 71.93564965000002 + ], + [ + -120.15855589599994, + 72.09340524200013 + ], + [ + -120.1217953979999, + 72.1630366070001 + ], + [ + -120.25216604199983, + 72.24080663500013 + ], + [ + -119.77904432999992, + 72.21983362500015 + ], + [ + -119.31350341699994, + 72.38742319700015 + ], + [ + -119.15032404899989, + 72.6230687060002 + ], + [ + -118.35189786299992, + 72.82560100100005 + ], + [ + -117.93489841599995, + 72.90494120900019 + ], + [ + -117.46695469599985, + 73.03129654000003 + ], + [ + -117.22136941999986, + 73.05460179400006 + ], + [ + -116.64047319399998, + 73.215205605 + ], + [ + -115.89170476099997, + 73.32281569300011 + ], + [ + -115.45573218899983, + 73.42042364600007 + ], + [ + -115.30414529099988, + 73.4911902880001 + ], + [ + -115.3358682299999, + 73.54809548700013 + ], + [ + -115.89711884699994, + 73.73051092600019 + ], + [ + -116.60592846099996, + 73.99893220100012 + ], + [ + -117.38938279599995, + 74.226068156 + ], + [ + -118.06624420499998, + 74.28049407200018 + ], + [ + -118.6141958469999, + 74.22648943200005 + ], + [ + -118.81525003899998, + 74.18730097400015 + ], + [ + -118.76572101999989, + 74.12115704400014 + ], + [ + -118.92700455099992, + 74.00939606700013 + ], + [ + -119.067581411, + 74.20154905099997 + ], + [ + -119.43736389699995, + 74.22654118300017 + ], + [ + -119.61154197799993, + 74.12628436200004 + ], + [ + -119.75362103999998, + 74.13185451100003 + ] + ] + ], + [ + [ + [ + -96.686785392, + 73.13536527200017 + ], + [ + -96.85511828199992, + 73.18613902200013 + ], + [ + -97.11703035999994, + 73.08595032200003 + ], + [ + -96.9513552649999, + 72.92888839900007 + ], + [ + -96.68568991799992, + 72.93463765700005 + ], + [ + -96.53904585699996, + 73.03044147500009 + ], + [ + -96.686785392, + 73.13536527200017 + ] + ] + ], + [ + [ + [ + -104.51639097999998, + 73.34778353300004 + ], + [ + -104.44385702399984, + 73.53516506200009 + ], + [ + -104.51242751399997, + 73.5957026210001 + ], + [ + -105.0833672789999, + 73.75034125700006 + ], + [ + -105.53033824999994, + 73.76592615400017 + ], + [ + -105.66859147499997, + 73.73349507900008 + ], + [ + -106.26194784399996, + 73.72847008900015 + ], + [ + -106.62377107999998, + 73.68630764400012 + ], + [ + -107.0022864309999, + 73.4647949190001 + ], + [ + -106.74753519899991, + 73.4560638440002 + ], + [ + -106.41936048499986, + 73.39582401200005 + ], + [ + -106.16043413099993, + 73.28179417700005 + ], + [ + -105.72708085799997, + 73.04434758200006 + ], + [ + -105.50213422499996, + 72.97602759900019 + ], + [ + -105.23428243299998, + 72.93824469400016 + ], + [ + -104.99330230399988, + 73.0042795870001 + ], + [ + -104.51639097999998, + 73.34778353300004 + ] + ] + ], + [ + [ + [ + -99.40311451799988, + 73.91787843600008 + ], + [ + -99.08364277299995, + 73.81648899900017 + ], + [ + -98.7669418239999, + 73.81587915100016 + ], + [ + -98.06806583299993, + 73.89252490000018 + ], + [ + -97.632369069, + 74.05347866000005 + ], + [ + -97.6912643199999, + 74.11799201100001 + ], + [ + -98.0086938419999, + 74.11032434200001 + ], + [ + -98.46077999899995, + 74.04153603499998 + ], + [ + -98.77095207599996, + 74.03390066800017 + ], + [ + -99.04387653999999, + 73.95675526300005 + ], + [ + -99.40311451799988, + 73.91787843600008 + ] + ] + ], + [ + [ + [ + -97.26163461999994, + 74.58991754200008 + ], + [ + -97.43451986299993, + 74.62993399400011 + ], + [ + -97.77973289599998, + 74.49701158700009 + ], + [ + -97.55790749899995, + 74.47352734000009 + ], + [ + -97.26163461999994, + 74.58991754200008 + ] + ] + ], + [ + [ + [ + -104.68304097299995, + 75.31850168700015 + ], + [ + -104.90025891999994, + 75.11859464900016 + ], + [ + -104.58601042899994, + 75.05346798600004 + ], + [ + -104.196046261, + 75.02067322300002 + ], + [ + -103.8494069489999, + 75.05834435000008 + ], + [ + -103.57351713399993, + 75.15392603200019 + ], + [ + -103.74936448999983, + 75.3064946400001 + ], + [ + -103.96115084699989, + 75.40371314000015 + ], + [ + -104.37467827599983, + 75.42695226900014 + ], + [ + -104.68304097299995, + 75.31850168700015 + ] + ] + ], + [ + [ + [ + -108.51790410299998, + 76.64772531200003 + ], + [ + -108.39333611999984, + 76.70514595100008 + ], + [ + -108.6195872809999, + 76.81469051200008 + ], + [ + -109.09075060299995, + 76.82312298200003 + ], + [ + -109.29369761399994, + 76.79538606100004 + ], + [ + -109.53948021799982, + 76.62562238700008 + ], + [ + -109.72680259499998, + 76.59600501800008 + ], + [ + -110.084802288, + 76.44549748700013 + ], + [ + -110.37778079799989, + 76.40346754300015 + ], + [ + -110.26419968999988, + 76.30201757900011 + ], + [ + -109.91916269099994, + 76.20683171600012 + ], + [ + -109.68496038899997, + 76.21848286600016 + ], + [ + -109.27064759599995, + 76.10206739900008 + ], + [ + -109.36727320999995, + 76.02250158000004 + ], + [ + -109.62958012499996, + 75.95343078000019 + ], + [ + -110.034954627, + 75.89688563599998 + ], + [ + -109.89878148899999, + 75.85083855400018 + ], + [ + -108.9337633639999, + 75.70960822800009 + ], + [ + -108.80128020599994, + 75.61910419999998 + ], + [ + -108.9438160919999, + 75.48055318100006 + ], + [ + -109.233222937, + 75.51745401900001 + ], + [ + -110.36009987399996, + 75.54092252100008 + ], + [ + -110.77742535199991, + 75.56604576000018 + ], + [ + -111.19811949199999, + 75.52125252100006 + ], + [ + -111.38588331299997, + 75.61597369400016 + ], + [ + -111.3115521879999, + 75.71006073100017 + ], + [ + -111.45323335999984, + 75.84384717400008 + ], + [ + -111.93256273299988, + 75.80723733399998 + ], + [ + -112.1538969099999, + 75.84475235800016 + ], + [ + -111.68552464899989, + 75.92244806600013 + ], + [ + -112.380522037, + 76.04341636999999 + ], + [ + -112.54465734799993, + 76.198677427 + ], + [ + -112.97961817599992, + 76.27115975599997 + ], + [ + -113.3387092609999, + 76.26581150200013 + ], + [ + -113.68317214299998, + 76.20416018900016 + ], + [ + -114.0236211319999, + 76.22321752500011 + ], + [ + -114.12471581699992, + 76.3137597000001 + ], + [ + -114.04484792299996, + 76.41730322500001 + ], + [ + -114.396630486, + 76.49471021200014 + ], + [ + -114.88926131499989, + 76.49786660000018 + ], + [ + -115.62236186299998, + 76.42077823100016 + ], + [ + -115.87170694799994, + 76.35583443900015 + ], + [ + -115.85639131699998, + 76.25617295000006 + ], + [ + -116.04924883199999, + 76.20415110600004 + ], + [ + -116.60682568999988, + 76.12023961900013 + ], + [ + -116.71915032099992, + 75.90192910000019 + ], + [ + -116.04976513199995, + 75.80909889300011 + ], + [ + -116.78695359199992, + 75.80042715400015 + ], + [ + -116.98245414699994, + 75.75233731600002 + ], + [ + -117.21688800499999, + 75.58201577200015 + ], + [ + -116.39698578599985, + 75.5611776790002 + ], + [ + -115.39736087699998, + 75.65486620899998 + ], + [ + -115.94169323399996, + 75.4927526960002 + ], + [ + -116.12991544699997, + 75.47723275800001 + ], + [ + -117.14511854999984, + 75.48186952100008 + ], + [ + -117.54986059999993, + 75.35114338000005 + ], + [ + -117.65380816499999, + 75.24669018300017 + ], + [ + -117.48489072599989, + 75.19722939600007 + ], + [ + -116.69144610099988, + 75.11732720900005 + ], + [ + -116.55565914299984, + 75.18078766999997 + ], + [ + -116.23230732199994, + 75.18136829200006 + ], + [ + -116.22536156699988, + 75.05924779200006 + ], + [ + -115.67619936899996, + 74.96893694500005 + ], + [ + -115.53466796499998, + 75.00370232800014 + ], + [ + -115.57506610899986, + 75.10337749800004 + ], + [ + -115.20248130999994, + 75.07240667300016 + ], + [ + -114.99402065799995, + 74.96387377000008 + ], + [ + -114.43536300999989, + 75.06020057600017 + ], + [ + -114.09560228899988, + 75.25019486200017 + ], + [ + -114.04174266999996, + 75.33876310000016 + ], + [ + -113.80282254899998, + 75.31916499200003 + ], + [ + -113.90552897799995, + 75.19527703300008 + ], + [ + -113.90363866299987, + 75.05513210900011 + ], + [ + -113.00797609699998, + 75.09324923600013 + ], + [ + -112.77304580799989, + 75.120827302 + ], + [ + -112.60716437499991, + 75.19954969300011 + ], + [ + -112.37237939199997, + 75.12525365000016 + ], + [ + -111.55553179699996, + 75.14263968200004 + ], + [ + -111.05162328799997, + 75.27372660000015 + ], + [ + -110.88960230299995, + 75.23657006000013 + ], + [ + -111.28539229599988, + 75.07766355500013 + ], + [ + -111.71318978299996, + 74.98861141700007 + ], + [ + -112.0722610059999, + 75.01164107400012 + ], + [ + -112.84158231999999, + 74.98115249400007 + ], + [ + -113.10016750199998, + 74.94194054600018 + ], + [ + -113.45395972099993, + 74.8384317870001 + ], + [ + -113.71851031299997, + 74.82634130000008 + ], + [ + -114.19457478099997, + 74.76094408100016 + ], + [ + -114.42023153899999, + 74.69290212800007 + ], + [ + -114.39083912999996, + 74.64653789200008 + ], + [ + -114.01729806099996, + 74.52542807999998 + ], + [ + -113.69103245499991, + 74.450404746 + ], + [ + -113.0309321229999, + 74.39913627200019 + ], + [ + -112.39995634699994, + 74.4169890020001 + ], + [ + -111.64289227899997, + 74.49585225400017 + ], + [ + -111.39470683699994, + 74.56255372700019 + ], + [ + -111.0328434249999, + 74.61135925300005 + ], + [ + -110.55491159999991, + 74.7079794230001 + ], + [ + -110.62481251999992, + 74.77443521000004 + ], + [ + -110.22411141199996, + 74.84104133400012 + ], + [ + -109.80924036599987, + 74.87406183799999 + ], + [ + -109.50535685099987, + 74.86213935100005 + ], + [ + -109.33524804399997, + 74.94617887900012 + ], + [ + -108.92721230499995, + 75.012233445 + ], + [ + -108.79428224499992, + 75.06986097700002 + ], + [ + -108.50755823999998, + 75.01433395800018 + ], + [ + -108.3397104419999, + 74.9142787310002 + ], + [ + -107.91450340299991, + 74.93328599900008 + ], + [ + -107.88890281699986, + 75.00000872900017 + ], + [ + -107.20118948199996, + 74.90949417100006 + ], + [ + -106.924239818, + 74.92618010100011 + ], + [ + -106.68070748699995, + 75.00278644500014 + ], + [ + -105.9918276649999, + 75.05114025600017 + ], + [ + -105.86793802899996, + 75.14041916500008 + ], + [ + -105.90112458699986, + 75.21799846800002 + ], + [ + -105.61640035, + 75.36165978700006 + ], + [ + -105.56893045899983, + 75.45915036900004 + ], + [ + -105.36853568699996, + 75.62873439600014 + ], + [ + -105.4176638379999, + 75.84699046200006 + ], + [ + -105.56643494599996, + 75.93462833600017 + ], + [ + -105.88419720599995, + 76.01009819200016 + ], + [ + -106.304787337, + 76.06015535800015 + ], + [ + -106.630539232, + 76.05556424600007 + ], + [ + -106.86850834599989, + 75.93635921300012 + ], + [ + -106.78060882099999, + 75.79245738000014 + ], + [ + -107.076435442, + 75.84197816800014 + ], + [ + -106.99963984399994, + 75.8947033020001 + ], + [ + -107.43687840199993, + 75.91070688400015 + ], + [ + -107.87592064499995, + 75.89188882100018 + ], + [ + -107.57813707099984, + 75.99471371100009 + ], + [ + -107.78368015199999, + 76.06074243000006 + ], + [ + -108.37656495099998, + 76.05158449200013 + ], + [ + -108.3294654369999, + 76.1760609120002 + ], + [ + -108.08396958099996, + 76.232334407 + ], + [ + -108.25603332199995, + 76.38588182000018 + ], + [ + -108.57248457599991, + 76.42349300000012 + ], + [ + -108.51790410299998, + 76.64772531200003 + ] + ] + ], + [ + [ + [ + -119.39284535599995, + 75.60102984400004 + ], + [ + -118.55569754199996, + 75.50022207500012 + ], + [ + -118.00860735399988, + 75.70010500900014 + ], + [ + -117.8194000229999, + 75.86196479700016 + ], + [ + -117.54586850799996, + 75.9821319560001 + ], + [ + -117.43800171299995, + 76.0952847330002 + ], + [ + -117.79859733399996, + 76.1098942800001 + ], + [ + -118.11511627699997, + 76.0004232120001 + ], + [ + -118.58308138799998, + 75.9246423370002 + ], + [ + -119.31448951099992, + 75.66217014500018 + ], + [ + -119.39284535599995, + 75.60102984400004 + ] + ] + ], + [ + [ + [ + -97.67109822999998, + 76.40768239000005 + ], + [ + -97.66142824099995, + 76.48523186800014 + ], + [ + -98.20361685899991, + 76.54501966500015 + ], + [ + -98.58275918099991, + 76.61205369500004 + ], + [ + -98.97171023499999, + 76.60886866900017 + ], + [ + -99.23154967399995, + 76.47669766000013 + ], + [ + -99.68081781199999, + 76.63055012500013 + ], + [ + -100.16087779599991, + 76.6393206460001 + ], + [ + -100.44197161299996, + 76.61377592100013 + ], + [ + -100.97750616499997, + 76.49831291900006 + ], + [ + -100.73302845699999, + 76.38192558500015 + ], + [ + -100.29760347699994, + 76.38036214900006 + ], + [ + -100.0008365, + 76.28463634400003 + ], + [ + -100.35105933099993, + 76.28365817200012 + ], + [ + -100.43417154899993, + 76.21350214200015 + ], + [ + -99.93193595999998, + 76.18999168900007 + ], + [ + -100.11481685399997, + 76.10553908700007 + ], + [ + -99.89109626799996, + 75.96973657799998 + ], + [ + -100.23098281499989, + 76.00419741000007 + ], + [ + -100.8570716399999, + 76.21736674400017 + ], + [ + -101.1062487559999, + 76.24519175900014 + ], + [ + -101.085822394, + 76.31203668400013 + ], + [ + -101.27885962299996, + 76.4126268340001 + ], + [ + -101.86814845899994, + 76.44638635800004 + ], + [ + -102.05984621099992, + 76.35299522600013 + ], + [ + -102.11308191699993, + 76.21613781200006 + ], + [ + -101.45591668799995, + 76.23322234600005 + ], + [ + -101.90537101199999, + 76.11038414100005 + ], + [ + -101.82315685999998, + 76.02150697600018 + ], + [ + -101.58624636199983, + 75.92344029600014 + ], + [ + -102.12916182499998, + 75.88096424300011 + ], + [ + -102.095327866, + 75.71745695200008 + ], + [ + -102.54489660399997, + 75.71424480800005 + ], + [ + -102.84644515899993, + 75.62090742599997 + ], + [ + -102.63315037499996, + 75.49686629200005 + ], + [ + -102.41349952899992, + 75.53676516600012 + ], + [ + -101.63268382599989, + 75.57794449200009 + ], + [ + -101.11914499399995, + 75.58919528600018 + ], + [ + -99.97158776799995, + 75.67458224200016 + ], + [ + -99.70019618299995, + 75.59448598200004 + ], + [ + -100.00626052399997, + 75.53040846400012 + ], + [ + -100.09028826399998, + 75.45128135100015 + ], + [ + -100.41710822499988, + 75.38505324800019 + ], + [ + -100.76926475099992, + 75.35184551800006 + ], + [ + -100.20514309799995, + 75.25258759300016 + ], + [ + -100.39637951199995, + 75.16519815800012 + ], + [ + -100.36522091799998, + 75.03000657700011 + ], + [ + -99.92876183999988, + 74.98015490900008 + ], + [ + -98.75120878199994, + 74.99535476200015 + ], + [ + -97.9336444509999, + 75.03286837700011 + ], + [ + -97.94488268399994, + 75.10453407199998 + ], + [ + -97.55328975199996, + 75.14273753600014 + ], + [ + -97.85045997499986, + 75.26588614300005 + ], + [ + -98.10150430999988, + 75.30933676600006 + ], + [ + -98.02453931199994, + 75.41498229800015 + ], + [ + -97.64784553499999, + 75.55274247100004 + ], + [ + -97.37113416499983, + 75.44539375000016 + ], + [ + -97.40499592299989, + 75.69658932300018 + ], + [ + -97.84295517099991, + 75.730944297 + ], + [ + -97.58232783699998, + 75.85670510400007 + ], + [ + -97.63146436099998, + 75.98445792000018 + ], + [ + -97.47840691099998, + 76.12625909600018 + ], + [ + -97.56398898499998, + 76.2307531890001 + ], + [ + -97.77616898399998, + 76.3134757150001 + ], + [ + -97.67109822999998, + 76.40768239000005 + ] + ] + ], + [ + [ + [ + -103.36954249699988, + 75.76896341900016 + ], + [ + -102.86619219099998, + 75.74714678400011 + ], + [ + -102.58045079099998, + 75.77106455900014 + ], + [ + -102.40021639499992, + 75.87557887200012 + ], + [ + -101.99185102799999, + 75.93335890200012 + ], + [ + -102.15478160999987, + 75.99673955600014 + ], + [ + -103.03648975399989, + 75.8991842170002 + ], + [ + -103.36954249699988, + 75.76896341900016 + ] + ] + ], + [ + [ + [ + -102.38253385299998, + 76.09443703900007 + ], + [ + -102.84487194199994, + 76.06973021900006 + ], + [ + -103.93219294399995, + 75.94290691100008 + ], + [ + -103.84708977199995, + 75.89809327000006 + ], + [ + -103.33840642199993, + 75.90541297700008 + ], + [ + -102.25113522099991, + 76.03154140300006 + ], + [ + -102.38253385299998, + 76.09443703900007 + ] + ] + ], + [ + [ + [ + -104.44233088199996, + 76.17013788200006 + ], + [ + -104.388853999, + 76.0876629440001 + ], + [ + -104.0728471679999, + 76.04153793900014 + ], + [ + -103.39316275699997, + 76.04817106300004 + ], + [ + -102.79604962499991, + 76.09166298400015 + ], + [ + -102.587510738, + 76.13892799700011 + ], + [ + -102.48997421099995, + 76.2223934210001 + ], + [ + -102.71459821899998, + 76.31655775400014 + ], + [ + -103.07990869099996, + 76.31354503100016 + ], + [ + -103.49465174999995, + 76.26908544600013 + ], + [ + -104.24646689899998, + 76.22062664700013 + ], + [ + -104.44233088199996, + 76.17013788200006 + ] + ] + ], + [ + [ + [ + -104.35617546499992, + 76.34104785700009 + ], + [ + -103.77318847499998, + 76.3076822930002 + ], + [ + -103.25767039299996, + 76.33829895800011 + ], + [ + -102.98043401299998, + 76.44476130300012 + ], + [ + -103.57117692499992, + 76.53048678800019 + ], + [ + -103.9151055609999, + 76.65335119000014 + ], + [ + -104.32470738099994, + 76.66717413800006 + ], + [ + -104.64527837799989, + 76.59686356800012 + ], + [ + -104.56434779799991, + 76.48204901000008 + ], + [ + -104.37563647399998, + 76.42942794300012 + ], + [ + -104.35617546499992, + 76.34104785700009 + ] + ] + ], + [ + [ + [ + -101.1730918849999, + 76.65638919000014 + ], + [ + -101.68864663799997, + 76.58882613000014 + ], + [ + -101.333922396, + 76.5540565180001 + ], + [ + -100.73534257499995, + 76.64021696900011 + ], + [ + -100.27694108199995, + 76.72778123300014 + ], + [ + -100.48695623899994, + 76.76136623400015 + ], + [ + -100.99186021399993, + 76.72352076600015 + ], + [ + -101.1730918849999, + 76.65638919000014 + ] + ] + ], + [ + [ + [ + -115.82746478999996, + 77.22676257800003 + ], + [ + -115.41974513799994, + 77.31798275400007 + ], + [ + -115.46177176799995, + 77.35954992200016 + ], + [ + -116.39879203099997, + 77.55548038500001 + ], + [ + -116.76136757899997, + 77.53319705800004 + ], + [ + -117.07134118199991, + 77.44419559500005 + ], + [ + -116.83330773899996, + 77.38601963000019 + ], + [ + -117.02332072099995, + 77.29873292700012 + ], + [ + -117.61240712799997, + 77.33224288899999 + ], + [ + -117.85863928199996, + 77.38608252000006 + ], + [ + -118.09874105199998, + 77.3600972100001 + ], + [ + -118.81208391599995, + 77.35840814900007 + ], + [ + -119.13413281299995, + 77.32503761400005 + ], + [ + -119.3759893969999, + 77.18726101100009 + ], + [ + -119.725774732, + 77.11755165200003 + ], + [ + -120.07193223699988, + 77.00234806800017 + ], + [ + -120.5811287969999, + 76.75074055700014 + ], + [ + -120.8705958889999, + 76.69873567100012 + ], + [ + -121.18451453299997, + 76.68839528900003 + ], + [ + -121.50470108399998, + 76.44017425900006 + ], + [ + -121.98932342499995, + 76.43853207300003 + ], + [ + -122.33689183899997, + 76.4056885670002 + ], + [ + -122.6203131829999, + 76.33709793400004 + ], + [ + -122.62215131099993, + 76.17842844200015 + ], + [ + -122.46310565699986, + 76.10747559700008 + ], + [ + -122.68213509799995, + 75.9039524420001 + ], + [ + -122.41752860799988, + 75.86908129900013 + ], + [ + -122.0971673659999, + 76.0243762980001 + ], + [ + -121.833175257, + 76.04276714300005 + ], + [ + -121.23063597999999, + 75.97386763300011 + ], + [ + -120.979015415, + 75.99559041100014 + ], + [ + -121.00961065299998, + 76.14458203200013 + ], + [ + -120.82829132599994, + 76.18215385200006 + ], + [ + -120.62099738199998, + 75.99244892600018 + ], + [ + -120.40290429899989, + 75.96666655100012 + ], + [ + -120.45628336699986, + 75.83034380200013 + ], + [ + -120.24345956599996, + 75.82226898500016 + ], + [ + -119.71738214799996, + 75.88491767500017 + ], + [ + -119.56899161499996, + 76.08309935000017 + ], + [ + -119.63373787599994, + 76.3090873910001 + ], + [ + -119.4663225949999, + 76.32623305200008 + ], + [ + -119.29014758599999, + 76.13902508300015 + ], + [ + -119.05561163499993, + 76.08996097600016 + ], + [ + -118.89721179299994, + 76.2641630940002 + ], + [ + -118.52518614899998, + 76.3356679630001 + ], + [ + -118.64958005099999, + 76.45135162999998 + ], + [ + -118.29879258099987, + 76.5541877980001 + ], + [ + -118.43494371599996, + 76.72480989600007 + ], + [ + -118.28792359199991, + 76.77828545100016 + ], + [ + -117.75509510099994, + 76.73837174800019 + ], + [ + -117.92140111999998, + 76.67810243800011 + ], + [ + -118.00296984, + 76.40510748600019 + ], + [ + -117.59238690599994, + 76.28516251600007 + ], + [ + -117.30855424499987, + 76.259198615 + ], + [ + -116.92535529799994, + 76.34597603900016 + ], + [ + -117.0289464299999, + 76.53186334000003 + ], + [ + -116.46020646599999, + 76.56940815100012 + ], + [ + -116.06798594799994, + 76.61641475700014 + ], + [ + -115.86798635899993, + 76.69618004500006 + ], + [ + -115.93512367799997, + 76.89910026500019 + ], + [ + -115.74097363999994, + 76.96413082100003 + ], + [ + -116.21461624399996, + 77.03935986800008 + ], + [ + -116.3348208249999, + 77.12110325000009 + ], + [ + -116.18029917099989, + 77.19657825000013 + ], + [ + -115.82746478999996, + 77.22676257800003 + ] + ] + ], + [ + [ + [ + -100.04141947599999, + 76.75237791900008 + ], + [ + -99.56858887299995, + 76.66766173300016 + ], + [ + -99.57478999499989, + 76.74887690000008 + ], + [ + -100.04141947599999, + 76.75237791900008 + ] + ] + ], + [ + [ + [ + -114.83488748199994, + 76.76364655700007 + ], + [ + -114.43960908599996, + 76.73353878500012 + ], + [ + -113.59732575399994, + 76.7099830630001 + ], + [ + -113.45307827899995, + 76.82594138800016 + ], + [ + -113.73346863499995, + 76.8887266480001 + ], + [ + -114.5803693929999, + 76.870920319 + ], + [ + -114.83488748199994, + 76.76364655700007 + ] + ] + ], + [ + [ + [ + -104.86910470999999, + 77.13251725300006 + ], + [ + -104.38242576199997, + 77.16204154200017 + ], + [ + -104.38491231199998, + 77.27721864199998 + ], + [ + -104.71321763099996, + 77.38699662800019 + ], + [ + -105.01122877199998, + 77.4160374010001 + ], + [ + -104.97480515999996, + 77.5236309350002 + ], + [ + -105.37721910599998, + 77.68705353500002 + ], + [ + -105.9176671749999, + 77.76283760600018 + ], + [ + -106.06983104999989, + 77.70982331700003 + ], + [ + -105.81757227099985, + 77.6154688970002 + ], + [ + -105.78793998099997, + 77.5318446280001 + ], + [ + -105.48408357799997, + 77.29552825300016 + ], + [ + -105.22464007199994, + 77.16362762800014 + ], + [ + -104.86910470999999, + 77.13251725300006 + ] + ] + ], + [ + [ + [ + -110.69884038099997, + 77.77677376700012 + ], + [ + -110.8573898699999, + 77.86473747600007 + ], + [ + -110.16992890999995, + 77.89443757400011 + ], + [ + -109.66094057399994, + 77.95977744700008 + ], + [ + -109.54576592199999, + 78.07101178100015 + ], + [ + -110.08465597199995, + 78.11616232799997 + ], + [ + -111.21680821099989, + 78.09169378400014 + ], + [ + -111.7501767469999, + 78.03762150800014 + ], + [ + -112.39860893399992, + 78.00667242300011 + ], + [ + -112.792391609, + 77.93665338599999 + ], + [ + -113.19988520999993, + 77.91279499100011 + ], + [ + -113.2923306319999, + 77.77975920900008 + ], + [ + -113.12339064199989, + 77.634969373 + ], + [ + -113.17700772299992, + 77.52226004599999 + ], + [ + -112.90576815899993, + 77.46420331900009 + ], + [ + -112.55782697899997, + 77.45032372500009 + ], + [ + -112.44588208199997, + 77.36962627400004 + ], + [ + -111.99409793599995, + 77.3278913800001 + ], + [ + -111.31424280999994, + 77.41006319200005 + ], + [ + -110.91975410899988, + 77.40333832200014 + ], + [ + -110.42782225499991, + 77.45794426800012 + ], + [ + -110.05550795799991, + 77.55613146100006 + ], + [ + -110.02860644299994, + 77.76188102200007 + ], + [ + -110.69884038099997, + 77.77677376700012 + ] + ] + ], + [ + [ + [ + -101.267450194, + 77.7254861200002 + ], + [ + -100.91072323599997, + 77.72722228500004 + ], + [ + -101.25263939199994, + 77.84967974400013 + ], + [ + -102.07089097699992, + 77.90048180600013 + ], + [ + -102.42875435299993, + 77.88011894700008 + ], + [ + -102.51251769399994, + 77.78450771600012 + ], + [ + -102.06824454999997, + 77.68041572900006 + ], + [ + -101.74874883599989, + 77.68007864400016 + ], + [ + -101.267450194, + 77.7254861200002 + ] + ] + ], + [ + [ + [ + -114.51178345799991, + 77.75561923500004 + ], + [ + -114.27758693399988, + 77.70487159100009 + ], + [ + -113.88399187099992, + 77.72235264400013 + ], + [ + -113.54154226299983, + 77.81590259400014 + ], + [ + -114.29812317299991, + 78.038504864 + ], + [ + -114.4974419749999, + 78.04080839200003 + ], + [ + -114.92477673999997, + 77.96252168500013 + ], + [ + -115.00063378299996, + 77.91304201600019 + ], + [ + -114.51178345799991, + 77.75561923500004 + ] + ] + ], + [ + [ + [ + -102.80120590799993, + 78.25746147400002 + ], + [ + -103.0339577879999, + 78.26538807900016 + ], + [ + -103.26102715399998, + 78.18430845800009 + ], + [ + -103.03539138299993, + 78.13170528000012 + ], + [ + -102.80120590799993, + 78.25746147400002 + ] + ] + ], + [ + [ + [ + -109.86331089399994, + 78.3069436460001 + ], + [ + -109.42602311499996, + 78.31412186600016 + ], + [ + -109.22715598199989, + 78.47769639500007 + ], + [ + -109.44425100099988, + 78.58065877100012 + ], + [ + -110.40843338499991, + 78.75890432800014 + ], + [ + -111.15721067799996, + 78.69250803200003 + ], + [ + -111.40215094799993, + 78.59633131000004 + ], + [ + -111.68794404299996, + 78.5540840910001 + ], + [ + -112.28867665899992, + 78.54285095800014 + ], + [ + -113.05730580499983, + 78.43182948800012 + ], + [ + -113.31087603699996, + 78.33596571600009 + ], + [ + -113.04717402599994, + 78.2734995690002 + ], + [ + -112.65148782499995, + 78.33942869800006 + ], + [ + -112.1560791419999, + 78.37315026300018 + ], + [ + -111.740294485, + 78.27345631000009 + ], + [ + -111.40331466599991, + 78.27592187100004 + ], + [ + -111.25774937699987, + 78.37564851600001 + ], + [ + -110.9329018379999, + 78.36886080200009 + ], + [ + -110.67567636599995, + 78.29736480200012 + ], + [ + -110.36666252899994, + 78.27665769600009 + ], + [ + -109.86331089399994, + 78.3069436460001 + ] + ] + ], + [ + [ + [ + -102.72307626899999, + 78.96582680500018 + ], + [ + -102.61628643599994, + 79.1007630630001 + ], + [ + -103.0776003169999, + 79.28740279800007 + ], + [ + -103.36355267499982, + 79.29786761300005 + ], + [ + -103.96304532699997, + 79.37478237300019 + ], + [ + -105.116197748, + 79.30150133700016 + ], + [ + -105.45640692199999, + 79.2998495010001 + ], + [ + -105.61226928299993, + 79.1748862820001 + ], + [ + -105.59917600299991, + 79.04100563900005 + ], + [ + -105.38268142099992, + 79.00754677200018 + ], + [ + -104.92566249899994, + 79.05057409800014 + ], + [ + -104.68191091799997, + 78.98981347600005 + ], + [ + -104.85438639499995, + 78.8752456150001 + ], + [ + -104.58006789999996, + 78.85062849000013 + ], + [ + -104.4494429479999, + 78.94239523000005 + ], + [ + -104.10116847499995, + 78.98000511800012 + ], + [ + -103.90205719499988, + 78.87227911800005 + ], + [ + -104.19891438199983, + 78.771010333 + ], + [ + -103.58481024599996, + 78.76627837299998 + ], + [ + -103.32733730999996, + 78.72556781500009 + ], + [ + -103.49991083099997, + 78.66453185800003 + ], + [ + -103.54335341099994, + 78.50488039100003 + ], + [ + -104.13420986999989, + 78.52648633100017 + ], + [ + -104.73578541799998, + 78.58162647500012 + ], + [ + -105.01440506599988, + 78.49479560800006 + ], + [ + -104.73759570999994, + 78.35923584900019 + ], + [ + -104.43149549499987, + 78.26576186200009 + ], + [ + -103.91470999799998, + 78.2442616350001 + ], + [ + -103.65972945099998, + 78.31717708999997 + ], + [ + -103.05761587699993, + 78.3674783080001 + ], + [ + -102.56121232399988, + 78.23513679300004 + ], + [ + -102.16259772199999, + 78.29266152600019 + ], + [ + -101.70743977199999, + 78.26100424400005 + ], + [ + -101.28458083099991, + 78.17582586300017 + ], + [ + -101.00944738399994, + 78.17105255500013 + ], + [ + -100.74280677099989, + 78.08551306200019 + ], + [ + -100.76508557399984, + 77.96809657000017 + ], + [ + -100.4580770849999, + 77.85592485500007 + ], + [ + -99.90311013399997, + 77.77928939400016 + ], + [ + -99.77152352499996, + 77.81785968100019 + ], + [ + -99.33165427599994, + 77.82837864200019 + ], + [ + -99.05035196599994, + 77.88746112600018 + ], + [ + -98.95076997999996, + 78.04179690100017 + ], + [ + -99.48771103399997, + 78.2715376070002 + ], + [ + -99.70629277399996, + 78.30263977400011 + ], + [ + -99.85171197899996, + 78.42875185700012 + ], + [ + -99.65096446799993, + 78.47671468300018 + ], + [ + -99.4895233929999, + 78.585063918 + ], + [ + -99.79215927299998, + 78.64015334600003 + ], + [ + -99.97425065899984, + 78.73417451100005 + ], + [ + -100.38255987999992, + 78.83060455100002 + ], + [ + -100.96632513999998, + 78.77057679000012 + ], + [ + -101.19424924499998, + 78.82147027800005 + ], + [ + -100.96802343099989, + 78.92295649500011 + ], + [ + -101.62645624999993, + 79.07789026600005 + ], + [ + -101.98907378599995, + 79.08480419000011 + ], + [ + -102.72307626899999, + 78.96582680500018 + ] + ] + ], + [ + [ + [ + -98.68813967299997, + 79.86919527200013 + ], + [ + -98.85963635699989, + 80.06912486500016 + ], + [ + -99.15314357599993, + 80.13081792700012 + ], + [ + -99.71018553999988, + 80.15008061600008 + ], + [ + -100.19637597599996, + 80.03720615400016 + ], + [ + -100.1387547899999, + 79.88863577400014 + ], + [ + -99.51388405499995, + 79.88653867800019 + ], + [ + -99.29599516699994, + 79.83847773400015 + ], + [ + -99.33810782599994, + 79.76100612200008 + ], + [ + -98.9922800189999, + 79.72347341600005 + ], + [ + -98.61747354399995, + 79.78412349500013 + ], + [ + -98.68813967299997, + 79.86919527200013 + ] + ] + ], + [ + [ + [ + -85.9845090629999, + -78.25179615799993 + ], + [ + -86.30256402699996, + -78.27996489599997 + ], + [ + -86.01899423899994, + -78.45478330299989 + ], + [ + -85.78554405899996, + -78.41031091799988 + ], + [ + -85.97538351499998, + -78.34924470599998 + ], + [ + -85.9845090629999, + -78.25179615799993 + ] + ] + ], + [ + [ + [ + -86.14913942799996, + -77.82112592399994 + ], + [ + -86.28014862899983, + -77.8558003629999 + ], + [ + -86.08736913699988, + -78.0299753729999 + ], + [ + -85.89652351899997, + -77.97100061499998 + ], + [ + -86.13097617299997, + -77.8893088779999 + ], + [ + -86.14913942799996, + -77.82112592399994 + ] + ] + ], + [ + [ + [ + -85.0189013079999, + 65.62409711300006 + ], + [ + -85.18834860999988, + 65.81615512700006 + ], + [ + -85.34628181499994, + 65.83757552100013 + ], + [ + -85.48981694599996, + 65.92605946100008 + ], + [ + -85.73986036799988, + 65.85893878600018 + ], + [ + -85.9897184059999, + 65.72049681100003 + ], + [ + -86.13543325299997, + 65.37817676600008 + ], + [ + -86.1098173929999, + 65.16260422500017 + ], + [ + -86.20311217699998, + 64.97096242100014 + ], + [ + -86.1238335249999, + 64.92276700300016 + ], + [ + -86.30200093299999, + 64.66743876700008 + ], + [ + -86.39310989499995, + 64.59123273 + ], + [ + -86.30226100499993, + 64.22852003500014 + ], + [ + -86.1946277699999, + 64.17409799800004 + ], + [ + -86.1780696699999, + 64.08636082099997 + ], + [ + -86.82760932699989, + 63.93970276900012 + ], + [ + -87.02547466299984, + 63.84218461200004 + ], + [ + -87.20542988499989, + 63.71468865200006 + ], + [ + -87.21082496699995, + 63.62013014200005 + ], + [ + -87.07620400599995, + 63.5522521260001 + ], + [ + -86.87074646599996, + 63.556566590000045 + ], + [ + -86.55082219099995, + 63.66247481000016 + ], + [ + -86.27898227799994, + 63.63620069800015 + ], + [ + -85.80906031099994, + 63.699122988 + ], + [ + -85.60515696999994, + 63.671417625000174 + ], + [ + -85.60029919099992, + 63.505663638000044 + ], + [ + -85.65956623799997, + 63.42001084200007 + ], + [ + -85.621616626, + 63.18608731600017 + ], + [ + -85.45701061699992, + 63.098816009000075 + ], + [ + -85.22043922699987, + 63.10892715700004 + ], + [ + -84.95239170799994, + 63.171716384000035 + ], + [ + -84.4672671209999, + 63.37240860500009 + ], + [ + -84.44391812399988, + 63.47812182700005 + ], + [ + -84.28390862599991, + 63.60938217400019 + ], + [ + -84.07366268199996, + 63.5926709310001 + ], + [ + -83.99165551999988, + 63.65771157200004 + ], + [ + -83.58156648799996, + 63.81533437800016 + ], + [ + -83.66111652199993, + 64.01124220400004 + ], + [ + -83.52723460999994, + 64.09919349500007 + ], + [ + -83.07403522699997, + 64.17763136600018 + ], + [ + -82.93636582399995, + 64.13016262300005 + ], + [ + -83.15407628999998, + 63.9838056160001 + ], + [ + -83.06923286099999, + 63.936170269 + ], + [ + -82.89148588799998, + 63.97366064000005 + ], + [ + -82.54916380699996, + 63.95514831400004 + ], + [ + -82.34376218599988, + 63.851359000000116 + ], + [ + -82.48671359499997, + 63.79236437000014 + ], + [ + -82.53941829199988, + 63.72168166400013 + ], + [ + -82.47653301199995, + 63.664006463000135 + ], + [ + -82.30196699099986, + 63.64649275200014 + ], + [ + -82.07530567199996, + 63.68011120900002 + ], + [ + -81.6832392959999, + 63.561558482000066 + ], + [ + -81.52036146099994, + 63.55839646300018 + ], + [ + -81.06841916999997, + 63.43690588600015 + ], + [ + -80.93219411799998, + 63.51254155100008 + ], + [ + -80.58490626099996, + 63.6235484820001 + ], + [ + -80.47059342699998, + 63.71283204500003 + ], + [ + -80.18795326099996, + 63.71893430500006 + ], + [ + -80.15220991199999, + 63.77654833000014 + ], + [ + -80.60715044299997, + 63.85396011400002 + ], + [ + -80.55080215299984, + 63.98191123300012 + ], + [ + -80.86290594299999, + 64.10901106100005 + ], + [ + -81.04840426999993, + 64.000714609 + ], + [ + -81.29933519899998, + 64.07570523700014 + ], + [ + -81.46681228999984, + 64.02717710300016 + ], + [ + -81.7077978499999, + 64.00029717100011 + ], + [ + -81.97573497699995, + 64.00022212900012 + ], + [ + -81.89348058999991, + 64.06808285400012 + ], + [ + -81.71943921499997, + 64.08371452500006 + ], + [ + -81.57735889599996, + 64.18091190100012 + ], + [ + -81.72654088599995, + 64.27143668500014 + ], + [ + -81.73098107599998, + 64.46645259500013 + ], + [ + -81.8158300799999, + 64.54567858200011 + ], + [ + -82.35294337999994, + 64.76607060900017 + ], + [ + -82.52555652499996, + 64.74587420300008 + ], + [ + -82.76114137399992, + 64.80193375100009 + ], + [ + -82.83131575699997, + 64.85642150900003 + ], + [ + -83.15289997599984, + 64.93755853600004 + ], + [ + -83.29232966199993, + 65.00561142900017 + ], + [ + -83.37900178899997, + 65.13398013800014 + ], + [ + -83.48374072899998, + 65.15805518300004 + ], + [ + -83.85515488899995, + 65.16572120900014 + ], + [ + -84.20776781599994, + 65.26091391200015 + ], + [ + -84.1477647769999, + 65.3292535380001 + ], + [ + -84.41075455899994, + 65.40883126000017 + ], + [ + -84.53507738599995, + 65.48107441600013 + ], + [ + -84.7046965049999, + 65.35880234900009 + ], + [ + -84.76984050099998, + 65.21782337200017 + ], + [ + -84.90452172499994, + 65.21910793600006 + ], + [ + -84.97922277599997, + 65.4007141800002 + ], + [ + -85.24706808499991, + 65.51938864700008 + ], + [ + -85.0189013079999, + 65.62409711300006 + ] + ] + ], + [ + [ + [ + -84.63990790999998, + 65.74912945900013 + ], + [ + -84.72293768899993, + 65.87741814100019 + ], + [ + -84.8584213819999, + 65.940328168 + ], + [ + -84.9316016539999, + 66.025774846 + ], + [ + -85.15242529799997, + 65.99585077000017 + ], + [ + -85.10408128999995, + 65.90583445700014 + ], + [ + -85.10803997799985, + 65.76229868100017 + ], + [ + -84.89146894899994, + 65.68110509000007 + ], + [ + -84.71239533799991, + 65.54453143400002 + ], + [ + -84.55313078899997, + 65.62382874200017 + ], + [ + -84.63990790999998, + 65.74912945900013 + ] + ] + ], + [ + [ + [ + -86.65836991999998, + 67.73602583500019 + ], + [ + -86.42114932499987, + 67.79582974699997 + ], + [ + -86.33822793699994, + 67.95250256600008 + ], + [ + -86.39681967999996, + 68.09359441400005 + ], + [ + -86.38869438199993, + 68.20490927400004 + ], + [ + -86.62689517299998, + 68.3042858020001 + ], + [ + -86.85012566099988, + 68.18411876000005 + ], + [ + -86.95136173599997, + 68.07895740300017 + ], + [ + -86.8139237499999, + 67.97143662500008 + ], + [ + -86.9210974319999, + 67.93073212900015 + ], + [ + -86.87763351099994, + 67.83875304600008 + ], + [ + -86.65836991999998, + 67.73602583500019 + ] + ] + ], + [ + [ + [ + -89.94985597399983, + 68.67385649700003 + ], + [ + -89.77550413499995, + 68.76436154900006 + ], + [ + -90.02313097099994, + 68.77056379800013 + ], + [ + -89.94985597399983, + 68.67385649700003 + ] + ] + ], + [ + [ + [ + -90.69774230599995, + 69.37760020200005 + ], + [ + -90.78035216699993, + 69.28857540500007 + ], + [ + -90.54862423899988, + 69.20896719500013 + ], + [ + -90.42837772299993, + 69.27506923600015 + ], + [ + -90.58127866199999, + 69.37492901800005 + ], + [ + -90.69774230599995, + 69.37760020200005 + ] + ] + ], + [ + [ + [ + -90.13002913999998, + 69.38609195600014 + ], + [ + -90.35249891999996, + 69.43292258300005 + ], + [ + -90.49375962799996, + 69.34691365100008 + ], + [ + -90.39201101999998, + 69.28167308500002 + ], + [ + -90.23671845199988, + 69.27567536000004 + ], + [ + -90.13002913999998, + 69.38609195600014 + ] + ] + ], + [ + [ + [ + -96.30056121999996, + 69.53562941000007 + ], + [ + -96.38142413599991, + 69.58324681400018 + ], + [ + -96.63085132099991, + 69.55848754900012 + ], + [ + -96.55095475199994, + 69.49365426600014 + ], + [ + -96.13327543699995, + 69.35932156600006 + ], + [ + -96.06163890299996, + 69.46435642200004 + ], + [ + -96.15350677799995, + 69.59128728500008 + ], + [ + -96.30056121999996, + 69.53562941000007 + ] + ] + ], + [ + [ + [ + -95.40845054599987, + 69.5555384760001 + ], + [ + -95.64727489599983, + 69.62967930899998 + ], + [ + -95.8840557339999, + 69.61408606400005 + ], + [ + -95.95144319699995, + 69.51473137400006 + ], + [ + -95.86420277199994, + 69.36521523400012 + ], + [ + -95.5486588149999, + 69.33179069700009 + ], + [ + -95.37593100599992, + 69.42249949900008 + ], + [ + -95.40845054599987, + 69.5555384760001 + ] + ] + ], + [ + [ + [ + -91.415762353, + 69.85811003200007 + ], + [ + -91.73713408299994, + 69.79972744800011 + ], + [ + -91.52021798699991, + 69.73161026600013 + ], + [ + -91.415762353, + 69.85811003200007 + ] + ] + ], + [ + [ + [ + -86.75605835499982, + 69.9820005090001 + ], + [ + -86.44057067299991, + 70.0203581780001 + ], + [ + -86.55662008999997, + 70.1119054580002 + ], + [ + -86.80423593199998, + 70.10549078000003 + ], + [ + -87.0874641129999, + 70.13469413300004 + ], + [ + -87.35823799799988, + 70.10705053400011 + ], + [ + -87.22684511999995, + 70.03041187300016 + ], + [ + -86.75605835499982, + 69.9820005090001 + ] + ] + ], + [ + [ + [ + -85.06225411199995, + 71.45009658400016 + ], + [ + -85.43873478699999, + 71.52092204700017 + ], + [ + -85.91113977499998, + 71.73464402400009 + ], + [ + -86.09104834999994, + 71.79462734700007 + ], + [ + -86.38773247499995, + 72.01555368500016 + ], + [ + -86.4396048449999, + 72.2209643010001 + ], + [ + -86.3992223379999, + 72.30424791400009 + ], + [ + -86.23005027599999, + 72.4142789060001 + ], + [ + -86.33425634499991, + 72.50168026500006 + ], + [ + -86.60768714599993, + 72.61124129800015 + ], + [ + -86.73302990599996, + 72.7267139290002 + ], + [ + -86.64435170299998, + 72.87508046100004 + ], + [ + -86.34524354299998, + 73.03898180700008 + ], + [ + -86.11680356799991, + 73.25986928500015 + ], + [ + -85.91579471999995, + 73.36731897200019 + ], + [ + -85.48294030799997, + 73.52495063900005 + ], + [ + -84.93207792099997, + 73.66883001500008 + ], + [ + -84.83820861499987, + 73.74001809300017 + ], + [ + -85.20220962599996, + 73.82016249700018 + ], + [ + -86.12223233699996, + 73.85612380000015 + ], + [ + -86.68517065999998, + 73.84593485000016 + ], + [ + -87.22641477999997, + 73.79185678100009 + ], + [ + -87.99870619799992, + 73.64986937400005 + ], + [ + -88.67034955999986, + 73.42204470500019 + ], + [ + -88.99038491199991, + 73.28560801700013 + ], + [ + -89.29718268899995, + 73.043425447 + ], + [ + -89.31971454399996, + 72.87539106100019 + ], + [ + -89.53229443999999, + 72.78618007300014 + ], + [ + -89.52460552999997, + 72.63105264000012 + ], + [ + -89.73085395799995, + 72.61534795600016 + ], + [ + -89.79331086999997, + 72.46035772900018 + ], + [ + -89.95642494599997, + 72.32281566500012 + ], + [ + -89.87692534999996, + 72.20361119600005 + ], + [ + -89.56930256099997, + 72.16033553000017 + ], + [ + -90.0172480579999, + 72.06604847200003 + ], + [ + -89.95804245999994, + 72.03041953900004 + ], + [ + -90.0888453629999, + 71.92069132700004 + ], + [ + -89.80206828899998, + 71.7710781290001 + ], + [ + -90.02036187399995, + 71.60353729000013 + ], + [ + -89.88520274699988, + 71.36642590400004 + ], + [ + -89.64541893999996, + 71.31769463700005 + ], + [ + -89.12677202699996, + 71.29911007200008 + ], + [ + -88.67173575599998, + 71.25474143100013 + ], + [ + -88.07003302499993, + 71.22672415500011 + ], + [ + -87.39135524999989, + 71.07761040800017 + ], + [ + -87.2714527149999, + 71.01423260400003 + ], + [ + -87.35529622399991, + 70.95712527800009 + ], + [ + -87.97580225399986, + 70.94084070900016 + ], + [ + -88.30904299599996, + 70.96231876100018 + ], + [ + -88.35003231499985, + 71.01353254800006 + ], + [ + -88.65130894099997, + 71.05425716400003 + ], + [ + -89.34222950499992, + 71.01913433300018 + ], + [ + -89.19432296799994, + 70.94853075700013 + ], + [ + -89.41722626299992, + 70.91175315200013 + ], + [ + -89.31956976599997, + 70.80597526100001 + ], + [ + -89.06742320899997, + 70.71388518600008 + ], + [ + -88.87110853599995, + 70.54645949400015 + ], + [ + -88.66431936399988, + 70.46880275300015 + ], + [ + -88.23203897199988, + 70.42002418200013 + ], + [ + -87.86848137399994, + 70.33212602400016 + ], + [ + -87.49596617199995, + 70.33813458900005 + ], + [ + -86.99172484699989, + 70.29223713600004 + ], + [ + -86.69393411599998, + 70.33554881600003 + ], + [ + -86.26519867699989, + 70.12706427800015 + ], + [ + -85.83371334999998, + 70.0177570510001 + ], + [ + -85.34091698499986, + 70.0433848580002 + ], + [ + -85.30030715499993, + 70.11480411600007 + ], + [ + -84.93340333499992, + 70.07545941900008 + ], + [ + -84.64182684799994, + 70.01151229300012 + ], + [ + -83.56631370299988, + 69.96684813600007 + ], + [ + -83.08280700099994, + 70.0186104120001 + ], + [ + -82.62884284999996, + 69.89030347300007 + ], + [ + -82.19099504699989, + 69.8010946350002 + ], + [ + -82.03662944299998, + 69.88101433000003 + ], + [ + -81.84228130099984, + 69.88421384100013 + ], + [ + -81.58791919799984, + 69.9725604510001 + ], + [ + -81.14592372899989, + 69.83466883500006 + ], + [ + -80.87947924399992, + 69.7301780520001 + ], + [ + -80.73753462699995, + 69.77573688200005 + ], + [ + -81.11628780999996, + 69.94550703000016 + ], + [ + -81.36946728399994, + 70.09967539600007 + ], + [ + -80.54309617699994, + 70.0581984210001 + ], + [ + -80.30458562199993, + 69.99200319700014 + ], + [ + -80.1931736389999, + 70.02589746300004 + ], + [ + -79.89491942299998, + 69.98907051800006 + ], + [ + -79.69806378499993, + 69.86508765400009 + ], + [ + -79.39396867599993, + 69.90117630100013 + ], + [ + -78.80798749699989, + 69.90001533300017 + ], + [ + -78.65901106399991, + 69.97462973100005 + ], + [ + -78.74477093299998, + 70.17229633300013 + ], + [ + -78.93582510099998, + 70.32267719300006 + ], + [ + -79.22107668999996, + 70.31915168300003 + ], + [ + -79.34686667799997, + 70.376686425 + ], + [ + -79.56627389599993, + 70.39552416800018 + ], + [ + -79.4025452919999, + 70.49591875800007 + ], + [ + -79.15538326199993, + 70.42333839900016 + ], + [ + -79.05767047699999, + 70.47509330900016 + ], + [ + -78.78112751499998, + 70.44757279600009 + ], + [ + -78.40311108699996, + 70.2340169220002 + ], + [ + -77.86836554099995, + 70.266107821 + ], + [ + -77.64384866799998, + 70.17395332100011 + ], + [ + -77.68969270899998, + 70.00989580100014 + ], + [ + -77.68140603899991, + 69.82863342700006 + ], + [ + -77.49083793899996, + 69.78617537200006 + ], + [ + -77.30816934199993, + 69.83691214400017 + ], + [ + -76.89658427799998, + 69.81622762400002 + ], + [ + -76.94927404499998, + 69.71624423300017 + ], + [ + -77.1829955369999, + 69.64049992500003 + ], + [ + -76.72235522999995, + 69.56320137200015 + ], + [ + -76.32363230399994, + 69.40979663799999 + ], + [ + -76.18097329999995, + 69.42375236900017 + ], + [ + -75.73009078299998, + 69.30105308800012 + ], + [ + -75.59895226299989, + 69.24134163400015 + ], + [ + -75.59232726499994, + 69.08717538500014 + ], + [ + -75.75539260299996, + 69.08870831400003 + ], + [ + -75.95054045799998, + 69.01983430600012 + ], + [ + -76.35896876599992, + 69.05942422300012 + ], + [ + -76.59177763899999, + 69.03418067100012 + ], + [ + -76.63957722399988, + 68.93964548200012 + ], + [ + -76.50202055899996, + 68.86432160900006 + ], + [ + -76.65043531799995, + 68.75945020200004 + ], + [ + -76.56721576699994, + 68.67532860800009 + ], + [ + -76.40256927399992, + 68.68082574900006 + ], + [ + -76.05652074899996, + 68.76059329700018 + ], + [ + -75.94729582099995, + 68.8223798250001 + ], + [ + -75.31441409899986, + 68.93737187900007 + ], + [ + -75.13860970399998, + 68.88739288300013 + ], + [ + -74.71535683599996, + 68.938724111 + ], + [ + -74.69591989799994, + 68.85984859700017 + ], + [ + -74.89658569899996, + 68.80678248700008 + ], + [ + -74.52089041899995, + 68.66854688300003 + ], + [ + -74.37425461599997, + 68.54815466700018 + ], + [ + -73.98802131699995, + 68.49817544800015 + ], + [ + -73.88408884299997, + 68.5587994920001 + ], + [ + -74.15747114799996, + 68.73343742600014 + ], + [ + -73.90266752299993, + 68.71183899300019 + ], + [ + -73.7171863179999, + 68.65545086600014 + ], + [ + -73.72123932699998, + 68.53534794000007 + ], + [ + -73.90435239399989, + 68.4370791130001 + ], + [ + -73.85791677199995, + 68.34135200100019 + ], + [ + -73.65360579599991, + 68.2700394150001 + ], + [ + -73.27949320199997, + 68.28188346400015 + ], + [ + -73.10751249799989, + 68.22176153800018 + ], + [ + -72.90133386399992, + 68.05540966100017 + ], + [ + -72.92120403399997, + 67.95480680000014 + ], + [ + -72.83604547999994, + 67.85129571100003 + ], + [ + -72.72388491999993, + 67.85454763000007 + ], + [ + -72.57288376599996, + 67.76270866300013 + ], + [ + -72.64671698299998, + 67.67068374100012 + ], + [ + -72.48053018899998, + 67.5946608070002 + ], + [ + -72.36222800799993, + 67.3148720710002 + ], + [ + -72.1782681759999, + 67.27206157100011 + ], + [ + -72.33089668399998, + 67.1090480960001 + ], + [ + -72.63300716099991, + 67.07993881500005 + ], + [ + -72.81888355099994, + 67.00951799200016 + ], + [ + -72.85643093599998, + 66.92925727100015 + ], + [ + -73.06912556199995, + 66.72283826000017 + ], + [ + -73.28191394799995, + 66.66881298900006 + ], + [ + -73.53230914399984, + 66.50349154400004 + ], + [ + -73.70940975799994, + 66.45432274000018 + ], + [ + -73.98157309599998, + 66.32690128500008 + ], + [ + -74.35929603899996, + 66.21660309400005 + ], + [ + -74.45713395699988, + 66.1561646990001 + ], + [ + -74.41667085999995, + 66.07849765600014 + ], + [ + -73.99501686199994, + 65.83190340100015 + ], + [ + -73.72606104999994, + 65.76947342700015 + ], + [ + -73.51243527699995, + 65.49649234700013 + ], + [ + -73.68074606599993, + 65.44935579900005 + ], + [ + -73.74915639899996, + 65.50684166100007 + ], + [ + -74.13358399899994, + 65.53320271300015 + ], + [ + -74.30570149699992, + 65.46972085400006 + ], + [ + -74.34690562799989, + 65.40826320800005 + ], + [ + -74.52798433499999, + 65.32704721700009 + ], + [ + -74.75909106099994, + 65.38541299300005 + ], + [ + -75.05746693099991, + 65.37921231700005 + ], + [ + -75.15147321899991, + 65.25590625900014 + ], + [ + -75.27245163699996, + 65.25013571400007 + ], + [ + -75.90548695099994, + 65.32497954800016 + ], + [ + -76.00735879299998, + 65.25261048300013 + ], + [ + -76.65071494999995, + 65.39569761600006 + ], + [ + -77.10939089999988, + 65.41076680400005 + ], + [ + -77.26821800699997, + 65.47072745900016 + ], + [ + -77.43242945299988, + 65.45865396900018 + ], + [ + -77.51060337799998, + 65.30845142100014 + ], + [ + -77.32577638999999, + 65.17411061100012 + ], + [ + -77.64102051999998, + 65.13206967000013 + ], + [ + -77.93765655999994, + 65.04581340200014 + ], + [ + -78.14293663199999, + 64.94879529600018 + ], + [ + -78.06777374799998, + 64.85420234600019 + ], + [ + -78.17737913099995, + 64.75755613300015 + ], + [ + -78.19018197599996, + 64.56751190400007 + ], + [ + -77.97627226299994, + 64.47588308300004 + ], + [ + -78.02122696999993, + 64.42348595900006 + ], + [ + -77.6796325769999, + 64.31891216400015 + ], + [ + -77.14775833699997, + 64.28886912800004 + ], + [ + -76.8017429119999, + 64.20429696000008 + ], + [ + -76.69062757899997, + 64.30248092600004 + ], + [ + -76.30117560099995, + 64.27050727800008 + ], + [ + -76.32479229099994, + 64.35414067400012 + ], + [ + -76.13133934499996, + 64.36200289400017 + ], + [ + -75.79141660699997, + 64.40989091699998 + ], + [ + -75.79651052899999, + 64.6060313050001 + ], + [ + -75.30029396199996, + 64.48841010300004 + ], + [ + -75.19860670399993, + 64.42414049900003 + ], + [ + -75.08251539399998, + 64.45495440899998 + ], + [ + -74.72463158399995, + 64.37438709100013 + ], + [ + -74.61812855499994, + 64.4978594530001 + ], + [ + -74.47826577499995, + 64.5688444810001 + ], + [ + -74.66182914799992, + 64.66678335700004 + ], + [ + -74.81503262199988, + 64.70097061000013 + ], + [ + -74.8761930359999, + 64.76249948200018 + ], + [ + -74.68162754799994, + 64.80306953600018 + ], + [ + -74.68627699099994, + 64.71780416400009 + ], + [ + -74.52096040499998, + 64.61985364500015 + ], + [ + -74.15319664699996, + 64.57706436900003 + ], + [ + -74.02598170099998, + 64.43268622800002 + ], + [ + -73.93968177699998, + 64.48396915800004 + ], + [ + -73.46052537199995, + 64.61619642700009 + ], + [ + -73.38519258199995, + 64.56505602500016 + ], + [ + -73.68672383199998, + 64.55119246599997 + ], + [ + -73.61308448599993, + 64.49398904600008 + ], + [ + -73.64287858699998, + 64.31738093900003 + ], + [ + -73.37419338399997, + 64.36037658900017 + ], + [ + -73.37994178299988, + 64.27266970500006 + ], + [ + -73.2117512289999, + 64.28833545600008 + ], + [ + -72.88335216299998, + 64.12621624600013 + ], + [ + -72.95132736499988, + 64.05673808800009 + ], + [ + -72.72990423799996, + 63.99797962500003 + ], + [ + -72.60607591699994, + 63.87161086300006 + ], + [ + -72.37082594299989, + 63.81973596500012 + ], + [ + -72.17235688199992, + 63.86977089700002 + ], + [ + -72.26732837999992, + 63.73524607300004 + ], + [ + -72.14452328399994, + 63.74287879200017 + ], + [ + -71.86223935499999, + 63.66053709800008 + ], + [ + -71.82011894799996, + 63.75851430700004 + ], + [ + -71.52570253999994, + 63.61270410900016 + ], + [ + -71.26113891599988, + 63.53146194600015 + ], + [ + -71.4288480649999, + 63.50606836000014 + ], + [ + -71.61350891199993, + 63.41029825500016 + ], + [ + -71.76566040199998, + 63.3717199030001 + ], + [ + -71.74233795399982, + 63.240091222000046 + ], + [ + -71.60320118599998, + 63.128624335000154 + ], + [ + -71.39515195099995, + 63.04969499100008 + ], + [ + -70.80395729499992, + 62.89442581100002 + ], + [ + -70.51068326899997, + 62.87554224500008 + ], + [ + -70.15999223599994, + 62.738135762000184 + ], + [ + -69.94405295199988, + 62.784467366000115 + ], + [ + -69.74916541299996, + 62.729194746000076 + ], + [ + -69.52942988799998, + 62.76865645900011 + ], + [ + -69.57429835899984, + 62.64928882100014 + ], + [ + -69.2194062829999, + 62.44800310600016 + ], + [ + -69.05060249799988, + 62.39375152200006 + ], + [ + -68.8460058949999, + 62.37887158900014 + ], + [ + -68.60656667099988, + 62.26286260600017 + ], + [ + -67.8376650429999, + 62.1871028970001 + ], + [ + -67.6960658239999, + 62.15211392100019 + ], + [ + -67.54591930999993, + 62.17679546900007 + ], + [ + -67.23754724799994, + 62.07040904500019 + ], + [ + -66.87829921499991, + 62.034414254000126 + ], + [ + -66.61929484199993, + 61.97326694200018 + ], + [ + -66.56204976299995, + 61.934059738000144 + ], + [ + -66.27018541199993, + 61.859371859000134 + ], + [ + -65.94787737499996, + 61.87130494400009 + ], + [ + -65.94201349999997, + 61.92251612900009 + ], + [ + -66.07863157699995, + 62.057909306000056 + ], + [ + -66.03767568099994, + 62.15299152600005 + ], + [ + -66.21348485999994, + 62.34837471500015 + ], + [ + -66.53453100099995, + 62.55922319700005 + ], + [ + -66.78330596099988, + 62.668408204000116 + ], + [ + -66.9100655719999, + 62.65935272000013 + ], + [ + -67.00333368999998, + 62.762524936000034 + ], + [ + -67.60987513899994, + 63.092610201000184 + ], + [ + -67.76735756299996, + 63.09335026000019 + ], + [ + -67.87178725399997, + 63.143765446000145 + ], + [ + -68.09121962799998, + 63.16398412700016 + ], + [ + -68.42040368799991, + 63.40691307600008 + ], + [ + -68.74179073999989, + 63.55035126800004 + ], + [ + -68.80927704099986, + 63.63852395800018 + ], + [ + -68.96387859299995, + 63.74033928800003 + ], + [ + -68.43781672599988, + 63.72244947100012 + ], + [ + -68.38097967899989, + 63.66089092000004 + ], + [ + -68.08018314499998, + 63.60477577100016 + ], + [ + -67.82087570399995, + 63.469193217000054 + ], + [ + -67.77658076999995, + 63.408257568000124 + ], + [ + -67.61916418499993, + 63.421679414000096 + ], + [ + -67.78972471299994, + 63.585279992000096 + ], + [ + -67.63930090099996, + 63.64907048100014 + ], + [ + -67.49430609699982, + 63.48522151100019 + ], + [ + -67.10673814299997, + 63.28298378700009 + ], + [ + -67.00600946099996, + 63.24709110200013 + ], + [ + -66.68388792099995, + 63.05456456200005 + ], + [ + -66.51395930499996, + 63.09307096900011 + ], + [ + -66.35234477299997, + 63.00312232800002 + ], + [ + -65.86745139399989, + 62.974281401000155 + ], + [ + -65.71934275799998, + 62.927333724000164 + ], + [ + -65.58150485099998, + 62.818764277000184 + ], + [ + -65.3399355499999, + 62.818704974000184 + ], + [ + -65.30169852299991, + 62.67303826600005 + ], + [ + -65.19669968999995, + 62.56584934300014 + ], + [ + -64.96662189799997, + 62.61035557800011 + ], + [ + -64.94274239499993, + 62.72024260500018 + ], + [ + -65.1790723979999, + 62.90169895800011 + ], + [ + -65.06665801999998, + 62.944477357000096 + ], + [ + -64.83954382999991, + 62.865566847000196 + ], + [ + -64.59790176199988, + 62.89870305300008 + ], + [ + -64.7642088589999, + 62.95736759800002 + ], + [ + -64.75417794899994, + 63.12907813400011 + ], + [ + -64.8761030799999, + 63.23276083000013 + ], + [ + -65.0641957819999, + 63.560460737000085 + ], + [ + -64.85341530999995, + 63.550531388000195 + ], + [ + -64.76496150799994, + 63.36293682799999 + ], + [ + -64.62285288699996, + 63.23944962400003 + ], + [ + -64.5077212459999, + 63.25415647700004 + ], + [ + -64.45624738499993, + 63.44372135200007 + ], + [ + -64.51464738099992, + 63.59990534100007 + ], + [ + -64.4996726949999, + 63.67984648900017 + ], + [ + -64.65096868499995, + 63.74716997000013 + ], + [ + -64.88483908099983, + 63.768283015000065 + ], + [ + -64.95539135499996, + 63.80637299800014 + ], + [ + -64.78696949799985, + 63.9198321560001 + ], + [ + -64.62408084199996, + 63.96237802100006 + ], + [ + -64.6923270239999, + 64.01192949000006 + ], + [ + -65.06658763299993, + 64.00262626799997 + ], + [ + -65.0270887509999, + 64.05877380900006 + ], + [ + -65.25120441799993, + 64.17185022700016 + ], + [ + -65.31080737899998, + 64.28059191800014 + ], + [ + -65.05085214299993, + 64.40893723500017 + ], + [ + -65.06821650599994, + 64.47635958700005 + ], + [ + -65.20990164799997, + 64.53555830400012 + ], + [ + -65.69951120899992, + 64.48544955200015 + ], + [ + -65.70423495399996, + 64.57796726000004 + ], + [ + -65.56453600699996, + 64.64487978100016 + ], + [ + -65.53496711199995, + 64.71667379600018 + ], + [ + -65.68898325599997, + 64.84071062700002 + ], + [ + -65.95646190899998, + 64.86697180800013 + ], + [ + -65.87128037199989, + 64.75477718700012 + ], + [ + -66.13291844399998, + 64.7400391430001 + ], + [ + -66.19750444899995, + 64.78850937200019 + ], + [ + -66.11649741699995, + 64.86050929400011 + ], + [ + -66.46255082799996, + 64.92555539100016 + ], + [ + -66.44693981199998, + 64.97009376800014 + ], + [ + -66.66571881799996, + 65.03466564400009 + ], + [ + -66.74637191199992, + 65.00519988300005 + ], + [ + -66.91402944899994, + 65.21168123500007 + ], + [ + -67.11873463499995, + 65.21008596500008 + ], + [ + -67.16584974599988, + 65.32535947000014 + ], + [ + -67.0464755839999, + 65.46057734400011 + ], + [ + -67.40646019799993, + 65.48112771500018 + ], + [ + -67.25851205599997, + 65.55329167100018 + ], + [ + -67.24562012099994, + 65.62559518100005 + ], + [ + -67.40177998999991, + 65.67694419700013 + ], + [ + -67.84033611899997, + 65.639057342 + ], + [ + -68.00635881099998, + 65.77463802700004 + ], + [ + -68.13343970099999, + 65.80124171000011 + ], + [ + -68.13289809799994, + 65.93376726600019 + ], + [ + -67.79318450999995, + 65.87638493300011 + ], + [ + -67.67439877099997, + 65.91775292000017 + ], + [ + -67.46934955699999, + 65.89145454099997 + ], + [ + -67.18956722499985, + 65.93725836300013 + ], + [ + -67.13089172099995, + 66.01865115400017 + ], + [ + -67.26290091699991, + 66.10453150800015 + ], + [ + -67.37780382399995, + 66.12101512200013 + ], + [ + -67.69793522599997, + 66.23247254900014 + ], + [ + -67.68555962199997, + 66.28560887000009 + ], + [ + -67.85453198199991, + 66.4474850850001 + ], + [ + -67.67080847999989, + 66.44142775500006 + ], + [ + -67.4915226999999, + 66.38293761400013 + ], + [ + -67.40573297199995, + 66.2918888860001 + ], + [ + -67.26854224099992, + 66.2634170500001 + ], + [ + -67.10518903799988, + 66.30288869300011 + ], + [ + -67.13909404299989, + 66.48229245100009 + ], + [ + -66.7350662309999, + 66.59058470600019 + ], + [ + -66.81110644199993, + 66.45487952800005 + ], + [ + -66.70691930599992, + 66.38820380600015 + ], + [ + -66.52545871199993, + 66.34340968100014 + ], + [ + -66.53488654599988, + 66.23647167700005 + ], + [ + -66.27988153599989, + 66.23841424500006 + ], + [ + -66.13547290599996, + 66.12746615300017 + ], + [ + -65.8809899989999, + 66.09393525600007 + ], + [ + -65.94405543399984, + 65.96152001799999 + ], + [ + -65.42111229199992, + 65.96946205300014 + ], + [ + -64.93180003699996, + 66.06757365300018 + ], + [ + -64.84615547699985, + 66.02168447200017 + ], + [ + -65.34252025899997, + 65.89851258700008 + ], + [ + -65.49657310399994, + 65.7396837730002 + ], + [ + -65.4521993589999, + 65.66737565500017 + ], + [ + -65.29536333199997, + 65.62749504900017 + ], + [ + -65.28751112099997, + 65.53918853100004 + ], + [ + -65.10864876799991, + 65.5305762210001 + ], + [ + -65.15619254799998, + 65.42591947700015 + ], + [ + -64.9699006429999, + 65.39834927300018 + ], + [ + -64.88639833699995, + 65.25876625600011 + ], + [ + -64.7176639199999, + 65.2157875420001 + ], + [ + -64.7055984559999, + 65.15490456700013 + ], + [ + -64.55687941099995, + 65.07443697200006 + ], + [ + -64.44857134899996, + 65.17971238500013 + ], + [ + -64.2383718509999, + 65.11307176400015 + ], + [ + -64.05471620899993, + 65.11625030500016 + ], + [ + -63.89379874699989, + 65.07719118300014 + ], + [ + -63.83145622699993, + 64.97150551100015 + ], + [ + -63.668097967999984, + 64.949965394 + ], + [ + -63.45103184799996, + 64.98048497900004 + ], + [ + -63.35695438199997, + 65.1771377930001 + ], + [ + -63.478233081999974, + 65.349190836 + ], + [ + -63.44247370599993, + 65.41877001600005 + ], + [ + -63.52143997399992, + 65.49865298500004 + ], + [ + -63.37037668399995, + 65.52508611300004 + ], + [ + -63.34594825499988, + 65.66356771600016 + ], + [ + -63.031563827999946, + 65.62060224700008 + ], + [ + -62.859717296999975, + 65.638567862 + ], + [ + -62.66307790899998, + 65.57268751700008 + ], + [ + -62.58299746999995, + 65.7622583960001 + ], + [ + -62.28421341799992, + 65.7943202690002 + ], + [ + -62.38074289599996, + 65.94177650900002 + ], + [ + -62.19731265399997, + 65.9980390550001 + ], + [ + -62.00115912699994, + 66.00923028700004 + ], + [ + -62.177889563999884, + 66.13647498800015 + ], + [ + -62.44497655299983, + 66.1708446020001 + ], + [ + -62.4967124019999, + 66.21289393700005 + ], + [ + -62.31345581099998, + 66.29438078100014 + ], + [ + -62.58792236499988, + 66.42710349000015 + ], + [ + -62.20833038899997, + 66.4032188160001 + ], + [ + -62.17640040499998, + 66.30074749600016 + ], + [ + -61.89291367199996, + 66.2716690640001 + ], + [ + -61.49333122599995, + 66.35310763600006 + ], + [ + -61.579474447999985, + 66.53092995300005 + ], + [ + -61.42635576199996, + 66.5300035480002 + ], + [ + -61.27931780299991, + 66.59463948600012 + ], + [ + -61.275521185999935, + 66.66958940400008 + ], + [ + -61.82816876499999, + 66.96805931500006 + ], + [ + -61.973361599999976, + 66.9517078180001 + ], + [ + -62.019149154999866, + 67.05083676900017 + ], + [ + -62.271299527999986, + 67.04735323800014 + ], + [ + -62.2703117019999, + 66.94368727200009 + ], + [ + -62.970532652999964, + 66.94601298100008 + ], + [ + -63.32761787399994, + 66.89516304500006 + ], + [ + -63.38994374299989, + 66.80522846600007 + ], + [ + -63.559125278999886, + 66.88897802200012 + ], + [ + -63.23729470899997, + 66.95734037200003 + ], + [ + -63.28696129299982, + 67.10782085200015 + ], + [ + -63.00985380899988, + 67.16717362100019 + ], + [ + -62.95687140699988, + 67.21863097600016 + ], + [ + -63.0781855059999, + 67.32474965500018 + ], + [ + -63.28854340099997, + 67.3013788720001 + ], + [ + -63.410655270999825, + 67.1969564210001 + ], + [ + -63.55384038799997, + 67.2315947730001 + ], + [ + -64.01209602399996, + 67.2044578230001 + ], + [ + -63.946111780999956, + 67.40910058800017 + ], + [ + -64.11818463299988, + 67.4770200850001 + ], + [ + -64.06281177499989, + 67.60666817700019 + ], + [ + -64.24615346699994, + 67.71284932100014 + ], + [ + -64.50156035899994, + 67.81015469500005 + ], + [ + -64.74549317799989, + 67.81307117700015 + ], + [ + -65.03031071099997, + 67.77132083400011 + ], + [ + -65.0363409869999, + 67.84944951200015 + ], + [ + -64.90896791199998, + 67.92621103500016 + ], + [ + -64.71100857499994, + 67.98356148800008 + ], + [ + -64.9454848019999, + 68.04390225600008 + ], + [ + -65.06642795099992, + 68.04046004999998 + ], + [ + -65.20746366999998, + 67.94066808000002 + ], + [ + -65.4086839339999, + 67.91794620400015 + ], + [ + -65.4643132889999, + 67.99716550000016 + ], + [ + -65.73506137599998, + 67.96216450200018 + ], + [ + -65.76286942699983, + 67.86550843200013 + ], + [ + -65.91947831599998, + 67.8685852110001 + ], + [ + -65.97950660399994, + 67.94091773000008 + ], + [ + -66.1376416629999, + 67.97403480700007 + ], + [ + -66.2892612789999, + 68.12517014800017 + ], + [ + -66.50091210499994, + 68.14931751600005 + ], + [ + -66.84047012799994, + 68.10271825300009 + ], + [ + -66.7844374579999, + 68.2434155570001 + ], + [ + -67.03876993699993, + 68.32845384600012 + ], + [ + -66.7932664469999, + 68.47691968300012 + ], + [ + -67.17080534899992, + 68.41048276500004 + ], + [ + -67.2235815169999, + 68.48210240000003 + ], + [ + -67.65914172499987, + 68.567525396 + ], + [ + -67.8553802319999, + 68.54004501100013 + ], + [ + -68.11408667499995, + 68.57239901600002 + ], + [ + -68.04388600799984, + 68.68184404300013 + ], + [ + -68.72781911099992, + 68.76459559600016 + ], + [ + -68.48955975699994, + 68.79210281800005 + ], + [ + -68.40857829099991, + 68.84445152100005 + ], + [ + -67.86266331799999, + 68.77715696600012 + ], + [ + -68.03886554799993, + 68.94491275800004 + ], + [ + -67.77681572799997, + 69.0435027530001 + ], + [ + -68.04932416699995, + 69.11813737000017 + ], + [ + -68.19039127399998, + 69.31396116800005 + ], + [ + -67.70156885399996, + 69.18148071100018 + ], + [ + -67.35632485899993, + 69.19411652500008 + ], + [ + -66.97508739899996, + 69.18249039700004 + ], + [ + -66.75961982899997, + 69.13962459400005 + ], + [ + -66.64723974899994, + 69.24835312100004 + ], + [ + -66.84274155999998, + 69.36689860300004 + ], + [ + -67.18164744499995, + 69.45862226200006 + ], + [ + -67.76516657799993, + 69.48666740700014 + ], + [ + -67.97996305999993, + 69.46180128400005 + ], + [ + -68.55185649499992, + 69.58193551900013 + ], + [ + -68.29080713799993, + 69.62764249700007 + ], + [ + -68.08711175899992, + 69.75946785600007 + ], + [ + -67.7673226899999, + 69.77841067800011 + ], + [ + -67.40277030799996, + 69.71399915600011 + ], + [ + -67.11057783099989, + 69.73197153100006 + ], + [ + -67.21038607199995, + 69.94168698400011 + ], + [ + -67.41253594299991, + 70.08497413800018 + ], + [ + -67.77566379999996, + 70.25034409900007 + ], + [ + -68.13641947799982, + 70.29798713700018 + ], + [ + -68.34911721699996, + 70.1928618720001 + ], + [ + -68.21152739599995, + 70.10372420500016 + ], + [ + -68.51676157899988, + 70.04878408800016 + ], + [ + -68.65703748699991, + 69.94935140900003 + ], + [ + -68.92102488699999, + 69.95236529200008 + ], + [ + -68.63367707799983, + 70.16600295400019 + ], + [ + -68.67023166999996, + 70.20804081900002 + ], + [ + -69.19012352999982, + 70.19494853000009 + ], + [ + -69.63033736499995, + 70.14776315900014 + ], + [ + -69.36958840599988, + 70.25840253299998 + ], + [ + -68.87382067999994, + 70.2961023960001 + ], + [ + -68.42498952999995, + 70.37547165200016 + ], + [ + -68.27169014599997, + 70.51067286900002 + ], + [ + -68.34831333699998, + 70.57852588300005 + ], + [ + -69.43357204599994, + 70.79007618400004 + ], + [ + -69.7631463429999, + 70.71551219200006 + ], + [ + -70.00699379199989, + 70.62347282400009 + ], + [ + -70.15858912099992, + 70.653899211 + ], + [ + -69.91731280199997, + 70.74505874700003 + ], + [ + -69.76242948499993, + 70.86023256800019 + ], + [ + -70.06951462399996, + 70.82431289300013 + ], + [ + -70.5867074229999, + 70.72561468400016 + ], + [ + -70.82086719799992, + 70.64503606500017 + ], + [ + -70.99256275199991, + 70.62995325300011 + ], + [ + -71.20455621699995, + 70.28070037500004 + ], + [ + -71.27007969499988, + 70.3407523670001 + ], + [ + -71.06170279999992, + 70.6749449720001 + ], + [ + -70.73157177999997, + 70.76913081600003 + ], + [ + -70.68326092399997, + 70.84273260600014 + ], + [ + -70.50186030499998, + 70.9236020400001 + ], + [ + -70.59945562899998, + 71.06279967300014 + ], + [ + -70.76423023799987, + 71.12092641500004 + ], + [ + -71.20621075999998, + 71.00535612400012 + ], + [ + -71.27154510399998, + 70.87808288300016 + ], + [ + -71.66044158099993, + 70.85490885100018 + ], + [ + -71.9176490449999, + 70.79064158400007 + ], + [ + -72.1671996639999, + 70.77816103500015 + ], + [ + -72.29892435599993, + 70.93966981000017 + ], + [ + -72.15575489599996, + 70.96469915600005 + ], + [ + -72.08185193399993, + 71.07095366800002 + ], + [ + -71.85920117099988, + 71.11386085200013 + ], + [ + -71.46402082799983, + 71.06561804300009 + ], + [ + -71.32593056299999, + 71.17737768400019 + ], + [ + -71.13288897099994, + 71.2509649590001 + ], + [ + -71.29711688599997, + 71.38563732700004 + ], + [ + -71.54428566599995, + 71.49802735000009 + ], + [ + -72.5767720149999, + 71.652073352 + ], + [ + -72.77745678699995, + 71.41924449200008 + ], + [ + -72.97894871799991, + 71.40832455300011 + ], + [ + -73.03292048899988, + 71.28340526600005 + ], + [ + -73.4004032339999, + 71.3453193630001 + ], + [ + -73.3653034699999, + 71.39869134400004 + ], + [ + -73.62711464099993, + 71.44866917500013 + ], + [ + -73.54742277799988, + 71.55041883600012 + ], + [ + -73.73298199599998, + 71.58895320300019 + ], + [ + -73.78008192399989, + 71.66203780300015 + ], + [ + -73.58514724399998, + 71.77601282000006 + ], + [ + -74.28390876199995, + 71.72288172800012 + ], + [ + -74.51840911999983, + 71.62592256100015 + ], + [ + -74.86827636399994, + 71.70845301700007 + ], + [ + -74.52322867999999, + 71.79165738000012 + ], + [ + -74.23419171899997, + 71.81912993700007 + ], + [ + -74.10202834099988, + 71.9566619200001 + ], + [ + -74.20690966199993, + 72.06293878300005 + ], + [ + -75.20690197199997, + 72.13217120500013 + ], + [ + -74.92303221999993, + 72.24819179900015 + ], + [ + -75.19016027299989, + 72.45913828700014 + ], + [ + -75.16043045799995, + 72.49181047200011 + ], + [ + -75.8047977839999, + 72.58946258300006 + ], + [ + -76.3925697379999, + 72.61449737300018 + ], + [ + -76.6565758879999, + 72.64367403500006 + ], + [ + -76.74107444699996, + 72.72407906200004 + ], + [ + -77.04898141799998, + 72.75528794600018 + ], + [ + -77.48367326499994, + 72.75989820700016 + ], + [ + -77.95585203299999, + 72.6980300510001 + ], + [ + -78.41820579199992, + 72.58670724700016 + ], + [ + -78.54001564599992, + 72.44166781900009 + ], + [ + -78.32961717299997, + 72.36592966799998 + ], + [ + -78.97705706399995, + 72.29460389900015 + ], + [ + -79.30285933199985, + 72.40234143000004 + ], + [ + -79.47176133499983, + 72.30278063700007 + ], + [ + -79.75659825099996, + 72.42924333000013 + ], + [ + -80.06053090999995, + 72.38772977500014 + ], + [ + -80.14262671699998, + 72.31768078300013 + ], + [ + -79.91835129299994, + 72.19308440100008 + ], + [ + -80.48616755899991, + 72.18237651900017 + ], + [ + -80.33292902799991, + 72.09337005700013 + ], + [ + -80.53461355799993, + 72.00609179100013 + ], + [ + -81.07679768999998, + 72.05578277600011 + ], + [ + -80.75156283899997, + 72.10829313800008 + ], + [ + -80.88626200399989, + 72.19072758000004 + ], + [ + -80.77334163099994, + 72.28990618000006 + ], + [ + -80.51104634899997, + 72.40754813100017 + ], + [ + -80.57091568199996, + 72.51626310800009 + ], + [ + -80.51973964799993, + 72.64006299900007 + ], + [ + -80.24560966799999, + 72.73233970100011 + ], + [ + -80.4813022699999, + 72.83006991900015 + ], + [ + -80.62781871299995, + 72.92973096700013 + ], + [ + -80.50540850799996, + 73.09254506200017 + ], + [ + -80.61696982499984, + 73.16697078099997 + ], + [ + -81.09596155399993, + 73.24102660200015 + ], + [ + -81.19804903699992, + 73.28414957400014 + ], + [ + -81.144395106, + 73.380489265 + ], + [ + -81.25929450699994, + 73.5797861640001 + ], + [ + -81.54426437899997, + 73.72474416199998 + ], + [ + -81.92919042699987, + 73.73484699500005 + ], + [ + -82.86203814099997, + 73.71962455100015 + ], + [ + -83.02171237499994, + 73.6573305980001 + ], + [ + -83.57998812799985, + 73.59793630000007 + ], + [ + -83.99041820499991, + 73.50413626800014 + ], + [ + -84.98093886099991, + 73.35668530700008 + ], + [ + -85.15039838399991, + 73.29610471400008 + ], + [ + -85.17097123799994, + 73.22499164600015 + ], + [ + -84.62234348799984, + 73.1248809130002 + ], + [ + -84.8160422659999, + 73.08754039200016 + ], + [ + -85.06455797199999, + 73.14294473700016 + ], + [ + -85.41928852799992, + 73.13947886200003 + ], + [ + -85.53978535999983, + 73.035007441 + ], + [ + -85.16050612999993, + 73.03197978600008 + ], + [ + -84.79829321199992, + 72.92592023400005 + ], + [ + -84.9120498239999, + 72.89410157700019 + ], + [ + -85.28237852699993, + 72.97236114000015 + ], + [ + -85.56299162699992, + 72.97127371300013 + ], + [ + -85.63070388899996, + 72.92258391000007 + ], + [ + -85.69051170099988, + 72.65582274100018 + ], + [ + -85.53498490599998, + 72.55999002800013 + ], + [ + -85.51459176599985, + 72.46414565500004 + ], + [ + -85.1211227359999, + 72.38451975600003 + ], + [ + -84.77355929099997, + 72.46857468300004 + ], + [ + -84.7919897239999, + 72.34205244800006 + ], + [ + -84.97030328199986, + 72.25110344500018 + ], + [ + -85.47305385399989, + 72.26906463900019 + ], + [ + -85.42130665499985, + 72.14307456199998 + ], + [ + -85.76781100899996, + 71.96636340100014 + ], + [ + -85.53710276099997, + 71.90444610999998 + ], + [ + -85.51152034699999, + 71.79876510600002 + ], + [ + -85.31782379299995, + 71.69949780800016 + ], + [ + -84.96741986099994, + 71.65865958800015 + ], + [ + -84.60771346699994, + 71.68121401000008 + ], + [ + -84.64418788599988, + 71.594470999 + ], + [ + -84.53102088699995, + 71.55188005900015 + ], + [ + -84.56193923699993, + 71.4461423890001 + ], + [ + -84.73856556099997, + 71.41515662600005 + ], + [ + -84.79504913899996, + 71.18494734800015 + ], + [ + -84.76271975299983, + 70.94040815800014 + ], + [ + -84.92941033599999, + 70.92935472500011 + ], + [ + -84.92679500599985, + 71.07471944900016 + ], + [ + -84.82949272299999, + 71.16200940200014 + ], + [ + -85.04299074699992, + 71.1988130800001 + ], + [ + -85.7393379969999, + 71.13380309300004 + ], + [ + -86.23938546199992, + 71.00012073900012 + ], + [ + -86.63851779399994, + 70.96667916899997 + ], + [ + -86.72449179799986, + 71.02756408200014 + ], + [ + -86.28597457799992, + 71.07154942200015 + ], + [ + -85.96690787299991, + 71.17943318800008 + ], + [ + -85.67917602099999, + 71.22011662900013 + ], + [ + -85.36882500999997, + 71.20748212600006 + ], + [ + -85.1647760059999, + 71.285575306 + ], + [ + -84.83042824899997, + 71.27888632600008 + ], + [ + -84.9019571899999, + 71.42881276900016 + ], + [ + -85.06225411199995, + 71.45009658400016 + ] + ] + ], + [ + [ + [ + -94.30982197599991, + 72.72693530500004 + ], + [ + -94.29211400099996, + 72.770663345 + ], + [ + -93.63031495699994, + 72.78221195900005 + ], + [ + -93.33292260599984, + 72.80457861600019 + ], + [ + -92.31037774299995, + 72.70599728100012 + ], + [ + -92.01287822799986, + 72.76779877400008 + ], + [ + -91.798358023, + 72.87247706300013 + ], + [ + -91.26674791199991, + 73.25862804400003 + ], + [ + -90.83044736499988, + 73.54047257200011 + ], + [ + -90.57576398699996, + 73.65339777400015 + ], + [ + -90.15967157599988, + 73.89755054300008 + ], + [ + -91.11668233199998, + 74.01443029100011 + ], + [ + -91.55363397899998, + 74.02944268800007 + ], + [ + -92.24456929699988, + 73.99247016700014 + ], + [ + -92.35351794099995, + 74.05957394500012 + ], + [ + -93.03080659099999, + 74.15485890100007 + ], + [ + -93.47301062299994, + 74.17662336100017 + ], + [ + -94.23884235499992, + 74.1318832550001 + ], + [ + -94.7869038479999, + 74.07394543000004 + ], + [ + -95.31147056099996, + 73.97977983200002 + ], + [ + -95.28429831199998, + 73.87722129900004 + ], + [ + -95.05734113199992, + 73.77059077100006 + ], + [ + -95.4914813179999, + 73.76646428800012 + ], + [ + -95.65604945299992, + 73.72723233600016 + ], + [ + -95.60564629999999, + 73.61061808700003 + ], + [ + -95.66666625599987, + 73.47190338700011 + ], + [ + -95.57260997199984, + 73.18024826100009 + ], + [ + -95.65613552699995, + 73.07775154300015 + ], + [ + -95.65395582599996, + 72.80046275000012 + ], + [ + -95.60453297599997, + 72.71765712600018 + ], + [ + -95.31302849699989, + 72.62107936100017 + ], + [ + -95.30586207699997, + 72.54533569000017 + ], + [ + -95.11943807599994, + 72.46605021000016 + ], + [ + -95.188716232, + 72.41989948200006 + ], + [ + -95.196892672, + 72.00012326500013 + ], + [ + -95.12129818199998, + 71.9776278 + ], + [ + -94.47652848699994, + 72.02134066999997 + ], + [ + -94.07822630099997, + 71.98999790900007 + ], + [ + -94.00596342199992, + 72.15924877200013 + ], + [ + -93.81276434199992, + 72.3090605660002 + ], + [ + -93.6127915919999, + 72.3453031620001 + ], + [ + -93.4429371629999, + 72.47028393600016 + ], + [ + -93.50349655599996, + 72.54520283200003 + ], + [ + -93.85506727999996, + 72.70192421600018 + ], + [ + -94.30982197599991, + 72.72693530500004 + ] + ] + ], + [ + [ + [ + -95.78669957399995, + 74.61215223700009 + ], + [ + -95.81347253299992, + 74.57100325600004 + ], + [ + -95.49493649499988, + 74.50342897800004 + ], + [ + -95.25395933799996, + 74.55232245700012 + ], + [ + -95.48134842199994, + 74.64292717000012 + ], + [ + -95.78669957399995, + 74.61215223700009 + ] + ] + ], + [ + [ + [ + -93.39351783399991, + 74.90297799700005 + ], + [ + -93.4920843999999, + 75.02471485400002 + ], + [ + -93.47386292699997, + 75.26366621800014 + ], + [ + -94.09568476399994, + 75.49445853200012 + ], + [ + -94.2974846859999, + 75.5875179520001 + ], + [ + -94.88531783199988, + 75.63965559200011 + ], + [ + -95.28077597299995, + 75.60848870000007 + ], + [ + -96.11548960799996, + 75.41753753300009 + ], + [ + -95.88924648799997, + 75.38180452300008 + ], + [ + -96.08041081099992, + 75.24488690300018 + ], + [ + -96.43969008499994, + 75.20149303800002 + ], + [ + -96.59985401499989, + 75.07068382300008 + ], + [ + -95.8429159829999, + 74.83042892000009 + ], + [ + -95.28001665999989, + 74.80536225700001 + ], + [ + -95.064527608, + 74.74912773500017 + ], + [ + -95.0619546719999, + 74.67983936700006 + ], + [ + -94.54257507099999, + 74.62830023600009 + ], + [ + -93.72131053299984, + 74.64377018200003 + ], + [ + -93.4494166419999, + 74.71018371000014 + ], + [ + -93.39351783399991, + 74.90297799700005 + ] + ] + ], + [ + [ + [ + -96.37770167999997, + 75.5450770870001 + ], + [ + -96.12706472799988, + 75.45917918000004 + ], + [ + -95.89843915799992, + 75.56251331900006 + ], + [ + -96.30124067699995, + 75.65685425800007 + ], + [ + -96.42258321799989, + 75.5860386830002 + ], + [ + -97.01051791099997, + 75.49983954600003 + ], + [ + -96.84214485399997, + 75.3787551040001 + ], + [ + -96.61540490299996, + 75.40463306200002 + ], + [ + -96.37770167999997, + 75.5450770870001 + ] + ] + ], + [ + [ + [ + -94.0502367119999, + 76.89475615100008 + ], + [ + -94.44685303799997, + 76.91837205900009 + ], + [ + -94.4902920799999, + 76.96461379000016 + ], + [ + -95.15525756399995, + 76.99058008100019 + ], + [ + -95.44110947199988, + 77.05784773900007 + ], + [ + -96.30674884599995, + 77.04007518300006 + ], + [ + -96.45753792799997, + 76.96945270800012 + ], + [ + -96.78119752099997, + 76.98412957400018 + ], + [ + -96.97259224899989, + 76.73430920500005 + ], + [ + -96.50046180799995, + 76.68939416600017 + ], + [ + -96.04198102299989, + 76.55273432900003 + ], + [ + -96.01758970099996, + 76.43844736700015 + ], + [ + -95.81321534599988, + 76.39318879600006 + ], + [ + -95.01131190899997, + 76.34922080800015 + ], + [ + -95.39917962099997, + 76.28697293500016 + ], + [ + -95.38830159399993, + 76.22928560899999 + ], + [ + -95.06400559099995, + 76.21664871700017 + ], + [ + -94.75523517199991, + 76.28589751500004 + ], + [ + -93.80723540399987, + 76.25498940199998 + ], + [ + -93.35170158399984, + 76.35907679700017 + ], + [ + -93.12092231099984, + 76.36393901400004 + ], + [ + -92.95905168499996, + 76.23999639200008 + ], + [ + -92.64678981099996, + 76.12561406700001 + ], + [ + -92.55307106299989, + 75.97402876800004 + ], + [ + -92.14791081899995, + 75.88114647400016 + ], + [ + -92.16614288899996, + 75.7334398750001 + ], + [ + -92.00378335599999, + 75.594187348 + ], + [ + -92.20768197199993, + 75.54900873800011 + ], + [ + -92.41598390199994, + 75.41966271000013 + ], + [ + -92.48661565499998, + 75.21615753700007 + ], + [ + -92.34128438399989, + 75.14712498600005 + ], + [ + -92.05635658399996, + 75.0884743110002 + ], + [ + -92.19934586299996, + 75.02775421700011 + ], + [ + -92.01859693199998, + 74.89273210900018 + ], + [ + -92.082934218, + 74.8002254020002 + ], + [ + -91.57786676099994, + 74.64909697700017 + ], + [ + -91.11818320999998, + 74.63871086300003 + ], + [ + -91.02513214399994, + 74.70583195000012 + ], + [ + -90.61428656499993, + 74.61459424800006 + ], + [ + -89.9540733529999, + 74.5296627940001 + ], + [ + -89.57123149399996, + 74.53896755500017 + ], + [ + -89.22549904599992, + 74.57980647100004 + ], + [ + -89.12061351199998, + 74.68824787500017 + ], + [ + -88.80689223799999, + 74.6762763430001 + ], + [ + -88.71941440299997, + 74.79772126400013 + ], + [ + -88.40812784999997, + 74.73870494400012 + ], + [ + -88.57314230399999, + 74.56924279000009 + ], + [ + -88.54223287099995, + 74.50587792300007 + ], + [ + -87.7139383569999, + 74.45996298500012 + ], + [ + -87.44459057999995, + 74.48557558300013 + ], + [ + -86.93898026999994, + 74.46169578100017 + ], + [ + -86.28601340299997, + 74.50107428900014 + ], + [ + -86.10192849399988, + 74.48069857200011 + ], + [ + -85.36498795499995, + 74.50310823300003 + ], + [ + -84.24990937799993, + 74.50704395700006 + ], + [ + -83.84525297499994, + 74.55237011600008 + ], + [ + -83.59818053499998, + 74.54924947700005 + ], + [ + -83.31534591299987, + 74.78358541000006 + ], + [ + -83.07165308599997, + 74.7867193830001 + ], + [ + -83.07407579799997, + 74.6162988230002 + ], + [ + -82.81531257999995, + 74.52590738600003 + ], + [ + -82.41037270899994, + 74.52471671300003 + ], + [ + -81.80011704299994, + 74.45793009200008 + ], + [ + -81.29743106399991, + 74.5659638890001 + ], + [ + -80.81941385999988, + 74.56048816000009 + ], + [ + -80.25168202999998, + 74.57821384100009 + ], + [ + -80.16386496599995, + 74.84338306600006 + ], + [ + -79.8694088119999, + 74.8157744950002 + ], + [ + -79.5004334219999, + 74.86782383700017 + ], + [ + -79.39698055099984, + 74.91279251000003 + ], + [ + -79.54849730299992, + 75.01258514300014 + ], + [ + -79.84166118799999, + 75.02081283100006 + ], + [ + -80.20204757799996, + 74.95891515200009 + ], + [ + -80.37775571099996, + 75.00931847700008 + ], + [ + -80.2697248309999, + 75.06347993800011 + ], + [ + -79.97463672199996, + 75.09166285300006 + ], + [ + -79.83085986199995, + 75.16925515300011 + ], + [ + -79.60700355599994, + 75.18841249300016 + ], + [ + -79.47532066699989, + 75.26855196800005 + ], + [ + -79.50831469899992, + 75.3713376730002 + ], + [ + -79.70277868899996, + 75.46894952700006 + ], + [ + -80.04313108499991, + 75.52513951300017 + ], + [ + -80.068107936, + 75.57988883200017 + ], + [ + -80.50901676799998, + 75.65318782500003 + ], + [ + -81.01177509299993, + 75.62785184600011 + ], + [ + -81.28438702599988, + 75.6505542110001 + ], + [ + -81.14616391899995, + 75.77438386200004 + ], + [ + -82.33680296799997, + 75.83869003800004 + ], + [ + -82.94025274499995, + 75.75548325000011 + ], + [ + -83.41354715299991, + 75.74556984300011 + ], + [ + -83.81116761899983, + 75.82020455000014 + ], + [ + -84.38587677599992, + 75.70226892599999 + ], + [ + -85.08069323899997, + 75.6516964400002 + ], + [ + -85.42215333699994, + 75.56491933600006 + ], + [ + -85.91302223599996, + 75.54607127700012 + ], + [ + -86.15871243399994, + 75.50466217900015 + ], + [ + -85.82855294099994, + 75.4256662470001 + ], + [ + -86.34502965099995, + 75.42083698300007 + ], + [ + -86.79043384699992, + 75.47638672900013 + ], + [ + -87.257701565, + 75.61982726000014 + ], + [ + -87.53126835399985, + 75.56099986300006 + ], + [ + -87.72288045199991, + 75.57857450200015 + ], + [ + -88.18230101999995, + 75.52312243300008 + ], + [ + -88.63013087099989, + 75.672072856 + ], + [ + -88.92225124499993, + 75.607993109 + ], + [ + -88.74640795799996, + 75.46953286500019 + ], + [ + -88.97335932799996, + 75.43576253900005 + ], + [ + -89.25066371299988, + 75.62497462700014 + ], + [ + -89.15001897799988, + 75.76332677800019 + ], + [ + -89.67266181399992, + 75.89007168400019 + ], + [ + -90.0367023739999, + 76.01042711600019 + ], + [ + -91.11915331899996, + 76.16215906300005 + ], + [ + -90.42315151999998, + 76.18083871700003 + ], + [ + -89.71642959399992, + 76.16209154800009 + ], + [ + -89.28723099299998, + 76.19397832200013 + ], + [ + -89.30321092799994, + 76.30129640900014 + ], + [ + -89.76346126499999, + 76.32687289800009 + ], + [ + -90.35548967099999, + 76.39669399900009 + ], + [ + -90.51174657299998, + 76.52635349900004 + ], + [ + -90.97230376999994, + 76.65202483000019 + ], + [ + -91.43024580099996, + 76.69134889100019 + ], + [ + -91.91735357299984, + 76.66737552500012 + ], + [ + -92.12558817999991, + 76.61576958700005 + ], + [ + -92.65659726199993, + 76.59052170400008 + ], + [ + -92.86980887499988, + 76.6196569980001 + ], + [ + -93.34679896199998, + 76.53712413200014 + ], + [ + -93.16840433399994, + 76.68092015500008 + ], + [ + -93.25339027899997, + 76.75229595300004 + ], + [ + -93.7071301549999, + 76.92017203100016 + ], + [ + -94.0502367119999, + 76.89475615100008 + ] + ] + ], + [ + [ + [ + -94.50402606699993, + 75.75131036700009 + ], + [ + -94.28941304799997, + 75.75984528600009 + ], + [ + -94.41814796599988, + 75.95284779600007 + ], + [ + -94.85548520099996, + 75.93723198000015 + ], + [ + -94.77229900599997, + 75.78067554900008 + ], + [ + -94.50402606699993, + 75.75131036700009 + ] + ] + ], + [ + [ + [ + -90.18736991499998, + 76.51846134500005 + ], + [ + -89.83020290999997, + 76.54515630100008 + ], + [ + -89.82924283299991, + 76.64618998400005 + ], + [ + -89.7020334259999, + 76.74323883700015 + ], + [ + -90.05185732199999, + 76.83955356200005 + ], + [ + -90.47317782199991, + 76.7998998020002 + ], + [ + -90.59407586599997, + 76.72478247800007 + ], + [ + -90.18736991499998, + 76.51846134500005 + ] + ] + ], + [ + [ + [ + -90.98305096199994, + 77.25247517700006 + ], + [ + -91.27786275499994, + 77.2264411770002 + ], + [ + -91.00100991899996, + 77.13664861500013 + ], + [ + -90.69821140999994, + 77.19107015300011 + ], + [ + -90.98305096199994, + 77.25247517700006 + ] + ] + ], + [ + [ + [ + -90.19832403499993, + 77.60888756600019 + ], + [ + -90.86575379599986, + 77.6603587680001 + ], + [ + -91.23115873199998, + 77.57085546800005 + ], + [ + -91.20871696199998, + 77.39471602900005 + ], + [ + -90.857311784, + 77.28892225500016 + ], + [ + -90.13664479899995, + 77.19595706500019 + ], + [ + -89.6413530829999, + 77.32201999600017 + ], + [ + -89.80674670699995, + 77.49995390200019 + ], + [ + -90.19832403499993, + 77.60888756600019 + ] + ] + ], + [ + [ + [ + -84.80607414799988, + 77.50372500100019 + ], + [ + -84.98746986299994, + 77.57317077300019 + ], + [ + -85.327998558, + 77.58476284400018 + ], + [ + -85.16355266799997, + 77.45874995700007 + ], + [ + -84.80607414799988, + 77.50372500100019 + ] + ] + ], + [ + [ + [ + -93.80309520199995, + 77.75835867700005 + ], + [ + -94.70581741799998, + 77.79238566600003 + ], + [ + -95.37357387699996, + 77.7395663260001 + ], + [ + -95.595994739, + 77.77500915300016 + ], + [ + -95.92835916099989, + 77.755261508 + ], + [ + -96.2563375019999, + 77.68821228500019 + ], + [ + -96.29593153599996, + 77.6081392480001 + ], + [ + -96.06949795799989, + 77.4937462170002 + ], + [ + -95.28832698099995, + 77.46516487500008 + ], + [ + -94.84647840899999, + 77.48275979700014 + ], + [ + -94.14794036299992, + 77.44653906600001 + ], + [ + -93.56943756799996, + 77.43949703900012 + ], + [ + -93.3819930809999, + 77.62667212000014 + ], + [ + -93.08185038699997, + 77.65718059400007 + ], + [ + -93.22584983299998, + 77.73107527300016 + ], + [ + -93.64901986699994, + 77.78071833900003 + ], + [ + -93.80309520199995, + 77.75835867700005 + ] + ] + ], + [ + [ + [ + -95.55682968399998, + 78.51287866200005 + ], + [ + -95.92897368199993, + 78.48267860600009 + ], + [ + -96.28898317999995, + 78.52502287000016 + ], + [ + -96.25871465599994, + 78.62612503700007 + ], + [ + -96.91036836099988, + 78.70463140300012 + ], + [ + -97.50492734799985, + 78.7989738440001 + ], + [ + -98.1918765389999, + 78.81239203500019 + ], + [ + -98.40536864199998, + 78.76669387800018 + ], + [ + -98.36909632699997, + 78.64946454200003 + ], + [ + -98.10875570499991, + 78.57820513600007 + ], + [ + -98.36604617299992, + 78.52832025900005 + ], + [ + -98.35749326699994, + 78.44353217200012 + ], + [ + -98.07775697699992, + 78.3110865910001 + ], + [ + -97.80768930799996, + 78.2575028890002 + ], + [ + -96.92606556499999, + 78.14265758 + ], + [ + -96.97683268199984, + 78.0718997800002 + ], + [ + -97.65831979899997, + 78.09116308600011 + ], + [ + -97.72247317899996, + 78.04056281500004 + ], + [ + -97.02668109899997, + 77.91894452300016 + ], + [ + -97.09106747099992, + 77.80573475900007 + ], + [ + -96.82033795199999, + 77.79149296200006 + ], + [ + -96.57651920999996, + 77.89933982600013 + ], + [ + -96.30667761299992, + 77.8591644350002 + ], + [ + -95.94025089199988, + 77.88411608900009 + ], + [ + -95.40164307499998, + 77.96480334100005 + ], + [ + -95.10374409699989, + 77.94996800400014 + ], + [ + -94.8932271619999, + 78.1063050200001 + ], + [ + -95.40982699699998, + 78.2356892250001 + ], + [ + -94.91029886399997, + 78.3274306890001 + ], + [ + -94.91150423999994, + 78.3929114450001 + ], + [ + -95.55682968399998, + 78.51287866200005 + ] + ] + ], + [ + [ + [ + -86.49441872199992, + 78.89945058400008 + ], + [ + -85.82446475799998, + 78.92423078600012 + ], + [ + -85.20211040399988, + 78.99234956300018 + ], + [ + -85.24144272699988, + 79.0545046040001 + ], + [ + -85.8098616449999, + 79.06883484900015 + ], + [ + -86.27545362999984, + 78.98948657600016 + ], + [ + -86.49441872199992, + 78.89945058400008 + ] + ] + ], + [ + [ + [ + -90.88161799999983, + 80.71639377000014 + ], + [ + -91.14238097799989, + 80.75674093800012 + ], + [ + -91.81148141499995, + 81.07492716200017 + ], + [ + -91.8376881179999, + 81.15232620200004 + ], + [ + -92.12528561699992, + 81.22453592800008 + ], + [ + -93.29148672299988, + 81.36276152900012 + ], + [ + -93.69126983399991, + 81.33128832900019 + ], + [ + -94.28725609499992, + 81.340031942 + ], + [ + -94.41354580899986, + 81.24536162300006 + ], + [ + -93.78388575799994, + 81.19909306100004 + ], + [ + -93.2901849619999, + 81.21043113300004 + ], + [ + -93.21696324499993, + 81.08910802800017 + ], + [ + -93.6005887959999, + 81.07721513899997 + ], + [ + -94.2350892479999, + 81.10664068500017 + ], + [ + -94.16823672699996, + 81.00320298900004 + ], + [ + -94.9155185709999, + 81.06075256100019 + ], + [ + -95.27615187899994, + 81.00355893000005 + ], + [ + -95.28820133499994, + 80.8844188160001 + ], + [ + -95.4942147719999, + 80.79460853300009 + ], + [ + -94.69793373899995, + 80.72220154600012 + ], + [ + -94.57723557399993, + 80.60242129900007 + ], + [ + -94.77866684599996, + 80.5594397100001 + ], + [ + -95.51087405699997, + 80.58979372100009 + ], + [ + -95.95349622599997, + 80.55105124300013 + ], + [ + -96.10770979299991, + 80.4851567400001 + ], + [ + -95.82210837399992, + 80.44784330700014 + ], + [ + -96.12433431799991, + 80.38089840400005 + ], + [ + -96.64383013199989, + 80.33006295600012 + ], + [ + -96.46650703499995, + 80.27189784600006 + ], + [ + -95.33561166899989, + 80.11379188500018 + ], + [ + -94.66707153799996, + 80.12545224900003 + ], + [ + -95.15803381399996, + 80.02664887900016 + ], + [ + -96.04220144799984, + 80.07211881500007 + ], + [ + -96.61664173899999, + 80.14251558800015 + ], + [ + -96.77133692699988, + 80.08592982100004 + ], + [ + -96.63290714699991, + 79.89527207100008 + ], + [ + -96.35927736899998, + 79.82626377800011 + ], + [ + -95.90084421299997, + 79.64811287100014 + ], + [ + -95.55394830399996, + 79.62877716700012 + ], + [ + -94.82245847499996, + 79.66104114600006 + ], + [ + -94.56964645799997, + 79.62376412900011 + ], + [ + -95.35516262599998, + 79.5548804710001 + ], + [ + -95.62859170599995, + 79.55111188600011 + ], + [ + -95.74169492499993, + 79.40638636100016 + ], + [ + -95.34680717099991, + 79.38582983000009 + ], + [ + -95.2069908499999, + 79.28513812099999 + ], + [ + -94.9918290629999, + 79.2638770860001 + ], + [ + -94.50733458899998, + 79.34321356700013 + ], + [ + -94.25351978099985, + 79.26612043200004 + ], + [ + -93.8605456549999, + 79.26349053300015 + ], + [ + -93.07264183099994, + 79.35717214100009 + ], + [ + -92.57223954499989, + 79.36190788000016 + ], + [ + -91.82930694299995, + 79.33623608600004 + ], + [ + -91.9594572719999, + 79.29157946500004 + ], + [ + -92.52299891699994, + 79.30295509700017 + ], + [ + -92.67957236199993, + 79.24681713300009 + ], + [ + -92.25692370999997, + 79.20141913800006 + ], + [ + -91.17233547599989, + 79.24471726600018 + ], + [ + -90.77450373099992, + 79.20650696200005 + ], + [ + -92.0957720639999, + 79.14828482400003 + ], + [ + -93.38262505299997, + 79.16164668900007 + ], + [ + -93.69117973999994, + 79.04663754200004 + ], + [ + -94.25323050599997, + 78.99201015600005 + ], + [ + -93.82055543799999, + 78.76977408400012 + ], + [ + -93.29649429199998, + 78.57979052600018 + ], + [ + -92.84394996399999, + 78.62550748100011 + ], + [ + -92.25067268499987, + 78.57455195000017 + ], + [ + -91.99519740599993, + 78.52555081900005 + ], + [ + -92.86119335199987, + 78.49858839300009 + ], + [ + -92.93773821999997, + 78.41654942000008 + ], + [ + -92.49497256399997, + 78.30351649599999 + ], + [ + -91.98230237199988, + 78.21280289600014 + ], + [ + -90.98031949699998, + 78.14031665200014 + ], + [ + -90.32610669299993, + 78.14500889900012 + ], + [ + -90.36212951099992, + 78.2569319550002 + ], + [ + -90.04209563299992, + 78.29875430300007 + ], + [ + -89.86265368299996, + 78.20898137000017 + ], + [ + -89.48535204999996, + 78.18544748300008 + ], + [ + -89.74528144499999, + 78.37794850400007 + ], + [ + -89.99993804499991, + 78.47333907600006 + ], + [ + -89.77027230699997, + 78.4928543310001 + ], + [ + -88.99391069099994, + 78.16669365600012 + ], + [ + -88.76302125299998, + 78.1656390440001 + ], + [ + -88.53558910899994, + 78.4004748810001 + ], + [ + -88.31556921899994, + 78.47860428600012 + ], + [ + -88.016242031, + 78.47775992800007 + ], + [ + -87.86456069499997, + 78.58179735200014 + ], + [ + -88.10021129999996, + 78.68117786700003 + ], + [ + -87.52200684199994, + 78.66072526300013 + ], + [ + -87.32606261199999, + 78.79804343900014 + ], + [ + -86.28045048699994, + 79.08950164700019 + ], + [ + -85.27202729799995, + 79.18846516400009 + ], + [ + -84.86607614699994, + 79.270583338 + ], + [ + -85.38382917299992, + 79.45379029000009 + ], + [ + -85.63233898099998, + 79.6056181510001 + ], + [ + -85.87267813399984, + 79.51485652200006 + ], + [ + -86.22921202099997, + 79.6326213480001 + ], + [ + -86.65923980199995, + 79.656461552 + ], + [ + -87.16871158499998, + 79.57401879100013 + ], + [ + -86.94203122499994, + 79.86207869600014 + ], + [ + -86.96526957099996, + 79.94722116300011 + ], + [ + -87.3607641449999, + 80.08069242600004 + ], + [ + -88.05100957699995, + 80.09773135400013 + ], + [ + -87.61817965099988, + 80.17282545600011 + ], + [ + -87.67196958799997, + 80.4044544360001 + ], + [ + -88.42354197499998, + 80.43754840300011 + ], + [ + -88.69309280899995, + 80.37079471100009 + ], + [ + -88.67972284999996, + 80.27269525600013 + ], + [ + -88.34418508899995, + 80.15809843700009 + ], + [ + -88.73805019599996, + 80.1250327750002 + ], + [ + -89.15588119499989, + 80.2149560100001 + ], + [ + -89.04796135799995, + 80.44913852400009 + ], + [ + -89.28634009099983, + 80.52129745800005 + ], + [ + -90.74169275099996, + 80.55597991500008 + ], + [ + -90.61035198399998, + 80.63533336600011 + ], + [ + -90.88161799999983, + 80.71639377000014 + ] + ] + ], + [ + [ + [ + -78.97828948899996, + 56.281845502000124 + ], + [ + -78.92715412399991, + 56.40709187900006 + ], + [ + -79.06570779599991, + 56.436379235000175 + ], + [ + -79.13761110099995, + 56.54044322200019 + ], + [ + -79.2904595199999, + 56.56147257600003 + ], + [ + -79.38471873099996, + 56.25405598100019 + ], + [ + -79.43988918299988, + 56.19507469100006 + ], + [ + -79.57179579999996, + 56.240713303000064 + ], + [ + -79.77237919899989, + 56.12560174200007 + ], + [ + -79.85152737999994, + 56.02297137000005 + ], + [ + -80.01110662899998, + 55.92185656600009 + ], + [ + -79.85394094799994, + 55.83320852900016 + ], + [ + -79.56807268499995, + 56.111379473000056 + ], + [ + -79.47080168299993, + 56.100883580000186 + ], + [ + -79.63342640999997, + 55.89266923499997 + ], + [ + -79.50323040299998, + 55.85582927600012 + ], + [ + -79.32781754999996, + 55.99989879100019 + ], + [ + -79.15872474399993, + 56.23833671600016 + ], + [ + -78.97828948899996, + 56.281845502000124 + ] + ] + ], + [ + [ + [ + -78.84232586299993, + 56.28482968100019 + ], + [ + -78.94434372499995, + 56.10125660000011 + ], + [ + -78.67777015599995, + 56.17233970300015 + ], + [ + -78.65901046899995, + 56.41464693700004 + ], + [ + -78.77025182999995, + 56.42078630000009 + ], + [ + -78.84888666699993, + 56.348355745000106 + ], + [ + -78.84232586299993, + 56.28482968100019 + ] + ] + ], + [ + [ + [ + -80.10647454199994, + 56.18927784500005 + ], + [ + -80.02543386199989, + 56.17690897099999 + ], + [ + -79.70559925699996, + 56.298725901000125 + ], + [ + -80.04540009199997, + 56.311309213000186 + ], + [ + -80.10647454199994, + 56.18927784500005 + ] + ] + ], + [ + [ + [ + -79.93071470299998, + 56.89433502800006 + ], + [ + -79.9740629449999, + 56.82017341300002 + ], + [ + -79.74798685799993, + 56.80658064600004 + ], + [ + -79.78357120499999, + 56.92291953600011 + ], + [ + -79.93071470299998, + 56.89433502800006 + ] + ] + ], + [ + [ + [ + -71.73996103799988, + 61.469629083000086 + ], + [ + -71.7918393779999, + 61.53490936500003 + ], + [ + -71.54404905999985, + 61.561959058000014 + ], + [ + -71.63915785899991, + 61.65657083000019 + ], + [ + -72.00865288699998, + 61.72805997700004 + ], + [ + -72.2539131389999, + 61.88830345800005 + ], + [ + -72.59085370499992, + 61.947797567000066 + ], + [ + -72.60030772899984, + 62.1134287160001 + ], + [ + -72.71280760699983, + 62.14691393100003 + ], + [ + -72.85820579599994, + 62.11421491000016 + ], + [ + -73.18598916899998, + 62.27163938500007 + ], + [ + -73.18689629999994, + 62.315127957000186 + ], + [ + -73.37950876199994, + 62.37179254199998 + ], + [ + -73.53906291499999, + 62.380405223000025 + ], + [ + -73.65580497599996, + 62.4740927310001 + ], + [ + -73.85070679599994, + 62.45988648000019 + ], + [ + -73.97657006599991, + 62.364562896999985 + ], + [ + -74.34937087499998, + 62.25863626300014 + ], + [ + -74.70742537499996, + 62.24681659200013 + ], + [ + -74.91758142599997, + 62.258731811000075 + ], + [ + -75.30897013999999, + 62.317403486000046 + ], + [ + -75.55590644499995, + 62.27708080800011 + ], + [ + -75.93392716199997, + 62.35433019800007 + ], + [ + -76.56651495499989, + 62.45752232500007 + ], + [ + -76.77101717099998, + 62.516601779000155 + ], + [ + -77.0806786199999, + 62.52718171200007 + ], + [ + -77.52968138299991, + 62.571849685000075 + ], + [ + -77.60308702099991, + 62.524509804000104 + ], + [ + -77.96810229999988, + 62.38977741400004 + ], + [ + -78.09891257699991, + 62.36469218400015 + ], + [ + -78.18621586699999, + 62.261770342000034 + ], + [ + -78.18900574799994, + 62.13759766600003 + ], + [ + -78.09175398399992, + 61.911251775000096 + ], + [ + -78.10362614999991, + 61.87009145300016 + ], + [ + -77.95701575599998, + 61.68265588200006 + ], + [ + -77.80656320899999, + 61.68929359599997 + ], + [ + -77.63679147399995, + 61.562585177000074 + ], + [ + -77.60772185099995, + 61.46439399500002 + ], + [ + -77.80285345599992, + 61.41274502500016 + ], + [ + -77.71534723499997, + 61.20196997 + ], + [ + -77.83393930499989, + 61.14721307500008 + ], + [ + -77.8422329949999, + 61.08538198500008 + ], + [ + -78.20642539099993, + 60.852889104000155 + ], + [ + -77.89263210699988, + 60.7703907770001 + ], + [ + -77.7196198289999, + 60.78185443900003 + ], + [ + -77.71307122399998, + 60.70025471000014 + ], + [ + -77.84491970399989, + 60.65694320100005 + ], + [ + -77.79917051999996, + 60.589765474000046 + ], + [ + -77.58826217499995, + 60.519176677000075 + ], + [ + -77.77863419399995, + 60.40578921700018 + ], + [ + -77.6655941169999, + 60.36385677700008 + ], + [ + -77.52643238399997, + 60.21553260600007 + ], + [ + -77.56551167899988, + 60.043004777000135 + ], + [ + -77.34382487499994, + 60.02828723300007 + ], + [ + -77.43438344299994, + 59.92220916800005 + ], + [ + -77.29982663899995, + 59.80942980500009 + ], + [ + -77.57821924899997, + 59.7622202120001 + ], + [ + -77.5982512189999, + 59.66588982000019 + ], + [ + -77.8283798409999, + 59.68789399300016 + ], + [ + -77.76887402299997, + 59.53883603600019 + ], + [ + -77.90857378999993, + 59.51191747900003 + ], + [ + -77.93992762699997, + 59.428438941000195 + ], + [ + -77.80816713599995, + 59.316447734000064 + ], + [ + -78.0347405199999, + 59.25824853900008 + ], + [ + -78.15292646799992, + 59.201182602000074 + ], + [ + -78.15473031599993, + 59.09780439500014 + ], + [ + -78.28565178999997, + 59.05240834300014 + ], + [ + -78.38042070699998, + 58.91069586100019 + ], + [ + -78.59299571199989, + 58.914011641000116 + ], + [ + -78.51155291299989, + 58.724055120000116 + ], + [ + -78.50382273299988, + 58.62581907000015 + ], + [ + -78.38091417399994, + 58.61681227000008 + ], + [ + -78.31967046999995, + 58.529751194000085 + ], + [ + -78.06702266999991, + 58.42750660200005 + ], + [ + -78.07036131699994, + 58.382651208000084 + ], + [ + -77.52799188199992, + 58.23104814800013 + ], + [ + -77.48681769199999, + 58.1635891250001 + ], + [ + -77.21499200099998, + 58.026049890000195 + ], + [ + -76.85381710399997, + 57.672439239000084 + ], + [ + -76.84002927499995, + 57.592588394000074 + ], + [ + -76.64096814999994, + 57.322458262000055 + ], + [ + -76.56838987399993, + 57.115021605000095 + ], + [ + -76.57220712999992, + 56.96414758999998 + ], + [ + -76.53693921699988, + 56.817075075 + ], + [ + -76.53793732199995, + 56.641570613000056 + ], + [ + -76.41768082399989, + 56.583982942000034 + ], + [ + -76.35723258499996, + 56.83603224400008 + ], + [ + -76.41725987699988, + 56.976200581000114 + ], + [ + -76.37590785599991, + 57.128165852999985 + ], + [ + -76.44409184199998, + 57.39043512900008 + ], + [ + -76.25249542099994, + 57.473893159000056 + ], + [ + -76.13752177099997, + 57.57002103900004 + ], + [ + -76.23931916399988, + 57.70664407200019 + ], + [ + -76.4194726159999, + 57.755511425000066 + ], + [ + -76.29001005099991, + 57.8466595540001 + ], + [ + -76.38439874199992, + 57.99403802900014 + ], + [ + -76.28160665299998, + 58.10963973400004 + ], + [ + -75.95793879899992, + 58.03533664300005 + ], + [ + -75.87874452199998, + 58.085901101000104 + ], + [ + -76.08938691099996, + 58.23930192400019 + ], + [ + -76.11153498599992, + 58.3318546270001 + ], + [ + -76.01451146499988, + 58.458823193000114 + ], + [ + -75.8216327099999, + 58.49029741700019 + ], + [ + -75.67847541499992, + 58.456525763000116 + ], + [ + -75.48988377199993, + 58.23993856800013 + ], + [ + -75.3677147809999, + 58.14287165800005 + ], + [ + -75.29851728099993, + 58.255811999000116 + ], + [ + -75.12070421199996, + 58.29161166900013 + ], + [ + -74.75042805599998, + 58.26468549100019 + ], + [ + -74.42085365499997, + 58.18619024600008 + ], + [ + -73.98520525299995, + 58.15751759400018 + ], + [ + -73.64703484599988, + 58.18709044400015 + ], + [ + -73.28960492099992, + 58.18051127200005 + ], + [ + -73.18796503399994, + 58.19894085600009 + ], + [ + -73.22912674999986, + 58.35348473700009 + ], + [ + -73.14478441399996, + 58.3946218530001 + ], + [ + -72.91904423199998, + 58.394532671000036 + ], + [ + -72.7375397749999, + 58.456421097000145 + ], + [ + -72.47801080199997, + 58.46025211200015 + ], + [ + -72.3439264559999, + 58.37236635600016 + ], + [ + -71.98267429299989, + 58.34687619800013 + ], + [ + -71.86547758699999, + 58.39399494300011 + ], + [ + -71.78790861799996, + 58.27581857000018 + ], + [ + -71.46410455799992, + 58.18712634100018 + ], + [ + -71.34834167399993, + 58.198377494 + ], + [ + -70.92681029199997, + 58.40437261300008 + ], + [ + -70.52734378599996, + 58.48021049500011 + ], + [ + -70.29207595499997, + 58.69904381200013 + ], + [ + -70.15851953499993, + 58.78258101600005 + ], + [ + -70.01344352799993, + 58.80475285200015 + ], + [ + -70.11360847099996, + 58.89484466100015 + ], + [ + -70.01331366099993, + 58.946045714000036 + ], + [ + -70.18666719399988, + 59.03073490000003 + ], + [ + -70.31288842499993, + 59.147081790000186 + ], + [ + -70.29426607299985, + 59.29159952200007 + ], + [ + -70.06553435899997, + 59.33684612700006 + ], + [ + -69.85892431399992, + 59.293664540000066 + ], + [ + -69.75508784199991, + 59.22879119200002 + ], + [ + -69.7228016279999, + 59.13478009200003 + ], + [ + -69.59540605199987, + 58.96441280000005 + ], + [ + -69.46965669799988, + 59.011246112000094 + ], + [ + -69.42573124099982, + 59.10820280000013 + ], + [ + -69.49850025299997, + 59.20069077500017 + ], + [ + -69.22539412399993, + 59.23147162500004 + ], + [ + -69.24879455099995, + 59.332197203000135 + ], + [ + -69.43571599099994, + 59.35616035800001 + ], + [ + -69.64106662199998, + 59.29847042000017 + ], + [ + -69.62714721299989, + 59.39006832900009 + ], + [ + -69.73945577099994, + 59.516732294000064 + ], + [ + -69.52263981399994, + 59.61536569500004 + ], + [ + -69.63729707599992, + 59.691825446999985 + ], + [ + -69.54892572799997, + 59.86978135600003 + ], + [ + -69.66424975499996, + 59.879968778000034 + ], + [ + -69.72470071299983, + 59.966347486000075 + ], + [ + -69.86405474799994, + 59.99492642200016 + ], + [ + -69.83346562699995, + 60.069569842000135 + ], + [ + -69.62328474899988, + 60.072627720000014 + ], + [ + -69.60168077999998, + 60.22660740400016 + ], + [ + -69.76082053099992, + 60.30728694800007 + ], + [ + -69.68474135999998, + 60.36271211300004 + ], + [ + -69.81044677099999, + 60.51968469600007 + ], + [ + -69.68675652099995, + 60.54246842300006 + ], + [ + -69.64369608799996, + 60.626345393 + ], + [ + -69.6938924339999, + 60.692173973000024 + ], + [ + -69.41562276099984, + 60.78384352100011 + ], + [ + -69.37912858199991, + 60.90526645900019 + ], + [ + -69.49933137799991, + 61.065566151999974 + ], + [ + -69.67602724499994, + 61.02690221200015 + ], + [ + -69.6471319929999, + 60.87732468899998 + ], + [ + -69.83360423199997, + 60.87833687400018 + ], + [ + -69.90481800499998, + 60.80040230700013 + ], + [ + -70.04562394699997, + 60.84428551000008 + ], + [ + -70.14585559799997, + 61.001848861000155 + ], + [ + -70.13329361999996, + 61.09242685000004 + ], + [ + -70.40924305499988, + 61.09079385400014 + ], + [ + -70.6358274509999, + 61.036791245000074 + ], + [ + -70.73647982099999, + 61.08810583500019 + ], + [ + -71.21367959599996, + 61.162760355000046 + ], + [ + -71.44112858399996, + 61.17256325900007 + ], + [ + -71.73173275399995, + 61.28488708600014 + ], + [ + -71.5693791839999, + 61.40344866200002 + ], + [ + -71.73996103799988, + 61.469629083000086 + ] + ] + ], + [ + [ + [ + -78.26064046499994, + 60.82441193400007 + ], + [ + -78.60268419999994, + 60.77970092700019 + ], + [ + -78.61808446899994, + 60.708350071000154 + ], + [ + -78.31982462299999, + 60.764510726000026 + ], + [ + -78.26064046499994, + 60.82441193400007 + ] + ] + ], + [ + [ + [ + -79.46510692399988, + 61.9400562030001 + ], + [ + -79.35646962299995, + 62.04681378700013 + ], + [ + -79.26999102999991, + 62.23543996800015 + ], + [ + -79.46158385299998, + 62.37573008700008 + ], + [ + -79.60602188699994, + 62.4145674670001 + ], + [ + -79.96131173599991, + 62.361434698000096 + ], + [ + -80.06811035999993, + 62.24932223000019 + ], + [ + -80.2164324289999, + 62.14829017000011 + ], + [ + -80.28098222299991, + 61.98557992500014 + ], + [ + -80.21642542199987, + 61.800851998999974 + ], + [ + -80.0178392979999, + 61.734989595 + ], + [ + -79.85537378399994, + 61.57605284100009 + ], + [ + -79.68623961999992, + 61.61194084300013 + ], + [ + -79.46510692399988, + 61.9400562030001 + ] + ] + ], + [ + [ + [ + -81.952288233, + 62.72625043200014 + ], + [ + -81.98196543699993, + 62.796975299 + ], + [ + -81.87957824599994, + 62.91227094400011 + ], + [ + -82.19491171999994, + 62.99128868400004 + ], + [ + -82.34248048099988, + 62.98654904400007 + ], + [ + -82.44381612799992, + 62.933104055 + ], + [ + -82.72776486199996, + 62.94634315800005 + ], + [ + -83.04615829499994, + 62.84543769900006 + ], + [ + -83.35032344599989, + 62.92773400400006 + ], + [ + -83.58169945699996, + 62.82441420200007 + ], + [ + -83.5928811839999, + 62.69068882700003 + ], + [ + -83.76046288299989, + 62.56046075500012 + ], + [ + -83.95765599599997, + 62.46828935800016 + ], + [ + -83.95486551899995, + 62.42203709800003 + ], + [ + -83.7345905659999, + 62.27306939300013 + ], + [ + -83.74172606699995, + 62.15910588900016 + ], + [ + -83.62606991399997, + 62.16338925600007 + ], + [ + -83.52124697399995, + 62.225940956000045 + ], + [ + -83.32003055999996, + 62.260774936000075 + ], + [ + -83.12117274299999, + 62.18044520200016 + ], + [ + -82.82458359599991, + 62.28063787800005 + ], + [ + -82.5884615729999, + 62.42402338900018 + ], + [ + -82.48824055199998, + 62.45064967000013 + ], + [ + -82.37216930699998, + 62.556671402 + ], + [ + -82.19135169899994, + 62.60362040200005 + ], + [ + -81.952288233, + 62.72625043200014 + ] + ] + ], + [ + [ + [ + -74.18969544099991, + 62.610144330000196 + ], + [ + -74.47024945799996, + 62.7396085850001 + ], + [ + -74.55985171099996, + 62.678816331 + ], + [ + -74.18969544099991, + 62.610144330000196 + ] + ] + ], + [ + [ + [ + -77.76363612399996, + 63.411153179 + ], + [ + -77.79379798299993, + 63.45306611800004 + ], + [ + -78.17019586399988, + 63.489140624000186 + ], + [ + -78.4463266709999, + 63.4490621 + ], + [ + -78.52134202299993, + 63.40288536800011 + ], + [ + -78.01333189399986, + 63.11652509700002 + ], + [ + -77.90174584699997, + 63.09416459900018 + ], + [ + -77.52650690299998, + 63.19746862 + ], + [ + -77.50217498199999, + 63.274207093000086 + ], + [ + -77.67090438399998, + 63.42847961300009 + ], + [ + -77.76363612399996, + 63.411153179 + ] + ] + ], + [ + [ + [ + -76.62855430999997, + 63.51721383200004 + ], + [ + -76.81720394799999, + 63.616900435000105 + ], + [ + -77.0377005929999, + 63.678544653000074 + ], + [ + -77.38015515199999, + 63.67277870800007 + ], + [ + -77.39922340399994, + 63.59049352600016 + ], + [ + -77.04099299699999, + 63.42266984000014 + ], + [ + -76.72276650399994, + 63.363657166999985 + ], + [ + -76.62855430999997, + 63.51721383200004 + ] + ] + ], + [ + [ + [ + -78.02754266699998, + 63.97125234900017 + ], + [ + -77.75494992399996, + 63.925847708000106 + ], + [ + -77.57195322199988, + 64.03520253200008 + ], + [ + -77.93064080199997, + 64.02130601800013 + ], + [ + -78.02754266699998, + 63.97125234900017 + ] + ] + ], + [ + [ + [ + -83.6628195539999, + 65.85497498100005 + ], + [ + -83.64425912799993, + 65.90850713100014 + ], + [ + -83.96359833399987, + 66.03490059100005 + ], + [ + -84.37520050699993, + 66.14451360300012 + ], + [ + -84.44337983799994, + 66.07719523000003 + ], + [ + -84.3705017069999, + 65.99888908700012 + ], + [ + -84.15320865199993, + 65.97231812300004 + ], + [ + -84.06628262699996, + 65.80594522500013 + ], + [ + -83.9373551079999, + 65.73416391800009 + ], + [ + -83.7766333749999, + 65.7870066590001 + ], + [ + -83.7978545499999, + 65.6462276470001 + ], + [ + -83.44141642799997, + 65.65528327900006 + ], + [ + -83.31056247399994, + 65.61902405000018 + ], + [ + -83.17264580299997, + 65.71057146600009 + ], + [ + -83.4488216439999, + 65.72783520600012 + ], + [ + -83.71064464999995, + 65.78734829000018 + ], + [ + -83.6628195539999, + 65.85497498100005 + ] + ] + ], + [ + [ + [ + -82.90703169299996, + 66.27671866100019 + ], + [ + -83.18105800799987, + 66.32223012200018 + ], + [ + -83.26836150999992, + 66.2637538530002 + ], + [ + -82.9758003639999, + 66.20406349500018 + ], + [ + -82.90703169299996, + 66.27671866100019 + ] + ] + ], + [ + [ + [ + -75.14279649899999, + 67.97433300300008 + ], + [ + -75.04223730599995, + 68.04099415900004 + ], + [ + -75.01808912799999, + 68.1665926870001 + ], + [ + -75.12921827599996, + 68.2353087800002 + ], + [ + -75.49336150399984, + 68.27444946400004 + ], + [ + -75.71155326699989, + 68.3277095630001 + ], + [ + -75.94993475199988, + 68.33839649200019 + ], + [ + -76.06209647099996, + 68.29421817200006 + ], + [ + -76.27085311299999, + 68.33204769600013 + ], + [ + -76.61703799699995, + 68.26993698500013 + ], + [ + -76.95703314499991, + 68.09077374900016 + ], + [ + -77.20557096699997, + 67.86044674100015 + ], + [ + -77.2911320099999, + 67.72952817900011 + ], + [ + -77.20527905799997, + 67.53366439700011 + ], + [ + -77.22458138499991, + 67.44859566000008 + ], + [ + -76.99464944999994, + 67.24453562800016 + ], + [ + -76.68930772499994, + 67.21206680000006 + ], + [ + -76.21636440499998, + 67.25232645700004 + ], + [ + -75.91470354999996, + 67.24483967600008 + ], + [ + -75.56142187899997, + 67.30823334300015 + ], + [ + -75.18975189799994, + 67.4403647900001 + ], + [ + -75.04191351899993, + 67.61064774800019 + ], + [ + -75.05489170499999, + 67.82815098200007 + ], + [ + -75.14279649899999, + 67.97433300300008 + ] + ] + ], + [ + [ + [ + -73.43571113899998, + 67.98650043100014 + ], + [ + -73.57483172699983, + 68.01685650800016 + ], + [ + -73.8020094979999, + 67.99631470800011 + ], + [ + -74.08316957299985, + 68.06491012400011 + ], + [ + -74.31753026699994, + 68.18072778000015 + ], + [ + -74.48328744299988, + 68.06515371100011 + ], + [ + -74.72108320899997, + 68.07609078900015 + ], + [ + -74.77331979699994, + 67.97336999700013 + ], + [ + -74.59329056899998, + 67.82767680900014 + ], + [ + -74.28247598399997, + 67.76473061000013 + ], + [ + -73.98957319699986, + 67.78716009700014 + ], + [ + -73.49136521799988, + 67.75998737200007 + ], + [ + -73.35048932599994, + 67.82643604300017 + ], + [ + -73.43571113899998, + 67.98650043100014 + ] + ] + ], + [ + [ + [ + -78.85849410799995, + 68.25003058100015 + ], + [ + -78.95109595899999, + 68.35862889800018 + ], + [ + -79.15212823299993, + 68.36626209300016 + ], + [ + -79.20217539499998, + 68.24332951400015 + ], + [ + -79.02961368699988, + 68.18313258799998 + ], + [ + -78.85849410799995, + 68.25003058100015 + ] + ] + ], + [ + [ + [ + -74.30024576999989, + 68.33880106700013 + ], + [ + -74.06560604099997, + 68.34110889800007 + ], + [ + -74.2574518159999, + 68.4546589900001 + ], + [ + -74.40214789799984, + 68.42978812100006 + ], + [ + -74.30024576999989, + 68.33880106700013 + ] + ] + ], + [ + [ + [ + -75.30507536799996, + 68.7103934590001 + ], + [ + -75.41121619399996, + 68.54224324300009 + ], + [ + -75.24219154199989, + 68.44333787400006 + ], + [ + -74.80356271199997, + 68.3615609520001 + ], + [ + -74.81514694199996, + 68.51081677399998 + ], + [ + -74.94918569499993, + 68.5806301290001 + ], + [ + -75.00139722299991, + 68.67625691500007 + ], + [ + -75.30507536799996, + 68.7103934590001 + ] + ] + ], + [ + [ + [ + -78.67529533799984, + 68.51989800400014 + ], + [ + -78.4825846199999, + 68.57218568300004 + ], + [ + -78.70967165499991, + 68.61425523700012 + ], + [ + -78.94839085799998, + 68.53025341100016 + ], + [ + -78.80276080899995, + 68.44625720300007 + ], + [ + -78.67529533799984, + 68.51989800400014 + ] + ] + ], + [ + [ + [ + -74.81173808499994, + 68.67003752000016 + ], + [ + -74.82276298599999, + 68.56670641300019 + ], + [ + -74.63209396199989, + 68.56629881100008 + ], + [ + -74.64124824799995, + 68.66001713500003 + ], + [ + -74.81173808499994, + 68.67003752000016 + ] + ] + ], + [ + [ + [ + -78.99127299299988, + 68.89627467000003 + ], + [ + -78.8248517909999, + 68.91656108100017 + ], + [ + -78.54977640599998, + 69.08999645500012 + ], + [ + -78.46862487899995, + 69.22621471500008 + ], + [ + -78.21042434299994, + 69.30057466300008 + ], + [ + -78.30645890199997, + 69.3848478180002 + ], + [ + -78.47657823599997, + 69.39888772000012 + ], + [ + -78.71029216099993, + 69.34450955200003 + ], + [ + -78.96278469999999, + 69.1086653820002 + ], + [ + -79.18648257699988, + 69.09576213400015 + ], + [ + -79.38421998299998, + 68.92556537400009 + ], + [ + -79.23454925299995, + 68.84201194200006 + ], + [ + -78.99127299299988, + 68.89627467000003 + ] + ] + ], + [ + [ + [ + -76.87519784899996, + 69.25033851699999 + ], + [ + -76.68859180599992, + 69.3200304390001 + ], + [ + -76.63757627499996, + 69.39455952400016 + ], + [ + -76.96463805099995, + 69.41007652200005 + ], + [ + -77.11479739899994, + 69.45398586900006 + ], + [ + -77.33995844299994, + 69.41469676000008 + ], + [ + -77.36840010899988, + 69.28694859000018 + ], + [ + -77.27305170199998, + 69.15851195900007 + ], + [ + -77.18490272999998, + 69.13493589299998 + ], + [ + -76.89361706899996, + 69.17407365800005 + ], + [ + -76.87519784899996, + 69.25033851699999 + ] + ] + ], + [ + [ + [ + -78.85025819299989, + 69.51215174600014 + ], + [ + -78.80992488499987, + 69.46315015000005 + ], + [ + -78.07139924899997, + 69.5856894640001 + ], + [ + -77.9444177769999, + 69.63920888900014 + ], + [ + -77.97234202399994, + 69.70124787300011 + ], + [ + -78.17297871599993, + 69.75861114300011 + ], + [ + -78.3047210179999, + 69.66765661600016 + ], + [ + -78.56366693599983, + 69.63693494400019 + ], + [ + -78.85025819299989, + 69.51215174600014 + ] + ] + ], + [ + [ + [ + -79.99884044499998, + 69.57862570000009 + ], + [ + -79.92252964699998, + 69.61542257000013 + ], + [ + -79.56841526899996, + 69.62870530800012 + ], + [ + -79.32745461299999, + 69.71196453400017 + ], + [ + -79.44171945699998, + 69.80533134900008 + ], + [ + -79.66369112799998, + 69.82100702800005 + ], + [ + -79.96407673699991, + 69.73326080600009 + ], + [ + -80.19466967599993, + 69.80990271400003 + ], + [ + -80.40633705299985, + 69.80722344100013 + ], + [ + -80.71156108799988, + 69.74922671800005 + ], + [ + -80.68867764899994, + 69.6762450110001 + ], + [ + -80.4673175669999, + 69.67705075300017 + ], + [ + -80.21492607999988, + 69.579515135 + ], + [ + -79.99884044499998, + 69.57862570000009 + ] + ] + ], + [ + [ + [ + -71.94889091499994, + 70.81818238900019 + ], + [ + -71.58476911299982, + 70.90789985200013 + ], + [ + -71.40284907299991, + 70.91878675400017 + ], + [ + -71.37381666499994, + 71.01876793800011 + ], + [ + -71.56462416799997, + 71.02115945600013 + ], + [ + -71.85229385399998, + 71.07431771 + ], + [ + -71.98507101699988, + 71.055984185 + ], + [ + -72.04589583699988, + 70.94990758699998 + ], + [ + -72.2130812929999, + 70.88591158700007 + ], + [ + -71.94889091499994, + 70.81818238900019 + ] + ] + ], + [ + [ + [ + -72.98581136899992, + 71.42226062000009 + ], + [ + -72.82505379299988, + 71.46351847200015 + ], + [ + -73.11959732199995, + 71.56550371500009 + ], + [ + -73.35839683199998, + 71.52285328200003 + ], + [ + -73.24074949999988, + 71.35654831500017 + ], + [ + -73.07025689799997, + 71.30312635400003 + ], + [ + -72.98581136899992, + 71.42226062000009 + ] + ] + ], + [ + [ + [ + -72.66739897699995, + 71.64546927800018 + ], + [ + -72.96958846099994, + 71.63535151000008 + ], + [ + -73.02030596999987, + 71.58167842400019 + ], + [ + -72.74554458099982, + 71.53107493300018 + ], + [ + -72.66739897699995, + 71.64546927800018 + ] + ] + ], + [ + [ + [ + -79.19574950499998, + 72.74817112300008 + ], + [ + -78.42586997699993, + 72.87912440900016 + ], + [ + -78.2172614669999, + 72.897908127 + ], + [ + -77.68703149699996, + 72.8983414760001 + ], + [ + -76.97182585999997, + 72.83920295700017 + ], + [ + -76.30909154899996, + 72.82062535600005 + ], + [ + -76.11677245599992, + 72.84899138500003 + ], + [ + -76.05733689399989, + 72.91564169900005 + ], + [ + -76.32640077099995, + 72.97102280500019 + ], + [ + -76.28557211199995, + 73.10185138600013 + ], + [ + -76.51981265299992, + 73.1251598410002 + ], + [ + -76.69398716299997, + 73.30556689300005 + ], + [ + -77.04247821399997, + 73.37078932200006 + ], + [ + -77.18834726799986, + 73.51049843600003 + ], + [ + -77.75227513199997, + 73.59215087000013 + ], + [ + -78.13682026299989, + 73.67196167800012 + ], + [ + -78.80334591499997, + 73.65842126700005 + ], + [ + -78.96227445399995, + 73.63529066000012 + ], + [ + -79.46812402099994, + 73.63687568400019 + ], + [ + -79.97182294199996, + 73.71725337100008 + ], + [ + -80.1122228179999, + 73.70141660300015 + ], + [ + -80.46107629099998, + 73.7698634190001 + ], + [ + -80.76982942899991, + 73.75626408099998 + ], + [ + -80.855409851, + 73.56034803700015 + ], + [ + -80.87245234999989, + 73.33888837000006 + ], + [ + -80.75623743299991, + 73.27861180100018 + ], + [ + -80.37107623899993, + 73.2419986220001 + ], + [ + -80.10824164799993, + 73.18280809500015 + ], + [ + -80.17429590599988, + 73.05040032300019 + ], + [ + -79.99063043699988, + 72.86677063600001 + ], + [ + -79.55987619599995, + 72.75334119300015 + ], + [ + -79.19574950499998, + 72.74817112300008 + ] + ] + ], + [ + [ + [ + -79.40813081799996, + 75.84720936200006 + ], + [ + -79.12173654499992, + 75.91607848900003 + ], + [ + -79.15465137399997, + 75.971248296 + ], + [ + -78.8603613549999, + 76.0413819800001 + ], + [ + -79.11806083699997, + 76.09189118799998 + ], + [ + -79.66838235599982, + 75.8966656560001 + ], + [ + -79.40813081799996, + 75.84720936200006 + ] + ] + ], + [ + [ + [ + -71.72500660399987, + 77.40962788600007 + ], + [ + -72.34889261299986, + 77.45435539700009 + ], + [ + -72.52749655299993, + 77.3874096400001 + ], + [ + -72.00834661499988, + 77.30294687800017 + ], + [ + -71.49804662699995, + 77.34880343200007 + ], + [ + -71.72500660399987, + 77.40962788600007 + ] + ] + ], + [ + [ + [ + -67.95588255899997, + 82.96368585100004 + ], + [ + -68.46121838099992, + 83.00914909199997 + ], + [ + -68.81996158099997, + 82.95697084900007 + ], + [ + -69.70069498499998, + 83.04318103500003 + ], + [ + -69.64178523899994, + 83.10665981900013 + ], + [ + -71.08404268699996, + 83.0946303360002 + ], + [ + -72.63078433999993, + 83.09456530500006 + ], + [ + -73.64388287599996, + 82.93944456000008 + ], + [ + -74.47694421299997, + 83.02958636700015 + ], + [ + -76.12943802299992, + 83.05245558100017 + ], + [ + -77.42504985199992, + 82.97269404800011 + ], + [ + -76.7193160779999, + 82.88210152900007 + ], + [ + -76.26261148599991, + 82.70695236800015 + ], + [ + -75.6140497319999, + 82.62772322400014 + ], + [ + -75.87655478699998, + 82.59255718400016 + ], + [ + -76.6120682369999, + 82.67536493800014 + ], + [ + -77.14565650099996, + 82.85958169000008 + ], + [ + -77.82542745299997, + 82.9269207280002 + ], + [ + -79.03052458299993, + 82.88935058700014 + ], + [ + -79.31656182299992, + 82.96602269200002 + ], + [ + -80.16173294499987, + 82.92889658400009 + ], + [ + -80.42647276899993, + 82.78579310900005 + ], + [ + -81.33742905299994, + 82.82170907000017 + ], + [ + -81.62287650099995, + 82.79787364600014 + ], + [ + -80.62575871899998, + 82.56160994100009 + ], + [ + -80.88076925099989, + 82.528344817 + ], + [ + -81.4965542349999, + 82.6343661630001 + ], + [ + -82.10178260099997, + 82.66802273400015 + ], + [ + -82.417807999, + 82.59769439700005 + ], + [ + -82.73208637499994, + 82.39152594200004 + ], + [ + -82.62999673599995, + 82.34823043700004 + ], + [ + -81.51464551999993, + 82.18119326200019 + ], + [ + -80.98257924999996, + 82.15548518500003 + ], + [ + -80.58331792699983, + 81.99265079700018 + ], + [ + -82.09431213499994, + 82.17349573400008 + ], + [ + -82.66553462899986, + 82.28034789300006 + ], + [ + -83.01294294299998, + 82.2165466100002 + ], + [ + -83.873240792, + 82.36089834200004 + ], + [ + -84.751352737, + 82.40500947600015 + ], + [ + -84.65279944699995, + 82.46711699899998 + ], + [ + -85.63525551199996, + 82.46605507600015 + ], + [ + -85.43448252899998, + 82.27761265200019 + ], + [ + -85.68401801699986, + 82.23314584800016 + ], + [ + -86.68627510299996, + 82.22832272500017 + ], + [ + -86.59875515499994, + 82.11201708500005 + ], + [ + -86.89460766799988, + 82.05144213900019 + ], + [ + -88.08654645899998, + 82.08782984499999 + ], + [ + -88.83122775899994, + 82.03299883900007 + ], + [ + -89.30434669099998, + 81.939405889 + ], + [ + -89.3909510599999, + 81.82212284600013 + ], + [ + -89.86948679199992, + 81.89628589400019 + ], + [ + -90.60808341699993, + 81.87471639200004 + ], + [ + -91.70902799699996, + 81.72438635800006 + ], + [ + -91.93601776299994, + 81.60672347200011 + ], + [ + -90.94672169699999, + 81.55446063500011 + ], + [ + -90.73269516099987, + 81.65758274000018 + ], + [ + -90.29542419299992, + 81.68894308200004 + ], + [ + -89.77972262399993, + 81.59804293200006 + ], + [ + -90.82167849099983, + 81.45554217700015 + ], + [ + -90.33720197699995, + 81.3771530750002 + ], + [ + -88.94074515199998, + 81.53552519200008 + ], + [ + -88.90580809599993, + 81.48729217300007 + ], + [ + -89.90151119099994, + 81.30266796400008 + ], + [ + -90.28607334499992, + 81.19710044200008 + ], + [ + -90.2490227099999, + 81.08485767800005 + ], + [ + -89.66409957199988, + 81.00585105400017 + ], + [ + -88.26338532799991, + 81.06627152300013 + ], + [ + -87.43963537099995, + 81.06252991100013 + ], + [ + -86.45609521699993, + 81.12033109100014 + ], + [ + -85.94905590799988, + 81.22648485500014 + ], + [ + -85.04322826399994, + 81.30259699300018 + ], + [ + -85.01672450899991, + 81.25058874600012 + ], + [ + -85.51003882899988, + 81.19372013999998 + ], + [ + -86.02970145299997, + 81.07975453400007 + ], + [ + -86.69649384199994, + 81.00333871100008 + ], + [ + -87.65473969399989, + 80.97904671400016 + ], + [ + -88.29520683499993, + 81.00035011700004 + ], + [ + -89.45171683999996, + 80.91179489300009 + ], + [ + -89.27065353599988, + 80.84255621200009 + ], + [ + -88.20605887099993, + 80.68067453100008 + ], + [ + -87.53774854199992, + 80.61829350300007 + ], + [ + -87.1979128509999, + 80.63467480399999 + ], + [ + -87.08717142199993, + 80.71635112700005 + ], + [ + -86.62723332299998, + 80.82000717600005 + ], + [ + -86.21053561999992, + 80.95897896600013 + ], + [ + -85.71002981499993, + 81.04436850000019 + ], + [ + -83.72533460399995, + 81.11614866400004 + ], + [ + -82.83587611799999, + 81.17050944200014 + ], + [ + -82.76694727099988, + 81.1262731720002 + ], + [ + -83.81675545399997, + 81.07110131500002 + ], + [ + -85.20298579199994, + 81.01370399000012 + ], + [ + -85.7430993299999, + 80.955543815 + ], + [ + -86.55090930099993, + 80.71512358100011 + ], + [ + -86.76126450399988, + 80.59384514300012 + ], + [ + -86.31893164299993, + 80.54198081400006 + ], + [ + -85.17594201999992, + 80.50505729500009 + ], + [ + -83.89882387999995, + 80.53441535700017 + ], + [ + -83.7316022899999, + 80.6155945160001 + ], + [ + -83.88538356499998, + 80.78626635100017 + ], + [ + -83.16021796799993, + 80.80838921000014 + ], + [ + -83.55578628499995, + 80.71388211800013 + ], + [ + -83.1030871189999, + 80.64506577999998 + ], + [ + -83.01124418599994, + 80.53669804700002 + ], + [ + -81.51346772499994, + 80.6085943550001 + ], + [ + -80.9822343379999, + 80.65285670800017 + ], + [ + -79.9718611269999, + 80.76823014800004 + ], + [ + -79.53395477599997, + 80.84083761400018 + ], + [ + -79.21336008999992, + 80.95979492700002 + ], + [ + -79.38731407699993, + 81.00281010500004 + ], + [ + -79.19250701199991, + 81.10161960100004 + ], + [ + -78.72027255199998, + 81.1162729190001 + ], + [ + -78.66728296999992, + 81.18776796500003 + ], + [ + -78.31149832099993, + 81.28477509200002 + ], + [ + -77.01110824699992, + 81.43848952000008 + ], + [ + -77.03392705299996, + 81.37517982000008 + ], + [ + -77.68507836799989, + 81.31735216300012 + ], + [ + -78.38920460999998, + 81.14084748800013 + ], + [ + -78.4806289039999, + 81.07889332800005 + ], + [ + -78.98136737199997, + 80.97998345600007 + ], + [ + -78.9545160269999, + 80.8507955010001 + ], + [ + -77.85923034399997, + 80.90754304100017 + ], + [ + -77.58703187999987, + 80.82977377600008 + ], + [ + -78.48356160399999, + 80.77939031900019 + ], + [ + -79.8848106079999, + 80.63352324800013 + ], + [ + -79.68585367499998, + 80.59662455600011 + ], + [ + -79.0661982119999, + 80.61778173300019 + ], + [ + -78.54982752699988, + 80.56766178400005 + ], + [ + -80.2517626479999, + 80.52675306499998 + ], + [ + -80.64349625199998, + 80.46626034100007 + ], + [ + -81.78232108499998, + 80.40026629800013 + ], + [ + -83.20387465399989, + 80.33223104400014 + ], + [ + -82.3091038789999, + 80.04256341400003 + ], + [ + -81.63071159499987, + 79.95632582500008 + ], + [ + -81.51460271399986, + 79.71255606900013 + ], + [ + -81.09245279199996, + 79.69300716300017 + ], + [ + -80.73888273599994, + 79.57240677500016 + ], + [ + -81.42728249599992, + 79.63537467700013 + ], + [ + -81.63007503199987, + 79.62560871400007 + ], + [ + -81.97013426999996, + 79.71825070800014 + ], + [ + -82.0902225989999, + 79.84145175300011 + ], + [ + -83.29600751699996, + 80.10965026800011 + ], + [ + -83.70945540999998, + 80.22889223100003 + ], + [ + -84.30495183099987, + 80.26947872000011 + ], + [ + -85.3765970579999, + 80.2683745010001 + ], + [ + -85.78682997599992, + 80.3241877690001 + ], + [ + -86.52712576299996, + 80.29879393900012 + ], + [ + -86.66334324499991, + 80.10781545000015 + ], + [ + -86.42701694599998, + 79.94912048400016 + ], + [ + -86.46727992899997, + 79.80029522800015 + ], + [ + -86.30603200899992, + 79.74437102800005 + ], + [ + -85.4438670379999, + 79.69086719000012 + ], + [ + -85.02298647699996, + 79.61012898900009 + ], + [ + -84.8865584589999, + 79.48340429900014 + ], + [ + -84.49952331699984, + 79.41246888000012 + ], + [ + -84.31145169999996, + 79.18892091600014 + ], + [ + -83.56219977499984, + 79.05046370700012 + ], + [ + -83.97849028999997, + 79.05177044700008 + ], + [ + -84.13726386999997, + 79.12078185900003 + ], + [ + -84.54394508099995, + 79.1462428050001 + ], + [ + -84.77654940299993, + 79.06902809200005 + ], + [ + -84.68937812899998, + 79.01976044100013 + ], + [ + -84.18434653899999, + 78.95609581000019 + ], + [ + -83.57262458999998, + 78.93068420600008 + ], + [ + -82.91970352799996, + 78.93306195500008 + ], + [ + -82.5256181719999, + 78.88782818900006 + ], + [ + -82.09386741699996, + 78.9122316770002 + ], + [ + -81.72034356799992, + 78.85650150900011 + ], + [ + -82.46136514999995, + 78.83161829300008 + ], + [ + -82.98636507999998, + 78.85602835300006 + ], + [ + -83.37476289499989, + 78.77623826400014 + ], + [ + -83.84442700299996, + 78.84365354800013 + ], + [ + -84.63865965999997, + 78.85328384600007 + ], + [ + -85.0845728029999, + 78.92090761000014 + ], + [ + -85.65650458699997, + 78.84585729000003 + ], + [ + -86.54767442499991, + 78.79591007300019 + ], + [ + -86.89590854599999, + 78.72196279000013 + ], + [ + -87.17141222899988, + 78.54074621100017 + ], + [ + -87.49580825699996, + 78.43470467300006 + ], + [ + -87.46662196499994, + 78.1189835290001 + ], + [ + -86.7313991289999, + 78.11452235600018 + ], + [ + -86.41157761899996, + 78.19853998700017 + ], + [ + -86.11910328799996, + 78.05228356000003 + ], + [ + -85.5232093429999, + 78.09680444500015 + ], + [ + -85.18219518199993, + 78.21393239999998 + ], + [ + -84.95171651999993, + 78.22079009300012 + ], + [ + -85.06090687499994, + 78.05556679600005 + ], + [ + -85.68985951799993, + 77.9294096910001 + ], + [ + -85.17682050399986, + 77.77755069500012 + ], + [ + -85.29690959499993, + 77.66773486200003 + ], + [ + -84.92677894199994, + 77.5979928380001 + ], + [ + -84.8594526259999, + 77.53634841300016 + ], + [ + -83.93714460299998, + 77.49416721800014 + ], + [ + -83.40456921499998, + 77.6055975060001 + ], + [ + -83.1241741579999, + 77.78786372300004 + ], + [ + -82.74387127599988, + 77.95498891200009 + ], + [ + -82.53451893699997, + 77.91557046000014 + ], + [ + -82.98024525799997, + 77.67435164900013 + ], + [ + -83.37947360999993, + 77.5120995740001 + ], + [ + -83.82789789399988, + 77.44422105400008 + ], + [ + -83.95103903099988, + 77.38427480100017 + ], + [ + -84.61992357499997, + 77.37602989800018 + ], + [ + -85.41132497599995, + 77.38780013600007 + ], + [ + -85.73114578899992, + 77.45349074400002 + ], + [ + -85.88468438699988, + 77.63053197500005 + ], + [ + -86.19679860199994, + 77.78932022100014 + ], + [ + -86.81621563199991, + 77.88200714800007 + ], + [ + -87.28336798499998, + 77.89888572900014 + ], + [ + -88.09691002099993, + 77.82070971600018 + ], + [ + -88.22815916299993, + 77.65954934500019 + ], + [ + -87.71095909299993, + 77.53192747800017 + ], + [ + -87.71565017299997, + 77.35563602000013 + ], + [ + -87.23151718899999, + 77.30178370900012 + ], + [ + -87.07573747899988, + 77.17869020400013 + ], + [ + -87.69728581599998, + 77.1349777370001 + ], + [ + -88.39732710599998, + 77.11873753200013 + ], + [ + -88.71984303399995, + 77.00010213700006 + ], + [ + -89.5268308759999, + 76.8489519060002 + ], + [ + -89.41035131699988, + 76.67488262000012 + ], + [ + -89.65196151299995, + 76.57177223000008 + ], + [ + -89.39830393699998, + 76.53297988800006 + ], + [ + -89.23079565299992, + 76.436134804 + ], + [ + -88.8753936359999, + 76.4068279600001 + ], + [ + -88.73347404699996, + 76.59253003100008 + ], + [ + -88.6993398429999, + 76.7194453680001 + ], + [ + -88.52618311399988, + 76.72847178700005 + ], + [ + -88.33327165199995, + 76.51501806300007 + ], + [ + -88.32588326299998, + 76.383339105 + ], + [ + -87.60749414999992, + 76.33631903000003 + ], + [ + -87.4121265679999, + 76.41222700600002 + ], + [ + -86.70005655699993, + 76.34448467000016 + ], + [ + -86.60142130899993, + 76.45120111200015 + ], + [ + -86.30203840299998, + 76.37469729500015 + ], + [ + -85.69812580199988, + 76.34567535800005 + ], + [ + -85.23405960299988, + 76.2805816340001 + ], + [ + -84.38822205199989, + 76.32134753800011 + ], + [ + -84.94083245899992, + 76.4149969180001 + ], + [ + -84.21835455099989, + 76.44602474700002 + ], + [ + -84.03399256299997, + 76.5282917460001 + ], + [ + -83.70123496399998, + 76.42299391500012 + ], + [ + -83.30822132599997, + 76.40488915400005 + ], + [ + -83.04488447799997, + 76.43109788400017 + ], + [ + -82.7779408479999, + 76.3762121060002 + ], + [ + -82.2752259159999, + 76.39032667200007 + ], + [ + -82.09831447499982, + 76.51793085000014 + ], + [ + -81.77461854499995, + 76.46563892300003 + ], + [ + -81.47177839999995, + 76.465153225 + ], + [ + -81.27977891999996, + 76.53108097400013 + ], + [ + -80.76090975099999, + 76.41602913100013 + ], + [ + -81.10629295499996, + 76.21238219100013 + ], + [ + -81.0823058119999, + 76.14231201100017 + ], + [ + -80.22419302399999, + 76.24019253600017 + ], + [ + -80.05528470199994, + 76.22682246100015 + ], + [ + -79.57546899599993, + 76.30667808100009 + ], + [ + -79.25174850999997, + 76.31706608500019 + ], + [ + -78.97725689199996, + 76.41729381800008 + ], + [ + -78.79357023599982, + 76.56204244300017 + ], + [ + -78.52637792099995, + 76.45660277200017 + ], + [ + -78.16691079799995, + 76.5195150300001 + ], + [ + -78.05397791899992, + 76.62380017000004 + ], + [ + -77.80512281399996, + 76.64911721300018 + ], + [ + -77.80162476899994, + 76.84394603600003 + ], + [ + -77.88531636499994, + 76.94258219500006 + ], + [ + -78.09013142399988, + 77.01529180200015 + ], + [ + -78.39526747099995, + 76.9973213240001 + ], + [ + -78.73344782599997, + 76.82837784600014 + ], + [ + -78.87091545699997, + 76.92139285800016 + ], + [ + -79.346652367, + 76.91553483500019 + ], + [ + -79.35433736499988, + 76.97214403600003 + ], + [ + -78.97708081099995, + 77.09648018000007 + ], + [ + -79.2529379579999, + 77.21534316000003 + ], + [ + -79.63316211399996, + 77.24278220500008 + ], + [ + -80.13893955699996, + 77.1932148160002 + ], + [ + -81.09237171599995, + 77.28418521300006 + ], + [ + -81.67499366699997, + 77.17709200500013 + ], + [ + -81.90518643099989, + 77.18760757200005 + ], + [ + -81.74306575499998, + 77.29452720200004 + ], + [ + -81.18026939399994, + 77.31716295500019 + ], + [ + -81.77293150299988, + 77.44157048300008 + ], + [ + -81.66925657799999, + 77.53588950699998 + ], + [ + -81.2970447209999, + 77.42159675700015 + ], + [ + -80.76920402399998, + 77.3286421580001 + ], + [ + -80.12668007699995, + 77.28232819600015 + ], + [ + -79.66130038299997, + 77.31376193400007 + ], + [ + -79.15597816499996, + 77.29048505900016 + ], + [ + -78.71968078699996, + 77.31154465600008 + ], + [ + -78.32830802899997, + 77.37070608700014 + ], + [ + -78.01974903199994, + 77.46149890900017 + ], + [ + -77.94122737799995, + 77.55003676500013 + ], + [ + -77.70516183499996, + 77.59546788700015 + ], + [ + -77.98974093699997, + 77.69368135600013 + ], + [ + -77.97497259599999, + 77.797369823 + ], + [ + -78.39525530999992, + 77.89843231700013 + ], + [ + -78.06135519699995, + 77.95822837200006 + ], + [ + -77.18605095599992, + 77.9384065480001 + ], + [ + -76.95581224499989, + 77.88933346300007 + ], + [ + -76.25978817499998, + 78.00338569600018 + ], + [ + -75.88079327199995, + 77.95903429300006 + ], + [ + -75.64275468799997, + 78.03962052400016 + ], + [ + -75.60447693199995, + 78.12837104400012 + ], + [ + -76.11941238199995, + 78.12920288300012 + ], + [ + -76.63406035699995, + 78.16220494900011 + ], + [ + -76.63269095099997, + 78.24813943700013 + ], + [ + -75.61608965799996, + 78.2010231660002 + ], + [ + -75.08349527699994, + 78.36285131800008 + ], + [ + -75.81864416199988, + 78.5006688700002 + ], + [ + -75.05099416699994, + 78.52680314100007 + ], + [ + -74.66519710299997, + 78.58314372400014 + ], + [ + -74.81171591899982, + 78.635573986 + ], + [ + -74.7419112639999, + 78.8142611610001 + ], + [ + -75.3394156029999, + 78.88926682000016 + ], + [ + -75.83065710099999, + 78.92096384600018 + ], + [ + -75.72866539199998, + 78.96910683800007 + ], + [ + -76.76046941199996, + 79.0215647340001 + ], + [ + -77.20304079299996, + 79.06078951000018 + ], + [ + -76.18120408399994, + 79.12410665000004 + ], + [ + -77.12546335499997, + 79.18775793300011 + ], + [ + -76.11655427099993, + 79.19759034000015 + ], + [ + -75.84479889099998, + 79.15410188800013 + ], + [ + -75.74217845899994, + 79.07403413800017 + ], + [ + -75.12921729999988, + 79.03044726900009 + ], + [ + -74.45542784499992, + 79.029210239 + ], + [ + -74.58945893099991, + 79.14293127700017 + ], + [ + -74.91481647599988, + 79.23979856000017 + ], + [ + -75.95661538799993, + 79.22948965000006 + ], + [ + -76.08789477799996, + 79.25964050100009 + ], + [ + -76.75798840699986, + 79.28107943000003 + ], + [ + -76.86390666199998, + 79.34523255100004 + ], + [ + -76.09299331599993, + 79.3320231570001 + ], + [ + -75.88443419999993, + 79.41658251000013 + ], + [ + -74.91466782599991, + 79.37238008100002 + ], + [ + -74.6449593029999, + 79.43370343700013 + ], + [ + -74.06168183999989, + 79.43585720800007 + ], + [ + -73.12085103499999, + 79.54739331000007 + ], + [ + -73.14672189199985, + 79.62912796299997 + ], + [ + -73.38810065499996, + 79.7399119050001 + ], + [ + -74.00079636199996, + 79.7895607750001 + ], + [ + -74.67084937899995, + 79.78444913100009 + ], + [ + -74.7455044219999, + 79.84556919600016 + ], + [ + -74.24544643599995, + 79.88305638999998 + ], + [ + -73.12819515799993, + 79.8115932400001 + ], + [ + -72.94176117099994, + 79.70172822300003 + ], + [ + -72.70817122099999, + 79.67172364599998 + ], + [ + -71.4674923209999, + 79.72471764900007 + ], + [ + -71.10510752499988, + 79.78512836100015 + ], + [ + -70.88140305299999, + 79.87648856800013 + ], + [ + -71.27044369499998, + 79.94941056800019 + ], + [ + -70.70918395299998, + 79.98407674100008 + ], + [ + -70.49265479399998, + 80.04794880300005 + ], + [ + -70.62587339099997, + 80.12814126300015 + ], + [ + -71.3658953179999, + 80.07054515600015 + ], + [ + -71.67695474299995, + 80.10327469800012 + ], + [ + -70.74334604699993, + 80.1991196100002 + ], + [ + -70.0869446349999, + 80.19648897700006 + ], + [ + -69.82956316199994, + 80.34388566000007 + ], + [ + -69.38120853099997, + 80.39833502800019 + ], + [ + -68.91107129999995, + 80.61669303000008 + ], + [ + -68.25361308099997, + 80.76329163300011 + ], + [ + -66.58730291299997, + 81.05638814600007 + ], + [ + -66.12645320799999, + 81.21036657700006 + ], + [ + -65.53876013399997, + 81.24702521700004 + ], + [ + -64.77368327499994, + 81.37004538700006 + ], + [ + -64.46004214899995, + 81.48072907300008 + ], + [ + -64.54075614099992, + 81.54745277500007 + ], + [ + -65.15037291099992, + 81.52587643400017 + ], + [ + -66.60726657799995, + 81.40993904300007 + ], + [ + -67.64755037499992, + 81.33665039900012 + ], + [ + -68.17195981999993, + 81.27877905200006 + ], + [ + -68.53830935499991, + 81.30239761700017 + ], + [ + -66.66931127699996, + 81.50753713200015 + ], + [ + -67.14686496999991, + 81.56467556500013 + ], + [ + -66.78793243199988, + 81.62204486900009 + ], + [ + -65.85072523299993, + 81.62853013200015 + ], + [ + -65.7891109599999, + 81.69557323300018 + ], + [ + -64.95650620999993, + 81.75091762100016 + ], + [ + -64.18363376299993, + 81.74444079500017 + ], + [ + -63.504018732999896, + 81.86032378300013 + ], + [ + -62.35276283099995, + 82.00453132900014 + ], + [ + -61.173492875999955, + 82.24611561400019 + ], + [ + -61.135980860999894, + 82.35634884100011 + ], + [ + -61.71955069199993, + 82.48814839900001 + ], + [ + -62.33235563099993, + 82.52989146800019 + ], + [ + -62.88724184499989, + 82.51410696700009 + ], + [ + -63.73315328499996, + 82.71031542400004 + ], + [ + -63.45586441699999, + 82.76584233100004 + ], + [ + -63.97133310199996, + 82.83720250900018 + ], + [ + -64.52895798199995, + 82.77760870200007 + ], + [ + -64.67758884999984, + 82.89835420100013 + ], + [ + -65.75667070499986, + 82.85099892800014 + ], + [ + -67.3651698299999, + 82.67857599100017 + ], + [ + -68.3916866209999, + 82.68489534400015 + ], + [ + -67.01113841599988, + 82.79992372600009 + ], + [ + -66.37590446499996, + 82.93129929500003 + ], + [ + -67.30715183399991, + 82.93671429500006 + ], + [ + -67.95588255899997, + 82.96368585100004 + ] + ] + ], + [ + [ + [ + -71.0962591309999, + 62.83507856099999 + ], + [ + -70.82269066099997, + 62.772207403000095 + ], + [ + -70.86681985799993, + 62.73329759900014 + ], + [ + -70.71612415299984, + 62.56467845200012 + ], + [ + -70.36790909099994, + 62.52198899900003 + ], + [ + -70.1778531949999, + 62.59016123400005 + ], + [ + -70.34477710699991, + 62.71610207300006 + ], + [ + -70.77514854699996, + 62.83946869400006 + ], + [ + -71.06143071899999, + 62.875353100000154 + ], + [ + -71.0962591309999, + 62.83507856099999 + ] + ] + ], + [ + [ + [ + -70.1433406349999, + 77.414908652 + ], + [ + -70.72694355299984, + 77.46380113200013 + ], + [ + -71.29137454299996, + 77.45325602700007 + ], + [ + -71.04638659999989, + 77.36934211200014 + ], + [ + -70.1433406349999, + 77.414908652 + ] + ] + ], + [ + [ + [ + -66.96085353399997, + 75.97002629100007 + ], + [ + -67.40790552599987, + 76.04730106800008 + ], + [ + -68.03833059199991, + 76.1081189840001 + ], + [ + -68.20642848699987, + 76.21441911800014 + ], + [ + -68.65719550599994, + 76.24303141500013 + ], + [ + -68.2360615319999, + 76.30719019000009 + ], + [ + -68.06981654099997, + 76.3969793170001 + ], + [ + -68.25129664699995, + 76.44294232100009 + ], + [ + -67.79344960299994, + 76.57395515600018 + ], + [ + -66.96427955299993, + 76.61589719300014 + ], + [ + -66.98705251399997, + 76.69094422800003 + ], + [ + -67.21844450599997, + 76.75239598400009 + ], + [ + -67.31349947999985, + 76.93297302400015 + ], + [ + -67.64436354099996, + 76.87583258400014 + ], + [ + -67.82596551999984, + 76.79188044800014 + ], + [ + -68.41403163299992, + 76.68706877200015 + ], + [ + -68.76116161499993, + 76.69119618800005 + ], + [ + -69.02394852899988, + 76.73905115600013 + ], + [ + -69.24871060399994, + 76.88768895400005 + ], + [ + -69.16665663399988, + 76.95489320900009 + ], + [ + -69.68328864699998, + 77.04207221100006 + ], + [ + -69.94708256299992, + 77.007790898 + ], + [ + -70.0381465769999, + 76.91259309700013 + ], + [ + -70.53201250299998, + 76.88846025600009 + ], + [ + -70.78335560499994, + 77.02689677500013 + ], + [ + -70.69493054999998, + 77.10549287600008 + ], + [ + -70.21121259299997, + 77.19976849900002 + ], + [ + -69.67735258399989, + 77.21927721100019 + ], + [ + -70.14917762499988, + 77.23961874900016 + ], + [ + -70.91028561499996, + 77.18737619100017 + ], + [ + -71.19388563299992, + 77.13240381400004 + ], + [ + -71.37332155999991, + 77.00461801200004 + ], + [ + -70.88722951399996, + 76.9340412140001 + ], + [ + -70.92250056199998, + 76.86347933500019 + ], + [ + -70.45417764799998, + 76.78431091800019 + ], + [ + -70.08139049199997, + 76.87931928800015 + ], + [ + -70.00805654999982, + 76.7626576130001 + ], + [ + -69.40888961199988, + 76.70125279600012 + ], + [ + -68.75527148399993, + 76.65568659100018 + ], + [ + -68.18083954299993, + 76.68762600100018 + ], + [ + -67.97666962399984, + 76.60485671800012 + ], + [ + -68.39527863299992, + 76.57041480800018 + ], + [ + -68.73444362799995, + 76.58318799000011 + ], + [ + -69.0655516029999, + 76.48068703700011 + ], + [ + -69.61500564099998, + 76.42123503599998 + ], + [ + -69.41000356699993, + 76.31400501300004 + ], + [ + -69.12304659699998, + 76.2787237390001 + ], + [ + -68.50057260399996, + 76.0859315830001 + ], + [ + -67.3497315969999, + 76.00787796000014 + ], + [ + -66.96085353399997, + 75.97002629100007 + ] + ] + ], + [ + [ + [ + -69.61397550499993, + 77.21748449000012 + ], + [ + -69.00623354499999, + 77.13517285900008 + ], + [ + -69.00132761699996, + 77.02689677500013 + ], + [ + -68.42780259699998, + 77.1236970280001 + ], + [ + -67.92944363499998, + 77.15709287700008 + ], + [ + -67.61383061399988, + 77.12260604000011 + ], + [ + -67.41539760599989, + 77.04404849600007 + ], + [ + -66.96755251899992, + 77.02290665400017 + ], + [ + -66.56858851199996, + 77.06180371400012 + ], + [ + -66.01754761199987, + 77.16157250200007 + ], + [ + -65.47576150699996, + 77.30371046900018 + ], + [ + -65.30818161399998, + 77.44648043200016 + ], + [ + -65.72940057899996, + 77.59543188000009 + ], + [ + -66.5377504839999, + 77.7227291850001 + ], + [ + -67.81100449299998, + 77.70312810500008 + ], + [ + -67.9989165369999, + 77.63487024400007 + ], + [ + -68.5067906349999, + 77.74951020400005 + ], + [ + -69.35034956199996, + 77.82452052600019 + ], + [ + -69.58613551599996, + 77.92494561700005 + ], + [ + -69.49456054199987, + 77.97852207200015 + ], + [ + -70.06063052899987, + 78.02400429000016 + ], + [ + -70.33945453899997, + 77.98065124300001 + ], + [ + -70.70004250499989, + 78.04690934900003 + ], + [ + -71.01764656299997, + 78.02842909700007 + ], + [ + -71.29553950999991, + 77.94673571500016 + ], + [ + -71.43749961399988, + 77.78799537700013 + ], + [ + -71.20223249899982, + 77.75826979600004 + ], + [ + -70.67028054599996, + 77.77909916000004 + ], + [ + -70.52084361699997, + 77.83771196500015 + ], + [ + -70.06665762099993, + 77.84715786700013 + ], + [ + -70.70861048599994, + 77.69381128400005 + ], + [ + -70.28332562699995, + 77.6557535880001 + ], + [ + -70.28778060799993, + 77.56909342600005 + ], + [ + -69.20666463099991, + 77.44851002600006 + ], + [ + -68.63695555599992, + 77.50797812000013 + ], + [ + -67.58111554299995, + 77.52047553800014 + ], + [ + -67.29777553199995, + 77.55990786600017 + ], + [ + -67.15610460399995, + 77.66742773500016 + ], + [ + -66.80973050199992, + 77.68047483800007 + ], + [ + -66.25139650799991, + 77.60242087900008 + ], + [ + -66.06417060699994, + 77.49712841700011 + ], + [ + -66.10194348699997, + 77.43740149000018 + ], + [ + -66.65666152699993, + 77.414908652 + ], + [ + -66.54526553099998, + 77.3321386990001 + ], + [ + -67.31443758199993, + 77.37851342300007 + ], + [ + -68.35834461499996, + 77.37184444500019 + ], + [ + -69.10166955899996, + 77.27100780300009 + ], + [ + -68.54055763499997, + 77.16516615900014 + ], + [ + -69.61397550499993, + 77.21748449000012 + ] + ] + ], + [ + [ + [ + -67.13044759899998, + 78.79680805200013 + ], + [ + -67.11199953299985, + 78.894440293 + ], + [ + -66.7204136119999, + 78.9510005370002 + ], + [ + -66.21054864399991, + 78.97575280000018 + ], + [ + -65.66873957299993, + 78.95561024900007 + ], + [ + -65.4763415349999, + 78.996864803 + ], + [ + -65.54297649099993, + 79.08553980600004 + ], + [ + -65.89195250399996, + 79.13891844800008 + ], + [ + -67.0066755549999, + 79.11251847000011 + ], + [ + -67.19332863699992, + 79.14615136000003 + ], + [ + -67.73083460699996, + 79.08308240000014 + ], + [ + -68.34055352299998, + 79.06223711000001 + ], + [ + -69.04695852999993, + 78.9722270360001 + ], + [ + -69.00279260599996, + 78.89529491200011 + ], + [ + -69.29499849099989, + 78.81527237900013 + ], + [ + -69.84333052699998, + 78.7994480160001 + ], + [ + -69.97084056499995, + 78.7527829440001 + ], + [ + -70.70029463299988, + 78.69917530900005 + ], + [ + -70.8088754829999, + 78.61498697000019 + ], + [ + -71.31527755099995, + 78.64166153900004 + ], + [ + -71.63500960699997, + 78.62386776400007 + ], + [ + -71.8861235469999, + 78.55942584800005 + ], + [ + -72.55221562399998, + 78.52026928500004 + ], + [ + -72.58555564899996, + 78.4185924410001 + ], + [ + -72.82166262999993, + 78.35080832500006 + ], + [ + -72.65638759299998, + 78.28664066500016 + ], + [ + -71.8355716189999, + 78.376604805 + ], + [ + -69.89682752199997, + 78.32969649000006 + ], + [ + -69.63365956599995, + 78.34629198800008 + ], + [ + -68.86785150799989, + 78.47981537000015 + ], + [ + -68.16154456899989, + 78.56089854900011 + ], + [ + -67.44195549899996, + 78.60606761900016 + ], + [ + -67.02470351999995, + 78.66410861100013 + ], + [ + -66.94494652599991, + 78.71529018800015 + ], + [ + -67.13044759899998, + 78.79680805200013 + ] + ] + ], + [ + [ + [ + -68.4403104729999, + 60.26615271100019 + ], + [ + -68.32458918399982, + 60.20035802900014 + ], + [ + -68.00520809999989, + 60.29470165200007 + ], + [ + -67.87778481199996, + 60.389217701 + ], + [ + -67.84160423099996, + 60.485933003000184 + ], + [ + -68.00298663999996, + 60.58607412500004 + ], + [ + -68.24404811199997, + 60.58063016900013 + ], + [ + -68.4403104729999, + 60.26615271100019 + ] + ] + ], + [ + [ + [ + -68.30355828799992, + 69.58353218200011 + ], + [ + -67.91961494799995, + 69.5196881230001 + ], + [ + -67.71478138399982, + 69.64075525400011 + ], + [ + -67.89196376999996, + 69.7111962800002 + ], + [ + -68.30355828799992, + 69.58353218200011 + ] + ] + ], + [ + [ + [ + -66.55547845499996, + 68.21185534200015 + ], + [ + -66.30994809999993, + 68.14635642400003 + ], + [ + -66.24719347099995, + 68.20910370600018 + ], + [ + -66.39761543199995, + 68.24117854700012 + ], + [ + -66.55547845499996, + 68.21185534200015 + ] + ] + ], + [ + [ + [ + -65.66049580899994, + 61.740634979000106 + ], + [ + -65.69747644799997, + 61.832643816000086 + ], + [ + -65.79898047899991, + 61.85633405400006 + ], + [ + -65.93589206899992, + 61.781121702000064 + ], + [ + -65.66049580899994, + 61.740634979000106 + ] + ] + ], + [ + [ + [ + -65.23028346599989, + 64.69027544400018 + ], + [ + -65.35944596399992, + 64.72771315500006 + ], + [ + -65.62429295999988, + 64.58367643700018 + ], + [ + -65.63314489899983, + 64.51082464000001 + ], + [ + -65.46433005299997, + 64.50281231400004 + ], + [ + -65.26426391399991, + 64.60439994700016 + ], + [ + -65.23028346599989, + 64.69027544400018 + ] + ] + ], + [ + [ + [ + -64.6840906999999, + 61.42356907100009 + ], + [ + -64.62436439599998, + 61.601553150000086 + ], + [ + -64.73322901199998, + 61.65032909000013 + ], + [ + -65.00358206699997, + 61.68804941400009 + ], + [ + -65.39153812199987, + 61.65246528400013 + ], + [ + -65.46887896499993, + 61.610814550999976 + ], + [ + -65.3116681709999, + 61.521882923000135 + ], + [ + -65.16758830399988, + 61.494956188 + ], + [ + -64.93696351199998, + 61.34112814700012 + ], + [ + -64.82300111599994, + 61.30864098000018 + ], + [ + -64.6840906999999, + 61.42356907100009 + ] + ] + ], + [ + [ + [ + -65.00411802399992, + 61.74896412500004 + ], + [ + -64.91852817499989, + 61.707887773000095 + ], + [ + -64.78660777699992, + 61.76131137800019 + ], + [ + -65.02160948399995, + 61.90539588200011 + ], + [ + -65.17617021699994, + 61.93101840300011 + ], + [ + -65.22865687699988, + 61.865636652000035 + ], + [ + -65.12044326899996, + 61.772052642000176 + ], + [ + -65.00411802399992, + 61.74896412500004 + ] + ] + ], + [ + [ + [ + -64.40709787399999, + 60.28442193300015 + ], + [ + -64.46600325899993, + 60.40506956500013 + ], + [ + -64.74398132599998, + 60.50247856700008 + ], + [ + -64.8544273249999, + 60.42693686600012 + ], + [ + -64.7634164399999, + 60.37656663100006 + ], + [ + -64.40709787399999, + 60.28442193300015 + ] + ] + ], + [ + [ + [ + -64.48284151199988, + 62.38866789800005 + ], + [ + -64.35035600999998, + 62.46326525600017 + ], + [ + -64.36319441699993, + 62.527892404000056 + ], + [ + -64.73563104999988, + 62.558172309000156 + ], + [ + -64.93197703799996, + 62.46956053400004 + ], + [ + -64.91343192099993, + 62.420306128 + ], + [ + -64.59975805399989, + 62.36058503300006 + ], + [ + -64.48284151199988, + 62.38866789800005 + ] + ] + ], + [ + [ + [ + -64.72669802799999, + 63.758048527000085 + ], + [ + -64.6661050269999, + 63.77436030600012 + ], + [ + -64.45594581499995, + 63.65812405900016 + ], + [ + -64.36308357799993, + 63.724393571000064 + ], + [ + -64.42259341499994, + 63.77910579000019 + ], + [ + -64.58929825399997, + 63.784627525000076 + ], + [ + -64.52837210599995, + 63.88724542500012 + ], + [ + -64.6163986979999, + 63.91164729400003 + ], + [ + -64.89820544799989, + 63.82693309899997 + ], + [ + -64.72669802799999, + 63.758048527000085 + ] + ] + ], + [ + [ + [ + -64.1049353969999, + 59.693642595000085 + ], + [ + -63.935758182999905, + 59.75570949300004 + ], + [ + -64.10913311299998, + 59.85834261500008 + ], + [ + -64.19721367099993, + 59.76774934600013 + ], + [ + -64.1049353969999, + 59.693642595000085 + ] + ] + ], + [ + [ + [ + -64.35024635199994, + 63.66973576200019 + ], + [ + -64.4815934689999, + 63.602860129000135 + ], + [ + -64.38957776899997, + 63.45873481899997 + ], + [ + -64.24228846999995, + 63.32696472900005 + ], + [ + -64.07223223699998, + 63.33228567000003 + ], + [ + -64.21181450699999, + 63.440041250000036 + ], + [ + -64.35024635199994, + 63.66973576200019 + ] + ] + ], + [ + [ + [ + -64.21382262899988, + 63.761700087000065 + ], + [ + -64.1655584749999, + 63.860188617000176 + ], + [ + -64.38210324499994, + 63.83702115400007 + ], + [ + -64.21382262899988, + 63.761700087000065 + ] + ] + ], + [ + [ + [ + -63.871318646999896, + 67.58955684900013 + ], + [ + -64.01847219399986, + 67.5004222660001 + ], + [ + -63.74452046099992, + 67.49428572500011 + ], + [ + -63.871318646999896, + 67.58955684900013 + ] + ] + ], + [ + [ + [ + -64.49349509799993, + 60.069518458000175 + ], + [ + -64.36979088899994, + 60.20058515200003 + ], + [ + -64.41598367899996, + 60.27085061100007 + ], + [ + -64.64324491099984, + 60.34306583700004 + ], + [ + -64.81538313599998, + 60.32016913600012 + ], + [ + -64.95752858199995, + 60.25693754700012 + ], + [ + -64.89820077999997, + 60.21166460500007 + ], + [ + -65.1221997799999, + 60.06067009600008 + ], + [ + -65.11161162999986, + 59.963601969000194 + ], + [ + -65.52763803699997, + 59.745267394 + ], + [ + -65.51301418499986, + 59.666156398000055 + ], + [ + -65.38584314899992, + 59.502022172000125 + ], + [ + -65.28638517099989, + 59.45311143500004 + ], + [ + -65.17228735799995, + 59.33864464600009 + ], + [ + -65.25859841899995, + 59.23757063300019 + ], + [ + -65.23188089199994, + 59.070239148000155 + ], + [ + -65.35654418999991, + 59.001194601000066 + ], + [ + -65.25795091599991, + 58.77389352700004 + ], + [ + -65.31281227999995, + 58.68469188100005 + ], + [ + -65.08098527999988, + 58.655137836 + ], + [ + -64.94222349199998, + 58.58908512800008 + ], + [ + -64.87574847699995, + 58.48782787800002 + ], + [ + -64.92094207899999, + 58.409128319000104 + ], + [ + -65.09215631899991, + 58.34813507500013 + ], + [ + -64.93308291699998, + 58.25073901900015 + ], + [ + -64.75755525399995, + 58.102362080000034 + ], + [ + -64.57087613599992, + 57.88921025600018 + ], + [ + -64.52884933899992, + 57.79468399400014 + ], + [ + -64.57475897399996, + 57.68481630200017 + ], + [ + -64.54315022799994, + 57.57941914700018 + ], + [ + -64.62784663899998, + 57.32043623800007 + ], + [ + -64.59454559199992, + 57.23395819100011 + ], + [ + -64.49909051199995, + 57.182457214000124 + ], + [ + -64.37724142499985, + 57.19253230300018 + ], + [ + -64.19912712499996, + 57.274770121000074 + ], + [ + -64.1325839729999, + 57.41628996200018 + ], + [ + -63.70590564299994, + 57.46930362100011 + ], + [ + -63.516087599999935, + 57.56790807300001 + ], + [ + -63.34049750299988, + 57.780986190000135 + ], + [ + -63.21709532099999, + 57.69805174400017 + ], + [ + -62.975079740999945, + 57.67944494900013 + ], + [ + -62.80180218899994, + 57.74462343200008 + ], + [ + -62.7755084879999, + 57.80443234500018 + ], + [ + -62.58383886499996, + 57.715662342000144 + ], + [ + -62.594592929999976, + 57.676925656000094 + ], + [ + -62.392353265999986, + 57.61223036100017 + ], + [ + -62.08956385099998, + 57.67369697700002 + ], + [ + -61.99146648899989, + 57.7340051700001 + ], + [ + -62.18903774799992, + 57.79520323800011 + ], + [ + -62.19848701799998, + 57.88298407700006 + ], + [ + -61.965517471999874, + 57.78422525400009 + ], + [ + -61.88945632299993, + 57.87375798099998 + ], + [ + -62.03549808699995, + 57.90266113000007 + ], + [ + -62.13483872799998, + 57.96881719300006 + ], + [ + -62.21424015199983, + 57.920879049000064 + ], + [ + -62.38994866599995, + 57.9225903090001 + ], + [ + -62.33718565299989, + 58.06151820300005 + ], + [ + -62.50395462699987, + 58.096578990000125 + ], + [ + -62.53184601599986, + 58.1760226630002 + ], + [ + -62.69904838399998, + 58.270711373000154 + ], + [ + -62.62487249299994, + 58.32002237400013 + ], + [ + -62.658852206999825, + 58.39776684500009 + ], + [ + -62.63399229399994, + 58.5013232710001 + ], + [ + -62.81613945799995, + 58.48553596400012 + ], + [ + -63.09694437999991, + 58.400671833000104 + ], + [ + -63.169591459999936, + 58.49915099600008 + ], + [ + -62.90725034199994, + 58.59331309300006 + ], + [ + -62.846226552999894, + 58.66794983300002 + ], + [ + -62.90291515499996, + 58.81511652600017 + ], + [ + -63.09879995199998, + 58.87916388000008 + ], + [ + -63.18653429099999, + 58.98438569500013 + ], + [ + -63.13519061499994, + 59.0513803340001 + ], + [ + -63.389135770999985, + 59.09309265200011 + ], + [ + -63.36290498799991, + 59.18511667400003 + ], + [ + -63.53077180599996, + 59.264558726000075 + ], + [ + -63.53264625999998, + 59.33427939900014 + ], + [ + -63.82008038599997, + 59.398431866000124 + ], + [ + -63.72146630199995, + 59.493544698000164 + ], + [ + -63.94395930099989, + 59.62997832800016 + ], + [ + -63.947730063999984, + 59.68403499100003 + ], + [ + -64.18240443199994, + 59.692057531000046 + ], + [ + -64.26049813599985, + 59.75490509700012 + ], + [ + -64.17083089999988, + 59.805297681000184 + ], + [ + -64.1266254599999, + 59.899592096000106 + ], + [ + -64.16887583499994, + 60.03746530799998 + ], + [ + -64.49349509799993, + 60.069518458000175 + ] + ] + ], + [ + [ + [ + -63.49153096599997, + 67.26811378000002 + ], + [ + -63.486492866999924, + 67.3427525960002 + ], + [ + -63.66443739799996, + 67.34813154699998 + ], + [ + -63.74428309299998, + 67.26733400500012 + ], + [ + -63.49153096599997, + 67.26811378000002 + ] + ] + ], + [ + [ + [ + -62.13722650299991, + 81.181007555 + ], + [ + -63.06334248199994, + 81.21573981500018 + ], + [ + -63.81221758699991, + 81.11461232100004 + ], + [ + -63.948886529999925, + 81.05015515000008 + ], + [ + -64.76082657199993, + 80.98765012500013 + ], + [ + -64.73416859899993, + 80.91209933800013 + ], + [ + -65.03250148899997, + 80.88432640400009 + ], + [ + -65.06333163699998, + 80.79375859900011 + ], + [ + -65.98638151699998, + 80.669299239 + ], + [ + -66.44470951499994, + 80.56457004100014 + ], + [ + -66.71584363099998, + 80.55428527800012 + ], + [ + -66.7886045859999, + 80.45651607700012 + ], + [ + -67.41972350599997, + 80.347896 + ], + [ + -67.50306661399992, + 80.20372072700013 + ], + [ + -67.08222148099998, + 80.13816385100006 + ], + [ + -67.06695551999996, + 80.05925594400009 + ], + [ + -66.38889358299997, + 80.10093009600013 + ], + [ + -66.10583453399994, + 80.02287613700014 + ], + [ + -65.7691576229999, + 80.0114769160001 + ], + [ + -65.22748551099994, + 80.08565508300006 + ], + [ + -64.95111857299992, + 79.95675415300019 + ], + [ + -65.04018350299998, + 79.88954319099997 + ], + [ + -64.19286361499996, + 79.89538722200012 + ], + [ + -62.60400060899997, + 79.95631276200015 + ], + [ + -62.14611852799999, + 80.01213288400004 + ], + [ + -61.608184577999964, + 80.01594044700005 + ], + [ + -61.211540513999864, + 79.97032059800011 + ], + [ + -60.49294251999993, + 79.99665905300003 + ], + [ + -59.61935860999995, + 80.18842308300003 + ], + [ + -59.531166570999915, + 80.27372520900019 + ], + [ + -60.005264617999956, + 80.40196195800007 + ], + [ + -60.77681360899993, + 80.5193858830001 + ], + [ + -61.576396545999955, + 80.70454145399998 + ], + [ + -62.02211363499998, + 80.95571876200017 + ], + [ + -61.67894762199995, + 81.05461097000011 + ], + [ + -61.30538547599997, + 81.00488633500004 + ], + [ + -60.823009629999945, + 80.840461055 + ], + [ + -60.30201751799996, + 80.81035376199998 + ], + [ + -61.03630459099992, + 80.98919977100013 + ], + [ + -61.25111751399993, + 81.1201663380001 + ], + [ + -61.61167564099998, + 81.07405162100008 + ], + [ + -62.13722650299991, + 81.181007555 + ] + ] + ], + [ + [ + [ + -62.7288896259999, + -63.08411187499996 + ], + [ + -62.59861758299991, + -63.06799833599996 + ], + [ + -62.35556049599995, + -62.984108560999914 + ], + [ + -62.26500660499988, + -62.8932695179999 + ], + [ + -62.46854018999994, + -62.90828836399993 + ], + [ + -62.7288896259999, + -63.08411187499996 + ] + ] + ], + [ + [ + [ + -62.37147011099995, + 67.15597430800005 + ], + [ + -62.62711923099994, + 67.12609789600003 + ], + [ + -62.87544336399998, + 67.04960809500011 + ], + [ + -62.767137366999975, + 66.99654463000019 + ], + [ + -62.59151004199998, + 67.08996702900004 + ], + [ + -62.37147011099995, + 67.15597430800005 + ] + ] + ], + [ + [ + [ + -62.12830071399992, + 65.66117607900003 + ], + [ + -62.28013922699989, + 65.73769419500007 + ], + [ + -62.44782275099993, + 65.73829268600014 + ], + [ + -62.46882114899989, + 65.64806498900003 + ], + [ + -62.328633736999905, + 65.59664500700012 + ], + [ + -62.12830071399992, + 65.66117607900003 + ] + ] + ], + [ + [ + [ + -61.42750561399998, + -62.80743463799996 + ], + [ + -61.19361162399986, + -62.75520951399989 + ], + [ + -61.276115534999974, + -62.69436980499995 + ], + [ + -61.47917149799997, + -62.752150454999935 + ], + [ + -61.42750561399998, + -62.80743463799996 + ] + ] + ], + [ + [ + [ + -61.139306949999934, + -62.616996158999825 + ], + [ + -60.86924309799991, + -62.685832398999935 + ], + [ + -60.69306163199991, + -62.62103267799995 + ], + [ + -60.40111558599989, + -62.611313358999894 + ], + [ + -60.2408375039999, + -62.75631575799997 + ], + [ + -59.997222516999955, + -62.68715248399997 + ], + [ + -59.9586184879999, + -62.61436453899995 + ], + [ + -60.12735123099992, + -62.45955319999996 + ], + [ + -60.323615502999985, + -62.5343671519999 + ], + [ + -60.56166859399997, + -62.545475352999915 + ], + [ + -60.687499568999954, + -62.47603061499984 + ], + [ + -60.946945623999966, + -62.600203983999904 + ], + [ + -61.139306949999934, + -62.616996158999825 + ] + ] + ], + [ + [ + [ + -59.71489229999992, + -62.55558830099983 + ], + [ + -59.54222850399992, + -62.49685930899989 + ], + [ + -59.74750550399989, + -62.433807447999925 + ], + [ + -59.958335514999874, + -62.43797258299992 + ], + [ + -59.87111661599988, + -62.52602766199993 + ], + [ + -59.71489229999992, + -62.55558830099983 + ] + ] + ], + [ + [ + [ + -59.68048591599984, + -62.35474709199997 + ], + [ + -59.56195061999989, + -62.43047362999994 + ], + [ + -59.343894569999975, + -62.43658487599998 + ], + [ + -59.335555581999984, + -62.36380464299987 + ], + [ + -59.56027960299991, + -62.31352445499988 + ], + [ + -59.68048591599984, + -62.35474709199997 + ] + ] + ], + [ + [ + [ + -59.03472857399987, + -62.34601991999995 + ], + [ + -58.82417248399992, + -62.310190468999906 + ], + [ + -58.995664039999895, + -62.233744381999884 + ], + [ + -59.19445060099986, + -62.271851811999966 + ], + [ + -59.03472857399987, + -62.34601991999995 + ] + ] + ], + [ + [ + [ + -58.72672252299992, + -62.24201346799998 + ], + [ + -58.43655248699986, + -62.22036300299993 + ], + [ + -58.108894561999875, + -62.134622957999966 + ], + [ + -58.08389251799997, + -62.06212586499993 + ], + [ + -57.9263915279999, + -62.06823711099997 + ], + [ + -57.65861553699989, + -61.964617844999964 + ], + [ + -58.00633169199989, + -61.90625977499997 + ], + [ + -58.22611262799984, + -61.950449410999965 + ], + [ + -58.36083948399994, + -61.93128351899992 + ], + [ + -58.63833663799994, + -61.997395276999896 + ], + [ + -59.00062797299995, + -62.188447720999875 + ], + [ + -58.72672252299992, + -62.24201346799998 + ] + ] + ], + [ + [ + [ + -57.8267357659999, + -64.02371274799992 + ], + [ + -57.88556954199993, + -63.98019271599992 + ], + [ + -57.76669415899988, + -63.89911637899996 + ], + [ + -57.80334337499994, + -63.79803075399997 + ], + [ + -57.94680708099986, + -63.80430611999998 + ], + [ + -58.11257218799989, + -63.85935077099998 + ], + [ + -57.8267357659999, + -64.02371274799992 + ] + ] + ], + [ + [ + [ + -55.210967221999965, + -61.28084985799984 + ], + [ + -54.97447680199997, + -61.151390481999954 + ], + [ + -54.751945521999914, + -61.1373590369999 + ], + [ + -54.6861115399999, + -61.08430293099991 + ], + [ + -55.061111517999905, + -61.10291880199992 + ], + [ + -55.389167473999976, + -61.05680492399989 + ], + [ + -55.49444551899995, + -61.12486145199995 + ], + [ + -55.340003587999945, + -61.248478597999906 + ], + [ + -55.210967221999965, + -61.28084985799984 + ] + ] + ], + [ + [ + [ + -55.79500950299985, + 71.89039928200003 + ], + [ + -55.52639062799989, + 71.822890595 + ], + [ + -55.40998862399988, + 71.88901040000007 + ], + [ + -55.566394601999946, + 71.92900666300011 + ], + [ + -55.79500950299985, + 71.89039928200003 + ] + ] + ], + [ + [ + [ + -55.20499057399991, + 72.24903342600004 + ], + [ + -55.18638258099992, + 72.33402927700013 + ], + [ + -55.650268618999974, + 72.22430463300009 + ], + [ + -55.64999050799992, + 72.17345162600003 + ], + [ + -55.374164537999945, + 72.15846645900018 + ], + [ + -55.20499057399991, + 72.24903342600004 + ] + ] + ], + [ + [ + [ + -55.058055475999936, + 72.78045262600006 + ], + [ + -55.151935473999856, + 72.8443309430001 + ], + [ + -55.51583848299998, + 72.7585094740001 + ], + [ + -55.8155475129999, + 72.65376686500008 + ], + [ + -55.47055055699997, + 72.57516439400013 + ], + [ + -55.058055475999936, + 72.78045262600006 + ] + ] + ], + [ + [ + [ + -55.08777954899995, + 72.96962849300007 + ], + [ + -55.50500151999995, + 73.04351597500005 + ], + [ + -55.68029058499991, + 72.98433856500003 + ], + [ + -55.30583962099996, + 72.91711939000015 + ], + [ + -55.08777954899995, + 72.96962849300007 + ] + ] + ], + [ + [ + [ + -54.83988559999989, + 73.04221091300008 + ], + [ + -54.985706575999984, + 73.10767475 + ], + [ + -55.31672251699996, + 73.18515656000005 + ], + [ + -55.653327510999986, + 73.051008223 + ], + [ + -55.38806558899989, + 73.046017806 + ], + [ + -55.03306147899997, + 72.99462282500008 + ], + [ + -54.83988559999989, + 73.04221091300008 + ] + ] + ], + [ + [ + [ + -55.96721654199996, + 73.81104986700012 + ], + [ + -56.16388348299995, + 73.87716984000014 + ], + [ + -56.61777862799994, + 73.91467936000004 + ], + [ + -56.68860654799988, + 73.83384847600007 + ], + [ + -55.96721654199996, + 73.81104986700012 + ] + ] + ], + [ + [ + [ + -45.131175328999916, + -60.76079446999995 + ], + [ + -45.16211495699997, + -60.67130303399995 + ], + [ + -45.4194485189999, + -60.55928029699999 + ], + [ + -45.741111597999975, + -60.50011193899991 + ], + [ + -45.97888959499994, + -60.52761698699993 + ], + [ + -46.00278455699993, + -60.61956277699994 + ], + [ + -45.79333454199991, + -60.57984194299996 + ], + [ + -45.741394570999944, + -60.628175852999846 + ], + [ + -45.36513076699998, + -60.67363840099989 + ], + [ + -45.131175328999916, + -60.76079446999995 + ] + ] + ], + [ + [ + [ + -45.13889347899993, + 60.33148875000006 + ], + [ + -45.152217519999965, + 60.37454239600004 + ], + [ + -45.35389348699994, + 60.3806534740001 + ], + [ + -45.40277456699988, + 60.17620192400011 + ], + [ + -45.184436549999816, + 60.263988278000056 + ], + [ + -45.13889347899993, + 60.33148875000006 + ] + ] + ], + [ + [ + [ + -47.7722286259999, + 60.787339226000086 + ], + [ + -47.953887601999895, + 60.835673135000036 + ], + [ + -48.139160519999905, + 60.79900499100012 + ], + [ + -48.07639347599991, + 60.69704986700009 + ], + [ + -47.84222053499997, + 60.704557035 + ], + [ + -47.7722286259999, + 60.787339226000086 + ] + ] + ], + [ + [ + [ + -44.69071948599998, + 61.07799295 + ], + [ + -44.75693853299998, + 61.22581066300006 + ], + [ + -44.83290858299995, + 61.274327633000155 + ], + [ + -44.962306559999945, + 61.46995354200004 + ], + [ + -45.16003750099992, + 61.57852399799998 + ], + [ + -45.267936566999936, + 61.58170208100012 + ], + [ + -45.62905158699988, + 61.51064617300017 + ], + [ + -45.95511650599991, + 61.520866563000084 + ], + [ + -46.0665545789999, + 61.39535778900017 + ], + [ + -46.232219542999985, + 61.30020390900012 + ], + [ + -46.24063447099991, + 61.20758304100019 + ], + [ + -46.527763604999905, + 61.113379334000115 + ], + [ + -46.60344347299997, + 61.04567769600004 + ], + [ + -46.71897560399992, + 61.02633578400014 + ], + [ + -47.23723957399994, + 61.10939323600019 + ], + [ + -47.410404496999945, + 61.07079758900005 + ], + [ + -47.56881760599998, + 61.07793880300005 + ], + [ + -47.55754059299994, + 61.15374792100005 + ], + [ + -47.82778153399988, + 61.15179477000004 + ], + [ + -47.87916947299993, + 61.030394972000124 + ], + [ + -47.72999556899998, + 60.97094766500004 + ], + [ + -48.01805459199994, + 60.91011617000004 + ], + [ + -48.19249758699988, + 60.80900024300007 + ], + [ + -47.9305575809999, + 60.83455934799997 + ], + [ + -47.67193546699997, + 60.80817227800003 + ], + [ + -47.44778459999998, + 60.81844949700013 + ], + [ + -47.29083647999988, + 60.944568474000164 + ], + [ + -47.23277252199989, + 60.896230709 + ], + [ + -47.04250348799985, + 60.97206178700003 + ], + [ + -46.91471852399991, + 60.92761875700006 + ], + [ + -47.05500056999995, + 60.86900762900018 + ], + [ + -46.86721459099988, + 60.79539959900006 + ], + [ + -46.71666353899985, + 60.85150487400017 + ], + [ + -46.54611561399986, + 60.980675869000095 + ], + [ + -46.26333651999988, + 61.04373560900018 + ], + [ + -46.22943155399997, + 60.97289360700012 + ], + [ + -45.71000249899993, + 61.16901840700001 + ], + [ + -45.69639246799994, + 61.06624353400008 + ], + [ + -45.953052545999924, + 61.02374158500004 + ], + [ + -46.105838547999895, + 60.96623234100019 + ], + [ + -46.006664539999974, + 60.91039109600007 + ], + [ + -45.65416360099994, + 60.99457340000009 + ], + [ + -45.48278050299996, + 61.10096590300003 + ], + [ + -45.37388650499997, + 61.08846027100003 + ], + [ + -45.48971552199998, + 60.98734819900011 + ], + [ + -45.72972159699992, + 60.93095291100008 + ], + [ + -46.17666646799995, + 60.72872005000005 + ], + [ + -45.895549504999906, + 60.765671671000064 + ], + [ + -45.806949602999964, + 60.744273678000184 + ], + [ + -45.806388518999825, + 60.627886258000046 + ], + [ + -45.58750148699994, + 60.490101851000134 + ], + [ + -45.463611593999985, + 60.615106538000134 + ], + [ + -45.394172554999955, + 60.511220559000094 + ], + [ + -45.222770513999876, + 60.43232254300017 + ], + [ + -44.94222251499997, + 60.47926757100004 + ], + [ + -44.89111352499998, + 60.43426781500017 + ], + [ + -44.92277146999987, + 60.3259374160001 + ], + [ + -45.10333660799995, + 60.2675973580001 + ], + [ + -45.077777502999936, + 60.12314481200008 + ], + [ + -44.76111255299992, + 59.990639831000124 + ], + [ + -44.551944505999984, + 60.00453333800016 + ], + [ + -44.463890601999935, + 60.141203455000095 + ], + [ + -44.31695550399985, + 60.146197728 + ], + [ + -44.223609600999964, + 60.233149077000064 + ], + [ + -44.09638555399994, + 60.18231317000004 + ], + [ + -43.73167050599994, + 60.16091920000002 + ], + [ + -43.38444161699988, + 60.10175888900011 + ], + [ + -43.13750454699988, + 60.077588162000154 + ], + [ + -43.08861156399996, + 60.11176134900012 + ], + [ + -43.11583749499994, + 60.28454305200012 + ], + [ + -43.36583747999998, + 60.38481995100011 + ], + [ + -43.432887508999954, + 60.23755527600008 + ], + [ + -43.519725533999974, + 60.22436752500005 + ], + [ + -43.8869055319999, + 60.35183665900013 + ], + [ + -43.98778961599993, + 60.43549978700014 + ], + [ + -44.136753469999974, + 60.49085018800014 + ], + [ + -44.41785048399993, + 60.529299319000074 + ], + [ + -44.57030858599995, + 60.64151271800006 + ], + [ + -44.43947545899988, + 60.84340644700006 + ], + [ + -44.69122659099986, + 60.88367914400004 + ], + [ + -44.86402555999996, + 60.877457928000126 + ], + [ + -44.894794520999824, + 60.95777500100013 + ], + [ + -44.69071948599998, + 61.07799295 + ] + ] + ], + [ + [ + [ + -46.279163564999976, + 60.865395531000104 + ], + [ + -46.4561115759999, + 60.88872639100015 + ], + [ + -46.83778354899994, + 60.76955467100004 + ], + [ + -46.75361247699993, + 60.74845088300003 + ], + [ + -46.279163564999976, + 60.865395531000104 + ] + ] + ], + [ + [ + [ + -50.076442476999944, + 65.45847479600019 + ], + [ + -49.89693060999997, + 65.60820894600005 + ], + [ + -50.339107518999924, + 65.73585544100018 + ], + [ + -50.738048558999935, + 65.89717925000019 + ], + [ + -51.04253762099984, + 65.90602165400009 + ], + [ + -51.67644151299993, + 65.87673126100003 + ], + [ + -51.91421548599993, + 65.81360195200011 + ], + [ + -52.08253449599988, + 65.71754333000018 + ], + [ + -52.46973450199994, + 65.6425128910002 + ], + [ + -52.60416748799997, + 65.52504420600008 + ], + [ + -52.45167552399994, + 65.29335867900011 + ], + [ + -52.19083756999993, + 65.27364360400003 + ], + [ + -52.21720854599988, + 65.10917658200009 + ], + [ + -52.28527462899996, + 65.08251861000014 + ], + [ + -52.015838518999885, + 64.960563595 + ], + [ + -52.21138748199991, + 64.911398368 + ], + [ + -51.87748749499997, + 64.83307065700012 + ], + [ + -51.80778157699996, + 64.93445547500005 + ], + [ + -51.64555755199996, + 64.86139193400015 + ], + [ + -51.859996474999946, + 64.82390018400008 + ], + [ + -52.15278255599992, + 64.67554703500019 + ], + [ + -52.025562531999924, + 64.583882877 + ], + [ + -52.11555852399994, + 64.44665435899998 + ], + [ + -52.02527251799995, + 64.36052913000009 + ], + [ + -52.07361950399991, + 64.32054946300019 + ], + [ + -51.984996467999906, + 64.19832052800012 + ], + [ + -51.82388656599994, + 64.21942465100005 + ], + [ + -51.546947478999925, + 64.453886432 + ], + [ + -51.44277148599997, + 64.51582534400006 + ], + [ + -51.41860562099993, + 64.6088778800002 + ], + [ + -51.2952764769999, + 64.72889365800012 + ], + [ + -51.14695350299991, + 64.719447924 + ], + [ + -51.210548511999946, + 64.61748408300002 + ], + [ + -51.03332859099993, + 64.61998624900014 + ], + [ + -50.733882585999936, + 64.762510454 + ], + [ + -50.37360357599988, + 64.756392 + ], + [ + -50.10388952199992, + 64.65722017200005 + ], + [ + -50.06806157999989, + 64.531099854 + ], + [ + -49.77472346699989, + 64.42414609900015 + ], + [ + -49.796394542999906, + 64.37998520400015 + ], + [ + -50.130824600999915, + 64.4733275860001 + ], + [ + -50.25500148999993, + 64.6341632320001 + ], + [ + -50.48500460199989, + 64.71027761900001 + ], + [ + -50.79555562299993, + 64.65055169700014 + ], + [ + -50.573890493999954, + 64.44665435899998 + ], + [ + -50.90222154399993, + 64.39887684000007 + ], + [ + -51.03332859099993, + 64.24052860700004 + ], + [ + -51.23110948799996, + 64.17524850100011 + ], + [ + -51.41014459299993, + 64.21321416400019 + ], + [ + -51.617504495999924, + 64.21498425400011 + ], + [ + -51.6422195429999, + 64.11302058100011 + ], + [ + -51.44583155099991, + 64.07636685400007 + ], + [ + -51.64999761399997, + 64.01081182200011 + ], + [ + -51.488609599999904, + 63.967745771000125 + ], + [ + -51.37972247499988, + 63.894695640000066 + ], + [ + -51.55943249099988, + 63.707465213000035 + ], + [ + -51.37665955999995, + 63.618010022000135 + ], + [ + -51.38805056699988, + 63.55939822300013 + ], + [ + -51.14056062599997, + 63.484398127000134 + ], + [ + -51.17082952199996, + 63.398830965000116 + ], + [ + -51.05416851699994, + 63.367441911000185 + ], + [ + -51.09583646699997, + 63.29411249600008 + ], + [ + -50.97416660399995, + 63.2557808790001 + ], + [ + -51.05943654299989, + 63.18243654400004 + ], + [ + -50.90499846899985, + 63.13577231000016 + ], + [ + -50.78276852699992, + 63.20244548800002 + ], + [ + -50.551391621999926, + 63.22243901000019 + ], + [ + -50.46721250299993, + 63.179388381000194 + ], + [ + -50.51278356999984, + 62.97297714200016 + ], + [ + -50.323337470999945, + 62.930479217000084 + ], + [ + -50.3172305839999, + 62.74130402100019 + ], + [ + -50.03750652499997, + 62.79853045900006 + ], + [ + -50.113616552999986, + 62.697689123000146 + ], + [ + -50.22360254599988, + 62.667970917000105 + ], + [ + -50.30611047999997, + 62.484899926000196 + ], + [ + -50.20610448499991, + 62.40489868300017 + ], + [ + -49.9999995199999, + 62.30628441900012 + ], + [ + -49.79944656099991, + 62.25406633500006 + ], + [ + -49.536113481999905, + 62.24907273300005 + ], + [ + -49.638336490999905, + 62.1490588580001 + ], + [ + -49.36277052799994, + 62.157119232000184 + ], + [ + -49.300552498999934, + 62.129336239999986 + ], + [ + -49.696105573999944, + 62.01766716100008 + ], + [ + -49.60221853499996, + 61.98127763200006 + ], + [ + -49.40472061199989, + 61.98182664600017 + ], + [ + -49.15417060599998, + 62.02071918000013 + ], + [ + -49.15416758899994, + 61.96515990200015 + ], + [ + -49.39083850399987, + 61.94237705100005 + ], + [ + -49.381946477999975, + 61.867376955000054 + ], + [ + -49.214717618999885, + 61.88183171500003 + ], + [ + -49.00083961299998, + 61.952387391 + ], + [ + -48.95139359299992, + 61.87682235400007 + ], + [ + -49.12388947199997, + 61.80515741700003 + ], + [ + -49.14444759799994, + 61.72459106700012 + ], + [ + -49.038059621999935, + 61.61792380500009 + ], + [ + -49.1605566099999, + 61.595698853000044 + ], + [ + -49.09833556399997, + 61.487089505000085 + ], + [ + -48.99638748099994, + 61.45237082400007 + ], + [ + -48.53111256199986, + 61.541260572 + ], + [ + -48.34416561099994, + 61.60320199800009 + ], + [ + -48.24472455499989, + 61.52736287300007 + ], + [ + -48.83167654599998, + 61.46014135100006 + ], + [ + -48.67666246699997, + 61.398199589000114 + ], + [ + -48.484451512999954, + 61.370686662000196 + ], + [ + -48.57778148999989, + 61.28319300400011 + ], + [ + -48.54084059899998, + 61.18956949300008 + ], + [ + -48.21999760599988, + 61.191515435000156 + ], + [ + -48.07556148799989, + 61.08401216300007 + ], + [ + -47.87277257199992, + 61.130400968 + ], + [ + -47.69367259099994, + 61.21071921400005 + ], + [ + -47.70911758899996, + 61.27670792599997 + ], + [ + -48.04138561899998, + 61.43940737200006 + ], + [ + -48.08301149099992, + 61.50823537000008 + ], + [ + -47.92448455599998, + 61.62292897500015 + ], + [ + -47.926025485999844, + 61.68059814500003 + ], + [ + -48.09761058699996, + 61.72108106100012 + ], + [ + -48.28701058599995, + 61.66994273400013 + ], + [ + -48.30276454099993, + 61.806450410000195 + ], + [ + -48.4550935609999, + 61.86057872900017 + ], + [ + -48.45485350399997, + 61.94155311000003 + ], + [ + -48.819400577999886, + 62.104119787 + ], + [ + -48.91611852099982, + 62.210504243000116 + ], + [ + -49.096126596999966, + 62.29216895900015 + ], + [ + -49.08849755599988, + 62.35294748000007 + ], + [ + -49.31483861399994, + 62.52944186200017 + ], + [ + -49.2560196149999, + 62.65547349999997 + ], + [ + -49.480071574999954, + 62.59566778200002 + ], + [ + -49.776660524999954, + 62.566450647000124 + ], + [ + -49.84483758399995, + 62.46186897000007 + ], + [ + -49.98197960199991, + 62.41932226200015 + ], + [ + -50.149307534999934, + 62.46414314800012 + ], + [ + -50.159732610999924, + 62.572496849000174 + ], + [ + -49.97780960499995, + 62.64750113600007 + ], + [ + -49.95217556599994, + 62.72338233800019 + ], + [ + -49.71943257799984, + 62.86698143900003 + ], + [ + -49.555419519999816, + 63.04996475500002 + ], + [ + -49.597801606999894, + 63.175371103000145 + ], + [ + -49.49486948899994, + 63.25845101800019 + ], + [ + -49.45151862099988, + 63.45858672700018 + ], + [ + -49.53096749699989, + 63.60558552700019 + ], + [ + -49.63491851899994, + 63.680073992000075 + ], + [ + -49.81968349299996, + 63.699716647 + ], + [ + -49.8717724949999, + 63.79543194600012 + ], + [ + -49.737384602999896, + 63.8554559280002 + ], + [ + -49.77914860899983, + 63.94502075500009 + ], + [ + -49.63920552699989, + 63.9925501690002 + ], + [ + -49.5754546149999, + 64.12350315700007 + ], + [ + -49.30124651999989, + 64.18266464099997 + ], + [ + -49.26447259599996, + 64.22230886400007 + ], + [ + -49.327556475999984, + 64.57889246000002 + ], + [ + -49.483898583999974, + 64.7541786750001 + ], + [ + -49.520580474999974, + 64.8719593350001 + ], + [ + -49.705932516999894, + 64.9571152800001 + ], + [ + -49.832366485999955, + 65.10781066700014 + ], + [ + -49.67491947499991, + 65.17588295299998 + ], + [ + -49.64218562899998, + 65.28472230099999 + ], + [ + -50.14471056399998, + 65.41171919800018 + ], + [ + -50.076442476999944, + 65.45847479600019 + ] + ] + ], + [ + [ + [ + -50.81305653399994, + 64.4894263720002 + ], + [ + -50.824455586999875, + 64.54443697100015 + ], + [ + -50.99638753199997, + 64.55748357000004 + ], + [ + -51.202503560999844, + 64.31943534099997 + ], + [ + -51.13472749199997, + 64.26137339500008 + ], + [ + -50.97111156799997, + 64.4160889100001 + ], + [ + -50.81305653399994, + 64.4894263720002 + ] + ] + ], + [ + [ + [ + -52.99500255799995, + 65.54726211700012 + ], + [ + -52.85194358699994, + 65.64727314100008 + ], + [ + -53.16583261799991, + 65.63004514500017 + ], + [ + -53.16777755499999, + 65.55420535000002 + ], + [ + -52.99500255799995, + 65.54726211700012 + ] + ] + ], + [ + [ + [ + -52.744163543999946, + 65.63366227200004 + ], + [ + -52.58794347699995, + 65.67518337000001 + ], + [ + -52.5355916179999, + 65.74639166100008 + ], + [ + -52.19790250799997, + 65.84861517300016 + ], + [ + -52.00904448299997, + 65.93370205200011 + ], + [ + -52.19582748399995, + 65.94700077900012 + ], + [ + -52.32000353599989, + 65.86726960100015 + ], + [ + -52.68722158799994, + 65.93532830800007 + ], + [ + -53.05471456599986, + 65.8464407400001 + ], + [ + -53.11583355999994, + 65.7406007720001 + ], + [ + -53.059169546999954, + 65.65533033000014 + ], + [ + -52.87916549399995, + 65.68504082400011 + ], + [ + -52.744163543999946, + 65.63366227200004 + ] + ] + ], + [ + [ + [ + -52.10931350299995, + 66.05683925000011 + ], + [ + -52.287399608999976, + 66.02861687900008 + ], + [ + -52.50570258899995, + 66.06079148500015 + ], + [ + -52.756847542999935, + 66.03832932600017 + ], + [ + -52.86029447699997, + 66.09439336100002 + ], + [ + -53.30805557799994, + 66.09367620600011 + ], + [ + -53.46221554099998, + 66.03256240900004 + ], + [ + -53.38527654299992, + 65.93172610200008 + ], + [ + -53.129997466999896, + 65.94449878100005 + ], + [ + -53.16277355899996, + 65.854223337 + ], + [ + -52.60972251099997, + 65.98200696000009 + ], + [ + -52.505565628999875, + 65.90033755100012 + ], + [ + -52.31750857899988, + 65.8975604580001 + ], + [ + -52.17499962799991, + 65.99728130200003 + ], + [ + -51.9219355539999, + 66.03340143700018 + ], + [ + -51.78968454499994, + 65.97650507800017 + ], + [ + -51.57269651799993, + 66.14023365499997 + ], + [ + -51.71124250399998, + 66.16609065300014 + ], + [ + -52.10931350299995, + 66.05683925000011 + ] + ] + ], + [ + [ + [ + -50.4537885499999, + 68.18926767200014 + ], + [ + -50.68709949599992, + 68.23700713700009 + ], + [ + -50.773803578999946, + 68.35861078200008 + ], + [ + -51.068458488999966, + 68.35871790300013 + ], + [ + -51.23082349699996, + 68.15239266200012 + ], + [ + -50.943061528999976, + 68.05016831199998 + ], + [ + -50.69083346599996, + 68.03017780800013 + ], + [ + -50.440273569999874, + 67.94626540200005 + ], + [ + -50.579730500999915, + 67.899326912 + ], + [ + -50.71194848599998, + 67.95545213600008 + ], + [ + -50.976943528999925, + 67.9943331020001 + ], + [ + -51.188606532999984, + 68.06211654800006 + ], + [ + -51.84388763099997, + 68.0398835490002 + ], + [ + -52.192493498999966, + 68.08544891600002 + ], + [ + -52.57973055199989, + 68.18767276300002 + ], + [ + -52.78944057299992, + 68.16183806100014 + ], + [ + -53.14805560699995, + 68.19766818300019 + ], + [ + -53.321105529999954, + 68.18294218500017 + ], + [ + -53.03917351099989, + 68.08378510800003 + ], + [ + -53.25555753899994, + 68.01490329900008 + ], + [ + -53.27388758799992, + 67.85432648500017 + ], + [ + -53.676666533999935, + 67.81098953100019 + ], + [ + -53.54750861399992, + 67.72765665000003 + ], + [ + -53.7294316199999, + 67.53514176800007 + ], + [ + -53.58943958799995, + 67.50736900300012 + ], + [ + -53.33167259599992, + 67.58430816800006 + ], + [ + -53.005283632999976, + 67.75071375700009 + ], + [ + -52.82222353799989, + 67.78959505900013 + ], + [ + -52.456672478999906, + 67.81933690100004 + ], + [ + -52.26722755299994, + 67.77015507800007 + ], + [ + -52.00582851499996, + 67.7626614890001 + ], + [ + -51.7130545039999, + 67.69347491400015 + ], + [ + -51.59916656799993, + 67.74737189200005 + ], + [ + -51.38138946799995, + 67.74877569300014 + ], + [ + -51.32110547899998, + 67.80960098500009 + ], + [ + -51.566112532999966, + 67.91765394300018 + ], + [ + -51.348606503999974, + 67.9179437900001 + ], + [ + -51.16166357599997, + 67.7571071370001 + ], + [ + -51.33028450099994, + 67.67430902100006 + ], + [ + -51.79750854899993, + 67.62430342500005 + ], + [ + -52.416381508999905, + 67.76737698000011 + ], + [ + -53.03334054499982, + 67.6923609590001 + ], + [ + -53.11112259499998, + 67.58986235300017 + ], + [ + -53.60194354399994, + 67.48235874500006 + ], + [ + -53.82111354799997, + 67.40403086500004 + ], + [ + -53.88027553499995, + 67.25541771000013 + ], + [ + -53.80666348199992, + 67.17928756600003 + ], + [ + -53.91555060699994, + 67.14400830300019 + ], + [ + -53.628337485999964, + 66.90621773300006 + ], + [ + -53.20305262699992, + 66.92344522600001 + ], + [ + -52.970832501999894, + 66.85288502400005 + ], + [ + -53.00444762199999, + 66.66592550000013 + ], + [ + -53.27527646899989, + 66.6923085460001 + ], + [ + -53.441940555999906, + 66.639266857 + ], + [ + -53.224166472999855, + 66.54564938000016 + ], + [ + -53.50333749299989, + 66.52730709400004 + ], + [ + -53.62471348599996, + 66.49118729400004 + ], + [ + -53.69666659299992, + 66.32536223600016 + ], + [ + -53.58306447999996, + 66.20702401200009 + ], + [ + -53.63999956299995, + 66.11867154400005 + ], + [ + -53.30749851599995, + 66.1172824950001 + ], + [ + -52.99665848699988, + 66.19506035400019 + ], + [ + -52.72443757299993, + 66.34452779300011 + ], + [ + -52.45999154499998, + 66.4356275130001 + ], + [ + -52.130001548999985, + 66.5114830660001 + ], + [ + -51.977497513999936, + 66.65647993300013 + ], + [ + -51.74749758799993, + 66.7064850270001 + ], + [ + -51.52111847599997, + 66.81621688000013 + ], + [ + -51.23194449299996, + 66.85093170500016 + ], + [ + -51.6094395959999, + 66.69899311400007 + ], + [ + -51.87943259999997, + 66.63537564200004 + ], + [ + -52.09778553599995, + 66.47481458700008 + ], + [ + -52.373882576999904, + 66.43091219000013 + ], + [ + -52.36845060099989, + 66.39142001500005 + ], + [ + -51.726287516999946, + 66.3965556070001 + ], + [ + -51.596614613999975, + 66.37337645900016 + ], + [ + -51.39021259499998, + 66.22831086100001 + ], + [ + -51.17774962099992, + 66.18823999900013 + ], + [ + -50.58848958999988, + 66.12556884500003 + ], + [ + -49.94503753699996, + 65.938387368 + ], + [ + -49.82453560899995, + 65.95384510600019 + ], + [ + -49.523738607999974, + 66.1238979960001 + ], + [ + -49.310581612999954, + 66.30352570200012 + ], + [ + -49.232612478999954, + 66.43117219600015 + ], + [ + -49.26529653699998, + 66.56430414400018 + ], + [ + -49.50870549699994, + 66.70333393400006 + ], + [ + -49.58607448699985, + 66.87405771100009 + ], + [ + -49.92494946799985, + 67.04694871400011 + ], + [ + -49.94854754299996, + 67.15535354399998 + ], + [ + -49.69644956699989, + 67.35735908700019 + ], + [ + -49.631595596999944, + 67.51083341100008 + ], + [ + -49.76051362699991, + 67.59385264100013 + ], + [ + -49.82292946899992, + 67.81661261500005 + ], + [ + -49.95732155199994, + 67.96062511100007 + ], + [ + -50.294338599999946, + 67.99608810500013 + ], + [ + -50.4537885499999, + 68.18926767200014 + ] + ] + ], + [ + [ + [ + -51.91999849699988, + 68.12849652700015 + ], + [ + -51.98444762099996, + 68.21878705900014 + ], + [ + -52.2555654759999, + 68.18405597200018 + ], + [ + -52.1100085299999, + 68.11212231100018 + ], + [ + -51.91999849699988, + 68.12849652700015 + ] + ] + ], + [ + [ + [ + -52.93832748099993, + 68.36990305000006 + ], + [ + -52.85638448699996, + 68.41353085600008 + ], + [ + -52.96416452999995, + 68.48241249800014 + ], + [ + -53.18417356299989, + 68.43129277900005 + ], + [ + -53.111942512999974, + 68.35629151 + ], + [ + -52.93832748099993, + 68.36990305000006 + ] + ] + ], + [ + [ + [ + -51.832500479999965, + 68.59992678100014 + ], + [ + -51.87499656099993, + 68.64215011500016 + ], + [ + -52.21721256899997, + 68.64048681000008 + ], + [ + -52.13220950999988, + 68.56214417900003 + ], + [ + -51.832500479999965, + 68.59992678100014 + ] + ] + ], + [ + [ + [ + -50.80166653399982, + 69.08522858200007 + ], + [ + -51.078887587999986, + 69.12772701000011 + ], + [ + -51.13277853199992, + 69.03911386500005 + ], + [ + -51.081676581999886, + 68.87047986300013 + ], + [ + -51.29083658299999, + 68.75021933400012 + ], + [ + -50.98722057999993, + 68.73103734900008 + ], + [ + -51.044723620999946, + 68.59797413300004 + ], + [ + -51.618328603999885, + 68.51853112500015 + ], + [ + -51.95278162899996, + 68.52964117000005 + ], + [ + -51.98416162999996, + 68.5799206870002 + ], + [ + -52.3963925139999, + 68.54992135200007 + ], + [ + -52.47972153899991, + 68.48990491400008 + ], + [ + -52.83805058299998, + 68.3773956330001 + ], + [ + -53.079723482999896, + 68.32157601400019 + ], + [ + -52.89723251899994, + 68.22379273100006 + ], + [ + -52.44445049099994, + 68.22295336700012 + ], + [ + -52.44639257799997, + 68.17738816800005 + ], + [ + -52.0494496149999, + 68.23683933100006 + ], + [ + -51.78417562299995, + 68.2401811960001 + ], + [ + -51.66750355399989, + 68.27407325399997 + ], + [ + -51.24083350099994, + 68.28850789700016 + ], + [ + -51.21278748599997, + 68.41324050700013 + ], + [ + -50.83393853699988, + 68.50180755200012 + ], + [ + -50.403060601999925, + 68.82905767100016 + ], + [ + -50.37017051599997, + 68.89909132200006 + ], + [ + -50.51833356299994, + 68.94326814300013 + ], + [ + -50.532504511999946, + 69.02689120600013 + ], + [ + -50.80166653399982, + 69.08522858200007 + ] + ] + ], + [ + [ + [ + -50.07398959699992, + 69.17926599200018 + ], + [ + -50.11689354199996, + 69.26572750200012 + ], + [ + -50.356979579999916, + 69.37095793800006 + ], + [ + -50.33500256499991, + 69.50192400200012 + ], + [ + -50.86584056399988, + 69.45608354100005 + ], + [ + -50.878051487999926, + 69.364678551 + ], + [ + -51.12277255099997, + 69.19996610700002 + ], + [ + -50.87167352999995, + 69.17272777200009 + ], + [ + -50.559997489999944, + 69.2241215790001 + ], + [ + -50.074592590999885, + 68.98585005500013 + ], + [ + -49.991832528999964, + 69.08600675700006 + ], + [ + -50.07398959699992, + 69.17926599200018 + ] + ] + ], + [ + [ + [ + -50.791946543999984, + 69.86943676100014 + ], + [ + -51.008895510999935, + 69.91971761899998 + ], + [ + -51.18526852399998, + 69.8922199480001 + ], + [ + -51.19749453599991, + 69.83194484400019 + ], + [ + -51.38805760699995, + 69.70387070400017 + ], + [ + -51.24917550699996, + 69.53192451000012 + ], + [ + -50.94916958999988, + 69.55469210600006 + ], + [ + -50.965278601999955, + 69.7230364290001 + ], + [ + -50.653884527999935, + 69.83527078300017 + ], + [ + -50.791946543999984, + 69.86943676100014 + ] + ] + ], + [ + [ + [ + -50.22365551899992, + 69.56362671200003 + ], + [ + -50.14872750799992, + 69.78834738000018 + ], + [ + -50.18117150799992, + 69.87784531900007 + ], + [ + -50.33888657199992, + 69.97111276700002 + ], + [ + -50.58916450099997, + 69.92054156000006 + ], + [ + -50.3136065839999, + 69.87192518100017 + ], + [ + -50.33000158699991, + 69.75665356000007 + ], + [ + -50.55777762599996, + 69.78082462200018 + ], + [ + -50.79750055999989, + 69.71137820700005 + ], + [ + -50.84610352899995, + 69.61942269400004 + ], + [ + -50.7997246139999, + 69.50108514100009 + ], + [ + -50.51138647399995, + 69.50914115600006 + ], + [ + -50.22365551899992, + 69.56362671200003 + ] + ] + ], + [ + [ + [ + -53.38305651199994, + 70.21113141500012 + ], + [ + -54.360279469999966, + 70.32252724300008 + ], + [ + -54.7511135339999, + 70.24416969200018 + ], + [ + -54.843322515999944, + 70.17444751200009 + ], + [ + -54.817783526999904, + 70.05916080400004 + ], + [ + -54.706664468999975, + 69.96583216800019 + ], + [ + -54.867214627999886, + 69.93194061300005 + ], + [ + -54.92639153499994, + 69.74053884800009 + ], + [ + -54.994445547999874, + 69.69331017700006 + ], + [ + -54.65889348799993, + 69.56914284200008 + ], + [ + -54.07138862799991, + 69.5444215920001 + ], + [ + -53.91305950599991, + 69.43635371400018 + ], + [ + -54.15333162199994, + 69.42774700900009 + ], + [ + -54.153613588999974, + 69.33412869400019 + ], + [ + -53.93443251999997, + 69.31607658899998 + ], + [ + -53.83833349799994, + 69.258578409 + ], + [ + -53.582225618999985, + 69.22856298200014 + ], + [ + -53.183063631999914, + 69.31300931500004 + ], + [ + -52.75305959299993, + 69.35718580100018 + ], + [ + -52.078338514999984, + 69.49662881800003 + ], + [ + -51.833328611999946, + 69.62468787000012 + ], + [ + -52.01389358199998, + 69.66581267300006 + ], + [ + -51.91305559899996, + 69.72025933600008 + ], + [ + -51.99694855899992, + 69.79721409200016 + ], + [ + -52.4916615599999, + 69.86971202300003 + ], + [ + -52.693046506999906, + 69.91610149800005 + ], + [ + -53.06750149399994, + 70.12833296300005 + ], + [ + -53.38305651199994, + 70.21113141500012 + ] + ] + ], + [ + [ + [ + -51.70860656299993, + 70.841722108 + ], + [ + -51.65943161399997, + 70.88588367300008 + ], + [ + -51.96277654499994, + 70.9722848340001 + ], + [ + -52.162216555999976, + 70.88533465900014 + ], + [ + -51.70860656299993, + 70.841722108 + ] + ] + ], + [ + [ + [ + -53.947215592999896, + 71.16617401299999 + ], + [ + -53.956390591999934, + 71.09478886400007 + ], + [ + -53.68500149899984, + 71.02311487499998 + ], + [ + -53.45278154099992, + 71.0481103800002 + ], + [ + -53.41138851799997, + 71.16840225800007 + ], + [ + -53.59805249599998, + 71.31201057900017 + ], + [ + -53.947215592999896, + 71.16617401299999 + ] + ] + ], + [ + [ + [ + -52.347774624999886, + 71.27369371400016 + ], + [ + -52.57138854699997, + 71.34480360200018 + ], + [ + -52.961376541999925, + 71.38397542000013 + ], + [ + -53.18332263199994, + 71.32202142100016 + ], + [ + -53.11582953599998, + 71.20479631400008 + ], + [ + -52.958885607999946, + 71.1470233760001 + ], + [ + -52.64222350799997, + 71.16783698300014 + ], + [ + -52.592224616999886, + 71.23368320200007 + ], + [ + -52.347774624999886, + 71.27369371400016 + ] + ] + ], + [ + [ + [ + -53.1913484719999, + 72.62668124800012 + ], + [ + -53.90896947199997, + 72.69764629600007 + ], + [ + -54.23910162499993, + 72.77439502500005 + ], + [ + -54.61751957599995, + 72.8212649510001 + ], + [ + -54.80250147399988, + 72.80711143700006 + ], + [ + -54.73501256899988, + 72.6998815820001 + ], + [ + -54.99639551399997, + 72.56932002900004 + ], + [ + -54.98249848599994, + 72.50599206800007 + ], + [ + -55.28028453999991, + 72.49514202900019 + ], + [ + -55.469989471999895, + 72.52070147000012 + ], + [ + -55.62638053099988, + 72.45625972200008 + ], + [ + -55.507224567999856, + 72.38847677900014 + ], + [ + -55.28028152199994, + 72.36819642900008 + ], + [ + -54.970836575999954, + 72.4026378370001 + ], + [ + -54.88361750899992, + 72.24512712400013 + ], + [ + -55.39027354999996, + 72.0965116220001 + ], + [ + -55.5800094949999, + 71.99761421699998 + ], + [ + -55.034172583999975, + 71.88678316100004 + ], + [ + -55.34694648599998, + 71.87372030000006 + ], + [ + -55.40693258199991, + 71.79954313900004 + ], + [ + -55.77527649099994, + 71.73981654700003 + ], + [ + -55.905834523999886, + 71.67731269500013 + ], + [ + -55.68139246999988, + 71.62314129300006 + ], + [ + -55.54360957199998, + 71.46703421300015 + ], + [ + -55.342220601999884, + 71.38814156100011 + ], + [ + -55.16526756099995, + 71.37617740000007 + ], + [ + -55.013889551999966, + 71.42980096100018 + ], + [ + -54.82556562099995, + 71.35147241100009 + ], + [ + -54.39611462099987, + 71.36258212100006 + ], + [ + -53.91554256099994, + 71.44063457100003 + ], + [ + -53.88528053699997, + 71.57064744500008 + ], + [ + -53.72194255799997, + 71.65732235900009 + ], + [ + -53.76472060599997, + 71.7139967650001 + ], + [ + -53.39805559299998, + 71.84317044200009 + ], + [ + -53.58110847899991, + 72.04317958400003 + ], + [ + -53.43251057899994, + 72.0584545970001 + ], + [ + -53.373317578999945, + 71.90039419800013 + ], + [ + -53.11555863299992, + 71.77122135900004 + ], + [ + -53.21361952399991, + 71.69565464600015 + ], + [ + -52.564456545999974, + 71.68065489500009 + ], + [ + -52.56750856399998, + 71.62730659600004 + ], + [ + -52.174442566999915, + 71.6089795650002 + ], + [ + -51.863887521999914, + 71.65398116500006 + ], + [ + -51.83999658399989, + 71.58953908100017 + ], + [ + -52.48583261699997, + 71.55535768000004 + ], + [ + -52.66694257899991, + 71.5264855440002 + ], + [ + -52.943057556999975, + 71.40369116500005 + ], + [ + -52.268890522999925, + 71.35534820300018 + ], + [ + -52.39860550399993, + 71.14868617800016 + ], + [ + -52.23389054499995, + 71.18561550200019 + ], + [ + -51.74695259699996, + 71.34897024600014 + ], + [ + -51.5247195099999, + 71.30035185400016 + ], + [ + -51.626953582999874, + 71.24840819500014 + ], + [ + -52.02722952499994, + 71.21479106300006 + ], + [ + -52.218326523999906, + 71.10783563200005 + ], + [ + -51.865554514999985, + 71.13089324100014 + ], + [ + -51.95639054099996, + 71.02061170299999 + ], + [ + -51.608253556999955, + 70.92748926200005 + ], + [ + -50.91305548899993, + 70.84227196100011 + ], + [ + -50.747787491999986, + 70.78115648699998 + ], + [ + -51.27138553799989, + 70.76977319200006 + ], + [ + -51.17583854799989, + 70.68892722100014 + ], + [ + -51.32972358399991, + 70.55113191800018 + ], + [ + -50.958057591999875, + 70.47808413500013 + ], + [ + -51.00556554899998, + 70.42334745700003 + ], + [ + -50.67499954799996, + 70.40280860900009 + ], + [ + -50.59693955399996, + 70.32307709600019 + ], + [ + -51.05722053599993, + 70.3569678130001 + ], + [ + -51.19722346499992, + 70.39919232099999 + ], + [ + -51.51611749799997, + 70.42195974900017 + ], + [ + -51.812782555999945, + 70.49224586300005 + ], + [ + -52.466110501999935, + 70.70087595900009 + ], + [ + -53.043331605999924, + 70.77448851500003 + ], + [ + -53.41221949999988, + 70.75172058400011 + ], + [ + -54.12860852799997, + 70.82783597600019 + ], + [ + -54.57250959399994, + 70.71587571000009 + ], + [ + -54.54054654699996, + 70.65253299800008 + ], + [ + -54.35333254899996, + 70.58392494100019 + ], + [ + -54.16444049299997, + 70.46531229300018 + ], + [ + -53.89306648699983, + 70.3791862270001 + ], + [ + -53.224166472999855, + 70.34474498600014 + ], + [ + -52.876926519999984, + 70.278365678 + ], + [ + -52.575000476999946, + 70.18972235800004 + ], + [ + -52.392230562999885, + 70.0786168780001 + ], + [ + -51.930553491999945, + 70.00222639200018 + ], + [ + -51.536388627999884, + 70.00834551600002 + ], + [ + -51.27055355099998, + 70.06138905000006 + ], + [ + -51.03417248099993, + 70.02833585300016 + ], + [ + -50.91221662799995, + 69.96278015000007 + ], + [ + -50.50000753799992, + 70.02999932500012 + ], + [ + -50.12899047199994, + 70.05591063800006 + ], + [ + -50.04460951799996, + 70.12006237200006 + ], + [ + -50.28612550899993, + 70.20964446500005 + ], + [ + -50.35332456699996, + 70.2831576120002 + ], + [ + -50.379714486999944, + 70.5851542310001 + ], + [ + -50.51143257499996, + 70.70115809400005 + ], + [ + -50.50268153299993, + 70.80718212900007 + ], + [ + -50.703269527999964, + 70.95729162100008 + ], + [ + -50.82443647699989, + 71.11574814800014 + ], + [ + -51.10228349099998, + 71.21340302000004 + ], + [ + -51.1870154799999, + 71.37651368200017 + ], + [ + -50.99818058899996, + 71.49275441900016 + ], + [ + -51.006950573999916, + 71.5804598040001 + ], + [ + -51.385879485999965, + 71.68825443100008 + ], + [ + -51.69359256299998, + 71.93979568100013 + ], + [ + -52.03784554099997, + 72.06317763100009 + ], + [ + -52.10309949499998, + 72.17429048700006 + ], + [ + -52.247405525999966, + 72.25812041500006 + ], + [ + -52.71088453899995, + 72.37429962800013 + ], + [ + -53.03192852999996, + 72.4037668790001 + ], + [ + -53.24003961899996, + 72.46414893700012 + ], + [ + -53.09198352499993, + 72.57036491700012 + ], + [ + -53.1913484719999, + 72.62668124800012 + ] + ] + ], + [ + [ + [ + -52.9486085559999, + 71.59425490799998 + ], + [ + -52.758892559999936, + 71.6537062380001 + ], + [ + -53.39194451499998, + 71.66815714200015 + ], + [ + -53.44832957699998, + 71.56063760800009 + ], + [ + -53.17610547899989, + 71.5264855440002 + ], + [ + -52.9486085559999, + 71.59425490799998 + ] + ] + ], + [ + [ + [ + -52.30888359999989, + 82.01912713100006 + ], + [ + -51.57556161999992, + 81.9655032340001 + ], + [ + -51.22277854599997, + 82.00357635300014 + ], + [ + -51.84693562599995, + 82.1374671980002 + ], + [ + -52.54278161499991, + 82.2196876340002 + ], + [ + -52.558063499999946, + 82.2752482520001 + ], + [ + -53.07693448799989, + 82.32887214800019 + ], + [ + -53.345012561999965, + 82.19856775200014 + ], + [ + -53.16443652799995, + 82.10523794200003 + ], + [ + -52.30888359999989, + 82.01912713100006 + ] + ] + ], + [ + [ + [ + -45.320827548999944, + 82.54721050000018 + ], + [ + -46.249469498999986, + 82.66500172100001 + ], + [ + -47.559169531999885, + 82.64360674600005 + ], + [ + -46.997497528999986, + 82.38470735800001 + ], + [ + -45.55222356499996, + 82.19969679400015 + ], + [ + -45.07665650699988, + 82.05523150800013 + ], + [ + -44.73721658499994, + 82.09524386400017 + ], + [ + -45.0672265309999, + 82.21608559400005 + ], + [ + -44.461933594999834, + 82.34442158500019 + ], + [ + -44.43888453499994, + 82.39638100200011 + ], + [ + -45.320827548999944, + 82.54721050000018 + ] + ] + ], + [ + [ + [ + -48.41363147099992, + 82.82169016900008 + ], + [ + -48.29109961399996, + 82.78306652700002 + ], + [ + -47.46304653699991, + 82.8205758790001 + ], + [ + -48.258064521999984, + 82.89168677200013 + ], + [ + -48.41363147099992, + 82.82169016900008 + ] + ] + ], + [ + [ + [ + -37.47500658599995, + -53.9996353869999 + ], + [ + -37.663063468999894, + -54.036578289999966 + ], + [ + -37.65500661599998, + -54.17964078099993 + ], + [ + -37.46472953499995, + -54.12907963299995 + ], + [ + -37.282226500999855, + -54.264084767999975 + ], + [ + -37.14611847499998, + -54.25936156499989 + ], + [ + -37.08083350699991, + -54.31991813399998 + ], + [ + -36.92000557199998, + -54.33547427599996 + ], + [ + -36.8088915429999, + -54.44769823599995 + ], + [ + -36.63528455899984, + -54.511595830999966 + ], + [ + -36.52694661599986, + -54.493536349999886 + ], + [ + -36.48694649799995, + -54.55854069099996 + ], + [ + -36.34750347999989, + -54.64742490699996 + ], + [ + -36.251113604999944, + -54.78604733699996 + ], + [ + -36.076393503999896, + -54.88826816699998 + ], + [ + -35.979728534999936, + -54.807158165999965 + ], + [ + -35.822227544999976, + -54.78715357999994 + ], + [ + -35.914451613999915, + -54.714931581999906 + ], + [ + -35.90888955099996, + -54.577706415999955 + ], + [ + -36.068611576999956, + -54.56881690499995 + ], + [ + -36.06139358499996, + -54.46464359499993 + ], + [ + -36.28222655899998, + -54.267700720999926 + ], + [ + -36.391113515999905, + -54.34491967499997 + ], + [ + -36.50111359099992, + -54.28324998999989 + ], + [ + -36.67750554599991, + -54.24825336399988 + ], + [ + -36.65639454999996, + -54.105747934999954 + ], + [ + -37.16278052499996, + -54.02936130399996 + ], + [ + -37.23194849299995, + -54.07380332799988 + ], + [ + -37.47500658599995, + -53.9996353869999 + ] + ] + ], + [ + [ + [ + -43.710285588999966, + 59.84062924500017 + ], + [ + -43.72665745699993, + 59.911467056000106 + ], + [ + -43.94778061299996, + 59.97702125000018 + ], + [ + -44.1119385099999, + 59.862858052000036 + ], + [ + -44.11027956399994, + 59.810633263 + ], + [ + -43.82722856099997, + 59.85230573900009 + ], + [ + -43.710285588999966, + 59.84062924500017 + ] + ] + ], + [ + [ + [ + -44.08832953899986, + 59.94396922600015 + ], + [ + -44.01722350699998, + 60.01342167600012 + ], + [ + -44.19721548999996, + 60.019525881000106 + ], + [ + -44.39416858999982, + 59.89758025400005 + ], + [ + -44.31388454199987, + 59.87007554100012 + ], + [ + -44.08832953899986, + 59.94396922600015 + ] + ] + ], + [ + [ + [ + -43.47805758499993, + 59.91729918400006 + ], + [ + -43.347778501999926, + 60.012308727000175 + ], + [ + -43.46777349299998, + 60.026194188000034 + ], + [ + -43.47805758499993, + 59.91729918400006 + ] + ] + ], + [ + [ + [ + -43.61055753699998, + 60.10953327200008 + ], + [ + -43.729164484999956, + 60.1375873340001 + ], + [ + -44.09749246799993, + 60.1695324440002 + ], + [ + -44.11666456299997, + 60.10092690100004 + ], + [ + -43.868053457999906, + 60.053699236000114 + ], + [ + -43.91194948499992, + 59.9920250240001 + ], + [ + -43.57278448999983, + 59.91285191400016 + ], + [ + -43.47804652099995, + 60.04147691200012 + ], + [ + -43.24722650899997, + 60.00953062900015 + ], + [ + -43.16166655599994, + 60.06759291100008 + ], + [ + -43.61055753699998, + 60.10953327200008 + ] + ] + ], + [ + [ + [ + -44.287227574999974, + 60.012308727000175 + ], + [ + -44.20055349899991, + 60.03898178700018 + ], + [ + -44.27916753699998, + 60.12008474700008 + ], + [ + -44.434436593999976, + 60.1395334450001 + ], + [ + -44.48527551899997, + 59.99758323200007 + ], + [ + -44.287227574999974, + 60.012308727000175 + ] + ] + ], + [ + [ + [ + -43.51189046699989, + 60.348269320999975 + ], + [ + -43.31277450099998, + 60.43509980300007 + ], + [ + -43.493617581999956, + 60.48954479000014 + ], + [ + -43.77167548599988, + 60.52010202400015 + ], + [ + -43.74474359299995, + 60.44189786099997 + ], + [ + -43.518951548999894, + 60.4185321330001 + ], + [ + -43.51189046699989, + 60.348269320999975 + ] + ] + ], + [ + [ + [ + -40.595836574999964, + 63.77301605500003 + ], + [ + -40.86839662099993, + 63.77259293600008 + ], + [ + -41.16032456199997, + 63.877985646000184 + ], + [ + -41.398216552999884, + 63.93321031800019 + ], + [ + -41.696319609999875, + 63.96992406000015 + ], + [ + -42.22571558599992, + 63.80133330900014 + ], + [ + -42.23295956199996, + 63.690168150000034 + ], + [ + -42.53079959499996, + 63.66552015800005 + ], + [ + -42.61746545699998, + 63.5776831770001 + ], + [ + -42.451957569999934, + 63.51499727000015 + ], + [ + -42.66360850399997, + 63.48042694900016 + ], + [ + -42.76675050499989, + 63.43101663500005 + ], + [ + -42.67433147299988, + 63.37024180200012 + ], + [ + -42.91526760399995, + 63.269251436000104 + ], + [ + -42.87821556799997, + 63.154496141000095 + ], + [ + -43.21673146899997, + 63.056102991000046 + ], + [ + -43.44294746899993, + 63.02780853500002 + ], + [ + -43.50463157099995, + 62.93998295400013 + ], + [ + -43.31564748199992, + 62.86074429700017 + ], + [ + -43.35052860399992, + 62.780635933999974 + ], + [ + -43.56487247699994, + 62.79139326800009 + ], + [ + -43.47108048899992, + 62.70023722100012 + ], + [ + -43.29415846099994, + 62.64241885300015 + ], + [ + -43.30675562399995, + 62.56639264400002 + ], + [ + -43.42333549199992, + 62.425342480000154 + ], + [ + -43.244995581999945, + 62.265491540000085 + ], + [ + -43.06207261499992, + 62.214479612000105 + ], + [ + -42.61701149299989, + 62.16295622100006 + ], + [ + -42.63166456899995, + 62.09153838300017 + ], + [ + -42.557258581999974, + 61.947058177000144 + ], + [ + -42.42943958699993, + 61.898762153 + ], + [ + -42.478549492999946, + 61.84302300000019 + ], + [ + -42.68165960399995, + 61.86907093800016 + ], + [ + -42.853427598999986, + 61.93346172400004 + ], + [ + -43.076446572999885, + 61.80471837300013 + ], + [ + -42.96685050699989, + 61.75555230800006 + ], + [ + -42.54917557699997, + 61.65662539900018 + ], + [ + -42.66133851699982, + 61.594550868 + ], + [ + -43.07762959499996, + 61.6674026820001 + ], + [ + -43.14462245899995, + 61.60205015700012 + ], + [ + -43.36536758999989, + 61.55879014900012 + ], + [ + -43.28756357999998, + 61.462472190000085 + ], + [ + -43.274764581999875, + 61.360734326000056 + ], + [ + -43.37817346199995, + 61.20724005300002 + ], + [ + -43.64782750199993, + 61.22843486900007 + ], + [ + -43.65799357699996, + 61.12223364100009 + ], + [ + -43.56907248099992, + 61.08666034100014 + ], + [ + -42.98042248399992, + 61.027388718000054 + ], + [ + -42.94738051899992, + 60.95352604700008 + ], + [ + -43.09424252699989, + 60.930904128 + ], + [ + -43.556449501999964, + 60.97737172300009 + ], + [ + -43.581111575999955, + 60.91145911800015 + ], + [ + -43.51884459599984, + 60.817934513000125 + ], + [ + -43.3579445769999, + 60.792989467000154 + ], + [ + -43.47812246099994, + 60.70468712200005 + ], + [ + -43.59314346299993, + 60.80541798500013 + ], + [ + -43.81784049399988, + 60.817285586000196 + ], + [ + -43.89966547099988, + 60.70871546500018 + ], + [ + -44.08577356099994, + 60.71915277800019 + ], + [ + -44.26309557299987, + 60.779080033000184 + ], + [ + -44.33780649399995, + 60.69571479799998 + ], + [ + -44.15416352099987, + 60.610109415000124 + ], + [ + -43.441379549999965, + 60.51427274500003 + ], + [ + -43.24888646099993, + 60.46676294500014 + ], + [ + -43.037506597999936, + 60.50899264900016 + ], + [ + -42.82583956999997, + 60.60482931900003 + ], + [ + -42.849723467999866, + 60.67316881900018 + ], + [ + -42.771385529999975, + 60.730109099000174 + ], + [ + -42.91722159299991, + 60.78872844200009 + ], + [ + -42.88417057499993, + 60.837062352000146 + ], + [ + -43.08777655899996, + 60.889287476000106 + ], + [ + -42.73444346499997, + 60.92317869600015 + ], + [ + -42.65694857899996, + 60.991792283999985 + ], + [ + -42.79139749199993, + 61.06234041699997 + ], + [ + -42.76778047399995, + 61.14012950699998 + ], + [ + -42.650268537999864, + 61.195680571000196 + ], + [ + -42.66788059299995, + 61.255856098000095 + ], + [ + -42.45750454599994, + 61.409862337 + ], + [ + -42.61944559799997, + 61.54292354100005 + ], + [ + -42.430553541999984, + 61.57681509600019 + ], + [ + -42.31721847599988, + 61.63015015200011 + ], + [ + -42.351394512999946, + 61.75210013800006 + ], + [ + -42.227779545999965, + 61.821545211000114 + ], + [ + -42.21888751999995, + 61.91098883500001 + ], + [ + -42.13666557599993, + 62.01711010000008 + ], + [ + -42.428054561999886, + 62.000721635000104 + ], + [ + -42.39861245599991, + 62.09072131500005 + ], + [ + -42.27333049599997, + 62.180447242000184 + ], + [ + -42.261669591999976, + 62.299345041000095 + ], + [ + -42.438888506999945, + 62.34017597400009 + ], + [ + -42.59860952699995, + 62.32767855600008 + ], + [ + -42.70249550599988, + 62.40740068100007 + ], + [ + -42.53860851199988, + 62.41768611500004 + ], + [ + -42.243892581999944, + 62.357124517000045 + ], + [ + -42.3630596079999, + 62.55602003900003 + ], + [ + -42.60221860699994, + 62.62490922500018 + ], + [ + -42.71472554099989, + 62.683245762000126 + ], + [ + -42.680553527999905, + 62.75992894500007 + ], + [ + -42.31249946499997, + 62.80547386 + ], + [ + -42.028339535999976, + 62.783256116000075 + ], + [ + -41.74777946699993, + 62.84019757000016 + ], + [ + -41.61111052399991, + 62.976593263000154 + ], + [ + -41.74362153999988, + 63.01298715100012 + ], + [ + -42.00389052999998, + 63.02020547900014 + ], + [ + -42.13805361899995, + 63.11576755700008 + ], + [ + -41.88222452299988, + 63.09020845200013 + ], + [ + -41.831947520999904, + 63.042713236 + ], + [ + -41.543331604999935, + 63.04188560700004 + ], + [ + -41.61805358899994, + 63.13882868700017 + ], + [ + -41.48276849899992, + 63.15049009400019 + ], + [ + -41.49750153699989, + 63.230770789000076 + ], + [ + -41.90750149299993, + 63.463004157000114 + ], + [ + -41.74749347599982, + 63.51578734800012 + ], + [ + -41.51111559199995, + 63.422727436000116 + ], + [ + -41.20721846099997, + 63.44050394400011 + ], + [ + -41.05943645499991, + 63.50718399500016 + ], + [ + -40.74833658599994, + 63.507454898000105 + ], + [ + -40.95639453399997, + 63.69412457599998 + ], + [ + -40.55167048299995, + 63.68273289900009 + ], + [ + -40.595836574999964, + 63.77301605500003 + ] + ] + ], + [ + [ + [ + -41.98611854899997, + 62.76908466499998 + ], + [ + -42.19861253499994, + 62.805755994000094 + ], + [ + -42.367221557999926, + 62.80242167300014 + ], + [ + -42.41833457099989, + 62.708530779000114 + ], + [ + -42.16305147199989, + 62.70630253400009 + ], + [ + -42.056106601999886, + 62.67685942300011 + ], + [ + -41.98611854899997, + 62.76908466499998 + ] + ] + ], + [ + [ + [ + -41.56138957699994, + 62.87186792099999 + ], + [ + -41.45249557899996, + 63.00993982700004 + ], + [ + -41.58861550699993, + 63.00076046900011 + ], + [ + -41.56138957699994, + 62.87186792099999 + ] + ] + ], + [ + [ + [ + -41.445270545999904, + 63.34327889600013 + ], + [ + -41.442501499999935, + 63.39967032900012 + ], + [ + -41.592777456999954, + 63.42522926600003 + ], + [ + -41.673610519999954, + 63.48801106200017 + ], + [ + -41.84582560599995, + 63.42328835300009 + ], + [ + -41.70638661099997, + 63.38105730700016 + ], + [ + -41.43083959099994, + 63.229652643000065 + ], + [ + -41.17749757299998, + 63.224102314000106 + ], + [ + -41.23694253299993, + 63.3330013420001 + ], + [ + -41.445270545999904, + 63.34327889600013 + ] + ] + ], + [ + [ + [ + -40.71250948199997, + 64.23442507300007 + ], + [ + -40.71833758699995, + 64.30164341000005 + ], + [ + -40.960288598999966, + 64.28720759400005 + ], + [ + -40.98305552399995, + 64.20636296400016 + ], + [ + -40.71250948199997, + 64.23442507300007 + ] + ] + ], + [ + [ + [ + -40.47416654499989, + 64.679163324 + ], + [ + -40.4347194639999, + 64.73888907800011 + ], + [ + -40.49638361699988, + 64.8255629860002 + ], + [ + -40.74833256299996, + 64.93222723000014 + ], + [ + -40.86471947999996, + 64.90695730099998 + ], + [ + -40.78528250699986, + 64.80360424399998 + ], + [ + -40.57389459699982, + 64.68526752900016 + ], + [ + -40.50111352499994, + 64.50332792600005 + ], + [ + -40.38027950599991, + 64.45860192300017 + ], + [ + -40.18666458299998, + 64.45359759200011 + ], + [ + -40.273326588999964, + 64.5380432550001 + ], + [ + -40.426666466999905, + 64.55804851100015 + ], + [ + -40.386115489999895, + 64.64749951099998 + ], + [ + -40.47416654499989, + 64.679163324 + ] + ] + ], + [ + [ + [ + -36.99554445699988, + 65.58281680900012 + ], + [ + -36.910823532999984, + 65.64005598700015 + ], + [ + -37.0675046049999, + 65.72532575900004 + ], + [ + -37.2125054949999, + 65.68281291400018 + ], + [ + -36.99554445699988, + 65.58281680900012 + ] + ] + ], + [ + [ + [ + -38.75666445899992, + 65.64171878900004 + ], + [ + -39.004005536999955, + 65.6553221150001 + ], + [ + -39.156696487999966, + 65.8087959360002 + ], + [ + -39.244106494999926, + 65.83408832900011 + ], + [ + -39.46200949099989, + 65.78058848500018 + ], + [ + -39.48175054899991, + 65.73262036200009 + ], + [ + -40.12350861899995, + 65.58957731700008 + ], + [ + -39.88694348399986, + 65.5069921010001 + ], + [ + -39.78750259599997, + 65.61531931500014 + ], + [ + -39.646110617999966, + 65.67477131600003 + ], + [ + -39.45249955099996, + 65.54282188700006 + ], + [ + -39.319446560999836, + 65.59421653200013 + ], + [ + -39.29111857799995, + 65.6819889730001 + ], + [ + -39.12277257899996, + 65.64727314100008 + ], + [ + -39.06750448799994, + 65.57338633000006 + ], + [ + -38.75666445899992, + 65.64171878900004 + ] + ] + ], + [ + [ + [ + -37.369445567999946, + 65.78810420200006 + ], + [ + -37.56583456499993, + 65.88422401200012 + ], + [ + -37.68693948799995, + 65.90256579600015 + ], + [ + -37.958332604999896, + 65.7928342780001 + ], + [ + -37.98722049899993, + 65.70394670900004 + ], + [ + -37.935001576999866, + 65.59337633000007 + ], + [ + -37.73138452899991, + 65.56754213100015 + ], + [ + -37.393894573999944, + 65.62447587300016 + ], + [ + -37.32083857599986, + 65.6958752720002 + ], + [ + -37.369445567999946, + 65.78810420200006 + ] + ] + ], + [ + [ + [ + -36.58776453199988, + 65.81393806600005 + ], + [ + -36.515834558999984, + 65.90673193700019 + ], + [ + -36.748336483999935, + 65.90811997999998 + ], + [ + -36.58776453199988, + 65.81393806600005 + ] + ] + ], + [ + [ + [ + -37.801391525999975, + 66.2375733670001 + ], + [ + -37.737495606999914, + 66.28284888800016 + ], + [ + -38.05720855199985, + 66.32813916000009 + ], + [ + -38.064575573999946, + 66.23302618399998 + ], + [ + -38.25540954899992, + 66.15246335400019 + ], + [ + -38.19876447999991, + 66.08231537400019 + ], + [ + -38.31753554499994, + 66.04788218100015 + ], + [ + -38.52796154799995, + 66.06878782100006 + ], + [ + -38.617526541999894, + 66.03849729900008 + ], + [ + -38.57240658999996, + 65.94343059100015 + ], + [ + -38.42260756299993, + 65.85448217000004 + ], + [ + -38.5108265909999, + 65.7682739600001 + ], + [ + -38.77345257299993, + 65.76405484600008 + ], + [ + -38.77500557199994, + 65.70694608900004 + ], + [ + -38.597782465999956, + 65.64643411300011 + ], + [ + -38.311275604999935, + 65.64953944000013 + ], + [ + -38.17916457299992, + 65.68281291400018 + ], + [ + -38.09888857199985, + 65.7928342780001 + ], + [ + -38.26778056799998, + 65.89978853600007 + ], + [ + -37.97471956099997, + 65.9603383990002 + ], + [ + -37.97887748799991, + 66.10812694200013 + ], + [ + -37.801391525999975, + 66.2375733670001 + ] + ] + ], + [ + [ + [ + -23.386939581999968, + 69.64248013600019 + ], + [ + -23.22167544099989, + 69.66804058200012 + ], + [ + -23.316112500999907, + 69.74053884800009 + ], + [ + -23.593904529999975, + 69.70693747500013 + ], + [ + -23.386939581999968, + 69.64248013600019 + ] + ] + ], + [ + [ + [ + -25.3930495379999, + 70.9042256240001 + ], + [ + -25.499441537999928, + 70.96256434100007 + ], + [ + -25.71666358799996, + 70.98089137300013 + ], + [ + -25.726942483999892, + 71.07701202100009 + ], + [ + -26.298343528999908, + 70.93254841100008 + ], + [ + -26.640272540999945, + 70.88895111500005 + ], + [ + -27.12360358899997, + 70.87476021700007 + ], + [ + -27.2980635159999, + 70.78643708600003 + ], + [ + -27.520284532999938, + 70.72948741800013 + ], + [ + -27.69555046399995, + 70.6439267950002 + ], + [ + -27.88111356299993, + 70.6386461960002 + ], + [ + -28.068616568999914, + 70.5641949460001 + ], + [ + -27.98998844999994, + 70.52030830700005 + ], + [ + -28.066659561999984, + 70.42696525400015 + ], + [ + -27.854448548999983, + 70.42473684100008 + ], + [ + -27.263332596999874, + 70.47252978300014 + ], + [ + -26.818616473999896, + 70.52087257700003 + ], + [ + -26.580007494999904, + 70.5161419980002 + ], + [ + -26.24305347899997, + 70.58171295600005 + ], + [ + -26.040008578999903, + 70.519758287 + ], + [ + -25.812213596999925, + 70.60170312499997 + ], + [ + -25.314727525999956, + 70.65114411600007 + ], + [ + -25.28277755499994, + 70.68836345400013 + ], + [ + -25.3930495379999, + 70.9042256240001 + ] + ] + ], + [ + [ + [ + -27.262374544999943, + 70.87905544000012 + ], + [ + -27.748882501999844, + 70.87614842800008 + ], + [ + -27.75333748399993, + 70.75060662900006 + ], + [ + -27.57528155199992, + 70.75283521000011 + ], + [ + -27.262374544999943, + 70.87905544000012 + ] + ] + ], + [ + [ + [ + -23.608617451999976, + 72.83378583800004 + ], + [ + -23.92916657599983, + 72.87016547700017 + ], + [ + -24.26277956599995, + 72.86932594500018 + ], + [ + -24.48444754499991, + 72.82461452700016 + ], + [ + -24.369157483999913, + 72.59321616400018 + ], + [ + -24.101940566999872, + 72.54820065000007 + ], + [ + -24.0233285409999, + 72.47570104300013 + ], + [ + -23.270832453999958, + 72.35292124900008 + ], + [ + -22.97332954099994, + 72.24041146500014 + ], + [ + -22.57805658899997, + 72.14041469 + ], + [ + -22.277221533999864, + 72.11262700400016 + ], + [ + -22.061393561999978, + 72.26874833300013 + ], + [ + -22.727502569999956, + 72.37513999800018 + ], + [ + -22.65027456399997, + 72.46543120000007 + ], + [ + -22.093606556999873, + 72.39320685500013 + ], + [ + -21.92860258999991, + 72.46930732700008 + ], + [ + -22.395288518999962, + 72.58570899600005 + ], + [ + -22.61027545099995, + 72.60598884300015 + ], + [ + -23.055555507999884, + 72.76017244400003 + ], + [ + -23.12388746499994, + 72.82684277200008 + ], + [ + -23.608617451999976, + 72.83378583800004 + ] + ] + ], + [ + [ + [ + -19.64723344799995, + 79.40338677200003 + ], + [ + -20.473520457999882, + 79.46180880500015 + ], + [ + -20.972812493999925, + 79.51446375300014 + ], + [ + -21.529977546999874, + 79.49392306100003 + ], + [ + -22.381534486999954, + 79.39685525800019 + ], + [ + -22.36933747599994, + 79.31990838000019 + ], + [ + -21.99400155199993, + 79.25483966600018 + ], + [ + -21.554952600999968, + 79.11834808400016 + ], + [ + -21.140258443999926, + 79.09723557900008 + ], + [ + -20.50948150499994, + 78.98379456600014 + ], + [ + -20.020692497999903, + 78.95462487200012 + ], + [ + -20.174491535999948, + 78.87639556400012 + ], + [ + -20.69813350299995, + 78.90422197400017 + ], + [ + -21.88980845999987, + 78.69471982400006 + ], + [ + -22.22461855299997, + 78.74193357600018 + ], + [ + -22.595766543999957, + 78.70144144000005 + ], + [ + -22.735128592999956, + 78.50962544100008 + ], + [ + -22.50268550899989, + 78.48659867700013 + ], + [ + -22.02878158799996, + 78.52281721600008 + ], + [ + -21.855506526999875, + 78.4932289300001 + ], + [ + -22.025400495999975, + 78.38660877400008 + ], + [ + -21.622943581999948, + 78.33549559300019 + ], + [ + -21.956224481999982, + 78.1914576160001 + ], + [ + -22.22037144299992, + 77.90864046800016 + ], + [ + -22.61052858399995, + 77.57838627500007 + ], + [ + -22.28945156899988, + 77.54260258900013 + ], + [ + -21.996219570999926, + 77.64646811500018 + ], + [ + -21.54434748199992, + 77.63355830800003 + ], + [ + -21.96454653799998, + 77.41544928500008 + ], + [ + -22.215400471999942, + 77.08174007100018 + ], + [ + -22.222301459999926, + 76.92385451900003 + ], + [ + -22.330699584999934, + 76.86210671500015 + ], + [ + -22.751142553999898, + 76.79970964800009 + ], + [ + -22.89019044899993, + 76.66879421100009 + ], + [ + -22.692661512999962, + 76.55596390400018 + ], + [ + -22.874464489999923, + 76.509955972 + ], + [ + -22.713983565999968, + 76.31517864700015 + ], + [ + -22.419389507999938, + 76.2485326260001 + ], + [ + -22.833002567999927, + 76.08834305700015 + ], + [ + -22.32159650299991, + 76.06685655100011 + ], + [ + -22.85799756999984, + 75.9251769060001 + ], + [ + -22.986818537999966, + 75.8451778430001 + ], + [ + -22.945684514999982, + 75.75815122400007 + ], + [ + -23.074180599999977, + 75.69361710800001 + ], + [ + -22.995887588999892, + 75.61349600400013 + ], + [ + -23.048248499999886, + 75.41930725600002 + ], + [ + -22.79919449599987, + 75.36473872000016 + ], + [ + -22.874549481999964, + 75.29428412900012 + ], + [ + -23.28008054299994, + 75.2841279450002 + ], + [ + -23.45433259899994, + 75.19818577700005 + ], + [ + -23.157552540999973, + 75.08247108900014 + ], + [ + -23.377267536999966, + 74.99171335000011 + ], + [ + -22.46098352899992, + 74.77225517600016 + ], + [ + -22.424390486999926, + 74.74331397300017 + ], + [ + -22.874141450999957, + 74.66361297000014 + ], + [ + -23.614875548999976, + 74.64348483500015 + ], + [ + -23.76943046799994, + 74.57660143900006 + ], + [ + -23.10776554499995, + 74.42768234400006 + ], + [ + -22.739219463999973, + 74.27275728100017 + ], + [ + -22.59992748899998, + 74.14917550600012 + ], + [ + -22.874334569999917, + 74.16588533300006 + ], + [ + -23.51971244899994, + 74.36721546300004 + ], + [ + -24.30313658599988, + 74.49735741800004 + ], + [ + -24.684995474999937, + 74.4446054070001 + ], + [ + -25.23523556799995, + 74.54551731900017 + ], + [ + -25.859275467999964, + 74.58948844800011 + ], + [ + -26.00426060099994, + 74.51530374300012 + ], + [ + -25.881383575999905, + 74.35914938900004 + ], + [ + -24.978446575999897, + 74.24343537200008 + ], + [ + -24.677709589999836, + 74.1454901510001 + ], + [ + -24.43967259199991, + 73.96540965500003 + ], + [ + -24.232061566999903, + 73.86818242800013 + ], + [ + -24.203136456999914, + 73.80473259400009 + ], + [ + -24.582447583999965, + 73.71673702800007 + ], + [ + -24.65249648999992, + 73.96034430300017 + ], + [ + -25.01936350699998, + 74.09707124900012 + ], + [ + -25.28836459699994, + 74.12321172300005 + ], + [ + -25.935358506999876, + 74.10045904700007 + ], + [ + -26.183877576999976, + 74.03645902500006 + ], + [ + -26.61600860799996, + 74.03124766100012 + ], + [ + -26.61517745799995, + 73.90751484400005 + ], + [ + -26.90028353599996, + 73.89886254100009 + ], + [ + -27.359224586999915, + 73.94867786800006 + ], + [ + -27.627193528999896, + 73.92180481500014 + ], + [ + -27.791257548999965, + 73.86574111500016 + ], + [ + -27.9147146009999, + 73.70286581600004 + ], + [ + -28.650281589999906, + 73.45317026200007 + ], + [ + -28.88963555299989, + 73.31605489800017 + ], + [ + -28.97422052299993, + 73.17910650300013 + ], + [ + -28.936424509999938, + 72.995386081 + ], + [ + -28.516981501999908, + 72.79119654900006 + ], + [ + -27.992078560999914, + 72.7513987700001 + ], + [ + -27.708709548999934, + 72.68613274600006 + ], + [ + -27.66000348299997, + 72.58678372400016 + ], + [ + -27.493165555999894, + 72.50001744700018 + ], + [ + -27.48010654999996, + 72.25617480800014 + ], + [ + -27.74351355799996, + 72.25128413500005 + ], + [ + -28.552898459999938, + 72.17536689100018 + ], + [ + -29.1173835969999, + 72.2663832950002 + ], + [ + -29.19266649899987, + 72.18822338900003 + ], + [ + -28.896081571999957, + 72.10865180300016 + ], + [ + -28.89930960999982, + 71.93052479300013 + ], + [ + -28.97881145899987, + 71.83070353500005 + ], + [ + -28.838907603999928, + 71.7581204440001 + ], + [ + -29.016073544999927, + 71.69733370900008 + ], + [ + -28.751184449999926, + 71.66169452700018 + ], + [ + -28.56515648999988, + 71.60123619500007 + ], + [ + -28.769947507999973, + 71.54346258600009 + ], + [ + -29.25084847399995, + 71.50076634500016 + ], + [ + -29.631387548999953, + 71.54647588000006 + ], + [ + -29.455772595999917, + 71.30256534700004 + ], + [ + -29.26855859699998, + 71.25422255300015 + ], + [ + -29.426073500999962, + 71.19113850600013 + ], + [ + -30.051645445999952, + 71.07510379700011 + ], + [ + -30.281524504999936, + 71.00249857800014 + ], + [ + -30.182058471999937, + 70.93865194500006 + ], + [ + -29.656814554999983, + 70.98861999000002 + ], + [ + -29.590215472999887, + 70.95615486700018 + ], + [ + -30.068708485999935, + 70.84515634100006 + ], + [ + -29.80280350399994, + 70.8323836620001 + ], + [ + -29.368053463999956, + 70.92552135800014 + ], + [ + -28.957097467999972, + 70.96597443500013 + ], + [ + -28.729640443999983, + 70.94580120500007 + ], + [ + -28.62128255199991, + 71.03671836800015 + ], + [ + -28.463243443999943, + 71.02729610300008 + ], + [ + -28.496932491999928, + 70.92268307800015 + ], + [ + -28.2111645789999, + 70.80432926399999 + ], + [ + -28.731250606999936, + 70.77215415500012 + ], + [ + -28.90437647099992, + 70.82979734200012 + ], + [ + -29.111057606999964, + 70.77805954100006 + ], + [ + -29.56387752099988, + 70.72361254200007 + ], + [ + -30.281623578999927, + 70.71875204400004 + ], + [ + -30.128791476999822, + 70.5978419170001 + ], + [ + -30.591436489999978, + 70.53479743300005 + ], + [ + -30.708166561999974, + 70.48521814000003 + ], + [ + -30.74637647399993, + 70.38914409500012 + ], + [ + -30.557023580999953, + 70.2322286650001 + ], + [ + -30.555808539999873, + 70.13995346600007 + ], + [ + -30.21081946399994, + 70.1694500540001 + ], + [ + -30.11360749199997, + 70.0870021340001 + ], + [ + -29.7021254469999, + 70.16854983800005 + ], + [ + -29.423795466999934, + 70.14942904000003 + ], + [ + -29.26101454899998, + 70.06603530600006 + ], + [ + -29.23399146099996, + 69.86436386600008 + ], + [ + -28.88663650799998, + 69.86782760300008 + ], + [ + -28.61211744399992, + 69.89489025400007 + ], + [ + -28.448930505999954, + 69.84055104600014 + ], + [ + -28.033027510999943, + 69.85533722700006 + ], + [ + -27.73593547899992, + 69.88888612900018 + ], + [ + -27.419349486999977, + 69.82992949900017 + ], + [ + -27.032665470999916, + 69.84440353700012 + ], + [ + -26.812953492999952, + 69.89951471800003 + ], + [ + -26.633331486999907, + 69.9935440810001 + ], + [ + -26.3925225939999, + 70.01174873700018 + ], + [ + -26.000959471999977, + 69.982976345 + ], + [ + -25.75320650699996, + 70.02553579400006 + ], + [ + -25.245758544999944, + 70.05729851300009 + ], + [ + -24.635051569999916, + 70.14001431900004 + ], + [ + -24.053941597999938, + 70.13417012100001 + ], + [ + -23.70248454199998, + 70.10426818400015 + ], + [ + -22.907857488999923, + 70.07207044400008 + ], + [ + -23.108369544999903, + 70.0001131460001 + ], + [ + -23.949665525999933, + 69.96231512200018 + ], + [ + -23.797533479999913, + 69.87781531200017 + ], + [ + -24.100286481999888, + 69.85573436100009 + ], + [ + -24.449186554999983, + 69.74553664200005 + ], + [ + -24.75669645399995, + 69.68773235500004 + ], + [ + -24.964424489999942, + 69.59290252000005 + ], + [ + -25.088817465999966, + 69.48738927900001 + ], + [ + -25.187149594999937, + 69.32341611800018 + ], + [ + -25.329822495999963, + 69.34252115800018 + ], + [ + -25.28753244099994, + 69.48072801300009 + ], + [ + -25.43630552299993, + 69.47205324600009 + ], + [ + -25.9188275489999, + 69.2985968000001 + ], + [ + -26.123226460999888, + 69.24136550100008 + ], + [ + -25.96979555599995, + 69.1764816910001 + ], + [ + -26.697755464999886, + 69.10534883700012 + ], + [ + -27.169271549999962, + 69.21056385000003 + ], + [ + -27.425874462999957, + 69.17567267000004 + ], + [ + -27.5785005379999, + 69.20050824900011 + ], + [ + -27.84303256499993, + 69.17953303900015 + ], + [ + -28.15131544299993, + 69.23772607800015 + ], + [ + -28.32803345499991, + 69.33299948400014 + ], + [ + -28.634347591999926, + 69.44673688100016 + ], + [ + -28.650066510999977, + 69.33071860000007 + ], + [ + -28.750843473999964, + 69.26995416100016 + ], + [ + -28.947347470999887, + 69.317037658 + ], + [ + -29.001031548999947, + 69.43842857100014 + ], + [ + -29.25991048499992, + 69.37433785700006 + ], + [ + -29.545906552999952, + 69.39129159700019 + ], + [ + -29.82514948999983, + 69.34268209100009 + ], + [ + -30.035152541999935, + 69.16171831000008 + ], + [ + -30.24147057499988, + 69.10392978100015 + ], + [ + -30.406417544999897, + 69.00104074600017 + ], + [ + -30.49774759999997, + 68.788039319 + ], + [ + -30.23778153199993, + 68.65837111000013 + ], + [ + -30.276159583999913, + 68.57398529300008 + ], + [ + -30.48534959199992, + 68.57288659400007 + ], + [ + -30.610816455999895, + 68.68460244300013 + ], + [ + -30.826410572999976, + 68.80088810600006 + ], + [ + -30.983386520999943, + 68.8055353690001 + ], + [ + -31.064687460999835, + 68.73712646600018 + ], + [ + -31.01802456799993, + 68.64836864900008 + ], + [ + -30.85753660299997, + 68.58130219200001 + ], + [ + -30.82569660299987, + 68.47362289900019 + ], + [ + -30.86582747899996, + 68.32826024600013 + ], + [ + -31.156070489999934, + 68.26390935800015 + ], + [ + -31.275089491999836, + 68.29299405900008 + ], + [ + -31.37729255199997, + 68.39594361100018 + ], + [ + -31.48122245199994, + 68.63003357100018 + ], + [ + -31.58061053399996, + 68.74754835699997 + ], + [ + -31.77552247199992, + 68.83605387800003 + ], + [ + -31.951232475999916, + 68.79580682900018 + ], + [ + -32.085113597999964, + 68.83973923300005 + ], + [ + -32.29684449599995, + 68.76629498600005 + ], + [ + -32.51622756799998, + 68.90882003000013 + ], + [ + -32.61557357299989, + 69.09888655800006 + ], + [ + -32.794807496999965, + 69.06936599700009 + ], + [ + -32.87012057299995, + 68.98283709600014 + ], + [ + -32.78811253499998, + 68.91073479200008 + ], + [ + -32.85254254899991, + 68.84788778400002 + ], + [ + -33.03976844999988, + 68.80474897900007 + ], + [ + -33.001842516999886, + 68.72526205000014 + ], + [ + -33.102481513999976, + 68.666077767 + ], + [ + -33.26705548899986, + 68.69641321500018 + ], + [ + -33.41116353899997, + 68.6272261370001 + ], + [ + -33.20578360899992, + 68.59547833700015 + ], + [ + -33.34229648099989, + 68.4710359090002 + ], + [ + -33.502014483999915, + 68.408143472 + ], + [ + -33.433952591999855, + 68.31966058100011 + ], + [ + -32.694930581999984, + 68.22629472900013 + ], + [ + -32.50529857199996, + 68.16772852800017 + ], + [ + -32.56386946799995, + 68.09904453100006 + ], + [ + -33.01423650199996, + 67.92264402600017 + ], + [ + -33.11290357199994, + 67.80153575000003 + ], + [ + -33.345169461999944, + 67.70512542400007 + ], + [ + -33.51424049599996, + 67.57281775200005 + ], + [ + -33.554222509999875, + 67.46310869800004 + ], + [ + -33.68046151499988, + 67.40705270900014 + ], + [ + -33.94965354399989, + 67.16350192700014 + ], + [ + -34.27756851699996, + 66.80021733500013 + ], + [ + -34.52151157099996, + 66.83463477100014 + ], + [ + -34.70813749599995, + 66.72719251800004 + ], + [ + -34.59347155099988, + 66.62393820000011 + ], + [ + -34.61884357199989, + 66.56978205299998 + ], + [ + -34.811561463999965, + 66.50940720400013 + ], + [ + -35.07373448699991, + 66.55960407600014 + ], + [ + -35.135486481999976, + 66.80515327000006 + ], + [ + -35.20914446799998, + 66.83925806100007 + ], + [ + -35.819045606999964, + 66.9659126410001 + ], + [ + -36.18193054999995, + 66.93749949800008 + ], + [ + -36.626857560999895, + 66.85721897100007 + ], + [ + -36.59985358399996, + 66.68643417300018 + ], + [ + -36.75934259299993, + 66.67563744400007 + ], + [ + -37.05416145299989, + 66.7457252420001 + ], + [ + -37.233089604999975, + 66.81242490700015 + ], + [ + -37.52076758699991, + 66.86090415800004 + ], + [ + -37.86322348499988, + 66.768950657 + ], + [ + -37.92366052699987, + 66.60397904500007 + ], + [ + -38.212989575999984, + 66.54042276100017 + ], + [ + -38.298511474999884, + 66.3949384020001 + ], + [ + -37.86221346499991, + 66.37368927200004 + ], + [ + -37.61694355499998, + 66.3211964300001 + ], + [ + -37.22054256699994, + 66.343413838 + ], + [ + -37.56055849299992, + 66.15923140600006 + ], + [ + -37.793624518999934, + 65.99088808900012 + ], + [ + -37.40583057199996, + 65.82867898400008 + ], + [ + -37.116394569999954, + 65.80533186300005 + ], + [ + -36.82694247499995, + 65.9106070580001 + ], + [ + -36.39471857299992, + 66.0222915600001 + ], + [ + -36.33195856999998, + 65.95728654800018 + ], + [ + -36.06361361599994, + 65.93254987500012 + ], + [ + -35.89611854799995, + 66.00979397400005 + ], + [ + -35.81806559499995, + 66.12561494500017 + ], + [ + -35.56999948199996, + 66.14062978300007 + ], + [ + -35.59222057799991, + 66.28480170300014 + ], + [ + -35.39332958199998, + 66.28535205900005 + ], + [ + -35.23277254999988, + 66.24035062700005 + ], + [ + -35.129440615999954, + 66.33619651600009 + ], + [ + -34.9708255029999, + 66.28147542900012 + ], + [ + -34.63999547199995, + 66.37063725300015 + ], + [ + -34.529781491999984, + 66.5061188160002 + ], + [ + -34.30749844899998, + 66.58149408600013 + ], + [ + -33.989437576999876, + 66.7656612630002 + ], + [ + -34.02138855399994, + 66.84232550200011 + ], + [ + -33.952224608999984, + 66.99150309500004 + ], + [ + -33.77167556499995, + 67.02316690800006 + ], + [ + -33.55194045299987, + 67.11095527300006 + ], + [ + -33.42471355599997, + 67.22984267900011 + ], + [ + -33.44972247299984, + 67.3868030370001 + ], + [ + -33.02361249899991, + 67.67514805000008 + ], + [ + -32.77972744699986, + 67.72098834300016 + ], + [ + -32.547492569999974, + 67.8148804110001 + ], + [ + -32.54638649399993, + 67.85960674900008 + ], + [ + -32.09444047699998, + 67.90654523900014 + ], + [ + -32.144718484999885, + 68.03516839400004 + ], + [ + -31.999168579999946, + 68.09378019300004 + ], + [ + -32.0555534749999, + 68.1512932920001 + ], + [ + -32.32417654099993, + 68.20268844000014 + ], + [ + -32.13751256299997, + 68.24350730300006 + ], + [ + -32.20056559699992, + 68.34046781800015 + ], + [ + -32.43111755599995, + 68.3779597350001 + ], + [ + -32.52527952099996, + 68.44656728899997 + ], + [ + -32.42666659799994, + 68.52852671200003 + ], + [ + -32.06944245699998, + 68.35351458500003 + ], + [ + -32.0072256009999, + 68.26046137800012 + ], + [ + -31.704444603999832, + 68.0968474660001 + ], + [ + -31.571676597999897, + 68.0654587480002 + ], + [ + -31.438058499999954, + 68.12016374200016 + ], + [ + -31.11805151799996, + 68.0493291160002 + ], + [ + -30.736661512999888, + 68.08073342500006 + ], + [ + -30.453609503999928, + 68.0562723490001 + ], + [ + -30.015285587999983, + 68.13379154300003 + ], + [ + -30.118331531999956, + 68.25934742300007 + ], + [ + -29.996940451999933, + 68.37351984100007 + ], + [ + -29.842216553999947, + 68.4085253510001 + ], + [ + -29.765281578999975, + 68.30434785000011 + ], + [ + -29.46471759499991, + 68.20990576200012 + ], + [ + -29.303607524999848, + 68.31322948200005 + ], + [ + -29.120275520999883, + 68.27907741800016 + ], + [ + -28.988893547999908, + 68.34019305900006 + ], + [ + -28.648620464999965, + 68.35685544400013 + ], + [ + -28.441951565999943, + 68.44543841500018 + ], + [ + -28.10250057999997, + 68.43741173600017 + ], + [ + -28.02305656699997, + 68.48741783500009 + ], + [ + -27.636949560999938, + 68.47380612800015 + ], + [ + -27.648338555999942, + 68.53435615800004 + ], + [ + -27.339164512999957, + 68.52909098200018 + ], + [ + -27.070552511999892, + 68.57548062500018 + ], + [ + -26.914165476999983, + 68.64797972900004 + ], + [ + -26.456378446999963, + 68.6529848990001 + ], + [ + -26.290288519999933, + 68.68658576900009 + ], + [ + -26.22388658099993, + 68.78575810100011 + ], + [ + -25.9577755709999, + 68.78354611600014 + ], + [ + -25.779172469999935, + 68.85659423500005 + ], + [ + -25.547779470999956, + 69.03883927400017 + ], + [ + -25.30556157999996, + 69.01717088000004 + ], + [ + -25.068057502999977, + 69.11077310200017 + ], + [ + -24.990829496999936, + 69.20690950800014 + ], + [ + -25.05055458099997, + 69.29272946800012 + ], + [ + -24.693880459999946, + 69.24162433400011 + ], + [ + -24.61362055199993, + 69.31357459100008 + ], + [ + -24.41638950899994, + 69.362191306 + ], + [ + -24.301387449999936, + 69.44190756300009 + ], + [ + -24.12611749599995, + 69.41302117800018 + ], + [ + -24.051950560999956, + 69.55107497900019 + ], + [ + -23.81944645699997, + 69.50608930500005 + ], + [ + -23.58861152599991, + 69.61803465100019 + ], + [ + -23.688610480999955, + 69.70860078000004 + ], + [ + -23.476957534999826, + 69.74971032700017 + ], + [ + -22.995834447999925, + 69.75582928400007 + ], + [ + -23.093618568999943, + 69.91500279900015 + ], + [ + -22.84638947299993, + 69.95722563000004 + ], + [ + -22.575561463999918, + 69.93610658700015 + ], + [ + -22.361116505999973, + 69.97277590400006 + ], + [ + -22.079154478999953, + 70.12833296300005 + ], + [ + -22.785842459999856, + 70.07779293700008 + ], + [ + -23.59083960299995, + 70.10834262700018 + ], + [ + -24.478607537999892, + 70.23917893900017 + ], + [ + -25.03110655399996, + 70.3616834720001 + ], + [ + -25.2394406009999, + 70.27029373700015 + ], + [ + -25.353889453999955, + 70.29612843900003 + ], + [ + -25.35666453499988, + 70.39336304200009 + ], + [ + -25.63748947199997, + 70.35390070700015 + ], + [ + -26.30749857899997, + 70.19639066400003 + ], + [ + -26.867502582999975, + 70.25057765700006 + ], + [ + -27.182491487999926, + 70.1594474260001 + ], + [ + -27.295282567999948, + 69.97416411500006 + ], + [ + -27.528339541999912, + 69.974713968 + ], + [ + -27.568620453999984, + 70.05166805400006 + ], + [ + -27.97722247599995, + 70.00695764100004 + ], + [ + -28.098607521999895, + 70.06471498900015 + ], + [ + -28.542781502999958, + 70.04333694500008 + ], + [ + -28.274999476999824, + 70.13668050100011 + ], + [ + -28.121393557999966, + 70.14195975900009 + ], + [ + -27.853330570999958, + 70.08667456900008 + ], + [ + -27.412214475999917, + 70.17778954500011 + ], + [ + -27.329444522999893, + 70.22890943100009 + ], + [ + -26.953613562999976, + 70.32225282000019 + ], + [ + -26.598886558999936, + 70.30111768300003 + ], + [ + -26.330282603999876, + 70.3808491960001 + ], + [ + -26.505832513999962, + 70.46779953900005 + ], + [ + -26.724435565999954, + 70.47724510600011 + ], + [ + -27.02139046999997, + 70.43641031800001 + ], + [ + -27.155279470999915, + 70.44919791700016 + ], + [ + -28.241937562999965, + 70.36974066000005 + ], + [ + -28.368061568999906, + 70.4975247860001 + ], + [ + -28.033893528999897, + 70.70476700700016 + ], + [ + -27.936103540999966, + 70.88115376500008 + ], + [ + -28.18388751899994, + 70.94588552700009 + ], + [ + -27.778331480999896, + 71.01478208900011 + ], + [ + -27.49666449699987, + 70.93560042900015 + ], + [ + -27.12110846399986, + 70.94838735800005 + ], + [ + -26.784173557999964, + 70.92922113000003 + ], + [ + -26.4788895559999, + 70.95894687900005 + ], + [ + -26.259448480999936, + 71.03588654800006 + ], + [ + -26.03971253099985, + 71.0511612250001 + ], + [ + -25.597782552999888, + 71.16783698300014 + ], + [ + -25.411392494999973, + 71.27119171600009 + ], + [ + -25.411388471999942, + 71.34785578800012 + ], + [ + -25.69473049499993, + 71.4614798610001 + ], + [ + -25.87777851999988, + 71.49898787200016 + ], + [ + -26.103895444999864, + 71.4831333350001 + ], + [ + -26.43584244899995, + 71.5053663330001 + ], + [ + -26.67499759199984, + 71.47452679700012 + ], + [ + -27.353050476999954, + 71.59759576700014 + ], + [ + -27.32500060599989, + 71.70844258000005 + ], + [ + -27.96916947899996, + 71.86566277700013 + ], + [ + -27.975282567999955, + 71.91428083300008 + ], + [ + -28.442508459999885, + 71.93178392300018 + ], + [ + -28.35473249899991, + 72.01124067699999 + ], + [ + -27.88249557099988, + 71.97205444100013 + ], + [ + -27.610008447999974, + 71.89873072600017 + ], + [ + -27.608898515999897, + 71.85844528700017 + ], + [ + -27.217224585999872, + 71.73954245900012 + ], + [ + -27.00637848199989, + 71.59509360100003 + ], + [ + -26.78582546299998, + 71.54565193900015 + ], + [ + -26.09361051499991, + 71.58509784600017 + ], + [ + -25.623893521999946, + 71.53591619100018 + ], + [ + -25.066942541999936, + 71.2936840500002 + ], + [ + -24.871948460999818, + 71.30090221000006 + ], + [ + -24.572504466999874, + 71.25841853400016 + ], + [ + -24.57333746099988, + 71.20868769600014 + ], + [ + -24.270551601999955, + 71.08422951000017 + ], + [ + -24.19249143999997, + 71.01173107700009 + ], + [ + -24.231941537999944, + 70.92949622400005 + ], + [ + -24.168327586999908, + 70.77671609000004 + ], + [ + -24.021955584999887, + 70.65086969300017 + ], + [ + -23.345830537999973, + 70.43779852900008 + ], + [ + -23.10890145999997, + 70.42334745700003 + ], + [ + -22.622779573999935, + 70.4452907770002 + ], + [ + -22.565828564999947, + 70.58087376000009 + ], + [ + -22.64306646199998, + 70.64865703800018 + ], + [ + -22.585006526999962, + 70.81561348500009 + ], + [ + -22.428338530999895, + 70.83671811200009 + ], + [ + -22.468320544999926, + 70.65282301100018 + ], + [ + -22.355838588999916, + 70.43723476200006 + ], + [ + -22.121950464999884, + 70.49030746400013 + ], + [ + -21.744432563999908, + 70.41724425800015 + ], + [ + -21.476936528999886, + 70.54197636499998 + ], + [ + -21.621940603999974, + 70.6386461960002 + ], + [ + -21.593347584999947, + 70.73226451000005 + ], + [ + -21.74971953299996, + 70.8692058650002 + ], + [ + -21.673334578999913, + 70.93254841100008 + ], + [ + -21.79139754099998, + 71.0784000640001 + ], + [ + -21.666105521999896, + 71.18895636100012 + ], + [ + -21.817787459999977, + 71.27618096000009 + ], + [ + -21.670833585999958, + 71.39925093600016 + ], + [ + -22.049711535999904, + 71.4820337970001 + ], + [ + -22.293346471999826, + 71.42563465300009 + ], + [ + -22.43721949299993, + 71.24563093500018 + ], + [ + -22.541391461999922, + 71.4811947680002 + ], + [ + -22.303338537999934, + 71.68176901800018 + ], + [ + -22.599710564999953, + 71.60481442899999 + ], + [ + -22.839439533999894, + 71.70038505700012 + ], + [ + -22.7672294379999, + 71.79482798300018 + ], + [ + -22.571659519999912, + 71.9220485100002 + ], + [ + -23.028623446999973, + 72.01012672200011 + ], + [ + -23.095827534999955, + 72.05816458300012 + ], + [ + -23.64667850099994, + 72.14679298300007 + ], + [ + -23.80471945299996, + 72.24846781500008 + ], + [ + -24.093896453999832, + 72.27708111800007 + ], + [ + -24.424171602999877, + 72.3531951700001 + ], + [ + -24.52055745499996, + 72.41069519300015 + ], + [ + -24.940273544999968, + 72.39152896600012 + ], + [ + -25.119726571999934, + 72.42986125300018 + ], + [ + -24.697488533999945, + 72.49653007300009 + ], + [ + -24.714723570999922, + 72.68182930900008 + ], + [ + -25.191373571999975, + 72.75516828000002 + ], + [ + -25.228338602999884, + 72.79488827500012 + ], + [ + -25.622230552999895, + 72.82156250800017 + ], + [ + -26.075838532999853, + 72.71266934800013 + ], + [ + -26.30472550999997, + 72.72655548000012 + ], + [ + -26.697223549999933, + 72.82711769800005 + ], + [ + -26.63278951299992, + 72.86210745 + ], + [ + -26.260826465999912, + 72.77656174700007 + ], + [ + -26.027233552999917, + 72.78599222600013 + ], + [ + -25.755001574999937, + 72.88379227200011 + ], + [ + -25.319723475999922, + 72.89017056500018 + ], + [ + -24.985549568999886, + 73.01795536100008 + ], + [ + -25.061376455999834, + 73.08213827600008 + ], + [ + -25.386667556999953, + 73.08769279600017 + ], + [ + -26.054452442999946, + 73.19852368400007 + ], + [ + -26.4808365049999, + 73.18630052200018 + ], + [ + -26.71000645499987, + 73.09907642600001 + ], + [ + -27.147781523999925, + 73.14603000400007 + ], + [ + -27.07444154699988, + 73.1860106760002 + ], + [ + -26.695827459999975, + 73.13185452900007 + ], + [ + -26.45277456399998, + 73.27798161200013 + ], + [ + -26.13499448599987, + 73.24047343300009 + ], + [ + -25.72139148499997, + 73.26243183999998 + ], + [ + -25.44000847999996, + 73.3504798780001 + ], + [ + -25.493606559999932, + 73.40103599700006 + ], + [ + -25.314998596999885, + 73.46048816600018 + ], + [ + -24.7116584769999, + 73.48964998100013 + ], + [ + -24.379165476999844, + 73.5493755670002 + ], + [ + -24.450559510999938, + 73.69994371700011 + ], + [ + -24.251111453999954, + 73.77633403600015 + ], + [ + -23.929985487999886, + 73.7577325810002 + ], + [ + -24.03472859999988, + 73.66493787200017 + ], + [ + -23.983621453999888, + 73.59160041000007 + ], + [ + -23.36082458999988, + 73.40770447200003 + ], + [ + -22.895544472999973, + 73.31658916100002 + ], + [ + -22.22667547299983, + 73.24407463400007 + ], + [ + -21.933889558999965, + 73.33909608000005 + ], + [ + -21.57443851499994, + 73.3896525340001 + ], + [ + -21.618057602999954, + 73.45465855200013 + ], + [ + -20.515832472999875, + 73.44965304700014 + ], + [ + -20.481388550999952, + 73.75689338500001 + ], + [ + -20.294998492999866, + 73.78523025300018 + ], + [ + -20.283054448999962, + 73.87883415100009 + ], + [ + -20.634439587999964, + 73.87716984000014 + ], + [ + -21.105546468999876, + 73.94356524199998 + ], + [ + -21.685825457999954, + 74.05996774900007 + ], + [ + -22.061380485999962, + 74.01719422600007 + ], + [ + -22.24832559299989, + 74.0244125540001 + ], + [ + -22.199453565999875, + 74.18386133000013 + ], + [ + -22.05806544299992, + 74.28665129100006 + ], + [ + -21.765008458999944, + 74.41832713500008 + ], + [ + -21.25916445799993, + 74.47054655900007 + ], + [ + -20.806940496999914, + 74.44442083700005 + ], + [ + -20.381937436999976, + 74.44442083700005 + ], + [ + -20.200834516999976, + 74.2755410790001 + ], + [ + -19.596677495999927, + 74.23359283800016 + ], + [ + -19.377769509999894, + 74.25970246700018 + ], + [ + -19.167226495999955, + 74.35304602300005 + ], + [ + -18.978624453999885, + 74.48415793200019 + ], + [ + -19.249986557999875, + 74.51194628800005 + ], + [ + -19.271663500999864, + 74.64528577100015 + ], + [ + -19.450553598999875, + 74.67972751400015 + ], + [ + -19.71472754999985, + 74.58416996200003 + ], + [ + -20.13611247799986, + 74.67000635100004 + ], + [ + -20.549167469999873, + 74.67194475000008 + ], + [ + -20.760833491999904, + 74.8344611350002 + ], + [ + -20.683324523999886, + 74.88751925300016 + ], + [ + -20.67026551899994, + 75.1150272390002 + ], + [ + -20.56195054299991, + 75.19059395200009 + ], + [ + -21.034450494999874, + 75.3181041570001 + ], + [ + -21.300825533999955, + 75.35616269200005 + ], + [ + -21.40638956999993, + 75.45451141700005 + ], + [ + -20.705564562999825, + 75.29477195600003 + ], + [ + -20.180833451999945, + 75.33505840000004 + ], + [ + -19.965841490999935, + 75.28892725500009 + ], + [ + -20.048343557999942, + 75.21726785000016 + ], + [ + -19.882776494999916, + 75.14476924900009 + ], + [ + -19.609996507999938, + 75.13198165000011 + ], + [ + -19.386104474999968, + 75.25866757900013 + ], + [ + -19.34221649499989, + 75.40728308100017 + ], + [ + -19.414443521999942, + 75.57034864900015 + ], + [ + -19.60248950799985, + 75.66701948500014 + ], + [ + -19.59443248799994, + 75.788960083 + ], + [ + -19.946386590999964, + 75.93286042900019 + ], + [ + -20.333332456999926, + 75.92230090800018 + ], + [ + -20.360288489999903, + 75.98008977200004 + ], + [ + -20.005004591999977, + 76.05397775700015 + ], + [ + -19.745565577999912, + 76.04953652200015 + ], + [ + -19.671115501999964, + 76.11399436300013 + ], + [ + -19.90417247599993, + 76.25511711400009 + ], + [ + -20.434457436999878, + 76.21954683200005 + ], + [ + -21.01500347399991, + 76.31038771900006 + ], + [ + -21.536109579999902, + 76.21760893600015 + ], + [ + -21.707231497999885, + 76.24901290900016 + ], + [ + -21.565002502999903, + 76.37289190600006 + ], + [ + -21.757219491999933, + 76.43817318600009 + ], + [ + -21.67778251899989, + 76.52291104200009 + ], + [ + -21.90721851099994, + 76.61735380100004 + ], + [ + -22.460557560999973, + 76.63958746900005 + ], + [ + -22.69195357699988, + 76.72708766500011 + ], + [ + -22.3122134649999, + 76.75542537100017 + ], + [ + -22.47110149199989, + 76.82903859800012 + ], + [ + -22.266946493999967, + 76.8576503920001 + ], + [ + -21.938056538999945, + 76.76598472500007 + ], + [ + -21.804988460999937, + 76.68484857300007 + ], + [ + -21.51557156999985, + 76.68623644900015 + ], + [ + -21.221376491999877, + 76.80721698300016 + ], + [ + -21.021127459999946, + 76.79458160000019 + ], + [ + -20.580566581999904, + 76.91820092500012 + ], + [ + -19.871103520999895, + 76.95877671300008 + ], + [ + -19.35916554099998, + 76.86125109000011 + ], + [ + -18.910839499999952, + 76.85514822600004 + ], + [ + -18.68750352199993, + 76.79375799400009 + ], + [ + -18.329994563999946, + 76.80208960600004 + ], + [ + -18.13111345999988, + 76.93376628700014 + ], + [ + -18.14471644999992, + 77.08656234700004 + ], + [ + -18.25888652099991, + 77.29961959700012 + ], + [ + -18.386123475999966, + 77.33712911700019 + ], + [ + -18.968885520999947, + 77.37184444500019 + ], + [ + -19.036397559999898, + 77.22434340100017 + ], + [ + -19.456100574999937, + 77.2612874780001 + ], + [ + -19.523050523999927, + 77.35267838600004 + ], + [ + -20.008316449999825, + 77.44213173300017 + ], + [ + -20.4480605949999, + 77.48018976400004 + ], + [ + -20.248046591999923, + 77.56047180000013 + ], + [ + -20.868894495999882, + 77.68047483800007 + ], + [ + -20.597780496999917, + 77.7213257190001 + ], + [ + -19.967491551999956, + 77.71160472300016 + ], + [ + -19.303335527999934, + 77.57937869200003 + ], + [ + -18.958335554999962, + 77.6254788240002 + ], + [ + -19.23999549699994, + 77.76216134600014 + ], + [ + -19.92946051099989, + 77.82049888900008 + ], + [ + -20.36221146599985, + 77.87966104400016 + ], + [ + -20.8544405749999, + 78.01413074300007 + ], + [ + -21.089151465999976, + 77.95133687700019 + ], + [ + -21.366939471999956, + 77.8063230790001 + ], + [ + -21.50695245899982, + 77.6827024120002 + ], + [ + -22.03945543899988, + 77.68741823900018 + ], + [ + -21.897205489999862, + 77.80575813900003 + ], + [ + -21.58970246299998, + 77.95828078100004 + ], + [ + -21.70693058799992, + 78.01162757200018 + ], + [ + -21.466669534999937, + 78.06828756099998 + ], + [ + -21.488899515999947, + 78.12883876500018 + ], + [ + -21.278888584999947, + 78.21690406900012 + ], + [ + -21.361961459999918, + 78.31609266100008 + ], + [ + -21.07639353899998, + 78.54970468500017 + ], + [ + -20.903882571999816, + 78.62914853100011 + ], + [ + -21.120281518999946, + 78.76889849400015 + ], + [ + -20.664461553999956, + 78.89085451500017 + ], + [ + -20.158340446999944, + 78.86250105100004 + ], + [ + -19.92388352699993, + 78.9738978850001 + ], + [ + -20.091110542999957, + 79.0628027200001 + ], + [ + -19.568616560999942, + 79.1930754330001 + ], + [ + -19.191392528999927, + 79.31643592600011 + ], + [ + -19.59806654499988, + 79.32643184800008 + ], + [ + -19.64723344799995, + 79.40338677200003 + ] + ] + ], + [ + [ + [ + -24.896669543999963, + 72.77656174700007 + ], + [ + -24.863889596999968, + 72.87016547700017 + ], + [ + -25.13332755099998, + 72.88212896700009 + ], + [ + -25.280586525999865, + 72.82721660500016 + ], + [ + -24.896669543999963, + 72.77656174700007 + ] + ] + ], + [ + [ + [ + -22.42778951599996, + 72.99462282500008 + ], + [ + -23.327499483999873, + 73.05795112100003 + ], + [ + -23.792503499999953, + 73.00991409900018 + ], + [ + -24.564722540999924, + 72.97739466100018 + ], + [ + -24.541391512999894, + 72.89656377800009 + ], + [ + -23.87611147599995, + 72.9057355920001 + ], + [ + -23.575544473999912, + 72.85905576700003 + ], + [ + -23.114707604999865, + 72.8671127880001 + ], + [ + -22.789442486999917, + 72.80543338000018 + ], + [ + -22.74415254999991, + 72.7471105890001 + ], + [ + -22.49500047799995, + 72.70711482900003 + ], + [ + -21.865837557999896, + 72.71266934800013 + ], + [ + -22.07444954999994, + 72.82600357600006 + ], + [ + -21.906660443999954, + 72.91905711800007 + ], + [ + -22.119443437999962, + 72.92877794700013 + ], + [ + -22.42778951599996, + 72.99462282500008 + ] + ] + ], + [ + [ + [ + -24.15723246199991, + 73.3896525340001 + ], + [ + -24.877218498999923, + 73.42381834500003 + ], + [ + -25.243057559999954, + 73.40465245300015 + ], + [ + -25.285013511999978, + 73.33131381800007 + ], + [ + -25.70750954399989, + 73.17908353600006 + ], + [ + -25.493045475999963, + 73.12573523700019 + ], + [ + -25.02862752199991, + 73.11157401200006 + ], + [ + -24.899450491999914, + 73.0760186490001 + ], + [ + -24.386934494999878, + 73.02241134900004 + ], + [ + -23.009164523999914, + 73.09379582700018 + ], + [ + -23.268320564999954, + 73.25658747400013 + ], + [ + -23.850009558999943, + 73.36075089400015 + ], + [ + -24.15723246199991, + 73.3896525340001 + ] + ] + ], + [ + [ + [ + -20.537494495999965, + 74.40166307300007 + ], + [ + -21.05777146399987, + 74.45166984300016 + ], + [ + -21.34639358299995, + 74.44526120700016 + ], + [ + -21.84139659899995, + 74.34942889600018 + ], + [ + -21.968059560999848, + 74.20969620000005 + ], + [ + -21.396110506999946, + 74.12773627400009 + ], + [ + -21.283054557999947, + 74.0802467580001 + ], + [ + -20.780839585999956, + 74.10829445000013 + ], + [ + -20.142505522999897, + 74.17719335900006 + ], + [ + -20.46277854699997, + 74.30442847000006 + ], + [ + -20.537494495999965, + 74.40166307300007 + ] + ] + ], + [ + [ + [ + -18.736114536999935, + 74.56250173700016 + ], + [ + -18.866661505999843, + 74.67389773300016 + ], + [ + -19.217781441999932, + 74.58610836100013 + ], + [ + -19.07304944299989, + 74.54249614600019 + ], + [ + -18.736114536999935, + 74.56250173700016 + ] + ] + ], + [ + [ + [ + -19.74528646099992, + 74.87584577600018 + ], + [ + -19.98443053999995, + 74.91697024300015 + ], + [ + -19.993049483999982, + 75.00781263900018 + ], + [ + -20.295297559999938, + 75.04864675699997 + ], + [ + -20.613626484999884, + 74.97808622000002 + ], + [ + -20.540817585999832, + 74.92696583000003 + ], + [ + -20.68444853699998, + 74.80528423300018 + ], + [ + -20.450822599999924, + 74.73000870700008 + ], + [ + -20.084432512999967, + 74.70168558600011 + ], + [ + -19.88110950199996, + 74.77418519300005 + ], + [ + -19.74528646099992, + 74.87584577600018 + ] + ] + ], + [ + [ + [ + -18.08972345399991, + 75.2489470860001 + ], + [ + -18.552509450999935, + 75.37255216200003 + ], + [ + -18.797220455999877, + 75.32866434900006 + ], + [ + -18.903322441999876, + 74.99835047600004 + ], + [ + -18.453035538999927, + 74.97808622000002 + ], + [ + -18.05860345899987, + 75.03087008100016 + ], + [ + -17.495819512999958, + 74.97669717100013 + ], + [ + -17.4005605239999, + 75.01004021400018 + ], + [ + -17.41444045299994, + 75.16031835000013 + ], + [ + -17.875007592999964, + 75.09920337900007 + ], + [ + -18.136157520999973, + 75.20475534500002 + ], + [ + -18.08972345399991, + 75.2489470860001 + ] + ] + ], + [ + [ + [ + -18.722509534999915, + 76.50902507800009 + ], + [ + -18.650562462999915, + 76.6187428500001 + ], + [ + -18.765554463999933, + 76.69903963800016 + ], + [ + -19.08333353599994, + 76.72763651200017 + ], + [ + -18.984661435999897, + 76.61003656700012 + ], + [ + -19.128892531999952, + 76.49455858400006 + ], + [ + -18.88611255099994, + 76.27733536000011 + ], + [ + -18.89359658399991, + 76.21983651000005 + ], + [ + -18.65222358899996, + 76.17816168700006 + ], + [ + -18.722509534999915, + 76.50902507800009 + ] + ] + ], + [ + [ + [ + -21.07304345999995, + 76.64291407900015 + ], + [ + -21.451383458999942, + 76.64041191300004 + ], + [ + -21.430280508999942, + 76.57068973400004 + ], + [ + -21.18862353399993, + 76.55457485500011 + ], + [ + -21.07304345999995, + 76.64291407900015 + ] + ] + ], + [ + [ + [ + -17.660835549999945, + 77.78465334500015 + ], + [ + -17.94832443499996, + 77.81299138600014 + ], + [ + -18.24081446699995, + 77.68464064400013 + ], + [ + -17.817499522999924, + 77.68242748600017 + ], + [ + -17.660835549999945, + 77.78465334500015 + ] + ] + ], + [ + [ + [ + -19.922771583999975, + 77.93549658900014 + ], + [ + -20.13389546399992, + 77.97161722700002 + ], + [ + -20.490837469999974, + 77.95383904300007 + ], + [ + -19.775829444999943, + 77.8296698650002 + ], + [ + -19.281118454999955, + 77.80104298300017 + ], + [ + -19.334726592999857, + 77.88883252200014 + ], + [ + -19.69888843599989, + 77.88384260800007 + ], + [ + -19.922771583999975, + 77.93549658900014 + ] + ] + ], + [ + [ + [ + -19.285270514999922, + 78.83639159000006 + ], + [ + -19.745828601999904, + 78.80639141700004 + ], + [ + -19.529741461999834, + 78.7294514130001 + ], + [ + -19.163341483999943, + 78.7661208990001 + ], + [ + -19.285270514999922, + 78.83639159000006 + ] + ] + ], + [ + [ + [ + -17.903596587999914, + 79.04668867900006 + ], + [ + -17.60720444499998, + 79.08697428500017 + ], + [ + -17.571386560999827, + 79.17529791900017 + ], + [ + -17.786094542999933, + 79.23169790200012 + ], + [ + -18.085287582999968, + 79.09530572900013 + ], + [ + -17.903596587999914, + 79.04668867900006 + ] + ] + ], + [ + [ + [ + -19.91891054399997, + 80.16398430400011 + ], + [ + -19.750833435999937, + 80.07204287200005 + ], + [ + -19.01890151099991, + 80.16288526800014 + ], + [ + -19.656927454999845, + 80.24760837200012 + ], + [ + -19.91891054399997, + 80.16398430400011 + ] + ] + ], + [ + [ + [ + -32.29917550299996, + 83.5728439790002 + ], + [ + -32.52226253899988, + 83.6220110490001 + ], + [ + -33.688610568999934, + 83.60368318000019 + ], + [ + -34.08140951899992, + 83.56590024200005 + ], + [ + -34.813323506999836, + 83.59646418200009 + ], + [ + -35.199462531999984, + 83.5345098470001 + ], + [ + -36.53113153299989, + 83.54339097700006 + ], + [ + -37.21002160199993, + 83.449222809 + ], + [ + -37.95053056199998, + 83.48700591400006 + ], + [ + -38.07580950399995, + 83.39199737700005 + ], + [ + -38.79918250099996, + 83.43283250000019 + ], + [ + -38.85084553499996, + 83.26032019200005 + ], + [ + -38.70943846899996, + 83.2100391670001 + ], + [ + -37.798866560999954, + 83.17753565500016 + ], + [ + -37.82721751099996, + 83.12197403000005 + ], + [ + -38.65386946899997, + 83.07781212900016 + ], + [ + -38.67418250799983, + 83.03836488100012 + ], + [ + -39.44694855199998, + 82.95724381600002 + ], + [ + -40.55333747599997, + 82.96696397400012 + ], + [ + -41.569454476999965, + 83.13003071600019 + ], + [ + -41.97694354999987, + 83.22087344700014 + ], + [ + -42.65109650199997, + 83.27199417200012 + ], + [ + -43.231948478999925, + 83.20892487600014 + ], + [ + -44.26471361599994, + 83.162534898 + ], + [ + -45.13581447099989, + 83.1597568000002 + ], + [ + -45.48220047599989, + 83.10253287600017 + ], + [ + -46.49667747299992, + 83.04836030100012 + ], + [ + -46.88999157399991, + 82.96058517800009 + ], + [ + -46.53697548399998, + 82.88558357300008 + ], + [ + -46.04556260499993, + 82.84584631100006 + ], + [ + -43.800266492999924, + 82.8369641760001 + ], + [ + -42.66805661299992, + 82.85417842600015 + ], + [ + -41.603881467999884, + 82.82169016900008 + ], + [ + -40.723331524999935, + 82.74027875500002 + ], + [ + -40.13528452299994, + 82.71389336200014 + ], + [ + -39.86860253799995, + 82.62888058000016 + ], + [ + -40.011966609999945, + 82.55943332700014 + ], + [ + -40.605846578999945, + 82.56999368700014 + ], + [ + -41.379741496999884, + 82.72167696500014 + ], + [ + -42.57194853699997, + 82.77974042000005 + ], + [ + -44.21585449599985, + 82.76196307400016 + ], + [ + -45.60778451899989, + 82.78167831600018 + ], + [ + -45.66972359899995, + 82.72445305200006 + ], + [ + -44.57609159599997, + 82.55192498600019 + ], + [ + -44.43830852999997, + 82.48971064500017 + ], + [ + -43.73029352699996, + 82.40608691099999 + ], + [ + -43.83028460299994, + 82.33525027400015 + ], + [ + -44.70861049099989, + 82.25220573000013 + ], + [ + -44.793884620999904, + 82.18301764500006 + ], + [ + -44.51721559899994, + 82.11022886300003 + ], + [ + -44.92526659499998, + 81.98911086499999 + ], + [ + -44.522792581999965, + 81.93744045500011 + ], + [ + -44.289154574999884, + 81.80799084500012 + ], + [ + -45.134445537999966, + 81.78105727600018 + ], + [ + -45.95331959299995, + 81.96383959400009 + ], + [ + -46.39276550999995, + 82.09718075400019 + ], + [ + -47.60278359199998, + 82.17550980700003 + ], + [ + -47.942230553999934, + 82.28275692900007 + ], + [ + -48.76364147599992, + 82.3605361290002 + ], + [ + -49.12084952299989, + 82.46109885000004 + ], + [ + -49.61029047599993, + 82.50277350500005 + ], + [ + -50.370830507999926, + 82.51777375900008 + ], + [ + -51.10226052499996, + 82.50197320100011 + ], + [ + -50.864467607999984, + 82.37358356700008 + ], + [ + -50.67695957199993, + 82.17662443200015 + ], + [ + -50.11446362799995, + 82.0377284180002 + ], + [ + -49.43721356299994, + 81.92382874700007 + ], + [ + -49.82054850499992, + 81.86965583600016 + ], + [ + -51.0655554999999, + 81.93161201500016 + ], + [ + -51.91029761699997, + 81.92327872700008 + ], + [ + -52.76248554599994, + 82.03135012500007 + ], + [ + -53.02806849499996, + 82.01134436600012 + ], + [ + -52.930835568999896, + 81.86243750900007 + ], + [ + -53.5405575019999, + 81.675474129 + ], + [ + -53.81945761899982, + 81.69714252200009 + ], + [ + -53.581935604999956, + 81.80660313700008 + ], + [ + -53.49998456399993, + 81.944108594 + ], + [ + -53.568351557999904, + 82.12162724500007 + ], + [ + -54.07166657099992, + 82.31358070700014 + ], + [ + -54.501121594999915, + 82.36487024300015 + ], + [ + -55.34196461799996, + 82.29830569400008 + ], + [ + -55.349998504999974, + 82.24636086100014 + ], + [ + -56.08805458399996, + 82.25776058500009 + ], + [ + -57.07694246999995, + 82.18634341700005 + ], + [ + -58.589706511999964, + 82.10273644700004 + ], + [ + -59.373886527999844, + 82.01273240900014 + ], + [ + -59.41001152499996, + 81.97606258800016 + ], + [ + -58.468891603999964, + 81.86605480300005 + ], + [ + -58.3366585309999, + 81.75021639800013 + ], + [ + -57.81362156999995, + 81.65159291400005 + ], + [ + -58.43027852299997, + 81.64104747300013 + ], + [ + -58.748050553999974, + 81.70799323100005 + ], + [ + -58.84001159899992, + 81.85549477800015 + ], + [ + -60.06248854099988, + 81.944108594 + ], + [ + -61.21805157699998, + 81.8174528400001 + ], + [ + -61.453323552999905, + 81.73604058800015 + ], + [ + -60.7791675819999, + 81.50686678200009 + ], + [ + -61.30832249499991, + 81.35935081800011 + ], + [ + -61.0950166369999, + 81.22350682200005 + ], + [ + -60.45415459299994, + 81.32237656700016 + ], + [ + -59.81946950799994, + 81.32683171600013 + ], + [ + -59.293102583999826, + 81.42877527200011 + ], + [ + -58.9461746049999, + 81.36799507500007 + ], + [ + -58.205589537999856, + 81.36420327000013 + ], + [ + -56.9577715879999, + 81.24143722200017 + ], + [ + -56.04206458999994, + 81.26002342200002 + ], + [ + -55.73276548999996, + 81.20088507100013 + ], + [ + -55.258789483999976, + 81.22099711300012 + ], + [ + -54.62259247099996, + 81.19371988500006 + ], + [ + -54.19600657299992, + 81.20465391000016 + ], + [ + -53.33470147999998, + 81.30057691300016 + ], + [ + -52.81119949099991, + 81.26156502100014 + ], + [ + -52.462985560999925, + 81.17974171999998 + ], + [ + -52.10220346999989, + 81.181359595 + ], + [ + -51.31196249899995, + 81.2476031170001 + ], + [ + -50.77861059999998, + 81.2426888080002 + ], + [ + -49.829891476999876, + 81.34259589700014 + ], + [ + -49.82715260699996, + 81.43215485600012 + ], + [ + -50.15162261699993, + 81.57935934800014 + ], + [ + -49.328231553999956, + 81.64342776600017 + ], + [ + -48.56212258599987, + 81.37419064300008 + ], + [ + -47.959823497999935, + 81.3321956310001 + ], + [ + -46.74196649399988, + 81.39477676400008 + ], + [ + -46.50548551199995, + 81.43941140500004 + ], + [ + -46.065002585999935, + 81.34335060300009 + ], + [ + -45.18662657399983, + 81.41805498600002 + ], + [ + -45.0050735449999, + 81.46316270100004 + ], + [ + -44.91611858599998, + 81.60805512900004 + ], + [ + -43.994762520999984, + 81.71466070000002 + ], + [ + -43.88095454899991, + 81.78935804200006 + ], + [ + -43.263736510999934, + 81.85969830300007 + ], + [ + -43.13276256899991, + 81.98933197899999 + ], + [ + -42.24105061299997, + 82.12788366500013 + ], + [ + -41.957309611999904, + 82.19377581800012 + ], + [ + -42.38914459299991, + 82.30346458800005 + ], + [ + -42.05978055799994, + 82.35250207500019 + ], + [ + -41.24967950599995, + 82.26595540400018 + ], + [ + -39.8566554759999, + 82.22582167800005 + ], + [ + -38.77475361199993, + 82.10171335200005 + ], + [ + -38.57946750499991, + 81.97195830600003 + ], + [ + -38.025440467999886, + 81.92343865300012 + ], + [ + -37.6146314909999, + 81.95616478800014 + ], + [ + -37.7108074599999, + 82.04477843600012 + ], + [ + -36.84102658699993, + 82.07233813400012 + ], + [ + -36.688529592999885, + 82.00488879200014 + ], + [ + -37.12280655799998, + 81.94223305900016 + ], + [ + -37.32545448999997, + 81.80127593499998 + ], + [ + -37.11699655799987, + 81.76462220700006 + ], + [ + -36.47391146499996, + 81.75582439400011 + ], + [ + -35.09853352099992, + 81.8363813570001 + ], + [ + -34.85094048299993, + 81.78316314500006 + ], + [ + -35.86284658299985, + 81.731378238 + ], + [ + -36.20028356499995, + 81.65169148500007 + ], + [ + -36.14278052399993, + 81.53544119300011 + ], + [ + -35.69183346199998, + 81.48783952700006 + ], + [ + -34.84484046899996, + 81.5190300970001 + ], + [ + -34.29314058399996, + 81.61727270800003 + ], + [ + -34.00239951999998, + 81.72139019500003 + ], + [ + -33.620998449999945, + 81.7602507100001 + ], + [ + -32.61523460899991, + 81.44067724000007 + ], + [ + -31.775741574999927, + 81.38800133700005 + ], + [ + -30.874896529999887, + 81.35518484500011 + ], + [ + -29.88182255499993, + 81.36920827200004 + ], + [ + -27.80546956899991, + 81.47781326200015 + ], + [ + -27.35688251499994, + 81.43861026200011 + ], + [ + -27.6289025989999, + 81.37997398800013 + ], + [ + -28.071046482999975, + 81.35796931300013 + ], + [ + -28.80859545699991, + 81.27524613100002 + ], + [ + -29.62138760299996, + 81.12417976100011 + ], + [ + -29.92992059799991, + 81.02416689200004 + ], + [ + -29.74664659699988, + 80.79774134400003 + ], + [ + -29.45298745699995, + 80.75731844300003 + ], + [ + -29.223800574999927, + 80.64061737200018 + ], + [ + -28.518562495999902, + 80.59418950800011 + ], + [ + -28.013650562999942, + 80.61796511100005 + ], + [ + -26.955667463999816, + 80.4981893910001 + ], + [ + -27.119306521999874, + 80.42212747600007 + ], + [ + -27.49270857399995, + 80.35103938100013 + ], + [ + -26.27413944299991, + 80.30678511200006 + ], + [ + -25.590629603999957, + 80.168249184 + ], + [ + -25.42337744299988, + 80.02728602400003 + ], + [ + -25.06709660199988, + 79.87434361600015 + ], + [ + -24.988731506999898, + 79.78727223800018 + ], + [ + -24.32863450299982, + 79.62856894800018 + ], + [ + -23.861579601999892, + 79.58964875400011 + ], + [ + -23.262174450999964, + 79.58592534500013 + ], + [ + -22.10424453299987, + 79.61912338100018 + ], + [ + -21.544301548999954, + 79.64678215300017 + ], + [ + -21.171565522999913, + 79.69581176000014 + ], + [ + -20.862409584999966, + 79.789292612 + ], + [ + -20.46528657999994, + 79.98896899200014 + ], + [ + -20.043334532999893, + 80.23481993500008 + ], + [ + -19.597490540999956, + 80.28539131000008 + ], + [ + -19.08222159199994, + 80.24037428700007 + ], + [ + -18.31141255599988, + 80.210663458 + ], + [ + -17.428598492999924, + 80.22566471699997 + ], + [ + -16.90861556199991, + 80.25983052800007 + ], + [ + -16.617790511999885, + 80.32567758600004 + ], + [ + -16.607797438999967, + 80.40289234900007 + ], + [ + -16.125270550999915, + 80.4967865960001 + ], + [ + -16.21276454499997, + 80.53789681400019 + ], + [ + -17.04001446799998, + 80.56539431800019 + ], + [ + -17.53303750999993, + 80.62568719100005 + ], + [ + -17.86137543299992, + 80.56902619600015 + ], + [ + -18.547759593999956, + 80.5442903620002 + ], + [ + -18.891111517999946, + 80.58402645000012 + ], + [ + -20.12692859399982, + 80.643463531 + ], + [ + -20.05164351299993, + 80.6870767530001 + ], + [ + -19.365829488999907, + 80.64097695600009 + ], + [ + -18.67721959799991, + 80.61874278400018 + ], + [ + -17.996944502999952, + 80.72541004600004 + ], + [ + -17.06582050399993, + 80.73958535300011 + ], + [ + -16.638610488999916, + 80.70569363100003 + ], + [ + -16.004995436999934, + 80.727911877 + ], + [ + -15.938622498999905, + 80.81458779600018 + ], + [ + -15.054723482999975, + 80.867081644 + ], + [ + -14.69666048099998, + 80.91348754800003 + ], + [ + -15.140264492999961, + 81.08822894000008 + ], + [ + -14.949737463999952, + 81.13545777900009 + ], + [ + -14.374155524999935, + 81.12515692300013 + ], + [ + -13.975005438999972, + 81.15073329500012 + ], + [ + -13.668888444999936, + 81.27351325600011 + ], + [ + -13.19888344899988, + 81.32741174400013 + ], + [ + -13.113349479999954, + 81.40296269900017 + ], + [ + -12.60390645699988, + 81.4749134590001 + ], + [ + -12.165838524999856, + 81.60852887400006 + ], + [ + -12.534985587999927, + 81.64104747300013 + ], + [ + -13.16917546999997, + 81.78021824700011 + ], + [ + -13.910282561999963, + 81.8216181430002 + ], + [ + -14.768066584999872, + 81.91772471000013 + ], + [ + -15.663048488999948, + 81.9007862250001 + ], + [ + -15.99946354899987, + 81.92772012900019 + ], + [ + -16.883073556999875, + 81.91244444600005 + ], + [ + -17.784187492999877, + 81.73715437499999 + ], + [ + -18.06525852299984, + 81.5693716400001 + ], + [ + -17.967491500999927, + 81.47518771400019 + ], + [ + -18.395578597999872, + 81.44851348100013 + ], + [ + -18.994691556999953, + 81.5449109 + ], + [ + -19.49528144599998, + 81.56157378800009 + ], + [ + -20.305540580999946, + 81.45046763800013 + ], + [ + -20.19609253899995, + 81.59632029700009 + ], + [ + -20.76918756699996, + 81.57993149700013 + ], + [ + -21.448326578999968, + 81.41379714700008 + ], + [ + -21.759454442999925, + 81.24517521500013 + ], + [ + -22.090568451999957, + 81.20434109800004 + ], + [ + -23.032796461999908, + 80.93848322200017 + ], + [ + -23.579729557999883, + 80.86209223300011 + ], + [ + -23.90806044099992, + 80.88266293200013 + ], + [ + -23.005834560999915, + 81.16100297000014 + ], + [ + -22.231094579999876, + 81.4651929650002 + ], + [ + -21.973607542999957, + 81.73243922000006 + ], + [ + -22.031118462999927, + 81.95079282699999 + ], + [ + -22.301376501999982, + 82.08384313400012 + ], + [ + -23.514999472999875, + 82.04856353600013 + ], + [ + -24.03722154499991, + 82.00246273400012 + ], + [ + -24.21056550599991, + 81.70771830500018 + ], + [ + -24.922521511999946, + 81.69325130800019 + ], + [ + -25.135847485999932, + 81.64243635500009 + ], + [ + -26.54750046299995, + 81.49269147500007 + ], + [ + -26.9891605439999, + 81.40685391300008 + ], + [ + -27.5969274819999, + 81.50409036100018 + ], + [ + -26.865543564999882, + 81.55852193700008 + ], + [ + -25.317501600999947, + 81.77548800400012 + ], + [ + -25.238874486999975, + 81.99577984200016 + ], + [ + -27.370004551999955, + 82.02411620700019 + ], + [ + -28.997217447999958, + 81.99384077300004 + ], + [ + -30.782205588999943, + 81.86826729000006 + ], + [ + -31.71555347499998, + 81.82383046300009 + ], + [ + -32.41138454399987, + 81.7332629930001 + ], + [ + -33.05194852799997, + 81.67854090000003 + ], + [ + -33.049457593999875, + 81.81827560800014 + ], + [ + -32.77221659099996, + 81.85993601400008 + ], + [ + -29.240262464999944, + 82.13607798200019 + ], + [ + -28.010822507999876, + 82.18552132000019 + ], + [ + -26.163904507999916, + 82.14357023000014 + ], + [ + -25.068889490999936, + 82.15190301500007 + ], + [ + -23.696655598999882, + 82.29496533800011 + ], + [ + -23.04999545599992, + 82.28940998100006 + ], + [ + -22.518060601999878, + 82.326369312 + ], + [ + -22.3077544599999, + 82.42053831800013 + ], + [ + -21.398616527999934, + 82.55554194500002 + ], + [ + -21.364452560999894, + 82.62444018300005 + ], + [ + -21.798072552999884, + 82.6941621950001 + ], + [ + -24.025556450999943, + 82.86501287400006 + ], + [ + -25.13358655199994, + 82.89168677200013 + ], + [ + -24.7675285549999, + 82.98835878200003 + ], + [ + -25.188341501999957, + 83.16280898600013 + ], + [ + -26.611915556999975, + 83.0625210230001 + ], + [ + -28.26221053699993, + 83.07976528000017 + ], + [ + -28.06027758099998, + 83.13837825300016 + ], + [ + -26.868894481999973, + 83.14782499300014 + ], + [ + -26.03889244499993, + 83.20614761700017 + ], + [ + -25.6719474759999, + 83.27698341600012 + ], + [ + -26.09996248899995, + 83.36921603400009 + ], + [ + -27.432861449999848, + 83.4661297780001 + ], + [ + -28.39194144399994, + 83.46228550200016 + ], + [ + -28.613061581999887, + 83.5111773110001 + ], + [ + -29.856941545999973, + 83.57812256600005 + ], + [ + -30.84446150499997, + 83.5725687170002 + ], + [ + -31.75224458599996, + 83.60173086700007 + ], + [ + -32.29917550299996, + 83.5728439790002 + ] + ] + ], + [ + [ + [ + -19.059457516999885, + 81.7332629930001 + ], + [ + -18.660001491999935, + 81.64937992300014 + ], + [ + -18.30584143999988, + 81.66631790600013 + ], + [ + -18.835557436999864, + 81.80799084500012 + ], + [ + -19.059457516999885, + 81.7332629930001 + ] + ] + ], + [ + [ + [ + -20.272222515999886, + 81.90994161000009 + ], + [ + -19.753044582999962, + 81.90272428800017 + ], + [ + -20.19305745199989, + 82.09162657000019 + ], + [ + -20.745820496999954, + 82.06495233600009 + ], + [ + -20.272222515999886, + 81.90994161000009 + ] + ] + ], + [ + [ + [ + -40.38475460399991, + 83.08725803100009 + ], + [ + -39.530273553999905, + 82.99919205700013 + ], + [ + -39.277481556999874, + 83.08086297400007 + ], + [ + -40.43082858499997, + 83.17170654400019 + ], + [ + -40.38475460399991, + 83.08725803100009 + ] + ] + ], + [ + [ + [ + -39.627807558999905, + 83.25059936400004 + ], + [ + -40.50889260199989, + 83.35893026600007 + ], + [ + -40.66221957199991, + 83.27004085300007 + ], + [ + -40.0841674859999, + 83.25699274400006 + ], + [ + -39.493076511999845, + 83.14753464400019 + ], + [ + -38.79942658199991, + 83.16670120700002 + ], + [ + -39.627807558999905, + 83.25059936400004 + ] + ] + ], + [ + [ + [ + 12.063632447000089, + 63.19995421900006 + ], + [ + 12.244197585000052, + 63.41013765000008 + ], + [ + 12.049660485000118, + 63.37486593100016 + ], + [ + 11.99922255100006, + 63.30352386500016 + ], + [ + 11.759524595000187, + 63.30971105000003 + ], + [ + 11.575198497000088, + 63.38534163300005 + ], + [ + 11.286647457000015, + 63.363745492000135 + ], + [ + 11.182855523000057, + 63.3043779800002 + ], + [ + 11.323919433000185, + 63.11731653300012 + ], + [ + 11.477324522000117, + 63.062561247000076 + ], + [ + 11.728974569000059, + 63.07023337100003 + ], + [ + 11.787398446000168, + 62.921213023000064 + ], + [ + 11.663116447000107, + 62.90226506000005 + ], + [ + 11.49772255400012, + 62.96747190800011 + ], + [ + 11.0657745850001, + 63.042819351 + ], + [ + 11.122650492, + 62.97658924000007 + ], + [ + 11.281925428000022, + 62.94034086100015 + ], + [ + 11.298823512000183, + 62.847853768 + ], + [ + 11.173013492000052, + 62.78459185700018 + ], + [ + 11.09338843, + 62.88070311700005 + ], + [ + 10.869495558000153, + 62.91528467000012 + ], + [ + 10.543400464000172, + 62.88668461100008 + ], + [ + 10.237391427999967, + 62.92941538600007 + ], + [ + 10.05083457100011, + 62.83676015100008 + ], + [ + 9.879366481000034, + 62.57416803300009 + ], + [ + 9.801581581000164, + 62.643792982000036 + ], + [ + 9.932456450000018, + 62.77931561600019 + ], + [ + 9.675845489000153, + 62.785251009000035 + ], + [ + 9.582109493000132, + 62.85270202800007 + ], + [ + 9.598238454000182, + 62.97374743900002 + ], + [ + 9.530825489000051, + 63.039581086000055 + ], + [ + 9.365023565000172, + 62.99841839800001 + ], + [ + 9.141118454999969, + 62.99842644400013 + ], + [ + 8.968960534000075, + 62.95508529900013 + ], + [ + 8.807229533000168, + 62.969982121000044 + ], + [ + 8.737737521000042, + 63.057773672 + ], + [ + 8.499999589000026, + 63.04682539700019 + ], + [ + 8.39971145900006, + 62.93926160700005 + ], + [ + 8.297114449000162, + 62.941832840000075 + ], + [ + 7.946169527000052, + 63.07280058000009 + ], + [ + 7.865093557000023, + 63.024466671000084 + ], + [ + 7.974266505000116, + 62.96786116400017 + ], + [ + 7.76291547500017, + 62.93409634300002 + ], + [ + 7.688407564000102, + 62.95848868700017 + ], + [ + 7.413796467000168, + 62.882256116000065 + ], + [ + 7.28089351300008, + 63.011770937 + ], + [ + 7.062584498000092, + 62.97877557500004 + ], + [ + 6.895070486000122, + 62.90981866400011 + ], + [ + 6.97084557300002, + 62.82701686000007 + ], + [ + 6.976948437000146, + 62.71901000200006 + ], + [ + 7.344960590000085, + 62.74850239900019 + ], + [ + 7.503466570000114, + 62.65780853000007 + ], + [ + 7.343588472000079, + 62.59677084100008 + ], + [ + 7.076336519000108, + 62.58669545800018 + ], + [ + 7.022584547000122, + 62.647440115999984 + ], + [ + 6.706997510000122, + 62.642827722000106 + ], + [ + 6.234914474000107, + 62.579477969000095 + ], + [ + 6.397894546000146, + 62.38696895400017 + ], + [ + 6.213774475999969, + 62.353821377000145 + ], + [ + 5.96975246300002, + 62.265762611000014 + ], + [ + 5.982859581000071, + 62.19976585200004 + ], + [ + 5.67759854600007, + 62.16513853400005 + ], + [ + 5.447085479000123, + 62.189450411000166 + ], + [ + 5.391520502000162, + 62.12639905300006 + ], + [ + 5.533352530000059, + 62.09764946100006 + ], + [ + 5.500589514000126, + 62.02695280100011 + ], + [ + 5.289268492000019, + 62.11655937000012 + ], + [ + 5.290584451000143, + 62.1655423740001 + ], + [ + 5.091402435000077, + 62.19439875200004 + ], + [ + 5.082582494000121, + 62.09905359700008 + ], + [ + 5.28479456700012, + 62.06997258400003 + ], + [ + 5.271386539000105, + 61.90280541599998 + ], + [ + 5.390510483000185, + 61.93227166100007 + ], + [ + 5.641638505000174, + 61.90184451400006 + ], + [ + 5.913614499000175, + 61.91083175900019 + ], + [ + 5.90149946400004, + 61.850164214000074 + ], + [ + 5.764507482000056, + 61.83101458300007 + ], + [ + 5.680932532000043, + 61.876967361000084 + ], + [ + 5.392817518000186, + 61.90340438700008 + ], + [ + 5.268463435000172, + 61.81553672800004 + ], + [ + 5.114633551000168, + 61.79850704800003 + ], + [ + 4.968958588000021, + 61.734845655000186 + ], + [ + 4.982562584000107, + 61.625653093000096 + ], + [ + 5.174035428000025, + 61.63819258800015 + ], + [ + 5.325861534000126, + 61.59647283800007 + ], + [ + 5.2139205470001, + 61.50269610600003 + ], + [ + 4.935580508000157, + 61.39921078200001 + ], + [ + 5.05686245600009, + 61.31287332300013 + ], + [ + 4.965671541000063, + 61.24729951600017 + ], + [ + 5.083524452000063, + 61.15704418800004 + ], + [ + 5.390698573000066, + 61.06596039300018 + ], + [ + 5.587206425000034, + 61.14646572300006 + ], + [ + 6.165252476000035, + 61.16879746000012 + ], + [ + 6.359054483000023, + 61.10643207700002 + ], + [ + 5.903221442000074, + 61.112578359 + ], + [ + 5.616889427000046, + 61.01932063400005 + ], + [ + 5.606545488000108, + 60.92323200400011 + ], + [ + 5.851448438000034, + 60.82213082900006 + ], + [ + 6.12769752700018, + 60.901872903000026 + ], + [ + 6.293661557000121, + 60.869392693000066 + ], + [ + 6.324198506000187, + 60.77132861700005 + ], + [ + 5.999999567000145, + 60.74603974500002 + ], + [ + 5.999999567000145, + 60.466239914000084 + ], + [ + 5.930961518000061, + 60.39904940500014 + ], + [ + 6.108518559000117, + 60.35416766600014 + ], + [ + 6.547910496000043, + 60.427302453000095 + ], + [ + 6.22920958300017, + 60.26895925000014 + ], + [ + 6.089614517000086, + 60.17137562400012 + ], + [ + 6.139495558000135, + 60.10440622900012 + ], + [ + 6.017466447000118, + 60.04102278 + ], + [ + 5.999999567000145, + 59.964294839000104 + ], + [ + 5.822327527000084, + 59.93380667200006 + ], + [ + 5.812720525000145, + 59.823668631000146 + ], + [ + 5.949592478000056, + 59.73609433900015 + ], + [ + 5.718565433000094, + 59.66080473200009 + ], + [ + 5.527230555000074, + 59.727271045 + ], + [ + 5.234876478000047, + 59.528864859 + ], + [ + 5.261300428000027, + 59.427753123000116 + ], + [ + 5.346807575000128, + 59.30624268400004 + ], + [ + 5.900555494000116, + 59.3299217280001 + ], + [ + 6.130759436000119, + 59.30429372400005 + ], + [ + 6.154055427, + 59.24004744200005 + ], + [ + 5.915930587000105, + 59.075750572000175 + ], + [ + 6.073097474000065, + 58.920350086999974 + ], + [ + 6.195175535000033, + 58.92874657500016 + ], + [ + 6.295291502000111, + 58.85844302700008 + ], + [ + 6.257962528, + 58.67839387900017 + ], + [ + 6.382191553000155, + 58.57221226500013 + ], + [ + 6.613398474000121, + 58.53911883500007 + ], + [ + 6.707981546000042, + 58.43453849900004 + ], + [ + 6.828020457000036, + 58.40838042300004 + ], + [ + 6.752150487000165, + 58.30105099100007 + ], + [ + 6.773823574000062, + 58.242878069000085 + ], + [ + 6.913276483000061, + 58.168775339000035 + ], + [ + 7.112829481000063, + 58.24827199100014 + ], + [ + 7.156557535000104, + 58.44480079800013 + ], + [ + 7.209999542999981, + 58.499230531000194 + ], + [ + 7.348187455000016, + 58.514498167000056 + ], + [ + 7.340867539000101, + 58.72132213100008 + ], + [ + 7.400127427000029, + 58.72971543400007 + ], + [ + 7.472632566000073, + 58.56473476899998 + ], + [ + 7.69393844700005, + 58.5838745100001 + ], + [ + 7.720359546999987, + 58.755510238000056 + ], + [ + 7.852445433000184, + 58.74477201400009 + ], + [ + 7.858892457000138, + 58.6362362590001 + ], + [ + 7.99164152000003, + 58.61733372600008 + ], + [ + 8.09968156900004, + 58.653776900000196 + ], + [ + 8.15151542600006, + 58.75237926200015 + ], + [ + 8.327238506000128, + 58.849935563000145 + ], + [ + 8.062455526000065, + 59.10498748900011 + ], + [ + 7.997362503999966, + 59.11185377600003 + ], + [ + 7.955987586000163, + 59.22694384500005 + ], + [ + 7.863537539999982, + 59.27014635300009 + ], + [ + 7.985543517000053, + 59.32215053000016 + ], + [ + 7.86260145000017, + 59.385423673 + ], + [ + 7.783907449000139, + 59.62193617100007 + ], + [ + 7.906880529000034, + 59.61541991200016 + ], + [ + 8.082485424000026, + 59.71181749800007 + ], + [ + 8.08415543500007, + 59.54859166800003 + ], + [ + 8.284443526000075, + 59.49821274200002 + ], + [ + 8.457189521000146, + 59.5175804700001 + ], + [ + 8.445208429000047, + 59.61126181700007 + ], + [ + 8.501490562000185, + 59.67150590799997 + ], + [ + 8.710129543000164, + 59.66161760900013 + ], + [ + 8.825636528000189, + 59.68982874800008 + ], + [ + 8.934542427999986, + 59.779533888000174 + ], + [ + 8.755239437000114, + 59.94285493600012 + ], + [ + 9.029362539999966, + 60.070239916 + ], + [ + 8.957057561000113, + 60.12881315800013 + ], + [ + 8.86303155100012, + 60.28203971300019 + ], + [ + 8.958074454000155, + 60.30581481300004 + ], + [ + 9.112016488, + 60.26407209700017 + ], + [ + 9.26079845400011, + 60.13468417800004 + ], + [ + 9.527562581000097, + 60.157657298000174 + ], + [ + 9.576462437000089, + 60.30276665000014 + ], + [ + 9.528781478000155, + 60.36368582000006 + ], + [ + 9.157134428000063, + 60.446593068000084 + ], + [ + 9.02708450700004, + 60.58538145900013 + ], + [ + 8.870404440000073, + 60.66657662000017 + ], + [ + 8.10745243200006, + 60.49473285300013 + ], + [ + 8.036746552000068, + 60.53811574000008 + ], + [ + 8.206648568000105, + 60.59401498700004 + ], + [ + 8.460664491000045, + 60.618062667 + ], + [ + 8.615448571000115, + 60.66655382100015 + ], + [ + 8.982768545999988, + 60.72601185700006 + ], + [ + 9.116212468000072, + 60.7130145430001 + ], + [ + 9.282960541000023, + 60.60870159000007 + ], + [ + 9.38400656400006, + 60.61750963000003 + ], + [ + 9.411740437, + 60.730193254000085 + ], + [ + 9.133756462000065, + 60.85464104700003 + ], + [ + 9.09602851, + 60.96464648500006 + ], + [ + 9.156656492000138, + 61.0570988770001 + ], + [ + 8.969088441999986, + 61.165745442 + ], + [ + 8.961161509000078, + 61.24000541600009 + ], + [ + 9.190976530000114, + 61.19478856799998 + ], + [ + 9.342757542000015, + 61.05817394000013 + ], + [ + 9.53548850900006, + 61.08283400200003 + ], + [ + 9.841434512999967, + 61.0504148120001 + ], + [ + 9.961254489999988, + 61.11787354300009 + ], + [ + 10.205255546999979, + 61.038749382 + ], + [ + 10.267333431, + 61.07581466099998 + ], + [ + 9.936825433000138, + 61.2478106440002 + ], + [ + 9.610209488000123, + 61.332596109000065 + ], + [ + 9.715987430000155, + 61.369492577000074 + ], + [ + 10.021207561000153, + 61.26586224600004 + ], + [ + 10.134807495000018, + 61.27629570400018 + ], + [ + 10.18396953600012, + 61.39471255000018 + ], + [ + 10.067596533000028, + 61.5039399800001 + ], + [ + 9.910678589000156, + 61.504733076000036 + ], + [ + 9.679027427000165, + 61.545670794000046 + ], + [ + 9.43640754, + 61.5148005800001 + ], + [ + 9.418178577000162, + 61.55644003100019 + ], + [ + 9.64250144, + 61.641465721000145 + ], + [ + 9.30935951300006, + 61.70872127400003 + ], + [ + 9.324921522000068, + 61.74533191800015 + ], + [ + 9.141768556000045, + 61.82644024300009 + ], + [ + 8.563397455000029, + 61.824071349 + ], + [ + 8.208914532, + 61.8814805130001 + ], + [ + 8.850413434000131, + 61.875743436000164 + ], + [ + 9.139330428000108, + 61.896351183000036 + ], + [ + 9.090532496000037, + 62.019735647000175 + ], + [ + 8.88729347200018, + 62.090561388000026 + ], + [ + 8.704363464000096, + 62.11606735200013 + ], + [ + 8.144165503000067, + 62.25378805600019 + ], + [ + 8.23198655800013, + 62.29560604200009 + ], + [ + 8.48444244100017, + 62.24837083200015 + ], + [ + 8.620367574000056, + 62.196469751999985 + ], + [ + 9.166015558000026, + 62.08158889599997 + ], + [ + 9.327244483000186, + 62.01622111500018 + ], + [ + 9.616307490000054, + 61.778186297000104 + ], + [ + 9.779953588000069, + 61.71728573500013 + ], + [ + 9.854345494000029, + 61.65258616 + ], + [ + 10.207515476000026, + 61.60221393900014 + ], + [ + 10.37013747300017, + 61.4855834440001 + ], + [ + 10.409384561000081, + 61.37727902900002 + ], + [ + 10.539995568000165, + 61.294161563000046 + ], + [ + 10.677688444000069, + 61.10563093500019 + ], + [ + 10.758363591999967, + 61.060326078 + ], + [ + 11.011280479000163, + 61.071045526000034 + ], + [ + 11.18371047700009, + 60.95103896800009 + ], + [ + 11.300520512000105, + 60.99608348400017 + ], + [ + 11.192831497000157, + 61.10610400900009 + ], + [ + 11.258324503000097, + 61.172242758000095 + ], + [ + 11.229366536000157, + 61.259441876000096 + ], + [ + 10.952196444000151, + 61.44579354400014 + ], + [ + 10.97435149000006, + 61.51781052100017 + ], + [ + 10.747901468000123, + 61.7293293570001 + ], + [ + 10.601588474000039, + 61.75136705600016 + ], + [ + 10.564232511000114, + 61.81188674400005 + ], + [ + 10.814105427000072, + 61.79804604300017 + ], + [ + 10.874421435000102, + 61.889495959000044 + ], + [ + 10.791569507000077, + 62.00564265100013 + ], + [ + 10.53315459400011, + 62.13682412900005 + ], + [ + 10.37924558400016, + 62.16894995300004 + ], + [ + 10.176481479000074, + 62.07637384400016 + ], + [ + 10.033603557000106, + 62.129072881000184 + ], + [ + 10.377471471000149, + 62.21399849100004 + ], + [ + 10.588256555000157, + 62.184998280000116 + ], + [ + 10.706004525000026, + 62.288033830000074 + ], + [ + 11.074071495, + 62.43854498400009 + ], + [ + 11.087782445000073, + 62.524875904000055 + ], + [ + 11.270161594000115, + 62.50151771900016 + ], + [ + 11.46295743700017, + 62.589354533000176 + ], + [ + 11.707567524000126, + 62.49843468800003 + ], + [ + 11.90181544800015, + 62.54711661400012 + ], + [ + 12.023120530000028, + 62.399725373000024 + ], + [ + 12.10160347500016, + 62.375314420999985 + ], + [ + 12.39910957300009, + 62.36853111400018 + ], + [ + 12.621046443000125, + 62.283059506000086 + ], + [ + 12.623826553000129, + 62.37225821100009 + ], + [ + 12.411002488000065, + 62.449566516 + ], + [ + 12.557308440000156, + 62.50790674100011 + ], + [ + 12.701683537000065, + 62.521964534 + ], + [ + 12.930016471000158, + 62.47820094100001 + ], + [ + 12.939073452000173, + 62.57918795500012 + ], + [ + 13.083410496000056, + 62.65608437300017 + ], + [ + 13.016957594000075, + 62.71860230600009 + ], + [ + 12.815842544000134, + 62.81260434500018 + ], + [ + 12.857416448000038, + 62.8587483980001 + ], + [ + 13.177569443000152, + 62.92570706400005 + ], + [ + 13.325267462, + 62.98175567700008 + ], + [ + 13.522871500000065, + 62.98991495700017 + ], + [ + 13.486515498000074, + 62.90133416600008 + ], + [ + 13.771763566, + 62.86831650800008 + ], + [ + 13.877929590000178, + 62.95571142800014 + ], + [ + 13.804350561000035, + 63.015165943000056 + ], + [ + 13.646774469000036, + 62.99744542600018 + ], + [ + 13.548103543000138, + 63.122168816000055 + ], + [ + 13.313461551000103, + 63.094743564 + ], + [ + 12.999999495, + 62.99900647200019 + ], + [ + 13.000000501000102, + 63.15956937100009 + ], + [ + 12.834988487000032, + 63.0589491500001 + ], + [ + 12.773432461000027, + 63.1517800690001 + ], + [ + 12.473514554000133, + 63.16297275900018 + ], + [ + 12.294670556000085, + 63.12289385100013 + ], + [ + 12.063632447000089, + 63.19995421900006 + ] + ] + ], + [ + [ + [ + -8.006423508999944, + 71.02808098500003 + ], + [ + -7.991954499999963, + 71.17857989999999 + ], + [ + -8.347913308999921, + 71.13371626600019 + ], + [ + -8.517211491999944, + 71.00926595900006 + ], + [ + -9.116265441999928, + 70.86600867200008 + ], + [ + -9.043915535999872, + 70.800887822 + ], + [ + -8.61850058899995, + 70.95861914700015 + ], + [ + -8.386982532999923, + 70.95861914700015 + ], + [ + -8.006423508999944, + 71.02808098500003 + ] + ] + ], + [ + [ + [ + 22.935848743000065, + -72.0194324439999 + ], + [ + 23.103838913000175, + -72.08146592799989 + ], + [ + 23.04130586800005, + -72.20737658099989 + ], + [ + 23.47465831200003, + -72.10709142799988 + ], + [ + 22.935848743000065, + -72.0194324439999 + ] + ] + ], + [ + [ + [ + 24.852366799000038, + -72.10024307499998 + ], + [ + 25.142628197000022, + -72.15396086999993 + ], + [ + 25.288422240000102, + -72.04341777299999 + ], + [ + 25.016650322000146, + -72.03513141999997 + ], + [ + 24.852366799000038, + -72.10024307499998 + ] + ] + ], + [ + [ + [ + 27.441474175999986, + -71.95994923899991 + ], + [ + 27.258304039000052, + -72.01468644099998 + ], + [ + 27.795482823000043, + -72.09475745299989 + ], + [ + 27.67928663300006, + -71.97956759399989 + ], + [ + 27.441474175999986, + -71.95994923899991 + ] + ] + ], + [ + [ + [ + 11.706982467000103, + 62.43931209500005 + ], + [ + 11.539409447000082, + 62.49830560600003 + ], + [ + 11.27005145600009, + 62.443951311000035 + ], + [ + 11.276626556, + 62.31040747700001 + ], + [ + 11.118624496000109, + 62.35606839700006 + ], + [ + 11.0359745720001, + 62.26175354600008 + ], + [ + 11.132640547000108, + 62.05285590000011 + ], + [ + 11.230675454000107, + 61.95975793300005 + ], + [ + 11.289435445000152, + 61.79968202300017 + ], + [ + 11.464317485000095, + 61.5806722800001 + ], + [ + 11.414645488000076, + 61.53941839700008 + ], + [ + 11.497349559999975, + 61.45375501100011 + ], + [ + 11.63160954400007, + 61.49372763700006 + ], + [ + 11.688174482000136, + 61.60125287000011 + ], + [ + 11.824949540000148, + 61.603664176000166 + ], + [ + 11.613389465000068, + 61.73058027200011 + ], + [ + 11.610255472000176, + 61.88731750300008 + ], + [ + 11.499758519000068, + 61.94708131100009 + ], + [ + 11.602988529000129, + 62.04263919800013 + ], + [ + 11.581057447000092, + 62.11937853900008 + ], + [ + 11.883135537999976, + 62.23982145900004 + ], + [ + 11.924391433000153, + 62.334906606000175 + ], + [ + 11.813046567000185, + 62.42094030500016 + ], + [ + 11.706982467000103, + 62.43931209500005 + ] + ] + ], + [ + [ + [ + 27.797611534, + 71.06998446500006 + ], + [ + 27.452465548000134, + 71.11986047700015 + ], + [ + 27.42058548300014, + 71.02371686300006 + ], + [ + 27.1498184940001, + 71.03348345600017 + ], + [ + 27.045680555, + 70.94819725600013 + ], + [ + 27.398261457000103, + 70.90150972000009 + ], + [ + 27.231246504000126, + 70.78504099600013 + ], + [ + 27.017652477000183, + 70.73381365400013 + ], + [ + 27.046545568000056, + 70.62521050800018 + ], + [ + 26.922000545000117, + 70.61202678000018 + ], + [ + 26.957141506000028, + 70.48422605800005 + ], + [ + 26.43562653100014, + 70.4516164310001 + ], + [ + 26.521404581000013, + 70.55475642100015 + ], + [ + 26.646055551000188, + 70.91668582600005 + ], + [ + 26.436782563000065, + 70.95233976000009 + ], + [ + 26.076328539000087, + 70.77689143900005 + ], + [ + 25.92741045100007, + 70.61345270900011 + ], + [ + 25.601900582000155, + 70.49354991900009 + ], + [ + 25.319833446000132, + 70.34840737500019 + ], + [ + 25.45130946500018, + 70.31282250800012 + ], + [ + 25.253019452000103, + 70.21975270500008 + ], + [ + 25.22810759800018, + 70.14333271400011 + ], + [ + 25.093126602000098, + 70.08378197500019 + ], + [ + 24.881271485000127, + 70.1086406880001 + ], + [ + 24.89349950800016, + 70.22433157100005 + ], + [ + 25.064025472000083, + 70.346897124 + ], + [ + 25.166982569000027, + 70.52892976499999 + ], + [ + 25.321252502000107, + 70.67647556900016 + ], + [ + 25.59473958600006, + 70.7229725000002 + ], + [ + 25.793081567000172, + 70.87009803500013 + ], + [ + 25.280960526, + 70.94371796700017 + ], + [ + 24.76599148200006, + 70.95340057400011 + ], + [ + 24.491786572000024, + 70.9895128300002 + ], + [ + 24.538343518000147, + 70.87641514000012 + ], + [ + 24.20779746600016, + 70.78980912600014 + ], + [ + 24.54447555100012, + 70.71756969300003 + ], + [ + 23.99422456100018, + 70.69656430800012 + ], + [ + 23.69557953000009, + 70.75804607100008 + ], + [ + 23.56375549500018, + 70.71940113900018 + ], + [ + 23.581684553, + 70.62984167700012 + ], + [ + 23.709188556000072, + 70.51943021900007 + ], + [ + 23.689832562000106, + 70.4542185090001 + ], + [ + 23.45724246000003, + 70.36493430900003 + ], + [ + 23.151723598000103, + 70.20338016600016 + ], + [ + 23.306983602000116, + 70.12984388500018 + ], + [ + 22.920171511000035, + 70.03665271200009 + ], + [ + 22.86194745900019, + 70.21402350700015 + ], + [ + 22.56080059700014, + 70.21778480200004 + ], + [ + 22.405719462000093, + 70.25942157100013 + ], + [ + 22.084465589000047, + 70.28456862100018 + ], + [ + 21.90206950800018, + 70.33082868000014 + ], + [ + 21.747432447000108, + 70.23532594600016 + ], + [ + 21.433279554000137, + 70.30024881500009 + ], + [ + 21.205423550999967, + 70.2428032740001 + ], + [ + 21.19703443900005, + 70.17072410300011 + ], + [ + 21.7462215970001, + 70.04648015800018 + ], + [ + 21.82151455700017, + 69.99081309000013 + ], + [ + 21.801321546000167, + 69.83910935900013 + ], + [ + 21.355419552000114, + 70.00657559400014 + ], + [ + 21.144767573000024, + 69.98786735300007 + ], + [ + 21.13577245000016, + 69.89491338800019 + ], + [ + 20.96370656200014, + 69.83027382700004 + ], + [ + 20.822769554000047, + 69.91626125700003 + ], + [ + 20.696992557999977, + 69.7999910170002 + ], + [ + 20.39677457900018, + 69.74951888400005 + ], + [ + 20.409851522000054, + 69.57397232700009 + ], + [ + 20.227298532000134, + 69.36358756300018 + ], + [ + 20.203763489000153, + 69.67008526400019 + ], + [ + 20.328165517000116, + 69.88626896400012 + ], + [ + 20.200666543000068, + 69.96234630200007 + ], + [ + 19.904731549000132, + 69.83851307000009 + ], + [ + 19.725864585000124, + 69.67368663200011 + ], + [ + 19.607358556000122, + 69.80729249300015 + ], + [ + 19.104629437000085, + 69.72606464300003 + ], + [ + 18.914703558000042, + 69.58949896400003 + ], + [ + 18.43175858000012, + 69.48683238500013 + ], + [ + 18.437509572000067, + 69.42802897600006 + ], + [ + 18.636955449000027, + 69.28799101100003 + ], + [ + 18.507984446000137, + 69.25863909400016 + ], + [ + 18.336439577000135, + 69.35986415400004 + ], + [ + 18.342323506000184, + 69.43584208300001 + ], + [ + 18.107746557000098, + 69.44432557500011 + ], + [ + 18.128847496000105, + 69.35717926300003 + ], + [ + 17.978214470000125, + 69.27415030900005 + ], + [ + 17.9721714530001, + 69.1412160070002 + ], + [ + 17.78382455600007, + 69.10701968600011 + ], + [ + 17.49548943400015, + 69.00030112700017 + ], + [ + 17.48335646099997, + 68.81786498100007 + ], + [ + 17.2561435180001, + 68.76940031400017 + ], + [ + 17.200553562000096, + 68.71927955000007 + ], + [ + 16.98577349600015, + 68.70865213500014 + ], + [ + 16.57818249900015, + 68.63104862000006 + ], + [ + 16.42486944300009, + 68.51159577100009 + ], + [ + 16.65200057900006, + 68.44324822300018 + ], + [ + 16.86314357000009, + 68.46939573800012 + ], + [ + 17.047239501000035, + 68.44552240100006 + ], + [ + 17.449600525000164, + 68.48039028000011 + ], + [ + 17.41949457300018, + 68.40767844400011 + ], + [ + 16.952417544000184, + 68.35108048100005 + ], + [ + 16.700584436999975, + 68.40887672000014 + ], + [ + 16.46450243400011, + 68.40873841900014 + ], + [ + 16.120195477000095, + 68.28561664300003 + ], + [ + 16.221242505000134, + 68.21055468900005 + ], + [ + 16.415166552000073, + 68.19886578900014 + ], + [ + 16.201324588000148, + 67.99736232200013 + ], + [ + 16.062093465000032, + 68.04977184800003 + ], + [ + 16.101076523000188, + 68.1854751960002 + ], + [ + 16.021402510000087, + 68.2466436430002 + ], + [ + 15.834658568000123, + 68.18491042300013 + ], + [ + 15.637593487000117, + 68.18266692300011 + ], + [ + 15.494866439000077, + 68.06452802100017 + ], + [ + 15.904240435000077, + 68.03621311400013 + ], + [ + 15.87415057600009, + 67.96905579700007 + ], + [ + 15.668855471000029, + 67.98279742400007 + ], + [ + 15.181301453000174, + 67.91940894599998 + ], + [ + 14.763738505999981, + 67.82902604600014 + ], + [ + 14.763351597000053, + 67.74628895000018 + ], + [ + 14.910635550000109, + 67.67244790400014 + ], + [ + 15.330763527000045, + 67.74325168400003 + ], + [ + 15.129591481000034, + 67.61674177500004 + ], + [ + 15.206215487000065, + 67.56057916800012 + ], + [ + 15.556058524000036, + 67.52388017800018 + ], + [ + 15.686219589000189, + 67.45261002900014 + ], + [ + 15.678812502000085, + 67.34361846600007 + ], + [ + 15.562044544000116, + 67.26740450200015 + ], + [ + 15.68323546400012, + 67.20646538400007 + ], + [ + 15.381705550000163, + 67.18252985300018 + ], + [ + 15.047109530000114, + 67.24283597000004 + ], + [ + 14.754594520000182, + 67.24570543100003 + ], + [ + 14.536172516000136, + 67.18074501100011 + ], + [ + 14.318735554000114, + 67.16695828900015 + ], + [ + 14.233779433999985, + 67.07119605100019 + ], + [ + 13.54796557700007, + 66.93065567400015 + ], + [ + 13.735564473000125, + 66.83491690600016 + ], + [ + 13.510821508000106, + 66.80083508200016 + ], + [ + 13.509233473000108, + 66.71696793800015 + ], + [ + 13.258444583000085, + 66.73216667500009 + ], + [ + 13.195012519000102, + 66.51270330400018 + ], + [ + 12.985191522000036, + 66.52897023100007 + ], + [ + 13.126639491000049, + 66.39590751800017 + ], + [ + 12.990709496000079, + 66.34521494100011 + ], + [ + 13.295470467000087, + 66.23710029200015 + ], + [ + 13.672954506000053, + 66.24242665700001 + ], + [ + 14.000000442000157, + 66.30528791300003 + ], + [ + 13.999999437000156, + 66.4183234090001 + ], + [ + 14.346398517000182, + 66.39611337800017 + ], + [ + 14.465507541000079, + 66.42985204700005 + ], + [ + 14.742016468000031, + 66.43704640200019 + ], + [ + 14.776134502000161, + 66.39319044000007 + ], + [ + 14.443533543000058, + 66.29786439700007 + ], + [ + 14.195406578000075, + 66.2831306870001 + ], + [ + 13.902541539000026, + 66.21521832800005 + ], + [ + 13.76890047500018, + 66.0848638080002 + ], + [ + 13.626030432000107, + 66.1049837290002 + ], + [ + 13.446839592000117, + 65.95812557600016 + ], + [ + 13.380393563000098, + 65.8394064790001 + ], + [ + 13.277254580000033, + 65.8028746240002 + ], + [ + 13.334077513000011, + 65.64332878500005 + ], + [ + 13.531616507000024, + 65.54974232200004 + ], + [ + 13.718358437000063, + 65.54487428000016 + ], + [ + 14.00391244399998, + 65.59726067200012 + ], + [ + 14.105550564000112, + 65.53906780000005 + ], + [ + 14.270977482000092, + 65.5141643280001 + ], + [ + 13.959280486000182, + 65.42845148900005 + ], + [ + 13.967782586000055, + 65.51681166800012 + ], + [ + 13.80263059500004, + 65.50815215600005 + ], + [ + 13.722677464000071, + 65.44223083500009 + ], + [ + 13.551412551000169, + 65.4916793700001 + ], + [ + 13.380167587000074, + 65.410392678 + ], + [ + 13.247360522000179, + 65.59338437700012 + ], + [ + 13.18604555900015, + 65.76885432300008 + ], + [ + 13.10654052500007, + 65.87485438600004 + ], + [ + 12.839683526000101, + 65.9592474100001 + ], + [ + 12.359048434000158, + 65.62461300100011 + ], + [ + 12.420678556999974, + 65.54605679900004 + ], + [ + 12.67216247400006, + 65.43981181800001 + ], + [ + 12.351341442000034, + 65.453530478 + ], + [ + 12.144325532000153, + 65.36091296300009 + ], + [ + 12.117238574, + 65.20991951500014 + ], + [ + 12.361084566000045, + 65.26600618200013 + ], + [ + 12.36959957400012, + 65.07366732000014 + ], + [ + 12.140944440000169, + 65.176585021 + ], + [ + 11.983086549000063, + 65.15552012500007 + ], + [ + 11.543013498000107, + 64.94372468700016 + ], + [ + 11.284056443000054, + 64.86464998000008 + ], + [ + 11.242652523000174, + 64.80149904500018 + ], + [ + 11.583631530000162, + 64.81000567100006 + ], + [ + 11.66677850100001, + 64.86062180500011 + ], + [ + 12.063297507000073, + 64.95662745300012 + ], + [ + 12.406241567000052, + 64.91399139400016 + ], + [ + 12.464467463000062, + 64.85628769000004 + ], + [ + 12.298318528000152, + 64.67227373500009 + ], + [ + 12.53777944400008, + 64.64630995100015 + ], + [ + 12.767711477000034, + 64.74496210200004 + ], + [ + 12.819351544000028, + 64.82327388800013 + ], + [ + 13.047233531000188, + 64.92073681400012 + ], + [ + 13.261857526000085, + 65.04578089600011 + ], + [ + 13.313635560000023, + 64.98555189200016 + ], + [ + 13.100298522000116, + 64.8689842620002 + ], + [ + 12.978106467000089, + 64.74645022500016 + ], + [ + 13.14948855900019, + 64.7027312240001 + ], + [ + 13.345324518000098, + 64.77210857200015 + ], + [ + 13.49153257000006, + 64.75975599300011 + ], + [ + 13.68053157900016, + 64.66920662900014 + ], + [ + 13.9808035370001, + 64.7517985500001 + ], + [ + 14.122329458000024, + 64.87051027100006 + ], + [ + 14.151018533000126, + 64.95455947000016 + ], + [ + 14.913303510000105, + 64.7822332400001 + ], + [ + 15.140861451999967, + 64.895939457 + ], + [ + 14.902996451000035, + 65.03171924700007 + ], + [ + 14.661944482000138, + 65.07404903200012 + ], + [ + 14.625997517000087, + 65.12942558400005 + ], + [ + 14.905971524000051, + 65.13688782500009 + ], + [ + 15.22660245500009, + 64.97855434400009 + ], + [ + 15.453640551000149, + 64.95297227300006 + ], + [ + 15.499999517000049, + 65.05833916600005 + ], + [ + 15.634641548000047, + 65.12677070000012 + ], + [ + 15.618449555000154, + 65.24590906000014 + ], + [ + 15.912106516000165, + 65.25336359 + ], + [ + 15.999999488000014, + 65.4140614370001 + ], + [ + 15.826719565000019, + 65.45263043000017 + ], + [ + 15.426598520000084, + 65.45775780800005 + ], + [ + 15.392195501000117, + 65.54504191799998 + ], + [ + 15.572070473000167, + 65.59262128900008 + ], + [ + 15.726412491000076, + 65.5325522120001 + ], + [ + 15.901336441000126, + 65.55719634800005 + ], + [ + 15.82231454000015, + 65.657459501 + ], + [ + 15.887774521000154, + 65.68967199300005 + ], + [ + 16.582101541000043, + 65.55979088300006 + ], + [ + 16.60692957700013, + 65.6096662240002 + ], + [ + 16.373517545000084, + 65.64480903000003 + ], + [ + 16.365343513000028, + 65.7167193890001 + ], + [ + 16.63132259200006, + 65.72434155600007 + ], + [ + 16.52074249000009, + 65.8714132790002 + ], + [ + 16.67441144100019, + 65.90653278300005 + ], + [ + 17.283182532000183, + 65.76919714299999 + ], + [ + 17.364841547000026, + 65.85916765400009 + ], + [ + 17.188079446000017, + 65.950427134 + ], + [ + 17.125232439000058, + 66.17830560000016 + ], + [ + 16.904546484000036, + 66.25423726100007 + ], + [ + 17.100536503000058, + 66.28292482800003 + ], + [ + 17.312553558000104, + 66.37404734700004 + ], + [ + 17.764732592000144, + 66.39306823200008 + ], + [ + 17.921174445000133, + 66.44731591000004 + ], + [ + 18.143600484000046, + 66.42702114300016 + ], + [ + 18.412347434000026, + 66.46720717200009 + ], + [ + 18.809005579000143, + 66.46536885300014 + ], + [ + 18.86985953700014, + 66.5255452180001 + ], + [ + 18.587207513000067, + 66.68408422300007 + ], + [ + 18.36141345800013, + 66.71158960600013 + ], + [ + 18.05459959200016, + 66.71125365900014 + ], + [ + 17.828206566000176, + 66.78579643900014 + ], + [ + 17.654891439000096, + 67.03487843800008 + ], + [ + 17.910181579000096, + 67.05110027000006 + ], + [ + 17.941995596000083, + 66.95842827200016 + ], + [ + 18.21504950300016, + 66.95092093700009 + ], + [ + 18.291561527000056, + 67.03590840600003 + ], + [ + 18.256313444000114, + 67.14995124000012 + ], + [ + 18.52773656900007, + 67.15547558500009 + ], + [ + 18.708202465, + 67.04321759300018 + ], + [ + 18.721755499000153, + 66.96975088300002 + ], + [ + 18.948028496000063, + 66.94168055900008 + ], + [ + 19.417020454000124, + 66.97324513000007 + ], + [ + 19.401252586000055, + 67.03690836700008 + ], + [ + 19.138698521000094, + 67.084693765 + ], + [ + 18.982353563, + 67.23921213800003 + ], + [ + 19.537008572000104, + 67.22128995300017 + ], + [ + 19.752744510000127, + 67.25089349400002 + ], + [ + 19.769371524000064, + 67.39841566100012 + ], + [ + 19.900598600000023, + 67.39197618000014 + ], + [ + 20.075424481000027, + 67.3127477490001 + ], + [ + 20.530706496, + 67.32960979100017 + ], + [ + 20.25880845300003, + 67.41907772200005 + ], + [ + 20.236879550000083, + 67.49093393400017 + ], + [ + 20.386793577000162, + 67.56756012000005 + ], + [ + 20.33011850000014, + 67.68636488000004 + ], + [ + 20.039590504000103, + 67.73825422500016 + ], + [ + 20.069395546000067, + 67.78067537300007 + ], + [ + 20.422422533000088, + 67.75645921600005 + ], + [ + 20.344171599, + 67.93800285700007 + ], + [ + 20.48163447600018, + 68.05393731900017 + ], + [ + 20.627517478000073, + 68.07077605900008 + ], + [ + 20.94617849300016, + 68.03167414600011 + ], + [ + 21.086240599000178, + 68.05455523300014 + ], + [ + 20.970979538999984, + 68.13298252200013 + ], + [ + 21.188726464000013, + 68.20208544600018 + ], + [ + 21.182201488000146, + 68.25238927000015 + ], + [ + 21.005817579, + 68.33064037100013 + ], + [ + 21.037231443000053, + 68.41169153100003 + ], + [ + 21.320764573000076, + 68.34631201600013 + ], + [ + 21.42570650400006, + 68.3817748420002 + ], + [ + 21.259325558000057, + 68.49870255900015 + ], + [ + 21.58853955800015, + 68.49863332500013 + ], + [ + 21.605220551, + 68.55974779300016 + ], + [ + 21.35863853799998, + 68.64932133600013 + ], + [ + 21.094106512000053, + 68.83535985700007 + ], + [ + 21.18182145200018, + 68.90070115100008 + ], + [ + 21.65768254800014, + 68.87859036100014 + ], + [ + 21.76742546500003, + 68.92957295100013 + ], + [ + 21.609268507000138, + 68.992419288 + ], + [ + 21.328659488000028, + 68.9987137620002 + ], + [ + 21.314374546000067, + 69.04957448000005 + ], + [ + 21.697128455000097, + 69.02091742400006 + ], + [ + 21.769552457000145, + 69.06569690300006 + ], + [ + 21.282825565000167, + 69.148747147 + ], + [ + 21.51791146200003, + 69.222100367 + ], + [ + 21.62641754599997, + 69.1708046280001 + ], + [ + 22.025459505000185, + 69.07978135000002 + ], + [ + 22.25471645900012, + 69.10531095100004 + ], + [ + 22.387413554000148, + 69.053137962 + ], + [ + 22.48449359400007, + 68.94098658899998 + ], + [ + 22.68441958700015, + 68.8988475770002 + ], + [ + 22.839687471000104, + 69.04469151800015 + ], + [ + 23.175909580000166, + 69.15701757100004 + ], + [ + 23.298372538000137, + 69.24892715100009 + ], + [ + 23.35937150300009, + 69.38652262900013 + ], + [ + 23.609830481000188, + 69.5430484690001 + ], + [ + 23.725360599999988, + 69.54307143500006 + ], + [ + 23.766426561000117, + 69.42211554300007 + ], + [ + 24.00841344700018, + 69.495606394 + ], + [ + 23.914089544000092, + 69.63885596900008 + ], + [ + 23.966163458000153, + 69.72463066700004 + ], + [ + 24.19196656600019, + 69.76873138000019 + ], + [ + 24.376598603000105, + 69.71402521200014 + ], + [ + 24.399555462000023, + 69.65579495700007 + ], + [ + 24.302740457000084, + 69.53596777200016 + ], + [ + 24.30282544900018, + 69.45346654300005 + ], + [ + 24.480476535000093, + 69.44473092400017 + ], + [ + 24.793893497000056, + 69.5231422870001 + ], + [ + 24.994382586000143, + 69.64961447700011 + ], + [ + 25.329357468000126, + 69.74274379200006 + ], + [ + 25.667913601000066, + 69.70263437300008 + ], + [ + 25.834203520000074, + 69.65256742200006 + ], + [ + 26.01066554800019, + 69.67420480200013 + ], + [ + 26.26980046700004, + 69.63066232300014 + ], + [ + 26.524435477000168, + 69.62427598400012 + ], + [ + 27.092372450000028, + 69.67137456800009 + ], + [ + 27.29519656900004, + 69.7312151540001 + ], + [ + 27.37077552000011, + 69.91346170200012 + ], + [ + 27.685386568000013, + 69.93867781900008 + ], + [ + 27.696281533000104, + 69.76197070400019 + ], + [ + 27.895156603000146, + 69.76646474500018 + ], + [ + 27.94772354100013, + 69.90814321700014 + ], + [ + 28.261640568000132, + 69.98403732700007 + ], + [ + 28.24698246300011, + 69.72026671200018 + ], + [ + 28.364231542000027, + 69.61954439900006 + ], + [ + 28.50822844800001, + 69.62263514200009 + ], + [ + 28.674419460000138, + 69.72336466400014 + ], + [ + 29.184293480000065, + 69.64274014300008 + ], + [ + 29.25683550000008, + 69.59451134300002 + ], + [ + 29.169614589000105, + 69.48883834200012 + ], + [ + 29.387994515, + 69.41401326 + ], + [ + 29.76471161000012, + 69.5041673340001 + ], + [ + 30.088876519000166, + 69.49868875500005 + ], + [ + 30.163217462000034, + 69.4244587880001 + ], + [ + 30.019134558000076, + 69.33801152700016 + ], + [ + 29.96973245900017, + 69.17541266300009 + ], + [ + 29.740528478000044, + 69.14342882900019 + ], + [ + 29.799966565000034, + 68.99902691000017 + ], + [ + 30.118497494000053, + 68.9887652810001 + ], + [ + 30.04720454599999, + 69.07068581200014 + ], + [ + 30.372373606999986, + 69.10155669700009 + ], + [ + 30.715726536000147, + 69.06613158900018 + ], + [ + 30.943037548000063, + 69.09825238300004 + ], + [ + 31.241376472000127, + 69.09663551400013 + ], + [ + 31.79326260199997, + 69.00764115900012 + ], + [ + 31.919853480000086, + 68.92078368800003 + ], + [ + 32.211547567000025, + 68.91391605900014 + ], + [ + 32.42247044900006, + 68.87738537800016 + ], + [ + 32.96014053700014, + 68.95693349500016 + ], + [ + 33.29800751100015, + 68.94100285000019 + ], + [ + 33.16715259100005, + 68.78762022400008 + ], + [ + 33.289180528000145, + 68.62480745500017 + ], + [ + 33.44353847200017, + 68.68132109600015 + ], + [ + 33.64989455800014, + 68.59806465700007 + ], + [ + 33.92032258300003, + 68.57971465900005 + ], + [ + 33.98716759000018, + 68.531151421 + ], + [ + 33.946033568000075, + 68.29550544500006 + ], + [ + 34.256050495000125, + 68.21485812500015 + ], + [ + 34.08071549700003, + 68.157382912 + ], + [ + 34.06663155300015, + 68.09028611300016 + ], + [ + 34.273433555999986, + 68.0522284160001 + ], + [ + 34.21723960100019, + 67.98008135200007 + ], + [ + 34.239639567000154, + 67.86707636600005 + ], + [ + 34.415714519, + 67.77870763700014 + ], + [ + 34.641529528000035, + 67.78712290000016 + ], + [ + 35.034191518, + 67.84359111100008 + ], + [ + 35.250946528000156, + 67.9216212660001 + ], + [ + 35.341434537000055, + 68.03316109500014 + ], + [ + 35.16763661300013, + 68.06630615800015 + ], + [ + 35.19575856900008, + 68.21039476200008 + ], + [ + 35.32405449400011, + 68.20583115100004 + ], + [ + 35.45910254400019, + 68.1232469410001 + ], + [ + 35.41579861500003, + 67.97122268700014 + ], + [ + 35.51438555400006, + 67.9413903200001 + ], + [ + 35.7924424520001, + 67.97064249100009 + ], + [ + 35.84885752200017, + 67.8953518780001 + ], + [ + 35.71418749500015, + 67.82185348399997 + ], + [ + 35.960498605000055, + 67.79321939400012 + ], + [ + 36.12077752500005, + 67.82884332000015 + ], + [ + 36.25388751200012, + 67.74098555200015 + ], + [ + 36.594867524999984, + 67.64461411800005 + ], + [ + 36.75755657700006, + 67.55147625400014 + ], + [ + 37.131313519000116, + 67.52576409500017 + ], + [ + 37.38422051600014, + 67.57217653700002 + ], + [ + 37.66625546500006, + 67.43912857600014 + ], + [ + 38.00512357300016, + 67.41870355400016 + ], + [ + 38.123012527000185, + 67.31415993200017 + ], + [ + 38.064460575000055, + 67.26522219000009 + ], + [ + 38.395423542000174, + 67.20226906800013 + ], + [ + 38.614486594000084, + 67.25124486300007 + ], + [ + 38.60781057500009, + 67.1277561280001 + ], + [ + 38.71477153900008, + 67.10008260400008 + ], + [ + 39.05445453600015, + 67.13091543500008 + ], + [ + 39.09828149599997, + 67.05212236000006 + ], + [ + 39.351123617000155, + 66.99327285000015 + ], + [ + 39.57867451900006, + 67.07149411100016 + ], + [ + 39.61737846000011, + 66.98660487800004 + ], + [ + 39.48539751500016, + 66.91395389400003 + ], + [ + 39.700504476000106, + 66.89760331600007 + ], + [ + 39.78643457400011, + 66.97787629900017 + ], + [ + 40.00614957000016, + 67.04816191000009 + ], + [ + 40.17589551400005, + 66.83594016800009 + ], + [ + 40.539886533000185, + 66.84506454100017 + ], + [ + 40.24968358700005, + 66.71958493500006 + ], + [ + 39.98250153800018, + 66.73537158000016 + ], + [ + 40.00762545500015, + 66.5967687640001 + ], + [ + 40.168685569000104, + 66.50766829500003 + ], + [ + 40.183944488000066, + 66.39226725800006 + ], + [ + 40.05887961999997, + 66.28013248000008 + ], + [ + 40.584762572000045, + 66.450353344 + ], + [ + 40.80674755500007, + 66.5980129730001 + ], + [ + 41.2238764870001, + 66.81639189400005 + ], + [ + 41.351852559000065, + 67.02478495000014 + ], + [ + 41.33144346299997, + 67.21730704000004 + ], + [ + 41.08739446100003, + 67.27976395400015 + ], + [ + 41.13768051500011, + 67.41214119500017 + ], + [ + 40.97791255600009, + 67.46895289600008 + ], + [ + 41.01192061900008, + 67.59618784000014 + ], + [ + 40.95356346200015, + 67.70980302900017 + ], + [ + 40.78864650000014, + 67.71860738000004 + ], + [ + 40.565162497000074, + 67.79930767300016 + ], + [ + 40.488891537000086, + 67.74342787100016 + ], + [ + 40.293647508000106, + 67.82962116100009 + ], + [ + 40.07840761000017, + 67.97738020000003 + ], + [ + 39.822006533000035, + 68.05922462300015 + ], + [ + 39.614505479000115, + 68.04073749800006 + ], + [ + 38.64533250000005, + 68.37657890100007 + ], + [ + 38.496280469000055, + 68.37087266900005 + ], + [ + 38.03264253500015, + 68.54569385600007 + ], + [ + 37.63706548700003, + 68.734509468 + ], + [ + 37.09110653600004, + 68.8870976570002 + ], + [ + 36.85008658600003, + 68.99870722400016 + ], + [ + 36.499999468000055, + 68.998568923 + ], + [ + 36.499999468000055, + 69.09855815500015 + ], + [ + 36.281959512000185, + 69.16063402700013 + ], + [ + 35.89209758100003, + 69.20841288600019 + ], + [ + 35.76652946299998, + 69.24997187100007 + ], + [ + 35.18505856700011, + 69.33294651000006 + ], + [ + 35.0575295860001, + 69.27937759899999 + ], + [ + 34.51588848800009, + 69.32557630300016 + ], + [ + 34.23481360200009, + 69.37874003200005 + ], + [ + 33.48335653600009, + 69.38325771000012 + ], + [ + 33.38197758400008, + 69.47837068600018 + ], + [ + 33.11915949000007, + 69.49206638100014 + ], + [ + 32.81462449500009, + 69.47141253300009 + ], + [ + 32.779247499000064, + 69.54379647000007 + ], + [ + 32.501613552000094, + 69.54892368000009 + ], + [ + 32.26655950600008, + 69.64054978400014 + ], + [ + 32.30358555800012, + 69.70181009700008 + ], + [ + 32.78015559500005, + 69.63317940900004 + ], + [ + 32.9670864520001, + 69.68623752700017 + ], + [ + 33.00838056900011, + 69.77028739600019 + ], + [ + 32.795097511000165, + 69.82942675200002 + ], + [ + 32.492874580000034, + 69.83873519100007 + ], + [ + 32.36957561100007, + 69.89494306000017 + ], + [ + 31.92884055700017, + 69.99870230400012 + ], + [ + 31.746490577000145, + 69.998786123 + ], + [ + 31.574707494000165, + 69.79465761200004 + ], + [ + 31.713901570000132, + 69.73002492400019 + ], + [ + 31.04433854700011, + 69.80460642800006 + ], + [ + 30.674583461000054, + 69.77270641300004 + ], + [ + 30.3902285690001, + 69.79921183500016 + ], + [ + 30.2359165580001, + 69.87366442600012 + ], + [ + 30.037359498000058, + 69.8783103470002 + ], + [ + 30.168905589000076, + 69.76107082300007 + ], + [ + 29.876850578000074, + 69.72796482000012 + ], + [ + 29.622869524000066, + 69.72813279300004 + ], + [ + 29.696557517000144, + 69.89785040700008 + ], + [ + 29.4168894500001, + 70.01451141200005 + ], + [ + 29.12131655400009, + 70.01579250200018 + ], + [ + 29.02942457600011, + 70.05884095100015 + ], + [ + 28.559530557000073, + 70.13147617700008 + ], + [ + 28.67775160200017, + 70.18786107200003 + ], + [ + 28.98934751100012, + 70.13214807000014 + ], + [ + 29.892797484000027, + 70.07443565000005 + ], + [ + 30.253915522000057, + 70.14079266200008 + ], + [ + 30.244106516000045, + 70.19388833100004 + ], + [ + 30.474298555000075, + 70.26039739200013 + ], + [ + 30.96039060200019, + 70.30724485400009 + ], + [ + 30.88396256400017, + 70.45382958900007 + ], + [ + 30.66043447300018, + 70.45340144100015 + ], + [ + 30.36395247600018, + 70.57391560700017 + ], + [ + 30.123594529000172, + 70.71339684600014 + ], + [ + 29.65329147400007, + 70.75649692800005 + ], + [ + 29.215888561999975, + 70.69107935900001 + ], + [ + 29.239688473, + 70.81813040300017 + ], + [ + 29.18311347600013, + 70.88448775100005 + ], + [ + 28.917919447000088, + 70.91535846800019 + ], + [ + 28.70944257200017, + 70.87780452500004 + ], + [ + 28.44367455000014, + 70.71438054700013 + ], + [ + 28.373525564000033, + 70.56436275200014 + ], + [ + 28.01743348300016, + 70.46892137300017 + ], + [ + 27.84827058400009, + 70.52465667100012 + ], + [ + 28.13486260600007, + 70.60389314899999 + ], + [ + 28.264036451000038, + 70.68397569600018 + ], + [ + 28.25531759500018, + 70.75394111800017 + ], + [ + 27.97902156800012, + 70.74502947800016 + ], + [ + 27.669408481000062, + 70.81890958500014 + ], + [ + 28.15054145800002, + 70.82080875600019 + ], + [ + 28.416646600000092, + 70.92631495700016 + ], + [ + 28.451385566000113, + 71.01186032500016 + ], + [ + 28.217885524000053, + 71.03583357400015 + ], + [ + 28.12350445600015, + 71.1241947600002 + ], + [ + 27.797611534, + 71.06998446500006 + ] + ] + ], + [ + [ + [ + 16.10007656200014, + 68.44010534500018 + ], + [ + 16.407447490000038, + 68.42863739200016 + ], + [ + 16.384538574999965, + 68.53559953000007 + ], + [ + 16.133319525000047, + 68.51009289500007 + ], + [ + 16.10007656200014, + 68.44010534500018 + ] + ] + ], + [ + [ + [ + 15.93477352900004, + 68.77612947300014 + ], + [ + 15.863604465000094, + 68.94291794700013 + ], + [ + 15.603464556000063, + 68.93851443000017 + ], + [ + 15.554920596000045, + 68.84150211500008 + ], + [ + 15.447238454000058, + 68.80397113800007 + ], + [ + 15.434196548000102, + 68.66015628700018 + ], + [ + 15.169560586000102, + 68.56093081400007 + ], + [ + 15.220946514000104, + 68.36627921800005 + ], + [ + 15.615935487000115, + 68.31431208900005 + ], + [ + 15.664903571000082, + 68.3695441370001 + ], + [ + 16.03894449200004, + 68.48833280400004 + ], + [ + 16.19925157600005, + 68.55977880600017 + ], + [ + 16.46245054400015, + 68.57303947899999 + ], + [ + 16.534891478000134, + 68.65882138500018 + ], + [ + 16.451400513000067, + 68.83218563000008 + ], + [ + 16.165546434000134, + 68.85940133400004 + ], + [ + 15.93477352900004, + 68.77612947300014 + ] + ] + ], + [ + [ + [ + 17.149375504999966, + 68.885693521 + ], + [ + 17.24701143400017, + 68.78636930900007 + ], + [ + 17.44665948300019, + 68.86298744800007 + ], + [ + 17.351762593000046, + 68.90831560700002 + ], + [ + 17.149375504999966, + 68.885693521 + ] + ] + ], + [ + [ + [ + 17.799158578000174, + 69.44321966700011 + ], + [ + 17.90664843900015, + 69.52119684700006 + ], + [ + 17.831056580999984, + 69.56600700400014 + ], + [ + 17.557010591, + 69.56873095500004 + ], + [ + 17.335580491000144, + 69.53188595300003 + ], + [ + 17.27595347500005, + 69.39821924000006 + ], + [ + 17.07721352200008, + 69.33192375000016 + ], + [ + 17.13301453300005, + 69.23395707200007 + ], + [ + 17.04845655300005, + 69.16156492100009 + ], + [ + 16.7866035510001, + 69.10927039400013 + ], + [ + 16.763494476, + 69.06521544700018 + ], + [ + 17.15727058800013, + 69.06524679500012 + ], + [ + 17.3671955210001, + 69.13066436400015 + ], + [ + 17.84249352000012, + 69.13897284200016 + ], + [ + 17.9140515040001, + 69.17100361400009 + ], + [ + 17.88509152500012, + 69.28843391000015 + ], + [ + 18.015319479000027, + 69.32957346500012 + ], + [ + 18.038621505000037, + 69.47689798600015 + ], + [ + 17.799158578000174, + 69.44321966700011 + ] + ] + ], + [ + [ + [ + 18.766923564000024, + 69.66744530000005 + ], + [ + 18.918750508000187, + 69.69579809300006 + ], + [ + 19.006935506000104, + 69.77214952000003 + ], + [ + 18.773599582000145, + 69.8743430240001 + ], + [ + 18.69248153500007, + 69.76476372200017 + ], + [ + 18.357780573000014, + 69.79661746900013 + ], + [ + 18.214002435000054, + 69.63887172700015 + ], + [ + 17.971353547000092, + 69.55505822700007 + ], + [ + 18.248235469000065, + 69.50248139800004 + ], + [ + 18.74581944, + 69.55819406500018 + ], + [ + 18.766923564000024, + 69.66744530000005 + ] + ] + ], + [ + [ + [ + 19.688745494000102, + 69.98293845900008 + ], + [ + 19.51432948900009, + 69.91526951100019 + ], + [ + 19.703189525000028, + 69.85774115600015 + ], + [ + 19.848669525000105, + 69.97080783400014 + ], + [ + 19.688745494000102, + 69.98293845900008 + ] + ] + ], + [ + [ + [ + 19.36790250200005, + 70.03347831800016 + ], + [ + 19.243223536000073, + 70.08240901900012 + ], + [ + 19.053962509000087, + 70.07882290500004 + ], + [ + 18.768159559000082, + 69.99957921900011 + ], + [ + 18.6671945060001, + 69.916414814 + ], + [ + 18.94161248400019, + 69.84963770000002 + ], + [ + 19.06927456900013, + 69.77527747800002 + ], + [ + 19.34919543500007, + 69.82279616400012 + ], + [ + 19.45377157900009, + 69.93600784800003 + ], + [ + 19.609790481000175, + 70.00652966100017 + ], + [ + 19.36790250200005, + 70.03347831800016 + ] + ] + ], + [ + [ + [ + 20.48476260199999, + 70.03115083100005 + ], + [ + 20.666221586000063, + 70.04395469100018 + ], + [ + 20.73327245300004, + 70.19840483600007 + ], + [ + 20.461492595000095, + 70.21622073900005 + ], + [ + 20.280410462000077, + 70.08086775400005 + ], + [ + 20.48476260199999, + 70.03115083100005 + ] + ] + ], + [ + [ + [ + 19.923723601000177, + 70.13368916700006 + ], + [ + 19.783588573000145, + 70.20223469500013 + ], + [ + 19.546398483000132, + 70.19990117300017 + ], + [ + 19.693147502000045, + 70.06260224600004 + ], + [ + 19.840375463999976, + 70.04759394600012 + ], + [ + 19.923723601000177, + 70.13368916700006 + ] + ] + ], + [ + [ + [ + 22.95236053400015, + 70.26884366800016 + ], + [ + 22.626573559000178, + 70.38312354200019 + ], + [ + 22.304803527000104, + 70.3525817310001 + ], + [ + 22.40383152300012, + 70.29930970700019 + ], + [ + 22.657218467000177, + 70.2584061870001 + ], + [ + 22.95236053400015, + 70.26884366800016 + ] + ] + ], + [ + [ + [ + 23.57230553900007, + 70.48382925900017 + ], + [ + 23.31834057800006, + 70.5389625680001 + ], + [ + 22.991966535000017, + 70.5151500840002 + ], + [ + 22.78704844800012, + 70.41816727300005 + ], + [ + 22.892265473000123, + 70.35413741200011 + ], + [ + 23.147441451000077, + 70.28321058500006 + ], + [ + 23.57230553900007, + 70.48382925900017 + ] + ] + ], + [ + [ + [ + 23.31258355200015, + 70.73659896000004 + ], + [ + 23.40852147400011, + 70.83672464900013 + ], + [ + 23.126407568000104, + 70.83043839000004 + ], + [ + 22.993783564000182, + 70.70503405400012 + ], + [ + 22.29877844800012, + 70.69912095700016 + ], + [ + 22.327089499000067, + 70.65133488800006 + ], + [ + 21.925615447000155, + 70.67228595799997 + ], + [ + 21.955059565000113, + 70.5942108770002 + ], + [ + 22.18201652500005, + 70.61770987800003 + ], + [ + 22.115205548000176, + 70.48074706500006 + ], + [ + 22.87100058500016, + 70.53481989600004 + ], + [ + 23.026510537000092, + 70.58685525400011 + ], + [ + 23.31258355200015, + 70.73659896000004 + ] + ] + ], + [ + [ + [ + 25.77499560000001, + 71.13124444300007 + ], + [ + 25.605289553000148, + 71.21162488300007 + ], + [ + 25.28688653200004, + 71.11474131400018 + ], + [ + 25.48143151100004, + 70.95314861400004 + ], + [ + 25.8954044890001, + 71.03009599400002 + ], + [ + 25.77499560000001, + 71.13124444300007 + ] + ] + ], + [ + [ + [ + 19.23637753200012, + 74.39998551899998 + ], + [ + 19.29999148400003, + 74.46749470800006 + ], + [ + 19.12748755800004, + 74.52250631200019 + ], + [ + 18.7902815810001, + 74.47498712400005 + ], + [ + 19.051654468000038, + 74.34303585100014 + ], + [ + 19.23637753200012, + 74.39998551899998 + ] + ] + ], + [ + [ + [ + 23.33611859500013, + 78.19662355100002 + ], + [ + 22.982774605000145, + 78.24607996500009 + ], + [ + 22.45611146400006, + 78.20024017500015 + ], + [ + 21.83750354000017, + 78.20829769800008 + ], + [ + 20.934160521000024, + 78.12162127500005 + ], + [ + 20.870273487000077, + 78.08023646700013 + ], + [ + 21.352218503000188, + 77.96355987100003 + ], + [ + 21.630559547000132, + 77.93604593900011 + ], + [ + 21.55694548300005, + 77.85437569200019 + ], + [ + 21.254714506000084, + 77.72604054000004 + ], + [ + 21.185279490000084, + 77.59991804300012 + ], + [ + 20.8833375210001, + 77.56631616600015 + ], + [ + 20.89277655000012, + 77.44213173300017 + ], + [ + 21.12054856700007, + 77.43407437700017 + ], + [ + 21.619159488000037, + 77.48574428400008 + ], + [ + 22.086942441000133, + 77.4921376640001 + ], + [ + 22.436111573000062, + 77.56964294400007 + ], + [ + 22.641374491000192, + 77.53964193300015 + ], + [ + 22.40748754100008, + 77.419912984 + ], + [ + 22.501943543000152, + 77.33241379400005 + ], + [ + 22.77083047100018, + 77.26240160000009 + ], + [ + 22.958047487000044, + 77.35073998700011 + ], + [ + 23.390281447000177, + 77.37268448000015 + ], + [ + 23.890558524000028, + 77.49685282000013 + ], + [ + 24.175832575000072, + 77.66742773500016 + ], + [ + 24.90859749500015, + 77.75437858100008 + ], + [ + 24.290277573000083, + 77.90522182500018 + ], + [ + 23.890277563000154, + 77.84660851700016 + ], + [ + 23.657506579000028, + 77.86160877100014 + ], + [ + 23.11277758799997, + 77.98771651600009 + ], + [ + 23.05638347200005, + 78.05133449100009 + ], + [ + 23.47303949800005, + 78.14635694200001 + ], + [ + 23.33611859500013, + 78.19662355100002 + ] + ] + ], + [ + [ + [ + 16.956655435000073, + 79.956205808 + ], + [ + 16.62275846600005, + 79.97396790000005 + ], + [ + 16.521669528000018, + 80.04341582300015 + ], + [ + 16.02276255800018, + 80.00815013900012 + ], + [ + 15.731107531000077, + 79.87285683400006 + ], + [ + 15.647497544000089, + 79.7642523470002 + ], + [ + 15.892498562000128, + 79.49587688200018 + ], + [ + 15.973892542000158, + 79.3239286770002 + ], + [ + 16.151107433000163, + 79.2272578400001 + ], + [ + 16.13220557, + 79.0530663020001 + ], + [ + 15.630001494000169, + 79.30337423800012 + ], + [ + 15.48971659800003, + 79.33282522900004 + ], + [ + 15.291664463000075, + 79.59978046300006 + ], + [ + 14.845265590000054, + 79.76730369500007 + ], + [ + 14.557785589000048, + 79.80534663900005 + ], + [ + 13.890822465000099, + 79.52894499900003 + ], + [ + 13.914719439000123, + 79.35754530500009 + ], + [ + 13.274999511999965, + 79.59672961800015 + ], + [ + 12.701395535000017, + 79.59700370600007 + ], + [ + 13.015838442000188, + 79.6878306800001 + ], + [ + 13.628320536000047, + 79.6958871970001 + ], + [ + 13.884723457000177, + 79.72562937500004 + ], + [ + 13.8247145630001, + 79.87451997100004 + ], + [ + 13.095836499000143, + 79.82812915400012 + ], + [ + 12.050840490000155, + 79.68505375500007 + ], + [ + 11.83999053000008, + 79.83591225400016 + ], + [ + 11.238320588000136, + 79.75868173400016 + ], + [ + 11.366101529000161, + 79.63423813200012 + ], + [ + 10.963882493000085, + 79.63979248400017 + ], + [ + 10.697785566000107, + 79.51339439000003 + ], + [ + 10.918342440000174, + 79.44226874400016 + ], + [ + 10.843886496999971, + 79.36392561000014 + ], + [ + 11.129174462000151, + 79.24169382400015 + ], + [ + 11.236380513000086, + 79.09225337500015 + ], + [ + 11.916390572000125, + 79.1819662260001 + ], + [ + 11.755265582000163, + 79.07502470900016 + ], + [ + 12.109154564000107, + 78.9955677870002 + ], + [ + 12.444166493000068, + 78.99140147800017 + ], + [ + 12.505558570000062, + 78.90722839500012 + ], + [ + 12.251111482000056, + 78.89224239000015 + ], + [ + 11.602489471000013, + 78.97557761800005 + ], + [ + 11.646676518000106, + 78.86750689100018 + ], + [ + 11.875279516000148, + 78.84390009900005 + ], + [ + 11.641674533000185, + 78.73776760200008 + ], + [ + 11.925548471000127, + 78.62637093600006 + ], + [ + 12.355558545000179, + 78.58915126199997 + ], + [ + 12.540279430000169, + 78.49887430900014 + ], + [ + 12.584173445000147, + 78.3927579060001 + ], + [ + 12.871102587999985, + 78.35358558500019 + ], + [ + 12.979167448000055, + 78.20497041800013 + ], + [ + 13.62777152100017, + 78.19328168600003 + ], + [ + 13.757510475000117, + 78.24914707099998 + ], + [ + 14.325269583000079, + 78.30524312600005 + ], + [ + 14.364999469, + 78.38553941100014 + ], + [ + 14.67472152, + 78.43803426500006 + ], + [ + 14.385552566000172, + 78.49692149300017 + ], + [ + 14.588062532000095, + 78.55275703900008 + ], + [ + 15.240825537999967, + 78.60831799300018 + ], + [ + 15.298052478999978, + 78.4997143440001 + ], + [ + 15.464176436000173, + 78.4508208580001 + ], + [ + 16.01445357700004, + 78.47859395900008 + ], + [ + 16.309438566000154, + 78.56220260500004 + ], + [ + 16.364711518000036, + 78.64778083100009 + ], + [ + 16.831108439000047, + 78.67109744200008 + ], + [ + 16.464155591000065, + 78.52470984900009 + ], + [ + 16.40665255000016, + 78.42970215000014 + ], + [ + 16.851388454000187, + 78.38358626000007 + ], + [ + 16.818881589000057, + 78.33303064300014 + ], + [ + 16.102500441000075, + 78.35552381600007 + ], + [ + 15.76583258200003, + 78.33441918900013 + ], + [ + 14.994994544000178, + 78.1330201610001 + ], + [ + 14.552492584999982, + 78.09357324800004 + ], + [ + 13.876935496000158, + 78.09189586200017 + ], + [ + 13.588888543000166, + 78.04855806900002 + ], + [ + 13.721661578000067, + 77.75965767100007 + ], + [ + 14.47916149300005, + 77.75105113300009 + ], + [ + 15.133879495000087, + 77.79660241800019 + ], + [ + 15.600007524000034, + 77.88216438300003 + ], + [ + 15.814715506000084, + 77.82939560900007 + ], + [ + 16.66472246400008, + 77.85632968100015 + ], + [ + 16.85527648300007, + 77.80354481300003 + ], + [ + 15.66665555700007, + 77.74632139300007 + ], + [ + 14.752227470000037, + 77.66187321500007 + ], + [ + 15.194445451000036, + 77.61436877900013 + ], + [ + 15.913893537000092, + 77.56408875900013 + ], + [ + 15.440556567999977, + 77.52519136400008 + ], + [ + 15.00166251600018, + 77.56631616600015 + ], + [ + 14.52693448600013, + 77.50103471900019 + ], + [ + 14.32583955299998, + 77.58243087800014 + ], + [ + 13.914161540000066, + 77.52686925400019 + ], + [ + 13.968616585, + 77.40518782400005 + ], + [ + 14.13749550600005, + 77.3007338880002 + ], + [ + 14.467214431000116, + 77.17072017600009 + ], + [ + 14.739726532000077, + 77.17545142500012 + ], + [ + 15.072488592000127, + 77.11877668300008 + ], + [ + 15.250548546000118, + 77.01488752000012 + ], + [ + 15.72832758900006, + 76.9976595240002 + ], + [ + 15.568610591000095, + 76.91154804100017 + ], + [ + 15.978615576000152, + 76.74932083100009 + ], + [ + 16.28054849300014, + 76.70764584100016 + ], + [ + 16.331659494000178, + 76.60597033800008 + ], + [ + 16.822500560000094, + 76.56818689800008 + ], + [ + 17.198329508000086, + 76.69374395200003 + ], + [ + 16.94361453400012, + 76.8143119290001 + ], + [ + 17.32026658600006, + 76.97154972700014 + ], + [ + 17.32583049300007, + 77.04293420600004 + ], + [ + 17.6230524450001, + 77.43268583100019 + ], + [ + 17.80055651100008, + 77.48740708600019 + ], + [ + 18.284717535000084, + 77.50019552300006 + ], + [ + 18.28778447300016, + 77.58548222600018 + ], + [ + 18.449153544000183, + 77.76188625200012 + ], + [ + 18.333892485000092, + 77.89745431600011 + ], + [ + 18.552486485000088, + 78.05438600700018 + ], + [ + 18.859447537, + 78.03079430200012 + ], + [ + 19.07109847200013, + 78.08467703100018 + ], + [ + 18.91999052700004, + 78.173015921 + ], + [ + 19.06499057900004, + 78.35775222900014 + ], + [ + 18.965545500000133, + 78.45526259600007 + ], + [ + 19.681383501000028, + 78.51137206200008 + ], + [ + 19.57777747800003, + 78.56971094700009 + ], + [ + 20.13167359000016, + 78.63694571200017 + ], + [ + 20.619728510000073, + 78.6325058180002 + ], + [ + 21.331935471000122, + 78.65527307900004 + ], + [ + 21.534728578000056, + 78.8419471150001 + ], + [ + 20.960836598000185, + 78.91446113900008 + ], + [ + 20.516376459000128, + 78.93445164300016 + ], + [ + 20.044445470000028, + 79.01308613200007 + ], + [ + 19.670841582000037, + 79.14725039500013 + ], + [ + 19.34806253700009, + 79.18391937700011 + ], + [ + 18.978614564000168, + 79.15336935200008 + ], + [ + 18.822778555000014, + 79.24949150900005 + ], + [ + 18.88583360100006, + 79.44115478900011 + ], + [ + 18.742488472000105, + 79.533384893 + ], + [ + 18.35694355700008, + 79.62755389900013 + ], + [ + 17.747493532000192, + 79.59923128100007 + ], + [ + 18.098325466000176, + 79.71951008300016 + ], + [ + 17.566944488000104, + 79.88924513100005 + ], + [ + 16.956655435000073, + 79.956205808 + ] + ] + ], + [ + [ + [ + 21.57166444000012, + 78.57055014300005 + ], + [ + 21.329446549000068, + 78.61803882100014 + ], + [ + 21.055822504000048, + 78.5485919030001 + ], + [ + 20.171112456000174, + 78.48775085300008 + ], + [ + 20.663888567000186, + 78.38636368800002 + ], + [ + 20.843896476000168, + 78.22329728199998 + ], + [ + 21.09944343700016, + 78.20246808400003 + ], + [ + 21.778327471000182, + 78.25274843900007 + ], + [ + 22.1633285690001, + 78.24357813400007 + ], + [ + 22.242774593999968, + 78.476930654 + ], + [ + 21.80499248500007, + 78.58999179900019 + ], + [ + 21.57166444000012, + 78.57055014300005 + ] + ] + ], + [ + [ + [ + 11.628051593000123, + 78.46276993200001 + ], + [ + 11.300548508000077, + 78.55748728200007 + ], + [ + 11.064162577000104, + 78.68443388800006 + ], + [ + 11.183597489000135, + 78.72610921300014 + ], + [ + 10.825835564999977, + 78.87666244400015 + ], + [ + 10.488614501000143, + 78.89557000600013 + ], + [ + 10.536655547000123, + 78.77306379700008 + ], + [ + 10.900564591000148, + 78.61555174300008 + ], + [ + 11.073324500000126, + 78.45498699900008 + ], + [ + 11.322503562000179, + 78.44636570900013 + ], + [ + 11.85388755800011, + 78.29636166100016 + ], + [ + 11.872488510000153, + 78.40136478000011 + ], + [ + 11.628051593000123, + 78.46276993200001 + ] + ] + ], + [ + [ + [ + 26.918893541000045, + 78.6430490790001 + ], + [ + 26.59998844400019, + 78.80721535800006 + ], + [ + 26.463609514000098, + 78.70334161700015 + ], + [ + 26.918893541000045, + 78.6430490790001 + ] + ] + ], + [ + [ + [ + 20.725826473000154, + 79.086698856 + ], + [ + 20.196937602000162, + 79.11224404700005 + ], + [ + 20.123891495000066, + 79.04613798800005 + ], + [ + 20.34249153000019, + 78.99001326700011 + ], + [ + 20.707212445000152, + 79.01335971800012 + ], + [ + 20.725826473000154, + 79.086698856 + ] + ] + ], + [ + [ + [ + 23.199159470000097, + 80.3506735950001 + ], + [ + 22.83499360500008, + 80.40983575000018 + ], + [ + 22.40832556400005, + 80.42594912100014 + ], + [ + 22.53276849500014, + 80.3162321870002 + ], + [ + 22.37609446400012, + 80.10286748900012 + ], + [ + 21.856119579000108, + 80.14287984500015 + ], + [ + 21.872493460000157, + 80.25650458900014 + ], + [ + 21.293064562999973, + 80.2567791800002 + ], + [ + 20.826665462000165, + 80.21316629400013 + ], + [ + 20.329446439000037, + 80.42039543900017 + ], + [ + 19.701118525000084, + 80.49901383500008 + ], + [ + 19.4847085130001, + 80.38900621800013 + ], + [ + 19.91693157700007, + 80.37455514600015 + ], + [ + 19.827762544000166, + 80.27956203100013 + ], + [ + 19.385539535000134, + 80.31343866600008 + ], + [ + 18.787778577000097, + 80.19232083600008 + ], + [ + 18.14222149300008, + 80.18287543700006 + ], + [ + 18.239711576000104, + 80.04147725700017 + ], + [ + 18.736104479000062, + 80.02315005800017 + ], + [ + 18.812778441000034, + 79.97535644600003 + ], + [ + 18.188602587000048, + 79.89786793000019 + ], + [ + 18.471658451000167, + 79.78201427000016 + ], + [ + 18.707494529000087, + 79.74645924300006 + ], + [ + 19.57028053600004, + 79.7111786390002 + ], + [ + 20.39192950400013, + 79.79339790000006 + ], + [ + 21.699447560000067, + 79.83313516200008 + ], + [ + 21.952506437000068, + 79.7650766230002 + ], + [ + 21.77609855600008, + 79.7006340370001 + ], + [ + 21.279987452000057, + 79.71563378800016 + ], + [ + 20.49083545900004, + 79.68366470600017 + ], + [ + 19.642768576000037, + 79.6092272030001 + ], + [ + 19.67333050400009, + 79.55227736800009 + ], + [ + 20.273321551000038, + 79.45421748299998 + ], + [ + 20.743339454000136, + 79.45865821500007 + ], + [ + 20.968877525000153, + 79.36392561000014 + ], + [ + 21.37499649300014, + 79.39421529300012 + ], + [ + 21.694431494000185, + 79.3625363930002 + ], + [ + 22.14637751099997, + 79.40505024400017 + ], + [ + 22.65581852200006, + 79.35920995100014 + ], + [ + 22.661382597000113, + 79.2911505740002 + ], + [ + 22.926660445000095, + 79.21836078500019 + ], + [ + 23.759162468000113, + 79.17335968800012 + ], + [ + 24.23250044400004, + 79.22420515100004 + ], + [ + 24.281671536999966, + 79.30419834700018 + ], + [ + 24.776948474000164, + 79.36781699200003 + ], + [ + 25.149164486000018, + 79.32560706900017 + ], + [ + 25.632770461000177, + 79.39255249100006 + ], + [ + 25.97359457000016, + 79.50394882300003 + ], + [ + 25.81611855800014, + 79.61755898300004 + ], + [ + 26.44971651000003, + 79.70924040700004 + ], + [ + 26.62776556800003, + 79.77812288800004 + ], + [ + 27.18860860100017, + 79.86701146200011 + ], + [ + 27.101121480000018, + 79.96675007500016 + ], + [ + 27.236650484000165, + 80.09510165600017 + ], + [ + 26.800001608000116, + 80.17149180700017 + ], + [ + 25.94610544800014, + 80.18508893000012 + ], + [ + 25.543617521000158, + 80.23370614800018 + ], + [ + 23.960828545000084, + 80.2767690140002 + ], + [ + 23.55750443900007, + 80.12786400100015 + ], + [ + 23.047508546000074, + 80.24426600500004 + ], + [ + 23.308334597000055, + 80.28261438500004 + ], + [ + 23.199159470000097, + 80.3506735950001 + ] + ] + ], + [ + [ + [ + 18.481927456000108, + 80.23955068100014 + ], + [ + 18.758598490000054, + 80.30121600800004 + ], + [ + 18.32027859800013, + 80.3617821310001 + ], + [ + 18.141668455000172, + 80.30760938800006 + ], + [ + 18.481927456000108, + 80.23955068100014 + ] + ] + ], + [ + [ + [ + 37.698051544, + -46.9595339199999 + ], + [ + 37.846382565000056, + -46.95870276999989 + ], + [ + 37.89221950500013, + -46.89369960299996 + ], + [ + 37.78194450500018, + -46.830093362999946 + ], + [ + 37.65415954100007, + -46.82897923999997 + ], + [ + 37.58138249300015, + -46.89786557599996 + ], + [ + 37.698051544, + -46.9595339199999 + ] + ] + ], + [ + [ + [ + 44.0802845880001, + 65.95721731300006 + ], + [ + 43.893634524000106, + 66.13094801500017 + ], + [ + 43.69428654700005, + 66.25053698600004 + ], + [ + 43.157932586000186, + 66.41821662400008 + ], + [ + 42.592201562000184, + 66.40046157400002 + ], + [ + 42.56243859800014, + 66.46990832400013 + ], + [ + 42.20544060100008, + 66.52491104300015 + ], + [ + 41.999999483000124, + 66.39166560500013 + ], + [ + 41.999999483000124, + 66.33812653300015 + ], + [ + 42.131038469000146, + 66.19610608000005 + ], + [ + 42.264385497000035, + 66.12229554400005 + ], + [ + 42.66130046400008, + 66.02815185100013 + ], + [ + 42.83271457500007, + 65.93347406400011 + ], + [ + 42.95409056800003, + 65.96567901200007 + ], + [ + 43.19340547100006, + 65.95373815300013 + ], + [ + 43.43383047300006, + 65.88436851600017 + ], + [ + 43.70916358700015, + 65.86943716200017 + ], + [ + 44.0802845880001, + 65.95721731300006 + ] + ] + ], + [ + [ + [ + 42.415168559000165, + 66.72924457599999 + ], + [ + 42.59599655300002, + 66.7349368940001 + ], + [ + 42.328277559000014, + 66.86763365300004 + ], + [ + 42.281421547000036, + 66.81533208600007 + ], + [ + 42.415168559000165, + 66.72924457599999 + ] + ] + ], + [ + [ + [ + 48.389472480000165, + 68.77618244700005 + ], + [ + 48.41611855000019, + 68.74979906500005 + ], + [ + 48.9456824990001, + 68.7079648190001 + ], + [ + 49.729545512000016, + 68.83719113500007 + ], + [ + 49.974727579000046, + 68.94355078100006 + ], + [ + 50.08120758900003, + 69.05665517700015 + ], + [ + 50.36864853000003, + 69.11976152000011 + ], + [ + 50.140853548, + 69.31457337800003 + ], + [ + 49.653621562000126, + 69.42317686000007 + ], + [ + 49.28838750700004, + 69.51896893700012 + ], + [ + 49.06806147100019, + 69.5238524020001 + ], + [ + 48.665718551, + 69.4689933480002 + ], + [ + 48.29937758200015, + 69.30700485500006 + ], + [ + 48.183540518000086, + 69.19399986900004 + ], + [ + 48.14006459200016, + 69.00086623500005 + ], + [ + 48.16992562500002, + 68.80526815400009 + ], + [ + 48.389472480000165, + 68.77618244700005 + ] + ] + ], + [ + [ + [ + 29.671838446000095, + 69.74120252699998 + ], + [ + 29.784639585000036, + 69.74178255500004 + ], + [ + 30.04642854900004, + 69.82238410900004 + ], + [ + 29.96675855900014, + 69.87969134900004 + ], + [ + 29.76753245500015, + 69.88220172900009 + ], + [ + 29.671838446000095, + 69.74120252699998 + ] + ] + ], + [ + [ + [ + 29.07278047300008, + 78.89752282100017 + ], + [ + 28.8655494840001, + 78.95196998800003 + ], + [ + 28.43054144900003, + 78.96112671400005 + ], + [ + 28.423877501, + 78.88194321000009 + ], + [ + 29.07278047300008, + 78.89752282100017 + ] + ] + ], + [ + [ + [ + 51.19001050200012, + 80.09917526100014 + ], + [ + 50.853736593, + 80.09278908900006 + ], + [ + 50.19703660699997, + 79.9899446450001 + ], + [ + 50.33985149600011, + 79.9428918260001 + ], + [ + 50.994914497000195, + 79.91579765900019 + ], + [ + 51.56579251199997, + 79.94447852000013 + ], + [ + 51.19001050200012, + 80.09917526100014 + ] + ] + ], + [ + [ + [ + 32.82556556100013, + 80.13231948499998 + ], + [ + 33.62443955700013, + 80.20622272500003 + ], + [ + 33.28665556400017, + 80.24176400700014 + ], + [ + 32.87054855300005, + 80.19259660100005 + ], + [ + 31.493602523000106, + 80.11008665400016 + ], + [ + 31.55471246400009, + 80.06954037100007 + ], + [ + 32.28749046000013, + 80.08731855600013 + ], + [ + 32.82556556100013, + 80.13231948499998 + ] + ] + ], + [ + [ + [ + 50.20934258200009, + 80.15752152100015 + ], + [ + 50.43292951400002, + 80.22155071200007 + ], + [ + 49.93002655400011, + 80.25893048000006 + ], + [ + 49.53611750599998, + 80.17798526700011 + ], + [ + 49.955078554000124, + 80.06819088500015 + ], + [ + 50.20934258200009, + 80.15752152100015 + ] + ] + ], + [ + [ + [ + 50.750450591000174, + 80.81319992100003 + ], + [ + 50.506423550000136, + 80.87903859699998 + ], + [ + 50.51961549200007, + 80.9729698920001 + ], + [ + 49.78704453000012, + 80.98650582700014 + ], + [ + 49.6354365200001, + 80.91135066599998 + ], + [ + 48.990535572, + 80.84400945000004 + ], + [ + 48.8596035380001, + 80.78623517100004 + ], + [ + 49.54867946400003, + 80.75444160600017 + ], + [ + 49.22784854100013, + 80.60912119800008 + ], + [ + 48.93598162000012, + 80.55227144200012 + ], + [ + 48.43461254900018, + 80.60516242500017 + ], + [ + 47.93613858700007, + 80.60909873399999 + ], + [ + 47.54456758600003, + 80.53608799900019 + ], + [ + 48.17071955900019, + 80.49174974300018 + ], + [ + 47.58172959200016, + 80.44214044300008 + ], + [ + 47.817501465000134, + 80.34533968699998 + ], + [ + 47.26297754900014, + 80.35606718200006 + ], + [ + 47.091373504000046, + 80.41442886500016 + ], + [ + 46.55562957700005, + 80.31487348100006 + ], + [ + 46.93860661300016, + 80.19607525800018 + ], + [ + 47.381206472000144, + 80.21134255900017 + ], + [ + 47.6296955360001, + 80.29486034600018 + ], + [ + 48.01891759200004, + 80.2027747460001 + ], + [ + 48.014156504000084, + 80.12664259000007 + ], + [ + 48.38778352600019, + 80.10775883200006 + ], + [ + 48.43502058000007, + 80.2167453670001 + ], + [ + 48.84807557200003, + 80.18454645300011 + ], + [ + 49.128032479000126, + 80.23133256000011 + ], + [ + 48.86608157600017, + 80.31142483000008 + ], + [ + 48.500656581000044, + 80.33330042400013 + ], + [ + 48.84003447700019, + 80.43085555100004 + ], + [ + 49.52660756600005, + 80.40665431500008 + ], + [ + 49.6527406240001, + 80.52262800400018 + ], + [ + 50.47106147300019, + 80.58205100300017 + ], + [ + 51.06584149100013, + 80.60145443900018 + ], + [ + 51.65867254800003, + 80.71407218100012 + ], + [ + 51.69303851900003, + 80.77722412200012 + ], + [ + 51.11415059000018, + 80.84501661899998 + ], + [ + 50.750450591000174, + 80.81319992100003 + ] + ] + ], + [ + [ + [ + 47.430976537000106, + 80.79256853700008 + ], + [ + 47.91927755100011, + 80.75129101600004 + ], + [ + 48.49301949400012, + 80.65065168400014 + ], + [ + 48.63409061300001, + 80.72121322700019 + ], + [ + 48.28572061099999, + 80.76812942200007 + ], + [ + 48.375011517000075, + 80.84907597500012 + ], + [ + 47.279933468000195, + 80.88653805300004 + ], + [ + 46.913101487000176, + 80.79253098600009 + ], + [ + 46.04825956700017, + 80.70959255700006 + ], + [ + 45.69395048400003, + 80.71339291200013 + ], + [ + 44.88163359200007, + 80.64558499100008 + ], + [ + 44.874198509000166, + 80.60236236600008 + ], + [ + 45.44557155900014, + 80.54976793499998 + ], + [ + 45.96849854900006, + 80.55449851400016 + ], + [ + 46.21399661500004, + 80.46894493100012 + ], + [ + 46.63590960200003, + 80.54600731100004 + ], + [ + 47.03688861900008, + 80.5464039420001 + ], + [ + 47.278514580000035, + 80.69363056300006 + ], + [ + 47.59210253300017, + 80.71626119900009 + ], + [ + 47.430976537000106, + 80.79256853700008 + ] + ] + ], + [ + [ + [ + 51.81944248100007, + -46.45147558699995 + ], + [ + 51.86305251700003, + -46.41314531199998 + ], + [ + 51.7341614770001, + -46.32425522799991 + ], + [ + 51.650833625000075, + -46.38369515999989 + ], + [ + 51.724441487000036, + -46.45175755499997 + ], + [ + 51.81944248100007, + -46.45147558699995 + ] + ] + ], + [ + [ + [ + 56.82475648400009, + 66.0280911660002 + ], + [ + 56.76295453200015, + 66.11369621400013 + ], + [ + 56.35019257200014, + 66.35546148200012 + ], + [ + 56.178523483, + 66.40873300300007 + ], + [ + 55.69891752100017, + 66.36588387600005 + ], + [ + 55.5042194880001, + 66.3286201140001 + ], + [ + 55.179359552, + 66.17198832700018 + ], + [ + 55.24458651700007, + 66.08291853600014 + ], + [ + 55.51843251400015, + 66.120250527 + ], + [ + 55.75624856500019, + 66.18377579800017 + ], + [ + 56.00370447500012, + 66.28688494200014 + ], + [ + 56.43984557599998, + 65.99722832800006 + ], + [ + 56.483482602000095, + 65.73143013200001 + ], + [ + 56.692054528000085, + 65.39335444900007 + ], + [ + 56.71977649900009, + 65.12815187000018 + ], + [ + 56.97555547200011, + 65.0290177600001 + ], + [ + 57.16776659300007, + 65.05193002800019 + ], + [ + 57.20891553500002, + 65.13892513000019 + ], + [ + 57.02008852300003, + 65.29792195500005 + ], + [ + 57.00043463700007, + 65.6233620860001 + ], + [ + 56.79471255800007, + 65.74412569700019 + ], + [ + 56.7565874710001, + 65.80065442600016 + ], + [ + 56.84590955800002, + 65.96992897200016 + ], + [ + 56.82475648400009, + 66.0280911660002 + ] + ] + ], + [ + [ + [ + 58.43367352900009, + 66.386988 + ], + [ + 58.13319051400015, + 66.25872342300016 + ], + [ + 57.93006162800003, + 66.13615150000004 + ], + [ + 58.02002358900012, + 66.08304091200017 + ], + [ + 58.28458059300016, + 66.13044409500003 + ], + [ + 58.75571848700014, + 66.34159077400017 + ], + [ + 58.70140861500016, + 66.42527385100016 + ], + [ + 58.43367352900009, + 66.386988 + ] + ] + ], + [ + [ + [ + 54.38794360600019, + 66.1804035900002 + ], + [ + 54.4987144800001, + 66.28298584800012 + ], + [ + 54.8465495480001, + 66.32273786200011 + ], + [ + 55.211093604999974, + 66.41884157900017 + ], + [ + 55.290489507000075, + 66.46832112700014 + ], + [ + 55.22129052600019, + 66.54532902400013 + ], + [ + 55.00374258700009, + 66.55152442400004 + ], + [ + 54.591133512, + 66.49410956000003 + ], + [ + 54.32557252400005, + 66.40387971400008 + ], + [ + 54.116706561000115, + 66.41606448600015 + ], + [ + 53.83941258400006, + 66.38267685200009 + ], + [ + 53.76539652300005, + 66.33198427500014 + ], + [ + 53.87399262800005, + 66.25910446500006 + ], + [ + 54.175029519000134, + 66.1770084170002 + ], + [ + 54.38794360600019, + 66.1804035900002 + ] + ] + ], + [ + [ + [ + 57.13050450700007, + 66.47597363700004 + ], + [ + 56.80957048700009, + 66.35851366900016 + ], + [ + 56.803871631, + 66.24109058100015 + ], + [ + 56.94273747100016, + 66.17417013700003 + ], + [ + 57.17747149600007, + 66.20626075600018 + ], + [ + 57.40554459000015, + 66.32350094999998 + ], + [ + 57.589416556000174, + 66.36604413800018 + ], + [ + 58.158275538, + 66.41852960400018 + ], + [ + 58.4909665190001, + 66.52932931200019 + ], + [ + 58.453727567000044, + 66.61118144600016 + ], + [ + 58.1673355370001, + 66.60314688900019 + ], + [ + 57.63440658900004, + 66.50638603099998 + ], + [ + 57.13050450700007, + 66.47597363700004 + ] + ] + ], + [ + [ + [ + 60.254428592000124, + 69.96230003400018 + ], + [ + 60.02827059500015, + 70.09134362500004 + ], + [ + 59.82843361800013, + 70.1226416510001 + ], + [ + 59.54576851700011, + 70.21311591400013 + ], + [ + 59.341098535000185, + 70.34095301300016 + ], + [ + 59.13353361100019, + 70.40463972000015 + ], + [ + 59.06084054900009, + 70.46785234499998 + ], + [ + 58.71136061700008, + 70.43717340600011 + ], + [ + 58.64606458500003, + 70.37996406700012 + ], + [ + 58.42375958100013, + 70.34575215600017 + ], + [ + 58.55467954400018, + 70.27806862300002 + ], + [ + 58.40165348500017, + 70.20730122000003 + ], + [ + 58.60405348000012, + 70.02612370100013 + ], + [ + 58.900825492000195, + 69.90015476000008 + ], + [ + 59.366317502000015, + 69.89109107300004 + ], + [ + 59.496990535000066, + 69.84665474800016 + ], + [ + 59.538108631000114, + 69.71414004400003 + ], + [ + 60.12294754400011, + 69.609596254 + ], + [ + 60.21623661800004, + 69.45712943500007 + ], + [ + 60.51037956100015, + 69.2132271160001 + ], + [ + 60.92013560400005, + 69.0700375560001 + ], + [ + 60.945854635000046, + 68.97967795700015 + ], + [ + 60.86780151500005, + 68.88724266400004 + ], + [ + 60.547595546000196, + 68.75812380400009 + ], + [ + 60.19747557100004, + 68.69216275200012 + ], + [ + 59.8117635210001, + 68.70902462700019 + ], + [ + 59.71804060000005, + 68.65658609900015 + ], + [ + 59.875122495000085, + 68.52652008400008 + ], + [ + 59.867511559000036, + 68.46741962000004 + ], + [ + 59.544555488000185, + 68.49282718100005 + ], + [ + 59.36394156800009, + 68.53264708800003 + ], + [ + 59.161193556, + 68.62765327800014 + ], + [ + 59.186809490000144, + 68.68417563700012 + ], + [ + 59.465141482000035, + 68.7670651150001 + ], + [ + 58.94406555100005, + 68.93248733900003 + ], + [ + 59.235988631000055, + 68.94882987100004 + ], + [ + 59.26548354200003, + 69.01073860800017 + ], + [ + 58.97491061900007, + 69.02953033199998 + ], + [ + 58.44765454300011, + 68.97358146400012 + ], + [ + 58.27674854300011, + 68.90251750900012 + ], + [ + 58.07634360800006, + 68.8870976570002 + ], + [ + 57.54194648600003, + 68.68512161800015 + ], + [ + 57.226604536000195, + 68.71025374900012 + ], + [ + 56.93463150000014, + 68.65843213000005 + ], + [ + 56.62806355900017, + 68.68099353100013 + ], + [ + 56.228969632000144, + 68.60371121000003 + ], + [ + 56.050319592000164, + 68.6377170940001 + ], + [ + 55.29591360400008, + 68.5564516930001 + ], + [ + 54.97212956900012, + 68.4468576380001 + ], + [ + 54.84130851200007, + 68.33086131800019 + ], + [ + 54.88291963200004, + 68.26918978900017 + ], + [ + 54.67869154400012, + 68.23585512800008 + ], + [ + 54.41950951900009, + 68.29735834800016 + ], + [ + 54.195583622000015, + 68.25074071799997 + ], + [ + 53.4577555300001, + 68.25535679900008 + ], + [ + 53.568786579000175, + 68.33519543300008 + ], + [ + 54.162155587000086, + 68.36675212500018 + ], + [ + 54.12247850700004, + 68.46145321400019 + ], + [ + 53.97431160400009, + 68.60025518400005 + ], + [ + 54.061820517000115, + 68.66413936800012 + ], + [ + 54.13953048300016, + 68.84588132500005 + ], + [ + 53.90680358800006, + 68.83438252700006 + ], + [ + 53.622726472000124, + 68.9035166320001 + ], + [ + 53.19303155900019, + 68.87930718100012 + ], + [ + 52.9494135540001, + 68.81696375900015 + ], + [ + 52.69234460700011, + 68.71643422900007 + ], + [ + 52.272468590000074, + 68.64329441300015 + ], + [ + 52.615463611999985, + 68.5222017280002 + ], + [ + 52.67816946800008, + 68.45967507700004 + ], + [ + 52.40166456300011, + 68.36798812000006 + ], + [ + 52.316627473000096, + 68.41823796500012 + ], + [ + 52.41986050100019, + 68.50590479400017 + ], + [ + 52.22373151100015, + 68.58015772700008 + ], + [ + 51.44820363000014, + 68.42733233000018 + ], + [ + 50.97125255200018, + 68.38914538500012 + ], + [ + 50.49412947700017, + 68.28709672000019 + ], + [ + 50.046199565000165, + 68.13055629600012 + ], + [ + 49.7264324730001, + 67.99338695300008 + ], + [ + 49.386753500000054, + 67.90450022300001 + ], + [ + 49.013183474000016, + 67.86578622300016 + ], + [ + 48.764038610000114, + 67.89236171800013 + ], + [ + 48.68029048900007, + 67.83730451600013 + ], + [ + 48.72203857000011, + 67.75771868100003 + ], + [ + 47.80363058800003, + 67.68634157900016 + ], + [ + 47.73381050800003, + 67.61112657000018 + ], + [ + 47.784164624000084, + 67.515563654 + ], + [ + 47.57551558400007, + 67.30007498100014 + ], + [ + 47.63332355900019, + 67.13995582000018 + ], + [ + 47.35868849000019, + 66.98475063400008 + ], + [ + 47.21769347900016, + 67.03940366000018 + ], + [ + 46.83225652200019, + 66.96032811500004 + ], + [ + 46.28067750400015, + 66.91592330600008 + ], + [ + 46.18974257200006, + 66.9741069580001 + ], + [ + 45.728572606000114, + 66.97898237500004 + ], + [ + 45.53614858400016, + 67.10774316000015 + ], + [ + 45.110149586000034, + 67.26724474300016 + ], + [ + 44.9138105450001, + 67.29779409800017 + ], + [ + 44.83880257000004, + 67.40622876800006 + ], + [ + 44.99048651900006, + 67.53598850800012 + ], + [ + 45.240650622000146, + 67.61391858200011 + ], + [ + 45.250148492000164, + 67.72365026800003 + ], + [ + 45.97204962600017, + 67.81612445300016 + ], + [ + 46.42840553000008, + 67.81492634400007 + ], + [ + 46.587062552000134, + 67.83204034600016 + ], + [ + 46.45573455800019, + 68.11249648000012 + ], + [ + 46.314407624000125, + 68.226561441 + ], + [ + 45.86969351300007, + 68.39198349800017 + ], + [ + 45.802772565000055, + 68.47878833100003 + ], + [ + 45.59866752300019, + 68.52771769100013 + ], + [ + 45.223514492, + 68.56515026500006 + ], + [ + 44.567741544000114, + 68.54831906800018 + ], + [ + 44.016361512000174, + 68.56649338100016 + ], + [ + 43.76447258100018, + 68.63005653800008 + ], + [ + 43.41548952800014, + 68.68267946700018 + ], + [ + 43.37105957300008, + 68.61075351800002 + ], + [ + 43.796703513000125, + 68.4772244350001 + ], + [ + 44.141193532000045, + 68.31922556000006 + ], + [ + 44.19559459800007, + 68.2297128690002 + ], + [ + 44.177192465000076, + 68.10485905700011 + ], + [ + 44.264976472000114, + 68.03869365400004 + ], + [ + 44.15948854400011, + 67.9634323780001 + ], + [ + 44.17453758100015, + 67.87866568800007 + ], + [ + 44.053409524000074, + 67.78336981900003 + ], + [ + 44.09505853100012, + 67.66216230300006 + ], + [ + 43.93803748900007, + 67.53833896100019 + ], + [ + 43.7565956040001, + 67.31276367400011 + ], + [ + 43.79433059700011, + 67.20326098200013 + ], + [ + 44.01235161000005, + 67.18109604500017 + ], + [ + 44.18104545800014, + 67.11534269700019 + ], + [ + 44.43985348300009, + 66.855067169 + ], + [ + 44.34698853300006, + 66.74004817900015 + ], + [ + 44.4802664930001, + 66.63396379400007 + ], + [ + 44.29056558400015, + 66.482031909 + ], + [ + 44.72083650300016, + 66.54482493600017 + ], + [ + 44.99956847900006, + 66.53933194000007 + ], + [ + 45.13834345900017, + 66.45943278900012 + ], + [ + 45.44370256200017, + 66.40069073500007 + ], + [ + 45.787406525, + 66.4527876160002 + ], + [ + 46.18048056900017, + 66.48055183200006 + ], + [ + 46.47534955300017, + 66.59246583000004 + ], + [ + 46.712947507000194, + 66.56485299100018 + ], + [ + 46.76668958800013, + 66.38811721000008 + ], + [ + 46.90879855300017, + 66.32783405900017 + ], + [ + 47.087432501000194, + 66.49512477700011 + ], + [ + 47.40039047000005, + 66.55382844100018 + ], + [ + 47.708473524000055, + 66.46818399900019 + ], + [ + 47.83026559400008, + 66.54235294500018 + ], + [ + 48.05875359300012, + 66.61472950600006 + ], + [ + 48.979255541999976, + 66.85832521400005 + ], + [ + 49.210418541000195, + 66.93264687900012 + ], + [ + 49.57346357800003, + 67.14212304500018 + ], + [ + 49.75205947100005, + 67.08875328800008 + ], + [ + 49.96734949300014, + 67.09580263599997 + ], + [ + 50.49135959300014, + 67.26100307500013 + ], + [ + 51.012065547000134, + 67.13972783200012 + ], + [ + 50.881790487000046, + 67.0994729040001 + ], + [ + 50.95379656800003, + 66.98965706400014 + ], + [ + 51.13037862500005, + 66.95132511200006 + ], + [ + 51.71561450500013, + 66.98404169200006 + ], + [ + 51.928047471000184, + 66.96607374200016 + ], + [ + 52.06622649700017, + 66.86298773200014 + ], + [ + 52.09261356700017, + 66.72790129200007 + ], + [ + 52.14399362700016, + 66.07737156000019 + ], + [ + 52.34900257400017, + 65.9825638530001 + ], + [ + 52.59025151700018, + 66.04508212200005 + ], + [ + 52.66079747000015, + 66.15998678300014 + ], + [ + 52.594554619000064, + 66.35222623500005 + ], + [ + 52.83464853600009, + 66.29576657400014 + ], + [ + 53.205158496000195, + 66.12514857600019 + ], + [ + 53.33897356900019, + 66.10364077999998 + ], + [ + 53.513812525000105, + 66.16421344200018 + ], + [ + 53.473781562000056, + 66.34150678700007 + ], + [ + 53.65324749700011, + 66.5342124410002 + ], + [ + 53.56023754000006, + 66.67102957600002 + ], + [ + 53.09932758100018, + 66.76168639700012 + ], + [ + 52.81526957600016, + 66.78974867300008 + ], + [ + 52.41328858600008, + 66.78211929800005 + ], + [ + 52.37698756999998, + 66.94393160300018 + ], + [ + 52.751697534000186, + 66.85414381800007 + ], + [ + 52.970127584000124, + 66.86033938600008 + ], + [ + 53.442268623000075, + 66.9823096560001 + ], + [ + 53.46923052400007, + 66.87257797000018 + ], + [ + 53.556636507000064, + 66.8283478410001 + ], + [ + 53.8316425590001, + 66.91800503600001 + ], + [ + 54.04236947300012, + 67.17140656500015 + ], + [ + 54.498401500000114, + 67.32137054800012 + ], + [ + 54.79759956900017, + 67.33144073400018 + ], + [ + 54.90994255300012, + 67.29430689100019 + ], + [ + 54.960750632000156, + 67.15039330100018 + ], + [ + 54.767032612000094, + 66.9156022790001 + ], + [ + 54.81966761100017, + 66.80001114000004 + ], + [ + 54.99509447500009, + 66.70488223900014 + ], + [ + 55.178298571000084, + 66.65481545500006 + ], + [ + 55.455512584000076, + 66.66218583000017 + ], + [ + 55.461677474, + 66.748723616 + ], + [ + 55.254119591000176, + 66.8710517930001 + ], + [ + 55.747211532, + 66.88679250500007 + ], + [ + 55.97986248700005, + 66.81330986800009 + ], + [ + 56.30511855200018, + 66.65250473200012 + ], + [ + 56.501277550000054, + 66.61366869200003 + ], + [ + 56.86058861700019, + 66.5879942520001 + ], + [ + 57.34915550400012, + 66.64344825300014 + ], + [ + 57.666625619000115, + 66.71804383900007 + ], + [ + 57.94430952200008, + 66.75560599700009 + ], + [ + 58.38092453600018, + 66.78745957600017 + ], + [ + 58.653140588000156, + 66.75990105200009 + ], + [ + 58.80730859800002, + 66.69373598400011 + ], + [ + 58.94704447900017, + 66.69020351500012 + ], + [ + 59.275299589000156, + 66.75981019200003 + ], + [ + 59.783851616, + 66.73865996800009 + ], + [ + 59.9204905520001, + 66.75585678300001 + ], + [ + 60.12477463100004, + 66.8400141090001 + ], + [ + 60.24571258600014, + 66.94830410700013 + ], + [ + 60.37472147500017, + 67.15201955800018 + ], + [ + 60.64368853400015, + 67.17659479500009 + ], + [ + 60.80064352699998, + 67.11366447200015 + ], + [ + 60.862148592000096, + 66.93437908300007 + ], + [ + 61.1492535860001, + 66.7812874780002 + ], + [ + 61.12086458300013, + 66.66987756700001 + ], + [ + 60.772792475000074, + 66.56182393900002 + ], + [ + 60.79856163000011, + 66.46388810600007 + ], + [ + 61.0153235140001, + 66.47670671800006 + ], + [ + 61.66522259100009, + 66.66614627900003 + ], + [ + 62.215896531000055, + 66.77994436100016 + ], + [ + 62.41177356200012, + 66.7730779060002 + ], + [ + 62.54663452900013, + 66.69744397100004 + ], + [ + 61.96754861900018, + 66.56573141400014 + ], + [ + 61.71244053400011, + 66.42453406400017 + ], + [ + 61.77634449900012, + 66.19048316400017 + ], + [ + 61.64694953900005, + 66.08415369300013 + ], + [ + 60.803672579000136, + 65.8115802370001 + ], + [ + 60.47578862000006, + 65.75578442200003 + ], + [ + 60.356738605000146, + 65.68068374300015 + ], + [ + 60.323036481000145, + 65.59399424400004 + ], + [ + 60.393398535000074, + 65.38902117200007 + ], + [ + 60.07432563200018, + 65.35122348300007 + ], + [ + 59.881298616000095, + 65.38566405200015 + ], + [ + 59.61761852700005, + 65.56098061000017 + ], + [ + 59.280456639000136, + 65.46049667800014 + ], + [ + 59.06774857900001, + 65.307664241 + ], + [ + 58.93899550500015, + 65.10788677500005 + ], + [ + 58.670188541000186, + 64.93460718800009 + ], + [ + 58.67144750200015, + 64.84687330400004 + ], + [ + 58.89350859300009, + 64.56467071700007 + ], + [ + 58.88418154600009, + 64.47869166900011 + ], + [ + 58.74269854100004, + 64.24897488300007 + ], + [ + 58.77252152000017, + 64.1613546580001 + ], + [ + 58.8721996160001, + 64.12146618700012 + ], + [ + 59.069404508, + 64.1849758670001 + ], + [ + 59.095878581000136, + 64.30277278800003 + ], + [ + 59.351604580000185, + 64.43787163299999 + ], + [ + 59.49917552900001, + 64.57063695600016 + ], + [ + 59.38331549900005, + 64.70991065900006 + ], + [ + 59.37891751400019, + 64.79875196000017 + ], + [ + 59.53250851400014, + 64.89503119400007 + ], + [ + 59.74271357000009, + 64.97434327600018 + ], + [ + 59.93393361600005, + 65.00505289300014 + ], + [ + 60.18823653500016, + 64.90755996000001 + ], + [ + 60.43972062000006, + 64.95349111300015 + ], + [ + 60.8563385920001, + 64.94563307800001 + ], + [ + 61.186923535, + 64.98808507100006 + ], + [ + 61.380054487000166, + 65.0719426600001 + ], + [ + 61.368137600000125, + 65.36747431700013 + ], + [ + 61.48084251400002, + 65.47477139500006 + ], + [ + 61.68702660399998, + 65.55572364800008 + ], + [ + 62.33591851200009, + 65.70375677500016 + ], + [ + 62.38224059700019, + 65.62183574200009 + ], + [ + 62.864795480000055, + 65.72837794499998 + ], + [ + 63.06757349900005, + 65.82566468400006 + ], + [ + 63.283073571000045, + 65.96261995300017 + ], + [ + 63.37593852100008, + 66.05240690000016 + ], + [ + 63.77465459100006, + 66.3135972290001 + ], + [ + 64.1818544890001, + 66.48874614800019 + ], + [ + 64.98171956000016, + 66.68071201500015 + ], + [ + 65.40500650900015, + 66.74330622400015 + ], + [ + 65.26673863399998, + 66.55610949300006 + ], + [ + 66.75454757200015, + 66.61733862500006 + ], + [ + 67.86102249500016, + 66.59953780900014 + ], + [ + 68.57563053500019, + 66.50938541099998 + ], + [ + 69.41986856400007, + 66.44668274100019 + ], + [ + 69.91491650700016, + 66.44388301700013 + ], + [ + 69.71633949700004, + 66.51727362000014 + ], + [ + 69.4547724860002, + 66.53447144200004 + ], + [ + 69.17176858900001, + 66.62354911200009 + ], + [ + 69.08421357500004, + 66.78262221200009 + ], + [ + 68.8662495590001, + 66.79563880500018 + ], + [ + 68.49118051400012, + 66.68932542700014 + ], + [ + 68.28444657100005, + 66.68396235000006 + ], + [ + 68.4610975280001, + 66.80805290600017 + ], + [ + 68.6404575160002, + 66.79552481100018 + ], + [ + 69.08892856300008, + 66.85164198800004 + ], + [ + 69.24298861400018, + 66.78552939100007 + ], + [ + 69.43016053600007, + 66.78178318300007 + ], + [ + 69.5216366040001, + 66.62732616500006 + ], + [ + 69.78180652000009, + 66.54581701800015 + ], + [ + 70.06672652000009, + 66.6001951180001 + ], + [ + 70.03806259000004, + 66.72240829600014 + ], + [ + 69.676666609, + 66.79681411500007 + ], + [ + 69.88339954500009, + 66.87594313700015 + ], + [ + 70.05133851900007, + 66.79617289900017 + ], + [ + 70.26609059000009, + 66.80896066600013 + ], + [ + 70.68459348400012, + 66.79054260700008 + ], + [ + 70.27903761300013, + 66.59689868300012 + ], + [ + 70.5944824930001, + 66.50884310200018 + ], + [ + 70.96695750600003, + 66.53026758200019 + ], + [ + 70.98597755300017, + 66.61675071800016 + ], + [ + 71.3806605870002, + 66.72375124400008 + ], + [ + 71.58315261600012, + 66.67723302300004 + ], + [ + 71.586852556, + 66.831414779 + ], + [ + 71.30338262499998, + 67.00596975700012 + ], + [ + 71.52749661100006, + 66.97051413900016 + ], + [ + 71.67246263200019, + 67.00029252600012 + ], + [ + 71.84393357300013, + 66.97492452800009 + ], + [ + 72.03910048900013, + 67.09515438000017 + ], + [ + 71.94103959800015, + 67.17247458700007 + ], + [ + 72.23697660300013, + 67.28585357400004 + ], + [ + 72.05461857700016, + 67.33749900599997 + ], + [ + 72.22234364400009, + 67.39705008100009 + ], + [ + 72.41188865000004, + 67.36269232400014 + ], + [ + 72.42620862900014, + 67.51354965000019 + ], + [ + 72.5591736090002, + 67.62170117900018 + ], + [ + 72.75602763400008, + 67.62705755100018 + ], + [ + 73.19483954400005, + 67.86934920300007 + ], + [ + 73.20119453600006, + 67.95605496200005 + ], + [ + 73.07714857100018, + 68.15849586100018 + ], + [ + 73.13699351600008, + 68.24228673000005 + ], + [ + 73.44418356200009, + 68.43422963100005 + ], + [ + 73.61608164400008, + 68.46842695700013 + ], + [ + 73.56282755800004, + 68.54549587500009 + ], + [ + 73.33117656400009, + 68.66555859100004 + ], + [ + 72.60324062700016, + 68.91180314900015 + ], + [ + 72.47483054100019, + 69.09121812200004 + ], + [ + 72.46746050100006, + 69.25049071100017 + ], + [ + 72.54206061300016, + 69.34394122000009 + ], + [ + 72.48396262400001, + 69.4367112860001 + ], + [ + 72.57598854500003, + 69.48632813000006 + ], + [ + 72.48885363200009, + 69.67615108000007 + ], + [ + 72.63490259500009, + 69.82763369500009 + ], + [ + 72.4669575870002, + 69.96269733600019 + ], + [ + 72.4455414890001, + 70.03382901700013 + ], + [ + 72.54779064899998, + 70.15086385400008 + ], + [ + 72.46102152300017, + 70.28271471200014 + ], + [ + 72.66187254200008, + 70.37863687700013 + ], + [ + 72.84532155800008, + 70.38622870200004 + ], + [ + 72.87090262300006, + 70.46775360700019 + ], + [ + 72.74709353100013, + 70.60208433399998 + ], + [ + 72.87695351900015, + 70.7264964200001 + ], + [ + 72.83368663800019, + 70.88818802600008 + ], + [ + 72.66909053500018, + 70.9975162070001 + ], + [ + 72.6233295340001, + 71.08844175200016 + ], + [ + 72.73164350500002, + 71.12337869700008 + ], + [ + 72.17949652900006, + 71.28742763000014 + ], + [ + 71.8974765000001, + 71.43486731900015 + ], + [ + 71.971237583, + 71.58319129800014 + ], + [ + 72.16570259800017, + 71.61875403700014 + ], + [ + 72.28922251500006, + 71.72609067800005 + ], + [ + 72.315727601, + 71.83974442300007 + ], + [ + 72.71935261700003, + 72.09479601400011 + ], + [ + 72.85283660400017, + 72.28851738700018 + ], + [ + 72.81098961800018, + 72.38420335000012 + ], + [ + 72.87934152300016, + 72.50674694200018 + ], + [ + 72.77449749300018, + 72.5199464280002 + ], + [ + 72.75729363700015, + 72.7325148450002 + ], + [ + 71.89909353700006, + 72.87305606000012 + ], + [ + 71.5035936020002, + 72.92153631700012 + ], + [ + 70.91744962700011, + 72.92300164200014 + ], + [ + 69.75077855800015, + 72.8906964460001 + ], + [ + 69.6373065320002, + 73.00992885100015 + ], + [ + 69.33357251200016, + 72.98511623800016 + ], + [ + 69.18373861700013, + 72.81042329400003 + ], + [ + 68.98802956000009, + 72.68864279100018 + ], + [ + 68.74845850600008, + 72.41896544900015 + ], + [ + 68.81910655000007, + 72.29376680500019 + ], + [ + 68.73399352000013, + 72.21991050400004 + ], + [ + 68.74492653900012, + 72.06901428600014 + ], + [ + 68.37449654200014, + 71.72817341299998 + ], + [ + 67.99304954000013, + 71.55199989000005 + ], + [ + 67.10196656200003, + 71.31522319500004 + ], + [ + 66.84295653400011, + 71.13940053800013 + ], + [ + 67.04405951400014, + 71.0850531160001 + ], + [ + 66.7069095280001, + 70.8826645200001 + ], + [ + 66.73238364100013, + 70.78494058100011 + ], + [ + 67.19554850000003, + 70.85190897000018 + ], + [ + 67.48876155500011, + 70.77381746000003 + ], + [ + 67.31025652100004, + 70.57985083300008 + ], + [ + 67.38117949200011, + 70.51134268800013 + ], + [ + 67.184768534, + 70.34600411600002 + ], + [ + 67.17059356200014, + 70.21741868000015 + ], + [ + 67.39803348800001, + 70.12447930000013 + ], + [ + 67.33721154800003, + 70.05658152500007 + ], + [ + 67.0599894880001, + 69.97716332800019 + ], + [ + 66.98294856600018, + 70.0728025200001 + ], + [ + 66.79656253200017, + 69.86695772900003 + ], + [ + 66.83928660100014, + 69.52853654400008 + ], + [ + 67.0499265110002, + 69.68640583500007 + ], + [ + 67.28981758600008, + 69.62588614700002 + ], + [ + 67.55941060499998, + 69.61504331700013 + ], + [ + 67.7824636100001, + 69.51848127800014 + ], + [ + 67.97415958000005, + 69.48894546300016 + ], + [ + 68.19644161700012, + 69.54922056700008 + ], + [ + 68.08582262300013, + 69.25503035000014 + ], + [ + 68.36950662800012, + 69.07294490200019 + ], + [ + 68.53531659800012, + 68.99463261300008 + ], + [ + 69.08122257700018, + 68.96904920100019 + ], + [ + 68.98776251200019, + 68.91616743800017 + ], + [ + 69.10906960600005, + 68.84218792300015 + ], + [ + 68.97181661200011, + 68.75725342700008 + ], + [ + 68.74417853800014, + 68.49882443200005 + ], + [ + 68.58007864400003, + 68.37987516800018 + ], + [ + 68.58690654200012, + 68.31245013300014 + ], + [ + 68.30436750500019, + 68.19464684200005 + ], + [ + 68.13015752700005, + 68.27430912100004 + ], + [ + 68.16844958100006, + 68.38684907900017 + ], + [ + 68.07746150700007, + 68.44586522100019 + ], + [ + 67.86705059200006, + 68.46338339900012 + ], + [ + 67.40099364100007, + 68.69708410300007 + ], + [ + 67.2712406060001, + 68.69600132900018 + ], + [ + 67.05751062400003, + 68.80352807100013 + ], + [ + 67.07386757300009, + 68.85319772000008 + ], + [ + 66.52932751000003, + 68.94816719800019 + ], + [ + 66.41328458600003, + 69.06422386700007 + ], + [ + 66.06514760200008, + 69.09738368200004 + ], + [ + 65.55695348300014, + 69.17478770800017 + ], + [ + 64.9375605090001, + 69.30925556400007 + ], + [ + 64.761283553, + 69.39561716200006 + ], + [ + 64.74986254000015, + 69.48395638700003 + ], + [ + 64.30644259500019, + 69.55322694900008 + ], + [ + 64.14893355800018, + 69.63696367100016 + ], + [ + 63.82945262400017, + 69.61769183100006 + ], + [ + 63.07527160700016, + 69.73019306499998 + ], + [ + 62.72150449800006, + 69.69397385600018 + ], + [ + 62.76498461500006, + 69.76436692300013 + ], + [ + 62.3497545190001, + 69.87279421600005 + ], + [ + 61.955539531000056, + 69.88848916200016 + ], + [ + 61.46075058900004, + 69.86085352500015 + ], + [ + 61.230968593000114, + 69.82524518800011 + ], + [ + 60.99618964000007, + 69.86910902900001 + ], + [ + 60.76308455400016, + 69.85501703800014 + ], + [ + 60.254428592000124, + 69.96230003400018 + ] + ], + [ + [ + 52.93019049700001, + 67.20846463500015 + ], + [ + 52.73442461100018, + 67.31150471200004 + ], + [ + 52.65746650200009, + 67.39201389800007 + ], + [ + 52.87624356300006, + 67.46455072100008 + ], + [ + 53.25262052000005, + 67.47258511000007 + ], + [ + 53.63603961700005, + 67.56238815000006 + ], + [ + 53.78155549100012, + 67.55840473500007 + ], + [ + 53.88640253900002, + 67.45305209100013 + ], + [ + 53.74791757300011, + 67.38382729300008 + ], + [ + 53.82922756600004, + 67.28186295000006 + ], + [ + 53.567699613000116, + 67.17928756600003 + ], + [ + 53.4550366090001, + 67.21537685600003 + ], + [ + 53.173984522000126, + 67.15265272700009 + ], + [ + 52.93019049700001, + 67.20846463500015 + ] + ] + ], + [ + [ + [ + 50.937934487000064, + 68.44531670900005 + ], + [ + 51.274814575000164, + 68.45421292600014 + ], + [ + 51.54597853100006, + 68.52053087900003 + ], + [ + 51.45315549100013, + 68.56606506500009 + ], + [ + 50.873947541, + 68.4715319500001 + ], + [ + 50.937934487000064, + 68.44531670900005 + ] + ] + ], + [ + [ + [ + 53.16297153900007, + 70.97057593200009 + ], + [ + 53.129913481000074, + 71.08361930700005 + ], + [ + 53.2512546050001, + 71.12594959500018 + ], + [ + 53.28144052100015, + 71.24222855300007 + ], + [ + 53.078472567000176, + 71.2655830490001 + ], + [ + 53.002933515000166, + 71.33441222100004 + ], + [ + 52.68959450400001, + 71.42977782700007 + ], + [ + 52.28879955500014, + 71.40478265700017 + ], + [ + 52.17556356300014, + 71.32055659999997 + ], + [ + 52.276359469000056, + 71.25950281700005 + ], + [ + 52.55543862400003, + 71.24412772400007 + ], + [ + 52.953704586000015, + 70.97953316900004 + ], + [ + 53.16297153900007, + 70.97057593200009 + ] + ] + ], + [ + [ + [ + 55.890193557000146, + 73.01353809800008 + ], + [ + 56.31819549400018, + 73.02192268400017 + ], + [ + 56.04098852200008, + 73.12534581400018 + ], + [ + 56.40222960600016, + 73.15416363500009 + ], + [ + 56.42251951100002, + 73.23533113600013 + ], + [ + 55.31450248600015, + 73.35239497500004 + ], + [ + 54.95882061500009, + 73.433913007 + ], + [ + 54.55120447300004, + 73.41169492800014 + ], + [ + 54.39694258500003, + 73.31461304300012 + ], + [ + 54.173168568999984, + 73.28847223400004 + ], + [ + 53.89324954799997, + 73.32248650000014 + ], + [ + 53.36404451200019, + 73.22031512400008 + ], + [ + 53.13683659700001, + 73.12193555300018 + ], + [ + 53.12119261300006, + 72.933142068 + ], + [ + 52.58592662300009, + 72.87298012000008 + ], + [ + 52.40117254500012, + 72.7635453210001 + ], + [ + 52.49748949800005, + 72.6848586970001 + ], + [ + 52.659431555000026, + 72.68258451900005 + ], + [ + 52.80694953100004, + 72.55850016500005 + ], + [ + 52.67719649600008, + 72.48687076700003 + ], + [ + 52.700084624000056, + 72.39271902800004 + ], + [ + 52.53105147600019, + 72.32624014200019 + ], + [ + 52.35907359800018, + 72.16064893900005 + ], + [ + 52.06276359800012, + 72.14472567000018 + ], + [ + 51.79676859400013, + 72.17768649900006 + ], + [ + 51.639591481000195, + 72.1488527520001 + ], + [ + 51.451702572000045, + 72.04134025899998 + ], + [ + 51.39161656300013, + 71.90010535800019 + ], + [ + 51.41282646600007, + 71.72419854700013 + ], + [ + 51.503536596000174, + 71.59260669000008 + ], + [ + 51.83489954800007, + 71.47609873900018 + ], + [ + 52.19187156100014, + 71.52989664300003 + ], + [ + 52.61009248800002, + 71.52988088500018 + ], + [ + 52.61457848300006, + 71.49023666300002 + ], + [ + 53.0043755370001, + 71.46431763900006 + ], + [ + 53.156352518000176, + 71.47923373800012 + ], + [ + 53.24969858900016, + 71.39358963100005 + ], + [ + 53.440578496000114, + 71.31260602900005 + ], + [ + 53.44648354700013, + 71.25388627100006 + ], + [ + 53.73011759500014, + 71.19123070700005 + ], + [ + 54.10834460600006, + 71.16326683400007 + ], + [ + 53.49068048400011, + 71.07327268600005 + ], + [ + 53.659439544000065, + 70.99985811100004 + ], + [ + 53.63814163100011, + 70.93379144700003 + ], + [ + 53.43366258800006, + 70.8914839580001 + ], + [ + 53.54861854600006, + 70.81600927900018 + ], + [ + 53.839542503000075, + 70.8199620170002 + ], + [ + 54.042850594000015, + 70.76145616500014 + ], + [ + 54.46430559400005, + 70.72864051100015 + ], + [ + 54.62628151500019, + 70.66648769300014 + ], + [ + 54.804790572000115, + 70.69555730700017 + ], + [ + 55.19405755500014, + 70.59338660100002 + ], + [ + 55.35963853200013, + 70.6376933410001 + ], + [ + 55.437480596000114, + 70.73189051000003 + ], + [ + 55.631862631000104, + 70.66889095200014 + ], + [ + 55.818160487000114, + 70.67151599700014 + ], + [ + 56.30324150900003, + 70.60783750500002 + ], + [ + 56.237968611000156, + 70.72091189300016 + ], + [ + 56.431320510000035, + 70.7276646900001 + ], + [ + 56.775344494000194, + 70.61864110700009 + ], + [ + 57.13179062700004, + 70.67221789700017 + ], + [ + 57.29943455800003, + 70.62514965500003 + ], + [ + 57.61674860199997, + 70.74750180500018 + ], + [ + 57.44815047500009, + 70.83072739800019 + ], + [ + 56.895194478000064, + 70.92934300300004 + ], + [ + 56.278629559000194, + 71.19974504400011 + ], + [ + 55.89217755400006, + 71.48283611300019 + ], + [ + 55.52097357200006, + 71.87159951100017 + ], + [ + 55.38797355500003, + 71.97538826000016 + ], + [ + 55.371105478000175, + 72.09528367300004 + ], + [ + 55.49534959100009, + 72.19198451700004 + ], + [ + 55.476436497, + 72.41759266100007 + ], + [ + 55.40342760600004, + 72.49967429200007 + ], + [ + 55.813133524000136, + 72.77341819800017 + ], + [ + 56.14590061300015, + 72.8291467900001 + ], + [ + 56.20331547600006, + 72.97791400400007 + ], + [ + 55.890193557000146, + 73.01353809800008 + ] + ] + ], + [ + [ + [ + 55.128025592000085, + 73.75259011600002 + ], + [ + 55.27114860100011, + 73.71189245500005 + ], + [ + 54.36684048899997, + 73.5887081510001 + ], + [ + 54.27841157800009, + 73.51738335100009 + ], + [ + 54.5813716130001, + 73.44420564800015 + ], + [ + 55.06384250900004, + 73.46344815100002 + ], + [ + 55.375820634000036, + 73.37576590000009 + ], + [ + 55.72549452400011, + 73.37040952900003 + ], + [ + 56.322639579000054, + 73.2983529890002 + ], + [ + 56.63804255000008, + 73.30587608300004 + ], + [ + 57.08378260500018, + 73.40472135200008 + ], + [ + 57.10337061000001, + 73.54755233500015 + ], + [ + 57.29303363300005, + 73.58019314300009 + ], + [ + 57.575603515000125, + 73.6805563750001 + ], + [ + 57.25295656900016, + 73.82582213300003 + ], + [ + 56.84614156900017, + 73.85867567300016 + ], + [ + 56.84893458600004, + 73.91755569300011 + ], + [ + 57.32984963400003, + 73.85076315700007 + ], + [ + 57.55500063000011, + 73.76105885500004 + ], + [ + 57.874034473000165, + 73.81069179200006 + ], + [ + 57.78888355600003, + 73.94320716700014 + ], + [ + 57.533996586, + 74.04975121500007 + ], + [ + 57.307533488000104, + 74.08271941900011 + ], + [ + 57.601474595000184, + 74.15721811000014 + ], + [ + 57.67492253000012, + 74.06144765800019 + ], + [ + 57.96462256199999, + 74.00195693199998 + ], + [ + 58.06798551000003, + 74.07677564400012 + ], + [ + 58.29262152100006, + 74.12279966900007 + ], + [ + 58.81501760200018, + 74.29833952000001 + ], + [ + 58.71027750700017, + 74.42204249700018 + ], + [ + 58.477828556000134, + 74.50787922100011 + ], + [ + 59.04341859600004, + 74.47007264600006 + ], + [ + 59.23056453400005, + 74.67723993300007 + ], + [ + 59.46255147400012, + 74.67334083900005 + ], + [ + 59.74187454200012, + 74.60464946600007 + ], + [ + 59.85358050100007, + 74.74335336800016 + ], + [ + 60.20507460500011, + 74.74796877900019 + ], + [ + 60.36141553900006, + 74.8376963820001 + ], + [ + 60.66271947800004, + 74.88842768299997 + ], + [ + 60.588710626000136, + 74.96511556000013 + ], + [ + 60.24553254300008, + 74.97601102800013 + ], + [ + 60.40957259100003, + 75.05773458400006 + ], + [ + 60.86270850300019, + 75.06640985400003 + ], + [ + 60.95359448500011, + 75.17277033800008 + ], + [ + 61.18151050200004, + 75.24291965900011 + ], + [ + 61.62322959200003, + 75.28509052300006 + ], + [ + 61.644138584000075, + 75.34871553800008 + ], + [ + 61.88626461000007, + 75.44108360800004 + ], + [ + 62.40306459700014, + 75.47251826000002 + ], + [ + 62.85837159000005, + 75.56429054400007 + ], + [ + 63.43353258900004, + 75.63995649900005 + ], + [ + 64.53495758300005, + 75.74453951700013 + ], + [ + 64.84262053600003, + 75.7993221270001 + ], + [ + 65.25987251500004, + 75.81190403400012 + ], + [ + 65.86544758500003, + 75.96579057999998 + ], + [ + 66.39511161400003, + 76.0082432430001 + ], + [ + 66.75290656300018, + 76.09487323000019 + ], + [ + 67.28613256600005, + 76.14352950800009 + ], + [ + 67.98867049800003, + 76.27126937700007 + ], + [ + 68.38955664300005, + 76.44403364500016 + ], + [ + 68.66433755800017, + 76.482877228 + ], + [ + 68.89272363200001, + 76.5976078810001 + ], + [ + 68.78096755000013, + 76.6441579540001 + ], + [ + 69.07533261300011, + 76.72432532500017 + ], + [ + 68.8062896140001, + 76.92027662000004 + ], + [ + 68.43646948500009, + 77.03555678999999 + ], + [ + 68.04237351900014, + 77.05557763600007 + ], + [ + 67.28383659500003, + 77.020244059 + ], + [ + 66.72847750600016, + 76.94431072100008 + ], + [ + 65.86666849300019, + 76.7837240180001 + ], + [ + 65.7863155460002, + 76.72337096200016 + ], + [ + 65.96720154300016, + 76.59196920700003 + ], + [ + 65.48973849800007, + 76.62021555000013 + ], + [ + 65.2556995, + 76.52560498500014 + ], + [ + 64.92561361500015, + 76.54028387700015 + ], + [ + 64.75913258900005, + 76.47511743000013 + ], + [ + 64.16546652700004, + 76.37528024600016 + ], + [ + 63.752460485000086, + 76.38865558400016 + ], + [ + 63.47010752700004, + 76.3251750730002 + ], + [ + 62.94402357600012, + 76.26084765400014 + ], + [ + 62.58260747800017, + 76.24604471000015 + ], + [ + 62.215461511000115, + 76.3194059760001 + ], + [ + 61.68558156400019, + 76.34923934900019 + ], + [ + 60.93610748800012, + 76.2988206930001 + ], + [ + 60.856197608000116, + 76.15259403300018 + ], + [ + 60.955821556000046, + 76.08770888200019 + ], + [ + 60.663764534000165, + 76.03830561000012 + ], + [ + 60.40367860400005, + 76.1449026310001 + ], + [ + 60.093063545000064, + 76.08292533000014 + ], + [ + 60.19292453300005, + 76.02628897800008 + ], + [ + 59.416915531000086, + 75.95560505900005 + ], + [ + 59.12907762300006, + 75.88656952500008 + ], + [ + 58.84261652700013, + 75.88689759300001 + ], + [ + 58.42794751500003, + 75.80231999900019 + ], + [ + 58.38595149800011, + 75.73723804100013 + ], + [ + 57.95599356000014, + 75.69153454000019 + ], + [ + 58.12554152400003, + 75.61741823200015 + ], + [ + 57.442508616000055, + 75.50461742900018 + ], + [ + 57.64785350900013, + 75.4551524650002 + ], + [ + 57.605731596000055, + 75.36697333500007 + ], + [ + 57.28578161100006, + 75.43393418000005 + ], + [ + 56.68457049400013, + 75.33963559000006 + ], + [ + 56.90889352500017, + 75.29003450500005 + ], + [ + 56.51082252600003, + 75.14869013600008 + ], + [ + 56.375358565000056, + 75.1435099520001 + ], + [ + 55.99733355800009, + 75.24678103400015 + ], + [ + 55.71608349100012, + 75.11583642800008 + ], + [ + 55.84112556100007, + 75.00143417900017 + ], + [ + 56.23763652000014, + 75.06142765100003 + ], + [ + 56.299995533000015, + 74.99764991700005 + ], + [ + 56.565780486000165, + 74.96207846100009 + ], + [ + 55.82741947300008, + 74.88937349700012 + ], + [ + 55.842151506000164, + 74.80183575000018 + ], + [ + 56.36735954700009, + 74.79529686000006 + ], + [ + 56.46791455800019, + 74.64035670900012 + ], + [ + 56.10968358300005, + 74.70503566500008 + ], + [ + 55.58401151900006, + 74.72895560500018 + ], + [ + 55.45842747500012, + 74.63631327900009 + ], + [ + 55.546428574000174, + 74.54124405700009 + ], + [ + 55.73604951900006, + 74.55503195200004 + ], + [ + 55.99375163600007, + 74.50211867400014 + ], + [ + 55.31820259300014, + 74.45681297800019 + ], + [ + 55.22614649800016, + 74.39091361700008 + ], + [ + 55.643432507000114, + 74.368794278 + ], + [ + 55.60682253300007, + 74.3111735550001 + ], + [ + 55.13082447700009, + 74.31992493200005 + ], + [ + 55.18060661200019, + 74.26207521600014 + ], + [ + 55.445606516000055, + 74.2529189930001 + ], + [ + 55.80308949000005, + 74.18135145300005 + ], + [ + 55.55445860500015, + 74.1314280000002 + ], + [ + 54.94357661600009, + 74.16776975300019 + ], + [ + 54.601245608000056, + 74.07658470400014 + ], + [ + 54.77509348900014, + 73.99694438700016 + ], + [ + 54.24040551400009, + 73.93157140900018 + ], + [ + 54.05677461200014, + 73.80507574900014 + ], + [ + 53.79993046700014, + 73.7998110760002 + ], + [ + 53.70052361000012, + 73.7338429830001 + ], + [ + 53.96115453100015, + 73.6996996360001 + ], + [ + 54.072830482000086, + 73.64367331900013 + ], + [ + 54.337593514000105, + 73.62790243300014 + ], + [ + 54.54984660400004, + 73.70546035100006 + ], + [ + 55.128025592000085, + 73.75259011600002 + ] + ] + ], + [ + [ + [ + 55.956584601000145, + 80.18123509900005 + ], + [ + 55.75770148400005, + 80.13764534600006 + ], + [ + 56.03782250900008, + 80.07157717400008 + ], + [ + 56.72677253800015, + 80.10674462200018 + ], + [ + 56.98186151300007, + 80.16624238800006 + ], + [ + 57.003250621, + 80.31698706100013 + ], + [ + 56.88479253600008, + 80.35368672200008 + ], + [ + 56.030559590000166, + 80.30991340600008 + ], + [ + 55.956584601000145, + 80.18123509900005 + ] + ] + ], + [ + [ + [ + 52.50974652200006, + 80.289938995 + ], + [ + 52.41271258200004, + 80.20742854600007 + ], + [ + 52.81271762100016, + 80.16547175600004 + ], + [ + 53.54679850000008, + 80.17812206000013 + ], + [ + 53.963951571999985, + 80.24925591900006 + ], + [ + 53.81610150500018, + 80.32351069700007 + ], + [ + 53.316154508000125, + 80.40663134800008 + ], + [ + 52.808822551000105, + 80.39987084000006 + ], + [ + 52.82073960600013, + 80.33599336200018 + ], + [ + 52.50974652200006, + 80.289938995 + ] + ] + ], + [ + [ + [ + 56.95567661500013, + 80.46707559900017 + ], + [ + 57.160835597000016, + 80.36636736800017 + ], + [ + 57.18078251500003, + 80.18614052400011 + ], + [ + 57.58939761300013, + 80.10711007300011 + ], + [ + 58.273300563000134, + 80.17296366900007 + ], + [ + 58.345817605000036, + 80.24013054100016 + ], + [ + 58.042571579000025, + 80.2729995040001 + ], + [ + 58.58000160900019, + 80.3560442160001 + ], + [ + 59.080604574000176, + 80.36237724600005 + ], + [ + 59.22346455900009, + 80.4166871180002 + ], + [ + 58.90780258799998, + 80.46619751100019 + ], + [ + 57.82762957400007, + 80.51354151800012 + ], + [ + 57.19921147100001, + 80.50128818100012 + ], + [ + 56.95567661500013, + 80.46707559900017 + ] + ] + ], + [ + [ + [ + 57.292468525000174, + 80.56793537500005 + ], + [ + 57.90044350300013, + 80.56789782400006 + ], + [ + 58.02633650300004, + 80.65146070500003 + ], + [ + 57.23835361700003, + 80.63621553200011 + ], + [ + 57.292468525000174, + 80.56793537500005 + ] + ] + ], + [ + [ + [ + 56.74535756500018, + 80.65237567400015 + ], + [ + 56.405006530000094, + 80.76132298100009 + ], + [ + 55.790859623000074, + 80.74587345700007 + ], + [ + 55.50967057500003, + 80.69620129300012 + ], + [ + 55.645149623000066, + 80.63417085100014 + ], + [ + 56.47316347300011, + 80.63143902100006 + ], + [ + 56.74535756500018, + 80.65237567400015 + ] + ] + ], + [ + [ + [ + 53.96116660100006, + 80.82838340300009 + ], + [ + 54.506717521000155, + 80.79480415800003 + ], + [ + 54.97849260700008, + 80.71841350400007 + ], + [ + 55.68857961700013, + 80.799449912 + ], + [ + 55.040058524000074, + 80.90110429200007 + ], + [ + 54.54921762600003, + 80.9164627890001 + ], + [ + 53.96116660100006, + 80.82838340300009 + ] + ] + ], + [ + [ + [ + 57.82683547300002, + 80.77060208300014 + ], + [ + 58.35425952200018, + 80.75714208800014 + ], + [ + 59.036746601000175, + 80.85112719400013 + ], + [ + 58.79752758700016, + 80.93874239000013 + ], + [ + 57.82724350400014, + 80.81943371000006 + ], + [ + 57.82683547300002, + 80.77060208300014 + ] + ] + ], + [ + [ + [ + 55.51905059600011, + 80.91596674800019 + ], + [ + 55.94495353700006, + 80.83169408700007 + ], + [ + 57.20703849200004, + 80.71665783000009 + ], + [ + 57.59626758900009, + 80.80569107700012 + ], + [ + 56.86606552000012, + 80.89786116600015 + ], + [ + 56.56359448500018, + 80.97251978400016 + ], + [ + 55.991710475, + 81.05075814400004 + ], + [ + 55.34075946799999, + 81.06324081000008 + ], + [ + 54.55250551200015, + 81.15134299400006 + ], + [ + 54.29541762100018, + 81.14616247500015 + ], + [ + 54.34324258100003, + 81.015019553 + ], + [ + 55.290851605, + 80.9696970940002 + ], + [ + 55.51905059600011, + 80.91596674800019 + ] + ] + ], + [ + [ + [ + 56.875949628000114, + 81.08738924100015 + ], + [ + 56.90208859300003, + 80.97897519000009 + ], + [ + 57.245468512000116, + 80.9542469000001 + ], + [ + 57.59696563400007, + 80.87248428400011 + ], + [ + 58.22574952400009, + 80.93865035700009 + ], + [ + 57.558784556000035, + 81.05850956100005 + ], + [ + 56.875949628000114, + 81.08738924100015 + ] + ] + ], + [ + [ + [ + 58.21393959000011, + 81.00332981600013 + ], + [ + 58.640785495000046, + 81.01069952000006 + ], + [ + 58.41355159700015, + 81.10014666500001 + ], + [ + 58.04592853100013, + 81.0829634280002 + ], + [ + 58.21393959000011, + 81.00332981600013 + ] + ] + ], + [ + [ + [ + 57.03793761800006, + 81.18062718500016 + ], + [ + 57.25292957900007, + 81.13372624500005 + ], + [ + 57.7952885040001, + 81.15198404200015 + ], + [ + 58.182659501000046, + 81.22033242800012 + ], + [ + 57.82542748100008, + 81.26676079500015 + ], + [ + 57.03793761800006, + 81.18062718500016 + ] + ] + ], + [ + [ + [ + 55.54268655700008, + 81.25565242700014 + ], + [ + 55.630020624, + 81.19993003700017 + ], + [ + 56.43123652300011, + 81.1885234400001 + ], + [ + 57.01992457300014, + 81.2632132390001 + ], + [ + 57.90548756400011, + 81.32610601100004 + ], + [ + 57.17780258100004, + 81.418131932 + ], + [ + 56.50188054400019, + 81.44558450900013 + ], + [ + 56.37942462700005, + 81.32561013800012 + ], + [ + 55.68431456899998, + 81.37527375200006 + ], + [ + 55.36957159000008, + 81.31826239400004 + ], + [ + 55.54268655700008, + 81.25565242700014 + ] + ] + ], + [ + [ + [ + 58.494815489000075, + 81.4451947500001 + ], + [ + 58.3911395610001, + 81.4894636040001 + ], + [ + 57.48173860500009, + 81.63590500800018 + ], + [ + 56.787177562000124, + 81.58206821200008 + ], + [ + 56.825527619000184, + 81.51959369600013 + ], + [ + 57.26345456800004, + 81.46970310000006 + ], + [ + 58.293357619000176, + 81.41520195400005 + ], + [ + 58.494815489000075, + 81.4451947500001 + ] + ] + ], + [ + [ + [ + 65.1990845300001, + -74.02341636399996 + ], + [ + 65.40177076300012, + -73.92829329199998 + ], + [ + 65.11357081000006, + -73.9273017129999 + ], + [ + 65.1990845300001, + -74.02341636399996 + ] + ] + ], + [ + [ + [ + 64.97371199300011, + -73.55500642799996 + ], + [ + 64.60729158800001, + -73.53464929199993 + ], + [ + 64.29638605900016, + -73.57046132299996 + ], + [ + 64.3328911050001, + -73.66165814199985 + ], + [ + 64.72124796500003, + -73.5768850479999 + ], + [ + 64.97371199300011, + -73.55500642799996 + ] + ] + ], + [ + [ + [ + 66.95806247100018, + -73.58840044699986 + ], + [ + 66.75797412600014, + -73.51263119699996 + ], + [ + 66.5825606050002, + -73.6567478529999 + ], + [ + 67.01581213300017, + -73.65635608299993 + ], + [ + 66.95806247100018, + -73.58840044699986 + ] + ] + ], + [ + [ + [ + 61.56019348800015, + -73.37994779699994 + ], + [ + 61.2473891210002, + -73.44585087199988 + ], + [ + 61.322612372000094, + -73.54634540399991 + ], + [ + 61.530063385, + -73.51581531599999 + ], + [ + 61.97360755500006, + -73.5315372579999 + ], + [ + 62.19048452300012, + -73.4948219929999 + ], + [ + 62.30307800500003, + -73.38521733399995 + ], + [ + 62.01153970600018, + -73.39823409899992 + ], + [ + 61.56019348800015, + -73.37994779699994 + ] + ] + ], + [ + [ + [ + 66.18118664300005, + -73.14032250199989 + ], + [ + 66.51194287600015, + -73.08002608499993 + ], + [ + 66.35130816400005, + -73.0339457149999 + ], + [ + 66.18118664300005, + -73.14032250199989 + ] + ] + ], + [ + [ + [ + 59.514026585000124, + 66.04718765600018 + ], + [ + 59.335765633, + 66.09609438500007 + ], + [ + 59.128726589000166, + 66.06964210400014 + ], + [ + 58.9939304990001, + 65.96667075900012 + ], + [ + 59.11819456000012, + 65.86899493200019 + ], + [ + 59.521598629000096, + 65.96241375800008 + ], + [ + 59.514026585000124, + 66.04718765600018 + ] + ] + ], + [ + [ + [ + 60.2551195960001, + 66.53882768500017 + ], + [ + 59.95096547500003, + 66.41227335200017 + ], + [ + 59.82590463000014, + 66.30527299300019 + ], + [ + 60.004257616000075, + 66.24342577900012 + ], + [ + 60.301551484000186, + 66.37271227700006 + ], + [ + 60.50076652400014, + 66.496246611 + ], + [ + 60.394935608000196, + 66.5593598270001 + ], + [ + 60.2551195960001, + 66.53882768500017 + ] + ] + ], + [ + [ + [ + 59.15235852700005, + 69.1461603240001 + ], + [ + 59.2519496180002, + 69.2436614720001 + ], + [ + 58.881126510000115, + 69.36721960900013 + ], + [ + 58.739250561, + 69.33026061300012 + ], + [ + 59.15235852700005, + 69.1461603240001 + ] + ] + ], + [ + [ + [ + 66.88308757800019, + 70.40910308300005 + ], + [ + 66.82543148300005, + 70.58194882300012 + ], + [ + 66.69309950400003, + 70.57415180900017 + ], + [ + 66.59992258099999, + 70.45907867200015 + ], + [ + 66.88308757800019, + 70.40910308300005 + ] + ] + ], + [ + [ + [ + 59.273357502000124, + 79.95583985500019 + ], + [ + 59.65924859000012, + 80.00875313300008 + ], + [ + 59.743347577000065, + 80.06768663000008 + ], + [ + 59.37854351400017, + 80.14038488800003 + ], + [ + 59.00013361000009, + 80.11508327500013 + ], + [ + 58.600814545000105, + 80.03345074600014 + ], + [ + 59.273357502000124, + 79.95583985500019 + ] + ] + ], + [ + [ + [ + 61.193130502000145, + 80.42813998200012 + ], + [ + 61.37521360300019, + 80.5322578040001 + ], + [ + 62.10003247800012, + 80.67109145800009 + ], + [ + 62.02278854600007, + 80.74929796700008 + ], + [ + 62.166042480000044, + 80.87393468800019 + ], + [ + 61.77267859000011, + 80.92136134100008 + ], + [ + 60.94864262400006, + 80.8915058400001 + ], + [ + 60.37982957500003, + 80.81712114300012 + ], + [ + 59.74583063200009, + 80.85025866200004 + ], + [ + 59.27340662000012, + 80.68072813200018 + ], + [ + 59.35827255200019, + 80.49977692400006 + ], + [ + 59.67074956700003, + 80.43191686800003 + ], + [ + 60.349010490000126, + 80.50252384100008 + ], + [ + 61.193130502000145, + 80.42813998200012 + ] + ] + ], + [ + [ + [ + 63.584194617000094, + 80.99711144900016 + ], + [ + 63.04740848400019, + 80.97934181500017 + ], + [ + 62.56077563700006, + 80.831038455 + ], + [ + 63.027446479000105, + 80.69058592100004 + ], + [ + 64.22469355800018, + 80.74182902100011 + ], + [ + 64.94438958100011, + 80.84038461200015 + ], + [ + 65.41295657700016, + 80.96406713700003 + ], + [ + 65.1954346220001, + 81.04878890000015 + ], + [ + 65.39303564300019, + 81.12303546300006 + ], + [ + 65.15200060600006, + 81.19304748900004 + ], + [ + 64.61201459800003, + 81.2323428570001 + ], + [ + 64.05256648200009, + 81.14837496200016 + ], + [ + 64.17366050800007, + 81.0694284980001 + ], + [ + 63.584194617000094, + 80.99711144900016 + ] + ] + ], + [ + [ + [ + 61.07686948200018, + 80.97992184200012 + ], + [ + 61.556957571, + 81.04951376700018 + ], + [ + 61.73624463600004, + 81.16444374100018 + ], + [ + 61.15245849100012, + 81.16895337300008 + ], + [ + 60.62824655400004, + 81.12374574600017 + ], + [ + 60.03569763200011, + 81.00803759600007 + ], + [ + 60.52506247600007, + 80.96449360900016 + ], + [ + 61.07686948200018, + 80.97992184200012 + ] + ] + ], + [ + [ + [ + 58.73167751200003, + 81.342762864 + ], + [ + 59.15763862300014, + 81.33453837300016 + ], + [ + 59.38560057300009, + 81.389039352 + ], + [ + 58.876232485000116, + 81.47485947900009 + ], + [ + 58.54787461300015, + 81.40761767200013 + ], + [ + 58.73167751200003, + 81.342762864 + ] + ] + ], + [ + [ + [ + 63.72271361300017, + 81.61887482499998 + ], + [ + 63.481872534000104, + 81.73641492400003 + ], + [ + 62.73753354700017, + 81.74642442500016 + ], + [ + 62.21361950300013, + 81.71526419700018 + ], + [ + 62.720916592000094, + 81.62201150099997 + ], + [ + 63.72271361300017, + 81.61887482499998 + ] + ] + ], + [ + [ + [ + 58.15515160300009, + 81.72020784400019 + ], + [ + 58.61901048400006, + 81.78146161900014 + ], + [ + 59.28467156300019, + 81.79997942200009 + ], + [ + 59.072830527000065, + 81.90184687100009 + ], + [ + 57.95565761300014, + 81.85946310700012 + ], + [ + 58.15515160300009, + 81.72020784400019 + ] + ] + ], + [ + [ + [ + 68.66190490700006, + -73.30888046199988 + ], + [ + 68.51811095400012, + -73.26642074199998 + ], + [ + 68.15198005700017, + -73.23667503199994 + ], + [ + 68.24457179300003, + -73.32127512299996 + ], + [ + 68.66190490700006, + -73.30888046199988 + ] + ] + ], + [ + [ + [ + 68.61165588000011, + -73.22006376899998 + ], + [ + 68.25381988700013, + -73.15423428699995 + ], + [ + 68.17002680500019, + -73.1921459859999 + ], + [ + 68.54035183700012, + -73.25612239599997 + ], + [ + 68.61165588000011, + -73.22006376899998 + ] + ] + ], + [ + [ + [ + 68.46518441100011, + -73.10687131899994 + ], + [ + 68.05697265700013, + -73.05930517299998 + ], + [ + 68.09456383100007, + -73.12888270799988 + ], + [ + 68.46518441100011, + -73.10687131899994 + ] + ] + ], + [ + [ + [ + 68.32602280300017, + -72.74707295399998 + ], + [ + 68.25396824600006, + -72.66272415299994 + ], + [ + 68.01667764700017, + -72.69047597399987 + ], + [ + 68.01084652100019, + -72.77717187799993 + ], + [ + 68.32602280300017, + -72.74707295399998 + ] + ] + ], + [ + [ + [ + 67.96343611300011, + -71.38329200999993 + ], + [ + 67.69889761200011, + -71.41372687999996 + ], + [ + 67.36088298300007, + -71.52270641699982 + ], + [ + 67.70734305300016, + -71.56159695399992 + ], + [ + 68.02822741000006, + -71.41189895399998 + ], + [ + 67.96343611300011, + -71.38329200999993 + ] + ] + ], + [ + [ + [ + 67.48844302600014, + -71.17615347599997 + ], + [ + 67.19879501700018, + -71.18561882699998 + ], + [ + 67.37665907200005, + -71.26039834099998 + ], + [ + 67.48844302600014, + -71.17615347599997 + ] + ] + ], + [ + [ + [ + 68.29218957100016, + -70.46390248099993 + ], + [ + 68.07176219400003, + -70.50940013999997 + ], + [ + 67.94488242800003, + -70.58692791399994 + ], + [ + 68.00850880900003, + -70.66155387099997 + ], + [ + 67.54719767600017, + -70.72454104899992 + ], + [ + 67.63558924000012, + -70.80650620299997 + ], + [ + 67.88240537300015, + -70.80926217399991 + ], + [ + 67.77098871300007, + -70.94543496199992 + ], + [ + 68.0740526350001, + -70.88002440799994 + ], + [ + 68.2696398970001, + -70.86931702499999 + ], + [ + 68.14476927000015, + -70.76369058699999 + ], + [ + 68.16152822200019, + -70.62295116799999 + ], + [ + 68.24385799000004, + -70.59148029499994 + ], + [ + 68.29218957100016, + -70.46390248099993 + ] + ] + ], + [ + [ + [ + 67.42584007600004, + -70.58411611899999 + ], + [ + 67.12093498400003, + -70.62625732799995 + ], + [ + 67.2155611770001, + -70.71540326099995 + ], + [ + 67.42584007600004, + -70.58411611899999 + ] + ] + ], + [ + [ + [ + 68.9318601280001, + -70.30892555699995 + ], + [ + 68.64410391600006, + -70.37560596899993 + ], + [ + 68.67070322600017, + -70.4472048849999 + ], + [ + 68.85792199200017, + -70.45342040499992 + ], + [ + 68.9318601280001, + -70.30892555699995 + ] + ] + ], + [ + [ + [ + 78.50735059800007, + -68.4177498599999 + ], + [ + 78.22799992700016, + -68.43594815299991 + ], + [ + 78.20980884100015, + -68.53840991799996 + ], + [ + 78.02724924300014, + -68.54130519699999 + ], + [ + 77.8855462410001, + -68.62858464699991 + ], + [ + 78.23736637200005, + -68.65343666499996 + ], + [ + 78.5729467270001, + -68.60935940399986 + ], + [ + 78.50735059800007, + -68.4177498599999 + ] + ] + ], + [ + [ + [ + 73.41804459700018, + -53.02405896999994 + ], + [ + 73.39665263900014, + -53.1362824279999 + ], + [ + 73.55055259600016, + -53.193785635999916 + ], + [ + 73.74665862000006, + -53.12489125399992 + ], + [ + 73.53166163000014, + -53.010722858999884 + ], + [ + 73.41804459700018, + -53.02405896999994 + ] + ] + ], + [ + [ + [ + 69.068328527, + -48.699827909999954 + ], + [ + 68.96916155999997, + -48.660383510999964 + ], + [ + 68.95082061500011, + -48.75232544599987 + ], + [ + 68.79054253300018, + -48.84426838599984 + ], + [ + 68.85333254300014, + -48.925942320999866 + ], + [ + 68.73916649500012, + -49.06955164699991 + ], + [ + 68.84111055500017, + -49.15622270499995 + ], + [ + 68.75888056400015, + -49.217884175999984 + ], + [ + 68.8608246230001, + -49.317052316999934 + ], + [ + 68.80915857200011, + -49.36455289699995 + ], + [ + 68.9058225350002, + -49.42177447399996 + ], + [ + 68.82666048900006, + -49.47316626899982 + ], + [ + 68.82611063600012, + -49.55066702299996 + ], + [ + 68.7577666090001, + -49.66372850299996 + ], + [ + 68.79777561200012, + -49.719835118999924 + ], + [ + 69.00665264000014, + -49.718172316999926 + ], + [ + 69.10610962100003, + -49.672891766999896 + ], + [ + 69.17637662400017, + -49.58622741499988 + ], + [ + 69.37332150900016, + -49.56761221299996 + ], + [ + 69.44583150900019, + -49.62344390299995 + ], + [ + 69.69749463199997, + -49.66400242399982 + ], + [ + 69.77915951500017, + -49.593727541999954 + ], + [ + 69.85083048700005, + -49.68428176799995 + ], + [ + 70.0841524970001, + -49.72066710699994 + ], + [ + 70.31666548500004, + -49.59816760299998 + ], + [ + 70.316375639, + -49.53649909199993 + ], + [ + 70.15361064600017, + -49.50539368099993 + ], + [ + 70.04582255600008, + -49.52455873499997 + ], + [ + 70.00248761400013, + -49.582893595999906 + ], + [ + 69.8122105330001, + -49.53400379899995 + ], + [ + 69.76304664700012, + -49.46455302599992 + ], + [ + 69.89416459100016, + -49.33649967299982 + ], + [ + 70.04026753400018, + -49.36483586999992 + ], + [ + 70.12777762000019, + -49.33927659799997 + ], + [ + 70.30693057500014, + -49.380110212999966 + ], + [ + 70.4511105420001, + -49.36927609999998 + ], + [ + 70.56860353400003, + -49.22344623999993 + ], + [ + 70.52638254700008, + -49.09260808399989 + ], + [ + 70.30610663400006, + -49.05094348699993 + ], + [ + 70.22499059800015, + -49.15399462799991 + ], + [ + 70.07888748800013, + -49.11788404799995 + ], + [ + 69.98359664800012, + -49.14732665599996 + ], + [ + 69.85638450300007, + -49.24677676399995 + ], + [ + 69.69415260000005, + -49.30955218999992 + ], + [ + 69.6088865160001, + -49.30594344499997 + ], + [ + 69.43527249100015, + -49.216778267999985 + ], + [ + 69.49581950400005, + -49.02955035499991 + ], + [ + 69.21720856200017, + -49.123438399999884 + ], + [ + 69.10388154300006, + -48.99371503699996 + ], + [ + 69.13388054200016, + -48.83621941199982 + ], + [ + 69.068328527, + -48.699827909999954 + ] + ] + ], + [ + [ + [ + 69.3413846140001, + -48.99399683699994 + ], + [ + 69.28305059100018, + -48.90566280899998 + ], + [ + 69.19943255700014, + -48.97454964799988 + ], + [ + 69.20416263300018, + -49.084276974999966 + ], + [ + 69.29832459800014, + -49.08343794599995 + ], + [ + 69.3413846140001, + -48.99399683699994 + ] + ] + ], + [ + [ + [ + 94.48578658700012, + 65.19094439500009 + ], + [ + 94.71508058900014, + 65.25933787500003 + ], + [ + 94.88509358100009, + 65.37740888400015 + ], + [ + 94.53494259300015, + 65.59499454100012 + ], + [ + 94.46307364100005, + 65.76867813600012 + ], + [ + 94.54470851600001, + 65.93557926300014 + ], + [ + 94.54934655900018, + 66.06385205300006 + ], + [ + 94.1442416340002, + 66.33818755300007 + ], + [ + 93.93505062100019, + 66.65071134000004 + ], + [ + 93.5936206680002, + 66.85277069500006 + ], + [ + 93.05329854600018, + 66.9081856360001 + ], + [ + 92.54907258700013, + 66.90838479000001 + ], + [ + 92.04480756800001, + 66.88486969600001 + ], + [ + 91.67706263000008, + 66.80344436800004 + ], + [ + 92.14634661400015, + 66.60632949800015 + ], + [ + 92.7359385690001, + 66.61083041200004 + ], + [ + 93.22985864200007, + 66.58064701100011 + ], + [ + 93.52385758400004, + 66.42552581100006 + ], + [ + 93.47885866700017, + 66.22991297800019 + ], + [ + 93.49997754200007, + 66.036391262 + ], + [ + 93.84689361900013, + 65.7068089620002 + ], + [ + 93.79605854900007, + 65.45976359700018 + ], + [ + 93.65219156300003, + 65.30657342000006 + ], + [ + 93.99265256800015, + 65.21682503000017 + ], + [ + 94.48578658700012, + 65.19094439500009 + ] + ] + ], + [ + [ + [ + 75.48348250200002, + 71.52882074200011 + ], + [ + 75.37812063799998, + 71.6296414590002 + ], + [ + 75.44165764300004, + 71.70668020200003 + ], + [ + 75.20034751200012, + 71.80769956900002 + ], + [ + 75.25289953000015, + 71.98348400500004 + ], + [ + 75.35954265200013, + 71.97705961100019 + ], + [ + 75.46401251400005, + 72.22055809000017 + ], + [ + 75.59813654400011, + 72.30188551700013 + ], + [ + 75.47503656100014, + 72.49451606900004 + ], + [ + 75.64514158600014, + 72.56829643000015 + ], + [ + 75.29382350200012, + 72.68861211300015 + ], + [ + 75.52635157800017, + 72.73491793700009 + ], + [ + 75.41206349000004, + 72.80611248100018 + ], + [ + 74.95497148700002, + 72.8869735400001 + ], + [ + 74.69096349700015, + 72.80545651400013 + ], + [ + 74.94776154200008, + 72.68568280500006 + ], + [ + 75.023780542, + 72.59484929400014 + ], + [ + 75.02218663900004, + 72.32087555700014 + ], + [ + 74.878967574, + 72.11058198800009 + ], + [ + 74.35540758200011, + 71.97171011300003 + ], + [ + 74.22914862800019, + 71.99427251999998 + ], + [ + 73.78427861300014, + 71.89405395900019 + ], + [ + 73.54044351800019, + 71.81116364200005 + ], + [ + 73.51513654000007, + 71.67173520900013 + ], + [ + 73.15386964000004, + 71.5026500940001 + ], + [ + 73.07232663000008, + 71.43663740900007 + ], + [ + 73.51019255800014, + 71.30974461500006 + ], + [ + 73.75137360800011, + 71.14803021000006 + ], + [ + 73.82331062200018, + 71.04160887300003 + ], + [ + 73.99588059700005, + 70.96806555200004 + ], + [ + 74.12890659800007, + 70.76499668100018 + ], + [ + 74.30444359900014, + 70.70388891800002 + ], + [ + 74.42149352400014, + 70.59592665300005 + ], + [ + 74.27852658699999, + 70.43723476200006 + ], + [ + 73.94085658800003, + 70.28202856900015 + ], + [ + 73.72276265200003, + 70.15403690800008 + ], + [ + 73.86195354200004, + 70.08449929800014 + ], + [ + 73.82253261400012, + 69.974393109 + ], + [ + 73.55293255300018, + 69.78802719100008 + ], + [ + 73.62741062500015, + 69.6703675660001 + ], + [ + 73.79486864500012, + 69.58234266300002 + ], + [ + 73.9061965800002, + 69.42004018400007 + ], + [ + 73.87962360000012, + 69.27265514500016 + ], + [ + 73.81226360900018, + 69.20845043700018 + ], + [ + 73.89842253300009, + 69.09672620599997 + ], + [ + 74.26640350500003, + 69.16209197500018 + ], + [ + 74.76170357500013, + 69.13254928700007 + ], + [ + 74.98702254400013, + 69.09136296100007 + ], + [ + 75.25002252600012, + 69.09707740800008 + ], + [ + 75.20448264000015, + 69.17925895100018 + ], + [ + 75.52001150600017, + 69.2536801930001 + ], + [ + 76.20984649700011, + 69.2311337110001 + ], + [ + 76.55245963900006, + 69.12352264700013 + ], + [ + 76.78350864500015, + 69.115442325 + ], + [ + 76.91506160900008, + 69.00638203000017 + ], + [ + 77.63884749900006, + 68.90855298200006 + ], + [ + 77.80077363100008, + 68.68211553200013 + ], + [ + 77.74815355100014, + 68.62970567100007 + ], + [ + 77.87339762500017, + 68.471196841 + ], + [ + 78.12912764700008, + 68.29465820200005 + ], + [ + 77.76537350100011, + 68.24495770700014 + ], + [ + 77.51579261000012, + 68.15196585600017 + ], + [ + 77.5164334910001, + 68.01119514500004 + ], + [ + 77.61736250100017, + 67.96738478100019 + ], + [ + 77.48535155000008, + 67.90093674000013 + ], + [ + 77.49310263100006, + 67.81809269100012 + ], + [ + 77.59642065200018, + 67.77091012000005 + ], + [ + 77.80332960800013, + 67.79442504700012 + ], + [ + 77.99825261100011, + 67.76658371700012 + ], + [ + 78.06678757700007, + 67.69181194400005 + ], + [ + 78.32421862300004, + 67.69094994900007 + ], + [ + 78.41359753900014, + 67.64555255600004 + ], + [ + 78.91929653300014, + 67.64477438000017 + ], + [ + 78.93596663000017, + 67.59023652100007 + ], + [ + 78.566398628, + 67.53990989800008 + ], + [ + 78.24627664600007, + 67.5671792460002 + ], + [ + 77.99550653200004, + 67.55771775400018 + ], + [ + 77.73087358700019, + 67.58757325500017 + ], + [ + 77.53655961400011, + 67.68322049300019 + ], + [ + 77.37557963100011, + 67.71529602500004 + ], + [ + 77.14791859100006, + 67.8330393010001 + ], + [ + 77.31951157200007, + 67.88637938600004 + ], + [ + 77.24623161000011, + 68.0062737940001 + ], + [ + 77.27429958600004, + 68.19268581200015 + ], + [ + 77.37625856500017, + 68.27042595200004 + ], + [ + 77.20990762700018, + 68.30574394000013 + ], + [ + 77.29029058100002, + 68.38119464700003 + ], + [ + 77.26978257800005, + 68.5649821240001 + ], + [ + 76.67806949900012, + 68.75794744900014 + ], + [ + 76.69896659000011, + 68.90575258800015 + ], + [ + 76.57218963400015, + 68.96927836200007 + ], + [ + 76.11369349500012, + 68.97330620200012 + ], + [ + 75.77088958000013, + 68.90406682000014 + ], + [ + 75.36786655200012, + 68.8865327170002 + ], + [ + 74.73697662500018, + 68.78196579200011 + ], + [ + 74.56852752900011, + 68.72284269700009 + ], + [ + 74.47720350900005, + 68.63223180900019 + ], + [ + 74.49510155400009, + 68.51891334000004 + ], + [ + 74.34741258800011, + 68.35759657200003 + ], + [ + 74.65325951800003, + 68.19817897600007 + ], + [ + 74.765502589, + 67.906056407 + ], + [ + 74.76839451300003, + 67.72541382000009 + ], + [ + 74.59087351500006, + 67.62499727900007 + ], + [ + 74.14540050700015, + 67.49884678600012 + ], + [ + 73.92360663099998, + 67.30102113100008 + ], + [ + 73.9925536520002, + 67.19590603000017 + ], + [ + 73.84559659400009, + 67.01346921300012 + ], + [ + 73.65194663400013, + 66.93537116600004 + ], + [ + 73.4724195120001, + 66.82446450500015 + ], + [ + 73.15373251200003, + 66.76036624700009 + ], + [ + 72.94303158200012, + 66.66265219900015 + ], + [ + 72.6036525130001, + 66.63197275700009 + ], + [ + 72.38156862400007, + 66.54672528100008 + ], + [ + 72.46202064600016, + 66.36497578100017 + ], + [ + 72.235946635, + 66.2783774770001 + ], + [ + 72.49474359600015, + 66.17297236300004 + ], + [ + 73.29567752800006, + 65.92863703500018 + ], + [ + 73.97786755200008, + 65.6987666930001 + ], + [ + 74.41739661800005, + 65.56186573900015 + ], + [ + 75.0343625270001, + 65.53151436500008 + ], + [ + 75.31877156600018, + 65.60711007900017 + ], + [ + 76.39325762600009, + 65.81218306300008 + ], + [ + 76.686561541, + 65.78122148600005 + ], + [ + 77.59718357200006, + 66.03342390100005 + ], + [ + 78.319633554, + 66.21856019300009 + ], + [ + 78.99358349700015, + 66.12542367000003 + ], + [ + 79.89704855700018, + 65.9319711890002 + ], + [ + 80.3800426520001, + 65.94404062600006 + ], + [ + 81.4333265200001, + 66.26541486400004 + ], + [ + 82.06247753800017, + 66.3446500010001 + ], + [ + 82.97139754000017, + 66.34719793200014 + ], + [ + 83.57875058000013, + 66.3310002390001 + ], + [ + 84.08228251700018, + 66.20956507000005 + ], + [ + 84.64459255100013, + 66.2792934520001 + ], + [ + 84.91783857100017, + 66.39686858700003 + ], + [ + 84.97109953100005, + 66.61443982700018 + ], + [ + 84.92671165400009, + 66.7488986300001 + ], + [ + 85.28320355100004, + 66.79753093500005 + ], + [ + 85.45250659600015, + 66.91577813200018 + ], + [ + 85.410789529, + 67.00949401200012 + ], + [ + 85.11588265900008, + 67.10844506100005 + ], + [ + 84.66589364900005, + 67.29092680500014 + ], + [ + 84.75183062000019, + 67.5374767990001 + ], + [ + 85.4052276330001, + 67.72895366600005 + ], + [ + 85.83374053100005, + 68.14198485300005 + ], + [ + 86.43505055400016, + 68.36447090600018 + ], + [ + 87.02424654800012, + 68.29774056300005 + ], + [ + 87.3270416270002, + 68.21773412400017 + ], + [ + 87.65178656300003, + 68.16489008000013 + ], + [ + 87.93018359900015, + 68.21587267100006 + ], + [ + 88.11752366100006, + 68.3420699350001 + ], + [ + 88.26318353600004, + 68.53595056400019 + ], + [ + 88.48314663600001, + 68.66712969500003 + ], + [ + 88.77610052300014, + 68.72458294800009 + ], + [ + 89.21167752100013, + 68.68226053900014 + ], + [ + 89.4589465150001, + 68.78461430600004 + ], + [ + 90.3308865670001, + 68.64321025800001 + ], + [ + 91.15029857200011, + 68.62891240800008 + ], + [ + 91.25453156100008, + 68.6431872920001 + ], + [ + 92.07147258200007, + 68.64542341600003 + ], + [ + 92.38712365600009, + 68.62891240800008 + ], + [ + 92.77825963600009, + 68.56143389600015 + ], + [ + 92.80641159900017, + 68.4632466060001 + ], + [ + 92.32829258600015, + 68.39418860900014 + ], + [ + 91.67601053400006, + 68.37730376800005 + ], + [ + 91.42626954900015, + 68.40147533200002 + ], + [ + 91.10518666600018, + 68.39795795000015 + ], + [ + 90.49285863100005, + 68.236290316 + ], + [ + 92.18753863900014, + 68.22729452300013 + ], + [ + 93.01508360500009, + 68.23735817100004 + ], + [ + 93.24915361600011, + 68.20452759699998 + ], + [ + 93.20175160600007, + 68.13736977700012 + ], + [ + 92.68393657100012, + 68.00982168600018 + ], + [ + 92.58470154300005, + 67.96414249300017 + ], + [ + 92.4399336690002, + 67.80799115700012 + ], + [ + 92.26096360800017, + 67.73582833500018 + ], + [ + 92.13423962500019, + 67.581331922 + ], + [ + 91.99517865500019, + 67.5273668820002 + ], + [ + 91.54524965900004, + 67.42871389400011 + ], + [ + 90.70218660500007, + 67.36182362400018 + ], + [ + 90.64096853700016, + 67.26899840500016 + ], + [ + 90.39787255700014, + 67.04646088700014 + ], + [ + 91.46034952900015, + 67.29370372900001 + ], + [ + 92.3443295140001, + 67.45822523400011 + ], + [ + 92.69915760400016, + 67.38706287600002 + ], + [ + 92.52378052900019, + 67.28520447900007 + ], + [ + 92.23039966900018, + 67.22273214300009 + ], + [ + 92.12931861000004, + 67.06815191100003 + ], + [ + 92.57235751399998, + 67.05223618600007 + ], + [ + 92.9563906690002, + 67.0735082830002 + ], + [ + 93.84942662999998, + 67.00334488000004 + ], + [ + 94.4241866390002, + 66.9133210600001 + ], + [ + 94.7783205400001, + 66.72462128600012 + ], + [ + 94.90334366700006, + 66.39110049700008 + ], + [ + 95.12889867000007, + 66.11464303400015 + ], + [ + 95.19069659800016, + 65.8709710500001 + ], + [ + 95.27738961700015, + 65.63514955700009 + ], + [ + 95.5285186440002, + 65.4466869900001 + ], + [ + 95.66948666600018, + 65.37641646600008 + ], + [ + 96.23085055000018, + 65.14165629000001 + ], + [ + 96.6404035830002, + 64.90664381800008 + ], + [ + 97.15969852700016, + 64.75587282500015 + ], + [ + 97.43802666300007, + 64.74764028800013 + ], + [ + 97.24867259700011, + 64.84450809900017 + ], + [ + 97.11624858500005, + 65.01851238500018 + ], + [ + 97.05889155700004, + 65.21149883300006 + ], + [ + 96.61535661200014, + 65.41428372600006 + ], + [ + 95.94479362800007, + 65.63759154000007 + ], + [ + 95.55740352100014, + 65.84955428100005 + ], + [ + 95.4232325530001, + 66.05521433400008 + ], + [ + 95.50464664900005, + 66.7041201560001 + ], + [ + 95.38359855600004, + 66.90276841200006 + ], + [ + 95.10337862400007, + 67.0577685770001 + ], + [ + 94.62959255300012, + 67.22589061200006 + ], + [ + 94.3903425260001, + 67.22344125200004 + ], + [ + 94.17175254900013, + 67.26516821000007 + ], + [ + 94.0850065570001, + 67.35802310100007 + ], + [ + 94.17252351600007, + 67.41529195200019 + ], + [ + 94.49176053700006, + 67.45667625800002 + ], + [ + 94.76019266300005, + 67.42296072300007 + ], + [ + 95.60019665700003, + 67.27635402800007 + ], + [ + 95.96851357600019, + 67.14769986100009 + ], + [ + 95.92014362500004, + 66.66804662400017 + ], + [ + 96.02278153800006, + 66.33715054400017 + ], + [ + 96.37116260300019, + 66.27694333400018 + ], + [ + 96.48023966200003, + 66.11768734100002 + ], + [ + 96.47000854300006, + 65.93117725500002 + ], + [ + 96.75727866100016, + 65.74142471300019 + ], + [ + 97.18331152200017, + 65.59649741600003 + ], + [ + 97.97794360400019, + 65.54047964799997 + ], + [ + 98.42958066400013, + 65.43259449600009 + ], + [ + 98.832527584, + 65.44396991200017 + ], + [ + 98.8229526, + 65.54627020200019 + ], + [ + 98.6597975140001, + 65.65943561800003 + ], + [ + 97.55568662300016, + 65.88479582600019 + ], + [ + 97.1978606620001, + 65.92911011000018 + ], + [ + 96.7737425630001, + 66.12161694500008 + ], + [ + 96.66858655900006, + 66.27742445500013 + ], + [ + 96.96822367200014, + 66.32127957800003 + ], + [ + 97.28903950700004, + 66.2222606360001 + ], + [ + 97.71705653200007, + 66.33162620000013 + ], + [ + 97.93811766100004, + 66.16856197300018 + ], + [ + 97.96241763700016, + 66.01161804399999 + ], + [ + 98.13864866000006, + 65.9321001020001 + ], + [ + 98.32171663399998, + 65.90350373100006 + ], + [ + 98.6316525920002, + 65.89318829000018 + ], + [ + 98.69174161700005, + 66.06854390700016 + ], + [ + 98.44246666700008, + 66.25079598700006 + ], + [ + 97.92637662700008, + 66.46799305899998 + ], + [ + 97.54358650800003, + 66.6663982390001 + ], + [ + 97.3115006610002, + 66.9275196690001 + ], + [ + 97.26426662500006, + 67.06952587300003 + ], + [ + 97.57541661700014, + 67.09038524500005 + ], + [ + 97.9225385530001, + 67.0304529610001 + ], + [ + 98.09156063700016, + 66.81211963800001 + ], + [ + 98.23493158200012, + 66.74329147200018 + ], + [ + 98.47432661600016, + 66.51751066100013 + ], + [ + 99.0037536050001, + 66.53598940400008 + ], + [ + 99.47128258600014, + 66.49456738000009 + ], + [ + 99.6001126050001, + 66.42825026500009 + ], + [ + 99.91565655900013, + 66.2035986630001 + ], + [ + 99.97292356600008, + 66.00591868500015 + ], + [ + 100.15239754700013, + 65.88030178500003 + ], + [ + 100.5343015310001, + 65.86936071900016 + ], + [ + 100.8265996180001, + 65.90978311700019 + ], + [ + 101.1284026150002, + 66.01175517200016 + ], + [ + 101.11640157300019, + 66.20931311000015 + ], + [ + 100.92739854100017, + 66.40191197800016 + ], + [ + 100.67250067500015, + 66.48539690700011 + ], + [ + 100.40039861600013, + 66.8024454130001 + ], + [ + 99.89375263400012, + 66.86858768100012 + ], + [ + 98.38667252800013, + 67.09433764700003 + ], + [ + 98.2189865200001, + 67.22533321600014 + ], + [ + 98.26419062700012, + 67.32043143900012 + ], + [ + 98.42694053200017, + 67.34643344400007 + ], + [ + 98.92925256700016, + 67.25554813200006 + ], + [ + 99.18657666000007, + 67.30264638200003 + ], + [ + 98.88807663500012, + 67.48197669700005 + ], + [ + 98.61711853900016, + 67.61334693700013 + ], + [ + 98.19323764900014, + 68.05058019900008 + ], + [ + 97.88510162100016, + 68.0857157960001 + ], + [ + 97.48420759700014, + 68.32782505800014 + ], + [ + 97.31326253700013, + 68.51271039599999 + ], + [ + 96.64629354600015, + 68.74328263900003 + ], + [ + 96.55697665600007, + 68.80432217200018 + ], + [ + 96.6222225640002, + 68.98773514500016 + ], + [ + 97.25997961700006, + 69.08928810500015 + ], + [ + 97.81993064700004, + 69.02750979000012 + ], + [ + 98.26097851399999, + 68.80304678200014 + ], + [ + 98.35777256400007, + 68.6207480990002 + ], + [ + 98.66504659700018, + 68.36933140399998 + ], + [ + 99.11276260300008, + 68.08434200200014 + ], + [ + 99.63292658300014, + 67.892757512 + ], + [ + 100.0478975100001, + 67.90129598900012 + ], + [ + 100.18740054200003, + 67.94047501600005 + ], + [ + 100.13289654600015, + 68.08699705400005 + ], + [ + 99.9989396520001, + 68.21210366400004 + ], + [ + 100.14430264000015, + 68.30607971900014 + ], + [ + 100.595901647, + 68.367881335 + ], + [ + 100.51329765500003, + 68.4636965470001 + ], + [ + 100.36479966800005, + 68.54173357400009 + ], + [ + 100.25070151300008, + 68.68512849100011 + ], + [ + 99.62528966300016, + 68.82773752200012 + ], + [ + 99.05586959700008, + 69.10687518200001 + ], + [ + 98.56302659800019, + 69.40622261600004 + ], + [ + 98.56015059900017, + 69.62526823300004 + ], + [ + 99.00251760900011, + 69.73857832100015 + ], + [ + 99.89555357000012, + 69.57871849600014 + ], + [ + 100.50559954800019, + 69.5451238280001 + ], + [ + 100.82949858300009, + 69.68811440200017 + ], + [ + 101.12370254600006, + 69.66651440600015 + ], + [ + 101.28399655400005, + 69.7814960120001 + ], + [ + 101.30480161100007, + 70.00413461600016 + ], + [ + 100.9248965430001, + 70.23879018600007 + ], + [ + 100.26599865400004, + 70.26293878500019 + ], + [ + 99.66081267200008, + 70.24084207600004 + ], + [ + 99.37905851700009, + 70.35499957400003 + ], + [ + 99.64314261400017, + 70.48920189100005 + ], + [ + 100.21730063500013, + 70.60294699900004 + ], + [ + 100.35520155000012, + 70.67865754600012 + ], + [ + 100.50779761800015, + 70.83087257200009 + ], + [ + 100.51699860100018, + 71.01066204900013 + ], + [ + 100.75789651000014, + 71.06610146500009 + ], + [ + 100.64610254100018, + 71.26434018100008 + ], + [ + 101.05269659500004, + 71.23485013100009 + ], + [ + 101.64009852600014, + 70.94628232700006 + ], + [ + 101.83090266100004, + 70.67668914000018 + ], + [ + 101.7835006520001, + 70.44344457900002 + ], + [ + 101.77639765900011, + 70.11451506100019 + ], + [ + 102.1292035310002, + 69.91506348400014 + ], + [ + 102.04489851700015, + 69.66783455500001 + ], + [ + 102.15309866100017, + 69.5233863680001 + ], + [ + 102.49109656000007, + 69.46223367900018 + ], + [ + 102.73529861500003, + 69.48294770800015 + ], + [ + 103.06340067100012, + 69.56372561800003 + ], + [ + 102.99729964200003, + 69.67496772300012 + ], + [ + 102.80400054900008, + 69.80350806400014 + ], + [ + 102.89099866900006, + 69.87126099900013 + ], + [ + 102.86710354000013, + 69.9998005010001 + ], + [ + 103.06469752000004, + 70.09075571800014 + ], + [ + 103.63539867600008, + 70.19469768800013 + ], + [ + 103.49690264600014, + 70.32985252400016 + ], + [ + 103.21219655200008, + 70.44255978500019 + ], + [ + 103.22460160100019, + 70.5118466080001 + ], + [ + 103.38050064200007, + 70.5851998280001 + ], + [ + 103.05969955800003, + 70.69116301000014 + ], + [ + 102.76889764200013, + 70.88728797700008 + ], + [ + 102.31939662600018, + 71.08208541900012 + ], + [ + 102.35289758400006, + 71.10336539500014 + ], + [ + 102.95379655800019, + 70.98245543600018 + ], + [ + 103.21019763600009, + 70.98805572000009 + ], + [ + 103.3274995210001, + 71.05924875600004 + ], + [ + 103.73719756100007, + 70.994334772 + ], + [ + 104.06960255100006, + 70.97870922800018 + ], + [ + 104.8227006260002, + 70.89555136100012 + ], + [ + 105.36379958300006, + 70.88240434500017 + ], + [ + 105.77510057800009, + 70.91644141000006 + ], + [ + 106.57440154800008, + 70.83222373500007 + ], + [ + 107.276702608, + 70.77079611900007 + ], + [ + 108.10399662000015, + 70.78221746800011 + ], + [ + 108.66799963000017, + 70.69253663600011 + ], + [ + 108.66609962000018, + 70.60762359800003 + ], + [ + 107.96790368100017, + 70.4822730750002 + ], + [ + 107.40750153700014, + 70.48153328800015 + ], + [ + 106.4184036010002, + 70.44819812400016 + ], + [ + 105.89250153800003, + 70.55957048300019 + ], + [ + 105.47389957000019, + 70.71724900100014 + ], + [ + 105.13020365300008, + 70.75768011700018 + ], + [ + 104.902801614, + 70.6400201570001 + ], + [ + 105.03639959500015, + 70.55886154100017 + ], + [ + 104.84110259200008, + 70.48773673400007 + ], + [ + 104.40599866800017, + 70.39787233900006 + ], + [ + 104.3672025260002, + 70.27431403300005 + ], + [ + 104.58860060800009, + 70.15422114200004 + ], + [ + 104.6050036580001, + 70.04735690500013 + ], + [ + 104.23889956100015, + 69.99558926600008 + ], + [ + 103.62370256800011, + 70.07777785000019 + ], + [ + 103.32080053600015, + 70.01906563500017 + ], + [ + 103.52890056100011, + 69.8603651950001 + ], + [ + 103.97499852400011, + 69.75726342700017 + ], + [ + 104.24089864500013, + 69.56298566400011 + ], + [ + 104.5236965150001, + 69.40806998800014 + ], + [ + 105.29799661400011, + 69.44540181100018 + ], + [ + 105.54440260700017, + 69.62770116500013 + ], + [ + 105.317100648, + 69.892601324 + ], + [ + 105.14510365900014, + 70.14060155500016 + ], + [ + 105.45909863700007, + 70.34314286900019 + ], + [ + 105.99710064800001, + 70.20304388400001 + ], + [ + 106.125999567, + 70.01811965400015 + ], + [ + 106.35700264000013, + 69.86574486800015 + ], + [ + 106.21340152700014, + 69.55880443500007 + ], + [ + 106.18189965300013, + 69.4166455130001 + ], + [ + 106.3243026560001, + 69.33738707500004 + ], + [ + 106.51049758300007, + 69.29671254800019 + ], + [ + 106.40869853100008, + 69.20155296900009 + ], + [ + 106.5986026170001, + 69.10907191100017 + ], + [ + 106.86440265800019, + 69.06462066700004 + ], + [ + 107.191497545, + 69.04653034000006 + ], + [ + 107.49949661200009, + 69.06921378200019 + ], + [ + 107.85919961700017, + 69.14793024700009 + ], + [ + 108.04350258000005, + 69.286473215 + ], + [ + 107.9560015460001, + 69.35727816900004 + ], + [ + 107.5995026080002, + 69.42211554300007 + ], + [ + 107.24279764200008, + 69.4495371070002 + ], + [ + 107.81639860200005, + 69.90264250900015 + ], + [ + 107.99469760800014, + 69.98269421000003 + ], + [ + 108.33020055000009, + 69.84469355100015 + ], + [ + 108.78500362200015, + 69.72551596300008 + ], + [ + 109.07550060500017, + 69.76184866400007 + ], + [ + 109.33879864800008, + 69.97350077100009 + ], + [ + 109.68019859400016, + 69.96576444200008 + ], + [ + 110.15509761400011, + 69.89763733900008 + ], + [ + 110.32039662400013, + 69.90999712600018 + ], + [ + 110.77960153700013, + 70.00853679100015 + ], + [ + 110.84329964200003, + 70.07512967100018 + ], + [ + 110.7509996330001, + 70.19604750900015 + ], + [ + 110.10259957500006, + 70.48681338400007 + ], + [ + 109.93599667700016, + 70.62603444900003 + ], + [ + 110.22589854500006, + 70.69515363400006 + ], + [ + 110.82949867100007, + 70.50723773500005 + ], + [ + 111.05760160500012, + 70.47842008100008 + ], + [ + 111.29759963300012, + 70.51556197100007 + ], + [ + 111.65489954600014, + 70.68293768100017 + ], + [ + 111.74259956700013, + 70.86726763400014 + ], + [ + 111.54209857600011, + 70.887577824 + ], + [ + 111.15450260900013, + 70.83346677100008 + ], + [ + 110.70909866700009, + 70.86021727999997 + ], + [ + 110.54370158900014, + 70.91076535299999 + ], + [ + 110.52320062700011, + 71.00842692999998 + ], + [ + 111.57209757500004, + 71.32343259800012 + ], + [ + 111.80149853000012, + 71.25870871500007 + ], + [ + 112.21330260700017, + 71.21747746300008 + ], + [ + 112.41230055600022, + 71.2454711760002 + ], + [ + 112.57969655000022, + 71.20067593800019 + ], + [ + 113.27239966000002, + 71.26910847800019 + ], + [ + 113.56189768800004, + 71.34605485200012 + ], + [ + 114.06459763700002, + 71.41091703600011 + ], + [ + 114.29869866100023, + 71.41745525600004 + ], + [ + 114.26699863900012, + 71.24930103500009 + ], + [ + 114.15930157600008, + 71.19334378400015 + ], + [ + 114.19689960900007, + 71.04392931900003 + ], + [ + 114.5419996620002, + 71.04776621900004 + ], + [ + 114.95369762400014, + 71.16629655600013 + ], + [ + 115.40650161300005, + 71.0167052330001 + ], + [ + 115.72840156400014, + 71.008891791 + ], + [ + 116.37180366000018, + 71.09079907800015 + ], + [ + 116.52760362700019, + 71.13041983100004 + ], + [ + 116.8184965710002, + 71.06317098400018 + ], + [ + 117.25579856500008, + 70.82589003400011 + ], + [ + 117.73100268700023, + 70.81217925200008 + ], + [ + 118.02249862500003, + 70.83433698000005 + ], + [ + 118.3851016010002, + 70.80181905200016 + ], + [ + 118.56510163100029, + 70.83509939800007 + ], + [ + 119.03720059300008, + 70.81512465300017 + ], + [ + 119.5594025490002, + 70.67697144200008 + ], + [ + 119.69300053000029, + 70.60936351400011 + ], + [ + 120.00050355700023, + 70.60683033500004 + ], + [ + 120.97619665000013, + 70.76199830600012 + ], + [ + 121.16390266600013, + 70.84871965600007 + ], + [ + 121.72889658500014, + 71.19778384600016 + ], + [ + 122.1137005400002, + 71.30488462000005 + ], + [ + 122.76180253700034, + 71.28812148400004 + ], + [ + 123.07299762500008, + 71.25540574299998 + ], + [ + 123.22229759300012, + 71.2839939000001 + ], + [ + 123.23410065400014, + 71.06900059800006 + ], + [ + 123.01460258200007, + 70.92438376600018 + ], + [ + 122.99240160200009, + 70.76404332300018 + ], + [ + 123.35269955500019, + 70.68875220700005 + ], + [ + 123.81529964100002, + 70.73631582000007 + ], + [ + 124.33920262100003, + 70.7355606100001 + ], + [ + 124.62860056800025, + 70.69030822400009 + ], + [ + 124.86579853800004, + 70.58420791400005 + ], + [ + 125.25260157700006, + 70.58361296600003 + ], + [ + 125.55030062600008, + 70.72417731500013 + ], + [ + 125.64520254600006, + 70.82160989900012 + ], + [ + 125.9129025960001, + 70.85595206500011 + ], + [ + 126.28469867600006, + 70.72521516200015 + ], + [ + 126.59320065700001, + 70.68917934900003 + ], + [ + 127.3112026980001, + 70.88401450900017 + ], + [ + 127.69529754400014, + 70.8834656620001 + ], + [ + 127.96260062800002, + 70.85943893600006 + ], + [ + 128.077606542, + 70.70233290200008 + ], + [ + 128.10920765800006, + 70.57326617700005 + ], + [ + 127.6181025630001, + 70.23633261200013 + ], + [ + 127.70649761100003, + 70.15100098200003 + ], + [ + 128.05990563900014, + 70.02846627500014 + ], + [ + 128.06019565300016, + 69.81592199700009 + ], + [ + 128.3383945400003, + 69.73606844400001 + ], + [ + 128.66690060400015, + 69.77572037800007 + ], + [ + 128.89920069200002, + 69.68970897600008 + ], + [ + 128.74740559900022, + 69.59347416600014 + ], + [ + 128.18730168300021, + 69.36299211300013 + ], + [ + 128.07870457100023, + 69.26832203700008 + ], + [ + 128.1179965870001, + 69.16580750500009 + ], + [ + 128.27409360800004, + 69.04845298100008 + ], + [ + 128.19979859700004, + 68.96409013200014 + ], + [ + 127.22250355500012, + 68.722644549 + ], + [ + 126.69239763200005, + 68.60714460500014 + ], + [ + 126.4682995710001, + 68.49561231900009 + ], + [ + 126.57050363700012, + 68.33254054900016 + ], + [ + 126.8504025420001, + 68.32394876300015 + ], + [ + 127.42209661900017, + 68.47095996900015 + ], + [ + 127.97129869600008, + 68.48485330800008 + ], + [ + 128.21150157800014, + 68.44083725300015 + ], + [ + 128.34390262400007, + 68.2904229940001 + ], + [ + 128.074996585, + 68.21148558300018 + ], + [ + 127.82579757400015, + 68.20115404900014 + ], + [ + 127.51629663800009, + 68.24836796800014 + ], + [ + 127.23639655900001, + 68.22200721800004 + ], + [ + 127.55680067600008, + 68.09362009800003 + ], + [ + 127.87940269500018, + 68.10385909600006 + ], + [ + 128.14370757200004, + 68.06358203999997 + ], + [ + 128.170303686, + 67.9788602770002 + ], + [ + 127.81759655300004, + 67.85410553800011 + ], + [ + 127.25389864400017, + 67.96032051300011 + ], + [ + 127.0475006480001, + 68.02994898200018 + ], + [ + 126.77829755500011, + 68.00956285299998 + ], + [ + 126.65110066500017, + 67.93466870400016 + ], + [ + 126.93650061300013, + 67.74924910300007 + ], + [ + 127.14910155200016, + 67.742168407 + ], + [ + 127.63670368300018, + 67.68901155000015 + ], + [ + 127.64920059700012, + 67.55496362800005 + ], + [ + 127.3955995790003, + 67.4341462050001 + ], + [ + 127.11489869300021, + 67.36968216100018 + ], + [ + 126.93840062300012, + 67.28737958300007 + ], + [ + 127.13829761400007, + 67.13431764900002 + ], + [ + 127.16369662500006, + 66.95462104400008 + ], + [ + 126.95110356500004, + 66.86330741800015 + ], + [ + 127.12339760800023, + 66.63099576200017 + ], + [ + 127.33329756300009, + 66.5304883610001 + ], + [ + 127.55799861700007, + 66.24321992 + ], + [ + 127.54750061900006, + 66.17744360500018 + ], + [ + 127.34829764900007, + 66.06870400200017 + ], + [ + 127.0669025750002, + 65.97913733100006 + ], + [ + 127.34929660400019, + 65.88514686000008 + ], + [ + 128.1228026020002, + 65.97278234000015 + ], + [ + 128.44349656500003, + 65.94961073600012 + ], + [ + 128.40429658300013, + 65.75582214000013 + ], + [ + 128.19000266700004, + 65.69534855300009 + ], + [ + 127.74539970000012, + 65.63713338500008 + ], + [ + 127.71040357800018, + 65.53978462100014 + ], + [ + 128.06820657300023, + 65.47719879400012 + ], + [ + 128.319396621, + 65.3696562940001 + ], + [ + 127.82689660900007, + 65.23379369000008 + ], + [ + 127.57430259300008, + 65.19632373300004 + ], + [ + 127.69460268500006, + 65.11827111500003 + ], + [ + 128.2234955790002, + 64.91763148700016 + ], + [ + 128.57189961000006, + 64.90300489800012 + ], + [ + 128.3883055880001, + 64.55627020600019 + ], + [ + 128.55799855900034, + 64.47020750700011 + ], + [ + 128.95930463800028, + 64.527635949 + ], + [ + 129.17329362000032, + 64.46432491900009 + ], + [ + 129.27209463300005, + 64.363688604 + ], + [ + 129.38600168000005, + 64.40894048800016 + ], + [ + 129.44439655600002, + 64.502809087 + ], + [ + 129.85589569900003, + 64.5399967410001 + ], + [ + 129.9617006300001, + 64.33085786300006 + ], + [ + 130.12849463600003, + 64.34471247900012 + ], + [ + 130.51679954500014, + 64.48655003800008 + ], + [ + 130.76890556700005, + 64.45719879300009 + ], + [ + 130.92289755700017, + 64.35060277700006 + ], + [ + 131.2145996900001, + 64.40563617400011 + ], + [ + 131.5162045390001, + 64.43388151200003 + ], + [ + 131.53320354200002, + 64.35189996100013 + ], + [ + 131.41760268000007, + 64.27876131700009 + ], + [ + 131.43069454200008, + 64.18531198200009 + ], + [ + 131.94590766700014, + 64.26402861400015 + ], + [ + 132.02569567400008, + 64.220775646 + ], + [ + 132.01069659400002, + 64.08821551200003 + ], + [ + 132.7810055660001, + 64.25030995300006 + ], + [ + 132.88800056000014, + 64.08005220900009 + ], + [ + 133.33859256500034, + 64.01902927200007 + ], + [ + 133.4860996440001, + 63.945951984000146 + ], + [ + 133.80020157500007, + 63.99081494800009 + ], + [ + 134.06779467200022, + 64.1148287260001 + ], + [ + 134.29789769600006, + 64.00306727800006 + ], + [ + 134.3818966030001, + 63.83050568500016 + ], + [ + 134.79809564700008, + 63.74292485500018 + ], + [ + 135.2601016250003, + 63.76440549300008 + ], + [ + 135.44599966400017, + 63.66520013700017 + ], + [ + 135.6417995820002, + 63.72470092100008 + ], + [ + 135.73919662600008, + 63.82659552700011 + ], + [ + 135.6940005660001, + 63.992325031000064 + ], + [ + 135.59390270500012, + 64.04806049600012 + ], + [ + 135.29479968600003, + 64.12442717800002 + ], + [ + 135.05400068400002, + 64.38895065500003 + ], + [ + 134.84750361400006, + 64.72428545600008 + ], + [ + 134.47390760500014, + 64.86144591300007 + ], + [ + 133.9678035960003, + 64.92836619000008 + ], + [ + 133.67100560200004, + 65.04388088600012 + ], + [ + 133.48989865800002, + 65.17004646599997 + ], + [ + 133.35809356500022, + 65.31315036400014 + ], + [ + 133.38439966600015, + 65.46995716499998 + ], + [ + 133.1219936250002, + 65.52478503700019 + ], + [ + 132.78469863300006, + 65.44774696500014 + ], + [ + 132.79049656300003, + 65.324717223 + ], + [ + 132.92829857200002, + 65.19844519200012 + ], + [ + 132.9550936720001, + 64.95892359200013 + ], + [ + 133.0858005670001, + 64.77519160300005 + ], + [ + 133.0751035820001, + 64.56889787900008 + ], + [ + 132.83210768300012, + 64.60022557700006 + ], + [ + 132.7877955780001, + 64.76462437000015 + ], + [ + 132.66929659000004, + 64.95777946200013 + ], + [ + 132.61920164200012, + 65.2056543000001 + ], + [ + 132.49180559900014, + 65.43309036900018 + ], + [ + 132.42149366900003, + 65.61390025900016 + ], + [ + 132.5881956410002, + 65.78492980800013 + ], + [ + 132.27389556200012, + 66.05570216100006 + ], + [ + 131.7561036610001, + 66.0418167000002 + ], + [ + 131.38439961400002, + 65.99821236400015 + ], + [ + 131.3435976830001, + 65.92284564300007 + ], + [ + 131.75100662500006, + 65.6065228430001 + ], + [ + 131.8302006910002, + 65.43243473700011 + ], + [ + 131.6564946320001, + 65.25185266800003 + ], + [ + 131.2850956870002, + 65.10136347500014 + ], + [ + 130.8636016270001, + 65.14978992100004 + ], + [ + 130.68690457000002, + 65.31357767300005 + ], + [ + 130.73190265000005, + 65.45926085000008 + ], + [ + 131.02549758400005, + 65.58663174800017 + ], + [ + 130.90669265600002, + 65.70139877800017 + ], + [ + 130.56019567500005, + 65.63762138000004 + ], + [ + 130.29949954300002, + 65.53568737900002 + ], + [ + 130.00399755800015, + 65.534688759 + ], + [ + 129.73539762600012, + 65.71012014900015 + ], + [ + 129.64270065000005, + 65.919053335 + ], + [ + 129.94259659700015, + 66.16458777700012 + ], + [ + 129.79110761100003, + 66.3078289710001 + ], + [ + 128.8307036120002, + 66.27207512400008 + ], + [ + 128.97360265600003, + 66.47164840700009 + ], + [ + 129.29580670200016, + 66.7266041090001 + ], + [ + 129.57600366700024, + 66.84813147900007 + ], + [ + 129.60859669800004, + 67.00379465300006 + ], + [ + 129.56359861800013, + 67.06890779100002 + ], + [ + 129.65710461600008, + 67.2297974170001 + ], + [ + 129.4906006230001, + 67.42665378900011 + ], + [ + 129.66799958100012, + 67.68616572600007 + ], + [ + 129.95179757900007, + 67.88542519000015 + ], + [ + 130.00779757700002, + 68.07858950200006 + ], + [ + 130.44659456800014, + 68.23007865600016 + ], + [ + 130.863998594, + 68.22195323900013 + ], + [ + 131.22210669000003, + 68.37159636200016 + ], + [ + 130.89990264400012, + 68.53412733200014 + ], + [ + 131.13110369700007, + 68.67913911900013 + ], + [ + 131.21949757200014, + 68.91261216999999 + ], + [ + 130.81460554700016, + 69.003246192 + ], + [ + 131.1974025390001, + 69.13819466600006 + ], + [ + 131.16209360500022, + 69.37361282200004 + ], + [ + 131.3372036320003, + 69.51848127800014 + ], + [ + 131.3780975970002, + 69.69155584400016 + ], + [ + 131.1537016430001, + 69.82134643000012 + ], + [ + 131.34649664800008, + 69.95866094700006 + ], + [ + 131.9676055650002, + 70.1606755430002 + ], + [ + 132.1976926630001, + 70.26179348199997 + ], + [ + 132.80160560200034, + 70.27747350800007 + ], + [ + 132.950302576, + 70.38694569000006 + ], + [ + 133.30650362200015, + 70.341579142 + ], + [ + 133.8569026350002, + 70.32521314000019 + ], + [ + 134.33889760800002, + 70.4002065310001 + ], + [ + 135.1237025790001, + 70.28484354800008 + ], + [ + 134.98480270800007, + 70.20212103600005 + ], + [ + 135.1116026310001, + 70.09611208900003 + ], + [ + 135.84109458500006, + 69.97495804900007 + ], + [ + 136.25199861300007, + 69.79288768900005 + ], + [ + 135.8861996180001, + 69.63112751900007 + ], + [ + 135.25019857400025, + 69.48873943600012 + ], + [ + 135.16380261000006, + 69.42203960300003 + ], + [ + 135.7115936780002, + 69.32788736100002 + ], + [ + 135.82949855700008, + 69.09855815500015 + ], + [ + 136.0041046650001, + 68.96747005000003 + ], + [ + 136.20899961700002, + 68.96966745000009 + ], + [ + 136.4277035880001, + 69.06407165200017 + ], + [ + 136.43260163700018, + 69.2210625190001 + ], + [ + 136.6300967100002, + 69.25094098700009 + ], + [ + 136.98199465400023, + 69.25894436300007 + ], + [ + 137.10209659800023, + 69.38263141500005 + ], + [ + 136.94900465700005, + 69.44183162299998 + ], + [ + 136.9501036920002, + 69.5106757150001 + ], + [ + 137.11689769800012, + 69.54268234700015 + ], + [ + 137.60200470400002, + 69.53355696900007 + ], + [ + 138.17030360700005, + 69.56094064700005 + ], + [ + 138.63110359600012, + 69.42864705700015 + ], + [ + 138.88800054600017, + 69.15469075400017 + ], + [ + 139.19619759400018, + 68.99766082700017 + ], + [ + 139.35470558600002, + 68.77480965900014 + ], + [ + 139.53849758900003, + 68.71154322100006 + ], + [ + 139.52290356100002, + 68.48698968800011 + ], + [ + 139.67149358200015, + 68.35288141600012 + ], + [ + 139.92629958300006, + 68.27071613400005 + ], + [ + 140.3190006320002, + 68.09005711900005 + ], + [ + 140.4703065570003, + 68.08173288300014 + ], + [ + 140.8211056340001, + 68.28788998300018 + ], + [ + 141.15390055000023, + 68.34787607900017 + ], + [ + 141.3610996880002, + 68.31586860800013 + ], + [ + 141.50660667800003, + 68.11036697300005 + ], + [ + 141.61090068700014, + 68.09567249100013 + ], + [ + 141.89880363900033, + 68.18028679800011 + ], + [ + 142.0928036260002, + 68.31673060300011 + ], + [ + 142.50669865300006, + 68.44884867600018 + ], + [ + 142.57940663400007, + 68.52842009400007 + ], + [ + 142.5196076220003, + 68.66335348000013 + ], + [ + 141.99110364800015, + 68.84608751900004 + ], + [ + 141.641692615, + 68.86568843200013 + ], + [ + 141.17720056500013, + 68.73122812100002 + ], + [ + 140.77220158800003, + 68.68006246900018 + ], + [ + 140.61390666400007, + 68.72510195500013 + ], + [ + 140.59379562800018, + 68.79206045400014 + ], + [ + 140.91659562800032, + 68.95082945800004 + ], + [ + 140.84930470300003, + 69.05675425100003 + ], + [ + 140.727798623, + 69.09643719800005 + ], + [ + 140.23379556900022, + 68.97609150800014 + ], + [ + 140.0563966110002, + 69.03793922500006 + ], + [ + 140.4445037070002, + 69.23857315300017 + ], + [ + 140.26300063400015, + 69.305745893 + ], + [ + 140.04859959700002, + 69.31019416900017 + ], + [ + 139.8065946060002, + 69.3863397360002 + ], + [ + 139.86450165500014, + 69.4477831100001 + ], + [ + 140.50390659000016, + 69.60642990600002 + ], + [ + 140.70829762200003, + 69.68962482100017 + ], + [ + 140.76339757200003, + 69.77412580500004 + ], + [ + 140.9225006790001, + 69.82815270300006 + ], + [ + 141.25639362400022, + 69.79505374100006 + ], + [ + 141.2763066790002, + 69.66022009900007 + ], + [ + 141.13369764900028, + 69.53433464200003 + ], + [ + 141.14509569600023, + 69.46441582300008 + ], + [ + 141.32179258600002, + 69.45110100200003 + ], + [ + 141.62300063500027, + 69.68497822900008 + ], + [ + 141.76170369900012, + 69.70827941700014 + ], + [ + 141.93370068700006, + 69.59225325799997 + ], + [ + 141.89149462000034, + 69.31851086100016 + ], + [ + 142.01300070000002, + 69.24668365100013 + ], + [ + 142.4150997060001, + 69.22644873000019 + ], + [ + 142.82800265100013, + 69.43512408900011 + ], + [ + 143.24099762800017, + 69.45763285200007 + ], + [ + 143.65879862100007, + 69.40404063900007 + ], + [ + 144.34030166500008, + 69.38671356900011 + ], + [ + 144.83219868200024, + 69.42470940700014 + ], + [ + 145.24760463100006, + 69.4947896610002 + ], + [ + 145.56480367500012, + 69.47878274100009 + ], + [ + 145.89549255400016, + 69.55762091000014 + ], + [ + 146.28239466800028, + 69.5207854630001 + ], + [ + 146.4398036240001, + 69.39341305700003 + ], + [ + 146.8666996530003, + 69.38011315600016 + ], + [ + 147.61059557200008, + 69.62513781100012 + ], + [ + 147.96760563900023, + 69.65670271700003 + ], + [ + 148.77319370700013, + 69.55143406000013 + ], + [ + 149.12759364900012, + 69.53683814900012 + ], + [ + 149.58149767900022, + 69.60319465900017 + ], + [ + 149.9808046730002, + 69.79188035200013 + ], + [ + 150.45829755800003, + 69.82015586400018 + ], + [ + 150.70109564400013, + 69.770570201 + ], + [ + 151.10060162500008, + 69.74230139500014 + ], + [ + 151.7339016850001, + 69.87420639900012 + ], + [ + 152.12669359400024, + 69.82569546400003 + ], + [ + 152.35159262900004, + 69.70686874300014 + ], + [ + 152.60200466900005, + 69.64457913300004 + ], + [ + 153.04060367800014, + 69.60188188500007 + ], + [ + 153.37120069200012, + 69.5976175080001 + ], + [ + 154.23599265600024, + 69.25715113900003 + ], + [ + 154.84550470700003, + 69.05066580400012 + ], + [ + 155.65460160700002, + 68.92124838000012 + ], + [ + 156.8791046230001, + 68.92832907700006 + ], + [ + 157.71510357600005, + 68.91849475800018 + ], + [ + 158.81889360800005, + 68.89040113300018 + ], + [ + 159.17990066900006, + 68.81536180900008 + ], + [ + 159.71620165700006, + 68.73707215100006 + ], + [ + 159.9821016100001, + 68.6739891100001 + ], + [ + 160.60879572400006, + 68.58892435899998 + ], + [ + 160.92709363600022, + 68.60511517900011 + ], + [ + 161.11610370800008, + 68.68171856600014 + ], + [ + 161.27059961800012, + 68.81211147500011 + ], + [ + 161.80900563700015, + 68.94101760200016 + ], + [ + 161.85249363300022, + 69.18121897500004 + ], + [ + 161.79119861900006, + 69.43100522200012 + ], + [ + 161.4436036090001, + 69.28137584500013 + ], + [ + 161.35760461200016, + 69.39792905900015 + ], + [ + 161.4060055760002, + 69.49800998800009 + ], + [ + 161.1483006100001, + 69.46338585500013 + ], + [ + 161.20899967100002, + 69.34314728600009 + ], + [ + 161.03590364700005, + 69.33227444900012 + ], + [ + 160.97219866800015, + 69.49151652800003 + ], + [ + 161.03169257900015, + 69.58101429900006 + ], + [ + 160.90409872200007, + 69.63749776500015 + ], + [ + 160.53680473100007, + 69.68587140500011 + ], + [ + 160.3020016390002, + 69.68482634900016 + ], + [ + 159.90919464300032, + 69.78131311900017 + ], + [ + 159.72959862100004, + 69.7342903070001 + ], + [ + 159.70350659400026, + 69.97750631500003 + ], + [ + 159.83549458000016, + 70.07487854900018 + ], + [ + 159.74630760900004, + 70.14190661700013 + ], + [ + 159.9897006430001, + 70.18680009100012 + ], + [ + 160.0659027040001, + 70.34220476700017 + ], + [ + 159.83419773100002, + 70.58278902500018 + ], + [ + 159.6145016790001, + 70.70767401800003 + ], + [ + 159.08999671100003, + 70.8699148070001 + ], + [ + 158.21270766400016, + 71.00948774400001 + ], + [ + 157.7324987080002, + 71.0521006690002 + ], + [ + 157.45599363600013, + 71.05338930300007 + ], + [ + 156.21719360800012, + 71.09262197400017 + ], + [ + 155.75399756800005, + 71.07931603800006 + ], + [ + 155.52110270000014, + 71.00875499800014 + ], + [ + 155.37370257400028, + 71.0614007260001 + ], + [ + 154.6257935670002, + 70.99550186800013 + ], + [ + 153.69529770700024, + 70.86166751700017 + ], + [ + 153.4445036200002, + 70.8701127870001 + ], + [ + 153.1246035920003, + 70.82502116600017 + ], + [ + 152.63119464600004, + 70.81734568900009 + ], + [ + 152.27389557100014, + 70.83940283500004 + ], + [ + 152.0791016500001, + 70.922476883 + ], + [ + 152.00689658300018, + 71.05669395200005 + ], + [ + 151.50770563400022, + 71.31030201200008 + ], + [ + 151.01269557700004, + 71.35968969400011 + ], + [ + 150.7068935750001, + 71.3058684880001 + ], + [ + 150.580993701, + 71.37498733800004 + ], + [ + 150.54739366800004, + 71.50726634300008 + ], + [ + 149.98249865600008, + 71.50010199500008 + ], + [ + 149.99940461900007, + 71.62226320500008 + ], + [ + 149.81239363100008, + 71.66276254900009 + ], + [ + 149.50720266800033, + 71.64532869400011 + ], + [ + 149.22450269900025, + 71.68375200800011 + ], + [ + 148.97329655800013, + 71.67408515900007 + ], + [ + 148.89610258200014, + 71.82520953300019 + ], + [ + 149.21119659600004, + 71.79793297600008 + ], + [ + 149.33369459000005, + 71.87375131300007 + ], + [ + 149.63439955800027, + 71.74392887600004 + ], + [ + 149.8054046320001, + 71.76684902300013 + ], + [ + 150.0776827100002, + 71.86721979900017 + ], + [ + 149.89819364100015, + 72.05531859100017 + ], + [ + 149.61369357500007, + 72.12736809 + ], + [ + 149.08419768700003, + 72.21003008399998 + ], + [ + 147.7433925790001, + 72.31432191400012 + ], + [ + 147.34480257200005, + 72.3170911270002 + ], + [ + 147.00819355500016, + 72.25976863300019 + ], + [ + 146.6690065990001, + 72.09207943900014 + ], + [ + 146.54190056900006, + 71.97108515800011 + ], + [ + 146.19979855500003, + 71.78699945300008 + ], + [ + 145.464004584, + 71.67283407600002 + ], + [ + 145.3632966880001, + 71.62572744500017 + ], + [ + 144.92010456300022, + 71.68841419000006 + ], + [ + 145.05949360100033, + 71.78570243800016 + ], + [ + 145.39559970400023, + 71.8746438180001 + ], + [ + 145.76339761600013, + 71.89516104100011 + ], + [ + 145.84120162600016, + 72.00492323700007 + ], + [ + 145.65220664100013, + 72.05731734000005 + ], + [ + 145.78010559900008, + 72.18161610300012 + ], + [ + 145.9568936830002, + 72.11344289900006 + ], + [ + 146.2622987190001, + 72.14612880100003 + ], + [ + 146.26690658700022, + 72.07995619000008 + ], + [ + 145.99670370000013, + 71.99730073400008 + ], + [ + 145.99870261600006, + 71.86721175200012 + ], + [ + 146.19889867400002, + 71.91201470100015 + ], + [ + 146.82910162000007, + 72.23182822900014 + ], + [ + 146.82330369000022, + 72.28008686900017 + ], + [ + 146.44410655800016, + 72.29955836500011 + ], + [ + 145.79820263100032, + 72.30211417500004 + ], + [ + 145.04139656900009, + 72.27060224200011 + ], + [ + 144.7079926240001, + 72.22485348000009 + ], + [ + 144.5171967030002, + 72.25325220600007 + ], + [ + 144.85079963400005, + 72.42207848800007 + ], + [ + 145.33459470400032, + 72.40382085900012 + ], + [ + 145.45899958200005, + 72.33658559000014 + ], + [ + 145.7395936820002, + 72.35377553200016 + ], + [ + 146.82220465500006, + 72.31823626300007 + ], + [ + 146.5809015650001, + 72.40821515500011 + ], + [ + 145.47540263100018, + 72.56698449500004 + ], + [ + 144.2409975700001, + 72.66453224600019 + ], + [ + 142.88119471100015, + 72.71392847800007 + ], + [ + 142.10600260900026, + 72.74896483300006 + ], + [ + 141.6607966480002, + 72.79338556700014 + ], + [ + 141.1324006330001, + 72.90720074799998 + ], + [ + 140.67840557600005, + 72.88494394600019 + ], + [ + 140.74110355300024, + 72.80595221900006 + ], + [ + 141.02630669400014, + 72.67987632600006 + ], + [ + 141.06669657100008, + 72.627825545 + ], + [ + 140.93099959300014, + 72.5301022770002 + ], + [ + 140.67880271100012, + 72.48764978100019 + ], + [ + 140.00799564600015, + 72.45605403000013 + ], + [ + 139.53750567400016, + 72.45838906000006 + ], + [ + 139.2248995780002, + 72.35051061400003 + ], + [ + 139.1309966130001, + 72.20696968300018 + ], + [ + 139.25100669200003, + 72.13452405600003 + ], + [ + 139.50570657800006, + 72.13778931000002 + ], + [ + 139.69900466500007, + 72.235368074 + ], + [ + 140.1965026370001, + 72.19080149500019 + ], + [ + 139.89930767600003, + 72.14958499500017 + ], + [ + 139.6302946840001, + 72.04224885700006 + ], + [ + 139.65400658500016, + 71.96858215400016 + ], + [ + 139.40640265000013, + 71.94756956100014 + ], + [ + 139.74560569900007, + 71.85803356800011 + ], + [ + 139.76499957900035, + 71.68577439400013 + ], + [ + 139.98219262800023, + 71.52622654300012 + ], + [ + 139.93530258500016, + 71.47154367700006 + ], + [ + 139.56249967200017, + 71.49169327000004 + ], + [ + 139.2158965760001, + 71.41165665500012 + ], + [ + 139.04580663800016, + 71.60241821100016 + ], + [ + 138.75860558600004, + 71.64524453900015 + ], + [ + 138.54130558500003, + 71.57553057400008 + ], + [ + 138.42170756100006, + 71.62168351200017 + ], + [ + 138.15969865500017, + 71.56922118000011 + ], + [ + 138.10879569200006, + 71.4772656670001 + ], + [ + 137.9400936300001, + 71.39728990600008 + ], + [ + 138.27459761600016, + 71.35391422700019 + ], + [ + 138.02879361200007, + 71.29440891700006 + ], + [ + 137.8482967030002, + 71.2082987760001 + ], + [ + 138.04550159400003, + 71.16310673900006 + ], + [ + 137.8065945550003, + 71.11130808600012 + ], + [ + 137.6815945620001, + 71.20877872400007 + ], + [ + 137.48260466000033, + 71.27949315300009 + ], + [ + 137.4954987100001, + 71.34837513000008 + ], + [ + 137.1873016620001, + 71.37684946100018 + ], + [ + 137.0740966830001, + 71.44619697000013 + ], + [ + 136.5484926800001, + 71.55370108100004 + ], + [ + 136.43229670300013, + 71.60176190800013 + ], + [ + 135.98680156700016, + 71.66225846200001 + ], + [ + 135.70970154700024, + 71.6602905580001 + ], + [ + 135.26170357400008, + 71.56163673100008 + ], + [ + 134.85079954600008, + 71.50167410500012 + ], + [ + 134.74969468300014, + 71.45839766800009 + ], + [ + 134.8065037020002, + 71.38187692700012 + ], + [ + 134.52999863000014, + 71.39125443300009 + ], + [ + 134.08830267500002, + 71.3688993940001 + ], + [ + 133.67129561500008, + 71.41116866100009 + ], + [ + 133.20829755600016, + 71.54936780400004 + ], + [ + 133.0066066700001, + 71.69409896500008 + ], + [ + 132.77659567900002, + 71.76173002700006 + ], + [ + 132.73809860400002, + 71.93060861200001 + ], + [ + 132.47250358500003, + 71.87772668200006 + ], + [ + 132.28959654300002, + 71.74223556400011 + ], + [ + 132.21650668300003, + 71.56438381600009 + ], + [ + 131.98019367500012, + 71.32936095100007 + ], + [ + 131.98730454600002, + 71.24745534000004 + ], + [ + 131.80960065500005, + 71.18862846100018 + ], + [ + 131.67869561100008, + 70.98504929900008 + ], + [ + 131.33459468100023, + 70.78964886400018 + ], + [ + 131.05380260100014, + 70.76869662000013 + ], + [ + 130.941894638, + 70.89539143400009 + ], + [ + 130.74429361700027, + 70.89980836200016 + ], + [ + 130.23420770200016, + 70.95407984400015 + ], + [ + 130.33940159300005, + 71.02522795200014 + ], + [ + 130.13729865200014, + 71.09324776699998 + ], + [ + 130.0027005420003, + 71.06678039900015 + ], + [ + 129.76620464100006, + 71.11978420200012 + ], + [ + 129.76220664100003, + 71.25143037400017 + ], + [ + 129.42050159400003, + 71.39481003600002 + ], + [ + 129.22610463900003, + 71.59855767400006 + ], + [ + 128.87440467600004, + 71.72174952200004 + ], + [ + 129.53540055500002, + 71.7538932830002 + ], + [ + 129.32369966400017, + 71.84520774800012 + ], + [ + 129.09140058200023, + 71.98591023000017 + ], + [ + 129.09240758400006, + 71.80541047100019 + ], + [ + 128.8097996480002, + 71.79008935800005 + ], + [ + 128.66479456700006, + 71.82692631400005 + ], + [ + 128.41709859900016, + 72.02780583200007 + ], + [ + 127.81629953700008, + 72.30021433300004 + ], + [ + 127.02915953500019, + 72.40124845300011 + ], + [ + 126.72303767900007, + 72.39430605800004 + ], + [ + 126.88581859700025, + 72.29763505400007 + ], + [ + 126.91526757600002, + 72.17317770500006 + ], + [ + 127.04721063400007, + 72.00568649300016 + ], + [ + 127.31886258400004, + 71.90900023400008 + ], + [ + 127.13303361200008, + 71.84371945700013 + ], + [ + 126.79942363900011, + 72.01818391000012 + ], + [ + 126.77361257400003, + 72.11456523600015 + ], + [ + 126.40054361900013, + 72.34124794000013 + ], + [ + 126.11775161600008, + 72.26569732000019 + ], + [ + 125.88220253500003, + 72.33097843200005 + ], + [ + 125.67165365300002, + 72.33596734100007 + ], + [ + 125.52053866700021, + 72.40153863400002 + ], + [ + 125.23081969300017, + 72.46153981800018 + ], + [ + 125.16638163300001, + 72.52015245500007 + ], + [ + 124.79221364200009, + 72.5879359000001 + ], + [ + 124.72971364600028, + 72.62515523800016 + ], + [ + 124.34304756700021, + 72.63960630999998 + ], + [ + 124.10887160900018, + 72.71016651200017 + ], + [ + 123.7877736390003, + 72.75516828000002 + ], + [ + 123.34387156600008, + 72.726265131 + ], + [ + 122.65358764100017, + 72.81098756400019 + ], + [ + 122.37415359700003, + 72.86905085100011 + ], + [ + 122.05330658100013, + 72.89073567300005 + ], + [ + 121.88723760900018, + 72.96426390700015 + ], + [ + 120.89219656900002, + 72.95536769000012 + ], + [ + 119.92469762400003, + 73.01673445300014 + ], + [ + 119.65969855800006, + 72.9770055730001 + ], + [ + 119.34570358000008, + 73.06136205300015 + ], + [ + 118.33149765400026, + 73.23817578600017 + ], + [ + 118.43009968100012, + 73.36803678000007 + ], + [ + 118.31249956700003, + 73.41860698100015 + ], + [ + 118.95939658300006, + 73.42048419200012 + ], + [ + 118.97309864700003, + 73.46041205800009 + ], + [ + 118.45010359600008, + 73.55110056300009 + ], + [ + 118.15609761300004, + 73.57306701600015 + ], + [ + 117.22350359500001, + 73.59431614700014 + ], + [ + 116.6257015660002, + 73.6466874510001 + ], + [ + 115.53040357600014, + 73.69851711700005 + ], + [ + 115.19750254500002, + 73.6768101670001 + ], + [ + 114.80999760500026, + 73.58454988800008 + ], + [ + 114.23319962000005, + 73.58120752100018 + ], + [ + 113.6043015680001, + 73.52438777200013 + ], + [ + 113.64550063400009, + 73.43775862400014 + ], + [ + 114.02690153700007, + 73.31158332100011 + ], + [ + 113.56359854400011, + 73.32169290200017 + ], + [ + 113.2785035300002, + 73.46331119100006 + ], + [ + 113.5112996590002, + 73.62164618000003 + ], + [ + 113.40339656900005, + 73.68294471500013 + ], + [ + 113.25859868900022, + 73.85964478900007 + ], + [ + 112.94750267600023, + 73.96141232500008 + ], + [ + 112.79579961600018, + 73.96253348900012 + ], + [ + 112.97499867100021, + 73.7953170350001 + ], + [ + 112.86509666500001, + 73.72472548400003 + ], + [ + 112.44889862700006, + 73.68198280700017 + ], + [ + 111.90229762100017, + 73.7257028140001 + ], + [ + 111.44129965200011, + 73.79280699000014 + ], + [ + 111.22630266200014, + 73.87972632000009 + ], + [ + 111.28990152600005, + 73.96409755200011 + ], + [ + 111.20010368200013, + 74.03021081900016 + ], + [ + 110.85800166800004, + 73.91907348799998 + ], + [ + 110.35279854700013, + 74.01113545200008 + ], + [ + 109.93080157300017, + 73.94967749300008 + ], + [ + 109.51719656100005, + 73.75294115000014 + ], + [ + 109.63050061300015, + 73.67934384900013 + ], + [ + 110.38780254800008, + 73.70082113500007 + ], + [ + 110.72339668500007, + 73.78171303800008 + ], + [ + 110.76899759100013, + 73.6687378920002 + ], + [ + 110.157699525, + 73.56366604100009 + ], + [ + 110.14060262100008, + 73.51218791200017 + ], + [ + 109.62329854700005, + 73.45851992700011 + ], + [ + 109.26069657700015, + 73.44457193800008 + ], + [ + 109.18499759800017, + 73.3642446390001 + ], + [ + 108.88839758300014, + 73.32899488000004 + ], + [ + 108.41940260700005, + 73.34330027500016 + ], + [ + 108.22949952700014, + 73.32140305500008 + ], + [ + 108.10659752400005, + 73.228211547 + ], + [ + 107.83640268400018, + 73.18715597900018 + ], + [ + 107.09860258800006, + 73.18271474400012 + ], + [ + 106.82649952400004, + 73.162250998 + ], + [ + 106.45279656100018, + 73.19849367700016 + ], + [ + 106.20629853500009, + 73.14767017499997 + ], + [ + 106.28649859600017, + 72.97962273900015 + ], + [ + 106.00180054900017, + 72.94419796600016 + ], + [ + 105.9634015420001, + 72.88761425200016 + ], + [ + 105.52320058300006, + 72.79451461000002 + ], + [ + 105.20010352900016, + 72.82392067300015 + ], + [ + 105.63359863000011, + 72.91783621000013 + ], + [ + 105.93070256400017, + 73.14433602100019 + ], + [ + 106.16310155900015, + 73.28222369300005 + ], + [ + 106.44309953800013, + 73.32492831600018 + ], + [ + 107.00050364300012, + 73.35179315400006 + ], + [ + 107.04329661100019, + 73.44424370200011 + ], + [ + 107.22709666100013, + 73.54680416700006 + ], + [ + 107.18890368100017, + 73.60582215300019 + ], + [ + 107.6038965690002, + 73.63215976900017 + ], + [ + 107.85959658400009, + 73.58749495400019 + ], + [ + 108.34950256400003, + 73.69680771200012 + ], + [ + 108.86319755900018, + 73.92745153600009 + ], + [ + 109.09230062100005, + 73.98745288700013 + ], + [ + 109.62590062500004, + 74.0747918150002 + ], + [ + 109.94960067300008, + 74.20652197300006 + ], + [ + 110.01599859000004, + 74.38155891100001 + ], + [ + 110.38960264600018, + 74.43085506200003 + ], + [ + 110.43759960300014, + 74.49416827100004 + ], + [ + 110.71759758200011, + 74.50368273700013 + ], + [ + 111.0595016150001, + 74.55718341900013 + ], + [ + 111.05280263000014, + 74.61204984900013 + ], + [ + 111.50189963800005, + 74.7003582280002 + ], + [ + 111.84819763300015, + 74.6653979800002 + ], + [ + 111.98269666900012, + 74.77179702100017 + ], + [ + 112.22889663500007, + 74.88358260800015 + ], + [ + 112.72650156100008, + 74.93106357500005 + ], + [ + 113.6961975700001, + 75.29267363100007 + ], + [ + 113.74520152900004, + 75.48056036100013 + ], + [ + 113.39830054000004, + 75.49920054000006 + ], + [ + 113.28559864300007, + 75.60409603500017 + ], + [ + 113.65679960700004, + 75.58065671300005 + ], + [ + 113.95050065700002, + 75.81032454800015 + ], + [ + 113.8637995910002, + 75.89570362000006 + ], + [ + 113.65460153700008, + 75.89956365400008 + ], + [ + 113.42169962800017, + 76.07292270200014 + ], + [ + 113.37539665400016, + 76.23273843800013 + ], + [ + 113.1126025320001, + 76.19113301800007 + ], + [ + 113.0025025450002, + 76.06851298300006 + ], + [ + 112.58879862600008, + 76.24227587100012 + ], + [ + 112.77940360800017, + 76.2659740260001 + ], + [ + 112.79840068800013, + 76.36739019300006 + ], + [ + 112.1602015740001, + 76.50687277300011 + ], + [ + 111.98650356200011, + 76.58774238100011 + ], + [ + 111.70680263800011, + 76.62493070600016 + ], + [ + 111.68460065300013, + 76.70297645000011 + ], + [ + 111.342201584, + 76.69575141700011 + ], + [ + 111.1445995580001, + 76.75482891500002 + ], + [ + 110.5831986250002, + 76.75184629900019 + ], + [ + 109.92839864900014, + 76.6711753420002 + ], + [ + 109.5506975190001, + 76.77903199600001 + ], + [ + 109.23539764600008, + 76.73918845100019 + ], + [ + 108.39710255400013, + 76.74085879700004 + ], + [ + 108.01020060900004, + 76.75614906500005 + ], + [ + 108.14050265800012, + 76.63653561800004 + ], + [ + 107.68389865000012, + 76.52705421700011 + ], + [ + 107.15630360900002, + 76.54514420800007 + ], + [ + 106.67069955700003, + 76.525070052 + ], + [ + 106.88790165900019, + 76.70721098800016 + ], + [ + 107.59249852200008, + 76.937764287 + ], + [ + 107.32450057800014, + 77.03525219200003 + ], + [ + 106.83170368000009, + 77.06941045900004 + ], + [ + 106.67819951700011, + 77.02260892900011 + ], + [ + 106.20760359700006, + 77.07674278000019 + ], + [ + 105.88600153900006, + 77.00807420600017 + ], + [ + 105.71970357400005, + 77.04750452200005 + ], + [ + 105.75299867300004, + 77.1369198160001 + ], + [ + 105.0328976360002, + 77.0894851170001 + ], + [ + 104.60320255400012, + 77.09327692200009 + ], + [ + 104.50930059600006, + 77.13794324600008 + ], + [ + 105.06240059400005, + 77.1789753440001 + ], + [ + 105.63770257700014, + 77.27972950900016 + ], + [ + 105.85939754600014, + 77.3544793210001 + ], + [ + 106.26540352500012, + 77.37831510700016 + ], + [ + 105.98459652500009, + 77.48163212200018 + ], + [ + 105.91999853900012, + 77.55504686500007 + ], + [ + 105.42469763000008, + 77.55032383000014 + ], + [ + 105.09909857800011, + 77.58864907700013 + ], + [ + 104.841697539, + 77.69745841800005 + ], + [ + 104.56729867200005, + 77.66586350400013 + ], + [ + 104.43849966600004, + 77.75779672100009 + ], + [ + 104.18489864700013, + 77.73994209400007 + ], + [ + 103.7125016240002, + 77.64563629500009 + ], + [ + 103.29409763700005, + 77.6362680100001 + ], + [ + 102.42459856300019, + 77.37898633000003 + ], + [ + 102.0850986270001, + 77.33133772500008 + ], + [ + 101.53340159200013, + 77.10497386800012 + ], + [ + 101.42240155700017, + 77.00503006600019 + ], + [ + 101.07659960300015, + 76.920367983 + ], + [ + 101.21330257700004, + 76.79774006800005 + ], + [ + 101.40190160100008, + 76.7573931070001 + ], + [ + 101.29460167300005, + 76.68969264300011 + ], + [ + 101.29599759500013, + 76.53889549900003 + ], + [ + 101.97959862900018, + 76.45944578500013 + ], + [ + 101.91459663500018, + 76.40603613100018 + ], + [ + 100.99279767000007, + 76.52217092000012 + ], + [ + 100.53279865600018, + 76.45879736100011 + ], + [ + 100.36009959900008, + 76.51287823900014 + ], + [ + 99.98657953000009, + 76.48792849799997 + ], + [ + 98.86662265100011, + 76.49973122400007 + ], + [ + 99.06202660700006, + 76.34973505500017 + ], + [ + 99.34916663800016, + 76.33267503200017 + ], + [ + 99.97569261100017, + 76.08947930800008 + ], + [ + 99.80651864800006, + 76.02837070700008 + ], + [ + 99.58164962000006, + 76.08191849600013 + ], + [ + 99.57998665000014, + 76.14293456000007 + ], + [ + 99.24442252000006, + 76.14212520300015 + ], + [ + 99.32393660700006, + 76.21415274200012 + ], + [ + 98.85915353700011, + 76.19812922500012 + ], + [ + 98.77130850999998, + 76.2407951240001 + ], + [ + 98.369499517, + 76.15597311300019 + ], + [ + 97.81813055000003, + 76.08004849300005 + ], + [ + 97.37950857400017, + 75.92507833500002 + ], + [ + 97.14803360000013, + 75.96933126400006 + ], + [ + 96.93215164900005, + 75.8626041550001 + ], + [ + 96.57312053700008, + 75.98746752300008 + ], + [ + 96.31060754400016, + 75.91911159400007 + ], + [ + 95.75243364400012, + 75.86375616400011 + ], + [ + 96.28780357000016, + 76.08059851400003 + ], + [ + 96.0812986210002, + 76.12430259500007 + ], + [ + 95.7255015840002, + 76.140279341 + ], + [ + 95.2568125470001, + 76.10338890800011 + ], + [ + 95.06118060300014, + 76.15368518900004 + ], + [ + 94.63504062200013, + 76.07325781100008 + ], + [ + 94.58785251900014, + 76.13350424800012 + ], + [ + 93.9250565420001, + 76.13330610000008 + ], + [ + 94.11486054900001, + 76.03315526500018 + ], + [ + 93.69450357800014, + 76.02691359700015 + ], + [ + 93.60336261800012, + 76.12562241000012 + ], + [ + 93.37407666300015, + 76.09825331600007 + ], + [ + 93.50630956700019, + 75.96816400000012 + ], + [ + 93.44006353100008, + 75.92677935900008 + ], + [ + 94.2194596600001, + 75.88421991000007 + ], + [ + 93.12896751800014, + 75.79240940400007 + ], + [ + 92.51438860700006, + 75.77154114700011 + ], + [ + 92.05956256800016, + 75.7361157040001 + ], + [ + 91.78205166700008, + 75.74171582100007 + ], + [ + 91.50509665500005, + 75.65663581600012 + ], + [ + 90.9818265090002, + 75.67847167900004 + ], + [ + 90.63276650900008, + 75.60782732300015 + ], + [ + 90.33007050400005, + 75.60730831500001 + ], + [ + 90.15998056600006, + 75.52084563100016 + ], + [ + 89.60031854400006, + 75.46922216000019 + ], + [ + 89.37464150000017, + 75.49981040699998 + ], + [ + 88.62088762500014, + 75.28460956900005 + ], + [ + 88.49907661100013, + 75.22069403700004 + ], + [ + 88.15197764200019, + 75.13134043400004 + ], + [ + 87.47576156700018, + 75.17431210500001 + ], + [ + 87.35072352100013, + 75.10214073400005 + ], + [ + 87.35408751400007, + 74.94161538500003 + ], + [ + 87.19795260700005, + 74.87858481500007 + ], + [ + 87.01435053800003, + 74.65287022000018 + ], + [ + 86.72502165700001, + 74.68820396500007 + ], + [ + 86.67135652200005, + 74.74378721500005 + ], + [ + 86.33244365399997, + 74.76878288900019 + ], + [ + 85.88141662900017, + 74.74997574200006 + ], + [ + 85.76992759400008, + 74.68828107900003 + ], + [ + 86.37337449900008, + 74.64282886800015 + ], + [ + 86.85484359100008, + 74.57836348300003 + ], + [ + 86.93166356600011, + 74.49102539300003 + ], + [ + 87.21176950300014, + 74.49911258800012 + ], + [ + 87.33627362300007, + 74.3960708350001 + ], + [ + 87.12223854000018, + 74.32959982800014 + ], + [ + 86.77559655200014, + 74.36154560800014 + ], + [ + 86.70291857800004, + 74.44532222700008 + ], + [ + 86.47132860500005, + 74.49442827800016 + ], + [ + 86.15618161800006, + 74.45794218800017 + ], + [ + 85.88226353599998, + 74.35360358700018 + ], + [ + 86.45172853000008, + 74.30645035300012 + ], + [ + 86.68855249900008, + 74.26510359800005 + ], + [ + 86.77857950300012, + 74.15317367400013 + ], + [ + 86.94058258100011, + 74.10734042200005 + ], + [ + 87.33280150299998, + 74.09264577200014 + ], + [ + 87.43013752700017, + 74.00649724200014 + ], + [ + 87.04305252100016, + 74.0326286630002 + ], + [ + 87.17236366200012, + 73.87897094300007 + ], + [ + 87.40415161600009, + 73.81509430300008 + ], + [ + 87.38847360100004, + 73.70459835600008 + ], + [ + 87.14312758400018, + 73.59952667300013 + ], + [ + 86.43068660000006, + 73.54682713300019 + ], + [ + 86.09224664000004, + 73.4968061140001 + ], + [ + 86.02047759900012, + 73.54727036800017 + ], + [ + 86.20845753600014, + 73.6139854560002 + ], + [ + 86.72682963300008, + 73.71811836500007 + ], + [ + 87.02268952600008, + 73.80104740700011 + ], + [ + 86.8002626490001, + 73.88355618000008 + ], + [ + 86.07704957900006, + 73.85158022500019 + ], + [ + 85.57969661300012, + 73.78761859200017 + ], + [ + 85.51336659000009, + 73.7246111550001 + ], + [ + 85.0593336460002, + 73.69142921200006 + ], + [ + 84.78543853100012, + 73.75051492400013 + ], + [ + 83.14119763200006, + 73.6558889370001 + ], + [ + 81.91783857800016, + 73.6573842680001 + ], + [ + 81.4992525360002, + 73.6418274560001 + ], + [ + 81.14234958900016, + 73.60436386900017 + ], + [ + 80.54680665100011, + 73.59821473800002 + ], + [ + 80.55959358000001, + 73.48681840600005 + ], + [ + 80.47003160300017, + 73.347940161 + ], + [ + 80.59535949600007, + 73.23546004900004 + ], + [ + 80.56372049300018, + 73.15398878900004 + ], + [ + 80.38948050800013, + 73.07837614300013 + ], + [ + 80.62127650800005, + 73.05801968499998 + ], + [ + 80.82272364900001, + 72.92986105600016 + ], + [ + 80.64222757800019, + 72.77160217400018 + ], + [ + 80.65025358600008, + 72.67497810900005 + ], + [ + 80.75773657400009, + 72.62843541200016 + ], + [ + 80.69320664800006, + 72.52914808100007 + ], + [ + 80.8385396290002, + 72.45259766800012 + ], + [ + 81.52454358700015, + 72.34948835700004 + ], + [ + 82.0813825850002, + 72.31222425900006 + ], + [ + 82.1911315370001, + 72.32512585200004 + ], + [ + 82.3742216390001, + 72.19560080500008 + ], + [ + 82.2303776190002, + 72.10157798000006 + ], + [ + 82.74401058800015, + 71.9074064990001 + ], + [ + 83.05760155899998, + 71.91098456500004 + ], + [ + 83.43556252800016, + 71.84535292200002 + ], + [ + 83.74826853700011, + 71.63376921100013 + ], + [ + 83.67214157800004, + 71.53892244400015 + ], + [ + 83.44116264500013, + 71.48320894000005 + ], + [ + 83.36984254000004, + 71.35519531700015 + ], + [ + 83.18456258100014, + 71.273098431 + ], + [ + 83.26275651800017, + 71.18702634400006 + ], + [ + 83.11839265300011, + 71.12670480400004 + ], + [ + 83.33740960300014, + 71.04869728100016 + ], + [ + 83.52433057100006, + 70.93476860900006 + ], + [ + 83.80812856900013, + 70.5036672120001 + ], + [ + 83.50734766100015, + 70.35232977100003 + ], + [ + 83.33117665300011, + 70.37048882900007 + ], + [ + 82.95700849400009, + 70.36013516600002 + ], + [ + 83.12021655500007, + 70.22996957400017 + ], + [ + 83.15218362500019, + 70.14385172200002 + ], + [ + 83.41226150800009, + 70.07020161500009 + ], + [ + 83.68866750600012, + 69.93877018799998 + ], + [ + 83.72396051500004, + 69.87171077200009 + ], + [ + 83.97663851800013, + 69.75292260700019 + ], + [ + 84.4544064970001, + 69.7190764820001 + ], + [ + 84.46040358100015, + 69.59801380500011 + ], + [ + 84.24297366000008, + 69.59454252300014 + ], + [ + 83.8983996550001, + 69.71651212300009 + ], + [ + 83.48384061400003, + 69.75074783900004 + ], + [ + 83.33696754200008, + 69.84901995400008 + ], + [ + 83.39337154800012, + 69.89084699199998 + ], + [ + 83.29210659000017, + 70.00043450900017 + ], + [ + 83.13076752700016, + 70.07154339000016 + ], + [ + 82.71777355500012, + 70.13463498100015 + ], + [ + 82.61466256700015, + 70.22904639200016 + ], + [ + 82.67252351500014, + 70.30856500400012 + ], + [ + 82.94819660000019, + 70.50027220600003 + ], + [ + 82.93509652300014, + 70.60296208700004 + ], + [ + 83.08130658700009, + 70.88632674100018 + ], + [ + 82.80333753100001, + 70.99953037800003 + ], + [ + 82.50126664900012, + 70.93199855800015 + ], + [ + 82.40524256000003, + 70.66329854600014 + ], + [ + 82.29525757300001, + 70.70182881400012 + ], + [ + 82.30108651700004, + 70.862071357 + ], + [ + 82.11139650400008, + 71.01231797700018 + ], + [ + 82.29955262800007, + 71.13721839300018 + ], + [ + 82.19286357400017, + 71.26887948400008 + ], + [ + 82.728469534, + 71.39015539700011 + ], + [ + 83.00845359900012, + 71.41026039800016 + ], + [ + 82.96634660500013, + 71.55116840500006 + ], + [ + 83.28415652300004, + 71.59624561000004 + ], + [ + 83.41323062300006, + 71.65121899200005 + ], + [ + 83.346610586, + 71.73822214100011 + ], + [ + 83.13577252900018, + 71.73964153300011 + ], + [ + 82.79759961600018, + 71.78570981400003 + ], + [ + 81.98680152500009, + 71.67497045600004 + ], + [ + 81.78132654400008, + 71.6715905370001 + ], + [ + 81.3695836550001, + 71.74605771200015 + ], + [ + 81.13596358500007, + 71.9151047740001 + ], + [ + 80.70802250000008, + 72.08491492400003 + ], + [ + 80.64395156799998, + 72.17645100600004 + ], + [ + 80.00517259400004, + 72.25831085200008 + ], + [ + 79.51924852000019, + 72.39535899200013 + ], + [ + 78.70581063300017, + 72.43099029500019 + ], + [ + 78.12481649900008, + 72.40494168700013 + ], + [ + 77.5310215230001, + 72.19338848600012 + ], + [ + 77.60999262900003, + 72.11081869300006 + ], + [ + 77.86460852900018, + 72.15359942400005 + ], + [ + 78.09024852400012, + 72.14382461600007 + ], + [ + 78.26378661000007, + 72.07134948400005 + ], + [ + 78.21611051200011, + 71.97142026700004 + ], + [ + 77.78061649500012, + 71.87526944400014 + ], + [ + 77.54107662100017, + 71.89828095300015 + ], + [ + 77.28373760900018, + 72.01400318500015 + ], + [ + 76.79743148900019, + 72.09266684300007 + ], + [ + 76.32084653200008, + 72.03406225200007 + ], + [ + 76.0473936460001, + 71.92559556400005 + ], + [ + 76.03724651400006, + 71.79032623100017 + ], + [ + 76.2547305830002, + 71.6018613170001 + ], + [ + 76.499076639, + 71.52357115600006 + ], + [ + 76.92375163100002, + 71.43618629500003 + ], + [ + 77.1729436010001, + 71.41169487700006 + ], + [ + 77.37355054, + 71.33558719600018 + ], + [ + 77.52736651000009, + 71.35331140100004 + ], + [ + 77.92569751600018, + 71.26151698800004 + ], + [ + 78.33936354800005, + 71.28812936300005 + ], + [ + 78.43987262600018, + 71.23479715700017 + ], + [ + 78.34838851100005, + 71.10766061700008 + ], + [ + 78.49548353600017, + 70.94985217900006 + ], + [ + 78.85118854100017, + 70.98114215900011 + ], + [ + 78.96260063000017, + 70.92524626400012 + ], + [ + 78.49031056100011, + 70.91126810000014 + ], + [ + 78.06139365500019, + 70.98480471500011 + ], + [ + 77.97016854100008, + 71.10723364300009 + ], + [ + 77.44082654500016, + 71.18377634500018 + ], + [ + 77.05841059400018, + 71.17370498500014 + ], + [ + 76.66078953500016, + 71.229768686 + ], + [ + 76.08399155000006, + 71.2058946790001 + ], + [ + 75.414039607, + 71.33017014000012 + ], + [ + 75.19715853300016, + 71.42240745200013 + ], + [ + 75.48348250200002, + 71.52882074200011 + ] + ] + ], + [ + [ + [ + 67.02890050600013, + 69.34095709500019 + ], + [ + 67.26525860900017, + 69.40568868900004 + ], + [ + 67.00079363800018, + 69.43702426700014 + ], + [ + 67.02890050600013, + 69.34095709500019 + ] + ] + ], + [ + [ + [ + 83.268760643, + 70.72823616800014 + ], + [ + 83.10431658700003, + 70.74358712100013 + ], + [ + 83.02880050100015, + 70.56668219200003 + ], + [ + 83.108688588, + 70.5625158840001 + ], + [ + 83.268760643, + 70.72823616800014 + ] + ] + ], + [ + [ + [ + 77.389686542, + 72.58101630400012 + ], + [ + 77.20884664500011, + 72.45864789300009 + ], + [ + 76.9278336180002, + 72.39333694200019 + ], + [ + 77.1081234940001, + 72.3104610420001 + ], + [ + 77.88899249100012, + 72.34209484700011 + ], + [ + 77.88789362400007, + 72.38750732800008 + ], + [ + 78.36020649200009, + 72.51295742900004 + ], + [ + 78.1312864900001, + 72.62176693800012 + ], + [ + 77.65985858300019, + 72.64792937200014 + ], + [ + 77.389686542, + 72.58101630400012 + ] + ] + ], + [ + [ + [ + 78.63392659300007, + 72.85448528300003 + ], + [ + 78.81474251700018, + 72.75547321300013 + ], + [ + 79.36711161300002, + 72.73440664100002 + ], + [ + 79.49313352700011, + 72.76558966800008 + ], + [ + 79.44664749200007, + 72.86978326200006 + ], + [ + 79.53806254000006, + 72.9390705880001 + ], + [ + 79.3452526150001, + 73.063712506 + ], + [ + 79.12943252200017, + 73.08835697800004 + ], + [ + 78.63392659300007, + 72.85448528300003 + ] + ] + ], + [ + [ + [ + 74.63510163300003, + 72.90683429200004 + ], + [ + 74.64272363300006, + 73.00814350600012 + ], + [ + 74.76071149300009, + 73.09531529900016 + ], + [ + 74.36402853700014, + 73.14087312200007 + ], + [ + 74.09587050000016, + 73.07330978500016 + ], + [ + 74.15541051100001, + 72.96073864600004 + ], + [ + 74.60134854700004, + 72.85619452100008 + ], + [ + 74.63510163300003, + 72.90683429200004 + ] + ] + ], + [ + [ + [ + 71.61155653900005, + 73.23513986100005 + ], + [ + 71.4400866040001, + 73.36569370200016 + ], + [ + 71.22335858300016, + 73.28934194000004 + ], + [ + 70.92693358300016, + 73.29227258900016 + ], + [ + 71.15181753100018, + 73.47891410400013 + ], + [ + 70.84418458500011, + 73.52592920400008 + ], + [ + 70.53307348500005, + 73.48346128600008 + ], + [ + 70.35077664600004, + 73.49759904200016 + ], + [ + 69.94779955100006, + 73.40517967500011 + ], + [ + 70.01825749400018, + 73.22018520400019 + ], + [ + 69.82692764600006, + 73.08141357700009 + ], + [ + 70.45816056000001, + 73.07614923900007 + ], + [ + 70.76914962000012, + 73.14756439500013 + ], + [ + 71.12420653600014, + 73.12975637100016 + ], + [ + 71.61155653900005, + 73.23513986100005 + ] + ] + ], + [ + [ + [ + 75.97709663600006, + 73.57631684800009 + ], + [ + 75.60184453000011, + 73.56185840000018 + ], + [ + 75.64756060300004, + 73.45561978900014 + ], + [ + 75.87664053200018, + 73.46962075200014 + ], + [ + 75.97709663600006, + 73.57631684800009 + ] + ] + ], + [ + [ + [ + 84.44756351100017, + 74.08900651700003 + ], + [ + 84.22010061900016, + 74.08104907400019 + ], + [ + 84.04187755300018, + 74.01707185100014 + ], + [ + 84.40988165900006, + 73.99424357000004 + ], + [ + 84.44756351100017, + 74.08900651700003 + ] + ] + ], + [ + [ + [ + 83.28497359100015, + 74.11491715900019 + ], + [ + 83.47901163200015, + 74.08806036800019 + ], + [ + 83.70007359900018, + 74.15942992700008 + ], + [ + 83.49208052800003, + 74.18905676900005 + ], + [ + 83.28497359100015, + 74.11491715900019 + ] + ] + ], + [ + [ + [ + 82.41433759600011, + 74.11664215500008 + ], + [ + 82.63529160400003, + 74.08886972500005 + ], + [ + 82.80304751800008, + 74.16085736500003 + ], + [ + 82.62635750100003, + 74.21074125600018 + ], + [ + 82.41433759600011, + 74.11664215500008 + ] + ] + ], + [ + [ + [ + 86.23406961500001, + 74.54684484500001 + ], + [ + 85.99034851300019, + 74.62784370100007 + ], + [ + 85.75227362900017, + 74.59175457900011 + ], + [ + 85.81273665500015, + 74.49625922100017 + ], + [ + 86.23406961500001, + 74.54684484500001 + ] + ] + ], + [ + [ + [ + 85.37860050600005, + 74.5138684260001 + ], + [ + 85.660400594, + 74.59346364900011 + ], + [ + 85.4845965450001, + 74.64893994600004 + ], + [ + 85.17941262400007, + 74.56756004800008 + ], + [ + 85.37860050600005, + 74.5138684260001 + ] + ] + ], + [ + [ + [ + 86.46672057000006, + 74.94848971900018 + ], + [ + 86.33656352700007, + 74.88987674700019 + ], + [ + 86.96322662800009, + 74.85496226400011 + ], + [ + 86.85590356600011, + 74.92965943900003 + ], + [ + 87.20403250400011, + 74.94827665100013 + ], + [ + 87.08669256500013, + 75.0188531140002 + ], + [ + 86.63121055800013, + 75.0162275670001 + ], + [ + 86.46672057000006, + 74.94848971900018 + ] + ] + ], + [ + [ + [ + 81.89087651000006, + 75.33099150100009 + ], + [ + 82.44342062000004, + 75.3488454580002 + ], + [ + 82.25676753900018, + 75.45069714800002 + ], + [ + 81.97869153000005, + 75.46044781600017 + ], + [ + 81.53752849700015, + 75.38676602599998 + ], + [ + 81.89087651000006, + 75.33099150100009 + ] + ] + ], + [ + [ + [ + 82.55593157700014, + 75.98842909500001 + ], + [ + 83.09986864600017, + 75.93595804500018 + ], + [ + 83.2048115830001, + 75.9874832810001 + ], + [ + 82.73857861200014, + 76.02300746300006 + ], + [ + 82.55593157700014, + 75.98842909500001 + ] + ] + ], + [ + [ + [ + 93.08812753300009, + 75.89953347900013 + ], + [ + 93.34709950700005, + 75.98215674900013 + ], + [ + 92.94132956200008, + 75.98578125100016 + ], + [ + 93.08812753300009, + 75.89953347900013 + ] + ] + ], + [ + [ + [ + 96.49240163600018, + 76.17689501400014 + ], + [ + 96.70072964900004, + 76.2658742810001 + ], + [ + 96.53556860500004, + 76.31046382700015 + ], + [ + 96.16452756700005, + 76.26214450200013 + ], + [ + 96.02282763800014, + 76.31399663100007 + ], + [ + 95.53154752900008, + 76.29528889400018 + ], + [ + 95.53559867000013, + 76.21984355100017 + ], + [ + 95.89050253300019, + 76.16447404000019 + ], + [ + 96.287712543, + 76.14529943000014 + ], + [ + 96.49240163600018, + 76.17689501400014 + ] + ] + ], + [ + [ + [ + 96.96067057100004, + 76.16123074600006 + ], + [ + 96.94509163100014, + 76.24728053700017 + ], + [ + 97.21588862700008, + 76.32216865100014 + ], + [ + 97.03349254600005, + 76.38844184500016 + ], + [ + 96.82337164400013, + 76.21708137900009 + ], + [ + 96.96067057100004, + 76.16123074600006 + ] + ] + ], + [ + [ + [ + 95.94716654500007, + 76.68685453 + ], + [ + 96.08287861000014, + 76.61332579300017 + ], + [ + 96.49662058300015, + 76.63347655900014 + ], + [ + 96.58171064700008, + 76.7208226960002 + ], + [ + 95.94716654500007, + 76.68685453 + ] + ] + ], + [ + [ + [ + 96.62805955400012, + 77.2030250360001 + ], + [ + 96.1998366700002, + 77.11118385300011 + ], + [ + 95.62979852200016, + 77.06677803800011 + ], + [ + 96.23104853000007, + 76.97859220300006 + ], + [ + 96.41429855900003, + 77.07813853500011 + ], + [ + 96.6722335250002, + 77.13525667900007 + ], + [ + 96.62805955400012, + 77.2030250360001 + ] + ] + ], + [ + [ + [ + 89.61033659499998, + 77.19539599600017 + ], + [ + 89.83215360400015, + 77.31987748400019 + ], + [ + 89.32311257700013, + 77.3045261960001 + ], + [ + 89.28603355200005, + 77.22667072000007 + ], + [ + 89.61033659499998, + 77.19539599600017 + ] + ] + ], + [ + [ + [ + 97.7699126460002, + 79.72517172300019 + ], + [ + 97.6563876460001, + 79.7746440630001 + ], + [ + 97.93798858000008, + 79.9022618910002 + ], + [ + 98.15033755900009, + 80.06870184600007 + ], + [ + 97.72705061000005, + 80.1953884450001 + ], + [ + 96.74944258800008, + 80.19461848300017 + ], + [ + 96.56915254400013, + 80.11734974100006 + ], + [ + 95.87029259100007, + 80.12035633000005 + ], + [ + 95.51934062800018, + 80.07990208000001 + ], + [ + 95.13777963100006, + 80.11783790300012 + ], + [ + 94.56773360400018, + 79.90030086100012 + ], + [ + 94.82745358000005, + 79.83600395200011 + ], + [ + 94.344436518, + 79.78851443600013 + ], + [ + 93.7208326450002, + 79.58979359300008 + ], + [ + 94.05679357300005, + 79.58886974000012 + ], + [ + 94.17839856000018, + 79.5153636340001 + ], + [ + 94.60759760100012, + 79.45075324200013 + ], + [ + 94.5331575830001, + 79.3306427490001 + ], + [ + 94.9294665380001, + 79.09955619200014 + ], + [ + 95.28624761200007, + 79.05111348600019 + ], + [ + 95.74619264700004, + 79.100853208 + ], + [ + 95.94570960300013, + 78.99920737700006 + ], + [ + 96.49517051400016, + 79.03101636400015 + ], + [ + 97.08448754199998, + 78.95445790500008 + ], + [ + 97.52455154100011, + 78.84333515800012 + ], + [ + 98.48312359100015, + 78.79213078200002 + ], + [ + 98.79675261500017, + 78.81868230499998 + ], + [ + 99.49446860600011, + 78.81710315400016 + ], + [ + 100.14649953700007, + 78.93961724200005 + ], + [ + 99.94204765200016, + 79.0939555720002 + ], + [ + 99.48075061600014, + 79.21553071900013 + ], + [ + 99.64954353800005, + 79.30194713500009 + ], + [ + 99.97651655200019, + 79.3632071130001 + ], + [ + 99.97453255599999, + 79.750884552 + ], + [ + 100.27580263100003, + 79.78310559400006 + ], + [ + 99.53588861900016, + 80.0089596630001 + ], + [ + 98.95200356700019, + 80.0721955910002 + ], + [ + 98.48416160600016, + 80.02011379700019 + ], + [ + 98.6347126570002, + 79.97050416200017 + ], + [ + 97.7699126460002, + 79.72517172300019 + ] + ] + ], + [ + [ + [ + 76.14088455600006, + 79.63956365800004 + ], + [ + 76.87424459100009, + 79.52223830300005 + ], + [ + 77.46386755800012, + 79.53466715700006 + ], + [ + 77.617843623, + 79.5872840510001 + ], + [ + 76.76550264000008, + 79.6784235020001 + ], + [ + 76.14088455600006, + 79.63956365800004 + ] + ] + ], + [ + [ + [ + 92.46734651600002, + 79.65351114500004 + ], + [ + 93.13110356200008, + 79.67531716900004 + ], + [ + 93.54810358100002, + 79.73425938200006 + ], + [ + 94.05137651700005, + 79.88786429600009 + ], + [ + 93.58453351100013, + 79.99104401600005 + ], + [ + 92.70274355000004, + 80.07410331200003 + ], + [ + 91.7555775940001, + 80.1210496810001 + ], + [ + 91.12626665000016, + 80.09436069500003 + ], + [ + 91.52593959800004, + 79.96341608900019 + ], + [ + 91.50950654200017, + 79.87255843800006 + ], + [ + 91.7897715680001, + 79.82897639700013 + ], + [ + 92.38503253900018, + 79.79973881000012 + ], + [ + 92.19103959200004, + 79.6976961800001 + ], + [ + 92.46734651600002, + 79.65351114500004 + ] + ] + ], + [ + [ + [ + 97.5733796470002, + 80.32721046900014 + ], + [ + 97.30506151500015, + 80.36472686200017 + ], + [ + 97.15471665900003, + 80.5288089870001 + ], + [ + 97.41216262400013, + 80.66372141800008 + ], + [ + 97.9258266060001, + 80.67431899300004 + ], + [ + 97.95879363700016, + 80.81097871600019 + ], + [ + 97.50965857500012, + 80.84403241600018 + ], + [ + 96.84224651700015, + 80.953742477 + ], + [ + 96.42935161900016, + 81.16198633500005 + ], + [ + 96.11704257700006, + 81.26670044600007 + ], + [ + 95.48928865500011, + 81.28117414800016 + ], + [ + 95.29309059800016, + 81.16719015600012 + ], + [ + 94.87071962300007, + 81.07876644200019 + ], + [ + 94.07000764400016, + 81.01620156900015 + ], + [ + 93.43308257900014, + 80.99442588800008 + ], + [ + 93.55821953200012, + 80.90649838200017 + ], + [ + 93.0965726350002, + 80.85827679000016 + ], + [ + 92.78063154700016, + 80.76541318200003 + ], + [ + 93.58773757700004, + 80.73753363100013 + ], + [ + 93.07731655400005, + 80.58001302700012 + ], + [ + 92.23079663500016, + 80.46836440100003 + ], + [ + 92.65818065900015, + 80.41265911000016 + ], + [ + 92.00068657100013, + 80.38004864500016 + ], + [ + 92.00071758400009, + 80.28965551900018 + ], + [ + 92.36528058400006, + 80.27264947600008 + ], + [ + 92.50892662300004, + 80.18552277700007 + ], + [ + 93.03320360300012, + 80.13885066400013 + ], + [ + 93.73162065700018, + 80.02626343200018 + ], + [ + 94.38762662099998, + 80.07022735200013 + ], + [ + 94.810752638, + 80.15620187400009 + ], + [ + 95.25428054200012, + 80.15543023600003 + ], + [ + 95.94638065800012, + 80.22915108600006 + ], + [ + 97.24120365100015, + 80.22052962800012 + ], + [ + 97.5733796470002, + 80.32721046900014 + ] + ] + ], + [ + [ + [ + 79.24234061400017, + 80.9482188020001 + ], + [ + 79.1030196370001, + 80.88721749000018 + ], + [ + 79.42783364000002, + 80.80471525500019 + ], + [ + 80.3367915290001, + 80.84182680200013 + ], + [ + 80.60626250800016, + 80.88685153600011 + ], + [ + 80.6597675490001, + 80.96830050100016 + ], + [ + 79.70294949600009, + 81.0013697920001 + ], + [ + 79.24234061400017, + 80.9482188020001 + ] + ] + ], + [ + [ + [ + 91.97975159400016, + 81.16413897500018 + ], + [ + 91.59179654700017, + 81.23502741300018 + ], + [ + 90.82259365000016, + 81.21313857500007 + ], + [ + 90.34665661400015, + 81.15384616600005 + ], + [ + 90.3817516430002, + 81.1076767990001 + ], + [ + 91.20868657400018, + 81.01612579700009 + ], + [ + 91.65898856500002, + 81.05205516000007 + ], + [ + 91.97975159400016, + 81.16413897500018 + ] + ] + ], + [ + [ + [ + 158.12830167700008, + -83.23458206899994 + ], + [ + 157.90319334000003, + -83.16618252699999 + ], + [ + 156.84174927300035, + -83.19588448299993 + ], + [ + 156.36542162000023, + -83.30535989399988 + ], + [ + 158.12830167700008, + -83.23458206899994 + ] + ] + ], + [ + [ + [ + 157.03582510700016, + -82.9793501669999 + ], + [ + 156.51436725500014, + -83.00210855199998 + ], + [ + 156.8320792300001, + -83.10408148499994 + ], + [ + 157.2458201920001, + -83.09501259699988 + ], + [ + 157.42318469000008, + -82.98129158399996 + ], + [ + 157.03582510700016, + -82.9793501669999 + ] + ] + ], + [ + [ + [ + 155.30345652900007, + -79.8887866849999 + ], + [ + 155.34161800700008, + -80.04999455199999 + ], + [ + 156.05979920200002, + -80.107750749 + ], + [ + 155.6941278060001, + -79.97454381499989 + ], + [ + 155.30345652900007, + -79.8887866849999 + ] + ] + ], + [ + [ + [ + 156.28202617300008, + -79.79285358599992 + ], + [ + 156.00775577700017, + -79.80732511599996 + ], + [ + 156.3893843180001, + -79.91184648299998 + ], + [ + 155.9101333880002, + -79.94407709299998 + ], + [ + 156.38963040800013, + -80.00812055799992 + ], + [ + 157.0114149840001, + -79.92154200199997 + ], + [ + 157.13631712200004, + -79.8388788019999 + ], + [ + 156.45296627100004, + -79.83001543899991 + ], + [ + 156.28202617300008, + -79.79285358599992 + ] + ] + ], + [ + [ + [ + 100.77231355700007, + -66.21579000299988 + ], + [ + 100.48539754600006, + -66.27106381499988 + ], + [ + 100.534086866, + -66.32625548299995 + ], + [ + 100.82305108100007, + -66.34901487399998 + ], + [ + 100.96484745800012, + -66.33100483999993 + ], + [ + 101.089168061, + -66.25630461899993 + ], + [ + 100.98405694400003, + -66.21834933399992 + ], + [ + 100.77231355700007, + -66.21579000299988 + ] + ] + ], + [ + [ + [ + 134.1862026330001, + 50.54760966500004 + ], + [ + 133.98699966400034, + 50.53872048900013 + ], + [ + 133.90910362000022, + 50.45679928800007 + ], + [ + 133.941406636, + 50.33546738400014 + ], + [ + 134.0287016430001, + 50.23228917300003 + ], + [ + 134.18049656900018, + 50.1864855930001 + ], + [ + 134.32910167800014, + 50.22139806300004 + ], + [ + 134.4920956640002, + 50.21264366800017 + ], + [ + 134.77969368200024, + 50.1314738210001 + ], + [ + 135.00100660400005, + 50.33442149000007 + ], + [ + 135.09550468300006, + 50.36382604400012 + ], + [ + 135.03759763400012, + 50.534459465 + ], + [ + 134.968994607, + 50.59821238800015 + ], + [ + 134.82949861500003, + 50.64461091600015 + ], + [ + 134.5296936960001, + 50.554586594000114 + ], + [ + 134.1862026330001, + 50.54760966500004 + ] + ] + ], + [ + [ + [ + 133.31689466700004, + 51.03604696800011 + ], + [ + 133.86669957200013, + 51.096407903000056 + ], + [ + 134.84840366300023, + 51.26789946300016 + ], + [ + 135.048797701, + 51.29667118400016 + ], + [ + 135.05000268300023, + 51.5525344780001 + ], + [ + 134.8334956100001, + 51.60014603500014 + ], + [ + 134.62739567500012, + 51.610736235000104 + ], + [ + 134.40559358500002, + 51.58346487400007 + ], + [ + 134.2089995660001, + 51.52525507100012 + ], + [ + 133.99259961300015, + 51.419464054 + ], + [ + 133.7664945900001, + 51.27066180300011 + ], + [ + 133.55830370500007, + 51.17046000600004 + ], + [ + 133.27969360200018, + 51.06988739400015 + ], + [ + 133.31689466700004, + 51.03604696800011 + ] + ] + ], + [ + [ + [ + 115.35990158400023, + 53.149564811000175 + ], + [ + 115.11489855400032, + 52.99296470799999 + ], + [ + 115.11039763900033, + 52.90279085200007 + ], + [ + 115.2969965740001, + 52.89421147100012 + ], + [ + 115.4992976630001, + 53.03442327700009 + ], + [ + 115.54370163300007, + 53.114744038000026 + ], + [ + 115.46430154100017, + 53.16027721800003 + ], + [ + 115.35990158400023, + 53.149564811000175 + ] + ] + ], + [ + [ + [ + 135.1782986080001, + 52.90432876400013 + ], + [ + 135.26539563500012, + 53.00162069900006 + ], + [ + 135.42300458400007, + 53.096150630000125 + ], + [ + 135.45080568000014, + 53.16261526599999 + ], + [ + 135.3471986510001, + 53.25100796800007 + ], + [ + 135.12030070000014, + 53.38506276300012 + ], + [ + 134.9826046380001, + 53.556815670000105 + ], + [ + 135.13049359700017, + 53.74443082700009 + ], + [ + 135.13859554400005, + 53.81838050300007 + ], + [ + 135.0690006020002, + 53.888511216000154 + ], + [ + 135.11259454600008, + 53.98924442600003 + ], + [ + 135.5796965520001, + 54.208770492999975 + ], + [ + 135.58450357400022, + 54.27126797500006 + ], + [ + 135.41639662600005, + 54.307672089 + ], + [ + 134.9579926880001, + 54.21578564300012 + ], + [ + 134.55589267600033, + 54.25732082400009 + ], + [ + 134.51370270200005, + 54.169599513000094 + ], + [ + 134.6520996580001, + 54.02995549700006 + ], + [ + 134.5455016310001, + 53.88335701600005 + ], + [ + 134.44270362300006, + 53.79918007700019 + ], + [ + 134.48319961500033, + 53.70561909400004 + ], + [ + 134.61839267200014, + 53.625356001 + ], + [ + 134.6235966610002, + 53.53446499000012 + ], + [ + 134.44279465000022, + 53.375361548000114 + ], + [ + 134.39050263900015, + 53.253308129 + ], + [ + 134.56289659400022, + 53.04665364800013 + ], + [ + 134.56179755900018, + 52.96579191900014 + ], + [ + 134.35780366100005, + 52.79917762100018 + ], + [ + 134.1876066020002, + 52.78122928400006 + ], + [ + 134.0522006440001, + 52.89070934500006 + ], + [ + 133.94389354700002, + 52.88872953900005 + ], + [ + 133.9402006480001, + 52.74706850200016 + ], + [ + 133.86929360300007, + 52.69451564600007 + ], + [ + 133.74510162600018, + 52.67801704300018 + ], + [ + 133.60029569900018, + 52.70143557700004 + ], + [ + 133.3764956990001, + 52.83853836800006 + ], + [ + 133.21440159300005, + 52.766217966000056 + ], + [ + 133.19740259100013, + 52.67595727400004 + ], + [ + 133.23210165800003, + 52.5763033180001 + ], + [ + 133.34919768400005, + 52.486351415000115 + ], + [ + 133.53390465500013, + 52.4243803170001 + ], + [ + 133.69659454600003, + 52.412126980000096 + ], + [ + 133.75900267700013, + 52.36928020000016 + ], + [ + 133.51229862300033, + 52.217108256000074 + ], + [ + 133.41580162800005, + 52.04792406700017 + ], + [ + 133.50019867600008, + 52.003104354000186 + ], + [ + 133.63099659800002, + 51.991602036000074 + ], + [ + 134.1269985690002, + 52.192506700000024 + ], + [ + 134.27720663300022, + 52.20451595600019 + ], + [ + 134.36700464400008, + 52.14722581500007 + ], + [ + 134.32659867400014, + 51.99679412200015 + ], + [ + 134.43200663800008, + 51.9719218300001 + ], + [ + 134.6333005580001, + 52.02473385500008 + ], + [ + 135.06790156700004, + 52.08659381000007 + ], + [ + 135.09970066400012, + 52.169626284000174 + ], + [ + 134.9900965510002, + 52.33218541700006 + ], + [ + 135.06779461400004, + 52.406881753000164 + ], + [ + 135.30830360300013, + 52.5509846060001 + ], + [ + 135.3538056030003, + 52.765416991000166 + ], + [ + 135.1782986080001, + 52.90432876400013 + ] + ] + ], + [ + [ + [ + 115.32129654900018, + 53.59299548500019 + ], + [ + 115.57240261100014, + 53.70344784600013 + ], + [ + 115.71980256900008, + 53.83445598700001 + ], + [ + 115.81079868900008, + 53.96322381300007 + ], + [ + 115.70860267000012, + 54.00457593200008 + ], + [ + 115.55039961200009, + 54.016486113999974 + ], + [ + 115.41500052700019, + 53.98361044600017 + ], + [ + 115.06659666300004, + 53.860213576000035 + ], + [ + 114.9204025250001, + 53.839251106 + ], + [ + 114.79830166500017, + 53.724559513000145 + ], + [ + 114.36450163000018, + 53.26923827200011 + ], + [ + 114.38600154700009, + 53.20599698000012 + ], + [ + 114.51989758900015, + 53.17222528600007 + ], + [ + 114.71029654300003, + 53.18324564500017 + ], + [ + 114.88670358700006, + 53.233246547000135 + ], + [ + 115.05539659700003, + 53.30702020300009 + ], + [ + 115.2279965790002, + 53.51974385400018 + ], + [ + 115.32129654900018, + 53.59299548500019 + ] + ] + ], + [ + [ + [ + 117.57800261200009, + 53.53448426800014 + ], + [ + 117.9196015440001, + 53.66472798000012 + ], + [ + 117.99490355600005, + 53.755020020000075 + ], + [ + 117.98500067300006, + 53.84431310500008 + ], + [ + 117.60209656000018, + 53.952885741000046 + ], + [ + 117.3764035910001, + 54.08482779400009 + ], + [ + 117.22660054100004, + 54.06299226600015 + ], + [ + 117.11789664400021, + 53.99322348300018 + ], + [ + 117.0451965420001, + 53.87568187500011 + ], + [ + 117.02729765800007, + 53.63169640800015 + ], + [ + 117.20909862400015, + 53.54552424100012 + ], + [ + 117.38680268300004, + 53.509062459 + ], + [ + 117.57800261200009, + 53.53448426800014 + ] + ] + ], + [ + [ + [ + 116.31220262900001, + 53.64142746200008 + ], + [ + 116.40599864000023, + 53.683516351000094 + ], + [ + 116.57180056400011, + 53.91208263700014 + ], + [ + 116.78289762200018, + 54.04986486400003 + ], + [ + 116.91210164300003, + 54.181123959000104 + ], + [ + 116.99310267900023, + 54.31644224200011 + ], + [ + 116.88379662600005, + 54.337374704000126 + ], + [ + 116.67389667100008, + 54.237201406000054 + ], + [ + 116.40689868900006, + 54.07392528500014 + ], + [ + 116.27189657100018, + 53.94300548900003 + ], + [ + 116.13880167200011, + 53.675554381000154 + ], + [ + 116.31220262900001, + 53.64142746200008 + ] + ] + ], + [ + [ + [ + 109.50969660100014, + 53.366271541000174 + ], + [ + 109.2464986390001, + 53.12431114200007 + ], + [ + 109.255897602, + 53.026954163000084 + ], + [ + 109.37940259800018, + 52.992854570000134 + ], + [ + 109.7632977880001, + 52.99622275400009 + ], + [ + 109.91249868200003, + 53.07040511100007 + ], + [ + 110.26349657700018, + 53.19432769400004 + ], + [ + 110.49030266300002, + 53.22619652800006 + ], + [ + 110.63169866400006, + 53.40112316000017 + ], + [ + 110.84210153300012, + 53.53901636300003 + ], + [ + 111.24469758700008, + 53.75209104800001 + ], + [ + 112.03869666700018, + 54.225700094 + ], + [ + 112.31310257500013, + 54.451535555000135 + ], + [ + 112.45130155100014, + 54.65210226100004 + ], + [ + 112.40769956100007, + 54.77336325400006 + ], + [ + 112.27259853700002, + 54.94970994800008 + ], + [ + 112.50450165800021, + 55.21820577600005 + ], + [ + 112.4245986520001, + 55.28344648700016 + ], + [ + 112.06909967400009, + 55.36157068600011 + ], + [ + 112.07299759400007, + 55.42858031400016 + ], + [ + 112.16960154300011, + 55.52200198900016 + ], + [ + 112.18229660600002, + 55.61414441900013 + ], + [ + 111.92970258900016, + 55.60520595700007 + ], + [ + 111.62779968000018, + 55.46310118200006 + ], + [ + 111.60739863100014, + 55.34204990400019 + ], + [ + 111.76940154100015, + 55.20105522900002 + ], + [ + 111.778701598, + 55.0994816490001 + ], + [ + 111.65319852300019, + 54.960207946000196 + ], + [ + 111.62719752400011, + 54.813845332000085 + ], + [ + 111.67060052700009, + 54.67841305500008 + ], + [ + 111.63899957900003, + 54.55507703800009 + ], + [ + 111.47930152499998, + 54.54672966800007 + ], + [ + 111.42800159500001, + 54.59336976200012 + ], + [ + 111.29479957500007, + 54.60796919400019 + ], + [ + 111.18959763700013, + 54.57857134500006 + ], + [ + 111.05969959600009, + 54.38013464800014 + ], + [ + 111.01609760600002, + 54.23556106800004 + ], + [ + 110.66660258500008, + 53.88534905900008 + ], + [ + 110.43250256700014, + 53.753440870000134 + ], + [ + 110.24620052000006, + 53.66858918700012 + ], + [ + 110.00150259100013, + 53.68563764300012 + ], + [ + 109.50969660100014, + 53.366271541000174 + ] + ] + ], + [ + [ + [ + 114.09300256600022, + 54.24314149300011 + ], + [ + 114.38330056300015, + 54.21536956600005 + ], + [ + 114.66300165500013, + 54.31257013800018 + ], + [ + 114.73110160100009, + 54.38601287700004 + ], + [ + 114.82029762300022, + 54.562039214000094 + ], + [ + 114.56220256300014, + 54.582169696000165 + ], + [ + 114.22689860800006, + 54.49951742500019 + ], + [ + 114.119796661, + 54.420032675000186 + ], + [ + 114.05419955100012, + 54.319509348000054 + ], + [ + 114.09300256600022, + 54.24314149300011 + ] + ] + ], + [ + [ + [ + 112.94239759400011, + 54.70149262500007 + ], + [ + 112.96109762000015, + 54.617021481000165 + ], + [ + 113.0615996570001, + 54.58941786300011 + ], + [ + 113.22940066400008, + 54.59853100300006 + ], + [ + 113.3142015520001, + 54.670389730000124 + ], + [ + 113.44219958400015, + 54.714271843000176 + ], + [ + 113.5615005530002, + 54.86043563800007 + ], + [ + 113.48339865000014, + 54.91910694900008 + ], + [ + 113.30069763600011, + 54.92350912400008 + ], + [ + 113.12000257900002, + 54.844726107000156 + ], + [ + 112.94239759400011, + 54.70149262500007 + ] + ] + ], + [ + [ + [ + 118.07460053600005, + 54.69032239799998 + ], + [ + 118.09179668000002, + 54.74879187300013 + ], + [ + 117.84329957000023, + 54.79284497600014 + ], + [ + 117.96199754500014, + 55.01760839299999 + ], + [ + 117.84909867400006, + 55.062550649000116 + ], + [ + 117.70770267300009, + 55.03575990700011 + ], + [ + 117.51370268500011, + 54.86099253200018 + ], + [ + 117.42099766300021, + 54.64797015000016 + ], + [ + 117.48000357900003, + 54.54724884300015 + ], + [ + 117.81169862200034, + 54.55839895300005 + ], + [ + 118.0115966190001, + 54.64003198500018 + ], + [ + 118.07460053600005, + 54.69032239799998 + ] + ] + ], + [ + [ + [ + 114.15119962900019, + 54.7993228470001 + ], + [ + 114.2554016050002, + 54.781499568000015 + ], + [ + 114.3908006900001, + 54.83511675800008 + ], + [ + 114.49220260800007, + 54.80993919700006 + ], + [ + 114.65820368600009, + 54.92675610600014 + ], + [ + 114.68579858700002, + 55.02492160300005 + ], + [ + 114.53170065000018, + 55.04548023200016 + ], + [ + 114.25219753900012, + 54.99272889200017 + ], + [ + 114.16609963500002, + 54.92514627700007 + ], + [ + 114.15119962900019, + 54.7993228470001 + ] + ] + ], + [ + [ + [ + 112.80010255000002, + 55.07445697500009 + ], + [ + 112.73370362700018, + 54.9927977910001 + ], + [ + 112.7139965990001, + 54.88265706900006 + ], + [ + 112.8164975520001, + 54.84809429100011 + ], + [ + 113.00540167800011, + 54.95245988200003 + ], + [ + 113.09909861500023, + 55.07186294300004 + ], + [ + 113.09140067500027, + 55.143981676000124 + ], + [ + 112.98570252900015, + 55.1608432160001 + ], + [ + 112.80010255000002, + 55.07445697500009 + ] + ] + ], + [ + [ + [ + 135.885803656, + 55.74855896500003 + ], + [ + 136.24079854600018, + 55.86520438000014 + ], + [ + 136.2613065490001, + 56.05245743800009 + ], + [ + 136.14540058600016, + 56.10367874500008 + ], + [ + 135.70860267900014, + 56.018127509000124 + ], + [ + 135.08779869700004, + 55.85837195500011 + ], + [ + 134.4001005880002, + 55.77840994000019 + ], + [ + 133.77569557200002, + 55.71780023000014 + ], + [ + 133.46820059300012, + 55.762787413000126 + ], + [ + 133.31530763800015, + 55.84342165700019 + ], + [ + 133.19839467300028, + 55.94618446100009 + ], + [ + 133.15580756400027, + 56.06387878700019 + ], + [ + 133.24409465300005, + 56.19223154100018 + ], + [ + 133.51170367600002, + 56.40063851100007 + ], + [ + 133.39520259800008, + 56.48213072700008 + ], + [ + 133.27859456600004, + 56.50100643700006 + ], + [ + 133.0366056690001, + 56.41014878600009 + ], + [ + 132.8912966600002, + 56.302365558000076 + ], + [ + 132.58760069400023, + 55.95496584600005 + ], + [ + 132.32200668100006, + 55.920674809000104 + ], + [ + 132.13189656700013, + 55.95576380300008 + ], + [ + 132.03660555900012, + 56.01272621100014 + ], + [ + 131.99530054600007, + 56.10361789299998 + ], + [ + 132.14329562000012, + 56.26833369000019 + ], + [ + 132.11439565600006, + 56.32295419400009 + ], + [ + 131.86390667000023, + 56.369765615 + ], + [ + 131.25630167000008, + 56.018066489000034 + ], + [ + 131.03759770000022, + 55.98081546700007 + ], + [ + 130.9344025570001, + 55.997416832000056 + ], + [ + 130.85910054500005, + 56.10442305800012 + ], + [ + 130.9293056900002, + 56.19653145700016 + ], + [ + 131.06759669900032, + 56.29338535400012 + ], + [ + 131.1029056340003, + 56.38707692700007 + ], + [ + 130.9790036700001, + 56.40871849800004 + ], + [ + 130.7731935810001, + 56.395679274000145 + ], + [ + 130.5487976280001, + 56.32630729100015 + ], + [ + 130.41259756800002, + 56.25683120400004 + ], + [ + 130.34860257600008, + 56.143070002000115 + ], + [ + 130.4483036380003, + 56.04139818699997 + ], + [ + 130.45249961800005, + 55.91303353100005 + ], + [ + 130.19880656600003, + 55.75732107100009 + ], + [ + 130.02259867700013, + 55.7201112890001 + ], + [ + 129.76879867200023, + 55.723129444000165 + ], + [ + 129.61520364900002, + 55.764531520000105 + ], + [ + 129.49110454300012, + 55.87518337100005 + ], + [ + 129.5265046730001, + 55.95949777300012 + ], + [ + 129.71290562700005, + 56.14234899100006 + ], + [ + 129.53320365800005, + 56.19822443400017 + ], + [ + 129.3751065470002, + 56.06480984900014 + ], + [ + 129.31579569700034, + 55.96694509400004 + ], + [ + 129.03169259800018, + 55.82160104900004 + ], + [ + 128.68640160500024, + 55.77816166800005 + ], + [ + 128.54969762500014, + 55.727989272000116 + ], + [ + 128.5068055830002, + 55.61353321000007 + ], + [ + 128.59500164400004, + 55.53445313900011 + ], + [ + 128.71429456700014, + 55.506952450000085 + ], + [ + 128.9261936060002, + 55.500531242000136 + ], + [ + 129.05670168200015, + 55.53878239200009 + ], + [ + 129.42439264100017, + 55.607716170000174 + ], + [ + 129.69920356300008, + 55.59904492300012 + ], + [ + 129.9008025830001, + 55.47067339400007 + ], + [ + 130.26280256500002, + 55.379038069000046 + ], + [ + 130.61650060700003, + 55.45258005000011 + ], + [ + 130.93879668600005, + 55.59256386800007 + ], + [ + 131.15870664500017, + 55.59542494700008 + ], + [ + 131.25750765800024, + 55.558894936000115 + ], + [ + 131.32319663400006, + 55.46153326400014 + ], + [ + 131.35969563100014, + 55.249044642000115 + ], + [ + 131.15750166300006, + 54.97320827800007 + ], + [ + 130.69180261900033, + 54.53891756600012 + ], + [ + 130.23100263000015, + 54.211428562000094 + ], + [ + 130.12449663600012, + 54.02470624600011 + ], + [ + 130.10870362200012, + 53.91092258100008 + ], + [ + 130.19830365200005, + 53.78627865200008 + ], + [ + 130.37130764300014, + 53.66682597000016 + ], + [ + 130.8155976290002, + 53.57713692400017 + ], + [ + 131.21539261800012, + 53.568255962000194 + ], + [ + 131.31010460400023, + 53.60574771200004 + ], + [ + 131.1994016230002, + 53.726428343000066 + ], + [ + 130.92449967400012, + 53.853823213000055 + ], + [ + 130.80439756300007, + 53.942803485000184 + ], + [ + 130.79420466600016, + 54.04820591800012 + ], + [ + 130.88890055800005, + 54.20632046300011 + ], + [ + 131.0003056070001, + 54.33794249500011 + ], + [ + 131.31430058500007, + 54.592274750000115 + ], + [ + 131.46530157600023, + 54.67228169300006 + ], + [ + 131.52310167200028, + 54.65874760100007 + ], + [ + 132.13800060400013, + 54.67822613800013 + ], + [ + 132.36180161000004, + 54.71836086999997 + ], + [ + 132.44119265000006, + 54.814433406000035 + ], + [ + 132.3486026270001, + 54.88482731100004 + ], + [ + 132.17610155100033, + 54.919827960000134 + ], + [ + 131.71960466300015, + 54.94064961300012 + ], + [ + 131.85020460500004, + 55.10094261500018 + ], + [ + 131.95579563100023, + 55.35186913600012 + ], + [ + 132.05670167500034, + 55.42167228500011 + ], + [ + 132.4353026870001, + 55.483002838 + ], + [ + 132.83110068100018, + 55.480343763 + ], + [ + 133.08920261400033, + 55.53174394000001 + ], + [ + 133.25250270800018, + 55.531874027000015 + ], + [ + 133.63020367000001, + 55.40647086500019 + ], + [ + 133.9313045990001, + 55.475060649000056 + ], + [ + 134.41999855600022, + 55.5603440000001 + ], + [ + 134.7171016520001, + 55.59239572700005 + ], + [ + 135.12690765100012, + 55.66246676100013 + ], + [ + 135.4815065800001, + 55.69559757500008 + ], + [ + 135.885803656, + 55.74855896500003 + ] + ] + ], + [ + [ + [ + 110.4486995900001, + 55.91283152700004 + ], + [ + 110.21849866500008, + 55.91294250300018 + ], + [ + 110.13099662500002, + 55.884384689 + ], + [ + 110.01979860900013, + 55.63854682099998 + ], + [ + 110.03130361000018, + 55.50389238500014 + ], + [ + 110.11920161100005, + 55.36894072600012 + ], + [ + 110.1719965370001, + 55.22263477400003 + ], + [ + 110.14689659300006, + 55.12491117000013 + ], + [ + 110.06939667800003, + 55.01710950200004 + ], + [ + 109.786102599, + 54.83658610600014 + ], + [ + 109.65149661000015, + 54.60043101300005 + ], + [ + 109.67629966700008, + 54.3900950310001 + ], + [ + 109.7313005430002, + 54.21026968100006 + ], + [ + 109.90609759000012, + 54.22596714100018 + ], + [ + 110.04900367500017, + 54.344690765000166 + ], + [ + 109.982299651, + 54.460984642000085 + ], + [ + 110.049102581, + 54.64748215600008 + ], + [ + 110.3656005630001, + 54.96559818000014 + ], + [ + 110.43489861800003, + 55.11855215500003 + ], + [ + 110.48030053800017, + 55.348279167000044 + ], + [ + 110.73829652400019, + 55.567794003000074 + ], + [ + 110.799003631, + 55.65838846200006 + ], + [ + 110.79329656100015, + 55.75196922600003 + ], + [ + 110.73079656400012, + 55.836432323999986 + ], + [ + 110.62329865600009, + 55.88442291000007 + ], + [ + 110.4486995900001, + 55.91283152700004 + ] + ] + ], + [ + [ + [ + 113.45749655800012, + 55.20763552500006 + ], + [ + 113.48020162500018, + 55.051018323000164 + ], + [ + 113.59919766000007, + 55.016990479000015 + ], + [ + 113.78269964900028, + 55.00862919500014 + ], + [ + 113.89350153600003, + 55.03213205100019 + ], + [ + 113.98480259000019, + 55.16679453500018 + ], + [ + 113.95520055800012, + 55.23423633300007 + ], + [ + 113.60669661400004, + 55.27121611700005 + ], + [ + 113.45749655800012, + 55.20763552500006 + ] + ] + ], + [ + [ + [ + 114.91799960100025, + 55.38124318100006 + ], + [ + 115.1179966730001, + 55.39500626600011 + ], + [ + 115.21829955500004, + 55.468140215000176 + ], + [ + 115.17479664000007, + 55.542014454000196 + ], + [ + 115.0458985590002, + 55.574806303000116 + ], + [ + 114.99449955500006, + 55.63080680400003 + ], + [ + 115.01869961900002, + 55.725269512000125 + ], + [ + 114.87750260400003, + 55.72580729500015 + ], + [ + 114.75689657200007, + 55.58023442400008 + ], + [ + 114.74269863400002, + 55.502691426000126 + ], + [ + 114.91799960100025, + 55.38124318100006 + ] + ] + ], + [ + [ + [ + 117.14070162300015, + 55.47832171300007 + ], + [ + 117.34580260300004, + 55.507364504000066 + ], + [ + 117.49749761700014, + 55.55564376400008 + ], + [ + 117.64659859800008, + 55.56295295100006 + ], + [ + 118.11489854700017, + 55.62512655600011 + ], + [ + 118.2097015600001, + 55.713027910000164 + ], + [ + 118.21399661500027, + 55.81527975299997 + ], + [ + 118.0798036860001, + 55.86350218300004 + ], + [ + 117.73000356400007, + 55.83110311000013 + ], + [ + 116.94960060100004, + 55.63658696500005 + ], + [ + 116.89209756000014, + 55.57673615300007 + ], + [ + 116.94319967700005, + 55.493383154000014 + ], + [ + 117.14070162300015, + 55.47832171300007 + ] + ] + ], + [ + [ + [ + 113.22200061700005, + 55.652586509000116 + ], + [ + 112.77719866400003, + 55.58242042400008 + ], + [ + 112.58059659900016, + 55.59449371700009 + ], + [ + 112.5090025730002, + 55.52431288000014 + ], + [ + 112.60230254300006, + 55.46832344300003 + ], + [ + 112.95189663700012, + 55.3297016840001 + ], + [ + 113.183196597, + 55.398764375999974 + ], + [ + 113.55909762900012, + 55.44976490400006 + ], + [ + 114.04080158200009, + 55.45609307300009 + ], + [ + 114.22460163100016, + 55.51116368600003 + ], + [ + 114.5752025600001, + 55.803861589000064 + ], + [ + 115.07450063000022, + 55.97019526100007 + ], + [ + 115.15229760000011, + 56.03527503900017 + ], + [ + 115.03230260900023, + 56.092989639999985 + ], + [ + 114.56749757900002, + 55.98546558000015 + ], + [ + 114.10749856500013, + 55.898572233000095 + ], + [ + 113.77480356100011, + 55.767861482000114 + ], + [ + 113.22200061700005, + 55.652586509000116 + ] + ] + ], + [ + [ + [ + 111.14199865300014, + 55.78205992300008 + ], + [ + 111.41899859300014, + 55.73794965500008 + ], + [ + 111.55780056200007, + 55.827643060000185 + ], + [ + 111.52760358300009, + 56.01341620900007 + ], + [ + 111.4121016270002, + 56.077887126000064 + ], + [ + 111.20439957500002, + 56.02514685000011 + ], + [ + 111.10500361500016, + 55.875503392000155 + ], + [ + 111.14199865300014, + 55.78205992300008 + ] + ] + ], + [ + [ + [ + 120.7307966530002, + 56.12976071300017 + ], + [ + 120.75229657000011, + 56.23799488800012 + ], + [ + 120.28269960600016, + 56.344984853000085 + ], + [ + 120.0917965640001, + 56.43655831900003 + ], + [ + 120.09909854300008, + 56.53546142400012 + ], + [ + 120.31860365600005, + 56.73597917900008 + ], + [ + 120.33840154300026, + 56.79422016300009 + ], + [ + 120.1386036260003, + 56.825317862000134 + ], + [ + 120.00080061100005, + 56.80413142800012 + ], + [ + 119.62819668400016, + 56.805779478000034 + ], + [ + 119.491302603, + 56.825180901000124 + ], + [ + 119.20449868700007, + 56.9109956640001 + ], + [ + 119.05549661100008, + 56.91595875700011 + ], + [ + 118.88880167900015, + 56.88569170500011 + ], + [ + 118.63169853400007, + 56.793407956000124 + ], + [ + 118.4988026210001, + 56.665775208000184 + ], + [ + 118.05760153300014, + 56.522441981000156 + ], + [ + 117.76139865300024, + 56.50768966400017 + ], + [ + 117.59880062800016, + 56.464319350000096 + ], + [ + 117.38860361800016, + 56.370757529 + ], + [ + 117.20059954200019, + 56.315767047000065 + ], + [ + 116.67530064000016, + 56.238657729000124 + ], + [ + 116.50350163200017, + 56.18432019800008 + ], + [ + 116.21499652400018, + 55.94641362200014 + ], + [ + 116.30480157600005, + 55.86117201400009 + ], + [ + 116.45010354400017, + 55.85908089700018 + ], + [ + 116.7558976680001, + 56.01088738900006 + ], + [ + 116.90769963500009, + 56.06786890800004 + ], + [ + 117.29329668500009, + 56.06613670400003 + ], + [ + 117.41760265700009, + 56.04735721700007 + ], + [ + 117.66609959900006, + 56.10012666200004 + ], + [ + 117.75589761000015, + 56.18125309200019 + ], + [ + 117.92310367000016, + 56.208356981 + ], + [ + 118.14340154400031, + 56.13536887700002 + ], + [ + 118.57019766000019, + 56.06254757300019 + ], + [ + 118.64459962400008, + 55.9930649480001 + ], + [ + 118.7935026250002, + 55.97243809000014 + ], + [ + 118.98899861500001, + 56.00915518500011 + ], + [ + 119.04620359500029, + 56.0761281 + ], + [ + 119.0904005320001, + 56.37485762100016 + ], + [ + 119.27660367400006, + 56.48524276000006 + ], + [ + 119.4004975900001, + 56.47633950200009 + ], + [ + 119.4393006050002, + 56.38522704100018 + ], + [ + 119.41120161600008, + 55.95348560200017 + ], + [ + 119.57289858700005, + 55.906762526000136 + ], + [ + 119.83010063900008, + 55.881653697 + ], + [ + 120.27020269100024, + 55.95410368300003 + ], + [ + 120.61250268600008, + 56.05489858300001 + ], + [ + 120.7307966530002, + 56.12976071300017 + ] + ] + ], + [ + [ + [ + 114.3174975940002, + 56.33388754900011 + ], + [ + 114.54180168200014, + 56.52310214000016 + ], + [ + 114.83209967800019, + 56.684475904000124 + ], + [ + 114.8531035540002, + 56.79843911 + ], + [ + 114.65789757900006, + 56.92947424100004 + ], + [ + 114.65450257200007, + 57.020224939000116 + ], + [ + 115.02339968700005, + 57.11910876500008 + ], + [ + 115.3935016160001, + 57.15645215500007 + ], + [ + 115.8192976040001, + 57.27618378700015 + ], + [ + 115.94850162400007, + 57.41340995899998 + ], + [ + 115.7966996580002, + 57.49864083799997 + ], + [ + 115.538497645, + 57.499552789 + ], + [ + 115.24780268100005, + 57.41724015300019 + ], + [ + 115.06800063200012, + 57.39937965900015 + ], + [ + 114.73179662800021, + 57.52942287500002 + ], + [ + 114.55919664500016, + 57.62301570900013 + ], + [ + 114.33480052400012, + 57.67342816200011 + ], + [ + 114.0127025930002, + 57.694195836000176 + ], + [ + 113.88079859400023, + 57.567544106000014 + ], + [ + 113.8908005510001, + 57.4537292600001 + ], + [ + 114.18659959100012, + 57.342336952000096 + ], + [ + 114.2499996360001, + 57.25200518100013 + ], + [ + 114.17189756500011, + 57.10372327900018 + ], + [ + 114.04190061700001, + 57.007445386000086 + ], + [ + 113.87400053500005, + 56.99786604400009 + ], + [ + 113.70590163400027, + 57.04858779 + ], + [ + 113.5734026880001, + 57.05688889200013 + ], + [ + 113.08599853900023, + 57.035835395000106 + ], + [ + 112.9539036000001, + 57.077317602 + ], + [ + 112.38420056000007, + 57.175220578000165 + ], + [ + 112.24439963500015, + 57.13474922900008 + ], + [ + 112.26119965200007, + 57.06924951700012 + ], + [ + 112.60769663300027, + 56.941014612000174 + ], + [ + 112.65529662300003, + 56.84216062600018 + ], + [ + 112.61239653400003, + 56.70141723900019 + ], + [ + 112.51979863200006, + 56.59976419999998 + ], + [ + 112.29699658100014, + 56.58347464200011 + ], + [ + 112.14080065300027, + 56.627120049999974 + ], + [ + 112.01940152600002, + 56.85687103300006 + ], + [ + 111.83830262900017, + 56.89874215999998 + ], + [ + 111.68080163900004, + 56.866980112000135 + ], + [ + 111.4399035620001, + 56.709638378000136 + ], + [ + 111.28639956700016, + 56.64357339000014 + ], + [ + 111.14769767700005, + 56.713456670000085 + ], + [ + 111.26219967100013, + 56.888133018000076 + ], + [ + 111.44789855700014, + 57.08882696100011 + ], + [ + 111.37770062000004, + 57.17782969700016 + ], + [ + 111.26860059500007, + 57.140730723000104 + ], + [ + 111.02310152400008, + 56.99048812500007 + ], + [ + 110.75939964100019, + 56.797169084000075 + ], + [ + 110.510696672, + 56.761767110000164 + ], + [ + 110.51540361300016, + 56.83954044300003 + ], + [ + 110.71810166900019, + 57.0206058120001 + ], + [ + 110.96060152800015, + 57.208840559000066 + ], + [ + 111.1015016550001, + 57.34350790399998 + ], + [ + 111.076896579, + 57.413139223000144 + ], + [ + 110.88800066700014, + 57.398257657000045 + ], + [ + 110.6653976030002, + 57.25978425800014 + ], + [ + 110.40360260300008, + 57.021170920000145 + ], + [ + 110.08439659600003, + 56.909984639000186 + ], + [ + 109.764198674, + 56.90954157200002 + ], + [ + 109.57260161100004, + 56.87104231700005 + ], + [ + 109.41780060000008, + 56.762339929 + ], + [ + 109.38159966300015, + 56.483648857000105 + ], + [ + 109.2519986760002, + 56.40249661100012 + ], + [ + 109.04489861200011, + 56.316667096000174 + ], + [ + 109.06369754400015, + 56.20392077500014 + ], + [ + 109.31479656500017, + 56.18188206999997 + ], + [ + 109.64119759800013, + 56.22329235900014 + ], + [ + 110.00740060100014, + 56.38977824700015 + ], + [ + 110.27580255200007, + 56.479753619 + ], + [ + 110.57240256700004, + 56.488112053000066 + ], + [ + 110.81079864500003, + 56.412468729000125 + ], + [ + 111.11029863000016, + 56.266933409000046 + ], + [ + 111.40249663700007, + 56.25894528800018 + ], + [ + 111.69750258100004, + 56.320798201000116 + ], + [ + 111.92440053300004, + 56.34099774900005 + ], + [ + 112.08860067500007, + 56.27818276099998 + ], + [ + 112.15039860300021, + 56.20389361800011 + ], + [ + 112.63310268400016, + 56.242853710000134 + ], + [ + 112.90959954200014, + 56.30780474200003 + ], + [ + 113.21859756500021, + 56.41352887199997 + ], + [ + 113.52130161600007, + 56.49344914600016 + ], + [ + 113.66870157500011, + 56.42667823400012 + ], + [ + 113.56559762800032, + 56.326597137000135 + ], + [ + 113.40859955200006, + 56.259513413000036 + ], + [ + 113.18039653800008, + 56.216032123 + ], + [ + 112.91359754200016, + 56.24370480800002 + ], + [ + 112.76609767100013, + 56.178612960000066 + ], + [ + 112.64530153800001, + 55.975707200000045 + ], + [ + 112.41999866300023, + 55.975486252999985 + ], + [ + 112.29429660200026, + 56.04582735300016 + ], + [ + 112.04779857600033, + 56.058709500000134 + ], + [ + 111.94480158200003, + 55.9205946780001 + ], + [ + 112.04309867500001, + 55.808855527000105 + ], + [ + 112.59500157000002, + 55.69379747700003 + ], + [ + 113.25119763600003, + 55.750210032000155 + ], + [ + 113.34089657300012, + 55.82193297200007 + ], + [ + 113.6057965650001, + 55.86031320400008 + ], + [ + 113.77719860600018, + 55.932733015 + ], + [ + 114.06340053400015, + 56.136909974000105 + ], + [ + 114.3174975940002, + 56.33388754900011 + ] + ] + ], + [ + [ + [ + 124.34490164400006, + 56.11679022100009 + ], + [ + 124.43129760800002, + 56.118510188000016 + ], + [ + 124.65280163800003, + 56.29994654000012 + ], + [ + 124.71829967300027, + 56.43542927700008 + ], + [ + 124.71289854200006, + 56.559064193000154 + ], + [ + 124.64689658700001, + 56.74736666500013 + ], + [ + 124.43969761600033, + 56.93693229000007 + ], + [ + 124.05519859500032, + 56.90346519500008 + ], + [ + 123.90920260500013, + 57.016215707000185 + ], + [ + 123.47869867000009, + 57.17387058800006 + ], + [ + 123.27629867500025, + 57.34383597100003 + ], + [ + 123.09490154900004, + 57.390937406000035 + ], + [ + 122.72530354000014, + 57.38101893200002 + ], + [ + 122.49739858700002, + 57.3115468690001 + ], + [ + 122.27429964900011, + 57.30326454200002 + ], + [ + 122.15609754700006, + 57.325196463000054 + ], + [ + 122.02729753500023, + 57.29128613200015 + ], + [ + 121.92240153700016, + 57.209401644000195 + ], + [ + 121.89679767300004, + 57.121229890000166 + ], + [ + 121.947303669, + 57.053474775000154 + ], + [ + 122.12010163200011, + 56.997591285 + ], + [ + 122.49349966100021, + 56.921973778000165 + ], + [ + 122.77700060400025, + 56.839513285000066 + ], + [ + 123.02020253100022, + 56.74064857000019 + ], + [ + 123.19899757800022, + 56.61918473400016 + ], + [ + 123.43840065900008, + 56.53115111400018 + ], + [ + 123.9507976320001, + 56.46467021600017 + ], + [ + 124.21549964400003, + 56.361678252000104 + ], + [ + 124.31839756300008, + 56.22984248200004 + ], + [ + 124.34490164400006, + 56.11679022100009 + ] + ] + ], + [ + [ + [ + 137.05729666700006, + 57.05266189800011 + ], + [ + 136.95359760500014, + 57.08751083400017 + ], + [ + 136.9210966070001, + 57.155201073000114 + ], + [ + 136.72810362200005, + 57.18918315200011 + ], + [ + 136.55029261000004, + 57.08353965600003 + ], + [ + 136.6038965570001, + 56.932694232000074 + ], + [ + 136.74690255400026, + 56.871451354000044 + ], + [ + 136.89779659300007, + 56.85601289400006 + ], + [ + 137.19410659400023, + 56.885771668000075 + ], + [ + 137.35119670300003, + 56.93210213500004 + ], + [ + 137.59970068600012, + 57.09876421000013 + ], + [ + 137.61030563800023, + 57.20892454600016 + ], + [ + 137.47320569700025, + 57.229471273000115 + ], + [ + 137.18789660900006, + 57.074246640000126 + ], + [ + 137.05729666700006, + 57.05266189800011 + ] + ] + ], + [ + [ + [ + 117.61679858600019, + 56.7620800900001 + ], + [ + 117.72290057200019, + 56.806439469 + ], + [ + 117.81320166500007, + 57.01740576900005 + ], + [ + 117.9694976720001, + 57.168304502000126 + ], + [ + 118.1281966040001, + 57.22030415300014 + ], + [ + 118.33519759400019, + 57.340367707000155 + ], + [ + 118.46060159400008, + 57.450540281000144 + ], + [ + 118.52059959200017, + 57.555916730000035 + ], + [ + 118.43620254400014, + 57.629917032000094 + ], + [ + 118.26750165500005, + 57.63725622700014 + ], + [ + 118.14119760600022, + 57.59540370800016 + ], + [ + 117.8713985600001, + 57.45750933100015 + ], + [ + 117.75240353000004, + 57.43396875600007 + ], + [ + 117.6803966110001, + 57.478819146000035 + ], + [ + 117.84549764100007, + 57.69373784900017 + ], + [ + 117.85530061200006, + 57.77983491500015 + ], + [ + 117.55660260700006, + 57.79049015800007 + ], + [ + 117.00270062800007, + 57.59057472600011 + ], + [ + 116.85179854300009, + 57.57817219100019 + ], + [ + 116.7554016270002, + 57.501032866 + ], + [ + 116.7710035340001, + 57.373667668 + ], + [ + 117.02089656700002, + 57.356405306000056 + ], + [ + 117.37210065700026, + 57.357614479 + ], + [ + 117.50430254800017, + 57.30745365000007 + ], + [ + 117.51979867600016, + 57.2369826310001 + ], + [ + 117.40110053300009, + 57.12142787 + ], + [ + 116.99690253100005, + 57.16635923000007 + ], + [ + 116.85870355500015, + 57.11826185800004 + ], + [ + 116.66629763800006, + 57.10796971900015 + ], + [ + 116.46479769100029, + 57.12951925600015 + ], + [ + 116.25849960800008, + 57.01112655000003 + ], + [ + 115.79799667300006, + 56.848390727000094 + ], + [ + 115.91780055700008, + 56.76776821700008 + ], + [ + 116.08769955500009, + 56.69826631400019 + ], + [ + 116.15809664500023, + 56.533233179000035 + ], + [ + 116.27660368000011, + 56.54305257800007 + ], + [ + 116.43430365700021, + 56.70187539400018 + ], + [ + 116.5868985510001, + 56.736948295 + ], + [ + 116.65380055500009, + 56.704205228000035 + ], + [ + 116.512100626, + 56.599752298000055 + ], + [ + 116.45210262800003, + 56.51399989600003 + ], + [ + 116.4739986740002, + 56.446179906000054 + ], + [ + 116.60330160000012, + 56.43873744600012 + ], + [ + 116.91040061900014, + 56.53759026 + ], + [ + 117.16509966700005, + 56.697053285000095 + ], + [ + 117.39459952900006, + 56.746138549000136 + ], + [ + 117.61679858600019, + 56.7620800900001 + ] + ] + ], + [ + [ + [ + 127.06040157100017, + 57.30599670800012 + ], + [ + 126.74359865500003, + 57.20728068700009 + ], + [ + 126.69180268400021, + 56.99138498900004 + ], + [ + 126.5926975760002, + 56.90239315000008 + ], + [ + 126.14040354200006, + 56.82210994000013 + ], + [ + 126.04440258700004, + 56.67666648500011 + ], + [ + 125.80220062200021, + 56.47738053400002 + ], + [ + 125.79519653600005, + 56.38310591700014 + ], + [ + 125.91490168000007, + 56.32843545600008 + ], + [ + 126.12010156700012, + 56.29688328999998 + ], + [ + 126.30789961600033, + 56.297303391000014 + ], + [ + 126.4438016150001, + 56.33351740400013 + ], + [ + 126.52149967800017, + 56.45156980500008 + ], + [ + 126.48650355600023, + 56.607084619000034 + ], + [ + 126.55490156200005, + 56.63909829200003 + ], + [ + 126.8908995390002, + 56.64845584900007 + ], + [ + 127.08159655400016, + 56.68393761900006 + ], + [ + 127.26580061100003, + 56.89686109300004 + ], + [ + 127.35140264100005, + 56.92064290000019 + ], + [ + 127.781501563, + 56.958103972000174 + ], + [ + 128.02389564200007, + 56.99992631600003 + ], + [ + 128.24630759900003, + 57.13471536600002 + ], + [ + 128.16540563700005, + 57.24333460500003 + ], + [ + 128.31919864100018, + 57.29905364200016 + ], + [ + 128.7639006820002, + 57.33495467400019 + ], + [ + 129.2223056260002, + 57.50567208200016 + ], + [ + 129.8708035840001, + 57.80254048500018 + ], + [ + 130.0957946530002, + 57.962637685000175 + ], + [ + 130.22720361600022, + 58.01424036900016 + ], + [ + 130.58439657600002, + 58.05310960100013 + ], + [ + 130.74490365200006, + 58.117362924000076 + ], + [ + 130.79820266600007, + 58.18968416400014 + ], + [ + 130.73089564800011, + 58.27349598700016 + ], + [ + 130.55909764600005, + 58.325896629000056 + ], + [ + 130.21130364900012, + 58.33797813600006 + ], + [ + 129.9488986140001, + 58.310248286 + ], + [ + 129.56990063600006, + 58.16918353799997 + ], + [ + 129.3045956310002, + 58.036489125 + ], + [ + 128.99749761800024, + 57.93390468900009 + ], + [ + 128.15359469700002, + 57.78287201300009 + ], + [ + 127.89330257300003, + 57.724527932 + ], + [ + 127.73599956300006, + 57.64515633800016 + ], + [ + 127.74259964200007, + 57.54660141800008 + ], + [ + 127.62809764700023, + 57.39722752100005 + ], + [ + 127.49710057000004, + 57.321515298 + ], + [ + 127.06040157100017, + 57.30599670800012 + ] + ] + ], + [ + [ + [ + 132.5966036960001, + 57.711847622000164 + ], + [ + 132.42210370400016, + 57.78979915400009 + ], + [ + 132.245101545, + 57.81496196200004 + ], + [ + 131.9591066500002, + 57.757037982000156 + ], + [ + 131.65429656200013, + 57.754520058000196 + ], + [ + 131.5444946360002, + 57.63517718000014 + ], + [ + 131.61579864800012, + 57.57063401100015 + ], + [ + 132.02259856100022, + 57.48681129100004 + ], + [ + 132.16949459900025, + 57.39156638399999 + ], + [ + 132.41940255100008, + 57.33267764700014 + ], + [ + 132.62179567400017, + 57.45821944500011 + ], + [ + 132.64729258500006, + 57.59269568300016 + ], + [ + 132.5966036960001, + 57.711847622000164 + ] + ] + ], + [ + [ + [ + 124.96430165800007, + 57.77795083000012 + ], + [ + 124.79009955900005, + 57.75165881200007 + ], + [ + 124.61589863200004, + 57.598153810000156 + ], + [ + 124.65149657500012, + 57.535491876000094 + ], + [ + 124.78199761100007, + 57.46901097800014 + ], + [ + 125.21589655200023, + 57.43597873600015 + ], + [ + 125.42189758100005, + 57.44662207700014 + ], + [ + 125.54470067700004, + 57.4913504270001 + ], + [ + 125.61370067200005, + 57.56009376700007 + ], + [ + 125.53980262800007, + 57.65114571100003 + ], + [ + 125.23509966000017, + 57.76847844200012 + ], + [ + 124.96430165800007, + 57.77795083000012 + ] + ] + ], + [ + [ + [ + 137.995803614, + 57.412048067000114 + ], + [ + 138.16949458500017, + 57.46154152899999 + ], + [ + 138.46150165200004, + 57.754969999000195 + ], + [ + 138.38909860500007, + 57.823770169000056 + ], + [ + 138.2539065530001, + 57.84007079100019 + ], + [ + 138.03680469900007, + 57.764911439000116 + ], + [ + 137.78500361100032, + 57.61050320400017 + ], + [ + 137.5937956350001, + 57.518493544000194 + ], + [ + 137.6291966030002, + 57.445588085 + ], + [ + 137.76179462400012, + 57.41359721000015 + ], + [ + 137.995803614, + 57.412048067000114 + ] + ] + ], + [ + [ + [ + 119.01940162200003, + 57.94745437000006 + ], + [ + 119.06909960200016, + 57.81709800600004 + ], + [ + 119.393997592, + 57.55790474900016 + ], + [ + 119.42299663000006, + 57.407497029000126 + ], + [ + 119.40419753000003, + 57.21489078400015 + ], + [ + 119.49790167600008, + 57.06174905500018 + ], + [ + 119.68489858300006, + 57.003405309000016 + ], + [ + 119.88200356200014, + 56.99707613400011 + ], + [ + 120.11640164100015, + 57.06003596099998 + ], + [ + 120.5169986100002, + 57.42305836700018 + ], + [ + 120.8470006760001, + 57.5707141420001 + ], + [ + 120.91829664200009, + 57.639427307000176 + ], + [ + 120.866996545, + 57.721826780000185 + ], + [ + 120.67710167800021, + 57.816571958 + ], + [ + 120.8280025900001, + 58.026218947000075 + ], + [ + 120.76450363800018, + 58.13759248000002 + ], + [ + 120.93869769100013, + 58.26584783600015 + ], + [ + 120.98919664600032, + 58.33446796300012 + ], + [ + 120.89250167000012, + 58.37844965300013 + ], + [ + 120.57689652900024, + 58.43204035700012 + ], + [ + 120.44200153200006, + 58.481331982000086 + ], + [ + 120.27580264100015, + 58.42805006800012 + ], + [ + 120.24659757500012, + 58.28260644600016 + ], + [ + 120.26869964800017, + 58.19443335000017 + ], + [ + 120.20469660900005, + 58.11265162400019 + ], + [ + 120.00070153700005, + 58.03107911000012 + ], + [ + 119.87840252900003, + 57.93457574400014 + ], + [ + 119.9542005830001, + 57.776378721000185 + ], + [ + 119.94960059400012, + 57.573552254000106 + ], + [ + 119.71849861500016, + 57.46615761100003 + ], + [ + 119.60320268700013, + 57.5079489420001 + ], + [ + 119.64160169400031, + 57.79343907900011 + ], + [ + 119.60510252900008, + 57.88351805100001 + ], + [ + 119.49330168700021, + 57.94035506600011 + ], + [ + 119.30529761000014, + 57.974234216000184 + ], + [ + 119.10230266700012, + 57.97636724300003 + ], + [ + 119.01940162200003, + 57.94745437000006 + ] + ] + ], + [ + [ + [ + 126.15619655600028, + 57.806809555000086 + ], + [ + 126.45079765400021, + 57.77268951000002 + ], + [ + 126.63230156500015, + 57.83970483700011 + ], + [ + 126.75509661400008, + 57.95224647200007 + ], + [ + 126.80529767700011, + 58.07242016500004 + ], + [ + 126.60939767900004, + 58.12879215200019 + ], + [ + 126.38619966800002, + 58.11814076500008 + ], + [ + 126.21839866000005, + 58.047997646 + ], + [ + 126.0419996630003, + 57.90323279000012 + ], + [ + 126.15619655600028, + 57.806809555000086 + ] + ] + ], + [ + [ + [ + 111.76650257600016, + 58.286016372 + ], + [ + 111.64420356700003, + 58.168012418000046 + ], + [ + 111.47650163400004, + 58.103000365000014 + ], + [ + 111.19229862200007, + 58.03798814500004 + ], + [ + 111.01519755700008, + 58.02554789200008 + ], + [ + 110.9219966610001, + 58.06447797700014 + ], + [ + 110.71269953300015, + 57.90973396200013 + ], + [ + 110.70069865900018, + 57.80682179299998 + ], + [ + 110.82230364600008, + 57.67615948900004 + ], + [ + 110.98359660800008, + 57.667939022000155 + ], + [ + 111.25550068600018, + 57.73409922800005 + ], + [ + 111.51149758800017, + 57.85355308300018 + ], + [ + 111.74259956700013, + 57.93802389100006 + ], + [ + 112.09390256400013, + 58.110290442000064 + ], + [ + 112.30010257900005, + 58.297326912000074 + ], + [ + 112.35420256700024, + 58.396329258000094 + ], + [ + 112.35849762200007, + 58.50773799500013 + ], + [ + 112.18399863500008, + 58.642019437000044 + ], + [ + 111.906501649, + 58.666949228000135 + ], + [ + 111.83789862100014, + 58.56562794500019 + ], + [ + 111.88140053100005, + 58.445590709000044 + ], + [ + 111.76650257600016, + 58.286016372 + ] + ] + ], + [ + [ + [ + 126.15799766000009, + 58.18428286600016 + ], + [ + 126.2596966320001, + 58.32134944600011 + ], + [ + 126.23130058800018, + 58.40760660600006 + ], + [ + 126.1242975470002, + 58.47468278600007 + ], + [ + 125.87719770000012, + 58.55132623800017 + ], + [ + 125.69950068200012, + 58.549506360000066 + ], + [ + 125.53610268800003, + 58.46550359600013 + ], + [ + 125.46759756100016, + 58.320998746999976 + ], + [ + 125.5210036950001, + 58.25056511200006 + ], + [ + 125.64880357900006, + 58.18322188400015 + ], + [ + 126.04940054900021, + 58.14074072300019 + ], + [ + 126.15799766000009, + 58.18428286600016 + ] + ] + ], + [ + [ + [ + 138.83360266500006, + 58.07942039500017 + ], + [ + 138.97309865700004, + 58.11032044900014 + ], + [ + 139.32319667100035, + 58.25306426000009 + ], + [ + 139.7872005590002, + 58.46149419700015 + ], + [ + 139.85800165700005, + 58.560904742000105 + ], + [ + 139.7254026300003, + 58.62152668900018 + ], + [ + 139.6076047040002, + 58.6310902730001 + ], + [ + 139.33529661900002, + 58.55323731200019 + ], + [ + 139.02890067400006, + 58.439181738000116 + ], + [ + 138.82739268100022, + 58.407159348000164 + ], + [ + 138.60949655800005, + 58.32793795700019 + ], + [ + 138.51359568300006, + 58.21954335300006 + ], + [ + 138.5229036190002, + 58.12491200100004 + ], + [ + 138.83360266500006, + 58.07942039500017 + ] + ] + ], + [ + [ + [ + 114.69300065400023, + 59.32211230900009 + ], + [ + 114.72219867800004, + 59.13016555200011 + ], + [ + 114.56870256200034, + 59.02111062200004 + ], + [ + 114.59580259600011, + 58.90477768500011 + ], + [ + 114.74240158000009, + 58.8830477680001 + ], + [ + 115.06749755000021, + 58.88808797400003 + ], + [ + 115.32689666700003, + 58.934269745999984 + ], + [ + 115.68589760300006, + 58.903167521000114 + ], + [ + 115.79489855400016, + 58.95342038300009 + ], + [ + 115.75070161700023, + 59.01942049500013 + ], + [ + 115.2279965790002, + 59.16193581500005 + ], + [ + 115.14489755300008, + 59.334441921000064 + ], + [ + 115.07929960500019, + 59.4028652400001 + ], + [ + 114.94480157500004, + 59.426738242000056 + ], + [ + 114.69300065400023, + 59.32211230900009 + ] + ] + ], + [ + [ + [ + 140.61909455900002, + 59.32303230600007 + ], + [ + 140.66020159100003, + 59.38463376300001 + ], + [ + 140.4485017070001, + 59.520998610000106 + ], + [ + 140.49890158800008, + 59.659809633000066 + ], + [ + 140.41329955700007, + 59.752148031000104 + ], + [ + 140.22779865200005, + 59.79842870900006 + ], + [ + 140.00149564800006, + 59.72981528800011 + ], + [ + 139.93189970000003, + 59.62856240100018 + ], + [ + 139.92669655000032, + 59.501478834000125 + ], + [ + 140.00280758400004, + 59.40849553200002 + ], + [ + 140.01960760000009, + 59.29144141600017 + ], + [ + 139.83219863800002, + 58.814373327000055 + ], + [ + 140.05740361300002, + 58.73579164300003 + ], + [ + 140.1983035730001, + 58.752104336000116 + ], + [ + 140.30329864500015, + 58.81739567300019 + ], + [ + 140.37840267700005, + 59.174814106999975 + ], + [ + 140.61909455900002, + 59.32303230600007 + ] + ] + ], + [ + [ + [ + 115.71769753800015, + 59.514719391000085 + ], + [ + 115.49109664100013, + 59.426509248000116 + ], + [ + 115.45680258700031, + 59.295023506000064 + ], + [ + 115.56030266300013, + 59.240540465000095 + ], + [ + 115.70600159800017, + 59.229420194000056 + ], + [ + 115.94210053200015, + 59.26653425600006 + ], + [ + 116.22270167300007, + 59.26389026800018 + ], + [ + 116.33499855600007, + 59.294127313000104 + ], + [ + 116.40599864000023, + 59.38335569000009 + ], + [ + 116.33070366900006, + 59.47289771800013 + ], + [ + 116.16860168500011, + 59.51322037200009 + ], + [ + 115.71769753800015, + 59.514719391000085 + ] + ] + ], + [ + [ + [ + 147.78779571100006, + 59.26952558900007 + ], + [ + 147.79229763100022, + 59.36140583300016 + ], + [ + 147.91999860800001, + 59.39671493500009 + ], + [ + 148.1385956260001, + 59.38944480800012 + ], + [ + 148.2299955860001, + 59.46857952900018 + ], + [ + 148.21690355600026, + 59.56141698599998 + ], + [ + 148.11289956100006, + 59.622782408000035 + ], + [ + 147.8896946760002, + 59.66725594800005 + ], + [ + 147.60710166, + 59.67306611500004 + ], + [ + 147.15409868500012, + 59.650905368999986 + ], + [ + 146.68189964300007, + 59.75602315200018 + ], + [ + 146.48030062200007, + 59.76809745200018 + ], + [ + 146.28289758200015, + 59.74622671900005 + ], + [ + 146.0010066340003, + 59.66813386800004 + ], + [ + 145.73199464800007, + 59.49399345900008 + ], + [ + 145.58090162300016, + 59.37474630200006 + ], + [ + 145.91499355500014, + 59.33963400700014 + ], + [ + 145.8034976470002, + 59.292883439000036 + ], + [ + 145.77319371400006, + 59.21223058700019 + ], + [ + 145.93649263400005, + 59.13662766500005 + ], + [ + 146.14179964100015, + 59.19065758 + ], + [ + 146.2411035680003, + 59.264661403000105 + ], + [ + 146.27780172000007, + 59.42197698600012 + ], + [ + 146.40409856100007, + 59.466545576000044 + ], + [ + 146.56210363800005, + 59.47150866900006 + ], + [ + 146.6920016800002, + 59.39860421600014 + ], + [ + 147.02830459000018, + 59.37317436000018 + ], + [ + 147.0989077080003, + 59.32523339400012 + ], + [ + 147.31790169200008, + 59.31170198500007 + ], + [ + 147.44389359900003, + 59.23806830700016 + ], + [ + 147.5942996440001, + 59.30528178200012 + ], + [ + 147.78779571100006, + 59.26952558900007 + ] + ] + ], + [ + [ + [ + 152.03010557000005, + 60.28655688800012 + ], + [ + 152.5979007210002, + 60.13705340700005 + ], + [ + 152.80310060800002, + 60.18555512200004 + ], + [ + 152.8625026520001, + 60.28079667600008 + ], + [ + 152.81210361000012, + 60.43579365700009 + ], + [ + 152.8569945690001, + 60.59039769300006 + ], + [ + 152.70840471500003, + 60.61150969600004 + ], + [ + 152.1817016770002, + 60.57838508500015 + ], + [ + 151.77189668400013, + 60.61085356000012 + ], + [ + 151.5316005960002, + 60.64320267700003 + ], + [ + 151.35650666200013, + 60.61885274600013 + ], + [ + 151.00489755800027, + 60.44811606000013 + ], + [ + 150.90299959900005, + 60.35415274600018 + ], + [ + 150.90609771800018, + 60.28187593000007 + ], + [ + 151.11309870800005, + 60.24001620300004 + ], + [ + 151.5339966470001, + 60.32063938300007 + ], + [ + 151.6867067080001, + 60.33435284700016 + ], + [ + 152.03010557000005, + 60.28655688800012 + ] + ] + ], + [ + [ + [ + 149.8834996620002, + 61.00085664200003 + ], + [ + 149.7245026700001, + 60.96698453300007 + ], + [ + 149.70350667300022, + 60.82707900200012 + ], + [ + 149.62559470400004, + 60.667949744000055 + ], + [ + 149.5344996770002, + 60.60927055400009 + ], + [ + 149.22230563500023, + 60.475884299000086 + ], + [ + 149.10279863900007, + 60.39555113400013 + ], + [ + 149.31950369300012, + 60.22474571600014 + ], + [ + 149.61039764300006, + 60.07843104700015 + ], + [ + 149.78540071700024, + 60.074100955000176 + ], + [ + 150.2095945880002, + 60.159008126 + ], + [ + 150.291107591, + 60.28685796600013 + ], + [ + 150.31100472000003, + 60.39302197800009 + ], + [ + 150.6078945810001, + 60.54693903400005 + ], + [ + 150.67469767900002, + 60.62776019400013 + ], + [ + 150.59429963700018, + 60.70424405500006 + ], + [ + 150.39889568100023, + 60.78943738400011 + ], + [ + 150.25430265400007, + 60.960385126000176 + ], + [ + 150.09770171300022, + 61.01994542100016 + ], + [ + 149.8834996620002, + 61.00085664200003 + ] + ] + ], + [ + [ + [ + 138.73100263800006, + 60.75021309400012 + ], + [ + 138.6943966880001, + 60.815130431000114 + ], + [ + 138.53889461400001, + 60.82878388100005 + ], + [ + 138.3849946570001, + 60.733474266000144 + ], + [ + 138.44569355000021, + 60.63926251200007 + ], + [ + 138.39689662500007, + 60.57598903400003 + ], + [ + 138.2109065520001, + 60.49549594100006 + ], + [ + 138.231506587, + 60.431605722000086 + ], + [ + 138.48390161800012, + 60.373127196000155 + ], + [ + 138.61010759900012, + 60.37266216800003 + ], + [ + 138.75909458700016, + 60.42502442000017 + ], + [ + 138.74360667400003, + 60.53986671900009 + ], + [ + 138.60639961200002, + 60.658302341000024 + ], + [ + 138.73100263800006, + 60.75021309400012 + ] + ] + ], + [ + [ + [ + 139.63229360000014, + 60.61292053800008 + ], + [ + 139.58110062300022, + 60.674034838000125 + ], + [ + 139.34100368900022, + 60.74365559600005 + ], + [ + 139.1439976160002, + 60.772228833000156 + ], + [ + 138.93870569600028, + 60.73648756000006 + ], + [ + 138.97239658800004, + 60.68163018300004 + ], + [ + 139.18980371100008, + 60.615709532000096 + ], + [ + 139.1078945800001, + 60.52831930600007 + ], + [ + 139.29319767200002, + 60.48050759000006 + ], + [ + 139.56050058800008, + 60.54301798000017 + ], + [ + 139.63229360000014, + 60.61292053800008 + ] + ] + ], + [ + [ + [ + 148.9510037130001, + 60.585801560000164 + ], + [ + 149.23939566500007, + 60.65203100100001 + ], + [ + 149.27250669700004, + 60.69669481000011 + ], + [ + 149.12399261600012, + 60.905282997000086 + ], + [ + 148.82600372000002, + 61.00932102300004 + ], + [ + 148.64050264700018, + 60.9967246990002 + ], + [ + 148.50599657100008, + 60.90256306900011 + ], + [ + 148.69529766300013, + 60.731826384000044 + ], + [ + 148.9510037130001, + 60.585801560000164 + ] + ] + ], + [ + [ + [ + 147.65629572000012, + 60.77557505700008 + ], + [ + 147.75230371500004, + 60.817617677000044 + ], + [ + 148.18569957500006, + 60.94461457500012 + ], + [ + 148.28439363500001, + 60.99716743100004 + ], + [ + 148.25140363800006, + 61.073857654000165 + ], + [ + 148.11210663300017, + 61.118849364000084 + ], + [ + 148.07049568000014, + 61.22887391300003 + ], + [ + 147.87390166100022, + 61.26163592300003 + ], + [ + 147.58009365900023, + 61.151012906000176 + ], + [ + 147.44090260100018, + 61.17473369200013 + ], + [ + 147.38609367200002, + 61.28415826400004 + ], + [ + 147.58120761400016, + 61.47468395300001 + ], + [ + 147.32820171000014, + 61.51518665000003 + ], + [ + 146.97059669600003, + 61.35704109200003 + ], + [ + 146.67089856200016, + 61.29088826200018 + ], + [ + 146.0899966300002, + 61.38823149500013 + ], + [ + 146.03939860000003, + 61.25624485000009 + ], + [ + 146.21130355600008, + 61.13662319000008 + ], + [ + 146.4911955870001, + 61.00076494400008 + ], + [ + 146.36689766300026, + 60.87364282100003 + ], + [ + 146.14739959100007, + 60.79126866200011 + ], + [ + 145.80380258000014, + 60.70020498300016 + ], + [ + 145.51379359200007, + 60.57439798100012 + ], + [ + 145.52160669900002, + 60.43447367400006 + ], + [ + 145.65179458700015, + 60.378510389000155 + ], + [ + 145.76649456200005, + 60.38927191500005 + ], + [ + 145.97009266600026, + 60.544363778000104 + ], + [ + 146.15939359100014, + 60.61533955500016 + ], + [ + 146.4476016440002, + 60.63588242600014 + ], + [ + 146.60659763, + 60.624369044 + ], + [ + 147.0207065630002, + 60.77061867000003 + ], + [ + 147.2221065970001, + 60.67208889500017 + ], + [ + 147.3894046910002, + 60.62638003000012 + ], + [ + 147.6506045750001, + 60.71578442700013 + ], + [ + 147.65629572000012, + 60.77557505700008 + ] + ] + ], + [ + [ + [ + 152.8916926300002, + 60.843058430000156 + ], + [ + 152.62980660300002, + 60.91353447800009 + ], + [ + 152.40089464800008, + 61.024782785000184 + ], + [ + 152.47529560600015, + 61.169159391000164 + ], + [ + 152.20590157300012, + 61.32913589200007 + ], + [ + 151.94389367300005, + 61.406104059000086 + ], + [ + 151.79840059700007, + 61.289579512000046 + ], + [ + 151.71740760800003, + 61.266007253000055 + ], + [ + 151.51260368300018, + 61.422393785 + ], + [ + 151.33140571100023, + 61.39804385300005 + ], + [ + 151.11659262000012, + 61.21313320200011 + ], + [ + 151.1342926850001, + 61.122992706000105 + ], + [ + 151.3143005940001, + 61.07018772200013 + ], + [ + 151.49960368600023, + 61.07656987100012 + ], + [ + 151.7117007050001, + 60.99248664099997 + ], + [ + 151.8099055980001, + 60.90520705700004 + ], + [ + 151.97149662100003, + 60.85409186400017 + ], + [ + 152.18609664400014, + 60.833831128000156 + ], + [ + 152.5337986080001, + 60.76925661100006 + ], + [ + 152.69709769500014, + 60.70442426600016 + ], + [ + 152.81080659400004, + 60.696313936000195 + ], + [ + 152.95680258400023, + 60.79120747400003 + ], + [ + 152.8916926300002, + 60.843058430000156 + ] + ] + ], + [ + [ + [ + 139.38310263600033, + 60.96410434400008 + ], + [ + 139.587005674, + 60.90673608400016 + ], + [ + 139.78120464800008, + 60.90903306000013 + ], + [ + 139.73359661100017, + 61.06266831700009 + ], + [ + 139.89039570100033, + 61.13507002300008 + ], + [ + 140.18719470200006, + 61.064129282000124 + ], + [ + 140.41040059200031, + 60.94137547200012 + ], + [ + 140.5594026680002, + 60.91759349800003 + ], + [ + 140.61059564400023, + 60.97195483399997 + ], + [ + 140.6107025970001, + 61.10607014700014 + ], + [ + 140.49319468500016, + 61.23528623700014 + ], + [ + 140.12339768900006, + 61.32160860800019 + ], + [ + 139.572204574, + 61.282696796000096 + ], + [ + 139.20489465700007, + 61.16647433200012 + ], + [ + 138.89300554800002, + 61.01992631000007 + ], + [ + 138.8303985990002, + 60.94257358100003 + ], + [ + 138.97790567800007, + 60.86967147500002 + ], + [ + 139.28010564200008, + 60.98353728300009 + ], + [ + 139.38310263600033, + 60.96410434400008 + ] + ] + ], + [ + [ + [ + 150.99310271100023, + 61.44689274700005 + ], + [ + 151.09719857300013, + 61.58201807900019 + ], + [ + 151.33200065900007, + 61.733494324 + ], + [ + 151.34089670800006, + 61.80579025100019 + ], + [ + 151.15060470700007, + 61.87149716300007 + ], + [ + 150.84039264900014, + 61.75772640600019 + ], + [ + 150.47579964200008, + 61.482474094000054 + ], + [ + 150.6549986970001, + 61.40205291799998 + ], + [ + 150.84049960300013, + 61.39896267800009 + ], + [ + 150.99310271100023, + 61.44689274700005 + ] + ] + ], + [ + [ + [ + 153.00480658100003, + 61.61633258400013 + ], + [ + 153.09530666100022, + 61.651994062000085 + ], + [ + 153.13560467200034, + 61.78841758300001 + ], + [ + 153.39030472600018, + 61.91823314700008 + ], + [ + 153.21600372000012, + 62.02261935700005 + ], + [ + 152.96290561500007, + 61.98020558600018 + ], + [ + 152.70730568000033, + 61.83159075500009 + ], + [ + 152.6347046520001, + 61.75698645200009 + ], + [ + 152.68699666400005, + 61.674284895000085 + ], + [ + 152.80720556100005, + 61.61717982700014 + ], + [ + 153.00480658100003, + 61.61633258400013 + ] + ] + ], + [ + [ + [ + 146.37590066500002, + 62.28999888400011 + ], + [ + 146.19689959000004, + 62.32142498600007 + ], + [ + 146.10139467700014, + 62.291409893000036 + ], + [ + 146.0785975760001, + 62.19973500700007 + ], + [ + 146.15660057300033, + 62.127782738000064 + ], + [ + 146.5202947050002, + 62.00030539000005 + ], + [ + 146.5852046660001, + 61.95105952900013 + ], + [ + 146.59249859900012, + 61.82946175100017 + ], + [ + 146.7037046610002, + 61.704273333000174 + ], + [ + 146.92629967900007, + 61.62997111400006 + ], + [ + 147.28390469300007, + 61.759668661000035 + ], + [ + 147.3587036240002, + 61.8115127440002 + ], + [ + 147.1477046340001, + 61.9153831320001 + ], + [ + 146.74420165800007, + 62.02728472500007 + ], + [ + 146.5364986000002, + 62.223806827000146 + ], + [ + 146.37590066500002, + 62.28999888400011 + ] + ] + ], + [ + [ + [ + 143.4803006290001, + 62.577372099000115 + ], + [ + 143.40109265, + 62.45764683800013 + ], + [ + 143.35020460700025, + 62.282109334000154 + ], + [ + 143.0061947040001, + 62.26526657000011 + ], + [ + 143.0108946050001, + 62.492949570000064 + ], + [ + 142.72569263700018, + 62.814313415000186 + ], + [ + 142.42480460900003, + 62.893536649 + ], + [ + 141.98620559900007, + 62.95747749500015 + ], + [ + 141.90710457300008, + 62.991577927000094 + ], + [ + 141.56120270700012, + 62.94603703500019 + ], + [ + 140.7371975860001, + 62.73658886500016 + ], + [ + 140.63189657500004, + 62.765128072000095 + ], + [ + 140.59359764800013, + 62.89328485700014 + ], + [ + 140.93499759300016, + 63.085123319000104 + ], + [ + 141.0928955500002, + 63.14182672600015 + ], + [ + 141.15150466700015, + 63.2089875640001 + ], + [ + 141.0733036900001, + 63.260763083000086 + ], + [ + 140.81230161800022, + 63.267103322000196 + ], + [ + 140.31840568500002, + 63.131164275000174 + ], + [ + 139.45869466200008, + 62.94839804900016 + ], + [ + 138.77070670800003, + 62.89700005100008 + ], + [ + 138.44869963600001, + 62.835142276000056 + ], + [ + 138.04049659200007, + 62.785251009000035 + ], + [ + 137.38279765100015, + 62.67173623600013 + ], + [ + 137.47120661300005, + 62.516399453000076 + ], + [ + 137.78790257600008, + 62.471807393 + ], + [ + 138.25759861400002, + 62.4548466120001 + ], + [ + 138.92349271000012, + 62.47323768100006 + ], + [ + 138.86599754800022, + 62.399115505000054 + ], + [ + 138.43780567700026, + 62.30050090600008 + ], + [ + 138.38529959100015, + 62.16835450200006 + ], + [ + 138.47889661600016, + 62.10891105100012 + ], + [ + 138.7088016590002, + 62.05691089700014 + ], + [ + 139.1325077030001, + 62.07561058700014 + ], + [ + 139.29179370300017, + 62.048052566000024 + ], + [ + 139.38769558400008, + 61.991066186000126 + ], + [ + 139.45779461300003, + 61.88132058600013 + ], + [ + 139.29429670700017, + 61.80048718800009 + ], + [ + 139.071594569, + 61.75090621900017 + ], + [ + 138.66439869400006, + 61.62752594600005 + ], + [ + 138.31689471100015, + 61.476866097000084 + ], + [ + 138.21490455200012, + 61.347309702000075 + ], + [ + 138.2539065530001, + 61.256195732000094 + ], + [ + 138.57319654700018, + 61.2404555240002 + ], + [ + 139.11419659700005, + 61.3063989740001 + ], + [ + 139.3979945960001, + 61.36187124700007 + ], + [ + 139.67340063300003, + 61.46354423600013 + ], + [ + 139.99960368500012, + 61.62419615099998 + ], + [ + 140.14900155400028, + 61.77132688199998 + ], + [ + 140.5265047040001, + 62.25502824300003 + ], + [ + 140.76910363600018, + 62.30105830200017 + ], + [ + 140.88560471400012, + 62.268207947 + ], + [ + 140.90409871300005, + 62.17262290300016 + ], + [ + 140.5502927120001, + 61.965605987 + ], + [ + 140.65229762400008, + 61.82956032200008 + ], + [ + 140.74220258800017, + 61.77378713900009 + ], + [ + 140.86070258300003, + 61.801800130000174 + ], + [ + 141.1322936800002, + 62.07519853300016 + ], + [ + 141.3390956840003, + 62.03356377600011 + ], + [ + 141.17590354900005, + 61.65648441500008 + ], + [ + 141.28610261000006, + 61.596950104000086 + ], + [ + 141.51370262900002, + 61.52828588800014 + ], + [ + 141.75570661400013, + 61.41835354000011 + ], + [ + 141.92480463800007, + 61.441464458999974 + ], + [ + 142.0435026130001, + 61.518237495000164 + ], + [ + 142.0532076830001, + 61.627221180000106 + ], + [ + 141.85580464300006, + 61.800197342000104 + ], + [ + 141.84379555500016, + 61.89078107300014 + ], + [ + 142.03120468500015, + 61.985515857000166 + ], + [ + 142.313003599, + 61.9480044930001 + ], + [ + 142.42990063800005, + 61.880351638000036 + ], + [ + 142.47889655100028, + 61.672052962000066 + ], + [ + 142.58959969900013, + 61.619636898000124 + ], + [ + 142.72779867400004, + 61.639512570000136 + ], + [ + 142.84300256900008, + 61.71780491000004 + ], + [ + 142.79440261800016, + 61.83477973400011 + ], + [ + 142.82460060400012, + 61.925443260000065 + ], + [ + 143.00320471100008, + 61.93992400300016 + ], + [ + 143.0529026920001, + 61.8857536070002 + ], + [ + 142.99769562200015, + 61.79593313300012 + ], + [ + 143.01649455400002, + 61.63283219300007 + ], + [ + 143.19059758000003, + 61.49794675200019 + ], + [ + 143.4532926280002, + 61.486014442000055 + ], + [ + 143.59049968900013, + 61.58848421400006 + ], + [ + 143.57580571000017, + 61.754495183000074 + ], + [ + 143.51890566300006, + 61.857881767000094 + ], + [ + 143.5350036110001, + 61.939683946000116 + ], + [ + 143.6786037180002, + 61.966655066000044 + ], + [ + 143.95260662400017, + 61.82143909600012 + ], + [ + 144.07949858000006, + 61.89643131399998 + ], + [ + 144.0021056180002, + 62.04037323400007 + ], + [ + 144.009292597, + 62.11119210200013 + ], + [ + 144.11999457200022, + 62.14608261200004 + ], + [ + 144.29600565400017, + 62.132632004000016 + ], + [ + 144.5581055870001, + 62.0507389660001 + ], + [ + 144.8397066880001, + 62.021455614000104 + ], + [ + 144.80110165400015, + 61.98033466700008 + ], + [ + 144.543792649, + 61.90688354700018 + ], + [ + 144.40519771200002, + 61.83685073400005 + ], + [ + 144.3578035820001, + 61.63632258500007 + ], + [ + 144.21879558500018, + 61.52439903200002 + ], + [ + 144.180206644, + 61.352955920000056 + ], + [ + 144.287093679, + 61.262669411000104 + ], + [ + 144.38490261000015, + 61.25793900100001 + ], + [ + 144.48240660800013, + 61.328479924000135 + ], + [ + 144.55439760100012, + 61.46000439 + ], + [ + 144.67170770000018, + 61.50532098200017 + ], + [ + 144.80059857200013, + 61.41874262800013 + ], + [ + 144.6746976930002, + 61.32612980599998 + ], + [ + 144.77330055800007, + 61.25603597300011 + ], + [ + 144.89869667900018, + 61.24183635900016 + ], + [ + 145.1403955630002, + 61.27536581500004 + ], + [ + 145.47140463100015, + 61.20879607000012 + ], + [ + 145.60110469200015, + 61.248775736000084 + ], + [ + 145.77119463000008, + 61.39452244800009 + ], + [ + 145.84550456000034, + 61.52246868000003 + ], + [ + 145.78089869500002, + 61.75571642600016 + ], + [ + 145.59570255500034, + 61.88737466700019 + ], + [ + 145.47839362900004, + 62.17776486499997 + ], + [ + 145.52639762700028, + 62.291657662000034 + ], + [ + 145.75489769600006, + 62.437087874000156 + ], + [ + 146.14340159000005, + 62.56033118700009 + ], + [ + 145.93339568800013, + 62.57072273500012 + ], + [ + 145.69050556800005, + 62.817212380000115 + ], + [ + 145.2946926540002, + 63.0483014510001 + ], + [ + 145.06939665200002, + 62.95154914200003 + ], + [ + 145.4178006840002, + 62.4612671500002 + ], + [ + 145.11759963600002, + 62.3556025310001 + ], + [ + 144.80859356700012, + 62.34762228900007 + ], + [ + 144.51080365700022, + 62.451553697000065 + ], + [ + 144.34069863200023, + 62.457787989 + ], + [ + 144.2061006900002, + 62.380006442000195 + ], + [ + 144.02270464800029, + 62.366921118000164 + ], + [ + 143.70019566800022, + 62.533099892000166 + ], + [ + 143.4803006290001, + 62.577372099000115 + ] + ] + ], + [ + [ + [ + 153.2489016840001, + 62.434990051 + ], + [ + 152.97090161500012, + 62.52943096600018 + ], + [ + 152.71650666300002, + 62.53300115400015 + ], + [ + 152.23030062200007, + 62.461476027000174 + ], + [ + 152.21220359000017, + 62.30930156900018 + ], + [ + 152.0413966650001, + 62.14148262300006 + ], + [ + 152.15350361400021, + 62.03843919400009 + ], + [ + 152.3426975850001, + 62.023008613000115 + ], + [ + 152.49710062400004, + 62.09510153000019 + ], + [ + 152.53269957300006, + 62.15693214700008 + ], + [ + 152.76040671300007, + 62.1898852650001 + ], + [ + 153.13450664300035, + 62.16495530500009 + ], + [ + 153.30320769900015, + 62.19994488900005 + ], + [ + 153.39059457200017, + 62.299860025000044 + ], + [ + 153.2489016840001, + 62.434990051 + ] + ] + ], + [ + [ + [ + 147.99769566600003, + 62.93663673000003 + ], + [ + 147.71180755600005, + 62.966953236 + ], + [ + 147.17790261900018, + 62.968688961 + ], + [ + 147.0933075910001, + 62.86354050000011 + ], + [ + 146.98240663, + 62.861194405000106 + ], + [ + 147.85169967600007, + 62.629783971999984 + ], + [ + 148.0626066330001, + 62.584254312000155 + ], + [ + 148.24789463800016, + 62.612682710000115 + ], + [ + 148.345001668, + 62.695457189000024 + ], + [ + 148.31809961500016, + 62.813695333 + ], + [ + 148.1744996760001, + 62.88998456600018 + ], + [ + 147.99769566600003, + 62.93663673000003 + ] + ] + ], + [ + [ + [ + 149.79580668200015, + 62.97747135100013 + ], + [ + 149.45790064900007, + 63.13161438300011 + ], + [ + 149.22250361500005, + 63.28714344600007 + ], + [ + 148.98550463200002, + 63.29506635700005 + ], + [ + 148.8981937000001, + 63.246629182000106 + ], + [ + 148.9573975960002, + 63.16789394200009 + ], + [ + 149.28799461000017, + 62.98368971700006 + ], + [ + 149.2557066810001, + 62.809921800000154 + ], + [ + 149.3217005900001, + 62.77769053300011 + ], + [ + 149.66839571900005, + 62.771350461000054 + ], + [ + 149.9020996080003, + 62.86816379000004 + ], + [ + 149.79580668200015, + 62.97747135100013 + ] + ] + ], + [ + [ + [ + 137.79269367100017, + 62.9090052840001 + ], + [ + 137.96919258000003, + 62.99278408200013 + ], + [ + 138.02799967800013, + 63.184206635000066 + ], + [ + 137.83689865500003, + 63.30056387899998 + ], + [ + 137.66020159800007, + 63.34163453400015 + ], + [ + 137.32189960400012, + 63.36341742400015 + ], + [ + 137.05250557100032, + 63.43416772800009 + ], + [ + 136.85659769500012, + 63.389667701000064 + ], + [ + 136.97929367000006, + 63.24311113000016 + ], + [ + 137.1004946490001, + 63.16907679600013 + ], + [ + 137.3693996820001, + 63.09469461400005 + ], + [ + 137.79269367100017, + 62.9090052840001 + ] + ] + ], + [ + [ + [ + 135.73350564900022, + 63.61492799600006 + ], + [ + 135.5444945710002, + 63.502781820000166 + ], + [ + 135.499404625, + 63.41723008100013 + ], + [ + 135.72729465900022, + 63.32280341500018 + ], + [ + 135.9380036350001, + 63.338624425000035 + ], + [ + 136.1526036580002, + 63.53818446400004 + ], + [ + 135.9841005820001, + 63.655803688000105 + ], + [ + 135.73350564900022, + 63.61492799600006 + ] + ] + ], + [ + [ + [ + 156.3518066370002, + 64.02541561100008 + ], + [ + 156.33020060600018, + 63.92110567600014 + ], + [ + 156.37789967000003, + 63.815665860000024 + ], + [ + 156.23519860600004, + 63.721362576 + ], + [ + 156.24999970600004, + 63.669297211000014 + ], + [ + 156.43159464400014, + 63.579217233 + ], + [ + 156.49780262700006, + 63.45349069700006 + ], + [ + 156.34469559800004, + 63.24340935800012 + ], + [ + 156.39190666800016, + 63.19311793900005 + ], + [ + 156.6405947180001, + 63.111113253999974 + ], + [ + 156.95030168200014, + 63.14550487300011 + ], + [ + 157.11250257300003, + 63.20751871900012 + ], + [ + 157.2489016190002, + 63.34247373000011 + ], + [ + 157.2313997020001, + 63.41281969100004 + ], + [ + 157.0841977240001, + 63.53907261100005 + ], + [ + 157.25830058200006, + 63.63413965400014 + ], + [ + 157.1856997220002, + 63.703661841000155 + ], + [ + 156.7742005780002, + 63.78880186100014 + ], + [ + 156.68080170200005, + 63.99556027800014 + ], + [ + 156.46429462800006, + 64.0636712880002 + ], + [ + 156.3518066370002, + 64.02541561100008 + ] + ] + ], + [ + [ + [ + 137.40939359800007, + 63.98817481600014 + ], + [ + 136.82730059600033, + 64.09954616900006 + ], + [ + 136.39390557500008, + 64.0387602720001 + ], + [ + 136.2911985950002, + 63.89461869500019 + ], + [ + 136.31019567600003, + 63.78718465600019 + ], + [ + 136.56399568100005, + 63.64120811300012 + ], + [ + 136.92469764100008, + 63.61221561200017 + ], + [ + 137.26559467200013, + 63.647239395000156 + ], + [ + 137.74090558000023, + 63.75784447500007 + ], + [ + 137.87060564100022, + 63.6512984150001 + ], + [ + 138.14630169200007, + 63.58217721800008 + ], + [ + 138.35859669100034, + 63.64732740500017 + ], + [ + 138.40930167400006, + 63.720691689000034 + ], + [ + 138.39880367500018, + 63.867850081000086 + ], + [ + 138.2243046880002, + 63.96543404200008 + ], + [ + 137.40939359800007, + 63.98817481600014 + ] + ] + ], + [ + [ + [ + 143.45239257900005, + 63.67957074200018 + ], + [ + 143.64320358800023, + 63.61499672800005 + ], + [ + 144.06739762600023, + 63.53458309600012 + ], + [ + 144.3522946600001, + 63.45370326200015 + ], + [ + 144.62229956600004, + 63.47561271900008 + ], + [ + 144.82739266700003, + 63.55360398100015 + ], + [ + 144.76210065900023, + 63.69346039400011 + ], + [ + 144.4004976440001, + 63.82856845900011 + ], + [ + 144.08030659500002, + 63.99392429800014 + ], + [ + 144.1004945770003, + 64.07054578999998 + ], + [ + 144.21350056900008, + 64.18074987900019 + ], + [ + 144.0480956120001, + 64.2684768900001 + ], + [ + 143.7615966290001, + 64.31801628500017 + ], + [ + 143.55619758900002, + 64.31694004800005 + ], + [ + 143.42160065200005, + 64.36654163700007 + ], + [ + 143.21420269500027, + 64.38331214900018 + ], + [ + 142.88900765100004, + 64.19655060499997 + ], + [ + 143.0661927020002, + 63.96447263700003 + ], + [ + 143.27609265700005, + 63.78402568500002 + ], + [ + 143.45239257900005, + 63.67957074200018 + ] + ] + ], + [ + [ + [ + 140.7062987060001, + 64.33346698200006 + ], + [ + 140.79769866700008, + 64.4173331200002 + ], + [ + 140.82000760500011, + 64.53461723600009 + ], + [ + 139.88389570200013, + 64.69953403099998 + ], + [ + 140.07179265900004, + 64.83866289500008 + ], + [ + 140.22540260100016, + 65.01108098999998 + ], + [ + 140.14909358700004, + 65.09988339900008 + ], + [ + 139.86250257100028, + 65.15129262800014 + ], + [ + 139.50039664200017, + 65.09077377900007 + ], + [ + 139.22169467300012, + 64.94924886400008 + ], + [ + 139.09199561800006, + 64.84883332800001 + ], + [ + 138.1846006190002, + 64.99656118700005 + ], + [ + 137.28140260600014, + 65.06120812400007 + ], + [ + 137.59390258800022, + 65.17286999400005 + ], + [ + 137.67309564800019, + 65.29435863999998 + ], + [ + 137.59790058800002, + 65.36672732100016 + ], + [ + 137.46299754500012, + 65.58773111900013 + ], + [ + 137.33149755400007, + 65.60468385300015 + ], + [ + 137.20010367800012, + 65.36669614100003 + ], + [ + 137.19999655700008, + 65.2976931290001 + ], + [ + 137.0260926850002, + 65.24381140500003 + ], + [ + 136.95030167300013, + 65.177836775 + ], + [ + 137.04449465100026, + 65.0622914010001 + ], + [ + 136.64300567900023, + 64.6016525120001 + ], + [ + 136.53190657000005, + 64.45076652000017 + ], + [ + 136.52479569900026, + 64.26561547600016 + ], + [ + 136.75219757000002, + 64.21592235700018 + ], + [ + 137.1363066660001, + 64.38549446100006 + ], + [ + 137.33659358300008, + 64.36387920900006 + ], + [ + 137.20550564700022, + 64.24364986000012 + ], + [ + 137.35180657, + 64.19253047700005 + ], + [ + 137.84010356000022, + 64.36010198800011 + ], + [ + 138.0213925590001, + 64.36783865200005 + ], + [ + 138.07200668100006, + 64.20308178400012 + ], + [ + 138.211105706, + 64.18763226000004 + ], + [ + 138.51519763300007, + 64.28662773400004 + ], + [ + 138.71119670400003, + 64.27646501099997 + ], + [ + 138.78089859900012, + 64.20916302300009 + ], + [ + 139.03919968600007, + 64.13822898799998 + ], + [ + 139.3883976520001, + 64.07044654800012 + ], + [ + 139.4833066120001, + 64.0130779530001 + ], + [ + 139.37640365100003, + 63.899890912000046 + ], + [ + 139.00309765600014, + 63.89133047400014 + ], + [ + 138.8128966820001, + 63.82779765900011 + ], + [ + 138.92190568000012, + 63.71913047600009 + ], + [ + 138.8751066650001, + 63.640578967000124 + ], + [ + 138.6336055940002, + 63.54790361600004 + ], + [ + 138.58959959600008, + 63.461107835000064 + ], + [ + 138.85839868200014, + 63.35007695500008 + ], + [ + 138.6282956580003, + 63.207659367000076 + ], + [ + 138.8451996990001, + 63.08897949700014 + ], + [ + 139.1614986940001, + 63.09363363300014 + ], + [ + 139.8836056890002, + 63.1934379600001 + ], + [ + 140.44529764000004, + 63.32055371299998 + ], + [ + 140.784805623, + 63.45765968800015 + ], + [ + 141.00660670700006, + 63.51857148100004 + ], + [ + 141.16560369900003, + 63.62625848500005 + ], + [ + 141.0164036430001, + 63.640288953000095 + ], + [ + 140.75959755200006, + 63.55312302700014 + ], + [ + 140.49740558600013, + 63.51226225500005 + ], + [ + 140.05220063000002, + 63.49924180700009 + ], + [ + 139.95550565400015, + 63.55389416200006 + ], + [ + 139.99209567900004, + 63.625987415 + ], + [ + 140.22009266600003, + 63.71747152900019 + ], + [ + 140.89849859600008, + 63.896529601 + ], + [ + 140.969802608, + 63.973300123000115 + ], + [ + 140.83439665000014, + 64.04387960300011 + ], + [ + 139.91479458300012, + 64.24477873500018 + ], + [ + 139.8502046430001, + 64.29437210900016 + ], + [ + 139.92759659900014, + 64.38579956199999 + ], + [ + 140.04559367900004, + 64.39612170800018 + ], + [ + 140.46040367400008, + 64.32593668000015 + ], + [ + 140.7062987060001, + 64.33346698200006 + ] + ] + ], + [ + [ + [ + 156.38740558600023, + 64.40913059000007 + ], + [ + 156.24920661000033, + 64.4438080320001 + ], + [ + 156.1576996970001, + 64.54159835500013 + ], + [ + 155.89750664700023, + 64.57893839300004 + ], + [ + 155.82820171800006, + 64.45927381700017 + ], + [ + 155.81779458000017, + 64.33818197000005 + ], + [ + 155.88949572700017, + 64.22299584500013 + ], + [ + 156.1065067200002, + 64.14028104500005 + ], + [ + 156.4217076870002, + 64.12943134200003 + ], + [ + 156.9270937010001, + 64.26205970500001 + ], + [ + 157.24079866500017, + 64.44598229800005 + ], + [ + 157.24290470200003, + 64.52858193000003 + ], + [ + 157.09060669500013, + 64.59799045900007 + ], + [ + 156.78329460800023, + 64.61498225300016 + ], + [ + 156.53660564200015, + 64.42577118200006 + ], + [ + 156.38740558600023, + 64.40913059000007 + ] + ] + ], + [ + [ + [ + 146.55073559800007, + 65.39204955400004 + ], + [ + 146.37669359300003, + 65.47969291300012 + ], + [ + 145.93089268400013, + 65.53299427300016 + ], + [ + 145.56889370900012, + 65.62230898399997 + ], + [ + 145.3592986870002, + 65.74340083000016 + ], + [ + 145.08489965200022, + 65.7316051460001 + ], + [ + 144.98269659200002, + 65.59213329400012 + ], + [ + 144.85890158200004, + 65.50618408600008 + ], + [ + 144.51240560700012, + 65.4614730020001 + ], + [ + 144.27549765100014, + 65.56175895300004 + ], + [ + 144.381805664, + 65.8709710500001 + ], + [ + 144.06719964600018, + 65.98048061500003 + ], + [ + 143.73049960100002, + 65.93474828100011 + ], + [ + 143.60110464100012, + 65.87859237900017 + ], + [ + 143.6287996220002, + 65.72659980800006 + ], + [ + 143.91239964000022, + 65.49408262900005 + ], + [ + 143.94340564100014, + 65.34490503700005 + ], + [ + 143.78430169600017, + 65.12847960200014 + ], + [ + 143.47889666000003, + 64.96556172400011 + ], + [ + 143.66659563500002, + 64.71938003000008 + ], + [ + 143.9649965860002, + 64.47757754600019 + ], + [ + 144.50100655400024, + 64.47416644700013 + ], + [ + 144.92959555900018, + 64.500374647 + ], + [ + 144.9992976220002, + 64.44896625500013 + ], + [ + 144.78489658500007, + 64.33474086400008 + ], + [ + 144.69340559800003, + 64.23129728200018 + ], + [ + 144.70339967600012, + 64.12511315300003 + ], + [ + 145.0765076910002, + 64.06519746500004 + ], + [ + 145.33970665900006, + 64.14749937199997 + ], + [ + 145.60859660500012, + 64.15164942000018 + ], + [ + 145.77380358100004, + 64.04976939900001 + ], + [ + 146.39169267300008, + 64.03596004600007 + ], + [ + 146.48120167600007, + 63.956293241000196 + ], + [ + 146.35650661700026, + 63.82958652500014 + ], + [ + 146.07620269900008, + 63.8182451400001 + ], + [ + 145.83459467500018, + 63.75878207400012 + ], + [ + 146.0540925800001, + 63.66425013200012 + ], + [ + 146.4416045600001, + 63.61232575100013 + ], + [ + 146.36109956500002, + 63.437803965000114 + ], + [ + 146.97470064300023, + 63.30793408699998 + ], + [ + 147.09989962200018, + 63.179586530000165 + ], + [ + 147.25399756000013, + 63.14895302000002 + ], + [ + 147.55029264000018, + 63.140506744 + ], + [ + 147.76539557800004, + 63.18329451599999 + ], + [ + 147.8746035620003, + 63.266710210000156 + ], + [ + 147.81260664700017, + 63.435647804000155 + ], + [ + 147.57550071100002, + 63.60440652900019 + ], + [ + 147.5639957110002, + 63.68680717500018 + ], + [ + 147.6428985890002, + 63.77202397300016 + ], + [ + 147.82710264600007, + 63.88091998300007 + ], + [ + 147.93769867300023, + 63.984863461000145 + ], + [ + 147.91040065900017, + 64.19359045200008 + ], + [ + 147.83580071500023, + 64.33882318600018 + ], + [ + 147.7489926960002, + 64.41914109700014 + ], + [ + 147.3715976730001, + 64.51645164000018 + ], + [ + 147.22639461100016, + 64.67499014200007 + ], + [ + 146.97419756100032, + 64.75217975900011 + ], + [ + 146.5252987010001, + 64.79357864900015 + ], + [ + 146.3860016960001, + 64.8531976180002 + ], + [ + 146.352401664, + 64.97377816800014 + ], + [ + 146.53320266800017, + 65.27289560300005 + ], + [ + 146.55073559800007, + 65.39204955400004 + ] + ] + ], + [ + [ + [ + 135.33520465100014, + 64.97049832900012 + ], + [ + 135.16130061100012, + 64.79446377800008 + ], + [ + 135.2884976690002, + 64.66942740800005 + ], + [ + 135.43829367800015, + 64.46648409700009 + ], + [ + 135.4062955950002, + 64.27864749100007 + ], + [ + 135.5803986200001, + 64.21757862100009 + ], + [ + 135.77009567400012, + 64.20652289100013 + ], + [ + 135.90539568500003, + 64.1462932170001 + ], + [ + 136.1446986850001, + 64.21203131000004 + ], + [ + 136.16600062200018, + 64.37712378900011 + ], + [ + 136.2552036850002, + 64.4955914300001 + ], + [ + 136.23370360100012, + 64.54396389599998 + ], + [ + 135.79060367700026, + 64.55560736500013 + ], + [ + 135.8372037050002, + 64.62471749800017 + ], + [ + 136.14689658800012, + 64.71613707199998 + ], + [ + 136.24989358200003, + 64.80944944800012 + ], + [ + 136.2462006830001, + 65.0115611060001 + ], + [ + 135.61090070100022, + 64.99295227500005 + ], + [ + 135.33520465100014, + 64.97049832900012 + ] + ] + ], + [ + [ + [ + 126.74161566400005, + 65.04872612899999 + ], + [ + 126.74710061400003, + 64.88108471300018 + ], + [ + 126.94789866000019, + 64.66118715900006 + ], + [ + 127.30020161800007, + 64.50934848000009 + ], + [ + 127.52809869200007, + 64.67351023300006 + ], + [ + 127.45870156300032, + 64.82267106200004 + ], + [ + 127.6472016810003, + 64.90331787800005 + ], + [ + 127.60030359200016, + 64.95976245300017 + ], + [ + 127.15319862700028, + 64.98658873400012 + ], + [ + 126.98000369600004, + 65.05800355500008 + ], + [ + 126.74161566400005, + 65.04872612899999 + ] + ] + ], + [ + [ + [ + 136.27976970200007, + 65.392851367 + ], + [ + 136.30009464400007, + 65.26746329200006 + ], + [ + 136.37919667600033, + 65.23838630200015 + ], + [ + 136.78419464700005, + 65.39281247499997 + ], + [ + 136.74380460300017, + 65.46333529400005 + ], + [ + 136.43960555500018, + 65.48914652600013 + ], + [ + 136.27976970200007, + 65.392851367 + ] + ] + ], + [ + [ + [ + 134.04060361100005, + 65.32670138700007 + ], + [ + 134.04750057600006, + 65.18238429200017 + ], + [ + 134.24319454600004, + 65.148667752 + ], + [ + 134.4642027020002, + 65.251845962 + ], + [ + 134.55900554700008, + 65.34305112700014 + ], + [ + 134.81880163100016, + 65.40708819700006 + ], + [ + 135.0785975460002, + 65.37405846900009 + ], + [ + 135.35389663000012, + 65.37956018300002 + ], + [ + 135.46229559300002, + 65.47146858899998 + ], + [ + 135.49639870700014, + 65.6378354540002 + ], + [ + 135.68969763200005, + 65.81573162600012 + ], + [ + 135.49310260800019, + 65.91011872900009 + ], + [ + 135.3128056910001, + 65.85630657500008 + ], + [ + 135.09539756200002, + 65.72618088100012 + ], + [ + 135.01300060400013, + 65.61846370200016 + ], + [ + 134.72439558400004, + 65.56523777900009 + ], + [ + 134.44110066800022, + 65.73751069900015 + ], + [ + 134.21879566400025, + 65.73418442500008 + ], + [ + 134.07809469000017, + 65.57826962600018 + ], + [ + 134.0872956730002, + 65.43712642300017 + ], + [ + 134.04060361100005, + 65.32670138700007 + ] + ] + ], + [ + [ + [ + 137.10299664700017, + 65.8619066920001 + ], + [ + 137.16650364500015, + 65.76419147100006 + ], + [ + 137.62879963600028, + 65.75670760500009 + ], + [ + 137.7088015490002, + 65.8273590020001 + ], + [ + 137.63470468700007, + 65.87647159000011 + ], + [ + 137.33340460400007, + 65.91520838800011 + ], + [ + 137.10299664700017, + 65.8619066920001 + ] + ] + ], + [ + [ + [ + 155.62750257900018, + 65.92173973500007 + ], + [ + 155.5839996630001, + 66.00002855400015 + ], + [ + 155.39930761100015, + 66.06047146400005 + ], + [ + 155.2301026350002, + 66.07663110300012 + ], + [ + 154.8231966070001, + 66.03462133900001 + ], + [ + 154.63130165100006, + 66.03240902000005 + ], + [ + 154.34779366600014, + 65.93577037000006 + ], + [ + 154.4530026440001, + 65.87504499 + ], + [ + 154.75160258100004, + 65.8241998630001 + ], + [ + 155.17160063900008, + 65.82231561100019 + ], + [ + 155.42930560500008, + 65.85866373400017 + ], + [ + 155.62750257900018, + 65.92173973500007 + ] + ] + ], + [ + [ + [ + 137.0272976680002, + 65.97163821000015 + ], + [ + 137.03689561700003, + 66.16354205100015 + ], + [ + 136.97470055500003, + 66.24802710900013 + ], + [ + 136.59910562900006, + 66.26829103000017 + ], + [ + 136.4172055890001, + 66.14984702700013 + ], + [ + 136.35719267100023, + 65.9681280370001 + ], + [ + 136.15739458600012, + 65.72203770600004 + ], + [ + 136.24240066300013, + 65.63717143900004 + ], + [ + 136.4275966350001, + 65.66363159899998 + ], + [ + 136.69700659400007, + 65.865722135 + ], + [ + 137.0272976680002, + 65.97163821000015 + ] + ] + ], + [ + [ + [ + 145.47030660200016, + 67.24430112700003 + ], + [ + 145.4898065960001, + 67.39804920400007 + ], + [ + 145.37910462200034, + 67.43265825000015 + ], + [ + 144.8816066490001, + 67.35794732900018 + ], + [ + 144.7872006030001, + 67.46565713200005 + ], + [ + 144.59950263300004, + 67.48097757500017 + ], + [ + 144.52529865000008, + 67.36864397900007 + ], + [ + 144.28120455400006, + 67.28498336500007 + ], + [ + 144.1139986610001, + 67.34996691900017 + ], + [ + 144.11939962400015, + 67.49582544600008 + ], + [ + 143.8623965590001, + 67.51750875800019 + ], + [ + 143.6573946530001, + 67.43486319300007 + ], + [ + 143.5478976600001, + 67.26031626200006 + ], + [ + 143.89480569000023, + 67.05099331700018 + ], + [ + 144.13040171000011, + 66.95574220800012 + ], + [ + 144.2315976010001, + 66.786292312 + ], + [ + 144.07620264800005, + 66.56576913300017 + ], + [ + 144.08639571300012, + 66.4700843440001 + ], + [ + 144.2456966330002, + 66.39202300900001 + ], + [ + 144.6996006620002, + 66.31419921700018 + ], + [ + 145.26690664500006, + 66.10782904900009 + ], + [ + 145.57269255500023, + 66.06847467300008 + ], + [ + 146.09060666400023, + 66.07031399800013 + ], + [ + 146.25840767200032, + 65.98055772900017 + ], + [ + 146.32330372000013, + 65.86885696600012 + ], + [ + 146.71080061200007, + 65.75023727800004 + ], + [ + 147.21969562700008, + 65.69669937999998 + ], + [ + 147.28880257400021, + 65.60561508300015 + ], + [ + 147.2633976960002, + 65.47033099800012 + ], + [ + 147.33189360300003, + 65.36893930600013 + ], + [ + 147.55029264000018, + 65.18915972000013 + ], + [ + 147.6593936710001, + 65.13023477300015 + ], + [ + 147.6752016060002, + 64.94972998499998 + ], + [ + 147.81329362800022, + 64.89416953400001 + ], + [ + 147.99490365400015, + 64.87063214400013 + ], + [ + 148.4954985720001, + 64.93225723700004 + ], + [ + 148.66920463100018, + 65.0137132430001 + ], + [ + 148.94580056300015, + 65.2236450490002 + ], + [ + 149.17649870200023, + 65.26944745600014 + ], + [ + 149.3766935860001, + 65.1388250500001 + ], + [ + 149.32220467700017, + 65.07076802000006 + ], + [ + 148.792007559, + 64.83553493600016 + ], + [ + 148.63890069800004, + 64.74177329100007 + ], + [ + 148.7633976090001, + 64.61026676199998 + ], + [ + 149.06869468600007, + 64.5959761200001 + ], + [ + 149.35369867300005, + 64.67369279100006 + ], + [ + 149.65769957200007, + 64.85191652800006 + ], + [ + 149.98150657400004, + 64.87996287900006 + ], + [ + 150.281600668, + 64.96644702000003 + ], + [ + 150.25070162100008, + 65.02802567800012 + ], + [ + 149.73319956500018, + 65.22990247500013 + ], + [ + 149.59280369300006, + 65.33350665400013 + ], + [ + 149.5581056310001, + 65.51102832300006 + ], + [ + 149.7259066390002, + 65.72527982600008 + ], + [ + 149.2971955930002, + 65.83184516400001 + ], + [ + 148.96749862800016, + 65.81539551100013 + ], + [ + 148.875900687, + 65.88848872500012 + ], + [ + 148.87879965200023, + 66.01505948599998 + ], + [ + 148.5635986860001, + 66.0317451730001 + ], + [ + 148.21060170600003, + 66.12440878899997 + ], + [ + 147.3894046910002, + 66.1570182480001 + ], + [ + 146.97639462600011, + 66.26100481000003 + ], + [ + 146.79049658600002, + 66.41035825400019 + ], + [ + 146.571502602, + 66.52228666900004 + ], + [ + 146.19880664100003, + 66.56117601800014 + ], + [ + 146.09779364300005, + 66.59388455100009 + ], + [ + 145.91729757300016, + 66.77129976900005 + ], + [ + 145.69079558200008, + 66.85867641600015 + ], + [ + 145.38529968600005, + 66.9193251850001 + ], + [ + 145.2032926940002, + 66.93013700200004 + ], + [ + 145.10119658700012, + 66.98050151200005 + ], + [ + 145.22900367900024, + 67.04803316400012 + ], + [ + 145.26010171300004, + 67.1607167890001 + ], + [ + 145.47030660200016, + 67.24430112700003 + ] + ] + ], + [ + [ + [ + 134.90139757500003, + 66.03449929900006 + ], + [ + 135.1056975800003, + 66.03242427500015 + ], + [ + 135.36189263000006, + 66.07790548700007 + ], + [ + 135.45480368000017, + 66.15721723500013 + ], + [ + 135.42179859500004, + 66.26313381300002 + ], + [ + 135.30529768500003, + 66.35813162200009 + ], + [ + 135.11970558500002, + 66.38943685600003 + ], + [ + 134.4001005880002, + 66.21848442100003 + ], + [ + 134.0941006050001, + 66.179129541 + ], + [ + 133.88619956600007, + 66.08329203400012 + ], + [ + 133.89289855100003, + 66.01935420600006 + ], + [ + 134.14599565000003, + 65.95691254700006 + ], + [ + 134.50779765100003, + 66.00793285700018 + ], + [ + 134.90139757500003, + 66.03449929900006 + ] + ] + ], + [ + [ + [ + 158.08970658800013, + 65.87238222700006 + ], + [ + 158.42810061500006, + 65.91154599900005 + ], + [ + 158.4528956260001, + 65.9857298660001 + ], + [ + 157.9364015790003, + 66.08733596700017 + ], + [ + 157.61590559600006, + 66.131718144 + ], + [ + 157.41780065600017, + 66.27506662600018 + ], + [ + 157.7301026570001, + 66.41492873900006 + ], + [ + 157.66470369600017, + 66.46886326800018 + ], + [ + 157.39320362600017, + 66.45421337800019 + ], + [ + 157.10729959000003, + 66.40864080199998 + ], + [ + 156.87489372200014, + 66.41532453200006 + ], + [ + 156.71319557800018, + 66.54890759400007 + ], + [ + 156.60299668500022, + 66.58286000100009 + ], + [ + 156.28979463500013, + 66.55198928400017 + ], + [ + 156.01390060400013, + 66.488845222 + ], + [ + 155.65109260700012, + 66.44770516500006 + ], + [ + 155.2422946160001, + 66.44789610500004 + ], + [ + 155.07879671000023, + 66.41730048200009 + ], + [ + 154.99850461500012, + 66.34385673700018 + ], + [ + 155.03750561000004, + 66.26324076600008 + ], + [ + 155.23139965100006, + 66.2262358370001 + ], + [ + 155.8515925930002, + 66.18015230100008 + ], + [ + 156.2947996370002, + 66.22142998900006 + ], + [ + 156.67100560400002, + 66.2375054740001 + ], + [ + 156.90269465100005, + 66.19751759300004 + ], + [ + 156.94990572100016, + 66.05924334800005 + ], + [ + 157.05720564900014, + 65.97601725200013 + ], + [ + 157.25799564800013, + 65.92083851200005 + ], + [ + 157.7765047050001, + 65.87552527300005 + ], + [ + 158.08970658800013, + 65.87238222700006 + ] + ] + ], + [ + [ + [ + 153.64419559100008, + 66.35607956400014 + ], + [ + 153.8937986090002, + 66.31504629200015 + ], + [ + 154.0393066040001, + 66.19482432000018 + ], + [ + 154.26010169200003, + 66.20256869500014 + ], + [ + 154.3986056010001, + 66.24976618600004 + ], + [ + 154.70840459900023, + 66.40528401800009 + ], + [ + 154.9953007160002, + 66.64058683900015 + ], + [ + 154.89059465200023, + 66.70681343000018 + ], + [ + 154.6174926330001, + 66.7315945260001 + ], + [ + 154.06260661900012, + 66.6355654080001 + ], + [ + 153.85949667600005, + 66.65573159700006 + ], + [ + 153.71470667500012, + 66.76284611700015 + ], + [ + 153.55859356000008, + 66.79514276300017 + ], + [ + 153.32589767900004, + 66.71696072900016 + ], + [ + 153.2586055810001, + 66.60912938900009 + ], + [ + 152.9602966640001, + 66.39678443300016 + ], + [ + 152.98930358100006, + 66.26001272800016 + ], + [ + 153.33000162600013, + 66.24509679600004 + ], + [ + 153.64419559100008, + 66.35607956400014 + ] + ] + ], + [ + [ + [ + 139.0919035850003, + 67.74309963600007 + ], + [ + 138.92300454700012, + 67.79879688000011 + ], + [ + 138.57679758000006, + 67.99375374500005 + ], + [ + 138.67790261100026, + 68.32278200200017 + ], + [ + 138.51489269900014, + 68.38423208100016 + ], + [ + 138.00869766300013, + 68.44002135800008 + ], + [ + 137.82919266900012, + 68.49164399099999 + ], + [ + 138.08489955700009, + 68.65189357500003 + ], + [ + 138.05310062800004, + 68.74182586400019 + ], + [ + 137.84590165800012, + 68.7993781900002 + ], + [ + 137.27900655600013, + 68.78303482000013 + ], + [ + 136.77540555100006, + 68.8154389230001 + ], + [ + 136.60719265700004, + 68.72269048200019 + ], + [ + 136.8298036000001, + 68.59565351900005 + ], + [ + 137.16099556100005, + 68.44621625500008 + ], + [ + 137.2371065950001, + 68.20055189300001 + ], + [ + 136.80450466900004, + 68.15014916200016 + ], + [ + 136.0106046630002, + 68.43290981600018 + ], + [ + 135.69479366200017, + 68.28628769800008 + ], + [ + 135.64909368100018, + 68.03679347700012 + ], + [ + 136.35290566300012, + 67.80919630700015 + ], + [ + 136.85870356400017, + 67.59194542300003 + ], + [ + 137.12300056200002, + 67.44284360300009 + ], + [ + 137.96629361500004, + 67.23705312800013 + ], + [ + 137.63929763500016, + 66.86761873300009 + ], + [ + 137.24099764200014, + 66.65995121500009 + ], + [ + 136.9270936920002, + 66.39759345400006 + ], + [ + 137.39270070200018, + 66.06902402300011 + ], + [ + 137.77499360700006, + 65.94457455300011 + ], + [ + 138.32380659600017, + 65.95297506400016 + ], + [ + 138.62449664400003, + 65.92057967900018 + ], + [ + 138.79310566800018, + 65.79210203500014 + ], + [ + 139.17489666400002, + 65.63098408600013 + ], + [ + 139.15260365100005, + 65.47887668300012 + ], + [ + 139.21769767900003, + 65.36014182800017 + ], + [ + 139.42959571200015, + 65.30095788000017 + ], + [ + 140.33549470900005, + 65.37953688100009 + ], + [ + 140.45050062300004, + 65.33295747200015 + ], + [ + 140.40089467600023, + 65.11628695100018 + ], + [ + 140.5355985660001, + 64.94258743000012 + ], + [ + 140.79469258100005, + 64.93801040800014 + ], + [ + 141.15679968300003, + 64.97728850900006 + ], + [ + 141.45765669800016, + 65.04615472900008 + ], + [ + 141.79150371100002, + 64.96058672900017 + ], + [ + 142.47590655800025, + 64.93932251100006 + ], + [ + 142.8135986850001, + 65.03566310000019 + ], + [ + 142.63240071400003, + 65.20138221100007 + ], + [ + 142.3300015960001, + 65.36302587300014 + ], + [ + 141.8410037110001, + 65.48890227800018 + ], + [ + 141.62370270300005, + 65.6029979170001 + ], + [ + 141.6455995870001, + 65.71411043700004 + ], + [ + 142.12480170900017, + 65.89610351600015 + ], + [ + 142.13349961000017, + 65.97500220300009 + ], + [ + 141.5449986440001, + 66.18877409400017 + ], + [ + 141.47889660900012, + 66.27591370099998 + ], + [ + 141.57730065500004, + 66.35546148200012 + ], + [ + 141.7816926940003, + 66.36325866400011 + ], + [ + 142.06269868000015, + 66.31780846499998 + ], + [ + 142.69290162600032, + 66.18031273100007 + ], + [ + 142.9075016490002, + 66.25241436500005 + ], + [ + 142.91679366000017, + 66.33124415300006 + ], + [ + 142.69549565800003, + 66.40728310200012 + ], + [ + 142.37229969700002, + 66.46686401700003 + ], + [ + 141.98919659800004, + 66.56937033400015 + ], + [ + 141.23399365900002, + 66.53460169700008 + ], + [ + 140.81979369900023, + 66.68240532700008 + ], + [ + 140.53930655200008, + 66.84418729100008 + ], + [ + 140.49229463600022, + 66.93270823500006 + ], + [ + 140.60240166300002, + 67.24147106100014 + ], + [ + 140.391296559, + 67.37390898700016 + ], + [ + 139.70809970000005, + 67.45714229200007 + ], + [ + 139.48660271200015, + 67.61987811600011 + ], + [ + 139.0919035850003, + 67.74309963600007 + ] + ] + ], + [ + [ + [ + 142.95590160800032, + 67.74026135600008 + ], + [ + 142.8925015630001, + 67.77609047200019 + ], + [ + 142.5503995490003, + 67.8229069210002 + ], + [ + 142.1920016070003, + 67.77414503199998 + ], + [ + 141.74079856100002, + 67.63299361499998 + ], + [ + 141.3699037040003, + 67.44307293200018 + ], + [ + 141.2882996740001, + 67.24977166000014 + ], + [ + 141.4008025840002, + 67.09733652500017 + ], + [ + 141.81050062400004, + 67.04952799300008 + ], + [ + 141.99119568100002, + 67.08899720200003 + ], + [ + 142.26229861700006, + 67.23800715599998 + ], + [ + 142.21299760400018, + 67.47795623400003 + ], + [ + 142.4685977060002, + 67.60977641300013 + ], + [ + 142.8674006130001, + 67.69656515400004 + ], + [ + 142.95590160800032, + 67.74026135600008 + ] + ] + ], + [ + [ + [ + 148.44410660900007, + 68.28167161700014 + ], + [ + 148.19709762200023, + 68.21698595500015 + ], + [ + 148.02020258500022, + 68.06572596300003 + ], + [ + 147.5491025780001, + 67.81894747800004 + ], + [ + 147.63890058900017, + 67.75142336900018 + ], + [ + 148.1259005630002, + 67.64694864500018 + ], + [ + 148.27929660000007, + 67.58062314800003 + ], + [ + 148.344100614, + 67.42703499800012 + ], + [ + 148.4759975720002, + 67.35755807400005 + ], + [ + 148.65130658500004, + 67.3662936930001 + ], + [ + 148.82940660500003, + 67.42665378900011 + ], + [ + 148.9328005660002, + 67.57316057200018 + ], + [ + 148.8231045880002, + 67.77770030000016 + ], + [ + 149.33450361200016, + 67.89761113600014 + ], + [ + 149.3616946730001, + 67.9574051190001 + ], + [ + 148.90249663300006, + 68.04514755200006 + ], + [ + 148.68730166300008, + 68.14703645900005 + ], + [ + 148.5805966820002, + 68.25599818200016 + ], + [ + 148.44410660900007, + 68.28167161700014 + ] + ] + ], + [ + [ + [ + 149.3912506050001, + 68.95928361300008 + ], + [ + 149.59759562700003, + 69.05023044800015 + ], + [ + 149.40260355700013, + 69.15849781500015 + ], + [ + 149.0946046580002, + 69.20536070000009 + ], + [ + 148.68710368200027, + 69.11568758000016 + ], + [ + 148.5328976180001, + 69.04300541499998 + ], + [ + 148.11990364700011, + 68.74762513500013 + ], + [ + 148.13529969400008, + 68.64983363800002 + ], + [ + 148.3101956480001, + 68.54500687500013 + ], + [ + 148.43980367500012, + 68.51670018200008 + ], + [ + 148.65179458000023, + 68.60355111600006 + ], + [ + 148.76989760700008, + 68.77103361100018 + ], + [ + 149.3912506050001, + 68.95928361300008 + ] + ] + ], + [ + [ + [ + 126.72959869700003, + 69.39551808800007 + ], + [ + 126.32479853900008, + 68.9853620610001 + ], + [ + 126.70890059300007, + 68.89074479099997 + ], + [ + 127.08979757600014, + 68.94270387300014 + ], + [ + 127.48490154900026, + 68.96791999100003 + ], + [ + 127.49210361500002, + 69.06627676300008 + ], + [ + 127.24109662800015, + 69.37274294800017 + ], + [ + 127.03209655400008, + 69.42116972900016 + ], + [ + 126.72959869700003, + 69.39551808800007 + ] + ] + ], + [ + [ + [ + 133.85440063700014, + 69.49770471900018 + ], + [ + 134.08340462600006, + 69.71619226900009 + ], + [ + 134.3708036580001, + 70.06260224600004 + ], + [ + 134.20359759700034, + 70.15405316900006 + ], + [ + 133.90789763200007, + 70.15269530000006 + ], + [ + 133.56959563700002, + 70.08768140400014 + ], + [ + 133.55529761900004, + 69.94895554100015 + ], + [ + 133.28309665400002, + 69.69289778700005 + ], + [ + 133.3202056870001, + 69.5566600090001 + ], + [ + 133.0715945830001, + 69.45040714900006 + ], + [ + 132.5411986460001, + 69.07558436400006 + ], + [ + 132.16740465600026, + 68.69322390100007 + ], + [ + 132.33459462300016, + 68.42528831900006 + ], + [ + 132.93629457200007, + 68.46783955400014 + ], + [ + 133.33149761900006, + 68.73399699900017 + ], + [ + 133.7277066620003, + 68.95025714200011 + ], + [ + 133.91619856600016, + 69.280796823 + ], + [ + 133.85440063700014, + 69.49770471900018 + ] + ] + ], + [ + [ + [ + 110.76360366900008, + 69.27357095200017 + ], + [ + 110.91069752000004, + 69.36081818200012 + ], + [ + 110.75309762400002, + 69.47484542500007 + ], + [ + 110.42209660200007, + 69.5772603800001 + ], + [ + 110.30509965100003, + 69.58054960600009 + ], + [ + 109.44020056599999, + 69.4938135050001 + ], + [ + 109.05159759700007, + 69.36731851600007 + ], + [ + 108.99389657500018, + 69.20027892000007 + ], + [ + 109.3861005770001, + 69.189566345 + ], + [ + 109.75900256500006, + 69.23468914700015 + ], + [ + 110.53250152200008, + 69.21002958800005 + ], + [ + 110.76360366900008, + 69.27357095200017 + ] + ] + ], + [ + [ + [ + 113.48799863900012, + 69.2028501530001 + ], + [ + 113.80090363400006, + 69.21912428800005 + ], + [ + 113.92800161700006, + 69.35911598500019 + ], + [ + 113.64040359900002, + 69.55083106600017 + ], + [ + 113.26589966200004, + 69.6360404880001 + ], + [ + 113.03189855000016, + 69.56741784600018 + ], + [ + 113.02100358500013, + 69.47466270000012 + ], + [ + 113.14099857600002, + 69.31217011900009 + ], + [ + 113.48799863900012, + 69.2028501530001 + ] + ] + ], + [ + [ + [ + 111.646400632, + 69.31573360100003 + ], + [ + 111.9720005220002, + 69.33420480100017 + ], + [ + 111.95639761000012, + 69.60389689500016 + ], + [ + 111.86029858700005, + 69.70737182500005 + ], + [ + 111.51210058200013, + 69.8611975180001 + ], + [ + 111.0076975980001, + 69.83812398300012 + ], + [ + 110.9956965560001, + 69.75321949400018 + ], + [ + 111.15489957500012, + 69.60159941500012 + ], + [ + 111.35320266400004, + 69.50681450700006 + ], + [ + 111.45359758000018, + 69.39572428300016 + ], + [ + 111.646400632, + 69.31573360100003 + ] + ] + ], + [ + [ + [ + 119.78469855100002, + 70.16850424000017 + ], + [ + 120.09549767700003, + 70.11823142900005 + ], + [ + 120.3188016360001, + 70.23944581900003 + ], + [ + 120.25189963200012, + 70.32693713000003 + ], + [ + 119.88069967400008, + 70.34860669700015 + ], + [ + 119.7282026800001, + 70.29388510700005 + ], + [ + 119.78469855100002, + 70.16850424000017 + ] + ] + ], + [ + [ + [ + 120.98899866600016, + 70.09560884000007 + ], + [ + 121.3470006470003, + 70.09328185600009 + ], + [ + 122.01879862000021, + 70.31554562100007 + ], + [ + 121.96459955800015, + 70.38738842200007 + ], + [ + 121.61450154400029, + 70.43587639100019 + ], + [ + 121.27539857500005, + 70.37864525900011 + ], + [ + 120.9446025750002, + 70.23534857700014 + ], + [ + 120.85350067500019, + 70.14166270400011 + ], + [ + 120.98899866600016, + 70.09560884000007 + ] + ] + ], + [ + [ + [ + 116.43599663400005, + 70.69467251300017 + ], + [ + 116.37950160000003, + 70.81702499800008 + ], + [ + 116.07579758800023, + 70.90781995200012 + ], + [ + 115.61280053400003, + 70.90907120300017 + ], + [ + 115.39929954600007, + 70.84736128500003 + ], + [ + 115.29029859500008, + 70.7242232480001 + ], + [ + 115.54129753600012, + 70.63538898800016 + ], + [ + 116.05439758300008, + 70.63325998500011 + ], + [ + 116.43599663400005, + 70.69467251300017 + ] + ] + ], + [ + [ + [ + 137.0621036880002, + 71.549665027 + ], + [ + 137.36920170100018, + 71.43765933100008 + ], + [ + 137.43649262600013, + 71.50013200200016 + ], + [ + 137.83369458900006, + 71.4491567870001 + ], + [ + 137.97650160000012, + 71.563879729 + ], + [ + 137.92340056700004, + 71.59632171700002 + ], + [ + 137.4626005780001, + 71.60898761100015 + ], + [ + 137.0621036880002, + 71.549665027 + ] + ] + ], + [ + [ + [ + 128.57080057500002, + 72.48569663000018 + ], + [ + 127.95832853900026, + 72.62126402400008 + ], + [ + 127.16470362700011, + 72.58904985500016 + ], + [ + 126.90442659000007, + 72.50904308100013 + ], + [ + 126.70110357900012, + 72.50182525600007 + ], + [ + 126.65358757600018, + 72.43013517300011 + ], + [ + 127.50444060300026, + 72.43819269700015 + ], + [ + 127.8093266320002, + 72.351792542 + ], + [ + 128.46429458100033, + 72.20997610400013 + ], + [ + 128.49439969500008, + 72.15088234600012 + ], + [ + 128.90190167700007, + 72.09633694300015 + ], + [ + 129.33949267900016, + 72.11995915800003 + ], + [ + 129.37680069700002, + 72.33226723400008 + ], + [ + 129.28019758700032, + 72.42937242000016 + ], + [ + 129.00129663200016, + 72.47323693100014 + ], + [ + 128.57080057500002, + 72.48569663000018 + ] + ] + ], + [ + [ + [ + 128.83886758500023, + 72.57543781200019 + ], + [ + 128.9091496760002, + 72.63489065099998 + ], + [ + 128.68829356800006, + 72.67099486100017 + ], + [ + 128.12329059700016, + 72.63460063700018 + ], + [ + 128.33828758700008, + 72.55680702100011 + ], + [ + 128.77996862200007, + 72.53986803200002 + ], + [ + 128.83886758500023, + 72.57543781200019 + ] + ] + ], + [ + [ + [ + 128.82412767300025, + 72.75489335300011 + ], + [ + 128.30191063000018, + 72.78655733400018 + ], + [ + 127.87859367400006, + 72.76072263200007 + ], + [ + 127.6383205520001, + 72.69515117100008 + ], + [ + 128.0061035440002, + 72.65237781600013 + ], + [ + 128.63442961400006, + 72.69933273500004 + ], + [ + 128.82412767300025, + 72.75489335300011 + ] + ] + ], + [ + [ + [ + 128.84857165000028, + 72.88015955500003 + ], + [ + 128.4160766780002, + 72.89795282700015 + ], + [ + 128.32247965300007, + 72.82240254300012 + ], + [ + 128.83914167400007, + 72.79404958200013 + ], + [ + 128.84857165000028, + 72.88015955500003 + ] + ] + ], + [ + [ + [ + 128.8491206650001, + 72.90878744300011 + ], + [ + 129.2554625900002, + 72.91450976800007 + ], + [ + 129.19328261500016, + 72.96881159300017 + ], + [ + 128.8491206650001, + 72.90878744300011 + ] + ] + ], + [ + [ + [ + 128.865203693, + 73.1946556040001 + ], + [ + 128.26609760700023, + 73.28712995600017 + ], + [ + 128.42430167100008, + 73.36464881400008 + ], + [ + 128.0648036880001, + 73.36473280100017 + ], + [ + 128.11990363700022, + 73.42818313800012 + ], + [ + 127.47979764000013, + 73.48758149400015 + ], + [ + 127.2238005710002, + 73.53949514700014 + ], + [ + 127.03849764600011, + 73.48468236200006 + ], + [ + 126.73139963300002, + 73.48365960200016 + ], + [ + 126.57026659700011, + 73.36657899900013 + ], + [ + 126.60054069000023, + 73.25631187800008 + ], + [ + 126.76277158800008, + 73.17241472600006 + ], + [ + 126.77998365900021, + 73.08824181099999 + ], + [ + 126.66526759000021, + 72.99433365000004 + ], + [ + 126.36192366400007, + 72.91627985800017 + ], + [ + 126.44999668000014, + 72.78432858600013 + ], + [ + 126.3338776490001, + 72.71460741200008 + ], + [ + 126.38442957700022, + 72.60514880900013 + ], + [ + 126.30220059300018, + 72.50626615600015 + ], + [ + 126.92414853800005, + 72.57070773599997 + ], + [ + 127.31775667600004, + 72.70461216000018 + ], + [ + 127.64637757200023, + 72.7157218700001 + ], + [ + 128.17413354500013, + 72.80654733500006 + ], + [ + 128.37606767400007, + 72.91905711800007 + ], + [ + 128.64221154100005, + 72.93378294900003 + ], + [ + 128.98718268000016, + 72.99544710200018 + ], + [ + 129.13099669300004, + 73.11860860800016 + ], + [ + 128.7924046840003, + 73.14566438500015 + ], + [ + 128.865203693, + 73.1946556040001 + ] + ] + ], + [ + [ + [ + 125.65699756000004, + 73.54353120100018 + ], + [ + 125.19779968800003, + 73.59308015100004 + ], + [ + 125.2573016450001, + 73.68650836500012 + ], + [ + 124.96569858600003, + 73.67716841000015 + ], + [ + 124.27120158100001, + 73.81205686900012 + ], + [ + 123.98349761600002, + 73.64811388400011 + ], + [ + 123.38729854200005, + 73.65962760100018 + ], + [ + 123.35399657000028, + 73.55132184500013 + ], + [ + 123.4897996630001, + 73.47194773600012 + ], + [ + 123.21790363200023, + 73.43986432500003 + ], + [ + 123.65039860400032, + 73.20602397900007 + ], + [ + 123.37049869400005, + 73.15264550500007 + ], + [ + 123.45999864400017, + 73.070265813 + ], + [ + 123.28410356800009, + 72.9443496790002 + ], + [ + 123.08509857800004, + 72.91276314700008 + ], + [ + 122.73269654600006, + 73.01117272500005 + ], + [ + 122.51361069600011, + 72.94821792700014 + ], + [ + 122.97026063700002, + 72.88962138300002 + ], + [ + 123.25166359100012, + 72.8868442910001 + ], + [ + 123.67025768000019, + 72.79627782699998 + ], + [ + 124.16693154400002, + 72.75127673000009 + ], + [ + 124.47331256900031, + 72.66460164800009 + ], + [ + 124.76499961400009, + 72.6696061470002 + ], + [ + 124.90054353800019, + 72.59710754600013 + ], + [ + 125.15609754000013, + 72.55903375700018 + ], + [ + 125.29443364400015, + 72.4801409370001 + ], + [ + 125.7241516920003, + 72.36403028800004 + ], + [ + 126.16581764000034, + 72.3006875750001 + ], + [ + 126.3830415340002, + 72.38847677900014 + ], + [ + 126.24803153700009, + 72.53043721800009 + ], + [ + 126.27332258900014, + 72.70461216000018 + ], + [ + 126.38165265300006, + 72.79766570200019 + ], + [ + 126.3299866020003, + 72.92572542500017 + ], + [ + 126.56553668900006, + 72.98461315600014 + ], + [ + 126.71499658400023, + 73.0832366410001 + ], + [ + 126.55609162500002, + 73.23380462300003 + ], + [ + 126.49665856700017, + 73.36833400200015 + ], + [ + 126.30310064100001, + 73.38463227700015 + ], + [ + 126.29440257300007, + 73.46331873499997 + ], + [ + 126.4578015730001, + 73.49413597500006 + ], + [ + 126.31990065700006, + 73.5652386540001 + ], + [ + 125.96779668600004, + 73.52199960100012 + ], + [ + 125.63899960200001, + 73.41422777200012 + ], + [ + 125.51239766000026, + 73.4755035070001 + ], + [ + 125.65699756000004, + 73.54353120100018 + ] + ] + ], + [ + [ + [ + 120.28399662200002, + 73.01704726600019 + ], + [ + 120.22429668400025, + 73.13926999900008 + ], + [ + 119.74800056700008, + 73.15267601500011 + ], + [ + 119.75620259500033, + 73.04712421699998 + ], + [ + 120.28399662200002, + 73.01704726600019 + ] + ] + ], + [ + [ + [ + 143.59080462300017, + 73.21183062600011 + ], + [ + 143.45829763000006, + 73.26001315800005 + ], + [ + 143.45230071400022, + 73.37776481600008 + ], + [ + 143.58369459000005, + 73.42934989800005 + ], + [ + 143.47189358000003, + 73.52205358000009 + ], + [ + 143.23039267700028, + 73.61968515000018 + ], + [ + 142.8798976950003, + 73.69175761500014 + ], + [ + 142.59609969700023, + 73.79221992200007 + ], + [ + 141.95289558100023, + 73.89623045500008 + ], + [ + 141.3627016380002, + 73.85460139800011 + ], + [ + 141.15229759500005, + 73.89293418800014 + ], + [ + 140.8759006500003, + 73.77808183000019 + ], + [ + 140.81860363600003, + 73.62802430600004 + ], + [ + 140.56039458200019, + 73.49282286600004 + ], + [ + 140.3105925770002, + 73.44792905700012 + ], + [ + 139.85060161, + 73.465790223 + ], + [ + 139.89999365000017, + 73.37811568300009 + ], + [ + 140.24070762100007, + 73.36648813900007 + ], + [ + 140.51359556700004, + 73.42829009100018 + ], + [ + 140.7740935510003, + 73.419157337 + ], + [ + 141.33720355300022, + 73.33292398100014 + ], + [ + 141.9049076760001, + 73.29704088600005 + ], + [ + 142.4456026250001, + 73.23813069100004 + ], + [ + 142.7333986240002, + 73.26421668300014 + ], + [ + 143.13630665200003, + 73.19747158800004 + ], + [ + 143.59080462300017, + 73.21183062600011 + ] + ] + ], + [ + [ + [ + 124.3242035400001, + 73.87169276900005 + ], + [ + 124.67620055800012, + 73.89810749900016 + ], + [ + 124.57189967600016, + 73.97897677100013 + ], + [ + 124.3242035400001, + 73.87169276900005 + ] + ] + ], + [ + [ + [ + 135.42840554700024, + 74.17847428099998 + ], + [ + 135.67149364700015, + 74.1128800210002 + ], + [ + 135.77810659400018, + 74.00793121800012 + ], + [ + 136.13380455800007, + 73.88487632900018 + ], + [ + 136.35769659100004, + 73.93798105000019 + ], + [ + 136.16110257300022, + 74.08067524100011 + ], + [ + 135.58819563400004, + 74.23511080100008 + ], + [ + 135.42840554700024, + 74.17847428099998 + ] + ] + ], + [ + [ + [ + 141.04890464000016, + 74.15050370300014 + ], + [ + 140.93060262600022, + 74.23482849900017 + ], + [ + 140.6654055800003, + 74.2650279930001 + ], + [ + 140.1867975670002, + 74.24475535400006 + ], + [ + 139.97070254800008, + 74.14761932200014 + ], + [ + 140.00100664800004, + 74.08981587400012 + ], + [ + 140.25610366900014, + 73.95385117799998 + ], + [ + 140.482406673, + 73.90933002900005 + ], + [ + 141.0498046890001, + 73.97523760400009 + ], + [ + 141.11430360200006, + 74.07141223200006 + ], + [ + 141.04890464000016, + 74.15050370300014 + ] + ] + ], + [ + [ + [ + 112.93589759600013, + 74.17048599200012 + ], + [ + 113.24490366500004, + 74.20810095600007 + ], + [ + 113.56430061200012, + 74.43538766000006 + ], + [ + 113.33599852400027, + 74.49957795100016 + ], + [ + 112.71230362300003, + 74.5079328650001 + ], + [ + 112.18029752200005, + 74.55030170900005 + ], + [ + 112.01689952800007, + 74.54034417600013 + ], + [ + 112.05709863300001, + 74.44339891600015 + ], + [ + 111.9498976110001, + 74.35407649400014 + ], + [ + 111.5942995600002, + 74.36442998800004 + ], + [ + 111.5055006720001, + 74.30674053400003 + ], + [ + 111.83280158600002, + 74.23225726600015 + ], + [ + 112.10089860300013, + 74.10564744500005 + ], + [ + 112.87039956000012, + 74.0901058880001 + ], + [ + 112.93589759600013, + 74.17048599200012 + ] + ] + ], + [ + [ + [ + 148.44949365800016, + 75.36228164800008 + ], + [ + 147.94659455500016, + 75.3604731690001 + ], + [ + 147.46760566800003, + 75.39896555100017 + ], + [ + 147.18020663700008, + 75.27544546700017 + ], + [ + 146.85650658800012, + 75.30607998200009 + ], + [ + 146.66709871000012, + 75.38556104300005 + ], + [ + 146.74600259400006, + 75.48944853100011 + ], + [ + 146.4033966600001, + 75.5369529670001 + ], + [ + 146.24909956900012, + 75.35190468500008 + ], + [ + 146.2100985730001, + 75.17991926300016 + ], + [ + 147.1336976350002, + 74.98138248700019 + ], + [ + 147.56370569700005, + 74.94272917300015 + ], + [ + 148.02760363700008, + 74.80986276400017 + ], + [ + 148.4100036630001, + 74.76627301200006 + ], + [ + 149.15669260000016, + 74.71281021600004 + ], + [ + 149.43530270300005, + 74.70674507000018 + ], + [ + 149.85240162800005, + 74.79618986800006 + ], + [ + 150.3903045650003, + 74.83024989900008 + ], + [ + 150.75309764200006, + 74.90481698600007 + ], + [ + 150.70030171100007, + 75.02118043399997 + ], + [ + 150.88989264900022, + 75.09643316000012 + ], + [ + 150.28149472100006, + 75.14155713600013 + ], + [ + 150.14419562700004, + 75.19087625500009 + ], + [ + 149.7203977170002, + 75.18836570700006 + ], + [ + 149.37809772200012, + 75.24226335600008 + ], + [ + 148.89237967600025, + 75.17137391300014 + ], + [ + 148.5275876830001, + 75.2058994750002 + ], + [ + 148.54289270300012, + 75.33083945300012 + ], + [ + 148.44949365800016, + 75.36228164800008 + ] + ] + ], + [ + [ + [ + 140.53900161800004, + 75.79191369800009 + ], + [ + 139.9976956290003, + 75.85300553500014 + ], + [ + 140.05129957600002, + 75.93057988100014 + ], + [ + 139.37368757900003, + 76.05129957100007 + ], + [ + 139.1528016320001, + 76.11471185400012 + ], + [ + 139.15220668400013, + 76.21327431800012 + ], + [ + 138.80360366600019, + 76.21542628800017 + ], + [ + 138.66909758900022, + 76.1691813160001 + ], + [ + 138.26789863200008, + 76.12859060900013 + ], + [ + 138.27270464700007, + 76.01707911000011 + ], + [ + 137.67050161600014, + 76.00033894100011 + ], + [ + 137.47470069300016, + 75.92610008900004 + ], + [ + 137.87649560400007, + 75.741876251 + ], + [ + 137.37089568400006, + 75.7608676320001 + ], + [ + 137.1708986120001, + 75.71721669200008 + ], + [ + 137.5554046750001, + 75.58711932800014 + ], + [ + 137.2908936030002, + 75.52905620800016 + ], + [ + 137.1920015620003, + 75.35577293300003 + ], + [ + 136.93020656300007, + 75.31026908900003 + ], + [ + 137.11149556200007, + 75.17069464300005 + ], + [ + 137.72309856200013, + 74.953976178 + ], + [ + 138.04119866100007, + 74.77595561900017 + ], + [ + 138.3990936890002, + 74.71728129000013 + ], + [ + 139.15899669600003, + 74.64024975600006 + ], + [ + 139.42239364500028, + 74.65254148200012 + ], + [ + 139.59269765700003, + 74.78902501700009 + ], + [ + 139.56869456900017, + 74.97916932900006 + ], + [ + 139.83149757600006, + 74.97012072900009 + ], + [ + 139.9929965660001, + 74.83652123900009 + ], + [ + 140.28030356400006, + 74.81300564200018 + ], + [ + 140.4396976910001, + 74.85733585200006 + ], + [ + 141.5379026930002, + 74.93184963000016 + ], + [ + 141.9463045550002, + 75.01997444500012 + ], + [ + 141.9974056660002, + 74.93481732700013 + ], + [ + 142.23359663400015, + 74.8397868290001 + ], + [ + 142.64460761500015, + 74.82408433900014 + ], + [ + 142.925506648, + 74.87426662600006 + ], + [ + 143.53590366000003, + 74.90615155300009 + ], + [ + 143.73089556200011, + 74.94685742800004 + ], + [ + 142.68339571, + 75.12357275700009 + ], + [ + 142.48109462100012, + 75.20766218900002 + ], + [ + 142.28529369800003, + 75.34836433599997 + ], + [ + 142.1266175650003, + 75.54723856800018 + ], + [ + 142.17260755900008, + 75.63147183400014 + ], + [ + 142.65020756400008, + 75.73088154099997 + ], + [ + 143.09820570500017, + 75.70227762500014 + ], + [ + 143.0229036920001, + 75.5786963540001 + ], + [ + 142.80020155400018, + 75.5596359060001 + ], + [ + 142.51210062200005, + 75.40162177600013 + ], + [ + 142.91690061300005, + 75.16142543200004 + ], + [ + 143.06509366700027, + 75.15447381700017 + ], + [ + 143.3813936680001, + 75.05913872000008 + ], + [ + 143.6723935660001, + 75.06252618300016 + ], + [ + 144.03320264600006, + 74.99645164000009 + ], + [ + 144.49670362000006, + 75.03065584000007 + ], + [ + 144.60821562200022, + 75.11625619400019 + ], + [ + 144.9313966630002, + 75.26236114800014 + ], + [ + 144.76570169200033, + 75.33371545200015 + ], + [ + 144.84899869900005, + 75.40793133699998 + ], + [ + 145.09419266800012, + 75.4616608450001 + ], + [ + 145.3856046200001, + 75.4781646450001 + ], + [ + 145.28340156000013, + 75.55938528700005 + ], + [ + 144.73501571200018, + 75.63188422300004 + ], + [ + 144.5668946830001, + 75.70311648600017 + ], + [ + 144.29190070000016, + 75.72222169400015 + ], + [ + 143.68420366700002, + 75.85724778400004 + ], + [ + 143.31739767000033, + 75.80290036200017 + ], + [ + 142.49400359000015, + 75.89409982700016 + ], + [ + 141.7803956780001, + 76.1112244790001 + ], + [ + 141.65220670600002, + 75.99768388899997 + ], + [ + 141.13200366700028, + 76.04403614900002 + ], + [ + 141.00070165600005, + 76.0019573190001 + ], + [ + 141.04989655500003, + 75.80054303500009 + ], + [ + 141.1855926940002, + 75.714096444 + ], + [ + 141.00399758800006, + 75.60759866500007 + ], + [ + 140.5279997, + 75.65453749000005 + ], + [ + 140.53900161800004, + 75.79191369800009 + ] + ] + ], + [ + [ + [ + 135.64849856600006, + 75.87971832500006 + ], + [ + 135.46929967900007, + 75.67042270500019 + ], + [ + 135.58859260100007, + 75.53969200500006 + ], + [ + 135.41259761300023, + 75.43810015400015 + ], + [ + 135.6979975600001, + 75.36887351200016 + ], + [ + 136.00819369200008, + 75.42435064700015 + ], + [ + 135.92219570100008, + 75.50485379800011 + ], + [ + 136.13659657000017, + 75.62152201200001 + ], + [ + 135.8581997020001, + 75.71033414300007 + ], + [ + 135.64849856600006, + 75.87971832500006 + ] + ] + ], + [ + [ + [ + 112.11550155500015, + 76.60383446100019 + ], + [ + 112.49120360100017, + 76.45881932200007 + ], + [ + 112.80149864000009, + 76.53659835400015 + ], + [ + 112.5771026860001, + 76.63367403700016 + ], + [ + 112.11550155500015, + 76.60383446100019 + ] + ] + ], + [ + [ + [ + 148.4870906850001, + 76.6424026150001 + ], + [ + 149.26820359600003, + 76.64379853800006 + ], + [ + 149.23550461800005, + 76.69928371900016 + ], + [ + 149.48269666600004, + 76.78893555000019 + ], + [ + 148.78971862900016, + 76.75394445700005 + ], + [ + 148.4870906850001, + 76.6424026150001 + ] + ] + ], + [ + [ + [ + 107.37889862700018, + 77.22159681900013 + ], + [ + 107.87219961300002, + 77.26973341899998 + ], + [ + 107.88860366900019, + 77.33788399100013 + ], + [ + 107.44650253200012, + 77.33538165800007 + ], + [ + 107.37889862700018, + 77.22159681900013 + ] + ] + ], + [ + [ + [ + 107.16249867400006, + 78.16210553300004 + ], + [ + 106.95700055999998, + 78.20304844700013 + ], + [ + 106.61630268200008, + 78.11699731500005 + ], + [ + 107.85900163600007, + 78.08316627700003 + ], + [ + 107.67349955800017, + 78.21811743300015 + ], + [ + 107.16249867400006, + 78.16210553300004 + ] + ] + ], + [ + [ + [ + 102.66390257000006, + 78.84609716300008 + ], + [ + 103.05850262200016, + 79.13719429000002 + ], + [ + 103.04959852700017, + 79.25585488200016 + ], + [ + 103.33920266900014, + 79.31053003700004 + ], + [ + 102.80650355300008, + 79.40894112400008 + ], + [ + 102.43789662000012, + 79.39747384200018 + ], + [ + 102.53299752600009, + 79.24949150900005 + ], + [ + 102.40869859600014, + 79.22528172300014 + ], + [ + 101.7520975160001, + 79.32280717800006 + ], + [ + 101.77809851500018, + 79.24009891600014 + ], + [ + 101.43229656100016, + 79.21303593000005 + ], + [ + 101.28630057200007, + 79.10952747200008 + ], + [ + 101.43139651200005, + 79.04787857400004 + ], + [ + 101.1239015330001, + 79.00957562400004 + ], + [ + 100.94660164900012, + 78.87373313600011 + ], + [ + 101.357597543, + 78.79687661600013 + ], + [ + 100.65830256900011, + 78.77749681800015 + ], + [ + 100.47299964400008, + 78.68807414800017 + ], + [ + 100.36939965600016, + 78.47999139000012 + ], + [ + 100.07820161100005, + 78.42992393500009 + ], + [ + 100.237701517, + 78.3688383010001 + ], + [ + 99.98137654700008, + 78.31503955900013 + ], + [ + 99.58210760700018, + 78.15674161700014 + ], + [ + 99.50670652000014, + 78.08841586300008 + ], + [ + 99.57454662700007, + 77.94494282600004 + ], + [ + 99.90458658, + 77.92374683700012 + ], + [ + 100.28130367400018, + 77.94521725000016 + ], + [ + 100.61280056900006, + 78.0381041600001 + ], + [ + 101.06089761600009, + 78.09433667200017 + ], + [ + 101.45099658700019, + 78.19687450500004 + ], + [ + 102.104896515, + 78.18951988800018 + ], + [ + 103.36019866600014, + 78.23213348400014 + ], + [ + 103.98130054199999, + 78.27855296700017 + ], + [ + 104.43379959700013, + 78.34063034700011 + ], + [ + 104.81970258700005, + 78.33479335800007 + ], + [ + 105.05729651800016, + 78.37409509600013 + ], + [ + 105.55950160000003, + 78.54904838200008 + ], + [ + 105.39739961600009, + 78.77520000900012 + ], + [ + 104.71700264800006, + 78.93729763400017 + ], + [ + 104.26809658000013, + 79.01915932400004 + ], + [ + 104.21099855200004, + 79.11342706900007 + ], + [ + 103.686599532, + 79.119866382 + ], + [ + 103.14179962900016, + 79.05015895500014 + ], + [ + 102.95739759200006, + 78.89381483500011 + ], + [ + 102.66390257000006, + 78.84609716300008 + ] + ] + ], + [ + [ + [ + 159.6771400240001, + -79.79859150399994 + ], + [ + 158.9601666650002, + -79.79376754899994 + ], + [ + 158.63391268800012, + -79.7188219059999 + ], + [ + 158.33098623000012, + -79.74963111199992 + ], + [ + 159.15875213400022, + -79.90675464299994 + ], + [ + 159.59228277700004, + -79.86424898899992 + ], + [ + 159.6771400240001, + -79.79859150399994 + ] + ] + ], + [ + [ + [ + 157.51059808300022, + -79.51038786399994 + ], + [ + 157.05199011800016, + -79.56295716999995 + ], + [ + 157.40820924000002, + -79.64045493599997 + ], + [ + 157.74988156300003, + -79.57994595299982 + ], + [ + 157.51059808300022, + -79.51038786399994 + ] + ] + ], + [ + [ + [ + 157.923202596, + 52.29676466800004 + ], + [ + 158.15420566800003, + 52.33462656200015 + ], + [ + 158.33859261800012, + 52.283638607000114 + ], + [ + 158.38670356900025, + 52.386305354 + ], + [ + 158.26469457500002, + 52.40657279600009 + ], + [ + 158.1251067180001, + 52.511932816000126 + ], + [ + 158.10490465500004, + 52.61645397500013 + ], + [ + 158.17170758500004, + 52.68308641800013 + ], + [ + 158.29919465600005, + 52.7335862110001 + ], + [ + 158.39379868200012, + 52.71879684600003 + ], + [ + 158.47050466400003, + 52.82624731200008 + ], + [ + 158.28269957300017, + 52.89231162900012 + ], + [ + 158.1793976460001, + 53.083806601000106 + ], + [ + 158.1847996150001, + 53.27760844000005 + ], + [ + 158.10600268400003, + 53.43416680100012 + ], + [ + 157.97099268700015, + 53.47171186000003 + ], + [ + 157.88040158, + 53.45014321200017 + ], + [ + 157.78590366900016, + 53.27847043500009 + ], + [ + 157.47720370600018, + 53.12937750000009 + ], + [ + 157.48350572400022, + 53.017784194000114 + ], + [ + 157.39779657300005, + 52.866440047000026 + ], + [ + 157.16889970500006, + 52.71302875500004 + ], + [ + 157.05650358000003, + 52.56748404700005 + ], + [ + 157.0800015760001, + 52.49162363199997 + ], + [ + 157.2261967190001, + 52.38482159000017 + ], + [ + 157.36909459000003, + 52.34513981600014 + ], + [ + 157.42239360300005, + 52.27565031800009 + ], + [ + 157.312499644, + 52.22337641100006 + ], + [ + 157.04660069700003, + 52.143864840000106 + ], + [ + 156.97149666500013, + 52.03565597800002 + ], + [ + 157.1405026560002, + 51.81675989400003 + ], + [ + 157.03089871000032, + 51.75657095600019 + ], + [ + 156.5411075620001, + 51.640586874000064 + ], + [ + 156.45329270900004, + 51.629485714000054 + ], + [ + 156.46209756300004, + 51.40042472800013 + ], + [ + 156.54600561100006, + 51.26030042900004 + ], + [ + 156.68119766300003, + 51.20483871699997 + ], + [ + 156.6721956660001, + 51.080549677000135 + ], + [ + 156.75270066100006, + 50.9861340760001 + ], + [ + 156.73300168000003, + 50.88269351200006 + ], + [ + 157.2492067200002, + 51.236760189999984 + ], + [ + 157.51510667300022, + 51.37824956500009 + ], + [ + 157.63259865900022, + 51.536097231000156 + ], + [ + 157.77999861800015, + 51.549814215000026 + ], + [ + 158.0092926200001, + 51.69964693700018 + ], + [ + 158.08110072000022, + 51.79267064000015 + ], + [ + 157.91740466500005, + 51.91931683800016 + ], + [ + 157.82429462900018, + 52.01945459800015 + ], + [ + 157.71040367600006, + 52.22916746800007 + ], + [ + 157.70950362700012, + 52.37402938600019 + ], + [ + 157.85760464800012, + 52.382696442 + ], + [ + 157.923202596, + 52.29676466800004 + ] + ] + ], + [ + [ + [ + 157.64460758000007, + 65.78689787900015 + ], + [ + 157.5502017010001, + 65.68149276399998 + ], + [ + 157.73049962400012, + 65.6341194210001 + ], + [ + 158.076598632, + 65.60637817100019 + ], + [ + 158.29890464200002, + 65.52570822000013 + ], + [ + 158.5682066420003, + 65.48431704100011 + ], + [ + 158.82069370500005, + 65.60356285700016 + ], + [ + 158.7624966430002, + 65.678448624 + ], + [ + 158.62309268500007, + 65.72547076600006 + ], + [ + 158.01919567100003, + 65.74816175100017 + ], + [ + 157.64460758000007, + 65.78689787900015 + ] + ] + ], + [ + [ + [ + 157.9535066960001, + 63.730972093000105 + ], + [ + 157.802993699, + 63.58925758000004 + ], + [ + 157.61300663100008, + 63.47982060200019 + ], + [ + 157.65159557200002, + 63.346559573000036 + ], + [ + 157.8769986950001, + 63.273641542000064 + ], + [ + 158.14639272800002, + 63.273653444 + ], + [ + 158.3907925970002, + 63.30261174600008 + ], + [ + 158.56359860700002, + 63.35741614900019 + ], + [ + 158.87420662500017, + 63.574345168000036 + ], + [ + 159.30589257600002, + 63.83186070300019 + ], + [ + 159.5314026520001, + 63.91975468099997 + ], + [ + 160.27949572600016, + 64.08952074200005 + ], + [ + 160.62480163800012, + 64.17754480700006 + ], + [ + 160.83270267700016, + 64.26991908000008 + ], + [ + 160.8190006120002, + 64.3667704630002 + ], + [ + 161.01460271700012, + 64.53750932800011 + ], + [ + 160.85719258600022, + 64.58270069399998 + ], + [ + 160.54829363800002, + 64.59169598500006 + ], + [ + 160.41160558400009, + 64.68466436700015 + ], + [ + 160.6558986670001, + 64.76517338500014 + ], + [ + 160.74600261700004, + 64.84076172300018 + ], + [ + 160.66850270200018, + 64.91245029700008 + ], + [ + 160.4972996480002, + 64.93971143100009 + ], + [ + 160.2982936520001, + 65.05110608700011 + ], + [ + 160.38079856900015, + 65.13779625500013 + ], + [ + 160.22419762800007, + 65.27281178400011 + ], + [ + 160.03709360000016, + 65.31331079400013 + ], + [ + 159.71710170600034, + 65.31045759400013 + ], + [ + 159.47869858600018, + 65.25923109000018 + ], + [ + 159.36050469900022, + 65.18684748800013 + ], + [ + 159.39549260700005, + 65.02979610400001 + ], + [ + 159.7075956220002, + 64.70949173200012 + ], + [ + 159.86990363300015, + 64.35935415500012 + ], + [ + 159.7879946690001, + 64.24682291400012 + ], + [ + 159.68760662700004, + 64.20763734899998 + ], + [ + 159.48179670500008, + 64.25884725700013 + ], + [ + 159.46490465600016, + 64.5239656810001 + ], + [ + 159.3634036640002, + 64.58817089200016 + ], + [ + 159.072006632, + 64.56756297700008 + ], + [ + 159.01600663400018, + 64.52865099700017 + ], + [ + 159.00120570200022, + 64.38692055800004 + ], + [ + 158.89689660500017, + 64.25673417900009 + ], + [ + 158.69889861700017, + 64.20564580800016 + ], + [ + 158.58430459000033, + 64.23108304000004 + ], + [ + 158.27059962500016, + 64.45068253400012 + ], + [ + 158.1477966970001, + 64.50197793700016 + ], + [ + 157.86599761500008, + 64.49685055900011 + ], + [ + 157.6853945910002, + 64.39739592500018 + ], + [ + 157.63299562600014, + 64.25441507400018 + ], + [ + 157.68150371200022, + 64.08475931800007 + ], + [ + 157.91099569500034, + 63.8489167030001 + ], + [ + 157.9535066960001, + 63.730972093000105 + ] + ] + ], + [ + [ + [ + 162.11874949200035, + -84.17290213399997 + ], + [ + 160.93427579100023, + -84.17160209999986 + ], + [ + 161.07138450900015, + -84.26261418199988 + ], + [ + 161.90766542100005, + -84.27430912099987 + ], + [ + 162.46325170600028, + -84.23605527299992 + ], + [ + 162.11874949200035, + -84.17290213399997 + ] + ] + ], + [ + [ + [ + 160.60033578000014, + -77.75449831799989 + ], + [ + 160.26824011700012, + -77.74805313399997 + ], + [ + 160.00789290700004, + -77.84722801899994 + ], + [ + 160.44276817500008, + -77.94051612399994 + ], + [ + 160.75829917500027, + -77.92720431499993 + ], + [ + 161.1482415600002, + -77.83227737999988 + ], + [ + 160.60033578000014, + -77.75449831799989 + ] + ] + ], + [ + [ + [ + 160.61069182400013, + -76.60912455999988 + ], + [ + 160.3224323300002, + -76.63960853099996 + ], + [ + 160.7016552580002, + -76.83232767199996 + ], + [ + 160.69837625800017, + -76.94113051799997 + ], + [ + 161.0361717840001, + -77.00238096399994 + ], + [ + 161.1210779810002, + -76.91723102099996 + ], + [ + 161.46351289100016, + -76.83320760399994 + ], + [ + 161.17242218700028, + -76.71279514799994 + ], + [ + 160.61069182400013, + -76.60912455999988 + ] + ] + ], + [ + [ + [ + 161.4331108780001, + -71.95501950399995 + ], + [ + 161.62769851200017, + -71.98083225599999 + ], + [ + 161.65945923200013, + -71.86347818899992 + ], + [ + 161.35687592800002, + -71.89016634699993 + ], + [ + 161.4331108780001, + -71.95501950399995 + ] + ] + ], + [ + [ + [ + 161.72841298600008, + -71.44908276699994 + ], + [ + 161.66259674700007, + -71.57508712899994 + ], + [ + 161.87653803800004, + -71.56391019199992 + ], + [ + 161.72841298600008, + -71.44908276699994 + ] + ] + ], + [ + [ + [ + 159.59269666100022, + 54.32338145200015 + ], + [ + 159.72810362400025, + 54.31233410400017 + ], + [ + 159.94180259300003, + 54.43372401100004 + ], + [ + 160.18139661300017, + 54.68777027600004 + ], + [ + 160.34139960100003, + 54.760102916000164 + ], + [ + 160.58470160800027, + 54.81354425400019 + ], + [ + 161.07800259400017, + 54.87954805400017 + ], + [ + 161.57229566200022, + 54.901936620000015 + ], + [ + 161.87879973400027, + 54.88284398600018 + ], + [ + 162.0411986050001, + 54.83424688400004 + ], + [ + 162.12100270500002, + 54.88825718600009 + ], + [ + 161.96200571300005, + 55.03133090900013 + ], + [ + 161.80020162200015, + 55.12814239400012 + ], + [ + 161.72430466200012, + 55.221059814000114 + ], + [ + 161.6878966920001, + 55.364419527 + ], + [ + 161.74029565700016, + 55.626778629000114 + ], + [ + 161.9105986630001, + 55.852381912 + ], + [ + 162.03619360300002, + 56.109138047000044 + ], + [ + 162.43829361500002, + 56.245341794000126 + ], + [ + 162.3014986080002, + 56.29703634400005 + ], + [ + 162.0102997250002, + 56.31002594700004 + ], + [ + 161.8722077020002, + 56.277606924000054 + ], + [ + 161.70172163500024, + 56.11749245700008 + ], + [ + 161.28990163300023, + 55.95458463700004 + ], + [ + 161.02250668400006, + 55.75330010500011 + ], + [ + 160.7548976610002, + 55.398359362000065 + ], + [ + 160.68440267000005, + 55.15843207700016 + ], + [ + 160.45919769500017, + 55.07421306100014 + ], + [ + 160.10620172200015, + 54.831885870000065 + ], + [ + 159.77549758700013, + 54.694892379 + ], + [ + 159.39950569400003, + 54.60883822900007 + ], + [ + 158.79870562600001, + 54.54214845500019 + ], + [ + 158.62219263600014, + 54.46900796800014 + ], + [ + 158.5325926060002, + 54.34433285800009 + ], + [ + 158.4709926580001, + 54.17673385400002 + ], + [ + 158.50889562400005, + 53.882221101000084 + ], + [ + 158.61450156900014, + 53.819700652000165 + ], + [ + 158.72639461200015, + 53.82665075900013 + ], + [ + 158.84860259300012, + 53.970285064 + ], + [ + 158.93530265300012, + 53.913574783000115 + ], + [ + 159.2151036570001, + 53.877043934000085 + ], + [ + 159.38749660700012, + 53.897922248999976 + ], + [ + 159.45860263800012, + 53.97396622800011 + ], + [ + 159.4134976050001, + 54.05686509400016 + ], + [ + 159.2828976630002, + 54.17859899500007 + ], + [ + 159.18780564200017, + 54.406864370000164 + ], + [ + 159.24029563400018, + 54.45045646900019 + ], + [ + 159.38209564300018, + 54.426735851000046 + ], + [ + 159.59269666100022, + 54.32338145200015 + ] + ] + ], + [ + [ + [ + 161.05859362700016, + 56.22050319700014 + ], + [ + 160.99380470000006, + 56.422528186000136 + ], + [ + 160.80529770900011, + 56.471983595000154 + ], + [ + 160.53799462600023, + 56.391307106000056 + ], + [ + 160.49609365900017, + 56.2436669220001 + ], + [ + 160.6103056400001, + 56.03362799500013 + ], + [ + 160.71659873300018, + 55.94078215700006 + ], + [ + 160.8224026590002, + 55.90242539400015 + ], + [ + 161.02049268000007, + 55.92737379400006 + ], + [ + 161.13729869200006, + 56.033115861 + ], + [ + 161.05859362700016, + 56.22050319700014 + ] + ] + ], + [ + [ + [ + 163.56739766500016, + 60.01134262900018 + ], + [ + 163.79930061800007, + 60.05495015100013 + ], + [ + 163.78320267000004, + 60.20490407500006 + ], + [ + 164.02850359300032, + 60.29860034200004 + ], + [ + 164.42039461500008, + 60.32425935900005 + ], + [ + 164.62600672300005, + 60.371113192000166 + ], + [ + 164.78819269400014, + 60.06253040900009 + ], + [ + 164.84199562800006, + 59.8247706840001 + ], + [ + 164.9409025880002, + 59.86957246000014 + ], + [ + 165.05209373100013, + 60.01691693000015 + ], + [ + 165.0070956510002, + 60.09819205400015 + ], + [ + 165.16769358700014, + 60.11740371100012 + ], + [ + 165.38420066100014, + 60.265213210000184 + ], + [ + 165.51240572500035, + 60.243007536000164 + ], + [ + 165.67869564400007, + 60.29882967000003 + ], + [ + 165.84719872000016, + 60.40434458800013 + ], + [ + 165.98759459200005, + 60.36777115900014 + ], + [ + 166.02200364600014, + 60.45742366100012 + ], + [ + 166.16209357900004, + 60.50449123200008 + ], + [ + 166.3027957260001, + 60.472584009 + ], + [ + 166.18069469900001, + 60.360141784000064 + ], + [ + 166.22120661600013, + 60.21378537200013 + ], + [ + 166.12210066900002, + 60.094311736000066 + ], + [ + 166.06869470200013, + 59.84838049400014 + ], + [ + 166.17480473500018, + 59.801640822000195 + ], + [ + 166.3307956420001, + 59.840392372 + ], + [ + 166.71060163500022, + 60.084370463000084 + ], + [ + 166.82769766100012, + 60.19934570000015 + ], + [ + 166.86259470900006, + 60.30968993500005 + ], + [ + 167.13760361100015, + 60.34588936300008 + ], + [ + 167.4205017290002, + 60.41733402400018 + ], + [ + 168.27670257800014, + 60.58823851500006 + ], + [ + 168.69659468800035, + 60.511544604000164 + ], + [ + 169.10479773200007, + 60.5493272060001 + ], + [ + 169.20840459300018, + 60.542109884000126 + ], + [ + 169.57200669200006, + 60.42376143500002 + ], + [ + 169.7534026430003, + 60.28688897900014 + ], + [ + 169.90739463300008, + 60.22789597100012 + ], + [ + 169.7592007410001, + 60.1889855 + ], + [ + 169.87300066700016, + 60.06734883000007 + ], + [ + 170.0534057110002, + 60.02041905700008 + ], + [ + 170.1128996210001, + 59.929003506000186 + ], + [ + 170.2671046790001, + 59.94040591200019 + ], + [ + 170.41690068800017, + 60.09143171400018 + ], + [ + 170.44380173600018, + 60.26915723000019 + ], + [ + 170.57659857500028, + 60.31976934099998 + ], + [ + 170.50540168400005, + 60.46075479700005 + ], + [ + 170.66879263700002, + 60.41561305100015 + ], + [ + 170.75889558200015, + 60.445525213999986 + ], + [ + 170.7248995880003, + 60.52652625000002 + ], + [ + 170.93870567800002, + 60.53230942800019 + ], + [ + 171.24639863800007, + 60.58823851500006 + ], + [ + 171.35499558100014, + 60.676015146000054 + ], + [ + 171.50639370800013, + 60.72121690600011 + ], + [ + 171.65949973000022, + 60.848170719999985 + ], + [ + 171.7951356880003, + 60.820867677000194 + ], + [ + 171.97695962000012, + 60.831920054000136 + ], + [ + 172.0588836710001, + 60.940066386000126 + ], + [ + 171.99400371700006, + 61.03945949700005 + ], + [ + 172.20770268500007, + 61.001424935000045 + ], + [ + 172.29969759300013, + 61.02542768799998 + ], + [ + 172.2123866610002, + 61.107244954000066 + ], + [ + 172.21018959600008, + 61.19254540400004 + ], + [ + 172.45840473900023, + 61.15102363400018 + ], + [ + 172.6117246680002, + 61.20629004800003 + ], + [ + 172.63879368900018, + 61.31315914600009 + ], + [ + 172.80592364200004, + 61.34947290399998 + ], + [ + 172.60935963000009, + 61.40995353200003 + ], + [ + 172.8392026470002, + 61.443558593000034 + ], + [ + 173.04801966000014, + 61.37013764800008 + ], + [ + 173.20208759000025, + 61.43182811999998 + ], + [ + 173.25439468900015, + 61.54663990900002 + ], + [ + 173.43569961400033, + 61.559438405000094 + ], + [ + 173.4217066970001, + 61.66737183700013 + ], + [ + 173.4881436730002, + 61.73061128500012 + ], + [ + 173.82820167600005, + 61.660802604000025 + ], + [ + 174.10585071100002, + 61.78911579600015 + ], + [ + 174.49621572300032, + 61.817306818000134 + ], + [ + 174.60275273000002, + 61.965433991 + ], + [ + 174.80061359, + 61.936631760000125 + ], + [ + 175.12716667000018, + 62.00655862500008 + ], + [ + 175.14469859400003, + 62.125932684000134 + ], + [ + 175.37438973100018, + 62.1129471050001 + ], + [ + 175.6138607050002, + 62.175724877000164 + ], + [ + 176.28027364100012, + 62.31128958800008 + ], + [ + 176.44079563600008, + 62.41017777300016 + ], + [ + 176.6905217010003, + 62.494631483000035 + ], + [ + 177.17303467500017, + 62.586852535000105 + ], + [ + 176.94912772200007, + 62.64574596600016 + ], + [ + 177.0136107090001, + 62.77603058100004 + ], + [ + 177.1474916630001, + 62.787147164000146 + ], + [ + 177.2505496780002, + 62.70325135400003 + ], + [ + 177.26553367100018, + 62.572965733000046 + ], + [ + 177.51248163800005, + 62.57130293100016 + ], + [ + 177.68330365100007, + 62.5160675300001 + ], + [ + 177.86523470400004, + 62.55546297800004 + ], + [ + 178.14080770800012, + 62.515460345 + ], + [ + 178.19970667100006, + 62.459156922000034 + ], + [ + 178.84829666300004, + 62.36878709700011 + ], + [ + 178.9573056610002, + 62.264606579000144 + ], + [ + 179.14971962500033, + 62.330455313000016 + ], + [ + 179.1305237250001, + 62.47684659300006 + ], + [ + 179.4024656890001, + 62.536022327000126 + ], + [ + 179.42358372700005, + 62.605751547000125 + ], + [ + 179.55773960700003, + 62.64186179200016 + ], + [ + 179.60467575100006, + 62.70602861300006 + ], + [ + 179.50915575000022, + 62.860476411000036 + ], + [ + 179.41998269300018, + 62.881870381 + ], + [ + 179.27723670300009, + 63.04105713900003 + ], + [ + 179.41247569300003, + 63.05826166600008 + ], + [ + 179.41470360300002, + 63.13327014400005 + ], + [ + 179.3274536910002, + 63.19243079000012 + ], + [ + 178.89443971100002, + 63.3327190390001 + ], + [ + 178.96812468600012, + 63.42526732000016 + ], + [ + 178.70840471100007, + 63.540186230000074 + ], + [ + 178.64581268100017, + 63.62329028600004 + ], + [ + 178.75027466400002, + 63.678017743 + ], + [ + 178.66525266100007, + 63.94691305300017 + ], + [ + 178.37966965300018, + 63.99525534500003 + ], + [ + 178.48745774300005, + 64.11663670200011 + ], + [ + 178.36746174600034, + 64.27220700400005 + ], + [ + 178.23080470500008, + 64.30664757400001 + ], + [ + 177.99801662300013, + 64.20775117500017 + ], + [ + 177.8027647140001, + 64.25304094500007 + ], + [ + 177.41552766100006, + 64.44747830000006 + ], + [ + 177.37579358400012, + 64.57443747800005 + ], + [ + 177.46997063600008, + 64.72222535100008 + ], + [ + 177.31747464800014, + 64.77223027700018 + ], + [ + 177.00219774200002, + 64.70777461500006 + ], + [ + 176.73080462500002, + 64.57027117000007 + ], + [ + 176.55773961400007, + 64.67110580000019 + ], + [ + 176.42526262900014, + 64.67499718300019 + ], + [ + 176.22024563500008, + 64.86027865000005 + ], + [ + 176.45968660200003, + 64.80638234200018 + ], + [ + 176.65887465200012, + 64.86000372300009 + ], + [ + 176.89553869500003, + 64.83250655400008 + ], + [ + 177.03579660100002, + 64.76888941800007 + ], + [ + 177.2958065900002, + 64.82057290400013 + ], + [ + 177.1441347110001, + 64.94777599600008 + ], + [ + 177.44052165800008, + 64.9166776260002 + ], + [ + 177.48773172100016, + 64.81334066200003 + ], + [ + 177.71469069300008, + 64.70583655100012 + ], + [ + 177.90246560900005, + 64.70333438600011 + ], + [ + 178.29385371600006, + 64.65638114299998 + ], + [ + 178.71136469600003, + 64.69637589700017 + ], + [ + 178.89581266600032, + 64.69805395399999 + ], + [ + 179.25582865100023, + 64.80694627600013 + ], + [ + 179.46691866900005, + 64.81250079600017 + ], + [ + 179.76913472600017, + 65.00446582400014 + ], + [ + 179.99998860100004, + 65.06727075400005 + ], + [ + 179.99998860100004, + 65.93052128700015 + ], + [ + 179.99998860100004, + 66.69255313000014 + ], + [ + 179.99998860100004, + 67.45458581100019 + ], + [ + 179.99998860100004, + 68.21661815700014 + ], + [ + 179.99998860100004, + 68.97865016800012 + ], + [ + 179.2983706660002, + 69.26707799400009 + ], + [ + 178.66598473700014, + 69.29726189800016 + ], + [ + 178.75204458700023, + 69.41023620700003 + ], + [ + 178.18823268400024, + 69.44830111200014 + ], + [ + 177.93147269300005, + 69.50888249000019 + ], + [ + 177.5701135920001, + 69.53070393700011 + ], + [ + 177.52542061400004, + 69.58293744300005 + ], + [ + 177.07130469000003, + 69.62321483500017 + ], + [ + 176.2959286890001, + 69.78409809000016 + ], + [ + 176.22860759000014, + 69.84032222000002 + ], + [ + 176.0328525990002, + 69.86717046200016 + ], + [ + 175.38418566200005, + 69.80585013500018 + ], + [ + 174.16870174100006, + 69.89012899800008 + ], + [ + 173.95675660200004, + 69.84703679500007 + ], + [ + 173.6820067000001, + 69.86162432500015 + ], + [ + 173.5015106300001, + 69.91927606000013 + ], + [ + 173.42378272700012, + 69.79303940200009 + ], + [ + 172.93125874300006, + 69.87900570900018 + ], + [ + 172.7035215950001, + 69.9815194030001 + ], + [ + 172.43290665400002, + 69.97585776300008 + ], + [ + 171.86419670300018, + 70.01956938800004 + ], + [ + 171.41418472600014, + 70.09687501000019 + ], + [ + 170.9484097420002, + 70.09009254200015 + ], + [ + 170.61137358300005, + 70.12858475600018 + ], + [ + 170.5089566170002, + 69.85623811400012 + ], + [ + 170.53904764900017, + 69.74892427200007 + ], + [ + 170.16506959200024, + 69.70090233700012 + ], + [ + 170.16345171700004, + 69.54281947500016 + ], + [ + 170.57943769300005, + 69.53679992800011 + ], + [ + 170.8427426090002, + 69.33511272900012 + ], + [ + 170.9115146160001, + 69.1641822540002 + ], + [ + 171.03350869100007, + 69.07669144599998 + ], + [ + 170.98448159800012, + 69.01051732600018 + ], + [ + 170.5863187330002, + 68.82440320100017 + ], + [ + 170.09342963400002, + 68.838648245 + ], + [ + 169.87225367200006, + 68.78423997000016 + ], + [ + 169.6134486650002, + 68.80017061600006 + ], + [ + 169.42349261100003, + 68.91926455200013 + ], + [ + 169.37872268600006, + 69.08057461400011 + ], + [ + 169.242950607, + 69.15239478300003 + ], + [ + 169.02326964200017, + 69.14616820300017 + ], + [ + 168.77796972500016, + 69.2024912390001 + ], + [ + 168.379745672, + 69.2123716590001 + ], + [ + 168.25567657300007, + 69.34744234100015 + ], + [ + 168.23715172900017, + 69.56777675900008 + ], + [ + 168.00524860800022, + 69.67661610800019 + ], + [ + 168.01394667700004, + 69.73319144000004 + ], + [ + 167.80799862200013, + 69.79900614300004 + ], + [ + 167.64691168600007, + 69.76540527300006 + ], + [ + 167.22734060200014, + 69.59574767300018 + ], + [ + 166.87712071500005, + 69.51867104400003 + ], + [ + 166.15638768200017, + 69.53515908600002 + ], + [ + 165.6757966790001, + 69.57629914300003 + ], + [ + 165.2415006030002, + 69.57165271900016 + ], + [ + 164.6688996040001, + 69.54107218400009 + ], + [ + 164.3554995740002, + 69.58611083200014 + ], + [ + 164.0231936570001, + 69.76293998700004 + ], + [ + 163.84010271700004, + 69.68607760000003 + ], + [ + 163.63029462800012, + 69.65948685000006 + ], + [ + 163.24800071800007, + 69.70380968400008 + ], + [ + 162.8726956380002, + 69.64685230500015 + ], + [ + 162.43189973200003, + 69.67460998300004 + ], + [ + 162.19090258100005, + 69.6507436870001 + ], + [ + 162.04539458600004, + 69.51149160900013 + ], + [ + 162.20410173100004, + 69.44718682100006 + ], + [ + 162.17669659600017, + 69.14854849599999 + ], + [ + 162.40280161900023, + 69.11787626200004 + ], + [ + 162.71029659900023, + 69.25235216400006 + ], + [ + 163.0032955800002, + 69.25126117500014 + ], + [ + 163.11090060900005, + 69.18472914800009 + ], + [ + 163.36039768100034, + 69.15420929800013 + ], + [ + 163.70410164400005, + 69.19619693300012 + ], + [ + 164.08790563800005, + 69.02509831700019 + ], + [ + 164.23510761600016, + 68.99464753300009 + ], + [ + 164.54409759200007, + 69.00046122100008 + ], + [ + 164.77360566800007, + 69.10580581900012 + ], + [ + 165.01229863400022, + 69.08928810500015 + ], + [ + 165.3011936680001, + 69.0269294270002 + ], + [ + 165.36250259500002, + 68.85676120200009 + ], + [ + 165.1119996960001, + 68.76429590200007 + ], + [ + 165.08670059700023, + 68.66091149700014 + ], + [ + 165.25210572200024, + 68.60954048800005 + ], + [ + 166.04640169000015, + 68.6744782780001 + ], + [ + 166.33540367700016, + 68.5861928650001 + ], + [ + 166.63169859000004, + 68.42547842099998 + ], + [ + 167.30795271800014, + 68.45432692000014 + ], + [ + 167.55026264200012, + 68.44903173600005 + ], + [ + 167.82260157300016, + 68.3225754720001 + ], + [ + 167.79499862500018, + 68.15563494999998 + ], + [ + 168.09942666600034, + 68.12867120600009 + ], + [ + 168.47352559000024, + 68.15865696200012 + ], + [ + 168.7252197260002, + 68.10185297100008 + ], + [ + 168.6210326690001, + 68.03387925700002 + ], + [ + 168.1708527190001, + 67.87299650400013 + ], + [ + 168.1890867110002, + 67.78252257700012 + ], + [ + 168.46928367600026, + 67.58185076200016 + ], + [ + 168.6393736140002, + 67.50269978000006 + ], + [ + 168.92140169000004, + 67.45438028700005 + ], + [ + 169.61413564600014, + 67.37619707900012 + ], + [ + 169.75985771500007, + 67.33393569100014 + ], + [ + 169.88484161400015, + 67.24346193100007 + ], + [ + 169.9124147230001, + 67.02246483900012 + ], + [ + 169.63058462800007, + 67.03179624400013 + ], + [ + 168.74139361400012, + 67.1061177420001 + ], + [ + 167.9381866770002, + 67.08071856400016 + ], + [ + 167.66560366500005, + 67.13910958300005 + ], + [ + 167.38209568100024, + 67.28396127600013 + ], + [ + 167.10511770200014, + 67.52473379100019 + ], + [ + 167.00318873000015, + 67.63918884700013 + ], + [ + 166.80403169300007, + 67.643774586 + ], + [ + 166.3011015760003, + 67.5493631760001 + ], + [ + 166.01969862300007, + 67.5404139850001 + ], + [ + 165.80780059000006, + 67.58352228100017 + ], + [ + 165.65020773400033, + 67.76699610700012 + ], + [ + 165.5196986520001, + 67.80052170800013 + ], + [ + 165.06950361400027, + 67.80527491700008 + ], + [ + 164.58520462400008, + 67.98180551000007 + ], + [ + 163.90330461400004, + 67.87908478300017 + ], + [ + 163.40170269400016, + 67.98755096900004 + ], + [ + 163.22068761600008, + 67.98848186300012 + ], + [ + 163.00810260200035, + 67.9310517450001 + ], + [ + 162.98107867500005, + 67.8385257600001 + ], + [ + 163.04640169700008, + 67.74316752900012 + ], + [ + 163.39070161300003, + 67.42853787400014 + ], + [ + 163.6614986090001, + 67.37677023400016 + ], + [ + 163.91090364700005, + 67.43073510600004 + ], + [ + 164.0057986940003, + 67.639028753 + ], + [ + 164.2082067360003, + 67.66985353700017 + ], + [ + 164.44540369900005, + 67.57720450500005 + ], + [ + 164.41960168700007, + 67.48998812000008 + ], + [ + 164.9416966900003, + 67.36569874600019 + ], + [ + 165.21620167200012, + 67.22151106800004 + ], + [ + 166.07279965600014, + 67.27807768200006 + ], + [ + 166.32789567100008, + 67.25972902600012 + ], + [ + 166.49479663000022, + 67.17480945000005 + ], + [ + 165.93980366300002, + 67.0437446470001 + ], + [ + 165.86369363500023, + 66.97616739700015 + ], + [ + 165.92919971700007, + 66.86570346800016 + ], + [ + 166.12150572200005, + 66.78404931500017 + ], + [ + 166.38999970600003, + 66.77464196900019 + ], + [ + 166.9024047260001, + 66.83313189600005 + ], + [ + 167.46644562200015, + 66.82140511000006 + ], + [ + 167.85227971300014, + 66.77877022400008 + ], + [ + 168.13999960400008, + 66.77896015800019 + ], + [ + 168.52650458300013, + 66.81303477400007 + ], + [ + 168.99931365900022, + 66.8812451930001 + ], + [ + 169.22248870500005, + 66.71293959500014 + ], + [ + 169.0709536180001, + 66.63796179500002 + ], + [ + 168.49937470900022, + 66.54490121200007 + ], + [ + 168.06163065300007, + 66.54761007500008 + ], + [ + 167.6360016330002, + 66.49188232100005 + ], + [ + 167.0662846790001, + 66.52245481 + ], + [ + 166.7004546710001, + 66.59052759899998 + ], + [ + 166.5578007140001, + 66.51254337700016 + ], + [ + 166.5424956940002, + 66.43477339700013 + ], + [ + 166.40879863800012, + 66.36175562099999 + ], + [ + 166.07240268900023, + 66.30879004000013 + ], + [ + 165.89430266900013, + 66.38929235200015 + ], + [ + 165.649902633, + 66.39892869100015 + ], + [ + 165.6018986350001, + 66.25029994600015 + ], + [ + 165.43879669000012, + 66.20290380400007 + ], + [ + 165.16889957500007, + 66.31905971500015 + ], + [ + 164.96229572000004, + 66.510788542 + ], + [ + 164.83560157700026, + 66.54681630900018 + ], + [ + 164.53930666400015, + 66.55063124800006 + ], + [ + 164.3018946200001, + 66.512833559 + ], + [ + 163.94410671300034, + 66.40491806400019 + ], + [ + 163.66540558200006, + 66.42959204000016 + ], + [ + 163.5119936200001, + 66.59184741300015 + ], + [ + 163.1083986110002, + 66.63949585100016 + ], + [ + 163.00889569800006, + 66.51266558500015 + ], + [ + 162.8509067130001, + 66.46277465400016 + ], + [ + 162.6634067240002, + 66.51648756600014 + ], + [ + 162.5932005740002, + 66.5781218790001 + ], + [ + 162.58009362400003, + 66.71457959800006 + ], + [ + 162.48410071600017, + 66.80917457200007 + ], + [ + 162.09779371800005, + 66.87399702600015 + ], + [ + 162.11129763500026, + 66.92794681100008 + ], + [ + 162.5886996590002, + 66.97492452800009 + ], + [ + 162.44490073400016, + 67.08286265400011 + ], + [ + 161.97720361200015, + 67.07119605100019 + ], + [ + 161.6916046780001, + 67.09771086100005 + ], + [ + 161.26519765000012, + 67.1650279370001 + ], + [ + 161.006698582, + 67.12122494900018 + ], + [ + 160.928695585, + 67.04723068100003 + ], + [ + 161.09559671200032, + 66.92679446700015 + ], + [ + 161.5034026210002, + 66.75923033200019 + ], + [ + 161.51739469900008, + 66.68555625300019 + ], + [ + 161.28790271600008, + 66.52914625100004 + ], + [ + 161.377197646, + 66.38640814000007 + ], + [ + 161.2788997140002, + 66.36579184300018 + ], + [ + 161.0301965770003, + 66.4233438340001 + ], + [ + 160.78779562500029, + 66.52435414900003 + ], + [ + 160.59030172500013, + 66.50060251800011 + ], + [ + 160.5679936250001, + 66.43409463100011 + ], + [ + 160.8791965910002, + 66.2987496930001 + ], + [ + 161.34699966000005, + 66.16177984000007 + ], + [ + 161.56120271600003, + 66.14967117500015 + ], + [ + 161.82409658400013, + 66.17880935200009 + ], + [ + 162.2140956420002, + 66.14518467700003 + ], + [ + 162.97199973300008, + 65.96161278300013 + ], + [ + 163.17199663700023, + 65.92494380100015 + ], + [ + 163.6369015790001, + 66.01856161300014 + ], + [ + 163.95660362800004, + 66.1632517020002 + ], + [ + 164.3468016730002, + 66.2005846990001 + ], + [ + 164.52360568300003, + 66.14798507100011 + ], + [ + 164.32400457200015, + 66.0476922470001 + ], + [ + 164.0074006430001, + 65.97656626600008 + ], + [ + 164.0187076630002, + 65.91294913000007 + ], + [ + 164.212905631, + 65.8699409140001 + ], + [ + 164.4951016800003, + 65.92736985900012 + ], + [ + 164.65170262100014, + 65.92612581700007 + ], + [ + 164.78840660000003, + 65.85793149100004 + ], + [ + 164.9678956690001, + 65.87265748900012 + ], + [ + 165.41889972800016, + 66.0653465470001 + ], + [ + 165.6703947100001, + 66.01056494200009 + ], + [ + 165.73510769600023, + 65.93152795300011 + ], + [ + 165.6519017170001, + 65.83865043100008 + ], + [ + 165.48150667800007, + 65.75792750700015 + ], + [ + 165.10150169700023, + 65.66265477200011 + ], + [ + 165.08770759900005, + 65.57465333800013 + ], + [ + 165.33410671900015, + 65.3838709960001 + ], + [ + 165.04330463500003, + 65.37337953500008 + ], + [ + 164.64549263700007, + 65.47313155900008 + ], + [ + 164.4521947170001, + 65.47209337700019 + ], + [ + 164.2727046430001, + 65.2788848080001 + ], + [ + 164.12179568400006, + 65.21708386299997 + ], + [ + 163.93359362700005, + 65.28321925800009 + ], + [ + 163.90299968000022, + 65.34564532600012 + ], + [ + 164.1354975810001, + 65.47503156900012 + ], + [ + 164.23669464500006, + 65.56170564500002 + ], + [ + 164.06469765700012, + 65.58770010600011 + ], + [ + 163.84950268600005, + 65.56152979200016 + ], + [ + 163.62309272900018, + 65.49144367100018 + ], + [ + 163.42449962600006, + 65.48714727500015 + ], + [ + 163.22019962100012, + 65.54827716500006 + ], + [ + 162.98559568300004, + 65.58241313600018 + ], + [ + 162.68730168600007, + 65.58886720200002 + ], + [ + 162.4275056030002, + 65.56915229500015 + ], + [ + 162.24719259300014, + 65.49188539700015 + ], + [ + 162.28829962500015, + 65.40061803800006 + ], + [ + 162.85009769200008, + 65.41649571000016 + ], + [ + 162.96530158700023, + 65.33835172900018 + ], + [ + 162.91209360100015, + 65.18275862800004 + ], + [ + 163.17170762900014, + 65.03989059700012 + ], + [ + 163.02760259700005, + 64.92455896200005 + ], + [ + 162.6246945690002, + 64.90992516500006 + ], + [ + 162.33909563500015, + 64.944197761 + ], + [ + 161.8946986950001, + 64.9512633700001 + ], + [ + 161.7906036720002, + 64.88720383700019 + ], + [ + 161.82550072000026, + 64.82013101000018 + ], + [ + 162.53399667700023, + 64.66561263600005 + ], + [ + 162.62399266800014, + 64.55797944400001 + ], + [ + 162.28970359400023, + 64.42627510200003 + ], + [ + 162.3049006550002, + 64.29505791600013 + ], + [ + 162.40499868400002, + 64.19482628000003 + ], + [ + 162.70700066700022, + 63.99710539800009 + ], + [ + 162.6958006010001, + 63.89374848500012 + ], + [ + 162.59370466100006, + 63.83024685200019 + ], + [ + 162.20599369500007, + 63.80946677200012 + ], + [ + 162.11779763300024, + 63.854207695000184 + ], + [ + 162.29200761200002, + 63.996384387000035 + ], + [ + 162.21569859700003, + 64.06660059600006 + ], + [ + 162.04739366900014, + 64.10863349300007 + ], + [ + 161.89750663300003, + 64.10526162100012 + ], + [ + 161.80490068400002, + 63.95747257500011 + ], + [ + 161.67120362900005, + 63.908692078000115 + ], + [ + 161.47819572300034, + 63.92821218900008 + ], + [ + 161.42340070800014, + 64.01481837100005 + ], + [ + 161.6714016090001, + 64.13238445400009 + ], + [ + 161.72160367700008, + 64.1942774330002 + ], + [ + 161.31559769800003, + 64.19530756900014 + ], + [ + 161.18490572300004, + 64.14321119100003 + ], + [ + 161.02279669700022, + 63.918892854000035 + ], + [ + 160.73500069900012, + 63.776773159000186 + ], + [ + 160.4756015830003, + 63.692583647000106 + ], + [ + 160.15429657900006, + 63.64227295 + ], + [ + 159.82589763600015, + 63.61237570700018 + ], + [ + 159.65170257700004, + 63.43446863800011 + ], + [ + 159.44880670800012, + 63.39514175400012 + ], + [ + 159.08009366000022, + 63.360724318999985 + ], + [ + 158.8399967260002, + 63.27829249200016 + ], + [ + 158.73449672800007, + 63.20259736800017 + ], + [ + 158.62669371800007, + 63.049442563000184 + ], + [ + 158.2733006100001, + 62.89868598700008 + ], + [ + 157.90049769600012, + 62.861762530000135 + ], + [ + 157.41189560500015, + 62.95715345000008 + ], + [ + 156.98599266400004, + 62.917161714000144 + ], + [ + 156.75329560900025, + 62.94760411600009 + ], + [ + 156.38000470100008, + 63.033369928000184 + ], + [ + 156.36869768100019, + 62.93562553800018 + ], + [ + 156.7109066480001, + 62.81461030200012 + ], + [ + 156.82189964200018, + 62.66407584700005 + ], + [ + 156.63529970200022, + 62.60514821800018 + ], + [ + 156.30439758700015, + 62.594012692000035 + ], + [ + 156.13619961200015, + 62.56501566500003 + ], + [ + 156.25239558900012, + 62.44062419900007 + ], + [ + 156.1837006960002, + 62.388254067 + ], + [ + 155.817596599, + 62.340892962000055 + ], + [ + 155.6842956720002, + 62.271766903000184 + ], + [ + 155.7241977230002, + 62.175369820000185 + ], + [ + 156.08410658700018, + 62.14310368400015 + ], + [ + 156.30490066900018, + 62.10616111600007 + ], + [ + 156.16909757700012, + 62.01692318400012 + ], + [ + 155.93760667700008, + 61.974013539000055 + ], + [ + 155.52839663200018, + 61.96057382800012 + ], + [ + 155.25779761600006, + 62.01808726200011 + ], + [ + 155.08729562400003, + 62.12468160100008 + ], + [ + 155.0547025940001, + 62.30333147400012 + ], + [ + 155.15159571800007, + 62.399443572999985 + ], + [ + 155.6479036280001, + 62.71387206300011 + ], + [ + 155.6018066810002, + 62.79753569400009 + ], + [ + 155.40809670800002, + 62.969509214000084 + ], + [ + 155.60589570900015, + 63.11478352100016 + ], + [ + 155.53199766500018, + 63.217098061000115 + ], + [ + 155.25999468100008, + 63.29502444700017 + ], + [ + 155.17059363700014, + 63.392238766000105 + ], + [ + 155.24169966800002, + 63.50438376900013 + ], + [ + 155.17340056900002, + 63.64502338700015 + ], + [ + 154.95190458600007, + 63.74970313200015 + ], + [ + 154.75230364300012, + 63.80734564800014 + ], + [ + 154.59750363800003, + 63.81492607400014 + ], + [ + 154.37080366700002, + 63.782206476000056 + ], + [ + 154.18339571100012, + 63.70993318100017 + ], + [ + 154.21440171200004, + 63.64247897700011 + ], + [ + 154.37899764800022, + 63.61961616200017 + ], + [ + 154.66369670100016, + 63.51216334900005 + ], + [ + 154.70320161600023, + 63.44446405800005 + ], + [ + 154.55160567700023, + 63.21216178999998 + ], + [ + 154.38999956600014, + 63.10888534400004 + ], + [ + 154.37629666300006, + 62.99300922000009 + ], + [ + 154.65480065200006, + 62.681807428000184 + ], + [ + 154.61549371700005, + 62.589651420000166 + ], + [ + 154.35910068600003, + 62.48522413799998 + ], + [ + 154.20629859100006, + 62.389333992000104 + ], + [ + 154.26759360500023, + 62.29050967699999 + ], + [ + 154.45219462900013, + 62.1202024800001 + ], + [ + 154.83869960700008, + 61.99775729100014 + ], + [ + 154.79240468000012, + 61.928914541000154 + ], + [ + 154.5505066420003, + 61.85817966000013 + ], + [ + 154.23579367000013, + 61.870528215000036 + ], + [ + 153.98269657100013, + 61.93563297200012 + ], + [ + 153.74620067000012, + 61.94082086700013 + ], + [ + 153.66859464000015, + 61.856489701000044 + ], + [ + 153.83279461500024, + 61.591719629000124 + ], + [ + 153.75869758500016, + 61.491957546000094 + ], + [ + 153.59120167800006, + 61.45231382700007 + ], + [ + 153.32919260500023, + 61.45960323300011 + ], + [ + 153.13349964100018, + 61.496996914000135 + ], + [ + 152.90919471500013, + 61.495566626000084 + ], + [ + 152.75180067800022, + 61.45745629200002 + ], + [ + 152.57569856800023, + 61.29801757300004 + ], + [ + 152.62719765200006, + 61.205015831000026 + ], + [ + 153.00810268100008, + 61.0205256160001 + ], + [ + 153.42739867100022, + 60.783086248000075 + ], + [ + 153.63589465700022, + 60.77868692200008 + ], + [ + 153.75079361800033, + 60.836898234000046 + ], + [ + 153.79440264800007, + 61.00922614000007 + ], + [ + 154.05999766800005, + 61.10423082200009 + ], + [ + 154.06419364800013, + 61.212485281000056 + ], + [ + 154.23440562700011, + 61.21800560200006 + ], + [ + 154.34109468200006, + 61.046218496 + ], + [ + 154.47740169400004, + 60.96164341700012 + ], + [ + 154.62510658600024, + 60.94377454000016 + ], + [ + 154.72720369900003, + 61.01428847400007 + ], + [ + 154.74679572700006, + 61.20226489099997 + ], + [ + 154.6656035840001, + 61.39973398000018 + ], + [ + 154.75520361400015, + 61.454922945000135 + ], + [ + 154.95269768200023, + 61.46166333700006 + ], + [ + 155.04220567900006, + 61.40064090200008 + ], + [ + 155.1004025740002, + 61.21370937400019 + ], + [ + 155.3753967240001, + 61.120272779000175 + ], + [ + 155.50939971900004, + 61.179143746000136 + ], + [ + 155.56709269400005, + 61.35592696900011 + ], + [ + 155.4454955860001, + 61.41282232200007 + ], + [ + 155.15319867300002, + 61.72609411000002 + ], + [ + 155.2413027020001, + 61.783667559000094 + ], + [ + 155.47279360100003, + 61.77869742500013 + ], + [ + 155.6732027270001, + 61.74052556800001 + ], + [ + 156.0843045680001, + 61.54682246700003 + ], + [ + 156.27659565200008, + 61.5054049690001 + ], + [ + 156.2709046760001, + 61.42552191100003 + ], + [ + 156.48970067900007, + 61.202982717000054 + ], + [ + 156.6295016040001, + 61.214606237000055 + ], + [ + 156.62139865100005, + 61.37496394800007 + ], + [ + 156.68420358100002, + 61.49786678800018 + ], + [ + 156.92889363100016, + 61.562337538000065 + ], + [ + 157.0151977290002, + 61.64633275700015 + ], + [ + 157.36450164200016, + 61.70961361200011 + ], + [ + 157.37820471300017, + 61.767690980000054 + ], + [ + 157.5260006320001, + 61.813877782000134 + ], + [ + 157.69920360900016, + 61.78523966800009 + ], + [ + 157.94259664300023, + 61.77941843700006 + ], + [ + 158.06239365300007, + 61.73703450500011 + ], + [ + 158.3547976870002, + 61.807609459000105 + ], + [ + 158.61149565100015, + 61.83334860700006 + ], + [ + 158.89830057400002, + 61.82420009500004 + ], + [ + 158.97300763800013, + 61.91017294100004 + ], + [ + 159.1786956870002, + 61.91926713800012 + ], + [ + 159.36770659800004, + 61.84126095600004 + ], + [ + 159.5554045670002, + 61.82177102000003 + ], + [ + 159.49119566900004, + 61.68508413900014 + ], + [ + 159.86669956700007, + 61.69019257400015 + ], + [ + 159.9467926750001, + 61.724637 + ], + [ + 159.9575045800001, + 61.84221096100009 + ], + [ + 160.29890469300028, + 61.92457338600002 + ], + [ + 160.3786927000001, + 61.76985787000012 + ], + [ + 160.28080766100004, + 61.700885033000134 + ], + [ + 160.18969771500008, + 61.54216849900007 + ], + [ + 160.03779566900005, + 61.475774774000115 + ], + [ + 160.15949972900012, + 61.433933319000175 + ], + [ + 159.92100558200013, + 61.26468743800018 + ], + [ + 159.87789963400007, + 61.03469405000004 + ], + [ + 159.77709970400008, + 60.98611606000003 + ], + [ + 159.90750166600014, + 60.92604379800002 + ], + [ + 160.1327056350001, + 61.031959203000156 + ], + [ + 160.42289768400008, + 61.02930800700017 + ], + [ + 160.29179365400012, + 60.89084047500006 + ], + [ + 160.15710468400027, + 60.85710113500005 + ], + [ + 160.21789561100013, + 60.751777157000106 + ], + [ + 160.09559660200011, + 60.69946385600002 + ], + [ + 160.16079657700016, + 60.614366583000105 + ], + [ + 160.31640661000006, + 60.74398785500006 + ], + [ + 160.55880773000013, + 60.72813717300005 + ], + [ + 160.78869667900005, + 60.82009771500009 + ], + [ + 160.93550068500008, + 60.94961572100004 + ], + [ + 161.29750066600002, + 61.09451049600017 + ], + [ + 161.40100057400002, + 61.18291191500009 + ], + [ + 161.76849372000004, + 61.380430122000064 + ], + [ + 162.07260157300004, + 61.499315852000166 + ], + [ + 162.1356966840001, + 61.56694976400013 + ], + [ + 162.35290565900004, + 61.65773248100015 + ], + [ + 162.59370466100006, + 61.59020853900017 + ], + [ + 162.58200067500013, + 61.711544467000124 + ], + [ + 162.74270656900012, + 61.736432684000135 + ], + [ + 162.83970664700018, + 61.68594244600018 + ], + [ + 162.74609369600012, + 61.60792939100003 + ], + [ + 162.90029858600008, + 61.52783594800019 + ], + [ + 163.05140669900004, + 61.64287287500008 + ], + [ + 163.17750572700004, + 61.633652445999985 + ], + [ + 163.2978056510001, + 61.68396213800014 + ], + [ + 163.21119661900002, + 61.76989978000006 + ], + [ + 162.96389761800015, + 61.79541010200012 + ], + [ + 162.9138026710001, + 61.827161253999975 + ], + [ + 163.14300564600023, + 62.0803909550001 + ], + [ + 163.06329357900017, + 62.10157085000003 + ], + [ + 163.174499641, + 62.31611069100012 + ], + [ + 163.24040269000022, + 62.50491306100008 + ], + [ + 163.6338956610001, + 62.58699335100005 + ], + [ + 163.95179761200018, + 62.58914062600019 + ], + [ + 164.01759370800016, + 62.64590589200009 + ], + [ + 164.3578035910001, + 62.69932543800007 + ], + [ + 164.61430357500012, + 62.640534601000184 + ], + [ + 164.66780073700022, + 62.57436199000006 + ], + [ + 164.93449361800015, + 62.52496391400007 + ], + [ + 165.14050269300026, + 62.46299901900005 + ], + [ + 165.0758056320002, + 62.38086474900007 + ], + [ + 164.5171967120002, + 62.46520714700017 + ], + [ + 164.3059995740001, + 62.366047724000055 + ], + [ + 164.17529267800012, + 62.345390020000195 + ], + [ + 164.05290264300015, + 62.26993981600009 + ], + [ + 164.00770557700025, + 62.11388520700012 + ], + [ + 164.05340572500018, + 61.94322429400012 + ], + [ + 164.04159562300003, + 61.771716138000045 + ], + [ + 163.98910563100014, + 61.70621541999998 + ], + [ + 163.8533937330002, + 61.67816404000018 + ], + [ + 163.71879562300035, + 61.55734829400012 + ], + [ + 163.71180763100006, + 61.452602835 + ], + [ + 163.8619996010001, + 61.43702339100008 + ], + [ + 163.9929046440002, + 61.376569753000126 + ], + [ + 163.86099259900004, + 61.22501689600017 + ], + [ + 163.53410357200005, + 61.13957227800017 + ], + [ + 163.55000270100004, + 61.06908835200011 + ], + [ + 163.4694056730001, + 60.992871371000035 + ], + [ + 163.67950461400005, + 60.928012035999984 + ], + [ + 163.63279763200012, + 60.84152554700006 + ], + [ + 163.41529864400013, + 60.82238966200009 + ], + [ + 163.26210058700008, + 60.75946839200009 + ], + [ + 163.17840560800016, + 60.79653668800012 + ], + [ + 163.01669271200024, + 60.744170748000045 + ], + [ + 162.8202056460002, + 60.771385782000095 + ], + [ + 162.74180568200006, + 60.67680421800014 + ], + [ + 162.60040264000008, + 60.61636985800004 + ], + [ + 162.47430461800002, + 60.62399185800007 + ], + [ + 162.37829561700016, + 60.566547826000146 + ], + [ + 162.16149869700007, + 60.532515622000176 + ], + [ + 161.89280673200017, + 60.40963189300015 + ], + [ + 161.91769360800015, + 60.23384712200004 + ], + [ + 161.73719770500009, + 60.143283676000124 + ], + [ + 161.49330158900023, + 60.06423964600003 + ], + [ + 161.07989472500014, + 59.75986927200006 + ], + [ + 160.83920267500002, + 59.67461525900012 + ], + [ + 160.72459372800006, + 59.592031049000184 + ], + [ + 160.39610258400012, + 59.498357749000036 + ], + [ + 160.29499872600013, + 59.3764664360001 + ], + [ + 160.3536987030002, + 59.27433160500016 + ], + [ + 160.3059996390001, + 59.18125744300005 + ], + [ + 159.97250366000014, + 58.93147739900013 + ], + [ + 159.94309960900023, + 58.86840726600019 + ], + [ + 160.05999765400009, + 58.72426334100004 + ], + [ + 160.20910668200008, + 58.608918463 + ], + [ + 160.17399572800002, + 58.54364724200002 + ], + [ + 160.03370664100032, + 58.44848196300018 + ], + [ + 160.01690662500016, + 58.39503995400014 + ], + [ + 160.24429357600002, + 58.14525286900016 + ], + [ + 160.16569563200005, + 58.07498754200009 + ], + [ + 159.98680067200007, + 58.015697479000096 + ], + [ + 159.77630660800014, + 57.99711580600018 + ], + [ + 159.53109771900006, + 57.94624519700011 + ], + [ + 159.47099260000027, + 57.86930368400016 + ], + [ + 159.55760163200011, + 57.703939296000044 + ], + [ + 159.36959872900002, + 57.58228435300009 + ], + [ + 159.07910157800018, + 57.51267214400008 + ], + [ + 158.85009758900003, + 57.41836936300018 + ], + [ + 158.7052006350002, + 57.2498419800001 + ], + [ + 158.6163026730003, + 57.083416945000124 + ], + [ + 158.53540071100008, + 57.061512014000186 + ], + [ + 158.31109662300014, + 57.07496765100018 + ], + [ + 158.24890172800008, + 57.256372991000035 + ], + [ + 158.1470946290001, + 57.30512666600009 + ], + [ + 158.03790257000003, + 57.289383105000184 + ], + [ + 157.8403017170001, + 57.137759338000194 + ], + [ + 157.85719259300004, + 57.069718233000174 + ], + [ + 157.99180562300023, + 56.83881943100005 + ], + [ + 157.73469560500007, + 56.6199937560001 + ], + [ + 157.662002711, + 56.524746166000114 + ], + [ + 157.5933986780002, + 56.26137956000014 + ], + [ + 157.64779672600014, + 56.19178545600016 + ], + [ + 157.63360566100005, + 56.11230825000007 + ], + [ + 157.40609767500018, + 55.89933515400003 + ], + [ + 157.23629758300012, + 55.79762042400017 + ], + [ + 157.1900936830002, + 55.72707732100008 + ], + [ + 157.20379658600007, + 55.57916623400013 + ], + [ + 157.312606597, + 55.468762487000106 + ], + [ + 157.18460068600007, + 55.28003622600016 + ], + [ + 157.19520563800017, + 55.217565734000175 + ], + [ + 157.4622036200002, + 55.087778333000074 + ], + [ + 157.46530157200004, + 54.95050673100019 + ], + [ + 157.3312077170001, + 54.883717045000026 + ], + [ + 157.32780466400015, + 54.713222931000075 + ], + [ + 157.29049664500008, + 54.63199089000017 + ], + [ + 157.18119763400023, + 54.563938217999976 + ], + [ + 157.19259668700022, + 54.47298601900019 + ], + [ + 157.46560667300014, + 54.309201954 + ], + [ + 157.4831996170002, + 54.251529599000094 + ], + [ + 157.39520270900005, + 54.04835494800017 + ], + [ + 157.46940568700006, + 53.931393200000116 + ], + [ + 157.62890659900006, + 53.813329233000104 + ], + [ + 157.80540466900004, + 53.725139540999976 + ], + [ + 157.92399569100007, + 53.740409692000185 + ], + [ + 158.0095977220002, + 53.81657135300014 + ], + [ + 158.03010572400024, + 54.08982860500009 + ], + [ + 158.28309670800002, + 54.65719141700009 + ], + [ + 158.37910470300017, + 54.79469503000007 + ], + [ + 158.59759560600014, + 55.02682865400004 + ], + [ + 158.76890561400012, + 55.168072607000056 + ], + [ + 158.8630975860002, + 55.30277582600013 + ], + [ + 158.95869470100024, + 55.794790358000114 + ], + [ + 159.0601956920001, + 55.97311719200019 + ], + [ + 159.35420268100017, + 56.10161880900017 + ], + [ + 159.69000267800027, + 56.222021160000054 + ], + [ + 160.09139961600022, + 56.63034725 + ], + [ + 160.1163025850002, + 56.71161768000013 + ], + [ + 160.2843015740002, + 57.01487661400017 + ], + [ + 160.55369560700012, + 57.30875468900018 + ], + [ + 160.89340157000004, + 57.41313218200003 + ], + [ + 160.993697579, + 57.476500041000065 + ], + [ + 161.06449867700007, + 57.59348492300012 + ], + [ + 161.20680260600022, + 57.66421192500002 + ], + [ + 161.29299958400009, + 57.759300090000124 + ], + [ + 161.14089972500017, + 57.95443549000004 + ], + [ + 161.09269657300013, + 58.08745076100007 + ], + [ + 161.39689662700016, + 58.33133581300012 + ], + [ + 161.43640171000004, + 58.42466193500013 + ], + [ + 161.40080259400008, + 58.53888598499998 + ], + [ + 161.47500557100022, + 58.60899842599997 + ], + [ + 162.0326996900002, + 58.70100037500015 + ], + [ + 162.1739956120001, + 58.76837495100017 + ], + [ + 162.40199259800033, + 58.99539075200005 + ], + [ + 162.4355926310002, + 59.102256665000084 + ], + [ + 162.65190172400003, + 59.25462088900014 + ], + [ + 162.9028015900002, + 59.476967802000104 + ], + [ + 163.1354066120001, + 59.543949267000016 + ], + [ + 163.2908017330002, + 59.627082324000185 + ], + [ + 163.30340560100012, + 59.78280031600008 + ], + [ + 163.49240058600014, + 59.896344426000155 + ], + [ + 163.60479771700022, + 59.91842520900002 + ], + [ + 163.56739766500016, + 60.01134262900018 + ] + ] + ], + [ + [ + [ + 161.9984785160001, + -77.21463950199995 + ], + [ + 161.58434964000014, + -77.14681445599996 + ], + [ + 161.44506330800016, + -77.25031189099991 + ], + [ + 161.0081557640002, + -77.31408830799995 + ], + [ + 160.83244803700006, + -77.26429190399995 + ], + [ + 160.8390110710002, + -77.17237072099994 + ], + [ + 160.4233052210003, + -77.22094554499989 + ], + [ + 160.34988776700015, + -77.41628637899993 + ], + [ + 160.5111541370003, + -77.44592832099994 + ], + [ + 160.4017390790001, + -77.60455623699988 + ], + [ + 160.58173515600015, + -77.65298186299998 + ], + [ + 161.18841888600002, + -77.71494795699988 + ], + [ + 161.83239137300006, + -77.8248268719999 + ], + [ + 162.65418818800003, + -77.80322971599998 + ], + [ + 163.24071896500004, + -77.68340751299996 + ], + [ + 163.6073231030001, + -77.65837360799998 + ], + [ + 163.69552054300016, + -77.60351838799988 + ], + [ + 163.25615307300006, + -77.53044006599998 + ], + [ + 162.96245274900002, + -77.57196101299996 + ], + [ + 162.81995413300024, + -77.49881446299997 + ], + [ + 162.78280384800019, + -77.37026770099999 + ], + [ + 162.0121822640001, + -77.27022947999995 + ], + [ + 161.9984785160001, + -77.21463950199995 + ] + ] + ], + [ + [ + [ + 161.7021026770002, + 56.98132553200003 + ], + [ + 161.75729365300003, + 56.821190948000094 + ], + [ + 161.3903045950001, + 56.66149507300014 + ], + [ + 161.32229567700017, + 56.60659243300017 + ], + [ + 161.47689870800002, + 56.47834981800014 + ], + [ + 161.74499471900003, + 56.45561809600008 + ], + [ + 162.0014957090002, + 56.524089863000086 + ], + [ + 162.19569367700024, + 56.649024645000054 + ], + [ + 162.3247986230001, + 56.664585145000046 + ], + [ + 162.58030669200002, + 56.59935616900009 + ], + [ + 162.76820364800005, + 56.66947531500017 + ], + [ + 162.76170365000007, + 56.798180108999986 + ], + [ + 162.71339471800002, + 56.90791246500015 + ], + [ + 162.7608946280003, + 57.088677930000074 + ], + [ + 162.68919364900012, + 57.25611399000019 + ], + [ + 162.67469765100032, + 57.36741862400004 + ], + [ + 162.47720358300012, + 57.404345936000084 + ], + [ + 161.85659758100007, + 57.40370874400014 + ], + [ + 161.74470571100017, + 57.33159755400004 + ], + [ + 161.85060167000006, + 57.15980106100005 + ], + [ + 161.7021026770002, + 56.98132553200003 + ] + ] + ], + [ + [ + [ + 162.5701072720001, + -74.35816841899998 + ], + [ + 162.33147623900015, + -74.34468360799997 + ], + [ + 162.5553765740002, + -74.48848191899998 + ], + [ + 162.63238047900018, + -74.58876355099994 + ], + [ + 162.39030934200002, + -74.67858338999991 + ], + [ + 162.5244817040001, + -74.73157061799998 + ], + [ + 162.7934284160001, + -74.69266381999995 + ], + [ + 162.66669801600005, + -74.52050968599997 + ], + [ + 162.70380220200002, + -74.38834009699991 + ], + [ + 162.5701072720001, + -74.35816841899998 + ] + ] + ], + [ + [ + [ + 163.32484229300007, + -74.09983671999998 + ], + [ + 162.96397842200008, + -74.16599058199995 + ], + [ + 163.26115656900015, + -74.19875830399997 + ], + [ + 163.32484229300007, + -74.09983671999998 + ] + ] + ], + [ + [ + [ + 162.8685859540002, + -73.22404768899997 + ], + [ + 162.72379874800004, + -73.33123685099997 + ], + [ + 162.94492986900025, + -73.33344699199995 + ], + [ + 162.8685859540002, + -73.22404768899997 + ] + ] + ], + [ + [ + [ + 164.3722924340001, + -78.37470508199993 + ], + [ + 163.49044714100023, + -78.4357240199999 + ], + [ + 163.78014695100012, + -78.50792224199989 + ], + [ + 164.13932857600003, + -78.4779946459999 + ], + [ + 164.3722924340001, + -78.37470508199993 + ] + ] + ], + [ + [ + [ + 164.55273778200012, + -77.89181137899999 + ], + [ + 164.48225969700013, + -77.85321219699983 + ], + [ + 163.84712609400003, + -77.86323846699992 + ], + [ + 163.69306347100007, + -77.91976336199997 + ], + [ + 163.78222650400016, + -78.01949379899997 + ], + [ + 163.50166431200012, + -78.14899291299997 + ], + [ + 162.9663505010002, + -78.11718173399993 + ], + [ + 162.92867316000013, + -78.04479039299991 + ], + [ + 162.58803047000015, + -78.05273409399996 + ], + [ + 162.77478773000018, + -78.15166355699995 + ], + [ + 163.21648637200008, + -78.22034590399994 + ], + [ + 162.65911238800015, + -78.23804916099994 + ], + [ + 162.59467112100026, + -78.30629061999991 + ], + [ + 162.8213594460001, + -78.3919114599999 + ], + [ + 163.52548267400016, + -78.34585204499996 + ], + [ + 163.4471265970002, + -78.24379546099993 + ], + [ + 164.1922301410001, + -78.14305936199992 + ], + [ + 164.50757104000013, + -78.01218242999994 + ], + [ + 164.55273778200012, + -77.89181137899999 + ] + ] + ], + [ + [ + [ + 163.77349322500004, + -77.73474970799998 + ], + [ + 163.45188282900006, + -77.72230559399998 + ], + [ + 163.18246706600007, + -77.77318980099994 + ], + [ + 163.75774932600007, + -77.82587511299994 + ], + [ + 163.77349322500004, + -77.73474970799998 + ] + ] + ], + [ + [ + [ + 164.543747853, + -84.30262487799996 + ], + [ + 163.7499098930001, + -84.35942855399998 + ], + [ + 164.29847416000007, + -84.41053555299993 + ], + [ + 165.12441297500004, + -84.37824492899995 + ], + [ + 164.543747853, + -84.30262487799996 + ] + ] + ], + [ + [ + [ + 165.47838088600008, + -78.27363538399993 + ], + [ + 165.36166417700008, + -78.22124410899988 + ], + [ + 164.76084023400006, + -78.29642947499997 + ], + [ + 164.82552022400023, + -78.37364678299991 + ], + [ + 165.48182148800015, + -78.39519079699994 + ], + [ + 165.70919478200005, + -78.29696574899992 + ], + [ + 165.47838088600008, + -78.27363538399993 + ] + ] + ], + [ + [ + [ + 165.60968043100002, + -78.0910977449999 + ], + [ + 165.35009731300033, + -78.06948198099997 + ], + [ + 165.14083815900017, + -78.16528348399987 + ], + [ + 165.35627025300005, + -78.19152706599994 + ], + [ + 165.60968043100002, + -78.0910977449999 + ] + ] + ], + [ + [ + [ + 167.45245648500008, + -85.21898987999992 + ], + [ + 167.1267449920001, + -85.0710753809999 + ], + [ + 165.41327190900017, + -85.18167832599988 + ], + [ + 167.4949577860002, + -85.27035202299999 + ], + [ + 167.45245648500008, + -85.21898987999992 + ] + ] + ], + [ + [ + [ + 166.25714633000018, + -78.11962723899995 + ], + [ + 166.02364200500006, + -78.12993983399991 + ], + [ + 166.17960514600009, + -78.24879962699998 + ], + [ + 166.48649222100016, + -78.26565312599985 + ], + [ + 166.74582656300004, + -78.19755047099994 + ], + [ + 166.25714633000018, + -78.11962723899995 + ] + ] + ], + [ + [ + [ + 166.2569276050001, + -50.54623930799988 + ], + [ + 166.10830657100018, + -50.53456616699992 + ], + [ + 166.0877377160001, + -50.667067962999965 + ], + [ + 165.9080196530001, + -50.76068258999993 + ], + [ + 165.96386760400014, + -50.841791583999964 + ], + [ + 166.12188760100014, + -50.820406499999876 + ], + [ + 166.2346806930001, + -50.85235077099992 + ], + [ + 166.18191560700018, + -50.68262427199994 + ], + [ + 166.2569276050001, + -50.54623930799988 + ] + ] + ], + [ + [ + [ + 169.23855564000007, + -52.49154727299998 + ], + [ + 169.12716668400014, + -52.457099494999966 + ], + [ + 169.02832057700004, + -52.55710062899993 + ], + [ + 169.18551663300002, + -52.57488484899994 + ], + [ + 169.23855564000007, + -52.49154727299998 + ] + ] + ], + [ + [ + [ + 169.28784173300028, + 69.59777726700008 + ], + [ + 169.25370760600015, + 69.71533815300012 + ], + [ + 169.45347568400007, + 69.827572675 + ], + [ + 169.41394059400022, + 69.89084699199998 + ], + [ + 168.89309667400005, + 69.94355307000012 + ], + [ + 168.66827357800003, + 69.94828465400013 + ], + [ + 168.16473359500014, + 70.00633168000002 + ], + [ + 167.91886873700003, + 69.9341686910002 + ], + [ + 167.85794068300004, + 69.818958258 + ], + [ + 168.08287073100018, + 69.77012730200005 + ], + [ + 168.25784262500008, + 69.68823644300005 + ], + [ + 168.71650673700003, + 69.5612993920002 + ], + [ + 169.15309157600007, + 69.56004730400014 + ], + [ + 169.28784173300028, + 69.59777726700008 + ] + ] + ], + [ + [ + [ + 170.19139999200013, + -84.99028570499996 + ], + [ + 170.20517163400007, + -84.8994880329999 + ], + [ + 169.1780189540002, + -84.96399971099993 + ], + [ + 169.2790133860002, + -85.05947448799998 + ], + [ + 169.8189563510001, + -85.18631553099988 + ], + [ + 170.87663074400007, + -85.1811941869999 + ], + [ + 170.19139999200013, + -84.99028570499996 + ] + ] + ], + [ + [ + [ + 179.62109915700023, + 51.87181385800011 + ], + [ + 179.73475676900011, + 51.90760443300019 + ], + [ + 179.77390674200012, + 51.970691429 + ], + [ + 179.66331174900006, + 52.022939408000184 + ], + [ + 179.48244879600009, + 51.98283239500006 + ], + [ + 179.52185281300012, + 51.89676341300009 + ], + [ + 179.62109915700023, + 51.87181385800011 + ] + ] + ], + [ + [ + [ + 177.57205317900014, + 52.001810185000124 + ], + [ + 177.67593713100007, + 52.09216518200009 + ], + [ + 177.5633811480003, + 52.12195716500014 + ], + [ + 177.4974261970001, + 51.99332618000011 + ], + [ + 177.34556223800007, + 51.96300316900016 + ], + [ + 177.2004082860003, + 51.89474416400009 + ], + [ + 177.2934092810002, + 51.845608183000195 + ], + [ + 177.40952123300008, + 51.93081918000013 + ], + [ + 177.56049820500004, + 51.91636219900005 + ], + [ + 177.57205317900014, + 52.001810185000124 + ] + ] + ], + [ + [ + [ + 173.66043428500018, + 52.35639343500003 + ], + [ + 173.70772689600028, + 52.47737470100009 + ], + [ + 173.62386890900007, + 52.50694568700004 + ], + [ + 173.5300909460002, + 52.449965687000144 + ], + [ + 173.66043428500018, + 52.35639343500003 + ] + ] + ], + [ + [ + [ + 173.3686084320001, + 52.82604163400009 + ], + [ + 173.29538486900015, + 52.92698457800009 + ], + [ + 173.10723489400004, + 52.99322554700018 + ], + [ + 172.74655197400034, + 53.010747507000076 + ], + [ + 172.62906300600002, + 53.001321496000116 + ], + [ + 172.6403580250003, + 52.92543851100015 + ], + [ + 172.75422201100002, + 52.87748753200003 + ], + [ + 172.76335249700003, + 52.823654011000144 + ], + [ + 172.90361400700033, + 52.76166456800007 + ], + [ + 172.99845797700016, + 52.79697657100013 + ], + [ + 173.1668849360001, + 52.79522658900015 + ], + [ + 173.2290559050001, + 52.856153584000026 + ], + [ + 173.3686084320001, + 52.82604163400009 + ] + ] + ], + [ + [ + [ + 178.71136469600003, + 70.92588010400016 + ], + [ + 178.79101574300023, + 70.79507312800013 + ], + [ + 179.09551972400016, + 70.86615367900009 + ], + [ + 179.44192467200014, + 70.87088375500014 + ], + [ + 179.7477415950001, + 70.91672354500008 + ], + [ + 179.99998474500023, + 70.9958829090001 + ], + [ + 179.99998860100004, + 71.53457257200012 + ], + [ + 179.47302270600017, + 71.41924127200019 + ], + [ + 179.2241207500001, + 71.3111866380001 + ], + [ + 178.84912060400006, + 71.20618469300007 + ], + [ + 178.63107260100003, + 71.06784037500012 + ], + [ + 178.71136469600003, + 70.92588010400016 + ] + ] + ] + ] + }, + "properties": { + "biome_name": "Tundra", + "biome_num": 11, + "color_bio": "#9ED7C2", + "area_km2": 8545155.499328297, + "percentage": 11.198726300300555 + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + -69.42980950199984, + -25.180359959999976 + ], + [ + -69.4956055969999, + -25.366350032999947 + ], + [ + -69.72080956599984, + -25.742412501999922 + ], + [ + -69.77498650099989, + -25.939821408999933 + ], + [ + -69.8710635629999, + -26.18854902199996 + ], + [ + -70.00304450699997, + -26.31445140999989 + ], + [ + -70.1118625659999, + -26.299983071999975 + ], + [ + -70.27693157599998, + -26.238980753999954 + ], + [ + -70.36677551999992, + -26.058761788999902 + ], + [ + -70.36721758099998, + -25.834119239999893 + ], + [ + -70.31328556599993, + -25.458562702999927 + ], + [ + -70.29781357899998, + -25.267439719999913 + ], + [ + -70.31024964099998, + -25.073855139999978 + ], + [ + -70.30373354999989, + -24.769691630999944 + ], + [ + -70.3507005379999, + -24.538839097999983 + ], + [ + -70.36634854599993, + -24.246632373999887 + ], + [ + -70.39394361499984, + -24.09544278999988 + ], + [ + -70.38873258599989, + -23.738698763999935 + ], + [ + -70.37762455199999, + -23.547298339999884 + ], + [ + -70.31999159199995, + -23.311596540999915 + ], + [ + -70.30363464299995, + -23.111401823999813 + ], + [ + -70.30879957199994, + -22.958491769999966 + ], + [ + -70.40814959999994, + -23.083373242999926 + ], + [ + -70.57710261599993, + -23.098869537999917 + ], + [ + -70.59088849999989, + -23.21659454099995 + ], + [ + -70.58771561399993, + -23.433103290999952 + ], + [ + -70.61836957599996, + -23.49326423399998 + ], + [ + -70.54662350199999, + -23.532637385999976 + ], + [ + -70.50489050899995, + -23.460441874999958 + ], + [ + -70.4298406239999, + -23.495223251999903 + ], + [ + -70.39130348299989, + -23.610500236999883 + ], + [ + -70.44646461999986, + -23.740546805999884 + ], + [ + -70.49987762799998, + -23.807783248999954 + ], + [ + -70.50068664899993, + -24.15771278699998 + ], + [ + -70.54140459399991, + -24.407421416999966 + ], + [ + -70.57729355599992, + -24.550460270999906 + ], + [ + -70.55574049799998, + -24.58027604199998 + ], + [ + -70.5802076089999, + -24.714127491999932 + ], + [ + -70.51721157099996, + -24.9287779739999 + ], + [ + -70.47186262499997, + -25.027415372999883 + ], + [ + -70.50679755899989, + -25.092920281999966 + ], + [ + -70.46015964399993, + -25.14478967799988 + ], + [ + -70.43704252299989, + -25.246194947999925 + ], + [ + -70.44842548299994, + -25.349484134999955 + ], + [ + -70.53353163999998, + -25.474271059999978 + ], + [ + -70.62788353899987, + -25.50979356599987 + ], + [ + -70.73120155899989, + -25.780974620999814 + ], + [ + -70.69478654899996, + -25.896648236999965 + ], + [ + -70.63106564399999, + -25.989486196999962 + ], + [ + -70.67368359899996, + -26.16550398499993 + ], + [ + -70.62813549899994, + -26.33490844999983 + ], + [ + -70.69396260799994, + -26.38617401399989 + ], + [ + -70.70939654099988, + -26.53217838599994 + ], + [ + -70.6865385879999, + -26.566240931999857 + ], + [ + -70.82936051899992, + -26.880672103999927 + ], + [ + -70.78950456899986, + -26.99416005599994 + ], + [ + -70.81099660699988, + -27.05286941999998 + ], + [ + -70.93086251699998, + -27.110216724999816 + ], + [ + -70.96979561899997, + -27.167124483999885 + ], + [ + -70.93110659799993, + -27.32047173799998 + ], + [ + -70.9611585699999, + -27.368105757999956 + ], + [ + -70.89842957999991, + -27.457370008999874 + ], + [ + -70.9375836289999, + -27.65854339699996 + ], + [ + -71.04103861099998, + -27.71653191799993 + ], + [ + -71.0796055909999, + -27.780992943999934 + ], + [ + -71.14509557999997, + -27.978975676999823 + ], + [ + -71.1686475539999, + -28.122499675999904 + ], + [ + -71.15692160699996, + -28.216969759999984 + ], + [ + -71.19825763299991, + -28.292492718999938 + ], + [ + -71.16591656299988, + -28.352476467999963 + ], + [ + -71.2565685219999, + -28.464075640999965 + ], + [ + -71.31008948799996, + -28.689757545999953 + ], + [ + -71.39767450899996, + -28.80407010999994 + ], + [ + -71.49520164099994, + -28.85379809699998 + ], + [ + -71.52128562099995, + -28.917179534999832 + ], + [ + -71.46635448299992, + -29.104448182999874 + ], + [ + -71.50284560099993, + -29.13440979899991 + ], + [ + -71.45999161299994, + -29.247726423999893 + ], + [ + -71.33963754099989, + -29.32877842199997 + ], + [ + -71.30854051299997, + -29.415674115999934 + ], + [ + -71.32904063599983, + -29.544581080999876 + ], + [ + -71.29196161099992, + -29.596984906999978 + ], + [ + -71.32887249499993, + -29.731610006999915 + ], + [ + -71.27706948399992, + -29.859279132999916 + ], + [ + -71.29368560099994, + -29.94805974899998 + ], + [ + -71.40270951899998, + -29.991903975999946 + ], + [ + -71.37319164099989, + -30.08306957799988 + ], + [ + -71.44873857199997, + -30.16694275699996 + ], + [ + -71.51702861999996, + -30.285550206999915 + ], + [ + -71.64875056399995, + -30.26372306099995 + ], + [ + -71.6884615059999, + -30.39973704199997 + ], + [ + -71.71434750599997, + -30.605316628999958 + ], + [ + -71.68486064099994, + -30.913512670999978 + ], + [ + -71.65344962599988, + -30.97377553699988 + ], + [ + -71.67146250399992, + -31.147082449999914 + ], + [ + -71.63078361899989, + -31.262900402999833 + ], + [ + -71.61830849699993, + -31.397469007999973 + ], + [ + -71.57202949499992, + -31.499323548999882 + ], + [ + -71.57329549799994, + -31.580161807999957 + ], + [ + -71.51174148299992, + -31.75542773899997 + ], + [ + -71.52238448799994, + -31.920936296999912 + ], + [ + -71.49497952099995, + -31.967761965999955 + ], + [ + -71.54355650499997, + -32.18619369299989 + ], + [ + -71.47792854999994, + -32.26950025499991 + ], + [ + -71.47814949699989, + -32.33844878499997 + ], + [ + -71.41082755999997, + -32.384414303999904 + ], + [ + -71.44400061799996, + -32.49696381699994 + ], + [ + -71.48686952599985, + -32.523626986999886 + ], + [ + -71.43859864899997, + -32.63111081299991 + ], + [ + -71.50055650399997, + -32.770846359999894 + ], + [ + -71.55665557599991, + -32.78944278499989 + ], + [ + -71.52589449399989, + -32.87439722999994 + ], + [ + -71.57884264099994, + -33.02026279699987 + ], + [ + -71.6612774859999, + -33.02154858099988 + ], + [ + -71.71987956199996, + -33.20852017499993 + ], + [ + -71.6547466419999, + -33.30297718299994 + ], + [ + -71.70948750999986, + -33.42770241699998 + ], + [ + -71.60082250599999, + -33.537497301999906 + ], + [ + -71.6377945779999, + -33.67066143599993 + ], + [ + -71.69160455199983, + -33.73811061099991 + ], + [ + -71.78198259099997, + -33.768516802999955 + ], + [ + -71.82930748699994, + -33.894768213999896 + ], + [ + -71.93702650999995, + -34.02788943199994 + ], + [ + -71.91262863399993, + -34.14780110699991 + ], + [ + -71.7426686149999, + -34.22753396099989 + ], + [ + -71.7220005179999, + -34.26674400099989 + ], + [ + -71.79354056499989, + -34.40911984699994 + ], + [ + -71.79863759999995, + -34.548993358999894 + ], + [ + -71.90327459699995, + -34.67769094499994 + ], + [ + -71.90806552599997, + -34.76098577199997 + ], + [ + -71.8574906309999, + -34.816698102999965 + ], + [ + -71.77011850999997, + -34.83390581499998 + ], + [ + -71.72055061699996, + -34.89107927999993 + ], + [ + -71.61730954199999, + -34.907748873999935 + ], + [ + -71.68274655699992, + -35.04605547299991 + ], + [ + -71.78894761699996, + -35.159417360999896 + ], + [ + -71.93658461599983, + -35.44275452199997 + ], + [ + -72.02075954299994, + -35.52936539799998 + ], + [ + -71.88193561299994, + -35.62335721099993 + ], + [ + -71.89533257699998, + -35.68869749899994 + ], + [ + -71.97418952199996, + -35.7102119999999 + ], + [ + -72.10603350599985, + -35.810959793999984 + ], + [ + -72.15789753799993, + -35.92270414199993 + ], + [ + -72.22840862199996, + -35.96335721099996 + ], + [ + -72.38024160099985, + -36.207281657999886 + ], + [ + -72.35334759399996, + -36.29119171699995 + ], + [ + -72.3663325039999, + -36.38248371899988 + ], + [ + -72.48389456299998, + -36.47602860799998 + ], + [ + -72.50468453299999, + -36.580465277999906 + ], + [ + -72.4832915689999, + -36.74251797599993 + ], + [ + -72.50413551799994, + -36.84696269199998 + ], + [ + -72.61222854199991, + -37.01168117199995 + ], + [ + -72.6253965109999, + -37.10944634899988 + ], + [ + -72.73565659199994, + -37.22210298399989 + ], + [ + -72.64123562599997, + -37.38275573699997 + ], + [ + -72.67077663799984, + -37.48083808599995 + ], + [ + -72.61268652899997, + -37.51217148399991 + ], + [ + -72.55311550499994, + -37.835918302999914 + ], + [ + -72.56977051399997, + -38.07672803499992 + ], + [ + -72.66194160899988, + -38.280067473999964 + ], + [ + -72.81992355299997, + -38.51056645899996 + ], + [ + -72.95641362599991, + -38.65601108699991 + ], + [ + -73.04630249699994, + -38.70303741899994 + ], + [ + -73.15703548499994, + -38.7089771709999 + ], + [ + -73.03227957299998, + -38.813547447999895 + ], + [ + -72.94724265099995, + -38.98847592399994 + ], + [ + -72.88844259399991, + -39.00448954999996 + ], + [ + -72.68770556799996, + -39.30161125399991 + ], + [ + -72.40865357099995, + -39.33028658299986 + ], + [ + -72.25033551299992, + -39.47672664599992 + ], + [ + -72.16600049099998, + -39.38172699299997 + ], + [ + -72.22632555099995, + -39.246635021999964 + ], + [ + -72.18462357099997, + -39.19159374599997 + ], + [ + -72.09927350099997, + -39.180332825999926 + ], + [ + -72.08766959399998, + -38.93857275499994 + ], + [ + -72.18817850399995, + -38.82044038999993 + ], + [ + -72.1969065799999, + -38.733317714999885 + ], + [ + -72.12084952599997, + -38.64413627699997 + ], + [ + -72.02262853999986, + -38.45453745899994 + ], + [ + -72.00003864099995, + -38.233548246999874 + ], + [ + -71.83808853599999, + -37.95481325299994 + ], + [ + -71.73904461599989, + -37.81903161799988 + ], + [ + -71.94618960599996, + -37.753892830999916 + ], + [ + -71.98046153199988, + -37.68407023699996 + ], + [ + -71.93347962399997, + -37.5539266049999 + ], + [ + -71.84396357999998, + -37.19804457499998 + ], + [ + -71.79000859899998, + -37.121733212999914 + ], + [ + -71.84252960399988, + -36.85695241199994 + ], + [ + -71.76495358099999, + -36.609464818999925 + ], + [ + -71.72264056099993, + -36.267240092999884 + ], + [ + -71.59377248699985, + -36.159648810999954 + ], + [ + -71.50546259899994, + -35.95329741799998 + ], + [ + -71.48506959599996, + -35.83623911099994 + ], + [ + -71.43536356899989, + -35.80566075499996 + ], + [ + -71.27832760699994, + -35.55966882799987 + ], + [ + -71.17298854199998, + -35.52725550599996 + ], + [ + -71.08847850599989, + -35.171032331999925 + ], + [ + -70.98054457099994, + -34.996979764999935 + ], + [ + -70.96545463099989, + -34.83721381699996 + ], + [ + -70.97920262899993, + -34.751292771999886 + ], + [ + -70.89990948899998, + -34.6732958099999 + ], + [ + -70.9161296449999, + -34.55908701499993 + ], + [ + -70.82159451799998, + -34.42154082199988 + ], + [ + -70.82639349299984, + -34.30556176799996 + ], + [ + -70.70017259199983, + -34.16785061899998 + ], + [ + -70.65529655299997, + -34.081171849999976 + ], + [ + -70.65026053799994, + -33.95616749899983 + ], + [ + -70.68141959199994, + -33.87022080399993 + ], + [ + -70.68591363399997, + -33.72993976399994 + ], + [ + -70.60254655399984, + -33.630149685999925 + ], + [ + -70.57596552699994, + -33.54783101499987 + ], + [ + -70.5975645179999, + -33.46915528699992 + ], + [ + -70.72035956799988, + -33.34121006099997 + ], + [ + -70.73780063199996, + -33.26315626999991 + ], + [ + -70.71865854399994, + -33.141513060999955 + ], + [ + -70.76933251299988, + -33.05644445499996 + ], + [ + -70.85917662499992, + -33.0285104219999 + ], + [ + -70.90913360599995, + -33.063165567999874 + ], + [ + -70.89257062999991, + -33.367653288999975 + ], + [ + -70.91966261799985, + -33.438127324999925 + ], + [ + -71.01081849699995, + -33.428388558999984 + ], + [ + -71.10236363199988, + -33.247760892999906 + ], + [ + -71.2971194989999, + -33.17159906499995 + ], + [ + -71.34050758299992, + -33.12109776299991 + ], + [ + -71.29836253499991, + -33.03213743899988 + ], + [ + -71.1478956389999, + -32.919508632999964 + ], + [ + -70.82248651999987, + -32.79216271299998 + ], + [ + -70.74466658399996, + -32.8032011759999 + ], + [ + -70.52548953899998, + -33.01418289999998 + ], + [ + -70.49272149399991, + -33.0931825049999 + ], + [ + -70.3171615259999, + -33.074602004999974 + ], + [ + -70.19094062499988, + -33.02453153299996 + ], + [ + -70.12875360899994, + -32.95393880899991 + ], + [ + -70.1745146099999, + -32.86858320599998 + ], + [ + -70.33162651199984, + -32.844669971999906 + ], + [ + -70.37190256199995, + -32.78912192599989 + ], + [ + -70.37624354999991, + -32.61998802799985 + ], + [ + -70.4289476159999, + -32.56506577499994 + ], + [ + -70.53882548199994, + -32.56376875899997 + ], + [ + -70.50751454699997, + -32.49494176699994 + ], + [ + -70.51792151799998, + -32.371547914999894 + ], + [ + -70.61862153599992, + -32.190389505999974 + ], + [ + -70.47879060299994, + -32.14703293799988 + ], + [ + -70.45967852299992, + -31.953466462999927 + ], + [ + -70.49064663799993, + -31.85753742499992 + ], + [ + -70.62868451299988, + -31.636736972999927 + ], + [ + -70.68942263399998, + -31.591267326999912 + ], + [ + -70.73561060799994, + -31.45506106499988 + ], + [ + -70.81157663499994, + -31.41211252899984 + ], + [ + -70.8145595869999, + -31.349130739999907 + ], + [ + -70.72331955299984, + -31.310719998999957 + ], + [ + -70.67233260299992, + -31.248181947999967 + ], + [ + -70.59688558399995, + -31.22833963699992 + ], + [ + -70.51770761199987, + -31.07796108499997 + ], + [ + -70.43164055399996, + -31.021155753999835 + ], + [ + -70.50305956599988, + -30.8945023469999 + ], + [ + -70.42568956999997, + -30.809836239999925 + ], + [ + -70.44172649799987, + -30.704559199999892 + ], + [ + -70.60134157199997, + -30.590522066999938 + ], + [ + -70.59040050599992, + -30.522510633999957 + ], + [ + -70.52639059299992, + -30.465061739999953 + ], + [ + -70.57588154099989, + -30.366981234999912 + ], + [ + -70.49159261899996, + -30.352726969999935 + ], + [ + -70.46306648799992, + -30.441058650999878 + ], + [ + -70.3609614959999, + -30.500920359999952 + ], + [ + -70.29994157699986, + -30.467250757999977 + ], + [ + -70.31298851199995, + -30.29753196999991 + ], + [ + -70.46868152499991, + -30.063979290999953 + ], + [ + -70.39907853599988, + -30.032605658999955 + ], + [ + -70.26806653999995, + -30.116891394999925 + ], + [ + -70.19087256399996, + -30.1964425299999 + ], + [ + -70.1098175489999, + -30.176808256999948 + ], + [ + -70.10432455199998, + -29.934166408999943 + ], + [ + -70.1845546209999, + -29.833493213999873 + ], + [ + -70.28437755599992, + -29.78586791099997 + ], + [ + -70.37126151399991, + -29.64032839899994 + ], + [ + -70.41849554999999, + -29.613364486999956 + ], + [ + -70.53069252099988, + -29.64732427099989 + ], + [ + -70.46504260599994, + -29.497396832999925 + ], + [ + -70.4626924879999, + -29.398222825999937 + ], + [ + -70.4107515099999, + -29.153929239999968 + ], + [ + -70.36209053899995, + -29.060699844999874 + ], + [ + -70.26942457599995, + -28.971048349999876 + ], + [ + -70.24500255999999, + -28.790007622999894 + ], + [ + -70.15331258599997, + -28.69608236299996 + ], + [ + -70.00354758899994, + -28.59992936099991 + ], + [ + -69.97734860999992, + -28.49309345499995 + ], + [ + -70.02460460599997, + -28.409699888999967 + ], + [ + -70.00309764899993, + -28.35674101299992 + ], + [ + -69.83296948899994, + -28.310203009999952 + ], + [ + -69.72669248899996, + -28.14913971099992 + ], + [ + -69.69698350399995, + -28.032153655999934 + ], + [ + -69.73245253299996, + -27.731335196999964 + ], + [ + -69.70158349199988, + -27.604067563999934 + ], + [ + -69.62277264699998, + -27.495122268999978 + ], + [ + -69.51092553699988, + -27.399175293999917 + ], + [ + -69.39601148899999, + -27.127234167999973 + ], + [ + -69.33784460099992, + -27.020230959999935 + ], + [ + -69.31663553599992, + -26.861498835999896 + ], + [ + -69.41484864299991, + -26.758893276999913 + ], + [ + -69.31421651899996, + -26.62301055599994 + ], + [ + -69.26844763899999, + -26.47974974899995 + ], + [ + -69.14326458599993, + -26.40544702699998 + ], + [ + -69.09183456899996, + -26.321793956999898 + ], + [ + -69.09739663199991, + -26.191329968999923 + ], + [ + -69.18832351799995, + -26.101450150999938 + ], + [ + -69.21618664099998, + -25.983680555999968 + ], + [ + -69.19107848199997, + -25.496253941999953 + ], + [ + -69.24242350599985, + -25.4096579859999 + ], + [ + -69.41230054399995, + -25.262854986999912 + ], + [ + -69.42980950199984, + -25.180359959999976 + ] + ] + ], + [ + [ + [ + -17.981571589999874, + 27.63752133300011 + ], + [ + -17.913919572999873, + 27.772767531000113 + ], + [ + -17.99916855699996, + 27.822073406000186 + ], + [ + -18.041931517999956, + 27.76352598000011 + ], + [ + -18.15395146399993, + 27.766024793000156 + ], + [ + -18.169637524999928, + 27.7213167270001 + ], + [ + -18.046798553999963, + 27.690968035000083 + ], + [ + -17.981571589999874, + 27.63752133300011 + ] + ] + ], + [ + [ + [ + -15.685044446999939, + 27.754482242 + ], + [ + -15.56816852999998, + 27.75496621300016 + ], + [ + -15.432926521999889, + 27.803585275000046 + ], + [ + -15.391921580999963, + 27.852983351000034 + ], + [ + -15.375944499999889, + 28.005955766 + ], + [ + -15.414101437999875, + 28.10218873200006 + ], + [ + -15.529704478999975, + 28.14833077300017 + ], + [ + -15.703557555999964, + 28.156280506000087 + ], + [ + -15.718897444999982, + 28.06665415600014 + ], + [ + -15.816394568999954, + 28.01211059700006 + ], + [ + -15.837346476999869, + 27.92770215000013 + ], + [ + -15.794781495999928, + 27.845323632000145 + ], + [ + -15.685044446999939, + 27.754482242 + ] + ] + ], + [ + [ + [ + -17.133254590999968, + 28.054399981000074 + ], + [ + -17.16655153399995, + 28.171233821000158 + ], + [ + -17.21287948599985, + 28.212196349000124 + ], + [ + -17.318365569999855, + 28.217172182000184 + ], + [ + -17.33414852599992, + 28.089566256000126 + ], + [ + -17.26313251599987, + 28.017588506000095 + ], + [ + -17.133254590999968, + 28.054399981000074 + ] + ] + ], + [ + [ + [ + -115.23056764399996, + 28.036286688000132 + ], + [ + -115.18312858699989, + 28.03548353400015 + ], + [ + -115.14983365599983, + 28.16553932400018 + ], + [ + -115.17263762899995, + 28.27428965600012 + ], + [ + -115.24759665399995, + 28.23675029700013 + ], + [ + -115.34283468799998, + 28.135125420000122 + ], + [ + -115.23056764399996, + 28.036286688000132 + ] + ] + ], + [ + [ + [ + -16.201135491999935, + 28.48960683500019 + ], + [ + -16.130239510999957, + 28.572287604 + ], + [ + -16.320274522999966, + 28.56601794000011 + ], + [ + -16.38349553099988, + 28.532795094000164 + ], + [ + -16.46674157599989, + 28.436810065000145 + ], + [ + -16.607679589999975, + 28.384743191000155 + ], + [ + -16.76434557399989, + 28.362644974000034 + ], + [ + -16.84965155599997, + 28.37269252900012 + ], + [ + -16.914451545999952, + 28.34032312700009 + ], + [ + -16.834882474999915, + 28.243570819000126 + ], + [ + -16.785625549999963, + 28.127568799000073 + ], + [ + -16.631620483999882, + 27.996442138000134 + ], + [ + -16.546197491999976, + 28.035279519000028 + ], + [ + -16.451269587999946, + 28.13405136300014 + ], + [ + -16.333629576999897, + 28.385893188000182 + ], + [ + -16.201135491999935, + 28.48960683500019 + ] + ] + ], + [ + [ + [ + -13.833723431999942, + 28.713067032000026 + ], + [ + -13.940806435999889, + 28.74405777800007 + ], + [ + -14.015165484999898, + 28.700841524000168 + ], + [ + -14.029692495999882, + 28.59009395200019 + ], + [ + -14.100197544999958, + 28.466280836000067 + ], + [ + -14.1481385109999, + 28.429852415000028 + ], + [ + -14.198859586999959, + 28.32175587100005 + ], + [ + -14.21811147699998, + 28.214147321000098 + ], + [ + -14.366428582999959, + 28.114498395000055 + ], + [ + -14.324321589999954, + 28.041673235000076 + ], + [ + -14.212578582999981, + 28.161854304000087 + ], + [ + -13.947480442999904, + 28.221551727000076 + ], + [ + -13.87377752999987, + 28.337278988000037 + ], + [ + -13.861182546999942, + 28.476698369000076 + ], + [ + -13.82070449199989, + 28.55063044300016 + ], + [ + -13.833723431999942, + 28.713067032000026 + ] + ] + ], + [ + [ + [ + -17.820259515999965, + 28.44626367800015 + ], + [ + -17.76624250799989, + 28.545890476000125 + ], + [ + -17.737434577999977, + 28.763147731000117 + ], + [ + -17.756639529999973, + 28.80275825800004 + ], + [ + -17.912687599999913, + 28.85437033000011 + ], + [ + -18.005113505999873, + 28.757145114000025 + ], + [ + -17.963102568999943, + 28.650317255000118 + ], + [ + -17.820259515999965, + 28.44626367800015 + ] + ] + ], + [ + [ + [ + -118.26444963699998, + 29.094286886000077 + ], + [ + -118.40416758099991, + 29.151508630000137 + ], + [ + -118.4005586689999, + 29.092066855000155 + ], + [ + -118.33750965799993, + 29.030957081000167 + ], + [ + -118.30223056299985, + 28.87929526000005 + ], + [ + -118.23806759699988, + 28.945126728000105 + ], + [ + -118.26444963699998, + 29.094286886000077 + ] + ] + ], + [ + [ + [ + -13.465226469999891, + 29.010408175000066 + ], + [ + -13.44756747599996, + 29.09102096100014 + ], + [ + -13.372211483999877, + 29.186710947000165 + ], + [ + -13.453760528999965, + 29.235638128000176 + ], + [ + -13.526464486999885, + 29.131366414000126 + ], + [ + -13.63804253799998, + 29.11720988200011 + ], + [ + -13.747794507999913, + 29.073668410000096 + ], + [ + -13.824868453999898, + 29.005301081000084 + ], + [ + -13.82940155499989, + 28.919894684000155 + ], + [ + -13.787079481999967, + 28.846695524000097 + ], + [ + -13.716294476999963, + 28.905834210000137 + ], + [ + -13.516467557999817, + 28.968457755000088 + ], + [ + -13.465226469999891, + 29.010408175000066 + ] + ] + ], + [ + [ + [ + -13.448255462999953, + 27.012326406000113 + ], + [ + -13.246760544999972, + 27.112752000000114 + ], + [ + -13.100999583999965, + 27.241736414000115 + ], + [ + -13.02814056099993, + 27.349130722000098 + ], + [ + -12.819749516999877, + 27.549113041000055 + ], + [ + -12.675539542999957, + 27.66640805300011 + ], + [ + -12.419930555999883, + 27.740704069000174 + ], + [ + -12.112959444999944, + 27.810120980000136 + ], + [ + -11.444410464999976, + 27.91657752100008 + ], + [ + -11.18459946199988, + 27.994403156000033 + ], + [ + -10.954790474999982, + 28.078660897000134 + ], + [ + -10.555870556999935, + 28.160637251000026 + ], + [ + -10.351289589999908, + 28.183255482000163 + ], + [ + -10.21296052799994, + 28.23562326600006 + ], + [ + -10.029820468999901, + 28.244874037000102 + ], + [ + -9.59437858699988, + 28.342270076000148 + ], + [ + -9.43693258299993, + 28.432165317000056 + ], + [ + -9.500227518999907, + 28.477564554000082 + ], + [ + -9.679520450999973, + 28.440734807000183 + ], + [ + -9.68228748499996, + 28.530602220000105 + ], + [ + -9.565264548999892, + 28.680645160000097 + ], + [ + -9.445997442999953, + 28.74426347000019 + ], + [ + -9.101002498999947, + 28.97666347100011 + ], + [ + -8.973471506999886, + 29.04899057800003 + ], + [ + -8.934388535999915, + 29.174096686000155 + ], + [ + -8.62833943499993, + 29.35121971100017 + ], + [ + -8.488694580999947, + 29.407377624 + ], + [ + -8.312313521999954, + 29.50706276 + ], + [ + -8.261489515999926, + 29.575640977999967 + ], + [ + -8.128565439999875, + 29.675677316000076 + ], + [ + -8.040434589999848, + 29.767512632000035 + ], + [ + -7.995098551999945, + 29.897708902000147 + ], + [ + -7.898579427999948, + 29.86659008100014 + ], + [ + -7.787343525999916, + 29.87713954400016 + ], + [ + -7.699066494999954, + 29.941517254000075 + ], + [ + -7.549685557999965, + 30.101940176000028 + ], + [ + -7.29799544499997, + 30.424447479000037 + ], + [ + -7.174567561999936, + 30.533214408 + ], + [ + -6.963142435999941, + 30.63844065300009 + ], + [ + -6.882206443999962, + 30.745646703000148 + ], + [ + -6.926692556999967, + 30.7855765810001 + ], + [ + -7.101632431999974, + 30.831074725000178 + ], + [ + -7.097743563999927, + 30.944019697000044 + ], + [ + -6.929509546999952, + 31.027497921000077 + ], + [ + -6.634693536999976, + 31.036847431000012 + ], + [ + -6.375764477999951, + 31.122354746000156 + ], + [ + -6.371013446999939, + 31.055185860999984 + ], + [ + -6.473543568999958, + 30.904331050000053 + ], + [ + -6.502750477999939, + 30.820645291000176 + ], + [ + -6.444241440999974, + 30.785215489000052 + ], + [ + -6.303991581999981, + 30.799214943000038 + ], + [ + -6.188567577999947, + 30.78738640199998 + ], + [ + -6.072030457999972, + 30.69214970900009 + ], + [ + -5.792745443999934, + 30.72412767500009 + ], + [ + -5.659211499999913, + 30.761876415000074 + ], + [ + -5.718324536999944, + 30.856053802000076 + ], + [ + -5.414214504999961, + 30.93434999800013 + ], + [ + -5.312104483999974, + 31.018737323000153 + ], + [ + -5.185692475999929, + 31.208870739000076 + ], + [ + -5.031901483999889, + 31.37828492800014 + ], + [ + -5.07018850899982, + 31.445562609000092 + ], + [ + -5.344182529999955, + 31.52194001900017 + ], + [ + -5.331000478999954, + 31.563728333000086 + ], + [ + -4.918560550999928, + 31.71233461500003 + ], + [ + -4.758570470999871, + 31.79524069000007 + ], + [ + -4.455575566999869, + 31.91152802900018 + ], + [ + -4.038622486999941, + 31.921416496000063 + ], + [ + -3.496732446999943, + 32.031413888000145 + ], + [ + -3.148602502999893, + 32.07160058700009 + ], + [ + -2.976933581999958, + 32.121750017000124 + ], + [ + -2.837061578999965, + 32.222397898999986 + ], + [ + -2.570516554999926, + 32.195989539000095 + ], + [ + -2.400814530999924, + 32.27057640800007 + ], + [ + -2.316203576999897, + 32.279833884000084 + ], + [ + -2.281065464999926, + 32.232968484000025 + ], + [ + -2.468173516999911, + 32.14062857699997 + ], + [ + -2.400829450999936, + 32.095892013000025 + ], + [ + -2.172728528999926, + 32.104649761000076 + ], + [ + -2.169634432999885, + 32.047324416000095 + ], + [ + -2.253921509999941, + 31.94410597200016 + ], + [ + -2.1802605069999, + 31.85187871800008 + ], + [ + -2.060321506999969, + 31.81903004000003 + ], + [ + -1.676035553999895, + 31.87381818200015 + ], + [ + -1.463042508999933, + 31.96011540800015 + ], + [ + -1.342844508999917, + 32.049014543000055 + ], + [ + -1.187412507999966, + 32.09811170900019 + ], + [ + -0.706504500999927, + 32.18014824500011 + ], + [ + -0.556839583999931, + 32.24859704600016 + ], + [ + -0.345391491999976, + 32.37212417000018 + ], + [ + -0.061193508999963, + 32.4759985820001 + ], + [ + 0.109842578000098, + 32.56634694899998 + ], + [ + 0.465192525000077, + 32.7146422620001 + ], + [ + 0.774853557000085, + 32.8245179490001 + ], + [ + 1.461266551000108, + 33.03468260400018 + ], + [ + 2.093610571000056, + 33.20362623300008 + ], + [ + 2.452218564000077, + 33.32075293600019 + ], + [ + 2.711448534000112, + 33.35585081500011 + ], + [ + 3.076121504000071, + 33.389182794000135 + ], + [ + 3.335470497000017, + 33.45425989000012 + ], + [ + 3.779655542000057, + 33.60152557100014 + ], + [ + 4.268428456000038, + 33.85729750200005 + ], + [ + 4.452857484000162, + 33.97556498300003 + ], + [ + 5.084853487000146, + 34.40502335900004 + ], + [ + 5.287847424000063, + 34.51669931100008 + ], + [ + 5.45306244700015, + 34.587399491000156 + ], + [ + 5.654736570000068, + 34.69485649600006 + ], + [ + 5.869099553000069, + 34.72861578400017 + ], + [ + 6.4295095760001, + 34.758712852000144 + ], + [ + 6.746160444000054, + 34.803171807000126 + ], + [ + 6.995542516000057, + 34.77412348300004 + ], + [ + 7.184670438000126, + 34.70233650600005 + ], + [ + 7.378052510999964, + 34.552968477000036 + ], + [ + 7.530343478000077, + 34.45693181500013 + ], + [ + 7.788749506000102, + 34.37981310900011 + ], + [ + 8.187101467000048, + 34.221156422000035 + ], + [ + 8.404247577000035, + 34.16997953900017 + ], + [ + 8.927145566000092, + 34.113481321000165 + ], + [ + 9.101101573000108, + 34.128468834000046 + ], + [ + 9.277276438000172, + 34.11638011800011 + ], + [ + 9.65771592800013, + 34.04841548200011 + ], + [ + 9.662645545000089, + 34.04955901700015 + ], + [ + 9.792697434000047, + 34.160389971000086 + ], + [ + 9.768398464000029, + 34.31452562700014 + ], + [ + 9.63502645900013, + 34.407762062000074 + ], + [ + 9.704906554000104, + 34.444432217999974 + ], + [ + 9.874452506000125, + 34.48162037600014 + ], + [ + 9.990845458000024, + 34.61617657600004 + ], + [ + 9.969043457000112, + 34.797603038000034 + ], + [ + 10.031229467000173, + 34.7779345670001 + ], + [ + 10.095620589000077, + 34.68824585600004 + ], + [ + 10.202850444000035, + 34.75062230300017 + ], + [ + 10.232279473000062, + 34.68808576200013 + ], + [ + 10.04012954000018, + 34.49774095499998 + ], + [ + 9.974712473000181, + 34.28451657000005 + ], + [ + 9.975529541000128, + 34.14484942000007 + ], + [ + 10.036227428000075, + 34.07958104800019 + ], + [ + 10.02414944100019, + 34.1782383960001 + ], + [ + 10.127710537000098, + 34.3186956240001 + ], + [ + 10.331000523000057, + 34.39741342900015 + ], + [ + 10.464850465000154, + 34.509970655000075 + ], + [ + 10.567919543000187, + 34.527430159000176 + ], + [ + 10.658820445000117, + 34.64081501300018 + ], + [ + 10.725830576000078, + 34.649145787000066 + ], + [ + 10.772979451000083, + 34.74767321500019 + ], + [ + 10.924329466000131, + 34.886520782 + ], + [ + 10.92658051, + 34.959619695000185 + ], + [ + 11.009039494000092, + 35.01765532200017 + ], + [ + 11.029509442, + 35.11377580200008 + ], + [ + 11.088129456000104, + 35.16306374000004 + ], + [ + 11.122509508000064, + 35.257139204000055 + ], + [ + 11.048809445000074, + 35.325600410000106 + ], + [ + 11.062809570000184, + 35.49610525200006 + ], + [ + 11.049880485000017, + 35.63183307500003 + ], + [ + 10.838379586000087, + 35.70127060500005 + ], + [ + 10.807390517000101, + 35.78882746300019 + ], + [ + 10.728750494999986, + 35.77113879700016 + ], + [ + 10.655289484000093, + 35.8159868410001 + ], + [ + 10.48948051900004, + 36.046851276000154 + ], + [ + 10.471380469999986, + 36.13280937000019 + ], + [ + 10.487890472, + 36.26327637500003 + ], + [ + 10.546460530000047, + 36.37160409200004 + ], + [ + 10.818920494999986, + 36.46360101100015 + ], + [ + 10.919810446000156, + 36.65125707200019 + ], + [ + 11.038490484000079, + 36.79708592600002 + ], + [ + 11.12226945000009, + 36.840905175000046 + ], + [ + 11.098059497000065, + 36.96126360500011 + ], + [ + 11.034640508, + 37.07847915600007 + ], + [ + 10.917260504000183, + 37.02431915400007 + ], + [ + 10.757379556000103, + 36.905642636000096 + ], + [ + 10.585709462000182, + 36.864864677000014 + ], + [ + 10.548850545, + 36.76991464600002 + ], + [ + 10.435629474000109, + 36.72194568400016 + ], + [ + 10.360830543000134, + 36.72557739500019 + ], + [ + 10.28520951600018, + 36.794243958000095 + ], + [ + 10.355190528000037, + 36.87771212300004 + ], + [ + 10.218740520000097, + 36.972673386999986 + ], + [ + 10.191280567000092, + 37.103819661000045 + ], + [ + 10.226840456000104, + 37.18648601400014 + ], + [ + 10.066929502, + 37.267856357000085 + ], + [ + 10.002440480000132, + 37.24910687700003 + ], + [ + 9.868268505000174, + 37.136778143000186 + ], + [ + 9.787354474000097, + 37.1778162760001 + ], + [ + 9.793338481999967, + 37.23881490600013 + ], + [ + 9.877618518000077, + 37.271796354 + ], + [ + 9.865051531000063, + 37.33310494700004 + ], + [ + 9.655833528000187, + 37.33471511000016 + ], + [ + 9.46942955600008, + 37.264514492000046 + ], + [ + 9.341755568999986, + 37.2348480870001 + ], + [ + 9.19556746600017, + 37.23160596600019 + ], + [ + 9.151994478000063, + 37.184036989000106 + ], + [ + 9.02493454800009, + 37.13914703600017 + ], + [ + 8.886760551000066, + 37.01075052900018 + ], + [ + 8.507755532000033, + 36.907164622000096 + ], + [ + 8.283863498000073, + 36.91873433100017 + ], + [ + 8.236195447000114, + 36.95348167800006 + ], + [ + 8.03523948600008, + 36.87177253900012 + ], + [ + 7.852204537000148, + 36.84450587300006 + ], + [ + 7.764151470000058, + 36.88037421600012 + ], + [ + 7.755253577000019, + 36.95947054800013 + ], + [ + 7.624822447000042, + 36.96711132300004 + ], + [ + 7.506800556000087, + 37.04280896200015 + ], + [ + 7.276988552000034, + 37.070251313000085 + ], + [ + 7.182830442000068, + 36.92966332700007 + ], + [ + 6.917277500000068, + 36.88401430900012 + ], + [ + 6.884019450000039, + 36.91022753700008 + ], + [ + 6.651380565000125, + 36.92211425000016 + ], + [ + 6.373477559000037, + 36.90490687300007 + ], + [ + 6.314178444000163, + 36.81700250200004 + ], + [ + 6.332420483000021, + 36.73934416900005 + ], + [ + 6.261025443000051, + 36.61277877200007 + ], + [ + 6.122698560000174, + 36.53300065500002 + ], + [ + 5.743818431000022, + 36.376529131000154 + ], + [ + 5.532123575000071, + 36.31779545900008 + ], + [ + 5.372816453000041, + 36.30472673100007 + ], + [ + 5.10504348000012, + 36.33674593600017 + ], + [ + 4.995347501000026, + 36.333632897000086 + ], + [ + 4.733812508000028, + 36.4558573060001 + ], + [ + 4.656804443000055, + 36.60035528200012 + ], + [ + 4.699466487000109, + 36.73081524700012 + ], + [ + 4.882434548000049, + 36.85687672400019 + ], + [ + 4.721247532000064, + 36.885353066000164 + ], + [ + 4.156930536000175, + 36.90958364000005 + ], + [ + 3.938889574000086, + 36.897884012000134 + ], + [ + 3.879617449000136, + 36.92138150400007 + ], + [ + 3.716978520000055, + 36.88342204300017 + ], + [ + 3.634641576000149, + 36.82569637900019 + ], + [ + 3.490293469000108, + 36.77206644800009 + ], + [ + 3.222913439000138, + 36.772676483 + ], + [ + 3.143027532000076, + 36.738867071000186 + ], + [ + 3.024406503000137, + 36.813073568 + ], + [ + 2.904886430000033, + 36.804055982000136 + ], + [ + 2.818614518000174, + 36.70992570000004 + ], + [ + 2.612056428000187, + 36.60371894000008 + ], + [ + 2.423908518000189, + 36.595880184000066 + ], + [ + 2.321571515000073, + 36.63957722500004 + ], + [ + 2.102200513000071, + 36.582609452000156 + ], + [ + 1.649618477000104, + 36.557039954000174 + ], + [ + 1.511687555000037, + 36.53028072800015 + ], + [ + 1.352905475000057, + 36.553592142000184 + ], + [ + 1.292740509000055, + 36.51111198600006 + ], + [ + 1.178462479000018, + 36.51379017100004 + ], + [ + 0.939580418000105, + 36.44774328900007 + ], + [ + 0.901283502000069, + 36.39163482900017 + ], + [ + 0.634112517, + 36.30945647100003 + ], + [ + 0.339333555000167, + 36.196109 + ], + [ + 0.127453460000083, + 36.04276141100007 + ], + [ + 0.036420459000169, + 35.8731943360001 + ], + [ + -0.107936532999929, + 35.792897380000056 + ], + [ + -0.277515509999944, + 35.824825725000096 + ], + [ + -0.337568493999925, + 35.910264476000066 + ], + [ + -0.47975155599994, + 35.87399531000011 + ], + [ + -0.511827422999943, + 35.786847322000085 + ], + [ + -0.649079578999874, + 35.71611998499998 + ], + [ + -0.828376534999904, + 35.771496704000015 + ], + [ + -0.946042529999886, + 35.727720706000184 + ], + [ + -1.18004548499988, + 35.58681320200003 + ], + [ + -1.258502445999909, + 35.397368779000146 + ], + [ + -1.382006436999916, + 35.31145997200019 + ], + [ + -1.555642422999824, + 35.268900020000046 + ], + [ + -1.764070514999901, + 35.129224488000034 + ], + [ + -2.008477423999921, + 35.07461488000013 + ], + [ + -2.20625949399988, + 35.08896536900011 + ], + [ + -2.426218570999879, + 35.15986352900018 + ], + [ + -2.53341053999992, + 35.09939430100002 + ], + [ + -2.631493558999978, + 35.09711324900013 + ], + [ + -2.739527573999965, + 35.131421553 + ], + [ + -2.813015574999895, + 35.114164723000044 + ], + [ + -2.897480515999916, + 35.15255484500011 + ], + [ + -2.967689515999894, + 35.37745639499997 + ], + [ + -3.09676043199994, + 35.28103064600009 + ], + [ + -3.338069556999926, + 35.19365282500013 + ], + [ + -3.598858560999872, + 35.23908173500013 + ], + [ + -3.699511471999926, + 35.29509145600014 + ], + [ + -3.796269479999921, + 35.21065149300006 + ], + [ + -3.884491524999873, + 35.212051438000174 + ], + [ + -3.920814502999917, + 35.26891896300009 + ], + [ + -4.109464488999947, + 35.21255032900012 + ], + [ + -4.276884455999948, + 35.18788205300012 + ], + [ + -4.359648540999956, + 35.15116277900006 + ], + [ + -4.713944547999972, + 35.217750126000055 + ], + [ + -4.910295490999886, + 35.31436983300017 + ], + [ + -5.056753491999928, + 35.41091745500012 + ], + [ + -5.170977541999946, + 35.536063293000154 + ], + [ + -5.234484539999869, + 35.55541509600005 + ], + [ + -5.274114513999905, + 35.670330151000144 + ], + [ + -5.334815585999877, + 35.74500854900015 + ], + [ + -5.356255488999864, + 35.92209435900003 + ], + [ + -5.453889572999969, + 35.91912632700013 + ], + [ + -5.587495433999948, + 35.839595309 + ], + [ + -5.718348508999895, + 35.839168167000025 + ], + [ + -5.777853483999934, + 35.79063946300005 + ], + [ + -5.89860351599998, + 35.81096675100008 + ], + [ + -6.019570472999931, + 35.5047340860001 + ], + [ + -6.079829482999912, + 35.39839891500014 + ], + [ + -6.149172465999925, + 35.21139144699998 + ], + [ + -6.378550454999981, + 34.720746015000145 + ], + [ + -6.562470532999953, + 34.41468199400015 + ], + [ + -6.625401526999951, + 34.34008406200019 + ], + [ + -6.725722513999926, + 34.163948927000035 + ], + [ + -6.831129472999919, + 34.04217127300012 + ], + [ + -6.9632624649999, + 33.92681432500018 + ], + [ + -7.127295471999957, + 33.83225807500014 + ], + [ + -7.217373438999914, + 33.80967991000011 + ], + [ + -7.375998441999911, + 33.71545139300014 + ], + [ + -7.585505452999939, + 33.612954463 + ], + [ + -7.652565539999955, + 33.62023615800007 + ], + [ + -7.77923252599993, + 33.55189816600006 + ], + [ + -8.121005465999929, + 33.42558892000005 + ], + [ + -8.299647459999903, + 33.378170314000045 + ], + [ + -8.452890442999944, + 33.260844792000114 + ], + [ + -8.515005542999916, + 33.26282476500006 + ], + [ + -8.60639343299988, + 33.19129779400009 + ], + [ + -8.70684752499983, + 33.03213048200007 + ], + [ + -8.904625571999816, + 32.84784713200008 + ], + [ + -9.012859578999894, + 32.77270839900007 + ], + [ + -9.113357591999943, + 32.67197267500018 + ], + [ + -9.274614512999904, + 32.55277832400009 + ], + [ + -9.23393445399995, + 32.458768407000036 + ], + [ + -9.285012430999927, + 32.378520904000084 + ], + [ + -9.242701589999967, + 32.30599397200007 + ], + [ + -9.254340532999947, + 32.200578464000046 + ], + [ + -9.324846587999957, + 32.072080535000055 + ], + [ + -9.675947580999946, + 31.69753401800017 + ], + [ + -9.681080490999818, + 31.619537726000033 + ], + [ + -9.83784856699998, + 31.41051451900006 + ], + [ + -9.799327518999974, + 31.314327821000177 + ], + [ + -9.841892499999915, + 31.14042395000007 + ], + [ + -9.808705527999905, + 30.81645517700008 + ], + [ + -9.894314430999941, + 30.642041518000042 + ], + [ + -9.792672455999934, + 30.607422749000136 + ], + [ + -9.701638448999915, + 30.531934491000072 + ], + [ + -9.663412444999892, + 30.44043864200006 + ], + [ + -9.603179585999953, + 30.39404061700003 + ], + [ + -9.646635562999904, + 30.156279216000087 + ], + [ + -9.791988492999906, + 29.861860173000082 + ], + [ + -9.967676535999942, + 29.69299566900014 + ], + [ + -10.051830508999899, + 29.58671062200017 + ], + [ + -10.083370436999871, + 29.498782948999974 + ], + [ + -10.222149439999953, + 29.30676042000016 + ], + [ + -10.325969536999878, + 29.229603325000085 + ], + [ + -10.435159583999848, + 29.09577953500002 + ], + [ + -10.635709525999914, + 28.950604301000112 + ], + [ + -11.038869513999941, + 28.75994198799998 + ], + [ + -11.106049461999874, + 28.688334886000064 + ], + [ + -11.30914046099997, + 28.522701606000112 + ], + [ + -11.450019466999834, + 28.34185986500006 + ], + [ + -11.567680432999907, + 28.27678276900008 + ], + [ + -11.698599557999955, + 28.24112397400006 + ], + [ + -12.027029513999935, + 28.110458653000137 + ], + [ + -12.054920464999896, + 28.08953021399998 + ], + [ + -12.554610472999912, + 27.992204416000163 + ], + [ + -12.911700502999963, + 27.950655992000065 + ], + [ + -12.95800045999988, + 27.918547436000097 + ], + [ + -13.045530495999913, + 27.752794629999983 + ], + [ + -13.156439502999945, + 27.69301707500017 + ], + [ + -13.199589540999966, + 27.60388978399999 + ], + [ + -13.299019531999932, + 27.32316190900002 + ], + [ + -13.40359953199993, + 27.175968313000055 + ], + [ + -13.448255462999953, + 27.012326406000113 + ] + ], + [ + [ + 9.332273457000042, + 36.76094668000019 + ], + [ + 9.32030544100013, + 36.68914025700019 + ], + [ + 9.200627453000095, + 36.629300676000184 + ], + [ + 8.793722431000049, + 36.56946377800017 + ], + [ + 8.482558525000059, + 36.40191858600008 + ], + [ + 8.267138584000179, + 36.36601520700009 + ], + [ + 8.231234534000066, + 36.46175498100018 + ], + [ + 8.36288053800007, + 36.581430454000156 + ], + [ + 8.554366457000071, + 36.72504363600018 + ], + [ + 8.697978466000109, + 36.80881572900006 + ], + [ + 8.805689442000187, + 36.96439139600017 + ], + [ + 8.913399579999975, + 36.952424888 + ], + [ + 9.033078573000068, + 36.85668561600016 + ], + [ + 9.248498514000119, + 36.820782405000045 + ], + [ + 9.332273457000042, + 36.76094668000019 + ] + ], + [ + [ + 7.577134447000105, + 36.852127873000086 + ], + [ + 7.666123436000021, + 36.85920756300004 + ], + [ + 7.690113449000137, + 36.714079771000115 + ], + [ + 7.630037499000025, + 36.68188437800018 + ], + [ + 7.461853438000162, + 36.65737183800002 + ], + [ + 7.312273514000083, + 36.656356957000185 + ], + [ + 7.236805540000091, + 36.71680355500007 + ], + [ + 7.281402462000187, + 36.841721069000016 + ], + [ + 7.357917503000067, + 36.862476673000174 + ], + [ + 7.577134447000105, + 36.852127873000086 + ] + ], + [ + [ + 4.317545571000153, + 36.42426490700012 + ], + [ + 4.222198572000025, + 36.400335412000175 + ], + [ + 3.931473434, + 36.36438341799999 + ], + [ + 3.84374944100017, + 36.40756446800003 + ], + [ + 3.905880466000042, + 36.45710134800015 + ], + [ + 3.989445526000111, + 36.44972343000006 + ], + [ + 4.23514844500005, + 36.481453627000064 + ], + [ + 4.317545571000153, + 36.42426490700012 + ] + ], + [ + [ + -4.916846010999905, + 35.10654069900016 + ], + [ + -4.900945037999918, + 35.082360585 + ], + [ + -4.519269041999962, + 34.980053086000055 + ], + [ + -4.30099606899995, + 34.98248040100003 + ], + [ + -4.220898601999977, + 34.910607761000165 + ], + [ + -4.259979057999828, + 34.80587831100007 + ], + [ + -4.316853120999951, + 34.78025500100006 + ], + [ + -4.636521137999978, + 34.77218741900009 + ], + [ + -4.912384994999854, + 34.85003618900009 + ], + [ + -5.091168139999979, + 34.927094378000106 + ], + [ + -5.29398303999983, + 35.08052561799997 + ], + [ + -5.338226076999888, + 35.16900515600008 + ], + [ + -5.498064109999973, + 35.268855751000046 + ], + [ + -5.689707105999844, + 35.470702038000184 + ], + [ + -5.813657013999887, + 35.549459071000115 + ], + [ + -5.876015020999887, + 35.61869359100018 + ], + [ + -5.789107089999959, + 35.694066515000145 + ], + [ + -5.580321089999927, + 35.74027259400009 + ], + [ + -5.496016074999886, + 35.71067140000008 + ], + [ + -5.409673084999895, + 35.491480608000074 + ], + [ + -5.365171045999887, + 35.435763919000124 + ], + [ + -5.164026994999972, + 35.26031509500018 + ], + [ + -4.942503016999979, + 35.13972398300007 + ], + [ + -4.916846010999905, + 35.10654069900016 + ] + ], + [ + [ + -4.383304450999958, + 33.62820081000018 + ], + [ + -4.294663477999904, + 33.804106783000066 + ], + [ + -4.197074487999885, + 33.82960721500018 + ], + [ + -4.159570499999916, + 33.736672695000095 + ], + [ + -4.006950459999928, + 33.72053317300015 + ], + [ + -4.018705576999935, + 33.59847774300016 + ], + [ + -3.871767460999934, + 33.66242881400018 + ], + [ + -3.773405491999881, + 33.643798358000026 + ], + [ + -3.790862481999966, + 33.57471253300008 + ], + [ + -3.897840543999962, + 33.482255279000185 + ], + [ + -4.109221581999918, + 33.43098669800008 + ], + [ + -4.040673538999897, + 33.362484756000185 + ], + [ + -4.116771496999945, + 33.305818397 + ], + [ + -4.17730157799997, + 33.37271553900018 + ], + [ + -4.263238549999869, + 33.34651605700009 + ], + [ + -4.307312440999965, + 33.44253746300018 + ], + [ + -4.420509539999898, + 33.431806616000074 + ], + [ + -4.457904562999943, + 33.52529484300004 + ], + [ + -4.383304450999958, + 33.62820081000018 + ] + ], + [ + [ + -5.100933496999914, + 33.51727621200018 + ], + [ + -4.944332555999893, + 33.523127954000074 + ], + [ + -4.865108483999961, + 33.426370784000085 + ], + [ + -4.742525496999974, + 33.44276243400009 + ], + [ + -4.678340569999875, + 33.41067030600004 + ], + [ + -4.647844523999936, + 33.30902330099997 + ], + [ + -4.96300944799998, + 33.080831016000104 + ], + [ + -5.231160444999944, + 32.91831412800002 + ], + [ + -5.435358525999959, + 32.866607508000186 + ], + [ + -5.550407523999922, + 32.97156234700003 + ], + [ + -5.41899755399993, + 33.14415730000019 + ], + [ + -5.418589522999923, + 33.26583470700007 + ], + [ + -5.268836428999919, + 33.37590032700007 + ], + [ + -5.17817843499995, + 33.475987292000184 + ], + [ + -5.100933496999914, + 33.51727621200018 + ] + ], + [ + [ + -5.502517519999913, + 32.27650409000012 + ], + [ + -5.441676469999948, + 32.291140569000106 + ], + [ + -5.258260478999887, + 32.420225566 + ], + [ + -5.030117479999888, + 32.50211005400013 + ], + [ + -4.96744850399989, + 32.57320569300015 + ], + [ + -4.770869572999914, + 32.606644625 + ], + [ + -4.623998511999901, + 32.58870031099997 + ], + [ + -4.651724506999813, + 32.49449224600011 + ], + [ + -4.8499385799999, + 32.38803838700005 + ], + [ + -5.048108563999961, + 32.30046744800006 + ], + [ + -5.130633429999875, + 32.1942767810001 + ], + [ + -5.363559478999946, + 32.096566924 + ], + [ + -5.401841474999912, + 32.061929883 + ], + [ + -5.429615581999883, + 31.93286030800016 + ], + [ + -5.50628652599994, + 31.916730677000032 + ], + [ + -5.537174509999886, + 31.812410348000128 + ], + [ + -5.656013468999902, + 31.690473269999984 + ], + [ + -5.744797436999818, + 31.720917181000175 + ], + [ + -5.75336843599996, + 31.86564431800008 + ], + [ + -5.821709444999897, + 31.821703867000167 + ], + [ + -5.957247501999973, + 31.672399875000053 + ], + [ + -5.929573474999927, + 31.591458686000067 + ], + [ + -6.024512442999935, + 31.515813183000034 + ], + [ + -6.130642424999905, + 31.545974959000034 + ], + [ + -6.289886514999978, + 31.466483839000034 + ], + [ + -6.379469445999973, + 31.464999907000163 + ], + [ + -6.386865469999975, + 31.391195238000023 + ], + [ + -6.492197494999914, + 31.434051741000133 + ], + [ + -6.597471515999871, + 31.374952953000047 + ], + [ + -6.607514544999958, + 31.313753996 + ], + [ + -6.742984540999885, + 31.332493417000023 + ], + [ + -6.742752529999962, + 31.430261947000076 + ], + [ + -6.808544434999874, + 31.457803037000133 + ], + [ + -6.795005481999908, + 31.5541977740001 + ], + [ + -6.685210428999824, + 31.609328065000057 + ], + [ + -6.619503516999941, + 31.534333334 + ], + [ + -6.488954535999937, + 31.613981698000032 + ], + [ + -6.473243496999942, + 31.701996711000163 + ], + [ + -6.379846463999968, + 31.761376795000103 + ], + [ + -6.244500520999907, + 31.79775073400009 + ], + [ + -6.22735148199996, + 31.855119833000117 + ], + [ + -6.1405525159999, + 31.854602669000144 + ], + [ + -6.055961510999907, + 31.81390098500009 + ], + [ + -6.02822042899993, + 31.892679476000183 + ], + [ + -5.901650505999896, + 31.88161385500007 + ], + [ + -5.836045516999945, + 31.95608555600012 + ], + [ + -5.882047580999938, + 32.067217858000106 + ], + [ + -5.944474486999979, + 32.087343310000165 + ], + [ + -5.884436423999887, + 32.19436881399997 + ], + [ + -5.630147585999907, + 32.26839040700014 + ], + [ + -5.502517519999913, + 32.27650409000012 + ] + ], + [ + [ + -7.432618532999868, + 31.262600750000104 + ], + [ + -7.506047525999918, + 31.222399130000042 + ], + [ + -7.700619493999966, + 31.050434161000112 + ], + [ + -7.834802531999969, + 31.050009030000012 + ], + [ + -7.902281546999973, + 31.001861702000156 + ], + [ + -8.059111481999935, + 31.013967517000026 + ], + [ + -8.004296516999887, + 31.101082313000177 + ], + [ + -7.842771542999969, + 31.1545144320001 + ], + [ + -7.755366564999918, + 31.222231157000067 + ], + [ + -7.71087844099992, + 31.177339695000114 + ], + [ + -7.622984462999966, + 31.227733876 + ], + [ + -7.610122431999969, + 31.287132066000026 + ], + [ + -7.432618532999868, + 31.262600750000104 + ] + ], + [ + [ + -8.353761529999929, + 31.07186836300008 + ], + [ + -8.508936541999958, + 30.899509444000103 + ], + [ + -8.575987575999932, + 30.918465789000095 + ], + [ + -8.636585550999882, + 30.85875679900016 + ], + [ + -8.744705563999958, + 30.853638976000127 + ], + [ + -8.766268512999943, + 30.89352057400015 + ], + [ + -8.49947756399996, + 30.950481642000113 + ], + [ + -8.42846155399991, + 31.07748507700012 + ], + [ + -8.353761529999929, + 31.07186836300008 + ] + ], + [ + [ + 10.331334918000096, + 35.90227971100012 + ], + [ + 10.290348460000132, + 35.838470123000036 + ], + [ + 10.146908448000033, + 35.79725311900012 + ], + [ + 10.119127860000049, + 35.86655903500008 + ], + [ + 10.170815480000158, + 35.928327142000114 + ], + [ + 10.27386159200006, + 35.96212448500012 + ], + [ + 10.331334918000096, + 35.90227971100012 + ] + ], + [ + [ + 5.54394055, + 35.73849648100014 + ], + [ + 5.416012423000041, + 35.68878190500004 + ], + [ + 5.179214438000088, + 35.69827943900003 + ], + [ + 4.891407543000071, + 35.80428805100007 + ], + [ + 4.932167565000157, + 35.84897583200018 + ], + [ + 5.257853454000099, + 35.78839646500006 + ], + [ + 5.50707057000011, + 35.767888798000115 + ], + [ + 5.54394055, + 35.73849648100014 + ] + ], + [ + [ + 5.955103578999967, + 35.61825355400009 + ], + [ + 6.064682546000142, + 35.591413191000015 + ], + [ + 5.913184508000029, + 35.480724795000185 + ], + [ + 5.828606578000119, + 35.532584636000024 + ], + [ + 5.955103578999967, + 35.61825355400009 + ] + ], + [ + [ + 6.252932548000047, + 35.37090644099999 + ], + [ + 6.331796534000034, + 35.405336449000174 + ], + [ + 6.586972512000102, + 35.40873564600014 + ], + [ + 6.805170551000174, + 35.343659053000124 + ], + [ + 6.700610500000153, + 35.273420883000085 + ], + [ + 6.581205428000089, + 35.27190996100012 + ], + [ + 6.363872569000023, + 35.30067933500004 + ], + [ + 6.252932548000047, + 35.37090644099999 + ] + ], + [ + [ + 10.60052849699997, + 35.5007579980001 + ], + [ + 10.539443535999965, + 35.41741846000002 + ], + [ + 10.476623518, + 35.42082017100006 + ], + [ + 10.305919522000067, + 35.51053620700014 + ], + [ + 10.268998347000093, + 35.62373731400015 + ], + [ + 10.409119526000097, + 35.687861907000126 + ], + [ + 10.561943581000094, + 35.516581906000056 + ], + [ + 10.60052849699997, + 35.5007579980001 + ] + ] + ], + [ + [ + [ + -116.67675758199994, + 31.705822714000135 + ], + [ + -116.54080160399985, + 31.699894864999976 + ], + [ + -116.35970253899984, + 31.565448467000124 + ], + [ + -116.21130362599996, + 31.5578995570001 + ], + [ + -116.15630358899989, + 31.461023029000103 + ], + [ + -116.06700161899988, + 31.419234548000134 + ], + [ + -115.96620168899983, + 31.251027018000116 + ], + [ + -115.83339663599986, + 31.20164000600016 + ], + [ + -115.73549667699996, + 30.953771539000115 + ], + [ + -115.588600639, + 30.85117318800019 + ], + [ + -115.52776361199989, + 30.762887105000175 + ], + [ + -115.45777153499989, + 30.80882546600003 + ], + [ + -115.36131259299992, + 30.664211652000176 + ], + [ + -115.24959556999988, + 30.635747882000146 + ], + [ + -115.19845556699988, + 30.732288296000036 + ], + [ + -115.29271660599983, + 30.847183234000113 + ], + [ + -115.26219960599991, + 30.98836616800014 + ], + [ + -115.29991967899991, + 31.047596216000045 + ], + [ + -115.39902461999998, + 31.097473401000173 + ], + [ + -115.47854658499995, + 31.274654429000122 + ], + [ + -115.696830622, + 31.295306601 + ], + [ + -115.69355765699999, + 31.37947465500008 + ], + [ + -115.58573168099991, + 31.37050115700015 + ], + [ + -115.51533459099994, + 31.430732843000158 + ], + [ + -115.50940657299998, + 31.500293587000044 + ], + [ + -115.56580353799995, + 31.595574536000072 + ], + [ + -115.64707162199988, + 31.65199145000014 + ], + [ + -115.68242665699995, + 31.729037904000165 + ], + [ + -115.68372367299997, + 31.82609967200017 + ], + [ + -115.74462859299996, + 31.859332745000188 + ], + [ + -115.78961963199998, + 32.007393868000065 + ], + [ + -115.77711466999995, + 32.09185998200013 + ], + [ + -115.87153664199997, + 32.25297172899997 + ], + [ + -115.85279068299997, + 32.42457024200013 + ], + [ + -115.90464767399999, + 32.48878534300013 + ], + [ + -116.01107068699997, + 32.52946406000018 + ], + [ + -116.04237357499989, + 32.613418544000126 + ], + [ + -116.20071825399998, + 32.61097607600004 + ], + [ + -116.25004726599991, + 32.73288871300019 + ], + [ + -116.32666281399992, + 32.79525692300007 + ], + [ + -116.54122438699994, + 33.07366238500015 + ], + [ + -116.5718529959999, + 33.15813678800009 + ], + [ + -116.47430612299996, + 33.2668264400001 + ], + [ + -116.57784325599994, + 33.416376952000064 + ], + [ + -116.5549988269999, + 33.51509517300008 + ], + [ + -116.44949901099994, + 33.484124422000036 + ], + [ + -116.4010570769999, + 33.57052506100018 + ], + [ + -116.52462321399997, + 33.651005876000056 + ], + [ + -116.58320415399993, + 33.75245637400013 + ], + [ + -116.58330515099993, + 33.819750326000076 + ], + [ + -116.76509846799996, + 33.89922425800006 + ], + [ + -116.64692662199997, + 33.96444397300007 + ], + [ + -116.65954063799995, + 34.006295542000146 + ], + [ + -116.5382402269999, + 34.15686470700007 + ], + [ + -116.57481402699995, + 34.269887437000136 + ], + [ + -116.76627838499996, + 34.33346320200019 + ], + [ + -116.88303454399994, + 34.34545419300014 + ], + [ + -117.03635744199994, + 34.39590978000018 + ], + [ + -117.1765178629999, + 34.41538384600011 + ], + [ + -117.28511564099989, + 34.30409666700018 + ], + [ + -117.52577084199999, + 34.32102090500018 + ], + [ + -117.71805214699998, + 34.42784066400014 + ], + [ + -117.87290051399998, + 34.41034755200013 + ], + [ + -118.20628002799992, + 34.568882094 + ], + [ + -118.19337414999995, + 34.60342644800005 + ], + [ + -118.5327745489999, + 34.749373569000056 + ], + [ + -118.68405316399992, + 34.77572967400016 + ], + [ + -118.74442004599996, + 34.81712873100014 + ], + [ + -118.84537577099991, + 34.827552524000055 + ], + [ + -118.92979209499993, + 34.91556033500012 + ], + [ + -118.83720030899991, + 34.9295439280001 + ], + [ + -118.74750558699998, + 35.00231582500004 + ], + [ + -118.62193077499995, + 35.06632091800009 + ], + [ + -118.66286517099991, + 35.231674904000045 + ], + [ + -118.5752681969999, + 35.227240336000136 + ], + [ + -118.57389133999993, + 35.381597030000194 + ], + [ + -118.66869005099994, + 35.43065727600015 + ], + [ + -118.67281116299995, + 35.51015214000006 + ], + [ + -118.41483582999996, + 35.60529140000017 + ], + [ + -118.30949835599989, + 35.72754043300006 + ], + [ + -118.38500241499986, + 35.79827148499999 + ], + [ + -118.42328559999999, + 35.884411957000054 + ], + [ + -118.50402973699994, + 35.88402512900018 + ], + [ + -118.48552597599996, + 35.7876499190001 + ], + [ + -118.5532495409999, + 35.67217986500003 + ], + [ + -118.55747631799994, + 35.60378478800004 + ], + [ + -118.6466699529999, + 35.55930578200008 + ], + [ + -118.67440446899997, + 35.67163072799997 + ], + [ + -118.58891252999996, + 35.7385039780001 + ], + [ + -118.67187593099993, + 35.82348881500019 + ], + [ + -118.63681868999998, + 35.906142793000186 + ], + [ + -118.7043142629999, + 36.07708213000018 + ], + [ + -118.76787430899998, + 36.11420502500016 + ], + [ + -118.73897543399994, + 36.249743415000125 + ], + [ + -118.84929940699993, + 36.270629270000086 + ], + [ + -118.8658025869999, + 36.33286064600003 + ], + [ + -118.77415145199996, + 36.35977465000008 + ], + [ + -118.84579416799988, + 36.434175523000135 + ], + [ + -118.89381604299996, + 36.55791789300008 + ], + [ + -118.98058759199989, + 36.6334213560001 + ], + [ + -118.97706267099994, + 36.68069975200018 + ], + [ + -119.14372446699997, + 36.796696935000114 + ], + [ + -119.11360293199994, + 36.91969124700012 + ], + [ + -119.38756055299984, + 37.01007880100019 + ], + [ + -119.46970014699986, + 37.097387032000086 + ], + [ + -119.44162758099998, + 37.178221308 + ], + [ + -119.61961905399988, + 37.24484241900012 + ], + [ + -119.61765923899992, + 37.34587647000012 + ], + [ + -119.93175791899995, + 37.47374425000015 + ], + [ + -119.99864099299998, + 37.561640644000136 + ], + [ + -120.12932644699998, + 37.60943710000015 + ], + [ + -120.06913982399988, + 37.65396665500009 + ], + [ + -120.18300423499988, + 37.70370999600016 + ], + [ + -120.26832022899998, + 37.79083160199997 + ], + [ + -120.23752356699987, + 37.84327691000004 + ], + [ + -120.31103552899992, + 37.97109695500012 + ], + [ + -120.41761213999985, + 38.00317628200003 + ], + [ + -120.40711415799996, + 38.09012632800011 + ], + [ + -120.49516352199998, + 38.10737785400016 + ], + [ + -120.51619863199988, + 38.16458256700014 + ], + [ + -120.61104791799988, + 38.18547183200019 + ], + [ + -120.681023128, + 38.26690041300003 + ], + [ + -120.702767038, + 38.47160309700013 + ], + [ + -120.75479108899992, + 38.53473848900006 + ], + [ + -120.7242349149999, + 38.585024596000096 + ], + [ + -120.80968455699997, + 38.63497648200007 + ], + [ + -120.77333332299997, + 38.70357312800019 + ], + [ + -120.8249654299999, + 38.797605229000055 + ], + [ + -120.9515714829999, + 38.92823512600012 + ], + [ + -121.02263550599992, + 38.96218516900012 + ], + [ + -121.00288489499991, + 39.06897376100005 + ], + [ + -121.1330356599999, + 39.16420541800005 + ], + [ + -121.17510484299999, + 39.249512943000184 + ], + [ + -121.19006726999993, + 39.368713270000114 + ], + [ + -121.25183919299985, + 39.436951370000145 + ], + [ + -121.35328170299994, + 39.472479878000115 + ], + [ + -121.31544321299992, + 39.54123384100012 + ], + [ + -121.41086540899988, + 39.59905675500016 + ], + [ + -121.48294381899996, + 39.71257609900016 + ], + [ + -121.60697535999998, + 39.73978719600018 + ], + [ + -121.632606351, + 39.84600396800005 + ], + [ + -121.75283362599998, + 39.894463653000116 + ], + [ + -121.74772523099989, + 40.07305138000015 + ], + [ + -121.65058365299984, + 40.13703493800011 + ], + [ + -121.78852312999999, + 40.230572645000166 + ], + [ + -121.820258578, + 40.301457584000104 + ], + [ + -121.76863807899997, + 40.36670815800005 + ], + [ + -121.87900344999991, + 40.42015170400015 + ], + [ + -121.88083289699995, + 40.54483180400018 + ], + [ + -121.91496859199992, + 40.67529985900018 + ], + [ + -122.02029715399988, + 40.74438488200008 + ], + [ + -122.15166434799988, + 40.715153575000045 + ], + [ + -122.31071014999998, + 40.73873693200011 + ], + [ + -122.4357857839999, + 40.73381505500009 + ], + [ + -122.53347896899993, + 40.63175772900007 + ], + [ + -122.49260655899997, + 40.59618885100019 + ], + [ + -122.55225222299998, + 40.51443884000008 + ], + [ + -122.76077170399992, + 40.45737479300004 + ], + [ + -122.80343642299994, + 40.48713184200005 + ], + [ + -122.92492905299997, + 40.44222322600007 + ], + [ + -122.94173089799983, + 40.31327476000013 + ], + [ + -122.85555639899991, + 40.201758426000026 + ], + [ + -122.77144887299988, + 40.15954868500012 + ], + [ + -122.69745422399996, + 40.06557540500006 + ], + [ + -122.67571344299995, + 39.97071115900013 + ], + [ + -122.68778885799992, + 39.84022424200003 + ], + [ + -122.63999644699993, + 39.76870731700018 + ], + [ + -122.74984291999994, + 39.74300483100018 + ], + [ + -122.75321182299996, + 39.65831438100008 + ], + [ + -122.65782159199995, + 39.61072489800006 + ], + [ + -122.63501336899992, + 39.55041889300003 + ], + [ + -122.70221316399994, + 39.329127689000074 + ], + [ + -122.61605476499989, + 39.2904697780001 + ], + [ + -122.69145223499999, + 39.22229467300019 + ], + [ + -122.80730310399997, + 39.31576767500013 + ], + [ + -122.86017989899995, + 39.398244953000074 + ], + [ + -122.94401896199997, + 39.39418183099997 + ], + [ + -122.81285182199997, + 39.24523911000017 + ], + [ + -122.6591121759999, + 39.14463244600012 + ], + [ + -122.77971288899994, + 39.12165245600016 + ], + [ + -122.82255885799998, + 39.18617010900016 + ], + [ + -122.93592237799999, + 39.19798606600017 + ], + [ + -123.02826519899992, + 39.27407503000006 + ], + [ + -123.24507519699995, + 39.27542798400009 + ], + [ + -123.21534325399995, + 39.1295534890001 + ], + [ + -123.26884421099993, + 39.06155700500011 + ], + [ + -123.411503848, + 39.03752690100015 + ], + [ + -123.27445715099992, + 38.895439743000054 + ], + [ + -123.2813753399999, + 38.83618993800019 + ], + [ + -123.2276211269999, + 38.710761327000114 + ], + [ + -123.08057917699995, + 38.61594906400012 + ], + [ + -122.95591283499988, + 38.60567062300015 + ], + [ + -122.8915070299999, + 38.38699122600002 + ], + [ + -122.98917844999988, + 38.35629475600007 + ], + [ + -123.00307699799987, + 38.29592312500006 + ], + [ + -122.90090424099998, + 38.165068577 + ], + [ + -122.75467660099991, + 38.032496012000024 + ], + [ + -122.70392739299996, + 38.049728201 + ], + [ + -122.62794824099996, + 37.96235441000016 + ], + [ + -122.50330414899992, + 37.88945040200002 + ], + [ + -122.48742235399999, + 38.10977769300007 + ], + [ + -122.39932234599996, + 38.14478679400008 + ], + [ + -122.26148595099988, + 38.05555043400011 + ], + [ + -122.38313141499987, + 37.97641405500008 + ], + [ + -122.32238594199998, + 37.90573223400003 + ], + [ + -122.30559501899995, + 37.79374131800006 + ], + [ + -122.16163134599998, + 37.66821404500013 + ], + [ + -122.10552222899992, + 37.499241308000194 + ], + [ + -122.37847682599994, + 37.60637766100001 + ], + [ + -122.41048594499995, + 37.80937767500018 + ], + [ + -122.51357686699998, + 37.78235039300017 + ], + [ + -122.49423139499993, + 37.66107765600003 + ], + [ + -122.24371493099989, + 37.388106211000036 + ], + [ + -122.12326244299993, + 37.34945068600007 + ], + [ + -121.979848426, + 37.169217397000125 + ], + [ + -121.78347935099993, + 37.07645161300013 + ], + [ + -121.778162281, + 37.006486843000175 + ], + [ + -121.86193121899998, + 36.93105945800005 + ], + [ + -121.78860392099995, + 36.80420490500012 + ], + [ + -121.81613118399997, + 36.67709580200005 + ], + [ + -121.96946755999994, + 36.56915032800015 + ], + [ + -121.90163116699995, + 36.38776849800007 + ], + [ + -121.89910388599992, + 36.30769576400013 + ], + [ + -121.83350387099989, + 36.247404854000024 + ], + [ + -121.71665839399998, + 36.194968494000136 + ], + [ + -121.63326746299998, + 36.1209866750001 + ], + [ + -121.57354017199998, + 36.023550305000185 + ], + [ + -121.50463106799998, + 36.00157758000017 + ], + [ + -121.462467415, + 35.886013936000154 + ], + [ + -121.33203101999999, + 35.78255030000014 + ], + [ + -121.26077645299989, + 35.66405938400004 + ], + [ + -121.1639037079999, + 35.63292302300016 + ], + [ + -121.00404002999994, + 35.460959381000066 + ], + [ + -120.90585819499995, + 35.44838665900005 + ], + [ + -120.83356726499994, + 35.34051392600003 + ], + [ + -120.894385447, + 35.24563209400009 + ], + [ + -120.78434905999995, + 35.176277549000076 + ], + [ + -120.65111267299994, + 35.14775028200006 + ], + [ + -120.63028539099992, + 35.08705027700012 + ], + [ + -120.67114901799994, + 34.90204116500013 + ], + [ + -120.616558097, + 34.86701389300009 + ], + [ + -120.63708536399997, + 34.757341153000084 + ], + [ + -120.60188535299994, + 34.709632060000104 + ], + [ + -120.64525807599995, + 34.57705931700008 + ], + [ + -120.5143762319999, + 34.52466841100011 + ], + [ + -120.47163076599998, + 34.45010476900012 + ], + [ + -120.29580346599994, + 34.47037750900006 + ], + [ + -120.00311250999994, + 34.45871388900014 + ], + [ + -119.8557306639999, + 34.40886843700008 + ], + [ + -119.72916700699989, + 34.39615026200016 + ], + [ + -119.60186698699994, + 34.41994118100018 + ], + [ + -119.459166961, + 34.37313209300015 + ], + [ + -119.28228510399993, + 34.27002300200007 + ], + [ + -119.23025781399991, + 34.15959572000014 + ], + [ + -119.13058506499988, + 34.10025935600015 + ], + [ + -118.80861227799994, + 34.00126845400018 + ], + [ + -118.74399408799997, + 34.03248664300014 + ], + [ + -118.54531223599997, + 34.03859574600011 + ], + [ + -118.44053948399994, + 33.938023014000066 + ], + [ + -118.39146673999994, + 33.84018664100017 + ], + [ + -118.39941218799993, + 33.73659572100007 + ], + [ + -118.28603943899992, + 33.70685027000019 + ], + [ + -118.18316669899997, + 33.763268464000134 + ], + [ + -118.09629395499991, + 33.73832301200008 + ], + [ + -117.92942118999997, + 33.60695936800005 + ], + [ + -117.78397570599998, + 33.540932097000166 + ], + [ + -117.469711997, + 33.29529572200005 + ], + [ + -117.3286574149999, + 33.12201389100005 + ], + [ + -117.27976648999999, + 33.0116320620001 + ], + [ + -117.25158465499999, + 32.876104775000044 + ], + [ + -117.28077556599999, + 32.822268404000056 + ], + [ + -117.21609882099995, + 32.72800991399998 + ], + [ + -117.12893916699988, + 32.68425930400008 + ], + [ + -117.12186463699993, + 32.477692732000094 + ], + [ + -117.03376764899997, + 32.28001308900008 + ], + [ + -116.93410464099992, + 32.240105172000085 + ], + [ + -116.88289657699983, + 32.12015225800013 + ], + [ + -116.88180558899995, + 32.03222592599997 + ], + [ + -116.755699688, + 31.956520577000163 + ], + [ + -116.74094368199997, + 31.903624230000162 + ], + [ + -116.60728468099984, + 31.844519072000082 + ], + [ + -116.61343364499993, + 31.774746434000065 + ], + [ + -116.67675758199994, + 31.705822714000135 + ] + ], + [ + [ + -122.12556852899996, + 40.19312061800014 + ], + [ + -121.9492135459999, + 40.01508898900005 + ], + [ + -121.75226277799999, + 39.664896247 + ], + [ + -121.58137333599996, + 39.62225176600009 + ], + [ + -121.60894484599999, + 39.58190398400018 + ], + [ + -121.51047065499995, + 39.50717022800018 + ], + [ + -121.51964880599996, + 39.40181486400013 + ], + [ + -121.26270048399994, + 38.900378372000034 + ], + [ + -121.29554729699998, + 38.776700225000184 + ], + [ + -121.14046012999995, + 38.656562849000125 + ], + [ + -121.1821728459999, + 38.48363526500003 + ], + [ + -121.11989481499995, + 38.4075302710001 + ], + [ + -121.10217381799998, + 38.31374525900014 + ], + [ + -121.05217442299988, + 38.297985638000114 + ], + [ + -121.05749021799988, + 38.19553318200013 + ], + [ + -120.99442972199995, + 38.1339082180001 + ], + [ + -120.980982929, + 37.96846467800003 + ], + [ + -120.84047195599993, + 37.86133433100014 + ], + [ + -120.71864390599995, + 37.71181882200017 + ], + [ + -120.61295776299994, + 37.675398373 + ], + [ + -120.55002189199996, + 37.70385932900018 + ], + [ + -120.32477073899997, + 37.5241700680001 + ], + [ + -120.30241049999995, + 37.38853759000011 + ], + [ + -120.23565695299988, + 37.36592023700007 + ], + [ + -120.15688505499998, + 37.25124365900007 + ], + [ + -120.05318099899989, + 37.18641392900008 + ], + [ + -119.87621478299997, + 37.02121858400005 + ], + [ + -119.74054837699993, + 37.01287028600012 + ], + [ + -119.695752546, + 36.9002184470001 + ], + [ + -119.51852828899996, + 36.85582234200018 + ], + [ + -119.30639297, + 36.69868531100019 + ], + [ + -119.23654854599994, + 36.60307823900007 + ], + [ + -119.23649875899991, + 36.52450137400018 + ], + [ + -119.130104771, + 36.4967572270001 + ], + [ + -119.05500837699992, + 36.36535459900017 + ], + [ + -119.09179288399997, + 36.27432812500018 + ], + [ + -118.96638432999987, + 36.16519499100002 + ], + [ + -118.92250773099994, + 36.06060694900009 + ], + [ + -118.97348932699992, + 36.03187426300019 + ], + [ + -118.91632863799998, + 35.88650726600014 + ], + [ + -118.91900661399995, + 35.72689634000017 + ], + [ + -118.8453604689999, + 35.5582185130001 + ], + [ + -118.82266864699989, + 35.45826190000008 + ], + [ + -118.66609903599988, + 35.30165629700002 + ], + [ + -118.70952089699995, + 35.214698587999976 + ], + [ + -118.79443095899995, + 35.15681718100018 + ], + [ + -118.72966639099985, + 35.081663224000124 + ], + [ + -118.75041900699989, + 35.020655457000146 + ], + [ + -118.85522611799996, + 34.933945133 + ], + [ + -118.97261809899999, + 34.93258836100006 + ], + [ + -119.02076342599997, + 35.033153676000154 + ], + [ + -119.26128074999991, + 34.978855805000194 + ], + [ + -119.39365141099995, + 35.03540701600008 + ], + [ + -119.41131071899991, + 35.11328925500004 + ], + [ + -119.47669363299991, + 35.13009747300009 + ], + [ + -119.46396795699997, + 35.21836542799997 + ], + [ + -119.30945214099995, + 35.24263919800006 + ], + [ + -119.34108514699989, + 35.28615600100005 + ], + [ + -119.49014833999996, + 35.33581725300019 + ], + [ + -119.65316714599993, + 35.35452965700017 + ], + [ + -119.77298706899995, + 35.38940117000004 + ], + [ + -120.09546086199998, + 35.651702280999984 + ], + [ + -119.98521081399997, + 35.75082978600017 + ], + [ + -119.88348264899992, + 35.76102365100007 + ], + [ + -119.89590109499989, + 35.877449828000124 + ], + [ + -119.95674310899989, + 36.00067600600016 + ], + [ + -120.19467156499996, + 36.131527606000134 + ], + [ + -120.2630777729999, + 36.239496471000166 + ], + [ + -120.26006168099997, + 36.29599690700019 + ], + [ + -120.39208724399998, + 36.392675067000084 + ], + [ + -120.42727690199996, + 36.476183695000145 + ], + [ + -120.68577400399988, + 36.65386945000017 + ], + [ + -120.714661617, + 36.74631643000009 + ], + [ + -120.77217036199994, + 36.784271993 + ], + [ + -120.79398727599994, + 36.86952015400004 + ], + [ + -120.94505930999992, + 37.03586959300003 + ], + [ + -121.07603006199992, + 37.06647047600018 + ], + [ + -121.05759321799997, + 37.12821505100004 + ], + [ + -121.18863171699996, + 37.46084970700019 + ], + [ + -121.27984278099996, + 37.5377201390001 + ], + [ + -121.56691366499996, + 37.69368775200013 + ], + [ + -121.58679955599996, + 37.772777764000125 + ], + [ + -121.68822997599995, + 37.89236405700018 + ], + [ + -121.68003694099991, + 38.00398784200007 + ], + [ + -122.02045892799993, + 38.05203343900013 + ], + [ + -122.10721119599992, + 38.02203283800009 + ], + [ + -122.12636931599997, + 38.19864522400019 + ], + [ + -121.96220808799995, + 38.18793948300004 + ], + [ + -121.90343609099989, + 38.21734762100016 + ], + [ + -121.83474192199992, + 38.08018296500006 + ], + [ + -121.71637350899994, + 38.111885879000056 + ], + [ + -121.71983541799995, + 38.217358811000054 + ], + [ + -121.87197840999988, + 38.226780630000064 + ], + [ + -121.977197075, + 38.362163765000105 + ], + [ + -121.99915543399993, + 38.61405523200011 + ], + [ + -122.07965102599991, + 38.67230981500006 + ], + [ + -122.03089101099994, + 38.79874617500013 + ], + [ + -121.90782435199998, + 38.70296539100008 + ], + [ + -121.87279035199992, + 38.76269679900008 + ], + [ + -122.00508850899996, + 38.90507219000011 + ], + [ + -122.13380701099993, + 38.93770738000012 + ], + [ + -122.15897201699994, + 39.02890477700009 + ], + [ + -122.28991910799994, + 39.138970831000165 + ], + [ + -122.28319461899997, + 39.327791360000106 + ], + [ + -122.29718441399996, + 39.49859451100019 + ], + [ + -122.27250238899995, + 39.64786579600019 + ], + [ + -122.34687114299993, + 39.80581256400012 + ], + [ + -122.31308337099995, + 39.82178105500003 + ], + [ + -122.36402432299997, + 39.95401102000011 + ], + [ + -122.31240916799993, + 40.051591857000176 + ], + [ + -122.32029181099989, + 40.132449538000174 + ], + [ + -122.19910587599992, + 40.21749026500004 + ], + [ + -122.12556852899996, + 40.19312061800014 + ] + ] + ], + [ + [ + [ + -118.57332357199994, + 33.033132761000104 + ], + [ + -118.58312846599995, + 33.00317989500019 + ], + [ + -118.49855434899996, + 32.85427100700002 + ], + [ + -118.42669840699995, + 32.80775058200004 + ], + [ + -118.36495305499989, + 32.83552513800004 + ], + [ + -118.50303910299994, + 32.94019890400017 + ], + [ + -118.57332357199994, + 33.033132761000104 + ] + ] + ], + [ + [ + [ + 11.53233947900003, + 33.16757047100003 + ], + [ + 11.204030557000067, + 33.20663516900015 + ], + [ + 11.131850469000142, + 33.28427405600007 + ], + [ + 11.17967056700013, + 33.33155167800015 + ], + [ + 11.100330489000044, + 33.43897029300007 + ], + [ + 11.10746952400018, + 33.57319440300006 + ], + [ + 11.01570059200003, + 33.638454560000014 + ], + [ + 10.923239483000089, + 33.622303135000095 + ], + [ + 10.930879588000096, + 33.534544609000136 + ], + [ + 10.782070464000071, + 33.47868827700012 + ], + [ + 10.70092945000016, + 33.49970673700011 + ], + [ + 10.729156515000057, + 33.60198255199998 + ], + [ + 10.661049528000035, + 33.62571389900006 + ], + [ + 10.466380497000102, + 33.589784033000115 + ], + [ + 10.313329460000148, + 33.65729523400017 + ], + [ + 10.090029524000101, + 33.69035211900018 + ], + [ + 9.97415558, + 33.85618740300015 + ], + [ + 9.909702432000131, + 33.90996586099999 + ], + [ + 9.81078055200004, + 33.9356952870001 + ], + [ + 9.892167491000123, + 33.715631436000024 + ], + [ + 9.908624519, + 33.45712784200009 + ], + [ + 10.005359561000034, + 33.261424820000116 + ], + [ + 9.987594453000042, + 33.14994014300004 + ], + [ + 10.027039521000063, + 33.06982943300011 + ], + [ + 10.127779436000026, + 32.966114613000116 + ], + [ + 10.168290516000127, + 32.88969780700012 + ], + [ + 10.256400579000115, + 32.81844894800008 + ], + [ + 10.45761051200003, + 32.79657989200018 + ], + [ + 10.706910441000048, + 32.86194683500008 + ], + [ + 10.828499502000057, + 32.87710517100004 + ], + [ + 10.989760446000105, + 32.84633704900011 + ], + [ + 11.111120513000174, + 32.77896029300007 + ], + [ + 11.40276849900016, + 32.720700199000134 + ], + [ + 11.397418913000024, + 32.770762322999985 + ], + [ + 11.438834948000078, + 32.987960987000065 + ], + [ + 11.336265079000043, + 33.01176877300014 + ], + [ + 11.343898198000034, + 33.04933240100007 + ], + [ + 11.32228378900004, + 33.06750706000008 + ], + [ + 11.361008517000073, + 33.121650885000065 + ], + [ + 11.53233947900003, + 33.16757047100003 + ] + ] + ], + [ + [ + [ + -118.60373038399996, + 33.477968409000084 + ], + [ + -118.48822126799996, + 33.418950227000096 + ], + [ + -118.4575758019999, + 33.32187749000013 + ], + [ + -118.3109575979999, + 33.33652295400009 + ], + [ + -118.36622124799993, + 33.40613205000005 + ], + [ + -118.53205764299992, + 33.47235932000001 + ], + [ + -118.60373038399996, + 33.477968409000084 + ] + ] + ], + [ + [ + [ + 11.057620502000134, + 33.83174711400005 + ], + [ + 10.793720471000029, + 33.90209626000018 + ], + [ + 10.745180534000099, + 33.8851175420001 + ], + [ + 10.729840478000028, + 33.753121510000085 + ], + [ + 10.834779559000026, + 33.73712280400008 + ], + [ + 10.892589545000021, + 33.667223934000106 + ], + [ + 11.0660205100001, + 33.780639466000025 + ], + [ + 11.057620502000134, + 33.83174711400005 + ] + ] + ], + [ + [ + [ + -120.04727718999999, + 34.020562584000174 + ], + [ + -120.14669133799998, + 34.02507172900016 + ], + [ + -120.22395785099991, + 33.98850534900015 + ], + [ + -120.12383363899988, + 33.895199005000165 + ], + [ + -120.0016231969999, + 33.9419225960001 + ], + [ + -120.04727718999999, + 34.020562584000174 + ] + ] + ], + [ + [ + [ + -119.91452155399992, + 34.077577491000056 + ], + [ + -119.85178517099996, + 33.96942293800015 + ], + [ + -119.72086696799988, + 33.959422943000106 + ], + [ + -119.75812152799983, + 34.059232043000065 + ], + [ + -119.91452155399992, + 34.077577491000056 + ] + ] + ], + [ + [ + [ + -0.750273457999924, + 37.67142471100004 + ], + [ + -0.871153577999905, + 37.701071167 + ], + [ + -0.754886521999879, + 37.786336412000026 + ], + [ + -0.7656425159999, + 37.85691807200004 + ], + [ + -0.651088552999965, + 37.99567545000008 + ], + [ + -0.636157533999892, + 38.12821831800005 + ], + [ + -0.525129502999846, + 38.19479912700001 + ], + [ + -0.509336488999963, + 38.32941366600005 + ], + [ + -0.414205575999858, + 38.34707852700018 + ], + [ + -0.397098446999962, + 38.419683075000194 + ], + [ + -0.158619554999916, + 38.52855645400007 + ], + [ + -0.103932497999836, + 38.51892061800004 + ], + [ + -0.002876417999971, + 38.63259263600003 + ], + [ + 0.15447151900014, + 38.68110390700008 + ], + [ + 0.195776532000082, + 38.76811158200019 + ], + [ + 0.121916542000065, + 38.845064159 + ], + [ + -0.067169470999886, + 38.888127695000094 + ], + [ + -0.151797523999903, + 38.96084238200012 + ], + [ + -0.227397428999893, + 39.07777563100018 + ], + [ + -0.256078457999934, + 39.212051708000104 + ], + [ + -0.336967511999944, + 39.383195251000075 + ], + [ + -0.326708564999933, + 39.49476944700007 + ], + [ + -0.20516158099997, + 39.706917596000096 + ], + [ + -0.081159537999952, + 39.850782570000035 + ], + [ + -0.006018457999915, + 39.89514295499998 + ], + [ + 0.057873437000069, + 40.047565014000156 + ], + [ + 0.148244435000038, + 40.090773557000034 + ], + [ + 0.200653458000033, + 40.18660134200019 + ], + [ + 0.389042432000053, + 40.34091536500017 + ], + [ + 0.510612550000189, + 40.53420423100005 + ], + [ + 0.594664431000126, + 40.62183434700006 + ], + [ + 0.78163753400014, + 40.66169364900003 + ], + [ + 0.896928433000085, + 40.717441185000155 + ], + [ + 0.701885569000183, + 40.8021381370001 + ], + [ + 0.991142533000186, + 41.03821175800016 + ], + [ + 1.218282554000041, + 41.105907193 + ], + [ + 1.397282455000095, + 41.12633774700009 + ], + [ + 1.538251482000135, + 41.18683530600015 + ], + [ + 2.116150514000083, + 41.28528344200015 + ], + [ + 2.268528485000104, + 41.43764079300007 + ], + [ + 2.344073573000117, + 41.48703350400007 + ], + [ + 2.748580532000176, + 41.63390205000013 + ], + [ + 3.046913421, + 41.76748796100014 + ], + [ + 3.207499455000175, + 41.897461105000104 + ], + [ + 3.236852544000158, + 41.96180629400004 + ], + [ + 3.223955477000175, + 42.07382053900011 + ], + [ + 3.13455057800013, + 42.134466123000095 + ], + [ + 3.134682509000129, + 42.2336092860001 + ], + [ + 3.25952944800008, + 42.23684436500014 + ], + [ + 3.312187581000046, + 42.318325852000044 + ], + [ + 3.174879434000104, + 42.36211442299998 + ], + [ + 3.180805440000142, + 42.44855883400004 + ], + [ + 3.054264518000139, + 42.59173515100008 + ], + [ + 3.050632472000188, + 42.94424497500012 + ], + [ + 3.09291347400017, + 43.06082132199998 + ], + [ + 3.243980515000089, + 43.21578879800012 + ], + [ + 3.357418510000173, + 43.276515352000104 + ], + [ + 3.539242441999988, + 43.28229450600003 + ], + [ + 3.675101526000049, + 43.39750510600015 + ], + [ + 3.802488517000029, + 43.43938679400014 + ], + [ + 3.972998556000164, + 43.53750837100017 + ], + [ + 4.134392437000088, + 43.53648527600018 + ], + [ + 4.182733555000027, + 43.462198815000136 + ], + [ + 4.428556502000163, + 43.43905487100011 + ], + [ + 4.559523572000103, + 43.44262589700003 + ], + [ + 4.608590563000178, + 43.34264203000009 + ], + [ + 4.83842553300002, + 43.33942304400017 + ], + [ + 4.849491489000059, + 43.403128021999976 + ], + [ + 4.964725559000158, + 43.42161380700014 + ], + [ + 5.034814531000052, + 43.332545357000186 + ], + [ + 5.258016566000094, + 43.33159116100012 + ], + [ + 5.342732461000082, + 43.34966505900019 + ], + [ + 5.347624475000032, + 43.21667376000016 + ], + [ + 5.698131526000054, + 43.176506003000156 + ], + [ + 5.865710581000144, + 43.05527837000005 + ], + [ + 5.945281497000167, + 43.10730333400011 + ], + [ + 6.032539456, + 43.076648367000075 + ], + [ + 6.191276442000117, + 43.11558113400008 + ], + [ + 6.644976456000052, + 43.16490092300006 + ], + [ + 6.704877559000124, + 43.20713766800003 + ], + [ + 6.632557493000036, + 43.27913955800011 + ], + [ + 6.749698445000149, + 43.41571278000015 + ], + [ + 6.924738568000123, + 43.439222844000085 + ], + [ + 6.993484423000041, + 43.54280238100017 + ], + [ + 7.144568563, + 43.548315494000065 + ], + [ + 7.141978555000151, + 43.61658223900014 + ], + [ + 7.278828547000103, + 43.70087971000015 + ], + [ + 7.492369433000022, + 43.743874683000115 + ], + [ + 7.520335485000089, + 43.78057551600017 + ], + [ + 7.675436569000112, + 43.77903073200008 + ], + [ + 7.996005474000128, + 43.850209350000114 + ], + [ + 8.184344491000047, + 43.952095072000134 + ], + [ + 8.184268551000116, + 44.005757022000125 + ], + [ + 8.294097467000086, + 44.15540366500011 + ], + [ + 8.427714559000151, + 44.1866455330001 + ], + [ + 8.465820534999978, + 44.28841340500014 + ], + [ + 8.770151514000133, + 44.427650228000175 + ], + [ + 9.246251493999978, + 44.350707374000194 + ], + [ + 9.379169535000187, + 44.270934287000046 + ], + [ + 9.517723568, + 44.219650450000074 + ], + [ + 9.628223539000032, + 44.14289870400006 + ], + [ + 9.749940508000122, + 44.09652381300003 + ], + [ + 9.898987510000154, + 44.09794991000018 + ], + [ + 9.955428564000044, + 44.050842776000025 + ], + [ + 10.074279592000096, + 44.02794693700014 + ], + [ + 10.18499447500011, + 43.93206399900015 + ], + [ + 10.252435436000042, + 43.83100641000004 + ], + [ + 10.267848582000113, + 43.667958780000106 + ], + [ + 10.326815438999972, + 43.460584628000106 + ], + [ + 10.383726550000176, + 43.43744068400008 + ], + [ + 10.499999473000173, + 43.28618957700019 + ], + [ + 10.50116958600006, + 42.93710392800017 + ], + [ + 10.644484540000121, + 42.95333900400004 + ], + [ + 10.774971495000045, + 42.888177251 + ], + [ + 10.776194582000073, + 42.76673688500017 + ], + [ + 10.9740675110001, + 42.719022230000064 + ], + [ + 11.0997814750001, + 42.55971024600018 + ], + [ + 11.179302434000135, + 42.51406039000017 + ], + [ + 11.14805352600007, + 42.440791995000154 + ], + [ + 11.533804468000028, + 42.33914985200016 + ], + [ + 11.687895532000141, + 42.233556480000175 + ], + [ + 11.825289510000175, + 42.02115888500009 + ], + [ + 11.890028480000126, + 42.031337030000145 + ], + [ + 12.117420461000052, + 41.91467686400017 + ], + [ + 12.194231550999973, + 41.821548555000106 + ], + [ + 12.21362157599998, + 41.73228245900009 + ], + [ + 12.397782550000159, + 41.65203311199997 + ], + [ + 12.607009437999977, + 41.442618805000166 + ], + [ + 12.837814530000173, + 41.39820125600005 + ], + [ + 12.96714444600019, + 41.33476399500012 + ], + [ + 13.02838849800014, + 41.20921901100007 + ], + [ + 13.253755579000028, + 41.26872448900008 + ], + [ + 13.349978486000055, + 41.261384624000186 + ], + [ + 13.525941456000055, + 41.18426725900002 + ], + [ + 13.574656574000073, + 41.22643074700005 + ], + [ + 13.715946461000158, + 41.223402030000045 + ], + [ + 13.821678470000165, + 41.13878168800005 + ], + [ + 13.970501508000098, + 40.96288761700009 + ], + [ + 14.027626525000016, + 40.78835946200019 + ], + [ + 14.267979443000058, + 40.818881156000145 + ], + [ + 14.458052508000094, + 40.700996393000025 + ], + [ + 14.370285432000117, + 40.567360861000054 + ], + [ + 14.48348554900008, + 40.59726045100001 + ], + [ + 14.691278461000081, + 40.60984537600012 + ], + [ + 14.73170857100007, + 40.64722899900016 + ], + [ + 14.841218472000037, + 40.591507615000125 + ], + [ + 14.986165550000123, + 40.39224178100005 + ], + [ + 14.984642558000019, + 40.335842469 + ], + [ + 14.90451659300004, + 40.22499280500011 + ], + [ + 15.0639274830001, + 40.142882006000036 + ], + [ + 15.122312468000189, + 40.148489666000046 + ], + [ + 15.314732467000056, + 39.99819661000009 + ], + [ + 15.451265455000112, + 39.99800567000011 + ], + [ + 15.593619508000131, + 40.05583208500019 + ], + [ + 15.678870504000088, + 39.99066966100003 + ], + [ + 15.769921442000168, + 39.87797413499999 + ], + [ + 15.827772500000037, + 39.63786446000012 + ], + [ + 15.869084554000153, + 39.53738706600012 + ], + [ + 15.98352955100006, + 39.435955309000065 + ], + [ + 16.043983525000158, + 39.250285927 + ], + [ + 16.06031951900019, + 39.09916138600016 + ], + [ + 16.152706532000025, + 38.93373899500011 + ], + [ + 16.216417546000173, + 38.876931652 + ], + [ + 16.181489485000043, + 38.73922301700014 + ], + [ + 16.133954538000125, + 38.70204961200005 + ], + [ + 15.988643518000117, + 38.710754554000175 + ], + [ + 15.86873553100014, + 38.6582273460001 + ], + [ + 15.826545557000031, + 38.60209122600003 + ], + [ + 15.923806479000177, + 38.527762520000124 + ], + [ + 15.903461588000027, + 38.442944868000154 + ], + [ + 15.756624559000159, + 38.25359398699999 + ], + [ + 15.626453435000144, + 38.204109913000025 + ], + [ + 15.642650457000059, + 38.134169134 + ], + [ + 15.622621564000099, + 38.00152266600003 + ], + [ + 15.65825957200002, + 37.951505335000036 + ], + [ + 15.790040524000176, + 37.899813467000115 + ], + [ + 16.05752147200002, + 37.91352307600016 + ], + [ + 16.141878454000107, + 38.01891712700012 + ], + [ + 16.161056584000107, + 38.12465517100003 + ], + [ + 16.31711152800017, + 38.28030761600007 + ], + [ + 16.48212655900005, + 38.33867851900004 + ], + [ + 16.58214546300013, + 38.43273990100016 + ], + [ + 16.524557597000182, + 38.69799059200011 + ], + [ + 16.60006345700009, + 38.79595106800008 + ], + [ + 16.738008461000106, + 38.87678262200012 + ], + [ + 16.92335547400006, + 38.92020121500019 + ], + [ + 17.108322452000095, + 38.89936933600006 + ], + [ + 17.163078576000032, + 38.931412011000134 + ], + [ + 17.156381435000014, + 39.01898865000004 + ], + [ + 17.099491447000105, + 39.106103111000095 + ], + [ + 17.140342496000187, + 39.19596080100001 + ], + [ + 17.096492570000066, + 39.244327064000174 + ], + [ + 17.07936448600003, + 39.387886938000065 + ], + [ + 17.002534452000134, + 39.46008295200005 + ], + [ + 16.833538520000104, + 39.52658798900018 + ], + [ + 16.774398494000025, + 39.59274115400012 + ], + [ + 16.613111566000157, + 39.59974507300012 + ], + [ + 16.523626535000062, + 39.635877446 + ], + [ + 16.491235508000102, + 39.79604220500005 + ], + [ + 16.624254468000174, + 39.934964371000035 + ], + [ + 16.607883437, + 40.06322090100008 + ], + [ + 16.730052526000065, + 40.183477407000055 + ], + [ + 16.73771459200003, + 40.22950176600011 + ], + [ + 16.87499658700017, + 40.38917484300009 + ], + [ + 16.951473575000136, + 40.447676168000044 + ], + [ + 17.08244852300004, + 40.49909076300003 + ], + [ + 17.228502516000162, + 40.45535114200004 + ], + [ + 17.214902542, + 40.39110888300007 + ], + [ + 17.525321465000104, + 40.27110718700004 + ], + [ + 17.660612591000074, + 40.28185312200003 + ], + [ + 17.85309746600018, + 40.26975719800015 + ], + [ + 18.01563447100017, + 40.08133670800004 + ], + [ + 17.97415343800003, + 40.02716446800008 + ], + [ + 18.09473449100011, + 39.88643516299999 + ], + [ + 18.33296058500008, + 39.780875654000056 + ], + [ + 18.390718435000053, + 39.80277237000007 + ], + [ + 18.407381491000137, + 39.98414703200007 + ], + [ + 18.478643594, + 40.03477523600009 + ], + [ + 18.524442481, + 40.14029585300017 + ], + [ + 18.441606478000097, + 40.2763601260001 + ], + [ + 18.23527755000009, + 40.45419611600005 + ], + [ + 18.046972563000168, + 40.555738011000074 + ], + [ + 18.02414344300007, + 40.621087184000146 + ], + [ + 17.658119478000117, + 40.75659858600005 + ], + [ + 17.50644659300019, + 40.800806252000086 + ], + [ + 17.176055439000038, + 41.00513123600007 + ], + [ + 17.063415568000096, + 41.05165046299999 + ], + [ + 16.62125257300005, + 41.17681340000013 + ], + [ + 16.42902753700008, + 41.255418721000126 + ], + [ + 16.25782750000019, + 41.302968083999986 + ], + [ + 16.220375480000087, + 41.33693775800009 + ], + [ + 16.00222052400011, + 41.430194981 + ], + [ + 15.89822859900005, + 41.53027607800004 + ], + [ + 15.923344469000142, + 41.61358817200016 + ], + [ + 16.055875434000086, + 41.67023676200017 + ], + [ + 16.198795433000043, + 41.76824987600003 + ], + [ + 16.180953546000012, + 41.87522525700007 + ], + [ + 16.069421595000108, + 41.93241481500007 + ], + [ + 15.444740479000075, + 41.89289900300008 + ], + [ + 15.184709535000081, + 41.90791283500016 + ], + [ + 15.06524243600012, + 41.93717171200012 + ], + [ + 14.96624947800018, + 42.00313812900009 + ], + [ + 14.816344504000028, + 42.041372683000134 + ], + [ + 14.723566558000073, + 42.09413341099997 + ], + [ + 14.714013536000152, + 42.17876967800015 + ], + [ + 14.50893753400004, + 42.24852840300019 + ], + [ + 14.394191457999966, + 42.36909856000011 + ], + [ + 14.198572590000026, + 42.480036736000045 + ], + [ + 14.084727570000098, + 42.580427964000194 + ], + [ + 13.917971450000152, + 42.82550961600015 + ], + [ + 13.831004510000128, + 43.096141321000175 + ], + [ + 13.620042568000088, + 43.47551547900008 + ], + [ + 13.605185477000134, + 43.53988849600006 + ], + [ + 13.493485553000085, + 43.62529925100017 + ], + [ + 13.420831552000095, + 43.61708213600019 + ], + [ + 13.227773523000053, + 43.69882681500019 + ], + [ + 12.937609469000108, + 43.89939938800012 + ], + [ + 12.69329459300019, + 43.98109092500016 + ], + [ + 12.525013470000033, + 44.08872260800018 + ], + [ + 12.394055453000021, + 44.04613885200018 + ], + [ + 12.117491540000174, + 44.14908253700003 + ], + [ + 12.05286052800011, + 44.14624375400007 + ], + [ + 11.808423444000027, + 44.2711294180001 + ], + [ + 11.737611450000145, + 44.32468424700005 + ], + [ + 11.378705564000029, + 44.48214299199998 + ], + [ + 11.099038503000088, + 44.53306087500005 + ], + [ + 10.99574546000008, + 44.51066510000004 + ], + [ + 10.9605174940001, + 44.56374283100013 + ], + [ + 10.777633587000025, + 44.59501588000012 + ], + [ + 10.503197504000184, + 44.708121784000184 + ], + [ + 10.418637511999975, + 44.7051388320001 + ], + [ + 10.330656530000113, + 44.767153852000035 + ], + [ + 10.181416576000117, + 44.75348179399998 + ], + [ + 10.050622509000164, + 44.84994375400015 + ], + [ + 9.880607505000057, + 44.883940753000104 + ], + [ + 9.660449442000186, + 44.95651177400015 + ], + [ + 9.564676475000113, + 44.952509918000146 + ], + [ + 9.283061460000113, + 45.04059483499998 + ], + [ + 9.124369569000066, + 45.03055482399998 + ], + [ + 8.952263448000053, + 44.92545581600007 + ], + [ + 8.848357520000036, + 44.886702925 + ], + [ + 8.827054578000116, + 44.80757775900014 + ], + [ + 8.761622424, + 44.786551755000175 + ], + [ + 8.609935458000052, + 44.82179598200014 + ], + [ + 8.58308453400008, + 44.89824581200003 + ], + [ + 8.457770555000081, + 44.84357786600009 + ], + [ + 8.138665465999964, + 44.852892675000135 + ], + [ + 8.26933045200019, + 44.933436897000036 + ], + [ + 8.414770553000096, + 44.97697384300005 + ], + [ + 8.388967535000177, + 45.11274290500012 + ], + [ + 8.244064546000061, + 45.069094983000184 + ], + [ + 7.950053533000073, + 45.050967776 + ], + [ + 7.962854544000095, + 44.9774846360001 + ], + [ + 7.816514561000133, + 44.90891966300006 + ], + [ + 7.786623520000092, + 44.83523468699997 + ], + [ + 7.851161493000177, + 44.72154590500003 + ], + [ + 7.782052533000126, + 44.62359599000018 + ], + [ + 7.796862518000125, + 44.50706792200015 + ], + [ + 7.68328856800008, + 44.37124219900005 + ], + [ + 7.546535471000027, + 44.358024273000126 + ], + [ + 7.529386432000138, + 44.43206028200018 + ], + [ + 7.691034453000157, + 44.52631310700008 + ], + [ + 7.677086463000023, + 44.595160887000134 + ], + [ + 7.500000485000101, + 44.707926821000115 + ], + [ + 7.46292648900004, + 44.801588889000016 + ], + [ + 7.499999480000099, + 44.997858864000136 + ], + [ + 7.400573512000051, + 44.96264565000013 + ], + [ + 7.326099464000038, + 44.76655873700008 + ], + [ + 7.454020550000052, + 44.63745781400013 + ], + [ + 7.469845583000165, + 44.52210891200008 + ], + [ + 7.440945451000118, + 44.47454798200005 + ], + [ + 7.46425653, + 44.30767434800015 + ], + [ + 7.620418427000118, + 44.30815831900014 + ], + [ + 7.828958502000091, + 44.42095526600008 + ], + [ + 7.971315572000094, + 44.41742313200007 + ], + [ + 8.18622958100002, + 44.4518269890001 + ], + [ + 8.275273556000059, + 44.37268036600011 + ], + [ + 8.222284505, + 44.28414148400009 + ], + [ + 8.044944556000189, + 44.23308546800007 + ], + [ + 7.951963434000106, + 44.15336267200007 + ], + [ + 7.74734458100005, + 44.14775065300017 + ], + [ + 7.714006567000183, + 44.05419587300008 + ], + [ + 7.560219431000178, + 44.14174267200019 + ], + [ + 7.500000485000101, + 44.04590298500011 + ], + [ + 7.295047530000147, + 44.055026687000066 + ], + [ + 7.267436535000058, + 44.11828977199997 + ], + [ + 7.173152529000049, + 44.11384987800017 + ], + [ + 6.929491442000085, + 44.272899508000194 + ], + [ + 6.891857535000099, + 44.24778330300012 + ], + [ + 7.049659435000137, + 44.11759155900006 + ], + [ + 6.928048581000155, + 44.05417692900011 + ], + [ + 6.880774480000127, + 44.14883057700018 + ], + [ + 6.733792443000027, + 44.16883063600005 + ], + [ + 6.777178515000116, + 44.07233095800018 + ], + [ + 6.678411532000155, + 44.04692088400003 + ], + [ + 6.581944544000123, + 44.133411731000194 + ], + [ + 6.497649587000126, + 44.114551778000134 + ], + [ + 6.520177461000173, + 44.23371846900011 + ], + [ + 6.439337525000155, + 44.31459427900006 + ], + [ + 6.379632558000083, + 44.47995715900004 + ], + [ + 6.405092589000162, + 44.55720109100008 + ], + [ + 6.113140508000185, + 44.61313587800015 + ], + [ + 6.044477466000103, + 44.59532886000011 + ], + [ + 5.889202542000135, + 44.63024082800018 + ], + [ + 5.969926472000111, + 44.679507978000174 + ], + [ + 5.857574436000107, + 44.75624799000008 + ], + [ + 5.805426425000064, + 44.553587988 + ], + [ + 5.717387440000095, + 44.626093965000166 + ], + [ + 5.578752437999981, + 44.60911105600019 + ], + [ + 5.517454574000055, + 44.687309016000086 + ], + [ + 5.260334497000088, + 44.86616072500016 + ], + [ + 5.193428470000015, + 44.80100584400003 + ], + [ + 5.045093426000108, + 44.780123674000095 + ], + [ + 5.076648442000078, + 44.88673695600011 + ], + [ + 5.154706424000153, + 44.92133979900012 + ], + [ + 5.024713499000086, + 45.069235966 + ], + [ + 4.853586552000024, + 45.10280180000012 + ], + [ + 4.767988545000037, + 45.3842040830001 + ], + [ + 4.880701506000037, + 45.51824932300002 + ], + [ + 4.733163581000042, + 45.498149351000166 + ], + [ + 4.684426502000122, + 45.43014093600016 + ], + [ + 4.746318475000123, + 45.24481487700018 + ], + [ + 4.742618536000123, + 45.120528687000046 + ], + [ + 4.674927459000116, + 45.03756997400012 + ], + [ + 4.682501514000023, + 44.943785698 + ], + [ + 4.529886504, + 44.90267866500011 + ], + [ + 4.515326467000136, + 44.732210703000135 + ], + [ + 4.340212584000085, + 44.67973294900003 + ], + [ + 4.229176507000147, + 44.54728312000009 + ], + [ + 3.983983543000022, + 44.360008269000105 + ], + [ + 3.969202559000053, + 44.282199397000056 + ], + [ + 3.822397547999969, + 44.205406412000116 + ], + [ + 3.714900478000061, + 44.18516545700004 + ], + [ + 3.765136577000021, + 44.055847946000085 + ], + [ + 3.651344530000131, + 44.084056906000114 + ], + [ + 3.604943487000014, + 43.998062938000146 + ], + [ + 3.403357542000094, + 43.991444084000136 + ], + [ + 3.365823547000048, + 44.01646507100014 + ], + [ + 3.447178467000072, + 44.16398673400016 + ], + [ + 3.579808507000109, + 44.2800065240001 + ], + [ + 3.551527462000024, + 44.395286359000124 + ], + [ + 3.606755487000044, + 44.47117896000003 + ], + [ + 3.800829570000133, + 44.55605997900017 + ], + [ + 3.708476420000181, + 44.58985480700005 + ], + [ + 3.578521549000016, + 44.55828403300018 + ], + [ + 3.378966539000032, + 44.544856056000185 + ], + [ + 3.251466560000154, + 44.56097713800017 + ], + [ + 3.195507466000151, + 44.45068302700014 + ], + [ + 3.018343537000135, + 44.44725717600011 + ], + [ + 2.776809441000069, + 44.49815695300009 + ], + [ + 2.508591557000159, + 44.49787817100014 + ], + [ + 2.419214485000055, + 44.45855313100009 + ], + [ + 2.403020480000123, + 44.39411523900003 + ], + [ + 2.581949470000097, + 44.35408025200019 + ], + [ + 2.628515469000149, + 44.30260027900016 + ], + [ + 2.583497440000087, + 44.23992929200017 + ], + [ + 2.607534559000044, + 44.128715518000035 + ], + [ + 2.710126540000147, + 44.05221589900003 + ], + [ + 2.558278473000087, + 44.023441832000174 + ], + [ + 2.447745477000126, + 43.93733303100004 + ], + [ + 2.606712462000132, + 43.93106102100012 + ], + [ + 2.524131438000097, + 43.81200145100007 + ], + [ + 2.626155460000177, + 43.75126366600017 + ], + [ + 2.524878433000026, + 43.657944920000034 + ], + [ + 2.507008550000023, + 43.54282551500012 + ], + [ + 2.688631484000098, + 43.52914256100007 + ], + [ + 2.689624572000014, + 43.46454474199999 + ], + [ + 2.573518449000176, + 43.38725906800005 + ], + [ + 2.317910468000093, + 43.39270998700016 + ], + [ + 2.23833955200007, + 43.37390401400012 + ], + [ + 1.972873446000165, + 43.39283990700005 + ], + [ + 2.180246425000178, + 43.28188228400006 + ], + [ + 2.336185531000069, + 43.25740746200006 + ], + [ + 2.332680555000138, + 43.21477760500005 + ], + [ + 2.169331511000166, + 43.15575392000005 + ], + [ + 2.129896500000029, + 43.052108502000124 + ], + [ + 2.19742044200018, + 42.97125297500014 + ], + [ + 2.168332556000053, + 42.836098475000085 + ], + [ + 2.435290472000133, + 42.7854519980001 + ], + [ + 2.323986509000065, + 42.691484326000136 + ], + [ + 2.33926956900018, + 42.619323012000166 + ], + [ + 2.247714543000143, + 42.59426816300004 + ], + [ + 2.263164570000129, + 42.53036034200005 + ], + [ + 2.531929457000047, + 42.57739908000002 + ], + [ + 2.629541581000126, + 42.52416158900007 + ], + [ + 2.499998430000119, + 42.42227218000005 + ], + [ + 2.605993463000061, + 42.390835181000114 + ], + [ + 2.499997424000071, + 42.28744993800012 + ], + [ + 2.381501453000169, + 42.293850862000056 + ], + [ + 2.185362570999985, + 42.24920733700009 + ], + [ + 1.870388419000051, + 42.255158153000025 + ], + [ + 1.720857446000025, + 42.17630875100019 + ], + [ + 1.537746556000116, + 42.11341732000011 + ], + [ + 1.473329451000041, + 42.117750094000144 + ], + [ + 1.38345751200012, + 42.00731919000009 + ], + [ + 1.295395561000021, + 42.06162151700005 + ], + [ + 1.236291576000156, + 41.99818308300007 + ], + [ + 1.070946466, + 41.9980231560001 + ], + [ + 1.181507457000066, + 42.1449409870001 + ], + [ + 1.103997484000161, + 42.173394867000184 + ], + [ + 1.007116429000064, + 42.266953167 + ], + [ + 0.901049479000164, + 42.271092318000115 + ], + [ + 0.812272552000024, + 42.180344805000175 + ], + [ + 0.812829445000034, + 42.070093777000125 + ], + [ + 0.714029438000182, + 42.08280057500002 + ], + [ + 0.7664165, + 42.16171099600001 + ], + [ + 0.797724418000143, + 42.342911818 + ], + [ + 0.740944567000042, + 42.36661148100012 + ], + [ + 0.625667582000176, + 42.22984430200012 + ], + [ + 0.476426455000023, + 42.357162562000156 + ], + [ + 0.190200554000057, + 42.38692837600007 + ], + [ + 0.112006450000081, + 42.498084483000184 + ], + [ + 0.02885445000004, + 42.37916254300012 + ], + [ + -0.179664501999923, + 42.26745306400011 + ], + [ + -0.276034427999889, + 42.321609881000086 + ], + [ + -0.398552538999866, + 42.309486799000126 + ], + [ + -0.480083478999973, + 42.33752476800015 + ], + [ + -0.332562485999972, + 42.41132725800003 + ], + [ + -0.368182556999955, + 42.502467547000094 + ], + [ + -0.785862515999952, + 42.498172492000094 + ], + [ + -0.863141483999925, + 42.42799417000009 + ], + [ + -0.966521530999955, + 42.45947978300006 + ], + [ + -0.821460458999923, + 42.58347227100012 + ], + [ + -1.045658431999925, + 42.64688371600005 + ], + [ + -1.212023451999869, + 42.62816072300018 + ], + [ + -1.346412516999976, + 42.88786846200014 + ], + [ + -1.401220440999964, + 42.778199808000124 + ], + [ + -1.462319485999899, + 42.77154709100006 + ], + [ + -1.37293252399985, + 42.63812060400011 + ], + [ + -1.451714533999962, + 42.60093596700017 + ], + [ + -1.552844542999878, + 42.66524377200005 + ], + [ + -1.802401460999931, + 42.642969702000016 + ], + [ + -2.031687584999929, + 42.70307733600009 + ], + [ + -2.130622540999923, + 42.63603485100009 + ], + [ + -2.323706553999955, + 42.61889872000006 + ], + [ + -2.404447582999978, + 42.57720814000004 + ], + [ + -2.68340251799998, + 42.56315923200009 + ], + [ + -2.877822438999942, + 42.61245991000004 + ], + [ + -3.096789432999913, + 42.598441177000154 + ], + [ + -3.334729535999884, + 42.6736736200001 + ], + [ + -3.61314350299989, + 42.80355171200006 + ], + [ + -3.726609493999888, + 42.77138297400006 + ], + [ + -3.842535573999953, + 42.788602923000155 + ], + [ + -3.95593752699989, + 42.75192807299999 + ], + [ + -4.120966471999964, + 42.76590489700004 + ], + [ + -4.312926471999958, + 42.878285264 + ], + [ + -4.537799522999933, + 42.80401389000008 + ], + [ + -4.744014457999981, + 42.82808051400008 + ], + [ + -5.033184585999891, + 42.810917729000096 + ], + [ + -5.238415484999962, + 42.84276359600011 + ], + [ + -5.519038585999965, + 42.78931991100012 + ], + [ + -5.726840550999952, + 42.79137582400017 + ], + [ + -5.887896472999955, + 42.82296068000011 + ], + [ + -5.964946447999978, + 42.80961786300003 + ], + [ + -6.094121466999979, + 42.735529048000046 + ], + [ + -6.301317586999971, + 42.712259208000035 + ], + [ + -6.518130432999953, + 42.793633909 + ], + [ + -6.642783581999936, + 42.792333038000095 + ], + [ + -6.786952484999915, + 42.73314406100013 + ], + [ + -6.91041557199992, + 42.61466099800009 + ], + [ + -6.99864448999989, + 42.48015961500016 + ], + [ + -7.185896542999899, + 42.50292855200013 + ], + [ + -7.280427478999968, + 42.63612990200005 + ], + [ + -7.383672576999913, + 42.68208536200012 + ], + [ + -7.464998495999907, + 42.67058773800005 + ], + [ + -7.628357429999824, + 42.53553633500013 + ], + [ + -7.784537431999922, + 42.447688960000164 + ], + [ + -7.656288445999962, + 42.335228630000074 + ], + [ + -7.527683564999961, + 42.32872092000002 + ], + [ + -7.330931462999956, + 42.35298569200006 + ], + [ + -7.243357505999938, + 42.29169486900008 + ], + [ + -7.312588505999884, + 42.21314352800016 + ], + [ + -7.258820440999898, + 42.1001953710001 + ], + [ + -7.347953431999883, + 42.0176949800001 + ], + [ + -7.666434572999947, + 42.079328455000166 + ], + [ + -7.747902480999926, + 42.07935963600016 + ], + [ + -7.893754468999816, + 42.024626814000044 + ], + [ + -7.942842581999912, + 41.97745832400011 + ], + [ + -7.907491569999934, + 41.893665109000096 + ], + [ + -7.631234434999897, + 41.87442797000011 + ], + [ + -7.512499578999893, + 41.72836425500009 + ], + [ + -7.521252465999964, + 41.6682417020001 + ], + [ + -7.666335497999967, + 41.52820122200012 + ], + [ + -7.660426423999979, + 41.39587812800005 + ], + [ + -7.759592552999948, + 41.30054604900005 + ], + [ + -7.723266557999978, + 41.197806044000174 + ], + [ + -8.035140579999961, + 41.13470372400013 + ], + [ + -8.316406572999938, + 41.114786981000066 + ], + [ + -8.363615462999917, + 41.067008289000114 + ], + [ + -8.293839471999945, + 41.00212917300013 + ], + [ + -8.212734499999954, + 40.99393921600006 + ], + [ + -7.859010474999934, + 41.05693843800009 + ], + [ + -7.69691754299987, + 41.05302744199997 + ], + [ + -7.618833576999975, + 40.894792198000175 + ], + [ + -7.530233506999934, + 40.79577929000004 + ], + [ + -7.549707517999877, + 40.61952613800014 + ], + [ + -7.598129437999944, + 40.57458974999997 + ], + [ + -7.888308578999954, + 40.415225630000066 + ], + [ + -8.1581984849999, + 40.364155197000116 + ], + [ + -8.353494482999963, + 40.24061365600005 + ], + [ + -8.368518540999958, + 40.32836564399997 + ], + [ + -8.453923428999872, + 40.43826228500018 + ], + [ + -8.441685514999904, + 40.58544263800019 + ], + [ + -8.473155537999958, + 40.64055683600009 + ], + [ + -8.591114564999941, + 40.717806971000186 + ], + [ + -8.73708356499992, + 40.61511742500011 + ], + [ + -8.830328548999887, + 40.33396559300013 + ], + [ + -8.899005505999924, + 40.186357261000126 + ], + [ + -8.85308457799988, + 40.132178148000094 + ], + [ + -8.933407517999967, + 39.994385862000115 + ], + [ + -9.057351558999926, + 39.72085636500009 + ], + [ + -9.082729446999963, + 39.57319858 + ], + [ + -9.25477052499997, + 39.400429953000014 + ], + [ + -9.370572551999885, + 39.33413496600008 + ], + [ + -9.343466482999872, + 39.25615292400005 + ], + [ + -9.358757588999936, + 39.16343750800013 + ], + [ + -9.426577578999968, + 39.073366582000176 + ], + [ + -9.421933501999945, + 38.93225204500004 + ], + [ + -9.493368439999927, + 38.777331173000164 + ], + [ + -9.46963055499998, + 38.69530553300007 + ], + [ + -9.319270442999937, + 38.660851217000186 + ], + [ + -9.149597588999939, + 38.68219070400005 + ], + [ + -9.070093560999965, + 38.84621231200009 + ], + [ + -8.98925848599987, + 38.837530336999976 + ], + [ + -8.937189432999958, + 38.75889568000008 + ], + [ + -9.046110588999966, + 38.710083331000135 + ], + [ + -8.997193465999885, + 38.64282358700018 + ], + [ + -9.281388431999915, + 38.654858156000046 + ], + [ + -9.219674489999932, + 38.59969517500008 + ], + [ + -9.18763952699993, + 38.48746098800012 + ], + [ + -9.219935502999931, + 38.40192953400003 + ], + [ + -9.039552587999935, + 38.43471585100002 + ], + [ + -8.879071495999938, + 38.51232858600014 + ], + [ + -8.793553451999912, + 38.329226749000156 + ], + [ + -8.785252517999936, + 38.19881892000018 + ], + [ + -8.867939489999912, + 37.980851887000085 + ], + [ + -8.793463430999907, + 37.90300244600013 + ], + [ + -8.8142475329999, + 37.59824097300003 + ], + [ + -8.782282474999931, + 37.54960380600005 + ], + [ + -8.807085531999917, + 37.403648553000096 + ], + [ + -8.88550443899993, + 37.316492350000146 + ], + [ + -8.866993508999883, + 37.265845538000065 + ], + [ + -8.906147557999873, + 37.15779643600007 + ], + [ + -8.989561575999915, + 37.028950323 + ], + [ + -8.77755558399997, + 37.05784542500004 + ], + [ + -8.630286550999813, + 37.12083324900016 + ], + [ + -8.535129485999903, + 37.12292738300005 + ], + [ + -8.302243502999943, + 37.08448294599998 + ], + [ + -8.207154499999945, + 37.102564723000114 + ], + [ + -8.082015534999925, + 37.0713721410001 + ], + [ + -7.998089549999975, + 37.017720249000035 + ], + [ + -7.889356483999961, + 37.01205559100015 + ], + [ + -7.780737579999936, + 37.04489488200005 + ], + [ + -7.520684507999874, + 37.182492037000145 + ], + [ + -7.400848437999969, + 37.178071086000045 + ], + [ + -7.258453481999936, + 37.21410857600017 + ], + [ + -7.074196450999921, + 37.22392311400006 + ], + [ + -6.66717542299989, + 37.081180141000175 + ], + [ + -6.511928494999893, + 36.984838210000134 + ], + [ + -6.405012457999817, + 36.834534090000034 + ], + [ + -6.446886434999954, + 36.75612893000016 + ], + [ + -6.398104428999943, + 36.62917863600006 + ], + [ + -6.232857554999896, + 36.58717138700007 + ], + [ + -6.281661520999933, + 36.48977350400003 + ], + [ + -6.152276451999967, + 36.31655527200007 + ], + [ + -6.083473431999948, + 36.278043109000066 + ], + [ + -6.035303472999885, + 36.189704220000124 + ], + [ + -5.907351540999912, + 36.18429521000007 + ], + [ + -5.793311556999925, + 36.089532598 + ], + [ + -5.645509434999894, + 36.065382156000055 + ], + [ + -5.592353584999955, + 36.02042313600015 + ], + [ + -5.43085358899998, + 36.0762689070001 + ], + [ + -5.433192474999885, + 36.17126872700004 + ], + [ + -5.326660496999978, + 36.1938740490001 + ], + [ + -5.211943422999923, + 36.37141298500018 + ], + [ + -5.165698451999958, + 36.40582539100012 + ], + [ + -4.912732445999893, + 36.49815423400014 + ], + [ + -4.733445548999896, + 36.47927869100005 + ], + [ + -4.645190477999904, + 36.495186370000056 + ], + [ + -4.537302475999923, + 36.571222804 + ], + [ + -4.430834535999963, + 36.693447214000116 + ], + [ + -3.9698045479999, + 36.725489386000106 + ], + [ + -3.872051439999893, + 36.749937888000034 + ], + [ + -3.724831524999956, + 36.72956751700008 + ], + [ + -3.614743440999973, + 36.75478598100017 + ], + [ + -3.473811461999901, + 36.701564081000186 + ], + [ + -3.244805461999931, + 36.758405622000055 + ], + [ + -2.973792547999949, + 36.736003310000115 + ], + [ + -2.856027478999977, + 36.7013808530001 + ], + [ + -2.703961481999897, + 36.68872837000015 + ], + [ + -2.604064450999942, + 36.74415823100014 + ], + [ + -2.577885420999962, + 36.805062816000145 + ], + [ + -2.361646567999856, + 36.82973528300005 + ], + [ + -2.266997446999881, + 36.785108354000045 + ], + [ + -2.219105430999889, + 36.72363145300011 + ], + [ + -2.090451431999895, + 36.763238628000124 + ], + [ + -2.00705752999994, + 36.87866933700002 + ], + [ + -1.926999457999955, + 36.92470040200004 + ], + [ + -1.832311444999959, + 37.17639302900017 + ], + [ + -1.678785487999903, + 37.35562276200005 + ], + [ + -1.536136559999875, + 37.42003651400006 + ], + [ + -1.327347542999973, + 37.548188773000106 + ], + [ + -1.206180426999936, + 37.560727598000085 + ], + [ + -1.152918460999899, + 37.52874544000014 + ], + [ + -0.984824421999974, + 37.58775403900012 + ], + [ + -0.927897552999923, + 37.54854383100019 + ], + [ + -0.751503417999913, + 37.584180330000095 + ], + [ + -0.750273457999924, + 37.67142471100004 + ] + ], + [ + [ + 9.764788546000148, + 44.31181349900004 + ], + [ + 9.694135473000188, + 44.34810211100017 + ], + [ + 9.380535450000139, + 44.44467119100011 + ], + [ + 9.239625431000036, + 44.5123359480001 + ], + [ + 9.141772579000076, + 44.60991186300009 + ], + [ + 9.160075471000141, + 44.72580676200005 + ], + [ + 9.236373588000163, + 44.74559677000008 + ], + [ + 9.62270958800002, + 44.733023748000164 + ], + [ + 9.774575592000076, + 44.67412076100004 + ], + [ + 9.896780555000078, + 44.591940895000164 + ], + [ + 9.938253541000165, + 44.4876970090001 + ], + [ + 10.11091655600012, + 44.48596497200003 + ], + [ + 10.406228440000177, + 44.36684421400008 + ], + [ + 10.719491510000125, + 44.272025443000075 + ], + [ + 10.781094475000032, + 44.2294654910001 + ], + [ + 10.800371511000037, + 44.1419027660001 + ], + [ + 10.749339467000027, + 44.094631682000056 + ], + [ + 10.631922582000072, + 44.085025686000165 + ], + [ + 9.952357435000067, + 44.38835804500013 + ], + [ + 9.764788546000148, + 44.31181349900004 + ] + ], + [ + [ + 11.37173047900012, + 44.028423867000186 + ], + [ + 11.249232485000107, + 44.05695368600004 + ], + [ + 10.994420449000131, + 44.04431578800012 + ], + [ + 10.951056505000054, + 44.117999590000124 + ], + [ + 10.993021509000187, + 44.17066962600012 + ], + [ + 11.146989527000073, + 44.213539372000184 + ], + [ + 11.345297477000088, + 44.15937467600014 + ], + [ + 11.599692430000175, + 44.04962186800003 + ], + [ + 11.906981550000012, + 43.88802430700014 + ], + [ + 11.94852343600013, + 43.83912746900006 + ], + [ + 12.017715544000112, + 43.63644215300019 + ], + [ + 11.91148749399997, + 43.612184255000045 + ], + [ + 11.471989441000176, + 43.974530074000086 + ], + [ + 11.37173047900012, + 44.028423867000186 + ] + ], + [ + [ + 12.628157482000063, + 43.40867080700002 + ], + [ + 12.388972499000147, + 43.46648582300014 + ], + [ + 12.291329530000041, + 43.55958730900005 + ], + [ + 12.321084448000136, + 43.61449615099997 + ], + [ + 12.443737507000094, + 43.61858115600006 + ], + [ + 12.667212457000062, + 43.51265938000006 + ], + [ + 12.713802428000122, + 43.46387653600016 + ], + [ + 12.628157482000063, + 43.40867080700002 + ] + ], + [ + [ + 12.797117540000158, + 43.272013599 + ], + [ + 12.881787503000055, + 43.26011163200013 + ], + [ + 12.948767458000077, + 43.18521496799997 + ], + [ + 12.887289551000038, + 43.07885347800004 + ], + [ + 12.781597440000155, + 43.09310522800007 + ], + [ + 12.730772429000126, + 43.198725926 + ], + [ + 12.797117540000158, + 43.272013599 + ] + ], + [ + [ + 12.874219482000171, + 42.72657616900011 + ], + [ + 13.032427569000106, + 42.86491830799997 + ], + [ + 13.111165492000055, + 42.97008185600015 + ], + [ + 13.250884442000086, + 42.972133914000096 + ], + [ + 13.340503583000043, + 42.83811247800003 + ], + [ + 13.429436581000061, + 42.77659383500003 + ], + [ + 13.587546433000114, + 42.746572205000064 + ], + [ + 13.630727483000157, + 42.69533329600006 + ], + [ + 13.570387503000063, + 42.617979896000065 + ], + [ + 13.583814474000178, + 42.56303735900002 + ], + [ + 13.789418536000085, + 42.415890031000174 + ], + [ + 13.830549541000039, + 42.33187167800014 + ], + [ + 13.706183555000052, + 42.277871266000034 + ], + [ + 13.537349562000031, + 42.36260644000009 + ], + [ + 13.462227592000033, + 42.31446497900009 + ], + [ + 13.808753575000026, + 42.05932085200004 + ], + [ + 13.937316547000023, + 42.17085380900005 + ], + [ + 14.056612487000109, + 42.15807509400014 + ], + [ + 14.209839545000136, + 42.18510572600019 + ], + [ + 14.295273434000023, + 42.10148836300016 + ], + [ + 14.463968456000032, + 42.038336925000124 + ], + [ + 14.516993549000176, + 41.92900472100001 + ], + [ + 14.417413521000185, + 41.80199072500011 + ], + [ + 14.458731442000158, + 41.692582581000124 + ], + [ + 14.468789559000015, + 41.573698528000136 + ], + [ + 14.644863505000046, + 41.40981321000004 + ], + [ + 14.670745481000097, + 41.299463275000164 + ], + [ + 14.602794565000181, + 41.27206937100004 + ], + [ + 14.497570500000108, + 41.36007751100004 + ], + [ + 14.3426305160001, + 41.40718900300004 + ], + [ + 14.258897483000055, + 41.45956382800006 + ], + [ + 14.261863503000143, + 41.54919286000006 + ], + [ + 14.166749521000156, + 41.593927413000074 + ], + [ + 14.036087553000073, + 41.52571397600019 + ], + [ + 13.883670523000092, + 41.55184472700017 + ], + [ + 13.882815569000059, + 41.62935822000003 + ], + [ + 13.722818448, + 41.762494024000034 + ], + [ + 13.602318531000037, + 41.76857090300001 + ], + [ + 13.447363461000066, + 41.73737111300011 + ], + [ + 13.145183446000033, + 41.89220397500014 + ], + [ + 13.053307561000054, + 42.02104505900007 + ], + [ + 13.168117506000101, + 42.141184051000096 + ], + [ + 13.200584473000163, + 42.223241374000054 + ], + [ + 13.119185464000168, + 42.35624742600015 + ], + [ + 13.29696646900004, + 42.62300384100013 + ], + [ + 13.269897448000108, + 42.679311623000046 + ], + [ + 13.126356518000023, + 42.661203695000154 + ], + [ + 12.982143526000073, + 42.5127444310001 + ], + [ + 12.837541447000035, + 42.52823938500012 + ], + [ + 12.824756530000116, + 42.644869880000044 + ], + [ + 12.874219482000171, + 42.72657616900011 + ] + ], + [ + [ + 12.843506512000033, + 42.799370819000046 + ], + [ + 12.710861553000086, + 42.800545794000186 + ], + [ + 12.69602742900014, + 42.888760296000044 + ], + [ + 12.75771454800008, + 42.963317995000125 + ], + [ + 12.837556535000033, + 42.94310403000014 + ], + [ + 12.843506512000033, + 42.799370819000046 + ] + ] + ], + [ + [ + [ + 1.597531487000026, + 39.02816649900012 + ], + [ + 1.535081446000049, + 39.1236398960001 + ], + [ + 1.35663156600009, + 39.072126563000154 + ], + [ + 1.232866563000186, + 38.97159519000019 + ], + [ + 1.21540756100012, + 38.89373837300019 + ], + [ + 1.347099498000091, + 38.87216268400016 + ], + [ + 1.495900575000121, + 38.93008901100012 + ], + [ + 1.597531487000026, + 39.02816649900012 + ] + ] + ], + [ + [ + [ + 3.092739465000079, + 39.8644055100001 + ], + [ + 3.016078579000123, + 39.9259196270001 + ], + [ + 2.773461541000131, + 39.848299683 + ], + [ + 2.361061511000059, + 39.59118530600017 + ], + [ + 2.402994496000133, + 39.51728726200008 + ], + [ + 2.491853567000078, + 39.506229352000105 + ], + [ + 2.64957449800005, + 39.55473978500015 + ], + [ + 2.763489423000181, + 39.50278036700013 + ], + [ + 2.733755460000111, + 39.46353881100009 + ], + [ + 2.790923560000181, + 39.35797661900017 + ], + [ + 2.96827055000017, + 39.35173947700014 + ], + [ + 3.075545500000032, + 39.26233172800005 + ], + [ + 3.230701568000143, + 39.349565547000054 + ], + [ + 3.300415534000081, + 39.49823737500009 + ], + [ + 3.369489457000157, + 39.54498978700008 + ], + [ + 3.455619547000026, + 39.655519262000155 + ], + [ + 3.474406577000138, + 39.739460167000175 + ], + [ + 3.340085573000181, + 39.76448065100004 + ], + [ + 3.25263851800014, + 39.72581929000012 + ], + [ + 3.178652464000152, + 39.75268882200004 + ], + [ + 3.092739465000079, + 39.8644055100001 + ] + ] + ], + [ + [ + [ + 4.149072502000138, + 40.03873820000007 + ], + [ + 4.076438449000079, + 40.05672392000014 + ], + [ + 3.834038503000102, + 40.04814504200016 + ], + [ + 3.841991420999989, + 39.913068828 + ], + [ + 3.96752450200006, + 39.928838541000175 + ], + [ + 4.202981551000107, + 39.81839690800007 + ], + [ + 4.319059510000102, + 39.86342449200009 + ], + [ + 4.258030538000185, + 39.94942918900017 + ], + [ + 4.149072502000138, + 40.03873820000007 + ] + ] + ], + [ + [ + [ + 9.369299509000086, + 41.18822318200006 + ], + [ + 9.234985544999972, + 41.255132730000184 + ], + [ + 9.171100523, + 41.236619788000155 + ], + [ + 9.153758533000087, + 41.154486692000035 + ], + [ + 9.021227568000143, + 41.12484694200009 + ], + [ + 8.797181475000116, + 40.917631040000174 + ], + [ + 8.702985480000166, + 40.90467613800013 + ], + [ + 8.528020459000174, + 40.80577722400017 + ], + [ + 8.315561509000077, + 40.829580823000185 + ], + [ + 8.248568477000163, + 40.882669283000155 + ], + [ + 8.120919468000181, + 40.71614802400018 + ], + [ + 8.19747843100015, + 40.67369854600008 + ], + [ + 8.14481744699998, + 40.61956536600019 + ], + [ + 8.196364476000042, + 40.55887401600012 + ], + [ + 8.272668461000023, + 40.57998350400004 + ], + [ + 8.396955489000106, + 40.41557264100004 + ], + [ + 8.38247742700014, + 40.33301542100003 + ], + [ + 8.478295489000118, + 40.26176538800007 + ], + [ + 8.445162496000023, + 40.17521536500004 + ], + [ + 8.482091485000126, + 40.06756993500005 + ], + [ + 8.405076547000021, + 40.00789665200011 + ], + [ + 8.402484527000183, + 39.891966213000046 + ], + [ + 8.513745575000144, + 39.894758058000036 + ], + [ + 8.548933475000183, + 39.846636713000066 + ], + [ + 8.506854477, + 39.72151250100006 + ], + [ + 8.449195533000022, + 39.715065308000135 + ], + [ + 8.454294580000123, + 39.52098804000019 + ], + [ + 8.388760501999968, + 39.45866406400006 + ], + [ + 8.377446442000178, + 39.3484624890001 + ], + [ + 8.43538148600004, + 39.30008935200004 + ], + [ + 8.365450428999964, + 39.222759589000134 + ], + [ + 8.55033845000014, + 39.043231126000194 + ], + [ + 8.580344490000016, + 38.94060176200014 + ], + [ + 8.64782752700006, + 38.87879277000019 + ], + [ + 8.72015145000006, + 38.92345892600014 + ], + [ + 8.845418490000043, + 38.86888686900005 + ], + [ + 8.994315456000095, + 38.957332376000124 + ], + [ + 9.048111517000109, + 39.042063191000125 + ], + [ + 9.025228586000082, + 39.131070789000034 + ], + [ + 9.090742547000104, + 39.19488976100007 + ], + [ + 9.217883444999984, + 39.22088237800017 + ], + [ + 9.298135474000162, + 39.20425067100007 + ], + [ + 9.457018472000073, + 39.11112420600017 + ], + [ + 9.572969529999966, + 39.135544713 + ], + [ + 9.596144487000174, + 39.355195671000104 + ], + [ + 9.65852445400003, + 39.463478126000155 + ], + [ + 9.660410550000165, + 39.64061154500013 + ], + [ + 9.706030567000084, + 39.83843083000016 + ], + [ + 9.684044499000152, + 39.95545728600001 + ], + [ + 9.742584549000185, + 40.060280026000044 + ], + [ + 9.643833492000056, + 40.16683044400003 + ], + [ + 9.627257440999983, + 40.2449695630001 + ], + [ + 9.69385752900007, + 40.34196444400004 + ], + [ + 9.774804585000084, + 40.38837386800003 + ], + [ + 9.836651464000113, + 40.514562582 + ], + [ + 9.753636592000078, + 40.580464626000094 + ], + [ + 9.763481471999967, + 40.65640265700017 + ], + [ + 9.669564426000079, + 40.78851637100013 + ], + [ + 9.687601444000165, + 40.84028468100013 + ], + [ + 9.54449452900002, + 40.9030780440001 + ], + [ + 9.591219448000118, + 41.00481406500006 + ], + [ + 9.57271455300014, + 41.09850614000004 + ], + [ + 9.447839450000174, + 41.12638770300015 + ], + [ + 9.369299509000086, + 41.18822318200006 + ] + ] + ], + [ + [ + [ + 9.547538411000176, + 42.413289291000126 + ], + [ + 9.530044463000081, + 42.569438283000125 + ], + [ + 9.465037439000184, + 42.658235663000085 + ], + [ + 9.508728445000145, + 42.80429585800016 + ], + [ + 9.47571950400004, + 42.98049570000006 + ], + [ + 9.362332471000059, + 43.00442167500006 + ], + [ + 9.36565455400006, + 42.917725136000115 + ], + [ + 9.316007536000086, + 42.83392856800003 + ], + [ + 9.345151581000152, + 42.729658195000184 + ], + [ + 9.094448521000118, + 42.71171723400016 + ], + [ + 9.06015949700003, + 42.65740468100006 + ], + [ + 8.715910542000188, + 42.55812740800013 + ], + [ + 8.635933439000041, + 42.32596679400007 + ], + [ + 8.684455439000033, + 42.2505883390001 + ], + [ + 8.570554427000104, + 42.22660151200006 + ], + [ + 8.602639513999975, + 42.113333166000075 + ], + [ + 8.744626439, + 42.04103673600014 + ], + [ + 8.663229442000159, + 42.004393235 + ], + [ + 8.625309545000164, + 41.89852091300003 + ], + [ + 8.778593431000104, + 41.87836126200011 + ], + [ + 8.733807582000054, + 41.79729166200008 + ], + [ + 8.804901543000085, + 41.64117603300008 + ], + [ + 8.781553584000164, + 41.56368164999998 + ], + [ + 8.886352520000116, + 41.50489014300001 + ], + [ + 9.120182473000057, + 41.43909086200006 + ], + [ + 9.104061559000058, + 41.38922122000008 + ], + [ + 9.222011532000067, + 41.363655576999975 + ], + [ + 9.356115446000047, + 41.565870668000116 + ], + [ + 9.422695585000156, + 41.72105942600007 + ], + [ + 9.407787532000043, + 41.89096798000014 + ], + [ + 9.436992429000043, + 41.96210435400019 + ], + [ + 9.580432441000085, + 42.155344103000175 + ], + [ + 9.547538411000176, + 42.413289291000126 + ] + ] + ], + [ + [ + [ + 10.356473462000167, + 42.754827206000186 + ], + [ + 10.448483457000066, + 42.72944428900007 + ], + [ + 10.451371526, + 42.84461767300013 + ], + [ + 10.353186583000081, + 42.79597296300011 + ], + [ + 10.277106562000142, + 42.81467567100003 + ], + [ + 10.108312466000143, + 42.78627191600009 + ], + [ + 10.151315485000055, + 42.72194416200006 + ], + [ + 10.245689513000116, + 42.715650358000175 + ], + [ + 10.356473462000167, + 42.754827206000186 + ] + ] + ], + [ + [ + [ + 17.97130012500014, + -32.995025634999934 + ], + [ + 18.04146766700012, + -33.04628372199994 + ], + [ + 17.95211968000001, + -33.10585031999989 + ], + [ + 18.043333054000016, + -33.170028686999956 + ], + [ + 18.14232063300011, + -33.28684997599993 + ], + [ + 18.158923128000083, + -33.36426527699996 + ], + [ + 18.290670395, + -33.45935058599997 + ], + [ + 18.421533585000077, + -33.65993499799998 + ], + [ + 18.48938, + -33.87027 + ], + [ + 18.412080000000117, + -33.898799999999824 + ], + [ + 18.31137657200003, + -34.043533324999885 + ], + [ + 18.318794250000053, + -34.14519119299996 + ], + [ + 18.387742996000156, + -34.27558517499995 + ], + [ + 18.47477000000015, + -34.233851 + ], + [ + 18.42641, + -34.17718999999988 + ], + [ + 18.501905441000133, + -34.097305297999924 + ], + [ + 18.71484756500007, + -34.07220077499994 + ], + [ + 18.813380000000166, + -34.10133 + ], + [ + 18.85277, + -34.2381 + ], + [ + 18.81286031200017, + -34.31164248099992 + ], + [ + 18.831268311000088, + -34.381595611999956 + ], + [ + 19.03899002100013, + -34.3400650019999 + ], + [ + 19.12472, + -34.417259999999885 + ], + [ + 19.294921875000057, + -34.41645049999988 + ], + [ + 19.35774000000015, + -34.48547999999988 + ], + [ + 19.404449463000162, + -34.60610580399998 + ], + [ + 19.517034531000093, + -34.66960906999998 + ], + [ + 19.645610000000147, + -34.78053 + ], + [ + 19.87246322599998, + -34.765609740999935 + ], + [ + 19.987108231000093, + -34.832206725999924 + ], + [ + 20.057750702000078, + -34.75680541999992 + ], + [ + 20.234070000000145, + -34.68734 + ], + [ + 20.270551682000075, + -34.63249206499995 + ], + [ + 20.39934349100008, + -34.57089233399995 + ], + [ + 20.454811096000185, + -34.503444671999944 + ], + [ + 20.61651, + -34.45197999999982 + ], + [ + 20.84599304200009, + -34.47380065899995 + ], + [ + 20.880666733000112, + -34.38052368199993 + ], + [ + 21.09427833600006, + -34.37504959099988 + ], + [ + 21.29937, + -34.438832577999904 + ], + [ + 21.430303574000106, + -34.37307739299996 + ], + [ + 21.540023804000157, + -34.355152129999965 + ], + [ + 21.695762634000175, + -34.394611358999896 + ], + [ + 21.904342651000036, + -34.34402084399983 + ], + [ + 21.951416016000167, + -34.228046416999916 + ], + [ + 22.090095520000034, + -34.20862197899993 + ], + [ + 22.121562958000027, + -34.11615371699992 + ], + [ + 22.249368668000045, + -34.05342483499993 + ], + [ + 22.250579487000152, + -33.93951684799998 + ], + [ + 22.384000443000104, + -33.901016083999934 + ], + [ + 22.423000600000137, + -33.9480157619999 + ], + [ + 22.598070562000032, + -33.93288692999994 + ], + [ + 22.87815051600012, + -33.8580871609999 + ], + [ + 23.098524497000085, + -33.916457393999906 + ], + [ + 23.160150596000108, + -33.906585690999975 + ], + [ + 23.30392051900003, + -33.94480381699998 + ], + [ + 23.382428983000068, + -33.92450109499987 + ], + [ + 23.53700046000006, + -33.968705987999954 + ], + [ + 23.70798449600011, + -33.934550402999946 + ], + [ + 23.92283052800019, + -33.91913541199989 + ], + [ + 23.94687452000005, + -33.970842450999896 + ], + [ + 24.310927844000105, + -34.02781578299988 + ], + [ + 24.490745037000124, + -34.08720489199993 + ], + [ + 24.493511200000114, + -34.16641998299997 + ], + [ + 24.648122787000034, + -34.16998290999982 + ], + [ + 24.82723236099997, + -34.21057510399987 + ], + [ + 24.84307861300016, + -34.14149475099998 + ], + [ + 24.921972149999988, + -34.08014131599998 + ], + [ + 24.938507080000136, + -34.00170135499991 + ], + [ + 25.01470947300004, + -33.96236801099985 + ], + [ + 25.183839798000122, + -33.95659255999993 + ], + [ + 25.408071518000156, + -34.03295898399989 + ], + [ + 25.592010498000036, + -34.04970931999992 + ], + [ + 25.681768417000114, + -34.019828795999956 + ], + [ + 25.61320114100016, + -33.94995117199994 + ], + [ + 25.632576740000047, + -33.864176192999935 + ], + [ + 25.718013763000044, + -33.77531433099989 + ], + [ + 25.915822983000055, + -33.69128036499984 + ], + [ + 26.157712936000166, + -33.696273803999816 + ], + [ + 26.32990646400009, + -33.751491546999944 + ], + [ + 26.50408363300005, + -33.761718749999886 + ], + [ + 26.735059738000075, + -33.65375900299995 + ], + [ + 27.1134452820001, + -33.51981353799994 + ], + [ + 27.17264556900011, + -33.46629714999989 + ], + [ + 27.608816147000027, + -33.21809005699993 + ], + [ + 27.72726821900011, + -33.12176132199994 + ], + [ + 27.90809249900002, + -33.0391311649999 + ], + [ + 27.96688652000006, + -32.974201201999904 + ], + [ + 28.096036911000056, + -32.890960692999954 + ], + [ + 28.116903305000108, + -32.830829619999975 + ], + [ + 28.348260880000055, + -32.703769683999894 + ], + [ + 28.176179886000057, + -32.70287322999991 + ], + [ + 28.135890961000143, + -32.80305099499998 + ], + [ + 27.995456696000133, + -32.796558379999965 + ], + [ + 27.94686889600007, + -32.8410415649999 + ], + [ + 27.826925278000033, + -32.78471755999993 + ], + [ + 27.765813828000034, + -32.89205932599998 + ], + [ + 27.703741074000106, + -32.91531753499987 + ], + [ + 27.623128891000135, + -32.88071823099989 + ], + [ + 27.462511063000022, + -32.90019607499988 + ], + [ + 27.347307205000163, + -32.96468353299997 + ], + [ + 27.21154594400008, + -32.93361663799993 + ], + [ + 27.235322952000104, + -32.85541534399994 + ], + [ + 27.106060028000115, + -32.87499618499993 + ], + [ + 27.073297501000127, + -32.93493270899995 + ], + [ + 26.97377395600006, + -32.97665405299989 + ], + [ + 26.732110977000104, + -32.886230468999884 + ], + [ + 26.706850052000107, + -32.78050613399989 + ], + [ + 26.633857727000077, + -32.73476409899996 + ], + [ + 26.508434296000075, + -32.7688026429999 + ], + [ + 26.405721664, + -32.70078659099994 + ], + [ + 26.384454727000104, + -32.64818954499992 + ], + [ + 26.265756607000128, + -32.57955551099997 + ], + [ + 26.23803710900006, + -32.65710067699996 + ], + [ + 26.12201118500019, + -32.63359832799995 + ], + [ + 26.051673889000142, + -32.471290587999874 + ], + [ + 26.150175095000066, + -32.43040466299993 + ], + [ + 26.058147430000076, + -32.410476684999935 + ], + [ + 25.903541565000126, + -32.3889312739999 + ], + [ + 25.807477951000067, + -32.427345275999926 + ], + [ + 25.78728485100015, + -32.44745635999993 + ], + [ + 25.70494842500011, + -32.542507171999944 + ], + [ + 25.657806396000183, + -32.455165862999934 + ], + [ + 25.608745575000114, + -32.45172119099993 + ], + [ + 25.665311813000073, + -32.31787872299992 + ], + [ + 25.565221786000052, + -32.18080139199998 + ], + [ + 25.46768760700013, + -32.20686340299994 + ], + [ + 25.34222602800014, + -32.21533966099997 + ], + [ + 25.267490387000066, + -32.18900680499996 + ], + [ + 25.213876724000045, + -32.12009048499988 + ], + [ + 25.060819626000068, + -32.17147064199992 + ], + [ + 24.992900848000147, + -32.083099364999896 + ], + [ + 25.004936218000125, + -32.03449630699998 + ], + [ + 24.92877578700012, + -31.95834350599995 + ], + [ + 24.95812797500008, + -31.87842559799992 + ], + [ + 24.86871910100018, + -31.759523391999892 + ], + [ + 24.953153610000186, + -31.710853576999966 + ], + [ + 24.91647911100017, + -31.606994628999928 + ], + [ + 24.773849487000177, + -31.719572066999945 + ], + [ + 24.74662208600006, + -31.829912185999945 + ], + [ + 24.672927856000058, + -31.893291472999977 + ], + [ + 24.567455292000147, + -31.93611907999997 + ], + [ + 24.509071350000056, + -32.04661560099987 + ], + [ + 24.639039993000097, + -32.113220214999956 + ], + [ + 24.734994888000074, + -32.21139144899996 + ], + [ + 24.70979881300019, + -32.28734207199983 + ], + [ + 24.856891632000043, + -32.335357665999936 + ], + [ + 25.16677665700007, + -32.35554885899995 + ], + [ + 25.296495438000193, + -32.577808379999965 + ], + [ + 25.370929718000127, + -32.67047119099993 + ], + [ + 25.345390320000092, + -32.76502990699987 + ], + [ + 25.365430832000072, + -32.88137817399996 + ], + [ + 25.247371674000135, + -32.86028671299994 + ], + [ + 25.19252586400006, + -32.76493072499994 + ], + [ + 25.141975403, + -32.76839065599995 + ], + [ + 25.09358978300014, + -32.85869216899988 + ], + [ + 24.772306442000115, + -32.77899932899993 + ], + [ + 24.7246456150001, + -32.84052276599988 + ], + [ + 24.64753913900006, + -32.86371231099997 + ], + [ + 24.501258850000056, + -32.86373138399995 + ], + [ + 24.447792053000114, + -33.008819579999965 + ], + [ + 24.343069077, + -33.044342040999936 + ], + [ + 24.453468323000095, + -33.163822173999904 + ], + [ + 24.603357315000153, + -33.2224273679999 + ], + [ + 24.90964889500009, + -33.27275085399998 + ], + [ + 24.888614655000026, + -33.347732543999825 + ], + [ + 24.794858932000068, + -33.300708770999904 + ], + [ + 24.540596008000023, + -33.31033706699992 + ], + [ + 24.432519913000192, + -33.27752304099988 + ], + [ + 24.38503646900017, + -33.33288574199992 + ], + [ + 24.66020393400015, + -33.36429595899989 + ], + [ + 24.82632064800015, + -33.34632873499993 + ], + [ + 24.87133789100011, + -33.498989104999964 + ], + [ + 24.71630668600011, + -33.49513626099997 + ], + [ + 24.638523102000192, + -33.44967651399992 + ], + [ + 24.545629501000178, + -33.504402160999916 + ], + [ + 24.427320480000162, + -33.5130462649999 + ], + [ + 24.314500809000037, + -33.55559921299994 + ], + [ + 24.26692581200018, + -33.52387237499994 + ], + [ + 24.094476700000087, + -33.51345443699995 + ], + [ + 23.755382538000163, + -33.40720367399996 + ], + [ + 23.73102569600013, + -33.30643081699992 + ], + [ + 23.619224548000034, + -33.28900527999991 + ], + [ + 23.469444275, + -33.31416320799997 + ], + [ + 23.423564911000028, + -33.2741088869999 + ], + [ + 23.26101875300003, + -33.29569625899995 + ], + [ + 23.23205375700013, + -33.37007522599998 + ], + [ + 23.09763336200018, + -33.37733459499998 + ], + [ + 22.94735527000006, + -33.42018890399993 + ], + [ + 22.790967941000133, + -33.36912155199997 + ], + [ + 22.541143417000114, + -33.354709624999884 + ], + [ + 22.469375610000156, + -33.26332855199996 + ], + [ + 22.741825104000043, + -33.311889647999976 + ], + [ + 23.105014801000095, + -33.29586029099994 + ], + [ + 23.188478470000064, + -33.26594161999998 + ], + [ + 23.405790329000183, + -33.25367355299994 + ], + [ + 23.497667313000022, + -33.16268539399988 + ], + [ + 23.29010582000018, + -33.20859909099988 + ], + [ + 23.18936538700018, + -33.25928115799991 + ], + [ + 22.93528938300011, + -33.27011871299993 + ], + [ + 22.76608657800017, + -33.29518127399996 + ], + [ + 22.563146591000077, + -33.27561950699993 + ], + [ + 22.51502227800006, + -33.24422454799998 + ], + [ + 22.331651688000136, + -33.22741317699996 + ], + [ + 22.113725662000093, + -33.23246002199994 + ], + [ + 21.621520996000015, + -33.26586151099991 + ], + [ + 21.51011657700019, + -33.24668502799989 + ], + [ + 21.31609535200016, + -33.290473937999934 + ], + [ + 21.158897400000058, + -33.282535552999946 + ], + [ + 21.032999039000174, + -33.323822020999955 + ], + [ + 21.051052094000056, + -33.41241455099998 + ], + [ + 21.175798416000077, + -33.50761794999994 + ], + [ + 21.30085945100012, + -33.53819656399992 + ], + [ + 21.384115219000023, + -33.49870681799996 + ], + [ + 21.463525772000025, + -33.5947036739999 + ], + [ + 21.314737320000063, + -33.63445663499988 + ], + [ + 21.353801727000075, + -33.70846176099997 + ], + [ + 21.490705489999982, + -33.75139617899987 + ], + [ + 21.64694213900009, + -33.72224044799998 + ], + [ + 21.882310867000058, + -33.80060577399996 + ], + [ + 21.716995239000084, + -33.835494994999976 + ], + [ + 21.701110840000183, + -33.89250183099989 + ], + [ + 21.53151512100004, + -33.902854918999935 + ], + [ + 21.366086960000075, + -33.889308928999924 + ], + [ + 21.353994370000123, + -33.92144775399993 + ], + [ + 20.96149826000004, + -33.860317229999964 + ], + [ + 20.780281067000033, + -33.859863280999946 + ], + [ + 20.879774094000027, + -33.76154327399985 + ], + [ + 20.51753616299999, + -33.74137496899982 + ], + [ + 20.494213104000153, + -33.70778274499992 + ], + [ + 20.327367783, + -33.65522003199993 + ], + [ + 20.29471588100006, + -33.457103728999925 + ], + [ + 20.11121940600009, + -33.49539565999993 + ], + [ + 20.047481537000124, + -33.52682876599994 + ], + [ + 19.999961853000116, + -33.455707549999886 + ], + [ + 19.999963760000185, + -33.380264281999985 + ], + [ + 20.080169678000175, + -33.36575698899992 + ], + [ + 20.077373505000025, + -33.30126571699998 + ], + [ + 20.163486481000064, + -33.26567459099982 + ], + [ + 20.304862976000038, + -33.277462005999894 + ], + [ + 20.30585479700011, + -33.346897124999884 + ], + [ + 20.149143219000052, + -33.354030608999835 + ], + [ + 20.20590210000006, + -33.44799041699997 + ], + [ + 20.35629653900014, + -33.44476699799998 + ], + [ + 20.375938416000054, + -33.48898696899988 + ], + [ + 20.578697205000026, + -33.44971084599996 + ], + [ + 20.733739853000145, + -33.446586608999894 + ], + [ + 20.718793869000024, + -33.378211974999886 + ], + [ + 20.774442673000124, + -33.32635116599988 + ], + [ + 20.70202064500006, + -33.23990249599996 + ], + [ + 20.596204758000056, + -33.25459670999993 + ], + [ + 20.54080009500018, + -33.19686126699992 + ], + [ + 20.227928162000183, + -33.20885086099997 + ], + [ + 20.24957084700003, + -33.147842406999985 + ], + [ + 20.079662323000036, + -33.151050567999846 + ], + [ + 19.931913376000182, + -33.22156524699989 + ], + [ + 19.719419479000123, + -33.194492339999954 + ], + [ + 19.71862220800017, + -33.072147368999936 + ], + [ + 19.660753250000027, + -33.000057219999974 + ], + [ + 19.71660041800004, + -32.88457870499991 + ], + [ + 19.67565727200008, + -32.83563613899997 + ], + [ + 19.628751755000167, + -32.68989944499998 + ], + [ + 19.526540756000145, + -32.65673828099989 + ], + [ + 19.485752106000177, + -32.60216140699987 + ], + [ + 19.36886215200002, + -32.61193084699994 + ], + [ + 19.337282181000035, + -32.492229461999955 + ], + [ + 19.270242691000192, + -32.404502868999884 + ], + [ + 19.17012786900017, + -32.20737838699989 + ], + [ + 19.193439484000123, + -32.00443649299996 + ], + [ + 19.150661469000113, + -31.9255542759999 + ], + [ + 19.050392151000096, + -31.887716292999926 + ], + [ + 18.95558929400005, + -31.97097015399993 + ], + [ + 18.830379486000027, + -31.88113784799998 + ], + [ + 18.64864540100001, + -31.89979171799996 + ], + [ + 18.556119919000025, + -31.858144759999902 + ], + [ + 18.555360793999967, + -31.802097320999962 + ], + [ + 18.41419220000006, + -31.7176856989999 + ], + [ + 18.313945769999975, + -31.720170974999917 + ], + [ + 18.316616058000136, + -31.866416930999947 + ], + [ + 18.413858414000174, + -31.94471359299996 + ], + [ + 18.38426017800009, + -32.00796127299992 + ], + [ + 18.433988571000157, + -32.11434173599997 + ], + [ + 18.441696166999975, + -32.220664977999945 + ], + [ + 18.401597977000108, + -32.32061767599998 + ], + [ + 18.377857208000023, + -32.323238372999924 + ], + [ + 18.376594543000067, + -32.32386398299997 + ], + [ + 18.315616608000028, + -32.31692123399995 + ], + [ + 18.336952209000117, + -32.46677780199997 + ], + [ + 18.317098618000102, + -32.56995773299997 + ], + [ + 18.24931716900005, + -32.676956176999965 + ], + [ + 18.137210000000152, + -32.77397 + ], + [ + 18.01478795600002, + -32.740006294999944 + ], + [ + 17.89493000000016, + -32.74866999999989 + ], + [ + 17.88055, + -32.85366999999985 + ], + [ + 17.896570000000168, + -33.02917 + ], + [ + 17.933557510000014, + -33.031562804999965 + ], + [ + 17.94927414200015, + -33.01585126899994 + ], + [ + 17.970561981000174, + -32.995162963999974 + ], + [ + 17.97130012500014, + -32.995025634999934 + ] + ], + [ + [ + 19.54150581400006, + -33.757122039999956 + ], + [ + 19.52164459200003, + -33.702095031999875 + ], + [ + 19.69178390500008, + -33.67655944799998 + ], + [ + 19.737592697000082, + -33.77810287499989 + ], + [ + 19.54150581400006, + -33.757122039999956 + ] + ], + [ + [ + 19.96073150600006, + -33.637485503999926 + ], + [ + 20.055135727000163, + -33.64438247699985 + ], + [ + 20.193439484000123, + -33.74948120099998 + ], + [ + 20.107034683000165, + -33.78654098499993 + ], + [ + 19.96073150600006, + -33.637485503999926 + ] + ], + [ + [ + 21.49114608800005, + -33.307189940999876 + ], + [ + 21.68479919400005, + -33.266147613999976 + ], + [ + 22.085533141999974, + -33.245143889999895 + ], + [ + 22.076574326000184, + -33.28043746899988 + ], + [ + 21.897665024000105, + -33.27821350099998 + ], + [ + 21.49114608800005, + -33.307189940999876 + ] + ], + [ + [ + 22.205093384000122, + -33.819770812999934 + ], + [ + 22.025701523000123, + -33.72865676899983 + ], + [ + 21.962570190000065, + -33.64371490499997 + ], + [ + 21.77438736000005, + -33.66377258299997 + ], + [ + 21.688396454000156, + -33.625423430999945 + ], + [ + 21.68531990100007, + -33.50420761099991 + ], + [ + 21.914485931000172, + -33.53492355299994 + ], + [ + 22.029062270999987, + -33.51764678999996 + ], + [ + 22.13336563100006, + -33.62580490099998 + ], + [ + 22.22358131400017, + -33.540306090999934 + ], + [ + 22.41471862800006, + -33.56373596199984 + ], + [ + 22.46718025200005, + -33.526020049999886 + ], + [ + 22.686363220000146, + -33.505023955999945 + ], + [ + 22.71176338200013, + -33.48346710199996 + ], + [ + 23.00640678400015, + -33.457061767999846 + ], + [ + 23.09293174700008, + -33.40649795499996 + ], + [ + 23.238388062000126, + -33.394126891999974 + ], + [ + 23.354246140000157, + -33.49217987099996 + ], + [ + 23.27847671500018, + -33.50800704999995 + ], + [ + 23.12818527200011, + -33.48753356899982 + ], + [ + 22.962385178000034, + -33.5651893619999 + ], + [ + 22.651762009000095, + -33.58102798499982 + ], + [ + 22.491315842000063, + -33.55419540399993 + ], + [ + 22.470886230000076, + -33.59270095799991 + ], + [ + 22.550905228000033, + -33.66293716399986 + ], + [ + 22.348873138000044, + -33.796508788999915 + ], + [ + 22.205093384000122, + -33.819770812999934 + ] + ] + ], + [ + [ + [ + 17.965789374000053, + -33.02988798799993 + ], + [ + 17.960308141000155, + -33.02680986699988 + ], + [ + 17.962514877000103, + -33.02991485599995 + ], + [ + 17.96430778500013, + -33.030910491999975 + ], + [ + 17.965789374000053, + -33.02988798799993 + ] + ] + ], + [ + [ + [ + 18.663396835000015, + -31.831005095999956 + ], + [ + 18.750158310000188, + -31.86457633999987 + ], + [ + 18.871526718000155, + -31.82824325599995 + ], + [ + 19.137817383000026, + -31.90587043799991 + ], + [ + 19.216552734000118, + -31.848934173999965 + ], + [ + 19.213045120000118, + -31.638952254999936 + ], + [ + 19.181550980000054, + -31.56956863399995 + ], + [ + 19.22574234000018, + -31.53091239899993 + ], + [ + 19.11707687400019, + -31.21979713399992 + ], + [ + 19.03238868700015, + -31.1849861149999 + ], + [ + 18.980333328000086, + -31.263977050999983 + ], + [ + 19.013847351000095, + -31.317186355999866 + ], + [ + 19.028488159000176, + -31.475049972999898 + ], + [ + 18.96740531900008, + -31.54257583599997 + ], + [ + 18.98703193700004, + -31.721849441999893 + ], + [ + 18.928331375000027, + -31.803184508999948 + ], + [ + 18.827421188000187, + -31.683383941999978 + ], + [ + 18.767953873000067, + -31.752086638999913 + ], + [ + 18.68054390000009, + -31.71187400799994 + ], + [ + 18.632844925000086, + -31.795537948999936 + ], + [ + 18.663396835000015, + -31.831005095999956 + ] + ] + ], + [ + [ + [ + 18.110843658000135, + -30.20263481099994 + ], + [ + 18.0345630650001, + -30.278572082999972 + ], + [ + 18.08082771300002, + -30.404413222999892 + ], + [ + 18.15325927700013, + -30.452783584999963 + ], + [ + 18.28745842000012, + -30.331081389999895 + ], + [ + 18.306255341000053, + -30.425895690999937 + ], + [ + 18.406375885000045, + -30.3816852569999 + ], + [ + 18.225503921999973, + -30.24804496799993 + ], + [ + 18.12596893300008, + -30.267700194999975 + ], + [ + 18.110843658000135, + -30.20263481099994 + ] + ] + ], + [ + [ + [ + 16.165670486000124, + 31.25152523800017 + ], + [ + 16.03178953200012, + 31.280358985000134 + ], + [ + 15.816760523000085, + 31.36347544600011 + ], + [ + 15.654350588000057, + 31.458482139000182 + ], + [ + 15.521530447000032, + 31.62452646800017 + ], + [ + 15.407879551000178, + 31.846619074000103 + ], + [ + 15.360959501000025, + 31.99269418900019 + ], + [ + 15.36614052300007, + 32.15787099000016 + ], + [ + 15.291110587000105, + 32.31065581900009 + ], + [ + 15.221110464000162, + 32.379111828000134 + ], + [ + 15.104220465000083, + 32.41377183600002 + ], + [ + 14.869930513000043, + 32.444268720000025 + ], + [ + 14.762319449000074, + 32.43953076500014 + ], + [ + 14.643690541000126, + 32.48912816300009 + ], + [ + 14.46006047700007, + 32.52531719700016 + ], + [ + 14.189040522000028, + 32.7115713 + ], + [ + 14.035619508000138, + 32.72682971700016 + ], + [ + 13.948499515000151, + 32.77172050800016 + ], + [ + 13.78913958600009, + 32.79905959400003 + ], + [ + 13.588319579000142, + 32.79603758300016 + ], + [ + 13.38961047100014, + 32.89843661200007 + ], + [ + 13.237299556000153, + 32.907607252 + ], + [ + 12.939860513000042, + 32.81501907300003 + ], + [ + 12.758910478000075, + 32.790720774000135 + ], + [ + 12.549469516000102, + 32.797929714000134 + ], + [ + 12.313389525000048, + 32.83351642500003 + ], + [ + 12.217539445000057, + 32.87066652800013 + ], + [ + 11.891570583000089, + 33.059869720000165 + ], + [ + 11.72977252600009, + 33.08821178500017 + ], + [ + 11.754377332, + 33.01433959600013 + ], + [ + 11.654161557000066, + 32.973683471000186 + ], + [ + 11.601120191000064, + 33.00439171900007 + ], + [ + 11.601115509000067, + 32.944924430000185 + ], + [ + 11.570538099000146, + 32.88288919400014 + ], + [ + 11.587155450000068, + 32.781047220000175 + ], + [ + 11.66444797600002, + 32.770841406000045 + ], + [ + 11.802650492, + 32.75432906500009 + ], + [ + 11.89570956700004, + 32.59666496300014 + ], + [ + 12.169289522000156, + 32.415781648 + ], + [ + 12.231789518000085, + 32.341092018000154 + ], + [ + 12.174019430000158, + 32.24919601700003 + ], + [ + 12.020850543000051, + 32.177657311000075 + ], + [ + 11.795599468000148, + 32.11970215000002 + ], + [ + 11.565580431000058, + 32.08551219999998 + ], + [ + 11.110750536000012, + 31.97531481500016 + ], + [ + 10.958760480000024, + 31.92300738100016 + ], + [ + 10.93490055400008, + 31.846787886000072 + ], + [ + 11.028490538000085, + 31.816198968000094 + ], + [ + 11.169879499000047, + 31.80769150400016 + ], + [ + 11.443240519000028, + 31.821589873000164 + ], + [ + 12.079719499000134, + 31.8327483650001 + ], + [ + 12.46067046100012, + 31.78228226699997 + ], + [ + 12.68764954900007, + 31.78491200600007 + ], + [ + 13.324819532999982, + 31.84895008100017 + ], + [ + 13.646989549000068, + 31.894377482000152 + ], + [ + 13.868229548000102, + 31.90914706600006 + ], + [ + 14.144579555000064, + 31.893787396 + ], + [ + 14.448120456000026, + 31.827419821999968 + ], + [ + 14.647620480000114, + 31.640965894000033 + ], + [ + 14.749609467000084, + 31.48240207900011 + ], + [ + 14.907729544, + 31.357156497000176 + ], + [ + 15.148359568000103, + 31.285859860000073 + ], + [ + 15.909848431000114, + 31.23885666200016 + ], + [ + 16.165670486000124, + 31.25152523800017 + ] + ] + ], + [ + [ + [ + 14.393498443000112, + 35.92810200400015 + ], + [ + 14.295873578000112, + 35.95111552500015 + ], + [ + 14.304857470000059, + 35.865576695000186 + ], + [ + 14.420397479000144, + 35.80056799500011 + ], + [ + 14.51492254800013, + 35.78205672900009 + ], + [ + 14.550291497000103, + 35.86427967900016 + ], + [ + 14.393498443000112, + 35.92810200400015 + ] + ] + ], + [ + [ + [ + 15.401907445000063, + 37.96779824600014 + ], + [ + 15.565581539000107, + 38.17378033200009 + ], + [ + 15.574812529000042, + 38.26680386700019 + ], + [ + 15.498567553000044, + 38.29208754200005 + ], + [ + 15.340070457000081, + 38.21041981000013 + ], + [ + 15.211462558, + 38.19294505 + ], + [ + 15.091927566000038, + 38.11077742100019 + ], + [ + 14.92316750100008, + 38.17694651200003 + ], + [ + 14.734541487000172, + 38.15392477600017 + ], + [ + 14.638265438000076, + 38.06760726700014 + ], + [ + 14.285980585, + 38.00333131300016 + ], + [ + 13.932785458000183, + 38.027584182000055 + ], + [ + 13.869667548000109, + 37.99818549500003 + ], + [ + 13.637097562000065, + 37.99819639100002 + ], + [ + 13.546868554000184, + 38.03038105600018 + ], + [ + 13.512099581000086, + 38.100848721000034 + ], + [ + 13.376860591000025, + 38.10352975700005 + ], + [ + 13.296482498000103, + 38.21398681200003 + ], + [ + 13.15988949500013, + 38.160806654000055 + ], + [ + 13.096879543000114, + 38.18043321600004 + ], + [ + 13.047906430000182, + 38.06795142800013 + ], + [ + 12.872026441000173, + 38.02692787899997 + ], + [ + 12.794495513000186, + 38.085571027000015 + ], + [ + 12.761590508000154, + 38.16364057600009 + ], + [ + 12.610758495000141, + 38.058833594000134 + ], + [ + 12.499999524000032, + 38.01212728200011 + ], + [ + 12.418642592000026, + 37.79452637000014 + ], + [ + 12.503702481000062, + 37.65532290700003 + ], + [ + 12.592093506000026, + 37.62648429900008 + ], + [ + 12.643151534000083, + 37.56035376500017 + ], + [ + 12.857541506000075, + 37.574948334000055 + ], + [ + 12.961029512000152, + 37.55070669700007 + ], + [ + 13.004105454000182, + 37.48578198400014 + ], + [ + 13.141506472000117, + 37.48479006900004 + ], + [ + 13.25304445800009, + 37.38521691500006 + ], + [ + 13.410823559000107, + 37.29530977200005 + ], + [ + 13.542716494, + 37.272388116000116 + ], + [ + 13.64810853300014, + 37.18636414100007 + ], + [ + 13.863999537000154, + 37.08803486100015 + ], + [ + 14.07370452900011, + 37.096029688000044 + ], + [ + 14.21438957700019, + 37.06225933600007 + ], + [ + 14.38082450200011, + 36.91790653400017 + ], + [ + 14.476814560000093, + 36.78089326300005 + ], + [ + 14.69075258100014, + 36.71329472200006 + ], + [ + 14.836121435999985, + 36.72388760400008 + ], + [ + 15.126563434000047, + 36.67274458300005 + ], + [ + 15.088618558000178, + 36.7855200730001 + ], + [ + 15.139525545000026, + 36.90650479900012 + ], + [ + 15.283307538000088, + 37.0070965220001 + ], + [ + 15.288089582000168, + 37.10284669000009 + ], + [ + 15.216150557000049, + 37.12138243100014 + ], + [ + 15.187223435000021, + 37.27283034600015 + ], + [ + 15.072240487000101, + 37.3379079450001 + ], + [ + 15.071813513000166, + 37.47927712400019 + ], + [ + 15.16191545200013, + 37.5620355100001 + ], + [ + 15.200476565000088, + 37.72532453900004 + ], + [ + 15.293056530000058, + 37.861530131000166 + ], + [ + 15.401907445000063, + 37.96779824600014 + ] + ] + ], + [ + [ + [ + 13.739543530000105, + 45.948971020000045 + ], + [ + 13.627727433000075, + 45.97756219500019 + ], + [ + 13.415999552000187, + 45.79727567100019 + ], + [ + 13.397920458000158, + 45.68772855500009 + ], + [ + 13.60951657400011, + 45.75665680100008 + ], + [ + 13.72146745300006, + 45.67225656800002 + ], + [ + 13.721855535000032, + 45.533965391000095 + ], + [ + 13.544845498000143, + 45.52563428299999 + ], + [ + 13.473365465000143, + 45.485732065000036 + ], + [ + 13.567391476000068, + 45.18764795100009 + ], + [ + 13.644589475000089, + 45.05887191100004 + ], + [ + 13.868537499000126, + 44.8075978760001 + ], + [ + 13.971493590000136, + 44.801054795000084 + ], + [ + 14.01277345700015, + 44.95348691200013 + ], + [ + 14.120203472000128, + 44.96164987999998 + ], + [ + 14.124728526000126, + 45.04566085800002 + ], + [ + 14.215960513000141, + 45.1725499640001 + ], + [ + 14.299318540000058, + 45.341518068000084 + ], + [ + 14.55250247600003, + 45.26322908000009 + ], + [ + 14.732466463000094, + 45.130633910000086 + ], + [ + 14.826963537000154, + 45.09502691500012 + ], + [ + 14.903893482000058, + 44.954901778000135 + ], + [ + 14.868504584000107, + 44.795222666000086 + ], + [ + 14.879869439000117, + 44.69340098300012 + ], + [ + 14.95437550600002, + 44.593020819000174 + ], + [ + 15.215555441000163, + 44.41284510500009 + ], + [ + 15.314318567999976, + 44.284061521000126 + ], + [ + 15.181745526000043, + 44.29451727400004 + ], + [ + 15.132247538000115, + 44.183475665 + ], + [ + 15.282816526000147, + 44.04629592900011 + ], + [ + 15.450669502000096, + 43.92023126700008 + ], + [ + 15.6615794760001, + 43.814228355000125 + ], + [ + 15.709150465, + 43.760239678000175 + ], + [ + 15.858601475000057, + 43.73124064000007 + ], + [ + 15.942802554000082, + 43.66254591400008 + ], + [ + 15.91895352500012, + 43.574029328999984 + ], + [ + 15.990936471000055, + 43.48761961800017 + ], + [ + 16.15020554000006, + 43.466569642000024 + ], + [ + 16.172288502000015, + 43.50184454600014 + ], + [ + 16.333271502000173, + 43.54165825100017 + ], + [ + 16.514757476000113, + 43.49558041500012 + ], + [ + 16.635234593000177, + 43.42751181700004 + ], + [ + 16.821403536000048, + 43.38638902600019 + ], + [ + 16.88222648100009, + 43.39593383500011 + ], + [ + 17.17319653900006, + 43.168673785000124 + ], + [ + 17.298732471000108, + 43.118625106000025 + ], + [ + 17.484487515000126, + 43.00607659800011 + ], + [ + 17.442216572000177, + 42.95072200700014 + ], + [ + 17.268199544000026, + 43.01304665300012 + ], + [ + 17.208509497000136, + 42.97576193600008 + ], + [ + 17.438383527000042, + 42.86702048900008 + ], + [ + 17.656290547000083, + 42.80402881000009 + ], + [ + 17.887689580000085, + 42.763422177000166 + ], + [ + 18.311912452000172, + 42.49973957300017 + ], + [ + 18.468498474000114, + 42.43292222600013 + ], + [ + 18.58863059200013, + 42.41453920400005 + ], + [ + 18.794372453000165, + 42.24435119700007 + ], + [ + 18.9144014740001, + 42.20173374600006 + ], + [ + 19.0991845530001, + 42.099783484000056 + ], + [ + 19.178199581000115, + 41.919898789000115 + ], + [ + 19.607633482000153, + 41.79324789700007 + ], + [ + 19.565877523000154, + 41.56757269700017 + ], + [ + 19.532527439000148, + 41.47618463900011 + ], + [ + 19.425716511000132, + 41.314636867000104 + ], + [ + 19.521429464, + 41.23981664600018 + ], + [ + 19.454837590000068, + 41.12991983700016 + ], + [ + 19.445524457000033, + 41.01743402600016 + ], + [ + 19.540933482000128, + 40.91972483900014 + ], + [ + 19.453323483000133, + 40.88025026600013 + ], + [ + 19.359878506000143, + 40.786833285000114 + ], + [ + 19.38392450900011, + 40.715950044000124 + ], + [ + 19.346574581000084, + 40.60135752500008 + ], + [ + 19.463878478000083, + 40.58011778200017 + ], + [ + 19.490386582000156, + 40.343891276000136 + ], + [ + 19.39223650800011, + 40.296676853000065 + ], + [ + 19.50186157500019, + 40.20193704000002 + ], + [ + 19.83199456700015, + 40.05430993200008 + ], + [ + 20.015388597000026, + 39.85438762700011 + ], + [ + 19.97871743500008, + 39.70468566200003 + ], + [ + 20.17725354100014, + 39.611159046000125 + ], + [ + 20.135339499000168, + 39.53686789100004 + ], + [ + 20.20590758000003, + 39.48241485700015 + ], + [ + 20.21948844200017, + 39.40613266500009 + ], + [ + 20.337352586000065, + 39.292364590000034 + ], + [ + 20.460588523000126, + 39.282362465000176 + ], + [ + 20.47648044400006, + 39.226036578000105 + ], + [ + 20.677148570000156, + 39.07903878400015 + ], + [ + 20.9421845170001, + 39.03310344000016 + ], + [ + 21.086421480000126, + 39.04120522000011 + ], + [ + 21.144214535000117, + 38.98528317300003 + ], + [ + 21.062271541000086, + 38.88222281200012 + ], + [ + 20.964628571000162, + 38.94802863100011 + ], + [ + 20.85045850000006, + 38.92615605500009 + ], + [ + 20.74195459600014, + 38.86863893200007 + ], + [ + 20.772058536000145, + 38.76182146700012 + ], + [ + 20.87092945500018, + 38.78676919600008 + ], + [ + 20.897003544000086, + 38.69406953700013 + ], + [ + 20.97375244, + 38.66570400400019 + ], + [ + 21.071165578000148, + 38.542693036 + ], + [ + 21.122266521000086, + 38.42966910700011 + ], + [ + 21.096191594000118, + 38.34789945000017 + ], + [ + 21.148700529, + 38.30915812600011 + ], + [ + 21.37736656000004, + 38.403581607000035 + ], + [ + 21.483180544000163, + 38.370619102000035 + ], + [ + 21.506263467000053, + 38.30353135500002 + ], + [ + 21.63887556900005, + 38.35583342500013 + ], + [ + 21.751243530000067, + 38.34251240100019 + ], + [ + 21.837064496000096, + 38.394410631000085 + ], + [ + 21.940460469000072, + 38.41060027700007 + ], + [ + 22.174806579000176, + 38.34003370500011 + ], + [ + 22.34728049800009, + 38.34763558800017 + ], + [ + 22.450763474999974, + 38.42437526500015 + ], + [ + 22.531711537000092, + 38.34319955000012 + ], + [ + 22.636415590000126, + 38.38632779400007 + ], + [ + 22.773700603000123, + 38.24433231900019 + ], + [ + 22.944814474000168, + 38.176519538000036 + ], + [ + 23.166406513000027, + 38.16026451300007 + ], + [ + 23.20418743900018, + 38.08082502500008 + ], + [ + 23.05471044500007, + 38.05302074400004 + ], + [ + 22.952293478000115, + 38.07705601900017 + ], + [ + 22.871776581000063, + 38.044082785000114 + ], + [ + 23.011495531000094, + 37.92836189400015 + ], + [ + 23.09172643800008, + 37.90875109100011 + ], + [ + 23.258600575000173, + 37.968370227000094 + ], + [ + 23.370738537000022, + 37.96945702500017 + ], + [ + 23.552299445000187, + 38.04053472500016 + ], + [ + 23.56692150700013, + 37.95411143600012 + ], + [ + 23.677444445000162, + 37.928171961000146 + ], + [ + 23.792392524000093, + 37.797886172000176 + ], + [ + 23.888719534000074, + 37.78658032600015 + ], + [ + 23.935228536000125, + 37.67019173299997 + ], + [ + 24.02671248300004, + 37.644588204000115 + ], + [ + 24.08116752900014, + 37.76175480500012 + ], + [ + 24.028438484000162, + 38.00352962900007 + ], + [ + 23.987829505000036, + 38.10536053200008 + ], + [ + 24.06196056500005, + 38.19029016600007 + ], + [ + 23.948781570000108, + 38.27497052299998 + ], + [ + 23.63826558500017, + 38.36200904300006 + ], + [ + 23.57143348600016, + 38.4474226480001 + ], + [ + 23.40391343900012, + 38.49325891800004 + ], + [ + 23.319257558000118, + 38.58005369300014 + ], + [ + 23.33351148800017, + 38.6349305170001 + ], + [ + 23.230464537000103, + 38.664014212000154 + ], + [ + 23.094884571000023, + 38.64437641900008 + ], + [ + 23.03972058400018, + 38.759562544000175 + ], + [ + 22.760747545000072, + 38.79802206800019 + ], + [ + 22.59850658800002, + 38.85665297800011 + ], + [ + 22.582096498000112, + 38.91049614500008 + ], + [ + 22.74017751600013, + 38.89397139000016 + ], + [ + 22.913375464000183, + 38.93211776700008 + ], + [ + 23.007575483000096, + 38.98855597100015 + ], + [ + 22.998226475000024, + 39.076612558000136 + ], + [ + 22.872266587000126, + 39.19564078000013 + ], + [ + 22.812223494000136, + 39.28123744600009 + ], + [ + 22.92505246100012, + 39.29718250800005 + ], + [ + 22.95546351400003, + 39.35164459400005 + ], + [ + 23.120590527000104, + 39.30384327100006 + ], + [ + 23.213800476000188, + 39.188392948000114 + ], + [ + 23.346090545000095, + 39.19371093000012 + ], + [ + 23.26219758500008, + 39.33666781000005 + ], + [ + 23.210809477000055, + 39.36501440000012 + ], + [ + 23.073110566000082, + 39.52948712200015 + ], + [ + 22.899385564000113, + 39.62130165100007 + ], + [ + 22.826118510000185, + 39.809333220999974 + ], + [ + 22.70664956800016, + 39.88977199900006 + ], + [ + 22.6824225150001, + 39.97146705600005 + ], + [ + 22.62086447700011, + 40.00281151900009 + ], + [ + 22.56426047900004, + 40.181410429000096 + ], + [ + 22.65960345400009, + 40.365951104000146 + ], + [ + 22.607690472000172, + 40.46644811100009 + ], + [ + 22.65741158600008, + 40.542448168000135 + ], + [ + 22.949344557000074, + 40.61765311800008 + ], + [ + 22.959554553000032, + 40.54011297 + ], + [ + 22.825939473000176, + 40.51706122800016 + ], + [ + 22.90485945000006, + 40.42431563700012 + ], + [ + 23.038646527000026, + 40.331821670000124 + ], + [ + 23.297477518000107, + 40.240033628 + ], + [ + 23.315521576000094, + 40.10780240000008 + ], + [ + 23.387535536000087, + 40.00627961499998 + ], + [ + 23.587329598000167, + 39.93851662100019 + ], + [ + 23.657026464000182, + 39.99431662700016 + ], + [ + 23.493034528000123, + 40.04382316500005 + ], + [ + 23.364368458000115, + 40.179716279000104 + ], + [ + 23.425447554000073, + 40.283635282000034 + ], + [ + 23.540449445000093, + 40.23687465600011 + ], + [ + 23.669208554000022, + 40.22863591600003 + ], + [ + 23.77264258000008, + 40.12665095300008 + ], + [ + 23.817604450000033, + 40.03245227499997 + ], + [ + 23.98589848200004, + 39.95648742200018 + ], + [ + 24.023925500000132, + 40.02755724400009 + ], + [ + 23.922933457000056, + 40.157385716000135 + ], + [ + 23.776374539000017, + 40.203813245000106 + ], + [ + 23.711755598000025, + 40.333999456000186 + ], + [ + 23.855630463000125, + 40.37653308900002 + ], + [ + 23.950008513000114, + 40.368240201000106 + ], + [ + 24.030504456000187, + 40.307914974000084 + ], + [ + 24.138231525000094, + 40.2903449960001 + ], + [ + 24.21258554500008, + 40.23775257700004 + ], + [ + 24.308797555000126, + 40.11927722500013 + ], + [ + 24.38808449200019, + 40.18757816900012 + ], + [ + 24.162992506000023, + 40.36765330100019 + ], + [ + 23.930957453000133, + 40.38994597800007 + ], + [ + 23.831590494000125, + 40.49859874500015 + ], + [ + 23.706584466000095, + 40.69487341299998 + ], + [ + 23.85530658600004, + 40.7773424560001 + ], + [ + 24.06248845700003, + 40.71039904500009 + ], + [ + 24.154396529000167, + 40.73164281100014 + ], + [ + 24.320886439000105, + 40.81659893200009 + ], + [ + 24.31959545800015, + 40.86819658600001 + ], + [ + 24.434558457000094, + 40.93217196500012 + ], + [ + 24.51721559000015, + 40.94489368300003 + ], + [ + 24.61142952300014, + 40.85873945300011 + ], + [ + 24.80822554500014, + 40.84327886500006 + ], + [ + 25.067998495000097, + 40.99551032000005 + ], + [ + 25.26763950300017, + 40.92663672400016 + ], + [ + 25.561054562000038, + 40.848394675 + ], + [ + 25.923765496000044, + 40.83536400100013 + ], + [ + 26.046785516000057, + 40.772959558000025 + ], + [ + 26.06442858400004, + 40.633335995000095 + ], + [ + 26.115070534000097, + 40.58738455700018 + ], + [ + 26.306322598000065, + 40.57798458800005 + ], + [ + 26.79411851800006, + 40.643276932000106 + ], + [ + 26.841340484000114, + 40.58375670200013 + ], + [ + 26.69566149800005, + 40.496507795000184 + ], + [ + 26.60221853300004, + 40.490945732000114 + ], + [ + 26.33109246300006, + 40.35656722800019 + ], + [ + 26.233703466000065, + 40.32140782600004 + ], + [ + 26.27751751700015, + 40.19434923800014 + ], + [ + 26.217802492000146, + 40.12715805800019 + ], + [ + 26.190835563000064, + 40.03027717100014 + ], + [ + 26.33394449000002, + 40.088610524000046 + ], + [ + 26.344421533000116, + 40.19225527100019 + ], + [ + 26.59728645300015, + 40.33189761 + ], + [ + 26.638801517000047, + 40.404860569000164 + ], + [ + 26.763578551000137, + 40.471109958000056 + ], + [ + 26.98089950800005, + 40.55256395200013 + ], + [ + 27.031042567000156, + 40.6577457730001 + ], + [ + 26.89934744500016, + 40.677501583000094 + ], + [ + 26.87300848800004, + 40.802607356000124 + ], + [ + 26.47792446400001, + 40.822362831000135 + ], + [ + 26.319890553000107, + 40.94088461800004 + ], + [ + 26.1091785590001, + 41.00673318500003 + ], + [ + 25.924806529000136, + 40.9935652150001 + ], + [ + 25.766773455000134, + 41.15817959100019 + ], + [ + 25.64472054000015, + 41.22598902000004 + ], + [ + 25.32559751300016, + 41.19110337200016 + ], + [ + 25.13463948600014, + 41.204272012000104 + ], + [ + 24.818572502000166, + 41.184519219000094 + ], + [ + 24.640785462000167, + 41.21744400500012 + ], + [ + 24.634201477000147, + 41.10550201200016 + ], + [ + 24.581521551000037, + 41.08575022500003 + ], + [ + 24.37739555400009, + 41.08575022500003 + ], + [ + 24.14034644700007, + 41.184519219000094 + ], + [ + 24.008651493000116, + 41.184519219000094 + ], + [ + 23.844032591000087, + 41.07257823100019 + ], + [ + 23.653076576000046, + 41.10550201200016 + ], + [ + 23.534551603000068, + 41.184519219000094 + ], + [ + 23.020334583000135, + 41.45112559900008 + ], + [ + 22.84117559400005, + 41.52244922500017 + ], + [ + 22.63349952500016, + 41.66534173100007 + ], + [ + 22.457714587000112, + 41.73933935100007 + ], + [ + 22.270282491000046, + 41.731046296000045 + ], + [ + 22.263698507000072, + 41.55325976000012 + ], + [ + 22.322959567999987, + 41.40839800900005 + ], + [ + 22.4744094940001, + 41.14501061500016 + ], + [ + 22.500747446000048, + 41.05282543800013 + ], + [ + 22.48099347900012, + 40.69067039200013 + ], + [ + 22.487579476000178, + 40.47337592200017 + ], + [ + 22.375253591000103, + 40.49100373500005 + ], + [ + 22.208061445000112, + 40.463839160000134 + ], + [ + 22.180206537000174, + 40.54900901900004 + ], + [ + 22.089048478000052, + 40.62654916800017 + ], + [ + 22.036685555000133, + 40.722781966000184 + ], + [ + 22.077402494000125, + 40.86445859300011 + ], + [ + 21.828659459, + 40.82632294500007 + ], + [ + 21.632734484000025, + 40.72322402700007 + ], + [ + 21.46727353500006, + 40.71770001800013 + ], + [ + 21.357833540000172, + 40.801821133000146 + ], + [ + 21.332822444000044, + 40.988015390000044 + ], + [ + 21.140260456000078, + 41.080894253000054 + ], + [ + 21.12446056800019, + 41.161375611000096 + ], + [ + 20.974332468000057, + 41.35406567400008 + ], + [ + 20.62845457400016, + 41.551096726000026 + ], + [ + 20.518333466000172, + 41.63936822400012 + ], + [ + 20.464818534000074, + 41.71886252900015 + ], + [ + 20.407773480000117, + 41.89470681200004 + ], + [ + 20.494113453000182, + 42.21961368700016 + ], + [ + 20.466472451000016, + 42.319397897000044 + ], + [ + 20.389574525000057, + 42.396297165000135 + ], + [ + 20.224065464000148, + 42.45802300900016 + ], + [ + 20.192884449000076, + 42.38858028200019 + ], + [ + 20.095458571000165, + 42.367569533000164 + ], + [ + 20.017137565000155, + 42.273965132000114 + ], + [ + 19.88341553099997, + 42.23193843700011 + ], + [ + 19.835657459000174, + 42.117319264 + ], + [ + 19.719123523000178, + 42.096075498000175 + ], + [ + 19.609758462000116, + 42.14699019500017 + ], + [ + 19.58141153600019, + 42.30189581300016 + ], + [ + 19.493204578000075, + 42.32527562300015 + ], + [ + 19.372501484000054, + 42.44194383600018 + ], + [ + 19.40497348000008, + 42.54213239000006 + ], + [ + 19.282680507000066, + 42.51948834300015 + ], + [ + 19.01851057900012, + 42.660932624 + ], + [ + 19.046035575000076, + 42.764886999000055 + ], + [ + 18.95182650400011, + 42.83051076300018 + ], + [ + 18.79510855100017, + 42.753514935000055 + ], + [ + 18.56780659200018, + 42.76445197800018 + ], + [ + 18.482126442000038, + 42.812356734000105 + ], + [ + 18.478618448000077, + 43.03258151700015 + ], + [ + 18.38682755600007, + 43.019519494 + ], + [ + 18.17096153000017, + 43.10206615300012 + ], + [ + 18.038150442000017, + 43.10432809400015 + ], + [ + 17.899421561999986, + 43.299468188000105 + ], + [ + 17.878328503000148, + 43.42248787200009 + ], + [ + 17.714986500000123, + 43.35723408500013 + ], + [ + 17.625749574000054, + 43.395892092999986 + ], + [ + 17.414356466000186, + 43.42504686700016 + ], + [ + 17.254196569000044, + 43.473821497000074 + ], + [ + 17.20490846399997, + 43.61671215900003 + ], + [ + 17.074893579000047, + 43.71438362700002 + ], + [ + 17.075672593000036, + 43.78004158900018 + ], + [ + 16.908025476000148, + 43.910309273000166 + ], + [ + 16.811471484000037, + 43.83575945200016 + ], + [ + 16.974660433000167, + 43.70333577600013 + ], + [ + 16.949495445000082, + 43.65239895000019 + ], + [ + 16.991468496000095, + 43.54501134700013 + ], + [ + 16.875474523000094, + 43.49809045900014 + ], + [ + 16.77537347700013, + 43.68799387500002 + ], + [ + 16.61548045900014, + 43.82258662100014 + ], + [ + 16.52696756199998, + 43.86800832200004 + ], + [ + 16.424900456000103, + 43.96968499800016 + ], + [ + 16.29430956599998, + 44.01545387800007 + ], + [ + 16.035474551999982, + 44.16263154800015 + ], + [ + 15.936884595000095, + 44.127700637000146 + ], + [ + 15.873754447000067, + 44.19639167500003 + ], + [ + 15.573190463000117, + 44.26098245300017 + ], + [ + 15.305482534000078, + 44.379241384000125 + ], + [ + 15.013051510000139, + 44.590190083000095 + ], + [ + 14.928945482000074, + 44.69196281600006 + ], + [ + 14.911010556000065, + 44.786200721000114 + ], + [ + 14.945366469000078, + 44.98762489500007 + ], + [ + 14.851340458000152, + 45.11040787500019 + ], + [ + 14.56369449600004, + 45.31747407600005 + ], + [ + 14.314125508000018, + 45.417449058000045 + ], + [ + 14.17480151300009, + 45.22120188300005 + ], + [ + 14.11271943800017, + 45.310370916000124 + ], + [ + 13.94648651700004, + 45.41445521000014 + ], + [ + 13.91897157800014, + 45.568462455000144 + ], + [ + 14.10479753400017, + 45.55483918000016 + ], + [ + 14.322111449999966, + 45.47430702800017 + ], + [ + 14.36136859600009, + 45.52385329599997 + ], + [ + 14.229548584000042, + 45.585845349000124 + ], + [ + 14.174558438000133, + 45.65814529900018 + ], + [ + 14.052142586000173, + 45.691490354 + ], + [ + 13.902859549000084, + 45.924752181000144 + ], + [ + 13.739543530000105, + 45.948971020000045 + ] + ], + [ + [ + 16.588991466000152, + 43.74226854200003 + ], + [ + 16.46599558600019, + 43.69657694400013 + ], + [ + 16.28194659400009, + 43.85729641700004 + ], + [ + 16.367818522000107, + 43.92102520100019 + ], + [ + 16.494239582000148, + 43.84116024800011 + ], + [ + 16.588991466000152, + 43.74226854200003 + ] + ], + [ + [ + 17.020767439000167, + 43.37666618600008 + ], + [ + 17.175638522999975, + 43.34084612300006 + ], + [ + 17.263895437000144, + 43.23985156599997 + ], + [ + 17.18907555200002, + 43.195120701000064 + ], + [ + 17.030033464999974, + 43.29432924300005 + ], + [ + 17.020767439000167, + 43.37666618600008 + ] + ] + ], + [ + [ + [ + 17.09963746, + 42.95710398800014 + ], + [ + 16.9814105480001, + 42.97658587800004 + ], + [ + 16.826387583999974, + 42.9524351 + ], + [ + 16.699987478000082, + 42.98333783600003 + ], + [ + 16.68545543700003, + 42.91122111400006 + ], + [ + 16.76258856000004, + 42.89487120600012 + ], + [ + 17.01790652799997, + 42.91781716899999 + ], + [ + 17.09963746, + 42.95710398800014 + ] + ] + ], + [ + [ + [ + 16.08042150200015, + 43.00334963000006 + ], + [ + 16.215356564000103, + 43.019916629000136 + ], + [ + 16.14583756200011, + 43.083965266 + ], + [ + 16.08042150200015, + 43.00334963000006 + ] + ] + ], + [ + [ + [ + 16.701248451000026, + 43.15861885400017 + ], + [ + 16.651334553000027, + 43.214243678 + ], + [ + 16.468116543000065, + 43.21399976499998 + ], + [ + 16.384277561999966, + 43.179488787000025 + ], + [ + 16.60644543800015, + 43.118648072000155 + ], + [ + 16.701248451000026, + 43.15861885400017 + ] + ] + ], + [ + [ + [ + 16.804872579000175, + 43.34610224700009 + ], + [ + 16.561265471000183, + 43.37750907100008 + ], + [ + 16.47353946700008, + 43.370843949000175 + ], + [ + 16.41020345900006, + 43.303797441000086 + ], + [ + 16.50451244300001, + 43.26159942000015 + ], + [ + 16.639938517000132, + 43.249754617 + ], + [ + 16.854015510000124, + 43.269148329000075 + ], + [ + 16.804872579000175, + 43.34610224700009 + ] + ] + ], + [ + [ + [ + 15.031110488000081, + 44.486064214000066 + ], + [ + 14.924128570000107, + 44.587706860000026 + ], + [ + 14.885586568000065, + 44.50628220300001 + ], + [ + 15.016849518000129, + 44.38845024600005 + ], + [ + 15.146049515000186, + 44.39797225600006 + ], + [ + 15.031110488000081, + 44.486064214000066 + ] + ] + ], + [ + [ + [ + 14.452132538, + 44.79592473500014 + ], + [ + 14.4290445850001, + 44.871908866000126 + ], + [ + 14.306514572000026, + 44.880556811000076 + ], + [ + 14.320468597000058, + 44.80146282599998 + ], + [ + 14.453619487000026, + 44.608538907000025 + ], + [ + 14.481704563000164, + 44.6737018340001 + ], + [ + 14.452132538, + 44.79592473500014 + ] + ] + ], + [ + [ + [ + 14.773391441000115, + 45.0062518310001 + ], + [ + 14.573464442000159, + 45.22834276100008 + ], + [ + 14.529921461000129, + 45.15851195200014 + ], + [ + 14.425179522000121, + 45.08174780100012 + ], + [ + 14.518852487000174, + 45.01709667300014 + ], + [ + 14.710270513000125, + 44.93825481500005 + ], + [ + 14.773391441000115, + 45.0062518310001 + ] + ] + ], + [ + [ + [ + 19.333095551000042, + -32.27321624799998 + ], + [ + 19.237966537000034, + -32.28432846099997 + ], + [ + 19.27190589900016, + -32.38610839799992 + ], + [ + 19.385868073000154, + -32.5574913019999 + ], + [ + 19.47342872600018, + -32.5211257929999 + ], + [ + 19.333095551000042, + -32.27321624799998 + ] + ] + ], + [ + [ + [ + 19.909875870000064, + -31.192665099999886 + ], + [ + 19.861879349000105, + -31.266113280999946 + ], + [ + 19.757253647000084, + -31.26238059999997 + ], + [ + 19.75813674900013, + -31.351085662999935 + ], + [ + 19.71991539000004, + -31.417367934999902 + ], + [ + 19.944129944000053, + -31.44419288599994 + ], + [ + 19.851665497000056, + -31.34125900299989 + ], + [ + 19.93358802800003, + -31.269027709999932 + ], + [ + 19.909875870000064, + -31.192665099999886 + ] + ] + ], + [ + [ + [ + 19.71710777300018, + -31.20516776999989 + ], + [ + 19.638288498000065, + -31.185636519999832 + ], + [ + 19.529943466000134, + -31.251785277999943 + ], + [ + 19.518875122000054, + -31.307529448999958 + ], + [ + 19.605848312000035, + -31.363735198999905 + ], + [ + 19.71710777300018, + -31.20516776999989 + ] + ] + ], + [ + [ + [ + 19.64448356600019, + -31.16050529499995 + ], + [ + 19.5012569430001, + -31.141605376999962 + ], + [ + 19.50201797500017, + -31.222633361999954 + ], + [ + 19.598888397000167, + -31.20551490799994 + ], + [ + 19.64448356600019, + -31.16050529499995 + ] + ] + ], + [ + [ + [ + 19.921651594000082, + 39.74561315500017 + ], + [ + 19.949523602000113, + 39.792350479000106 + ], + [ + 19.83518958100018, + 39.82939782100016 + ], + [ + 19.663923494000187, + 39.80514428100014 + ], + [ + 19.63124446500018, + 39.747848943000065 + ], + [ + 19.72052950400007, + 39.640435357000115 + ], + [ + 19.92327651000005, + 39.487319779000075 + ], + [ + 19.90792656300016, + 39.61598769200015 + ], + [ + 19.83932655300015, + 39.709316495999985 + ], + [ + 19.921651594000082, + 39.74561315500017 + ] + ] + ], + [ + [ + [ + 20.71776390100007, + -33.55544662499989 + ], + [ + 20.736703873000067, + -33.47013091999992 + ], + [ + 20.539266586000053, + -33.48814392099996 + ], + [ + 20.54500007600018, + -33.562980651999965 + ], + [ + 20.71776390100007, + -33.55544662499989 + ] + ] + ], + [ + [ + [ + 20.239559174000078, + -32.058818816999974 + ], + [ + 20.16970443700012, + -32.08549880999993 + ], + [ + 20.184812546000046, + -32.208587645999955 + ], + [ + 20.239837646000012, + -32.22241592399996 + ], + [ + 20.25284576400003, + -32.31094741799984 + ], + [ + 20.342506409000066, + -32.335716247999926 + ], + [ + 20.394300461000057, + -32.51247405999993 + ], + [ + 20.538885117000177, + -32.53256988499987 + ], + [ + 20.694234848000065, + -32.686393737999936 + ], + [ + 20.616758347000086, + -32.75159454299995 + ], + [ + 20.594808578000027, + -32.85573959399994 + ], + [ + 20.428194046000044, + -32.9094924929999 + ], + [ + 20.38249397300001, + -33.00874710099998 + ], + [ + 20.534288406000087, + -33.05496215799997 + ], + [ + 20.700927734000174, + -32.96509551999992 + ], + [ + 20.6536636350001, + -32.88628387499995 + ], + [ + 20.719886780000138, + -32.83242416399992 + ], + [ + 20.94455337500017, + -32.808521270999904 + ], + [ + 21.175184250000086, + -32.71917724599996 + ], + [ + 21.16974258400012, + -32.56161498999995 + ], + [ + 21.027032852000048, + -32.48494720499997 + ], + [ + 21.01212501499998, + -32.56552886999998 + ], + [ + 20.88950729400017, + -32.58679580699993 + ], + [ + 20.821418762000178, + -32.511199950999924 + ], + [ + 20.807518005000134, + -32.42715835599995 + ], + [ + 20.855806351000126, + -32.35991668699995 + ], + [ + 20.76759338400018, + -32.25504302999991 + ], + [ + 20.663455963000104, + -32.337039947999926 + ], + [ + 20.558116913000163, + -32.330196380999894 + ], + [ + 20.48040962200008, + -32.261466979999966 + ], + [ + 20.422035216999973, + -32.26576614399994 + ], + [ + 20.372470856000177, + -32.18447494499998 + ], + [ + 20.291774750000172, + -32.17390441899994 + ], + [ + 20.28309822100016, + -32.077007293999884 + ], + [ + 20.239559174000078, + -32.058818816999974 + ] + ] + ], + [ + [ + [ + 23.170919497000057, + 32.30583823600017 + ], + [ + 23.087390479000078, + 32.36119148700004 + ], + [ + 23.154909558999975, + 32.46782002400016 + ], + [ + 23.107980457000167, + 32.51545655899997 + ], + [ + 23.111040522000167, + 32.63371264000011 + ], + [ + 22.86725957300007, + 32.691152146000036 + ], + [ + 22.80372055600003, + 32.72005110400016 + ], + [ + 22.490539461000026, + 32.80798950600007 + ], + [ + 22.376480534000052, + 32.86701570700012 + ], + [ + 22.211320495999985, + 32.87387830600011 + ], + [ + 22.115049477000127, + 32.92778567800019 + ], + [ + 21.928199587999984, + 32.89223785900015 + ], + [ + 21.707979499000146, + 32.936635292000176 + ], + [ + 21.631389523000053, + 32.92328476400007 + ], + [ + 21.44054951300012, + 32.79443982400005 + ], + [ + 21.367719492000163, + 32.77323059200006 + ], + [ + 21.07980950000018, + 32.76253092500019 + ], + [ + 20.90007048200016, + 32.68013229000002 + ], + [ + 20.575710443000162, + 32.55064630300018 + ], + [ + 20.37336945600009, + 32.41956239000001 + ], + [ + 20.100530461000062, + 32.18616008099997 + ], + [ + 20.034620538000127, + 32.062120990000096 + ], + [ + 19.953710529999967, + 31.985694629000136 + ], + [ + 19.924949538000078, + 31.827808742 + ], + [ + 19.99361056800018, + 31.47670037299997 + ], + [ + 20.09700955800014, + 31.323196545000144 + ], + [ + 20.17395056800018, + 31.170121871000106 + ], + [ + 20.129329505999976, + 30.982245367000075 + ], + [ + 20.464603455000145, + 31.337246290999985 + ], + [ + 20.510520526000107, + 31.458832 + ], + [ + 20.596679450000067, + 31.580147978000184 + ], + [ + 20.775770546000103, + 31.789210916000116 + ], + [ + 20.880340488000172, + 31.885027637000064 + ], + [ + 21.0585305300001, + 31.98376444400003 + ], + [ + 21.39232054500019, + 32.11945019000018 + ], + [ + 21.561239532000172, + 32.15894990900017 + ], + [ + 21.98685044700005, + 32.17995730500013 + ], + [ + 22.027221548000057, + 32.217512087000046 + ], + [ + 22.14583251900018, + 32.17111858800007 + ], + [ + 22.592840589000105, + 32.186506924000184 + ], + [ + 22.648586448000117, + 32.17984314400019 + ], + [ + 22.851409562000185, + 32.2341434600001 + ], + [ + 22.99945258000014, + 32.29422259500018 + ], + [ + 23.170919497000057, + 32.30583823600017 + ] + ] + ], + [ + [ + [ + 20.956544561000044, + 37.743765229000076 + ], + [ + 20.904787482000188, + 37.810048146000156 + ], + [ + 20.75309146300009, + 37.85039929800013 + ], + [ + 20.691377522000096, + 37.93189469900011 + ], + [ + 20.61760151800013, + 37.81413700600007 + ], + [ + 20.813030453000067, + 37.648707909 + ], + [ + 20.865537544000176, + 37.725511623000045 + ], + [ + 20.956544561000044, + 37.743765229000076 + ] + ] + ], + [ + [ + [ + 20.692647547000092, + 38.25894901800018 + ], + [ + 20.39518755, + 38.342550623000136 + ], + [ + 20.331085437000127, + 38.170205450000026 + ], + [ + 20.372905601000184, + 38.14526191200014 + ], + [ + 20.486824550000108, + 38.18959916200009 + ], + [ + 20.491125473000068, + 38.112341652 + ], + [ + 20.619438496000043, + 38.11353154700015 + ], + [ + 20.699089543000014, + 38.06629549900015 + ], + [ + 20.803100580000148, + 38.10176385800003 + ], + [ + 20.692647547000092, + 38.25894901800018 + ] + ] + ], + [ + [ + [ + 20.64434046000008, + 38.598722371000065 + ], + [ + 20.708280467000066, + 38.642148509000094 + ], + [ + 20.72068551700005, + 38.742175794000104 + ], + [ + 20.677040444000113, + 38.85116719000007 + ], + [ + 20.597631466000166, + 38.77826223400001 + ], + [ + 20.554744453000012, + 38.59258145400008 + ], + [ + 20.64434046000008, + 38.598722371000065 + ] + ] + ], + [ + [ + [ + 21.4295177460001, + -32.10266494799998 + ], + [ + 21.472967148000123, + -32.16114425699993 + ], + [ + 21.382780075000028, + -32.21820449799992 + ], + [ + 21.459085464000168, + -32.27384185799997 + ], + [ + 21.343133926, + -32.35902023299997 + ], + [ + 21.195178986000144, + -32.27476501499996 + ], + [ + 21.103956223000125, + -32.2734031679999 + ], + [ + 21.04902839700003, + -32.33573913599997 + ], + [ + 21.135583878000034, + -32.371158599999944 + ], + [ + 21.168451309000147, + -32.45848083499993 + ], + [ + 21.4155502320001, + -32.384529113999974 + ], + [ + 21.524463654000044, + -32.2791976929999 + ], + [ + 21.564001083000107, + -32.16609954799998 + ], + [ + 21.4295177460001, + -32.10266494799998 + ] + ] + ], + [ + [ + [ + 22.130948438000132, + 38.24930999600019 + ], + [ + 22.010557487000142, + 38.318617942000174 + ], + [ + 21.85163157300019, + 38.34453445200006 + ], + [ + 21.772766581000155, + 38.31638584100011 + ], + [ + 21.69894950700018, + 38.20128806100013 + ], + [ + 21.59744046900005, + 38.14763482900014 + ], + [ + 21.450794546000168, + 38.20992779200009 + ], + [ + 21.404478496000138, + 38.18388538600004 + ], + [ + 21.279386470000077, + 37.99386361800009 + ], + [ + 21.193243472, + 37.93386679300005 + ], + [ + 21.125596484000027, + 37.93370284300016 + ], + [ + 21.099348554000187, + 37.84338733300001 + ], + [ + 21.248496475000138, + 37.809228061000056 + ], + [ + 21.312437488, + 37.700636984000084 + ], + [ + 21.56071851200005, + 37.539704946000086 + ], + [ + 21.673555525000097, + 37.374776249000035 + ], + [ + 21.672571490000166, + 37.29466889100007 + ], + [ + 21.569217595000055, + 37.20477767400013 + ], + [ + 21.57807156700011, + 37.07683529800016 + ], + [ + 21.693510490000165, + 36.951875873000176 + ], + [ + 21.701223517000187, + 36.8377649790001 + ], + [ + 21.808595529000115, + 36.83059426000017 + ], + [ + 21.89042453000019, + 36.740336083000045 + ], + [ + 21.939006544000165, + 36.78899923400007 + ], + [ + 21.940759535000154, + 36.99980661300009 + ], + [ + 22.017198469, + 37.03884901500015 + ], + [ + 22.15136155800019, + 37.02694704800007 + ], + [ + 22.13850958600011, + 36.9365830910001 + ], + [ + 22.22209358900011, + 36.904227604000084 + ], + [ + 22.30012156400005, + 36.823243499000114 + ], + [ + 22.35142752900009, + 36.71134492400006 + ], + [ + 22.395399496000095, + 36.47652070900011 + ], + [ + 22.502782572000058, + 36.4871907050001 + ], + [ + 22.47561850000011, + 36.619565599 + ], + [ + 22.520870551000144, + 36.72530649200007 + ], + [ + 22.59074343700013, + 36.80938066900006 + ], + [ + 22.788148489000093, + 36.81927550600017 + ], + [ + 22.851430517000097, + 36.6981658900001 + ], + [ + 22.978506539000136, + 36.53216850000001 + ], + [ + 23.038763539000115, + 36.534133553000174 + ], + [ + 23.096164488000113, + 36.45502934200016 + ], + [ + 23.209802476000164, + 36.468564104 + ], + [ + 23.159547602000146, + 36.543700490000106 + ], + [ + 23.038684581000155, + 36.65534995500019 + ], + [ + 23.029735558000027, + 36.743441075000135 + ], + [ + 23.107061465000186, + 36.79258115600015 + ], + [ + 23.016996574000075, + 36.95190671900002 + ], + [ + 22.9550534710001, + 37.12459437600006 + ], + [ + 22.76132556100015, + 37.43458599000007 + ], + [ + 22.726160459000027, + 37.549084966000066 + ], + [ + 22.977796592000118, + 37.51806438099999 + ], + [ + 23.014198527000133, + 37.463523505000126 + ], + [ + 23.137845513000116, + 37.4453999860001 + ], + [ + 23.088554558000055, + 37.36390458500006 + ], + [ + 23.19357444000019, + 37.34341586099998 + ], + [ + 23.275485584000023, + 37.416176313000165 + ], + [ + 23.49742848900013, + 37.43345309200015 + ], + [ + 23.49843247399997, + 37.47256439300014 + ], + [ + 23.310077530000115, + 37.536249087000044 + ], + [ + 23.16069659300007, + 37.62697648400007 + ], + [ + 23.128385530000173, + 37.73678427700014 + ], + [ + 23.143295594000165, + 37.835578417000136 + ], + [ + 23.01818848100004, + 37.840358449000064 + ], + [ + 23.021133546000044, + 37.89944332300007 + ], + [ + 22.953437440000073, + 37.94914851100009 + ], + [ + 22.864019465000013, + 37.932664828000156 + ], + [ + 22.725099478000118, + 38.04528776700016 + ], + [ + 22.503358576000096, + 38.13878890300009 + ], + [ + 22.179645452000045, + 38.20066193300016 + ], + [ + 22.130948438000132, + 38.24930999600019 + ] + ] + ], + [ + [ + [ + 23.766201019000107, + -34.003524779999964 + ], + [ + 23.651119569000173, + -33.97648389099993 + ], + [ + 23.38497955800017, + -34.00674507599996 + ], + [ + 23.316589599000054, + -33.990472616999966 + ], + [ + 23.217145023000057, + -34.03488714799994 + ], + [ + 23.27049, + -34.09980999999988 + ], + [ + 23.3751297, + -34.09860992399996 + ], + [ + 23.44815444900013, + -34.00542068499993 + ], + [ + 23.64836502100019, + -33.97981262199994 + ], + [ + 23.766201019000107, + -34.003524779999964 + ] + ] + ], + [ + [ + [ + 22.74949048100018, + -34.00226310499994 + ], + [ + 22.97373962400013, + -34.08644485499991 + ], + [ + 22.97817294000015, + -33.99740729999991 + ], + [ + 22.88446946500011, + -34.0258226229999 + ], + [ + 22.74949048100018, + -34.00226310499994 + ] + ] + ], + [ + [ + [ + 24.078905106000093, + -33.226268767999954 + ], + [ + 24.027587891, + -33.28084182699996 + ], + [ + 24.242116928000087, + -33.33784103399995 + ], + [ + 24.218574524000132, + -33.26463317899987 + ], + [ + 24.078905106000093, + -33.226268767999954 + ] + ] + ], + [ + [ + [ + 24.607545853000147, + -33.27743911699997 + ], + [ + 24.50422287000015, + -33.24497222899993 + ], + [ + 24.460987091000106, + -33.19628524799998 + ], + [ + 24.26026916500018, + -33.15716552699996 + ], + [ + 24.238395691000107, + -33.20466995199996 + ], + [ + 24.418346405000023, + -33.27397918699995 + ], + [ + 24.607545853000147, + -33.27743911699997 + ] + ] + ], + [ + [ + [ + 24.278566360000184, + -33.14273834199997 + ], + [ + 23.91965675400013, + -33.08599853499993 + ], + [ + 23.760618210000132, + -33.038249968999935 + ], + [ + 23.588874817000033, + -33.058166503999814 + ], + [ + 23.6006984710001, + -33.15507888799988 + ], + [ + 23.69979858400012, + -33.173160552999946 + ], + [ + 23.781694412000093, + -33.152446746999885 + ], + [ + 23.85468483000011, + -33.180091857999855 + ], + [ + 24.10586547900016, + -33.19617843599991 + ], + [ + 24.242013931000145, + -33.24977493299991 + ], + [ + 24.278566360000184, + -33.14273834199997 + ] + ] + ], + [ + [ + [ + 22.931388509000158, + 36.19759712300015 + ], + [ + 23.05265956100004, + 36.13280132300014 + ], + [ + 23.112169564000112, + 36.247392836000074 + ], + [ + 23.00110649700008, + 36.32817493700003 + ], + [ + 22.906972528000097, + 36.34054595600014 + ], + [ + 22.931388509000158, + 36.19759712300015 + ] + ] + ], + [ + [ + [ + 24.530736605000186, + 36.69260432900012 + ], + [ + 24.340278475000048, + 36.765184569999974 + ], + [ + 24.314920536000045, + 36.679359414000146 + ], + [ + 24.530736605000186, + 36.69260432900012 + ] + ] + ], + [ + [ + [ + 24.277626599000143, + 37.63896931100015 + ], + [ + 24.299749459000054, + 37.535826137000015 + ], + [ + 24.386028579000026, + 37.612304801000164 + ], + [ + 24.277626599000143, + 37.63896931100015 + ] + ] + ], + [ + [ + [ + 23.45683644100012, + 37.68686635600005 + ], + [ + 23.527914477000138, + 37.68630543900008 + ], + [ + 23.552215458000035, + 37.76657574000018 + ], + [ + 23.420474571000113, + 37.75969905900007 + ], + [ + 23.45683644100012, + 37.68686635600005 + ] + ] + ], + [ + [ + [ + 23.413330508000115, + 37.894522307000045 + ], + [ + 23.549938598000153, + 37.916541064000114 + ], + [ + 23.477958502000092, + 37.991585752000105 + ], + [ + 23.413330508000115, + 37.894522307000045 + ] + ] + ], + [ + [ + [ + 23.468105574, + 38.850897293 + ], + [ + 23.426874490000046, + 38.96012857900013 + ], + [ + 23.295381539000175, + 39.05032590400015 + ], + [ + 23.138048523000066, + 39.01612757100003 + ], + [ + 23.003112454000075, + 38.92477086100007 + ], + [ + 22.858739537000133, + 38.88883345100004 + ], + [ + 22.84628251999999, + 38.83766327400008 + ], + [ + 23.054985539000143, + 38.86312598699999 + ], + [ + 23.217149549000112, + 38.83333452300013 + ], + [ + 23.42628859500013, + 38.68911365300005 + ], + [ + 23.511787527000024, + 38.59552936900019 + ], + [ + 23.625112535000085, + 38.534286323000174 + ], + [ + 23.60511750500018, + 38.45006680400019 + ], + [ + 23.640632467000046, + 38.40106753900005 + ], + [ + 23.929120475000047, + 38.372167910000144 + ], + [ + 24.04463148300016, + 38.374304122000126 + ], + [ + 24.118833454000082, + 38.208039852000184 + ], + [ + 24.21235655100014, + 38.147841023000126 + ], + [ + 24.201566527000182, + 38.081455009000024 + ], + [ + 24.322002573000077, + 38.03912388400005 + ], + [ + 24.338067497000054, + 37.97061691200008 + ], + [ + 24.44550757000019, + 38.00701633300008 + ], + [ + 24.474891505000016, + 37.95413742000011 + ], + [ + 24.587236500000074, + 38.02166806700018 + ], + [ + 24.561443540000084, + 38.13745701900018 + ], + [ + 24.410348502999966, + 38.133658005000086 + ], + [ + 24.261409460000095, + 38.194485979000035 + ], + [ + 24.18569958400019, + 38.3867086680001 + ], + [ + 24.216186578000077, + 38.53824107200006 + ], + [ + 24.14973853700002, + 38.584886364000056 + ], + [ + 24.150133493000055, + 38.662209085000086 + ], + [ + 23.957538480000096, + 38.671788092000156 + ], + [ + 23.751171496999973, + 38.72063011200015 + ], + [ + 23.716438567000125, + 38.763907387000074 + ], + [ + 23.599754596000082, + 38.77476027500006 + ], + [ + 23.468105574, + 38.850897293 + ] + ] + ], + [ + [ + [ + 26.772508621000043, + -32.53974151599988 + ], + [ + 26.646099091000053, + -32.550685882999915 + ], + [ + 26.616403580000167, + -32.68450927699996 + ], + [ + 26.73624801600016, + -32.74461364699994 + ], + [ + 26.779607773000123, + -32.694576262999874 + ], + [ + 26.720390320000092, + -32.62932968099989 + ], + [ + 26.772508621000043, + -32.53974151599988 + ] + ] + ], + [ + [ + [ + 24.04858354999999, + 35.52445586600015 + ], + [ + 23.910634523000112, + 35.496716293000134 + ], + [ + 23.799901535000117, + 35.524997840000026 + ], + [ + 23.76437953300018, + 35.6438528920001 + ], + [ + 23.713119501000165, + 35.64009880500004 + ], + [ + 23.723550444000182, + 35.495502426000144 + ], + [ + 23.579385565000052, + 35.45797144800002 + ], + [ + 23.51727851200019, + 35.256850364000115 + ], + [ + 23.573749573000043, + 35.212749483000096 + ], + [ + 23.983219458000065, + 35.22151930100006 + ], + [ + 24.040193601000112, + 35.17232239000015 + ], + [ + 24.179185504000145, + 35.18931183800004 + ], + [ + 24.493921443000033, + 35.1389560450001 + ], + [ + 24.59332260000008, + 35.08347673100019 + ], + [ + 24.74179460400012, + 35.05423327700015 + ], + [ + 24.752777579000167, + 34.94020335100004 + ], + [ + 24.921386603000144, + 34.92520460600008 + ], + [ + 25.206108454000173, + 34.94520818600017 + ], + [ + 25.380275518000133, + 34.99659092900015 + ], + [ + 25.504444529000068, + 34.9793721530001 + ], + [ + 25.59694251800005, + 35.00770667300009 + ], + [ + 25.80777755800011, + 34.995759947000124 + ], + [ + 25.978610468000056, + 35.03381395500014 + ], + [ + 26.146720601000027, + 34.99937958800001 + ], + [ + 26.236917590000076, + 35.0337638310001 + ], + [ + 26.276325443000076, + 35.11063577400017 + ], + [ + 26.270160552999982, + 35.25075454100016 + ], + [ + 26.134532475000015, + 35.19252378300013 + ], + [ + 26.061309510000058, + 35.22874399800003 + ], + [ + 25.888551445000076, + 35.17440831100015 + ], + [ + 25.80911044800007, + 35.105601100000115 + ], + [ + 25.708108515000106, + 35.135560201000146 + ], + [ + 25.74821256900009, + 35.330231411 + ], + [ + 25.62292457400008, + 35.33091436900003 + ], + [ + 25.450464569000076, + 35.277703701000064 + ], + [ + 25.349061478000124, + 35.32165253300002 + ], + [ + 25.127817455000127, + 35.3385623530001 + ], + [ + 24.974643539000056, + 35.413393470000074 + ], + [ + 24.797807510000155, + 35.39080306700009 + ], + [ + 24.71765153800004, + 35.41004054100006 + ], + [ + 24.513408529000174, + 35.349082982000084 + ], + [ + 24.291938531000028, + 35.34104624600019 + ], + [ + 24.243881559000158, + 35.45208131700002 + ], + [ + 24.18102047100018, + 35.43189803000013 + ], + [ + 24.16716149700011, + 35.562406943999974 + ], + [ + 24.04858354999999, + 35.52445586600015 + ] + ] + ], + [ + [ + [ + 27.13558551900013, + 35.38775892700011 + ], + [ + 27.23548556800006, + 35.47323288200016 + ], + [ + 27.153270497000165, + 35.626901163000184 + ], + [ + 27.045911560000036, + 35.58208631200006 + ], + [ + 27.13558551900013, + 35.38775892700011 + ] + ] + ], + [ + [ + [ + 28.20654447400011, + 36.33919093700007 + ], + [ + 28.22980459100006, + 36.407610401 + ], + [ + 28.150567610000053, + 36.42517283500007 + ], + [ + 27.880151488000024, + 36.322342306000166 + ], + [ + 27.795585461000144, + 36.25513955900004 + ], + [ + 27.769754447000025, + 36.189918126000066 + ], + [ + 27.696914535000076, + 36.16045389300018 + ], + [ + 27.762523546000125, + 36.09074529200018 + ], + [ + 27.72673751400015, + 35.941086913000106 + ], + [ + 27.8056065290001, + 35.8932859250001 + ], + [ + 27.865844585000104, + 35.93033712300007 + ], + [ + 27.956138469000052, + 36.04446344000007 + ], + [ + 28.070116595000172, + 36.11435795100016 + ], + [ + 28.176708587000178, + 36.24754203400016 + ], + [ + 28.20654447400011, + 36.33919093700007 + ] + ] + ], + [ + [ + [ + 25.388780467000117, + 36.685741227000165 + ], + [ + 25.37355256100011, + 36.74680188299999 + ], + [ + 25.292831480000075, + 36.80660374500019 + ], + [ + 25.248624485000164, + 36.74205605000003 + ], + [ + 25.349412512000185, + 36.649658978000105 + ], + [ + 25.388780467000117, + 36.685741227000165 + ] + ] + ], + [ + [ + [ + 27.156616552000173, + 36.7923290280001 + ], + [ + 27.3445114970001, + 36.853229758000055 + ], + [ + 27.27922652900014, + 36.927035265000086 + ], + [ + 27.035043585000096, + 36.82119060300005 + ], + [ + 27.09134248100014, + 36.74151122600006 + ], + [ + 27.156616552000173, + 36.7923290280001 + ] + ] + ], + [ + [ + [ + 24.605142592000163, + 37.05888360800003 + ], + [ + 24.6817474880001, + 36.916769445000114 + ], + [ + 24.736215442000173, + 36.979158298000186 + ], + [ + 24.605142592000163, + 37.05888360800003 + ] + ] + ], + [ + [ + [ + 27.041271506000157, + 37.00270557800019 + ], + [ + 26.961843586000043, + 37.07439415200014 + ], + [ + 26.90825053500015, + 36.96612728800011 + ], + [ + 27.041271506000157, + 37.00270557800019 + ] + ] + ], + [ + [ + [ + 25.481092546000184, + 36.963659656000175 + ], + [ + 25.54170946400012, + 36.989910938000094 + ], + [ + 25.58721146400012, + 37.08966782400017 + ], + [ + 25.568204493, + 37.17486735500006 + ], + [ + 25.496866450000027, + 37.207523417 + ], + [ + 25.362918439999987, + 37.124991175000105 + ], + [ + 25.34890356300008, + 37.076026109000054 + ], + [ + 25.446929585000134, + 36.93399325100006 + ], + [ + 25.481092546000184, + 36.963659656000175 + ] + ] + ], + [ + [ + [ + 25.275403492000123, + 37.125845291000076 + ], + [ + 25.200815450000107, + 37.164190319 + ], + [ + 25.131389487000092, + 37.12002841800012 + ], + [ + 25.099462483000025, + 37.0432927650001 + ], + [ + 25.160104546000184, + 36.999062803000186 + ], + [ + 25.266374506000034, + 37.06323951500008 + ], + [ + 25.275403492000123, + 37.125845291000076 + ] + ] + ], + [ + [ + [ + 25.126712553000175, + 37.645897122000065 + ], + [ + 24.966930512000033, + 37.656817736000164 + ], + [ + 25.10895951400005, + 37.551248 + ], + [ + 25.18862346900005, + 37.52323735599998 + ], + [ + 25.222547546000044, + 37.61895366100015 + ], + [ + 25.126712553000175, + 37.645897122000065 + ] + ] + ], + [ + [ + [ + 26.06722260700019, + 37.52727324300008 + ], + [ + 26.219001607000166, + 37.57341545200006 + ], + [ + 26.22751460300003, + 37.64462994500013 + ], + [ + 26.064048548000017, + 37.63076828900017 + ], + [ + 25.979522587000133, + 37.544992083000125 + ], + [ + 26.06722260700019, + 37.52727324300008 + ] + ] + ], + [ + [ + [ + 27.033008459000087, + 37.76834281300006 + ], + [ + 26.93307153000012, + 37.76669074000006 + ], + [ + 26.767051509000055, + 37.812497003000146 + ], + [ + 26.665960559999974, + 37.789609210000094 + ], + [ + 26.569601530000057, + 37.72993643000012 + ], + [ + 26.621484505000183, + 37.67579151500007 + ], + [ + 26.717470540000136, + 37.72107977600007 + ], + [ + 26.789010586000188, + 37.63489520300004 + ], + [ + 27.05968051299999, + 37.711889857000074 + ], + [ + 27.033008459000087, + 37.76834281300006 + ] + ] + ], + [ + [ + [ + 24.950168549000182, + 37.82771669500016 + ], + [ + 24.940147481000054, + 37.90084326800019 + ], + [ + 24.831552549000037, + 37.91374821400018 + ], + [ + 24.7739796030001, + 37.99579749100013 + ], + [ + 24.67547447100003, + 37.91825700700008 + ], + [ + 24.755647543000123, + 37.87247790200013 + ], + [ + 24.942275479000102, + 37.685755418000156 + ], + [ + 24.982379533000085, + 37.755430156000045 + ], + [ + 24.950168549000182, + 37.82771669500016 + ] + ] + ], + [ + [ + [ + 31.202453595000065, + 39.813308255000095 + ], + [ + 31.216987480000114, + 39.90883077 + ], + [ + 30.941394527000114, + 39.89141703100012 + ], + [ + 30.815555506000123, + 39.93106963600013 + ], + [ + 30.729320474000133, + 39.91419367900011 + ], + [ + 30.49483254200004, + 40.04245708200011 + ], + [ + 30.65860554200009, + 40.032005352000056 + ], + [ + 30.576948538000124, + 40.13591982900016 + ], + [ + 30.479768585000045, + 40.14444975700013 + ], + [ + 30.430133469000168, + 40.192842172000155 + ], + [ + 30.282627563000062, + 40.217770958000074 + ], + [ + 30.259109452000075, + 40.14914194600016 + ], + [ + 30.18208847900013, + 40.13987189599999 + ], + [ + 30.071966532000147, + 40.204214067000066 + ], + [ + 29.866552572000103, + 40.14559070100006 + ], + [ + 29.74383547400015, + 40.06217601300017 + ], + [ + 29.590669604000027, + 40.152120707000165 + ], + [ + 29.53417960000013, + 40.21000495700014 + ], + [ + 29.299394445000075, + 40.226479923000056 + ], + [ + 29.24816157100014, + 40.27150432200011 + ], + [ + 29.044103467000014, + 40.28413802900013 + ], + [ + 29.05983948500017, + 40.36851110500015 + ], + [ + 28.923561474000167, + 40.36524903500003 + ], + [ + 28.808666536000032, + 40.40082065900003 + ], + [ + 28.589443558000028, + 40.37901698200011 + ], + [ + 28.524204523000037, + 40.39960478000006 + ], + [ + 28.150491502000193, + 40.40087866200008 + ], + [ + 27.960212577, + 40.35897031900015 + ], + [ + 27.905090500000085, + 40.390303885000094 + ], + [ + 28.03910254699997, + 40.48293883500014 + ], + [ + 27.8649294490001, + 40.52488925500012 + ], + [ + 27.687538538000126, + 40.50435459800008 + ], + [ + 27.792280475999974, + 40.39846383600013 + ], + [ + 27.781846515999973, + 40.31893985900018 + ], + [ + 27.63071845400009, + 40.334045557000024 + ], + [ + 27.55145649500014, + 40.30905994200009 + ], + [ + 27.433155487000136, + 40.33104751800005 + ], + [ + 27.317878502000156, + 40.38674878500012 + ], + [ + 27.293657484000164, + 40.46960708300014 + ], + [ + 27.12229752000013, + 40.45774300200003 + ], + [ + 27.04131844500006, + 40.396014643000115 + ], + [ + 26.758094607000032, + 40.40729467300008 + ], + [ + 26.52703654900006, + 40.22003289800017 + ], + [ + 26.40425658700019, + 40.17020650699999 + ], + [ + 26.41010849700018, + 40.12427401300005 + ], + [ + 26.284776581000187, + 39.99353878700009 + ], + [ + 26.182838557000082, + 39.99789067100011 + ], + [ + 26.13754258400013, + 39.840914723000026 + ], + [ + 26.159345591000147, + 39.67006421100007 + ], + [ + 26.063419570000065, + 39.48410079299998 + ], + [ + 26.14021657900014, + 39.454514183000185 + ], + [ + 26.368619585000147, + 39.481506761000105 + ], + [ + 26.48278848200016, + 39.526080046000175 + ], + [ + 26.92597759000006, + 39.57908837499997 + ], + [ + 26.880752528000016, + 39.47479268900008 + ], + [ + 26.780311512000026, + 39.37154926699998 + ], + [ + 26.7030585280001, + 39.34249675300015 + ], + [ + 26.688386509000054, + 39.268553950000125 + ], + [ + 26.769197444000042, + 39.16869430200006 + ], + [ + 26.88801745900014, + 39.07205062300005 + ], + [ + 26.80018651300003, + 39.031546250000076 + ], + [ + 26.802198505000035, + 38.9584733210001 + ], + [ + 26.95252760400018, + 38.93864894600006 + ], + [ + 27.04674354800011, + 38.893525473000125 + ], + [ + 26.82830059000014, + 38.759982645000036 + ], + [ + 26.730161579000082, + 38.724624089000145 + ], + [ + 26.75910747600011, + 38.61562095900007 + ], + [ + 26.85076358800012, + 38.59609028600016 + ], + [ + 26.873861598000076, + 38.50683978100011 + ], + [ + 26.95443549200013, + 38.437469977000035 + ], + [ + 27.062498509000136, + 38.46286060500012 + ], + [ + 27.084588511000163, + 38.39969441500011 + ], + [ + 26.774908537000158, + 38.36384803300018 + ], + [ + 26.707586600000127, + 38.431309948000035 + ], + [ + 26.60028449300006, + 38.43308691200019 + ], + [ + 26.627111444000093, + 38.52800341600016 + ], + [ + 26.47859149600015, + 38.67317697300007 + ], + [ + 26.35556745300005, + 38.64814827500004 + ], + [ + 26.35887947800012, + 38.57550248800004 + ], + [ + 26.426012488000026, + 38.47641028700019 + ], + [ + 26.51530054400007, + 38.43104306900011 + ], + [ + 26.444679489000123, + 38.34582744400012 + ], + [ + 26.27967250500012, + 38.297881281000116 + ], + [ + 26.315216468000187, + 38.23996417400019 + ], + [ + 26.503211492000105, + 38.18193642600005 + ], + [ + 26.61624145700017, + 38.11347455000015 + ], + [ + 26.653730525000128, + 38.20940476100003 + ], + [ + 26.76617258200008, + 38.217346782 + ], + [ + 26.824815562000083, + 38.160291670000106 + ], + [ + 26.861766512000145, + 38.050159665000194 + ], + [ + 26.955373595000026, + 38.076335175000054 + ], + [ + 27.12359956500012, + 37.99429763300003 + ], + [ + 27.23823550200018, + 37.98732472800015 + ], + [ + 27.277254603000017, + 37.92926596700005 + ], + [ + 27.239812474000132, + 37.73079540700007 + ], + [ + 27.097259602000065, + 37.684645319000026 + ], + [ + 27.089729467999973, + 37.641910186000075 + ], + [ + 27.21681454300017, + 37.58657923100009 + ], + [ + 27.17313057800004, + 37.54866587100014 + ], + [ + 27.224605522000104, + 37.48027306200015 + ], + [ + 27.190729557000168, + 37.352979613000116 + ], + [ + 27.25099560900003, + 37.33439106600014 + ], + [ + 27.383291545000134, + 37.354661693000025 + ], + [ + 27.49852745900006, + 37.31668329000013 + ], + [ + 27.555267578999974, + 37.136792895000156 + ], + [ + 27.477191492000145, + 37.085287944000186 + ], + [ + 27.336948506000056, + 37.15495446800014 + ], + [ + 27.273109584000167, + 37.135138140000095 + ], + [ + 27.224687497000048, + 37.05490471800016 + ], + [ + 27.265190530000098, + 36.96604346900017 + ], + [ + 27.33587646000018, + 37.01806340400009 + ], + [ + 27.485980588000075, + 36.98693603300006 + ], + [ + 27.82072446500007, + 37.01112855300016 + ], + [ + 27.928056579000042, + 37.03117823300016 + ], + [ + 28.24897752400011, + 37.03757110999999 + ], + [ + 28.19674451999998, + 36.943582818000095 + ], + [ + 28.042350534000036, + 36.923178248000056 + ], + [ + 27.986824449000096, + 36.80211774999998 + ], + [ + 27.819509591999974, + 36.81594956700019 + ], + [ + 27.773784466000166, + 36.78883913900006 + ], + [ + 27.434335492000173, + 36.74743102900004 + ], + [ + 27.398328512000035, + 36.67983634400014 + ], + [ + 27.483579508000048, + 36.650951970000165 + ], + [ + 27.60404053300016, + 36.68131239700017 + ], + [ + 27.6673565910001, + 36.661510989000135 + ], + [ + 27.72249744400017, + 36.756574847000024 + ], + [ + 28.01639345700005, + 36.75707491100019 + ], + [ + 28.023284555000032, + 36.66466979300003 + ], + [ + 28.14714460800019, + 36.65379393800015 + ], + [ + 28.260232576000192, + 36.73166533900013 + ], + [ + 28.262355544000116, + 36.84861803500013 + ], + [ + 28.40184047100007, + 36.785429046000104 + ], + [ + 28.489669573000015, + 36.81839456800009 + ], + [ + 28.620582496000054, + 36.81991253100017 + ], + [ + 28.666854457000113, + 36.720255725000015 + ], + [ + 28.83170855500009, + 36.64014518300013 + ], + [ + 28.93251049600019, + 36.753844023000056 + ], + [ + 29.036214588, + 36.70509705300009 + ], + [ + 29.079893523000123, + 36.64275815700017 + ], + [ + 29.028684454000143, + 36.58279653599999 + ], + [ + 29.128732526000135, + 36.54533328500014 + ], + [ + 29.10962648100019, + 36.38371896000007 + ], + [ + 29.231542604000083, + 36.32633225900014 + ], + [ + 29.364036521000173, + 36.22847219900018 + ], + [ + 29.583425461000047, + 36.195487063000144 + ], + [ + 29.676794498000163, + 36.12014062600019 + ], + [ + 29.77837545300008, + 36.13095143700019 + ], + [ + 29.923198479, + 36.22138446100007 + ], + [ + 30.03877654200005, + 36.253209877000074 + ], + [ + 30.10396059200002, + 36.23660499200008 + ], + [ + 30.187385506000112, + 36.30299452600019 + ], + [ + 30.271129604000066, + 36.304997466000145 + ], + [ + 30.417308487000184, + 36.206221766000056 + ], + [ + 30.49510746800007, + 36.313782539000044 + ], + [ + 30.481943521000062, + 36.40054143900011 + ], + [ + 30.588458568000192, + 36.571485661 + ], + [ + 30.558097470000064, + 36.6122027670001 + ], + [ + 30.573663503000034, + 36.78121328400016 + ], + [ + 30.702638529000183, + 36.88646618300015 + ], + [ + 30.756677497000112, + 36.84893503800015 + ], + [ + 31.00871445300004, + 36.85914972800015 + ], + [ + 31.299488542000063, + 36.81762041500008 + ], + [ + 31.57392345100004, + 36.70755697400017 + ], + [ + 31.789031585000146, + 36.60461597100016 + ], + [ + 32.026142551000135, + 36.542002316000094 + ], + [ + 32.09770958700017, + 36.491546444000164 + ], + [ + 32.29812659200019, + 36.23385103400017 + ], + [ + 32.512298467000164, + 36.09617425000016 + ], + [ + 32.67116151700003, + 36.04082351500011 + ], + [ + 32.808124497000165, + 36.017040200000054 + ], + [ + 32.962657455000056, + 36.09947722300012 + ], + [ + 33.09360558100019, + 36.08426457200005 + ], + [ + 33.14727356600008, + 36.131199374000175 + ], + [ + 33.400581553999984, + 36.12557277000002 + ], + [ + 33.48331848200013, + 36.15207316300007 + ], + [ + 33.57357448000016, + 36.13128352800004 + ], + [ + 33.70272049700014, + 36.16702279000003 + ], + [ + 33.80050646200016, + 36.225191522000046 + ], + [ + 33.8787615870001, + 36.31163844800005 + ], + [ + 34.00644647100006, + 36.286785937000104 + ], + [ + 34.083747567000046, + 36.31516354100012 + ], + [ + 34.08708155300002, + 36.40809822800014 + ], + [ + 34.18051546600003, + 36.47241693000012 + ], + [ + 34.28697552700004, + 36.58791150899998 + ], + [ + 34.42840958200014, + 36.66026795300013 + ], + [ + 34.57769345700012, + 36.775205471 + ], + [ + 34.725192489000165, + 36.81479772600005 + ], + [ + 34.83581148300016, + 36.798799019000114 + ], + [ + 34.911769462999985, + 36.729910337000035 + ], + [ + 35.02538649600018, + 36.707640961000095 + ], + [ + 35.34614952600003, + 36.54871638800017 + ], + [ + 35.44557951700011, + 36.59336645100018 + ], + [ + 35.55625148400014, + 36.57810049100004 + ], + [ + 35.63786356100019, + 36.61061590500009 + ], + [ + 35.608459509, + 36.73377120900011 + ], + [ + 35.795051571000045, + 36.76713369800018 + ], + [ + 36.02020658900011, + 36.93146711300011 + ], + [ + 36.144931488000054, + 36.868030522000026 + ], + [ + 36.213287585000046, + 36.77271051300016 + ], + [ + 36.20185450100013, + 36.60309415300014 + ], + [ + 36.02449058000008, + 36.44359357600018 + ], + [ + 35.90403760200019, + 36.41801301400017 + ], + [ + 35.794319495000025, + 36.32527211600012 + ], + [ + 35.79732558100011, + 36.28540895800012 + ], + [ + 35.98772051200007, + 36.01767705700007 + ], + [ + 35.88672260200019, + 35.871497503000114 + ], + [ + 35.81719555300009, + 35.83484243500004 + ], + [ + 35.85413745000005, + 35.753828323000164 + ], + [ + 35.77433050000019, + 35.66087352000005 + ], + [ + 35.74344654000015, + 35.56295679700008 + ], + [ + 35.924159534000125, + 35.421576051000045 + ], + [ + 35.928653575000055, + 35.27338970300019 + ], + [ + 35.96302759300005, + 35.19871583000008 + ], + [ + 35.89731950700008, + 35.10571894900005 + ], + [ + 35.88036761000018, + 34.907642004000024 + ], + [ + 35.93910949700012, + 34.77322762600011 + ], + [ + 35.99739859300013, + 34.54742938000015 + ], + [ + 35.82326857700008, + 34.40898615600014 + ], + [ + 35.73380249000013, + 34.363932420000026 + ], + [ + 35.6643795440001, + 34.28355147700006 + ], + [ + 35.63665053200009, + 34.1514982810001 + ], + [ + 35.64404655600009, + 33.990582671000084 + ], + [ + 35.57986850200007, + 33.90617003300002 + ], + [ + 35.482734482000126, + 33.902237244000105 + ], + [ + 35.492404516000136, + 33.823568221000016 + ], + [ + 35.42278660800014, + 33.68772724200011 + ], + [ + 35.358123577000185, + 33.512985180000044 + ], + [ + 35.29983850500008, + 33.46439478499997 + ], + [ + 35.21552259400016, + 33.26351174600012 + ], + [ + 35.21137254600012, + 33.20509843000008 + ], + [ + 35.11890456300017, + 33.113567209000166 + ], + [ + 35.08096656100014, + 32.9597596210001 + ], + [ + 35.09027047300009, + 32.906386344000055 + ], + [ + 35.034126474000175, + 32.813688362000164 + ], + [ + 34.96520258700008, + 32.82536100100009 + ], + [ + 34.89236049600004, + 32.4705478300001 + ], + [ + 34.78449261000014, + 32.118661118000034 + ], + [ + 34.64022848900015, + 31.813790009000172 + ], + [ + 34.55429051200008, + 31.675664794000056 + ], + [ + 34.38136648500006, + 31.469527643000163 + ], + [ + 34.23045752700017, + 31.328554593000092 + ], + [ + 34.275440519000085, + 31.293948565000107 + ], + [ + 34.41976951600009, + 31.403374981000184 + ], + [ + 34.51485851900003, + 31.552412764000053 + ], + [ + 34.68021754400013, + 31.55462072400013 + ], + [ + 34.738334475000045, + 31.49965455000006 + ], + [ + 34.90927852900012, + 31.511409164000042 + ], + [ + 34.914535491000095, + 31.40079503100003 + ], + [ + 35.052486530000124, + 31.343213871000103 + ], + [ + 35.1881214820001, + 31.380142693000096 + ], + [ + 35.26926853000015, + 31.45954898800011 + ], + [ + 35.36573753000016, + 31.703886830000158 + ], + [ + 35.38146248400005, + 31.89906916800004 + ], + [ + 35.45782061600016, + 32.027126040999974 + ], + [ + 35.51340856000019, + 32.02000846400006 + ], + [ + 35.56991670200017, + 32.19547743500016 + ], + [ + 35.558955081000136, + 32.4263314050001 + ], + [ + 35.57722873200015, + 32.592607042 + ], + [ + 35.57251366100019, + 32.60744887500016 + ], + [ + 35.66829145800011, + 32.66410616400009 + ], + [ + 35.69167383200016, + 32.598995247 + ], + [ + 35.698418747000176, + 32.45384466900015 + ], + [ + 35.679532984000105, + 32.18665608900017 + ], + [ + 35.686997357000166, + 32.15428049600007 + ], + [ + 35.68079203500014, + 32.10805534200006 + ], + [ + 35.67449678100007, + 32.08035622299997 + ], + [ + 35.692483222000135, + 31.89878310199998 + ], + [ + 35.69491139100006, + 31.895005950000098 + ], + [ + 35.77432152799997, + 31.863439746000097 + ], + [ + 35.748690849000184, + 31.782770558000152 + ], + [ + 35.799052884000105, + 31.58590896300018 + ], + [ + 35.788710680000065, + 31.532039572000144 + ], + [ + 35.77836847700007, + 31.501372690000096 + ], + [ + 35.78943013800006, + 31.41296933300015 + ], + [ + 35.8725274950001, + 31.405594892000067 + ], + [ + 35.91650434300004, + 31.50083309700011 + ], + [ + 36.00481776800018, + 31.850219712000126 + ], + [ + 36.023074006000115, + 31.981700595000063 + ], + [ + 36.085756752000066, + 32.214085412000145 + ], + [ + 36.01138281900012, + 32.35500917600001 + ], + [ + 36.049244277000184, + 32.58559534900013 + ], + [ + 36.04864152500005, + 32.69114091400019 + ], + [ + 35.96369948600011, + 32.74632619099998 + ], + [ + 35.83045555600006, + 32.77392444600008 + ], + [ + 35.927612543000066, + 32.90337640300015 + ], + [ + 35.93589352800018, + 32.97720705600011 + ], + [ + 35.865867588000185, + 33.13985017600015 + ], + [ + 35.92540357600018, + 33.253014083000096 + ], + [ + 36.04865661300005, + 33.32342676400009 + ], + [ + 36.06762351900011, + 33.43072384100009 + ], + [ + 36.239189510000074, + 33.619904067 + ], + [ + 36.354255606000095, + 33.59101198200017 + ], + [ + 36.41495148200016, + 33.60601156500019 + ], + [ + 36.61114451000003, + 33.70022382200011 + ], + [ + 36.671634526000105, + 33.79787718500012 + ], + [ + 36.791820456000096, + 33.87426884500013 + ], + [ + 36.99585358200011, + 34.16431085800019 + ], + [ + 37.072105599000054, + 34.24485273300019 + ], + [ + 36.99584553500006, + 34.46260887800008 + ], + [ + 36.9931225900001, + 34.5633942230001 + ], + [ + 37.12018956000014, + 34.67966312300018 + ], + [ + 37.1833725140001, + 34.88442279100008 + ], + [ + 37.253921484000045, + 34.929026419000024 + ], + [ + 37.31139753600013, + 35.03690788300014 + ], + [ + 37.29367048100005, + 35.1684655410001 + ], + [ + 37.344470514000136, + 35.247774606000064 + ], + [ + 37.37701057100003, + 35.42358603200017 + ], + [ + 37.55396646100013, + 35.41167635300019 + ], + [ + 37.736606455000185, + 35.44346354700019 + ], + [ + 37.85232147800019, + 35.52825856800018 + ], + [ + 37.818016528000044, + 35.621487292000154 + ], + [ + 37.84120154300018, + 35.75153537000011 + ], + [ + 37.920967588999986, + 35.913152545 + ], + [ + 37.87919251900013, + 36.04704154600006 + ], + [ + 37.77489448600011, + 36.05463337100019 + ], + [ + 37.761829613000145, + 35.94081986600014 + ], + [ + 37.83251152100007, + 35.87378257800009 + ], + [ + 37.65701659600012, + 35.87178332600007 + ], + [ + 37.646728481000025, + 35.93713501400009 + ], + [ + 37.553417614000125, + 36.02693101300014 + ], + [ + 37.60887161500017, + 36.128708608000125 + ], + [ + 37.81841651200011, + 36.120018753000124 + ], + [ + 37.93885054700013, + 36.32685897800013 + ], + [ + 38.0847474630001, + 36.33100098000017 + ], + [ + 38.24330557800005, + 36.42202593400003 + ], + [ + 38.337551530000155, + 36.66977772500002 + ], + [ + 38.403221562, + 36.742537171000095 + ], + [ + 38.486579589000144, + 36.66743883900017 + ], + [ + 38.46456150299997, + 36.53612861400012 + ], + [ + 38.49407150200017, + 36.42069002600016 + ], + [ + 38.54808448600005, + 36.36599341400017 + ], + [ + 38.63822950800011, + 36.40066733500004 + ], + [ + 38.78363759100006, + 36.51402687600017 + ], + [ + 39.013629471000115, + 36.481865681000045 + ], + [ + 39.095519491000175, + 36.55297422800004 + ], + [ + 39.12099846500013, + 36.6383903470001 + ], + [ + 39.27315850600007, + 36.7322983410001 + ], + [ + 39.73285258700008, + 36.87020428500006 + ], + [ + 39.95695450300019, + 36.950647924000066 + ], + [ + 40.261501568000085, + 36.95639573100004 + ], + [ + 40.44060557200015, + 36.855323725 + ], + [ + 40.614364604000116, + 36.83152817200016 + ], + [ + 40.7519954550001, + 36.834652107000124 + ], + [ + 40.83839762100013, + 36.81014359000005 + ], + [ + 40.98463450700018, + 36.72105770600007 + ], + [ + 41.070903569000166, + 36.6968720590001 + ], + [ + 41.31141658100012, + 36.80167887400012 + ], + [ + 41.624168523000094, + 36.79670505200016 + ], + [ + 41.93947258700018, + 36.87249740600015 + ], + [ + 42.22774551600003, + 36.79111197600014 + ], + [ + 42.45463558800009, + 36.81426748700011 + ], + [ + 42.59354752900009, + 36.90687075300019 + ], + [ + 42.64019751400019, + 37.00794343000018 + ], + [ + 42.681945594000126, + 37.06142751600004 + ], + [ + 42.64825855800012, + 37.24138697700005 + ], + [ + 42.437526615000024, + 37.285517865000145 + ], + [ + 42.35235558199997, + 37.32899312000012 + ], + [ + 42.271758554000144, + 37.411636674000135 + ], + [ + 42.04254552100019, + 37.45640576000011 + ], + [ + 41.95277449900016, + 37.50958876800013 + ], + [ + 41.96190256000017, + 37.67194254500009 + ], + [ + 41.93352545900018, + 37.70826585700007 + ], + [ + 42.065998589, + 37.90844230200008 + ], + [ + 41.878524584000104, + 37.995972505000054 + ], + [ + 41.73957861300016, + 38.00932051800004 + ], + [ + 41.63791249700006, + 38.053073550000136 + ], + [ + 41.43936549500012, + 38.091300057000126 + ], + [ + 41.45494845899998, + 38.13237607700006 + ], + [ + 41.312950470000146, + 38.098273801000175 + ], + [ + 41.07332258600019, + 38.14545989200019 + ], + [ + 40.79868651100014, + 38.22225673300011 + ], + [ + 40.75817459400008, + 38.20397697600009 + ], + [ + 40.5502816020001, + 38.21849560600003 + ], + [ + 40.49274855400006, + 38.19473022800008 + ], + [ + 40.22561646100007, + 38.15905986600012 + ], + [ + 40.237735520000115, + 38.080462927000156 + ], + [ + 40.37066261300015, + 38.05856336100004 + ], + [ + 40.74769553800007, + 38.07429133200014 + ], + [ + 40.923816591000104, + 38.0364079790001 + ], + [ + 41.08684946900007, + 38.036968896000076 + ], + [ + 41.17368648900015, + 37.982048823000184 + ], + [ + 41.13204150600012, + 37.862346025000136 + ], + [ + 41.194629513000166, + 37.77082570100015 + ], + [ + 41.00712952300012, + 37.784684507 + ], + [ + 40.80806351399997, + 37.70328398900017 + ], + [ + 40.630298602000096, + 37.75177899900007 + ], + [ + 40.561038601000064, + 37.73654723700008 + ], + [ + 40.28699445600017, + 37.74032714000009 + ], + [ + 40.19438146600015, + 37.88255278200006 + ], + [ + 40.02202254700018, + 37.94528043100013 + ], + [ + 39.96809757300008, + 38.03440101600006 + ], + [ + 39.8653485160001, + 38.07958500700016 + ], + [ + 40.112792524000156, + 38.22952334100006 + ], + [ + 40.07627860700012, + 38.393231633000084 + ], + [ + 39.95421948800009, + 38.42753306300011 + ], + [ + 39.91899856400005, + 38.28765452099998 + ], + [ + 39.73314645700003, + 38.220776657000044 + ], + [ + 39.66100358400007, + 38.24452627700009 + ], + [ + 39.5510445810001, + 38.14076803800015 + ], + [ + 39.31944656100006, + 38.094359787000144 + ], + [ + 39.26299259900014, + 38.036582993000025 + ], + [ + 39.29848459500005, + 37.969442105000155 + ], + [ + 39.08626553500011, + 37.849506123000026 + ], + [ + 38.93851051900003, + 37.800522113 + ], + [ + 38.836692523000124, + 37.850452104000055 + ], + [ + 38.72879446300004, + 37.84441344600009 + ], + [ + 38.609573457000124, + 37.80139617800012 + ], + [ + 38.540904548000185, + 37.81159309800006 + ], + [ + 38.46204357900001, + 37.76367677500019 + ], + [ + 38.38256855300011, + 37.787900475000185 + ], + [ + 38.20833560800014, + 37.74424132100006 + ], + [ + 38.007465477000096, + 37.79407944700006 + ], + [ + 37.89822061300015, + 37.77685664699999 + ], + [ + 37.78693358100014, + 37.70726690200013 + ], + [ + 37.77248351500003, + 37.65131384300014 + ], + [ + 37.656311511000126, + 37.5569126580001 + ], + [ + 37.39522545200015, + 37.408924625000054 + ], + [ + 37.30132248799998, + 37.25598171400014 + ], + [ + 37.25321556100016, + 37.103819661000045 + ], + [ + 37.11380355600005, + 37.101546657000085 + ], + [ + 37.047260465000136, + 37.02315641600018 + ], + [ + 36.96949048500011, + 37.012795378000135 + ], + [ + 36.898223521000034, + 36.9020798250001 + ], + [ + 36.80984858900007, + 36.8934469670001 + ], + [ + 36.81938551900009, + 37.012028434000115 + ], + [ + 36.86221352300004, + 37.100748700000054 + ], + [ + 37.19375651900015, + 37.34882487100009 + ], + [ + 37.227790566000124, + 37.42993906200019 + ], + [ + 37.406852492999974, + 37.50301987000017 + ], + [ + 37.5521775950001, + 37.61498248300006 + ], + [ + 37.42183346900015, + 37.60855188700015 + ], + [ + 37.120136587000104, + 37.530306150000115 + ], + [ + 36.962173586000176, + 37.567033639000044 + ], + [ + 36.97982051000008, + 37.799016053000116 + ], + [ + 37.08426254400007, + 37.966966258000184 + ], + [ + 36.996639469, + 38.00679438000009 + ], + [ + 36.93816748, + 37.94796951300003 + ], + [ + 36.868553595000094, + 38.01147533800014 + ], + [ + 36.92874555000009, + 38.10325583600019 + ], + [ + 36.83755161700003, + 38.13136521900009 + ], + [ + 36.711196606000044, + 38.10228286500006 + ], + [ + 36.688049478000096, + 38.196687067000084 + ], + [ + 36.56103548100009, + 38.20665482600015 + ], + [ + 36.49569351700018, + 38.26011678400016 + ], + [ + 36.51601460300009, + 38.37415090100018 + ], + [ + 36.43490946400004, + 38.50875487800005 + ], + [ + 36.379058496000084, + 38.446014824000144 + ], + [ + 36.23342845999997, + 38.47404944000016 + ], + [ + 36.17420159700009, + 38.453987690000076 + ], + [ + 36.171646457000065, + 38.36092224600014 + ], + [ + 36.126033481000036, + 38.278152461 + ], + [ + 35.98820448300006, + 38.19284614399999 + ], + [ + 35.89201359400005, + 38.076274155000135 + ], + [ + 35.826259575999984, + 38.08722980500016 + ], + [ + 35.686847571000044, + 37.992703563000134 + ], + [ + 35.632808603000115, + 38.004612403000124 + ], + [ + 35.54521553500018, + 38.12152352400017 + ], + [ + 35.37312349600006, + 38.04696683000009 + ], + [ + 35.293975531000115, + 38.05070147100008 + ], + [ + 35.25467647500011, + 38.11283752500009 + ], + [ + 35.04743157200005, + 37.91747514300005 + ], + [ + 35.016765541000154, + 37.99543455400004 + ], + [ + 34.92216453200007, + 37.99832262299998 + ], + [ + 34.818984477000186, + 37.90594030300008 + ], + [ + 34.85574348100016, + 37.854831314000194 + ], + [ + 34.98971546300004, + 37.82772876500013 + ], + [ + 34.90236245300008, + 37.66048381200011 + ], + [ + 34.81566960200007, + 37.616733463000116 + ], + [ + 34.69826847500019, + 37.601879725 + ], + [ + 34.58500247600011, + 37.52578545500006 + ], + [ + 34.40344659800007, + 37.5113437710001 + ], + [ + 34.25560357200004, + 37.479403188000106 + ], + [ + 34.26490061100003, + 37.43876587700015 + ], + [ + 34.123924543000044, + 37.402576841999974 + ], + [ + 34.01422152400011, + 37.418907472000114 + ], + [ + 33.93279250800015, + 37.361524460000055 + ], + [ + 34.16529057700018, + 37.27266237200007 + ], + [ + 34.06226357500009, + 37.25180769400009 + ], + [ + 33.96702956500013, + 37.166322340000136 + ], + [ + 33.932033610000076, + 37.096037735000095 + ], + [ + 33.744167500000174, + 36.98166800700011 + ], + [ + 33.61794257600019, + 36.94711193500018 + ], + [ + 33.64446258200013, + 36.872364469000104 + ], + [ + 33.44134559900016, + 36.81996634300003 + ], + [ + 33.32732355200005, + 36.89105913100002 + ], + [ + 33.24501058100009, + 36.98170606100007 + ], + [ + 33.32405846600011, + 37.03887600500008 + ], + [ + 33.29545958000011, + 37.09727792100006 + ], + [ + 33.20505958000007, + 37.149278746000164 + ], + [ + 33.08980153800013, + 37.17447809900017 + ], + [ + 33.0730895320001, + 37.219105364000086 + ], + [ + 32.69125360900017, + 37.25354375400008 + ], + [ + 32.788986600000044, + 37.19790384200019 + ], + [ + 32.795867472000054, + 37.106302549000134 + ], + [ + 32.68834358000015, + 37.133039982000014 + ], + [ + 32.757236454000065, + 37.004307695000136 + ], + [ + 32.67713546700014, + 36.96381941500016 + ], + [ + 32.448436579000145, + 37.068618350000065 + ], + [ + 32.40405255800016, + 37.13651092800018 + ], + [ + 32.39976152600002, + 37.31547428400012 + ], + [ + 32.312236520000056, + 37.37701120000014 + ], + [ + 32.29990053800003, + 37.4633323970001 + ], + [ + 32.16636257100009, + 37.45979271900018 + ], + [ + 32.16470748, + 37.378335204999985 + ], + [ + 32.25403560200016, + 37.26071866300015 + ], + [ + 32.26461456900017, + 37.18372099200013 + ], + [ + 32.383617478000076, + 37.04702371800016 + ], + [ + 32.315151577999984, + 37.02586812900006 + ], + [ + 32.26170755800007, + 37.114557550000086 + ], + [ + 32.07480653900018, + 37.25313555500014 + ], + [ + 31.843629459000113, + 37.36550636700008 + ], + [ + 31.762994544000094, + 37.45455185100013 + ], + [ + 31.655340565000017, + 37.50461058800016 + ], + [ + 31.60493247000005, + 37.61394581000013 + ], + [ + 31.520952505000025, + 37.58599216200008 + ], + [ + 31.462478505000092, + 37.6482009720001 + ], + [ + 31.398988606000046, + 37.82410878800016 + ], + [ + 31.31433859200007, + 37.933538893000105 + ], + [ + 31.29031354300008, + 38.047019636000186 + ], + [ + 31.130313571999977, + 38.188005092000026 + ], + [ + 31.113271487000077, + 38.296146227000065 + ], + [ + 31.02080953899997, + 38.37410614100003 + ], + [ + 31.03346654800015, + 38.44216266900014 + ], + [ + 30.964767464000147, + 38.657296284000154 + ], + [ + 31.04287959300018, + 38.73823495900007 + ], + [ + 31.193605491000028, + 38.756106685000134 + ], + [ + 31.327751481000064, + 38.73027399500006 + ], + [ + 31.376476490000073, + 38.8545171020001 + ], + [ + 31.43265150200017, + 38.92021194400007 + ], + [ + 31.360076458000094, + 38.99148511100003 + ], + [ + 31.240970452000113, + 39.007899560000055 + ], + [ + 31.081083470000067, + 39.27337186800014 + ], + [ + 31.01489459800007, + 39.236045408999985 + ], + [ + 30.995746475000146, + 39.0836964400001 + ], + [ + 31.0188595730001, + 38.947399653000105 + ], + [ + 30.877574548000098, + 38.90095251000014 + ], + [ + 30.770879459000128, + 38.98968099000007 + ], + [ + 30.70140052199997, + 38.95252267200004 + ], + [ + 30.615249477000077, + 38.96887643600013 + ], + [ + 30.63090150800008, + 39.04892612600014 + ], + [ + 30.517745480000144, + 39.047186043000124 + ], + [ + 30.536224559000118, + 39.14209869100017 + ], + [ + 30.307332552000048, + 39.32982901500003 + ], + [ + 30.258817594000107, + 39.47358284500018 + ], + [ + 30.28710350000017, + 39.56895750400014 + ], + [ + 30.372159533000058, + 39.622766640000066 + ], + [ + 30.463371571000096, + 39.58774822200019 + ], + [ + 30.598682478000057, + 39.617211786000155 + ], + [ + 30.672079451000172, + 39.503719475000025 + ], + [ + 30.509950477000075, + 39.36673922800003 + ], + [ + 30.55880557400019, + 39.29721352100006 + ], + [ + 30.638917457000105, + 39.28767240000013 + ], + [ + 30.653024536000032, + 39.39826675100011 + ], + [ + 30.770042610000075, + 39.43578448500017 + ], + [ + 30.875621565000074, + 39.37746907000013 + ], + [ + 30.947475598000096, + 39.48096864300004 + ], + [ + 31.03638847999997, + 39.49428145200011 + ], + [ + 31.364688517000047, + 39.43516925400013 + ], + [ + 31.485448607000137, + 39.37740134500012 + ], + [ + 31.493312509000134, + 39.30361411000001 + ], + [ + 31.761007529999972, + 39.24195012400014 + ], + [ + 31.860864496000033, + 39.23502717500014 + ], + [ + 31.984809542000164, + 39.267275710000035 + ], + [ + 32.016639484000166, + 39.32370201100008 + ], + [ + 31.878978459000166, + 39.42668643200011 + ], + [ + 31.841863559000046, + 39.54373082500018 + ], + [ + 31.672315595000157, + 39.55664750600016 + ], + [ + 31.70349845400017, + 39.62843867400005 + ], + [ + 31.467300446000024, + 39.71639652200014 + ], + [ + 31.215332557000067, + 39.63898662900016 + ], + [ + 31.100975570000116, + 39.768493739000064 + ], + [ + 31.202453595000065, + 39.813308255000095 + ] + ], + [ + [ + 41.181610573000114, + 37.65692468900005 + ], + [ + 41.23526749399997, + 37.61078683800008 + ], + [ + 41.440010566000126, + 37.67499037200008 + ], + [ + 41.589267619, + 37.692755313000134 + ], + [ + 41.806789574000106, + 37.68000744400007 + ], + [ + 41.87952454500015, + 37.61114575100004 + ], + [ + 41.90159661000007, + 37.40757446800012 + ], + [ + 41.78936058000005, + 37.301313561000086 + ], + [ + 41.581199535, + 37.240119801 + ], + [ + 41.42226758600003, + 37.21245650300017 + ], + [ + 41.37342053700007, + 37.276980058000106 + ], + [ + 41.424045555000134, + 37.391392869000185 + ], + [ + 41.56026053500017, + 37.40613278100011 + ], + [ + 41.64036554500012, + 37.49595476400003 + ], + [ + 41.620964457000184, + 37.56904764200016 + ], + [ + 41.37286749900011, + 37.52525940700008 + ], + [ + 41.193519581000146, + 37.54959291 + ], + [ + 41.095348552000075, + 37.509622631000184 + ], + [ + 41.12903558800008, + 37.4379878690001 + ], + [ + 41.05139955100003, + 37.386029122000025 + ], + [ + 40.96533148700013, + 37.43537908500008 + ], + [ + 40.78676945600006, + 37.401028705000044 + ], + [ + 40.65909949200011, + 37.4342461870001 + ], + [ + 40.57247151700017, + 37.41071751400011 + ], + [ + 40.46557257900014, + 37.54107488400007 + ], + [ + 40.53034256300015, + 37.61125253600005 + ], + [ + 40.603900469000166, + 37.58368412200008 + ], + [ + 40.76664350100009, + 37.608852630000115 + ], + [ + 40.85155855100015, + 37.659514697000134 + ], + [ + 41.00272349200003, + 37.63444140700017 + ], + [ + 41.181610573000114, + 37.65692468900005 + ] + ] + ], + [ + [ + [ + 26.115898498000035, + 38.49895073400012 + ], + [ + 26.070680478000043, + 38.59347747900006 + ], + [ + 25.88328744200004, + 38.59015137200009 + ], + [ + 25.827619535000053, + 38.54362409800012 + ], + [ + 25.90901753800017, + 38.47199620900017 + ], + [ + 26.002172501000132, + 38.346033471000055 + ], + [ + 25.855411579000076, + 38.24180618100007 + ], + [ + 26.003761542000063, + 38.13842211100007 + ], + [ + 26.101011568000047, + 38.21866659700004 + ], + [ + 26.155672473000152, + 38.3167300020001 + ], + [ + 26.115898498000035, + 38.49895073400012 + ] + ] + ], + [ + [ + [ + 24.643236498000135, + 38.782271131000186 + ], + [ + 24.672477606000143, + 38.83634731500018 + ], + [ + 24.51437747700004, + 38.97810725800008 + ], + [ + 24.442014496000183, + 38.88195157400003 + ], + [ + 24.57403349400016, + 38.79209405100005 + ], + [ + 24.643236498000135, + 38.782271131000186 + ] + ] + ], + [ + [ + [ + 26.43164847900016, + 39.24664298400012 + ], + [ + 26.413280544000145, + 39.32145499100011 + ], + [ + 26.306676482, + 39.37585236900003 + ], + [ + 26.17652648100011, + 39.37610013800003 + ], + [ + 26.11385951699998, + 39.30812307100018 + ], + [ + 25.852592577000053, + 39.257350027000086 + ], + [ + 25.87656549100012, + 39.14315179300007 + ], + [ + 26.048717544000056, + 39.09108927800014 + ], + [ + 26.11541352200004, + 39.11581891000009 + ], + [ + 26.171113448000142, + 39.20227874400007 + ], + [ + 26.26616456500011, + 39.16123239700005 + ], + [ + 26.10004848699998, + 39.08899849599999 + ], + [ + 26.15765747500012, + 39.013823721 + ], + [ + 26.429948462000084, + 38.96456126400017 + ], + [ + 26.53451555400011, + 39.001937847000136 + ], + [ + 26.58794448700013, + 39.06452384200003 + ], + [ + 26.43164847900016, + 39.24664298400012 + ] + ] + ], + [ + [ + [ + 25.394927587000154, + 39.953797166000186 + ], + [ + 25.283355571000016, + 39.94631749100006 + ], + [ + 25.235774524000192, + 40.00590947 + ], + [ + 25.03023148300008, + 39.985676897000076 + ], + [ + 25.04708246100006, + 39.83095786000018 + ], + [ + 25.231475446000104, + 39.85970963200003 + ], + [ + 25.295454513000152, + 39.793986291000124 + ], + [ + 25.394927587000154, + 39.953797166000186 + ] + ] + ], + [ + [ + [ + 26.017839451000043, + 40.124541228000055 + ], + [ + 25.99434849700009, + 40.1947232390001 + ], + [ + 25.916275595000172, + 40.23358677100015 + ], + [ + 25.718269561000056, + 40.16242458000016 + ], + [ + 25.764541522000115, + 40.07385585900005 + ], + [ + 26.017839451000043, + 40.124541228000055 + ] + ] + ], + [ + [ + [ + 25.620862457999976, + 40.41329444000013 + ], + [ + 25.640331440000068, + 40.494444506000036 + ], + [ + 25.548107539000057, + 40.51274354200012 + ], + [ + 25.50370055100018, + 40.425242507000064 + ], + [ + 25.620862457999976, + 40.41329444000013 + ] + ] + ], + [ + [ + [ + 27.674446508000074, + 40.59304535900014 + ], + [ + 27.639385510000068, + 40.66952553200014 + ], + [ + 27.548955503000172, + 40.651145862000135 + ], + [ + 27.591621570000143, + 40.58199767600007 + ], + [ + 27.674446508000074, + 40.59304535900014 + ] + ] + ], + [ + [ + [ + 24.771432511, + 40.64920478100004 + ], + [ + 24.77979647700016, + 40.73476708099997 + ], + [ + 24.636793496999985, + 40.78792025000007 + ], + [ + 24.56655348400011, + 40.749934806000056 + ], + [ + 24.514627593000114, + 40.64810976900003 + ], + [ + 24.66122054200008, + 40.562471026000026 + ], + [ + 24.771432511, + 40.64920478100004 + ] + ] + ], + [ + [ + [ + 113.01834000800011, + -25.498119991999886 + ], + [ + 112.96415000800005, + -25.4832099919999 + ], + [ + 112.92150000800007, + -25.586979991999954 + ], + [ + 112.98056000800034, + -25.75577999199993 + ], + [ + 112.96693000800008, + -25.77821999199989 + ], + [ + 113.06075000800024, + -25.941829991999953 + ], + [ + 113.15607000800003, + -26.05460999199994 + ], + [ + 113.11543000800009, + -25.837279991999935 + ], + [ + 113.07676000800029, + -25.76802999199998 + ], + [ + 113.00933000800012, + -25.56082999199998 + ], + [ + 113.01834000800011, + -25.498119991999886 + ] + ] + ], + [ + [ + [ + 39.494187307, + 23.63419336300018 + ], + [ + 39.47916862900013, + 23.57915485400008 + ], + [ + 39.57413703700013, + 23.550016820000053 + ], + [ + 39.602465681000126, + 23.66252200800011 + ], + [ + 39.526652833000014, + 23.656676414000174 + ], + [ + 39.494187307, + 23.63419336300018 + ] + ] + ], + [ + [ + [ + 38.97752679100006, + 24.375864255000124 + ], + [ + 38.98499116400012, + 24.426675950000117 + ], + [ + 38.98580055400015, + 24.42748534000009 + ], + [ + 38.91916079100008, + 24.45581398500019 + ], + [ + 38.964126893000184, + 24.30751577900014 + ], + [ + 38.97752679100006, + 24.375864255000124 + ] + ] + ], + [ + [ + [ + 35.354158268000106, + 28.757541128000128 + ], + [ + 35.292464775000155, + 28.730021873 + ], + [ + 35.23913497800004, + 28.64251783800006 + ], + [ + 35.31413843800016, + 28.631636041000036 + ], + [ + 35.350021386000094, + 28.511666480000088 + ], + [ + 35.49580149000019, + 28.58001495600007 + ], + [ + 35.354158268000106, + 28.757541128000128 + ] + ] + ], + [ + [ + [ + 35.64113193300011, + 30.915014716000087 + ], + [ + 35.61783949300002, + 30.852601766000078 + ], + [ + 35.51756508400001, + 30.78029627400008 + ], + [ + 35.514687253000034, + 30.509870134000096 + ], + [ + 35.42844226900007, + 30.407257489000074 + ], + [ + 35.37322389500008, + 30.061737959000027 + ], + [ + 35.404430370000114, + 29.923242364000032 + ], + [ + 35.467832574000056, + 29.94509588900013 + ], + [ + 35.491125016000126, + 30.064885586000116 + ], + [ + 35.557674847000044, + 30.123701249000135 + ], + [ + 35.59616583100018, + 30.27145986000005 + ], + [ + 35.645898341000134, + 30.37829932000011 + ], + [ + 35.64823657700015, + 30.464814101000115 + ], + [ + 35.70705223800013, + 30.601511051000045 + ], + [ + 35.662715662000096, + 30.77211244400013 + ], + [ + 35.718833357000165, + 30.887405529000034 + ], + [ + 35.64113193300011, + 30.915014716000087 + ] + ] + ], + [ + [ + [ + 35.72225078100013, + 30.923738140000182 + ], + [ + 35.800311936000185, + 31.136787534000064 + ], + [ + 35.92864519200015, + 31.236522348000108 + ], + [ + 35.88709651200003, + 31.36692404400003 + ], + [ + 35.77108396799997, + 31.384550756000067 + ], + [ + 35.67800413800012, + 31.283287094000173 + ], + [ + 35.63690511900012, + 31.053600243000062 + ], + [ + 35.64717623200005, + 30.952896835000047 + ], + [ + 35.72225078100013, + 30.923738140000182 + ] + ] + ], + [ + [ + [ + 30.623247489000164, + 31.384167682000168 + ], + [ + 30.61226049100003, + 31.4766814300001 + ], + [ + 30.48320047200002, + 31.450933229000157 + ], + [ + 30.37153055500005, + 31.50367166100017 + ], + [ + 30.31325956400019, + 31.348826729 + ], + [ + 30.161899491000156, + 31.26575955400017 + ], + [ + 30.06583952799997, + 31.327337541000134 + ], + [ + 29.826250537000192, + 31.135444261000032 + ], + [ + 29.780010595000192, + 31.127414565000038 + ], + [ + 29.55656045500018, + 30.97350991500008 + ], + [ + 29.348119454000084, + 30.874722312000188 + ], + [ + 29.10902952200007, + 30.81632928100015 + ], + [ + 29.229278484000133, + 30.779865655000094 + ], + [ + 29.62202848300018, + 30.76880908700008 + ], + [ + 29.934379603000025, + 30.880143225000097 + ], + [ + 30.110202595000032, + 30.97073483400004 + ], + [ + 30.323244590000172, + 31.09107281200005 + ], + [ + 30.587902512000028, + 31.330519311000103 + ], + [ + 30.623247489000164, + 31.384167682000168 + ] + ] + ], + [ + [ + [ + 35.537106154000014, + 30.984855304000064 + ], + [ + 35.602371153000036, + 31.1184413630001 + ], + [ + 35.612353627000175, + 31.408202926000058 + ], + [ + 35.537106154000014, + 30.984855304000064 + ] + ] + ], + [ + [ + [ + 35.617120034000095, + 31.638249506000136 + ], + [ + 35.681691358000194, + 31.750215100000162 + ], + [ + 35.65147413600005, + 31.87576045800006 + ], + [ + 35.59391752500011, + 31.8638894070001 + ], + [ + 35.62701257700019, + 31.756960016000107 + ], + [ + 35.617120034000095, + 31.638249506000136 + ] + ] + ], + [ + [ + [ + 35.647876849000056, + 32.09186754600006 + ], + [ + 35.60506911900018, + 32.09861246100007 + ], + [ + 35.592748407000045, + 31.90687700100011 + ], + [ + 35.64535874500007, + 31.905797814000096 + ], + [ + 35.647876849000056, + 32.09186754600006 + ] + ] + ], + [ + [ + [ + 36.721569261000184, + 32.26239833400007 + ], + [ + 36.82729732100012, + 32.255720773000064 + ], + [ + 36.93859001700008, + 32.29912492400018 + ], + [ + 37.02280056200004, + 32.43393500700006 + ], + [ + 36.98392848100008, + 32.593246991000115 + ], + [ + 36.79959148700016, + 32.79349384300019 + ], + [ + 36.80812459900005, + 32.857170994000114 + ], + [ + 36.766300579000074, + 32.94655024500014 + ], + [ + 36.652194546000146, + 32.973255324000036 + ], + [ + 36.56874850800011, + 32.835045619000084 + ], + [ + 36.59167452200006, + 32.72501805200005 + ], + [ + 36.52869457800017, + 32.46737008300016 + ], + [ + 36.54491054300013, + 32.388515485000084 + ], + [ + 36.62140583600012, + 32.29912492400018 + ], + [ + 36.721569261000184, + 32.26239833400007 + ] + ] + ], + [ + [ + [ + 34.43501653300012, + 35.590456145000076 + ], + [ + 34.35860861200007, + 35.62019832300018 + ], + [ + 34.29720647800019, + 35.57490050600006 + ], + [ + 34.18795054900011, + 35.56145777800015 + ], + [ + 34.129329530000064, + 35.504917315000114 + ], + [ + 33.98458445500006, + 35.44161785199998 + ], + [ + 33.77327349100011, + 35.40681367600013 + ], + [ + 33.68273150200014, + 35.36378048200004 + ], + [ + 33.51283250400019, + 35.333016383000086 + ], + [ + 33.367515449000166, + 35.32865946900017 + ], + [ + 33.125698548, + 35.36108771200003 + ], + [ + 33.01624245900007, + 35.35964166600007 + ], + [ + 32.9459915490001, + 35.29155848400006 + ], + [ + 32.91494347100013, + 35.18011521300019 + ], + [ + 32.82374953800007, + 35.140546092000136 + ], + [ + 32.65591047600003, + 35.1920857450001 + ], + [ + 32.54950758000018, + 35.15517871600008 + ], + [ + 32.447837609000146, + 35.04737436500017 + ], + [ + 32.27495146800004, + 35.04451345399997 + ], + [ + 32.31819152700007, + 34.974252318000026 + ], + [ + 32.318126483000015, + 34.89077040700016 + ], + [ + 32.39144852300012, + 34.83595393300004 + ], + [ + 32.42447255100012, + 34.75176626500013 + ], + [ + 32.50117450800019, + 34.70076137900003 + ], + [ + 32.71277951000013, + 34.63915221100007 + ], + [ + 32.88683660300018, + 34.66239455800019 + ], + [ + 32.949832472000026, + 34.57386875200012 + ], + [ + 33.02133949400019, + 34.646635742000115 + ], + [ + 33.15434655100012, + 34.708569289000025 + ], + [ + 33.272132575000114, + 34.70136454100003 + ], + [ + 33.611698561000026, + 34.81376452100011 + ], + [ + 33.695812468000156, + 34.96959851800011 + ], + [ + 33.91431057900013, + 34.9654176250001 + ], + [ + 34.088726585000074, + 34.984331054000165 + ], + [ + 33.92148548800003, + 35.15755968000008 + ], + [ + 33.91647746900003, + 35.24603167400011 + ], + [ + 33.96398559300013, + 35.30935410200004 + ], + [ + 34.05171260300017, + 35.316399930000046 + ], + [ + 34.132995607000055, + 35.402605625000035 + ], + [ + 34.30229546600009, + 35.48297969500004 + ], + [ + 34.43501653300012, + 35.590456145000076 + ] + ] + ], + [ + [ + [ + 40.220371569000065, + 36.548217330000114 + ], + [ + 40.042423597000095, + 36.437421813000185 + ], + [ + 40.03175360199998, + 36.3709402450001 + ], + [ + 40.09795353800018, + 36.31224848300013 + ], + [ + 40.20771757700004, + 36.287419106000186 + ], + [ + 40.21968458800012, + 36.34656080899998 + ], + [ + 40.51839449500005, + 36.34158262900007 + ], + [ + 40.55437046200018, + 36.363200396000025 + ], + [ + 40.44023861199997, + 36.41680719300018 + ], + [ + 40.221595494000155, + 36.420809049000184 + ], + [ + 40.220371569000065, + 36.548217330000114 + ] + ] + ], + [ + [ + [ + 41.44011651400018, + 36.674060710000106 + ], + [ + 41.655109480000135, + 36.65671587000014 + ], + [ + 41.960739487000126, + 36.690731309 + ], + [ + 41.90864947900019, + 36.763200741000105 + ], + [ + 41.74679157600019, + 36.71565556900009 + ], + [ + 41.64899857000006, + 36.733161341000084 + ], + [ + 41.52659260900015, + 36.71673566100009 + ], + [ + 41.44011651400018, + 36.674060710000106 + ] + ] + ], + [ + [ + [ + 29.77096551500017, + 40.72570808800015 + ], + [ + 29.56430650699997, + 40.69591528400014 + ], + [ + 29.384963451000033, + 40.70978129800005 + ], + [ + 29.3448674440001, + 40.68042753800012 + ], + [ + 28.99614355900019, + 40.65225680000003 + ], + [ + 28.801015535000033, + 40.55926679200013 + ], + [ + 28.85247958200017, + 40.51449033000006 + ], + [ + 29.033370608000098, + 40.59837842900015 + ], + [ + 29.197589526000115, + 40.60216654600015 + ], + [ + 29.305910537000102, + 40.626973292000116 + ], + [ + 29.400453543000083, + 40.61034829000016 + ], + [ + 29.614257453000107, + 40.65396167900013 + ], + [ + 29.77096551500017, + 40.72570808800015 + ] + ] + ], + [ + [ + [ + 29.548429506000048, + 40.852750583000045 + ], + [ + 29.331584474000124, + 40.9342778350001 + ], + [ + 29.136444548000156, + 41.09214310200008 + ], + [ + 29.017667448000054, + 41.030875916000184 + ], + [ + 29.042100528000162, + 40.97251943000009 + ], + [ + 29.291896498000085, + 40.85594358500009 + ], + [ + 29.35839248300016, + 40.76390777400013 + ], + [ + 29.68954655800013, + 40.783575406000125 + ], + [ + 29.780658516000074, + 40.748583643000075 + ], + [ + 29.823144539000054, + 40.81443623300015 + ], + [ + 29.645154490000095, + 40.814653995000015 + ], + [ + 29.548429506000048, + 40.852750583000045 + ] + ] + ], + [ + [ + [ + 113.81855455600032, + -26.268409032999898 + ], + [ + 113.8832200080002, + -26.340309991999902 + ], + [ + 113.88917000800006, + -26.47974999199988 + ], + [ + 113.8649800080002, + -26.535129991999952 + ], + [ + 113.69203000800007, + -26.659989991999964 + ], + [ + 113.59144000800018, + -26.579019991999928 + ], + [ + 113.5603600080002, + -26.35304999199991 + ], + [ + 113.47895000800008, + -26.269419991999882 + ], + [ + 113.4457600080002, + -26.170199991999823 + ], + [ + 113.38719000800018, + -26.11085999199986 + ], + [ + 113.35604000800015, + -26.256599991999906 + ], + [ + 113.27639000800013, + -26.29215999199988 + ], + [ + 113.32851000800008, + -26.434229991999928 + ], + [ + 113.5432000080001, + -26.627699991999975 + ], + [ + 113.75679000800017, + -26.89390999199992 + ], + [ + 113.96446000800029, + -27.229439991999925 + ], + [ + 114.10154000800014, + -27.496989991999953 + ], + [ + 114.16272000900005, + -27.706909991999964 + ], + [ + 114.10456000900001, + -27.84980999199996 + ], + [ + 114.17441000900021, + -28.11024999199998 + ], + [ + 114.2389000090003, + -28.187559991999876 + ], + [ + 114.32313000900001, + -28.232429991999936 + ], + [ + 114.43566000900034, + -28.397419991999982 + ], + [ + 114.53123000900007, + -28.495519991999913 + ], + [ + 114.60206000900018, + -28.624559991999945 + ], + [ + 114.6028600090001, + -28.77576999199988 + ], + [ + 114.63444000900006, + -28.873279991999937 + ], + [ + 114.8721800080001, + -29.11700000099995 + ], + [ + 114.9265700090001, + -29.3123699919999 + ], + [ + 114.99253000900012, + -29.477239991999966 + ], + [ + 114.96034000900022, + -29.66352999099996 + ], + [ + 114.98286000900009, + -29.918779990999894 + ], + [ + 114.95582000900015, + -30.04383999099997 + ], + [ + 115.0424300100002, + -30.274019990999932 + ], + [ + 115.05853001000003, + -30.504089990999944 + ], + [ + 115.17831001000002, + -30.76072999099995 + ], + [ + 115.3113400100001, + -30.97081999099987 + ], + [ + 115.44074001000013, + -31.277159990999905 + ], + [ + 115.53954001000022, + -31.40909999099989 + ], + [ + 115.68590001000018, + -31.653389990999983 + ], + [ + 115.75014001000022, + -31.8399099909999 + ], + [ + 115.7470800100001, + -32.06049999099997 + ], + [ + 115.77457001000005, + -32.18148999099998 + ], + [ + 115.7299800100003, + -32.30967999099994 + ], + [ + 115.74622001000023, + -32.47313999099998 + ], + [ + 115.63442001100009, + -32.59393999099996 + ], + [ + 115.6068600110001, + -32.685209990999965 + ], + [ + 115.68859001100009, + -33.11951999099995 + ], + [ + 115.67863001100022, + -33.28706999099995 + ], + [ + 115.63200001100006, + -33.31821999099998 + ], + [ + 115.59328001100005, + -33.42141999099994 + ], + [ + 115.44054001100017, + -33.597389989999954 + ], + [ + 115.30803001100026, + -33.65506998999996 + ], + [ + 115.13462001100004, + -33.628599989999884 + ], + [ + 115.08491001100003, + -33.565829989999884 + ], + [ + 114.98007001200006, + -33.715919989999975 + ], + [ + 115.00063001200022, + -33.79265998999989 + ], + [ + 114.98261001200012, + -33.96098998999997 + ], + [ + 114.99552001200016, + -34.10411998999996 + ], + [ + 115.05441001200006, + -34.27801998999996 + ], + [ + 115.17101001200001, + -34.32350998999988 + ], + [ + 115.26120001200002, + -34.30665998999996 + ], + [ + 115.38377001200013, + -34.32710998999994 + ], + [ + 115.67392001200017, + -34.484359989999916 + ], + [ + 115.95186001200011, + -34.72550998999992 + ], + [ + 115.99632001200007, + -34.83079998999989 + ], + [ + 116.13535001200012, + -34.84370998999992 + ], + [ + 116.26372001200014, + -34.880259989999956 + ], + [ + 116.47653001200001, + -35.001319989999956 + ], + [ + 116.63569001200005, + -35.054819989999885 + ], + [ + 116.76738001200022, + -35.01498998999995 + ], + [ + 116.85926001200005, + -35.05110998999987 + ], + [ + 116.96974001100023, + -35.01964998999995 + ], + [ + 117.14106001100015, + -35.05275998999997 + ], + [ + 117.20210001100008, + -35.01701998999994 + ], + [ + 117.39823001100001, + -35.03335999099994 + ], + [ + 117.56438001100014, + -35.08960999099992 + ], + [ + 117.64722001100006, + -35.06041999099989 + ], + [ + 117.84836001100018, + -35.047219990999906 + ], + [ + 117.93268001100034, + -35.00472999099992 + ], + [ + 118.03151001100014, + -35.02069999099996 + ], + [ + 118.2583400110002, + -34.909319990999904 + ], + [ + 118.38927001100012, + -34.90794999099995 + ], + [ + 118.43012001100021, + -34.771579990999896 + ], + [ + 118.5216200110001, + -34.71662999099982 + ], + [ + 118.64982001100009, + -34.68909999099998 + ], + [ + 118.75371001000008, + -34.621259990999874 + ], + [ + 118.75021001000005, + -34.55092999099992 + ], + [ + 118.90656001000002, + -34.49962999099995 + ], + [ + 118.96391001000018, + -34.45149999099988 + ], + [ + 119.11615001000007, + -34.4703799909999 + ], + [ + 119.25776001000008, + -34.521279990999915 + ], + [ + 119.27203001000021, + -34.46643999099996 + ], + [ + 119.36600001000022, + -34.46394999099988 + ], + [ + 119.40399001000003, + -34.38125999099992 + ], + [ + 119.5041100100002, + -34.35176999099991 + ], + [ + 119.51112001000001, + -34.265139990999955 + ], + [ + 119.58083001000023, + -34.15393999099996 + ], + [ + 119.66223001000003, + -34.08177999099996 + ], + [ + 119.85373001000005, + -33.97107999099984 + ], + [ + 119.94622001000005, + -33.976189990999956 + ], + [ + 120.04989001000001, + -33.923439990999896 + ], + [ + 120.12010001000021, + -33.95219999099993 + ], + [ + 120.30655000900026, + -33.94062999199997 + ], + [ + 120.4370600090001, + -33.971119991999956 + ], + [ + 120.6007400090001, + -33.88568999199998 + ], + [ + 120.80681000900017, + -33.888559991999955 + ], + [ + 120.86609000900012, + -33.85671999199997 + ], + [ + 121.00574000900019, + -33.87025999199989 + ], + [ + 121.26871000900019, + -33.850929991999976 + ], + [ + 121.31861000900017, + -33.821349991999966 + ], + [ + 121.5301900090002, + -33.82597999199987 + ], + [ + 121.66150000900006, + -33.88430999199994 + ], + [ + 121.78593000900003, + -33.90800999199996 + ], + [ + 122.0188800090001, + -33.8369799919999 + ], + [ + 122.08319000900019, + -33.899599991999935 + ], + [ + 122.12030000900006, + -34.013439991999974 + ], + [ + 122.25353000900009, + -34.00424999199993 + ], + [ + 122.28007000900004, + -33.95359999199991 + ], + [ + 122.39504000900013, + -33.911419991999935 + ], + [ + 122.5750400080002, + -33.947719991999975 + ], + [ + 122.6030000080001, + -33.89791999199991 + ], + [ + 122.83050000800017, + -33.90926999199996 + ], + [ + 123.00217000800012, + -33.883569991999934 + ], + [ + 123.12521000800018, + -33.89644999199987 + ], + [ + 123.1728400080001, + -33.99286999199984 + ], + [ + 123.25341000800017, + -33.997439991999954 + ], + [ + 123.3526800080001, + -33.901689991999945 + ], + [ + 123.57227000800026, + -33.88879999199992 + ], + [ + 123.74390000800008, + -33.80821999199992 + ], + [ + 123.75594000800015, + -33.72437999199997 + ], + [ + 123.868480008, + -33.607399992999945 + ], + [ + 123.97981981900011, + -33.55306031999993 + ], + [ + 124.0165400080001, + -33.376829992999944 + ], + [ + 124.10073000700015, + -33.17808999299996 + ], + [ + 124.23947000700002, + -33.017259992999925 + ], + [ + 124.36898000700023, + -32.95588999299997 + ], + [ + 124.74822000700021, + -32.89878999299998 + ], + [ + 124.89984000700008, + -32.82926999299997 + ], + [ + 125.02606000700007, + -32.72857999299998 + ], + [ + 125.10144000700006, + -32.716419992999874 + ], + [ + 125.31713000700017, + -32.60715999299998 + ], + [ + 125.53120000600006, + -32.54978999299988 + ], + [ + 125.71177000600005, + -32.4218499939999 + ], + [ + 125.94882000600023, + -32.291559993999954 + ], + [ + 126.20606000600003, + -32.2324799939999 + ], + [ + 126.42158000600011, + -32.28440999399987 + ], + [ + 126.68325000600021, + -32.30906999399991 + ], + [ + 126.7722300060002, + -32.292119993999904 + ], + [ + 126.9551300060001, + -32.29768999399988 + ], + [ + 127.22137000600003, + -32.27569999399998 + ], + [ + 127.482820005, + -32.217419993999954 + ], + [ + 127.7073900050001, + -32.13646999399998 + ], + [ + 128.02274000500006, + -32.07386999399989 + ], + [ + 128.43642000500006, + -31.935259994999967 + ], + [ + 128.64322000500022, + -31.851619994999965 + ], + [ + 128.80419000500012, + -31.758109994999927 + ], + [ + 129.0289400050001, + -31.67956999499995 + ], + [ + 129.43765078700005, + -31.63658566999993 + ], + [ + 129.31591788000003, + -31.548740242999884 + ], + [ + 128.99732042900007, + -31.560631549999982 + ], + [ + 128.70007316400017, + -31.623699167999973 + ], + [ + 128.47508243100015, + -31.651792457999875 + ], + [ + 128.34515387900012, + -31.698743855999965 + ], + [ + 128.29635628200003, + -31.64830977699995 + ], + [ + 128.00163264200012, + -31.689863229999958 + ], + [ + 127.89526360800005, + -31.66168209799997 + ], + [ + 127.8238219650002, + -31.697681365999983 + ], + [ + 127.67472098200005, + -31.6944923879999 + ], + [ + 127.43199162800022, + -31.7595996579999 + ], + [ + 127.29277039600015, + -31.76690096599998 + ], + [ + 127.12101748900022, + -31.747667348999926 + ], + [ + 127.05899056700014, + -31.77646438299996 + ], + [ + 126.90020748100028, + -31.774185174999957 + ], + [ + 126.5677719800002, + -31.936378521999984 + ], + [ + 126.2193604050002, + -31.960933474999933 + ], + [ + 126.04159549400003, + -32.03070443699994 + ], + [ + 125.96624000400004, + -32.017471255999965 + ], + [ + 125.87519074400018, + -32.10292056799989 + ], + [ + 125.68963619500005, + -32.088234131999855 + ], + [ + 125.64908605500011, + -32.19348535499995 + ], + [ + 125.51330559400003, + -32.19358442999982 + ], + [ + 125.35961920800003, + -32.2499656359999 + ], + [ + 125.2929230640002, + -32.227157638999984 + ], + [ + 125.2471008760001, + -32.30225379199993 + ], + [ + 125.07144166600017, + -32.28804009599992 + ], + [ + 124.95584868300011, + -32.318046638999874 + ], + [ + 124.8295059090002, + -32.42313005699998 + ], + [ + 124.64624029000015, + -32.47121804099993 + ], + [ + 124.56400292400008, + -32.45378116799992 + ], + [ + 124.42271421100031, + -32.5677643219999 + ], + [ + 124.23799902600024, + -32.556064525999886 + ], + [ + 123.98731993800004, + -32.50738528199997 + ], + [ + 123.79454806700005, + -32.52151867999987 + ], + [ + 123.71459963100006, + -32.422981192999885 + ], + [ + 123.68904874000009, + -32.33172607199998 + ], + [ + 123.71234892200005, + -32.267807019999964 + ], + [ + 123.80481724000003, + -32.27743531199991 + ], + [ + 123.81340785200007, + -32.211418100999936 + ], + [ + 123.92029572500019, + -32.14929964999993 + ], + [ + 123.92553709800029, + -32.08057022299988 + ], + [ + 123.83213050900008, + -32.054054239999914 + ], + [ + 123.94209286500029, + -31.980886427999906 + ], + [ + 123.89556877600012, + -31.89827338399988 + ], + [ + 123.78411109000001, + -31.8701190729999 + ], + [ + 123.74591827700021, + -31.815975163999894 + ], + [ + 123.8217010750003, + -31.74355132999989 + ], + [ + 123.93827826100016, + -31.725570638999955 + ], + [ + 123.93889617500008, + -31.675264299999867 + ], + [ + 124.06889345800005, + -31.564859379999916 + ], + [ + 124.04493714000012, + -31.449434203999942 + ], + [ + 123.9926833500001, + -31.378759336999906 + ], + [ + 124.13694763800004, + -31.23760993199994 + ], + [ + 124.23013311100021, + -31.243341476999944 + ], + [ + 124.27675627500025, + -31.15129091299997 + ], + [ + 124.14590454000017, + -30.970808085999977 + ], + [ + 124.2527999570002, + -30.80699535499997 + ], + [ + 124.33007808600007, + -30.779476225999872 + ], + [ + 124.26080316600007, + -30.680538252999895 + ], + [ + 124.19471739100015, + -30.74987033799988 + ], + [ + 124.1065292080001, + -30.748792591999973 + ], + [ + 124.01853179800003, + -30.572397283999976 + ], + [ + 123.8755113840001, + -30.587543550999953 + ], + [ + 123.74999992700009, + -30.6428012479999 + ], + [ + 123.67565160800007, + -30.61360355899984 + ], + [ + 123.53197472300019, + -30.61579509099988 + ], + [ + 123.4640655500001, + -30.652181602999974 + ], + [ + 123.38029479800002, + -30.59767525999996 + ], + [ + 123.05911250500003, + -30.66147981599994 + ], + [ + 122.85438535900016, + -30.651065803999984 + ], + [ + 122.8175432060001, + -30.70359619699991 + ], + [ + 122.73309318500026, + -30.70335764799995 + ], + [ + 122.63020331100017, + -30.658515974999943 + ], + [ + 122.529449483, + -30.65307997499997 + ], + [ + 122.43206031700004, + -30.69142332699994 + ], + [ + 122.34918207000021, + -30.627424309999924 + ], + [ + 122.14329537000015, + -30.60843460599989 + ], + [ + 122.08435064200023, + -30.566566496999883 + ], + [ + 121.98367308800016, + -30.622102807999966 + ], + [ + 121.86804959600022, + -30.72859002599995 + ], + [ + 121.77333073700015, + -30.744830969999953 + ], + [ + 121.61434179200023, + -30.683193134999897 + ], + [ + 121.50923926400014, + -30.67924492399993 + ], + [ + 121.5075149390002, + -30.62094694299992 + ], + [ + 121.21632393400012, + -30.433593804999873 + ], + [ + 120.99051663500006, + -30.207084606999956 + ], + [ + 120.86219020100009, + -30.16885189599992 + ], + [ + 120.86598971800015, + -30.12488562799996 + ], + [ + 120.67732246400021, + -30.102073608999945 + ], + [ + 120.66439052900012, + -30.014467297999943 + ], + [ + 120.56882476300007, + -29.96321682099989 + ], + [ + 120.4917374050001, + -29.87996474199997 + ], + [ + 120.45130913900005, + -29.934412074999955 + ], + [ + 120.34700758600013, + -29.951198512999895 + ], + [ + 120.28588104800008, + -29.896942117999913 + ], + [ + 120.14043424100021, + -29.87693786899996 + ], + [ + 120.10745245800001, + -29.926609025999937 + ], + [ + 119.9544981480002, + -29.94171137199993 + ], + [ + 119.83940120600005, + -29.810274077999964 + ], + [ + 119.81278229300017, + -29.8596535449999 + ], + [ + 119.6444626120001, + -29.847734478999882 + ], + [ + 119.56152351300034, + -29.81465915399997 + ], + [ + 119.212539622, + -29.731308 + ], + [ + 119.17647547800004, + -29.699136746999898 + ], + [ + 119.219383278, + -29.59956174799993 + ], + [ + 119.18103020400008, + -29.50518218899998 + ], + [ + 119.04685973800031, + -29.518102557999953 + ], + [ + 119.01840217100005, + -29.445657767999933 + ], + [ + 119.13504792100002, + -29.44643024499993 + ], + [ + 119.15276340900016, + -29.37062649199993 + ], + [ + 119.02716830100007, + -29.34140583599992 + ], + [ + 118.91584019800007, + -29.35326002699992 + ], + [ + 118.87185666400012, + -29.18347166899997 + ], + [ + 118.76628122900013, + -29.279262572999926 + ], + [ + 118.6375122300002, + -29.26978297699992 + ], + [ + 118.64430995300017, + -29.34321967999989 + ], + [ + 118.58007808800005, + -29.429801889999965 + ], + [ + 118.47242729400011, + -29.397384711999962 + ], + [ + 118.3534927820001, + -29.424217194999983 + ], + [ + 118.3163299370002, + -29.353355411999928 + ], + [ + 118.14575200400009, + -29.36184125099993 + ], + [ + 118.05692294200003, + -29.409585912999887 + ], + [ + 117.80599960600011, + -29.320396427999924 + ], + [ + 117.66521447800005, + -29.384843875999877 + ], + [ + 117.69107063800004, + -29.211479127999894 + ], + [ + 117.68672948200003, + -29.11109544399983 + ], + [ + 117.43293014800008, + -29.009630158999983 + ], + [ + 117.35202030700009, + -28.796478192999814 + ], + [ + 117.4148406600001, + -28.71356960399993 + ], + [ + 117.28690331300015, + -28.53654095899992 + ], + [ + 117.22636417800015, + -28.396760988999972 + ], + [ + 117.32261659000017, + -28.34953114299998 + ], + [ + 117.38877864000006, + -28.247058856999956 + ], + [ + 117.34691623100002, + -28.142616151999903 + ], + [ + 117.09548193400008, + -28.13242543399997 + ], + [ + 117.02073664700015, + -28.08901974899993 + ], + [ + 116.97604366900009, + -28.142198564999944 + ], + [ + 116.8328552810002, + -28.00154872099995 + ], + [ + 116.62958524500027, + -28.110776822999867 + ], + [ + 116.57208253900012, + -28.069398886999977 + ], + [ + 116.4625548690002, + -28.04687688099989 + ], + [ + 116.2720642170002, + -27.818662634999953 + ], + [ + 116.14886482500003, + -27.726276459999895 + ], + [ + 115.97065734900013, + -27.671665175999976 + ], + [ + 115.7890778340003, + -27.52440267999998 + ], + [ + 115.56908422400011, + -27.500040007999928 + ], + [ + 115.42361445000029, + -27.344964907999838 + ], + [ + 115.29364013300017, + -27.253089861999968 + ], + [ + 115.34996031900005, + -27.141332605999878 + ], + [ + 115.40568539100002, + -26.87237744899994 + ], + [ + 115.39295193800012, + -26.760417853999968 + ], + [ + 115.23945615700029, + -26.712932527999953 + ], + [ + 115.07688897800006, + -26.53042027399988 + ], + [ + 114.9550018560002, + -26.485010139999815 + ], + [ + 114.8976211910001, + -26.52432629499998 + ], + [ + 114.86862181700019, + -26.63623811399998 + ], + [ + 114.67826846100013, + -26.775199841999893 + ], + [ + 114.6649551490001, + -26.913070750999907 + ], + [ + 114.56906131500011, + -26.90903285299993 + ], + [ + 114.52565009700004, + -26.863054257999977 + ], + [ + 114.65457164700001, + -26.710357606999878 + ], + [ + 114.70713037100006, + -26.703630459999886 + ], + [ + 114.7290572620002, + -26.612203509999972 + ], + [ + 114.66642768100007, + -26.553218883999932 + ], + [ + 114.48455044100012, + -26.745767627999953 + ], + [ + 114.37615969200021, + -26.646747511999934 + ], + [ + 114.26884467700006, + -26.74070546099989 + ], + [ + 114.19926448800027, + -26.597902305999924 + ], + [ + 114.13543696500017, + -26.590347360999942 + ], + [ + 114.0836029410001, + -26.506048214999964 + ], + [ + 114.02602379200005, + -26.491256668999824 + ], + [ + 113.96569068500003, + -26.372762709999904 + ], + [ + 113.9157791340001, + -26.334589008999956 + ], + [ + 113.87840271900018, + -26.218109051999875 + ], + [ + 113.81855455600032, + -26.268409032999898 + ] + ] + ], + [ + [ + [ + 137.37924687400005, + -33.356802850999884 + ], + [ + 137.11154189400008, + -33.289859608999905 + ], + [ + 137.06465786800015, + -33.12916317799994 + ], + [ + 136.97026480700004, + -33.150260748999926 + ], + [ + 136.90873001100022, + -33.111525790999906 + ], + [ + 136.80714718700006, + -33.10669654399993 + ], + [ + 136.71483074200012, + -33.03177522699997 + ], + [ + 136.67860628900007, + -33.06603849499993 + ], + [ + 136.55234057000018, + -33.023103123999874 + ], + [ + 136.3951831290001, + -32.82916139899987 + ], + [ + 136.26122297600023, + -32.82119353699994 + ], + [ + 136.16477945600002, + -32.84626124999994 + ], + [ + 135.97763793800004, + -32.85172884899998 + ], + [ + 135.90952880300006, + -32.80936870399995 + ], + [ + 135.72956410200015, + -32.81551756199997 + ], + [ + 135.58661731800032, + -32.78852223699994 + ], + [ + 135.2620582950002, + -32.57542158399997 + ], + [ + 135.17959539000003, + -32.64485699499994 + ], + [ + 135.08375414900001, + -32.50920053899995 + ], + [ + 134.9792825850002, + -32.428815852999946 + ], + [ + 134.70515452100005, + -32.262080941999955 + ], + [ + 134.61465481900018, + -32.26568241199993 + ], + [ + 134.44325269100023, + -32.19018522999994 + ], + [ + 134.39976465700022, + -32.12878384099986 + ], + [ + 134.22375451400023, + -32.07608444399989 + ], + [ + 134.13815271600004, + -31.984285297999918 + ], + [ + 134.03805561700028, + -32.01388572299993 + ], + [ + 133.93936168900007, + -31.973686235999935 + ], + [ + 133.8283687720001, + -31.96488771399993 + ], + [ + 133.8092651940001, + -31.87218645799993 + ], + [ + 133.67807037600016, + -31.87869052699989 + ], + [ + 133.30886809400022, + -31.794992327999978 + ], + [ + 133.2589720530001, + -31.860195464999947 + ], + [ + 133.16906742000015, + -31.83979416199992 + ], + [ + 133.09597807900002, + -31.779396 + ], + [ + 132.90617409000015, + -31.78209878799987 + ], + [ + 132.85276778000014, + -31.829498433999902 + ], + [ + 132.6560672600002, + -31.809299558999953 + ], + [ + 132.48156752400007, + -31.85290150999998 + ], + [ + 132.35237141000027, + -31.829402919999893 + ], + [ + 132.279281566, + -31.864204666999967 + ], + [ + 132.19587731500008, + -31.75330566899987 + ], + [ + 132.1130829750001, + -31.759505975999957 + ], + [ + 132.12979161600015, + -31.83550675999993 + ], + [ + 132.09202759700008, + -31.933260996999934 + ], + [ + 132.150870004, + -32.00249999599998 + ], + [ + 132.27014000300017, + -32.03287999599996 + ], + [ + 132.43724000300017, + -31.994769995999945 + ], + [ + 132.5592100030001, + -31.932189995999977 + ], + [ + 132.74847000300008, + -31.948949995999897 + ], + [ + 132.93510000300012, + -32.054289995999966 + ], + [ + 133.0559600030001, + -32.10405999599993 + ], + [ + 133.14052000300023, + -32.17870999599995 + ], + [ + 133.25681000300017, + -32.207219995999935 + ], + [ + 133.47413000300025, + -32.10075999599991 + ], + [ + 133.55048000300008, + -32.16973999599992 + ], + [ + 133.60071000300013, + -32.084629995999876 + ], + [ + 133.67248000300003, + -32.11235999599995 + ], + [ + 133.71557000300004, + -32.194959995999966 + ], + [ + 133.80814000300018, + -32.23212999599997 + ], + [ + 133.9026900030002, + -32.318609995999964 + ], + [ + 133.84695000300007, + -32.50689999599996 + ], + [ + 133.99143000300023, + -32.505159995999975 + ], + [ + 134.0499800030002, + -32.45949999599998 + ], + [ + 134.13662000300008, + -32.45783999599996 + ], + [ + 134.25741000300002, + -32.55928999599996 + ], + [ + 134.290150003, + -32.69283999599992 + ], + [ + 134.23164000300017, + -32.76237999599988 + ], + [ + 134.16213000300002, + -32.72095999599992 + ], + [ + 134.06075000300007, + -32.723219995999955 + ], + [ + 134.1383300030002, + -32.83996999599998 + ], + [ + 134.074550003, + -32.882379995999884 + ], + [ + 134.20545000300012, + -32.9760999959999 + ], + [ + 134.259800003, + -33.152799995999885 + ], + [ + 134.32872000300006, + -33.1995799959999 + ], + [ + 134.41596000300012, + -33.14944999599993 + ], + [ + 134.55820000300002, + -33.16248999599998 + ], + [ + 134.60046000300008, + -33.140769995999904 + ], + [ + 134.71577000300022, + -33.19152999599987 + ], + [ + 134.69633000300007, + -33.263569995999944 + ], + [ + 134.8025400030001, + -33.329429995999874 + ], + [ + 134.86287000300024, + -33.548639995999906 + ], + [ + 134.84248000300022, + -33.63037999599993 + ], + [ + 135.043750003, + -33.758459995999885 + ], + [ + 135.25336000300013, + -33.98288999599998 + ], + [ + 135.28121000300007, + -34.06990999599998 + ], + [ + 135.24445000300022, + -34.15251999599997 + ], + [ + 135.306540003, + -34.188359995999974 + ], + [ + 135.35141000400006, + -34.28693999599983 + ], + [ + 135.44738000400002, + -34.63042999599992 + ], + [ + 135.37703000400018, + -34.64505999499994 + ], + [ + 135.31800000400006, + -34.517269995999925 + ], + [ + 135.25077000400006, + -34.55021999499996 + ], + [ + 135.68577000400012, + -34.94501999499994 + ], + [ + 135.7137900040001, + -34.86478999499991 + ], + [ + 135.80095000400001, + -34.862959994999926 + ], + [ + 135.92801000400004, + -34.948399994999875 + ], + [ + 135.9913000040001, + -34.923179995999874 + ], + [ + 135.96008000400002, + -34.84810999599995 + ], + [ + 136.0034200040002, + -34.775219995999976 + ], + [ + 135.85543000400003, + -34.74961999599998 + ], + [ + 135.86043000400002, + -34.637199995999936 + ], + [ + 135.93422000300006, + -34.5274799959999 + ], + [ + 136.0255300030002, + -34.483729995999965 + ], + [ + 136.11241000300015, + -34.515979995999885 + ], + [ + 136.1277000030001, + -34.345229995999944 + ], + [ + 136.18691000300032, + -34.33498999599993 + ], + [ + 136.32423000300014, + -34.18234999599997 + ], + [ + 136.36092000300005, + -34.07129999599994 + ], + [ + 136.50056000300015, + -33.991879995999966 + ], + [ + 136.59301000300002, + -33.89945999599996 + ], + [ + 136.79724000300007, + -33.804989995999904 + ], + [ + 136.85453000300004, + -33.79937999599997 + ], + [ + 136.9886000030001, + -33.72527999599993 + ], + [ + 137.2092900030002, + -33.663589996999974 + ], + [ + 137.27956000200004, + -33.56308999699996 + ], + [ + 137.37924687400005, + -33.356802850999884 + ] + ] + ], + [ + [ + [ + 141.38058571200008, + -37.25854672899982 + ], + [ + 141.3407684110001, + -37.25094792899989 + ], + [ + 141.2270616950001, + -37.34997762099994 + ], + [ + 141.3825953700001, + -37.37501500399998 + ], + [ + 141.38058571200008, + -37.25854672899982 + ] + ] + ], + [ + [ + [ + 137.92091134400005, + -32.74509669099996 + ], + [ + 137.8972400020001, + -32.77572999699993 + ], + [ + 137.95131000200013, + -33.00905999699995 + ], + [ + 138.04057000200032, + -33.07291999699987 + ], + [ + 138.0224700020002, + -33.14043999699987 + ], + [ + 137.83619000200008, + -33.20189999699994 + ], + [ + 137.8111500020002, + -33.27626999699993 + ], + [ + 137.88462000200002, + -33.33534999699998 + ], + [ + 137.87278000200013, + -33.4008299969999 + ], + [ + 137.9412300020001, + -33.54972999699987 + ], + [ + 137.59989000200017, + -33.87674999699988 + ], + [ + 137.56761000300014, + -34.04402999599995 + ], + [ + 137.5188600030001, + -34.132779995999954 + ], + [ + 137.47195000300007, + -34.39797999599989 + ], + [ + 137.47706000300013, + -34.520009995999885 + ], + [ + 137.5093200030002, + -34.62568999599995 + ], + [ + 137.45988000300008, + -34.80773999599995 + ], + [ + 137.45728000300005, + -34.89059999599988 + ], + [ + 137.37784000300007, + -34.95383999599994 + ], + [ + 137.2914200030002, + -34.900719995999964 + ], + [ + 137.09420000300008, + -34.91925999599988 + ], + [ + 137.008720003, + -34.89635999599989 + ], + [ + 136.93576000300004, + -35.032109995999974 + ], + [ + 136.94153000300003, + -35.128299995999896 + ], + [ + 136.8461800030002, + -35.19226999599988 + ], + [ + 136.88329000400017, + -35.30107999599994 + ], + [ + 137.00240000300005, + -35.223489995999955 + ], + [ + 137.13713000300015, + -35.24367999599997 + ], + [ + 137.2125300030002, + -35.18153999599997 + ], + [ + 137.30121000300005, + -35.16781999599988 + ], + [ + 137.4261100030002, + -35.097709995999935 + ], + [ + 137.5593900030002, + -35.11913999599989 + ], + [ + 137.6362100030001, + -35.168059995999954 + ], + [ + 137.75507000300001, + -35.11095999599996 + ], + [ + 137.72663000300008, + -35.049569995999946 + ], + [ + 137.83197000300004, + -34.81229999599998 + ], + [ + 137.86407000300017, + -34.777529995999885 + ], + [ + 137.88536000300007, + -34.512609995999924 + ], + [ + 137.9165600030002, + -34.42944999599996 + ], + [ + 138.01618000300016, + -34.32609999599987 + ], + [ + 138.0094900030001, + -34.23507999699996 + ], + [ + 138.09052000200018, + -34.13258999699997 + ], + [ + 138.15578000200003, + -34.20951999699997 + ], + [ + 138.1553100030003, + -34.271809996999934 + ], + [ + 138.22408000200005, + -34.31412999699995 + ], + [ + 138.26309000300023, + -34.47315999599988 + ], + [ + 138.33174000300005, + -34.51993999599989 + ], + [ + 138.4292600030002, + -34.66569999599989 + ], + [ + 138.54198000300005, + -34.75477999599997 + ], + [ + 138.4765300030001, + -34.85966999599992 + ], + [ + 138.51761000300007, + -35.03292999599989 + ], + [ + 138.46759000300028, + -35.12150999599987 + ], + [ + 138.46913000300003, + -35.24198999599997 + ], + [ + 138.43911000300022, + -35.351489995999884 + ], + [ + 138.340580003, + -35.392779995999945 + ], + [ + 138.2890800030002, + -35.47286999599993 + ], + [ + 138.12311000300008, + -35.56110999599986 + ], + [ + 138.09522000300012, + -35.62419999599996 + ], + [ + 138.16254000300023, + -35.66078999599995 + ], + [ + 138.283620003, + -35.638929995999945 + ], + [ + 138.52300000300033, + -35.642629995999926 + ], + [ + 138.6312600030002, + -35.54393999599995 + ], + [ + 138.71080000300014, + -35.51334999599993 + ], + [ + 138.95140000300034, + -35.591299995999975 + ], + [ + 139.15315000300006, + -35.71312999599991 + ], + [ + 139.4134000030001, + -35.92713999599994 + ], + [ + 139.53271000300015, + -36.054789995999954 + ], + [ + 139.7086200030002, + -36.3112499959999 + ], + [ + 139.80584000300018, + -36.51438999599998 + ], + [ + 139.86222000300017, + -36.69471999599989 + ], + [ + 139.85056000300017, + -36.82344999599991 + ], + [ + 139.6763300030002, + -36.96742999599991 + ], + [ + 139.74228000300013, + -37.02493999599989 + ], + [ + 139.79558000300017, + -37.1392399959999 + ], + [ + 139.75723000400012, + -37.19464999599995 + ], + [ + 139.82794000400008, + -37.30417999599996 + ], + [ + 139.97342000400022, + -37.45960999499994 + ], + [ + 140.11559000400018, + -37.5259299949999 + ], + [ + 140.112640004, + -37.57857999499987 + ], + [ + 140.28020000400022, + -37.72816999499997 + ], + [ + 140.37578000400003, + -37.89910999499989 + ], + [ + 140.57128000400007, + -38.02193999499991 + ], + [ + 140.66202000400017, + -38.06008999499994 + ], + [ + 140.84584000400014, + -38.04131999499998 + ], + [ + 140.98787000400011, + -38.05808999499993 + ], + [ + 141.23958000400012, + -38.17785999499989 + ], + [ + 141.38489000400023, + -38.30779999499998 + ], + [ + 141.4069100040001, + -38.369369994999886 + ], + [ + 141.5794700040002, + -38.388329994999935 + ], + [ + 141.50755621200005, + -38.26481157899997 + ], + [ + 141.3833376870001, + -38.20524229499995 + ], + [ + 141.53568023700018, + -38.14838850399991 + ], + [ + 141.51723339500006, + -38.06559239599994 + ], + [ + 141.32397168700015, + -38.08003822099988 + ], + [ + 141.32221587800007, + -37.971890336999934 + ], + [ + 141.38565156100003, + -37.9436446869999 + ], + [ + 141.50228033700012, + -37.996519737999904 + ], + [ + 141.54696185300008, + -37.94387766999995 + ], + [ + 141.67530459500017, + -37.943687286999875 + ], + [ + 141.66185110400022, + -37.87066713699994 + ], + [ + 141.57248048600025, + -37.848997253999926 + ], + [ + 141.4349887200001, + -37.85629665399989 + ], + [ + 141.47742956100012, + -37.75819550499995 + ], + [ + 141.3176697780002, + -37.68675176299996 + ], + [ + 141.2723894620002, + -37.49417830399983 + ], + [ + 141.19098794500007, + -37.32361008799995 + ], + [ + 141.26027845300007, + -37.17824471299997 + ], + [ + 141.39437112000007, + -37.119845378999855 + ], + [ + 141.69037580300017, + -37.09546213799996 + ], + [ + 141.79144232000021, + -37.159367045999886 + ], + [ + 141.89557683600003, + -37.11933119599996 + ], + [ + 141.94914990300015, + -36.9908343379999 + ], + [ + 142.03472100300007, + -37.022399045999975 + ], + [ + 142.11285592800004, + -36.97343926299993 + ], + [ + 142.150670095, + -37.053855145999876 + ], + [ + 142.25977987800024, + -37.034545971999876 + ], + [ + 142.33878415300023, + -36.969590037999865 + ], + [ + 142.35057616900008, + -36.887599929999965 + ], + [ + 142.45990218500003, + -36.88009182999991 + ], + [ + 142.54880495300017, + -37.05420796299995 + ], + [ + 142.5365736860001, + -37.093705437999915 + ], + [ + 142.64630951100003, + -37.247354578999875 + ], + [ + 142.75223304400015, + -37.261123962999875 + ], + [ + 142.68769639400023, + -37.15383221299987 + ], + [ + 142.70989177700005, + -37.05911419599988 + ], + [ + 142.65051624400007, + -37.00321562999994 + ], + [ + 142.68002213500006, + -36.94234092999989 + ], + [ + 142.79633891100002, + -36.97783942999996 + ], + [ + 142.96599176100005, + -36.969058696999866 + ], + [ + 143.0620817360002, + -36.94272471299996 + ], + [ + 143.0336966860001, + -36.882204137999906 + ], + [ + 142.9222259520002, + -36.86872327999998 + ], + [ + 142.96856044400022, + -36.77568568799995 + ], + [ + 142.95763526000007, + -36.673000471999956 + ], + [ + 143.15902960200003, + -36.665282329999854 + ], + [ + 143.29561703500008, + -36.46575860499985 + ], + [ + 143.27596812700006, + -36.38393085499996 + ], + [ + 143.38297473600016, + -36.376801238999974 + ], + [ + 143.4029162270001, + -36.27203265599985 + ], + [ + 143.3495829100001, + -36.1278386059999 + ], + [ + 143.35283412700005, + -35.99203992199995 + ], + [ + 143.32386176800014, + -35.9377058309999 + ], + [ + 143.36572309300016, + -35.83841631399997 + ], + [ + 143.45979507700008, + -35.84303071399995 + ], + [ + 143.52026252700023, + -35.73570017299983 + ], + [ + 143.60013224400018, + -35.66421171499991 + ], + [ + 143.67256069300015, + -35.44995701399995 + ], + [ + 143.5703728100001, + -35.4212088299999 + ], + [ + 143.52167744400015, + -35.31032458899995 + ], + [ + 143.45364606800013, + -35.27997222299996 + ], + [ + 143.2883456180001, + -35.03157597299986 + ], + [ + 143.2539627010001, + -34.89804994799994 + ], + [ + 143.34311457700005, + -34.86309348999987 + ], + [ + 143.20985426000016, + -34.801449564999984 + ], + [ + 143.1611777840003, + -34.715913247999936 + ], + [ + 142.99900374300012, + -34.71854219799985 + ], + [ + 142.87425730200016, + -34.69562941499993 + ], + [ + 142.77462308500003, + -34.591846964999945 + ], + [ + 142.7055657840001, + -34.629463088999955 + ], + [ + 142.7122130350001, + -34.739136664999876 + ], + [ + 142.6029595440002, + -34.7955031059999 + ], + [ + 142.48835996900027, + -34.76239955599988 + ], + [ + 142.36096365900005, + -34.77274215599988 + ], + [ + 142.3263509850002, + -34.71233189799989 + ], + [ + 142.37046549300032, + -34.65239648099998 + ], + [ + 142.3752677020002, + -34.508383789999925 + ], + [ + 142.2933200010001, + -34.35618177299989 + ], + [ + 142.20921781000004, + -34.27456591399988 + ], + [ + 142.2152301020003, + -34.20827489799996 + ], + [ + 142.09015213400005, + -34.20454694799997 + ], + [ + 142.02542692600002, + -34.13195673099989 + ], + [ + 141.85774446000028, + -34.23691858999996 + ], + [ + 141.63471056900016, + -34.24779703899998 + ], + [ + 141.53260258500006, + -34.22069693999998 + ], + [ + 141.47879686800013, + -34.26749024699984 + ], + [ + 141.36313091800002, + -34.244528913999886 + ], + [ + 141.21699020200015, + -34.24527197199984 + ], + [ + 141.0990407600001, + -34.189648597999906 + ], + [ + 140.92965662000006, + -33.97862595099997 + ], + [ + 140.81951941900013, + -34.07672491999995 + ], + [ + 140.80668612500017, + -34.13827512099988 + ], + [ + 140.84170540700006, + -34.25462330599987 + ], + [ + 140.70541363400002, + -34.283424267999976 + ], + [ + 140.61572233800018, + -34.373028156999965 + ], + [ + 140.66943326600017, + -34.45322407799989 + ], + [ + 140.5580750590002, + -34.495765879999965 + ], + [ + 140.386322, + -34.365726666999876 + ], + [ + 140.31492615700006, + -34.19682687199992 + ], + [ + 140.1817323070003, + -34.16553123799997 + ], + [ + 139.94830299600017, + -34.198990075999916 + ], + [ + 139.83383174100004, + -34.074432681999895 + ], + [ + 139.92262238000023, + -34.06653234599992 + ], + [ + 139.95602413000006, + -34.132732191999935 + ], + [ + 140.10893250900006, + -34.16593171299991 + ], + [ + 140.1601260110001, + -34.14723229299989 + ], + [ + 140.3708343940001, + -34.18202613799991 + ], + [ + 140.48251363100007, + -34.176628249999965 + ], + [ + 140.5593107330003, + -34.243026509999936 + ], + [ + 140.65310655100006, + -34.23172345399996 + ], + [ + 140.64622587200006, + -34.06432193099988 + ], + [ + 140.72430663900013, + -33.977034474999925 + ], + [ + 140.86357556000019, + -33.95175700999994 + ], + [ + 140.89184452900008, + -33.891483698999934 + ], + [ + 140.9662400850002, + -33.88974085499996 + ], + [ + 141.05066879900016, + -33.9558069119999 + ], + [ + 141.0505316340001, + -34.03255836099987 + ], + [ + 141.16988745800018, + -34.0650283789999 + ], + [ + 141.25318562300026, + -33.91054171099995 + ], + [ + 141.38256556900035, + -33.90015487899984 + ], + [ + 141.36536908900007, + -33.991176521999876 + ], + [ + 141.53075979400012, + -34.04891610699991 + ], + [ + 141.60708460600006, + -34.10196239099997 + ], + [ + 141.77041530100007, + -34.06189751799997 + ], + [ + 141.7517382860001, + -33.96741618199991 + ], + [ + 141.67008828700023, + -33.89878285799989 + ], + [ + 141.7434521580003, + -33.762702108999974 + ], + [ + 141.68047860700017, + -33.730632173999936 + ], + [ + 141.7091338790001, + -33.6017682719999 + ], + [ + 141.74876075900033, + -33.578101665999895 + ], + [ + 141.7343246700001, + -33.442188226999974 + ], + [ + 141.69256065000002, + -33.369838417999915 + ], + [ + 141.681908313, + -33.11542438699996 + ], + [ + 141.76801434300035, + -33.169616152999936 + ], + [ + 141.88521710700013, + -33.10727246299996 + ], + [ + 141.9010102740002, + -33.16883375499998 + ], + [ + 141.99813234900034, + -33.13274260799989 + ], + [ + 141.97350438800004, + -33.075007083999935 + ], + [ + 142.04918792700016, + -32.98940513799994 + ], + [ + 142.12548190400003, + -32.8330326329999 + ], + [ + 142.06958877300008, + -32.80613898699988 + ], + [ + 142.06496493500015, + -32.72429871299994 + ], + [ + 141.94136803800006, + -32.468218100999934 + ], + [ + 141.82859024200002, + -32.47343310699995 + ], + [ + 141.82611845300005, + -32.63571394999991 + ], + [ + 141.700309585, + -32.65767919099994 + ], + [ + 141.61371567800006, + -32.72385271499991 + ], + [ + 141.52501618300016, + -32.66894398599993 + ], + [ + 141.43614922600023, + -32.68181088199998 + ], + [ + 141.3781661690001, + -32.80986676899994 + ], + [ + 141.1860887370001, + -32.78147369699991 + ], + [ + 141.15648641100006, + -32.672144510999885 + ], + [ + 140.76559828600023, + -32.583583198999975 + ], + [ + 140.6036459170001, + -32.59317134199995 + ], + [ + 140.55985300200018, + -32.50296108799989 + ], + [ + 140.59802165800022, + -32.432499065999934 + ], + [ + 140.61137003700003, + -32.31615892899998 + ], + [ + 140.66486960100008, + -32.30754326999988 + ], + [ + 140.65597908900008, + -32.19478795899994 + ], + [ + 140.5618106820001, + -32.22070371099994 + ], + [ + 140.48756771900014, + -32.17373900999996 + ], + [ + 140.34811092400003, + -32.22841531399996 + ], + [ + 140.30831029800026, + -32.17264251699993 + ], + [ + 140.23309026700008, + -32.22175257799995 + ], + [ + 140.1373522470002, + -32.15038330599998 + ], + [ + 140.11465972100007, + -32.23904833499989 + ], + [ + 139.972436506, + -32.179218749999905 + ], + [ + 140.0119593490001, + -32.11922749099989 + ], + [ + 139.84713376700017, + -32.04798536699997 + ], + [ + 139.73925440000016, + -32.06912256299995 + ], + [ + 139.61614470200016, + -31.967596008999976 + ], + [ + 139.4621861620002, + -31.928753850999954 + ], + [ + 139.3166448100003, + -31.962897941999927 + ], + [ + 139.29626749800002, + -31.891862037999942 + ], + [ + 139.3508777420002, + -31.800318874999903 + ], + [ + 139.13782726500006, + -31.782343784999966 + ], + [ + 139.27793488600003, + -31.672982283999943 + ], + [ + 139.24723749300006, + -31.58865394999998 + ], + [ + 139.25553182500028, + -31.491140775999895 + ], + [ + 139.35558975900005, + -31.417939558999933 + ], + [ + 139.37097845200014, + -31.35660091999989 + ], + [ + 139.31509434400027, + -31.304917831999944 + ], + [ + 139.33426766500008, + -31.241759497999965 + ], + [ + 139.24444970500008, + -31.199184705999926 + ], + [ + 139.2133095160001, + -31.121878917999936 + ], + [ + 139.24753210400002, + -31.019757779999964 + ], + [ + 139.420952155, + -30.865857063999897 + ], + [ + 139.4058480010002, + -30.78992500299995 + ], + [ + 139.3076060110002, + -30.648107491999838 + ], + [ + 139.42739002000008, + -30.45364127099998 + ], + [ + 139.49724298500007, + -30.416975299999933 + ], + [ + 139.48761877400023, + -30.35129842399988 + ], + [ + 139.5366353400001, + -30.260884791999956 + ], + [ + 139.49929233700004, + -30.194844079999882 + ], + [ + 139.51764189500022, + -30.124922519999984 + ], + [ + 139.67766585200013, + -30.02375270999994 + ], + [ + 139.73488997200002, + -29.916618315999983 + ], + [ + 139.6829307060002, + -29.858829836999973 + ], + [ + 139.5367430760001, + -29.83005656699993 + ], + [ + 139.5389091730002, + -29.75780739499993 + ], + [ + 139.3499301410002, + -29.81159917799988 + ], + [ + 139.30463777400018, + -29.85556804999993 + ], + [ + 139.19729519800023, + -29.856414204999965 + ], + [ + 139.15602384600015, + -29.935385836999956 + ], + [ + 139.17016776000014, + -30.01045069099996 + ], + [ + 139.085059354, + -30.07381780599991 + ], + [ + 138.96604288100025, + -30.056702035999933 + ], + [ + 138.88233767700012, + -29.962138896999875 + ], + [ + 138.73163992000002, + -30.150557380999942 + ], + [ + 138.6730123250003, + -30.10288153199997 + ], + [ + 138.57651300200018, + -30.113320717999898 + ], + [ + 138.47300385100004, + -30.17086582299993 + ], + [ + 138.53290010100022, + -30.32607557599988 + ], + [ + 138.5110480290001, + -30.401437738999903 + ], + [ + 138.39859880400002, + -30.38801577399994 + ], + [ + 138.38082322900016, + -30.472703725999963 + ], + [ + 138.25668334700003, + -30.363898126999914 + ], + [ + 138.1591107700001, + -30.36069736299993 + ], + [ + 138.19863995100002, + -30.490450818999932 + ], + [ + 138.17341944700001, + -30.712491238999917 + ], + [ + 138.12092132800012, + -30.735569101999943 + ], + [ + 138.17302118000032, + -30.98960191799995 + ], + [ + 138.30451075800022, + -31.076729977999946 + ], + [ + 138.35409056100002, + -31.24086587699992 + ], + [ + 138.2960968110001, + -31.389656463999984 + ], + [ + 138.3238676630001, + -31.43044277599995 + ], + [ + 138.2048996860001, + -31.485865829999966 + ], + [ + 138.29363712600002, + -31.626464720999934 + ], + [ + 138.09258090000014, + -31.863295214999937 + ], + [ + 138.06198186200004, + -31.982431068999972 + ], + [ + 138.01018100700014, + -31.97243900999996 + ], + [ + 137.90456520400028, + -32.049948342999926 + ], + [ + 137.83252966200007, + -32.187093638999954 + ], + [ + 137.85766944900013, + -32.24656881799996 + ], + [ + 137.83906122000008, + -32.49917460099988 + ], + [ + 137.98123174200032, + -32.59534809999997 + ], + [ + 137.92091134400005, + -32.74509669099996 + ] + ], + [ + [ + 140.52174356600017, + -37.76340125599984 + ], + [ + 140.3881991500001, + -37.534137598999905 + ], + [ + 140.50798009300013, + -37.52934261699994 + ], + [ + 140.611175752, + -37.62054062199991 + ], + [ + 140.63157661700006, + -37.70114128899996 + ], + [ + 140.72846991200004, + -37.71223827599994 + ], + [ + 140.9293666870002, + -37.78093746099995 + ], + [ + 140.80906662900009, + -37.95333836599997 + ], + [ + 140.72407505900014, + -37.95974336899985 + ], + [ + 140.67617768000002, + -37.884341923999955 + ], + [ + 140.52174356600017, + -37.76340125599984 + ] + ] + ], + [ + [ + [ + 143.74172854300002, + -35.717784663999964 + ], + [ + 143.63933461800002, + -35.749447080999914 + ], + [ + 143.54655801, + -35.878943222999965 + ], + [ + 143.57188418500016, + -35.96359417199983 + ], + [ + 143.4114560600002, + -36.073410913999965 + ], + [ + 143.46206046800035, + -36.158323646999975 + ], + [ + 143.64500327700011, + -36.122423513999934 + ], + [ + 143.66857058400012, + -36.061026863999984 + ], + [ + 143.7569598770001, + -36.01491322199996 + ], + [ + 143.7922075260002, + -35.94568658099996 + ], + [ + 143.81335112600027, + -35.75612408899997 + ], + [ + 143.74172854300002, + -35.717784663999964 + ] + ] + ], + [ + [ + [ + 137.63088000300002, + -35.585169995999934 + ], + [ + 137.5113800030001, + -35.59566999599997 + ], + [ + 137.3289200040001, + -35.57849999599995 + ], + [ + 137.07054000400012, + -35.66911999499996 + ], + [ + 136.7836700040001, + -35.699999994999985 + ], + [ + 136.69896000400013, + -35.738979994999966 + ], + [ + 136.58696000400005, + -35.748349994999955 + ], + [ + 136.53864000400006, + -35.898919994999915 + ], + [ + 136.75663000400004, + -36.049319994999905 + ], + [ + 136.8563900040001, + -36.01736999499991 + ], + [ + 136.91393000400012, + -36.04280999499997 + ], + [ + 137.17702000400027, + -36.00954999499993 + ], + [ + 137.20860000400023, + -35.973589994999884 + ], + [ + 137.368450004, + -35.9970899949999 + ], + [ + 137.45668000400008, + -36.066759994999984 + ], + [ + 137.6165700040002, + -35.98944999599996 + ], + [ + 137.5980600040001, + -35.938529995999886 + ], + [ + 137.74352000400017, + -35.85266999599992 + ], + [ + 137.93752000300003, + -35.86461999599993 + ], + [ + 138.04293000300015, + -35.90378999599983 + ], + [ + 138.11952000300005, + -35.82005999599994 + ], + [ + 138.06404000300006, + -35.755439995999836 + ], + [ + 137.97344000300018, + -35.71988999599995 + ], + [ + 137.8220800030001, + -35.79978999599996 + ], + [ + 137.78069000300013, + -35.72427999599995 + ], + [ + 137.58994000300015, + -35.733959995999896 + ], + [ + 137.63942000300017, + -35.657499995999956 + ], + [ + 137.63088000300002, + -35.585169995999934 + ] + ] + ], + [ + [ + [ + 143.45695337000006, + -34.93552709599987 + ], + [ + 143.34640253200018, + -34.89301264199986 + ], + [ + 143.3326235740002, + -34.97188528599992 + ], + [ + 143.4031802500001, + -35.18247861499992 + ], + [ + 143.4917269550001, + -35.120196328999896 + ], + [ + 143.493971159, + -35.021892 + ], + [ + 143.45695337000006, + -34.93552709599987 + ] + ] + ], + [ + [ + [ + 143.4096509550002, + -34.729774002999875 + ], + [ + 143.2740607200002, + -34.74000173299993 + ], + [ + 143.47686633600006, + -34.88406692899997 + ], + [ + 143.50456129400004, + -34.95968903199986 + ], + [ + 143.7667836930001, + -34.99305230099998 + ], + [ + 143.73411477200023, + -34.838347558999885 + ], + [ + 143.57556065400001, + -34.76819922499993 + ], + [ + 143.60822972000017, + -34.68267744799988 + ], + [ + 143.55250486700004, + -34.66057887799991 + ], + [ + 143.4096509550002, + -34.729774002999875 + ] + ] + ], + [ + [ + [ + 143.5014327250001, + -34.419368131999875 + ], + [ + 143.41723457100022, + -34.43575232799998 + ], + [ + 143.29266235500018, + -34.4041438349999 + ], + [ + 143.36889473300005, + -34.51756623899996 + ], + [ + 143.33991803800006, + -34.62293223099988 + ], + [ + 143.41723478300003, + -34.68862877299989 + ], + [ + 143.6057274030003, + -34.61171632899993 + ], + [ + 143.64475918400012, + -34.49829397699989 + ], + [ + 143.60867201700023, + -34.401812812999935 + ], + [ + 143.5014327250001, + -34.419368131999875 + ] + ] + ], + [ + [ + [ + 145.83183329500014, + -33.35734265699995 + ], + [ + 145.68684371800032, + -33.36073462599995 + ], + [ + 145.57063241000003, + -33.498861684999895 + ], + [ + 145.53242440400004, + -33.617407319999984 + ], + [ + 145.43841491600017, + -33.65266281699991 + ], + [ + 145.4048456720002, + -33.70806371499992 + ], + [ + 145.4476472050003, + -33.83410513399991 + ], + [ + 145.59286593000002, + -33.985075655999935 + ], + [ + 145.534119636, + -34.02033113899995 + ], + [ + 145.581116919, + -34.08580674399997 + ], + [ + 145.72046063300013, + -34.152960468999936 + ], + [ + 145.77922372600005, + -34.15295949399996 + ], + [ + 145.85141133200023, + -33.89611259499998 + ], + [ + 145.8878189210002, + -33.83744239099997 + ], + [ + 145.8979347940001, + -33.68773018199988 + ], + [ + 145.84332328100004, + -33.523858351999934 + ], + [ + 145.87365787900012, + -33.434842021999884 + ], + [ + 145.83183329500014, + -33.35734265699995 + ] + ] + ], + [ + [ + [ + 141.86245664500018, + -34.01713242699992 + ], + [ + 141.94593679700017, + -33.83592794899994 + ], + [ + 142.00623922400007, + -33.77680772899993 + ], + [ + 142.10076752400028, + -33.79104373399991 + ], + [ + 142.1611304940002, + -33.73132080499988 + ], + [ + 142.27993536500003, + -33.718987485999946 + ], + [ + 142.38444265600015, + -33.6670578159999 + ], + [ + 142.4285857750001, + -33.554104620999965 + ], + [ + 142.53374866100035, + -33.421028726999964 + ], + [ + 142.41625534700006, + -33.324956141999905 + ], + [ + 142.37600225500012, + -33.25679520299991 + ], + [ + 142.18834889000016, + -33.1349240319999 + ], + [ + 142.20171523500005, + -32.95301990899992 + ], + [ + 142.07419722800012, + -32.997316742999885 + ], + [ + 142.153955407, + -33.10365120699993 + ], + [ + 142.06254024800012, + -33.161024548999876 + ], + [ + 142.01116387900015, + -33.235972222999976 + ], + [ + 142.07039887800022, + -33.29580926899996 + ], + [ + 142.03231329800008, + -33.355646741999976 + ], + [ + 141.9507242210002, + -33.32421778299994 + ], + [ + 141.90841102700017, + -33.24685208099993 + ], + [ + 141.79303927700005, + -33.27914767999994 + ], + [ + 141.89148975500007, + -33.34839580099998 + ], + [ + 141.87482794900006, + -33.47370455999993 + ], + [ + 141.7927509990002, + -33.51309925499993 + ], + [ + 141.7330146590001, + -33.683810782999956 + ], + [ + 141.80129826900009, + -33.80462125899987 + ], + [ + 141.72643910700015, + -33.87027980899995 + ], + [ + 141.77043038700003, + -33.943814721999956 + ], + [ + 141.86245664500018, + -34.01713242699992 + ] + ] + ], + [ + [ + [ + 142.2311794750001, + -32.75412159399997 + ], + [ + 142.1228420010002, + -32.795660032999876 + ], + [ + 142.19770192100032, + -32.846647157999826 + ], + [ + 142.2311794750001, + -32.75412159399997 + ] + ] + ], + [ + [ + [ + 144.81078124300018, + -30.831773341999963 + ], + [ + 144.76053409400004, + -30.843156615999874 + ], + [ + 144.617452629, + -31.06092512099991 + ], + [ + 144.52229871100008, + -31.1110678149999 + ], + [ + 144.4404507060001, + -31.20948358399994 + ], + [ + 144.33911682300015, + -31.18207335099987 + ], + [ + 144.32250017700017, + -31.355675247999955 + ], + [ + 144.2352810110001, + -31.435416068999928 + ], + [ + 144.14806180400024, + -31.42794095399995 + ], + [ + 144.11400476900008, + -31.555857600999957 + ], + [ + 144.16135281000004, + -31.628953056999933 + ], + [ + 144.07331011200017, + -31.722813391999978 + ], + [ + 143.90053456300018, + -31.627291615999923 + ], + [ + 143.80585384100016, + -31.620646157999943 + ], + [ + 143.72623345900013, + -31.570080428999972 + ], + [ + 143.59841112400022, + -31.62139377199992 + ], + [ + 143.57228797300002, + -31.711891823999963 + ], + [ + 143.40901881700006, + -31.669907278999915 + ], + [ + 143.36423452400015, + -31.766935909999916 + ], + [ + 143.2886674140001, + -31.826646149999874 + ], + [ + 143.31479631700017, + -31.91527773499996 + ], + [ + 143.23996779900028, + -32.07882841499992 + ], + [ + 143.26111657100012, + -32.1495224169999 + ], + [ + 143.37062903600008, + -32.15839914199995 + ], + [ + 143.40245914300021, + -32.24131907499992 + ], + [ + 143.3685393420002, + -32.369805446999976 + ], + [ + 143.16375102200004, + -32.35355510699992 + ], + [ + 143.0615629780001, + -32.39459357299995 + ], + [ + 142.9627316750001, + -32.381192671999884 + ], + [ + 142.60665244400002, + -32.43304956099996 + ], + [ + 142.5399106100001, + -32.495766989999936 + ], + [ + 142.549569721, + -32.62361273699997 + ], + [ + 142.43699040000013, + -32.728143028999966 + ], + [ + 142.416086016, + -32.79246624599995 + ], + [ + 142.43377129700002, + -32.90905885899991 + ], + [ + 142.39035992000015, + -32.93317924999991 + ], + [ + 142.38553836000006, + -33.05620325199993 + ], + [ + 142.32039852700007, + -33.09319070499987 + ], + [ + 142.32764685100005, + -33.18002856199996 + ], + [ + 142.39840204800032, + -33.204953469999964 + ], + [ + 142.52544745300008, + -33.302246785999955 + ], + [ + 142.62595760700015, + -33.43170210699998 + ], + [ + 142.5262418660002, + -33.55150653599998 + ], + [ + 142.2729622920001, + -33.748505645999956 + ], + [ + 142.1451248430002, + -33.82649722699995 + ], + [ + 142.03898481900012, + -33.80559324799998 + ], + [ + 142.06632874000024, + -33.90931783199994 + ], + [ + 141.9955585340001, + -33.92138009099989 + ], + [ + 141.94084141500014, + -34.050484145999974 + ], + [ + 142.11521891800032, + -34.14148035299996 + ], + [ + 142.16752566900004, + -34.06519347899996 + ], + [ + 142.29176294500007, + -34.15782587299998 + ], + [ + 142.25035047100016, + -34.20686809099993 + ], + [ + 142.26724095500003, + -34.29023528699997 + ], + [ + 142.40508811100028, + -34.34363200599989 + ], + [ + 142.41653211400012, + -34.447708856999895 + ], + [ + 142.47646876000022, + -34.524536913999896 + ], + [ + 142.5554767970001, + -34.70544239499998 + ], + [ + 142.66826980100006, + -34.6945436019999 + ], + [ + 142.6361216910002, + -34.56867282899998 + ], + [ + 142.69497582100007, + -34.52780524899998 + ], + [ + 142.79007471500006, + -34.54676729799996 + ], + [ + 142.9006637220001, + -34.51945105099992 + ], + [ + 142.94958173100008, + -34.649899707999964 + ], + [ + 143.19656135100013, + -34.60674682199988 + ], + [ + 143.29121184400003, + -34.63064208399982 + ], + [ + 143.33154148300025, + -34.5443720909999 + ], + [ + 143.25273027200012, + -34.45686281099995 + ], + [ + 143.23318368200023, + -34.38890406799993 + ], + [ + 143.2896562830001, + -34.33739039599993 + ], + [ + 143.27506879100008, + -34.27470738899996 + ], + [ + 143.3926833390001, + -34.190612373999954 + ], + [ + 143.39010423900004, + -34.03886749399993 + ], + [ + 143.47924552700022, + -33.815009707999934 + ], + [ + 143.61390453600018, + -33.820819522999955 + ], + [ + 143.805585134, + -33.731048281999904 + ], + [ + 143.8419619650001, + -33.63689411899992 + ], + [ + 143.92686216200013, + -33.69443101799993 + ], + [ + 144.05230480300008, + -33.65513568599988 + ], + [ + 144.00536854100005, + -33.59638938499995 + ], + [ + 144.01038867600005, + -33.513240488999884 + ], + [ + 144.14097327100023, + -33.40863766299998 + ], + [ + 144.22846712500007, + -33.39546944999995 + ], + [ + 144.2786836460001, + -33.2907332499999 + ], + [ + 144.4267702100002, + -33.28696001899988 + ], + [ + 144.50504811300004, + -33.32091831699995 + ], + [ + 144.54465991300003, + -33.25112084699998 + ], + [ + 144.50127915100018, + -33.20490211999993 + ], + [ + 144.3678865170001, + -33.22159149699996 + ], + [ + 144.28716742500012, + -33.14265041899989 + ], + [ + 144.16828615200006, + -33.14987173799983 + ], + [ + 144.11739811300004, + -33.25733172899993 + ], + [ + 144.00686340100026, + -33.17973709199998 + ], + [ + 144.0013700610001, + -33.10114676199993 + ], + [ + 143.8551752440003, + -33.022861840999894 + ], + [ + 143.98533269200004, + -32.994564251999975 + ], + [ + 143.9853328680001, + -33.070022779999874 + ], + [ + 144.1047939660001, + -33.015747167999905 + ], + [ + 144.28019409, + -33.09669852399992 + ], + [ + 144.36907647600003, + -33.046699228999955 + ], + [ + 144.437817321, + -32.955421204999936 + ], + [ + 144.5303925940002, + -32.96966141299998 + ], + [ + 144.6087162050003, + -32.90700115299995 + ], + [ + 144.63149751100002, + -32.824401576999946 + ], + [ + 144.75681819300007, + -32.84576378899993 + ], + [ + 144.81663272900005, + -32.81158412499991 + ], + [ + 144.87217498600012, + -32.90842373199996 + ], + [ + 145.00707813600002, + -32.915888762999884 + ], + [ + 145.1186816170001, + -33.03996134799996 + ], + [ + 145.2356709080001, + -33.07978282499994 + ], + [ + 145.32812407500012, + -33.08136203899994 + ], + [ + 145.38885410800003, + -33.13298240499995 + ], + [ + 145.49969445600004, + -33.15423766999993 + ], + [ + 145.79197747600017, + -33.25264066499989 + ], + [ + 145.88830675600013, + -33.25821351999997 + ], + [ + 145.93750101700005, + -33.30667534799994 + ], + [ + 146.06843689100003, + -33.36392559799998 + ], + [ + 146.07098573400003, + -33.20189258399995 + ], + [ + 146.1303272370002, + -33.13921328299989 + ], + [ + 146.22337543000003, + -33.15782126099998 + ], + [ + 146.24873546200013, + -33.06647866299994 + ], + [ + 146.1438616590001, + -32.97006195499989 + ], + [ + 146.13540819600007, + -32.846580631999984 + ], + [ + 146.09480460200007, + -32.82966252199998 + ], + [ + 146.12590170600004, + -32.722713645999875 + ], + [ + 146.04913500300017, + -32.71294822799996 + ], + [ + 146.04576291800015, + -32.9260826819999 + ], + [ + 146.00177197400023, + -33.00220106199998 + ], + [ + 145.82585306800013, + -32.96160174299996 + ], + [ + 145.7649706960001, + -32.787377320999894 + ], + [ + 145.5818641760003, + -32.733293567999965 + ], + [ + 145.58845606300008, + -32.822694499999955 + ], + [ + 145.67073205500014, + -32.873463866999884 + ], + [ + 145.6429911800002, + -32.93316767899995 + ], + [ + 145.439437665, + -32.982530537999935 + ], + [ + 145.40512036000018, + -33.05539524999995 + ], + [ + 145.28854299700004, + -32.99728240299987 + ], + [ + 145.32577443200012, + -32.914465492999966 + ], + [ + 145.2906029510001, + -32.83794312899994 + ], + [ + 145.13171235200002, + -32.846480559999975 + ], + [ + 145.10781681100002, + -32.727856333999966 + ], + [ + 145.18345517800003, + -32.67292463399997 + ], + [ + 145.32334855400006, + -32.79926605399993 + ], + [ + 145.49052454500008, + -32.72193779899993 + ], + [ + 145.56196645500006, + -32.65492123699994 + ], + [ + 145.53176900300014, + -32.61146827099998 + ], + [ + 145.53544515400006, + -32.30436644399998 + ], + [ + 145.4470805650003, + -32.20126343399994 + ], + [ + 145.53544461100012, + -32.153392315999895 + ], + [ + 145.52882185100032, + -32.07680109199998 + ], + [ + 145.38447281000003, + -31.998736163999922 + ], + [ + 145.31304557800013, + -31.914044241999875 + ], + [ + 145.15314936700008, + -32.136118258999886 + ], + [ + 145.0420197750003, + -32.215259028999924 + ], + [ + 144.98753030600017, + -32.15118757699992 + ], + [ + 144.8605919150002, + -32.1318321629999 + ], + [ + 144.77570654400006, + -32.06763468199995 + ], + [ + 144.6867632320001, + -32.13728005699994 + ], + [ + 144.58829753900034, + -32.10868106299995 + ], + [ + 144.49900331600008, + -32.19246382499989 + ], + [ + 144.41962691100002, + -32.18033716899998 + ], + [ + 144.37066072100026, + -32.104726061999884 + ], + [ + 144.47034641900018, + -32.06458368099993 + ], + [ + 144.43665460300008, + -32.014305957999966 + ], + [ + 144.30167532100018, + -32.07119832399991 + ], + [ + 144.23677859800011, + -31.938116242999968 + ], + [ + 144.33158176000006, + -31.952276939999933 + ], + [ + 144.535576901, + -31.877536858999918 + ], + [ + 144.62477897100007, + -31.72605245799997 + ], + [ + 144.58710418600015, + -31.590716276999956 + ], + [ + 144.64937489200008, + -31.534582739999905 + ], + [ + 144.60471176900012, + -31.431707759999938 + ], + [ + 144.84776993600008, + -31.457305824999935 + ], + [ + 145.06941885100002, + -31.221363348999944 + ], + [ + 145.07015104900017, + -31.101852310999902 + ], + [ + 145.12793598200017, + -30.90924152899987 + ], + [ + 145.03163738700016, + -30.86546639599993 + ], + [ + 144.99741175000008, + -30.802369338999938 + ], + [ + 144.81078124300018, + -30.831773341999963 + ] + ], + [ + [ + 144.52326521100008, + -32.25089317499993 + ], + [ + 144.49163371800012, + -32.319705866999925 + ], + [ + 144.4122268440002, + -32.31970584599992 + ], + [ + 144.4174297310002, + -32.23215180699992 + ], + [ + 144.52326521100008, + -32.25089317499993 + ] + ] + ], + [ + [ + [ + 138.0040381020001, + -29.685701363999897 + ], + [ + 137.8141100370001, + -29.7287180969999 + ], + [ + 137.59137194800007, + -29.87529062199991 + ], + [ + 137.63875984100025, + -29.948446041999887 + ], + [ + 137.58633332800002, + -30.03693136399994 + ], + [ + 137.7295475520001, + -30.1141569589999 + ], + [ + 137.82371368200018, + -30.13285554099997 + ], + [ + 137.85666210500005, + -30.185370430999967 + ], + [ + 138.0637683650001, + -30.30761096799995 + ], + [ + 138.1243914580001, + -30.291520956999932 + ], + [ + 138.18650344300022, + -30.127574404999905 + ], + [ + 138.25555257400015, + -30.069339970999977 + ], + [ + 138.19897511500005, + -29.98890253299993 + ], + [ + 138.12880295000014, + -29.954705280999974 + ], + [ + 138.0912210910002, + -29.763946907999923 + ], + [ + 138.0040381020001, + -29.685701363999897 + ] + ] + ] + ] + }, + "properties": { + "biome_name": "Mediterranean Forests, Woodlands & Scrub", + "biome_num": 12, + "color_bio": "#FE0000", + "area_km2": 3303393.831717467, + "percentage": 4.329213597858222 + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + -70.30879957199994, + -22.958491769999966 + ], + [ + -70.30363464299995, + -23.111401823999813 + ], + [ + -70.31999159199995, + -23.311596540999915 + ], + [ + -70.37762455199999, + -23.547298339999884 + ], + [ + -70.38873258599989, + -23.738698763999935 + ], + [ + -70.39394361499984, + -24.09544278999988 + ], + [ + -70.36634854599993, + -24.246632373999887 + ], + [ + -70.3507005379999, + -24.538839097999983 + ], + [ + -70.30373354999989, + -24.769691630999944 + ], + [ + -70.31024964099998, + -25.073855139999978 + ], + [ + -70.29781357899998, + -25.267439719999913 + ], + [ + -70.31328556599993, + -25.458562702999927 + ], + [ + -70.36721758099998, + -25.834119239999893 + ], + [ + -70.36677551999992, + -26.058761788999902 + ], + [ + -70.27693157599998, + -26.238980753999954 + ], + [ + -70.1118625659999, + -26.299983071999975 + ], + [ + -70.00304450699997, + -26.31445140999989 + ], + [ + -69.8710635629999, + -26.18854902199996 + ], + [ + -69.77498650099989, + -25.939821408999933 + ], + [ + -69.72080956599984, + -25.742412501999922 + ], + [ + -69.4956055969999, + -25.366350032999947 + ], + [ + -69.42980950199984, + -25.180359959999976 + ], + [ + -69.42931362799993, + -25.081602867999948 + ], + [ + -69.29160348499994, + -25.012951057999942 + ], + [ + -69.24347660899986, + -24.946248374999982 + ], + [ + -69.26538053299993, + -24.66949771299994 + ], + [ + -69.07690455499994, + -24.443544737999957 + ], + [ + -68.95071449999989, + -24.211949064999885 + ], + [ + -68.88306449499999, + -23.92438356799994 + ], + [ + -68.75329553399996, + -23.70424444799994 + ], + [ + -68.74536155999994, + -23.60415563999993 + ], + [ + -68.84267461799988, + -23.454342195999914 + ], + [ + -68.86688255999991, + -23.359255203999965 + ], + [ + -68.84399459999986, + -23.20503388499992 + ], + [ + -68.7951735339999, + -23.163410191999958 + ], + [ + -68.6766354859999, + -22.983526335999954 + ], + [ + -68.59925057099991, + -22.797217079999882 + ], + [ + -68.50491359199992, + -22.670369714999822 + ], + [ + -68.44464854599994, + -22.520505812999886 + ], + [ + -68.42628463399996, + -22.292448643999876 + ], + [ + -68.44403063199996, + -22.247885249999968 + ], + [ + -68.57416554599996, + -22.22546248499998 + ], + [ + -68.70269750499989, + -22.17759008399986 + ], + [ + -68.82582062199998, + -22.22982627199991 + ], + [ + -68.87607549599994, + -22.198447778999878 + ], + [ + -68.8651734899999, + -21.904012642999874 + ], + [ + -68.90821053999991, + -21.328870082999913 + ], + [ + -68.88040156399984, + -21.015115162999848 + ], + [ + -68.88652052099997, + -20.737664779999875 + ], + [ + -68.94244357299988, + -20.58323542199986 + ], + [ + -68.99058553699996, + -20.290553779999982 + ], + [ + -69.0475925369999, + -20.050113522999936 + ], + [ + -69.11131260299999, + -19.916511182999955 + ], + [ + -69.19622061199988, + -19.660234156999877 + ], + [ + -69.20417755299997, + -19.59488079399995 + ], + [ + -69.27910656999995, + -19.40883774699995 + ], + [ + -69.38990057799998, + -19.243249393999974 + ], + [ + -69.41379553999991, + -19.1490029389999 + ], + [ + -69.47132858799995, + -18.76688454599997 + ], + [ + -69.50992557599994, + -18.582643272999917 + ], + [ + -69.55802948599995, + -18.455489969999974 + ], + [ + -69.71045657499997, + -18.312588410999922 + ], + [ + -69.76768452199997, + -18.149066364999953 + ], + [ + -69.83461753899996, + -17.847544663999884 + ], + [ + -69.8955685599999, + -17.715023589999873 + ], + [ + -69.94609852799994, + -17.4794538889999 + ], + [ + -69.93443259499998, + -17.40644348899997 + ], + [ + -69.97397656999982, + -17.340157553999916 + ], + [ + -70.05184964699993, + -17.30833163599982 + ], + [ + -70.06039449499997, + -17.216529343999923 + ], + [ + -70.22953761299988, + -17.114505320999967 + ], + [ + -70.32166260799994, + -17.122926116999906 + ], + [ + -70.4590684879999, + -17.17183904799998 + ], + [ + -70.54760753699998, + -17.12048396499989 + ], + [ + -70.67820764699991, + -16.88756143699993 + ], + [ + -70.6547245719999, + -16.70955479199995 + ], + [ + -70.69313849899993, + -16.554775405999976 + ], + [ + -70.51375554499998, + -16.607756073999838 + ], + [ + -70.50607252499998, + -16.554117257999962 + ], + [ + -70.66734352699996, + -16.4367848629999 + ], + [ + -70.62719756399997, + -16.25407211399994 + ], + [ + -70.53963450299989, + -16.187500356999976 + ], + [ + -70.53334053199995, + -16.13489687399982 + ], + [ + -70.64908556299997, + -15.98519809399994 + ], + [ + -70.68110661199995, + -16.094784269999934 + ], + [ + -70.75668355099992, + -16.225489991999837 + ], + [ + -70.76727257699997, + -16.318042128999934 + ], + [ + -70.84696955599992, + -16.374612598999875 + ], + [ + -70.90344950199994, + -16.53290165599998 + ], + [ + -71.03391248399993, + -16.578752677999944 + ], + [ + -71.11078660599992, + -16.658278833999873 + ], + [ + -71.18581352499996, + -16.563143729999865 + ], + [ + -71.3204724869999, + -16.467153838999877 + ], + [ + -71.37053658899998, + -16.375053486999946 + ], + [ + -71.37069651599995, + -16.270505337999907 + ], + [ + -71.21338663299997, + -16.134669891999977 + ], + [ + -71.34240759299996, + -16.012868432999937 + ], + [ + -71.43295259899998, + -16.04318460399992 + ], + [ + -71.49523952699997, + -16.15470347899992 + ], + [ + -71.58719654899994, + -16.111325285999953 + ], + [ + -71.58240562099991, + -15.926856862999955 + ], + [ + -71.63715352999998, + -15.880471745999841 + ], + [ + -71.69709050799997, + -15.932403503999865 + ], + [ + -71.81899254899986, + -15.84792280499994 + ], + [ + -72.00036654099995, + -15.811890343999949 + ], + [ + -72.14141854799993, + -15.869197750999945 + ], + [ + -72.21668250699997, + -15.845361126999933 + ], + [ + -71.9850155879999, + -15.675475874999961 + ], + [ + -71.71554561499988, + -15.677499769999883 + ], + [ + -71.59224664499999, + -15.65062369999987 + ], + [ + -71.49559056099997, + -15.598822699999914 + ], + [ + -71.34280355399994, + -15.463454628999898 + ], + [ + -71.42945063999986, + -15.348321979999923 + ], + [ + -71.50072464499993, + -15.3480328039999 + ], + [ + -71.63115661399996, + -15.504381952999893 + ], + [ + -71.70444462199998, + -15.515324359999966 + ], + [ + -71.94091755699998, + -15.487188154999956 + ], + [ + -72.10111953099994, + -15.488403027999937 + ], + [ + -72.2139666029999, + -15.460862775999942 + ], + [ + -72.33149764899997, + -15.201756355999976 + ], + [ + -72.42698663699997, + -15.213283651999916 + ], + [ + -72.43473855699995, + -15.28366615799996 + ], + [ + -72.3881226019999, + -15.583344844999942 + ], + [ + -72.52568052999993, + -15.571014562999892 + ], + [ + -72.62166555899995, + -15.662248728999941 + ], + [ + -72.72148161999996, + -15.69710973499997 + ], + [ + -72.78289062799996, + -15.681111531999932 + ], + [ + -72.85959660899988, + -15.590911524999967 + ], + [ + -72.81362153499998, + -15.443615669999872 + ], + [ + -72.92597960599994, + -15.41592454399995 + ], + [ + -72.98294855199993, + -15.375203078999903 + ], + [ + -72.95807659599984, + -15.314276029999917 + ], + [ + -72.86024453099986, + -15.240383853999901 + ], + [ + -72.64923849999997, + -15.121943538999915 + ], + [ + -72.51391552299992, + -15.019496229999902 + ], + [ + -72.45442161199986, + -14.887520816999938 + ], + [ + -72.52160658899993, + -14.870241858999975 + ], + [ + -72.66535958199995, + -14.945899934999943 + ], + [ + -72.73238362699988, + -14.927437954999903 + ], + [ + -72.8116455849999, + -14.961794872999974 + ], + [ + -73.09944158399992, + -15.162445732999913 + ], + [ + -73.16790060999989, + -15.179091857999936 + ], + [ + -73.20928156399992, + -15.060914565999951 + ], + [ + -73.28029656799998, + -15.06597807399993 + ], + [ + -73.27081261199999, + -14.959538967999947 + ], + [ + -73.30984461999992, + -14.871229749999884 + ], + [ + -73.20614656399988, + -14.79206585999998 + ], + [ + -73.06567357799997, + -14.739348382999879 + ], + [ + -73.08930149299988, + -14.678335167999933 + ], + [ + -73.40317560399996, + -14.740291178999883 + ], + [ + -73.52675653999995, + -14.66760817599993 + ], + [ + -73.58913449599993, + -14.669938847999958 + ], + [ + -73.71226448599998, + -14.745193921999942 + ], + [ + -73.71003758199993, + -14.806776937999928 + ], + [ + -73.61525753599989, + -14.88539969299984 + ], + [ + -73.63415554199997, + -14.961376783999924 + ], + [ + -73.69862360899992, + -14.960021094999945 + ], + [ + -73.80113964999998, + -14.846696422999912 + ], + [ + -73.89851355999997, + -14.847450458999958 + ], + [ + -73.9696045039999, + -14.930764899999929 + ], + [ + -74.05309261899993, + -14.742867105999949 + ], + [ + -73.95084362599988, + -14.708388481999918 + ], + [ + -73.93199155199989, + -14.662053320999973 + ], + [ + -73.97820249299997, + -14.593915824999954 + ], + [ + -74.19141363499995, + -14.522683393999841 + ], + [ + -74.24045564699998, + -14.477110315999937 + ], + [ + -74.28650649399998, + -14.347823817999938 + ], + [ + -74.32296760499997, + -14.336099714999875 + ], + [ + -74.40448764899998, + -14.453740060999962 + ], + [ + -74.3360445479999, + -14.637921821999953 + ], + [ + -74.33525849299997, + -14.730948877999879 + ], + [ + -74.39111365199989, + -14.727901217999886 + ], + [ + -74.49157763399995, + -14.492648519999932 + ], + [ + -74.51406862799996, + -14.377689879999934 + ], + [ + -74.49332459099998, + -14.290824696999948 + ], + [ + -74.51851656799994, + -14.179069954999818 + ], + [ + -74.5817716059999, + -14.152963678999981 + ], + [ + -74.6630405279999, + -14.239924080999913 + ], + [ + -74.71814751799991, + -14.154390614999954 + ], + [ + -74.6860885829999, + -14.009521319999976 + ], + [ + -74.75274650599988, + -13.845098219999954 + ], + [ + -74.86658465299985, + -13.766827336999938 + ], + [ + -74.91182765199994, + -13.812256413999933 + ], + [ + -75.00106055499987, + -13.748210459999939 + ], + [ + -75.03233360399997, + -13.823985378999964 + ], + [ + -75.09626053499994, + -13.855557325999825 + ], + [ + -75.14579054199999, + -13.78984689299989 + ], + [ + -75.12076553199995, + -13.735145251999938 + ], + [ + -75.29536459899992, + -13.544242041999894 + ], + [ + -75.20095855299991, + -13.489909539999928 + ], + [ + -75.20716048999998, + -13.40134266299998 + ], + [ + -75.31034054499997, + -13.371540638999875 + ], + [ + -75.30663255899992, + -13.257727133999936 + ], + [ + -75.25513464899996, + -13.089532511999948 + ], + [ + -75.32576760599983, + -13.025966839999853 + ], + [ + -75.37426764399993, + -13.07348854299994 + ], + [ + -75.39908562099993, + -13.160995612999955 + ], + [ + -75.47226751499994, + -13.229303261999917 + ], + [ + -75.52403264099996, + -13.162524471999973 + ], + [ + -75.46740751999994, + -13.098718742999893 + ], + [ + -75.47395361899993, + -13.045218395999939 + ], + [ + -75.3991315539999, + -12.98483549999986 + ], + [ + -75.48818961099994, + -12.92120763499986 + ], + [ + -75.59854859799998, + -12.930641298999944 + ], + [ + -75.6461566349999, + -13.04694221799997 + ], + [ + -75.7279816119999, + -13.093151314999943 + ], + [ + -75.78653758699994, + -13.057545492999907 + ], + [ + -75.80641962899989, + -12.981811812999979 + ], + [ + -75.72861461299988, + -12.877811671999893 + ], + [ + -75.7034756089999, + -12.78367300899987 + ], + [ + -75.74350757899998, + -12.598304537999923 + ], + [ + -75.80029262599999, + -12.520117809999874 + ], + [ + -75.73715258699997, + -12.388925937999886 + ], + [ + -75.79609664499992, + -12.11887425999987 + ], + [ + -75.84718350699995, + -12.07388020399992 + ], + [ + -75.92425560899989, + -12.091519918999893 + ], + [ + -75.92436256199994, + -12.213264715999856 + ], + [ + -76.03226464599999, + -12.32906573799994 + ], + [ + -76.10077664599999, + -12.339215216999946 + ], + [ + -76.06705457399994, + -12.215297494999902 + ], + [ + -76.22509753699995, + -12.072244223999917 + ], + [ + -76.38693951499988, + -12.15851848299991 + ], + [ + -76.38886249099994, + -11.948127683999871 + ], + [ + -76.26423649899994, + -11.814252093999869 + ], + [ + -76.25956761099997, + -11.742496967999955 + ], + [ + -76.41826654299996, + -11.750574272999927 + ], + [ + -76.43113762599995, + -11.666534125999931 + ], + [ + -76.52658051299989, + -11.584138676999828 + ], + [ + -76.60029549599989, + -11.644757606999917 + ], + [ + -76.6214525929999, + -11.564781006999908 + ], + [ + -76.53510256199996, + -11.48466560299994 + ], + [ + -76.57286052099994, + -11.41264057899997 + ], + [ + -76.53809355999994, + -11.332655261999946 + ], + [ + -76.58198556399998, + -11.303013331999978 + ], + [ + -76.60533855199998, + -11.200402408999935 + ], + [ + -76.77085163599986, + -11.142192269999953 + ], + [ + -76.82696562699988, + -11.033254015999944 + ], + [ + -76.75429553299995, + -11.039787541999885 + ], + [ + -76.64067062099991, + -10.974497041999882 + ], + [ + -76.64044162699997, + -10.894641476999936 + ], + [ + -76.73724355699989, + -10.832804823999936 + ], + [ + -76.74712364099992, + -10.729903048999972 + ], + [ + -76.84069853799997, + -10.613266183999883 + ], + [ + -76.91413155299995, + -10.737207374999912 + ], + [ + -77.17961157299993, + -10.889070025999956 + ], + [ + -77.07155660299992, + -10.720316665999917 + ], + [ + -76.97141264099997, + -10.645188829999825 + ], + [ + -77.02690151099989, + -10.561174666999875 + ], + [ + -76.99309561899992, + -10.488936910999882 + ], + [ + -77.0817875539999, + -10.426702117999866 + ], + [ + -77.07837662299994, + -10.205598743999929 + ], + [ + -77.1365205439999, + -10.166496326999948 + ], + [ + -77.0874175109999, + -10.039925230999927 + ], + [ + -77.17244755999997, + -10.034262751999847 + ], + [ + -77.27020251199997, + -10.197412138999823 + ], + [ + -77.36414352999998, + -10.250618280999959 + ], + [ + -77.38970950799984, + -10.159502802999953 + ], + [ + -77.45303361299995, + -10.113459163999948 + ], + [ + -77.50208249899998, + -9.961873785999956 + ], + [ + -77.60153160099992, + -9.934133542999973 + ], + [ + -77.62773158599992, + -9.752228473999935 + ], + [ + -77.731925516, + -9.70867459599998 + ], + [ + -77.67097449499994, + -9.567193602999964 + ], + [ + -77.68142656099991, + -9.487028074999955 + ], + [ + -77.72837862999995, + -9.431940027999929 + ], + [ + -77.81497156899991, + -9.398430351999934 + ], + [ + -77.89985661099996, + -9.311251685999935 + ], + [ + -77.95611560999993, + -9.217706460999977 + ], + [ + -77.96700252899984, + -8.96388835099998 + ], + [ + -78.08901252899994, + -8.893101502999968 + ], + [ + -78.08870658899997, + -8.818040720999875 + ], + [ + -78.03667458399997, + -8.789543926999897 + ], + [ + -77.94700649299995, + -8.811210140999947 + ], + [ + -77.81318655899992, + -9.078924104999885 + ], + [ + -77.8204955779999, + -9.133533377999925 + ], + [ + -77.74127955199998, + -9.201344482999957 + ], + [ + -77.73973057699999, + -9.281074654999884 + ], + [ + -77.65098549999993, + -9.318014037999887 + ], + [ + -77.6562345829999, + -9.374986168999953 + ], + [ + -77.59394849299997, + -9.41963388499994 + ], + [ + -77.60018949099998, + -9.515835334999963 + ], + [ + -77.47397663699991, + -9.762508877999949 + ], + [ + -77.41619162799992, + -9.744195089999891 + ], + [ + -77.45367449399993, + -9.449151762999918 + ], + [ + -77.50968153199989, + -9.283472717999928 + ], + [ + -77.6810755269999, + -9.065097987999877 + ], + [ + -77.83553355099991, + -8.729990001999909 + ], + [ + -77.82256356099998, + -8.64862871199989 + ], + [ + -77.74143260599999, + -8.586054283999943 + ], + [ + -77.80441254999988, + -8.552869825999949 + ], + [ + -77.85752062399996, + -8.47859811799998 + ], + [ + -77.98151361499993, + -8.516819092999981 + ], + [ + -77.99779562899994, + -8.429681497999866 + ], + [ + -77.91980755199995, + -8.283790114999874 + ], + [ + -77.8432695439999, + -8.26802408999987 + ], + [ + -77.86757656099996, + -8.07668669799989 + ], + [ + -77.94107059699996, + -8.090070920999949 + ], + [ + -78.01490761999992, + -8.011182627999972 + ], + [ + -78.08851665599997, + -8.052775642999961 + ], + [ + -78.11620358999988, + -7.988161059999868 + ], + [ + -78.20502460699993, + -8.020677982999871 + ], + [ + -78.27303352499996, + -8.100921126999879 + ], + [ + -78.23486351199995, + -8.199376134999909 + ], + [ + -78.24013556099999, + -8.324858087999871 + ], + [ + -78.31439251799998, + -8.373833379999894 + ], + [ + -78.40926359199989, + -8.243652867999913 + ], + [ + -78.33964551599996, + -8.173325850999959 + ], + [ + -78.35543065099995, + -8.084669119999887 + ], + [ + -78.43148049699988, + -8.042305136999971 + ], + [ + -78.36495953399998, + -7.991434025999979 + ], + [ + -78.49755051299996, + -7.892467050999869 + ], + [ + -78.37728160199993, + -7.861028375999922 + ], + [ + -78.39284562299997, + -7.761111395999933 + ], + [ + -78.50418864499989, + -7.645648835999907 + ], + [ + -78.65105450899989, + -7.599509307999881 + ], + [ + -78.69393163199993, + -7.546305009999912 + ], + [ + -78.68842354799983, + -7.465861035999978 + ], + [ + -78.84907563099995, + -7.457454321999933 + ], + [ + -78.96028152499997, + -7.565039736999893 + ], + [ + -79.01742565299998, + -7.532635131999939 + ], + [ + -79.1063236149999, + -7.395103020999954 + ], + [ + -79.26686857699991, + -7.365605091999896 + ], + [ + -79.31137849499999, + -7.327098795999916 + ], + [ + -79.33970664499992, + -7.21774697799998 + ], + [ + -79.28132652199997, + -7.128269323999916 + ], + [ + -79.3202596239999, + -7.028551665999885 + ], + [ + -79.34066754699995, + -6.880320389999952 + ], + [ + -79.3767855029999, + -6.791902710999977 + ], + [ + -79.55123855699998, + -6.648650117999921 + ], + [ + -79.655235512, + -6.475522745999967 + ], + [ + -79.80490160099998, + -6.32459283299994 + ], + [ + -80.11513562, + -6.156944039999814 + ], + [ + -80.44163555899996, + -6.059648081999967 + ], + [ + -80.5461345899999, + -5.971090591999882 + ], + [ + -80.61563163199997, + -5.865771307999978 + ], + [ + -80.71204363499993, + -5.552901348999967 + ], + [ + -80.84532159499997, + -5.262650626999971 + ], + [ + -80.91525265099995, + -5.155383555999947 + ], + [ + -81.0613636409999, + -5.041642973999956 + ], + [ + -81.16802956099991, + -5.08743347799998 + ], + [ + -81.19141356299997, + -5.215220285999976 + ], + [ + -81.1098785989999, + -5.309583081999961 + ], + [ + -81.04186263999992, + -5.33765508099998 + ], + [ + -80.92247751699995, + -5.460987074999878 + ], + [ + -80.88745859599993, + -5.464223998999898 + ], + [ + -80.81726049199989, + -5.574631600999965 + ], + [ + -80.82328054199996, + -5.68578250999991 + ], + [ + -80.85331759499996, + -5.765087719999883 + ], + [ + -80.92584955599995, + -5.843011926999907 + ], + [ + -81.06128652699982, + -5.787358268999867 + ], + [ + -81.14356261799992, + -5.889826699999958 + ], + [ + -81.14456961999986, + -5.980172886999981 + ], + [ + -81.09441365299995, + -6.076448935999963 + ], + [ + -80.9324496349999, + -6.177013501999909 + ], + [ + -80.77305550799997, + -6.305112283999961 + ], + [ + -80.69141359199983, + -6.337319914999853 + ], + [ + -80.29786664099998, + -6.529672019999964 + ], + [ + -80.08250453499994, + -6.663263127999926 + ], + [ + -79.98343664199996, + -6.742305312999918 + ], + [ + -79.92534653299998, + -6.871322081999949 + ], + [ + -79.73634350099996, + -7.049513966999939 + ], + [ + -79.67762759799996, + -7.119910051999966 + ], + [ + -79.67934454699991, + -7.181458533999887 + ], + [ + -79.61325860499994, + -7.250019484999939 + ], + [ + -79.56084455299998, + -7.391106193999974 + ], + [ + -79.56648255599998, + -7.464109049999934 + ], + [ + -79.43959864699991, + -7.651881283999842 + ], + [ + -79.4578556059999, + -7.710614284999963 + ], + [ + -79.38253062699994, + -7.794508250999968 + ], + [ + -79.29575362099996, + -7.930953229999943 + ], + [ + -79.15300763099992, + -8.048978975999887 + ], + [ + -79.12782252599999, + -8.09456244799992 + ], + [ + -78.99102064599998, + -8.220614368999975 + ], + [ + -78.90911050899996, + -8.377418152999951 + ], + [ + -78.92646054599999, + -8.455100792999929 + ], + [ + -78.79739365399996, + -8.556874531999938 + ], + [ + -78.74354562499997, + -8.6646166889999 + ], + [ + -78.75230454699988, + -8.798750105999943 + ], + [ + -78.65437357499991, + -8.91552074699996 + ], + [ + -78.64958951999995, + -9.040876969999943 + ], + [ + -78.50651562899986, + -9.185261622999917 + ], + [ + -78.51139859099993, + -9.312835697999958 + ], + [ + -78.44409157299998, + -9.334948834999977 + ], + [ + -78.36951459499988, + -9.63312196499993 + ], + [ + -78.23609162799994, + -9.814363018999927 + ], + [ + -78.25533262199997, + -9.860641685999951 + ], + [ + -78.17768049199992, + -10.07145510099997 + ], + [ + -78.06101965399989, + -10.34269097299989 + ], + [ + -77.86278563299993, + -10.66800537599994 + ], + [ + -77.77527655199992, + -10.767006213999878 + ], + [ + -77.67069252799996, + -10.948512638999944 + ], + [ + -77.65859962099984, + -11.036527483999976 + ], + [ + -77.60726951699996, + -11.169954306999955 + ], + [ + -77.66385658299993, + -11.255832436999981 + ], + [ + -77.63101963899993, + -11.31639118499993 + ], + [ + -77.3645475379999, + -11.467001747999916 + ], + [ + -77.29895763699994, + -11.524978030999932 + ], + [ + -77.17622360799993, + -11.737736214999927 + ], + [ + -77.18864458199994, + -11.856204189999914 + ], + [ + -77.15090154299997, + -11.907528594999974 + ], + [ + -77.14168563999988, + -12.079983737999953 + ], + [ + -77.0334776169999, + -12.158627447999947 + ], + [ + -77.04244256499993, + -12.214281608999954 + ], + [ + -76.84752660399988, + -12.32071132699997 + ], + [ + -76.78406553799994, + -12.401336853999965 + ], + [ + -76.81057749799999, + -12.511459638999895 + ], + [ + -76.74540752999997, + -12.53868573699998 + ], + [ + -76.67862656099999, + -12.628736545999914 + ], + [ + -76.64122064099996, + -12.750869256999977 + ], + [ + -76.51986660899996, + -12.869860095999854 + ], + [ + -76.49170659899994, + -13.047619139999824 + ], + [ + -76.28603363799988, + -13.282062480999912 + ], + [ + -76.1876445119999, + -13.442460926999956 + ], + [ + -76.19352760199996, + -13.623045678999915 + ], + [ + -76.26146661499996, + -13.871074407999856 + ], + [ + -76.37017855799996, + -13.80887632799994 + ], + [ + -76.39612557799995, + -13.901492501999826 + ], + [ + -76.28559861699995, + -13.916086401999962 + ], + [ + -76.26461049999995, + -14.05897404599989 + ], + [ + -76.28367664699982, + -14.13688567999992 + ], + [ + -76.13488763999999, + -14.243508685999927 + ], + [ + -76.06737559999988, + -14.392657946999975 + ], + [ + -75.97048951699992, + -14.509867295999982 + ], + [ + -75.92098951699984, + -14.661444291999942 + ], + [ + -75.85501052799998, + -14.720154494999917 + ], + [ + -75.65073348899989, + -14.848371294999936 + ], + [ + -75.52396357399994, + -14.90702349399993 + ], + [ + -75.50815563999998, + -14.97527884099992 + ], + [ + -75.44815059999996, + -15.011355557999934 + ], + [ + -75.37297850799996, + -15.143230051999922 + ], + [ + -75.22991953699994, + -15.2191873619999 + ], + [ + -75.24499556299997, + -15.28260919999991 + ], + [ + -75.18980458599987, + -15.367782746999978 + ], + [ + -75.05079658899996, + -15.466373374999932 + ], + [ + -75.01222256799997, + -15.466083192999974 + ], + [ + -74.65360250499998, + -15.657024288999935 + ], + [ + -74.47146559299995, + -15.728533657999947 + ], + [ + -74.43728653899996, + -15.807163620999916 + ], + [ + -74.35558360199991, + -15.85276854999995 + ], + [ + -74.2849955719999, + -15.845134144999975 + ], + [ + -74.05188763599989, + -15.963886434999836 + ], + [ + -73.99999963199986, + -16.034941001999982 + ], + [ + -73.85572863799996, + -16.136981620999904 + ], + [ + -73.33990463999993, + -16.32337285199992 + ], + [ + -73.30790756299996, + -16.37270588399997 + ], + [ + -73.21104461299996, + -16.399048025999946 + ], + [ + -73.04996454999997, + -16.499593648999905 + ], + [ + -72.92754350199993, + -16.517507787999932 + ], + [ + -72.77449749299996, + -16.626543942999945 + ], + [ + -72.44997350399996, + -16.703706904999933 + ], + [ + -72.37428257099998, + -16.752505004999932 + ], + [ + -72.13259156599992, + -16.969271581999976 + ], + [ + -72.10420256299994, + -17.020845264999934 + ], + [ + -71.94582348499989, + -17.063622642999974 + ], + [ + -71.80450459699989, + -17.184216100999947 + ], + [ + -71.68853761399998, + -17.21031449799989 + ], + [ + -71.47614253399996, + -17.29155961499987 + ], + [ + -71.39250153399996, + -17.393125147999967 + ], + [ + -71.34301762699988, + -17.64290904799998 + ], + [ + -71.37048361499996, + -17.678503972999977 + ], + [ + -71.18147253699993, + -17.785187495999935 + ], + [ + -71.09345249499995, + -17.866719273999934 + ], + [ + -71.00227364899996, + -17.876362820999816 + ], + [ + -70.92483559299995, + -17.922283077999907 + ], + [ + -70.88602453099998, + -18.002772146999973 + ], + [ + -70.81260660299995, + -18.03526308599993 + ], + [ + -70.68231964099988, + -18.15553384099985 + ], + [ + -70.59595452199994, + -18.197981307999953 + ], + [ + -70.38628356099991, + -18.337382918999936 + ], + [ + -70.30521362599995, + -18.435454202999892 + ], + [ + -70.34699255199996, + -18.649127522999947 + ], + [ + -70.35959658699994, + -18.794199826999886 + ], + [ + -70.26765448499998, + -19.141921236999906 + ], + [ + -70.28260059199982, + -19.283999021999875 + ], + [ + -70.22444962999998, + -19.402946106999877 + ], + [ + -70.20541348999996, + -19.58329649999996 + ], + [ + -70.17078348899992, + -19.65074148399998 + ], + [ + -70.15641757799995, + -19.82253680399998 + ], + [ + -70.12281050499996, + -19.992676865999954 + ], + [ + -70.12390149299989, + -20.094227981999893 + ], + [ + -70.15851556799998, + -20.213610254999935 + ], + [ + -70.14411160299994, + -20.320825190999983 + ], + [ + -70.18295250399996, + -20.354906176999975 + ], + [ + -70.1639026169999, + -20.48239006299997 + ], + [ + -70.19975251999989, + -20.528215435999925 + ], + [ + -70.18141962099986, + -20.65453524299994 + ], + [ + -70.19419850299988, + -20.81500124799993 + ], + [ + -70.14711752099987, + -20.864400496999963 + ], + [ + -70.13388853099997, + -20.950676767999937 + ], + [ + -70.17842862299983, + -21.021457916999907 + ], + [ + -70.1263126309999, + -21.086056405999955 + ], + [ + -70.06727553399998, + -21.31195087599997 + ], + [ + -70.05627462199988, + -21.43240620099988 + ], + [ + -70.09222460499996, + -21.584800767999923 + ], + [ + -70.14301256799996, + -21.628867450999962 + ], + [ + -70.15797459999999, + -21.76099625199987 + ], + [ + -70.14223455899997, + -21.82843268599987 + ], + [ + -70.21219662899995, + -22.09843910099994 + ], + [ + -70.23957058399992, + -22.377069320999908 + ], + [ + -70.23716749199997, + -22.488410499999873 + ], + [ + -70.31277460599995, + -22.800399855999956 + ], + [ + -70.28524055699995, + -22.896583870999905 + ], + [ + -70.30879957199994, + -22.958491769999966 + ] + ] + ], + [ + [ + [ + -90.36005357799996, + -1.290495708999913 + ], + [ + -90.3757245519999, + -1.248669006999876 + ], + [ + -90.4766535629999, + -1.231690287999868 + ], + [ + -90.51042961499996, + -1.312027141999863 + ], + [ + -90.4327625649999, + -1.356542759999911 + ], + [ + -90.36005357799996, + -1.290495708999913 + ] + ] + ], + [ + [ + [ + -89.25321152799995, + -0.695661376999908 + ], + [ + -89.34271952499995, + -0.686087902999873 + ], + [ + -89.45426958099989, + -0.758022736999862 + ], + [ + -89.48265053699998, + -0.815510354999958 + ], + [ + -89.60182963299997, + -0.879910528999972 + ], + [ + -89.55424456299988, + -0.951068192999969 + ], + [ + -89.40952262299999, + -0.921235322999905 + ], + [ + -89.28511053699998, + -0.780414823999934 + ], + [ + -89.25321152799995, + -0.695661376999908 + ] + ] + ], + [ + [ + [ + -90.19889053499992, + -0.545919682999966 + ], + [ + -90.25872055899993, + -0.485485154999878 + ], + [ + -90.48384054199994, + -0.520359571999961 + ], + [ + -90.53037250999989, + -0.562150231999965 + ], + [ + -90.53489655799996, + -0.690286900999979 + ], + [ + -90.39535564, + -0.769646927999929 + ], + [ + -90.23521451799996, + -0.744467690999898 + ], + [ + -90.19742554499993, + -0.697567253999978 + ], + [ + -90.16676353799994, + -0.569181642999979 + ], + [ + -90.19889053499992, + -0.545919682999966 + ] + ] + ], + [ + [ + [ + -91.29809566499989, + 0.112319053000078 + ], + [ + -91.33741751999997, + 0.163604398000189 + ], + [ + -91.48952458699989, + 0.099120070000026 + ], + [ + -91.5939555569999, + -0.005768886999931 + ], + [ + -91.54712653499996, + -0.051249595999934 + ], + [ + -91.46434752899995, + -0.013602445999936 + ], + [ + -91.40802750999995, + -0.043700183999931 + ], + [ + -91.39064763399989, + -0.233384999999885 + ], + [ + -91.32056452999984, + -0.339684127999931 + ], + [ + -91.22800451399996, + -0.384202762999962 + ], + [ + -91.21417252999993, + -0.47737650199997 + ], + [ + -91.0778576379999, + -0.598126701999945 + ], + [ + -91.0923236299999, + -0.635095923999927 + ], + [ + -91.32889563899994, + -0.690981592999947 + ], + [ + -91.48919651999995, + -0.845170054999869 + ], + [ + -91.50241863699995, + -0.919360458999961 + ], + [ + -91.4194485239999, + -1.010186929999975 + ], + [ + -91.30953260399991, + -1.011699695999937 + ], + [ + -91.210906605, + -1.041576318999944 + ], + [ + -91.0166776239999, + -0.987303662999977 + ], + [ + -90.86003862899992, + -0.914059072999976 + ], + [ + -90.82483664699998, + -0.78887048799993 + ], + [ + -90.7813265229999, + -0.761405337999975 + ], + [ + -90.8977045549999, + -0.60480422899991 + ], + [ + -90.95433755399989, + -0.605500932999917 + ], + [ + -90.94049852899997, + -0.478826570999956 + ], + [ + -91.01316057799988, + -0.362695134999967 + ], + [ + -91.10842861899988, + -0.308013441999947 + ], + [ + -91.17464464799991, + -0.220741736999969 + ], + [ + -91.1983035749999, + -0.020189950999963 + ], + [ + -91.27082061699991, + 0.04322551700011 + ], + [ + -91.29809566499989, + 0.112319053000078 + ] + ] + ], + [ + [ + [ + -91.39421865999986, + -0.315256747999911 + ], + [ + -91.46165459199989, + -0.256378068999936 + ], + [ + -91.66187260999999, + -0.302205621999917 + ], + [ + -91.65013861599988, + -0.388560178999967 + ], + [ + -91.60546860399995, + -0.475843786999974 + ], + [ + -91.52056864199989, + -0.497157289999905 + ], + [ + -91.38839759599995, + -0.45136460599997 + ], + [ + -91.39421865999986, + -0.315256747999911 + ] + ] + ], + [ + [ + [ + -90.71578959599998, + -0.169195714999944 + ], + [ + -90.82645452199995, + -0.159877552999831 + ], + [ + -90.83225261999996, + -0.325055192999912 + ], + [ + -90.74211866199994, + -0.355467922999821 + ], + [ + -90.67226455199989, + -0.344282607999901 + ], + [ + -90.59532957699992, + -0.373673415999974 + ], + [ + -90.54622654399992, + -0.300442906999933 + ], + [ + -90.57819361399999, + -0.239985580999871 + ], + [ + -90.71578959599998, + -0.169195714999944 + ] + ] + ], + [ + [ + [ + -90.44557950099994, + 0.36905406600016 + ], + [ + -90.53617865399997, + 0.367615060000105 + ], + [ + -90.47727952299982, + 0.280700424000145 + ], + [ + -90.44557950099994, + 0.36905406600016 + ] + ] + ], + [ + [ + [ + -63.03554959999997, + 9.94904989400004 + ], + [ + -63.01274462099997, + 10.04173127900009 + ], + [ + -63.00885055599991, + 10.186823029000038 + ], + [ + -63.07515358999996, + 10.258166939000091 + ], + [ + -63.02308252499995, + 10.368956253000135 + ], + [ + -63.05311957799984, + 10.45352848300007 + ], + [ + -63.01671261399986, + 10.515131113000166 + ], + [ + -62.92369863399989, + 10.561530981999965 + ], + [ + -62.7506485429999, + 10.609587450000163 + ], + [ + -62.67464848599997, + 10.592717864000065 + ], + [ + -62.35834462899999, + 10.567698386000131 + ], + [ + -62.31846655099997, + 10.540579409000088 + ], + [ + -62.246730535999916, + 10.634516907000034 + ], + [ + -62.15037955299994, + 10.689723977000028 + ], + [ + -62.35967248999998, + 10.716148933000056 + ], + [ + -62.31927154899995, + 10.634550937000029 + ], + [ + -62.46963450999988, + 10.618937966000033 + ], + [ + -62.576942484999904, + 10.638797377 + ], + [ + -62.70346060799983, + 10.635918696000147 + ], + [ + -62.756011619999924, + 10.66533766800012 + ], + [ + -62.75101852099988, + 10.736963545000094 + ], + [ + -62.89658351299994, + 10.69361653300001 + ], + [ + -63.001365516999954, + 10.72001785100008 + ], + [ + -63.16615255999989, + 10.714033173000189 + ], + [ + -63.287937589999956, + 10.663100873000076 + ], + [ + -63.39227652699998, + 10.68015771100005 + ], + [ + -63.536537629999884, + 10.625212324000131 + ], + [ + -63.77172863599998, + 10.663901680000151 + ], + [ + -63.908969560999935, + 10.623944477000123 + ], + [ + -64.02980760299994, + 10.631999820999965 + ], + [ + -64.12826562899983, + 10.613620152000067 + ], + [ + -64.25597347899992, + 10.659031962000086 + ], + [ + -64.29164853499992, + 10.630193186000156 + ], + [ + -64.2482755389999, + 10.519285855000021 + ], + [ + -64.19774657699998, + 10.549767819000067 + ], + [ + -64.0080485179999, + 10.57480204899997 + ], + [ + -63.815185618999976, + 10.545229857000095 + ], + [ + -63.73728957499998, + 10.492676832000086 + ], + [ + -63.789207586999964, + 10.43905930700015 + ], + [ + -64.06764250799984, + 10.443631970000183 + ], + [ + -64.12699157899993, + 10.355143380000072 + ], + [ + -64.3038255969999, + 10.405336898000144 + ], + [ + -64.38589448699992, + 10.378181544000029 + ], + [ + -64.40010851899996, + 10.277455710000083 + ], + [ + -64.45659651099993, + 10.247608759000116 + ], + [ + -64.61808762199996, + 10.248592794000047 + ], + [ + -64.66847258299998, + 10.180056487000115 + ], + [ + -64.6411055019999, + 10.122261755000125 + ], + [ + -64.73400163199989, + 10.063812565000148 + ], + [ + -64.95194251399988, + 10.092548747000137 + ], + [ + -65.09120951199992, + 10.04258321600014 + ], + [ + -65.19449651999997, + 10.092751589000045 + ], + [ + -65.39790351699992, + 10.127954241 + ], + [ + -65.60555259499989, + 10.1885880910001 + ], + [ + -65.65499157499988, + 10.145896040000082 + ], + [ + -65.77856463299992, + 10.166996476000179 + ], + [ + -65.96572850699994, + 10.272285082000167 + ], + [ + -66.07817056499994, + 10.400911086000065 + ], + [ + -66.29862953899993, + 10.367746410000109 + ], + [ + -66.53571351399995, + 10.378763583000136 + ], + [ + -66.84056852999993, + 10.431016032000116 + ], + [ + -66.93371561399988, + 10.596447308000108 + ], + [ + -67.02912849399996, + 10.607885589000148 + ], + [ + -67.15428154099993, + 10.553146396999978 + ], + [ + -67.5371165869999, + 10.523665567000023 + ], + [ + -67.74461361699997, + 10.499628280000081 + ], + [ + -67.84171260099998, + 10.45903388500011 + ], + [ + -67.93287652699996, + 10.466550608000034 + ], + [ + -67.98207863399983, + 10.36700645500008 + ], + [ + -68.16763251299994, + 10.32732334000002 + ], + [ + -68.2045665309999, + 10.36078088000005 + ], + [ + -68.20330857499994, + 10.537023471 + ], + [ + -68.27446757999991, + 10.529925004000063 + ], + [ + -68.30778463999991, + 10.665624664000063 + ], + [ + -68.37214659199992, + 10.748090019000017 + ], + [ + -68.52075153299995, + 10.703223870000102 + ], + [ + -68.72571555299999, + 10.591117759000099 + ], + [ + -68.81685651199984, + 10.525180512000077 + ], + [ + -68.64944459199995, + 10.492174589 + ], + [ + -68.68064153299997, + 10.386009068000021 + ], + [ + -68.84944149599994, + 10.204287898000132 + ], + [ + -69.06565855599996, + 10.180263687000036 + ], + [ + -69.14317355799994, + 10.190310906999969 + ], + [ + -69.24018050899997, + 10.094084646999988 + ], + [ + -69.4101715409999, + 10.105036777000066 + ], + [ + -69.45330850199991, + 10.155537240000058 + ], + [ + -69.48466453199995, + 10.30762972399998 + ], + [ + -69.47415161299983, + 10.403112844000134 + ], + [ + -69.60698650599994, + 10.42473647800017 + ], + [ + -69.62649555399997, + 10.490996931000097 + ], + [ + -69.61344962399994, + 10.602396113000168 + ], + [ + -69.73583949199997, + 10.739045442000133 + ], + [ + -69.87895160399984, + 10.726298244000077 + ], + [ + -69.89589662699996, + 10.82805019 + ], + [ + -69.80847957999993, + 10.893771855000125 + ], + [ + -69.78425554399996, + 11.011249424000141 + ], + [ + -69.81269852699995, + 11.051817668000183 + ], + [ + -69.96191350299995, + 11.102750135 + ], + [ + -70.11622651999994, + 11.136474890000045 + ], + [ + -70.14703353399995, + 11.227241682000056 + ], + [ + -70.03847464499995, + 11.268456841000045 + ], + [ + -69.93129759599992, + 11.26798896300005 + ], + [ + -69.66558858199988, + 11.318110229000183 + ], + [ + -69.56153161299983, + 11.424105933000078 + ], + [ + -69.66087359399995, + 11.502980648000118 + ], + [ + -69.75629452099992, + 11.672188977000076 + ], + [ + -69.79342651999991, + 11.799280087000113 + ], + [ + -69.81800058399989, + 11.987491364999983 + ], + [ + -69.92456055699995, + 12.161223407000023 + ], + [ + -70.01847056199995, + 12.200264803000039 + ], + [ + -70.20692457899992, + 12.067513729999973 + ], + [ + -70.28887964399996, + 11.906059834000132 + ], + [ + -70.27382658399995, + 11.831215138 + ], + [ + -70.20505558299993, + 11.738020277000146 + ], + [ + -70.23075852099993, + 11.621210577000056 + ], + [ + -70.17897763799994, + 11.611409283000171 + ], + [ + -69.96688849799989, + 11.659544709000158 + ], + [ + -69.92114258499993, + 11.649336556000094 + ], + [ + -69.8425065859999, + 11.719606744999965 + ], + [ + -69.80509161499992, + 11.69339435400019 + ], + [ + -69.72975154799985, + 11.48764377700013 + ], + [ + -69.8152925579999, + 11.41878325700003 + ], + [ + -69.93359356599984, + 11.481383166000171 + ], + [ + -69.99203454199994, + 11.411036870000089 + ], + [ + -70.08444955099998, + 11.360517295000136 + ], + [ + -70.1554105759999, + 11.394680927000138 + ], + [ + -70.51138262799992, + 11.243295541000066 + ], + [ + -70.7118075119999, + 11.225920861000077 + ], + [ + -70.83500656899997, + 11.19690673600013 + ], + [ + -71.16171253499988, + 11.02185772900009 + ], + [ + -71.29837762299991, + 10.97147628800019 + ], + [ + -71.31859561099998, + 10.86724648400002 + ], + [ + -71.43741663299994, + 10.797321295000074 + ], + [ + -71.58327448899996, + 10.80261899300018 + ], + [ + -71.52291154199992, + 10.724160691 + ], + [ + -71.42715450099996, + 10.72110582200014 + ], + [ + -71.25312054199998, + 10.75542535700015 + ], + [ + -71.14493548599995, + 10.815394187000095 + ], + [ + -70.85253161999998, + 10.913086274000136 + ], + [ + -70.50252563899994, + 11.055672505000189 + ], + [ + -70.48249054299993, + 11.10093830300002 + ], + [ + -70.33085654999991, + 11.00250223800009 + ], + [ + -70.17536151699989, + 10.96643557900012 + ], + [ + -70.14450856999991, + 10.894046613000171 + ], + [ + -70.10331755099998, + 10.602360909000083 + ], + [ + -70.03535456499992, + 10.501635914000076 + ], + [ + -70.04300657199997, + 10.453901478000091 + ], + [ + -70.21707958999986, + 10.421540794000066 + ], + [ + -70.1593856099999, + 10.236378685000147 + ], + [ + -70.16476461199983, + 10.12740237700018 + ], + [ + -70.11926261299988, + 10.020666886000072 + ], + [ + -69.89218864099996, + 9.970537405000073 + ], + [ + -69.84078963699994, + 9.874953031000075 + ], + [ + -69.84631364699993, + 9.743336364000129 + ], + [ + -69.89212057999998, + 9.67688212100012 + ], + [ + -69.76790664199996, + 9.65121891299998 + ], + [ + -69.68015264199994, + 9.784329571000058 + ], + [ + -69.5040966329999, + 9.930179212000098 + ], + [ + -69.42772659899998, + 9.956662171000062 + ], + [ + -69.2758485249999, + 9.93340875900003 + ], + [ + -69.21739162299991, + 9.87614896100007 + ], + [ + -69.08636453899999, + 9.902430083000127 + ], + [ + -69.02793160999994, + 9.872327316000167 + ], + [ + -68.80316953499988, + 9.816965181000057 + ], + [ + -68.57949861599997, + 9.778019003000168 + ], + [ + -68.45900758399995, + 9.630025271000022 + ], + [ + -68.33287050199988, + 9.561193250000144 + ], + [ + -68.10498851599988, + 9.493480883000132 + ], + [ + -67.73382560499994, + 9.49123000700007 + ], + [ + -67.55944061199995, + 9.377705007000145 + ], + [ + -67.27040861799998, + 9.256564713000046 + ], + [ + -67.16133155899996, + 9.114195740000014 + ], + [ + -67.05693864299991, + 9.059419836000018 + ], + [ + -66.87793756899993, + 9.035427308000124 + ], + [ + -66.69491552799997, + 9.038503131000027 + ], + [ + -66.51097164499993, + 9.026095065000106 + ], + [ + -66.39904054799996, + 8.999416138000072 + ], + [ + -66.28461449399998, + 8.9123253140001 + ], + [ + -66.08348050099988, + 8.863941616000034 + ], + [ + -65.91136951799996, + 8.86447856 + ], + [ + -65.6196665469999, + 8.808342776000131 + ], + [ + -65.50234957399994, + 8.75885015200015 + ], + [ + -65.33690656299984, + 8.72852241400011 + ], + [ + -65.25050355899992, + 8.748158867000086 + ], + [ + -65.05043054699996, + 8.83414177100002 + ], + [ + -64.92398853199995, + 8.854058346000102 + ], + [ + -64.84074349299988, + 8.892574700000182 + ], + [ + -64.74464463699996, + 9.027779157000168 + ], + [ + -64.58878348299993, + 9.106103348000147 + ], + [ + -64.47920250399994, + 9.250381215000175 + ], + [ + -64.37245159099984, + 9.319003186000145 + ], + [ + -64.1794125049999, + 9.395126793000088 + ], + [ + -64.1196745129999, + 9.444614555000044 + ], + [ + -64.04492151599999, + 9.571750424000186 + ], + [ + -63.91617162699998, + 9.703511092000099 + ], + [ + -63.74668149799993, + 9.78579942100015 + ], + [ + -63.68902959399992, + 9.795064609000065 + ], + [ + -63.48431049399994, + 9.754715636000185 + ], + [ + -63.33683358999997, + 9.816074017000062 + ], + [ + -63.25400161099998, + 9.828199446000099 + ], + [ + -63.1750945419999, + 9.964383747 + ], + [ + -63.03554959999997, + 9.94904989400004 + ] + ], + [ + [ + -67.23212461099996, + 10.233035814 + ], + [ + -67.80659460599998, + 10.282964297000149 + ], + [ + -67.86616562999995, + 10.398799182000118 + ], + [ + -67.66150654399996, + 10.471162163000145 + ], + [ + -67.44932553799993, + 10.442848261999984 + ], + [ + -67.18620250999999, + 10.51050346400018 + ], + [ + -67.06582664599989, + 10.496632420000026 + ], + [ + -67.01502962999996, + 10.395491347000075 + ], + [ + -67.0323105999999, + 10.313657150000097 + ], + [ + -67.12255855199999, + 10.253631492000068 + ], + [ + -67.23212461099996, + 10.233035814 + ] + ], + [ + [ + -66.35402654299997, + 10.162861850000183 + ], + [ + -66.35620851999994, + 10.260876809000138 + ], + [ + -66.11884358299994, + 10.273014978000163 + ], + [ + -66.12287158999987, + 10.178783778000025 + ], + [ + -66.22154251599989, + 10.141179208000096 + ], + [ + -66.35402654299997, + 10.162861850000183 + ] + ], + [ + [ + -66.62268062099997, + 10.128974989000085 + ], + [ + -66.52454362199995, + 10.13363298000013 + ], + [ + -66.26484661299997, + 10.07205516099998 + ], + [ + -66.1901935279999, + 10.08434118700012 + ], + [ + -66.05618248599995, + 10.158101096999985 + ], + [ + -65.97546358499994, + 10.160443001000147 + ], + [ + -65.86466253599997, + 10.107154716000082 + ], + [ + -65.76310756499998, + 10.095628426000133 + ], + [ + -65.67377458199996, + 10.024291389000041 + ], + [ + -65.67533847699997, + 9.934928901000092 + ], + [ + -65.78836056299997, + 9.85359661300015 + ], + [ + -65.91789248299995, + 9.820258766 + ], + [ + -66.03052547999994, + 9.833138902000087 + ], + [ + -66.20191159599995, + 9.817527942000027 + ], + [ + -66.35762053499997, + 9.853039719000094 + ], + [ + -66.41487161599991, + 9.84044741800011 + ], + [ + -66.55274151799983, + 9.909903556000074 + ], + [ + -66.72550964199996, + 9.887944981000146 + ], + [ + -66.76096358299992, + 9.923981465000054 + ], + [ + -66.74044049399998, + 10.055980347000116 + ], + [ + -66.62268062099997, + 10.128974989000085 + ] + ], + [ + [ + -63.957427521999875, + 9.977245945 + ], + [ + -64.08740250999989, + 9.983716438999977 + ], + [ + -64.24958764199994, + 9.933318067000187 + ], + [ + -64.32497447999998, + 9.943456147000063 + ], + [ + -64.39627849199996, + 10.03058418600017 + ], + [ + -64.34456650799984, + 10.13106392700007 + ], + [ + -64.21990162399999, + 10.220195912000065 + ], + [ + -63.9600825739999, + 10.193801467000128 + ], + [ + -63.8718756159999, + 10.146611855000117 + ], + [ + -63.82814756199997, + 10.051473565000038 + ], + [ + -63.871810571999845, + 9.982717484000034 + ], + [ + -63.957427521999875, + 9.977245945 + ] + ], + [ + [ + -63.21494261299995, + 10.101054199000089 + ], + [ + -63.26795949099994, + 10.05951600200018 + ], + [ + -63.41283062899987, + 10.00908963400019 + ], + [ + -63.56666554299994, + 10.052956659000017 + ], + [ + -63.66209451599991, + 10.160278044999984 + ], + [ + -63.68194956799988, + 10.213305150000167 + ], + [ + -63.452865616999986, + 10.30954046200003 + ], + [ + -63.2727586339999, + 10.273543038000184 + ], + [ + -63.22524262999997, + 10.188082997000038 + ], + [ + -63.21494261299995, + 10.101054199000089 + ] + ], + [ + [ + -68.22810358599997, + 10.244634020999968 + ], + [ + -68.16844958099995, + 10.127633214000184 + ], + [ + -68.24109654199992, + 10.064669531000163 + ], + [ + -68.40341963999992, + 10.09567653800002 + ], + [ + -68.49195852199989, + 10.053637605000063 + ], + [ + -68.53479759099997, + 9.98420426600012 + ], + [ + -68.62227649699997, + 9.916395172000023 + ], + [ + -68.72590649199998, + 9.985914174000015 + ], + [ + -68.72233563399993, + 10.113294292000035 + ], + [ + -68.6617735339999, + 10.22424940100018 + ], + [ + -68.54202262399991, + 10.280750469000111 + ], + [ + -68.39424849699998, + 10.275681932000055 + ], + [ + -68.22810358599997, + 10.244634020999968 + ] + ] + ], + [ + [ + [ + -74.74784057799997, + 10.558072106000168 + ], + [ + -74.6981585229999, + 10.709647593000057 + ], + [ + -74.74700959599994, + 10.882508588000178 + ], + [ + -74.81000563299989, + 11.040616428000135 + ], + [ + -74.85954251399988, + 11.075163113000087 + ], + [ + -75.00683551899994, + 10.98502630500019 + ], + [ + -75.03517154799994, + 10.913588518000097 + ], + [ + -75.15715053599996, + 10.837821477000148 + ], + [ + -75.25900256199998, + 10.80519190200016 + ], + [ + -75.2798465109999, + 10.716927947000045 + ], + [ + -75.39115851999998, + 10.68220339800007 + ], + [ + -75.50901763399997, + 10.578223710000032 + ], + [ + -75.49967164499998, + 10.506206733 + ], + [ + -75.41638151099994, + 10.476634708000063 + ], + [ + -75.37010954999988, + 10.384086259000185 + ], + [ + -75.45304864899998, + 10.209308658000054 + ], + [ + -75.47336554499992, + 10.089948848 + ], + [ + -75.45680960899995, + 10.007830504000083 + ], + [ + -75.58232156899999, + 9.942679144000124 + ], + [ + -75.64754450999999, + 9.753650631000085 + ], + [ + -75.56667356099996, + 9.609048720000033 + ], + [ + -75.62179563899991, + 9.442406426000048 + ], + [ + -75.73129263099997, + 9.38484253300004 + ], + [ + -75.6150896129999, + 9.32999052000008 + ], + [ + -75.40196949899996, + 9.322226195999974 + ], + [ + -75.26840957199988, + 9.39689286000015 + ], + [ + -75.20909855399992, + 9.604867156000068 + ], + [ + -75.22371659299989, + 9.722459726000068 + ], + [ + -75.26730349599995, + 9.772549141000184 + ], + [ + -75.29469253799994, + 10.034882929000105 + ], + [ + -75.19894454899998, + 10.196403377000138 + ], + [ + -75.04494451199997, + 10.300932080000052 + ], + [ + -75.01325253599992, + 10.439270363 + ], + [ + -74.92091363499998, + 10.517070853000064 + ], + [ + -74.79616560199997, + 10.494991411 + ], + [ + -74.74784057799997, + 10.558072106000168 + ] + ] + ], + [ + [ + [ + -63.80461151299994, + 10.970548411000038 + ], + [ + -63.842365616999984, + 11.118103100000155 + ], + [ + -63.88876749699989, + 11.155742539000073 + ], + [ + -64.01000954799997, + 11.05321862000011 + ], + [ + -64.02404051799988, + 10.99318374100011 + ], + [ + -64.12873853599996, + 10.994790887000022 + ], + [ + -64.20580259199994, + 11.078744867000125 + ], + [ + -64.38041657799994, + 11.039598530000092 + ], + [ + -64.39408159499993, + 10.966440776000127 + ], + [ + -64.24036453099995, + 10.934516789000043 + ], + [ + -64.2045825219999, + 10.978207962000113 + ], + [ + -63.87757463899999, + 10.933203848000062 + ], + [ + -63.80461151299994, + 10.970548411000038 + ] + ] + ], + [ + [ + [ + -74.0533755919999, + 11.334036181000045 + ], + [ + -74.15470156899988, + 11.325954852999985 + ], + [ + -74.21398157399994, + 11.25984745300019 + ], + [ + -74.2367855469999, + 11.179252101000145 + ], + [ + -74.21555351599989, + 11.067569611000124 + ], + [ + -74.21688858499994, + 10.877678768000067 + ], + [ + -74.18320456599992, + 10.868563448000089 + ], + [ + -74.07852163599995, + 10.960470010999984 + ], + [ + -74.13850354099998, + 11.100953223000033 + ], + [ + -74.10990163799994, + 11.18188368300008 + ], + [ + -74.05120048799989, + 11.226266531000078 + ], + [ + -73.88413256099994, + 11.23385500300003 + ], + [ + -73.87456562399996, + 11.260613391000163 + ], + [ + -74.0533755919999, + 11.334036181000045 + ] + ] + ], + [ + [ + [ + -71.45274361299994, + 12.408996656000056 + ], + [ + -71.54075661399992, + 12.446499973000016 + ], + [ + -71.71323355099992, + 12.34192902500007 + ], + [ + -71.77375759699999, + 12.277076564000083 + ], + [ + -71.83994261299989, + 12.35555112700007 + ], + [ + -71.92393464799989, + 12.30040289800013 + ], + [ + -71.8658064839999, + 12.247810479000066 + ], + [ + -71.93112950599993, + 12.155352722000032 + ], + [ + -71.97990463899998, + 12.157883722000179 + ], + [ + -71.99104351699998, + 12.246833484000149 + ], + [ + -72.12847152599988, + 12.24297495899998 + ], + [ + -72.14787261399994, + 12.08497356900017 + ], + [ + -72.23473360599996, + 11.905550885000025 + ], + [ + -72.34504649299993, + 11.835899784000048 + ], + [ + -72.52111859499996, + 11.781504585 + ], + [ + -72.62509157799991, + 11.724549385000046 + ], + [ + -72.73403955499992, + 11.699128246000157 + ], + [ + -72.87524461699991, + 11.575333571000044 + ], + [ + -73.03057050299998, + 11.49463109900006 + ], + [ + -73.27778652299997, + 11.287985334000155 + ], + [ + -73.25447862999994, + 11.161184070000104 + ], + [ + -73.16209463399991, + 11.09381184100016 + ], + [ + -73.09761064099996, + 10.953556617000118 + ], + [ + -73.10640761599996, + 10.806991664000066 + ], + [ + -73.17443061599988, + 10.739273430000026 + ], + [ + -73.17872650899989, + 10.650647544000037 + ], + [ + -73.33534253799985, + 10.570593160000158 + ], + [ + -73.33117656399992, + 10.477312804 + ], + [ + -73.36774462799991, + 10.383794400999989 + ], + [ + -73.4535295519999, + 10.3112324330001 + ], + [ + -73.57163961999993, + 10.246705860000077 + ], + [ + -73.56146952199992, + 10.159415044000127 + ], + [ + -73.61423460799989, + 10.000891127000102 + ], + [ + -73.58136748899994, + 9.912587441000028 + ], + [ + -73.47457164899993, + 9.849515967 + ], + [ + -73.37422149299988, + 9.861900061000085 + ], + [ + -73.22064960399996, + 9.991407841000068 + ], + [ + -73.22076460299996, + 10.110616609999965 + ], + [ + -73.19382449599988, + 10.156104360000086 + ], + [ + -73.24301151499992, + 10.241255276000118 + ], + [ + -73.16343657599992, + 10.298627392000128 + ], + [ + -73.13867157299995, + 10.415609927000048 + ], + [ + -73.03064761599995, + 10.6130423030001 + ], + [ + -72.9403535639999, + 10.699652341000103 + ], + [ + -72.88587152899999, + 10.80367813000015 + ], + [ + -72.80474057299995, + 10.849190858000043 + ], + [ + -72.72629551499989, + 10.98343860500006 + ], + [ + -72.63195752999991, + 11.004651023000179 + ], + [ + -72.59141560499995, + 11.080718806000164 + ], + [ + -72.43711851399996, + 11.198860558000092 + ], + [ + -72.34877057199998, + 11.198951585000088 + ], + [ + -72.1964566389999, + 11.158087292000175 + ], + [ + -72.11249561799991, + 10.972464347000141 + ], + [ + -71.97529559799995, + 10.810671654999965 + ], + [ + -71.93437162599997, + 10.718486813000084 + ], + [ + -71.92701751199996, + 10.526956134000045 + ], + [ + -71.82857557899996, + 10.388686918000076 + ], + [ + -71.77403252399989, + 10.34232409700013 + ], + [ + -71.62970754999986, + 10.439249408000137 + ], + [ + -71.58998856099993, + 10.71347929600006 + ], + [ + -71.67026556799993, + 10.797749275000115 + ], + [ + -71.74440752499999, + 10.942335260000107 + ], + [ + -71.87693061099998, + 10.982232449000094 + ], + [ + -71.97561662499993, + 11.08382547400015 + ], + [ + -72.00698857899994, + 11.158284435000041 + ], + [ + -71.99141651199983, + 11.540934073000074 + ], + [ + -71.93467756499996, + 11.60813631700006 + ], + [ + -71.80020149599994, + 11.65564611800005 + ], + [ + -71.43349457299996, + 11.728678981000087 + ], + [ + -71.33624253499994, + 11.800487080999972 + ], + [ + -71.28321861599994, + 11.917859207000049 + ], + [ + -71.13586458999993, + 12.006249895999986 + ], + [ + -71.11371658399997, + 12.086158603000172 + ], + [ + -71.23753355499997, + 12.319680605000087 + ], + [ + -71.45274361299994, + 12.408996656000056 + ] + ] + ], + [ + [ + [ + -69.06856556799988, + 12.337438337000151 + ], + [ + -69.14392859999998, + 12.377352625000071 + ], + [ + -69.14979559699998, + 12.279915347000042 + ], + [ + -69.06224058299995, + 12.176122575000022 + ], + [ + -69.06856556799988, + 12.337438337000151 + ] + ] + ], + [ + [ + [ + -59.49193959999985, + 13.058179752 + ], + [ + -59.42037558099992, + 13.144059893000076 + ], + [ + -59.52910948499988, + 13.217555941000171 + ], + [ + -59.60083057999992, + 13.325211764000017 + ], + [ + -59.64330654499997, + 13.308092062000185 + ], + [ + -59.638469516999976, + 13.14504208500017 + ], + [ + -59.61063355199997, + 13.07086693600013 + ], + [ + -59.49193959999985, + 13.058179752 + ] + ] + ], + [ + [ + [ + -60.89028948999993, + 14.610559015000092 + ], + [ + -60.85279455499983, + 14.484198305000064 + ], + [ + -60.959903542999825, + 14.489274720000083 + ], + [ + -61.05858251599989, + 14.551861889 + ], + [ + -61.086864565999974, + 14.466202526000131 + ], + [ + -60.818977598999936, + 14.45900196800011 + ], + [ + -60.840469636999956, + 14.557274419000066 + ], + [ + -60.89028948999993, + 14.610559015000092 + ] + ] + ], + [ + [ + [ + -89.23419952799992, + 15.23966409999997 + ], + [ + -89.36193855899995, + 15.239322286000117 + ], + [ + -89.37261961799999, + 15.193557933000136 + ], + [ + -89.53915361699995, + 15.16894162400007 + ], + [ + -89.67340857199997, + 15.083761036000055 + ], + [ + -89.78227256299988, + 15.11349918999997 + ], + [ + -89.8455356479999, + 15.061330560000101 + ], + [ + -89.955657595, + 15.061831463000033 + ], + [ + -90.03144860699996, + 15.030894696000132 + ], + [ + -90.04753163599992, + 14.974866367 + ], + [ + -90.1434175899999, + 14.960876133000113 + ], + [ + -90.06665762999995, + 14.854522019000058 + ], + [ + -89.82314255499995, + 14.82589094600013 + ], + [ + -89.69187960499983, + 14.768171820000191 + ], + [ + -89.59780866699998, + 14.837347164000164 + ], + [ + -89.48953258299997, + 14.783101834000036 + ], + [ + -89.51672364399985, + 14.94616119900013 + ], + [ + -89.45088966199984, + 14.970609366000133 + ], + [ + -89.35458360599989, + 15.114346265 + ], + [ + -89.3562925089999, + 15.157123476000095 + ], + [ + -89.23419952799992, + 15.23966409999997 + ] + ] + ], + [ + [ + [ + -61.321483591999936, + 15.910697308000067 + ], + [ + -61.24739460799992, + 15.874630482000157 + ], + [ + -61.20092349299989, + 15.941891231000113 + ], + [ + -61.27306351599998, + 16.00037847600015 + ], + [ + -61.321483591999936, + 15.910697308000067 + ] + ] + ], + [ + [ + [ + -61.4004976139999, + 16.363493418000132 + ], + [ + -61.41109451799997, + 16.439677877 + ], + [ + -61.46608349099989, + 16.498638028000073 + ], + [ + -61.53151648299996, + 16.423309696000103 + ], + [ + -61.4700585249999, + 16.357532041000127 + ], + [ + -61.534976532999906, + 16.242140224000025 + ], + [ + -61.461536476999925, + 16.2125609900001 + ], + [ + -61.35040249899998, + 16.24960363800011 + ], + [ + -61.268516500999965, + 16.303541352000025 + ], + [ + -61.4004976139999, + 16.363493418000132 + ] + ] + ], + [ + [ + [ + -61.78554548199986, + 17.121787267000116 + ], + [ + -61.83070751199995, + 17.17385296800012 + ], + [ + -61.89908959199994, + 17.11825345700015 + ], + [ + -61.76935550099995, + 17.012229926000145 + ], + [ + -61.69472152599991, + 17.087382405000085 + ], + [ + -61.78554548199986, + 17.121787267000116 + ] + ] + ], + [ + [ + [ + -61.80920759499986, + 17.693857021000042 + ], + [ + -61.83215758099993, + 17.5971890350001 + ], + [ + -61.74057355399998, + 17.562780987000167 + ], + [ + -61.7446595639999, + 17.64417999600016 + ], + [ + -61.80920759499986, + 17.693857021000042 + ] + ] + ], + [ + [ + [ + -64.68293756899988, + 17.753897432000144 + ], + [ + -64.78718547799997, + 17.790123347000133 + ], + [ + -64.87068163899994, + 17.69304917300019 + ], + [ + -64.72122157699994, + 17.705739375000178 + ], + [ + -64.68293756899988, + 17.753897432000144 + ] + ] + ], + [ + [ + [ + -97.84689355299992, + 18.05612706800008 + ], + [ + -97.84403264199989, + 18.11916032099998 + ], + [ + -97.9440535579999, + 18.116959568000084 + ], + [ + -97.91512258099993, + 17.991067071000145 + ], + [ + -97.84689355299992, + 18.05612706800008 + ] + ] + ], + [ + [ + [ + -97.37271856099983, + 19.607136226000023 + ], + [ + -97.44412265399995, + 19.57543100600003 + ], + [ + -97.51193962599996, + 19.62656413600007 + ], + [ + -97.56502557199991, + 19.54724383900009 + ], + [ + -97.68557762399996, + 19.52730899100004 + ], + [ + -97.7369075609999, + 19.47768879500012 + ], + [ + -97.63090565499994, + 19.399982518000115 + ], + [ + -97.67131765999994, + 19.35988768400017 + ], + [ + -97.77397166599991, + 19.45012540900018 + ], + [ + -97.886444569, + 19.474384984000096 + ], + [ + -98.01069656099997, + 19.433009396000045 + ], + [ + -97.97389262999991, + 19.386633163000056 + ], + [ + -97.96306656399997, + 19.27369489700004 + ], + [ + -97.89749158299998, + 19.24435756500003 + ], + [ + -97.82254764499999, + 19.156223529999977 + ], + [ + -97.71135750799994, + 19.12957008300009 + ], + [ + -97.69649454999995, + 19.05234978900006 + ], + [ + -97.836646509, + 19.08762553100007 + ], + [ + -97.94121561299983, + 19.012494174000153 + ], + [ + -97.94400762499998, + 18.969262497000102 + ], + [ + -98.03433252199994, + 18.909914096000023 + ], + [ + -98.01586953599997, + 18.809812044000182 + ], + [ + -97.91871657299987, + 18.748979543000075 + ], + [ + -97.85768156599988, + 18.647371598000063 + ], + [ + -97.85958057, + 18.576080997000133 + ], + [ + -98.0685655559999, + 18.468726252000124 + ], + [ + -98.07111365499998, + 18.40205944400003 + ], + [ + -97.99146260799989, + 18.338000246000036 + ], + [ + -97.96735357199987, + 18.43395342399998 + ], + [ + -97.9214705309999, + 18.436061305000067 + ], + [ + -97.79224354499996, + 18.296853483 + ], + [ + -97.79915660299997, + 18.20874895200012 + ], + [ + -97.6576685689999, + 18.117646381000156 + ], + [ + -97.58625760299986, + 18.116708614000117 + ], + [ + -97.38331563399998, + 18.197019484000066 + ], + [ + -97.35704054699988, + 18.158943851000117 + ], + [ + -97.23577150699998, + 18.197031554000148 + ], + [ + -97.15803555699989, + 18.15344716600015 + ], + [ + -97.15254960199997, + 18.303947255000082 + ], + [ + -97.20856451999987, + 18.329940543000134 + ], + [ + -97.34667162999995, + 18.478758887000026 + ], + [ + -97.27125562299989, + 18.52332110800006 + ], + [ + -97.33676153799996, + 18.57345193000009 + ], + [ + -97.36970560299994, + 18.686160364000102 + ], + [ + -97.30644955899999, + 18.839044267000077 + ], + [ + -97.32758352199994, + 18.929255003000094 + ], + [ + -97.39454654599996, + 18.94110215200004 + ], + [ + -97.438194636, + 19.012922992000085 + ], + [ + -97.30584756999997, + 19.288301872000034 + ], + [ + -97.29627258699998, + 19.382336265000163 + ], + [ + -97.23634365599997, + 19.437200179000115 + ], + [ + -97.30302454499997, + 19.62168536600018 + ], + [ + -97.37271856099983, + 19.607136226000023 + ] + ] + ], + [ + [ + [ + -99.66349756299996, + 19.578909999000075 + ], + [ + -99.63809955799996, + 19.75837073700012 + ], + [ + -99.75776664899996, + 19.70806154800016 + ], + [ + -99.86877456299993, + 19.772587786000088 + ], + [ + -99.9411776099999, + 19.737915708000116 + ], + [ + -99.95568064999998, + 19.650504696000098 + ], + [ + -99.8862156269999, + 19.601014754000175 + ], + [ + -99.86710354699989, + 19.497611573000086 + ], + [ + -99.95902251399991, + 19.451471374999983 + ], + [ + -99.92237850999993, + 19.360864511000102 + ], + [ + -99.85449263799995, + 19.32953832100003 + ], + [ + -99.7746806589999, + 19.21761594100002 + ], + [ + -99.68925464899996, + 19.199745221000057 + ], + [ + -99.59580967099993, + 19.116480903000138 + ], + [ + -99.42449966399994, + 19.118038764000175 + ], + [ + -99.47950757999996, + 19.24371651700011 + ], + [ + -99.48218559799994, + 19.327241680000157 + ], + [ + -99.52978558799992, + 19.40106143600002 + ], + [ + -99.66266658099994, + 19.533023604999983 + ], + [ + -99.66349756299996, + 19.578909999000075 + ] + ] + ], + [ + [ + [ + -75.73632864599989, + 20.056768502000182 + ], + [ + -75.79418154799993, + 20.07995100200003 + ], + [ + -75.93698855899993, + 20.044041253000046 + ], + [ + -75.89357750799996, + 19.972416214000134 + ], + [ + -75.70251453999998, + 19.96054190700005 + ], + [ + -75.58786049799988, + 19.89502258100009 + ], + [ + -75.49392652099993, + 19.88552839900018 + ], + [ + -75.48783857699993, + 19.939244161000033 + ], + [ + -75.65480055599994, + 19.968462638000062 + ], + [ + -75.73632864599989, + 20.056768502000182 + ] + ] + ], + [ + [ + [ + -74.3310465859999, + 20.079384049999987 + ], + [ + -74.27758764599992, + 20.066654789000097 + ], + [ + -74.15579255799997, + 20.168887018000078 + ], + [ + -74.19938650099982, + 20.22396484000018 + ], + [ + -74.26280263899997, + 20.123141776000125 + ], + [ + -74.49423251799988, + 20.139296721 + ], + [ + -74.55725856299995, + 20.10922832 + ], + [ + -74.76347349799994, + 20.13509705200005 + ], + [ + -74.95503250699988, + 20.08790157300018 + ], + [ + -75.13607055199992, + 20.14984501100008 + ], + [ + -75.22917153599997, + 20.122085656000138 + ], + [ + -75.4018786389999, + 19.88959513100008 + ], + [ + -75.22119162899997, + 19.90640101500003 + ], + [ + -75.21384455499987, + 19.98483668500012 + ], + [ + -75.13277461999996, + 20.059705353000084 + ], + [ + -75.07156359299995, + 20.004570368000145 + ], + [ + -75.12951657399998, + 19.943463108000174 + ], + [ + -75.07827749699999, + 19.900426394000135 + ], + [ + -74.97834056799991, + 19.92640794700003 + ], + [ + -74.97950749699993, + 19.979101787000047 + ], + [ + -74.87879960099997, + 19.991224199000158 + ], + [ + -74.83675362799994, + 20.03392278700005 + ], + [ + -74.64311255299998, + 20.044077295000022 + ], + [ + -74.3310465859999, + 20.079384049999987 + ] + ] + ], + [ + [ + [ + -99.06289664899998, + 20.943526585000143 + ], + [ + -99.12518357699997, + 20.876460295000015 + ], + [ + -98.94464861499989, + 20.68751359000015 + ], + [ + -98.95857967299997, + 20.574021280000125 + ], + [ + -98.86141966899999, + 20.51483733200007 + ], + [ + -98.8678056729999, + 20.389758549000135 + ], + [ + -98.82825465699995, + 20.371760424 + ], + [ + -98.74501766499998, + 20.48296732400013 + ], + [ + -98.69675466599995, + 20.315727736000156 + ], + [ + -98.59137754699998, + 20.247265692000042 + ], + [ + -98.52309453999999, + 20.234751343000084 + ], + [ + -98.42180661599991, + 20.129664238000146 + ], + [ + -98.40756257799995, + 20.052030883000157 + ], + [ + -98.33328265499995, + 20.055003609000096 + ], + [ + -98.2666936309999, + 20.21843915400018 + ], + [ + -98.39675159899997, + 20.30813725200005 + ], + [ + -98.51623562899994, + 20.308991033000098 + ], + [ + -98.5467455889999, + 20.361610274000043 + ], + [ + -98.53749867299996, + 20.455318778000105 + ], + [ + -98.57026654999993, + 20.522799972000087 + ], + [ + -98.65790555099994, + 20.568078342999968 + ], + [ + -98.709472528, + 20.64059722800016 + ], + [ + -98.79502057899992, + 20.624798346000148 + ], + [ + -98.81358364399995, + 20.694860160000133 + ], + [ + -98.88603262399988, + 20.695888285000024 + ], + [ + -98.94091062099994, + 20.809632890000046 + ], + [ + -99.01412151599999, + 20.827778034 + ], + [ + -99.06289664899998, + 20.943526585000143 + ] + ] + ], + [ + [ + [ + -13.448255462999953, + 27.012326406000113 + ], + [ + -13.52826944599991, + 26.803874508999968 + ], + [ + -13.620200483999895, + 26.683889744 + ], + [ + -13.757120547999818, + 26.59734391100011 + ], + [ + -14.042739430999973, + 26.442571566000026 + ], + [ + -14.184860466999908, + 26.421891735000088 + ], + [ + -14.304940449999947, + 26.292018503 + ], + [ + -14.396519447999935, + 26.26240993300013 + ], + [ + -14.49318944599986, + 26.144554340000127 + ], + [ + -14.492239440999924, + 26.00272080299999 + ], + [ + -14.534059438999975, + 25.90654500200003 + ], + [ + -14.627389583999957, + 25.782441872999982 + ], + [ + -14.689229588999922, + 25.569410942000104 + ], + [ + -14.785619463999979, + 25.428197331000092 + ], + [ + -14.842840537999905, + 25.21038787700013 + ], + [ + -14.82211058199988, + 25.026917404000187 + ], + [ + -14.828129458999967, + 24.92086252400003 + ], + [ + -14.898110471999928, + 24.69100374900006 + ], + [ + -14.989290490999906, + 24.62271604900019 + ], + [ + -15.038140557999952, + 24.537140170000043 + ], + [ + -15.135919481999963, + 24.510152453000046 + ], + [ + -15.239279579999959, + 24.427295496 + ], + [ + -15.289930582999943, + 24.356959091000135 + ], + [ + -15.407839485999943, + 24.253325408000023 + ], + [ + -15.59169954899994, + 24.05066423200003 + ], + [ + -15.76239952199984, + 23.9488794290001 + ], + [ + -15.712340449999942, + 23.89420209500014 + ], + [ + -15.747260463999908, + 23.77134937900007 + ], + [ + -15.901989558999958, + 23.562989012000116 + ], + [ + -16.01395049499996, + 23.36408997000018 + ], + [ + -16.186859434999974, + 23.125782236000077 + ], + [ + -16.14579045599993, + 22.991209272000162 + ], + [ + -16.212810477999938, + 22.915252130000056 + ], + [ + -16.286649512999873, + 22.890033665000033 + ], + [ + -16.333639467999944, + 22.75488167900005 + ], + [ + -16.359790502999886, + 22.572491298000102 + ], + [ + -16.424560485999905, + 22.51958187600019 + ], + [ + -16.456960564999918, + 22.38951988399998 + ], + [ + -16.499620596999932, + 22.315964828000176 + ], + [ + -16.61354055199996, + 22.265897373000143 + ], + [ + -16.6982705289999, + 22.279585692000182 + ], + [ + -16.80891952999997, + 22.161440922000168 + ], + [ + -16.91589943599996, + 21.86871787300015 + ], + [ + -16.953039481999838, + 21.83219959700017 + ], + [ + -16.99113053799988, + 21.486389430000145 + ], + [ + -17.01332045299995, + 21.428181806000055 + ], + [ + -17.06518951399994, + 20.987956036000185 + ], + [ + -17.102170470999965, + 20.84733469100013 + ], + [ + -17.02790043799996, + 20.84237394500002 + ], + [ + -16.980489543999965, + 21.11268914900006 + ], + [ + -16.945869433999974, + 21.12857905800007 + ], + [ + -16.923940530999914, + 21.258671895000077 + ], + [ + -16.856000511999923, + 21.233233489999975 + ], + [ + -16.86235047399998, + 21.166446988000132 + ], + [ + -16.807680516999937, + 21.108680420000155 + ], + [ + -16.85816052899986, + 21.033434567000143 + ], + [ + -16.77964053599993, + 20.93372009400008 + ], + [ + -16.755130509999958, + 20.84603398700017 + ], + [ + -16.690170592999948, + 20.749339346000056 + ], + [ + -16.680219596999848, + 20.682654098000057 + ], + [ + -16.5394594469999, + 20.56214093800014 + ], + [ + -16.526399435999963, + 20.736621148999973 + ], + [ + -16.384559528999944, + 20.536962036000148 + ], + [ + -16.30282055099991, + 20.331753768000112 + ], + [ + -16.23247945199995, + 20.281696706000105 + ], + [ + -16.199510575999966, + 20.203030031000026 + ], + [ + -16.25173955599996, + 20.123815681000053 + ], + [ + -16.232650441999965, + 19.97912274200013 + ], + [ + -16.30731056899998, + 19.906307976000107 + ], + [ + -16.24745958899996, + 19.780294276000177 + ], + [ + -16.34193956299987, + 19.65872147500005 + ], + [ + -16.43910945799996, + 19.469113438000022 + ], + [ + -16.348550537999927, + 19.43959522400013 + ], + [ + -16.51045051799997, + 19.352070218000165 + ], + [ + -16.470169438999903, + 19.259845478000102 + ], + [ + -16.347520569999972, + 19.186168885000086 + ], + [ + -16.260400576999814, + 19.07898613600014 + ], + [ + -16.178829570999937, + 18.895766114000025 + ], + [ + -16.135219534999976, + 18.658700076000173 + ], + [ + -16.055719529999863, + 18.454103351000185 + ], + [ + -16.024040461999903, + 17.993000943000084 + ], + [ + -16.044349478999948, + 17.741986077000035 + ], + [ + -16.069328768999924, + 17.590229972000145 + ], + [ + -15.88117981199997, + 17.775180079999984 + ], + [ + -15.78607901199996, + 17.885006987000054 + ], + [ + -15.777196450999952, + 17.89526498900011 + ], + [ + -15.736649992999958, + 17.942089958000054 + ], + [ + -15.735619923999934, + 18.139290055 + ], + [ + -15.682839984999873, + 18.393340025000043 + ], + [ + -15.477379974999963, + 18.892569966999986 + ], + [ + -15.472279971999967, + 18.987500000000125 + ], + [ + -15.504469975999882, + 19.09253991500009 + ], + [ + -15.5843800479999, + 19.171319939000057 + ], + [ + -14.745787480999923, + 19.08555111900006 + ], + [ + -14.603906165999945, + 19.114996019000046 + ], + [ + -14.466302460999941, + 19.202763586000117 + ], + [ + -14.295088731999897, + 19.414893242000176 + ], + [ + -14.180348454999887, + 19.636633671000027 + ], + [ + -13.960154299999886, + 20.18395001900018 + ], + [ + -13.846641367999837, + 20.437292639000134 + ], + [ + -13.69109313399997, + 20.691950270000063 + ], + [ + -13.60780725099994, + 20.78714466300005 + ], + [ + -13.494200896999814, + 20.879722063000088 + ], + [ + -13.254815509999958, + 20.980762560000073 + ], + [ + -13.106031534999943, + 21.010519355000042 + ], + [ + -13.16612005299993, + 20.91105024600006 + ], + [ + -13.155960003999951, + 20.728569994000054 + ], + [ + -13.219359931999918, + 20.568779948000042 + ], + [ + -13.22757003099997, + 20.355419986000186 + ], + [ + -13.165590055999871, + 20.350120025000138 + ], + [ + -13.12528993299992, + 20.409489799000085 + ], + [ + -13.161980062999874, + 20.584879967000177 + ], + [ + -13.129709969999965, + 20.70810996100016 + ], + [ + -13.090960054999925, + 20.76108000200003 + ], + [ + -13.025140027999896, + 20.740459967000163 + ], + [ + -12.976120051999942, + 20.82390997699997 + ], + [ + -12.873369979999893, + 20.787740161999977 + ], + [ + -12.849060214999952, + 20.73007003600003 + ], + [ + -12.874870022999971, + 20.640709980000054 + ], + [ + -12.845030061999921, + 20.581269973000076 + ], + [ + -12.918989954999972, + 20.511419970000134 + ], + [ + -13.059310080999978, + 20.430689996000126 + ], + [ + -13.10277997199995, + 20.331440082000086 + ], + [ + -13.165480043999935, + 20.304849978 + ], + [ + -13.183259996999936, + 20.157769982000048 + ], + [ + -13.097180071999958, + 20.034359918000064 + ], + [ + -12.947240103999945, + 20.05348008700014 + ], + [ + -12.860660106999887, + 20.024950067000134 + ], + [ + -12.874550017999923, + 19.951929944000085 + ], + [ + -12.734669942999972, + 19.999999941000056 + ], + [ + -12.458879922999927, + 20.120159971000078 + ], + [ + -12.409159914999918, + 20.072900018000155 + ], + [ + -12.680050066999854, + 19.87808006300014 + ], + [ + -12.689849978999973, + 19.81653996200015 + ], + [ + -12.61252000699983, + 19.789900044000035 + ], + [ + -12.527290082999912, + 19.803440028000182 + ], + [ + -12.447380009999904, + 19.718489800000043 + ], + [ + -12.430020040999977, + 19.6584199940001 + ], + [ + -12.345180000999903, + 19.593040017000135 + ], + [ + -12.29611003499997, + 19.642990082999972 + ], + [ + -12.24384002599993, + 19.563880021999978 + ], + [ + -12.173190010999974, + 19.586209915000097 + ], + [ + -12.165470127999924, + 19.685950045000027 + ], + [ + -12.26318004299992, + 19.668619998999986 + ], + [ + -12.37170004899997, + 19.71683996500002 + ], + [ + -12.398100051999904, + 19.788460025000177 + ], + [ + -12.346730032999915, + 19.88914995900018 + ], + [ + -12.283709955999939, + 19.836380053000084 + ], + [ + -12.211479986999962, + 19.831330040000125 + ], + [ + -12.08929995099993, + 19.903699945000028 + ], + [ + -11.972480075999954, + 20.030969950000042 + ], + [ + -11.974960020999902, + 20.0881199370001 + ], + [ + -12.083860053999956, + 20.13177975300016 + ], + [ + -12.186399957999981, + 20.143600022000157 + ], + [ + -12.133840043999953, + 20.249940021000043 + ], + [ + -12.142739964999919, + 20.380550005000146 + ], + [ + -12.059779994999928, + 20.42843007600004 + ], + [ + -12.024360024999964, + 20.55484004700014 + ], + [ + -12.160390014999962, + 20.56615003400003 + ], + [ + -12.07300014999987, + 20.638939923000066 + ], + [ + -12.094278595999981, + 20.744508944000074 + ], + [ + -11.13216710699993, + 20.183277243000134 + ], + [ + -9.507147163999946, + 19.79327245600018 + ], + [ + -7.362120838999886, + 18.948262086000057 + ], + [ + -7.023777252999821, + 18.763711039000043 + ], + [ + -6.517301674999942, + 18.459077094000065 + ], + [ + -6.17029463099982, + 18.271939890000056 + ], + [ + -5.84450412599989, + 18.139489267000158 + ], + [ + -5.613202772999955, + 18.065319732000034 + ], + [ + -5.322840329999963, + 17.98767518699998 + ], + [ + -5.081222493999974, + 17.935129490000065 + ], + [ + -4.785843111999952, + 17.884864104000087 + ], + [ + -4.261157405999882, + 17.83191930099997 + ], + [ + -3.94004165799987, + 17.822315545000095 + ], + [ + -3.523834067999871, + 17.836658425000053 + ], + [ + -3.298919282999975, + 17.857814545999986 + ], + [ + -2.965631658999826, + 17.90816789600018 + ], + [ + -2.529948067999953, + 18.013166295000076 + ], + [ + -2.233278345999963, + 18.114773996000054 + ], + [ + -2.063668683999822, + 18.18414034100016 + ], + [ + -1.698551936999877, + 18.359252245000107 + ], + [ + -1.282597303999921, + 18.599304406000044 + ], + [ + -1.081015449999825, + 18.730832111000097 + ], + [ + -0.83111586099983, + 18.908484326000064 + ], + [ + -0.642117344999917, + 19.08144794800006 + ], + [ + -0.533364931999927, + 19.204208947999973 + ], + [ + -0.336269014999971, + 19.461552733000133 + ], + [ + -0.11100375999996, + 19.780949579000094 + ], + [ + 0.080441619000112, + 20.02355043900019 + ], + [ + 0.296524603000023, + 20.24464512300017 + ], + [ + 0.429524624000067, + 20.340720668000017 + ], + [ + 0.612250456000083, + 20.43259997000007 + ], + [ + 0.757011086000034, + 20.4758983750001 + ], + [ + 1.023262277000185, + 20.51890980900015 + ], + [ + 1.71635588100014, + 20.55713975700013 + ], + [ + 2.473387475000038, + 20.56860993300012 + ], + [ + 3.484791434000101, + 20.532064960000127 + ], + [ + 3.834994502000086, + 20.48064247400015 + ], + [ + 4.431843605999973, + 20.28816759700004 + ], + [ + 4.655243265000024, + 20.17422281400013 + ], + [ + 5.638038706000145, + 19.53326926600016 + ], + [ + 7.130356503000087, + 18.757264011000075 + ], + [ + 7.471696100999964, + 18.650324813000054 + ], + [ + 8.641737678000084, + 18.437589981000087 + ], + [ + 8.432179921000113, + 18.350910060000103 + ], + [ + 8.38319004400006, + 18.29707998600003 + ], + [ + 8.36940996900006, + 18.126729974000057 + ], + [ + 8.490559936000125, + 17.99868002500017 + ], + [ + 8.444230072000153, + 17.86108979300019 + ], + [ + 8.311929945000145, + 17.84628000099997 + ], + [ + 8.305330076000189, + 17.665790007 + ], + [ + 8.392449751000129, + 17.619640036000078 + ], + [ + 8.478079944000115, + 17.45785005200014 + ], + [ + 8.526809840000112, + 17.414149927000096 + ], + [ + 8.53455999900018, + 17.309010032 + ], + [ + 8.62818994800017, + 17.305329983000092 + ], + [ + 8.609190001000115, + 17.459020056000156 + ], + [ + 8.685599916000172, + 17.396579966 + ], + [ + 8.821399849000045, + 17.444090043000188 + ], + [ + 8.923440032000087, + 17.390590006000025 + ], + [ + 8.954429755000149, + 17.41515007200013 + ], + [ + 8.99766993999998, + 17.55032002900009 + ], + [ + 9.097909966999964, + 17.591259984999965 + ], + [ + 9.190759971000034, + 17.56022995300009 + ], + [ + 9.240020039000171, + 17.725090078000107 + ], + [ + 9.28628433200015, + 17.73617955000003 + ], + [ + 9.527779786000053, + 17.471801009000103 + ], + [ + 9.675913729000115, + 17.34485948700012 + ], + [ + 9.938251551000178, + 17.17440222700003 + ], + [ + 10.209723609000037, + 17.037153095000065 + ], + [ + 10.48990496099998, + 16.922165825000093 + ], + [ + 10.950896923000187, + 16.766355047 + ], + [ + 11.1436998960001, + 16.732968535 + ], + [ + 13.36205531700017, + 16.62733256300004 + ], + [ + 13.534812816000112, + 16.640332529999966 + ], + [ + 13.730424694000021, + 16.679454905 + ], + [ + 13.999065006000023, + 16.81768729900017 + ], + [ + 14.14512187500003, + 16.922013634000052 + ], + [ + 14.72152487500017, + 17.237600797000027 + ], + [ + 15.046805075000066, + 17.39266012900015 + ], + [ + 15.357780102000163, + 17.480875288000107 + ], + [ + 17.262423725000076, + 17.841213270000083 + ], + [ + 17.571580271000073, + 17.951893242000097 + ], + [ + 18.006332680000128, + 18.162160222000068 + ], + [ + 18.235006502000033, + 18.26267819500015 + ], + [ + 18.381422108000095, + 18.312276388999976 + ], + [ + 18.528660852000087, + 18.341809764000118 + ], + [ + 18.70963093900008, + 18.335136410000075 + ], + [ + 18.844213935000084, + 18.28453312500011 + ], + [ + 18.961889419000045, + 18.19895534000017 + ], + [ + 19.072697022000057, + 18.089579415000117 + ], + [ + 19.28704417600011, + 17.80953089000002 + ], + [ + 19.400113620000127, + 17.625288020000028 + ], + [ + 19.561669031000122, + 17.224645855000176 + ], + [ + 19.687954816000058, + 17.069467518000067 + ], + [ + 19.825536312, + 17.02022168600007 + ], + [ + 20.01665593900009, + 17.027057694000064 + ], + [ + 20.18322329199998, + 17.067595913 + ], + [ + 20.368814064000105, + 17.133307226 + ], + [ + 20.754724825000096, + 17.292441867000093 + ], + [ + 20.902986665000128, + 17.326666896000063 + ], + [ + 21.303230958000142, + 17.388242941000044 + ], + [ + 21.942233299000065, + 17.42278360800009 + ], + [ + 21.963299994000067, + 17.311129841000024 + ], + [ + 21.88738997500019, + 17.275849983 + ], + [ + 21.86596992900013, + 17.21823002200017 + ], + [ + 22.017789967000112, + 17.132250077000037 + ], + [ + 22.023299920000113, + 17.014850040000056 + ], + [ + 22.202889924000033, + 17.047199870000043 + ], + [ + 22.253309963000106, + 17.002160056000093 + ], + [ + 22.25662001900008, + 16.908219960000054 + ], + [ + 22.422770018000108, + 16.79699998400008 + ], + [ + 22.553629950000072, + 16.848530004999986 + ], + [ + 22.56014990600005, + 16.71320004600011 + ], + [ + 22.60045002900017, + 16.654570084000113 + ], + [ + 22.47037004100008, + 16.644129987000042 + ], + [ + 22.47780002000013, + 16.548950007000087 + ], + [ + 22.404539806000173, + 16.532889945000022 + ], + [ + 22.357179874000053, + 16.46913991300005 + ], + [ + 22.36729996600002, + 16.383550028000172 + ], + [ + 22.454480015000172, + 16.442630074000135 + ], + [ + 22.56757002700016, + 16.44663998500016 + ], + [ + 22.634290044000124, + 16.39144998100005 + ], + [ + 22.545420027000148, + 16.332739929000127 + ], + [ + 22.58384993800007, + 16.22670004400004 + ], + [ + 22.689790019000043, + 16.159250073000067 + ], + [ + 22.750429954000026, + 16.162440083000092 + ], + [ + 22.757640084000116, + 16.066390035000097 + ], + [ + 23.113310077000108, + 15.979989929999988 + ], + [ + 23.104900019000013, + 16.13008004400018 + ], + [ + 23.01906001000009, + 16.200590122000108 + ], + [ + 22.988150024, + 16.313469967 + ], + [ + 23.04052001200006, + 16.355570070000056 + ], + [ + 23.13507001800008, + 16.329679998000188 + ], + [ + 23.236759921000157, + 16.237920084999985 + ], + [ + 23.340679997000052, + 16.226309984000125 + ], + [ + 23.45167994800005, + 16.278199966000045 + ], + [ + 23.352829951000103, + 16.388820066000108 + ], + [ + 23.284770071000025, + 16.42459999700003 + ], + [ + 23.15901999800019, + 16.442310070000133 + ], + [ + 23.165179817000137, + 16.540560015000096 + ], + [ + 23.396439954000186, + 16.711949952000055 + ], + [ + 23.388010006000115, + 16.81136004500013 + ], + [ + 23.488410035000186, + 16.848210000999984 + ], + [ + 23.455790015000048, + 16.94310007700011 + ], + [ + 23.657220048, + 16.992330045000017 + ], + [ + 23.760349970000107, + 17.053740067000035 + ], + [ + 23.67896995500007, + 17.124309817000096 + ], + [ + 23.795490069000152, + 17.312269922000098 + ], + [ + 23.80443998000004, + 17.49086998900009 + ], + [ + 23.833374260000085, + 17.51992273100018 + ], + [ + 24.546341622000057, + 17.529486013000053 + ], + [ + 24.764099793000128, + 17.500318084000185 + ], + [ + 24.94547319100019, + 17.49815869100013 + ], + [ + 25.051452351000137, + 17.52346273800009 + ], + [ + 25.27541456200015, + 17.669910557000037 + ], + [ + 25.479872306000118, + 17.854573450999965 + ], + [ + 25.59525769100003, + 17.931420187000185 + ], + [ + 25.67917969300015, + 17.939659431000166 + ], + [ + 29.574059723000175, + 18.01480181100004 + ], + [ + 30.323129666000057, + 18.00118235700006 + ], + [ + 30.96602584400017, + 17.989493336000066 + ], + [ + 31.111294907000172, + 17.95943874700015 + ], + [ + 31.519262417000164, + 17.843522421999978 + ], + [ + 31.694886601000064, + 17.80120837100003 + ], + [ + 31.97440455600008, + 17.776941669 + ], + [ + 32.25385977500008, + 17.825095177000037 + ], + [ + 32.45812548200007, + 17.893416646 + ], + [ + 32.70884801700004, + 18.009818188000054 + ], + [ + 33.10052399500012, + 18.2434683460001 + ], + [ + 33.31606488800003, + 18.39756304100007 + ], + [ + 33.406881667, + 18.495278897 + ], + [ + 33.45041601100013, + 18.627760390000105 + ], + [ + 33.408366160000185, + 18.746037620000152 + ], + [ + 33.30911746000004, + 18.88133229100015 + ], + [ + 33.07474133600016, + 19.135696826000185 + ], + [ + 32.721855491000156, + 19.40614996300019 + ], + [ + 32.60590672500007, + 19.55192685900016 + ], + [ + 32.4913881920001, + 19.838223190000065 + ], + [ + 32.51132928100009, + 19.990770789000123 + ], + [ + 32.62684672300003, + 20.18243019900018 + ], + [ + 32.762020199000176, + 20.318200177000165 + ], + [ + 32.950132152000094, + 20.444456274000174 + ], + [ + 33.57506128900019, + 20.506949187000146 + ], + [ + 33.74797311200007, + 20.413529996000136 + ], + [ + 33.86977928700014, + 20.301222874000132 + ], + [ + 34.02543705700003, + 20.107558518000076 + ], + [ + 34.13213588100018, + 19.94329459000005 + ], + [ + 34.1746416310001, + 19.848353561000124 + ], + [ + 34.257233324000026, + 19.541739205000113 + ], + [ + 34.36502599700003, + 19.218361186000152 + ], + [ + 34.55639016900017, + 18.900581548000048 + ], + [ + 34.6771973970001, + 18.757486456000095 + ], + [ + 34.774635352000075, + 18.683646446000125 + ], + [ + 34.90135538200013, + 18.62878820600008 + ], + [ + 35.16329891500004, + 18.58702590900009 + ], + [ + 35.41237198400012, + 18.601350871000022 + ], + [ + 35.59583892300009, + 18.641602242000033 + ], + [ + 35.761585229, + 18.70754119200012 + ], + [ + 35.83408213100006, + 18.758248498000057 + ], + [ + 36.12845441900015, + 19.034318436000035 + ], + [ + 36.21715180600012, + 19.08474149200009 + ], + [ + 36.43796410800019, + 19.110112892000018 + ], + [ + 36.803194779000194, + 19.049324908000187 + ], + [ + 37.39010391700015, + 19.02169811500005 + ], + [ + 37.33684951999999, + 19.138272678000135 + ], + [ + 37.29183953799998, + 19.477472710000086 + ], + [ + 37.24457951800014, + 19.548067781000043 + ], + [ + 37.26335950700013, + 19.844221710000113 + ], + [ + 37.17977952700005, + 20.036440711000182 + ], + [ + 37.21078854600006, + 20.153792887 + ], + [ + 37.186920574, + 20.37141156900003 + ], + [ + 37.23279154500011, + 20.56224085000008 + ], + [ + 37.17560953100019, + 20.687032804000125 + ], + [ + 37.16740046200016, + 20.87374221200014 + ], + [ + 37.087390503000165, + 21.05447213800005 + ], + [ + 37.155940557000065, + 21.217353304000028 + ], + [ + 37.24029150400008, + 21.021304276000023 + ], + [ + 37.31312957200009, + 21.0686015120001 + ], + [ + 37.02220947100005, + 21.400584222000134 + ], + [ + 36.91374948700019, + 21.59012386300003 + ], + [ + 36.86275851500005, + 21.97506209600016 + ], + [ + 36.88058045300005, + 22.061227391000045 + ], + [ + 36.64751861700006, + 22.21709910600009 + ], + [ + 36.572151561000055, + 22.290806210000085 + ], + [ + 36.434440580000114, + 22.359232380000094 + ], + [ + 36.42444951900012, + 22.421889118000024 + ], + [ + 36.29520057200011, + 22.504923771 + ], + [ + 36.253608562000124, + 22.60749932300007 + ], + [ + 36.171970502000136, + 22.658786512000177 + ], + [ + 35.95196951500009, + 22.68181445000016 + ], + [ + 35.843669459000125, + 22.760920338000062 + ], + [ + 35.66979944999997, + 22.94609066000004 + ], + [ + 35.660430494000025, + 23.063134383000033 + ], + [ + 35.57592045800004, + 23.211976867000033 + ], + [ + 35.53480957000011, + 23.422326092000105 + ], + [ + 35.48738057100019, + 23.491333630000042 + ], + [ + 35.5169904820001, + 23.75892907400015 + ], + [ + 35.474838562000116, + 23.802535758000033 + ], + [ + 35.51034145400007, + 23.977069111 + ], + [ + 35.604648593000036, + 23.92598141100018 + ], + [ + 35.694381561000114, + 23.91004221600008 + ], + [ + 35.72216052900012, + 23.991247267000176 + ], + [ + 35.60792960500004, + 24.01915581999998 + ], + [ + 35.584579467000026, + 24.086373487000117 + ], + [ + 35.51169949000018, + 24.110292253000125 + ], + [ + 35.31444950300005, + 24.360719045000053 + ], + [ + 35.22851957300003, + 24.407417478000013 + ], + [ + 35.13835946400002, + 24.51782122400016 + ], + [ + 35.165821596000114, + 24.566278683 + ], + [ + 35.10268055100016, + 24.63910535200006 + ], + [ + 35.076778459000025, + 24.744811041000048 + ], + [ + 34.997619598000085, + 24.82397644100007 + ], + [ + 34.94787954000003, + 25.000728650000156 + ], + [ + 34.81314849300014, + 25.198488424000118 + ], + [ + 34.70117951000009, + 25.396720099000163 + ], + [ + 34.63853048300018, + 25.577041324000106 + ], + [ + 34.573390523000114, + 25.691444076000153 + ], + [ + 34.41881146400004, + 25.867877941000188 + ], + [ + 34.30651860400013, + 26.085846987000025 + ], + [ + 34.223659468000164, + 26.20295240000013 + ], + [ + 34.18103045000015, + 26.32819697700012 + ], + [ + 34.113391509, + 26.403362532000017 + ], + [ + 34.017700517000094, + 26.610964001000127 + ], + [ + 33.9353595500001, + 26.674180147000186 + ], + [ + 33.95148851100015, + 26.845482779000122 + ], + [ + 33.90695948200005, + 27.049903819 + ], + [ + 33.83275952300005, + 27.108792053000116 + ], + [ + 33.838058562000185, + 27.25748466900012 + ], + [ + 33.728050609000036, + 27.3090135920001 + ], + [ + 33.62631945000015, + 27.492654385000094 + ], + [ + 33.50212059900019, + 27.658218598000133 + ], + [ + 33.546798490000185, + 27.700416619000066 + ], + [ + 33.47257958700004, + 27.811041984000155 + ], + [ + 33.58399955600015, + 27.805221422000102 + ], + [ + 33.56515150500019, + 27.88123908200015 + ], + [ + 33.48814059100005, + 27.982873681000058 + ], + [ + 33.334308527000076, + 28.085389554000074 + ], + [ + 33.12800960600009, + 28.29025097900012 + ], + [ + 33.11272051200001, + 28.35041745300009 + ], + [ + 33.026168476000066, + 28.461055055000145 + ], + [ + 32.92744860000016, + 28.550050583000143 + ], + [ + 32.86613045200011, + 28.56938076 + ], + [ + 32.813381459000084, + 28.761363056000164 + ], + [ + 32.67819946500009, + 28.881646049000096 + ], + [ + 32.62009845900013, + 28.9790241500001 + ], + [ + 32.6667405660001, + 29.09501879300018 + ], + [ + 32.59061846800017, + 29.345689834000098 + ], + [ + 32.34164057200002, + 29.593719234000105 + ], + [ + 32.35300861200005, + 29.688116731000036 + ], + [ + 32.48981853800012, + 29.86208933400013 + ], + [ + 32.45051948200012, + 29.92320799300012 + ], + [ + 32.53969957900017, + 29.950465774000065 + ], + [ + 32.624992485000064, + 29.873145902000147 + ], + [ + 32.60943952800011, + 29.81953776400013 + ], + [ + 32.692214510000156, + 29.73481784500018 + ], + [ + 32.689716536000105, + 29.614543402000038 + ], + [ + 32.74055445500011, + 29.449828946000082 + ], + [ + 32.82499659700011, + 29.382054553000046 + ], + [ + 32.88527656300005, + 29.236783263000177 + ], + [ + 32.946102525000015, + 29.20622820900013 + ], + [ + 33.10055552000017, + 29.040401809000173 + ], + [ + 33.17027250300009, + 29.00290134200003 + ], + [ + 33.17416355000012, + 28.82235565100018 + ], + [ + 33.224998452000136, + 28.75624506600019 + ], + [ + 33.196388501, + 28.669582725000055 + ], + [ + 33.22027558400015, + 28.583752204 + ], + [ + 33.347496614000136, + 28.465981938000027 + ], + [ + 33.4313885680001, + 28.361539065000102 + ], + [ + 33.56555149000013, + 28.29209902100007 + ], + [ + 33.62749459300011, + 28.18765715400002 + ], + [ + 33.805549518000134, + 27.98711157100007 + ], + [ + 33.92166150800006, + 27.931004117000043 + ], + [ + 34.049438593000104, + 27.81295205200007 + ], + [ + 34.16165953600006, + 27.78267510900008 + ], + [ + 34.25499756000016, + 27.78739613199997 + ], + [ + 34.288604466000095, + 27.857115964000116 + ], + [ + 34.43027455499998, + 27.97127513900017 + ], + [ + 34.45304852100014, + 28.164327300000082 + ], + [ + 34.406105505000085, + 28.308208201000127 + ], + [ + 34.46083061600001, + 28.439036131000137 + ], + [ + 34.62638845800012, + 28.729025170000057 + ], + [ + 34.64332560300005, + 28.96290591800016 + ], + [ + 34.680271523000044, + 28.979013421000047 + ], + [ + 34.69888353900012, + 29.165675890000102 + ], + [ + 34.73749561400018, + 29.205118445000153 + ], + [ + 34.74777249800019, + 29.310667393000017 + ], + [ + 34.869438505000176, + 29.478438896000057 + ], + [ + 34.97867082100015, + 29.544308688000115 + ], + [ + 34.97629302300004, + 29.40143258400019 + ], + [ + 34.93004075800019, + 29.231026060000147 + ], + [ + 34.85395268100012, + 29.043920337000145 + ], + [ + 34.83055509999997, + 28.788857214000075 + ], + [ + 34.77973859000008, + 28.669366427000114 + ], + [ + 34.80713644900004, + 28.519897726000124 + ], + [ + 34.77828504800004, + 28.477511756000126 + ], + [ + 34.652619148000156, + 28.17178445000019 + ], + [ + 34.76128843000009, + 28.095423567000125 + ], + [ + 34.86261584200008, + 28.116632857000127 + ], + [ + 34.93038725300016, + 28.078457280000066 + ], + [ + 34.991167604000054, + 28.112390871000116 + ], + [ + 35.2208787400001, + 28.05229277900014 + ], + [ + 35.246329554000056, + 27.966587388000164 + ], + [ + 35.429322237000065, + 27.773743246000095 + ], + [ + 35.539644307000174, + 27.530643768000175 + ], + [ + 35.65021508500007, + 27.384186431000103 + ], + [ + 35.76757661300013, + 27.30369710800005 + ], + [ + 35.8164318260001, + 27.195109400000092 + ], + [ + 35.80389396900017, + 27.112210154000024 + ], + [ + 36.019683838000105, + 26.928017171000192 + ], + [ + 36.11316681000011, + 26.72850036600005 + ], + [ + 36.21076251699998, + 26.662660353000035 + ], + [ + 36.45151102900007, + 26.24312661900018 + ], + [ + 36.497587585000076, + 26.11425476100004 + ], + [ + 36.557898182000145, + 26.068925520000164 + ], + [ + 36.68472239300007, + 26.045833333000076 + ], + [ + 36.70972239200006, + 25.9625 + ], + [ + 36.67097632200017, + 25.844406113000048 + ], + [ + 36.77916666700003, + 25.73333333300019 + ], + [ + 36.81250000000017, + 25.766666667000038 + ], + [ + 36.92464435700015, + 25.655779391000067 + ], + [ + 37.00972239200007, + 25.504166667 + ], + [ + 37.081127421000076, + 25.44779459600005 + ], + [ + 37.092129517000046, + 25.350462850000042 + ], + [ + 37.25175120000006, + 25.176751709000087 + ], + [ + 37.242548551000084, + 25.068157306000046 + ], + [ + 37.28632812500007, + 24.987500000000182 + ], + [ + 37.27032826700014, + 24.86300455700001 + ], + [ + 37.2200002030001, + 24.803333537000015 + ], + [ + 37.22544677100012, + 24.70967284900007 + ], + [ + 37.29417578600004, + 24.67758680100019 + ], + [ + 37.45767253400015, + 24.43971612000007 + ], + [ + 37.42583313000006, + 24.38750000000016 + ], + [ + 37.49677882300011, + 24.288965148000102 + ], + [ + 37.576161803, + 24.248443451000128 + ], + [ + 37.68412182500009, + 24.303648694000174 + ], + [ + 37.74830560800018, + 24.26829657400009 + ], + [ + 37.855091154000036, + 24.154102859000034 + ], + [ + 37.93517367600009, + 24.16247617000016 + ], + [ + 38.03761189800019, + 24.0707214360001 + ], + [ + 38.07916666700004, + 24.075000000000102 + ], + [ + 38.22164661200014, + 23.960107673000095 + ], + [ + 38.4, + 23.92083333300002 + ], + [ + 38.4328704830001, + 23.81712951700007 + ], + [ + 38.56250000000017, + 23.593750000000114 + ], + [ + 38.66807007500012, + 23.51251509000008 + ], + [ + 38.698647025000184, + 23.37914563100003 + ], + [ + 38.79919123000013, + 23.237502409000115 + ], + [ + 38.81955108600016, + 23.177884928000026 + ], + [ + 38.8198130290001, + 22.988520304000076 + ], + [ + 38.91934065500004, + 22.98605196500006 + ], + [ + 39.02501099500017, + 22.862485116000187 + ], + [ + 39.020874114000094, + 22.786132673999987 + ], + [ + 39.11799612900006, + 22.407623382000054 + ], + [ + 39.112068190000116, + 22.355836673000056 + ], + [ + 39.08781946100004, + 22.248389317000147 + ], + [ + 39.04381997899998, + 22.21194947600003 + ], + [ + 39.05235038600017, + 22.070811918000175 + ], + [ + 38.97378485700011, + 21.97508741100006 + ], + [ + 39.10310767400017, + 21.71719594300015 + ], + [ + 39.14821811600012, + 21.533916657000134 + ], + [ + 39.177715879000175, + 21.511973199000124 + ], + [ + 39.16818306500011, + 21.35684014600008 + ], + [ + 39.10610712700009, + 21.321647300000166 + ], + [ + 39.19790723100016, + 21.183693631000097 + ], + [ + 39.19840028600015, + 21.10511990500015 + ], + [ + 39.251943970000184, + 21.05416666700006 + ], + [ + 39.28210875000002, + 20.963798812000164 + ], + [ + 39.42297533700008, + 20.825316924000163 + ], + [ + 39.53753463000004, + 20.63648318700018 + ], + [ + 39.685745239000084, + 20.477412924000134 + ], + [ + 39.687088013000164, + 20.43791097100012 + ], + [ + 39.78071131100006, + 20.362819490000106 + ], + [ + 39.99455323100017, + 20.269649725000136 + ], + [ + 40.07166646300004, + 20.31166585300008 + ], + [ + 40.177166748000104, + 20.218833415000063 + ], + [ + 40.244167074000075, + 20.194167074000063 + ], + [ + 40.27084182600004, + 20.12009246800011 + ], + [ + 40.37795108200004, + 20.078004197000155 + ], + [ + 40.55241955900016, + 19.95245884000019 + ], + [ + 40.54449971500014, + 19.905499268000142 + ], + [ + 40.628772, + 19.787703040000167 + ], + [ + 40.73732017100019, + 19.79408822700009 + ], + [ + 40.80360209100007, + 19.704166667000038 + ], + [ + 40.80515909900009, + 19.614382127000113 + ], + [ + 40.862505800000065, + 19.54578541000012 + ], + [ + 40.96071472200015, + 19.49083667300016 + ], + [ + 40.95888657300014, + 19.35317532400012 + ], + [ + 41.04972229000009, + 19.24972127300009 + ], + [ + 41.07916666700015, + 19.115832520000083 + ], + [ + 41.15037878700008, + 19.09747337000016 + ], + [ + 41.13250020300012, + 18.9625 + ], + [ + 41.19084827900008, + 18.863739571000053 + ], + [ + 41.24336868700016, + 18.84584306100004 + ], + [ + 41.21791787300003, + 18.707077670000103 + ], + [ + 41.296412171000156, + 18.586932374000128 + ], + [ + 41.354165164000165, + 18.582521566000025 + ], + [ + 41.42070455300012, + 18.480654853999965 + ], + [ + 41.47783940600016, + 18.292226535000168 + ], + [ + 41.5830426230001, + 18.148508747 + ], + [ + 41.661250008000025, + 18.005563946000166 + ], + [ + 41.78257429200005, + 17.848152016000085 + ], + [ + 41.87662455200012, + 17.807263028000136 + ], + [ + 42.13595682800002, + 17.610955811000167 + ], + [ + 42.279913330000056, + 17.453420003000133 + ], + [ + 42.319607544000064, + 17.44460856100011 + ], + [ + 42.32315909900018, + 17.339018491000047 + ], + [ + 42.36257497300011, + 17.182367073000023 + ], + [ + 42.42777811700006, + 17.154166667000084 + ], + [ + 42.44392524000017, + 17.06076555700008 + ], + [ + 42.54573783300009, + 17.008467230000065 + ], + [ + 42.54054997100019, + 16.88344370300007 + ], + [ + 42.662379902000055, + 16.793169532000093 + ], + [ + 42.740560029000164, + 16.64277384500008 + ], + [ + 42.71933552000007, + 16.565984721 + ], + [ + 42.77761209700009, + 16.45571485900018 + ], + [ + 42.75869503900003, + 16.423201923000136 + ], + [ + 42.82065120300007, + 16.196095798000044 + ], + [ + 42.84025000800011, + 16.056382127000177 + ], + [ + 42.812704553000174, + 15.870654854 + ], + [ + 42.6982115190001, + 15.730310020000047 + ], + [ + 42.69303808400008, + 15.637900442000046 + ], + [ + 42.773056030000134, + 15.464721680000139 + ], + [ + 42.799825352000084, + 15.258987013000137 + ], + [ + 42.70566633300018, + 15.307100741999989 + ], + [ + 42.66537670600019, + 15.234615385000154 + ], + [ + 42.795833333000076, + 15.183333333000064 + ], + [ + 42.87087665100012, + 15.111463981999975 + ], + [ + 42.867129387000034, + 15.033808911000165 + ], + [ + 42.92087409900017, + 14.966707348000057 + ], + [ + 42.94842755400009, + 14.87098559500015 + ], + [ + 42.92638855100006, + 14.804166667000061 + ], + [ + 43.019985927000164, + 14.545987076000074 + ], + [ + 42.99308965900019, + 14.404234597000084 + ], + [ + 43.07666626000008, + 14.2125 + ], + [ + 43.103733317000035, + 14.062933350000037 + ], + [ + 43.15862347600017, + 13.953779810000185 + ], + [ + 43.230147298000134, + 13.879166667000106 + ], + [ + 43.28455993400007, + 13.70118136400015 + ], + [ + 43.291666667000015, + 13.595833333000087 + ], + [ + 43.25833333300017, + 13.504166667000106 + ], + [ + 43.253186035000056, + 13.261519368 + ], + [ + 43.28785324700016, + 13.161282776 + ], + [ + 43.350207726000065, + 13.081926528 + ], + [ + 43.44565184400017, + 12.88588871900015 + ], + [ + 43.496051439000155, + 12.837051851000012 + ], + [ + 43.458398886000055, + 12.700370826000096 + ], + [ + 43.531089274000124, + 12.6875 + ], + [ + 43.57916666700015, + 12.743750000000148 + ], + [ + 43.795705545000146, + 12.689023442000178 + ], + [ + 44.04583333300019, + 12.6 + ], + [ + 44.14083353700016, + 12.659167480000065 + ], + [ + 44.287500000000136, + 12.626389567000103 + ], + [ + 44.424722290000034, + 12.679166667000061 + ], + [ + 44.52944030800006, + 12.812227376000124 + ], + [ + 44.650270394000074, + 12.81202165700006 + ], + [ + 44.74361063600003, + 12.776944987000036 + ], + [ + 44.829166667000095, + 12.78125000000017 + ], + [ + 44.995454915000096, + 12.85378824900016 + ], + [ + 45.21488138800015, + 13.043452962000117 + ], + [ + 45.3875, + 13.068750000000136 + ], + [ + 45.515024821000054, + 13.22664184600012 + ], + [ + 45.63898111999998, + 13.344352214000082 + ], + [ + 45.838896688000034, + 13.39443766300002 + ], + [ + 46.245833333000064, + 13.43267618800013 + ], + [ + 46.43428775100017, + 13.407464543000174 + ], + [ + 46.61250116600013, + 13.435251835000145 + ], + [ + 46.70416666700015, + 13.428240967000079 + ], + [ + 46.90681254200007, + 13.53485514300013 + ], + [ + 47.20305582800006, + 13.596944173 + ], + [ + 47.39570922900009, + 13.65404256200003 + ], + [ + 47.61706950000013, + 13.849597168000173 + ], + [ + 47.720833334000076, + 13.91369018600011 + ], + [ + 47.795833334000065, + 13.928887939 + ], + [ + 47.96527710000004, + 14.051389567000115 + ], + [ + 48.07012233800015, + 14.053445810000028 + ], + [ + 48.19440864600011, + 13.973496080000075 + ], + [ + 48.33164266100016, + 14.006642660000125 + ], + [ + 48.51907959, + 14.030920410000022 + ], + [ + 48.63333333300011, + 14.070833333000053 + ], + [ + 48.695524090000106, + 14.053857422000135 + ], + [ + 48.82123611100019, + 14.154439676000095 + ], + [ + 48.86208503500018, + 14.233375033000016 + ], + [ + 48.966307768000036, + 14.307936273000166 + ], + [ + 48.98593005100008, + 14.378496368000071 + ], + [ + 49.07514445000015, + 14.508188883000173 + ], + [ + 49.17992350300017, + 14.545833333000019 + ], + [ + 49.34583333300009, + 14.64398193400018 + ], + [ + 49.62083333300018, + 14.758929443000113 + ], + [ + 49.84625040700007, + 14.812500000000114 + ], + [ + 49.92916666700012, + 14.851080322000143 + ], + [ + 50.18092651400008, + 14.84583333300003 + ], + [ + 50.22541707400012, + 14.891249593000111 + ], + [ + 50.342323812000075, + 14.942323812000154 + ], + [ + 50.4723205570001, + 15.027679443000125 + ], + [ + 50.67093185500005, + 15.062395213000173 + ], + [ + 50.920607503000156, + 15.120607503000087 + ], + [ + 51.18886108400005, + 15.194472249000114 + ], + [ + 51.46826985700011, + 15.281730143000061 + ], + [ + 51.48842570000011, + 15.311574300000132 + ], + [ + 51.662166341000045, + 15.329500327000176 + ], + [ + 51.65416666800007, + 15.398610433000101 + ], + [ + 51.822813372000155, + 15.455309017 + ], + [ + 51.88999272900014, + 15.508818677000022 + ], + [ + 52.17384079700008, + 15.609697899000082 + ], + [ + 52.119181435000144, + 15.701966348000042 + ], + [ + 52.06052090999998, + 15.740628966000145 + ], + [ + 51.964530961000094, + 15.736629385000072 + ], + [ + 52.00852635400008, + 15.833952528000111 + ], + [ + 52.12918038800012, + 15.805955460000177 + ], + [ + 52.197096761000125, + 15.745833333000064 + ], + [ + 52.15083414700001, + 15.987500000000182 + ], + [ + 52.2083333330001, + 16.14583333300004 + ], + [ + 52.28462727900006, + 16.265372721000176 + ], + [ + 52.420833333000076, + 16.3986104330001 + ], + [ + 52.6375, + 16.494775391000132 + ], + [ + 52.57868148900013, + 16.554763969000135 + ], + [ + 52.754819944000076, + 16.590275754 + ], + [ + 52.84288917100008, + 16.644253668000033 + ], + [ + 53.09573308300014, + 16.706754410000087 + ], + [ + 53.27755342300003, + 16.80760788000009 + ], + [ + 53.385509251000144, + 16.83459683700005 + ], + [ + 53.58437524800007, + 16.82465353700013 + ], + [ + 53.644035048000035, + 16.853062965000106 + ], + [ + 53.70653579000003, + 16.98800774900019 + ], + [ + 53.81875303099997, + 17.051928963000137 + ], + [ + 53.918186030000186, + 17.15278243300014 + ], + [ + 54.07159694300003, + 17.24795401800003 + ], + [ + 54.24915586900016, + 17.25647684600017 + ], + [ + 54.33154321100017, + 17.218124118000105 + ], + [ + 54.51904543800009, + 17.218124118000105 + ], + [ + 54.69092247800012, + 17.159884790000092 + ], + [ + 54.783253120000154, + 17.16272573300006 + ], + [ + 55.12251589100009, + 17.296670905000042 + ], + [ + 55.26192156700017, + 17.44699929000012 + ], + [ + 55.225762939000106, + 17.5125 + ], + [ + 55.27306240200011, + 17.6313985700001 + ], + [ + 55.374595861000046, + 17.678343181 + ], + [ + 55.22381282400016, + 17.690878864000126 + ], + [ + 55.215960603000156, + 17.730139970000153 + ], + [ + 55.349448365000114, + 17.925731665000058 + ], + [ + 55.54361238300015, + 17.989263274000052 + ], + [ + 55.64354974600013, + 17.992832466000095 + ], + [ + 55.71065054600007, + 18.04922569100006 + ], + [ + 55.84984901500013, + 18.02424135100017 + ], + [ + 55.984764454000015, + 18.027096704000087 + ], + [ + 56.24531543400008, + 18.066357811000046 + ], + [ + 56.3059916900001, + 18.06421629600004 + ], + [ + 56.4225484210001, + 18.00245157900008 + ], + [ + 56.556221517000154, + 18.13122151699997 + ], + [ + 56.547184245000096, + 18.22781575500005 + ], + [ + 56.57941760600016, + 18.27090647700004 + ], + [ + 56.62127278600008, + 18.478727214000173 + ], + [ + 56.59684244800019, + 18.586490885000103 + ], + [ + 56.79583333300013, + 18.75297648100002 + ], + [ + 56.889593780000155, + 18.814096993000078 + ], + [ + 57.06001530700007, + 18.882715265000172 + ], + [ + 57.36479554900018, + 18.95807845300004 + ], + [ + 57.68750000000017, + 18.932576497000127 + ], + [ + 57.84050020500018, + 18.999668222000082 + ], + [ + 57.76388956700015, + 19.180556234000164 + ], + [ + 57.745833333000064, + 19.305832926 + ], + [ + 57.76833292599997, + 19.37333374000019 + ], + [ + 57.702315267000074, + 19.520833333000155 + ], + [ + 57.70919418300008, + 19.573674788000062 + ], + [ + 57.66388956700018, + 19.686110434000057 + ], + [ + 57.740277100000185, + 19.804166667000175 + ], + [ + 57.816884741000024, + 19.981686805000095 + ], + [ + 57.835984294000184, + 20.097349040000154 + ], + [ + 57.826041667000084, + 20.204166667000095 + ], + [ + 57.99213053400018, + 20.43286946600017 + ], + [ + 58.06599528000004, + 20.459004720000053 + ], + [ + 58.07200927700018, + 20.55299072300005 + ], + [ + 58.171466064000185, + 20.611867269000015 + ], + [ + 58.267535019000036, + 20.58747013600015 + ], + [ + 58.20000000000016, + 20.404166667000027 + ], + [ + 58.287500001000126, + 20.368056234000107 + ], + [ + 58.44583333300005, + 20.35297648100004 + ], + [ + 58.525820310000086, + 20.420825761000117 + ], + [ + 58.538889568, + 20.51250000000016 + ], + [ + 58.59166666800019, + 20.6375 + ], + [ + 58.68825683600005, + 20.720076497000093 + ], + [ + 58.629166667000106, + 20.768056234000085 + ], + [ + 58.73779703800011, + 20.85446370400018 + ], + [ + 58.80416666700006, + 20.98988037100014 + ], + [ + 59.0253519690001, + 21.24131469700012 + ], + [ + 59.183864340000184, + 21.3661356610001 + ], + [ + 59.34725876100009, + 21.432699798000158 + ], + [ + 59.34305623500018, + 21.4625 + ], + [ + 59.44433797300013, + 21.613995361000036 + ], + [ + 59.52519938200004, + 21.791467285000067 + ], + [ + 59.64903767900017, + 21.93750000000017 + ], + [ + 59.673105877000125, + 22.068560791000152 + ], + [ + 59.81265055400007, + 22.229317220000098 + ], + [ + 59.840972900000054, + 22.42916666700006 + ], + [ + 59.77805582700017, + 22.530277507000108 + ], + [ + 59.52638956800013, + 22.579166667000095 + ], + [ + 59.385032593000176, + 22.674167079000085 + ], + [ + 59.41426056000006, + 22.609955485000114 + ], + [ + 59.43503489900007, + 22.490795314000138 + ], + [ + 59.605816155000184, + 22.535041959000125 + ], + [ + 59.54412266300017, + 22.42586426200012 + ], + [ + 59.54583137500015, + 22.281702939000127 + ], + [ + 59.439981170000124, + 22.10912303800012 + ], + [ + 59.373341407000055, + 22.038346393000097 + ], + [ + 59.314975406000144, + 22.038346393000097 + ], + [ + 59.284128660000135, + 21.9616342220001 + ], + [ + 59.17800865800007, + 22.05345500300018 + ], + [ + 59.091943538000066, + 22.156787107000127 + ], + [ + 59.051743843000054, + 22.285300226000174 + ], + [ + 58.99175906200014, + 22.342137380000167 + ], + [ + 58.831050213000026, + 22.36183253300004 + ], + [ + 58.72537987200013, + 22.408777143000066 + ], + [ + 58.67312926200003, + 22.467233076000127 + ], + [ + 58.556307328, + 22.329097210000157 + ], + [ + 58.36798929100007, + 22.353199041000153 + ], + [ + 58.17904172900006, + 22.45554189 + ], + [ + 57.90025189500011, + 22.53836945 + ], + [ + 57.59367301000009, + 22.496910704000015 + ], + [ + 57.35526273500011, + 22.437285652000128 + ], + [ + 57.30148327600011, + 22.442681584000184 + ], + [ + 57.09140164700011, + 22.54430497600015 + ], + [ + 56.935818933000064, + 22.570924908 + ], + [ + 56.78356371000007, + 22.680282469000133 + ], + [ + 56.68382889600002, + 22.7912588100001 + ], + [ + 56.65217276000004, + 22.883799048000128 + ], + [ + 56.710179032000156, + 22.949449557000094 + ], + [ + 56.584453809000195, + 23.134170306000044 + ], + [ + 56.581216250000125, + 23.22086495100018 + ], + [ + 56.45153401100015, + 23.226350815000046 + ], + [ + 56.37832919699997, + 23.274284680000164 + ], + [ + 56.507871580000085, + 23.320560461000184 + ], + [ + 56.57680957200017, + 23.36961281700019 + ], + [ + 56.55990231800013, + 23.45450881900007 + ], + [ + 56.404139739000016, + 23.569981769000037 + ], + [ + 56.25835963600002, + 23.60496539700017 + ], + [ + 56.11581709100005, + 23.79580153500018 + ], + [ + 56.08307359300011, + 23.8976129670001 + ], + [ + 56.08065359900007, + 24.04104665699998 + ], + [ + 55.956367293000085, + 24.153911574000063 + ], + [ + 55.975342988000136, + 24.271902626000042 + ], + [ + 55.92210312300017, + 24.36156503500007 + ], + [ + 56.03271973400018, + 24.511392087000104 + ], + [ + 55.97588258100012, + 24.53261608700012 + ], + [ + 55.973724208000135, + 24.618591276000018 + ], + [ + 55.917426648, + 24.738021243000105 + ], + [ + 55.89179597000009, + 24.854573381000023 + ], + [ + 55.94953244499999, + 24.905115280000075 + ], + [ + 55.92417156300007, + 24.968607416 + ], + [ + 56.01131587000009, + 25.28615803100007 + ], + [ + 55.99171064900003, + 25.387511624000012 + ], + [ + 56.03253986900012, + 25.73914654400005 + ], + [ + 56.026694277, + 25.839960546000157 + ], + [ + 56.05917276800011, + 25.900218368000026 + ], + [ + 56.012675725000065, + 25.881675176000044 + ], + [ + 55.87091592700011, + 25.726701137000134 + ], + [ + 55.784168957000134, + 25.69440629200011 + ], + [ + 55.647234967000145, + 25.5858916950001 + ], + [ + 55.6358866380001, + 25.539113363000126 + ], + [ + 55.52054203800009, + 25.51857473900003 + ], + [ + 55.45809497100015, + 25.39937589699997 + ], + [ + 55.26592773300018, + 25.25267560800006 + ], + [ + 55.19751935200014, + 25.149191282000118 + ], + [ + 55.09148928100012, + 25.033628399000122 + ], + [ + 54.956848070000035, + 24.960937432000094 + ], + [ + 54.811995904000185, + 24.85683217200011 + ], + [ + 54.708354195000084, + 24.81420938800011 + ], + [ + 54.65612747800009, + 24.734244090000118 + ], + [ + 54.646684598000036, + 24.59880619000012 + ], + [ + 54.57175158200005, + 24.499679148000098 + ], + [ + 54.56259798600013, + 24.43647856299998 + ], + [ + 54.48258576600017, + 24.425624634000144 + ], + [ + 54.41574850900008, + 24.27140580100007 + ], + [ + 54.321489745, + 24.241955201999986 + ], + [ + 54.21258518300016, + 24.24164591100009 + ], + [ + 54.16518757300008, + 24.29384608400005 + ], + [ + 54.12570733600012, + 24.248340389000134 + ], + [ + 54.00370288200014, + 24.110192784000162 + ], + [ + 53.80857937700006, + 24.04997566300017 + ], + [ + 53.707379730000014, + 24.066509899000096 + ], + [ + 53.57766384300015, + 24.046808642000087 + ], + [ + 53.53866922900011, + 24.0866129960001 + ], + [ + 53.410969984000076, + 24.10915083000009 + ], + [ + 53.23921194000013, + 24.09555742100008 + ], + [ + 52.978714872000126, + 24.155391926000163 + ], + [ + 52.86998396300015, + 24.13196811600011 + ], + [ + 52.76442417400017, + 24.126471690000074 + ], + [ + 52.640746772000114, + 24.16785106500015 + ], + [ + 52.45674587300016, + 24.0919132680001 + ], + [ + 52.28286689000015, + 23.984507952000115 + ], + [ + 52.20774109400003, + 23.96368939000007 + ], + [ + 52.0334098030001, + 23.974022075000164 + ], + [ + 51.884596797000086, + 23.97773438500019 + ], + [ + 51.78367403200008, + 24.03320470700004 + ], + [ + 51.764294767000024, + 24.159899204000055 + ], + [ + 51.78172323100006, + 24.263440446000118 + ], + [ + 51.63693563600009, + 24.21255855400011 + ], + [ + 51.537500000000136, + 24.24880981400014 + ], + [ + 51.49120279900012, + 24.307870482999988 + ], + [ + 51.387541501999976, + 24.32208479900015 + ], + [ + 51.26721221200006, + 24.289709203000143 + ], + [ + 51.294821399000114, + 24.415974018000156 + ], + [ + 51.454166667000095, + 24.556548056000054 + ], + [ + 51.4125, + 24.618055217000176 + ], + [ + 51.50787079300005, + 24.851245888000108 + ], + [ + 51.597916667000106, + 24.954166667000038 + ], + [ + 51.62361043300007, + 25.1875 + ], + [ + 51.5923151990001, + 25.274180953000155 + ], + [ + 51.52901192100012, + 25.29056660000009 + ], + [ + 51.52427313200013, + 25.452179542000124 + ], + [ + 51.476389567000126, + 25.51250000100009 + ], + [ + 51.48958333300004, + 25.59583333300003 + ], + [ + 51.55833333300018, + 25.654166667000027 + ], + [ + 51.52541707400013, + 25.699582926000176 + ], + [ + 51.6, + 25.79626799700003 + ], + [ + 51.58262950000005, + 25.90842781400005 + ], + [ + 51.52083333300004, + 25.948611450000044 + ], + [ + 51.4, + 25.97083333300003 + ], + [ + 51.35833333300013, + 26.104166667000015 + ], + [ + 51.24861043300007, + 26.15694478400019 + ], + [ + 51.16034384800008, + 26.08720404000013 + ], + [ + 51.06347765000004, + 26.049484089000146 + ], + [ + 51.04014945900013, + 25.977765543000032 + ], + [ + 50.89892892100005, + 25.707879002000027 + ], + [ + 50.93095569900015, + 25.605147560000034 + ], + [ + 50.80535685199999, + 25.52083333300004 + ], + [ + 50.75235034000008, + 25.437693798000055 + ], + [ + 50.77798101900004, + 25.129136401000153 + ], + [ + 50.80019505700005, + 24.986455504000105 + ], + [ + 50.86026898600005, + 24.89585226200012 + ], + [ + 50.86863268100012, + 24.781368565000037 + ], + [ + 50.76518511300003, + 24.723557938000056 + ], + [ + 50.71808617099998, + 24.868243075000066 + ], + [ + 50.556018066000036, + 25.08101806600007 + ], + [ + 50.55441487600012, + 25.18725077300013 + ], + [ + 50.487858073000154, + 25.403808594 + ], + [ + 50.38173014300014, + 25.431731160000027 + ], + [ + 50.30459391300013, + 25.545406087000174 + ], + [ + 50.149385579000125, + 25.69938557900008 + ], + [ + 50.195052389000125, + 25.74707308400002 + ], + [ + 50.10156250000017, + 25.9125 + ], + [ + 50.11583252000014, + 25.97416687000009 + ], + [ + 50.009373529000186, + 25.982990604000065 + ], + [ + 50.00500081400014, + 26.162500000000136 + ], + [ + 50.04377450100009, + 26.202117533999967 + ], + [ + 50.15520691100005, + 26.133918077000033 + ], + [ + 50.22361043300015, + 26.22083333300003 + ], + [ + 50.22986043300017, + 26.34652811700016 + ], + [ + 50.20365187300007, + 26.396567327000128 + ], + [ + 50.06583252000007, + 26.46583353700015 + ], + [ + 49.99166666700006, + 26.616666667000175 + ], + [ + 50.05711687000013, + 26.73194478400012 + ], + [ + 49.96364490600013, + 26.832272491000083 + ], + [ + 49.775010208000026, + 26.90378844300011 + ], + [ + 49.66666666700013, + 26.987500000000125 + ], + [ + 49.51290469700007, + 27.17950073300011 + ], + [ + 49.48750376000004, + 27.07638855000016 + ], + [ + 49.28004353800003, + 27.17171020500018 + ], + [ + 49.24830322300005, + 27.214968872000156 + ], + [ + 49.233795462000046, + 27.356563946000165 + ], + [ + 49.12279459600012, + 27.435538737000172 + ], + [ + 49.27194417300018, + 27.43750000000017 + ], + [ + 49.218826388000195, + 27.530775925 + ], + [ + 49.03988637100008, + 27.560836672999983 + ], + [ + 48.9726530800001, + 27.621015748000048 + ], + [ + 48.8481590990001, + 27.60720031 + ], + [ + 48.849294959000076, + 27.60730823100016 + ], + [ + 48.85435384100015, + 27.69564615900009 + ], + [ + 48.78095296200007, + 27.70595194500015 + ], + [ + 48.805517578000035, + 27.827815755000074 + ], + [ + 48.7625, + 28.009166463000042 + ], + [ + 48.69583333300005, + 28.016666667000095 + ], + [ + 48.623610433000124, + 28.07638855000016 + ], + [ + 48.61666666700006, + 28.2083333330001 + ], + [ + 48.514583333000076, + 28.345833334000133 + ], + [ + 48.54583333300019, + 28.408333333000144 + ], + [ + 48.4969405810001, + 28.496917599000028 + ], + [ + 48.42416585299998, + 28.54083353700014 + ], + [ + 48.390277100000105, + 28.61250000100017 + ], + [ + 48.3875, + 28.742499798000097 + ], + [ + 48.28125, + 28.812500001000046 + ], + [ + 48.2875, + 28.883333334000042 + ], + [ + 48.21694539400016, + 28.916944378000096 + ], + [ + 48.16845296200012, + 28.995833334 + ], + [ + 48.13499959300003, + 29.137500001000035 + ], + [ + 48.05595614900011, + 29.33815425100005 + ], + [ + 47.98721377900006, + 29.388686998000026 + ], + [ + 47.892432424, + 29.325374885000144 + ], + [ + 47.82036336200002, + 29.371303304000037 + ], + [ + 47.696520996000174, + 29.36318766400018 + ], + [ + 47.83864949500003, + 29.503017172000114 + ], + [ + 47.99988528600005, + 29.62349832600006 + ], + [ + 48.22470857000019, + 29.592878529000075 + ], + [ + 48.356376535000095, + 29.711484806000044 + ], + [ + 48.34777050000008, + 29.780371310000135 + ], + [ + 48.18853747300005, + 29.98007467900004 + ], + [ + 48.13276646900016, + 29.96647235900008 + ], + [ + 48.13999150200016, + 29.870364787000142 + ], + [ + 48.05081961900004, + 29.78092837100013 + ], + [ + 48.01348063200015, + 29.838480632000028 + ], + [ + 47.99790677800013, + 29.98700429700017 + ], + [ + 48.09387946700019, + 30.043694330000164 + ], + [ + 48.189712616000065, + 30.02758515100004 + ], + [ + 48.38388057700013, + 29.937863247000166 + ], + [ + 48.52471147000006, + 29.920644136000135 + ], + [ + 48.64693453800004, + 29.963420341000187 + ], + [ + 48.689155526000036, + 30.0300837960001 + ], + [ + 48.908332571000074, + 30.031193728000062 + ], + [ + 48.94332852500003, + 30.160915079000063 + ], + [ + 48.918052561000195, + 30.246742918000052 + ], + [ + 48.85999262600018, + 30.31284931200014 + ], + [ + 48.918876502000046, + 30.408681958000102 + ], + [ + 49.02999857800006, + 30.419790494000097 + ], + [ + 48.97277046300013, + 30.508120330999986 + ], + [ + 49.10026558100009, + 30.51423124100006 + ], + [ + 49.26249647900005, + 30.417566607000083 + ], + [ + 49.18444050800008, + 30.36396064800016 + ], + [ + 49.05305451100003, + 30.40423804000011 + ], + [ + 48.995544597000105, + 30.386458850000054 + ], + [ + 49.00665246300014, + 30.293685096000104 + ], + [ + 49.15470855700005, + 30.22313059300012 + ], + [ + 49.20999156700003, + 30.22313059300012 + ], + [ + 49.277770486000065, + 30.14730152700008 + ], + [ + 49.35304249100011, + 30.169799561000104 + ], + [ + 49.479713500000116, + 30.153690381000047 + ], + [ + 49.496665564000125, + 30.06785935700003 + ], + [ + 49.581657559000064, + 30.007306645000085 + ], + [ + 49.839721606000126, + 30.165633755000044 + ], + [ + 50.00638552500004, + 30.21702387400012 + ], + [ + 50.077499603000035, + 30.182025405000047 + ], + [ + 50.143051618000186, + 30.05480588400013 + ], + [ + 50.13138551700007, + 29.956477778000135 + ], + [ + 50.23638159500007, + 29.862590236000187 + ], + [ + 50.38721461400013, + 29.659545840000135 + ], + [ + 50.44749457900019, + 29.634544802000107 + ], + [ + 50.66860952000019, + 29.406774462000044 + ], + [ + 50.69082659300017, + 29.275115718000052 + ], + [ + 50.63055450700017, + 29.191782837000062 + ], + [ + 50.67472059800008, + 29.116509993000022 + ], + [ + 50.80971550800007, + 29.137897927999973 + ], + [ + 50.92527747700018, + 29.0606771300001 + ], + [ + 50.89416452299997, + 28.965125781000097 + ], + [ + 50.80499247300014, + 28.917905659000155 + ], + [ + 50.876106551000134, + 28.830133219000118 + ], + [ + 51.004165603, + 28.801798195000117 + ], + [ + 51.07083157300019, + 28.697360519000142 + ], + [ + 51.0874555690001, + 28.494388878000166 + ], + [ + 51.14916247000019, + 28.382649223999977 + ], + [ + 51.283332600000165, + 28.23376751300009 + ], + [ + 51.26388557900003, + 28.11599322300009 + ], + [ + 51.60638456000004, + 27.8401719470001 + ], + [ + 51.792221579000056, + 27.849338564000163 + ], + [ + 52.042770580000195, + 27.819893776000185 + ], + [ + 52.224159491000194, + 27.684619247000057 + ], + [ + 52.49971757500009, + 27.60684859600002 + ], + [ + 52.59887649600017, + 27.477406362000124 + ], + [ + 52.66304750799998, + 27.449075362000087 + ], + [ + 52.60305051600005, + 27.349080598000057 + ], + [ + 52.75638553200008, + 27.28741929500012 + ], + [ + 53.03027360700008, + 27.098813733000156 + ], + [ + 53.109992547000104, + 27.082426274000056 + ], + [ + 53.44387861900009, + 26.969928225000103 + ], + [ + 53.48193363300015, + 26.856881329000146 + ], + [ + 53.71332562600014, + 26.699940250000054 + ], + [ + 53.93138150800007, + 26.70827488000009 + ], + [ + 54.02526854600012, + 26.743551293000053 + ], + [ + 54.12582355700005, + 26.70438383200019 + ], + [ + 54.3319395850001, + 26.696609450000153 + ], + [ + 54.42110459500009, + 26.58522535600008 + ], + [ + 54.543884557000126, + 26.58328025100019 + ], + [ + 54.64332561200007, + 26.494394527000054 + ], + [ + 54.852775626000096, + 26.51745230400013 + ], + [ + 55.0963825660001, + 26.696052221000116 + ], + [ + 55.21665952400019, + 26.733549670000173 + ], + [ + 55.281379552000146, + 26.785495510000146 + ], + [ + 55.48165859, + 26.75883250800007 + ], + [ + 55.602775582000106, + 26.801882801000033 + ], + [ + 55.59554250300005, + 26.92854408700009 + ], + [ + 55.66526753200014, + 26.991038383000102 + ], + [ + 55.946380472000044, + 27.022152846000097 + ], + [ + 55.97915656300012, + 27.063536984000166 + ], + [ + 56.13276650600011, + 27.15853395500011 + ], + [ + 56.32166258500007, + 27.197697223999967 + ], + [ + 56.54222147100012, + 27.15436429300007 + ], + [ + 56.701103631000194, + 27.150199493000116 + ], + [ + 56.797775473000115, + 27.12408852400017 + ], + [ + 57.02555050700005, + 26.84104690800018 + ], + [ + 57.08776853600017, + 26.63799899200012 + ], + [ + 57.074165545000085, + 26.45189626600012 + ], + [ + 57.126098476000095, + 26.34607021200003 + ], + [ + 57.126098476000095, + 26.26163175700009 + ], + [ + 57.214713633000144, + 26.165242385000113 + ], + [ + 57.165542539000114, + 26.081914198000163 + ], + [ + 57.198043536000114, + 25.99330624900017 + ], + [ + 57.27137747800009, + 25.917756636000092 + ], + [ + 57.31054661400003, + 25.77609626900005 + ], + [ + 57.53110449400003, + 25.736096989000032 + ], + [ + 57.762214519999986, + 25.735262151000086 + ], + [ + 57.77748852700017, + 25.654157850000104 + ], + [ + 57.933326547000036, + 25.69859668900017 + ], + [ + 57.97776756500008, + 25.681931454 + ], + [ + 58.05804457200014, + 25.565549902000043 + ], + [ + 58.18221257700003, + 25.538608118000184 + ], + [ + 58.38999157500018, + 25.60165847000019 + ], + [ + 58.46693459699998, + 25.57610456200007 + ], + [ + 58.54888161400004, + 25.591660872000034 + ], + [ + 58.63526953200011, + 25.56582901900009 + ], + [ + 58.81832862100009, + 25.558329395000044 + ], + [ + 58.919990545000076, + 25.51305454500016 + ], + [ + 59.00499762800001, + 25.40583659300006 + ], + [ + 59.119987617000106, + 25.390002172000038 + ], + [ + 59.34054549700005, + 25.454166143000066 + ], + [ + 59.47804257200005, + 25.47555424600006 + ], + [ + 59.626937527, + 25.389724228000148 + ], + [ + 59.84443651500004, + 25.406946357000038 + ], + [ + 59.88888558000008, + 25.345837421000056 + ], + [ + 60.0711054730001, + 25.377501904000155 + ], + [ + 60.18249560200002, + 25.31945269800002 + ], + [ + 60.2019345760001, + 25.365558363000048 + ], + [ + 60.38665747300013, + 25.31473083700007 + ], + [ + 60.39527155500019, + 25.373893998000028 + ], + [ + 60.5191575930001, + 25.441665876000116 + ], + [ + 60.5980455510001, + 25.40777733800013 + ], + [ + 60.634437595000065, + 25.26250923300006 + ], + [ + 60.966102631000126, + 25.215564540000116 + ], + [ + 61.19110157900002, + 25.166677761000017 + ], + [ + 61.21110549400004, + 25.125846660000036 + ], + [ + 61.389160587000106, + 25.08057281600003 + ], + [ + 61.499435587, + 25.116406290000157 + ], + [ + 61.52416253700011, + 25.20612014700015 + ], + [ + 61.638755558000184, + 25.20121824300014 + ], + [ + 61.79175949000006, + 25.141280091000056 + ], + [ + 61.731891579000035, + 25.055395255000064 + ], + [ + 61.83509460000005, + 25.03878483800014 + ], + [ + 61.86988050399998, + 25.0993041910001 + ], + [ + 62.10042961200014, + 25.095884374000036 + ], + [ + 62.07782361900013, + 25.17468951899997 + ], + [ + 62.21361950300013, + 25.213508627000067 + ], + [ + 62.373210605, + 25.179250280000133 + ], + [ + 62.492237486000136, + 25.24790611400016 + ], + [ + 62.61951853000011, + 25.259620494000046 + ], + [ + 62.84321560000012, + 25.241938199000117 + ], + [ + 63.01044848200013, + 25.20676790100009 + ], + [ + 63.15279063300005, + 25.25240686100011 + ], + [ + 63.49148154699998, + 25.19410753900013 + ], + [ + 63.50534052100005, + 25.314474686000096 + ], + [ + 63.68193062500012, + 25.37642097400004 + ], + [ + 63.877639515000055, + 25.341931454000076 + ], + [ + 64.22200062000013, + 25.31155309000013 + ], + [ + 64.40455662700009, + 25.232477712000104 + ], + [ + 64.53044862200011, + 25.26649616900005 + ], + [ + 64.59381849200008, + 25.23691643300009 + ], + [ + 64.747970577, + 25.313064012000098 + ], + [ + 65.00791149900004, + 25.32135237300008 + ], + [ + 65.15241249300016, + 25.303933269000026 + ], + [ + 65.23110951100017, + 25.31621275700013 + ], + [ + 65.27230857700016, + 25.38395848400006 + ], + [ + 65.46492756200013, + 25.379809777000048 + ], + [ + 65.64267755300017, + 25.348601102000032 + ], + [ + 65.85640753500007, + 25.420806839000193 + ], + [ + 65.9304965180001, + 25.49724309100003 + ], + [ + 66.00102956300009, + 25.461876824000115 + ], + [ + 66.0959016430001, + 25.492954574 + ], + [ + 66.17318748400015, + 25.5981095730001 + ], + [ + 66.22290055200011, + 25.719734676000087 + ], + [ + 66.33780655400005, + 25.70667433000017 + ], + [ + 66.37081163900001, + 25.645487274000175 + ], + [ + 66.53740649100018, + 25.645327180000038 + ], + [ + 66.56297263700003, + 25.449018481000167 + ], + [ + 66.5590596290001, + 25.350722059000134 + ], + [ + 66.66368858000016, + 25.28517507300012 + ], + [ + 66.73705252800016, + 25.19665932500004 + ], + [ + 66.70426956400019, + 25.08434467300009 + ], + [ + 66.6902085860001, + 24.891673887000024 + ], + [ + 66.7389376180002, + 24.842356446 + ], + [ + 66.81519349100006, + 24.835623597999984 + ], + [ + 66.95350662800007, + 24.94865121500004 + ], + [ + 67.09002654099999, + 24.980338665000147 + ], + [ + 67.1247634950002, + 24.935750964000192 + ], + [ + 67.22499060500007, + 24.90124250000008 + ], + [ + 67.30194854600018, + 24.843065387000138 + ], + [ + 67.30864753100013, + 24.75451979999997 + ], + [ + 67.4930266020001, + 24.768048862000114 + ], + [ + 67.5203324960001, + 24.56330009000004 + ], + [ + 67.4619905940001, + 24.44127600799999 + ], + [ + 67.51381657200005, + 24.42433467300009 + ], + [ + 67.54437263199998, + 24.301614725000036 + ], + [ + 67.44153556500004, + 24.060175681000032 + ], + [ + 67.67512562799999, + 24.08040791900015 + ], + [ + 67.79825561800004, + 23.979130723000083 + ], + [ + 67.9026875940001, + 23.96313067600005 + ], + [ + 67.95162952700008, + 23.988846523000177 + ], + [ + 67.91858655600015, + 24.128800334000175 + ], + [ + 68.05721250600004, + 24.081233704 + ], + [ + 68.19553352200006, + 24.13887990800015 + ], + [ + 68.22994961600011, + 24.073953015000086 + ], + [ + 68.40165759700011, + 24.1424398690001 + ], + [ + 68.46877250100016, + 24.124240746000055 + ], + [ + 68.5238494840001, + 24.165948426 + ], + [ + 68.61981154700015, + 24.158276973000056 + ], + [ + 68.68578349500012, + 24.19261712700012 + ], + [ + 68.73454253500017, + 24.313993120000077 + ], + [ + 68.82937656100006, + 24.30237177900017 + ], + [ + 68.844512602, + 24.215777164000144 + ], + [ + 68.93930857400017, + 24.286763669000152 + ], + [ + 68.97487650900007, + 24.230295291000118 + ], + [ + 69.1028515750001, + 24.26452463600009 + ], + [ + 69.19496148200011, + 24.23216831100018 + ], + [ + 69.29591362700006, + 24.27154330700006 + ], + [ + 69.50523355400003, + 24.260854704000053 + ], + [ + 69.58958450200015, + 24.285315612000147 + ], + [ + 69.73342852200011, + 24.172169307000047 + ], + [ + 70.03440053700012, + 24.172751178000112 + ], + [ + 70.11321255500008, + 24.28596353300003 + ], + [ + 70.38379648300014, + 24.35559015900003 + ], + [ + 70.55481748300002, + 24.413807170000098 + ], + [ + 70.57274654100007, + 24.257244115000162 + ], + [ + 70.65617363500013, + 24.221805931000063 + ], + [ + 70.80322256000011, + 24.219867868 + ], + [ + 70.87212364800013, + 24.30171195600019 + ], + [ + 70.97846250700007, + 24.35975009700013 + ], + [ + 71.04255657300013, + 24.354720284999985 + ], + [ + 71.09739651600017, + 24.433696421000036 + ], + [ + 71.00018353800004, + 24.44264494000015 + ], + [ + 70.98706049500004, + 24.591746593000153 + ], + [ + 71.08521258100006, + 24.69305278900015 + ], + [ + 71.14369949000002, + 24.708132838999973 + ], + [ + 71.25254051500008, + 24.651935531000163 + ], + [ + 71.3412785500002, + 24.655494487000112 + ], + [ + 71.2866285410002, + 24.52490091500016 + ], + [ + 71.36379955100006, + 24.47292439800009 + ], + [ + 71.34472653000017, + 24.37655816000006 + ], + [ + 71.36596660800006, + 24.294752294000034 + ], + [ + 71.29493752200017, + 24.269843457000093 + ], + [ + 71.34517663800011, + 24.093062245000056 + ], + [ + 71.29680651899997, + 23.922271580000086 + ], + [ + 71.12242152600004, + 23.904541676000065 + ], + [ + 71.078773603, + 23.85096522100008 + ], + [ + 71.07852164300016, + 23.69115233500014 + ], + [ + 71.17590360000008, + 23.75625893500012 + ], + [ + 71.29374662100014, + 23.725330718 + ], + [ + 71.26364854800016, + 23.636226226000076 + ], + [ + 71.43035152700008, + 23.63725602700009 + ], + [ + 71.45809160300007, + 23.546369708999976 + ], + [ + 71.51943255000015, + 23.506572768000126 + ], + [ + 71.53607951200013, + 23.410557564000158 + ], + [ + 71.65936255600008, + 23.301600367000106 + ], + [ + 71.68441053200007, + 23.10491330900004 + ], + [ + 71.58766962300001, + 23.143130429000053 + ], + [ + 71.43279250400019, + 23.124502320000033 + ], + [ + 71.33461761900014, + 23.15065100800018 + ], + [ + 71.236007546, + 23.129131142000062 + ], + [ + 71.06340052200017, + 23.162169419000065 + ], + [ + 70.94609059100003, + 23.117844574000173 + ], + [ + 70.84636656200007, + 23.140491470000143 + ], + [ + 70.69326758000017, + 23.111571893000132 + ], + [ + 70.60463750400004, + 23.07104606100006 + ], + [ + 70.60028863700018, + 22.976210191 + ], + [ + 70.38059258400017, + 22.691543828000135 + ], + [ + 70.19077248400004, + 22.589048239000192 + ], + [ + 70.1396334870002, + 22.55130218200003 + ], + [ + 69.97399853100006, + 22.547931484000173 + ], + [ + 69.93895748200003, + 22.45640613000012 + ], + [ + 69.83661662300011, + 22.387289962000068 + ], + [ + 69.71508757600009, + 22.374511583000128 + ], + [ + 69.6194765480002, + 22.302625364000107 + ], + [ + 69.53093749900006, + 22.331092822000073 + ], + [ + 69.46057158900015, + 22.271524145000114 + ], + [ + 69.33766154000006, + 22.278136796000013 + ], + [ + 69.25438649400019, + 22.220029923000027 + ], + [ + 69.15775253800001, + 22.197761050000054 + ], + [ + 69.18972061400007, + 22.418488244000173 + ], + [ + 69.04653960200011, + 22.407664860000125 + ], + [ + 68.93640156200013, + 22.327213174000065 + ], + [ + 68.99414063800015, + 22.18930035700015 + ], + [ + 69.25892663600013, + 21.90940648100019 + ], + [ + 69.62455749000014, + 21.606482824000125 + ], + [ + 69.72290051600015, + 21.514077035000128 + ], + [ + 70.02208752100012, + 21.17714447600008 + ], + [ + 70.25444058300013, + 20.97243677500012 + ], + [ + 70.44180260600018, + 20.848953739000024 + ], + [ + 70.826927588, + 20.69027542700013 + ], + [ + 70.91358154700015, + 20.740750913000113 + ], + [ + 70.98790757000006, + 20.724140663000128 + ], + [ + 71.140167524, + 20.7567088830001 + ], + [ + 71.32478363500007, + 20.846274883000035 + ], + [ + 71.47551758000014, + 20.88979154500015 + ], + [ + 71.5008086310001, + 20.936818883000058 + ], + [ + 71.75633949900009, + 21.02150410100012 + ], + [ + 71.80843353100005, + 21.07024134800008 + ], + [ + 71.99933657200012, + 21.139386684000044 + ], + [ + 72.10504963800008, + 21.204803918000152 + ], + [ + 72.0822905920001, + 21.253352404 + ], + [ + 72.20987656900019, + 21.42648279400015 + ], + [ + 72.26711256300013, + 21.58127425000015 + ], + [ + 72.2040325390002, + 21.749045251000155 + ], + [ + 72.13820660300019, + 21.783112323000125 + ], + [ + 72.14858256100018, + 21.946584580000092 + ], + [ + 72.24320251300014, + 22.02249042500017 + ], + [ + 72.28463761400002, + 22.18239098600003 + ], + [ + 72.27377349400018, + 22.253308090000075 + ], + [ + 72.3237225960001, + 22.429706583000154 + ], + [ + 72.37976064800006, + 22.509065605000046 + ], + [ + 72.38421663500009, + 22.621688544 + ], + [ + 72.5160906270001, + 23.03948668700008 + ], + [ + 72.55605352900011, + 23.22037654000019 + ], + [ + 72.54392256800014, + 23.376008365000132 + ], + [ + 72.63601655000019, + 23.669164591000026 + ], + [ + 72.64082357200016, + 23.749289383000075 + ], + [ + 72.59181961300004, + 23.92643151900012 + ], + [ + 72.58998162900019, + 24.022135587000093 + ], + [ + 72.4707866080002, + 24.26005406400003 + ], + [ + 72.59169757300003, + 24.406376613000134 + ], + [ + 72.54303760700003, + 24.551959710000176 + ], + [ + 72.55090352000008, + 24.62113522200019 + ], + [ + 72.61296061700006, + 24.718352391 + ], + [ + 72.69097149300012, + 24.77386875300016 + ], + [ + 72.76278663300008, + 24.900363742000025 + ], + [ + 72.83493051200008, + 24.921001664000187 + ], + [ + 72.91867058700018, + 25.03736494300017 + ], + [ + 73.36971253200016, + 25.186860042000035 + ], + [ + 73.46101358600015, + 25.240625256999977 + ], + [ + 73.55103254300013, + 25.34018265400016 + ], + [ + 73.72630350300017, + 25.64373830700015 + ], + [ + 73.7617185530001, + 25.67656569500008 + ], + [ + 73.9019166130002, + 25.96097456700005 + ], + [ + 74.17302658900007, + 26.11592662000004 + ], + [ + 74.30409256500008, + 26.267149564000192 + ], + [ + 74.39752161700005, + 26.32229812900016 + ], + [ + 74.56979353200018, + 26.535396618000163 + ], + [ + 74.64571362500016, + 26.608965252000075 + ], + [ + 74.74552952000005, + 26.778194537000104 + ], + [ + 74.84008761300015, + 27.001195909000103 + ], + [ + 74.97471656900007, + 27.109350959000153 + ], + [ + 75.10964157300009, + 27.119091736000087 + ], + [ + 75.28494254000015, + 27.164438670000095 + ], + [ + 75.52017260600019, + 27.289555339000117 + ], + [ + 75.67331651600006, + 27.51433468099998 + ], + [ + 75.685836564, + 27.69876488200009 + ], + [ + 75.78874152500009, + 27.809260997000138 + ], + [ + 75.93430350000011, + 27.880009121000057 + ], + [ + 76.01846350700015, + 27.875489264000123 + ], + [ + 76.21190660100018, + 27.809492002000184 + ], + [ + 76.34932756800009, + 27.815121959000123 + ], + [ + 76.48876958000011, + 27.876709333000065 + ], + [ + 76.56918354800007, + 27.887647885000092 + ], + [ + 76.72247363700012, + 27.76159194000013 + ], + [ + 76.87600764000001, + 27.790550745000132 + ], + [ + 76.93893461100004, + 27.91081881800011 + ], + [ + 76.9711155870001, + 28.127261686000168 + ], + [ + 77.05593860300019, + 28.255958434000036 + ], + [ + 77.04984261200002, + 28.343702878000045 + ], + [ + 77.13754263300007, + 28.40690729 + ], + [ + 77.16952562900008, + 28.643220633000055 + ], + [ + 77.09252963400007, + 28.86458988100003 + ], + [ + 77.08290050300013, + 29.162958142000093 + ], + [ + 77.06365163000004, + 29.403573581000103 + ], + [ + 77.08315263100019, + 29.56400253700008 + ], + [ + 77.14267755499998, + 29.791402733000098 + ], + [ + 77.31188957200004, + 30.07401234500003 + ], + [ + 77.47161059300015, + 30.26719308500003 + ], + [ + 77.59942657000005, + 30.380927967000105 + ], + [ + 77.63153864700018, + 30.488906159000067 + ], + [ + 77.80381056200008, + 30.570133003000137 + ], + [ + 77.58270249400005, + 30.703258245000143 + ], + [ + 77.46504957400003, + 30.74428699100008 + ], + [ + 77.47617353300018, + 30.832794692000107 + ], + [ + 77.33145159300011, + 30.8834518970001 + ], + [ + 77.28098264500011, + 30.830274756000165 + ], + [ + 77.37201665200013, + 30.770306095000137 + ], + [ + 77.1392515350002, + 30.720928806000188 + ], + [ + 77.07077054800004, + 30.768696937000016 + ], + [ + 76.92169152700012, + 30.824445143000162 + ], + [ + 76.60572864600016, + 31.16208329000017 + ], + [ + 76.44840250200008, + 31.259569686000134 + ], + [ + 76.30101763100015, + 31.382084612000142 + ], + [ + 76.36080155600018, + 31.430612981000024 + ], + [ + 76.42091354800004, + 31.55313696000013 + ], + [ + 76.39288362500014, + 31.593398594000178 + ], + [ + 76.24447649800004, + 31.62224960700013 + ], + [ + 76.10807057900013, + 31.73345382600013 + ], + [ + 75.99896954700017, + 31.913738002000173 + ], + [ + 75.88426957300004, + 31.9895714270001 + ], + [ + 75.66929655500007, + 32.027083964000155 + ], + [ + 75.57604955800014, + 32.07595263900015 + ], + [ + 75.49928255700002, + 32.174349477000135 + ], + [ + 75.49421653500008, + 32.28645575600018 + ], + [ + 75.53473649900019, + 32.36902303400012 + ], + [ + 75.46920761800004, + 32.55275519000014 + ], + [ + 75.403297528, + 32.621483108000064 + ], + [ + 75.27731350000005, + 32.63746153000011 + ], + [ + 75.12293963000019, + 32.77424932800011 + ], + [ + 75.08822664900015, + 32.88855703000013 + ], + [ + 74.9877475780001, + 33.03924017999998 + ], + [ + 75.03265362500008, + 33.135078358000044 + ], + [ + 74.7855836170001, + 33.163958709000156 + ], + [ + 74.60238656200005, + 33.06398171400002 + ], + [ + 74.37713649300002, + 33.055322705000094 + ], + [ + 74.3164365940001, + 32.932863435000115 + ], + [ + 74.40741762700014, + 32.905566426000064 + ], + [ + 74.46891749400004, + 32.776351510000154 + ], + [ + 74.61488364400003, + 32.75698093200003 + ], + [ + 74.65477764800005, + 32.69484085400006 + ], + [ + 74.64243361900003, + 32.60031595300006 + ], + [ + 74.70591765100005, + 32.47866872100013 + ], + [ + 74.82076263300007, + 32.49589906400013 + ], + [ + 74.97537253700011, + 32.441861773000085 + ], + [ + 75.03090650100012, + 32.4893072000001 + ], + [ + 75.10069255000013, + 32.47176085900003 + ], + [ + 75.3257215050001, + 32.334974067000076 + ], + [ + 75.38169049000015, + 32.25851468100012 + ], + [ + 75.24182854500009, + 32.08551924000005 + ], + [ + 74.99459861100019, + 32.02919419200015 + ], + [ + 74.8834225560002, + 32.02642430800012 + ], + [ + 74.69523659200013, + 32.14566040200003 + ], + [ + 74.44371059700012, + 32.34180213300016 + ], + [ + 74.37442762900008, + 32.34586484100004 + ], + [ + 74.20342255500009, + 32.43131113600009 + ], + [ + 74.1302795530001, + 32.52630928000008 + ], + [ + 74.13514759499998, + 32.62656388200014 + ], + [ + 74.02192652300005, + 32.783900252000024 + ], + [ + 73.7307965390001, + 32.98024415500015 + ], + [ + 73.46111249200015, + 33.10519821400004 + ], + [ + 73.32032049100002, + 33.189538768000034 + ], + [ + 73.05664861500009, + 33.41269906200006 + ], + [ + 72.94341262400019, + 33.54394843400007 + ], + [ + 72.8461686330001, + 33.72401233400018 + ], + [ + 72.84414658300011, + 33.80346607000007 + ], + [ + 73.10529349300009, + 33.95613371900009 + ], + [ + 73.08347355500018, + 34.034061447000056 + ], + [ + 72.96130362800005, + 33.98544473200013 + ], + [ + 72.86667663500015, + 34.14029838200008 + ], + [ + 72.78763562400019, + 34.175476391000075 + ], + [ + 72.67662854800011, + 34.13832964000005 + ], + [ + 72.55113251400019, + 34.2280071190001 + ], + [ + 72.52100359500014, + 34.28734646800007 + ], + [ + 72.43701960800013, + 34.25795515699997 + ], + [ + 72.32412760900013, + 34.32505430300017 + ], + [ + 72.27361256100005, + 34.38885282400014 + ], + [ + 72.14230351000015, + 34.360731371000156 + ], + [ + 72.14803354600014, + 34.4984698450001 + ], + [ + 72.09604663599998, + 34.524218046000044 + ], + [ + 72.06501750100011, + 34.67109514100002 + ], + [ + 71.99495652500019, + 34.753962995000165 + ], + [ + 71.87770861900009, + 34.79464204700014 + ], + [ + 71.90519757400017, + 34.91913962899997 + ], + [ + 71.81198863100019, + 35.0113073710001 + ], + [ + 71.73082750100002, + 35.03104507699999 + ], + [ + 71.53831463100005, + 35.020352115000094 + ], + [ + 71.44565554100018, + 35.10393813000002 + ], + [ + 71.60415649200019, + 35.24721033700018 + ], + [ + 71.5502625310001, + 35.29269523700003 + ], + [ + 71.57648464400017, + 35.35669291200003 + ], + [ + 71.47831763800019, + 35.44104570400009 + ], + [ + 71.40605155100013, + 35.44476073100009 + ], + [ + 71.2707595870001, + 35.52299875600005 + ], + [ + 71.21171561700015, + 35.49891335700016 + ], + [ + 71.22851563299997, + 35.31713183800019 + ], + [ + 71.20865655800009, + 35.250922346000095 + ], + [ + 71.09517648500008, + 35.20953753800018 + ], + [ + 70.94565557000016, + 35.044498702 + ], + [ + 70.85867354300007, + 35.01608723500016 + ], + [ + 70.7938235960001, + 35.155320873 + ], + [ + 70.84275848800013, + 35.26464318700016 + ], + [ + 70.77493263100018, + 35.30358215600012 + ], + [ + 70.81021155800016, + 35.37419851700008 + ], + [ + 70.64378350600015, + 35.26986494500005 + ], + [ + 70.6143345270001, + 35.071655063000094 + ], + [ + 70.69528158399999, + 34.968267640000136 + ], + [ + 70.68424261700011, + 34.88123783600008 + ], + [ + 70.69231455800019, + 34.8319991840001 + ], + [ + 70.54859961900019, + 34.80367874500013 + ], + [ + 70.48493152100002, + 34.75211310900005 + ], + [ + 70.39116652300015, + 34.77013353000007 + ], + [ + 70.39769753400003, + 34.86354129100016 + ], + [ + 70.36874359100005, + 34.93762843100012 + ], + [ + 70.36349450799997, + 35.140657069000156 + ], + [ + 70.33128352400007, + 35.227286888000094 + ], + [ + 70.26121550700003, + 35.25693015900009 + ], + [ + 70.04549448900002, + 35.27260398300018 + ], + [ + 70.13567354100007, + 34.993508735000034 + ], + [ + 69.91171260800019, + 35.06289228600008 + ], + [ + 69.91546652700015, + 34.98866801800017 + ], + [ + 69.78327955600008, + 34.93963941700008 + ], + [ + 69.72408253200007, + 35.055954417000066 + ], + [ + 69.70617660700009, + 35.17219247100013 + ], + [ + 69.54818762300005, + 35.128583608000156 + ], + [ + 69.4102095940001, + 35.19947757700015 + ], + [ + 69.43777448900005, + 35.26722213100004 + ], + [ + 69.51509050499999, + 35.295358168 + ], + [ + 69.65459454300003, + 35.27040289500013 + ], + [ + 69.61019157800007, + 35.39774194200004 + ], + [ + 69.80059053300005, + 35.52804550000013 + ], + [ + 69.87590059200005, + 35.61620049000004 + ], + [ + 69.8234935800001, + 35.66279247300014 + ], + [ + 69.61867557300013, + 35.53295042200011 + ], + [ + 69.38313252700016, + 35.43397674200014 + ], + [ + 68.97206857200018, + 35.33174551800016 + ], + [ + 68.98474854700015, + 35.27244372100006 + ], + [ + 68.91969257300008, + 35.232245957000146 + ], + [ + 68.73943354300002, + 35.17997423000014 + ], + [ + 68.45272048600009, + 35.04460146400015 + ], + [ + 68.23769348900004, + 34.96849663300014 + ], + [ + 68.25910958700013, + 34.911220071 + ], + [ + 68.41601562900007, + 34.94902698100003 + ], + [ + 68.46183060900006, + 34.89769050600012 + ], + [ + 68.27166752200009, + 34.79461908100018 + ], + [ + 68.23436755000012, + 34.747700372000054 + ], + [ + 68.26280248600006, + 34.647928902 + ], + [ + 68.48870064400012, + 34.810705629000154 + ], + [ + 68.60488153300014, + 34.785605182000154 + ], + [ + 68.94977555900016, + 34.98792387300011 + ], + [ + 69.00595057200013, + 34.954477900000086 + ], + [ + 68.85859654600006, + 34.8098964400001 + ], + [ + 68.81482658300007, + 34.65511973700018 + ], + [ + 68.80928061300017, + 34.481437315000164 + ], + [ + 68.70567358400012, + 34.47730621000005 + ], + [ + 68.66050753100006, + 34.5816805180001 + ], + [ + 68.51522048300012, + 34.56613996700008 + ], + [ + 68.49523953400006, + 34.46596583000019 + ], + [ + 68.67150157000015, + 34.317451582 + ], + [ + 68.51068151400017, + 34.28224255900011 + ], + [ + 68.40789758800008, + 34.32973039900014 + ], + [ + 68.21170858300013, + 34.31935175900014 + ], + [ + 68.11108350000006, + 34.37844317100013 + ], + [ + 68.04039757000015, + 34.369372108000164 + ], + [ + 67.82580559300004, + 34.24603458200016 + ], + [ + 67.80612153200002, + 34.201735720000045 + ], + [ + 67.81018055200013, + 34.02297688300018 + ], + [ + 67.92879454000013, + 34.05103714800015 + ], + [ + 68.06888564700012, + 34.05046784900003 + ], + [ + 68.12234458700004, + 34.15576617800019 + ], + [ + 68.22600559500006, + 34.10117970400006 + ], + [ + 68.2719265230001, + 34.019771811000055 + ], + [ + 68.18363155500015, + 33.93503915100018 + ], + [ + 68.08083354700017, + 33.89515319500009 + ], + [ + 67.9237675780002, + 33.785724431000176 + ], + [ + 67.8926006440002, + 33.616043362000084 + ], + [ + 67.94831062800017, + 33.61550625000001 + ], + [ + 68.01653261500007, + 33.717508480000106 + ], + [ + 68.08631849700015, + 33.71935434200003 + ], + [ + 68.01245850700013, + 33.56111373300007 + ], + [ + 68.0079956460001, + 33.39323779100016 + ], + [ + 67.90779854300007, + 33.40509332300019 + ], + [ + 67.79588354000009, + 33.26433568700003 + ], + [ + 67.7219466040001, + 33.23785842800015 + ], + [ + 67.62467947900006, + 33.284285120000106 + ], + [ + 67.58280952600006, + 33.34734418900007 + ], + [ + 67.48774751200011, + 33.34665821400006 + ], + [ + 67.44424459600015, + 33.393847658000084 + ], + [ + 67.43984962900004, + 33.50240755400006 + ], + [ + 67.34143854200016, + 33.51438127000006 + ], + [ + 67.12023156800012, + 33.459344688000044 + ], + [ + 67.14905559200008, + 33.37105542 + ], + [ + 67.21833051300007, + 33.30411754100015 + ], + [ + 67.37762455900008, + 33.293390715999976 + ], + [ + 67.30375652300012, + 33.13515044300004 + ], + [ + 67.16413161800011, + 33.102806355000155 + ], + [ + 67.11799661700019, + 33.17130544700012 + ], + [ + 67.03554551200017, + 33.155710748000104 + ], + [ + 67.00511953799997, + 33.08204387700016 + ], + [ + 66.87757161500008, + 33.039061310000136 + ], + [ + 66.87067448200003, + 32.97844003400019 + ], + [ + 67.00002250300008, + 32.948499205000076 + ], + [ + 66.98740354800003, + 32.87603329300015 + ], + [ + 66.89484353200015, + 32.796739651000166 + ], + [ + 66.61788952500012, + 32.727914 + ], + [ + 66.55241361800012, + 32.661901819000036 + ], + [ + 66.44300061200005, + 32.69032485200012 + ], + [ + 66.47197752200009, + 32.83407650400005 + ], + [ + 66.56816053200004, + 32.94225820800017 + ], + [ + 66.63391857400006, + 32.97677622600003 + ], + [ + 66.6612925290001, + 33.11898778600005 + ], + [ + 66.73783154200015, + 33.19720267800017 + ], + [ + 66.85440856100007, + 33.27095722300004 + ], + [ + 66.94075054500007, + 33.35699477700007 + ], + [ + 66.8502885200001, + 33.421068895000076 + ], + [ + 66.77655761100004, + 33.40749641400015 + ], + [ + 66.6043095010001, + 33.435972589000016 + ], + [ + 66.525184503, + 33.39338983900012 + ], + [ + 66.47716558500008, + 33.17101140900013 + ], + [ + 66.40018451000003, + 33.21307800200009 + ], + [ + 66.37523661300003, + 33.28444186100006 + ], + [ + 66.22170261000014, + 33.16092563299998 + ], + [ + 66.07795749700011, + 33.11827901300012 + ], + [ + 66.04821062600007, + 33.27238751100009 + ], + [ + 66.16191063900015, + 33.413268193000135 + ], + [ + 66.3465725160001, + 33.44435315100014 + ], + [ + 66.50273156300011, + 33.546561408000116 + ], + [ + 66.80812855300013, + 33.51561726600005 + ], + [ + 67.02214854800013, + 33.541522542999985 + ], + [ + 66.97406760500019, + 33.61132133300009 + ], + [ + 66.77638259700012, + 33.569330513000125 + ], + [ + 66.67817653200007, + 33.594213031000095 + ], + [ + 66.65229757300011, + 33.64402735200014 + ], + [ + 66.87268848600007, + 33.734814930000084 + ], + [ + 67.06164558500012, + 33.77478789100019 + ], + [ + 67.26541853600014, + 33.75273543900005 + ], + [ + 67.42545354300012, + 33.83801895700003 + ], + [ + 67.36219062600003, + 33.88531149900007 + ], + [ + 66.98452754900018, + 33.919970669 + ], + [ + 66.9170684840002, + 34.00135123700005 + ], + [ + 66.99762762600005, + 34.04689397300007 + ], + [ + 67.27995258800013, + 34.130406730000175 + ], + [ + 67.3527225950001, + 34.19547594700015 + ], + [ + 67.51979052200016, + 34.23826472500008 + ], + [ + 67.65928651300015, + 34.3684794350001 + ], + [ + 67.81275161700017, + 34.381220095 + ], + [ + 67.94447356100005, + 34.46315772500009 + ], + [ + 67.77899953700012, + 34.494955816000015 + ], + [ + 67.66712158100006, + 34.45589095000008 + ], + [ + 67.57457749100007, + 34.463966579000044 + ], + [ + 67.53067056800012, + 34.4123052220001 + ], + [ + 67.41912855900006, + 34.44344734500015 + ], + [ + 67.28182259100004, + 34.333915316000116 + ], + [ + 67.145370572, + 34.2903294190001 + ], + [ + 67.07994059700019, + 34.326015540000185 + ], + [ + 66.9910275470001, + 34.20256770800012 + ], + [ + 66.87967664600006, + 34.159240980000106 + ], + [ + 66.81036350300013, + 34.211855695000054 + ], + [ + 66.86037463200012, + 34.286843386000044 + ], + [ + 66.68714147999998, + 34.35249263100002 + ], + [ + 66.61901052100018, + 34.29346525700004 + ], + [ + 66.687080627, + 34.16342572900004 + ], + [ + 66.74996149700002, + 34.104654505999974 + ], + [ + 66.77522254200017, + 34.01612601800008 + ], + [ + 66.70201147900013, + 33.910922907000156 + ], + [ + 66.6280215700001, + 33.855798483000115 + ], + [ + 66.42084456000009, + 33.78881819100019 + ], + [ + 66.30570956500009, + 33.80539172900012 + ], + [ + 66.31822156700008, + 33.90792805300015 + ], + [ + 66.48892254500015, + 34.06697768400011 + ], + [ + 66.51608259400018, + 34.196284969000146 + ], + [ + 66.48783859800005, + 34.22159144300019 + ], + [ + 66.25065655399999, + 34.10675232900013 + ], + [ + 66.03074659500004, + 34.157787893000034 + ], + [ + 66.08959962500006, + 34.04431502900019 + ], + [ + 66.061035608, + 33.92637259900005 + ], + [ + 65.99357553700008, + 33.847341645000085 + ], + [ + 65.96588860200018, + 33.722295217000124 + ], + [ + 65.90898855500018, + 33.586683232000155 + ], + [ + 65.75196851800013, + 33.418532028000186 + ], + [ + 65.62885261000014, + 33.36868652600015 + ], + [ + 65.55197949400008, + 33.3806840470001 + ], + [ + 65.5027995150001, + 33.51772598500014 + ], + [ + 65.53070857000012, + 33.58263225800016 + ], + [ + 65.72433455700013, + 33.803382083000145 + ], + [ + 65.76950061000014, + 33.94679493800004 + ], + [ + 65.68981151000014, + 34.0545649230001 + ], + [ + 65.48810553600015, + 34.20566063000007 + ], + [ + 65.41108657400008, + 34.23340104200008 + ], + [ + 65.25926952100008, + 34.241773893000186 + ], + [ + 65.26850151600019, + 34.152161289000105 + ], + [ + 65.20259058800013, + 34.04602007600016 + ], + [ + 65.339614589, + 34.02662669900019 + ], + [ + 65.45481161000015, + 34.038700160000076 + ], + [ + 65.55364950400008, + 33.97948586900009 + ], + [ + 65.54759961400003, + 33.89743826900013 + ], + [ + 65.42877959800006, + 33.85647339400009 + ], + [ + 65.41860162100005, + 33.764122086999976 + ], + [ + 65.37134562400007, + 33.725126288000126 + ], + [ + 65.19831850000014, + 33.803675953000095 + ], + [ + 65.16655762500005, + 33.77002395300019 + ], + [ + 65.20374259700014, + 33.59922876200005 + ], + [ + 65.13795454799998, + 33.550387076000106 + ], + [ + 64.89669755800014, + 33.526934847000064 + ], + [ + 64.78762049900007, + 33.46514680900003 + ], + [ + 64.70680956500013, + 33.30500652500018 + ], + [ + 64.65473950600011, + 33.26138659800017 + ], + [ + 64.57772054400004, + 33.28912986000006 + ], + [ + 64.5390925430001, + 33.369591436000064 + ], + [ + 64.45358254600006, + 33.42254494800005 + ], + [ + 64.28251662000002, + 33.339379202000146 + ], + [ + 64.36477661700008, + 33.26902351799998 + ], + [ + 64.29649361100019, + 33.13837328400018 + ], + [ + 64.12621357100016, + 33.09250382200008 + ], + [ + 64.04144252300011, + 33.154097902000046 + ], + [ + 63.96858953500009, + 33.13342242900006 + ], + [ + 63.91229248200011, + 32.94915517300018 + ], + [ + 63.80828848599998, + 32.846173266000164 + ], + [ + 63.704357581000124, + 32.85920779600002 + ], + [ + 63.69879149400015, + 32.918985853000095 + ], + [ + 63.61667248000015, + 32.97359914900011 + ], + [ + 63.61053458000015, + 33.09635966500019 + ], + [ + 63.715412641, + 33.19224377600017 + ], + [ + 63.91984558300004, + 33.31059809300007 + ], + [ + 63.99478164100009, + 33.3872718880001 + ], + [ + 64.06805456300003, + 33.521125182000105 + ], + [ + 64.15409848700006, + 33.55128310200013 + ], + [ + 64.25785052300012, + 33.539668465999966 + ], + [ + 64.4183195440001, + 33.57771426000005 + ], + [ + 64.57745349700008, + 33.65577308000019 + ], + [ + 64.74324754200012, + 33.767227079000065 + ], + [ + 64.81949654099998, + 33.876930769000126 + ], + [ + 64.6102295880001, + 33.82699424000009 + ], + [ + 64.53661351200003, + 33.78335537000004 + ], + [ + 64.2275546360001, + 33.68371449000011 + ], + [ + 64.11769856300009, + 33.67199977400003 + ], + [ + 63.690158637000195, + 33.528555907000055 + ], + [ + 63.592033540000045, + 33.50904048900003 + ], + [ + 63.40785261700012, + 33.37199855100016 + ], + [ + 63.26591849800002, + 33.343797135000045 + ], + [ + 63.254104541000174, + 33.39599158200019 + ], + [ + 63.60057050900002, + 33.58552720000006 + ], + [ + 64.27207159500011, + 33.77408984600004 + ], + [ + 64.44754757600009, + 33.836065136000116 + ], + [ + 64.53781849400008, + 33.84645685200019 + ], + [ + 64.700134552, + 33.913272690000156 + ], + [ + 64.77252150600003, + 33.966856185000154 + ], + [ + 64.78458356800007, + 34.029259621999984 + ], + [ + 64.48136855500007, + 33.99876139700018 + ], + [ + 64.18208348200017, + 33.89262035100012 + ], + [ + 64.02217051600007, + 33.86463619400013 + ], + [ + 63.80892953400013, + 33.78865440900012 + ], + [ + 63.5044245470001, + 33.73944962000007 + ], + [ + 63.37500360300004, + 33.653369151000106 + ], + [ + 63.10825758100003, + 33.530806783000116 + ], + [ + 62.96433661500015, + 33.489578883000036 + ], + [ + 62.87862360900016, + 33.52962493500007 + ], + [ + 62.96385549400003, + 33.59553703600011 + ], + [ + 63.094787527, + 33.64018274 + ], + [ + 63.1497575570001, + 33.70404664 + ], + [ + 62.877967641000055, + 33.637000635000106 + ], + [ + 62.8093605900001, + 33.68393241900014 + ], + [ + 63.022777591000136, + 33.75849615400017 + ], + [ + 63.37926060400008, + 33.80834467300002 + ], + [ + 63.54953762600002, + 33.854215644000135 + ], + [ + 63.5712014930001, + 33.911532942000065 + ], + [ + 63.86522658700011, + 33.97292099500015 + ], + [ + 64.36812552300006, + 34.14580227500011 + ], + [ + 64.55879957100012, + 34.15724189600007 + ], + [ + 64.79721861600012, + 34.18909413400013 + ], + [ + 64.79262550100015, + 34.284749419000036 + ], + [ + 64.37009460000019, + 34.23187486500018 + ], + [ + 64.16573357400006, + 34.229536984000106 + ], + [ + 64.01242856500005, + 34.293663238000136 + ], + [ + 64.03108953100008, + 34.36080848500012 + ], + [ + 64.50373063500007, + 34.37123322500008 + ], + [ + 64.68409762400006, + 34.39343454000016 + ], + [ + 64.92987849500008, + 34.45299600900006 + ], + [ + 65.11698956400016, + 34.46419557200011 + ], + [ + 65.50521853200013, + 34.460326654000085 + ], + [ + 65.85194350100005, + 34.44363023800008 + ], + [ + 66.0768205760001, + 34.46884149400012 + ], + [ + 66.0550306450001, + 34.51463535100004 + ], + [ + 65.83374052200003, + 34.50399251400006 + ], + [ + 65.81236247800007, + 34.57559291000018 + ], + [ + 66.04756957800015, + 34.60436295400012 + ], + [ + 66.17634561799997, + 34.63740810500019 + ], + [ + 66.1647415430001, + 34.702508335000175 + ], + [ + 65.94850151700012, + 34.72371773499998 + ], + [ + 65.71524857399999, + 34.693646652000155 + ], + [ + 65.41215560200004, + 34.72044795500017 + ], + [ + 65.3008496280001, + 34.778819529000145 + ], + [ + 65.42749750300015, + 34.81458544499998 + ], + [ + 65.55744164500004, + 34.89640438700002 + ], + [ + 65.59589362600019, + 34.97777322100012 + ], + [ + 65.52069052000007, + 35.019963363000045 + ], + [ + 65.40213755200017, + 35.020554287000095 + ], + [ + 65.45322458100003, + 35.10134409900007 + ], + [ + 65.58857756500015, + 35.212173311000015 + ], + [ + 65.33870649300019, + 35.15663280900003 + ], + [ + 65.08477053400009, + 35.19248572900017 + ], + [ + 65.00550857500014, + 35.253020337000066 + ], + [ + 65.05621355700009, + 35.32232761200004 + ], + [ + 65.16390961400009, + 35.32243758300018 + ], + [ + 65.28948963400018, + 35.2793517500001 + ], + [ + 65.3207246290001, + 35.317269804000034 + ], + [ + 65.432472497, + 35.29903128600017 + ], + [ + 65.53229560000017, + 35.36306366100018 + ], + [ + 65.86641653300012, + 35.36127060500013 + ], + [ + 66.01122262800016, + 35.48276578800005 + ], + [ + 66.10251664100014, + 35.47030709500012 + ], + [ + 66.24215663400014, + 35.59002112400003 + ], + [ + 66.45891550000005, + 35.5645507000001 + ], + [ + 66.37556451300003, + 35.38132011700009 + ], + [ + 66.27088963000006, + 35.29834128700003 + ], + [ + 66.1302946030001, + 35.230129024000064 + ], + [ + 66.12213850900008, + 35.16512350900018 + ], + [ + 66.28348561900015, + 35.03565277700005 + ], + [ + 66.3969425570001, + 34.90151617400011 + ], + [ + 66.4779965670001, + 34.92847371600004 + ], + [ + 66.45874048600012, + 34.997353849000035 + ], + [ + 66.35112757800005, + 35.11326500900003 + ], + [ + 66.44077253500018, + 35.24536045100007 + ], + [ + 66.55165857600014, + 35.321594698000126 + ], + [ + 66.60023455500004, + 35.39362273900019 + ], + [ + 66.79404460800004, + 35.45253947200018 + ], + [ + 66.86628756100009, + 35.52186988100016 + ], + [ + 66.97097753200018, + 35.53180243700007 + ], + [ + 67.00580551299998, + 35.42386816600009 + ], + [ + 66.99166155500018, + 35.30546691100005 + ], + [ + 67.07788049300012, + 35.33420242200003 + ], + [ + 67.07660661100005, + 35.402868649000084 + ], + [ + 67.12883760300014, + 35.51811193900005 + ], + [ + 67.18823948000016, + 35.57511759800008 + ], + [ + 67.17649056600004, + 35.655964574000166 + ], + [ + 67.2371215660001, + 35.70302544000003 + ], + [ + 67.33532763200009, + 35.678146108000135 + ], + [ + 67.41711455500007, + 35.553328002 + ], + [ + 67.51970653500007, + 35.58030549300008 + ], + [ + 67.52950263300005, + 35.50075938800006 + ], + [ + 67.35647550900006, + 35.41889820100016 + ], + [ + 67.24675757000017, + 35.391437074000066 + ], + [ + 67.24984764200019, + 35.33721940400011 + ], + [ + 67.36941549100015, + 35.3137827650001 + ], + [ + 67.42001352000005, + 35.252745243 + ], + [ + 67.41857149700019, + 35.16241565100012 + ], + [ + 67.47827948200012, + 35.11488187800012 + ], + [ + 67.79220556100017, + 35.16042478200018 + ], + [ + 67.80455763600014, + 35.03092186300012 + ], + [ + 67.74623853300017, + 34.97971916300003 + ], + [ + 67.5781555580001, + 34.95977677200011 + ], + [ + 67.4494785920001, + 34.96970949500013 + ], + [ + 67.31941961800015, + 34.91796079800008 + ], + [ + 67.25831554400008, + 34.81643834800008 + ], + [ + 67.27777061100016, + 34.76046383100015 + ], + [ + 67.37252853000007, + 34.70527419500007 + ], + [ + 67.73723553100007, + 34.68835582700018 + ], + [ + 67.91369655300014, + 34.71316223700006 + ], + [ + 67.96855158400018, + 34.80709671700015 + ], + [ + 68.07981849800012, + 34.89481752500018 + ], + [ + 68.07209055100009, + 34.942992011 + ], + [ + 67.98186456000019, + 35.034297926000136 + ], + [ + 68.07790356900006, + 35.1582268790001 + ], + [ + 68.11647759000016, + 35.29689926500009 + ], + [ + 68.2706526410002, + 35.386085229 + ], + [ + 68.38065355300006, + 35.38205319800011 + ], + [ + 68.57679763100009, + 35.29073839800003 + ], + [ + 68.71228757600011, + 35.38582119900019 + ], + [ + 68.91873150400005, + 35.44415857500019 + ], + [ + 69.09925858800011, + 35.53798627000003 + ], + [ + 69.34194150800016, + 35.564398652000136 + ], + [ + 69.45558150700009, + 35.676624122000135 + ], + [ + 69.41014857400017, + 35.73944346800005 + ], + [ + 69.37342863000003, + 35.87732929600014 + ], + [ + 69.44420659400015, + 35.92937203000008 + ], + [ + 69.54656254000014, + 35.9291212440001 + ], + [ + 69.5484695900002, + 35.986541639000166 + ], + [ + 69.46741457500002, + 36.11999964300014 + ], + [ + 69.68933049100013, + 36.25672675599998 + ], + [ + 69.69600650900009, + 36.377489864000154 + ], + [ + 69.76716652000005, + 36.44101848800011 + ], + [ + 69.87688462699998, + 36.46847592600017 + ], + [ + 69.88098153400011, + 36.551825069000074 + ], + [ + 70.03742958900011, + 36.622544527000116 + ], + [ + 70.14743050100014, + 36.61851283200002 + ], + [ + 70.18019049900016, + 36.70236589400014 + ], + [ + 70.27659663500009, + 36.750410963000036 + ], + [ + 70.31452156199998, + 36.83604098900008 + ], + [ + 70.42124950900018, + 36.800278761000186 + ], + [ + 70.38976255400007, + 36.64776315900019 + ], + [ + 70.42424050700004, + 36.54267052200015 + ], + [ + 70.34153760900006, + 36.41247726900019 + ], + [ + 70.42870353500018, + 36.302345599000034 + ], + [ + 70.4199595340001, + 36.21295461400007 + ], + [ + 70.33796658300014, + 36.16445172500016 + ], + [ + 70.33331261500001, + 36.071039940000105 + ], + [ + 70.44013963600003, + 36.07824854500012 + ], + [ + 70.49433853100015, + 36.11914887900008 + ], + [ + 70.57617155400004, + 36.09602941100013 + ], + [ + 70.65926354000004, + 35.91687226600004 + ], + [ + 70.69255059199998, + 35.99646346500003 + ], + [ + 70.7686465380001, + 36.0345406080001 + ], + [ + 70.7860485430001, + 36.09730731600007 + ], + [ + 70.73671752200005, + 36.25009398800012 + ], + [ + 70.7847066, + 36.45815026000008 + ], + [ + 70.75155650800019, + 36.68364726000016 + ], + [ + 70.79793559000018, + 36.729746386000045 + ], + [ + 70.88204161900018, + 36.68816024400019 + ], + [ + 70.91999051800008, + 36.54033247400014 + ], + [ + 71.03628556900014, + 36.48516161300006 + ], + [ + 71.05282557800007, + 36.39460973400003 + ], + [ + 71.2555466, + 36.20614180300015 + ], + [ + 71.35720064600002, + 36.342093925000086 + ], + [ + 71.42952758600006, + 36.367026064000186 + ], + [ + 71.43847660800009, + 36.469323002000124 + ], + [ + 71.48538257700005, + 36.511161942000115 + ], + [ + 71.66107950500009, + 36.51299707600009 + ], + [ + 71.86911750400009, + 36.58117866099997 + ], + [ + 71.87159754100003, + 36.58280340900012 + ], + [ + 72.091674635, + 36.7295182310001 + ], + [ + 72.1089175510001, + 36.743964106000135 + ], + [ + 72.23345151000007, + 36.815094613000156 + ], + [ + 72.24775656899999, + 36.82006541700002 + ], + [ + 72.31745963800006, + 36.84428811100014 + ], + [ + 72.32449356300003, + 36.8467339500001 + ], + [ + 72.35530862400014, + 36.85744082600013 + ], + [ + 72.36052652700016, + 36.859252658000116 + ], + [ + 72.38416248800013, + 36.863006577000135 + ], + [ + 72.44322154500003, + 36.868015603000174 + ], + [ + 72.51930961300013, + 36.87587346900017 + ], + [ + 72.59452059800014, + 36.8912619730001 + ], + [ + 72.61612662900018, + 36.89948193800018 + ], + [ + 72.64102155200004, + 36.91427566100003 + ], + [ + 72.6718676270001, + 36.92846119400019 + ], + [ + 72.68256360599997, + 36.93338221000005 + ], + [ + 72.73641951300016, + 36.9581547570001 + ], + [ + 72.74584161000018, + 36.96248853600008 + ], + [ + 72.68641659900004, + 37.02264813800019 + ], + [ + 72.24081450900007, + 36.94838179300007 + ], + [ + 72.07106051800014, + 36.87411846599997 + ], + [ + 71.8694836250001, + 36.693760194000106 + ], + [ + 71.69525151800019, + 36.66979281200014 + ], + [ + 71.56139353000009, + 36.76538674200003 + ], + [ + 71.47884351900007, + 36.745173112000145 + ], + [ + 71.40795156100017, + 36.66605364500009 + ], + [ + 71.32764454700015, + 36.73511013400014 + ], + [ + 71.28885661900017, + 36.90436456400005 + ], + [ + 71.24543752200009, + 36.99453473100016 + ], + [ + 71.1434175230001, + 37.06499032700003 + ], + [ + 71.06137059300016, + 37.23562291000019 + ], + [ + 70.92689552900003, + 37.27810625100011 + ], + [ + 70.8408665250002, + 37.174901218000116 + ], + [ + 70.83386964700003, + 37.07130726500009 + ], + [ + 70.71088449700005, + 37.07875827400011 + ], + [ + 70.53295848500011, + 37.19708375700009 + ], + [ + 70.57000750300011, + 37.28982079900004 + ], + [ + 70.74038661700018, + 37.21825024200018 + ], + [ + 70.78183764200014, + 37.28979800000019 + ], + [ + 70.76851661900008, + 37.38343123400006 + ], + [ + 70.70066863300013, + 37.45332658400008 + ], + [ + 70.69654859200006, + 37.60343976400003 + ], + [ + 70.45225550900005, + 37.735906356999976 + ], + [ + 70.47150455000013, + 37.8274387510001 + ], + [ + 70.57711753600012, + 37.77155056800018 + ], + [ + 70.64381451900016, + 37.827613765000194 + ], + [ + 70.60734552900004, + 37.919684110000105 + ], + [ + 70.61353254700015, + 38.06829441499997 + ], + [ + 70.59297961700014, + 38.17879623000016 + ], + [ + 70.52063759000004, + 38.19776313600005 + ], + [ + 70.46415764400012, + 38.109110596 + ], + [ + 70.33331261500001, + 37.99918059400005 + ], + [ + 70.15914957500007, + 37.91602909700015 + ], + [ + 70.23414648600004, + 37.82298259600009 + ], + [ + 70.28637664000007, + 37.70026700700009 + ], + [ + 70.13499460700007, + 37.52697535000004 + ], + [ + 69.95864053700012, + 37.563004458000194 + ], + [ + 69.91804463300014, + 37.60986767800006 + ], + [ + 69.65914960400005, + 37.56903557200002 + ], + [ + 69.51220662700013, + 37.57487222700007 + ], + [ + 69.38114953600012, + 37.444220820000055 + ], + [ + 69.4119265430001, + 37.29459680700012 + ], + [ + 69.40998864699998, + 37.17320723500018 + ], + [ + 69.31153162800007, + 37.11488930600018 + ], + [ + 69.24133251800009, + 37.306334657000036 + ], + [ + 69.0812835970001, + 37.46868055400006 + ], + [ + 69.04579964800018, + 37.53035912400003 + ], + [ + 69.07232652800013, + 37.655146719000015 + ], + [ + 69.03262363100004, + 37.71616580099999 + ], + [ + 68.80917349200013, + 37.74036620000015 + ], + [ + 68.74764261100017, + 37.783547586 + ], + [ + 68.75549360500014, + 37.91257307100017 + ], + [ + 68.65563948900018, + 37.88201466400017 + ], + [ + 68.64629349900014, + 37.688796373000116 + ], + [ + 68.5429075850002, + 37.37338418200005 + ], + [ + 68.46310449100014, + 37.24491492000004 + ], + [ + 68.17356857700014, + 37.03950096000017 + ], + [ + 68.04212960600012, + 37.00857659800016 + ], + [ + 67.89328762500008, + 37.089759018999985 + ], + [ + 67.85269155300006, + 37.16514350900019 + ], + [ + 67.94345851200018, + 37.28835581000004 + ], + [ + 67.92903158100012, + 37.48149028200015 + ], + [ + 67.95124848600005, + 37.54585106000002 + ], + [ + 67.91779362800008, + 37.746336126000074 + ], + [ + 67.9793925690002, + 37.910002006000184 + ], + [ + 67.95865657900009, + 37.995232550000026 + ], + [ + 68.03449251900014, + 38.18621924400003 + ], + [ + 68.19376359900008, + 38.40717442600004 + ], + [ + 68.1677325930001, + 38.44857465700011 + ], + [ + 67.96250152600015, + 38.51567464200008 + ], + [ + 67.87924961400006, + 38.47250448800003 + ], + [ + 67.84015658500016, + 38.391336652000064 + ], + [ + 67.72528863700012, + 38.296275476000176 + ], + [ + 67.70739763200015, + 38.16499844400016 + ], + [ + 67.65634161600013, + 38.095480951000184 + ], + [ + 67.54229760900017, + 38.085941004000176 + ], + [ + 67.46269953500007, + 38.01115129300007 + ], + [ + 67.31426256800012, + 38.03426003300001 + ], + [ + 67.23140762300011, + 37.97285186300019 + ], + [ + 67.12212353100006, + 38.04169092500007 + ], + [ + 67.00640062800011, + 38.07722030399998 + ], + [ + 66.92813159000019, + 38.05639261600015 + ], + [ + 66.84722158200003, + 38.0882599410001 + ], + [ + 66.75827064600003, + 38.050990647 + ], + [ + 66.66654161200017, + 37.97149801799998 + ], + [ + 66.2677685450002, + 37.82971175500006 + ], + [ + 66.01078056600016, + 37.79426619600014 + ], + [ + 65.66517659300013, + 37.776543667000055 + ], + [ + 65.49226363000008, + 37.74265831499997 + ], + [ + 65.46956661000013, + 37.86319310000016 + ], + [ + 65.59269760600006, + 38.07489030300002 + ], + [ + 65.61885048500011, + 38.20568973400009 + ], + [ + 65.58673052900008, + 38.38562572600006 + ], + [ + 65.72933151300003, + 38.52257144000015 + ], + [ + 65.95150760300015, + 38.60042004200011 + ], + [ + 65.98312363900004, + 38.68198870000003 + ], + [ + 65.9607696060001, + 38.74498272600016 + ], + [ + 65.82109860000008, + 38.97542236700002 + ], + [ + 65.85420259199998, + 39.09115432200019 + ], + [ + 65.99826856400017, + 39.21530154000004 + ], + [ + 66.08527355700005, + 39.32673106300007 + ], + [ + 66.07057153200014, + 39.466136866 + ], + [ + 66.121200574, + 39.55855858000018 + ], + [ + 66.1196975310001, + 39.67014400700009 + ], + [ + 66.02931261900005, + 39.783874531000095 + ], + [ + 65.91430653700019, + 39.84534372100006 + ], + [ + 65.68068663500003, + 39.86230349600004 + ], + [ + 65.60549962200008, + 39.89030324400005 + ], + [ + 65.50626358800008, + 40.01868030500003 + ], + [ + 65.42597954000007, + 40.06175993500017 + ], + [ + 65.38121749500004, + 40.137580116000095 + ], + [ + 65.19164248200019, + 40.16770048600006 + ], + [ + 65.05943254300018, + 40.27070720299997 + ], + [ + 65.06059259900007, + 40.3375855700001 + ], + [ + 65.2049866390002, + 40.42184347800014 + ], + [ + 65.22926348099998, + 40.53077519500005 + ], + [ + 65.339469582, + 40.61360231200007 + ], + [ + 65.55742655700004, + 40.70286924600015 + ], + [ + 65.73274948500006, + 40.74028287700003 + ], + [ + 65.83100148400001, + 40.79130033600018 + ], + [ + 66.00668349200009, + 40.94815156100009 + ], + [ + 66.04804952500012, + 41.02195790600001 + ], + [ + 66.16101059100009, + 41.13240691500005 + ], + [ + 66.31876354100018, + 41.17217954900019 + ], + [ + 66.53794863200017, + 41.32985002100014 + ], + [ + 66.61932350100011, + 41.50511511300016 + ], + [ + 66.91251359000006, + 41.60675239500006 + ], + [ + 67.11868259200003, + 41.756482020000135 + ], + [ + 67.529418647, + 41.82580253800006 + ], + [ + 67.70654251000013, + 41.95464261600006 + ], + [ + 67.95587948700017, + 42.00926915600013 + ], + [ + 68.04444150300003, + 41.9693253640001 + ], + [ + 67.96013648800005, + 41.87488629300009 + ], + [ + 67.96468350300012, + 41.790302664000194 + ], + [ + 67.91873960900011, + 41.70468252900014 + ], + [ + 67.97387660700014, + 41.45054573900006 + ], + [ + 67.89219663600016, + 41.29504534100005 + ], + [ + 67.87447360500005, + 41.17480727500015 + ], + [ + 67.96987961200011, + 41.13560762900005 + ], + [ + 68.11422755200016, + 41.2559414160001 + ], + [ + 68.15498355099999, + 41.41232710999998 + ], + [ + 68.11134350700019, + 41.653383102000134 + ], + [ + 68.16390256600016, + 41.792522862000055 + ], + [ + 68.17365256300013, + 41.89908987600012 + ], + [ + 68.2672884800001, + 42.019919034000054 + ], + [ + 68.24986250400019, + 42.11884141700011 + ], + [ + 68.32589759700011, + 42.26669818900007 + ], + [ + 68.31800855000006, + 42.38796639100008 + ], + [ + 68.26033049500006, + 42.57078810500008 + ], + [ + 68.28914664000018, + 42.61927674400005 + ], + [ + 68.27890060099998, + 42.78632489 + ], + [ + 68.17946658700015, + 42.96877293800003 + ], + [ + 68.10131053600008, + 43.01637259300014 + ], + [ + 68.05039248600008, + 43.10255414800008 + ], + [ + 67.93668358800005, + 43.17690179700003 + ], + [ + 67.91842662900018, + 43.263361463000194 + ], + [ + 67.81347648400003, + 43.366122088 + ], + [ + 67.72447961500018, + 43.4095517450001 + ], + [ + 67.59443656700012, + 43.552591270000164 + ], + [ + 67.52648950700012, + 43.71994183500004 + ], + [ + 67.36871359000008, + 43.819321534000096 + ], + [ + 67.52555056600016, + 43.94554226700018 + ], + [ + 67.58558661800015, + 44.05536296900016 + ], + [ + 67.66355860200002, + 44.10322983900011 + ], + [ + 67.62449658600013, + 44.20378149600015 + ], + [ + 67.49237851400017, + 44.289638336000166 + ], + [ + 67.42186759700007, + 44.39588113800005 + ], + [ + 67.26193954300015, + 44.47356009100014 + ], + [ + 67.14814749600009, + 44.558509003000154 + ], + [ + 67.20263657200013, + 44.620718818000114 + ], + [ + 67.28562160500013, + 44.60553282100017 + ], + [ + 67.47046654200011, + 44.478324029000134 + ], + [ + 67.75393664100011, + 44.30937922700008 + ], + [ + 67.86927062300015, + 44.26325931300005 + ], + [ + 68.02426156800016, + 44.14495461700011 + ], + [ + 68.1151125130001, + 44.12606465700014 + ], + [ + 68.3050685680002, + 44.130100544000015 + ], + [ + 68.47878250500008, + 44.032329834000166 + ], + [ + 68.67933663800005, + 43.99250087400003 + ], + [ + 68.9381175050001, + 43.900452322000035 + ], + [ + 69.09982252300011, + 43.784611738000194 + ], + [ + 69.23779250500007, + 43.73543259700011 + ], + [ + 69.40029950300016, + 43.640034972000194 + ], + [ + 69.5279465000001, + 43.66166095300014 + ], + [ + 69.59342961600015, + 43.77098578100015 + ], + [ + 69.72213759500016, + 43.77430048800005 + ], + [ + 70.00714862300003, + 43.62600098400003 + ], + [ + 70.09957151000003, + 43.539041421000036 + ], + [ + 70.18752248499999, + 43.51869049500016 + ], + [ + 70.28717057400007, + 43.41180295700019 + ], + [ + 70.42720049200005, + 43.34066306200009 + ], + [ + 70.594383586, + 43.1872819460001 + ], + [ + 70.61833956800007, + 43.055793522000045 + ], + [ + 70.66909752400016, + 43.0100866680001 + ], + [ + 70.82997156000016, + 42.9796449370001 + ], + [ + 71.06333162300007, + 42.98032387100017 + ], + [ + 71.15660862700014, + 42.95979407600015 + ], + [ + 71.2831876030001, + 42.87319644300004 + ], + [ + 71.32084648799997, + 42.784493779000115 + ], + [ + 71.37827258300013, + 42.77014697800013 + ], + [ + 71.50798756400013, + 42.85269665500016 + ], + [ + 71.52284951600006, + 42.94384398400007 + ], + [ + 71.60777261200008, + 43.04525344600012 + ], + [ + 71.91198758600012, + 43.08969547000004 + ], + [ + 72.2031785900001, + 43.03806344900005 + ], + [ + 72.57821662200007, + 43.03326464200006 + ], + [ + 72.82684348500004, + 42.99125286700007 + ], + [ + 73.03019750800007, + 42.933082962000185 + ], + [ + 73.21292148900005, + 42.91986520299997 + ], + [ + 73.45704659799998, + 42.857186505000186 + ], + [ + 73.85061651500001, + 42.83548475200001 + ], + [ + 74.13318656500013, + 42.87590547400009 + ], + [ + 74.38079050000016, + 42.88793618700015 + ], + [ + 74.8252865130001, + 42.83635462600006 + ], + [ + 75.14585156200019, + 42.7338771420001 + ], + [ + 75.36695057800006, + 42.76175518400015 + ], + [ + 75.362129643, + 42.85852543000004 + ], + [ + 75.06797764700019, + 42.93872498900009 + ], + [ + 74.94566355100011, + 43.056964473000164 + ], + [ + 74.85697949500013, + 43.2157926540001 + ], + [ + 74.78491960300005, + 43.28537250900007 + ], + [ + 74.59834262900006, + 43.39452198700013 + ], + [ + 74.40808063500009, + 43.41708188000007 + ], + [ + 74.2704776130002, + 43.52353054100007 + ], + [ + 74.29897356900017, + 43.63659017800012 + ], + [ + 74.2830885210002, + 43.715729761000034 + ], + [ + 74.32631651100019, + 43.77822254800003 + ], + [ + 74.4915315340001, + 43.79983260400013 + ], + [ + 74.77992264800002, + 43.68634197000006 + ], + [ + 74.93010757700017, + 43.576181131000055 + ], + [ + 75.04438057800007, + 43.43860074000014 + ], + [ + 75.25662260400014, + 43.311072262000096 + ], + [ + 75.39488260000007, + 43.26444155500019 + ], + [ + 75.51986649900016, + 43.26645136800016 + ], + [ + 75.69518255400004, + 43.299914440000066 + ], + [ + 75.83318354900018, + 43.30033437300011 + ], + [ + 76.1345366060001, + 43.22369276500018 + ], + [ + 76.43414253800006, + 43.19269481100008 + ], + [ + 76.58598356400012, + 43.231181661 + ], + [ + 76.79406749600008, + 43.42200289500005 + ], + [ + 77.143623536, + 43.46852363100015 + ], + [ + 77.26323664700016, + 43.50589149700005 + ], + [ + 77.48014856700013, + 43.51655059500001 + ], + [ + 77.62593853000004, + 43.485242678000134 + ], + [ + 77.80738862900012, + 43.50951147300009 + ], + [ + 77.92817654700019, + 43.47289060300017 + ], + [ + 78.16404749400004, + 43.489431450000154 + ], + [ + 78.19564861000009, + 43.574983357000065 + ], + [ + 78.09404753800004, + 43.64596298900017 + ], + [ + 78.06964865600008, + 43.76677454500003 + ], + [ + 78.08724964700008, + 43.854008532000194 + ], + [ + 77.92443855400012, + 43.86291950100008 + ], + [ + 77.82447849100015, + 43.83666335700008 + ], + [ + 77.70610858400005, + 43.85160544000013 + ], + [ + 77.6883625860001, + 43.955119933 + ], + [ + 77.71971861500003, + 44.02719893600016 + ], + [ + 77.95683259800006, + 44.22092064399999 + ], + [ + 77.98728958400011, + 44.26488842000009 + ], + [ + 77.99247764700016, + 44.43415810500011 + ], + [ + 77.88964862600017, + 44.68931899600017 + ], + [ + 77.93646256200003, + 44.76805792400006 + ], + [ + 78.19352765300005, + 44.83462096400012 + ], + [ + 78.33009349900016, + 44.947909929000105 + ], + [ + 78.361518595, + 45.04493967900015 + ], + [ + 78.33598363000016, + 45.18504989600012 + ], + [ + 78.26965360700012, + 45.341017836000105 + ], + [ + 78.31437659200009, + 45.421298196 + ], + [ + 78.41129251500001, + 45.443260123000016 + ], + [ + 78.67014362300011, + 45.40536805300013 + ], + [ + 78.926582586, + 45.47961025800004 + ], + [ + 79.27767150900002, + 45.46765129400012 + ], + [ + 79.41401657600005, + 45.487079037000115 + ], + [ + 79.51003261800008, + 45.53324840300013 + ], + [ + 79.66442861500008, + 45.56103826800006 + ], + [ + 79.91117860200018, + 45.678638549000084 + ], + [ + 79.99191259000014, + 45.753639651000185 + ], + [ + 80.20120955100003, + 45.799930891000145 + ], + [ + 80.40714251900016, + 45.88372092100019 + ], + [ + 80.67400354100005, + 46.043110522 + ], + [ + 80.78955863700008, + 46.09095056899997 + ], + [ + 80.98227652900016, + 46.110711577000075 + ], + [ + 81.07659959400013, + 46.146950566999976 + ], + [ + 81.04051952400005, + 46.21444098100005 + ], + [ + 80.93100761199997, + 46.26489819400018 + ], + [ + 80.67916059000015, + 46.30466211099997 + ], + [ + 80.53646053300008, + 46.3771685910001 + ], + [ + 80.548019512, + 46.461881804000086 + ], + [ + 80.35993161700014, + 46.53179408500017 + ], + [ + 80.28495063100013, + 46.59394321500008 + ], + [ + 80.25003061700005, + 46.693141698000034 + ], + [ + 80.18192262399998, + 46.755541950000065 + ], + [ + 80.19773860500004, + 46.894855718000144 + ], + [ + 80.24021155200006, + 46.987504247000174 + ], + [ + 80.36083954400004, + 47.05336454800005 + ], + [ + 80.34403952800017, + 47.173566237000045 + ], + [ + 80.24925260800006, + 47.365771491000146 + ], + [ + 79.98522165200006, + 47.52845735900013 + ], + [ + 80.19248952200019, + 47.61333888100006 + ], + [ + 80.27343758400008, + 47.69000747800004 + ], + [ + 80.45951063800015, + 47.80431937100013 + ], + [ + 80.49904656700011, + 47.87459106800014 + ], + [ + 80.4798436260001, + 48.01100201600002 + ], + [ + 80.66641255400003, + 48.140374177000126 + ], + [ + 80.72660065400015, + 48.24676299200013 + ], + [ + 80.70812962100013, + 48.34341287400014 + ], + [ + 80.64958152500014, + 48.40304525300007 + ], + [ + 80.6382066110001, + 48.56636479300005 + ], + [ + 80.83274052600007, + 48.713358397000036 + ], + [ + 80.85025753000014, + 48.782619069000134 + ], + [ + 80.74707060200006, + 48.850959742999976 + ], + [ + 80.7584386420001, + 48.90939736600018 + ], + [ + 80.92994663100006, + 48.96839992900004 + ], + [ + 80.984680626, + 49.07369088300004 + ], + [ + 81.17401155800019, + 49.12928268200011 + ], + [ + 81.28797962500005, + 49.305245484000125 + ], + [ + 81.28031152500012, + 49.4046466420001 + ], + [ + 81.11002360600003, + 49.64204929700003 + ], + [ + 81.1305775420002, + 49.7101991990001 + ], + [ + 81.25380660600007, + 49.73795956000009 + ], + [ + 81.18108353700012, + 49.82995966400017 + ], + [ + 81.29842364400008, + 50.07327206400009 + ], + [ + 81.28563654800007, + 50.20269870800013 + ], + [ + 81.19093361500012, + 50.30368588900012 + ], + [ + 81.09217065500019, + 50.3362184020001 + ], + [ + 80.82586652700019, + 50.289655757000105 + ], + [ + 80.3799286580001, + 50.324595217000194 + ], + [ + 80.12351249400007, + 50.405566414000134 + ], + [ + 79.69915752300017, + 50.442867894000074 + ], + [ + 79.4986575370001, + 50.54636964700012 + ], + [ + 79.29389149800011, + 50.574498978000065 + ], + [ + 78.9978865990002, + 50.540700462000075 + ], + [ + 78.91742653100016, + 50.568693840000094 + ], + [ + 78.65448756900003, + 50.596442298000056 + ], + [ + 78.62380259500009, + 50.51978794900003 + ], + [ + 78.68448656800018, + 50.38364723400002 + ], + [ + 78.64576754000018, + 50.251905341 + ], + [ + 78.577926595, + 50.17105534700005 + ], + [ + 78.45094260500014, + 50.12098269600011 + ], + [ + 78.0973436380001, + 50.050352756000166 + ], + [ + 78.00528754200019, + 49.973432533 + ], + [ + 78.02297956000012, + 49.88132849300007 + ], + [ + 78.11215949000007, + 49.77160904500005 + ], + [ + 78.11717957900004, + 49.647626448000096 + ], + [ + 78.01432055100014, + 49.49006577900002 + ], + [ + 78.03658255100004, + 49.43379487800007 + ], + [ + 78.17050155900017, + 49.38245538500013 + ], + [ + 78.40840159700014, + 49.36625417200014 + ], + [ + 78.54889654400017, + 49.312653578000095 + ], + [ + 78.86258658800011, + 49.02720032100012 + ], + [ + 79.07131961400012, + 48.98128995500019 + ], + [ + 79.17205064400014, + 48.90478916300003 + ], + [ + 79.21199058100018, + 48.82715949600009 + ], + [ + 79.37133056000016, + 48.70488630400007 + ], + [ + 79.5687636080001, + 48.62200721900018 + ], + [ + 79.61131249500016, + 48.54219574300015 + ], + [ + 79.72820249300008, + 48.45275463300004 + ], + [ + 79.73825859800019, + 48.33143882200011 + ], + [ + 79.85645265300013, + 48.25302293300018 + ], + [ + 79.86210658200014, + 48.20014368500006 + ], + [ + 79.69924955600004, + 48.143453018 + ], + [ + 79.53354653800017, + 48.143933133000075 + ], + [ + 79.46434755700005, + 48.19794242900019 + ], + [ + 79.22843956300011, + 48.28288513900003 + ], + [ + 79.11549358500014, + 48.41630559200007 + ], + [ + 78.91179657400016, + 48.495705181000176 + ], + [ + 78.63310952500012, + 48.55473775200005 + ], + [ + 78.53859753100005, + 48.63330233700003 + ], + [ + 78.27586359100002, + 48.594758155000136 + ], + [ + 78.0450365390002, + 48.70408817900005 + ], + [ + 77.84925858200012, + 48.7531876920001 + ], + [ + 77.73742655900003, + 48.73667735400005 + ], + [ + 77.68459357900008, + 48.66640683100013 + ], + [ + 77.69053651600018, + 48.56467583900013 + ], + [ + 77.57826260000007, + 48.470196033000036 + ], + [ + 77.42820758900001, + 48.42613555300011 + ], + [ + 77.3340375780001, + 48.32819251100017 + ], + [ + 77.29759960100012, + 48.20554163100013 + ], + [ + 77.06578851300003, + 48.19921245500012 + ], + [ + 76.90225959300011, + 48.29773133400016 + ], + [ + 76.79485355100019, + 48.43383349300018 + ], + [ + 76.68485263800011, + 48.48737306700019 + ], + [ + 76.53352357900019, + 48.50855732100007 + ], + [ + 76.38363654200003, + 48.485133925000184 + ], + [ + 76.25418056200004, + 48.407554214000186 + ], + [ + 76.08114656400005, + 48.41952457800011 + ], + [ + 75.93199160300009, + 48.32640347800003 + ], + [ + 75.90381650600006, + 48.21481453000007 + ], + [ + 75.93311360500019, + 48.048153461000084 + ], + [ + 75.9080966410001, + 47.95280059500004 + ], + [ + 75.81687152700016, + 47.87924101300001 + ], + [ + 75.72329763700009, + 47.87832906200015 + ], + [ + 75.62003359500005, + 47.92592921900018 + ], + [ + 75.51429756300018, + 48.15834531300004 + ], + [ + 75.4082104970002, + 48.234242776000144 + ], + [ + 75.16931150400006, + 48.33880483899998 + ], + [ + 75.11071764200005, + 48.55752674700011 + ], + [ + 75.18713360900006, + 48.70751805400005 + ], + [ + 75.04538758000007, + 48.76780975400004 + ], + [ + 74.8271335500001, + 48.779917916000045 + ], + [ + 74.65766152600014, + 48.8227492740001 + ], + [ + 74.51547259600017, + 48.797557129000154 + ], + [ + 74.19049849900011, + 48.655427543000144 + ], + [ + 73.99616960500015, + 48.72043825500015 + ], + [ + 73.80888352199997, + 48.739409352000166 + ], + [ + 73.53843655500015, + 48.71663940900004 + ], + [ + 73.36025958900007, + 48.60661821200006 + ], + [ + 73.33769952900019, + 48.40707326100011 + ], + [ + 73.28488163600014, + 48.33649378000018 + ], + [ + 73.39540055000003, + 48.21491360400012 + ], + [ + 73.38864155100003, + 47.98015963000006 + ], + [ + 73.481697608, + 47.88876201700015 + ], + [ + 73.68441762500015, + 47.83716050600003 + ], + [ + 73.69319163300014, + 47.77595316700018 + ], + [ + 73.49295852700016, + 47.755621017000124 + ], + [ + 73.4040065860001, + 47.639909346000195 + ], + [ + 73.47099257700006, + 47.527992331 + ], + [ + 73.34797658000008, + 47.48124712700013 + ], + [ + 73.20658158500004, + 47.50811716200019 + ], + [ + 73.03340962100015, + 47.45484899400009 + ], + [ + 72.93073264800017, + 47.34855942100012 + ], + [ + 72.77847252700008, + 47.317815941000106 + ], + [ + 72.70168255900012, + 47.346175272000096 + ], + [ + 72.4551466470001, + 47.311705030000155 + ], + [ + 72.36628757700004, + 47.367575277000185 + ], + [ + 72.44669349700007, + 47.407298625000124 + ], + [ + 72.32003053500006, + 47.505157344000054 + ], + [ + 72.26645659500002, + 47.66821050699997 + ], + [ + 72.28412648500012, + 47.74674407800006 + ], + [ + 72.41313956500005, + 47.85135861200007 + ], + [ + 72.41075860200016, + 47.89208896200017 + ], + [ + 72.19290153900005, + 47.995894977000034 + ], + [ + 72.13638253300007, + 48.102951662 + ], + [ + 72.25833151300014, + 48.203862568000034 + ], + [ + 72.34950264800011, + 48.24197592000013 + ], + [ + 72.51093257100018, + 48.3797640140001 + ], + [ + 72.58917964900007, + 48.483395016000145 + ], + [ + 72.70408648900008, + 48.55032451200009 + ], + [ + 72.9139785650001, + 48.59031792500008 + ], + [ + 72.96987161000004, + 48.62567648100003 + ], + [ + 72.99961060200008, + 48.738566635000154 + ], + [ + 72.82042663500005, + 48.799682109000116 + ], + [ + 72.79733264700008, + 48.956341556000154 + ], + [ + 72.40196950600017, + 48.99959301399997 + ], + [ + 72.28943658800011, + 49.10827143000017 + ], + [ + 72.10077654400004, + 49.13958270000006 + ], + [ + 71.94735754100003, + 49.232543538000016 + ], + [ + 71.6738205010002, + 49.24803178700017 + ], + [ + 71.59989949100014, + 49.29364442700012 + ], + [ + 71.6000215310001, + 49.40858663900008 + ], + [ + 71.33809661200013, + 49.443358126000135 + ], + [ + 71.28913154500003, + 49.54973638000007 + ], + [ + 71.20809161700015, + 49.61477726600015 + ], + [ + 70.94750260600006, + 49.66950774100019 + ], + [ + 70.75280759100008, + 49.804984443000194 + ], + [ + 70.58323649300007, + 49.811999425000124 + ], + [ + 70.36717248700012, + 49.937795196000195 + ], + [ + 70.11679850100012, + 49.96137348900004 + ], + [ + 69.96576649600007, + 50.04242163200013 + ], + [ + 69.8048785470001, + 50.00208104000012 + ], + [ + 69.71758253400014, + 49.93739001400007 + ], + [ + 69.63619257700014, + 49.94786219700012 + ], + [ + 69.35971851800008, + 49.843699951000076 + ], + [ + 69.22026862700017, + 49.84487107000007 + ], + [ + 69.142951606, + 49.89699276100009 + ], + [ + 68.8999635850002, + 49.966470525000034 + ], + [ + 68.79382354500007, + 49.97241362900007 + ], + [ + 68.72673060100004, + 49.926442075000125 + ], + [ + 68.533256494, + 49.889011513000185 + ], + [ + 68.212226585, + 49.9796426850001 + ], + [ + 68.13887755600012, + 49.95917240200009 + ], + [ + 67.99035660200008, + 49.85746420900011 + ], + [ + 67.69458756900013, + 49.865532126000176 + ], + [ + 67.540672525, + 49.81198048200008 + ], + [ + 67.49501059900007, + 49.76451007600002 + ], + [ + 67.34602361100019, + 49.72392858900008 + ], + [ + 67.04416663400013, + 49.76230882100009 + ], + [ + 66.90534957700015, + 49.80884866800011 + ], + [ + 66.77411663400017, + 49.931851085000176 + ], + [ + 66.64729357700014, + 50.116382372000146 + ], + [ + 66.52156050299999, + 50.20381651800005 + ], + [ + 66.3825835190001, + 50.24422634400014 + ], + [ + 66.05496962500018, + 50.20918361900016 + ], + [ + 65.60977154300014, + 50.33397540500005 + ], + [ + 65.400672563, + 50.26178559300001 + ], + [ + 64.96794155600003, + 50.35782175200018 + ], + [ + 64.62835662700007, + 50.30070696100006 + ], + [ + 64.463180496, + 50.37812708000018 + ], + [ + 64.31770351400013, + 50.368536842000026 + ], + [ + 64.31298852600014, + 50.45567728600014 + ], + [ + 64.16731255700006, + 50.4872787380001 + ], + [ + 64.14441655000019, + 50.59633132200014 + ], + [ + 63.95119054800017, + 50.657997151000075 + ], + [ + 63.50559952200007, + 50.661300291000146 + ], + [ + 63.41761049400003, + 50.629881733000104 + ], + [ + 63.259899621000045, + 50.62700975800004 + ], + [ + 63.13885856900015, + 50.57889813600008 + ], + [ + 63.004589532000125, + 50.41677855000006 + ], + [ + 62.826221626, + 50.36260882400012 + ], + [ + 62.57580154000016, + 50.421397649000085 + ], + [ + 62.383201498, + 50.38960626400018 + ], + [ + 62.23751061000007, + 50.32758537700016 + ], + [ + 61.98720150000008, + 50.30705524700005 + ], + [ + 61.75268557200019, + 50.203144793000035 + ], + [ + 61.529899614000044, + 50.04355050600009 + ], + [ + 61.26710163600006, + 49.96879348500005 + ], + [ + 61.05950955400016, + 49.99612201000019 + ], + [ + 60.87952058900015, + 50.088973045000046 + ], + [ + 60.75992155900002, + 50.08463205800018 + ], + [ + 60.227020607000156, + 49.81037065400011 + ], + [ + 60.11082463000014, + 49.784880113000156 + ], + [ + 59.896400627000105, + 49.867950305000136 + ], + [ + 59.62533155400007, + 49.624116215000186 + ], + [ + 59.53952450200012, + 49.481124467000086 + ], + [ + 59.52608160600005, + 49.33872381100019 + ], + [ + 59.55612955600003, + 49.16682790800013 + ], + [ + 59.528400543000146, + 49.028989522000074 + ], + [ + 59.3986734930001, + 48.9043202790001 + ], + [ + 59.29895063800012, + 48.85216858100017 + ], + [ + 59.236240591000126, + 48.68474811100015 + ], + [ + 58.95497158000012, + 48.49160408400007 + ], + [ + 58.81184052500009, + 48.44935560400012 + ], + [ + 58.72932052100015, + 48.38983822400019 + ], + [ + 58.63803053100003, + 48.251444118000165 + ], + [ + 58.53453062300002, + 48.144204037000065 + ], + [ + 58.52980457000007, + 48.05051028500003 + ], + [ + 58.415370637000194, + 47.88471892200005 + ], + [ + 58.32786960300007, + 47.81532162500008 + ], + [ + 58.22389963799998, + 47.81315037700017 + ], + [ + 58.1473125120001, + 47.89723109200003 + ], + [ + 58.2895394950001, + 48.29278450200013 + ], + [ + 58.30028559800007, + 48.483315220000065 + ], + [ + 58.45693247200012, + 48.712095076000026 + ], + [ + 58.284179602999984, + 48.78095894900008 + ], + [ + 58.17248957000015, + 48.79584805900015 + ], + [ + 58.04631862500008, + 48.86530268800004 + ], + [ + 57.83421355900015, + 48.89471797099998 + ], + [ + 57.71823852900019, + 48.93729133400012 + ], + [ + 57.57889961500018, + 48.949993605000145 + ], + [ + 57.405525480000165, + 49.070741794000185 + ], + [ + 57.18572951500005, + 49.089133030000085 + ], + [ + 56.98606151700011, + 49.17267613000013 + ], + [ + 56.86481058200019, + 49.16461106300011 + ], + [ + 56.67379354600013, + 49.19730316700003 + ], + [ + 56.59036259600015, + 49.181102122000084 + ], + [ + 56.352977543000065, + 49.20488325800005 + ], + [ + 56.226432597999974, + 49.2779622220001 + ], + [ + 55.70589059400004, + 49.34021478400018 + ], + [ + 55.544071582000015, + 49.37418512900007 + ], + [ + 55.37739559400012, + 49.484126530000026 + ], + [ + 55.24226355600018, + 49.50100667700008 + ], + [ + 55.08922961800016, + 49.556366298000114 + ], + [ + 54.933189594000055, + 49.55132625900012 + ], + [ + 54.824867577000134, + 49.63245838800003 + ], + [ + 54.61656554799998, + 49.60383703900004 + ], + [ + 54.48175051400017, + 49.64700853400012 + ], + [ + 54.18866352300006, + 49.84154077200003 + ], + [ + 54.03694152000014, + 49.86673040300013 + ], + [ + 53.951049476000094, + 49.91098064900012 + ], + [ + 53.89498158400011, + 49.99214395900009 + ], + [ + 53.8598635890001, + 50.12307364499998 + ], + [ + 53.76125351600018, + 50.258664340000166 + ], + [ + 53.57640053200015, + 50.38456723100006 + ], + [ + 53.319702568000025, + 50.2935349010001 + ], + [ + 53.2213245050001, + 50.34680457800005 + ], + [ + 53.102008616000035, + 50.34479778300005 + ], + [ + 52.99314848100005, + 50.448718966000115 + ], + [ + 52.93281151899998, + 50.39482835700011 + ], + [ + 52.791080577000116, + 50.406448357000045 + ], + [ + 52.655254518, + 50.48693960600008 + ], + [ + 52.27696648699998, + 50.488198736000186 + ], + [ + 52.03735754600012, + 50.377338008000095 + ], + [ + 51.912033509000196, + 50.26931941500004 + ], + [ + 51.742530472000055, + 50.26026628900007 + ], + [ + 51.528518523000116, + 50.13995379200003 + ], + [ + 51.40650148200007, + 50.121253431000184 + ], + [ + 51.37026953200018, + 49.970685616000026 + ], + [ + 51.481838531000164, + 49.83778383600003 + ], + [ + 51.50625250000019, + 49.69929300200016 + ], + [ + 51.63697850699998, + 49.6354192120001 + ], + [ + 51.67754758799998, + 49.52108385000008 + ], + [ + 51.82182361200017, + 49.42454393900016 + ], + [ + 51.89585157500011, + 49.306607376000045 + ], + [ + 52.01510661100019, + 49.22779049600007 + ], + [ + 52.09558159900007, + 49.067495818000054 + ], + [ + 52.01906152800012, + 48.99650713300019 + ], + [ + 52.010002535000126, + 48.87812800500012 + ], + [ + 51.87452348700003, + 48.848525638000126 + ], + [ + 51.88360561400003, + 49.11592042000012 + ], + [ + 51.77531461000012, + 49.24645984400007 + ], + [ + 51.69052562400003, + 49.29479727400002 + ], + [ + 51.66884247900015, + 49.15824500700006 + ], + [ + 51.68324661200012, + 48.98345701300008 + ], + [ + 51.51826862900009, + 48.93994957100006 + ], + [ + 51.05109755600017, + 49.14023481200019 + ], + [ + 50.96239455600005, + 49.15595171900003 + ], + [ + 50.84632447600006, + 49.110640323000155 + ], + [ + 50.7940675000001, + 48.970913830000086 + ], + [ + 50.703414535000036, + 48.948349746000076 + ], + [ + 50.515712542000074, + 48.955189547000145 + ], + [ + 49.84173561000017, + 49.084376133000035 + ], + [ + 49.54990054000018, + 49.180313050000166 + ], + [ + 49.41565346400006, + 49.20965541000004 + ], + [ + 49.228706511999974, + 49.20590232900008 + ], + [ + 48.47992360800015, + 49.14839878600014 + ], + [ + 48.165031599000145, + 49.207332450000024 + ], + [ + 47.880050579000056, + 49.10611241900011 + ], + [ + 47.743190528000184, + 49.12116145600015 + ], + [ + 47.33967548300012, + 49.27405625500012 + ], + [ + 47.25042749300019, + 49.257908015000055 + ], + [ + 47.233093549000046, + 49.17250011000016 + ], + [ + 47.43613861600005, + 48.97287486000016 + ], + [ + 47.454360538000174, + 48.88676488600004 + ], + [ + 47.38499861300011, + 48.84765241100007 + ], + [ + 47.23230749400011, + 48.90559801700016 + ], + [ + 47.04780956800016, + 48.916466160000084 + ], + [ + 46.969619487000045, + 48.883502985000064 + ], + [ + 46.94796349900008, + 48.765032830000166 + ], + [ + 46.83745548200011, + 48.66968784300019 + ], + [ + 46.83148957800012, + 48.61338911400003 + ], + [ + 46.970794462000015, + 48.494686110000146 + ], + [ + 46.91348252900008, + 48.41329146000004 + ], + [ + 46.99382357300004, + 48.21324376100006 + ], + [ + 46.95646660400007, + 48.157548362000114 + ], + [ + 46.832153592, + 48.118614924000155 + ], + [ + 46.695857476000185, + 48.13205782100016 + ], + [ + 46.568492614000036, + 48.255186134000155 + ], + [ + 46.486625559, + 48.27623929600003 + ], + [ + 46.391742583000166, + 48.21108056000003 + ], + [ + 46.32468450800013, + 48.11368686800006 + ], + [ + 46.32468450800013, + 48.02437601300005 + ], + [ + 46.19895160100009, + 47.89864226900016 + ], + [ + 45.86803456700011, + 47.763849028000095 + ], + [ + 45.48250155400018, + 47.67179242900005 + ], + [ + 45.086212547, + 47.73437674800016 + ], + [ + 44.83527747700015, + 47.661725261000015 + ], + [ + 44.699172468000086, + 47.58178386500009 + ], + [ + 44.619808585000044, + 47.47567316200019 + ], + [ + 44.64353959700014, + 47.20924950700015 + ], + [ + 44.58537254200019, + 46.91506985100017 + ], + [ + 44.59326561299997, + 46.76683405 + ], + [ + 44.65816451000006, + 46.503397035000035 + ], + [ + 44.76982855900013, + 46.27773005000017 + ], + [ + 44.959739519000095, + 45.94487394600014 + ], + [ + 45.17390452100017, + 45.619304230000125 + ], + [ + 45.367683562000025, + 45.45855709600016 + ], + [ + 45.71919258600008, + 45.235496045000104 + ], + [ + 45.81602452200008, + 45.13693173700011 + ], + [ + 45.82545852200013, + 45.01970595900002 + ], + [ + 45.75780147600017, + 44.878298726000025 + ], + [ + 45.80065546400016, + 44.82628566400018 + ], + [ + 45.99774954700018, + 44.766775996000035 + ], + [ + 46.21156351600007, + 44.74300692999998 + ], + [ + 46.594314575000055, + 44.788863987000184 + ], + [ + 46.74495648600015, + 44.68973088300004 + ], + [ + 46.67230952500006, + 44.49782100700003 + ], + [ + 46.76745653199998, + 44.502127964000124 + ], + [ + 46.82187251800008, + 44.52994917700016 + ], + [ + 46.83363350100018, + 44.661581937000165 + ], + [ + 46.92068459500001, + 44.71859279300014 + ], + [ + 46.93351360100013, + 44.80514767800008 + ], + [ + 47.01766254400013, + 44.84039592800008 + ], + [ + 47.14575562700003, + 44.81961769300011 + ], + [ + 47.17357650500014, + 44.90258679900012 + ], + [ + 47.31692850700006, + 45.170126923000055 + ], + [ + 47.409820614000125, + 45.21997795700008 + ], + [ + 47.56249647700014, + 45.48548127800012 + ], + [ + 47.58562047200019, + 45.60345019500011 + ], + [ + 47.55477959400014, + 45.72938544100009 + ], + [ + 47.765266617000066, + 45.67867643500017 + ], + [ + 48.06415556200005, + 45.74424370500009 + ], + [ + 48.21443151900007, + 45.72839771700012 + ], + [ + 48.28527050300005, + 45.83091392500006 + ], + [ + 48.40193150800019, + 45.866176760000144 + ], + [ + 48.45860256100019, + 45.9339640610001 + ], + [ + 48.651565540000036, + 45.9664731040001 + ], + [ + 48.780918590000056, + 46.04279435600017 + ], + [ + 48.941093575000195, + 46.08588857000012 + ], + [ + 49.03832247800011, + 46.193127981000146 + ], + [ + 49.12332151400017, + 46.16117583100015 + ], + [ + 49.11388349100008, + 46.291471007000155 + ], + [ + 49.23693050100019, + 46.30174034700019 + ], + [ + 49.216899596000076, + 46.39523159200007 + ], + [ + 49.350490537000155, + 46.44901072100009 + ], + [ + 49.61297955800006, + 46.430356628000084 + ], + [ + 49.84297562800009, + 46.499563991000116 + ], + [ + 49.95454060400016, + 46.61191854200007 + ], + [ + 50.39960457500007, + 46.816219385000124 + ], + [ + 50.893012515000066, + 46.96644723000003 + ], + [ + 51.064479599000094, + 46.976140230000055 + ], + [ + 51.34804156300015, + 47.029423486000155 + ], + [ + 51.58860754900007, + 47.018246218000115 + ], + [ + 51.68262450700007, + 46.882312703000025 + ], + [ + 51.962551575000134, + 46.81083317400004 + ], + [ + 52.18447151400011, + 46.77480306000018 + ], + [ + 52.341884494000055, + 46.76748213800016 + ], + [ + 52.473499485000104, + 46.851802408000026 + ], + [ + 52.60997363300004, + 46.87426372900018 + ], + [ + 52.619461612000066, + 46.800853345000064 + ], + [ + 52.71038061900009, + 46.742632980999986 + ], + [ + 52.928218571000116, + 46.77736222300007 + ], + [ + 53.017749534000075, + 46.672652639000034 + ], + [ + 53.007125472000155, + 46.47870897800004 + ], + [ + 53.057250594000095, + 46.39935163300004 + ], + [ + 52.98574055500012, + 46.35782030800016 + ], + [ + 52.909046476000185, + 46.20198195300014 + ], + [ + 52.976837633000116, + 46.109406681999985 + ], + [ + 52.9037554840001, + 45.86185873800008 + ], + [ + 52.924026613000194, + 45.75968954100017 + ], + [ + 52.83874862800002, + 45.75020977600013 + ], + [ + 52.719478504000165, + 45.66881546100018 + ], + [ + 52.741935467000076, + 45.519149372000186 + ], + [ + 52.713176486000066, + 45.48931817800019 + ], + [ + 52.767208581000034, + 45.349547931000075 + ], + [ + 52.62649956100017, + 45.36899897600017 + ], + [ + 52.56194650100019, + 45.42573909600014 + ], + [ + 52.43484147700019, + 45.43672911200014 + ], + [ + 52.30252056200004, + 45.41094503700003 + ], + [ + 52.054470543000036, + 45.413448040000105 + ], + [ + 51.933776501000125, + 45.39360690200016 + ], + [ + 51.73133862000003, + 45.44012009500011 + ], + [ + 51.56772956900011, + 45.349750103000076 + ], + [ + 51.42601053000004, + 45.365229969000154 + ], + [ + 51.282039608000105, + 45.25381787900011 + ], + [ + 51.23704957500007, + 45.15820970100009 + ], + [ + 51.248104467000076, + 45.068117820000055 + ], + [ + 51.16477946400005, + 45.06404086300017 + ], + [ + 51.07513048400017, + 45.001337857000124 + ], + [ + 50.95244959600018, + 44.97822878200003 + ], + [ + 50.870319518000144, + 44.89710889000014 + ], + [ + 50.86609252400018, + 44.81038988800003 + ], + [ + 51.05779251700011, + 44.814448908000145 + ], + [ + 51.17501058300007, + 44.75185268800004 + ], + [ + 51.28576251400011, + 44.54125904600011 + ], + [ + 51.21979861200009, + 44.48638909700003 + ], + [ + 51.09281948500018, + 44.4740899950001 + ], + [ + 50.90903049900004, + 44.60081397700014 + ], + [ + 50.81386957900014, + 44.63357883700007 + ], + [ + 50.73884953400017, + 44.602989080999976 + ], + [ + 50.31145461400013, + 44.63978882100014 + ], + [ + 50.24059249600003, + 44.532427873000074 + ], + [ + 50.26787961400004, + 44.35210011100003 + ], + [ + 50.40348858200019, + 44.29272036200007 + ], + [ + 50.60935952300008, + 44.27973947600003 + ], + [ + 50.75510053500017, + 44.24393433300003 + ], + [ + 50.82998261400007, + 44.198219600000016 + ], + [ + 50.86939952000006, + 44.02700095500006 + ], + [ + 50.99792460600008, + 43.92908121500011 + ], + [ + 51.020370504000084, + 43.80618340400014 + ], + [ + 51.15740959200008, + 43.625855977000015 + ], + [ + 51.27188459700017, + 43.55627226700017 + ], + [ + 51.30706059500011, + 43.4728106390001 + ], + [ + 51.31312959500008, + 43.33229306200019 + ], + [ + 51.27138855600009, + 43.20869368500007 + ], + [ + 51.282062574000065, + 43.14747192900006 + ], + [ + 51.652324598000064, + 43.18052277900017 + ], + [ + 51.663448557000095, + 43.09805340100013 + ], + [ + 51.773750547000134, + 43.023937763000106 + ], + [ + 51.91202948600011, + 42.82671862199999 + ], + [ + 52.13146955500008, + 42.87197654100004 + ], + [ + 52.20540950800006, + 42.86577359700016 + ], + [ + 52.29486855500011, + 42.783524999000065 + ], + [ + 52.42802447500014, + 42.83678562300008 + ], + [ + 52.60877250600009, + 42.80364391300009 + ], + [ + 52.73834952100003, + 42.72402438300014 + ], + [ + 52.74679948500017, + 42.64303474600007 + ], + [ + 52.55892951900012, + 42.29231697400013 + ], + [ + 52.43873956500016, + 42.16962988300003 + ], + [ + 52.41904058400013, + 42.08841946700011 + ], + [ + 52.4915425370001, + 41.93661079499998 + ], + [ + 52.442935546000115, + 41.76231498600015 + ], + [ + 52.57830059999998, + 41.68988176400006 + ], + [ + 52.59915946900003, + 41.63695306300008 + ], + [ + 52.55617857800013, + 41.54259378800009 + ], + [ + 52.77017259000007, + 41.38291635300004 + ], + [ + 52.85692947900003, + 41.15556644900016 + ], + [ + 52.88756952600005, + 41.16844859600013 + ], + [ + 52.81795161700012, + 41.37652632500016 + ], + [ + 52.95190063300009, + 41.67526389200009 + ], + [ + 53.17384353800003, + 41.73743213300003 + ], + [ + 53.33802054600011, + 41.702302571000075 + ], + [ + 53.365390478, + 41.66858468900017 + ], + [ + 53.51226455600005, + 41.666791800000055 + ], + [ + 53.715530569000066, + 41.62732527400004 + ], + [ + 53.827079619000074, + 41.57456454600003 + ], + [ + 54.08678853100008, + 41.38726136400015 + ], + [ + 54.12298946800013, + 41.25953842600018 + ], + [ + 54.231639552000104, + 41.068942329000095 + ], + [ + 54.27389959900006, + 40.91194995300009 + ], + [ + 54.22813055200004, + 40.84599460100003 + ], + [ + 54.23260849999997, + 40.74360177500017 + ], + [ + 54.066020521000155, + 40.72117213700011 + ], + [ + 53.99960751700013, + 40.67914242500012 + ], + [ + 53.759216546, + 40.65594165200008 + ], + [ + 53.68202961100019, + 40.75633187400018 + ], + [ + 53.648208632000035, + 40.873880523000025 + ], + [ + 53.53062058800003, + 40.86244056600003 + ], + [ + 53.48463847300013, + 40.76590669000018 + ], + [ + 53.329929495000044, + 40.79395119700018 + ], + [ + 53.04108056200016, + 40.87140048499998 + ], + [ + 52.94001358500009, + 40.949169627000174 + ], + [ + 52.83125654700018, + 40.73188387400006 + ], + [ + 52.85485847799998, + 40.661533890000044 + ], + [ + 52.73855957100017, + 40.49833454700013 + ], + [ + 52.7063785950001, + 40.290128240000115 + ], + [ + 52.76691052100011, + 40.150598888000104 + ], + [ + 52.733760596000195, + 40.079329577000124 + ], + [ + 52.771926587000166, + 40.001369664000094 + ], + [ + 52.909358618000056, + 39.987984770000025 + ], + [ + 53.170589516000064, + 40.00745073400003 + ], + [ + 53.2836986050001, + 39.957532142000105 + ], + [ + 53.417713503000186, + 39.986610976 + ], + [ + 53.49332447200004, + 39.94439049200008 + ], + [ + 53.47491462700009, + 39.87233227600012 + ], + [ + 53.399852505000126, + 39.77908276500011 + ], + [ + 53.460578555000154, + 39.67703393100015 + ], + [ + 53.570850538000116, + 39.68034880700014 + ], + [ + 53.52360962900019, + 39.58746524900016 + ], + [ + 53.283378584, + 39.54882668700009 + ], + [ + 53.20675256600009, + 39.565447666000125 + ], + [ + 53.09268961600009, + 39.43336932400007 + ], + [ + 53.15652049100015, + 39.33962075400012 + ], + [ + 53.22829858400007, + 39.39320894300016 + ], + [ + 53.528999527999986, + 39.30201936900016 + ], + [ + 53.562229583000146, + 39.20661554100019 + ], + [ + 53.64935259400016, + 39.11223413800013 + ], + [ + 53.77118255100004, + 39.04556515000007 + ], + [ + 53.88050050600009, + 39.02375745000012 + ], + [ + 53.93259453700017, + 38.93580697800007 + ], + [ + 53.98895261000001, + 38.9262050050001 + ], + [ + 53.85137959499997, + 38.63717049600007 + ], + [ + 53.83381246700009, + 38.49525498500009 + ], + [ + 53.86897253900008, + 38.38142572200019 + ], + [ + 53.86236156400014, + 38.21088081400006 + ], + [ + 53.8238026300001, + 38.051280493000036 + ], + [ + 53.813014618000125, + 37.81221403000012 + ], + [ + 53.88380448400011, + 37.498480735000044 + ], + [ + 53.91860162000012, + 37.26432338400008 + ], + [ + 54.00971961300013, + 37.034882196000126 + ], + [ + 54.03365749, + 36.87335940100019 + ], + [ + 54.13351462300011, + 36.83572817600003 + ], + [ + 54.61956761000005, + 36.94614600400007 + ], + [ + 55.070323565000194, + 37.07534030100015 + ], + [ + 55.27307560000014, + 37.20661264000006 + ], + [ + 55.48455856100003, + 37.445823942000175 + ], + [ + 55.8465464730001, + 37.73581952000018 + ], + [ + 56.19812758100005, + 37.85949718400008 + ], + [ + 56.431953511000074, + 37.90119044700003 + ], + [ + 56.09452859900006, + 37.953676248000136 + ], + [ + 55.75785453800006, + 38.02381199000018 + ], + [ + 55.556976528, + 38.092291972000055 + ], + [ + 55.509593630000154, + 38.213700822000135 + ], + [ + 55.44804347000007, + 38.26925691400004 + ], + [ + 55.24546460500011, + 38.30154031700016 + ], + [ + 55.10510259600005, + 38.379705923000074 + ], + [ + 55.022472621000134, + 38.474834154000064 + ], + [ + 54.99261058200017, + 38.61000206600016 + ], + [ + 55.03650258500011, + 38.674358989000154 + ], + [ + 54.95166062599998, + 38.766108642 + ], + [ + 55.04855358300017, + 38.86493781899998 + ], + [ + 54.9421845490001, + 38.97141632000012 + ], + [ + 54.99266053800005, + 39.08184269800017 + ], + [ + 55.139148545000126, + 39.12586378300017 + ], + [ + 55.349761632000195, + 39.14441360500001 + ], + [ + 55.60332862000007, + 39.29680934500004 + ], + [ + 55.721660474000146, + 39.297411334000174 + ], + [ + 55.83845558900015, + 39.220943566000074 + ], + [ + 56.25207552200004, + 39.09592228300011 + ], + [ + 56.371135595000055, + 39.07966474400007 + ], + [ + 56.493522613000096, + 39.01536465000004 + ], + [ + 56.49800156700013, + 38.93796565300005 + ], + [ + 56.38450959200003, + 38.88264576300003 + ], + [ + 56.446933480999974, + 38.82377865100011 + ], + [ + 56.62071950300003, + 38.78953824100017 + ], + [ + 56.884799577000024, + 38.61526288400006 + ], + [ + 57.21245957100018, + 38.58233156000006 + ], + [ + 57.30673955400016, + 38.50875487800005 + ], + [ + 57.351249471000074, + 38.39267473900003 + ], + [ + 57.552410622000195, + 38.27906776400016 + ], + [ + 57.738231548000044, + 38.22531948100004 + ], + [ + 57.97169152400011, + 38.07244010500017 + ], + [ + 58.25299858800014, + 37.925573738000026 + ], + [ + 58.36959052600014, + 37.94161452200012 + ], + [ + 58.51295862100005, + 37.911635136000086 + ], + [ + 58.54763455500017, + 37.993092651000154 + ], + [ + 58.69855156000011, + 37.95188335900002 + ], + [ + 58.88594861900003, + 37.966623271000174 + ], + [ + 59.033100473000104, + 37.89054358500016 + ], + [ + 59.180309492, + 37.854274252000096 + ], + [ + 59.27238453100017, + 37.79234439300018 + ], + [ + 59.37788050500012, + 37.79829520900017 + ], + [ + 59.512214585000095, + 37.74580521700011 + ], + [ + 59.724548476999985, + 37.588330043000155 + ], + [ + 59.90002060300009, + 37.499941868000064 + ], + [ + 60.0605015270001, + 37.35412374200018 + ], + [ + 60.28956955300009, + 37.30058567700007 + ], + [ + 60.373035539000114, + 37.264506445 + ], + [ + 60.456272532000185, + 37.174176351000085 + ], + [ + 60.59371160400002, + 37.12382709700006 + ], + [ + 60.732009486000095, + 36.97060138000006 + ], + [ + 60.839054604000125, + 36.91500337800011 + ], + [ + 60.87477458800015, + 36.84642482600009 + ], + [ + 61.13245055200014, + 36.693725158 + ], + [ + 61.24529259500014, + 36.58486351400012 + ], + [ + 61.38977447700006, + 36.33270602600004 + ], + [ + 61.531925520000186, + 36.18134226600017 + ], + [ + 61.345123576, + 36.030836812000075 + ], + [ + 61.0704155840001, + 35.94222366700018 + ], + [ + 60.88057754700003, + 35.77160768100009 + ], + [ + 60.96348563300012, + 35.51193196200006 + ], + [ + 60.94065450300002, + 35.44047690800011 + ], + [ + 60.78990563900004, + 35.541274322000106 + ], + [ + 60.74150450600007, + 35.611745676000055 + ], + [ + 60.65311063200011, + 35.57690244000014 + ], + [ + 60.41837660700003, + 35.61787938600003 + ], + [ + 60.32233458100018, + 35.75723824900007 + ], + [ + 60.230079498, + 35.8109209860001 + ], + [ + 60.28492363200013, + 35.85535379000015 + ], + [ + 60.71895953400019, + 35.83518223700008 + ], + [ + 60.87643454000016, + 35.77998069900008 + ], + [ + 60.80456558700013, + 35.94222366700018 + ], + [ + 60.68049950600016, + 36.08400573900008 + ], + [ + 60.547576603000095, + 36.19920309600002 + ], + [ + 60.199569539000095, + 36.398210600000084 + ], + [ + 60.19312653700007, + 36.45473631100015 + ], + [ + 60.08406858900014, + 36.60557318500008 + ], + [ + 59.950691555000105, + 36.718135774000075 + ], + [ + 59.86378060599998, + 36.74726691100011 + ], + [ + 59.5906256130001, + 36.704451814000095 + ], + [ + 59.39929157400019, + 36.75100591000012 + ], + [ + 59.13154559100019, + 36.88851103200017 + ], + [ + 59.0123175440001, + 36.97242545000017 + ], + [ + 58.676677475000076, + 37.07641234700003 + ], + [ + 58.54371651800005, + 37.136057132000076 + ], + [ + 58.29559357599999, + 37.33274318400004 + ], + [ + 58.09599648900013, + 37.464797554000086 + ], + [ + 58.00160251300008, + 37.508085725 + ], + [ + 57.75028254500012, + 37.57228557100012 + ], + [ + 57.559959531000175, + 37.56176879800006 + ], + [ + 57.31105757500012, + 37.63909504000003 + ], + [ + 57.152412623000146, + 37.66583951300015 + ], + [ + 57.09217456700014, + 37.70401992 + ], + [ + 56.976901605000194, + 37.6845194230001 + ], + [ + 56.923660594000125, + 37.645874155 + ], + [ + 56.941299471000036, + 37.57413931300016 + ], + [ + 57.073875531000056, + 37.48417617900009 + ], + [ + 57.262546472000054, + 37.43124814800012 + ], + [ + 57.392848522000065, + 37.37500121900018 + ], + [ + 57.72160352800017, + 37.26164234900017 + ], + [ + 57.84927751600014, + 37.24713076000006 + ], + [ + 58.09066056900008, + 37.106676549000156 + ], + [ + 58.316028488000086, + 36.850727927000094 + ], + [ + 58.47132453500012, + 36.710242704000166 + ], + [ + 58.58640655700009, + 36.66218992299997 + ], + [ + 58.796089588000086, + 36.507430989000056 + ], + [ + 58.89702262200012, + 36.45438544400014 + ], + [ + 59.070907550000186, + 36.315487417999975 + ], + [ + 59.12980249000009, + 36.247315723000156 + ], + [ + 59.11718353500004, + 36.108093987000075 + ], + [ + 59.02534855400006, + 36.15213787100009 + ], + [ + 58.66197159300009, + 36.2632386570001 + ], + [ + 58.4863506050001, + 36.34310159800003 + ], + [ + 58.40645547700012, + 36.33858492600007 + ], + [ + 58.42603660900005, + 36.240782029000115 + ], + [ + 58.395656569000096, + 36.18822833500013 + ], + [ + 58.163505511000096, + 36.226206403000106 + ], + [ + 57.80724763600017, + 36.243490055000166 + ], + [ + 57.388572577, + 36.307972371000176 + ], + [ + 57.14094953199998, + 36.30054986100015 + ], + [ + 56.74400757500001, + 36.38613378600019 + ], + [ + 56.62266963600018, + 36.457459088000064 + ], + [ + 56.60294349800017, + 36.5255427730001 + ], + [ + 56.87410762100018, + 36.52669059100003 + ], + [ + 57.040542546000154, + 36.505768187000115 + ], + [ + 57.20291861900017, + 36.52431482399999 + ], + [ + 57.504615501000046, + 36.534999572000174 + ], + [ + 57.67529653100007, + 36.51968801400017 + ], + [ + 57.82186550700004, + 36.46628305300004 + ], + [ + 58.007312601000194, + 36.36539025200017 + ], + [ + 58.08391162900017, + 36.42646985100009 + ], + [ + 58.03689954500004, + 36.52818977800018 + ], + [ + 58.02626760400011, + 36.63631146800009 + ], + [ + 58.107707516, + 36.725428365000084 + ], + [ + 58.03387049300005, + 36.8223543470001 + ], + [ + 57.925147486000185, + 36.84479605399997 + ], + [ + 57.76620849700015, + 36.82766042700018 + ], + [ + 57.62089160900001, + 36.86339968800007 + ], + [ + 57.43974661100003, + 37.04378176500006 + ], + [ + 57.42610154300007, + 37.12548704900013 + ], + [ + 57.089397475000055, + 37.20661951300019 + ], + [ + 56.911453526000116, + 37.201752645000056 + ], + [ + 56.822441570000194, + 37.25058762400005 + ], + [ + 56.79282361200006, + 37.17172732600005 + ], + [ + 56.600856571000065, + 37.04571178200018 + ], + [ + 56.388149517000045, + 36.93469112800017 + ], + [ + 56.335353585000064, + 37.08127502400015 + ], + [ + 55.95942355100004, + 36.92537212800005 + ], + [ + 55.838596573000075, + 36.79835293500014 + ], + [ + 55.57513860400013, + 36.688511111000025 + ], + [ + 55.28841062700002, + 36.495872512000176 + ], + [ + 54.84503158600012, + 36.244761086000096 + ], + [ + 54.42281349700005, + 36.056933197000035 + ], + [ + 53.93424661000017, + 35.818344670000045 + ], + [ + 53.59032454900017, + 35.62481842800008 + ], + [ + 53.42821854200008, + 35.571554451000054 + ], + [ + 53.137466581000126, + 35.497784315 + ], + [ + 52.9315265730001, + 35.46280009500015 + ], + [ + 52.444011614000146, + 35.355224906000046 + ], + [ + 52.18614554800007, + 35.40237679900008 + ], + [ + 52.013790485000186, + 35.38132816400014 + ], + [ + 51.960067514, + 35.455007440000145 + ], + [ + 51.88715350600012, + 35.657928454000114 + ], + [ + 51.502067584000145, + 35.78412739400005 + ], + [ + 51.32630158900014, + 35.80069422600019 + ], + [ + 51.12924555900014, + 35.838802381000164 + ], + [ + 50.94217254400019, + 35.991722829000025 + ], + [ + 50.79687862300011, + 36.078630759000134 + ], + [ + 50.626781477000065, + 36.12078167400011 + ], + [ + 50.22880955200014, + 36.23908117400015 + ], + [ + 49.994705510000074, + 36.278379224000105 + ], + [ + 49.75271963000006, + 36.26105651200015 + ], + [ + 49.55783049000013, + 36.21121855400014 + ], + [ + 49.303581551000036, + 36.26483339800018 + ], + [ + 49.15082957900006, + 36.35010166000012 + ], + [ + 48.970626540000126, + 36.40119036600004 + ], + [ + 49.00783950800019, + 36.280660107000074 + ], + [ + 49.20587554900004, + 36.10832314900017 + ], + [ + 49.22395749400016, + 36.003944482000065 + ], + [ + 49.0364913680001, + 35.90868968399997 + ], + [ + 49.02480649199998, + 35.82942956900018 + ], + [ + 49.077152483000134, + 35.735788623000076 + ], + [ + 49.320026509, + 35.714839230000166 + ], + [ + 49.59708746900009, + 35.796864367000126 + ], + [ + 49.85986751000007, + 35.77017387300009 + ], + [ + 50.139194601000156, + 35.78892251400015 + ], + [ + 50.305988607000074, + 35.72083899600011 + ], + [ + 50.459358493000195, + 35.68151781200004 + ], + [ + 50.51230647199998, + 35.63521701700006 + ], + [ + 50.41146061000006, + 35.555774009000174 + ], + [ + 50.51373659200004, + 35.48205986500017 + ], + [ + 50.65183247100015, + 35.50496727100017 + ], + [ + 51.03304260100009, + 35.48406263600003 + ], + [ + 51.37865462100018, + 35.559645778000174 + ], + [ + 51.517398588000106, + 35.542857161000086 + ], + [ + 51.4734836180001, + 35.48355167600005 + ], + [ + 51.42787550300011, + 35.231810769 + ], + [ + 51.28227648000018, + 35.23830272099997 + ], + [ + 51.14144558700002, + 35.272130741000126 + ], + [ + 50.86536748900011, + 35.27890583300007 + ], + [ + 50.688262569000074, + 35.26133619100011 + ], + [ + 50.43885753100017, + 35.268587040000114 + ], + [ + 50.25231559300005, + 35.22629111800012 + ], + [ + 50.00598151700018, + 35.20489144900006 + ], + [ + 50.04863752500012, + 35.12507041700013 + ], + [ + 50.15180551000009, + 35.076292770000066 + ], + [ + 50.17384354500018, + 35.00435760000016 + ], + [ + 50.35716649700004, + 34.90446107200006 + ], + [ + 50.37592352000013, + 34.840470941000035 + ], + [ + 50.200641495000184, + 34.87405789800016 + ], + [ + 50.26878351800002, + 34.740253554000105 + ], + [ + 50.124584609000124, + 34.7389535210001 + ], + [ + 49.93880056299997, + 34.64903464300011 + ], + [ + 49.70544452300015, + 34.51013846000018 + ], + [ + 49.63881660700008, + 34.39361357700017 + ], + [ + 49.52168655000003, + 34.37557823600014 + ], + [ + 49.280540537000036, + 34.08039007000019 + ], + [ + 49.222446572000194, + 33.98674191500004 + ], + [ + 49.2160945980001, + 33.849637784000095 + ], + [ + 49.23681248300005, + 33.64425634500003 + ], + [ + 49.296066504000066, + 33.59212291900019 + ], + [ + 49.468551487000184, + 33.75858332600012 + ], + [ + 49.71889848300009, + 33.890430495000146 + ], + [ + 50.52693959900006, + 34.436100606000025 + ], + [ + 50.599044586000105, + 34.40066326100009 + ], + [ + 50.519878516000176, + 34.32026253700013 + ], + [ + 50.47921756800014, + 34.10925835000006 + ], + [ + 50.48546258900018, + 33.83973087700008 + ], + [ + 50.47809959000017, + 33.50935330200008 + ], + [ + 50.869445620000135, + 33.312860201000035 + ], + [ + 51.03197457900018, + 33.207742250000024 + ], + [ + 51.01169959300006, + 33.35931069700018 + ], + [ + 51.074001609000106, + 33.38115997200015 + ], + [ + 51.42438561400007, + 33.134818352000025 + ], + [ + 51.761779513000135, + 32.94873892700019 + ], + [ + 51.88117251500006, + 32.855972884000096 + ], + [ + 51.97688261800005, + 32.645175563000066 + ], + [ + 52.08304260700015, + 32.22290885900003 + ], + [ + 52.10380558700018, + 32.054717087000085 + ], + [ + 52.054531563000126, + 31.95501736600005 + ], + [ + 52.114700552000045, + 31.897511476000147 + ], + [ + 52.254207608000115, + 31.953339645000028 + ], + [ + 52.45315560000017, + 31.89284342600007 + ], + [ + 52.47724150199997, + 31.801662401000158 + ], + [ + 52.27647748600015, + 31.795667664000064 + ], + [ + 52.2377965120001, + 31.68056468700007 + ], + [ + 52.042785499000104, + 31.612741847000052 + ], + [ + 51.9406774900001, + 31.59415162400012 + ], + [ + 51.888019524000185, + 31.549384047 + ], + [ + 51.90571958900017, + 31.257221915000116 + ], + [ + 51.893627521000155, + 31.07783627800012 + ], + [ + 51.907775503000096, + 30.74679686800016 + ], + [ + 52.01672750300003, + 30.56811933500012 + ], + [ + 52.0897524880001, + 30.49356985000003 + ], + [ + 52.28890952500018, + 30.441616802 + ], + [ + 52.26972552800015, + 30.637322674000075 + ], + [ + 52.29458256500004, + 30.764373048000152 + ], + [ + 52.34451658000006, + 30.855624984000144 + ], + [ + 52.419853628000055, + 30.913811821000138 + ], + [ + 52.39775859600013, + 31.03188769100018 + ], + [ + 52.34088855700003, + 31.14669663100011 + ], + [ + 52.440669582000055, + 31.19141911300011 + ], + [ + 52.5178565170001, + 31.114049956000088 + ], + [ + 52.69552252200009, + 31.068298511000137 + ], + [ + 52.794410539000125, + 30.913685757 + ], + [ + 52.63467459800006, + 30.72007083400007 + ], + [ + 52.95949949800007, + 30.61101556800014 + ], + [ + 53.072265600000094, + 30.562359459000163 + ], + [ + 53.27037858800014, + 30.528783734000058 + ], + [ + 53.37685356900016, + 30.346551268000155 + ], + [ + 53.45014962400012, + 30.282977717000108 + ], + [ + 53.61268260600008, + 30.203991356000074 + ], + [ + 53.663852616000156, + 30.147913573999972 + ], + [ + 53.576427522000074, + 30.082994895000013 + ], + [ + 54.0119094690001, + 29.827351542000088 + ], + [ + 54.074172593000185, + 29.669537572000138 + ], + [ + 54.0886194740001, + 29.570817192 + ], + [ + 54.21656050800016, + 29.74391573100013 + ], + [ + 54.26094855300016, + 29.42549779 + ], + [ + 54.28273747800006, + 29.365709172000095 + ], + [ + 54.391380522000134, + 29.415885088000152 + ], + [ + 54.500812471000074, + 29.43558356600016 + ], + [ + 54.61380756600005, + 29.493700330000024 + ], + [ + 54.71579755800019, + 29.507079524000176 + ], + [ + 54.878787522000096, + 29.463056428000073 + ], + [ + 55.0628665210001, + 29.26346906400005 + ], + [ + 55.403011528000036, + 29.028348465000136 + ], + [ + 55.461597511000036, + 29.03306127400009 + ], + [ + 55.522705608000024, + 29.111853008000082 + ], + [ + 55.651451474000055, + 28.960347929000193 + ], + [ + 55.69471349300011, + 28.85750600000017 + ], + [ + 55.75997147100003, + 28.79512854700016 + ], + [ + 55.91469151300009, + 28.76193101299998 + ], + [ + 55.99242059000005, + 28.85969602300014 + ], + [ + 56.16572163500001, + 28.897173524000095 + ], + [ + 56.26448459400001, + 28.965419818000157 + ], + [ + 56.26580859900008, + 29.06651277900005 + ], + [ + 56.304313553999975, + 29.116189972000143 + ], + [ + 56.31246562500007, + 29.245334648000096 + ], + [ + 56.351295630000095, + 29.337656115000016 + ], + [ + 56.19307362900008, + 29.47898170800005 + ], + [ + 56.24291963400009, + 29.574668174000124 + ], + [ + 56.14536651800006, + 29.64658943000012 + ], + [ + 55.92301960500015, + 29.71710872800014 + ], + [ + 55.676826512000105, + 29.839098109000076 + ], + [ + 55.359992583, + 29.97443097600018 + ], + [ + 55.12063560300015, + 30.111709787000052 + ], + [ + 54.76638754100014, + 30.32735201600019 + ], + [ + 54.65969463100009, + 30.525857779000148 + ], + [ + 54.56813859900018, + 30.60441297600005 + ], + [ + 54.53276847700016, + 30.723669521000033 + ], + [ + 54.32076650800013, + 30.898668572000133 + ], + [ + 54.242389511000056, + 31.027609735000055 + ], + [ + 54.138793546000045, + 30.9196927320001 + ], + [ + 54.13304557200013, + 30.798905987000012 + ], + [ + 54.01883660900006, + 30.788553330000127 + ], + [ + 53.95108753, + 30.897792328000094 + ], + [ + 54.060188561000075, + 31.048394173000077 + ], + [ + 54.05180749600004, + 31.163265306000085 + ], + [ + 53.91704158000016, + 31.25603185200015 + ], + [ + 53.698009542000136, + 31.356385529000136 + ], + [ + 53.557945593000056, + 31.505535461000193 + ], + [ + 53.50684749900006, + 31.656060528000182 + ], + [ + 53.4064175470001, + 31.691549171000133 + ], + [ + 53.248100495000074, + 31.617214598000032 + ], + [ + 53.20162552400012, + 31.646588643000143 + ], + [ + 53.157504527000185, + 31.769789711000044 + ], + [ + 53.17775352800004, + 31.872806319000176 + ], + [ + 53.14836154700009, + 32.10796044500012 + ], + [ + 53.109928509000156, + 32.19791955600016 + ], + [ + 52.88863754800013, + 32.41471362600015 + ], + [ + 52.78013951100007, + 32.46685912200007 + ], + [ + 52.6684535010001, + 32.5655538530001 + ], + [ + 52.53198656100017, + 32.61295737100011 + ], + [ + 52.37526659700018, + 32.71983803600011 + ], + [ + 52.32661853400015, + 32.96815543900004 + ], + [ + 52.24380449200004, + 33.27106853500004 + ], + [ + 51.94186051200012, + 33.50563056300018 + ], + [ + 51.5423734740001, + 33.70915071600007 + ], + [ + 51.18568460200015, + 34.00042839000014 + ], + [ + 50.98878062000006, + 34.207560640000054 + ], + [ + 50.84041556900007, + 34.416054950000046 + ], + [ + 50.97992363100008, + 34.560693239000045 + ], + [ + 51.11978557600014, + 34.62654432000005 + ], + [ + 51.25173148400006, + 34.59401314800016 + ], + [ + 51.37668956700014, + 34.52618594900008 + ], + [ + 51.48423759900004, + 34.350909625000156 + ], + [ + 51.4492414770001, + 34.3179248240001 + ], + [ + 51.43485662300003, + 34.06172474500005 + ], + [ + 51.57265863100014, + 34.07040353500014 + ], + [ + 51.771591536000074, + 33.94732584800005 + ], + [ + 51.82381448100011, + 33.88489961200003 + ], + [ + 52.128684584000155, + 33.7388887030001 + ], + [ + 52.22972457100008, + 33.62341004900003 + ], + [ + 52.29809961100011, + 33.57837123400003 + ], + [ + 52.293601547000094, + 33.44547029100005 + ], + [ + 52.42111259000018, + 33.2209898480001 + ], + [ + 52.52121346900003, + 32.8971707770001 + ], + [ + 52.614963547000116, + 32.87055940800013 + ], + [ + 52.72535757100013, + 32.97823400700008 + ], + [ + 52.77768361300008, + 32.97875603100016 + ], + [ + 52.942707529000074, + 32.900603501000035 + ], + [ + 53.149871630000064, + 32.85050302200011 + ], + [ + 53.19520951200019, + 32.78300305300013 + ], + [ + 53.16175063100013, + 32.730667789999984 + ], + [ + 53.005386563000116, + 32.709676487000024 + ], + [ + 52.93972759500008, + 32.66237103800006 + ], + [ + 53.07776262000016, + 32.622658082999976 + ], + [ + 53.203762574000166, + 32.45477040600014 + ], + [ + 53.27268562300014, + 32.31156408200019 + ], + [ + 53.37840254400015, + 32.19002782700011 + ], + [ + 53.53008247000008, + 31.852408957000193 + ], + [ + 53.65326359000011, + 31.704638687000113 + ], + [ + 53.75216250400007, + 31.65227945200013 + ], + [ + 54.079097631000195, + 31.55857279200012 + ], + [ + 54.15592163000019, + 31.56721134900016 + ], + [ + 54.40324762100016, + 31.398706094000147 + ], + [ + 54.4575725790001, + 31.15032448600016 + ], + [ + 54.4363554680001, + 31.02050322300005 + ], + [ + 54.69030752000003, + 30.786747533000153 + ], + [ + 54.95351453500018, + 30.643172572000026 + ], + [ + 55.271041480000065, + 30.554115689000184 + ], + [ + 55.457569503, + 30.478324341000075 + ], + [ + 55.58570449600006, + 30.35757078800009 + ], + [ + 55.43330355800015, + 30.262083309000047 + ], + [ + 55.440830507000044, + 30.214689179000118 + ], + [ + 55.74175256600006, + 30.03247867300007 + ], + [ + 55.79777955399999, + 29.971745918000067 + ], + [ + 55.96296356400012, + 29.907733323000116 + ], + [ + 56.59469252000014, + 29.707385887999976 + ], + [ + 57.01417961700014, + 29.639541758000178 + ], + [ + 57.20525750500008, + 29.577302103000193 + ], + [ + 57.418746591000115, + 29.484404632000064 + ], + [ + 57.39907459900013, + 29.566987501000142 + ], + [ + 57.173557482000035, + 29.780795267000087 + ], + [ + 57.084091562000026, + 29.958982458000037 + ], + [ + 57.03145958100009, + 30.140465917000085 + ], + [ + 56.676952518000064, + 30.334717529000045 + ], + [ + 56.46890261600004, + 30.386200855000084 + ], + [ + 56.21640348300019, + 30.48441815300015 + ], + [ + 55.948860508999985, + 30.64867914700011 + ], + [ + 55.86619952100011, + 30.725706658000092 + ], + [ + 55.759586574000025, + 30.889866568000173 + ], + [ + 55.55487853800014, + 31.061391823000122 + ], + [ + 55.382507549000024, + 31.131992090000153 + ], + [ + 55.12430151200016, + 31.273172509000062 + ], + [ + 54.88380057000012, + 31.423795141000085 + ], + [ + 54.771770566999976, + 31.363276292000023 + ], + [ + 54.769485492, + 31.444656357000042 + ], + [ + 54.85494955700011, + 31.55537291600018 + ], + [ + 54.91532155500005, + 31.55874277700002 + ], + [ + 55.07006456400018, + 31.458182905000115 + ], + [ + 55.17758560600015, + 31.409798872000124 + ], + [ + 55.51365650600002, + 31.29410882700006 + ], + [ + 55.8013306310001, + 31.05390795700015 + ], + [ + 56.123245502000145, + 30.72013571000008 + ], + [ + 56.46822753800018, + 30.48536011100009 + ], + [ + 56.79432648699998, + 30.33392862500017 + ], + [ + 57.049240615000144, + 30.177403288000164 + ], + [ + 57.313133605000075, + 29.93418560400005 + ], + [ + 57.48991347500004, + 29.753458192000153 + ], + [ + 57.378013559000124, + 29.981268765000095 + ], + [ + 57.18988760900004, + 30.17498142100004 + ], + [ + 57.10389749700005, + 30.394854332000136 + ], + [ + 56.97034058700018, + 30.575357779000058 + ], + [ + 56.74601755600014, + 30.71425496700016 + ], + [ + 56.627956605, + 30.76223516000016 + ], + [ + 56.315978481000116, + 30.94109206600018 + ], + [ + 56.209121621000065, + 31.01544725900004 + ], + [ + 56.148090469000124, + 31.116782792000095 + ], + [ + 56.219135480000034, + 31.189065307000078 + ], + [ + 56.377033605000065, + 31.20183480100019 + ], + [ + 56.41687061099998, + 31.254018184000188 + ], + [ + 56.20915950700015, + 31.42804024000003 + ], + [ + 56.128204571000026, + 31.52560777200017 + ], + [ + 56.14954757900006, + 31.63495422600016 + ], + [ + 55.90189754400012, + 32.03600281200005 + ], + [ + 55.88537949500005, + 32.13161065500009 + ], + [ + 55.986801529000104, + 32.13835557300007 + ], + [ + 56.160800618999986, + 31.88381092000003 + ], + [ + 56.25843856000017, + 31.762478680000015 + ], + [ + 56.360015492, + 31.715567515000032 + ], + [ + 56.511432561000106, + 31.60066335700003 + ], + [ + 56.48338352800005, + 31.542046193000033 + ], + [ + 56.515888548000135, + 31.42310614900009 + ], + [ + 56.66289858100009, + 31.529873658000156 + ], + [ + 56.703449558000045, + 31.421342429000163 + ], + [ + 56.80017051800013, + 31.33580225700007 + ], + [ + 56.850822526000115, + 31.066589441000133 + ], + [ + 56.8160745080001, + 31.030865937000044 + ], + [ + 56.79412448300019, + 30.897619493000093 + ], + [ + 56.874011564000114, + 30.880070134000164 + ], + [ + 57.099540583000135, + 30.97987043800009 + ], + [ + 57.231193628000085, + 30.905851025000118 + ], + [ + 57.17158857300012, + 30.789823189000117 + ], + [ + 57.470470477, + 30.637391741000158 + ], + [ + 57.56786349800018, + 30.509770225000125 + ], + [ + 57.54414757400008, + 30.435109931000113 + ], + [ + 57.62865056900006, + 30.309026493000147 + ], + [ + 57.61601652600018, + 30.217385805000106 + ], + [ + 57.655277528000056, + 30.143944742000087 + ], + [ + 57.82731659400014, + 30.034710774000132 + ], + [ + 57.984458503000155, + 29.843784766000113 + ], + [ + 57.95944556300003, + 29.629590092000115 + ], + [ + 58.211078511000096, + 29.282889430000182 + ], + [ + 58.29456360800003, + 29.06689968800015 + ], + [ + 58.080215545000044, + 29.130778339000017 + ], + [ + 57.94958458900004, + 29.273783666000156 + ], + [ + 57.7045134980001, + 29.4045375 + ], + [ + 57.577938546000155, + 29.37433180300002 + ], + [ + 57.60823057600004, + 29.299633791000133 + ], + [ + 57.884891552000056, + 29.088552826000125 + ], + [ + 58.19894755000013, + 28.80700318900017 + ], + [ + 58.20146547400009, + 28.766107883000075 + ], + [ + 58.352672493, + 28.65343415000018 + ], + [ + 58.334266504000084, + 28.621151417000135 + ], + [ + 58.580234626, + 28.43355403100003 + ], + [ + 58.63796951100011, + 28.278082467000104 + ], + [ + 58.509239571000194, + 28.287205330000063 + ], + [ + 58.28861648000003, + 28.400092467000036 + ], + [ + 58.13540652100011, + 28.499530505000052 + ], + [ + 58.02265550700008, + 28.549684461000084 + ], + [ + 57.89689259300013, + 28.658759173000135 + ], + [ + 57.82831554900008, + 28.778766234000045 + ], + [ + 57.64056360000012, + 28.85281632500005 + ], + [ + 57.46860148000019, + 28.892300789000103 + ], + [ + 57.26602563300003, + 28.985097006000046 + ], + [ + 57.05245960100018, + 29.136613150000073 + ], + [ + 56.87610251400014, + 29.1045092870001 + ], + [ + 56.75713749100015, + 28.929614172000186 + ], + [ + 56.903560623000146, + 28.831045002000167 + ], + [ + 57.13890049200012, + 28.784295943000075 + ], + [ + 57.471584600000085, + 28.668577567000057 + ], + [ + 57.50809851700012, + 28.559660937000046 + ], + [ + 57.467651475000196, + 28.49439172800004 + ], + [ + 57.278469573999985, + 28.339734885000098 + ], + [ + 57.25676748500018, + 28.198391858000036 + ], + [ + 57.147571571000185, + 28.136010549000105 + ], + [ + 56.89897555400012, + 28.04470329300011 + ], + [ + 56.770397495000054, + 27.983771718000185 + ], + [ + 56.62322653000007, + 27.975430048000135 + ], + [ + 56.551094553000155, + 28.0282610160001 + ], + [ + 56.330181616000175, + 27.96123781 + ], + [ + 56.34291858800009, + 28.034022736000054 + ], + [ + 56.516864537000174, + 28.089936401000102 + ], + [ + 56.63793962000011, + 28.18926731800002 + ], + [ + 56.656974587000036, + 28.351247597000167 + ], + [ + 56.525577525000074, + 28.358716376000075 + ], + [ + 56.39770857500008, + 28.420355718000053 + ], + [ + 56.09906052600013, + 28.474466435000124 + ], + [ + 56.03179960900019, + 28.43402911700008 + ], + [ + 56.17282060400004, + 28.23075053000008 + ], + [ + 55.84387951900004, + 28.141326352000192 + ], + [ + 55.82814048400013, + 28.261932216000105 + ], + [ + 55.711269596000136, + 28.322995554000045 + ], + [ + 55.65734847800019, + 28.267164032000096 + ], + [ + 55.45860651200013, + 28.1273126480001 + ], + [ + 55.06527346800004, + 28.213108133000105 + ], + [ + 54.793067474000054, + 28.169513016000167 + ], + [ + 54.601070594000134, + 28.30259852800009 + ], + [ + 54.42016548600009, + 28.483206078000023 + ], + [ + 54.26488855100018, + 28.388149932000033 + ], + [ + 54.12676652100009, + 28.266759019000062 + ], + [ + 53.995239540000114, + 28.25007467300003 + ], + [ + 53.80162059400004, + 28.402457337000158 + ], + [ + 53.67046761400019, + 28.52966529100013 + ], + [ + 53.558158493000064, + 28.606414020000102 + ], + [ + 53.499507467000115, + 28.60972705100005 + ], + [ + 53.41405161700004, + 28.421879548000163 + ], + [ + 53.3369976190001, + 28.459323018000134 + ], + [ + 53.23706454600011, + 28.463862993000134 + ], + [ + 53.26429751700016, + 28.542405784000096 + ], + [ + 53.079257616, + 28.608199030000037 + ], + [ + 52.95085960000017, + 28.568899806 + ], + [ + 52.898803623000106, + 28.489582024000185 + ], + [ + 52.922904612000195, + 28.4467786620001 + ], + [ + 52.76510958500012, + 28.386439018000033 + ], + [ + 52.56260246900007, + 28.46001519600003 + ], + [ + 52.523185563000084, + 28.533627249000176 + ], + [ + 52.41608462200014, + 28.60275716300015 + ], + [ + 52.230606515000034, + 28.490758843000094 + ], + [ + 52.16103353400007, + 28.51578569800006 + ], + [ + 52.024467520000144, + 28.652118191000113 + ], + [ + 51.864578526000116, + 28.851056293000056 + ], + [ + 51.5709954940001, + 28.90941814400003 + ], + [ + 51.408203512, + 29.035543994000136 + ], + [ + 51.23962047200007, + 29.217103896000026 + ], + [ + 51.039447548000055, + 29.39860780600003 + ], + [ + 50.94904754900011, + 29.784327233000113 + ], + [ + 50.84638247900011, + 30.064443564000157 + ], + [ + 50.792869559, + 30.071754259999977 + ], + [ + 50.27269350900019, + 30.42777224499997 + ], + [ + 49.60490761699998, + 30.89361244000014 + ], + [ + 49.55411546300013, + 30.943117972000152 + ], + [ + 49.40896956600005, + 30.82542314300008 + ], + [ + 49.20521958200004, + 30.737116273000083 + ], + [ + 48.766220587000134, + 30.56258644100012 + ], + [ + 48.64350147800019, + 30.529643717000056 + ], + [ + 48.530544604000056, + 30.533889318999968 + ], + [ + 48.470813486000054, + 30.574886883000033 + ], + [ + 48.52016059900018, + 30.701982352000186 + ], + [ + 48.72268649100016, + 30.85132624100015 + ], + [ + 48.7851755910001, + 30.92361345100005 + ], + [ + 48.808559592, + 31.070148565000068 + ], + [ + 48.92424762600018, + 31.273260351000033 + ], + [ + 49.02650449800018, + 31.399660122 + ], + [ + 49.24338154900016, + 31.247119207000026 + ], + [ + 49.11918655400018, + 31.41480169500005 + ], + [ + 48.98718247500011, + 31.622524534000092 + ], + [ + 48.731708604000175, + 31.91989065400014 + ], + [ + 48.23246350700009, + 32.20972630500012 + ], + [ + 47.95576062200007, + 32.205270318000146 + ], + [ + 47.68506957400001, + 32.350594582000156 + ], + [ + 47.531566584000075, + 32.48529428000006 + ], + [ + 46.939208601000075, + 32.638923502000125 + ], + [ + 46.44161256000001, + 32.87855926400016 + ], + [ + 45.94863846800007, + 33.305399301000136 + ], + [ + 45.70314459400009, + 33.62871981700005 + ], + [ + 45.770076604999986, + 34.499781613000096 + ], + [ + 45.7143366140001, + 34.54478271000016 + ], + [ + 45.49341160600011, + 34.80428576200018 + ], + [ + 45.31828649200014, + 34.91580581000011 + ], + [ + 45.17169153100019, + 34.98352219999998 + ], + [ + 45.09349860000009, + 35.06185510900019 + ], + [ + 44.78865850500006, + 35.24787753600003 + ], + [ + 44.76898148400011, + 35.239374598000154 + ], + [ + 44.31307552100003, + 35.49017337900017 + ], + [ + 43.954311624000184, + 35.63276011400012 + ], + [ + 43.44662846500006, + 35.689540634000025 + ], + [ + 42.73101862000004, + 35.66888427200013 + ], + [ + 42.31426251400012, + 35.629697031000035 + ], + [ + 41.771621455, + 35.51140993700011 + ], + [ + 41.239730522000116, + 35.34456714800018 + ], + [ + 41.206069469000056, + 35.228530092000085 + ], + [ + 41.050262462000035, + 35.27583470400009 + ], + [ + 40.97043958600011, + 35.250857303000146 + ], + [ + 40.947250548000056, + 35.35742163499998 + ], + [ + 40.97394959200011, + 35.52532976300006 + ], + [ + 40.88205359099999, + 35.50306307000005 + ], + [ + 40.84244155400012, + 35.42707994400007 + ], + [ + 40.75513850100015, + 35.354782006000164 + ], + [ + 40.744098528000166, + 35.23673882500009 + ], + [ + 40.59429950200007, + 35.145485883 + ], + [ + 40.618720512000095, + 35.06888903500004 + ], + [ + 40.56284356000015, + 34.98326320000007 + ], + [ + 40.353885564000166, + 35.051799340000116 + ], + [ + 40.168117611000184, + 35.027806142000145 + ], + [ + 40.04719155800012, + 34.96520858000014 + ], + [ + 39.854122465000046, + 35.02154620100009 + ], + [ + 39.62892151400018, + 34.98207229900004 + ], + [ + 39.38958750000006, + 35.02342710000005 + ], + [ + 39.359134537000045, + 34.97248658700005 + ], + [ + 39.40836749000016, + 34.91456595900013 + ], + [ + 39.615467553000144, + 34.89118246100014 + ], + [ + 39.57950550100003, + 34.810697583000035 + ], + [ + 39.20062654500009, + 34.59664221600008 + ], + [ + 38.97783254100017, + 34.521204249000164 + ], + [ + 38.83581946400011, + 34.493731891000095 + ], + [ + 38.7567864990001, + 34.52961599200006 + ], + [ + 38.64122754700014, + 34.49153801100016 + ], + [ + 38.54060347000012, + 34.505724550000025 + ], + [ + 38.497852579000096, + 34.56624306400016 + ], + [ + 38.395774576000065, + 34.549981502000094 + ], + [ + 38.252841502000024, + 34.35854252100006 + ], + [ + 38.10207755000005, + 34.32512638800017 + ], + [ + 38.026996485000154, + 34.23978671100008 + ], + [ + 37.932273603000056, + 34.246652495000035 + ], + [ + 37.85859248300011, + 34.1915129840001 + ], + [ + 37.917007475000105, + 34.10148866100013 + ], + [ + 37.808784532, + 34.06813740400014 + ], + [ + 37.617954581000106, + 34.10738935300009 + ], + [ + 37.39382550700003, + 33.944175091000034 + ], + [ + 37.20812947100006, + 33.84291667100007 + ], + [ + 37.14379853200006, + 33.77573772900007 + ], + [ + 37.037799475000156, + 33.572523683000156 + ], + [ + 36.84952952500004, + 33.62084619300015 + ], + [ + 36.76150546000008, + 33.527941681000016 + ], + [ + 36.80786861600012, + 33.34256432500018 + ], + [ + 36.80929957400019, + 33.20605229100005 + ], + [ + 36.93556959300008, + 33.08515993400016 + ], + [ + 36.98505752300008, + 32.97076439000017 + ], + [ + 37.14597346800008, + 32.90378845700013 + ], + [ + 37.119106618000046, + 32.85468006000008 + ], + [ + 37.16930751300009, + 32.77030866000001 + ], + [ + 37.097164472000145, + 32.65188527700013 + ], + [ + 37.18273548900004, + 32.626468999 + ], + [ + 37.22771154200018, + 32.540355779000095 + ], + [ + 37.228668325, + 32.344215195000174 + ], + [ + 37.16178245000003, + 32.240542088000154 + ], + [ + 36.99958420200005, + 32.120147513 + ], + [ + 36.80059872300018, + 32.09506530900006 + ], + [ + 36.698597763000066, + 31.99139220300009 + ], + [ + 36.683548441000084, + 31.772340961000054 + ], + [ + 36.71531923200007, + 31.556634013000178 + ], + [ + 36.75879505100005, + 31.40614079300002 + ], + [ + 36.743745729000125, + 31.310828421000167 + ], + [ + 36.67351556000011, + 31.183745258000158 + ], + [ + 36.5464323970001, + 31.090105033000157 + ], + [ + 36.42436567400017, + 31.075055711 + ], + [ + 36.314003980000166, + 31.10181006100015 + ], + [ + 36.24210166400013, + 31.238926105000132 + ], + [ + 36.112406698000086, + 31.256793684000115 + ], + [ + 36.04960400600015, + 31.12374736400011 + ], + [ + 35.974240819000045, + 30.753856206000023 + ], + [ + 35.86092624200006, + 30.629030306000175 + ], + [ + 35.82450369800006, + 30.538648441000134 + ], + [ + 35.74464390100019, + 30.097351113 + ], + [ + 35.65597074600015, + 29.94716433100018 + ], + [ + 35.66473304900012, + 29.79639722900015 + ], + [ + 35.601921491000155, + 29.77935083600005 + ], + [ + 35.54445481300013, + 29.886729889000094 + ], + [ + 35.3941780990001, + 29.805161379000026 + ], + [ + 35.32564975899999, + 29.814963989000148 + ], + [ + 35.20127352000014, + 29.729438463000065 + ], + [ + 35.21988948600017, + 29.68851931 + ], + [ + 35.15315979000019, + 29.576193986000078 + ], + [ + 35.07896572200008, + 29.547685477000186 + ], + [ + 35.09560318000018, + 29.717297615000064 + ], + [ + 35.2147633510001, + 29.9353832110001 + ], + [ + 35.21413382500009, + 30.008767890000115 + ], + [ + 35.25847040200006, + 30.172174706000078 + ], + [ + 35.325469895000026, + 30.33944860700018 + ], + [ + 35.48896664200009, + 30.60780630500011 + ], + [ + 35.432938879000176, + 30.728315458999987 + ], + [ + 35.490675354000075, + 30.85449034200019 + ], + [ + 35.48716799800013, + 30.87544454600004 + ], + [ + 35.53420254100001, + 30.943972886000154 + ], + [ + 35.64113193300011, + 30.915014716000087 + ], + [ + 35.718833357000165, + 30.887405529000034 + ], + [ + 35.72225078100013, + 30.923738140000182 + ], + [ + 35.64717623200005, + 30.952896835000047 + ], + [ + 35.537106154000014, + 30.984855304000064 + ], + [ + 35.612353627000175, + 31.408202926000058 + ], + [ + 35.77108396799997, + 31.384550756000067 + ], + [ + 35.88709651200003, + 31.36692404400003 + ], + [ + 35.8725274950001, + 31.405594892000067 + ], + [ + 35.78943013800006, + 31.41296933300015 + ], + [ + 35.645448679000026, + 31.42511018100015 + ], + [ + 35.77836847700007, + 31.501372690000096 + ], + [ + 35.788710680000065, + 31.532039572000144 + ], + [ + 35.64706745800015, + 31.44777309699998 + ], + [ + 35.60794694900005, + 31.47079574100013 + ], + [ + 35.61289322000016, + 31.618104692000145 + ], + [ + 35.617120034000095, + 31.638249506000136 + ], + [ + 35.62701257700019, + 31.756960016000107 + ], + [ + 35.59391752500011, + 31.8638894070001 + ], + [ + 35.65147413600005, + 31.87576045800006 + ], + [ + 35.69491139100006, + 31.895005950000098 + ], + [ + 35.692483222000135, + 31.89878310199998 + ], + [ + 35.64535874500007, + 31.905797814000096 + ], + [ + 35.592748407000045, + 31.90687700100011 + ], + [ + 35.60506911900018, + 32.09861246100007 + ], + [ + 35.647876849000056, + 32.09186754600006 + ], + [ + 35.67449678100007, + 32.08035622299997 + ], + [ + 35.68079203500014, + 32.10805534200006 + ], + [ + 35.686997357000166, + 32.15428049600007 + ], + [ + 35.679532984000105, + 32.18665608900017 + ], + [ + 35.638973560000125, + 32.20185463200016 + ], + [ + 35.66163647500002, + 32.35069243099997 + ], + [ + 35.558955081000136, + 32.4263314050001 + ], + [ + 35.56991670200017, + 32.19547743500016 + ], + [ + 35.51340856000019, + 32.02000846400006 + ], + [ + 35.45782061600016, + 32.027126040999974 + ], + [ + 35.38146248400005, + 31.89906916800004 + ], + [ + 35.36573753000016, + 31.703886830000158 + ], + [ + 35.26926853000015, + 31.45954898800011 + ], + [ + 35.1881214820001, + 31.380142693000096 + ], + [ + 35.052486530000124, + 31.343213871000103 + ], + [ + 34.914535491000095, + 31.40079503100003 + ], + [ + 34.90927852900012, + 31.511409164000042 + ], + [ + 34.738334475000045, + 31.49965455000006 + ], + [ + 34.68021754400013, + 31.55462072400013 + ], + [ + 34.51485851900003, + 31.552412764000053 + ], + [ + 34.41976951600009, + 31.403374981000184 + ], + [ + 34.275440519000085, + 31.293948565000107 + ], + [ + 34.23045752700017, + 31.328554593000092 + ], + [ + 34.38136648500006, + 31.469527643000163 + ], + [ + 34.206108601000096, + 31.311986085000058 + ], + [ + 34.10805558900012, + 31.25087614299997 + ], + [ + 33.816383463000136, + 31.148100767000074 + ], + [ + 33.604164571000126, + 31.111712075000014 + ], + [ + 33.484443501000044, + 31.125602565 + ], + [ + 33.41855956300009, + 31.170412052000074 + ], + [ + 33.375274576000095, + 31.109217118000117 + ], + [ + 33.24304955100001, + 31.090046700000016 + ], + [ + 33.161941562000095, + 31.109768144000043 + ], + [ + 33.09971649200003, + 31.17976558600003 + ], + [ + 32.98166258200018, + 31.095602393000092 + ], + [ + 32.86888860100015, + 31.091156799000146 + ], + [ + 32.78694158300004, + 31.04616039600012 + ], + [ + 32.695716470000036, + 31.043768368000087 + ], + [ + 32.766166533000046, + 30.96991290500017 + ], + [ + 32.70004656100008, + 30.838024496000116 + ], + [ + 32.589138559, + 30.734514195000088 + ], + [ + 32.45859946900009, + 30.64749126400011 + ], + [ + 32.36101148500006, + 30.54983773300006 + ], + [ + 32.06691749200013, + 30.496653887000036 + ], + [ + 31.87919655600018, + 30.490396126000178 + ], + [ + 31.735277602000053, + 30.455981205000057 + ], + [ + 31.472469566000143, + 30.283910456000115 + ], + [ + 31.341064458000176, + 30.146254627000133 + ], + [ + 31.24060047500012, + 30.118325455000104 + ], + [ + 31.32231749300007, + 29.984055748 + ], + [ + 31.388719601000105, + 29.815129889000048 + ], + [ + 31.407924552999987, + 29.55867785000015 + ], + [ + 31.339918484000066, + 29.19340590800016 + ], + [ + 31.30157446200019, + 29.065499910000142 + ], + [ + 31.08692548900018, + 28.76371099400012 + ], + [ + 31.004266512000186, + 28.62193143700017 + ], + [ + 30.923658587000034, + 28.367064919000086 + ], + [ + 30.91793056200015, + 28.210903189000078 + ], + [ + 30.940879543000108, + 28.038226428000087 + ], + [ + 31.008460481000157, + 27.745750645999976 + ], + [ + 31.065879535000192, + 27.600750761000086 + ], + [ + 31.15810947199998, + 27.42154366000011 + ], + [ + 31.25197455, + 27.293297021000114 + ], + [ + 31.432350592000148, + 27.137121042000047 + ], + [ + 31.52906451100006, + 26.946759303000135 + ], + [ + 31.595989482000107, + 26.85890203800011 + ], + [ + 31.883068492000064, + 26.564045292 + ], + [ + 32.070106471000145, + 26.35288671100011 + ], + [ + 32.21205551000003, + 26.235469994000027 + ], + [ + 32.35992232400014, + 26.186309153000025 + ], + [ + 32.76624093600009, + 26.243015886000137 + ], + [ + 32.852384014000165, + 26.164703997000117 + ], + [ + 32.905006557000036, + 25.96067768000006 + ], + [ + 32.89614856200012, + 25.78237481800005 + ], + [ + 32.78305456000004, + 25.615670666000142 + ], + [ + 32.684635594000156, + 25.52489901300015 + ], + [ + 32.670692465000116, + 25.46317568300003 + ], + [ + 32.69894752600004, + 25.354062079000073 + ], + [ + 32.937061469000184, + 25.172755479000045 + ], + [ + 32.9918214490001, + 25.062235727000086 + ], + [ + 33.056846577000044, + 24.741370270000175 + ], + [ + 33.07578649300007, + 24.52103518100006 + ], + [ + 33.04243054199998, + 24.09261632800019 + ], + [ + 32.97653151600019, + 23.73161530200008 + ], + [ + 32.91912050900004, + 23.621716816 + ], + [ + 32.840381581000145, + 23.54298392300018 + ], + [ + 32.705875504000176, + 23.56922749500012 + ], + [ + 32.67174959100004, + 23.659639061000064 + ], + [ + 32.68737748200016, + 23.87530006500009 + ], + [ + 32.741825487000085, + 24.240925723000032 + ], + [ + 32.75418057999997, + 24.41104935600015 + ], + [ + 32.74706652300017, + 24.605760800000155 + ], + [ + 32.70052751399999, + 24.810585009000135 + ], + [ + 32.639419584000166, + 24.89824680800018 + ], + [ + 32.38985059700008, + 25.183664023 + ], + [ + 32.338195609000024, + 25.3272681520001 + ], + [ + 32.32702655600002, + 25.529256597000142 + ], + [ + 32.35258851100019, + 25.644022453 + ], + [ + 32.44490059000009, + 25.754111208000097 + ], + [ + 32.487010601, + 25.860357195000176 + ], + [ + 32.20586061300003, + 25.88913008900016 + ], + [ + 32.09628650700017, + 25.93292687500019 + ], + [ + 31.81978445300018, + 26.132942889000162 + ], + [ + 31.694143580000116, + 26.261188858000082 + ], + [ + 31.43159253300007, + 26.641951730000187 + ], + [ + 31.364534457000104, + 26.72209814700011 + ], + [ + 31.185312603000057, + 26.886898936000023 + ], + [ + 31.005721789000063, + 27.08526900900017 + ], + [ + 30.78033659300013, + 27.38248918800008 + ], + [ + 30.687206122000077, + 27.653847106000114 + ], + [ + 30.635776591000138, + 27.905840973000068 + ], + [ + 30.60296244500006, + 28.22842874300011 + ], + [ + 30.61238253099998, + 28.368609871000046 + ], + [ + 30.667577531, + 28.63636406900008 + ], + [ + 30.76326148200019, + 28.895254571000066 + ], + [ + 30.998243612000124, + 29.28316938600011 + ], + [ + 31.05274056700017, + 29.40310453000012 + ], + [ + 31.11068550200008, + 29.59879917000012 + ], + [ + 31.121974584000156, + 29.707354875000192 + ], + [ + 31.093261537000046, + 29.868819834000135 + ], + [ + 31.036010456000156, + 30.018079402000183 + ], + [ + 30.82813054000019, + 30.3625357250001 + ], + [ + 30.76285948600014, + 30.601430024000024 + ], + [ + 30.60758758000003, + 30.741907033000132 + ], + [ + 30.51886144600013, + 30.741907033000132 + ], + [ + 30.437530499000047, + 30.808450460000074 + ], + [ + 30.28965361000013, + 30.823237143000085 + ], + [ + 30.178745608000042, + 30.778875585000037 + ], + [ + 30.082624457000122, + 30.815842460000113 + ], + [ + 30.119594517000166, + 30.89717357500018 + ], + [ + 30.110202595000032, + 30.97073483400004 + ], + [ + 29.934379603000025, + 30.880143225000097 + ], + [ + 29.62202848300018, + 30.76880908700008 + ], + [ + 29.229278484000133, + 30.779865655000094 + ], + [ + 29.10902952200007, + 30.81632928100015 + ], + [ + 28.99999956900001, + 30.83046385200015 + ], + [ + 28.710399450000125, + 31.001296762000095 + ], + [ + 28.424119570000073, + 31.087475970000128 + ], + [ + 28.319919605000166, + 31.06529644800014 + ], + [ + 28.157089569000163, + 31.091715537000027 + ], + [ + 27.951160457000128, + 31.09037476700007 + ], + [ + 27.90103952600009, + 31.11048312100013 + ], + [ + 27.87018959599999, + 31.231570944000055 + ], + [ + 27.73027953800016, + 31.183881435000103 + ], + [ + 27.44342952100004, + 31.214399442 + ], + [ + 27.392000510000173, + 31.25406009300019 + ], + [ + 27.344499595000173, + 31.368106112000135 + ], + [ + 27.25869958400017, + 31.35291659500018 + ], + [ + 27.08426044400011, + 31.380205724000064 + ], + [ + 26.97759050000019, + 31.438703697000108 + ], + [ + 26.832359443000144, + 31.439083733000132 + ], + [ + 26.739910571000053, + 31.478501309000137 + ], + [ + 26.515720477000116, + 31.48922193100003 + ], + [ + 26.337810559000104, + 31.52160977200009 + ], + [ + 26.08893944800019, + 31.592148684000108 + ], + [ + 25.915769496000166, + 31.62185649600002 + ], + [ + 25.823640478000073, + 31.610496838000188 + ], + [ + 25.506090567000058, + 31.513589129000025 + ], + [ + 25.385139536000054, + 31.497739621000107 + ], + [ + 25.190450556000144, + 31.522260040000106 + ], + [ + 25.11146955900017, + 31.747363259000053 + ], + [ + 25.036260586000026, + 31.83790021800013 + ], + [ + 25.001579456000172, + 31.956625351000127 + ], + [ + 24.667699586000026, + 32.02533332000007 + ], + [ + 24.599090523000086, + 31.993634303000192 + ], + [ + 24.289140484000086, + 31.992005196000093 + ], + [ + 24.08577958700016, + 32.02033250900013 + ], + [ + 24.00573945200017, + 32.097150807000105 + ], + [ + 23.669330595000076, + 32.18641891400017 + ], + [ + 23.426849512000103, + 32.178828263000185 + ], + [ + 23.37138947600016, + 32.21040909500016 + ], + [ + 23.260309477000135, + 32.20822728500008 + ], + [ + 23.170919497000057, + 32.30583823600017 + ], + [ + 22.99945258000014, + 32.29422259500018 + ], + [ + 22.851409562000185, + 32.2341434600001 + ], + [ + 22.648586448000117, + 32.17984314400019 + ], + [ + 22.592840589000105, + 32.186506924000184 + ], + [ + 22.14583251900018, + 32.17111858800007 + ], + [ + 22.027221548000057, + 32.217512087000046 + ], + [ + 21.98685044700005, + 32.17995730500013 + ], + [ + 21.561239532000172, + 32.15894990900017 + ], + [ + 21.39232054500019, + 32.11945019000018 + ], + [ + 21.0585305300001, + 31.98376444400003 + ], + [ + 20.880340488000172, + 31.885027637000064 + ], + [ + 20.775770546000103, + 31.789210916000116 + ], + [ + 20.596679450000067, + 31.580147978000184 + ], + [ + 20.510520526000107, + 31.458832 + ], + [ + 20.464603455000145, + 31.337246290999985 + ], + [ + 20.129329505999976, + 30.982245367000075 + ], + [ + 20.055870507000066, + 30.845964338000158 + ], + [ + 19.90522054900009, + 30.65331903400005 + ], + [ + 19.772710539000173, + 30.52336466600019 + ], + [ + 19.608100522000086, + 30.409799768000028 + ], + [ + 19.579160492000085, + 30.418388704000108 + ], + [ + 19.376480541000035, + 30.312832548000188 + ], + [ + 19.183700456000054, + 30.26421516200014 + ], + [ + 18.95350053800007, + 30.282023522000088 + ], + [ + 18.791009465000116, + 30.3800599380001 + ], + [ + 18.673259484000084, + 30.40536004200004 + ], + [ + 18.51576955800016, + 30.532874438000135 + ], + [ + 18.408819491000088, + 30.592313363000187 + ], + [ + 18.180049525000072, + 30.785656377000123 + ], + [ + 17.90440946500013, + 30.855113856000116 + ], + [ + 17.847019580000165, + 30.924590613000078 + ], + [ + 17.731199448000098, + 30.938901036000118 + ], + [ + 17.457550593000178, + 31.028778005000106 + ], + [ + 17.390069567000182, + 31.079234045000078 + ], + [ + 17.302219510000043, + 31.08475587500004 + ], + [ + 17.017309568000144, + 31.163582310000038 + ], + [ + 16.75168051900016, + 31.21882123100005 + ], + [ + 16.363800573000105, + 31.221540990999983 + ], + [ + 16.165670486000124, + 31.25152523800017 + ], + [ + 15.909848431000114, + 31.23885666200016 + ], + [ + 15.148359568000103, + 31.285859860000073 + ], + [ + 14.907729544, + 31.357156497000176 + ], + [ + 14.749609467000084, + 31.48240207900011 + ], + [ + 14.647620480000114, + 31.640965894000033 + ], + [ + 14.448120456000026, + 31.827419821999968 + ], + [ + 14.144579555000064, + 31.893787396 + ], + [ + 13.868229548000102, + 31.90914706600006 + ], + [ + 13.646989549000068, + 31.894377482000152 + ], + [ + 13.324819532999982, + 31.84895008100017 + ], + [ + 12.68764954900007, + 31.78491200600007 + ], + [ + 12.46067046100012, + 31.78228226699997 + ], + [ + 12.079719499000134, + 31.8327483650001 + ], + [ + 11.443240519000028, + 31.821589873000164 + ], + [ + 11.169879499000047, + 31.80769150400016 + ], + [ + 11.028490538000085, + 31.816198968000094 + ], + [ + 10.93490055400008, + 31.846787886000072 + ], + [ + 10.958760480000024, + 31.92300738100016 + ], + [ + 11.110750536000012, + 31.97531481500016 + ], + [ + 11.565580431000058, + 32.08551219999998 + ], + [ + 11.795599468000148, + 32.11970215000002 + ], + [ + 12.020850543000051, + 32.177657311000075 + ], + [ + 12.174019430000158, + 32.24919601700003 + ], + [ + 12.231789518000085, + 32.341092018000154 + ], + [ + 12.169289522000156, + 32.415781648 + ], + [ + 11.89570956700004, + 32.59666496300014 + ], + [ + 11.802650492, + 32.75432906500009 + ], + [ + 11.66444797600002, + 32.770841406000045 + ], + [ + 11.434610055, + 32.71726001300004 + ], + [ + 11.397418913000024, + 32.770762322999985 + ], + [ + 11.40276849900016, + 32.720700199000134 + ], + [ + 11.111120513000174, + 32.77896029300007 + ], + [ + 10.989760446000105, + 32.84633704900011 + ], + [ + 10.828499502000057, + 32.87710517100004 + ], + [ + 10.706910441000048, + 32.86194683500008 + ], + [ + 10.45761051200003, + 32.79657989200018 + ], + [ + 10.256400579000115, + 32.81844894800008 + ], + [ + 10.168290516000127, + 32.88969780700012 + ], + [ + 10.127779436000026, + 32.966114613000116 + ], + [ + 10.027039521000063, + 33.06982943300011 + ], + [ + 9.987594453000042, + 33.14994014300004 + ], + [ + 10.005359561000034, + 33.261424820000116 + ], + [ + 9.908624519, + 33.45712784200009 + ], + [ + 9.892167491000123, + 33.715631436000024 + ], + [ + 9.81078055200004, + 33.9356952870001 + ], + [ + 9.909702432000131, + 33.90996586099999 + ], + [ + 9.97415558, + 33.85618740300015 + ], + [ + 10.090029524000101, + 33.69035211900018 + ], + [ + 10.313329460000148, + 33.65729523400017 + ], + [ + 10.466380497000102, + 33.589784033000115 + ], + [ + 10.661049528000035, + 33.62571389900006 + ], + [ + 10.729156515000057, + 33.60198255199998 + ], + [ + 10.716790525000022, + 33.71370141900013 + ], + [ + 10.492670504000102, + 33.63607376400006 + ], + [ + 10.386219496000024, + 33.683382399000095 + ], + [ + 10.185379540000099, + 33.82862737000005 + ], + [ + 10.04881956200012, + 34.00882403900016 + ], + [ + 10.036227428000075, + 34.07958104800019 + ], + [ + 9.975529541000128, + 34.14484942000007 + ], + [ + 9.974712473000181, + 34.28451657000005 + ], + [ + 10.04012954000018, + 34.49774095499998 + ], + [ + 10.232279473000062, + 34.68808576200013 + ], + [ + 10.202850444000035, + 34.75062230300017 + ], + [ + 10.095620589000077, + 34.68824585600004 + ], + [ + 10.031229467000173, + 34.7779345670001 + ], + [ + 9.969043457000112, + 34.797603038000034 + ], + [ + 9.990845458000024, + 34.61617657600004 + ], + [ + 9.874452506000125, + 34.48162037600014 + ], + [ + 9.704906554000104, + 34.444432217999974 + ], + [ + 9.63502645900013, + 34.407762062000074 + ], + [ + 9.768398464000029, + 34.31452562700014 + ], + [ + 9.792697434000047, + 34.160389971000086 + ], + [ + 9.662645545000089, + 34.04955901700015 + ], + [ + 9.83708997600013, + 34.00325995400016 + ], + [ + 9.825890001000062, + 33.95554006100019 + ], + [ + 9.3911400450001, + 33.86900002100015 + ], + [ + 9.359449938000068, + 33.823819920000176 + ], + [ + 9.193189927, + 33.784810023000034 + ], + [ + 8.999550009000018, + 33.79426986400017 + ], + [ + 8.92538998100008, + 33.74907004800008 + ], + [ + 9.000479923000057, + 33.66614000100003 + ], + [ + 9.068920006000042, + 33.63775995000009 + ], + [ + 9.100600080000106, + 33.56907977500015 + ], + [ + 9.032369988000141, + 33.49056994100016 + ], + [ + 8.934700029000169, + 33.472110023000084 + ], + [ + 8.885000087000037, + 33.424489934000064 + ], + [ + 8.750569942000027, + 33.38337994200015 + ], + [ + 8.675309965000054, + 33.38877002600009 + ], + [ + 8.6088300400001, + 33.34076005200018 + ], + [ + 8.513349945000073, + 33.338100038000164 + ], + [ + 8.266889780000042, + 33.392270007000036 + ], + [ + 8.109879793000061, + 33.562310047000096 + ], + [ + 7.82960003200003, + 33.65658000500002 + ], + [ + 7.719760052000026, + 33.757389984000156 + ], + [ + 7.699379932000113, + 33.84930004200004 + ], + [ + 7.791549795000094, + 33.90470003800016 + ], + [ + 8.100939915000083, + 33.91273992600014 + ], + [ + 8.177160081000125, + 33.99433996700009 + ], + [ + 8.337980020000032, + 34.056159939000054 + ], + [ + 8.532539994000103, + 34.07353997500013 + ], + [ + 8.722049955000045, + 34.04441007800017 + ], + [ + 8.95061997900001, + 34.029419866000126 + ], + [ + 9.159190085999967, + 33.9621497870001 + ], + [ + 9.398150040000075, + 33.96728006500007 + ], + [ + 9.523550009000076, + 33.99188008800019 + ], + [ + 9.65771592800013, + 34.04841548200011 + ], + [ + 9.277276438000172, + 34.11638011800011 + ], + [ + 9.101101573000108, + 34.128468834000046 + ], + [ + 8.927145566000092, + 34.113481321000165 + ], + [ + 8.404247577000035, + 34.16997953900017 + ], + [ + 8.187101467000048, + 34.221156422000035 + ], + [ + 7.788749506000102, + 34.37981310900011 + ], + [ + 7.530343478000077, + 34.45693181500013 + ], + [ + 7.378052510999964, + 34.552968477000036 + ], + [ + 7.184670438000126, + 34.70233650600005 + ], + [ + 6.995542516000057, + 34.77412348300004 + ], + [ + 6.746160444000054, + 34.803171807000126 + ], + [ + 6.4295095760001, + 34.758712852000144 + ], + [ + 5.869099553000069, + 34.72861578400017 + ], + [ + 5.654736570000068, + 34.69485649600006 + ], + [ + 5.45306244700015, + 34.587399491000156 + ], + [ + 5.287847424000063, + 34.51669931100008 + ], + [ + 5.084853487000146, + 34.40502335900004 + ], + [ + 4.452857484000162, + 33.97556498300003 + ], + [ + 4.268428456000038, + 33.85729750200005 + ], + [ + 3.779655542000057, + 33.60152557100014 + ], + [ + 3.335470497000017, + 33.45425989000012 + ], + [ + 3.076121504000071, + 33.389182794000135 + ], + [ + 2.711448534000112, + 33.35585081500011 + ], + [ + 2.452218564000077, + 33.32075293600019 + ], + [ + 2.093610571000056, + 33.20362623300008 + ], + [ + 1.461266551000108, + 33.03468260400018 + ], + [ + 0.774853557000085, + 32.8245179490001 + ], + [ + 0.465192525000077, + 32.7146422620001 + ], + [ + 0.109842578000098, + 32.56634694899998 + ], + [ + -0.061193508999963, + 32.4759985820001 + ], + [ + -0.345391491999976, + 32.37212417000018 + ], + [ + -0.556839583999931, + 32.24859704600016 + ], + [ + -0.706504500999927, + 32.18014824500011 + ], + [ + -1.187412507999966, + 32.09811170900019 + ], + [ + -1.342844508999917, + 32.049014543000055 + ], + [ + -1.463042508999933, + 31.96011540800015 + ], + [ + -1.676035553999895, + 31.87381818200015 + ], + [ + -2.060321506999969, + 31.81903004000003 + ], + [ + -2.1802605069999, + 31.85187871800008 + ], + [ + -2.253921509999941, + 31.94410597200016 + ], + [ + -2.169634432999885, + 32.047324416000095 + ], + [ + -2.172728528999926, + 32.104649761000076 + ], + [ + -2.400829450999936, + 32.095892013000025 + ], + [ + -2.468173516999911, + 32.14062857699997 + ], + [ + -2.281065464999926, + 32.232968484000025 + ], + [ + -2.316203576999897, + 32.279833884000084 + ], + [ + -2.400814530999924, + 32.27057640800007 + ], + [ + -2.570516554999926, + 32.195989539000095 + ], + [ + -2.837061578999965, + 32.222397898999986 + ], + [ + -2.976933581999958, + 32.121750017000124 + ], + [ + -3.148602502999893, + 32.07160058700009 + ], + [ + -3.496732446999943, + 32.031413888000145 + ], + [ + -4.038622486999941, + 31.921416496000063 + ], + [ + -4.455575566999869, + 31.91152802900018 + ], + [ + -4.758570470999871, + 31.79524069000007 + ], + [ + -4.918560550999928, + 31.71233461500003 + ], + [ + -5.331000478999954, + 31.563728333000086 + ], + [ + -5.344182529999955, + 31.52194001900017 + ], + [ + -5.07018850899982, + 31.445562609000092 + ], + [ + -5.031901483999889, + 31.37828492800014 + ], + [ + -5.185692475999929, + 31.208870739000076 + ], + [ + -5.312104483999974, + 31.018737323000153 + ], + [ + -5.414214504999961, + 30.93434999800013 + ], + [ + -5.718324536999944, + 30.856053802000076 + ], + [ + -5.659211499999913, + 30.761876415000074 + ], + [ + -5.792745443999934, + 30.72412767500009 + ], + [ + -6.072030457999972, + 30.69214970900009 + ], + [ + -6.188567577999947, + 30.78738640199998 + ], + [ + -6.303991581999981, + 30.799214943000038 + ], + [ + -6.444241440999974, + 30.785215489000052 + ], + [ + -6.502750477999939, + 30.820645291000176 + ], + [ + -6.473543568999958, + 30.904331050000053 + ], + [ + -6.371013446999939, + 31.055185860999984 + ], + [ + -6.375764477999951, + 31.122354746000156 + ], + [ + -6.634693536999976, + 31.036847431000012 + ], + [ + -6.929509546999952, + 31.027497921000077 + ], + [ + -7.097743563999927, + 30.944019697000044 + ], + [ + -7.101632431999974, + 30.831074725000178 + ], + [ + -6.926692556999967, + 30.7855765810001 + ], + [ + -6.882206443999962, + 30.745646703000148 + ], + [ + -6.963142435999941, + 30.63844065300009 + ], + [ + -7.174567561999936, + 30.533214408 + ], + [ + -7.29799544499997, + 30.424447479000037 + ], + [ + -7.549685557999965, + 30.101940176000028 + ], + [ + -7.699066494999954, + 29.941517254000075 + ], + [ + -7.787343525999916, + 29.87713954400016 + ], + [ + -7.898579427999948, + 29.86659008100014 + ], + [ + -7.995098551999945, + 29.897708902000147 + ], + [ + -8.040434589999848, + 29.767512632000035 + ], + [ + -8.128565439999875, + 29.675677316000076 + ], + [ + -8.261489515999926, + 29.575640977999967 + ], + [ + -8.312313521999954, + 29.50706276 + ], + [ + -8.488694580999947, + 29.407377624 + ], + [ + -8.62833943499993, + 29.35121971100017 + ], + [ + -8.934388535999915, + 29.174096686000155 + ], + [ + -8.973471506999886, + 29.04899057800003 + ], + [ + -9.101002498999947, + 28.97666347100011 + ], + [ + -9.445997442999953, + 28.74426347000019 + ], + [ + -9.565264548999892, + 28.680645160000097 + ], + [ + -9.68228748499996, + 28.530602220000105 + ], + [ + -9.679520450999973, + 28.440734807000183 + ], + [ + -9.500227518999907, + 28.477564554000082 + ], + [ + -9.43693258299993, + 28.432165317000056 + ], + [ + -9.59437858699988, + 28.342270076000148 + ], + [ + -10.029820468999901, + 28.244874037000102 + ], + [ + -10.21296052799994, + 28.23562326600006 + ], + [ + -10.351289589999908, + 28.183255482000163 + ], + [ + -10.555870556999935, + 28.160637251000026 + ], + [ + -10.954790474999982, + 28.078660897000134 + ], + [ + -11.18459946199988, + 27.994403156000033 + ], + [ + -11.444410464999976, + 27.91657752100008 + ], + [ + -12.112959444999944, + 27.810120980000136 + ], + [ + -12.419930555999883, + 27.740704069000174 + ], + [ + -12.675539542999957, + 27.66640805300011 + ], + [ + -12.819749516999877, + 27.549113041000055 + ], + [ + -13.02814056099993, + 27.349130722000098 + ], + [ + -13.100999583999965, + 27.241736414000115 + ], + [ + -13.246760544999972, + 27.112752000000114 + ], + [ + -13.448255462999953, + 27.012326406000113 + ] + ], + [ + [ + 46.057575549000035, + 32.74128330299999 + ], + [ + 46.06426246400008, + 32.78198901000013 + ], + [ + 46.207275502000186, + 32.75039610800002 + ], + [ + 46.34677551600004, + 32.6766155790001 + ], + [ + 46.53521360800005, + 32.506141750000154 + ], + [ + 46.63402954100019, + 32.46337225100012 + ], + [ + 46.94568261500018, + 32.245181923000075 + ], + [ + 47.16080449600008, + 32.21385003400019 + ], + [ + 47.344600522, + 32.24881011399998 + ], + [ + 47.54820248200002, + 32.19633269400015 + ], + [ + 47.67402256000008, + 32.141803553000045 + ], + [ + 47.73856757400017, + 32.03187908300015 + ], + [ + 47.903964484000085, + 31.8100753170001 + ], + [ + 47.9945985060001, + 31.631168288000083 + ], + [ + 48.139587494000125, + 31.46392601700012 + ], + [ + 48.17673458000007, + 31.346576858000105 + ], + [ + 48.06164954100012, + 31.323759809000023 + ], + [ + 47.93653153100007, + 31.151224535000097 + ], + [ + 47.91579051100007, + 30.98899112200013 + ], + [ + 48.035015540000074, + 30.826343811000072 + ], + [ + 48.03317252700009, + 30.592160310000054 + ], + [ + 47.947097590000055, + 30.593427318000067 + ], + [ + 47.76513653000006, + 30.52987254300018 + ], + [ + 47.703113464000126, + 30.540220170000055 + ], + [ + 47.596954481000125, + 30.69006697400016 + ], + [ + 47.50582458600002, + 30.74071311500012 + ], + [ + 47.24415548200005, + 30.847402170000123 + ], + [ + 46.91518757500012, + 30.845695278999983 + ], + [ + 46.720779557000185, + 30.807355783000162 + ], + [ + 46.5199474800001, + 30.794982921000155 + ], + [ + 46.40569359000011, + 30.817139141000155 + ], + [ + 46.26757457800011, + 30.959449440000128 + ], + [ + 46.307136490000175, + 31.045126403999973 + ], + [ + 46.53536247100004, + 31.108073994 + ], + [ + 46.76453057700013, + 31.144758902000092 + ], + [ + 46.901164484000105, + 31.22596395400012 + ], + [ + 47.075523493, + 31.37570279800019 + ], + [ + 47.028266490000135, + 31.436456676999967 + ], + [ + 46.8532255290001, + 31.56375632800018 + ], + [ + 46.71000646400012, + 31.69105732100013 + ], + [ + 46.37583557500011, + 31.882006966000176 + ], + [ + 46.18487955900014, + 31.97748170500006 + ], + [ + 45.89844562000019, + 32.00930863000008 + ], + [ + 45.840518622000104, + 31.996928223000054 + ], + [ + 45.832530501000065, + 31.911272046000022 + ], + [ + 45.75876656800011, + 31.851834797000095 + ], + [ + 45.70089355000016, + 31.944166993000124 + ], + [ + 45.6425365610001, + 32.234406483999976 + ], + [ + 45.56426953400006, + 32.34346895800013 + ], + [ + 45.53244361500015, + 32.45485841600009 + ], + [ + 45.4261704700001, + 32.47747882600015 + ], + [ + 45.25724746100019, + 32.58227239700017 + ], + [ + 45.19063161500003, + 32.65791588800005 + ], + [ + 45.132442599000115, + 32.80806544600017 + ], + [ + 45.108119489000046, + 32.94789319300003 + ], + [ + 45.13442257200006, + 33.077306258000135 + ], + [ + 45.23384854000011, + 33.13302965300005 + ], + [ + 45.28800150200004, + 32.952912948000176 + ], + [ + 45.35369852400004, + 32.825211970000055 + ], + [ + 45.51729550400006, + 32.61214449400006 + ], + [ + 45.80296752900006, + 32.69354383800004 + ], + [ + 46.057575549000035, + 32.74128330299999 + ] + ], + [ + [ + 51.231778923000036, + 15.224453046000122 + ], + [ + 51.12772736400018, + 15.194325758000161 + ], + [ + 50.96566953000013, + 15.20646660500006 + ], + [ + 50.776182375000076, + 15.15556497700004 + ], + [ + 50.653424916, + 15.244148199 + ], + [ + 50.64047467800003, + 15.114555892000055 + ], + [ + 50.427695082000184, + 15.11977196000015 + ], + [ + 50.44783989600006, + 15.040631620000056 + ], + [ + 50.38677592900018, + 15.001601043000164 + ], + [ + 50.30331884300017, + 15.015900264000095 + ], + [ + 50.22076107900011, + 14.963829517000079 + ], + [ + 50.13568521400015, + 14.987391755000033 + ], + [ + 50.08541311100004, + 14.929385483000146 + ], + [ + 49.87038521000011, + 14.832618431000185 + ], + [ + 49.69870463200016, + 14.82974059999998 + ], + [ + 49.520009341000105, + 14.882980465000173 + ], + [ + 49.58790815500015, + 14.792868396000074 + ], + [ + 49.47153588300006, + 14.702216734 + ], + [ + 49.42270269600016, + 14.746823107000125 + ], + [ + 49.46434130600011, + 14.842241176000073 + ], + [ + 49.308039135000115, + 14.842421041000136 + ], + [ + 49.13330086100012, + 14.812923278000142 + ], + [ + 49.24949326900014, + 14.757794836000073 + ], + [ + 49.30992771100006, + 14.682341716999986 + ], + [ + 49.16792476000012, + 14.576221715000145 + ], + [ + 49.020795673000066, + 14.515697343000056 + ], + [ + 48.99273682500018, + 14.446359612000037 + ], + [ + 48.73333336200011, + 14.462559233000036 + ], + [ + 48.588406507, + 14.432779743000026 + ], + [ + 48.49708273600004, + 14.389103156000147 + ], + [ + 48.33428818700003, + 14.271970493000083 + ], + [ + 48.10053861900013, + 14.257164229000182 + ], + [ + 47.97190135200009, + 14.328527869000027 + ], + [ + 47.94856014300018, + 14.471651672000121 + ], + [ + 47.966123521000156, + 14.552443213000174 + ], + [ + 48.092579846000035, + 14.707000942999969 + ], + [ + 48.20849814400003, + 14.773741781000183 + ], + [ + 48.57732909100008, + 14.910736133 + ], + [ + 49.03397693000011, + 15.040705134000063 + ], + [ + 49.30094028200011, + 15.093395269000041 + ], + [ + 49.51521349900014, + 15.156623431000014 + ], + [ + 49.7154360130001, + 15.188237513000104 + ], + [ + 49.85945571700006, + 15.226876945000072 + ], + [ + 50.18964723100004, + 15.247952999000063 + ], + [ + 50.512813394000034, + 15.283079756000063 + ], + [ + 50.83597955800013, + 15.290105107000045 + ], + [ + 50.972973909000075, + 15.318206513000064 + ], + [ + 51.21534853200012, + 15.297130459000073 + ], + [ + 51.231778923000036, + 15.224453046000122 + ] + ], + [ + [ + 28.18138996800019, + 30.344439924000085 + ], + [ + 28.291659964000075, + 30.388610022000023 + ], + [ + 28.40915998100013, + 30.389160085000185 + ], + [ + 28.493709940000087, + 30.353510057000108 + ], + [ + 28.634539995000182, + 30.34636998300016 + ], + [ + 29.0786499890001, + 30.25264005400004 + ], + [ + 29.125529738000182, + 30.180359919000125 + ], + [ + 29.010809957000106, + 30.146380145000023 + ], + [ + 28.75668025000016, + 30.205780019000144 + ], + [ + 28.573800081000172, + 30.158420087000025 + ], + [ + 28.289540155999987, + 30.17255008900014 + ], + [ + 28.237570084000026, + 30.093980233000025 + ], + [ + 28.310000189000107, + 29.95953002100015 + ], + [ + 28.186680072, + 29.858059967000088 + ], + [ + 28.100059942000087, + 29.83987006400008 + ], + [ + 28.030760001000033, + 29.76712998900007 + ], + [ + 27.94771026, + 29.858920001000172 + ], + [ + 27.880469929000185, + 29.7035000030001 + ], + [ + 27.905670003000125, + 29.625289931000054 + ], + [ + 27.80486002400005, + 29.573889988000076 + ], + [ + 27.573007962000133, + 29.567379358000153 + ], + [ + 27.40019369800018, + 29.547599777000016 + ], + [ + 27.497779990000083, + 29.44277007500017 + ], + [ + 27.588900071000126, + 29.3830500200001 + ], + [ + 27.75661999200014, + 29.461670043000026 + ], + [ + 27.850390053000012, + 29.40537005600015 + ], + [ + 27.873729948000175, + 29.318539935000047 + ], + [ + 27.721000239000034, + 29.18142002800016 + ], + [ + 27.64594004500003, + 29.092519912000057 + ], + [ + 27.521789994000187, + 29.00311021800013 + ], + [ + 27.349579979000055, + 28.943589946000145 + ], + [ + 27.163730001000147, + 28.942259939000166 + ], + [ + 26.958789954000167, + 28.911299963000033 + ], + [ + 26.648269962000143, + 28.777530069000136 + ], + [ + 26.611559942000156, + 28.871580002000087 + ], + [ + 26.631400032000045, + 28.9315600380001 + ], + [ + 26.836629985000172, + 28.988699990999976 + ], + [ + 26.606070055000032, + 29.04434007900005 + ], + [ + 26.53692008300004, + 29.039899975000026 + ], + [ + 26.397119921000183, + 28.931990054000153 + ], + [ + 26.31654994900009, + 29.05758998200008 + ], + [ + 26.329789995000112, + 29.12275996600016 + ], + [ + 26.482479924000188, + 29.193280078000043 + ], + [ + 26.587939998000024, + 29.30287996600009 + ], + [ + 26.579360081000175, + 29.389879947000054 + ], + [ + 26.49158015600017, + 29.592020045000083 + ], + [ + 26.54605992000012, + 29.671459968000192 + ], + [ + 26.66982994400007, + 29.76731005700009 + ], + [ + 26.740909975000136, + 29.85396996700007 + ], + [ + 26.923390050000023, + 29.9179500570001 + ], + [ + 27.03638994, + 30.07971997500016 + ], + [ + 27.155550001000165, + 30.17361008200004 + ], + [ + 27.278609961000086, + 30.185970028000042 + ], + [ + 27.40340019600012, + 30.258919919000164 + ], + [ + 27.658239968000146, + 30.321779993 + ], + [ + 27.826110034000067, + 30.375550045000125 + ], + [ + 27.933890053000084, + 30.35805999700017 + ], + [ + 27.983050141000092, + 30.398610069000085 + ], + [ + 28.094720024000083, + 30.389720004000026 + ], + [ + 28.18138996800019, + 30.344439924000085 + ] + ], + [ + [ + 25.961070057000143, + 29.095389918000023 + ], + [ + 25.843243434000044, + 29.111436081000136 + ], + [ + 25.574178617000143, + 29.097674395000126 + ], + [ + 25.307336025000154, + 29.201408947000175 + ], + [ + 25.30590510800016, + 29.23138687100004 + ], + [ + 25.505930125000077, + 29.2448900120001 + ], + [ + 26.00422745800006, + 29.31723612700017 + ], + [ + 26.081935221000037, + 29.302477097000065 + ], + [ + 26.110722151000118, + 29.220468507000135 + ], + [ + 25.961070057000143, + 29.095389918000023 + ] + ], + [ + [ + -12.188429995999911, + 20.93294994600012 + ], + [ + -12.289289964999966, + 20.902939950000075 + ], + [ + -12.27784004199998, + 21.01245006800019 + ], + [ + -12.096939921999933, + 21.22471993900018 + ], + [ + -11.941739948999896, + 21.26501002900011 + ], + [ + -11.968860048999943, + 21.164240007000046 + ], + [ + -12.145110073999945, + 20.99802998500013 + ], + [ + -12.188429995999911, + 20.93294994600012 + ] + ], + [ + [ + 0.975359816000037, + 26.31630993600004 + ], + [ + 0.9919099170001, + 26.394890002000125 + ], + [ + 1.449059822000095, + 26.441760071000147 + ], + [ + 1.517399926000053, + 26.462690077000104 + ], + [ + 1.573869948000038, + 26.406609939000077 + ], + [ + 1.558930077000184, + 26.101260006000132 + ], + [ + 1.525539970000125, + 25.981980076000127 + ], + [ + 1.490589796999984, + 25.968480048000117 + ], + [ + 1.470640046000028, + 26.151370074000056 + ], + [ + 1.411009938000063, + 26.221649919000072 + ], + [ + 1.305849977000094, + 26.264979874000062 + ], + [ + 1.05197989900006, + 26.29187977300012 + ], + [ + 0.975359816000037, + 26.31630993600004 + ] + ], + [ + [ + 1.041390010000043, + 25.942510062000053 + ], + [ + 1.096389913000166, + 25.86249983400006 + ], + [ + 1.076410063000083, + 25.712560042000064 + ], + [ + 1.002670018000174, + 25.650140017000126 + ], + [ + 0.924829940000166, + 25.667200048000097 + ], + [ + 0.835759965000136, + 25.79447005300011 + ], + [ + 0.74348977, + 25.973580051000113 + ], + [ + 0.706650023, + 26.093360054000186 + ], + [ + 0.551059990000169, + 26.087179993000177 + ], + [ + 0.669630032000043, + 26.194970044000115 + ], + [ + 0.822059978000027, + 26.247049952000168 + ], + [ + 0.889970066000103, + 26.136550073000024 + ], + [ + 1.009779993, + 26.06215998700003 + ], + [ + 1.041390010000043, + 25.942510062000053 + ] + ], + [ + [ + -9.79222002199998, + 25.06778006900015 + ], + [ + -9.720830019999937, + 25.010560026000178 + ], + [ + -9.769170030999874, + 24.970279969000103 + ], + [ + -9.926390008999874, + 25.05417002900009 + ], + [ + -9.951740052999924, + 25.10884992800004 + ], + [ + -9.890450076999912, + 25.151609930000063 + ], + [ + -9.79222002199998, + 25.06778006900015 + ] + ], + [ + [ + -11.639709927999888, + 24.45110995700003 + ], + [ + -11.573620062999908, + 24.385829960000024 + ], + [ + -11.402780011999937, + 24.360279958000035 + ], + [ + -11.327219920999937, + 24.290550000000167 + ], + [ + -11.370830099999921, + 24.246669982000185 + ], + [ + -11.58834008499997, + 24.275279916000045 + ], + [ + -11.65021004699986, + 24.306770063999977 + ], + [ + -11.82943991399992, + 24.33694006200011 + ], + [ + -11.743060051999976, + 24.46554993100017 + ], + [ + -11.639709927999888, + 24.45110995700003 + ] + ], + [ + [ + -11.50209998199989, + 23.953939977000175 + ], + [ + -11.622060053999974, + 24.073480065000183 + ], + [ + -11.896479934999888, + 24.151269977000084 + ], + [ + -12.05789006799995, + 24.16463006800018 + ], + [ + -12.082840018999832, + 24.227790081000137 + ], + [ + -12.004909994999934, + 24.283970022000176 + ], + [ + -11.625730069999975, + 24.16440001000018 + ], + [ + -11.372310074999916, + 24.02778000100011 + ], + [ + -11.315530082999942, + 23.95252019999998 + ], + [ + -11.389489975999936, + 23.91276996200014 + ], + [ + -11.50209998199989, + 23.953939977000175 + ] + ], + [ + [ + -12.784719987999893, + 24.18971995400011 + ], + [ + -12.877499936999925, + 24.361940002000097 + ], + [ + -12.829169958999955, + 24.404720071000042 + ], + [ + -12.711399926999889, + 24.301109966000126 + ], + [ + -12.699719945999846, + 24.23361000500006 + ], + [ + -12.784719987999893, + 24.18971995400011 + ] + ], + [ + [ + -12.954500046999954, + 22.6469100490001 + ], + [ + -12.936190097999884, + 22.849910005000027 + ], + [ + -12.869520247999958, + 23.001749933000042 + ], + [ + -12.773079963999976, + 22.944919949999985 + ], + [ + -12.860229913999945, + 22.7555802 + ], + [ + -12.851450037999825, + 22.617179925000073 + ], + [ + -12.954500046999954, + 22.6469100490001 + ] + ], + [ + [ + -15.524930007999899, + 19.039420081000173 + ], + [ + -15.571420049999972, + 18.84961000600009 + ], + [ + -15.683760040999971, + 18.776000040000156 + ], + [ + -15.830960082999923, + 18.729520031999982 + ], + [ + -15.896810032999952, + 18.671399999000187 + ], + [ + -15.823209923999968, + 18.454480033000095 + ], + [ + -15.916179973999931, + 18.28404007500012 + ], + [ + -16.005279872999836, + 18.318899949000183 + ], + [ + -16.04789008299997, + 18.57068999900008 + ], + [ + -16.09277992699998, + 18.666109894999977 + ], + [ + -16.059520073999977, + 18.84186002299998 + ], + [ + -16.016900006999947, + 18.892220040000097 + ], + [ + -16.059520073999977, + 18.996810048000043 + ], + [ + -16.016900006999947, + 19.05879002300003 + ], + [ + -15.920059981999941, + 19.07815996400018 + ], + [ + -15.827089931999922, + 19.039420081000173 + ], + [ + -15.749609814999872, + 19.08590994700006 + ], + [ + -15.625650041999904, + 19.113020014000085 + ], + [ + -15.524930007999899, + 19.039420081000173 + ] + ], + [ + [ + 8.064850013000012, + 34.19664006700003 + ], + [ + 8.106190063000156, + 34.1828599910001 + ], + [ + 8.134509915000137, + 34.071870073000184 + ], + [ + 8.117670084999986, + 34.00986985600008 + ], + [ + 8.022470038000108, + 33.958269955000105 + ], + [ + 7.884319887000117, + 33.94642997200003 + ], + [ + 7.562750066000035, + 34.00570997600016 + ], + [ + 7.197379964000106, + 34.00342998999997 + ], + [ + 7.117310065000083, + 33.992099937000035 + ], + [ + 7.015289948000088, + 33.84398001500011 + ], + [ + 6.925020221000068, + 33.80720997200007 + ], + [ + 6.733470012000055, + 33.81604001300013 + ], + [ + 6.67606004400011, + 33.89686996600011 + ], + [ + 6.465990070000146, + 33.84377002300016 + ], + [ + 6.321569912000143, + 33.84713006800007 + ], + [ + 6.229590150000149, + 33.810549950000166 + ], + [ + 5.958780087000093, + 33.85402001700004 + ], + [ + 5.901940071000183, + 33.95097005500003 + ], + [ + 5.830920063000178, + 34.162260023000044 + ], + [ + 5.838919995000026, + 34.23301001600004 + ], + [ + 5.957130076000055, + 34.38780003900018 + ], + [ + 5.946369975000152, + 34.56958008300012 + ], + [ + 5.980900164000047, + 34.63049989000018 + ], + [ + 6.122929971000076, + 34.65930995800005 + ], + [ + 6.302139948000104, + 34.585940083000025 + ], + [ + 6.473699921000048, + 34.561450073000174 + ], + [ + 6.564589943000101, + 34.520480017000125 + ], + [ + 6.764949951000119, + 34.46785004700001 + ], + [ + 6.9123399180001, + 34.41189998900006 + ], + [ + 7.015730174000055, + 34.20604991800013 + ], + [ + 7.088250049000123, + 34.16560000200013 + ], + [ + 7.19925000000012, + 34.15260990399997 + ], + [ + 7.451389977000076, + 34.165519912000036 + ], + [ + 7.697550029000126, + 34.21061992400007 + ], + [ + 7.865290016000017, + 34.22608996700012 + ], + [ + 8.064850013000012, + 34.19664006700003 + ] + ], + [ + [ + 6.015560080000057, + 33.65082996100017 + ], + [ + 6.02306997200003, + 33.540239784000164 + ], + [ + 5.938790027000039, + 33.42553003600011 + ], + [ + 5.89106995800006, + 33.48498975600006 + ], + [ + 5.912550027000179, + 33.64012002600015 + ], + [ + 6.015560080000057, + 33.65082996100017 + ] + ], + [ + [ + 6.00707010900004, + 33.35061998600008 + ], + [ + 6.066929923000032, + 33.30909001100002 + ], + [ + 6.087520035000125, + 33.182589918000076 + ], + [ + 6.056820040000105, + 33.13614000900003 + ], + [ + 5.910979929000121, + 33.124219760000074 + ], + [ + 5.902300032000028, + 33.28350005200019 + ], + [ + 6.00707010900004, + 33.35061998600008 + ] + ], + [ + [ + -7.555560001999879, + 27.732220182000106 + ], + [ + -7.689440084999887, + 27.665549980000094 + ], + [ + -7.89239004999996, + 27.671300024000175 + ], + [ + -7.881990086999963, + 27.73260003300004 + ], + [ + -7.791909931999953, + 27.802350057000126 + ], + [ + -7.639779922999878, + 27.797570059000066 + ], + [ + -7.555560001999879, + 27.732220182000106 + ] + ], + [ + [ + 18.798610079000127, + 30.201170056000024 + ], + [ + 18.914889925000068, + 30.21118999300012 + ], + [ + 19.15500017000005, + 30.120800043000088 + ], + [ + 19.32995996900013, + 30.091289944000096 + ], + [ + 19.21394996100014, + 30.021029990000045 + ], + [ + 19.357850155999984, + 29.94340008000006 + ], + [ + 19.337179956, + 29.90850007300014 + ], + [ + 19.1666299850001, + 29.920999955000184 + ], + [ + 19.086729946000162, + 29.950739936 + ], + [ + 19.044910066000114, + 30.04552 + ], + [ + 18.809559928999988, + 30.150249944000052 + ], + [ + 18.798610079000127, + 30.201170056000024 + ] + ], + [ + [ + 19.42146007600013, + 29.153609930000073 + ], + [ + 19.242180043000133, + 29.163620009000056 + ], + [ + 19.11748010600013, + 29.19864991900016 + ], + [ + 19.05840023600001, + 29.25148002400016 + ], + [ + 19.132999962000156, + 29.307050231000062 + ], + [ + 19.518010020000077, + 29.302569995000113 + ], + [ + 19.633629967000047, + 29.212479984000026 + ], + [ + 19.553490013000157, + 29.1182100260001 + ], + [ + 19.42146007600013, + 29.153609930000073 + ] + ], + [ + [ + -0.155209917999969, + 28.961959918000048 + ], + [ + -0.136290059999965, + 29.006510220000052 + ], + [ + -0.022020009999949, + 29.030740072000015 + ], + [ + 0.106020082000043, + 29.191799926000158 + ], + [ + 0.212739932000147, + 29.365850053000088 + ], + [ + 0.289040011000168, + 29.33004002300015 + ], + [ + 0.155229985000176, + 29.14314994300014 + ], + [ + 0.185649931, + 29.082640087000186 + ], + [ + 0.125639972000158, + 28.958330034000085 + ], + [ + -0.00344004599998, + 28.845310254000083 + ], + [ + -0.071449936999954, + 28.815579953000167 + ], + [ + -0.139680028999976, + 28.839099917000055 + ], + [ + -0.155209917999969, + 28.961959918000048 + ] + ], + [ + [ + -7.162739937999902, + 27.94320000300013 + ], + [ + -7.070130200999927, + 27.916980069000147 + ], + [ + -7.166209995999964, + 27.81319007100018 + ], + [ + -7.291799889999879, + 27.768169972000123 + ], + [ + -7.45906004699998, + 27.76305007900004 + ], + [ + -7.453889988999947, + 27.81872994800017 + ], + [ + -7.162739937999902, + 27.94320000300013 + ] + ], + [ + [ + 36.385059800000136, + 21.885410181000168 + ], + [ + 36.338419965000185, + 21.825130031000185 + ], + [ + 36.226150030000156, + 21.979849997000088 + ], + [ + 36.308139955, + 22.00974998100014 + ], + [ + 36.385059800000136, + 21.885410181000168 + ] + ], + [ + [ + 36.56048992399997, + 21.86562993700005 + ], + [ + 36.46252002700004, + 21.82048996800006 + ], + [ + 36.45080994600005, + 21.921870076000175 + ], + [ + 36.51877002400005, + 21.944800021000162 + ], + [ + 36.56048992399997, + 21.86562993700005 + ] + ], + [ + [ + 36.41473007800016, + 21.551010088 + ], + [ + 36.34474999600019, + 21.52923008100015 + ], + [ + 36.31800006500015, + 21.602969950000045 + ], + [ + 36.390230035000116, + 21.641279992000136 + ], + [ + 36.41473007800016, + 21.551010088 + ] + ], + [ + [ + 39.526652833000014, + 23.656676414000174 + ], + [ + 39.602465681000126, + 23.66252200800011 + ], + [ + 39.57413703700013, + 23.550016820000053 + ], + [ + 39.47916862900013, + 23.57915485400008 + ], + [ + 39.494187307, + 23.63419336300018 + ], + [ + 39.526652833000014, + 23.656676414000174 + ] + ], + [ + [ + 35.354158268000106, + 28.757541128000128 + ], + [ + 35.49580149000019, + 28.58001495600007 + ], + [ + 35.350021386000094, + 28.511666480000088 + ], + [ + 35.31413843800016, + 28.631636041000036 + ], + [ + 35.23913497800004, + 28.64251783800006 + ], + [ + 35.292464775000155, + 28.730021873 + ], + [ + 35.354158268000106, + 28.757541128000128 + ] + ], + [ + [ + 38.964126893000184, + 24.30751577900014 + ], + [ + 38.91916079100008, + 24.45581398500019 + ], + [ + 38.98580055400015, + 24.42748534000009 + ], + [ + 38.98499116400012, + 24.426675950000117 + ], + [ + 38.97752679100006, + 24.375864255000124 + ], + [ + 38.964126893000184, + 24.30751577900014 + ] + ], + [ + [ + 44.42048659200003, + 32.65512002100007 + ], + [ + 44.471633468000164, + 32.57294669200013 + ], + [ + 44.40098156800019, + 32.51547550200007 + ], + [ + 44.32052250600003, + 32.60586577800018 + ], + [ + 44.213447549000136, + 32.66502977700003 + ], + [ + 44.214717575000066, + 32.72220307400005 + ], + [ + 44.307197459, + 32.74855007800005 + ], + [ + 44.42048659200003, + 32.65512002100007 + ] + ], + [ + [ + 45.460529568000084, + 31.798543495000047 + ], + [ + 45.514457559, + 31.706473820000156 + ], + [ + 45.54404450400011, + 31.589774594000176 + ], + [ + 45.46727750300005, + 31.533614502000034 + ], + [ + 45.37850560400017, + 31.59423158700008 + ], + [ + 45.26357646800005, + 31.71486729100019 + ], + [ + 45.31032552800008, + 31.861568534000185 + ], + [ + 45.460529568000084, + 31.798543495000047 + ] + ], + [ + [ + 45.76369462400015, + 31.026007954000136 + ], + [ + 45.68472653500004, + 30.85746196200006 + ], + [ + 45.61118656600013, + 30.850158139000143 + ], + [ + 45.52980851200016, + 31.022320922000063 + ], + [ + 45.54460156600004, + 31.089131731000123 + ], + [ + 45.63563959499999, + 31.131456319000165 + ], + [ + 45.71913961200016, + 31.10973612600003 + ], + [ + 45.76369462400015, + 31.026007954000136 + ] + ], + [ + [ + 42.133157918999984, + 18.216497493000077 + ], + [ + 42.021821850000094, + 18.27918024000013 + ], + [ + 42.15896846200013, + 18.349777021000023 + ], + [ + 42.19880842800012, + 18.445824615000163 + ], + [ + 42.135046495000154, + 18.56246668400013 + ], + [ + 42.123535173000164, + 18.681896652000148 + ], + [ + 42.071734223000135, + 18.796740077000152 + ], + [ + 42.116340597000146, + 18.887481672000092 + ], + [ + 42.07407246000008, + 18.96572269 + ], + [ + 42.007702493000124, + 18.98748628300018 + ], + [ + 42.05824439200012, + 19.112492048000092 + ], + [ + 41.990525442000035, + 19.145856896000055 + ], + [ + 41.98423018799997, + 19.304137576000073 + ], + [ + 41.83746083000011, + 19.476627544000166 + ], + [ + 41.77405862600017, + 19.679154869000172 + ], + [ + 41.70418130300004, + 19.71566734400011 + ], + [ + 41.665600387000154, + 19.651096021000114 + ], + [ + 41.55417438600011, + 19.78698358200012 + ], + [ + 41.51424448700004, + 19.802361989000076 + ], + [ + 41.47080723200003, + 19.902636398000027 + ], + [ + 41.36252885800013, + 19.88599894000015 + ], + [ + 41.30542190799997, + 19.81369344700005 + ], + [ + 41.27457516200019, + 19.97539155100003 + ], + [ + 41.229698991000134, + 20.01199395800012 + ], + [ + 41.23734322900003, + 20.137449384000035 + ], + [ + 41.16099078700006, + 20.137539317000062 + ], + [ + 41.17304170300008, + 20.287456302000066 + ], + [ + 41.094800685000166, + 20.320821149000153 + ], + [ + 40.94587295400015, + 20.518761930999972 + ], + [ + 40.85000522400014, + 20.508329796000055 + ], + [ + 40.77491183300015, + 20.56246898300003 + ], + [ + 40.587493118000054, + 20.484587694000084 + ], + [ + 40.59100047400017, + 20.59835193200007 + ], + [ + 40.537850541000125, + 20.762478206000083 + ], + [ + 40.58020861, + 20.851780885000153 + ], + [ + 40.545854508000104, + 20.89027186900006 + ], + [ + 40.47085104900003, + 20.804836274000024 + ], + [ + 40.37912020000016, + 20.754474240000036 + ], + [ + 40.320844132000104, + 20.806275189000132 + ], + [ + 40.42111854000018, + 20.879390072000035 + ], + [ + 40.25168626600015, + 20.962487429000078 + ], + [ + 40.22650524900007, + 21.02346146400015 + ], + [ + 40.04834955200005, + 20.94000437800014 + ], + [ + 40.132616027000154, + 21.170860347000144 + ], + [ + 40.111661824, + 21.280038043000047 + ], + [ + 40.22299789300013, + 21.337504722 + ], + [ + 40.22578579100019, + 21.404144486000177 + ], + [ + 40.13810189200012, + 21.488141165 + ], + [ + 40.17549811400005, + 21.572223229000087 + ], + [ + 40.35451015500007, + 21.587825195000107 + ], + [ + 40.295842979000156, + 21.50666719900005 + ], + [ + 40.24458162200011, + 21.372128621000172 + ], + [ + 40.29674230100011, + 21.33309804400011 + ], + [ + 40.266704944000026, + 21.149006821000114 + ], + [ + 40.477955693000126, + 20.957721022000158 + ], + [ + 40.626433763000136, + 20.969142412000167 + ], + [ + 40.65503220400018, + 20.923456852000186 + ], + [ + 40.800002918000075, + 20.825790478000044 + ], + [ + 40.82635305399998, + 20.736487799000145 + ], + [ + 40.900547123000194, + 20.716432917000077 + ], + [ + 40.940566954000076, + 20.59655328800011 + ], + [ + 41.011973124000065, + 20.562289118000137 + ], + [ + 41.01476102200019, + 20.45374094700003 + ], + [ + 41.10900997300007, + 20.39105820100002 + ], + [ + 41.19471536400005, + 20.296719318000157 + ], + [ + 41.22322387300011, + 20.18826107900003 + ], + [ + 41.311717162000036, + 20.071169350000105 + ], + [ + 41.443108113000164, + 20.0226059580001 + ], + [ + 41.52872357200016, + 19.934112670000104 + ], + [ + 41.57162123300009, + 19.82277660000011 + ], + [ + 41.677201642, + 19.83419799000012 + ], + [ + 41.72864286300006, + 19.777091040000187 + ], + [ + 41.8485224910001, + 19.848407278000025 + ], + [ + 41.88278666100007, + 19.6742985300001 + ], + [ + 41.89420805100008, + 19.50864340900017 + ], + [ + 41.96273639100019, + 19.47437923900003 + ], + [ + 42.046643138000036, + 19.320685102000027 + ], + [ + 42.0950266640001, + 19.32581123700004 + ], + [ + 42.12749219000011, + 19.22670594800013 + ], + [ + 42.09079985100004, + 19.191632388000187 + ], + [ + 42.122725783000135, + 18.979212521000022 + ], + [ + 42.17623544600008, + 18.86652746900012 + ], + [ + 42.25420666600007, + 18.903309740000168 + ], + [ + 42.30079154800018, + 18.824978790000102 + ], + [ + 42.27668971700007, + 18.7716489930001 + ], + [ + 42.33001951500012, + 18.616695804000187 + ], + [ + 42.405292770000074, + 18.441687734000084 + ], + [ + 42.36248504100013, + 18.414977869000154 + ], + [ + 42.42750602500007, + 18.354183699000146 + ], + [ + 42.45835277100008, + 18.205795561000116 + ], + [ + 42.61438514600013, + 18.153544950000082 + ], + [ + 42.78885362300008, + 17.980875117000096 + ], + [ + 42.89065687800013, + 18.052820881000173 + ], + [ + 42.970246879, + 17.98609118500019 + ], + [ + 43.05856030400014, + 18.03798206700003 + ], + [ + 43.160183696000104, + 17.921429930000045 + ], + [ + 43.31261878300006, + 17.873406133000174 + ], + [ + 43.22664359500004, + 17.92169972700009 + ], + [ + 43.2025417640001, + 18.057497356000113 + ], + [ + 43.2838396410001, + 18.034204915000146 + ], + [ + 43.32424519300014, + 17.887031113000035 + ], + [ + 43.396705394000094, + 17.846696268000073 + ], + [ + 43.40082535000005, + 17.72478229400008 + ], + [ + 43.43060905700014, + 17.549230247000025 + ], + [ + 43.37075526000001, + 17.46131103199997 + ], + [ + 43.39939344099997, + 17.292059385000016 + ], + [ + 43.45294683800017, + 17.141708936999976 + ], + [ + 43.53342012600007, + 17.019137523000154 + ], + [ + 43.63336737600008, + 16.944964636000122 + ], + [ + 43.66057364800014, + 16.88253340200015 + ], + [ + 43.620007058000056, + 16.774974186000065 + ], + [ + 43.555795464000084, + 16.75500923600015 + ], + [ + 43.40434963100006, + 16.53737330100006 + ], + [ + 43.328806579000116, + 16.620650523000165 + ], + [ + 43.339778308000064, + 16.82083961000012 + ], + [ + 43.279164002000186, + 16.833160322000083 + ], + [ + 43.141118068000026, + 17.03280981600011 + ], + [ + 43.21378328900005, + 17.11959439400016 + ], + [ + 43.18779288200011, + 17.17912951300019 + ], + [ + 43.249126646000036, + 17.257460463000086 + ], + [ + 43.23977369700003, + 17.310160735000125 + ], + [ + 43.10604450800008, + 17.220858056 + ], + [ + 43.06890250800018, + 17.251614870000026 + ], + [ + 42.98418637100019, + 17.415831076000188 + ], + [ + 42.79775691100008, + 17.60432897700008 + ], + [ + 42.74181907999997, + 17.7069416220001 + ], + [ + 42.92141369200016, + 17.754245962000027 + ], + [ + 42.903157455000155, + 17.821874980000132 + ], + [ + 42.80836891100006, + 17.83338630200012 + ], + [ + 42.71250118100011, + 17.88069064100017 + ], + [ + 42.64909897700011, + 17.812522030000082 + ], + [ + 42.55745806000016, + 17.795794640000167 + ], + [ + 42.563843247000136, + 17.95281626900004 + ], + [ + 42.44603205900012, + 17.96234908300005 + ], + [ + 42.37084873600014, + 18.078811288000054 + ], + [ + 42.32921012500009, + 18.026470745000097 + ], + [ + 42.24584297100006, + 18.141404103000127 + ], + [ + 42.133157918999984, + 18.216497493000077 + ] + ], + [ + [ + 43.693333333000055, + 15.66583333300008 + ], + [ + 43.651666667000086, + 15.7375 + ], + [ + 43.80166666700012, + 15.874166667000054 + ], + [ + 43.76666666699998, + 16.0375 + ], + [ + 43.83250000000015, + 16.087500000000148 + ], + [ + 43.89624390000017, + 16.200833333000105 + ], + [ + 43.94252294400019, + 16.085460686000147 + ], + [ + 43.876849820000075, + 15.922705553000014 + ], + [ + 43.80253978000013, + 15.661301335000076 + ], + [ + 43.785407662000125, + 15.487124789000063 + ], + [ + 43.91822449800003, + 15.395799043000181 + ], + [ + 44.04662155700004, + 15.191956311000126 + ], + [ + 44.097335773000054, + 15.155095598000173 + ], + [ + 44.15481086199998, + 15.04653154100015 + ], + [ + 44.18861330300001, + 14.82587767400014 + ], + [ + 44.24693404300007, + 14.610090937000109 + ], + [ + 44.28675921000013, + 14.55529424000008 + ], + [ + 44.39217021800016, + 14.589116206000028 + ], + [ + 44.50923970000002, + 14.687625891000039 + ], + [ + 44.584906559000046, + 14.640512563000073 + ], + [ + 44.52922717200005, + 14.546285908000073 + ], + [ + 44.39077847800013, + 14.498565395000071 + ], + [ + 44.32462233300009, + 14.439984381000045 + ], + [ + 44.36199298000014, + 14.317267258000129 + ], + [ + 44.47309490200007, + 14.232930798000154 + ], + [ + 44.50015079900004, + 14.072495954000033 + ], + [ + 44.48166666700013, + 13.857500000000186 + ], + [ + 44.56833333300017, + 13.745000000000175 + ], + [ + 44.560000000000116, + 13.689166667 + ], + [ + 44.48333333300019, + 13.653333333000091 + ], + [ + 44.31916666700005, + 13.673333333000187 + ], + [ + 44.231666667000184, + 13.74250000000012 + ], + [ + 44.15666666700014, + 13.7125 + ], + [ + 44.00833333300005, + 13.705 + ], + [ + 43.825833333, + 13.895833333000098 + ], + [ + 43.921999401000164, + 13.92196492700009 + ], + [ + 44.03000000100002, + 14.167500000000189 + ], + [ + 44.128333333000114, + 14.244166667000115 + ], + [ + 44.125833333, + 14.36083333300013 + ], + [ + 44.09500000000014, + 14.435000000000173 + ], + [ + 44.01666666700015, + 14.4475 + ], + [ + 43.920000000000186, + 14.405 + ], + [ + 43.9425, + 14.28 + ], + [ + 43.912500000000136, + 14.223333332999971 + ], + [ + 43.81833333300011, + 14.253333333000114 + ], + [ + 43.839166667000086, + 14.322500000000161 + ], + [ + 43.77333333300004, + 14.37583333300006 + ], + [ + 43.99583333300012, + 14.63333333300011 + ], + [ + 43.93916666700005, + 14.66 + ], + [ + 43.82750000000016, + 14.8175 + ], + [ + 43.98666666700018, + 14.83583333300004 + ], + [ + 44.06750000000011, + 14.90416666800013 + ], + [ + 44.09583333300009, + 14.983333334000065 + ], + [ + 44.075, + 15.041666668000062 + ], + [ + 43.97666666700002, + 15.005833333 + ], + [ + 43.92833333300001, + 14.993333333000123 + ], + [ + 43.88000000000011, + 14.88916666700004 + ], + [ + 43.7825, + 14.891666667000152 + ], + [ + 43.81083333300006, + 15.019166667000093 + ], + [ + 43.73083333300008, + 14.925833334000117 + ], + [ + 43.70833333300004, + 15.024166667000088 + ], + [ + 43.62916666700005, + 15.045833334 + ], + [ + 43.665833333000194, + 15.18 + ], + [ + 43.66, + 15.182500000000118 + ], + [ + 43.62166666700017, + 15.195000000000164 + ], + [ + 43.71583333300009, + 15.224166668000066 + ], + [ + 43.73916666700018, + 15.141666667000095 + ], + [ + 43.84166666700003, + 15.1175 + ], + [ + 43.845833333000144, + 15.11083333300013 + ], + [ + 43.875000000000114, + 15.101666667000188 + ], + [ + 43.896666667000034, + 15.116666667000175 + ], + [ + 43.78, + 15.19583333300011 + ], + [ + 43.790000000000134, + 15.285000000000139 + ], + [ + 43.79916666700018, + 15.361423816000183 + ], + [ + 43.719166667000025, + 15.345 + ], + [ + 43.659166667000136, + 15.391666667000038 + ], + [ + 43.60333333300008, + 15.361666667000122 + ], + [ + 43.50416666700016, + 15.487500000000125 + ], + [ + 43.62333333300006, + 15.559166667000113 + ], + [ + 43.5475, + 15.645 + ], + [ + 43.655, + 15.693333333000112 + ], + [ + 43.693333333000055, + 15.66583333300008 + ] + ], + [ + [ + 44.751666667, + 13.872502214000178 + ], + [ + 44.85666480300017, + 13.819981807000033 + ], + [ + 44.85583333300008, + 13.6925 + ], + [ + 44.78416666700019, + 13.700833333000048 + ], + [ + 44.79083333300008, + 13.797500000000127 + ], + [ + 44.751666667, + 13.872502214000178 + ] + ], + [ + [ + 46.216032049000034, + 13.528795698000181 + ], + [ + 46.125258944000166, + 13.540142335999974 + ], + [ + 45.97850909200014, + 13.469793180000067 + ], + [ + 45.83510957400017, + 13.446785810000108 + ], + [ + 45.83175924000011, + 13.52350060000009 + ], + [ + 45.97926553500008, + 13.552245417000165 + ], + [ + 46.110886536000066, + 13.646044291000067 + ], + [ + 46.26582411800007, + 13.634197351000182 + ], + [ + 46.264444371000195, + 13.527282813000113 + ], + [ + 46.216032049000034, + 13.528795698000181 + ] + ], + [ + [ + 43.63833333300016, + 16.26333333300005 + ], + [ + 43.74250000000018, + 16.219166666999968 + ], + [ + 43.710833333000096, + 16.120000000000175 + ], + [ + 43.665, + 16.134166666999988 + ], + [ + 43.61083333300013, + 16.233333333000076 + ], + [ + 43.63833333300016, + 16.26333333300005 + ] + ], + [ + [ + 43.73166666700007, + 14.7575 + ], + [ + 43.84333333300003, + 14.730833333000135 + ], + [ + 43.90666666800013, + 14.583333333000041 + ], + [ + 43.78166666800007, + 14.525833333000094 + ], + [ + 43.656666668000184, + 14.498333333000062 + ], + [ + 43.585, + 14.554166667000118 + ], + [ + 43.56166666700011, + 14.641666667000038 + ], + [ + 43.595833334000076, + 14.7375 + ], + [ + 43.73166666700007, + 14.7575 + ] + ], + [ + [ + 44.701666667000154, + 13.793333333000078 + ], + [ + 44.7225, + 13.678333333000182 + ], + [ + 44.68666666700017, + 13.64 + ], + [ + 44.5833333330001, + 13.665833333000137 + ], + [ + 44.64892141100012, + 13.783559264000075 + ], + [ + 44.701666667000154, + 13.793333333000078 + ] + ], + [ + [ + 44.145, + 13.59 + ], + [ + 44.10833333300013, + 13.4725 + ], + [ + 44.1525, + 13.40416666700014 + ], + [ + 44.38333333300005, + 13.325833334000095 + ], + [ + 44.14666666699998, + 13.191666667 + ], + [ + 44.1391666670001, + 13.127500000000111 + ], + [ + 44.050833333000185, + 13.125 + ], + [ + 44.05416666700012, + 13.245833333000064 + ], + [ + 44.086666667000145, + 13.330833333000044 + ], + [ + 43.975833333000026, + 13.419166667000127 + ], + [ + 43.96333333300015, + 13.565 + ], + [ + 44.145, + 13.59 + ] + ], + [ + [ + 43.8725, + 13.548333334000063 + ], + [ + 43.96083333300004, + 13.480833334000124 + ], + [ + 43.86833333300018, + 13.434166667000056 + ], + [ + 43.83416666700009, + 13.4725 + ], + [ + 43.8725, + 13.548333334000063 + ] + ], + [ + [ + 44.366624220000176, + 15.291632403000108 + ], + [ + 44.32912249100008, + 15.284977420000075 + ], + [ + 44.30753876200009, + 15.437502439000184 + ], + [ + 44.51833985000019, + 15.465021692999983 + ], + [ + 44.573288427000136, + 15.353325895000125 + ], + [ + 44.58417022300006, + 15.31915165800001 + ], + [ + 44.40250717000009, + 15.227510741000117 + ], + [ + 44.366624220000176, + 15.291632403000108 + ] + ], + [ + [ + 44.609980766000035, + 15.676632171000051 + ], + [ + 44.50080307000013, + 15.501624101000175 + ], + [ + 44.42912710300004, + 15.540834542000027 + ], + [ + 44.53164981600008, + 15.65082162800013 + ], + [ + 44.609980766000035, + 15.676632171000051 + ] + ], + [ + [ + 55.69619342600009, + 24.048331166000082 + ], + [ + 55.77254586600009, + 24.143839167000067 + ], + [ + 55.82623539200006, + 24.082685268000034 + ], + [ + 55.83082193500002, + 23.985018894000063 + ], + [ + 55.76346271400013, + 23.949675537000076 + ], + [ + 55.69619342600009, + 24.048331166000082 + ] + ], + [ + [ + 50.971967513000095, + 25.63340234700007 + ], + [ + 50.971220453000115, + 25.633176444000128 + ], + [ + 50.97570267300006, + 25.635434837 + ], + [ + 50.975951535000036, + 25.636337910000066 + ], + [ + 50.980434772000194, + 25.633629484000096 + ], + [ + 50.97420943800006, + 25.630693665000138 + ], + [ + 50.97296402100011, + 25.63182222900008 + ], + [ + 50.971967513000095, + 25.63340234700007 + ] + ], + [ + [ + 50.97968830500014, + 25.6297914970001 + ], + [ + 50.97993733500016, + 25.62979153100008 + ], + [ + 50.97943935200004, + 25.629339947 + ], + [ + 50.97968830500014, + 25.6297914970001 + ] + ], + [ + [ + 58.688285572000154, + 45.788921764000065 + ], + [ + 59.002059604000124, + 45.962220294000076 + ], + [ + 59.181980508000095, + 45.936196161000055 + ], + [ + 59.29645953600004, + 45.97961810800007 + ], + [ + 59.28602557500011, + 45.75429981000019 + ], + [ + 59.554420485000094, + 45.79771069200001 + ], + [ + 59.6150585260001, + 45.98822129299998 + ], + [ + 59.58224153100002, + 46.040249443000164 + ], + [ + 59.64105952500017, + 46.152897528000096 + ], + [ + 59.59085058400012, + 46.26556220900011 + ], + [ + 59.74675750300014, + 46.23956104200005 + ], + [ + 59.89221956600011, + 46.08364942900005 + ], + [ + 60.05673553800017, + 46.14429166000019 + ], + [ + 60.12795656900005, + 46.14429166000019 + ], + [ + 60.34267863300016, + 46.05764038300009 + ], + [ + 60.465766546, + 46.118290493000075 + ], + [ + 60.51581556000008, + 46.06626251200004 + ], + [ + 60.72555558900018, + 46.10089251200003 + ], + [ + 60.90563960500015, + 46.04887022999998 + ], + [ + 60.93346048300003, + 45.97961123500011 + ], + [ + 60.81898849600003, + 45.806320751000044 + ], + [ + 60.88143954200001, + 45.641639487000134 + ], + [ + 60.845001565000075, + 45.528980338 + ], + [ + 60.90563960500015, + 45.38169018300016 + ], + [ + 60.95929753200005, + 45.00048776400001 + ], + [ + 61.002712605, + 44.86181973700019 + ], + [ + 61.06333958100004, + 44.76637969900003 + ], + [ + 61.00271947800013, + 44.72313997500015 + ], + [ + 60.89702954600011, + 44.72313997500015 + ], + [ + 60.69953162300004, + 44.66249774400018 + ], + [ + 60.68048861000017, + 44.532458886000086 + ], + [ + 60.5610355930001, + 44.41979923400004 + ], + [ + 60.54364062900004, + 44.3251184290001 + ], + [ + 60.44655958300007, + 44.33316036300005 + ], + [ + 60.31848963400006, + 44.211879420000116 + ], + [ + 60.28205148900008, + 44.1338507750001 + ], + [ + 60.16257852300009, + 44.08182882800014 + ], + [ + 59.92866860700008, + 43.90853935000018 + ], + [ + 59.634258616000125, + 43.899910181 + ], + [ + 59.60826147300003, + 43.96056397900014 + ], + [ + 59.31204954100008, + 43.94316113600007 + ], + [ + 58.948219622000124, + 43.99517084600012 + ], + [ + 58.81834052300002, + 44.09061473900016 + ], + [ + 58.62963052300012, + 44.09059864600016 + ], + [ + 58.489150496000036, + 44.05582497900019 + ], + [ + 58.31602060900002, + 44.29853036200012 + ], + [ + 58.29182859300016, + 44.39377912500015 + ], + [ + 58.34085853500005, + 44.572478954000076 + ], + [ + 58.29209849, + 44.72473773400009 + ], + [ + 58.28556848500017, + 44.84405781400005 + ], + [ + 58.340339528000186, + 45.02770866500015 + ], + [ + 58.42467455000002, + 45.097380721000036 + ], + [ + 58.447494616000085, + 45.23338984000014 + ], + [ + 58.57434047200013, + 45.411399 + ], + [ + 58.688285572000154, + 45.788921764000065 + ] + ], + [ + [ + 69.95982355900014, + 34.08714605100005 + ], + [ + 69.78274562800016, + 34.127499718000024 + ], + [ + 69.73207048600017, + 34.07251627800008 + ], + [ + 69.82621753100017, + 34.0112621670001 + ], + [ + 69.77645853000007, + 33.85780427200007 + ], + [ + 69.69301551100006, + 33.879387840000106 + ], + [ + 69.56616261400006, + 33.99113570900016 + ], + [ + 69.50193762200018, + 33.84213799200006 + ], + [ + 69.62859354400013, + 33.80485495200003 + ], + [ + 69.64431749100004, + 33.75005742100012 + ], + [ + 69.54956057900012, + 33.644836541000075 + ], + [ + 69.54557749800017, + 33.53141681800008 + ], + [ + 69.42903149300014, + 33.471985604 + ], + [ + 69.42253149500004, + 33.349804948000155 + ], + [ + 69.31101949300006, + 33.23485636600009 + ], + [ + 69.3194195010002, + 33.16667042200004 + ], + [ + 69.41503153600007, + 33.17742406800005 + ], + [ + 69.48133859200004, + 33.13463545800016 + ], + [ + 69.34369651000009, + 32.954899794000085 + ], + [ + 69.30915854300014, + 32.87092955300011 + ], + [ + 69.22174853600012, + 32.86646266900016 + ], + [ + 69.14249462400005, + 32.7665815630001 + ], + [ + 69.22607460400013, + 32.72925577500013 + ], + [ + 69.20148461500008, + 32.637362791000044 + ], + [ + 69.14438658699999, + 32.57621563400005 + ], + [ + 69.08032252800007, + 32.58621340000019 + ], + [ + 68.83699755500004, + 32.754551185000025 + ], + [ + 68.78460663700002, + 32.7280967260001 + ], + [ + 68.76447263500017, + 32.556295035000176 + ], + [ + 68.72786752200005, + 32.50369574300015 + ], + [ + 68.503707603, + 32.26940931100006 + ], + [ + 68.31352959600002, + 32.20932129100004 + ], + [ + 68.22863064000006, + 32.2136171840001 + ], + [ + 68.25674454900019, + 32.29142270400007 + ], + [ + 68.41371949100017, + 32.35788046700003 + ], + [ + 68.52864058, + 32.488815183000156 + ], + [ + 68.59506951000014, + 32.66373678499997 + ], + [ + 68.66863261300017, + 32.76610178300001 + ], + [ + 68.7209856450001, + 32.93864242200016 + ], + [ + 68.84913656200018, + 33.093388783000194 + ], + [ + 68.90694453700013, + 33.236221275000105 + ], + [ + 69.114715488, + 33.57537235600006 + ], + [ + 69.16034656900018, + 33.68587316500009 + ], + [ + 69.04352563800012, + 33.74530454700016 + ], + [ + 68.85279056900009, + 33.705217760000096 + ], + [ + 68.64684251400018, + 33.62829183700018 + ], + [ + 68.63439957900016, + 33.71481855899998 + ], + [ + 68.87968457600016, + 33.79296807200012 + ], + [ + 69.04533361400019, + 33.92016579900019 + ], + [ + 69.1355745250001, + 34.076648388000024 + ], + [ + 69.17337053800014, + 34.26539392800004 + ], + [ + 69.30969263800017, + 34.41209517100003 + ], + [ + 69.4318615590002, + 34.440396332000034 + ], + [ + 69.60413364200014, + 34.338878241000145 + ], + [ + 69.64640056200017, + 34.214259457000026 + ], + [ + 69.77438350600016, + 34.21000564100012 + ], + [ + 69.88571948800012, + 34.165962931000024 + ], + [ + 69.99452262700004, + 34.18619919200006 + ], + [ + 70.17469750300006, + 34.12154202900007 + ], + [ + 70.50063350800008, + 34.113523397999984 + ], + [ + 70.67717751100014, + 34.12559300300006 + ], + [ + 70.90804261700015, + 34.10899549400017 + ], + [ + 71.04837059700014, + 34.07730720600017 + ], + [ + 71.09509249800016, + 33.971025344000054 + ], + [ + 71.16117056200017, + 33.899086319000105 + ], + [ + 71.1458816350002, + 33.852376655000114 + ], + [ + 71.27916764200012, + 33.799009915000056 + ], + [ + 71.25447053200014, + 33.75941129000006 + ], + [ + 71.0872195440001, + 33.786819443000184 + ], + [ + 70.98729653000015, + 33.692282136000074 + ], + [ + 70.72042058800008, + 33.67762269000019 + ], + [ + 70.57903263300005, + 33.58821594700004 + ], + [ + 70.42722362600006, + 33.596474803000035 + ], + [ + 70.44452655700019, + 33.69041313900004 + ], + [ + 70.35022763100017, + 33.868558086000064 + ], + [ + 70.1714785170002, + 33.94833687300013 + ], + [ + 69.92118063800018, + 33.982583988000044 + ], + [ + 69.95982355900014, + 34.08714605100005 + ] + ], + [ + [ + 67.40350351799998, + 30.70555237200017 + ], + [ + 67.26200056300007, + 30.648341189000178 + ], + [ + 67.24741353700017, + 30.698148469000103 + ], + [ + 67.32894162700012, + 30.763337213000113 + ], + [ + 67.38996154700015, + 30.853973079000127 + ], + [ + 67.33966057300006, + 30.881713155000114 + ], + [ + 67.20761156700013, + 30.83505462000005 + ], + [ + 66.98739650700008, + 30.86599272800015 + ], + [ + 66.91197161600019, + 30.824713028000076 + ], + [ + 66.82488263599998, + 30.86611258900001 + ], + [ + 66.61123664100018, + 30.845264281000027 + ], + [ + 66.51831855000006, + 30.684191092000162 + ], + [ + 66.50901061500008, + 30.619686480000098 + ], + [ + 66.3907315670001, + 30.6093588010001 + ], + [ + 66.39659856400016, + 30.68418891300007 + ], + [ + 66.52007254800009, + 30.820424344000116 + ], + [ + 66.58569362900005, + 31.107853047000106 + ], + [ + 66.64218849499997, + 31.218487296000035 + ], + [ + 66.73870057800008, + 31.336185142000033 + ], + [ + 66.9129025100001, + 31.40915883000008 + ], + [ + 67.06591063200011, + 31.45152817700017 + ], + [ + 67.26364861300016, + 31.442112617000078 + ], + [ + 67.45433054000011, + 31.460944910000137 + ], + [ + 67.60028059700011, + 31.45623813600008 + ], + [ + 67.82321960800004, + 31.51369122100016 + ], + [ + 67.88907655700018, + 31.496111688000155 + ], + [ + 67.87274961500003, + 31.360062502000176 + ], + [ + 67.77169755799997, + 31.22166806100006 + ], + [ + 67.78707851800004, + 31.15356861800018 + ], + [ + 67.90131363299997, + 31.17773280600005 + ], + [ + 67.95623052100007, + 31.223866131000193 + ], + [ + 68.11659963100004, + 31.29635769100014 + ], + [ + 68.33357961100012, + 31.29558773000008 + ], + [ + 68.49461357400014, + 31.338646237000034 + ], + [ + 68.55049153100009, + 31.294127770000102 + ], + [ + 68.71086852000008, + 31.35872558900013 + ], + [ + 68.8230135230001, + 31.46381202400005 + ], + [ + 68.97612759200013, + 31.46553165500012 + ], + [ + 68.88305661600009, + 31.286898043000065 + ], + [ + 68.64614849300006, + 31.179401476000066 + ], + [ + 68.23693056800005, + 31.096165489000157 + ], + [ + 68.23677064100008, + 31.05852487600015 + ], + [ + 68.41584061500015, + 31.02805682600001 + ], + [ + 68.35314163200019, + 30.95668022700005 + ], + [ + 68.2022786070001, + 30.98438929000008 + ], + [ + 68.13712355900003, + 31.020957186000032 + ], + [ + 68.07803348800002, + 30.93051041600006 + ], + [ + 67.68701954900013, + 30.858061939000038 + ], + [ + 67.59948750200016, + 30.813803478000125 + ], + [ + 67.52730556900013, + 30.738953921000075 + ], + [ + 67.60327964200019, + 30.747783753000192 + ], + [ + 67.72196152400011, + 30.71657474300008 + ], + [ + 67.83654750500011, + 30.762572279999972 + ], + [ + 67.94101753500007, + 30.72114455600007 + ], + [ + 68.04996450600004, + 30.712459899000123 + ], + [ + 68.00151861500018, + 30.624369114000103 + ], + [ + 68.00373059900005, + 30.511523383000053 + ], + [ + 68.1601255130002, + 30.417776490000108 + ], + [ + 68.16939556200009, + 30.33479062000015 + ], + [ + 68.10848259599999, + 30.269373050000013 + ], + [ + 67.9107665750002, + 30.203152494999983 + ], + [ + 67.78177662900003, + 30.091953641000032 + ], + [ + 67.71711762200005, + 30.00749188500015 + ], + [ + 67.64853655500013, + 30.05522011800008 + ], + [ + 67.52119449100007, + 30.02641017600007 + ], + [ + 67.37068954000011, + 30.128085343000123 + ], + [ + 67.27217854100019, + 30.075711189000117 + ], + [ + 67.28398864200011, + 30.003429847000177 + ], + [ + 67.22296855500014, + 29.937430406000146 + ], + [ + 67.1137315690001, + 29.924872974000095 + ], + [ + 67.04203059000014, + 30.016759420000028 + ], + [ + 66.94515255300013, + 30.046778200000062 + ], + [ + 66.95668756100008, + 30.109385988000042 + ], + [ + 67.059715568, + 30.246744929000158 + ], + [ + 66.93678255200007, + 30.302944752000087 + ], + [ + 66.94856247899997, + 30.36827028800002 + ], + [ + 67.08467050500008, + 30.407600860000173 + ], + [ + 67.31148564300014, + 30.60970178900004 + ], + [ + 67.40350351799998, + 30.70555237200017 + ] + ], + [ + [ + 60.64589649500016, + 29.83896114800018 + ], + [ + 60.71351951100013, + 29.778729295000062 + ], + [ + 60.758975578, + 29.63380266900009 + ], + [ + 60.752433502000144, + 29.438942195000152 + ], + [ + 60.78468656300009, + 29.314079163000088 + ], + [ + 60.83277555300009, + 29.27349784300003 + ], + [ + 60.96736964000007, + 29.4491897420001 + ], + [ + 61.051471477000064, + 29.035197150000045 + ], + [ + 61.12898647900016, + 28.94746444000009 + ], + [ + 61.294013580000126, + 28.621763464000026 + ], + [ + 61.315528585000095, + 28.500255372000083 + ], + [ + 61.3019296170001, + 28.295711789000052 + ], + [ + 61.33527752200018, + 28.11215045600005 + ], + [ + 61.41833162100016, + 27.924383084000112 + ], + [ + 61.45716062000008, + 27.965090468000085 + ], + [ + 61.46631952600012, + 28.249473690000116 + ], + [ + 61.53216960100002, + 28.339211016000036 + ], + [ + 61.58034861300007, + 28.271891761 + ], + [ + 61.60138350200009, + 27.97766701000012 + ], + [ + 61.66661063400011, + 27.83479495600011 + ], + [ + 61.72031063800006, + 27.81045491500015 + ], + [ + 61.84205660900011, + 27.840516778000165 + ], + [ + 62.068996637000055, + 27.745756848000156 + ], + [ + 62.12162359000013, + 27.682446322000146 + ], + [ + 62.276313625000114, + 27.428124460000163 + ], + [ + 62.312087588000054, + 27.284314470000027 + ], + [ + 62.479373611000085, + 27.201226005000024 + ], + [ + 62.60277953400015, + 27.21704651200008 + ], + [ + 62.854865607000136, + 27.365697051000097 + ], + [ + 62.94614453300005, + 27.369665882000106 + ], + [ + 63.10092157200012, + 27.43316298900004 + ], + [ + 63.251731624, + 27.409351176000087 + ], + [ + 63.331104559000096, + 27.44109880800005 + ], + [ + 63.47794762400008, + 27.44506847700012 + ], + [ + 63.7240066060001, + 27.47284727700014 + ], + [ + 63.79941154800002, + 27.413320007000095 + ], + [ + 63.77559654900017, + 27.322043763000067 + ], + [ + 63.60891352000016, + 27.22680103600004 + ], + [ + 63.45413564300014, + 27.19902122900004 + ], + [ + 63.37873053300018, + 27.20695771800007 + ], + [ + 63.27360554100005, + 27.172748489000128 + ], + [ + 62.99514748600012, + 26.979736896000134 + ], + [ + 62.792636514000094, + 26.91962037700017 + ], + [ + 62.697723530000076, + 26.938292575000048 + ], + [ + 62.57051859400019, + 27.039585026000054 + ], + [ + 62.42437759800009, + 27.054101644000184 + ], + [ + 62.294811479000145, + 27.188422816000184 + ], + [ + 62.13407859500006, + 27.300066749000166 + ], + [ + 62.07266958700018, + 27.308425350000107 + ], + [ + 61.946048534, + 27.387054978000037 + ], + [ + 61.733928549000154, + 27.63141377500017 + ], + [ + 61.73082355700012, + 27.519585273000132 + ], + [ + 61.67965656400003, + 27.469553692000034 + ], + [ + 61.53952053000012, + 27.590226276000124 + ], + [ + 61.147823633000144, + 27.861088986000027 + ], + [ + 61.05786854500019, + 27.96392571800004 + ], + [ + 60.948512537000056, + 28.03042790600017 + ], + [ + 60.792613496, + 28.23468331900017 + ], + [ + 60.731716623000125, + 28.39472184700014 + ], + [ + 60.67765049700006, + 28.459261998000045 + ], + [ + 60.59489060300018, + 28.436424162000094 + ], + [ + 60.50612658300014, + 28.3700837450001 + ], + [ + 60.39372660300006, + 28.532061174000034 + ], + [ + 60.33721162100005, + 28.54870562200017 + ], + [ + 60.24105057200006, + 28.498891469000114 + ], + [ + 60.26100553600003, + 28.396404598000174 + ], + [ + 60.17648661500016, + 28.332938168000055 + ], + [ + 60.131763630000194, + 28.398549694000053 + ], + [ + 60.131114535, + 28.51905480800019 + ], + [ + 60.01771157600018, + 28.715501808000056 + ], + [ + 59.978172630000074, + 28.81141877600004 + ], + [ + 59.971870612000146, + 28.960303002000103 + ], + [ + 60.03167348000005, + 28.96223083900003 + ], + [ + 60.21909752900007, + 28.772386432000076 + ], + [ + 60.29155757300009, + 28.74651250300002 + ], + [ + 60.35978660000018, + 28.78460104400017 + ], + [ + 60.38051253200018, + 28.880483311000035 + ], + [ + 60.335449577000134, + 28.93238925200012 + ], + [ + 60.219436493000046, + 29.226254419000156 + ], + [ + 60.16372650900007, + 29.26208605000005 + ], + [ + 60.014526621000186, + 29.23897999200011 + ], + [ + 59.932109546000106, + 29.312212345000148 + ], + [ + 59.862495493000154, + 29.33248230200013 + ], + [ + 59.791938476000155, + 29.54545405600004 + ], + [ + 59.75018352200016, + 29.75037046700004 + ], + [ + 59.797401633, + 29.779048478000107 + ], + [ + 59.91960559000012, + 29.75704514400013 + ], + [ + 59.90025747600009, + 29.976042984000173 + ], + [ + 59.922595583000145, + 30.096542565000107 + ], + [ + 60.01991651999998, + 30.195947746000115 + ], + [ + 60.095996540000044, + 30.163953854000056 + ], + [ + 60.12195261200003, + 30.07983508500007 + ], + [ + 60.115199480000115, + 29.827485485000068 + ], + [ + 60.151035637, + 29.76140792400014 + ], + [ + 60.2431485620001, + 29.77603635700018 + ], + [ + 60.40124852300016, + 29.688587626000185 + ], + [ + 60.4690165450001, + 29.7094298990001 + ], + [ + 60.433490519000145, + 29.80563336000006 + ], + [ + 60.45380355900005, + 29.87245271900008 + ], + [ + 60.54867563800019, + 29.885249371000157 + ], + [ + 60.64589649500016, + 29.83896114800018 + ] + ], + [ + [ + 56.345802634000165, + 27.82714144000016 + ], + [ + 56.51865357000014, + 27.80984806500004 + ], + [ + 56.545627541000044, + 27.721446815000036 + ], + [ + 56.45938848600014, + 27.663496348000024 + ], + [ + 56.313610593000135, + 27.652076675000046 + ], + [ + 56.19179957900013, + 27.696272774000136 + ], + [ + 56.17464450600016, + 27.65632261200011 + ], + [ + 56.04420063500004, + 27.578174776000083 + ], + [ + 55.88644449999998, + 27.609367693000024 + ], + [ + 55.80073954000011, + 27.661508328000025 + ], + [ + 56.0622515660001, + 27.789375937000102 + ], + [ + 55.960174570000106, + 27.88081998600012 + ], + [ + 55.9851075470001, + 27.947843193000097 + ], + [ + 56.11038548300007, + 27.89331254300015 + ], + [ + 56.24673055000011, + 27.869065541000168 + ], + [ + 56.345802634000165, + 27.82714144000016 + ] + ], + [ + [ + 60.941459501000054, + 27.548366046000126 + ], + [ + 60.91758348200011, + 27.646398941000143 + ], + [ + 61.01060852500018, + 27.651529672000038 + ], + [ + 61.23084655200006, + 27.520254484000134 + ], + [ + 61.57712962699998, + 27.230744721000065 + ], + [ + 61.656726527000046, + 27.129272394999987 + ], + [ + 61.50472255600005, + 27.07221460100004 + ], + [ + 61.401607545, + 27.077818406000176 + ], + [ + 61.211322585000175, + 27.13685600600013 + ], + [ + 61.063911562000044, + 27.28543948900011 + ], + [ + 61.10253554000013, + 27.425053498000068 + ], + [ + 61.080959515000075, + 27.481565966000062 + ], + [ + 60.941459501000054, + 27.548366046000126 + ] + ], + [ + [ + 58.42726154000002, + 26.612919164000175 + ], + [ + 58.24208853500011, + 26.612465200000088 + ], + [ + 58.11069851500014, + 26.664191601000084 + ], + [ + 58.01325252000004, + 26.661278051000068 + ], + [ + 57.97450247900008, + 26.596344956000166 + ], + [ + 57.885890507000056, + 26.535215401000187 + ], + [ + 57.791137618, + 26.616095905 + ], + [ + 57.73013647300019, + 26.80059383200006 + ], + [ + 57.830501550000065, + 26.858191085000158 + ], + [ + 58.17166160500011, + 26.941529499000126 + ], + [ + 58.30012852100015, + 26.927644038000096 + ], + [ + 58.47248459000008, + 26.717353319000097 + ], + [ + 58.639747480000096, + 26.726828055000112 + ], + [ + 58.87637363600015, + 26.586875082000176 + ], + [ + 58.84206047100014, + 26.514374302000192 + ], + [ + 58.582023492000076, + 26.5858853470001 + ], + [ + 58.42726154000002, + 26.612919164000175 + ] + ], + [ + [ + 61.01771151800017, + 26.873178431000156 + ], + [ + 61.115844493000054, + 26.89983439200006 + ], + [ + 61.2789766140001, + 26.88773293500003 + ], + [ + 61.62244454300003, + 26.76310040500016 + ], + [ + 61.74997352300005, + 26.672452302000124 + ], + [ + 61.46157855400003, + 26.63224313900008 + ], + [ + 61.21805560000007, + 26.74078526500017 + ], + [ + 61.05295960000018, + 26.746780002000094 + ], + [ + 60.964351484000076, + 26.811827258000108 + ], + [ + 61.01771151800017, + 26.873178431000156 + ] + ], + [ + [ + 60.36196153700013, + 26.501434152000115 + ], + [ + 60.406814609000094, + 26.414360092000152 + ], + [ + 60.269393474000196, + 26.387396180000053 + ], + [ + 59.888637475999985, + 26.381703526000138 + ], + [ + 59.83039850300008, + 26.44555870900001 + ], + [ + 60.181976594000105, + 26.567539205000173 + ], + [ + 60.31805763100016, + 26.558592529000123 + ], + [ + 60.36196153700013, + 26.501434152000115 + ] + ], + [ + [ + 59.398292619000074, + 33.76083403399997 + ], + [ + 59.29746653800004, + 33.81313560100017 + ], + [ + 59.200511555000105, + 33.7979541310001 + ], + [ + 59.18266262700013, + 33.73688978700011 + ], + [ + 59.315772614000196, + 33.615349173000084 + ], + [ + 59.39397459800011, + 33.493904784000165 + ], + [ + 59.492778628, + 33.42806091099999 + ], + [ + 59.70047347200011, + 33.619824103000155 + ], + [ + 59.825611599000126, + 33.60451573100005 + ], + [ + 59.87301260200019, + 33.56936454300006 + ], + [ + 59.94459958699997, + 33.3876800860001 + ], + [ + 60.03177657700013, + 33.47799039900008 + ], + [ + 60.11046253200004, + 33.5125841900001 + ], + [ + 60.27664549700012, + 33.44174420000019 + ], + [ + 60.35930648500016, + 33.22723067800007 + ], + [ + 60.36643948500006, + 33.08154414800009 + ], + [ + 60.34077460000009, + 32.95615892300003 + ], + [ + 60.2337075210001, + 32.92184290900008 + ], + [ + 60.12051763000011, + 32.949380143000155 + ], + [ + 60.041938629000015, + 33.068631324000194 + ], + [ + 59.95569957400011, + 33.05686380200012 + ], + [ + 59.97153852100013, + 32.9390585000001 + ], + [ + 60.061366540000165, + 32.83908552899999 + ], + [ + 60.17137952200011, + 32.61642446200017 + ], + [ + 60.241073538000194, + 32.5676629080001 + ], + [ + 60.26287453300006, + 32.40196508700018 + ], + [ + 60.30141050000003, + 32.38821742500011 + ], + [ + 60.403457489000175, + 32.46503890800011 + ], + [ + 60.4689525070001, + 32.43749396300018 + ], + [ + 60.478774589000125, + 32.31720962900005 + ], + [ + 60.41204055800006, + 32.27779305900009 + ], + [ + 60.35822253700019, + 32.114045371000145 + ], + [ + 60.31623054300013, + 31.680545409000047 + ], + [ + 60.25513451600011, + 31.62189454999998 + ], + [ + 60.173385479000046, + 31.72305121300019 + ], + [ + 60.158981513000015, + 31.84466022300012 + ], + [ + 60.08366055800002, + 31.86013556300003 + ], + [ + 60.06042055800003, + 31.600348197000073 + ], + [ + 60.00913253100009, + 31.616300803000172 + ], + [ + 60.033893511000144, + 31.43772586400013 + ], + [ + 60.099170599, + 31.197209164000185 + ], + [ + 60.08563952500009, + 31.08816093900009 + ], + [ + 59.99682655600003, + 31.091809582000053 + ], + [ + 59.90933256200009, + 31.157637529000112 + ], + [ + 59.847541507000074, + 31.30185236400007 + ], + [ + 59.820018522000055, + 31.52462289900012 + ], + [ + 59.68478053800004, + 31.536711280000134 + ], + [ + 59.53471362500005, + 31.484551031000137 + ], + [ + 59.41722448799999, + 31.46990181200016 + ], + [ + 59.409072585000104, + 31.568731156000013 + ], + [ + 59.46623649400004, + 31.744754308000097 + ], + [ + 59.525218605000134, + 31.800202609000166 + ], + [ + 59.665416497000194, + 31.797946536000097 + ], + [ + 59.68209849600015, + 31.849624992000145 + ], + [ + 59.53567855000006, + 31.94566383299997 + ], + [ + 59.3788715820001, + 31.94635668100011 + ], + [ + 59.28495755300003, + 32.057975133000184 + ], + [ + 59.41991860000013, + 32.17931223400012 + ], + [ + 59.29051961700003, + 32.26787525500015 + ], + [ + 59.10590350500007, + 32.332036377000065 + ], + [ + 59.08356858300016, + 32.408056719000115 + ], + [ + 59.20605853100005, + 32.51033370700014 + ], + [ + 59.350383504000035, + 32.5621390660001 + ], + [ + 59.17077256300007, + 32.77365438100003 + ], + [ + 59.16487857600009, + 32.91622804000008 + ], + [ + 58.937496485999986, + 32.925302623000164 + ], + [ + 58.93029358100006, + 33.03187047600005 + ], + [ + 59.17295051600007, + 33.16468240200004 + ], + [ + 59.21118557300002, + 33.25526780900003 + ], + [ + 59.14318855700003, + 33.474583491000146 + ], + [ + 58.86189255700003, + 33.66097187200006 + ], + [ + 58.6069836260001, + 33.88439267500007 + ], + [ + 58.486171568000145, + 34.03286065500015 + ], + [ + 58.34520757000013, + 34.14073642000011 + ], + [ + 58.23122458300003, + 34.323142559000075 + ], + [ + 58.243942612000126, + 34.37019638400017 + ], + [ + 58.432575499000166, + 34.43954121000013 + ], + [ + 58.568702636000125, + 34.34060206300012 + ], + [ + 58.68630962300017, + 34.16692785600003 + ], + [ + 58.81853062500011, + 34.12531405300007 + ], + [ + 58.88069953600012, + 34.05129195800009 + ], + [ + 58.96336756500017, + 34.04111515400001 + ], + [ + 59.06809659500004, + 34.07225727700006 + ], + [ + 59.26397647600004, + 33.95553072500013 + ], + [ + 59.41297553400017, + 33.94609404300019 + ], + [ + 59.48372650800013, + 33.91497773700007 + ], + [ + 59.398292619000074, + 33.76083403399997 + ] + ], + [ + [ + 59.21844061400003, + 35.68355897300006 + ], + [ + 59.29350256800018, + 35.77485063900019 + ], + [ + 59.393905531000144, + 35.819385702000034 + ], + [ + 59.538715481000054, + 35.825103502000104 + ], + [ + 59.64128851800018, + 35.67570898500003 + ], + [ + 59.63691752400001, + 35.60165990000007 + ], + [ + 59.69221461500007, + 35.54833909300015 + ], + [ + 59.95998758800016, + 35.567861719000064 + ], + [ + 60.05506150400004, + 35.52539061600004 + ], + [ + 60.50186153600015, + 35.21435931100007 + ], + [ + 60.49916859800004, + 35.10639402800018 + ], + [ + 60.389388633000124, + 35.054191200000105 + ], + [ + 60.272369553000146, + 35.158638766000024 + ], + [ + 60.09866349400005, + 35.25953106400004 + ], + [ + 59.95403660500011, + 35.371707415 + ], + [ + 59.89613760200007, + 35.23390875900003 + ], + [ + 59.683265592000055, + 35.114988664000066 + ], + [ + 59.58759354400013, + 35.12099681200016 + ], + [ + 59.52852258400003, + 35.16864843500014 + ], + [ + 59.63819157300003, + 35.276139805000184 + ], + [ + 59.5116005270001, + 35.36047784400017 + ], + [ + 59.29872147600014, + 35.44002277599998 + ], + [ + 59.296283516000074, + 35.348670928000104 + ], + [ + 59.24658955899997, + 35.296453347000124 + ], + [ + 59.03458759100005, + 35.32857162700003 + ], + [ + 58.89736561000012, + 35.329441333000034 + ], + [ + 58.70222853300015, + 35.35943178300005 + ], + [ + 58.49385458800009, + 35.45059738499998 + ], + [ + 58.36922054899998, + 35.455022359 + ], + [ + 58.30534759700015, + 35.416338199999984 + ], + [ + 58.188541585, + 35.409433523000075 + ], + [ + 58.112716542000044, + 35.52180064700008 + ], + [ + 57.99605553700013, + 35.53773447700007 + ], + [ + 57.60334359100011, + 35.89956095300005 + ], + [ + 57.68402863, + 35.95942048300003 + ], + [ + 57.87541547500018, + 35.82002658300007 + ], + [ + 57.97764250700004, + 35.78248353600014 + ], + [ + 58.05429048600001, + 35.67281706099999 + ], + [ + 58.11787761500011, + 35.65187152300018 + ], + [ + 58.378578608000055, + 35.62497835500005 + ], + [ + 58.50167859100003, + 35.595250929000144 + ], + [ + 58.62454555700003, + 35.59713886900005 + ], + [ + 58.770606591000046, + 35.56105695500014 + ], + [ + 58.901653624000176, + 35.55463289700009 + ], + [ + 59.01746755300019, + 35.520659870000145 + ], + [ + 59.231670610000094, + 35.55999295600009 + ], + [ + 59.21844061400003, + 35.68355897300006 + ] + ], + [ + [ + 57.57637062700019, + 33.348847064000154 + ], + [ + 57.64093056000013, + 33.22067401800007 + ], + [ + 57.70426556100011, + 33.006198215000154 + ], + [ + 57.657855633999986, + 32.979348297000115 + ], + [ + 57.4430505900001, + 33.20086054000012 + ], + [ + 57.394672591000074, + 33.324895944000104 + ], + [ + 57.21740355300011, + 33.64117046400003 + ], + [ + 57.075611591000154, + 33.84550684699997 + ], + [ + 56.81372053500007, + 33.95343659100001 + ], + [ + 56.70605850900017, + 33.93991004300011 + ], + [ + 56.69124953000011, + 33.99399645300008 + ], + [ + 56.89902852800009, + 34.04961406800015 + ], + [ + 56.976184617, + 34.09636161900016 + ], + [ + 57.189876545000175, + 34.36706440200004 + ], + [ + 57.24999960100013, + 34.42393963800015 + ], + [ + 57.37326454000004, + 34.34994771800007 + ], + [ + 57.28355755700005, + 34.051975083 + ], + [ + 57.20123251500007, + 33.91054186600013 + ], + [ + 57.22357548400004, + 33.866814986000065 + ], + [ + 57.36622256800001, + 33.83557697400005 + ], + [ + 57.433826473000124, + 33.74898537600018 + ], + [ + 57.44379859100013, + 33.619584213 + ], + [ + 57.57637062700019, + 33.348847064000154 + ] + ], + [ + [ + 67.99032558900012, + 34.265733228000045 + ], + [ + 68.11833150000007, + 34.27580794000016 + ], + [ + 68.05901360900009, + 34.174408704000086 + ], + [ + 67.9576495770001, + 34.13748675600016 + ], + [ + 67.91323052000001, + 34.177456532000065 + ], + [ + 67.99032558900012, + 34.265733228000045 + ] + ], + [ + [ + 66.22753960000006, + 32.57408679800011 + ], + [ + 66.25408156700013, + 32.664678911000124 + ], + [ + 66.32456951700004, + 32.765639772999975 + ], + [ + 66.37558748000004, + 32.71298717200011 + ], + [ + 66.38881663800004, + 32.576379416000066 + ], + [ + 66.28544648100006, + 32.43906573700019 + ], + [ + 66.22036754100003, + 32.47190989000018 + ], + [ + 66.22753960000006, + 32.57408679800011 + ] + ], + [ + [ + 63.16513449400003, + 34.06029076900006 + ], + [ + 63.121929639000086, + 34.00295016899997 + ], + [ + 63.042545640000185, + 34.00618122500015 + ], + [ + 62.956371628000056, + 34.07913932200006 + ], + [ + 62.870628614000054, + 34.10486053300008 + ], + [ + 62.66987951800019, + 34.044044294000116 + ], + [ + 62.41935348500016, + 34.00239646099999 + ], + [ + 62.41269657700019, + 34.06248783300015 + ], + [ + 62.49057049300012, + 34.10068768600007 + ], + [ + 62.81901151300002, + 34.188747123000155 + ], + [ + 62.96978351100017, + 34.1889003440001 + ], + [ + 63.12725063900018, + 34.23676889100011 + ], + [ + 63.21984451700018, + 34.16997166000016 + ], + [ + 63.15387759800018, + 34.12255288700004 + ], + [ + 63.16513449400003, + 34.06029076900006 + ] + ], + [ + [ + 54.35871155100011, + 39.64848449900012 + ], + [ + 54.31063060800011, + 39.84402357100004 + ], + [ + 54.19464149600009, + 39.922162690000164 + ], + [ + 54.17496162600014, + 39.99020094500014 + ], + [ + 54.27572249600013, + 40.071700704000136 + ], + [ + 54.434791572, + 39.97740982600004 + ], + [ + 54.60022351900011, + 39.94016031300009 + ], + [ + 54.68954460000015, + 39.89620410400016 + ], + [ + 54.91404348300017, + 39.83725267000017 + ], + [ + 55.10311155800014, + 39.7140053330001 + ], + [ + 55.06724556200015, + 39.619786874000056 + ], + [ + 54.76200447600013, + 39.53061616400015 + ], + [ + 54.64237259000009, + 39.517383151000104 + ], + [ + 54.43426552400018, + 39.57261553400008 + ], + [ + 54.35871155100011, + 39.64848449900012 + ] + ], + [ + [ + 68.60709351800006, + 24.200167881000084 + ], + [ + 68.57428758700007, + 24.297139963000177 + ], + [ + 68.6488265110001, + 24.32576080900003 + ], + [ + 68.68430358600017, + 24.254263343000105 + ], + [ + 68.60709351800006, + 24.200167881000084 + ] + ], + [ + [ + 67.91658763900006, + 23.98438550600008 + ], + [ + 67.78844460099998, + 23.990820293000013 + ], + [ + 67.7491606320001, + 24.045134523000172 + ], + [ + 67.84915958700003, + 24.08562749700019 + ], + [ + 67.90812661100006, + 24.061893803000032 + ], + [ + 67.91658763900006, + 23.98438550600008 + ] + ], + [ + [ + 70.54495952600018, + 21.387253811 + ], + [ + 70.41548963200012, + 21.47102037200017 + ], + [ + 70.4143066100001, + 21.587763016000054 + ], + [ + 70.44986750500016, + 21.652380282000024 + ], + [ + 70.54049649800004, + 21.6953281480001 + ], + [ + 70.6195375100001, + 21.69320735900004 + ], + [ + 70.85620155200007, + 21.522247547000063 + ], + [ + 70.92696359000007, + 21.37061573300008 + ], + [ + 70.84400152400013, + 21.254231163000156 + ], + [ + 70.90450260400007, + 21.217414156000075 + ], + [ + 71.03997762900008, + 21.266109661000144 + ], + [ + 71.16076655400013, + 21.23443227000007 + ], + [ + 71.2329716210001, + 21.16509699900007 + ], + [ + 71.2641826430002, + 21.045422867000127 + ], + [ + 71.21280660600007, + 20.964327283999978 + ], + [ + 71.10616264600003, + 20.88355188800017 + ], + [ + 70.78045664000007, + 20.830325630000118 + ], + [ + 70.68180063400013, + 20.85332356000015 + ], + [ + 70.59828955299997, + 20.969907955000167 + ], + [ + 70.58766163500013, + 21.0695915820001 + ], + [ + 70.64172356900019, + 21.237001323000072 + ], + [ + 70.6080325100001, + 21.35240688600004 + ], + [ + 70.54495952600018, + 21.387253811 + ] + ], + [ + [ + 69.79325050000017, + 32.8282178880001 + ], + [ + 69.88588762900008, + 32.81730800300005 + ], + [ + 69.78391255700012, + 32.69408195700004 + ], + [ + 69.81582648600005, + 32.55687523100005 + ], + [ + 69.89727763000008, + 32.45757046500006 + ], + [ + 69.66362755200004, + 32.436528871000064 + ], + [ + 69.80637354300018, + 32.32947352700006 + ], + [ + 69.74217252300014, + 32.28332494700004 + ], + [ + 69.58188656200002, + 32.40119093400017 + ], + [ + 69.50327252400018, + 32.39765125700012 + ], + [ + 69.24746656200017, + 32.33142215200013 + ], + [ + 69.1927035650001, + 32.35576353400012 + ], + [ + 69.17445364800005, + 32.465280140000175 + ], + [ + 69.22312953900007, + 32.574799595 + ], + [ + 69.30223056500012, + 32.635642657000176 + ], + [ + 69.36915553600016, + 32.86684773300004 + ], + [ + 69.45434551100016, + 32.909438195000064 + ], + [ + 69.50367753800009, + 32.85091105300006 + ], + [ + 69.63021862700003, + 32.811365234000164 + ], + [ + 69.79325050000017, + 32.8282178880001 + ] + ], + [ + [ + 66.83258862300016, + 30.19312589500015 + ], + [ + 66.91451250600005, + 30.13917594200018 + ], + [ + 66.84664155400003, + 29.994406393000133 + ], + [ + 66.77787759400013, + 29.98715034700018 + ], + [ + 66.83258862300016, + 30.19312589500015 + ] + ], + [ + [ + 67.38690148199998, + 29.818980703000136 + ], + [ + 67.45806149300017, + 29.77328239900004 + ], + [ + 67.51349655100017, + 29.67693627799997 + ], + [ + 67.48895249399999, + 29.57800987100012 + ], + [ + 67.40116161400005, + 29.616048457000147 + ], + [ + 67.3674165750001, + 29.680217122000045 + ], + [ + 67.43318953700015, + 29.734544092000135 + ], + [ + 67.38690148199998, + 29.818980703000136 + ] + ], + [ + [ + 67.00595856700005, + 29.551751883 + ], + [ + 66.99932060300006, + 29.509172653000064 + ], + [ + 66.88307148400008, + 29.326590494000072 + ], + [ + 66.77938851500016, + 29.36713912400006 + ], + [ + 66.76383958200017, + 29.425465939000162 + ], + [ + 66.86480748499997, + 29.563621496000053 + ], + [ + 67.00595856700005, + 29.551751883 + ] + ], + [ + [ + 66.65141261200017, + 29.101259456000037 + ], + [ + 66.60881762400015, + 29.189825997000128 + ], + [ + 66.52458955500015, + 29.160045095000044 + ], + [ + 66.53079249900003, + 29.28712128600006 + ], + [ + 66.6700665370002, + 29.27483274500014 + ], + [ + 66.76183362500018, + 29.240821999000048 + ], + [ + 66.65141261200017, + 29.101259456000037 + ] + ], + [ + [ + 66.98796848800004, + 29.24827284100013 + ], + [ + 67.11358656200008, + 29.183045373000084 + ], + [ + 66.90895061000015, + 29.141136863000042 + ], + [ + 66.93776658800016, + 29.02827219000011 + ], + [ + 66.80874663399999, + 28.836349070000097 + ], + [ + 66.76631157300017, + 28.832670085000075 + ], + [ + 66.71180757700012, + 28.663925946000177 + ], + [ + 66.71040360800004, + 28.583300084000086 + ], + [ + 66.4177166020001, + 28.36196821900012 + ], + [ + 66.32446256400016, + 28.469124648000047 + ], + [ + 66.35462953700016, + 28.582039278000025 + ], + [ + 66.4473804920001, + 28.707843933000163 + ], + [ + 66.50334964500013, + 28.925796382000158 + ], + [ + 66.61627148300005, + 29.02509259900006 + ], + [ + 66.72255753500013, + 29.088339925000184 + ], + [ + 66.71585050400006, + 29.153686416000028 + ], + [ + 66.81938964000005, + 29.202255354000158 + ], + [ + 66.8926166280001, + 29.30877123900018 + ], + [ + 66.98796848800004, + 29.24827284100013 + ] + ], + [ + [ + 66.95233953200011, + 28.905676127000106 + ], + [ + 66.98811349500005, + 28.798110325000152 + ], + [ + 66.92327863600008, + 28.739111785000034 + ], + [ + 66.93145752900011, + 28.634906959000148 + ], + [ + 66.8774334810002, + 28.597688459000153 + ], + [ + 66.81388859700013, + 28.669195480999974 + ], + [ + 66.8977966440001, + 28.81159982500003 + ], + [ + 66.86237354800016, + 28.867818758000112 + ], + [ + 66.95233953200011, + 28.905676127000106 + ] + ], + [ + [ + 66.2672575840001, + 28.9164156920001 + ], + [ + 66.21803251000006, + 28.726944279000122 + ], + [ + 66.158203491, + 28.69402452200012 + ], + [ + 66.11675263300015, + 28.76732275600017 + ], + [ + 66.18855251900004, + 28.839678865000167 + ], + [ + 66.19270357200003, + 28.958414223000034 + ], + [ + 66.27039358900015, + 29.103248314000098 + ], + [ + 66.31807756600017, + 29.11326787300004 + ], + [ + 66.37325261700005, + 29.369649001000028 + ], + [ + 66.43750761600012, + 29.27350186600006 + ], + [ + 66.36395256000014, + 29.167176922000124 + ], + [ + 66.36876662200001, + 29.08242934300017 + ], + [ + 66.2672575840001, + 28.9164156920001 + ] + ], + [ + [ + 66.95205655900008, + 29.734544092000135 + ], + [ + 66.9254684920001, + 29.642237545000057 + ], + [ + 66.81050851000015, + 29.575640977999967 + ], + [ + 66.72293052999999, + 29.402736564000065 + ], + [ + 66.68025256100015, + 29.419976966000092 + ], + [ + 66.73426856300011, + 29.526741960000095 + ], + [ + 66.87644156699997, + 29.744203565000134 + ], + [ + 66.95205655900008, + 29.734544092000135 + ] + ], + [ + [ + 66.91838058700012, + 28.253433637000114 + ], + [ + 66.83791364600012, + 28.18158664500004 + ], + [ + 66.80236850900013, + 28.275092810000103 + ], + [ + 66.91838058700012, + 28.253433637000114 + ] + ], + [ + [ + 64.9565124950002, + 34.74697936100017 + ], + [ + 64.79114559200019, + 34.74870720600006 + ], + [ + 64.76760853700006, + 34.80870671300016 + ], + [ + 64.94999657100004, + 34.85825851300007 + ], + [ + 65.03833059900018, + 34.79690398800011 + ], + [ + 64.9565124950002, + 34.74697936100017 + ] + ], + [ + [ + 63.963272558000085, + 34.605445896 + ], + [ + 63.83704361100007, + 34.59549322400005 + ], + [ + 63.78636159500002, + 34.700925329000086 + ], + [ + 63.84136163200003, + 34.77911624800009 + ], + [ + 64.03241756000006, + 34.80203874100016 + ], + [ + 64.13227854900015, + 34.719979071000125 + ], + [ + 64.09406260200012, + 34.66583834700009 + ], + [ + 63.963272558000085, + 34.605445896 + ] + ], + [ + [ + 63.68125957000012, + 34.66518254700003 + ], + [ + 63.531379574000084, + 34.58488156699997 + ], + [ + 63.300472558000195, + 34.652365779000036 + ], + [ + 63.30873862400006, + 34.68729970700019 + ], + [ + 63.52276264300008, + 34.713204146000066 + ], + [ + 63.68125957000012, + 34.66518254700003 + ] + ], + [ + [ + 62.786651500000175, + 34.61194991800011 + ], + [ + 62.92990459500015, + 34.67318223500007 + ], + [ + 62.99419060800017, + 34.60304297200014 + ], + [ + 62.786651500000175, + 34.61194991800011 + ] + ], + [ + [ + 74.13310257799998, + 45.336299160000124 + ], + [ + 74.13720652600011, + 45.07712870100016 + ], + [ + 74.01696762200015, + 45.08317088000018 + ], + [ + 73.97444958000011, + 45.20790801600015 + ], + [ + 73.87072755100013, + 45.21509901900015 + ], + [ + 73.82195258600007, + 45.297160868000105 + ], + [ + 73.71800256900008, + 45.34563006200017 + ], + [ + 73.61653862600002, + 45.49169528600004 + ], + [ + 73.51702850300006, + 45.5610883920001 + ], + [ + 73.44410661600011, + 45.560081222000065 + ], + [ + 73.42389650700011, + 45.660209426000165 + ], + [ + 73.51773861800007, + 45.66402453300009 + ], + [ + 73.55446660900009, + 45.75234950900017 + ], + [ + 73.40695953, + 45.779598741000086 + ], + [ + 73.47036762200014, + 45.836528962000045 + ], + [ + 73.57528658600012, + 45.792419700000096 + ], + [ + 73.66754150100002, + 45.996422147000146 + ], + [ + 73.62313049000011, + 46.13810061900017 + ], + [ + 73.65825653100006, + 46.1664208900001 + ], + [ + 73.86509658800003, + 46.20259198800011 + ], + [ + 73.95485654600003, + 46.25721886200017 + ], + [ + 74.07189155100019, + 46.43361065000016 + ], + [ + 74.2220225010002, + 46.451730649000126 + ], + [ + 74.38780950500012, + 46.51979287600011 + ], + [ + 74.392196593, + 46.56347533200005 + ], + [ + 74.53930653800006, + 46.59670136400007 + ], + [ + 74.55211660100014, + 46.70553166000002 + ], + [ + 74.62165052300014, + 46.767753041000105 + ], + [ + 75.00939954300003, + 46.75861307900004 + ], + [ + 75.09049965300011, + 46.789493184000094 + ], + [ + 75.30410759400013, + 46.69541486999998 + ], + [ + 75.52243756399997, + 46.715633026000035 + ], + [ + 75.75393651000019, + 46.80050214300013 + ], + [ + 76.17356861400003, + 46.803192399000125 + ], + [ + 76.38323253400017, + 46.71384399300007 + ], + [ + 76.48757163900007, + 46.63110639399997 + ], + [ + 76.59501657300012, + 46.66796480800019 + ], + [ + 76.83245057700009, + 46.591864335000025 + ], + [ + 76.88552864400015, + 46.63565340900004 + ], + [ + 77.05045365300003, + 46.63559238900018 + ], + [ + 77.14864362600008, + 46.531770951000055 + ], + [ + 77.23596964600011, + 46.546473144000174 + ], + [ + 77.28885660500003, + 46.613181359 + ], + [ + 77.45860255000002, + 46.63464255200017 + ], + [ + 77.62068961400007, + 46.622424587000125 + ], + [ + 77.87619064300014, + 46.6494625950001 + ], + [ + 77.9300535910001, + 46.61733140700005 + ], + [ + 78.21578261200011, + 46.53796199200008 + ], + [ + 78.34844953100014, + 46.522078118000195 + ], + [ + 78.32829256300016, + 46.59375227500004 + ], + [ + 78.4833985080001, + 46.658522761000086 + ], + [ + 78.62748761500018, + 46.74904211900008 + ], + [ + 78.75084659800012, + 46.74260314100019 + ], + [ + 79.01702164500017, + 46.815178353000135 + ], + [ + 79.12477151400014, + 46.802913281000144 + ], + [ + 79.24611649400015, + 46.64367539300014 + ], + [ + 79.21523253300018, + 46.58846145000007 + ], + [ + 79.09282657200004, + 46.53221016300017 + ], + [ + 79.02631365600007, + 46.43214281100012 + ], + [ + 78.94583162700008, + 46.37688243300005 + ], + [ + 78.83756258400012, + 46.35904842500008 + ], + [ + 78.53706364300012, + 46.406999617000054 + ], + [ + 78.41990659700008, + 46.39408343900004 + ], + [ + 78.1596525270001, + 46.30521213100019 + ], + [ + 78.06500960800014, + 46.31333319000004 + ], + [ + 77.89481355500004, + 46.40458160500003 + ], + [ + 77.7606125800001, + 46.34751325000019 + ], + [ + 77.72869865100017, + 46.38641148300013 + ], + [ + 77.5259325340001, + 46.436902559000146 + ], + [ + 77.40215261100019, + 46.50086100700014 + ], + [ + 77.23316154100007, + 46.44364362100015 + ], + [ + 76.81712359700003, + 46.47711390100011 + ], + [ + 76.69183359000004, + 46.52982199100006 + ], + [ + 76.44808164300008, + 46.53029892100011 + ], + [ + 76.29559353400015, + 46.56001528200011 + ], + [ + 76.27590159400012, + 46.49874709100004 + ], + [ + 76.07929952799998, + 46.45916187600005 + ], + [ + 76.01806654000006, + 46.49895697300019 + ], + [ + 75.7137065600001, + 46.512343040000076 + ], + [ + 75.62127663100006, + 46.464776746000155 + ], + [ + 75.45797754400007, + 46.59908232700019 + ], + [ + 75.42368349000009, + 46.50342402500013 + ], + [ + 75.22989657000005, + 46.41512168100013 + ], + [ + 75.0557025170001, + 46.44786256800006 + ], + [ + 75.01154363400008, + 46.38064054300014 + ], + [ + 74.88297261500003, + 46.400590646000126 + ], + [ + 74.85487362600009, + 46.2688799340001 + ], + [ + 74.7854764970001, + 46.18734094700005 + ], + [ + 74.80983749200004, + 46.12773270700012 + ], + [ + 74.51010851400008, + 45.99332821900015 + ], + [ + 74.42092154300013, + 46.042691259000094 + ], + [ + 74.23526758500009, + 45.98843017000013 + ], + [ + 74.28766654900005, + 45.815250663000086 + ], + [ + 74.25727863000009, + 45.7276807290001 + ], + [ + 74.34541350400013, + 45.67900064700018 + ], + [ + 74.20236157400018, + 45.569015325000066 + ], + [ + 74.06498754500006, + 45.51276035000018 + ], + [ + 74.08412963300009, + 45.37202014900009 + ], + [ + 74.13310257799998, + 45.336299160000124 + ] + ], + [ + [ + 52.318969345000085, + 24.473800426000082 + ], + [ + 52.320767989000046, + 24.474969544000032 + ], + [ + 52.31762036200007, + 24.46471727300002 + ], + [ + 52.318969345000085, + 24.473800426000082 + ] + ], + [ + [ + 54.26159489700018, + 24.36255428800007 + ], + [ + 54.255569439000055, + 24.41390557700015 + ], + [ + 54.26177476100014, + 24.361654966000117 + ], + [ + 54.26159489700018, + 24.36255428800007 + ] + ], + [ + [ + 54.53588812100003, + 24.542328765000093 + ], + [ + 54.537147172000175, + 24.542148901000132 + ], + [ + 54.53696730700011, + 24.542148901000132 + ], + [ + 54.53588812100003, + 24.542328765000093 + ] + ], + [ + [ + 58.59920498900016, + 23.580863566000062 + ], + [ + 58.63247990600007, + 23.558020786000043 + ], + [ + 58.60010431100011, + 23.57915485400008 + ], + [ + 58.59920498900016, + 23.580863566000062 + ] + ] + ], + [ + [ + [ + -116.67675758199994, + 31.705822714000135 + ], + [ + -116.64379859799988, + 31.662381322000044 + ], + [ + -116.68402854799996, + 31.573200219000057 + ], + [ + -116.64378367799998, + 31.514749185000085 + ], + [ + -116.50221266299997, + 31.41210154800001 + ], + [ + -116.35211155199994, + 31.233069628000067 + ], + [ + -116.30322259299999, + 31.127614557000072 + ], + [ + -116.33699764, + 30.980080656000098 + ], + [ + -116.27941865899999, + 30.96579521100017 + ], + [ + -116.05292555299997, + 30.785641289000125 + ], + [ + -116.0279766509999, + 30.62282835200017 + ], + [ + -116.04647064999995, + 30.483293134000064 + ], + [ + -115.98117864099993, + 30.38614972500011 + ], + [ + -115.86430356299996, + 30.369432523 + ], + [ + -115.7940595259999, + 30.245839013000136 + ], + [ + -115.77803768599995, + 30.079595195000138 + ], + [ + -115.80056757099999, + 29.981308663 + ], + [ + -115.73025564099999, + 29.938471271000026 + ], + [ + -115.68383766699992, + 29.828763390000177 + ], + [ + -115.69694562199993, + 29.750324534000015 + ], + [ + -115.58369454299987, + 29.69040867800004 + ], + [ + -115.51125360999993, + 29.623593342999982 + ], + [ + -115.24521652899995, + 29.510553488000028 + ], + [ + -115.19007852599992, + 29.432411519000027 + ], + [ + -114.96354652799988, + 29.371823770000105 + ], + [ + -114.80722755399995, + 29.21044128800014 + ], + [ + -114.74154662499996, + 29.178555355000185 + ], + [ + -114.70449861299994, + 29.102438454000094 + ], + [ + -114.6293335609999, + 29.09441982300018 + ], + [ + -114.59303254399998, + 28.983121057000062 + ], + [ + -114.52642055399997, + 28.921272669000018 + ], + [ + -114.40899662799995, + 28.880836189000092 + ], + [ + -114.33512155099999, + 28.74722965800015 + ], + [ + -114.18379265899995, + 28.66137198000007 + ], + [ + -114.044807629, + 28.467840709000086 + ], + [ + -114.1089476279999, + 28.24228218500008 + ], + [ + -114.08512860599996, + 28.151277683000103 + ], + [ + -114.26242061099992, + 27.941079500000114 + ], + [ + -114.12934163699987, + 27.881561952000027 + ], + [ + -114.17644457999995, + 27.82091871500012 + ], + [ + -114.12604553699998, + 27.710836163000124 + ], + [ + -113.98772468899989, + 27.75388729400015 + ], + [ + -113.91363553799994, + 27.711240339000028 + ], + [ + -113.94966866899989, + 27.65386772000005 + ], + [ + -114.04418954699992, + 27.660673323000083 + ], + [ + -114.07573668399993, + 27.61498222700004 + ], + [ + -114.23534354299983, + 27.69936586400013 + ], + [ + -114.31478168999996, + 27.78112512700011 + ], + [ + -114.33456465699999, + 27.86819164300016 + ], + [ + -114.47069564999998, + 27.780909209000185 + ], + [ + -114.61159560999988, + 27.773898585000097 + ], + [ + -114.85886359799991, + 27.82877641400006 + ], + [ + -115.04837759099985, + 27.815562847000024 + ], + [ + -115.00572962899997, + 27.718621778000113 + ], + [ + -114.87585455399994, + 27.696571840000047 + ], + [ + -114.73310068399996, + 27.522566213 + ], + [ + -114.64451553499998, + 27.498752220000085 + ], + [ + -114.49358360999997, + 27.39024177800013 + ], + [ + -114.483573606, + 27.22551290500013 + ], + [ + -114.31316364699995, + 27.144416483000157 + ], + [ + -114.23218557699994, + 27.147904359999984 + ], + [ + -114.09880066399995, + 27.093411931000105 + ], + [ + -114.0157086779999, + 26.981884842000056 + ], + [ + -113.84121656499997, + 26.965219272000127 + ], + [ + -113.77494068899989, + 26.909881947000144 + ], + [ + -113.73049966999997, + 26.798070711000094 + ], + [ + -113.62121557899997, + 26.7197582550001 + ], + [ + -113.54334266899991, + 26.725146142000142 + ], + [ + -113.50583666999995, + 26.786533189000124 + ], + [ + -113.36174052199993, + 26.794699845000082 + ], + [ + -113.1987996769999, + 26.8523934910001 + ], + [ + -113.13957264599998, + 26.852402543000096 + ], + [ + -113.077621664, + 26.729131905000145 + ], + [ + -113.00132756999994, + 26.66316180000007 + ], + [ + -112.99898566599995, + 26.58029143200008 + ], + [ + -112.88804665099997, + 26.51980812200003 + ], + [ + -112.79239656299995, + 26.406030492000184 + ], + [ + -112.48303962799997, + 26.231062286000167 + ], + [ + -112.39904759299998, + 26.238007866000032 + ], + [ + -112.32629367899995, + 26.151784905000056 + ], + [ + -112.30153655499993, + 26.064138863000153 + ], + [ + -112.18812554899995, + 25.986225553000168 + ], + [ + -112.12666356799991, + 25.815990440000178 + ], + [ + -112.06462055299994, + 25.72486741800003 + ], + [ + -112.02937364399986, + 25.432252160000132 + ], + [ + -112.04438764399998, + 25.291675909000105 + ], + [ + -112.11064960599998, + 25.022536854000123 + ], + [ + -112.056823539, + 24.94806431500018 + ], + [ + -112.02628357199995, + 24.817887491000022 + ], + [ + -111.83029958799995, + 24.646505902000058 + ], + [ + -111.72035265499994, + 24.58569502600011 + ], + [ + -111.62775458499988, + 24.562253022000107 + ], + [ + -111.52387967099997, + 24.46217879800008 + ], + [ + -111.444877551, + 24.322912639000094 + ], + [ + -111.2334975199999, + 24.221803920000127 + ], + [ + -111.04530367699988, + 24.109621366000113 + ], + [ + -110.90569268599995, + 23.9794628140001 + ], + [ + -110.7581555989999, + 23.87982797000018 + ], + [ + -110.63028765499996, + 23.7391600200001 + ], + [ + -110.42846668099997, + 23.645080869000083 + ], + [ + -110.32544655299995, + 23.577712998000152 + ], + [ + -110.2325816039999, + 23.403812144000028 + ], + [ + -110.14614054499998, + 23.294480443000054 + ], + [ + -110.10028868499995, + 23.0316579900001 + ], + [ + -110.06031756799996, + 22.95296616800016 + ], + [ + -109.96658358299993, + 22.87166858000012 + ], + [ + -109.89345566799994, + 22.867628838000144 + ], + [ + -109.7068785269999, + 22.98826035100018 + ], + [ + -109.63585664899989, + 23.080460615000106 + ], + [ + -109.52126362799999, + 23.120655529000146 + ], + [ + -109.43189259099995, + 23.226708229000167 + ], + [ + -109.40752455399996, + 23.471236509000164 + ], + [ + -109.47318268399982, + 23.57665302300012 + ], + [ + -109.67755158899996, + 23.665345628000182 + ], + [ + -109.7269595549999, + 23.61122736700014 + ], + [ + -109.68183859699985, + 23.49750422000011 + ], + [ + -109.67065462299996, + 23.39710628600011 + ], + [ + -109.76213857, + 23.270012997000094 + ], + [ + -109.77526865399994, + 23.196114618000024 + ], + [ + -109.73339065399989, + 23.007462453000187 + ], + [ + -109.9053266219999, + 22.98299668300001 + ], + [ + -110.0054325299999, + 23.029575254000065 + ], + [ + -110.06666568599991, + 23.154581953000047 + ], + [ + -110.01927960199987, + 23.21548268200013 + ], + [ + -110.02013354999991, + 23.34621287900012 + ], + [ + -110.12619764999994, + 23.481946066000148 + ], + [ + -110.17714654599985, + 23.622100875000115 + ], + [ + -110.14390559399999, + 23.696918246000166 + ], + [ + -110.21498865899997, + 23.742400632 + ], + [ + -110.24001366999994, + 23.84614965000003 + ], + [ + -110.20295761099999, + 23.878037092000113 + ], + [ + -110.22850062299995, + 24.02404263700015 + ], + [ + -110.21333356899999, + 24.114771039000175 + ], + [ + -110.28974953599993, + 24.14442856000005 + ], + [ + -110.27239262599988, + 24.20246670100005 + ], + [ + -110.17926766999994, + 24.23415130100011 + ], + [ + -110.24119568599997, + 24.349952491000067 + ], + [ + -110.33187865799988, + 24.316354135000097 + ], + [ + -110.30867754999991, + 24.218587951000075 + ], + [ + -110.33084852199988, + 24.141250645000127 + ], + [ + -110.53791053199996, + 24.20146674000017 + ], + [ + -110.60734554699985, + 24.254540281000118 + ], + [ + -110.6764295289999, + 24.36081795200016 + ], + [ + -110.68489860399995, + 24.46708673800009 + ], + [ + -110.72849254699997, + 24.518500326000037 + ], + [ + -110.7246165869999, + 24.67680262600004 + ], + [ + -110.66068261499998, + 24.76650307200009 + ], + [ + -110.68566152499994, + 24.885185456000045 + ], + [ + -110.78494265299992, + 25.03357934100012 + ], + [ + -110.8576045339999, + 25.075833353000178 + ], + [ + -110.90909557099997, + 25.152897409000104 + ], + [ + -110.9342726289999, + 25.285576231000107 + ], + [ + -111.02458964699991, + 25.45335326600008 + ], + [ + -111.01683068699998, + 25.512206632000073 + ], + [ + -111.11653862199995, + 25.525559004000172 + ], + [ + -111.17946659799992, + 25.597510434000185 + ], + [ + -111.21968866999993, + 25.724297449 + ], + [ + -111.30448955799994, + 25.782431815000052 + ], + [ + -111.35528556699995, + 25.961567670000193 + ], + [ + -111.31282753999989, + 26.06865285300006 + ], + [ + -111.39075459599997, + 26.26009099600003 + ], + [ + -111.379875557, + 26.326960814000074 + ], + [ + -111.4617305409999, + 26.412514900000076 + ], + [ + -111.45139364299996, + 26.489745588000062 + ], + [ + -111.56264463199989, + 26.56204822000018 + ], + [ + -111.5574726619999, + 26.69339448700015 + ], + [ + -111.81452953999991, + 26.897396264000122 + ], + [ + -111.81578062299997, + 26.720011388000046 + ], + [ + -111.67675753799995, + 26.594093745000123 + ], + [ + -111.73802958599998, + 26.542140194000183 + ], + [ + -111.86180866999985, + 26.698982199000113 + ], + [ + -111.87206258799995, + 26.83290120700002 + ], + [ + -112.00908658799995, + 26.95651667700014 + ], + [ + -112.01171163299989, + 27.018604954000182 + ], + [ + -111.95133963399991, + 27.070477871000037 + ], + [ + -112.01464865199989, + 27.11723967100005 + ], + [ + -112.110679614, + 27.13621294700016 + ], + [ + -112.19731865299997, + 27.235640591000163 + ], + [ + -112.3144455239999, + 27.429198181000118 + ], + [ + -112.32971165199996, + 27.517193580000026 + ], + [ + -112.40370156099993, + 27.583680680000157 + ], + [ + -112.58863853199989, + 27.646883918000015 + ], + [ + -112.70690953299999, + 27.763124152000046 + ], + [ + -112.76922563, + 27.863058901000045 + ], + [ + -112.75630961999997, + 27.960812679000128 + ], + [ + -112.8029255749999, + 28.022878996000145 + ], + [ + -112.79044357999993, + 28.188653260000024 + ], + [ + -112.86440264399994, + 28.275786664000123 + ], + [ + -112.84159866999988, + 28.440305821000038 + ], + [ + -112.89559958399997, + 28.472075749000055 + ], + [ + -112.98014867999996, + 28.451484430000107 + ], + [ + -113.10795560399998, + 28.524929348000057 + ], + [ + -113.12612153599997, + 28.638568845000066 + ], + [ + -113.19115454299998, + 28.79642757400012 + ], + [ + -113.24688766099996, + 28.840931792000163 + ], + [ + -113.32293666899989, + 28.80100526700005 + ], + [ + -113.41898355599994, + 28.951588504000085 + ], + [ + -113.52981561799999, + 28.908294969000053 + ], + [ + -113.55922654299991, + 29.02007468800008 + ], + [ + -113.53181453399998, + 29.05508824500015 + ], + [ + -113.65168765199996, + 29.20973704100004 + ], + [ + -113.63435354099994, + 29.270991822000042 + ], + [ + -113.77252167199993, + 29.411353496000174 + ], + [ + -113.821281549, + 29.4317064330001 + ], + [ + -114.20420862899988, + 29.742687614000033 + ], + [ + -114.38679464299997, + 29.79009482000015 + ], + [ + -114.40467055999989, + 29.889943236000136 + ], + [ + -114.5265045409999, + 29.970294172000024 + ], + [ + -114.66426866299997, + 30.19876875900019 + ], + [ + -114.63649757399997, + 30.257843407000053 + ], + [ + -114.627372531, + 30.47382963000007 + ], + [ + -114.69412265499994, + 30.620236332000104 + ], + [ + -114.69160456399999, + 30.809058483 + ], + [ + -114.71726257499995, + 30.934897001000024 + ], + [ + -114.83280157899992, + 31.01195753700017 + ], + [ + -114.8879315349999, + 31.162602130000096 + ], + [ + -114.878768606, + 31.34722695900018 + ], + [ + -114.8412245529999, + 31.579612039000153 + ], + [ + -114.77594763199988, + 31.643832840000073 + ], + [ + -114.8187786549999, + 31.719052375000047 + ], + [ + -114.81055466699996, + 31.82105695200005 + ], + [ + -114.68266258199998, + 31.757842146000087 + ], + [ + -114.59783956599989, + 31.75741517200015 + ], + [ + -114.48590863699991, + 31.6694549770001 + ], + [ + -114.16997559499998, + 31.495769706000146 + ], + [ + -114.02593258899992, + 31.489475902000038 + ], + [ + -113.95829767099997, + 31.57464006200007 + ], + [ + -113.8944545579999, + 31.59995525400018 + ], + [ + -113.686859627, + 31.51706996600018 + ], + [ + -113.62993661399997, + 31.458217103000095 + ], + [ + -113.61099267399993, + 31.331774250000137 + ], + [ + -113.54463163799988, + 31.296401445000186 + ], + [ + -113.25623365099989, + 31.240661621000015 + ], + [ + -113.12360361199995, + 31.22847785400012 + ], + [ + -113.03459165599992, + 31.16150108300002 + ], + [ + -113.06564358999992, + 31.0007557940001 + ], + [ + -113.09726767199993, + 30.956739235000157 + ], + [ + -113.12696056399994, + 30.809930536000138 + ], + [ + -113.07532468799991, + 30.659483924000142 + ], + [ + -112.98670953099986, + 30.53139855200004 + ], + [ + -112.89610266599993, + 30.454628198000137 + ], + [ + -112.85089855899997, + 30.380302007000182 + ], + [ + -112.84724455299994, + 30.291217296000184 + ], + [ + -112.75522667799999, + 30.184253147000163 + ], + [ + -112.74613952199996, + 29.91602118100019 + ], + [ + -112.68115965599992, + 29.903390491000152 + ], + [ + -112.65207663099994, + 29.834651340999983 + ], + [ + -112.47731763699994, + 29.586206702000027 + ], + [ + -112.38859552799994, + 29.49758014600002 + ], + [ + -112.41770168599999, + 29.373013833000073 + ], + [ + -112.35437758099994, + 29.31591396099998 + ], + [ + -112.30532852799996, + 29.36632708600007 + ], + [ + -112.23078155699989, + 29.303649393000057 + ], + [ + -112.14615652199996, + 28.993914601000142 + ], + [ + -112.02903752999993, + 28.860484090000057 + ], + [ + -111.90317554199987, + 28.784009114000014 + ], + [ + -111.91815953499992, + 28.716705784000055 + ], + [ + -111.76261856899993, + 28.591348722000077 + ], + [ + -111.68669864299994, + 28.44866358500019 + ], + [ + -111.46260862899999, + 28.36672109300008 + ], + [ + -111.45558962299992, + 28.315102987000046 + ], + [ + -111.32796458599984, + 28.186785436000036 + ], + [ + -111.27858763299997, + 28.09174437700017 + ], + [ + -111.17005154199995, + 27.99286222700016 + ], + [ + -111.05581659499984, + 27.936736836000136 + ], + [ + -110.98241459199988, + 27.957560836000084 + ], + [ + -110.94771552499992, + 27.870087630000114 + ], + [ + -110.87392460199993, + 27.85337830600008 + ], + [ + -110.80247457699994, + 27.920353400000124 + ], + [ + -110.5762785259999, + 27.883531867000045 + ], + [ + -110.44666261899994, + 27.830664018999983 + ], + [ + -110.41091162299995, + 27.73430113400019 + ], + [ + -110.27651953999987, + 27.618063080000127 + ], + [ + -110.16415358999996, + 27.57149322600003 + ], + [ + -109.96310458999994, + 27.61391839600003 + ], + [ + -109.94356553499995, + 27.702045726000165 + ], + [ + -109.97501359799998, + 27.74766758700008 + ], + [ + -109.94062063699988, + 27.939153674000124 + ], + [ + -109.977531522, + 27.984029713000155 + ], + [ + -110.08257252599998, + 27.99096037400011 + ], + [ + -110.18730155699996, + 28.258775256000035 + ], + [ + -110.14126562999996, + 28.29001712400003 + ], + [ + -110.07214359499994, + 28.47226953900008 + ], + [ + -110.18462353899997, + 28.45217442900008 + ], + [ + -110.342834644, + 28.50306230400014 + ], + [ + -110.35902361899991, + 28.45951814900019 + ], + [ + -110.56623063599989, + 28.525364537000087 + ], + [ + -110.63738259999991, + 28.734712124000055 + ], + [ + -110.6233826429999, + 28.82887610100005 + ], + [ + -110.57694958099995, + 28.90972508900012 + ], + [ + -110.64041852599985, + 28.991583761000015 + ], + [ + -110.61528052799986, + 29.084136066000042 + ], + [ + -110.51305366299994, + 29.05144748099997 + ], + [ + -110.50962060299992, + 28.967092846000014 + ], + [ + -110.35773464999994, + 28.932719164000048 + ], + [ + -110.32176957999991, + 29.112034057000074 + ], + [ + -110.20999857699985, + 29.171649840000043 + ], + [ + -110.25387566099994, + 29.27761352500005 + ], + [ + -110.33365662699998, + 29.342168932000106 + ], + [ + -110.3015445499999, + 29.453069893000077 + ], + [ + -110.41136156399989, + 29.69061168800016 + ], + [ + -110.53121959399994, + 29.732238231000053 + ], + [ + -110.55200168499994, + 29.838166209000065 + ], + [ + -110.59581758099995, + 29.874484660000064 + ], + [ + -110.6756436419999, + 30.04090533600015 + ], + [ + -110.64649959699994, + 30.100079393000158 + ], + [ + -110.55442053399997, + 30.141062709000096 + ], + [ + -110.505241561, + 30.241572121000047 + ], + [ + -110.54280053399998, + 30.34668806100018 + ], + [ + -110.50393666699995, + 30.42280529700008 + ], + [ + -110.55176564999994, + 30.51640299200011 + ], + [ + -110.63910658999998, + 30.535867448000147 + ], + [ + -110.62765456399995, + 30.602511960000186 + ], + [ + -110.6852035369999, + 30.743682991000185 + ], + [ + -110.60614056499998, + 30.808760758000176 + ], + [ + -110.60084554899998, + 30.906128298000056 + ], + [ + -110.5418625989999, + 30.982172444000128 + ], + [ + -110.42855066799996, + 30.94016905100011 + ], + [ + -110.3965986849999, + 30.83474164000006 + ], + [ + -110.33320651899999, + 30.759574409000038 + ], + [ + -110.35334756199995, + 30.66028087500007 + ], + [ + -110.25938458299999, + 30.647725287000014 + ], + [ + -110.21864367199998, + 30.510577402000024 + ], + [ + -110.31116462799997, + 30.4653548550001 + ], + [ + -110.26468663999992, + 30.363176605000035 + ], + [ + -110.29409052399984, + 30.257644421000123 + ], + [ + -110.15586858199993, + 30.26209621700002 + ], + [ + -110.08395352899998, + 30.07927618000008 + ], + [ + -109.95895353599985, + 29.983088644000134 + ], + [ + -109.8641285619999, + 29.936198434000175 + ], + [ + -109.81359054799998, + 29.862728035000146 + ], + [ + -109.73171259699996, + 29.885868290000133 + ], + [ + -109.64981067399998, + 29.63633065100015 + ], + [ + -109.64223460699992, + 29.446811964000176 + ], + [ + -109.66554266799994, + 29.384503243000154 + ], + [ + -109.51744852099989, + 29.38396529200014 + ], + [ + -109.39385953699997, + 29.633091716000138 + ], + [ + -109.40820365599984, + 29.680494898000063 + ], + [ + -109.50654567599992, + 29.72256333500019 + ], + [ + -109.42755864399999, + 29.804218495000157 + ], + [ + -109.42869556499988, + 29.855722273000083 + ], + [ + -109.57176157699996, + 29.859579121000024 + ], + [ + -109.62469463599996, + 30.02116327200008 + ], + [ + -109.67197460499995, + 30.082737905999977 + ], + [ + -109.69014757699989, + 30.25908845500004 + ], + [ + -109.87157454199996, + 30.532428353000057 + ], + [ + -109.80825060499996, + 30.622984088000123 + ], + [ + -109.91280361499992, + 30.812194488000046 + ], + [ + -110.03614063799989, + 30.724827732000165 + ], + [ + -110.02248366799995, + 30.670967466000093 + ], + [ + -110.18262462299987, + 30.623678110000128 + ], + [ + -110.28378262699988, + 30.744870707000075 + ], + [ + -110.29297656899996, + 30.849224228000026 + ], + [ + -110.25382251999997, + 30.913786005000134 + ], + [ + -110.12056752599989, + 30.914954945000034 + ], + [ + -110.12124662799994, + 31.001779895000027 + ], + [ + -110.04608157599995, + 31.08304898400013 + ], + [ + -109.92314956599995, + 31.147967661999985 + ], + [ + -109.83860767899995, + 31.084609024000088 + ], + [ + -109.8074645499999, + 30.846145219000107 + ], + [ + -109.74210364199996, + 30.767340913000112 + ], + [ + -109.73977665799998, + 30.679518348999977 + ], + [ + -109.68298356499997, + 30.60371275100016 + ], + [ + -109.45347565599997, + 30.585385552000105 + ], + [ + -109.4181286679999, + 30.5076792750001 + ], + [ + -109.5205005389999, + 30.380290943000148 + ], + [ + -109.48850262399998, + 30.289391382000076 + ], + [ + -109.4039835349999, + 30.219428810000124 + ], + [ + -109.40361054099992, + 30.138546797000117 + ], + [ + -109.50376154299994, + 30.07981815400018 + ], + [ + -109.50462353799986, + 30.022378312000058 + ], + [ + -109.3777086159999, + 30.001451885000108 + ], + [ + -109.34545857299997, + 29.88843214700006 + ], + [ + -109.22734867199995, + 29.988693288000036 + ], + [ + -109.1854855919999, + 29.98160856800007 + ], + [ + -109.18757654099988, + 30.13446497700005 + ], + [ + -109.16535963699994, + 30.169705851000174 + ], + [ + -109.25012163199995, + 30.261789272000158 + ], + [ + -109.31333157599988, + 30.481220457000063 + ], + [ + -109.30802951899994, + 30.582217696000043 + ], + [ + -109.23858662499993, + 30.63313692000014 + ], + [ + -109.23788455699986, + 30.73547425800018 + ], + [ + -109.11556962299983, + 30.720173764000037 + ], + [ + -109.08494566899998, + 30.614422644000115 + ], + [ + -109.01192453999982, + 30.555725518000088 + ], + [ + -108.96649965399996, + 30.252508661000093 + ], + [ + -108.85354663599992, + 30.29303432500012 + ], + [ + -108.85211165399994, + 30.418806458000063 + ], + [ + -108.8027955529999, + 30.55926251300008 + ], + [ + -108.8857725389999, + 30.599177973999986 + ], + [ + -108.90389253699993, + 30.697619404000136 + ], + [ + -108.95153762199999, + 30.750281728 + ], + [ + -108.96072368499995, + 30.855624984000144 + ], + [ + -108.85905455199992, + 30.87737501700019 + ], + [ + -108.83277158599998, + 30.663029804000075 + ], + [ + -108.74835157099994, + 30.657110839000154 + ], + [ + -108.68894164699998, + 30.759894430000088 + ], + [ + -108.60224158799991, + 30.748687825000047 + ], + [ + -108.50167065199997, + 30.645654286000024 + ], + [ + -108.49926755999991, + 30.57962081500017 + ], + [ + -108.37379465999999, + 30.617790325000158 + ], + [ + -108.32032767399994, + 30.53407640300003 + ], + [ + -108.24359855799997, + 30.49781478100016 + ], + [ + -108.12993659799992, + 30.275889812000116 + ], + [ + -108.07630163799985, + 30.05418394700007 + ], + [ + -108.03638466799998, + 30.05469909900006 + ], + [ + -107.97295361, + 30.176944463000098 + ], + [ + -107.83988167699988, + 30.124303261000193 + ], + [ + -107.67305766399988, + 29.919022908000102 + ], + [ + -107.59603166199992, + 29.874838544000056 + ], + [ + -107.49800865699996, + 29.706119215000058 + ], + [ + -107.427390619, + 29.715436873999977 + ], + [ + -107.39556855599994, + 29.851333508000153 + ], + [ + -107.26581552099998, + 29.88552714700006 + ], + [ + -107.18423462499999, + 29.82613851300016 + ], + [ + -107.1197276659999, + 29.598780227000077 + ], + [ + -107.12690760399988, + 29.527828758000112 + ], + [ + -107.07604956899996, + 29.452377715000182 + ], + [ + -107.06558962399993, + 29.33382541800006 + ], + [ + -107.13160666699991, + 29.226443683000184 + ], + [ + -107.09110262899998, + 29.022281476000046 + ], + [ + -107.00061763699995, + 29.052986231000148 + ], + [ + -106.99369066399993, + 29.145063617 + ], + [ + -106.91519162699996, + 29.145771553000145 + ], + [ + -106.84023260199996, + 29.075183523000135 + ], + [ + -106.76739453399989, + 29.058744096 + ], + [ + -106.70923653099993, + 28.997789387000125 + ], + [ + -106.80899861299991, + 28.95523530300011 + ], + [ + -106.85371355199993, + 28.90125735500004 + ], + [ + -106.92172263799989, + 28.69913748300013 + ], + [ + -107.01287063799998, + 28.760210879000113 + ], + [ + -107.03476752199992, + 28.817399767000097 + ], + [ + -107.11276968099992, + 28.86456088 + ], + [ + -107.17472854099992, + 28.787205972000038 + ], + [ + -107.13944257299988, + 28.692992542000127 + ], + [ + -107.00359354799997, + 28.58719180100013 + ], + [ + -106.99454461299996, + 28.44058393300014 + ], + [ + -106.93881954099999, + 28.342996954000114 + ], + [ + -106.99819962499998, + 28.248796936000076 + ], + [ + -107.09739659999991, + 28.365030128000058 + ], + [ + -107.12156665599991, + 28.432461366000155 + ], + [ + -107.24325562899986, + 28.5316092220001 + ], + [ + -107.39541667599997, + 28.594882532999975 + ], + [ + -107.52571067899993, + 28.68580807700016 + ], + [ + -107.65087160399997, + 28.735778134000157 + ], + [ + -107.56670354999983, + 28.566122714000073 + ], + [ + -107.44240562499994, + 28.552466246999984 + ], + [ + -107.45434564599992, + 28.440267935000122 + ], + [ + -107.5187525259999, + 28.415741983000146 + ], + [ + -107.51850157199993, + 28.30118768600005 + ], + [ + -107.42412553299994, + 28.312400158000173 + ], + [ + -107.45251453599997, + 28.399656441000047 + ], + [ + -107.36824757499988, + 28.442266851000113 + ], + [ + -107.27464267099998, + 28.423771511000155 + ], + [ + -107.23969264999994, + 28.326590720000127 + ], + [ + -107.10207353399989, + 28.16268126200015 + ], + [ + -107.05324559499991, + 28.071720178000078 + ], + [ + -106.951721637, + 28.0551766480001 + ], + [ + -106.8884426269999, + 28.132855433000145 + ], + [ + -106.901710676, + 28.20553038900016 + ], + [ + -106.83731066999997, + 28.32117165200009 + ], + [ + -106.80456559199996, + 28.43824588500013 + ], + [ + -106.75349465599999, + 28.422545574000026 + ], + [ + -106.64083064499994, + 28.475618444000133 + ], + [ + -106.70994563999989, + 28.611877847000017 + ], + [ + -106.76339753899993, + 28.60712128500012 + ], + [ + -106.87015566099996, + 28.729984228000035 + ], + [ + -106.71984852299994, + 28.795462482000175 + ], + [ + -106.72883559999991, + 28.865812633000132 + ], + [ + -106.64676654099998, + 28.940451805000123 + ], + [ + -106.67894751799997, + 29.07327764500019 + ], + [ + -106.73837252899995, + 29.150741351000136 + ], + [ + -106.67251557999998, + 29.21355801500016 + ], + [ + -106.839515614, + 29.276885641000035 + ], + [ + -106.79668459099997, + 29.357612421000113 + ], + [ + -106.85153157499997, + 29.424164732000065 + ], + [ + -106.95935855699986, + 29.431818416000056 + ], + [ + -107.02201060099992, + 29.529430707000074 + ], + [ + -107.04036763899995, + 29.654943170000138 + ], + [ + -106.93240352899988, + 29.77703028300016 + ], + [ + -106.86454062399997, + 29.662230731000136 + ], + [ + -106.72760765099991, + 29.675271296000062 + ], + [ + -106.73140766999995, + 29.626756003000025 + ], + [ + -106.56991555299993, + 29.496433165999974 + ], + [ + -106.51313067399991, + 29.510753648000048 + ], + [ + -106.467437567, + 29.374577728000077 + ], + [ + -106.394302612, + 29.258108166000056 + ], + [ + -106.38850367599997, + 29.12603854100007 + ], + [ + -106.33458658099994, + 29.075993382000092 + ], + [ + -106.37434362399989, + 28.934184153000047 + ], + [ + -106.3653416279999, + 28.77470235200002 + ], + [ + -106.25509663399993, + 28.703988258000095 + ], + [ + -106.2684786779999, + 28.55944200200014 + ], + [ + -106.24562055699988, + 28.400569398000187 + ], + [ + -106.32293657399993, + 28.456309221000083 + ], + [ + -106.47284657699998, + 28.409314237000103 + ], + [ + -106.42143265299995, + 28.306461412000147 + ], + [ + -106.33864560099994, + 28.305170431000136 + ], + [ + -106.27905261599994, + 28.08938520700019 + ], + [ + -106.32469157599985, + 27.96113286800005 + ], + [ + -106.40742464899995, + 27.97760800200018 + ], + [ + -106.47055865199991, + 28.031976714000052 + ], + [ + -106.56890067299992, + 27.92636305700006 + ], + [ + -106.65191654999995, + 27.954724065000107 + ], + [ + -106.71714066499987, + 28.07149319600012 + ], + [ + -106.80588557399989, + 27.975088234000054 + ], + [ + -106.77397952399991, + 27.856790076000152 + ], + [ + -106.64815558999999, + 27.80780623400011 + ], + [ + -106.61649362199995, + 27.712616144000094 + ], + [ + -106.53536953899993, + 27.709680131000084 + ], + [ + -106.54616559799996, + 27.826584211000124 + ], + [ + -106.52672561799989, + 27.9130066620001 + ], + [ + -106.45610053999997, + 27.924965291000035 + ], + [ + -106.41724354599995, + 27.81423297400005 + ], + [ + -106.2938615949999, + 27.726964454000097 + ], + [ + -106.52529868299996, + 27.478890294000166 + ], + [ + -106.41208666299991, + 27.500928330000193 + ], + [ + -106.48072053699997, + 27.308385620000024 + ], + [ + -106.43736262799996, + 27.256399883000086 + ], + [ + -106.4271846499999, + 27.151713265000126 + ], + [ + -106.48318464799985, + 27.077639369000167 + ], + [ + -106.46666760499994, + 26.992737060000024 + ], + [ + -106.38742056599989, + 26.922794436000117 + ], + [ + -106.32148767799998, + 26.913312828000073 + ], + [ + -106.32806361599995, + 27.01303434100015 + ], + [ + -106.23941057299999, + 26.990925395000147 + ], + [ + -106.05912756999999, + 27.05127275100017 + ], + [ + -106.13108067699994, + 27.14338668200014 + ], + [ + -106.02716854699997, + 27.152259262000086 + ], + [ + -105.93740054299991, + 27.072245614000053 + ], + [ + -105.80878459699989, + 27.117502862000094 + ], + [ + -105.73445153299991, + 27.11887967400014 + ], + [ + -105.82229655999993, + 26.871578661000115 + ], + [ + -105.77519261199996, + 26.814820101000066 + ], + [ + -105.63862659799992, + 26.718385299000033 + ], + [ + -105.6352235459999, + 26.657142923000038 + ], + [ + -105.47879057799992, + 26.679530148000083 + ], + [ + -105.38867958599991, + 26.535045584000102 + ], + [ + -105.3216015619999, + 26.354797785000187 + ], + [ + -105.19446552499994, + 26.32868882700012 + ], + [ + -105.21657564499998, + 26.27736324900019 + ], + [ + -105.14338654299996, + 26.220589768000025 + ], + [ + -105.06600967399993, + 26.211640242999977 + ], + [ + -105.10181464999994, + 26.128273834000083 + ], + [ + -105.03684953599986, + 26.020805765000148 + ], + [ + -104.96661354599996, + 26.04278294700009 + ], + [ + -104.86080157299989, + 25.95739482300013 + ], + [ + -104.8135226099999, + 25.868567772000176 + ], + [ + -104.87014756299993, + 25.771526288000018 + ], + [ + -104.94331353099989, + 25.764168821000112 + ], + [ + -105.00728555699993, + 25.85871920300019 + ], + [ + -105.0764466519999, + 25.89191874800008 + ], + [ + -105.08588366899994, + 25.949352220000037 + ], + [ + -105.164108619, + 25.976835810000125 + ], + [ + -105.23525957699991, + 25.905956089000085 + ], + [ + -105.15847765599989, + 25.821651075000034 + ], + [ + -105.23965454499995, + 25.784751925000023 + ], + [ + -105.28443854999989, + 25.711865242000158 + ], + [ + -105.26399257399999, + 25.645880386000158 + ], + [ + -105.2721635879999, + 25.506260677000057 + ], + [ + -105.3947445639999, + 25.516385346000163 + ], + [ + -105.39700365399995, + 25.440412949000063 + ], + [ + -105.34802266199983, + 25.405752438000093 + ], + [ + -105.2342225679999, + 25.40081667100003 + ], + [ + -105.11173261999994, + 25.438959862000047 + ], + [ + -105.07567551699998, + 25.389432202000137 + ], + [ + -104.86225164199988, + 25.30224331000005 + ], + [ + -104.74340061399994, + 25.288250226000116 + ], + [ + -104.75657662999987, + 25.224462098000174 + ], + [ + -104.67662852899991, + 25.10900171700007 + ], + [ + -104.7247086349999, + 24.997195008000176 + ], + [ + -104.7038115439999, + 24.857814519000158 + ], + [ + -104.64053353899999, + 24.82675118600008 + ], + [ + -104.67726857099984, + 24.745723160000125 + ], + [ + -104.76214556699995, + 24.758503383000175 + ], + [ + -104.79190065299997, + 24.886875416000066 + ], + [ + -104.86305261699988, + 24.958801868000137 + ], + [ + -104.97298462999987, + 25.025122671000133 + ], + [ + -105.07717856, + 25.04435561800011 + ], + [ + -105.17112762499994, + 25.141665994000107 + ], + [ + -105.27612252899996, + 25.116291291000152 + ], + [ + -105.27387953199985, + 24.996567036000044 + ], + [ + -105.16650366399989, + 24.946839383000054 + ], + [ + -105.12870060999995, + 24.797102718000076 + ], + [ + -105.00179256099995, + 24.813975824000124 + ], + [ + -104.85973355099998, + 24.621534033000046 + ], + [ + -104.787055577, + 24.570724612000106 + ], + [ + -104.77918966399994, + 24.29548705100018 + ], + [ + -104.717185541, + 24.240324741 + ], + [ + -104.73231454099988, + 24.126010501000167 + ], + [ + -104.70291166299995, + 24.087561538000102 + ], + [ + -104.76561751899999, + 23.997951952000108 + ], + [ + -104.62935660699998, + 23.95408827900019 + ], + [ + -104.58206155, + 23.865919710000128 + ], + [ + -104.50617263699996, + 23.889405300000192 + ], + [ + -104.47881360199989, + 23.783574720000104 + ], + [ + -104.42403467999992, + 23.808267303000093 + ], + [ + -104.41494752299997, + 23.996788041000173 + ], + [ + -104.36647765899994, + 23.980984633000162 + ], + [ + -104.3703616659999, + 23.802247924000028 + ], + [ + -104.46214266699997, + 23.724962753000057 + ], + [ + -104.48252058299994, + 23.481861912000113 + ], + [ + -104.36988859099984, + 23.43067564100005 + ], + [ + -104.31229351699983, + 23.592153341000085 + ], + [ + -104.18967465499998, + 23.674258106000025 + ], + [ + -104.2031705249999, + 23.76683656199998 + ], + [ + -104.16155957299992, + 23.79319429500009 + ], + [ + -104.1147996169999, + 23.670993355000178 + ], + [ + -103.99218762899989, + 23.570953496000072 + ], + [ + -103.99287460899995, + 23.47874417900016 + ], + [ + -103.90342763199993, + 23.347169757000017 + ], + [ + -103.82522564899995, + 23.370926585000177 + ], + [ + -103.93119067499998, + 23.51515919000019 + ], + [ + -103.82565262299994, + 23.52299979000003 + ], + [ + -103.69963858799997, + 23.426839747000088 + ], + [ + -103.53775755099997, + 23.429582808000134 + ], + [ + -103.56137859199993, + 23.565727715000094 + ], + [ + -103.42752060399988, + 23.62241670500009 + ], + [ + -103.31851965299995, + 23.480420225000103 + ], + [ + -103.1692805369999, + 23.453739453000026 + ], + [ + -103.07443963799989, + 23.404337857000087 + ], + [ + -103.10905455099993, + 23.354658652000182 + ], + [ + -103.20821363899995, + 23.416071516000045 + ], + [ + -103.33278665799992, + 23.34790082700016 + ], + [ + -103.36168662199998, + 23.211135994000188 + ], + [ + -103.42571262699994, + 23.160566464000055 + ], + [ + -103.35401164799998, + 23.097219895000137 + ], + [ + -103.28413356599992, + 23.07920953200005 + ], + [ + -103.27687064599985, + 22.962328586000126 + ], + [ + -103.45188159999998, + 22.87133632200016 + ], + [ + -103.42790265099995, + 23.022445775 + ], + [ + -103.48265056099996, + 23.025188501000116 + ], + [ + -103.5090485259999, + 22.92207483100009 + ], + [ + -103.59622953999997, + 22.81789330700002 + ], + [ + -103.65138262999989, + 22.687758224999982 + ], + [ + -103.77076758599998, + 22.62870922600007 + ], + [ + -103.85126453399994, + 22.696910760000094 + ], + [ + -103.96419559199984, + 22.580175659000076 + ], + [ + -103.90975965699994, + 22.551986146000104 + ], + [ + -103.86991862699995, + 22.456410153000036 + ], + [ + -103.70313266799997, + 22.476154229000088 + ], + [ + -103.59935766599989, + 22.55186611700003 + ], + [ + -103.61863654599995, + 22.611869982000144 + ], + [ + -103.55030056599986, + 22.701993211000058 + ], + [ + -103.44338251799996, + 22.777234371000134 + ], + [ + -103.33290853099999, + 22.78428589800012 + ], + [ + -103.256050669, + 22.871876451000162 + ], + [ + -103.18096155699999, + 22.902984879000144 + ], + [ + -103.20146151299991, + 22.78484296000005 + ], + [ + -103.05100266299996, + 22.845067940000035 + ], + [ + -103.00926162399998, + 22.78547612900013 + ], + [ + -103.04935461299993, + 22.66288341900014 + ], + [ + -103.18473056399989, + 22.62474240600011 + ], + [ + -103.24359164099997, + 22.439499329000057 + ], + [ + -103.2443696489999, + 22.368478792000076 + ], + [ + -103.35457658899992, + 22.334283812000137 + ], + [ + -103.38982366499994, + 22.44164107200004 + ], + [ + -103.51598354499998, + 22.389048821000188 + ], + [ + -103.50640051599993, + 22.272439113000132 + ], + [ + -103.56678760199992, + 22.195991295000056 + ], + [ + -103.66394056499996, + 22.193553334000057 + ], + [ + -103.64155551899984, + 22.125538046000145 + ], + [ + -103.55659453699997, + 22.155397235000066 + ], + [ + -103.40745566899989, + 22.111528700000065 + ], + [ + -103.35540757099994, + 22.031214813000133 + ], + [ + -103.44445757999989, + 21.998947838000106 + ], + [ + -103.5898815889999, + 22.079901265000046 + ], + [ + -103.66094956699999, + 22.041033374000108 + ], + [ + -103.60830652099992, + 21.960716637000075 + ], + [ + -103.63597853599998, + 21.881285867000145 + ], + [ + -103.74064654599988, + 21.87217339700004 + ], + [ + -103.72639462899991, + 21.701779699000042 + ], + [ + -103.5683136109999, + 21.788891142000182 + ], + [ + -103.52294153099996, + 21.739176565000037 + ], + [ + -103.53675859499998, + 21.565278226000032 + ], + [ + -103.63270557099997, + 21.500340772000186 + ], + [ + -103.59667160099997, + 21.422278934000133 + ], + [ + -103.678123584, + 21.351337020000187 + ], + [ + -103.61725654999998, + 21.20219597300013 + ], + [ + -103.64651458799989, + 21.143235487000084 + ], + [ + -103.51557953799994, + 21.112953012000162 + ], + [ + -103.56247762699991, + 21.198324372000116 + ], + [ + -103.55338259199993, + 21.250768430999983 + ], + [ + -103.42704065599997, + 21.322835532000056 + ], + [ + -103.3338695999999, + 21.34883301100001 + ], + [ + -103.42668962199997, + 21.422523015000024 + ], + [ + -103.25471459399995, + 21.611900551000133 + ], + [ + -103.19660151799997, + 21.711005156000112 + ], + [ + -103.23889157299999, + 21.79305476900015 + ], + [ + -103.23363461099996, + 21.972275281000066 + ], + [ + -103.19832651399997, + 22.050568963000103 + ], + [ + -103.21739953499997, + 22.118499426000028 + ], + [ + -103.11083251999997, + 22.127965613000185 + ], + [ + -103.12344359699995, + 22.060525490000146 + ], + [ + -103.00399762099988, + 21.947169637000115 + ], + [ + -103.0268245609999, + 21.838336492000167 + ], + [ + -103.08673857199994, + 21.791067921999968 + ], + [ + -103.118102648, + 21.694816013000093 + ], + [ + -103.06185152799992, + 21.64142295500011 + ], + [ + -103.14446255999997, + 21.521631477000085 + ], + [ + -103.1265185819999, + 21.462466640000116 + ], + [ + -103.04058060499995, + 21.402671148000138 + ], + [ + -102.89182260999996, + 21.560132408000015 + ], + [ + -102.88227059299993, + 21.646906564000062 + ], + [ + -102.79373154399997, + 21.763042526 + ], + [ + -102.68032858499993, + 21.817339489000062 + ], + [ + -102.571647655, + 21.842609251000113 + ], + [ + -102.48955563099992, + 21.81518047800006 + ], + [ + -102.55094167199996, + 21.724674364000123 + ], + [ + -102.6011506129999, + 21.71235212800019 + ], + [ + -102.63543662099994, + 21.53821071400006 + ], + [ + -102.76488455399993, + 21.426877749000084 + ], + [ + -102.69148255099998, + 21.277350799000146 + ], + [ + -102.62060551299999, + 21.345039194000094 + ], + [ + -102.49047059899988, + 21.276467849000085 + ], + [ + -102.41243759499991, + 21.31507674000011 + ], + [ + -102.33988166199998, + 21.29924282100012 + ], + [ + -102.2094346049999, + 21.18416113500001 + ], + [ + -102.06108866499994, + 21.1654440100001 + ], + [ + -101.77391862699994, + 21.162026372000128 + ], + [ + -101.63191963199989, + 21.107633353000097 + ], + [ + -101.45664263699996, + 21.10390659100011 + ], + [ + -101.40044365299991, + 21.223485001000142 + ], + [ + -101.28583554399995, + 21.243117933000065 + ], + [ + -101.168067625, + 21.31852069600012 + ], + [ + -101.10888652699992, + 21.252572217000022 + ], + [ + -101.04956863599995, + 21.13314904000015 + ], + [ + -100.96541566899992, + 21.128487193000183 + ], + [ + -101.06521563799993, + 20.907102354000074 + ], + [ + -100.86864458499991, + 20.866296567000177 + ], + [ + -100.79127458999994, + 20.81115973800007 + ], + [ + -100.74114259399994, + 20.89280333 + ], + [ + -100.66789951299995, + 20.883568820000107 + ], + [ + -100.53664360299996, + 20.739590857000053 + ], + [ + -100.38545954999995, + 20.657098345000065 + ], + [ + -100.36844663399995, + 20.51977209400019 + ], + [ + -100.440635607, + 20.40247473500017 + ], + [ + -100.39337961099994, + 20.389860473000056 + ], + [ + -100.21764362299996, + 20.42869936300019 + ], + [ + -100.08253455199997, + 20.367697883000062 + ], + [ + -99.96777355699993, + 20.244728825000152 + ], + [ + -99.82595862799991, + 20.212086677000116 + ], + [ + -99.71159359399996, + 20.25680698000008 + ], + [ + -99.67739861399997, + 20.31310269200003 + ], + [ + -99.59782451299992, + 20.321666315000073 + ], + [ + -99.54334264599987, + 20.421445831000085 + ], + [ + -99.46956664199996, + 20.37622915200012 + ], + [ + -99.45561261799998, + 20.307837180000092 + ], + [ + -99.48143759699997, + 20.19274660900004 + ], + [ + -99.45516167099993, + 20.06158407300012 + ], + [ + -99.39514959099989, + 20.046137231000102 + ], + [ + -99.45785561499991, + 19.954975317000105 + ], + [ + -99.27362054499997, + 19.782517324000082 + ], + [ + -99.28189063299999, + 19.68484485000016 + ], + [ + -99.23233061899998, + 19.605074613000056 + ], + [ + -99.26679951999995, + 19.47186722800012 + ], + [ + -99.18422654199992, + 19.39426170100012 + ], + [ + -99.19901255399998, + 19.319395045000135 + ], + [ + -99.09145362499999, + 19.214284303000056 + ], + [ + -98.91141554199999, + 19.16397829900012 + ], + [ + -98.85845951599993, + 19.203686727000047 + ], + [ + -98.84835865199994, + 19.44758250800004 + ], + [ + -98.78556059499988, + 19.56449094600009 + ], + [ + -98.63124053699994, + 19.70806356000014 + ], + [ + -98.52054560399995, + 19.64981084200008 + ], + [ + -98.45604652299988, + 19.686828847000072 + ], + [ + -98.3612896109999, + 19.602568591000022 + ], + [ + -98.22791257599994, + 19.61188407100019 + ], + [ + -98.41004965599996, + 19.72194684200008 + ], + [ + -98.52520761799997, + 19.732024069000147 + ], + [ + -98.54990355499996, + 19.841394829000023 + ], + [ + -98.52935062499995, + 19.96079990200019 + ], + [ + -98.62467951899998, + 20.069819796000047 + ], + [ + -98.77894559699996, + 20.128593197999976 + ], + [ + -98.84177366099993, + 20.189937832999988 + ], + [ + -98.8737796229999, + 20.28646634500012 + ], + [ + -98.95983863499987, + 20.403696648000107 + ], + [ + -99.0103525099999, + 20.39995899000013 + ], + [ + -99.10584267099989, + 20.46507615200005 + ], + [ + -99.11375451699996, + 20.562489625000126 + ], + [ + -99.17404152299991, + 20.595763937000072 + ], + [ + -99.28301967599987, + 20.57841792300019 + ], + [ + -99.30880760699989, + 20.75447292600012 + ], + [ + -99.450652543, + 20.749173384000187 + ], + [ + -99.44510657299992, + 20.85310931900011 + ], + [ + -99.39286753499988, + 20.877636947000042 + ], + [ + -99.50680559399996, + 21.046486866000123 + ], + [ + -99.61775164999989, + 21.03310934900003 + ], + [ + -99.75319666799999, + 21.093453017000115 + ], + [ + -99.797874558, + 21.153725606000023 + ], + [ + -99.91515364499998, + 21.124863361 + ], + [ + -100.03418756699989, + 21.158394494000163 + ], + [ + -100.11507460899998, + 21.152148970000155 + ], + [ + -100.15534965299992, + 21.243102678000184 + ], + [ + -100.21535452499984, + 21.263830622000114 + ], + [ + -100.27279654599988, + 21.354529855000123 + ], + [ + -100.18749257599995, + 21.394757626000114 + ], + [ + -100.1792446149999, + 21.488798221000025 + ], + [ + -100.03372153299995, + 21.383518164000122 + ], + [ + -99.92586554899998, + 21.455335316000173 + ], + [ + -99.85089864599996, + 21.467549426000062 + ], + [ + -99.66143058599994, + 21.562776228000132 + ], + [ + -99.6715165299999, + 21.605401055000016 + ], + [ + -99.58988953299996, + 21.69569996900003 + ], + [ + -99.58756254899998, + 21.823226100000113 + ], + [ + -99.61878161799996, + 21.956393083000137 + ], + [ + -99.53948261199997, + 22.04780612000002 + ], + [ + -99.58045955699998, + 22.152727599000116 + ], + [ + -99.57978866899998, + 22.257169799999986 + ], + [ + -99.6281586209999, + 22.289830054000163 + ], + [ + -99.58501461799989, + 22.415317370000025 + ], + [ + -99.62908163599997, + 22.461419179000018 + ], + [ + -99.57611052299995, + 22.518883998000035 + ], + [ + -99.64923055799989, + 22.64309257200017 + ], + [ + -99.66873960499998, + 22.94110896000018 + ], + [ + -99.62481658899998, + 22.967406511000092 + ], + [ + -99.67562852399988, + 23.18987596800008 + ], + [ + -99.72178665899992, + 23.28363224900005 + ], + [ + -99.69452652999996, + 23.39498952000008 + ], + [ + -99.75324259999996, + 23.42328900500013 + ], + [ + -99.83331257499998, + 23.32619404400009 + ], + [ + -99.8441086329999, + 23.47324732700008 + ], + [ + -99.80903657099998, + 23.52787252500002 + ], + [ + -99.84499359499995, + 23.633265235000124 + ], + [ + -99.90525059399994, + 23.640117944000053 + ], + [ + -99.92774158699996, + 23.76863230099997 + ], + [ + -100.00588254999997, + 23.916440961000035 + ], + [ + -99.982673563, + 23.985258565000095 + ], + [ + -100.02116359799999, + 24.081792776999976 + ], + [ + -99.95621457699991, + 24.11680013100016 + ], + [ + -99.84126264199989, + 24.06621568000014 + ], + [ + -99.77226264699993, + 24.14343061000011 + ], + [ + -99.82405861799992, + 24.19733412700009 + ], + [ + -99.91591656599996, + 24.143190553000068 + ], + [ + -99.98808257299999, + 24.17514505000014 + ], + [ + -100.01329064399988, + 24.32686856200013 + ], + [ + -100.14753755199996, + 24.436795210000184 + ], + [ + -100.15615867499997, + 24.578504192000025 + ], + [ + -100.21829254999994, + 24.654493520000187 + ], + [ + -100.25649256999992, + 24.775481599000045 + ], + [ + -100.39925364799996, + 24.953397217000145 + ], + [ + -100.54016852799992, + 25.060851874000093 + ], + [ + -100.60107462199989, + 25.13317244400008 + ], + [ + -100.74405664699992, + 25.146137739000153 + ], + [ + -100.78829163799992, + 25.12084015000005 + ], + [ + -100.90061165499998, + 25.14491180200008 + ], + [ + -100.92318764099997, + 25.075417275000063 + ], + [ + -100.79225158399993, + 24.977805822000107 + ], + [ + -100.84450554199998, + 24.896849880000048 + ], + [ + -100.99290462299996, + 24.98268274800006 + ], + [ + -100.94045251699993, + 25.045782721000137 + ], + [ + -101.10697964399998, + 25.11985410300008 + ], + [ + -101.06796255499995, + 25.16082417500013 + ], + [ + -101.07851453299992, + 25.27845060700008 + ], + [ + -101.03118863099996, + 25.360525533000157 + ], + [ + -100.80200962799995, + 25.425650741000084 + ], + [ + -100.80702954999998, + 25.526937827000097 + ], + [ + -100.77484153299997, + 25.6113870100001 + ], + [ + -100.60660567199994, + 25.695285838000075 + ], + [ + -100.53889464699995, + 25.604935124000065 + ], + [ + -100.3976746649999, + 25.522264916000097 + ], + [ + -100.42816165899995, + 25.635121710000135 + ], + [ + -100.22650161799993, + 25.656993784000065 + ], + [ + -100.05813566999984, + 25.40800432000009 + ], + [ + -100.12004859799998, + 25.33688487800015 + ], + [ + -99.9457095379999, + 25.128070715000092 + ], + [ + -99.8875575699999, + 25.02540463800011 + ], + [ + -99.74260764199994, + 24.842808398000102 + ], + [ + -99.68959059499991, + 24.62887490300011 + ], + [ + -99.64880358399995, + 24.54484481500009 + ], + [ + -99.56477366299998, + 24.47258543400011 + ], + [ + -99.55649552799997, + 24.421790933000125 + ], + [ + -99.62078858099994, + 24.25652193000019 + ], + [ + -99.6288296759999, + 24.17408809200009 + ], + [ + -99.41500061999994, + 24.115980045000185 + ], + [ + -99.39775854299995, + 24.01470804700017 + ], + [ + -99.31603951299996, + 23.96895324900015 + ], + [ + -99.13035554699997, + 23.959838767000065 + ], + [ + -99.05163556199994, + 24.055644089000054 + ], + [ + -99.04978953199992, + 24.115431198000124 + ], + [ + -98.94832659399992, + 24.157754948000104 + ], + [ + -98.9594495469999, + 24.25291737700013 + ], + [ + -98.88788552799997, + 24.300976024000192 + ], + [ + -98.89749152399997, + 24.391139486000043 + ], + [ + -98.77168250999995, + 24.41663623000005 + ], + [ + -98.77919755699997, + 24.28989229900003 + ], + [ + -98.70137057999995, + 24.246882406 + ], + [ + -98.68031356299991, + 24.321705812000175 + ], + [ + -98.58877563699997, + 24.337181152000028 + ], + [ + -98.59854155999994, + 24.40784562500005 + ], + [ + -98.48210166899992, + 24.40144403100004 + ], + [ + -98.30131558499988, + 24.21055523800004 + ], + [ + -98.31630661799989, + 24.117885084000136 + ], + [ + -98.39522558999988, + 24.013822247000064 + ], + [ + -98.49299663499988, + 23.999830001000134 + ], + [ + -98.53742256599998, + 24.03205540099998 + ], + [ + -98.71684256799989, + 23.975555171000167 + ], + [ + -98.65137453899996, + 23.836008218000075 + ], + [ + -98.55133065799993, + 23.913410065000107 + ], + [ + -98.36683658699997, + 23.83160235400004 + ], + [ + -98.25122851599997, + 23.910584190000122 + ], + [ + -98.17523952299996, + 24.009452426000053 + ], + [ + -98.08735660899993, + 23.9255326440001 + ], + [ + -97.9230495139999, + 23.89955293500003 + ], + [ + -97.8056795679999, + 23.921672610000087 + ], + [ + -97.76688359399998, + 23.998406922000072 + ], + [ + -97.7767552759999, + 24.110902161000126 + ], + [ + -97.91027059399994, + 24.090039845000092 + ], + [ + -98.01007078799995, + 24.028019861000075 + ], + [ + -98.11029811799989, + 24.0186387870001 + ], + [ + -98.13890836099995, + 24.09471813199997 + ], + [ + -98.13968657799995, + 24.356349397000145 + ], + [ + -98.1087569359999, + 24.434636004000026 + ], + [ + -98.19015495499997, + 24.47198086500009 + ], + [ + -98.09676353999993, + 24.550644933000058 + ], + [ + -98.09522244999988, + 24.672281008000027 + ], + [ + -98.15908821399995, + 24.883572361000063 + ], + [ + -98.23604584499992, + 24.94892568400013 + ], + [ + -98.36303711299996, + 25.01080509000002 + ], + [ + -98.35563657699998, + 25.104163896000102 + ], + [ + -98.31147003199993, + 25.152212859000088 + ], + [ + -98.34774779099996, + 25.254703173000053 + ], + [ + -98.41855626799992, + 25.29892637500018 + ], + [ + -98.36897281799986, + 25.36138831700015 + ], + [ + -98.2173614319999, + 25.384307739000064 + ], + [ + -98.21305845899997, + 25.469541957000047 + ], + [ + -98.30185699799989, + 25.479726890000165 + ], + [ + -98.24040988699994, + 25.569109852000054 + ], + [ + -98.4215392459999, + 25.69293539800009 + ], + [ + -98.40827184699992, + 25.819702354000185 + ], + [ + -98.47795870199997, + 25.921922633000065 + ], + [ + -98.54045102099991, + 25.953180577000182 + ], + [ + -98.55228419299993, + 26.08498628200016 + ], + [ + -98.51071166699995, + 26.139459509 + ], + [ + -98.43037405799993, + 26.147373521000077 + ], + [ + -98.420993722, + 26.296188444000165 + ], + [ + -98.47650971299998, + 26.461676799000145 + ], + [ + -98.44439823499988, + 26.5134542940001 + ], + [ + -98.33933928799996, + 26.5821722820001 + ], + [ + -98.34569079499994, + 26.682787636000114 + ], + [ + -98.45418530199998, + 26.722434686000156 + ], + [ + -98.60885369599993, + 26.721614781000085 + ], + [ + -98.74726604299997, + 26.90665961800005 + ], + [ + -98.8200820159999, + 26.865682056000082 + ], + [ + -98.87339729699983, + 26.962569750000114 + ], + [ + -98.80670211299997, + 27.02521607100016 + ], + [ + -98.67222829899993, + 27.051144092000072 + ], + [ + -98.65103003799993, + 27.188306838000187 + ], + [ + -98.68101929799997, + 27.284379256000022 + ], + [ + -98.62455322399995, + 27.3239078470001 + ], + [ + -98.42085479799994, + 27.35072793300003 + ], + [ + -98.4652556819999, + 27.40752331100009 + ], + [ + -98.39311037499994, + 27.469497301000047 + ], + [ + -98.29241952499996, + 27.46314034100004 + ], + [ + -98.30738235099994, + 27.680849609000063 + ], + [ + -98.23765351499998, + 27.771639268000115 + ], + [ + -98.09372199699999, + 27.859395764000055 + ], + [ + -98.12482700499999, + 27.949362856000164 + ], + [ + -98.09590638899988, + 27.992663725000057 + ], + [ + -97.92165204799994, + 28.015064464000147 + ], + [ + -97.83224373699989, + 28.11694014900013 + ], + [ + -97.88234340099984, + 28.240893912000047 + ], + [ + -98.0642278489999, + 28.32076430000012 + ], + [ + -98.10026805699994, + 28.430712975000176 + ], + [ + -98.15986704499988, + 28.45864961000018 + ], + [ + -98.20677155599998, + 28.56757406500003 + ], + [ + -98.19448423799997, + 28.611672535000082 + ], + [ + -98.24661621299992, + 28.72143006500005 + ], + [ + -98.32374465099991, + 28.81444722300006 + ], + [ + -98.32828236599994, + 28.884707491000142 + ], + [ + -98.40214236799994, + 28.941536335000137 + ], + [ + -98.62532409099998, + 28.916128129000185 + ], + [ + -98.67456064399983, + 28.938050212000064 + ], + [ + -98.71539403099996, + 29.046726657000193 + ], + [ + -98.7965625899999, + 29.084860692000177 + ], + [ + -98.84787905899998, + 29.181857783000055 + ], + [ + -98.7938865139999, + 29.24920963000011 + ], + [ + -98.90773324599996, + 29.38714349600002 + ], + [ + -98.87656908499997, + 29.51696175600017 + ], + [ + -99.01395691, + 29.466585420000058 + ], + [ + -99.08901392499996, + 29.50463797600014 + ], + [ + -99.20562730799998, + 29.483350249000125 + ], + [ + -99.28390468999999, + 29.514396365000096 + ], + [ + -99.554385589, + 29.46721642600005 + ], + [ + -99.8555063419999, + 29.323408135000136 + ], + [ + -99.93191120899996, + 29.329013496000186 + ], + [ + -100.06107942099993, + 29.433513126000094 + ], + [ + -100.4400816729999, + 29.567977896000116 + ], + [ + -100.56403262299995, + 29.567995113 + ], + [ + -100.68623697599998, + 29.616672242000107 + ], + [ + -100.77137729399993, + 29.683577194 + ], + [ + -100.75075867099997, + 29.740349663000075 + ], + [ + -100.65311167099992, + 29.729744658000072 + ], + [ + -100.60009531599997, + 29.776118264000104 + ], + [ + -100.67009363699992, + 29.829558865000024 + ], + [ + -100.94271609999998, + 29.779914007 + ], + [ + -101.00959083999999, + 29.65267371500005 + ], + [ + -101.08447639499991, + 29.745793649000063 + ], + [ + -101.07364080399992, + 29.83491599600012 + ], + [ + -101.21502426599994, + 29.963122434000127 + ], + [ + -101.33673816199996, + 30.163352588000066 + ], + [ + -101.42748959599993, + 30.123391418000153 + ], + [ + -101.65304774399993, + 30.21961957900004 + ], + [ + -101.74331639799993, + 30.303072639000106 + ], + [ + -101.65893747299992, + 30.35126470100016 + ], + [ + -101.73111807199996, + 30.418985894000173 + ], + [ + -101.63778607699999, + 30.560630979000166 + ], + [ + -101.64657179599999, + 30.63734078500005 + ], + [ + -101.7587242109999, + 30.659334627000135 + ], + [ + -101.82067494299997, + 30.76016712000012 + ], + [ + -101.82054960699998, + 30.822777237000025 + ], + [ + -101.87330615299993, + 30.9660808700001 + ], + [ + -101.98785450899999, + 31.007987672000013 + ], + [ + -102.02652004599997, + 31.278438476000133 + ], + [ + -102.24878245799994, + 31.408362451000187 + ], + [ + -102.34208850199997, + 31.426159851000136 + ], + [ + -102.39437362399991, + 31.367429386000083 + ], + [ + -102.48324430399998, + 31.340655718000107 + ], + [ + -102.63318110299997, + 31.368112653000026 + ], + [ + -102.78913393199997, + 31.362100641000154 + ], + [ + -102.85383858699998, + 31.40068741200008 + ], + [ + -102.80610997499997, + 31.4977105480001 + ], + [ + -102.9111827029999, + 31.615245727000115 + ], + [ + -102.95436748499998, + 31.719291863000137 + ], + [ + -103.04544712899991, + 31.74149448500009 + ], + [ + -103.10726602999989, + 31.966981794 + ], + [ + -103.0897440789999, + 32.08363707900003 + ], + [ + -103.16021605299989, + 32.19382303100002 + ], + [ + -103.23397550699991, + 32.177010784000174 + ], + [ + -103.3490395799999, + 32.22060610199998 + ], + [ + -103.30924215099998, + 32.30878498300018 + ], + [ + -103.33916954899985, + 32.40183774900015 + ], + [ + -103.54518375499998, + 32.46186483600019 + ], + [ + -103.6675876, + 32.46415513700009 + ], + [ + -103.69495113799991, + 32.50182045300005 + ], + [ + -103.65637230899989, + 32.60686568400013 + ], + [ + -103.75584393899993, + 32.61840769600013 + ], + [ + -104.04280670199995, + 32.792151524000076 + ], + [ + -104.03653027699994, + 32.93019182600011 + ], + [ + -103.95454387799998, + 33.07151414700007 + ], + [ + -104.03847798599998, + 33.127739741000084 + ], + [ + -104.05335294199989, + 33.243714239000155 + ], + [ + -103.96742810599994, + 33.383321765 + ], + [ + -104.03549579299994, + 33.42276399500014 + ], + [ + -104.00883736399993, + 33.51294398000016 + ], + [ + -104.22952774799995, + 33.66098047200006 + ], + [ + -104.18687229699998, + 33.774348175 + ], + [ + -104.30674033199989, + 33.828507186000024 + ], + [ + -104.39473899899991, + 33.76926052100009 + ], + [ + -104.48293346999998, + 33.79657551100007 + ], + [ + -104.61368115099998, + 33.76071239400005 + ], + [ + -104.63989338799996, + 33.70910515600008 + ], + [ + -104.59105445699993, + 33.592381745000125 + ], + [ + -104.62147114599998, + 33.46115643500008 + ], + [ + -104.76604324499993, + 33.329034185000125 + ], + [ + -104.712458444, + 33.24404357200012 + ], + [ + -104.69614187399992, + 33.079456139000115 + ], + [ + -104.58268706099994, + 33.04947969299997 + ], + [ + -104.58641434299989, + 33.002659535000134 + ], + [ + -104.74332353499994, + 32.95565280500011 + ], + [ + -104.8140926179999, + 32.86472207500003 + ], + [ + -104.77536980499997, + 32.74873284500018 + ], + [ + -104.87224194699985, + 32.70951248200004 + ], + [ + -104.97756644899988, + 32.7025458490001 + ], + [ + -105.09178015499992, + 32.646939622000104 + ], + [ + -105.08191926999984, + 32.61961543100011 + ], + [ + -104.87333290899994, + 32.52335222700009 + ], + [ + -104.64592810299985, + 32.2336616230001 + ], + [ + -104.42601339699996, + 32.22434025000007 + ], + [ + -104.48133582799994, + 32.15837133600013 + ], + [ + -104.72252945799994, + 32.01470017300005 + ], + [ + -104.8264071889999, + 31.86911210300019 + ], + [ + -104.93354437999983, + 31.91950230800012 + ], + [ + -104.96433093199983, + 32.037585879000176 + ], + [ + -105.00752041599992, + 32.06614754300011 + ], + [ + -105.01801662699984, + 32.22198647000016 + ], + [ + -104.94153411199983, + 32.28608223700007 + ], + [ + -105.12953017399991, + 32.4129357760001 + ], + [ + -105.18133076799995, + 32.504079263999984 + ], + [ + -105.30508843099989, + 32.43622215700009 + ], + [ + -105.37117397699996, + 32.437859993000075 + ], + [ + -105.40357648499997, + 32.3531830120001 + ], + [ + -105.5804001969999, + 32.518676224000046 + ], + [ + -105.80757935899999, + 32.53930775800018 + ], + [ + -105.93402703599986, + 32.813655425000036 + ], + [ + -105.88599912599989, + 32.99401982900008 + ], + [ + -105.92391898299991, + 33.13807238000015 + ], + [ + -105.98353217999994, + 33.17133940400004 + ], + [ + -105.93809469799999, + 33.33552591000017 + ], + [ + -106.02607351699987, + 33.42638438700004 + ], + [ + -105.85906916899995, + 33.55696980200014 + ], + [ + -105.71918464099997, + 33.62652683400006 + ], + [ + -105.80654201599998, + 33.70297692100007 + ], + [ + -105.81198210499997, + 33.80195793900009 + ], + [ + -105.97363106499995, + 33.84827593900013 + ], + [ + -106.05670302399994, + 33.846752978000154 + ], + [ + -106.183035051, + 33.728315630000054 + ], + [ + -106.39356995299994, + 33.69956803399998 + ], + [ + -106.35249938599992, + 33.847063779 + ], + [ + -106.27161186699988, + 33.810540599000035 + ], + [ + -106.29235757199996, + 33.97936014100003 + ], + [ + -106.3366807829999, + 34.039015923000136 + ], + [ + -106.36012616599993, + 34.150924729999986 + ], + [ + -106.42096107799995, + 34.164716625000096 + ], + [ + -106.5682510709999, + 34.062981416000014 + ], + [ + -106.67951264699991, + 34.066954723000094 + ], + [ + -106.73168361599994, + 34.11003064600004 + ], + [ + -106.66218747499994, + 34.2738941500001 + ], + [ + -106.4976801819999, + 34.47076713500019 + ], + [ + -106.52409443, + 34.62814485700005 + ], + [ + -106.43809675699998, + 34.86302408600011 + ], + [ + -106.49628486899991, + 35.01600696000003 + ], + [ + -106.4716727149999, + 35.15138082200008 + ], + [ + -106.5047145989999, + 35.26319173900015 + ], + [ + -106.37776254299996, + 35.317229919000056 + ], + [ + -106.27960473399997, + 35.26739448600017 + ], + [ + -106.21679309399997, + 35.36417509400019 + ], + [ + -106.14040993499992, + 35.40102811000014 + ], + [ + -106.08556070399993, + 35.35268027300009 + ], + [ + -106.08698363499997, + 35.278164760000095 + ], + [ + -106.01861049899992, + 35.29095754500014 + ], + [ + -105.89590368799998, + 35.25576638300004 + ], + [ + -105.85840254299995, + 35.38976944700005 + ], + [ + -105.85287161999992, + 35.50354233400009 + ], + [ + -105.93027035599988, + 35.59959825900012 + ], + [ + -105.90166722599997, + 35.66769499000014 + ], + [ + -105.92267207699996, + 35.77131021800005 + ], + [ + -105.91103265199996, + 35.92055572700008 + ], + [ + -105.85292918799996, + 36.01754134500004 + ], + [ + -105.90439529599985, + 36.05473544400019 + ], + [ + -105.87111315599998, + 36.17277564500006 + ], + [ + -105.71804114599996, + 36.304643794000185 + ], + [ + -105.6004652979999, + 36.32969737500002 + ], + [ + -105.51651066499994, + 36.44772168800017 + ], + [ + -105.56203132999991, + 36.54177928000013 + ], + [ + -105.66504393999998, + 36.5708165850001 + ], + [ + -105.62263376599998, + 36.6781858650001 + ], + [ + -105.57402681599996, + 36.70141540300011 + ], + [ + -105.53252302199996, + 36.943434984000135 + ], + [ + -105.45412004299999, + 36.9280040430001 + ], + [ + -105.38578897199994, + 36.99021456500009 + ], + [ + -105.34442188399998, + 37.12876170099997 + ], + [ + -105.40049972199995, + 37.27676592000017 + ], + [ + -105.39622689899988, + 37.3678585240001 + ], + [ + -105.48662645099989, + 37.495714909000185 + ], + [ + -105.58953926099997, + 37.54970960600008 + ], + [ + -105.59228853399998, + 37.623695241000064 + ], + [ + -105.50423957799995, + 37.751597272000026 + ], + [ + -105.5070514539999, + 37.808405601 + ], + [ + -105.63862684899993, + 37.89201878900019 + ], + [ + -105.74757766999994, + 38.04663412600007 + ], + [ + -105.85467083499992, + 38.26942651100012 + ], + [ + -106.05088439999997, + 38.42905613900018 + ], + [ + -106.02140404899995, + 38.234508586000175 + ], + [ + -105.95568511699997, + 38.188368396000044 + ], + [ + -106.09165735899995, + 38.12035979600017 + ], + [ + -106.17771877999985, + 38.146417412 + ], + [ + -106.22338051299994, + 38.071147131000146 + ], + [ + -106.14374650099995, + 38.05159465600019 + ], + [ + -106.31135763699996, + 37.811335983 + ], + [ + -106.33013441199995, + 37.73376167700019 + ], + [ + -106.45000583099988, + 37.74047915900019 + ], + [ + -106.55163610599999, + 37.70048015200007 + ], + [ + -106.41813009599991, + 37.61669455600003 + ], + [ + -106.29992914299993, + 37.6340068290001 + ], + [ + -106.21214458999987, + 37.46830478000004 + ], + [ + -106.24808583899994, + 37.380076781000014 + ], + [ + -106.20314361899995, + 37.172493248000194 + ], + [ + -106.21796791899993, + 37.1268982360001 + ], + [ + -106.10600896399995, + 37.05010993200011 + ], + [ + -106.16006813499996, + 36.996446663000086 + ], + [ + -106.0743246159999, + 36.87817092800009 + ], + [ + -106.10801145199997, + 36.82719127600018 + ], + [ + -106.03769868499995, + 36.69629600900004 + ], + [ + -105.98571302499988, + 36.69619079700004 + ], + [ + -105.91226411199995, + 36.44902865400013 + ], + [ + -106.06232843999999, + 36.31964454400003 + ], + [ + -106.20348668299982, + 36.364299004000145 + ], + [ + -106.26306120999999, + 36.300219926000125 + ], + [ + -106.55513388999992, + 36.320677874000125 + ], + [ + -106.59859656899982, + 36.1759851060001 + ], + [ + -106.43120236899989, + 36.23119998200019 + ], + [ + -106.24522462399989, + 36.1590512730001 + ], + [ + -106.14043511999989, + 35.9900319410001 + ], + [ + -106.17164241699999, + 35.84872942300012 + ], + [ + -106.27550829299986, + 35.73268032900012 + ], + [ + -106.500099477, + 35.56610512300017 + ], + [ + -106.56800811399995, + 35.543857957000114 + ], + [ + -106.73943143899999, + 35.628000579 + ], + [ + -106.85404425299993, + 35.566631621000056 + ], + [ + -106.92070528999989, + 35.696956231000115 + ], + [ + -106.89901065099997, + 35.760137018000194 + ], + [ + -106.91528568399991, + 35.97462942400011 + ], + [ + -106.944755623, + 36.0448510010001 + ], + [ + -107.02832434499999, + 36.06556719000008 + ], + [ + -107.22485821099997, + 36.240458028000035 + ], + [ + -107.16353197799998, + 36.31110672000011 + ], + [ + -107.32062479499996, + 36.41036048400008 + ], + [ + -107.25671984499996, + 36.47090548900019 + ], + [ + -107.32856951699995, + 36.51865570800004 + ], + [ + -107.2419800099999, + 36.59084434700003 + ], + [ + -107.3270220679999, + 36.61700051800017 + ], + [ + -107.3297454829999, + 36.81840911500012 + ], + [ + -107.26841610599985, + 36.855378773000155 + ], + [ + -107.28461590999996, + 36.92916952400003 + ], + [ + -107.40834972699997, + 36.97122071000018 + ], + [ + -107.44195492199987, + 37.04045363200015 + ], + [ + -107.5234650129999, + 37.06045491200018 + ], + [ + -107.54973812299994, + 37.1461336270001 + ], + [ + -107.50287935699998, + 37.21890952000018 + ], + [ + -107.6544783899999, + 37.27856683800013 + ], + [ + -107.73177539499994, + 37.250425113 + ], + [ + -107.84846572499993, + 37.322045635 + ], + [ + -107.90614390999997, + 37.20653807100001 + ], + [ + -107.99752421799991, + 37.184907863000035 + ], + [ + -108.02413390999999, + 37.27853322400017 + ], + [ + -108.15875032799994, + 37.31988408500007 + ], + [ + -108.2262422309999, + 37.39377610200012 + ], + [ + -108.40332093299997, + 37.40379988500018 + ], + [ + -108.48477780699989, + 37.54810346500017 + ], + [ + -108.69779762099995, + 37.646570792000034 + ], + [ + -108.6927110179999, + 37.712455126 + ], + [ + -108.77545023599998, + 37.88962882600009 + ], + [ + -108.68678895899984, + 37.86171531900004 + ], + [ + -108.5281547759999, + 37.77080387100011 + ], + [ + -108.47285539799992, + 37.834821187000045 + ], + [ + -108.3898063229999, + 37.86306506200003 + ], + [ + -108.51043371899993, + 37.932830391000095 + ], + [ + -108.41661996599998, + 37.980354900000066 + ], + [ + -108.34619748499983, + 37.923790976000134 + ], + [ + -108.28077183299996, + 37.96250588900017 + ], + [ + -108.17425261999989, + 37.947027956 + ], + [ + -108.23763621999996, + 38.157951874000105 + ], + [ + -108.16703510399992, + 38.20125609900015 + ], + [ + -108.51063171399989, + 38.372319306000065 + ], + [ + -108.50439147499998, + 38.409796101000154 + ], + [ + -108.63385051199992, + 38.461308006000024 + ], + [ + -108.832832812, + 38.62276264600007 + ], + [ + -108.77100006099994, + 38.75024602700017 + ], + [ + -108.6391350479999, + 38.77595033100016 + ], + [ + -108.58591244799993, + 38.755233179000186 + ], + [ + -108.61612682699985, + 38.64818163900014 + ], + [ + -108.49061847099989, + 38.60224282300004 + ], + [ + -108.47413312299994, + 38.55431402200003 + ], + [ + -108.3308501699999, + 38.554011373000094 + ], + [ + -108.18008452999999, + 38.43324251299998 + ], + [ + -108.06418454199985, + 38.38997064000017 + ], + [ + -108.02638447199996, + 38.33301348400005 + ], + [ + -107.87371781399997, + 38.25898394900014 + ], + [ + -107.72403557099994, + 38.135601534000045 + ], + [ + -107.6844590039999, + 38.20652933000008 + ], + [ + -107.72202716499993, + 38.28281454200004 + ], + [ + -107.69987323899994, + 38.402793712000175 + ], + [ + -107.58075267199996, + 38.416781558000025 + ], + [ + -107.54993974399991, + 38.34893246399997 + ], + [ + -107.43394680599994, + 38.39676351500009 + ], + [ + -107.57074869199994, + 38.51167321000008 + ], + [ + -107.53846836799988, + 38.7290271 + ], + [ + -107.57099994099997, + 38.80374221800008 + ], + [ + -107.50372573399994, + 38.86411153600011 + ], + [ + -107.54259264199999, + 38.92668224100015 + ], + [ + -107.75416787899997, + 38.88660173700015 + ], + [ + -107.93603791999993, + 38.97341579900012 + ], + [ + -108.04379730799991, + 38.947919175000095 + ], + [ + -108.12345096999985, + 38.8747473140001 + ], + [ + -108.20009460999995, + 38.874837273000026 + ], + [ + -108.2313262049999, + 38.98813621700003 + ], + [ + -108.2862398119999, + 39.057124582000085 + ], + [ + -108.24094926399988, + 39.11636847300019 + ], + [ + -108.13483626099998, + 39.10477100000014 + ], + [ + -107.78370757799985, + 39.27622967600013 + ], + [ + -107.95003593599995, + 39.31582362500012 + ], + [ + -108.05403287399992, + 39.25850460800012 + ], + [ + -108.07022284299995, + 39.334239860000025 + ], + [ + -107.97373508399988, + 39.453654332000156 + ], + [ + -107.81419277999987, + 39.490247871000065 + ], + [ + -107.71960906699996, + 39.42304653200006 + ], + [ + -107.71925151999989, + 39.36265462800009 + ], + [ + -107.61158616999995, + 39.35817208100019 + ], + [ + -107.49520134999995, + 39.49209046400017 + ], + [ + -107.41269020699991, + 39.54392425800006 + ], + [ + -107.436428262, + 39.593150036000054 + ], + [ + -107.56444536399994, + 39.66945508700013 + ], + [ + -107.81032703099993, + 39.685353518000056 + ], + [ + -107.89074095399997, + 39.72512727700018 + ], + [ + -107.92384084199989, + 39.863639929000044 + ], + [ + -107.84638721699991, + 39.944394234000185 + ], + [ + -107.68060615599995, + 39.98561789000013 + ], + [ + -107.67129252399997, + 40.037412956000026 + ], + [ + -107.74170020499992, + 40.11610107600018 + ], + [ + -107.73506832899994, + 40.171579566 + ], + [ + -107.60610304399995, + 40.23171369000016 + ], + [ + -107.63499252799994, + 40.28612028800012 + ], + [ + -107.6375343329999, + 40.42178773600011 + ], + [ + -107.42532631299997, + 40.45969451800005 + ], + [ + -107.32760090399995, + 40.38909071300009 + ], + [ + -107.24333668499997, + 40.43178467600006 + ], + [ + -107.13959551299996, + 40.40214666800006 + ], + [ + -107.16979261599994, + 40.53672935000003 + ], + [ + -107.2884398, + 40.57666362200018 + ], + [ + -107.33046593499995, + 40.675300714000116 + ], + [ + -107.43864002399994, + 40.68576625900016 + ], + [ + -107.51278674299994, + 40.73127611400008 + ], + [ + -107.5455394569999, + 40.84872986000016 + ], + [ + -107.5048671649999, + 40.96033464100009 + ], + [ + -107.38495640799994, + 40.98469942700001 + ], + [ + -107.47889434099994, + 41.1229479050001 + ], + [ + -107.49847109999996, + 41.30307720200017 + ], + [ + -107.460497106, + 41.35581952600012 + ], + [ + -107.4812985349999, + 41.45420367600008 + ], + [ + -107.40002880599991, + 41.54316580300008 + ], + [ + -107.31767290899995, + 41.530780363000076 + ], + [ + -107.28771938299997, + 41.46678814700016 + ], + [ + -107.14660555899997, + 41.351523402000055 + ], + [ + -107.02264134799998, + 41.32409975600018 + ], + [ + -106.83632550399989, + 41.188300136 + ], + [ + -106.77060031699995, + 41.18899563800005 + ], + [ + -106.58990779399988, + 41.113167400000066 + ], + [ + -106.50583760599994, + 41.11682315200005 + ], + [ + -106.6099214759999, + 41.25835249100004 + ], + [ + -106.57028405499989, + 41.3729304420001 + ], + [ + -106.64420630799998, + 41.481579199000066 + ], + [ + -106.61553706899991, + 41.60304410800006 + ], + [ + -106.65721490599992, + 41.669475493000164 + ], + [ + -106.55790911199995, + 41.72770894000013 + ], + [ + -106.48011106699983, + 41.59961704400001 + ], + [ + -106.2499888609999, + 41.618328548000136 + ], + [ + -106.16277108799994, + 41.577361745000076 + ], + [ + -106.02035935999993, + 41.41813825100007 + ], + [ + -106.07162108499995, + 41.31030524700003 + ], + [ + -105.98660117999992, + 41.2099985750001 + ], + [ + -105.98551585299998, + 41.04789023900008 + ], + [ + -106.08142731099997, + 40.97018706799997 + ], + [ + -106.04462051799993, + 40.914152174000094 + ], + [ + -105.87868526599993, + 40.816448347000176 + ], + [ + -105.80246672599992, + 40.92431189000018 + ], + [ + -105.7095181439999, + 40.967922774000044 + ], + [ + -105.66413531499995, + 41.045421138000165 + ], + [ + -105.49401716199998, + 41.063657401000114 + ], + [ + -105.53890663699997, + 41.21007689400011 + ], + [ + -105.49540406099999, + 41.41342648400018 + ], + [ + -105.54010966299995, + 41.65499888300013 + ], + [ + -105.50411163399997, + 41.76540772200008 + ], + [ + -105.43248925599983, + 41.83678256500008 + ], + [ + -105.49274206899997, + 41.871805764000044 + ], + [ + -105.48299812, + 41.97613023100013 + ], + [ + -105.63935527299998, + 42.05635376100014 + ], + [ + -105.69796305399996, + 42.13830099500012 + ], + [ + -105.66470220199994, + 42.19048441400008 + ], + [ + -105.78406584599998, + 42.21863189000004 + ], + [ + -105.88816284299998, + 42.310613734000185 + ], + [ + -105.94975930499993, + 42.40323033600015 + ], + [ + -106.10756383799998, + 42.44953733600016 + ], + [ + -106.27284827899996, + 42.39430620600018 + ], + [ + -106.41261075699987, + 42.459053291000146 + ], + [ + -106.39708966499995, + 42.57091795499997 + ], + [ + -106.422382659, + 42.650004343000035 + ], + [ + -106.57099171099998, + 42.74843581300007 + ], + [ + -106.40252673999993, + 42.76913401300004 + ], + [ + -106.536478188, + 42.85721220500017 + ], + [ + -106.57775192599996, + 42.9997314470001 + ], + [ + -106.67425564299998, + 43.062263393000194 + ], + [ + -106.72851422999997, + 43.20269602500014 + ], + [ + -106.9069736329999, + 43.32912618600017 + ], + [ + -106.82519777099998, + 43.37531588500019 + ], + [ + -106.75574362999998, + 43.51409353500014 + ], + [ + -106.80901871799989, + 43.62177000700018 + ], + [ + -106.69169972799995, + 43.66096161200011 + ], + [ + -106.667692521, + 43.726673793000145 + ], + [ + -106.817900652, + 43.850308814000186 + ], + [ + -106.81244869999989, + 43.905840969999986 + ], + [ + -106.91250873199994, + 43.935401125000055 + ], + [ + -106.96513482199992, + 43.81507881600004 + ], + [ + -107.0638501649999, + 43.714895378 + ], + [ + -107.12875340499994, + 43.725945454 + ], + [ + -107.11049530899993, + 43.87308975999997 + ], + [ + -107.18878564199997, + 44.003287508000085 + ], + [ + -107.31190606999996, + 44.06411660100002 + ], + [ + -107.39584354199985, + 44.24093249700013 + ], + [ + -107.4799793389999, + 44.30518698500015 + ], + [ + -107.51930744799989, + 44.436252753000076 + ], + [ + -107.62110673999996, + 44.49400842200015 + ], + [ + -107.62932392599987, + 44.56160332200011 + ], + [ + -107.79053642799988, + 44.644495126000095 + ], + [ + -107.8321026459999, + 44.73029205600011 + ], + [ + -108.01260210399994, + 44.82281129300003 + ], + [ + -108.02364109599989, + 44.91722111200011 + ], + [ + -108.1095108259999, + 44.99065996400009 + ], + [ + -108.27529166599999, + 45.03031439000017 + ], + [ + -108.43855842699992, + 45.041654569000116 + ], + [ + -108.61907148099993, + 45.10935701200003 + ], + [ + -108.65156370499994, + 45.231718902000125 + ], + [ + -108.76219907299992, + 45.20923674300002 + ], + [ + -108.8590596819999, + 45.24269281 + ], + [ + -108.99604510499984, + 45.19924726900007 + ], + [ + -109.04914017899983, + 45.087474849000046 + ], + [ + -109.21670122999996, + 45.11384163300005 + ], + [ + -109.21468872399998, + 45.04128208200012 + ], + [ + -109.30782541499997, + 44.99919078 + ], + [ + -109.28319082899998, + 44.82663147400001 + ], + [ + -109.33420148699997, + 44.76039954400005 + ], + [ + -109.26298849399996, + 44.66838397700019 + ], + [ + -109.27090819099993, + 44.609139777000166 + ], + [ + -109.17158660099989, + 44.55117506100015 + ], + [ + -109.20086434499996, + 44.50808976400009 + ], + [ + -109.52461926099988, + 44.48798678800017 + ], + [ + -109.32721521299993, + 44.39738105300006 + ], + [ + -109.49126409099983, + 44.326251868000156 + ], + [ + -109.55308220899991, + 44.26407057900002 + ], + [ + -109.473027963, + 44.22936174400013 + ], + [ + -109.19469955499994, + 44.34516688500014 + ], + [ + -109.13211645299998, + 44.31407703200017 + ], + [ + -109.16493799199992, + 44.23243845800016 + ], + [ + -109.3169654109999, + 44.127546216999974 + ], + [ + -109.23946713599997, + 44.05882301600019 + ], + [ + -109.14075472299999, + 44.038481583000134 + ], + [ + -109.10704536599991, + 43.946429823000074 + ], + [ + -108.93421785999993, + 43.865000458 + ], + [ + -108.96920702499995, + 43.751633497000114 + ], + [ + -109.03214254499994, + 43.67282623800014 + ], + [ + -109.11961578099994, + 43.66873935600006 + ], + [ + -109.19630796799999, + 43.59878183200016 + ], + [ + -109.47008165199992, + 43.68912594700009 + ], + [ + -109.52911185799991, + 43.658095694999986 + ], + [ + -109.73034354099991, + 43.65641002900014 + ], + [ + -109.80540211099998, + 43.60322645500014 + ], + [ + -109.63431785299991, + 43.490699230000075 + ], + [ + -109.51585641099996, + 43.45013987800007 + ], + [ + -109.387557373, + 43.301621364000084 + ], + [ + -109.27974170299996, + 43.22844235500003 + ], + [ + -109.23932445099996, + 43.15281467700015 + ], + [ + -109.14170110199996, + 43.119005955000034 + ], + [ + -109.08071634599997, + 42.98035161500013 + ], + [ + -108.93662552399996, + 42.886794407000025 + ], + [ + -108.88700234199996, + 42.78037330200016 + ], + [ + -108.79839192199995, + 42.74055787300017 + ], + [ + -108.7574701819999, + 42.66635017800007 + ], + [ + -108.56675919599996, + 42.54367371600006 + ], + [ + -108.89656836199993, + 42.48185815400012 + ], + [ + -109.03444369199991, + 42.50995449300018 + ], + [ + -109.06964000199991, + 42.55151916900002 + ], + [ + -109.32044193599995, + 42.587248398000156 + ], + [ + -109.40066479099994, + 42.67112362400019 + ], + [ + -109.55332334699989, + 42.76607318400005 + ], + [ + -109.61059861099983, + 42.82993638900007 + ], + [ + -109.75775936399992, + 42.89820796000015 + ], + [ + -109.88309639699997, + 43.04939868800011 + ], + [ + -109.98690924399995, + 43.071512518000134 + ], + [ + -109.97410644499996, + 43.188566544000025 + ], + [ + -110.12159989799994, + 43.189182025000036 + ], + [ + -110.19639352799993, + 43.08641388900003 + ], + [ + -110.38603597799994, + 43.02216699000007 + ], + [ + -110.36169059599996, + 42.93981968700007 + ], + [ + -110.44148709599989, + 42.88527740000018 + ], + [ + -110.46537117999998, + 42.817023216000166 + ], + [ + -110.37239787999994, + 42.610201276 + ], + [ + -110.43595899099984, + 42.589294902 + ], + [ + -110.35835834499994, + 42.34503116600007 + ], + [ + -110.42284190099997, + 42.223622983999974 + ], + [ + -110.51488552199999, + 42.16381482300011 + ], + [ + -110.57871455299994, + 42.172090956000034 + ], + [ + -110.76757095499994, + 42.13609528600011 + ], + [ + -110.78091084399995, + 42.002940049000074 + ], + [ + -110.85678579799992, + 42.01500500600008 + ], + [ + -110.83931062599999, + 42.21119152900019 + ], + [ + -111.02157826499996, + 42.23987056500005 + ], + [ + -111.04809314299985, + 42.4199638070001 + ], + [ + -111.11870629299995, + 42.44386893000012 + ], + [ + -111.17973421699998, + 42.344823542000086 + ], + [ + -111.27327547699991, + 42.3697969430001 + ], + [ + -111.31980221699985, + 42.45945018500015 + ], + [ + -111.41600216199998, + 42.27301091000004 + ], + [ + -111.39234256299989, + 42.04882280100014 + ], + [ + -111.41040763199999, + 41.989224273000104 + ], + [ + -111.36309200599999, + 41.89451885300019 + ], + [ + -111.38570502099998, + 41.80703583900009 + ], + [ + -111.34004357599997, + 41.76739244300006 + ], + [ + -111.32033750499988, + 41.437750769000104 + ], + [ + -111.27434567699993, + 41.39556339800015 + ], + [ + -111.26114173099995, + 41.24232675500008 + ], + [ + -111.21180345299996, + 41.14262771200009 + ], + [ + -111.08249229199998, + 41.18280118100006 + ], + [ + -111.07660307199995, + 40.962225418000116 + ], + [ + -110.9836268869999, + 40.95347983400018 + ], + [ + -110.84102813399988, + 41.00646521600015 + ], + [ + -110.77559718999993, + 41.06743761200016 + ], + [ + -110.64661790399992, + 41.08373501300014 + ], + [ + -110.52805726699995, + 41.128139358 + ], + [ + -110.48831772799991, + 41.05853607700004 + ], + [ + -110.31112374499997, + 41.10234279800005 + ], + [ + -110.19840202699993, + 41.06892729900005 + ], + [ + -110.29699645599993, + 40.990946895000036 + ], + [ + -110.207065721, + 40.93193987200016 + ], + [ + -110.001632, + 40.9437032350001 + ], + [ + -109.87881687499993, + 40.992240810000055 + ], + [ + -109.71097445899994, + 40.93696493700003 + ], + [ + -109.61428258099988, + 40.97490658600003 + ], + [ + -109.38317537699987, + 40.942286991000174 + ], + [ + -109.25443337299998, + 40.8679580270001 + ], + [ + -109.36868123899984, + 40.73879700300017 + ], + [ + -109.53613986999994, + 40.67597973599999 + ], + [ + -109.6134669029999, + 40.58892490900013 + ], + [ + -109.93002164299992, + 40.59775134400007 + ], + [ + -110.0171794929999, + 40.56495425300005 + ], + [ + -110.09220164899989, + 40.61431096100017 + ], + [ + -110.15433601999996, + 40.55318458300002 + ], + [ + -110.57712283299998, + 40.52053211000009 + ], + [ + -110.57322550499998, + 40.39899245700008 + ], + [ + -110.62096136699995, + 40.38441563700013 + ], + [ + -110.6965586039999, + 40.477492786000084 + ], + [ + -110.81886896299989, + 40.48739760000018 + ], + [ + -110.96300383799985, + 40.45523165600008 + ], + [ + -110.86533407999997, + 40.36988142299998 + ], + [ + -110.892480106, + 40.29698742300019 + ], + [ + -110.98410585999994, + 40.23866343100008 + ], + [ + -110.92693083199998, + 40.14050335600001 + ], + [ + -110.9727653569999, + 40.09135215500015 + ], + [ + -110.81326830899997, + 40.026685746000055 + ], + [ + -110.81630184199997, + 39.965026113000135 + ], + [ + -110.75032196499996, + 39.91248693500012 + ], + [ + -110.45553628199997, + 39.81957891000013 + ], + [ + -110.47510723899995, + 39.752970697000194 + ], + [ + -110.57034340299992, + 39.72183060900005 + ], + [ + -110.73489656899994, + 39.72345886300013 + ], + [ + -110.94060736899985, + 39.803798093000125 + ], + [ + -111.189428008, + 39.60223573000002 + ], + [ + -111.22748429499995, + 39.53802059900005 + ], + [ + -111.14131759199995, + 39.211014723000176 + ], + [ + -111.21417387399998, + 39.19016010000013 + ], + [ + -111.24873189899989, + 39.11195877400013 + ], + [ + -111.23702671799998, + 39.01687702200013 + ], + [ + -111.37826526299989, + 38.917900346000124 + ], + [ + -111.4239384469999, + 38.84660934700014 + ], + [ + -111.407013195, + 38.631492569000045 + ], + [ + -111.46521485499989, + 38.580083058000184 + ], + [ + -111.42163158299996, + 38.45661327100015 + ], + [ + -111.41285048599997, + 38.347545127000046 + ], + [ + -111.47427648799993, + 38.307847189000086 + ], + [ + -111.34470976099993, + 38.18691181500009 + ], + [ + -111.27258853699993, + 38.057203704000074 + ], + [ + -111.39073277499995, + 37.975748371000066 + ], + [ + -111.66474420799995, + 37.93610952299997 + ], + [ + -111.93538869299994, + 37.76014951100018 + ], + [ + -112.04465678499997, + 37.73704515200018 + ], + [ + -112.14151628999997, + 37.67267406600013 + ], + [ + -112.17673225399989, + 37.58292869899998 + ], + [ + -112.26457957999992, + 37.51032258499998 + ], + [ + -112.25186080299994, + 37.460803247000115 + ], + [ + -112.39108640399996, + 37.40516413400019 + ], + [ + -112.5074395179999, + 37.431120314 + ], + [ + -112.7000812089999, + 37.41866329200013 + ], + [ + -112.77776267199982, + 37.50174036400017 + ], + [ + -112.83227198999992, + 37.414195262000135 + ], + [ + -112.89486038799993, + 37.473464673000194 + ], + [ + -113.07167776799997, + 37.4399436330001 + ], + [ + -113.17652981099991, + 37.533774566000034 + ], + [ + -113.10332762899998, + 37.61111730700014 + ], + [ + -113.04628333499988, + 37.72008662300004 + ], + [ + -112.98432078899992, + 37.768198638000115 + ], + [ + -112.81537942499989, + 37.83611353600014 + ], + [ + -112.75265531199994, + 37.887708091000036 + ], + [ + -112.61096405199999, + 38.12118040400003 + ], + [ + -112.5043770609999, + 38.14959438000017 + ], + [ + -112.5832487639999, + 38.25523208200008 + ], + [ + -112.53983774699992, + 38.32691373200015 + ], + [ + -112.59893395699999, + 38.505791827999985 + ], + [ + -112.57518592399998, + 38.69562406700015 + ], + [ + -112.386354897, + 38.77167015700019 + ], + [ + -112.37197471299987, + 38.87913629200017 + ], + [ + -112.30914041799997, + 38.96449098500011 + ], + [ + -112.23514618399997, + 39.00016671700013 + ], + [ + -112.17502590599992, + 39.08211631700016 + ], + [ + -112.09791625899999, + 39.02693217100017 + ], + [ + -112.02546058099983, + 38.86895658300017 + ], + [ + -112.23344922699988, + 38.66558412100011 + ], + [ + -112.27740571299995, + 38.59451011000016 + ], + [ + -112.16092430899994, + 38.51714537200007 + ], + [ + -112.01424384699999, + 38.70360695800014 + ], + [ + -111.92540464799998, + 38.74636549700011 + ], + [ + -111.7953273419999, + 38.99604631700009 + ], + [ + -111.74871319899995, + 39.00458172600014 + ], + [ + -111.694553795, + 39.17587335400003 + ], + [ + -111.82027281999996, + 39.214160449000076 + ], + [ + -111.91549162799998, + 39.398068597000076 + ], + [ + -111.8289554669999, + 39.55625409700019 + ], + [ + -111.82955885699994, + 39.784309634000124 + ], + [ + -111.79762237099999, + 39.94934026700008 + ], + [ + -111.72451006199987, + 40.018872842000064 + ], + [ + -111.65182197699994, + 40.02358845800012 + ], + [ + -111.55181570999997, + 40.1350218390001 + ], + [ + -111.62572699499998, + 40.21657484000008 + ], + [ + -111.65262385399984, + 40.309728959000154 + ], + [ + -111.77941836099995, + 40.473276661 + ], + [ + -111.845956388, + 40.497173684000074 + ], + [ + -111.78908109499991, + 40.584367835000194 + ], + [ + -111.81292694599995, + 40.75136923600007 + ], + [ + -111.91542906299998, + 40.82344528300018 + ], + [ + -111.85169338199984, + 40.891249202000154 + ], + [ + -111.90216647799997, + 41.04843766600004 + ], + [ + -111.89460026899991, + 41.134707715 + ], + [ + -111.95260299799997, + 41.33761763400008 + ], + [ + -112.02463763899993, + 41.366018242000166 + ], + [ + -112.03160918999998, + 41.446090149000156 + ], + [ + -111.98737136699992, + 41.508613254000124 + ], + [ + -112.048972231, + 41.6139487260001 + ], + [ + -112.02087812499991, + 41.72501663300005 + ], + [ + -111.92362704799996, + 41.59462276400018 + ], + [ + -111.77365861599998, + 41.518761422000125 + ], + [ + -111.80376405799996, + 41.662774626000044 + ], + [ + -111.77213932499996, + 41.7712350920001 + ], + [ + -111.76699972999995, + 41.96095992199997 + ], + [ + -111.71772771799994, + 42.072700027999986 + ], + [ + -111.73861013299995, + 42.15799665600019 + ], + [ + -111.65300384199992, + 42.44197691900018 + ], + [ + -111.70379121199994, + 42.63325267500011 + ], + [ + -111.54136011899999, + 42.596349879000115 + ], + [ + -111.49101383699997, + 42.630076646000134 + ], + [ + -111.53944953599989, + 42.72042729200018 + ], + [ + -111.47732897999998, + 42.993158883000035 + ], + [ + -111.57064243199994, + 43.03152863300005 + ], + [ + -111.72039104399994, + 43.21268909800017 + ], + [ + -111.6986071369999, + 43.417530720000116 + ], + [ + -111.63636167499999, + 43.54905086100007 + ], + [ + -111.43280920199999, + 43.498572852000166 + ], + [ + -111.48954452499999, + 43.6002733900001 + ], + [ + -111.64333345399996, + 43.6048405410001 + ], + [ + -111.66072997899988, + 43.65906681000018 + ], + [ + -111.46549667599993, + 43.72358208600002 + ], + [ + -111.37277086799998, + 43.814733297000146 + ], + [ + -111.29144760999998, + 43.781619318000025 + ], + [ + -111.16404042399995, + 43.57659712800012 + ], + [ + -111.10193256399998, + 43.569012520000115 + ], + [ + -111.00960423299989, + 43.761782033000145 + ], + [ + -111.09646227399998, + 43.86656622900017 + ], + [ + -111.17656244799997, + 44.043234514 + ], + [ + -111.27913206499983, + 44.105819767000185 + ], + [ + -111.50780121399993, + 44.14015260200006 + ], + [ + -111.67928680099999, + 44.308807221000166 + ], + [ + -111.688053089, + 44.391321742000116 + ], + [ + -111.46548373699994, + 44.426050978000035 + ], + [ + -111.60468674699985, + 44.496710271000154 + ], + [ + -111.77855905099983, + 44.44617793400016 + ], + [ + -111.8903763749999, + 44.48032813000009 + ], + [ + -111.94087803699995, + 44.39095194000009 + ], + [ + -111.9965189859999, + 44.34876405400013 + ], + [ + -112.18131328099986, + 44.36176809400018 + ], + [ + -112.21460526499993, + 44.32476773400009 + ], + [ + -112.38504853699999, + 44.29356125000004 + ], + [ + -112.41473723699983, + 44.21705723800011 + ], + [ + -112.69635791499996, + 44.01799191499998 + ], + [ + -112.83836000799988, + 43.809972875000085 + ], + [ + -113.09548720599997, + 43.631532766000134 + ], + [ + -113.276442681, + 43.57772952900012 + ], + [ + -113.55788485299996, + 43.51484613400015 + ], + [ + -113.67267446999995, + 43.391867535000074 + ], + [ + -113.84131178499996, + 43.38595066900007 + ], + [ + -113.95056237499995, + 43.33867460100015 + ], + [ + -114.06113798499996, + 43.330413367000176 + ], + [ + -114.17738693899992, + 43.37055398000007 + ], + [ + -114.38179428799998, + 43.347111050000194 + ], + [ + -114.79283645899989, + 43.421634864000055 + ], + [ + -114.89303631799993, + 43.4151969720001 + ], + [ + -115.0519660409999, + 43.33783532000007 + ], + [ + -115.24230829499999, + 43.34743367200002 + ], + [ + -115.31451153999996, + 43.29723910800004 + ], + [ + -115.44832995299993, + 43.32863820700004 + ], + [ + -115.6498411469999, + 43.26125589000014 + ], + [ + -115.73579069299996, + 43.30709358900015 + ], + [ + -115.92562873299994, + 43.461975720000055 + ], + [ + -116.06099405499992, + 43.51210015500004 + ], + [ + -116.10224620199995, + 43.614808600000174 + ], + [ + -116.28043594799993, + 43.78631365400014 + ], + [ + -116.38018681899996, + 43.82114122799999 + ], + [ + -116.40422743699986, + 43.90761627799998 + ], + [ + -116.28345682999998, + 43.91187245800006 + ], + [ + -116.291549912, + 44.01079150200013 + ], + [ + -116.23557929999993, + 44.09462048500012 + ], + [ + -116.26012443499997, + 44.182799145 + ], + [ + -116.20428889099998, + 44.33105941400004 + ], + [ + -116.31973209999995, + 44.38815712400009 + ], + [ + -116.29749305899986, + 44.52116483700007 + ], + [ + -116.3426537759999, + 44.606307112000195 + ], + [ + -116.323425139, + 44.68547095800011 + ], + [ + -116.40095277899997, + 44.73057937700014 + ], + [ + -116.40024435499998, + 44.82013850800013 + ], + [ + -116.50222536999996, + 44.79102984000008 + ], + [ + -116.47300368999987, + 44.725551864000124 + ], + [ + -116.63445298099987, + 44.61663819500012 + ], + [ + -116.73490130399995, + 44.60786617700012 + ], + [ + -116.80010317099999, + 44.517066736000174 + ], + [ + -116.77246761699985, + 44.41837664700017 + ], + [ + -116.90348643399989, + 44.3955897080001 + ], + [ + -116.996835697, + 44.32172661000004 + ], + [ + -117.06564892699993, + 44.36064180700015 + ], + [ + -117.18364831199995, + 44.3287273950001 + ], + [ + -117.30919905099995, + 44.357988126000066 + ], + [ + -117.29374720399989, + 44.27581161500018 + ], + [ + -117.38677251199988, + 44.23763109700019 + ], + [ + -117.57087279899997, + 44.27478516400009 + ], + [ + -117.57905329999994, + 44.1902518230001 + ], + [ + -117.44995174799999, + 44.071471046000056 + ], + [ + -117.76542925699994, + 44.07214993500003 + ], + [ + -117.83013561999991, + 43.972581804000185 + ], + [ + -117.820167175, + 43.85448079100013 + ], + [ + -117.98361600099992, + 43.89182030899997 + ], + [ + -118.05492720399991, + 43.81034880100009 + ], + [ + -118.21295357199995, + 43.816080245000194 + ], + [ + -118.35510897899997, + 43.91963985400008 + ], + [ + -118.41888913699995, + 43.86774375600015 + ], + [ + -118.49677539499993, + 43.926272919999974 + ], + [ + -118.65826940199997, + 43.94513369800018 + ], + [ + -118.65731568499996, + 43.87523143300018 + ], + [ + -118.56816850899992, + 43.7396412600001 + ], + [ + -118.61104837099998, + 43.65795169500018 + ], + [ + -118.69335123899998, + 43.633016322000174 + ], + [ + -118.80092863099992, + 43.655063389000134 + ], + [ + -118.9565358719999, + 43.62207750700003 + ], + [ + -119.1116142379999, + 43.63703368200004 + ], + [ + -119.09334342699992, + 43.53911098700007 + ], + [ + -119.28976821099997, + 43.537484483000185 + ], + [ + -119.37701873299989, + 43.571222845000136 + ], + [ + -119.42344672399997, + 43.63981999100008 + ], + [ + -119.59637425499994, + 43.62065787900019 + ], + [ + -119.67091790699993, + 43.686630459000014 + ], + [ + -119.87277055399994, + 43.64387962700005 + ], + [ + -119.96753041799991, + 43.83539157500019 + ], + [ + -120.11272676599998, + 43.84394037400011 + ], + [ + -120.12951575899984, + 43.753554854000015 + ], + [ + -120.22766920899994, + 43.69933967600008 + ], + [ + -120.32044351699994, + 43.760570778000044 + ], + [ + -120.33568966199994, + 43.87603671200009 + ], + [ + -120.4420693749999, + 43.905098318 + ], + [ + -120.56528832299995, + 43.883694315000184 + ], + [ + -120.713533483, + 43.96085621600008 + ], + [ + -120.76042924799998, + 43.92329602900014 + ], + [ + -120.92241084099993, + 43.93999300600012 + ], + [ + -121.09045881399999, + 43.86926288899997 + ], + [ + -121.00790265799986, + 43.81968949100008 + ], + [ + -120.79935570399994, + 43.75606301300019 + ], + [ + -120.80359060499995, + 43.657386345000134 + ], + [ + -120.76243112199995, + 43.56885127400011 + ], + [ + -120.83884674799992, + 43.533039060000135 + ], + [ + -120.97647494199992, + 43.54608984400011 + ], + [ + -121.16032500199992, + 43.42718248600005 + ], + [ + -121.19579448599995, + 43.36849539600007 + ], + [ + -121.18234819299994, + 43.23611889300014 + ], + [ + -121.26383538199997, + 43.111590282000066 + ], + [ + -121.21160734999995, + 43.04615889900015 + ], + [ + -120.98080698499996, + 43.06642783700016 + ], + [ + -120.78314322099993, + 42.99211158700007 + ], + [ + -120.81997630799992, + 42.908422221000194 + ], + [ + -120.79817981999992, + 42.79227401100013 + ], + [ + -120.67198102999998, + 42.698938107000174 + ], + [ + -120.52969576899994, + 42.676658545000066 + ], + [ + -120.47373987699996, + 42.50166524200006 + ], + [ + -120.42767337099991, + 42.45463377500005 + ], + [ + -120.30020479099989, + 42.46143934800011 + ], + [ + -120.17117643999995, + 42.43182699200014 + ], + [ + -120.09093920599992, + 42.30419392100009 + ], + [ + -120.15739269099998, + 42.23337551200012 + ], + [ + -120.15940217699995, + 42.10107265400012 + ], + [ + -120.07351513899994, + 42.030890333 + ], + [ + -120.11556217099997, + 41.93672594000003 + ], + [ + -120.18224397099993, + 41.88632048700009 + ], + [ + -120.17652477699994, + 41.79170357600009 + ], + [ + -120.22600469599996, + 41.69640640100016 + ], + [ + -120.18904888799989, + 41.58494344400009 + ], + [ + -120.199195466, + 41.49702473500008 + ], + [ + -120.15829878799997, + 41.42477204300002 + ], + [ + -120.11425472499997, + 41.21445342200019 + ], + [ + -120.0586335289999, + 41.15990449900005 + ], + [ + -120.10756339599999, + 41.03663299500005 + ], + [ + -120.20020845899995, + 40.99603181700013 + ], + [ + -120.22138658899996, + 40.92427810100014 + ], + [ + -120.47164826999989, + 40.891197249000186 + ], + [ + -120.46716123399989, + 40.97987136300003 + ], + [ + -120.537862008, + 41.051822690000165 + ], + [ + -120.60429644999994, + 40.93132750000012 + ], + [ + -120.7619613729999, + 40.91054485500018 + ], + [ + -120.75329949399998, + 40.84161955400015 + ], + [ + -120.56119481099984, + 40.808760924000126 + ], + [ + -120.50654913299996, + 40.83154373600013 + ], + [ + -120.32087060299995, + 40.77923759300012 + ], + [ + -120.21150559299997, + 40.787427778 + ], + [ + -120.15430852299994, + 40.72812016600005 + ], + [ + -120.16110492099989, + 40.652980514000035 + ], + [ + -120.26348413799997, + 40.67070692600004 + ], + [ + -120.32559707899986, + 40.59280248600004 + ], + [ + -120.46079101999987, + 40.57273790600004 + ], + [ + -120.56975830299996, + 40.335674784000105 + ], + [ + -120.37814293599996, + 40.16846687000003 + ], + [ + -120.1814727819999, + 40.08245227600014 + ], + [ + -120.03992357099997, + 39.902521094 + ], + [ + -120.18145008599998, + 39.82376805900009 + ], + [ + -120.291897759, + 39.84376271200006 + ], + [ + -120.43124005799996, + 39.824130703000094 + ], + [ + -120.38398283499998, + 39.744566862000056 + ], + [ + -120.43700320099987, + 39.65746814700003 + ], + [ + -120.25067979899995, + 39.6691669870001 + ], + [ + -120.15419955099998, + 39.76342607600009 + ], + [ + -120.10384989199997, + 39.76708915000012 + ], + [ + -120.05318449499998, + 39.640054179000174 + ], + [ + -119.94229173899993, + 39.616789877000144 + ], + [ + -119.96401905699997, + 39.50111664700012 + ], + [ + -119.83867468099993, + 39.44894857300011 + ], + [ + -119.81674573299989, + 39.32815724599999 + ], + [ + -119.84736487999999, + 39.277236544000175 + ], + [ + -119.8065114129999, + 39.16798539000018 + ], + [ + -119.84482857799992, + 39.08922887900013 + ], + [ + -119.84435159099996, + 38.88996802100013 + ], + [ + -119.74152211099994, + 38.72799185100007 + ], + [ + -119.607854939, + 38.71770288000005 + ], + [ + -119.58158734399996, + 38.558208606 + ], + [ + -119.45245950699996, + 38.42128611600009 + ], + [ + -119.47535282399991, + 38.36394615500012 + ], + [ + -119.31856470499997, + 38.237113433000104 + ], + [ + -119.31508465299999, + 38.14693090000003 + ], + [ + -119.16781227199994, + 38.030899817000034 + ], + [ + -119.10605605899991, + 37.93263312600004 + ], + [ + -119.11991270199997, + 37.87516868400019 + ], + [ + -119.05175776199991, + 37.81751921700004 + ], + [ + -118.99099349599999, + 37.84901291600016 + ], + [ + -118.82671218299998, + 37.86140044300009 + ], + [ + -118.65036266499999, + 37.787761597999975 + ], + [ + -118.63198977699994, + 37.74226102600005 + ], + [ + -118.8635210679999, + 37.759232637000025 + ], + [ + -118.86201768299992, + 37.65393532000007 + ], + [ + -118.7462604349999, + 37.55848263800016 + ], + [ + -118.65334107499996, + 37.544455163000066 + ], + [ + -118.6163073749999, + 37.37536882600017 + ], + [ + -118.41442165299998, + 37.31913319400019 + ], + [ + -118.32059580599997, + 37.09799945300006 + ], + [ + -118.37532639599993, + 37.0429080510001 + ], + [ + -118.25816827199998, + 36.84128445400006 + ], + [ + -118.28305807599997, + 36.77698029800007 + ], + [ + -118.22750055899996, + 36.63016821400004 + ], + [ + -118.16945098599996, + 36.55836316600005 + ], + [ + -118.04884341699994, + 36.472240548000116 + ], + [ + -117.99269143599997, + 36.04049711900012 + ], + [ + -117.91174013199998, + 35.92775728600009 + ], + [ + -117.87737119199994, + 35.65733671300006 + ], + [ + -117.96282371599989, + 35.58031396400014 + ], + [ + -118.06511796399997, + 35.55631290200006 + ], + [ + -118.05136491999997, + 35.36320288600007 + ], + [ + -118.02275709799994, + 35.288420513 + ], + [ + -118.117814034, + 35.186668784000176 + ], + [ + -118.25983908899997, + 35.10643160300003 + ], + [ + -118.36602567799991, + 34.97824377500018 + ], + [ + -118.52109078499996, + 34.962210750000054 + ], + [ + -118.74442004599996, + 34.81712873100014 + ], + [ + -118.68405316399992, + 34.77572967400016 + ], + [ + -118.5327745489999, + 34.749373569000056 + ], + [ + -118.19337414999995, + 34.60342644800005 + ], + [ + -118.20628002799992, + 34.568882094 + ], + [ + -117.87290051399998, + 34.41034755200013 + ], + [ + -117.71805214699998, + 34.42784066400014 + ], + [ + -117.52577084199999, + 34.32102090500018 + ], + [ + -117.28511564099989, + 34.30409666700018 + ], + [ + -117.1765178629999, + 34.41538384600011 + ], + [ + -117.03635744199994, + 34.39590978000018 + ], + [ + -116.88303454399994, + 34.34545419300014 + ], + [ + -116.76627838499996, + 34.33346320200019 + ], + [ + -116.57481402699995, + 34.269887437000136 + ], + [ + -116.5382402269999, + 34.15686470700007 + ], + [ + -116.65954063799995, + 34.006295542000146 + ], + [ + -116.64692662199997, + 33.96444397300007 + ], + [ + -116.76509846799996, + 33.89922425800006 + ], + [ + -116.58330515099993, + 33.819750326000076 + ], + [ + -116.58320415399993, + 33.75245637400013 + ], + [ + -116.52462321399997, + 33.651005876000056 + ], + [ + -116.4010570769999, + 33.57052506100018 + ], + [ + -116.44949901099994, + 33.484124422000036 + ], + [ + -116.5549988269999, + 33.51509517300008 + ], + [ + -116.57784325599994, + 33.416376952000064 + ], + [ + -116.47430612299996, + 33.2668264400001 + ], + [ + -116.5718529959999, + 33.15813678800009 + ], + [ + -116.54122438699994, + 33.07366238500015 + ], + [ + -116.32666281399992, + 32.79525692300007 + ], + [ + -116.25004726599991, + 32.73288871300019 + ], + [ + -116.20071825399998, + 32.61097607600004 + ], + [ + -116.04237357499989, + 32.613418544000126 + ], + [ + -116.01107068699997, + 32.52946406000018 + ], + [ + -115.90464767399999, + 32.48878534300013 + ], + [ + -115.85279068299997, + 32.42457024200013 + ], + [ + -115.87153664199997, + 32.25297172899997 + ], + [ + -115.77711466999995, + 32.09185998200013 + ], + [ + -115.78961963199998, + 32.007393868000065 + ], + [ + -115.74462859299996, + 31.859332745000188 + ], + [ + -115.68372367299997, + 31.82609967200017 + ], + [ + -115.68242665699995, + 31.729037904000165 + ], + [ + -115.64707162199988, + 31.65199145000014 + ], + [ + -115.56580353799995, + 31.595574536000072 + ], + [ + -115.50940657299998, + 31.500293587000044 + ], + [ + -115.51533459099994, + 31.430732843000158 + ], + [ + -115.58573168099991, + 31.37050115700015 + ], + [ + -115.69355765699999, + 31.37947465500008 + ], + [ + -115.696830622, + 31.295306601 + ], + [ + -115.47854658499995, + 31.274654429000122 + ], + [ + -115.39902461999998, + 31.097473401000173 + ], + [ + -115.29991967899991, + 31.047596216000045 + ], + [ + -115.26219960599991, + 30.98836616800014 + ], + [ + -115.29271660599983, + 30.847183234000113 + ], + [ + -115.19845556699988, + 30.732288296000036 + ], + [ + -115.24959556999988, + 30.635747882000146 + ], + [ + -115.36131259299992, + 30.664211652000176 + ], + [ + -115.45777153499989, + 30.80882546600003 + ], + [ + -115.52776361199989, + 30.762887105000175 + ], + [ + -115.588600639, + 30.85117318800019 + ], + [ + -115.73549667699996, + 30.953771539000115 + ], + [ + -115.83339663599986, + 31.20164000600016 + ], + [ + -115.96620168899983, + 31.251027018000116 + ], + [ + -116.06700161899988, + 31.419234548000134 + ], + [ + -116.15630358899989, + 31.461023029000103 + ], + [ + -116.21130362599996, + 31.5578995570001 + ], + [ + -116.35970253899984, + 31.565448467000124 + ], + [ + -116.54080160399985, + 31.699894864999976 + ], + [ + -116.67675758199994, + 31.705822714000135 + ] + ], + [ + [ + -100.54142765799992, + 22.411702591000164 + ], + [ + -100.49534562999997, + 22.54868552000005 + ], + [ + -100.48738852199989, + 22.70615918500016 + ], + [ + -100.43321963499994, + 22.745414152000137 + ], + [ + -100.40357166999996, + 22.84678991800007 + ], + [ + -100.24769559499993, + 22.741861231000087 + ], + [ + -100.29892763199996, + 22.651152107000087 + ], + [ + -100.42160063999995, + 22.49252844500012 + ], + [ + -100.41997555699999, + 22.325056175000043 + ], + [ + -100.49457566899991, + 22.174164148000045 + ], + [ + -100.50405861899992, + 22.038797418000172 + ], + [ + -100.47293862399988, + 21.972689012000103 + ], + [ + -100.19049061499999, + 21.947021613000118 + ], + [ + -100.10865054999994, + 21.849944589000074 + ], + [ + -100.11524157599996, + 21.760185470000067 + ], + [ + -100.02572653799996, + 21.684200836000116 + ], + [ + -99.89568365699995, + 21.68396077800014 + ], + [ + -99.90699754999997, + 21.56385330200004 + ], + [ + -99.88617656699995, + 21.478268036000145 + ], + [ + -100.00267764599988, + 21.48142080500014 + ], + [ + -100.03540763599995, + 21.65288336300017 + ], + [ + -100.13829750999997, + 21.678424028000165 + ], + [ + -100.22820264099994, + 21.64316806700009 + ], + [ + -100.34548960699988, + 21.70607140100003 + ], + [ + -100.40590653299995, + 21.701384743 + ], + [ + -100.51464060399991, + 21.754348984000103 + ], + [ + -100.50815552499989, + 21.815056761 + ], + [ + -100.66925067499989, + 21.902580762000184 + ], + [ + -100.63709266599994, + 21.94304071200014 + ], + [ + -100.7084426109999, + 22.063981349000187 + ], + [ + -100.69484766699992, + 22.13106457000015 + ], + [ + -100.73514550999988, + 22.19557907300009 + ], + [ + -100.75981864799996, + 22.316216620000034 + ], + [ + -100.70825167099991, + 22.318182679000074 + ], + [ + -100.63860358799997, + 22.252245264000067 + ], + [ + -100.54774459499998, + 22.254185005000068 + ], + [ + -100.54142765799992, + 22.411702591000164 + ] + ], + [ + [ + -100.40047455599984, + 21.6505265400001 + ], + [ + -100.29515862499994, + 21.563249301999974 + ], + [ + -100.19659465199999, + 21.529146021000088 + ], + [ + -100.30741866699998, + 21.36293522700015 + ], + [ + -100.53480561899994, + 21.371524666000028 + ], + [ + -100.57676659999993, + 21.454565187000128 + ], + [ + -100.69078864599999, + 21.505570409000086 + ], + [ + -100.62783854199995, + 21.5729629220001 + ], + [ + -100.48741165599995, + 21.52118053000015 + ], + [ + -100.48949455899998, + 21.58489825000015 + ], + [ + -100.40047455599984, + 21.6505265400001 + ] + ], + [ + [ + -99.53615566699995, + 20.773626078000177 + ], + [ + -99.6079716449999, + 20.71914504800003 + ], + [ + -99.7163236699999, + 20.787621174000094 + ], + [ + -99.69333663499998, + 20.94134460800018 + ], + [ + -99.56640662599995, + 20.9919538690001 + ], + [ + -99.4685515939999, + 20.942998358000068 + ], + [ + -99.53615566699995, + 20.773626078000177 + ] + ], + [ + [ + -99.96902463999999, + 21.01022658500011 + ], + [ + -100.04575358699992, + 20.875884291000148 + ], + [ + -100.11879751499993, + 20.84583600600007 + ], + [ + -100.23757159699989, + 20.860551946000157 + ], + [ + -100.33020051199998, + 20.801872254000102 + ], + [ + -100.40030658299997, + 20.857636385000035 + ], + [ + -100.38171350999988, + 20.981339194000157 + ], + [ + -100.27828266899996, + 21.01521633200008 + ], + [ + -100.2159425989999, + 21.09779601600019 + ], + [ + -100.0432125289999, + 21.126086280000038 + ], + [ + -99.96902463999999, + 21.01022658500011 + ] + ], + [ + [ + -102.68368553699997, + 22.407451960000117 + ], + [ + -102.64875060299994, + 22.456792200999985 + ], + [ + -102.51352653299989, + 22.43708634600017 + ], + [ + -102.508766617, + 22.286553232000074 + ], + [ + -102.44574761399997, + 22.232688273000065 + ], + [ + -102.518569588, + 22.160861900000043 + ], + [ + -102.44351953599994, + 22.112304529000028 + ], + [ + -102.37437453499996, + 21.995634807000158 + ], + [ + -102.50729358199993, + 21.934094204000132 + ], + [ + -102.55408454999997, + 21.862008160000187 + ], + [ + -102.65467861999997, + 21.88423696700005 + ], + [ + -102.6491165569999, + 21.96376446400012 + ], + [ + -102.71237964199992, + 21.995401958000173 + ], + [ + -102.74966452699988, + 21.905778626000142 + ], + [ + -102.83650154599991, + 21.802841311000066 + ], + [ + -102.88667260099999, + 21.897469142000034 + ], + [ + -102.78119657599996, + 22.117759472000103 + ], + [ + -102.816932652, + 22.179843055000163 + ], + [ + -102.73365056499995, + 22.351559753 + ], + [ + -102.68368553699997, + 22.407451960000117 + ] + ], + [ + [ + -101.28083758199995, + 22.08511296500012 + ], + [ + -101.22349564199999, + 22.18444874300019 + ], + [ + -101.13095054599995, + 22.200888841000108 + ], + [ + -101.10825352499995, + 22.119312303000072 + ], + [ + -101.14931462499999, + 22.075508645000014 + ], + [ + -101.28083758199995, + 22.08511296500012 + ] + ], + [ + [ + -101.14394366899995, + 22.073345611000093 + ], + [ + -101.06909964399995, + 22.050239051000176 + ], + [ + -101.02342262999991, + 22.08734087500011 + ], + [ + -100.92129567799992, + 22.032755910000162 + ], + [ + -100.98392458799998, + 21.86963250700012 + ], + [ + -101.0369416339999, + 21.811108885000067 + ], + [ + -101.14615665899998, + 21.91523911200005 + ], + [ + -101.14394366899995, + 22.073345611000093 + ] + ], + [ + [ + -101.17784159399997, + 21.82163119100005 + ], + [ + -101.07211260299994, + 21.757457832000114 + ], + [ + -101.11163361199993, + 21.689632477000032 + ], + [ + -101.21940661399998, + 21.64191094900019 + ], + [ + -101.24052465099999, + 21.737071870000022 + ], + [ + -101.17784159399997, + 21.82163119100005 + ] + ], + [ + [ + -100.9372866729999, + 21.61756537600013 + ], + [ + -100.85166955499994, + 21.654159424000113 + ], + [ + -100.82058761399986, + 21.57413957400007 + ], + [ + -100.95628358599993, + 21.47108541500012 + ], + [ + -100.94917254699999, + 21.428471820000084 + ], + [ + -101.03811660899999, + 21.385289931000045 + ], + [ + -101.11497463799998, + 21.398831398000027 + ], + [ + -101.1344605509999, + 21.488704511000094 + ], + [ + -101.04589065699997, + 21.518684734999965 + ], + [ + -100.9372866729999, + 21.61756537600013 + ] + ], + [ + [ + -101.38688659499996, + 21.509619371000042 + ], + [ + -101.33698258699997, + 21.527225224000063 + ], + [ + -101.25332666699995, + 21.476353106000147 + ], + [ + -101.28330957299994, + 21.398581282000123 + ], + [ + -101.36070253499992, + 21.331089863000102 + ], + [ + -101.38647454099998, + 21.25379329300017 + ], + [ + -101.44616659899992, + 21.267258485000127 + ], + [ + -101.40555560799993, + 21.365448960000037 + ], + [ + -101.46314263499988, + 21.505991516 + ], + [ + -101.38688659499996, + 21.509619371000042 + ] + ], + [ + [ + -101.45436862699995, + 21.374244594000174 + ], + [ + -101.50758365399997, + 21.166849152000168 + ], + [ + -101.56040154599998, + 21.16411011400004 + ], + [ + -101.770408622, + 21.235674132000156 + ], + [ + -101.74938965799998, + 21.39072777400014 + ], + [ + -101.71492763099991, + 21.43018658900013 + ], + [ + -101.73035452399995, + 21.548757998000042 + ], + [ + -101.77584864399995, + 21.56414314900013 + ], + [ + -101.79730262899994, + 21.657984087000102 + ], + [ + -101.75346359899993, + 21.733052915000144 + ], + [ + -101.59672552899991, + 21.533646767000164 + ], + [ + -101.57884257099988, + 21.458307036000065 + ], + [ + -101.482208615, + 21.435435337000058 + ], + [ + -101.45436862699995, + 21.374244594000174 + ] + ], + [ + [ + -102.01437363699995, + 21.409385723000128 + ], + [ + -102.05126155499988, + 21.337917593000157 + ], + [ + -102.1163106549999, + 21.331931070000167 + ], + [ + -102.14002255599996, + 21.43931615800011 + ], + [ + -102.07937663699994, + 21.508370131999982 + ], + [ + -102.05884566799995, + 21.621172277000028 + ], + [ + -101.94528965599994, + 21.623974012000133 + ], + [ + -101.84670254799994, + 21.687580419000028 + ], + [ + -101.82691958099997, + 21.58879499600016 + ], + [ + -101.90170258499995, + 21.535647695000023 + ], + [ + -101.96401264799994, + 21.557376438000063 + ], + [ + -102.01141365199999, + 21.49882783900017 + ], + [ + -102.01437363699995, + 21.409385723000128 + ] + ], + [ + [ + -101.82126665699997, + 21.973661983000056 + ], + [ + -101.82885764399992, + 21.78784994199998 + ], + [ + -101.88732158699997, + 21.77490375700006 + ], + [ + -101.89583558899994, + 21.887833642000032 + ], + [ + -101.93360863499998, + 21.939824911000073 + ], + [ + -101.82126665699997, + 21.973661983000056 + ] + ], + [ + [ + -103.35207358499986, + 22.25091405100011 + ], + [ + -103.28245567599993, + 22.274561914000174 + ], + [ + -103.24459059599991, + 22.192260174000182 + ], + [ + -103.29109959799996, + 22.155120464000163 + ], + [ + -103.35207358499986, + 22.25091405100011 + ] + ], + [ + [ + -100.5860896229999, + 20.96474235500017 + ], + [ + -100.51036851599997, + 21.002371233000133 + ], + [ + -100.42514752699998, + 20.927395277000187 + ], + [ + -100.49633067199994, + 20.86465974900011 + ], + [ + -100.5860896229999, + 20.96474235500017 + ] + ], + [ + [ + -99.53298160699995, + 20.44497148700009 + ], + [ + -99.43543251499995, + 20.574590076000106 + ], + [ + -99.3627625879999, + 20.464143414000148 + ], + [ + -99.53298160699995, + 20.44497148700009 + ] + ], + [ + [ + -99.39047952999994, + 20.24582367000005 + ], + [ + -99.29372353399998, + 20.351358704000063 + ], + [ + -99.27834357999996, + 20.221565101000124 + ], + [ + -99.32631656399997, + 20.189425866000022 + ], + [ + -99.39047952999994, + 20.24582367000005 + ] + ], + [ + [ + -99.13909954799993, + 20.16634814000014 + ], + [ + -99.13632966499989, + 20.219108365000068 + ], + [ + -99.00237260199998, + 20.227626558000054 + ], + [ + -98.98846451099996, + 20.177936456000054 + ], + [ + -99.13909954799993, + 20.16634814000014 + ] + ], + [ + [ + -99.17076151699996, + 20.028315964000058 + ], + [ + -99.08911155399989, + 20.063937041000088 + ], + [ + -99.0420915919999, + 20.0125660330001 + ], + [ + -99.10432454099998, + 19.961345061000088 + ], + [ + -99.17076151699996, + 20.028315964000058 + ] + ], + [ + [ + -101.21916957399998, + 22.575730066000062 + ], + [ + -101.12473251499989, + 22.549478280000073 + ], + [ + -101.11419662999998, + 22.483090925000113 + ], + [ + -101.18489865399994, + 22.442943117000084 + ], + [ + -101.25205261799988, + 22.529311421000102 + ], + [ + -101.21916957399998, + 22.575730066000062 + ] + ], + [ + [ + -102.37619759799998, + 25.411951359000057 + ], + [ + -102.3226776379999, + 25.477999079000085 + ], + [ + -102.22254960199996, + 25.42879060200005 + ], + [ + -102.20259866099997, + 25.330093022000085 + ], + [ + -102.2962416179999, + 25.348721298000044 + ], + [ + -102.37619759799998, + 25.411951359000057 + ] + ], + [ + [ + -102.12510662499994, + 25.286760258000072 + ], + [ + -102.04446466899992, + 25.38053464400008 + ], + [ + -101.93599663899994, + 25.347638189 + ], + [ + -101.859580672, + 25.27491277400003 + ], + [ + -101.766448675, + 25.262250232000042 + ], + [ + -101.7798156319999, + 25.191193822000173 + ], + [ + -101.85739165399997, + 25.192215743000077 + ], + [ + -102.04683658, + 25.287044237000032 + ], + [ + -102.12510662499994, + 25.286760258000072 + ] + ], + [ + [ + -101.7751846299999, + 25.160568191000095 + ], + [ + -101.72695951799989, + 25.18715575600004 + ], + [ + -101.71076953699998, + 25.311993978000032 + ], + [ + -101.58012366099996, + 25.30222034400009 + ], + [ + -101.45114159399998, + 25.264731276000134 + ], + [ + -101.30859358399982, + 25.255328792000057 + ], + [ + -101.2339016069999, + 25.116724299999987 + ], + [ + -101.36825563599996, + 25.109406731000036 + ], + [ + -101.49022657599994, + 25.06676161900009 + ], + [ + -101.65679158899991, + 25.10846779000002 + ], + [ + -101.7751846299999, + 25.160568191000095 + ] + ], + [ + [ + -104.39511057599992, + 24.660716245000174 + ], + [ + -104.29635666899998, + 24.68724496900012 + ], + [ + -104.24816860499999, + 24.777232578000053 + ], + [ + -104.14533958399994, + 24.730598854000164 + ], + [ + -104.20259066499989, + 24.6216731720001 + ], + [ + -104.27490251699987, + 24.565111754000043 + ], + [ + -104.34167460199996, + 24.64544710000007 + ], + [ + -104.39511057599992, + 24.660716245000174 + ] + ], + [ + [ + -103.99735255699994, + 24.173384180000085 + ], + [ + -104.00876652999995, + 24.218064082000183 + ], + [ + -103.76329059299985, + 24.170949237000173 + ], + [ + -103.66565667599991, + 24.049411305000035 + ], + [ + -103.7641445409999, + 23.916431908000106 + ], + [ + -103.757125536, + 23.724519685000132 + ], + [ + -103.68513454299995, + 23.672736455000177 + ], + [ + -103.69896652699998, + 23.58318084900003 + ], + [ + -103.78672052699983, + 23.53455022000003 + ], + [ + -103.84706855399997, + 23.57677506300007 + ], + [ + -103.90573164999995, + 23.815317155 + ], + [ + -103.99103561999988, + 23.97842094400005 + ], + [ + -103.96685064399998, + 24.061191903000065 + ], + [ + -103.99735255699994, + 24.173384180000085 + ] + ], + [ + [ + -101.64030455299991, + 24.807418997000013 + ], + [ + -101.54487658499983, + 24.70312817200005 + ], + [ + -101.44844865599993, + 24.664262125000107 + ], + [ + -101.40125267399998, + 24.520232195000062 + ], + [ + -101.4871366719999, + 24.454363176000186 + ], + [ + -101.5371015319999, + 24.56706071400015 + ], + [ + -101.61390658699997, + 24.57268966500004 + ], + [ + -101.59913666799991, + 24.659908397000095 + ], + [ + -101.64030455299991, + 24.807418997000013 + ] + ], + [ + [ + -100.98727466699995, + 24.489656521000086 + ], + [ + -101.09970063099996, + 24.509433621000085 + ], + [ + -101.1527325969999, + 24.631796500000178 + ], + [ + -101.03891758399999, + 24.64041427000018 + ], + [ + -100.95184352399991, + 24.57138058000004 + ], + [ + -100.98727466699995, + 24.489656521000086 + ] + ], + [ + [ + -100.14352463199992, + 23.76299161500009 + ], + [ + -100.22367859299999, + 23.753501122000102 + ], + [ + -100.29486056499996, + 23.785100561000093 + ], + [ + -100.20896164699997, + 23.9038585510001 + ], + [ + -100.14352463199992, + 23.76299161500009 + ] + ], + [ + [ + -100.10877259099993, + 23.649034445000154 + ], + [ + -100.03258561699994, + 23.541277033000142 + ], + [ + -100.03656752399996, + 23.462704066000185 + ], + [ + -100.10755956199995, + 23.436778337000135 + ], + [ + -100.20082851899991, + 23.508948703000158 + ], + [ + -100.10877259099993, + 23.649034445000154 + ] + ], + [ + [ + -100.76955456399992, + 23.55775401 + ], + [ + -100.79932356399996, + 23.451752607000117 + ], + [ + -100.89695764799995, + 23.41726241599997 + ], + [ + -100.92612465999997, + 23.555865232000087 + ], + [ + -100.89089954399992, + 23.66866637100003 + ], + [ + -100.90083360799997, + 23.745616768000048 + ], + [ + -100.79437254099992, + 23.737566118000018 + ], + [ + -100.69805860599996, + 23.59027663300003 + ], + [ + -100.76955456399992, + 23.55775401 + ] + ], + [ + [ + -104.5949936539999, + 24.578634111000042 + ], + [ + -104.50373853299993, + 24.53130770600012 + ], + [ + -104.57243359399996, + 24.465985859 + ], + [ + -104.5949936539999, + 24.578634111000042 + ] + ], + [ + [ + -99.92990864399991, + 23.13763273900014 + ], + [ + -99.95549758899995, + 23.209037836000107 + ], + [ + -99.8738935589999, + 23.236671463000107 + ], + [ + -99.85548354699989, + 23.129421156000035 + ], + [ + -99.88043261699988, + 23.031228166000062 + ], + [ + -99.93939159399991, + 23.011271357000055 + ], + [ + -99.96170757299996, + 23.107715211000084 + ], + [ + -99.92990864399991, + 23.13763273900014 + ] + ], + [ + [ + -102.92173762299996, + 23.136911560000044 + ], + [ + -102.91477963699998, + 23.033925126999975 + ], + [ + -102.96086853799989, + 22.909504659000106 + ], + [ + -103.04401366499997, + 22.95133035599997 + ], + [ + -103.11048852699992, + 23.06412445300009 + ], + [ + -103.0463636149999, + 23.118658624000034 + ], + [ + -102.92173762299996, + 23.136911560000044 + ] + ], + [ + [ + -109.56907668599996, + 23.114487957 + ], + [ + -109.69387065099994, + 23.0839065830001 + ], + [ + -109.66481059299997, + 23.185809068000026 + ], + [ + -109.56131755799998, + 23.162985481000135 + ], + [ + -109.56907668599996, + 23.114487957 + ] + ], + [ + [ + -109.46038854699992, + 23.25604556100012 + ], + [ + -109.57537065699995, + 23.201660421000156 + ], + [ + -109.63386561199991, + 23.26096423000007 + ], + [ + -109.58121451999995, + 23.318544216000078 + ], + [ + -109.64572164599997, + 23.35938219000019 + ], + [ + -109.60112757499991, + 23.470800650000058 + ], + [ + -109.50373052999987, + 23.497519307000175 + ], + [ + -109.49191254999994, + 23.388206717000116 + ], + [ + -109.44270356899995, + 23.31375144400016 + ], + [ + -109.46038854699992, + 23.25604556100012 + ] + ], + [ + [ + -99.1049496629999, + 24.530733714000064 + ], + [ + -99.17695658199989, + 24.52995771700006 + ], + [ + -99.12124659699998, + 24.656112401000087 + ], + [ + -99.05500760199993, + 24.676871525000138 + ], + [ + -98.98024756299998, + 24.62997561500009 + ], + [ + -99.00797255199996, + 24.51367335600014 + ], + [ + -99.1049496629999, + 24.530733714000064 + ] + ], + [ + [ + -98.7003706189999, + 24.54602180200004 + ], + [ + -98.74701658099991, + 24.56871865500011 + ], + [ + -98.78205058899988, + 24.65855036100004 + ], + [ + -98.72338866599989, + 24.718844408000166 + ], + [ + -98.59043156499996, + 24.597052505000022 + ], + [ + -98.7003706189999, + 24.54602180200004 + ] + ], + [ + [ + -100.45015761699995, + 26.19898356900012 + ], + [ + -100.54448654999999, + 26.372666829000025 + ], + [ + -100.57007566199991, + 26.587209185000177 + ], + [ + -100.47909563499996, + 26.45096721600015 + ], + [ + -100.40651656699998, + 26.240163859000177 + ], + [ + -100.45015761699995, + 26.19898356900012 + ] + ], + [ + [ + -100.04904163999993, + 26.220972654000093 + ], + [ + -99.99858861799999, + 26.296355468000115 + ], + [ + -99.92803160099999, + 26.239980799000136 + ], + [ + -99.91918953099997, + 26.120084379000104 + ], + [ + -99.80793753599994, + 26.105626937000068 + ], + [ + -99.78805566199998, + 26.056517199000155 + ], + [ + -99.8329005199999, + 25.915867690000084 + ], + [ + -99.90573154699996, + 25.973954111000182 + ], + [ + -99.95941160199993, + 26.12245126100015 + ], + [ + -100.04904163999993, + 26.220972654000093 + ] + ], + [ + [ + -101.53415663399994, + 27.802610459 + ], + [ + -101.5308915469999, + 27.72183791400016 + ], + [ + -101.70381155099994, + 27.809538941000028 + ], + [ + -101.87893666599996, + 27.810923966000132 + ], + [ + -101.94647955, + 27.83655599400015 + ], + [ + -102.036125514, + 27.956986844000028 + ], + [ + -102.13227063699998, + 28.15279464000014 + ], + [ + -102.1473615829999, + 28.231186557000058 + ], + [ + -102.11368561099994, + 28.34502084900015 + ], + [ + -102.20563458599997, + 28.338696200000072 + ], + [ + -102.21920052899998, + 28.256750523000107 + ], + [ + -102.31648257299997, + 28.157049629000028 + ], + [ + -102.37380255299996, + 28.176760680000143 + ], + [ + -102.34684752599992, + 28.26153524900002 + ], + [ + -102.38037865899997, + 28.33012436300004 + ], + [ + -102.25215951299992, + 28.329276450000123 + ], + [ + -102.24724553799996, + 28.399499699000046 + ], + [ + -102.37160465099993, + 28.62757346400008 + ], + [ + -102.46013665899994, + 28.639580876000082 + ], + [ + -102.45270559899996, + 28.48947490400019 + ], + [ + -102.53086852299992, + 28.48164922300009 + ], + [ + -102.48176565699993, + 28.37536149400006 + ], + [ + -102.48511456299991, + 28.303718350000167 + ], + [ + -102.56648255899995, + 28.303041428000142 + ], + [ + -102.61975860599989, + 28.422165539000105 + ], + [ + -102.65756953899995, + 28.605573147000086 + ], + [ + -102.54361756499998, + 28.72942129900008 + ], + [ + -102.69124567899996, + 29.020824533000052 + ], + [ + -102.66243758099995, + 29.07072267400008 + ], + [ + -102.79647862899998, + 29.09543068000005 + ], + [ + -102.89232917899994, + 29.248952557000052 + ], + [ + -102.84104956699997, + 29.31467612200015 + ], + [ + -102.77309462799997, + 29.274123804000055 + ], + [ + -102.67607158399994, + 29.282126510000126 + ], + [ + -102.60510251299996, + 29.225825601000167 + ], + [ + -102.6023946549999, + 29.128651515000115 + ], + [ + -102.53141753699998, + 29.00712632400007 + ], + [ + -102.41041554499992, + 28.990824696 + ], + [ + -102.47139757799988, + 28.813759003000143 + ], + [ + -102.37861661599993, + 28.795531716000028 + ], + [ + -102.4146886389999, + 28.67489249300013 + ], + [ + -102.34707651999997, + 28.666805800000077 + ], + [ + -102.19744161099993, + 28.599429548000103 + ], + [ + -102.0960995399999, + 28.51512604200019 + ], + [ + -101.99679561199997, + 28.51173103600013 + ], + [ + -101.96022067499996, + 28.384354103000135 + ], + [ + -102.00649263599996, + 28.362667940000165 + ], + [ + -101.87556462599991, + 28.103033963000087 + ], + [ + -101.89801756599996, + 28.012377477000143 + ], + [ + -101.80559551599998, + 27.90684194000005 + ], + [ + -101.53415663399994, + 27.802610459 + ] + ], + [ + [ + -101.78662056399992, + 29.225333751000164 + ], + [ + -101.67410256599987, + 29.22149567800011 + ], + [ + -101.72906454899999, + 29.10323926100017 + ], + [ + -101.63774052899998, + 29.12326547200007 + ], + [ + -101.51557160799996, + 29.060870920000127 + ], + [ + -101.576339567, + 28.81095190400015 + ], + [ + -101.46999366799992, + 28.792893596000056 + ], + [ + -101.39788851299988, + 28.744471509000107 + ], + [ + -101.43061867199992, + 28.67891915900003 + ], + [ + -101.50102263499997, + 28.684528161000117 + ], + [ + -101.52301054699984, + 28.523630488000038 + ], + [ + -101.6388165969999, + 28.52736546500006 + ], + [ + -101.70960260799995, + 28.570410561000074 + ], + [ + -101.81021159799991, + 28.524879392000173 + ], + [ + -101.86840865999989, + 28.562855951000074 + ], + [ + -101.87400056299992, + 28.639678775999982 + ], + [ + -101.81190457399993, + 28.655103322000116 + ], + [ + -101.88713852599994, + 28.83747593300012 + ], + [ + -101.98428360999992, + 28.81093983400001 + ], + [ + -101.9377365549999, + 28.73890978100019 + ], + [ + -101.98554961299993, + 28.610045060000175 + ], + [ + -102.13233165699995, + 28.702740360000064 + ], + [ + -102.22794352399995, + 28.690678634 + ], + [ + -102.28472857099996, + 28.757372095999983 + ], + [ + -102.29734752599995, + 28.930970196000146 + ], + [ + -102.250602658, + 28.954945121000094 + ], + [ + -102.24880960199994, + 29.04456158 + ], + [ + -102.33222965499994, + 29.135390063000045 + ], + [ + -102.29498265599995, + 29.335421332000124 + ], + [ + -102.33755467799995, + 29.396613919000174 + ], + [ + -102.307830605, + 29.450760007999975 + ], + [ + -102.19864659299998, + 29.468620167000097 + ], + [ + -102.0405806629999, + 29.42026496800014 + ], + [ + -102.06240060099998, + 29.34378496300019 + ], + [ + -102.02390251999998, + 29.269927823000046 + ], + [ + -101.89344758399994, + 29.28417337000019 + ], + [ + -101.78662056399992, + 29.225333751000164 + ] + ], + [ + [ + -113.51493886399999, + 37.22880518500017 + ], + [ + -113.57649556399997, + 37.27604330200006 + ], + [ + -113.56882761699995, + 37.346305681 + ], + [ + -113.43217978999996, + 37.4723836230001 + ], + [ + -113.35283591799993, + 37.49778242000008 + ], + [ + -113.23793210499997, + 37.40243286300006 + ], + [ + -113.32841305399995, + 37.263416197000026 + ], + [ + -113.46873241999992, + 37.21638605400011 + ], + [ + -113.51493886399999, + 37.22880518500017 + ] + ], + [ + [ + -110.71828456199995, + 30.622976209000058 + ], + [ + -110.70169057299995, + 30.558542675000183 + ], + [ + -110.79326655399996, + 30.500771749000023 + ], + [ + -110.82121265699993, + 30.618067264000047 + ], + [ + -110.81127959899999, + 30.722021805999987 + ], + [ + -110.75146466099989, + 30.753495685000132 + ], + [ + -110.68836267699999, + 30.68922375400001 + ], + [ + -110.71828456199995, + 30.622976209000058 + ] + ], + [ + [ + -110.8659666559999, + 30.46175013400017 + ], + [ + -110.75407361299995, + 30.297603971000058 + ], + [ + -110.90650958599997, + 30.377056031000166 + ], + [ + -110.8659666559999, + 30.46175013400017 + ] + ], + [ + [ + -110.82302063399987, + 30.944236788000183 + ], + [ + -110.90686766099992, + 30.925723511 + ], + [ + -110.89974958099992, + 30.794969007000077 + ], + [ + -110.97611961599995, + 30.745395749000124 + ], + [ + -111.05561056799985, + 30.74403385700009 + ], + [ + -111.08306867699997, + 30.815108205000172 + ], + [ + -111.09785452199998, + 31.0152182650001 + ], + [ + -111.19314552899993, + 31.11922276400003 + ], + [ + -111.16838857199991, + 31.188289311000176 + ], + [ + -111.17848155699988, + 31.3456340620001 + ], + [ + -111.07483795299999, + 31.332241228000044 + ], + [ + -110.62703320999998, + 31.33300718800018 + ], + [ + -110.48194858799997, + 31.32132587199999 + ], + [ + -110.42341658399988, + 31.270605635000152 + ], + [ + -110.43518863199995, + 31.20561269300015 + ], + [ + -110.39360751899994, + 31.119958695000037 + ], + [ + -110.34316254399994, + 31.112514894000128 + ], + [ + -110.24895464599996, + 30.984086368000078 + ], + [ + -110.27647360699996, + 30.945890873000167 + ], + [ + -110.44547255699996, + 31.00361284899998 + ], + [ + -110.62850163899998, + 31.014179412000033 + ], + [ + -110.65619661999989, + 30.831720802000063 + ], + [ + -110.74911454299996, + 30.858796864 + ], + [ + -110.82302063399987, + 30.944236788000183 + ] + ], + [ + [ + -110.39025728699994, + 33.5329811310001 + ], + [ + -110.59502166899989, + 33.50490945500019 + ], + [ + -110.59331653899994, + 33.40912897300012 + ], + [ + -110.70662568699998, + 33.41794814000019 + ], + [ + -110.70640031699992, + 33.33148386300013 + ], + [ + -110.56869572999994, + 33.32060813300018 + ], + [ + -110.58546130799994, + 33.20614300200003 + ], + [ + -110.7094295419999, + 33.137931700000024 + ], + [ + -110.80525832499995, + 33.181965232000096 + ], + [ + -110.89037662699997, + 33.166603619000114 + ], + [ + -110.74579907599991, + 33.05901383900016 + ], + [ + -110.78526553699999, + 33.03224306700008 + ], + [ + -110.96860629599996, + 33.17250428400013 + ], + [ + -111.16498362999994, + 33.17120565700003 + ], + [ + -111.15801598199994, + 33.24185699000003 + ], + [ + -111.08337663399993, + 33.29992238100016 + ], + [ + -111.34557168299995, + 33.41378289200003 + ], + [ + -111.37241430899985, + 33.502242553000144 + ], + [ + -111.23182103099992, + 33.53387907000007 + ], + [ + -111.1545020239999, + 33.59739097100015 + ], + [ + -111.00333455799995, + 33.566268811999976 + ], + [ + -110.78200392599996, + 33.65112515599998 + ], + [ + -110.80178585699997, + 33.75979174000008 + ], + [ + -110.90709138699998, + 33.68599745400019 + ], + [ + -111.02112732199998, + 33.764943260000166 + ], + [ + -111.15359259399997, + 33.78444463400007 + ], + [ + -111.2846710469999, + 33.981857219 + ], + [ + -111.34275803499992, + 33.88019859000008 + ], + [ + -111.32564494899992, + 33.79467237600005 + ], + [ + -111.21886935099997, + 33.681549842000095 + ], + [ + -111.25830728799991, + 33.62234888700016 + ], + [ + -111.35583969499999, + 33.628330415000164 + ], + [ + -111.45553320799996, + 33.72521190500004 + ], + [ + -111.47310015499994, + 33.82595122500004 + ], + [ + -111.543426706, + 33.85659080800019 + ], + [ + -111.60589166999995, + 33.938075311000034 + ], + [ + -111.61987336099997, + 34.05797607900007 + ], + [ + -111.734069923, + 34.108082768000145 + ], + [ + -111.79341217399997, + 34.001799517000165 + ], + [ + -111.71135924599997, + 33.915264471 + ], + [ + -111.90722787199996, + 33.876957495000056 + ], + [ + -112.04050678099998, + 33.94497912600008 + ], + [ + -112.10365335299997, + 34.174198587000035 + ], + [ + -112.1764522759999, + 34.20466863200005 + ], + [ + -112.22162552099991, + 34.073876433000066 + ], + [ + -112.3250619939999, + 34.0875976750001 + ], + [ + -112.47714106499996, + 34.058138618999976 + ], + [ + -112.51475644299995, + 33.953060473000164 + ], + [ + -112.60570463199991, + 34.01493635600008 + ], + [ + -112.59937995299993, + 34.125984012000174 + ], + [ + -112.76611514399997, + 34.171984359000135 + ], + [ + -112.95574823699997, + 34.20387634500014 + ], + [ + -113.02583772499992, + 34.29426505300012 + ], + [ + -112.93709178699999, + 34.56003502000004 + ], + [ + -113.07404447999994, + 34.583012868000026 + ], + [ + -113.16077559399997, + 34.568009018000055 + ], + [ + -113.21813369299991, + 34.61039389600012 + ], + [ + -113.43573947399989, + 34.64996096300018 + ], + [ + -113.44417397599995, + 34.725785267 + ], + [ + -113.61962521099991, + 35.00238024300006 + ], + [ + -113.58942916299992, + 35.09897696200005 + ], + [ + -113.66270522999991, + 35.141013800999986 + ], + [ + -113.71006287599994, + 35.033759996000185 + ], + [ + -113.79466499399996, + 34.95414743600014 + ], + [ + -113.74922290799998, + 34.90520814200005 + ], + [ + -113.76090154599996, + 34.68173578300008 + ], + [ + -113.863873088, + 34.72743827300019 + ], + [ + -113.94211947199994, + 34.85492615900006 + ], + [ + -114.00419341099996, + 34.895785989000046 + ], + [ + -114.00109842999996, + 35.08918540700017 + ], + [ + -113.93554837299996, + 35.18116625 + ], + [ + -113.78994901599992, + 35.187713234000114 + ], + [ + -113.80253162399998, + 35.35308103900002 + ], + [ + -113.64083309999995, + 35.371342467000034 + ], + [ + -113.54731969499994, + 35.33343322900009 + ], + [ + -113.4181007059999, + 35.233477944000185 + ], + [ + -113.27805956999993, + 35.17575154400015 + ], + [ + -113.1284808559999, + 35.255302621000055 + ], + [ + -112.98964785399988, + 35.22738821500019 + ], + [ + -112.921869303, + 35.1257804010001 + ], + [ + -112.8213406019999, + 35.18365177900006 + ], + [ + -112.76463768299999, + 35.013253015000146 + ], + [ + -112.66239633299989, + 34.98422562500019 + ], + [ + -112.68929581799995, + 34.77209878900004 + ], + [ + -112.60955341599998, + 34.74306005400018 + ], + [ + -112.6098305999999, + 34.85843595900019 + ], + [ + -112.51337232499998, + 34.870020064000016 + ], + [ + -112.52217038799989, + 34.688079862000166 + ], + [ + -112.41490843699995, + 34.61555338700009 + ], + [ + -112.22254396499989, + 34.53567812900013 + ], + [ + -112.20623592899994, + 34.61230165700016 + ], + [ + -112.26783588999996, + 34.66091782900014 + ], + [ + -112.28695057999994, + 34.75973597600006 + ], + [ + -112.41943358299989, + 34.80454242500019 + ], + [ + -112.49462329099998, + 34.97787835400004 + ], + [ + -112.68021881799996, + 35.10104320700003 + ], + [ + -112.59749842799994, + 35.17563504600014 + ], + [ + -112.45773266499992, + 35.22141113200013 + ], + [ + -112.60571617999989, + 35.28126204100016 + ], + [ + -112.73414624599991, + 35.18198505700019 + ], + [ + -112.81988812299988, + 35.21591113600016 + ], + [ + -112.76709757999998, + 35.314896757999975 + ], + [ + -112.79014249, + 35.504302604000145 + ], + [ + -112.66533474699992, + 35.45577416400016 + ], + [ + -112.59906033599998, + 35.4015033930001 + ], + [ + -112.43437416599994, + 35.48844603100008 + ], + [ + -112.31571237999998, + 35.46191081900014 + ], + [ + -112.11752329299992, + 35.51285420500005 + ], + [ + -112.07108700399993, + 35.553364944000066 + ], + [ + -112.08181865199998, + 35.78432540700004 + ], + [ + -112.19482142799984, + 35.84172322100005 + ], + [ + -112.24117993299996, + 35.89810188500013 + ], + [ + -112.26308894099986, + 36.02016805599999 + ], + [ + -112.37298111099983, + 36.0661814880001 + ], + [ + -112.43957049699998, + 36.15044166700005 + ], + [ + -112.17223795899992, + 36.05735613300004 + ], + [ + -112.05937138899998, + 36.04267483300015 + ], + [ + -111.94303180399999, + 35.98364894700006 + ], + [ + -111.75428168999997, + 36.077333243000055 + ], + [ + -111.72551409299996, + 35.834825338000144 + ], + [ + -111.76014070499991, + 35.720965789 + ], + [ + -111.75939509599993, + 35.60098198000014 + ], + [ + -111.6401181089999, + 35.58827137500015 + ], + [ + -111.58722911099994, + 35.52012393900009 + ], + [ + -111.44423292999988, + 35.46898529300017 + ], + [ + -111.41331510399993, + 35.418413209 + ], + [ + -111.27518074299991, + 35.31881163800006 + ], + [ + -111.26170512799996, + 35.176772159000166 + ], + [ + -111.2905364529999, + 35.13981665799997 + ], + [ + -111.16830282599994, + 35.00315570800018 + ], + [ + -111.19574034999994, + 34.957484751000095 + ], + [ + -111.12315248499993, + 34.86512630100003 + ], + [ + -110.98060176899992, + 34.79718792600016 + ], + [ + -110.81960633499989, + 34.68014332700011 + ], + [ + -110.52472126799995, + 34.602700563000155 + ], + [ + -110.44868406699993, + 34.48278195100005 + ], + [ + -110.07345002899996, + 34.37881066400007 + ], + [ + -109.943700316, + 34.41074640400012 + ], + [ + -109.80453335799996, + 34.38617113500004 + ], + [ + -109.66621930899998, + 34.27023573000008 + ], + [ + -109.58251855799995, + 34.282206009000106 + ], + [ + -109.38368115399999, + 34.164569947000075 + ], + [ + -109.32445449199997, + 34.109490129000164 + ], + [ + -109.23855088999994, + 34.17642632700017 + ], + [ + -109.1220702949999, + 34.15954269800005 + ], + [ + -109.050227598, + 34.1970581920001 + ], + [ + -108.96750853699984, + 34.11646947200006 + ], + [ + -108.88185513899998, + 34.155394661000116 + ], + [ + -108.79683326699995, + 34.127857215000176 + ], + [ + -108.66828868799996, + 34.16431722200019 + ], + [ + -108.60728168399993, + 34.26617665900005 + ], + [ + -108.52898332299998, + 34.24069959800016 + ], + [ + -108.42962916699997, + 34.27542744300007 + ], + [ + -108.34040584899998, + 34.199358007 + ], + [ + -108.24445680099984, + 34.280435090000026 + ], + [ + -108.16773318499997, + 34.26843322999997 + ], + [ + -108.03808472799994, + 34.36150360000016 + ], + [ + -107.93101445599996, + 34.372948235000024 + ], + [ + -107.81343165899995, + 34.34731891700005 + ], + [ + -107.71828659799996, + 34.43731094400016 + ], + [ + -107.6358918819999, + 34.44770099100003 + ], + [ + -107.58738546499995, + 34.38817084400006 + ], + [ + -107.41748159799988, + 34.34288181000005 + ], + [ + -107.31855508299986, + 34.3667274070001 + ], + [ + -107.2719969069999, + 34.32793690400018 + ], + [ + -107.19913572099995, + 34.16728227400006 + ], + [ + -107.46273775599991, + 34.078926373000115 + ], + [ + -107.56920627299996, + 34.183446128000185 + ], + [ + -107.57644493399988, + 34.2681285650001 + ], + [ + -107.68051149799987, + 34.28160340300019 + ], + [ + -107.80530999799987, + 34.19191576600019 + ], + [ + -107.7759761019999, + 34.087306815000034 + ], + [ + -107.83660138299996, + 34.04736647400017 + ], + [ + -107.97326330799996, + 34.07103098700003 + ], + [ + -108.03328925999989, + 33.99870229700008 + ], + [ + -108.19773532899995, + 33.9027684830001 + ], + [ + -108.35415647799994, + 33.87184275800007 + ], + [ + -108.37790203899993, + 33.785584688000085 + ], + [ + -108.26872334199993, + 33.68478611400013 + ], + [ + -108.2035957949999, + 33.78065621500008 + ], + [ + -108.04349524099996, + 33.80231016700009 + ], + [ + -107.88383964499997, + 33.87900334800014 + ], + [ + -107.81929600199987, + 33.88868597200013 + ], + [ + -107.76838730699995, + 33.77442922400007 + ], + [ + -107.64302319799992, + 33.807220016000144 + ], + [ + -107.69282687899994, + 33.88325244600014 + ], + [ + -107.67021558399983, + 33.92907503500015 + ], + [ + -107.55698476199996, + 33.976507408000145 + ], + [ + -107.42607226399997, + 33.948025006000194 + ], + [ + -107.32844427299989, + 33.836075825000194 + ], + [ + -107.31470467199995, + 33.73910796000001 + ], + [ + -107.2630215289999, + 33.72583757100011 + ], + [ + -107.28951632099995, + 33.60787066800009 + ], + [ + -107.26220350399996, + 33.54828424200019 + ], + [ + -107.33450681799997, + 33.41955062200009 + ], + [ + -107.50273607099996, + 33.452766461000124 + ], + [ + -107.48752407899997, + 33.344892643000094 + ], + [ + -107.54185135399996, + 33.22455901100011 + ], + [ + -107.59996003099997, + 33.179327676000185 + ], + [ + -107.51629261299996, + 33.131304119000106 + ], + [ + -107.51817502999984, + 32.94935779999997 + ], + [ + -107.59893163099997, + 32.91193312900009 + ], + [ + -107.56698005999988, + 32.70027719500018 + ], + [ + -107.69698760899985, + 32.460972316000095 + ], + [ + -107.77439073799991, + 32.48475680400014 + ], + [ + -107.83622104799997, + 32.56733636000007 + ], + [ + -107.95139379899996, + 32.58229336700009 + ], + [ + -108.05121892199998, + 32.65747480200014 + ], + [ + -108.132515647, + 32.77934706500014 + ], + [ + -108.2798191739999, + 32.80770402100018 + ], + [ + -108.35400984899991, + 32.7316564460001 + ], + [ + -108.32039979399997, + 32.656736795000086 + ], + [ + -108.34106570299997, + 32.54203254000004 + ], + [ + -108.45208121399997, + 32.499107224 + ], + [ + -108.48198634499994, + 32.41561517900004 + ], + [ + -108.57305738699989, + 32.43981349500007 + ], + [ + -108.5383409929999, + 32.52405969900019 + ], + [ + -108.54431889099999, + 32.61022729600006 + ], + [ + -108.67900646999993, + 32.741503994000084 + ], + [ + -108.78445721299994, + 32.80466468700007 + ], + [ + -108.90480336599995, + 32.76737647699997 + ], + [ + -108.97686467999984, + 32.79307112700019 + ], + [ + -109.13855401399996, + 32.99781529800015 + ], + [ + -109.16605278099996, + 33.07230647700004 + ], + [ + -109.41807639799993, + 33.08604866000013 + ], + [ + -109.45062322899992, + 33.12129675300008 + ], + [ + -109.46818830299992, + 33.264191296000035 + ], + [ + -109.43911277699993, + 33.33747218400009 + ], + [ + -109.51863654799996, + 33.356731524000054 + ], + [ + -109.52251211999999, + 33.177452832000085 + ], + [ + -109.57578617799999, + 33.143066881000095 + ], + [ + -109.72103106599991, + 33.20778001800011 + ], + [ + -109.7687459309999, + 33.289178989000106 + ], + [ + -109.88742475099991, + 33.32819292800008 + ], + [ + -109.95369051499995, + 33.39006117600013 + ], + [ + -110.07461484699996, + 33.443540229 + ], + [ + -110.39025728699994, + 33.5329811310001 + ] + ], + [ + [ + -107.20754364399994, + 33.85564674700015 + ], + [ + -107.29010974899995, + 34.03065634000012 + ], + [ + -107.17581749199996, + 34.129564752000135 + ], + [ + -107.00730337599987, + 33.97167016600014 + ], + [ + -107.04561524399998, + 33.90043546300018 + ], + [ + -107.13190557999997, + 33.85343727400004 + ], + [ + -107.20754364399994, + 33.85564674700015 + ] + ], + [ + [ + -101.42948962899987, + 26.008530468000117 + ], + [ + -101.39558466299997, + 25.900215324000158 + ], + [ + -101.52323953999996, + 25.827826693000134 + ], + [ + -101.64501166199994, + 25.895776603000172 + ], + [ + -101.65662361499994, + 26.04979357100018 + ], + [ + -101.52863362999994, + 26.187296346000096 + ], + [ + -101.44754760199999, + 26.116433390000054 + ], + [ + -101.42948962899987, + 26.008530468000117 + ] + ], + [ + [ + -101.4770505599999, + 26.436860808000063 + ], + [ + -101.57272361399998, + 26.37554266000018 + ], + [ + -101.72248056399991, + 26.382073504000175 + ], + [ + -101.84044663099996, + 26.482982901000128 + ], + [ + -101.93924764399998, + 26.597279874000094 + ], + [ + -101.90198555899997, + 26.62110677400011 + ], + [ + -101.72529554199997, + 26.479004011000086 + ], + [ + -101.55624361899993, + 26.45734701700019 + ], + [ + -101.55796861499994, + 26.5014371690001 + ], + [ + -101.70884655999993, + 26.567501151000045 + ], + [ + -101.77825156799992, + 26.695249234000016 + ], + [ + -101.84188060699995, + 26.75144402799998 + ], + [ + -101.79841658399994, + 26.82436373600018 + ], + [ + -101.61568455599996, + 26.72507908700004 + ], + [ + -101.65972156699996, + 26.590688177000118 + ], + [ + -101.57089267099997, + 26.538467412000045 + ], + [ + -101.47713454599995, + 26.550579765000123 + ], + [ + -101.4770505599999, + 26.436860808000063 + ] + ], + [ + [ + -102.43405955299994, + 26.773750954000036 + ], + [ + -102.52564961399997, + 26.74306832700006 + ], + [ + -102.61927061099993, + 26.77558189700011 + ], + [ + -102.61561559899997, + 26.854493157000093 + ], + [ + -102.42536953099994, + 26.855837112000188 + ], + [ + -102.43405955299994, + 26.773750954000036 + ] + ], + [ + [ + -102.20531456499998, + 27.02995958300005 + ], + [ + -102.25835457799997, + 26.995963925000126 + ], + [ + -102.45690157999996, + 27.018635967000023 + ], + [ + -102.52167558599996, + 27.080145390000155 + ], + [ + -102.58278653399998, + 27.06785098200004 + ], + [ + -102.69351164299985, + 27.128904262 + ], + [ + -102.66692357499994, + 27.174494440000046 + ], + [ + -102.50137361099996, + 27.178793182000106 + ], + [ + -102.50009151499995, + 27.13842979200018 + ], + [ + -102.38362865899995, + 27.082188228000064 + ], + [ + -102.20531456499998, + 27.02995958300005 + ] + ], + [ + [ + -104.03993966599995, + 27.137391777000175 + ], + [ + -104.076362556, + 27.224617047000038 + ], + [ + -104.17311855199995, + 27.289275216000135 + ], + [ + -104.10049455799998, + 27.431519298000012 + ], + [ + -104.0575565829999, + 27.35371344400005 + ], + [ + -103.96933755499992, + 27.31671304100007 + ], + [ + -103.98421459499986, + 27.18619272700016 + ], + [ + -104.03993966599995, + 27.137391777000175 + ] + ], + [ + [ + -102.53945963799987, + 27.304407569000148 + ], + [ + -102.58402252899992, + 27.30523368900009 + ], + [ + -102.69084954999994, + 27.480564160000085 + ], + [ + -102.69453456999992, + 27.55635869300005 + ], + [ + -102.77906053199996, + 27.64780676600003 + ], + [ + -102.72879761099989, + 27.689479242000118 + ], + [ + -102.60037964599991, + 27.59722198000003 + ], + [ + -102.54672255699995, + 27.447402502000045 + ], + [ + -102.50191457899996, + 27.391364785000064 + ], + [ + -102.53945963799987, + 27.304407569000148 + ] + ], + [ + [ + -102.94145956999989, + 28.144574172000148 + ], + [ + -102.93427259099997, + 27.985381714000027 + ], + [ + -102.99201166699999, + 27.98753871300005 + ], + [ + -103.03347761199996, + 28.084151547000033 + ], + [ + -103.14813953299995, + 28.262991186000136 + ], + [ + -103.11920151599998, + 28.36240307200012 + ], + [ + -102.97771465399995, + 28.225180588000057 + ], + [ + -102.94145956999989, + 28.144574172000148 + ] + ], + [ + [ + -106.04590562099997, + 28.31239110600012 + ], + [ + -106.0010605949999, + 28.114868372000046 + ], + [ + -106.11505162799995, + 28.112205274000132 + ], + [ + -106.07910164499992, + 28.20151981600003 + ], + [ + -106.12914261299989, + 28.31157604900011 + ], + [ + -106.04590562099997, + 28.31239110600012 + ] + ], + [ + [ + -105.99546064499992, + 28.41322808300015 + ], + [ + -105.98631263599992, + 28.344234793999988 + ], + [ + -106.09760251699998, + 28.35736839800012 + ], + [ + -106.13356758799995, + 28.436318047000157 + ], + [ + -106.08119963599995, + 28.46999871300011 + ], + [ + -105.99546064499992, + 28.41322808300015 + ] + ], + [ + [ + -102.00932353999997, + 27.517426597000053 + ], + [ + -101.97531162099989, + 27.608440655000038 + ], + [ + -101.85607167199993, + 27.531629732000056 + ], + [ + -101.76494563199998, + 27.40100430900003 + ], + [ + -101.82951361199997, + 27.342184136000185 + ], + [ + -101.74742862799991, + 27.10270444500003 + ], + [ + -101.92811563899994, + 27.178464947000066 + ], + [ + -101.99749751299998, + 27.180765109000106 + ], + [ + -102.00279252899998, + 27.059745179 + ], + [ + -102.11498262699996, + 27.219015254000112 + ], + [ + -102.01708266799989, + 27.303085575000182 + ], + [ + -101.94451851999997, + 27.325665751000088 + ], + [ + -102.00932353999997, + 27.517426597000053 + ] + ], + [ + [ + -103.7438586589999, + 27.288386399000046 + ], + [ + -103.67248557999989, + 27.27694677700015 + ], + [ + -103.69543456099996, + 27.19258661000009 + ], + [ + -103.77053054599997, + 27.23916132500017 + ], + [ + -103.7438586589999, + 27.288386399000046 + ] + ], + [ + [ + -101.35954264699996, + 26.81198617900003 + ], + [ + -101.30867757099992, + 26.864217841000027 + ], + [ + -101.21466865899998, + 26.847233759 + ], + [ + -101.0743556, + 26.68987878100006 + ], + [ + -101.09426865499995, + 26.659983047000026 + ], + [ + -101.35954264699996, + 26.81198617900003 + ] + ], + [ + [ + -103.63156160799991, + 28.874860394999985 + ], + [ + -103.60223366499997, + 28.781538967000188 + ], + [ + -103.70202659199992, + 28.804955155000187 + ], + [ + -103.63156160799991, + 28.874860394999985 + ] + ], + [ + [ + -104.32301363599998, + 29.00618822200005 + ], + [ + -104.21337867699998, + 29.071111762000157 + ], + [ + -104.19445066399999, + 28.984339953000188 + ], + [ + -104.32301363599998, + 29.00618822200005 + ] + ], + [ + [ + -104.64405863299999, + 29.432362401000034 + ], + [ + -104.49454459099996, + 29.27344285800018 + ], + [ + -104.48642755599997, + 29.177037393000035 + ], + [ + -104.67121163999997, + 29.234393247000128 + ], + [ + -104.687385528, + 29.42985068000013 + ], + [ + -104.64405863299999, + 29.432362401000034 + ] + ], + [ + [ + -106.52011061999997, + 29.775866372000053 + ], + [ + -106.4710996199999, + 29.736405043000047 + ], + [ + -106.46424858799998, + 29.624469252000097 + ], + [ + -106.53277567599997, + 29.64683334300014 + ], + [ + -106.52011061999997, + 29.775866372000053 + ] + ], + [ + [ + -103.45017266799988, + 30.15028927300017 + ], + [ + -103.52783416499994, + 30.165679454000042 + ], + [ + -103.55961838299999, + 30.286543892000054 + ], + [ + -103.48879354199994, + 30.297779550000087 + ], + [ + -103.45017266799988, + 30.15028927300017 + ] + ], + [ + [ + -103.40777423799994, + 30.291871980000167 + ], + [ + -103.32336311899996, + 30.430802277000055 + ], + [ + -103.25473441299988, + 30.492376869000168 + ], + [ + -103.03999221799995, + 30.503698323000037 + ], + [ + -102.9486485249999, + 30.45805742500005 + ], + [ + -103.07395491999995, + 30.383998134000024 + ], + [ + -103.40777423799994, + 30.291871980000167 + ] + ], + [ + [ + -107.63527656999997, + 30.618418298000165 + ], + [ + -107.6236416509999, + 30.550701908000065 + ], + [ + -107.69052856699994, + 30.478977459000134 + ], + [ + -107.74177552399993, + 30.535613308000052 + ], + [ + -107.68336455499986, + 30.638070843000037 + ], + [ + -107.63527656999997, + 30.618418298000165 + ] + ], + [ + [ + -104.10186042399994, + 30.736611996000192 + ], + [ + -104.01763684299988, + 30.80502055100004 + ], + [ + -104.11415214599998, + 30.929345521000016 + ], + [ + -104.07120176899991, + 31.01117362500014 + ], + [ + -103.96856706599993, + 30.87815203800011 + ], + [ + -103.85108075699992, + 30.80737710200009 + ], + [ + -103.85452938399999, + 30.76883683800014 + ], + [ + -103.70749047199996, + 30.689939900000127 + ], + [ + -103.75589685399996, + 30.613703207000015 + ], + [ + -103.70001200399997, + 30.510849022000116 + ], + [ + -103.79071836199995, + 30.48836595800003 + ], + [ + -103.8524546559999, + 30.524861934000114 + ], + [ + -103.78693349699995, + 30.616455307000024 + ], + [ + -103.855177428, + 30.664786554000102 + ], + [ + -104.04156577999993, + 30.552089438000166 + ], + [ + -104.20616878899989, + 30.58374223200002 + ], + [ + -104.2139653299999, + 30.66222307200013 + ], + [ + -104.10186042399994, + 30.736611996000192 + ] + ], + [ + [ + -108.79724857699995, + 31.00556952100004 + ], + [ + -109.0975185239999, + 30.974635772000056 + ], + [ + -109.10194366599995, + 31.02879091300008 + ], + [ + -109.03016657899997, + 31.178409561000024 + ], + [ + -108.920852648, + 31.308742288000133 + ], + [ + -108.74750566999995, + 31.32782553500016 + ], + [ + -108.67595657099992, + 31.259987775000184 + ], + [ + -108.79397561099995, + 31.09138964800013 + ], + [ + -108.79724857699995, + 31.00556952100004 + ] + ], + [ + [ + -109.94465652399998, + 31.31442907400009 + ], + [ + -109.98026268099994, + 31.228065800000138 + ], + [ + -110.08033757599998, + 31.283888102000162 + ], + [ + -109.94465652399998, + 31.31442907400009 + ] + ], + [ + [ + -110.25263333499998, + 31.3699304860001 + ], + [ + -110.31167383299993, + 31.372065984000187 + ], + [ + -110.40686808599997, + 31.467053151000073 + ], + [ + -110.36464782499996, + 31.50141409500003 + ], + [ + -110.25263333499998, + 31.3699304860001 + ] + ], + [ + [ + -109.28119621099995, + 31.751007065000067 + ], + [ + -109.34443848599994, + 31.882245136000165 + ], + [ + -109.41281686099995, + 31.942120901000123 + ], + [ + -109.33013529399989, + 31.98309609100005 + ], + [ + -109.36470338099997, + 32.068805281000095 + ], + [ + -109.29414616399993, + 32.07713437800015 + ], + [ + -109.23369594999997, + 31.869662517999984 + ], + [ + -109.17287344799996, + 31.80949750200017 + ], + [ + -109.28119621099995, + 31.751007065000067 + ] + ], + [ + [ + -110.502703049, + 32.12110040500016 + ], + [ + -110.59642814299991, + 32.21654183400017 + ], + [ + -110.52215484099997, + 32.25558598100014 + ], + [ + -110.502703049, + 32.12110040500016 + ] + ], + [ + [ + -106.50659043699994, + 32.23475682100013 + ], + [ + -106.54579951399995, + 32.26090481400013 + ], + [ + -106.5940709759999, + 32.381616584000085 + ], + [ + -106.47608789599991, + 32.33330654100013 + ], + [ + -106.50659043699994, + 32.23475682100013 + ] + ], + [ + [ + -106.54308034299987, + 32.45103137799998 + ], + [ + -106.5829648269999, + 32.509072902000185 + ], + [ + -106.53057680599994, + 32.61614593900015 + ], + [ + -106.45098438999992, + 32.56829690100005 + ], + [ + -106.45454506799996, + 32.508481410000115 + ], + [ + -106.54308034299987, + 32.45103137799998 + ] + ], + [ + [ + -106.73259277499994, + 33.10451871300006 + ], + [ + -106.77128001899996, + 33.2899408130001 + ], + [ + -106.7030949849999, + 33.312277590000065 + ], + [ + -106.60913633899997, + 33.26244541800003 + ], + [ + -106.67001694799995, + 33.130847626000104 + ], + [ + -106.73259277499994, + 33.10451871300006 + ] + ], + [ + [ + -109.96586787799998, + 32.677359899000066 + ], + [ + -109.88905142999994, + 32.75337863800007 + ], + [ + -109.82889192299996, + 32.73417477100003 + ], + [ + -109.82176242299988, + 32.593673310000156 + ], + [ + -109.96586787799998, + 32.677359899000066 + ] + ], + [ + [ + -110.6630240959999, + 32.37704257100012 + ], + [ + -110.76045153399997, + 32.38580176500005 + ], + [ + -110.87618391099994, + 32.35822498300007 + ], + [ + -110.80713026199987, + 32.513906809 + ], + [ + -110.72216113499996, + 32.473605879000104 + ], + [ + -110.6630240959999, + 32.37704257100012 + ] + ], + [ + [ + -109.99023463099991, + 30.27701382600003 + ], + [ + -109.88306462299994, + 30.270351051000034 + ], + [ + -109.97511267199997, + 30.169005794999975 + ], + [ + -109.99023463099991, + 30.27701382600003 + ] + ], + [ + [ + -103.97540253199992, + 25.68715723600002 + ], + [ + -103.88794659199988, + 25.711333159000105 + ], + [ + -103.82717159199984, + 25.581825379000065 + ], + [ + -103.83527353899996, + 25.52286405400008 + ], + [ + -103.76956159799994, + 25.366783462000058 + ], + [ + -103.88072155999998, + 25.332643132000044 + ], + [ + -103.92868767099998, + 25.498512111000025 + ], + [ + -103.91948652099995, + 25.61364174200014 + ], + [ + -103.97540253199992, + 25.68715723600002 + ] + ], + [ + [ + -110.80405456599993, + 30.066241650000052 + ], + [ + -110.69812055299991, + 30.062841615000025 + ], + [ + -110.64347054399997, + 29.954612637000082 + ], + [ + -110.63045462199995, + 29.840284986000086 + ], + [ + -110.59399468399982, + 29.80970210400011 + ], + [ + -110.58975964399997, + 29.69152263300009 + ], + [ + -110.55541965699996, + 29.61073064200002 + ], + [ + -110.60190552499995, + 29.565612366000153 + ], + [ + -110.72776063899988, + 29.630053108000084 + ], + [ + -110.70595562099999, + 29.761974038000062 + ], + [ + -110.76097057799996, + 29.819968929000026 + ], + [ + -110.80461866799999, + 29.97907974800006 + ], + [ + -110.80405456599993, + 30.066241650000052 + ] + ], + [ + [ + -110.66416160799997, + 29.5280979850001 + ], + [ + -110.57086968399994, + 29.572660038000095 + ], + [ + -110.52628365899994, + 29.40201572100017 + ], + [ + -110.4765085649999, + 29.362560091000034 + ], + [ + -110.51385463799988, + 29.131448221000028 + ], + [ + -110.58510567599996, + 29.143865843000015 + ], + [ + -110.54842361799984, + 29.26945592200019 + ], + [ + -110.6334226539999, + 29.314020154000048 + ], + [ + -110.66416160799997, + 29.5280979850001 + ] + ], + [ + [ + -110.41638165299986, + 28.35820139200007 + ], + [ + -110.3523326809999, + 28.330868508000037 + ], + [ + -110.38668054699997, + 28.203422676000116 + ], + [ + -110.2944336789999, + 28.070782076000057 + ], + [ + -110.48445159199997, + 28.065838262000113 + ], + [ + -110.48912852599994, + 28.22727874600008 + ], + [ + -110.44122360199987, + 28.236916258000065 + ], + [ + -110.41638165299986, + 28.35820139200007 + ] + ], + [ + [ + -115.79399706399988, + 36.39941554500018 + ], + [ + -115.62969697499994, + 36.32901973000003 + ], + [ + -115.58752294899989, + 36.250227267000184 + ], + [ + -115.71033474199993, + 36.21434354200011 + ], + [ + -115.77320331699997, + 36.300151493000044 + ], + [ + -115.79399706399988, + 36.39941554500018 + ] + ], + [ + [ + -108.70398436199991, + 38.93304776700012 + ], + [ + -108.63466561899997, + 38.838407781000114 + ], + [ + -108.76071437599984, + 38.785985443000186 + ], + [ + -108.84816813599997, + 38.806299134000085 + ], + [ + -108.92618986699989, + 38.75936359900015 + ], + [ + -109.00069793599994, + 38.79997654400006 + ], + [ + -108.94985761599992, + 38.857857126000056 + ], + [ + -108.84538028799989, + 38.81680761700011 + ], + [ + -108.70398436199991, + 38.93304776700012 + ] + ], + [ + [ + -109.22069567399996, + 38.62183605900009 + ], + [ + -109.06482243899995, + 38.46468124800003 + ], + [ + -109.08253960399992, + 38.41346926600005 + ], + [ + -109.21422030399992, + 38.33056717100004 + ], + [ + -109.32792389199989, + 38.388913623 + ], + [ + -109.33631226199992, + 38.53056780600008 + ], + [ + -109.22069567399996, + 38.62183605900009 + ] + ], + [ + [ + -110.80723060999998, + 38.171735676000026 + ], + [ + -110.76266844899999, + 38.14907608500016 + ], + [ + -110.7158413329999, + 38.02262431800017 + ], + [ + -110.74034044799998, + 37.945974958000136 + ], + [ + -110.80681070499998, + 37.92263266400005 + ], + [ + -110.88051158999997, + 38.079720858000144 + ], + [ + -110.80723060999998, + 38.171735676000026 + ] + ], + [ + [ + -109.57809205299998, + 37.95691552100004 + ], + [ + -109.35838887699998, + 37.871913137000035 + ], + [ + -109.34988252199997, + 37.785158115000115 + ], + [ + -109.45477304699989, + 37.7213944450001 + ], + [ + -109.60905861899994, + 37.8183970880001 + ], + [ + -109.56223316199998, + 37.901908494 + ], + [ + -109.57809205299998, + 37.95691552100004 + ] + ], + [ + [ + -112.17819347699998, + 36.90696509600008 + ], + [ + -112.07649508999987, + 36.88220179800004 + ], + [ + -112.0897311249999, + 36.79499968699997 + ], + [ + -112.00695046699997, + 36.60399594900019 + ], + [ + -112.00082318499994, + 36.460724605000166 + ], + [ + -111.88162628299989, + 36.32343020300004 + ], + [ + -111.97993173199995, + 36.29416605900002 + ], + [ + -112.00211373999997, + 36.18477387900015 + ], + [ + -112.13121569099997, + 36.241346422 + ], + [ + -112.20369735199989, + 36.244455391000145 + ], + [ + -112.27108868999989, + 36.307445029000064 + ], + [ + -112.39816475699996, + 36.34203715600006 + ], + [ + -112.53869396999988, + 36.48881322100004 + ], + [ + -112.48029325399995, + 36.57907431300015 + ], + [ + -112.37204708399997, + 36.681230484000025 + ], + [ + -112.333545303, + 36.77996084400013 + ], + [ + -112.17819347699998, + 36.90696509600008 + ] + ], + [ + [ + -109.18553551799994, + 36.88458977800008 + ], + [ + -109.0825095269999, + 36.86954991100009 + ], + [ + -109.06847581999995, + 36.75080666100007 + ], + [ + -109.21038344199991, + 36.64710438600014 + ], + [ + -109.21118374899999, + 36.58920338900015 + ], + [ + -109.08096928899994, + 36.50919240600001 + ], + [ + -108.92285789699997, + 36.531745742000055 + ], + [ + -108.86204857499996, + 36.34242537800003 + ], + [ + -108.86399666899985, + 36.26418635900018 + ], + [ + -108.71277363399997, + 36.121099711000056 + ], + [ + -108.66272252999994, + 35.97381802700005 + ], + [ + -108.670928313, + 35.89459625700016 + ], + [ + -108.87761058499996, + 35.765571178000016 + ], + [ + -109.01194050899988, + 35.728995804000135 + ], + [ + -109.06929718499998, + 35.772021820000134 + ], + [ + -109.11240051199997, + 35.64462247200015 + ], + [ + -109.10198974699995, + 35.556795021000084 + ], + [ + -109.17047589599991, + 35.48637321899997 + ], + [ + -109.1748765619999, + 35.413600357000064 + ], + [ + -109.33564705099997, + 35.423004799000125 + ], + [ + -109.42275442399995, + 35.56579974300013 + ], + [ + -109.37058086499997, + 35.74151615000011 + ], + [ + -109.43622160399991, + 35.86060867700019 + ], + [ + -109.33303079399991, + 36.09004969500012 + ], + [ + -109.34522836399992, + 36.23379949000014 + ], + [ + -109.2067280689999, + 36.364728735000085 + ], + [ + -109.21735429599988, + 36.430175022000185 + ], + [ + -109.33494745599995, + 36.55852708800012 + ], + [ + -109.28243198299998, + 36.606259399000066 + ], + [ + -109.29989980599993, + 36.828585723000174 + ], + [ + -109.18553551799994, + 36.88458977800008 + ] + ], + [ + [ + -107.35856198699997, + 35.60849001000014 + ], + [ + -107.21793746699996, + 35.586058448000074 + ], + [ + -107.14980504499994, + 35.377643692000106 + ], + [ + -107.21125809699993, + 35.31828623600012 + ], + [ + -107.25720058599984, + 35.21034603100003 + ], + [ + -107.37750940899997, + 35.14504910700009 + ], + [ + -107.36071130099998, + 35.078438014000085 + ], + [ + -107.43026233899991, + 35.05027758000017 + ], + [ + -107.66492747799998, + 35.119684783000025 + ], + [ + -107.7205842159999, + 35.083988569999974 + ], + [ + -107.86147807699984, + 35.16351096500017 + ], + [ + -107.76670633099997, + 35.22732238500009 + ], + [ + -107.78627545299997, + 35.33078481300015 + ], + [ + -107.68258647099998, + 35.310267997000096 + ], + [ + -107.63600197699998, + 35.40424369100003 + ], + [ + -107.51045840999996, + 35.46409175200017 + ], + [ + -107.35856198699997, + 35.60849001000014 + ] + ], + [ + [ + -108.537227713, + 35.46920974400018 + ], + [ + -108.36062872799988, + 35.43513588900004 + ], + [ + -108.05638723299995, + 35.32021384300003 + ], + [ + -108.01631823599985, + 35.15320794700017 + ], + [ + -107.93353514399996, + 35.067588857000146 + ], + [ + -107.94133901199996, + 34.95256853200004 + ], + [ + -108.01947435699986, + 34.913883435000116 + ], + [ + -108.04956729799994, + 35.00149381199998 + ], + [ + -108.12363479199996, + 34.97782781300003 + ], + [ + -108.0940046149999, + 34.90164267900019 + ], + [ + -108.20955584899986, + 34.79221449500017 + ], + [ + -108.33571870599997, + 34.777075291000074 + ], + [ + -108.26269988999991, + 34.916279880000104 + ], + [ + -108.15231853699999, + 35.00535651400003 + ], + [ + -108.29025019799991, + 35.10876291699998 + ], + [ + -108.50559351899994, + 35.15457391100006 + ], + [ + -108.65066919799989, + 35.407498356000076 + ], + [ + -108.537227713, + 35.46920974400018 + ] + ], + [ + [ + -107.76976624399998, + 34.981658739000125 + ], + [ + -107.71041931199989, + 34.96986919800014 + ], + [ + -107.71910198599994, + 34.88503056400015 + ], + [ + -107.65186607299995, + 34.83671873200018 + ], + [ + -107.76541479799994, + 34.70509934700016 + ], + [ + -107.86162903499996, + 34.688405566000085 + ], + [ + -107.91824730299999, + 34.76827793800004 + ], + [ + -107.76976624399998, + 34.981658739000125 + ] + ], + [ + [ + -115.27094612299993, + 40.770586358000116 + ], + [ + -115.28489723099989, + 40.71021017400005 + ], + [ + -115.37993536699997, + 40.57023222700013 + ], + [ + -115.43033280599997, + 40.541682628000046 + ], + [ + -115.51440881899998, + 40.630574017000015 + ], + [ + -115.34801760099998, + 40.686267938000015 + ], + [ + -115.27094612299993, + 40.770586358000116 + ] + ], + [ + [ + -113.84326056599997, + 39.93380029100018 + ], + [ + -113.85573377199995, + 39.83458902100017 + ], + [ + -113.98000182899995, + 39.789064309000025 + ], + [ + -113.90209522599997, + 39.924446003000185 + ], + [ + -113.84326056599997, + 39.93380029100018 + ] + ], + [ + [ + -114.61059173099994, + 39.6838556460001 + ], + [ + -114.54362969299996, + 39.317713707 + ], + [ + -114.62220563699998, + 39.23711607000007 + ], + [ + -114.68750405999998, + 39.25824292700008 + ], + [ + -114.6265514399999, + 39.50882947400015 + ], + [ + -114.6867717859999, + 39.54040544100019 + ], + [ + -114.67435496799988, + 39.63942486600007 + ], + [ + -114.61059173099994, + 39.6838556460001 + ] + ], + [ + [ + -114.21685589499987, + 39.328025426000124 + ], + [ + -114.09631473699994, + 39.2706203190001 + ], + [ + -114.1192366439999, + 39.19322309900019 + ], + [ + -114.19477876999991, + 39.17402690200004 + ], + [ + -114.28893737899995, + 39.20282614000007 + ], + [ + -114.28498492299997, + 39.30482418500003 + ], + [ + -114.21685589499987, + 39.328025426000124 + ] + ], + [ + [ + -114.35383685999994, + 39.07803041400007 + ], + [ + -114.26458797699996, + 39.04585606900008 + ], + [ + -114.24791696099999, + 38.97572160100009 + ], + [ + -114.17310422599996, + 38.94183629100007 + ], + [ + -114.29654231299992, + 38.805069878000154 + ], + [ + -114.3630070609999, + 39.04354284700014 + ], + [ + -114.35383685999994, + 39.07803041400007 + ] + ], + [ + [ + -116.2738830649999, + 38.7274243760001 + ], + [ + -116.26749241399995, + 38.597928153000055 + ], + [ + -116.38347597699999, + 38.636014257000056 + ], + [ + -116.3744710869999, + 38.689115181000034 + ], + [ + -116.2738830649999, + 38.7274243760001 + ] + ], + [ + [ + -116.5023277979999, + 39.19725030100017 + ], + [ + -116.40467744399996, + 39.12962291200006 + ], + [ + -116.3518673769999, + 39.03716466100019 + ], + [ + -116.430869068, + 39.024663366000084 + ], + [ + -116.51353334999999, + 38.90719811800017 + ], + [ + -116.55108069599999, + 38.64504604400014 + ], + [ + -116.66716124799996, + 38.63237121300011 + ], + [ + -116.6733854719999, + 38.739689737 + ], + [ + -116.61869995999996, + 38.87915355400003 + ], + [ + -116.53860322499992, + 38.93843069400009 + ], + [ + -116.47759223399999, + 39.06386592400008 + ], + [ + -116.5023277979999, + 39.19725030100017 + ] + ], + [ + [ + -116.4706404239999, + 39.41491909500019 + ], + [ + -116.42491529399996, + 39.383380438000074 + ], + [ + -116.4368075029999, + 39.22680171200017 + ], + [ + -116.52557152099996, + 39.25392367799998 + ], + [ + -116.55294529499992, + 39.35411747600017 + ], + [ + -116.4706404239999, + 39.41491909500019 + ] + ], + [ + [ + -117.03232344199984, + 39.48741792100003 + ], + [ + -116.96531551899994, + 39.45700057100004 + ], + [ + -117.07101409499995, + 39.33567019300017 + ], + [ + -117.1003533149999, + 39.242938158000186 + ], + [ + -117.18799874599995, + 39.28855189300015 + ], + [ + -117.03232344199984, + 39.48741792100003 + ] + ], + [ + [ + -117.20386964699992, + 39.25619345000007 + ], + [ + -117.1376634529999, + 39.210365884000055 + ], + [ + -117.28571205899993, + 38.94269264200011 + ], + [ + -117.23217798299993, + 38.74945969200007 + ], + [ + -117.44259503899997, + 38.66670373300019 + ], + [ + -117.47923418499994, + 38.824604997999984 + ], + [ + -117.31715635199998, + 39.01138276000012 + ], + [ + -117.20386964699992, + 39.25619345000007 + ] + ], + [ + [ + -116.86124745299992, + 39.139873467000086 + ], + [ + -116.75769306499996, + 39.07863908300004 + ], + [ + -116.79128083799992, + 38.994893176000176 + ], + [ + -116.85990239699993, + 38.97219171900008 + ], + [ + -116.86124745299992, + 39.139873467000086 + ] + ], + [ + [ + -116.881172532, + 38.86196231800011 + ], + [ + -116.82331396399996, + 38.735673595000094 + ], + [ + -116.88452638599995, + 38.64538177100013 + ], + [ + -117.00077706699994, + 38.638004266000166 + ], + [ + -116.95634420099998, + 38.71904086500018 + ], + [ + -116.99109006699985, + 38.82265007100017 + ], + [ + -116.881172532, + 38.86196231800011 + ] + ], + [ + [ + -118.783170155, + 38.602786637000065 + ], + [ + -118.72028244399996, + 38.461470219000034 + ], + [ + -118.79378508899998, + 38.44203806700017 + ], + [ + -118.85346639599999, + 38.531383707000145 + ], + [ + -118.783170155, + 38.602786637000065 + ] + ], + [ + [ + -118.29582322999994, + 37.93426703500012 + ], + [ + -118.19858723699997, + 37.62401271400017 + ], + [ + -118.06233240599994, + 37.53352134500011 + ], + [ + -118.06907796899986, + 37.46931225700018 + ], + [ + -118.13983354899995, + 37.386479596000186 + ], + [ + -118.21804507499985, + 37.37597892100007 + ], + [ + -118.33005741799991, + 37.70731581100017 + ], + [ + -118.40059655899995, + 37.79968269000011 + ], + [ + -118.37890481, + 37.88149165100015 + ], + [ + -118.29582322999994, + 37.93426703500012 + ] + ], + [ + [ + -118.81893723699989, + 38.314483451000115 + ], + [ + -118.8685663359999, + 38.24968552400003 + ], + [ + -118.98016529799997, + 38.1847856440001 + ], + [ + -119.10524501899994, + 38.22743303000004 + ], + [ + -118.96628320599996, + 38.30799064800016 + ], + [ + -118.81893723699989, + 38.314483451000115 + ] + ], + [ + [ + -119.28942908499994, + 38.53308610100015 + ], + [ + -119.22942932999996, + 38.36938769600016 + ], + [ + -119.38422255099988, + 38.43070883300015 + ], + [ + -119.28942908499994, + 38.53308610100015 + ] + ], + [ + [ + -119.48720616099996, + 39.210214870000186 + ], + [ + -119.44908373999988, + 39.01121196400004 + ], + [ + -119.48537790399996, + 38.77815286400005 + ], + [ + -119.55288783299989, + 38.83445019100003 + ], + [ + -119.47582171199991, + 38.970779971000184 + ], + [ + -119.50149774599993, + 39.071597090000125 + ], + [ + -119.48720616099996, + 39.210214870000186 + ] + ], + [ + [ + -116.30724659999998, + 39.903572568000186 + ], + [ + -116.25162632299993, + 39.81059419300004 + ], + [ + -116.35810353699998, + 39.77811146300007 + ], + [ + -116.38816956799985, + 39.830117594000114 + ], + [ + -116.30724659999998, + 39.903572568000186 + ] + ], + [ + [ + -117.999316121, + 37.03693293100008 + ], + [ + -118.03713659099998, + 36.89328740400009 + ], + [ + -118.10640388899992, + 37.00193703000019 + ], + [ + -117.999316121, + 37.03693293100008 + ] + ], + [ + [ + -118.60862605899996, + 42.73505730700015 + ], + [ + -118.52174741799996, + 42.740972248000105 + ], + [ + -118.53397497299994, + 42.63875725600019 + ], + [ + -118.63469278599996, + 42.59938877400015 + ], + [ + -118.73708380899984, + 42.71878275200015 + ], + [ + -118.60862605899996, + 42.73505730700015 + ] + ], + [ + [ + -115.44251388499993, + 41.79196180200017 + ], + [ + -115.39315583499996, + 41.869294407000154 + ], + [ + -115.30977795299998, + 41.828125125000156 + ], + [ + -115.29009181999999, + 41.73757007200015 + ], + [ + -115.3821459639999, + 41.73589517500005 + ], + [ + -115.44251388499993, + 41.79196180200017 + ] + ] + ], + [ + [ + [ + -99.26330560699995, + 21.300249656000062 + ], + [ + -99.3374785769999, + 21.32698306500015 + ], + [ + -99.3539656129999, + 21.238259950000042 + ], + [ + -99.28282957399995, + 21.19272459000007 + ], + [ + -99.26330560699995, + 21.300249656000062 + ] + ] + ], + [ + [ + [ + -104.06610059199994, + 23.053216915000178 + ], + [ + -104.13113359899995, + 23.02812937600015 + ], + [ + -104.20934262299988, + 22.87413034500014 + ], + [ + -104.17491965599993, + 22.79952034300004 + ], + [ + -104.1747436359999, + 22.650429084 + ], + [ + -104.13576460099995, + 22.59884165500017 + ], + [ + -104.02148455899999, + 22.573729138000033 + ], + [ + -104.01928766299994, + 22.699287365000032 + ], + [ + -104.04282354399999, + 22.773614562000034 + ], + [ + -104.10467561899998, + 22.808606661000113 + ], + [ + -104.09879252899992, + 22.884154934000094 + ], + [ + -103.99488056599995, + 22.905920557 + ], + [ + -103.96925356799983, + 22.952858209 + ], + [ + -104.00230357999988, + 23.042637445000025 + ], + [ + -104.06610059199994, + 23.053216915000178 + ] + ] + ], + [ + [ + [ + -81.91766356399995, + 23.163649160000034 + ], + [ + -81.81930561799999, + 23.126583378000078 + ], + [ + -81.65257263199999, + 23.1202954420001 + ], + [ + -81.56573460699997, + 23.087544329000025 + ], + [ + -81.55568654899992, + 23.005902580000168 + ], + [ + -81.43873552999997, + 23.06578222600018 + ], + [ + -81.59963957299988, + 23.158854712 + ], + [ + -81.67745263599994, + 23.148131240000055 + ], + [ + -81.91766356399995, + 23.163649160000034 + ] + ] + ], + [ + [ + [ + -109.99078364599995, + 24.078533054000047 + ], + [ + -110.09553564299995, + 24.03412405500012 + ], + [ + -110.02891560599994, + 23.939468899000076 + ], + [ + -110.01715864499988, + 23.81299218200013 + ], + [ + -109.90505253399988, + 23.802021612000146 + ], + [ + -109.87812064099995, + 23.956090883000115 + ], + [ + -109.8222426829999, + 23.960990776000074 + ], + [ + -109.83393057699993, + 24.058777914000075 + ], + [ + -109.9153515459999, + 24.029301443000065 + ], + [ + -109.99078364599995, + 24.078533054000047 + ] + ] + ], + [ + [ + [ + -111.830612568, + 24.49172064800007 + ], + [ + -111.87338256999993, + 24.523227887000132 + ], + [ + -111.95384967899992, + 24.492021391000037 + ], + [ + -111.75006063399996, + 24.351653345999978 + ], + [ + -111.76538862099989, + 24.454742206000105 + ], + [ + -111.830612568, + 24.49172064800007 + ] + ] + ], + [ + [ + [ + -110.57259367399996, + 24.968967440000142 + ], + [ + -110.601669658, + 25.037272072000064 + ], + [ + -110.67903160699984, + 25.01613609700013 + ], + [ + -110.6352235899999, + 24.93413912400007 + ], + [ + -110.57259367399996, + 24.968967440000142 + ] + ] + ], + [ + [ + [ + -105.2963175509999, + 26.024230611000178 + ], + [ + -105.2193606159999, + 25.985872507000067 + ], + [ + -105.19704463699998, + 26.05834814200017 + ], + [ + -105.32066362699993, + 26.170644019000065 + ], + [ + -105.36138157199997, + 26.12773403900013 + ], + [ + -105.2963175509999, + 26.024230611000178 + ] + ] + ], + [ + [ + [ + -105.67871858199999, + 26.257949084000074 + ], + [ + -105.7343065259999, + 26.149642825000058 + ], + [ + -105.67015060099999, + 26.14037344600007 + ], + [ + -105.62691456499994, + 26.06156913900014 + ], + [ + -105.56376664699997, + 26.103565157 + ], + [ + -105.58638755999988, + 26.187786352000103 + ], + [ + -105.67871858199999, + 26.257949084000074 + ] + ] + ], + [ + [ + [ + -112.2648006849999, + 29.175723613 + ], + [ + -112.35895560899985, + 29.215825823000046 + ], + [ + -112.47430467899994, + 29.16355694500004 + ], + [ + -112.50495159899992, + 29.012094949000186 + ], + [ + -112.48225357299987, + 28.95828799200018 + ], + [ + -112.53489661899994, + 28.84934856400008 + ], + [ + -112.35777258699994, + 28.759339161000128 + ], + [ + -112.27490255499998, + 28.767629702000136 + ], + [ + -112.19352768599998, + 29.020568550000064 + ], + [ + -112.2710116749999, + 29.13584000300017 + ], + [ + -112.2648006849999, + 29.175723613 + ] + ] + ], + [ + [ + [ + -107.8143995179999, + 28.94269882600014 + ], + [ + -107.78281365699996, + 29.01158013200012 + ], + [ + -107.85239451699994, + 29.11053805500012 + ], + [ + -107.89817865199996, + 29.036097870000162 + ], + [ + -107.8143995179999, + 28.94269882600014 + ] + ] + ], + [ + [ + [ + -107.26795961199991, + 29.28338915900008 + ], + [ + -107.27500158399994, + 29.344156952000105 + ], + [ + -107.35517867899989, + 29.521064059000025 + ], + [ + -107.43377662399996, + 29.58902251800015 + ], + [ + -107.45162957499991, + 29.38936307 + ], + [ + -107.49210360599989, + 29.32480565200018 + ], + [ + -107.44314557999996, + 29.272799798000108 + ], + [ + -107.49010452199997, + 29.145210636 + ], + [ + -107.58626557099996, + 29.001295537000146 + ], + [ + -107.55655658599994, + 28.822921429000075 + ], + [ + -107.47288557799999, + 28.792906672000072 + ], + [ + -107.45110352599994, + 28.88922396000015 + ], + [ + -107.36061853499996, + 28.918607727000165 + ], + [ + -107.33172561099997, + 28.78777476800019 + ], + [ + -107.246917683, + 28.79968142900009 + ], + [ + -107.26148257999995, + 28.877643187000047 + ], + [ + -107.39826166199998, + 28.999954600000137 + ], + [ + -107.37973061499997, + 29.203573492000146 + ], + [ + -107.29615063499989, + 29.146160808000104 + ], + [ + -107.26795961199991, + 29.28338915900008 + ] + ] + ], + [ + [ + [ + -113.43312064199995, + 29.482001708000155 + ], + [ + -113.52745862699999, + 29.56378360200017 + ], + [ + -113.56304164999995, + 29.547188272000028 + ], + [ + -113.60391968899984, + 29.422442922000073 + ], + [ + -113.46565265199985, + 29.28903319800014 + ], + [ + -113.42446163299996, + 29.21668983 + ], + [ + -113.30123860399993, + 29.127744258000064 + ], + [ + -113.26583059499995, + 29.07261245800015 + ], + [ + -113.14614858499988, + 28.99916552800005 + ], + [ + -113.19931063799999, + 29.13554311600018 + ], + [ + -113.20178262899998, + 29.296800875000088 + ], + [ + -113.31043254599984, + 29.28697409900019 + ], + [ + -113.38759668199992, + 29.313173247000066 + ], + [ + -113.37276456899991, + 29.402194758000178 + ], + [ + -113.43312064199995, + 29.482001708000155 + ] + ] + ], + [ + [ + [ + -107.89284558199995, + 29.421332990000053 + ], + [ + -107.9078595819999, + 29.37450882900015 + ], + [ + -108.04567768399988, + 29.48295657500006 + ], + [ + -108.04504367699991, + 29.383257524000044 + ], + [ + -107.9357295779999, + 29.328061686000126 + ], + [ + -107.87628159999997, + 29.256870326000126 + ], + [ + -107.80707557799985, + 29.23978314600015 + ], + [ + -107.7059326609999, + 29.298179866000055 + ], + [ + -107.836921524, + 29.471969073000082 + ], + [ + -107.89284558199995, + 29.421332990000053 + ] + ] + ], + [ + [ + [ + -107.74686467999993, + 29.846662609000134 + ], + [ + -107.84191864699994, + 29.829510385000106 + ], + [ + -107.80523658899995, + 29.75675211300012 + ], + [ + -107.81410263099997, + 29.674910372000056 + ], + [ + -107.691421575, + 29.576750909000054 + ], + [ + -107.69585459599989, + 29.721362544000044 + ], + [ + -107.788741674, + 29.758011242000123 + ], + [ + -107.74686467999993, + 29.846662609000134 + ] + ] + ], + [ + [ + [ + 13.759791925000059, + -11.960567032999961 + ], + [ + 13.654399486999978, + -12.236122165999973 + ], + [ + 13.583129505000045, + -12.33684548499997 + ], + [ + 13.485710500000039, + -12.421119653999938 + ], + [ + 13.466999578000184, + -12.512792528999967 + ], + [ + 13.344929563000164, + -12.606806972999891 + ], + [ + 13.299779436, + -12.577558991999922 + ], + [ + 13.19486047100014, + -12.59365794599995 + ], + [ + 13.138435007999988, + -12.663947663999977 + ], + [ + 13.01338958499997, + -12.765985181999952 + ], + [ + 12.93585044300005, + -12.8594299909999 + ], + [ + 12.97657056700001, + -12.959373289999974 + ], + [ + 12.872819537000055, + -13.102322457999946 + ], + [ + 12.654129480000165, + -13.26484286699997 + ], + [ + 12.650059563000127, + -13.33178812199992 + ], + [ + 12.52923945800012, + -13.441281090999837 + ], + [ + 12.55508053, + -13.54795371699987 + ], + [ + 12.514539444000093, + -13.87573206399992 + ], + [ + 12.425760504000095, + -13.874722044999942 + ], + [ + 12.424920470000075, + -13.942547734999891 + ], + [ + 12.364780482000128, + -14.05781985799996 + ], + [ + 12.372949988000187, + -14.151257794999879 + ], + [ + 12.339050554000039, + -14.21556945499998 + ], + [ + 12.371689517999982, + -14.287254005999955 + ], + [ + 12.3459394730001, + -14.445434432999832 + ], + [ + 12.303609521000112, + -14.571886338999946 + ], + [ + 12.289159455, + -14.750223734999963 + ], + [ + 12.211970507999979, + -14.843807515999913 + ], + [ + 12.168359466000084, + -15.022346914999957 + ], + [ + 12.058190581000133, + -15.229342707999933 + ], + [ + 12.016079564000108, + -15.57035071599995 + ], + [ + 11.91864044200014, + -15.687643045999891 + ], + [ + 11.8756795, + -15.78540688299995 + ], + [ + 11.78507950900007, + -15.778917444999877 + ], + [ + 11.732330516000161, + -15.880311819999918 + ], + [ + 11.809550475000094, + -16.018712128999937 + ], + [ + 11.794099442, + -16.105317472999957 + ], + [ + 11.832229558000108, + -16.471473536999895 + ], + [ + 11.831080567000186, + -16.694729551999956 + ], + [ + 11.760869555000113, + -17.019679509999946 + ], + [ + 11.761501600000088, + -17.314174139999977 + ], + [ + 11.741666861000056, + -17.5847984049999 + ], + [ + 11.807427820000044, + -17.967693732999862 + ], + [ + 11.86011197199997, + -18.14378195499995 + ], + [ + 11.963396529000022, + -18.263975923999908 + ], + [ + 12.029907363000177, + -18.487594756999954 + ], + [ + 12.32044591400006, + -18.7317378809999 + ], + [ + 12.465906950000033, + -18.926722268999924 + ], + [ + 12.478859399000157, + -18.996415055999933 + ], + [ + 12.571728079000138, + -19.083995509999966 + ], + [ + 12.694502982000074, + -19.305312518999926 + ], + [ + 12.70619917300013, + -19.3810199859999 + ], + [ + 12.859053410000115, + -19.645895868999958 + ], + [ + 12.891583933999982, + -19.730970590999902 + ], + [ + 13.033896520000042, + -19.988103447999833 + ], + [ + 13.051283617000081, + -20.07803812999998 + ], + [ + 13.143007690000161, + -20.15644721299998 + ], + [ + 13.237129428000117, + -20.326033971999948 + ], + [ + 13.245877632000088, + -20.45777732099998 + ], + [ + 13.327842020000048, + -20.599291069999936 + ], + [ + 13.374169845000097, + -20.79277432899994 + ], + [ + 13.413978815, + -20.87771686399998 + ], + [ + 13.55182886100016, + -21.055349530999933 + ], + [ + 13.573749617000033, + -21.134528143999944 + ], + [ + 13.689047863000155, + -21.261459063999894 + ], + [ + 13.806253111000046, + -21.42023223399997 + ], + [ + 13.876486127000021, + -21.581953257999885 + ], + [ + 13.974493871000107, + -21.70995354699994 + ], + [ + 13.95011460000012, + -21.770934686999965 + ], + [ + 14.05324311400011, + -21.849056015999963 + ], + [ + 14.29500752500013, + -22.14099625399996 + ], + [ + 14.394601540000167, + -22.27819330799997 + ], + [ + 14.512660324000024, + -22.565533694999942 + ], + [ + 14.536553445000152, + -22.908060872999897 + ], + [ + 14.433229934999986, + -22.96709570899992 + ], + [ + 14.406686238000134, + -23.015896560999977 + ], + [ + 14.497881, + -23.309001412999976 + ], + [ + 14.493180274999986, + -23.39867970599994 + ], + [ + 14.44354957100012, + -23.443757948999917 + ], + [ + 14.512363488000176, + -23.61459944199987 + ], + [ + 14.500734988999966, + -23.759925409999937 + ], + [ + 14.509752878000143, + -23.91357203799987 + ], + [ + 14.450178057000016, + -24.027189937999935 + ], + [ + 14.499861918000136, + -24.215282805999948 + ], + [ + 14.6147189940001, + -24.470397143999946 + ], + [ + 14.593924158000107, + -24.55085019899991 + ], + [ + 14.733247284000129, + -24.707946488999823 + ], + [ + 14.797892300000058, + -24.836832677999894 + ], + [ + 14.797777915000097, + -24.92702229799994 + ], + [ + 14.880653611000184, + -25.07606065899995 + ], + [ + 14.850310117000106, + -25.130537346999972 + ], + [ + 14.81658000300007, + -25.373483881999903 + ], + [ + 14.885278728000173, + -25.52772180799991 + ], + [ + 14.83081421999998, + -25.74308872799992 + ], + [ + 14.912235103000057, + -25.84256404399997 + ], + [ + 14.908049924000068, + -25.889739689999942 + ], + [ + 14.984184481000057, + -26.06034370699996 + ], + [ + 14.956644422000181, + -26.302093584999966 + ], + [ + 15.120959990000188, + -26.428609044999916 + ], + [ + 15.151981752000097, + -26.648684224999954 + ], + [ + 15.084186198000054, + -26.638056848999838 + ], + [ + 15.133615816000031, + -26.890890541999966 + ], + [ + 15.228032651000092, + -26.916889366999953 + ], + [ + 15.24263132100009, + -27.052306143999886 + ], + [ + 15.278765135000015, + -27.16142573999997 + ], + [ + 15.289717368000026, + -27.297195671999873 + ], + [ + 15.419779392000066, + -27.464833078999845 + ], + [ + 15.524186733000079, + -27.624331345999963 + ], + [ + 15.553271042000176, + -27.731901225999877 + ], + [ + 15.639923011000121, + -27.822381635999932 + ], + [ + 15.685722329999976, + -27.93272909799998 + ], + [ + 15.751389865000078, + -28.014361380999958 + ], + [ + 15.923889755000118, + -28.172273086999894 + ], + [ + 16.069847865000042, + -28.28351191199988 + ], + [ + 16.345947713000157, + -28.54459802499997 + ], + [ + 16.573213577000047, + -28.72876739499992 + ], + [ + 16.60634231600011, + -28.867406844999948 + ], + [ + 16.690847397000084, + -28.925083159999815 + ], + [ + 16.749099731000115, + -29.04042243999993 + ], + [ + 16.817325591999975, + -29.089256286999955 + ], + [ + 16.88108062700013, + -29.295202254999936 + ], + [ + 16.937065125000117, + -29.35871124299996 + ], + [ + 17.056848526000124, + -29.679208754999934 + ], + [ + 17.05979347200008, + -29.743114470999956 + ], + [ + 17.118570328000146, + -29.920249938999916 + ], + [ + 17.158138275000113, + -29.976778029999934 + ], + [ + 17.277925491000133, + -30.337814330999947 + ], + [ + 17.432573747000163, + -30.619911529999968 + ], + [ + 17.523590000000127, + -30.73555 + ], + [ + 17.604448318000095, + -30.90767478899994 + ], + [ + 17.683376312000178, + -30.999006270999928 + ], + [ + 17.74572372400013, + -31.134984969999948 + ], + [ + 17.881687164000084, + -31.281074523999962 + ], + [ + 17.88044548000005, + -31.31709670999993 + ], + [ + 18.11787, + -31.58626 + ], + [ + 18.222790000000145, + -31.74432 + ], + [ + 18.273382187000095, + -31.87661361699992 + ], + [ + 18.265869898000176, + -31.933823084999915 + ], + [ + 18.314287186000172, + -32.06720733599985 + ], + [ + 18.311504364000143, + -32.17234420799991 + ], + [ + 18.343235016000108, + -32.30700302099996 + ], + [ + 18.401597977000108, + -32.32061767599998 + ], + [ + 18.441696166999975, + -32.220664977999945 + ], + [ + 18.433988571000157, + -32.11434173599997 + ], + [ + 18.38426017800009, + -32.00796127299992 + ], + [ + 18.413858414000174, + -31.94471359299996 + ], + [ + 18.316616058000136, + -31.866416930999947 + ], + [ + 18.313945769999975, + -31.720170974999917 + ], + [ + 18.41419220000006, + -31.7176856989999 + ], + [ + 18.555360793999967, + -31.802097320999962 + ], + [ + 18.556119919000025, + -31.858144759999902 + ], + [ + 18.64864540100001, + -31.89979171799996 + ], + [ + 18.830379486000027, + -31.88113784799998 + ], + [ + 18.95558929400005, + -31.97097015399993 + ], + [ + 19.050392151000096, + -31.887716292999926 + ], + [ + 19.150661469000113, + -31.9255542759999 + ], + [ + 19.193439484000123, + -32.00443649299996 + ], + [ + 19.17012786900017, + -32.20737838699989 + ], + [ + 19.270242691000192, + -32.404502868999884 + ], + [ + 19.337282181000035, + -32.492229461999955 + ], + [ + 19.36886215200002, + -32.61193084699994 + ], + [ + 19.485752106000177, + -32.60216140699987 + ], + [ + 19.526540756000145, + -32.65673828099989 + ], + [ + 19.628751755000167, + -32.68989944499998 + ], + [ + 19.67565727200008, + -32.83563613899997 + ], + [ + 19.71660041800004, + -32.88457870499991 + ], + [ + 19.660753250000027, + -33.000057219999974 + ], + [ + 19.71862220800017, + -33.072147368999936 + ], + [ + 19.719419479000123, + -33.194492339999954 + ], + [ + 19.931913376000182, + -33.22156524699989 + ], + [ + 20.079662323000036, + -33.151050567999846 + ], + [ + 20.24957084700003, + -33.147842406999985 + ], + [ + 20.227928162000183, + -33.20885086099997 + ], + [ + 20.54080009500018, + -33.19686126699992 + ], + [ + 20.596204758000056, + -33.25459670999993 + ], + [ + 20.70202064500006, + -33.23990249599996 + ], + [ + 20.774442673000124, + -33.32635116599988 + ], + [ + 20.718793869000024, + -33.378211974999886 + ], + [ + 20.733739853000145, + -33.446586608999894 + ], + [ + 20.578697205000026, + -33.44971084599996 + ], + [ + 20.375938416000054, + -33.48898696899988 + ], + [ + 20.35629653900014, + -33.44476699799998 + ], + [ + 20.20590210000006, + -33.44799041699997 + ], + [ + 20.149143219000052, + -33.354030608999835 + ], + [ + 20.30585479700011, + -33.346897124999884 + ], + [ + 20.304862976000038, + -33.277462005999894 + ], + [ + 20.163486481000064, + -33.26567459099982 + ], + [ + 20.077373505000025, + -33.30126571699998 + ], + [ + 20.080169678000175, + -33.36575698899992 + ], + [ + 19.999963760000185, + -33.380264281999985 + ], + [ + 19.999961853000116, + -33.455707549999886 + ], + [ + 20.047481537000124, + -33.52682876599994 + ], + [ + 20.11121940600009, + -33.49539565999993 + ], + [ + 20.29471588100006, + -33.457103728999925 + ], + [ + 20.327367783, + -33.65522003199993 + ], + [ + 20.494213104000153, + -33.70778274499992 + ], + [ + 20.51753616299999, + -33.74137496899982 + ], + [ + 20.879774094000027, + -33.76154327399985 + ], + [ + 20.780281067000033, + -33.859863280999946 + ], + [ + 20.96149826000004, + -33.860317229999964 + ], + [ + 21.353994370000123, + -33.92144775399993 + ], + [ + 21.366086960000075, + -33.889308928999924 + ], + [ + 21.53151512100004, + -33.902854918999935 + ], + [ + 21.701110840000183, + -33.89250183099989 + ], + [ + 21.716995239000084, + -33.835494994999976 + ], + [ + 21.882310867000058, + -33.80060577399996 + ], + [ + 21.64694213900009, + -33.72224044799998 + ], + [ + 21.490705489999982, + -33.75139617899987 + ], + [ + 21.353801727000075, + -33.70846176099997 + ], + [ + 21.314737320000063, + -33.63445663499988 + ], + [ + 21.463525772000025, + -33.5947036739999 + ], + [ + 21.384115219000023, + -33.49870681799996 + ], + [ + 21.30085945100012, + -33.53819656399992 + ], + [ + 21.175798416000077, + -33.50761794999994 + ], + [ + 21.051052094000056, + -33.41241455099998 + ], + [ + 21.032999039000174, + -33.323822020999955 + ], + [ + 21.158897400000058, + -33.282535552999946 + ], + [ + 21.31609535200016, + -33.290473937999934 + ], + [ + 21.51011657700019, + -33.24668502799989 + ], + [ + 21.621520996000015, + -33.26586151099991 + ], + [ + 22.113725662000093, + -33.23246002199994 + ], + [ + 22.331651688000136, + -33.22741317699996 + ], + [ + 22.51502227800006, + -33.24422454799998 + ], + [ + 22.563146591000077, + -33.27561950699993 + ], + [ + 22.76608657800017, + -33.29518127399996 + ], + [ + 22.93528938300011, + -33.27011871299993 + ], + [ + 23.18936538700018, + -33.25928115799991 + ], + [ + 23.29010582000018, + -33.20859909099988 + ], + [ + 23.497667313000022, + -33.16268539399988 + ], + [ + 23.405790329000183, + -33.25367355299994 + ], + [ + 23.188478470000064, + -33.26594161999998 + ], + [ + 23.105014801000095, + -33.29586029099994 + ], + [ + 22.741825104000043, + -33.311889647999976 + ], + [ + 22.469375610000156, + -33.26332855199996 + ], + [ + 22.541143417000114, + -33.354709624999884 + ], + [ + 22.790967941000133, + -33.36912155199997 + ], + [ + 22.94735527000006, + -33.42018890399993 + ], + [ + 23.09763336200018, + -33.37733459499998 + ], + [ + 23.23205375700013, + -33.37007522599998 + ], + [ + 23.26101875300003, + -33.29569625899995 + ], + [ + 23.423564911000028, + -33.2741088869999 + ], + [ + 23.469444275, + -33.31416320799997 + ], + [ + 23.619224548000034, + -33.28900527999991 + ], + [ + 23.73102569600013, + -33.30643081699992 + ], + [ + 23.755382538000163, + -33.40720367399996 + ], + [ + 24.094476700000087, + -33.51345443699995 + ], + [ + 24.26692581200018, + -33.52387237499994 + ], + [ + 24.314500809000037, + -33.55559921299994 + ], + [ + 24.427320480000162, + -33.5130462649999 + ], + [ + 24.545629501000178, + -33.504402160999916 + ], + [ + 24.638523102000192, + -33.44967651399992 + ], + [ + 24.71630668600011, + -33.49513626099997 + ], + [ + 24.87133789100011, + -33.498989104999964 + ], + [ + 24.82632064800015, + -33.34632873499993 + ], + [ + 24.66020393400015, + -33.36429595899989 + ], + [ + 24.38503646900017, + -33.33288574199992 + ], + [ + 24.432519913000192, + -33.27752304099988 + ], + [ + 24.540596008000023, + -33.31033706699992 + ], + [ + 24.794858932000068, + -33.300708770999904 + ], + [ + 24.888614655000026, + -33.347732543999825 + ], + [ + 24.90964889500009, + -33.27275085399998 + ], + [ + 24.603357315000153, + -33.2224273679999 + ], + [ + 24.453468323000095, + -33.163822173999904 + ], + [ + 24.343069077, + -33.044342040999936 + ], + [ + 24.447792053000114, + -33.008819579999965 + ], + [ + 24.501258850000056, + -32.86373138399995 + ], + [ + 24.64753913900006, + -32.86371231099997 + ], + [ + 24.7246456150001, + -32.84052276599988 + ], + [ + 24.772306442000115, + -32.77899932899993 + ], + [ + 25.09358978300014, + -32.85869216899988 + ], + [ + 25.141975403, + -32.76839065599995 + ], + [ + 25.19252586400006, + -32.76493072499994 + ], + [ + 25.247371674000135, + -32.86028671299994 + ], + [ + 25.365430832000072, + -32.88137817399996 + ], + [ + 25.345390320000092, + -32.76502990699987 + ], + [ + 25.370929718000127, + -32.67047119099993 + ], + [ + 25.296495438000193, + -32.577808379999965 + ], + [ + 25.16677665700007, + -32.35554885899995 + ], + [ + 24.856891632000043, + -32.335357665999936 + ], + [ + 24.70979881300019, + -32.28734207199983 + ], + [ + 24.734994888000074, + -32.21139144899996 + ], + [ + 24.639039993000097, + -32.113220214999956 + ], + [ + 24.509071350000056, + -32.04661560099987 + ], + [ + 24.567455292000147, + -31.93611907999997 + ], + [ + 24.672927856000058, + -31.893291472999977 + ], + [ + 24.74662208600006, + -31.829912185999945 + ], + [ + 24.773849487000177, + -31.719572066999945 + ], + [ + 24.91647911100017, + -31.606994628999928 + ], + [ + 24.953153610000186, + -31.710853576999966 + ], + [ + 24.86871910100018, + -31.759523391999892 + ], + [ + 24.95812797500008, + -31.87842559799992 + ], + [ + 24.92877578700012, + -31.95834350599995 + ], + [ + 25.004936218000125, + -32.03449630699998 + ], + [ + 24.992900848000147, + -32.083099364999896 + ], + [ + 25.060819626000068, + -32.17147064199992 + ], + [ + 25.213876724000045, + -32.12009048499988 + ], + [ + 25.267490387000066, + -32.18900680499996 + ], + [ + 25.34222602800014, + -32.21533966099997 + ], + [ + 25.46768760700013, + -32.20686340299994 + ], + [ + 25.432321548000175, + -32.134727477999945 + ], + [ + 25.500017166000134, + -32.03821182299998 + ], + [ + 25.560218811000084, + -32.003284453999925 + ], + [ + 25.682846069000107, + -32.06049728399995 + ], + [ + 25.790735245000178, + -31.990304946999913 + ], + [ + 25.90359306300013, + -32.05258941699998 + ], + [ + 26.125005722000026, + -31.882112502999973 + ], + [ + 26.091320038000163, + -31.82252693199996 + ], + [ + 26.08742904700017, + -31.80285263099995 + ], + [ + 26.015752792000114, + -31.763433455999973 + ], + [ + 25.979175568000073, + -31.634893416999887 + ], + [ + 26.064872742000034, + -31.597082137999905 + ], + [ + 26.103754044000084, + -31.485359191999976 + ], + [ + 26.082683563000103, + -31.395952224999974 + ], + [ + 26.118614197000113, + -31.32607078599989 + ], + [ + 26.19085693400018, + -31.32415008499987 + ], + [ + 26.32900619500009, + -31.237819671999944 + ], + [ + 26.33058548000014, + -31.167810439999982 + ], + [ + 26.273824692000062, + -31.10792922999991 + ], + [ + 26.332511902000192, + -31.068984984999872 + ], + [ + 26.335884094000107, + -30.986297606999926 + ], + [ + 26.42241287200011, + -30.941190719999895 + ], + [ + 26.422283173000153, + -30.750101088999884 + ], + [ + 26.608350754000185, + -30.72285461399997 + ], + [ + 26.70408248900003, + -30.758699416999946 + ], + [ + 26.791406631000086, + -30.717168807999883 + ], + [ + 26.747512817000086, + -30.658226012999933 + ], + [ + 26.39990043600011, + -30.556776046999914 + ], + [ + 26.270053864000147, + -30.662437438999973 + ], + [ + 26.193569183000136, + -30.55057144199992 + ], + [ + 26.04552459700011, + -30.60231018099995 + ], + [ + 25.95167160000011, + -30.548225402999947 + ], + [ + 25.770832062000125, + -30.68219375599989 + ], + [ + 25.682365417000142, + -30.678874968999935 + ], + [ + 25.60327148400006, + -30.595876693999912 + ], + [ + 25.306772232000128, + -30.667648314999894 + ], + [ + 25.191373825000028, + -30.608020781999926 + ], + [ + 25.168582916, + -30.498405456999876 + ], + [ + 25.09562492400005, + -30.433584212999904 + ], + [ + 25.00975608800013, + -30.448160171999973 + ], + [ + 24.837583542000175, + -30.385429381999984 + ], + [ + 24.827348709000034, + -30.507591247999983 + ], + [ + 24.93141365100007, + -30.584436416999893 + ], + [ + 24.805030823000152, + -30.66547203099998 + ], + [ + 24.601474762000123, + -30.644702910999968 + ], + [ + 24.662231445000145, + -30.59566116299993 + ], + [ + 24.701265335000016, + -30.415109633999975 + ], + [ + 24.576560974000188, + -30.46014785799997 + ], + [ + 24.52031517000006, + -30.438447951999876 + ], + [ + 24.348680496000043, + -30.564474105999977 + ], + [ + 24.337579727000048, + -30.641822814999955 + ], + [ + 24.19510841400006, + -30.583570479999935 + ], + [ + 24.230070114, + -30.489250182999967 + ], + [ + 24.25162506100014, + -30.31321906999989 + ], + [ + 24.324001312000178, + -30.375751494999975 + ], + [ + 24.372367859000178, + -30.50040435799997 + ], + [ + 24.500061035000158, + -30.461999892999927 + ], + [ + 24.523841858000026, + -30.383644103999984 + ], + [ + 24.622146606000058, + -30.376035689999924 + ], + [ + 24.68536949200012, + -30.413051604999907 + ], + [ + 24.78142929100011, + -30.415233611999895 + ], + [ + 24.822824478000086, + -30.329048156999875 + ], + [ + 24.77401733400012, + -30.194585799999913 + ], + [ + 24.61810493500019, + -30.092117309999935 + ], + [ + 24.606683731000032, + -29.99358749399994 + ], + [ + 24.546430588000135, + -29.96342849699994 + ], + [ + 24.468561172000022, + -29.995180129999937 + ], + [ + 24.415569305000133, + -29.835914611999954 + ], + [ + 24.45064353900017, + -29.781549453999958 + ], + [ + 24.59302902200011, + -29.89735031099997 + ], + [ + 24.74610328700004, + -29.894411086999924 + ], + [ + 24.753921509000122, + -29.752853393999885 + ], + [ + 24.943798065000124, + -29.775249480999946 + ], + [ + 25.070579529000156, + -29.761693953999952 + ], + [ + 25.121675491000133, + -29.72002220199994 + ], + [ + 25.22484016400017, + -29.757553100999928 + ], + [ + 25.265806198000064, + -29.611673354999937 + ], + [ + 25.192947388000107, + -29.58983230599989 + ], + [ + 25.1458911900001, + -29.50679206799998 + ], + [ + 25.212678909000147, + -29.458559035999826 + ], + [ + 25.41880226100011, + -29.50591278099995 + ], + [ + 25.560516356999983, + -29.498643874999914 + ], + [ + 25.487461090000068, + -29.23287582399996 + ], + [ + 25.52524757400016, + -29.18123245199996 + ], + [ + 25.50257682800003, + -29.013711928999896 + ], + [ + 25.521856308000054, + -28.924331664999897 + ], + [ + 25.461093903000062, + -28.91628456099994 + ], + [ + 25.313274384000067, + -28.82037544299982 + ], + [ + 25.36973762500014, + -28.762773513999946 + ], + [ + 25.297573090000185, + -28.68105697599998 + ], + [ + 25.317651749000163, + -28.502687453999897 + ], + [ + 25.227506638000023, + -28.451585769999838 + ], + [ + 25.293634415000156, + -28.349292754999965 + ], + [ + 25.437244415000123, + -28.263641356999983 + ], + [ + 25.529823303000114, + -28.27729415899995 + ], + [ + 25.588180542000032, + -28.03929901099997 + ], + [ + 25.492380142000115, + -28.004114150999953 + ], + [ + 25.44138526900008, + -27.94915199299993 + ], + [ + 25.49938201900011, + -27.89608192399993 + ], + [ + 25.604120255000055, + -27.996231078999983 + ], + [ + 25.705694199000163, + -27.957798003999926 + ], + [ + 25.885126114000116, + -28.00712585399998 + ], + [ + 26.003068924000104, + -28.000473021999937 + ], + [ + 26.07097672500015, + -27.915480979999984 + ], + [ + 26.23778152500006, + -27.92875099199989 + ], + [ + 26.229742050000027, + -27.771078109999905 + ], + [ + 26.27510643000005, + -27.73591995199996 + ], + [ + 26.22065925600009, + -27.610443114999953 + ], + [ + 26.134880066000107, + -27.588191985999913 + ], + [ + 26.025385651000192, + -27.669664495999882 + ], + [ + 25.74331092800014, + -27.53348731999995 + ], + [ + 25.817411423000067, + -27.44583702099993 + ], + [ + 25.911684036000167, + -27.452543258999924 + ], + [ + 25.96347236600019, + -27.3614978789999 + ], + [ + 25.793066025000087, + -27.36040115399993 + ], + [ + 25.770790100000056, + -27.259378432999938 + ], + [ + 25.67787933300019, + -27.21595001199995 + ], + [ + 25.564287186000172, + -27.260068892999925 + ], + [ + 25.55356407200003, + -27.36906623799996 + ], + [ + 25.46822547900001, + -27.33458900499994 + ], + [ + 25.461912155000107, + -27.20191001899991 + ], + [ + 25.415111542000147, + -27.073205947999952 + ], + [ + 25.341508865000037, + -27.142889022999952 + ], + [ + 25.236118317000148, + -27.05434417699996 + ], + [ + 25.239675522000027, + -26.948183059999963 + ], + [ + 25.185146332000045, + -26.86424827599984 + ], + [ + 25.110660553, + -26.844373702999974 + ], + [ + 25.23854255700013, + -26.69215393099995 + ], + [ + 25.17644119300013, + -26.62673568699995 + ], + [ + 25.120014191000166, + -26.62388229399994 + ], + [ + 25.08985900900018, + -26.51296615599989 + ], + [ + 25.213333130000024, + -26.450893401999963 + ], + [ + 25.321422577000078, + -26.45009231599994 + ], + [ + 25.286283493000155, + -26.145486831999904 + ], + [ + 25.355491638000103, + -26.115306853999982 + ], + [ + 25.38534545900012, + -26.041887282999937 + ], + [ + 25.4599437710001, + -25.98815154999994 + ], + [ + 25.40275764500018, + -25.94131660499994 + ], + [ + 25.54614067099999, + -25.894371032999913 + ], + [ + 25.574045181000088, + -25.82956695599995 + ], + [ + 25.703815460000044, + -25.759037017999958 + ], + [ + 25.74960136400017, + -25.706899642999872 + ], + [ + 25.842975616000047, + -25.72693252599987 + ], + [ + 25.84715080300009, + -25.606346129999963 + ], + [ + 25.674379349000162, + -25.615942000999894 + ], + [ + 25.735279083000023, + -25.360385894999865 + ], + [ + 25.69029617300015, + -25.37393951399997 + ], + [ + 25.663482666000164, + -25.467847823999932 + ], + [ + 25.58155441300005, + -25.637720107999883 + ], + [ + 25.342472076000092, + -25.768367766999972 + ], + [ + 25.19741685000008, + -25.76033148399995 + ], + [ + 25.17432402000003, + -25.654054616999872 + ], + [ + 25.082891576, + -25.66589444199991 + ], + [ + 25.07773578600012, + -25.601627031999953 + ], + [ + 24.89010169200003, + -25.404524597999966 + ], + [ + 24.707844366000188, + -25.366166103999944 + ], + [ + 24.650941439000178, + -25.294186411999874 + ], + [ + 24.661790054000107, + -25.237050332999956 + ], + [ + 24.592009606000147, + -25.19890618399984 + ], + [ + 24.657387866000192, + -25.108446302999937 + ], + [ + 24.785132005000037, + -25.065127695999877 + ], + [ + 24.862116403000073, + -24.925054574999933 + ], + [ + 24.688984569000183, + -24.841098444999886 + ], + [ + 24.573597017000168, + -24.8530462679999 + ], + [ + 24.424011569000186, + -24.83700225599989 + ], + [ + 24.350185624000062, + -24.79220736499991 + ], + [ + 24.381458442000167, + -24.714562444999956 + ], + [ + 24.478883551000138, + -24.699636347999956 + ], + [ + 24.542756046000022, + -24.737241270999846 + ], + [ + 24.631663509000077, + -24.71657731799985 + ], + [ + 24.749193124000158, + -24.73424483499997 + ], + [ + 24.77327937200016, + -24.767910676999918 + ], + [ + 24.964279313000134, + -24.742410091999943 + ], + [ + 25.046381577000147, + -24.763308815999835 + ], + [ + 25.079403825000043, + -24.676627557999836 + ], + [ + 25.225795039000047, + -24.705604405999907 + ], + [ + 25.225273231000017, + -24.596585927999968 + ], + [ + 25.27980483700003, + -24.580629851999902 + ], + [ + 25.33265326500009, + -24.44601505099996 + ], + [ + 25.405408288000046, + -24.381346768999947 + ], + [ + 25.508328547000133, + -24.360851844999956 + ], + [ + 25.45799999800016, + -24.281812426999977 + ], + [ + 25.546692422000092, + -24.196620855999868 + ], + [ + 25.516499605000092, + -24.105465429999867 + ], + [ + 25.64053313200003, + -24.047497716999942 + ], + [ + 25.756757162000156, + -24.10612657699994 + ], + [ + 25.826887678000162, + -24.02172394999991 + ], + [ + 25.858419061000063, + -23.90344715799995 + ], + [ + 26.011253519000093, + -23.85684606199993 + ], + [ + 26.17645648200005, + -23.702954460999877 + ], + [ + 26.049707709000188, + -23.70342560099988 + ], + [ + 26.07095573400011, + -23.58191728099996 + ], + [ + 25.931333219000123, + -23.604047861999902 + ], + [ + 25.841975756000124, + -23.58941068699994 + ], + [ + 25.72745674400005, + -23.784482177999905 + ], + [ + 25.78363183700003, + -23.522070020999877 + ], + [ + 25.642565886, + -23.488209852999944 + ], + [ + 25.630907779999973, + -23.407019202999948 + ], + [ + 25.851192245, + -23.182536209999967 + ], + [ + 26.006117856000174, + -23.237661011999876 + ], + [ + 26.08190876200007, + -23.22979965199994 + ], + [ + 26.078931654000087, + -23.117216984999914 + ], + [ + 26.145216499000128, + -23.070350135999945 + ], + [ + 26.002677778000077, + -23.00317125999993 + ], + [ + 26.00138531099998, + -22.933568068999875 + ], + [ + 26.076676799000154, + -22.90921793699988 + ], + [ + 26.068279330000166, + -22.8341818909999 + ], + [ + 26.30198004900018, + -22.84614193599998 + ], + [ + 26.333295324000176, + -22.865624589999925 + ], + [ + 26.488623924000137, + -22.82163007899993 + ], + [ + 26.448356079, + -22.775587445999918 + ], + [ + 26.342278944000043, + -22.81997189699996 + ], + [ + 26.283129124000027, + -22.74241905799994 + ], + [ + 26.26881007100019, + -22.647390805999862 + ], + [ + 26.35495383300008, + -22.588637303999917 + ], + [ + 26.380028270000082, + -22.508274703999973 + ], + [ + 26.470322667000175, + -22.497240958999953 + ], + [ + 26.521763174000114, + -22.434172815999943 + ], + [ + 26.651393407000057, + -22.41275320299991 + ], + [ + 26.7048850220001, + -22.31030633399996 + ], + [ + 26.822696740000083, + -22.198217770999975 + ], + [ + 26.885137336000128, + -22.109470395999892 + ], + [ + 26.773132660000044, + -22.075814260999948 + ], + [ + 26.720634315000154, + -22.09873491299993 + ], + [ + 26.509280442999966, + -22.067377369999917 + ], + [ + 26.499121867000042, + -21.974686169999927 + ], + [ + 26.37692126100012, + -21.934932375999892 + ], + [ + 26.35819843700017, + -21.80574672599988 + ], + [ + 26.420541644000025, + -21.66614365399994 + ], + [ + 26.384489628000097, + -21.550245617999963 + ], + [ + 26.32711268600019, + -21.530421032999982 + ], + [ + 26.320787189000043, + -21.432857085999956 + ], + [ + 26.157793097000138, + -21.410149580999928 + ], + [ + 25.8815557260001, + -21.45298620899996 + ], + [ + 25.669237270000053, + -21.443187213999977 + ], + [ + 25.41498374200006, + -21.51846871899994 + ], + [ + 25.316294907000156, + -21.522549576999893 + ], + [ + 25.028329785000096, + -21.41166536999998 + ], + [ + 24.877658407000126, + -21.411113804999843 + ], + [ + 24.81652837600012, + -21.37794300799993 + ], + [ + 24.70801379200003, + -21.41869743799998 + ], + [ + 24.617015296000034, + -21.484245390999945 + ], + [ + 24.54024296700004, + -21.39342442399993 + ], + [ + 24.508611026000153, + -21.299501471999918 + ], + [ + 24.39905119700012, + -21.138728632999914 + ], + [ + 24.336420479000026, + -21.00147877099988 + ], + [ + 24.382418851000125, + -20.697041327999898 + ], + [ + 24.495639595000057, + -20.45951621099988 + ], + [ + 24.46970693700007, + -20.393585970999823 + ], + [ + 24.390977347000046, + -20.422377102999917 + ], + [ + 24.246812651000027, + -20.33112272699998 + ], + [ + 24.18217875199997, + -20.32093556999996 + ], + [ + 24.148603755000124, + -20.261364019999974 + ], + [ + 23.992648916000064, + -20.35093480499995 + ], + [ + 23.868820462000144, + -20.33295061699988 + ], + [ + 23.81560632900016, + -20.234092457999907 + ], + [ + 23.695244141000103, + -20.22729834199987 + ], + [ + 23.600329951000163, + -20.18619989799987 + ], + [ + 23.341759060000072, + -20.162875571999905 + ], + [ + 23.233083164000107, + -20.238583803999916 + ], + [ + 23.16152812200005, + -20.31976928599994 + ], + [ + 22.976662198000042, + -20.34813747599992 + ], + [ + 22.90831704400017, + -20.370752626999888 + ], + [ + 22.804732962000116, + -20.48032025799995 + ], + [ + 22.757315186000028, + -20.482389212999976 + ], + [ + 22.633481153000105, + -20.564581183999962 + ], + [ + 22.44790130000007, + -20.636387120999927 + ], + [ + 22.42012538400013, + -20.842564494999976 + ], + [ + 22.25491151900013, + -20.86554450199992 + ], + [ + 22.16987991900004, + -21.044731404999823 + ], + [ + 22.101513102000013, + -21.10714657099993 + ], + [ + 22.09372726700019, + -21.163602162999894 + ], + [ + 22.024219557000094, + -21.250273762999882 + ], + [ + 21.586571472, + -21.48802882399991 + ], + [ + 21.488473505000172, + -21.52427814899994 + ], + [ + 21.030926574000034, + -21.737014910999903 + ], + [ + 20.53951305700008, + -21.59550649499994 + ], + [ + 20.335859338000148, + -21.517081194999946 + ], + [ + 20.213961349000158, + -21.50329996599993 + ], + [ + 20.127831179999987, + -21.44836240199993 + ], + [ + 20.009475042000076, + -21.4534366179999 + ], + [ + 19.77213365500006, + -21.498391010999853 + ], + [ + 19.409527055000183, + -21.385737880999955 + ], + [ + 19.154529055000012, + -21.2484542549999 + ], + [ + 18.925973415000158, + -21.108512724999912 + ], + [ + 18.823418975000095, + -21.027779505999888 + ], + [ + 18.66489628700009, + -20.856095315999937 + ], + [ + 18.599603425, + -20.713218646999962 + ], + [ + 18.493383305, + -20.564670327999977 + ], + [ + 18.22891836000008, + -20.383341802999894 + ], + [ + 18.03751185600015, + -20.30316710099993 + ], + [ + 17.779968568000072, + -20.23936044499993 + ], + [ + 17.586430427000096, + -20.272581190999915 + ], + [ + 17.34593749300018, + -20.465954245999853 + ], + [ + 17.190716002000045, + -20.536509469999885 + ], + [ + 17.10604973400018, + -20.50475961899997 + ], + [ + 17.056661078000047, + -20.430676634999884 + ], + [ + 17.060188838999977, + -20.360121411999955 + ], + [ + 17.151910629000156, + -20.282510665999837 + ], + [ + 17.289493314000083, + -20.20489992099982 + ], + [ + 17.42002047700015, + -20.092011563999904 + ], + [ + 17.671354673000167, + -19.932497566999928 + ], + [ + 17.74810226500017, + -19.862707087999922 + ], + [ + 18.056799763000072, + -19.83467837099994 + ], + [ + 18.173233849000155, + -19.780619687999945 + ], + [ + 17.973632558000077, + -19.718244284999855 + ], + [ + 17.798981428000047, + -19.780619675999958 + ], + [ + 17.512054572000125, + -19.730719353999973 + ], + [ + 17.211884449000138, + -19.830615140999896 + ], + [ + 17.16706666000016, + -19.766589728999975 + ], + [ + 17.192676825000035, + -19.632136362999972 + ], + [ + 16.840537056000073, + -19.683356692999894 + ], + [ + 16.795719267000095, + -19.805004975999964 + ], + [ + 16.654863358000057, + -19.805004975999964 + ], + [ + 16.61644810900009, + -19.843420222999896 + ], + [ + 16.590837943999986, + -19.965068505999852 + ], + [ + 16.398761701000183, + -19.97787358799991 + ], + [ + 16.257905787000027, + -20.112326952999865 + ], + [ + 16.168270204000066, + -20.105924410999933 + ], + [ + 16.00180411800011, + -20.189157445999967 + ], + [ + 15.891383259000122, + -20.187301681999884 + ], + [ + 16.01344078900007, + -20.303537245999905 + ], + [ + 15.926563206000083, + -20.35421583599998 + ], + [ + 15.93380300400014, + -20.45557301699995 + ], + [ + 15.846925421000151, + -20.607608787999823 + ], + [ + 15.745568240000068, + -20.730685363999896 + ], + [ + 15.760047837000059, + -20.904440530999977 + ], + [ + 15.618356139000014, + -20.98267876199992 + ], + [ + 15.770907535000106, + -21.199462324999843 + ], + [ + 16.02430048700012, + -21.35330804599988 + ], + [ + 16.23244469700012, + -21.73339747299991 + ], + [ + 16.07859897700007, + -21.860093948999918 + ], + [ + 16.1781462080001, + -21.950591431999953 + ], + [ + 16.4586884040001, + -22.00488992199996 + ], + [ + 16.68493211100008, + -22.113486900999874 + ], + [ + 16.531086390000098, + -22.25828287299987 + ], + [ + 16.40438991500008, + -22.213034131999905 + ], + [ + 16.350091425000187, + -22.249233124999932 + ], + [ + 16.368190922000167, + -22.37592960099994 + ], + [ + 16.196245704000034, + -22.54787481799997 + ], + [ + 15.997151242000086, + -22.70172053899995 + ], + [ + 16.060499480000033, + -22.90986474899995 + ], + [ + 16.313892432000046, + -22.98226273599994 + ], + [ + 16.350091425000187, + -23.099909462999904 + ], + [ + 16.411516799000026, + -23.19643505199997 + ], + [ + 16.291546582000024, + -23.34217347299989 + ], + [ + 16.22997134000019, + -23.445996115999947 + ], + [ + 16.110745023000106, + -23.45509180299996 + ], + [ + 15.999241494000046, + -23.331851059999963 + ], + [ + 15.98750428, + -23.16753006999994 + ], + [ + 15.858394931000191, + -23.061895146999973 + ], + [ + 15.782103043000063, + -22.950391617999912 + ], + [ + 15.805577470000173, + -22.791939234999973 + ], + [ + 15.74689140200013, + -22.791939234999973 + ], + [ + 15.77036582900007, + -22.674567098999944 + ], + [ + 15.852526324, + -22.69804152599994 + ], + [ + 15.864263538000046, + -22.59827520999994 + ], + [ + 15.969898460000081, + -22.586537996999937 + ], + [ + 16.016911072000084, + -22.539525384999877 + ], + [ + 15.971306926000125, + -22.32127696999993 + ], + [ + 15.723830970000108, + -22.323766966999983 + ], + [ + 15.603227908, + -22.22362335199989 + ], + [ + 15.663322441000162, + -21.964465675999918 + ], + [ + 15.580692457000168, + -21.926906592999842 + ], + [ + 15.56191291600004, + -22.020804301999874 + ], + [ + 15.463917283000114, + -22.077043690999915 + ], + [ + 15.400408857000059, + -22.020804301999874 + ], + [ + 15.368803878999984, + -21.854413386999965 + ], + [ + 15.220125256000188, + -21.806717525999943 + ], + [ + 15.331263350000143, + -21.656773544999965 + ], + [ + 15.272707973000138, + -21.34849670699998 + ], + [ + 15.03232983900017, + -21.160701289999963 + ], + [ + 15.017306205000182, + -20.886519979999946 + ], + [ + 15.06237710500011, + -20.84144907999996 + ], + [ + 15.009794388000103, + -20.751307279999878 + ], + [ + 14.885849413000017, + -20.751307279999878 + ], + [ + 14.810731246000103, + -20.781354545999932 + ], + [ + 14.867069871000183, + -20.863984529999982 + ], + [ + 14.758148529000152, + -20.94285860499997 + ], + [ + 14.641715370000043, + -20.961638146999974 + ], + [ + 14.570353112000134, + -20.909055429999967 + ], + [ + 14.525282212000036, + -20.815157721999924 + ], + [ + 14.570353112000134, + -20.751307279999878 + ], + [ + 14.570353112000134, + -20.616094578999935 + ], + [ + 14.698053996, + -20.578535495999915 + ], + [ + 14.795707613000047, + -20.510929144999977 + ], + [ + 14.713077629000054, + -20.420787344999894 + ], + [ + 14.649227187000122, + -20.390740077999965 + ], + [ + 14.495234945, + -20.37196053699995 + ], + [ + 14.408849053000097, + -20.150361943999883 + ], + [ + 14.266124535000074, + -20.041440601999966 + ], + [ + 14.179738643000178, + -20.056464234999908 + ], + [ + 14.202274094000074, + -19.943786984999917 + ], + [ + 14.303683619000026, + -19.88744835999995 + ], + [ + 14.314951344000178, + -19.80857428399986 + ], + [ + 14.258612719000098, + -19.733456116999946 + ], + [ + 14.175982735000105, + -19.72970020899993 + ], + [ + 14.1083763850001, + -19.6696056749999 + ], + [ + 14.052037760000019, + -19.49307798299992 + ], + [ + 13.800391900000136, + -19.515613432999885 + ], + [ + 13.78536826700008, + -19.45927480799992 + ], + [ + 13.687714650000032, + -19.45551889999996 + ], + [ + 13.650155566000137, + -19.38040073299993 + ], + [ + 13.439824699000155, + -19.36913300799995 + ], + [ + 13.368462440000144, + -19.33157392399994 + ], + [ + 13.34633061900007, + -19.19782725999994 + ], + [ + 13.35473511500004, + -19.096973317999982 + ], + [ + 13.476600295000082, + -19.02973735599994 + ], + [ + 13.392555343000083, + -18.983512632999975 + ], + [ + 13.353702984000165, + -18.865938168999946 + ], + [ + 13.23286993400012, + -18.996119375999967 + ], + [ + 13.106802507000111, + -18.97510813799994 + ], + [ + 13.098398012000075, + -18.886860937999927 + ], + [ + 13.211858697000025, + -18.84063621499996 + ], + [ + 13.102600259000042, + -18.78600699599997 + ], + [ + 12.867274394000162, + -18.57589461699996 + ], + [ + 12.833656414000188, + -18.500254159999884 + ], + [ + 12.774824947000127, + -18.470838426999876 + ], + [ + 12.787431690000062, + -18.344771 + ], + [ + 12.627746282000146, + -18.21450132399997 + ], + [ + 12.599170998000147, + -18.159031655999968 + ], + [ + 12.51176424800019, + -18.098519290999832 + ], + [ + 12.484869864000188, + -17.99430355099986 + ], + [ + 12.50840245, + -17.947238377999952 + ], + [ + 12.434442893000039, + -17.799319262999916 + ], + [ + 12.622703585000124, + -17.81612825299993 + ], + [ + 12.683215949999976, + -17.621143964999874 + ], + [ + 12.54538222900004, + -17.422797878999972 + ], + [ + 12.548744027000055, + -17.385818099999938 + ], + [ + 12.473862374000134, + -17.253677018999838 + ], + [ + 12.612896082000134, + -17.20937067899996 + ], + [ + 12.808094205000032, + -17.115066245999913 + ], + [ + 12.984609022000143, + -16.982998961999954 + ], + [ + 13.16969231100012, + -16.96379184499989 + ], + [ + 13.221246306000069, + -16.823558452999976 + ], + [ + 13.235100172000045, + -16.612549994999938 + ], + [ + 13.167618439000137, + -16.460034307999933 + ], + [ + 13.184153698000046, + -16.376871231999814 + ], + [ + 13.266829994000148, + -16.264072898999927 + ], + [ + 13.257892016000085, + -16.181255673999942 + ], + [ + 13.13186652700017, + -16.052025830999867 + ], + [ + 13.106393290000085, + -15.887899095999956 + ], + [ + 13.074216569000043, + -15.820404962999874 + ], + [ + 13.096114615000033, + -15.627256249999846 + ], + [ + 13.039358455000183, + -15.278354543999967 + ], + [ + 12.918695753000122, + -14.912461926999981 + ], + [ + 12.932549619000156, + -14.75261924799986 + ], + [ + 12.983496092999985, + -14.460712446999878 + ], + [ + 13.067066187000137, + -14.19138558799989 + ], + [ + 13.130525830000181, + -14.102549802999874 + ], + [ + 13.39821826900004, + -13.85839891899991 + ], + [ + 13.403581056000121, + -13.798948396999947 + ], + [ + 13.321798558000069, + -13.675225469999873 + ], + [ + 13.328948940000146, + -13.541444777999914 + ], + [ + 13.427713597000093, + -13.502338774999885 + ], + [ + 13.45631512600005, + -13.56924958199994 + ], + [ + 13.55597358000017, + -13.497558712999819 + ], + [ + 13.599769672000093, + -13.395851119999975 + ], + [ + 13.599304387000075, + -13.277195579999955 + ], + [ + 13.678413051, + -13.192948117999947 + ], + [ + 13.87855120800009, + -13.18504842599998 + ], + [ + 13.960175779999986, + -13.217416206999872 + ], + [ + 13.900245896000115, + -13.065957204999847 + ], + [ + 13.881696170000055, + -12.897714966999843 + ], + [ + 13.88883068000007, + -12.771111023999936 + ], + [ + 13.92738029800006, + -12.594773963999955 + ], + [ + 14.045855816000142, + -12.37664681299998 + ], + [ + 14.093246023000177, + -12.148409839999943 + ], + [ + 14.07284130500011, + -12.071456964999982 + ], + [ + 14.002443139000036, + -12.020189749999872 + ], + [ + 13.759791925000059, + -11.960567032999961 + ] + ], + [ + [ + 18.110843658000135, + -30.20263481099994 + ], + [ + 18.12596893300008, + -30.267700194999975 + ], + [ + 18.225503921999973, + -30.24804496799993 + ], + [ + 18.406375885000045, + -30.3816852569999 + ], + [ + 18.306255341000053, + -30.425895690999937 + ], + [ + 18.28745842000012, + -30.331081389999895 + ], + [ + 18.15325927700013, + -30.452783584999963 + ], + [ + 18.08082771300002, + -30.404413222999892 + ], + [ + 18.0345630650001, + -30.278572082999972 + ], + [ + 18.110843658000135, + -30.20263481099994 + ] + ], + [ + [ + 24.278566360000184, + -33.14273834199997 + ], + [ + 24.242013931000145, + -33.24977493299991 + ], + [ + 24.10586547900016, + -33.19617843599991 + ], + [ + 23.85468483000011, + -33.180091857999855 + ], + [ + 23.781694412000093, + -33.152446746999885 + ], + [ + 23.69979858400012, + -33.173160552999946 + ], + [ + 23.6006984710001, + -33.15507888799988 + ], + [ + 23.588874817000033, + -33.058166503999814 + ], + [ + 23.760618210000132, + -33.038249968999935 + ], + [ + 23.91965675400013, + -33.08599853499993 + ], + [ + 24.278566360000184, + -33.14273834199997 + ] + ], + [ + [ + 24.607545853000147, + -33.27743911699997 + ], + [ + 24.418346405000023, + -33.27397918699995 + ], + [ + 24.238395691000107, + -33.20466995199996 + ], + [ + 24.26026916500018, + -33.15716552699996 + ], + [ + 24.460987091000106, + -33.19628524799998 + ], + [ + 24.50422287000015, + -33.24497222899993 + ], + [ + 24.607545853000147, + -33.27743911699997 + ] + ], + [ + [ + 24.078905106000093, + -33.226268767999954 + ], + [ + 24.218574524000132, + -33.26463317899987 + ], + [ + 24.242116928000087, + -33.33784103399995 + ], + [ + 24.027587891, + -33.28084182699996 + ], + [ + 24.078905106000093, + -33.226268767999954 + ] + ], + [ + [ + 21.4295177460001, + -32.10266494799998 + ], + [ + 21.564001083000107, + -32.16609954799998 + ], + [ + 21.524463654000044, + -32.2791976929999 + ], + [ + 21.4155502320001, + -32.384529113999974 + ], + [ + 21.168451309000147, + -32.45848083499993 + ], + [ + 21.135583878000034, + -32.371158599999944 + ], + [ + 21.04902839700003, + -32.33573913599997 + ], + [ + 21.103956223000125, + -32.2734031679999 + ], + [ + 21.195178986000144, + -32.27476501499996 + ], + [ + 21.343133926, + -32.35902023299997 + ], + [ + 21.459085464000168, + -32.27384185799997 + ], + [ + 21.382780075000028, + -32.21820449799992 + ], + [ + 21.472967148000123, + -32.16114425699993 + ], + [ + 21.4295177460001, + -32.10266494799998 + ] + ], + [ + [ + 20.239559174000078, + -32.058818816999974 + ], + [ + 20.28309822100016, + -32.077007293999884 + ], + [ + 20.291774750000172, + -32.17390441899994 + ], + [ + 20.372470856000177, + -32.18447494499998 + ], + [ + 20.422035216999973, + -32.26576614399994 + ], + [ + 20.48040962200008, + -32.261466979999966 + ], + [ + 20.558116913000163, + -32.330196380999894 + ], + [ + 20.663455963000104, + -32.337039947999926 + ], + [ + 20.76759338400018, + -32.25504302999991 + ], + [ + 20.855806351000126, + -32.35991668699995 + ], + [ + 20.807518005000134, + -32.42715835599995 + ], + [ + 20.821418762000178, + -32.511199950999924 + ], + [ + 20.88950729400017, + -32.58679580699993 + ], + [ + 21.01212501499998, + -32.56552886999998 + ], + [ + 21.027032852000048, + -32.48494720499997 + ], + [ + 21.16974258400012, + -32.56161498999995 + ], + [ + 21.175184250000086, + -32.71917724599996 + ], + [ + 20.94455337500017, + -32.808521270999904 + ], + [ + 20.719886780000138, + -32.83242416399992 + ], + [ + 20.6536636350001, + -32.88628387499995 + ], + [ + 20.700927734000174, + -32.96509551999992 + ], + [ + 20.534288406000087, + -33.05496215799997 + ], + [ + 20.38249397300001, + -33.00874710099998 + ], + [ + 20.428194046000044, + -32.9094924929999 + ], + [ + 20.594808578000027, + -32.85573959399994 + ], + [ + 20.616758347000086, + -32.75159454299995 + ], + [ + 20.694234848000065, + -32.686393737999936 + ], + [ + 20.538885117000177, + -32.53256988499987 + ], + [ + 20.394300461000057, + -32.51247405999993 + ], + [ + 20.342506409000066, + -32.335716247999926 + ], + [ + 20.25284576400003, + -32.31094741799984 + ], + [ + 20.239837646000012, + -32.22241592399996 + ], + [ + 20.184812546000046, + -32.208587645999955 + ], + [ + 20.16970443700012, + -32.08549880999993 + ], + [ + 20.239559174000078, + -32.058818816999974 + ] + ], + [ + [ + 19.71710777300018, + -31.20516776999989 + ], + [ + 19.605848312000035, + -31.363735198999905 + ], + [ + 19.518875122000054, + -31.307529448999958 + ], + [ + 19.529943466000134, + -31.251785277999943 + ], + [ + 19.638288498000065, + -31.185636519999832 + ], + [ + 19.71710777300018, + -31.20516776999989 + ] + ], + [ + [ + 19.64448356600019, + -31.16050529499995 + ], + [ + 19.598888397000167, + -31.20551490799994 + ], + [ + 19.50201797500017, + -31.222633361999954 + ], + [ + 19.5012569430001, + -31.141605376999962 + ], + [ + 19.64448356600019, + -31.16050529499995 + ] + ], + [ + [ + 18.663396835000015, + -31.831005095999956 + ], + [ + 18.632844925000086, + -31.795537948999936 + ], + [ + 18.68054390000009, + -31.71187400799994 + ], + [ + 18.767953873000067, + -31.752086638999913 + ], + [ + 18.827421188000187, + -31.683383941999978 + ], + [ + 18.928331375000027, + -31.803184508999948 + ], + [ + 18.98703193700004, + -31.721849441999893 + ], + [ + 18.96740531900008, + -31.54257583599997 + ], + [ + 19.028488159000176, + -31.475049972999898 + ], + [ + 19.013847351000095, + -31.317186355999866 + ], + [ + 18.980333328000086, + -31.263977050999983 + ], + [ + 19.03238868700015, + -31.1849861149999 + ], + [ + 19.11707687400019, + -31.21979713399992 + ], + [ + 19.22574234000018, + -31.53091239899993 + ], + [ + 19.181550980000054, + -31.56956863399995 + ], + [ + 19.213045120000118, + -31.638952254999936 + ], + [ + 19.216552734000118, + -31.848934173999965 + ], + [ + 19.137817383000026, + -31.90587043799991 + ], + [ + 18.871526718000155, + -31.82824325599995 + ], + [ + 18.750158310000188, + -31.86457633999987 + ], + [ + 18.663396835000015, + -31.831005095999956 + ] + ], + [ + [ + 19.909875870000064, + -31.192665099999886 + ], + [ + 19.93358802800003, + -31.269027709999932 + ], + [ + 19.851665497000056, + -31.34125900299989 + ], + [ + 19.944129944000053, + -31.44419288599994 + ], + [ + 19.71991539000004, + -31.417367934999902 + ], + [ + 19.75813674900013, + -31.351085662999935 + ], + [ + 19.757253647000084, + -31.26238059999997 + ], + [ + 19.861879349000105, + -31.266113280999946 + ], + [ + 19.909875870000064, + -31.192665099999886 + ] + ], + [ + [ + 19.333095551000042, + -32.27321624799998 + ], + [ + 19.47342872600018, + -32.5211257929999 + ], + [ + 19.385868073000154, + -32.5574913019999 + ], + [ + 19.27190589900016, + -32.38610839799992 + ], + [ + 19.237966537000034, + -32.28432846099997 + ], + [ + 19.333095551000042, + -32.27321624799998 + ] + ], + [ + [ + 20.71776390100007, + -33.55544662499989 + ], + [ + 20.54500007600018, + -33.562980651999965 + ], + [ + 20.539266586000053, + -33.48814392099996 + ], + [ + 20.736703873000067, + -33.47013091999992 + ], + [ + 20.71776390100007, + -33.55544662499989 + ] + ], + [ + [ + 25.687807083000052, + -30.881523131999984 + ], + [ + 25.743625641000165, + -31.034896850999928 + ], + [ + 25.673809052000138, + -31.02895164499995 + ], + [ + 25.58878898600011, + -31.087244033999923 + ], + [ + 25.594022751000182, + -31.1556892399999 + ], + [ + 25.658512115, + -31.21142196699992 + ], + [ + 25.762809753000113, + -31.22033119199989 + ], + [ + 25.816274643000156, + -31.33271598799996 + ], + [ + 25.866767883000023, + -31.328817367999875 + ], + [ + 25.900615692000088, + -31.438800811999954 + ], + [ + 25.774583817000178, + -31.40679550199991 + ], + [ + 25.712165833000086, + -31.35119438199996 + ], + [ + 25.67922592200017, + -31.25762748699998 + ], + [ + 25.62290382400016, + -31.257455825999898 + ], + [ + 25.520816803000116, + -31.321296691999976 + ], + [ + 25.395500183000138, + -31.282814025999983 + ], + [ + 25.461879730000135, + -31.228141784999877 + ], + [ + 25.39164352400013, + -31.024667739999984 + ], + [ + 25.498062134, + -31.07025527999997 + ], + [ + 25.681348801000013, + -30.964017867999928 + ], + [ + 25.687807083000052, + -30.881523131999984 + ] + ], + [ + [ + 17.970720291000077, + -33.03572082499994 + ], + [ + 17.97232055700016, + -33.04113769499992 + ], + [ + 17.965789374000053, + -33.02988798799993 + ], + [ + 17.96430778500013, + -33.030910491999975 + ], + [ + 17.970720291000077, + -33.03572082499994 + ] + ] + ], + [ + [ + [ + 11.458369934000132, + 16.111079921000112 + ], + [ + 11.42435002700006, + 16.186690002000034 + ], + [ + 11.44044001200001, + 16.243230079000057 + ], + [ + 11.537529985000162, + 16.31133994900017 + ], + [ + 11.524409985000148, + 16.392709931000184 + ], + [ + 11.427590026000132, + 16.430190039000138 + ], + [ + 11.35359000000011, + 16.40024006599998 + ], + [ + 11.304119940000021, + 16.33900993600014 + ], + [ + 11.297680074000084, + 16.10790997700019 + ], + [ + 11.24175993900019, + 16.099910046000048 + ], + [ + 11.233760007000171, + 15.961459957000102 + ], + [ + 11.313729926000065, + 15.937160048000067 + ], + [ + 11.40581002, + 15.965040026999986 + ], + [ + 11.459929999000167, + 16.027770022000084 + ], + [ + 11.458369934000132, + 16.111079921000112 + ] + ] + ], + [ + [ + [ + 1.438639968000189, + 19.28584997100012 + ], + [ + 1.317009995000149, + 19.32223998700016 + ], + [ + 1.244900071000188, + 19.40166002000018 + ], + [ + 1.199160051000149, + 19.37136997600004 + ], + [ + 1.23703990000007, + 19.28774993100012 + ], + [ + 1.146939855000085, + 19.2460300300001 + ], + [ + 1.163310064000143, + 19.176250083000127 + ], + [ + 1.265759846000094, + 19.172630056000173 + ], + [ + 1.341240024000058, + 19.097439959000155 + ], + [ + 1.455259950000084, + 19.207019957000114 + ], + [ + 1.438639968000189, + 19.28584997100012 + ] + ] + ], + [ + [ + [ + 2.276200001000177, + 18.627939965000166 + ], + [ + 2.43039982900001, + 18.781430080000177 + ], + [ + 2.42883008299998, + 18.900309917000016 + ], + [ + 2.491479813000069, + 19.097329946 + ], + [ + 2.517979971000159, + 19.28503992700007 + ], + [ + 2.492190054000162, + 19.444719961000033 + ], + [ + 2.577879742000164, + 19.486560083000143 + ], + [ + 2.676319965000118, + 19.746519923000164 + ], + [ + 2.739820048000126, + 19.749690043000044 + ], + [ + 2.799320077000061, + 19.821870023000145 + ], + [ + 2.885090031000175, + 19.830199992000075 + ], + [ + 2.905899991000183, + 19.941170019000026 + ], + [ + 2.829609945000186, + 20.066000036000162 + ], + [ + 2.739450054000031, + 20.128420060000053 + ], + [ + 2.67704006200006, + 20.24629992800004 + ], + [ + 2.683969968000042, + 20.287920025000176 + ], + [ + 2.489790022000136, + 20.385019856000042 + ], + [ + 2.413499975999969, + 20.461300044000097 + ], + [ + 2.344150045000049, + 20.4543699620001 + ], + [ + 2.219320029000187, + 20.523720069000092 + ], + [ + 2.066739937000023, + 20.495980026000154 + ], + [ + 1.948850036000181, + 20.530649975000074 + ], + [ + 1.851750030000062, + 20.523720069000092 + ], + [ + 1.693310057000076, + 20.443200087000037 + ], + [ + 1.589090043, + 20.446819938000147 + ], + [ + 1.457030006000139, + 20.38232006100003 + ], + [ + 1.351829913000074, + 20.402070030000175 + ], + [ + 1.270309962000169, + 20.368039914 + ], + [ + 1.192329948000179, + 20.266079820000073 + ], + [ + 1.071560009000052, + 20.29346993500019 + ], + [ + 1.062430029000154, + 20.190549828000087 + ], + [ + 1.18510996100008, + 20.234409955000103 + ], + [ + 1.293669924000142, + 20.16204005000003 + ], + [ + 1.407810071000029, + 20.18528999900019 + ], + [ + 1.467180022000093, + 20.24735006300017 + ], + [ + 1.530479794000144, + 20.15450991600011 + ], + [ + 1.522900022000044, + 20.04730002600013 + ], + [ + 1.417260055000156, + 20.065229948000024 + ], + [ + 1.354229945000043, + 19.96859991500014 + ], + [ + 1.463329761000125, + 19.90142999200009 + ], + [ + 1.640309917000138, + 19.882889984000144 + ], + [ + 1.660050028000171, + 19.809020037000096 + ], + [ + 1.51092978500003, + 19.74752992600014 + ], + [ + 1.505380051000031, + 19.677109970000174 + ], + [ + 1.620089975000099, + 19.481639797000184 + ], + [ + 1.737280021000174, + 19.428309971000147 + ], + [ + 1.652019997000025, + 19.308679937000136 + ], + [ + 1.689150001000144, + 19.13724001000014 + ], + [ + 1.751990009000167, + 19.3492500750001 + ], + [ + 1.788270013000101, + 19.407849938000027 + ], + [ + 1.873060063000139, + 19.391009932000088 + ], + [ + 1.845529835999969, + 19.28880006600008 + ], + [ + 1.846870052000043, + 19.151750040000024 + ], + [ + 1.823139920000187, + 19.062269937 + ], + [ + 1.837840052000047, + 18.989179758000034 + ], + [ + 1.908139962000178, + 18.896869959000185 + ], + [ + 1.966640022000092, + 18.95347006000003 + ], + [ + 2.071729927000092, + 18.961850018000064 + ], + [ + 2.12287006400004, + 18.920170074000055 + ], + [ + 2.158020019000048, + 18.75503993500007 + ], + [ + 2.091150034000123, + 18.713449937000064 + ], + [ + 2.106489998000143, + 18.6378400320001 + ], + [ + 2.177059923000115, + 18.577350066000065 + ], + [ + 2.276200001000177, + 18.627939965000166 + ] + ] + ], + [ + [ + [ + 1.261090036000098, + 19.47653979400019 + ], + [ + 1.327480015000106, + 19.49936975999998 + ], + [ + 1.331730017000041, + 19.60719008600006 + ], + [ + 1.184650021000039, + 19.653629962000082 + ], + [ + 1.088809965000053, + 19.43281995500007 + ], + [ + 1.261090036000098, + 19.47653979400019 + ] + ] + ], + [ + [ + [ + -16.374189438999963, + 19.70208894000018 + ], + [ + -16.348310479999952, + 19.841431710000165 + ], + [ + -16.414640503999976, + 19.81399137000011 + ], + [ + -16.451040594999938, + 19.6902404490001 + ], + [ + -16.374189438999963, + 19.70208894000018 + ] + ] + ], + [ + [ + [ + 1.316789970000173, + 19.72296000300014 + ], + [ + 1.381990054000028, + 19.793950088000088 + ], + [ + 1.229819737000128, + 19.84235997900015 + ], + [ + 1.128290011999979, + 19.734619917000146 + ], + [ + 1.147829988000069, + 19.70214000900006 + ], + [ + 1.272439803000111, + 19.69892993300016 + ], + [ + 1.316789970000173, + 19.72296000300014 + ] + ] + ], + [ + [ + [ + 11.601120191000064, + 33.00439171900007 + ], + [ + 11.654161557000066, + 32.973683471000186 + ], + [ + 11.754377332, + 33.01433959600013 + ], + [ + 11.65415993500011, + 32.97564007400018 + ], + [ + 11.601120191000064, + 33.00439171900007 + ] + ] + ], + [ + [ + [ + 10.60052849699997, + 35.5007579980001 + ], + [ + 10.53943991900013, + 35.41944003900005 + ], + [ + 10.47661980099997, + 35.42284004100003 + ], + [ + 10.305930071000148, + 35.51256005800019 + ], + [ + 10.268998347000093, + 35.62373731400015 + ], + [ + 10.305919522000067, + 35.51053620700014 + ], + [ + 10.476623518, + 35.42082017100006 + ], + [ + 10.539443535999965, + 35.41741846000002 + ], + [ + 10.60052849699997, + 35.5007579980001 + ] + ] + ], + [ + [ + [ + 10.331334918000096, + 35.90227971100012 + ], + [ + 10.290350015000172, + 35.84050004200003 + ], + [ + 10.146909936000156, + 35.79929007100009 + ], + [ + 10.119127860000049, + 35.86655903500008 + ], + [ + 10.146908448000033, + 35.79725311900012 + ], + [ + 10.290348460000132, + 35.838470123000036 + ], + [ + 10.331334918000096, + 35.90227971100012 + ] + ] + ], + [ + [ + [ + 17.952130199000123, + -33.02265428299995 + ], + [ + 17.948942184000032, + -33.0166435239999 + ], + [ + 17.949267830000167, + -33.01603539599995 + ], + [ + 17.94927414200015, + -33.01585126899994 + ], + [ + 17.933557510000014, + -33.031562804999965 + ], + [ + 17.962514877000103, + -33.02991485599995 + ], + [ + 17.960308141000155, + -33.02680986699988 + ], + [ + 17.958426986000177, + -33.026380391999965 + ], + [ + 17.952130199000123, + -33.02265428299995 + ] + ] + ], + [ + [ + [ + 19.96073150600006, + -33.637485503999926 + ], + [ + 20.107034683000165, + -33.78654098499993 + ], + [ + 20.193439484000123, + -33.74948120099998 + ], + [ + 20.055135727000163, + -33.64438247699985 + ], + [ + 19.96073150600006, + -33.637485503999926 + ] + ] + ], + [ + [ + [ + 19.54150581400006, + -33.757122039999956 + ], + [ + 19.737592697000082, + -33.77810287499989 + ], + [ + 19.69178390500008, + -33.67655944799998 + ], + [ + 19.52164459200003, + -33.702095031999875 + ], + [ + 19.54150581400006, + -33.757122039999956 + ] + ] + ], + [ + [ + [ + 22.205093384000122, + -33.819770812999934 + ], + [ + 22.348873138000044, + -33.796508788999915 + ], + [ + 22.550905228000033, + -33.66293716399986 + ], + [ + 22.470886230000076, + -33.59270095799991 + ], + [ + 22.491315842000063, + -33.55419540399993 + ], + [ + 22.651762009000095, + -33.58102798499982 + ], + [ + 22.962385178000034, + -33.5651893619999 + ], + [ + 23.12818527200011, + -33.48753356899982 + ], + [ + 23.27847671500018, + -33.50800704999995 + ], + [ + 23.354246140000157, + -33.49217987099996 + ], + [ + 23.238388062000126, + -33.394126891999974 + ], + [ + 23.09293174700008, + -33.40649795499996 + ], + [ + 23.00640678400015, + -33.457061767999846 + ], + [ + 22.71176338200013, + -33.48346710199996 + ], + [ + 22.686363220000146, + -33.505023955999945 + ], + [ + 22.46718025200005, + -33.526020049999886 + ], + [ + 22.41471862800006, + -33.56373596199984 + ], + [ + 22.22358131400017, + -33.540306090999934 + ], + [ + 22.13336563100006, + -33.62580490099998 + ], + [ + 22.029062270999987, + -33.51764678999996 + ], + [ + 21.914485931000172, + -33.53492355299994 + ], + [ + 21.68531990100007, + -33.50420761099991 + ], + [ + 21.688396454000156, + -33.625423430999945 + ], + [ + 21.77438736000005, + -33.66377258299997 + ], + [ + 21.962570190000065, + -33.64371490499997 + ], + [ + 22.025701523000123, + -33.72865676899983 + ], + [ + 22.205093384000122, + -33.819770812999934 + ] + ] + ], + [ + [ + [ + 21.49114608800005, + -33.307189940999876 + ], + [ + 21.897665024000105, + -33.27821350099998 + ], + [ + 22.076574326000184, + -33.28043746899988 + ], + [ + 22.085533141999974, + -33.245143889999895 + ], + [ + 21.68479919400005, + -33.266147613999976 + ], + [ + 21.49114608800005, + -33.307189940999876 + ] + ] + ], + [ + [ + [ + 24.886663247, + -20.57806635599991 + ], + [ + 24.841913932000182, + -20.52570486299993 + ], + [ + 24.798436903000095, + -20.36810828399996 + ], + [ + 24.70809902700006, + -20.22933975099994 + ], + [ + 24.60197997400013, + -20.169717662999915 + ], + [ + 24.627798261, + -20.00420699199998 + ], + [ + 24.502141601000176, + -19.95742602399997 + ], + [ + 24.59112616900012, + -19.841301231999978 + ], + [ + 24.72926846700011, + -19.726529536999976 + ], + [ + 24.7058871320001, + -19.688903548999917 + ], + [ + 24.5993298840001, + -19.742783193999912 + ], + [ + 24.44107731500003, + -19.87118660899995 + ], + [ + 24.398707672000057, + -19.866136163999954 + ], + [ + 24.302775485000154, + -19.940990652999915 + ], + [ + 24.268515203000163, + -19.892569392999917 + ], + [ + 24.30809330700015, + -19.748939451999945 + ], + [ + 24.261947080000027, + -19.59755076899995 + ], + [ + 24.310100047000105, + -19.55881392999993 + ], + [ + 24.25090836300012, + -19.383121917999915 + ], + [ + 24.38669223100004, + -19.347317724999982 + ], + [ + 24.448934356000052, + -19.262175771999978 + ], + [ + 24.51614044900009, + -19.268091595999977 + ], + [ + 24.588305985000034, + -19.398096155999895 + ], + [ + 24.653194670000175, + -19.38587415599983 + ], + [ + 24.707421784000076, + -19.31254824599995 + ], + [ + 24.653197430000034, + -19.120138499999882 + ], + [ + 24.76888800500018, + -19.263315895999824 + ], + [ + 24.90213319000003, + -19.071585119999952 + ], + [ + 24.965328507000038, + -19.13631736899987 + ], + [ + 24.89270767900007, + -19.231139088999896 + ], + [ + 24.888952902000028, + -19.32155501699998 + ], + [ + 24.839836850000097, + -19.40547525799991 + ], + [ + 24.853507578, + -19.484864140999946 + ], + [ + 24.91623826800003, + -19.49977096999993 + ], + [ + 24.923761849000186, + -19.601663799999983 + ], + [ + 25.083122931000105, + -19.589059300999907 + ], + [ + 25.221682204, + -19.53498260799995 + ], + [ + 25.347451491000015, + -19.458215091999932 + ], + [ + 25.421678369, + -19.544573053999898 + ], + [ + 25.557209415000102, + -19.59951635899995 + ], + [ + 25.71258702000017, + -19.45519847099996 + ], + [ + 25.728863592000096, + -19.522666122999965 + ], + [ + 25.95589309800016, + -19.519766035999908 + ], + [ + 26.102394511000114, + -19.48374602199982 + ], + [ + 26.372417746999986, + -19.360344708999946 + ], + [ + 25.830801979000114, + -18.83850334799996 + ], + [ + 25.709668610000108, + -18.873071241999924 + ], + [ + 25.6012583160001, + -18.85388932199993 + ], + [ + 25.53621582000011, + -18.880784468999877 + ], + [ + 25.391769252000074, + -18.859267652999847 + ], + [ + 25.302876677000143, + -18.80457200099994 + ], + [ + 25.204392126000073, + -18.81793042399994 + ], + [ + 25.05375651700018, + -18.92775233599997 + ], + [ + 24.90711695800013, + -18.855892527999913 + ], + [ + 24.904069541000126, + -18.794219351999914 + ], + [ + 24.750309786000173, + -18.744274308999934 + ], + [ + 24.71808095500012, + -18.69304982299991 + ], + [ + 24.569041537000032, + -18.64592617699998 + ], + [ + 24.506937873000027, + -18.698219929999937 + ], + [ + 24.557211535000135, + -18.817542853999953 + ], + [ + 24.54479521500008, + -18.871799845999817 + ], + [ + 24.279442781000114, + -19.063574484999947 + ], + [ + 24.165586678000125, + -19.108726460999947 + ], + [ + 24.07161925300005, + -19.188830140999983 + ], + [ + 23.95952013200008, + -19.243388714999924 + ], + [ + 23.88116700100005, + -19.33742126999988 + ], + [ + 23.895661105000045, + -19.42893999699993 + ], + [ + 23.85495249100012, + -19.60336569599997 + ], + [ + 23.684301499000128, + -19.825299115999883 + ], + [ + 23.45746281200013, + -20.08133990799996 + ], + [ + 23.63365119399998, + -20.09255587699994 + ], + [ + 23.682589066000105, + -20.136743748999947 + ], + [ + 23.839816738000025, + -20.134577547999868 + ], + [ + 23.922983425000098, + -20.208079880999946 + ], + [ + 23.95412484300016, + -20.278227600999912 + ], + [ + 24.042463849, + -20.203354782999952 + ], + [ + 24.18413394400011, + -20.1679087039999 + ], + [ + 24.30132578900009, + -20.222926703999917 + ], + [ + 24.299047326000164, + -20.265180713999825 + ], + [ + 24.406964912999968, + -20.35531163199994 + ], + [ + 24.507278386, + -20.34254801399993 + ], + [ + 24.54020196900018, + -20.450233012999888 + ], + [ + 24.43241522600016, + -20.643070040999874 + ], + [ + 24.381808132000117, + -20.841035096999974 + ], + [ + 24.38653468500013, + -20.952293973999872 + ], + [ + 24.58988821500003, + -20.949534410999888 + ], + [ + 24.529309952, + -20.886953681999955 + ], + [ + 24.528445310000052, + -20.806879469999956 + ], + [ + 24.579912434, + -20.73214470499994 + ], + [ + 24.711668476000057, + -20.710133408999923 + ], + [ + 24.840439366, + -20.654862853999873 + ], + [ + 24.886663247, + -20.57806635599991 + ] + ] + ], + [ + [ + [ + 23.892421219000028, + -18.572767942999974 + ], + [ + 23.823154529000135, + -18.612644969999906 + ], + [ + 23.85644767600013, + -18.680920437999873 + ], + [ + 23.802880669000047, + -18.81486528899984 + ], + [ + 23.849177154000017, + -18.889663888999962 + ], + [ + 23.79453982200016, + -18.94834971399996 + ], + [ + 23.890844439000148, + -18.992885439999895 + ], + [ + 23.967291900000077, + -19.084728619999964 + ], + [ + 24.01273752100019, + -18.793765158999975 + ], + [ + 24.052567352000096, + -18.63950796299997 + ], + [ + 23.892421219000028, + -18.572767942999974 + ] + ] + ], + [ + [ + [ + 23.911929843, + -18.54913880599986 + ], + [ + 24.063983066000162, + -18.612728805999836 + ], + [ + 24.07596473500007, + -18.53594189699993 + ], + [ + 24.02198582900013, + -18.492490745999874 + ], + [ + 23.911929843, + -18.54913880599986 + ] + ] + ], + [ + [ + [ + 24.601699889000145, + 12.888419942000041 + ], + [ + 24.55708991700004, + 12.932540051000046 + ], + [ + 24.565200037000125, + 13.018719954000062 + ], + [ + 24.527209999000092, + 13.068709977000083 + ], + [ + 24.580720069000165, + 13.150210038000125 + ], + [ + 24.560790032, + 13.20675997300009 + ], + [ + 24.45409993000004, + 13.35013017200015 + ], + [ + 24.354700047000108, + 13.289280069000029 + ], + [ + 24.30816001500017, + 13.11580992800009 + ], + [ + 24.213159927, + 13.006139983000025 + ], + [ + 24.190930013000127, + 12.93652003800014 + ], + [ + 24.26208995700017, + 12.813349890000097 + ], + [ + 24.41898993100017, + 12.76933997000009 + ], + [ + 24.510660074000043, + 12.707060057000149 + ], + [ + 24.58826991800015, + 12.770310016000053 + ], + [ + 24.601699889000145, + 12.888419942000041 + ] + ] + ], + [ + [ + [ + 22.325260061, + 15.310819927000182 + ], + [ + 22.381369946000177, + 15.44865007400017 + ], + [ + 22.456949927000096, + 15.419640047000144 + ], + [ + 22.55716003000009, + 15.623020030000191 + ], + [ + 22.576400069000158, + 15.788370017999966 + ], + [ + 22.48132006800006, + 15.792649944000061 + ], + [ + 22.362330042000053, + 15.674860022000075 + ], + [ + 22.358080040000118, + 15.614029986000105 + ], + [ + 22.279990014000077, + 15.589760001000116 + ], + [ + 22.177480033, + 15.66267996800002 + ], + [ + 22.133770051000113, + 15.56147007200019 + ], + [ + 22.083499981000102, + 15.530130069000109 + ], + [ + 22.04728, + 15.403280047000123 + ], + [ + 21.990429951000124, + 15.424840029000165 + ], + [ + 21.87180006300008, + 15.343050063000021 + ], + [ + 21.854619986000102, + 15.199640083000133 + ], + [ + 21.87197995500003, + 15.10576001000004 + ], + [ + 21.803679983000166, + 14.958800060000044 + ], + [ + 21.871699907000107, + 14.845440032999988 + ], + [ + 22.00773993100006, + 14.80657007100018 + ], + [ + 22.124349991000145, + 14.829250068000078 + ], + [ + 22.211800054000093, + 14.894019959000161 + ], + [ + 22.275999993000084, + 15.005490060000113 + ], + [ + 22.209709993000047, + 15.092189927000163 + ], + [ + 22.27964976700008, + 15.13267997600019 + ], + [ + 22.323629940000046, + 15.07305004400007 + ], + [ + 22.387990056999968, + 15.086380036000037 + ], + [ + 22.325260061, + 15.310819927000182 + ] + ] + ], + [ + [ + [ + 35.69167383200016, + 32.598995247 + ], + [ + 35.66829145800011, + 32.66410616400009 + ], + [ + 35.57251366100019, + 32.60744887500016 + ], + [ + 35.57722873200015, + 32.592607042 + ], + [ + 35.69167383200016, + 32.598995247 + ] + ] + ], + [ + [ + [ + 40.08235951000012, + 15.837503680000111 + ], + [ + 40.004081586000154, + 15.823655602000088 + ], + [ + 39.9819485000001, + 15.733810317000064 + ], + [ + 40.12038049300014, + 15.594229501000086 + ], + [ + 40.24486147800013, + 15.582860120000191 + ], + [ + 40.300109620000114, + 15.554131985000083 + ], + [ + 40.41564158199998, + 15.554661721000059 + ], + [ + 40.31212960400006, + 15.681374807000111 + ], + [ + 40.247138506000056, + 15.613589015000116 + ], + [ + 40.15911058500012, + 15.62501723700018 + ], + [ + 40.13370855700015, + 15.76824820500019 + ], + [ + 40.08235951000012, + 15.837503680000111 + ] + ] + ], + [ + [ + [ + 36.354255606000095, + 33.59101198200017 + ], + [ + 36.23324254900018, + 33.50774732900015 + ], + [ + 36.21307753400015, + 33.45672785800002 + ], + [ + 36.44348951500001, + 33.429140835 + ], + [ + 36.466560536000145, + 33.348492007000175 + ], + [ + 36.621993542999974, + 33.31270429799997 + ], + [ + 36.639450532000126, + 33.44043545000011 + ], + [ + 36.52024059100012, + 33.565824866000014 + ], + [ + 36.41495148200016, + 33.60601156500019 + ], + [ + 36.354255606000095, + 33.59101198200017 + ] + ] + ], + [ + [ + [ + 37.00486345700011, + 33.86404912500012 + ], + [ + 36.88808460300015, + 33.829039089000105 + ], + [ + 36.93849554800016, + 33.773208741000076 + ], + [ + 37.00486345700011, + 33.86404912500012 + ] + ] + ], + [ + [ + [ + 37.86031747900017, + 34.339824055000065 + ], + [ + 37.835025589000054, + 34.38503486700017 + ], + [ + 37.50027048100014, + 34.19021999100016 + ], + [ + 37.30651859700015, + 34.02404457000017 + ], + [ + 37.11502848700002, + 33.899998102000154 + ], + [ + 37.139083544000016, + 33.85419938300015 + ], + [ + 37.273807550000186, + 33.92800455500003 + ], + [ + 37.34215560000007, + 33.994397610000135 + ], + [ + 37.57567559000017, + 34.14300640700003 + ], + [ + 37.63671160300004, + 34.199145880000174 + ], + [ + 37.74623458000002, + 34.20882764900017 + ], + [ + 37.86031747900017, + 34.339824055000065 + ] + ] + ], + [ + [ + [ + 38.840827484000044, + 34.97166231000017 + ], + [ + 38.59563452000009, + 34.98761491600004 + ], + [ + 38.44388552700008, + 34.93424549500003 + ], + [ + 38.49819556600016, + 34.77952847000006 + ], + [ + 38.67303452300018, + 34.81050362600007 + ], + [ + 38.766086556000175, + 34.87118206700018 + ], + [ + 38.840827484000044, + 34.97166231000017 + ] + ] + ], + [ + [ + [ + 37.645324512000116, + 34.877784827000085 + ], + [ + 37.63739355500019, + 34.827261229000044 + ], + [ + 37.826015546, + 34.88733650900008 + ], + [ + 37.9454264850001, + 34.99404702100014 + ], + [ + 37.85664754600003, + 35.042621659000076 + ], + [ + 37.645324512000116, + 34.877784827000085 + ] + ] + ], + [ + [ + [ + 38.13792058000007, + 35.00566568000005 + ], + [ + 38.09558157500015, + 35.08522653700004 + ], + [ + 38.01034952200007, + 35.01010658000013 + ], + [ + 38.080829593000146, + 34.853696578000154 + ], + [ + 38.16513846400005, + 34.88539559500009 + ], + [ + 38.186508461000074, + 34.96235471000011 + ], + [ + 38.13792058000007, + 35.00566568000005 + ] + ] + ], + [ + [ + [ + 39.61828253200008, + 35.4030937870001 + ], + [ + 39.833286563, + 35.52006877800005 + ], + [ + 39.90662754500005, + 35.61248948700006 + ], + [ + 39.84781659200007, + 35.661823525000045 + ], + [ + 39.753528563000145, + 35.59827981400019 + ], + [ + 39.473918499000035, + 35.56696552600005 + ], + [ + 39.39101058000006, + 35.51813490500018 + ], + [ + 39.30766261100007, + 35.41871514000002 + ], + [ + 39.23916251300017, + 35.41724244000005 + ], + [ + 39.157710531000134, + 35.34839985700012 + ], + [ + 39.27107945900008, + 35.27401868099997 + ], + [ + 39.38747459000007, + 35.26115313000014 + ], + [ + 39.47152345400019, + 35.29080746500017 + ], + [ + 39.61828253200008, + 35.4030937870001 + ] + ] + ], + [ + [ + [ + 43.97118496700017, + 10.66371652500004 + ], + [ + 43.88251876800018, + 10.651734352000062 + ], + [ + 43.82308960000012, + 10.693817139000089 + ], + [ + 43.828660006, + 10.79390044500019 + ], + [ + 43.69219962100004, + 10.94001162900014 + ], + [ + 43.564090729000156, + 11.126223564000043 + ], + [ + 43.467178345000036, + 11.201981544000091 + ], + [ + 43.483699612, + 11.348502340000152 + ], + [ + 43.325157166000054, + 11.37293720200006 + ], + [ + 43.279978242000084, + 11.468968092000011 + ], + [ + 43.191236995000054, + 11.528020684000012 + ], + [ + 43.09682846100003, + 11.525362968000024 + ], + [ + 43.03306955300019, + 11.59715518600018 + ], + [ + 42.80368050000004, + 11.582675951000056 + ], + [ + 42.66025959900003, + 11.51846152000013 + ], + [ + 42.70341148000006, + 11.636273528000174 + ], + [ + 42.771739582000066, + 11.732805728000073 + ], + [ + 42.87582052300007, + 11.779142732000082 + ], + [ + 42.946361615000114, + 11.765703692000159 + ], + [ + 43.08821161100008, + 11.844209642000123 + ], + [ + 43.08120346100003, + 11.920044899000061 + ], + [ + 43.23453521700003, + 12.027014732000168 + ], + [ + 43.41550059200017, + 12.090542170000049 + ], + [ + 43.398818593000044, + 12.239162030999978 + ], + [ + 43.35580853300013, + 12.382142547000058 + ], + [ + 43.16490146800004, + 12.631035618000169 + ], + [ + 43.098949468000114, + 12.74586668600017 + ], + [ + 43.08034851600007, + 12.828202121 + ], + [ + 42.891178517000185, + 12.800184101000127 + ], + [ + 42.824771548, + 12.858830266000155 + ], + [ + 42.77439848900008, + 12.844140310000057 + ], + [ + 42.73588146500015, + 12.955023669000184 + ], + [ + 42.73818950600008, + 13.035667133000118 + ], + [ + 42.66572158200012, + 13.052526158000148 + ], + [ + 42.5540100070001, + 13.196651977000045 + ], + [ + 42.4923705810001, + 13.176658959000122 + ], + [ + 42.388278575000186, + 13.20189720500008 + ], + [ + 42.3521886150001, + 13.391504572000088 + ], + [ + 42.28937161500005, + 13.552233599999965 + ], + [ + 42.11217147600007, + 13.629718428000047 + ], + [ + 42.06420502900011, + 13.719311585000014 + ], + [ + 41.963710536, + 13.847393100999966 + ], + [ + 41.85589948000006, + 13.861902175000182 + ], + [ + 41.79917947600012, + 13.925677897000185 + ], + [ + 41.6816905070001, + 13.942516806000128 + ], + [ + 41.648399599000186, + 14.024401294000086 + ], + [ + 41.54304846400004, + 14.13248425900008 + ], + [ + 41.480789531000084, + 14.24654670700005 + ], + [ + 41.33852047100004, + 14.407696339000154 + ], + [ + 41.288989458000174, + 14.512159495000049 + ], + [ + 41.18376153700012, + 14.617762423000158 + ], + [ + 41.02536049800017, + 14.66450025 + ], + [ + 40.90024148200007, + 14.719626854000069 + ], + [ + 40.74597959500011, + 14.732414956000184 + ], + [ + 40.74554055100003, + 14.807030994 + ], + [ + 40.686069607000036, + 14.881575282000142 + ], + [ + 40.61902946900017, + 14.885674871000163 + ], + [ + 40.54280653700005, + 14.998432675000174 + ], + [ + 40.364379539000026, + 14.957640383000069 + ], + [ + 40.29722959800006, + 14.896474283000032 + ], + [ + 40.16062955400014, + 14.977489903000048 + ], + [ + 40.07727856800017, + 15.151607848000083 + ], + [ + 40.0189894720001, + 15.232402690000129 + ], + [ + 40.085571455000036, + 15.319087159000105 + ], + [ + 39.88811158600009, + 15.462368753000078 + ], + [ + 39.82849848400008, + 15.467627391000121 + ], + [ + 39.77476847300005, + 15.389342427000088 + ], + [ + 39.78168153200011, + 15.26014176000001 + ], + [ + 39.82421851700008, + 15.250361588000146 + ], + [ + 39.84601004000018, + 15.156593572000133 + ], + [ + 39.77750047100011, + 15.05590512200007 + ], + [ + 39.6933285610001, + 15.120899908000013 + ], + [ + 39.712341567000124, + 15.23879221400017 + ], + [ + 39.653499601000135, + 15.340165634000016 + ], + [ + 39.61436047200016, + 15.482286502000022 + ], + [ + 39.54014961500013, + 15.528824505000102 + ], + [ + 39.45917858700011, + 15.520294912 + ], + [ + 39.43872054000019, + 15.589149733000056 + ], + [ + 39.47269055000015, + 15.645736129000056 + ], + [ + 39.42221053800017, + 15.750649226 + ], + [ + 39.43059160300004, + 15.799026218000108 + ], + [ + 39.30205947600018, + 15.891901393000182 + ], + [ + 39.234981619999985, + 16.075269775000095 + ], + [ + 39.19435151700009, + 16.28650630800007 + ], + [ + 39.186569591000136, + 16.424557762000177 + ], + [ + 39.146930565000105, + 16.53004015800002 + ], + [ + 39.14767051900003, + 16.63749347400011 + ], + [ + 39.11499048500002, + 16.78051539700016 + ], + [ + 39.062271499000076, + 16.890188745000046 + ], + [ + 38.931541469000194, + 17.369138069000087 + ], + [ + 38.81612048300008, + 17.612893033000034 + ], + [ + 38.60076960900017, + 17.924304205999988 + ], + [ + 38.54182856900019, + 18.08276559400008 + ], + [ + 38.49369850700009, + 18.051106475000097 + ], + [ + 38.410278454000036, + 18.10428411900017 + ], + [ + 38.391590498000085, + 18.181384720000153 + ], + [ + 38.276569496000036, + 18.017718338 + ], + [ + 38.16141298200017, + 17.792106526 + ], + [ + 38.25827029600015, + 17.72679723000016 + ], + [ + 38.27056822400016, + 17.463292155000033 + ], + [ + 38.34860927500017, + 17.231237321000037 + ], + [ + 38.33269824400003, + 17.05938802100019 + ], + [ + 38.452487861000066, + 16.840117373000112 + ], + [ + 38.55857829700011, + 16.820411915000022 + ], + [ + 38.55883025700018, + 16.76383658300017 + ], + [ + 38.48747930600007, + 16.635294566000027 + ], + [ + 38.555179267000085, + 16.48171295399999 + ], + [ + 38.584689266000055, + 16.11180649000005 + ], + [ + 38.64739931300005, + 16.05645106100019 + ], + [ + 38.802501235000136, + 15.981175535000148 + ], + [ + 38.88714923700013, + 15.730710522000152 + ], + [ + 39.00746123100009, + 15.607068398000024 + ], + [ + 39.11264020200019, + 15.3950121150001 + ], + [ + 39.25872034600002, + 15.200824539999985 + ], + [ + 39.444179341, + 15.219643421 + ], + [ + 39.51744824000008, + 15.08489209000004 + ], + [ + 39.70779019600019, + 14.94609095800007 + ], + [ + 39.72788932999998, + 14.874486874000013 + ], + [ + 39.719089338000174, + 14.752493638000033 + ], + [ + 39.74618819900013, + 14.61173298500006 + ], + [ + 39.70750000000015, + 14.4625 + ], + [ + 39.6075, + 14.38000000000011 + ], + [ + 39.73666666700018, + 14.343333333000032 + ], + [ + 39.80666666700017, + 14.276666667000143 + ], + [ + 39.774166667000145, + 14.12 + ], + [ + 39.87, + 14.08333333400003 + ], + [ + 39.83833333300015, + 14.011666667000043 + ], + [ + 39.84666666700008, + 13.831666666000046 + ], + [ + 39.79083333400007, + 13.7575 + ], + [ + 39.80666666600007, + 13.51916666600016 + ], + [ + 39.72, + 13.444166667000047 + ], + [ + 39.77166666700009, + 13.286666667000134 + ], + [ + 39.70916666700015, + 13.161666667000077 + ], + [ + 39.77916666700014, + 13.135833333000107 + ], + [ + 39.764166666999984, + 13.0183333330001 + ], + [ + 39.73000000000019, + 12.995000000000175 + ], + [ + 39.70083333300005, + 12.879166667000106 + ], + [ + 39.62416666700017, + 12.79166666600014 + ], + [ + 39.62250000000017, + 12.674166667000065 + ], + [ + 39.58416666700009, + 12.649166667000145 + ], + [ + 39.59166666700014, + 12.545833333000076 + ], + [ + 39.5125000000001, + 12.354166667000129 + ], + [ + 39.505, + 12.266666667000038 + ], + [ + 39.6025, + 12.086666666000042 + ], + [ + 39.61000000000013, + 11.959166666000044 + ], + [ + 39.6975, + 11.774166666000099 + ], + [ + 39.6125, + 11.685000000000173 + ], + [ + 39.64083333300016, + 11.6225 + ], + [ + 39.62666666700005, + 11.499166666000065 + ], + [ + 39.58166666700015, + 11.454166666000162 + ], + [ + 39.62666666700005, + 11.394166666000103 + ], + [ + 39.808333333000064, + 11.399166667000031 + ], + [ + 39.87750000000011, + 11.36750000000012 + ], + [ + 39.85, + 11.310833333000119 + ], + [ + 39.914166666000085, + 11.199166667000156 + ], + [ + 39.843333333000146, + 11.143333333000044 + ], + [ + 39.86083333300019, + 11.015000000000157 + ], + [ + 39.95666666699998, + 10.9575 + ], + [ + 39.865, + 10.91583333400007 + ], + [ + 39.81666666700016, + 10.96 + ], + [ + 39.730833333000135, + 10.97416666600003 + ], + [ + 39.68000000000012, + 10.88000000000011 + ], + [ + 39.75083333300012, + 10.814166666000062 + ], + [ + 39.781666667000025, + 10.659166666000033 + ], + [ + 39.899166666000156, + 10.481666667000127 + ], + [ + 39.8958333330001, + 10.21 + ], + [ + 39.77583333300004, + 9.9725 + ], + [ + 39.869166667000115, + 9.803333333000182 + ], + [ + 39.81666666700016, + 9.79 + ], + [ + 39.84666666600015, + 9.7 + ], + [ + 39.775, + 9.58916666600004 + ], + [ + 39.81750000000011, + 9.4725 + ], + [ + 39.723333333000085, + 9.456666666000103 + ], + [ + 39.68833333300017, + 9.40833333300003 + ], + [ + 39.649166665999985, + 9.245833334000054 + ], + [ + 39.585, + 9.154166667000084 + ], + [ + 39.415, + 9.069166667000104 + ], + [ + 39.334166666000044, + 9.070833333000166 + ], + [ + 39.440833333000114, + 8.825000000000102 + ], + [ + 39.30916666700017, + 8.735833334000176 + ], + [ + 39.317500000000166, + 8.649166667000031 + ], + [ + 39.24750000000017, + 8.558333333000064 + ], + [ + 39.145833333999974, + 8.538333334000185 + ], + [ + 39.133333333, + 8.598333333000141 + ], + [ + 38.98083333400018, + 8.59583333300003 + ], + [ + 38.89, + 8.630833334000044 + ], + [ + 38.890833334000035, + 8.52 + ], + [ + 38.8275000000001, + 8.456666667000036 + ], + [ + 38.735, + 8.484166665999965 + ], + [ + 38.72583333400007, + 8.364166666000074 + ], + [ + 38.68916666600012, + 8.310833333000176 + ], + [ + 38.674166667000065, + 8.1375 + ], + [ + 38.579166666, + 8.000833334000106 + ], + [ + 38.575, + 7.920833333000189 + ], + [ + 38.48083333300019, + 7.791666667000186 + ], + [ + 38.24083333400017, + 7.5875 + ], + [ + 38.28416666700008, + 7.510000000000161 + ], + [ + 38.33916666700014, + 7.580833333000101 + ], + [ + 38.37166666700011, + 7.296666665999965 + ], + [ + 38.40583333300003, + 7.176666666000074 + ], + [ + 38.29833333400012, + 7.002500000000168 + ], + [ + 38.36416666700006, + 6.960833334000029 + ], + [ + 38.55416666600007, + 6.9575 + ], + [ + 38.60166666600003, + 6.994166667000172 + ], + [ + 38.62333333300012, + 7.104166667000072 + ], + [ + 38.52333333300004, + 7.146666666000158 + ], + [ + 38.53166666700014, + 7.220833334000133 + ], + [ + 38.67583333300013, + 7.440000000000111 + ], + [ + 38.81750000000011, + 7.475 + ], + [ + 38.85416666600008, + 7.595833333000087 + ], + [ + 38.834166667000034, + 7.741666667000118 + ], + [ + 38.730833333000135, + 7.760000000000105 + ], + [ + 38.76000000000016, + 7.828333334000035 + ], + [ + 38.864166666000074, + 7.79 + ], + [ + 38.90833333300003, + 7.862500000000125 + ], + [ + 39.069166666000115, + 7.953333334000092 + ], + [ + 39.105, + 8.072500000000161 + ], + [ + 38.9566666660001, + 8.178333333000012 + ], + [ + 38.98416666700007, + 8.237500000000125 + ], + [ + 39.073333333000164, + 8.167500000000132 + ], + [ + 39.1525, + 8.245833333000121 + ], + [ + 39.27583333300015, + 8.25 + ], + [ + 39.396666667000034, + 8.21083333300004 + ], + [ + 39.43166666700017, + 8.2875 + ], + [ + 39.668333334000124, + 8.435833333000062 + ], + [ + 39.79250000000013, + 8.4275 + ], + [ + 39.92416666700018, + 8.491666667000118 + ], + [ + 39.98333333300019, + 8.550833333000128 + ], + [ + 40.06166666700011, + 8.538333333000082 + ], + [ + 40.11500000000018, + 8.661666667000077 + ], + [ + 40.17083333300019, + 8.679166666000071 + ], + [ + 40.31333333400005, + 8.796666667000125 + ], + [ + 40.44583333300005, + 8.798333333000187 + ], + [ + 40.45416666700015, + 8.8900000000001 + ], + [ + 40.529166666000094, + 8.965000000000146 + ], + [ + 40.71, + 9.050833333000071 + ], + [ + 40.745833333000064, + 9.095 + ], + [ + 40.843333333000146, + 9.08083333400009 + ], + [ + 40.8958333330001, + 9.113333333000185 + ], + [ + 40.90916666700019, + 9.200000000000102 + ], + [ + 40.983333334000065, + 9.170000000000186 + ], + [ + 41.02583333300015, + 9.361666667000065 + ], + [ + 41.09666666700019, + 9.39083333300016 + ], + [ + 41.16, + 9.300833333000185 + ], + [ + 41.2091666660001, + 9.387500000000102 + ], + [ + 41.293333333000135, + 9.376666667000052 + ], + [ + 41.40666666699997, + 9.440000000000111 + ], + [ + 41.47250000000014, + 9.443333333000112 + ], + [ + 41.52916666700014, + 9.495000000000118 + ], + [ + 41.819166666000115, + 9.464166667000086 + ], + [ + 41.95833333400009, + 9.490000000000123 + ], + [ + 42.071666667000045, + 9.559166667000056 + ], + [ + 42.17166666700018, + 9.535833332999971 + ], + [ + 42.17916666700006, + 9.59583333300003 + ], + [ + 42.26000000000016, + 9.625 + ], + [ + 42.30833333400017, + 9.59333333300009 + ], + [ + 42.3841666670001, + 9.626666666000062 + ], + [ + 42.566666667000106, + 9.645000000000152 + ], + [ + 42.64500000000015, + 9.600833334000072 + ], + [ + 42.68416666700011, + 9.69250000000011 + ], + [ + 42.775, + 9.73166666700007 + ], + [ + 42.8725, + 9.6991666670001 + ], + [ + 43.00843865100006, + 9.745173154000042 + ], + [ + 43.17975984300011, + 9.849869438000042 + ], + [ + 43.31295159399997, + 10.006844001000104 + ], + [ + 43.47891886300016, + 10.160037034000027 + ], + [ + 43.71646000200013, + 10.409081535999974 + ], + [ + 43.97118496700017, + 10.66371652500004 + ] + ], + [ + [ + 39.9125, + 10.84166666699997 + ], + [ + 39.9875, + 10.720000000000141 + ], + [ + 39.92916666600007, + 10.705000000000155 + ], + [ + 39.88, + 10.785000000000139 + ], + [ + 39.9125, + 10.84166666699997 + ] + ] + ], + [ + [ + [ + 41.783027480000044, + 16.881063510000047 + ], + [ + 41.775910442000054, + 16.815757244000054 + ], + [ + 41.94779459700004, + 16.67279459700012 + ], + [ + 42.05416666800011, + 16.69166666700005 + ], + [ + 42.07919859700007, + 16.62496727100006 + ], + [ + 42.18828636100005, + 16.588005135000174 + ], + [ + 42.188020834000156, + 16.7125 + ], + [ + 42.07749328800014, + 16.812494072000106 + ], + [ + 42.03333317300019, + 16.754199848000155 + ], + [ + 41.90416666699997, + 16.753055828000186 + ], + [ + 41.848073963000104, + 16.84808921800004 + ], + [ + 41.783027480000044, + 16.881063510000047 + ] + ] + ], + [ + [ + [ + 41.931340535, + 16.973008219000064 + ], + [ + 41.8374614710001, + 16.904565815000126 + ], + [ + 41.88472188300017, + 16.81805623400004 + ], + [ + 41.947916667000186, + 16.88127103700009 + ], + [ + 41.931340535, + 16.973008219000064 + ] + ] + ], + [ + [ + [ + 40.7034494830001, + 35.59878691900013 + ], + [ + 40.53898246099999, + 35.556762068000126 + ], + [ + 40.54212550699998, + 35.43188294200013 + ], + [ + 40.61527253200006, + 35.41524737900011 + ], + [ + 40.71643858300013, + 35.466427950000025 + ], + [ + 40.80437061500004, + 35.624200346000066 + ], + [ + 40.7034494830001, + 35.59878691900013 + ] + ] + ], + [ + [ + [ + 40.220371569000065, + 36.548217330000114 + ], + [ + 40.221595494000155, + 36.420809049000184 + ], + [ + 40.44023861199997, + 36.41680719300018 + ], + [ + 40.55437046200018, + 36.363200396000025 + ], + [ + 40.698932475000106, + 36.33811587399998 + ], + [ + 40.864356542999985, + 36.40407424400007 + ], + [ + 40.918949555000154, + 36.486221589000024 + ], + [ + 40.879871614000024, + 36.54532138200011 + ], + [ + 40.70754253400008, + 36.56920092200005 + ], + [ + 40.60573157900018, + 36.61056293200005 + ], + [ + 40.48549250800011, + 36.61894768500002 + ], + [ + 40.220371569000065, + 36.548217330000114 + ] + ] + ], + [ + [ + [ + 42.7695178940001, + 14.063787459000082 + ], + [ + 42.68561193100015, + 14.01432589400008 + ], + [ + 42.71196158800012, + 13.953980792000095 + ], + [ + 42.77833366700008, + 13.92915916700008 + ], + [ + 42.7695178940001, + 14.063787459000082 + ] + ] + ], + [ + [ + [ + 42.63922006300004, + 15.452575627000158 + ], + [ + 42.55413245600016, + 15.388399122000123 + ], + [ + 42.545137348000026, + 15.287495522000029 + ], + [ + 42.621166992000155, + 15.31250000000017 + ], + [ + 42.63922006300004, + 15.452575627000158 + ] + ] + ], + [ + [ + [ + 46.253097522000076, + -23.993154904999983 + ], + [ + 46.019348539000134, + -24.04822534999994 + ], + [ + 45.91842254500011, + -24.095045822999964 + ], + [ + 45.79801550000019, + -24.27134524199988 + ], + [ + 45.697547494000105, + -24.25253524599998 + ], + [ + 45.72441451100002, + -24.17791769999991 + ], + [ + 45.67992353700015, + -24.116858719999925 + ], + [ + 45.782707463000065, + -23.98163448199989 + ], + [ + 45.811672470000076, + -23.831822211999963 + ], + [ + 45.859783589000074, + -23.820904782999946 + ], + [ + 45.88562751100005, + -23.92291656799989 + ], + [ + 45.949779580000154, + -23.930002292999973 + ], + [ + 46.00155258500007, + -23.80373948299996 + ], + [ + 46.03182952800012, + -23.56118078399993 + ], + [ + 46.08282050000008, + -23.553893221999942 + ], + [ + 46.074211615000195, + -23.729154290999816 + ], + [ + 46.18080561900007, + -23.674409063999974 + ], + [ + 46.14178853000004, + -23.636543983999957 + ], + [ + 46.23973458900008, + -23.49227231899988 + ], + [ + 46.16279961500004, + -23.410555468999974 + ], + [ + 46.167800593000095, + -23.317846254999836 + ], + [ + 46.123931556000116, + -23.215842516999942 + ], + [ + 46.05415757700007, + -23.18389221099983 + ], + [ + 45.91883057600006, + -23.049784106999937 + ], + [ + 45.93445947300006, + -22.946026538999945 + ], + [ + 45.84262046800012, + -22.858547967999982 + ], + [ + 45.751090589000114, + -22.864672791999965 + ], + [ + 45.74750548100013, + -22.745161939999946 + ], + [ + 45.67419450600016, + -22.683487225999897 + ], + [ + 45.5396114830001, + -22.6763735049999 + ], + [ + 45.55921960500012, + -22.5195958729999 + ], + [ + 45.523681509000085, + -22.381441991999964 + ], + [ + 45.55585058300005, + -22.286099184999955 + ], + [ + 45.52143448800007, + -22.035351532999982 + ], + [ + 45.51566354800008, + -21.9038046039999 + ], + [ + 45.4737585580001, + -21.701444505999973 + ], + [ + 45.55041860600011, + -21.556968322999865 + ], + [ + 45.59217456600004, + -21.355319345999874 + ], + [ + 45.561649518000195, + -21.248780327999953 + ], + [ + 45.43034750800001, + -21.356524495999906 + ], + [ + 45.34617962100009, + -21.376982206999912 + ], + [ + 45.26593061000017, + -21.53630341199994 + ], + [ + 45.23016754300011, + -21.45196520499985 + ], + [ + 45.07986459700004, + -21.591140503999952 + ], + [ + 45.033634544999984, + -21.470460041999957 + ], + [ + 44.93144657200014, + -21.481294656999978 + ], + [ + 44.96140651200011, + -21.042681565999942 + ], + [ + 44.92292050000009, + -20.902923555999962 + ], + [ + 44.97956858700013, + -20.89049520599997 + ], + [ + 45.01632658500006, + -20.814650548999964 + ], + [ + 45.07014846200002, + -20.834556394999936 + ], + [ + 45.166721565000046, + -20.787238036999895 + ], + [ + 45.15510156500011, + -20.674771168999882 + ], + [ + 45.24921759800003, + -20.632981514999983 + ], + [ + 45.284278596000036, + -20.486913942999877 + ], + [ + 45.25279952000011, + -20.293990862999976 + ], + [ + 45.20162146300004, + -20.27595166599997 + ], + [ + 45.10229155200017, + -20.315038659999857 + ], + [ + 44.979293493000114, + -20.421398473999943 + ], + [ + 44.88853860400013, + -20.404353537999953 + ], + [ + 44.98946359100012, + -20.215769097999953 + ], + [ + 44.97266357500007, + -20.154956546999927 + ], + [ + 44.743812473000105, + -19.965153377999968 + ], + [ + 44.58164946800014, + -19.85713780399982 + ], + [ + 44.473632971000086, + -19.823689148999904 + ], + [ + 44.4864194810001, + -19.95279509999989 + ], + [ + 44.44354051400006, + -20.058728023999834 + ], + [ + 44.26301946500013, + -20.306263980999915 + ], + [ + 44.23252157500019, + -20.406538364999903 + ], + [ + 44.11635946100006, + -20.488103837999915 + ], + [ + 44.04358272100018, + -20.709736166999903 + ], + [ + 44.033184495000114, + -20.805830942999876 + ], + [ + 43.96671248200005, + -20.879458920999866 + ], + [ + 43.88370023700014, + -20.906356280999944 + ], + [ + 43.86671051000013, + -21.051593372999946 + ], + [ + 43.80561045900009, + -21.220492912999873 + ], + [ + 43.72861848700012, + -21.284410288999936 + ], + [ + 43.757282584999984, + -21.38509471599997 + ], + [ + 43.71144849400008, + -21.475659000999883 + ], + [ + 43.54260259800009, + -21.716644584999983 + ], + [ + 43.42483853500016, + -21.670688117999873 + ], + [ + 43.34967046500009, + -21.748235139999963 + ], + [ + 43.32949857700015, + -21.868677555999966 + ], + [ + 43.23616055300005, + -22.07878705899992 + ], + [ + 43.235778506000145, + -22.149942543999884 + ], + [ + 43.30447054900003, + -22.168532263999964 + ], + [ + 43.22850049900006, + -22.272856950999937 + ], + [ + 43.262349977000156, + -22.374270938999928 + ], + [ + 43.28488958500009, + -22.55447196699987 + ], + [ + 43.37044501200012, + -22.854215613999884 + ], + [ + 43.48188057100009, + -22.991449077999903 + ], + [ + 43.589790534000144, + -23.07473485299988 + ], + [ + 43.62046846700014, + -23.21231658599993 + ], + [ + 43.61602052600011, + -23.314522327999953 + ], + [ + 43.76322954500017, + -23.46127369499993 + ], + [ + 43.72124853100013, + -23.595837605999975 + ], + [ + 43.65494960500013, + -23.618596820999926 + ], + [ + 43.63353551900002, + -23.752819504999877 + ], + [ + 43.67602958900005, + -24.05941468799989 + ], + [ + 43.67052049900008, + -24.330210342999976 + ], + [ + 43.76221458000015, + -24.46691960299995 + ], + [ + 43.835201595000115, + -24.5074114869999 + ], + [ + 43.92872955300015, + -24.627276557999892 + ], + [ + 43.91764850900006, + -24.719351093999933 + ], + [ + 44.004840503000025, + -24.857350077999968 + ], + [ + 44.027740533000156, + -24.998988734999955 + ], + [ + 44.11037059100016, + -25.07315525099989 + ], + [ + 44.19677007600018, + -25.080794768999965 + ], + [ + 44.324340463, + -25.180549055999904 + ], + [ + 44.35422848600018, + -25.258905433999814 + ], + [ + 44.68675954000014, + -25.306013908999887 + ], + [ + 44.784458500000085, + -25.331441753999968 + ], + [ + 44.89796103700019, + -25.392685050999944 + ], + [ + 44.972370544000114, + -25.480905838999945 + ], + [ + 45.11314058500017, + -25.534093373999895 + ], + [ + 45.18054952600011, + -25.60727895599996 + ], + [ + 45.29119852700018, + -25.58413987399996 + ], + [ + 45.5161515420001, + -25.577920165999956 + ], + [ + 45.61008049000009, + -25.54820162599998 + ], + [ + 45.871570556, + -25.368440982999857 + ], + [ + 46.031009610000126, + -25.290074881999942 + ], + [ + 46.29639860200007, + -25.193179242999918 + ], + [ + 46.522941496000044, + -25.16798961199993 + ], + [ + 46.65438046700001, + -25.189059537999924 + ], + [ + 46.74619019000011, + -25.14722551499989 + ], + [ + 46.71030050100018, + -25.052540127999862 + ], + [ + 46.68925454800012, + -24.77326349599997 + ], + [ + 46.555862594000075, + -24.710413470999924 + ], + [ + 46.60951649800012, + -24.637005265999903 + ], + [ + 46.59481447200011, + -24.343814506999934 + ], + [ + 46.71345846700018, + -24.344463433999977 + ], + [ + 46.7071604730001, + -24.28546841399998 + ], + [ + 46.56748561200004, + -24.29130205099989 + ], + [ + 46.59038547400013, + -24.230400315999873 + ], + [ + 46.758491583000136, + -24.197726650999982 + ], + [ + 46.60052456000005, + -24.11649293399995 + ], + [ + 46.540111489000026, + -24.0561879899999 + ], + [ + 46.418235600000116, + -24.069225201999927 + ], + [ + 46.4175605210001, + -23.98760424099993 + ], + [ + 46.253097522000076, + -23.993154904999983 + ] + ], + [ + [ + 45.23163957300005, + -22.570214018999934 + ], + [ + 45.229480563000095, + -22.485705491999965 + ], + [ + 45.29944950500004, + -22.43424831799996 + ], + [ + 45.34051546600011, + -22.28045346999994 + ], + [ + 45.38923662000008, + -22.437885224999945 + ], + [ + 45.354858579000165, + -22.566363204999845 + ], + [ + 45.23163957300005, + -22.570214018999934 + ] + ], + [ + [ + 44.061408542000095, + -22.45780699799991 + ], + [ + 44.10117748800002, + -22.482047628999908 + ], + [ + 44.202266593000104, + -22.43437622499988 + ], + [ + 44.236659553000095, + -22.51343517399988 + ], + [ + 44.251300559000185, + -22.647099037999965 + ], + [ + 44.22795846700012, + -22.733968411999967 + ], + [ + 44.170989521000024, + -22.77825319099992 + ], + [ + 44.0959205260001, + -22.77557517299988 + ], + [ + 44.00256355900012, + -22.553242843999953 + ], + [ + 44.061408542000095, + -22.45780699799991 + ] + ], + [ + [ + 44.942363498000134, + -22.923827570999947 + ], + [ + 44.89855950500015, + -22.8808168409999 + ], + [ + 45.01906562400006, + -22.745615736999923 + ], + [ + 45.076770501000055, + -22.74443204399995 + ], + [ + 45.05026658800011, + -22.93848668199996 + ], + [ + 45.08692551200011, + -23.049696096999867 + ], + [ + 44.963169561000086, + -23.06164936099998 + ], + [ + 44.942363498000134, + -22.923827570999947 + ] + ], + [ + [ + 45.24564757700017, + -22.819651913999962 + ], + [ + 45.107379535000064, + -22.81309843899993 + ], + [ + 45.20063357200007, + -22.742089972999963 + ], + [ + 45.24564757700017, + -22.819651913999962 + ] + ] + ], + [ + [ + [ + 44.85654, + 9.87008 + ], + [ + 44.87171, + 9.73328 + ], + [ + 44.92213, + 9.687610000000177 + ], + [ + 45.06926, + 9.71888 + ], + [ + 45.06065000000018, + 9.83613000000014 + ], + [ + 45.18901, + 9.800120000000106 + ], + [ + 45.15080000000012, + 9.938040000000171 + ], + [ + 45.06637, + 9.99353 + ], + [ + 44.97856, + 9.99366 + ], + [ + 44.93232000000012, + 9.901450000000125 + ], + [ + 44.85654, + 9.87008 + ] + ] + ], + [ + [ + [ + 48.159912109000174, + 5.106079102000024 + ], + [ + 48.15570068400018, + 5.026672363000159 + ], + [ + 48.09271240200013, + 4.937072753999985 + ], + [ + 48.02331543000014, + 4.7293090820001 + ], + [ + 47.95410156200012, + 4.688720703000058 + ], + [ + 47.915283203, + 4.778320312000062 + ], + [ + 47.86248779300013, + 4.768127441 + ], + [ + 47.81768798799999, + 4.584716797000112 + ], + [ + 47.76068115200019, + 4.454284668000128 + ], + [ + 47.58752441400014, + 4.340270996000129 + ], + [ + 47.41851806600016, + 4.21008300800014 + ], + [ + 47.35131835900012, + 4.175292969000111 + ], + [ + 47.249328613000046, + 4.049072266 + ], + [ + 47.17810058600014, + 3.845275879000155 + ], + [ + 47.10272216800007, + 3.763916016000167 + ], + [ + 46.92547607400007, + 3.627502441000161 + ], + [ + 46.844116211000085, + 3.543884277000132 + ], + [ + 46.703491211000085, + 3.350524902000132 + ], + [ + 46.48968505900007, + 3.134521484000061 + ], + [ + 46.39392089800003, + 3.020507812000062 + ], + [ + 46.275878906000116, + 2.827087402000075 + ], + [ + 46.1760864260001, + 2.739501953000172 + ], + [ + 46.01307251400016, + 2.563375996000048 + ], + [ + 45.77684792100018, + 2.362408805000143 + ], + [ + 45.723961818000134, + 2.344780104000051 + ], + [ + 45.49478870600018, + 2.193173276000095 + ], + [ + 45.364336319000074, + 2.157915874000025 + ], + [ + 45.25503837300016, + 2.04156644700015 + ], + [ + 45.22692871100014, + 1.960083008000026 + ], + [ + 45.39428710900006, + 2.047302246000129 + ], + [ + 45.89831543000008, + 2.351684570000032 + ], + [ + 46.10412597700014, + 2.515075684000124 + ], + [ + 46.34527587900004, + 2.78649902300009 + ], + [ + 46.57568359400011, + 2.971679687000062 + ], + [ + 46.80688476600005, + 3.203918456999986 + ], + [ + 46.87207031200012, + 3.293090820000145 + ], + [ + 47.13812255900018, + 3.573730469000111 + ], + [ + 47.215881348000096, + 3.668518066000161 + ], + [ + 47.42852783200004, + 3.869323730000076 + ], + [ + 47.624084473000096, + 4.095886230000076 + ], + [ + 47.939514160000044, + 4.438476562000062 + ], + [ + 48.0078735350001, + 4.536682129000155 + ], + [ + 48.197509766, + 4.883300781000059 + ], + [ + 48.31488037100007, + 5.056091309000124 + ], + [ + 48.65148925800014, + 5.492309570000032 + ], + [ + 48.98571777300009, + 6.044677734000174 + ], + [ + 49.08367919900013, + 6.28210449200003 + ], + [ + 49.08532714800015, + 6.390930176000154 + ], + [ + 49.134495964000166, + 6.535037730000056 + ], + [ + 49.05773776600017, + 6.537551169000096 + ], + [ + 48.89007568400001, + 6.429687500000057 + ], + [ + 48.69427490200013, + 6.24890136700003 + ], + [ + 48.65865194700012, + 6.195503062000057 + ], + [ + 48.570862633000104, + 5.963974860000121 + ], + [ + 48.457713721, + 5.791557470000157 + ], + [ + 48.22063981000014, + 5.306633560000137 + ], + [ + 48.159912109000174, + 5.106079102000024 + ] + ] + ], + [ + [ + [ + 49.705898068000124, + 7.491642680000041 + ], + [ + 49.780281507000154, + 7.669517395000071 + ], + [ + 49.83626960300006, + 7.764547557000014 + ], + [ + 49.809570559000065, + 7.817692511000075 + ], + [ + 49.83533049400006, + 7.934154362000072 + ], + [ + 49.984401469000034, + 8.09524481900013 + ], + [ + 50.129219466, + 8.197920283000087 + ], + [ + 50.156879579000076, + 8.309346286000164 + ], + [ + 50.33201961400016, + 8.550229946000059 + ], + [ + 50.338539561, + 8.64957980600019 + ], + [ + 50.379520529000104, + 8.695576841000104 + ], + [ + 50.44340152799998, + 8.892528766999988 + ], + [ + 50.64088855500006, + 9.076329655 + ], + [ + 50.655040560000145, + 9.202781561000108 + ], + [ + 50.810081629000024, + 9.38393376700003 + ], + [ + 50.84656151600012, + 9.465051982000091 + ], + [ + 50.79864150500009, + 9.559913333 + ], + [ + 50.85145151800003, + 9.853899534999982 + ], + [ + 50.89825053400011, + 9.991268702000013 + ], + [ + 50.88206859900015, + 10.094969608000156 + ], + [ + 50.909768168000085, + 10.316464673000155 + ], + [ + 50.89926528900014, + 10.395778656000118 + ], + [ + 50.9573117760001, + 10.438003818000084 + ], + [ + 51.01898950200007, + 10.40694756500011 + ], + [ + 51.10820061200013, + 10.493522734000123 + ], + [ + 51.062219693000145, + 10.606355890000145 + ], + [ + 51.065077429000155, + 10.68260366200019 + ], + [ + 51.12953275400014, + 10.74837906300013 + ], + [ + 51.116599614000165, + 10.939081573000067 + ], + [ + 51.132308474000126, + 11.03804368700014 + ], + [ + 51.17847851200003, + 11.130617449000056 + ], + [ + 51.086368604000086, + 11.186104307000107 + ], + [ + 51.083980600000075, + 11.33804289799997 + ], + [ + 51.119819606000135, + 11.490912551 + ], + [ + 51.225429575000135, + 11.641041993000101 + ], + [ + 51.2846105050001, + 11.810751560000085 + ], + [ + 51.14027061200011, + 11.873026083000127 + ], + [ + 51.05435157800008, + 11.871696378000138 + ], + [ + 50.80575958500003, + 11.978520046000142 + ], + [ + 50.58153160500012, + 11.911253597000098 + ], + [ + 50.539310617000126, + 11.859237182000072 + ], + [ + 50.49285861300018, + 11.73069684100011 + ], + [ + 50.43152956800003, + 11.669550186000151 + ], + [ + 50.26052047100018, + 11.579767263000065 + ], + [ + 50.064010606000124, + 11.50281150100011 + ], + [ + 49.93952962100008, + 11.508571042000142 + ], + [ + 49.86138161700006, + 11.46733492800007 + ], + [ + 49.76206947600008, + 11.455504878000056 + ], + [ + 49.692150489000085, + 11.476494504000186 + ], + [ + 49.54692060500008, + 11.438657085000045 + ], + [ + 49.50939951900011, + 11.38006020500012 + ], + [ + 49.42203158900014, + 11.332713349000187 + ], + [ + 49.29597849400005, + 11.331984291000083 + ], + [ + 49.20678264000003, + 11.264517340000111 + ], + [ + 49.08928869500011, + 11.269273233000092 + ], + [ + 48.95531850300017, + 11.237580927000124 + ], + [ + 48.87960057999999, + 11.245709194000028 + ], + [ + 48.66204861800003, + 11.321724171000085 + ], + [ + 48.360099609000144, + 11.268987583000069 + ], + [ + 48.241611516000034, + 11.203692389000139 + ], + [ + 48.15349960900005, + 11.128367411000056 + ], + [ + 47.97175949600012, + 11.11160846600012 + ], + [ + 47.80221957900011, + 11.121228041000165 + ], + [ + 47.674388513999986, + 11.08942005900002 + ], + [ + 47.54197618200004, + 11.143217897000113 + ], + [ + 47.490400000000136, + 11.09294 + ], + [ + 47.38829, + 11.07462 + ], + [ + 47.18618000000015, + 10.97071 + ], + [ + 47.023135168000124, + 10.862037239000074 + ], + [ + 46.88524000000018, + 10.83436 + ], + [ + 46.82469, + 10.710700000000145 + ], + [ + 46.76537000000019, + 10.67822 + ], + [ + 46.721270000000175, + 10.54584 + ], + [ + 46.669660000000135, + 10.52746000000019 + ], + [ + 46.523800000000165, + 10.611270000000104 + ], + [ + 46.45570000000015, + 10.57771 + ], + [ + 46.337260000000185, + 10.65062 + ], + [ + 46.24935000000016, + 10.57692 + ], + [ + 46.15947000000017, + 10.66933 + ], + [ + 46.07706, + 10.60866 + ], + [ + 45.95525000000015, + 10.62078 + ], + [ + 45.8743, + 10.803270000000111 + ], + [ + 45.78208000000012, + 10.790380000000141 + ], + [ + 45.72041, + 10.650440000000117 + ], + [ + 45.717, + 10.5701 + ], + [ + 45.49059, + 10.363090000000113 + ], + [ + 45.42032000000012, + 10.349080000000185 + ], + [ + 45.25140000000016, + 10.42423 + ], + [ + 45.20201, + 10.42756 + ], + [ + 45.04819, + 10.329000000000178 + ], + [ + 45.00202000000013, + 10.27370000000019 + ], + [ + 44.98430000000019, + 10.16517 + ], + [ + 45.11921, + 10.09984 + ], + [ + 45.22126, + 10.08124 + ], + [ + 45.47703, + 10.09932 + ], + [ + 45.60220000000015, + 10.134960000000149 + ], + [ + 45.692310000000134, + 10.199960000000146 + ], + [ + 45.83195, + 10.37128 + ], + [ + 46.008690000000115, + 10.384050000000116 + ], + [ + 46.14828000000011, + 10.51737 + ], + [ + 46.228310000000135, + 10.45537 + ], + [ + 46.42586000000017, + 10.44097 + ], + [ + 46.52351000000016, + 10.41585 + ], + [ + 46.67488, + 10.34725 + ], + [ + 46.76166000000018, + 10.39380000000017 + ], + [ + 46.869590525000035, + 10.389969014000087 + ], + [ + 46.87018949600014, + 10.327317138000012 + ], + [ + 46.96903735000012, + 10.342136881999977 + ], + [ + 46.99194000000011, + 10.248 + ], + [ + 47.15865000000014, + 10.152230000000145 + ], + [ + 47.34857, + 10.187770000000171 + ], + [ + 47.28938, + 10.23888 + ], + [ + 47.266031076000104, + 10.39204982400014 + ], + [ + 47.42791000000011, + 10.39826 + ], + [ + 47.49692149600003, + 10.439589546000036 + ], + [ + 48.074382490000175, + 10.737923441000135 + ], + [ + 48.39198654800015, + 10.651310720000026 + ], + [ + 48.738464586000134, + 10.77641800200007 + ], + [ + 49.04644353600003, + 10.959268214000133 + ], + [ + 49.1849, + 10.953680000000134 + ], + [ + 49.28105387700003, + 10.997450966000144 + ], + [ + 49.681652491000136, + 11.055505370000105 + ], + [ + 49.71067, + 10.96702 + ], + [ + 49.78635, + 10.93109 + ], + [ + 49.7676, + 10.867070000000183 + ], + [ + 49.835610000000145, + 10.83874 + ], + [ + 49.95089000000013, + 10.85703 + ], + [ + 49.93131000000011, + 10.99058 + ], + [ + 49.96739680400003, + 11.023050706000106 + ], + [ + 50.172492550000186, + 10.90152628800007 + ], + [ + 50.386840613, + 10.919386950999979 + ], + [ + 50.39413596000014, + 10.758818789000088 + ], + [ + 50.309520000000134, + 10.66328 + ], + [ + 50.1819, + 10.466970000000117 + ], + [ + 50.12572, + 10.32376 + ], + [ + 50.15959, + 10.21624 + ], + [ + 50.26400028000006, + 10.128607960000181 + ], + [ + 50.10902762900008, + 9.880677536000064 + ], + [ + 49.97018056500008, + 9.533586278000143 + ], + [ + 49.93547060100019, + 8.978235571000027 + ], + [ + 49.779266626000094, + 8.474949391 + ], + [ + 49.58976755300017, + 7.906489220000026 + ], + [ + 49.49177153800002, + 7.69287876500016 + ], + [ + 49.50043859400006, + 7.536927924000111 + ], + [ + 49.569755592000035, + 7.469782677000126 + ], + [ + 49.705898068000124, + 7.491642680000041 + ] + ] + ], + [ + [ + [ + 51.01898950200007, + 10.40694756500011 + ], + [ + 51.04701959200008, + 10.39506957000009 + ], + [ + 51.24478959200019, + 10.420976692000124 + ], + [ + 51.28926061700008, + 10.367610455000147 + ], + [ + 51.36029858800009, + 10.368041453000103 + ], + [ + 51.413028470000086, + 10.438915473000122 + ], + [ + 51.19924, + 10.53119 + ], + [ + 51.22835150600008, + 10.430046077999975 + ], + [ + 51.01898950200007, + 10.40694756500011 + ] + ] + ], + [ + [ + [ + 51.558322758000145, + 24.417412933000094 + ], + [ + 51.557873098000016, + 24.41966123800006 + ], + [ + 51.53386120000016, + 24.40976869600007 + ], + [ + 51.558322758000145, + 24.417412933000094 + ] + ] + ], + [ + [ + [ + 51.72074032000012, + 24.56562120600006 + ], + [ + 51.72361815, + 24.601773953000077 + ], + [ + 51.71327594700006, + 24.592510936000053 + ], + [ + 51.70761021800013, + 24.578211715000066 + ], + [ + 51.72074032000012, + 24.56562120600006 + ] + ] + ], + [ + [ + [ + 50.62268508000017, + 26.06838591899998 + ], + [ + 50.62500391200018, + 26.12505283100012 + ], + [ + 50.46064032500004, + 26.23100151700004 + ], + [ + 50.493739380000136, + 26.04248974899997 + ], + [ + 50.46304552000015, + 25.95707214300012 + ], + [ + 50.536870865000026, + 25.87721234700018 + ], + [ + 50.60893615500004, + 25.918004176000125 + ], + [ + 50.60893392100007, + 25.918681408 + ], + [ + 50.611650988000065, + 25.92749279500015 + ], + [ + 50.61548991100017, + 25.975360946000137 + ], + [ + 50.617444794, + 25.988685020000162 + ], + [ + 50.620965975000104, + 26.058900274000052 + ], + [ + 50.62268508000017, + 26.06838591899998 + ] + ] + ], + [ + [ + [ + 49.9804644890001, + 36.41772618500016 + ], + [ + 50.03688056500005, + 36.52525678300003 + ], + [ + 49.69034553000006, + 36.59164246200004 + ], + [ + 49.33118852200016, + 36.70241098900004 + ], + [ + 49.1406365150001, + 36.836930141000096 + ], + [ + 48.931858561000126, + 37.09362676400019 + ], + [ + 48.824783604000174, + 37.17024725000016 + ], + [ + 48.695098463000136, + 37.336172053000155 + ], + [ + 48.63952661200011, + 37.354939804000026 + ], + [ + 48.49585760600013, + 37.24797766700004 + ], + [ + 48.50518750300017, + 37.1524865 + ], + [ + 48.59775154200008, + 37.05719767200014 + ], + [ + 48.75327658200018, + 36.942407843000126 + ], + [ + 48.86848852300011, + 36.89848281500019 + ], + [ + 49.13779052299998, + 36.740111113000125 + ], + [ + 49.24985154000018, + 36.54479919000005 + ], + [ + 49.46344355499997, + 36.49221062600003 + ], + [ + 49.63610858100003, + 36.41982803100018 + ], + [ + 49.76379061600005, + 36.4482544170001 + ], + [ + 49.9804644890001, + 36.41772618500016 + ] + ] + ], + [ + [ + [ + 46.65341956500009, + 38.934772819000045 + ], + [ + 46.832439583000166, + 38.81659569500016 + ], + [ + 46.99087549000012, + 38.849374301000125 + ], + [ + 47.05250159000008, + 38.903939317000095 + ], + [ + 47.38233551500019, + 38.99652079100014 + ], + [ + 47.54561951500011, + 39.01757344900011 + ], + [ + 47.738819534000015, + 39.10283416800007 + ], + [ + 47.8052905400001, + 39.169957120000106 + ], + [ + 47.985374557000114, + 39.16415550200003 + ], + [ + 48.13323250200011, + 39.198203798000065 + ], + [ + 48.13971758100013, + 39.279654775000154 + ], + [ + 48.33283948000013, + 39.262854759000106 + ], + [ + 48.60583857000006, + 39.11032222600005 + ], + [ + 48.66225447800019, + 39.095716424000045 + ], + [ + 48.815139554000154, + 38.96894030600009 + ], + [ + 48.90388848600003, + 38.98221221100016 + ], + [ + 48.89113659300017, + 39.08809442400019 + ], + [ + 48.96084955300006, + 39.20924377100005 + ], + [ + 49.03840260900006, + 39.2145236990001 + ], + [ + 49.115203473000065, + 39.14622275500017 + ], + [ + 49.095645476000186, + 38.99306510000008 + ], + [ + 49.203552589000026, + 39.05729897700007 + ], + [ + 49.243526555000074, + 39.306567222000126 + ], + [ + 49.377941605000046, + 39.39118689300017 + ], + [ + 49.28247457700019, + 39.5676445630001 + ], + [ + 49.373203483000054, + 39.68254989400009 + ], + [ + 49.376724552000155, + 39.817935065000086 + ], + [ + 49.44826560500002, + 39.99555279000003 + ], + [ + 49.43230461700017, + 40.108386283000186 + ], + [ + 49.56627257600013, + 40.21630982400018 + ], + [ + 49.859062512000094, + 40.361950086000036 + ], + [ + 49.99071153300008, + 40.35068531100012 + ], + [ + 50.157161546000054, + 40.37437391100008 + ], + [ + 50.327873589000035, + 40.322242831000096 + ], + [ + 50.354907574000094, + 40.46821099300013 + ], + [ + 50.25050761699998, + 40.46008591100019 + ], + [ + 50.02719862900011, + 40.61339645300018 + ], + [ + 49.763614596000195, + 40.59566537500001 + ], + [ + 49.520019558000115, + 40.68513850300013 + ], + [ + 49.478855528, + 40.793944156000066 + ], + [ + 49.30313462800012, + 40.952446616000145 + ], + [ + 49.01126854400002, + 41.42985182500007 + ], + [ + 48.75519553500004, + 41.71115235200017 + ], + [ + 48.75043847000018, + 41.494666232999975 + ], + [ + 48.78131052800012, + 41.34819079800019 + ], + [ + 48.85411456500009, + 41.20841803700006 + ], + [ + 48.66784252500008, + 41.22173906000012 + ], + [ + 48.69903158700015, + 41.105331021000154 + ], + [ + 48.754650544000185, + 41.02799589400013 + ], + [ + 48.72858852400009, + 40.95887067399997 + ], + [ + 48.593959569000106, + 40.920044860000075 + ], + [ + 48.47760349800018, + 40.84425585900004 + ], + [ + 48.283767628000135, + 40.82647599900014 + ], + [ + 48.27695062600009, + 40.73820802000006 + ], + [ + 48.06826755600014, + 40.69329828600013 + ], + [ + 47.90741749300008, + 40.70749622400018 + ], + [ + 47.660266516000036, + 40.80253527100007 + ], + [ + 47.82651553100004, + 40.92876187200011 + ], + [ + 47.67642548400016, + 41.024879838 + ], + [ + 47.249004581000065, + 41.11139214300016 + ], + [ + 47.07640459800018, + 41.18847111900004 + ], + [ + 46.85204351300018, + 41.31636504700009 + ], + [ + 46.639606524000044, + 41.40207704800014 + ], + [ + 46.439838614000166, + 41.42613210400003 + ], + [ + 46.17462949800017, + 41.49983132900013 + ], + [ + 45.914974565000136, + 41.64417088700003 + ], + [ + 45.77012656100004, + 41.697610717000146 + ], + [ + 45.17974855200009, + 41.819614682000065 + ], + [ + 44.97523447300017, + 41.82123272500007 + ], + [ + 44.76361857500018, + 41.73616931600009 + ], + [ + 44.664508604000105, + 41.57432851100009 + ], + [ + 44.69499559800016, + 41.46245156200007 + ], + [ + 44.82906749200015, + 41.35534760300004 + ], + [ + 45.15516258600013, + 41.23341991300015 + ], + [ + 45.37671657100003, + 41.10352304500009 + ], + [ + 45.563446597999985, + 41.06100466700019 + ], + [ + 45.705539471000066, + 41.00339903200012 + ], + [ + 46.037242561000085, + 40.78656640500009 + ], + [ + 46.08610955900019, + 40.739241844000105 + ], + [ + 46.12792553300005, + 40.57169866400005 + ], + [ + 46.397758610000096, + 40.53471502500008 + ], + [ + 46.533054597000046, + 40.47124691800002 + ], + [ + 46.690166499000156, + 40.4280764290001 + ], + [ + 46.82796448500005, + 40.213171137000074 + ], + [ + 46.95687446800008, + 40.100070429000084 + ], + [ + 47.01123848600008, + 40.021084570000085 + ], + [ + 47.03894855500016, + 39.90425291000014 + ], + [ + 47.029441465000104, + 39.63629654100015 + ], + [ + 47.08334749600016, + 39.52577494500002 + ], + [ + 46.862274464000166, + 39.46824290200004 + ], + [ + 46.772010587000125, + 39.52797200900011 + ], + [ + 46.66670655799999, + 39.496749588 + ], + [ + 46.6438945380001, + 39.41007668500009 + ], + [ + 46.69729648200007, + 39.29832328500004 + ], + [ + 46.80580155900003, + 39.16996818400014 + ], + [ + 46.74453353500007, + 39.1227390090001 + ], + [ + 46.722572614000114, + 39.02611829700015 + ], + [ + 46.65341956500009, + 38.934772819000045 + ] + ] + ], + [ + [ + [ + 47.94558348300012, + 45.63648243800003 + ], + [ + 47.90440352799999, + 45.607448363000174 + ], + [ + 47.92341653400018, + 45.46171523000015 + ], + [ + 48.043117488, + 45.451534235000054 + ], + [ + 48.04475346800001, + 45.60430548500017 + ], + [ + 47.94558348300012, + 45.63648243800003 + ] + ] + ], + [ + [ + [ + 53.76974455100009, + 12.615519710000171 + ], + [ + 53.646049620999975, + 12.702671889000158 + ], + [ + 53.547145510000064, + 12.713555957999972 + ], + [ + 53.39641961199999, + 12.655039042999988 + ], + [ + 53.39615256500019, + 12.570688598 + ], + [ + 53.305702610000026, + 12.53034331300006 + ], + [ + 53.4649616210001, + 12.441453564000028 + ], + [ + 53.54557759200014, + 12.339836231000106 + ], + [ + 53.751701499000035, + 12.299508213000081 + ], + [ + 54.03221546800006, + 12.349309795000067 + ], + [ + 54.13417847000011, + 12.34854184400001 + ], + [ + 54.26068150599997, + 12.44018454500008 + ], + [ + 54.40362950000002, + 12.465508621000026 + ], + [ + 54.466365531000065, + 12.543698367000161 + ], + [ + 54.085849590000066, + 12.70126389700016 + ], + [ + 53.845870505000164, + 12.60307342200008 + ], + [ + 53.76974455100009, + 12.615519710000171 + ] + ] + ], + [ + [ + [ + 53.919133062000014, + 24.210209134000024 + ], + [ + 53.86877102700009, + 24.26695635500016 + ], + [ + 53.834326993, + 24.255085304000147 + ], + [ + 53.826233092999985, + 24.229904287000068 + ], + [ + 53.80437956800006, + 24.202564896000126 + ], + [ + 53.7515893640001, + 24.237998185000095 + ], + [ + 53.721911737000084, + 24.227835846000062 + ], + [ + 53.71049034700013, + 24.220821134000175 + ], + [ + 53.69250390600007, + 24.20751116800011 + ], + [ + 53.68674824500016, + 24.20490313400012 + ], + [ + 53.66750275300012, + 24.190873710000176 + ], + [ + 53.6236158370001, + 24.170818828000108 + ], + [ + 53.63800499000007, + 24.150853879000124 + ], + [ + 53.65581156600007, + 24.152562591000105 + ], + [ + 53.732613669000045, + 24.129809743000123 + ], + [ + 53.83126929800005, + 24.150763947000144 + ], + [ + 53.90519357000005, + 24.14563781100003 + ], + [ + 53.951148926000144, + 24.203644083000142 + ], + [ + 53.919133062000014, + 24.210209134000024 + ] + ] + ], + [ + [ + [ + 53.813642586000185, + 24.2805361180001 + ], + [ + 53.81508150100012, + 24.264078524000126 + ], + [ + 53.857889230000126, + 24.28800049100016 + ], + [ + 53.85375234900005, + 24.287640762000137 + ], + [ + 53.82074723000005, + 24.27963679600009 + ], + [ + 53.813642586000185, + 24.2805361180001 + ] + ] + ], + [ + [ + [ + 53.33133617200019, + 24.297173576000034 + ], + [ + 53.33511332500018, + 24.30238964400013 + ], + [ + 53.24832874800006, + 24.29528499900016 + ], + [ + 53.23465905200004, + 24.293036694000023 + ], + [ + 53.23205101800005, + 24.282604559000106 + ], + [ + 53.22890339200006, + 24.283234084000014 + ], + [ + 53.30624508700009, + 24.291597779000085 + ], + [ + 53.3050759680001, + 24.29438567699998 + ], + [ + 53.31128129100006, + 24.29402594900006 + ], + [ + 53.31568796900012, + 24.28062605000008 + ], + [ + 53.33187576500018, + 24.296454118000156 + ], + [ + 53.33133617200019, + 24.297173576000034 + ] + ] + ], + [ + [ + [ + 52.64047697600017, + 24.30167018600008 + ], + [ + 52.64542324800016, + 24.327390796000145 + ], + [ + 52.60738192500003, + 24.265157710999972 + ], + [ + 52.64047697600017, + 24.30167018600008 + ] + ] + ], + [ + [ + [ + 53.78563516600008, + 16.875462908000088 + ], + [ + 53.980198160999976, + 16.911468506000062 + ], + [ + 54.026691978000144, + 16.985055816000113 + ], + [ + 54.24027710000013, + 17.026389567000138 + ], + [ + 54.40416666699997, + 17.03514200799998 + ], + [ + 54.628326416, + 17.028326416000084 + ], + [ + 54.729961818000106, + 16.95420906900017 + ], + [ + 54.89567871100013, + 16.962345379000112 + ], + [ + 55.07155761700017, + 17.0375 + ], + [ + 55.187626808000175, + 17.160513547000164 + ], + [ + 55.08553432400009, + 17.1339901770001 + ], + [ + 54.96299208199997, + 17.048924446000115 + ], + [ + 54.74884059200019, + 17.018586318000075 + ], + [ + 54.64295457700001, + 17.051898772000186 + ], + [ + 54.481151229000034, + 17.052493638000044 + ], + [ + 54.28425083000002, + 17.07331392100008 + ], + [ + 54.19442617700008, + 17.111385298000187 + ], + [ + 53.77921023200014, + 16.951366544999985 + ], + [ + 53.78563516600008, + 16.875462908000088 + ] + ] + ], + [ + [ + [ + 54.4050367640001, + 24.357338221000077 + ], + [ + 54.40440723800009, + 24.357068424000033 + ], + [ + 54.404856899000094, + 24.356528831000105 + ], + [ + 54.4050367640001, + 24.357338221000077 + ] + ] + ], + [ + [ + [ + 54.40440723800009, + 24.357068424000033 + ], + [ + 54.40368778000004, + 24.357787882000082 + ], + [ + 54.40368778000004, + 24.356888560000073 + ], + [ + 54.40440723800009, + 24.357068424000033 + ] + ] + ], + [ + [ + [ + 54.53274049400005, + 24.469573612000147 + ], + [ + 54.499195781000026, + 24.477487646000156 + ], + [ + 54.50630042500006, + 24.463098493000018 + ], + [ + 54.55144639200006, + 24.448979137000094 + ], + [ + 54.55540340900018, + 24.44933886600012 + ], + [ + 54.55990001900011, + 24.460220663000143 + ], + [ + 54.53274049400005, + 24.469573612000147 + ] + ] + ], + [ + [ + [ + 54.45234110299998, + 24.527579884000033 + ], + [ + 54.45557866200011, + 24.530187918000024 + ], + [ + 54.45234110299998, + 24.531626833000132 + ], + [ + 54.45234110299998, + 24.527579884000033 + ] + ] + ], + [ + [ + [ + 54.51421445900013, + 24.51858666300018 + ], + [ + 54.51016751000003, + 24.530367782000155 + ], + [ + 54.463402764000136, + 24.537652291000086 + ], + [ + 54.48561601800009, + 24.527310087000046 + ], + [ + 54.4862455440001, + 24.52569130800009 + ], + [ + 54.48678513700008, + 24.52488191800012 + ], + [ + 54.499195781000026, + 24.503298189000134 + ], + [ + 54.50261320499999, + 24.502578731000085 + ], + [ + 54.50378232400004, + 24.521104765000132 + ], + [ + 54.51421445900013, + 24.51858666300018 + ] + ] + ], + [ + [ + [ + 54.48885357800009, + 24.54295829100016 + ], + [ + 54.491011951000075, + 24.546555579000085 + ], + [ + 54.49047235699999, + 24.546375715000124 + ], + [ + 54.48885357800009, + 24.54295829100016 + ] + ] + ], + [ + [ + [ + 54.52006005300012, + 24.5249718500001 + ], + [ + 54.53480893400018, + 24.53297581600009 + ], + [ + 54.529772731000094, + 24.547994494000022 + ], + [ + 54.53058212100012, + 24.54448713800008 + ], + [ + 54.51439432400019, + 24.53261608700012 + ], + [ + 54.51511378100014, + 24.529018799000028 + ], + [ + 54.52006005300012, + 24.5249718500001 + ] + ] + ], + [ + [ + [ + 54.44091971500018, + 24.54106971500005 + ], + [ + 54.44262842500018, + 24.539990527999976 + ], + [ + 54.44172910300017, + 24.54106971500005 + ], + [ + 54.44091971500018, + 24.54106971500005 + ] + ] + ], + [ + [ + [ + 54.50099442499999, + 24.547185105000096 + ], + [ + 54.502523273, + 24.545026732000167 + ], + [ + 54.50405212000015, + 24.546645511000065 + ], + [ + 54.50099442499999, + 24.547185105000096 + ] + ] + ], + [ + [ + [ + 54.54694978200018, + 24.61733222400011 + ], + [ + 54.54667998500014, + 24.616612766000117 + ], + [ + 54.532290833000104, + 24.610857105000036 + ], + [ + 54.539755206000166, + 24.61265574900017 + ], + [ + 54.54694978200018, + 24.61733222400011 + ] + ] + ], + [ + [ + [ + 54.608193613000026, + 24.64781924100015 + ], + [ + 54.60891307100019, + 24.647999106000157 + ], + [ + 54.59353466400012, + 24.633699885 + ], + [ + 54.605495647000055, + 24.630911987000104 + ], + [ + 54.608193613000026, + 24.64781924100015 + ] + ] + ], + [ + [ + [ + 55.824166952000155, + 17.90749043800008 + ], + [ + 55.7100429840001, + 17.897507964000113 + ], + [ + 55.67667813700018, + 17.96162962600016 + ], + [ + 55.49168759200006, + 17.88833487900007 + ], + [ + 55.42261965900019, + 17.812522030000082 + ], + [ + 55.50573120100006, + 17.86093546500007 + ], + [ + 55.654166667000084, + 17.895363363000058 + ], + [ + 55.824166952000155, + 17.90749043800008 + ] + ] + ], + [ + [ + [ + 56.14081824400017, + 17.933300981 + ], + [ + 56.244317627000044, + 17.94431762700009 + ], + [ + 56.353417976, + 17.920710472000053 + ], + [ + 56.24837716100018, + 17.96495711700004 + ], + [ + 56.14081824400017, + 17.933300981 + ] + ] + ], + [ + [ + [ + 58.667103804000135, + 20.174591384000053 + ], + [ + 58.781587500000114, + 20.276754369000173 + ], + [ + 58.825294552000116, + 20.420825761000117 + ], + [ + 58.94580370600005, + 20.493311117000076 + ], + [ + 58.93975769200006, + 20.571400535000066 + ], + [ + 58.85973858600005, + 20.629198679000183 + ], + [ + 58.78968140000012, + 20.535309457000096 + ], + [ + 58.772504348000155, + 20.445826913000133 + ], + [ + 58.68751841400007, + 20.415249964000168 + ], + [ + 58.6305913290002, + 20.33745860700003 + ], + [ + 58.624206142000105, + 20.224144029000172 + ], + [ + 58.667103804000135, + 20.174591384000053 + ] + ] + ], + [ + [ + [ + 59.23475587899998, + 22.8441389460001 + ], + [ + 59.19671455700018, + 22.93595972700018 + ], + [ + 59.05678004600014, + 23.057548067000027 + ], + [ + 59.16415909900019, + 22.951697863000106 + ], + [ + 59.23475587899998, + 22.8441389460001 + ] + ] + ], + [ + [ + [ + 58.97817930000008, + 23.177517627999976 + ], + [ + 58.90245638300007, + 23.28579600300003 + ], + [ + 58.861627162, + 23.206655663000106 + ], + [ + 58.90668319700018, + 23.16330834000007 + ], + [ + 58.97817930000008, + 23.177517627999976 + ] + ] + ], + [ + [ + [ + 58.64084359999998, + 23.554693295000163 + ], + [ + 58.63176044700009, + 23.523396887000104 + ], + [ + 58.76333126300011, + 23.491650819000085 + ], + [ + 58.64084359999998, + 23.554693295000163 + ] + ] + ], + [ + [ + [ + 58.59830566700015, + 23.585809838000046 + ], + [ + 58.468083835000016, + 23.620793465000077 + ], + [ + 58.31416625999998, + 23.60583292600012 + ], + [ + 58.19583333300011, + 23.68194478400011 + ], + [ + 58.095833333000144, + 23.71583353699998 + ], + [ + 57.862500000000125, + 23.714166260000184 + ], + [ + 57.77083333300004, + 23.768055216000107 + ], + [ + 57.55416666700012, + 23.791666667000186 + ], + [ + 57.4860241610001, + 23.827187874000174 + ], + [ + 57.14578654000019, + 23.95421346000012 + ], + [ + 56.94802653000016, + 24.098026531000073 + ], + [ + 56.730603027000086, + 24.372269694000124 + ], + [ + 56.720916748000036, + 24.404083253000124 + ], + [ + 56.57151692700006, + 24.52984924300017 + ], + [ + 56.52091878300007, + 24.64574788400006 + ], + [ + 56.45452270500016, + 24.712856038000098 + ], + [ + 56.46257120700011, + 24.779136149000067 + ], + [ + 56.404789225000115, + 24.863121541000112 + ], + [ + 56.359266343000115, + 25.012752885000168 + ], + [ + 56.357857717000115, + 25.189837333000128 + ], + [ + 56.38073967200006, + 25.326025873000106 + ], + [ + 56.356900113999984, + 25.373834037000165 + ], + [ + 56.357914586000106, + 25.54714128800009 + ], + [ + 56.353015258000084, + 25.565890175 + ], + [ + 56.307462619000034, + 25.38166603100018 + ], + [ + 56.33830936500004, + 25.365028573000075 + ], + [ + 56.32562892500016, + 25.21915853700017 + ], + [ + 56.26168712700013, + 25.144964469000058 + ], + [ + 56.32311082299998, + 24.944955246000063 + ], + [ + 56.31070018000014, + 24.83245005800012 + ], + [ + 56.484269333999976, + 24.486930528000073 + ], + [ + 56.51835363900011, + 24.368309951000185 + ], + [ + 56.583374623000054, + 24.28080591400004 + ], + [ + 56.74831028600016, + 24.15004448900015 + ], + [ + 56.7707933370001, + 24.060831742 + ], + [ + 56.877542865, + 23.992483267000125 + ], + [ + 56.9791662560001, + 23.894187367000143 + ], + [ + 57.198331038000106, + 23.769990992000032 + ], + [ + 57.41416832900006, + 23.654158313000096 + ], + [ + 57.51417294100003, + 23.641657737000173 + ], + [ + 57.65662555300008, + 23.570791159 + ], + [ + 57.799977487000035, + 23.572499871 + ], + [ + 57.908345795000116, + 23.54084373500018 + ], + [ + 58.067525795999984, + 23.581672957000137 + ], + [ + 58.19415034000019, + 23.54830810800007 + ], + [ + 58.28830935800005, + 23.559189905000096 + ], + [ + 58.355039053999974, + 23.508378210000103 + ], + [ + 58.458371157000045, + 23.587518549000094 + ], + [ + 58.59830566700015, + 23.585809838000046 + ] + ] + ], + [ + [ + [ + 56.05914637300015, + 25.9017862500001 + ], + [ + 56.09618173100006, + 26.080159081000147 + ], + [ + 56.04423105600017, + 25.941583937000075 + ], + [ + 56.05914637300015, + 25.9017862500001 + ] + ] + ], + [ + [ + [ + 56.216659634000166, + 26.92632003300008 + ], + [ + 56.22054263400008, + 26.998819975000174 + ], + [ + 55.99943557200015, + 26.95576498800017 + ], + [ + 55.88333162800018, + 26.89993145400007 + ], + [ + 55.781104596000034, + 26.946873130000085 + ], + [ + 55.76998851600007, + 26.791050197000118 + ], + [ + 55.67582655100006, + 26.770497100000114 + ], + [ + 55.56276657900008, + 26.709384811000177 + ], + [ + 55.27499354700012, + 26.64911138400015 + ], + [ + 55.32749158600018, + 26.544395094000038 + ], + [ + 55.50138858399998, + 26.590504949000035 + ], + [ + 55.67499556900009, + 26.679665097000168 + ], + [ + 55.77721354900001, + 26.686886609999988 + ], + [ + 55.87832662600016, + 26.73465977 + ], + [ + 55.951660568000136, + 26.687443838000092 + ], + [ + 56.09027059200008, + 26.786884223000186 + ], + [ + 56.216659634000166, + 26.92632003300008 + ] + ] + ], + [ + [ + [ + 55.688323633000095, + 26.806883444000164 + ], + [ + 55.73499256100001, + 26.83632420900011 + ], + [ + 55.68859856000017, + 26.92742996400017 + ], + [ + 55.626380531, + 26.83132725300004 + ], + [ + 55.688323633000095, + 26.806883444000164 + ] + ] + ], + [ + [ + [ + 58.90521962000014, + 44.45782005000012 + ], + [ + 58.96847549700004, + 44.565490123000075 + ], + [ + 59.06341161400013, + 44.604887917999974 + ], + [ + 59.036804604000054, + 44.700739842000075 + ], + [ + 59.10032249900013, + 44.79862873600018 + ], + [ + 58.95633347199998, + 44.8013298890001 + ], + [ + 58.99195052500011, + 44.73516783900004 + ], + [ + 58.839099480000186, + 44.57418785600004 + ], + [ + 58.90521962000014, + 44.45782005000012 + ] + ] + ], + [ + [ + [ + 59.25983447500005, + 45.453628202000175 + ], + [ + 59.23650763800009, + 45.52600828300007 + ], + [ + 59.33335147700012, + 45.613929418000055 + ], + [ + 59.17845155900005, + 45.662586534000184 + ], + [ + 59.08810051000006, + 45.57069019700009 + ], + [ + 58.96348960600005, + 45.56573045800013 + ], + [ + 58.906467518, + 45.415428181000095 + ], + [ + 58.95989963599999, + 45.37548791000006 + ], + [ + 58.88238949500004, + 45.30248991500008 + ], + [ + 58.88673752400001, + 45.15811884100003 + ], + [ + 58.98019457100014, + 45.092017811 + ], + [ + 58.99102063700008, + 44.98263883600009 + ], + [ + 58.91173152100009, + 44.95141892900017 + ], + [ + 58.96333353400007, + 44.869719681000106 + ], + [ + 59.18399048900005, + 44.965689958000155 + ], + [ + 59.17290860700007, + 45.06508977400017 + ], + [ + 59.25371954100018, + 45.0722499310001 + ], + [ + 59.32934962100012, + 44.93084973900005 + ], + [ + 59.437412637000136, + 45.06657387400003 + ], + [ + 59.46007160400012, + 45.19024986100004 + ], + [ + 59.440368599000124, + 45.3244391020001 + ], + [ + 59.31211056100017, + 45.289080881000075 + ], + [ + 59.25983447500005, + 45.453628202000175 + ] + ] + ], + [ + [ + [ + 59.8582805690001, + 45.582000402 + ], + [ + 60.24813462100008, + 45.71300468700014 + ], + [ + 60.08739050500003, + 45.757800595 + ], + [ + 59.79573061700012, + 45.72317847400018 + ], + [ + 59.779350534000116, + 45.60092120700011 + ], + [ + 59.8582805690001, + 45.582000402 + ] + ] + ], + [ + [ + [ + 113.81855455600032, + -26.268409032999898 + ], + [ + 113.87840271900018, + -26.218109051999875 + ], + [ + 113.9157791340001, + -26.334589008999956 + ], + [ + 113.96569068500003, + -26.372762709999904 + ], + [ + 114.02602379200005, + -26.491256668999824 + ], + [ + 114.0836029410001, + -26.506048214999964 + ], + [ + 114.13543696500017, + -26.590347360999942 + ], + [ + 114.19926448800027, + -26.597902305999924 + ], + [ + 114.26884467700006, + -26.74070546099989 + ], + [ + 114.37615969200021, + -26.646747511999934 + ], + [ + 114.48455044100012, + -26.745767627999953 + ], + [ + 114.66642768100007, + -26.553218883999932 + ], + [ + 114.7290572620002, + -26.612203509999972 + ], + [ + 114.70713037100006, + -26.703630459999886 + ], + [ + 114.65457164700001, + -26.710357606999878 + ], + [ + 114.52565009700004, + -26.863054257999977 + ], + [ + 114.56906131500011, + -26.90903285299993 + ], + [ + 114.6649551490001, + -26.913070750999907 + ], + [ + 114.67826846100013, + -26.775199841999893 + ], + [ + 114.86862181700019, + -26.63623811399998 + ], + [ + 114.8976211910001, + -26.52432629499998 + ], + [ + 114.9550018560002, + -26.485010139999815 + ], + [ + 115.07688897800006, + -26.53042027399988 + ], + [ + 115.23945615700029, + -26.712932527999953 + ], + [ + 115.39295193800012, + -26.760417853999968 + ], + [ + 115.40568539100002, + -26.87237744899994 + ], + [ + 115.34996031900005, + -27.141332605999878 + ], + [ + 115.29364013300017, + -27.253089861999968 + ], + [ + 115.42361445000029, + -27.344964907999838 + ], + [ + 115.56908422400011, + -27.500040007999928 + ], + [ + 115.7890778340003, + -27.52440267999998 + ], + [ + 115.97065734900013, + -27.671665175999976 + ], + [ + 116.14886482500003, + -27.726276459999895 + ], + [ + 116.2720642170002, + -27.818662634999953 + ], + [ + 116.4625548690002, + -28.04687688099989 + ], + [ + 116.57208253900012, + -28.069398886999977 + ], + [ + 116.62958524500027, + -28.110776822999867 + ], + [ + 116.8328552810002, + -28.00154872099995 + ], + [ + 116.97604366900009, + -28.142198564999944 + ], + [ + 117.02073664700015, + -28.08901974899993 + ], + [ + 117.09548193400008, + -28.13242543399997 + ], + [ + 117.34691623100002, + -28.142616151999903 + ], + [ + 117.38877864000006, + -28.247058856999956 + ], + [ + 117.32261659000017, + -28.34953114299998 + ], + [ + 117.22636417800015, + -28.396760988999972 + ], + [ + 117.28690331300015, + -28.53654095899992 + ], + [ + 117.4148406600001, + -28.71356960399993 + ], + [ + 117.35202030700009, + -28.796478192999814 + ], + [ + 117.43293014800008, + -29.009630158999983 + ], + [ + 117.68672948200003, + -29.11109544399983 + ], + [ + 117.69107063800004, + -29.211479127999894 + ], + [ + 117.66521447800005, + -29.384843875999877 + ], + [ + 117.80599960600011, + -29.320396427999924 + ], + [ + 118.05692294200003, + -29.409585912999887 + ], + [ + 118.14575200400009, + -29.36184125099993 + ], + [ + 118.3163299370002, + -29.353355411999928 + ], + [ + 118.3534927820001, + -29.424217194999983 + ], + [ + 118.47242729400011, + -29.397384711999962 + ], + [ + 118.58007808800005, + -29.429801889999965 + ], + [ + 118.64430995300017, + -29.34321967999989 + ], + [ + 118.6375122300002, + -29.26978297699992 + ], + [ + 118.76628122900013, + -29.279262572999926 + ], + [ + 118.87185666400012, + -29.18347166899997 + ], + [ + 118.91584019800007, + -29.35326002699992 + ], + [ + 119.02716830100007, + -29.34140583599992 + ], + [ + 119.15276340900016, + -29.37062649199993 + ], + [ + 119.13504792100002, + -29.44643024499993 + ], + [ + 119.01840217100005, + -29.445657767999933 + ], + [ + 119.04685973800031, + -29.518102557999953 + ], + [ + 119.18103020400008, + -29.50518218899998 + ], + [ + 119.219383278, + -29.59956174799993 + ], + [ + 119.17647547800004, + -29.699136746999898 + ], + [ + 119.212539622, + -29.731308 + ], + [ + 119.56152351300034, + -29.81465915399997 + ], + [ + 119.6444626120001, + -29.847734478999882 + ], + [ + 119.81278229300017, + -29.8596535449999 + ], + [ + 119.83940120600005, + -29.810274077999964 + ], + [ + 119.9544981480002, + -29.94171137199993 + ], + [ + 120.10745245800001, + -29.926609025999937 + ], + [ + 120.14043424100021, + -29.87693786899996 + ], + [ + 120.28588104800008, + -29.896942117999913 + ], + [ + 120.34700758600013, + -29.951198512999895 + ], + [ + 120.45130913900005, + -29.934412074999955 + ], + [ + 120.4917374050001, + -29.87996474199997 + ], + [ + 120.56882476300007, + -29.96321682099989 + ], + [ + 120.66439052900012, + -30.014467297999943 + ], + [ + 120.67732246400021, + -30.102073608999945 + ], + [ + 120.86598971800015, + -30.12488562799996 + ], + [ + 120.86219020100009, + -30.16885189599992 + ], + [ + 120.99051663500006, + -30.207084606999956 + ], + [ + 121.21632393400012, + -30.433593804999873 + ], + [ + 121.5075149390002, + -30.62094694299992 + ], + [ + 121.50923926400014, + -30.67924492399993 + ], + [ + 121.61434179200023, + -30.683193134999897 + ], + [ + 121.77333073700015, + -30.744830969999953 + ], + [ + 121.86804959600022, + -30.72859002599995 + ], + [ + 121.98367308800016, + -30.622102807999966 + ], + [ + 122.08435064200023, + -30.566566496999883 + ], + [ + 122.14329537000015, + -30.60843460599989 + ], + [ + 122.34918207000021, + -30.627424309999924 + ], + [ + 122.43206031700004, + -30.69142332699994 + ], + [ + 122.529449483, + -30.65307997499997 + ], + [ + 122.63020331100017, + -30.658515974999943 + ], + [ + 122.73309318500026, + -30.70335764799995 + ], + [ + 122.8175432060001, + -30.70359619699991 + ], + [ + 122.85438535900016, + -30.651065803999984 + ], + [ + 123.05911250500003, + -30.66147981599994 + ], + [ + 123.38029479800002, + -30.59767525999996 + ], + [ + 123.4640655500001, + -30.652181602999974 + ], + [ + 123.53197472300019, + -30.61579509099988 + ], + [ + 123.67565160800007, + -30.61360355899984 + ], + [ + 123.74999992700009, + -30.6428012479999 + ], + [ + 123.8755113840001, + -30.587543550999953 + ], + [ + 124.01853179800003, + -30.572397283999976 + ], + [ + 124.1065292080001, + -30.748792591999973 + ], + [ + 124.19471739100015, + -30.74987033799988 + ], + [ + 124.26080316600007, + -30.680538252999895 + ], + [ + 124.33007808600007, + -30.779476225999872 + ], + [ + 124.2527999570002, + -30.80699535499997 + ], + [ + 124.14590454000017, + -30.970808085999977 + ], + [ + 124.27675627500025, + -31.15129091299997 + ], + [ + 124.23013311100021, + -31.243341476999944 + ], + [ + 124.13694763800004, + -31.23760993199994 + ], + [ + 123.9926833500001, + -31.378759336999906 + ], + [ + 124.04493714000012, + -31.449434203999942 + ], + [ + 124.06889345800005, + -31.564859379999916 + ], + [ + 123.93889617500008, + -31.675264299999867 + ], + [ + 123.93827826100016, + -31.725570638999955 + ], + [ + 123.8217010750003, + -31.74355132999989 + ], + [ + 123.74591827700021, + -31.815975163999894 + ], + [ + 123.78411109000001, + -31.8701190729999 + ], + [ + 123.89556877600012, + -31.89827338399988 + ], + [ + 123.94209286500029, + -31.980886427999906 + ], + [ + 123.83213050900008, + -32.054054239999914 + ], + [ + 123.92553709800029, + -32.08057022299988 + ], + [ + 123.92029572500019, + -32.14929964999993 + ], + [ + 123.81340785200007, + -32.211418100999936 + ], + [ + 123.80481724000003, + -32.27743531199991 + ], + [ + 123.71234892200005, + -32.267807019999964 + ], + [ + 123.68904874000009, + -32.33172607199998 + ], + [ + 123.71459963100006, + -32.422981192999885 + ], + [ + 123.79454806700005, + -32.52151867999987 + ], + [ + 123.98731993800004, + -32.50738528199997 + ], + [ + 124.23799902600024, + -32.556064525999886 + ], + [ + 124.42271421100031, + -32.5677643219999 + ], + [ + 124.56400292400008, + -32.45378116799992 + ], + [ + 124.64624029000015, + -32.47121804099993 + ], + [ + 124.8295059090002, + -32.42313005699998 + ], + [ + 124.95584868300011, + -32.318046638999874 + ], + [ + 125.07144166600017, + -32.28804009599992 + ], + [ + 125.2471008760001, + -32.30225379199993 + ], + [ + 125.2929230640002, + -32.227157638999984 + ], + [ + 125.35961920800003, + -32.2499656359999 + ], + [ + 125.51330559400003, + -32.19358442999982 + ], + [ + 125.64908605500011, + -32.19348535499995 + ], + [ + 125.68963619500005, + -32.088234131999855 + ], + [ + 125.87519074400018, + -32.10292056799989 + ], + [ + 125.96624000400004, + -32.017471255999965 + ], + [ + 126.04159549400003, + -32.03070443699994 + ], + [ + 126.2193604050002, + -31.960933474999933 + ], + [ + 126.5677719800002, + -31.936378521999984 + ], + [ + 126.90020748100028, + -31.774185174999957 + ], + [ + 127.05899056700014, + -31.77646438299996 + ], + [ + 127.12101748900022, + -31.747667348999926 + ], + [ + 127.29277039600015, + -31.76690096599998 + ], + [ + 127.43199162800022, + -31.7595996579999 + ], + [ + 127.67472098200005, + -31.6944923879999 + ], + [ + 127.8238219650002, + -31.697681365999983 + ], + [ + 127.89526360800005, + -31.66168209799997 + ], + [ + 128.00163264200012, + -31.689863229999958 + ], + [ + 128.29635628200003, + -31.64830977699995 + ], + [ + 128.34515387900012, + -31.698743855999965 + ], + [ + 128.47508243100015, + -31.651792457999875 + ], + [ + 128.70007316400017, + -31.623699167999973 + ], + [ + 128.99732042900007, + -31.560631549999982 + ], + [ + 129.31591788000003, + -31.548740242999884 + ], + [ + 129.43765078700005, + -31.63658566999993 + ], + [ + 129.84236000400006, + -31.608099994999975 + ], + [ + 129.93724000400005, + -31.588589994999893 + ], + [ + 130.27439000400022, + -31.573609994999913 + ], + [ + 130.56106000400007, + -31.58568999499994 + ], + [ + 130.79251000400006, + -31.607279994999942 + ], + [ + 131.0263700040001, + -31.537689995999983 + ], + [ + 131.13043000400023, + -31.464679995999973 + ], + [ + 131.20824000400023, + -31.479429995999965 + ], + [ + 131.4221500040003, + -31.563929995999956 + ], + [ + 131.7277400040001, + -31.703699995999955 + ], + [ + 132.09202759700008, + -31.933260996999934 + ], + [ + 132.12979161600015, + -31.83550675999993 + ], + [ + 132.1130829750001, + -31.759505975999957 + ], + [ + 132.19587731500008, + -31.75330566899987 + ], + [ + 132.279281566, + -31.864204666999967 + ], + [ + 132.35237141000027, + -31.829402919999893 + ], + [ + 132.48156752400007, + -31.85290150999998 + ], + [ + 132.6560672600002, + -31.809299558999953 + ], + [ + 132.85276778000014, + -31.829498433999902 + ], + [ + 132.90617409000015, + -31.78209878799987 + ], + [ + 133.09597807900002, + -31.779396 + ], + [ + 133.16906742000015, + -31.83979416199992 + ], + [ + 133.2589720530001, + -31.860195464999947 + ], + [ + 133.30886809400022, + -31.794992327999978 + ], + [ + 133.67807037600016, + -31.87869052699989 + ], + [ + 133.8092651940001, + -31.87218645799993 + ], + [ + 133.8283687720001, + -31.96488771399993 + ], + [ + 133.93936168900007, + -31.973686235999935 + ], + [ + 134.03805561700028, + -32.01388572299993 + ], + [ + 134.13815271600004, + -31.984285297999918 + ], + [ + 134.22375451400023, + -32.07608444399989 + ], + [ + 134.39976465700022, + -32.12878384099986 + ], + [ + 134.44325269100023, + -32.19018522999994 + ], + [ + 134.61465481900018, + -32.26568241199993 + ], + [ + 134.70515452100005, + -32.262080941999955 + ], + [ + 134.9792825850002, + -32.428815852999946 + ], + [ + 135.08375414900001, + -32.50920053899995 + ], + [ + 135.17959539000003, + -32.64485699499994 + ], + [ + 135.2620582950002, + -32.57542158399997 + ], + [ + 135.58661731800032, + -32.78852223699994 + ], + [ + 135.72956410200015, + -32.81551756199997 + ], + [ + 135.90952880300006, + -32.80936870399995 + ], + [ + 135.97763793800004, + -32.85172884899998 + ], + [ + 136.16477945600002, + -32.84626124999994 + ], + [ + 136.26122297600023, + -32.82119353699994 + ], + [ + 136.3951831290001, + -32.82916139899987 + ], + [ + 136.55234057000018, + -33.023103123999874 + ], + [ + 136.67860628900007, + -33.06603849499993 + ], + [ + 136.71483074200012, + -33.03177522699997 + ], + [ + 136.80714718700006, + -33.10669654399993 + ], + [ + 136.90873001100022, + -33.111525790999906 + ], + [ + 136.97026480700004, + -33.150260748999926 + ], + [ + 137.06465786800015, + -33.12916317799994 + ], + [ + 137.11154189400008, + -33.289859608999905 + ], + [ + 137.37924687400005, + -33.356802850999884 + ], + [ + 137.44526000200005, + -33.15067999699983 + ], + [ + 137.53973000200006, + -33.09107999699995 + ], + [ + 137.61909000200035, + -32.96163999699996 + ], + [ + 137.7824200020002, + -32.992669996999894 + ], + [ + 137.80977000200005, + -32.749219996999955 + ], + [ + 137.75271000200007, + -32.71070999699998 + ], + [ + 137.76480000200013, + -32.5966399969999 + ], + [ + 137.84912000200018, + -32.642029996999895 + ], + [ + 137.8466300020002, + -32.70083999699989 + ], + [ + 137.92091134400005, + -32.74509669099996 + ], + [ + 137.98123174200032, + -32.59534809999997 + ], + [ + 137.83906122000008, + -32.49917460099988 + ], + [ + 137.85766944900013, + -32.24656881799996 + ], + [ + 137.83252966200007, + -32.187093638999954 + ], + [ + 137.90456520400028, + -32.049948342999926 + ], + [ + 138.01018100700014, + -31.97243900999996 + ], + [ + 138.06198186200004, + -31.982431068999972 + ], + [ + 138.09258090000014, + -31.863295214999937 + ], + [ + 138.29363712600002, + -31.626464720999934 + ], + [ + 138.2048996860001, + -31.485865829999966 + ], + [ + 138.3238676630001, + -31.43044277599995 + ], + [ + 138.2960968110001, + -31.389656463999984 + ], + [ + 138.35409056100002, + -31.24086587699992 + ], + [ + 138.30451075800022, + -31.076729977999946 + ], + [ + 138.17302118000032, + -30.98960191799995 + ], + [ + 138.12092132800012, + -30.735569101999943 + ], + [ + 138.17341944700001, + -30.712491238999917 + ], + [ + 138.19863995100002, + -30.490450818999932 + ], + [ + 138.1591107700001, + -30.36069736299993 + ], + [ + 138.25668334700003, + -30.363898126999914 + ], + [ + 138.38082322900016, + -30.472703725999963 + ], + [ + 138.39859880400002, + -30.38801577399994 + ], + [ + 138.5110480290001, + -30.401437738999903 + ], + [ + 138.53290010100022, + -30.32607557599988 + ], + [ + 138.47300385100004, + -30.17086582299993 + ], + [ + 138.57651300200018, + -30.113320717999898 + ], + [ + 138.6730123250003, + -30.10288153199997 + ], + [ + 138.73163992000002, + -30.150557380999942 + ], + [ + 138.88233767700012, + -29.962138896999875 + ], + [ + 138.96604288100025, + -30.056702035999933 + ], + [ + 139.085059354, + -30.07381780599991 + ], + [ + 139.17016776000014, + -30.01045069099996 + ], + [ + 139.15602384600015, + -29.935385836999956 + ], + [ + 139.19729519800023, + -29.856414204999965 + ], + [ + 139.30463777400018, + -29.85556804999993 + ], + [ + 139.3499301410002, + -29.81159917799988 + ], + [ + 139.5389091730002, + -29.75780739499993 + ], + [ + 139.5367430760001, + -29.83005656699993 + ], + [ + 139.6829307060002, + -29.858829836999973 + ], + [ + 139.73488997200002, + -29.916618315999983 + ], + [ + 139.67766585200013, + -30.02375270999994 + ], + [ + 139.51764189500022, + -30.124922519999984 + ], + [ + 139.49929233700004, + -30.194844079999882 + ], + [ + 139.5366353400001, + -30.260884791999956 + ], + [ + 139.48761877400023, + -30.35129842399988 + ], + [ + 139.49724298500007, + -30.416975299999933 + ], + [ + 139.42739002000008, + -30.45364127099998 + ], + [ + 139.3076060110002, + -30.648107491999838 + ], + [ + 139.4058480010002, + -30.78992500299995 + ], + [ + 139.420952155, + -30.865857063999897 + ], + [ + 139.24753210400002, + -31.019757779999964 + ], + [ + 139.2133095160001, + -31.121878917999936 + ], + [ + 139.24444970500008, + -31.199184705999926 + ], + [ + 139.33426766500008, + -31.241759497999965 + ], + [ + 139.31509434400027, + -31.304917831999944 + ], + [ + 139.37097845200014, + -31.35660091999989 + ], + [ + 139.35558975900005, + -31.417939558999933 + ], + [ + 139.25553182500028, + -31.491140775999895 + ], + [ + 139.24723749300006, + -31.58865394999998 + ], + [ + 139.27793488600003, + -31.672982283999943 + ], + [ + 139.13782726500006, + -31.782343784999966 + ], + [ + 139.3508777420002, + -31.800318874999903 + ], + [ + 139.29626749800002, + -31.891862037999942 + ], + [ + 139.3166448100003, + -31.962897941999927 + ], + [ + 139.4621861620002, + -31.928753850999954 + ], + [ + 139.61614470200016, + -31.967596008999976 + ], + [ + 139.73925440000016, + -32.06912256299995 + ], + [ + 139.84713376700017, + -32.04798536699997 + ], + [ + 140.0119593490001, + -32.11922749099989 + ], + [ + 139.972436506, + -32.179218749999905 + ], + [ + 140.11465972100007, + -32.23904833499989 + ], + [ + 140.1373522470002, + -32.15038330599998 + ], + [ + 140.23309026700008, + -32.22175257799995 + ], + [ + 140.30831029800026, + -32.17264251699993 + ], + [ + 140.34811092400003, + -32.22841531399996 + ], + [ + 140.48756771900014, + -32.17373900999996 + ], + [ + 140.5618106820001, + -32.22070371099994 + ], + [ + 140.65597908900008, + -32.19478795899994 + ], + [ + 140.66486960100008, + -32.30754326999988 + ], + [ + 140.61137003700003, + -32.31615892899998 + ], + [ + 140.59802165800022, + -32.432499065999934 + ], + [ + 140.55985300200018, + -32.50296108799989 + ], + [ + 140.6036459170001, + -32.59317134199995 + ], + [ + 140.76559828600023, + -32.583583198999975 + ], + [ + 141.15648641100006, + -32.672144510999885 + ], + [ + 141.1860887370001, + -32.78147369699991 + ], + [ + 141.3781661690001, + -32.80986676899994 + ], + [ + 141.43614922600023, + -32.68181088199998 + ], + [ + 141.52501618300016, + -32.66894398599993 + ], + [ + 141.61371567800006, + -32.72385271499991 + ], + [ + 141.700309585, + -32.65767919099994 + ], + [ + 141.82611845300005, + -32.63571394999991 + ], + [ + 141.82859024200002, + -32.47343310699995 + ], + [ + 141.94136803800006, + -32.468218100999934 + ], + [ + 141.98427585700017, + -32.47800661899993 + ], + [ + 142.18148092800016, + -32.326719195999885 + ], + [ + 142.37389423600007, + -32.24207465599994 + ], + [ + 142.4030079810001, + -32.165528991999906 + ], + [ + 142.59481100500022, + -32.19164439399998 + ], + [ + 142.65064280200022, + -32.14211833799993 + ], + [ + 142.76242870500005, + -32.12709575899987 + ], + [ + 142.82263976500008, + -32.05747023599997 + ], + [ + 142.93718754400004, + -32.01834289499993 + ], + [ + 142.97786706000022, + -31.91384516499994 + ], + [ + 142.9820479770002, + -31.8142018289999 + ], + [ + 143.03528589600035, + -31.772993628999984 + ], + [ + 142.94290946200022, + -31.62957993099991 + ], + [ + 142.98490160400013, + -31.567574186999934 + ], + [ + 143.13477338000018, + -31.45645193199988 + ], + [ + 143.13477374600006, + -31.348570610999843 + ], + [ + 143.27060744400012, + -31.279193608999947 + ], + [ + 143.22715057300013, + -31.218079882999973 + ], + [ + 143.33385466500033, + -31.18661640499988 + ], + [ + 143.29886667400012, + -31.105029811999884 + ], + [ + 143.10108337600013, + -31.04085532299996 + ], + [ + 143.01682435200019, + -31.067017756999974 + ], + [ + 142.90186440100013, + -31.152268207999896 + ], + [ + 142.82285415, + -31.106614143999877 + ], + [ + 142.8485348500003, + -31.035998094999968 + ], + [ + 142.78101448500001, + -30.94741510399996 + ], + [ + 142.71845314400025, + -30.922810103999893 + ], + [ + 142.67147084400017, + -30.79396017099998 + ], + [ + 142.70452179100016, + -30.745133746999954 + ], + [ + 142.66098761100022, + -30.58130799099996 + ], + [ + 142.4861226080002, + -30.539227205999907 + ], + [ + 142.44120076000002, + -30.572418970999877 + ], + [ + 142.33913496700006, + -30.567295884999908 + ], + [ + 142.17542204400013, + -30.337346271999934 + ], + [ + 142.43277650100026, + -30.240116514999954 + ], + [ + 142.54650019400003, + -30.289593406999984 + ], + [ + 142.60941998200008, + -30.38617874499994 + ], + [ + 142.70790735500032, + -30.32070278599997 + ], + [ + 142.85373578500014, + -30.445193209999957 + ], + [ + 142.82930695200014, + -30.536174537999955 + ], + [ + 142.8823928190002, + -30.636841619999927 + ], + [ + 142.96746056200016, + -30.60988508699984 + ], + [ + 142.98853235900003, + -30.525222927999835 + ], + [ + 142.87438075100022, + -30.403494380999973 + ], + [ + 142.82137137100017, + -30.267552467999906 + ], + [ + 142.68048691400008, + -30.21623834199994 + ], + [ + 142.66277121600012, + -30.162126642999908 + ], + [ + 142.74802149300012, + -30.053706485999953 + ], + [ + 142.7301228230001, + -29.894440196999938 + ], + [ + 142.81590747500002, + -29.888651508999885 + ], + [ + 142.85231472700002, + -29.840284639999936 + ], + [ + 143.05002263300014, + -29.847095816999968 + ], + [ + 143.06268688600017, + -29.75535190399995 + ], + [ + 143.22064470500004, + -29.582078191999926 + ], + [ + 143.3165146760001, + -29.365530529999944 + ], + [ + 143.33657914600008, + -29.19560830899991 + ], + [ + 143.51835725500018, + -29.187990122999906 + ], + [ + 143.6118940670002, + -29.13971473999993 + ], + [ + 143.68867363000004, + -29.149682445999872 + ], + [ + 143.70319833300005, + -28.901154103999943 + ], + [ + 143.79530212900022, + -28.79459258099996 + ], + [ + 143.7914142630002, + -28.66726636599998 + ], + [ + 143.72879525700023, + -28.64218281199993 + ], + [ + 143.6313063470002, + -28.685327247999965 + ], + [ + 143.50604711000005, + -28.543138772999953 + ], + [ + 143.51008267400005, + -28.463250127999856 + ], + [ + 143.39171890500006, + -28.45133364499992 + ], + [ + 143.33313005500008, + -28.581948047999845 + ], + [ + 143.23774024800014, + -28.56853525899993 + ], + [ + 143.30762220000008, + -28.39810886099997 + ], + [ + 143.35053179600004, + -28.22344118799998 + ], + [ + 143.4153674910001, + -28.215976809999916 + ], + [ + 143.52344057300013, + -28.149667790999956 + ], + [ + 143.55562148700017, + -28.063049833999912 + ], + [ + 143.73219803000006, + -28.080738528999973 + ], + [ + 143.80782653600022, + -27.99856298799989 + ], + [ + 143.70149123600015, + -27.958566622999967 + ], + [ + 143.53367333000006, + -27.818761967999933 + ], + [ + 143.419085794, + -27.635455393999962 + ], + [ + 143.46190833700007, + -27.45966932099998 + ], + [ + 143.541978706, + -27.338385855999945 + ], + [ + 143.46674318400005, + -27.251996951999956 + ], + [ + 143.3219046910001, + -27.206662357999903 + ], + [ + 143.25834470200016, + -27.08274525099995 + ], + [ + 143.0285272210001, + -27.064100120999967 + ], + [ + 143.12015126100016, + -26.91929833499995 + ], + [ + 143.0538716970001, + -26.794145280999828 + ], + [ + 143.06857585700004, + -26.727638703999958 + ], + [ + 142.92337673500015, + -26.544551012999875 + ], + [ + 142.8584255000003, + -26.427369669999962 + ], + [ + 142.83771964000005, + -26.316448531999924 + ], + [ + 142.75138762900008, + -26.201276417999907 + ], + [ + 142.60146784300014, + -26.09263859399988 + ], + [ + 142.51306718900014, + -26.179772539999874 + ], + [ + 142.39162714700012, + -26.193832424999925 + ], + [ + 142.28024040100001, + -26.168153347999862 + ], + [ + 142.32918205600004, + -26.01988652499989 + ], + [ + 142.3100965540001, + -25.984845502999974 + ], + [ + 142.40051477800012, + -25.866406306999977 + ], + [ + 142.46070100500003, + -25.915376232999904 + ], + [ + 142.58662624400006, + -25.89903974899994 + ], + [ + 142.59182355200005, + -25.954406735999953 + ], + [ + 142.67401040200014, + -25.993943255999966 + ], + [ + 142.6870941530001, + -25.8864791499999 + ], + [ + 142.7423955920001, + -25.81413180699991 + ], + [ + 142.7931388170001, + -25.864133485999957 + ], + [ + 142.87129991300003, + -25.798565891999942 + ], + [ + 142.86446070600016, + -25.593464771999948 + ], + [ + 143.0023020010002, + -25.540171390999888 + ], + [ + 143.1283614450001, + -25.427552869999943 + ], + [ + 143.1715353950001, + -25.43503302199997 + ], + [ + 143.31989897300014, + -25.197918865999952 + ], + [ + 143.4985049820001, + -25.173738961999902 + ], + [ + 143.61435619500014, + -25.110972267999955 + ], + [ + 143.65081576900002, + -25.021355960999983 + ], + [ + 143.4695070240001, + -25.108208440999874 + ], + [ + 143.35542656300015, + -25.13265386799992 + ], + [ + 143.3320751030002, + -25.077506894999885 + ], + [ + 143.24453230900008, + -25.052240249999898 + ], + [ + 143.30470357600007, + -24.96753998199995 + ], + [ + 143.39224089200002, + -24.9242631489999 + ], + [ + 143.37336441700018, + -24.86086384299989 + ], + [ + 143.30235474300014, + -24.792652958999952 + ], + [ + 143.13616047300013, + -24.798636594999948 + ], + [ + 143.11486811200007, + -24.72593738099988 + ], + [ + 143.21130332000007, + -24.61530279699997 + ], + [ + 143.2186006950002, + -24.4979684569999 + ], + [ + 143.27112258400007, + -24.450379951999878 + ], + [ + 143.3203318430002, + -24.33192859099995 + ], + [ + 143.22272221900016, + -24.14235165499997 + ], + [ + 143.16838600500012, + -24.139616040999954 + ], + [ + 143.13336963600023, + -24.0496860209999 + ], + [ + 143.18997380100018, + -23.910548603999928 + ], + [ + 143.23004725900012, + -23.750040739999918 + ], + [ + 143.1272830050001, + -23.642871464999928 + ], + [ + 143.09028974800003, + -23.347444107999877 + ], + [ + 143.17231689300013, + -23.146051651999983 + ], + [ + 143.20147572800022, + -23.012669156999834 + ], + [ + 143.25889902300014, + -22.95307711499987 + ], + [ + 143.3375941280002, + -22.927112452999893 + ], + [ + 143.2683627670001, + -22.790214618999926 + ], + [ + 143.29190737000033, + -22.705775514999914 + ], + [ + 143.2156304770001, + -22.582259783999916 + ], + [ + 143.15577919700013, + -22.548680111999943 + ], + [ + 143.07249305300002, + -22.571270113999958 + ], + [ + 142.9846586130002, + -22.542414918999953 + ], + [ + 142.94910383700017, + -22.63016330399995 + ], + [ + 142.8634343320001, + -22.622656989999825 + ], + [ + 142.72576316800007, + -22.54854051199993 + ], + [ + 142.59271441600004, + -22.561475168999948 + ], + [ + 142.62776357000007, + -22.629934892999927 + ], + [ + 142.55883034900012, + -22.664232418999973 + ], + [ + 142.53619275900007, + -22.759430942999927 + ], + [ + 142.45888191300003, + -22.85400106499992 + ], + [ + 142.45658923300005, + -22.943555738999976 + ], + [ + 142.37938248600017, + -23.00663104499995 + ], + [ + 142.37093441000013, + -23.078501012999936 + ], + [ + 142.244893487, + -23.22192968899998 + ], + [ + 142.1568172640001, + -23.141255248999983 + ], + [ + 142.03829264700005, + -23.174964336999892 + ], + [ + 141.99822887000005, + -23.13442571199994 + ], + [ + 141.82409966400007, + -23.08922536599988 + ], + [ + 141.74361028400006, + -23.024075723999943 + ], + [ + 141.6312508850001, + -23.009606826999857 + ], + [ + 141.57668028800015, + -23.050166595999883 + ], + [ + 141.49759957700007, + -23.321144099999913 + ], + [ + 141.43859090500018, + -23.387404879999906 + ], + [ + 141.29449127800012, + -23.455921539999963 + ], + [ + 141.12289612400002, + -23.560766457999932 + ], + [ + 141.09865943500006, + -23.640633673999957 + ], + [ + 141.04168112600019, + -23.691719073999934 + ], + [ + 140.9012844890001, + -23.71318318999988 + ], + [ + 140.82678749800004, + -23.86749922599995 + ], + [ + 140.79881907200001, + -23.96905072699991 + ], + [ + 140.84214161900013, + -24.052032387999873 + ], + [ + 140.85663155200007, + -24.236564228999953 + ], + [ + 140.89558178700008, + -24.27972640699994 + ], + [ + 140.8768167850002, + -24.37787701999997 + ], + [ + 140.69915422400004, + -24.487946590999968 + ], + [ + 140.64422062200003, + -24.56838866299995 + ], + [ + 140.5469301610002, + -24.59837828399992 + ], + [ + 140.49826214700022, + -24.56535619899995 + ], + [ + 140.40125455800012, + -24.67138813799994 + ], + [ + 140.22483132200023, + -24.585276272999977 + ], + [ + 140.14799921300005, + -24.501385617999915 + ], + [ + 140.06793629000003, + -24.555746219999946 + ], + [ + 140.03022227400015, + -24.485727195999857 + ], + [ + 139.88115939600004, + -24.446401878999893 + ], + [ + 139.8409404560001, + -24.367780586999856 + ], + [ + 139.99444801100003, + -24.271217905999833 + ], + [ + 139.94000320500004, + -24.21136687099994 + ], + [ + 139.93880591900017, + -24.092989836999948 + ], + [ + 139.9919560290001, + -24.041320887999916 + ], + [ + 139.97453071400003, + -23.845562644999973 + ], + [ + 139.91080876900003, + -23.786231646999966 + ], + [ + 139.95042630800015, + -23.66308261899991 + ], + [ + 139.89989322200006, + -23.50397841599988 + ], + [ + 139.92382087900012, + -23.42356348499993 + ], + [ + 140.02587128900007, + -23.351041769999938 + ], + [ + 139.94024265200005, + -23.310817940999982 + ], + [ + 139.7388965570001, + -23.362343791999876 + ], + [ + 139.65090267500022, + -23.306103488999895 + ], + [ + 139.62515674000008, + -23.240275200999974 + ], + [ + 139.62066630800018, + -23.084545491999847 + ], + [ + 139.44703556700006, + -23.008820409999885 + ], + [ + 139.36528194200002, + -23.04815728799997 + ], + [ + 139.2439127580002, + -23.05448406299996 + ], + [ + 139.23819898500005, + -22.99718832799988 + ], + [ + 139.0573420400002, + -22.991390885999976 + ], + [ + 139.03328030400007, + -23.036806328999887 + ], + [ + 138.93157990200007, + -23.03404631999996 + ], + [ + 138.89213049800014, + -23.135678836999887 + ], + [ + 138.83125544100005, + -23.184153306999917 + ], + [ + 138.71165503300017, + -23.10458816299996 + ], + [ + 138.71015953900007, + -22.905653569999913 + ], + [ + 138.63399333200016, + -22.814237456999933 + ], + [ + 138.57802268900014, + -22.83020040399998 + ], + [ + 138.44767067200019, + -22.937416688999974 + ], + [ + 138.4031355310001, + -22.870460519999938 + ], + [ + 138.48974655400002, + -22.74180344499996 + ], + [ + 138.40001696800005, + -22.631205116999922 + ], + [ + 138.24604842700012, + -22.56521463999991 + ], + [ + 138.10893485600002, + -22.473171 + ], + [ + 137.968098477, + -22.479625305999946 + ], + [ + 137.89785772000005, + -22.58022880399983 + ], + [ + 137.75665282600016, + -22.611930837999978 + ], + [ + 137.63932797400014, + -22.560737692999965 + ], + [ + 137.64463807700008, + -22.42016412499993 + ], + [ + 137.50895685800003, + -22.224180307999973 + ], + [ + 137.28866569000013, + -22.049617786999875 + ], + [ + 136.9053191810001, + -21.799514703999932 + ], + [ + 136.86941529800004, + -21.75728030599987 + ], + [ + 136.73899841700006, + -21.70904161499982 + ], + [ + 136.6678618740001, + -21.65473559999998 + ], + [ + 136.58563238700026, + -21.53625672699991 + ], + [ + 136.72026067200022, + -21.499685309999904 + ], + [ + 136.73582452500023, + -21.458665784999937 + ], + [ + 136.85638428800007, + -21.407400220999875 + ], + [ + 136.90599073800013, + -21.326324417999956 + ], + [ + 136.8944243830001, + -21.248132660999943 + ], + [ + 137.00846855700001, + -21.089910492999877 + ], + [ + 137.1058044130001, + -20.982330441999977 + ], + [ + 137.41967768600023, + -21.001092996999944 + ], + [ + 137.6384584350002, + -21.04702750299998 + ], + [ + 137.76545717700003, + -21.117130220999968 + ], + [ + 137.71267700300018, + -20.941650383999956 + ], + [ + 137.53405763900014, + -20.672393813999918 + ], + [ + 137.37347412100019, + -20.582792274999974 + ], + [ + 137.2357787300001, + -20.47077182699985 + ], + [ + 137.1286772860002, + -20.429090465999934 + ], + [ + 137.07746888700012, + -20.28620533599991 + ], + [ + 137.00714119800023, + -20.14727026099996 + ], + [ + 136.8264769870001, + -19.886405988999968 + ], + [ + 136.74909978300025, + -19.85468299899992 + ], + [ + 136.6408386190002, + -19.849849825999968 + ], + [ + 136.33242799900006, + -19.76705740999995 + ], + [ + 136.25637815400012, + -19.698801057999958 + ], + [ + 136.25245659600023, + -19.529117642999893 + ], + [ + 136.0322571270001, + -19.390796626999872 + ], + [ + 135.96824637600014, + -19.376476311999852 + ], + [ + 135.89428714500002, + -19.41272351799995 + ], + [ + 135.67622371900018, + -19.41023258399997 + ], + [ + 135.5801391130002, + -19.381002372999944 + ], + [ + 135.3435821920001, + -19.37161262899997 + ], + [ + 135.18373108300023, + -19.30571360299996 + ], + [ + 135.2585603570003, + -19.245778971999982 + ], + [ + 135.29646298700004, + -19.136758742999973 + ], + [ + 135.27185053500023, + -19.01595305399985 + ], + [ + 135.09506228200019, + -18.992780779999975 + ], + [ + 135.03880311600005, + -19.09203726599992 + ], + [ + 134.94007871300005, + -18.988811445999886 + ], + [ + 134.8722228490003, + -19.010286383999926 + ], + [ + 134.84553520400027, + -19.125892610999927 + ], + [ + 134.70930480200002, + -19.112794880999957 + ], + [ + 134.63162233000014, + -19.04855915999991 + ], + [ + 134.58677680100016, + -18.93339348699982 + ], + [ + 134.53320319600004, + -18.884717930999898 + ], + [ + 134.49038692500028, + -18.78350443799991 + ], + [ + 134.3923949340001, + -18.649309161999952 + ], + [ + 134.24888602200008, + -18.55721668999996 + ], + [ + 134.11462402700022, + -18.442249331999903 + ], + [ + 134.06852724700002, + -18.353185743999973 + ], + [ + 133.96942130000002, + -18.27998742099993 + ], + [ + 133.91796865300012, + -18.201393164999956 + ], + [ + 133.8687286590001, + -18.06635483699995 + ], + [ + 133.78062429500005, + -17.975128214999927 + ], + [ + 133.60339347900015, + -17.987216929999875 + ], + [ + 133.48309321900012, + -18.055492392999952 + ], + [ + 133.40591449900012, + -18.052892661999977 + ], + [ + 133.1094055120002, + -18.23625584699988 + ], + [ + 132.86830140900008, + -18.451881478999894 + ], + [ + 132.68576048800014, + -18.466512761999923 + ], + [ + 132.36535637200018, + -18.39409060299994 + ], + [ + 132.2151489790001, + -18.37593070799994 + ], + [ + 131.64193727500003, + -18.37128260699984 + ], + [ + 131.34124756200004, + -18.372955299999944 + ], + [ + 130.72145074900016, + -18.271274598999923 + ], + [ + 130.44197077200022, + -18.213468635999902 + ], + [ + 130.25271611500023, + -18.158706644999825 + ], + [ + 130.14070120000008, + -18.152967387999865 + ], + [ + 129.98761009600014, + -18.200017859999946 + ], + [ + 129.87199398000007, + -18.2706280189999 + ], + [ + 129.57490530100017, + -18.567283687999975 + ], + [ + 129.41215506000003, + -18.661548582999956 + ], + [ + 129.2673187910002, + -18.671842565999896 + ], + [ + 129.10540774600008, + -18.6414489469999 + ], + [ + 129.00051999800007, + -18.652488136999978 + ], + [ + 128.95236224100006, + -18.692552572999887 + ], + [ + 128.76890568200008, + -18.677419716999964 + ], + [ + 128.66839593400005, + -18.619905443999983 + ], + [ + 128.53800956300006, + -18.675026180999964 + ], + [ + 128.46626281800002, + -18.747364015999892 + ], + [ + 128.34881592600016, + -18.774360617999832 + ], + [ + 128.23628233800002, + -18.915147757999875 + ], + [ + 128.20216363400004, + -19.14706797799994 + ], + [ + 128.02607728300018, + -19.16164025199987 + ], + [ + 127.92285917400011, + -19.267270838999934 + ], + [ + 127.72709664100012, + -19.38523489399995 + ], + [ + 127.7169875620001, + -19.478202773999897 + ], + [ + 127.64909364300001, + -19.474748591999912 + ], + [ + 127.51929467600019, + -19.401838270999974 + ], + [ + 127.48733514900005, + -19.293201429999954 + ], + [ + 127.33006281700011, + -19.295536124999956 + ], + [ + 127.0804061550001, + -19.34486194899995 + ], + [ + 126.78652958900034, + -19.360157077999872 + ], + [ + 126.68591305600012, + -19.327385009999944 + ], + [ + 126.56618494500003, + -19.321661007999978 + ], + [ + 126.54590610400021, + -19.253751834999946 + ], + [ + 126.3672485190001, + -19.25200655499998 + ], + [ + 126.29249568900025, + -19.191493906999938 + ], + [ + 126.17906959600009, + -19.19998930099996 + ], + [ + 126.07909394300009, + -19.27749256999988 + ], + [ + 125.89017489800005, + -19.27872085399997 + ], + [ + 125.77574917900017, + -19.31149677699983 + ], + [ + 125.5028533540002, + -19.302120277999904 + ], + [ + 125.36598207200018, + -19.346918028999937 + ], + [ + 125.04530336500011, + -19.265338976999885 + ], + [ + 124.8756256490002, + -19.162555721999865 + ], + [ + 124.76696014200013, + -19.11663814699989 + ], + [ + 124.73211673700007, + -19.068615038999894 + ], + [ + 124.79085543900021, + -18.97334297499998 + ], + [ + 124.71266938200006, + -18.868507326999975 + ], + [ + 124.635154714, + -18.811634100999925 + ], + [ + 124.47943135800006, + -18.754880905999926 + ], + [ + 124.27593232800007, + -18.846282876999908 + ], + [ + 124.02780921800013, + -18.900381021999863 + ], + [ + 123.88830568300023, + -18.843219793999936 + ], + [ + 123.75351713600003, + -18.811872481999842 + ], + [ + 123.72061917200028, + -18.877140014999952 + ], + [ + 123.5111924590002, + -18.925474092999934 + ], + [ + 123.29765308300023, + -18.91488271999998 + ], + [ + 123.23018647300034, + -18.825372709999954 + ], + [ + 123.09499358300002, + -18.83789627999994 + ], + [ + 122.74119562900012, + -18.900247581999906 + ], + [ + 122.42613195900003, + -19.027635577999945 + ], + [ + 122.28833766200012, + -19.073768566999888 + ], + [ + 122.10074614200005, + -19.16390805599991 + ], + [ + 121.98514561600018, + -19.24728972099996 + ], + [ + 121.85505680200004, + -19.388706173999935 + ], + [ + 121.85272981800006, + -19.468116826999903 + ], + [ + 121.96566775000008, + -19.545619926999905 + ], + [ + 121.93840024500003, + -19.701847035999833 + ], + [ + 121.7007446240001, + -19.685032099999887 + ], + [ + 121.37350456200011, + -19.676456406999876 + ], + [ + 121.27616116200022, + -19.704742479999936 + ], + [ + 121.25948335400017, + -19.747577693999972 + ], + [ + 121.14981838900019, + -19.766138076999823 + ], + [ + 121.07146452500012, + -19.749406791999945 + ], + [ + 121.03435515800004, + -19.856668497999976 + ], + [ + 120.78090669000005, + -19.857097651999936 + ], + [ + 120.6534194510001, + -19.912572774999887 + ], + [ + 120.39736169700006, + -19.996795646999942 + ], + [ + 120.20686333300011, + -20.089254408999977 + ], + [ + 120.02786259400023, + -20.08935934999994 + ], + [ + 119.5026550560001, + -20.252923975999977 + ], + [ + 119.3924712500002, + -20.261360194999895 + ], + [ + 119.37258149700006, + -20.136926649999964 + ], + [ + 119.47065730800023, + -20.07426085999998 + ], + [ + 119.54338637900003, + -20.064235464999967 + ], + [ + 119.46938000300008, + -20.011519996999937 + ], + [ + 119.17937000300014, + -19.95311999699993 + ], + [ + 119.10126000300022, + -19.961489996999887 + ], + [ + 119.06858000300008, + -20.016429996999932 + ], + [ + 118.99327000300002, + -20.03752999699998 + ], + [ + 118.97013000300012, + -20.109689996999975 + ], + [ + 118.89331000300001, + -20.174999995999826 + ], + [ + 118.81823000300005, + -20.280699995999953 + ], + [ + 118.67004000300028, + -20.32922999599998 + ], + [ + 118.53414000300006, + -20.312669995999954 + ], + [ + 118.48468000300011, + -20.346189995999907 + ], + [ + 118.329010003, + -20.34041999599998 + ], + [ + 118.20430000300018, + -20.37586999599995 + ], + [ + 118.1804700030001, + -20.336339995999936 + ], + [ + 117.9898200030002, + -20.47313999599993 + ], + [ + 117.7925500040003, + -20.653489995999962 + ], + [ + 117.70283000400002, + -20.689199995999843 + ], + [ + 117.63685000400017, + -20.662869995999813 + ], + [ + 117.5219700040002, + -20.715029995999885 + ], + [ + 117.33160000400005, + -20.735649995999893 + ], + [ + 117.21172000400031, + -20.697129995999944 + ], + [ + 117.0909100040002, + -20.628039995999927 + ], + [ + 116.98767000400005, + -20.658919995999838 + ], + [ + 116.898260004, + -20.724219994999885 + ], + [ + 116.82986000400024, + -20.708829994999917 + ], + [ + 116.7705200040001, + -20.5886999949999 + ], + [ + 116.69114000400009, + -20.681649994999873 + ], + [ + 116.52778000400008, + -20.75281999499998 + ], + [ + 116.46071000400002, + -20.822699994999937 + ], + [ + 116.34491000400021, + -20.83861999499993 + ], + [ + 116.30145000400034, + -20.87760999499983 + ], + [ + 116.19108000400001, + -20.887679994999928 + ], + [ + 116.1881200040001, + -20.968549994999933 + ], + [ + 115.9910300050002, + -21.039619994999953 + ], + [ + 115.88244000500003, + -21.117809994999902 + ], + [ + 115.81818000500016, + -21.252519994999943 + ], + [ + 115.70208000500031, + -21.27829999499994 + ], + [ + 115.5510000050001, + -21.41036999499994 + ], + [ + 115.46136000500007, + -21.52939999499995 + ], + [ + 115.41131000500002, + -21.52487999499988 + ], + [ + 115.3030300050001, + -21.5928199949999 + ], + [ + 115.24306000500007, + -21.57655999399998 + ], + [ + 115.04967000500017, + -21.681129993999946 + ], + [ + 114.913340005, + -21.692919993999965 + ], + [ + 114.77572000500004, + -21.791919993999954 + ], + [ + 114.64482000500016, + -21.849079993999908 + ], + [ + 114.61553000600009, + -21.975009993999834 + ], + [ + 114.47579000600012, + -22.15443999399986 + ], + [ + 114.37124000600011, + -22.490229993999947 + ], + [ + 114.2614200060001, + -22.440909993999924 + ], + [ + 114.18848000600008, + -22.521379993999915 + ], + [ + 114.1207500060001, + -22.469969993999882 + ], + [ + 114.18139000600002, + -22.344159993999938 + ], + [ + 114.08035000600012, + -22.15497999399986 + ], + [ + 114.14095000600003, + -21.943099993999965 + ], + [ + 114.16532000600012, + -21.78515999399997 + ], + [ + 113.99603000600007, + -21.874849993999874 + ], + [ + 113.94591000600008, + -21.95433999399995 + ], + [ + 113.81593000600003, + -22.317379993999907 + ], + [ + 113.75026000600019, + -22.407539993999876 + ], + [ + 113.70781000600005, + -22.525789993999922 + ], + [ + 113.65393000600011, + -22.582909993999976 + ], + [ + 113.71042000600005, + -22.71557999399988 + ], + [ + 113.76710000600019, + -22.775969993999922 + ], + [ + 113.82620000600002, + -22.953539992999822 + ], + [ + 113.82743000600033, + -23.04433999299988 + ], + [ + 113.77069000600022, + -23.12815999299994 + ], + [ + 113.79545000700011, + -23.302319992999912 + ], + [ + 113.77864000700015, + -23.47725999299996 + ], + [ + 113.75457000700021, + -23.52799999299998 + ], + [ + 113.61360000700006, + -23.631599992999895 + ], + [ + 113.56787000700012, + -23.751999992999856 + ], + [ + 113.47073000700004, + -23.89862999299993 + ], + [ + 113.45933000700006, + -24.014309992999927 + ], + [ + 113.42245000700018, + -24.04318999299994 + ], + [ + 113.44510000700006, + -24.145899992999944 + ], + [ + 113.39282000700018, + -24.238309992999973 + ], + [ + 113.40776000700009, + -24.48492999299998 + ], + [ + 113.62436000700018, + -24.74661999299991 + ], + [ + 113.62449000700008, + -24.876309992999893 + ], + [ + 113.68043000700015, + -24.92669999299983 + ], + [ + 113.66447000700009, + -25.018499992999978 + ], + [ + 113.6963000070001, + -25.08543999299991 + ], + [ + 113.81055000700019, + -25.16475999299996 + ], + [ + 113.88982000700014, + -25.334259992999932 + ], + [ + 114.00369000800026, + -25.617639992999955 + ], + [ + 114.23182000800011, + -25.874609992999922 + ], + [ + 114.25865000800013, + -25.982809991999943 + ], + [ + 114.19535000800022, + -25.982079991999854 + ], + [ + 114.25375000800022, + -26.156649991999927 + ], + [ + 114.1912600080002, + -26.167879991999882 + ], + [ + 114.23768000800021, + -26.28236999199987 + ], + [ + 114.20923000800008, + -26.37286999199989 + ], + [ + 114.08977000800007, + -26.46763999199993 + ], + [ + 113.98017000800007, + -26.353369991999955 + ], + [ + 113.93484000800004, + -26.18058999199991 + ], + [ + 113.87973000800014, + -26.071589991999872 + ], + [ + 113.77555000800032, + -26.21411999199995 + ], + [ + 113.7024700080002, + -26.13403999199994 + ], + [ + 113.70094000800009, + -26.04174999199995 + ], + [ + 113.76117000800002, + -25.877329991999886 + ], + [ + 113.60838000800004, + -25.716579991999936 + ], + [ + 113.57196000800002, + -25.637519991999852 + ], + [ + 113.47317000800001, + -25.557409991999975 + ], + [ + 113.4145100080002, + -25.72451999199984 + ], + [ + 113.51385000800008, + -25.854099991999874 + ], + [ + 113.55884000800006, + -25.94546999199997 + ], + [ + 113.58506000800003, + -26.09514999199996 + ], + [ + 113.6180000080002, + -26.098889991999954 + ], + [ + 113.69696000800013, + -26.221089991999975 + ], + [ + 113.81855455600032, + -26.268409032999898 + ] + ], + [ + [ + 138.0040381020001, + -29.685701363999897 + ], + [ + 138.0912210910002, + -29.763946907999923 + ], + [ + 138.12880295000014, + -29.954705280999974 + ], + [ + 138.19897511500005, + -29.98890253299993 + ], + [ + 138.25555257400015, + -30.069339970999977 + ], + [ + 138.18650344300022, + -30.127574404999905 + ], + [ + 138.1243914580001, + -30.291520956999932 + ], + [ + 138.0637683650001, + -30.30761096799995 + ], + [ + 137.85666210500005, + -30.185370430999967 + ], + [ + 137.82371368200018, + -30.13285554099997 + ], + [ + 137.7295475520001, + -30.1141569589999 + ], + [ + 137.58633332800002, + -30.03693136399994 + ], + [ + 137.63875984100025, + -29.948446041999887 + ], + [ + 137.59137194800007, + -29.87529062199991 + ], + [ + 137.8141100370001, + -29.7287180969999 + ], + [ + 138.0040381020001, + -29.685701363999897 + ] + ] + ], + [ + [ + [ + 80.53109762300011, + 9.524729624000088 + ], + [ + 80.35376756500011, + 9.668039716000067 + ], + [ + 80.25354749600018, + 9.819979816 + ], + [ + 80.02261365800018, + 9.813389294000046 + ], + [ + 79.91059153300017, + 9.765512701000091 + ], + [ + 79.94888258200018, + 9.685788228999968 + ], + [ + 79.99858056200014, + 9.680898729000091 + ], + [ + 80.11856851200008, + 9.605373926000084 + ], + [ + 80.09372756800013, + 9.572247302999983 + ], + [ + 80.1842725750002, + 9.481943864000073 + ], + [ + 80.14872760500015, + 9.43227622600017 + ], + [ + 80.0556105280001, + 9.390539377000152 + ], + [ + 80.11789661800009, + 9.304896443000075 + ], + [ + 80.07810956800006, + 9.06162343800014 + ], + [ + 79.9453425690001, + 8.944481815000188 + ], + [ + 79.91889950800004, + 8.818990978000102 + ], + [ + 80.04799657500007, + 8.897365125000135 + ], + [ + 80.15014649400018, + 9.06652534300008 + ], + [ + 80.1796645390001, + 9.367967750000162 + ], + [ + 80.21881858800009, + 9.41012872300007 + ], + [ + 80.3782506010001, + 9.399373735000154 + ], + [ + 80.43430357300002, + 9.461699053000189 + ], + [ + 80.49413259200003, + 9.412728789000084 + ], + [ + 80.62306956500015, + 9.423300046000179 + ], + [ + 80.53109762300011, + 9.524729624000088 + ] + ] + ], + [ + [ + [ + 79.83843256700004, + 10.271957182000051 + ], + [ + 79.72786755300012, + 10.293525663000025 + ], + [ + 79.52400960900002, + 10.364380573000062 + ], + [ + 79.52694662800013, + 10.310374462000084 + ], + [ + 79.76096349700003, + 10.268717241000104 + ], + [ + 79.83843256700004, + 10.271957182000051 + ] + ] + ], + [ + [ + [ + 80.19862356600004, + 14.573885172000132 + ], + [ + 80.114547545, + 14.740594353000063 + ], + [ + 80.05426758000016, + 15.02257699800009 + ], + [ + 80.05287953700014, + 15.098951224000132 + ], + [ + 80.09484856400019, + 15.222904149000158 + ], + [ + 80.11331959600011, + 15.350175973000091 + ], + [ + 80.2045135300001, + 15.463008795000064 + ], + [ + 80.24575064900012, + 15.617577963000144 + ], + [ + 80.36833162500005, + 15.767758366000066 + ], + [ + 80.55294052800002, + 15.868191839000076 + ], + [ + 80.74432351700005, + 15.87677239300001 + ], + [ + 80.81186657000012, + 15.836054951999984 + ], + [ + 80.81247761000003, + 15.718093578000037 + ], + [ + 80.93109159900013, + 15.707707227000128 + ], + [ + 81.01236756100013, + 15.74780742500019 + ], + [ + 80.99176065200015, + 15.823134751000055 + ], + [ + 81.05406149400017, + 15.903690540000127 + ], + [ + 81.15827956400005, + 15.968565633000026 + ], + [ + 81.15170262000015, + 16.003914298000097 + ], + [ + 80.91430650200016, + 16.14681535300008 + ], + [ + 80.73081960100006, + 16.310174958000175 + ], + [ + 80.66589354600006, + 16.42518674000013 + ], + [ + 80.54811858600004, + 16.496902304000173 + ], + [ + 80.27124756100017, + 16.566668907000178 + ], + [ + 80.21494262900012, + 16.599455727000077 + ], + [ + 80.18125156900015, + 16.688260147000108 + ], + [ + 80.18250265200004, + 16.82003288599998 + ], + [ + 80.10553750200012, + 16.86838909100004 + ], + [ + 79.93448649500016, + 16.62493419800012 + ], + [ + 79.85217251800015, + 16.56424888400005 + ], + [ + 79.82792652200004, + 16.500762841000096 + ], + [ + 79.73922754600005, + 16.408667685000182 + ], + [ + 79.70372063100007, + 16.329542519000086 + ], + [ + 79.42569759600008, + 16.13083609300014 + ], + [ + 79.3258436480001, + 16.022882042000106 + ], + [ + 79.2346195400001, + 15.81412621700008 + ], + [ + 79.25084656900009, + 15.740440067000065 + ], + [ + 79.34155250800012, + 15.630447872000161 + ], + [ + 79.36427249500014, + 15.540634774000011 + ], + [ + 79.21441663900015, + 15.381982949000133 + ], + [ + 79.14196061800004, + 15.191155344000038 + ], + [ + 79.12761649900011, + 15.014277741000058 + ], + [ + 79.23320752500007, + 14.794009875000086 + ], + [ + 79.35671252100008, + 14.620042468000065 + ], + [ + 79.36945351700018, + 14.523938584000064 + ], + [ + 79.25570656400015, + 14.436884305000035 + ], + [ + 78.98381757400006, + 14.408495134000077 + ], + [ + 78.86506662500005, + 14.48715108100015 + ], + [ + 78.7072065550002, + 14.562245055000119 + ], + [ + 78.62174953100003, + 14.650791313000013 + ], + [ + 78.54228959200009, + 14.697928286000092 + ], + [ + 78.47743964500012, + 14.77579214300016 + ], + [ + 78.3955685680001, + 14.827968820000137 + ], + [ + 78.10218049900016, + 14.896205223000152 + ], + [ + 77.90664662300014, + 14.95531038100006 + ], + [ + 77.7501065350001, + 15.041844982000043 + ], + [ + 77.76880656100013, + 15.154897578000146 + ], + [ + 77.83988962600012, + 15.27297981800018 + ], + [ + 77.7901916450001, + 15.410481252000068 + ], + [ + 77.77393360300016, + 15.581530080000107 + ], + [ + 77.78220352400007, + 15.759039846000064 + ], + [ + 77.86142759700004, + 15.934677598 + ], + [ + 78.13760359500009, + 16.13256611800017 + ], + [ + 78.18966661300016, + 16.216669631000116 + ], + [ + 78.19159663000005, + 16.339073078000013 + ], + [ + 77.97344251300007, + 16.39641837199997 + ], + [ + 77.79174062100003, + 16.407918846000143 + ], + [ + 77.72802759600017, + 16.429016264000097 + ], + [ + 77.54386159200016, + 16.580547997999986 + ], + [ + 77.39909355200012, + 16.752217254000072 + ], + [ + 77.36450160500016, + 16.848061132000055 + ], + [ + 77.32173964900016, + 17.167890416999967 + ], + [ + 77.24204250200006, + 17.407844692000026 + ], + [ + 77.25256363500012, + 17.554186686000037 + ], + [ + 77.3028335960002, + 17.755325205000076 + ], + [ + 77.27179758800014, + 17.925314896000145 + ], + [ + 77.30834151200008, + 18.11054389200018 + ], + [ + 77.29519650900005, + 18.18146870700008 + ], + [ + 77.19699849000011, + 18.347529631999976 + ], + [ + 77.10188249700002, + 18.42810369300014 + ], + [ + 76.88889364300013, + 18.64264085200017 + ], + [ + 76.82363851500014, + 18.84499709400012 + ], + [ + 76.79165652500018, + 18.884917585000096 + ], + [ + 76.76978260800018, + 19.00859038700014 + ], + [ + 76.7024304950001, + 19.223676728000157 + ], + [ + 76.57618763400018, + 19.40422526900005 + ], + [ + 76.52111065100007, + 19.448973401000103 + ], + [ + 76.34420756700001, + 19.53283668900019 + ], + [ + 76.13641364900008, + 19.670908763 + ], + [ + 75.97329762200013, + 19.715258083000094 + ], + [ + 75.8385466260001, + 19.712898074000123 + ], + [ + 75.57592751800019, + 19.769632829999978 + ], + [ + 75.41280361200018, + 19.852800085000126 + ], + [ + 75.17701749000014, + 19.86977126000005 + ], + [ + 74.71826151200008, + 20.00343244100003 + ], + [ + 74.54110764100017, + 20.076128352000126 + ], + [ + 74.48858663600015, + 20.126094553000144 + ], + [ + 74.49752057100011, + 20.314764656000023 + ], + [ + 74.62084150100014, + 20.569650452000133 + ], + [ + 74.79345657100015, + 20.627857238000104 + ], + [ + 75.0059125040001, + 20.616125591000127 + ], + [ + 75.1070705080001, + 20.639485285000035 + ], + [ + 75.50382957200009, + 20.620186623000052 + ], + [ + 75.76406050800011, + 20.719301958000074 + ], + [ + 75.92980157900007, + 20.859233976000155 + ], + [ + 75.94016261800016, + 20.99922718200014 + ], + [ + 75.8417126390001, + 21.040913906000185 + ], + [ + 75.69307752300006, + 21.061882914000023 + ], + [ + 75.56934353300011, + 21.047762760000182 + ], + [ + 75.46518748900019, + 21.072771174000138 + ], + [ + 75.2638625570001, + 21.065341790000048 + ], + [ + 75.03453050000007, + 21.093039118000036 + ], + [ + 74.8027576340001, + 21.361636368000063 + ], + [ + 74.73368052600006, + 21.49591797700009 + ], + [ + 74.68434162600016, + 21.92165495600011 + ], + [ + 74.61723359500007, + 21.957022900000084 + ], + [ + 74.48484059600014, + 21.893126311000174 + ], + [ + 74.474868646, + 21.82449009100003 + ], + [ + 74.52748151700018, + 21.695837097000037 + ], + [ + 74.46138752800016, + 21.564094198000078 + ], + [ + 74.1827465790002, + 21.421282997000105 + ], + [ + 74.02449758800003, + 21.286960483000144 + ], + [ + 74.01534253800014, + 21.1985954430001 + ], + [ + 74.13481852200005, + 21.107690182000113 + ], + [ + 74.17993964700008, + 21.047782541000174 + ], + [ + 74.13758857300019, + 20.963966191000054 + ], + [ + 74.03237959500018, + 20.947789118000117 + ], + [ + 74.10791764100014, + 20.75105931200011 + ], + [ + 74.08347349700017, + 20.65945433100012 + ], + [ + 74.125556518, + 20.572980080000093 + ], + [ + 74.09024054300016, + 20.508821808000107 + ], + [ + 73.86313656400006, + 20.386989671000038 + ], + [ + 73.91475651500014, + 20.26349758300006 + ], + [ + 73.89650760300009, + 20.148043237000024 + ], + [ + 73.85449951600003, + 20.08471695300011 + ], + [ + 73.85890152400015, + 19.96656346600014 + ], + [ + 73.78415657300019, + 19.779894459000047 + ], + [ + 73.71408855600015, + 19.67701933800015 + ], + [ + 73.70260652200011, + 19.524400136000168 + ], + [ + 73.74620851200012, + 19.40955465100012 + ], + [ + 73.81345350400011, + 19.346087551000096 + ], + [ + 73.78344763100012, + 19.279534234000096 + ], + [ + 73.80873851500019, + 19.191618463000168 + ], + [ + 73.9159314900001, + 19.108056420000082 + ], + [ + 73.90824863799998, + 18.93887541600003 + ], + [ + 73.9208525050002, + 18.819701349000127 + ], + [ + 73.99756653300011, + 18.72450522400004 + ], + [ + 73.9943775540001, + 18.652499312000145 + ], + [ + 73.92906962000018, + 18.55099832000019 + ], + [ + 73.91886163600009, + 18.413824451000096 + ], + [ + 74.009460622, + 18.31219169500008 + ], + [ + 73.99420153400013, + 18.221776106000107 + ], + [ + 74.03813963900018, + 18.11036301000013 + ], + [ + 73.97586863600009, + 18.035437512999977 + ], + [ + 73.96759754100009, + 17.893595930000117 + ], + [ + 74.01154352400005, + 17.753225371000042 + ], + [ + 74.08537250100005, + 17.601373616000046 + ], + [ + 74.1587066100002, + 17.36815889500008 + ], + [ + 74.27417755300007, + 17.12521194500016 + ], + [ + 74.26386261500016, + 16.886217734000184 + ], + [ + 74.37358055400006, + 16.683971463000148 + ], + [ + 74.42671159400004, + 16.135714864000136 + ], + [ + 74.42671159400004, + 16.010352773000022 + ], + [ + 74.3953706530001, + 15.881081027 + ], + [ + 74.3518905360001, + 15.81256634400006 + ], + [ + 74.43087756800014, + 15.744300772000031 + ], + [ + 74.523956591, + 15.71082177400018 + ], + [ + 74.80972249300004, + 15.413032032999979 + ], + [ + 74.96130351200003, + 15.326657359000137 + ], + [ + 75.0459676070002, + 15.143549151000059 + ], + [ + 75.14141049500017, + 15.126470353000059 + ], + [ + 75.24059254900016, + 14.978388946000052 + ], + [ + 75.27364356700008, + 14.839409112000055 + ], + [ + 75.40457962400006, + 14.651592287000028 + ], + [ + 75.39192948800019, + 14.552706617000126 + ], + [ + 75.44920353499998, + 14.470452151000131 + ], + [ + 75.661239534, + 14.375967315000139 + ], + [ + 75.81823761000015, + 14.378828059000057 + ], + [ + 75.9085465820001, + 14.3178220530001 + ], + [ + 76.08908858500018, + 13.93852802500004 + ], + [ + 76.12390852000004, + 13.799557412000013 + ], + [ + 76.3386386300001, + 13.465378476000183 + ], + [ + 76.41325349400006, + 13.300400660000093 + ], + [ + 76.43943051300016, + 13.155879215000141 + ], + [ + 76.55274965300003, + 12.904276274000154 + ], + [ + 76.65569250000004, + 12.97579234900013 + ], + [ + 76.70120958700016, + 13.036547233000078 + ], + [ + 77.00367760400019, + 13.198937219000129 + ], + [ + 77.10111957600009, + 13.179387771000108 + ], + [ + 77.24743659200016, + 13.090073563999965 + ], + [ + 77.43376160600013, + 13.048915401999977 + ], + [ + 77.55110154500011, + 13.091194559000087 + ], + [ + 77.72469360999997, + 13.095303368000145 + ], + [ + 77.85984056700005, + 13.166358606000074 + ], + [ + 77.97873652300007, + 13.123521548000099 + ], + [ + 78.10041862300005, + 13.003959567000095 + ], + [ + 78.18411259700014, + 12.884438489000047 + ], + [ + 78.24346954700007, + 12.834721733000151 + ], + [ + 78.32936058500007, + 12.678880360000107 + ], + [ + 78.39938350700004, + 12.618086416000097 + ], + [ + 78.57586649000018, + 12.584467776000054 + ], + [ + 78.63404058700007, + 12.719228495000095 + ], + [ + 78.75208259400006, + 12.841340252 + ], + [ + 78.99817661200012, + 12.905405987000108 + ], + [ + 79.16909049100008, + 12.97061166200018 + ], + [ + 79.2797926340001, + 12.936905012000182 + ], + [ + 79.29434160600005, + 12.841331367000066 + ], + [ + 79.3351665040002, + 12.774965972000132 + ], + [ + 79.33896652300012, + 12.58166889100005 + ], + [ + 79.27822153000017, + 12.4631469360001 + ], + [ + 79.17964951000005, + 12.205723434000049 + ], + [ + 79.01127652100018, + 11.91925412300003 + ], + [ + 78.96376051800019, + 11.770283228000153 + ], + [ + 78.90805053400004, + 11.668181254 + ], + [ + 78.81839753000014, + 11.55564783400007 + ], + [ + 78.72792863100005, + 11.497154052000155 + ], + [ + 78.70874061100011, + 11.42171625200018 + ], + [ + 78.7521746270001, + 11.320826134000129 + ], + [ + 78.75466958400006, + 11.22877540200011 + ], + [ + 78.59107260400015, + 11.196445899000082 + ], + [ + 78.52857964800012, + 11.154219546999968 + ], + [ + 78.53054855700003, + 11.037954839000065 + ], + [ + 78.59203350500019, + 10.880244804000085 + ], + [ + 78.43003864200006, + 10.455075447000127 + ], + [ + 78.4377976020001, + 10.354002268000158 + ], + [ + 78.34593160800006, + 10.172834974000068 + ], + [ + 78.3064875450001, + 10.02501541800018 + ], + [ + 78.24075364300006, + 9.918139111000187 + ], + [ + 78.05902057100008, + 9.786643143000163 + ], + [ + 77.9901885490001, + 9.702663179000183 + ], + [ + 77.9676135690001, + 9.57816593300015 + ], + [ + 77.97466258200006, + 9.350204150000138 + ], + [ + 77.95171360200015, + 9.157632774000092 + ], + [ + 77.92548360900014, + 9.06664134800019 + ], + [ + 77.90032163900014, + 8.820217921000108 + ], + [ + 77.8704686530001, + 8.721377680000103 + ], + [ + 77.75321957300008, + 8.59683282500015 + ], + [ + 77.61593657200007, + 8.538956956999982 + ], + [ + 77.65611254300006, + 8.323155472000167 + ], + [ + 77.7348635410001, + 8.228339215000062 + ], + [ + 77.78368360100006, + 8.210564551 + ], + [ + 77.95876362100006, + 8.319066779000025 + ], + [ + 78.059646531, + 8.363412411000127 + ], + [ + 78.13363660800002, + 8.486684726000135 + ], + [ + 78.12191049300014, + 8.641971385000147 + ], + [ + 78.17434650600006, + 8.760554024999976 + ], + [ + 78.1691205570001, + 8.865456393000045 + ], + [ + 78.19503052800013, + 8.92758222100008 + ], + [ + 78.40628064000003, + 9.101605787000096 + ], + [ + 78.65200049100014, + 9.150075148000042 + ], + [ + 78.86585955300012, + 9.248704332000102 + ], + [ + 79.07656853000009, + 9.288593306000053 + ], + [ + 78.98329957200019, + 9.354201815000067 + ], + [ + 78.90075660200011, + 9.47515016300008 + ], + [ + 78.81507159000012, + 9.53297708100007 + ], + [ + 78.7773436380001, + 9.591964054000073 + ], + [ + 78.8048936130001, + 9.890973866000024 + ], + [ + 78.86918649900002, + 10.06802128600009 + ], + [ + 78.90440356800008, + 10.246088785000097 + ], + [ + 78.93044262000018, + 10.284548141000073 + ], + [ + 79.07749154500016, + 10.355450158000053 + ], + [ + 79.19171157200014, + 10.659321138000053 + ], + [ + 79.29805763900015, + 10.908502714000122 + ], + [ + 79.27699257500018, + 11.083571670000083 + ], + [ + 79.36723365400007, + 11.316254308 + ], + [ + 79.51730358300011, + 11.572366713000065 + ], + [ + 79.59452052500006, + 11.826620514000183 + ], + [ + 79.62310750900014, + 12.02611567700012 + ], + [ + 79.61746950600019, + 12.186836827000093 + ], + [ + 79.64147158800017, + 12.47403620200015 + ], + [ + 79.63878653000006, + 12.662742514000115 + ], + [ + 79.52887765100013, + 12.99498992500014 + ], + [ + 79.56009655200012, + 13.235353739000175 + ], + [ + 79.64665261000005, + 13.391763573000105 + ], + [ + 79.77176659700001, + 14.011692150000101 + ], + [ + 79.92239358800015, + 14.206610291000118 + ], + [ + 80.00081651800019, + 14.202280535000114 + ], + [ + 79.99797052700018, + 14.131104263000168 + ], + [ + 80.05715162500013, + 13.934938392000163 + ], + [ + 80.12613653200009, + 13.808485647000055 + ], + [ + 80.10948957000011, + 13.712653169000134 + ], + [ + 80.13157655500015, + 13.594439836 + ], + [ + 80.21785751900006, + 13.477468868000074 + ], + [ + 80.23645763300004, + 13.338627000000145 + ], + [ + 80.21211960400007, + 13.22039472400013 + ], + [ + 80.23338365400014, + 13.126071156000023 + ], + [ + 80.29708863300004, + 13.12396226900006 + ], + [ + 80.34792353400019, + 13.29410099 + ], + [ + 80.33830261800011, + 13.374534571000083 + ], + [ + 80.23681654600017, + 13.636178025000106 + ], + [ + 80.25817162400011, + 13.77625890600018 + ], + [ + 80.16171251400004, + 13.978505513000073 + ], + [ + 80.12876157700015, + 14.20160981500004 + ], + [ + 80.17339353500012, + 14.347761205000154 + ], + [ + 80.19862356600004, + 14.573885172000132 + ] + ] + ], + [ + [ + [ + 82.31432355300018, + 16.863170350000132 + ], + [ + 82.20429950700003, + 16.914793151000083 + ], + [ + 82.22641750500009, + 16.81749417499998 + ], + [ + 82.29497560600004, + 16.70250318 + ], + [ + 82.23525957500016, + 16.61404778200017 + ], + [ + 82.12247453000009, + 16.532227834000025 + ], + [ + 81.82613351600014, + 16.42165795900013 + ], + [ + 81.62931050400005, + 16.40175596800003 + ], + [ + 81.49219564400016, + 16.434927014000152 + ], + [ + 81.31748962400002, + 16.412812369000108 + ], + [ + 81.3265226330002, + 16.37334986500008 + ], + [ + 81.7612606030001, + 16.326273744000105 + ], + [ + 81.95014964100005, + 16.396038336000174 + ], + [ + 82.18359352400017, + 16.508641327000078 + ], + [ + 82.275573512, + 16.571907429000134 + ], + [ + 82.34658063700016, + 16.708040098000026 + ], + [ + 82.3735735510001, + 16.83684078100009 + ], + [ + 82.31432355300018, + 16.863170350000132 + ] + ] + ], + [ + [ + [ + 86.9907836430001, + 20.711201351000113 + ], + [ + 86.96569861900008, + 20.773228776000167 + ], + [ + 86.86322750600004, + 20.773499847000096 + ], + [ + 86.74234051299999, + 20.70092010900015 + ], + [ + 86.59880058800007, + 20.431667059000063 + ], + [ + 86.52078250400012, + 20.31835361900005 + ], + [ + 86.17105061100011, + 19.99329302000018 + ], + [ + 86.11863756500009, + 19.911356731000126 + ], + [ + 86.20313251300018, + 19.886469184000134 + ], + [ + 86.40162654200009, + 19.970183275000068 + ], + [ + 86.38481864700003, + 20.004902291000178 + ], + [ + 86.49738358300004, + 20.12851424100012 + ], + [ + 86.53347052600014, + 20.201480049000054 + ], + [ + 86.65505254599998, + 20.25565698300005 + ], + [ + 86.76450360600018, + 20.330243852000024 + ], + [ + 86.71439357100013, + 20.395379286000093 + ], + [ + 86.72834055499999, + 20.452905964000138 + ], + [ + 86.80637355900012, + 20.538461055000084 + ], + [ + 87.00125163500007, + 20.667394005000176 + ], + [ + 86.9907836430001, + 20.711201351000113 + ] + ] + ], + [ + [ + [ + 70.25509655000013, + 22.967576328000177 + ], + [ + 70.21690357000017, + 23.067674189000172 + ], + [ + 70.31237059800003, + 23.214286584000092 + ], + [ + 70.44708253400006, + 23.207577206000053 + ], + [ + 70.48284962399998, + 23.174199628999986 + ], + [ + 70.5831905600001, + 23.178338613000165 + ], + [ + 70.78999356900005, + 23.27486444300007 + ], + [ + 70.92571250800012, + 23.40238722100014 + ], + [ + 71.03491948600015, + 23.431075625000062 + ], + [ + 71.05902064300005, + 23.469333649000077 + ], + [ + 70.99372058800003, + 23.633006234000106 + ], + [ + 70.9356236050001, + 23.711112496000112 + ], + [ + 70.76024653000013, + 23.709931486000073 + ], + [ + 70.72000149300015, + 23.736440093000056 + ], + [ + 70.74726849400014, + 23.82471578300016 + ], + [ + 70.8331065590001, + 23.786837627000125 + ], + [ + 70.84726761700011, + 23.87997280900015 + ], + [ + 70.60234857300009, + 23.920383808000054 + ], + [ + 70.56276654400006, + 23.847032600000034 + ], + [ + 70.62454955300007, + 23.804817647000107 + ], + [ + 70.61844652100012, + 23.720480949000148 + ], + [ + 70.54415151100005, + 23.732298427000046 + ], + [ + 70.52471957699998, + 23.664265704000172 + ], + [ + 70.33464852300006, + 23.56717979600012 + ], + [ + 70.28437051500009, + 23.51285148400018 + ], + [ + 70.26859258800016, + 23.421027232000085 + ], + [ + 70.18444062700007, + 23.45268534500019 + ], + [ + 70.07330363200015, + 23.451334685000177 + ], + [ + 70.0132065590002, + 23.553819376999968 + ], + [ + 69.94206264100018, + 23.561299052000038 + ], + [ + 69.85140263500017, + 23.474534452000114 + ], + [ + 69.64010659100018, + 23.45184447300005 + ], + [ + 69.42899360700005, + 23.522301913000092 + ], + [ + 69.324226523, + 23.524710703999972 + ], + [ + 69.18193064100012, + 23.57339950300019 + ], + [ + 69.21761357600013, + 23.63096540800018 + ], + [ + 69.45117949900003, + 23.599226997000017 + ], + [ + 69.66953260300005, + 23.525210767999965 + ], + [ + 69.84795348200015, + 23.55963993800009 + ], + [ + 69.94450361899999, + 23.746350520000135 + ], + [ + 69.93283064600007, + 23.884912600000064 + ], + [ + 69.8234635730002, + 23.94434046100008 + ], + [ + 69.7255406480001, + 23.943470755000078 + ], + [ + 69.66562663600007, + 23.873644137000042 + ], + [ + 69.69837154700019, + 23.792288379000126 + ], + [ + 69.57362351400008, + 23.820115794000117 + ], + [ + 69.51061255700006, + 23.778117933000033 + ], + [ + 69.40614353299998, + 23.762268760000097 + ], + [ + 69.34806851100006, + 23.803195749000054 + ], + [ + 69.22207660400011, + 23.81747599800002 + ], + [ + 69.04718048300015, + 23.706881647000046 + ], + [ + 68.85624659600012, + 23.820616864000044 + ], + [ + 68.68229662300013, + 23.79432702500003 + ], + [ + 68.5512775860002, + 23.716092185000093 + ], + [ + 68.45641355300006, + 23.615797349000104 + ], + [ + 68.4470905300002, + 23.476863280000032 + ], + [ + 68.49594864300019, + 23.472404611000172 + ], + [ + 68.5113374820001, + 23.319622297000024 + ], + [ + 68.58930963400019, + 23.208806999000103 + ], + [ + 68.71558350800012, + 23.139941450000094 + ], + [ + 68.74433863300015, + 23.086743186999968 + ], + [ + 69.19609052499999, + 22.833036389000142 + ], + [ + 69.36078654000016, + 22.82054819100017 + ], + [ + 69.45098855900005, + 22.774468511000066 + ], + [ + 69.544479637, + 22.78875982300002 + ], + [ + 69.6905664860002, + 22.741201407 + ], + [ + 69.73876159100018, + 22.801530994000075 + ], + [ + 69.8423305660001, + 22.857148274000053 + ], + [ + 70.19821159100013, + 22.944530788000122 + ], + [ + 70.25509655000013, + 22.967576328000177 + ] + ] + ], + [ + [ + [ + 82.73910549900012, + 45.236971930000095 + ], + [ + 82.75286858400017, + 45.058016956000074 + ], + [ + 82.6910555680002, + 44.96971075700003 + ], + [ + 82.6037825210002, + 44.9736777440001 + ], + [ + 82.36315953899998, + 44.898295936000125 + ], + [ + 82.44409955400005, + 44.81230498500008 + ], + [ + 82.78215059500008, + 44.75872668599999 + ], + [ + 82.88264458500004, + 44.67051989600009 + ], + [ + 82.78858152600009, + 44.50869702900019 + ], + [ + 82.84333060900008, + 44.43708707700017 + ], + [ + 83.05033159900012, + 44.29426933800016 + ], + [ + 83.27513860100015, + 44.26140557200006 + ], + [ + 83.61190754500007, + 44.297183223000104 + ], + [ + 83.87602952900016, + 44.27572253300008 + ], + [ + 84.02530653000014, + 44.15353768600016 + ], + [ + 84.21345561400005, + 44.16644246400017 + ], + [ + 84.5488816100002, + 44.22247364300017 + ], + [ + 84.9395066290001, + 44.17320666000006 + ], + [ + 85.04706555800016, + 44.187583636 + ], + [ + 85.39394358000015, + 44.30493547700007 + ], + [ + 85.64953664200016, + 44.162181608000026 + ], + [ + 86.01038360900003, + 44.10375957500008 + ], + [ + 86.31434662200013, + 44.075649689000045 + ], + [ + 86.45372057300011, + 44.078269704000036 + ], + [ + 86.80696062800013, + 44.024814787000025 + ], + [ + 87.19168864300008, + 43.911587178000104 + ], + [ + 87.38116458200005, + 43.84217948700018 + ], + [ + 87.48783854900006, + 43.727070643000104 + ], + [ + 87.50024460400005, + 43.61178024700018 + ], + [ + 87.55072059200006, + 43.54768953300004 + ], + [ + 87.67736058800011, + 43.65864313300017 + ], + [ + 87.78247853900012, + 43.86126441000016 + ], + [ + 87.83969156600006, + 44.15011552300007 + ], + [ + 87.95226253700014, + 44.26990431900009 + ], + [ + 88.02730554900018, + 44.30734242400001 + ], + [ + 88.49073762300009, + 44.35644914500017 + ], + [ + 88.82892663000018, + 44.25026334000006 + ], + [ + 88.91112560700014, + 44.23985636900011 + ], + [ + 89.19975258800014, + 44.15466270500008 + ], + [ + 89.25775954900007, + 44.15370163600005 + ], + [ + 89.37187161700001, + 44.24279741100008 + ], + [ + 89.45359752000007, + 44.2428352980001 + ], + [ + 89.84411659200003, + 44.10920378900005 + ], + [ + 89.98289458900013, + 44.04803886200017 + ], + [ + 90.07185357200018, + 43.943631194000034 + ], + [ + 90.37422150900011, + 43.812840479000045 + ], + [ + 90.57593552900005, + 43.804417672000056 + ], + [ + 90.78324162000007, + 43.697831883000106 + ], + [ + 90.94246660000005, + 43.65477086100009 + ], + [ + 91.05020859000018, + 43.66227886700011 + ], + [ + 91.18583666800015, + 43.58411510500014 + ], + [ + 91.37513759300003, + 43.43800176900004 + ], + [ + 91.35507165200005, + 43.34699106400018 + ], + [ + 91.48023961800016, + 43.165001002999986 + ], + [ + 91.42168464800011, + 43.14874597800019 + ], + [ + 91.06172951600007, + 43.21189758400004 + ], + [ + 90.62602259800013, + 43.200945956000055 + ], + [ + 90.36392953800004, + 43.20470792200007 + ], + [ + 90.04394552200017, + 43.19209181700012 + ], + [ + 89.74685650700002, + 43.23542374200008 + ], + [ + 88.93438756800003, + 43.38342501800008 + ], + [ + 88.22862964300003, + 43.40396688300001 + ], + [ + 87.94252762700006, + 43.384103952000146 + ], + [ + 87.77752651100019, + 43.196524670000144 + ], + [ + 87.72564655300005, + 43.08548725200018 + ], + [ + 87.75016764300011, + 43.030147748000104 + ], + [ + 87.70919757100006, + 42.77444203300013 + ], + [ + 87.64594253299998, + 42.70802148500019 + ], + [ + 87.51231353800017, + 42.69065334400011 + ], + [ + 87.2825466290002, + 42.73990423300012 + ], + [ + 87.1815104980002, + 42.68925641600015 + ], + [ + 86.98476459900019, + 42.71939623100019 + ], + [ + 86.89411951300013, + 42.764477962 + ], + [ + 86.61640962600012, + 42.64432757100019 + ], + [ + 86.51864662700007, + 42.62903881200009 + ], + [ + 86.33483165800004, + 42.643572696000035 + ], + [ + 86.1071166390002, + 42.586837103000164 + ], + [ + 85.86558556100005, + 42.4562488950001 + ], + [ + 85.2259365450002, + 42.37133837200014 + ], + [ + 84.85893256700007, + 42.295357928000044 + ], + [ + 84.58765461800004, + 42.352237691000084 + ], + [ + 84.06775651100014, + 42.34978849900011 + ], + [ + 83.95552852700013, + 42.40364138800004 + ], + [ + 83.69401549500003, + 42.383316447000084 + ], + [ + 83.43952163600017, + 42.29435008800016 + ], + [ + 83.32900959500006, + 42.27114914800018 + ], + [ + 83.1201245210001, + 42.27278998900016 + ], + [ + 82.81886266000004, + 42.156519078000144 + ], + [ + 82.68108361800006, + 42.1620918700001 + ], + [ + 82.48322259100013, + 42.077749472000164 + ], + [ + 82.12638854300002, + 42.07224155600011 + ], + [ + 81.96351659800018, + 42.03564281400003 + ], + [ + 81.76140561000005, + 41.94714651200013 + ], + [ + 81.59974652600016, + 41.973025471000085 + ], + [ + 81.53350065700016, + 41.91625182299998 + ], + [ + 81.36636349600019, + 41.86794708300005 + ], + [ + 80.94985951800015, + 41.86889323200012 + ], + [ + 80.917846515, + 41.83739152500016 + ], + [ + 80.72234365300011, + 41.78255175000015 + ], + [ + 80.31821454900006, + 41.73690524700015 + ], + [ + 80.04701254000014, + 41.68583062200008 + ], + [ + 79.68712664200007, + 41.65726694000011 + ], + [ + 79.40489153300013, + 41.59202036200014 + ], + [ + 79.26673849000002, + 41.5385498550001 + ], + [ + 78.91287951600009, + 41.22117395200007 + ], + [ + 78.81550560500006, + 41.16741443700005 + ], + [ + 78.68939953700016, + 41.144572745000175 + ], + [ + 78.51751754800017, + 41.04898451500003 + ], + [ + 78.40388458900014, + 40.94730063000014 + ], + [ + 78.32781965600003, + 40.84255785300007 + ], + [ + 77.95380354600007, + 40.65678487200006 + ], + [ + 77.67061658800009, + 40.62294411100004 + ], + [ + 77.44164260700018, + 40.61010823200019 + ], + [ + 76.95099650500009, + 40.616837392000036 + ], + [ + 76.82504265100016, + 40.66598166300008 + ], + [ + 76.72171054900019, + 40.57083666900007 + ], + [ + 76.60466749699998, + 40.41347062700004 + ], + [ + 76.46410365100002, + 40.30230781600011 + ], + [ + 76.31933561000011, + 40.25603250200004 + ], + [ + 76.05007149700009, + 40.06761486200014 + ], + [ + 75.8490214900001, + 40.03027717100014 + ], + [ + 75.61696648900016, + 40.07916579500011 + ], + [ + 75.53392764500006, + 40.07088078700008 + ], + [ + 75.36318157200009, + 39.97414105100006 + ], + [ + 75.09951053400005, + 40.0290604540001 + ], + [ + 74.95004259300009, + 40.00053482600015 + ], + [ + 74.87572461600013, + 39.91117669700009 + ], + [ + 74.65184062900016, + 39.91034102100019 + ], + [ + 74.69107849700003, + 39.74851597500003 + ], + [ + 74.76907361500008, + 39.66233207300013 + ], + [ + 74.94715854800012, + 39.51230539400012 + ], + [ + 75.26941657300011, + 39.276335709000136 + ], + [ + 75.54982761200017, + 39.131485693000116 + ], + [ + 75.69802854500006, + 39.11903085500006 + ], + [ + 75.73348248700006, + 39.012187741 + ], + [ + 75.72876749900007, + 38.88786450300017 + ], + [ + 75.87084159600016, + 38.76597151500016 + ], + [ + 76.01798255400007, + 38.69696062300005 + ], + [ + 76.28955051700012, + 38.65320725600003 + ], + [ + 76.35944352000007, + 38.62213285900009 + ], + [ + 76.64879654100014, + 38.41621933700014 + ], + [ + 76.73338352200011, + 38.32321474600019 + ], + [ + 76.64453853400016, + 38.059600538000154 + ], + [ + 76.62652548900019, + 37.947797348999984 + ], + [ + 76.7049945190002, + 37.926412767000045 + ], + [ + 76.7750855020002, + 37.78016045800007 + ], + [ + 76.92781853100007, + 37.66556877800019 + ], + [ + 77.0340495980002, + 37.55015701200017 + ], + [ + 77.25023665100014, + 37.49573784100011 + ], + [ + 77.39866657800013, + 37.47434538000016 + ], + [ + 77.83690650600005, + 37.372045257000025 + ], + [ + 78.20854165300011, + 37.1925558530001 + ], + [ + 78.4341816490001, + 37.211098467000056 + ], + [ + 78.70064553600008, + 37.182538138000155 + ], + [ + 78.84893749700007, + 37.10614245400012 + ], + [ + 78.95929749000004, + 37.10703546200011 + ], + [ + 79.24906155899998, + 36.903284639000105 + ], + [ + 79.61236559700006, + 36.76831655200016 + ], + [ + 79.85322562000005, + 36.578451525000105 + ], + [ + 80.02619960300012, + 36.502716336000105 + ], + [ + 80.19334464400004, + 36.52534060200014 + ], + [ + 80.32084663400019, + 36.50991823500016 + ], + [ + 80.47158057900009, + 36.52486769500018 + ], + [ + 80.63704655600014, + 36.46387225000012 + ], + [ + 80.82657664200008, + 36.34569562900003 + ], + [ + 81.13422350200005, + 36.2537627480001 + ], + [ + 81.3984375190002, + 36.2666034880001 + ], + [ + 81.58922556100015, + 36.26247171300008 + ], + [ + 81.86233562700016, + 36.226473282000086 + ], + [ + 82.15083352600016, + 36.28534391500017 + ], + [ + 82.63478852200012, + 36.24835776100008 + ], + [ + 82.7071305500001, + 36.28304811100014 + ], + [ + 82.72764559300015, + 36.40390224700019 + ], + [ + 83.0093005060001, + 36.46351316900018 + ], + [ + 83.14855962500019, + 36.52510087900009 + ], + [ + 83.22268649500006, + 36.614297740000154 + ], + [ + 83.49214959400007, + 36.707949750000125 + ], + [ + 83.61543263800019, + 36.65163895100005 + ], + [ + 83.78628549700005, + 36.72066459400003 + ], + [ + 83.90978965500017, + 36.92177830300017 + ], + [ + 83.94152052300018, + 36.940932125000074 + ], + [ + 84.27795452700008, + 36.96301056100003 + ], + [ + 84.556396657, + 37.130007074000105 + ], + [ + 84.72686763600012, + 37.18773391200017 + ], + [ + 84.9355396420001, + 37.17791903800003 + ], + [ + 85.01065054700013, + 37.201595736000115 + ], + [ + 85.2034685180002, + 37.31024749700009 + ], + [ + 85.30768558200003, + 37.33369620600007 + ], + [ + 85.47188555700012, + 37.40448858700017 + ], + [ + 85.7398226470001, + 37.45543262100017 + ], + [ + 85.91211635500008, + 37.500826829000175 + ], + [ + 86.19968453400008, + 37.64668200300008 + ], + [ + 86.40857664800012, + 37.787407452000025 + ], + [ + 86.4607845060001, + 37.90975004600011 + ], + [ + 86.53864266300008, + 37.992833817000076 + ], + [ + 86.85144053800019, + 38.061431313000014 + ], + [ + 86.98464959900008, + 38.19013007200016 + ], + [ + 87.2091976000001, + 38.28535452700015 + ], + [ + 87.29177057800018, + 38.27234665200007 + ], + [ + 87.43154166400006, + 38.194650097000135 + ], + [ + 87.51966865900005, + 38.08607008500013 + ], + [ + 87.68080856800015, + 38.11336441200007 + ], + [ + 87.77450550499998, + 38.23745748200008 + ], + [ + 87.8895726070001, + 38.29197623099998 + ], + [ + 87.8864055890001, + 38.36839521500019 + ], + [ + 87.93839249900009, + 38.489773052000146 + ], + [ + 88.02319355500009, + 38.52602746600007 + ], + [ + 88.19917261800015, + 38.440117987000065 + ], + [ + 88.27085163700008, + 38.440731710000136 + ], + [ + 88.32115160500013, + 38.590300402000025 + ], + [ + 88.45819052600018, + 38.74657780200016 + ], + [ + 88.6182255330001, + 38.78917614300002 + ], + [ + 88.92399551700004, + 38.80105883200008 + ], + [ + 89.15949263000005, + 38.768367398000066 + ], + [ + 89.46538566100014, + 38.707092500000044 + ], + [ + 89.7102356370001, + 38.676452956000105 + ], + [ + 89.91732061400012, + 38.666169199000194 + ], + [ + 90.31523151800008, + 38.711548320000134 + ], + [ + 90.45931961900004, + 38.71053746300004 + ], + [ + 90.85181464100003, + 38.739699780000024 + ], + [ + 90.87126166200017, + 38.68309896700015 + ], + [ + 90.68724066600004, + 38.60399023000008 + ], + [ + 90.36550852100004, + 38.52806024500018 + ], + [ + 89.87111654600005, + 38.37427713200003 + ], + [ + 89.50697364700017, + 38.225933371 + ], + [ + 89.34811361500016, + 38.10873642800016 + ], + [ + 89.18606561000013, + 38.03586181400016 + ], + [ + 89.0428926460001, + 38.009957375000056 + ], + [ + 88.80892154100007, + 38.003304323000066 + ], + [ + 88.64282960300017, + 37.896521559000064 + ], + [ + 88.41566460500007, + 37.82097261600006 + ], + [ + 88.3135525720001, + 37.80304422800009 + ], + [ + 88.28140260900017, + 37.7470029910001 + ], + [ + 88.4260405620002, + 37.71449880800003 + ], + [ + 88.54985066000017, + 37.748651208000126 + ], + [ + 88.65113858400014, + 37.741960102000064 + ], + [ + 88.91711464500008, + 37.41208342900006 + ], + [ + 89.0431826590002, + 37.35553156700007 + ], + [ + 89.10250859700005, + 37.230160088000105 + ], + [ + 89.29798866100009, + 37.14712677600011 + ], + [ + 89.68309050800008, + 37.118704413000046 + ], + [ + 90.03530864100009, + 37.10744366100005 + ], + [ + 90.40077252800006, + 37.069064268000034 + ], + [ + 90.55601459500008, + 37.04200379600013 + ], + [ + 90.70196565800018, + 36.972875391 + ], + [ + 90.79229759600008, + 36.88589001100007 + ], + [ + 90.85804759200016, + 36.86748854800015 + ], + [ + 90.90578454200005, + 36.979490053 + ], + [ + 91.07998664200005, + 36.93605704300012 + ], + [ + 91.05949355900003, + 37.03862404500018 + ], + [ + 91.1129305390001, + 37.06416353600008 + ], + [ + 91.41487150200004, + 37.0075464630001 + ], + [ + 91.60625465900006, + 36.92145442600008 + ], + [ + 91.72602065600006, + 36.828942187000166 + ], + [ + 91.79920959100008, + 36.654835138000124 + ], + [ + 91.88272050400019, + 36.585062332000064 + ], + [ + 92.23078959500009, + 36.435887757000046 + ], + [ + 92.60936764000013, + 36.388411820000044 + ], + [ + 92.70270566400006, + 36.38924280100014 + ], + [ + 93.07515754300005, + 36.32185012100018 + ], + [ + 93.1706235650002, + 36.26144945600015 + ], + [ + 93.30374863900016, + 36.29844784700009 + ], + [ + 93.53353164200007, + 36.32836202100003 + ], + [ + 93.45451359700002, + 36.187572199000044 + ], + [ + 93.57221261600006, + 36.19121899800007 + ], + [ + 93.6829985780002, + 36.15603696500011 + ], + [ + 93.805419626, + 36.24178500800008 + ], + [ + 93.89347856000018, + 36.24492084500008 + ], + [ + 94.14411959400019, + 36.147446185000035 + ], + [ + 94.33969152300011, + 36.128670721000105 + ], + [ + 94.38007352100016, + 36.21044775400014 + ], + [ + 94.33551767000017, + 36.50508925300011 + ], + [ + 95.13373553100013, + 36.112812999000084 + ], + [ + 95.87634264800016, + 36.26645060200002 + ], + [ + 96.29341860700015, + 36.55070826400015 + ], + [ + 96.69577762000017, + 36.85540368800014 + ], + [ + 97.88407165300003, + 36.711112745000094 + ], + [ + 97.89931464600011, + 36.804192774000114 + ], + [ + 98.53949759000011, + 36.85540368800014 + ], + [ + 99.10176051700012, + 36.96352956900017 + ], + [ + 99.0434955610001, + 37.01283745500018 + ], + [ + 98.73680859600006, + 37.181630042000165 + ], + [ + 98.52856457000019, + 37.343888936000155 + ], + [ + 98.26335159800004, + 37.455966716000034 + ], + [ + 98.01416063400006, + 37.53143117000013 + ], + [ + 97.88605464300014, + 37.63529619299999 + ], + [ + 97.73811354900016, + 37.71919451800005 + ], + [ + 97.48287956800016, + 37.89675843100014 + ], + [ + 97.32762861600014, + 37.96009611500011 + ], + [ + 97.16912867100001, + 38.078769280000074 + ], + [ + 97.05928751800019, + 38.193765136000025 + ], + [ + 96.8461226440001, + 38.32605285799997 + ], + [ + 96.77664152800008, + 38.33742760400003 + ], + [ + 96.65366358600016, + 38.28854350600011 + ], + [ + 96.58145164600006, + 38.213303687000064 + ], + [ + 96.48636666600004, + 38.198579030000076 + ], + [ + 96.26768465600014, + 38.262874766000095 + ], + [ + 96.01489265800012, + 38.295135202000154 + ], + [ + 95.91799165499998, + 38.35356746100007 + ], + [ + 95.86746956600018, + 38.47696315800016 + ], + [ + 95.86301458400015, + 38.66314031500008 + ], + [ + 95.888435555, + 38.73462302900003 + ], + [ + 95.7766645530001, + 38.84295124900018 + ], + [ + 95.77189659100014, + 38.9526366660001 + ], + [ + 95.69081860900013, + 39.05755110400003 + ], + [ + 95.6049805450001, + 39.11478223600011 + ], + [ + 95.09469564300008, + 39.30553708600013 + ], + [ + 94.95321666100006, + 39.37663423300006 + ], + [ + 95.19133764600008, + 39.54878880100017 + ], + [ + 95.57197562700003, + 39.73775914400005 + ], + [ + 95.7735136280001, + 39.8738314630001 + ], + [ + 95.90388457600011, + 39.92849857100009 + ], + [ + 96.07133455000013, + 39.91246197800007 + ], + [ + 96.44329055600014, + 39.83097697100004 + ], + [ + 96.68690453800019, + 39.73456614100007 + ], + [ + 96.86002352800011, + 39.60904881800013 + ], + [ + 96.98000359900004, + 39.56976954300006 + ], + [ + 97.2229235580001, + 39.571425304 + ], + [ + 97.62814365000014, + 39.6037009960001 + ], + [ + 97.80030056500016, + 39.588267062000114 + ], + [ + 98.09011861400012, + 39.477786873000184 + ], + [ + 98.34158358900004, + 39.49132565800011 + ], + [ + 98.48214760200011, + 39.41901045300011 + ], + [ + 98.69230655800015, + 39.39532202100003 + ], + [ + 98.77479554900015, + 39.332395721000125 + ], + [ + 99.03603365499998, + 39.24387310100019 + ], + [ + 99.38948862200004, + 39.0818696880001 + ], + [ + 99.60106663400006, + 38.95739356400003 + ], + [ + 99.75611155800004, + 38.84867625600003 + ], + [ + 99.97543361000015, + 38.7370831180001 + ], + [ + 100.27960164500013, + 38.61550679700008 + ], + [ + 100.76683765400008, + 38.437367047 + ], + [ + 100.96056355300016, + 38.39945770999998 + ], + [ + 101.10263060900013, + 38.31392206500004 + ], + [ + 101.19532054500007, + 38.28826153900013 + ], + [ + 101.51659352900003, + 38.26360684100018 + ], + [ + 101.70043951100007, + 38.202604020000024 + ], + [ + 101.93159463200016, + 38.18588011200006 + ], + [ + 102.16795357200016, + 38.12799318000009 + ], + [ + 102.25092351800004, + 38.08567395600011 + ], + [ + 102.3705825620001, + 37.939599680000185 + ], + [ + 102.5417785750002, + 37.7880942650001 + ], + [ + 102.61456266400006, + 37.64934091000009 + ], + [ + 102.70539064300004, + 37.560601534000114 + ], + [ + 102.84967052200011, + 37.471850255 + ], + [ + 103.22192358300009, + 37.374913209 + ], + [ + 103.49555953000004, + 37.34778769400015 + ], + [ + 103.6501845210002, + 37.361463607000076 + ], + [ + 103.78275253400017, + 37.34885974000002 + ], + [ + 103.85649853000012, + 37.31083540300011 + ], + [ + 103.83317554900015, + 37.15019773800003 + ], + [ + 103.7360836060002, + 37.0591194750001 + ], + [ + 103.632308604, + 36.87816642300015 + ], + [ + 103.51783762200017, + 36.86548259100016 + ], + [ + 103.50186154700003, + 36.97919216100007 + ], + [ + 103.352577672, + 37.02453641300019 + ], + [ + 103.18982659400012, + 37.03276492700019 + ], + [ + 103.10958864600019, + 36.98520416400004 + ], + [ + 103.10003662900004, + 36.91329062000017 + ], + [ + 103.13902253700007, + 36.80000081700007 + ], + [ + 103.2717206370001, + 36.60230809800004 + ], + [ + 103.58095553300018, + 36.44095746800002 + ], + [ + 103.98807563400015, + 36.205042768000055 + ], + [ + 104.21240252100012, + 36.13304238700016 + ], + [ + 104.45349153800004, + 36.201704926000104 + ], + [ + 104.57711756900005, + 36.32165918100003 + ], + [ + 104.6624295850001, + 36.32010718800012 + ], + [ + 104.74233259200014, + 36.38359373400016 + ], + [ + 104.796348593, + 36.47378586200006 + ], + [ + 104.62748761000006, + 36.72779038600004 + ], + [ + 104.50940654300007, + 36.83799799600007 + ], + [ + 104.39919256300004, + 36.885231025999985 + ], + [ + 104.29685254300006, + 36.98756501100007 + ], + [ + 104.3362196600001, + 37.15287977900016 + ], + [ + 104.43067951700004, + 37.2316019430001 + ], + [ + 104.68259460000007, + 37.27096134900012 + ], + [ + 104.77706166700011, + 37.373296172000096 + ], + [ + 104.89514156000001, + 37.389043086000186 + ], + [ + 105.09159057200009, + 37.44557600600007 + ], + [ + 105.00535554000004, + 37.73541048300018 + ], + [ + 105.01322966800018, + 37.947957611000106 + ], + [ + 105.06832861100014, + 38.05029260200007 + ], + [ + 105.09982260700008, + 38.231354451000016 + ], + [ + 105.09982260700008, + 38.42028104000002 + ], + [ + 105.27301066400008, + 38.75878068000014 + ], + [ + 105.29662365800004, + 39.05005097700007 + ], + [ + 105.44619754700005, + 39.27046871200008 + ], + [ + 105.58789865000006, + 39.38067799800007 + ], + [ + 105.713851665, + 39.43578448500017 + ], + [ + 105.84767964600013, + 39.58535233900011 + ], + [ + 105.96576658000004, + 39.632585705000054 + ], + [ + 106.03661361100006, + 39.62471157700014 + ], + [ + 106.19406162700011, + 39.69556179300014 + ], + [ + 106.38299559199999, + 39.67981789700008 + ], + [ + 106.63490262800019, + 39.632585705000054 + ], + [ + 106.737243654, + 39.49088661400003 + ], + [ + 106.74511761400015, + 39.7979003050001 + ], + [ + 106.69788357800013, + 40.00257581900013 + ], + [ + 106.72149657300014, + 40.097037354000065 + ], + [ + 106.78447752300008, + 40.097037354000065 + ], + [ + 106.8946836240001, + 40.20724999300006 + ], + [ + 106.97341165500012, + 40.22299388900012 + ], + [ + 107.10723863000015, + 40.325332736000064 + ], + [ + 107.26467860000008, + 40.348945228000105 + ], + [ + 107.55318454600013, + 40.55053888400005 + ], + [ + 107.89991756100017, + 40.632397221000076 + ], + [ + 108.01449566300016, + 40.629830180000056 + ], + [ + 108.25919359200009, + 40.58053671000016 + ], + [ + 108.65489955300012, + 40.550004957000056 + ], + [ + 108.79934656700004, + 40.64478701500008 + ], + [ + 108.83644068000012, + 40.768267704000095 + ], + [ + 108.95719859100006, + 40.87326260900005 + ], + [ + 108.91356659400014, + 40.96425755500013 + ], + [ + 109.07307454699998, + 40.95950468100011 + ], + [ + 109.17716253000003, + 41.006466138000064 + ], + [ + 109.36205256200014, + 41.15144976100004 + ], + [ + 109.4788815400002, + 41.12933695900006 + ], + [ + 109.6120076200001, + 41.13780067000005 + ], + [ + 109.82106066700004, + 41.23403363600005 + ], + [ + 110.40567058700015, + 41.33636192100016 + ], + [ + 110.5902405980001, + 41.39219344300011 + ], + [ + 110.89433252500004, + 41.53247699800005 + ], + [ + 111.05481764000007, + 41.58605848200017 + ], + [ + 111.23927265100014, + 41.57774564600015 + ], + [ + 111.57257852800012, + 41.597864393000066 + ], + [ + 111.7402645360001, + 41.68041390100012 + ], + [ + 111.81005058599999, + 41.79331294000002 + ], + [ + 111.88455967000004, + 41.83464444000015 + ], + [ + 112.07614868700011, + 41.87124620000009 + ], + [ + 112.2823716690001, + 41.870613031000175 + ], + [ + 112.46524853500023, + 41.90598684200006 + ], + [ + 112.74767257200006, + 41.99150404700009 + ], + [ + 112.8514785870002, + 42.04824668200018 + ], + [ + 113.12969155600013, + 42.26011739000012 + ], + [ + 113.21205867400022, + 42.37813542500004 + ], + [ + 113.09298653100007, + 42.552211460000194 + ], + [ + 113.16339166800014, + 42.70775846100008 + ], + [ + 113.27466562400014, + 42.71919825000009 + ], + [ + 113.3913195880001, + 42.78453200000018 + ], + [ + 113.42525456100009, + 42.84155056700018 + ], + [ + 113.39370759200017, + 42.980568958000106 + ], + [ + 113.30438265600003, + 43.191451775000075 + ], + [ + 113.28672768500007, + 43.27928439700014 + ], + [ + 113.52883962900012, + 43.492254475000095 + ], + [ + 113.51895166600013, + 43.52511455300004 + ], + [ + 113.63694757300004, + 43.6246810020001 + ], + [ + 113.68862954900021, + 43.70570098100018 + ], + [ + 113.74052459400014, + 43.91635933000009 + ], + [ + 113.96052558100007, + 44.03175399700001 + ], + [ + 114.02391053800034, + 44.08521662600015 + ], + [ + 114.05354257800002, + 44.23978730200014 + ], + [ + 113.99842066800022, + 44.392814200000146 + ], + [ + 114.00344863600003, + 44.46502194900012 + ], + [ + 114.10105154000007, + 44.64579697000016 + ], + [ + 114.11517353800002, + 44.868182943000136 + ], + [ + 114.04215961800003, + 44.97173582400018 + ], + [ + 113.82996352500004, + 45.061083727000096 + ], + [ + 113.67361454300021, + 45.10575373900019 + ], + [ + 113.26596856100002, + 45.19510180900005 + ], + [ + 113.07052655100017, + 45.2565260720001 + ], + [ + 112.80249055400009, + 45.40171421400004 + ], + [ + 112.72431153700006, + 45.463138309000044 + ], + [ + 112.71884955400014, + 45.534191200000066 + ], + [ + 112.80730461600001, + 45.669368499000086 + ], + [ + 112.76609063100011, + 45.790622620000136 + ], + [ + 112.67774956200014, + 45.78536565800016 + ], + [ + 112.49346956500005, + 45.655528301000174 + ], + [ + 112.22732553100013, + 45.51570105700006 + ], + [ + 112.07913968500009, + 45.50955930100008 + ], + [ + 111.92581154200019, + 45.568595224000035 + ], + [ + 111.9754255360001, + 45.668537518000164 + ], + [ + 112.16196462300013, + 45.80579772000016 + ], + [ + 112.23055256400005, + 45.90438885000009 + ], + [ + 112.1202545970001, + 45.95759197500007 + ], + [ + 111.7485426720001, + 45.76155468200005 + ], + [ + 111.34117161600005, + 45.6615755090001 + ], + [ + 111.241714635, + 45.658401450000156 + ], + [ + 111.17668162700011, + 45.71945154400004 + ], + [ + 111.197799665, + 45.78017776200011 + ], + [ + 111.33629552700012, + 45.868041901000026 + ], + [ + 111.38591756800008, + 45.94031905200006 + ], + [ + 111.34525259700013, + 46.02491843900003 + ], + [ + 111.02151466200007, + 46.138359619000084 + ], + [ + 110.98316963400015, + 46.40650340800016 + ], + [ + 110.81587254599998, + 46.40923171700018 + ], + [ + 110.649749596, + 46.35383421000006 + ], + [ + 110.27175861900008, + 46.35848834600017 + ], + [ + 110.06481965500018, + 46.33205618200003 + ], + [ + 109.85482766700005, + 46.22215803200004 + ], + [ + 109.67687265400014, + 46.16055758099998 + ], + [ + 109.42992368200004, + 46.11628068100009 + ], + [ + 109.15283154100013, + 46.090588471000046 + ], + [ + 108.59495553500005, + 45.94120418099999 + ], + [ + 108.21128062200006, + 45.82108664700013 + ], + [ + 108.06356852100004, + 45.802650651000135 + ], + [ + 107.77336155200004, + 45.8347627280001 + ], + [ + 107.44017754800007, + 45.818721777000064 + ], + [ + 106.9377666060002, + 45.900246011000036 + ], + [ + 106.35173763100016, + 46.091320379000194 + ], + [ + 106.09592462800003, + 46.07795861900007 + ], + [ + 105.95674161699998, + 46.00198421100009 + ], + [ + 105.91256764600013, + 45.85467980600009 + ], + [ + 105.84479560000011, + 45.733722573000136 + ], + [ + 105.77677159400014, + 45.708408387000134 + ], + [ + 105.2779615190002, + 45.658286618000034 + ], + [ + 105.18582965000013, + 45.56010016600004 + ], + [ + 105.1565325520001, + 45.41699911800015 + ], + [ + 105.10201263000016, + 45.38182814900017 + ], + [ + 104.9537585560002, + 45.387865969000075 + ], + [ + 104.7786946290002, + 45.543086243000175 + ], + [ + 104.6404346330001, + 45.58552532800019 + ], + [ + 104.347076571, + 45.53836035900014 + ], + [ + 104.2391355950001, + 45.57057117400012 + ], + [ + 104.102889603, + 45.71438971300017 + ], + [ + 103.94393167100009, + 45.82793080600004 + ], + [ + 103.85309564500005, + 45.92633518800011 + ], + [ + 103.61087758600013, + 46.107998522 + ], + [ + 103.46706357300013, + 46.19126284000009 + ], + [ + 103.36865952700003, + 46.32750832900007 + ], + [ + 103.34910555300007, + 46.41224065300014 + ], + [ + 103.22539553500013, + 46.38772760900014 + ], + [ + 102.9486235830002, + 46.40914756300015 + ], + [ + 102.98482552600018, + 46.264017089 + ], + [ + 102.93005364400017, + 46.18929393100018 + ], + [ + 102.50904053800008, + 46.02225534100012 + ], + [ + 102.24060053300002, + 45.88834789900005 + ], + [ + 102.06291960800007, + 45.848438976000125 + ], + [ + 101.81732967700003, + 45.89011799000002 + ], + [ + 101.70646660300014, + 45.98214810200011 + ], + [ + 101.58770760700003, + 45.96318907500006 + ], + [ + 101.49460561800004, + 45.99850136200013 + ], + [ + 101.27572663300009, + 46.20778776200012 + ], + [ + 100.928871577, + 46.35325435000004 + ], + [ + 100.78847453100019, + 46.4341185940001 + ], + [ + 100.46134159000007, + 46.670260611000174 + ], + [ + 100.26726566300016, + 46.75627117500011 + ], + [ + 99.93353264400014, + 46.82765548599997 + ], + [ + 99.73019354000019, + 46.909202854000114 + ], + [ + 99.65536460200013, + 47.011586293000164 + ], + [ + 99.3438496620002, + 47.042855486000065 + ], + [ + 99.05282562500008, + 47.05038159700007 + ], + [ + 98.67315659100012, + 46.85469047700019 + ], + [ + 98.4825896640001, + 46.7944101760001 + ], + [ + 98.26786760000016, + 46.80935645000011 + ], + [ + 98.08370159700007, + 46.686900868000066 + ], + [ + 97.96461453400008, + 46.68364282200014 + ], + [ + 97.69068857300016, + 46.80271127700013 + ], + [ + 97.49111160300009, + 46.91113270400007 + ], + [ + 97.14984157700007, + 46.975667156000156 + ], + [ + 97.08081861599999, + 47.006165213000145 + ], + [ + 96.93931566100008, + 47.140264097000056 + ], + [ + 96.81598651700006, + 47.41111674900003 + ], + [ + 96.753936629, + 47.50334517700014 + ], + [ + 96.51557961000003, + 47.597085029000084 + ], + [ + 96.35732257199999, + 47.70630776600012 + ], + [ + 96.29782866200009, + 47.970641811000064 + ], + [ + 96.06281266900015, + 48.1120198750001 + ], + [ + 95.91919663700003, + 48.2404348230001 + ], + [ + 95.75234965800013, + 48.48236488000015 + ], + [ + 95.6045306040001, + 48.846301584000116 + ], + [ + 95.61575363700007, + 48.90838734700003 + ], + [ + 95.73443551900016, + 49.113215244000116 + ], + [ + 95.75088466900013, + 49.295853394 + ], + [ + 95.98220860000015, + 49.552536271 + ], + [ + 96.03568262800007, + 49.67622499900011 + ], + [ + 96.10526265000016, + 49.929566011000134 + ], + [ + 96.09924360600007, + 50.12550355900015 + ], + [ + 95.99460560300014, + 50.30492993100006 + ], + [ + 95.86627162399998, + 50.39531350200002 + ], + [ + 95.48547354800002, + 50.473572482000066 + ], + [ + 95.31828257500007, + 50.59301225600012 + ], + [ + 95.24101266000008, + 50.68963648800019 + ], + [ + 95.08084052500016, + 50.79055225600007 + ], + [ + 94.13356761600005, + 50.83976173900015 + ], + [ + 93.82704158400009, + 50.92817707100011 + ], + [ + 93.30245262900002, + 51.129447521000145 + ], + [ + 92.8337785130002, + 51.15841973700009 + ], + [ + 92.52771750900013, + 51.15832871000015 + ], + [ + 92.24713866400003, + 51.11112904000015 + ], + [ + 92.00578260100008, + 51.04003692200018 + ], + [ + 91.69564061600016, + 50.87097443800013 + ], + [ + 91.5062025630001, + 50.78741206000012 + ], + [ + 91.28237959600006, + 50.744942465000065 + ], + [ + 90.88684060300017, + 50.744282474000045 + ], + [ + 90.56905365200004, + 50.655696151000086 + ], + [ + 90.44064356500019, + 50.65246090400018 + ], + [ + 90.13629951100012, + 50.68738158900004 + ], + [ + 89.99096653000015, + 50.68070255300006 + ], + [ + 89.97113058800011, + 50.604720433000125 + ], + [ + 90.07962057800017, + 50.540349428000184 + ], + [ + 90.05658761100017, + 50.43077867500017 + ], + [ + 89.94873850100004, + 50.39531635200012 + ], + [ + 89.73191861500004, + 50.457470176000186 + ], + [ + 89.6280666670001, + 50.429427848000046 + ], + [ + 89.69271863300008, + 50.25729138400004 + ], + [ + 89.789649644, + 50.18242355500007 + ], + [ + 89.96729251500005, + 50.09993741300008 + ], + [ + 90.1154636080002, + 49.97963463900015 + ], + [ + 90.16506150900011, + 49.89887667800008 + ], + [ + 90.183257615, + 49.516136012000175 + ], + [ + 90.14050253200014, + 49.44015808300014 + ], + [ + 90.12619060000009, + 49.397371485000065 + ], + [ + 90.35880266300012, + 49.144030808000196 + ], + [ + 90.43871254300012, + 49.12097051600017 + ], + [ + 90.58031457100003, + 49.13844259300015 + ], + [ + 90.78758260800004, + 49.203636366000126 + ], + [ + 91.04930166800011, + 49.1867443160001 + ], + [ + 91.18947558700006, + 49.09652922200007 + ], + [ + 91.37321461600015, + 48.877734727000075 + ], + [ + 91.49098957600017, + 48.76207955000007 + ], + [ + 91.50154859500014, + 48.572648034999986 + ], + [ + 91.43656152, + 48.491772225000034 + ], + [ + 91.18743157600011, + 48.34802895600018 + ], + [ + 91.13345362900014, + 48.27921520700016 + ], + [ + 91.28591156300013, + 48.079933615000186 + ], + [ + 91.38484165700004, + 47.90567334400009 + ], + [ + 91.43266259400019, + 47.869421781000085 + ], + [ + 91.94166556700009, + 47.62402815400014 + ], + [ + 92.06483461699997, + 47.50938031500016 + ], + [ + 92.08615164100001, + 47.41519873600015 + ], + [ + 92.05090355900018, + 47.28650886200012 + ], + [ + 92.0794146020001, + 47.24646951600016 + ], + [ + 92.31144764300018, + 47.12151897700005 + ], + [ + 92.39793362900019, + 47.101315740000075 + ], + [ + 92.59176664900019, + 47.179742358000055 + ], + [ + 92.6930545730001, + 47.18038323900009 + ], + [ + 93.04484556400013, + 47.037850316000174 + ], + [ + 93.36682162300008, + 46.84778965600003 + ], + [ + 93.36173263400008, + 46.7823412410001 + ], + [ + 93.21614853100016, + 46.78406104000004 + ], + [ + 93.08467066800011, + 46.84747349000014 + ], + [ + 92.83353460000018, + 46.922302763000175 + ], + [ + 92.74374362900016, + 46.862243410000076 + ], + [ + 93.09159060000019, + 46.633315361000086 + ], + [ + 93.2562175490001, + 46.56237311200016 + ], + [ + 93.37711359400015, + 46.47139593500009 + ], + [ + 93.5815125060002, + 46.46739776700019 + ], + [ + 93.4875025880001, + 46.60027926300012 + ], + [ + 93.455963666, + 46.774214986000175 + ], + [ + 93.54978951700008, + 46.823341488000096 + ], + [ + 93.73909765000002, + 46.727306 + ], + [ + 93.86468454300007, + 46.68604574600016 + ], + [ + 93.99472055100011, + 46.59017823200003 + ], + [ + 94.00510355000006, + 46.50072002300004 + ], + [ + 93.91964753200017, + 46.367177362000064 + ], + [ + 94.04146558700012, + 46.20902375700018 + ], + [ + 94.30271157200002, + 46.008297293 + ], + [ + 94.69187964900004, + 45.889210062000075 + ], + [ + 95.01139863600008, + 45.85885701100017 + ], + [ + 95.17227166600014, + 45.91292213100013 + ], + [ + 95.28081563600006, + 45.91550912100013 + ], + [ + 95.41068266400009, + 45.97776805400008 + ], + [ + 95.54271658300013, + 45.952481026000044 + ], + [ + 95.78490463400004, + 45.87122786200007 + ], + [ + 96.071205637, + 45.896626035 + ], + [ + 96.20712255500007, + 45.88599778100013 + ], + [ + 96.41653451600001, + 45.78306985400013 + ], + [ + 96.60819964000007, + 45.76625072700017 + ], + [ + 96.80750252200016, + 45.77830155700019 + ], + [ + 96.94299364000017, + 45.70111043200018 + ], + [ + 97.2384875790001, + 45.577182149000066 + ], + [ + 97.36701953800014, + 45.507041042000026 + ], + [ + 97.49642153900015, + 45.47858029000008 + ], + [ + 97.65425864300005, + 45.481387221000034 + ], + [ + 97.86775158400019, + 45.425666173000195 + ], + [ + 98.1861495760001, + 45.27635882900012 + ], + [ + 98.45501655500016, + 45.112349962 + ], + [ + 98.44121558400019, + 45.018481866000116 + ], + [ + 98.22773756200013, + 45.01626082900009 + ], + [ + 97.89564555200013, + 45.14787984300017 + ], + [ + 97.64945262700013, + 45.21678093200012 + ], + [ + 97.53547651300005, + 45.22094975500016 + ], + [ + 97.4533085490001, + 45.11310466800012 + ], + [ + 97.33284752400016, + 45.10983170300011 + ], + [ + 97.16466564300009, + 45.187308986000176 + ], + [ + 96.93168662100015, + 45.20682490700017 + ], + [ + 96.85882558600008, + 45.2387958330001 + ], + [ + 96.758293542, + 45.38155288700017 + ], + [ + 96.68626365699998, + 45.43757601900012 + ], + [ + 96.3083345390001, + 45.575313152000035 + ], + [ + 96.08541866200017, + 45.69112758500012 + ], + [ + 95.92913053400014, + 45.711982430000035 + ], + [ + 95.59662663700004, + 45.67819564900003 + ], + [ + 95.41126252400011, + 45.678512653000155 + ], + [ + 95.32525665400004, + 45.59172843900012 + ], + [ + 95.15609761000002, + 45.51683714000018 + ], + [ + 94.911910642, + 45.47922502600011 + ], + [ + 94.63951152900012, + 45.50458531200002 + ], + [ + 94.34405564500003, + 45.51232516100015 + ], + [ + 94.27531465100009, + 45.48646112300014 + ], + [ + 94.1263276630001, + 45.50290205800019 + ], + [ + 94.05622058600017, + 45.57125429900003 + ], + [ + 93.87096359500003, + 45.57451234500013 + ], + [ + 93.62071952800005, + 45.65237050300004 + ], + [ + 93.31897755200015, + 45.82055272000014 + ], + [ + 93.23344458800011, + 45.78471756900012 + ], + [ + 92.67355357200012, + 45.95833612000007 + ], + [ + 92.3340836430001, + 45.92182991500016 + ], + [ + 92.10068552600006, + 45.96672506400017 + ], + [ + 91.70377357600017, + 46.11195042200018 + ], + [ + 91.54824065700006, + 46.218949775000056 + ], + [ + 91.47216063700006, + 46.15737279300009 + ], + [ + 91.50533252100007, + 46.050988337000035 + ], + [ + 91.12875356000006, + 46.01644232299998 + ], + [ + 91.03105158200015, + 46.027707433000046 + ], + [ + 91.02221655300019, + 46.12840745100016 + ], + [ + 90.93135052000008, + 46.275189998000144 + ], + [ + 90.83295452100009, + 46.31451235600008 + ], + [ + 90.5854186470001, + 46.35462345000013 + ], + [ + 90.42350760300008, + 46.48460581400013 + ], + [ + 90.40748559500008, + 46.63546649300008 + ], + [ + 90.31126352500013, + 46.71969892000004 + ], + [ + 90.25068650500009, + 46.6999548440001 + ], + [ + 90.09457355800015, + 46.73324893700004 + ], + [ + 89.90864551100009, + 46.92661676100005 + ], + [ + 89.73523751300002, + 46.94079290600013 + ], + [ + 89.681724594, + 46.97323707400017 + ], + [ + 89.61473055600004, + 47.09355275700017 + ], + [ + 89.41046156400006, + 47.140806071000156 + ], + [ + 89.21697253700006, + 47.27705273400005 + ], + [ + 88.92263764800009, + 47.43830077000007 + ], + [ + 88.716026585, + 47.50748047300016 + ], + [ + 88.28043366100013, + 47.62413527500007 + ], + [ + 88.03870359600006, + 47.71711874400006 + ], + [ + 87.86786666300009, + 47.73775683400004 + ], + [ + 87.78201250500013, + 47.86906286800013 + ], + [ + 87.41448264700017, + 48.110260681 + ], + [ + 87.09288762900007, + 48.36294103200015 + ], + [ + 86.75134250900004, + 48.66946186700011 + ], + [ + 86.44106255800006, + 48.627908414000046 + ], + [ + 86.20503252300017, + 48.695227167000155 + ], + [ + 86.08406053800007, + 48.68796810300012 + ], + [ + 85.86573760800007, + 48.62927751400014 + ], + [ + 85.55075859500016, + 48.630796483000154 + ], + [ + 85.40709663000007, + 48.727926480000065 + ], + [ + 84.97630351900006, + 48.72301736700018 + ], + [ + 84.88336162400009, + 48.792068156000084 + ], + [ + 84.88923649999998, + 48.86264763600008 + ], + [ + 84.76300855800014, + 49.01672948000015 + ], + [ + 84.5363766480001, + 49.06017187900005 + ], + [ + 84.34024849600013, + 49.03623048100013 + ], + [ + 84.26181751899998, + 49.09758232400003 + ], + [ + 84.07796449600005, + 49.09227624400012 + ], + [ + 83.71042659100004, + 48.98890407600004 + ], + [ + 83.5756305000001, + 48.914017136000155 + ], + [ + 83.49481151900011, + 48.92693046300019 + ], + [ + 83.39186062599998, + 48.864158893000194 + ], + [ + 83.35056265400016, + 48.77131976000004 + ], + [ + 83.20350652100012, + 48.64804258400005 + ], + [ + 83.12895955000005, + 48.505734129000075 + ], + [ + 83.01142850400015, + 48.43510452400011 + ], + [ + 82.8785936110001, + 48.41655336100001 + ], + [ + 82.65978252000014, + 48.495735189000186 + ], + [ + 82.56784058500011, + 48.45262488100013 + ], + [ + 82.41013356800005, + 48.276953099000025 + ], + [ + 82.12806660000007, + 48.12425276000016 + ], + [ + 82.1252286560001, + 48.04111132100002 + ], + [ + 82.22165658400007, + 47.92521239900003 + ], + [ + 82.39923055600019, + 47.821169679000036 + ], + [ + 82.73145265300019, + 47.74508781400016 + ], + [ + 82.84532164600006, + 47.696904611000036 + ], + [ + 83.03205150600013, + 47.687543702000085 + ], + [ + 83.12433659500005, + 47.714158758999986 + ], + [ + 83.3272936520001, + 47.71214090000012 + ], + [ + 83.53314263300012, + 47.73999983100009 + ], + [ + 83.77549765200018, + 47.698979635000114 + ], + [ + 83.98705253000008, + 47.71869471000008 + ], + [ + 84.05729656700015, + 47.681119644000034 + ], + [ + 84.68184659000008, + 47.59774887600008 + ], + [ + 84.85558366100008, + 47.55046169900004 + ], + [ + 85.09378863300003, + 47.57858667200014 + ], + [ + 85.24999964800014, + 47.65738025000013 + ], + [ + 85.61303764400003, + 47.59077077400019 + ], + [ + 85.77587857700013, + 47.50106026999998 + ], + [ + 86.35188262900016, + 47.29114388700003 + ], + [ + 86.5634155460001, + 47.1848814710001 + ], + [ + 86.73338361100019, + 47.02084444000013 + ], + [ + 86.89265452400014, + 46.91425798000006 + ], + [ + 86.9334415350001, + 46.730982805999986 + ], + [ + 86.85928365200004, + 46.66936760300018 + ], + [ + 86.73465765999998, + 46.63194156700007 + ], + [ + 86.51414454000013, + 46.62805856700015 + ], + [ + 85.922698508, + 46.65227472300006 + ], + [ + 85.7836304970001, + 46.37967846800018 + ], + [ + 85.70931252000014, + 46.31397407000014 + ], + [ + 85.51192456700011, + 46.26391399099998 + ], + [ + 85.44255861800002, + 46.273157051000055 + ], + [ + 85.11142751000011, + 46.24352383799999 + ], + [ + 84.88482661300009, + 46.13647168000011 + ], + [ + 84.81594865900018, + 46.171444835000045 + ], + [ + 84.6841125540002, + 46.073185293 + ], + [ + 84.48542054400014, + 46.09495644800006 + ], + [ + 84.55171955500009, + 46.010693343000014 + ], + [ + 84.68995658400019, + 45.92608289200007 + ], + [ + 84.9993975060001, + 45.87244776400013 + ], + [ + 85.0450285870001, + 45.70014550700017 + ], + [ + 85.09236153000018, + 45.643165329000055 + ], + [ + 85.09151462200009, + 45.50092325800006 + ], + [ + 84.78836850900012, + 45.38718401700015 + ], + [ + 84.69922663400018, + 45.257208862000084 + ], + [ + 84.66370362500004, + 45.104262934000076 + ], + [ + 84.5497055510001, + 45.025599946 + ], + [ + 84.07797958300011, + 44.985712816000046 + ], + [ + 84.03831457400014, + 44.948260963 + ], + [ + 83.57079363900004, + 45.010809910000035 + ], + [ + 83.40505960900009, + 44.980662886000175 + ], + [ + 82.93395256100018, + 45.14917685900019 + ], + [ + 82.73910549900012, + 45.236971930000095 + ] + ], + [ + [ + 96.48093452200015, + 46.107041644000105 + ], + [ + 96.37860053600019, + 46.07924339700014 + ], + [ + 96.22103165300018, + 46.167317586000195 + ], + [ + 96.14687360300002, + 46.25473899200017 + ], + [ + 95.94908851600019, + 46.427988573000164 + ], + [ + 95.76016259700003, + 46.50866187600013 + ], + [ + 95.68268564900012, + 46.62082129600003 + ], + [ + 95.48468062000018, + 46.69613169000013 + ], + [ + 95.26099360800009, + 46.80520640200007 + ], + [ + 95.23551161700016, + 46.90725389400012 + ], + [ + 95.35308859600019, + 47.01129242400009 + ], + [ + 95.17861157000016, + 47.186033480000106 + ], + [ + 95.18684360500015, + 47.25947789500009 + ], + [ + 95.31008155400019, + 47.26507365300017 + ], + [ + 95.37458750700006, + 47.36738131900012 + ], + [ + 95.52230866000008, + 47.38883563900015 + ], + [ + 95.60005952900008, + 47.289137930000095 + ], + [ + 95.65191652000004, + 47.13648402700011 + ], + [ + 95.74360666200005, + 47.034325558000035 + ], + [ + 95.85329459400009, + 46.96048400900003 + ], + [ + 96.11917862100006, + 46.87817053400005 + ], + [ + 96.21656057800016, + 46.748843970999985 + ], + [ + 96.18065652800004, + 46.602763492 + ], + [ + 96.36408961800004, + 46.44914868700016 + ], + [ + 96.82351665100009, + 46.318128141000045 + ], + [ + 97.01807353200002, + 46.22103603000011 + ], + [ + 97.18135853800004, + 46.19704165900015 + ], + [ + 97.38346064100006, + 46.12550865300011 + ], + [ + 97.48670959500004, + 46.04472822900004 + ], + [ + 97.65256466000017, + 45.98795407800003 + ], + [ + 97.67971766800008, + 45.921822036000094 + ], + [ + 97.52397151300005, + 45.92338190800001 + ], + [ + 97.0524906330001, + 46.07063753000017 + ], + [ + 96.71382855200017, + 46.11434261700009 + ], + [ + 96.52822857200016, + 46.16883974000001 + ], + [ + 96.48093452200015, + 46.107041644000105 + ] + ], + [ + [ + 95.74201963200017, + 44.679301783000085 + ], + [ + 95.66828151600015, + 44.54166691000006 + ], + [ + 95.58119957600019, + 44.50924989900011 + ], + [ + 95.25987261200004, + 44.518942900000184 + ], + [ + 94.87978364600013, + 44.6462470780001 + ], + [ + 94.75610363500016, + 44.73938292999998 + ], + [ + 94.66841853400012, + 44.84022476900003 + ], + [ + 94.66448960100001, + 44.99115686199997 + ], + [ + 94.96134157500018, + 45.12020799600003 + ], + [ + 95.07812462100014, + 45.15517394300008 + ], + [ + 95.27545155300004, + 45.108843979000085 + ], + [ + 95.55421454200018, + 44.93091863800015 + ], + [ + 95.69889859600016, + 44.77653085500009 + ], + [ + 95.74201963200017, + 44.679301783000085 + ] + ], + [ + [ + 83.27245354200011, + 41.007316901000024 + ], + [ + 83.42547557800009, + 41.0155298250001 + ], + [ + 83.57008352400015, + 41.077319371000044 + ], + [ + 83.76939361500007, + 41.18984809800003 + ], + [ + 84.03796353900015, + 41.23113467100006 + ], + [ + 84.22867564100017, + 41.19342633200017 + ], + [ + 84.45767963000009, + 41.30198019300008 + ], + [ + 84.67023463600015, + 41.38109245100014 + ], + [ + 84.79180156900009, + 41.37146834900017 + ], + [ + 84.82304360500012, + 41.3287858540001 + ], + [ + 84.7751995340002, + 41.21659290700018 + ], + [ + 84.8896715210002, + 41.20794496200011 + ], + [ + 85.01783752600011, + 41.24020187800005 + ], + [ + 85.22198464500002, + 41.24697680300011 + ], + [ + 85.48788459800011, + 41.210753067000155 + ], + [ + 85.62681564900004, + 41.20783096800005 + ], + [ + 85.95150761200017, + 41.138750843000025 + ], + [ + 86.1230776270001, + 41.11596581200013 + ], + [ + 86.48012558000005, + 40.99592203900011 + ], + [ + 86.61588257200003, + 40.927231839000115 + ], + [ + 86.80622050599999, + 40.866292386000055 + ], + [ + 87.06294261000016, + 40.69538454200011 + ], + [ + 87.48019458800007, + 40.469371048000085 + ], + [ + 87.67624663300006, + 40.322826715000076 + ], + [ + 87.7123186570002, + 40.17488746500004 + ], + [ + 87.66197158200009, + 40.07176172500016 + ], + [ + 87.43371559399998, + 40.09260165100011 + ], + [ + 86.76622759600014, + 40.51422328300009 + ], + [ + 86.48008752600009, + 40.67162369 + ], + [ + 85.97721859700005, + 40.88418741400011 + ], + [ + 85.72046665300013, + 40.92872381800015 + ], + [ + 85.59540564000008, + 40.929449020000106 + ], + [ + 85.388999598, + 40.867841361000046 + ], + [ + 85.30384851400015, + 40.648365753000064 + ], + [ + 85.15019263900007, + 40.46317916900017 + ], + [ + 84.82369957200012, + 40.33493437400011 + ], + [ + 84.60640761700012, + 40.30453187000012 + ], + [ + 84.27436858100003, + 40.33063160800009 + ], + [ + 84.03460658700004, + 40.37727287600006 + ], + [ + 83.61365550700009, + 40.344280531000095 + ], + [ + 83.33763155600013, + 40.39390190100005 + ], + [ + 82.91639750299998, + 40.366077167000185 + ], + [ + 82.64767452500007, + 40.29856898400004 + ], + [ + 82.3149185010002, + 40.40533381100005 + ], + [ + 82.13816863800014, + 40.50308457200015 + ], + [ + 81.94387863700007, + 40.685295412000016 + ], + [ + 81.72182458700013, + 40.70666541000003 + ], + [ + 81.3078075200001, + 40.52360715900005 + ], + [ + 81.12026964500006, + 40.37776908400008 + ], + [ + 80.92057063400011, + 40.33274854100017 + ], + [ + 80.92941253599997, + 40.23870979000009 + ], + [ + 81.03353857200011, + 40.282552173000056 + ], + [ + 81.09488656000013, + 40.179567584000154 + ], + [ + 81.04003153000014, + 40.00796152700008 + ], + [ + 81.07557649900014, + 39.57185244600004 + ], + [ + 81.06545250100004, + 39.10889227300015 + ], + [ + 80.95407863300011, + 38.816717736000044 + ], + [ + 80.8536686290002, + 38.42684725500004 + ], + [ + 80.74008965000013, + 38.12306445300004 + ], + [ + 80.60787954500012, + 37.99771946100003 + ], + [ + 80.48329965300019, + 37.98921669100008 + ], + [ + 80.46073154600009, + 38.093584797000176 + ], + [ + 80.52344561600017, + 38.24445721000012 + ], + [ + 80.58648658100003, + 38.32593785800009 + ], + [ + 80.61987253900014, + 38.50216687000011 + ], + [ + 80.59838050100018, + 38.62342585200008 + ], + [ + 80.65797449200011, + 38.834093421000034 + ], + [ + 80.69434357000017, + 39.08970861100005 + ], + [ + 80.68086949300005, + 39.19672388900011 + ], + [ + 80.69899753800013, + 39.39270502300019 + ], + [ + 80.64002950800005, + 39.640020621000076 + ], + [ + 80.63746665700018, + 39.85657748300014 + ], + [ + 80.61039763600019, + 40.069987946000026 + ], + [ + 80.50434862300006, + 40.193765187000054 + ], + [ + 80.3115306520001, + 40.12236327400012 + ], + [ + 79.93108361000009, + 39.85254562000006 + ], + [ + 79.87821157100018, + 39.83341074100019 + ], + [ + 79.72852352000012, + 39.90001887500006 + ], + [ + 79.59829757900013, + 39.993576673 + ], + [ + 79.54409751000009, + 40.111495298000136 + ], + [ + 79.56236251600018, + 40.25414355600003 + ], + [ + 79.67480457300007, + 40.31447280700007 + ], + [ + 79.83092456100002, + 40.365493116000096 + ], + [ + 80.07364654000008, + 40.40880559500005 + ], + [ + 80.42303460700003, + 40.56352781700019 + ], + [ + 80.63323262200004, + 40.68639360900005 + ], + [ + 80.79675265700007, + 40.74621173200006 + ], + [ + 81.25102264100002, + 40.839445653000155 + ], + [ + 81.30879960200008, + 40.86807840200004 + ], + [ + 81.52552058200007, + 40.878831545000025 + ], + [ + 81.92878752300004, + 40.95713863700013 + ], + [ + 82.28849756900007, + 41.04783653000004 + ], + [ + 82.58460958800003, + 41.05218874900015 + ], + [ + 82.89731559700016, + 41.02170997000013 + ], + [ + 83.27245354200011, + 41.007316901000024 + ] + ], + [ + [ + 83.13199664900003, + 37.41125160900003 + ], + [ + 82.86725658400007, + 37.40964563699998 + ], + [ + 82.7511365470001, + 37.46206639400009 + ], + [ + 82.63981665900008, + 37.583573313000045 + ], + [ + 82.65328956200005, + 37.68711043700006 + ], + [ + 82.86246465000005, + 38.109820711000054 + ], + [ + 82.91149861600013, + 38.25942611500011 + ], + [ + 83.03359260300016, + 38.345263510000166 + ], + [ + 83.09769454800005, + 38.31776701100017 + ], + [ + 83.11260964200011, + 38.23503930300012 + ], + [ + 83.00696564300006, + 37.97466386299999 + ], + [ + 82.9596405800001, + 37.75695197400006 + ], + [ + 83.0412365630001, + 37.696707045000096 + ], + [ + 83.19303853000002, + 37.69245423500007 + ], + [ + 83.28235659299997, + 37.760998757000095 + ], + [ + 83.36751555600006, + 37.90226215700005 + ], + [ + 83.52098065900014, + 38.07835303400009 + ], + [ + 83.56547565700004, + 38.175538352000046 + ], + [ + 83.70574161000013, + 38.27647775600008 + ], + [ + 83.93284558900001, + 38.25408600500003 + ], + [ + 84.07602660000009, + 38.33916366300008 + ], + [ + 84.26786757700017, + 38.237374334000094 + ], + [ + 84.30876958800019, + 38.117625436000026 + ], + [ + 84.19373349900007, + 37.95929530800004 + ], + [ + 83.97396854700014, + 37.916731166000034 + ], + [ + 83.80289457300012, + 37.81575773100013 + ], + [ + 83.51550258300006, + 37.594754101000035 + ], + [ + 83.35366865200012, + 37.495832891000134 + ], + [ + 83.13199664900003, + 37.41125160900003 + ] + ], + [ + [ + 94.11540252300011, + 43.676621980000164 + ], + [ + 94.15906553300005, + 43.61960726800004 + ], + [ + 94.16431461600013, + 43.520116592000136 + ], + [ + 94.35967263900005, + 43.453908777000095 + ], + [ + 94.52103466900013, + 43.31927713900012 + ], + [ + 94.88026459900004, + 43.21975964100017 + ], + [ + 95.1386416260001, + 43.132262965 + ], + [ + 95.17333264700011, + 43.08806217200009 + ], + [ + 95.09619164500003, + 43.029239485000176 + ], + [ + 94.93301359200012, + 43.00587476200013 + ], + [ + 94.63641357800003, + 42.91378513899997 + ], + [ + 94.44954659000018, + 42.89482644700007 + ], + [ + 94.25839963500016, + 42.9373820400001 + ], + [ + 94.10662851400008, + 43.01116961000014 + ], + [ + 93.97388464900007, + 43.04143548900015 + ], + [ + 93.88253766200012, + 43.11642033000004 + ], + [ + 93.59410866200005, + 43.1627920360001 + ], + [ + 93.31204957300008, + 43.16714107000007 + ], + [ + 92.94613658400004, + 43.154604928000026 + ], + [ + 92.77340651400016, + 43.20038587800008 + ], + [ + 92.34088857500006, + 43.252631621000035 + ], + [ + 92.17656656000014, + 43.284277329000076 + ], + [ + 91.9382705610002, + 43.4233379640001 + ], + [ + 91.85829161500016, + 43.52221860600014 + ], + [ + 91.87620558600008, + 43.56126234900006 + ], + [ + 92.02517664800007, + 43.56952824700011 + ], + [ + 92.13777159200009, + 43.6210881830001 + ], + [ + 92.23861661600017, + 43.71759875700013 + ], + [ + 92.4528126310002, + 43.792706477000195 + ], + [ + 92.65975964200015, + 43.8337223150001 + ], + [ + 92.90904951200014, + 44.026897858000154 + ], + [ + 93.03915358100016, + 44.063285879000034 + ], + [ + 93.13623865100016, + 44.03780372000011 + ], + [ + 93.288192665, + 44.042060721000155 + ], + [ + 93.67828358900005, + 43.949849057000165 + ], + [ + 93.82301357600005, + 43.902047398000036 + ], + [ + 94.08066556900013, + 43.72401191900019 + ], + [ + 94.11540252300011, + 43.676621980000164 + ] + ], + [ + [ + 91.11228965800012, + 49.79762529900006 + ], + [ + 90.99009659700005, + 49.843036942000026 + ], + [ + 90.8542026450001, + 49.930169172000035 + ], + [ + 90.78682756600011, + 50.062624700000185 + ], + [ + 90.79238862400013, + 50.1193576120001 + ], + [ + 90.97210651900008, + 50.36010682600005 + ], + [ + 91.13486463800012, + 50.414359701000194 + ], + [ + 91.46377554800017, + 50.42114267200003 + ], + [ + 91.66383364000006, + 50.390624162000165 + ], + [ + 91.75777465800019, + 50.331907422000086 + ], + [ + 91.99794753300017, + 49.677281789000176 + ], + [ + 91.96279165100015, + 49.52003091500012 + ], + [ + 91.97978964800012, + 49.44161502600019 + ], + [ + 91.94048355100017, + 49.36201611400014 + ], + [ + 91.74394954700017, + 49.255977831 + ], + [ + 91.67819251100019, + 49.16579408500013 + ], + [ + 91.57091554900018, + 49.162955804000035 + ], + [ + 91.49890159000006, + 49.21978359900004 + ], + [ + 91.23521462700018, + 49.275094270000125 + ], + [ + 91.18170154000012, + 49.3447009460001 + ], + [ + 91.12209363500011, + 49.5637975250001 + ], + [ + 91.17291261100007, + 49.697309173000065 + ], + [ + 91.11228965800012, + 49.79762529900006 + ] + ], + [ + [ + 95.0005645240002, + 49.6609545120001 + ], + [ + 95.17768855500009, + 49.77049911400013 + ], + [ + 95.32151061400009, + 49.79642048400012 + ], + [ + 95.43189256700009, + 49.73258843600013 + ], + [ + 95.61895753600004, + 49.66472771000019 + ], + [ + 95.70388063200005, + 49.54212527700014 + ], + [ + 95.60685758800008, + 49.466109294000034 + ], + [ + 95.55964651800019, + 49.29695645200019 + ], + [ + 95.35176056700016, + 49.226253590000056 + ], + [ + 95.16655755500017, + 49.22526167600006 + ], + [ + 94.9676516400001, + 49.25379987700012 + ], + [ + 94.88969457600001, + 49.20505123100003 + ], + [ + 94.73681654000012, + 49.22533057499999 + ], + [ + 94.55530558900011, + 49.19932924100016 + ], + [ + 94.34502459300012, + 49.20703137200019 + ], + [ + 94.11228965100014, + 49.278321302000165 + ], + [ + 94.0582196700002, + 49.36196699599998 + ], + [ + 93.72572365300005, + 49.42225467300011 + ], + [ + 93.29500564400018, + 49.57521451600013 + ], + [ + 92.8154065550001, + 49.58563674200008 + ], + [ + 92.74378956200013, + 49.62823625600015 + ], + [ + 92.77687058700019, + 49.691934194000055 + ], + [ + 93.05187261600014, + 49.68357609500015 + ], + [ + 93.37653356600009, + 49.828196615000195 + ], + [ + 93.51659366000013, + 49.82439374500012 + ], + [ + 93.89405858800018, + 49.75472487500019 + ], + [ + 94.09244566300009, + 49.69268219500003 + ], + [ + 94.25885058100016, + 49.67727793300003 + ], + [ + 94.51695251400014, + 49.62239105200018 + ], + [ + 94.77729761200004, + 49.60489701400013 + ], + [ + 95.0005645240002, + 49.6609545120001 + ] + ], + [ + [ + 92.90300766899998, + 47.836462629000096 + ], + [ + 93.20824456400015, + 47.61399903900019 + ], + [ + 93.32205957700018, + 47.41223070400008 + ], + [ + 93.31171463200013, + 47.24667956700006 + ], + [ + 93.17202753400005, + 47.28289290900017 + ], + [ + 92.80988355099998, + 47.50018318800011 + ], + [ + 92.74188955200015, + 47.568176683000104 + ], + [ + 92.54086251300009, + 47.70194750000013 + ], + [ + 92.437393617, + 48.002013934000104 + ], + [ + 92.45291153800014, + 48.1468741760001 + ], + [ + 92.54603565600013, + 48.20378243700003 + ], + [ + 92.63398763600009, + 48.188260325000044 + ], + [ + 92.7167585950001, + 48.08996272900009 + ], + [ + 92.73745753700018, + 47.98649165500018 + ], + [ + 92.90300766899998, + 47.836462629000096 + ] + ], + [ + [ + 94.72558562800009, + 46.561163100000044 + ], + [ + 94.68030558200007, + 46.45576284700013 + ], + [ + 94.58010864600004, + 46.437707557000124 + ], + [ + 94.48724352900007, + 46.37018328000005 + ], + [ + 94.43121352400016, + 46.28436801400011 + ], + [ + 94.30418360200014, + 46.31245208399997 + ], + [ + 94.189803648, + 46.507833912000024 + ], + [ + 93.97840165600019, + 46.67660872900012 + ], + [ + 93.96592754000011, + 46.79059909200009 + ], + [ + 94.15356465700017, + 46.75133909600015 + ], + [ + 94.3654095490001, + 46.64103257900018 + ], + [ + 94.72558562800009, + 46.561163100000044 + ] + ], + [ + [ + 95.15758556600008, + 46.09566539000008 + ], + [ + 94.76864665000011, + 46.03995942900019 + ], + [ + 94.56398052300005, + 46.12127361300003 + ], + [ + 94.58282455000005, + 46.23433107000005 + ], + [ + 94.75504265400019, + 46.31537032700015 + ], + [ + 94.94657852900008, + 46.339925448000145 + ], + [ + 95.2266006480001, + 46.446912731000054 + ], + [ + 95.53059366800011, + 46.49359775200003 + ], + [ + 95.67705552400008, + 46.441797758000064 + ], + [ + 95.95799261100018, + 46.22634294800008 + ], + [ + 95.94326761900004, + 46.12498545500017 + ], + [ + 95.8185505990001, + 46.057320362000155 + ], + [ + 95.4784235300001, + 46.12066374500017 + ], + [ + 95.15758556600008, + 46.09566539000008 + ] + ] + ], + [ + [ + [ + 115.4497300050001, + -20.67039999499997 + ], + [ + 115.32486000500012, + -20.80335999499988 + ], + [ + 115.30706000500015, + -20.86151999499998 + ], + [ + 115.39644000500016, + -20.885919994999938 + ], + [ + 115.47774000500021, + -20.73525999499998 + ], + [ + 115.4497300050001, + -20.67039999499997 + ] + ] + ] + ] + }, + "properties": { + "biome_name": "Deserts & Xeric Shrublands", + "biome_num": 13, + "color_bio": "#CC6767", + "area_km2": 26382178.693311524, + "percentage": 34.57477144976948 + } + } + ] +} \ No newline at end of file diff --git a/client/public/data/rangeland-ecoregions.json b/client/public/data/rangeland-ecoregions.json new file mode 100644 index 0000000..dfac6a4 --- /dev/null +++ b/client/public/data/rangeland-ecoregions.json @@ -0,0 +1,372 @@ +{"type":"FeatureCollection", "features": [ + {"type":"Feature","geometry":null,"properties":{"objectid":1,"eco_name":"Adelie Land tundra","biome_num":11,"biome_name":"Tundra","realm":"Antarctica","eco_biome_":"AN11","nnh":1,"eco_id":117,"shape_leng":9.74978020742,"shape_area":0.0389483162871,"nnh_name":"Half Protected","color":"#63CFAB","color_bio":"#9ED7C2","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":176.7559789941643,"percentage":0.0020684934172123426}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[27.232137500000135,35.46486422300006],[27.153270497000165,35.626901163000184],[27.045911560000036,35.58208631200006],[27.113607499000068,35.466027128000064],[27.232137500000135,35.46486422300006]]],[[[23.06277852900007,36.14394037000011],[23.112169564000112,36.247392836000074],[23.00110649700008,36.32817493700003],[22.906972528000097,36.34054595600014],[22.95638250600001,36.16917777700007],[23.06277852900007,36.14394037000011]]],[[[30.51460444500003,36.43925275600003],[30.38714252000011,36.434369627000024],[30.180231552000066,36.34272776500012],[30.03492153700006,36.346843615000125],[29.994840450000083,36.37552212900016],[29.813283565000063,36.36517617800007],[29.717300548000026,36.30590874700016],[29.58080058400003,36.30695363500007],[29.537572595000142,36.20134701900008],[29.676794498000163,36.12014062600019],[29.77837545300008,36.13095143700019],[29.923198479,36.22138446100007],[30.03877654200005,36.253209877000074],[30.10396059200002,36.23660499200008],[30.187385506000112,36.30299452600019],[30.271129604000066,36.304997466000145],[30.417308487000184,36.206221766000056],[30.49510746800007,36.313782539000044],[30.51460444500003,36.43925275600003]]],[[[28.239955578000036,36.43325567200014],[28.150567610000053,36.42517283500007],[27.880151488000024,36.322342306000166],[27.795585461000144,36.25513955900004],[27.769754447000025,36.189918126000066],[27.696914535000076,36.16045389300018],[27.762523546000125,36.09074529200018],[27.72673751400015,35.941086913000106],[27.8056065290001,35.8932859250001],[27.956138469000052,36.04446344000007],[28.070116595000172,36.11435795100016],[28.176708587000178,36.24754203400016],[28.24447258600003,36.38036586300018],[28.239955578000036,36.43325567200014]]],[[[24.451364509000143,36.76405167200005],[24.340278475000048,36.765184569999974],[24.314920536000045,36.679359414000146],[24.530736605000186,36.69260432900012],[24.451364509000143,36.76405167200005]]],[[[25.292831480000075,36.80660374500019],[25.248624485000164,36.74205605000003],[25.349412512000185,36.649658978000105],[25.37355256100011,36.74680188299999],[25.292831480000075,36.80660374500019]]],[[[27.28865650600011,36.89377503500003],[27.143791570000076,36.88042819500009],[27.035043585000096,36.82119060300005],[27.09134248100014,36.74151122600006],[27.156616552000173,36.7923290280001],[27.3445114970001,36.853229758000055],[27.28865650600011,36.89377503500003]]],[[[26.027284515000076,36.93857010500005],[25.845569548000128,36.865325515000166],[25.855482490000156,36.79108599200009],[26.027284515000076,36.93857010500005]]],[[[26.93836554000012,37.07124624500017],[26.90825053500015,36.96612728800011],[26.984468522000157,36.94161491500006],[27.046977571000014,36.986360029000025],[26.93836554000012,37.07124624500017]]],[[[25.221734501000185,37.15259378800005],[25.131389487000092,37.12002841800012],[25.099462483000025,37.0432927650001],[25.160104546000184,36.999062803000186],[25.266374506000034,37.06323951500008],[25.221734501000185,37.15259378800005]]],[[[25.568204493,37.17486735500006],[25.496866450000027,37.207523417],[25.362918439999987,37.124991175000105],[25.34890356300008,37.076026109000054],[25.446929585000134,36.93399325100006],[25.54170946400012,36.989910938000094],[25.58721146400012,37.08966782400017],[25.568204493,37.17486735500006]]],[[[24.979721464000136,37.678164431000084],[25.10895951400005,37.551248],[25.18862346900005,37.52323735599998],[25.24003052000006,37.57981620900006],[25.17558659200006,37.643379198000105],[24.979721464000136,37.678164431000084]]],[[[24.27954052200016,37.52714734600005],[24.386028579000026,37.612304801000164],[24.285966592000023,37.65293892600005],[24.27954052200016,37.52714734600005]]],[[[26.33148155100008,37.652453782000066],[26.064048548000017,37.63076828900017],[25.979522587000133,37.544992083000125],[26.06722260700019,37.52727324300008],[26.219001607000166,37.57341545200006],[26.33148155100008,37.652453782000066]]],[[[23.552215458000035,37.76657574000018],[23.420474571000113,37.75969905900007],[23.45683644100012,37.68686635600005],[23.527914477000138,37.68630543900008],[23.552215458000035,37.76657574000018]]],[[[26.93307153000012,37.76669074000006],[26.767051509000055,37.812497003000146],[26.665960559999974,37.789609210000094],[26.569601530000057,37.72993643000012],[26.621484505000183,37.67579151500007],[26.717470540000136,37.72107977600007],[26.789010586000188,37.63489520300004],[27.05968051299999,37.711889857000074],[27.022123551000107,37.770054733000165],[26.93307153000012,37.76669074000006]]],[[[20.80820448800017,37.83853555300004],[20.691377522000096,37.93189469900011],[20.61760151800013,37.81413700600007],[20.813030453000067,37.648707909],[20.906698556000038,37.772835681],[20.80820448800017,37.83853555300004]]],[[[24.86630844600012,37.90157634900015],[24.7739796030001,37.99579749100013],[24.67547447100003,37.91825700700008],[24.755647543000123,37.87247790200013],[24.942275479000102,37.685755418000156],[24.982379533000085,37.755430156000045],[24.86630844600012,37.90157634900015]]],[[[23.531740480000053,37.962991225],[23.41263346900007,37.926042957],[23.466300448000027,37.87458796200008],[23.531740480000053,37.962991225]]],[[[21.909431501000086,38.33202261700018],[21.772766581000155,38.31638584100011],[21.69894950700018,38.20128806100013],[21.59744046900005,38.14763482900014],[21.450794546000168,38.20992779200009],[21.404478496000138,38.18388538600004],[21.279386470000077,37.99386361800009],[21.193243472,37.93386679300005],[21.125596484000027,37.93370284300016],[21.099348554000187,37.84338733300001],[21.248496475000138,37.809228061000056],[21.312437488,37.700636984000084],[21.56071851200005,37.539704946000086],[21.673555525000097,37.374776249000035],[21.672571490000166,37.29466889100007],[21.569217595000055,37.20477767400013],[21.57807156700011,37.07683529800016],[21.693510490000165,36.951875873000176],[21.701223517000187,36.8377649790001],[21.808595529000115,36.83059426000017],[21.89042453000019,36.740336083000045],[21.939006544000165,36.78899923400007],[21.940759535000154,36.99980661300009],[22.017198469,37.03884901500015],[22.15136155800019,37.02694704800007],[22.13850958600011,36.9365830910001],[22.22209358900011,36.904227604000084],[22.30012156400005,36.823243499000114],[22.35142752900009,36.71134492400006],[22.395399496000095,36.47652070900011],[22.502782572000058,36.4871907050001],[22.47561850000011,36.619565599],[22.520870551000144,36.72530649200007],[22.59074343700013,36.80938066900006],[22.788148489000093,36.81927550600017],[22.851430517000097,36.6981658900001],[22.978506539000136,36.53216850000001],[23.038763539000115,36.534133553000174],[23.096164488000113,36.45502934200016],[23.209802476000164,36.468564104],[23.038684581000155,36.65534995500019],[23.029735558000027,36.743441075000135],[23.107061465000186,36.79258115600015],[23.016996574000075,36.95190671900002],[22.9550534710001,37.12459437600006],[22.76132556100015,37.43458599000007],[22.726160459000027,37.549084966000066],[22.977796592000118,37.51806438099999],[23.014198527000133,37.463523505000126],[23.137845513000116,37.4453999860001],[23.088554558000055,37.36390458500006],[23.19357444000019,37.34341586099998],[23.275485584000023,37.416176313000165],[23.49742848900013,37.43345309200015],[23.49843247399997,37.47256439300014],[23.310077530000115,37.536249087000044],[23.16069659300007,37.62697648400007],[23.128385530000173,37.73678427700014],[23.143295594000165,37.835578417000136],[23.01818848100004,37.840358449000064],[22.953437440000073,37.94914851100009],[22.864019465000013,37.932664828000156],[22.725099478000118,38.04528776700016],[22.503358576000096,38.13878890300009],[22.179645452000045,38.20066193300016],[22.010557487000142,38.318617942000174],[21.909431501000086,38.33202261700018]],[[21.836297552000076,38.07536304200016],[21.927043556000115,38.08625012800019],[21.966970584000023,37.973729951],[21.86170745900006,37.90113747300006],[21.767332594000038,37.94832037900011],[21.836297552000076,38.07536304200016]],[[22.12668054100004,37.90839603300009],[22.144830547000083,38.028175945000044],[22.260982602000183,38.04995363800009],[22.38439556500009,37.962839344000145],[22.580402516000106,37.90476516100006],[22.58403355600018,37.759576013000185],[22.540475488000027,37.741426175000186],[22.231945510000173,37.814023012],[22.12668054100004,37.90839603300009]],[[22.068603507000148,37.6797243040001],[22.137569471000063,37.741426175000186],[22.24283444100007,37.73053959200013],[22.333578601000113,37.65431590500003],[22.3480965600001,37.59623803300008],[22.213794499000187,37.52001451400014],[22.144830547000083,37.567200606000085],[22.068603507000148,37.6797243040001]],[[22.631219480000084,37.218750306000175],[22.66751848500013,37.316752356000165],[22.736484448999988,37.27682432200004],[22.801820547000148,37.09533969000017],[22.725595519000024,37.05541249400005],[22.631219480000084,37.218750306000175]],[[22.38439556500009,37.073562164000066],[22.424322594000103,36.95378275600012],[22.417062524000187,36.866668631000096],[22.300910469000087,36.91385539300006],[22.253723539000077,37.0263752350001],[22.300910469000087,37.106230464000134],[22.38439556500009,37.073562164000066]]],[[[20.611673501000155,38.322401869000146],[20.54043956200013,38.38384390100015],[20.482852534000074,38.30976413800016],[20.39518755,38.342550623000136],[20.331085437000127,38.170205450000026],[20.372905601000184,38.14526191200014],[20.486824550000108,38.18959916200009],[20.491125473000068,38.112341652],[20.619438496000043,38.11353154700015],[20.699089543000014,38.06629549900015],[20.803100580000148,38.10176385800003],[20.692647547000092,38.25894901800018],[20.611673501000155,38.322401869000146]]],[[[26.009351601000105,38.60380716900016],[25.88328744200004,38.59015137200009],[25.827619535000053,38.54362409800012],[26.002172501000132,38.346033471000055],[25.855411579000076,38.24180618100007],[26.003761542000063,38.13842211100007],[26.101011568000047,38.21866659700004],[26.155672473000152,38.3167300020001],[26.115898498000035,38.49895073400012],[26.070680478000043,38.59347747900006],[26.009351601000105,38.60380716900016]]],[[[20.692663472999982,38.68993776200011],[20.72068551700005,38.742175794000104],[20.677040444000113,38.85116719000007],[20.597631466000166,38.77826223400001],[20.561777540000094,38.67835296600015],[20.640499537000153,38.58825153000009],[20.692663472999982,38.68993776200011]]],[[[24.59329644900015,38.88005173100015],[24.593374568000115,38.92969975600016],[24.461278456000173,38.955600675000085],[24.48391344999999,38.87344478000017],[24.625087499000074,38.773551437000094],[24.672477606000143,38.83634731500018],[24.59329644900015,38.88005173100015]]],[[[23.33229845900007,39.0376802940001],[23.138048523000066,39.01612757100003],[23.003112454000075,38.92477086100007],[22.858739537000133,38.88883345100004],[22.84628251999999,38.83766327400008],[23.054985539000143,38.86312598699999],[23.217149549000112,38.83333452300013],[23.42628859500013,38.68911365300005],[23.511787527000024,38.59552936900019],[23.625112535000085,38.534286323000174],[23.640632467000046,38.40106753900005],[23.929120475000047,38.372167910000144],[24.04463148300016,38.374304122000126],[24.118833454000082,38.208039852000184],[24.21235655100014,38.147841023000126],[24.201566527000182,38.081455009000024],[24.322002573000077,38.03912388400005],[24.338067497000054,37.97061691200008],[24.44550757000019,38.00701633300008],[24.474891505000016,37.95413742000011],[24.587236500000074,38.02166806700018],[24.561443540000084,38.13745701900018],[24.410348502999966,38.133658005000086],[24.261409460000095,38.194485979000035],[24.18569958400019,38.3867086680001],[24.216186578000077,38.53824107200006],[24.14973853700002,38.584886364000056],[24.150133493000055,38.662209085000086],[23.957538480000096,38.671788092000156],[23.751171496999973,38.72063011200015],[23.716438567000125,38.763907387000074],[23.599754596000082,38.77476027500006],[23.468105574,38.850897293],[23.426874490000046,38.96012857900013],[23.33229845900007,39.0376802940001]]],[[[26.363700581000103,39.37713412900007],[26.17652648100011,39.37610013800003],[26.11385951699998,39.30812307100018],[25.852592577000053,39.257350027000086],[25.87656549100012,39.14315179300007],[26.048717544000056,39.09108927800014],[26.11541352200004,39.11581891000009],[26.171113448000142,39.20227874400007],[26.26616456500011,39.16123239700005],[26.10004848699998,39.08899849599999],[26.15765747500012,39.013823721],[26.429948462000084,38.96456126400017],[26.53451555400011,39.001937847000136],[26.58794448700013,39.06452384200003],[26.46484953300012,39.22734449000012],[26.39453559100002,39.26523169900014],[26.363700581000103,39.37713412900007]]],[[[19.83518958100018,39.82939782100016],[19.663923494000187,39.80514428100014],[19.63124446500018,39.747848943000065],[19.72052950400007,39.640435357000115],[19.92327651000005,39.487319779000075],[19.90792656300016,39.61598769200015],[19.83932655300015,39.709316495999985],[19.949523602000113,39.792350479000106],[19.83518958100018,39.82939782100016]]],[[[25.432611451000128,40.01044139700008],[25.364248481000175,40.014721365000185],[25.283355571000016,39.94631749100006],[25.235774524000192,40.00590947],[25.03023148300008,39.985676897000076],[25.04708246100006,39.83095786000018],[25.231475446000104,39.85970963200003],[25.295454513000152,39.793986291000124],[25.432611451000128,40.01044139700008]]],[[[25.98159945499998,40.20789908700016],[25.916275595000172,40.23358677100015],[25.718269561000056,40.16242458000016],[25.764541522000115,40.07385585900005],[25.99550654100011,40.10671929000017],[25.98159945499998,40.20789908700016]]],[[[27.04131844500006,40.396014643000115],[26.758094607000032,40.40729467300008],[26.52703654900006,40.22003289800017],[26.40425658700019,40.17020650699999],[26.41010849700018,40.12427401300005],[26.284776581000187,39.99353878700009],[26.182838557000082,39.99789067100011],[26.13754258400013,39.840914723000026],[26.159345591000147,39.67006421100007],[26.063419570000065,39.48410079299998],[26.14021657900014,39.454514183000185],[26.368619585000147,39.481506761000105],[26.48278848200016,39.526080046000175],[26.92597759000006,39.57908837499997],[26.880752528000016,39.47479268900008],[26.780311512000026,39.37154926699998],[26.7030585280001,39.34249675300015],[26.688386509000054,39.268553950000125],[26.769197444000042,39.16869430200006],[26.88801745900014,39.07205062300005],[26.80018651300003,39.031546250000076],[26.802198505000035,38.9584733210001],[26.95252760400018,38.93864894600006],[27.04674354800011,38.893525473000125],[26.82830059000014,38.759982645000036],[26.730161579000082,38.724624089000145],[26.75910747600011,38.61562095900007],[26.85076358800012,38.59609028600016],[26.873861598000076,38.50683978100011],[26.95443549200013,38.437469977000035],[27.062498509000136,38.46286060500012],[27.084588511000163,38.39969441500011],[26.774908537000158,38.36384803300018],[26.707586600000127,38.431309948000035],[26.60028449300006,38.43308691200019],[26.627111444000093,38.52800341600016],[26.47859149600015,38.67317697300007],[26.35556745300005,38.64814827500004],[26.35887947800012,38.57550248800004],[26.426012488000026,38.47641028700019],[26.51530054400007,38.43104306900011],[26.444679489000123,38.34582744400012],[26.27967250500012,38.297881281000116],[26.315216468000187,38.23996417400019],[26.503211492000105,38.18193642600005],[26.61624145700017,38.11347455000015],[26.653730525000128,38.20940476100003],[26.76617258200008,38.217346782],[26.824815562000083,38.160291670000106],[26.861766512000145,38.050159665000194],[26.955373595000026,38.076335175000054],[27.12359956500012,37.99429763300003],[27.23823550200018,37.98732472800015],[27.277254603000017,37.92926596700005],[27.239812474000132,37.73079540700007],[27.097259602000065,37.684645319000026],[27.089729467999973,37.641910186000075],[27.21681454300017,37.58657923100009],[27.224605522000104,37.48027306200015],[27.190729557000168,37.352979613000116],[27.383291545000134,37.354661693000025],[27.49852745900006,37.31668329000013],[27.555267578999974,37.136792895000156],[27.477191492000145,37.085287944000186],[27.336948506000056,37.15495446800014],[27.273109584000167,37.135138140000095],[27.224687497000048,37.05490471800016],[27.265190530000098,36.96604346900017],[27.33587646000018,37.01806340400009],[27.485980588000075,36.98693603300006],[27.82072446500007,37.01112855300016],[27.928056579000042,37.03117823300016],[28.24897752400011,37.03757110999999],[28.19674451999998,36.943582818000095],[28.042350534000036,36.923178248000056],[27.986824449000096,36.80211774999998],[27.819509591999974,36.81594956700019],[27.773784466000166,36.78883913900006],[27.434335492000173,36.74743102900004],[27.398328512000035,36.67983634400014],[27.483579508000048,36.650951970000165],[27.60404053300016,36.68131239700017],[27.6673565910001,36.661510989000135],[27.72249744400017,36.756574847000024],[28.01639345700005,36.75707491100019],[28.023284555000032,36.66466979300003],[28.14714460800019,36.65379393800015],[28.260232576000192,36.73166533900013],[28.262355544000116,36.84861803500013],[28.40184047100007,36.785429046000104],[28.489669573000015,36.81839456800009],[28.620582496000054,36.81991253100017],[28.666854457000113,36.720255725000015],[28.83170855500009,36.64014518300013],[28.93251049600019,36.753844023000056],[29.099914537000075,36.67694861100006],[29.069360489000132,36.61440083700006],[29.129957458000092,36.571119875000136],[29.217395460000148,36.577215696999986],[29.28240751300018,36.50220939900004],[29.250890551000168,36.434266697000055],[29.308713445000024,36.37366805200014],[29.278087480000067,36.28476120500011],[29.364036521000173,36.22847219900018],[29.476505568000164,36.21301563400016],[29.44443355700014,36.33207302500017],[29.490951611000014,36.50294935300013],[29.475612560000172,36.54701922099997],[29.50736253900004,36.74069818100003],[29.437067541000147,36.90889246800003],[29.27741659200018,36.85600668200016],[29.225278472000127,36.906962786000065],[29.119348483000067,36.905848831000185],[29.110956521000105,36.99468677900012],[29.01517450199998,37.01063653500012],[28.91767855100005,36.92048933399997],[28.70602644300004,37.04198485300009],[28.542148501000042,37.07192517900006],[28.529365596000105,37.27200238100011],[28.60036048400019,37.38639205800007],[28.59236750100007,37.481288110000094],[28.690837597000098,37.501806674000136],[28.806758479000166,37.45803754900004],[28.78088957900013,37.51701966000019],[28.859321562000105,37.55458584200011],[28.867111535000106,37.62663634600017],[28.816921537000155,37.706114055],[28.873704572,37.7382712270001],[28.883094483000036,37.81614396900011],[29.018329450000067,37.85087522300017],[29.108337512,37.86275807900017],[29.041711608000128,38.015389184000185],[29.180162543000108,38.13142221600009],[29.18104750500015,38.19355508500013],[29.094413494000094,38.30738401300016],[28.91930749000005,38.459179609000046],[28.9835475700001,38.47378239300019],[29.162546465000048,38.594713139000135],[29.240314601000136,38.68666865200004],[29.308706572000062,38.718757427000185],[29.336812602000123,38.796461861000125],[29.258058587000107,38.90035722700014],[29.120223554000063,38.79957791700002],[29.04373952500015,38.82886747200007],[29.070310494000125,38.93844962400004],[28.90318858700016,38.9619405790001],[28.788202455000146,38.879613861000166],[28.612091460000045,38.82460259200013],[28.55666159900005,38.69954744600017],[28.59909649300016,38.63908844300005],[28.476261546000046,38.586058489000095],[28.424398520000068,38.624619937000034],[28.43988056500018,38.744605876000094],[28.278488528000082,38.778731286000095],[28.1515105740001,38.712070345000086],[28.105808582000066,38.625672872000166],[27.974533562000033,38.67128802700006],[27.86480556400005,38.81538987500005],[27.88481149100005,38.91988421200017],[27.775068573000055,39.066980745000194],[27.83220046400004,39.15890256299997],[27.658754579000174,39.32710087300006],[27.501171447000104,39.216926455000134],[27.413818604000085,39.23397843200013],[27.27774460900008,39.21274958500004],[27.25234744200003,39.27887659900006],[27.00666044899998,39.25789585700011],[26.933675530000187,39.21249762500014],[26.946540578000054,39.38476702600019],[27.0434135860001,39.43110738300004],[27.086730591000105,39.53986274500005],[27.05707558500012,39.57895946200006],[26.880630488000065,39.63684253800011],[26.77139652000011,39.615754843000104],[26.63490158500008,39.62422358300006],[26.396104516000094,39.54659576000017],[26.228923601000076,39.648362458000065],[26.265922496000087,39.71842628400003],[26.369932526000184,39.75869378500016],[26.43181259700009,39.83579472200017],[26.547611607000192,39.817107100999976],[26.637987466000084,39.87042053100009],[26.74077256600009,39.84349266100003],[26.952630533000104,39.86183763000008],[26.90366949000014,39.957066108000106],[26.95466448600007,40.0107386200001],[27.182653594000158,40.02722951100003],[27.122228454000094,40.09950934500006],[27.116914495000174,40.24905540500015],[27.276142492000133,40.22574801500008],[27.348260555000138,40.307476935000125],[27.182781501000136,40.395339900000124],[27.04131844500006,40.396014643000115]],[[27.368631597000046,38.58434941900009],[27.62311355300011,38.5247954940001],[27.668045584000026,38.462914585000135],[27.96073946399997,38.481148242000074],[28.248268582000037,38.44139186900014],[28.488237609,38.37224016200008],[28.625602585000024,38.29169443100011],[28.725030565000054,38.263442891000125],[28.760374536000086,38.19690801399997],[28.920154565000075,38.046176752000065],[28.742462576000037,38.015732171000025],[28.564693474000137,38.04421957800014],[28.357551501000046,37.98420867100015],[28.0963435700001,37.88188876800001],[27.898229577000052,37.86417311200006],[27.75397149100013,37.91254306400009],[27.785619545000145,38.03570574300011],[27.93634058200007,38.067184316000066],[27.950082544,38.13273130200008],[28.077157561000092,38.10851145700008],[28.19907351600017,38.17578628900003],[27.970710576000045,38.229759375000015],[27.74092857900007,38.20089813499999],[27.65106753600014,38.218300643000134],[27.47681648600019,38.185533269000075],[27.403978585000118,38.26807389300012],[27.256698488000154,38.23558446200019],[27.190292525000075,38.25663393600007],[27.20691149200013,38.41478133800007],[27.324075579000123,38.463684379000085],[27.21466056100013,38.509864642000025],[27.205415490000178,38.580610420000085],[27.368631597000046,38.58434941900009]]],[[[25.568050601000095,40.50595252400012],[25.4459284510001,40.48082173400019],[25.581832461000147,40.39531291100013],[25.683979529999988,40.453871065000044],[25.568050601000095,40.50595252400012]]],[[[24.683679516000097,40.776308632000166],[24.56655348400011,40.749934806000056],[24.514627593000114,40.64810976900003],[24.66122054200008,40.562471026000026],[24.76813356100007,40.60924623699998],[24.77979647700016,40.73476708099997],[24.683679516000097,40.776308632000166]]],[[[29.2557694890001,41.000256153000066],[29.136444548000156,41.09214310200008],[29.017667448000054,41.030875916000184],[29.042100528000162,40.97251943000009],[29.291896498000085,40.85594358500009],[29.35839248300016,40.76390777400013],[29.68954655800013,40.783575406000125],[29.780658516000074,40.748583643000075],[29.823144539000054,40.81443623300015],[29.591455492000193,40.82670801000006],[29.479606537000166,40.89074139100012],[29.331584474000124,40.9342778350001],[29.2557694890001,41.000256153000066]]],[[[20.467874576000156,39.2491221840001],[20.677148570000156,39.07903878400015],[20.9421845170001,39.03310344000016],[21.086421480000126,39.04120522000011],[21.144214535000117,38.98528317300003],[21.062271541000086,38.88222281200012],[20.964628571000162,38.94802863100011],[20.85045850000006,38.92615605500009],[20.74195459600014,38.86863893200007],[20.772058536000145,38.76182146700012],[20.87092945500018,38.78676919600008],[20.897003544000086,38.69406953700013],[20.97375244,38.66570400400019],[21.071165578000148,38.542693036],[21.122266521000086,38.42966910700011],[21.096191594000118,38.34789945000017],[21.148700529,38.30915812600011],[21.37736656000004,38.403581607000035],[21.483180544000163,38.370619102000035],[21.506263467000053,38.30353135500002],[21.63887556900005,38.35583342500013],[21.751243530000067,38.34251240100019],[21.837064496000096,38.394410631000085],[21.940460469000072,38.41060027700007],[22.174806579000176,38.34003370500011],[22.34728049800009,38.34763558800017],[22.450763474999974,38.42437526500015],[22.531711537000092,38.34319955000012],[22.636415590000126,38.38632779400007],[22.773700603000123,38.24433231900019],[22.944814474000168,38.176519538000036],[23.166406513000027,38.16026451300007],[23.20418743900018,38.08082502500008],[23.05471044500007,38.05302074400004],[22.952293478000115,38.07705601900017],[22.871776581000063,38.044082785000114],[23.011495531000094,37.92836189400015],[23.09172643800008,37.90875109100011],[23.258600575000173,37.968370227000094],[23.370738537000022,37.96945702500017],[23.552299445000187,38.04053472500016],[23.56692150700013,37.95411143600012],[23.677444445000162,37.928171961000146],[23.792392524000093,37.797886172000176],[23.888719534000074,37.78658032600015],[23.935228536000125,37.67019173299997],[24.02671248300004,37.644588204000115],[24.08116752900014,37.76175480500012],[24.028438484000162,38.00352962900007],[23.987829505000036,38.10536053200008],[24.06196056500005,38.19029016600007],[23.948781570000108,38.27497052299998],[23.63826558500017,38.36200904300006],[23.57143348600016,38.4474226480001],[23.40391343900012,38.49325891800004],[23.319257558000118,38.58005369300014],[23.33351148800017,38.6349305170001],[23.230464537000103,38.664014212000154],[23.094884571000023,38.64437641900008],[23.03972058400018,38.759562544000175],[22.760747545000072,38.79802206800019],[22.59850658800002,38.85665297800011],[22.582096498000112,38.91049614500008],[22.74017751600013,38.89397139000016],[22.913375464000183,38.93211776700008],[23.007575483000096,38.98855597100015],[22.998226475000024,39.076612558000136],[22.872266587000126,39.19564078000013],[22.812223494000136,39.28123744600009],[22.92505246100012,39.29718250800005],[22.95546351400003,39.35164459400005],[23.120590527000104,39.30384327100006],[23.213800476000188,39.188392948000114],[23.346090545000095,39.19371093000012],[23.26219758500008,39.33666781000005],[23.210809477000055,39.36501440000012],[23.073110566000082,39.52948712200015],[22.899385564000113,39.62130165100007],[22.826118510000185,39.809333220999974],[22.70664956800016,39.88977199900006],[22.6824225150001,39.97146705600005],[22.62086447700011,40.00281151900009],[22.56426047900004,40.181410429000096],[22.65960345400009,40.365951104000146],[22.607690472000172,40.46644811100009],[22.65741158600008,40.542448168000135],[22.949344557000074,40.61765311800008],[22.959554553000032,40.54011297],[22.825939473000176,40.51706122800016],[22.90485945000006,40.42431563700012],[23.038646527000026,40.331821670000124],[23.297477518000107,40.240033628],[23.315521576000094,40.10780240000008],[23.387535536000087,40.00627961499998],[23.587329598000167,39.93851662100019],[23.657026464000182,39.99431662700016],[23.493034528000123,40.04382316500005],[23.364368458000115,40.179716279000104],[23.425447554000073,40.283635282000034],[23.540449445000093,40.23687465600011],[23.669208554000022,40.22863591600003],[23.77264258000008,40.12665095300008],[23.817604450000033,40.03245227499997],[23.98589848200004,39.95648742200018],[24.023925500000132,40.02755724400009],[23.922933457000056,40.157385716000135],[23.776374539000017,40.203813245000106],[23.711755598000025,40.333999456000186],[23.855630463000125,40.37653308900002],[23.950008513000114,40.368240201000106],[24.030504456000187,40.307914974000084],[24.138231525000094,40.2903449960001],[24.308797555000126,40.11927722500013],[24.38808449200019,40.18757816900012],[24.162992506000023,40.36765330100019],[23.930957453000133,40.38994597800007],[23.831590494000125,40.49859874500015],[23.706584466000095,40.69487341299998],[23.85530658600004,40.7773424560001],[24.06248845700003,40.71039904500009],[24.154396529000167,40.73164281100014],[24.320886439000105,40.81659893200009],[24.31959545800015,40.86819658600001],[24.51721559000015,40.94489368300003],[24.61142952300014,40.85873945300011],[24.80822554500014,40.84327886500006],[25.067998495000097,40.99551032000005],[25.26763950300017,40.92663672400016],[25.561054562000038,40.848394675],[25.923765496000044,40.83536400100013],[26.046785516000057,40.772959558000025],[26.06442858400004,40.633335995000095],[26.115070534000097,40.58738455700018],[26.306322598000065,40.57798458800005],[26.79411851800006,40.643276932000106],[26.841340484000114,40.58375670200013],[26.69566149800005,40.496507795000184],[26.60221853300004,40.490945732000114],[26.233703466000065,40.32140782600004],[26.27751751700015,40.19434923800014],[26.217802492000146,40.12715805800019],[26.190835563000064,40.03027717100014],[26.33394449000002,40.088610524000046],[26.344421533000116,40.19225527100019],[26.59728645300015,40.33189761],[26.638801517000047,40.404860569000164],[26.763578551000137,40.471109958000056],[26.98089950800005,40.55256395200013],[27.031042567000156,40.6577457730001],[26.89934744500016,40.677501583000094],[26.87300848800004,40.802607356000124],[26.47792446400001,40.822362831000135],[26.319890553000107,40.94088461800004],[26.1091785590001,41.00673318500003],[25.924806529000136,40.9935652150001],[25.766773455000134,41.15817959100019],[25.64472054000015,41.22598902000004],[25.32559751300016,41.19110337200016],[25.13463948600014,41.204272012000104],[24.818572502000166,41.184519219000094],[24.640785462000167,41.21744400500012],[24.634201477000147,41.10550201200016],[24.581521551000037,41.08575022500003],[24.37739555400009,41.08575022500003],[24.14034644700007,41.184519219000094],[24.008651493000116,41.184519219000094],[23.844032591000087,41.07257823100019],[23.653076576000046,41.10550201200016],[23.534551603000068,41.184519219000094],[23.020334583000135,41.45112559900008],[22.84117559400005,41.52244922500017],[22.63349952500016,41.66534173100007],[22.457714587000112,41.73933935100007],[22.270282491000046,41.731046296000045],[22.263698507000072,41.55325976000012],[22.322959567999987,41.40839800900005],[22.4744094940001,41.14501061500016],[22.500747446000048,41.05282543800013],[22.48099347900012,40.69067039200013],[22.47876556900019,40.43812431900011],[22.46244449500017,40.35098622100014],[22.23975157700005,40.1926782220001],[22.076396498000065,40.16063571500018],[21.98841048700018,40.10402232900003],[22.027360520000173,39.98436395500016],[22.00606948000012,39.89774117700006],[22.026882584000077,39.756180052000104],[21.965471565000087,39.69043475100011],[21.83967059700018,39.657849096],[21.64661944100004,39.72732635600016],[21.607883481999977,39.58458237800011],[21.632207597000047,39.48990945200018],[21.60773244000012,39.41816455100013],[21.7566545520001,39.37211018400012],[21.880723483000168,39.19706000400009],[22.057083587000022,39.09841724100011],[22.09064858300019,38.99552485300012],[22.03383051100019,38.95514352600003],[22.126228589000164,38.846281379000175],[22.276494488000026,38.85261323600014],[22.35020259700019,38.80652902900016],[22.389511544000186,38.707691304000036],[22.45357560300016,38.66239616900015],[22.35055145200016,38.608011196000064],[22.29713660100009,38.541945035000026],[22.111850440000012,38.59534329100006],[21.72555953500006,38.59650619600012],[21.43545549600003,38.675022836000096],[21.38946550200012,38.72156938800009],[21.391386466000085,38.91913704900003],[21.160539465000113,39.26889392000015],[21.16743659800011,39.33232279900017],[21.082620455000153,39.429722525000045],[20.995557459,39.30450326200008],[20.955224579000117,39.18348417000004],[20.89653952200007,39.204978723000124],[20.88059043600009,39.313803151000116],[20.775964503000125,39.27796464800019],[20.693487582000046,39.1545003870001],[20.644140468000046,39.273741845000075],[20.584651586000177,39.33368871400012],[20.467874576000156,39.2491221840001]]]]},"properties":{"objectid":3,"eco_name":"Aegean and Western Turkey sclerophyllous and mixed forests","biome_num":12,"biome_name":"Mediterranean Forests, Woodlands & Scrub","realm":"Palearctic","eco_biome_":"PA12","nnh":4,"eco_id":785,"shape_leng":162.523043817,"shape_area":13.8449517466,"nnh_name":"Nature Imperiled","color":"#FF7F7C","color_bio":"#FE0000","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":133754.4856073615,"percentage":4.049002099692765}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[64.00556948600018,34.34107899300017],[64.03108953100008,34.36080848500012],[64.50373063500007,34.37123322500008],[64.68409762400006,34.39343454000016],[64.92987849500008,34.45299600900006],[65.11698956400016,34.46419557200011],[65.50521853200013,34.460326654000085],[65.85194350100005,34.44363023800008],[66.0768205760001,34.46884149400012],[66.0550306450001,34.51463535100004],[65.83374052200003,34.50399251400006],[65.81236247800007,34.57559291000018],[66.04756957800015,34.60436295400012],[66.17634561799997,34.63740810500019],[66.1647415430001,34.702508335000175],[65.94850151700012,34.72371773499998],[65.71524857399999,34.693646652000155],[65.41215560200004,34.72044795500017],[65.28029653100009,34.77954054000003],[65.18907158400009,34.78273320700009],[65.03034951900008,34.73048075800011],[64.90382351700003,34.664648452000165],[64.67703251800009,34.58202065600017],[64.4847794870002,34.49599399900006],[64.3216855880001,34.47925533800003],[64.12482452200004,34.48887910400015],[63.944045478000135,34.46859774799998],[63.885864509000044,34.373919290000174],[64.00556948600018,34.34107899300017]]],[[[68.75035063700005,35.394060778000096],[68.53234856700016,35.476795862000074],[68.32816356100017,35.473038925000026],[68.26918748400004,35.529212429000154],[68.38023362000018,35.67707389500015],[68.25032853700009,35.69694872800011],[68.12510659200007,35.57677637600017],[68.01441953700004,35.513446907000116],[67.81607051500015,35.491463354000075],[67.53027360100009,35.50134327100017],[67.35647550900006,35.41889820100016],[67.24675757000017,35.391437074000066],[67.24984764200019,35.33721940400011],[67.36941549100015,35.3137827650001],[67.42001352000005,35.252745243],[67.41857149700019,35.16241565100012],[67.47827948200012,35.11488187800012],[67.79220556100017,35.16042478200018],[67.80455763600014,35.03092186300012],[67.74623853300017,34.97971916300003],[67.5781555580001,34.95977677200011],[67.4494785920001,34.96970949500013],[67.31941961800015,34.91796079800008],[67.25831554400008,34.81643834800008],[67.27777061100016,34.76046383100015],[67.37252853000007,34.70527419500007],[67.73723553100007,34.68835582700018],[67.91369655300014,34.71316223700006],[67.96855158400018,34.80709671700015],[68.07981849800012,34.89481752500018],[67.98186456000019,35.034297926000136],[68.07790356900006,35.1582268790001],[68.11647759000016,35.29689926500009],[68.2706526410002,35.386085229],[68.38065355300006,35.38205319800011],[68.57679763100009,35.29073839800003],[68.68383755300005,35.39822289500012],[68.75035063700005,35.394060778000096]]],[[[70.85282163300013,36.715506539000046],[70.88035551500008,36.89142893999997],[70.81069955200002,36.94688277400013],[70.62831855900004,36.984700915000076],[70.50423454100007,37.059398424000165],[70.49975558700004,36.80414684100009],[70.46270757500014,36.711409632000084],[70.57456960500008,36.663105898000026],[70.57829251100009,36.57455259900013],[70.50612650400018,36.460828110000136],[70.43394457100004,36.29005504700007],[70.4199595340001,36.21295461400007],[70.33796658300014,36.16445172500016],[70.33331261500001,36.071039940000105],[70.44013963600003,36.07824854500012],[70.49433853100015,36.11914887900008],[70.57617155400004,36.09602941100013],[70.69255059199998,35.99646346500003],[70.7686465380001,36.0345406080001],[70.7860485430001,36.09730731600007],[70.73671752200005,36.25009398800012],[70.7847066,36.45815026000008],[70.75155650800019,36.68364726000016],[70.85282163300013,36.715506539000046]]]]},"properties":{"objectid":4,"eco_name":"Afghan Mountains semi-desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Palearctic","eco_biome_":"PA13","nnh":4,"eco_id":807,"shape_leng":15.0840370878,"shape_area":1.3555360977,"nnh_name":"Nature Imperiled","color":"#FA774D","color_bio":"#CC6767","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":13713.246207149816,"percentage":0.05197920295576814}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-160.91114109999995,58.56505228000009],[-160.716303825,58.77483271900013],[-161.05313002499994,58.699590200000046],[-161.07540447199997,58.5476994280001],[-160.91114109999995,58.56505228000009]]],[[[-157.50626448099996,60.21713703200015],[-157.91353778199996,60.22087702400012],[-157.87922368199997,60.35028441300011],[-157.90699687099993,60.43793194800003],[-158.02635262099992,60.523791399000174],[-158.08365746399997,60.61708107500016],[-158.29977072399993,60.59743950800009],[-158.38043683999996,60.64387656200006],[-158.31721088799992,60.796945910000034],[-158.39331272899994,60.81205119800018],[-158.52227121899998,60.693282194000176],[-158.88527731899998,60.68721703800014],[-158.88005678699994,60.8120655300001],[-158.74486314599997,60.942338213000085],[-158.19647596399994,60.94385593400017],[-158.15949300599993,61.09734403300001],[-157.74554326999996,61.250091250000025],[-157.57150101099992,61.34726127800013],[-157.59244950399994,61.395884803000115],[-157.82922242499998,61.38910791400008],[-157.91947146499996,61.45683240100004],[-158.07991732399995,61.45747704600018],[-158.25089125099996,61.534275050000076],[-158.74588705399995,61.47943769700004],[-159.01948797999998,61.494172478],[-159.19314901099992,61.47971742000004],[-159.25349987699994,61.326249819000054],[-159.40455890299998,61.31335805600003],[-159.52533468699994,61.35181749300011],[-160.074753928,61.373565858],[-160.38961051099992,61.24094870500005],[-160.63406283599994,61.225851275000196],[-160.66119835099994,61.13014936000019],[-160.90558911099993,61.077212748000136],[-160.85081338899997,60.90687915400008],[-161.04621314899998,60.80768931000006],[-161.08852132499993,60.69957681400018],[-161.23586117199991,60.68470116399999],[-161.40596054699992,60.70997652300008],[-161.44666963599997,60.537776839],[-161.51678355299998,60.48514411399998],[-161.73485806299996,60.459530698000094],[-161.68903424699994,60.31759073600011],[-161.77129031599998,60.282129865],[-161.68386263099995,60.16867761100008],[-161.84429010099996,60.127426414000126],[-161.81192866599994,60.05348399700017],[-161.94752833999996,60.030745808],[-161.953843997,59.94723844200007],[-162.04010478599994,59.84597791700003],[-161.94730322399997,59.792518021000035],[-161.8707758779999,59.65728168300018],[-161.7040667109999,59.50153627000003],[-161.9428302499999,59.37396351900003],[-161.93819381799997,59.25745444000006],[-162.02179378399993,59.2149998860001],[-161.91343008599995,59.08663627800007],[-161.62456650599998,59.13448177300012],[-161.60087556099998,59.06847269100007],[-161.793302766,58.981727216000195],[-161.75308449099998,58.80949996500004],[-161.69242083299991,58.76098179800016],[-161.97522985199996,58.680245401000036],[-161.75060254199997,58.57558180800015],[-161.36000262699991,58.65920004000003],[-161.34222993899994,58.72907276300009],[-160.98399368,58.85349098700016],[-160.750039186,58.904318291000095],[-160.5329301699999,59.005200132000084],[-160.33483930799997,59.05355470200004],[-160.31226653199997,58.96493653300013],[-160.16252103599996,58.86750020100004],[-160.0084028759999,58.88070931500016],[-159.89872100599993,58.77633661300007],[-159.80736648299998,58.80002753400015],[-159.71705747299995,58.930745717000036],[-159.52701383499996,58.834447757000135],[-159.26850597699996,59.02462951400008],[-159.07683760399993,58.94919120800006],[-159.02963797999993,59.06999837700005],[-158.8293109079999,59.045305788],[-158.74897972699995,59.14761888100014],[-158.51685721799993,59.23365291800013],[-158.47127669699998,59.39886461400005],[-158.6258436399999,59.45461682300004],[-158.83347800599998,59.463297288000035],[-158.80846145699994,59.560762366000176],[-158.66427108699992,59.60219356800002],[-158.66520842899993,59.68414759600006],[-158.40882101599996,59.72408261700019],[-158.30139199799996,59.83336047400013],[-158.07369366799998,59.96858694300016],[-157.93606160099995,60.02104455400007],[-157.90345149799995,60.08697044900009],[-157.60174669699995,60.112703183000065],[-157.50626448099996,60.21713703200015]]]]},"properties":{"objectid":5,"eco_name":"Ahklun and Kilbuck Upland Tundra","biome_num":11,"biome_name":"Tundra","realm":"Nearctic","eco_biome_":"NE11","nnh":1,"eco_id":404,"shape_leng":22.5900871701,"shape_area":8.19657305054,"nnh_name":"Half Protected","color":"#4C82B6","color_bio":"#9ED7C2","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":50654.02987562746,"percentage":0.5927806682933878}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[56.32562892500016,25.21915853700017],[56.33830936500004,25.365028573000075],[56.307462619000034,25.38166603100018],[56.353015258000084,25.565890175],[56.26467488600014,25.623007202000167],[56.27138875300011,25.704166667000095],[56.35006510500017,25.77493591300015],[56.42977041800003,25.937357123000083],[56.419551596000076,26.03878173800007],[56.33750000000015,26.154960124000127],[56.386533610000185,26.195833333000053],[56.44613807900009,26.337195705],[56.345611572000166,26.36272176100016],[56.289166260000115,26.222499593],[56.18742182400007,26.23719075000008],[56.17589314800006,26.17916666700006],[56.09618173100006,26.080159081000147],[56.05914637300015,25.9017862500001],[56.05917276800011,25.900218368000026],[56.026694277,25.839960546000157],[56.03253986900012,25.73914654400005],[55.99076140300019,25.401591665000183],[55.99332943000013,25.385802913000134],[56.01131587000009,25.28615803100007],[55.92417156300007,24.968607416],[55.94953244499999,24.905115280000075],[55.89179597000009,24.854573381000023],[55.917426648,24.738021243000105],[55.973724208000135,24.618591276000018],[55.97588258100012,24.53261608700012],[56.03271973400018,24.511392087000104],[55.92210312300017,24.36156503500007],[55.975342988000136,24.271902626000042],[55.956367293000085,24.153911574000063],[56.08065359900007,24.04104665699998],[56.08307359300011,23.8976129670001],[56.11581709100005,23.79580153500018],[56.25835963600002,23.60496539700017],[56.404139739000016,23.569981769000037],[56.55990231800013,23.45450881900007],[56.57680957200017,23.36961281700019],[56.507871580000085,23.320560461000184],[56.37832919699997,23.274284680000164],[56.45153401100015,23.226350815000046],[56.581216250000125,23.22086495100018],[56.584453809000195,23.134170306000044],[56.710179032000156,22.949449557000094],[56.65217276000004,22.883799048000128],[56.68382889600002,22.7912588100001],[56.78356371000007,22.680282469000133],[56.935818933000064,22.570924908],[57.09140164700011,22.54430497600015],[57.30148327600011,22.442681584000184],[57.35526273500011,22.437285652000128],[57.59367301000009,22.496910704000015],[57.90025189500011,22.53836945],[58.17904172900006,22.45554189],[58.36798929100007,22.353199041000153],[58.55783617500015,22.327388498000175],[58.67312926200003,22.467233076000127],[58.72537987200013,22.408777143000066],[58.831050213000026,22.36183253300004],[58.99175906200014,22.342137380000167],[59.051743843000054,22.285300226000174],[59.091943538000066,22.156787107000127],[59.283319270000106,21.9600154420001],[59.314975406000144,22.038346393000097],[59.373341407000055,22.038346393000097],[59.439981170000124,22.10912303800012],[59.54583137500015,22.281702939000127],[59.54412266300017,22.42586426200012],[59.605816155000184,22.535041959000125],[59.43503489900007,22.490795314000138],[59.41426056000006,22.609955485000114],[59.385032593000176,22.674167079000085],[59.36749581300012,22.692333384000108],[59.365877034,22.69395216400011],[59.34420337200015,22.71751440200012],[59.33664906700011,22.72740694400005],[59.32333910100016,22.736669961000075],[59.32082099899998,22.740537046000043],[59.319741813000064,22.74170616500004],[59.26497310000008,22.809065386000157],[59.23475587899998,22.8441389460001],[59.16415909900019,22.951697863000106],[59.05678004600014,23.057548067000027],[59.05498140200018,23.05934671099999],[59.05417201200015,23.06087555900001],[59.05255323300008,23.06339366100019],[59.051743843000054,23.064292982999973],[59.0508445210001,23.064203051],[59.046977436000134,23.070858034000082],[59.04418953800001,23.07337613500016],[59.033307741000044,23.078322407000144],[59.029170860000136,23.09837728800011],[58.97817930000008,23.177517627999976],[58.861627162,23.206655663000106],[58.90245638300007,23.28579600300003],[58.846518552000134,23.360799461000113],[58.77502244900006,23.439130412000168],[58.777540551000186,23.443357225],[58.777540551000186,23.447494107000182],[58.77349360200009,23.461703395000086],[58.77367346600005,23.465030885999965],[58.77088556800015,23.47663214100004],[58.76926678800015,23.47834085300019],[58.76917685600017,23.4824777340001],[58.76647889000003,23.488323327000103],[58.76333126300011,23.491650819000085],[58.63176044700009,23.523396887000104],[58.64084359999998,23.554693295000163],[58.63247990600007,23.558020786000043],[58.59920498900016,23.580863566000062],[58.59830566700015,23.585809838000046],[58.458371157000045,23.587518549000094],[58.355039053999974,23.508378210000103],[58.28830935800005,23.559189905000096],[58.19415034000019,23.54830810800007],[58.067525795999984,23.581672957000137],[57.908345795000116,23.54084373500018],[57.799977487000035,23.572499871],[57.65662555300008,23.570791159],[57.51417294100003,23.641657737000173],[57.41416832900006,23.654158313000096],[57.198331038000106,23.769990992000032],[56.9791662560001,23.894187367000143],[56.877542865,23.992483267000125],[56.7707933370001,24.060831742],[56.74831028600016,24.15004448900015],[56.583374623000054,24.28080591400004],[56.51835363900011,24.368309951000185],[56.484269333999976,24.486930528000073],[56.31070018000014,24.83245005800012],[56.32311082299998,24.944955246000063],[56.26168712700013,25.144964469000058],[56.32562892500016,25.21915853700017]],[[57.7475,23.130833333000112],[57.728333333000194,23.000000000000114],[57.619166667000115,23.00500000000011],[57.535,23.0425],[57.48416666700007,23.112500000000125],[57.421666667000125,23.10333333300008],[57.32837300600005,23.166635833000157],[57.1575,23.19833333300005],[57.146709953000084,23.259176071000184],[57.06833333300017,23.2675],[57.038333333000026,23.360000000000184],[57.26254263200008,23.295868410000026],[57.28664446300007,23.2275199340001],[57.38997656600009,23.180035730000156],[57.46417063500013,23.199191290000044],[57.58333080600005,23.170862645000113],[57.735000000000184,23.179166667000118],[57.7475,23.130833333000112]],[[58.74833333300012,23.116666667000175],[58.5808333330001,23.13916666700004],[58.6408333330001,23.191666667000163],[58.74833333300012,23.116666667000175]],[[57.09666666700019,22.99083333300007],[57.036666667000134,23.0775],[56.95083333300016,23.112500000000125],[57.0425,23.174166667000122],[57.09666666700019,22.99083333300007]],[[58.96416666700003,22.94083333300017],[59.075,22.88],[59.125000000000114,22.80750000000012],[58.98833333300013,22.7525],[58.99833333300006,22.869166667000115],[58.96416666700003,22.94083333300017]],[[59.12166666700011,22.74333333300001],[59.243333333000066,22.72666666700019],[59.2658333330001,22.482500000000186],[59.20916666700015,22.475833333000026],[59.13000000000011,22.61583333300007],[59.12166666700011,22.74333333300001]]],[[[55.694182185000045,24.048402360000125],[55.76346271400013,23.949675537000076],[55.83082193500002,23.985018894000063],[55.82623539200006,24.082685268000034],[55.77254586600009,24.143839167000067],[55.70491684800015,24.054176759000143],[55.694182185000045,24.048402360000125]]]]},"properties":{"objectid":6,"eco_name":"Al-Hajar foothill xeric woodlands and shrublands","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Palearctic","eco_biome_":"PA08","nnh":3,"eco_id":722,"shape_leng":51.2669645778,"shape_area":4.09966818057,"nnh_name":"Nature Could Recover","color":"#CA6634","color_bio":"#FEFF73","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":46590.1535796174,"percentage":0.4397248168895076}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[59.12166666700011,22.74333333300001],[59.13000000000011,22.61583333300007],[59.20916666700015,22.475833333000026],[59.2658333330001,22.482500000000186],[59.243333333000066,22.72666666700019],[59.12166666700011,22.74333333300001]]],[[[58.96416666700003,22.94083333300017],[58.99833333300006,22.869166667000115],[58.98833333300013,22.7525],[59.125000000000114,22.80750000000012],[59.075,22.88],[58.96416666700003,22.94083333300017]]],[[[57.09666666700019,22.99083333300007],[57.0425,23.174166667000122],[56.95083333300016,23.112500000000125],[57.036666667000134,23.0775],[57.09666666700019,22.99083333300007]]],[[[58.74833333300012,23.116666667000175],[58.6408333330001,23.191666667000163],[58.5808333330001,23.13916666700004],[58.74833333300012,23.116666667000175]]],[[[57.7475,23.130833333000112],[57.735000000000184,23.179166667000118],[57.58333080600005,23.170862645000113],[57.46417063500013,23.199191290000044],[57.38997656600009,23.180035730000156],[57.28664446300007,23.2275199340001],[57.26254263200008,23.295868410000026],[57.038333333000026,23.360000000000184],[57.06833333300017,23.2675],[57.146709953000084,23.259176071000184],[57.1575,23.19833333300005],[57.32837300600005,23.166635833000157],[57.421666667000125,23.10333333300008],[57.48416666700007,23.112500000000125],[57.535,23.0425],[57.619166667000115,23.00500000000011],[57.728333333000194,23.000000000000114],[57.7475,23.130833333000112]]]]},"properties":{"objectid":7,"eco_name":"Al-Hajar montane woodlands and shrublands","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Palearctic","eco_biome_":"PA08","nnh":3,"eco_id":723,"shape_leng":16.6840097297,"shape_area":0.188713310624,"nnh_name":"Nature Could Recover","color":"#FCA673","color_bio":"#FEFF73","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":2150.1530205092117,"percentage":0.020293464832909853}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[69.48539761300009,43.64946092500003],[69.40029950300016,43.640034972000194],[69.23779250500007,43.73543259700011],[69.09982252300011,43.784611738000194],[68.9381175050001,43.900452322000035],[68.67933663800005,43.99250087400003],[68.47878250500008,44.032329834000166],[68.3050685680002,44.130100544000015],[68.02426156800016,44.14495461700011],[67.86927062300015,44.26325931300005],[67.75393664100011,44.30937922700008],[67.47046654200011,44.478324029000134],[67.28562160500013,44.60553282100017],[67.20263657200013,44.620718818000114],[67.14814749600009,44.558509003000154],[67.26193954300015,44.47356009100014],[67.42186759700007,44.39588113800005],[67.49237851400017,44.289638336000166],[67.62449658600013,44.20378149600015],[67.66355860200002,44.10322983900011],[67.58558661800015,44.05536296900016],[67.52555056600016,43.94554226700018],[67.36871359000008,43.819321534000096],[67.52648950700012,43.71994183500004],[67.59443656700012,43.552591270000164],[67.72447961500018,43.4095517450001],[67.81347648400003,43.366122088],[67.91842662900018,43.263361463000194],[67.93668358800005,43.17690179700003],[68.05039248600008,43.10255414800008],[68.10131053600008,43.01637259300014],[68.17946658700015,42.96877293800003],[68.27890060099998,42.78632489],[68.28914664000018,42.61927674400005],[68.26033049500006,42.57078810500008],[68.31800855000006,42.38796639100008],[68.32589759700011,42.26669818900007],[68.24986250400019,42.11884141700011],[68.2672884800001,42.019919034000054],[68.17365256300013,41.89908987600012],[68.16390256600016,41.792522862000055],[68.11134350700019,41.653383102000134],[68.15498355099999,41.41232710999998],[68.11422755200016,41.2559414160001],[67.96987961200011,41.13560762900005],[67.87447360500005,41.17480727500015],[67.89219663600016,41.29504534100005],[67.97387660700014,41.45054573900006],[67.91873960900011,41.70468252900014],[67.96468350300012,41.790302664000194],[67.96013648800005,41.87488629300009],[68.04444150300003,41.9693253640001],[67.95587948700017,42.00926915600013],[67.70654251000013,41.95464261600006],[67.529418647,41.82580253800006],[67.11868259200003,41.756482020000135],[66.91251359000006,41.60675239500006],[66.61932350100011,41.50511511300016],[66.53794863200017,41.32985002100014],[66.31876354100018,41.17217954900019],[66.16101059100009,41.13240691500005],[66.00668349200009,40.94815156100009],[65.83100148400001,40.79130033600018],[65.73274948500006,40.74028287700003],[65.55742655700004,40.70286924600015],[65.339469582,40.61360231200007],[65.22926348099998,40.53077519500005],[65.2049866390002,40.42184347800014],[65.06059259900007,40.3375855700001],[65.05943254300018,40.27070720299997],[65.19164248200019,40.16770048600006],[65.38121749500004,40.137580116000095],[65.42597954000007,40.06175993500017],[65.50626358800008,40.01868030500003],[65.60549962200008,39.89030324400005],[65.68068663500003,39.86230349600004],[65.91430653700019,39.84534372100006],[66.02931261900005,39.783874531000095],[66.1196975310001,39.67014400700009],[66.121200574,39.55855858000018],[66.07057153200014,39.466136866],[66.08527355700005,39.32673106300007],[65.99826856400017,39.21530154000004],[65.85420259199998,39.09115432200019],[65.82109860000008,38.97542236700002],[65.9607696060001,38.74498272600016],[65.95150760300015,38.60042004200011],[65.72933151300003,38.52257144000015],[65.58673052900008,38.38562572600006],[65.61885048500011,38.20568973400009],[65.59269760600006,38.07489030300002],[65.46956661000013,37.86319310000016],[65.49226363000008,37.74265831499997],[65.66517659300013,37.776543667000055],[66.01078056600016,37.79426619600014],[66.2677685450002,37.82971175500006],[66.66654161200017,37.97149801799998],[66.75827064600003,38.050990647],[66.68681358000003,38.07069029900015],[66.61711151700007,38.22611643200014],[66.93112962900017,38.409905250000065],[66.9505085890001,38.4977838050001],[66.84435262400018,38.629392593000034],[66.76242857300002,38.781970221000165],[66.85565159700008,38.856348045000175],[67.00773653600015,38.90920734300005],[67.09732852000013,38.98254698500017],[67.13127154000017,39.067129943000054],[67.01757856700016,39.17850196699999],[66.75272350200004,39.28539939600017],[66.6594464980002,39.42704853100014],[66.66310855200015,39.49199671300016],[66.8150635720001,39.51990828300012],[67.14201361900018,39.42916932000003],[67.5053485030001,39.411377557000094],[67.66536758400014,39.47469680000006],[67.55529760500002,39.687107806000085],[67.67791764000009,39.74378623500019],[67.80756355400018,39.925946784000075],[68.02242257800009,39.92282284900017],[68.16899859600011,39.890202996000085],[68.41686253700016,39.94833132700006],[68.72604362000015,39.9762960380001],[68.76473951400015,40.017841612000154],[68.95176659700019,40.03630107700013],[69.09271953000012,40.15360883000011],[69.51979057300002,40.133658056000115],[69.61701964400015,40.14366001400009],[69.81108853100017,40.08764962200013],[70.07688153100014,40.2016471930001],[70.306861508,40.23129784100013],[70.56459061400017,40.30969696600005],[70.84953358000013,40.35770817200006],[71.02667957200015,40.45100713700003],[71.17463659200007,40.370056057000056],[71.3318095140001,40.34893852200008],[71.62993654400003,40.44156542600018],[71.93592864800002,40.44552537200008],[72.08077950200015,40.470766971000046],[72.23200261400012,40.607583435000095],[72.46172359100018,40.778113423000036],[72.59436754400008,40.8337997700001],[72.62198658600016,40.94760975500003],[72.52422358700011,40.983700218000024],[72.34932763400019,40.979218247000176],[72.21697956200018,41.11936886500007],[72.11338762000003,41.16099842500017],[71.74909250600007,41.113909899000134],[71.46173856900003,41.05179949300009],[71.22973654100014,41.020377918000065],[70.97106950000006,40.95676866000014],[70.84467358500007,40.91080213600003],[70.66512249000004,40.801321237000025],[70.52897657800008,40.642501941000035],[70.38308754200006,40.55191586300003],[70.19274156100016,40.504465407000055],[70.04567754900012,40.407855590000054],[69.91874653400004,40.37310824300016],[69.71278355900017,40.38711105100003],[69.57494349600006,40.358116371000165],[69.42784159800004,40.37164710999997],[69.36637861100019,40.412406629000145],[69.34033151200003,40.55912580900008],[69.27913657800008,40.68542164399997],[69.32359352100002,40.766741695000064],[69.4154965640002,40.828612043000135],[69.54528849000008,40.86958161200005],[69.57533258400008,40.94355861300005],[69.52114056300019,41.08390721200004],[69.53240952900018,41.303006138000114],[69.34126257300005,41.440406821000124],[69.28666654400013,41.650674909000145],[69.15923362000018,41.73693223600014],[69.123413557,41.83312245399998],[69.25582164300016,41.97564246900009],[69.24109648300004,42.053991638000184],[69.30042258800017,42.134569053000064],[69.47508954800008,42.18641078900009],[69.52140056900004,42.236558374000026],[69.6566165930002,42.254277382000055],[69.7806166250001,42.384208280999985],[69.80184161500017,42.50338670700012],[69.7094425320002,42.77884504700012],[69.7584764980001,42.91193407900016],[69.73404660300014,43.03563353600015],[69.66697662600018,43.14873793100014],[69.51051348300018,43.242533440000045],[69.43486764500005,43.403650886000094],[69.52406350000018,43.513574517000166],[69.46468358300001,43.58879237500008],[69.48539761300009,43.64946092500003]]]},"properties":{"objectid":8,"eco_name":"Alai-Western Tian Shan steppe","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Palearctic","eco_biome_":"PA08","nnh":4,"eco_id":721,"shape_leng":33.9987519249,"shape_area":13.6728682328,"nnh_name":"Nature Imperiled","color":"#FCEC35","color_bio":"#FEFF73","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":127804.55468285635,"percentage":1.2062384449865893}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[96.88292657500017,45.22379574600018],[96.758293542,45.38155288700017],[96.68626365699998,45.43757601900012],[96.3083345390001,45.575313152000035],[96.08541866200017,45.69112758500012],[95.92913053400014,45.711982430000035],[95.59662663700004,45.67819564900003],[95.41126252400011,45.678512653000155],[95.32525665400004,45.59172843900012],[95.15609761000002,45.51683714000018],[94.911910642,45.47922502600011],[94.63951152900012,45.50458531200002],[94.37886065900017,45.50610729800019],[94.3122406220001,45.34399005900008],[94.33419064800012,45.19034893500009],[94.65267966700003,44.897665784000026],[94.66448960100001,44.99115686199997],[94.96134157500018,45.12020799600003],[95.07812462100014,45.15517394300008],[95.27545155300004,45.108843979000085],[95.55421454200018,44.93091863800015],[95.69889859600016,44.77653085500009],[95.74201963200017,44.679301783000085],[95.66828151600015,44.54166691000006],[95.58119957600019,44.50924989900011],[95.25987261200004,44.518942900000184],[95.15848561400009,44.55525498100019],[95.86909464900009,44.10227581000015],[96.06084459800007,43.72044072500012],[96.06084459800007,43.390531866000174],[95.97097064700017,43.191840863000095],[95.86782060000007,43.00461278300003],[95.80458064900012,42.83233768200006],[95.75594365000012,42.782147852000094],[95.52565756600006,42.623632819000136],[95.22130563200005,42.33902378800019],[94.92403456200003,42.30609196100011],[94.78446967200017,42.25171017300005],[94.68766053400009,42.142628923000075],[94.58827966100012,42.09641429400017],[94.31635261700012,42.01571198900007],[94.18585158100018,41.918673690000105],[94.1478495400001,41.67703079800009],[94.09944958200009,41.585482478000074],[94.15153456000019,41.474868513000104],[94.20382657200014,41.275914485000044],[94.16770962200019,41.206198006000136],[93.85075365300014,41.12179475500005],[93.77672552200016,41.12179475500005],[93.51705164700013,41.066711570000166],[93.48699162700018,40.981213307000075],[93.71150157500017,40.84246665800009],[93.78370664099998,40.74967094300018],[93.71640062900013,40.63119911200016],[93.5537645500001,40.46536483400007],[93.513488667,40.27611638000019],[93.63021857100006,40.230286648000174],[94.08589151800004,40.24290258600007],[94.18143465300011,40.20286005500009],[94.14476751500007,40.13508499200009],[94.01792853199998,40.07677376700008],[94.21280660800011,40.04601302100008],[94.49118050900017,39.85019550200013],[94.60877257600009,39.6978728520001],[94.70117953800008,39.48071266000005],[94.74015756700004,39.395424951000166],[94.94660954200009,39.377210237000156],[95.19133764600008,39.54878880100017],[95.57197562700003,39.73775914400005],[95.7735136280001,39.8738314630001],[95.90388457600011,39.92849857100009],[96.07133455000013,39.91246197800007],[96.44329055600014,39.83097697100004],[96.68690453800019,39.73456614100007],[96.86002352800011,39.60904881800013],[96.98000359900004,39.56976954300006],[97.2229235580001,39.571425304],[97.62814365000014,39.6037009960001],[97.80030056500016,39.588267062000114],[98.09011861400012,39.477786873000184],[98.34158358900004,39.49132565800011],[98.48214760200011,39.41901045300011],[98.69230655800015,39.39532202100003],[98.77479554900015,39.332395721000125],[99.03603365499998,39.24387310100019],[99.38948862200004,39.0818696880001],[99.75611155800004,38.84867625600003],[99.97543361000015,38.7370831180001],[100.27960164500013,38.61550679700008],[100.76683765400008,38.437367047],[100.96056355300016,38.39945770999998],[101.10263060900013,38.31392206500004],[101.19532054500007,38.28826153900013],[101.4311755650001,38.26880663900016],[101.51659352900003,38.26360684100018],[101.70043951100007,38.202604020000024],[101.93159463200016,38.18588011200006],[102.16795357200016,38.12799318000009],[102.25092351800004,38.08567395600011],[102.3705825620001,37.939599680000185],[102.5417785750002,37.7880942650001],[102.61456266400006,37.64934091000009],[102.70539064300004,37.560601534000114],[102.84967052200011,37.471850255],[103.22192358300009,37.374913209],[103.49555953000004,37.34778769400015],[103.6501845210002,37.361463607000076],[103.78275253400017,37.34885974000002],[103.85649853000012,37.31083540300011],[103.83317554900015,37.15019773800003],[103.7360836060002,37.0591194750001],[103.632308604,36.87816642300015],[103.51783762200017,36.86548259100016],[103.50186154700003,36.97919216100007],[103.352577672,37.02453641300019],[103.18982659400012,37.03276492700019],[103.10958864600019,36.98520416400004],[103.10003662900004,36.91329062000017],[103.13902253700007,36.80000081700007],[103.2717206370001,36.60230809800004],[103.58095553300018,36.44095746800002],[103.98807563400015,36.205042768000055],[104.21240252100012,36.13304238700016],[104.45349153800004,36.201704926000104],[104.57711756900005,36.32165918100003],[104.6624295850001,36.32010718800012],[104.74233259200014,36.38359373400016],[104.796348593,36.47378586200006],[104.62748761000006,36.72779038600004],[104.50940654300007,36.83799799600007],[104.39919256300004,36.885231025999985],[104.29685254300006,36.98756501100007],[104.3362196600001,37.15287977900016],[104.43067951700004,37.2316019430001],[104.68259460000007,37.27096134900012],[104.77706166700011,37.373296172000096],[104.89514156000001,37.389043086000186],[105.09159057200009,37.44557600600007],[105.00535554000004,37.73541048300018],[105.01322966800018,37.947957611000106],[105.06832861100014,38.05029260200007],[105.09982260700008,38.231354451000016],[105.09982260700008,38.42028104000002],[105.27301066400008,38.75878068000014],[105.29662365800004,39.05005097700007],[105.44619754700005,39.27046871200008],[105.58789865000006,39.38067799800007],[105.713851665,39.43578448500017],[105.84767964600013,39.58535233900011],[105.96576658000004,39.632585705000054],[106.03661361100006,39.62471157700014],[106.19406162700011,39.69556179300014],[106.38299559199999,39.67981789700008],[106.63490262800019,39.632585705000054],[106.737243654,39.49088661400003],[106.74511761400015,39.7979003050001],[106.69788357800013,40.00257581900013],[106.72149657300014,40.097037354000065],[106.78447752300008,40.097037354000065],[106.8946836240001,40.20724999300006],[106.97341165500012,40.22299388900012],[107.10723863000015,40.325332736000064],[107.26467860000008,40.348945228000105],[107.55318454600013,40.55053888400005],[107.89991756100017,40.632397221000076],[108.01449566300016,40.629830180000056],[108.25919359200009,40.58053671000016],[108.65489955300012,40.550004957000056],[108.79934656700004,40.64478701500008],[108.83644068000012,40.768267704000095],[108.95719859100006,40.87326260900005],[108.91356659400014,40.96425755500013],[108.79193864100012,41.21945784100012],[108.71743056300011,41.27823845200004],[108.59608457700006,41.27492625899998],[108.40994262400005,41.32767173200011],[108.19077261900009,41.317323099000134],[107.95720652900008,41.24518777000014],[107.51908864000006,41.221903010000176],[107.170486628,41.09761698800003],[106.78087665700008,40.921144063000156],[106.63100454000005,40.82298493600001],[106.48204051900007,40.76356763600006],[106.32055661600015,40.61305732100004],[106.03061652700018,40.43915445500011],[105.45116466300016,40.177034405000086],[104.98190264000004,39.93988957700009],[104.78543066200007,39.95018926000006],[104.571479565,40.10354539900004],[104.40746265100006,40.31741384900005],[104.27270461500012,40.33529664000008],[104.02386451700005,40.33648737300007],[103.88108064000016,40.22168094800014],[103.80811365900007,40.19848822200015],[103.65753159400009,40.264645243000075],[103.41477960800017,40.43107128300005],[103.3199006550002,40.52343935300007],[103.35745258700007,40.66486770800003],[103.43987267900008,40.70897227699999],[103.61674458300018,40.75359283600005],[103.8114925710002,40.76787057000013],[103.97238957300016,40.71046811200006],[104.27529864600007,40.644836972],[104.55172761000006,40.67425158400005],[104.66738865400015,40.63963013300008],[104.77624560400017,40.561781028000155],[104.95259062100013,40.32200260600001],[105.13513958800019,40.25251847300018],[105.2681275340002,40.292400909000094],[105.37493158900008,40.36426902300013],[105.5085905900001,40.408541565000064],[105.7682346260001,40.524236471999984],[105.81038654700012,40.57386186500008],[105.72816460300015,40.74324789100001],[105.74366760300018,40.81368521400009],[106.0231165670001,40.93140200400006],[106.424323572,41.00392206200007],[106.60058560800013,41.06766828000008],[106.8942415620001,41.21865686700011],[107.0996625630001,41.286313410000105],[107.55083459600019,41.40416028599998],[107.8526075850001,41.427684936000105],[108.09304063400009,41.60723351600018],[108.4342806530002,41.74717006100019],[108.81123361500016,41.82468858300018],[108.98970763500012,41.8894689600001],[109.16366565400011,41.928328805000035],[109.77426165200006,42.14742488100006],[109.84968553700003,42.212075506000076],[109.94666264900013,42.37729254000004],[110.05161262600012,42.645689798000035],[110.15571552800009,42.708566309000105],[110.3373795330001,42.90536920500017],[110.44335160000008,43.102172101],[110.41307868000013,43.208144670000024],[110.32224265400009,43.25355849200008],[109.80752557000005,43.238421781000056],[109.61072552400003,43.28383526800019],[109.5350345920001,43.22328071099997],[109.29280865400011,43.16272699300015],[109.02031666900018,43.17786705700013],[108.79323565700014,43.26869838900018],[108.77809157000007,43.32925311300011],[108.83865367000004,43.3898068310001],[108.99003553500012,43.45036189100006],[109.32308962000002,43.48063849900012],[109.80752557000005,43.42008394200013],[109.89836159600009,43.46549759600015],[109.7923885240001,43.556333287000086],[109.6864166250001,43.5714701660001],[109.65614353700016,43.662301833000015],[109.7923885240001,43.76827356500007],[109.837806537,43.949936229000116],[109.91349763700003,44.08618574100012],[110.00433366300007,44.19215764000012],[110.09516164200005,44.22243458300011],[110.201133541,44.177017744000125],[110.3525236210001,44.19215764000012],[110.32224265400009,44.31326641800007],[110.15571552800009,44.40409808600015],[109.85294358300013,44.464652139000066],[109.95891565000011,44.525207031000036],[109.95891565000011,44.60090182000005],[109.88322455000014,44.66145587300019],[109.51988966600004,44.61603886600017],[109.27767160700012,44.60090182000005],[109.08087156100015,44.61603886600017],[108.76295452300002,44.58576091700007],[108.35420967300001,44.57062487700006],[108.00601954800004,44.464652139000066],[107.7486646100001,44.31326641800007],[107.4307475720002,44.14673962700016],[107.11283858000007,43.91965928600007],[107.06742056700011,43.85910540000003],[107.02200356000009,43.647164954],[107.052284526,43.435220821000144],[107.052284526,43.26869838900018],[106.99172963400008,43.11730931500017],[106.67381259600012,42.84481548600007],[106.56784052900014,42.78426093000013],[106.43159453700002,42.75398398700014],[106.31048559200013,42.69343043600003],[106.12882259200012,42.69343043600003],[105.91687762100014,42.72370721100003],[105.82604260100004,42.708566309000105],[105.79576867499998,42.58745820200011],[105.85632356700012,42.46634975900008],[105.76548754100008,42.3906553060001],[105.64437859500009,42.43607315100019],[105.53840652899999,42.526904315000195],[105.26889766400012,42.66822672400008],[105.00234258100011,42.72680415700012],[104.875121552,42.79345101600006],[104.70024856499998,42.944512190000125],[104.58555563100009,42.99379375700016],[104.48539758700002,43.13273201700008],[104.39816259500009,43.162219887000106],[104.23661063100008,43.11174406600003],[104.07223564200007,43.13841209700007],[103.47002456400008,43.442022903],[103.28836055900001,43.45716263200012],[103.01586153400001,43.43445370900008],[102.97801154200005,43.51771735600005],[103.32620267300007,43.532854570000154],[103.47002456400008,43.51014564800005],[103.56085153800007,43.52528554400004],[103.5230105980001,43.62368523200013],[103.30349760600006,43.60854919100018],[103.09155263400004,43.61611721100019],[103.03099858100006,43.68424397900009],[103.02538253800014,43.896954219000065],[103.04808760500003,43.96507713100016],[103.16162853000009,44.07104886200011],[103.23731963000006,44.10132580500016],[103.68403651300014,44.091979816],[103.70709965500004,44.16093052499997],[103.64673654100017,44.20796155100004],[103.479545568,44.245143338000105],[103.01781451800014,44.214866395000115],[102.75288351300014,44.25271236500015],[102.2457356220001,44.419238150000126],[102.08678456300015,44.48736123000009],[102.01108558400011,44.48736123000009],[101.96567561800003,44.396530065000036],[101.98838051700011,44.30569839800006],[102.07163963800019,44.16944855000003],[101.99594853700012,44.12403053700007],[101.86727157100012,44.12403053700007],[101.36778256100018,44.19214238500018],[100.97875965900005,44.163001693000126],[100.82736957900016,44.132724582000094],[100.63813755400008,44.125156562000086],[100.274810549,44.07973871700017],[99.95689351100009,44.07973871700017],[99.5784306330001,44.041892747000134],[98.82817067000013,43.99157014800011],[98.73734252400004,44.006706859000076],[98.25669066700004,44.31326641800007],[97.84037058900014,44.517639179000184],[97.63600151700007,44.59333396700015],[96.9740985480002,44.90044673200009],[96.88292657500017,45.22379574600018]]]},"properties":{"objectid":9,"eco_name":"Alashan Plateau semi-desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Palearctic","eco_biome_":"PA13","nnh":2,"eco_id":808,"shape_leng":75.5063575591,"shape_area":72.7246536311,"nnh_name":"Nature Could Reach Half Protected","color":"#F9AB58","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":674924.4490942877,"percentage":2.5582589555630455}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-150.80494658699996,62.91198153000016],[-151.01588472399993,62.80803788400004],[-151.02635170899998,62.721184268],[-151.22398357499995,62.648122068000134],[-151.16469986999994,62.50354976200015],[-150.9804733199999,62.487102156000105],[-150.85234024199994,62.40644858900015],[-150.66888818199993,62.50456670500017],[-150.47153523999995,62.6509578460001],[-150.52436857999996,62.71706791500003],[-150.67196668699992,62.75317966900013],[-150.69111665299997,62.85067981000009],[-150.80494658699996,62.91198153000016]]],[[[-150.45095869899998,63.08481704400009],[-150.37565567999997,63.01581805500001],[-150.5882416999999,62.8511607640001],[-150.6138765769999,62.797283567000136],[-150.40338388599994,62.701551728000084],[-150.1740920299999,62.85913797200004],[-150.00115513899996,62.93264595200003],[-150.23310867599994,63.04947273800008],[-150.45095869899998,63.08481704400009]]],[[[-141.62568039099995,62.53673996000009],[-141.76740412299995,62.56216269800018],[-141.73836439999997,62.652702457000146],[-142.11280676799993,62.74064131199998],[-142.24119613799996,62.89207469500019],[-142.57585336299996,63.06886394100002],[-142.57872298299998,63.18941558],[-142.79183486699992,63.24360603700012],[-143.1702559539999,63.25536974500005],[-143.35384950899993,63.32091090100005],[-143.62851104799995,63.370339632000196],[-144.00381091199992,63.46877192100004],[-144.14537480499993,63.66565768400005],[-144.55896979299996,63.677162641000166],[-144.86659393099993,63.74578541700009],[-145.17389876599995,63.76407847200011],[-145.57739379499998,63.85623829200006],[-145.74106491699996,63.81388084100007],[-145.9185404079999,63.83161874500007],[-145.98143806499996,63.66764867000012],[-146.12803027799993,63.695266401000026],[-146.09096981299996,63.83602598900006],[-146.3200255959999,63.90605724700015],[-146.52238806799997,63.920668722000016],[-146.67257281499997,64.07323148000017],[-147.13465070399994,64.07788715100003],[-147.35043578499992,64.10972553400006],[-147.795727172,64.22213508900012],[-148.096404396,64.1612806930001],[-148.5557798829999,64.21915197800013],[-148.97732857699998,64.20279577300016],[-149.11341645099998,64.15180701300017],[-149.03278738599997,63.977445119000095],[-149.25828299199995,63.94374095900008],[-149.36079658899996,64.06021374300019],[-149.67437304199993,63.996067911000125],[-149.97095334199994,63.96029453200009],[-150.03276388099997,63.839021506],[-150.27648217599992,63.76686559500007],[-150.33469182799996,63.818109564999986],[-150.31840945799996,64.03025590200008],[-150.4900687519999,63.94596600200009],[-150.60187282099994,63.8103692160002],[-150.99340779399992,63.59010266100006],[-151.36034759499998,63.45307056700011],[-151.33330302699997,63.33080506200008],[-151.82270880499993,63.267873478000126],[-151.95702726599998,63.18544597500011],[-152.42106830399993,63.021702485],[-152.69653911999998,62.967825773000186],[-152.82039244499992,62.84559405700003],[-153.063032016,62.781653471000084],[-153.3229355539999,62.66157171400005],[-153.35951173799995,62.581511637000176],[-153.5989821519999,62.48786123000008],[-153.87248666199997,62.48402843100007],[-154.29526900299996,62.37834123200008],[-154.55427670799995,62.26362516500012],[-155.14619518,62.128400187000125],[-155.31864014199994,62.048174314000164],[-155.30230736399992,61.95974307300003],[-155.175748453,61.856287858000144],[-155.12303830899998,61.75407597700007],[-155.19408751399993,61.63205239500007],[-154.98566865599997,61.64586460800007],[-154.68632275899998,61.80045953300004],[-154.56730227299997,61.74345105100008],[-154.52393725599998,61.57245445500007],[-154.35434127399998,61.454893514000105],[-154.44431855799994,61.38491116800009],[-154.44180292899998,61.21978969600002],[-154.2830548199999,61.1174472940001],[-154.12337164899995,61.08580066500008],[-153.94306219499998,61.19646763300011],[-153.83913533599994,61.16976994800012],[-153.80720237099996,61.089982052000096],[-153.82502580999994,60.90050252200007],[-154.1694995089999,60.88434482800005],[-154.49194349399994,60.842194326000026],[-154.82032882199994,60.75693313900001],[-154.921210098,60.604536723000194],[-155.07912709599992,60.564378218],[-155.17918535799998,60.485263977000045],[-155.15643132299996,60.41038914300009],[-154.83228314099998,60.302251636],[-154.61024066099998,60.28782396200012],[-154.2014272449999,60.32433860100008],[-154.21219893699995,60.21892535300003],[-154.51531732399997,60.09076566200014],[-154.57974131399996,60.01918549600009],[-154.52008429999995,59.885888189000184],[-154.27873304699992,59.78672401199998],[-154.23131157599994,59.70662255900004],[-154.62949692499996,59.58096039999998],[-154.64764329799993,59.49338130400014],[-154.80230455999995,59.422297028000116],[-154.32630082199998,59.397520310000175],[-154.0878217249999,59.36796473300018],[-153.69904907099996,59.463601151000034],[-153.76101275499994,59.54341931700009],[-153.5854309469999,59.551473890000125],[-153.46457646899992,59.65171026500013],[-153.2141764669999,59.63427394200016],[-153.04874923799994,59.695355781000046],[-152.9944856619999,59.791264874000035],[-153.14439475999993,59.80761939400014],[-153.22584933399992,59.861319378000076],[-153.00254026699994,59.88672850300003],[-152.8611039019999,59.87501034400009],[-152.70645847799994,59.91528309200004],[-152.56914040099994,60.07174674000015],[-152.7657222899999,60.195219426000165],[-152.5250790409999,60.25320946100004],[-152.46573694799994,60.560692135000124],[-152.37449647699992,60.85428915200015],[-152.188261845,60.915605025000104],[-152.11824792099998,61.03561341900013],[-151.97840343599995,61.168268411000156],[-151.79196203299995,61.205446585000175],[-151.76192007399993,61.2690944200001],[-151.8946265349999,61.35914847600014],[-151.91473304999997,61.43420437900005],[-151.594982988,61.60075038400015],[-151.58924454899991,61.68717223400017],[-151.80408962899992,61.92402400500015],[-152.03632896799994,61.943053590000034],[-152.08395245499992,62.00169998900003],[-152.01151652199997,62.08505570000011],[-152.0018846399999,62.21612341300016],[-152.10964846399997,62.296450539000034],[-152.08186207999998,62.417654713000104],[-151.90602591999993,62.4622855720001],[-151.54215870199994,62.378628434],[-151.4126078109999,62.387374991000115],[-151.40523941099997,62.46599789600009],[-151.28777222399995,62.49811896800003],[-151.4089356339999,62.65528339800005],[-151.35679667499997,62.74325013100008],[-151.42929058299993,62.77959791900014],[-151.59498572099994,62.68159067199997],[-151.9352116979999,62.691837045],[-151.97526562799993,62.60939415400014],[-152.10742158599993,62.524554877000014],[-152.34294166699996,62.54011940099997],[-152.42021158199992,62.5978495920001],[-152.17088365799998,62.68100259700009],[-152.15379362799993,62.74470338500009],[-151.95805372499993,62.874672002000125],[-151.70338468399993,62.90364220700019],[-151.66076656199994,63.005594816000155],[-151.45996063699997,63.0318055300001],[-151.31437670199995,63.09278639000007],[-151.22377067499994,63.18486662600003],[-150.85284463699995,63.200858459000074],[-150.37156665299995,63.28754711900018],[-150.2149357039999,63.209822737000195],[-150.1083525969999,63.30318372700003],[-149.99589561899992,63.204219434000095],[-150.06312569099998,63.13264418400013],[-150.05973856399996,63.02817499200006],[-149.75600805299993,62.89731760000012],[-149.9439995639999,62.789905541],[-150.08403753099998,62.67262460300003],[-150.00359796599994,62.52250192300016],[-149.8094572359999,62.517796843999974],[-149.660564981,62.4207936790001],[-149.62144436199992,62.34302304400012],[-149.79670365899992,62.2568621530001],[-149.70632116099992,62.00498063600014],[-149.6857505879999,61.778162747000124],[-149.5822900439999,61.72485549200002],[-149.37608732799998,61.71197821700014],[-148.880987455,61.82443004500004],[-148.70684989699998,61.78156624600007],[-148.65722560899994,61.795003785000176],[-147.65567208999994,61.81216439800011],[-147.25981110999996,61.8614102140001],[-147.03587935799996,61.939028250000035],[-146.99001874599992,62.23110575400017],[-146.99863988199994,62.35902049100008],[-147.331826304,62.47219763900017],[-147.3534510929999,62.59229610000011],[-147.19815005799998,62.670281855000155],[-146.6355605889999,62.71733129800009],[-145.69952381399997,62.736993021000046],[-145.63384819499993,62.77530676900005],[-145.27607359999996,62.793606865000186],[-144.57148179499995,62.87747682500009],[-144.51913809799996,62.71436847899997],[-144.24104982899996,62.63507709100003],[-143.96100017599997,62.67803101200013],[-143.86140287799998,62.740878978000126],[-143.5849483909999,62.70217389900017],[-143.49659271399992,62.55065699700003],[-143.60250167499998,62.52745895400005],[-143.85280752499995,62.534125453],[-144.11697789199997,62.56944004500019],[-144.39969093499997,62.489690941],[-144.56753052699997,62.4070685210001],[-144.650346692,62.25726306100006],[-144.81338123699996,62.20564820000004],[-144.91151484699995,62.05342326700003],[-144.89182012799992,61.959039171000086],[-144.75768084899997,61.8963694790001],[-144.59519752099996,61.90087990100011],[-144.5995585569999,61.79910837800003],[-144.24664304199993,61.663217138000164],[-144.20893857599998,61.602231540000105],[-144.05907762999993,61.55675288900011],[-143.75455008899996,61.514802698000096],[-143.53722494699997,61.359708779000016],[-143.44550006699995,61.34656012000005],[-143.232820463,61.4132877130001],[-142.74835652699988,61.41042313200012],[-142.64150087999997,61.35435586500017],[-142.76168915499994,61.21731692600008],[-142.73984894199992,61.145929582],[-142.32341149299992,61.1516570930001],[-142.181179048,61.12135312100003],[-141.991795831,61.07843041800015],[-141.23453484399994,60.851699142000086],[-140.93948389899998,60.862904604000164],[-140.60029515899993,60.82292499800013],[-139.89151341999997,60.674880894000125],[-139.61171043099995,60.50112475200007],[-139.41591362499997,60.349700075000044],[-139.090358499,60.35899433999998],[-139.08054708599997,60.28989672600005],[-139.18936287099996,60.088441698000054],[-139.04723962699995,59.996310935000054],[-138.6894970279999,59.9068520830001],[-138.6164025089999,59.77392957300003],[-137.73009127999995,59.311486479],[-137.54643268599983,59.37636736200005],[-137.2748566759999,59.22497191800005],[-137.20581891299992,59.209432966000065],[-137.14866324399998,59.22713680200013],[-137.259887602,59.30063871100009],[-137.0315296099999,59.308247586000164],[-137.02199236299992,59.31707282400009],[-137.19459559399996,59.327640509000105],[-137.29853856999995,59.368520057000126],[-137.17799355799997,59.45892022400005],[-137.0181276979999,59.42711207400009],[-136.95304308699997,59.34805675900003],[-136.90276300499994,59.3508061710001],[-136.87526499799998,59.35795925100007],[-136.8620197329999,59.363485174000175],[-136.840419603,59.376465357000086],[-136.81751847599998,59.509749006000106],[-137.07193100799998,59.60124323800011],[-137.35578820799998,59.66552221600017],[-137.55366096199998,59.87528538400011],[-137.66389903699996,59.943665273000136],[-137.9160426009999,59.95882051900014],[-138.02784874999998,60.18907672900019],[-137.95897103099998,60.340380686000174],[-137.80126991599997,60.467364437000185],[-137.85767717799985,60.63505742400008],[-138.08321580599994,60.734561138],[-138.60664106099995,60.81522699200002],[-138.65100096999998,60.92883861100012],[-138.4947514999999,61.01911266299999],[-138.57610877499985,61.125211751999984],[-138.855239322,61.25811851200007],[-139.08447458299997,61.32264235000014],[-139.43960490099988,61.48818508700015],[-139.6608728399999,61.548777756000106],[-140.08805643499983,61.729980374000036],[-140.2643707499999,61.856639444999985],[-140.56626801899995,61.983541790000174],[-140.88380383699996,62.13578765300008],[-140.98974831199996,62.165525575],[-141.06242453599998,62.25651918800003],[-141.56031822499995,62.32086499500019],[-141.62568039099995,62.53673996000009]]]]},"properties":{"objectid":10,"eco_name":"Alaska-St. Elias Range tundra","biome_num":11,"biome_name":"Tundra","realm":"Nearctic","eco_biome_":"NE11","nnh":2,"eco_id":405,"shape_leng":98.4007274691,"shape_area":28.388010196,"nnh_name":"Nature Could Reach Half Protected","color":"#61D2F2","color_bio":"#9ED7C2","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":164682.52242904945,"percentage":1.9272033427828732}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[22.598936081000147,-33.48720550499996],[22.818931580000083,-33.480655669999976],[23.010395050000113,-33.43757247899998],[22.913816452000106,-33.460594176999905],[22.642753601000095,-33.47464370699993],[22.613920212000153,-33.484069823999846],[22.60693740800002,-33.486244201999966],[22.598936081000147,-33.48720550499996]]],[[[24.021545409999987,-33.49978256199989],[23.780355453000084,-33.42256164599996],[23.665708542000175,-33.454513549999945],[23.696794510000075,-33.47175598099989],[23.83847236600019,-33.44935607899998],[24.021545409999987,-33.49978256199989]]],[[[22.298444748000065,-33.412212371999885],[22.261775970000087,-33.41794204699994],[22.24868774400005,-33.45969390899995],[22.20895385700004,-33.47620773299991],[22.197435379000183,-33.479648589999954],[22.046663284000147,-33.48831939699983],[21.821697235000045,-33.49881744399988],[21.760358810000184,-33.44584655799997],[21.681882858000165,-33.438774108999894],[21.674648285000103,-33.43941116299993],[21.613756180000053,-33.42699050899995],[21.561912537000126,-33.453716277999945],[21.56402587900004,-33.45589828499993],[21.5698471070001,-33.464859008999895],[21.569126129000153,-33.46725845299994],[21.49312210100004,-33.46449279799998],[21.496410370000035,-33.46849822999991],[21.511993408000137,-33.473060607999855],[21.606601715000068,-33.514198302999944],[21.513328552000075,-33.56675720199996],[21.463525772000025,-33.5947036739999],[21.302585602000022,-33.60488510099998],[21.517396927,-33.58380889899996],[21.62049102800006,-33.65810775799997],[21.661785126000098,-33.7243423459999],[21.688760757000182,-33.730087279999964],[21.720790863000047,-33.73759841899988],[21.72102356000005,-33.73758697499994],[21.75108337400013,-33.673732757999915],[21.994020462000094,-33.69606780999993],[22.00679779100011,-33.70055770899995],[22.0071544650001,-33.69773483299991],[21.962570190000065,-33.64371490499997],[21.77438736000005,-33.66377258299997],[21.688396454000156,-33.625423430999945],[21.68531990100007,-33.50420761099991],[21.914485931000172,-33.53492355299994],[22.029062270999987,-33.51764678999996],[22.13336563100006,-33.62580490099998],[22.22358131400017,-33.540306090999934],[22.41471862800006,-33.56373596199984],[22.444400787000063,-33.54417800899995],[22.322053909000147,-33.5116958619999],[22.25762176500018,-33.46854400599989],[22.26362228400012,-33.456951140999934],[22.271440506000033,-33.438644408999835],[22.273843765000038,-33.43687820399998],[22.298444748000065,-33.412212371999885]]],[[[21.629728317000115,-33.3476219179999],[21.620159149000074,-33.345989226999905],[21.522659302000136,-33.365833281999926],[21.56378746000013,-33.389324187999875],[21.75631523100003,-33.36164855999988],[21.74386596700009,-33.353107451999904],[21.629728317000115,-33.3476219179999]]],[[[22.861640930000135,-33.40334320099993],[22.790967941000133,-33.36912155199997],[22.541143417000114,-33.354709624999884],[22.480758667000032,-33.311401366999974],[22.36598587000003,-33.28720092799995],[22.559194565000155,-33.36430358899992],[22.770185471000104,-33.370143889999895],[22.861640930000135,-33.40334320099993]]],[[[23.171007156000087,-33.28066635099998],[23.136953354000127,-33.26882934599996],[23.14007759100008,-33.27584075899995],[23.154291153000145,-33.27613067599998],[23.171007156000087,-33.28066635099998]]],[[[23.080059052000024,-33.27307891799995],[22.89963913000014,-33.281730651999965],[22.939804077000133,-33.28049850499997],[23.06766700700007,-33.2823829649999],[23.08231544500012,-33.28621673599997],[23.080059052000024,-33.27307891799995]]],[[[22.09833717300006,-33.26586914099994],[21.62708282500006,-33.295806884999934],[21.498758316000192,-33.32812118499987],[21.508626938000134,-33.34086227399996],[21.680961609000065,-33.30394363399995],[22.0241661070001,-33.28862762499995],[22.104618073000154,-33.28346252399996],[22.128234863000046,-33.28697967499994],[22.168607711999982,-33.276451110999915],[22.16839790300014,-33.27338409399988],[22.09833717300006,-33.26586914099994]]],[[[23.382722855000054,-33.20416259799998],[23.46594619800004,-33.23509597799989],[23.467905045,-33.237033843999825],[23.426118851000126,-33.21022415199997],[23.382722855000054,-33.20416259799998]]],[[[23.087944031000063,-33.292274474999886],[22.76608657800017,-33.29518127399996],[22.563146591000077,-33.27561950699993],[22.51502227800006,-33.24422454799998],[22.24511337300015,-33.206203460999916],[22.094491959000038,-33.23376846299993],[22.082466125000167,-33.235580443999936],[22.042398453000146,-33.237930297999924],[22.030044556000178,-33.23942184399988],[21.984117508000168,-33.24660873399995],[21.96972656200012,-33.24791717499994],[21.90445137000006,-33.25024032599998],[21.87367820700001,-33.249919890999934],[21.76122093200013,-33.254329680999945],[21.75218963599997,-33.25495529199992],[21.56135749800012,-33.255542754999965],[21.597351074000187,-33.2614517209999],[21.556921005000163,-33.26987457299998],[21.52314186100017,-33.274475097999925],[21.49814224199997,-33.28274536099997],[21.496047974000078,-33.28455734299996],[21.49616432200014,-33.28579330399998],[21.52472305300006,-33.28511810299989],[21.53863716100011,-33.28364944499998],[21.604835510000044,-33.274738311999954],[21.61737632800009,-33.274169921999885],[21.617406845000062,-33.274169921999885],[21.622434616000135,-33.27414703399995],[21.749530792000087,-33.26080703699995],[22.12146186800004,-33.254226684999935],[22.121559143000184,-33.25371169999988],[22.318607330000134,-33.233516692999956],[22.55550766000016,-33.28293228099989],[22.807653427000105,-33.303833007999856],[22.811277390000043,-33.30715560899995],[22.891050339000117,-33.30347824099988],[22.89558410600017,-33.303558349999946],[23.08405494700014,-33.294635772999925],[23.08748245200013,-33.29467391999998],[23.087944031000063,-33.292274474999886]]],[[[24.07289505000017,-33.22549056999998],[24.027587891,-33.28084182699996],[24.242116928000087,-33.33784103399995],[24.218574524000132,-33.26463317899987],[24.07289505000017,-33.22549056999998]]],[[[23.52957534800015,-33.1677780149999],[23.503786087000037,-33.16166686999992],[23.28031730700002,-33.21391296399992],[23.52957534800015,-33.1677780149999]]],[[[24.501014709000174,-33.24581909199992],[24.460987091000106,-33.19628524799998],[24.26026916500018,-33.15716552699996],[24.237325668000096,-33.20304870599995],[24.418346405000023,-33.27397918699995],[24.50060081500004,-33.26870346099997],[24.609500885000102,-33.274936675999925],[24.501014709000174,-33.24581909199992]]],[[[24.280303955000136,-33.14144515999993],[24.187868117999983,-33.20354461699992],[23.958671570000035,-33.17131805399998],[23.955286026000067,-33.17033386199989],[23.842914581000116,-33.14305877699985],[23.917873383000085,-33.18558502199994],[24.2354640960001,-33.20820999099993],[24.280303955000136,-33.14144515999993]]],[[[23.59218025200005,-33.12965011599994],[23.52727127100019,-33.10121917699996],[23.441492081000035,-33.13287353499993],[23.45914650000003,-33.13148498499993],[23.573228836,-33.124851226999965],[23.59218025200005,-33.12965011599994]]],[[[24.10127449000015,-33.1196327209999],[23.760618210000132,-33.038249968999935],[23.668531418000157,-33.03549575799997],[23.44884109500009,-33.07607650799986],[23.490203857000097,-33.076190947999976],[23.580530167000063,-33.10398864699994],[23.6006984710001,-33.15507888799988],[23.69979858400012,-33.173160552999946],[23.840955734000147,-33.13989639299996],[23.947362900000144,-33.100830077999944],[24.10127449000015,-33.1196327209999]],[[23.648973465000097,-33.09937667799994],[23.714302063000105,-33.05720138499987],[23.796806334999985,-33.09440994299996],[23.71754264800012,-33.09647369399988],[23.750398636000057,-33.10547637899998],[23.79335212700005,-33.12023925799991],[23.665847778000114,-33.116619109999874],[23.666730881000092,-33.114112853999984],[23.659788132000074,-33.100406646999886],[23.648973465000097,-33.09937667799994]]],[[[26.83124160800014,-32.55907821699992],[26.78749465900006,-32.531749724999884],[26.646099091000053,-32.550685882999915],[26.616403580000167,-32.68450927699996],[26.73624801600016,-32.74461364699994],[26.779607773000123,-32.694576262999874],[26.720390320000092,-32.62932968099989],[26.83124160800014,-32.55907821699992]]],[[[24.570779800000025,-33.20522308299991],[24.84134864800012,-33.25196838399995],[24.834619522000082,-33.315895080999894],[24.617908478,-33.27744674699994],[24.49816513100012,-33.301841735999915],[24.480827332000104,-33.29525375399993],[24.439147949000073,-33.287723540999934],[24.38503646900017,-33.33288574199992],[24.66020393400015,-33.36429595899989],[24.82632064800015,-33.34632873499993],[24.87133789100011,-33.498989104999964],[24.71630668600011,-33.49513626099997],[24.638523102000192,-33.44967651399992],[24.545629501000178,-33.504402160999916],[24.293264389000115,-33.54623413099989],[24.395618439000145,-33.57910156299994],[24.657491684000092,-33.58325195299989],[24.646986008,-33.64080810499996],[24.466756821000047,-33.69223403899997],[24.45343017600004,-33.648399352999945],[23.994297028,-33.54283523599997],[23.933725357000185,-33.512134551999964],[23.757741928000144,-33.50834655799997],[23.718702316000133,-33.56210327099984],[23.716894150000087,-33.57447433499988],[23.72185897800017,-33.57296371499996],[23.725109100000168,-33.56579208399995],[23.722484588999976,-33.5511054989999],[23.829004288000192,-33.5260620119999],[23.867923737000126,-33.57634353599991],[23.85606765700004,-33.58581542999997],[23.85732078600006,-33.58700942999991],[23.867456436000055,-33.586170196999944],[23.865892410000185,-33.58809280399993],[23.86901092500017,-33.592380523999964],[23.869585037000093,-33.587635039999896],[23.903484344000162,-33.57958221399991],[23.906766891000018,-33.575027465999824],[23.93227195700001,-33.55270004299996],[24.116369247000023,-33.64416503899997],[24.112440109000033,-33.63420867899998],[24.113418579000154,-33.63262557999997],[24.111227036000116,-33.63196182299998],[24.100421906000122,-33.62925338699995],[24.14341354400011,-33.64511871299993],[24.1487045290001,-33.64888381999998],[24.15341758700015,-33.65106964099988],[24.152837753000142,-33.649307250999925],[24.18228912400008,-33.659713744999976],[24.181680679000067,-33.66114807099996],[24.18914604200006,-33.66410827599992],[24.18732070900012,-33.66180801399997],[24.22735214200003,-33.675796508999895],[24.2268943790001,-33.67734527599998],[24.230182648000095,-33.67849731399997],[24.23053932200014,-33.67693710299994],[24.235738754000067,-33.67905807499994],[24.236047745000178,-33.68054962199989],[24.242624283000055,-33.68289565999993],[24.24222564700011,-33.6812820429999],[24.26275062600007,-33.66664123499993],[24.354848862000097,-33.65906143199987],[24.33266830399998,-33.795242309999935],[24.251775742000063,-33.8585166929999],[23.913433075000057,-33.766662597999925],[23.902320862000124,-33.75227355999988],[23.889308929000094,-33.74784851099997],[23.898252487000036,-33.757900237999934],[24.22220802300012,-33.862663268999825],[24.334825516000137,-33.805103301999964],[24.41142845200011,-33.703956603999984],[24.49196052600007,-33.6943244929999],[24.589143753000087,-33.77654266399992],[24.694437027000106,-33.81774902299992],[24.69855690000003,-33.8203811649999],[24.70507621800016,-33.82450103799994],[24.715154648,-33.8301849369999],[24.715726852000103,-33.83044815099993],[24.76682472200008,-33.85438919099994],[24.780401230000052,-33.86438369799998],[24.799270630000024,-33.86732482899998],[24.81456565899998,-33.88309097299998],[24.821527481000146,-33.89009475699993],[24.827974319000077,-33.89627838099989],[24.836753844999976,-33.90590667699996],[24.8412666320001,-33.905826568999885],[24.840824127000133,-33.92236328099989],[24.851247787000034,-33.934055327999886],[24.856163025000114,-33.93904113799988],[24.86909675600009,-33.95788955699993],[24.879081726000038,-33.96917343099983],[24.875875473000065,-33.97913742099985],[24.880788803000144,-33.97872924799998],[24.892896652,-33.981910705999894],[24.884754181000176,-33.985382079999965],[24.89700126600019,-34.00074768099989],[24.900592804000155,-34.00534820599995],[24.903152466,-34.00818633999995],[24.904352188000132,-34.00940322899993],[24.907432556000117,-34.01225280799997],[24.91032409700017,-34.014823913999976],[24.911218643000097,-34.01562118499987],[24.914152145000173,-34.0182495119999],[24.909149170000035,-34.03139877299998],[24.91890525800011,-34.0403518679999],[24.91103172300012,-34.043201446999944],[24.881088257000044,-34.03655242899998],[24.880847931000062,-34.03841018699984],[24.86712837200008,-34.03566360499997],[24.86187553400015,-34.03425979599996],[24.883157730000164,-34.08523559599996],[24.806438446000186,-34.131961822999926],[24.68908500700013,-34.09460449199992],[24.695186615000125,-34.09721374499992],[24.722419739000088,-34.11079025299995],[24.742523193000125,-34.11966705299989],[24.796035766999978,-34.14691543599997],[24.60833740200019,-34.17760086099997],[24.454837799000074,-34.146434783999894],[24.592817307000075,-34.18655013999995],[24.648122787000034,-34.16998290999982],[24.82723236099997,-34.21057510399987],[24.84307861300016,-34.14149475099998],[24.921972149999988,-34.08014131599998],[24.938507080000136,-34.00170135499991],[25.01470947300004,-33.96236801099985],[25.183839798000122,-33.95659255999993],[25.408071518000156,-34.03295898399989],[25.592010498000036,-34.04970931999992],[25.681768417000114,-34.019828795999956],[25.61320114100016,-33.94995117199994],[25.632576740000047,-33.864176192999935],[25.718013763000044,-33.77531433099989],[25.915822983000055,-33.69128036499984],[26.157712936000166,-33.696273803999816],[26.32990646400009,-33.751491546999944],[26.50408363300005,-33.761718749999886],[26.735059738000075,-33.65375900299995],[27.1134452820001,-33.51981353799994],[27.17264556900011,-33.46629714999989],[27.608816147000027,-33.21809005699993],[27.72726821900011,-33.12176132199994],[27.90809249900002,-33.0391311649999],[27.96688652000006,-32.974201201999904],[28.096036911000056,-32.890960692999954],[28.116903305000108,-32.830829619999975],[28.348260880000055,-32.703769683999894],[28.176179886000057,-32.70287322999991],[28.135890961000143,-32.80305099499998],[27.995456696000133,-32.796558379999965],[27.94686889600007,-32.8410415649999],[27.826925278000033,-32.78471755999993],[27.765813828000034,-32.89205932599998],[27.703741074000106,-32.91531753499987],[27.623128891000135,-32.88071823099989],[27.462511063000022,-32.90019607499988],[27.347307205000163,-32.96468353299997],[27.21154594400008,-32.93361663799993],[27.235322952000104,-32.85541534399994],[27.106060028000115,-32.87499618499993],[27.073297501000127,-32.93493270899995],[26.97377395600006,-32.97665405299989],[26.732110977000104,-32.886230468999884],[26.712511063000193,-32.77275466899988],[26.561105727999973,-32.73834228499993],[26.508434296000075,-32.7688026429999],[26.405721664,-32.70078659099994],[26.384454727000104,-32.64818954499992],[26.265756607000128,-32.57955551099997],[26.23803710900006,-32.65710067699996],[26.12201118500019,-32.63359832799995],[26.051673889000142,-32.471290587999874],[26.150175095000066,-32.43040466299993],[26.058147430000076,-32.410476684999935],[25.903541565000126,-32.3889312739999],[25.807477951000067,-32.427345275999926],[25.78728485100015,-32.44745635999993],[25.70494842500011,-32.542507171999944],[25.608745575000114,-32.45172119099993],[25.665311813000073,-32.31787872299992],[25.565221786000052,-32.18080139199998],[25.46768760700013,-32.20686340299994],[25.34222602800014,-32.21533966099997],[25.267490387000066,-32.18900680499996],[25.213876724000045,-32.12009048499988],[25.060819626000068,-32.17147064199992],[24.992900848000147,-32.083099364999896],[25.004936218000125,-32.03449630699998],[24.92877578700012,-31.95834350599995],[24.95812797500008,-31.87842559799992],[24.86871910100018,-31.759523391999892],[24.953153610000186,-31.710853576999966],[24.91647911100017,-31.606994628999928],[24.773849487000177,-31.719572066999945],[24.74662208600006,-31.829912185999945],[24.672927856000058,-31.893291472999977],[24.567455292000147,-31.93611907999997],[24.509071350000056,-32.04661560099987],[24.639039993000097,-32.113220214999956],[24.734994888000074,-32.21139144899996],[24.70979881300019,-32.28734207199983],[24.856891632000043,-32.335357665999936],[25.16677665700007,-32.35554885899995],[25.296495438000193,-32.577808379999965],[25.370929718000127,-32.67047119099993],[25.345390320000092,-32.76502990699987],[25.365430832000072,-32.88137817399996],[25.247371674000135,-32.86028671299994],[25.19252586400006,-32.76493072499994],[25.141975403,-32.76839065599995],[25.09358978300014,-32.85869216899988],[24.772306442000115,-32.77899932899993],[24.7246456150001,-32.84052276599988],[24.501258850000056,-32.86373138399995],[24.447792053000114,-33.008819579999965],[24.343069077,-33.044342040999936],[24.453468323000095,-33.163822173999904],[24.570779800000025,-33.20522308299991]],[[25.456676483000138,-33.326148986999954],[25.261152267000057,-33.280052184999874],[25.443073273000095,-33.23091125499997],[25.72458457900018,-33.240028380999945],[25.83837318400009,-33.26713180499996],[25.797784805000106,-33.36700057999997],[25.456676483000138,-33.326148986999954]],[[26.365535736000027,-33.41809463499993],[26.205894470000032,-33.40809631299993],[26.317213058000164,-33.33789062499994],[26.358182907000128,-33.27828216599988],[26.55860137900015,-33.349666594999974],[26.494970321999972,-33.38272094699994],[26.316923141000075,-33.34236144999994],[26.365535736000027,-33.41809463499993]],[[25.39438056900019,-33.86073684699994],[25.520879745000173,-33.89468765299989],[25.66413116500007,-33.99034881599994],[25.573287964000087,-34.00666427599998],[25.368154526000183,-33.99442291299988],[25.30413818400018,-33.93368530299995],[25.102504730000135,-33.8885345459999],[24.910839081000177,-33.86886215199996],[24.917877197000053,-33.80202865599995],[24.85407447800003,-33.710380553999926],[24.72214317300012,-33.68162536599988],[24.677848816000107,-33.520904540999936],[24.855646133000107,-33.556060790999936],[24.953151703000117,-33.55442810099993],[25.338373184000034,-33.606113433999894],[25.456968307000125,-33.68552780199991],[25.29706955000006,-33.70845413199987],[25.26632118200007,-33.83009338399995],[25.39438056900019,-33.86073684699994]],[[24.674650192000115,-33.80604553199993],[24.67627143900006,-33.80724334699994],[24.668481827,-33.80221939099994],[24.670642853000118,-33.80350875899984],[24.674650192000115,-33.80604553199993]]]]},"properties":{"objectid":12,"eco_name":"Albany thickets","biome_num":12,"biome_name":"Mediterranean Forests, Woodlands & Scrub","realm":"Afrotropic","eco_biome_":"AF12","nnh":3,"eco_id":88,"shape_leng":137.049799551,"shape_area":3.54619015837,"nnh_name":"Nature Could Recover","color":"#FF7F7E","color_bio":"#FE0000","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":36817.892581021464,"percentage":1.1145474762202205}}, + {"type":"Feature","geometry":null,"properties":{"objectid":15,"eco_name":"Aldabra Island xeric scrub","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Afrotropic","eco_biome_":"AF13","nnh":1,"eco_id":91,"shape_leng":1.52739876935,"shape_area":0.0130979403194,"nnh_name":"Half Protected","color":"#FA647F","color_bio":"#CC6767","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":160.13146038009643,"percentage":0.0006069682956877756}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-176.28170686299993,51.86391706600011],[-176.42435228999997,51.850617052000075],[-176.40374317299998,51.751244341000074],[-176.26356138799994,51.781635263000055],[-176.28170686299993,51.86391706600011]]],[[[-178.0906520119999,51.919398672],[-178.2278337909999,51.873525937000124],[-177.95029744899995,51.765680530000054],[-177.95071559299998,51.6392169130001],[-177.71990659499994,51.8157987300001],[-177.92433384399993,51.857516882000084],[-177.95211567199993,51.91534414300003],[-178.0906520119999,51.919398672]]],[[[-177.14396128199996,51.94344423000001],[-177.20568850699993,51.820635150000044],[-177.45758844299996,51.75405331400009],[-177.27513390799996,51.68050789100005],[-177.14867030199994,51.70704426500015],[-177.13699760799994,51.81448970400015],[-177.04510673999994,51.89860788400017],[-177.14396128199996,51.94344423000001]]],[[[-176.57936285799997,52.00302729500015],[-176.62960683299997,51.96261701200012],[-176.77404317299997,51.965889721999986],[-176.79209766099999,51.78554429300016],[-176.86581579999998,51.68219884600012],[-176.581897668,51.69004433100008],[-176.53047951299993,51.74628069200003],[-176.42421589499997,51.74491706800018],[-176.4264886489999,51.83627160000009],[-176.62650680399997,51.86418975400011],[-176.5448795629999,51.9272443000001],[-176.57936285799997,52.00302729500015]]],[[[179.7044177460001,52.00487541500007],[179.5828417670001,52.01683940000015],[179.48244879600009,51.98283239500006],[179.52185281300012,51.89676341300009],[179.61434880100023,51.87177042600007],[179.73475676900011,51.90760443300019],[179.7044177460001,52.00487541500007]]],[[[-176.13443423599998,52.11255341000003],[-176.21187057199995,52.06553522600012],[-176.15885237799992,51.996526151000126],[-176.02185240099996,51.984844350000174],[-175.98157969299996,52.02856253100015],[-176.13443423599998,52.11255341000003]]],[[[177.6672411390001,52.07627218400012],[177.5633811480003,52.12195716500014],[177.4974261970001,51.99332618000011],[177.34556223800007,51.96300316900016],[177.2004082860003,51.89474416400009],[177.2934092810002,51.845608183000195],[177.40952123300008,51.93081918000013],[177.53820819200007,51.97889518600016],[177.6672411390001,52.07627218400012]]],[[[-173.5190710459999,52.15220825500006],[-173.89008007399994,52.14154457700005],[-173.9301709499999,52.056371856000055],[-173.45135284099996,52.0485082780001],[-173.5190710459999,52.15220825500006]]],[[[-172.4291894689999,52.38708108000009],[-172.57722579999998,52.35019924900013],[-172.608953035,52.253017440000065],[-172.41141671199995,52.280844733000094],[-172.30256219799995,52.330644738000046],[-172.4291894689999,52.38708108000009]]],[[[-174.14316193599998,52.41597178000006],[-174.33093461899998,52.37018994700003],[-174.44897091699994,52.21954450000004],[-174.56499815599994,52.17227176500012],[-174.609798128,52.110880859000076],[-174.77139809399992,52.08454448100008],[-174.92006171399993,52.109271733000185],[-174.9878071409999,52.05961718700007],[-174.78320716599993,52.03228994200009],[-174.4442344999999,52.04844452500009],[-174.32726181699994,52.12261725500019],[-174.21845273299996,52.09430818100003],[-174.09018913099996,52.13911728000005],[-173.9852164769999,52.31759908700019],[-174.14316193599998,52.41597178000006]]],[[[173.70772689600028,52.47737470100009],[173.62386890900007,52.50694568700004],[173.5300909460002,52.449965687000144],[173.7256819260001,52.35657672500008],[173.70772689600028,52.47737470100009]]],[[[-170.6626080119999,52.69831761700016],[-170.81796251499992,52.63627215100013],[-170.78325339899993,52.54207216700013],[-170.5799261999999,52.68202672000007],[-170.6626080119999,52.69831761700016]]],[[[-169.773526386,52.894454065000104],[-169.8870354459999,52.85011769300007],[-169.73909907699993,52.77842681200019],[-169.6763082079999,52.87111771800005],[-169.773526386,52.894454065000104]]],[[[173.1830614700001,52.95483273700006],[173.10723489400004,52.99322554700018],[172.74655197400034,53.010747507000076],[172.62906300600002,53.001321496000116],[172.6403580250003,52.92543851100015],[172.75422201100002,52.87748753200003],[172.76335249700003,52.823654011000144],[172.90361400700033,52.76166456800007],[172.99845797700016,52.79697657100013],[173.1668849360001,52.79522658900015],[173.42166786200005,52.84547460600004],[173.29538486900015,52.92698457800009],[173.1830614700001,52.95483273700006]]],[[[-167.96652883999994,53.55539706300004],[-168.23388135699992,53.528336000000195],[-168.40822674999995,53.4195269010001],[-168.38387215199995,53.26126328600003],[-168.55571758099993,53.254445084000054],[-168.7664629829999,53.18024506600017],[-168.75970840299996,53.08146326000008],[-168.85731745699997,53.013681438000106],[-168.86289015899993,52.94099053700012],[-168.64761747199998,52.977163288000156],[-168.4559357059999,53.05740875600003],[-168.27076306799992,53.24280875700009],[-168.12438127999997,53.27457240800004],[-167.8423449919999,53.38649061300015],[-167.78411776799993,53.50104515300012],[-167.96652883999994,53.55539706300004]]],[[[-166.11863628099994,53.854590783000106],[-166.30843623299998,53.78733622000016],[-166.23833621599996,53.71149987400008],[-166.13044533799993,53.7691544270001],[-166.11863628099994,53.854590783000106]]],[[[-166.65733627699998,54.01374524000005],[-166.89076351399996,53.98970884800008],[-167.070454377,53.92796337600004],[-167.14930887599996,53.82874519600011],[-166.78723615799993,53.73455434500005],[-167.02239975799995,53.71546340800006],[-167.09139971899992,53.633436135000125],[-167.17669964799992,53.461917962000086],[-167.26791782399997,53.47811794800003],[-167.5122904909999,53.39301792800012],[-167.70765409999996,53.38283608500012],[-167.81392678999995,53.32212698800009],[-167.622190424,53.250363384000195],[-167.13415418499991,53.426445245000195],[-166.93199968099992,53.473436174000085],[-166.83870877299998,53.447490735000144],[-166.6740724459999,53.48732711600013],[-166.56271794199992,53.568990757000165],[-166.55549068899992,53.62097257000016],[-166.27491801899993,53.68725441700013],[-166.37923624799993,53.84656347600003],[-166.23652718699992,53.88134531000003],[-166.264536309,53.97755438600018],[-166.44295444499994,53.90459982500005],[-166.57786350999993,53.8805907200001],[-166.64679988099996,53.92378161400006],[-166.65733627699998,54.01374524000005]]],[[[-165.92945462599997,54.22127258400013],[-166.11226365599995,54.12252711600007],[-166.04798181599995,54.04477258800006],[-165.71589096199992,54.090363535999984],[-165.72978189099996,54.14721807300009],[-165.92945462599997,54.22127258400013]]],[[[-165.47847288699998,54.2953362720001],[-165.6052455999999,54.29421807400013],[-165.68413648299997,54.24990897700013],[-165.54923644399994,54.112199920000194],[-165.48133647899994,54.179963556000075],[-165.55327285699994,54.23959990500015],[-165.47847288699998,54.2953362720001]]],[[[-170.11746444299996,57.242444385000056],[-170.42048255399993,57.190144350000025],[-170.26180073799995,57.139489833000084],[-170.11746444299996,57.242444385000056]]]]},"properties":{"objectid":16,"eco_name":"Aleutian Islands tundra","biome_num":11,"biome_name":"Tundra","realm":"Nearctic","eco_biome_":"NE11","nnh":1,"eco_id":406,"shape_leng":60.6210825778,"shape_area":1.63927284991,"nnh_name":"Half Protected","color":"#4DA6A2","color_bio":"#9ED7C2","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":12257.10174655897,"percentage":0.14343918899454147}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[81.42543764100009,47.477028012],[81.27381856700003,47.46942914700003],[81.34683952900008,47.383776657000055],[81.55853254000016,47.37555635700011],[81.66578653500017,47.3209670330001],[81.90682257800012,47.31036610500013],[82.157096652,47.18633422200014],[82.37394755100019,47.19883549600013],[82.44435855500006,47.2239745],[82.70680264900011,47.23132559600003],[82.83883656800009,47.18134531400017],[83.08488465300019,47.188852314000144],[83.62756359900015,46.996827103000044],[83.944816623,46.94673584300011],[83.99751264200012,46.991627138000126],[83.81316357800006,47.1111468740001],[83.80799865000012,47.248636741000155],[83.7148205520001,47.260465786000054],[83.45252951200013,47.235944696000104],[83.34301760000011,47.259897828000135],[83.24765752500008,47.338217326000176],[83.0111386580001,47.33096630900019],[82.80776250600013,47.29116685300016],[82.37551865500012,47.32741003500007],[81.97445665800012,47.41794867100003],[81.51605255200002,47.45477690900009],[81.42543764100009,47.477028012]]],[[[85.65242756000009,47.4408257340001],[85.54591352000011,47.44147885200016],[85.42407953900005,47.49322939299998],[85.18900252700013,47.48578609499998],[84.85485862700011,47.391196653000065],[84.74819153300012,47.34070138599998],[84.73203256500017,47.233946618000175],[84.91467255900005,47.13948608900017],[84.91177359400007,47.096055928000055],[84.71853652700014,46.977036256000076],[84.63805366000008,46.9547281560001],[84.64483663200014,46.79191236900016],[84.69910459300013,46.717288788000076],[84.84156761100019,46.676581572000146],[84.99760461699998,46.69015086700011],[85.08579263200005,46.771560270000066],[85.30966957800007,46.852966487000174],[85.71670552600006,46.880104742000185],[85.79811861600007,46.961514145000194],[85.87274152700007,47.131113071000186],[85.85238657800011,47.2532258330001],[85.79133564500006,47.35498750200003],[85.65242756000009,47.4408257340001]]],[[[90.83295452100009,46.31451235600008],[90.86763766200016,46.361585459000025],[91.11715652700019,46.48994273900007],[91.21002952300017,46.646372690000135],[91.10615561400004,46.93584892500007],[91.02235451900009,47.24849156700009],[91.11788960800016,47.23852364000015],[91.30590055800019,47.06521773300017],[91.47364758600008,46.88011580600005],[91.64641554200006,46.72267885400004],[91.68926953100015,46.52350907700003],[91.8512875290001,46.397062535000146],[91.85466761500015,46.25412912500008],[91.96634658400018,46.26629797200019],[92.1723256520001,46.40083556500008],[92.32334860500009,46.393568621999975],[92.40898164800012,46.35699234400005],[92.53221859100006,46.46043290800009],[92.72018461400017,46.41117665400009],[92.98567955300007,46.23148893400008],[93.35195162300005,46.11150064900016],[93.44093357200006,46.15916182700016],[93.24157754900006,46.350458315000026],[92.83879860200011,46.54433307700009],[92.57355461700018,46.656840681],[92.44080354300007,46.73138798700006],[92.08870661300006,46.87332545900017],[91.96115164800005,46.99284821300017],[91.80226865000014,47.181535414999985],[91.7853546400001,47.291808069000126],[91.83687551700012,47.50843416600014],[91.66533651499998,47.66430051700013],[91.56739766500004,47.706052788000136],[91.4392395380001,47.71189262800016],[91.33013163400011,47.52672230500008],[91.26760062500017,47.50776646300005],[90.95687056600008,47.57308965200008],[90.84216355000007,47.55345152300015],[90.78857452300014,47.447895032000076],[90.82719464400003,47.32656430100013],[90.78301966800018,47.300200030000155],[90.63762650400014,47.51057825600009],[90.40234363200017,47.64857237800004],[90.19307751700018,47.66941951300004],[89.9590455600001,47.64188512800007],[89.6974795540001,47.32525119200011],[89.61473055600004,47.09355275700017],[89.73523751300002,46.94079290600013],[89.90864551100009,46.92661676100005],[90.09457355800015,46.73324893700004],[90.25068650500009,46.6999548440001],[90.31126352500013,46.71969892000004],[90.40748559500008,46.63546649300008],[90.42350760300008,46.48460581400013],[90.5854186470001,46.35462345000013],[90.83295452100009,46.31451235600008]]],[[[91.01467854000009,48.07444464100007],[90.99916062000011,48.17791521300012],[90.88534560600016,48.2141287230001],[90.81809256800005,48.04857624400012],[90.9163896610001,47.820940517999986],[91.03020450700018,47.78990015100004],[91.14919266400011,47.81059439900008],[91.2216185100001,47.872675971000035],[91.24231762000016,48.002013934000104],[91.13367457600009,48.14169801500003],[91.01467854000009,48.07444464100007]]],[[[90.2256856350001,48.00755705400013],[90.27342962600011,48.05042344800006],[90.24374360700011,48.13589589400004],[90.0676425040001,48.250714892000076],[89.74096654400006,48.346113691000085],[89.67893962200014,48.348387869000135],[89.56613965700012,48.24910204600019],[89.59696963800008,48.18921049800008],[89.73297155000006,48.12251804100009],[90.1080245010001,48.023071119000065],[90.2256856350001,48.00755705400013]]],[[[88.52365151300006,48.52584130900004],[88.15633354900007,48.62413538400011],[87.9856106100001,48.61379043900013],[87.97165658500006,48.47080992300005],[88.08237465300004,48.490067010000075],[88.10162352600014,48.40823348400005],[88.31343053100005,48.34083879100007],[88.37120062000002,48.27344326100007],[88.35675860100014,48.19160939900007],[88.4771046250001,48.09533351800013],[88.5974506500001,48.1290291040001],[88.6648406490001,48.06644847300015],[88.73223165300004,47.9027780670001],[88.84776261000007,47.926848379000035],[89.14621754000018,47.820944541000074],[89.2473066450001,47.91240636000009],[89.47200753200013,48.033543133000194],[89.36175566500003,48.184384366000074],[89.21689559100008,48.2671642090001],[89.15481552800014,48.3344177510001],[89.06686354800019,48.55688167500006],[88.93235763900003,48.59826799300009],[88.87545055100014,48.49479708600012],[88.87027757600015,48.40684845800007],[88.78749857000008,48.37063511600013],[88.69954659000007,48.44306180000018],[88.52365151300006,48.52584130900004]]],[[[91.25184650200003,48.605737107000095],[91.10787960400006,48.65057157200005],[91.01036856600018,48.60747333400013],[90.81159257000013,48.598542081],[90.79304459100018,48.52261025300004],[90.91608456000012,48.49364105400019],[91.26322158300019,48.47824098300009],[91.25184650200003,48.605737107000095]]],[[[90.54285450400005,48.41853635200005],[90.61334966300006,48.5637868550001],[90.51190952400009,48.62272051900004],[90.22222156200007,48.652307799000084],[90.10460652900008,48.570428004000064],[90.23384055600008,48.47026794900012],[90.49789464600008,48.405486231000054],[90.54285450400005,48.41853635200005]]],[[[89.07004565300008,49.05117574899998],[89.07530261500006,49.118658452000034],[88.75999452800005,49.19239405400003],[88.6246485850001,49.190036225000085],[88.51090951100008,49.12517437600019],[88.53395052500008,49.06950579800008],[89.01884463000005,49.04027759900015],[89.07004565300008,49.05117574899998]]],[[[87.12245160800006,49.129054527000164],[87.0362775960001,49.19712429800006],[86.91137651000008,49.19815426600019],[86.76521254700009,49.16143381900014],[86.52593955400016,49.20958349400013],[86.40099354100005,49.27882404900009],[86.18472250100018,49.29678428800014],[85.90998852500007,49.22266345400004],[85.66546661600017,49.21451138200018],[85.44154357000008,49.26357300800004],[85.12975353500002,49.20756127600015],[84.88564250700011,49.21746466200011],[84.74122650700008,49.168810899000164],[84.4722515690001,49.19584220200005],[84.26181751899998,49.09758232400003],[84.34024849600013,49.03623048100013],[84.5363766480001,49.06017187900005],[84.76300855800014,49.01672948000015],[84.88923649999998,48.86264763600008],[84.88336162400009,48.792068156000084],[84.97630351900006,48.72301736700018],[85.40709663000007,48.727926480000065],[85.55075859500016,48.630796483000154],[85.86573760800007,48.62927751400014],[86.08406053800007,48.68796810300012],[86.20503252300017,48.695227167000155],[86.44106255800006,48.627908414000046],[86.75134250900004,48.66946186700011],[87.02638259200012,48.77881586400014],[87.13502463000015,48.8439975660001],[87.16979259700014,48.97871503500011],[87.12245160800006,49.129054527000164]]],[[[89.62517558100012,49.08937694400004],[89.69342053400015,49.17059289200006],[89.63228561400018,49.30690845400005],[89.49660456200013,49.382326472000045],[89.37354263300011,49.34872593600011],[89.32131952000003,49.26347007900017],[89.62517558100012,49.08937694400004]]],[[[91.67946656000004,49.31810852000007],[91.76047564300012,49.48812067400013],[91.72820263300002,49.70527835100006],[91.59623761400019,49.7917514290001],[91.48608364800015,49.93648611000009],[91.38357565500007,49.94737738700019],[91.25151860200009,49.79747325200003],[91.21960450600005,49.699785020000036],[91.23226151500006,49.583706725000184],[91.31933557500008,49.4505560020001],[91.33806661400007,49.36097910500007],[91.45838162600012,49.326947740000094],[91.67946656000004,49.31810852000007]]],[[[87.76466364200007,50.544320606000156],[87.36151857400012,50.59199016600013],[87.25910965400016,50.54289048600009],[87.17913858700018,50.45550629600007],[87.10575854500007,50.30498709600005],[87.18125954300012,50.12377554600005],[87.02208753700012,50.06947992400006],[86.81393453900012,49.989579767000066],[86.7658006210001,49.88848965600005],[86.7880096470002,49.799632430000145],[86.57738465800003,49.78140531100007],[85.96972651700008,49.75536173200004],[85.61381565300019,49.816130530000066],[85.36206854300008,49.981069788000184],[85.28394350600007,50.07655609400001],[85.20581863600017,50.24149434700013],[84.86726350800006,50.415115748000176],[84.60684163200006,50.475880523000114],[84.2769696530001,50.51060607700009],[84.21482052300007,50.43354386500016],[84.0118106600001,50.34355877000007],[83.91220850500014,50.339266565000116],[83.71465257900013,50.38836239000011],[83.51653255100018,50.333857388000126],[83.53687258000014,50.209145733000014],[83.69458764400002,50.138312951000046],[83.70253754400005,50.035192408000114],[83.8137125930001,49.98909579600007],[83.97113764300019,50.0355134350001],[84.13353752000006,50.16863331200011],[84.32396664900006,50.115115531000015],[84.63844258100016,50.104804449000085],[84.73454260900019,50.00521302200008],[84.75118253100015,49.87484023000013],[84.85768165200005,49.7588298280001],[84.99820761100017,49.66848867000016],[85.12539662200004,49.5732955630001],[85.31217157700019,49.537868108000055],[85.5809936280001,49.418115690000036],[85.86596660200019,49.4368769030001],[86.02118654100019,49.40413467500014],[86.28608653300017,49.40388372100011],[86.51545764899998,49.419904891000044],[86.74701660900018,49.303113463000045],[86.93598963400012,49.30838467500007],[87.02890755700003,49.25390280700009],[87.17247765600013,49.24543373200004],[87.27776358000011,49.20273246100004],[87.30603758300015,49.09860810100008],[87.3049465950001,48.91609216000006],[87.41565661600009,48.843883405000156],[87.69486250500006,48.77649173000003],[87.9548035950001,48.728354460000105],[88.03302753900005,48.747607691000155],[88.16667950000016,48.71726117800006],[88.29084063200008,48.727606291000086],[88.42018161200019,48.7948641910001],[88.43569953200017,48.88798897900011],[88.39430952700008,48.97076479900011],[88.42018161200019,49.15183972400007],[88.47191656300015,49.301873277000084],[88.52882365000016,49.35878120300009],[88.69954659000007,49.374300129000176],[88.84857951000004,49.420560691000105],[89.36006151500004,49.40678670900019],[89.62136064100014,49.48671653800011],[89.65328965800006,49.684206079000035],[89.73609950800005,49.74676759900012],[89.58647951900014,49.95452245700017],[89.38411757700004,50.169094317000145],[89.226020634,50.25779429900018],[88.80406154600001,50.3051850760001],[88.63519251600002,50.38458634200009],[88.53726154500015,50.45995021300013],[88.27675652000005,50.481198673000165],[87.81522361700019,50.554838554000185],[87.76466364200007,50.544320606000156]]]]},"properties":{"objectid":19,"eco_name":"Altai alpine meadow and tundra","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Palearctic","eco_biome_":"PA10","nnh":2,"eco_id":749,"shape_leng":57.4604516409,"shape_area":11.0406175599,"nnh_name":"Nature Could Reach Half Protected","color":"#B8823C","color_bio":"#D6C39D","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":90360.7524545528,"percentage":1.850401790708572}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[82.13135565900012,50.277703666000036],[81.73696163400012,50.242604278000044],[81.20748150300005,50.31032821200006],[81.19231461700014,50.300214943000185],[81.28563654800007,50.20269870800013],[81.29842364400008,50.07327206400009],[81.18108353700012,49.82995966400017],[81.25380660600007,49.73795956000009],[81.1305775420002,49.7101991990001],[81.11002360600003,49.64204929700003],[81.28031152500012,49.4046466420001],[81.28797962500005,49.305245484000125],[81.17401155800019,49.12928268200011],[80.984680626,49.07369088300004],[80.92994663100006,48.96839992900004],[80.7584386420001,48.90939736600018],[80.74707060200006,48.850959742999976],[80.85025753000014,48.782619069000134],[80.83274052600007,48.713358397000036],[80.6382066110001,48.56636479300005],[80.64958152500014,48.40304525300007],[80.70812962100013,48.34341287400014],[80.72660065400015,48.24676299200013],[80.66641255400003,48.140374177000126],[80.4798436260001,48.01100201600002],[80.49904656700011,47.87459106800014],[80.45951063800015,47.80431937100013],[80.27343758400008,47.69000747800004],[80.19248952200019,47.61333888100006],[79.98522165200006,47.52845735900013],[80.24925260800006,47.365771491000146],[80.34403952800017,47.173566237000045],[80.36083954400004,47.05336454800005],[80.50670662000005,47.006764184000076],[80.72131351700011,47.076104652000026],[80.80998265300013,47.07207983000012],[80.97923255700016,46.98037426500014],[81.14959758900017,46.96145295700012],[81.25891856100003,46.922512814000015],[81.3780285900001,46.94924605600005],[81.53756755600011,46.86887349500006],[81.86685162900005,46.81339233700015],[82.04773762500014,46.84859465400018],[82.28748352600013,46.779098283],[82.34509251400004,46.73101381900017],[82.44999655900011,46.73838385900018],[82.5424425810001,46.80967328600019],[83.16737364500005,46.80388625300003],[83.5924836580001,46.82487839400005],[84.02474963700018,46.89898363800012],[84.19754055900012,46.99977635900018],[84.43803362200009,46.99925332800018],[84.51693750600003,46.97535015200003],[84.71853652700014,46.977036256000076],[84.91177359400007,47.096055928000055],[84.91467255900005,47.13948608900017],[84.73203256500017,47.233946618000175],[84.74819153300012,47.34070138599998],[84.85485862700011,47.391196653000065],[85.18900252700013,47.48578609499998],[85.42407953900005,47.49322939299998],[85.54591352000011,47.44147885200016],[85.65242756000009,47.4408257340001],[85.61854556100019,47.58774272800008],[85.24999964800014,47.65738025000013],[85.09378863300003,47.57858667200014],[84.85558366100008,47.55046169900004],[84.68184659000008,47.59774887600008],[84.05729656700015,47.681119644000034],[83.98705253000008,47.71869471000008],[83.77549765200018,47.698979635000114],[83.53314263300012,47.73999983100009],[83.3272936520001,47.71214090000012],[83.12433659500005,47.714158758999986],[83.03205150600013,47.687543702000085],[82.84532164600006,47.696904611000036],[82.73145265300019,47.74508781400016],[82.39923055600019,47.821169679000036],[82.22165658400007,47.92521239900003],[82.1252286560001,48.04111132100002],[82.12806660000007,48.12425276000016],[82.41013356800005,48.276953099000025],[82.56784058500011,48.45262488100013],[82.65978252000014,48.495735189000186],[82.8785936110001,48.41655336100001],[83.01142850400015,48.43510452400011],[83.12895955000005,48.505734129000075],[83.20350652100012,48.64804258400005],[83.35056265400016,48.77131976000004],[83.39186062599998,48.864158893000194],[83.49481151900011,48.92693046300019],[83.5756305000001,48.914017136000155],[83.71042659100004,48.98890407600004],[84.07796449600005,49.09227624400012],[84.26181751899998,49.09758232400003],[84.4722515690001,49.19584220200005],[84.74122650700008,49.168810899000164],[84.88564250700011,49.21746466200011],[85.12975353500002,49.20756127600015],[85.44154357000008,49.26357300800004],[85.66546661600017,49.21451138200018],[85.90998852500007,49.22266345400004],[86.18472250100018,49.29678428800014],[86.40099354100005,49.27882404900009],[86.52593955400016,49.20958349400013],[86.76521254700009,49.16143381900014],[86.91137651000008,49.19815426600019],[87.0362775960001,49.19712429800006],[87.12245160800006,49.129054527000164],[87.30603758300015,49.09860810100008],[87.27776358000011,49.20273246100004],[87.17247765600013,49.24543373200004],[87.02890755700003,49.25390280700009],[86.93598963400012,49.30838467500007],[86.74701660900018,49.303113463000045],[86.51545764899998,49.419904891000044],[86.28608653300017,49.40388372100011],[86.02118654100019,49.40413467500014],[85.86596660200019,49.4368769030001],[85.5809936280001,49.418115690000036],[85.31217157700019,49.537868108000055],[85.12539662200004,49.5732955630001],[84.99820761100017,49.66848867000016],[84.81764951500003,49.581478815000025],[84.68340260600007,49.67211686000013],[84.571197589,49.69924019600006],[84.42736865600017,49.84202876700016],[84.30323753200008,49.876072368999985],[83.81591049600013,49.87504927400016],[83.63211866000017,49.90844076500014],[83.4111326330002,50.01103425399998],[83.07697264000006,50.03528058500018],[82.98676257400012,49.99017471400015],[82.56810763300001,49.94092332200006],[82.31568158900006,49.94092332200006],[82.20486461500008,49.99633206100009],[82.13135565900012,50.277703666000036]],[[81.42543764100009,47.477028012],[81.51605255200002,47.45477690900009],[81.97445665800012,47.41794867100003],[82.37551865500012,47.32741003500007],[82.80776250600013,47.29116685300016],[83.0111386580001,47.33096630900019],[83.24765752500008,47.338217326000176],[83.34301760000011,47.259897828000135],[83.45252951200013,47.235944696000104],[83.7148205520001,47.260465786000054],[83.80799865000012,47.248636741000155],[83.81316357800006,47.1111468740001],[83.99751264200012,46.991627138000126],[83.944816623,46.94673584300011],[83.62756359900015,46.996827103000044],[83.08488465300019,47.188852314000144],[82.83883656800009,47.18134531400017],[82.70680264900011,47.23132559600003],[82.44435855500006,47.2239745],[82.37394755100019,47.19883549600013],[82.157096652,47.18633422200014],[81.90682257800012,47.31036610500013],[81.66578653500017,47.3209670330001],[81.55853254000016,47.37555635700011],[81.34683952900008,47.383776657000055],[81.27381856700003,47.46942914700003],[81.42543764100009,47.477028012]]]},"properties":{"objectid":21,"eco_name":"Altai steppe and semi-desert","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Palearctic","eco_biome_":"PA08","nnh":3,"eco_id":724,"shape_leng":33.2274014084,"shape_area":10.1192707405,"nnh_name":"Nature Could Recover","color":"#D9FC7E","color_bio":"#FEFF73","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":83125.5392511116,"percentage":0.7845512349207584}}, + {"type":"Feature","geometry":null,"properties":{"objectid":24,"eco_name":"Amsterdam-Saint Paul Islands temperate grasslands","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Afrotropic","eco_biome_":"AF08","nnh":4,"eco_id":67,"shape_leng":0.428208454469,"shape_area":0.00709841264987,"nnh_name":"Nature Imperiled","color":"#B3FB35","color_bio":"#FEFF73","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":69.34921190001941,"percentage":0.0006545282030902917}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[135.8054805490002,48.370143098000085],[135.97709666400021,48.927895388000195],[135.6338656070002,49.07805902800004],[134.947402656,48.927895388000195],[134.7135616390001,48.74907150700017],[134.53820769800006,48.690619132000165],[134.30503857500014,48.675073886],[134.14959768900007,48.581807108000135],[133.5900116060002,48.50408607900016],[133.434554627,48.50408607900016],[132.6107176480001,48.34863999600009],[132.33360254100012,48.317175673000065],[132.19670058100007,48.345453867000174],[132.0274045770003,48.33431465300009],[131.72038267100004,48.23364095500017],[131.63142368900003,48.13102081200009],[131.24281267300023,47.86676689700016],[131.10403467600008,47.73788993900013],[130.92367556500005,47.6458561390001],[130.8673855530002,47.552044537000086],[130.7735746220003,47.51034926300002],[130.62763965300007,47.58331389800014],[130.5129856110001,47.53119639700009],[130.38789358500003,47.33314426200019],[130.15858466300017,47.10382176200011],[130.02307158400004,46.89534773600019],[129.87713661500004,46.7285688180001],[129.6373905470001,46.593058421000194],[129.50503560200002,46.46705075600016],[129.68331868300004,46.44228172900006],[129.82466154200006,46.45234185700002],[130.04425064200007,46.4977669110001],[130.12434358300015,46.48488090799998],[130.14816260500027,46.57221128700013],[130.2419737030001,46.67644779700015],[130.58595259300023,46.69729593700009],[130.69018558200003,46.6556004950001],[130.8673855530002,46.540942094000116],[131.00289963800003,46.47839968500011],[131.21136461100002,46.44712680500004],[131.49281265900015,46.44712680500004],[131.5553585880001,46.41585761200014],[131.53449955100018,46.2178049740001],[131.77424662500005,46.35331520300019],[132.09738156600008,46.4054315300001],[132.26416065200021,46.4054315300001],[132.54560870000034,46.3637372610001],[132.74238561200002,46.40746447700019],[133.30653362900023,46.48882174400012],[133.50457754900015,46.582636195000134],[133.67135663600027,46.738989870000125],[133.89025858700018,47.218481671],[133.98406968500012,47.34356632099997],[134.14042654600007,47.41653363800009],[134.2655026460002,47.41653363800009],[134.70330755400016,47.34356632099997],[134.9221955910001,47.34356632099997],[135.08531161800022,47.36803326400013],[135.09756462000007,47.40481171400012],[135.35499566500005,47.554973677000135],[135.59095763900018,47.941104320000136],[135.8054805490002,48.370143098000085]]],[[[127.23989868600017,51.63841596100008],[127.18840060800017,51.712659170999984],[127.21730057200034,51.87708294300006],[127.16179661500007,51.924733895000145],[126.77980059800007,51.90649168800002],[126.68080160400018,51.75504897000019],[126.73027059100002,51.64207482900014],[126.68193064600007,51.56513063500006],[126.80246761100011,51.53485704400009],[126.9716496210001,51.288744083000154],[126.89887961400007,51.17346223600015],[126.94109356100012,51.045400166000036],[127.072715592,50.94176128600009],[127.18129761600005,50.56173484900012],[127.22347267000032,50.18211023900005],[127.22347267000032,49.92967715500009],[127.3754576980001,49.77230709000003],[127.594352608,49.62637413200008],[127.94876059700016,49.532562196000185],[128.28231759600033,49.522135946000105],[128.45951857300008,49.574257638],[128.79307557200002,49.55340933000008],[128.7409666210002,49.49086658600015],[128.82435566100014,49.31366041200005],[128.94943260000002,49.209423399000116],[129.00061065700015,49.127928502000145],[129.44976767900005,48.92797937500012],[129.8875576680001,48.87586187400012],[130.10646062500007,48.823741356000085],[130.3566285830001,48.83416743800018],[130.4191746800002,48.87586187400012],[130.63807663100022,48.84458949600008],[130.78399668100008,48.92798339800004],[130.8882445900001,49.15730573100018],[130.8882445900001,49.298379532000126],[130.7346956670002,49.565578512000116],[130.41870160600013,49.64387655200011],[130.28379856200013,49.74048871499997],[130.28810166300002,49.99769395200002],[130.14050255100005,50.163334273000146],[129.95629866100012,50.22462995800004],[129.68179367900018,50.2648674510001],[129.3529055680001,50.358076897000046],[129.2834926810001,50.45604709600019],[129.26860055300006,50.58281215000011],[129.30799868300005,50.75483445200007],[129.30949368000017,50.880175420000114],[129.18040465900015,50.93104519100007],[128.89880355800017,50.990655275],[128.7247007000002,51.05343807600019],[128.72340368400035,51.130938494000134],[128.78990168000018,51.213009732000046],[129.06329354600007,51.413951947000044],[129.1806946730003,51.57078473100012],[129.20979261800028,51.72458444000006],[129.06649761200015,51.794939621000026],[128.66029365300017,51.749768707000044],[128.45320163500003,51.66304819500016],[128.26119955900015,51.55977459800016],[128.077499589,51.490975267000124],[127.93469961900007,51.51044659500019],[127.79949968800008,51.65358804400017],[127.63909956600003,51.71011911900018],[127.34429964900016,51.633575915],[127.23989868600017,51.63841596100008]]]]},"properties":{"objectid":25,"eco_name":"Amur meadow steppe","biome_num":9,"biome_name":"Flooded Grasslands & Savannas","realm":"Palearctic","eco_biome_":"PA09","nnh":3,"eco_id":741,"shape_leng":30.3453174053,"shape_area":15.1187686367,"nnh_name":"Nature Could Recover","color":"#68BED9","color_bio":"#BEE7FF","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":123508.50404537468,"percentage":10.680773530082172}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[28.873704572,37.7382712270001],[28.816921537000155,37.706114055],[28.867111535000106,37.62663634600017],[28.859321562000105,37.55458584200011],[28.78088957900013,37.51701966000019],[28.806758479000166,37.45803754900004],[28.912757536000072,37.43684005100016],[29.008407456000157,37.46343147100015],[29.067790558000127,37.52405040100007],[29.14025160800003,37.50133779000009],[29.186258534000103,37.572381293000035],[29.277025493000053,37.45360888700009],[29.326738561000184,37.317907215000105],[29.464229601000056,37.20925260400003],[29.488637535000066,37.11717823600003],[29.61598345500005,37.12015029100013],[29.67263455900013,37.074588277000146],[29.804000607000035,37.09055580300003],[29.782627592000097,37.186887004000084],[29.684192533000044,37.27648502300008],[29.63978051600003,37.37228917100015],[29.55204747100015,37.41515338500005],[29.470499600000096,37.57407829300013],[29.352590529000054,37.65494102800017],[29.26910358800012,37.657725663000065],[29.134469604000174,37.60511094800012],[29.07382754000014,37.65391089200017],[28.873704572,37.7382712270001]]],[[[27.368631597000046,38.58434941900009],[27.205415490000178,38.580610420000085],[27.21466056100013,38.509864642000025],[27.324075579000123,38.463684379000085],[27.20691149200013,38.41478133800007],[27.190292525000075,38.25663393600007],[27.256698488000154,38.23558446200019],[27.403978585000118,38.26807389300012],[27.47681648600019,38.185533269000075],[27.65106753600014,38.218300643000134],[27.74092857900007,38.20089813499999],[27.970710576000045,38.229759375000015],[28.19907351600017,38.17578628900003],[28.077157561000092,38.10851145700008],[27.950082544,38.13273130200008],[27.93634058200007,38.067184316000066],[27.785619545000145,38.03570574300011],[27.75397149100013,37.91254306400009],[27.898229577000052,37.86417311200006],[28.0963435700001,37.88188876800001],[28.357551501000046,37.98420867100015],[28.564693474000137,38.04421957800014],[28.742462576000037,38.015732171000025],[28.920154565000075,38.046176752000065],[28.760374536000086,38.19690801399997],[28.725030565000054,38.263442891000125],[28.625602585000024,38.29169443100011],[28.488237609,38.37224016200008],[28.248268582000037,38.44139186900014],[27.96073946399997,38.481148242000074],[27.668045584000026,38.462914585000135],[27.62311355300011,38.5247954940001],[27.368631597000046,38.58434941900009]]],[[[31.202453595000065,39.813308255000095],[31.216987480000114,39.90883077],[30.941394527000114,39.89141703100012],[30.815555506000123,39.93106963600013],[30.729320474000133,39.91419367900011],[30.49483254200004,40.04245708200011],[30.65860554200009,40.032005352000056],[30.576948538000124,40.13591982900016],[30.479768585000045,40.14444975700013],[30.430133469000168,40.192842172000155],[30.282627563000062,40.217770958000074],[30.259109452000075,40.14914194600016],[30.18208847900013,40.13987189599999],[30.071966532000147,40.204214067000066],[29.866552572000103,40.14559070100006],[29.74383547400015,40.06217601300017],[29.590669604000027,40.152120707000165],[29.53417960000013,40.21000495700014],[29.299394445000075,40.226479923000056],[29.24816157100014,40.27150432200011],[29.044103467000014,40.28413802900013],[29.05983948500017,40.36851110500015],[28.923561474000167,40.36524903500003],[28.808666536000032,40.40082065900003],[28.589443558000028,40.37901698200011],[28.524204523000037,40.39960478000006],[28.150491502000193,40.40087866200008],[27.960212577,40.35897031900015],[27.905090500000085,40.390303885000094],[28.03910254699997,40.48293883500014],[27.8649294490001,40.52488925500012],[27.687538538000126,40.50435459800008],[27.792280475999974,40.39846383600013],[27.781846515999973,40.31893985900018],[27.63071845400009,40.334045557000024],[27.55145649500014,40.30905994200009],[27.433155487000136,40.33104751800005],[27.317878502000156,40.38674878500012],[27.293657484000164,40.46960708300014],[27.12229752000013,40.45774300200003],[27.04131844500006,40.396014643000115],[27.182781501000136,40.395339900000124],[27.348260555000138,40.307476935000125],[27.276142492000133,40.22574801500008],[27.116914495000174,40.24905540500015],[27.122228454000094,40.09950934500006],[27.182653594000158,40.02722951100003],[26.95466448600007,40.0107386200001],[26.90366949000014,39.957066108000106],[26.952630533000104,39.86183763000008],[26.74077256600009,39.84349266100003],[26.637987466000084,39.87042053100009],[26.547611607000192,39.817107100999976],[26.43181259700009,39.83579472200017],[26.369932526000184,39.75869378500016],[26.265922496000087,39.71842628400003],[26.228923601000076,39.648362458000065],[26.396104516000094,39.54659576000017],[26.63490158500008,39.62422358300006],[26.77139652000011,39.615754843000104],[26.880630488000065,39.63684253800011],[27.05707558500012,39.57895946200006],[27.086730591000105,39.53986274500005],[27.0434135860001,39.43110738300004],[26.946540578000054,39.38476702600019],[26.933675530000187,39.21249762500014],[27.00666044899998,39.25789585700011],[27.25234744200003,39.27887659900006],[27.27774460900008,39.21274958500004],[27.413818604000085,39.23397843200013],[27.501171447000104,39.216926455000134],[27.658754579000174,39.32710087300006],[27.83220046400004,39.15890256299997],[27.775068573000055,39.066980745000194],[27.88481149100005,38.91988421200017],[27.86480556400005,38.81538987500005],[27.974533562000033,38.67128802700006],[28.105808582000066,38.625672872000166],[28.1515105740001,38.712070345000086],[28.278488528000082,38.778731286000095],[28.43988056500018,38.744605876000094],[28.424398520000068,38.624619937000034],[28.476261546000046,38.586058489000095],[28.59909649300016,38.63908844300005],[28.55666159900005,38.69954744600017],[28.612091460000045,38.82460259200013],[28.788202455000146,38.879613861000166],[28.90318858700016,38.9619405790001],[29.070310494000125,38.93844962400004],[29.04373952500015,38.82886747200007],[29.120223554000063,38.79957791700002],[29.258058587000107,38.90035722700014],[29.336812602000123,38.796461861000125],[29.308706572000062,38.718757427000185],[29.240314601000136,38.68666865200004],[29.162546465000048,38.594713139000135],[28.9835475700001,38.47378239300019],[28.91930749000005,38.459179609000046],[29.094413494000094,38.30738401300016],[29.18104750500015,38.19355508500013],[29.180162543000108,38.13142221600009],[29.041711608000128,38.015389184000185],[29.108337512,37.86275807900017],[29.018329450000067,37.85087522300017],[29.109031534000053,37.774670480000054],[29.222743450000166,37.768818905000046],[29.381406507000122,37.81418998000015],[29.477930492000098,37.80838785900016],[29.60924155500004,37.72743845500014],[29.766574572000025,37.78278047400016],[29.94011148300018,37.80620219300016],[30.037422529000025,37.90141541700018],[30.098560467000084,38.049163727],[30.167095601000028,37.92007286300003],[30.163284517000193,37.856830230000014],[30.04029048100017,37.72521456900017],[29.86422961100004,37.63573439900006],[29.81747250500007,37.5863242530001],[29.78572453800018,37.35936846700008],[29.97818560800016,37.39564182300006],[30.078777499000125,37.38435810500005],[30.05032546400014,37.287527845],[30.07657657900012,37.21031643500004],[30.030260528000156,37.10791271200003],[30.09800759600006,36.97606437000019],[30.238143462000153,36.98902295900007],[30.328893489999984,36.95334086200012],[30.413646601000096,36.84021400300003],[30.574298516000113,36.95792157200009],[30.617448553000145,37.06040559400003],[30.596054584000058,37.14014599200004],[30.689559575000033,37.19580585200015],[30.74195854000004,37.27442525400011],[30.69838152800014,37.34621977500018],[30.79037660400013,37.37165918700009],[30.89537452600007,37.450320666000096],[31.0343976100001,37.457454671000164],[31.06593150300006,37.56265761499998],[30.969902553000054,37.587918156000114],[30.945779603000176,37.67110368400006],[30.75032652900012,37.62483641600011],[30.67182145600009,37.673541644000125],[30.563610583000127,37.583260333000055],[30.512695551000036,37.648307925000154],[30.604549475000113,37.823921704000156],[30.697011590000102,37.82813277300016],[30.72128658700018,37.91617108700018],[30.697334461000082,37.991761772000075],[30.581047457000125,38.126784342000064],[30.69207548700018,38.28643746900019],[30.933425516,38.281688450000104],[30.942399517000126,38.386697772000105],[31.03346654800015,38.44216266900014],[30.964767464000147,38.657296284000154],[31.04287959300018,38.73823495900007],[31.193605491000028,38.756106685000134],[31.327751481000064,38.73027399500006],[31.376476490000073,38.8545171020001],[31.43265150200017,38.92021194400007],[31.360076458000094,38.99148511100003],[31.240970452000113,39.007899560000055],[31.081083470000067,39.27337186800014],[31.01489459800007,39.236045408999985],[30.995746475000146,39.0836964400001],[31.0188595730001,38.947399653000105],[30.877574548000098,38.90095251000014],[30.770879459000128,38.98968099000007],[30.70140052199997,38.95252267200004],[30.615249477000077,38.96887643600013],[30.63090150800008,39.04892612600014],[30.517745480000144,39.047186043000124],[30.536224559000118,39.14209869100017],[30.307332552000048,39.32982901500003],[30.258817594000107,39.47358284500018],[30.28710350000017,39.56895750400014],[30.372159533000058,39.622766640000066],[30.463371571000096,39.58774822200019],[30.598682478000057,39.617211786000155],[30.672079451000172,39.503719475000025],[30.509950477000075,39.36673922800003],[30.55880557400019,39.29721352100006],[30.638917457000105,39.28767240000013],[30.653024536000032,39.39826675100011],[30.770042610000075,39.43578448500017],[30.875621565000074,39.37746907000013],[30.947475598000096,39.48096864300004],[31.03638847999997,39.49428145200011],[31.364688517000047,39.43516925400013],[31.485448607000137,39.37740134500012],[31.493312509000134,39.30361411000001],[31.761007529999972,39.24195012400014],[31.860864496000033,39.23502717500014],[31.984809542000164,39.267275710000035],[32.016639484000166,39.32370201100008],[31.878978459000166,39.42668643200011],[31.841863559000046,39.54373082500018],[31.672315595000157,39.55664750600016],[31.70349845400017,39.62843867400005],[31.467300446000024,39.71639652200014],[31.215332557000067,39.63898662900016],[31.100975570000116,39.768493739000064],[31.202453595000065,39.813308255000095]]],[[[29.553068554000163,40.70029834800005],[29.384963451000033,40.70978129800005],[29.3448674440001,40.68042753800012],[28.99614355900019,40.65225680000003],[28.801015535000033,40.55926679200013],[28.85247958200017,40.51449033000006],[29.033370608000098,40.59837842900015],[29.305910537000102,40.626973292000116],[29.400453543000083,40.61034829000016],[29.87870951600007,40.700248392],[29.87080152600015,40.73459609000014],[29.553068554000163,40.70029834800005]]]]},"properties":{"objectid":26,"eco_name":"Anatolian conifer and deciduous mixed forests","biome_num":12,"biome_name":"Mediterranean Forests, Woodlands & Scrub","realm":"Palearctic","eco_biome_":"PA12","nnh":4,"eco_id":786,"shape_leng":45.0703985242,"shape_area":8.99012681504,"nnh_name":"Nature Imperiled","color":"#A80000","color_bio":"#FE0000","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":86513.69096827335,"percentage":2.6189335990645124}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[14.406481270000029,-13.948992716999896],[14.42550000000017,-13.91081],[14.58125,-13.80158],[14.64047,-13.6818],[14.76562,-13.54231],[14.84966,-13.40049],[14.89522558100009,-13.175739590999967],[14.895240000000115,-13.07132],[14.848240000000146,-13.01053],[14.791007618000094,-13.140936449999913],[14.79666,-13.276609999999891],[14.721300000000156,-13.37819],[14.6645,-13.38078],[14.61858,-13.454069999999888],[14.5161,-13.542279999999835],[14.46024,-13.51248],[14.268507469999975,-13.684325694999927],[14.085960000000114,-13.75059],[14.088640000000169,-13.806039999999825],[14.24214,-13.90186],[14.27493,-13.96291],[14.258650000000102,-14.09732],[14.31235,-14.09787],[14.406481270000029,-13.948992716999896]]],[[[16.105910000000165,-12.80392],[16.18968000000018,-12.72839],[16.11139,-12.52328],[16.011800000000108,-12.597559999999874],[15.988470000000177,-12.6951],[16.020570000000134,-12.80087],[16.105910000000165,-12.80392]]],[[[15.004734982000173,-13.323676897999917],[15.04099,-13.33376],[15.148600000000101,-13.2655],[15.299910000000125,-13.33053],[15.3628700000001,-13.32012],[15.495360000000119,-13.15275],[15.67195,-13.1387],[15.77086,-13.10914],[15.79034,-13.05637],[15.69834,-12.956329999999866],[15.659890000000132,-12.849129999999889],[15.6953,-12.72362],[15.59729,-12.55895],[15.64576,-12.45478],[15.549760000000106,-12.39181],[15.61991,-12.34582],[15.515620000000126,-12.26296],[15.417030000000125,-12.149169999999856],[15.28599,-12.2302],[15.2032,-12.19627],[15.210320000000138,-12.077449999999885],[15.144880000000114,-11.96304],[15.22948,-11.92912],[15.21647,-11.750549999999862],[15.12417,-11.71525],[14.98551,-11.81029],[14.994330000000105,-11.697609999999884],[14.936,-11.623149999999896],[14.88298,-11.65649999999988],[14.78515,-11.58123],[14.713910000000112,-11.65191],[14.83745000000016,-11.74982],[14.822920000000181,-11.81329],[14.73721,-11.79175],[14.602753242000063,-11.821961430999863],[14.602123136000102,-11.82789883099997],[14.77855,-11.965169999999887],[14.822130000000186,-12.09231],[14.77998,-12.196359999999856],[14.71685,-12.27768],[14.94775,-12.295],[14.933650000000114,-12.380039999999894],[15.048860000000161,-12.456529999999816],[14.89149,-12.484109999999873],[14.68013,-12.41709],[14.57935,-12.511429999999848],[14.60113,-12.574239999999861],[14.51508,-12.69451],[14.56596,-12.712059999999894],[14.69756000000018,-12.65877],[14.76154,-12.69921],[14.73579000000018,-12.75518],[14.787440000000174,-12.81125999999989],[14.863930000000153,-12.766689999999869],[14.99527,-12.62091],[15.13715,-12.76782],[15.230840000000114,-12.79384],[15.36616,-12.928539999999828],[15.33652,-13.02619],[15.289740000000108,-13.05635],[15.18976,-13.03198],[15.14876,-12.87551],[15.03073,-12.89618],[14.99354000000011,-12.85216],[14.827580000000125,-12.924589999999853],[14.92407,-13.01221],[14.954810000000123,-13.128799999999899],[14.939447274000145,-13.194205975999864],[15.004734982000173,-13.323676897999917]]],[[[14.640090772000121,-11.393948964999936],[14.69544,-11.516599999999869],[14.75186,-11.41537],[14.866800000000126,-11.31922],[14.87321,-11.24357],[14.75221,-11.19493],[14.662765545000127,-11.217344343999912],[14.670030000000168,-11.35058999999984],[14.640090772000121,-11.393948964999936]]],[[[15.54770000000019,-11.0138],[15.57273,-10.92239],[15.4736,-10.861019999999883],[15.380020000000172,-10.68085],[15.30138,-10.61756],[15.26119,-10.66146],[15.32921,-10.746529999999893],[15.22038,-10.83330999999987],[15.219940000000122,-10.89036],[15.31721000000016,-10.93788],[15.180920000000128,-11.072969999999884],[15.310410000000104,-11.15228],[15.419210000000191,-11.144109999999898],[15.54770000000019,-11.0138]]]]},"properties":{"objectid":28,"eco_name":"Angolan montane forest-grassland","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Afrotropic","eco_biome_":"AF10","nnh":4,"eco_id":77,"shape_leng":15.9006650861,"shape_area":1.43531524782,"nnh_name":"Nature Imperiled","color":"#B57454","color_bio":"#D6C39D","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":17359.196064283875,"percentage":0.3554805223514232}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[14.268507469999975,-13.684325694999927],[14.15708825400003,-13.545022450999966],[14.08717005700015,-13.490914943999883],[13.96703628600011,-13.23282826299993],[13.87855120800009,-13.18504842599998],[13.678413051,-13.192948117999947],[13.599304387000075,-13.277195579999955],[13.599769672000093,-13.395851119999975],[13.55597358000017,-13.497558712999819],[13.45631512600005,-13.56924958199994],[13.427713597000093,-13.502338774999885],[13.328948940000146,-13.541444777999914],[13.321798558000069,-13.675225469999873],[13.403581056000121,-13.798948396999947],[13.39821826900004,-13.85839891899991],[13.130525830000181,-14.102549802999874],[13.067066187000137,-14.19138558799989],[12.983496092999985,-14.460712446999878],[12.932549619000156,-14.75261924799986],[12.918695753000122,-14.912461926999981],[13.039358455000183,-15.278354543999967],[13.096114615000033,-15.627256249999846],[13.074216569000043,-15.820404962999874],[13.106393290000085,-15.887899095999956],[13.13186652700017,-16.052025830999867],[13.257892016000085,-16.181255673999942],[13.266829994000148,-16.264072898999927],[13.184153698000046,-16.376871231999814],[13.167618439000137,-16.460034307999933],[13.235100172000045,-16.612549994999938],[13.221246306000069,-16.823558452999976],[13.16969231100012,-16.96379184499989],[12.984609022000143,-16.982998961999954],[12.808094205000032,-17.115066245999913],[12.612896082000134,-17.20937067899996],[12.473862374000134,-17.253677018999838],[12.548744027000055,-17.385818099999938],[12.54538222900004,-17.422797878999972],[12.683215949999976,-17.621143964999874],[12.622703585000124,-17.81612825299993],[12.434442893000039,-17.799319262999916],[12.50840245,-17.947238377999952],[12.484869864000188,-17.99430355099986],[12.51176424800019,-18.098519290999832],[12.594128301000126,-18.15554055799987],[12.636657072000048,-18.219361754999966],[12.787431690000062,-18.344771],[12.774824947000127,-18.470838426999876],[12.833656414000188,-18.500254159999884],[12.867274394000162,-18.57589461699996],[13.102600259000042,-18.78600699599997],[13.211858697000025,-18.84063621499996],[13.098398012000075,-18.886860937999927],[13.106802507000111,-18.97510813799994],[13.23286993400012,-18.996119375999967],[13.353702984000165,-18.865938168999946],[13.392555343000083,-18.983512632999975],[13.476600295000082,-19.02973735599994],[13.35473511500004,-19.096973317999982],[13.34633061900007,-19.19782725999994],[13.368462440000144,-19.33157392399994],[13.439824699000155,-19.36913300799995],[13.650155566000137,-19.38040073299993],[13.687714650000032,-19.45551889999996],[13.78536826700008,-19.45927480799992],[13.800391900000136,-19.515613432999885],[14.052037760000019,-19.49307798299992],[14.1083763850001,-19.6696056749999],[14.175982735000105,-19.72970020899993],[14.258612719000098,-19.733456116999946],[14.314951344000178,-19.80857428399986],[14.303683619000026,-19.88744835999995],[14.202274094000074,-19.943786984999917],[14.179738643000178,-20.056464234999908],[14.266124535000074,-20.041440601999966],[14.408849053000097,-20.150361943999883],[14.495234945,-20.37196053699995],[14.649227187000122,-20.390740077999965],[14.713077629000054,-20.420787344999894],[14.795707613000047,-20.510929144999977],[14.698053996,-20.578535495999915],[14.570353112000134,-20.616094578999935],[14.570353112000134,-20.751307279999878],[14.525282212000036,-20.815157721999924],[14.570353112000134,-20.909055429999967],[14.641715370000043,-20.961638146999974],[14.758148529000152,-20.94285860499997],[14.867069871000183,-20.863984529999982],[14.810731246000103,-20.781354545999932],[14.885849413000017,-20.751307279999878],[15.009794388000103,-20.751307279999878],[15.06237710500011,-20.84144907999996],[15.017306205000182,-20.886519979999946],[15.03232983900017,-21.160701289999963],[15.272707973000138,-21.34849670699998],[15.331263350000143,-21.656773544999965],[15.220125256000188,-21.806717525999943],[15.368803878999984,-21.854413386999965],[15.400408857000059,-22.020804301999874],[15.463917283000114,-22.077043690999915],[15.56191291600004,-22.020804301999874],[15.580692457000168,-21.926906592999842],[15.663322441000162,-21.964465675999918],[15.603227908,-22.22362335199989],[15.723830970000108,-22.323766966999983],[15.971306926000125,-22.32127696999993],[16.016911072000084,-22.539525384999877],[15.969898460000081,-22.586537996999937],[15.864263538000046,-22.59827520999994],[15.852526324,-22.69804152599994],[15.77036582900007,-22.674567098999944],[15.74689140200013,-22.791939234999973],[15.805577470000173,-22.791939234999973],[15.782103043000063,-22.950391617999912],[15.858394931000191,-23.061895146999973],[15.98750428,-23.16753006999994],[15.999241494000046,-23.331851059999963],[16.110745023000106,-23.45509180299996],[16.234280233000106,-23.45872693599989],[16.291546582000024,-23.34217347299989],[16.411516799000026,-23.19643505199997],[16.350091425000187,-23.099909462999904],[16.313892432000046,-22.98226273599994],[16.060499480000033,-22.90986474899995],[15.997151242000086,-22.70172053899995],[16.196245704000034,-22.54787481799997],[16.368190922000167,-22.37592960099994],[16.350091425000187,-22.249233124999932],[16.40438991500008,-22.213034131999905],[16.531086390000098,-22.25828287299987],[16.68493211100008,-22.113486900999874],[16.4586884040001,-22.00488992199996],[16.1781462080001,-21.950591431999953],[16.07859897700007,-21.860093948999918],[16.23244469700012,-21.73339747299991],[16.02430048700012,-21.35330804599988],[15.770907535000106,-21.199462324999843],[15.618356139000014,-20.98267876199992],[15.760047837000059,-20.904440530999977],[15.745568240000068,-20.730685363999896],[15.846925421000151,-20.607608787999823],[15.93380300400014,-20.45557301699995],[15.926563206000083,-20.35421583599998],[16.01344078900007,-20.303537245999905],[15.891383259000122,-20.187301681999884],[16.00180411800011,-20.189157445999967],[16.168270204000066,-20.105924410999933],[16.257905787000027,-20.112326952999865],[16.398761701000183,-19.97787358799991],[16.590837943999986,-19.965068505999852],[16.61644810900009,-19.843420222999896],[16.654863358000057,-19.805004975999964],[16.795719267000095,-19.805004975999964],[16.840537056000073,-19.683356692999894],[17.192676825000035,-19.632136362999972],[17.16706666000016,-19.766589728999975],[17.211884449000138,-19.830615140999896],[17.512054572000125,-19.730719353999973],[17.798981428000047,-19.780619675999958],[17.973632558000077,-19.718244284999855],[18.077591564000045,-19.739036073999955],[18.2231084390001,-19.739057529999968],[18.41553044800014,-19.680709865999916],[18.664077903000077,-19.47598268099989],[18.681481484000074,-19.343449608999947],[18.624752130000104,-19.130251915999906],[18.341990845999987,-18.93614437499997],[18.246335688000045,-18.910396812999977],[18.160273320000044,-18.845924470999933],[17.994500439000035,-18.823088906999942],[17.69696828200017,-18.710893231999876],[17.60421467000009,-18.7094520629999],[17.50772448800012,-18.649733935999905],[17.371863291000125,-18.655248680999875],[17.18403766700004,-18.696407087999944],[17.163581739,-18.626357738999957],[17.058735286000058,-18.659816916999944],[17.12274285900014,-18.67137791199991],[17.124170679000144,-18.672045020999974],[17.118211589000055,-18.734570026999847],[16.881825193999987,-18.860790583999915],[16.732954580000182,-18.844539727999916],[16.681055451000134,-18.948348685999974],[16.52957393600019,-18.93444609099987],[16.41187176300008,-18.98366236499993],[16.374831034000124,-19.038353018999942],[16.289955008000106,-19.06777236199997],[16.190286058000027,-19.044335390999947],[16.098250962000066,-19.117052095999952],[16.043593008000073,-19.24193799999989],[15.916411798000013,-19.185673622999957],[15.739788315000112,-19.07207404499991],[15.57943654200011,-19.110960144999922],[15.561749753000129,-19.159650830999965],[15.456735803000129,-19.104676411999947],[15.361195897000073,-19.2033022949999],[15.182212410000147,-19.22162541499995],[15.18838827900015,-19.074620035999885],[15.25225204000003,-19.068753801999833],[15.343143352000027,-19.181056947999878],[15.397284917000036,-19.154457373999946],[15.447016948000055,-19.005872644999954],[15.600709946000052,-18.861382078999895],[15.67890608800019,-18.917855154999813],[15.721469157000172,-18.830552358999967],[15.834799283000109,-18.81680664299995],[15.878801731000067,-18.742808505999903],[15.998576541000148,-18.655218826999885],[16.226275836000127,-18.56457187199993],[16.365744277000147,-18.484163312999897],[16.3764000540001,-18.435557584999913],[16.312970585000073,-18.315101357999936],[16.261502206000102,-18.2664982579999],[16.30218017100009,-18.150762929999814],[16.272782260000156,-18.083137336999982],[16.27375810400008,-17.92912351899986],[16.23700847300006,-17.826536650999913],[16.25089780600007,-17.76762120299992],[16.21447539000002,-17.686680330999877],[16.138318237000135,-17.616472875999932],[16.12077619700017,-17.480607434999968],[16.18979859800004,-17.46716311499995],[16.16747349100018,-17.362889320999955],[16.02006245500013,-17.25818371399987],[15.867444932000183,-17.173777507999887],[15.693512100000078,-17.036820098999897],[15.599636004000047,-17.02038427799988],[15.500249575000112,-16.923598057999925],[15.55174981600004,-16.786543273999882],[15.525999695000166,-16.738529050999887],[15.342134802999965,-16.61605971299997],[15.216546497000081,-16.503907947999892],[15.133423303000143,-16.523398457999974],[15.119870608000099,-16.650687967999943],[15.01777364000003,-16.70608015399995],[14.87772912700018,-16.91495400699995],[14.823970105000114,-16.95946662699987],[14.69476774800006,-16.815086520999955],[14.617517387000134,-16.80254531999998],[14.374924150000084,-16.674491263999982],[14.179947722000179,-16.511949499999957],[14.126447056000188,-16.452966668999863],[13.746871355000053,-16.133073800999966],[13.627022626000098,-16.089856304999955],[13.475809949000052,-16.15195125699995],[13.418681596000056,-16.154917360999946],[13.363263903000131,-16.030777846999968],[13.382930865000105,-15.984243972999877],[13.521734236000157,-15.899873745999969],[13.534215193000136,-15.77907549899993],[13.419995526000037,-15.606121590999976],[13.325929643,-15.496871755999962],[13.188275240000166,-15.251835059999962],[13.154229315000066,-15.05715972899992],[13.17352005600003,-14.894815779999817],[13.282040449000021,-14.695664115999932],[13.331294502000048,-14.497226933999968],[13.273933425000166,-14.387452701999962],[13.307166430000166,-14.231736577999982],[13.385013605000097,-14.146113073999913],[13.491541318000031,-14.075029887999904],[13.680923919000122,-14.059132481999939],[13.818408404000138,-14.151851741999906],[14.019237738000072,-14.392379447999929],[14.073396441000057,-14.430609000999937],[14.189907000000176,-14.410420096999871],[14.386819475000095,-14.106172238999932],[14.406481270000029,-13.948992716999896],[14.31235,-14.09787],[14.258650000000102,-14.09732],[14.27493,-13.96291],[14.24214,-13.90186],[14.088640000000169,-13.806039999999825],[14.085960000000114,-13.75059],[14.268507469999975,-13.684325694999927]],[[15.750505519000114,-18.534335301999874],[15.804044476000172,-18.634697056999926],[15.719519664000074,-18.658854452999947],[15.675013760000184,-18.58387560099993],[15.750505519000114,-18.534335301999874]],[[14.993562900000029,-19.24659855999994],[15.04036129300016,-19.129338412999914],[15.128264933000025,-19.13001352499998],[15.094119485000135,-19.223070971999903],[14.993562900000029,-19.24659855999994]]]},"properties":{"objectid":29,"eco_name":"Angolan mopane woodlands","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Afrotropic","eco_biome_":"AF07","nnh":2,"eco_id":34,"shape_leng":54.1420143311,"shape_area":16.4058554245,"nnh_name":"Nature Could Reach Half Protected","color":"#B09200","color_bio":"#FEAA01","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":192668.3837129964,"percentage":0.898681104883323}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[14.189907000000176,-14.410420096999871],[14.185626293999974,-14.48227295099997],[14.242702374000032,-14.525097242999891],[14.341158611000083,-14.540290967999908],[14.469579791000058,-14.446349425999927],[14.538071086,-14.363426855999819],[14.615123794000056,-14.190572948999886],[14.623685206000175,-14.04942631899985],[14.655077050000159,-13.962203970999951],[14.737837365000189,-13.926197808999973],[14.849135721000096,-13.91650288299985],[14.894796584,-13.874948597999946],[14.921907722000014,-13.769644467999967],[14.85627023100011,-13.594956920999948],[14.991825920000053,-13.386827621999885],[15.004734982000173,-13.323676897999917],[14.939447274000145,-13.194205975999864],[14.89522558100009,-13.175739590999967],[14.84966,-13.40049],[14.76562,-13.54231],[14.64047,-13.6818],[14.58125,-13.80158],[14.42550000000017,-13.91081],[14.406481270000029,-13.948992716999896],[14.386819475000095,-14.106172238999932],[14.189907000000176,-14.410420096999871]]],[[[15.291571405000013,-9.257856087999926],[15.40420059600018,-9.125147193999908],[15.45984977300003,-8.972959813999921],[15.425604125000177,-8.90107129099988],[15.425604125000177,-8.760072491999892],[15.475545695000164,-8.669805136999855],[15.698142406000045,-8.535774602999936],[15.688154092000104,-8.205436948999932],[15.598259266000127,-7.785767800999963],[15.50448868500007,-7.577749956999924],[15.335772231000078,-7.149710379999931],[15.265146739000159,-7.020245588999899],[15.15822759100007,-6.873215603999881],[15.000301143000058,-6.867372406999948],[14.874744712000052,-6.915089744999932],[14.757035559000087,-7.021219143999815],[14.584395466000046,-7.286922451999942],[14.493170872,-7.312219403999904],[14.39017536300014,-7.299571106999849],[14.330339876000096,-7.260651026999938],[14.239115282000057,-7.118564283999831],[14.157699784000044,-7.062106599999936],[14.042933359000187,-7.052371818999973],[13.970346047000135,-6.935538558999895],[13.956613313000048,-6.83425960299985],[13.891873278000105,-6.717372621999971],[13.691767717000118,-6.456224314999872],[13.582886750000114,-6.400664016999826],[13.570134925000104,-6.337298408999914],[13.462234867000063,-6.206643291999967],[13.157222236000166,-5.924797647999924],[13.151479596000172,-5.90551058199992],[13.09428953500003,-5.967834893999964],[12.92370053899998,-6.066814776999877],[12.79164952200017,-6.160282719999941],[12.76877044600019,-6.218812543999888],[12.609370452000121,-6.232944600999929],[12.499210451000181,-6.196039248999909],[12.431819447000066,-6.203575752999882],[12.290710441999977,-6.153815410999925],[12.374970530000041,-6.289092454999889],[12.574560576000124,-6.674068406999936],[12.741490536000072,-6.85090745399998],[12.821290446000035,-6.973883383999919],[12.84751054800006,-7.100029350999932],[12.855079574000115,-7.270256081999946],[12.915379488000099,-7.349523404999957],[12.973389467000061,-7.528216359999931],[13.072890536000045,-7.758535804999951],[13.180720536000024,-7.962156204999928],[13.268890446000057,-8.170367206999913],[13.346460434000107,-8.28231489999996],[13.39898043300019,-8.402419525999903],[13.358539594000149,-8.486921346999964],[13.408800503,-8.699423044999946],[13.366189590000033,-8.771323177999875],[13.304160489000026,-8.752313524999977],[13.222359484000151,-8.80713636799993],[13.104359554000041,-8.950558442999977],[13.059379579000108,-9.040133830999878],[12.99989053000013,-9.092293240999936],[13.08133044200008,-9.210375815999896],[13.169329529000152,-9.38060791099997],[13.194160582000052,-9.553173527999945],[13.241559574000178,-9.628851217999966],[13.20827956300002,-9.707405575999871],[13.318949519000114,-9.861683723999931],[13.344610548000162,-9.937917468999956],[13.313730443000168,-9.98451900699996],[13.439319516000182,-10.117548694999925],[13.456399488000102,-10.184393031999889],[13.53415052400004,-10.295086456999968],[13.528840589000026,-10.386439813999914],[13.642049591000102,-10.50037083299992],[13.77478054800008,-10.66843033899994],[13.723440553000046,-10.757094109999912],[13.831549502000087,-10.909882291999963],[13.865059512000016,-11.007676470999911],[13.77085044100005,-11.571566827999959],[13.793419554000025,-11.806591369999921],[13.759791925000059,-11.960567032999961],[14.002443139000036,-12.020189749999872],[14.07284130500011,-12.071456964999982],[14.093246023000177,-12.148409839999943],[14.045855816000142,-12.37664681299998],[13.92738029800006,-12.594773963999955],[13.88883068000007,-12.771111023999936],[13.881696170000055,-12.897714966999843],[13.900245896000115,-13.065957204999847],[13.96703628600011,-13.23282826299993],[14.08717005700015,-13.490914943999883],[14.15708825400003,-13.545022450999966],[14.268507469999975,-13.684325694999927],[14.46024,-13.51248],[14.5161,-13.542279999999835],[14.61858,-13.454069999999888],[14.6645,-13.38078],[14.721300000000156,-13.37819],[14.79666,-13.276609999999891],[14.791007618000094,-13.140936449999913],[14.727849051000135,-13.099313993999942],[14.607989284000041,-12.971421861999943],[14.533790380000028,-12.91996839899997],[14.43961484900018,-12.7126570019999],[14.426772731000028,-12.471740867999927],[14.451030065,-12.209681913999873],[14.562328420000142,-12.011571381999943],[14.602123136000102,-11.82789883099997],[14.602753242000063,-11.821961430999863],[14.640090772000121,-11.393948964999936],[14.670030000000168,-11.35058999999984],[14.662765545000127,-11.217344343999912],[14.692176501000176,-11.052488789999927],[14.809182465000106,-10.810114041999896],[14.819170779000046,-10.693760394999913],[14.764948503000028,-10.330396078999854],[14.806328661000066,-10.115546076999976],[14.903357996000182,-10.015795404999949],[14.983264508000047,-9.98769107299995],[15.084574549000138,-9.99050161599996],[15.408481301000052,-10.076211465999961],[15.548317697000016,-10.077616356999954],[15.612528286000042,-9.966611230999888],[15.593978559999982,-9.797923656999899],[15.532621775000052,-9.653065],[15.445580753000115,-9.578501737999943],[15.15734655099999,-9.537696031999872],[15.107404981000172,-9.429326201999913],[15.13023541299998,-9.361753729999975],[15.291571405000013,-9.257856087999926]]]]},"properties":{"objectid":30,"eco_name":"Angolan scarp savanna and woodlands","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Afrotropic","eco_biome_":"AF07","nnh":4,"eco_id":35,"shape_leng":26.5924631412,"shape_area":11.2098963369,"nnh_name":"Nature Imperiled","color":"#FC8939","color_bio":"#FEAA01","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":137036.48752354362,"percentage":0.6391920648508594}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[14.939447274000145,-13.194205975999864],[14.954810000000123,-13.128799999999899],[14.92407,-13.01221],[14.827580000000125,-12.924589999999853],[14.99354000000011,-12.85216],[15.03073,-12.89618],[15.14876,-12.87551],[15.18976,-13.03198],[15.289740000000108,-13.05635],[15.33652,-13.02619],[15.36616,-12.928539999999828],[15.230840000000114,-12.79384],[15.13715,-12.76782],[14.99527,-12.62091],[14.863930000000153,-12.766689999999869],[14.787440000000174,-12.81125999999989],[14.73579000000018,-12.75518],[14.76154,-12.69921],[14.69756000000018,-12.65877],[14.56596,-12.712059999999894],[14.51508,-12.69451],[14.60113,-12.574239999999861],[14.57935,-12.511429999999848],[14.68013,-12.41709],[14.89149,-12.484109999999873],[15.048860000000161,-12.456529999999816],[14.933650000000114,-12.380039999999894],[14.94775,-12.295],[14.71685,-12.27768],[14.77998,-12.196359999999856],[14.822130000000186,-12.09231],[14.77855,-11.965169999999887],[14.602123136000102,-11.82789883099997],[14.562328420000142,-12.011571381999943],[14.451030065,-12.209681913999873],[14.426772731000028,-12.471740867999927],[14.43961484900018,-12.7126570019999],[14.533790380000028,-12.91996839899997],[14.607989284000041,-12.971421861999943],[14.727849051000135,-13.099313993999942],[14.791007618000094,-13.140936449999913],[14.848240000000146,-13.01053],[14.895240000000115,-13.07132],[14.89522558100009,-13.175739590999967],[14.939447274000145,-13.194205975999864]]],[[[21.602697598000077,-10.166470259999926],[21.48083344300005,-10.179543429999967],[21.315843558000097,-10.116088902999934],[21.290460473000167,-10.027255145999902],[21.34122647500004,-9.824204378999923],[21.303152518000047,-9.690952737999964],[21.15719944400007,-9.64653502199991],[20.973171574000105,-9.659225893999974],[20.826681555000164,-9.61861305799988],[20.52782245100002,-9.42321966299994],[20.424371493000024,-9.285295613999835],[20.343910587000096,-9.112888749999968],[20.297931489000177,-8.883014216999925],[20.274944455000025,-8.676128729999846],[20.205976479000128,-8.457748468999966],[20.102525521000075,-8.239368039999931],[19.99907456300008,-8.170406098999933],[19.884130508000112,-8.009493673999941],[19.792173486000024,-7.814100613999926],[19.688722528000028,-7.641695259999949],[19.59676550600011,-7.36584716099992],[19.530899505000093,-7.240709201999891],[19.569313600000157,-7.065963787999976],[19.503740463000042,-7.035636887999942],[19.197450465000088,-7.035049148999974],[19.16031058800013,-6.93808310199995],[19.206460508000134,-6.674738120999848],[19.20561946800018,-6.488990955999896],[19.263759534000144,-6.304371323999931],[19.166019502000154,-6.06774768199989],[18.973388447000048,-6.050236880999933],[18.53558957400014,-6.339163765999899],[18.35171358400015,-6.365429800999891],[17.957693559000177,-6.374184362999927],[17.598697484000127,-6.251610092999954],[17.445508480000058,-6.175020619999941],[17.515029494000032,-6.31962404099994],[17.537649568000063,-6.517577603999882],[17.718349487000125,-6.69645462699998],[17.77069044900003,-6.83407374199993],[17.85246044100012,-7.195591428999933],[17.909730465000052,-7.323638243999937],[18.023036529000137,-7.457955559999903],[18.155349565000108,-7.506949962999897],[18.42440044300014,-7.479335950999939],[18.41348049900006,-7.569393297999966],[18.62418947499998,-7.834005454999954],[18.666650521000122,-8.067147421999948],[18.582130593999977,-8.166481355999906],[18.4603594780001,-8.261630709999963],[18.407320471000048,-8.350798233999967],[18.4786705840001,-8.501191537999944],[18.551540503000183,-8.54264038399998],[18.550739528000065,-8.59944822999995],[18.406639525000173,-8.65868615699992],[18.420429600000148,-8.705078817999947],[18.573030529000164,-8.811646334999978],[18.603530599000067,-8.868928260999951],[18.55455044500019,-8.928482018999887],[18.465469589000065,-8.92944694299996],[18.422359449000055,-9.000942565999935],[18.448020478000046,-9.060480397999925],[18.554220533000034,-9.124783005999973],[18.639690464000125,-9.210041880999881],[18.70786048300016,-9.325705606999975],[18.739889579000078,-9.443131209999876],[18.797159435000026,-9.563255951999963],[18.86968955200001,-9.624558341999943],[19.063089563000176,-9.732576933999951],[19.135259594000047,-9.816248108999957],[19.063119570000083,-9.89641346999997],[18.91444958600016,-9.861094643999934],[18.974189589000105,-9.972793897999964],[18.91572950300008,-10.022534457999939],[18.75587051600013,-9.928184905999899],[18.641199542000095,-9.953540330999942],[18.633789437000075,-10.134817426999916],[18.581050502000153,-10.20469165399993],[18.527450578000128,-10.16738514399998],[18.482809568000107,-10.010066208999945],[18.398000465,-10.134846428999936],[18.34333050800018,-10.171724790999917],[18.23246056000005,-10.101799936999896],[18.2350405090001,-10.005236723999928],[18.13080047900013,-9.976631802999975],[18.028619547000062,-9.88559109099998],[17.93852951100007,-9.877226789999952],[17.853269462000185,-9.781686336999883],[17.775539548000097,-9.919713651999928],[17.54578957000018,-10.00726665399992],[17.472450599000183,-9.920222600999864],[17.34337951599997,-9.86187885499993],[17.28544044900002,-9.791514621999966],[17.280370571000105,-9.723032628999931],[17.32098944100011,-9.6563373219999],[17.18601045700018,-9.501032055999872],[17.01395948900017,-9.330970280999964],[16.97632055300005,-9.267837785999973],[17.064519465000046,-9.057319581999877],[16.809949498000037,-9.029119674999947],[16.775850575000163,-9.061793338999848],[16.835269551000067,-9.204498090999948],[16.73884950100006,-9.222161945999972],[16.816600538000046,-9.342550550999931],[16.917039543000158,-9.560008969999899],[16.90142053700015,-9.647146900999928],[16.732040546000064,-9.722773627999914],[16.440175469000167,-9.729459033999944],[16.10177054500008,-9.48446254199996],[15.92802945000011,-9.444479354999942],[15.833930516000066,-9.380716875999894],[15.843009459000143,-9.331219390999934],[16.1015395390001,-9.231702227999904],[16.134830447000013,-9.078446336999889],[16.03042043200014,-9.06532010899997],[15.797380557000054,-9.147521432999952],[15.677570471000081,-9.209844906999933],[15.388290540000014,-9.277146224999967],[15.291571405000013,-9.257856087999926],[15.13023541299998,-9.361753729999975],[15.107404981000172,-9.429326201999913],[15.15734655099999,-9.537696031999872],[15.445580753000115,-9.578501737999943],[15.532621775000052,-9.653065],[15.593978559999982,-9.797923656999899],[15.612528286000042,-9.966611230999888],[15.548317697000016,-10.077616356999954],[15.408481301000052,-10.076211465999961],[15.084574549000138,-9.99050161599996],[14.983264508000047,-9.98769107299995],[14.903357996000182,-10.015795404999949],[14.806328661000066,-10.115546076999976],[14.764948503000028,-10.330396078999854],[14.819170779000046,-10.693760394999913],[14.809182465000106,-10.810114041999896],[14.692176501000176,-11.052488789999927],[14.662765545000127,-11.217344343999912],[14.75221,-11.19493],[14.87321,-11.24357],[14.866800000000126,-11.31922],[14.75186,-11.41537],[14.69544,-11.516599999999869],[14.640090772000121,-11.393948964999936],[14.602753242000063,-11.821961430999863],[14.73721,-11.79175],[14.822920000000181,-11.81329],[14.83745000000016,-11.74982],[14.713910000000112,-11.65191],[14.78515,-11.58123],[14.88298,-11.65649999999988],[14.936,-11.623149999999896],[14.994330000000105,-11.697609999999884],[14.98551,-11.81029],[15.12417,-11.71525],[15.21647,-11.750549999999862],[15.22948,-11.92912],[15.144880000000114,-11.96304],[15.210320000000138,-12.077449999999885],[15.2032,-12.19627],[15.28599,-12.2302],[15.417030000000125,-12.149169999999856],[15.515620000000126,-12.26296],[15.61991,-12.34582],[15.549760000000106,-12.39181],[15.64576,-12.45478],[15.59729,-12.55895],[15.6953,-12.72362],[15.659890000000132,-12.849129999999889],[15.69834,-12.956329999999866],[15.79034,-13.05637],[15.77086,-13.10914],[15.67195,-13.1387],[15.495360000000119,-13.15275],[15.3628700000001,-13.32012],[15.299910000000125,-13.33053],[15.148600000000101,-13.2655],[15.04099,-13.33376],[15.004734982000173,-13.323676897999917],[14.991825920000053,-13.386827621999885],[14.85627023100011,-13.594956920999948],[14.921907722000014,-13.769644467999967],[14.894796584,-13.874948597999946],[14.849135721000096,-13.91650288299985],[14.737837365000189,-13.926197808999973],[14.655077050000159,-13.962203970999951],[14.623685206000175,-14.04942631899985],[14.615123794000056,-14.190572948999886],[14.538071086,-14.363426855999819],[14.469579791000058,-14.446349425999927],[14.341158611000083,-14.540290967999908],[14.242702374000032,-14.525097242999891],[14.185626293999974,-14.48227295099997],[14.189907000000176,-14.410420096999871],[14.073396441000057,-14.430609000999937],[14.019237738000072,-14.392379447999929],[13.818408404000138,-14.151851741999906],[13.680923919000122,-14.059132481999939],[13.491541318000031,-14.075029887999904],[13.385013605000097,-14.146113073999913],[13.307166430000166,-14.231736577999982],[13.273933425000166,-14.387452701999962],[13.331294502000048,-14.497226933999968],[13.282040449000021,-14.695664115999932],[13.17352005600003,-14.894815779999817],[13.154229315000066,-15.05715972899992],[13.188275240000166,-15.251835059999962],[13.325929643,-15.496871755999962],[13.419995526000037,-15.606121590999976],[13.534215193000136,-15.77907549899993],[13.521734236000157,-15.899873745999969],[13.382930865000105,-15.984243972999877],[13.363263903000131,-16.030777846999968],[13.418681596000056,-16.154917360999946],[13.475809949000052,-16.15195125699995],[13.627022626000098,-16.089856304999955],[13.746871355000053,-16.133073800999966],[14.126447056000188,-16.452966668999863],[14.179947722000179,-16.511949499999957],[14.402014043000179,-16.326950604999922],[14.482920343000046,-16.221010077999892],[14.404370538000023,-16.14029112799983],[14.307754277000186,-16.236848237999936],[14.236273954000183,-16.227043812999966],[14.174612357000058,-16.158399181999982],[14.172648612000046,-16.067464956999913],[14.206817777000026,-15.841648163999935],[14.107059524000078,-15.68289640699993],[14.116878250000184,-15.634112075999894],[14.253162162000024,-15.56412976699994],[14.200926542000104,-15.239253327999904],[14.204853996000168,-15.08499378599987],[14.261707637000029,-15.037239947999979],[14.402664297000172,-15.11097776399987],[14.627723976000027,-14.95015102799988],[14.764980103000141,-14.980701177999947],[15.056649373000084,-14.84774385899982],[15.138397508000025,-14.862051276999921],[15.291128590000085,-14.944950568999843],[15.287428057000056,-15.103832486999863],[15.463035161000107,-15.256753663999973],[15.492975836000028,-15.418320008999956],[15.563622372000054,-15.57781648699995],[15.749528273000067,-15.735381872999938],[16.086683634999986,-15.751721229999873],[16.15735202999997,-15.719801262999965],[16.368567626000072,-15.566591958999823],[16.37448955900004,-15.46654507799991],[16.288029343000062,-15.374824667999974],[16.30895350500009,-15.259450848999961],[16.363830080000128,-15.194310869999981],[16.491743824000025,-15.120385017999922],[16.654004776000022,-15.219835952999915],[16.82495123000018,-15.279636335999953],[17.08472667300009,-15.404133930999933],[17.202770529000134,-15.399566524999955],[17.40074675799997,-15.364186116999917],[17.404248211000038,-15.273930468999936],[17.328158760000065,-15.09237113499995],[17.286374328000136,-14.823655616999929],[17.32664629600015,-14.736098476999928],[17.410183576000065,-14.730485098999964],[17.44797161800011,-14.682692011999904],[17.51459135800002,-14.485886443999902],[17.62746580600009,-14.472644988999889],[17.76471351800012,-14.599184113999911],[17.917374203000122,-14.696403873999941],[18.070524567,-14.6634858299999],[18.1605224220001,-14.595214243999976],[18.20676133900008,-14.507256148999943],[18.209241316000032,-14.399611542999878],[18.293773746,-14.405244764999964],[18.39571339400004,-14.47193237099998],[18.523503239000092,-14.423748250999893],[18.565263983000023,-14.285180457999957],[18.6224455950001,-14.253054403999897],[18.65626488400011,-14.363916574999905],[18.721407690999968,-14.421763315999954],[18.771125682000047,-14.305287765999935],[18.75271936600018,-14.165106228999946],[18.594581412000082,-13.93814962099998],[18.593582314000173,-13.8590224699999],[18.67413414600003,-13.819669292999947],[18.76911169600004,-13.875511255999982],[18.95161896700006,-14.174367893999943],[19.01178602800013,-14.175981637999882],[19.16692274200011,-14.097676240999874],[19.307637686000135,-13.992056256999888],[19.363322626000183,-13.875179750999962],[19.255905708000114,-13.678755295999906],[19.2489396630001,-13.600029099999972],[19.311590648000163,-13.56187879099997],[19.425961768000093,-13.633387785999957],[19.450832607999985,-13.778791666999837],[19.53138838700005,-13.80731904199996],[19.608457196000074,-13.728602767999973],[19.746202484000094,-13.860765192999963],[19.869016582000086,-13.756348075999938],[19.934653016000027,-13.751937563999945],[20.06145955599999,-13.896148499999981],[20.166372808000062,-13.792934248999927],[20.326986793000117,-13.844365700999845],[20.34487974300015,-13.707401729999901],[20.30907015500003,-13.574046359999898],[20.33840337500004,-13.498537729999896],[20.422931857000094,-13.436290399999905],[20.51044578600016,-13.407782866999923],[20.596960619000185,-13.300148182999862],[20.596952723000015,-13.164387079999926],[20.525835071000074,-12.971180190999974],[20.662071842000046,-12.814950508999914],[20.83958362700008,-12.718171390999942],[20.941687641000044,-12.694340195999871],[20.860213568,-12.575956737999888],[20.730660494000176,-12.475242721999905],[20.720024959000114,-12.290504419999877],[20.66881627000015,-12.195403400999908],[20.655697053000097,-12.03132737199985],[20.6743180900001,-11.905136371999902],[20.910851958000137,-11.728666956999973],[20.76800889200007,-11.570013754999877],[20.77922310600013,-11.47091616199998],[20.674322171000142,-11.317822949999936],[20.66228911200011,-11.221990782999967],[20.75299613900006,-11.134959340999956],[21.0319475660001,-11.114942471999939],[21.103993727000045,-11.182847264999964],[21.218976670000075,-11.188393945999962],[21.33869510300019,-10.951307045999954],[21.468549780000046,-10.964964387999942],[21.61035977000006,-11.06116281099986],[21.63581047399998,-10.450725322999972],[21.602697598000077,-10.166470259999926]],[[15.54770000000019,-11.0138],[15.419210000000191,-11.144109999999898],[15.310410000000104,-11.15228],[15.180920000000128,-11.072969999999884],[15.31721000000016,-10.93788],[15.219940000000122,-10.89036],[15.22038,-10.83330999999987],[15.32921,-10.746529999999893],[15.26119,-10.66146],[15.30138,-10.61756],[15.380020000000172,-10.68085],[15.4736,-10.861019999999883],[15.57273,-10.92239],[15.54770000000019,-11.0138]],[[16.105910000000165,-12.80392],[16.020570000000134,-12.80087],[15.988470000000177,-12.6951],[16.011800000000108,-12.597559999999874],[16.11139,-12.52328],[16.18968000000018,-12.72839],[16.105910000000165,-12.80392]]]]},"properties":{"objectid":31,"eco_name":"Angolan wet miombo woodlands","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Afrotropic","eco_biome_":"AF07","nnh":4,"eco_id":36,"shape_leng":63.0758963313,"shape_area":37.084843102,"nnh_name":"Nature Imperiled","color":"#C7AB01","color_bio":"#FEAA01","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":449655.4612957664,"percentage":2.097369890101182}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[169.20523070200034,-52.439315275999945],[169.12716668400014,-52.457099494999966],[169.02832057700004,-52.55710062899993],[169.23718268400012,-52.55626847399992],[169.20523070200034,-52.439315275999945]]],[[[166.15026872500005,-50.530118225999956],[166.0877377160001,-50.667067962999965],[165.9080196530001,-50.76068258999993],[165.96386760400014,-50.841791583999964],[166.12188760100014,-50.820406499999876],[166.2346806930001,-50.85235077099992],[166.2294005970001,-50.75207621899989],[166.1413575890001,-50.69595350999987],[166.20831273400017,-50.65289986399989],[166.27499362400022,-50.5398462629999],[166.15026872500005,-50.530118225999956]]]]},"properties":{"objectid":32,"eco_name":"Antipodes Subantarctic Islands tundra","biome_num":11,"biome_name":"Tundra","realm":"Australasia","eco_biome_":"AU11","nnh":4,"eco_id":196,"shape_leng":5.38276912358,"shape_area":0.113542820514,"nnh_name":"Nature Imperiled","color":"#6BB3F3","color_bio":"#9ED7C2","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":876.3948376241017,"percentage":0.01025604317783324}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[46.54487220200019,15.436961632000077],[46.60197926600017,15.44945380200005],[46.682432531000075,15.538200826999969],[46.33607449900006,15.61363661200005],[46.04518539100019,15.574375505000091],[45.85244904900003,15.483361122000133],[45.65942930699998,15.313797121000107],[45.54244730500005,15.306112172000098],[45.59676792200014,15.224083836000148],[45.68959689100012,15.224716852000142],[45.8074946700001,15.274512598000172],[45.82160890400013,15.230776244000026],[45.73347610200011,15.124289809000118],[45.81900574700012,15.094506988000091],[45.87988573700011,15.175010560000032],[46.0362624120001,15.317393716000083],[46.22542956200016,15.397700525000118],[46.36462803100005,15.435177036000027],[46.54487220200019,15.436961632000077]]],[[[47.42646250500013,15.834926485000153],[47.36757084500016,15.925940869000044],[47.28904863100007,15.929510060000041],[47.187326673000086,15.888464358000078],[46.98031356600018,15.711789378000105],[46.91071433200011,15.624344186000144],[46.9874519490001,15.577944697000191],[47.14985016300011,15.679666655000176],[47.369355440000106,15.676097463000076],[47.57636854800012,15.776034825000181],[47.526399867000066,15.836711081000033],[47.42646250500013,15.834926485000153]]],[[[45.2543450120001,20.517053219],[45.10910450200009,20.44465779500007],[44.816105379000135,20.474335422000024],[44.87600022700019,20.41893718400007],[45.13941165500012,20.392676980000147],[45.2543450120001,20.517053219]]],[[[56.51952275800011,20.895308073000024],[56.5820256400001,20.86023451300008],[56.57941760600016,20.781363969000097],[56.447936723000055,20.766525155000124],[56.44272065500013,20.698536408],[56.341546925000046,20.638012036000134],[56.433367706000126,20.54286376300007],[56.569704928000135,20.676413087000128],[56.61152340300015,20.6622937300001],[56.76422828600005,20.708788680000055],[56.807575609000025,20.75978024000011],[56.75595452400006,20.847104410000043],[56.51952275800011,20.895308073000024]]],[[[42.892363065000154,20.868323534000126],[42.784626809000144,20.898365767000087],[42.67796721400009,20.867069360000073],[42.74370765600008,20.803487291000067],[42.82725467400013,20.82471129100003],[42.892363065000154,20.868323534000126]]],[[[44.195033574000036,19.95335816100004],[44.19269533700009,20.046527925000078],[44.25636733700003,20.07782433200009],[44.156632523000155,20.15444657],[44.131631370000036,20.29465087699998],[44.1662552680001,20.40077087900005],[44.33991435600012,20.4407907100001],[44.42418083100006,20.522988745000134],[44.82365968400018,20.518671999],[44.911163719000115,20.494750033000116],[45.1064964680001,20.508329796000055],[44.9432695160001,20.66148434000013],[44.811338972000044,20.575868881000133],[44.4155473400001,20.55761264400013],[44.141344048000065,20.782353223000086],[44.14575072600013,20.682168747000105],[43.99124719800005,20.702133697000022],[43.95707296100011,20.650422679000144],[44.03558377500019,20.45949660800011],[44.005096758000036,20.40670640400009],[43.84420804400003,20.392856844999983],[43.779276992000064,20.340246505000152],[43.59230793900019,20.365607387000125],[43.53744929400017,20.2368244700001],[43.59221800600011,20.20247036799998],[43.68556763500004,20.224323893000133],[43.68988438100013,20.15165867200011],[43.75922211000017,20.06235599300004],[43.74465309300007,19.99580616200012],[43.85014356900007,19.97710026300018],[43.908509570000035,20.152468062000082],[44.055368860000044,20.221895724000035],[44.13477899700018,20.188530876000016],[44.160859336000044,20.09077457000012],[44.14404201399998,19.942116635000048],[44.195033574000036,19.95335816100004]]],[[[44.72347520800008,21.288131942000177],[44.66807697000013,21.214207670000178],[44.773117785000125,21.14154244800011],[44.885982702000035,20.990186548000167],[44.90657717700009,21.04720356600012],[44.80846114200011,21.22976594100004],[44.72347520800008,21.288131942000177]]],[[[43.98818950300006,21.319608213000095],[44.03126702900005,21.169421432000036],[44.149168150000094,21.150175940000167],[43.98818950300006,21.319608213000095]]],[[[44.39099584800016,21.68743093],[44.30978706700006,21.586616929000172],[44.35061628800008,21.480676792000168],[44.41617686500007,21.45387699500003],[44.47328381500017,21.49722431700019],[44.48308642500018,21.266098552000187],[44.576615918000016,21.211060042000156],[44.65566632600013,21.26510929700015],[44.59559161300007,21.38489899400014],[44.60620361300005,21.442005944000073],[44.7004525640001,21.452887741000097],[44.70917598799997,21.514491301000135],[44.55862947700018,21.61656435300017],[44.39099584800016,21.68743093]]],[[[45.57000705000013,21.8105481180001],[45.349763081000106,21.714140795000162],[45.42170884500018,21.669084760000146],[45.51793630400016,21.735184931000163],[45.57000705000013,21.8105481180001]]],[[[43.439153394000186,21.973505273000058],[43.38762224100003,21.900210526000023],[43.39328797000013,21.802004559000125],[43.30389535800015,21.655954659000088],[43.249936036,21.68203499800012],[43.170885628000065,21.50918530100006],[43.173583594000036,21.407292113000096],[43.11638671200012,21.3338175020001],[42.981038744000045,21.3338175020001],[42.976092473000165,21.26313078900006],[43.06764345700003,21.274012586000083],[43.17286413599999,21.185968957000057],[43.27565664600007,21.19253400800011],[43.320173088000104,21.080658346000064],[43.257040680000046,21.05862495600013],[43.19903440800016,21.101072956000053],[43.1253799320001,20.985150344000033],[43.038055762,20.972919565000097],[42.97771125200006,20.894228886000178],[43.044171152000104,20.815268410000044],[43.06485555900008,20.740894477000097],[43.03167057500008,20.642508645000078],[43.10172776300004,20.578207119000126],[43.25272393400013,20.670747357000153],[43.334382376,20.762388274000102],[43.26018830700019,20.845845359],[43.262076883000134,20.981013463000124],[43.40398990200009,21.040458650000176],[43.49590061500015,21.049901532000035],[43.53825868400003,20.99846031100003],[43.639342482000075,21.057905498000082],[43.78215482300004,21.058984684000052],[43.83566448400012,21.122836550000102],[43.80400834800014,21.180033432000187],[43.536549972000046,21.388406350000082],[43.42134681800019,21.49299750400013],[43.33429244400003,21.629604523000182],[43.471618920000026,21.728979609000078],[43.578098650000186,21.605502692000186],[43.629899600000044,21.645522523000068],[43.557594108000046,21.740221134000024],[43.540596921000144,21.813156152000033],[43.439153394000186,21.973505273000058]]],[[[43.60354946400014,22.733792130999973],[43.55786390400016,22.6542021300001],[43.44113190300004,22.70033735100003],[43.35191915600012,22.692063588000167],[43.272688883000114,22.72965524900019],[43.19813508600015,22.695031351000125],[43.2582097990001,22.385035041000094],[43.40767712300004,22.314528193000058],[43.44436946200011,22.171895716000108],[43.48951542900011,22.093564766000156],[43.47899336100011,21.97773208700005],[43.59869312500018,21.921434527000088],[43.70939966900016,21.935823679000123],[43.74654167000011,21.88204422100017],[43.82352363700005,21.863068526000177],[43.851402620000044,21.989603138000177],[43.751398009000184,22.211735682999972],[43.763179127000114,22.274508362],[43.72199017800011,22.398255075000066],[43.858057603000134,22.483241009000096],[43.95563404500007,22.509411280000165],[43.97478960500018,22.613013180000053],[43.85652875599999,22.61589101100003],[43.77001397500004,22.54637341600005],[43.70094604200011,22.580367790000082],[43.60354946400014,22.733792130999973]],[[43.40713752900018,22.460578093000095],[43.54752170100005,22.384045787000105],[43.483669835000114,22.34006893900016],[43.391219529000125,22.39582690600014],[43.40713752900018,22.460578093000095]]],[[[45.16459267300013,23.04585688200001],[45.13644389200016,22.919232337000096],[45.21045809600008,22.873276980000128],[45.12178494200015,22.77597033500018],[45.31064257200006,22.610944739000047],[45.29076755500006,22.535221823000086],[45.336543047000134,22.432699110000044],[45.354349624000065,22.313538939000125],[45.44077447200016,22.242942158000176],[45.48349226900012,22.16622998800011],[45.42503633600006,22.116767275000143],[45.312171420000084,21.870712762999972],[45.3493134200001,21.838337170000045],[45.30066009700016,21.746246592000148],[45.55696688100005,21.83312110200012],[45.577921084000195,21.959565781000094],[45.75445800200009,22.158675682000137],[45.73620176400004,22.253014565],[45.59986454199998,22.17333463200015],[45.52360203300009,22.17531314000007],[45.640334034000034,22.445919144000186],[45.73512257800007,22.579918129000077],[45.59231023700016,22.560942434000083],[45.536822067,22.453113720000033],[45.353000640000175,22.57587117999998],[45.36001535200006,22.704654097000173],[45.426834980000194,22.75483626700003],[45.36990789500015,22.832807489000174],[45.25029806300017,22.929934269000057],[45.19777765500015,22.942344913],[45.16459267300013,23.04585688200001]],[[45.249848402,22.81086403000012],[45.32260355500017,22.797014471000182],[45.323053216000176,22.699078300000053],[45.21288626600011,22.722100944000147],[45.249848402,22.81086403000012]]],[[[46.183614482,23.114205356000184],[46.01589092100005,23.01779803300002],[45.953657835000115,22.84225037000016],[45.96912617400005,22.75393694500019],[45.92604864800006,22.7192231140001],[45.9558162080001,22.63144928200012],[46.179657465000105,22.823904200000072],[46.368425163000154,23.072926474000155],[46.242699941000126,23.082639152000127],[46.183614482,23.114205356000184]]],[[[44.40484540700004,23.14487223800006],[44.57994341,22.9952250500001],[44.592713783000136,22.875345421000134],[44.660972326000035,22.80852579300017],[44.94965470300008,22.933711422000044],[44.42022381400017,23.1185221020001],[44.40484540700004,23.14487223800006]]],[[[43.85526970500018,23.302253597000174],[44.0845968270001,23.187859832000072],[44.120209980000084,23.265651189000152],[43.85526970500018,23.302253597000174]]],[[[46.2559199750001,23.389038174000063],[46.21787865200014,23.374199360000148],[46.25025424600017,23.167535154000063],[46.362669502000074,23.187320239000087],[46.3403663150001,23.293530172000033],[46.2559199750001,23.389038174000063]]],[[[43.472877972000106,23.738154993000023],[43.50453410700004,23.65622675300017],[43.49868851300005,23.55226512500019],[43.591768345000105,23.42537078400011],[43.738267908000125,23.434903598000176],[43.60570783800017,23.619084753000095],[43.616769499000156,23.677540686000043],[43.472877972000106,23.738154993000023]]],[[[43.98944855400009,23.772239298000102],[43.85499990799997,23.758299807000014],[43.75103828000016,23.7811425860001],[43.75364631400015,23.677450755000166],[43.84438790799999,23.666029364000053],[43.98944855400009,23.772239298000102]]],[[[42.43038385500017,23.816665806000174],[42.46239972000018,23.727003398000022],[42.528769687000135,23.734647636000147],[42.64936877300005,23.61962434600008],[42.65089762100007,23.459095361000152],[42.71726758800003,23.46512081900005],[42.72158433400017,23.579604515000028],[42.58353840000018,23.734018110000136],[42.43038385500017,23.816665806000174]]],[[[45.072771891000116,24.379191746000174],[44.94668694000006,24.350053712000147],[44.92492334700012,24.30553727200015],[45.03976677200012,24.223159371000122],[45.09165765400019,24.276129439999977],[45.04075602600011,24.322174729000153],[45.072771891000116,24.379191746000174]]],[[[48.64299048200019,24.89441334600008],[48.60476929500015,24.794318803000067],[48.69874844800006,24.637207241000112],[48.68777672000016,24.586755275000144],[48.748840686000165,24.44852947600009],[48.8403017390001,24.41300625500014],[48.763949297000124,24.652855445000114],[48.705493364,24.708343615000047],[48.69838871999997,24.84989690500015],[48.64299048200019,24.89441334600008]]],[[[44.371390627000096,25.00871717900003],[44.230646727000135,24.92067355],[44.25447876100009,24.856821685000057],[44.22435147300013,24.74593527700017],[44.30016432100001,24.63136164800011],[44.44450551000017,24.61094703800012],[44.60539422400012,24.55950581700006],[44.683815106000054,24.49988076500017],[44.81376714200019,24.50275859600015],[44.819253006000054,24.614544326000043],[44.667717241000105,24.603302800000165],[44.51528215500002,24.695843039000124],[44.37750601699997,24.92561982100011],[44.371390627000096,25.00871717900003]]],[[[42.488929720000044,25.395605523000143],[42.589024264000045,25.429779761000134],[42.65251639999997,25.35108908100011],[42.67913633300009,25.559102271000086],[42.58299880600009,25.534280982000098],[42.51626911100004,25.48230016800011],[42.449089754000056,25.50990935500016],[42.38838551600003,25.464763388],[42.36032666800014,25.292723081000076],[42.4040337190001,25.196045961000095],[42.43757843100019,25.032279416000108],[42.44036633000002,24.821568261000152],[42.49423572000018,24.59880619000012],[42.61249656900014,24.473710493],[42.72176419800013,24.462199171000066],[42.817182267000135,24.354999983000084],[42.903247387000135,24.35041344100017],[42.84991759000013,24.46076025600013],[42.929057930000056,24.526140969000096],[42.95612752300008,24.599255851000066],[42.87240064100013,24.62551605500005],[42.810347420000085,24.58594588500017],[42.66816460400014,24.568499037000095],[42.61249656900014,24.675698225000076],[42.50709602600017,24.785145718000024],[42.51123290700008,24.951700161000076],[42.540191077000145,24.983536161000018],[42.49423572000018,25.10080775600005],[42.54531721300009,25.127067959999977],[42.51536978800016,25.24757711400008],[42.53335622900005,25.346952200000032],[42.488929720000044,25.395605523000143]]],[[[47.584308569000086,25.988528547999977],[47.79528952100014,25.800030647000142],[47.85671321700016,25.809563461000153],[47.66479789200014,25.96037976800011],[47.584308569000086,25.988528547999977]]],[[[44.104741641000146,26.04914285400008],[43.93117248600004,26.014518955000085],[43.908419638000055,25.98726949700017],[44.008154453000145,25.876383089000115],[43.96723530000014,25.71882186600004],[44.01768726600011,25.632307085000036],[44.10240340300015,25.57223237300002],[44.18226320100007,25.55883247400004],[44.34818811800011,25.425822744000186],[44.37894493200014,25.45954732000007],[44.290901304000045,25.602809321999985],[44.22471120100005,25.811721833000036],[44.104741641000146,26.04914285400008]]],[[[46.728333846000055,26.647911472000146],[47.02987652800016,26.451949198000023],[47.05586693500004,26.477579876000107],[46.946329509000066,26.590264929000057],[46.728333846000055,26.647911472000146]]],[[[44.34477069500002,27.93052457400006],[44.444145781000145,27.825753556000052],[44.45187995000015,27.731324741000037],[44.614117647000114,27.766038572000127],[44.34477069500002,27.93052457400006]]],[[[45.04084595800009,19.242534016000036],[45.027895721000164,19.046032149000155],[44.95478083800009,18.990094317000114],[45.049029789000144,18.942610113],[44.98247995700018,18.882265604000168],[44.917548906000036,18.748536416000093],[45.008650229000125,18.749885399000107],[45.06854507700018,18.70285085600017],[45.04264460200005,18.599428821000117],[44.92132605800015,18.454278241999987],[44.84083673500004,18.28232786700005],[44.789395514000034,18.081599186000176],[44.709805513000106,17.929074167000067],[44.890029651000134,18.009743355000182],[44.94201046500012,18.00380782900004],[45.008650229000125,18.086995119000164],[45.143368672000065,18.14032491600011],[45.263608029000125,18.093560170000046],[45.12394331500013,17.948319659000106],[44.974565923000114,17.945082100000036],[44.774826497000106,17.784103454000046],[44.62706788500009,17.632477757000117],[44.529581375000134,17.615660434000176],[44.35832430400018,17.631486840000093],[44.38116713000011,17.564386039000055],[44.363305309000054,17.457119937000073],[44.41755702000012,17.39406422100012],[44.56127646500016,17.37431469400002],[44.5757911770001,17.34671294600014],[44.52368098100004,17.184433706],[44.54200283100005,17.1270886960001],[44.82181215700018,17.0818451720001],[44.86419630600005,16.999277875000075],[45.02745707400004,16.979111943000078],[45.09077472000013,16.901532385000166],[45.04913415200019,16.81825125],[45.06519551400004,16.766200540000114],[45.22521426700007,16.835502342000098],[45.20528628100004,16.693924412000058],[45.31295689100011,16.71533956100012],[45.32855311700001,16.613386451000054],[45.37593335300005,16.697812354000064],[45.53349457500002,16.59564937],[45.61794091500002,16.58305886100004],[45.67163044100005,16.49591455500007],[45.76902701900019,16.604642590000026],[45.7869235280001,16.539441742000065],[45.71057108600013,16.46192018100004],[45.59042166100005,16.378553028000056],[45.63592735600008,16.263619670000026],[45.69600206900003,16.351303570000027],[45.74465539200014,16.478377775000183],[45.82910173200014,16.562194590000047],[45.97038522500003,16.748803914000064],[46.20582773700005,16.82821405100003],[46.35043872200009,16.834329441000136],[46.75315513400011,16.94359706900019],[46.87492333900019,16.997916121],[46.90577008500003,17.041803037000022],[46.811611067,17.15511761500011],[46.94965700100005,17.199364259],[47.06980642600013,17.209256802000084],[47.05676625700005,17.34055782000013],[47.10874707100004,17.38354541400014],[47.15578161400015,17.516645077000078],[47.2532681240001,17.43399738100004],[47.27763975100004,17.364389855000127],[47.24031788600013,17.312678837000078],[47.25335805600008,17.20134276800019],[47.4011166680001,17.143606292000015],[47.39464154900003,17.0786752410001],[47.58466829800011,17.09702141000008],[47.65454562100018,17.065545139000164],[47.82991342000008,17.218070158000103],[47.91112220100018,17.231290192000017],[48.28380125600012,17.464394466000044],[48.377150885,17.52321012800013],[48.4047600720001,17.465923314000065],[48.47625617400007,17.48804663599998],[48.51843437800011,17.53687982300005],[48.73607031300003,17.635625384000036],[48.84812584000008,17.66215538400013],[48.96503770600009,17.736259521000136],[49.00559713100017,17.81566965700017],[49.09013340300015,17.760091555000088],[49.44869310300004,17.922778913],[49.59807049500006,17.839951353],[49.64510503800017,18.078721356000074],[49.794482429000084,18.10039501700004],[49.79583141200004,18.15741203500005],[49.961936194000145,18.270007155000087],[50.22750599500006,18.268298443000106],[50.375894132000155,18.21146128999999],[50.41231667500011,18.384221055000125],[50.565651084000024,18.496546379000108],[50.69290515300003,18.505269802000043],[50.769977053,18.562826413000153],[50.87321922400008,18.532968921000133],[50.95406827600016,18.539444040000035],[50.98176739500002,18.47406332700001],[50.972864106000145,18.30418139300008],[51.01387319200006,18.22477125600011],[51.089416244,18.18484135700004],[51.13411254900012,18.36947217300019],[51.11585631200012,18.496456446000025],[51.21361261800001,18.612289126000064],[51.36874567100011,18.654377398000122],[51.51605462200013,18.65033044800009],[51.64151004800004,18.708426653000117],[51.68881438700009,18.67677051700008],[51.82164425300016,18.68819190700009],[51.884776661000046,18.640797635000126],[51.925066289000085,18.72596343200007],[52.04746401900013,18.65087004200018],[52.1341586640001,18.68837177100005],[52.19216493599998,18.66912627900018],[52.361327413000026,18.724434585000154],[52.42490948200009,18.813737264000054],[52.405124397000066,18.853757095000105],[52.61088928100014,18.93289743500003],[52.706307350000145,18.81337753500003],[52.583639823000055,18.77272817900007],[52.626537485000085,18.686573127000088],[52.73931246900014,18.708426653000117],[52.802984470000126,18.748086755000145],[52.98024084499997,18.676051059000088],[53.0093788800001,18.57874441400014],[53.23492884900003,18.406164513000135],[53.420908648000136,18.419294615000126],[53.48539003900015,18.493308819000106],[53.66399539700018,18.549246649999986],[53.78018780500014,18.689181161000022],[53.97983730000004,18.82371973900007],[54.003939130000106,18.94611746900017],[54.18874981100009,19.167170828],[54.232906523000054,19.16591177700019],[54.35512438900014,19.28372296499998],[54.36726523700014,19.407289815000127],[54.45719744200011,19.483822121000117],[54.794982802000106,19.624116360000073],[54.852989074,19.61800097000014],[54.93635622800008,19.691745378000178],[55.08987050100012,19.744175853000172],[55.152823044000115,19.79498754900004],[55.28205562200009,19.795617074000177],[55.393121895000036,19.882941244999984],[55.47388101500013,19.88518955000012],[55.47271189700007,19.996795416000055],[55.34590748800019,19.872329245],[55.15021501000018,19.813513583000088],[55.016305958000146,19.81621154900006],[54.933298533000084,19.84463012600014],[55.05416741600004,20.033577687000104],[55.13924328100018,20.067661993000115],[55.36928986100014,20.041761518000158],[55.46245962500018,20.078363925000076],[55.46578711600006,20.130074943000125],[55.60859945700014,20.250404233000097],[55.64969847500004,20.223244707000163],[55.60248406700009,20.06451436599997],[55.79269068100001,20.152737859000126],[55.71462952800016,20.03726490800011],[55.58296877999999,19.963520500000072],[55.50454789700018,19.835906702000102],[55.33232772500003,19.65640202100019],[55.496364066000126,19.73563229399997],[55.67451976300015,19.85056565100018],[55.75644800200007,19.984114975000068],[55.86958271500009,19.987352533999967],[55.95969478400019,20.116944841000134],[55.99629719100005,20.118383756000128],[56.1146479730001,20.22297491000012],[56.06329668400008,20.260746436000034],[56.129576719000056,20.322799657000076],[56.13146529500017,20.42775054000009],[55.993239496000115,20.358053082000083],[55.84970769800009,20.415339896000148],[55.683153255000036,20.4073359300001],[55.60365318600009,20.493490982000083],[55.746915188,20.691791493000153],[55.89557312199997,20.73630793400008],[55.96284241100011,20.64988308600016],[56.04692902300019,20.73432942600016],[56.07885495500011,20.674254713000096],[56.20952644800008,20.69323040800009],[56.29019563600019,20.742243460000054],[56.31339814500018,20.807714105],[56.412413502000106,20.8856853260001],[56.3048545850001,20.914823360000128],[56.342895908,21.075981871000124],[56.155746990000125,21.050980718000176],[56.128137803000186,21.138844482000138],[56.131637440000134,21.291194994000136],[56.07647343999997,21.323443994000172],[56.11221980300013,21.40135658700018],[56.23587658400015,21.404144486000177],[56.36618834899997,21.493447165000077],[56.24846709300016,21.546237369000096],[56.12265193900015,21.65046879400012],[56.17705544000012,21.743998995000084],[56.16500044000014,21.81436199500007],[56.06694310700004,21.775162081000133],[56.03255444000018,21.85663799500003],[55.762508009999976,21.92221041100015],[55.6570014400001,22.00583299500005],[55.47118304900005,22.014514358000042],[55.433861184000136,22.087269512000148],[55.444742981000104,22.2076887340001],[55.38295955600006,22.318665074000137],[55.404453353000065,22.443311110000025],[55.38772596299998,22.51678572100002],[55.430533692000154,22.62641307900003],[55.32747138900004,22.655551113000058],[55.266497353000034,22.82048677600011],[55.31011447000003,22.871208539000122],[55.27827847000003,22.932902032000072],[55.32342443700003,22.98047616800011],[55.41794318400002,22.951787795000087],[55.441505422000034,23.062134610000044],[55.419202237000036,23.11258657700006],[55.28430392900003,23.14460244100019],[55.24230558800008,23.26079485000008],[55.275580508000075,23.28102959600011],[55.402654710000036,23.2029684420001],[55.614714850000155,23.273025630000063],[55.765800954000156,23.25737742600012],[55.841254071000094,23.30369251100018],[55.76427210500003,23.39974010600008],[55.65059779800015,23.447853835000103],[55.69403505500014,23.552714785999967],[55.569928610000034,23.624390753],[55.486831254000094,23.64651407500014],[55.49582447300014,23.740493229000037],[55.664267492000135,23.759648789000096],[55.819310613000084,23.725294687000144],[55.80914827600009,23.781412382000042],[55.68243379800009,23.859473536],[55.74214878100008,23.931239435000066],[55.694182185000045,24.048402360000125],[55.70491684800015,24.054176759000143],[55.68342305200002,24.16281486200012],[55.58485735700003,24.082595336000054],[55.50688613700004,24.110834048000072],[55.867154547999974,24.47469974800009],[55.74196892000003,24.522183952000148],[55.782258546000094,24.600874631000067],[55.71894627300003,24.88146310900015],[55.77479417300003,24.98668378900004],[55.76076474900009,25.068432162000192],[55.83208098800003,25.088666909000153],[55.88631010800009,25.195506369000043],[55.80168390200009,25.356754811000087],[55.881723563000094,25.350189760000035],[55.99332943000013,25.385802913000134],[55.99076140300019,25.401591665000183],[55.887749022000094,25.597952983000084],[55.93972983500004,25.695529425000075],[55.89442740500016,25.74428564800013],[55.784168957000134,25.69440629200011],[55.647234967000145,25.5858916950001],[55.6358866380001,25.539113363000126],[55.52054203800009,25.51857473900003],[55.45809497100015,25.39937589699997],[55.26592773300018,25.25267560800006],[55.1116340960001,25.056201383000143],[55.11001531699998,24.970495992000167],[55.0000282310001,24.976071788000183],[54.87754233100003,24.903272422000157],[54.89014474100003,24.847709978000125],[54.88877564799998,24.847766787000126],[54.83329182500012,24.87516074400014],[54.793378891000145,24.851501714000165],[54.80991155000004,24.800524125000095],[54.7144035500001,24.664276835000067],[54.6826212150001,24.659241926000107],[54.619177102000094,24.54814695900012],[54.6255505310001,24.540032850000102],[54.6269264770001,24.537279088],[54.65432883700004,24.3726266970001],[54.62132371500013,24.288090423000142],[54.73481816000009,24.19752869400014],[54.71575253000003,24.087451675000125],[54.609542597000086,24.03286282700003],[54.31510455800009,24.053007640000146],[54.201879913000084,23.968021708000094],[54.01922760500008,23.93699509600009],[53.81076475500004,23.92026770600006],[53.57622156499997,23.98843631700015],[53.49878993700008,23.970000215000084],[53.36874796900008,23.886363265000114],[53.272340646000146,23.948146690000158],[53.17242596700004,23.916310689000113],[53.08051525399998,23.945718520000185],[52.97565430300011,23.92314553700004],[52.85811291200014,23.865409061000037],[52.65675470500008,23.903090655000142],[52.59569073900008,23.844274993000056],[52.550904501000105,23.745169704000148],[52.37283873600012,23.57330926100019],[52.35692073500013,23.459814819000144],[52.2732837850001,23.558290583000087],[52.234523005000085,23.41754668200008],[52.17157046200009,23.437241835000123],[52.12417619000013,23.205936205000114],[52.01733673100017,23.172481425000115],[52.07606246000017,23.108449695000104],[52.09629720600003,23.00808535500005],[52.03901039200014,22.969684303000065],[51.940534628000194,23.10782017000014],[51.877492153,23.299105969000152],[51.8267703890001,23.247125155000163],[51.882258559000036,23.195234273000096],[51.833335440000155,23.064292982999973],[51.746730727,23.024992609000037],[51.71696316700013,23.09361088100013],[51.77056276100012,23.136778340000035],[51.773890253000104,23.209083832000033],[51.700055913000085,23.232915866000155],[51.75734272700004,23.321139359000085],[51.72352821800001,23.430047259000105],[51.57397096200009,23.35387468200014],[51.541055775000075,23.43841095400012],[51.38448380700004,23.52717404000009],[51.32782651800011,23.46215305600009],[51.23447689000011,23.424381530000176],[51.21694011,23.37195105500018],[50.90109820700013,23.421683564000034],[50.859009935000074,23.490571633000172],[50.82141827400005,23.66728841500003],[50.776002511000115,23.768462145000115],[50.845070444000044,23.818284586000175],[50.8544245650001,23.876829279000106],[50.715208340000174,23.88492435000012],[50.69056691600008,24.018473674000063],[50.62986267800005,24.108765607000123],[50.54370762600007,24.45509452700003],[50.554769287,24.559415884000032],[50.47454976100016,24.60546117300015],[50.37382569200008,24.831460803000084],[50.40143487800009,24.944325720000165],[50.3284099280001,25.192268808000108],[50.33146762300004,25.259807894000062],[50.23658914700019,25.28274060600006],[50.24126562200013,25.347221997000076],[50.19035313200004,25.45586948900018],[50.40450543100002,25.41059198400012],[50.30459391300013,25.545406087000174],[50.26760253900011,25.559269206000124],[50.156436757,25.694123828000045],[50.135505349000084,25.72277888300016],[50.1301154300001,25.730465073000175],[50.05312745000009,25.802638681000076],[49.98235080500018,25.983762141000057],[50.01065125700018,26.0750393780001],[49.98868284600019,26.12545074400009],[49.92713243200012,26.108767905000093],[49.82396540200011,26.235136528000112],[49.730990293000104,26.225679771000102],[49.68539466500016,26.177566042000024],[49.62334144400012,26.266329128000166],[49.554273511000076,26.239439399000105],[49.62478035900011,26.127743600000088],[49.532240121000086,25.90785936000009],[49.43916028900003,25.899046004000013],[49.36874337300014,25.990686921000133],[49.23015784600017,26.069647396],[49.269817948000195,25.947159733999968],[49.28366750600003,25.791487087],[49.323057813,25.70883939099997],[49.45121120400012,25.70542196800011],[49.54393130700004,25.674395357000094],[49.60022886700011,25.69579922200012],[49.68143764800004,25.41817850600006],[49.76903161600006,25.367456743000048],[49.89412731200002,25.116455960000167],[49.90923592200011,24.988122704000034],[49.903300397000066,24.83101114200008],[49.85095985400005,24.845580159],[49.76696317500006,25.006828601999985],[49.7429512760001,24.868243075000066],[49.82658822600007,24.80574019300002],[49.81804466600016,24.48180439200013],[49.83684049800013,24.254365846000155],[49.74861700499997,24.259042321000095],[49.72586415700016,24.318307644000186],[49.73215941200016,24.450418052000032],[49.714083039000116,24.713739547000102],[49.67487259700016,24.945944500000166],[49.633054122000146,24.978679822000117],[49.631435342000145,25.097929926000177],[49.68557453,25.1948768420001],[49.62253455000018,25.284177156000055],[49.562996935000115,25.262685724000164],[49.54635947700018,25.141457113000115],[49.598879884000155,24.94495524500013],[49.54851785000017,24.8465694140001],[49.59357388400008,24.59332032500015],[49.582422291000114,24.494934494000063],[49.62936690200007,24.239527033000115],[49.631345410000165,24.118658150000158],[49.53233005300007,24.141950591000125],[49.44473608600015,24.10417906500004],[49.50112357800003,23.976385402],[49.51047652700004,23.802546450000023],[49.67676117399998,23.659104584000147],[49.748976734000166,23.742831466000155],[49.93010019399998,23.694627805000096],[49.855366532000176,23.652539533000095],[49.928481413999975,23.595072854000136],[49.944759143000056,23.514493599000104],[50.004833856000175,23.4490229540001],[49.94314036400016,23.329233258000045],[50.045483212000136,23.344701597000096],[50.055195891000096,23.45217058100002],[50.016075382,23.651370414000098],[50.074621247000096,23.646064413999966],[50.113471959000094,23.518270752000035],[50.246661554000184,23.41233061500003],[50.30538728400012,23.276353121000113],[50.21770338400012,23.15107756000009],[50.058523382000146,23.13075288200008],[49.918858668000155,23.089563932000033],[49.936755177000066,23.038122711000028],[50.052048263000074,23.049454169000057],[50.10888541700007,23.10017593200007],[50.35089297900004,23.14460244100019],[50.47104240500005,23.139206509000132],[50.39639867500006,23.02049599900016],[50.21608460500005,23.01483027000006],[50.16410379000013,22.970313829000133],[50.07641989100006,22.999631728],[49.899433312000156,22.824084064000033],[49.7971803960001,22.66778189300004],[49.782521446000146,22.598444163000124],[49.829645921,22.560133044000054],[49.915711041,22.6914340620001],[49.84106731100019,22.307873210000025],[49.75985853100019,22.37109555],[49.75823975100019,22.23484825999998],[49.693308699,22.133224868000184],[49.693308699,22.073509885000192],[49.62028374900018,22.03447930800013],[49.55526276500018,22.095183546000158],[49.46919764500018,22.023597511000105],[49.33438927100019,22.051476494000156],[49.2840272360001,22.173874225000077],[49.27422462600015,22.30679402300018],[49.355433406000145,22.453203652000184],[49.30669015200016,22.614002433999985],[49.34239323700007,22.708521181000037],[49.33178123700009,22.858977760000073],[49.24661543900004,22.488097348],[49.11342584400012,22.39654636400013],[49.09561926700002,22.31947446400011],[48.947590859000115,22.096352664999984],[48.61664034600011,21.771517542000083],[48.69452163500006,21.786266422999972],[48.80828587400009,21.763783372000034],[48.91215757000009,21.886540831000104],[48.96413838400014,21.88051537300015],[49.00316896100003,21.794450254000083],[48.82294482300017,21.595879945999968],[48.92034140100003,21.614226116000054],[49.011262859,21.672232388000168],[49.05838733500019,21.635450116000015],[48.9902187240001,21.472582893000038],[49.06171482600007,21.419702757000096],[49.16720530200007,21.548575606000043],[49.30848879600012,21.63419106500004],[49.01953662200009,21.265289161999988],[49.06009604700017,21.27266360300007],[49.18833937000011,21.439038181000114],[49.28096954100016,21.463409809000098],[49.31010757500019,21.57915255600011],[49.46605001800009,21.729519202000063],[49.56677408700017,21.686801405000097],[49.37027222000006,21.457024622000176],[49.22575116700017,21.38975533300004],[49.102364183000134,21.255666416000167],[48.96269946900014,21.18848705900001],[48.80837580600007,21.07796038000015],[48.7336421440001,21.133718346000023],[48.52742759900019,20.969502141000135],[48.45107515700016,21.002327395000066],[48.25951956100016,20.872285428],[48.31635671400005,20.849532580000186],[48.42400556300004,20.94072383500003],[48.54532410700017,20.911945530000025],[48.40889695300018,20.78819881600009],[48.27903485000007,20.71823156100004],[48.150701594000054,20.582523864000166],[48.098810712000045,20.60689549200015],[47.97047745600008,20.527845084000035],[47.83081274200009,20.380985794000026],[47.70095063800005,20.2880858260001],[47.570998603000135,20.28394894500019],[47.44914046499997,20.318392979000123],[47.34203121000007,20.239972097000077],[47.30623819200008,20.272527555000067],[47.09840486700017,20.23529562200008],[47.044805274000055,20.264253792000147],[47.10649876600007,20.394835353000133],[47.19256388600007,20.44960406600012],[47.20713290300017,20.49906677900003],[47.33060982000006,20.541244982000137],[47.39230331200008,20.509498914000176],[47.52873046700017,20.546011389000057],[47.57585494200009,20.510757965000153],[47.74960396100016,20.575958813000113],[47.90707525099998,20.611571966000042],[47.89088745400005,20.66616081500007],[48.12471118600007,20.840449427000124],[48.01751199900019,20.83703200300016],[47.82262891099998,20.766525155000124],[47.60013663700016,20.823811969000076],[47.71704850300017,20.946929157000113],[47.84043548800008,20.987578514000177],[47.790073453,21.057905498000082],[47.64393362100003,20.935417835000123],[47.60004670500018,20.98146312400013],[47.83881670800008,21.203415805000134],[47.9021289800001,21.355401231000087],[48.01733213400013,21.473931876],[48.04008498200011,21.618542861000094],[48.12282261000013,21.852366593000113],[48.24791830700002,22.00785937500018],[48.31608691800011,22.228912734000062],[48.29000657900008,22.44394063500016],[48.37930925800015,22.521821924999983],[48.392259495000076,22.65087463800012],[48.44747786800019,22.701596402],[48.42985115700003,22.819587454000157],[48.49361309,22.958712575000163],[48.52589875100017,23.11627379700019],[48.55602604000006,23.388678445000096],[48.504584819,23.387779123000087],[48.59433715900008,23.656496550000043],[48.59910356600005,23.762436687000047],[48.57113465000009,23.859563467999976],[48.55746495400007,24.089610047],[48.518074649000084,24.120097065000095],[48.34477529100019,24.108226014000138],[48.32184257900019,24.159487370000136],[48.472479022000186,24.192762286000118],[48.520592751000095,24.244113575000142],[48.471040106000146,24.456263646000025],[48.42076800400014,24.480275544000108],[48.435337021000066,24.61112690200008],[48.383176343000116,24.702318157000093],[48.35313898600003,24.829212498000118],[48.21491318800008,25.027962670000193],[48.124891051000134,25.03641629800012],[48.01607308300015,25.130125655000143],[47.92704020100007,25.23543626600008],[47.628735078000034,25.52528776200012],[47.58385890800008,25.59273691500016],[47.35192375200006,25.7679248500001],[47.10910680000006,25.963887124000053],[46.88040920400016,26.101933058000043],[46.89686679700003,26.154183669000076],[47.00307673100008,26.19896990700005],[47.28114710700015,26.01011227700019],[47.51173328100015,25.864242241000113],[47.748254978000034,25.680061085999967],[47.78108023300001,25.559192203000066],[47.76120521500013,25.485267931000067],[47.83072281000011,25.363859455000124],[47.92326304800008,25.321141657000055],[48.064816338000014,25.389130404000014],[48.09026715200014,25.43823338800013],[47.98243843900019,25.49453094800009],[47.93864145500004,25.58392355900014],[47.681435351000175,25.760910138000042],[47.51587016100012,25.887894411000104],[47.180602903000135,26.113264516000072],[46.98482049300014,26.272444518000043],[47.02250208700008,26.342321841000114],[46.88139845800015,26.449880757000074],[46.693530082,26.626777404000165],[46.48290885900019,26.735145710000097],[46.40898458700019,26.73379672700014],[46.36986407800015,26.67615018400005],[46.148810719000096,26.800166694000097],[46.06139661600008,26.88236472900013],[45.68197264500009,27.095144325000092],[45.71452810300008,27.141459411000085],[45.602112847000114,27.197397242000193],[45.40830894600015,27.408018465000055],[45.222149283000135,27.55703612800005],[45.39436945500012,27.54489528100015],[45.17601406199998,27.704524944000127],[44.96674182200013,27.61216457000006],[44.89020951600003,27.63248924800007],[44.79119415800017,27.786273318000156],[44.78705727700009,27.85183389500014],[44.61097001999997,28.0798120340001],[44.44576456000004,28.213451290000137],[44.413299035000136,28.31138746100015],[44.221743439000136,28.40482702100013],[44.087744454000074,28.452850818000172],[43.96480713000011,28.607084549000092],[43.778017940000154,28.613739532000125],[43.569465159,28.70016438100015],[43.5241393280001,28.654478821000055],[43.61335207500019,28.574798888000146],[43.62953987100019,28.516522818999988],[43.926855740000065,28.42964831000012],[44.0818089280001,28.329733630000135],[44.409971543000154,28.03133857500012],[44.42193252600015,27.980616812000108],[44.5828212400001,27.845448708],[44.651349580000044,27.75740508000007],[44.70054249600008,27.753897724000126],[44.81565571800013,27.56728840000011],[44.83175358300008,27.440573923000045],[44.77761439500006,27.34038944700012],[44.624639715000114,27.21439442900015],[44.529491443000154,27.224556768000127],[44.21661730300019,27.441832974000192],[44.15744191200008,27.51971426300014],[43.908509570000035,27.720442944000183],[43.60615749800007,27.92773667600011],[43.10811294900003,28.22271430700016],[42.97267504900003,28.267500545000132],[42.70872402800012,28.43216641099997],[42.67059277400011,28.42254366500015],[42.50880473800015,28.520569768000087],[42.62751524800012,28.613289871000177],[42.79586833500014,28.65079160100015],[42.805760877000125,28.696387228],[42.90468630200007,28.718240754000192],[43.04561006700004,28.690721500000166],[43.06773338900018,28.73685672100015],[43.27709556200011,28.71734143200007],[43.295261867000136,28.749267365000094],[43.36262108800008,28.768063196000128],[43.269451324000045,28.88947167200007],[43.10577471200014,28.914292960000125],[43.083291661000146,28.83398350200008],[42.928248540000084,28.82346143400008],[42.68525172300019,28.917530520000128],[42.804052165000144,28.991634656000087],[42.51590938200019,29.07212397900014],[42.247012090000055,29.06070258900013],[42.06705774900007,28.963845605000188],[42.012289036000084,29.003595639000025],[41.88701347500006,28.983900487000085],[41.842676898000036,29.066008589000035],[41.71200540500013,29.104229776000125],[41.58996740300017,29.087682251000103],[41.51649279200018,29.13876374300014],[41.217558144,29.205493439000122],[40.954236649000165,29.34228032200008],[40.94902058100007,29.44408357800006],[40.87617549500004,29.546876087000044],[40.70971098400014,29.591752258000042],[40.49953942200011,29.626376156000106],[40.45457332000018,29.702728598000135],[40.31562806400018,29.72422239500014],[40.22317775700009,29.702009140000087],[40.08333317900008,29.71576876800009],[39.93350612600011,29.677997242],[39.63448154600013,29.702818530000116],[39.655885410999986,29.62826473300015],[39.72792110700004,29.626196292000145],[39.80580239600016,29.53014869700013],[39.767401344,29.47537998500019],[40.0638178910001,29.38239008500011],[40.01336592400003,29.32384422000007],[40.096912942000074,29.29137869400006],[40.20123430000018,29.29722428700012],[40.226235452000026,29.227436897000075],[39.866236836999974,29.148566353000092],[39.60120663000015,29.07805950600016],[39.53195883300009,29.177704388000052],[39.41990330600004,29.21466652400011],[39.30604913500014,29.175815811000177],[39.11503313200012,29.152703235000104],[38.98157374100009,29.264129236000144],[38.817357535000156,29.256484999000122],[38.63416563400017,29.303339677000167],[38.48352919200005,29.28715188100017],[38.47903258100007,29.234271744000125],[38.63299651700015,29.147127438000155],[38.67625390600017,29.100092895000046],[38.863312892000124,29.021042487000102],[39.014488928000105,28.91204465500016],[39.11053652200019,28.81392862000007],[39.23815032000016,28.72048905900016],[39.42457978100015,28.638021228000184],[39.74662700500005,28.601868481000167],[39.724143954000056,28.475243937000187],[39.676210089000165,28.366066241000055],[39.58357991800011,28.24061081600007],[39.311624932000086,27.992128134000097],[39.323136254000076,27.923599794000154],[39.16539516700004,27.85417213200003],[39.04596519900019,27.848596336000014],[38.98076435100006,27.886277929000073],[38.80512675500012,27.790410199000064],[38.91916079200013,27.69184450300014],[38.84676536600017,27.498310399],[38.986250215000155,27.36197317699998],[39.09542791200016,27.286969718000137],[39.23770066000009,27.35235043100016],[39.390315611000176,27.342997481000054],[39.60138649500004,27.214034700000127],[39.61082937600003,27.285350938000136],[39.75454103900012,27.333914329000095],[39.964622669000164,27.352530295000122],[39.95248182200004,27.176443038000173],[39.984767483000155,27.15072242800011],[40.05410521300013,27.396327279000104],[40.036208704000046,27.55370863700017],[40.05590385700009,27.6087471460001],[40.411136065000164,27.640673079000123],[40.47246982900003,27.6842901980001],[40.612584203000154,27.69571158800011],[40.783815121000146,27.675207045000036],[40.70368552700012,27.56728840000011],[40.887686816999974,27.619808807000084],[41.02222539500002,27.634018095000158],[41.03598502200015,27.599394197000095],[40.930224750000036,27.520793450000156],[40.762860917000125,27.49858019500016],[40.64774769500008,27.38706426200008],[40.50655413400017,27.349472600000183],[40.43460837000009,27.30666487100018],[40.42876277700003,27.177162496],[40.3580760640001,27.197577106000153],[40.36356192900007,27.0794061900001],[40.45691155700007,27.100360393000017],[40.58227705000013,27.190382530000136],[40.71213915400011,27.22653527600005],[40.916105394000056,27.317726532000165],[41.262164517000144,27.440573923000045],[41.33276129800004,27.431670635000046],[41.38887899400004,27.46350663600009],[41.42026533300003,27.58383592500013],[41.5002150630001,27.664774909000187],[41.46954818100005,27.73905891000004],[41.600579403000154,27.734562300000107],[41.78835784600005,27.805249013000036],[41.68304723500006,27.836365556000032],[41.79231486200007,27.93367220100015],[41.91795015200012,27.970004812000127],[42.05887391800019,27.97989735400006],[42.21328751400017,27.92198101500003],[42.28163598900005,27.967216914000176],[42.39755859999997,27.92297026900019],[42.65908145100008,27.857679487999974],[42.84218342100013,27.74211660500015],[43.10649416900003,27.666033960000163],[43.22889190000018,27.59103050200008],[43.33537163000017,27.489317178000135],[43.42782193599999,27.521782704000145],[43.583674447000135,27.464405958000043],[43.59302739600008,27.426634432000128],[43.73862763600005,27.28301270100002],[43.780805840000085,27.30675480300016],[43.88467753600008,27.241913683000178],[43.97649831800004,27.228513785000075],[44.09071221700003,27.150542563000045],[44.20843347200014,27.01915161300002],[44.41788557700005,26.862129983000102],[44.38622944100001,26.80844045700013],[44.39935954300017,26.685233337000057],[44.386499238000056,26.557619539000086],[44.32372655900019,26.499163606000025],[44.17174113300007,26.55060482700003],[44.206454964000045,26.417864893000115],[44.13154143700018,26.302212077000036],[43.963997741000014,26.296276552000165],[43.881889637000086,26.157241364000015],[43.82361356900003,26.151755499000103],[43.81048346700004,26.01415922600006],[43.89573919700007,26.021803463000083],[43.996912927000096,26.10831824400009],[44.136757505000105,26.164795669000057],[44.18900811600008,26.279279365000093],[44.32768357600014,26.32649377300004],[44.39180523800013,26.018835701000057],[44.36563496600019,25.876473021000095],[44.42948683100019,25.72574664600012],[44.4890219510001,25.673496035000085],[44.51024595100006,25.565487457000074],[44.592713783000136,25.492552439000065],[44.66852663100008,25.381036506000044],[44.752613243000155,25.204229791000103],[44.827436837000164,25.111599621000096],[44.88463371900008,24.99333877200013],[44.872672736000084,24.915997076000167],[45.03203260200007,24.81887029500018],[45.154520264999974,24.716257649000056],[45.20200446900009,24.629203275000123],[45.37719240400003,24.477487646000156],[45.46622528600011,24.364622729000075],[45.68997661100008,24.186197235000066],[45.73323400200013,24.18583750600004],[45.54680454100014,24.416693476000148],[45.38888359000015,24.561034664000033],[45.23905653700018,24.754298972000186],[45.17520467200018,24.86770348200008],[45.1137809760001,24.92445070300016],[45.114320569000085,24.99369850000005],[45.02447829700003,25.123740468],[45.018093110999985,25.23687518200012],[45.10092067099998,25.35819372600008],[45.019172297000125,25.580146407000086],[44.96107609300003,25.545162779000123],[45.024028636000025,25.41790871000012],[44.88085656600009,25.409365150000042],[44.69622575000017,25.67394569600009],[44.59586141000011,25.862713393999968],[44.51123520500005,26.062542752000127],[44.393783746000054,26.221452958000043],[44.34027408400004,26.376136350000138],[44.37327920300004,26.462021605000075],[44.47418313700018,26.49808441900018],[44.58497961300009,26.312464349000095],[44.76628293800013,26.124326177000057],[44.91916768500016,25.807405088],[44.95226273700018,25.716663493000055],[45.076908772000195,25.572322305],[45.09255697600014,25.521060948000127],[45.20092528200007,25.390299523000067],[45.26459728300006,25.40109138700018],[45.31657809800015,25.32995501300013],[45.29724267400013,25.265023961999987],[45.40012511600003,25.14622351900016],[45.49887067600008,25.16726765500016],[45.610746339,25.036056569000095],[45.54158847400015,25.032998874000157],[45.43834630300006,24.95835514400011],[45.29940104700012,24.926968805000172],[45.371886403000076,24.84998683700013],[45.46685481200012,24.798635549000153],[45.61686172900011,24.68397198800011],[45.79654627400015,24.50401764600008],[45.85050559600006,24.506805545000077],[45.929286208000065,24.409948560000032],[46.04484909100006,24.311652661000153],[46.06895092100012,24.20769103200007],[46.00312054800008,24.10912533600009],[46.049615497000104,24.041676182000117],[46.07398712500009,23.926832757000113],[46.04412963300007,23.819093976000147],[45.91426752900003,23.85677557000008],[45.944664615000136,23.69840495699998],[46.02533380199998,23.666299160000165],[46.029380751000076,23.564945566000176],[46.06949051500004,23.430856649000077],[46.1263276680001,23.35090691900018],[46.12767665100006,23.579334719000087],[46.04116187000011,23.699574076000033],[46.07821393800015,23.89256858700014],[46.141256414000054,23.970899537000093],[46.17525078700015,23.732938924000166],[46.276874178000014,23.937174961000153],[46.411592621000125,24.081426217000057],[46.47481496100016,24.0800772340001],[46.504762385,24.01226835200015],[46.587859742000035,24.08799126800011],[46.465372079000076,24.129809743000123],[46.29504048400014,24.082865132000165],[46.23496577100008,24.08907045400008],[46.193327160000194,24.158138387000122],[46.267970890000015,24.306976186000156],[46.349449469000035,24.31237211800004],[46.380655943000136,24.261740287],[46.52580652100005,24.314170762],[46.56897397900019,24.390343340000072],[46.46842977400007,24.485851341000057],[46.354125942,24.534234867000123],[46.28613719500004,24.522903409000094],[46.23460604200005,24.59017269800006],[46.16104149900008,24.60222361400008],[46.071469023000134,24.67515863200009],[46.029920345000164,24.8220179220001],[45.85814983400019,25.01483256800003],[45.938189496000064,25.07949382400011],[45.949880682000185,25.164659621000055],[45.874967156000025,25.260527351000178],[45.75985393399998,25.308281352000165],[45.50507599800011,25.34506362400009],[45.44733952300004,25.31079945400012],[45.28519175800011,25.43454616700012],[45.071153111000115,25.733031154000116],[44.98301955100004,25.948598649000132],[44.91646971900019,26.167763432000072],[44.87725927800017,26.436300994000078],[44.91467107500006,26.492148894000138],[45.01683406000018,26.410220655000046],[45.14606663800015,26.388367129000187],[45.01449582100008,26.56301547099997],[44.99686911000009,26.691168862000097],[45.06719609400017,26.802235135000046],[44.964673381000125,26.84567239000006],[45.00972941500004,26.907725611000103],[44.91080399000009,27.004942324000012],[44.93526555000011,27.061329817000058],[44.8740217190001,27.19874622499998],[44.90360941400007,27.339580058000024],[45.07735843300003,27.08273368100015],[45.24795982500018,26.957278256000166],[45.275658945000146,26.91689869600009],[45.379530641000144,26.916538967000122],[45.47737687800014,26.83524025400004],[45.4882586760001,26.76113611800008],[45.6692922040001,26.636669946000154],[45.89034556300015,26.545478691000085],[45.84448013900004,26.486033504000034],[46.03279817500004,26.404105265000112],[46.27858289,26.245914517000074],[46.4053872990001,26.19896990700005],[46.56483709800011,26.098065973000132],[46.77590798200009,25.770982545000095],[46.94902747600008,25.628529933000152],[47.067018528000176,25.593366441000057],[47.14678839400017,25.493092033000096],[47.287802090000014,25.445517896000126],[47.32512395500015,25.34659247100018],[47.38151144800014,25.28570836900019],[47.49734412700013,25.24523887700019],[47.56254497500004,25.162771045000113],[47.64618192600017,25.146403384000052],[47.797717691000116,25.00233199200011],[47.790613046000146,24.95214982200008],[47.88908881000009,24.873728939000102],[47.917237590000184,24.807358972000145],[48.03855613400009,24.662388259000124],[48.08900810100016,24.5743446300001],[48.11239047400011,24.40239425500016],[48.167249119000076,24.23907737200011],[48.18262752600003,24.102920014000063],[48.24225257800015,24.060382081000057],[48.263926239000114,23.88519414600006],[48.23856535800002,23.523306955000123],[48.237935832000176,23.281569189000038],[48.21500312000006,23.225271629000133],[48.2447706800001,23.12095027200013],[48.19045162800006,22.89692915000012],[48.19917505200016,22.745393385000114],[48.137211763000096,22.597275044000128],[48.22345674700006,22.47703568700001],[48.12111389800015,22.27324931100003],[48.05942040600013,22.271360735000087],[47.96040504900003,22.13502351300008],[47.95069237100006,22.02143913800012],[47.82244904700002,21.769359169000154],[47.78179969000013,21.633291743000086],[47.69744328200011,21.541830690999973],[47.59833799300003,21.382560757000192],[47.61137816300004,21.312503569000057],[47.52207548300004,21.133628414000043],[47.37917321000009,20.998999904000186],[47.32071727700003,20.882267902000137],[47.19894907200012,20.748358850000102],[47.12268656300017,20.595833831],[47.025200053,20.52847460900017],[46.95055632300017,20.443488676000015],[46.86772876300017,20.541874507999978],[46.801088999,20.530543050000176],[46.64523648800008,20.341955217000134],[46.59487445400009,20.36938453900018],[46.53156218200007,20.29851796200012],[46.33344153500019,20.181965825000134],[46.10123658300017,20.122610570000063],[45.95824437700003,20.122700502000043],[45.85113512200007,20.088616197000135],[45.62216772900018,19.90227666900006],[45.56533057600012,19.894362635000164],[45.43052220100003,19.81810012500017],[45.341219522000074,19.738779921000116],[45.43214098100003,19.617641241000115],[45.31846667400009,19.561973206000175],[45.29580375800009,19.44029493400012],[45.31693782600007,19.287859847000163],[45.26657579200008,19.203593371000125],[45.27799718200009,19.11060347200015],[45.35596840300013,19.08398353900003],[45.37224613200004,18.960506622000082],[45.34949328400006,18.806632620000187],[45.45183613300014,18.826777434000064],[45.524951016000045,18.720387636000055],[45.453544845000124,18.493039023000165],[45.27646833400007,18.50886709100007],[45.149843790000034,18.48035858200018],[45.114050773000145,18.52667366700007],[45.11072328100016,18.671734313000115],[45.07133297600018,19.24631116800009],[45.04084595800009,19.242534016000036]],[[46.317523535000134,18.53422797200011],[46.476703537000105,18.396901496000112],[46.658636387000115,18.289342579000106],[46.436144113000125,18.28079902000013],[46.374450620000175,18.385929767000107],[46.317523535000134,18.53422797200011]],[[45.583496881000144,18.158850950000158],[45.58025932200019,18.10363257700004],[45.74924193400017,18.11658281399997],[45.869391359000076,18.04544644000009],[45.85805990199998,18.014419830000122],[46.056180547999986,17.830868200000168],[45.840163393000125,17.889863726000044],[45.760573392000026,17.96082023600013],[45.70049867900008,17.91603399800016],[45.520274541000106,17.913425964],[45.469912506000185,17.965406778000045],[45.396797624000044,17.953895456000055],[45.32368274200019,18.01585874500006],[45.40489152300012,18.248063697000077],[45.458491116,18.295727766000027],[45.583496881000144,18.158850950000158]],[[46.218508178000036,18.327473834000045],[46.27210777200003,18.407243699000105],[46.36797550199998,18.342942173000097],[46.218508178000036,18.327473834000045]],[[47.90392762400006,20.152198265000095],[47.959145998000054,20.279452335000144],[48.118326,20.342674675000126],[48.24171298500016,20.438452473000154],[48.36680868100012,20.500595626000177],[48.540557701000125,20.614809526000045],[48.65585078700013,20.63063759400012],[48.49505200500016,20.480181016000188],[48.45287380100012,20.483418575000087],[48.22876274700013,20.30175552200012],[47.90392762400006,20.152198265000095]],[[49.07961133500015,21.003856243000087],[49.06018597900015,21.050710922000064],[49.20632581100017,21.194692381000095],[49.29724727000007,21.17913411],[49.254439541000124,21.089291837000076],[49.16099998000004,21.01797559900001],[49.07961133500015,21.003856243000087]],[[53.419919393999976,23.70083312700018],[53.388533054000106,23.759918585000037],[53.237087222000184,23.80740278900015],[53.231421493000084,23.867477502000042],[53.344376341999975,23.866847977000077],[53.39123102000008,23.81216919600007],[53.46497542800006,23.818374518000155],[53.466953937000085,23.743011331],[53.419919393999976,23.70083312700018]],[[53.143917458000146,23.77376814500019],[52.98770521800003,23.83986831500016],[53.106775457000026,23.88681292600006],[53.18582586500014,23.812978586000042],[53.143917458000146,23.77376814500019]],[[55.246802201000094,24.349963780000166],[55.22512853800015,24.376044119000085],[55.415874743000074,24.459681069000055],[55.41407610100009,24.393670831000122],[55.246802201000094,24.349963780000166]],[[55.36425366000009,24.556268257000056],[55.3543611180001,24.592870664000145],[55.47487027200003,24.67461903800006],[55.56003606900015,24.638196496000035],[55.386017253000034,24.54124957900018],[55.36425366000009,24.556268257000056]],[[51.53296187700005,23.31997024000009],[51.46955967200017,23.347489495000048],[51.47900255400009,23.415208445000133],[51.56542740300006,23.39695220800013],[51.53296187700005,23.31997024000009]],[[49.86355036300006,23.733928178000156],[49.701042869000105,23.796071332000054],[49.710036089000084,23.990864487000124],[49.77163964900012,23.931059571000105],[49.770920192000176,23.85803462100006],[49.86355036300006,23.733928178000156]],[[49.70158246200009,25.702274340000088],[49.58961686700013,25.724667459000102],[49.557421138000166,25.80317827400006],[49.6690270040001,25.82988813900016],[49.763545751000095,25.729343934000042],[49.70158246200009,25.702274340000088]],[[47.39230331200008,20.598262],[47.46209070300017,20.64952335700019],[47.59851785700016,20.68900359500003],[47.58880517900019,20.63054766200014],[47.39230331200008,20.598262]],[[47.82631613200016,25.268531318000157],[47.546806840000045,25.473037151000085],[47.50759639800009,25.440751489000036],[47.42306012600011,25.49767857500018],[47.11441280000014,25.75326590100002],[46.96017906900005,25.848953765999966],[46.92357666200013,26.039969769000038],[47.20758256400018,25.86855898700003],[47.51829833100015,25.620525967000106],[47.82631613200016,25.268531318000157]],[[46.35691384000012,26.374427638000157],[46.56798472500003,26.310845569000094],[46.75468398000015,26.202836991000083],[46.73265059000016,26.164705737000077],[46.35691384000012,26.374427638000157]],[[45.982885802000055,26.61679492900015],[45.70157786600015,26.690809134000176],[45.679364611000096,26.7472865580001],[45.982885802000055,26.61679492900015]],[[45.731165561000125,26.884523102000117],[45.54572535500006,26.98857466300018],[45.270892538000055,27.175723581000057],[45.157398095000076,27.281303989000037],[45.229613656000026,27.30198839600007],[45.30434731800017,27.253964599000028],[45.41415454000014,27.232380870000043],[45.477466811000056,27.102248970000062],[45.674418340000045,26.956648730000097],[45.85113512200007,26.859971610000116],[46.00428966600015,26.799087508000127],[46.00518898800016,26.75798849000006],[45.731165561000125,26.884523102000117]],[[44.009233639000115,27.374024092000127],[43.83728326400012,27.43670683900018],[43.524858785,27.64714819700015],[43.503904582000075,27.75497691099997],[43.430070242000056,27.841581624000128],[43.237615324000046,28.00031196500015],[43.125559797000165,28.11470572900015],[43.15352871200014,28.137818306000156],[43.34418498600019,28.053641762000098],[43.52422925900015,27.950309659000084],[43.822804179,27.665404435000028],[43.7273861110001,27.652634062000118],[43.74663160200009,27.569536705000075],[43.880001061000144,27.452804703000027],[44.009233639000115,27.374024092000127]],[[43.42980044500018,27.603800875000047],[43.322871054000075,27.646878401000038],[43.23788512100009,27.719004029000075],[42.96745898100011,27.895720811000103],[42.87114159000009,28.180266306000135],[43.01125596500009,28.235124951000103],[43.017731083000115,28.148430305999966],[43.14840257700013,28.024054067000122],[43.16396084799999,27.93619030300016],[43.258839324,27.889425557000095],[43.4586686830001,27.671969486000137],[43.42980044500018,27.603800875000047]],[[42.12740225800013,28.70897773700017],[42.05302832500013,28.730741331000047],[42.0121991040001,28.81132058600008],[42.06651815500004,28.873014078000097],[42.24368459800007,28.826698993000036],[42.233881988000064,28.79837034900015],[42.42273961800015,28.758890111000085],[42.61168718000005,28.797471026000096],[42.84182369100006,28.8007085860001],[42.84757935200014,28.740364077000095],[42.686151044999974,28.741982856000163],[42.527150907000134,28.71725150000009],[42.28757151400009,28.732360110000116],[42.12740225800013,28.70897773700017]],[[40.80719749400009,27.371236194000176],[40.831029528000045,27.4608986020001],[41.01530061600005,27.53023633100014],[41.04515810800007,27.46764351700017],[41.12142061700018,27.416831821000073],[40.911249055000155,27.322762735000026],[40.818798749000166,27.311161481000113],[40.80719749400009,27.371236194000176]],[[45.75526739200012,25.215381385000114],[45.82487491800015,25.166638130000024],[45.78035847600012,25.099548705000075],[45.69582220400014,25.184174910000138],[45.75526739200012,25.215381385000114]],[[45.63520789900019,25.01618155200009],[45.72235220500011,24.989921348000166],[45.735392374000185,24.920943347000048],[45.87397790200009,24.837486261000038],[45.91444739400009,24.715718056000128],[45.895291834000034,24.60681015600011],[45.65751108500007,24.761943209000037],[45.517666507000115,24.87678663400004],[45.52243291400009,24.96653897500005],[45.63520789900019,25.01618155200009]]]]},"properties":{"objectid":38,"eco_name":"Arabian sand desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Palearctic","eco_biome_":"PA13","nnh":2,"eco_id":810,"shape_leng":436.688913395,"shape_area":62.457848682,"nnh_name":"Nature Could Reach Half Protected","color":"#FFAA01","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":717036.2455548489,"percentage":2.7178810889361227}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-62.98420356999998,10.521364567000091],[-62.92369863399989,10.561530981999965],[-62.7506485429999,10.609587450000163],[-62.67464848599997,10.592717864000065],[-62.35834462899999,10.567698386000131],[-62.31846655099997,10.540579409000088],[-62.246730535999916,10.634516907000034],[-62.15037955299994,10.689723977000028],[-62.35967248999998,10.716148933000056],[-62.31927154899995,10.634550937000029],[-62.46963450999988,10.618937966000033],[-62.70346060799983,10.635918696000147],[-62.756011619999924,10.66533766800012],[-62.75101852099988,10.736963545000094],[-62.89658351299994,10.69361653300001],[-63.001365516999954,10.72001785100008],[-63.16615255999989,10.714033173000189],[-63.287937589999956,10.663100873000076],[-63.39227652699998,10.68015771100005],[-63.536537629999884,10.625212324000131],[-63.77172863599998,10.663901680000151],[-63.908969560999935,10.623944477000123],[-64.02980760299994,10.631999820999965],[-64.12826562899983,10.613620152000067],[-64.25597347899992,10.659031962000086],[-64.29164853499992,10.630193186000156],[-64.2482755389999,10.519285855000021],[-64.19774657699998,10.549767819000067],[-64.0080485179999,10.57480204899997],[-63.815185618999976,10.545229857000095],[-63.73728957499998,10.492676832000086],[-63.789207586999964,10.43905930700015],[-64.06764250799984,10.443631970000183],[-64.12699157899993,10.355143380000072],[-64.32978854199996,10.39652248900012],[-64.33606759299988,10.347655658000122],[-63.89621750099991,10.32211449000016],[-63.49626157899996,10.409266670000022],[-63.38109557099989,10.415843949000077],[-63.17847462799995,10.378848743000049],[-63.13010450899992,10.396498349000069],[-63.107376475999956,10.484435242000131],[-62.98420356999998,10.521364567000091]]],[[[-63.842365616999984,11.118103100000155],[-63.88876749699989,11.155742539000073],[-64.01000954799997,11.05321862000011],[-64.02404051799988,10.99318374100011],[-64.12873853599996,10.994790887000022],[-64.20580259199994,11.078744867000125],[-64.38041657799994,11.039598530000092],[-64.39408159499993,10.966440776000127],[-64.24036453099995,10.934516789000043],[-64.2045825219999,10.978207962000113],[-63.87757463899999,10.933203848000062],[-63.777439561999984,10.996330643000078],[-63.842365616999984,11.118103100000155]]]]},"properties":{"objectid":40,"eco_name":"Araya and Paria xeric scrub","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Neotropic","eco_biome_":"NO13","nnh":4,"eco_id":597,"shape_leng":10.2588961868,"shape_area":0.434595627609,"nnh_name":"Nature Imperiled","color":"#B29841","color_bio":"#CC6767","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":5293.230487027064,"percentage":0.020063659444354447}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-142.254252845,69.85851152000009],[-142.36149571399994,69.91863879400017],[-142.88441415099987,70.0622568730002],[-143.22525060499999,70.10775680700004],[-143.88871422699992,70.07932032100018],[-144.01055054899996,70.04886575600017],[-144.4020959949999,70.03308386700007],[-144.5689435799999,69.98954393600013],[-144.4086000229999,69.9300894800001],[-143.93542793799986,69.92679583800009],[-142.885908998,69.79680138500004],[-142.62882037799983,69.80878596200017],[-142.254252845,69.85851152000009]]],[[[-145.40505931799996,70.03549202300002],[-145.85910534699997,70.16899268000009],[-146.08946894999994,70.14548354800007],[-146.52034175599994,70.19149255700006],[-146.85735993499995,70.18622885800016],[-146.9868144229999,70.14974701900013],[-147.25194175799996,70.18703787700008],[-147.68705086999998,70.20000143200019],[-148.06096923299995,70.31069226300013],[-148.50138742599995,70.31911945400014],[-148.49452387499997,70.37091945200007],[-148.73428758199992,70.41483758600015],[-148.8930693549999,70.38945574100018],[-149.16757860699997,70.48944659100005],[-149.4624241079999,70.51851017200005],[-149.7781695129999,70.49350102300014],[-150.43591480299995,70.40428272700018],[-150.42796041899993,70.49998272100015],[-150.79486948699991,70.4953190170001],[-151.0690602589999,70.41800988099999],[-151.56386936799993,70.43859160600005],[-151.87805116099997,70.4313188220001],[-151.72393316899996,70.54304611500004],[-151.975305922,70.56522788500007],[-152.5249149489999,70.54202778500019],[-152.41894233999997,70.61062779800005],[-152.47039700899995,70.68560960200017],[-152.26739727399993,70.83580053600019],[-152.5931518909999,70.88630956400004],[-153.24027919299996,70.92524580400004],[-153.50400637899992,70.88454575800017],[-153.88606999199996,70.88653659700009],[-154.16416977499998,70.770118374],[-154.35323351299996,70.83689106000014],[-154.56379711299994,70.82525465900005],[-154.64321543299994,70.90943645400012],[-154.6118338169999,71.02371827000007],[-154.77235209299997,71.08524550800018],[-155.14657938099998,71.11148179900005],[-155.26507920899994,71.01906360400011],[-155.50765177999995,70.94098174800018],[-155.5047970939999,70.85813630000013],[-155.97646063399995,70.82546348900013],[-155.98783359399994,70.96322711300019],[-155.71696092199994,70.98130897900006],[-155.50960656799995,71.07992719100008],[-155.56367943899994,71.1641817200001],[-155.9539885309999,71.18573619100016],[-156.1761522719999,71.25635432500013],[-156.34168862899995,71.25986338500007],[-156.63842510399994,71.34023605000004],[-156.81227044599999,71.2865360240001],[-157.23967907899996,71.05241778300018],[-157.49915160099994,70.94892683600011],[-158.00876043799997,70.83483584400011],[-158.9941147529999,70.76734476100012],[-159.660387425,70.78552645600018],[-160.05957802199995,70.627662762],[-159.90999619899992,70.61370824500011],[-159.73002328899992,70.48666283400001],[-159.97810504899994,70.47020824500004],[-159.90133251899994,70.58613552100013],[-160.216723333,70.55494455900009],[-160.74015932799992,70.36879902700002],[-161.31552268299995,70.24403529900019],[-161.5366499129999,70.23762616900012],[-161.92422266899996,70.29212609500019],[-162.15933150899997,70.15366243000017],[-162.31455868799995,70.10910786000017],[-162.33535857799998,70.04038059100003],[-162.60034925499994,69.91317146400007],[-162.96363990399993,69.78037141300007],[-162.92691251399992,69.69481688400015],[-163.11029414199996,69.58466231500012],[-163.02549409899993,69.54476233400004],[-163.0898301789999,69.42149565600005],[-162.70668633099993,69.42841025000018],[-162.235692614,69.50802842800005],[-162.06709949999998,69.62761724500007],[-161.6632205889999,69.75165783100016],[-160.63750037499997,69.75438053800013],[-160.0834576729999,69.71180471900016],[-159.57673195599997,69.72827825400009],[-159.39829676199994,69.77878376500018],[-159.33701534699992,69.94473386600015],[-159.0934307859999,69.99243434599998],[-158.63063157999994,70.03133405900007],[-158.34600695499998,69.99410500900012],[-156.80467076999994,70.06335660600013],[-156.13756793699997,70.0306941830001],[-155.75634128399992,69.98343855200017],[-154.42209670699998,70.00499688000008],[-153.87324110999995,69.93344046800007],[-153.3704441159999,69.91235858200014],[-152.68399675799995,69.90574186700007],[-151.99838186299996,69.93923563300007],[-151.63704815799997,70.12360645500013],[-151.50662959299993,70.1527918760001],[-150.30172664899993,70.16873093700019],[-149.77910666699992,70.1808840540001],[-149.71866303099995,70.09901475900006],[-149.68188032699996,69.76421757300005],[-149.46349584399994,69.73732788100006],[-149.15196212499998,69.75883442800006],[-148.68018612299997,70.05207951500006],[-148.41674233299995,70.07473013700013],[-148.06104362499997,70.04139157700001],[-147.90915678599998,69.95394218600018],[-147.87823123299995,69.86891207200017],[-147.93650747199993,69.73859850600013],[-147.71305893899995,69.73624077900018],[-147.2327874369999,69.94860601400006],[-147.06989049099994,69.97203813400012],[-146.55617942099997,69.95412009100005],[-146.33014077899992,69.96339168500015],[-145.78307436799994,70.03345956100009],[-145.40505931799996,70.03549202300002]]]]},"properties":{"objectid":41,"eco_name":"Arctic coastal tundra","biome_num":11,"biome_name":"Tundra","realm":"Nearctic","eco_biome_":"NE11","nnh":2,"eco_id":407,"shape_leng":74.8247647328,"shape_area":11.9284484691,"nnh_name":"Nature Could Reach Half Protected","color":"#78F3F1","color_bio":"#9ED7C2","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":49782.545927703584,"percentage":0.582582094984893}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-7.970249561999879,71.17423874500008],[-8.347913308999921,71.13371626600019],[-8.517211491999944,71.00926595900006],[-9.116265441999928,70.86600867200008],[-9.043915535999872,70.800887822],[-8.61850058899995,70.95861914700015],[-8.386982532999923,70.95861914700015],[-8.006423508999944,71.02808098500003],[-7.970249561999879,71.17423874500008]]],[[[19.174163527000132,74.51528748200013],[18.7902815810001,74.47498712400005],[19.051654468000038,74.34303585100014],[19.18193858000012,74.3586003750001],[19.29999148400003,74.46749470800006],[19.174163527000132,74.51528748200013]]],[[[54.880573536999975,73.46125879800019],[55.06384250900004,73.46344815100002],[55.375820634000036,73.37576590000009],[55.72549452400011,73.37040952900003],[56.322639579000054,73.2983529890002],[56.63804255000008,73.30587608300004],[57.08378260500018,73.40472135200008],[57.10337061000001,73.54755233500015],[57.575603515000125,73.6805563750001],[57.25295656900016,73.82582213300003],[56.84614156900017,73.85867567300016],[56.84893458600004,73.91755569300011],[57.32984963400003,73.85076315700007],[57.55500063000011,73.76105885500004],[57.874034473000165,73.81069179200006],[57.78888355600003,73.94320716700014],[57.533996586,74.04975121500007],[57.307533488000104,74.08271941900011],[57.601474595000184,74.15721811000014],[57.67492253000012,74.06144765800019],[57.96462256199999,74.00195693199998],[58.06798551000003,74.07677564400012],[58.29262152100006,74.12279966900007],[58.81501760200018,74.29833952000001],[58.71027750700017,74.42204249700018],[58.477828556000134,74.50787922100011],[59.04341859600004,74.47007264600006],[59.23056453400005,74.67723993300007],[59.46255147400012,74.67334083900005],[59.74187454200012,74.60464946600007],[59.85358050100007,74.74335336800016],[60.20507460500011,74.74796877900019],[60.36141553900006,74.8376963820001],[60.66271947800004,74.88842768299997],[60.588710626000136,74.96511556000013],[60.24553254300008,74.97601102800013],[60.40957259100003,75.05773458400006],[60.86270850300019,75.06640985400003],[60.95359448500011,75.17277033800008],[61.18151050200004,75.24291965900011],[61.62322959200003,75.28509052300006],[61.644138584000075,75.34871553800008],[61.88626461000007,75.44108360800004],[62.40306459700014,75.47251826000002],[62.85837159000005,75.56429054400007],[63.43353258900004,75.63995649900005],[64.53495758300005,75.74453951700013],[64.84262053600003,75.7993221270001],[65.25987251500004,75.81190403400012],[65.86544758500003,75.96579057999998],[66.39511161400003,76.0082432430001],[66.75290656300018,76.09487323000019],[67.28613256600005,76.14352950800009],[67.98867049800003,76.27126937700007],[68.38955664300005,76.44403364500016],[68.66433755800017,76.482877228],[68.89272363200001,76.5976078810001],[68.78096755000013,76.6441579540001],[69.07533261300011,76.72432532500017],[68.8062896140001,76.92027662000004],[68.43646948500009,77.03555678999999],[68.04237351900014,77.05557763600007],[67.28383659500003,77.020244059],[66.72847750600016,76.94431072100008],[65.86666849300019,76.7837240180001],[65.7863155460002,76.72337096200016],[65.96720154300016,76.59196920700003],[65.48973849800007,76.62021555000013],[65.2556995,76.52560498500014],[64.92561361500015,76.54028387700015],[64.75913258900005,76.47511743000013],[64.16546652700004,76.37528024600016],[63.752460485000086,76.38865558400016],[63.47010752700004,76.3251750730002],[62.94402357600012,76.26084765400014],[62.58260747800017,76.24604471000015],[62.215461511000115,76.3194059760001],[61.68558156400019,76.34923934900019],[60.93610748800012,76.2988206930001],[60.856197608000116,76.15259403300018],[60.955821556000046,76.08770888200019],[60.663764534000165,76.03830561000012],[60.40367860400005,76.1449026310001],[60.093063545000064,76.08292533000014],[60.19292453300005,76.02628897800008],[59.416915531000086,75.95560505900005],[59.12907762300006,75.88656952500008],[58.84261652700013,75.88689759300001],[58.42794751500003,75.80231999900019],[58.38595149800011,75.73723804100013],[57.95599356000014,75.69153454000019],[58.12554152400003,75.61741823200015],[57.442508616000055,75.50461742900018],[57.64785350900013,75.4551524650002],[57.605731596000055,75.36697333500007],[57.28578161100006,75.43393418000005],[56.68457049400013,75.33963559000006],[56.90889352500017,75.29003450500005],[56.51082252600003,75.14869013600008],[56.375358565000056,75.1435099520001],[55.99733355800009,75.24678103400015],[55.71608349100012,75.11583642800008],[55.84112556100007,75.00143417900017],[56.23763652000014,75.06142765100003],[56.299995533000015,74.99764991700005],[56.565780486000165,74.96207846100009],[55.82741947300008,74.88937349700012],[55.842151506000164,74.80183575000018],[56.36735954700009,74.79529686000006],[56.46791455800019,74.64035670900012],[56.10968358300005,74.70503566500008],[55.58401151900006,74.72895560500018],[55.45842747500012,74.63631327900009],[55.546428574000174,74.54124405700009],[55.73604951900006,74.55503195200004],[55.99375163600007,74.50211867400014],[55.31820259300014,74.45681297800019],[55.22614649800016,74.39091361700008],[55.643432507000114,74.368794278],[55.60682253300007,74.3111735550001],[55.13082447700009,74.31992493200005],[55.18060661200019,74.26207521600014],[55.445606516000055,74.2529189930001],[55.80308949000005,74.18135145300005],[55.55445860500015,74.1314280000002],[54.94357661600009,74.16776975300019],[54.601245608000056,74.07658470400014],[54.77509348900014,73.99694438700016],[55.096725554000045,73.8413707310001],[55.06663552700002,73.74888196199998],[55.082527616,73.68787344100008],[54.880573536999975,73.46125879800019]]],[[[107.69429757400007,78.19947658300003],[107.08509867100014,78.16398274400018],[107.4197005580001,78.0980599130001],[107.85900163600007,78.08316627700003],[107.69429757400007,78.19947658300003]]],[[[22.86553943900003,78.24914707099998],[22.45611146400006,78.20024017500015],[21.83750354000017,78.20829769800008],[20.934160521000024,78.12162127500005],[20.870273487000077,78.08023646700013],[21.352218503000188,77.96355987100003],[21.630559547000132,77.93604593900011],[21.55694548300005,77.85437569200019],[21.254714506000084,77.72604054000004],[21.185279490000084,77.59991804300012],[20.8833375210001,77.56631616600015],[20.89277655000012,77.44213173300017],[21.12054856700007,77.43407437700017],[21.619159488000037,77.48574428400008],[22.086942441000133,77.4921376640001],[22.436111573000062,77.56964294400007],[22.641374491000192,77.53964193300015],[22.40748754100008,77.419912984],[22.501943543000152,77.33241379400005],[22.77083047100018,77.26240160000009],[22.958047487000044,77.35073998700011],[23.390281447000177,77.37268448000015],[23.890558524000028,77.49685282000013],[24.175832575000072,77.66742773500016],[24.90859749500015,77.75437858100008],[24.290277573000083,77.90522182500018],[23.890277563000154,77.84660851700016],[23.657506579000028,77.86160877100014],[23.11277758799997,77.98771651600009],[23.05638347200005,78.05133449100009],[23.47303949800005,78.14635694200001],[23.219152489000066,78.22135921800003],[22.86553943900003,78.24914707099998]]],[[[106.88970158799998,78.29844506700005],[106.68609661099998,78.35347913400017],[106.09809855900005,78.25775428000009],[106.38150059600014,78.20859441700003],[106.609702604,78.29021889900014],[106.88970158799998,78.29844506700005]]],[[[21.227212475000158,78.61721471200008],[21.055822504000048,78.5485919030001],[20.171112456000174,78.48775085300008],[20.663888567000186,78.38636368800002],[20.843896476000168,78.22329728199998],[21.09944343700016,78.20246808400003],[21.778327471000182,78.25274843900007],[22.1633285690001,78.24357813400007],[22.242774593999968,78.476930654],[21.80499248500007,78.58999179900019],[21.227212475000158,78.61721471200008]]],[[[11.2649934800001,78.53110373300012],[11.271937552000168,78.60610550500007],[11.064162577000104,78.68443388800006],[11.183597489000135,78.72610921300014],[10.825835564999977,78.87666244400015],[10.488614501000143,78.89557000600013],[10.536655547000123,78.77306379700008],[10.900564591000148,78.61555174300008],[11.073324500000126,78.45498699900008],[11.322503562000179,78.44636570900013],[11.85388755800011,78.29636166100016],[11.872488510000153,78.40136478000011],[11.464435502000185,78.53581939200012],[11.2649934800001,78.53110373300012]]],[[[20.237222538000026,79.10585066600015],[20.123891495000066,79.04613798800005],[20.34249153000019,78.99001326700011],[20.829162599000085,79.05891133800003],[20.237222538000026,79.10585066600015]]],[[[103.40380065600004,79.29189840700013],[102.80650355300008,79.40894112400008],[102.43789662000012,79.39747384200018],[102.53299752600009,79.24949150900005],[102.40869859600014,79.22528172300014],[101.7520975160001,79.32280717800006],[101.77809851500018,79.24009891600014],[101.43229656100016,79.21303593000005],[101.28630057200007,79.10952747200008],[101.43139651200005,79.04787857400004],[101.1239015330001,79.00957562400004],[100.94660164900012,78.87373313600011],[101.357597543,78.79687661600013],[100.65830256900011,78.77749681800015],[100.47299964400008,78.68807414800017],[100.36939965600016,78.47999139000012],[100.07820161100005,78.42992393500009],[100.237701517,78.3688383010001],[99.98137654700008,78.31503955900013],[99.58210760700018,78.15674161700014],[99.50670652000014,78.08841586300008],[99.57454662700007,77.94494282600004],[99.90458658,77.92374683700012],[100.28130367400018,77.94521725000016],[100.61280056900006,78.0381041600001],[101.06089761600009,78.09433667200017],[101.45099658700019,78.19687450500004],[102.104896515,78.18951988800018],[103.36019866600014,78.23213348400014],[103.98130054199999,78.27855296700017],[104.43379959700013,78.34063034700011],[104.81970258700005,78.33479335800007],[105.05729651800016,78.37409509600013],[105.55950160000003,78.54904838200008],[105.39739961600009,78.77520000900012],[104.71700264800006,78.93729763400017],[104.26809658000013,79.01915932400004],[104.21099855200004,79.11342706900007],[103.686599532,79.119866382],[102.9166025340001,79.01637368200011],[103.05850262200016,79.13719429000002],[103.08699757300013,79.26987864400013],[103.40380065600004,79.29189840700013]]],[[[76.12542748800013,79.68830341900019],[76.43225057500007,79.58123215000006],[76.87424459100009,79.52223830300005],[77.46386755800012,79.53466715700006],[77.617843623,79.5872840510001],[76.76550264000008,79.6784235020001],[76.12542748800013,79.68830341900019]]],[[[16.819156516000135,79.87146795200005],[16.521669528000018,80.04341582300015],[16.02276255800018,80.00815013900012],[15.731107531000077,79.87285683400006],[15.647497544000089,79.7642523470002],[15.892498562000128,79.49587688200018],[15.973892542000158,79.3239286770002],[16.151107433000163,79.2272578400001],[16.13220557,79.0530663020001],[15.630001494000169,79.30337423800012],[15.48971659800003,79.33282522900004],[15.291664463000075,79.59978046300006],[14.845265590000054,79.76730369500007],[14.557785589000048,79.80534663900005],[13.890822465000099,79.52894499900003],[13.914719439000123,79.35754530500009],[13.274999511999965,79.59672961800015],[12.701395535000017,79.59700370600007],[13.015838442000188,79.6878306800001],[13.884723457000177,79.72562937500004],[13.8247145630001,79.87451997100004],[13.095836499000143,79.82812915400012],[12.050840490000155,79.68505375500007],[11.83999053000008,79.83591225400016],[11.238320588000136,79.75868173400016],[11.366101529000161,79.63423813200012],[10.963882493000085,79.63979248400017],[10.697785566000107,79.51339439000003],[10.918342440000174,79.44226874400016],[10.843886496999971,79.36392561000014],[11.129174462000151,79.24169382400015],[11.236380513000086,79.09225337500015],[11.916390572000125,79.1819662260001],[11.755265582000163,79.07502470900016],[12.109154564000107,78.9955677870002],[12.444166493000068,78.99140147800017],[12.251111482000056,78.89224239000015],[11.602489471000013,78.97557761800005],[11.646676518000106,78.86750689100018],[11.875279516000148,78.84390009900005],[11.641674533000185,78.73776760200008],[11.925548471000127,78.62637093600006],[12.355558545000179,78.58915126199997],[12.540279430000169,78.49887430900014],[12.584173445000147,78.3927579060001],[12.871102587999985,78.35358558500019],[12.979167448000055,78.20497041800013],[13.62777152100017,78.19328168600003],[13.757510475000117,78.24914707099998],[14.325269583000079,78.30524312600005],[14.364999469,78.38553941100014],[14.67472152,78.43803426500006],[14.385552566000172,78.49692149300017],[14.588062532000095,78.55275703900008],[15.240825537999967,78.60831799300018],[15.298052478999978,78.4997143440001],[15.464176436000173,78.4508208580001],[16.01445357700004,78.47859395900008],[16.309438566000154,78.56220260500004],[16.364711518000036,78.64778083100009],[16.831108439000047,78.67109744200008],[16.464155591000065,78.52470984900009],[16.40665255000016,78.42970215000014],[16.851388454000187,78.38358626000007],[16.818881589000057,78.33303064300014],[16.102500441000075,78.35552381600007],[15.76583258200003,78.33441918900013],[14.994994544000178,78.1330201610001],[14.552492584999982,78.09357324800004],[13.876935496000158,78.09189586200017],[13.588888543000166,78.04855806900002],[13.721661578000067,77.75965767100007],[14.47916149300005,77.75105113300009],[15.133879495000087,77.79660241800019],[15.600007524000034,77.88216438300003],[15.814715506000084,77.82939560900007],[16.66472246400008,77.85632968100015],[16.85527648300007,77.80354481300003],[15.66665555700007,77.74632139300007],[14.752227470000037,77.66187321500007],[15.913893537000092,77.56408875900013],[15.440556567999977,77.52519136400008],[15.00166251600018,77.56631616600015],[14.52693448600013,77.50103471900019],[14.32583955299998,77.58243087800014],[13.914161540000066,77.52686925400019],[13.968616585,77.40518782400005],[14.13749550600005,77.3007338880002],[14.467214431000116,77.17072017600009],[14.739726532000077,77.17545142500012],[15.072488592000127,77.11877668300008],[15.250548546000118,77.01488752000012],[15.72832758900006,76.9976595240002],[15.568610591000095,76.91154804100017],[15.978615576000152,76.74932083100009],[16.28054849300014,76.70764584100016],[16.331659494000178,76.60597033800008],[16.822500560000094,76.56818689800008],[17.198329508000086,76.69374395200003],[16.94361453400012,76.8143119290001],[17.32026658600006,76.97154972700014],[17.32583049300007,77.04293420600004],[17.6230524450001,77.43268583100019],[17.80055651100008,77.48740708600019],[18.284717535000084,77.50019552300006],[18.449153544000183,77.76188625200012],[18.333892485000092,77.89745431600011],[18.552486485000088,78.05438600700018],[18.859447537,78.03079430200012],[19.07109847200013,78.08467703100018],[18.91999052700004,78.173015921],[19.06499057900004,78.35775222900014],[18.965545500000133,78.45526259600007],[19.681383501000028,78.51137206200008],[19.57777747800003,78.56971094700009],[20.13167359000016,78.63694571200017],[20.619728510000073,78.6325058180002],[21.331935471000122,78.65527307900004],[21.534728578000056,78.8419471150001],[20.960836598000185,78.91446113900008],[20.516376459000128,78.93445164300016],[20.044445470000028,79.01308613200007],[19.670841582000037,79.14725039500013],[19.34806253700009,79.18391937700011],[18.978614564000168,79.15336935200008],[18.822778555000014,79.24949150900005],[18.88583360100006,79.44115478900011],[18.742488472000105,79.533384893],[18.35694355700008,79.62755389900013],[17.747493532000192,79.59923128100007],[18.098325466000176,79.71951008300016],[17.566944488000104,79.88924513100005],[17.03917543900002,79.956205808],[16.819156516000135,79.87146795200005]]],[[[91.98007966200015,80.11558702700006],[91.12626665000016,80.09436069500003],[91.52593959800004,79.96341608900019],[91.50950654200017,79.87255843800006],[91.7897715680001,79.82897639700013],[92.38503253900018,79.79973881000012],[92.19103959200004,79.6976961800001],[92.46734651600002,79.65351114500004],[93.13110356200008,79.67531716900004],[93.54810358100002,79.73425938200006],[94.05137651700005,79.88786429600009],[93.58453351100013,79.99104401600005],[92.70274355000004,80.07410331200003],[91.98007966200015,80.11558702700006]]],[[[51.28417548400006,79.93786335400006],[51.62694955900014,79.96915350200015],[51.19001050200012,80.09917526100014],[50.853736593,80.09278908900006],[50.19703660699997,79.9899446450001],[50.33985149600011,79.9428918260001],[50.994914497000195,79.91579765900019],[51.28417548400006,79.93786335400006]]],[[[59.304695594000066,79.97784436199998],[59.743347577000065,80.06768663000008],[59.37854351400017,80.14038488800003],[59.00013361000009,80.11508327500013],[58.600814545000105,80.03345074600014],[59.057266506000076,79.96097377000018],[59.304695594000066,79.97784436199998]]],[[[97.87951659100008,80.16402923099997],[97.72705061000005,80.1953884450001],[96.74944258800008,80.19461848300017],[96.56915254400013,80.11734974100006],[95.87029259100007,80.12035633000005],[95.51934062800018,80.07990208000001],[95.13777963100006,80.11783790300012],[94.56773360400018,79.90030086100012],[94.82745358000005,79.83600395200011],[94.344436518,79.78851443600013],[93.7208326450002,79.58979359300008],[94.05679357300005,79.58886974000012],[94.17839856000018,79.5153636340001],[94.60759760100012,79.45075324200013],[94.5331575830001,79.3306427490001],[94.9294665380001,79.09955619200014],[95.28624761200007,79.05111348600019],[95.74619264700004,79.100853208],[95.94570960300013,78.99920737700006],[96.49517051400016,79.03101636400015],[97.08448754199998,78.95445790500008],[97.52455154100011,78.84333515800012],[98.48312359100015,78.79213078200002],[98.79675261500017,78.81868230499998],[99.49446860600011,78.81710315400016],[100.14649953700007,78.93961724200005],[99.94204765200016,79.0939555720002],[99.48075061600014,79.21553071900013],[99.64954353800005,79.30194713500009],[99.97651655200019,79.3632071130001],[99.97453255599999,79.750884552],[100.27580263100003,79.78310559400006],[99.53588861900016,80.0089596630001],[98.95200356700019,80.0721955910002],[98.48416160600016,80.02011379700019],[98.6347126570002,79.97050416200017],[98.42855857500018,79.87982269800017],[97.93798858000008,79.9022618910002],[98.15033755900009,80.06870184600007],[97.87951659100008,80.16402923099997]]],[[[33.50888848300008,80.1912068810002],[33.28665556400017,80.24176400700014],[32.87054855300005,80.19259660100005],[31.493602523000106,80.11008665400016],[31.55471246400009,80.06954037100007],[32.28749046000013,80.08731855600013],[33.50888848300008,80.1912068810002]]],[[[50.345016593000025,80.18170884400007],[50.297531602000106,80.25584107800006],[49.93002655400011,80.25893048000006],[49.53611750599998,80.17798526700011],[49.955078554000124,80.06819088500015],[50.09145748300011,80.16105415800013],[50.345016593000025,80.18170884400007]]],[[[56.24251160200009,80.350481817],[56.030559590000166,80.30991340600008],[55.956584601000145,80.18123509900005],[55.75770148400005,80.13764534600006],[56.03782250900008,80.07157717400008],[56.72677253800015,80.10674462200018],[56.98186151300007,80.16624238800006],[57.003250621,80.31698706100013],[56.88479253600008,80.35368672200008],[56.24251160200009,80.350481817]]],[[[53.963951571999985,80.24925591900006],[53.81610150500018,80.32351069700007],[53.316154508000125,80.40663134800008],[52.808822551000105,80.39987084000006],[52.82073960600013,80.33599336200018],[52.38707351400018,80.2790894600002],[52.41271258200004,80.20742854600007],[52.81271762100016,80.16547175600004],[53.54679850000008,80.17812206000013],[53.963951571999985,80.24925591900006]]],[[[58.349910488000035,80.18338656500009],[58.042571579000025,80.2729995040001],[58.58000160900019,80.3560442160001],[59.080604574000176,80.36237724600005],[59.22346455900009,80.4166871180002],[58.90780258799998,80.46619751100019],[57.82762957400007,80.51354151800012],[57.19921147100001,80.50128818100012],[56.95567661500013,80.46707559900017],[57.160835597000016,80.36636736800017],[57.18078251500003,80.18614052400011],[57.58939761300013,80.10711007300011],[57.845798523000155,80.17890040300011],[58.349910488000035,80.18338656500009]]],[[[23.30112247300019,80.40122854100008],[22.40832556400005,80.42594912100014],[22.53276849500014,80.3162321870002],[22.37609446400012,80.10286748900012],[21.856119579000108,80.14287984500015],[21.872493460000157,80.25650458900014],[21.293064562999973,80.2567791800002],[20.826665462000165,80.21316629400013],[20.329446439000037,80.42039543900017],[19.701118525000084,80.49901383500008],[19.4847085130001,80.38900621800013],[19.91693157700007,80.37455514600015],[19.827762544000166,80.27956203100013],[19.385539535000134,80.31343866600008],[18.787778577000097,80.19232083600008],[18.14222149300008,80.18287543700006],[18.239711576000104,80.04147725700017],[18.736104479000062,80.02315005800017],[18.812778441000034,79.97535644600003],[18.188602587000048,79.89786793000019],[18.471658451000167,79.78201427000016],[18.707494529000087,79.74645924300006],[19.57028053600004,79.7111786390002],[20.39192950400013,79.79339790000006],[21.699447560000067,79.83313516200008],[21.952506437000068,79.7650766230002],[21.77609855600008,79.7006340370001],[21.279987452000057,79.71563378800016],[20.49083545900004,79.68366470600017],[19.642768576000037,79.6092272030001],[19.67333050400009,79.55227736800009],[20.273321551000038,79.45421748299998],[20.743339454000136,79.45865821500007],[20.968877525000153,79.36392561000014],[21.37499649300014,79.39421529300012],[21.694431494000185,79.3625363930002],[22.14637751099997,79.40505024400017],[22.65581852200006,79.35920995100014],[22.661382597000113,79.2911505740002],[22.926660445000095,79.21836078500019],[23.759162468000113,79.17335968800012],[24.23250044400004,79.22420515100004],[24.281671536999966,79.30419834700018],[24.776948474000164,79.36781699200003],[25.149164486000018,79.32560706900017],[25.632770461000177,79.39255249100006],[25.97359457000016,79.50394882300003],[25.81611855800014,79.61755898300004],[26.44971651000003,79.70924040700004],[26.62776556800003,79.77812288800004],[27.18860860100017,79.86701146200011],[27.101121480000018,79.96675007500016],[27.236650484000165,80.09510165600017],[26.800001608000116,80.17149180700017],[25.94610544800014,80.18508893000012],[25.543617521000158,80.23370614800018],[23.960828545000084,80.2767690140002],[23.55750443900007,80.12786400100015],[23.047508546000074,80.24426600500004],[23.308334597000055,80.28261438500004],[23.30112247300019,80.40122854100008]]],[[[54.37319162400013,80.47069976600011],[54.112342606000084,80.57805183000016],[53.812931469000034,80.49448928400005],[54.37319162400013,80.47069976600011]]],[[[57.90044350300013,80.56789782400006],[58.02633650300004,80.65146070500003],[57.23835361700003,80.63621553200011],[57.292468525000174,80.56793537500005],[57.90044350300013,80.56789782400006]]],[[[56.76245463600003,80.67245837900009],[56.405006530000094,80.76132298100009],[55.790859623000074,80.74587345700007],[55.50967057500003,80.69620129300012],[55.645149623000066,80.63417085100014],[56.47316347300011,80.63143902100006],[56.76245463600003,80.67245837900009]]],[[[48.536548561000075,80.82311822700018],[48.375011517000075,80.84907597500012],[47.279933468000195,80.88653805300004],[46.913101487000176,80.79253098600009],[46.04825956700017,80.70959255700006],[45.69395048400003,80.71339291200013],[44.88163359200007,80.64558499100008],[44.874198509000166,80.60236236600008],[45.44557155900014,80.54976793499998],[45.96849854900006,80.55449851400016],[46.21399661500004,80.46894493100012],[46.63590960200003,80.54600731100004],[47.03688861900008,80.5464039420001],[47.278514580000035,80.69363056300006],[47.91927755100011,80.75129101600004],[48.49301949400012,80.65065168400014],[48.63409061300001,80.72121322700019],[48.28572061099999,80.76812942200007],[48.536548561000075,80.82311822700018]]],[[[54.62402762100004,80.89965372000012],[54.17228360800004,80.8831046580001],[53.96116660100006,80.82838340300009],[54.506717521000155,80.79480415800003],[54.97849260700008,80.71841350400007],[55.68857961700013,80.799449912],[55.040058524000074,80.90110429200007],[54.62402762100004,80.89965372000012]]],[[[62.166042480000044,80.87393468800019],[61.77267859000011,80.92136134100008],[60.94864262400006,80.8915058400001],[60.37982957500003,80.81712114300012],[59.74583063200009,80.85025866200004],[59.27340662000012,80.68072813200018],[59.35827255200019,80.49977692400006],[59.67074956700003,80.43191686800003],[60.349010490000126,80.50252384100008],[61.011566577,80.43542653800012],[61.35119257700006,80.4606196900001],[61.37521360300019,80.5322578040001],[62.10003247800012,80.67109145800009],[62.02278854600007,80.74929796700008],[62.166042480000044,80.87393468800019]]],[[[58.625648616000035,80.79748200800009],[59.036746601000175,80.85112719400013],[58.79752758700016,80.93874239000013],[57.82724350400014,80.81943371000006],[58.35425952200018,80.75714208800014],[58.625648616000035,80.79748200800009]]],[[[49.925785479000126,80.91691340000017],[48.990535572,80.84400945000004],[48.8596035380001,80.78623517100004],[49.54867946400003,80.75444160600017],[49.22784854100013,80.60912119800008],[48.93598162000012,80.55227144200012],[48.43461254900018,80.60516242500017],[47.93613858700007,80.60909873399999],[47.54456758600003,80.53608799900019],[48.17071955900019,80.49174974300018],[47.58172959200016,80.44214044300008],[47.817501465000134,80.34533968699998],[47.26297754900014,80.35606718200006],[47.091373504000046,80.41442886500016],[46.55562957700005,80.31487348100006],[46.93860661300016,80.19607525800018],[47.381206472000144,80.21134255900017],[47.6296955360001,80.29486034600018],[48.01891759200004,80.2027747460001],[48.014156504000084,80.12664259000007],[48.38778352600019,80.10775883200006],[48.43502058000007,80.2167453670001],[48.84807557200003,80.18454645300011],[49.128032479000126,80.23133256000011],[48.86608157600017,80.31142483000008],[48.500656581000044,80.33330042400013],[48.84003447700019,80.43085555100004],[49.52660756600005,80.40665431500008],[49.6527406240001,80.52262800400018],[50.47106147300019,80.58205100300017],[51.06584149100013,80.60145443900018],[51.65867254800003,80.71407218100012],[51.69303851900003,80.77722412200012],[51.11415059000018,80.84501661899998],[50.62424846500011,80.75849258000011],[50.23538247200008,80.77471424499998],[50.506423550000136,80.87903859699998],[49.925785479000126,80.91691340000017]]],[[[79.85583457100017,80.98374365500001],[79.24234061400017,80.9482188020001],[79.1030196370001,80.88721749000018],[79.42783364000002,80.80471525500019],[80.3367915290001,80.84182680200013],[80.60626250800016,80.88685153600011],[80.6597675490001,80.96830050100016],[79.85583457100017,80.98374365500001]]],[[[57.89049150100004,80.87666500900008],[58.22574952400009,80.93865035700009],[57.558784556000035,81.05850956100005],[56.875949628000114,81.08738924100015],[56.90208859300003,80.97897519000009],[57.245468512000116,80.9542469000001],[57.59696563400007,80.87248428400011],[57.89049150100004,80.87666500900008]]],[[[55.991710475,81.05075814400004],[55.34075946799999,81.06324081000008],[54.55250551200015,81.15134299400006],[54.29541762100018,81.14616247500015],[54.34324258100003,81.015019553],[55.290851605,80.9696970940002],[55.94495353700006,80.83169408700007],[57.20703849200004,80.71665783000009],[57.59626758900009,80.80569107700012],[56.86606552000012,80.89786116600015],[56.56359448500018,80.97251978400016],[55.991710475,81.05075814400004]]],[[[61.556957571,81.04951376700018],[61.73624463600004,81.16444374100018],[61.15245849100012,81.16895337300008],[60.62824655400004,81.12374574600017],[60.03569763200011,81.00803759600007],[60.52506247600007,80.96449360900016],[61.07686948200018,80.97992184200012],[61.556957571,81.04951376700018]]],[[[64.22469355800018,80.74182902100011],[64.94438958100011,80.84038461200015],[65.41295657700016,80.96406713700003],[65.1954346220001,81.04878890000015],[65.39303564300019,81.12303546300006],[65.15200060600006,81.19304748900004],[64.61201459800003,81.2323428570001],[64.05256648200009,81.14837496200016],[64.17366050800007,81.0694284980001],[63.84489058100007,81.0087698390002],[63.04740848400019,80.97934181500017],[62.56077563700006,80.831038455],[63.027446479000105,80.69058592100004],[64.22469355800018,80.74182902100011]]],[[[91.51341250800004,81.03065264100013],[92.00685162800016,81.1863649330001],[91.59179654700017,81.23502741300018],[90.82259365000016,81.21313857500007],[90.34665661400015,81.15384616600005],[90.3817516430002,81.1076767990001],[91.20868657400018,81.01612579700009],[91.51341250800004,81.03065264100013]]],[[[57.7952885040001,81.15198404200015],[58.182659501000046,81.22033242800012],[57.82542748100008,81.26676079500015],[57.356555551000156,81.22331571500013],[57.25292957900007,81.13372624500005],[57.7952885040001,81.15198404200015]]],[[[97.95879363700016,80.81097871600019],[97.50965857500012,80.84403241600018],[96.84224651700015,80.953742477],[96.42935161900016,81.16198633500005],[96.11704257700006,81.26670044600007],[95.48928865500011,81.28117414800016],[95.29309059800016,81.16719015600012],[94.87071962300007,81.07876644200019],[94.07000764400016,81.01620156900015],[93.43308257900014,80.99442588800008],[93.55821953200012,80.90649838200017],[93.0965726350002,80.85827679000016],[92.78063154700016,80.76541318200003],[93.58773757700004,80.73753363100013],[93.07731655400005,80.58001302700012],[92.23079663500016,80.46836440100003],[92.65818065900015,80.41265911000016],[92.00068657100013,80.38004864500016],[92.00071758400009,80.28965551900018],[92.36528058400006,80.27264947600008],[92.50892662300004,80.18552277700007],[93.03320360300012,80.13885066400013],[93.73162065700018,80.02626343200018],[94.38762662099998,80.07022735200013],[94.810752638,80.15620187400009],[95.25428054200012,80.15543023600003],[95.94638065800012,80.22915108600006],[97.24120365100015,80.22052962800012],[97.5733796470002,80.32721046900014],[97.30506151500015,80.36472686200017],[97.15471665900003,80.5288089870001],[97.41216262400013,80.66372141800008],[97.9258266060001,80.67431899300004],[97.95879363700016,80.81097871600019]]],[[[57.350482527000054,81.38270531500007],[56.50188054400019,81.44558450900013],[56.37942462700005,81.32561013800012],[55.68431456899998,81.37527375200006],[55.36957159000008,81.31826239400004],[55.630020624,81.19993003700017],[56.43123652300011,81.1885234400001],[57.01992457300014,81.2632132390001],[57.90548756400011,81.32610601100004],[57.350482527000054,81.38270531500007]]],[[[59.15763862300014,81.33453837300016],[59.38560057300009,81.389039352],[58.876232485000116,81.47485947900009],[58.54787461300015,81.40761767200013],[58.73167751200003,81.342762864],[59.15763862300014,81.33453837300016]]],[[[58.494815489000075,81.4451947500001],[58.3911395610001,81.4894636040001],[57.48173860500009,81.63590500800018],[56.787177562000124,81.58206821200008],[56.825527619000184,81.51959369600013],[57.26345456800004,81.46970310000006],[58.293357619000176,81.41520195400005],[58.494815489000075,81.4451947500001]]],[[[63.72271361300017,81.61887482499998],[63.481872534000104,81.73641492400003],[62.73753354700017,81.74642442500016],[62.21361950300013,81.71526419700018],[62.720916592000094,81.62201150099997],[63.72271361300017,81.61887482499998]]],[[[58.279209637,81.72690716300019],[58.61901048400006,81.78146161900014],[59.28467156300019,81.79997942200009],[59.072830527000065,81.90184687100009],[57.95565761300014,81.85946310700012],[58.279209637,81.72690716300019]]]]},"properties":{"objectid":42,"eco_name":"Russian Arctic desert","biome_num":11,"biome_name":"Tundra","realm":"Palearctic","eco_biome_":"PA11","nnh":2,"eco_id":778,"shape_leng":431.3518737,"shape_area":65.45524143,"nnh_name":"Nature Could Reach Half Protected","color":"#558CB8","color_bio":"#9ED7C2","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":161815.25868581547,"percentage":1.893649082202602}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-136.12362942199996,69.00552987300006],[-136.02897070699993,68.9371107290001],[-135.81593369399997,68.89288778000014],[-136.12362942199996,69.00552987300006]]],[[[-138.87893427099988,69.59232751500019],[-139.14489555999984,69.63682393800008],[-139.2350910749999,69.5711171270001],[-139.10561599399995,69.51574485400005],[-138.87893427099988,69.59232751500019]]],[[[-145.40505931799996,70.03549202300002],[-145.78307436799994,70.03345956100009],[-146.33014077899992,69.96339168500015],[-146.55617942099997,69.95412009100005],[-147.06989049099994,69.97203813400012],[-147.2327874369999,69.94860601400006],[-147.71305893899995,69.73624077900018],[-147.93650747199993,69.73859850600013],[-147.87823123299995,69.86891207200017],[-147.90915678599998,69.95394218600018],[-148.06104362499997,70.04139157700001],[-148.41674233299995,70.07473013700013],[-148.68018612299997,70.05207951500006],[-149.15196212499998,69.75883442800006],[-149.46349584399994,69.73732788100006],[-149.68188032699996,69.76421757300005],[-149.71866303099995,70.09901475900006],[-149.77910666699992,70.1808840540001],[-150.30172664899993,70.16873093700019],[-151.50662959299993,70.1527918760001],[-151.63704815799997,70.12360645500013],[-151.99838186299996,69.93923563300007],[-152.68399675799995,69.90574186700007],[-153.3704441159999,69.91235858200014],[-153.87324110999995,69.93344046800007],[-154.42209670699998,70.00499688000008],[-155.75634128399992,69.98343855200017],[-156.13756793699997,70.0306941830001],[-156.80467076999994,70.06335660600013],[-158.34600695499998,69.99410500900012],[-158.63063157999994,70.03133405900007],[-159.0934307859999,69.99243434599998],[-159.33701534699992,69.94473386600015],[-159.39829676199994,69.77878376500018],[-159.57673195599997,69.72827825400009],[-160.0834576729999,69.71180471900016],[-160.63750037499997,69.75438053800013],[-161.6632205889999,69.75165783100016],[-162.06709949999998,69.62761724500007],[-162.235692614,69.50802842800005],[-162.70668633099993,69.42841025000018],[-163.0898301789999,69.42149565600005],[-163.09444839999992,69.38218961100011],[-163.63045701199997,69.09978954400015],[-163.96600225799997,68.98604404300005],[-164.25243849299994,68.92626218100008],[-164.604665702,68.92340757500017],[-165.34373821299997,68.85868927100017],[-165.79582903899995,68.85638010300005],[-166.22250170899994,68.87224366400017],[-166.19656521999997,68.77288913400014],[-166.23325586699997,68.5755436930001],[-166.35156472199992,68.4076346010001],[-166.6293009409999,68.3327709240001],[-166.24601908699998,68.24611645300013],[-165.99220081299993,68.13550741700004],[-165.63479173499994,68.09480748200008],[-165.3069644169999,68.01170754800006],[-164.804382463,67.82934401500006],[-164.686591566,67.82336221800011],[-164.52330965399997,67.72150771100013],[-164.1065732149999,67.60259870400017],[-163.8748094,67.41875330800019],[-163.75487287099992,67.25817152600007],[-163.73821817999993,67.12855336000013],[-163.57424543799996,67.09401702800005],[-162.97102726299994,67.02214441100006],[-162.68773641299998,67.03929900300017],[-162.44745456899997,66.98603541300008],[-162.25793745899995,66.99124638900008],[-162.34886681199998,67.1312715250001],[-162.4717749369999,67.19966509500006],[-162.30744220999998,67.27708528200003],[-161.8663972889999,67.37947177400008],[-161.61856839799992,67.46811015400016],[-161.8216375369999,67.48569001300018],[-161.69251455399993,67.56658485600019],[-161.71163996599992,67.65120607800009],[-161.88255542699994,67.6314692680001],[-162.10041904499994,67.66957309800011],[-162.299060654,67.75774451100006],[-162.064911881,67.7913495840001],[-161.43701909799995,67.92976178300012],[-161.2324229669999,67.94348968499997],[-160.92244157199997,67.8521886100001],[-160.78986764599992,67.77376317300013],[-160.45282559099996,67.77265781000006],[-160.567826834,67.88753061900019],[-160.2845237079999,67.876940219],[-159.82642549799996,67.93935209900013],[-159.3514843259999,67.96178098800004],[-159.23629262699995,68.00175410000003],[-158.9545462989999,67.90816815700015],[-158.7545094159999,67.66200424500016],[-158.4767560159999,67.62924235600002],[-157.85608327099996,67.60111719400015],[-157.89441260899994,67.6985825500002],[-157.79949104199997,67.82312962400005],[-156.84425553099996,67.87721513500003],[-156.77424589899994,67.93419555300017],[-157.22578582499992,68.01880352400013],[-157.1218906389999,68.13383525799998],[-157.36903940599993,68.09875515300013],[-158.21741803299997,68.2385195670002],[-158.73593267999993,68.35063989700006],[-158.90795983099994,68.43068164300013],[-159.47127777099996,68.48458618],[-159.74708336699996,68.4898461950001],[-160.01783757099992,68.52730758200005],[-160.13897942499997,68.3546402070001],[-159.94394113599992,68.12147659800007],[-159.93760634199998,68.0655597390001],[-160.22347054399995,68.02873337100004],[-160.474991585,68.06384262600005],[-160.7066535239999,68.12706373400016],[-160.94882359899995,68.15425954500017],[-160.95646992099995,68.0755835430001],[-161.290486771,68.06279068700013],[-161.29426626599997,68.38067082700002],[-161.43350689799996,68.42363314400018],[-161.61683510199995,68.40356469300013],[-161.960157955,68.15121403500007],[-162.20082100799993,68.14718732900013],[-162.32802423199996,68.3013851720001],[-162.822022977,68.1447568370001],[-163.04379007099993,68.2361497920001],[-163.2976494989999,68.13719503400017],[-163.52051924499995,68.16011465200012],[-163.87223042499994,68.30121851000018],[-163.83106663499993,68.37041178800001],[-163.42840059399992,68.44304334300011],[-163.1203913349999,68.54146457300016],[-162.69833898699991,68.73046448800017],[-162.42214563899995,68.60214731299999],[-162.15473386799997,68.60563303000004],[-162.14995553299994,68.69540873900019],[-161.777462893,68.72043667100013],[-161.06019146799997,68.80909544600007],[-160.85991560699992,69.00514306900004],[-160.62163300899994,69.0551133670001],[-160.158826541,69.05858668000019],[-160.24949416899995,68.93625213500013],[-160.21701983699992,68.87388043000004],[-159.607865561,68.91341047800017],[-159.38604998399995,68.81801999800007],[-158.9744394489999,68.79387098600017],[-158.1386344169999,68.79186622700013],[-158.0161408879999,68.60634738000016],[-157.86322169199997,68.60193881900017],[-157.50397530799992,68.69197791200008],[-157.18212545699993,68.66159596400018],[-156.63227976999994,68.65314974300009],[-156.60705572099994,68.60374718700007],[-156.86501605299995,68.52635109300002],[-156.85884994199992,68.43330562800008],[-156.40499375499996,68.45931748600003],[-155.98901886499993,68.55689696100018],[-155.2148209819999,68.52547953900006],[-154.69428216399996,68.54983718700015],[-154.28506130199995,68.61892799700007],[-153.814620349,68.76619100500011],[-153.63007402299993,68.74598079900017],[-153.63745666199998,68.57052534899998],[-153.27332030699998,68.59850117100012],[-153.02506363099997,68.66993983300017],[-152.93308885499994,68.574611071],[-152.7811757229999,68.56322325800005],[-152.62180062199994,68.6552971500002],[-152.437552,68.62596231600003],[-152.23391637899996,68.52808666700008],[-152.04779703099996,68.47991698900012],[-151.944739569,68.58046359800011],[-151.73060650499994,68.66239825900004],[-151.27523643799995,68.72008839300008],[-151.22208309499993,68.64968864900004],[-150.67795925099998,68.68909635000006],[-150.25123141899994,68.83892843900009],[-150.08052625199997,68.78315323600015],[-149.9549753579999,68.81927166400004],[-150.04899314199994,68.90007430600019],[-149.89570748399996,68.95507863100016],[-149.523883322,68.90387402900006],[-149.08527856299992,68.91073186400001],[-148.98222565199998,68.86921708200003],[-148.52753887699996,68.81398813400006],[-148.179323395,68.95309543900004],[-147.51462056199995,69.23747826800007],[-147.36046936599993,69.32218202200005],[-146.74191205299994,69.42117948300012],[-146.4776472329999,69.56573936100011],[-146.18771914699997,69.59033396000018],[-145.97645805699995,69.64704825100006],[-145.45662730299998,69.64979486800019],[-144.62637061999996,69.69689935800011],[-144.29746339899992,69.60098749000002],[-144.0290819969999,69.56146846400014],[-143.1380102299999,69.5341808500001],[-142.71740187399985,69.49163092800006],[-142.0599592029999,69.45708573900004],[-141.4442795529999,69.43752370400017],[-141.00269500499996,69.51107436900008],[-140.18591284699994,69.55799928800013],[-140.00790528999994,69.52271276500005],[-139.90803402699999,69.40198511699998],[-139.72320746399993,69.35746874500018],[-139.29339670399997,69.19621340800012],[-139.20315423799997,69.2280645300001],[-138.94729731299998,69.13536067600006],[-138.93629156499992,69.04497442500019],[-138.77419404099993,69.02563358800018],[-138.47636616699998,68.92008297900009],[-138.1080446599999,68.87341222200001],[-137.86184647599993,68.87052099300018],[-137.85393785899998,68.7927076380002],[-137.48283947999994,68.71453200200017],[-137.22125336099998,68.71811845300016],[-136.76585828099996,68.61574031999999],[-136.43809232299992,68.49746626500018],[-136.185694077,68.48106908500006],[-136.1717598599999,68.55836059100017],[-135.89706428799997,68.53748372000018],[-136.0289606199999,68.65251917900014],[-135.72328568199993,68.62632935900012],[-135.83786807899992,68.71984042700018],[-135.8728347349999,68.83163738700011],[-136.13760570199997,68.8826177150001],[-136.527779115,68.90435013300004],[-136.7551209059999,68.86258372600008],[-137.00696606499992,68.93929963100004],[-137.21116802999995,68.93291870600012],[-138.08152255099998,69.13286605400009],[-138.27940231999992,69.20618465200005],[-138.59921916399992,69.248278734],[-138.74308622099994,69.34629232800012],[-139.0688808939999,69.47562590100017],[-139.5244906609999,69.54083322600019],[-139.86849399499994,69.61338695700005],[-140.38086358799995,69.58933904200012],[-140.94329904199998,69.63690742900013],[-141.18699497799986,69.68385532600018],[-141.37971337699997,69.62044808300004],[-141.470940773,69.69789351600014],[-141.69382271899997,69.77209347200005],[-142.254252845,69.85851152000009],[-142.62882037799983,69.80878596200017],[-142.885908998,69.79680138500004],[-143.93542793799986,69.92679583800009],[-144.4086000229999,69.9300894800001],[-144.5689435799999,69.98954393600013],[-144.6295595429999,69.9707838280001],[-145.25220505899995,69.99883825800015],[-145.40505931799996,70.03549202300002]]]]},"properties":{"objectid":43,"eco_name":"Arctic foothills tundra","biome_num":11,"biome_name":"Tundra","realm":"Nearctic","eco_biome_":"NE11","nnh":2,"eco_id":408,"shape_leng":93.6503392114,"shape_area":29.269386725,"nnh_name":"Nature Could Reach Half Protected","color":"#4D99B3","color_bio":"#9ED7C2","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":129689.06987129412,"percentage":1.5176911629225296}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[136.2255899940002,-13.663110006999943],[136.16105999400008,-13.750660006999965],[136.25541999400002,-13.828290006999964],[136.27107999400027,-13.736810006999917],[136.2255899940002,-13.663110006999943]]],[[[136.7261299940002,-13.650760006999917],[136.58941999400008,-13.724880006999967],[136.60095999400005,-13.805890006999846],[136.43463999400012,-13.880790006999916],[136.40863999400005,-13.977700006999896],[136.4433499940003,-14.115250006999815],[136.4023199940001,-14.176340006999965],[136.491599994,-14.237790006999887],[136.62522999400005,-14.26490000699988],[136.72735999400015,-14.263160006999897],[136.93476999400013,-14.299030006999942],[136.95214999400002,-14.243260006999947],[136.762989994,-14.196680006999884],[136.69981999400022,-14.11140000699993],[136.77804999400007,-14.024890006999897],[136.79306999400012,-13.913890006999907],[136.85957999400023,-13.90797000699996],[136.91005999400022,-13.768490006999969],[136.8371199940001,-13.748170006999885],[136.8405399940001,-13.836860006999927],[136.7212199940002,-13.835610006999957],[136.68281999400017,-13.730560006999895],[136.7261299940002,-13.650760006999917]]],[[[135.52679999300005,-12.064330007999956],[135.4693799930003,-12.110170007999898],[135.397269993,-12.082500007999954],[135.30545999300034,-12.12472000799994],[135.26905999300004,-12.180000007999979],[135.30967999300015,-12.241000007999958],[135.36834999300004,-12.181350007999924],[135.4280799930001,-12.182730007999908],[135.56953999300003,-12.100600007999901],[135.52679999300005,-12.064330007999956]]],[[[135.88086999300003,-11.760210007999945],[135.87085999300018,-11.83419000799995],[135.73361999300005,-11.939340007999931],[135.59379999300018,-11.952530007999883],[135.55381999300016,-12.049080007999919],[135.73461999300002,-12.00233000799983],[135.8282099930002,-11.929210007999927],[135.9381699930002,-11.803100007999944],[135.88086999300003,-11.760210007999945]]],[[[132.5534899940002,-11.636050006999938],[132.50308999400022,-11.682900006999944],[132.59282999400023,-11.729960006999931],[132.64235999400012,-11.651380006999943],[132.5534899940002,-11.636050006999938]]],[[[136.36173999300001,-11.55191000799988],[136.2644499930002,-11.572200007999925],[136.26621999300005,-11.658610007999869],[136.3777399930002,-11.58416000799997],[136.36173999300001,-11.55191000799988]]],[[[130.35389999500023,-11.339000005999935],[130.25118999500023,-11.346610005999935],[130.1786999950001,-11.433820005999905],[130.19935999500012,-11.508710005999944],[130.19646999500026,-11.654440005999902],[130.15650999500008,-11.704890005999971],[130.06900999500021,-11.686460004999901],[130.04949999500013,-11.823960004999947],[130.1335399950001,-11.823360004999927],[130.31110999500004,-11.770950005999964],[130.51115999500018,-11.83035000599989],[130.6057499950001,-11.826960005999979],[130.639199995,-11.7661800059999],[130.5512399950003,-11.69035000599996],[130.48503999500008,-11.66969000599994],[130.46501999500026,-11.577200005999941],[130.37620999500018,-11.507550005999917],[130.403249995,-11.44894000599993],[130.35389999500023,-11.339000005999935]]],[[[130.39829999500023,-11.165410005999945],[130.36532999500002,-11.257900005999943],[130.42668999500017,-11.427290005999907],[130.43171999500032,-11.499250005999897],[130.4934999950002,-11.566440005999937],[130.4940399950001,-11.65663000599983],[130.5572599950001,-11.674250005999966],[130.6859899950001,-11.795800005999922],[130.85295999500033,-11.850390005999884],[130.965569995,-11.938570005999907],[131.08231999500015,-11.835700005999911],[131.28129999400005,-11.740020005999895],[131.38579999400008,-11.58845000599996],[131.4552799940002,-11.547360005999906],[131.53813999400006,-11.415550005999933],[131.43313999400016,-11.310510005999959],[131.25175999400005,-11.192650005999951],[131.0404699940002,-11.318570005999845],[131.03266999400034,-11.366780005999942],[130.90978999400022,-11.310930005999978],[130.85158999400005,-11.353220005999844],[130.65722999500008,-11.400010005999945],[130.60319999500018,-11.321660005999888],[130.49815999500015,-11.268920005999973],[130.39829999500023,-11.165410005999945]]],[[[135.6486685870002,-14.420222219999914],[135.78959999400013,-14.232040006999966],[135.87905999400016,-14.169370006999884],[135.91424999400033,-14.033930006999924],[136.01620999400006,-13.824040006999951],[136.03466999400018,-13.715470006999965],[135.91326999400007,-13.745090006999874],[135.84458999400022,-13.615320006999923],[135.86170999400008,-13.436380006999968],[135.91871999400018,-13.269850006999945],[136.00033999400011,-13.213450006999949],[136.04902999400008,-13.24293000699987],[136.10774999400007,-13.17232000699994],[136.20088999400002,-13.247140006999928],[136.2431399940001,-13.169320006999953],[136.31019999300008,-13.165950006999822],[136.30854999300004,-13.072440007999944],[136.36473999300017,-13.056420007999975],[136.36637999300012,-13.196570006999877],[136.39184999300005,-13.254470006999895],[136.47239999300007,-13.215010007999979],[136.52914999300015,-13.146610007999925],[136.53542999300032,-13.023520007999878],[136.63528999300001,-12.952390007999895],[136.5590199930001,-12.913600007999946],[136.47797999300008,-12.832170007999935],[136.58214999300003,-12.766690007999898],[136.67842999300024,-12.668040007999934],[136.9269099930002,-12.341810007999982],[136.87447999300002,-12.220970007999938],[136.7791199930001,-12.161350007999886],[136.7406699930002,-12.273100007999915],[136.66333999300014,-12.28166000799996],[136.6001799930001,-12.20289000799994],[136.58902999300005,-12.09302000799994],[136.41490999300004,-11.958330007999962],[136.33160999300003,-12.059420007999961],[136.26695999300023,-12.072910007999951],[136.1973099930002,-12.162180007999837],[136.22826999300014,-12.213850007999952],[136.33916999300027,-12.204600007999943],[136.3635999930001,-12.256990007999946],[136.30411999300009,-12.400170007999861],[136.22311999300018,-12.462110007999911],[135.99617999300006,-12.43958000799995],[136.02145999300024,-12.315170007999882],[135.8961099930002,-12.186380007999844],[135.67425999300008,-12.23817000799994],[135.6519699930003,-12.167750007999928],[135.772449993,-12.047050007999928],[135.72708999300016,-12.009620007999956],[135.58264999300025,-12.091290007999817],[135.53413999300005,-12.151610007999864],[135.39349999300032,-12.179630007999833],[135.34718999300003,-12.243070007999904],[135.21919999300007,-12.29670000699997],[135.1254799930001,-12.237500006999937],[135.05583999300006,-12.262260006999895],[134.97056999300014,-12.158530006999968],[134.8420299930001,-12.11379000699992],[134.7714299930003,-11.958230006999884],[134.6878099930001,-11.966610006999929],[134.6096799940001,-12.047790006999946],[134.41950999400012,-12.065910006999957],[134.28548999400016,-11.983020006999936],[134.22735999400015,-12.04141000699991],[134.17357999400008,-11.960850006999863],[134.037799994,-11.855000006999944],[133.98006999400002,-11.89782000699995],[133.87838999400003,-11.911160006999978],[133.82322999400003,-11.84126000699996],[133.9245599940001,-11.768650006999906],[133.79777999400017,-11.72632000699997],[133.73954999400007,-11.783090006999885],[133.60418999400008,-11.839410006999913],[133.53434999400008,-11.760950006999963],[133.46038999400002,-11.802560006999954],[133.41340999400006,-11.759340006999821],[133.32132999400017,-11.771070006999935],[133.33533999400004,-11.693810006999911],[133.22893999400014,-11.73298000699998],[133.15688999400015,-11.710180006999963],[133.0092599940001,-11.43566000699991],[132.9172199940001,-11.33198000699997],[132.7341399940001,-11.518080006999867],[132.6594799940001,-11.510010006999948],[132.61838999400027,-11.408180006999942],[132.50670999400006,-11.271980006999911],[132.43593999400014,-11.211800006999908],[132.30850999400013,-11.174250006999955],[132.2373799940002,-11.340060006999977],[132.09924999400016,-11.306330006999872],[132.0671299940002,-11.191810006999901],[131.93205999400004,-11.24404000699991],[131.87904999400007,-11.185530006999954],[131.82944999400013,-11.233220006999943],[131.9268599940002,-11.336980006999966],[131.94025999400026,-11.396900005999953],[132.06052999400015,-11.436050006999949],[132.04187999400017,-11.49137000599984],[132.1062599940002,-11.531310005999842],[132.2378799940002,-11.45593000699995],[132.3550399940001,-11.441320006999888],[132.45699999400006,-11.457240006999939],[132.5546999940001,-11.555390006999971],[132.5481199940001,-11.609500006999895],[132.65756999400003,-11.649570006999909],[132.65085999400014,-11.718840006999926],[132.5804499940001,-11.787490006999974],[132.65213999400032,-11.88379000699996],[132.61838999400027,-12.018610005999903],[132.56384999400007,-12.092910005999897],[132.4405499940002,-12.146870005999972],[132.4153799940002,-12.20237000599991],[132.27852999400022,-12.226470005999829],[132.24026999400007,-12.174760005999929],[132.0645199940002,-12.304060005999872],[131.96163999400017,-12.281410005999874],[131.873039994,-12.215480005999893],[131.7541299950002,-12.273810005999962],[131.66252999500034,-12.286020005999944],[131.44633999500013,-12.28083000599986],[131.34646999500023,-12.22718000599997],[131.28945999500002,-12.045110005999959],[131.221379995,-12.22627000599988],[131.15850999500003,-12.169460005999895],[130.99491999500003,-12.16909000599992],[131.03070999500005,-12.240640005999865],[130.98398999500034,-12.342520005999916],[130.8936699950002,-12.332030005999911],[130.85185999500027,-12.450480004999974],[130.88190999500011,-12.606610004999936],[130.7693899950002,-12.528360004999968],[130.76487999500011,-12.43790000499996],[130.61745999500022,-12.386130004999927],[130.57669999500013,-12.407270004999873],[130.5903099950002,-12.501950004999912],[130.53087999500008,-12.712010004999854],[130.43927999500022,-12.633630004999873],[130.3526499950002,-12.669920004999938],[130.35053999500008,-12.840140004999967],[130.2798799950001,-12.932700004999958],[130.14601999500007,-12.927910004999944],[130.11716999500027,-13.167240004999883],[130.15868999500003,-13.174630004999926],[130.2459299960003,-13.28951000499984],[130.23728999600007,-13.33845000499997],[130.1368199960001,-13.460540004999928],[130.00680999600002,-13.53322000399993],[129.9292399960001,-13.528550003999953],[129.87823999600027,-13.459260003999873],[129.79030999600002,-13.665410003999966],[129.7851499960001,-13.766760003999877],[129.720969996,-13.850230003999911],[129.7522799960002,-13.953100003999907],[129.72545999600015,-14.010110003999955],[129.494069996,-14.130930003999822],[129.4155999960002,-14.230300003999957],[129.35536999600015,-14.419640003999973],[129.52618999600008,-14.55223000399991],[129.67161999600012,-14.579780003999815],[129.77959549700017,-14.539892271999975],[129.92611693300012,-14.34846981499993],[130.12014776600006,-14.064403763999906],[130.2349701160001,-13.87130550199987],[130.36193851400003,-13.730032043999927],[130.5931243120001,-13.622074136999913],[130.72850043100004,-13.522858553999981],[130.851669312,-13.373127085999954],[130.90980535500012,-13.34194942399995],[131.05734244100006,-13.416253151999967],[131.3060455780003,-13.480330454999944],[131.41787726600012,-13.52689745899994],[131.56915284900003,-13.666136796999979],[131.752136166,-13.950120705999893],[131.83773802800022,-14.039882674999888],[132.06182854500003,-14.189551445999939],[132.30445865900003,-14.31269736199988],[132.3919219740003,-14.372296381999945],[132.68486027000006,-14.487785428999928],[132.95841977400016,-14.546582300999887],[132.9863281590001,-14.374080721999974],[133.05654906100017,-14.213320679999981],[133.09594719100016,-14.175127029999885],[133.19462599600013,-14.20210720199998],[133.27656547000004,-14.121561973999974],[133.43470767600013,-13.882845706999944],[133.75335695700016,-13.909429583999895],[133.92973332200017,-13.90290544599992],[134.27415460800034,-13.849065798999959],[134.41702264000003,-13.840551462999883],[134.7100524660001,-13.890706088999877],[134.86466974600023,-13.961563848999901],[135.08738713900004,-14.137163211999962],[135.24719231400002,-14.249868461999881],[135.42359919000023,-14.339977272999818],[135.6486685870002,-14.420222219999914]]],[[[136.76212999200004,-11.026850008999872],[136.70312999300006,-11.133500008999874],[136.5882499930001,-11.279230008999832],[136.57747999300022,-11.331370008999954],[136.49496999300004,-11.406310008999867],[136.53455999300013,-11.443500008999877],[136.70937999300008,-11.207670008999969],[136.76212999200004,-11.026850008999872]]],[[[132.59622999400017,-10.971480006999911],[132.4767599940002,-11.159180006999975],[132.544689994,-11.254840006999927],[132.61961999400012,-11.28679000699998],[132.57931999400023,-11.005230006999966],[132.59622999400017,-10.971480006999911]]]]},"properties":{"objectid":45,"eco_name":"Arnhem Land tropical savanna","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Australasia","eco_biome_":"AU07","nnh":2,"eco_id":181,"shape_leng":88.0187382797,"shape_area":13.1720564673,"nnh_name":"Nature Could Reach Half Protected","color":"#FCD357","color_bio":"#FEAA01","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":159054.44654730568,"percentage":0.7418924838891258}}, + {"type":"Feature","geometry":null,"properties":{"objectid":46,"eco_name":"Ascension scrub and grasslands","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Afrotropic","eco_biome_":"AF07","nnh":4,"eco_id":37,"shape_leng":0.366228459066,"shape_area":0.00761929988336,"nnh_name":"Nature Imperiled","color":"#FBA87E","color_bio":"#FEAA01","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":93.51396633554465,"percentage":0.00043618591161088504}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-69.42980950199984,-25.180359959999976],[-69.42931362799993,-25.081602867999948],[-69.29160348499994,-25.012951057999942],[-69.24347660899986,-24.946248374999982],[-69.26538053299993,-24.66949771299994],[-69.07690455499994,-24.443544737999957],[-68.95071449999989,-24.211949064999885],[-68.88306449499999,-23.92438356799994],[-68.75329553399996,-23.70424444799994],[-68.74536155999994,-23.60415563999993],[-68.84267461799988,-23.454342195999914],[-68.86688255999991,-23.359255203999965],[-68.84399459999986,-23.20503388499992],[-68.7951735339999,-23.163410191999958],[-68.6766354859999,-22.983526335999954],[-68.59925057099991,-22.797217079999882],[-68.50491359199992,-22.670369714999822],[-68.44464854599994,-22.520505812999886],[-68.42628463399996,-22.292448643999876],[-68.44403063199996,-22.247885249999968],[-68.57416554599996,-22.22546248499998],[-68.70269750499989,-22.17759008399986],[-68.82582062199998,-22.22982627199991],[-68.87607549599994,-22.198447778999878],[-68.8651734899999,-21.904012642999874],[-68.90821053999991,-21.328870082999913],[-68.88040156399984,-21.015115162999848],[-68.88652052099997,-20.737664779999875],[-68.94244357299988,-20.58323542199986],[-68.99058553699996,-20.290553779999982],[-69.0475925369999,-20.050113522999936],[-69.11131260299999,-19.916511182999955],[-69.19622061199988,-19.660234156999877],[-69.20417755299997,-19.59488079399995],[-69.27910656999995,-19.40883774699995],[-69.38990057799998,-19.243249393999974],[-69.41379553999991,-19.1490029389999],[-69.47132858799995,-18.76688454599997],[-69.50992557599994,-18.582643272999917],[-69.55802948599995,-18.455489969999974],[-69.62741856899999,-18.39400250699987],[-69.90974453699994,-18.479706460999978],[-70.12089557499996,-18.40865172699995],[-70.31594849699991,-18.422723936999944],[-70.35959658699994,-18.794199826999886],[-70.26765448499998,-19.141921236999906],[-70.28260059199982,-19.283999021999875],[-70.22444962999998,-19.402946106999877],[-70.20541348999996,-19.58329649999996],[-70.17078348899992,-19.65074148399998],[-70.15641757799995,-19.82253680399998],[-70.12281050499996,-19.992676865999954],[-70.12390149299989,-20.094227981999893],[-70.15851556799998,-20.213610254999935],[-70.14411160299994,-20.320825190999983],[-70.18295250399996,-20.354906176999975],[-70.1639026169999,-20.48239006299997],[-70.19975251999989,-20.528215435999925],[-70.18141962099986,-20.65453524299994],[-70.19419850299988,-20.81500124799993],[-70.14711752099987,-20.864400496999963],[-70.13388853099997,-20.950676767999937],[-70.17842862299983,-21.021457916999907],[-70.1263126309999,-21.086056405999955],[-70.06727553399998,-21.31195087599997],[-70.05627462199988,-21.43240620099988],[-70.09222460499996,-21.584800767999923],[-70.14301256799996,-21.628867450999962],[-70.14223455899997,-21.82843268599987],[-70.21219662899995,-22.09843910099994],[-70.23957058399992,-22.377069320999908],[-70.23716749199997,-22.488410499999873],[-70.31277460599995,-22.800399855999956],[-70.28524055699995,-22.896583870999905],[-70.30879957199994,-22.958491769999966],[-70.30363464299995,-23.111401823999813],[-70.31999159199995,-23.311596540999915],[-70.37762455199999,-23.547298339999884],[-70.39394361499984,-24.09544278999988],[-70.36634854599993,-24.246632373999887],[-70.3507005379999,-24.538839097999983],[-70.30373354999989,-24.769691630999944],[-70.31024964099998,-25.073855139999978],[-70.29781357899998,-25.267439719999913],[-70.31328556599993,-25.458562702999927],[-70.36721758099998,-25.834119239999893],[-70.36677551999992,-26.058761788999902],[-70.27693157599998,-26.238980753999954],[-70.1118625659999,-26.299983071999975],[-70.00304450699997,-26.31445140999989],[-69.8710635629999,-26.18854902199996],[-69.77498650099989,-25.939821408999933],[-69.72080956599984,-25.742412501999922],[-69.4956055969999,-25.366350032999947],[-69.42980950199984,-25.180359959999976]]]},"properties":{"objectid":47,"eco_name":"Atacama desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Neotropic","eco_biome_":"NO13","nnh":2,"eco_id":598,"shape_leng":18.7866390877,"shape_area":9.20086032278,"nnh_name":"Nature Could Reach Half Protected","color":"#F18650","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":105405.99943431145,"percentage":0.39953485517492243}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-16.352029530999914,19.81698220100003],[-16.414640503999976,19.81399137000011],[-16.451040594999938,19.6902404490001],[-16.376260438999907,19.694869103000087],[-16.352029530999914,19.81698220100003]]],[[[-16.378608961999873,21.09402448000003],[-16.454079918999867,21.313570066000125],[-16.464809919999936,21.471380063000026],[-16.441040007999902,21.64635992800015],[-16.34139,22.03485993300012],[-16.2760399469999,22.201310223000178],[-16.20345001599992,22.47423006100007],[-15.92251000399989,22.967489934000128],[-15.803580000999887,23.226840042000106],[-15.582560001999923,23.633909978000077],[-15.464679957999863,23.78044008800009],[-15.24615979399988,24.010050037000042],[-15.098200049999946,24.194320060000052],[-14.870409970999901,24.51351994900017],[-14.744760053999926,24.724869939000143],[-14.58462007999998,24.859039927000083],[-14.419620019999911,24.919320077000066],[-14.493400020999957,25.096899932000042],[-14.499840062999908,25.361130017000107],[-14.463219988999981,25.48320989700011],[-14.396330113999966,25.612899825000113],[-14.055040070999894,26.033289896000042],[-13.763329924999937,26.336100037000108],[-13.498929980999947,26.56990999900006],[-13.395440097999881,26.70152998600014],[-13.218430017999822,27.037730059000125],[-13.185708116999933,27.15617484700016],[-13.448255462999953,27.012326406000113],[-13.52826944599991,26.803874508999968],[-13.620200483999895,26.683889744],[-13.757120547999818,26.59734391100011],[-14.042739430999973,26.442571566000026],[-14.184860466999908,26.421891735000088],[-14.304940449999947,26.292018503],[-14.396519447999935,26.26240993300013],[-14.49318944599986,26.144554340000127],[-14.486818336999931,26.114807723000126],[-14.482760120999956,26.107703874000038],[-14.479228601999978,26.09713286200008],[-14.478203943999915,26.087624033000168],[-14.483958533999896,26.054341329000067],[-14.483622271999877,26.051463274000014],[-14.534059438999975,25.90654500200003],[-14.627389583999957,25.782441872999982],[-14.68525140599985,25.59384320700002],[-14.684837353999967,25.589692624000065],[-14.785619463999979,25.428197331000092],[-14.813973411999939,25.341823702000056],[-14.813796752999963,25.329374565000023],[-14.82823376499988,25.290498839000065],[-14.823615623999956,25.274032266000177],[-14.842715858999895,25.21123952500011],[-14.83868231599996,25.183509641000057],[-14.844297295999922,25.123370195000177],[-14.822124403999965,25.028496027000187],[-14.835180395999942,24.950391467000145],[-14.828320237999947,24.921616832000097],[-14.885616039999888,24.743050038000092],[-14.884301654999945,24.729498230000047],[-15.009043431999942,24.573863958000118],[-15.008055691999914,24.566715818000034],[-15.135919481999963,24.510152453000046],[-15.407839485999943,24.253325408000023],[-15.59169954899994,24.05066423200003],[-15.76239952199984,23.9488794290001],[-15.902529520999963,23.818986081],[-15.923874155999954,23.77062684200007],[-15.922009456999945,23.75988289500009],[-15.856501321999929,23.83727298000008],[-15.79025816799998,23.89646586800012],[-15.778115694999883,23.901439828000093],[-15.766374433999943,23.911972022000043],[-15.774036869999918,23.89036433700005],[-15.772712600999967,23.880087696000146],[-15.770072882999955,23.877586397000073],[-15.712957284999902,23.894572590000166],[-15.742158662999941,23.821655187000033],[-15.708238496999911,23.823295067],[-15.800968118999947,23.724904486000128],[-15.79355690899996,23.723843948000138],[-15.876186995999944,23.619249216000128],[-15.87564472799994,23.613981376000027],[-15.9691796219999,23.499492307000025],[-15.963819798999907,23.494244259000084],[-15.964374662999887,23.49016358300014],[-15.952523258999975,23.472469756000123],[-16.059476937999875,23.327709378000065],[-16.056032447999883,23.311909262000142],[-16.113659175999942,23.225060737000092],[-16.11209662499988,23.2090818370001],[-16.206472799999915,23.08344086700015],[-16.13861508599996,23.02036941600005],[-16.212810477999938,22.915252130000056],[-16.30139406199993,22.859220554000046],[-16.30042492799987,22.853789184999982],[-16.2907448549999,22.84769470300006],[-16.287355781999963,22.838822909000157],[-16.328739548999977,22.768694756000116],[-16.32678664799994,22.76307431000015],[-16.341324634999978,22.704423272000156],[-16.338852828999904,22.688748278000105],[-16.344746282999836,22.654479002000073],[-16.341941797999937,22.648739198000158],[-16.359790502999886,22.572491298000102],[-16.424560485999905,22.51958187600019],[-16.44984029999989,22.444382012000176],[-16.449426468999945,22.437138559000118],[-16.45893917299992,22.403566241000192],[-16.457142115999943,22.390675010000166],[-16.491224142999897,22.33398862400003],[-16.49101444299987,22.33291232199997],[-16.61354055199996,22.265897373000143],[-16.6982705289999,22.279585692000182],[-16.80891952999997,22.161440922000168],[-16.87036265199987,22.00377220600012],[-16.870057550999945,21.99493425300011],[-16.89804218699993,21.933545187000107],[-16.8894715269999,21.91896076600011],[-16.963480266999966,21.785943850000024],[-16.94805127199993,21.761767693000138],[-16.972009535999916,21.666078764000133],[-16.970975089999968,21.655370510000125],[-17.013369187999956,21.41797956300013],[-17.010441219999905,21.40229357400017],[-17.028100375999884,21.333316143000104],[-17.02764753999992,21.311620311000183],[-17.02601382699993,21.30112091799998],[-17.024436468999966,21.294838961000096],[-17.047756277999895,21.184103357000026],[-17.047831175999875,21.183666271000106],[-17.043795314999898,21.172886341000094],[-17.039061619999927,21.163346806000106],[-17.050352249999946,21.12343721600007],[-17.04964324899987,21.115153834000182],[-17.059975329999872,21.07981164800003],[-17.05620781199991,21.068591105000053],[-17.06167560299997,21.053875235000135],[-17.058236112999964,21.035370702000023],[-17.062917348999974,21.016756546000124],[-17.060627774999944,21.00221837400005],[-17.09206395699988,20.91902839500017],[-17.075903587999903,20.889056663000076],[-17.102997435999896,20.84300669099997],[-17.045008699999926,20.77004297200017],[-17.04517892799987,20.789240226000118],[-17.041519388999973,20.801853163000033],[-17.03911320199984,20.810146310000107],[-17.02722840399997,20.85110821600017],[-17.05175573799994,20.888996295000027],[-17.040525988999946,20.90703812099997],[-17.014965779999898,20.916301830000066],[-17.003275929999916,20.96564740100007],[-17.008536506999974,20.979210982000097],[-17.00188912199991,21.012188489000096],[-17.022792049999964,21.035397717000023],[-16.997208427999965,21.052311411000062],[-16.994831949999877,21.055651462000128],[-16.974076832999913,21.11444531799998],[-16.97465234899994,21.10999943100012],[-16.959670029999927,21.111721149000118],[-16.96295130599998,21.116793890000167],[-16.94783062499988,21.126918489000047],[-16.9446683729999,21.134560387000136],[-16.944410752999886,21.137287093000168],[-16.946244770999954,21.172746675999974],[-16.93272365699994,21.206341026000132],[-16.935027313999967,21.217445996000038],[-16.902240606999953,21.265369338000085],[-16.905551001999925,21.255192577000116],[-16.845122159999903,21.25317452400003],[-16.862123128999883,21.167295022000133],[-16.796199732999924,21.103593247000106],[-16.81221143199997,21.081751305000182],[-16.754708186999892,20.992490871000143],[-16.757463333999965,20.98482474499997],[-16.75734583899998,20.97351815500008],[-16.85820483999987,21.082889252000086],[-16.856792390999885,21.06439288500013],[-16.86143604499989,21.050727983000115],[-16.850356476999934,21.025084753999977],[-16.844406886999877,21.01871909199997],[-16.811775981999972,20.968585711000173],[-16.804772911999976,20.937698970000156],[-16.803448275999813,20.935265091000133],[-16.78696772799998,20.93284140000003],[-16.768396892999817,20.91000695700012],[-16.73440431599994,20.824380479000183],[-16.733254830999954,20.82318475000011],[-16.7114792509999,20.77571240900005],[-16.708606674999885,20.771534294000105],[-16.680219596999848,20.682654098000057],[-16.5394594469999,20.56214093800014],[-16.526399435999963,20.736621148999973],[-16.384559528999944,20.536962036000148],[-16.30282055099991,20.331753768000112],[-16.23247945199995,20.281696706000105],[-16.199510575999966,20.203030031000026],[-16.25173955599996,20.123815681000053],[-16.232650441999965,19.97912274200013],[-16.30731056899998,19.906307976000107],[-16.24745958899996,19.780294276000177],[-16.34193956299987,19.65872147500005],[-16.43910945799996,19.469113438000022],[-16.348550537999927,19.43959522400013],[-16.51045051799997,19.352070218000165],[-16.470169438999903,19.259845478000102],[-16.347520569999972,19.186168885000086],[-16.260400576999814,19.07898613600014],[-16.178829570999937,18.895766114000025],[-16.135219534999976,18.658700076000173],[-16.055719529999863,18.454103351000185],[-16.024040461999903,17.993000943000084],[-16.044349478999948,17.741986077000035],[-16.069328768999924,17.590229972000145],[-15.88117981199997,17.775180079999984],[-15.78607901199996,17.885006987000054],[-15.777196450999952,17.89526498900011],[-15.736649992999958,17.942089958000054],[-15.73562846499982,18.13765484700008],[-15.682839984999873,18.393340025000043],[-15.477379974999963,18.892569966999986],[-15.472279971999967,18.987500000000125],[-15.504469975999882,19.09253991500009],[-15.5843800479999,19.171319939000057],[-15.829699955999956,19.28004008],[-15.857009981999965,19.36495],[-15.831320043999881,19.804980027000113],[-15.83892991499988,20.007079992000115],[-15.882640072999834,20.253569905000177],[-15.939859939999963,20.38940997000003],[-16.133959973999936,20.63855003900011],[-16.223999995999918,20.775870080000175],[-16.24058001999998,20.835369933000152],[-16.378608961999873,21.09402448000003]],[[-15.749609814999872,19.08590994700006],[-15.625650041999904,19.113020014000085],[-15.517340027999921,19.081139982000025],[-15.52106003299997,18.97743993100005],[-15.571420049999972,18.84961000600009],[-15.683760040999971,18.776000040000156],[-15.830960082999923,18.729520031999982],[-15.896810032999952,18.671399999000187],[-15.823209923999968,18.454480033000095],[-15.916179973999931,18.28404007500012],[-16.005279872999836,18.318899949000183],[-16.04789008299997,18.57068999900008],[-16.09277992699998,18.666109894999977],[-16.059520073999977,18.84186002299998],[-16.016900006999947,18.892220040000097],[-16.059520073999977,18.996810048000043],[-16.016900006999947,19.05879002300003],[-15.920059981999941,19.07815996400018],[-15.827089931999922,19.039420081000173],[-15.749609814999872,19.08590994700006]]]]},"properties":{"objectid":49,"eco_name":"Saharan Atlantic coastal desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Palearctic","eco_biome_":"PA13","nnh":2,"eco_id":839,"shape_leng":32.2420105396,"shape_area":3.49040426927,"nnh_name":"Nature Could Reach Half Protected","color":"#B43D41","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":40008.83542520887,"percentage":0.15165099095986342}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[146.43763881000007,-37.33480131399995],[146.33615976800013,-37.40321279799991],[146.42729911800006,-37.546980963999886],[146.3633375930001,-37.599516372999915],[146.17580551000015,-37.5068396719999],[146.08370266800011,-37.6882518889999],[146.07225631000017,-37.845393054999874],[146.2022429430001,-37.80572338899992],[146.338644218,-37.91252112199993],[146.36621938500014,-37.85083293899993],[146.28234351800018,-37.751996604999874],[146.1742007260001,-37.74096888099996],[146.15760313400006,-37.648771213999964],[146.287176734,-37.60322064699983],[146.474970202,-37.666995529999895],[146.5206223350001,-37.58397093099995],[146.4047114440002,-37.45881726399995],[146.43763881000007,-37.33480131399995]]],[[[145.93819307600018,-37.34632866499993],[145.77043179300006,-37.42657127199993],[145.92790201000014,-37.507027696999955],[145.9630366440001,-37.42062846399989],[145.93819307600018,-37.34632866499993]]],[[[147.56665791800015,-37.13501063199982],[147.42571901800022,-37.137069147999966],[147.33748613500018,-37.16547880699994],[147.36543192600004,-37.26053873899997],[147.5252289760001,-37.397444763999886],[147.54811130100006,-37.31650574799983],[147.5193740010002,-37.211700822999944],[147.56665791800015,-37.13501063199982]]],[[[146.4066975930001,-36.97921292299998],[146.3874563180002,-37.02448382299991],[146.42079323400014,-37.17692483999991],[146.49925881000001,-37.31075928099989],[146.66802812700007,-37.31307313099995],[146.68670290900013,-37.39075755599998],[146.75671408400024,-37.466098088999956],[146.85820018400022,-37.518317630999945],[147.01857579300008,-37.52987670599998],[147.06824862700012,-37.50005797299997],[147.02180780200013,-37.41243885599988],[146.93148124300023,-37.36771557199995],[146.80175384300014,-37.35808723999992],[146.78204863500002,-37.263855630999956],[146.70754555100018,-37.08862445599988],[146.55794268400007,-37.043115430999876],[146.5063957440001,-37.09308498999991],[146.4066975930001,-36.97921292299998]]],[[[147.3848251510003,-36.66631821499993],[147.2395942920001,-36.733332089999976],[147.2432187510001,-36.81748380699992],[147.1266389760001,-36.80647449899993],[147.10762985900033,-36.93398136399992],[147.01069539300022,-36.96726373899992],[146.9809557760001,-37.04215288899991],[146.90333758500003,-37.0748982479999],[146.97220333400026,-37.26318796499987],[147.03439434300014,-37.14337573099988],[147.10410616800004,-37.23465593899988],[147.21167684300008,-37.286056746999975],[147.29460737600004,-37.17053429799989],[147.31380742600004,-37.0540551229999],[147.45684128400012,-36.97697542299994],[147.5792426170002,-36.88172328999991],[147.53136466800004,-36.77418998999997],[147.37597440900004,-36.73026905699993],[147.3848251510003,-36.66631821499993]]],[[[148.80431219700006,-35.35456165299996],[148.7397174680001,-35.56123708699988],[148.61457150800004,-35.51348964399995],[148.56327115800002,-35.55464249599993],[148.43402856800026,-35.57797329599998],[148.51160436200007,-35.65931023999991],[148.44100092500014,-35.857960480999964],[148.34229186200014,-35.81895540499994],[148.23018574100013,-35.61140247999998],[148.1363897020001,-35.62486541199985],[148.0747892180001,-35.72114846199992],[148.1426606780002,-35.73821873199995],[148.28322462300014,-35.83243284399998],[148.2602752580001,-35.88492269099987],[148.29564482400008,-35.99181767999994],[148.23700519800013,-36.00070626499996],[148.17886872400004,-36.12269684499989],[148.221776534,-36.19189512999992],[148.22224944200013,-36.35231874499988],[148.17027764600016,-36.47453024899988],[148.16533,-36.57748999899985],[148.0715726330002,-36.57395576499988],[148.04600288400002,-36.5093406069999],[147.8881039920002,-36.452347148999934],[147.88077147600006,-36.58978743999995],[147.83819660900008,-36.60892964799996],[147.906358876,-36.75892533899997],[147.8959744340002,-36.825675972999875],[147.96758741700012,-36.95705173999994],[147.90471891700008,-36.99498741499991],[147.85449367600017,-37.21518432299996],[147.93241355100008,-37.27521166499997],[148.15372163500012,-37.12239193199997],[148.10383070800015,-37.04478442299995],[148.3801006330002,-36.86368555199988],[148.34048931200005,-36.77384566399991],[148.39395651700022,-36.66783537799995],[148.5045489800002,-36.65348693899983],[148.4159443100002,-36.57335728099986],[148.45935550600007,-36.414303601999904],[148.5331773590002,-36.386971072999984],[148.60898320500007,-36.28797599899997],[148.58948281200003,-36.17529713199991],[148.649084785,-36.03584398399994],[148.63150716300004,-35.944882305999954],[148.7584309670001,-35.89230871099994],[148.80814436000014,-35.92443634699998],[148.92032801300002,-35.89742454199984],[149.01159147900023,-35.91653549499995],[149.08130763400015,-35.87605263399996],[148.97325866500023,-35.79055551599998],[148.9444374090001,-35.60674009599984],[148.98295537000024,-35.52407230499989],[148.8298082240001,-35.505400617999896],[148.78232447900007,-35.452537504999896],[148.80431219700006,-35.35456165299996]]]]},"properties":{"objectid":53,"eco_name":"Australian Alps montane grasslands","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Australasia","eco_biome_":"AU10","nnh":1,"eco_id":193,"shape_leng":63.3376262961,"shape_area":1.24282124149,"nnh_name":"Half Protected","color":"#F87C3E","color_bio":"#D6C39D","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":12353.732701563316,"percentage":0.2529789592489836}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[46.65341956500009,38.934772819000045],[46.832439583000166,38.81659569500016],[46.99087549000012,38.849374301000125],[47.05250159000008,38.903939317000095],[47.38233551500019,38.99652079100014],[47.54561951500011,39.01757344900011],[47.738819534000015,39.10283416800007],[47.8052905400001,39.169957120000106],[47.985374557000114,39.16415550200003],[48.13323250200011,39.198203798000065],[48.13971758100013,39.279654775000154],[48.33283948000013,39.262854759000106],[48.60583857000006,39.11032222600005],[48.66225447800019,39.095716424000045],[48.815139554000154,38.96894030600009],[48.90388848600003,38.98221221100016],[48.89113659300017,39.08809442400019],[48.96084955300006,39.20924377100005],[49.03840260900006,39.2145236990001],[49.115203473000065,39.14622275500017],[49.095645476000186,38.99306510000008],[49.203552589000026,39.05729897700007],[49.243526555000074,39.306567222000126],[49.377941605000046,39.39118689300017],[49.28247457700019,39.5676445630001],[49.373203483000054,39.68254989400009],[49.376724552000155,39.817935065000086],[49.44826560500002,39.99555279000003],[49.43230461700017,40.108386283000186],[49.56627257600013,40.21630982400018],[49.859062512000094,40.361950086000036],[49.99071153300008,40.35068531100012],[50.157161546000054,40.37437391100008],[50.327873589000035,40.322242831000096],[50.354907574000094,40.46821099300013],[50.25050761699998,40.46008591100019],[50.02719862900011,40.61339645300018],[49.763614596000195,40.59566537500001],[49.520019558000115,40.68513850300013],[49.478855528,40.793944156000066],[49.30313462800012,40.952446616000145],[49.01126854400002,41.42985182500007],[48.75519553500004,41.71115235200017],[48.75043847000018,41.494666232999975],[48.78131052800012,41.34819079800019],[48.85411456500009,41.20841803700006],[48.66784252500008,41.22173906000012],[48.69903158700015,41.105331021000154],[48.754650544000185,41.02799589400013],[48.72858852400009,40.95887067399997],[48.593959569000106,40.920044860000075],[48.47760349800018,40.84425585900004],[48.283767628000135,40.82647599900014],[48.27695062600009,40.73820802000006],[48.06826755600014,40.69329828600013],[47.90741749300008,40.70749622400018],[47.660266516000036,40.80253527100007],[47.82651553100004,40.92876187200011],[47.67642548400016,41.024879838],[47.249004581000065,41.11139214300016],[47.07640459800018,41.18847111900004],[46.85204351300018,41.31636504700009],[46.639606524000044,41.40207704800014],[46.439838614000166,41.42613210400003],[46.17462949800017,41.49983132900013],[45.914974565000136,41.64417088700003],[45.77012656100004,41.697610717000146],[45.17974855200009,41.819614682000065],[44.97523447300017,41.82123272500007],[44.76361857500018,41.73616931600009],[44.664508604000105,41.57432851100009],[44.69499559800016,41.46245156200007],[44.82906749200015,41.35534760300004],[45.15516258600013,41.23341991300015],[45.37671657100003,41.10352304500009],[45.563446597999985,41.06100466700019],[45.705539471000066,41.00339903200012],[46.037242561000085,40.78656640500009],[46.08610955900019,40.739241844000105],[46.12792553300005,40.57169866400005],[46.397758610000096,40.53471502500008],[46.533054597000046,40.47124691800002],[46.690166499000156,40.4280764290001],[46.82796448500005,40.213171137000074],[46.95687446800008,40.100070429000084],[47.01123848600008,40.021084570000085],[47.03894855500016,39.90425291000014],[47.029441465000104,39.63629654100015],[47.08334749600016,39.52577494500002],[46.862274464000166,39.46824290200004],[46.772010587000125,39.52797200900011],[46.66670655799999,39.496749588],[46.6438945380001,39.41007668500009],[46.69729648200007,39.29832328500004],[46.80580155900003,39.16996818400014],[46.74453353500007,39.1227390090001],[46.722572614000114,39.02611829700015],[46.65341956500009,38.934772819000045]]]},"properties":{"objectid":54,"eco_name":"Azerbaijan shrub desert and steppe","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Palearctic","eco_biome_":"PA13","nnh":4,"eco_id":812,"shape_leng":19.0202838928,"shape_area":6.7947966252,"nnh_name":"Nature Imperiled","color":"#B7393D","color_bio":"#CC6767","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":64159.684519447605,"percentage":0.24319327552623063}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[69.31153162800007,37.11488930600018],[69.24133251800009,37.306334657000036],[69.0812835970001,37.46868055400006],[69.04579964800018,37.53035912400003],[69.07232652800013,37.655146719000015],[69.03262363100004,37.71616580099999],[68.80917349200013,37.74036620000015],[68.74764261100017,37.783547586],[68.75549360500014,37.91257307100017],[68.65563948900018,37.88201466400017],[68.64629349900014,37.688796373000116],[68.5429075850002,37.37338418200005],[68.46310449100014,37.24491492000004],[68.17356857700014,37.03950096000017],[68.04212960600012,37.00857659800016],[67.89328762500008,37.089759018999985],[67.85269155300006,37.16514350900019],[67.94345851200018,37.28835581000004],[67.92903158100012,37.48149028200015],[67.95124848600005,37.54585106000002],[67.91779362800008,37.746336126000074],[67.9793925690002,37.910002006000184],[67.95865657900009,37.995232550000026],[68.03449251900014,38.18621924400003],[68.19376359900008,38.40717442600004],[68.1677325930001,38.44857465700011],[67.96250152600015,38.51567464200008],[67.87924961400006,38.47250448800003],[67.84015658500016,38.391336652000064],[67.72528863700012,38.296275476000176],[67.70739763200015,38.16499844400016],[67.65634161600013,38.095480951000184],[67.54229760900017,38.085941004000176],[67.46269953500007,38.01115129300007],[67.31426256800012,38.03426003300001],[67.23140762300011,37.97285186300019],[67.12212353100006,38.04169092500007],[67.00640062800011,38.07722030399998],[66.92813159000019,38.05639261600015],[66.84722158200003,38.0882599410001],[66.75827064600003,38.050990647],[66.66654161200017,37.97149801799998],[66.2677685450002,37.82971175500006],[66.01078056600016,37.79426619600014],[65.66517659300013,37.776543667000055],[65.49226363000008,37.74265831499997],[65.40384662200017,37.6215473580001],[65.32409650099999,37.57106952500004],[65.12763961000007,37.52256931900007],[65.01744055,37.560788618000174],[65.09557363400012,37.65590276700004],[65.03222656200006,37.72151747900017],[64.859947606,37.774644496],[64.58457157700019,37.89149342300004],[64.43982650200019,37.91744915900006],[64.25765254200013,37.718748768000125],[64.11067151100008,37.61016858900018],[63.92251957800005,37.50985950300003],[63.82992150800004,37.488710956000034],[63.590858565000076,37.49136215200019],[63.27746959900003,37.56897052900007],[62.97798956200012,37.58527115100003],[62.82022051900009,37.54151292300003],[62.714870557000154,37.46039169000005],[62.54833555200008,37.28916801600013],[62.316284574,37.12079821200001],[61.99118458000015,37.08763403900002],[61.78878056100001,36.98794286700007],[61.722225568000056,36.845452022000075],[61.66414249900009,36.562522054000056],[61.646419635000086,36.31440447600011],[61.531925520000186,36.18134226600017],[61.345123576,36.030836812000075],[61.0704155840001,35.94222366700018],[60.88057754700003,35.77160768100009],[60.96348563300012,35.51193196200006],[60.94464847900008,35.45298153400017],[61.11472349800016,35.25102829400015],[61.22992353700016,35.13583144000012],[61.36990752300011,35.027912927000045],[61.53673555900019,34.915747808000106],[61.71243248700006,34.90441530700008],[61.9164696360001,34.70038352300003],[62.41812151300019,34.65183889200006],[62.48827753900014,34.69276169000011],[62.64035761700012,34.92297267300006],[62.76298854900011,35.07380200300014],[62.851604544000054,35.1535539680001],[63.02883955100009,35.20672239200013],[63.321269569000094,35.25102829400015],[63.782077605000154,35.295339225000134],[64.01248153900019,35.39281405300005],[64.06565063300008,35.49028854700009],[64.1631246230001,35.57890135600013],[64.36694350700014,35.614350436999985],[64.730270512,35.747270490000176],[65.0758744850001,36.02197613500016],[65.21766661500004,36.101728267000055],[65.43920148900008,36.19920309600002],[66.0063475450001,36.34984970000011],[66.192443566,36.429601833000106],[66.41751057400006,36.61238599600006],[66.78590360100009,36.595510207000075],[66.9757996410001,36.496612467000034],[67.04273249100004,36.57990461200018],[67.17546864500014,36.55162725600013],[67.30703753500018,36.561942026000054],[67.53927660300013,36.614861842000096],[67.70006564600016,36.63574351000017],[67.82488257800014,36.569689754000024],[67.8735655100001,36.61164989700018],[68.00228153500007,36.61604067300004],[68.09211760000005,36.67366843700006],[68.19728852500003,36.57764267200008],[68.32173950300012,36.58747648800016],[68.32373858700015,36.68787425400018],[68.4057925570001,36.76502849900015],[68.49202758900014,36.72071756800017],[68.65363353200001,36.705847737000056],[68.75248751900011,36.734007243000065],[68.89472154300006,36.81808946700016],[68.98829660700005,36.8992569670001],[69.22755451300009,37.03218104400008],[69.31153162800007,37.11488930600018]]]},"properties":{"objectid":56,"eco_name":"Badghyz and Karabil semi-desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Palearctic","eco_biome_":"PA13","nnh":4,"eco_id":813,"shape_leng":23.6056246007,"shape_area":13.4659961339,"nnh_name":"Nature Imperiled","color":"#B86847","color_bio":"#CC6767","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":133906.41062101297,"percentage":0.5075638830956795}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-111.99398759599995,24.53147970300006],[-111.75006063399996,24.351653345999978],[-111.76538862099989,24.454742206000105],[-111.87338256999993,24.523227887000132],[-111.99398759599995,24.53147970300006]]],[[[-115.57467662099998,30.831377815000053],[-115.73549667699996,30.953771539000115],[-115.83339663599986,31.20164000600016],[-115.96620168899983,31.251027018000116],[-116.06700161899988,31.419234548000134],[-116.15630358899989,31.461023029000103],[-116.21130362599996,31.5578995570001],[-116.35970253899984,31.565448467000124],[-116.54080160399985,31.699894864999976],[-116.67675758199994,31.705822714000135],[-116.64379859799988,31.662381322000044],[-116.68402854799996,31.573200219000057],[-116.64378367799998,31.514749185000085],[-116.50221266299997,31.41210154800001],[-116.35211155199994,31.233069628000067],[-116.30322259299999,31.127614557000072],[-116.33699764,30.980080656000098],[-116.27941865899999,30.96579521100017],[-116.05292555299997,30.785641289000125],[-116.0279766509999,30.62282835200017],[-116.04647064999995,30.483293134000064],[-115.98117864099993,30.38614972500011],[-115.86430356299996,30.369432523],[-115.7940595259999,30.245839013000136],[-115.77803768599995,30.079595195000138],[-115.80056757099999,29.981308663],[-115.73025564099999,29.938471271000026],[-115.68383766699992,29.828763390000177],[-115.69694562199993,29.750324534000015],[-115.51125360999993,29.623593342999982],[-115.24521652899995,29.510553488000028],[-115.19007852599992,29.432411519000027],[-114.96354652799988,29.371823770000105],[-114.80722755399995,29.21044128800014],[-114.74154662499996,29.178555355000185],[-114.70449861299994,29.102438454000094],[-114.6293335609999,29.09441982300018],[-114.59303254399998,28.983121057000062],[-114.52642055399997,28.921272669000018],[-114.40899662799995,28.880836189000092],[-114.33512155099999,28.74722965800015],[-114.18379265899995,28.66137198000007],[-114.044807629,28.467840709000086],[-114.1089476279999,28.24228218500008],[-114.08512860599996,28.151277683000103],[-114.26242061099992,27.941079500000114],[-114.12934163699987,27.881561952000027],[-114.17644457999995,27.82091871500012],[-114.12604553699998,27.710836163000124],[-113.98772468899989,27.75388729400015],[-113.91363553799994,27.711240339000028],[-113.94966866899989,27.65386772000005],[-114.04418954699992,27.660673323000083],[-114.07573668399993,27.61498222700004],[-114.23534354299983,27.69936586400013],[-114.31478168999996,27.78112512700011],[-114.33456465699999,27.86819164300016],[-114.47069564999998,27.780909209000185],[-114.61159560999988,27.773898585000097],[-114.85886359799991,27.82877641400006],[-115.04837759099985,27.815562847000024],[-115.00572962899997,27.718621778000113],[-114.87585455399994,27.696571840000047],[-114.73310068399996,27.522566213],[-114.64451553499998,27.498752220000085],[-114.49358360999997,27.39024177800013],[-114.483573606,27.22551290500013],[-114.31316364699995,27.144416483000157],[-114.23218557699994,27.147904359999984],[-114.09880066399995,27.093411931000105],[-114.0157086779999,26.981884842000056],[-113.84121656499997,26.965219272000127],[-113.77494068899989,26.909881947000144],[-113.73049966999997,26.798070711000094],[-113.62121557899997,26.7197582550001],[-113.54334266899991,26.725146142000142],[-113.50583666999995,26.786533189000124],[-113.36174052199993,26.794699845000082],[-113.1987996769999,26.8523934910001],[-113.13957264599998,26.852402543000096],[-113.077621664,26.729131905000145],[-113.00132756999994,26.66316180000007],[-112.99898566599995,26.58029143200008],[-112.88804665099997,26.51980812200003],[-112.79239656299995,26.406030492000184],[-112.48303962799997,26.231062286000167],[-112.39904759299998,26.238007866000032],[-112.32629367899995,26.151784905000056],[-112.30153655499993,26.064138863000153],[-112.18812554899995,25.986225553000168],[-112.12666356799991,25.815990440000178],[-112.06462055299994,25.72486741800003],[-112.02937364399986,25.432252160000132],[-112.04438764399998,25.291675909000105],[-112.11064960599998,25.022536854000123],[-112.056823539,24.94806431500018],[-112.02628357199995,24.817887491000022],[-111.83029958799995,24.646505902000058],[-111.62775458499988,24.562253022000107],[-111.52387967099997,24.46217879800008],[-111.444877551,24.322912639000094],[-111.2334975199999,24.221803920000127],[-111.04530367699988,24.109621366000113],[-110.93486053499998,24.01728497900018],[-110.89314262999994,24.11228010500008],[-110.90698266099986,24.209715539000115],[-110.98189558499996,24.290865270000154],[-110.98522152399988,24.37703928100018],[-111.0431515389999,24.503024986000185],[-111.10556067599987,24.57719829100006],[-111.09835056299988,24.748504108000134],[-111.20992257899985,24.817243593000057],[-111.25495955099996,24.95374590400013],[-111.18614161099998,25.106343648000177],[-111.17490365799995,25.20566786000012],[-111.21643866999995,25.304524361000063],[-111.35449967999995,25.344638472999975],[-111.38397967199995,25.402845594000098],[-111.33655553399984,25.56839572600012],[-111.35217252799998,25.62787404600016],[-111.47542556499997,25.658031631000085],[-111.49993156799991,25.724804721000055],[-111.50271553299996,25.869406968000135],[-111.63517759899997,25.999293778000037],[-111.65577662899994,26.23540511800013],[-111.69998161299986,26.32601885500003],[-111.89144154799993,26.469322410000075],[-111.97541061599998,26.509571806],[-112.09258258199992,26.673737247000133],[-112.1249385719999,26.757374560000073],[-112.13710758699995,26.95219094400005],[-112.17247754199991,27.024284867000063],[-112.40971356499983,27.27966771100006],[-112.53726165599994,27.49305856100017],[-112.66284955599997,27.516291520000152],[-112.81335467399998,27.67463472300011],[-112.8536075909999,27.85832916100003],[-112.94680060799993,27.900260134000064],[-113.13305655499994,28.20794840100001],[-113.12963858199993,28.33404441099998],[-113.28722355899993,28.35772328800016],[-113.37553361399995,28.473255418],[-113.40900456499992,28.615000945000133],[-113.44690652599996,28.62306048000005],[-113.52251464499994,28.510759908000068],[-113.62907361299989,28.503554489000123],[-113.5698546289999,28.647603363000144],[-113.56996962799991,28.707026195000026],[-113.63088259499983,28.830383335000192],[-113.59503168599986,28.894297526000173],[-113.63266760499982,28.977624372000093],[-113.77710757799997,28.986072157000024],[-113.8171846429999,29.12618740300013],[-113.95406363599983,29.21944797900005],[-114.07011460599983,29.235385162000057],[-114.12525964999998,29.310852130000114],[-114.14407366999995,29.398732697000128],[-114.22904152499996,29.437334378000116],[-114.246642684,29.494839263000188],[-114.38523057999998,29.571929303000104],[-114.45478059499999,29.6794731440001],[-114.45423157999994,29.741203850000147],[-114.5359036719999,29.868926955],[-114.53958852399995,29.94685015600004],[-114.76079566599986,30.165532837000057],[-114.82672855499999,30.175343352000084],[-114.81314065099997,30.28522641400008],[-114.95395662499999,30.387415896000164],[-115.01995857999998,30.470846845000096],[-115.10639159299996,30.461407146000056],[-115.13149254299998,30.548496964000094],[-115.24959556999988,30.635747882000146],[-115.36131259299992,30.664211652000176],[-115.45777153499989,30.80882546600003],[-115.52776361199989,30.762887105000175],[-115.57467662099998,30.831377815000053]]]]},"properties":{"objectid":60,"eco_name":"Baja California desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Nearctic","eco_biome_":"NE13","nnh":1,"eco_id":426,"shape_leng":31.1232410861,"shape_area":7.11070081572,"nnh_name":"Half Protected","color":"#E0B45B","color_bio":"#CC6767","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":77885.50818626888,"percentage":0.295220152557054}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[71.60415649200019,35.24721033700018],[71.5502625310001,35.29269523700003],[71.57648464400017,35.35669291200003],[71.47831763800019,35.44104570400009],[71.40605155100013,35.44476073100009],[71.2707595870001,35.52299875600005],[71.21171561700015,35.49891335700016],[71.22851563299997,35.31713183800019],[71.20865655800009,35.250922346000095],[71.09517648500008,35.20953753800018],[70.94565557000016,35.044498702],[70.85867354300007,35.01608723500016],[70.7938235960001,35.155320873],[70.84275848800013,35.26464318700016],[70.77493263100018,35.30358215600012],[70.81021155800016,35.37419851700008],[70.64378350600015,35.26986494500005],[70.6143345270001,35.071655063000094],[70.69528158399999,34.968267640000136],[70.68424261700011,34.88123783600008],[70.69231455800019,34.8319991840001],[70.54859961900019,34.80367874500013],[70.48493152100002,34.75211310900005],[70.39116652300015,34.77013353000007],[70.39769753400003,34.86354129100016],[70.36874359100005,34.93762843100012],[70.36349450799997,35.140657069000156],[70.33128352400007,35.227286888000094],[70.26121550700003,35.25693015900009],[70.04549448900002,35.27260398300018],[70.11562352600015,35.04042878500013],[70.20010355400012,34.90762322900014],[70.1417235990001,34.82777219000013],[69.96121964900004,34.90868303700006],[69.90972157099998,34.8020806510001],[69.79778259500006,34.73436744600019],[69.68053452200002,34.84103588100004],[69.65875263700019,34.97419934499999],[69.59107949800006,35.042678488000035],[69.40119955100005,35.068531127000085],[69.35865753700011,35.15159696100011],[69.41807550800002,35.295972394000046],[69.34497056000015,35.32111458300011],[69.18712658200002,35.26175930900013],[69.00904064400004,35.14804605200004],[69.11007660800004,35.11476369400009],[69.34864853900012,34.97045364000013],[69.38152353700008,34.863820241000155],[69.35873448300009,34.698998329000176],[69.45306358300013,34.530629867000016],[69.43666858100005,34.43888138699998],[69.60413364200014,34.338878241000145],[69.64640056200017,34.214259457000026],[69.77438350600016,34.21000564100012],[69.88571948800012,34.165962931000024],[69.99452262700004,34.18619919200006],[70.17469750300006,34.12154202900007],[70.50063350800008,34.113523397999984],[70.67717751100014,34.12559300300006],[70.90804261700015,34.10899549400017],[71.04837059700014,34.07730720600017],[71.09509249800016,33.971025344000054],[71.16117056200017,33.899086319000105],[71.1458816350002,33.852376655000114],[71.27916764200012,33.799009915000056],[71.25447053200014,33.75941129000006],[71.0872195440001,33.786819443000184],[70.98729653000015,33.692282136000074],[70.72042058800008,33.67762269000019],[70.57903263300005,33.58821594700004],[70.42722362600006,33.596474803000035],[70.44452655700019,33.69041313900004],[70.35022763100017,33.868558086000064],[70.1714785170002,33.94833687300013],[69.92118063800018,33.982583988000044],[69.95982355900014,34.08714605100005],[69.78274562800016,34.127499718000024],[69.73207048600017,34.07251627800008],[69.82621753100017,34.0112621670001],[69.77645853000007,33.85780427200007],[69.69301551100006,33.879387840000106],[69.56616261400006,33.99113570900016],[69.50193762200018,33.84213799200006],[69.62859354400013,33.80485495200003],[69.64431749100004,33.75005742100012],[69.54956057900012,33.644836541000075],[69.54557749800017,33.53141681800008],[69.42903149300014,33.471985604],[69.42253149500004,33.349804948000155],[69.31101949300006,33.23485636600009],[69.3194195010002,33.16667042200004],[69.41503153600007,33.17742406800005],[69.48133859200004,33.13463545800016],[69.34369651000009,32.954899794000085],[69.30915854300014,32.87092955300011],[69.22174853600012,32.86646266900016],[69.14249462400005,32.7665815630001],[69.22607460400013,32.72925577500013],[69.20148461500008,32.637362791000044],[69.14438658699999,32.57621563400005],[69.08032252800007,32.58621340000019],[68.83699755500004,32.754551185000025],[68.78460663700002,32.7280967260001],[68.76447263500017,32.556295035000176],[68.503707603,32.26940931100006],[68.54885052200012,32.208021426000016],[68.25281561600008,31.958868516000166],[68.07165553099998,31.693359159000124],[67.98054457800004,31.63391604300017],[67.8819276320001,31.63613590600005],[67.73803751100019,31.52892080300012],[67.58110062300017,31.531697728000097],[67.61471557600015,31.46716679700006],[67.82321960800004,31.51369122100016],[67.88907655700018,31.496111688000155],[67.87274961500003,31.360062502000176],[67.77169755799997,31.22166806100006],[67.78707851800004,31.15356861800018],[67.90131363299997,31.17773280600005],[67.95623052100007,31.223866131000193],[68.11659963100004,31.29635769100014],[68.33357961100012,31.29558773000008],[68.49461357400014,31.338646237000034],[68.55049153100009,31.294127770000102],[68.71086852000008,31.35872558900013],[68.8230135230001,31.46381202400005],[68.97612759200013,31.46553165500012],[68.88305661600009,31.286898043000065],[68.64614849300006,31.179401476000066],[68.23693056800005,31.096165489000157],[68.23677064100008,31.05852487600015],[68.41584061500015,31.02805682600001],[68.35314163200019,30.95668022700005],[68.2022786070001,30.98438929000008],[68.13712355900003,31.020957186000032],[68.07803348800002,30.93051041600006],[67.68701954900013,30.858061939000038],[67.52730556900013,30.738953921000075],[67.60327964200019,30.747783753000192],[67.72196152400011,30.71657474300008],[67.83654750500011,30.762572279999972],[67.94101753500007,30.72114455600007],[68.04996450600004,30.712459899000123],[68.00151861500018,30.624369114000103],[68.00373059900005,30.511523383000053],[68.1601255130002,30.417776490000108],[68.16939556200009,30.33479062000015],[68.10848259599999,30.269373050000013],[67.9107665750002,30.203152494999983],[67.78177662900003,30.091953641000032],[67.71711762200005,30.00749188500015],[67.64853655500013,30.05522011800008],[67.52119449100007,30.02641017600007],[67.37068954000011,30.128085343000123],[67.27217854100019,30.075711189000117],[67.28398864200011,30.003429847000177],[67.22296855500014,29.937430406000146],[67.1137315690001,29.924872974000095],[67.04203059000014,30.016759420000028],[66.94515255300013,30.046778200000062],[66.95668756100008,30.109385988000042],[67.059715568,30.246744929000158],[66.93678255200007,30.302944752000087],[66.94856247899997,30.36827028800002],[67.08467050500008,30.407600860000173],[67.40350351799998,30.70555237200017],[67.26200056300007,30.648341189000178],[67.24741353700017,30.698148469000103],[67.32894162700012,30.763337213000113],[67.38996154700015,30.853973079000127],[67.33966057300006,30.881713155000114],[67.20761156700013,30.83505462000005],[66.98739650700008,30.86599272800015],[66.91197161600019,30.824713028000076],[66.82488263599998,30.86611258900001],[66.61123664100018,30.845264281000027],[66.51831855000006,30.684191092000162],[66.50901061500008,30.619686480000098],[66.4413684880002,30.59115347500017],[66.34255959600006,30.49403688900003],[66.25386062000007,30.536536324000053],[66.13825255000012,30.335753700000055],[66.0226436420001,30.086294850000115],[65.9131245210001,29.81858574800009],[65.89100652300004,29.65452809800007],[65.8062205540001,29.495604028000116],[65.6931225290001,29.428145632999986],[65.49632248300009,29.358850428000153],[65.4446795660001,29.29496373],[65.31810763100009,29.217209005000086],[65.34652748000008,29.08784991900012],[65.00164049400013,28.963513773000102],[64.91092650900015,28.975303423000184],[64.712531555,28.884187106000127],[64.50303661300018,28.804961356999968],[64.36925557100011,28.84791039700019],[64.26544150900008,28.75200147600009],[64.05189559399997,28.671922449000192],[63.90761957100011,28.57456060900006],[63.864730545999976,28.4805644380001],[63.911369635000085,28.42004676100015],[64.09587862500001,28.381987389000017],[64.35178349400013,28.37333776800017],[64.56649063800012,28.468304731000103],[64.68303664300015,28.536381040000038],[64.87944056000009,28.540021803000116],[65.01763148900011,28.66524592800016],[65.308776561,28.730104089000065],[65.32498950899998,28.585770063000098],[65.21737660100007,28.44763546000013],[65.18814856900002,28.35894922500006],[65.423019555,28.413485910000077],[65.58400758400012,28.400296649999973],[65.55782352400007,28.303091552000183],[65.46943652300007,28.18758540500005],[65.43285353900012,28.070620137000105],[65.37483953700007,28.02206209600007],[65.07312052700013,27.848070550000045],[65.00560748200007,27.771704706000037],[64.99992354500006,27.664787161000163],[64.92278254300004,27.603002811000067],[64.79412854400005,27.54952124000016],[64.58943961799997,27.557918901000164],[64.44943249800008,27.496808289000057],[64.21673561100016,27.45336807000018],[64.07422649300014,27.292937102000053],[64.02497057400012,27.181454940000094],[64.09208648500015,27.106316374000187],[64.24958060200004,27.136232057000143],[64.50646263200008,27.234971547000043],[64.62985262900003,27.343726071000106],[64.9824145880001,27.544478184000184],[65.06695563700004,27.539876687],[65.13407858800014,27.46473778600017],[65.05505350200013,27.367314925000187],[64.87424461900014,27.258934738000107],[64.74948149800008,27.22723689500009],[64.58576163900005,27.131676158],[64.34178958300004,27.018488949000073],[64.14582856600015,26.985167698000055],[63.980403492000164,26.908944850000125],[63.98999054500018,26.82994440699997],[63.94588061200011,26.746778158000154],[63.69171850900011,26.65080134300007],[63.628868484000066,26.688968507000027],[63.45513962700005,26.737358575000144],[63.19411056600018,26.704193060000023],[63.1763835110001,26.629390441999988],[62.991378479000105,26.64911138400015],[62.772766542000056,26.64800363100005],[62.74748957200012,26.61272403300012],[62.61415863800016,26.578836669000054],[62.44609862900006,26.567171239000118],[62.310272570000166,26.501065013000073],[62.273879520000094,26.428288300000077],[62.28788752400004,26.360153486000172],[62.39836151100019,26.321489107000048],[62.36297261300007,26.221689809000168],[62.48643150900017,26.228714347000164],[62.72209961300018,26.185640250000176],[62.96453459600008,26.16693821200016],[63.07693860000012,26.171816815000113],[63.19533164100005,26.13512654200008],[63.227729541000144,26.075626262000185],[62.88878247500014,26.02809852400003],[62.89102949600016,25.967488311000068],[63.07994049500007,25.970950037000136],[63.20063051300008,25.925887417000183],[63.42568260200005,25.888887852000096],[63.559940574000166,25.94481425700019],[63.69699055800015,25.898860641000056],[63.54058860400016,25.786403831000086],[63.50373857200009,25.65918866900006],[63.586536521000085,25.621688537000068],[63.652759591,25.684067331000108],[63.82763660100011,25.732283055000153],[63.978946550000046,25.748788364],[64.19280259500005,25.706901311000024],[64.308402619,25.772089217000143],[64.4916685730002,25.74404873300017],[64.5825805390001,25.78465570100002],[64.728446609,25.801457058000096],[64.79295356900008,25.883175250000136],[64.94626662500013,25.88582493700011],[64.94586949000006,25.929835126000057],[65.11976648800004,26.01109516200006],[65.26402256300008,25.997742958000174],[65.19864656800007,25.860101212000018],[65.2904666290001,25.791354350000177],[65.35475951400014,25.797349255000142],[65.43047358100017,25.74835552200011],[65.51465655500004,25.77850321600016],[65.56097461700011,25.595217481000077],[65.53942859900013,25.407940450000126],[65.64267755300017,25.348601102000032],[65.85640753500007,25.420806839000193],[65.9304965180001,25.49724309100003],[66.00102956300009,25.461876824000115],[66.0959016430001,25.492954574],[66.17318748400015,25.5981095730001],[66.21984853300012,25.716766979000113],[66.30118551600015,25.88664317900009],[66.27339162800013,26.133530796],[66.21652963500014,26.287362691000112],[66.24912249800008,26.355445706000012],[66.37150549300009,26.485536867000064],[66.34500158000014,26.623933488000034],[66.35044864300005,26.785513447000085],[66.41668663300004,26.774845966000044],[66.48705254300012,26.497161225000184],[66.58912652200019,26.39132410700006],[66.73226947900008,26.061038900000085],[66.85353064000014,25.658677540000156],[66.95157661100018,25.698535669000137],[67.05120056000015,25.569661728000085],[67.07858256100013,25.427546560000167],[67.14116654400016,25.446117505000075],[67.1995315800001,25.641497489000187],[67.18093163400016,25.745582454000157],[67.23013256800004,25.761461801000166],[67.26097864200017,25.89694654900012],[67.35878757300009,25.832328614],[67.39124263700012,25.88243713999998],[67.37019349900004,26.035760086000153],[67.42505657600003,26.09229769900014],[67.54447958600014,25.870535843000027],[67.60025763099998,25.823819976000152],[67.6184616160001,25.745133519000035],[67.73739663100008,25.58457095500006],[67.74453751000004,25.34677233800005],[67.81519360100009,25.325283485000114],[67.91349756700004,25.24299817400015],[67.949096516,25.356672875000072],[67.96018258800012,25.481285959000104],[67.91237657100015,25.64409621400017],[67.9133076330001,25.720484688000113],[67.96196759900016,25.88925598500009],[67.91638161200018,26.02881048300003],[67.90994263400012,26.157943592000038],[67.87426757800012,26.273788199000137],[67.80925753700006,26.251330398000107],[67.81249948900006,26.096159578000027],[67.72222857100007,26.06648780800009],[67.67323249200007,26.164664202000097],[67.41219354000015,26.49340747399998],[67.33370958900008,26.50190890300007],[67.29469250000005,26.733038541999974],[67.3014525050001,26.86481278900004],[67.33120759100018,26.94192059800008],[67.38345350200018,27.206894853999984],[67.35366857700018,27.270805022000104],[67.3935625810002,27.358718278000083],[67.40167257500013,27.497254206000093],[67.37230657700007,27.59244127800008],[67.49545249300019,27.742782781000187],[67.51776863900011,27.9394855970001],[67.48947954900018,28.018991134000146],[67.36959050500008,28.22623369000013],[67.3850175660001,28.413336880000145],[67.31513260999998,28.510112155000172],[67.30966157400013,28.64431665100011],[67.35652948800004,28.786972787000025],[67.439437575,28.87348760700013],[67.44290952700004,29.015552819000106],[67.59290351700008,29.162587997000117],[67.58203855800008,29.214583960000027],[67.69936357800015,29.299751808000053],[67.79222148600013,29.43546554900007],[67.73078163300005,29.498933991000058],[67.75644651800002,29.597160173000134],[67.91847256200015,29.667016463000152],[68.04189256600006,29.619346233000158],[68.14727052300009,29.527644021000185],[68.20060759100005,29.52828272200003],[68.312728622,29.450204958000086],[68.26094052999997,29.31374103700017],[68.43409757400002,29.190914807000183],[68.46237157700006,29.107189149000135],[68.54666854500016,29.16202691300009],[68.82685059100015,29.078719345000138],[69.01415259900011,29.081109360000085],[69.10839855100005,29.023801450000065],[69.05061354300011,28.950394251000148],[68.73544358900011,28.95728518100009],[68.6112675380001,28.989222914000038],[68.49691055000011,28.95289423700001],[68.58457151100009,28.79954044500016],[68.70803862200006,28.758421008000084],[68.91091152400014,28.753792353],[69.13741250900011,28.780160144000092],[69.25659948400016,28.772901584000067],[69.44249752400015,28.830718275000038],[69.82289159200002,28.999462414999982],[69.89758256300013,29.078809199000148],[70.02192658800004,29.328268719000107],[70.0502475310002,29.43704620900013],[70.05496251900007,29.58696945500003],[70.14865157700007,29.808452362000082],[70.30886863900008,29.928894611000032],[70.35545358000013,30.03023500600017],[70.5217976460001,30.311512398000048],[70.53810162100001,30.514843119999966],[70.47193152400007,30.94644357600015],[70.37171950200019,31.183654621000187],[70.35439259900016,31.36122641300011],[70.23043062100004,31.576108069000156],[70.21427953200009,31.85001978000014],[70.19023855700004,31.97981556200017],[70.14821655600008,32.05500324500014],[70.16542862699998,32.148880058000145],[70.33524363800018,32.236226363000014],[70.33582249200015,32.40400188900014],[70.40335062499997,32.456239251000056],[70.57196853300019,32.452500587000145],[70.57613350100019,32.55242745700008],[70.44341260200014,32.59761496800013],[70.39256261300017,32.65687401800017],[70.41573354600007,32.73938061100017],[70.37362655200008,32.784300236000036],[70.22902648500019,32.84744714800007],[70.25393649500012,33.01303399200009],[70.46781953000004,33.20699827300018],[70.52134653200005,33.30987339400008],[70.62304651000017,33.37004154500005],[70.75917850800005,33.315461944000106],[70.73806751200004,33.25336478200006],[70.61148048900003,33.174856188000035],[70.64894860200013,33.07605936600015],[70.79077962400015,33.104981458000054],[70.85399660900015,33.197896532000186],[71.03856662000015,33.199018366000075],[71.08889056100008,33.25175512100003],[70.88667262000007,33.2584266130001],[70.91072851500019,33.35092208800006],[71.08155052800004,33.38989173500005],[71.31305651500003,33.40989213000012],[71.57270055000004,33.4668976210001],[71.78585855100016,33.47409935200011],[71.90714251100007,33.46193067300004],[72.00116751500019,33.36400255100011],[72.0110476000001,33.189195948000076],[72.03791059399998,33.09962156700004],[72.04772949000011,32.93055573000004],[72.02362850100019,32.80631044300014],[71.89054164800007,32.55184743000012],[71.89830060800011,32.449861461000125],[71.93894948600007,32.41879963700006],[72.15239750100017,32.39581226700005],[72.58827255900019,32.5620669810001],[73.01509851500015,32.606575726000074],[73.14376056200007,32.651534243000185],[73.36640955900015,32.69406284600018],[73.74114249000019,32.61421633300017],[73.86150360200014,32.56729695400003],[74.05024763300014,32.41144066100014],[74.19773861900018,32.33312317500008],[74.30034652500007,32.24571719100015],[74.40618850400017,32.11995008700006],[74.51088752800007,32.03073495400008],[74.73416164700018,31.93591417100015],[74.80323054100006,31.949255646000097],[74.8834225560002,32.02642430800012],[74.69523659200013,32.14566040200003],[74.44371059700012,32.34180213300016],[74.37442762900008,32.34586484100004],[74.20342255500009,32.43131113600009],[74.1302795530001,32.52630928000008],[74.13514759499998,32.62656388200014],[74.02192652300005,32.783900252000024],[73.7307965390001,32.98024415500015],[73.46111249200015,33.10519821400004],[73.32032049100002,33.189538768000034],[73.05664861500009,33.41269906200006],[72.94341262400019,33.54394843400007],[72.8461686330001,33.72401233400018],[72.84414658300011,33.80346607000007],[73.10529349300009,33.95613371900009],[73.08347355500018,34.034061447000056],[72.96130362800005,33.98544473200013],[72.86667663500015,34.14029838200008],[72.78763562400019,34.175476391000075],[72.67662854800011,34.13832964000005],[72.55113251400019,34.2280071190001],[72.52100359500014,34.28734646800007],[72.43701960800013,34.25795515699997],[72.32412760900013,34.32505430300017],[72.27361256100005,34.38885282400014],[72.14230351000015,34.360731371000156],[72.14803354600014,34.4984698450001],[72.09604663599998,34.524218046000044],[72.06501750100011,34.67109514100002],[71.99495652500019,34.753962995000165],[71.87770861900009,34.79464204700014],[71.90519757400017,34.91913962899997],[71.81198863100019,35.0113073710001],[71.73082750100002,35.03104507699999],[71.53831463100005,35.020352115000094],[71.44565554100018,35.10393813000002],[71.60415649200019,35.24721033700018]],[[69.50367753800009,32.85091105300006],[69.63021862700003,32.811365234000164],[69.87702158700012,32.85561782700012],[69.88588762900008,32.81730800300005],[69.78391255700012,32.69408195700004],[69.81582648600005,32.55687523100005],[69.89727763000008,32.45757046500006],[69.66362755200004,32.436528871000064],[69.80637354300018,32.32947352700006],[69.74217252300014,32.28332494700004],[69.58188656200002,32.40119093400017],[69.50327252400018,32.39765125700012],[69.24746656200017,32.33142215200013],[69.1927035650001,32.35576353400012],[69.17445364800005,32.465280140000175],[69.22312953900007,32.574799595],[69.30223056500012,32.635642657000176],[69.36915553600016,32.86684773300004],[69.45434551100016,32.909438195000064],[69.50367753800009,32.85091105300006]],[[66.82438659500008,29.98736861200007],[66.77787759400013,29.98715034700018],[66.83258862300016,30.19312589500015],[66.91451250600005,30.13917594200018],[66.82438659500008,29.98736861200007]],[[67.41125459900013,29.8342350960001],[67.51349655100017,29.67693627799997],[67.48895249399999,29.57800987100012],[67.40116161400005,29.616048457000147],[67.3674165750001,29.680217122000045],[67.43318953700015,29.734544092000135],[67.36544062500008,29.78081219799998],[67.41125459900013,29.8342350960001]],[[66.90711950000014,29.54378136400004],[66.99932060300006,29.509172653000064],[66.88307148400008,29.326590494000072],[66.77938851500016,29.36713912400006],[66.76383958200017,29.425465939000162],[66.86480748499997,29.563621496000053],[66.90711950000014,29.54378136400004]],[[66.76463351600012,29.26877195800006],[66.71781958100019,29.177005374000146],[66.60881762400015,29.189825997000128],[66.52458955500015,29.160045095000044],[66.53079249900003,29.28712128600006],[66.76463351600012,29.26877195800006]],[[66.92326354800008,29.27261288200009],[67.11358656200008,29.183045373000084],[66.90895061000015,29.141136863000042],[66.93776658800016,29.02827219000011],[66.80874663399999,28.836349070000097],[66.76631157300017,28.832670085000075],[66.71180757700012,28.663925946000177],[66.71040360800004,28.583300084000086],[66.4177166020001,28.36196821900012],[66.32446256400016,28.469124648000047],[66.35462953700016,28.582039278000025],[66.4473804920001,28.707843933000163],[66.50334964500013,28.925796382000158],[66.61627148300005,29.02509259900006],[66.72255753500013,29.088339925000184],[66.71585050400006,29.153686416000028],[66.92326354800008,29.27261288200009]],[[66.93374662700018,28.970813573000157],[66.98811349500005,28.798110325000152],[66.92327863600008,28.739111785000034],[66.93145752900011,28.634906959000148],[66.8774334810002,28.597688459000153],[66.81388859700013,28.669195480999974],[66.8977966440001,28.81159982500003],[66.86237354800016,28.867818758000112],[66.93374662700018,28.970813573000157]],[[66.36289258400018,29.138126922000083],[66.36876662200001,29.08242934300017],[66.26257360900007,28.901716180000108],[66.21803251000006,28.726944279000122],[66.11675263300015,28.76732275600017],[66.18855251900004,28.839678865000167],[66.19270357200003,28.958414223000034],[66.27039358900015,29.103248314000098],[66.31807756600017,29.11326787300004],[66.37325261700005,29.369649001000028],[66.43750761600012,29.27350186600006],[66.36289258400018,29.138126922000083]],[[66.9595335520001,29.803142426000193],[66.9254684920001,29.642237545000057],[66.81050851000015,29.575640977999967],[66.72293052999999,29.402736564000065],[66.68025256100015,29.419976966000092],[66.73426856300011,29.526741960000095],[66.87644156699997,29.744203565000134],[66.9595335520001,29.803142426000193]],[[64.33533451200003,26.63942592700016],[64.46307354300012,26.62422165700019],[64.54859963300015,26.586572160000173],[64.65009358400016,26.592043866000097],[64.68350955000011,26.551733953000053],[64.61154152400013,26.48416894000013],[64.27680954900006,26.400146731000177],[64.2489925270001,26.349803847000146],[64.15518964300009,26.321273189000124],[64.09741251400004,26.176737830000093],[64.01897449600011,26.239854902000104],[63.86785163200011,26.268718489000037],[63.670619582000086,26.32919995500015],[63.52116354300006,26.296096299000112],[63.59175157300007,26.44071782400016],[63.73954061900014,26.54539622800013],[64.20340754700015,26.62736235600005],[64.33533451200003,26.63942592700016]],[[64.93479951000018,26.31111767600015],[64.84410849100016,26.259008892000054],[64.61560054400007,26.166444183000067],[64.33960760600007,26.117915310000114],[64.51364860600006,26.277837161000093],[64.597412485,26.27742913000003],[64.82290663500004,26.338366405000045],[64.93479951000018,26.31111767600015]],[[62.71958956900016,26.316187386000024],[62.787158605000116,26.281158071000107],[63.02450962800003,26.271599517000027],[63.10776858100007,26.31095758100014],[63.20653958700012,26.30502788800004],[63.31187848500002,26.229761247000113],[63.24686861100008,26.183412340000075],[63.11388049700008,26.197331663000057],[63.0110814840001,26.179783479000093],[62.937759612000036,26.213371944000187],[62.84656953500007,26.20594138700011],[62.751190517,26.23571005100007],[62.71958956900016,26.316187386000024]]]},"properties":{"objectid":65,"eco_name":"Baluchistan xeric woodlands","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Palearctic","eco_biome_":"PA13","nnh":4,"eco_id":814,"shape_leng":112.211253187,"shape_area":27.0215269751,"nnh_name":"Nature Imperiled","color":"#D94F5C","color_bio":"#CC6767","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":289391.40032535075,"percentage":1.0969200219946884}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-88.60044852199997,16.34291986900007],[-88.71200561799992,16.387203978000173],[-88.72946964899984,16.31740535600011],[-88.60044852199997,16.34291986900007]]],[[[-88.50007657199995,16.369438031000072],[-88.4750215549999,16.443587532000095],[-88.39652251699994,16.54689616500019],[-88.55072053399994,16.61628357100011],[-88.58058156699991,16.57862116600012],[-88.50007657199995,16.369438031000072]]],[[[-88.33767652699999,16.71268652200007],[-88.4203645049999,16.736519123000164],[-88.4564895019999,16.695705792000183],[-88.36115256199997,16.641066008999985],[-88.33767652699999,16.71268652200007]]],[[[-88.75484451899996,17.065247642000145],[-88.83496059399988,17.13698919000018],[-88.92666666199989,17.084237515000098],[-88.92916061299991,16.879990315000157],[-88.7956166109999,16.893732278000016],[-88.67526253999995,16.97369647300019],[-88.6614835289999,17.087500422000176],[-88.75484451899996,17.065247642000145]]],[[[-88.39947562899994,17.532377812000163],[-88.45723750299999,17.543489366000074],[-88.55228459699993,17.483095071000037],[-88.51807352399999,17.39311936400003],[-88.34430661299996,17.475738275000083],[-88.39947562899994,17.532377812000163]]],[[[-88.46250150599997,17.935479462000046],[-88.54366263599991,17.933640639999965],[-88.61437957999993,17.876625929000113],[-88.67167659399996,17.726559184],[-88.66270460499999,17.612645097000154],[-88.74125661599999,17.56406593300005],[-88.71939057799989,17.512792322000053],[-88.61881260099989,17.61954776099998],[-88.62654859499997,17.764817878000088],[-88.58559461599998,17.863137770000094],[-88.47341155899994,17.666888918000097],[-88.34697758999988,17.630288834999988],[-88.30471050199998,17.77393822700003],[-88.25429553399994,17.842337072000134],[-88.27158354399995,17.929797705000055],[-88.3716275939999,17.870217461000095],[-88.46250150599997,17.935479462000046]]]]},"properties":{"objectid":67,"eco_name":"Belizian pine savannas","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Neotropic","eco_biome_":"NO07","nnh":3,"eco_id":564,"shape_leng":11.0412966966,"shape_area":0.239735268467,"nnh_name":"Nature Could Recover","color":"#FFAA01","color_bio":"#FEAA01","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":2837.6396943277014,"percentage":0.013235867383192124}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-65.28311150899992,-16.180115899999976],[-65.20059955099993,-15.99449865399987],[-65.20960959399997,-15.91301767099992],[-65.3122106269999,-15.955767220999974],[-65.29494457699997,-16.030592469999874],[-65.38793961299984,-16.124718560999895],[-65.39340260299997,-16.186933404999877],[-65.28311150899992,-16.180115899999976]]],[[[-65.19845562799998,-15.760606506999977],[-65.24937451599988,-15.707681829999956],[-65.35298154499992,-15.759372523999957],[-65.49694861099994,-15.866900773999873],[-65.43769056699989,-15.93567328399996],[-65.34214055899992,-15.92755675199993],[-65.24042549299998,-15.853417476999937],[-65.19845562799998,-15.760606506999977]]],[[[-64.87989854699987,-15.565073972999812],[-64.88767259499997,-15.437985209999852],[-64.9612345239999,-15.30676265999989],[-65.0152055989999,-15.36992851499997],[-65.00473760799991,-15.457620991999931],[-65.06743658999983,-15.574383249999926],[-65.14120454699992,-15.784825010999839],[-65.1392515629999,-15.973092949999966],[-65.16759463399995,-16.137341539999852],[-65.11642462399993,-16.16884760499994],[-65.14394358499999,-16.27781687299995],[-65.07453958299993,-16.366224995999914],[-65.01589157399991,-16.227376757999878],[-64.88474261699992,-16.06947896899993],[-64.81457552599994,-15.933676379999952],[-64.84310148999992,-15.827082207999979],[-64.81264450299994,-15.653839500999936],[-64.87989854699987,-15.565073972999812]]],[[[-68.06552148599991,-13.723756088999949],[-68.07587464499989,-13.815706907999925],[-67.98364252999988,-13.792932606999955],[-68.06552148599991,-13.723756088999949]]],[[[-67.56675751099988,-13.48717385499998],[-67.80753354699993,-13.48536906299995],[-67.96496563799991,-13.554278532999945],[-68.03464557199999,-13.640676508999888],[-68.08787551899997,-13.552528391999942],[-68.20235454699986,-13.587005170999817],[-68.22872954599995,-13.633786248999968],[-68.16966260999993,-13.739177114999848],[-68.07604949199998,-13.699630624999884],[-67.93396751599983,-13.729608668999958],[-67.94139857599998,-13.59940753799998],[-67.66096456999998,-13.55159548599994],[-67.6601406289999,-13.651774818999968],[-67.58866864399988,-13.644131529999925],[-67.53730752599989,-13.559559969999953],[-67.56675751099988,-13.48717385499998]]],[[[-67.9970016069999,-12.924329725999883],[-68.10029548799997,-12.967726694999953],[-68.21521758299991,-12.983896559999891],[-68.31053155699993,-13.119487589999892],[-68.28561349999984,-13.14664462099995],[-68.08699759899997,-13.045383350999941],[-68.00398255899995,-12.969623686999967],[-67.9970016069999,-12.924329725999883]]],[[[-67.65265659599993,-12.943534174999911],[-67.62171949399982,-12.869444185999896],[-67.73198661499998,-12.884890189999908],[-67.77985348499993,-12.946644196999955],[-67.89540053499991,-12.981123657999944],[-68.02517653599989,-13.048848262999911],[-68.04247259399995,-13.19231073799989],[-68.07686655999998,-13.292681849999894],[-67.95771059799995,-13.259905087999982],[-67.98406950399988,-13.156410040999958],[-67.84649648899995,-13.142880978999926],[-67.76170347999994,-13.062274394999974],[-67.68740863699992,-13.043562466999902],[-67.65265659599993,-12.943534174999911]]],[[[-68.65718863299998,-12.836707321999938],[-68.76363360599993,-12.898086489999855],[-68.80426052299993,-12.970161469999937],[-68.74443854499998,-13.153970236999896],[-68.6478495159999,-13.067773090999879],[-68.68042762699997,-12.939435424999886],[-68.65718863299998,-12.836707321999938]]],[[[-67.18046559999993,-12.633511213999896],[-67.27829749799992,-12.614349344999937],[-67.40308358399994,-12.672720415999947],[-67.42033354099993,-12.826889263999874],[-67.32807963199997,-12.959046395999906],[-67.46131853299988,-12.977042173999962],[-67.6137545069999,-12.96267005999988],[-67.64392851999992,-13.04229059699992],[-67.74645947999994,-13.094321092999962],[-67.76131455899991,-13.146218652999892],[-67.57326555599997,-13.169727208999973],[-67.37355749199997,-13.149297325999953],[-67.2733156299999,-13.068262761999904],[-67.2700275769999,-13.001223294999875],[-67.15757763999994,-12.841702097999928],[-67.10854350699998,-12.644866512999954],[-67.18046559999993,-12.633511213999896]]],[[[-68.67061660899998,-12.654720613999928],[-68.77572651299988,-12.769985025999858],[-68.82055661899994,-12.789573533999942],[-68.83843957699997,-12.884327428999882],[-68.9401325149999,-12.963299875999951],[-68.92280561199988,-13.056824816999892],[-68.85962651399996,-13.04300942899988],[-68.84028661399992,-12.951356669999939],[-68.7728275479999,-12.853224532999832],[-68.75737752099991,-12.77472080099983],[-68.6723555189999,-12.744204638999918],[-68.67061660899998,-12.654720613999928]]],[[[-67.50969653099992,-12.387253747999978],[-67.54679852299995,-12.368455317999974],[-67.75017551299993,-12.605509118999976],[-67.87287148799987,-12.648666029999958],[-67.95386464499995,-12.619396255999959],[-68.02824364199995,-12.69856484099995],[-68.06109651199989,-12.820345679999889],[-68.13021854699986,-12.793429376999939],[-68.18323559299995,-12.829299898999977],[-68.29686754599993,-12.812297207999848],[-68.18756853399992,-12.670409859999893],[-68.12462664399999,-12.68216095299988],[-68.09342953599997,-12.513059240999894],[-68.2325825399999,-12.64923499299988],[-68.29685262599992,-12.73802399099992],[-68.36944560799998,-12.661032186999876],[-68.40051262899993,-12.780386296999893],[-68.52571848099996,-12.824939297999947],[-68.63126357399989,-13.002042373999814],[-68.52587153499985,-13.024963861999822],[-68.4847645019999,-12.9774119839999],[-68.3702925149999,-12.942591210999979],[-68.28431648399999,-12.961123095999938],[-68.11924764199983,-12.911864494999975],[-68.04836255699996,-12.853441456999917],[-67.99325556699995,-12.880780374999858],[-67.82942959299993,-12.79421727599987],[-67.65058861299997,-12.768372179999972],[-67.75511161599997,-12.702266623999947],[-67.61866764299998,-12.679069203999973],[-67.5253825929999,-12.569398706999948],[-67.42983258399994,-12.561969154999929],[-67.36033654899995,-12.513574392999885],[-67.24424752499982,-12.517434929999922],[-67.19911952599989,-12.485754353999937],[-67.26452653399986,-12.407688492999966],[-67.31238552499997,-12.47082115499984],[-67.54461654599999,-12.529773091999914],[-67.50969653099992,-12.387253747999978]]],[[[-67.57702651599993,-12.050101917999939],[-67.65008553099989,-12.02666142299995],[-67.69956960499991,-12.127115682999943],[-67.71123453199988,-12.247053340999969],[-67.61218256399997,-12.218878243999882],[-67.62171161499998,-12.101473261999956],[-67.57702651599993,-12.050101917999939]]],[[[-65.6649554789999,-11.80619842599998],[-65.70323948599992,-11.919026721999899],[-65.80796851699984,-12.040505476999954],[-65.89958154499993,-12.04515022499993],[-65.90031462599995,-12.118392132999873],[-65.8241045179999,-12.12488861099996],[-65.70294159299988,-12.05997429099989],[-65.60639162399997,-11.804153744999951],[-65.6649554789999,-11.80619842599998]]],[[[-65.29894257699982,-11.614208754999936],[-65.35288263899992,-11.683939818999932],[-65.33727251699992,-11.87178815999988],[-65.41196449499995,-11.883592225999905],[-65.50946061299999,-11.551786877999973],[-65.58395360399999,-11.606081325999924],[-65.49305756399986,-11.755174931999818],[-65.50587449999995,-11.858190868999884],[-65.45130160499997,-11.92491551199987],[-65.47333561599999,-11.978583664999974],[-65.46160162299998,-12.105649125999946],[-65.63119551999989,-12.033330064999973],[-65.68298361099994,-12.10201221799997],[-65.78509564399997,-12.167512935999923],[-65.86947659899994,-12.182479829999977],[-65.82805658599995,-12.280021042999977],[-65.85626252799995,-12.39624920599988],[-65.96224951499994,-12.400627073999942],[-66.01132153399993,-12.281708151999965],[-66.07298250199995,-12.312786907999964],[-66.12007153099984,-12.15516454799996],[-66.19146757699997,-12.180426095999962],[-66.17924458299984,-12.258781802999977],[-66.28176850199998,-12.390613549999898],[-66.40440362499993,-12.446896855999967],[-66.34869363999996,-12.217207562999931],[-66.45407863899993,-12.196361937999939],[-66.39113658099984,-12.131073281999818],[-66.40194655399995,-12.0471850159999],[-66.51167253899996,-12.098215550999953],[-66.48077349199997,-11.94259110199988],[-66.62032362999997,-11.761979695999912],[-66.67378961099996,-11.778505455999891],[-66.55011747899988,-11.945730962999903],[-66.62770054299989,-12.108171742999957],[-66.62946359199992,-12.193166252999902],[-66.68120558399988,-12.27186779799996],[-66.66826660699985,-12.348835629999883],[-66.59455162499995,-12.435836766999955],[-66.59111755899994,-12.556040467999935],[-66.65171050499998,-12.663808272999972],[-66.67194358099988,-12.795192258999975],[-66.82169348999997,-13.126614889999928],[-66.8344195659999,-12.939097465999907],[-66.78088351199995,-12.783349131999898],[-66.71988655799998,-12.685594683999966],[-66.67801660499993,-12.570676611999886],[-66.82568361099999,-12.577350114999888],[-66.78143353199988,-12.355666042999871],[-66.69334459099991,-12.21182168799993],[-66.79315159999999,-12.153981693999981],[-66.67091361199994,-12.089407343999937],[-66.73747262899997,-11.917726856999934],[-66.81455261099995,-12.033184890999962],[-66.8246155889999,-12.188696351999909],[-66.87619748599991,-12.222832155999924],[-66.91418460599994,-12.477989860999855],[-66.96540054899987,-12.592961074999948],[-66.96752150599991,-12.75395916199983],[-66.99465154699982,-12.87052813399987],[-67.04072552799994,-12.932269902999963],[-67.07464558099991,-13.055782778999912],[-67.04612749699987,-13.083267876999969],[-67.03776554299998,-13.259752201999959],[-67.13152349999984,-13.421248341999842],[-67.06237749299999,-13.531074910999962],[-67.07907860199998,-13.648278224999956],[-67.14393659599989,-13.68870129399994],[-67.09300261999994,-13.745774510999922],[-67.17764257499994,-13.781817364999881],[-67.19744850999984,-14.004746485999874],[-67.26974460399992,-14.06766624799991],[-67.43752264499989,-14.154596641999944],[-67.46455361199992,-14.368585623999877],[-67.23157458999992,-14.393578782999953],[-67.15526557599998,-14.498185102999912],[-67.04682151799983,-14.557708181999942],[-66.94773049099996,-14.692937281999946],[-66.94719656399991,-14.963087865999967],[-66.93241155699997,-15.05110002799995],[-66.83987450799998,-15.012943592999875],[-66.79264851899984,-14.890048631999889],[-66.72109958699991,-14.820912179999937],[-66.63947259099996,-14.67848419899991],[-66.57163952499991,-14.660152640999968],[-66.52719163299997,-14.55800003999991],[-66.42893963499995,-14.513593219999905],[-66.32356251499982,-14.531330835999881],[-66.21753663699991,-14.379787869999973],[-66.08074950899999,-14.352443587999915],[-66.02675664099996,-14.371843501999876],[-65.96789556499982,-14.318100750999918],[-65.8626255659999,-14.273877829999947],[-65.76127662199991,-14.353476405999857],[-65.96031949799993,-14.36319203699992],[-65.96202052099989,-14.460277609999878],[-65.99627652099997,-14.590357035999943],[-66.09033957999998,-14.762907900999892],[-66.14270049099997,-14.708952248999935],[-66.27972449099997,-14.685168765999947],[-66.44178758299995,-14.841161683999928],[-66.25151854899997,-14.877438393999967],[-66.21620961399998,-14.820591990999901],[-66.09822057999992,-14.845862255999918],[-66.05873158999987,-14.76100906499994],[-65.98029357299998,-14.70461746399991],[-65.93852956699993,-14.56655075499998],[-65.86840052999992,-14.655992869999977],[-65.74082159299996,-14.656682867999962],[-65.76721955899995,-14.776355825999872],[-65.75103762399988,-14.856761746999894],[-65.79369363299992,-14.956831109999882],[-65.78152461799988,-15.177518070999895],[-65.83496863799996,-15.27730043799994],[-65.83656354699997,-15.62899101399995],[-65.81703957999997,-15.654450373999964],[-65.88465857199998,-15.874532329999909],[-65.67215754499995,-15.89997961999984],[-65.61056564399996,-15.852663776999975],[-65.53487353799983,-15.846346000999972],[-65.45864850999988,-15.756835656999897],[-65.32511154899993,-15.647980550999932],[-65.30221554299999,-15.548364145999926],[-65.21683462699986,-15.439772063999897],[-65.14928453399995,-15.515753010999958],[-65.05815849399988,-15.328017321999937],[-65.00669863799993,-15.266934202999948],[-64.98673260899994,-15.155241486999955],[-65.05860860199994,-15.076519322999843],[-65.07755254199998,-14.945001059999925],[-65.06891649899995,-14.638528000999884],[-65.00401357899989,-14.453352984999981],[-65.06422447699998,-14.409805812999934],[-65.08741753899989,-14.291781742999945],[-65.0372166439999,-14.267329215999894],[-65.08983655599991,-14.158102288999885],[-65.08478562099998,-14.007451325999966],[-65.16264361099996,-13.956054835999964],[-65.19661764399996,-13.99182142299992],[-65.32212859799995,-13.817006773999935],[-65.31391952899992,-13.72748771299996],[-65.41564951499998,-13.641672446999962],[-65.35384353999984,-13.332839044999957],[-65.2935635739999,-13.158397892999972],[-65.2942195419999,-13.016764515999967],[-65.22466248599994,-12.982876481999938],[-65.16391749299999,-12.908617513999957],[-65.11130562799991,-12.708652963999896],[-64.9910355429999,-12.683127721999938],[-64.96590458599997,-12.756576830999961],[-65.00337957199991,-12.888747038999895],[-65.08393049999995,-12.95412873299989],[-65.12129953799996,-13.032752325999866],[-65.17830653799996,-13.06000742599997],[-65.21046454799983,-13.176949726999908],[-65.19766253199992,-13.225245246999975],[-65.26967649199986,-13.427038727999957],[-65.29749250799983,-13.54948358199988],[-65.15217561999998,-13.734211339999945],[-65.14711764399988,-13.817092771999967],[-65.10071559599999,-13.903553108999972],[-65.00123548099998,-13.96830800499987],[-64.98178058099984,-14.132988094999916],[-64.89193764299989,-14.443072579999978],[-64.93954450599983,-14.560786854999947],[-64.93107559799995,-14.682344064999882],[-64.96379854899988,-14.83176238599998],[-64.91299449199988,-14.938236527999948],[-64.8965525509999,-15.073570736999955],[-64.84412357899987,-15.298182105999956],[-64.7591785219999,-15.405159161999961],[-64.61709553999992,-15.435481367999898],[-64.51358758499998,-15.515067202999887],[-64.43421163299985,-15.505654660999937],[-64.23801458099985,-15.657630970999946],[-64.11603559399998,-15.692207830999962],[-63.87960456899998,-15.68712604999996],[-63.79026052099994,-15.657622085999947],[-63.83411748899994,-15.499291119999953],[-63.90820663999989,-15.409181134999926],[-63.92435454399998,-15.336375588999942],[-64.04162558399986,-15.233372391999922],[-64.15360261299992,-15.186306328999876],[-64.18610361099996,-15.07524158599989],[-64.27924348599998,-15.060893611999973],[-64.33000948899985,-14.96202101699987],[-64.41371150899988,-14.891653598999937],[-64.41357454899992,-14.84363451299987],[-64.5765304819999,-14.885282010999958],[-64.66793060999998,-15.013254393999944],[-64.72116055599986,-14.926140268999916],[-64.56352260599982,-14.822681934999821],[-64.55084950399998,-14.765268747999926],[-64.46827652599995,-14.747890882999968],[-64.36151153099996,-14.601526424999918],[-64.45011159999996,-14.48282409199993],[-64.45197254999988,-14.313211250999927],[-64.51387055799995,-14.217505339999946],[-64.44280962099998,-14.04266101899998],[-64.29141250099985,-13.988294485999972],[-64.16681651599998,-13.81281531899998],[-64.17881755699989,-13.705094284999973],[-64.0706256279999,-13.71107292899984],[-64.06674949999984,-13.770814943999937],[-63.946361565999894,-13.771889838999982],[-63.94815847799998,-13.92666670999995],[-64.00778163799993,-14.087975933999928],[-64.12051354199986,-14.188425332999941],[-64.08013154399998,-14.21688038499991],[-64.0830236359999,-14.368210617999921],[-64.03488150399988,-14.364150926999969],[-63.92822647999998,-14.426098723999928],[-63.72503255099997,-14.383196454999961],[-63.68045054899994,-14.310061331999918],[-63.81987764099989,-14.156050566999966],[-63.86341861099993,-14.06646528799996],[-63.84915562899994,-13.96516713899996],[-63.78726549999993,-13.828374310999891],[-63.80032349899989,-13.72480500099988],[-63.78201658399996,-13.565794597999968],[-63.70078655499998,-13.569152555999892],[-63.65026848899993,-13.613788369999952],[-63.701320481999915,-13.686267524999835],[-63.63776352799994,-13.75259620699984],[-63.546417546999976,-13.690954181999928],[-63.51285154499993,-13.799594207999917],[-63.36960951299989,-13.845800119999865],[-63.30631658899989,-13.933895095999958],[-63.16719862099984,-13.866466707999905],[-63.02193856299988,-13.883643574999951],[-63.004138585999954,-13.924655891999862],[-63.10356555899995,-14.027105882999933],[-63.02864056499993,-14.065047405999962],[-62.90646762099993,-14.218461379999894],[-62.77078656899994,-14.261944513999879],[-62.762523520999935,-14.416667405999931],[-62.679275631999985,-14.54438397399997],[-62.65863452499991,-14.346664935999911],[-62.567848622999975,-14.318192783999905],[-62.62208959499998,-14.245936587999836],[-62.56306456799996,-14.18827026699995],[-62.4526516009999,-14.207710079999913],[-62.46726259899992,-14.078931524999973],[-62.62182656999988,-13.915673508999873],[-62.740085500999896,-13.909060689999933],[-62.76480054899997,-13.849427807999973],[-62.697799637999935,-13.806572477999907],[-62.763263474999974,-13.638343824999879],[-62.773700620999875,-13.558251051999946],[-62.90242754299993,-13.463601595999933],[-62.86391051899989,-13.400864558999842],[-62.8851584759999,-13.313924273999817],[-63.00644662699989,-13.350855106999973],[-63.071323562999964,-13.232021009999926],[-63.05016763899994,-13.144849887999953],[-63.11582157799995,-13.013930426999934],[-63.05965461299991,-12.959734214999969],[-63.09638562099997,-12.86562136799995],[-63.22375450699991,-12.832109680999906],[-63.191692553999985,-12.92590351299998],[-63.181747593999944,-13.05574187499991],[-63.24834449699995,-13.10826925099991],[-63.30357755099993,-13.208407344999898],[-63.45597848799997,-13.278671665999866],[-63.549922522999964,-13.245327113999963],[-63.60726563799983,-13.279147925999837],[-63.70433461399989,-13.192271678999873],[-63.72114150399989,-13.055559651999943],[-63.765628622999884,-12.99430889499996],[-63.85924961999996,-12.95370662099998],[-63.86959054099992,-12.893304614999977],[-63.94057050899994,-12.853271303999975],[-63.95594459599994,-12.71551656899993],[-64.02864855299993,-12.690345378999837],[-64.10655951699994,-12.551199917999895],[-64.18407451899992,-12.496348575999889],[-64.21511857399997,-12.544190299999968],[-64.14064050299999,-12.718245548999846],[-64.1471175349999,-12.793244303999927],[-64.26040649999999,-12.696093854999958],[-64.28942850499993,-12.560139050999965],[-64.35958050799996,-12.543247168999926],[-64.38466653799992,-12.713695851999887],[-64.46039552499997,-12.733106327999906],[-64.52284958799999,-12.826721289999966],[-64.63452956399993,-12.843216875999929],[-64.43460055299994,-12.63934585599992],[-64.43588248099996,-12.440020342999901],[-64.54386855199988,-12.479643610999972],[-64.63629948599998,-12.463215750999836],[-64.80158256999994,-12.39087774799998],[-64.81729159799994,-12.334306438999874],[-64.9436264929999,-12.214077592999956],[-65.00759147799988,-12.060349297999949],[-64.9981385349999,-11.977040891999934],[-65.13657354499992,-11.988155965999908],[-65.15312160199989,-12.139558785999895],[-65.18990357199993,-12.189160541999968],[-65.17735250999988,-12.336948414999881],[-65.09214057399998,-12.424234536999847],[-65.11427349199994,-12.533866980999903],[-65.19943949599997,-12.533292987999914],[-65.30084962799987,-12.286835865999933],[-65.2658085779999,-12.170914479999908],[-65.3292386309999,-12.055183530999898],[-65.34939559899988,-11.969962206999924],[-65.29087851599996,-11.957210313999894],[-65.28438555799983,-11.7308965819999],[-65.29894257699982,-11.614208754999936]],[[-64.95893855299994,-12.553405699999871],[-64.93106051099988,-12.52147165499997],[-64.83077958899997,-12.6024582739999],[-64.90122948499999,-12.677459375999888],[-64.95893855299994,-12.553405699999871]],[[-64.85666659399993,-12.523140658999978],[-65.01531255199995,-12.485309274999906],[-64.99940453799991,-12.322380331999966],[-64.89965050199999,-12.320242610999912],[-64.88442259599998,-12.427253027999939],[-64.8238604959999,-12.468035512999904],[-64.85666659399993,-12.523140658999978]]],[[[-67.15331259299995,-11.516483474999916],[-67.22947659999988,-11.598424959999875],[-67.36897259099987,-11.583635929999957],[-67.33296158799988,-11.678098469999952],[-67.22006958999987,-11.76696122899989],[-67.15547160299997,-11.74795358699987],[-67.12550361699994,-11.62377116499988],[-67.15331259299995,-11.516483474999916]]],[[[-66.37538161999993,-11.345751147999863],[-66.43867454499986,-11.491533063999896],[-66.35632351899994,-11.50317837699987],[-66.3398745369999,-11.639891073999934],[-66.22650963199999,-11.831009865999874],[-66.22142751599995,-11.91872899699996],[-66.15413659199993,-11.938746489999858],[-66.12474863299991,-11.84496690799989],[-66.23394756499994,-11.776811640999938],[-66.24460548999997,-11.648702297999876],[-66.27626762699992,-11.563890345999937],[-66.20844260699994,-11.465756028999976],[-66.2857975149999,-11.446829188999914],[-66.32213557999995,-11.358589373999905],[-66.37538161999993,-11.345751147999863]]],[[[-65.30000255299996,-11.540286905999892],[-65.41341355799983,-11.339495732999922],[-65.41135462799991,-11.47352538299998],[-65.30000255299996,-11.540286905999892]]],[[[-65.56447556999996,-11.31198750099992],[-65.62219955799998,-11.108476734999897],[-65.68777453899997,-11.148217014999886],[-65.66753358399995,-11.251401762999933],[-65.56447556999996,-11.31198750099992]]],[[[-66.27895352399986,-11.062984961999973],[-66.24301963399995,-10.98609726099994],[-66.3627016449999,-10.981910332999973],[-66.44178054299988,-11.055231197999888],[-66.62578561299983,-11.128432369999928],[-66.65961463899993,-11.195980451999901],[-66.58789052599991,-11.241538442999968],[-66.56169858699985,-11.30910379099987],[-66.41061360899994,-11.266140836999966],[-66.34483360599995,-11.192198704999896],[-66.36097748699996,-11.121467678999977],[-66.27895352399986,-11.062984961999973]]],[[[-65.47162654599998,-10.953931203999957],[-65.43596657799998,-10.818315866999967],[-65.51557956999994,-10.776255811999874],[-65.52301750399994,-10.953863310999907],[-65.47162654599998,-10.953931203999957]]]]},"properties":{"objectid":68,"eco_name":"Beni savanna","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Neotropic","eco_biome_":"NO07","nnh":1,"eco_id":565,"shape_leng":107.657886182,"shape_area":10.4945362569,"nnh_name":"Half Protected","color":"#FCF238","color_bio":"#FEAA01","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":126340.4811237474,"percentage":0.5893016849973249}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-179.99998860099998,65.9307504480002],[-179.99998860099998,65.06728617700003],[-179.72610471699997,65.15030071400014],[-179.56723060399997,65.26696054500013],[-179.51171859999994,65.44252084900006],[-179.32861374599997,65.54726211700012],[-179.40615858799995,65.65587934400008],[-179.7517087489999,65.80836795600015],[-179.81515472699994,65.93202399500012],[-179.99998860099998,65.9307504480002]]],[[[179.99998860100004,65.93052128700015],[179.71339372900002,65.93919638900007],[179.59948768800007,65.97758131500012],[179.3560487210001,66.23186713500013],[179.30483965100018,66.35217342900012],[179.12014760000022,66.46915294700005],[178.9228816870003,66.52090600200012],[178.44140672800006,66.41640864700014],[178.26963772800013,66.41363859600017],[178.21038873600003,66.53974365900007],[177.99844359700012,66.63355945100011],[177.79592860200023,66.59418948500013],[177.73760966600003,66.45345045700003],[177.79399070600016,66.25611447200004],[177.75694269400003,66.17106497700013],[177.44578566000007,66.13340408000005],[177.20002758900034,66.20051563200019],[177.14298974300004,66.34549690800009],[177.25677458200005,66.46276677500015],[177.27337661700017,66.62267890300012],[177.02001968000002,66.72117230000003],[176.7800597060002,66.63819062100015],[176.8549496640003,66.41000705300019],[176.76042174500003,66.19406139900002],[176.56924461500012,66.15730809400009],[176.28425571500009,66.17075233200012],[176.11059559000023,66.20701697100014],[176.0741426930001,66.27447134300019],[176.08273263500007,66.4803987790001],[176.22268661300006,66.77053651300014],[176.38157665200015,67.14896703700015],[176.35989367500008,67.37675414100016],[176.2039186940002,67.52253018900012],[175.98176573800004,67.54347287700006],[175.7419886570001,67.49095706800011],[175.49830661500016,67.3896486930002],[175.3986965800002,67.3152360000002],[175.21600361200024,67.27745306300017],[175.01130664000016,67.2968399020001],[174.868896596,67.47751366900007],[174.55349765000005,67.52469590500004],[174.33079567900006,67.51554839900012],[174.1291966580003,67.4407073910001],[173.96479769700022,67.33949809],[173.84689365600013,67.1368357410002],[173.68850669900007,66.98311850900012],[173.48829672700003,66.83737414400008],[173.28669770600015,66.73550099600004],[173.0222017220002,66.63642053000012],[172.76460270300004,66.48468712800008],[172.9562986730001,66.4171782740001],[173.51080364600023,66.51398556800007],[173.7474976950001,66.49957288500008],[173.82069367100007,66.34281201700009],[173.6994936970002,66.19576259000019],[173.29310567100003,66.01855339900015],[173.03140270500023,65.92280758900012],[172.83760069800007,65.89076223200016],[172.6428986420001,65.92375357100008],[172.58090172800007,65.98860703800017],[172.51820358300017,66.17754234400007],[172.31629962900013,66.22152839300003],[172.07528672000024,66.20196570100018],[171.8690186440001,66.0881220220001],[171.40202359000023,66.2076350530001],[171.19499158700035,66.06665211200004],[170.61592059800012,65.864973798],[170.28961159800008,65.79180447700003],[169.33798261400023,65.61070423900003],[168.91725164200022,65.54046389000013],[168.78330966800013,65.43983478400014],[168.60479759300006,65.41920373500011],[168.09599260100015,65.39900083400016],[167.73229964200004,65.48251577000019],[167.61619569900017,65.8139303550002],[167.73229964200004,65.86901706100014],[167.76710465700023,65.97175220399998],[167.92269859600003,66.11825965700012],[167.9265596360001,66.19358832400007],[167.76565559400012,66.25639627200007],[167.63551363900012,66.35379029900014],[167.33944671300014,66.3551035750001],[167.0549925790001,66.32887911500012],[166.84034762900012,66.24480678200007],[166.78897058600012,65.89322718200003],[166.68650869300018,65.81739442800006],[166.29550162700014,65.6837587280001],[166.1517027010002,65.54089153500007],[165.93229666200023,65.49926365100009],[165.75199857200016,65.42798612600018],[165.73159769000006,65.21672578800013],[165.67610161200002,65.14508281200006],[165.49920657500002,65.10485068200012],[165.06669668300015,65.05401309800004],[164.9028016420002,65.00707494300008],[164.84770169200021,64.93007526000008],[164.56140169600008,64.86114751800017],[164.15789771500022,64.99191526600015],[163.85609471800012,65.03277201400005],[163.6060026990001,64.99075504300015],[163.538894668,64.912099431],[163.69670059100008,64.74906755800009],[163.7136995940001,64.63804606500014],[163.48500070600016,64.57378804900003],[163.24139359900005,64.53628037300012],[162.99429358400016,64.43359166500011],[163.01750173300013,64.33286398800004],[163.14779657400015,64.24274897300006],[163.38760366200006,64.19667264600002],[163.64559964800014,64.18201571400004],[163.76060472400013,64.09879816800009],[163.62660273500012,63.97807344900019],[163.07659867600012,63.95562252100012],[162.87609869100015,63.87863088500018],[162.9754026180001,63.631541767000044],[162.92990061900002,63.517553583000165],[162.7886967310002,63.391883876],[162.52699259100018,63.31632236000013],[162.0545955680002,63.379371204000165],[161.8769076030003,63.33891460700005],[161.68949864100023,63.39002560800009],[161.72090160900007,63.64278810100012],[161.68389869200007,63.73095331800005],[161.48739670600003,63.74318368799999],[161.29089371500004,63.65100840200017],[161.27389571800006,63.51182304300016],[161.3170016670001,63.23363991400004],[161.04879769600007,63.10959529100006],[160.2263946930001,63.148216922000074],[160.15159559500034,63.08476423800016],[159.80099466600007,62.9969004350001],[159.7411036210002,62.791221271000154],[159.487197669,62.776740696000104],[159.22000170600006,62.69565500200014],[159.14329572500003,62.57579278100002],[158.97920270300017,62.63263734000003],[158.63690170300004,62.60396134000001],[158.6013025860001,62.53313107300016],[158.63209568700017,62.40761089900002],[158.5888066780002,62.30602843500009],[158.50239562600018,62.25019406400003],[158.22920257900012,62.25401721700007],[157.76100170500013,62.3836346330001],[157.52969369900006,62.4077637850001],[157.22639470000001,62.312528601000054],[157.22360268800014,62.129133901000046],[156.70010371600017,61.937056051000184],[156.6441037180001,61.86641186300017],[156.62089556900003,61.657964324000034],[156.27659565200008,61.5054049690001],[156.2709046760001,61.42552191100003],[156.48970067900007,61.202982717000054],[156.6295016040001,61.214606237000055],[156.62139865100005,61.37496394800007],[156.68420358100002,61.49786678800018],[156.92889363100016,61.562337538000065],[157.0151977290002,61.64633275700015],[157.36450164200016,61.70961361200011],[157.37820471300017,61.767690980000054],[157.5260006320001,61.813877782000134],[157.94259664300023,61.77941843700006],[158.06239365300007,61.73703450500011],[158.3547976870002,61.807609459000105],[158.61149565100015,61.83334860700006],[158.89830057400002,61.82420009500004],[158.97300763800013,61.91017294100004],[159.1786956870002,61.91926713800012],[159.36770659800004,61.84126095600004],[159.5554045670002,61.82177102000003],[159.49119566900004,61.68508413900014],[159.86669956700007,61.69019257400015],[159.9467926750001,61.724637],[159.9575045800001,61.84221096100009],[160.29890469300028,61.92457338600002],[160.3786927000001,61.76985787000012],[160.28080766100004,61.700885033000134],[160.18969771500008,61.54216849900007],[160.03779566900005,61.475774774000115],[160.15949972900012,61.433933319000175],[159.92100558200013,61.26468743800018],[159.87789963400007,61.03469405000004],[159.77709970400008,60.98611606000003],[159.90750166600014,60.92604379800002],[160.1327056350001,61.031959203000156],[160.42289768400008,61.02930800700017],[160.29179365400012,60.89084047500006],[160.15710468400027,60.85710113500005],[160.21789561100013,60.751777157000106],[160.09559660200011,60.69946385600002],[160.16079657700016,60.614366583000105],[160.31640661000006,60.74398785500006],[160.55880773000013,60.72813717300005],[160.78869667900005,60.82009771500009],[160.93550068500008,60.94961572100004],[161.29750066600002,61.09451049600017],[161.40100057400002,61.18291191500009],[161.76849372000004,61.380430122000064],[162.07260157300004,61.499315852000166],[162.1356966840001,61.56694976400013],[162.35290565900004,61.65773248100015],[162.59370466100006,61.59020853900017],[162.58200067500013,61.711544467000124],[162.74270656900012,61.736432684000135],[162.83970664700018,61.68594244600018],[162.74609369600012,61.60792939100003],[162.90029858600008,61.52783594800019],[163.05140669900004,61.64287287500008],[163.17750572700004,61.633652445999985],[163.2978056510001,61.68396213800014],[163.21119661900002,61.76989978000006],[162.9138026710001,61.827161253999975],[163.14300564600023,62.0803909550001],[163.06329357900017,62.10157085000003],[163.174499641,62.31611069100012],[163.24040269000022,62.50491306100008],[163.6338956610001,62.58699335100005],[163.95179761200018,62.58914062600019],[164.01759370800016,62.64590589200009],[164.3578035910001,62.69932543800007],[164.61430357500012,62.640534601000184],[164.66780073700022,62.57436199000006],[164.93449361800015,62.52496391400007],[165.14050269300026,62.46299901900005],[165.0758056320002,62.38086474900007],[164.5171967120002,62.46520714700017],[164.3059995740001,62.366047724000055],[164.17529267800012,62.345390020000195],[164.05290264300015,62.26993981600009],[164.00770557700025,62.11388520700012],[164.05340572500018,61.94322429400012],[164.04159562300003,61.771716138000045],[163.98910563100014,61.70621541999998],[163.8533937330002,61.67816404000018],[163.71879562300035,61.55734829400012],[163.71180763100006,61.452602835],[163.8619996010001,61.43702339100008],[163.9929046440002,61.376569753000126],[163.86099259900004,61.22501689600017],[163.53410357200005,61.13957227800017],[163.69290157700016,61.07935785900008],[164.05099458600012,60.86121027900003],[164.4714967320001,60.576020215000085],[164.62600672300005,60.371113192000166],[164.78819269400014,60.06253040900009],[164.84199562800006,59.8247706840001],[164.9409025880002,59.86957246000014],[165.05209373100013,60.01691693000015],[165.0070956510002,60.09819205400015],[165.16769358700014,60.11740371100012],[165.38420066100014,60.265213210000184],[165.51240572500035,60.243007536000164],[165.67869564400007,60.29882967000003],[165.84719872000016,60.40434458800013],[165.98759459200005,60.36777115900014],[166.02200364600014,60.45742366100012],[166.16209357900004,60.50449123200008],[166.3027957260001,60.472584009],[166.18069469900001,60.360141784000064],[166.22120661600013,60.21378537200013],[166.12210066900002,60.094311736000066],[166.06869470200013,59.84838049400014],[166.17480473500018,59.801640822000195],[166.3307956420001,59.840392372],[166.71060163500022,60.084370463000084],[166.82769766100012,60.19934570000015],[166.86259470900006,60.30968993500005],[167.13760361100015,60.34588936300008],[167.4205017290002,60.41733402400018],[168.27670257800014,60.58823851500006],[168.69659468800035,60.511544604000164],[169.10479773200007,60.5493272060001],[169.20840459300018,60.542109884000126],[169.57200669200006,60.42376143500002],[169.7534026430003,60.28688897900014],[169.90739463300008,60.22789597100012],[169.7592007410001,60.1889855],[169.87300066700016,60.06734883000007],[170.0534057110002,60.02041905700008],[170.1128996210001,59.929003506000186],[170.2671046790001,59.94040591200019],[170.41690068800017,60.09143171400018],[170.44380173600018,60.26915723000019],[170.57659857500028,60.31976934099998],[170.50540168400005,60.46075479700005],[170.66879263700002,60.41561305100015],[170.75889558200015,60.445525213999986],[170.7248995880003,60.52652625000002],[170.93870567800002,60.53230942800019],[171.24639863800007,60.58823851500006],[171.35499558100014,60.676015146000054],[171.50639370800013,60.72121690600011],[171.65949973000022,60.848170719999985],[171.7951356880003,60.820867677000194],[171.97695962000012,60.831920054000136],[172.0588836710001,60.940066386000126],[171.99400371700006,61.03945949700005],[172.20770268500007,61.001424935000045],[172.21018959600008,61.19254540400004],[172.45840473900023,61.15102363400018],[172.6117246680002,61.20629004800003],[172.63879368900018,61.31315914600009],[172.80592364200004,61.34947290399998],[172.60935963000009,61.40995353200003],[172.8392026470002,61.443558593000034],[173.04801966000014,61.37013764800008],[173.20208759000025,61.43182811999998],[173.25439468900015,61.54663990900002],[173.43569961400033,61.559438405000094],[173.4217066970001,61.66737183700013],[173.4881436730002,61.73061128500012],[173.82820167600005,61.660802604000025],[174.10585071100002,61.78911579600015],[174.49621572300032,61.817306818000134],[174.60275273000002,61.965433991],[174.80061359,61.936631760000125],[175.12716667000018,62.00655862500008],[175.14469859400003,62.125932684000134],[175.37438973100018,62.1129471050001],[175.6138607050002,62.175724877000164],[176.28027364100012,62.31128958800008],[176.44079563600008,62.41017777300016],[176.6905217010003,62.494631483000035],[177.17303467500017,62.586852535000105],[176.94912772200007,62.64574596600016],[177.0136107090001,62.77603058100004],[177.1474916630001,62.787147164000146],[177.2505496780002,62.70325135400003],[177.26553367100018,62.572965733000046],[177.51248163800005,62.57130293100016],[177.68330365100007,62.5160675300001],[177.86523470400004,62.55546297800004],[178.14080770800012,62.515460345],[178.19970667100006,62.459156922000034],[178.84829666300004,62.36878709700011],[178.9573056610002,62.264606579000144],[179.14971962500033,62.330455313000016],[179.1305237250001,62.47684659300006],[179.4024656890001,62.536022327000126],[179.42358372700005,62.605751547000125],[179.55773960700003,62.64186179200016],[179.60467575100006,62.70602861300006],[179.50915575000022,62.860476411000036],[179.41998269300018,62.881870381],[179.27723670300009,63.04105713900003],[179.41247569300003,63.05826166600008],[179.3274536910002,63.19243079000012],[178.89443971100002,63.3327190390001],[178.96812468600012,63.42526732000016],[178.70840471100007,63.540186230000074],[178.64581268100017,63.62329028600004],[178.75027466400002,63.678017743],[178.66525266100007,63.94691305300017],[178.37966965300018,63.99525534500003],[178.48745774300005,64.11663670200011],[178.36746174600034,64.27220700400005],[178.23080470500008,64.30664757400001],[177.99801662300013,64.20775117500017],[177.8027647140001,64.25304094500007],[177.41552766100006,64.44747830000006],[177.37579358400012,64.57443747800005],[177.46997063600008,64.72222535100008],[177.31747464800014,64.77223027700018],[177.00219774200002,64.70777461500006],[176.73080462500002,64.57027117000007],[176.55773961400007,64.67110580000019],[176.42526262900014,64.67499718300019],[176.22024563500008,64.86027865000005],[176.45968660200003,64.80638234200018],[176.65887465200012,64.86000372300009],[176.89553869500003,64.83250655400008],[177.03579660100002,64.76888941800007],[177.2958065900002,64.82057290400013],[177.1441347110001,64.94777599600008],[177.44052165800008,64.9166776260002],[177.48773172100016,64.81334066200003],[177.71469069300008,64.70583655100012],[177.90246560900005,64.70333438600011],[178.29385371600006,64.65638114299998],[178.89581266600032,64.69805395399999],[179.25582865100023,64.80694627600013],[179.46691866900005,64.81250079600017],[179.76913472600017,65.00446582400014],[179.99998860100004,65.06727075400005],[179.99998860100004,65.93052128700015]]]]},"properties":{"objectid":69,"eco_name":"Russian Bering tundra","biome_num":11,"biome_name":"Tundra","realm":"Palearctic","eco_biome_":"PA11","nnh":2,"eco_id":779,"shape_leng":102.559511315,"shape_area":86.0109975427,"nnh_name":"Nature Could Reach Half Protected","color":"#4FACB3","color_bio":"#9ED7C2","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":475306.5264966788,"percentage":5.56229230157416}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-163.76596428799996,55.053318240000124],[-163.89470972199996,55.03911822300017],[-164.03072786199996,54.96981821300017],[-164.14675511699994,54.95820910700013],[-164.34355506899993,54.894136360000175],[-164.43530052999998,54.933127251000144],[-164.55161866699999,54.85517269900009],[-164.72075797699995,54.65497124700005],[-164.56519892699998,54.67080530800001],[-163.95443027399998,54.90221363100011],[-163.76107154699997,54.88956728100004],[-163.4249007139999,54.948170226],[-163.53375522099998,55.05361827200011],[-163.76596428799996,55.053318240000124]]],[[[-161.1303922289999,56.01237305700005],[-161.80785575099992,55.891954791000046],[-162.24699197899992,55.68000929600004],[-162.48371005799993,55.49523655400009],[-162.484710012,55.390345656000136],[-162.64992816599997,55.36415472600004],[-162.80110994499998,55.30594561900011],[-162.86757352299995,55.182336532000136],[-163.14900985699992,55.17882740300013],[-163.16847346999998,55.12906376900008],[-163.00418328899997,55.08164129000005],[-162.6064794259999,55.158291136000116],[-162.71806446099998,55.21980018600016],[-162.66198268199994,55.29430018600016],[-162.5131372239999,55.25237293800012],[-162.37283456999995,55.302264364999985],[-162.24364517399994,55.442376354000146],[-161.90688574499998,55.55181184899999],[-161.86189258999994,55.72363019000005],[-161.77357683699998,55.73709189099998],[-161.50260157399995,55.693890783000086],[-161.3955244269999,55.74263349100005],[-160.9557353339999,55.843083249000074],[-161.0171376479999,55.91101853700013],[-160.86647404399997,55.953673101000106],[-160.898701333,55.999018547],[-161.07640129299995,55.94208216200008],[-161.1303922289999,56.01237305700005]]],[[[-154.27873304699992,59.78672401199998],[-154.4173404469999,59.7705587960001],[-155.16946176499997,59.72682909600013],[-155.49473302299998,59.747116799000196],[-155.6050262489999,59.72467791600013],[-155.63046346799996,59.8519300050001],[-155.79849052699993,59.912585274000094],[-155.81069727499997,59.96178655600016],[-155.59660569399998,60.06162261800006],[-155.48130706999996,60.178874346999976],[-155.50098438099994,60.282817205000015],[-155.62374303599992,60.391147589000184],[-155.84620668299993,60.42235089200011],[-156.00048455099997,60.27076176900016],[-156.16849952299998,60.21799397700005],[-156.33609109199998,60.22554075800019],[-156.54363611499994,60.359227408000095],[-156.7439957699999,60.403638161000174],[-156.93393560099992,60.372098113],[-157.11213680299997,60.227749691999975],[-157.50626448099996,60.21713703200015],[-157.60174669699995,60.112703183000065],[-157.90345149799995,60.08697044900009],[-157.93606160099995,60.02104455400007],[-158.07369366799998,59.96858694300016],[-158.30139199799996,59.83336047400013],[-158.40882101599996,59.72408261700019],[-158.66520842899993,59.68414759600006],[-158.66427108699992,59.60219356800002],[-158.80846145699994,59.560762366000176],[-158.83347800599998,59.463297288000035],[-158.6258436399999,59.45461682300004],[-158.47127669699998,59.39886461400005],[-158.51685721799993,59.23365291800013],[-158.74897972699995,59.14761888100014],[-158.8293109079999,59.045305788],[-159.02963797999993,59.06999837700005],[-159.07683760399993,58.94919120800006],[-159.26850597699996,59.02462951400008],[-159.52701383499996,58.834447757000135],[-159.385348317,58.76459123799998],[-159.04796633599997,58.42700950300008],[-158.88641178599997,58.39450043900018],[-158.78746634699996,58.411309542000026],[-158.74819367799992,58.51140044800019],[-158.85553922499997,58.693064052000125],[-158.7709120069999,58.77530951300014],[-158.769221149,58.864827686000126],[-158.61538482499992,58.914273160000164],[-158.50427570999997,58.85750045500009],[-158.56442112899995,58.80432772400013],[-158.35114837499992,58.726564126000085],[-158.33437561299993,58.662909589000094],[-158.14194832599992,58.61288235000018],[-157.55528480999996,58.753509701000155],[-157.30373032899993,58.836900640000124],[-157.11643944899998,58.86501884900008],[-157.0082667,58.81520068800006],[-157.068066635,58.70821886900018],[-157.483721023,58.479173372],[-157.5560118409999,58.32165519200004],[-157.4020208599999,58.17069159200008],[-157.57758445999994,58.12547338700011],[-157.67189335799992,57.772082494000074],[-157.692129635,57.61033705000011],[-157.60059327599998,57.60795524700012],[-157.5733750459999,57.51596434900006],[-157.77329323199996,57.547555225],[-157.93312954799998,57.47712793500017],[-158.0106295059999,57.40137338500011],[-158.25058399099993,57.314282447000096],[-158.45629300699994,57.19632788299998],[-158.63812928899992,57.05687332200006],[-158.68992924199998,56.97406423100011],[-158.65308370999995,56.80885516000012],[-158.78361095899993,56.780746052000154],[-158.95549279499997,56.843746021000186],[-159.23789272099992,56.730245989000196],[-159.32443813899997,56.67035507400004],[-159.82807440199997,56.54393683100017],[-159.93835618099996,56.47419136700006],[-160.14410158199996,56.40102770700008],[-160.3926923939999,56.237673141000016],[-160.488728677,56.077218597000126],[-160.56837409099995,56.00406404900019],[-160.48021847599992,55.92097428200009],[-160.1105791969999,56.09288829200017],[-159.78163808099998,56.111462857],[-159.67181802299996,56.14141288700006],[-159.55315629099994,56.32108986500009],[-159.01175412899994,56.342602624999984],[-158.89879437099998,56.33483916000006],[-158.77054926299994,56.38680178900006],[-158.8860043159999,56.51125585900007],[-158.83715201199996,56.587528728000166],[-158.345393244,56.62480799200017],[-158.40071279999992,56.81065116000008],[-158.34864738199994,56.913353814000175],[-158.08459221099997,57.01072101200003],[-157.6960232799999,57.07019866000002],[-157.34009886899992,57.1812160180001],[-157.12360958999994,57.2881414790001],[-156.8229117159999,57.51177030200006],[-156.64838905899995,57.58276358900014],[-156.31772834999995,57.64612438600017],[-156.19094245699992,57.63392983500006],[-155.72435316099998,57.778688682999984],[-155.58496417399996,57.84300115300016],[-155.45405838699995,57.96972419300016],[-155.52658904999998,58.025643631000094],[-155.83278351599998,57.94529356400017],[-155.97404612399993,57.93061210899998],[-156.03131750899996,57.98204901700012],[-155.97121538499994,58.086149286000136],[-155.66980007899997,58.14804318000017],[-155.74283427499995,58.24594878500011],[-156.01803318099994,58.28047201400011],[-156.00278179299997,58.384160658999974],[-155.87456921199993,58.43999785000011],[-155.58209121699994,58.466681471000186],[-155.495603856,58.553625968],[-155.3925589259999,58.54684788399999],[-155.1993622319999,58.42977324000003],[-155.08234155199997,58.42623775000004],[-155.03637415699995,58.49464050800009],[-154.77339389699992,58.52029769200004],[-154.76238157499995,58.66273679500017],[-155.17626645699997,58.6939697680001],[-155.47731352699992,58.76248124000006],[-155.33024908099998,58.90288174200015],[-155.34047216699994,58.97059987200004],[-155.5923261229999,59.036690345000125],[-155.55695716899993,59.083575677000056],[-155.36188322599995,59.13225723199997],[-155.12363408899998,59.15160628900003],[-154.8673904579999,59.20827581200007],[-154.9204619489999,59.31032353400019],[-154.80230455999995,59.422297028000116],[-154.64764329799993,59.49338130400014],[-154.62949692499996,59.58096039999998],[-154.23131157599994,59.70662255900004],[-154.27873304699992,59.78672401199998]]],[[[-166.1584212889999,60.42722640400012],[-166.387203032,60.35967183200012],[-166.48373939899997,60.38662636000009],[-166.759139314,60.31074450799997],[-166.81194834699997,60.229389963000074],[-166.9379937719999,60.20587176600009],[-167.31893009999996,60.23778079600004],[-167.4170936929999,60.19173533200018],[-167.27357545499993,60.06555354900013],[-167.10492997999995,59.989171766000084],[-166.86042999799997,59.959626351000054],[-166.56383906399995,59.84732640700008],[-166.38862999899993,59.85259916100006],[-166.03696635399996,59.757853769],[-165.7968482789999,59.881026519000045],[-165.53479377699998,59.89677201100005],[-165.71322112799993,60.06705378200019],[-165.66590297199997,60.09947197000014],[-165.677539437,60.26927194900003],[-165.88347582,60.343899183000076],[-166.08518487099997,60.32529006200019],[-166.1584212889999,60.42722640400012]]],[[[-172.519427134,60.38486699100014],[-172.75183340899997,60.445167235000156],[-172.72074439399998,60.36008226400014],[-172.5914675729999,60.319910750000076],[-172.519427134,60.38486699100014]]],[[[-161.79254781699998,62.07404631900005],[-161.66423330599994,62.24447498400002],[-161.60782756199993,62.41023896300004],[-161.6489458499999,62.48625728000002],[-161.938439723,62.47066469400005],[-162.281494711,62.32586662700015],[-162.50372692399995,62.270429622999984],[-162.76049416299992,62.04204992700011],[-162.42223395399998,62.03645890700011],[-162.168754289,61.94142058300014],[-162.0449080889999,61.825676007000084],[-161.90925425499995,61.89387758700019],[-161.79254781699998,62.07404631900005]]],[[[-164.72212310299992,62.785271827000145],[-164.85551395699997,62.73639908399997],[-164.73401389199995,62.627226387000064],[-164.50958673399998,62.741153684000096],[-164.72212310299992,62.785271827000145]]],[[[-168.90337132999994,63.32896583800016],[-169.23516827199998,63.327643782000166],[-169.5240046149999,63.36554373300015],[-169.65995918499996,63.42952552300011],[-169.98902017399993,63.472219455000186],[-170.241614785,63.428028514000175],[-170.49473562499995,63.334375426000065],[-170.3683134929999,63.285170885000014],[-170.26058615699992,63.17778909600014],[-170.07004073299998,63.172125489],[-169.83337706999993,63.07814371900014],[-169.69819518099993,62.952543755000136],[-169.53563158899993,62.97697105000003],[-169.53844075299995,63.07396194700016],[-169.379122656,63.150871054000106],[-168.99396198999992,63.17079809200004],[-169.00054453099995,63.188607251],[-168.98202572499997,63.23819020600013],[-168.90337132999994,63.32896583800016]]],[[[-162.25249674199992,63.54170851200007],[-162.28367849199992,63.463063061000184],[-162.16651483999996,63.425272173999986],[-162.07317855899998,63.513763089000065],[-162.25249674199992,63.54170851200007]]],[[[-159.52533468699994,61.35181749300011],[-159.49676599599997,61.424724445000095],[-159.57439238999993,61.48165304200012],[-159.98679479799995,61.49037999300003],[-160.28889973899996,61.446972656000185],[-160.58828281899991,61.357878515000095],[-160.9357387519999,61.13549917900008],[-161.05654036499996,61.144927748999976],[-161.00204440799996,61.44856951000014],[-160.7722329439999,61.47607346400014],[-160.523243339,61.55282816600004],[-160.38169538399995,61.656084735000036],[-160.32430868099996,61.847841454000104],[-160.50136185299996,61.82612535600009],[-161.05264597199997,61.683363035000184],[-161.5822341129999,61.564174332],[-161.9022453519999,61.47650839900018],[-162.02067947699993,61.42269158500011],[-162.26638279399998,61.53242694300019],[-162.49965954999996,61.69856862800003],[-162.73220159399995,61.77351798500018],[-162.76862145699994,61.90252108100003],[-162.83571572199995,61.92809120700002],[-163.069012863,61.905458347000035],[-163.2639400669999,61.95602427400013],[-163.39632382299993,62.026397351000185],[-163.37403386999998,62.10287403800004],[-163.17879856699994,62.22940764700007],[-163.05007418399993,62.375056625000184],[-163.05053091799996,62.50107958800004],[-163.16741275299998,62.68151122799998],[-163.14845011399998,62.76946458000009],[-162.7088373489999,63.065816820000066],[-162.41819616399994,63.22176817700017],[-161.82321926699996,63.17693374000004],[-161.60280065699993,63.21437129300011],[-161.40124335599998,63.14021643800015],[-161.23048034299995,63.15634619700006],[-161.1914676439999,63.30403176700008],[-160.97570051499991,63.2810947120002],[-160.73264868899994,63.5058155120002],[-160.77650366799998,63.5898239230001],[-160.95994575199995,63.62475264800008],[-161.14282410999994,63.5027723340001],[-161.52147857299997,63.45327227700011],[-162.02557850899998,63.44753583200003],[-162.29274205499996,63.37339943200004],[-162.437087496,63.377835771000036],[-162.6679418919999,63.227126657000156],[-163.0405235359999,63.06215388600003],[-163.3636143809999,63.034590201000185],[-163.41770532299998,63.083872006000036],[-163.616296253,63.14121742100008],[-163.72583265699993,63.21061739700019],[-164.0365872019999,63.26119916000016],[-164.4189962039999,63.21396274000017],[-164.54540522899995,63.153280908],[-164.44348696799992,63.03614457200007],[-164.7073778239999,63.01080817000019],[-164.78823230499998,62.941571801000066],[-164.844468559,62.80848089500006],[-164.49759584899996,62.769453683000165],[-164.53494125099996,62.70686277500016],[-164.72329569199997,62.60194457400013],[-165.04606832899992,62.54041725600001],[-165.26929548799995,62.4273535960001],[-165.67563158399997,62.13558992800017],[-165.75683147899994,62.00633538300008],[-165.60012230999993,61.85959906],[-166.09210401599995,61.80073535400004],[-165.90380394899992,61.66363539800011],[-166.13495843999996,61.63308991100007],[-166.07774019699994,61.53008993100008],[-165.89199478199998,61.550026322],[-165.75434021999996,61.498708167000075],[-165.87176743099997,61.43018997399997],[-165.859012813,61.31886271500014],[-165.649276461,61.29548093200003],[-165.57814906899995,61.10036278300004],[-165.4030308879999,61.067062814],[-165.30799461399997,61.18182645200005],[-165.07673092999997,61.06490831800011],[-165.19498540599994,60.97991740000015],[-165.14185810399994,60.92337196000011],[-164.96068537399995,60.88759926400007],[-164.86642171399998,60.83211746600011],[-165.03209437599995,60.760026540000126],[-164.97127617099997,60.7114356460001],[-165.28327604399996,60.5763265220001],[-165.19047600699994,60.497999271000026],[-165.05745787199993,60.54462655900011],[-164.99797602099994,60.48033566600003],[-165.06917595699994,60.393472028000076],[-164.85037593099992,60.30361752600004],[-164.66666685699997,60.29595391700019],[-164.38638493899992,60.07730852900016],[-164.09243036799998,59.97538131100009],[-164.17683942299993,59.93399039500002],[-164.086248457,59.82165405600017],[-163.90427573199992,59.789117724000164],[-163.46764851099996,59.790190518000145],[-163.12700311899994,59.82878147400015],[-162.88417592,59.90681786700014],[-162.51700327799995,59.98103609700007],[-162.46193970199997,60.069736097000145],[-162.45675796399996,60.197545176],[-162.56736706499998,60.23613606400005],[-162.53883076899993,60.33798151299999],[-162.3372670679999,60.19727246700012],[-162.19220342199995,60.15974522000005],[-162.2108306119999,60.02677250300019],[-162.07493056299992,59.922227080000084],[-162.04010478599994,59.84597791700003],[-161.953843997,59.94723844200007],[-161.94752833999996,60.030745808],[-161.81192866599994,60.05348399700017],[-161.84429010099996,60.127426414000126],[-161.68386263099995,60.16867761100008],[-161.77129031599998,60.282129865],[-161.68903424699994,60.31759073600011],[-161.73485806299996,60.459530698000094],[-161.51678355299998,60.48514411399998],[-161.44666963599997,60.537776839],[-161.40596054699992,60.70997652300008],[-161.23586117199991,60.68470116399999],[-161.08852132499993,60.69957681400018],[-161.04621314899998,60.80768931000006],[-160.85081338899997,60.90687915400008],[-160.90558911099993,61.077212748000136],[-160.66119835099994,61.13014936000019],[-160.63406283599994,61.225851275000196],[-160.38961051099992,61.24094870500005],[-160.074753928,61.373565858],[-159.52533468699994,61.35181749300011]]],[[[-160.48646525499996,64.95040916700003],[-160.693644263,65.05574644600011],[-160.81315669299997,65.17378026],[-161.0392466289999,65.15439221700018],[-161.13288686799999,65.0206307310001],[-161.26579585999994,64.96883080800006],[-161.48259096899992,64.94678855000006],[-161.33246480199995,64.8256122160002],[-161.19522534299998,64.91818128200009],[-160.88421619199997,64.81649043300013],[-160.78342520499996,64.71716318600016],[-160.80207055899993,64.61035410300019],[-161.02420679899996,64.4997177140001],[-161.19805223099993,64.49662677400016],[-161.38864314899996,64.53278128500011],[-161.47397033999994,64.45247218800006],[-161.25667939599998,64.38399041200006],[-161.02789749599995,64.26247228000017],[-160.96971922599994,64.28725971600011],[-160.71298925699995,64.58713806900005],[-160.6767105589999,64.68361177000003],[-160.48646525499996,64.95040916700003]]],[[[-163.64698394699997,66.05923153400016],[-163.84742617299995,66.12210798900003],[-163.92990807599995,66.21601705700016],[-163.83010814899995,66.27199888600018],[-163.87313553599998,66.38901704800008],[-163.76199016699996,66.45487160600015],[-163.75419936199998,66.55128068900007],[-163.9855811889999,66.59036246300019],[-164.40995384299995,66.58085330300014],[-164.6625537689999,66.5495896270001],[-164.9883263069999,66.41805322100015],[-165.14198084499998,66.43443501300004],[-165.38719896299995,66.41111679200003],[-165.69635338399996,66.33818038300018],[-165.87754416299992,66.240307637],[-165.568816852,66.15577133400012],[-165.73364403899996,66.09622585700015],[-166.05392581699996,66.10827125700007],[-166.232798579,66.17108940300005],[-166.65963477199992,66.07362570700013],[-166.77846197999995,66.02746205600016],[-166.88667094599992,65.92282568500002],[-167.15382537299993,65.84678019500006],[-167.32604355799992,65.88171652700004],[-167.535625282,65.82359831700006],[-167.49029795699994,65.76091651299998],[-167.5857887969999,65.70868014000007],[-167.7932978519999,65.70751647000009],[-168.09727977199995,65.60540967700018],[-167.4514375649999,65.7278037750001],[-166.97996040699994,65.78132919500018],[-166.3881068089999,65.99818870600012],[-166.19827184699997,66.02360344800013],[-165.69932658899992,65.94895221800004],[-165.2242302639999,65.92780165100015],[-164.89887712299995,65.94442371500003],[-164.65935763099995,66.01094324100006],[-163.95540592199995,66.01548074800002],[-163.64698394699997,66.05923153400016]]],[[[-159.4764877879999,66.288383259],[-159.24826488499994,66.34469662600014],[-159.0014036469999,66.29296034300017],[-158.81228044099998,66.28218905400007],[-158.2133714779999,66.41550374200011],[-157.19656779899995,66.52617982700013],[-157.18004936599993,66.57225147100002],[-157.36270260399994,66.63581620300016],[-157.38767033099995,66.70336881700018],[-158.146492214,66.73098884500018],[-158.10536648099995,66.77884176900005],[-157.72599605199997,66.80252473000019],[-157.27817838699997,66.78683489200017],[-156.93622126999995,66.84098395200016],[-157.048678,66.91159600100008],[-157.47510043499992,66.93727244000013],[-157.90788116599992,67.07860227900017],[-158.12452351199997,67.02780304800012],[-158.14713622099998,66.933194174],[-158.74857684599993,66.85653525300017],[-159.183084192,66.81864888200005],[-159.78088682299992,66.78625722700008],[-160.1815334579999,66.86313369700008],[-160.59756724399992,66.74783612600015],[-160.81528713499995,66.73849620600004],[-161.09287654299993,66.7668615820001],[-161.19744355199992,66.98100797400019],[-161.38823468099991,67.03237323100018],[-161.6148037419999,67.00146677500004],[-161.7929454439999,66.87878099000005],[-161.8823907089999,66.71616280900002],[-161.49374509999998,66.52709925800008],[-161.29756329699993,66.52078111000009],[-161.141699809,66.6382811260001],[-160.82120895399999,66.65428117800019],[-160.65309981399997,66.58967212300007],[-160.33597259599995,66.60580854000006],[-160.18480884499994,66.483281305],[-160.22465419599993,66.39125403300017],[-160.54352685699996,66.36363580000005],[-160.79205410799992,66.36975393900008],[-161.07528147799994,66.49159933300007],[-161.24225421299997,66.52092657400004],[-161.58064499599996,66.440553797],[-161.9183632559999,66.55410827300005],[-162.06865423699992,66.64112642000015],[-162.01084527799998,66.75329914700018],[-162.22738173399995,66.86309000800009],[-162.28417270599996,66.92598999299997],[-162.59919990299997,66.89697175900011],[-162.62042711999993,66.84928085200005],[-162.50364519499993,66.73663542700018],[-162.22776338099993,66.70690820600004],[-162.09753601599996,66.60580823700008],[-161.87181773799995,66.49035374100004],[-161.92183576199992,66.34767192800007],[-161.70605402299995,66.39694468800019],[-161.5326813199999,66.39909926400014],[-161.10168130199997,66.33118116100013],[-160.98039305699996,66.2409074410001],[-160.628843194,66.25550642900009],[-160.29708812099997,66.30864310400005],[-160.07247226699994,66.36616904300013],[-159.70978403599997,66.29755304000014],[-159.4764877879999,66.288383259]]]]},"properties":{"objectid":70,"eco_name":"Beringia lowland tundra","biome_num":11,"biome_name":"Tundra","realm":"Nearctic","eco_biome_":"NE11","nnh":1,"eco_id":409,"shape_leng":150.048729084,"shape_area":25.576305527,"nnh_name":"Half Protected","color":"#69F6D6","color_bio":"#9ED7C2","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":152978.236439159,"percentage":1.7902335007383312}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-168.99396198999992,63.17079809200004],[-168.86218637899995,63.1465802260002],[-168.72847737299998,63.22799842000006],[-168.696386527,63.30189841600003],[-168.90337132999994,63.32896583800016],[-168.98202572499997,63.23819020600013],[-169.00054453099995,63.188607251],[-168.99396198999992,63.17079809200004]]],[[[-169.98902017399993,63.472219455000186],[-170.0802137789999,63.58757998400017],[-170.28553199799998,63.68460721300005],[-170.46891379499996,63.70079809100014],[-170.91076815699995,63.57166167500014],[-171.38526811199992,63.63018886800012],[-171.627322652,63.684170643000186],[-171.745949886,63.66502517100008],[-171.83544071299994,63.58188880500006],[-171.85299518199994,63.4865706330001],[-171.74290420299997,63.36564339100005],[-171.43687694299996,63.307116172000065],[-171.10441345999996,63.42297075500011],[-170.86895895099994,63.41378897500016],[-170.49473562499995,63.334375426000065],[-170.241614785,63.428028514000175],[-169.98902017399993,63.472219455000186]]],[[[-168.09727977199995,65.60540967700018],[-168.0752249489999,65.57635280200003],[-167.72389766799998,65.50258014000013],[-167.39847944599995,65.40026202200005],[-166.6113068079999,65.35149852000018],[-166.39555220199998,65.2505803840001],[-166.69647922699997,65.03585308600009],[-166.69084281999997,64.98537127300006],[-166.41565185299993,64.87192587700014],[-166.4838244439999,64.73341678900005],[-166.3924243749999,64.63816226900013],[-166.23696071399993,64.58355321000005],[-165.33592440599995,64.48763518500004],[-165.00198804399992,64.4339170630002],[-164.84194266199998,64.4906079930002],[-164.33973370299992,64.55941715900008],[-163.97437920099995,64.55137176500017],[-163.59786108099993,64.56335364299997],[-163.253051953,64.46949916400007],[-163.04346108499996,64.48541737900007],[-163.36116113299997,64.58401731700013],[-163.18998848399997,64.64805370200008],[-163.01486114999997,64.5533537410002],[-162.83406866699994,64.50972568400005],[-162.85578502699997,64.67677122500004],[-163.012255022,64.70939344600015],[-163.5035988909999,64.68575804400012],[-163.68771354099994,64.70949748400005],[-163.892879886,64.79013605100005],[-163.85368439999996,64.91838683300011],[-163.68042704999996,65.01484884500007],[-163.35096915999992,65.01930789800019],[-163.01609020899997,64.95637036000011],[-162.74379888399994,64.86522030300006],[-162.7543762329999,64.79164566400016],[-162.5991228869999,64.76131221500009],[-162.30546000099994,64.83811236300016],[-162.2752495189999,65.02072145900013],[-162.1675104169999,65.13016264400011],[-161.92392618199995,65.17699375300009],[-161.551365972,65.19751971900001],[-161.25075334299993,65.1573347210001],[-161.12025307099995,65.28103744700013],[-161.16724234399996,65.48023108600017],[-161.14668983499993,65.60774708900016],[-160.70295183199997,65.67993566000013],[-160.54292531999994,65.60228608200009],[-160.08625669799997,65.63369214200003],[-160.04545346199995,65.67157926900018],[-160.11169668399998,65.81577398500019],[-159.91918118599995,65.80678019800007],[-159.78846449899993,65.71820476199997],[-159.5734001769999,65.72924105200008],[-159.56442518899993,65.65000479500014],[-159.35257719799992,65.6072936720002],[-159.17695433599994,65.78521919200006],[-159.1166804739999,65.93330703200013],[-159.13135985099998,66.04406625000018],[-159.4764877879999,66.288383259],[-159.70978403599997,66.29755304000014],[-160.07247226699994,66.36616904300013],[-160.29708812099997,66.30864310400005],[-160.628843194,66.25550642900009],[-160.98039305699996,66.2409074410001],[-161.1969538969999,66.21561751900015],[-161.34880847499997,66.26530839800012],[-161.55844478299994,66.23853563800003],[-161.82720814099994,65.99932652400014],[-161.987917284,66.07123558100011],[-162.39191718899994,66.02872642600016],[-162.62888989299992,66.03812638400007],[-162.76353538899994,66.09518999300002],[-163.09302621899994,66.06296266800013],[-163.49587163899994,66.0853898690001],[-163.64698394699997,66.05923153400016],[-163.95540592199995,66.01548074800002],[-164.65935763099995,66.01094324100006],[-164.89887712299995,65.94442371500003],[-165.2242302639999,65.92780165100015],[-165.69932658899992,65.94895221800004],[-166.19827184699997,66.02360344800013],[-166.3881068089999,65.99818870600012],[-166.97996040699994,65.78132919500018],[-167.4514375649999,65.7278037750001],[-168.09727977199995,65.60540967700018]]]]},"properties":{"objectid":71,"eco_name":"Beringia upland tundra","biome_num":11,"biome_name":"Tundra","realm":"Nearctic","eco_biome_":"NE11","nnh":2,"eco_id":410,"shape_leng":36.7424915132,"shape_area":9.10003338988,"nnh_name":"Nature Could Reach Half Protected","color":"#5ACFC7","color_bio":"#9ED7C2","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":47024.040719067554,"percentage":0.5503005852001633}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[117.83110054800022,38.25513491600003],[117.67221067700018,38.38457279100004],[117.67851252700007,38.27399067800019],[117.78082254000003,38.0947756970001],[118.09885357200017,37.752583997000045],[118.21549261700011,37.72152150200003],[118.38207959000033,37.71314479600005],[118.54003856700012,37.74473719400015],[118.67523162400005,37.72429859400012],[118.74025759100005,37.62448555000003],[118.67629964700006,37.565919684000164],[118.51995854400002,37.602188849000186],[118.44186368200008,37.53621120100013],[118.6114116460003,37.33473003000012],[118.71042656500003,37.26709326800011],[118.78960453700006,37.13326512000003],[119.01318359100003,37.00571149600006],[119.44687667200003,36.87988219800013],[119.53272965700023,36.87213547600004],[119.71478258200011,36.94119498200007],[119.81160764600008,36.99943278000012],[119.76721155400003,37.14932082300004],[119.64276158200005,37.13014822500014],[119.3874965880002,37.12098512900013],[119.23275760300021,37.1415459370001],[118.97109956300005,37.26876445200014],[118.93887366000001,37.345704959000045],[118.95247665100032,37.53153812300019],[118.97998069300002,37.610142772000074],[119.09387164600003,37.719583774000114],[119.03166166400013,37.78069438600005],[119.03692667200005,37.87068886900016],[118.94831855600012,38.04069180200008],[118.86360165500002,38.04735960600004],[118.83055164300015,38.15429894500011],[118.61637859400003,38.13680524200015],[118.54749259300013,38.065418417000046],[118.45999155900017,38.109026442000186],[118.17803959100002,38.14402206100016],[118.08360253200021,38.13180007200009],[117.90415956300012,38.24179930800011],[117.83110054800022,38.25513491600003]]],[[[119.05165065900019,39.224281575000134],[119.1140056480001,39.28518951300015],[118.88979359400025,39.401036970000064],[118.6698075270001,39.42390565200009],[118.30580862900024,39.4185534720001],[118.06536066100011,39.373475093000025],[117.76710455000011,39.257330917000104],[117.62812069300003,39.10196429500013],[117.6519626810001,39.05185895400018],[117.87996654100016,39.19344405100014],[118.05165054900033,39.22206154500009],[118.14305168300007,39.19289403000005],[118.24275157200009,39.06595882400006],[118.34583255200005,39.04234633200019],[118.50138860500022,39.113451022000106],[118.60498054700031,39.18733314000019],[118.74832165300006,39.14067175600013],[118.84915158900003,39.184556048000104],[118.94859365000013,39.18095417700005],[119.05165065900019,39.224281575000134]]]]},"properties":{"objectid":75,"eco_name":"Bohai Sea saline meadow","biome_num":9,"biome_name":"Flooded Grasslands & Savannas","realm":"Palearctic","eco_biome_":"PA09","nnh":3,"eco_id":742,"shape_leng":11.8505088713,"shape_area":1.18760179715,"nnh_name":"Nature Could Recover","color":"#3370A6","color_bio":"#BEE7FF","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":11583.712934499676,"percentage":1.001736807089989}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[147.96242213400012,-28.949548535999952],[147.94144510500018,-29.006372259999978],[147.84870283400005,-29.040729016999933],[147.8816035440002,-29.107086003999882],[147.8218598090001,-29.274618201999942],[147.68343136900012,-29.3296074779999],[147.59964528500007,-29.44250977099989],[147.59023076800008,-29.543733141999894],[147.49872358400012,-29.531797126999948],[147.34900474800008,-29.69006580499996],[147.37271705100022,-29.728087020999908],[147.27855558100032,-29.8368425299999],[147.29447091900022,-29.893872448999957],[147.38466649200006,-29.976101980999942],[147.38935143600008,-30.033602988999974],[147.55071342200017,-30.016686395999898],[147.54781345300012,-29.92656565999988],[147.58757749300003,-29.85541006099993],[147.74199657400004,-29.799371702999906],[147.84349820400007,-29.73170417599988],[147.78519347500003,-29.6233093809999],[147.85549035800022,-29.450891904999935],[147.9152286210001,-29.392124398999954],[147.90528018800012,-29.302610503999972],[147.93733882400034,-29.108109937999984],[148.06064527500018,-29.076617273999943],[148.05474447600034,-28.96898480799996],[147.96242213400012,-28.949548535999952]]],[[[151.06020999400005,-23.448090007999895],[150.97845999400022,-23.48711000799989],[151.04587999400007,-23.620650007999927],[151.1366499940002,-23.676480007999885],[151.1920399940002,-23.773970007999935],[151.30103999400012,-23.74401000799992],[151.2267099940002,-23.61427000799995],[151.2347699940002,-23.49757000799991],[151.15801999400003,-23.510460007999825],[151.06020999400005,-23.448090007999895]]],[[[148.34126281700003,-32.27128543999993],[148.4211124190001,-32.21596445599994],[148.54071116200032,-32.32780713899996],[148.59744422500012,-32.438097520999975],[148.6526201920001,-32.45573627599998],[148.7387255770002,-32.40871974899994],[148.96583744300005,-32.36133283999982],[149.04945559400005,-32.281784660999904],[149.03039733900016,-32.233547815999884],[149.1046767580001,-32.15805087899997],[149.1629658500002,-32.27700415199996],[149.24603458800004,-32.324756064999974],[149.39834757900007,-32.248160113999916],[149.31178453200016,-32.20027843399998],[149.3822493450001,-32.140879481999946],[149.34468205100006,-32.03056645399988],[149.49194406100003,-31.903233367999974],[149.55046142600008,-31.901486069999976],[149.6500097710002,-31.966852155999902],[149.7408917570001,-32.13293540799998],[149.9201060270001,-32.15607415199992],[149.97793705700008,-32.22536807599988],[150.17448656000022,-32.22006093699997],[150.2788418030001,-32.28376632899989],[150.31593604800003,-32.20211250999995],[150.43910438400007,-32.21660068099993],[150.50325197700022,-32.13550749199993],[150.56155569400016,-32.176160995999965],[150.64328137600012,-32.14080266899998],[150.735612198,-32.17941136099995],[150.7831734250002,-32.117048457999886],[150.77331611500006,-32.05058841299996],[150.68386916900022,-31.93126974699993],[150.79212993800002,-31.88903729499998],[150.88037185200005,-31.80507433899993],[150.79245099500008,-31.740191787999947],[150.7080245640002,-31.567441196999937],[150.5810106150002,-31.424619046999908],[150.53474620400004,-31.23603234199993],[150.56601195300016,-31.13753881499997],[150.4967214840001,-31.066680770999938],[150.45894,-30.870129856999938],[150.33961606700007,-30.810416911999937],[150.23883160200023,-30.54364569699993],[150.27548330800016,-30.506582077999894],[150.0474547470003,-30.270538166999927],[149.97198460200002,-30.260282573999973],[149.94035257100018,-30.12811447799993],[149.9622792780001,-30.063806272999955],[150.0521839710001,-29.995597027999963],[150.13889991400004,-30.010304444999974],[150.1988357150002,-29.78041308899998],[150.25321788800022,-29.706029912999952],[150.25703189900003,-29.51425351599994],[150.28941120100012,-29.474118811999915],[150.41032233500016,-29.47156089899994],[150.4685199080002,-29.544238375999953],[150.52989072100002,-29.518467915999963],[150.6077726100002,-29.64920316699994],[150.74090549000005,-29.534651389999965],[150.61959756300007,-29.452389435999976],[150.68134990300018,-29.3765032849999],[150.81448271800014,-29.308896961999892],[150.8727246320002,-29.071659046999912],[150.812589182,-29.00352109399995],[150.92585673900032,-28.848969273999842],[150.96335009600023,-28.870191928999873],[151.10675072000004,-28.846096287999956],[151.08529075500007,-28.668483883999954],[151.14694763700004,-28.550414658999955],[151.2060963350001,-28.51559949599988],[151.22748264300003,-28.437824983999974],[151.29902266400006,-28.417783429999872],[151.3296307080002,-28.28907545899989],[151.25465220600017,-28.24872703299991],[151.2453567130001,-28.131642083999907],[151.31802404500002,-28.078233069999953],[151.4552315830001,-28.093514793999873],[151.5700040260001,-28.153554579999934],[151.59428720900019,-28.016090799999972],[151.7133345100002,-27.985668486999884],[151.81917784700022,-28.154897991999974],[152.02884432500002,-28.304746438999928],[152.12842500300007,-28.443405098999847],[152.21630999600006,-28.44891000499996],[152.25319294200006,-28.372094862999973],[152.32332000400004,-28.352092091999964],[152.32501482400016,-28.22874549999989],[152.3755204590001,-28.168226987999958],[152.33390902700023,-28.118524127999876],[152.38249211900006,-28.05980613899993],[152.18835338600013,-27.918863160999877],[152.11399607700014,-27.786410562999947],[151.98869078200005,-27.753546262999976],[152.00640460500017,-27.60089577499997],[151.96399947500004,-27.505500564999977],[152.013498227,-27.449796169999843],[151.95970947400008,-27.318651803999956],[152.02689245200008,-27.21871406999992],[151.95764733500005,-27.130528763999905],[151.83981892500003,-27.11648826499993],[151.7340593880001,-27.005371420999893],[151.59608921200015,-26.935720546999903],[151.52719518900005,-26.85095083899995],[151.50398564600005,-26.757897437999873],[151.57438863100026,-26.703285735999884],[151.6195531000002,-26.586582679999935],[151.809828325,-26.496224614999903],[151.73441845900004,-26.38259725499995],[151.70634093900003,-26.251101533999872],[151.63457879300006,-26.211797495999917],[151.56656959600002,-26.09319158699998],[151.6484776560003,-26.037618734999967],[151.6489797160001,-25.867729415999918],[151.56359077600007,-25.755238532999897],[151.5193700540002,-25.65722222599993],[151.46673947200009,-25.39679726099996],[151.3653748370001,-25.331327795999982],[151.39152685800002,-25.237859929999956],[151.4134046700001,-24.944908927999904],[151.30166490300007,-24.70686975899997],[151.1802208140001,-24.650907695999933],[151.12855443800004,-24.568413070999952],[150.98553473100003,-24.55929374199991],[150.91908310000008,-24.515878761999886],[150.8673097100002,-24.406369238999957],[150.90232763400002,-24.303022571999975],[150.7899929020001,-24.207110496999917],[150.94808777000003,-24.213828482999872],[151.0696991650001,-24.145927732999894],[150.99966300300002,-24.319004295999946],[151.07282873400004,-24.36858163099987],[151.1342609750002,-24.460946211999897],[151.22772007500032,-24.39200780699997],[151.188473648,-24.25446406899988],[151.2647360510001,-24.22072797399983],[151.2732495590002,-24.07556930899989],[151.2465011050001,-24.00130133399989],[151.1589774470001,-23.91042992399997],[151.12493529500023,-23.827622865999956],[151.15869999400013,-23.749080007999908],[151.12225999400005,-23.672730007999974],[151.0541499940001,-23.63985000799994],[151.0157399940001,-23.565740007999864],[150.89277999400008,-23.61490000799995],[150.85065999400013,-23.544180007999955],[150.86727999400023,-23.472520007999833],[150.81989999400002,-23.421270007999908],[150.79314999400003,-23.321600007999905],[150.8254999940001,-23.23960000799991],[150.73884144800002,-23.116573551999977],[150.73328539900012,-23.03157239899997],[150.62860767700022,-22.98127210399997],[150.51022947900003,-22.843651653999814],[150.36448136800004,-22.81460294899989],[150.47929800500015,-22.68482265299997],[150.45712079500015,-22.63280034499985],[150.55781999400017,-22.56335000799993],[150.45199999400006,-22.52301000799997],[150.30093999400003,-22.419440007999924],[150.1753699940001,-22.355070007999927],[150.1512399940002,-22.25873000799993],[150.04268999400017,-22.127970007999977],[149.96388999400017,-22.1748300079999],[149.91292999400002,-22.34520000799995],[149.9619899940002,-22.538760007999883],[149.88719999400007,-22.491550007999933],[149.8515299940002,-22.417510007999965],[149.70322999400003,-22.45358000799996],[149.70841999400022,-22.38461000799998],[149.57283999400033,-22.232930007999983],[149.53533346000017,-22.15881206599994],[149.4682805860001,-22.15315597999995],[149.41442996600006,-22.219252393999966],[149.4340414820001,-22.288654665999843],[149.34246176300007,-22.33302494299994],[149.48338722900007,-22.615852177999898],[149.47614508300023,-22.760011533999887],[149.38988820600002,-22.70969007899987],[149.31106513600014,-22.502468150999846],[149.28338456400002,-22.31503397599994],[149.24762582400012,-22.280369540999914],[149.29309358900002,-22.119945607999853],[149.27127709500007,-22.034047889999954],[149.206330137,-22.00993293299996],[149.20408213100018,-21.849730424999905],[149.12099331500008,-21.870966899999928],[149.01514580700018,-21.6733589829999],[148.95886901500012,-21.687746576999928],[148.9054565910002,-21.55502232499998],[148.9232348510002,-21.505435032999856],[149.0144603780002,-21.515476276999948],[149.0080561970001,-21.445174931999873],[148.92193787800022,-21.37704189999988],[148.8074230310002,-21.389577533999955],[148.7256914410001,-21.57647190299997],[148.67352720700023,-21.50944362199988],[148.67594827100004,-21.44206142099995],[148.56266370400022,-21.39651734499995],[148.48414552000008,-21.297348623999937],[148.49530032000018,-21.23185074499986],[148.43628435200003,-21.12068489099994],[148.47509982600002,-21.027800924999895],[148.47132121800018,-20.83752186499993],[148.25533078500018,-20.59601227899998],[148.2457172600001,-20.512571401999878],[148.18394384700014,-20.501474342999927],[148.2566608520002,-20.269850994999956],[148.31544490900023,-20.22976241099991],[148.31884470600005,-20.140104736999945],[148.27549999300004,-20.09667000899998],[148.26719999300008,-19.98894000899986],[148.18663999300009,-19.943740008999953],[148.11267999300003,-19.94194000899995],[148.08020999300004,-19.881480008999972],[147.98578999300003,-19.926600008999912],[147.92611999300016,-19.914820008999925],[147.86280999300016,-19.846450008999966],[147.8528799930001,-19.745880008999904],[147.75431999300008,-19.70793000899988],[147.77134999300017,-19.830660008999814],[147.67617999300023,-19.83061000899994],[147.59366999300005,-19.731900008999958],[147.56483999300008,-19.561310008999953],[147.47799999300003,-19.44173000899997],[147.31475999300005,-19.40824000899994],[147.26260999300007,-19.42666000899993],[147.13485999300008,-19.407770008999876],[147.06606999300016,-19.340020008999943],[147.04136999300033,-19.210760008999955],[146.96089999300023,-19.293230008999842],[146.88409999300006,-19.30440000899989],[146.77485999300018,-19.19143000899993],[146.68874999300021,-19.193940008999846],[146.60376317700002,-19.152372604999925],[146.53239408800005,-19.279167971999925],[146.46854016900022,-19.34198231599987],[146.59909450400005,-19.45044264299986],[146.6119497100002,-19.521478698999886],[146.67116504000012,-19.595839221999825],[146.77802329700012,-19.63586910299989],[146.7490695790002,-19.715685505999886],[146.76629538600002,-19.787420484999927],[146.68145472900005,-19.831411169999967],[146.72486958000013,-19.90285060499997],[147.0011016740002,-19.905086887999914],[146.97736581400022,-19.98585610599997],[147.20889644800002,-20.239903332999916],[147.29010080600017,-20.440883850999967],[147.37697764900008,-20.508139463999896],[147.36657243000025,-20.588156798999933],[147.44700580000006,-20.612305660999937],[147.5399370780001,-20.75595525599988],[147.66084908400012,-20.814244737999957],[147.6339547990002,-20.912700256999926],[147.50965454200002,-20.840895911999837],[147.39113187500004,-20.812121839999975],[147.30054584000004,-20.8188824639999],[147.2795651370002,-20.86883554499991],[147.17489006800008,-20.887104610999927],[147.04848867400005,-20.843526456999882],[147.08790995700008,-20.675814665999894],[147.1765917140002,-20.615368583999896],[147.10080338800014,-20.538080987999876],[147.00319672100022,-20.567301215999976],[146.90524224700005,-20.46231368399998],[146.79734647500015,-20.565834801999927],[146.76270993900016,-20.542165614999874],[146.72084486200004,-20.40315961999994],[146.58606245800001,-20.31759766899995],[146.45104781500027,-20.311044050999897],[146.38916333300006,-20.39017129599989],[146.39715399600004,-20.494644522999863],[146.53023723600006,-20.693076578999978],[146.4484736400002,-20.78527183999995],[146.5119542990002,-20.889839150999933],[146.49744397000018,-21.00268161599996],[146.3969571130001,-21.03031472399988],[146.3290288310003,-20.97948974999997],[146.18846756200014,-21.034205129999975],[146.15959028500004,-21.13187387399995],[146.25276387300005,-21.13249962599997],[146.32047197400027,-21.16989619599991],[146.31382283200026,-21.233932737999908],[146.363912077,-21.356889683999952],[146.3184560310002,-21.466083396999863],[146.34046631400008,-21.526590169999906],[146.45073235500013,-21.54559778299989],[146.4560066570001,-21.752128679999885],[146.53320780800004,-21.839974009999935],[146.42131878200007,-21.907797319999872],[146.4677185930001,-21.968715619999955],[146.38585415900002,-21.99946233299994],[146.35574428900009,-22.071806787999947],[146.42443325500017,-22.121676410999953],[146.48553852800023,-22.24158486899995],[146.5211532950001,-22.369163388999937],[146.50289042300005,-22.50121341499994],[146.45442693100006,-22.57998893599995],[146.5210059460003,-22.68824367699989],[146.4906275940001,-22.780381256999874],[146.55235290700023,-22.81203699499997],[146.61089257600008,-23.023701909999886],[146.6065559540001,-23.181672176999882],[146.6645558130001,-23.223051276999968],[146.6669871800001,-23.300606506999827],[146.57686950700008,-23.38439306899994],[146.59416266000005,-23.512126970999816],[146.65441304600017,-23.58032421599995],[146.58002883000017,-23.707687370999963],[146.52099456500014,-23.75016448699995],[146.4176936580002,-23.742489767999814],[146.29187115900004,-23.611435927999935],[146.2320173730002,-23.59894849699998],[146.28929911400007,-23.75822736599997],[146.33836897700007,-23.792600652999965],[146.29548048100003,-23.94689135599998],[146.2447500310003,-24.000918733999868],[146.16425843900015,-24.00097243099998],[146.1154494320001,-23.91354336099988],[146.04469074400004,-23.932015238999895],[146.00561153400008,-24.136976133999895],[146.02225201600015,-24.198766426999953],[146.09432273300013,-24.270980911999857],[146.05161584500024,-24.43979656099998],[145.96486270100002,-24.50281175399988],[145.9603192640002,-24.584915784999964],[146.1576844210001,-24.538872296999898],[146.23503820100007,-24.609136943999943],[146.25668208100012,-24.69983059699996],[146.18250954600012,-24.728094081999927],[146.2158159620002,-24.85371704599993],[146.43007953400001,-24.856161125999904],[146.47744433100013,-24.995560981999915],[146.50395617700008,-25.16308614499991],[146.48036658300032,-25.282008806999954],[146.54616627400003,-25.34658090099998],[146.54413617500018,-25.48609223299991],[146.47506779000003,-25.551912057999914],[146.4854222170003,-25.713190921999853],[146.4169129070002,-25.826907653999967],[146.4074551210001,-25.99568815999993],[146.4877783080001,-25.907366530999923],[146.58013237600017,-25.848994626999968],[146.5781617240002,-25.80460605399992],[146.72220296600005,-25.632063052999968],[146.93316621500003,-25.59457021299994],[147.0357378880002,-25.650833866999903],[147.05524835900007,-25.76020892999992],[147.01224597100008,-25.841312407999908],[147.0401967160002,-25.894304914999964],[147.01878815700013,-26.020882363999874],[147.06742948300018,-26.101160012999912],[147.03922045000002,-26.278419708999877],[146.97358489300007,-26.34184418399991],[147.03998121200004,-26.398498434999965],[147.02069392900023,-26.480643229999885],[147.09578199300006,-26.582196008999972],[147.0762517600001,-26.637513470999977],[147.1843492370001,-26.70837933499996],[147.31641047000016,-26.66155391999996],[147.35231809700008,-26.712826052999844],[147.45100010500005,-26.63771242499996],[147.546980404,-26.69846079399997],[147.62016419400004,-26.58581685199988],[147.7063015010001,-26.695675865999874],[147.80441783100014,-26.741011778999848],[147.848270242,-26.713994368999977],[147.97795039000005,-26.749850800999866],[148.05243022500008,-26.88590874399995],[148.19970552500024,-26.79608072199983],[148.26900828300018,-26.91806670299991],[148.34737186100006,-26.93627820399996],[148.41878865800004,-27.044681643999922],[148.53005492800003,-27.009205758999883],[148.6095685560001,-27.07845652599991],[148.66975018500023,-27.18816865799988],[148.7733630460002,-27.267678516999922],[148.81423211900017,-27.33595995099995],[148.71530122800016,-27.406090630999927],[148.73182685400002,-27.518163344999948],[148.67278361400008,-27.573972073999926],[148.71758956000008,-27.68927028699983],[148.6293458890001,-27.85663498799994],[148.66399770400005,-27.87701329899994],[148.84060566300002,-28.132775606999928],[148.8207494080002,-28.251278332999902],[148.77174699900002,-28.306885452999836],[148.8991813240001,-28.527734221999935],[148.87845494800013,-28.615771961999883],[148.90838280900005,-28.755326976999868],[148.84061624700007,-28.802682270999924],[148.74170630300023,-28.98008916299989],[148.55417647800016,-29.186719787999948],[148.57714093200002,-29.252077148999888],[148.47292341000002,-29.373961190999978],[148.49411893500007,-29.541772069999922],[148.6672296900001,-29.419887852999977],[148.66899954500002,-29.340398874999835],[148.60010555600002,-29.269741023999984],[148.63013489000002,-29.146091095999907],[148.77321666600017,-29.117827580999972],[148.82798049100006,-29.066599802999917],[148.77573089800012,-28.991685987999915],[148.89905070500004,-28.968019980999884],[148.94178097100007,-28.89146412799994],[149.01033352600018,-28.893712026999935],[149.16667427800007,-28.77539184199992],[149.2219653860002,-28.646321526999884],[149.3072349470002,-28.638009884999974],[149.37728323000022,-28.524222934999898],[149.4704780930001,-28.50272016499997],[149.55082951600014,-28.426224078999894],[149.6997972570001,-28.329283985999894],[149.94147498600023,-28.22549964399991],[149.90174328900002,-28.37009770399993],[150.0423360210001,-28.382137526999884],[150.16070120100005,-28.30110394499991],[150.1808164680001,-28.353372829999955],[150.28724864100013,-28.41615891799995],[150.39400862000014,-28.59131387099984],[150.4807509730001,-28.645268770999905],[150.56192399700012,-28.653923896999913],[150.68377845500004,-28.59784939499997],[150.74724909200006,-28.66137644299988],[150.67989692800006,-28.716411434999884],[150.73429540300003,-28.798122627999874],[150.54015622100007,-28.74922563499996],[150.43040963200008,-28.76371363399994],[150.26003486000002,-28.721332987999972],[150.1430608720001,-28.755671495999934],[149.87830527200015,-28.800393568999937],[149.88006033300007,-28.853753750999942],[149.79392448200008,-28.927108801999907],[149.66308034300005,-28.959740136999926],[149.65545113800022,-29.00863895699996],[149.7143657680001,-29.095513073999882],[149.78847843000005,-29.264731134999977],[149.90353035500016,-29.421778212999982],[149.73435589300004,-29.46232519299997],[149.64396293400023,-29.565564584999947],[149.6345638260002,-29.67053403099993],[149.48911718800002,-29.74409342799993],[149.4496887580001,-29.846110223999972],[149.54572823400008,-29.963316612999904],[149.60426147200008,-30.08727337099998],[149.67162940900005,-30.16529344199995],[149.70740413700014,-30.26166696699994],[149.49291840100022,-30.22017034399994],[149.25030410900013,-30.308168636999937],[149.08790480200025,-30.306447040999956],[148.89901623300022,-30.35189574499998],[148.54981865100012,-30.400685259999932],[148.45895259400015,-30.475270557999977],[148.51438803200017,-30.561673500999973],[148.73432875100002,-30.70885336799995],[148.8822326170001,-30.88845124799991],[148.8925780830001,-30.932615720999934],[148.81120285400004,-31.015017501999978],[148.79412828900013,-31.102461980999976],[148.7176510810001,-31.257549267999934],[148.74490353900012,-31.278388878999976],[148.70663434900007,-31.413122565999913],[148.59281843100007,-31.394510881999906],[148.56088169200018,-31.49282164499988],[148.67341580900006,-31.68795698499997],[148.66694593800003,-31.739720565999846],[148.55946261600002,-31.740407374999904],[148.5079486840001,-31.68123946099996],[148.43197476900002,-31.692657052999834],[148.39396519700017,-31.767478818999905],[148.22639326700005,-31.953438665999954],[148.2741843340002,-32.06149970599995],[148.27390999800002,-32.13302919599994],[148.34126281700003,-32.27128543999993]],[[146.62312858300027,-25.13591167299984],[146.7737573840002,-25.123193973999946],[146.81883089200028,-25.184685401999957],[146.79490502900012,-25.24310411099998],[146.86907831200006,-25.3424628599999],[146.73801785900025,-25.5684290829999],[146.68158134200007,-25.572599380999975],[146.66042081000023,-25.689535814999886],[146.61017730000026,-25.767419634999953],[146.49344366100001,-25.817775410999957],[146.52815918400006,-25.706534567999938],[146.51939777700022,-25.609795196999983],[146.69533628200008,-25.42046473399995],[146.67396679900003,-25.23046752199997],[146.62312858300027,-25.13591167299984]],[[150.3748694740001,-22.702511400999924],[150.25603018100003,-22.626473071999897],[150.26783730500006,-22.55188333399991],[150.3563562290002,-22.527208834999897],[150.37857712700009,-22.59735701799991],[150.33539217500004,-22.6536968609999],[150.3748694740001,-22.702511400999924]]]]},"properties":{"objectid":82,"eco_name":"Brigalow tropical savanna","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Australasia","eco_biome_":"AU07","nnh":2,"eco_id":182,"shape_leng":145.696797959,"shape_area":36.7541572261,"nnh_name":"Nature Could Reach Half Protected","color":"#8BFC3A","color_bio":"#FEAA01","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":410677.8621400929,"percentage":1.9155630404257353}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-135.89706428799997,68.53748372000018],[-136.1717598599999,68.55836059100017],[-136.185694077,68.48106908500006],[-136.43809232299992,68.49746626500018],[-136.76585828099996,68.61574031999999],[-137.22125336099998,68.71811845300016],[-137.48283947999994,68.71453200200017],[-137.85393785899998,68.7927076380002],[-137.86184647599993,68.87052099300018],[-138.1080446599999,68.87341222200001],[-138.47636616699998,68.92008297900009],[-138.77419404099993,69.02563358800018],[-138.93629156499992,69.04497442500019],[-138.94729731299998,69.13536067600006],[-139.20315423799997,69.2280645300001],[-139.29339670399997,69.19621340800012],[-139.72320746399993,69.35746874500018],[-139.90803402699999,69.40198511699998],[-140.00790528999994,69.52271276500005],[-140.18591284699994,69.55799928800013],[-141.00269500499996,69.51107436900008],[-141.4442795529999,69.43752370400017],[-142.0599592029999,69.45708573900004],[-142.71740187399985,69.49163092800006],[-143.1380102299999,69.5341808500001],[-144.0290819969999,69.56146846400014],[-144.29746339899992,69.60098749000002],[-144.62637061999996,69.69689935800011],[-145.45662730299998,69.64979486800019],[-145.97645805699995,69.64704825100006],[-146.18771914699997,69.59033396000018],[-146.4776472329999,69.56573936100011],[-146.74191205299994,69.42117948300012],[-147.36046936599993,69.32218202200005],[-147.51462056199995,69.23747826800007],[-148.179323395,68.95309543900004],[-148.52753887699996,68.81398813400006],[-148.98222565199998,68.86921708200003],[-149.08527856299992,68.91073186400001],[-149.523883322,68.90387402900006],[-149.89570748399996,68.95507863100016],[-150.04899314199994,68.90007430600019],[-149.9549753579999,68.81927166400004],[-150.08052625199997,68.78315323600015],[-150.25123141899994,68.83892843900009],[-150.67795925099998,68.68909635000006],[-151.22208309499993,68.64968864900004],[-151.27523643799995,68.72008839300008],[-151.73060650499994,68.66239825900004],[-151.944739569,68.58046359800011],[-152.04779703099996,68.47991698900012],[-152.23391637899996,68.52808666700008],[-152.437552,68.62596231600003],[-152.62180062199994,68.6552971500002],[-152.7811757229999,68.56322325800005],[-152.93308885499994,68.574611071],[-153.02506363099997,68.66993983300017],[-153.27332030699998,68.59850117100012],[-153.63745666199998,68.57052534899998],[-153.63007402299993,68.74598079900017],[-153.814620349,68.76619100500011],[-154.28506130199995,68.61892799700007],[-154.69428216399996,68.54983718700015],[-155.2148209819999,68.52547953900006],[-155.98901886499993,68.55689696100018],[-156.40499375499996,68.45931748600003],[-156.85884994199992,68.43330562800008],[-156.86501605299995,68.52635109300002],[-156.60705572099994,68.60374718700007],[-156.63227976999994,68.65314974300009],[-157.18212545699993,68.66159596400018],[-157.50397530799992,68.69197791200008],[-157.86322169199997,68.60193881900017],[-158.0161408879999,68.60634738000016],[-158.1386344169999,68.79186622700013],[-158.9744394489999,68.79387098600017],[-159.38604998399995,68.81801999800007],[-159.607865561,68.91341047800017],[-160.21701983699992,68.87388043000004],[-160.24949416899995,68.93625213500013],[-160.158826541,69.05858668000019],[-160.62163300899994,69.0551133670001],[-160.85991560699992,69.00514306900004],[-161.06019146799997,68.80909544600007],[-161.777462893,68.72043667100013],[-162.14995553299994,68.69540873900019],[-162.15473386799997,68.60563303000004],[-162.42214563899995,68.60214731299999],[-162.69833898699991,68.73046448800017],[-163.1203913349999,68.54146457300016],[-163.42840059399992,68.44304334300011],[-163.83106663499993,68.37041178800001],[-163.87223042499994,68.30121851000018],[-163.52051924499995,68.16011465200012],[-163.2976494989999,68.13719503400017],[-163.04379007099993,68.2361497920001],[-162.822022977,68.1447568370001],[-162.32802423199996,68.3013851720001],[-162.20082100799993,68.14718732900013],[-161.960157955,68.15121403500007],[-161.61683510199995,68.40356469300013],[-161.43350689799996,68.42363314400018],[-161.29426626599997,68.38067082700002],[-161.290486771,68.06279068700013],[-160.95646992099995,68.0755835430001],[-160.94882359899995,68.15425954500017],[-160.7066535239999,68.12706373400016],[-160.474991585,68.06384262600005],[-160.22347054399995,68.02873337100004],[-159.93760634199998,68.0655597390001],[-159.94394113599992,68.12147659800007],[-160.13897942499997,68.3546402070001],[-160.01783757099992,68.52730758200005],[-159.74708336699996,68.4898461950001],[-159.47127777099996,68.48458618],[-158.90795983099994,68.43068164300013],[-158.73593267999993,68.35063989700006],[-158.21741803299997,68.2385195670002],[-157.36903940599993,68.09875515300013],[-157.1218906389999,68.13383525799998],[-157.22578582499992,68.01880352400013],[-156.77424589899994,67.93419555300017],[-156.84425553099996,67.87721513500003],[-157.79949104199997,67.82312962400005],[-157.89441260899994,67.6985825500002],[-157.85608327099996,67.60111719400015],[-158.4767560159999,67.62924235600002],[-158.7545094159999,67.66200424500016],[-158.9545462989999,67.90816815700015],[-159.23629262699995,68.00175410000003],[-159.3514843259999,67.96178098800004],[-159.82642549799996,67.93935209900013],[-160.2845237079999,67.876940219],[-160.567826834,67.88753061900019],[-160.45282559099996,67.77265781000006],[-160.78986764599992,67.77376317300013],[-160.92244157199997,67.8521886100001],[-161.2324229669999,67.94348968499997],[-161.43701909799995,67.92976178300012],[-162.064911881,67.7913495840001],[-162.299060654,67.75774451100006],[-162.10041904499994,67.66957309800011],[-161.88255542699994,67.6314692680001],[-161.71163996599992,67.65120607800009],[-161.69251455399993,67.56658485600019],[-161.8216375369999,67.48569001300018],[-161.61856839799992,67.46811015400016],[-161.42075254199992,67.50292494600006],[-161.36069889099997,67.44327671600013],[-161.13642458199996,67.49104426100013],[-160.97370096299994,67.48522531900011],[-160.71269635199994,67.36881839300014],[-160.35045498399998,67.4449644300002],[-160.3881739249999,67.32680342400005],[-160.26935303399995,67.16969378400012],[-160.00242588299992,67.15493960700013],[-160.04288573299993,67.49474464100007],[-159.91330639799997,67.69985004200004],[-159.80896574499997,67.685932277],[-159.7057676599999,67.45498383000017],[-159.2456042329999,67.39912443900016],[-158.6741176069999,67.365546574],[-158.5426413929999,67.42749985500012],[-157.5595079469999,67.33651237200007],[-156.30723155,67.14566090600005],[-155.76497843699994,67.07753731700012],[-155.16302407199993,67.02376810100014],[-154.39153656,67.05423748200008],[-153.54546679399994,67.11545323700011],[-152.731097974,67.18189123800016],[-151.83153295299996,67.20165382],[-151.0462236639999,67.1721673150002],[-150.52302557999997,67.18472559600019],[-150.23743451099995,67.17554367100013],[-149.9757790019999,67.23284941800011],[-149.04665247199992,67.33217409600013],[-148.25366735999998,67.3247730760001],[-147.76797069699998,67.49708985200004],[-147.3793609779999,67.58133707000007],[-147.14574345199992,67.66255611400004],[-146.70122957099997,67.64770110400019],[-146.52115181399998,67.69674486800017],[-146.60504751899998,67.8263600790001],[-145.97331858599998,68.00098021800017],[-145.80775314499994,67.89124369900009],[-145.41418283899998,67.88678761100016],[-145.2181300149999,68.05837064299999],[-144.96350215699994,68.09698134000018],[-144.47020491499995,68.08362986800017],[-144.079183033,68.03926273900015],[-143.7564678259999,68.10118491300005],[-143.88496801399992,68.17529120900019],[-143.92789025299993,68.31099834700012],[-143.41421242799998,68.35251139500019],[-143.032030089,68.32190247200003],[-142.61155774599996,68.3105436680001],[-141.9488161499999,68.36849076700014],[-141.57444036499993,68.6627943920002],[-141.06983488799983,68.7300747320001],[-140.86712282999997,68.5931076620002],[-140.7370302619999,68.59855623200013],[-140.41784187599995,68.71285138500008],[-140.33342880499987,68.80484460600007],[-139.94683432199992,68.77087209100017],[-139.70271393099983,68.67659061100017],[-139.32262468999988,68.64332799599998],[-139.5791509139999,68.55394891300017],[-139.55368777699994,68.41887372700012],[-139.2529212789999,68.34649112200003],[-138.937116678,68.39905587300012],[-138.75124282799987,68.47283579700007],[-138.29390376899994,68.42106736600016],[-138.10867205299996,68.27142917300017],[-137.91452550999998,68.2427697240002],[-138.21503840099996,68.10444533600008],[-138.34753519799995,67.94816537300017],[-138.07400826599996,67.95910083700011],[-137.96184002599995,67.92892557800013],[-137.6322702459999,68.03171852600008],[-137.47227622999998,68.0454494230001],[-137.46328767299985,67.84053121600016],[-137.56216489899998,67.60783408200007],[-137.42124322799998,67.54108175800019],[-137.113936143,67.47470070100002],[-136.86765271999997,67.478343789],[-136.76922790899994,67.37453377500015],[-137.0012055719999,67.26753939200012],[-136.83136992099992,67.13726528100005],[-136.8649227209999,67.10721149300008],[-136.62025020299996,67.17973829000005],[-136.51778429299992,67.09411216000012],[-136.652436729,66.97953884300006],[-136.60941143099996,66.92379968700016],[-136.340016005,66.7833260290002],[-136.21606288699996,66.56604617300013],[-136.32632256999995,66.34501593300018],[-136.096055456,65.96297443000009],[-135.68801880899997,65.88773262900008],[-135.60689774099984,65.92197164900006],[-135.32498700399998,65.84936097600013],[-134.99511308799998,65.94978850900003],[-135.1201899849999,66.09945547400008],[-135.32668418899988,66.19750711600011],[-135.46871387799996,66.3026399310001],[-135.674837014,66.56537035600013],[-135.844850905,66.73015778000007],[-135.87540491699997,67.00085942500004],[-135.78817002899996,67.21213214700003],[-136.00778166299995,67.33187869600005],[-136.037687582,67.47154035500006],[-135.949128154,67.70332441100004],[-135.69716969899991,67.84681568100007],[-135.60191071799994,67.96998517600014],[-135.60879820899999,68.15740409900008],[-135.6667596459999,68.35083593799999],[-135.84873888899983,68.42761258500019],[-135.89706428799997,68.53748372000018]]]},"properties":{"objectid":84,"eco_name":"Brooks-British Range tundra","biome_num":11,"biome_name":"Tundra","realm":"Nearctic","eco_biome_":"NE11","nnh":1,"eco_id":411,"shape_leng":87.11275438,"shape_area":34.7836248459,"nnh_name":"Half Protected","color":"#66BECA","color_bio":"#9ED7C2","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":159831.10604481006,"percentage":1.8704294621364561}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-122.13345849099989,40.20819757000004],[-122.19910587599992,40.21749026500004],[-122.32029181099989,40.132449538000174],[-122.31240916799993,40.051591857000176],[-122.36402432299997,39.95401102000011],[-122.31308337099995,39.82178105500003],[-122.34687114299993,39.80581256400012],[-122.27250238899995,39.64786579600019],[-122.29718441399996,39.49859451100019],[-122.28319461899997,39.327791360000106],[-122.28991910799994,39.138970831000165],[-122.15897201699994,39.02890477700009],[-122.13380701099993,38.93770738000012],[-122.00508850899996,38.90507219000011],[-121.87279035199992,38.76269679900008],[-121.90782435199998,38.70296539100008],[-122.03089101099994,38.79874617500013],[-122.07965102599991,38.67230981500006],[-121.99915543399993,38.61405523200011],[-121.977197075,38.362163765000105],[-121.87197840999988,38.226780630000064],[-121.71983541799995,38.217358811000054],[-121.71637350899994,38.111885879000056],[-121.83474192199992,38.08018296500006],[-121.90343609099989,38.21734762100016],[-121.96220808799995,38.18793948300004],[-122.12636931599997,38.19864522400019],[-122.10721119599992,38.02203283800009],[-122.02045892799993,38.05203343900013],[-121.68003694099991,38.00398784200007],[-121.68822997599995,37.89236405700018],[-121.58679955599996,37.772777764000125],[-121.56691366499996,37.69368775200013],[-121.27984278099996,37.5377201390001],[-121.18863171699996,37.46084970700019],[-121.05759321799997,37.12821505100004],[-121.07603006199992,37.06647047600018],[-120.94505930999992,37.03586959300003],[-120.79398727599994,36.86952015400004],[-120.77217036199994,36.784271993],[-120.714661617,36.74631643000009],[-120.68577400399988,36.65386945000017],[-120.42727690199996,36.476183695000145],[-120.39208724399998,36.392675067000084],[-120.26006168099997,36.29599690700019],[-120.2630777729999,36.239496471000166],[-120.19467156499996,36.131527606000134],[-119.95674310899989,36.00067600600016],[-119.89590109499989,35.877449828000124],[-119.88348264899992,35.76102365100007],[-119.98521081399997,35.75082978600017],[-120.09546086199998,35.651702280999984],[-119.77298706899995,35.38940117000004],[-119.49014833999996,35.33581725300019],[-119.34108514699989,35.28615600100005],[-119.46396795699997,35.21836542799997],[-119.47669363299991,35.13009747300009],[-119.41131071899991,35.11328925500004],[-119.39365141099995,35.03540701600008],[-119.26128074999991,34.978855805000194],[-119.02076342599997,35.033153676000154],[-118.97261809899999,34.93258836100006],[-118.85522611799996,34.933945133],[-118.75041900699989,35.020655457000146],[-118.72966639099985,35.081663224000124],[-118.79443095899995,35.15681718100018],[-118.70952089699995,35.214698587999976],[-118.66609903599988,35.30165629700002],[-118.82266864699989,35.45826190000008],[-118.8453604689999,35.5582185130001],[-118.91900661399995,35.72689634000017],[-118.91632863799998,35.88650726600014],[-118.97348932699992,36.03187426300019],[-118.92250773099994,36.06060694900009],[-118.96638432999987,36.16519499100002],[-119.09179288399997,36.27432812500018],[-119.05500837699992,36.36535459900017],[-119.130104771,36.4967572270001],[-119.23649875899991,36.52450137400018],[-119.23654854599994,36.60307823900007],[-119.30639297,36.69868531100019],[-119.51852828899996,36.85582234200018],[-119.695752546,36.9002184470001],[-119.74054837699993,37.01287028600012],[-119.87621478299997,37.02121858400005],[-120.05318099899989,37.18641392900008],[-120.15688505499998,37.25124365900007],[-120.23565695299988,37.36592023700007],[-120.30241049999995,37.38853759000011],[-120.32477073899997,37.5241700680001],[-120.55002189199996,37.70385932900018],[-120.61295776299994,37.675398373],[-120.71864390599995,37.71181882200017],[-120.84047195599993,37.86133433100014],[-120.980982929,37.96846467800003],[-120.99442972199995,38.1339082180001],[-121.05749021799988,38.19553318200013],[-121.05217442299988,38.297985638000114],[-121.1821728459999,38.48363526500003],[-121.14046012999995,38.656562849000125],[-121.29554729699998,38.776700225000184],[-121.26270048399994,38.900378372000034],[-121.51964880599996,39.40181486400013],[-121.51047065499995,39.50717022800018],[-121.60894484599999,39.58190398400018],[-121.58137333599996,39.62225176600009],[-121.75226277799999,39.664896247],[-121.9492135459999,40.01508898900005],[-122.13345849099989,40.20819757000004]]]},"properties":{"objectid":89,"eco_name":"California Central Valley grasslands","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Nearctic","eco_biome_":"NE08","nnh":4,"eco_id":385,"shape_leng":27.9933284021,"shape_area":4.72769383328,"nnh_name":"Nature Imperiled","color":"#DEFC4E","color_bio":"#FEFF73","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":46573.58759140337,"percentage":0.43956846462246557}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-115.17147053299993,28.120123155000044],[-115.17263762899995,28.27428965600012],[-115.24759665399995,28.23675029700013],[-115.34283468799998,28.135125420000122],[-115.25114454599998,28.046472042000175],[-115.18312858699989,28.03548353400015],[-115.17147053299993,28.120123155000044]]],[[[-118.30056759299993,29.189284024000187],[-118.40416758099991,29.151508630000137],[-118.33750965799993,29.030957081000167],[-118.30223056299985,28.87929526000005],[-118.23806759699988,28.945126728000105],[-118.24056959499995,29.040123698000173],[-118.31111169199988,29.121785563000117],[-118.30056759299993,29.189284024000187]]],[[[-118.58741251499993,33.02889770300004],[-118.49855434899996,32.85427100700002],[-118.42669840699995,32.80775058200004],[-118.36495305499989,32.83552513800004],[-118.50303910299994,32.94019890400017],[-118.58741251499993,33.02889770300004]]],[[[-118.60444856499998,33.47871386300011],[-118.48822126799996,33.418950227000096],[-118.4575758019999,33.32187749000013],[-118.3109575979999,33.33652295400009],[-118.36622124799993,33.40613205000005],[-118.53205764299992,33.47235932000001],[-118.60444856499998,33.47871386300011]]],[[[-120.05188017599988,34.035781090000114],[-120.22395785099991,33.98850534900015],[-120.12383363899988,33.895199005000165],[-120.0016231969999,33.9419225960001],[-120.05188017599988,34.035781090000114]]],[[[-119.91716700899997,34.07744112700016],[-119.85178517099996,33.96942293800015],[-119.72086696799988,33.959422943000106],[-119.75812152799983,34.059232043000065],[-119.91716700899997,34.07744112700016]]],[[[-116.76672166599997,33.93335123000003],[-116.87149251699992,33.95088817400011],[-116.97469905199989,34.05482332100013],[-117.36375750299993,34.21189086800007],[-117.46516020399997,34.17236328600018],[-117.8943557369999,34.14845083100005],[-118.04834449299989,34.171847998000146],[-118.26880028099987,34.25238154200008],[-118.28802880299992,34.288566171000184],[-118.48812849399991,34.341350766000176],[-118.41184209499994,34.37808948900016],[-118.39052676999995,34.47437269600016],[-118.48597239299994,34.463933193000116],[-118.585636793,34.494932253000115],[-118.7553546559999,34.508386708000046],[-118.81974441299997,34.45746434300014],[-119.040601359,34.42476830700008],[-119.20104243599997,34.47695610400001],[-119.37754659699993,34.441762103000144],[-119.66949977699994,34.45361294400004],[-119.76865768999994,34.48366968100015],[-120.05962725799998,34.497900267000034],[-120.22070518699991,34.48610129300005],[-120.44938290999994,34.44809204500001],[-120.29580346599994,34.47037750900006],[-120.00311250999994,34.45871388900014],[-119.8557306639999,34.40886843700008],[-119.72916700699989,34.39615026200016],[-119.60186698699994,34.41994118100018],[-119.459166961,34.37313209300015],[-119.28228510399993,34.27002300200007],[-119.23025781399991,34.15959572000014],[-119.13058506499988,34.10025935600015],[-118.80861227799994,34.00126845400018],[-118.74399408799997,34.03248664300014],[-118.54531223599997,34.03859574600011],[-118.44053948399994,33.938023014000066],[-118.39146673999994,33.84018664100017],[-118.39941218799993,33.73659572100007],[-118.28603943899992,33.70685027000019],[-118.18316669899997,33.763268464000134],[-118.09629395499991,33.73832301200008],[-117.92942118999997,33.60695936800005],[-117.78397570599998,33.540932097000166],[-117.469711997,33.29529572200005],[-117.3286574149999,33.12201389100005],[-117.27976648999999,33.0116320620001],[-117.25158465499999,32.876104775000044],[-117.28077556599999,32.822268404000056],[-117.21609882099995,32.72800991399998],[-117.12893916699988,32.68425930400008],[-117.12186463699993,32.477692732000094],[-117.03376764899997,32.28001308900008],[-116.93410464099992,32.240105172000085],[-116.88289657699983,32.12015225800013],[-116.88180558899995,32.03222592599997],[-116.755699688,31.956520577000163],[-116.74094368199997,31.903624230000162],[-116.60728468099984,31.844519072000082],[-116.61343364499993,31.774746434000065],[-116.67675758199994,31.705822714000135],[-116.54080160399985,31.699894864999976],[-116.35970253899984,31.565448467000124],[-116.21130362599996,31.5578995570001],[-116.15630358899989,31.461023029000103],[-116.06700161899988,31.419234548000134],[-115.96620168899983,31.251027018000116],[-115.83339663599986,31.20164000600016],[-115.73549667699996,30.953771539000115],[-115.57467662099998,30.831377815000053],[-115.59560355099995,31.006410561],[-115.55037664599996,31.10957619900006],[-115.58123763999998,31.25561409800008],[-115.73431365499994,31.328123428000026],[-115.69355765699999,31.37947465500008],[-115.55961568199984,31.34544580400012],[-115.51533459099994,31.430732843000158],[-115.50940657299998,31.500293587000044],[-115.56580353799995,31.595574536000072],[-115.64707162199988,31.65199145000014],[-115.67708554099994,31.745519240000135],[-115.77914459999988,31.799043727000026],[-115.84879268299989,31.78477119000013],[-115.97516663699997,31.864459620000105],[-116.01784561199992,32.01482056900005],[-116.10083768499993,32.05110431900016],[-116.280090552,32.19502863800005],[-116.15406763199991,32.293940460000044],[-116.13394938799996,32.38630266300015],[-116.16232263299992,32.475868830000024],[-116.07868163299997,32.60958566700003],[-116.20071825399998,32.61097607600004],[-116.25004726599991,32.73288871300019],[-116.3445579729999,32.840101526000126],[-116.40531417699998,32.77005731400004],[-116.50914750399994,32.71525473500003],[-116.63455503299997,32.75277206100009],[-116.6776307859999,32.86924275300015],[-116.62627480799989,32.908956681],[-116.73056150099995,33.12548632600004],[-116.88775073599999,33.19278954700013],[-116.9155937569999,33.311780825000085],[-116.98280761799987,33.34975401900016],[-117.01410311899997,33.46287465800009],[-116.85770034099988,33.42926338000012],[-116.81678189999985,33.46500659300017],[-116.86805473199996,33.54442106100004],[-116.8829685909999,33.68415912200015],[-116.8312805199999,33.76702458200009],[-116.95367169599984,33.84886458400007],[-116.87135762999998,33.906673436000176],[-116.76509846799996,33.89922425800006],[-116.76672166599997,33.93335123000003]]]]},"properties":{"objectid":90,"eco_name":"California coastal sage and chaparral","biome_num":12,"biome_name":"Mediterranean Forests, Woodlands & Scrub","realm":"Nearctic","eco_biome_":"NE12","nnh":4,"eco_id":422,"shape_leng":28.8721687044,"shape_area":3.17225841169,"nnh_name":"Nature Imperiled","color":"#FF7F7E","color_bio":"#FE0000","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":32967.87207353293,"percentage":0.9980000494337853}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-118.92979209499993,34.91556033500012],[-118.83720030899991,34.9295439280001],[-118.62193077499995,35.06632091800009],[-118.66286517099991,35.231674904000045],[-118.5752681969999,35.227240336000136],[-118.57389133999993,35.381597030000194],[-118.66869005099994,35.43065727600015],[-118.67281116299995,35.51015214000006],[-118.41483582999996,35.60529140000017],[-118.30949835599989,35.72754043300006],[-118.38500241499986,35.79827148499999],[-118.42328559999999,35.884411957000054],[-118.50402973699994,35.88402512900018],[-118.48552597599996,35.7876499190001],[-118.5532495409999,35.67217986500003],[-118.55747631799994,35.60378478800004],[-118.6466699529999,35.55930578200008],[-118.67440446899997,35.67163072799997],[-118.58891252999996,35.7385039780001],[-118.67187593099993,35.82348881500019],[-118.63681868999998,35.906142793000186],[-118.7043142629999,36.07708213000018],[-118.76787430899998,36.11420502500016],[-118.73897543399994,36.249743415000125],[-118.84929940699993,36.270629270000086],[-118.8658025869999,36.33286064600003],[-118.77415145199996,36.35977465000008],[-118.84579416799988,36.434175523000135],[-118.89381604299996,36.55791789300008],[-118.98058759199989,36.6334213560001],[-118.97706267099994,36.68069975200018],[-119.14372446699997,36.796696935000114],[-119.11360293199994,36.91969124700012],[-119.38756055299984,37.01007880100019],[-119.46970014699986,37.097387032000086],[-119.44162758099998,37.178221308],[-119.61961905399988,37.24484241900012],[-119.61765923899992,37.34587647000012],[-119.93175791899995,37.47374425000015],[-119.99864099299998,37.561640644000136],[-120.12932644699998,37.60943710000015],[-120.06913982399988,37.65396665500009],[-120.18300423499988,37.70370999600016],[-120.26832022899998,37.79083160199997],[-120.23752356699987,37.84327691000004],[-120.31103552899992,37.97109695500012],[-120.41761213999985,38.00317628200003],[-120.40711415799996,38.09012632800011],[-120.49516352199998,38.10737785400016],[-120.51619863199988,38.16458256700014],[-120.61104791799988,38.18547183200019],[-120.681023128,38.26690041300003],[-120.702767038,38.47160309700013],[-120.75479108899992,38.53473848900006],[-120.7242349149999,38.585024596000096],[-120.80968455699997,38.63497648200007],[-120.77333332299997,38.70357312800019],[-120.8249654299999,38.797605229000055],[-120.9515714829999,38.92823512600012],[-121.02263550599992,38.96218516900012],[-121.00288489499991,39.06897376100005],[-121.1330356599999,39.16420541800005],[-121.17510484299999,39.249512943000184],[-121.19006726999993,39.368713270000114],[-121.25183919299985,39.436951370000145],[-121.35328170299994,39.472479878000115],[-121.31544321299992,39.54123384100012],[-121.41086540899988,39.59905675500016],[-121.48294381899996,39.71257609900016],[-121.60697535999998,39.73978719600018],[-121.632606351,39.84600396800005],[-121.75283362599998,39.894463653000116],[-121.74772523099989,40.07305138000015],[-121.65058365299984,40.13703493800011],[-121.78852312999999,40.230572645000166],[-121.820258578,40.301457584000104],[-121.76863807899997,40.36670815800005],[-121.87900344999991,40.42015170400015],[-121.88083289699995,40.54483180400018],[-121.91496859199992,40.67529985900018],[-122.02029715399988,40.74438488200008],[-122.15166434799988,40.715153575000045],[-122.4357857839999,40.73381505500009],[-122.53347896899993,40.63175772900007],[-122.49260655899997,40.59618885100019],[-122.55225222299998,40.51443884000008],[-122.76077170399992,40.45737479300004],[-122.80343642299994,40.48713184200005],[-122.92492905299997,40.44222322600007],[-122.94173089799983,40.31327476000013],[-122.85555639899991,40.201758426000026],[-122.77144887299988,40.15954868500012],[-122.69745422399996,40.06557540500006],[-122.67571344299995,39.97071115900013],[-122.68778885799992,39.84022424200003],[-122.63999644699993,39.76870731700018],[-122.74984291999994,39.74300483100018],[-122.75321182299996,39.65831438100008],[-122.65782159199995,39.61072489800006],[-122.63501336899992,39.55041889300003],[-122.70221316399994,39.329127689000074],[-122.61605476499989,39.2904697780001],[-122.69145223499999,39.22229467300019],[-122.80730310399997,39.31576767500013],[-122.86017989899995,39.398244953000074],[-122.94401896199997,39.39418183099997],[-122.81285182199997,39.24523911000017],[-122.6591121759999,39.14463244600012],[-122.77971288899994,39.12165245600016],[-122.82255885799998,39.18617010900016],[-122.93592237799999,39.19798606600017],[-123.02826519899992,39.27407503000006],[-123.24507519699995,39.27542798400009],[-123.21534325399995,39.1295534890001],[-123.26884421099993,39.06155700500011],[-123.411503848,39.03752690100015],[-123.27445715099992,38.895439743000054],[-123.2813753399999,38.83618993800019],[-123.2276211269999,38.710761327000114],[-123.08057917699995,38.61594906400012],[-122.95591283499988,38.60567062300015],[-122.8915070299999,38.38699122600002],[-122.98917844999988,38.35629475600007],[-123.00307699799987,38.29592312500006],[-122.90090424099998,38.165068577],[-122.75467660099991,38.032496012000024],[-122.70392739299996,38.049728201],[-122.62794824099996,37.96235441000016],[-122.50330414899992,37.88945040200002],[-122.48742235399999,38.10977769300007],[-122.39932234599996,38.14478679400008],[-122.26148595099988,38.05555043400011],[-122.38313141499987,37.97641405500008],[-122.32238594199998,37.90573223400003],[-122.30559501899995,37.79374131800006],[-122.16163134599998,37.66821404500013],[-122.10552222899992,37.499241308000194],[-122.37847682599994,37.60637766100001],[-122.41048594499995,37.80937767500018],[-122.51357686699998,37.78235039300017],[-122.49423139499993,37.66107765600003],[-122.24371493099989,37.388106211000036],[-122.12326244299993,37.34945068600007],[-121.979848426,37.169217397000125],[-121.78347935099993,37.07645161300013],[-121.778162281,37.006486843000175],[-121.86193121899998,36.93105945800005],[-121.78860392099995,36.80420490500012],[-121.84082209399992,36.63113216000005],[-121.62010953999993,36.512592062000124],[-121.48783858099995,36.42085095800019],[-121.25795767799991,36.20330670800013],[-121.1493456469999,36.135056391000035],[-121.02036257399999,36.019428204000064],[-120.87149762699994,35.85055079200009],[-120.78131069499995,35.690718795000066],[-120.76777660399995,35.62169046900016],[-120.83663963799995,35.532538535000185],[-121.01244368699997,35.582262332000084],[-121.17440066499995,35.68795762800016],[-121.29848555199999,35.6984866570001],[-121.1639037079999,35.63292302300016],[-121.00404002999994,35.460959381000066],[-120.90585819499995,35.44838665900005],[-120.83356726499994,35.34051392600003],[-120.894385447,35.24563209400009],[-120.78434905999995,35.176277549000076],[-120.65111267299994,35.14775028200006],[-120.63028539099992,35.08705027700012],[-120.67114901799994,34.90204116500013],[-120.616558097,34.86701389300009],[-120.63708536399997,34.757341153000084],[-120.60188535299994,34.709632060000104],[-120.64525807599995,34.57705931700008],[-120.5143762319999,34.52466841100011],[-120.44938290999994,34.44809204500001],[-120.22070518699991,34.48610129300005],[-120.19767237099984,34.526873629000136],[-119.95981967299997,34.57101589900009],[-119.91227926499994,34.54112519500012],[-119.77034103099993,34.54337120800011],[-119.79187135299998,34.631214574000126],[-120.09306529899999,34.81688690500016],[-120.04983517099998,34.85510967500011],[-120.13656713799992,34.92352908900011],[-120.0760899679999,35.030359373000124],[-119.99264451899995,35.01821289499998],[-119.91745776799996,34.96275892700004],[-119.78326954599993,34.920284425000034],[-119.73064474899996,34.874545848000025],[-119.44680430499994,34.787072314000056],[-119.37373805199996,34.92445250500009],[-119.11586085699997,34.95333525800004],[-118.92979209499993,34.91556033500012]],[[-122.13345849099989,40.20819757000004],[-121.9492135459999,40.01508898900005],[-121.75226277799999,39.664896247],[-121.58137333599996,39.62225176600009],[-121.60894484599999,39.58190398400018],[-121.51047065499995,39.50717022800018],[-121.51964880599996,39.40181486400013],[-121.26270048399994,38.900378372000034],[-121.29554729699998,38.776700225000184],[-121.14046012999995,38.656562849000125],[-121.1821728459999,38.48363526500003],[-121.05217442299988,38.297985638000114],[-121.05749021799988,38.19553318200013],[-120.99442972199995,38.1339082180001],[-120.980982929,37.96846467800003],[-120.84047195599993,37.86133433100014],[-120.71864390599995,37.71181882200017],[-120.61295776299994,37.675398373],[-120.55002189199996,37.70385932900018],[-120.32477073899997,37.5241700680001],[-120.30241049999995,37.38853759000011],[-120.23565695299988,37.36592023700007],[-120.15688505499998,37.25124365900007],[-120.05318099899989,37.18641392900008],[-119.87621478299997,37.02121858400005],[-119.74054837699993,37.01287028600012],[-119.695752546,36.9002184470001],[-119.51852828899996,36.85582234200018],[-119.30639297,36.69868531100019],[-119.23654854599994,36.60307823900007],[-119.23649875899991,36.52450137400018],[-119.130104771,36.4967572270001],[-119.05500837699992,36.36535459900017],[-119.09179288399997,36.27432812500018],[-118.96638432999987,36.16519499100002],[-118.92250773099994,36.06060694900009],[-118.97348932699992,36.03187426300019],[-118.91632863799998,35.88650726600014],[-118.91900661399995,35.72689634000017],[-118.8453604689999,35.5582185130001],[-118.82266864699989,35.45826190000008],[-118.66609903599988,35.30165629700002],[-118.70952089699995,35.214698587999976],[-118.79443095899995,35.15681718100018],[-118.72966639099985,35.081663224000124],[-118.75041900699989,35.020655457000146],[-118.85522611799996,34.933945133],[-118.97261809899999,34.93258836100006],[-119.02076342599997,35.033153676000154],[-119.26128074999991,34.978855805000194],[-119.39365141099995,35.03540701600008],[-119.41131071899991,35.11328925500004],[-119.47669363299991,35.13009747300009],[-119.46396795699997,35.21836542799997],[-119.34108514699989,35.28615600100005],[-119.49014833999996,35.33581725300019],[-119.77298706899995,35.38940117000004],[-120.09546086199998,35.651702280999984],[-119.98521081399997,35.75082978600017],[-119.88348264899992,35.76102365100007],[-119.89590109499989,35.877449828000124],[-119.95674310899989,36.00067600600016],[-120.19467156499996,36.131527606000134],[-120.2630777729999,36.239496471000166],[-120.26006168099997,36.29599690700019],[-120.39208724399998,36.392675067000084],[-120.42727690199996,36.476183695000145],[-120.68577400399988,36.65386945000017],[-120.714661617,36.74631643000009],[-120.77217036199994,36.784271993],[-120.79398727599994,36.86952015400004],[-120.94505930999992,37.03586959300003],[-121.07603006199992,37.06647047600018],[-121.05759321799997,37.12821505100004],[-121.18863171699996,37.46084970700019],[-121.27984278099996,37.5377201390001],[-121.56691366499996,37.69368775200013],[-121.58679955599996,37.772777764000125],[-121.68822997599995,37.89236405700018],[-121.68003694099991,38.00398784200007],[-122.02045892799993,38.05203343900013],[-122.10721119599992,38.02203283800009],[-122.12636931599997,38.19864522400019],[-121.96220808799995,38.18793948300004],[-121.90343609099989,38.21734762100016],[-121.83474192199992,38.08018296500006],[-121.71637350899994,38.111885879000056],[-121.71983541799995,38.217358811000054],[-121.87197840999988,38.226780630000064],[-121.977197075,38.362163765000105],[-121.99915543399993,38.61405523200011],[-122.07965102599991,38.67230981500006],[-122.03089101099994,38.79874617500013],[-121.90782435199998,38.70296539100008],[-121.87279035199992,38.76269679900008],[-122.00508850899996,38.90507219000011],[-122.13380701099993,38.93770738000012],[-122.15897201699994,39.02890477700009],[-122.28991910799994,39.138970831000165],[-122.28319461899997,39.327791360000106],[-122.29718441399996,39.49859451100019],[-122.27250238899995,39.64786579600019],[-122.34687114299993,39.80581256400012],[-122.31308337099995,39.82178105500003],[-122.36402432299997,39.95401102000011],[-122.31240916799993,40.051591857000176],[-122.32029181099989,40.132449538000174],[-122.19910587599992,40.21749026500004],[-122.13345849099989,40.20819757000004]]]},"properties":{"objectid":91,"eco_name":"California interior chaparral and woodlands","biome_num":12,"biome_name":"Mediterranean Forests, Woodlands & Scrub","realm":"Nearctic","eco_biome_":"NE12","nnh":3,"eco_id":423,"shape_leng":71.8610034675,"shape_area":7.33097827232,"nnh_name":"Nature Could Recover","color":"#FFA77F","color_bio":"#FE0000","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":72098.17383541772,"percentage":2.182548539722046}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-115.24959556999988,30.635747882000146],[-115.19845556699988,30.732288296000036],[-115.29271660599983,30.847183234000113],[-115.26219960599991,30.98836616800014],[-115.29991967899991,31.047596216000045],[-115.39902461999998,31.097473401000173],[-115.47854658499995,31.274654429000122],[-115.58123763999998,31.25561409800008],[-115.55037664599996,31.10957619900006],[-115.59560355099995,31.006410561],[-115.57467662099998,30.831377815000053],[-115.52776361199989,30.762887105000175],[-115.45777153499989,30.80882546600003],[-115.36131259299992,30.664211652000176],[-115.24959556999988,30.635747882000146]]],[[[-115.67708554099994,31.745519240000135],[-115.68372367299997,31.82609967200017],[-115.74462859299996,31.859332745000188],[-115.78961963199998,32.007393868000065],[-115.77711466999995,32.09185998200013],[-115.87153664199997,32.25297172899997],[-115.85279068299997,32.42457024200013],[-115.90464767399999,32.48878534300013],[-116.01107068699997,32.52946406000018],[-116.07868163299997,32.60958566700003],[-116.16232263299992,32.475868830000024],[-116.13394938799996,32.38630266300015],[-116.15406763199991,32.293940460000044],[-116.280090552,32.19502863800005],[-116.10083768499993,32.05110431900016],[-116.01784561199992,32.01482056900005],[-115.97516663699997,31.864459620000105],[-115.84879268299989,31.78477119000013],[-115.77914459999988,31.799043727000026],[-115.67708554099994,31.745519240000135]]],[[[-116.76509846799996,33.89922425800006],[-116.87135762999998,33.906673436000176],[-116.95367169599984,33.84886458400007],[-116.8312805199999,33.76702458200009],[-116.8829685909999,33.68415912200015],[-116.86805473199996,33.54442106100004],[-116.81678189999985,33.46500659300017],[-116.85770034099988,33.42926338000012],[-117.01410311899997,33.46287465800009],[-116.98280761799987,33.34975401900016],[-116.9155937569999,33.311780825000085],[-116.88775073599999,33.19278954700013],[-116.73056150099995,33.12548632600004],[-116.62627480799989,32.908956681],[-116.6776307859999,32.86924275300015],[-116.63455503299997,32.75277206100009],[-116.50914750399994,32.71525473500003],[-116.40531417699998,32.77005731400004],[-116.3445579729999,32.840101526000126],[-116.49110058199994,33.003522788000055],[-116.5718529959999,33.15813678800009],[-116.47430612299996,33.2668264400001],[-116.57784325599994,33.416376952000064],[-116.5549988269999,33.51509517300008],[-116.44949901099994,33.484124422000036],[-116.4010570769999,33.57052506100018],[-116.52462321399997,33.651005876000056],[-116.58320415399993,33.75245637400013],[-116.58330515099993,33.819750326000076],[-116.76509846799996,33.89922425800006]]],[[[-118.92979209499993,34.91556033500012],[-119.11586085699997,34.95333525800004],[-119.37373805199996,34.92445250500009],[-119.44680430499994,34.787072314000056],[-119.73064474899996,34.874545848000025],[-119.78326954599993,34.920284425000034],[-119.91745776799996,34.96275892700004],[-119.99264451899995,35.01821289499998],[-120.0760899679999,35.030359373000124],[-120.13656713799992,34.92352908900011],[-120.04983517099998,34.85510967500011],[-120.09306529899999,34.81688690500016],[-119.79187135299998,34.631214574000126],[-119.77034103099993,34.54337120800011],[-119.91227926499994,34.54112519500012],[-119.95981967299997,34.57101589900009],[-120.19767237099984,34.526873629000136],[-120.22070518699991,34.48610129300005],[-120.05962725799998,34.497900267000034],[-119.76865768999994,34.48366968100015],[-119.66949977699994,34.45361294400004],[-119.37754659699993,34.441762103000144],[-119.20104243599997,34.47695610400001],[-119.040601359,34.42476830700008],[-118.81974441299997,34.45746434300014],[-118.7553546559999,34.508386708000046],[-118.585636793,34.494932253000115],[-118.48597239299994,34.463933193000116],[-118.39052676999995,34.47437269600016],[-118.41184209499994,34.37808948900016],[-118.48812849399991,34.341350766000176],[-118.28802880299992,34.288566171000184],[-118.26880028099987,34.25238154200008],[-118.04834449299989,34.171847998000146],[-117.8943557369999,34.14845083100005],[-117.46516020399997,34.17236328600018],[-117.36375750299993,34.21189086800007],[-116.97469905199989,34.05482332100013],[-116.87149251699992,33.95088817400011],[-116.76672166599997,33.93335123000003],[-116.64692662199997,33.96444397300007],[-116.65954063799995,34.006295542000146],[-116.5382402269999,34.15686470700007],[-116.57481402699995,34.269887437000136],[-116.76627838499996,34.33346320200019],[-116.88303454399994,34.34545419300014],[-117.03635744199994,34.39590978000018],[-117.1765178629999,34.41538384600011],[-117.28511564099989,34.30409666700018],[-117.52577084199999,34.32102090500018],[-117.71805214699998,34.42784066400014],[-117.87290051399998,34.41034755200013],[-118.20628002799992,34.568882094],[-118.19337414999995,34.60342644800005],[-118.5327745489999,34.749373569000056],[-118.68405316399992,34.77572967400016],[-118.74442004599996,34.81712873100014],[-118.84537577099991,34.827552524000055],[-118.92979209499993,34.91556033500012]]]]},"properties":{"objectid":92,"eco_name":"California montane chaparral and woodlands","biome_num":12,"biome_name":"Mediterranean Forests, Woodlands & Scrub","realm":"Nearctic","eco_biome_":"NE12","nnh":3,"eco_id":424,"shape_leng":21.9419341075,"shape_area":1.93039358438,"nnh_name":"Nature Could Recover","color":"#A93800","color_bio":"#FE0000","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":19891.178516934546,"percentage":0.6021437203747797}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-44.47125661799993,-22.680579375999912],[-44.44112753199988,-22.620309301999896],[-44.611972511999966,-22.573864840999875],[-44.74243146999987,-22.60254737799994],[-44.802093521999836,-22.65059881699989],[-44.82320753599993,-22.742156189999946],[-44.71030849699997,-22.700700134999977],[-44.63345348599995,-22.78319683799998],[-44.5200275599999,-22.750771612999927],[-44.47125661799993,-22.680579375999912]]],[[[-45.90411748599996,-22.370965451999894],[-46.04668058399989,-22.397944115999962],[-46.1549415799999,-22.312371756999937],[-46.2417485929999,-22.34809174099985],[-46.27638647299989,-22.537649821999878],[-46.18955649399993,-22.62647419099983],[-46.03514456999994,-22.59668675099988],[-46.02918654599989,-22.78210199399996],[-45.96196753799995,-22.781254917999888],[-45.76833350499993,-22.640952252999966],[-45.75162552199993,-22.556393768999897],[-45.896842496999966,-22.578964725999867],[-45.95073360799984,-22.561080593999918],[-45.90411748599996,-22.370965451999894]]],[[[-42.63901147399997,-22.256130695999957],[-42.679935613999874,-22.171971190999898],[-42.75279245699983,-22.241011585999843],[-42.63901147399997,-22.256130695999957]]],[[[-44.40663147399994,-21.87414121599994],[-44.493133552999836,-21.972799736999832],[-44.65797457599996,-21.905696398999964],[-44.78048748999987,-21.98835906399995],[-44.81088261799988,-22.04411514899988],[-44.944351517999905,-22.020848158999968],[-45.109981612999945,-21.94019681599991],[-45.188594476999924,-21.962668362999977],[-45.29730256499988,-21.858282990999953],[-45.35680351599996,-21.86782846999995],[-45.40965258899985,-22.033318753999822],[-45.30430949999993,-22.109970587999896],[-45.18413161699988,-22.111200548999875],[-45.212951616999874,-22.19405515899996],[-45.16422660799998,-22.329936705999955],[-45.22641747999995,-22.37584036599992],[-45.44742546799995,-22.458532869999942],[-45.574466621999875,-22.545933489999925],[-45.615173501999834,-22.67236259699996],[-45.54704254299992,-22.687330998999983],[-45.38566961699996,-22.611929912999983],[-45.172866505999934,-22.470741279999856],[-45.062625535999985,-22.4248776849999],[-44.870571491999954,-22.42278572999993],[-44.78541152299988,-22.441487766999956],[-44.678649545999974,-22.41843300699992],[-44.39607262299995,-22.23778857699989],[-44.14046849699997,-22.00630203599991],[-44.13068346299991,-21.926592315999926],[-44.317623540999875,-22.016761477999978],[-44.358577519999926,-21.97336601799998],[-44.31917955799992,-21.894938058999912],[-44.23634355499996,-21.761640316999944],[-44.23627448899998,-21.680113567999854],[-44.40663147399994,-21.87414121599994]]],[[[-45.85968049099995,-21.936386737999953],[-45.850482525999894,-21.763857330999883],[-45.94128049799997,-21.648039544999904],[-46.08686057799997,-21.623071866999965],[-46.1116795609999,-21.692154004999963],[-46.10854355499998,-21.91166833799997],[-46.195312513999966,-21.906623605999926],[-46.39342449599985,-21.680283720999967],[-46.520233470999926,-21.647652468999922],[-46.57815946299996,-21.684298652999928],[-46.54298346499996,-21.79363253299988],[-46.40003546999998,-21.93874171699997],[-46.24391950599994,-21.938312731999815],[-46.252525540999955,-22.03834739299998],[-46.19532760199996,-22.071936528999913],[-46.04744752799985,-22.053771603999962],[-45.91416554399996,-21.990992992999963],[-45.85968049099995,-21.936386737999953]]],[[[-44.72034850799997,-21.5956724319999],[-44.63891261899994,-21.571930522999878],[-44.54351449099988,-21.601483940999913],[-44.48319261599994,-21.564725103999933],[-44.46195253799988,-21.47542598399997],[-44.5443875499999,-21.379602054999964],[-44.819076598999914,-21.36513388399993],[-44.78494649499993,-21.456403086999956],[-44.83783362199995,-21.592881425999906],[-44.79867957299996,-21.63367011299988],[-44.72034850799997,-21.5956724319999]]],[[[-43.7673185729999,-21.362775048999936],[-44.01200459899991,-21.36402814399986],[-43.912147465999965,-21.47037001999996],[-43.922092593999935,-21.61037546299991],[-43.83004756199995,-21.643202683999903],[-43.81904547599993,-21.54305503499984],[-43.742179567999926,-21.460240657999975],[-43.7673185729999,-21.362775048999936]]],[[[-42.51111251699996,-20.735249785999827],[-42.284816552999985,-20.53682616499998],[-42.14487447699997,-20.464681112999926],[-42.125637505999975,-20.38226772599984],[-42.24607858199988,-20.376518913999973],[-42.301120527999956,-20.46285218199995],[-42.45514252599992,-20.49941622299997],[-42.520812557999875,-20.56812637099995],[-42.54757345999997,-20.72787823699997],[-42.51111251699996,-20.735249785999827]]],[[[-44.21298956199996,-20.467519057999937],[-44.27146155099996,-20.370587375999833],[-44.33431258099995,-20.40520044599998],[-44.27955662499994,-20.64497082099996],[-44.37643047099988,-20.631335643999932],[-44.43758047799986,-20.695307],[-44.38786657199995,-20.76547207899995],[-44.254623479999964,-20.743453321999937],[-44.10845549399994,-20.861240854999892],[-43.97241955199996,-20.845888728999853],[-43.88181352599997,-20.875663092999957],[-43.85647151199987,-20.815613293999945],[-43.9249615519999,-20.753110782999897],[-44.05525253699989,-20.743287359999954],[-44.09816754599984,-20.666014762999964],[-44.11109160299998,-20.526210484999865],[-44.21298956199996,-20.467519057999937]]],[[[-41.88467757099983,-20.31224061299997],[-41.92275957499993,-20.310316798999963],[-41.963455558999954,-20.444966037999848],[-41.90153156699989,-20.559854773999973],[-41.77259459399994,-20.587856029999898],[-41.7320174649999,-20.459165484999914],[-41.79646658999991,-20.342127964999918],[-41.88467757099983,-20.31224061299997]]],[[[-43.51861560299989,-20.428602048999892],[-43.512439480999944,-20.369437546999904],[-43.41656458999989,-20.15893141299989],[-43.45948747799997,-20.08165998899989],[-43.61208756999997,-20.018520284999965],[-43.64412353899996,-20.128698055999962],[-43.63521961099991,-20.447583203999955],[-43.57588545899989,-20.476540499999942],[-43.59233460899998,-20.565618505999907],[-43.516624564999915,-20.587025215999972],[-43.449508486999946,-20.543158524999967],[-43.51861560299989,-20.428602048999892]]],[[[-43.838821570999926,-20.416240752999954],[-43.797466601999986,-20.30110123099996],[-43.77283855899992,-20.145977013999982],[-43.804698507999944,-20.052341431999935],[-43.97049355899986,-20.010193031999904],[-43.87940557299993,-20.25507485999998],[-43.867832510999904,-20.413057976999937],[-43.838821570999926,-20.416240752999954]]],[[[-43.52413156599994,-19.031576666999968],[-43.55690346599988,-18.85880183699993],[-43.46568254299996,-18.650777416999915],[-43.470573550999916,-18.607978748999926],[-43.61323555499985,-18.59193193099992],[-43.69768155299988,-18.699774334999972],[-43.65060057099987,-18.858608885999956],[-43.579788575999885,-19.002525324999965],[-43.58124149499997,-19.14299127099997],[-43.54928548899983,-19.279648310999903],[-43.50048856399991,-19.334005120999848],[-43.43524148199998,-19.299282080999944],[-43.42066551999983,-19.21934973799995],[-43.52413156599994,-19.031576666999968]]],[[[-43.37189055499988,-18.34314866199992],[-43.29294559999994,-18.35745673899993],[-43.206718614999886,-18.22892042099994],[-43.232879540999875,-18.184842170999843],[-43.32608060399991,-18.20047408599993],[-43.37189055499988,-18.34314866199992]]],[[[-42.954807555999935,-17.975212783999893],[-42.98137651199988,-18.055450060999817],[-42.897952602999965,-18.085557186999893],[-42.739570507999986,-18.082759307999936],[-42.67367148199992,-18.059328702999835],[-42.6181065049999,-17.982028277999916],[-42.74326357399991,-17.940271814999903],[-42.91048455499998,-17.952531353999973],[-42.954807555999935,-17.975212783999893]]],[[[-43.505939482999906,-18.426705507999884],[-43.5198095209999,-18.297754453999914],[-43.5747145069999,-18.221035899999947],[-43.67407258199995,-17.99918234499995],[-43.660865551999905,-17.812881806999883],[-43.674583542999926,-17.77370395299988],[-43.79361746399985,-17.884695438999927],[-43.81414759499995,-18.0530392579999],[-43.81871757599998,-18.27987937499995],[-43.84504647499995,-18.40564798799994],[-43.80823147999996,-18.460555656999873],[-43.65874057199994,-18.42872940299992],[-43.58024253999997,-18.491755614999875],[-43.48326861399994,-18.513452505999908],[-43.505939482999906,-18.426705507999884]]],[[[-44.24585751899991,-17.873914969999873],[-44.22452155199994,-17.82763680599993],[-44.21971855299989,-17.66210796499996],[-44.28657160699993,-17.710489817999928],[-44.30541647299998,-17.799678464999886],[-44.24585751899991,-17.873914969999873]]],[[[-43.305568578999896,-16.81591493999997],[-43.37747558499996,-16.860002241999894],[-43.28969157799992,-16.923875193999947],[-43.25947950999995,-17.071934137999847],[-43.20384948999998,-17.078422736999983],[-43.185005462999925,-16.989232245999858],[-43.22659646599993,-16.800876967999955],[-43.305568578999896,-16.81591493999997]]],[[[-42.63446060399991,-15.582952907999925],[-42.61672248499997,-15.481958349999957],[-42.71136858899996,-15.506716647999951],[-42.716598560999955,-15.70623393999989],[-42.65672645899997,-15.650110727999902],[-42.63446060399991,-15.582952907999925]]],[[[-42.562347569999986,-15.078182459999937],[-42.63988855699989,-15.041452624999977],[-42.63341856599993,-15.15104869199996],[-42.562347569999986,-15.078182459999937]]],[[[-43.05031950999995,-15.824170334999849],[-42.960239531999946,-15.85772443399992],[-42.90345750199998,-15.802128946999915],[-42.89823155299996,-15.598182992999966],[-42.84634354899998,-15.317708922999941],[-42.888050557999975,-15.131009069999948],[-42.841735513999936,-14.95317039799994],[-42.846603555999934,-14.893380270999955],[-42.91944849699996,-14.855233725999938],[-43.00188451499997,-14.947990716999925],[-43.064613504999954,-15.06472632099991],[-43.069999547999885,-15.135129780999932],[-42.9553035969999,-15.129941047999864],[-42.9207994919999,-15.232206468999948],[-42.9817424659999,-15.343423259999895],[-42.948242513999844,-15.459835657999975],[-42.98129252599989,-15.601524690999952],[-43.070976542999915,-15.53375012999993],[-43.116783475999966,-15.545741280999891],[-43.114559589999885,-15.76168039699985],[-43.05031950999995,-15.824170334999849]]],[[[-41.24888255399992,-13.595754536999948],[-41.2110174739999,-13.213569255999971],[-41.28207053199992,-13.18968166999997],[-41.37281754199995,-13.32295778699995],[-41.379489536999984,-13.497632289999956],[-41.32167452199991,-13.583272374999979],[-41.24888255399992,-13.595754536999948]]],[[[-41.381187542999896,-12.847803788999954],[-41.411437496999895,-12.740506039999957],[-41.40950747999989,-12.602251240999976],[-41.473361488999956,-12.625616633999982],[-41.561714459999905,-12.75877976199996],[-41.57123948699996,-12.84300816599989],[-41.50859448299997,-12.887663928999928],[-41.381187542999896,-12.847803788999954]]],[[[-41.739322461999905,-13.133845454999914],[-41.74507948799993,-12.869167415999982],[-41.82563058399995,-12.598891438999829],[-41.79664260999982,-12.477530700999978],[-41.71783461499996,-12.304050617999906],[-41.693210594999925,-12.148924053999849],[-41.71581658799994,-12.13185514599985],[-41.87984858899995,-12.20284936299987],[-41.92094757499984,-12.322504215999913],[-41.90323661299993,-12.462081846999979],[-41.9724235249999,-12.594361857999957],[-41.97348450599992,-12.741600045999974],[-41.907855544999904,-12.87896166999991],[-41.880596589999925,-13.058860445999926],[-41.90830950899988,-13.243567081999913],[-41.841598611999984,-13.358231517999855],[-41.775997478999955,-13.371049626999934],[-41.7264934559999,-13.230624920999958],[-41.66400552999988,-13.1484765699999],[-41.739322461999905,-13.133845454999914]]],[[[-42.251914565999925,-11.835102413999948],[-42.376556483999934,-11.757081981999931],[-42.4208035449999,-11.82253458799994],[-42.36442149899989,-11.883332386999825],[-42.256088585999976,-11.887376990999883],[-42.297878575999846,-12.036501776999955],[-42.24672348599995,-12.13150930899991],[-42.136779569999874,-12.121893086999819],[-42.01554858399993,-12.141191580999816],[-41.985122610999895,-12.04467832399996],[-42.03713651099997,-12.01764500999991],[-42.14594652199992,-11.798495959999968],[-42.251914565999925,-11.835102413999948]]],[[[-42.52879347099997,-11.273776247999933],[-42.55919647799993,-11.342073335999942],[-42.50545154699989,-11.523009121999962],[-42.46023151399993,-11.557150792999892],[-42.42667758199991,-11.390290066999967],[-42.456008543999985,-11.298802598999941],[-42.52879347099997,-11.273776247999933]]]]},"properties":{"objectid":94,"eco_name":"Campos Rupestres montane savanna","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Neotropic","eco_biome_":"NO07","nnh":1,"eco_id":566,"shape_leng":38.8940645507,"shape_area":2.26341528223,"nnh_name":"Half Protected","color":"#FCB25D","color_bio":"#FEAA01","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":26451.471857906385,"percentage":0.12338006629288983}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-109.96125772199997,49.91692469100008],[-110.21478211999994,49.93345107000016],[-110.47754557999991,49.90294911900014],[-110.72775348599993,49.83650220500016],[-110.88893152899993,49.72365462000005],[-110.85384392399999,49.61421541900006],[-110.7611622849999,49.634994525000195],[-110.72667821199997,49.51545066400013],[-110.6070928279999,49.47456670900016],[-110.56784782099993,49.36258020500003],[-110.4409473529999,49.33357087900015],[-110.1889810859999,49.338631550000116],[-110.00028071999998,49.42257909600005],[-109.9561223689999,49.39207298700006],[-109.75768198599991,49.3803619250001],[-109.63803839499991,49.41566463600009],[-109.4550177029999,49.429864149000196],[-109.19844731899997,49.39452755700012],[-108.90033658999994,49.44386992900013],[-108.77848096199983,49.51763497400003],[-108.77686149199997,49.51859918200006],[-108.77686150399995,49.51859920300012],[-108.77806055099995,49.520141995000074],[-108.64482048799994,49.62030703100015],[-108.53817694799994,49.80707508600011],[-108.56144644999995,49.89487534000011],[-108.83262779399996,49.92665608300007],[-108.93256330299994,49.86535855600005],[-109.09903050299988,49.855556819000185],[-109.22647906099996,49.910691150000105],[-109.52120270599994,49.83440547500004],[-109.95982375499989,49.91622768500014],[-109.96125772199997,49.91692469100008]]],[[[-99.47739395799994,50.41860931400004],[-99.65907282799998,50.3500529800001],[-99.79727878899996,50.42911020200006],[-100.117721669,50.399597013000175],[-100.36251061099989,50.48345909000005],[-100.50496688599986,50.61564071200013],[-100.65325199699998,50.6177988230001],[-100.73721364799997,50.666547208000054],[-100.87616777699986,50.68925291100015],[-100.94197140699993,50.76715980100016],[-101.13938153399994,50.84456340600019],[-101.13387328099992,50.99311479200003],[-101.39894828699994,51.08623891100012],[-101.51934029699999,51.24235409700003],[-101.48999749399991,51.292120929000134],[-101.77950972399992,51.342764808000084],[-101.8823700609999,51.31021290800004],[-102.04898103299996,51.32271202700014],[-102.18234260899999,51.41093706900017],[-102.20870996199989,51.52844258200014],[-102.07717891899989,51.55266411400015],[-102.02961798499996,51.48666496200008],[-101.91738201599992,51.53455482700008],[-102.01853932699998,51.64111777300019],[-102.14399774899994,51.71020258000004],[-102.348297501,51.724037957],[-102.47136719999992,51.869210064000185],[-102.56889286299997,51.94577341400003],[-102.68363957899999,51.937861429000066],[-102.68052719699995,51.867332712000064],[-102.84652702999995,51.81515244600013],[-103.24984000199993,51.86932477800008],[-103.49220274899989,51.932305848],[-103.51207763499997,52.091342840000095],[-103.5680927219999,52.20769503100007],[-103.70255302099997,52.34679948100006],[-103.8029487099999,52.39549053600007],[-104.03649139999999,52.403064507000124],[-104.49613895299996,52.55382049000008],[-104.6250693749999,52.429978807],[-104.73298640999997,52.45753760800005],[-104.77131653299989,52.56660855200016],[-104.945036787,52.593195115000185],[-105.03433122899986,52.53941978100005],[-105.03147126999994,52.46107673100005],[-105.40474668999997,52.48731861400012],[-105.36225885599993,52.624065850000136],[-105.36379302499995,52.73256832900006],[-105.4136448839999,52.78072392900009],[-105.60241856399995,52.730640550000146],[-105.76272578899989,52.724443840000106],[-105.86875273899994,52.78051338900008],[-105.97449362799989,52.71307898800018],[-106.02541685399996,52.62486655000015],[-106.16731521699995,52.58733481600018],[-106.23838727999993,52.664678253000034],[-106.27705841999995,52.78359924200009],[-106.40824926699986,52.84390635200009],[-106.61202635899997,52.874942163000014],[-106.64142191199988,53.00950360500019],[-106.79211159899995,53.04349006800004],[-107.091281359,52.96416437200003],[-107.17154016599994,52.894074498000066],[-107.33395452399992,52.897325264000074],[-107.29064924799991,53.02692096200008],[-107.32639434599992,53.08807899900012],[-107.48195569099994,53.0363254290001],[-107.633162874,53.08326914000014],[-107.76892945599997,53.023671739000065],[-107.8965829309999,53.12057315800007],[-108.04457888199994,53.2775345710001],[-108.15413770799995,53.26711279700004],[-108.20189789999995,53.17000567000008],[-108.54387646599997,53.24965213200011],[-108.68762279499998,53.083272695000176],[-108.5564426659999,53.04637872300003],[-108.56468117599997,52.943857573],[-108.81257534399987,53.012824319000174],[-109.06294254799991,53.22597119700015],[-109.1015160209999,53.29175943100006],[-109.22849352599991,53.32950033800017],[-109.30769370099989,53.39427694900007],[-109.45675633199994,53.370420331000105],[-109.56729938699988,53.42958216300002],[-109.54460167399998,53.477746263000085],[-109.63123331599996,53.57775234500019],[-109.75228863899997,53.600349999000116],[-109.83090197799999,53.54686707100018],[-110.0000233689999,53.59770207100007],[-110.07895579699994,53.589380679000044],[-110.3359379929999,53.6688415480001],[-110.63143326699998,53.849011915],[-110.88375044799989,53.872728760000086],[-110.89256276299994,53.74663092200018],[-110.98000395399993,53.69102801300005],[-111.00428546299992,53.473646517000134],[-111.31239409099999,53.537105982000185],[-111.37901314399994,53.614728580000076],[-111.47049667599993,53.55262427400004],[-111.61710216499984,53.58782873700005],[-111.60592745899999,53.806351187000075],[-111.67520189599992,53.841857214000186],[-111.88746589899989,53.76463335400001],[-112.01967766399997,53.87624921700018],[-112.02472725299998,53.953206454],[-112.16352236499989,53.98731079200007],[-112.23600636299989,54.05707417500014],[-112.35588853799999,54.01525980200012],[-112.36025185099999,53.939019843000096],[-112.5039979039999,53.96050315400015],[-112.64862760799991,53.94091582200002],[-112.77632982799992,53.98502710200012],[-112.95082823399991,53.891662042000064],[-113.15500761299995,54.00377321000008],[-113.24461209299994,53.96968776700004],[-113.37248139199994,54.008575578000034],[-113.49762903599998,54.11262296800004],[-113.65779849299992,54.112835137000104],[-114.01098726899988,53.997559044000184],[-114.03891624399995,53.889083498000105],[-113.970901546,53.809851411000125],[-113.9941085459999,53.734606300000166],[-113.89511113599997,53.64591208600007],[-114.02039271499996,53.580283467000186],[-114.08497628999999,53.416897845],[-114.05728992899998,53.31059488000017],[-113.83072637399994,53.11577999300005],[-113.87191878999994,52.92393535500008],[-113.94320600899994,52.890783918000125],[-113.89877303599997,52.81493898700012],[-113.88491847099993,52.634448952000184],[-113.8056321009999,52.568721457000095],[-113.92505707499993,52.53975369900013],[-114.0742053599999,52.563710796000066],[-114.10630752199995,52.38776427300019],[-114.09435248599993,52.170559582000124],[-114.15440570299995,52.16578457100019],[-114.3073806239999,52.24340039000015],[-114.379807385,52.163854055000115],[-114.36798901599991,52.06759070700008],[-114.1589962939999,51.939963761000115],[-114.31860166699994,51.877425190000054],[-114.490494,51.70429403100013],[-114.60604221799991,51.37696588500012],[-114.56228667999989,51.151759196000114],[-114.48959409999992,51.03675605800015],[-114.34969444799992,50.943853368000134],[-114.36456275799992,50.819105207000064],[-114.4481755519999,50.73932418000015],[-114.33080263199992,50.71839842800017],[-114.40178076599994,50.58204382300005],[-114.55214862899993,50.50660332900003],[-114.53531475899996,50.40788168800003],[-114.46122717699996,50.30551875200018],[-114.28003564499983,50.24742346700009],[-114.22091662499992,50.188259471000094],[-114.22757770899995,50.093094908000126],[-113.95587141099992,50.1232667860001],[-113.90918759699997,50.22981818800014],[-114.22337368299992,50.42903171900002],[-114.25129665199995,50.50477294300009],[-114.16902961299996,50.57057775599998],[-113.89167059299996,50.65526515300013],[-113.92511757199998,50.80855725400011],[-114.01679262599998,50.83590874600014],[-114.09441357599997,50.99892134000015],[-114.08109255199997,51.09311884400012],[-114.14082367099996,51.23861409900019],[-114.09697759999989,51.29466807700004],[-114.05812865199994,51.541704053000046],[-113.86628767499985,51.69135790600012],[-113.6542816839999,51.727594549000116],[-113.54360166999993,51.68884383800014],[-113.34674060299989,51.532435010000086],[-113.23453444699987,51.49514020000004],[-113.16254969099987,51.57894137300019],[-113.22519917799991,51.72234261400018],[-113.21520854699992,51.77603173700004],[-113.05818696299997,51.808238111000094],[-112.90334410299994,51.78847666900015],[-112.58071218499998,51.934437164000144],[-112.54340199899997,52.124064194000084],[-112.2693328549999,52.29133639800017],[-111.98351154599993,52.4147096640001],[-111.81867259199998,52.43562117700003],[-111.63854127899992,52.3455698570001],[-111.30151309499996,52.24862103300018],[-111.19664083499993,52.25293894200013],[-111.07718729199996,52.337678648000065],[-110.79560808199989,52.36724009900007],[-110.72608266799989,52.34771092600005],[-110.79591395699998,52.198530514000026],[-110.61364091699988,52.17607644300011],[-110.5123673039999,52.121976523000114],[-110.49079119299995,52.10783742400008],[-110.30613801399994,52.077677971000185],[-110.16394196899995,52.11452188100009],[-110.05564021799984,52.094732773000146],[-109.97911074699994,52.169174357000145],[-109.979148222,52.17011449800003],[-109.97914817999992,52.17011449000006],[-109.97650015699992,52.16963020500003],[-109.89832478499994,52.3121887640001],[-109.78251698999998,52.2821964580001],[-109.83329616399993,52.43458739600004],[-109.75206642799998,52.53386140600014],[-109.44535724999997,52.492365708000136],[-109.29593669399992,52.53163375500014],[-109.26734031499996,52.621714115000145],[-109.074226566,52.657803612000066],[-109.03502695699996,52.60633774200005],[-108.88487889999988,52.587740515000064],[-108.82244877299996,52.53005338100007],[-108.56635155899988,52.57831474800008],[-108.528838684,52.51892406000019],[-108.56868839099997,52.43896906400005],[-108.56797714499993,52.437583311000026],[-108.55908990899991,52.41166297600006],[-108.55728091499998,52.409582544000045],[-108.33595178999997,52.43259864800018],[-108.16782333099997,52.381049611000094],[-108.0259403899999,52.377903002000096],[-107.96436408499994,52.30101189800007],[-107.7785044009999,52.24880756100015],[-107.58468564699996,52.41376306300003],[-107.44827355199999,52.34551775000011],[-107.24617776999997,52.34255842600004],[-107.14015129799992,52.38482468500018],[-106.91655751699983,52.34296355900011],[-106.73873213899998,52.34549816600014],[-106.64627189299989,52.31020513100003],[-106.6437307359999,52.309219371000154],[-106.55323099199995,52.298139375000176],[-106.44104803999988,52.35190882800009],[-106.35566757699996,52.27709585100007],[-106.24764235499993,52.35806878500006],[-106.17196598399994,52.365707062000126],[-106.06678722199996,52.30143937200012],[-105.78980179699983,52.38060668500003],[-105.64470631399996,52.352926275000186],[-105.47216021499986,52.284651829000154],[-105.31128659099988,52.28635249000007],[-105.30281056399997,52.2365953150001],[-105.39952110599995,52.14321103500009],[-105.45163801499996,52.02676594700017],[-105.38538349299995,51.85765781600003],[-105.26619670099984,51.71791775100007],[-105.18830949699998,51.74033060099998],[-104.85936709699996,51.71795109600009],[-104.73419930799986,51.737356553000154],[-104.65438022299992,51.81232328700003],[-104.44946975699997,51.74087392600012],[-104.55642741799988,51.630837767000116],[-104.60566796099982,51.49447751200006],[-104.70848060399987,51.377078799],[-104.52857262799989,51.0924657060001],[-104.44129191699994,51.049344565000126],[-104.2563923909999,51.016119490999984],[-104.38067592699991,50.859677067],[-104.52343034299997,50.829159829000105],[-104.69574742199995,50.722604092000154],[-104.58386187199989,50.59599535800004],[-104.20762593999996,50.421052895000116],[-104.18338029899996,50.32001158100019],[-104.12019360499988,50.28736785000012],[-104.06345373599993,50.08803943900011],[-103.88536075299999,50.006697932],[-103.89452308199992,49.873121714000035],[-103.89354701699989,49.87238395100019],[-103.88722324299988,49.73248103300017],[-103.88596388199994,49.728749801],[-103.87684665599994,49.66235815600004],[-103.7002798119999,49.47688063500016],[-103.68850797799996,49.38882245400015],[-103.29929293799995,49.19187453100011],[-103.27272458099998,49.127342197000075],[-103.32917303799996,49.07165344500004],[-103.53765676999996,48.99918889500003],[-103.66981047099995,48.999438956],[-103.57001448499994,48.90301158900019],[-103.45369163399994,48.94846187700006],[-103.36055889799991,48.909831581000105],[-103.35204860599998,48.78723846999998],[-103.07837613999999,48.847828102000165],[-102.6264001319999,48.78283686100002],[-102.41598957399998,48.726867544000186],[-102.28133535899997,48.65182352000011],[-102.09307335899996,48.50980587900017],[-101.97117485999996,48.47248648600009],[-101.88137477399988,48.36458954200009],[-101.74692049699996,48.2577734890001],[-101.61335271599995,48.21135084600019],[-101.37909683599997,48.067197262000036],[-101.22473639999998,47.99470091800009],[-101.18192012099996,47.9218656700001],[-101.03960201699994,47.94090001000012],[-100.40972510199998,47.682347924000055],[-100.37366425699992,47.583992750000164],[-100.18424370799994,47.59258431000012],[-100.09561100399992,47.62969441800004],[-100.04462113499994,47.553088516],[-99.95015990399997,47.58065217300009],[-99.90707516599991,47.49371251600007],[-99.70114259399998,47.477789861000076],[-99.57240807799991,47.417672267000114],[-99.19669015399984,47.31408643000003],[-99.02857026599992,47.140743576000034],[-98.9820359069999,47.05546147300009],[-99.00376325099995,46.98189276800014],[-98.95549022399996,46.78522341600012],[-98.8746694159999,46.65863613500005],[-98.80810195899994,46.183167093],[-98.84253209599996,46.05342944700004],[-98.80055200299995,46.001720214000045],[-98.9203696319999,45.82392838599998],[-98.96953294899993,45.64900843800012],[-98.96035073499996,45.55177176300009],[-99.02393905799988,45.42736216900005],[-99.01718169799989,45.29806713100004],[-99.04083952299999,45.11914245999998],[-99.08133479199984,45.06695658100017],[-99.21708605199996,45.03055551700015],[-99.13638221499997,44.934420876],[-99.19635974399995,44.79333243700006],[-99.37631332499996,44.74625202500016],[-99.62261981699999,44.6527160120001],[-99.58993008599992,44.55018201000013],[-99.40831249399997,44.49719724800019],[-99.10403459699995,44.455013829],[-99.00491411999997,44.34897130400009],[-98.82716049699991,44.49051856400001],[-98.60515160299997,44.13176019600007],[-98.54209398799998,43.98593062000015],[-98.57751544099995,43.76238114100016],[-98.48873375199997,43.666908350000085],[-98.28505624399997,43.58253107000007],[-98.2018616289999,43.523598079000124],[-98.14980950899997,43.41147343900013],[-97.86568520399999,43.12934943900018],[-97.8923111499999,43.02619739400012],[-97.97500902799999,42.908758020000164],[-97.84215763299994,42.86814251800013],[-97.68651777199995,42.84244373600012],[-97.43912679799985,42.847116482],[-97.26228995799988,42.92695109599998],[-97.1599258849999,42.941585990000135],[-96.98136894899983,42.873542678000035],[-96.95470585799995,42.78433690800006],[-96.6491075809999,42.758991360000095],[-96.76802771299998,42.86521684900009],[-96.79291961999996,43.00599871300017],[-96.73176580099994,43.06245598300018],[-96.71377797699995,43.16397091400012],[-96.62040671299991,43.16924076100014],[-96.53150843099996,43.2993257010001],[-96.52149025799991,43.37594389500009],[-96.65592342799994,43.52477215100015],[-96.75970843999988,43.49983792900014],[-96.96442258199994,43.68717617300007],[-96.9668569609999,43.73800096600007],[-96.8548326849999,43.87094445600013],[-96.76656502699996,43.92399382600007],[-96.73305563399998,44.13313228800007],[-96.57790784799994,44.048374942000066],[-96.45665510899994,44.009921288000044],[-95.98627279899995,44.019259471000055],[-95.85785651599986,44.05207354600003],[-95.61574059099996,44.226065107000124],[-95.59113817699995,44.28930113100006],[-95.97830206299994,44.515401595000185],[-96.26577826399995,44.70640956100016],[-96.38476299899997,44.815767837000124],[-96.34688929999993,45.01139958000016],[-96.25620274499994,45.09175939600004],[-95.92381507399995,45.253379884000026],[-95.73437441299995,45.27605982500012],[-95.57987779699988,45.379791555000054],[-95.62571185899986,45.502844051000125],[-95.7646397829999,45.68700146400005],[-95.77262674299993,45.84297467900018],[-95.98812921899997,45.969841695000184],[-96.13960275699998,45.87840927400009],[-96.17572821199991,45.75278029700013],[-96.27641473399984,45.66593733200017],[-96.42104765199997,45.633403250000185],[-96.51867589699992,45.67989859400012],[-96.70421371899994,45.86494596400007],[-96.86562590799997,45.925190700000144],[-96.91705025599992,46.0242292640001],[-97.01214351799996,46.09788978600011],[-97.11681246599989,46.09812127900017],[-97.37190438799996,46.181378003000134],[-97.43595784299993,46.252216273000045],[-97.62122880199996,46.347815708000155],[-97.49366340899991,46.43024165300005],[-97.45156608299993,46.55427231300018],[-97.54385312099998,46.63798951900009],[-97.47237288999997,46.78288368800014],[-97.42304034099993,47.08930456300004],[-97.4236269889999,47.32260218200008],[-97.47214387799994,47.37992658700017],[-97.58903981399993,47.419579383000155],[-97.64067509899996,47.534258836000106],[-97.63789915999996,47.67520390400017],[-97.71827834199996,47.999636740000085],[-97.83647212799997,48.13374649200017],[-97.88984690999996,48.310007566000195],[-97.91058625699998,48.55178974199998],[-97.8896503869999,48.66768436500013],[-98.0137232049999,48.877039732000014],[-98.04496583499991,49.00265659100006],[-98.19236781899997,49.259835749],[-98.20265962199994,49.35526939100015],[-98.3794707269999,49.53239308000002],[-98.47096215999989,49.58198366400018],[-98.49501072699991,49.743921231000115],[-98.73004134299993,49.84046556700014],[-98.92548384799994,49.89361216000003],[-99.13142397799999,50.03440186100016],[-99.22316734399999,50.19924922900009],[-99.36486856399989,50.23187443700016],[-99.47739395799994,50.41860931400004]]]]},"properties":{"objectid":95,"eco_name":"Canadian Aspen forests and parklands","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Nearctic","eco_biome_":"NE08","nnh":4,"eco_id":386,"shape_leng":86.8369776334,"shape_area":40.6774120892,"nnh_name":"Nature Imperiled","color":"#DB931A","color_bio":"#FEFF73","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":327342.55444786046,"percentage":3.0895078413671793}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-79.61271863899992,56.371355071000096],[-79.86961059399988,56.31879162600012],[-80.04540009199997,56.311309213000186],[-80.10647454199994,56.18927784500005],[-80.02543386199989,56.17690897099999],[-79.70559925699996,56.298725901000125],[-79.61271863899992,56.371355071000096]]],[[[-78.65901046899995,56.41464693700004],[-78.77025182999995,56.42078630000009],[-78.81715036899999,56.266052664000085],[-78.94434372499995,56.10125660000011],[-78.67777015599995,56.17233970300015],[-78.65901046899995,56.41464693700004]]],[[[-79.02881373299988,56.42523667300014],[-79.13761110099995,56.54044322200019],[-79.2904595199999,56.56147257600003],[-79.38471873099996,56.25405598100019],[-79.43988918299988,56.19507469100006],[-79.57179579999996,56.240713303000064],[-79.77237919899989,56.12560174200007],[-79.85152737999994,56.02297137000005],[-80.01110662899998,55.92185656600009],[-79.85394094799994,55.83320852900016],[-79.56807268499995,56.111379473000056],[-79.47080168299993,56.100883580000186],[-79.63342640999997,55.89266923499997],[-79.50323040299998,55.85582927600012],[-79.32781754999996,55.99989879100019],[-79.15872474399993,56.23833671600016],[-79.10204017399997,56.22892549700009],[-79.02881373299988,56.42523667300014]]],[[[-79.75423511899993,56.83988080400019],[-79.88654214999997,56.93626813200018],[-79.9740629449999,56.82017341300002],[-79.75423511899993,56.83988080400019]]],[[[-77.68511639199994,60.73404389500013],[-77.84491970399989,60.65694320100005],[-77.79917051999996,60.589765474000046],[-77.58826217499995,60.519176677000075],[-77.77863419399995,60.40578921700018],[-77.6655941169999,60.36385677700008],[-77.52643238399997,60.21553260600007],[-77.56551167899988,60.043004777000135],[-77.34382487499994,60.02828723300007],[-77.43438344299994,59.92220916800005],[-77.29982663899995,59.80942980500009],[-77.57821924899997,59.7622202120001],[-77.5982512189999,59.66588982000019],[-77.8283798409999,59.68789399300016],[-77.76887402299997,59.53883603600019],[-77.90857378999993,59.51191747900003],[-77.93992762699997,59.428438941000195],[-77.80816713599995,59.316447734000064],[-78.0347405199999,59.25824853900008],[-78.15292646799992,59.201182602000074],[-78.15473031599993,59.09780439500014],[-78.28565178999997,59.05240834300014],[-78.38042070699998,58.91069586100019],[-78.59299571199989,58.914011641000116],[-78.51155291299989,58.724055120000116],[-78.50382273299988,58.62581907000015],[-78.38091417399994,58.61681227000008],[-78.31967046999995,58.529751194000085],[-78.06702266999991,58.42750660200005],[-78.07036131699994,58.382651208000084],[-77.52799188199992,58.23104814800013],[-77.48681769199999,58.1635891250001],[-77.21499200099998,58.026049890000195],[-76.85381710399997,57.672439239000084],[-76.84002927499995,57.592588394000074],[-76.64096814999994,57.322458262000055],[-76.56838987399993,57.115021605000095],[-76.57220712999992,56.96414758999998],[-76.53693921699988,56.817075075],[-76.53793732199995,56.641570613000056],[-76.41768082399989,56.583982942000034],[-76.35723258499996,56.83603224400008],[-76.41725987699988,56.976200581000114],[-76.37590785599991,57.128165852999985],[-76.44409184199998,57.39043512900008],[-76.25249542099994,57.473893159000056],[-76.13752177099997,57.57002103900004],[-76.23931916399988,57.70664407200019],[-76.4194726159999,57.755511425000066],[-76.29001005099991,57.8466595540001],[-76.38439874199992,57.99403802900014],[-76.28160665299998,58.10963973400004],[-75.95793879899992,58.03533664300005],[-75.87874452199998,58.085901101000104],[-76.08938691099996,58.23930192400019],[-76.11153498599992,58.3318546270001],[-76.01451146499988,58.458823193000114],[-75.8216327099999,58.49029741700019],[-75.67847541499992,58.456525763000116],[-75.48988377199993,58.23993856800013],[-75.3677147809999,58.14287165800005],[-75.29851728099993,58.255811999000116],[-75.12070421199996,58.29161166900013],[-74.75042805599998,58.26468549100019],[-74.42085365499997,58.18619024600008],[-73.98520525299995,58.15751759400018],[-73.64703484599988,58.18709044400015],[-73.28960492099992,58.18051127200005],[-73.18796503399994,58.19894085600009],[-73.22912674999986,58.35348473700009],[-73.14478441399996,58.3946218530001],[-72.91904423199998,58.394532671000036],[-72.7375397749999,58.456421097000145],[-72.47801080199997,58.46025211200015],[-72.3439264559999,58.37236635600016],[-71.98267429299989,58.34687619800013],[-71.86547758699999,58.39399494300011],[-71.78790861799996,58.27581857000018],[-71.46410455799992,58.18712634100018],[-71.34834167399993,58.198377494],[-70.92681029199997,58.40437261300008],[-70.52734378599996,58.48021049500011],[-70.29207595499997,58.69904381200013],[-70.15851953499993,58.78258101600005],[-70.01344352799993,58.80475285200015],[-70.11360847099996,58.89484466100015],[-70.01331366099993,58.946045714000036],[-70.18666719399988,59.03073490000003],[-70.31288842499993,59.147081790000186],[-70.29426607299985,59.29159952200007],[-70.06553435899997,59.33684612700006],[-69.85892431399992,59.293664540000066],[-69.75508784199991,59.22879119200002],[-69.7228016279999,59.13478009200003],[-69.59540605199987,58.96441280000005],[-69.46965669799988,59.011246112000094],[-69.42573124099982,59.10820280000013],[-69.49850025299997,59.20069077500017],[-69.22539412399993,59.23147162500004],[-69.24879455099995,59.332197203000135],[-69.43571599099994,59.35616035800001],[-69.64106662199998,59.29847042000017],[-69.62714721299989,59.39006832900009],[-69.73945577099994,59.516732294000064],[-69.52263981399994,59.61536569500004],[-69.63729707599992,59.691825446999985],[-69.54892572799997,59.86978135600003],[-69.66424975499996,59.879968778000034],[-69.72470071299983,59.966347486000075],[-69.86405474799994,59.99492642200016],[-69.83346562699995,60.069569842000135],[-69.62328474899988,60.072627720000014],[-69.60168077999998,60.22660740400016],[-69.76082053099992,60.30728694800007],[-69.68474135999998,60.36271211300004],[-69.81044677099999,60.51968469600007],[-69.68675652099995,60.54246842300006],[-69.64369608799996,60.626345393],[-69.6938924339999,60.692173973000024],[-69.41562276099984,60.78384352100011],[-69.37912858199991,60.90526645900019],[-69.49933137799991,61.065566151999974],[-69.67602724499994,61.02690221200015],[-69.6471319929999,60.87732468899998],[-69.83360423199997,60.87833687400018],[-69.90481800499998,60.80040230700013],[-70.04562394699997,60.84428551000008],[-70.14585559799997,61.001848861000155],[-70.13329361999996,61.09242685000004],[-70.40924305499988,61.09079385400014],[-70.6358274509999,61.036791245000074],[-70.73647982099999,61.08810583500019],[-71.21367959599996,61.162760355000046],[-71.44112858399996,61.17256325900007],[-71.73173275399995,61.28488708600014],[-71.5693791839999,61.40344866200002],[-71.73996103799988,61.469629083000086],[-71.7918393779999,61.53490936500003],[-71.54404905999985,61.561959058000014],[-71.63915785899991,61.65657083000019],[-71.9099231859999,61.708943935000036],[-71.96527147099982,61.59992884400003],[-72.13582340899995,61.59653177400014],[-72.26828073099995,61.56732107000016],[-72.46051006099992,61.675159518999976],[-72.54941630699989,61.54787029400018],[-72.82015884099997,61.48573915700007],[-73.36164136299988,61.485735014],[-73.58799828099995,61.45910872700006],[-73.87648864799996,61.39252864500003],[-74.25375559999998,61.36145685400015],[-74.86212883499996,61.35873389200009],[-75.66549841499994,61.17033983800019],[-75.89055127099988,61.14780998700007],[-76.41876281699996,61.16261649900002],[-76.78955115499997,61.10017139900003],[-76.95176754599999,61.01780327700004],[-77.18717057499993,60.84621575200009],[-77.54200100799989,60.74005656700007],[-77.68511639199994,60.73404389500013]]],[[[-79.55636520999997,62.40300940800006],[-79.96131173599991,62.361434698000096],[-80.2164324289999,62.14829017000011],[-80.28098222299991,61.98557992500014],[-80.21642542199987,61.800851998999974],[-80.0178392979999,61.734989595],[-79.85537378399994,61.57605284100009],[-79.68623961999992,61.61194084300013],[-79.54041701099999,61.814141499000186],[-79.45297065499994,61.885170419000076],[-79.45952923999988,61.95347408400016],[-79.35646962299995,62.04681378700013],[-79.26999102999991,62.23543996800015],[-79.46158385299998,62.37573008700008],[-79.55636520999997,62.40300940800006]]],[[[-82.26038103699989,62.99663781700002],[-82.44381612799992,62.933104055],[-82.72776486199996,62.94634315800005],[-83.04615829499994,62.84543769900006],[-83.35032344599989,62.92773400400006],[-83.58169945699996,62.82441420200007],[-83.5928811839999,62.69068882700003],[-83.76046288299989,62.56046075500012],[-83.95765599599997,62.46828935800016],[-83.95486551899995,62.42203709800003],[-83.7345905659999,62.27306939300013],[-83.74172606699995,62.15910588900016],[-83.32003055999996,62.260774936000075],[-83.12117274299999,62.18044520200016],[-82.82458359599991,62.28063787800005],[-82.5884615729999,62.42402338900018],[-82.48824055199998,62.45064967000013],[-82.37216930699998,62.556671402],[-82.19135169899994,62.60362040200005],[-81.952288233,62.72625043200014],[-81.98196543699993,62.796975299],[-81.87957824599994,62.91227094400011],[-82.26038103699989,62.99663781700002]]],[[[-80.5003338269999,63.704204078000146],[-80.83181808999984,63.738027122],[-81.26733560199989,63.990991024000095],[-81.39429499999989,64.00828623800004],[-81.72308275599983,63.94722509200017],[-81.92207283399989,63.866788168000085],[-81.92279142499996,63.70655807400004],[-82.01795750899998,63.65118242900007],[-81.6832392959999,63.561558482000066],[-81.52036146099994,63.55839646300018],[-81.06841916999997,63.43690588600015],[-80.93219411799998,63.51254155100008],[-80.52082481199983,63.661397125000065],[-80.5003338269999,63.704204078000146]]],[[[-84.73359962399996,65.25773625400012],[-84.90452172499994,65.21910793600006],[-84.97922277599997,65.4007141800002],[-85.24706808499991,65.51938864700008],[-85.0189013079999,65.62409711300006],[-85.18834860999988,65.81615512700006],[-85.34628181499994,65.83757552100013],[-85.48981694599996,65.92605946100008],[-85.73986036799988,65.85893878600018],[-85.9897184059999,65.72049681100003],[-86.13543325299997,65.37817676600008],[-86.1098173929999,65.16260422500017],[-86.20311217699998,64.97096242100014],[-86.1238335249999,64.92276700300016],[-86.30200093299999,64.66743876700008],[-86.39310989499995,64.59123273],[-86.30226100499993,64.22852003500014],[-86.1946277699999,64.17409799800004],[-86.1780696699999,64.08636082099997],[-86.82760932699989,63.93970276900012],[-87.02547466299984,63.84218461200004],[-87.20542988499989,63.71468865200006],[-87.21082496699995,63.62013014200005],[-87.07620400599995,63.5522521260001],[-86.87074646599996,63.556566590000045],[-86.55082219099995,63.66247481000016],[-86.27898227799994,63.63620069800015],[-85.80906031099994,63.699122988],[-85.60515696999994,63.671417625000174],[-85.60029919099992,63.505663638000044],[-85.65956623799997,63.42001084200007],[-85.621616626,63.18608731600017],[-85.45701061699992,63.098816009000075],[-85.22043922699987,63.10892715700004],[-84.95239170799994,63.171716384000035],[-84.4672671209999,63.37240860500009],[-84.44391812399988,63.47812182700005],[-84.28390862599991,63.60938217400019],[-84.07366268199996,63.5926709310001],[-83.99165551999988,63.65771157200004],[-83.58156648799996,63.81533437800016],[-83.66111652199993,64.01124220400004],[-83.52723460999994,64.09919349500007],[-83.07403522699997,64.17763136600018],[-82.93636582399995,64.13016262300005],[-83.15407628999998,63.9838056160001],[-83.06923286099999,63.936170269],[-82.89148588799998,63.97366064000005],[-82.54916380699996,63.95514831400004],[-82.41974547199999,63.91548607900012],[-82.33208527599999,63.98923721500017],[-82.13158489499989,64.08253333100004],[-82.19240459499997,64.13483489200019],[-82.69000891699983,64.19451282900013],[-82.77300198699993,64.28080988200003],[-83.042662437,64.39471633400007],[-83.6025012149999,64.43754551800009],[-83.55119330799988,64.31748977700016],[-83.72131276099998,64.20716171400016],[-84.02544279299991,64.17686611200008],[-84.1371847399999,64.08490529699998],[-84.43079261199995,64.2679235710001],[-84.51499862899988,64.35692753800015],[-84.62682354499998,64.38076165400008],[-84.75591978199992,64.54433453300004],[-84.75121419799996,64.90273947200018],[-84.58520501499999,65.01733503600019],[-84.69859240699998,65.04769308300018],[-84.62699855799997,65.25689132600002],[-84.73359962399996,65.25773625400012]]],[[[-107.91723537799993,67.61217906700017],[-108.10753343699997,67.66953205800013],[-108.12463490899995,67.53262972900012],[-107.89271243799993,67.55470301700007],[-107.91723537799993,67.61217906700017]]],[[[-95.21890534799991,67.3192646600001],[-95.10164579699995,67.31127753800007],[-94.9195096499999,67.42546693000003],[-94.5531458129999,67.47070364300009],[-94.41196425499999,67.6085392390001],[-94.14019798499999,67.6288897300002],[-94.0191493989999,67.72816156400006],[-93.71089893599998,67.81132307900009],[-93.57801068799989,67.87928301200014],[-93.75403643399989,68.10673369300014],[-93.45722189799994,68.2115144390001],[-93.40966073999994,68.4058340040001],[-94.15618199099998,68.29107578000009],[-94.65337982699987,68.11814999400019],[-94.82095174199992,68.04191787200017],[-95.24693072199989,68.0833746130001],[-95.51566970399983,67.92656687600004],[-95.4926825529999,67.86762862900014],[-95.69259562199994,67.74054774700005],[-95.47016658099994,67.65395882600012],[-95.28989317199995,67.53002665600013],[-95.36916954999992,67.46024000600005],[-95.21890534799991,67.3192646600001]]],[[[-104.60428310799989,68.57139703000007],[-104.93727540099997,68.59565355300009],[-104.99654905699998,68.50059547400019],[-104.73610914199998,68.4170177200001],[-104.41740828799993,68.43220723500002],[-104.40849041699994,68.4926186690002],[-104.60428310799989,68.57139703000007]]],[[[-135.81593369399997,68.89288778000014],[-135.83936522199997,68.99992528700017],[-136.12362942199996,69.00552987300006],[-135.81593369399997,68.89288778000014]]],[[[-125.15488580699991,69.3843834170001],[-125.39270643599997,69.33293357900016],[-125.94014130599987,69.396015788],[-126.26962183799998,69.51661757600016],[-126.68870691299998,69.73627366900007],[-126.87905371099998,69.98422752300019],[-127.16242835799994,70.23555038900014],[-127.49950620499999,70.40504659700014],[-128.0175341329999,70.56637983000007],[-128.14046724399986,70.50289865400009],[-128.20679946699988,70.36855644600013],[-128.02623162699996,70.27087720700013],[-127.591197,70.23581680700016],[-127.75359931499997,70.18820455500014],[-128.2697887849999,70.1412633220001],[-128.38521198499996,70.09500002000016],[-128.3264727039999,70.01043759900006],[-128.3835178719999,69.93774169600016],[-128.58789386799992,69.87393108300006],[-128.81356433199983,69.74804941200011],[-129.14095520299998,69.68875515200006],[-129.147552535,69.85076687300011],[-129.58467397299995,69.81253223000016],[-130.07345169299998,69.70560961500007],[-130.32161075099998,69.68601007500018],[-130.619804489,69.42690238800014],[-130.90372595099996,69.35926383499998],[-131.0267757939999,69.45990307199997],[-130.7897468,69.65063214200018],[-130.6136803049999,69.68240532100003],[-130.33712308299994,69.81658736700007],[-130.0752752979999,69.86274316600009],[-129.52263531699998,69.99536381700017],[-129.37227231699995,70.10087695400006],[-129.5672224559999,70.17628562900018],[-129.78143706299988,70.20633977400007],[-129.87568668799986,70.08675169400016],[-130.29061074099997,70.06924833199997],[-130.52797864799993,70.130965576],[-130.991986334,70.06362891700019],[-131.09017504399998,69.88637777700012],[-131.4488444949999,69.89314757900019],[-131.63602206399997,69.86659545400016],[-131.88192595299995,69.76987296000016],[-132.09403773799983,69.72639703000004],[-132.56240633,69.73428715600011],[-132.6591384919999,69.65407879300017],[-132.97503754599995,69.62723723800019],[-132.98901937199986,69.46454640900004],[-133.2141293929999,69.39009404200016],[-133.55127108899995,69.39471695700013],[-133.94789124099992,69.26942435400008],[-134.012402222,69.369993222],[-133.78129024999993,69.48967911400007],[-134.147941651,69.52602429000007],[-134.18282430899995,69.64568418700014],[-134.34034588199995,69.68623644100012],[-134.48332640499996,69.53598689100005],[-134.41831281999998,69.47108782600014],[-135.15340353699997,69.465874068],[-135.29369773899992,69.42313307400019],[-135.20893611699995,69.26813971600018],[-135.473584099,69.32929562600015],[-135.77625970299994,69.31169746300003],[-136.003262227,69.19260775900017],[-135.94006859799993,69.08350571000017],[-135.585363633,69.0102416100001],[-135.80389658299993,68.97526844900017],[-135.3302923529999,68.82423410900003],[-135.13502019099997,68.87306612999998],[-135.05579352799998,68.9630769910001],[-134.710911426,69.01486821300017],[-134.59682214499992,68.98864992600005],[-134.36814998499995,68.817337969],[-134.09909392699996,68.69361421000013],[-133.82966892199994,68.52801780800019],[-133.65591359099994,68.30943262700009],[-133.23631593599993,68.28073281800016],[-133.1657960799999,68.41064139300005],[-132.73309440499986,68.40743428100006],[-132.76910102499994,68.314016766],[-132.66217566099994,68.24135871900006],[-132.33294629699998,68.30953203100012],[-132.16652191599997,68.26024810500019],[-131.9994631439999,68.40295981900005],[-131.7592407279999,68.40943575500012],[-131.58115581699997,68.45538969800015],[-131.6428183149999,68.51158727500007],[-131.23506548199998,68.56990984300006],[-131.09231614199996,68.55833605800018],[-130.7512262099999,68.69092943000004],[-130.37780876499994,68.77254425100011],[-130.068626409,68.81325787200018],[-129.80790441099992,68.74979336800004],[-129.6548664319999,68.68178128200003],[-129.58740883399992,68.56192375600017],[-128.83214319799998,68.40812149900006],[-128.68119092699993,68.33665305700004],[-128.47067581599993,68.15753291599998],[-128.2178111849999,68.10825320300012],[-127.74410403099989,68.16151988100012],[-127.56657251899992,68.0970481080002],[-127.49332705999996,67.99497916900003],[-126.9638503939999,67.9701498340001],[-126.43219607999998,67.91932270800015],[-126.22140966999996,67.95573246200019],[-125.94280356899998,67.96090294400005],[-125.68599235599999,67.8973518030001],[-125.466658038,67.918453844],[-125.27284247999995,67.97513910600009],[-125.02793494699989,67.98443825700008],[-124.85476916999994,67.90728116600019],[-124.73821803699997,67.69490137900016],[-124.64124008099992,67.6337816910002],[-124.36329126299995,67.56964843300011],[-124.26860109399996,67.51286897500012],[-124.26934478099992,67.36873809100007],[-124.5177242819999,67.28638034800008],[-124.86748125799994,67.36905155800014],[-124.95457276199988,67.28602370099998],[-124.89014280799995,67.19295972700019],[-124.93028728399992,66.9959629110001],[-124.70703607999991,66.91272918400011],[-124.4405053079999,66.85380860900017],[-124.28982478199998,66.72359805500008],[-124.07164392999994,66.67942619700017],[-123.81734077299996,66.692069032],[-123.46697137499996,66.75182376000004],[-123.05024958799993,66.5740395970002],[-122.89138101099996,66.60691947400011],[-122.70316202899994,66.5831595050002],[-122.27133252899995,66.60369977199997],[-121.9579987279999,66.6442023940001],[-121.54041301099994,66.75427380600007],[-121.40086945799999,66.93583532900016],[-121.08911630699998,66.94199229000003],[-120.59266455299996,67.05195423700007],[-120.18845159099993,67.07797886300006],[-119.90691316799996,67.06961644100005],[-119.570154517,67.02551584600008],[-119.32925774699999,67.03246620200014],[-119.3552687959999,66.95470346600013],[-118.94323856399996,66.9087163550002],[-118.75626241699996,66.92870801400011],[-118.73782445899991,67.20312730600006],[-118.80963974899993,67.2904980780001],[-118.64998519199986,67.37339698900007],[-118.43113396799993,67.38416803300004],[-118.23385094499997,67.26614011000015],[-118.088017676,67.24290252000003],[-117.98150775399995,67.13220252900004],[-117.7540332769999,67.11427757700017],[-117.62189931399996,66.93597816800013],[-117.42936813099988,66.91465748900009],[-117.30896777799995,66.84431353100001],[-117.15017813099996,66.95800050700018],[-116.86852271299995,67.01044487500019],[-116.75414318599996,67.00248083700006],[-116.38399818699992,66.88779042100003],[-116.25247792499994,66.79588956900017],[-116.08434813799994,66.76016755000012],[-115.84180766799989,66.82083126000015],[-115.4494738119999,66.70512258300016],[-115.11281734199997,66.68480074700005],[-114.89989057099996,66.61789318300009],[-114.72571108399995,66.52639157500005],[-114.58985094699989,66.40679599800012],[-113.95975428599996,66.08266973000019],[-113.79899996799998,65.861048433],[-113.42498445399997,65.70332855900006],[-113.38481369199997,65.60515050100003],[-113.07193547299988,65.44310325200007],[-113.26258574199994,65.12857981800005],[-113.15320286999992,64.99528031800003],[-112.86517954999994,65.00607828100004],[-112.64654541799996,64.98751940600005],[-112.65597048699988,64.83260470900012],[-112.70865556399997,64.73751782500005],[-112.35135014299993,64.56761207199997],[-112.30185719499997,64.46533852500016],[-112.37137209399992,64.2813502410001],[-112.17197369499996,64.23073541000002],[-111.70163138299995,64.35630049100007],[-111.48922611799992,64.25938264400014],[-111.35748257199992,64.15338378100006],[-111.14137836399993,64.17148038300007],[-110.90261018399991,64.15949413300007],[-110.46433330899998,64.03897641100014],[-110.24854109999995,64.11593082000013],[-109.98431126299988,64.2522038960002],[-109.74912583099996,64.20354542000007],[-109.54238012499997,64.09732464100011],[-109.45858004399997,63.983933857000125],[-109.54558114899993,63.82596575600013],[-109.84857498499997,63.67591931200002],[-109.81530775399989,63.62229770500005],[-109.368085469,63.70416076700002],[-109.17856689599995,63.687145292000196],[-108.98660877499987,63.75822214900006],[-108.85700587499997,63.869678298999986],[-108.56416574999997,64.03970375500012],[-108.0271607709999,64.05275687000005],[-107.63045548499997,63.95365897400012],[-107.63744449499995,63.86322201900015],[-107.38914539499996,63.806628473000046],[-107.04255736699992,63.838025557000094],[-106.28629999799995,63.857071852000104],[-105.99906797099999,63.84529255000018],[-105.43676753299997,63.86703207900007],[-105.36004634299991,63.902318364000166],[-104.79212937999995,63.89496668400011],[-104.5031598619999,63.93599443800014],[-104.22252699099988,64.01335267100012],[-104.06700117799994,64.13101281600012],[-103.69499186399992,64.341153813],[-103.94413099399998,64.46753120800008],[-103.88857210999993,64.53262353300005],[-103.58936276299988,64.40052812300019],[-103.39324251499994,64.40023995900015],[-103.24532952999994,64.43964994400017],[-102.94116165499997,64.45032419500006],[-102.81173718799994,64.3508670870001],[-102.94383161299999,64.21915328900019],[-103.09319420899999,64.18396152500003],[-103.261138744,63.98967856900009],[-103.62245199599988,63.918914340000185],[-103.86428087299993,63.83282136400004],[-104.01616609699994,63.71888548000004],[-104.09368908599998,63.52045561900013],[-104.03185987899997,63.456049663000044],[-104.21367728699988,63.323888230000136],[-103.79437885099992,63.2710931040001],[-103.61659285599995,63.18385331200005],[-103.2082509409999,63.171893195000166],[-103.09261314999998,63.22016098000017],[-102.888817024,63.08590014300006],[-102.91977741399995,62.97515621700006],[-103.05520612099997,62.893925180999986],[-102.98899194199998,62.82352257600019],[-102.75142625299998,62.785636350000175],[-102.46288285399999,62.65387390500007],[-102.3334505979999,62.721978395000065],[-101.95081336599992,62.83387025300004],[-101.76241347999996,62.73454895900011],[-101.67053226799987,62.63971646699997],[-101.43814012799999,62.56758297400012],[-101.20839690599996,62.56372750100007],[-101.01294671999995,62.610842197000125],[-100.92906216899996,62.66498537000007],[-100.86131243199998,62.79294475300014],[-100.62828855699996,62.850053570000114],[-100.50225855499997,62.77469704900005],[-100.50591252799995,62.7211476490001],[-100.33599097299998,62.63758030800011],[-100.23781376699998,62.73527424200017],[-99.97562220599997,62.81923322500012],[-99.44715423799988,62.85945964700011],[-99.28323895099999,62.918904290000114],[-98.8149221029999,62.94890185700007],[-98.56899549199994,62.99509266700011],[-98.14941669599995,63.015122193000195],[-98.00415867999999,62.96064416900015],[-97.7033881449999,62.94880820500015],[-97.58961550099997,62.97075407400007],[-97.42913015199997,63.07471792000007],[-97.20971695599991,62.925969756000086],[-96.9623335679999,62.88005399000008],[-96.86656244199992,62.768269965000115],[-96.54197719199993,62.74101653900004],[-96.43619525899987,62.64603365800019],[-96.187263423,62.5866355620002],[-96.41919704299994,62.49426551100015],[-96.20155343799996,62.31113197800005],[-96.33358014099991,62.23931825100016],[-96.57717881699983,62.31026870200003],[-96.65844711899996,62.24177728500001],[-96.84674018699997,62.17248043000018],[-96.96533191399993,62.032157980000136],[-96.81976313799993,61.81935180800008],[-96.66279597999988,61.7697844540001],[-96.6293795659999,61.61868703400006],[-96.51274896899997,61.54082248100008],[-96.29946124699995,61.45417402500016],[-96.09114845999989,61.17295848400016],[-96.1992568689999,61.151911841000185],[-95.9988325359999,60.99136635100001],[-95.71683495999986,60.91329244800016],[-95.61710350499999,60.820872246000135],[-95.44857785799991,60.54749232400019],[-95.39927696099988,60.32964768300002],[-95.22122185299992,60.1507822100001],[-95.04926286299997,60.03248186400015],[-94.93260958099995,59.99977288700018],[-94.96189174099999,59.90504574900007],[-94.87577082999991,59.824556032000146],[-94.93144245499985,59.650548882000066],[-95.081763976,59.55577778400004],[-94.98747281399989,59.48297205100016],[-94.98654925599993,59.23621302000004],[-95.08185563899991,59.15287992700007],[-95.08490734299994,59.02853237000005],[-95.01840212899998,58.87809179100009],[-94.9089889569999,58.78538524600009],[-94.78676595899987,59.00627030700008],[-94.80958988199995,59.08840660400017],[-94.76802130299995,59.3394743930001],[-94.71571542499998,59.38439887500016],[-94.80135190299995,59.524314382],[-94.83109938499996,59.647514350000165],[-94.77608274299985,59.784770517000084],[-94.84445423999995,59.97224086700015],[-94.72991230499991,60.132012503000055],[-94.71304729499991,60.29251370600002],[-94.64773757999995,60.38732686200018],[-94.77011113499992,60.53481258700009],[-94.56187417299992,60.53536260100009],[-94.52394499699994,60.63734496200004],[-94.44222865399996,60.6917732],[-94.37380557599994,60.84654033600009],[-94.22512539999997,60.8931216200001],[-94.17906936699995,61.040934235],[-93.93139125399989,61.292223307000086],[-93.82206574399999,61.33778694100005],[-93.96763805299986,61.39499206200003],[-93.99162989999996,61.46048559800005],[-93.89390087399988,61.536777102000144],[-93.46330317399992,61.70644399000008],[-93.60408009799994,61.70755350100012],[-93.64494312399995,61.7675020480001],[-93.34409010299987,61.74450746900004],[-93.55147207999994,61.85076290100011],[-93.35668438999983,61.88910468300014],[-93.23243398999995,61.96363474300017],[-93.34245669899997,62.02925915600008],[-93.08658852999997,62.04610439400011],[-92.99444790699982,62.11443117699997],[-92.99259087899992,62.20028160900017],[-92.74723424499985,62.22495448800015],[-92.53757381999992,62.1838548930001],[-92.54537514299994,62.29836879200002],[-92.73726940499995,62.36869481800005],[-92.75827206299988,62.46404741300012],[-92.54328212299998,62.4679223010001],[-92.46476166999992,62.53357029799997],[-92.25839716399997,62.58450139600018],[-92.03066178499984,62.53176223200012],[-91.91146361599993,62.5667989100001],[-91.88434717799993,62.64083413500009],[-92.14445180599989,62.66721028600011],[-92.31311964899993,62.71077498200009],[-92.42890533499997,62.796555801000125],[-92.3700219719999,62.84803679100014],[-92.10547215799994,62.86323723600009],[-91.6771909869999,62.81221211500002],[-91.43983529299999,62.79878015900016],[-91.22168383899998,62.857195796999974],[-91.02511258599998,62.94381195900013],[-90.81483879799993,62.929453234],[-90.64992305799984,63.048128002000055],[-90.69821038499992,63.227057982000076],[-90.76730352099997,63.32451585700011],[-90.99387295799988,63.46935245100008],[-91.29185865899996,63.50860341200013],[-91.38771039099987,63.49433802900006],[-91.63701971799998,63.58767893400017],[-91.62812189699997,63.618032852000056],[-91.7165725729999,63.682630521000135],[-91.92186653999994,63.70205493800012],[-92.23122416399997,63.58037406400007],[-92.10354618799994,63.56041179600004],[-92.211700109,63.41696266200012],[-92.4317934959999,63.34340813100005],[-92.74157716499991,63.392416506000075],[-92.87995166199994,63.493481833000146],[-93.17821496499994,63.53659633500013],[-93.3270418919999,63.49733248300004],[-93.69267263599988,63.514197024],[-93.82815555899992,63.59876463500018],[-93.89160120699995,63.692629393000175],[-93.76341994299992,63.80747959300015],[-93.96453882699996,63.9151060050001],[-94.19976014999992,63.91893658000009],[-94.52880065299996,64.01876787000009],[-94.74233234399992,64.04323465200014],[-94.90805797899998,64.11856716900002],[-95.53152465999995,64.04328845300006],[-95.84030167299989,64.04218474200013],[-96.17967221899994,64.21426415700012],[-96.0525437309999,64.3200449740001],[-96.22067228599991,64.32668129600012],[-96.39091486599995,64.42765764500007],[-96.40785940099994,64.48027682200006],[-96.30836492799995,64.58760000900008],[-96.68065622099982,64.77529702300006],[-96.73718977599992,64.93057893500014],[-96.97795144699995,65.0069742770001],[-96.66117081699997,65.12891265800005],[-96.72523496599996,65.20135290000019],[-96.30490067699998,65.32870375200008],[-96.10157028999998,65.41998158600006],[-96.21382943399993,65.52073228100005],[-96.27615430499998,65.6412749210001],[-96.53283603899996,65.6823924860002],[-97.4534753399999,65.71084410300017],[-97.57430215099998,65.79034839000008],[-97.45806209699998,65.86317031800019],[-97.13995343999994,66.18185350099998],[-96.838172537,66.24272592500012],[-96.74705455499998,66.32398523300003],[-96.63081413599986,66.32886072100018],[-96.03948206699988,66.48319307300017],[-96.08633472299988,66.51014266600004],[-95.79293057699994,66.61362415000008],[-95.73260790199998,66.75747903500013],[-95.47930889699995,66.70048922300015],[-95.41782330599989,66.83872138400017],[-95.26300602099991,66.99103346300006],[-95.21381739399993,67.096791393],[-95.35135555199992,67.1571433680001],[-95.53272269599995,67.22342508800017],[-95.52802916899998,67.32643712600009],[-95.69470177599999,67.38168250300009],[-96.09030063799992,67.22550331700006],[-96.21999966299995,67.31051571600011],[-96.17150106299994,67.43397702600004],[-96.36136480899995,67.45623625100012],[-96.42371206299987,67.51310417299999],[-96.13498622299994,67.69309214800012],[-96.20161169699998,67.84099323599997],[-95.99466225499998,68.11832312500019],[-96.06506195499998,68.15341133200002],[-96.00917701499998,68.25415584500001],[-96.41551241899998,68.16813288800006],[-96.48874855599996,68.06973728300011],[-96.76144891199993,68.08741658100007],[-96.48080695199997,68.2096332230002],[-96.53070850799998,68.27283060700012],[-96.98715557099996,68.27982945800005],[-96.9856230229999,68.34909798600012],[-97.32707133299994,68.50951425100016],[-97.6143729879999,68.5118133250001],[-97.84318611599991,68.56642229800008],[-97.85364771299999,68.40512455000015],[-98.07511745899996,68.38052853500017],[-98.66486119699994,68.39177279800015],[-98.65918171599992,68.34104259300017],[-98.35236015199996,68.19768325100017],[-98.559394022,68.16693288700014],[-98.27923589099998,67.97628882900005],[-97.99460983199998,67.91614939100003],[-97.72057555799995,67.99234755200013],[-97.54009792999994,67.9657275150002],[-97.43145557299988,67.89044391400006],[-97.24462716899995,67.87601096100008],[-97.11975940499991,67.81365513100013],[-97.14919816499992,67.63034830000004],[-97.59827590899994,67.62255853800019],[-98.06414229599994,67.7739854850002],[-98.17463072099997,67.87008944300004],[-98.56791968699991,68.11665220100014],[-98.72305115299997,68.07654174300018],[-98.71228023899994,67.964683068],[-98.37580735699993,67.78908558500012],[-98.68499690399995,67.78778646200016],[-98.94178519799993,67.71698944000013],[-99.18653576099996,67.71886100300014],[-99.29948550199998,67.77518070400009],[-100.02801390999997,67.81957471800007],[-100.20381979899997,67.85524553099998],[-100.69431574099997,67.85544750000008],[-100.87687052399991,67.7714644620001],[-101.08768754199997,67.74140442200013],[-101.20884152299988,67.76752806700006],[-101.53638650399989,67.67557455700012],[-101.97147597299988,67.7680587910001],[-102.21183518399994,67.7182142210001],[-102.41658717699988,67.79299651700006],[-102.83559214799999,67.84610653100003],[-102.95221733899996,67.92011708000013],[-103.08318655399995,67.90000457300005],[-103.51694380899994,68.06823447000016],[-103.78756328499992,68.03014960100018],[-103.98289660499995,68.0537635660001],[-104.16906563499998,68.02142415900016],[-104.48882164499992,68.02611922500012],[-104.64871306499998,68.14669138600004],[-104.59121532499995,68.26233022500014],[-104.85809389399992,68.24140083100019],[-105.07304564899988,68.27385263400004],[-105.32103965999994,68.37851779400017],[-105.33407023299986,68.52156723600007],[-105.49187567699988,68.69369470600003],[-105.67159537899983,68.78728737000006],[-105.91941727599993,68.85291087000019],[-106.34026121399995,68.84055048700003],[-107.04357634999997,68.68220162300008],[-107.435602529,68.63184738600006],[-107.60355915099996,68.55097756700013],[-107.47444394399986,68.3363387890002],[-107.22510169099996,68.25875325200019],[-106.78279646199996,68.41013799000001],[-106.60327967499995,68.32534448899997],[-106.45264923799994,68.40060916300007],[-106.60795846099995,68.46682084700012],[-106.4784299499999,68.53485013300019],[-105.86910573899996,68.63958882800006],[-105.69499614499995,68.4397717560002],[-106.43116823899999,68.34034334600011],[-106.75871742199996,68.19621700200008],[-106.72603769399996,68.1172262980001],[-107.01842759999994,68.11242329700019],[-107.38284431299996,68.04236268400007],[-107.67538898199996,68.05144520300007],[-107.74907015699989,67.98608303900005],[-107.69772874899996,67.89547074200016],[-108.02854896199983,67.78281825000016],[-107.95103208999996,67.68997643800009],[-107.5704006169999,67.50288766900007],[-107.69448463799995,67.39034716400016],[-107.49736893,67.20364684200007],[-107.221400873,67.09377507100004],[-107.36287422999999,67.02986890200015],[-107.74847500999994,67.0049137060002],[-107.68565197499993,66.79121446600016],[-107.52582594499995,66.5768369480001],[-107.42480378699997,66.54503758000016],[-107.16147472499995,66.37523801300017],[-107.22001010199995,66.35204217400019],[-107.71520221099996,66.62776121700017],[-107.78602765699998,66.72636438000006],[-108.09619984699998,66.84736290000018],[-108.09316964099992,66.92470311200003],[-108.3213823509999,67.00189884000014],[-108.136257947,67.0814165430001],[-107.98963269499995,67.08634890400009],[-107.86888820499996,67.15588721500018],[-107.963926072,67.27616646100012],[-108.40824989699996,67.42653496700007],[-108.56640917299995,67.58242677100009],[-108.70235210899995,67.61045766500018],[-108.72272994199989,67.45714087800013],[-108.83249784599997,67.35592252400005],[-108.980690488,67.45045631900007],[-108.93757548399992,67.5504862460001],[-109.03190863999998,67.7279138350001],[-109.46769018799995,67.75476415000009],[-109.71598101099994,67.73342726600004],[-109.78621058799996,67.86753136300013],[-109.937778042,67.8956275170001],[-110.00959291899989,67.99940836900004],[-110.33701036899993,67.96538061200016],[-110.7027309479999,67.87169582300004],[-110.829548951,67.80440512000013],[-111.039241974,67.7658473570001],[-111.27957321199989,67.82279110500019],[-111.37326243499996,67.7563101340001],[-111.62276437299988,67.73189423400004],[-111.84257881099995,67.76490580100017],[-112.67113460199994,67.67207038300006],[-113.1033784739999,67.6803031250002],[-113.15544982899996,67.70839355700008],[-113.70049443199997,67.69198979600003],[-113.98024048499997,67.72759899500016],[-114.35934019399991,67.74323867600003],[-114.72282761499997,67.82162470900016],[-114.99936190099987,67.79715522700008],[-115.5518520789999,67.92256243600013],[-115.14936928899994,67.99928185600015],[-115.210533855,68.02747760000017],[-115.15216129499993,68.18895487400016],[-114.89273909599996,68.15147006000018],[-114.42436821999996,68.26117771100019],[-114.27417014199989,68.22769554600018],[-114.51982424,68.31237341900004],[-114.68447551599996,68.27019187000019],[-114.89129991899989,68.29903093000019],[-115.1776412239999,68.408643756],[-115.39962762399995,68.52461253700005],[-115.67668833399989,68.53877915400011],[-115.84743039099999,68.47963212100018],[-116.00850693599995,68.52619305600018],[-115.97975583999988,68.64492448200014],[-115.80980374899997,68.6652896440001],[-115.28088906,68.64055294300016],[-115.42131836599992,68.71220390100018],[-115.937261235,68.88064226500006],[-116.123131431,68.89699450400008],[-116.0006829809999,68.80570592800007],[-116.4202269569999,68.86404237800014],[-116.97027484599994,68.9081516500001],[-117.14904775899993,68.90021789500008],[-117.39018069099996,68.96137496300008],[-118.00837282499992,69.02134699100014],[-118.40110209699986,69.11317417700013],[-118.70105516999996,69.23503694500016],[-119.15409592799989,69.2860627660001],[-119.9596254519999,69.34539365500007],[-120.40396544399994,69.43936821900013],[-120.94914707699985,69.66120326400016],[-121.38376027199996,69.7636688390001],[-121.87828713399989,69.81339973900009],[-122.34224693299996,69.81606339300004],[-123.1122392019999,69.76917235200011],[-123.13071287499997,69.55345214400018],[-123.41105178099991,69.4759597690001],[-123.43571715399997,69.3990543600001],[-123.68498935199995,69.34033070600015],[-123.98670696899995,69.39317501900007],[-124.15008103999992,69.33271752100018],[-124.4942658839999,69.36665434100007],[-124.51395155299997,69.41914410200019],[-124.56533997599996,69.30506195599997],[-125.15488580699991,69.3843834170001]]]]},"properties":{"objectid":96,"eco_name":"Canadian Low Arctic tundra","biome_num":11,"biome_name":"Tundra","realm":"Nearctic","eco_biome_":"NE11","nnh":2,"eco_id":413,"shape_leng":315.133458842,"shape_area":160.988011053,"nnh_name":"Nature Could Reach Half Protected","color":"#4DB18F","color_bio":"#9ED7C2","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":837266.9293012337,"percentage":9.798147375633459}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-17.920150511999964,27.75646221500017],[-17.917667456999936,27.84914326600017],[-17.99916855699996,27.822073406000186],[-18.041931517999956,27.76352598000011],[-18.15395146399993,27.766024793000156],[-18.169637524999928,27.7213167270001],[-18.046798553999963,27.690968035000083],[-17.981571589999874,27.63752133300011],[-17.920150511999964,27.75646221500017]]],[[[-15.685044446999939,27.754482242],[-15.56816852999998,27.75496621300016],[-15.432926521999889,27.803585275000046],[-15.391921580999963,27.852983351000034],[-15.375944499999889,28.005955766],[-15.414101437999875,28.10218873200006],[-15.529704478999975,28.14833077300017],[-15.703557555999964,28.156280506000087],[-15.718897444999982,28.06665415600014],[-15.816394568999954,28.01211059700006],[-15.837346476999869,27.92770215000013],[-15.794781495999928,27.845323632000145],[-15.685044446999939,27.754482242]]],[[[-17.28353457099996,28.215183157000183],[-17.351205531999938,28.166422106000027],[-17.33414852599992,28.089566256000126],[-17.26313251599987,28.017588506000095],[-17.180271535999964,28.01783627599997],[-17.105802516999915,28.068087294],[-17.21287948599985,28.212196349000124],[-17.28353457099996,28.215183157000183]]],[[[-16.12684249299997,28.562951002000034],[-16.320274522999966,28.56601794000011],[-16.38349553099988,28.532795094000164],[-16.46674157599989,28.436810065000145],[-16.607679589999975,28.384743191000155],[-16.914451545999952,28.34032312700009],[-16.834882474999915,28.243570819000126],[-16.785625549999963,28.127568799000073],[-16.631620483999882,27.996442138000134],[-16.546197491999976,28.035279519000028],[-16.451269587999946,28.13405136300014],[-16.333629576999897,28.385893188000182],[-16.12684249299997,28.562951002000034]]],[[[-17.89588154899991,28.850769297000113],[-18.005113505999873,28.757145114000025],[-17.963102568999943,28.650317255000118],[-17.820259515999965,28.44626367800015],[-17.76624250799989,28.545890476000125],[-17.737434577999977,28.763147731000117],[-17.756639529999973,28.80275825800004],[-17.89588154899991,28.850769297000113]]]]},"properties":{"objectid":97,"eco_name":"Canary Islands dry woodlands and forests","biome_num":12,"biome_name":"Mediterranean Forests, Woodlands & Scrub","realm":"Palearctic","eco_biome_":"PA12","nnh":1,"eco_id":787,"shape_leng":6.58764010589,"shape_area":0.456483245523,"nnh_name":"Half Protected","color":"#FFA77F","color_bio":"#FE0000","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":4985.407848131864,"percentage":0.15091775616532835}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[171.62023973400005,-43.46487238999998],[171.5754396350003,-43.573122154999965],[171.40595973200016,-43.664124812999944],[171.2673186950002,-43.546785041999954],[171.25904860600008,-43.493902273999936],[171.14413472500007,-43.335638865999954],[171.11489864700013,-43.32772316399996],[171.15184071200008,-43.41862373099991],[171.13012672100012,-43.542154207999886],[171.0566707390002,-43.58459999799993],[170.98185772700003,-43.530782311999985],[170.81826761900015,-43.53210631799993],[170.86561564900035,-43.61268004399989],[170.8518527320001,-43.69858650499998],[170.89540074200022,-43.744908589999966],[170.82762165600002,-43.91854206199997],[170.75152571000012,-43.95651694499992],[170.65351863000012,-44.087055530999976],[170.52755773600006,-44.03926879299996],[170.6256866880001,-43.84963326199994],[170.61500562900005,-43.69368476799997],[170.42298863200028,-43.888852019999945],[170.20532267700003,-43.8580520459999],[170.11868263100007,-43.90008209399991],[170.09217871800013,-44.103843477999874],[169.99290463000023,-44.177841265999916],[170.01820356100006,-44.21614438399996],[169.80824258600035,-44.337871243999984],[169.84992964600008,-44.37788007899991],[169.8021846490003,-44.51238598799995],[169.6813357100001,-44.55275675499996],[169.64456161900023,-44.46499990499996],[169.5681307320002,-44.46969192599994],[169.49035672900004,-44.53932492199988],[169.35476670400033,-44.55660974799997],[169.28724661800015,-44.6104918069999],[169.14660666500004,-44.61836576599984],[169.10385158300005,-44.76324360999996],[168.97567769800003,-44.913603553999906],[168.9467006210001,-44.988730551999936],[169.0385746620001,-45.05045974899997],[168.99743661600007,-45.17212256999994],[168.87622071700002,-45.33783296399997],[168.69441271100004,-45.44376697699994],[168.6478886220001,-45.506740047999926],[168.5510556800001,-45.509357045999934],[168.47581468800013,-45.58793621499996],[168.2205506990001,-45.652187357999935],[168.4789126390002,-45.88976284799992],[168.70237769800008,-45.98935813099996],[168.81600965100006,-46.00857615799998],[168.8844906380001,-46.05962412799988],[168.66160560700018,-46.16333140499995],[168.87742570000012,-46.2137807389999],[168.9993585870002,-46.087117272999876],[169.20181272900004,-46.11461745999998],[169.48568767300014,-46.24035790999994],[169.78350859600005,-46.38875430899998],[169.91192672900002,-46.338140185999976],[170.23773164100032,-46.15202840799992],[170.31524664300002,-45.98924715399994],[170.4244076890002,-45.93729796299988],[170.6644286830001,-45.90619288699992],[170.61691268000015,-45.83729967799991],[170.75970460300005,-45.75925041299996],[170.69384765400002,-45.68368939999988],[170.8599546800001,-45.4853630099999],[170.91137665000008,-45.395083876999934],[170.87356571700002,-45.355914740999935],[170.9755246960001,-45.148966556999824],[171.07995566600005,-45.065081642999985],[171.1985777010001,-44.917857536999975],[171.21524058900013,-44.74535679599995],[171.19607570300002,-44.55813894199997],[171.26330560700012,-44.463412874999904],[171.29357869500006,-44.34147210899994],[171.5394286320003,-44.167858418999856],[171.86746162200006,-44.06091757199994],[171.95523070900003,-44.004528820999894],[172.18969768700003,-43.90702499199989],[172.07412767000005,-43.757031336999944],[171.93609666800012,-43.70897470099993],[171.62023973400005,-43.46487238999998]]],[[[171.6419217060003,-43.45454957399994],[171.93637058900015,-43.68591055299993],[172.1921996850001,-43.79453046299989],[172.25637874400013,-43.87702615999996],[172.38693258600017,-43.86119509199989],[172.39025869300008,-43.76175437199987],[172.51303060800012,-43.72729955299985],[172.5571896590002,-43.76508047899989],[172.43664565400013,-43.85313924499991],[172.71524067000007,-43.80619538999997],[172.8707886760003,-43.90230195699991],[172.96524065500012,-43.89841090999994],[173.11077865700008,-43.83118921999994],[173.1005247400003,-43.69508069099993],[172.80386370500025,-43.59369385999997],[172.72717264400023,-43.423139564999985],[172.74410962000002,-43.27119326199988],[172.81802359000005,-43.15869068699993],[172.95303358600006,-43.09063700899992],[173.1069026980001,-43.05564138999995],[173.1685785850002,-42.9900895429999],[173.28552273100001,-42.95591786499995],[173.53137166300007,-42.530085163999956],[173.59805272000017,-42.458362726999894],[173.5907747130001,-42.373119274999965],[173.7503966600001,-42.25647520099989],[173.80432163400008,-42.176610583999945],[173.78132672100003,-42.10241129399998],[173.6477966330001,-42.218465449999826],[173.47177163700007,-42.30627460299996],[173.2390896700001,-42.37494334399997],[173.18284559000017,-42.41100312999998],[173.08874464600012,-42.542949205999946],[172.709808693,-42.578546813999935],[172.6528627140001,-42.708242012999904],[172.47702061100006,-42.758515829999965],[172.43756062200032,-42.858159391999834],[172.36817958600022,-42.89479115899985],[172.3824916860001,-42.96189164699996],[172.33377070000017,-43.04047433599982],[172.15858473300023,-43.11169000299998],[172.09089667400008,-43.21419866699989],[171.8883816780001,-43.264125305999926],[171.6419217060003,-43.45454957399994]]]]},"properties":{"objectid":99,"eco_name":"Canterbury-Otago tussock grasslands","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Australasia","eco_biome_":"AU08","nnh":3,"eco_id":190,"shape_leng":31.0843567225,"shape_area":6.07684924448,"nnh_name":"Nature Could Recover","color":"#FCDC79","color_bio":"#FEFF73","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":53599.555912036805,"percentage":0.5058806013271111}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[145.12369299600027,-15.88997554599996],[145.24869004900006,-15.697849810999855],[145.31752960400001,-15.662288849999982],[145.3206999920002,-15.5897400099999],[145.23147999200023,-15.463690009999937],[145.28821999200022,-15.37591000999987],[145.23456999200016,-15.142170009999973],[145.34872999200002,-14.982830009999873],[145.28117999200003,-14.95445000999996],[145.17764999200006,-14.842010009999967],[145.02306999200016,-14.794690009999954],[144.9508699920002,-14.727650009999877],[144.89666999200006,-14.610540009999909],[144.781369992,-14.593260009999938],[144.68293999200012,-14.55208000999994],[144.6188399920003,-14.477170009999895],[144.64713999200012,-14.35142001099996],[144.52418999200017,-14.170740010999907],[144.4579899920002,-14.23710000999995],[144.33942999200008,-14.306210009999916],[144.2609899920002,-14.290050009999902],[144.08478999200008,-14.451980009999886],[143.9757199920001,-14.488400009999964],[143.89740999200023,-14.484290009999881],[143.80354999200006,-14.42923000999997],[143.74234999200007,-14.32551000999996],[143.69850999200003,-14.187540009999964],[143.68031999200002,-14.013930009999967],[143.62212999200005,-13.963110009999923],[143.53174999200007,-13.751770009999973],[143.5582699920002,-13.592780009999956],[143.5872199920001,-13.543570009999883],[143.58286999200004,-13.37593001099998],[143.5397099920002,-13.352950010999848],[143.51593999200009,-13.259950010999887],[143.50302999200005,-12.92634001099998],[143.54068999100002,-12.840860010999961],[143.45004999100001,-12.848770010999942],[143.3512199920002,-12.891320010999891],[143.35675999100033,-12.804740010999922],[143.43617999100013,-12.623540010999932],[143.27419999100005,-12.51453001099992],[143.2722399910001,-12.404480010999976],[143.1803899910002,-12.34315001099992],[143.08440999100014,-12.348120010999821],[143.08583999100017,-12.17356001099995],[143.183929991,-11.99343001099993],[143.10573999100018,-11.896690010999976],[142.96979999100017,-11.930650010999898],[142.85637999100004,-11.844910010999968],[142.85921999100003,-11.635770010999863],[142.83421999100028,-11.558690010999953],[142.83327999100015,-11.430970010999943],[142.86824999100008,-11.382370010999978],[142.7853499910001,-11.220920010999919],[142.78566999100008,-11.074910010999929],[142.71930999100005,-10.968330010999978],[142.6090699910003,-10.93719001099987],[142.59065999100005,-10.868090010999879],[142.51497999100013,-10.858760010999958],[142.60614999100028,-10.74644001199988],[142.54088999100009,-10.708200011999963],[142.42435999100007,-10.725810010999965],[142.35170999100012,-10.88303001099996],[142.2899399910002,-10.91535001099993],[142.18738999100015,-10.916580010999894],[142.12615999100012,-10.982460010999887],[142.15463999100007,-11.120160010999882],[142.11682999100015,-11.372900010999956],[141.95196999100006,-11.86999001099997],[141.93139999200002,-12.074870010999973],[141.85029999200003,-11.984960010999885],[141.74267999200003,-12.205430009999873],[141.59141999200006,-12.56301000999997],[141.75547999200023,-12.53688000999989],[141.82746999200003,-12.649460009999927],[141.75738999200018,-12.827510009999912],[141.6294099920001,-12.915900009999973],[141.58369999200022,-12.997120009999946],[141.619219992,-13.046270009999944],[141.62974999200014,-13.15969000999985],[141.6968099920001,-13.263730009999847],[141.67260999200005,-13.346910009999874],[141.5517399920003,-13.505560009999954],[141.50321999200014,-13.658600009999873],[141.46641999200017,-13.870470008999916],[141.50118999200004,-13.9817200089999],[141.5982499920001,-14.110560008999812],[141.60227999200015,-14.224580008999965],[141.5250699930001,-14.48412000899998],[141.55089999300003,-14.580670008999903],[141.5890599930001,-14.850460008999846],[141.6630442930001,-15.033886451999933],[141.69740579400002,-15.094355486999973],[141.67286532900016,-15.1813297999999],[141.69773733700015,-15.237966435999908],[141.78576250200024,-15.203439685999967],[141.98343157600004,-15.333856770999887],[142.11354465400018,-15.39390645899988],[142.27930859700007,-15.545014812999852],[142.33061908800005,-15.619240093999963],[142.43999066300012,-15.57974330999997],[142.50830499300014,-15.67449664399993],[142.7144666590002,-15.775551412999903],[142.7690560970002,-15.773394626999902],[142.84024674400007,-15.91078577799982],[142.9345411290002,-15.964855805999946],[143.1258288780001,-16.024765781999974],[143.24510826200026,-15.989091344999963],[143.35074152400023,-15.861382997999954],[143.50624386900006,-15.862121891999891],[143.5131549140002,-16.022786717999907],[143.59426963600004,-16.076172475999897],[143.54681656700018,-16.170104763999973],[143.7329160910001,-16.25991123299991],[143.81220678900002,-16.356359019999957],[143.87449614100012,-16.382531642999822],[144.0143110260002,-16.369320407999965],[144.10680967000008,-16.46724158899997],[144.07595097800004,-16.229017380999835],[144.10056234700005,-16.088363243999936],[144.04659439800002,-15.817291796999939],[144.04199282000002,-15.591710669999884],[144.11711462100004,-15.668116877999978],[144.1793507640001,-15.79400612899991],[144.12776709800005,-15.862474721999945],[144.22926458300003,-15.912066821999929],[144.36392127300007,-15.948455835999937],[144.50752481100005,-15.861301792999882],[144.39442654700008,-15.742609759999937],[144.58402694000006,-15.637496031999945],[144.63394789900008,-15.6851170139999],[144.70305173300017,-15.667387542999961],[144.84510247100002,-15.736365606999982],[144.93543010700012,-15.7009752969999],[145.12369299600027,-15.88997554599996]]],[[[142.1983099910002,-10.594490010999948],[142.1267099910001,-10.64467001099996],[142.15425999100023,-10.764800010999977],[142.27834999100014,-10.706370010999876],[142.1983099910002,-10.594490010999948]]],[[[142.276239991,-10.12180001199988],[142.18631999100023,-10.19142001199998],[142.277229991,-10.260800011999947],[142.33191999100018,-10.200030011999957],[142.276239991,-10.12180001199988]]],[[[142.17854999100007,-10.059830011999907],[142.08975999100016,-10.12959001199988],[142.1674199910002,-10.173100011999963],[142.17854999100007,-10.059830011999907]]]]},"properties":{"objectid":101,"eco_name":"Cape York Peninsula tropical savanna","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Australasia","eco_biome_":"AU07","nnh":2,"eco_id":183,"shape_leng":53.9267191581,"shape_area":10.2570907679,"nnh_name":"Nature Could Reach Half Protected","color":"#F8FD6F","color_bio":"#FEAA01","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":123293.13635867524,"percentage":0.5750876707015754}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-69.12181848099988,12.364871468000047],[-69.14979559699998,12.279915347000042],[-69.06224058299995,12.176122575000022],[-69.06856556799988,12.337438337000151],[-69.12181848099988,12.364871468000047]]],[[[-59.46704853299997,13.17691192500007],[-59.52910948499988,13.217555941000171],[-59.60083057999992,13.325211764000017],[-59.64330654499997,13.308092062000185],[-59.638469516999976,13.14504208500017],[-59.61063355199997,13.07086693600013],[-59.530631637999875,13.040791829000113],[-59.44979857599998,13.087008805000153],[-59.46704853299997,13.17691192500007]]],[[[-60.90907249699984,14.65745576400019],[-60.85279455499983,14.484198305000064],[-60.959903542999825,14.489274720000083],[-61.05858251599989,14.551861889],[-61.086864565999974,14.466202526000131],[-60.818977598999936,14.45900196800011],[-60.840469636999956,14.557274419000066],[-60.90907249699984,14.65745576400019]]],[[[-61.25681653799995,15.872355466000045],[-61.20092349299989,15.941891231000113],[-61.27306351599998,16.00037847600015],[-61.321483591999936,15.910697308000067],[-61.25681653799995,15.872355466000045]]],[[[-61.45084753799995,16.491350634000185],[-61.53151648299996,16.423309696000103],[-61.4700585249999,16.357532041000127],[-61.534976532999906,16.242140224000025],[-61.461536476999925,16.2125609900001],[-61.268516500999965,16.303541352000025],[-61.37995960399991,16.341630900000098],[-61.45084753799995,16.491350634000185]]],[[[-61.83070751199995,17.17385296800012],[-61.89908959199994,17.11825345700015],[-61.76935550099995,17.012229926000145],[-61.69472152599991,17.087382405000085],[-61.78554548199986,17.121787267000116],[-61.83070751199995,17.17385296800012]]],[[[-61.84287250299997,17.728144034000024],[-61.83215758099993,17.5971890350001],[-61.74057355399998,17.562780987000167],[-61.7446595639999,17.64417999600016],[-61.84287250299997,17.728144034000024]]],[[[-63.039283569999895,18.12908566800013],[-63.122184615999856,18.037254375000032],[-63.0289646089999,18.019563194000057],[-63.039283569999895,18.12908566800013]]]]},"properties":{"objectid":104,"eco_name":"Caribbean shrublands","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Neotropic","eco_biome_":"NO13","nnh":3,"eco_id":599,"shape_leng":20.275441327,"shape_area":0.262595063429,"nnh_name":"Nature Could Recover","color":"#D98944","color_bio":"#CC6767","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":3136.0236830451427,"percentage":0.011886901834381841}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[115.23000714900024,-21.59291172299993],[115.04967000500017,-21.681129993999946],[114.913340005,-21.692919993999965],[114.77572000500004,-21.791919993999954],[114.64482000500016,-21.849079993999908],[114.61553000600009,-21.975009993999834],[114.47579000600012,-22.15443999399986],[114.37124000600011,-22.490229993999947],[114.2614200060001,-22.440909993999924],[114.18848000600008,-22.521379993999915],[114.1207500060001,-22.469969993999882],[114.18139000600002,-22.344159993999938],[114.08035000600012,-22.15497999399986],[114.14095000600003,-21.943099993999965],[114.16532000600012,-21.78515999399997],[113.99603000600007,-21.874849993999874],[113.94591000600008,-21.95433999399995],[113.81593000600003,-22.317379993999907],[113.75026000600019,-22.407539993999876],[113.70781000600005,-22.525789993999922],[113.65393000600011,-22.582909993999976],[113.71042000600005,-22.71557999399988],[113.76710000600019,-22.775969993999922],[113.82620000600002,-22.953539992999822],[113.82743000600033,-23.04433999299988],[113.77069000600022,-23.12815999299994],[113.79545000700011,-23.302319992999912],[113.77864000700015,-23.47725999299996],[113.75457000700021,-23.52799999299998],[113.61360000700006,-23.631599992999895],[113.56787000700012,-23.751999992999856],[113.47073000700004,-23.89862999299993],[113.45933000700006,-24.014309992999927],[113.42245000700018,-24.04318999299994],[113.44510000700006,-24.145899992999944],[113.39282000700018,-24.238309992999973],[113.40776000700009,-24.48492999299998],[113.62436000700018,-24.74661999299991],[113.62449000700008,-24.876309992999893],[113.68043000700015,-24.92669999299983],[113.66447000700009,-25.018499992999978],[113.6963000070001,-25.08543999299991],[113.81055000700019,-25.16475999299996],[113.88982000700014,-25.334259992999932],[114.00369000800026,-25.617639992999955],[114.23182000800011,-25.874609992999922],[114.25865000800013,-25.982809991999943],[114.19535000800022,-25.982079991999854],[114.25375000800022,-26.156649991999927],[114.1912600080002,-26.167879991999882],[114.23768000800021,-26.28236999199987],[114.20923000800008,-26.37286999199989],[114.08977000800007,-26.46763999199993],[113.98017000800007,-26.353369991999955],[113.93484000800004,-26.18058999199991],[113.87973000800014,-26.071589991999872],[113.77555000800032,-26.21411999199995],[113.7024700080002,-26.13403999199994],[113.70094000800009,-26.04174999199995],[113.76117000800002,-25.877329991999886],[113.60838000800004,-25.716579991999936],[113.57196000800002,-25.637519991999852],[113.47317000800001,-25.557409991999975],[113.4145100080002,-25.72451999199984],[113.51385000800008,-25.854099991999874],[113.55884000800006,-25.94546999199997],[113.58506000800003,-26.09514999199996],[113.69696000800013,-26.221089991999975],[113.81855455600032,-26.268409032999898],[113.87840271900018,-26.218109051999875],[113.9157791340001,-26.334589008999956],[113.96569068500003,-26.372762709999904],[114.02602379200005,-26.491256668999824],[114.0836029410001,-26.506048214999964],[114.13543696500017,-26.590347360999942],[114.19926448800027,-26.597902305999924],[114.26884467700006,-26.74070546099989],[114.37615969200021,-26.646747511999934],[114.48455044100012,-26.745767627999953],[114.66642768100007,-26.553218883999932],[114.7290572620002,-26.612203509999972],[114.70713037100006,-26.703630459999886],[114.65457164700001,-26.710357606999878],[114.52565009700004,-26.863054257999977],[114.56906131500011,-26.90903285299993],[114.6649551490001,-26.913070750999907],[114.67826846100013,-26.775199841999893],[114.86862181700019,-26.63623811399998],[114.8976211910001,-26.52432629499998],[114.9550018560002,-26.485010139999815],[115.07688897800006,-26.53042027399988],[115.23945615700029,-26.712932527999953],[115.39295193800012,-26.760417853999968],[115.39797202800014,-26.630378660999952],[115.4452820030001,-26.522087152999973],[115.45439145600005,-26.359313946999976],[115.51758581000001,-26.200786508999954],[115.58339699300018,-25.945196129999943],[115.48475640900006,-25.900337189999902],[115.43965908800021,-25.845899577999944],[115.59282680100023,-25.592378690999965],[115.53540037100015,-25.52905827299992],[115.50140387400018,-25.166547833999914],[115.55816645800007,-25.111465486999975],[115.50378416700005,-25.05219269099996],[115.62462623300019,-25.002155411999922],[115.67123414100001,-24.839229652999904],[115.66262810500007,-24.714544317999923],[115.6321488230003,-24.645702405999828],[115.51154329500002,-24.553737672999944],[115.46907805900014,-24.462173593999864],[115.46839141200007,-24.38556283199989],[115.38492593,-24.246284434999893],[115.26923370500015,-24.129728370999942],[115.16252134900003,-23.89476971099998],[115.18392940000012,-23.756175947999964],[115.02555853600006,-23.637611412999888],[114.99435421900012,-23.580203925999967],[115.13836671600018,-23.547851623999918],[115.09481049000021,-23.41693685699994],[115.030570914,-23.390699320999943],[115.0446318920001,-23.139673222999875],[115.10849746800022,-23.19517516799982],[115.14505765300021,-23.12041479499993],[115.06877143800011,-23.07481405599998],[114.98101810800006,-22.94564239099998],[115.09197254500009,-22.940156937999973],[115.08979040100007,-22.86835286099989],[115.2288971370001,-22.785099104999972],[115.2538071470002,-22.714168757999914],[115.26349645900007,-22.586549755999954],[115.39159406800002,-22.60160449199992],[115.48819734700021,-22.558053966999978],[115.51264953700013,-22.47904011299994],[115.33125308300009,-22.508344586999954],[115.2281570140002,-22.391586351999877],[115.23094181800002,-22.277030881999963],[115.28762812600019,-22.13696290999991],[115.35653692500023,-22.11950491399989],[115.33665471600034,-21.98015208499993],[115.26839450800003,-21.799133317999974],[115.22259528600011,-21.76353453799993],[115.23000714900024,-21.59291172299993]]],[[[115.43717000500021,-20.665579994999973],[115.32486000500012,-20.80335999499988],[115.30706000500015,-20.86151999499998],[115.39644000500016,-20.885919994999938],[115.47774000500021,-20.73525999499998],[115.43717000500021,-20.665579994999973]]]]},"properties":{"objectid":105,"eco_name":"Carnarvon xeric shrublands","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Australasia","eco_biome_":"AU13","nnh":2,"eco_id":207,"shape_leng":34.7076666949,"shape_area":7.50096814132,"nnh_name":"Nature Could Reach Half Protected","color":"#F27C62","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":84676.92990966457,"percentage":0.3209626122770978}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[139.5501099940003,-16.391140006999933],[139.4635599940002,-16.44684000699982],[139.3094299940002,-16.460450006999963],[139.16074999400018,-16.60959000699995],[139.16614999400008,-16.66868000699992],[139.23001999400003,-16.732180006999954],[139.28873999400003,-16.734740006999914],[139.3822399940002,-16.65584000699988],[139.45151999400014,-16.666400006999936],[139.4780099940001,-16.532180006999965],[139.5762199940001,-16.501070006999953],[139.59830999400015,-16.55376000699988],[139.6996899940002,-16.51055000699995],[139.67553999400025,-16.451400006999904],[139.5501099940003,-16.391140006999933]]],[[[136.67228999400004,-15.665430005999895],[136.61644999400005,-15.711350005999975],[136.68361999400008,-15.77851000599992],[136.72500999400006,-15.698160005999853],[136.67228999400004,-15.665430005999895]]],[[[136.99455999400004,-15.584340005999877],[136.99343999400003,-15.791190005999965],[137.07269999400012,-15.83821000599994],[137.07542999400005,-15.649640005999856],[136.99455999400004,-15.584340005999877]]],[[[136.590439994,-15.51730000599997],[136.51265999400005,-15.54372000599983],[136.51418999400005,-15.653190005999932],[136.59073999400005,-15.645270005999862],[136.590439994,-15.51730000599997]]],[[[135.6486685870002,-14.420222219999914],[135.42359919000023,-14.339977272999818],[135.24719231400002,-14.249868461999881],[135.08738713900004,-14.137163211999962],[134.86466974600023,-13.961563848999901],[134.7100524660001,-13.890706088999877],[134.41702264000003,-13.840551462999883],[134.27415460800034,-13.849065798999959],[133.92973332200017,-13.90290544599992],[133.75335695700016,-13.909429583999895],[133.43470767600013,-13.882845706999944],[133.27656547000004,-14.121561973999974],[133.19462599600013,-14.20210720199998],[133.09594719100016,-14.175127029999885],[133.05654906100017,-14.213320679999981],[132.9863281590001,-14.374080721999974],[132.95841977400016,-14.546582300999887],[132.93959049900002,-14.64646726199993],[132.8559722980002,-14.773215383999911],[132.97256473800007,-14.861936655999955],[133.1214600290001,-14.93444078799996],[133.19445802300004,-14.933683399999893],[133.327819803,-14.99532408399989],[133.4583436370001,-15.002037149999978],[133.48818975000017,-15.111233566999829],[133.59432979100018,-15.19536205899982],[133.669494675,-15.314256672999932],[133.7363433700001,-15.371580172999927],[133.89682010400008,-15.59365366999998],[133.98170464300006,-15.93110372699988],[134.1272582360001,-16.080911638999964],[134.37886050600014,-16.229255734999924],[134.49453730800008,-16.309087661999968],[134.64775078600007,-16.447551674999886],[134.71801762200005,-16.56680302199993],[134.7462005980003,-16.66922183199989],[134.87416074400016,-16.716890386999978],[135.02670283200018,-16.73036362499994],[135.302581776,-16.69962115199985],[135.42419430600023,-16.736412006999956],[135.48608393300003,-16.851154393999877],[135.48762519700006,-16.988422475999982],[135.43403616900002,-17.08536153299997],[135.43493655400016,-17.168602044999943],[135.61640928400027,-17.353645465999932],[135.54045096800007,-17.41730115899992],[135.3968047620001,-17.491195681999955],[135.31616213600012,-17.435123432999887],[135.2758941310001,-17.329895008999813],[135.17176826300022,-17.40458497399993],[135.0904693340001,-17.31630894999995],[135.0212554340003,-17.291843346999883],[134.96688839700016,-17.365236296999967],[134.80773919000012,-17.318592011999954],[134.7081908470002,-17.389186914999982],[134.5168609990002,-17.328445441999975],[134.50303655800008,-17.466980028999956],[134.3132934040001,-17.645765352999945],[134.3223418360002,-17.785614054999883],[134.4691771890001,-17.854093364999926],[134.5670318860001,-17.84023472699988],[134.70684806600002,-17.741378728999848],[134.72912599100005,-17.80498697999991],[134.83204654200017,-17.821048718999975],[134.9348908180002,-17.88515099899996],[135.05601501800004,-17.86913485899987],[135.1088257020001,-17.904411103999905],[135.1988067750001,-17.779705147999948],[135.55065912100008,-17.80260668699998],[135.76457216300003,-17.743003812999916],[135.83843986400007,-17.53420456999993],[135.94934082500004,-17.537260107999884],[136.05970769100009,-17.50258836599994],[136.2215728020003,-17.51588625599993],[136.26640324400023,-17.577297106999936],[136.23995968100007,-17.659669925999935],[136.45550535000007,-17.83377831599995],[136.45216365300007,-17.911394067999936],[136.35462948100007,-18.034744334999914],[136.38316349100023,-18.08085821399993],[136.5261383080001,-18.176183753999908],[136.53646850000018,-18.23807153699994],[136.49687188600012,-18.36499970199992],[136.61100759200008,-18.520534463999923],[136.66508478100002,-18.55732917599994],[136.720871041,-18.81344996199988],[136.62545782600023,-18.943517652999958],[136.71238704600012,-18.986412042999973],[137.03594963200032,-18.978588039999977],[137.09257508800022,-18.899999649999927],[137.08410651500003,-18.82703216599998],[136.95576482500007,-18.689760228999944],[136.99475073300005,-18.66247176899992],[137.11193845700018,-18.709077832999924],[137.22105407300012,-18.700372723999976],[137.37808215600012,-18.757131619999825],[137.47264092000012,-18.823913594999965],[137.61486807100016,-18.836465829999952],[137.7505492900002,-18.788774476999947],[137.80236822700022,-18.740106465999872],[137.9363403760002,-18.697231186999943],[137.98674025800028,-18.612030146999928],[138.1463881620001,-18.62823906199992],[138.32841154200014,-18.683342651999908],[138.46622978300002,-18.68713901599989],[138.60389485300016,-18.618195070999946],[138.5997896780002,-18.507519610999907],[138.64634292900007,-18.396815310999898],[138.7452333780003,-18.358715701999927],[138.9097515510001,-18.464976129999968],[138.84328657600008,-18.515632178999965],[138.86089526100022,-18.59076419299987],[138.92711660900022,-18.62326077599994],[138.993827817,-18.754085215999908],[139.1319178330001,-18.80863060999991],[139.02806883900007,-18.910357692999924],[139.19429523400015,-18.91033181699993],[139.20029235100014,-18.998372984999946],[139.26344740200022,-19.00632234899996],[139.3347498080003,-18.8997699169999],[139.39343390800002,-18.87414239599991],[139.5474227510001,-18.87617644699992],[139.54301345000022,-18.95609041399996],[139.64007358100002,-19.10019328599992],[139.65759094700013,-19.24622292399988],[139.6913124780002,-19.32959059799998],[139.747143477,-19.32937090699994],[139.7671779220002,-19.43168840499993],[139.85184796500016,-19.46005953899993],[139.87430902100016,-19.54887866099989],[139.96435008200024,-19.568386330999942],[140.03647838200015,-19.750243344999888],[140.1200802430002,-19.773876442999892],[140.11324481200006,-19.889844709999977],[140.0147666800001,-20.059991940999964],[140.0468113080001,-20.28456831999989],[140.1450754330001,-20.12643505999995],[140.1287024950002,-20.03096126999992],[140.1818928030001,-19.754110279999907],[140.20136153400006,-19.493498575999922],[140.24043893600003,-19.510422217999974],[140.2593147010001,-19.677583535999815],[140.24572007800032,-19.82207055799995],[140.2065205780002,-19.858405441999878],[140.2146692340001,-19.997402895999926],[140.32277777800005,-20.206032713999946],[140.29735811000023,-20.34476760099983],[140.3280892790001,-20.391102400999955],[140.29214085700005,-20.54106719899994],[140.3940225350001,-20.56643149899992],[140.53394376100005,-20.525790411999935],[140.8402163710001,-20.746089655999924],[140.7825392430001,-20.795047756999907],[140.86028287600004,-20.922703691999914],[140.98721955300005,-20.952058575999956],[140.8847742920002,-21.071888229999956],[140.92420288300013,-21.099468027999933],[140.93703730800007,-21.347415123999838],[140.95632480600023,-21.44870843899986],[140.94488158000001,-21.551993189999962],[141.0147065330002,-21.557206975999975],[141.14275140100017,-21.484353676999945],[141.1868086940001,-21.394531522999955],[141.30638092900006,-21.245123770999953],[141.37013823900008,-21.13178484799988],[141.38779166100005,-21.050578981999934],[141.48293123700023,-20.896607985999935],[141.47493790200008,-20.669306029999973],[141.43328076300008,-20.59479497799998],[141.49774075800008,-20.50627458199989],[141.38542766400008,-20.417560424999976],[141.2537679410001,-20.154548096999974],[141.3462191560002,-20.138025530999982],[141.40099439800008,-20.20159482899993],[141.5420974000001,-20.207338976999836],[141.6276484140002,-20.0773274849999],[141.7587726050001,-20.15673679699995],[141.84823711100012,-20.262044518999858],[141.96642398100028,-20.351885586999913],[142.00617571500004,-20.503375318999872],[142.11662862300034,-20.547738991999893],[142.15835755800003,-20.696412085999896],[142.1982562830002,-20.76098380399992],[142.35288759300022,-20.874279291999926],[142.4401301370001,-20.83640107399998],[142.44231036200017,-20.786933846999943],[142.61753959400005,-20.752761310999915],[142.76636597000015,-20.793821355999967],[142.8513741700001,-20.676716724999835],[142.98751871800016,-20.651716025999917],[142.91109733400015,-20.537758012999973],[142.94517399600022,-20.327997143999937],[143.10366158400006,-20.367267005999906],[143.36297153200007,-20.271256952999863],[143.54529520100004,-20.305429541999956],[143.5202169590002,-20.31745790399998],[143.61534358000006,-20.429534141999852],[143.45035678200009,-20.50446552799997],[143.50180339400015,-20.535959957999978],[143.27271389100008,-20.641756974999964],[143.22738848800032,-20.71942667899998],[143.31776646000014,-20.732997627999907],[143.39359242500018,-20.643453418999968],[143.45821883100018,-20.640943407999885],[143.55000653700006,-20.56445105699993],[143.66972252200003,-20.520054320999975],[143.78882699400026,-20.41867600599994],[143.7497105010002,-20.353493379999975],[143.9282359650001,-20.252292910999927],[143.9748067930002,-20.274583436999933],[144.0921934390002,-20.241329649999898],[144.17942335100008,-20.251990937999892],[144.20298293700012,-20.17346595299989],[144.26936995900007,-20.166616720999855],[144.25775934800004,-20.027201840999908],[144.35042445800002,-19.946637892999888],[144.30673790600008,-19.830269511999916],[144.28504957200005,-19.689502164999908],[144.15277453900035,-19.79099019399996],[144.1026357410002,-19.887656491999962],[144.0355643140001,-19.904334366999933],[144.0993178880002,-19.75267035299987],[144.0332433010002,-19.746855903999915],[143.967417715,-19.82803959099988],[143.89506714100003,-19.80701106899994],[143.86320283100008,-19.746733925999877],[144.00343413600012,-19.644280494999975],[144.09130271800018,-19.604617250999922],[144.06473337000023,-19.538733851999837],[143.97091391000004,-19.61295015199994],[143.88742892400035,-19.601493542999947],[143.71184844100003,-19.517606128999944],[143.54637378000018,-19.296694409999873],[143.70869688300013,-19.129911664999838],[143.6440041090001,-19.041082003999975],[143.54838984900027,-19.026199214999963],[143.53920348800023,-18.96107026699997],[143.41848812800026,-18.91383986099993],[143.30138075300022,-18.950332137999965],[143.21460355300007,-18.875517264999928],[143.20964712600005,-18.826715038999907],[143.11035941700015,-18.769589466999946],[143.01229090100014,-18.818485329999874],[142.85511343500013,-18.692173973999843],[142.79408692500022,-18.841956877999905],[142.72282375800023,-18.850674932999937],[142.6195167310001,-18.737444842999935],[142.62318403400002,-18.656964733999928],[142.55246833600017,-18.65235809899997],[142.47758685400004,-18.374611409999943],[142.52369466200025,-18.241363342999875],[142.42625151000016,-18.236533986999973],[142.24220042600007,-18.188425690999964],[142.18615883700022,-18.111514336999903],[142.2245112400003,-18.06437305499992],[142.38470449700003,-18.03453254799996],[142.40138784600015,-18.00315540699995],[142.54624087200023,-17.993821529999934],[142.60268703800023,-17.958398959999954],[142.67414824900004,-18.075144119999948],[142.8335766560001,-18.24179584599989],[142.9245874610001,-18.273647495999967],[142.9670937840002,-18.38337586499989],[143.0902054720001,-18.369578671999875],[143.24848832100008,-18.304617907999898],[143.18066554200016,-18.213678108999886],[143.16337152400013,-18.07458541799997],[143.27790038900002,-18.057238947999963],[143.31660585600002,-18.01843973099983],[143.4082092240003,-18.02968631099992],[143.41615460900005,-17.961498726999935],[143.5212353830001,-17.89705358599997],[143.55105256900015,-17.825307540999916],[143.47885281100002,-17.743491493999954],[143.54871767200018,-17.655553918999942],[143.69881740100016,-17.750837016999924],[143.79425773800006,-17.689219140999967],[143.92907999400006,-17.65013255399998],[143.9174233970001,-17.500228123999875],[143.8478303380001,-17.455430590999867],[143.98260012200012,-17.375118632999886],[144.0390551160001,-17.38990131299994],[144.02839317300015,-17.1745312889999],[144.00020387300015,-17.08786353299996],[144.03657852700007,-17.001129174999846],[144.10852473100022,-16.958856632999925],[144.06383803300014,-16.891664763999927],[144.17050979200008,-16.878393757999902],[144.13091333900002,-16.808734751999964],[144.25791879300016,-16.75095376099995],[144.1885352070002,-16.619097026999896],[144.11068859400007,-16.61072277999989],[144.10680967000008,-16.46724158899997],[144.0143110260002,-16.369320407999965],[143.87449614100012,-16.382531642999822],[143.81220678900002,-16.356359019999957],[143.7329160910001,-16.25991123299991],[143.54681656700018,-16.170104763999973],[143.59426963600004,-16.076172475999897],[143.5131549140002,-16.022786717999907],[143.50624386900006,-15.862121891999891],[143.35074152400023,-15.861382997999954],[143.24510826200026,-15.989091344999963],[143.1258288780001,-16.024765781999974],[142.9345411290002,-15.964855805999946],[142.84024674400007,-15.91078577799982],[142.7690560970002,-15.773394626999902],[142.7144666590002,-15.775551412999903],[142.50830499300014,-15.67449664399993],[142.43999066300012,-15.57974330999997],[142.33061908800005,-15.619240093999963],[142.27930859700007,-15.545014812999852],[142.11354465400018,-15.39390645899988],[141.98343157600004,-15.333856770999887],[141.78576250200024,-15.203439685999967],[141.69773733700015,-15.237966435999908],[141.67286532900016,-15.1813297999999],[141.69740579400002,-15.094355486999973],[141.6630442930001,-15.033886451999933],[141.62871999300012,-15.160340008999924],[141.47205999300002,-15.52127000799993],[141.43529999300017,-15.66158000799993],[141.41427999300004,-15.846230007999964],[141.37554999300005,-15.919030007999936],[141.430859993,-16.08293000799989],[141.3510799930001,-16.217860007999946],[141.29026999300004,-16.397080007999875],[141.30486999300012,-16.457180007999966],[141.23540999400007,-16.589810007999915],[141.20705999400002,-16.69108000799997],[141.09419999400006,-16.808080007999877],[140.95903999400002,-16.996430006999958],[140.94978999400007,-17.151290006999943],[140.9128099940001,-17.232360006999897],[140.88285999400023,-17.3820800069999],[140.84463999400032,-17.43841000699996],[140.7106299940001,-17.509240006999903],[140.5960299940001,-17.596500006999918],[140.3862899940001,-17.677920006999898],[140.12324999400016,-17.719550006999953],[140.00347999400014,-17.714570006999907],[139.9350999940002,-17.629590006999877],[139.81773999400002,-17.570360006999977],[139.7567499940002,-17.577850006999938],[139.62155999400022,-17.522020006999867],[139.53319999400003,-17.439630006999835],[139.41574999400007,-17.37430000699993],[139.34101999400002,-17.375460005999912],[139.2412099940002,-17.32296000599996],[139.15599999400013,-17.16731000699997],[139.15327999400006,-17.037060006999866],[139.08298999400006,-16.995700006999982],[139.0389399940001,-16.91331000699995],[138.8952099940002,-16.88423000699993],[138.62812999400012,-16.768050006999886],[138.4276199940001,-16.777780005999887],[138.1937499940002,-16.696540005999907],[137.86152999400008,-16.423580005999952],[137.7255799940001,-16.23112000599997],[137.57057999400013,-16.174720005999916],[137.46440999400022,-16.159740005999936],[137.32102999400013,-16.09945000599987],[137.2506199940001,-16.01022000599994],[137.04877999400003,-15.92196000599995],[137.00823999400018,-15.877420005999909],[136.81331999400015,-15.900330005999876],[136.70691999500013,-15.932000005999953],[136.71412999400013,-15.856410005999976],[136.62543999400032,-15.772070005999979],[136.54430999400006,-15.741430005999973],[136.40928999400035,-15.625420005999956],[136.33884999400004,-15.61236000599996],[136.27067999400003,-15.536780005999901],[136.24058999400017,-15.41742000599993],[136.16337999400002,-15.391100005999931],[135.920589994,-15.243700005999926],[135.86271999400014,-15.182180005999896],[135.63788999400003,-15.044070005999913],[135.57784999400008,-15.043740005999894],[135.47390999400022,-14.973300005999874],[135.4139399940002,-14.868940005999889],[135.37932999400005,-14.723680005999938],[135.42504999400012,-14.727610005999964],[135.51676999400001,-14.650660005999896],[135.5375499940002,-14.559310005999976],[135.62099999400016,-14.423710005999908],[135.6486685870002,-14.420222219999914]],[[142.17051014800018,-20.066133682999975],[142.2313413530003,-20.070344451999972],[142.31618106900032,-20.131624082999906],[142.44340181500013,-20.160466741999926],[142.50974393800004,-20.27617800199988],[142.58864147200018,-20.245993590999888],[142.70378531000006,-20.40676737899986],[142.87107873300033,-20.452453385999945],[142.91440226700013,-20.58002179899995],[142.84909910300019,-20.63171206699991],[142.5892462610002,-20.61657995099995],[142.5096038470001,-20.544811249999952],[142.33225600700007,-20.485328119999963],[142.25921109100022,-20.33712799199992],[142.17051956400007,-20.247598376999974],[142.0859350720001,-20.242182106999905],[142.10299953400022,-20.0684780549999],[142.17051014800018,-20.066133682999975]]]]},"properties":{"objectid":108,"eco_name":"Carpentaria tropical savanna","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Australasia","eco_biome_":"AU07","nnh":2,"eco_id":184,"shape_leng":136.211134954,"shape_area":31.1519326935,"nnh_name":"Nature Could Reach Half Protected","color":"#C5FC7D","color_bio":"#FEAA01","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":368033.363246998,"percentage":1.7166523284350736}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[54.039958502,38.283672614000125],[53.983341596000116,38.482384237000076],[53.982971619000125,38.560121695000134],[54.05484057100006,38.65870008500019],[54.109928618000026,38.79980003800006],[54.27956056900018,38.91780516400007],[54.19530148700005,39.00730478000003],[54.04140052500003,39.03092448000018],[53.95959851400005,39.087163530000055],[53.86588246600013,39.24142022000018],[53.652400589000194,39.44096835700009],[53.66516857500005,39.494277597000064],[53.76491154600012,39.54424597700017],[53.80290956300007,39.645364251000046],[53.63237354000006,39.792293315000165],[53.67643351700008,39.84444266600019],[53.80674361300004,39.80259618200006],[54.024711485000125,39.76689866200019],[54.056560537999985,39.84717466400008],[53.975234619,39.91272198500019],[53.77039750200004,40.00420056700011],[53.59095352700018,40.02885040400014],[53.42497256600012,39.985352014000114],[53.49332447200004,39.94439049200008],[53.399852505000126,39.77908276500011],[53.460578555000154,39.67703393100015],[53.570850538000116,39.68034880700014],[53.52360962900019,39.58746524900016],[53.283378584,39.54882668700009],[53.20675256600009,39.565447666000125],[53.09268961600009,39.43336932400007],[53.15652049100015,39.33962075400012],[53.22829858400007,39.39320894300016],[53.528999527999986,39.30201936900016],[53.562229583000146,39.20661554100019],[53.64935259400016,39.11223413800013],[53.77118255100004,39.04556515000007],[53.88050050600009,39.02375745000012],[53.93259453700017,38.93580697800007],[53.98895261000001,38.9262050050001],[53.85137959499997,38.63717049600007],[53.83381246700009,38.49525498500009],[53.86897253900008,38.38142572200019],[53.86236156400014,38.21088081400006],[53.8238026300001,38.051280493000036],[53.813014618000125,37.81221403000012],[53.88380448400011,37.498480735000044],[53.91860162000012,37.26432338400008],[54.00971961300013,37.034882196000126],[54.03365749,36.87335940100019],[54.13351462300011,36.83572817600003],[54.61956761000005,36.94614600400007],[54.82960150800005,37.00621457800008],[54.95365551900011,37.11588541100008],[54.97396453500005,37.328478136000115],[54.904388536000056,37.56499650100005],[54.74589948700009,37.64958482399999],[54.39796450699998,37.63844309500013],[54.29234347400012,37.669814715000086],[54.156009472,37.872962711000184],[54.10945856100011,38.16504873500014],[54.039958502,38.283672614000125]]],[[[53.05097959000011,40.00688244100013],[53.08998159100014,40.12284020400017],[52.97843958200008,40.291057961000035],[53.04470053799997,40.503725452000026],[53.137565488000064,40.653411994000066],[53.19519056900015,40.689830525],[53.647754500000076,40.730681909],[53.74142059200017,40.60140345800005],[54.149490531000026,40.659210930000086],[54.36687049600005,40.65032192100011],[54.57163653500004,40.66715261500019],[54.67678047000004,40.70760736800014],[54.788150482,40.81643112600011],[54.87420262100011,40.97382030100016],[54.89078856300017,41.087829104000036],[54.828441620000035,41.18138740500012],[54.53836054700014,41.38946932500011],[54.40966061500018,41.435214902000155],[54.31087150400015,41.50160527500003],[54.38092057700004,41.55079581500007],[54.37710949400008,41.61209334400007],[54.19770860199998,41.72085323100015],[54.04988854300012,41.92004379600013],[54.036800536000044,42.00648016100001],[53.884590539000044,42.15680104500012],[53.75946062700007,42.20576946500012],[53.55868957000007,42.17484795300015],[53.42089460200003,42.210477747000084],[53.2799104880001,42.13622816700018],[53.20101163300018,42.139558967000085],[52.99551050100007,42.06415469600012],[52.75423859200009,41.73344117400012],[52.818172564,41.59902444800019],[52.77970449000003,41.46550358000019],[52.72232449500018,41.418044909000116],[52.77017259000007,41.38291635300004],[52.85692947900003,41.15556644900016],[52.88756952600005,41.16844859600013],[52.81795161700012,41.37652632500016],[52.95190063300009,41.67526389200009],[53.17384353800003,41.73743213300003],[53.33802054600011,41.702302571000075],[53.365390478,41.66858468900017],[53.51226455600005,41.666791800000055],[53.715530569000066,41.62732527400004],[53.827079619000074,41.57456454600003],[54.08678853100008,41.38726136400015],[54.12298946800013,41.25953842600018],[54.231639552000104,41.068942329000095],[54.27389959900006,40.91194995300009],[54.22813055200004,40.84599460100003],[54.23260849999997,40.74360177500017],[54.066020521000155,40.72117213700011],[53.99960751700013,40.67914242500012],[53.759216546,40.65594165200008],[53.68202961100019,40.75633187400018],[53.648208632000035,40.873880523000025],[53.53062058800003,40.86244056600003],[53.48463847300013,40.76590669000018],[53.329929495000044,40.79395119700018],[53.04108056200016,40.87140048499998],[52.94001358500009,40.949169627000174],[52.83125654700018,40.73188387400006],[52.85485847799998,40.661533890000044],[52.73855957100017,40.49833454700013],[52.7063785950001,40.290128240000115],[52.76691052100011,40.150598888000104],[52.733760596000195,40.079329577000124],[52.771926587000166,40.001369664000094],[52.909358618000056,39.987984770000025],[53.05097959000011,40.00688244100013]]],[[[47.94558348300012,45.63648243800003],[47.90440352799999,45.607448363000174],[47.92341653400018,45.46171523000015],[48.043117488,45.451534235000054],[48.04475346800001,45.60430548500017],[47.94558348300012,45.63648243800003]]],[[[52.09153347500012,49.07482378100019],[52.01906152800012,48.99650713300019],[52.010002535000126,48.87812800500012],[51.87452348700003,48.848525638000126],[51.88360561400003,49.11592042000012],[51.77531461000012,49.24645984400007],[51.69052562400003,49.29479727400002],[51.66884247900015,49.15824500700006],[51.68324661200012,48.98345701300008],[51.51826862900009,48.93994957100006],[51.05109755600017,49.14023481200019],[50.96239455600005,49.15595171900003],[50.84632447600006,49.110640323000155],[50.7940675000001,48.970913830000086],[50.703414535000036,48.948349746000076],[50.515712542000074,48.955189547000145],[49.84173561000017,49.084376133000035],[49.41565346400006,49.20965541000004],[49.228706511999974,49.20590232900008],[48.47992360800015,49.14839878600014],[48.165031599000145,49.207332450000024],[47.880050579000056,49.10611241900011],[47.743190528000184,49.12116145600015],[47.33967548300012,49.27405625500012],[47.25042749300019,49.257908015000055],[47.233093549000046,49.17250011000016],[47.43613861600005,48.97287486000016],[47.454360538000174,48.88676488600004],[47.38499861300011,48.84765241100007],[47.23230749400011,48.90559801700016],[47.04780956800016,48.916466160000084],[46.969619487000045,48.883502985000064],[46.94796349900008,48.765032830000166],[46.83745548200011,48.66968784300019],[46.83148957800012,48.61338911400003],[46.970794462000015,48.494686110000146],[46.91348252900008,48.41329146000004],[46.99382357300004,48.21324376100006],[46.95646660400007,48.157548362000114],[46.832153592,48.118614924000155],[46.695857476000185,48.13205782100016],[46.568492614000036,48.255186134000155],[46.486625559,48.27623929600003],[46.391742583000166,48.21108056000003],[46.32468450800013,48.11368686800006],[46.32468450800013,48.02437601300005],[46.19895160100009,47.89864226900016],[45.86803456700011,47.763849028000095],[45.48250155400018,47.67179242900005],[45.086212547,47.73437674800016],[44.83527747700015,47.661725261000015],[44.699172468000086,47.58178386500009],[44.619808585000044,47.47567316200019],[44.64353959700014,47.20924950700015],[44.58537254200019,46.91506985100017],[44.59326561299997,46.76683405],[44.65816451000006,46.503397035000035],[44.76982855900013,46.27773005000017],[44.959739519000095,45.94487394600014],[45.17390452100017,45.619304230000125],[45.367683562000025,45.45855709600016],[45.71919258600008,45.235496045000104],[45.81602452200008,45.13693173700011],[45.82545852200013,45.01970595900002],[45.75780147600017,44.878298726000025],[45.80065546400016,44.82628566400018],[45.99774954700018,44.766775996000035],[46.21156351600007,44.74300692999998],[46.594314575000055,44.788863987000184],[46.74495648600015,44.68973088300004],[46.67230952500006,44.49782100700003],[46.76745653199998,44.502127964000124],[46.82187251800008,44.52994917700016],[46.83363350100018,44.661581937000165],[46.92068459500001,44.71859279300014],[46.93351360100013,44.80514767800008],[47.01766254400013,44.84039592800008],[47.14575562700003,44.81961769300011],[47.17357650500014,44.90258679900012],[47.31692850700006,45.170126923000055],[47.409820614000125,45.21997795700008],[47.56249647700014,45.48548127800012],[47.58562047200019,45.60345019500011],[47.55477959400014,45.72938544100009],[47.765266617000066,45.67867643500017],[48.06415556200005,45.74424370500009],[48.21443151900007,45.72839771700012],[48.28527050300005,45.83091392500006],[48.40193150800019,45.866176760000144],[48.45860256100019,45.9339640610001],[48.651565540000036,45.9664731040001],[48.780918590000056,46.04279435600017],[48.941093575000195,46.08588857000012],[49.11388349100008,46.291471007000155],[49.23693050100019,46.30174034700019],[49.216899596000076,46.39523159200007],[49.350490537000155,46.44901072100009],[49.61297955800006,46.430356628000084],[49.84297562800009,46.499563991000116],[49.95454060400016,46.61191854200007],[50.39960457500007,46.816219385000124],[50.893012515000066,46.96644723000003],[51.064479599000094,46.976140230000055],[51.34804156300015,47.029423486000155],[51.58860754900007,47.018246218000115],[51.68262450700007,46.882312703000025],[51.962551575000134,46.81083317400004],[52.341884494000055,46.76748213800016],[52.473499485000104,46.851802408000026],[52.60997363300004,46.87426372900018],[52.619461612000066,46.800853345000064],[52.71038061900009,46.742632980999986],[52.928218571000116,46.77736222300007],[53.017749534000075,46.672652639000034],[53.007125472000155,46.47870897800004],[53.057250594000095,46.39935163300004],[52.98574055500012,46.35782030800016],[52.909046476000185,46.20198195300014],[52.976837633000116,46.109406681999985],[52.9037554840001,45.86185873800008],[52.924026613000194,45.75968954100017],[52.83874862800002,45.75020977600013],[52.719478504000165,45.66881546100018],[52.741935467000076,45.519149372000186],[52.713176486000066,45.48931817800019],[52.767208581000034,45.349547931000075],[52.62649956100017,45.36899897600017],[52.56194650100019,45.42573909600014],[52.43484147700019,45.43672911200014],[52.30252056200004,45.41094503700003],[52.054470543000036,45.413448040000105],[51.933776501000125,45.39360690200016],[51.73133862000003,45.44012009500011],[51.56772956900011,45.349750103000076],[51.42601053000004,45.365229969000154],[51.282039608000105,45.25381787900011],[51.23704957500007,45.15820970100009],[51.248104467000076,45.068117820000055],[51.16477946400005,45.06404086300017],[51.07513048400017,45.001337857000124],[50.95244959600018,44.97822878200003],[50.870319518000144,44.89710889000014],[50.86609252400018,44.81038988800003],[51.05779251700011,44.814448908000145],[51.17501058300007,44.75185268800004],[51.267463478000025,44.57025791700005],[51.421054478000144,44.58464008900006],[51.492423534000125,44.526691131000064],[51.581394586000044,44.42216812800007],[51.81177555400012,44.39974905100007],[51.95526853900003,44.366512123],[52.18119452500014,44.382690370000034],[52.33604851000018,44.31657039700019],[52.51916862000019,44.287429537000094],[52.708770623000134,44.19902040700015],[52.96580151600017,44.12911952600007],[53.08129861000015,44.146079636000195],[53.10472854400001,44.25585155500016],[53.32806049800007,44.40158016200013],[53.36333456500017,44.50825111200015],[53.49384347900008,44.576727908000066],[53.5622025940001,44.77529100300018],[53.68657260300017,44.87491880800013],[53.86580250300017,44.926867664000156],[54.04021850900011,44.93636972500008],[54.18273148200012,45.03847790200007],[54.45497150700004,45.12765799900018],[54.66318150200004,45.06587884600009],[54.806980595000084,45.178080846000114],[54.82057956300008,45.26948902099997],[54.909732502000054,45.375389171000165],[54.76897050800005,45.54172820700006],[54.57509960200014,45.64907038000007],[54.50350155300015,45.70949568700007],[54.41915848400009,45.68885038900015],[54.27590958000019,45.7096554470001],[54.17639962499999,45.79792057500009],[53.985649469,45.92080011400009],[53.83200046700006,45.92319901500008],[53.78351551500015,46.01055940100014],[53.50883049000009,46.00064109500016],[53.46936748400003,46.08359947300016],[53.63616149000012,46.25747803100006],[53.62593053900014,46.430723588000035],[53.74932858200009,46.614493295000045],[53.92287857000014,46.68873181100008],[54.028049494000186,46.69868783600009],[54.029571480000186,46.776195127000165],[53.91473052200007,46.98503611200016],[53.94327559600009,47.12187386600016],[54.07588954200003,47.17861733900014],[54.13698959300007,47.2557057030001],[54.056648548,47.430567794000126],[54.076751537000064,47.551067543000045],[54.00944854199997,47.66949930800013],[53.88199248400008,47.75832921000011],[53.686859599000115,47.82852044000015],[53.62474047600017,47.89697896400014],[53.51830656700014,48.12044201200018],[53.52875863200018,48.25859991600004],[53.38755457700006,48.26452508300008],[53.21855562700017,48.369765075000146],[53.168189609000194,48.42848567100003],[53.12979848100019,48.62619146500015],[53.00833850100008,48.791476896],[53.02128954700015,48.857467620000136],[52.874328465000076,48.91006909200013],[52.680988469,48.86998783600012],[52.468418543000155,48.86182755100003],[52.39337150800009,48.88560885400011],[52.23371553100003,49.02829952400003],[52.09153347500012,49.07482378100019]]]]},"properties":{"objectid":110,"eco_name":"Caspian lowland desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Palearctic","eco_biome_":"PA13","nnh":3,"eco_id":815,"shape_leng":74.6646166566,"shape_area":31.3331728805,"nnh_name":"Nature Could Recover","color":"#B85349","color_bio":"#CC6767","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":267901.5134724172,"percentage":1.015463948549239}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[66.14120448900002,31.277779370000133],[66.29222157400011,31.305161372000157],[66.38275953900006,31.357106540000018],[66.4085766390001,31.43905674299998],[66.32170055900013,31.5176959260001],[66.20539058900005,31.48549500100006],[66.06064551400004,31.39265016800016],[66.03004452700009,31.320404701000086],[66.14120448900002,31.277779370000133]]],[[[60.88005853900006,32.6200452760001],[60.984939618,32.62405417300005],[61.20190048800009,32.77190340100009],[61.254226530000096,32.88531407200003],[61.162666475000094,32.90102242900008],[61.03438563800006,32.84939594000019],[60.942733550000185,32.77732330800012],[60.88005853900006,32.6200452760001]]],[[[61.26105157800009,34.011951998000086],[61.33693663600013,34.03712821800019],[61.61741657400012,34.252286476000165],[61.69603362900017,34.38649968900006],[61.60620460500013,34.41624203400005],[61.289924553000105,34.27314500900019],[61.16365051100013,34.03173044000016],[61.26105157800009,34.011951998000086]]],[[[70.11562352600015,35.04042878500013],[70.04158751600016,35.02869093600003],[69.91171260800019,35.06289228600008],[69.91546652700015,34.98866801800017],[69.78327955600008,34.93963941700008],[69.72408253200007,35.055954417000066],[69.70617660700009,35.17219247100013],[69.54818762300005,35.128583608000156],[69.4102095940001,35.19947757700015],[69.43777448900005,35.26722213100004],[69.51509050499999,35.295358168],[69.65459454300003,35.27040289500013],[69.61019157800007,35.39774194200004],[69.80059053300005,35.52804550000013],[69.87590059200005,35.61620049000004],[69.8234935800001,35.66279247300014],[69.61867557300013,35.53295042200011],[69.4032365220001,35.44136974800006],[68.97206857200018,35.33174551800016],[68.91969257300008,35.232245957000146],[68.73943354300002,35.17997423000014],[68.45272048600009,35.04460146400015],[68.23769348900004,34.96849663300014],[68.25910958700013,34.911220071],[68.41601562900007,34.94902698100003],[68.46183060900006,34.89769050600012],[68.27166752200009,34.79461908100018],[68.23436755000012,34.747700372000054],[68.26280248600006,34.647928902],[68.48870064400012,34.810705629000154],[68.60488153300014,34.785605182000154],[68.94977555900016,34.98792387300011],[69.00595057200013,34.954477900000086],[68.85859654600006,34.8098964400001],[68.81482658300007,34.65511973700018],[68.80928061300017,34.481437315000164],[68.70567358400012,34.47730621000005],[68.66050753100006,34.5816805180001],[68.51522048300012,34.56613996700008],[68.49523953400006,34.46596583000019],[68.67150157000015,34.317451582],[68.51068151400017,34.28224255900011],[68.40789758800008,34.32973039900014],[68.21170858300013,34.31935175900014],[68.11108350000006,34.37844317100013],[68.04039757000015,34.369372108000164],[67.82580559300004,34.24603458200016],[67.80612153200002,34.201735720000045],[67.81018055200013,34.02297688300018],[67.92879454000013,34.05103714800015],[68.06888564700012,34.05046784900003],[68.12234458700004,34.15576617800019],[68.22600559500006,34.10117970400006],[68.2719265230001,34.019771811000055],[68.18363155500015,33.93503915100018],[68.08083354700017,33.89515319500009],[67.9237675780002,33.785724431000176],[67.8926006440002,33.616043362000084],[67.94831062800017,33.61550625000001],[68.01653261500007,33.717508480000106],[68.08631849700015,33.71935434200003],[68.01245850700013,33.56111373300007],[68.0079956460001,33.39323779100016],[67.90779854300007,33.40509332300019],[67.79588354000009,33.26433568700003],[67.7219466040001,33.23785842800015],[67.62467947900006,33.284285120000106],[67.58280952600006,33.34734418900007],[67.48774751200011,33.34665821400006],[67.44424459600015,33.393847658000084],[67.43984962900004,33.50240755400006],[67.34143854200016,33.51438127000006],[67.12023156800012,33.459344688000044],[67.14905559200008,33.37105542],[67.21833051300007,33.30411754100015],[67.37762455900008,33.293390715999976],[67.30375652300012,33.13515044300004],[67.16413161800011,33.102806355000155],[67.11799661700019,33.17130544700012],[67.03554551200017,33.155710748000104],[67.00511953799997,33.08204387700016],[66.87757161500008,33.039061310000136],[66.87067448200003,32.97844003400019],[67.00002250300008,32.948499205000076],[66.98740354800003,32.87603329300015],[66.89484353200015,32.796739651000166],[66.61788952500012,32.727914],[66.55241361800012,32.661901819000036],[66.44300061200005,32.69032485200012],[66.47197752200009,32.83407650400005],[66.56816053200004,32.94225820800017],[66.63391857400006,32.97677622600003],[66.6612925290001,33.11898778600005],[66.73783154200015,33.19720267800017],[66.85440856100007,33.27095722300004],[66.94075054500007,33.35699477700007],[66.8502885200001,33.421068895000076],[66.77655761100004,33.40749641400015],[66.6043095010001,33.435972589000016],[66.525184503,33.39338983900012],[66.47716558500008,33.17101140900013],[66.40018451000003,33.21307800200009],[66.37523661300003,33.28444186100006],[66.22170261000014,33.16092563299998],[66.07795749700011,33.11827901300012],[66.04821062600007,33.27238751100009],[66.16191063900015,33.413268193000135],[66.3465725160001,33.44435315100014],[66.50273156300011,33.546561408000116],[66.80812855300013,33.51561726600005],[67.02214854800013,33.541522542999985],[66.97406760500019,33.61132133300009],[66.77638259700012,33.569330513000125],[66.67817653200007,33.594213031000095],[66.65229757300011,33.64402735200014],[66.87268848600007,33.734814930000084],[67.06164558500012,33.77478789100019],[67.26541853600014,33.75273543900005],[67.42545354300012,33.83801895700003],[67.36219062600003,33.88531149900007],[66.98452754900018,33.919970669],[66.9170684840002,34.00135123700005],[66.99762762600005,34.04689397300007],[67.27995258800013,34.130406730000175],[67.3527225950001,34.19547594700015],[67.51979052200016,34.23826472500008],[67.65928651300015,34.3684794350001],[67.81275161700017,34.381220095],[67.94447356100005,34.46315772500009],[67.77899953700012,34.494955816000015],[67.66712158100006,34.45589095000008],[67.57457749100007,34.463966579000044],[67.53067056800012,34.4123052220001],[67.41912855900006,34.44344734500015],[67.28182259100004,34.333915316000116],[67.145370572,34.2903294190001],[67.07994059700019,34.326015540000185],[66.9910275470001,34.20256770800012],[66.87967664600006,34.159240980000106],[66.81036350300013,34.211855695000054],[66.86037463200012,34.286843386000044],[66.68714147999998,34.35249263100002],[66.61901052100018,34.29346525700004],[66.687080627,34.16342572900004],[66.74996149700002,34.104654505999974],[66.77522254200017,34.01612601800008],[66.70201147900013,33.910922907000156],[66.6280215700001,33.855798483000115],[66.42084456000009,33.78881819100019],[66.30570956500009,33.80539172900012],[66.31822156700008,33.90792805300015],[66.48892254500015,34.06697768400011],[66.51608259400018,34.196284969000146],[66.48783859800005,34.22159144300019],[66.25065655399999,34.10675232900013],[66.03074659500004,34.157787893000034],[66.08959962500006,34.04431502900019],[66.061035608,33.92637259900005],[65.99357553700008,33.847341645000085],[65.90898855500018,33.586683232000155],[65.75196851800013,33.418532028000186],[65.62885261000014,33.36868652600015],[65.55197949400008,33.3806840470001],[65.5027995150001,33.51772598500014],[65.53070857000012,33.58263225800016],[65.72433455700013,33.803382083000145],[65.76950061000014,33.94679493800004],[65.68981151000014,34.0545649230001],[65.48810553600015,34.20566063000007],[65.41108657400008,34.23340104200008],[65.25926952100008,34.241773893000186],[65.26850151600019,34.152161289000105],[65.20259058800013,34.04602007600016],[65.339614589,34.02662669900019],[65.45481161000015,34.038700160000076],[65.55364950400008,33.97948586900009],[65.54759961400003,33.89743826900013],[65.42877959800006,33.85647339400009],[65.41860162100005,33.764122086999976],[65.37134562400007,33.725126288000126],[65.19831850000014,33.803675953000095],[65.16655762500005,33.77002395300019],[65.20374259700014,33.59922876200005],[65.13795454799998,33.550387076000106],[64.89669755800014,33.526934847000064],[64.78762049900007,33.46514680900003],[64.70680956500013,33.30500652500018],[64.65473950600011,33.26138659800017],[64.57772054400004,33.28912986000006],[64.5390925430001,33.369591436000064],[64.45358254600006,33.42254494800005],[64.28251662000002,33.339379202000146],[64.36477661700008,33.26902351799998],[64.29649361100019,33.13837328400018],[64.12621357100016,33.09250382200008],[64.04144252300011,33.154097902000046],[63.96858953500009,33.13342242900006],[63.91229248200011,32.94915517300018],[63.80828848599998,32.846173266000164],[63.704357581000124,32.85920779600002],[63.69879149400015,32.918985853000095],[63.61667248000015,32.97359914900011],[63.61053458000015,33.09635966500019],[63.715412641,33.19224377600017],[63.91984558300004,33.31059809300007],[63.99478164100009,33.3872718880001],[64.06805456300003,33.521125182000105],[64.15409848700006,33.55128310200013],[64.25785052300012,33.539668465999966],[64.4183195440001,33.57771426000005],[64.57745349700008,33.65577308000019],[64.74324754200012,33.767227079000065],[64.81949654099998,33.876930769000126],[64.6102295880001,33.82699424000009],[64.53661351200003,33.78335537000004],[64.2275546360001,33.68371449000011],[64.11769856300009,33.67199977400003],[63.690158637000195,33.528555907000055],[63.592033540000045,33.50904048900003],[63.40785261700012,33.37199855100016],[63.26591849800002,33.343797135000045],[63.254104541000174,33.39599158200019],[63.60057050900002,33.58552720000006],[64.27207159500011,33.77408984600004],[64.44754757600009,33.836065136000116],[64.53781849400008,33.84645685200019],[64.700134552,33.913272690000156],[64.77252150600003,33.966856185000154],[64.78458356800007,34.029259621999984],[64.48136855500007,33.99876139700018],[64.18208348200017,33.89262035100012],[64.02217051600007,33.86463619400013],[63.80892953400013,33.78865440900012],[63.5044245470001,33.73944962000007],[63.37500360300004,33.653369151000106],[63.10825758100003,33.530806783000116],[62.96433661500015,33.489578883000036],[62.87862360900016,33.52962493500007],[62.96385549400003,33.59553703600011],[63.094787527,33.64018274],[63.1497575570001,33.70404664],[62.877967641000055,33.637000635000106],[62.8093605900001,33.68393241900014],[63.022777591000136,33.75849615400017],[63.37926060400008,33.80834467300002],[63.54953762600002,33.854215644000135],[63.5712014930001,33.911532942000065],[63.86522658700011,33.97292099500015],[64.36812552300006,34.14580227500011],[64.55879957100012,34.15724189600007],[64.79721861600012,34.18909413400013],[64.79262550100015,34.284749419000036],[64.37009460000019,34.23187486500018],[64.16573357400006,34.229536984000106],[64.030731624,34.27628084700012],[64.00556948600018,34.34107899300017],[63.885864509000044,34.373919290000174],[63.944045478000135,34.46859774799998],[63.860481592000156,34.50202058700006],[63.52608858200017,34.46801772000015],[63.03300049600017,34.541692805000025],[62.69293947500012,34.485019237000074],[62.664600596000014,34.451012180000134],[62.49457151000013,34.451012180000134],[62.364215482000134,34.52469112099999],[62.41812151300019,34.65183889200006],[61.9164696360001,34.70038352300003],[61.71243248700006,34.90441530700008],[61.53673555900019,34.915747808000106],[61.36990752300011,35.027912927000045],[61.45874060900019,34.8703430380001],[61.46669050900016,34.76202772700003],[61.516559480000126,34.69234661900015],[61.662361512000075,34.61625251600009],[62.07374951200006,34.54090272700006],[62.29534155100009,34.44701032400013],[62.593204550000166,34.38977684500014],[62.729415506,34.40613329100006],[63.03649155800019,34.49274802300005],[63.07947563400012,34.44981826200012],[62.847000532000095,34.36966916200004],[62.7667575550002,34.30696196500014],[62.512229498000124,34.31842455300011],[62.417808532000095,34.283402447000185],[62.283233556000084,34.2829144530001],[62.11736256600017,34.21585336000015],[61.95845458900004,34.07765522200003],[61.753967500000044,34.01801798100007],[61.582561603000045,34.02506263600003],[61.46639663899998,33.977116976000104],[61.48342162600011,33.86798225000001],[61.56107761200013,33.805906880000066],[61.775958596000066,33.73734375099997],[61.91844960900005,33.775607641000136],[62.07621362400005,33.87935666000004],[62.12474853100014,33.84969059000019],[62.014320477000126,33.74054463200008],[61.81808855600019,33.628467856999976],[61.78103652100003,33.535735677000105],[61.841854605000094,33.50833138000007],[61.93997953400003,33.52784294200012],[62.15287350400007,33.60667155600004],[62.27450950400015,33.551863297000125],[62.189388595000196,33.455880950000164],[62.06195449699999,33.38282411500006],[61.77933851500006,33.33080451500007],[61.54061151900004,33.40348735000009],[61.44542662599997,33.34550218200013],[61.348415484999975,33.3461122170001],[61.26904657300014,33.276301189000094],[61.306278484000075,33.20720044400014],[61.40599463300009,33.14088735200016],[61.43556950800013,32.99303778900003],[61.497672538000074,32.97950000900005],[61.67691450799998,33.054620972],[61.66586648900005,32.96937249100017],[61.580047535,32.87907408000012],[61.55619062700015,32.79582485000003],[61.63492553200018,32.739551602000176],[61.73665652300008,32.861000685000135],[61.753154623,32.91654102000007],[61.94808148100009,33.08295599600007],[62.01126862600012,33.08005619300019],[62.29231249900016,32.984448014000066],[62.41410859300015,33.00126647100012],[62.490039583000055,33.12813562800005],[62.56839361400006,33.06038068100008],[62.80321162600006,32.99029573300015],[63.02344847900008,33.00946011600013],[63.05910459199998,32.9531449590001],[62.832286604000046,32.856193831000155],[62.65167955700002,32.80676038399997],[62.593883485000106,32.75129716300006],[62.49020755600003,32.71851419900008],[62.40673855300014,32.72577007700005],[62.23730458300014,32.65847311700003],[62.12832257400015,32.63965943300019],[62.0624694820001,32.562166056000024],[62.24184053300013,32.53417100200005],[62.37910056800018,32.54200556700005],[62.50310562900006,32.51170666300004],[62.72156551900002,32.53075302900015],[62.77596256200019,32.49718501600012],[63.06784456999998,32.47392389300012],[63.16743063300004,32.51072246000007],[63.22006663800016,32.40399099300015],[63.676132528000096,32.65105312100019],[63.78721654900011,32.65282321199999],[63.60069254900003,32.50559994400004],[63.509624512000016,32.45791328500019],[63.55914362300018,32.39107448000016],[63.65396457300005,32.364537207000126],[63.79318262000015,32.371071068000106],[63.90965251800003,32.314481822000175],[64.00162563300006,32.36938496500011],[64.08558648700006,32.34354489800006],[64.28180650500019,32.52866694100004],[64.44167353800009,32.45495346700005],[64.48017162000008,32.47760455499997],[64.50160951100008,32.59506703700009],[64.58782962200019,32.62380221300015],[64.67686454500017,32.55676827800016],[65.08124560800013,32.611282332000144],[65.138099555,32.64519853000007],[65.39961962800004,32.89774678100014],[65.51191751700009,33.04998594800003],[65.57931556200003,33.100369400000034],[65.6319195480001,32.97931326000014],[65.50079355800011,32.84871717400017],[65.49121052800018,32.78075318200018],[65.53985557400006,32.721017202000155],[65.6443405230001,32.71804514700017],[65.78472851700008,32.77335632000012],[65.8154605970002,32.74248945900018],[65.7773286370001,32.64395029700012],[65.67338549400012,32.569615891000126],[65.52911349400011,32.53123398300016],[65.35202064400005,32.54075884200017],[65.25047254600008,32.505260812000074],[65.18770550200009,32.37355093800011],[65.06885547900004,32.31826172500001],[64.97287749100013,32.222981614000105],[64.92166154800009,32.084886239000184],[64.90657848100011,31.944939804000057],[64.94803654700002,31.856071682000106],[65.0902256440001,31.83845728000017],[65.17411055800017,31.85701179600011],[65.22105458000016,31.752761037000084],[65.28727748200009,31.754367177000063],[65.44428259900019,31.83514827200014],[65.48228463900017,31.87638421800017],[65.66917459300015,31.947723770000152],[65.84441353500017,31.982470446000093],[65.94851660400002,31.968016189000082],[65.74813061300011,31.831312545000117],[65.80371855600004,31.77347841900007],[66.00907853700011,31.82601283600013],[66.32743059600006,31.93773690000006],[66.60107458900012,31.96050818400016],[66.52582555100014,31.90100119700014],[66.43499757100005,31.880547845000137],[66.03746049900013,31.69759084700013],[66.11141151700019,31.651022669000156],[66.36381560000018,31.729650956000114],[66.59961664100013,31.782808316000114],[66.6510315700001,31.68601929400006],[66.89914663400003,31.916179818000046],[66.93994856500012,31.934689240000125],[67.07854450700017,31.90251027500011],[67.04155751600007,31.83842542800005],[66.7560345220001,31.678787555999975],[66.8105465640001,31.61515063800016],[66.99384353200014,31.671924789000172],[66.95965559299998,31.585112746999982],[66.77649659100018,31.512592186000063],[66.62623555400012,31.420808334000128],[66.48286460900016,31.238078486000063],[66.43051157700012,31.13421631200015],[66.40816458500012,31.025794047000147],[66.42881759400018,30.952438648000054],[66.5662385620002,30.97583170200005],[66.58569362900005,31.107853047000106],[66.64218849499997,31.218487296000035],[66.73870057800008,31.336185142000033],[66.9129025100001,31.40915883000008],[67.06591063200011,31.45152817700017],[67.26364861300016,31.442112617000078],[67.61471557600015,31.46716679700006],[67.58110062300017,31.531697728000097],[67.73803751100019,31.52892080300012],[67.8819276320001,31.63613590600005],[67.98054457800004,31.63391604300017],[68.07165553099998,31.693359159000124],[68.25281561600008,31.958868516000166],[68.54885052200012,32.208021426000016],[68.503707603,32.26940931100006],[68.31352959600002,32.20932129100004],[68.25674454900019,32.29142270400007],[68.41371949100017,32.35788046700003],[68.52864058,32.488815183000156],[68.59506951000014,32.66373678499997],[68.66863261300017,32.76610178300001],[68.7209856450001,32.93864242200016],[68.84913656200018,33.093388783000194],[68.90694453700013,33.236221275000105],[69.114715488,33.57537235600006],[69.16034656900018,33.68587316500009],[69.04352563800012,33.74530454700016],[68.85279056900009,33.705217760000096],[68.64684251400018,33.62829183700018],[68.63439957900016,33.71481855899998],[68.87968457600016,33.79296807200012],[69.04533361400019,33.92016579900019],[69.1355745250001,34.076648388000024],[69.17337053800014,34.26539392800004],[69.30969263800017,34.41209517100003],[69.43666858100005,34.43888138699998],[69.45306358300013,34.530629867000016],[69.35873448300009,34.698998329000176],[69.38152353700008,34.863820241000155],[69.34864853900012,34.97045364000013],[69.11007660800004,35.11476369400009],[69.00904064400004,35.14804605200004],[69.18712658200002,35.26175930900013],[69.34497056000015,35.32111458300011],[69.41807550800002,35.295972394000046],[69.35865753700011,35.15159696100011],[69.40119955100005,35.068531127000085],[69.59107949800006,35.042678488000035],[69.65875263700019,34.97419934499999],[69.68053452200002,34.84103588100004],[69.79778259500006,34.73436744600019],[69.90972157099998,34.8020806510001],[69.96121964900004,34.90868303700006],[70.1417235990001,34.82777219000013],[70.20010355400012,34.90762322900014],[70.11562352600015,35.04042878500013]],[[68.0957794860002,34.29863420900011],[68.05901360900009,34.174408704000086],[67.9576495770001,34.13748675600016],[67.91323052000001,34.177456532000065],[68.001914576,34.27367876900013],[68.0957794860002,34.29863420900011]],[[66.33546448300018,32.761840927000094],[66.37558748000004,32.71298717200011],[66.38881663800004,32.576379416000066],[66.28544648100006,32.43906573700019],[66.20660361800014,32.5254090630001],[66.25408156700013,32.664678911000124],[66.33546448300018,32.761840927000094]],[[63.202358526000125,34.15160406000007],[63.15850457600004,34.04122512400005],[63.042545640000185,34.00618122500015],[62.956371628000056,34.07913932200006],[62.870628614000054,34.10486053300008],[62.66987951800019,34.044044294000116],[62.41935348500016,34.00239646099999],[62.41269657700019,34.06248783300015],[62.49057049300012,34.10068768600007],[62.81901151300002,34.188747123000155],[62.96978351100017,34.1889003440001],[63.12725063900018,34.23676889100011],[63.22206857100019,34.210227426000074],[63.202358526000125,34.15160406000007]]]]},"properties":{"objectid":117,"eco_name":"Central Afghan Mountains xeric woodlands","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Palearctic","eco_biome_":"PA13","nnh":4,"eco_id":816,"shape_leng":86.8813927097,"shape_area":13.4786406879,"nnh_name":"Nature Imperiled","color":"#A93800","color_bio":"#CC6767","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":139709.08445941692,"percentage":0.5295585557338232}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[32.99270255400006,37.99204373900005],[32.730854581000074,37.98292288700003],[32.71352348800008,37.9036284070001],[32.553966584000136,37.78318548699997],[32.54774453000016,37.62976849600017],[32.699733581000146,37.488184908],[32.81395360800008,37.472556514000075],[32.897079456000085,37.418789455000024],[32.99623854400005,37.456431744000156],[33.08082954900004,37.444640753000044],[33.06662356400017,37.55524181000004],[33.167358450000165,37.64707913800015],[33.40698247800009,37.63119945400007],[33.406127524000055,37.51802247100011],[33.20318957800009,37.36402243500004],[33.20364354200018,37.297491916000126],[33.303661607000095,37.219944392],[33.46619760600004,37.338761893000026],[33.39773556200009,37.387811114000044],[33.563896567000086,37.46969543500006],[33.705581575999986,37.443126981000034],[33.825973534000184,37.48894799600009],[33.930328564000035,37.497740780000186],[34.08980550400008,37.57973239000012],[34.31373257300004,37.627567240000076],[34.39632449400017,37.7025631460001],[34.37230648600013,37.76055703100019],[34.2272035040001,37.75838192700013],[34.12657557200009,37.71916082300004],[34.047172462000105,37.73706624400012],[33.96090658500009,37.67740939000004],[33.79304556200009,37.641754282000136],[33.624320534000105,37.68448522500012],[33.73945955199997,37.83689135800017],[33.59270047400008,37.861293090000174],[33.52026356400006,37.744859235000035],[33.47566245100006,37.83287458300009],[33.34281146500018,37.85191307000014],[33.27128248300011,37.77141679200014],[33.14400848000014,37.74708714500014],[33.038013614000135,37.801259218000155],[32.984237502999974,37.902503388000014],[32.99270255400006,37.99204373900005]]],[[[33.98220852100013,39.666959219000034],[33.8745235290001,39.73763324700019],[33.814331573000175,39.622464892000096],[33.743595519000166,39.605729919000055],[33.71669346500005,39.512817361000145],[33.779819590000045,39.45198519500019],[33.906627559000185,39.5844480990001],[34.04449461100012,39.58792726000007],[33.98220852100013,39.666959219000034]]],[[[31.03638847999997,39.49428145200011],[31.018743568000048,39.350847643000066],[31.181426585000054,39.24884709000008],[31.338905447000172,39.08662641800004],[31.584432514000127,39.070623856000054],[31.708286533000148,38.9577595180001],[31.819744555000057,38.897881381000104],[31.915946508000104,38.894440609000185],[31.854343543000027,39.00551574600013],[31.977756506000162,39.00149075600018],[32.102539575000094,39.03956823400017],[32.009258548,39.12008412500012],[32.016143611000075,39.19646086500018],[32.172687555000095,39.19994371400014],[32.28170057600016,39.094446398000116],[32.42609059300008,39.04466929200004],[32.43298755800009,39.11038408400003],[32.33643758900007,39.165860213000144],[32.44333652700004,39.23471419499998],[32.43590546600012,39.27966265400016],[32.30854747700005,39.30295411900005],[32.245239465000054,39.3690504540001],[32.11000047500016,39.393178098000135],[32.117504457,39.480090890000156],[32.33630750200001,39.56592845200015],[32.21379861100013,39.63093363200005],[32.338699529000166,39.73234627800019],[32.40054657600018,39.69363864899998],[32.43866747100009,39.533855100000096],[32.50659961100007,39.642797377000136],[32.46928455200003,39.728230429000064],[32.55248650800007,39.79111431600006],[32.43169758300019,39.84705580800005],[32.28897858300007,39.84215759200009],[32.11098048700006,39.89031028500017],[31.87210244900018,39.82485499700016],[31.85962447700018,39.732464128000174],[31.615077590000112,39.746018168000035],[31.508583498,39.78088772399997],[31.37983746599997,39.76694861900012],[31.202453595000065,39.813308255000095],[31.100975570000116,39.768493739000064],[31.215332557000067,39.63898662900016],[31.467300446000024,39.71639652200014],[31.70349845400017,39.62843867400005],[31.672315595000157,39.55664750600016],[31.841863559000046,39.54373082500018],[31.878978459000166,39.42668643200011],[32.016639484000166,39.32370201100008],[31.984809542000164,39.267275710000035],[31.860864496000033,39.23502717500014],[31.761007529999972,39.24195012400014],[31.493312509000134,39.30361411000001],[31.485448607000137,39.37740134500012],[31.364688517000047,39.43516925400013],[31.03638847999997,39.49428145200011]]],[[[33.508800473000065,39.94028956200003],[33.41366151400007,39.905705829],[33.4457814700001,39.82830683200001],[33.38199652700018,39.68004705800013],[33.379333597000084,39.556235787000105],[33.25507758200001,39.495414518000075],[33.21566754899999,39.346601538000186],[33.37418358800005,39.40554878100011],[33.33305761200006,39.217693399000154],[33.16964352500014,39.16844217500005],[33.11524145300018,39.18526499000012],[33.03959645300006,39.11118522600003],[33.16779749400007,39.07786347299998],[33.186176494000165,39.02377639300016],[33.05611751900011,38.9483727920001],[32.99906559200019,38.98669401500007],[32.859992552000165,39.00619082500015],[32.79561651800003,38.894028555000034],[32.94088747300003,38.80110795000007],[32.967853564000166,38.68230084200013],[32.88634458500013,38.663430161000065],[32.866428512000084,38.57539972600006],[32.80551554600004,38.54451308300008],[32.801815606000105,38.44212394500016],[32.71456954900003,38.37849993500009],[32.73582857000014,38.19703793400009],[32.78921157000019,38.19573706200009],[32.91913257900018,38.31386892400013],[33.03268456800009,38.36605716700018],[33.07476054800014,38.289050276000125],[33.00675950900006,38.17457342700004],[33.23001451800019,38.061447574000056],[33.29358253600003,38.08869093900006],[33.42655958600005,38.08477306900011],[33.55394356,38.172185591000186],[33.60394647400011,38.10748551200004],[33.85139450500003,38.08633394700007],[33.89040757000009,38.13798021700012],[34.00646960500006,38.17511540100014],[34.04830955100016,38.25347211400015],[34.12387861000008,38.29650027900004],[34.27408952400009,38.26775370399997],[34.26909256900012,38.4195990880001],[34.12085358200005,38.44202084700015],[34.00113653500006,38.48722093100008],[33.829788473000065,38.654851283000085],[33.711235505,38.72377818700011],[33.508144506000065,38.925954051000076],[33.58868453700006,39.03525423600013],[33.45419354800015,39.15475150900005],[33.62680057100005,39.175263032000146],[33.878227492000065,39.01362574100017],[33.98628648500005,38.96419531100014],[34.02081255000007,39.02556157100008],[34.14419550600013,39.006945699000084],[34.22777146200002,38.89143452400003],[34.28453454900006,38.90112450700008],[34.418823534000126,38.789565063000055],[34.777534457,38.72782128200009],[34.778320512000164,38.77604924400009],[34.62541146400014,38.796968966000065],[34.52646259400012,38.86368288000017],[34.414005449,38.87797687500006],[34.30493945400019,38.98250507500006],[34.29126756400018,39.036032412],[34.14377557200004,39.06751081700014],[34.01530848900006,39.14438376500004],[33.85961547599999,39.14348371699998],[33.73620653600011,39.21026971500004],[33.52661553799999,39.4378823080001],[33.48737347900004,39.549608719000105],[33.52990761400008,39.643338513000174],[33.551639542000146,39.779491634000124],[33.64198355000019,39.86005245200016],[33.76362659100005,39.88746814900003],[33.77989553000009,39.939565533000064],[33.508800473000065,39.94028956200003]]],[[[34.02966350400004,40.25351457800008],[33.97307945500012,40.11813628000016],[34.0010074540001,39.97304603900005],[34.0728914930001,40.0076064700001],[34.11616860100008,40.12855414800009],[34.235740473000135,40.149286785000186],[34.502983542000095,40.14433190699998],[34.46448546099998,40.19273924200019],[34.21827359200006,40.17318543500011],[34.188632501000086,40.22622477800019],[34.02966350400004,40.25351457800008]]]]},"properties":{"objectid":123,"eco_name":"Central Anatolian steppe","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Palearctic","eco_biome_":"PA08","nnh":4,"eco_id":725,"shape_leng":30.5029031721,"shape_area":2.5835261459,"nnh_name":"Nature Imperiled","color":"#737400","color_bio":"#FEFF73","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":24970.854216769236,"percentage":0.23567864568807056}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-98.04112529299994,42.02538264900011],[-98.1348942439999,41.979600557000026],[-98.1704771879999,41.90687707800015],[-98.0894753529999,41.77937409600014],[-98.14330184099992,41.75093018400014],[-98.28426363099987,41.78565319000006],[-98.4403192019999,41.77018006500015],[-98.42418699599995,41.642864455000165],[-98.51312160699996,41.638579113000105],[-98.53323904499996,41.536198132000095],[-98.66801415899994,41.55781192600017],[-98.71324928599995,41.63411809400009],[-98.86179820299998,41.75917469600017],[-99.14318431799995,41.80551039800014],[-99.29546229199997,41.76498030300013],[-99.48190665299995,41.805151956000145],[-99.80983543299993,41.59366191200007],[-100.06485339299991,41.50415211600017],[-100.32121186699999,41.48508599400003],[-100.49527387899997,41.408288196000115],[-100.2898006499999,41.36268052100013],[-100.20047219399993,41.253848539000046],[-100.24313452699994,41.07685176500007],[-100.16454417399996,40.948892625000155],[-100.35398008999994,41.01174440600016],[-100.47387234799999,41.0870087510001],[-100.63969464699994,41.1183922190001],[-100.83402407099993,41.22817174600016],[-101.07418238599996,41.21766000900004],[-101.14677626699995,41.13755763400019],[-100.99208466599998,41.13596263599999],[-100.81787848499988,41.091338791000055],[-100.67473365299998,40.96323319200019],[-100.70138860599997,40.81589081300007],[-100.80129701499999,40.72667586800014],[-100.76706836699992,40.60718359500004],[-100.79796242599997,40.48629632400019],[-101.04017556399998,40.72693371800011],[-101.14276935699996,40.70710304600016],[-101.20103124499997,40.66713718600005],[-101.10909503599993,40.470945835000066],[-101.11260486499998,40.37677602400015],[-101.04977568699991,40.25498163600014],[-101.13739009999995,40.133729684],[-101.26070422499987,40.09392061200009],[-101.29100856199994,40.04709282200014],[-101.16676972399995,39.939296406000096],[-101.2121814649999,39.87265590000004],[-101.31641457199999,39.830692456000065],[-101.35919728599998,39.66978614400006],[-101.29604356599998,39.619475074000036],[-101.1215178199999,39.69593319700016],[-101.04287295599994,39.67959519700014],[-101.03556706299997,39.53239102800006],[-100.95477056699997,39.50187484600008],[-100.70166236899996,39.62568778100007],[-100.6166848439999,39.59093414900008],[-100.56677270499983,39.49706712400018],[-100.43250058399997,39.477193125999975],[-100.42002351999997,39.39090088200004],[-100.56813976099994,39.34487088200018],[-100.60648069099989,39.294970813000134],[-100.53122025299996,39.208988971999986],[-100.34292907799994,39.14020857500009],[-100.37269096099999,39.06205787100015],[-100.60598025099989,39.045236821000174],[-100.67942305699995,39.061264631000086],[-100.8286176229999,38.991895397],[-100.96518759899999,38.95276296800006],[-101.2887519279999,38.92833502500008],[-101.26959984099994,38.855131460000166],[-101.04123768499994,38.68952845500013],[-100.9611372739999,38.662037855000165],[-100.784372309,38.66638792700019],[-100.55262950999997,38.61603227000012],[-100.42657691699992,38.63110961400008],[-100.39204282799994,38.36717141000008],[-100.51708116299989,38.25814795300005],[-100.61816028099997,38.20154549000017],[-100.64187203699998,38.13462275200004],[-100.59707524099991,38.034160713000176],[-100.48906904499995,38.06820303300009],[-100.19021089699999,38.05974956700015],[-100.03892473299999,37.98372868300004],[-99.98914072899993,37.850454890000094],[-100.00013007799998,37.73494300900006],[-100.1205663739999,37.73194385400012],[-100.22610263299998,37.641444949000174],[-100.38865775499988,37.543062293000105],[-100.32494586899998,37.35542466200019],[-100.26520404199988,37.340553685000145],[-100.24209665899997,37.25208183300015],[-100.06460797699998,37.36328543299999],[-99.97829173999997,37.3320073160001],[-99.84525510299994,37.35796408900006],[-99.95687639899995,37.43494762900008],[-99.83523788199994,37.4959520970001],[-99.74237682399996,37.43429691500006],[-99.4957162529999,37.50533758800009],[-99.35958000799991,37.50532416700014],[-99.20265109899992,37.57889092700003],[-98.73974452399995,37.53437197800008],[-98.60611920099996,37.48439956500005],[-98.52065960399989,37.382532390999984],[-98.37285796699996,37.37922950400019],[-98.29471612899988,37.35229970600011],[-98.39246440499994,37.20330977200018],[-98.39019193899998,37.08309692000006],[-98.4677107149999,37.00346533300012],[-98.62725399199996,37.05311726800005],[-98.78927494399989,37.00221095300003],[-99.02934475899997,36.99960637600009],[-99.04274407799983,36.89586596200013],[-99.22794060599995,36.941749469],[-99.28787280399996,36.991406809000125],[-99.4607519349999,36.99451250200019],[-99.53758690399997,36.95888045200019],[-99.75693372699993,36.95936141200019],[-99.86836013599992,36.92063577800019],[-99.97225400499991,36.92453152200011],[-99.98259856399989,36.846805332000145],[-100.08600690899993,36.80769221600008],[-99.87862206299991,36.70204193100011],[-99.82129787599996,36.56628477800018],[-99.77183689299989,36.534823077],[-99.65210864599999,36.56561592500003],[-99.5956203799999,36.53929356599997],[-99.57085161799995,36.43418614300015],[-99.59337756799988,36.334572660000106],[-99.6639906669999,36.212219584000024],[-99.78579198499989,36.15090471400009],[-99.80347266899997,36.083960360000106],[-99.95147313599995,35.91838487100006],[-99.99147486599998,35.70709749600019],[-100.09388565899991,35.642421568000145],[-100.18080995999992,35.665858031000084],[-100.3714257769999,35.57237836500019],[-100.38109762699992,35.47081504400012],[-100.32378151299997,35.411909586000036],[-100.39504135299995,35.37098922600018],[-100.55101723799999,35.35589466000005],[-100.54754544199994,35.30496737599998],[-100.63417225199998,35.21865756000017],[-100.54777833399993,35.16681098200007],[-100.40047300599997,35.20116034500012],[-100.325269516,35.172847294],[-100.05027694899991,35.21299605100006],[-99.920051818,35.12751478000018],[-99.76230581999988,35.16374592600016],[-99.66129568799994,35.14891268300005],[-99.65740975199986,35.04390235200003],[-99.81023262899993,35.006212404000166],[-99.75593815299999,34.89120088200019],[-99.79222596399995,34.80956363700017],[-100.04299464599995,34.862058504000174],[-100.08194838699995,34.91450083200016],[-100.29026122299996,34.97001614200019],[-100.36734979,35.027085062000026],[-100.55157927699992,34.980867934000116],[-100.90138212999994,34.989592600000094],[-101.00682491299995,35.02060856700018],[-100.9857827219999,34.91801126600018],[-100.81831312199995,34.818377512000154],[-100.62487207599997,34.83625465200015],[-100.51904888699988,34.91236682000016],[-100.3784977499999,34.88504220500016],[-100.30110886699998,34.77294207900019],[-100.19330864899996,34.71670290100013],[-100.14997287599994,34.65785732600011],[-100.03313957199987,34.64187346000011],[-100.0003902599999,34.57785484500016],[-100.11659055599995,34.55137994600017],[-100.10872162399988,34.48638159899997],[-100.18520627599997,34.4346765790001],[-100.05410910799992,34.25391432700013],[-99.9488912939999,34.26052102200009],[-99.65834368299994,34.13396478700014],[-99.758205079,34.01765084300007],[-99.78824910599991,33.93720042000018],[-99.76684814699996,33.86181193800019],[-99.6283831099999,33.88103981000006],[-99.53871735299998,33.920061718],[-99.36726675699998,33.950922899000034],[-99.26851021099998,33.862908195000045],[-99.165673874,33.81361400600019],[-99.14532345399994,33.69715446000015],[-99.22686064599992,33.63167715300017],[-99.32831155399992,33.67758735400014],[-99.47366747799998,33.63871684900016],[-99.5156182579999,33.68359036900006],[-99.62308321999996,33.61994818700009],[-99.66571943599996,33.54080411000018],[-99.79895496899991,33.510567387000094],[-99.98959017999994,33.416230603000145],[-100.01713693999989,33.323606199000096],[-99.94497772299991,33.24321482200014],[-100.02485230399992,33.16528360600006],[-100.05307109799992,33.09188346299999],[-99.98921500499995,33.060450544000105],[-99.98265656099989,32.978210322],[-100.07086096899997,32.98705982400003],[-100.34540611199998,32.942515637999975],[-100.37698966199991,32.966727602000105],[-100.5289226729999,32.879710434],[-100.58867202399989,32.9103250070001],[-100.65799152599999,32.802341359000025],[-100.63467544599996,32.74556607700015],[-100.67538496099996,32.627288078],[-100.56459389999992,32.50182359700017],[-100.50124631599994,32.53617550900009],[-100.47201915099993,32.41928181100019],[-100.51032789599998,32.36114257800017],[-100.42221247499998,32.32921076500003],[-100.28244596699989,32.38414626300005],[-100.26515081199983,32.45877681300004],[-100.18987876399996,32.4482105730001],[-100.13752104999998,32.33336320500007],[-99.86308686999996,32.32103274200006],[-99.84274600799989,32.26054573600004],[-99.8984015229999,32.158897816000035],[-99.96146315099998,32.168379697000034],[-100.0483260879999,32.119119722000164],[-100.12404636699989,32.20218085700003],[-100.18094465499996,32.15765674800019],[-100.15468596499989,32.074901628000134],[-100.21311850799992,32.006085540000186],[-100.15404008599995,31.895505446000072],[-100.15791359299999,31.831489891000047],[-100.08181216599996,31.783776383000145],[-100.07982198199994,31.723284215999968],[-100.18220077399991,31.694174469000075],[-100.30364969299995,31.708839055],[-100.38840657999998,31.585737528000095],[-100.70170749399989,31.624224956999967],[-100.5652890429999,31.508318575000033],[-100.52947252599995,31.407459084000152],[-100.62062617399994,31.36357770700016],[-100.490441493,31.242283718000067],[-100.42408091599992,31.313298182000153],[-100.363549418,31.270717892000107],[-100.23078723599997,31.30171417100013],[-100.02204301499995,31.242160753000064],[-99.878863573,31.315901259000157],[-99.71450969599994,31.276503550000086],[-99.81488498699991,31.220283080000115],[-99.61405160899994,31.180195174000062],[-99.54784599699997,31.114715374000127],[-99.4451502529999,31.153204668000058],[-99.27808843099996,31.13928400300017],[-99.11647190799988,31.253506577000053],[-99.18695076799992,31.312590132000025],[-99.18010027499997,31.452679269000043],[-99.09712090799991,31.539054369000098],[-98.98905803599996,31.549881839000136],[-98.99330866499992,31.622215164000067],[-98.92238939299989,31.659705574000157],[-99.04513288199996,31.774968180000144],[-99.17095663199996,31.816977917000145],[-99.24778921299998,32.006410073000154],[-99.31320554599989,32.060018194000065],[-99.31608572699997,32.14327863300008],[-99.37246153099994,32.188672293000025],[-99.39909175399993,32.34501068200018],[-99.33550069399996,32.38821406800008],[-99.19808661699983,32.322031939000055],[-99.08662857599995,32.4000047400001],[-99.14731891499991,32.50342948200006],[-99.07509811399984,32.61540704900011],[-99.01643706899983,32.86414050900004],[-98.85625693099996,32.99376781500018],[-98.87023405099995,33.076743747000194],[-98.81848031099997,33.16240947400013],[-98.64643647799994,33.140101875000084],[-98.47535713699995,33.19302133000002],[-98.44594925499996,33.24326891900006],[-98.56371100999996,33.287291653000125],[-98.62021451499999,33.36961842900007],[-98.51745537199997,33.38128266100006],[-98.44892976099993,33.437187512000094],[-98.0694115309999,33.517565107000166],[-97.97614107099997,33.561547295000025],[-97.88830989699994,33.56023679400005],[-97.83530655699997,33.696114752000085],[-97.70410298899992,33.78777064000013],[-97.69244946499998,33.88447691300013],[-97.57965833699996,33.94165250900005],[-97.51224166599991,34.07602575700008],[-97.51943429399995,34.23090381000003],[-97.6037490519999,34.24594975600007],[-97.74199408699997,34.37544378700011],[-97.845603198,34.40761243700007],[-97.95597312699988,34.38942606300009],[-98.04250544999991,34.44580098300003],[-97.98178387399992,34.537433243],[-98.10433033799995,34.660610311000084],[-98.090376301,34.76476825300017],[-98.13548867499998,34.83744311000004],[-98.10849851099994,34.90425536000009],[-98.25279841199995,34.969722144],[-98.23793354999998,35.01026899400006],[-98.28705061099998,35.13592635100008],[-98.39510928699997,35.21871140000019],[-98.41065764399997,35.329378560000066],[-98.46471752199994,35.427281564000054],[-98.34386369699996,35.456518272000096],[-98.3010451699999,35.523596581],[-98.12071527099994,35.41888220400017],[-98.12344775399998,35.353266508],[-98.0632369949999,35.281303120000075],[-98.11808617499997,35.24141377500018],[-98.14969511599992,35.076082807000034],[-98.03134436799996,34.99557130000005],[-98.05936523899999,34.91423016700003],[-97.89217030899988,34.83966883599999],[-97.85710848399998,34.74295415900019],[-97.77319212499998,34.735877175000155],[-97.79240660499994,34.84512209900009],[-97.71965907199996,35.1667120140001],[-97.61568468899998,35.14668486500011],[-97.50428074399997,35.021469723000166],[-97.67702073599997,34.93048838100003],[-97.719308072,34.87539971500007],[-97.61272525499999,34.78215725000018],[-97.53676111699997,34.759350438000126],[-97.44851976099994,34.61182260800007],[-97.33446883599999,34.55663818700009],[-97.1611357349999,34.60495907400008],[-97.16606579599988,34.767628709],[-97.03784607499995,34.89073881600012],[-97.05647449399993,34.92993791400005],[-97.22977797499993,34.95324704100011],[-97.25976915799993,35.067368277000185],[-97.36853120999984,35.19039726500006],[-97.39315591199988,35.314489810000055],[-97.37812733099997,35.41472797300008],[-97.40245217699999,35.49557334100007],[-97.51168690099996,35.520646747],[-97.47659790499995,35.63255794400004],[-97.48641109999994,35.763334590000056],[-97.3832467709999,35.86351537100012],[-97.21806292199989,35.92803352599998],[-97.27717514399995,35.99359305800016],[-97.182911489,36.140652727000145],[-97.11435649999999,36.066230364000035],[-97.17563864799996,35.97029058900006],[-97.07844810499995,35.86129420300006],[-96.81833525499991,35.871352822000176],[-96.81498430999994,35.69470241100015],[-96.62179398499995,35.74636338800008],[-96.66358580999997,35.93224669700015],[-96.55020274599997,36.23954695300006],[-96.58104081099998,36.29001997600011],[-96.54589433599995,36.44262701800017],[-96.64015471599998,36.46439720100011],[-96.73688888199996,36.57312164400008],[-96.83459223999995,36.55948755999998],[-96.91712584199996,36.63777315300018],[-96.89103572599998,36.75093803900012],[-96.96018692599995,36.89551763100019],[-96.92083825399993,36.99261071100011],[-96.95351912099989,37.1064225290001],[-96.92074477799991,37.13376558300013],[-97.02507221299999,37.27261632300008],[-97.02930086399994,37.51867954700009],[-96.99296683699993,37.66732281100013],[-97.04988297199998,37.892186551000066],[-97.04062323099998,38.026042748],[-97.16260803799997,38.11992515800006],[-97.32431312699998,38.275153689000035],[-97.36771768899996,38.3755619100001],[-97.27601760199991,38.484473037999976],[-97.10326908999991,38.583893556000135],[-97.0748450239999,38.628930509000156],[-97.05796965199994,38.8211904960001],[-97.02000017299997,38.925134525000146],[-96.93482488199999,39.03242649200007],[-96.95889157099998,39.15096073800004],[-97.05110348699998,39.28793063799998],[-96.95807014799993,39.40124693700011],[-96.92816471299994,39.482427060000134],[-96.85459684699987,39.536270635000164],[-96.85474985899998,39.6566797640001],[-96.82050263399992,39.717480442000124],[-96.687820693,39.68589870500017],[-96.67378724499991,39.88383785100007],[-96.5948434149999,40.00010694100018],[-96.60777556199992,40.079021373000046],[-96.75271198599995,40.2441200400001],[-96.91843306499999,40.39429264200015],[-97.014733875,40.732372748000046],[-97.00086148599996,40.96426138900006],[-97.0333927659999,41.0255953140001],[-97.01766413599995,41.195057339000186],[-97.09880590799992,41.294168155000136],[-97.07426811699997,41.34011212400003],[-96.88899808999997,41.42176556600003],[-96.91858234499995,41.483493385000145],[-97.26591516499997,41.532765226000095],[-97.588321222,41.640565505000154],[-97.89449017699997,41.7596825280001],[-97.99598454399995,41.85123941600011],[-98.04273624799998,41.93228267000006],[-98.04112529299994,42.02538264900011]]]},"properties":{"objectid":126,"eco_name":"Central-Southern US mixed grasslands","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Nearctic","eco_biome_":"NE08","nnh":4,"eco_id":389,"shape_leng":64.9324816266,"shape_area":28.0459889635,"nnh_name":"Nature Imperiled","color":"#FD9943","color_bio":"#FEFF73","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":275448.51484460273,"percentage":2.599724157284575}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-65.16043062099988,-22.980186481999908],[-65.14993262299993,-22.588632077999932],[-65.16686255799988,-22.559989605999874],[-65.16817449399997,-22.340888164999967],[-65.13977057099993,-22.311076752999895],[-65.15668458099992,-22.203269384999942],[-65.20180553899996,-22.124320909999938],[-65.28075451799992,-22.124320909999938],[-65.38366651899997,-22.225105415999963],[-65.38883949499996,-22.794460438999977],[-65.30917352799997,-22.9725249199999],[-65.23268849399994,-23.00689223199987],[-65.16043062099988,-22.980186481999908]]],[[[-67.40080253299993,-16.70996852199994],[-67.48638159699988,-16.708533539999962],[-67.47213755799993,-16.833859923999967],[-67.52178960599997,-16.97646191399997],[-67.62292464399997,-17.020194325999967],[-67.61663855199998,-17.134855073999972],[-67.74430851599988,-17.113439478999965],[-67.9011615849999,-16.99959244599995],[-68.02536764399991,-16.878334972999937],[-68.05854757499998,-16.924789156999964],[-68.21562159099994,-16.915968712999927],[-68.20520757899993,-17.070336211999972],[-68.14996362899996,-17.125654760999907],[-68.20493349099996,-17.206792757999892],[-68.18229648499988,-17.28370895699993],[-68.25555448599982,-17.293086629999834],[-68.33062750499994,-17.223365623999882],[-68.33423658499993,-17.143582813999956],[-68.42093664499998,-17.12228909199996],[-68.43490558899998,-17.05430531899998],[-68.52984656799993,-16.96223782399983],[-68.47577658699993,-16.84414032899997],[-68.55969955499995,-16.724720671999933],[-68.77396363099996,-16.70618794899997],[-68.92172954399985,-16.831157933999975],[-69.00817160799994,-16.88054008399996],[-69.19435848799992,-16.947877779999942],[-69.33672360499997,-17.05174246899992],[-69.53180653399988,-17.17840543099993],[-69.57810950899994,-17.266059015999815],[-69.43389148799997,-17.36926170199996],[-69.48010259699998,-17.4512328589999],[-69.57169349699996,-17.49566918399995],[-69.60169953699994,-17.651829571999883],[-69.61032049199997,-17.88917103999995],[-69.63632953799998,-18.005101980999882],[-69.7502895579999,-18.167543096999964],[-69.71045657499997,-18.312588410999922],[-69.62741856899999,-18.39400250699987],[-69.55802948599995,-18.455489969999974],[-69.50992557599994,-18.582643272999917],[-69.47132858799995,-18.76688454599997],[-69.41379553999991,-19.1490029389999],[-69.38990057799998,-19.243249393999974],[-69.27910656999995,-19.40883774699995],[-69.20417755299997,-19.59488079399995],[-69.19622061199988,-19.660234156999877],[-69.11131260299999,-19.916511182999955],[-69.0475925369999,-20.050113522999936],[-68.99058553699996,-20.290553779999982],[-68.94244357299988,-20.58323542199986],[-68.88652052099997,-20.737664779999875],[-68.88040156399984,-21.015115162999848],[-68.90821053999991,-21.328870082999913],[-68.8651734899999,-21.904012642999874],[-68.87607549599994,-22.198447778999878],[-68.82582062199998,-22.22982627199991],[-68.70269750499989,-22.17759008399986],[-68.57416554599996,-22.22546248499998],[-68.44403063199996,-22.247885249999968],[-68.42628463399996,-22.292448643999876],[-68.44464854599994,-22.520505812999886],[-68.50491359199992,-22.670369714999822],[-68.59925057099991,-22.797217079999882],[-68.6766354859999,-22.983526335999954],[-68.7951735339999,-23.163410191999958],[-68.84399459999986,-23.20503388499992],[-68.86688255999991,-23.359255203999965],[-68.84267461799988,-23.454342195999914],[-68.74536155999994,-23.60415563999993],[-68.75329553399996,-23.70424444799994],[-68.88306449499999,-23.92438356799994],[-68.95071449999989,-24.211949064999885],[-69.07690455499994,-24.443544737999957],[-69.26538053299993,-24.66949771299994],[-69.24347660899986,-24.946248374999982],[-69.29160348499994,-25.012951057999942],[-69.42931362799993,-25.081602867999948],[-69.42980950199984,-25.180359959999976],[-69.41230054399995,-25.262854986999912],[-69.24242350599985,-25.4096579859999],[-69.19107848199997,-25.496253941999953],[-69.21618664099998,-25.983680555999968],[-69.18832351799995,-26.101450150999938],[-69.09739663199991,-26.191329968999923],[-69.09183456899996,-26.321793956999898],[-69.14326458599993,-26.40544702699998],[-69.26844763899999,-26.47974974899995],[-69.31421651899996,-26.62301055599994],[-69.41484864299991,-26.758893276999913],[-69.31663553599992,-26.861498835999896],[-69.31699361099999,-26.91309162899995],[-69.14844560799997,-26.97143503999996],[-68.51128350299996,-26.89179539199995],[-68.32013654799982,-26.78029646599998],[-68.25897262699993,-26.72422874299997],[-68.17389664499996,-26.495069017999867],[-68.18881961699998,-26.300667872999952],[-68.1577306349999,-26.270035369999903],[-68.12220762699997,-26.06719146899991],[-68.02459751399994,-25.85923024799996],[-67.68857556499995,-25.380120661999968],[-67.59819048599991,-25.31770733499991],[-67.58161158399997,-25.258056179999983],[-67.49651364199997,-25.185942642999976],[-67.52166756499992,-25.093544062999968],[-67.79735556999998,-25.074900027999945],[-67.92741353799994,-24.905753221999873],[-67.97199252199994,-24.903970390999973],[-67.98767053699993,-25.225624919999973],[-68.02503152899988,-25.257421333999957],[-68.13282749799998,-25.252317425999877],[-68.20063055699995,-25.21902031499991],[-68.26932561799998,-25.09355730599998],[-68.25578347999993,-24.927467044999958],[-68.16512263599992,-24.845062039999846],[-68.0051116009999,-24.761143263999884],[-67.93653858099992,-24.478449999999896],[-67.88171355799994,-24.39657489899986],[-67.56949654899995,-24.298404875999893],[-67.30281858799992,-24.27100326099992],[-67.31206550399986,-24.534239108999884],[-67.33592961999994,-24.563951614999837],[-67.3593065799999,-24.788742858999967],[-67.22267954699998,-24.89404873199993],[-67.18019855299997,-24.841726209999877],[-67.15872160199996,-24.505570653999825],[-67.05807455899992,-24.357889900999965],[-66.98175062499996,-24.287783327999932],[-67.02540558799996,-24.195325906999926],[-67.10959660899988,-24.121718714999872],[-67.14530150499996,-24.030487062999953],[-67.1404415099999,-23.922794359999898],[-67.07373849199985,-23.887361372999862],[-66.93264759199997,-23.999608802999944],[-66.82834654099997,-24.19413198799998],[-66.81597853999989,-24.30072967999996],[-66.73802164399984,-24.370556130999887],[-66.69451151999993,-24.30013858799998],[-66.68874359699998,-24.19961056799997],[-66.82099963599995,-24.06488823799998],[-66.91581756799991,-23.830924006999965],[-66.9036336339999,-23.573624053999822],[-66.8341825249999,-23.475845129999982],[-66.82803356099998,-23.322643050999886],[-66.85418660799996,-23.154900548999933],[-66.8021235899999,-23.1084820719999],[-66.70645858199998,-23.12928981099998],[-66.64235663599993,-23.260062084999902],[-66.60803257499998,-23.40386570399994],[-66.62599951999994,-23.63843997099997],[-66.6534805949999,-23.676634794999927],[-66.6798705139999,-24.002134437999928],[-66.67120362599985,-24.089560034999863],[-66.53204358199997,-24.178694701999973],[-66.47828658099996,-24.109440064999944],[-66.39223460999983,-24.116866933999972],[-66.38141658999996,-23.98760625299991],[-66.31486561999992,-23.944660397999883],[-66.27680255999996,-23.808256155999914],[-66.28162349499996,-23.63226418399995],[-66.34262849499993,-23.60580134199995],[-66.39411953199993,-23.87983358499997],[-66.47000861299995,-23.984965281999962],[-66.60125748199994,-23.91028822499993],[-66.59542049299989,-23.772640107999905],[-66.56800848399996,-23.749995054999943],[-66.5334545909999,-23.568154526999876],[-66.48623648099988,-23.442601663999824],[-66.39646948299992,-23.362639816999945],[-66.16056852899999,-23.46003602299993],[-66.05284162699996,-23.425390598999968],[-66.0384825889999,-23.118899603999978],[-66.06565051599989,-23.088957098999913],[-66.07591247999989,-22.920131654999977],[-66.10172253999997,-22.873423163999917],[-66.09903748099993,-22.7333394339999],[-66.12728164499998,-22.568084176999946],[-66.16462754899993,-22.530932061999977],[-66.15673062299999,-22.38725165699998],[-66.1166994919999,-22.241204537999977],[-66.21057848399983,-22.233926027999928],[-66.25463862799995,-22.412273313999833],[-66.2719425649999,-22.702007208999873],[-66.24117259799988,-22.81580327899991],[-66.2415776119999,-23.04568217099984],[-66.3790666399999,-23.171127577999982],[-66.52667949899995,-23.16830891199993],[-66.60645258599982,-23.05548078299995],[-66.64748351099985,-22.429136529999937],[-66.60582763099995,-22.376758351999854],[-66.6248096249999,-22.308453887999974],[-66.60666649199993,-22.181448608999972],[-66.46150953099988,-21.95465375499998],[-66.22562450299995,-21.736928622999983],[-66.15503664099998,-21.71921062099983],[-66.00128152299993,-21.786089993999838],[-66.05375659599997,-21.62952962099996],[-66.03730057299998,-21.536164606999932],[-66.16328460099993,-21.490899982999906],[-66.13555156599989,-21.42683759999983],[-65.96173855399985,-21.47944275999987],[-65.9222255919999,-21.553157574999943],[-65.83173355899999,-21.46215575499997],[-65.95373551299997,-21.190243462999945],[-65.89486655699983,-21.098720455999967],[-65.96227248099996,-21.05417499899994],[-66.13639864099991,-21.090356992999943],[-66.24098149099996,-21.010775348999857],[-66.24508661199997,-20.823209980999934],[-66.32545447899997,-20.772517906999894],[-66.28472848699994,-20.72047869299996],[-66.29739354299988,-20.624504057999843],[-66.25602750999991,-20.55622289499985],[-66.32147961199996,-20.391445071999954],[-66.26527358699997,-20.345541913999966],[-66.27001154199985,-20.176630303999957],[-66.23078155299999,-20.112851899999953],[-66.2849955349999,-20.04578074899996],[-66.3067095259999,-19.935349174999942],[-66.52538248299993,-19.971772063999936],[-66.57089252899993,-20.232156389999943],[-66.64590452799996,-20.17452460299984],[-66.60366057399989,-20.06270884099996],[-66.60501860999983,-19.92487665699997],[-66.53847451299993,-19.861985393999873],[-66.49943563099998,-19.679022025999927],[-66.5023116299999,-19.60165337099994],[-66.59568753999997,-19.537209275999885],[-66.59322359599992,-19.447722401999954],[-66.62673159499985,-19.35255678699997],[-66.58869150099991,-19.263220283999885],[-66.55717453899996,-19.086514677999958],[-66.43080159099992,-18.983225657999924],[-66.43455450399995,-18.87131316899996],[-66.50511152099995,-18.767021338999825],[-66.51429758399996,-18.64719532699985],[-66.59640452799994,-18.53225227699994],[-66.70529148499998,-18.298620304999815],[-66.71106762299996,-18.216084373999877],[-66.80016356499993,-18.143674621999878],[-66.85773449999988,-18.051402272999894],[-66.84494052999992,-17.942510788999982],[-66.73335258899988,-17.906667926999944],[-66.7255704939999,-17.818102223999972],[-66.88729864599998,-17.643569038999942],[-66.89229560099989,-17.496773917999974],[-66.8297885639999,-17.41490384699989],[-66.8954775389999,-17.35376758599989],[-67.01879159599991,-17.340615541999966],[-67.16992954799991,-17.45025770799998],[-67.27646655499996,-17.337523792999946],[-67.28799452199996,-17.25364005299997],[-67.3827894879999,-17.192314695999983],[-67.47171058399988,-17.081903405999924],[-67.4112316319999,-17.026992049999933],[-67.40736355199988,-16.918968763999885],[-67.42323250599998,-16.841195430999903],[-67.4044795069999,-16.73792300799994],[-67.40080253299993,-16.70996852199994]]]]},"properties":{"objectid":127,"eco_name":"Central Andean dry puna","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Neotropic","eco_biome_":"NO10","nnh":2,"eco_id":587,"shape_leng":44.7799655834,"shape_area":22.2035844506,"nnh_name":"Nature Could Reach Half Protected","color":"#F4A733","color_bio":"#D6C39D","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":256197.64666014173,"percentage":5.246399252747286}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-66.34561161499994,-27.42746203799993],[-66.16725158799989,-27.41941541099993],[-65.98623650999997,-27.309427070999902],[-65.89929957799995,-27.159815798999944],[-65.89675147899999,-27.028181361999884],[-65.85803949199982,-26.995839956999873],[-65.88350656299997,-26.91089657599997],[-65.93956758199994,-26.908540590999962],[-66.00899454999995,-27.06172506799993],[-66.26747853099988,-27.27925456699984],[-66.34561161499994,-27.42746203799993]]],[[[-65.86623363999996,-26.845067622999977],[-65.73840358199993,-26.740774283999826],[-65.71559156199993,-26.260841762999974],[-65.68646260399993,-26.23564894699996],[-65.67095155699997,-26.086014540999827],[-65.63685648899997,-25.969843038999954],[-65.70296455999994,-26.005896454999913],[-65.79268663099998,-26.197545485999854],[-65.80290953499986,-26.429730070999938],[-65.84796863499992,-26.53150749799994],[-65.85977957499989,-26.66435546699995],[-65.89307349999996,-26.672765030999926],[-65.86623363999996,-26.845067622999977]]],[[[-65.37863955699987,-23.881475432999935],[-65.20754261699994,-23.758587678999845],[-65.12731958899997,-23.49957882399997],[-65.03149448699992,-23.467885674999877],[-64.97023048599993,-23.50340885099996],[-64.87575553999989,-23.470434276999924],[-64.82976554599998,-23.387499702999946],[-64.84402450499994,-23.23916432399983],[-64.82949849899984,-23.1217434159999],[-64.87552654699988,-23.034686957999952],[-65.02028654099985,-22.87044021199995],[-65.0332716179999,-22.677763391999974],[-64.85305751399994,-22.473053343999936],[-64.84362049699996,-22.368829742999935],[-64.95535260799994,-22.229511111999955],[-64.8776096169999,-22.116747188999966],[-64.78312662499985,-22.108873732999825],[-64.58353456799995,-22.217735878999918],[-64.52910651199988,-22.172377042999983],[-64.42930553699989,-21.981868452999947],[-64.35672764299994,-22.06351606899989],[-64.25240362699998,-22.07162975199998],[-64.22356451499991,-21.859702046999928],[-64.16642759599995,-21.704623258999902],[-64.19953158699997,-21.54035824099998],[-64.26162757599997,-21.478513708999913],[-64.35305754299992,-21.44515054999988],[-64.46226452199994,-21.454381874999967],[-64.51926448099994,-21.40563473799989],[-64.63507053199993,-21.385535939999954],[-64.73207848799984,-21.235783180999874],[-64.82415050899994,-21.218316132999973],[-64.94988257799997,-21.15128873499998],[-65.06060751899992,-21.14118015999992],[-65.08125248099998,-21.18447403099998],[-65.08474756699997,-21.43668415699989],[-65.04139753799996,-21.563580973999876],[-65.10095263599999,-21.73871162099988],[-65.1150965949999,-21.865230749999967],[-65.07163961199996,-21.936853944999882],[-65.13101952899984,-21.99624559699987],[-65.23674751399994,-21.902162588999943],[-65.31845061899992,-21.874281193999877],[-65.35018148599988,-21.927998463999927],[-65.58253454799996,-22.041744075999873],[-65.44074258599994,-21.8511033879999],[-65.50299850099992,-21.754019825999933],[-65.54311361899994,-21.627795404999915],[-65.64390550199994,-21.51364779799991],[-65.72454863099995,-21.560031405999894],[-65.72454863099995,-21.636379982999927],[-65.80744950899998,-21.66066788799992],[-65.81404858099984,-21.556024352999827],[-65.74880954699995,-21.520090295999978],[-65.73446660199988,-21.43640587799996],[-65.86266361999998,-21.224987624999983],[-65.72771464299996,-21.26432842299988],[-65.62208556399997,-21.415417088999902],[-65.5356066189999,-21.465386475999935],[-65.44680052299998,-21.55265281699991],[-65.40374754799996,-21.69129804499994],[-65.31205757299995,-21.70427440399982],[-65.32138864299992,-21.551626703999943],[-65.41040059899996,-21.34379422899991],[-65.47344256999997,-21.233240111999976],[-65.4088135699999,-20.98795360599985],[-65.42849763099991,-20.928639905999944],[-65.39516447899996,-20.832418506999886],[-65.53939054599982,-20.805563894999977],[-65.66989862199989,-20.869491329999903],[-65.71965058199993,-20.989984540999842],[-65.82131150099991,-20.920061698999973],[-65.88735955699997,-20.78085018899992],[-65.92977148399996,-20.78073435099992],[-66.02425363799995,-20.86381376399987],[-66.08174159099991,-20.86550657299989],[-66.01205461599994,-20.705523365999966],[-65.92093662299993,-20.670481478999875],[-65.99931361999995,-20.584541489999935],[-66.04383057799998,-20.440033455999924],[-65.98674763799994,-20.427631256999973],[-65.9080965529999,-20.4952613129999],[-65.85681154299994,-20.472872578999954],[-65.87961551599994,-20.206297714999835],[-65.78606459199989,-20.230662398999982],[-65.66818251099994,-20.312244803999874],[-65.66661861599994,-20.416564797999968],[-65.62843351499998,-20.436051548999956],[-65.52909857399993,-20.159486294999965],[-65.45083657699996,-20.14386041599994],[-65.41596953599992,-20.22278173399991],[-65.4167326239999,-20.367194549999965],[-65.46432456799994,-20.487672840999892],[-65.46074650099985,-20.561582451999982],[-65.36866760599997,-20.579739664999977],[-65.28348550899995,-20.506382757999972],[-65.27633658399998,-20.420322739999847],[-65.1776425239999,-20.315456581999968],[-65.08438161399994,-20.35640720799995],[-64.98269655499996,-20.35412917399998],[-64.96450061699994,-20.402049687999977],[-65.00765953899992,-20.549797159999912],[-65.06935856099994,-20.64962663299997],[-65.0088884939999,-20.671754521999958],[-64.99725357399996,-20.77844340899992],[-64.83736457999998,-20.84977642299998],[-64.85160861799994,-20.678576049999947],[-64.80529759799992,-20.63541142799994],[-64.90662357499997,-20.561688733999915],[-64.89035748599997,-20.426521157999957],[-64.92011257199988,-20.287458174999927],[-65.0521086039999,-20.186261781999917],[-65.12181854599999,-20.032563660999926],[-65.10387456799998,-19.87320574399996],[-65.04026061599996,-19.798585180999964],[-64.93597448599996,-19.735833559999833],[-64.85752858899991,-19.758556228999907],[-64.93793450999993,-19.545494787999928],[-65.01131455199993,-19.454343937999965],[-65.09917449899984,-19.49282072899996],[-65.09801461099988,-19.587127365999947],[-65.14949056099994,-19.723174370999914],[-65.41561850199992,-19.834475986999962],[-65.40959962499994,-19.737713620999955],[-65.44194052799992,-19.659467045999918],[-65.41716747699991,-19.50007325399997],[-65.45449058399993,-19.434291239999936],[-65.43542460399993,-19.36164025599993],[-65.46083853399989,-19.22773918499996],[-65.60102854699994,-19.065093717999957],[-65.4643636269999,-19.01149496799991],[-65.35840647999999,-19.077248985999972],[-65.32614855799994,-18.9810366399999],[-65.22884354699994,-18.96461481499989],[-65.1639936009999,-19.000192641999945],[-65.10364557399993,-19.149797710999962],[-65.04514357799997,-19.21062736199997],[-64.76119956699995,-19.332954197999925],[-64.8549196379999,-19.2379235329999],[-64.97233551699992,-19.180869090999977],[-65.05284855799994,-19.100120852999964],[-65.14334863799996,-18.956551256999944],[-65.22087051299991,-18.90100857599998],[-65.21814756799995,-18.790787889999933],[-65.27417757399996,-18.79696367599996],[-65.30826559999991,-18.88524338899998],[-65.41275054999994,-18.98254152699991],[-65.53246357299997,-18.972480392999955],[-65.62728854699986,-18.904247342999838],[-65.65930959599996,-18.818055393999828],[-65.76014757999997,-18.69492456599994],[-65.79542550099995,-18.5272217939999],[-65.85231750199995,-18.501618096999948],[-65.98629752999989,-18.514437379999947],[-66.13443761099984,-18.495892586999958],[-66.07507361899991,-18.435115071999974],[-65.92126452299988,-18.43531724299993],[-65.90814952599999,-18.396209629999873],[-66.08184854399997,-18.36813125999987],[-66.13167560599993,-18.317618222999897],[-66.13921361899986,-18.242695743999832],[-66.2010345139999,-18.24026499199988],[-66.2661585489999,-18.299346344999947],[-66.38447548199997,-18.202568219999932],[-66.49393458799995,-18.15652374399997],[-66.47713457199995,-18.060049714999877],[-66.52676348599988,-17.97429479799996],[-66.51985947999992,-17.914148607999948],[-66.64627852799998,-17.85230424399998],[-66.64434063199997,-17.72758085399994],[-66.42715462499996,-17.680453770999918],[-66.43650061399984,-17.602777500999935],[-66.61679048999997,-17.54813486799992],[-66.68514256399993,-17.45488468699989],[-66.35266163299991,-17.316277008999975],[-66.26602158799994,-17.246022411999945],[-66.17438559399989,-17.247599214999923],[-66.06597154299993,-17.300556078999932],[-65.95086655499995,-17.324458584999945],[-65.92115052899987,-17.37785030299989],[-65.84164448899998,-17.396417223999947],[-65.80283359499998,-17.31916675399998],[-65.71849052699997,-17.3736405759999],[-65.67369059499993,-17.50363567999983],[-65.8114775169999,-17.70233523199994],[-65.90225956299992,-17.73011956499994],[-65.97658558699993,-17.666265723999913],[-66.0342026209999,-17.717709318999937],[-65.89241753199997,-17.761502918999952],[-65.81464352899997,-17.738769018999903],[-65.75133551699992,-17.8153276459999],[-65.59851062299998,-17.829001714999947],[-65.46336349899991,-17.912563589999877],[-65.38495649399994,-18.081069347999914],[-65.31902360499998,-18.11802432099995],[-65.26617453199992,-18.045533598999896],[-65.24210354999991,-17.914465443999916],[-65.31492653099991,-17.889080179999894],[-65.21372963499988,-17.732257620999917],[-65.31439260399998,-17.64470981599993],[-65.39027363799994,-17.63337547099985],[-65.56365162899982,-17.51996748299996],[-65.71939862199997,-17.33287686599988],[-65.83271759399997,-17.306202631999952],[-65.97686755399991,-17.219234854999968],[-66.05960850499986,-17.04522470099994],[-66.20037049899997,-17.06740640199996],[-66.39002949899998,-16.930594798999948],[-66.49416358199994,-16.871392410999874],[-66.56047851799997,-16.906300354999928],[-66.66165160899982,-16.864357143999825],[-66.62397763699988,-17.006138041999918],[-66.56085955899988,-17.05589016999994],[-66.53356959099983,-17.12828852299998],[-66.60337055999997,-17.18808786999989],[-66.66392561999993,-17.148686219999945],[-66.79322854599997,-17.16182552299989],[-66.87095661699982,-17.216485254999952],[-66.94467159999988,-17.206174675999932],[-67.10685757099992,-17.259220555999946],[-67.16888449199996,-17.211882584999955],[-67.19734155599997,-17.119800001999977],[-67.18877458099996,-17.02958373399997],[-67.32217458199989,-16.935996599999953],[-67.40736355199988,-16.918968763999885],[-67.4112316319999,-17.026992049999933],[-67.47171058399988,-17.081903405999924],[-67.3827894879999,-17.192314695999983],[-67.28799452199996,-17.25364005299997],[-67.27646655499996,-17.337523792999946],[-67.16992954799991,-17.45025770799998],[-67.01879159599991,-17.340615541999966],[-66.8954775389999,-17.35376758599989],[-66.8297885639999,-17.41490384699989],[-66.89229560099989,-17.496773917999974],[-66.88729864599998,-17.643569038999942],[-66.7255704939999,-17.818102223999972],[-66.73335258899988,-17.906667926999944],[-66.84494052999992,-17.942510788999982],[-66.85773449999988,-18.051402272999894],[-66.80016356499993,-18.143674621999878],[-66.71106762299996,-18.216084373999877],[-66.70529148499998,-18.298620304999815],[-66.59640452799994,-18.53225227699994],[-66.51429758399996,-18.64719532699985],[-66.50511152099995,-18.767021338999825],[-66.43455450399995,-18.87131316899996],[-66.43080159099992,-18.983225657999924],[-66.55717453899996,-19.086514677999958],[-66.58869150099991,-19.263220283999885],[-66.62673159499985,-19.35255678699997],[-66.59322359599992,-19.447722401999954],[-66.59568753999997,-19.537209275999885],[-66.5023116299999,-19.60165337099994],[-66.49943563099998,-19.679022025999927],[-66.53847451299993,-19.861985393999873],[-66.60501860999983,-19.92487665699997],[-66.60366057399989,-20.06270884099996],[-66.64590452799996,-20.17452460299984],[-66.57089252899993,-20.232156389999943],[-66.52538248299993,-19.971772063999936],[-66.3067095259999,-19.935349174999942],[-66.2849955349999,-20.04578074899996],[-66.23078155299999,-20.112851899999953],[-66.27001154199985,-20.176630303999957],[-66.26527358699997,-20.345541913999966],[-66.32147961199996,-20.391445071999954],[-66.25602750999991,-20.55622289499985],[-66.29739354299988,-20.624504057999843],[-66.28472848699994,-20.72047869299996],[-66.32545447899997,-20.772517906999894],[-66.24508661199997,-20.823209980999934],[-66.24098149099996,-21.010775348999857],[-66.13639864099991,-21.090356992999943],[-65.96227248099996,-21.05417499899994],[-65.89486655699983,-21.098720455999967],[-65.95373551299997,-21.190243462999945],[-65.83173355899999,-21.46215575499997],[-65.9222255919999,-21.553157574999943],[-65.96173855399985,-21.47944275999987],[-66.13555156599989,-21.42683759999983],[-66.16328460099993,-21.490899982999906],[-66.03730057299998,-21.536164606999932],[-66.05375659599997,-21.62952962099996],[-66.00128152299993,-21.786089993999838],[-66.15503664099998,-21.71921062099983],[-66.22562450299995,-21.736928622999983],[-66.46150953099988,-21.95465375499998],[-66.60666649199993,-22.181448608999972],[-66.6248096249999,-22.308453887999974],[-66.60582763099995,-22.376758351999854],[-66.64748351099985,-22.429136529999937],[-66.60645258599982,-23.05548078299995],[-66.52667949899995,-23.16830891199993],[-66.3790666399999,-23.171127577999982],[-66.2415776119999,-23.04568217099984],[-66.24117259799988,-22.81580327899991],[-66.2719425649999,-22.702007208999873],[-66.25463862799995,-22.412273313999833],[-66.21057848399983,-22.233926027999928],[-66.1166994919999,-22.241204537999977],[-66.15673062299999,-22.38725165699998],[-66.16462754899993,-22.530932061999977],[-66.12728164499998,-22.568084176999946],[-66.09903748099993,-22.7333394339999],[-66.10172253999997,-22.873423163999917],[-66.07591247999989,-22.920131654999977],[-66.06565051599989,-23.088957098999913],[-66.0384825889999,-23.118899603999978],[-66.05284162699996,-23.425390598999968],[-66.16056852899999,-23.46003602299993],[-66.39646948299992,-23.362639816999945],[-66.48623648099988,-23.442601663999824],[-66.5334545909999,-23.568154526999876],[-66.56800848399996,-23.749995054999943],[-66.59542049299989,-23.772640107999905],[-66.60125748199994,-23.91028822499993],[-66.47000861299995,-23.984965281999962],[-66.39411953199993,-23.87983358499997],[-66.34262849499993,-23.60580134199995],[-66.28162349499996,-23.63226418399995],[-66.27680255999996,-23.808256155999914],[-66.31486561999992,-23.944660397999883],[-66.38141658999996,-23.98760625299991],[-66.39223460999983,-24.116866933999972],[-66.47828658099996,-24.109440064999944],[-66.53204358199997,-24.178694701999973],[-66.67120362599985,-24.089560034999863],[-66.6798705139999,-24.002134437999928],[-66.6534805949999,-23.676634794999927],[-66.62599951999994,-23.63843997099997],[-66.60803257499998,-23.40386570399994],[-66.64235663599993,-23.260062084999902],[-66.70645858199998,-23.12928981099998],[-66.8021235899999,-23.1084820719999],[-66.85418660799996,-23.154900548999933],[-66.82803356099998,-23.322643050999886],[-66.8341825249999,-23.475845129999982],[-66.9036336339999,-23.573624053999822],[-66.91581756799991,-23.830924006999965],[-66.82099963599995,-24.06488823799998],[-66.68874359699998,-24.19961056799997],[-66.69451151999993,-24.30013858799998],[-66.73802164399984,-24.370556130999887],[-66.81597853999989,-24.30072967999996],[-66.82834654099997,-24.19413198799998],[-66.93264759199997,-23.999608802999944],[-67.07373849199985,-23.887361372999862],[-67.1404415099999,-23.922794359999898],[-67.14530150499996,-24.030487062999953],[-67.10959660899988,-24.121718714999872],[-67.02540558799996,-24.195325906999926],[-66.98175062499996,-24.287783327999932],[-67.05807455899992,-24.357889900999965],[-67.15872160199996,-24.505570653999825],[-67.18019855299997,-24.841726209999877],[-67.22267954699998,-24.89404873199993],[-67.3593065799999,-24.788742858999967],[-67.33592961999994,-24.563951614999837],[-67.31206550399986,-24.534239108999884],[-67.30281858799992,-24.27100326099992],[-67.56949654899995,-24.298404875999893],[-67.88171355799994,-24.39657489899986],[-67.93653858099992,-24.478449999999896],[-68.0051116009999,-24.761143263999884],[-68.16512263599992,-24.845062039999846],[-68.25578347999993,-24.927467044999958],[-68.26932561799998,-25.09355730599998],[-68.20063055699995,-25.21902031499991],[-68.13282749799998,-25.252317425999877],[-68.02503152899988,-25.257421333999957],[-67.98767053699993,-25.225624919999973],[-67.97199252199994,-24.903970390999973],[-67.92741353799994,-24.905753221999873],[-67.79735556999998,-25.074900027999945],[-67.52166756499992,-25.093544062999968],[-67.49651364199997,-25.185942642999976],[-67.58161158399997,-25.258056179999983],[-67.59819048599991,-25.31770733499991],[-67.68857556499995,-25.380120661999968],[-68.02459751399994,-25.85923024799996],[-68.12220762699997,-26.06719146899991],[-68.1577306349999,-26.270035369999903],[-68.18881961699998,-26.300667872999952],[-68.17389664499996,-26.495069017999867],[-68.11939952199998,-26.49669795699998],[-67.92163052799992,-26.275782169999957],[-67.65773049699999,-25.912944668999955],[-67.53430948699992,-25.575668283999903],[-67.45088960199996,-25.441292629999907],[-67.35234054799997,-25.350088805999974],[-67.27806062499997,-25.42494758299995],[-67.31602461199998,-25.522743941999977],[-67.33000160299991,-25.712891940999896],[-67.2947235129999,-25.749110144999975],[-67.08596752099993,-25.752013132999934],[-66.99210361599995,-25.587529850999886],[-66.93898062299996,-25.54479387899994],[-66.8575826199999,-25.41364307799995],[-66.83622754199985,-25.182772774999876],[-66.7551654859999,-25.049156352999944],[-66.6257016269999,-24.91091295399991],[-66.57410464199995,-24.821344103999934],[-66.56795450499993,-24.622667014999877],[-66.62216161399994,-24.462054829999886],[-66.61772959899992,-24.35792896099997],[-66.57825452299994,-24.29823371699996],[-66.3669816119999,-24.40662664499996],[-66.30161248999997,-24.40557538699983],[-66.15381657099994,-24.338758709999922],[-66.06242348399996,-24.46691063399993],[-66.06639851699998,-24.57464424099993],[-66.20514650799998,-24.570930387999965],[-66.3045505149999,-24.53963806099995],[-66.32665258799994,-24.984881404999953],[-66.39637761699998,-25.023013532999926],[-66.50394459199993,-24.98438553199992],[-66.47415949899994,-25.09460621799991],[-66.63764952699995,-25.190943621999963],[-66.68167849099996,-25.300859205999927],[-66.7020114789999,-25.62989869499995],[-66.65038264399993,-26.087315579999938],[-66.5283815279999,-26.36546283499996],[-66.78733858299995,-26.35111066899998],[-66.84864851699996,-26.3794834119999],[-66.99591855599994,-26.81769081899995],[-67.10942863499992,-26.970003074999966],[-67.25904057799988,-27.094377442999928],[-67.2701264829999,-27.01052622499998],[-67.03684956799987,-26.477561066999954],[-67.03241755299996,-26.27775610799995],[-67.07549248899994,-26.19845760499993],[-67.39403548799987,-25.879819219999888],[-67.48390155999994,-25.87294840599992],[-67.60095249099999,-26.11699221099991],[-67.82598848599997,-26.438541630999907],[-67.84942663399988,-26.57462853499993],[-67.8850094899999,-26.635176888999922],[-67.82977257999988,-26.760316355999976],[-67.53713955299997,-26.901383115999977],[-67.58444248799998,-26.94393015999998],[-67.79814162399992,-26.867195511999967],[-67.94596050999996,-26.931033595999963],[-68.01544950499994,-27.085564038999905],[-68.02264352499992,-27.188332542999945],[-68.07256362599998,-27.211527447999856],[-68.22768348499994,-27.20795055499991],[-68.30220061599994,-27.25339153399989],[-68.36551650699988,-27.399448375999953],[-68.33556360799986,-27.630778342999974],[-68.30262758999999,-27.661230131999957],[-68.31082157099996,-27.79504252299995],[-68.34383352899994,-27.829167094999946],[-68.36550158699998,-28.021342844999936],[-68.46739149899997,-28.17500877899994],[-68.50949849299997,-28.012808390999965],[-68.58882851199996,-27.892950527999915],[-68.66109459899997,-27.87602997999994],[-68.7214736389999,-27.922678120999876],[-68.74066953799996,-28.202091377999977],[-68.71960464199998,-28.32926010499989],[-68.76996663699998,-28.395200704999922],[-68.93508962699991,-28.352289383999846],[-68.94651063999999,-28.52061543399992],[-69.07924662699997,-28.570267313999977],[-69.26339754299994,-28.613770732999967],[-69.40573851999994,-28.742934351999963],[-69.41264353099996,-28.830010926999933],[-69.27824356999992,-28.95885284799988],[-69.28176162199998,-29.02689730599991],[-69.35434756199999,-29.084860848999938],[-69.46339461399992,-29.009186008999905],[-69.5432666079999,-29.07880525899992],[-69.47480053999988,-29.186964834999912],[-69.52705349199994,-29.35785138899996],[-69.53566757399989,-29.568984153999907],[-69.40125252499985,-29.75893383799996],[-69.38111148199994,-29.484574197999905],[-69.30966162499988,-29.310891943999934],[-69.24426249599986,-29.214644728999872],[-69.1223296089999,-29.111474899999962],[-68.96617156799994,-29.068122522999943],[-68.91724354899992,-29.074765181999965],[-68.78351548099988,-28.909032994999905],[-68.80998251299997,-28.781752956999924],[-68.80681650099984,-28.663460665999935],[-68.66776257099991,-28.417567645999952],[-68.52165962799995,-28.244575892999933],[-68.08290052399991,-28.251970407999977],[-67.97046651299996,-28.23450000699995],[-67.95337648299989,-28.111548383999946],[-67.88417062899998,-28.01084736099989],[-67.86022956599999,-27.55543358299991],[-67.89933064199994,-27.487916513999835],[-67.8767544889999,-27.263336326999934],[-67.83853954799997,-27.137038814999983],[-67.76750157699996,-27.04105177499997],[-67.66056860899988,-27.037569093999934],[-67.57953655999995,-27.070803507999983],[-67.48449751299995,-27.160372692999886],[-67.34212451699995,-27.4453584069999],[-67.26136052099992,-27.41859348099996],[-67.06419351599993,-27.129490072999943],[-66.99276763099988,-27.066595624999877],[-66.95051562999998,-26.96996787099988],[-66.92804760299992,-26.83490490099996],[-66.88063050699998,-26.740677221999874],[-66.66574851599995,-26.687996624999982],[-66.59678657499995,-26.490850405999936],[-66.54991949899994,-26.42402534799993],[-66.4063644869999,-26.423304336999934],[-66.27998349199999,-26.375739550999924],[-66.2441485089999,-26.393757624999864],[-66.14963550999994,-26.265829330999964],[-66.14684249199985,-26.15692644799998],[-66.21245552699997,-25.76907416199998],[-66.35095256299996,-25.669464965999964],[-66.37790658499995,-25.42164142499996],[-66.43939957899988,-25.296991628999933],[-66.44307755799991,-25.221577968999952],[-66.37182651999996,-25.15713504799993],[-66.25334161299992,-25.096344120999902],[-66.24338558799991,-24.713318638999965],[-66.16596949199993,-24.63921205299988],[-66.10054052399994,-24.70271301599996],[-65.96943649399986,-24.973265930999958],[-65.84954057699997,-25.298770435999927],[-65.76129958799999,-25.31301581599996],[-65.71413461899982,-25.20999551999995],[-65.77085847799992,-25.131094318999942],[-65.80001861699992,-24.987502258999882],[-65.88148451299998,-24.945693157999983],[-65.88686351599995,-24.805647145999956],[-65.95115656899992,-24.71231348099991],[-65.87916557599993,-24.62608263999988],[-65.91587059999989,-24.577032077999945],[-65.89513360399997,-24.325632481999946],[-65.86000856799996,-24.19272617599995],[-65.7884445489999,-24.058565600999884],[-65.72174052599996,-24.157820912999966],[-65.72402962399997,-24.307460348999882],[-65.69779963099995,-24.352898980999896],[-65.69591554699997,-24.59230926999993],[-65.65912653599997,-24.64250597399996],[-65.52087357999983,-24.49250226099997],[-65.51974453799994,-24.443419679999977],[-65.43379247899998,-24.366511526999943],[-65.42987058699998,-24.073210126999925],[-65.46398962699993,-24.019467710999947],[-65.5373916289999,-23.90358655799986],[-65.53646861399989,-23.795839874999956],[-65.43201450999993,-23.581199785999956],[-65.3764114789999,-23.529509426999823],[-65.3798296189999,-23.35233929599997],[-65.41366551799996,-23.324929968999925],[-65.40899663099992,-23.20878394899995],[-65.27619157699996,-23.095689778999883],[-65.26239060599994,-23.252461542999924],[-65.23245262699999,-23.276262292999945],[-65.24010463399992,-23.52530959099994],[-65.27242257099988,-23.55060332499994],[-65.32700351299997,-23.796265004999952],[-65.37863955699987,-23.881475432999935]],[[-65.16043062099988,-22.980186481999908],[-65.23268849399994,-23.00689223199987],[-65.30917352799997,-22.9725249199999],[-65.38883949499996,-22.794460438999977],[-65.38366651899997,-22.225105415999963],[-65.28075451799992,-22.124320909999938],[-65.20180553899996,-22.124320909999938],[-65.15668458099992,-22.203269384999942],[-65.13977057099993,-22.311076752999895],[-65.16817449399997,-22.340888164999967],[-65.16686255799988,-22.559989605999874],[-65.14993262299993,-22.588632077999932],[-65.16043062099988,-22.980186481999908]]],[[[-74.47044350399995,-13.259367974999975],[-74.82403559799997,-13.152747316999978],[-75.0065455049999,-13.078140163999876],[-75.10852057699992,-13.143621938999956],[-75.13760360199996,-13.289756061999924],[-75.07129654499994,-13.460566675999928],[-74.89621753099993,-13.650439917999904],[-74.87142956099996,-13.754035211999962],[-74.75274650599988,-13.845098219999954],[-74.6860885829999,-14.009521319999976],[-74.71814751799991,-14.154390614999954],[-74.6630405279999,-14.239924080999913],[-74.5817716059999,-14.152963678999981],[-74.51851656799994,-14.179069954999818],[-74.49332459099998,-14.290824696999948],[-74.51406862799996,-14.377689879999934],[-74.49157763399995,-14.492648519999932],[-74.39111365199989,-14.727901217999886],[-74.33525849299997,-14.730948877999879],[-74.3360445479999,-14.637921821999953],[-74.40448764899998,-14.453740060999962],[-74.32296760499997,-14.336099714999875],[-74.28650649399998,-14.347823817999938],[-74.24045564699998,-14.477110315999937],[-74.19141363499995,-14.522683393999841],[-73.97820249299997,-14.593915824999954],[-73.95084362599988,-14.708388481999918],[-74.05309261899993,-14.742867105999949],[-73.9696045039999,-14.930764899999929],[-73.89851355999997,-14.847450458999958],[-73.80113964999998,-14.846696422999912],[-73.69862360899992,-14.960021094999945],[-73.63415554199997,-14.961376783999924],[-73.61525753599989,-14.88539969299984],[-73.71003758199993,-14.806776937999928],[-73.71226448599998,-14.745193921999942],[-73.58913449599993,-14.669938847999958],[-73.52675653999995,-14.66760817599993],[-73.40317560399996,-14.740291178999883],[-73.08930149299988,-14.678335167999933],[-73.06567357799997,-14.739348382999879],[-73.20614656399988,-14.79206585999998],[-73.30984461999992,-14.871229749999884],[-73.27081261199999,-14.959538967999947],[-73.28029656799998,-15.06597807399993],[-73.20928156399992,-15.060914565999951],[-73.16790060999989,-15.179091857999936],[-73.09944158399992,-15.162445732999913],[-72.8116455849999,-14.961794872999974],[-72.73238362699988,-14.927437954999903],[-72.66535958199995,-14.945899934999943],[-72.52160658899993,-14.870241858999975],[-72.45442161199986,-14.887520816999938],[-72.51391552299992,-15.019496229999902],[-72.64923849999997,-15.121943538999915],[-72.86024453099986,-15.240383853999901],[-72.95807659599984,-15.314276029999917],[-72.98294855199993,-15.375203078999903],[-72.81362153499998,-15.443615669999872],[-72.85959660899988,-15.590911524999967],[-72.78289062799996,-15.681111531999932],[-72.72148161999996,-15.69710973499997],[-72.62166555899995,-15.662248728999941],[-72.52568052999993,-15.571014562999892],[-72.3881226019999,-15.583344844999942],[-72.43473855699995,-15.28366615799996],[-72.42698663699997,-15.213283651999916],[-72.33149764899997,-15.201756355999976],[-72.2139666029999,-15.460862775999942],[-72.10111953099994,-15.488403027999937],[-71.94091755699998,-15.487188154999956],[-71.70444462199998,-15.515324359999966],[-71.63115661399996,-15.504381952999893],[-71.50072464499993,-15.3480328039999],[-71.42945063999986,-15.348321979999923],[-71.34280355399994,-15.463454628999898],[-71.49559056099997,-15.598822699999914],[-71.59224664499999,-15.65062369999987],[-71.71554561499988,-15.677499769999883],[-71.9850155879999,-15.675475874999961],[-72.21668250699997,-15.845361126999933],[-72.14141854799993,-15.869197750999945],[-72.00036654099995,-15.811890343999949],[-71.81899254899986,-15.84792280499994],[-71.69709050799997,-15.932403503999865],[-71.63715352999998,-15.880471745999841],[-71.58240562099991,-15.926856862999955],[-71.58719654899994,-16.111325285999953],[-71.49523952699997,-16.15470347899992],[-71.43295259899998,-16.04318460399992],[-71.34240759299996,-16.012868432999937],[-71.21338663299997,-16.134669891999977],[-71.37069651599995,-16.270505337999907],[-71.37053658899998,-16.375053486999946],[-71.3204724869999,-16.467153838999877],[-71.18581352499996,-16.563143729999865],[-71.11078660599992,-16.658278833999873],[-71.03391248399993,-16.578752677999944],[-70.90344950199994,-16.53290165599998],[-70.84696955599992,-16.374612598999875],[-70.76727257699997,-16.318042128999934],[-70.75668355099992,-16.225489991999837],[-70.68110661199995,-16.094784269999934],[-70.64908556299997,-15.98519809399994],[-70.53334053199995,-16.13489687399982],[-70.53963450299989,-16.187500356999976],[-70.62719756399997,-16.25407211399994],[-70.66734352699996,-16.4367848629999],[-70.50607252499998,-16.554117257999962],[-70.51375554499998,-16.607756073999838],[-70.69313849899993,-16.554775405999976],[-70.6547245719999,-16.70955479199995],[-70.67820764699991,-16.88756143699993],[-70.54760753699998,-17.12048396499989],[-70.4590684879999,-17.17183904799998],[-70.32166260799994,-17.122926116999906],[-70.22953761299988,-17.114505320999967],[-70.06039449499997,-17.216529343999923],[-70.05184964699993,-17.30833163599982],[-69.97397656999982,-17.340157553999916],[-69.93443259499998,-17.40644348899997],[-69.94609852799994,-17.4794538889999],[-69.8955685599999,-17.715023589999873],[-69.83461753899996,-17.847544663999884],[-69.7502895579999,-18.167543096999964],[-69.63632953799998,-18.005101980999882],[-69.61032049199997,-17.88917103999995],[-69.60169953699994,-17.651829571999883],[-69.57169349699996,-17.49566918399995],[-69.48010259699998,-17.4512328589999],[-69.43389148799997,-17.36926170199996],[-69.57810950899994,-17.266059015999815],[-69.53180653399988,-17.17840543099993],[-69.33672360499997,-17.05174246899992],[-69.2686466259999,-16.891969311999958],[-69.19019352099991,-16.840070411999932],[-69.13034857599985,-16.726088597999876],[-69.00801050799993,-16.683276183999965],[-69.00782761499988,-16.560021973999937],[-69.08228255199992,-16.468665766999948],[-69.01835662599996,-16.401447094999924],[-69.03662163199988,-16.26902341799996],[-68.9555966229999,-16.169978658999923],[-69.04094652599997,-16.096756196999934],[-69.11219756499992,-16.238455119999912],[-69.27428462899985,-16.2877329989999],[-69.40209959999993,-16.188879347999944],[-69.50125164699989,-16.193785945999934],[-69.73559557899995,-16.32556270799995],[-69.85317959899999,-16.34080486299996],[-69.95317855399992,-16.312141603999976],[-70.09208663799984,-16.241588945999865],[-70.1993255459999,-16.148954833999824],[-70.30992157299994,-15.970794128999898],[-70.37448854699994,-15.90302543599995],[-70.47554060399989,-15.67606981699987],[-70.52275854699997,-15.53231196299987],[-70.56880151499985,-15.30223374999997],[-70.64884952799997,-15.201334410999948],[-70.7593456429999,-15.145695840999906],[-70.84773264499984,-15.132963896999968],[-71.1666335509999,-14.981872548999888],[-71.31330160099998,-14.93995515399996],[-71.34772456899998,-14.85601776999988],[-71.47389249599985,-14.878693331999955],[-71.71920750099991,-14.894420129999958],[-71.81736763399988,-14.843022466999969],[-72.01107056599994,-14.673914719999914],[-72.07550057999998,-14.682175923999921],[-72.09319259799997,-14.59957729699994],[-72.00616463799992,-14.472366660999967],[-72.07013649699996,-14.358007159999943],[-72.12379459099998,-14.465672202999826],[-72.24954258499997,-14.572974309999893],[-72.28112056699996,-14.503242742999873],[-72.42411063899993,-14.424865912999906],[-72.58186358899991,-14.406164210999975],[-72.64524049999994,-14.337796546999925],[-72.70134761799994,-14.299679171999912],[-72.82426454099993,-14.307323634999875],[-72.91792258599997,-14.366042722999964],[-72.92743654899988,-14.447630323999874],[-73.00556963299994,-14.406822022999961],[-73.05804453799988,-14.30500788299986],[-73.15657062399998,-14.222892053999942],[-73.23182653599997,-14.192611254999974],[-73.14680453399984,-14.409569945999976],[-73.25578352399992,-14.53196584899996],[-73.30688463499996,-14.49301447399995],[-73.26288551099992,-14.391203016999953],[-73.36180152399999,-14.253183245999878],[-73.35547653999998,-14.135052892999965],[-73.32190651399998,-14.01191401899996],[-73.27056148999998,-13.917298256999914],[-73.15937755599998,-13.820914584999969],[-73.12383258699992,-13.749066586999902],[-73.15451051999997,-13.600868335999962],[-73.26329052399996,-13.665602947999957],[-73.30052159699989,-13.745285845999888],[-73.40880555999996,-13.86802255699996],[-73.4522625429999,-13.999581723999938],[-73.46370652299998,-14.219879429999821],[-73.48598461599994,-14.361874904999922],[-73.57517259199994,-14.269041973999947],[-73.76535059899993,-14.133909098999936],[-73.79722563599995,-14.074790026999949],[-73.7457575649999,-13.947503283999936],[-73.85095262999994,-13.931125379999912],[-73.99572754399998,-14.024510174999932],[-73.87619758099999,-14.270539149999934],[-73.82420362999994,-14.341329351999946],[-73.82465356999995,-14.424309857999901],[-73.93261751199998,-14.366548821999913],[-74.06271353499989,-14.354927480999947],[-74.24692563799994,-14.181612018999829],[-74.21588158399993,-14.095293502999823],[-74.21239454399989,-13.986554737999882],[-74.17432360499998,-13.86658975499995],[-74.03658261599992,-13.78638902299997],[-74.02561154299997,-13.699613860999932],[-74.15007056799993,-13.66266307899997],[-74.2379536489999,-13.70090769199993],[-74.36377758299994,-13.811346474999937],[-74.45824464899994,-13.828541278999978],[-74.61856061799995,-13.824037346999887],[-74.59877764999993,-13.73024066499994],[-74.51162764999998,-13.747685416999957],[-74.39469155099994,-13.709342065999977],[-74.38808459899991,-13.61902605299997],[-74.48967762499996,-13.591586048999943],[-74.71860449999997,-13.605154170999981],[-74.83161954399998,-13.578009879999911],[-74.91715954799997,-13.525627343999815],[-74.93067955799995,-13.409259202999863],[-74.80162054499993,-13.374007264999875],[-74.69544261899989,-13.415288640999847],[-74.36632551399998,-13.446871651999913],[-74.25222752699995,-13.39783265699998],[-74.34671755999989,-13.318778066999869],[-74.35425557299999,-13.244467130999965],[-74.47044350399995,-13.259367974999975]]]]},"properties":{"objectid":128,"eco_name":"Central Andean puna","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Neotropic","eco_biome_":"NO10","nnh":1,"eco_id":588,"shape_leng":130.764930269,"shape_area":18.3834224152,"nnh_name":"Half Protected","color":"#AA66CD","color_bio":"#D6C39D","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":212540.2302850859,"percentage":4.352385433210497}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-71.71920750099991,-14.894420129999958],[-71.61982763299994,-14.78048877499998],[-71.66300952199998,-14.721327458999895],[-71.58200060699988,-14.64741935699982],[-71.60046359299997,-14.589898042999948],[-71.56582655099999,-14.397931505999964],[-71.65194658299998,-14.273984614999904],[-71.69476352399988,-14.39759254099988],[-71.7608486279999,-14.395575854999834],[-71.74594862199996,-14.231146719999913],[-71.76063555999997,-14.134853906999922],[-71.83432757599991,-14.124368648999962],[-71.87448862699983,-14.364017821999937],[-71.83020753599999,-14.457619875999967],[-71.82112155299995,-14.563839879999932],[-71.87396257899991,-14.641815718999965],[-71.98559561599996,-14.598777495999968],[-72.01107056599994,-14.673914719999914],[-71.81736763399988,-14.843022466999969],[-71.71920750099991,-14.894420129999958]]],[[[-72.28112056699996,-14.503242742999873],[-72.20846555999992,-14.427910722999968],[-72.25122852099992,-14.365458838999814],[-72.24101248999983,-14.271017085999972],[-72.30554962399992,-14.216314438999973],[-72.33792153999991,-14.10646892699998],[-72.27154558399991,-14.032893586999876],[-72.30215461799997,-13.947226177999937],[-72.24235560599993,-13.847923758999968],[-72.27014161499983,-13.771611056999973],[-72.37397763699988,-13.72367914399996],[-72.41129252899998,-13.890852011999982],[-72.49117256999995,-13.973824470999944],[-72.56145449199994,-14.120297893999862],[-72.52584062399995,-14.23255940599995],[-72.58186358899991,-14.406164210999975],[-72.42411063899993,-14.424865912999906],[-72.28112056699996,-14.503242742999873]]],[[[-72.64524049999994,-14.337796546999925],[-72.65571553199987,-14.188374370999952],[-72.79353363399991,-14.17452243699995],[-72.86684460899988,-14.114707331999966],[-72.7829814879999,-13.976275506999968],[-72.67645252799997,-13.881516750999936],[-72.62635757999993,-13.75203713399992],[-72.65380060199988,-13.672418608999976],[-72.72676858999989,-13.605896807999898],[-72.80187949499992,-13.639927836999846],[-72.78173861899995,-13.739609955999867],[-72.81999949299984,-13.817157983999948],[-72.88730651099996,-13.856157469999914],[-72.9070586329999,-13.91999823599997],[-72.98309355899994,-13.98233310899991],[-73.07498151399989,-13.970444719999932],[-73.09962464499995,-14.036151296999947],[-72.99659764299986,-14.187032427999952],[-72.82426454099993,-14.307323634999875],[-72.70134761799994,-14.299679171999912],[-72.64524049999994,-14.337796546999925]]],[[[-68.02536764399991,-16.878334972999937],[-68.11408254499997,-16.72852152999991],[-68.08027648599995,-16.579788680999968],[-68.01162752499994,-16.50445146499993],[-67.8750605059999,-16.506472508999934],[-67.78845247999993,-16.662499457999957],[-67.62848653999998,-16.674413829999878],[-67.7120665199999,-16.51198495199992],[-67.87580850699999,-16.354465018999974],[-67.92887852699994,-16.26537863099992],[-68.02105750099997,-16.177346183999873],[-67.98257450799991,-16.105971428999965],[-68.11581458199998,-16.123625560999812],[-68.11033650499996,-15.987132972999973],[-68.04181662599996,-15.88485045199991],[-68.17762759699986,-15.890769249999892],[-68.22380853099992,-15.851291826999898],[-68.22764559899997,-15.722107084999891],[-68.31140863899992,-15.713579503999881],[-68.40721848699991,-15.743810681999946],[-68.45551249799996,-15.636287292999953],[-68.36849962599996,-15.569832714999905],[-68.51038362199984,-15.50634382099986],[-68.6204455539999,-15.484139321999919],[-68.67234059899982,-15.529678368999953],[-68.68885060099996,-15.61164198299997],[-68.66791562499998,-15.785644928999886],[-68.7830885059999,-15.747577341999943],[-68.85080757899993,-15.635666361999881],[-68.98538255499989,-15.59874189899989],[-69.05455052299988,-15.406347045999894],[-68.92414856099998,-15.322994550999908],[-68.86880453099997,-15.24262768899996],[-68.94155157099988,-15.208474786999943],[-68.81900060299995,-15.057533809999882],[-68.79896550699993,-14.960004162999951],[-68.93201464199996,-14.86503300899983],[-69.08679955999992,-14.808524732999956],[-69.0721895669999,-14.752995461999888],[-69.13392664299994,-14.621287934999941],[-69.2051775139999,-14.554542504999915],[-69.32692750699982,-14.494131446999972],[-69.38066053599994,-14.43538302199994],[-69.3685076139999,-14.23334830999994],[-69.40884351199998,-14.16698677099987],[-69.56050851799989,-14.30263278699988],[-69.6445156399999,-14.291945692999889],[-69.62709854799994,-14.201365481999972],[-69.76476258999998,-14.120093039999972],[-69.80386349799983,-14.067492406999918],[-70.02692454999988,-14.073345992999919],[-69.97748556999989,-13.964990280999814],[-70.08094055099997,-13.98440779699996],[-70.24352248299988,-13.980629067999871],[-70.32369957799989,-13.933122116999925],[-70.29325851699997,-13.844754225999907],[-70.27703852899987,-13.658406580999952],[-70.37619761699995,-13.650335981999945],[-70.41941856599993,-13.735644477999926],[-70.45368948499998,-13.904620125999884],[-70.55547361799995,-13.91934511799991],[-70.54070252499997,-13.759695845999886],[-70.62690754999994,-13.773063975999946],[-70.72553254299999,-13.739493950999929],[-70.7172316089999,-13.663810058999957],[-70.60870356499998,-13.595159756999976],[-70.57646961499995,-13.533524772999897],[-70.65108464699989,-13.456415789999937],[-70.75376161899993,-13.565846732999944],[-70.91084250799997,-13.541556312999887],[-70.97959154899996,-13.581290724999974],[-71.03110454699998,-13.554004444999919],[-71.03832253899998,-13.442889912999817],[-71.23495461099998,-13.41274892499996],[-71.34940363199996,-13.298796447999905],[-71.42116563099995,-13.314088559999902],[-71.40428162799998,-13.605210999999883],[-71.33088649899997,-13.621193780999931],[-71.34622957299996,-13.730781800999864],[-71.39759856899997,-13.757552760999943],[-71.74414064499996,-13.34982597699991],[-71.72892749099992,-13.221968593999861],[-71.87265751699994,-13.055827705999889],[-71.92710853899996,-13.023830963999956],[-71.97154251699999,-12.869494141999951],[-72.04808052399989,-12.871834201999945],[-72.0274426019999,-13.10395240299988],[-72.07085449099992,-13.12084244099998],[-72.1744305069999,-13.012380612999891],[-72.3149795999999,-13.006148165999889],[-72.43563055899995,-12.91049857999991],[-72.48780052999996,-13.028841665999948],[-72.44851656099996,-13.07481439299994],[-72.22585264399999,-13.13664936899994],[-71.93067151899999,-13.30166909399992],[-71.75144161799989,-13.463190546999954],[-71.58842449799994,-13.713548774999879],[-71.45901461799997,-13.865371695999897],[-71.38185852899989,-13.932312424999907],[-71.33069656499998,-14.017219762999957],[-71.14689651599986,-14.119655001999945],[-71.15476963699996,-14.18481356999996],[-71.23931856499996,-14.209436919999973],[-71.18676755299992,-14.326736457999914],[-71.31985457299987,-14.385024379999948],[-71.3554915759999,-14.35167681099989],[-71.46621651699996,-14.098449289999962],[-71.53663657399989,-13.877785797999934],[-71.62397751299994,-13.751589371999842],[-71.72418249499998,-13.660285300999874],[-71.78010554799994,-13.523494484999901],[-71.88053164399997,-13.436867347999964],[-72.29529553899988,-13.319360943999982],[-72.36242653699992,-13.249822663999964],[-72.5820545279999,-13.19718917299997],[-72.67083749099999,-13.227138215999958],[-72.7546615519999,-13.200121162999892],[-72.97741649599999,-13.024827739999921],[-73.00907159199988,-12.954232500999865],[-72.93764453299991,-12.863724710999975],[-73.12371859299998,-12.811049310999977],[-73.20852652199989,-12.838926346999926],[-73.13568157999993,-12.940608387999873],[-73.15689852399987,-12.996419625999977],[-73.29872149999983,-13.01945410199994],[-73.32954360199994,-13.113399813999877],[-73.17644461999993,-13.288793148999957],[-72.97858459799988,-13.271750392999877],[-72.86304458899997,-13.296259580999902],[-72.52458149499995,-13.428771602999973],[-72.17647552299991,-13.621604996999906],[-71.98630556299997,-13.648506044999976],[-71.85105148499997,-13.706375374999936],[-71.75205953199992,-13.920561164999981],[-71.56386552099997,-14.16124516699989],[-71.4898145919999,-14.290162861999931],[-71.43123648799991,-14.437684022999974],[-71.36495960599984,-14.47301676199993],[-71.41137657399992,-14.56202888599995],[-71.40043651399998,-14.660492442999953],[-71.31463650299997,-14.722464547999891],[-71.15542560499989,-14.923915375999854],[-71.1666335509999,-14.981872548999888],[-70.84773264499984,-15.132963896999968],[-70.7593456429999,-15.145695840999906],[-70.64884952799997,-15.201334410999948],[-70.56880151499985,-15.30223374999997],[-70.52275854699997,-15.53231196299987],[-70.47554060399989,-15.67606981699987],[-70.37448854699994,-15.90302543599995],[-70.30992157299994,-15.970794128999898],[-70.1993255459999,-16.148954833999824],[-70.09208663799984,-16.241588945999865],[-69.95317855399992,-16.312141603999976],[-69.85317959899999,-16.34080486299996],[-69.73559557899995,-16.32556270799995],[-69.50125164699989,-16.193785945999934],[-69.44124560299997,-16.000821290999966],[-69.62306953399991,-15.994128676999821],[-69.76014751399993,-15.90553715699997],[-69.77404755999993,-15.832106990999876],[-69.83332052299994,-15.797468273999925],[-69.88784748599994,-15.886954309999908],[-69.9643015069999,-15.858137158999966],[-70.02114053399998,-15.79103449199988],[-69.91129250699998,-15.626757906999899],[-69.7894514859999,-15.732059421999907],[-69.81866459799994,-15.605859475999978],[-69.89237958099994,-15.511993558999961],[-69.93532560299997,-15.404399426999873],[-69.83078751199997,-15.28975376699998],[-69.75991852099992,-15.318891776999976],[-69.67449150499993,-15.254653037999901],[-69.62681557499997,-15.358452179999972],[-69.5663835609999,-15.35214362499994],[-69.43330358199984,-15.482823194999924],[-69.35999260699998,-15.47964142499984],[-69.26627354099992,-15.702523102999976],[-69.17507960799998,-15.68509947399997],[-69.10621657399997,-15.732399223999948],[-68.98870849399998,-15.887221524999916],[-68.92059362799989,-15.929346790999887],[-68.7602156339999,-15.95231337399997],[-68.90151256099995,-16.091955544999905],[-68.84762563999982,-16.165591905999975],[-68.67176057099988,-16.217418386999896],[-68.60045655899995,-16.196027769999887],[-68.58525849199998,-16.3159334099999],[-68.64892558499992,-16.315830479999818],[-68.82188448099993,-16.48563677399983],[-68.82652252299988,-16.52738887799984],[-68.85823059199993,-16.592212002999872],[-69.00782761499988,-16.560021973999937],[-69.00801050799993,-16.683276183999965],[-69.13034857599985,-16.726088597999876],[-69.19019352099991,-16.840070411999932],[-69.2686466259999,-16.891969311999958],[-69.33672360499997,-17.05174246899992],[-69.19435848799992,-16.947877779999942],[-69.00817160799994,-16.88054008399996],[-68.92172954399985,-16.831157933999975],[-68.77396363099996,-16.70618794899997],[-68.55969955499995,-16.724720671999933],[-68.47577658699993,-16.84414032899997],[-68.52984656799993,-16.96223782399983],[-68.43490558899998,-17.05430531899998],[-68.42093664499998,-17.12228909199996],[-68.33423658499993,-17.143582813999956],[-68.33062750499994,-17.223365623999882],[-68.25555448599982,-17.293086629999834],[-68.18229648499988,-17.28370895699993],[-68.20493349099996,-17.206792757999892],[-68.14996362899996,-17.125654760999907],[-68.20520757899993,-17.070336211999972],[-68.21562159099994,-16.915968712999927],[-68.05854757499998,-16.924789156999964],[-68.02536764399991,-16.878334972999937]]],[[[-77.70737458599996,-8.353334094999923],[-77.82476062599994,-8.234463619999872],[-77.91980755199995,-8.283790114999874],[-77.99779562899994,-8.429681497999866],[-77.98151361499993,-8.516819092999981],[-77.85752062399996,-8.47859811799998],[-77.74143260599999,-8.586054283999943],[-77.82256356099998,-8.64862871199989],[-77.83553355099991,-8.729990001999909],[-77.6810755269999,-9.065097987999877],[-77.50968153199989,-9.283472717999928],[-77.45367449399993,-9.449151762999918],[-77.41619162799992,-9.744195089999891],[-77.47397663699991,-9.762508877999949],[-77.60018949099998,-9.515835334999963],[-77.59394849299997,-9.41963388499994],[-77.6562345829999,-9.374986168999953],[-77.65098549999993,-9.318014037999887],[-77.73973057699999,-9.281074654999884],[-77.74127955199998,-9.201344482999957],[-77.8204955779999,-9.133533377999925],[-77.81318655899992,-9.078924104999885],[-77.94700649299995,-8.811210140999947],[-78.03667458399997,-8.789543926999897],[-78.08870658899997,-8.818040720999875],[-78.08901252899994,-8.893101502999968],[-77.96700252899984,-8.96388835099998],[-77.95611560999993,-9.217706460999977],[-77.89985661099996,-9.311251685999935],[-77.81497156899991,-9.398430351999934],[-77.72837862999995,-9.431940027999929],[-77.68142656099991,-9.487028074999955],[-77.67097449499994,-9.567193602999964],[-77.731925516,-9.70867459599998],[-77.62773158599992,-9.752228473999935],[-77.60153160099992,-9.934133542999973],[-77.50208249899998,-9.961873785999956],[-77.45303361299995,-10.113459163999948],[-77.38970950799984,-10.159502802999953],[-77.36414352999998,-10.250618280999959],[-77.27020251199997,-10.197412138999823],[-77.17244755999997,-10.034262751999847],[-77.0874175109999,-10.039925230999927],[-77.1365205439999,-10.166496326999948],[-77.07837662299994,-10.205598743999929],[-77.0817875539999,-10.426702117999866],[-76.99309561899992,-10.488936910999882],[-77.02690151099989,-10.561174666999875],[-76.97141264099997,-10.645188829999825],[-77.07155660299992,-10.720316665999917],[-77.17961157299993,-10.889070025999956],[-76.91413155299995,-10.737207374999912],[-76.84069853799997,-10.613266183999883],[-76.74712364099992,-10.729903048999972],[-76.73724355699989,-10.832804823999936],[-76.64044162699997,-10.894641476999936],[-76.64067062099991,-10.974497041999882],[-76.75429553299995,-11.039787541999885],[-76.77085163599986,-11.142192269999953],[-76.60533855199998,-11.200402408999935],[-76.58198556399998,-11.303013331999978],[-76.53809355999994,-11.332655261999946],[-76.57286052099994,-11.41264057899997],[-76.53510256199996,-11.48466560299994],[-76.6214525929999,-11.564781006999908],[-76.60029549599989,-11.644757606999917],[-76.52658051299989,-11.584138676999828],[-76.43113762599995,-11.666534125999931],[-76.41826654299996,-11.750574272999927],[-76.25956761099997,-11.742496967999955],[-76.26423649899994,-11.814252093999869],[-76.38886249099994,-11.948127683999871],[-76.38693951499988,-12.15851848299991],[-76.22509753699995,-12.072244223999917],[-76.06705457399994,-12.215297494999902],[-76.10077664599999,-12.339215216999946],[-76.03226464599999,-12.32906573799994],[-75.92436256199994,-12.213264715999856],[-75.92425560899989,-12.091519918999893],[-75.84718350699995,-12.07388020399992],[-75.79609664499992,-12.11887425999987],[-75.73715258699997,-12.388925937999886],[-75.80029262599999,-12.520117809999874],[-75.74350757899998,-12.598304537999923],[-75.7034756089999,-12.78367300899987],[-75.72861461299988,-12.877811671999893],[-75.80641962899989,-12.981811812999979],[-75.78653758699994,-13.057545492999907],[-75.7279816119999,-13.093151314999943],[-75.6461566349999,-13.04694221799997],[-75.59854859799998,-12.930641298999944],[-75.48818961099994,-12.92120763499986],[-75.3991315539999,-12.98483549999986],[-75.47395361899993,-13.045218395999939],[-75.46740751999994,-13.098718742999893],[-75.52403264099996,-13.162524471999973],[-75.47226751499994,-13.229303261999917],[-75.39908562099993,-13.160995612999955],[-75.37426764399993,-13.07348854299994],[-75.32576760599983,-13.025966839999853],[-75.25513464899996,-13.089532511999948],[-75.30663255899992,-13.257727133999936],[-75.31034054499997,-13.371540638999875],[-75.20716048999998,-13.40134266299998],[-75.20095855299991,-13.489909539999928],[-75.29536459899992,-13.544242041999894],[-75.12076553199995,-13.735145251999938],[-75.14579054199999,-13.78984689299989],[-75.09626053499994,-13.855557325999825],[-75.03233360399997,-13.823985378999964],[-75.00106055499987,-13.748210459999939],[-74.91182765199994,-13.812256413999933],[-74.87142956099996,-13.754035211999962],[-74.89621753099993,-13.650439917999904],[-75.07129654499994,-13.460566675999928],[-75.13760360199996,-13.289756061999924],[-75.10852057699992,-13.143621938999956],[-75.0065455049999,-13.078140163999876],[-74.82403559799997,-13.152747316999978],[-74.47044350399995,-13.259367974999975],[-74.49221750899994,-13.23861136599993],[-74.60400359899995,-12.927114361999884],[-74.68418857299997,-12.861723782999888],[-74.73862450799999,-12.99417377899988],[-74.89185357699984,-12.96356994099989],[-74.94045252199999,-12.862941672999852],[-74.82466859999994,-12.813944084999946],[-74.78717751999994,-12.757465982999975],[-74.78233361799994,-12.635347017999834],[-74.82427951199998,-12.553279803999942],[-74.87261962399992,-12.566031695999982],[-74.90849249299987,-12.701940735999926],[-75.11597460399986,-12.77321289699995],[-75.08955350399992,-12.67536725299982],[-75.02864858399988,-12.56273509399989],[-75.0631025639999,-12.456337058999907],[-75.12863949199988,-12.450983704999942],[-75.26394654299992,-12.622069915999873],[-75.36738559899993,-12.631092531999968],[-75.37086459199992,-12.564185832999954],[-75.25469258699997,-12.40099705199998],[-75.38196558399994,-12.31930735799989],[-75.50878864099997,-12.05804527999993],[-75.78767350299995,-11.938864339999839],[-75.85252361699992,-11.82196545699992],[-75.85517162799988,-11.738295286999914],[-75.93927748899989,-11.687975537999876],[-76.02140857299997,-11.57127664599983],[-75.93384551199995,-11.548411316999932],[-75.71236461699988,-11.752750214999935],[-75.63235448999995,-11.779143486999942],[-75.54212162599998,-11.681822046999912],[-75.42810058499998,-11.718175534999943],[-75.32045750199995,-11.819807619999892],[-75.14136456199998,-12.102605153999889],[-75.05601449199992,-12.051290639999934],[-75.04723360999992,-11.914718255999958],[-75.09051557899994,-11.814611844999888],[-74.99291954799997,-11.750252239999895],[-74.93269356199994,-11.655197769999972],[-74.9613874989999,-11.50260555799997],[-75.02537561799988,-11.43530792799993],[-75.0736005629999,-11.525450937999892],[-75.08660860599997,-11.660712558999933],[-75.24057762999996,-11.70580535399995],[-75.34311663599982,-11.649781383999937],[-75.40650964099984,-11.539572767999971],[-75.37829565199996,-11.399759437999933],[-75.46320349299998,-11.30080117999995],[-75.46492764999988,-11.460260349999942],[-75.59978459299998,-11.518918417999942],[-75.76987453099997,-11.425083849999965],[-75.83760852299997,-11.31261262299995],[-75.75399048999992,-11.222647643999949],[-75.72885165299994,-11.091866652999954],[-75.95638260599986,-10.961211725999874],[-76.00241853299991,-10.867101392999814],[-75.9663845639999,-10.800256888999854],[-75.98233063099997,-10.699947132999966],[-75.8719025769999,-10.753614446999961],[-75.7792205209999,-10.738471365999942],[-75.74012749199989,-10.697680162999973],[-75.83778353799988,-10.599503936999838],[-75.88480349999992,-10.498535027999935],[-75.88356750399998,-10.271282018999841],[-75.94805954399999,-10.10948429799987],[-75.92281358699995,-10.045201973999895],[-76.02355953699998,-10.022948355999915],[-76.07051059999992,-10.107531482999946],[-76.07211254899994,-10.220469580999975],[-76.04698963799996,-10.427482975999908],[-76.07198363599991,-10.565049452999915],[-76.11941565199999,-10.652736230999892],[-76.21262358899997,-10.640742062999948],[-76.2006225479999,-10.57145004199998],[-76.26340451099998,-10.52846697199982],[-76.25409657499989,-10.384542150999948],[-76.41306255399996,-10.48521098699996],[-76.44029954899997,-10.561471721999851],[-76.57351648899993,-10.552900387999955],[-76.59318563099993,-10.497749140999929],[-76.55219259199993,-10.399767039999972],[-76.44488562299989,-10.279394360999959],[-76.39170864999988,-10.144652919999885],[-76.38721460899995,-10.062522673999865],[-76.42546860899995,-9.686931100999914],[-76.47885864999995,-9.504718919999902],[-76.5710066119999,-9.318394240999908],[-76.67227156899997,-9.156248502999915],[-76.83035258699988,-9.0363490659999],[-76.63596351199999,-9.36260810999994],[-76.57146459899997,-9.48542444899988],[-76.52313253399996,-9.654874344999882],[-76.51779963099989,-9.857105192999882],[-76.54188553299997,-10.04981352999988],[-76.57548556599994,-10.12129758499998],[-76.6675036069999,-10.21662396399995],[-76.77769462099991,-10.248929494999913],[-76.78754453099998,-10.159479835999946],[-76.73843361899998,-10.075418566999929],[-76.74944257799996,-10.026411255999903],[-76.86701955799998,-10.029174098999874],[-76.77918961799998,-9.859289014999945],[-76.84207149299982,-9.755793129999915],[-76.90927155799989,-9.819866744999956],[-77.02469656799997,-9.848731671999928],[-77.02241551599997,-9.784735170999966],[-76.95340764299988,-9.598090303999925],[-76.94779964699995,-9.42271188799998],[-77.00558465499995,-9.32750754899996],[-77.0867305299999,-9.33477013299995],[-77.22385360499999,-9.482063640999911],[-77.27559660199995,-9.471600175999981],[-77.32218154299989,-9.360255141999971],[-77.33142862699992,-9.273252494999895],[-77.29205363099993,-9.18972632699996],[-77.19853958699991,-9.136875912999926],[-77.16434460699992,-9.065358161999939],[-77.23565649799997,-9.03607212799983],[-77.38213360899988,-9.128029819999938],[-77.4382625209999,-9.11521154299993],[-77.48266565299997,-9.025435827999956],[-77.55492352499994,-8.971447653999974],[-77.57917756799998,-8.862460616999897],[-77.46667448999989,-8.762026641999967],[-77.53684258699997,-8.68572734999998],[-77.68536354099996,-8.61267436999998],[-77.68693565099994,-8.473279296999976],[-77.59196449699988,-8.428024563999884],[-77.63150763399989,-8.374559420999901],[-77.70737458599996,-8.353334094999923]]]]},"properties":{"objectid":129,"eco_name":"Central Andean wet puna","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Neotropic","eco_biome_":"NO10","nnh":3,"eco_id":589,"shape_leng":80.8779337311,"shape_area":9.76349008009,"nnh_name":"Nature Could Recover","color":"#F5C47F","color_bio":"#D6C39D","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":117573.98986631402,"percentage":2.4076727503879622}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[59.06341161400013,44.604887917999974],[59.036804604000054,44.700739842000075],[59.10032249900013,44.79862873600018],[58.95633347199998,44.8013298890001],[58.99195052500011,44.73516783900004],[58.839099480000186,44.57418785600004],[58.84265860400012,44.418929193000054],[58.89962352700013,44.43489018100013],[58.96847549700004,44.565490123000075],[59.06341161400013,44.604887917999974]]],[[[59.22469753700017,45.651309521000144],[59.119758623000166,45.638870274000055],[59.08810051000006,45.57069019700009],[58.96348960600005,45.56573045800013],[58.906467518,45.415428181000095],[58.95989963599999,45.37548791000006],[58.88238949500004,45.30248991500008],[58.88673752400001,45.15811884100003],[58.98019457100014,45.092017811],[58.99102063700008,44.98263883600009],[58.91173152100009,44.95141892900017],[58.96333353400007,44.869719681000106],[59.18399048900005,44.965689958000155],[59.17290860700007,45.06508977400017],[59.25371954100018,45.0722499310001],[59.32934962100012,44.93084973900005],[59.437412637000136,45.06657387400003],[59.46007160400012,45.19024986100004],[59.440368599000124,45.3244391020001],[59.283969494000075,45.37032599800017],[59.285091496,45.44602900100017],[59.21503052000014,45.476966270000105],[59.33335147700012,45.613929418000055],[59.22469753700017,45.651309521000144]]],[[[60.08739050500003,45.757800595],[59.79573061700012,45.72317847400018],[59.79715755200016,45.57910546000011],[59.914649539000095,45.59074021300012],[60.24813462100008,45.71300468700014],[60.08739050500003,45.757800595]]],[[[65.8177106350002,44.42702812300013],[65.77361260400005,44.56122893100013],[65.62695360600009,44.66043395200012],[65.55464158600006,44.66137993300015],[65.46566064300015,44.7281977830001],[65.03014349199998,44.81364391000011],[64.92674249000004,44.78367894200011],[64.77391860200015,44.80895892900003],[64.646179571,44.86032792600008],[64.30551957900002,44.86715984700004],[63.934810633000154,44.93891095000009],[63.80341357200007,45.10042871600007],[63.786598636,45.18364978300019],[63.96789953700005,45.28778001],[64.00087763200008,45.38203015300019],[63.81859956800014,45.42996893900005],[63.74533854900005,45.58166127000004],[63.56327053700005,45.61845044900008],[63.44149053600006,45.594230269000036],[63.22723048300003,45.509601210000085],[62.94955060300009,45.60123050000004],[62.66691953300017,45.61303741600011],[62.53984451600007,45.672420350000095],[62.213897615,45.61120932300014],[62.180736627000044,45.559760196000184],[62.0176775970001,45.55596922800004],[61.87297862300011,45.40697017000008],[61.67758154000012,45.33525812700003],[61.603778547000104,45.33719987900014],[61.52410855700009,45.24359782500005],[61.458145494000064,45.23247084800016],[61.39493555000013,45.314098013000034],[61.36336863200006,45.46929917600005],[61.24671953000012,45.54254125200009],[61.16624454200013,45.781021652000106],[61.08590651500015,45.88599107599998],[60.91219760600018,45.948571036000146],[60.81898849600003,45.806320751000044],[60.88143954200001,45.641639487000134],[60.845001565000075,45.528980338],[60.90563960500015,45.38169018300016],[60.95929753200005,45.00048776400001],[61.002712605,44.86181973700019],[61.06333958100004,44.76637969900003],[61.00271947800013,44.72313997500015],[60.89702954600011,44.72313997500015],[60.69953162300004,44.66249774400018],[60.68048861000017,44.532458886000086],[60.5610355930001,44.41979923400004],[60.54364062900004,44.3251184290001],[60.44655958300007,44.33316036300005],[60.31848963400006,44.211879420000116],[60.28205148900008,44.1338507750001],[60.16257852300009,44.08182882800014],[59.92866860700008,43.90853935000018],[59.805149529000175,43.90855125200011],[59.89781951500004,43.63761310500007],[60.07848355900006,43.49227341800014],[60.309699532000195,43.36878099500018],[60.38045855300004,43.04229362799998],[60.3174206060001,42.96050301700012],[60.14701852600007,42.88511333000008],[59.97285850300011,42.71493739400012],[59.75328449100016,42.592756905000044],[59.69165051300007,42.522956607000026],[59.815189540000176,42.413318296000114],[59.95404062799997,42.3718914100001],[60.18479961900016,42.216107536000095],[60.365173482000046,42.268048179],[60.59957156000013,42.39233822400007],[60.815578570000184,42.44719694200012],[61.03585850600007,42.47972761200003],[61.25204857600016,42.45086603700008],[61.40697062200013,42.52251739500008],[61.55498162100014,42.493335631000036],[61.70655057100009,42.55493826100013],[61.961433518000035,42.52573738700005],[62.20433051100014,42.57786813100006],[62.380153502999974,42.71573417700006],[62.71155953800019,42.789624845000105],[62.817653477000135,42.83833459900018],[62.8983685230001,42.9284140740001],[62.92469054900005,43.01019261500005],[63.03464150500014,43.06293440000002],[63.27214055200005,43.05956252800013],[63.380168532000084,43.14390492600006],[63.518791632000045,43.17304176300007],[63.70275160800003,43.30155444300016],[63.99369048500006,43.36472197400019],[64.25006859600006,43.48471243900008],[64.361816632,43.51050355500013],[64.63535350500007,43.50303041800004],[64.79247261500012,43.551431382000146],[64.85475149700005,43.618192235000095],[64.89452362700013,43.80088168300017],[65.06590253400003,43.951771027],[65.24513260300012,44.05426091600003],[65.38030956700004,44.233795583000074],[65.48330656100018,44.30141021600019],[65.74772660500008,44.35976033200012],[65.8177106350002,44.42702812300013]]],[[[54.028049494000186,46.69868783600009],[53.92287857000014,46.68873181100008],[53.74932858200009,46.614493295000045],[53.62593053900014,46.430723588000035],[53.63616149000012,46.25747803100006],[53.46936748400003,46.08359947300016],[53.50883049000009,46.00064109500016],[53.78351551500015,46.01055940100014],[53.83200046700006,45.92319901500008],[53.985649469,45.92080011400009],[54.17639962499999,45.79792057500009],[54.27590958000019,45.7096554470001],[54.41915848400009,45.68885038900015],[54.50350155300015,45.70949568700007],[54.57509960200014,45.64907038000007],[54.76897050800005,45.54172820700006],[54.909732502000054,45.375389171000165],[54.82057956300008,45.26948902099997],[54.806980595000084,45.178080846000114],[54.66318150200004,45.06587884600009],[54.45497150700004,45.12765799900018],[54.18273148200012,45.03847790200007],[54.04021850900011,44.93636972500008],[53.86580250300017,44.926867664000156],[53.68657260300017,44.87491880800013],[53.5622025940001,44.77529100300018],[53.49384347900008,44.576727908000066],[53.36333456500017,44.50825111200015],[53.32806049800007,44.40158016200013],[53.10472854400001,44.25585155500016],[53.08129861000015,44.146079636000195],[52.96580151600017,44.12911952600007],[52.708770623000134,44.19902040700015],[52.51916862000019,44.287429537000094],[52.33604851000018,44.31657039700019],[52.18119452500014,44.382690370000034],[51.95526853900003,44.366512123],[51.81177555400012,44.39974905100007],[51.581394586000044,44.42216812800007],[51.492423534000125,44.526691131000064],[51.28576251400011,44.54125904600011],[51.21979861200009,44.48638909700003],[51.09281948500018,44.4740899950001],[50.90903049900004,44.60081397700014],[50.81386957900014,44.63357883700007],[50.73884953400017,44.602989080999976],[50.31145461400013,44.63978882100014],[50.24059249600003,44.532427873000074],[50.26787961400004,44.35210011100003],[50.40348858200019,44.29272036200007],[50.60935952300008,44.27973947600003],[50.82998261400007,44.198219600000016],[50.86939952000006,44.02700095500006],[50.99792460600008,43.92908121500011],[51.020370504000084,43.80618340400014],[51.15740959200008,43.625855977000015],[51.27188459700017,43.55627226700017],[51.30706059500011,43.4728106390001],[51.31312959500008,43.33229306200019],[51.282062574000065,43.14747192900006],[51.652324598000064,43.18052277900017],[51.663448557000095,43.09805340100013],[51.773750547000134,43.023937763000106],[51.91202948600011,42.82671862199999],[52.17155047500012,42.86955752300008],[52.21905860000015,42.954372828000146],[52.45442948200008,42.97342388800007],[52.68292955000015,42.95653603000005],[52.8322905390001,42.97306497500011],[53.103767474999984,42.95575399799998],[53.284599492000154,42.92799397300007],[53.46231847100006,42.960514919],[53.593353602000036,42.91862518500005],[53.79399155300007,42.93656597800009],[54.03218462199999,42.871895404000156],[54.16416958999997,42.79840975000019],[54.300350539000135,42.79095572300014],[54.479545571000074,42.6139550740001],[54.54327351600011,42.602236000000175],[54.90116150300008,42.71465542600009],[55.07188058700007,42.71493739400012],[55.22726849900016,42.66072659700012],[55.51189060600012,42.68507552200009],[55.7304385060001,42.559855086000084],[55.86428056800008,42.547427405000064],[55.985210476000134,42.500998535000065],[56.11374662600008,42.529338420000045],[56.30038847600014,42.50666755100019],[56.57245248100003,42.52395556199997],[56.70764553800012,42.463958737000155],[56.880630586000166,42.48718582900011],[57.08286663100006,42.46059792900007],[57.2460515570001,42.50566775800013],[57.4596294910001,42.522677489000046],[57.609069605000116,42.49578767300005],[57.84769048600009,42.30484791900017],[57.9467045670001,42.30536692600003],[57.96664058900012,42.42210705600007],[58.089263474,42.48765873600007],[58.28742960200009,42.420886987000074],[58.36909448500006,42.30308989900004],[58.51187852900006,42.2919699630001],[58.53730352400004,42.35952760000009],[58.33309957500006,42.53180253199997],[58.35385149100006,42.6316479300001],[58.48109850400016,42.62026497100004],[58.63248858400004,42.69672653500015],[58.62878059800005,42.91979328700006],[58.608501589000184,43.10307332300016],[58.435829522,43.18946392300012],[58.35576256500008,43.255763603],[58.293521570000166,43.370821150000154],[58.30535849299997,43.449361762000194],[58.38656958000007,43.598791147000156],[58.32220058700011,43.75733249900003],[58.43563053499997,43.94398910100006],[58.410083500000155,44.051978859000144],[58.459163567000076,44.095500886000025],[58.31602060900002,44.29853036200012],[58.29182859300016,44.39377912500015],[58.34085853500005,44.572478954000076],[58.29209849,44.72473773400009],[58.28556848500017,44.84405781400005],[58.340339528000186,45.02770866500015],[58.42467455000002,45.097380721000036],[58.447494616000085,45.23338984000014],[58.57434047200013,45.411399],[58.688285572000154,45.788921764000065],[58.77767152900003,45.842258831000095],[58.68574853800004,45.98824023600008],[58.645458572999985,46.109391427000105],[58.53770853700007,46.16564288200004],[58.23685051600006,46.210640794000085],[57.98907056200011,46.168629857000155],[57.54679156100008,46.20807777600015],[57.442390599000134,46.24054105400012],[57.16928053300012,46.37239258200009],[57.087688572000104,46.389673384000105],[56.76892848200009,46.3699435580001],[56.620464525000045,46.4239637500001],[56.45050450700006,46.54099909100012],[56.15880555900014,46.49775886400005],[55.87253959300011,46.539052981000054],[55.74613948700005,46.60212244400009],[55.38919060800009,46.57055133500012],[54.98278447700011,46.66981469400014],[54.873191595000094,46.65687454400006],[54.63190459800012,46.66852069600003],[54.56089060000005,46.59814321900012],[54.480850633000045,46.60216435300009],[54.28728449300013,46.690272740000125],[54.12063951700014,46.678942754000104],[54.028049494000186,46.69868783600009]]],[[[80.208808584,46.91468478700011],[80.12861657000013,46.889148648000116],[79.93260157300017,46.905025649000095],[79.70356757700017,46.78270317200014],[79.5186465320001,46.75832289700003],[79.34607655600013,46.86717263900016],[78.94600664100017,46.92771596400013],[78.77953349400008,46.90768489200008],[78.43518865100015,46.790275048000126],[78.17343857800006,46.775611076000075],[78.02648956600012,46.82880431000018],[77.51081057500011,46.792068272000165],[77.3444135360001,46.79984215200017],[77.10513249600007,46.75866320300014],[76.94812754700001,46.75383304700017],[76.71761364200006,46.79121432400018],[76.26914259500018,46.93393382700009],[76.13002764500015,46.96296421400018],[75.99698655700001,46.95853521599997],[75.83602149400002,46.92006378899998],[75.69328355000016,47.00542525900005],[75.28778853200009,47.09603665000009],[75.08940162400012,47.05254446300012],[74.86499762400018,47.09956476100001],[74.72074155000007,47.0523736400001],[74.56864956900012,47.04197438000017],[74.40743254600005,46.95746300299999],[74.04679160700016,46.85022359300007],[73.5676875530001,46.80606437400019],[73.51117659400018,46.77915209500003],[73.31984758400006,46.607722226000135],[73.07376848500007,46.52806313200011],[72.91532151299998,46.51558214300013],[72.74098161500012,46.4118787220001],[72.38249163900014,46.33048826300006],[72.3140865920002,46.19778580400015],[72.18612661400005,46.19542780699999],[72.09504650700012,46.136082759000146],[71.89605761100006,46.09389949000018],[71.72099251100002,46.15858967800017],[71.51274161200001,46.136555666000106],[71.3328626170001,46.15284857700004],[71.21662154500018,46.22028098800013],[70.99913764400003,46.24044181300019],[70.88102757600018,46.287431097000194],[70.84317758300011,46.35471129300004],[70.60267664100007,46.54876207500007],[70.46273054200014,46.57794015000013],[70.09073648100008,46.511510885000064],[69.90936249000003,46.58834343299998],[69.58616652900008,46.60683324100006],[69.43884251100013,46.587191257000086],[69.21476758400019,46.444372846000135],[69.05605356500013,46.42212157600011],[69.00012263400004,46.45456172000013],[68.83747062900011,46.41584269200018],[68.56092063000011,46.43401164100004],[68.57791862700014,46.374582606000104],[68.51631951800005,46.311353049000104],[68.41194956800018,46.29024322600009],[68.30500050700016,46.37067228],[68.20699359500014,46.38079242300006],[68.05053749300009,46.232400047000056],[67.97341962500019,46.18583069600004],[67.6011506390002,46.22280997600012],[67.38831349700001,46.20058988600016],[67.14808664400005,46.13090978400015],[67.07417250700007,46.20399998000005],[67.16623648100011,46.30563122600017],[67.04129750900012,46.363172321000036],[67.01748653400006,46.45958181000003],[66.84612254600006,46.58927416000017],[66.60427060900008,46.594431209000106],[66.39273852999997,46.717036995000115],[66.10501863900004,46.73410405900006],[65.9927296350001,46.864704504000144],[65.96798659199999,47.009835481000096],[65.84768650000018,47.14932409600016],[65.89810163600009,47.250375818000066],[65.88900760600012,47.318335116000185],[65.78134155700013,47.377578575000086],[65.56231656000006,47.38959856000014],[65.46389055300006,47.432086930000025],[65.32054156800012,47.59562791900015],[65.29234350500013,47.77372928000011],[65.10649860600006,47.88345996000015],[65.01236748700012,47.89033010300005],[64.96520955800014,47.77379013300009],[64.97737153200012,47.63149022700003],[64.90377054300012,47.52567741700017],[64.93296052099998,47.45858715500003],[65.0499195860001,47.378535621000026],[65.052429631,47.29127782900014],[64.96903958500019,47.14241590000006],[64.979606483,47.053963687000135],[64.89761353200004,46.99292415300005],[64.76576954800004,46.99515608700017],[64.62857858000007,46.952304948000176],[64.41261264200006,46.99195537300005],[64.47074851600001,46.81752428000016],[64.40841649300006,46.746582030000184],[64.28642258600013,46.734324838000134],[64.181419635,46.774265110000044],[63.83646056600003,46.665003649000084],[63.59967062800007,46.45599167300003],[63.38068049900005,46.36374044700017],[63.19533952000006,46.19963183500005],[63.0431975840001,46.11963746500015],[62.87569061300013,46.09598641700012],[62.790031586000055,46.02641025000008],[62.60308849100005,45.96173129400012],[62.49275548700007,45.96997908700018],[62.25033156900008,46.05449046400014],[62.07763653500007,46.01619019500009],[62.09118655200007,45.90845893500011],[62.163650620000055,45.85089487400012],[62.31383856700006,45.79156860100011],[62.59803051500006,45.814838776000045],[62.72837849700011,45.74819979600011],[63.00653061300005,45.72214448200009],[63.145801634000065,45.64907038000007],[63.27759163900015,45.63931652700012],[63.45862951600009,45.71710964100015],[63.671459617000096,45.76176875600015],[63.758060602000114,45.75537856100016],[63.948348580000015,45.63159930800009],[64.01033057500018,45.55543127800013],[64.18279259100012,45.541919147000044],[64.35579658200004,45.488338334000105],[64.48171254900012,45.38101896000012],[64.57183862700003,45.40706991500008],[64.58601359900013,45.47803831600015],[64.72183949000004,45.47822908800015],[64.77336154100016,45.41953598400005],[64.95758856400016,45.39609096300006],[65.08479350000005,45.41933012500016],[65.29251064000005,45.356490159000145],[65.35146358200012,45.259547915999974],[65.46775863300019,45.212280017000126],[65.60415650600015,45.108778936000135],[65.60987849600019,44.97252171200017],[65.65986649000013,44.92767970300014],[65.81626157200009,44.9194786810001],[65.92144758300003,44.723254807000046],[66.04477656000017,44.685347818000025],[66.09367356600006,44.574469823000186],[66.20320861200008,44.539813168000194],[66.24595648600013,44.46855911200015],[66.35819251600014,44.46995905800014],[66.45451349200016,44.42240818600004],[66.5240175740002,44.241119354000034],[66.68414360800011,44.24317945900009],[66.75657649500005,44.19824944000004],[66.89089951100004,44.188518553],[66.98722048700006,44.14384066200006],[67.16394051000015,44.118640638000045],[67.21946760200007,44.056411879999985],[67.20374248100006,43.94204014100012],[67.36007654200006,43.86983540900013],[67.36871359000008,43.819321534000096],[67.52555056600016,43.94554226700018],[67.58558661800015,44.05536296900016],[67.66355860200002,44.10322983900011],[67.62449658600013,44.20378149600015],[67.49237851400017,44.289638336000166],[67.42186759700007,44.39588113800005],[67.26193954300015,44.47356009100014],[67.14814749600009,44.558509003000154],[67.20263657200013,44.620718818000114],[67.28562160500013,44.60553282100017],[67.47046654200011,44.478324029000134],[67.75393664100011,44.30937922700008],[67.86927062300015,44.26325931300005],[68.02426156800016,44.14495461700011],[68.3050685680002,44.130100544000015],[68.47878250500008,44.032329834000166],[68.67933663800005,43.99250087400003],[68.9381175050001,43.900452322000035],[69.09982252300011,43.784611738000194],[69.23779250500007,43.73543259700011],[69.40029950300016,43.640034972000194],[69.48539761300009,43.64946092500003],[69.59342961600015,43.77098578100015],[69.72213759500016,43.77430048800005],[70.00714862300003,43.62600098400003],[70.09957151000003,43.539041421000036],[70.18752248499999,43.51869049500016],[70.28717057400007,43.41180295700019],[70.42720049200005,43.34066306200009],[70.594383586,43.1872819460001],[70.61833956800007,43.055793522000045],[70.66909752400016,43.0100866680001],[70.82997156000016,42.9796449370001],[71.06333162300007,42.98032387100017],[71.15660862700014,42.95979407600015],[71.2831876030001,42.87319644300004],[71.36583752700011,42.77154709100006],[71.50798756400013,42.85269665500016],[71.52284951600006,42.94384398400007],[71.60777261200008,43.04525344600012],[71.91198758600012,43.08969547000004],[72.2031785900001,43.03806344900005],[72.57821662200007,43.03326464200006],[72.82684348500004,42.99125286700007],[73.03019750800007,42.933082962000185],[73.21292148900005,42.91986520299997],[73.45704659799998,42.857186505000186],[73.85061651500001,42.83548475200001],[74.13318656500013,42.87590547400009],[74.38079050000016,42.88793618700015],[74.8252865130001,42.83635462600006],[75.14585156200019,42.7338771420001],[75.36695057800006,42.76175518400015],[75.362129643,42.85852543000004],[75.06797764700019,42.93872498900009],[74.94566355100011,43.056964473000164],[74.85697949500013,43.2157926540001],[74.78491960300005,43.28537250900007],[74.59834262900006,43.39452198700013],[74.40808063500009,43.41708188000007],[74.2704776130002,43.52353054100007],[74.29897356900017,43.63659017800012],[74.2830885210002,43.715729761000034],[74.32631651100019,43.77822254800003],[74.4915315340001,43.79983260400013],[74.77992264800002,43.68634197000006],[74.93010757700017,43.576181131000055],[75.04438057800007,43.43860074000014],[75.25662260400014,43.311072262000096],[75.39488260000007,43.26444155500019],[75.69518255400004,43.299914440000066],[75.83318354900018,43.30033437300011],[76.1345366060001,43.22369276500018],[76.43414253800006,43.19269481100008],[76.58598356400012,43.231181661],[76.79406749600008,43.42200289500005],[77.143623536,43.46852363100015],[77.26323664700016,43.50589149700005],[77.48014856700013,43.51655059500001],[77.62593853000004,43.485242678000134],[77.80738862900012,43.50951147300009],[77.92817654700019,43.47289060300017],[78.16404749400004,43.489431450000154],[78.19564861000009,43.574983357000065],[78.09404753800004,43.64596298900017],[78.06964865600008,43.76677454500003],[78.08724964700008,43.854008532000194],[77.92443855400012,43.86291950100008],[77.82447849100015,43.83666335700008],[77.70610858400005,43.85160544000013],[77.6883625860001,43.955119933],[77.71971861500003,44.02719893600016],[77.95683259800006,44.22092064399999],[77.98728958400011,44.26488842000009],[77.99247764700016,44.43415810500011],[77.88964862600017,44.68931899600017],[77.93646256200003,44.76805792400006],[78.19352765300005,44.83462096400012],[78.33009349900016,44.947909929000105],[78.361518595,45.04493967900015],[78.33598363000016,45.18504989600012],[78.26965360700012,45.341017836000105],[78.31437659200009,45.421298196],[78.41129251500001,45.443260123000016],[78.67014362300011,45.40536805300013],[78.926582586,45.47961025800004],[79.27767150900002,45.46765129400012],[79.41401657600005,45.487079037000115],[79.51003261800008,45.53324840300013],[79.66442861500008,45.56103826800006],[79.91117860200018,45.678638549000084],[79.99191259000014,45.753639651000185],[80.20120955100003,45.799930891000145],[80.40714251900016,45.88372092100019],[80.67400354100005,46.043110522],[80.78955863700008,46.09095056899997],[81.067397605,46.12975073400003],[81.04051952400005,46.21444098100005],[80.93100761199997,46.26489819400018],[80.67916059000015,46.30466211099997],[80.53646053300008,46.3771685910001],[80.548019512,46.461881804000086],[80.35993161700014,46.53179408500017],[80.28495063100013,46.59394321500008],[80.25003061700005,46.693141698000034],[80.18192262399998,46.755541950000065],[80.208808584,46.91468478700011]],[[74.13504064200015,45.24077899100001],[74.13720652600011,45.07712870100016],[74.01696762200015,45.08317088000018],[73.97444958000011,45.20790801600015],[73.87072755100013,45.21509901900015],[73.82195258600007,45.297160868000105],[73.71800256900008,45.34563006200017],[73.61653862600002,45.49169528600004],[73.51702850300006,45.5610883920001],[73.44410661600011,45.560081222000065],[73.42389650700011,45.660209426000165],[73.51773861800007,45.66402453300009],[73.55446660900009,45.75234950900017],[73.40695953,45.779598741000086],[73.47036762200014,45.836528962000045],[73.57528658600012,45.792419700000096],[73.66754150100002,45.996422147000146],[73.62313049000011,46.13810061900017],[73.65825653100006,46.1664208900001],[73.86509658800003,46.20259198800011],[73.95485654600003,46.25721886200017],[74.07189155100019,46.43361065000016],[74.2220225010002,46.451730649000126],[74.38780950500012,46.51979287600011],[74.392196593,46.56347533200005],[74.53930653800006,46.59670136400007],[74.55211660100014,46.70553166000002],[74.62165052300014,46.767753041000105],[75.00939954300003,46.75861307900004],[75.09049965300011,46.789493184000094],[75.30410759400013,46.69541486999998],[75.52243756399997,46.715633026000035],[75.75393651000019,46.80050214300013],[76.17356861400003,46.803192399000125],[76.38323253400017,46.71384399300007],[76.48757163900007,46.63110639399997],[76.59501657300012,46.66796480800019],[76.83245057700009,46.591864335000025],[76.88552864400015,46.63565340900004],[77.05045365300003,46.63559238900018],[77.14864362600008,46.531770951000055],[77.23596964600011,46.546473144000174],[77.28885660500003,46.613181359],[77.45860255000002,46.63464255200017],[77.62068961400007,46.622424587000125],[77.87619064300014,46.6494625950001],[77.9300535910001,46.61733140700005],[78.21578261200011,46.53796199200008],[78.4833985080001,46.658522761000086],[78.62748761500018,46.74904211900008],[78.75084659800012,46.74260314100019],[79.01702164500017,46.815178353000135],[79.12477151400014,46.802913281000144],[79.24611649400015,46.64367539300014],[79.21523253300018,46.58846145000007],[79.09282657200004,46.53221016300017],[79.02631365600007,46.43214281100012],[78.94583162700008,46.37688243300005],[78.83756258400012,46.35904842500008],[78.53706364300012,46.406999617000054],[78.41990659700008,46.39408343900004],[78.1596525270001,46.30521213100019],[78.06500960800014,46.31333319000004],[77.89481355500004,46.40458160500003],[77.72869865100017,46.38641148300013],[77.5259325340001,46.436902559000146],[77.40215261100019,46.50086100700014],[77.23316154100007,46.44364362100015],[76.81712359700003,46.47711390100011],[76.69183359000004,46.52982199100006],[76.44808164300008,46.53029892100011],[76.29559353400015,46.56001528200011],[76.27590159400012,46.49874709100004],[76.07929952799998,46.45916187600005],[76.01806654000006,46.49895697300019],[75.7137065600001,46.512343040000076],[75.62127663100006,46.464776746000155],[75.45797754400007,46.59908232700019],[75.42368349000009,46.50342402500013],[75.22989657000005,46.41512168100013],[75.0557025170001,46.44786256800006],[75.01154363400008,46.38064054300014],[74.88297261500003,46.400590646000126],[74.85487362600009,46.2688799340001],[74.7854764970001,46.18734094700005],[74.79736354400018,46.108307479000075],[74.81611654400018,46.024521304000075],[74.73764064000017,45.98125509400012],[74.80921153200012,45.84963976800003],[74.85897053200011,45.640769278000164],[75.03951253600013,45.53350036299997],[75.38417857400015,45.20785789300015],[75.58145152700007,45.08466269100006],[75.74624661700017,45.04595891800017],[75.98944049700003,44.89247772099998],[76.18698150300008,44.87085978700014],[76.48285665100019,44.64834205100016],[76.65879061900017,44.557350121000184],[76.69049064200016,44.497889906000125],[76.69087252100019,44.34392926400017],[76.74726864800004,44.25032754600005],[76.64865857500007,44.22644046300013],[76.587097519,44.27803040600003],[76.54612761400006,44.48779993900007],[76.35933656700018,44.600489933000176],[76.2694316030001,44.708227731000136],[76.05679361500012,44.75485894100018],[75.80673261000015,44.85671884600009],[75.69210857500019,44.930498705000105],[75.49083762200019,44.979769711000074],[75.40022254300004,44.95506975100011],[75.10114249100013,44.96222990800004],[75.03172256300013,44.98348876100016],[74.76500654800009,44.97878986600011],[74.52368954400004,45.016909756000075],[74.446487521,45.059729882000056],[74.33422064500013,45.193278746000146],[74.23303950700011,45.24388096600012],[74.13504064200015,45.24077899100001]],[[72.67868060500012,44.601580921],[72.79945360400012,44.535339076000184],[73.05555762700004,44.50136906600005],[73.24331661700018,44.29658827500009],[73.27545149200006,44.20429949800018],[73.43132756700015,44.12495053500015],[73.60812353000011,43.99575087300008],[73.57980359400011,43.906151346000115],[73.4949876180001,43.914570297000125],[73.40364851100009,44.032779775000165],[73.2712635580001,44.07553066600008],[73.20628352400013,44.154739483000014],[72.92698660800016,44.25629026400014],[72.69930260200016,44.27439433700016],[72.60681953200009,44.26078028200004],[72.46666757300017,44.2991901850001],[72.43258658700006,44.37316115200014],[72.27416962200004,44.47135900300009],[72.05684648600004,44.46322201900006],[71.92104356200014,44.491030995000074],[71.82949054800014,44.564287990000025],[71.67534651000005,44.574489102000086],[71.60105854,44.61068987100015],[71.39259356700006,44.64317980400017],[71.31842763800006,44.694670841],[71.11364751700017,44.75792990300005],[70.98193362000012,44.741068866000035],[70.92137152000015,44.77762888400008],[70.65109252600007,44.82869965200007],[70.460632551,44.78451897600013],[70.39304356600007,44.80892892200012],[70.27429161200007,44.76293071400005],[70.13802349100018,44.77588997400011],[69.72631848800012,44.71006001500007],[69.43418854300018,44.741381846000195],[69.2352826280001,44.735407729000144],[69.0347826420001,44.69971004100006],[68.85405757800004,44.727587916000175],[68.58231359400003,44.856749859000104],[68.2886195860001,44.87351886200014],[68.11353252500015,44.96143966200003],[67.68148062,45.00590079699998],[67.70294164500018,45.09269993100014],[67.81638349600019,45.11152987600019],[67.95747355700007,45.09276883000007],[68.05045350600017,45.04991886400012],[68.31477363800013,45.07086876100004],[68.33027663900003,44.99615784000008],[68.6416095240001,44.9298197710001],[68.94661759300016,44.82063978200006],[69.11060349400015,44.86143064900011],[69.30211657100011,44.86344079700018],[69.48239152700006,44.91203974200005],[69.58981349499999,44.96737974900009],[69.70726055500006,44.943159905000186],[69.79543264500012,45.005530652000175],[69.96363061900018,45.032278814000165],[70.16870863300016,44.9953679300001],[70.27259863500007,45.030058951000115],[70.40519749300006,45.01639896300014],[70.59026354500008,45.027808913000115],[70.8550104840001,44.91575191900017],[71.14346362300017,44.90811885600016],[71.3314435600002,44.82492779600011],[71.40570051700007,44.82755166700008],[71.57501261400006,44.74455976100012],[71.73725860000008,44.750750803000074],[71.81405661400015,44.70180099100003],[71.97939250400003,44.72848779700013],[72.1692736240002,44.7186077130001],[72.27271251200011,44.656462941000086],[72.39552348700016,44.66289789600006],[72.50417357200001,44.608730014000116],[72.67868060500012,44.601580921]]]]},"properties":{"objectid":130,"eco_name":"Central Asian northern desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Palearctic","eco_biome_":"PA13","nnh":2,"eco_id":817,"shape_leng":152.363861151,"shape_area":75.4713474969,"nnh_name":"Nature Could Reach Half Protected","color":"#DE8E59","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":663899.9239186728,"percentage":2.5164711816882144}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[59.805149529000175,43.90855125200011],[59.634258616000125,43.899910181],[59.60826147300003,43.96056397900014],[59.31204954100008,43.94316113600007],[58.948219622000124,43.99517084600012],[58.81834052300002,44.09061473900016],[58.62963052300012,44.09059864600016],[58.489150496000036,44.05582497900019],[58.459163567000076,44.095500886000025],[58.410083500000155,44.051978859000144],[58.43563053499997,43.94398910100006],[58.32220058700011,43.75733249900003],[58.38656958000007,43.598791147000156],[58.30535849299997,43.449361762000194],[58.293521570000166,43.370821150000154],[58.35576256500008,43.255763603],[58.435829522,43.18946392300012],[58.608501589000184,43.10307332300016],[58.62878059800005,42.91979328700006],[58.66807948600018,42.91730620800007],[58.85220358000009,42.711687394000194],[59.02421163300005,42.598796067000194],[59.03055958300018,42.54417740600019],[58.91935352100012,42.46455687000014],[58.977249504999975,42.4173962590001],[59.21788053500012,42.32480673900011],[59.31986952100016,42.24924924600009],[59.320712573000094,42.16839774300007],[59.20380061400016,42.0425627460001],[59.194129574000044,41.910530001000154],[59.31542258600018,41.85259244200017],[59.52144959900005,41.80117080700012],[59.6643405960001,41.640142209000146],[59.863483552000105,41.49964424500013],[60.12937160200016,41.462813660000165],[60.323501509000096,41.36967546000005],[60.43444052400014,41.34175584400015],[60.79320157100011,41.34723777600004],[61.01332459700018,41.298627264],[61.11389151000003,41.29977508200011],[61.27909060700006,41.22931881500011],[61.557598619000146,41.18197816100019],[61.72196958500007,41.11657601500008],[61.83190947700018,40.99120705100006],[61.861152596000125,40.87602025500013],[61.976245514000084,40.65229485400016],[62.14366950400006,40.54048311500003],[62.22323958100009,40.39137593100014],[62.29782862900004,40.09876939000003],[62.43560063100011,39.97412613100005],[62.48086156700009,39.823924103000024],[62.52848050000006,39.764907625000035],[62.78784960900009,39.599238135000064],[62.88386950700004,39.51632233700008],[62.939731539000036,39.37352924100003],[63.12546160500011,39.242763001000185],[63.202869487000044,39.1375516760001],[63.47969860300009,39.00921954199998],[63.57434856300006,38.98008706400009],[63.81465554800013,38.835497557],[63.92536154600003,38.69059088000017],[64.023277598,38.62217091300005],[64.06226350600002,38.50457365000011],[64.2340925210001,38.42355400600013],[64.35704749700005,38.28837938800001],[64.50795762900003,38.22762752200015],[64.58476251600007,38.16509064500008],[64.81630756300012,38.06735916300005],[65.1455074810001,37.86039304200011],[65.18554649100003,37.771840581000106],[65.27931249500006,37.676577402000134],[65.40384662200017,37.6215473580001],[65.49226363000008,37.74265831499997],[65.35443161400002,37.79991610100018],[65.22457850000006,38.0134132340001],[65.06648256200003,38.14552879200005],[64.97501353500013,38.18734912400009],[64.76133753300002,38.228249627000025],[64.55123859200006,38.352205402000095],[64.26201649600011,38.62068396300015],[64.17288954000009,38.65025028900004],[64.07875858800008,38.854436971000155],[63.78839152500012,39.09678444600013],[63.73691959800004,39.24778694600013],[63.58884053800017,39.236286137000036],[63.38323949400012,39.312689029000126],[63.18539053600006,39.415818792000096],[63.122432553000124,39.49185153900004],[63.09082054000015,39.59318807799997],[62.88609356100005,39.77275476300002],[62.776512582000066,39.82476313100017],[62.6017795730001,40.01083065300014],[62.50672962900006,40.179708400000095],[62.471309550000115,40.32932352800003],[62.411701478,40.45094611700017],[62.29988454200003,40.61115328800014],[62.15650152700016,40.76106161500013],[62.09286863300008,40.956929425000055],[62.02115659000009,41.06995737800014],[61.81866053699997,41.233297705000155],[61.622638500000164,41.29237520200019],[61.54061856000004,41.336376674000064],[61.27964062799998,41.34502461800008],[61.21985251299998,41.41672492700019],[60.97945751800012,41.51979400500005],[60.693191552000144,41.707994386000166],[60.66210961100012,41.78095684200014],[60.491451547000054,41.84607333300016],[60.41144158700013,42.03106193600013],[60.27140060500011,42.10367821900013],[60.18479961900016,42.216107536000095],[59.95404062799997,42.3718914100001],[59.815189540000176,42.413318296000114],[59.69165051300007,42.522956607000026],[59.75328449100016,42.592756905000044],[59.97285850300011,42.71493739400012],[60.14701852600007,42.88511333000008],[60.3174206060001,42.96050301700012],[60.38045855300004,43.04229362799998],[60.309699532000195,43.36878099500018],[60.07848355900006,43.49227341800014],[59.89781951500004,43.63761310500007],[59.805149529000175,43.90855125200011]]],[[[72.67868060500012,44.601580921],[72.50417357200001,44.608730014000116],[72.39552348700016,44.66289789600006],[72.27271251200011,44.656462941000086],[72.1692736240002,44.7186077130001],[71.97939250400003,44.72848779700013],[71.81405661400015,44.70180099100003],[71.73725860000008,44.750750803000074],[71.57501261400006,44.74455976100012],[71.40570051700007,44.82755166700008],[71.3314435600002,44.82492779600011],[71.14346362300017,44.90811885600016],[70.8550104840001,44.91575191900017],[70.59026354500008,45.027808913000115],[70.40519749300006,45.01639896300014],[70.27259863500007,45.030058951000115],[70.16870863300016,44.9953679300001],[69.96363061900018,45.032278814000165],[69.79543264500012,45.005530652000175],[69.70726055500006,44.943159905000186],[69.58981349499999,44.96737974900009],[69.48239152700006,44.91203974200005],[69.30211657100011,44.86344079700018],[69.11060349400015,44.86143064900011],[68.94661759300016,44.82063978200006],[68.6416095240001,44.9298197710001],[68.33027663900003,44.99615784000008],[68.31477363800013,45.07086876100004],[68.05045350600017,45.04991886400012],[67.95747355700007,45.09276883000007],[67.81638349600019,45.11152987600019],[67.70294164500018,45.09269993100014],[67.68148062,45.00590079699998],[68.11353252500015,44.96143966200003],[68.2886195860001,44.87351886200014],[68.58231359400003,44.856749859000104],[68.85405757800004,44.727587916000175],[69.0347826420001,44.69971004100006],[69.2352826280001,44.735407729000144],[69.43418854300018,44.741381846000195],[69.72631848800012,44.71006001500007],[70.13802349100018,44.77588997400011],[70.27429161200007,44.76293071400005],[70.39304356600007,44.80892892200012],[70.460632551,44.78451897600013],[70.65109252600007,44.82869965200007],[70.92137152000015,44.77762888400008],[70.98193362000012,44.741068866000035],[71.11364751700017,44.75792990300005],[71.31842763800006,44.694670841],[71.39259356700006,44.64317980400017],[71.60105854,44.61068987100015],[71.67534651000005,44.574489102000086],[71.82949054800014,44.564287990000025],[71.92104356200014,44.491030995000074],[72.05684648600004,44.46322201900006],[72.27416962200004,44.47135900300009],[72.43258658700006,44.37316115200014],[72.46666757300017,44.2991901850001],[72.60681953200009,44.26078028200004],[72.69930260200016,44.27439433700016],[72.92698660800016,44.25629026400014],[73.20628352400013,44.154739483000014],[73.2712635580001,44.07553066600008],[73.40364851100009,44.032779775000165],[73.4949876180001,43.914570297000125],[73.57980359400011,43.906151346000115],[73.60812353000011,43.99575087300008],[73.43132756700015,44.12495053500015],[73.27545149200006,44.20429949800018],[73.24331661700018,44.29658827500009],[73.05555762700004,44.50136906600005],[72.79945360400012,44.535339076000184],[72.67868060500012,44.601580921]]],[[[74.13504064200015,45.24077899100001],[74.23303950700011,45.24388096600012],[74.33422064500013,45.193278746000146],[74.446487521,45.059729882000056],[74.52368954400004,45.016909756000075],[74.76500654800009,44.97878986600011],[75.03172256300013,44.98348876100016],[75.10114249100013,44.96222990800004],[75.40022254300004,44.95506975100011],[75.49083762200019,44.979769711000074],[75.69210857500019,44.930498705000105],[75.80673261000015,44.85671884600009],[76.05679361500012,44.75485894100018],[76.2694316030001,44.708227731000136],[76.35933656700018,44.600489933000176],[76.54612761400006,44.48779993900007],[76.587097519,44.27803040600003],[76.64865857500007,44.22644046300013],[76.74726864800004,44.25032754600005],[76.69087252100019,44.34392926400017],[76.69049064200016,44.497889906000125],[76.65879061900017,44.557350121000184],[76.48285665100019,44.64834205100016],[76.18698150300008,44.87085978700014],[75.98944049700003,44.89247772099998],[75.74624661700017,45.04595891800017],[75.58145152700007,45.08466269100006],[75.38417857400015,45.20785789300015],[75.03951253600013,45.53350036299997],[74.85897053200011,45.640769278000164],[74.80921153200012,45.84963976800003],[74.73764064000017,45.98125509400012],[74.81611654400018,46.024521304000075],[74.79736354400018,46.108307479000075],[74.51010851400008,45.99332821900015],[74.42092154300013,46.042691259000094],[74.23526758500009,45.98843017000013],[74.28766654900005,45.815250663000086],[74.25727863000009,45.7276807290001],[74.34541350400013,45.67900064700018],[74.20236157400018,45.569015325000066],[74.06498754500006,45.51276035000018],[74.08412963300009,45.37202014900009],[74.15557865200003,45.29187004400006],[74.13504064200015,45.24077899100001]]],[[[62.07763653500007,46.01619019500009],[61.98667159600012,46.04000938500002],[61.93989957000019,46.139580528000124],[61.86643956500012,46.15509157499997],[61.62803661300012,46.13205056100014],[61.52555460299999,46.15403059300013],[61.45447958500006,46.22206298100008],[61.224441605000095,46.29993220300014],[60.985637495000105,46.09122951900014],[60.92456057800007,46.001778184000045],[60.91219760600018,45.948571036000146],[61.08590651500015,45.88599107599998],[61.16624454200013,45.781021652000106],[61.24671953000012,45.54254125200009],[61.36336863200006,45.46929917600005],[61.39493555000013,45.314098013000034],[61.458145494000064,45.23247084800016],[61.52410855700009,45.24359782500005],[61.603778547000104,45.33719987900014],[61.67758154000012,45.33525812700003],[61.87297862300011,45.40697017000008],[62.0176775970001,45.55596922800004],[62.180736627000044,45.559760196000184],[62.213897615,45.61120932300014],[62.53984451600007,45.672420350000095],[62.66691953300017,45.61303741600011],[62.94955060300009,45.60123050000004],[63.22723048300003,45.509601210000085],[63.44149053600006,45.594230269000036],[63.56327053700005,45.61845044900008],[63.74533854900005,45.58166127000004],[63.81859956800014,45.42996893900005],[64.00087763200008,45.38203015300019],[63.96789953700005,45.28778001],[63.786598636,45.18364978300019],[63.80341357200007,45.10042871600007],[63.934810633000154,44.93891095000009],[64.30551957900002,44.86715984700004],[64.646179571,44.86032792600008],[64.77391860200015,44.80895892900003],[64.92674249000004,44.78367894200011],[65.03014349199998,44.81364391000011],[65.46566064300015,44.7281977830001],[65.55464158600006,44.66137993300015],[65.62695360600009,44.66043395200012],[65.77361260400005,44.56122893100013],[65.8177106350002,44.42702812300013],[65.98499263500014,44.41247127200012],[66.1160735310001,44.37100934900013],[66.33017751300008,44.161518599000146],[66.37830355200003,44.04122202800016],[66.43340249500005,43.98997892700015],[66.64074764600008,43.90044109000013],[66.83175663500003,43.85146428900009],[67.0239105920001,43.832692346000044],[67.24539148700018,43.76932264400011],[67.32454649300007,43.66470090200005],[67.31461360200007,43.5847412330001],[67.48381053200018,43.36657605099998],[67.6785125880001,43.21998159400016],[67.76567063400012,43.13075606700005],[67.78589650200013,43.05930336000017],[67.97422060000008,42.89360537100009],[68.06069954500015,42.8538863820001],[68.11078661300013,42.62015785000011],[68.06613956800004,42.57761617100016],[68.14127360700019,42.42245825800018],[68.1542965700001,42.2540021210001],[68.08029157300007,42.132181216000106],[68.04444150300003,41.9693253640001],[67.96013648800005,41.87488629300009],[67.96468350300012,41.790302664000194],[67.91873960900011,41.70468252900014],[67.97387660700014,41.45054573900006],[67.89219663600016,41.29504534100005],[67.87447360500005,41.17480727500015],[67.96987961200011,41.13560762900005],[68.11422755200016,41.2559414160001],[68.15498355099999,41.41232710999998],[68.11134350700019,41.653383102000134],[68.16390256600016,41.792522862000055],[68.17365256300013,41.89908987600012],[68.2672884800001,42.019919034000054],[68.24986250400019,42.11884141700011],[68.32589759700011,42.26669818900007],[68.31800855000006,42.38796639100008],[68.26033049500006,42.57078810500008],[68.28914664000018,42.61927674400005],[68.27890060099998,42.78632489],[68.17946658700015,42.96877293800003],[68.10131053600008,43.01637259300014],[68.05039248600008,43.10255414800008],[67.93668358800005,43.17690179700003],[67.91842662900018,43.263361463000194],[67.81347648400003,43.366122088],[67.72447961500018,43.4095517450001],[67.59443656700012,43.552591270000164],[67.52648950700012,43.71994183500004],[67.36871359000008,43.819321534000096],[67.36007654200006,43.86983540900013],[67.20374248100006,43.94204014100012],[67.21946760200007,44.056411879999985],[67.16394051000015,44.118640638000045],[66.98722048700006,44.14384066200006],[66.89089951100004,44.188518553],[66.75657649500005,44.19824944000004],[66.68414360800011,44.24317945900009],[66.5240175740002,44.241119354000034],[66.45451349200016,44.42240818600004],[66.35819251600014,44.46995905800014],[66.24595648600013,44.46855911200015],[66.20320861200008,44.539813168000194],[66.09367356600006,44.574469823000186],[66.04477656000017,44.685347818000025],[65.92144758300003,44.723254807000046],[65.81626157200009,44.9194786810001],[65.65986649000013,44.92767970300014],[65.60987849600019,44.97252171200017],[65.60415650600015,45.108778936000135],[65.46775863300019,45.212280017000126],[65.35146358200012,45.259547915999974],[65.29251064000005,45.356490159000145],[65.08479350000005,45.41933012500016],[64.95758856400016,45.39609096300006],[64.77336154100016,45.41953598400005],[64.72183949000004,45.47822908800015],[64.58601359900013,45.47803831600015],[64.57183862700003,45.40706991500008],[64.48171254900012,45.38101896000012],[64.35579658200004,45.488338334000105],[64.18279259100012,45.541919147000044],[64.01033057500018,45.55543127800013],[63.948348580000015,45.63159930800009],[63.758060602000114,45.75537856100016],[63.671459617000096,45.76176875600015],[63.45862951600009,45.71710964100015],[63.27759163900015,45.63931652700012],[63.145801634000065,45.64907038000007],[63.00653061300005,45.72214448200009],[62.72837849700011,45.74819979600011],[62.59803051500006,45.814838776000045],[62.31383856700006,45.79156860100011],[62.163650620000055,45.85089487400012],[62.09118655200007,45.90845893500011],[62.07763653500007,46.01619019500009]]]]},"properties":{"objectid":131,"eco_name":"Central Asian riparian woodlands","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Palearctic","eco_biome_":"PA13","nnh":3,"eco_id":818,"shape_leng":67.8490801785,"shape_area":9.89430225414,"nnh_name":"Nature Could Recover","color":"#D06F42","color_bio":"#CC6767","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":88832.60135756231,"percentage":0.33671442525739304}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[58.62878059800005,42.91979328700006],[58.63248858400004,42.69672653500015],[58.48109850400016,42.62026497100004],[58.35385149100006,42.6316479300001],[58.33309957500006,42.53180253199997],[58.53730352400004,42.35952760000009],[58.51187852900006,42.2919699630001],[58.36909448500006,42.30308989900004],[58.28742960200009,42.420886987000074],[58.089263474,42.48765873600007],[57.96664058900012,42.42210705600007],[57.9467045670001,42.30536692600003],[57.84769048600009,42.30484791900017],[57.609069605000116,42.49578767300005],[57.4596294910001,42.522677489000046],[57.2460515570001,42.50566775800013],[57.08286663100006,42.46059792900007],[56.880630586000166,42.48718582900011],[56.70764553800012,42.463958737000155],[56.57245248100003,42.52395556199997],[56.30038847600014,42.50666755100019],[56.11374662600008,42.529338420000045],[55.985210476000134,42.500998535000065],[55.86428056800008,42.547427405000064],[55.7304385060001,42.559855086000084],[55.51189060600012,42.68507552200009],[55.22726849900016,42.66072659700012],[55.07188058700007,42.71493739400012],[54.90116150300008,42.71465542600009],[54.54327351600011,42.602236000000175],[54.479545571000074,42.6139550740001],[54.300350539000135,42.79095572300014],[54.16416958999997,42.79840975000019],[54.03218462199999,42.871895404000156],[53.79399155300007,42.93656597800009],[53.593353602000036,42.91862518500005],[53.46231847100006,42.960514919],[53.284599492000154,42.92799397300007],[53.103767474999984,42.95575399799998],[52.8322905390001,42.97306497500011],[52.68292955000015,42.95653603000005],[52.45442948200008,42.97342388800007],[52.21905860000015,42.954372828000146],[52.17155047500012,42.86955752300008],[52.29486855500011,42.783524999000065],[52.42802447500014,42.83678562300008],[52.60877250600009,42.80364391300009],[52.73834952100003,42.72402438300014],[52.74679948500017,42.64303474600007],[52.55892951900012,42.29231697400013],[52.43873956500016,42.16962988300003],[52.41904058400013,42.08841946700011],[52.4915425370001,41.93661079499998],[52.442935546000115,41.76231498600015],[52.57830059999998,41.68988176400006],[52.59915946900003,41.63695306300008],[52.55617857800013,41.54259378800009],[52.72232449500018,41.418044909000116],[52.77970449000003,41.46550358000019],[52.818172564,41.59902444800019],[52.75423859200009,41.73344117400012],[52.99551050100007,42.06415469600012],[53.20101163300018,42.139558967000085],[53.2799104880001,42.13622816700018],[53.42089460200003,42.210477747000084],[53.55868957000007,42.17484795300015],[53.75946062700007,42.20576946500012],[53.884590539000044,42.15680104500012],[54.036800536000044,42.00648016100001],[54.04988854300012,41.92004379600013],[54.19770860199998,41.72085323100015],[54.37710949400008,41.61209334400007],[54.38092057700004,41.55079581500007],[54.31087150400015,41.50160527500003],[54.40966061500018,41.435214902000155],[54.53836054700014,41.38946932500011],[54.828441620000035,41.18138740500012],[54.89078856300017,41.087829104000036],[54.87420262100011,40.97382030100016],[54.788150482,40.81643112600011],[54.67678047000004,40.70760736800014],[54.57163653500004,40.66715261500019],[54.36687049600005,40.65032192100011],[54.149490531000026,40.659210930000086],[53.74142059200017,40.60140345800005],[53.647754500000076,40.730681909],[53.19519056900015,40.689830525],[53.137565488000064,40.653411994000066],[53.04470053799997,40.503725452000026],[52.97843958200008,40.291057961000035],[53.08998159100014,40.12284020400017],[53.05097959000011,40.00688244100013],[53.170589516000064,40.00745073400003],[53.2836986050001,39.957532142000105],[53.42497256600012,39.985352014000114],[53.59095352700018,40.02885040400014],[53.77039750200004,40.00420056700011],[53.975234619,39.91272198500019],[54.056560537999985,39.84717466400008],[54.024711485000125,39.76689866200019],[53.80674361300004,39.80259618200006],[53.67643351700008,39.84444266600019],[53.63237354000006,39.792293315000165],[53.80290956300007,39.645364251000046],[53.76491154600012,39.54424597700017],[53.66516857500005,39.494277597000064],[53.652400589000194,39.44096835700009],[53.86588246600013,39.24142022000018],[53.95959851400005,39.087163530000055],[54.04140052500003,39.03092448000018],[54.19530148700005,39.00730478000003],[54.27956056900018,38.91780516400007],[54.109928618000026,38.79980003800006],[54.05484057100006,38.65870008500019],[53.982971619000125,38.560121695000134],[53.983341596000116,38.482384237000076],[54.039958502,38.283672614000125],[54.33591059500003,38.39480357500014],[54.410804577000135,38.466202303000046],[54.40658160600003,38.56907172399997],[54.30990959700006,38.64434138200011],[54.35607561100011,38.71397018700003],[54.50428056700014,38.76573866500007],[54.53460361000003,38.83205242800017],[54.52642454900018,38.98196427500005],[54.66860157600013,39.07464482200004],[54.701454613000124,39.15374434000012],[54.663623564000034,39.247352093000075],[54.72894256200016,39.38751008700007],[54.88352949900013,39.4564820870001],[55.07270050500006,39.49277069800013],[55.138923575000035,39.43819830600012],[55.24530451099997,39.410740700000076],[55.484874559000104,39.40811967899998],[55.749252526000134,39.42929957400014],[56.10083363400014,39.357759360000045],[56.231735491999984,39.29902149700007],[56.449088636000056,39.23505014199998],[56.54152258700003,39.17738398900008],[56.752178590000085,38.93161485300004],[56.95790854800015,38.89311761000005],[57.03871160300008,38.77988731800019],[57.248420618000125,38.69030086600014],[57.34729354800004,38.62680979300018],[57.53298153800006,38.58387232100006],[57.705779501000166,38.47753513900017],[57.81502553900003,38.33883542800015],[58.026241620000064,38.28475153300013],[58.133979586000066,38.190999275000024],[58.37123455300019,38.09247888800007],[58.48773160700017,38.026100921000136],[58.69855156000011,37.95188335900002],[58.88594861900003,37.966623271000174],[59.033100473000104,37.89054358500016],[59.180309492,37.854274252000096],[59.27238453100017,37.79234439300018],[59.37788050500012,37.79829520900017],[59.512214585000095,37.74580521700011],[59.724548476999985,37.588330043000155],[59.90002060300009,37.499941868000064],[60.0605015270001,37.35412374200018],[60.28956955300009,37.30058567700007],[60.373035539000114,37.264506445],[60.456272532000185,37.174176351000085],[60.59371160400002,37.12382709700006],[60.732009486000095,36.97060138000006],[60.839054604000125,36.91500337800011],[60.87477458800015,36.84642482600009],[61.13245055200014,36.693725158],[61.24529259500014,36.58486351400012],[61.38977447700006,36.33270602600004],[61.531925520000186,36.18134226600017],[61.646419635000086,36.31440447600011],[61.66414249900009,36.562522054000056],[61.722225568000056,36.845452022000075],[61.78878056100001,36.98794286700007],[61.99118458000015,37.08763403900002],[62.316284574,37.12079821200001],[62.54833555200008,37.28916801600013],[62.714870557000154,37.46039169000005],[62.82022051900009,37.54151292300003],[62.97798956200012,37.58527115100003],[63.27746959900003,37.56897052900007],[63.590858565000076,37.49136215200019],[63.82992150800004,37.488710956000034],[63.92251957800005,37.50985950300003],[64.11067151100008,37.61016858900018],[64.25765254200013,37.718748768000125],[64.43982650200019,37.91744915900006],[64.58457157700019,37.89149342300004],[64.859947606,37.774644496],[65.03222656200006,37.72151747900017],[65.09557363400012,37.65590276700004],[65.01744055,37.560788618000174],[65.12763961000007,37.52256931900007],[65.32409650099999,37.57106952500004],[65.40384662200017,37.6215473580001],[65.27931249500006,37.676577402000134],[65.18554649100003,37.771840581000106],[65.1455074810001,37.86039304200011],[64.81630756300012,38.06735916300005],[64.58476251600007,38.16509064500008],[64.50795762900003,38.22762752200015],[64.35704749700005,38.28837938800001],[64.2340925210001,38.42355400600013],[64.06226350600002,38.50457365000011],[64.023277598,38.62217091300005],[63.92536154600003,38.69059088000017],[63.81465554800013,38.835497557],[63.57434856300006,38.98008706400009],[63.47969860300009,39.00921954199998],[63.202869487000044,39.1375516760001],[63.12546160500011,39.242763001000185],[62.939731539000036,39.37352924100003],[62.88386950700004,39.51632233700008],[62.78784960900009,39.599238135000064],[62.52848050000006,39.764907625000035],[62.48086156700009,39.823924103000024],[62.43560063100011,39.97412613100005],[62.29782862900004,40.09876939000003],[62.22323958100009,40.39137593100014],[62.14366950400006,40.54048311500003],[61.976245514000084,40.65229485400016],[61.861152596000125,40.87602025500013],[61.83190947700018,40.99120705100006],[61.72196958500007,41.11657601500008],[61.557598619000146,41.18197816100019],[61.27909060700006,41.22931881500011],[61.11389151000003,41.29977508200011],[61.01332459700018,41.298627264],[60.79320157100011,41.34723777600004],[60.43444052400014,41.34175584400015],[60.323501509000096,41.36967546000005],[60.12937160200016,41.462813660000165],[59.863483552000105,41.49964424500013],[59.6643405960001,41.640142209000146],[59.52144959900005,41.80117080700012],[59.31542258600018,41.85259244200017],[59.194129574000044,41.910530001000154],[59.20380061400016,42.0425627460001],[59.320712573000094,42.16839774300007],[59.31986952100016,42.24924924600009],[59.21788053500012,42.32480673900011],[58.977249504999975,42.4173962590001],[58.91935352100012,42.46455687000014],[59.03055958300018,42.54417740600019],[59.02421163300005,42.598796067000194],[58.85220358000009,42.711687394000194],[58.66807948600018,42.91730620800007],[58.62878059800005,42.91979328700006]],[[54.23997149899998,40.048411922000014],[54.2763905330001,40.07528681800005],[54.434791572,39.97740982600004],[54.60022351900011,39.94016031300009],[54.68954460000015,39.89620410400016],[54.91404348300017,39.83725267000017],[55.10311155800014,39.7140053330001],[55.06724556200015,39.619786874000056],[54.76200447600013,39.53061616400015],[54.64237259000009,39.517383151000104],[54.43426552400018,39.57261553400008],[54.34104149400008,39.68095481800009],[54.31063060800011,39.84402357100004],[54.19464149600009,39.922162690000164],[54.17496162600014,39.99020094500014],[54.23997149899998,40.048411922000014]]],[[[68.04444150300003,41.9693253640001],[68.08029157300007,42.132181216000106],[68.1542965700001,42.2540021210001],[68.14127360700019,42.42245825800018],[68.06613956800004,42.57761617100016],[68.11078661300013,42.62015785000011],[68.06069954500015,42.8538863820001],[67.97422060000008,42.89360537100009],[67.78589650200013,43.05930336000017],[67.76567063400012,43.13075606700005],[67.6785125880001,43.21998159400016],[67.48381053200018,43.36657605099998],[67.31461360200007,43.5847412330001],[67.32454649300007,43.66470090200005],[67.24539148700018,43.76932264400011],[67.0239105920001,43.832692346000044],[66.83175663500003,43.85146428900009],[66.64074764600008,43.90044109000013],[66.43340249500005,43.98997892700015],[66.37830355200003,44.04122202800016],[66.33017751300008,44.161518599000146],[66.1160735310001,44.37100934900013],[65.98499263500014,44.41247127200012],[65.8177106350002,44.42702812300013],[65.74772660500008,44.35976033200012],[65.48330656100018,44.30141021600019],[65.38030956700004,44.233795583000074],[65.24513260300012,44.05426091600003],[65.06590253400003,43.951771027],[64.89452362700013,43.80088168300017],[64.85475149700005,43.618192235000095],[64.79247261500012,43.551431382000146],[64.63535350500007,43.50303041800004],[64.361816632,43.51050355500013],[64.25006859600006,43.48471243900008],[63.99369048500006,43.36472197400019],[63.70275160800003,43.30155444300016],[63.518791632000045,43.17304176300007],[63.380168532000084,43.14390492600006],[63.27214055200005,43.05956252800013],[63.03464150500014,43.06293440000002],[62.92469054900005,43.01019261500005],[62.8983685230001,42.9284140740001],[62.817653477000135,42.83833459900018],[62.71155953800019,42.789624845000105],[62.380153502999974,42.71573417700006],[62.20433051100014,42.57786813100006],[61.961433518000035,42.52573738700005],[61.70655057100009,42.55493826100013],[61.55498162100014,42.493335631000036],[61.40697062200013,42.52251739500008],[61.25204857600016,42.45086603700008],[61.03585850600007,42.47972761200003],[60.815578570000184,42.44719694200012],[60.59957156000013,42.39233822400007],[60.365173482000046,42.268048179],[60.18479961900016,42.216107536000095],[60.27140060500011,42.10367821900013],[60.41144158700013,42.03106193600013],[60.491451547000054,41.84607333300016],[60.66210961100012,41.78095684200014],[60.693191552000144,41.707994386000166],[60.97945751800012,41.51979400500005],[61.21985251299998,41.41672492700019],[61.27964062799998,41.34502461800008],[61.54061856000004,41.336376674000064],[61.622638500000164,41.29237520200019],[61.81866053699997,41.233297705000155],[62.02115659000009,41.06995737800014],[62.09286863300008,40.956929425000055],[62.15650152700016,40.76106161500013],[62.29988454200003,40.61115328800014],[62.411701478,40.45094611700017],[62.471309550000115,40.32932352800003],[62.50672962900006,40.179708400000095],[62.6017795730001,40.01083065300014],[62.776512582000066,39.82476313100017],[62.88609356100005,39.77275476300002],[63.09082054000015,39.59318807799997],[63.122432553000124,39.49185153900004],[63.18539053600006,39.415818792000096],[63.38323949400012,39.312689029000126],[63.58884053800017,39.236286137000036],[63.73691959800004,39.24778694600013],[63.78839152500012,39.09678444600013],[64.07875858800008,38.854436971000155],[64.17288954000009,38.65025028900004],[64.26201649600011,38.62068396300015],[64.55123859200006,38.352205402000095],[64.76133753300002,38.228249627000025],[64.97501353500013,38.18734912400009],[65.06648256200003,38.14552879200005],[65.22457850000006,38.0134132340001],[65.35443161400002,37.79991610100018],[65.49226363000008,37.74265831499997],[65.46956661000013,37.86319310000016],[65.59269760600006,38.07489030300002],[65.61885048500011,38.20568973400009],[65.58673052900008,38.38562572600006],[65.72933151300003,38.52257144000015],[65.95150760300015,38.60042004200011],[65.9607696060001,38.74498272600016],[65.82109860000008,38.97542236700002],[65.85420259199998,39.09115432200019],[65.99826856400017,39.21530154000004],[66.08527355700005,39.32673106300007],[66.07057153200014,39.466136866],[66.121200574,39.55855858000018],[66.1196975310001,39.67014400700009],[66.02931261900005,39.783874531000095],[65.91430653700019,39.84534372100006],[65.68068663500003,39.86230349600004],[65.60549962200008,39.89030324400005],[65.50626358800008,40.01868030500003],[65.42597954000007,40.06175993500017],[65.38121749500004,40.137580116000095],[65.19164248200019,40.16770048600006],[65.05943254300018,40.27070720299997],[65.06059259900007,40.3375855700001],[65.2049866390002,40.42184347800014],[65.22926348099998,40.53077519500005],[65.339469582,40.61360231200007],[65.55742655700004,40.70286924600015],[65.73274948500006,40.74028287700003],[65.83100148400001,40.79130033600018],[66.00668349200009,40.94815156100009],[66.16101059100009,41.13240691500005],[66.31876354100018,41.17217954900019],[66.53794863200017,41.32985002100014],[66.61932350100011,41.50511511300016],[66.91251359000006,41.60675239500006],[67.11868259200003,41.756482020000135],[67.529418647,41.82580253800006],[67.70654251000013,41.95464261600006],[67.95587948700017,42.00926915600013],[68.04444150300003,41.9693253640001]]]]},"properties":{"objectid":132,"eco_name":"Central Asian southern desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Palearctic","eco_biome_":"PA13","nnh":4,"eco_id":819,"shape_leng":73.3485845861,"shape_area":60.3621429579,"nnh_name":"Nature Imperiled","color":"#F7BA4F","color_bio":"#CC6767","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":567973.421208628,"percentage":2.152867766575404}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[30.537820816000135,-22.58949470499988],[30.413526535000074,-22.606178283999895],[30.182443619000026,-22.69098281899994],[30.03070831300016,-22.718935012999907],[30.01895904500003,-22.771396636999896],[29.867633820000037,-22.87200164799998],[29.511220932000185,-22.92473792999988],[29.422885895000036,-22.95668411299988],[29.378461838000078,-22.891838073999907],[29.284372330000167,-22.827419280999948],[29.200239182000132,-22.833164214999897],[29.102016449000075,-22.717882155999916],[28.960601807000046,-22.72833061199998],[28.96959114100008,-22.63638114899993],[28.84646606400014,-22.602561950999927],[28.813028336000173,-22.54409027099996],[28.614826202000188,-22.581228255999918],[28.572336197000027,-22.55874443099998],[28.341682434000063,-22.57463836699992],[28.209922791000167,-22.66420936599991],[28.16217994700014,-22.756053924999833],[28.04064750700013,-22.83434104899993],[28.039596558000085,-22.90995979299987],[27.938846657,-22.976381427999968],[27.812739764000128,-22.957571427999937],[27.697198286000173,-22.863448915999868],[27.59903709600013,-22.901609359999952],[27.637775385000168,-22.989338973999963],[27.611397872000055,-23.114144493999902],[27.465603111000064,-23.1366291249999],[27.373482803000172,-23.03763571399992],[27.249831132000054,-22.94224554899995],[27.22320126700015,-22.85541568699989],[27.150182619000134,-22.80778244699991],[27.067102632000115,-22.81310748999988],[27.064469705000135,-22.871908723999923],[26.95430074000018,-22.889471045999983],[26.96404757800019,-22.789634933999935],[26.80662068400011,-22.782990482999935],[26.729732895000154,-22.748962353999957],[26.634625513000174,-22.789483157999882],[26.610995681000077,-22.73341077699996],[26.49629516300007,-22.728278622999937],[26.472780609000154,-22.689824029999897],[26.364606945000162,-22.66640501199987],[26.355405626000106,-22.724856718999945],[26.442683256000066,-22.780797860999883],[26.488623924000137,-22.82163007899993],[26.333295324000176,-22.865624589999925],[26.30198004900018,-22.84614193599998],[26.068279330000166,-22.8341818909999],[26.076676799000154,-22.90921793699988],[26.00138531099998,-22.933568068999875],[26.002677778000077,-23.00317125999993],[26.145216499000128,-23.070350135999945],[26.078931654000087,-23.117216984999914],[26.08190876200007,-23.22979965199994],[26.006117856000174,-23.237661011999876],[25.851192245,-23.182536209999967],[25.630907779999973,-23.407019202999948],[25.642565886,-23.488209852999944],[25.78363183700003,-23.522070020999877],[25.72745674400005,-23.784482177999905],[25.841975756000124,-23.58941068699994],[25.931333219000123,-23.604047861999902],[26.07095573400011,-23.58191728099996],[26.049707709000188,-23.70342560099988],[26.17645648200005,-23.702954460999877],[26.011253519000093,-23.85684606199993],[25.858419061000063,-23.90344715799995],[25.826887678000162,-24.02172394999991],[25.756757162000156,-24.10612657699994],[25.64053313200003,-24.047497716999942],[25.516499605000092,-24.105465429999867],[25.546692422000092,-24.196620855999868],[25.45799999800016,-24.281812426999977],[25.508328547000133,-24.360851844999956],[25.405408288000046,-24.381346768999947],[25.33265326500009,-24.44601505099996],[25.27980483700003,-24.580629851999902],[25.225273231000017,-24.596585927999968],[25.225795039000047,-24.705604405999907],[25.079403825000043,-24.676627557999836],[25.046381577000147,-24.763308815999835],[24.964279313000134,-24.742410091999943],[24.77327937200016,-24.767910676999918],[24.631663509000077,-24.71657731799985],[24.542756046000022,-24.737241270999846],[24.478883551000138,-24.699636347999956],[24.381458442000167,-24.714562444999956],[24.350185624000062,-24.79220736499991],[24.424011569000186,-24.83700225599989],[24.573597017000168,-24.8530462679999],[24.688984569000183,-24.841098444999886],[24.862116403000073,-24.925054574999933],[24.785132005000037,-25.065127695999877],[24.657387866000192,-25.108446302999937],[24.592009606000147,-25.19890618399984],[24.661790054000107,-25.237050332999956],[24.650941439000178,-25.294186411999874],[24.707844366000188,-25.366166103999944],[24.89010169200003,-25.404524597999966],[25.07773578600012,-25.601627031999953],[25.082891576,-25.66589444199991],[25.17432402000003,-25.654054616999872],[25.19741685000008,-25.76033148399995],[25.342472076000092,-25.768367766999972],[25.58155441300005,-25.637720107999883],[25.69029617300015,-25.37393951399997],[25.735279083000023,-25.360385894999865],[25.898609161000024,-25.49729156499984],[25.990283966000106,-25.594535827999948],[26.048542022999982,-25.745178222999982],[26.11656379700014,-25.785844802999975],[26.33793830899998,-25.765804290999938],[26.442131042000028,-25.85910987899996],[26.503473282000073,-25.80820846599994],[26.509386063000193,-25.74373054499995],[26.679033279000123,-25.74059867899996],[26.753770828000143,-25.836481093999907],[26.85557937600015,-25.83445358299997],[26.95345306400003,-25.882450103999872],[27.14076995800019,-25.92259788499996],[27.26613616900005,-25.928752898999846],[27.332496643000013,-25.97008323699987],[27.24474525500011,-26.09569358799996],[27.45195198100015,-26.068971633999922],[27.580810547000112,-26.024963378999928],[27.63788414000004,-26.04033660899995],[27.702877045000093,-25.939020156999902],[27.853204727000048,-25.820434569999975],[28.171255112000097,-25.77782058699995],[28.435140610000133,-25.928339004999884],[28.503149033000113,-25.88926887499997],[28.504005432000042,-25.733133315999908],[28.535039902000108,-25.62508583099998],[28.67403602600001,-25.680772780999973],[28.843215941999972,-25.59602928199996],[28.961977005000165,-25.650638579999907],[29.0530662540001,-25.628929137999933],[29.172304153000084,-25.652067183999918],[29.264802933,-25.546810149999942],[29.496629714999983,-25.461389541999893],[29.661767960000134,-25.43537712099993],[29.63204193100006,-25.358833312999934],[29.697324753000032,-25.23682594299993],[29.535768509000036,-25.146350860999917],[29.69556808500016,-25.004886626999962],[29.748132706000035,-24.90904998799988],[29.808835983000108,-24.91086387599995],[29.790746689000173,-25.031169890999934],[29.809833527000023,-25.199447631999874],[29.920339583999976,-25.145631789999925],[29.962270737000097,-25.05727577199991],[30.09171867400005,-25.08161926299988],[30.144615173000034,-25.13592719999997],[30.17308235200005,-24.925508498999932],[30.238559723000037,-24.872535705999894],[30.301471710000044,-24.948553084999958],[30.427572250000082,-24.909805297999924],[30.41441535900009,-24.862863540999967],[30.517873764000115,-24.762348174999943],[30.616130829000156,-24.743705749999947],[30.68212890600006,-24.586772918999884],[30.860427856000115,-24.52525329599996],[30.802494049000074,-24.505178451999882],[30.664583206000145,-24.490198134999957],[30.635643005000077,-24.45619010899992],[30.515827179000155,-24.43310546899994],[30.415229797000165,-24.388675689999957],[30.33153915400004,-24.314243316999864],[30.29779243500019,-24.210052489999896],[30.165283203000172,-24.188196181999956],[30.140888214000142,-24.05715179399988],[30.103670120000174,-24.04436111499996],[30.006660461000138,-24.045778274999975],[29.88902092,-24.1398315429999],[29.77394485500014,-24.11277008099995],[29.810388565000153,-24.05005836499987],[29.881511688000103,-24.035091399999885],[29.907648087000155,-23.923860549999915],[29.880426407000073,-23.83667564399991],[29.992984772000057,-23.76122856099994],[29.9191608430001,-23.761346816999946],[29.87488746600019,-23.700458526999967],[29.94464683500007,-23.63130569499998],[29.958400726000093,-23.503086089999954],[30.023750305000135,-23.478630065999937],[30.062316895000095,-23.38703155499985],[30.02568054200009,-23.31857681299988],[29.91287040700007,-23.334001540999907],[29.918655396000077,-23.240476607999938],[30.026643753000087,-23.226978301999907],[30.13463211100003,-23.129594802999975],[30.151819229000125,-23.0634937289999],[30.335075378000113,-23.058141707999937],[30.43199539200009,-22.981601714999954],[30.602724075000026,-22.92669677699996],[30.6333103180001,-22.88916587799997],[30.431123734000096,-22.8192234039999],[30.61700439500015,-22.677473067999927],[30.558822631999988,-22.79998207099993],[30.672960281000087,-22.83079719499989],[30.899908066000023,-22.732908248999934],[30.89095306400003,-22.64000701899988],[30.781429291000165,-22.661844253999902],[30.77680587800012,-22.57821273799982],[30.58325004600016,-22.624912261999896],[30.537820816000135,-22.58949470499988]]]},"properties":{"objectid":134,"eco_name":"Central bushveld","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Afrotropic","eco_biome_":"AF07","nnh":3,"eco_id":38,"shape_leng":52.5223891507,"shape_area":13.8503170774,"nnh_name":"Nature Could Recover","color":"#FDAE38","color_bio":"#FEAA01","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":156375.7238779804,"percentage":0.729397868001699}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-88.33399404899995,37.01837370000004],[-88.48766220699997,37.30530490700011],[-88.40726101899992,37.41156318700001],[-88.32761041099997,37.39627852700016],[-88.04447428599997,37.485541122000086],[-87.99178267399992,37.35236097400019],[-88.01041495799996,37.24800180799997],[-87.87881355199994,37.23217738400018],[-87.75927609299993,37.09766489599997],[-87.61691845699988,37.05234019000005],[-87.45528933399993,37.070858427000076],[-87.27405740499995,37.004606755000054],[-87.24139568299995,36.965253623000024],[-87.04445936299999,36.956313794000096],[-86.94657369599992,37.02996639300005],[-86.77008373499996,37.09144018800009],[-86.69819806399988,37.15488228000004],[-86.53859691299988,37.13229952200004],[-86.26866211899994,37.13450381700011],[-86.20319322199992,37.18502756400005],[-86.02461805399986,37.22144511800019],[-85.97180277299992,37.26673005300012],[-85.79288906899995,37.33914851900005],[-85.93720015799994,37.35857263200006],[-85.99422820399991,37.32917001900012],[-86.1229384479999,37.32979517300015],[-86.07561311099994,37.407249002000015],[-86.35051944099996,37.49438920200015],[-86.47644186299988,37.478796552000176],[-86.58974354399993,37.66768240500005],[-86.57868165799994,37.759026501000164],[-86.75384391699998,37.89831050100014],[-86.80224125699988,37.97750216700018],[-86.78014246399994,38.060041964000106],[-86.88650479799998,38.151385681000136],[-86.83685602799989,38.23269428300006],[-86.95525266699991,38.54034637000018],[-86.89478730399992,38.64186041900007],[-86.91964640999993,38.82747265400013],[-86.8794859539999,38.964262824000116],[-86.93250839499984,39.20649093300017],[-86.89776393399984,39.303354077999984],[-86.98377956799999,39.39548035200005],[-86.94970747799994,39.52223487700007],[-87.00217561699992,39.55316155200018],[-87.05098664499997,39.68303555400013],[-86.93845624599999,39.74175383400018],[-87.027147873,39.785525380000024],[-87.11524977899995,39.71482528100006],[-87.29464309299993,39.77285536100004],[-87.33330655499992,39.914612323000085],[-87.40811254899995,40.0065812470001],[-87.38238833299994,40.10826345000004],[-87.47763728699982,40.20584049700017],[-87.33411579599994,40.308475916000134],[-87.35914287099996,40.425252177000175],[-87.21636748899988,40.393566075000194],[-87.13807796299994,40.40623085600009],[-87.04925057899993,40.47119767000004],[-86.94090725299992,40.48136839900019],[-86.91538216099997,40.632538970000155],[-86.93613366899996,40.68147916600009],[-86.76690493799993,40.74813434500004],[-86.81768327599991,40.85053314400011],[-86.73995815499995,40.93591490600011],[-86.64717346799995,41.16258248300011],[-86.58992942599997,41.23420122900012],[-86.40915394699982,41.289113225],[-86.43940184099984,41.34139022000011],[-86.42978192999993,41.46241549500019],[-86.33584194199994,41.586675045000106],[-86.31760138399989,41.673144861000026],[-86.47296980499993,41.600436978],[-86.50780486799994,41.55207752100006],[-86.6912701899999,41.480227532000185],[-86.92393148899993,41.28834590200006],[-87.00157155599999,41.29302363200003],[-87.08698557199983,41.42061725600007],[-86.99966785799995,41.52177451800003],[-87.02361189099997,41.606689289000144],[-87.22053444099998,41.601587527000106],[-87.41154202699994,41.64368964400012],[-87.52843297699991,41.715998741000135],[-87.60132391799993,41.827971483000056],[-87.68142396599995,42.074653339000065],[-87.81062401999998,42.22648972100012],[-87.83447857999982,42.3023351870001],[-87.80286039799995,42.39019884000015],[-87.8159422459999,42.642680700000085],[-87.75780588099997,42.782044363000125],[-87.84370591499999,42.873580737000054],[-87.84525137999998,42.962180751000176],[-87.91080036399995,43.25585030700006],[-87.87388782399995,43.37470266500003],[-87.80420596699997,43.46300810900016],[-87.78854233899989,43.56641721799997],[-87.70384232699996,43.68378087800005],[-87.73540487999998,43.87207011700008],[-87.64743814499991,44.10279527100005],[-87.51820114699984,44.17964389900004],[-87.54116052899997,44.29315371400003],[-87.45973908899987,44.56300825799997],[-87.63431551999992,44.66123697600011],[-87.69701926099987,44.751871172000165],[-87.77311891599999,44.639856768000186],[-87.88355555199996,44.60283614300016],[-87.93059823099998,44.53535257500016],[-88.03381742399989,44.56854609700014],[-88.17538587799993,44.51972242199997],[-88.3068234399999,44.384116003000145],[-88.39049289499985,44.362070002999985],[-88.63755108399994,44.24541848700005],[-88.73074662099998,44.23417987300007],[-88.80102100599987,44.27778860400008],[-89.00271702599991,44.104986921000034],[-89.17489498599997,43.980048538000176],[-89.12387464499994,43.892123778000155],[-89.10645253499996,43.74720049300015],[-89.23250146099997,43.735088556000164],[-89.49337409999987,43.64247641600008],[-89.58470593099997,43.52658832100013],[-89.50825049999997,43.47315684600011],[-89.68754764899995,43.40574578400003],[-89.53552228999996,43.320110973000055],[-89.59513052699992,43.2444259400001],[-89.60131414699998,43.07356829900016],[-89.54240584099995,42.95400670400005],[-89.5438868789999,42.824832512000114],[-89.67847880499994,42.599373249000166],[-89.80382183599994,42.575115649000054],[-90.01907483899987,42.360082469000076],[-89.92139793199993,42.285854845000074],[-90.06614564799997,42.101411525000174],[-90.16571016599994,42.08687206400003],[-90.14416317699994,42.01166676500003],[-90.19584786899998,41.80614518400006],[-90.32365078399994,41.72956947800009],[-90.3422907879999,41.59143968900014],[-90.4564246079999,41.527425744000084],[-90.60070324499992,41.509592330000146],[-90.65879492399989,41.462327329000175],[-90.84746118399994,41.45502577899998],[-90.93213393199994,41.421562132000076],[-91.17142654399993,41.426954825000166],[-91.07784512899991,41.58813096600005],[-91.23915006699997,41.55790782800011],[-91.38015344299998,41.47412522200011],[-91.53789261399993,41.62431205100006],[-91.54430537099995,41.48890324800004],[-91.44543558699996,41.40023386700011],[-91.28766914299996,41.18743298000004],[-91.2028882009999,41.129906824000045],[-91.08006787099998,41.09651549200004],[-91.03037743299996,40.99927200500014],[-91.10557376099996,40.84403165100019],[-91.09910541699998,40.76359676400017],[-91.1864932229999,40.75968893500004],[-91.30190188699987,40.62930318300005],[-91.44898814999993,40.60623440800009],[-91.38124871399998,40.52557362600015],[-91.38576644599988,40.39236904800015],[-91.5249111149999,40.410805338000046],[-91.58544903099988,40.365304016000096],[-91.52190691299995,40.21536974600019],[-91.50271603799996,40.06334133500013],[-91.52453797799996,39.93429927400018],[-91.65849378299993,39.83294148900006],[-91.74321915399992,39.87600600000013],[-91.84186290799994,39.87902070200016],[-91.93652195599998,39.93545018900011],[-91.94838381799991,39.80741684200018],[-91.86447964299992,39.808920204],[-91.77769675699994,39.67844315800011],[-91.70708844899997,39.72470995600003],[-91.50277676499985,39.733897233000164],[-91.49445340699987,39.67552989700005],[-91.7519729149999,39.603460323000036],[-91.78637163299999,39.54433127600004],[-91.95215526499987,39.65718254700005],[-91.93630926799989,39.56658236800007],[-91.99119928399989,39.46809121300015],[-91.89062426699996,39.43983770100016],[-91.77758916199986,39.32134503100008],[-91.77834692899995,39.456555255000126],[-91.66306302999999,39.44661923300009],[-91.59613620299996,39.51756007400007],[-91.45272366499984,39.56225653300015],[-91.56526926799995,39.424029400000165],[-91.38941323199998,39.355778630000145],[-91.33306530099998,39.41340217100009],[-91.11073924599987,39.311452376000034],[-91.20793919699986,39.26094644800003],[-91.35749154999996,39.23299689200013],[-91.31874585199989,39.16410389100014],[-91.24417271299995,39.15883766800005],[-91.24318026999998,39.07936236600011],[-91.39867860599992,39.17646886400013],[-91.33988311699989,39.03199717900003],[-91.25557525799996,38.955534565000164],[-91.04123488599998,38.99469529900006],[-90.92871585799992,38.980337705000125],[-90.9549294439999,38.90299725900013],[-91.06241961399991,38.95427899800006],[-91.07747614999994,38.855588101000194],[-90.92958215099992,38.764999623],[-91.1549125119999,38.79234698400012],[-91.38985249399991,38.87688575600015],[-91.50689663799994,38.884770595000134],[-91.56295961899991,39.06089678300003],[-91.71567134299994,39.09659258200003],[-91.77879134299991,39.07159958600016],[-91.67143056299989,38.902625921000094],[-91.73914474399987,38.88388488500004],[-91.82160120799989,38.974480888000016],[-91.95276901699992,38.980437137000024],[-92.00266138999996,38.86572072500013],[-92.30110251999997,38.777329728000154],[-92.30841622499997,38.92011475800001],[-92.3871219959999,39.04682989700018],[-92.47039608599994,39.08718450600003],[-92.45340649399998,39.27642357800005],[-92.59778766799997,39.305903972000124],[-92.73709742699998,39.19230274900008],[-92.96471093899999,39.12445273100013],[-93.00161862399983,39.00881433600006],[-93.23824234599994,39.029191395000055],[-93.26538143099998,38.92767470000007],[-93.15614972899994,38.822890163000125],[-93.142867331,38.765493626000136],[-93.03178270099994,38.69199220300004],[-92.87603696599996,38.826621602000046],[-92.71072711199992,38.88476194000003],[-92.56581356199996,38.84404236300003],[-92.545392672,38.78439289900007],[-92.69489389299986,38.75732052700005],[-92.67939699899989,38.63643524100007],[-92.50467557699989,38.51000677100012],[-92.53070020599989,38.46984380400016],[-92.41201802399996,38.40354926000015],[-92.36301151299995,38.451350859000115],[-92.27002500799995,38.44002584100008],[-92.18704395399999,38.48299978200015],[-91.97418706899998,38.53111486200004],[-91.90155286099997,38.58246856400018],[-91.79590120099994,38.58189909000015],[-91.57012399199994,38.64343064100018],[-91.39591909599994,38.6355618770001],[-91.23054903899992,38.507565007000096],[-91.13595494099997,38.524029573000064],[-91.00421140399999,38.455278907000036],[-90.85820917199999,38.47264287500019],[-90.67697829799994,38.58211655200017],[-90.61378671499995,38.56865438500017],[-90.47046575799993,38.630412885000055],[-90.31078216899994,38.47272772500014],[-90.38385804799998,38.26008670600015],[-90.37127803699997,38.174723650000146],[-90.13561475599994,37.88859891600009],[-90.03519192299996,37.84976698400004],[-89.92514548999986,37.7043921340001],[-89.98210106799996,37.62710754200009],[-89.85234944899997,37.530651775000024],[-89.76142644499998,37.29294590100017],[-89.61049339899989,37.21923953900006],[-89.70037386799999,37.12936560400016],[-89.6148549209999,37.05054531600007],[-89.44421641399987,37.16374655200019],[-89.33462461999989,37.18734480800015],[-89.17361306999987,37.05926587400006],[-89.09682652899994,36.95347320500014],[-89.05969751299989,37.09429589700005],[-88.98000836099993,37.198110845000144],[-88.80186969499994,37.16036017900018],[-88.74180356999995,37.09370120000011],[-88.66284716099995,37.08654047300013],[-88.55674306799995,36.931837120000125],[-88.49418190399996,37.019153461000144],[-88.33399404899995,37.01837370000004]],[[-88.28718594299994,37.70295021900006],[-88.30492042499992,37.67048479000016],[-88.13588231299997,37.575474940000106],[-88.09568861899993,37.483948465000026],[-88.31910133799988,37.44587319400017],[-88.46927853499989,37.40354332200019],[-88.51588095099987,37.30302485400017],[-88.61705800099986,37.358383295000124],[-88.81410223399996,37.323515091000104],[-89.05922137299984,37.33298961400004],[-89.26480708499997,37.275773781000055],[-89.32135827399992,37.542743814000175],[-89.3782984579999,37.5913993850001],[-89.34439439199997,37.69458865100012],[-89.23656152899997,37.640858670000114],[-89.16649702399997,37.66371458200007],[-88.84272771799994,37.61488531700019],[-88.73250046999988,37.64731986200019],[-88.50889777099991,37.63177289400011],[-88.40392375699992,37.70129675400011],[-88.28718594299994,37.70295021900006]],[[-88.62491297299988,37.325651679000146],[-88.48891996599997,37.24250868500013],[-88.56869483399998,37.21339711700017],[-88.62491297299988,37.325651679000146]]]},"properties":{"objectid":140,"eco_name":"Central US forest-grasslands transition","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Nearctic","eco_biome_":"NE08","nnh":4,"eco_id":387,"shape_leng":62.9558568999,"shape_area":24.1736924333,"nnh_name":"Nature Imperiled","color":"#A3FC62","color_bio":"#FEFF73","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":228582.80927941512,"percentage":2.157398639665645}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-99.65211460299997,19.71584917500013],[-99.75776664899996,19.70806154800016],[-99.86877456299993,19.772587786000088],[-99.9411776099999,19.737915708000116],[-99.95568064999998,19.650504696000098],[-99.8862156269999,19.601014754000175],[-99.86710354699989,19.497611573000086],[-99.95902251399991,19.451471374999983],[-99.92237850999993,19.360864511000102],[-99.85449263799995,19.32953832100003],[-99.7746806589999,19.21761594100002],[-99.68925464899996,19.199745221000057],[-99.59580967099993,19.116480903000138],[-99.42449966399994,19.118038764000175],[-99.47950757999996,19.24371651700011],[-99.48218559799994,19.327241680000157],[-99.67314965999992,19.555515269000068],[-99.64360864799988,19.600939651999965],[-99.65211460299997,19.71584917500013]]],[[[-100.80616755499983,22.454532272000165],[-100.90573165699993,22.552059236000105],[-100.97588365999991,22.546276561000127],[-101.09484063599996,22.6733259290001],[-101.14665957299997,22.59632591100018],[-101.22083254299991,22.60122563600015],[-101.28286751199994,22.655065785000033],[-101.33834062299997,22.590391355000122],[-101.42857365499992,22.626119218000156],[-101.35190555999992,22.71933453100013],[-101.46503459899992,22.776483520000113],[-101.48046853199992,22.585153504000118],[-101.54493760499997,22.543190679000077],[-101.5148616599999,22.42704281500005],[-101.58979067799999,22.38931771200015],[-101.59047665299988,22.50536583200011],[-101.62430551099999,22.590538206000133],[-101.81336956399991,22.518751061000103],[-101.8958666019999,22.547006457000123],[-101.90883659099995,22.62139148900002],[-102.00055657199994,22.689552958000093],[-101.97076460599999,22.731423917000143],[-102.0808565459999,22.843367922000084],[-102.16077463999994,22.882134895000036],[-102.13205756899993,22.985519636000163],[-102.28742251499995,23.00541559200019],[-102.31109652999993,22.97033028600015],[-102.57532462799992,23.00726648400007],[-102.60688752299995,22.843794058000185],[-102.67779557399996,22.795385550000162],[-102.72679852699997,22.85516846900009],[-102.79446462599986,22.801908012000183],[-102.84169765599995,22.808330729000033],[-102.9016495539999,22.848796546000187],[-103.00848361499999,22.791019584000026],[-103.04935461299993,22.66288341900014],[-103.18473056399989,22.62474240600011],[-103.24359164099997,22.439499329000057],[-103.2443696489999,22.368478792000076],[-103.35457658899992,22.334283812000137],[-103.38982366499994,22.44164107200004],[-103.51598354499998,22.389048821000188],[-103.50640051599993,22.272439113000132],[-103.56678760199992,22.195991295000056],[-103.66394056499996,22.193553334000057],[-103.64155551899984,22.125538046000145],[-103.55659453699997,22.155397235000066],[-103.40745566899989,22.111528700000065],[-103.35540757099994,22.031214813000133],[-103.44445757999989,21.998947838000106],[-103.5898815889999,22.079901265000046],[-103.66094956699999,22.041033374000108],[-103.60830652099992,21.960716637000075],[-103.63597853599998,21.881285867000145],[-103.74064654599988,21.87217339700004],[-103.72639462899991,21.701779699000042],[-103.5683136109999,21.788891142000182],[-103.52294153099996,21.739176565000037],[-103.53675859499998,21.565278226000032],[-103.63270557099997,21.500340772000186],[-103.59667160099997,21.422278934000133],[-103.678123584,21.351337020000187],[-103.61725654999998,21.20219597300013],[-103.64651458799989,21.143235487000084],[-103.51557953799994,21.112953012000162],[-103.55338259199993,21.250768430999983],[-103.42704065599997,21.322835532000056],[-103.3338695999999,21.34883301100001],[-103.42668962199997,21.422523015000024],[-103.25471459399995,21.611900551000133],[-103.19660151799997,21.711005156000112],[-103.23889157299999,21.79305476900015],[-103.23363461099996,21.972275281000066],[-103.19832651399997,22.050568963000103],[-103.21739953499997,22.118499426000028],[-103.11083251999997,22.127965613000185],[-103.12344359699995,22.060525490000146],[-103.00399762099988,21.947169637000115],[-103.0268245609999,21.838336492000167],[-103.08673857199994,21.791067921999968],[-103.118102648,21.694816013000093],[-103.06185152799992,21.64142295500011],[-103.14446255999997,21.521631477000085],[-103.1265185819999,21.462466640000116],[-103.04058060499995,21.402671148000138],[-102.89182260999996,21.560132408000015],[-102.88227059299993,21.646906564000062],[-102.79373154399997,21.763042526],[-102.571647655,21.842609251000113],[-102.48955563099992,21.81518047800006],[-102.55094167199996,21.724674364000123],[-102.6011506129999,21.71235212800019],[-102.63543662099994,21.53821071400006],[-102.76488455399993,21.426877749000084],[-102.69148255099998,21.277350799000146],[-102.62060551299999,21.345039194000094],[-102.49047059899988,21.276467849000085],[-102.41243759499991,21.31507674000011],[-102.33988166199998,21.29924282100012],[-102.2094346049999,21.18416113500001],[-102.06108866499994,21.1654440100001],[-101.77391862699994,21.162026372000128],[-101.63191963199989,21.107633353000097],[-101.45664263699996,21.10390659100011],[-101.40044365299991,21.223485001000142],[-101.28583554399995,21.243117933000065],[-101.168067625,21.31852069600012],[-101.10888652699992,21.252572217000022],[-101.04956863599995,21.13314904000015],[-100.96541566899992,21.128487193000183],[-101.06521563799993,20.907102354000074],[-100.86864458499991,20.866296567000177],[-100.79127458999994,20.81115973800007],[-100.74114259399994,20.89280333],[-100.66789951299995,20.883568820000107],[-100.53664360299996,20.739590857000053],[-100.38545954999995,20.657098345000065],[-100.36844663399995,20.51977209400019],[-100.440635607,20.40247473500017],[-100.39337961099994,20.389860473000056],[-100.21764362299996,20.42869936300019],[-100.08253455199997,20.367697883000062],[-99.96777355699993,20.244728825000152],[-99.82595862799991,20.212086677000116],[-99.71159359399996,20.25680698000008],[-99.67739861399997,20.31310269200003],[-99.59782451299992,20.321666315000073],[-99.54334264599987,20.421445831000085],[-99.46956664199996,20.37622915200012],[-99.45561261799998,20.307837180000092],[-99.48143759699997,20.19274660900004],[-99.45516167099993,20.06158407300012],[-99.45785561499991,19.954975317000105],[-99.27362054499997,19.782517324000082],[-99.28189063299999,19.68484485000016],[-99.23233061899998,19.605074613000056],[-99.26679951999995,19.47186722800012],[-99.18422654199992,19.39426170100012],[-99.19901255399998,19.319395045000135],[-99.09145362499999,19.214284303000056],[-98.91141554199999,19.16397829900012],[-98.85845951599993,19.203686727000047],[-98.84835865199994,19.44758250800004],[-98.78556059499988,19.56449094600009],[-98.63124053699994,19.70806356000014],[-98.52054560399995,19.64981084200008],[-98.45604652299988,19.686828847000072],[-98.3612896109999,19.602568591000022],[-98.22791257599994,19.61188407100019],[-98.41004965599996,19.72194684200008],[-98.52520761799997,19.732024069000147],[-98.54990355499996,19.841394829000023],[-98.52935062499995,19.96079990200019],[-98.62467951899998,20.069819796000047],[-98.77894559699996,20.128593197999976],[-98.84177366099993,20.189937832999988],[-98.8737796229999,20.28646634500012],[-98.95983863499987,20.403696648000107],[-99.0103525099999,20.39995899000013],[-99.10584267099989,20.46507615200005],[-99.11375451699996,20.562489625000126],[-99.17404152299991,20.595763937000072],[-99.28301967599987,20.57841792300019],[-99.30880760699989,20.75447292600012],[-99.450652543,20.749173384000187],[-99.52115658599996,20.710637584000096],[-99.69815052999996,20.750983037000083],[-99.76860864099996,20.749560293000172],[-100.01911958699998,20.940135770000154],[-100.04575358699992,20.875884291000148],[-100.11879751499993,20.84583600600007],[-100.23757159699989,20.860551946000157],[-100.33020051199998,20.801872254000102],[-100.40030658299997,20.857636385000035],[-100.38171350999988,20.981339194000157],[-100.27828266899996,21.01521633200008],[-100.2159425989999,21.09779601600019],[-100.0432125289999,21.126086280000038],[-99.99377455599989,21.084547748000034],[-99.90837067399991,21.12321531100008],[-100.03418756699989,21.158394494000163],[-100.11507460899998,21.152148970000155],[-100.15534965299992,21.243102678000184],[-100.21535452499984,21.263830622000114],[-100.27279654599988,21.354529855000123],[-100.18749257599995,21.394757626000114],[-100.18785852999997,21.478273903000172],[-100.21076157699997,21.515188978000026],[-100.30741866699998,21.36293522700015],[-100.53480561899994,21.371524666000028],[-100.57676659999993,21.454565187000128],[-100.69078864599999,21.505570409000086],[-100.62783854199995,21.5729629220001],[-100.48741165599995,21.52118053000015],[-100.48949455899998,21.58489825000015],[-100.35691866699995,21.637456303000192],[-100.33213052899998,21.65683006600011],[-100.51464060399991,21.754348984000103],[-100.50815552499989,21.815056761],[-100.66925067499989,21.902580762000184],[-100.63709266599994,21.94304071200014],[-100.7084426109999,22.063981349000187],[-100.69484766699992,22.13106457000015],[-100.73514550999988,22.19557907300009],[-100.75981864799996,22.316216620000034],[-100.70825167099991,22.318182679000074],[-100.63860358799997,22.252245264000067],[-100.54774459499998,22.254185005000068],[-100.53777365099995,22.44890583600005],[-100.53378252399995,22.582738678000112],[-100.61232766199998,22.55866182900013],[-100.70433765699983,22.58947739300004],[-100.76232953099998,22.516275215000064],[-100.80616755499983,22.454532272000165]],[[-102.71445466599994,22.509073651],[-102.64875060299994,22.456792200999985],[-102.51352653299989,22.43708634600017],[-102.508766617,22.286553232000074],[-102.44574761399997,22.232688273000065],[-102.518569588,22.160861900000043],[-102.44351953599994,22.112304529000028],[-102.37437453499996,21.995634807000158],[-102.50729358199993,21.934094204000132],[-102.55408454999997,21.862008160000187],[-102.65467861999997,21.88423696700005],[-102.6491165569999,21.96376446400012],[-102.71237964199992,21.995401958000173],[-102.74966452699988,21.905778626000142],[-102.83650154599991,21.802841311000066],[-102.88667260099999,21.897469142000034],[-102.78119657599996,22.117759472000103],[-102.816932652,22.179843055000163],[-102.68891852699994,22.435356321000086],[-102.71445466599994,22.509073651]],[[-101.20048564099994,22.193437161000134],[-101.13095054599995,22.200888841000108],[-101.10825352499995,22.119312303000072],[-101.14931462499999,22.075508645000014],[-101.28083758199995,22.08511296500012],[-101.20048564099994,22.193437161000134]],[[-101.04359451799996,22.07620652200012],[-100.92129567799992,22.032755910000162],[-100.98392458799998,21.86963250700012],[-101.0369416339999,21.811108885000067],[-101.14615665899998,21.91523911200005],[-101.14374552099997,22.036703786000146],[-101.04359451799996,22.07620652200012]],[[-100.877853615,21.808099111000047],[-100.768783596,21.757446767000033],[-100.78052563699998,21.704682519000016],[-100.88700866499994,21.739810740000166],[-100.877853615,21.808099111000047]],[[-101.07155554099995,21.728077417000065],[-101.21940661399998,21.64191094900019],[-101.24052465099999,21.737071870000022],[-101.20584067099992,21.837268470000083],[-101.07211260299994,21.757457832000114],[-101.07155554099995,21.728077417000065]],[[-100.86850762499995,21.652584465000132],[-100.82058761399986,21.57413957400007],[-100.95628358599993,21.47108541500012],[-101.03811660899999,21.385289931000045],[-101.11497463799998,21.398831398000027],[-101.1344605509999,21.488704511000094],[-101.04589065699997,21.518684734999965],[-100.92695664699983,21.644587794000074],[-100.86850762499995,21.652584465000132]],[[-101.25693557999989,21.48230962200006],[-101.28330957299994,21.398581282000123],[-101.36070253499992,21.331089863000102],[-101.38647454099998,21.25379329300017],[-101.44616659899992,21.267258485000127],[-101.40555560799993,21.365448960000037],[-101.46314263499988,21.505991516],[-101.33698258699997,21.527225224000063],[-101.25693557999989,21.48230962200006]],[[-101.52745060799992,21.33693556999998],[-101.46559165999992,21.28153772700017],[-101.50758365399997,21.166849152000168],[-101.56040154599998,21.16411011400004],[-101.770408622,21.235674132000156],[-101.74938965799998,21.39072777400014],[-101.71492763099991,21.43018658900013],[-101.73035452399995,21.548757998000042],[-101.77584864399995,21.56414314900013],[-101.79730262899994,21.657984087000102],[-101.75346359899993,21.733052915000144],[-101.59672552899991,21.533646767000164],[-101.57884257099988,21.458307036000065],[-101.482208615,21.435435337000058],[-101.45175162899994,21.36862301900004],[-101.52745060799992,21.33693556999998]],[[-102.03900855299986,21.35007587900003],[-102.13273667099992,21.353459821000058],[-102.14002255599996,21.43931615800011],[-102.07937663699994,21.508370131999982],[-102.05884566799995,21.621172277000028],[-101.94528965599994,21.623974012000133],[-101.84670254799994,21.687580419000028],[-101.82691958099997,21.58879499600016],[-101.90170258499995,21.535647695000023],[-101.96401264799994,21.557376438000063],[-102.01141365199999,21.49882783900017],[-101.9598615939999,21.42300899800017],[-102.03900855299986,21.35007587900003]],[[-101.8491135189999,21.75294887100017],[-101.88732158699997,21.77490375700006],[-101.89583558899994,21.887833642000032],[-101.81801565199993,21.958792990000177],[-101.8491135189999,21.75294887100017]],[[-103.26985164099995,22.263658567000164],[-103.24459059599991,22.192260174000182],[-103.29109959799996,22.155120464000163],[-103.38101964899988,22.21629595200011],[-103.26985164099995,22.263658567000164]],[[-103.357299534,21.817673592000062],[-103.44939452099999,21.62893274600009],[-103.48357357599991,21.67034437600006],[-103.357299534,21.817673592000062]],[[-100.51564760599996,21.00272310600002],[-100.42514752699998,20.927395277000187],[-100.49633067199994,20.86465974900011],[-100.59114055799995,20.934726760000103],[-100.51564760599996,21.00272310600002]],[[-99.5038605289999,20.56813349600003],[-99.43543251499995,20.574590076000106],[-99.3627625879999,20.464143414000148],[-99.52225461499995,20.44374353800015],[-99.5038605289999,20.56813349600003]],[[-99.31758161499994,20.326047200000062],[-99.27834357999996,20.221565101000124],[-99.36588266799993,20.20049232600013],[-99.39671365499999,20.256414204000066],[-99.31758161499994,20.326047200000062]],[[-99.01709759499994,20.231435462000093],[-99.032760522,20.140360720000047],[-99.13632966499989,20.219108365000068],[-99.01709759499994,20.231435462000093]],[[-101.10165361499992,22.534995190000075],[-101.18489865399994,22.442943117000084],[-101.25205261799988,22.529311421000102],[-101.21070066599998,22.55831884100013],[-101.10165361499992,22.534995190000075]]]]},"properties":{"objectid":143,"eco_name":"Central Mexican matorral","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Nearctic","eco_biome_":"NE13","nnh":4,"eco_id":427,"shape_leng":54.6943488926,"shape_area":5.15728259103,"nnh_name":"Nature Imperiled","color":"#CC9141","color_bio":"#CC6767","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":59487.29279635399,"percentage":0.22548286662706654}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[48.695098463000136,37.336172053000155],[48.63952661200011,37.354939804000026],[48.49585760600013,37.24797766700004],[48.50518750300017,37.1524865],[48.59775154200008,37.05719767200014],[48.75327658200018,36.942407843000126],[48.86848852300011,36.89848281500019],[49.13779052299998,36.740111113000125],[49.24985154000018,36.54479919000005],[49.46344355499997,36.49221062600003],[49.63610858100003,36.41982803100018],[49.76379061600005,36.4482544170001],[49.9804644890001,36.41772618500016],[50.03688056500005,36.52525678300003],[49.69034553000006,36.59164246200004],[49.33118852200016,36.70241098900004],[49.1406365150001,36.836930141000096],[48.931858561000126,37.09362676400019],[48.824783604000174,37.17024725000016],[48.695098463000136,37.336172053000155]]],[[[60.87643454000016,35.77998069900008],[60.80456558700013,35.94222366700018],[60.68049950600016,36.08400573900008],[60.547576603000095,36.19920309600002],[60.199569539000095,36.398210600000084],[60.19312653700007,36.45473631100015],[60.08406858900014,36.60557318500008],[59.950691555000105,36.718135774000075],[59.86378060599998,36.74726691100011],[59.5906256130001,36.704451814000095],[59.39929157400019,36.75100591000012],[59.13154559100019,36.88851103200017],[59.0123175440001,36.97242545000017],[58.676677475000076,37.07641234700003],[58.54371651800005,37.136057132000076],[58.29559357599999,37.33274318400004],[58.09599648900013,37.464797554000086],[58.00160251300008,37.508085725],[57.75028254500012,37.57228557100012],[57.559959531000175,37.56176879800006],[57.31105757500012,37.63909504000003],[57.152412623000146,37.66583951300015],[57.09217456700014,37.70401992],[56.976901605000194,37.6845194230001],[56.923660594000125,37.645874155],[56.941299471000036,37.57413931300016],[57.073875531000056,37.48417617900009],[57.262546472000054,37.43124814800012],[57.392848522000065,37.37500121900018],[57.72160352800017,37.26164234900017],[57.84927751600014,37.24713076000006],[58.09066056900008,37.106676549000156],[58.316028488000086,36.850727927000094],[58.47132453500012,36.710242704000166],[58.58640655700009,36.66218992299997],[58.796089588000086,36.507430989000056],[58.89702262200012,36.45438544400014],[59.070907550000186,36.315487417999975],[59.12980249000009,36.247315723000156],[59.11718353500004,36.108093987000075],[59.02534855400006,36.15213787100009],[58.66197159300009,36.2632386570001],[58.4863506050001,36.34310159800003],[58.40645547700012,36.33858492600007],[58.42603660900005,36.240782029000115],[58.395656569000096,36.18822833500013],[58.163505511000096,36.226206403000106],[57.80724763600017,36.243490055000166],[57.388572577,36.307972371000176],[57.14094953199998,36.30054986100015],[56.74400757500001,36.38613378600019],[56.62266963600018,36.457459088000064],[56.60294349800017,36.5255427730001],[56.87410762100018,36.52669059100003],[57.040542546000154,36.505768187000115],[57.20291861900017,36.52431482399999],[57.504615501000046,36.534999572000174],[57.67529653100007,36.51968801400017],[57.82186550700004,36.46628305300004],[58.007312601000194,36.36539025200017],[58.08391162900017,36.42646985100009],[58.03689954500004,36.52818977800018],[58.02626760400011,36.63631146800009],[58.107707516,36.725428365000084],[58.03387049300005,36.8223543470001],[57.925147486000185,36.84479605399997],[57.76620849700015,36.82766042700018],[57.62089160900001,36.86339968800007],[57.43974661100003,37.04378176500006],[57.42610154300007,37.12548704900013],[57.089397475000055,37.20661951300019],[56.911453526000116,37.201752645000056],[56.822441570000194,37.25058762400005],[56.79282361200006,37.17172732600005],[56.600856571000065,37.04571178200018],[56.388149517000045,36.93469112800017],[56.335353585000064,37.08127502400015],[55.95942355100004,36.92537212800005],[55.838596573000075,36.79835293500014],[55.57513860400013,36.688511111000025],[55.28841062700002,36.495872512000176],[54.84503158600012,36.244761086000096],[54.42281349700005,36.056933197000035],[53.93424661000017,35.818344670000045],[53.59032454900017,35.62481842800008],[53.42821854200008,35.571554451000054],[53.137466581000126,35.497784315],[52.9315265730001,35.46280009500015],[52.444011614000146,35.355224906000046],[52.18614554800007,35.40237679900008],[52.013790485000186,35.38132816400014],[51.960067514,35.455007440000145],[51.88715350600012,35.657928454000114],[51.502067584000145,35.78412739400005],[51.32630158900014,35.80069422600019],[51.12924555900014,35.838802381000164],[50.94217254400019,35.991722829000025],[50.79687862300011,36.078630759000134],[50.626781477000065,36.12078167400011],[50.22880955200014,36.23908117400015],[49.994705510000074,36.278379224000105],[49.75271963000006,36.26105651200015],[49.55783049000013,36.21121855400014],[49.303581551000036,36.26483339800018],[49.15082957900006,36.35010166000012],[48.970626540000126,36.40119036600004],[49.00783950800019,36.280660107000074],[49.20587554900004,36.10832314900017],[49.22395749400016,36.003944482000065],[49.0364913680001,35.90868968399997],[49.02480649199998,35.82942956900018],[49.077152483000134,35.735788623000076],[49.320026509,35.714839230000166],[49.59708746900009,35.796864367000126],[49.85986751000007,35.77017387300009],[50.139194601000156,35.78892251400015],[50.305988607000074,35.72083899600011],[50.459358493000195,35.68151781200004],[50.51230647199998,35.63521701700006],[50.41146061000006,35.555774009000174],[50.51373659200004,35.48205986500017],[50.65183247100015,35.50496727100017],[51.03304260100009,35.48406263600003],[51.37865462100018,35.559645778000174],[51.517398588000106,35.542857161000086],[51.4734836180001,35.48355167600005],[51.42787550300011,35.231810769],[51.28227648000018,35.23830272099997],[51.14144558700002,35.272130741000126],[50.86536748900011,35.27890583300007],[50.688262569000074,35.26133619100011],[50.43885753100017,35.268587040000114],[50.25231559300005,35.22629111800012],[50.00598151700018,35.20489144900006],[50.04863752500012,35.12507041700013],[50.15180551000009,35.076292770000066],[50.17384354500018,35.00435760000016],[50.35716649700004,34.90446107200006],[50.37592352000013,34.840470941000035],[50.200641495000184,34.87405789800016],[50.26878351800002,34.740253554000105],[50.124584609000124,34.7389535210001],[49.93880056299997,34.64903464300011],[49.70544452300015,34.51013846000018],[49.63881660700008,34.39361357700017],[49.52168655000003,34.37557823600014],[49.280540537000036,34.08039007000019],[49.222446572000194,33.98674191500004],[49.2160945980001,33.849637784000095],[49.23681248300005,33.64425634500003],[49.296066504000066,33.59212291900019],[49.468551487000184,33.75858332600012],[49.71889848300009,33.890430495000146],[50.52693959900006,34.436100606000025],[50.599044586000105,34.40066326100009],[50.519878516000176,34.32026253700013],[50.47921756800014,34.10925835000006],[50.48546258900018,33.83973087700008],[50.47809959000017,33.50935330200008],[50.869445620000135,33.312860201000035],[51.03197457900018,33.207742250000024],[51.01169959300006,33.35931069700018],[51.074001609000106,33.38115997200015],[51.42438561400007,33.134818352000025],[51.761779513000135,32.94873892700019],[51.88117251500006,32.855972884000096],[51.97688261800005,32.645175563000066],[52.08304260700015,32.22290885900003],[52.10380558700018,32.054717087000085],[52.054531563000126,31.95501736600005],[52.114700552000045,31.897511476000147],[52.254207608000115,31.953339645000028],[52.45315560000017,31.89284342600007],[52.47724150199997,31.801662401000158],[52.27647748600015,31.795667664000064],[52.2377965120001,31.68056468700007],[52.042785499000104,31.612741847000052],[51.9406774900001,31.59415162400012],[51.888019524000185,31.549384047],[51.90571958900017,31.257221915000116],[51.893627521000155,31.07783627800012],[51.907775503000096,30.74679686800016],[52.01672750300003,30.56811933500012],[52.0897524880001,30.49356985000003],[52.28890952500018,30.441616802],[52.26972552800015,30.637322674000075],[52.29458256500004,30.764373048000152],[52.34451658000006,30.855624984000144],[52.419853628000055,30.913811821000138],[52.39775859600013,31.03188769100018],[52.34088855700003,31.14669663100011],[52.440669582000055,31.19141911300011],[52.5178565170001,31.114049956000088],[52.69552252200009,31.068298511000137],[52.794410539000125,30.913685757],[52.63467459800006,30.72007083400007],[52.95949949800007,30.61101556800014],[53.072265600000094,30.562359459000163],[53.27037858800014,30.528783734000058],[53.37685356900016,30.346551268000155],[53.45014962400012,30.282977717000108],[53.61268260600008,30.203991356000074],[53.663852616000156,30.147913573999972],[53.576427522000074,30.082994895000013],[54.0119094690001,29.827351542000088],[54.074172593000185,29.669537572000138],[54.0886194740001,29.570817192],[54.21656050800016,29.74391573100013],[54.26094855300016,29.42549779],[54.28273747800006,29.365709172000095],[54.391380522000134,29.415885088000152],[54.500812471000074,29.43558356600016],[54.61380756600005,29.493700330000024],[54.71579755800019,29.507079524000176],[54.878787522000096,29.463056428000073],[55.0628665210001,29.26346906400005],[55.403011528000036,29.028348465000136],[55.461597511000036,29.03306127400009],[55.522705608000024,29.111853008000082],[55.651451474000055,28.960347929000193],[55.69471349300011,28.85750600000017],[55.75997147100003,28.79512854700016],[55.91469151300009,28.76193101299998],[55.99242059000005,28.85969602300014],[56.16572163500001,28.897173524000095],[56.26448459400001,28.965419818000157],[56.26580859900008,29.06651277900005],[56.304313553999975,29.116189972000143],[56.31246562500007,29.245334648000096],[56.351295630000095,29.337656115000016],[56.19307362900008,29.47898170800005],[56.24291963400009,29.574668174000124],[56.14536651800006,29.64658943000012],[55.92301960500015,29.71710872800014],[55.676826512000105,29.839098109000076],[55.359992583,29.97443097600018],[55.12063560300015,30.111709787000052],[54.76638754100014,30.32735201600019],[54.65969463100009,30.525857779000148],[54.56813859900018,30.60441297600005],[54.53276847700016,30.723669521000033],[54.32076650800013,30.898668572000133],[54.242389511000056,31.027609735000055],[54.138793546000045,30.9196927320001],[54.13304557200013,30.798905987000012],[54.01883660900006,30.788553330000127],[53.95108753,30.897792328000094],[54.060188561000075,31.048394173000077],[54.05180749600004,31.163265306000085],[53.91704158000016,31.25603185200015],[53.698009542000136,31.356385529000136],[53.557945593000056,31.505535461000193],[53.50684749900006,31.656060528000182],[53.4064175470001,31.691549171000133],[53.248100495000074,31.617214598000032],[53.20162552400012,31.646588643000143],[53.157504527000185,31.769789711000044],[53.17775352800004,31.872806319000176],[53.14836154700009,32.10796044500012],[53.109928509000156,32.19791955600016],[52.88863754800013,32.41471362600015],[52.78013951100007,32.46685912200007],[52.6684535010001,32.5655538530001],[52.53198656100017,32.61295737100011],[52.37526659700018,32.71983803600011],[52.32661853400015,32.96815543900004],[52.24380449200004,33.27106853500004],[51.94186051200012,33.50563056300018],[51.5423734740001,33.70915071600007],[51.18568460200015,34.00042839000014],[50.98878062000006,34.207560640000054],[50.84041556900007,34.416054950000046],[50.97992363100008,34.560693239000045],[51.11978557600014,34.62654432000005],[51.25173148400006,34.59401314800016],[51.37668956700014,34.52618594900008],[51.48423759900004,34.350909625000156],[51.4492414770001,34.3179248240001],[51.43485662300003,34.06172474500005],[51.57265863100014,34.07040353500014],[51.771591536000074,33.94732584800005],[51.82381448100011,33.88489961200003],[52.128684584000155,33.7388887030001],[52.29809961100011,33.57837123400003],[52.293601547000094,33.44547029100005],[52.42111259000018,33.2209898480001],[52.52121346900003,32.8971707770001],[52.614963547000116,32.87055940800013],[52.72535757100013,32.97823400700008],[52.77768361300008,32.97875603100016],[52.942707529000074,32.900603501000035],[53.149871630000064,32.85050302200011],[53.19520951200019,32.78300305300013],[53.16175063100013,32.730667789999984],[53.005386563000116,32.709676487000024],[52.93972759500008,32.66237103800006],[53.07776262000016,32.622658082999976],[53.203762574000166,32.45477040600014],[53.27268562300014,32.31156408200019],[53.37840254400015,32.19002782700011],[53.53008247000008,31.852408957000193],[53.65326359000011,31.704638687000113],[53.75216250400007,31.65227945200013],[54.079097631000195,31.55857279200012],[54.15592163000019,31.56721134900016],[54.40324762100016,31.398706094000147],[54.4575725790001,31.15032448600016],[54.4363554680001,31.02050322300005],[54.69030752000003,30.786747533000153],[54.95351453500018,30.643172572000026],[55.271041480000065,30.554115689000184],[55.457569503,30.478324341000075],[55.58570449600006,30.35757078800009],[55.43330355800015,30.262083309000047],[55.440830507000044,30.214689179000118],[55.74175256600006,30.03247867300007],[55.79777955399999,29.971745918000067],[55.96296356400012,29.907733323000116],[56.59469252000014,29.707385887999976],[57.01417961700014,29.639541758000178],[57.20525750500008,29.577302103000193],[57.418746591000115,29.484404632000064],[57.39907459900013,29.566987501000142],[57.173557482000035,29.780795267000087],[57.084091562000026,29.958982458000037],[57.03145958100009,30.140465917000085],[56.676952518000064,30.334717529000045],[56.46890261600004,30.386200855000084],[56.21640348300019,30.48441815300015],[55.948860508999985,30.64867914700011],[55.86619952100011,30.725706658000092],[55.759586574000025,30.889866568000173],[55.55487853800014,31.061391823000122],[55.382507549000024,31.131992090000153],[55.12430151200016,31.273172509000062],[54.88380057000012,31.423795141000085],[54.771770566999976,31.363276292000023],[54.769485492,31.444656357000042],[54.85494955700011,31.55537291600018],[54.91532155500005,31.55874277700002],[55.07006456400018,31.458182905000115],[55.17758560600015,31.409798872000124],[55.51365650600002,31.29410882700006],[55.8013306310001,31.05390795700015],[56.123245502000145,30.72013571000008],[56.46822753800018,30.48536011100009],[56.79432648699998,30.33392862500017],[57.049240615000144,30.177403288000164],[57.313133605000075,29.93418560400005],[57.48991347500004,29.753458192000153],[57.378013559000124,29.981268765000095],[57.18988760900004,30.17498142100004],[57.10389749700005,30.394854332000136],[56.97034058700018,30.575357779000058],[56.74601755600014,30.71425496700016],[56.627956605,30.76223516000016],[56.315978481000116,30.94109206600018],[56.209121621000065,31.01544725900004],[56.148090469000124,31.116782792000095],[56.219135480000034,31.189065307000078],[56.377033605000065,31.20183480100019],[56.41687061099998,31.254018184000188],[56.20915950700015,31.42804024000003],[56.128204571000026,31.52560777200017],[56.14954757900006,31.63495422600016],[55.90189754400012,32.03600281200005],[55.88537949500005,32.13161065500009],[55.986801529000104,32.13835557300007],[56.160800618999986,31.88381092000003],[56.25843856000017,31.762478680000015],[56.360015492,31.715567515000032],[56.511432561000106,31.60066335700003],[56.48338352800005,31.542046193000033],[56.515888548000135,31.42310614900009],[56.66289858100009,31.529873658000156],[56.703449558000045,31.421342429000163],[56.80017051800013,31.33580225700007],[56.850822526000115,31.066589441000133],[56.8160745080001,31.030865937000044],[56.79412448300019,30.897619493000093],[56.874011564000114,30.880070134000164],[57.099540583000135,30.97987043800009],[57.231193628000085,30.905851025000118],[57.17158857300012,30.789823189000117],[57.470470477,30.637391741000158],[57.56786349800018,30.509770225000125],[57.54414757400008,30.435109931000113],[57.62865056900006,30.309026493000147],[57.87847855800004,30.26184828100014],[58.11324359600013,30.252201548000187],[58.39463062400006,30.276244702000156],[58.555915540000115,30.243346067000118],[58.90320947200007,30.30049187200018],[58.99514051000017,30.206718324000065],[59.03247451300018,29.871237845999985],[58.73045358600001,29.92300397700012],[58.76134157000007,29.829073520000065],[58.87965347500017,29.584116758000164],[59.10268049600012,29.215279826000085],[59.19464858100008,29.127948441],[59.31520851200003,29.136946917000103],[59.424838609000176,29.1945766930001],[59.48670962800003,29.534559594000143],[59.52834656400006,29.868089100000077],[59.57914357900006,29.98945335900015],[59.805477597000106,30.166627849000065],[59.93667952700014,30.21960801500012],[60.04074856600005,30.20880927400009],[59.9764675830001,30.33395360300011],[59.97487653000019,30.5174411750001],[60.00289958000013,30.617375421000133],[60.03164263400015,30.84891108000005],[60.04437256600005,31.089865651000082],[59.90933256200009,31.157637529000112],[59.847541507000074,31.30185236400007],[59.820018522000055,31.52462289900012],[59.68478053800004,31.536711280000134],[59.53471362500005,31.484551031000137],[59.41722448799999,31.46990181200016],[59.409072585000104,31.568731156000013],[59.46623649400004,31.744754308000097],[59.525218605000134,31.800202609000166],[59.665416497000194,31.797946536000097],[59.68209849600015,31.849624992000145],[59.53567855000006,31.94566383299997],[59.3788715820001,31.94635668100011],[59.28495755300003,32.057975133000184],[59.41991860000013,32.17931223400012],[59.29051961700003,32.26787525500015],[59.10590350500007,32.332036377000065],[59.08356858300016,32.408056719000115],[59.20605853100005,32.51033370700014],[59.350383504000035,32.5621390660001],[59.17077256300007,32.77365438100003],[59.16487857600009,32.91622804000008],[58.937496485999986,32.925302623000164],[58.93029358100006,33.03187047600005],[59.17295051600007,33.16468240200004],[59.21118557300002,33.25526780900003],[59.14318855700003,33.474583491000146],[58.86189255700003,33.66097187200006],[58.6069836260001,33.88439267500007],[58.486171568000145,34.03286065500015],[58.34520757000013,34.14073642000011],[58.23122458300003,34.323142559000075],[58.243942612000126,34.37019638400017],[58.432575499000166,34.43954121000013],[58.568702636000125,34.34060206300012],[58.68630962300017,34.16692785600003],[58.81853062500011,34.12531405300007],[58.88069953600012,34.05129195800009],[58.96336756500017,34.04111515400001],[59.06809659500004,34.07225727700006],[59.26397647600004,33.95553072500013],[59.41297553400017,33.94609404300019],[59.48372650800013,33.91497773700007],[59.398292619000074,33.76083403399997],[59.29746653800004,33.81313560100017],[59.200511555000105,33.7979541310001],[59.18266262700013,33.73688978700011],[59.315772614000196,33.615349173000084],[59.39397459800011,33.493904784000165],[59.492778628,33.42806091099999],[59.70047347200011,33.619824103000155],[59.825611599000126,33.60451573100005],[59.87301260200019,33.56936454300006],[59.94459958699997,33.3876800860001],[60.03177657700013,33.47799039900008],[60.11046253200004,33.5125841900001],[60.27664549700012,33.44174420000019],[60.35930648500016,33.22723067800007],[60.36643948500006,33.08154414800009],[60.34077460000009,32.95615892300003],[60.2337075210001,32.92184290900008],[60.12051763000011,32.949380143000155],[60.041938629000015,33.068631324000194],[59.95569957400011,33.05686380200012],[59.97153852100013,32.9390585000001],[60.061366540000165,32.83908552899999],[60.17137952200011,32.61642446200017],[60.241073538000194,32.5676629080001],[60.26287453300006,32.40196508700018],[60.30141050000003,32.38821742500011],[60.449130480000065,32.482323566000105],[60.473827590000155,32.406412860000046],[60.61119860100018,32.49276406500019],[60.88005853900006,32.6200452760001],[60.942733550000185,32.77732330800012],[61.03438563800006,32.84939594000019],[61.162666475000094,32.90102242900008],[61.254226530000096,32.88531407200003],[61.43556950800013,32.99303778900003],[61.40599463300009,33.14088735200016],[61.306278484000075,33.20720044400014],[61.26904657300014,33.276301189000094],[61.348415484999975,33.3461122170001],[61.44542662599997,33.34550218200013],[61.54061151900004,33.40348735000009],[61.77933851500006,33.33080451500007],[62.06195449699999,33.38282411500006],[62.189388595000196,33.455880950000164],[62.27450950400015,33.551863297000125],[62.15287350400007,33.60667155600004],[61.93997953400003,33.52784294200012],[61.841854605000094,33.50833138000007],[61.78103652100003,33.535735677000105],[61.81808855600019,33.628467856999976],[62.014320477000126,33.74054463200008],[62.12474853100014,33.84969059000019],[62.07621362400005,33.87935666000004],[61.91844960900005,33.775607641000136],[61.775958596000066,33.73734375099997],[61.56107761200013,33.805906880000066],[61.48342162600011,33.86798225000001],[61.46639663899998,33.977116976000104],[61.582561603000045,34.02506263600003],[61.753967500000044,34.01801798100007],[61.95845458900004,34.07765522200003],[62.11736256600017,34.21585336000015],[62.283233556000084,34.2829144530001],[62.417808532000095,34.283402447000185],[62.512229498000124,34.31842455300011],[62.7667575550002,34.30696196500014],[62.847000532000095,34.36966916200004],[63.07947563400012,34.44981826200012],[63.03649155800019,34.49274802300005],[62.729415506,34.40613329100006],[62.593204550000166,34.38977684500014],[62.29534155100009,34.44701032400013],[62.07374951200006,34.54090272700006],[61.662361512000075,34.61625251600009],[61.516559480000126,34.69234661900015],[61.46669050900016,34.76202772700003],[61.45874060900019,34.8703430380001],[61.36990752300011,35.027912927000045],[61.22992353700016,35.13583144000012],[61.11472349800016,35.25102829400015],[60.94464847900008,35.45298153400017],[60.87909361500016,35.465858987000104],[60.74150450600007,35.611745676000055],[60.65311063200011,35.57690244000014],[60.41837660700003,35.61787938600003],[60.32233458100018,35.75723824900007],[60.230079498,35.8109209860001],[60.28492363200013,35.85535379000015],[60.71895953400019,35.83518223700008],[60.87643454000016,35.77998069900008]],[[58.167961498000125,35.47867676100003],[58.112716542000044,35.52180064700008],[57.99605553700013,35.53773447700007],[57.60334359100011,35.89956095300005],[57.68402863,35.95942048300003],[57.87541547500018,35.82002658300007],[57.97764250700004,35.78248353600014],[58.05429048600001,35.67281706099999],[58.11787761500011,35.65187152300018],[58.378578608000055,35.62497835500005],[58.50167859100003,35.595250929000144],[58.62454555700003,35.59713886900005],[58.770606591000046,35.56105695500014],[58.901653624000176,35.55463289700009],[59.01746755300019,35.520659870000145],[59.231670610000094,35.55999295600009],[59.21844061400003,35.68355897300006],[59.29350256800018,35.77485063900019],[59.393905531000144,35.819385702000034],[59.538715481000054,35.825103502000104],[59.64128851800018,35.67570898500003],[59.63691752400001,35.60165990000007],[59.69221461500007,35.54833909300015],[59.95998758800016,35.567861719000064],[60.05506150400004,35.52539061600004],[60.50186153600015,35.21435931100007],[60.49916859800004,35.10639402800018],[60.389388633000124,35.054191200000105],[60.272369553000146,35.158638766000024],[60.09866349400005,35.25953106400004],[59.95403660500011,35.371707415],[59.89613760200007,35.23390875900003],[59.683265592000055,35.114988664000066],[59.58759354400013,35.12099681200016],[59.52852258400003,35.16864843500014],[59.63819157300003,35.276139805000184],[59.5116005270001,35.36047784400017],[59.29872147600014,35.44002277599998],[59.296283516000074,35.348670928000104],[59.24658955899997,35.296453347000124],[59.03458759100005,35.32857162700003],[58.89736561000012,35.329441333000034],[58.70222853300015,35.35943178300005],[58.49385458800009,35.45059738499998],[58.36922054899998,35.455022359],[58.30534759700015,35.416338199999984],[58.188541585,35.409433523000075],[58.167961498000125,35.47867676100003]],[[56.976184617,34.09636161900016],[57.189876545000175,34.36706440200004],[57.24999960100013,34.42393963800015],[57.37326454000004,34.34994771800007],[57.28355755700005,34.051975083],[57.20123251500007,33.91054186600013],[57.22357548400004,33.866814986000065],[57.36622256800001,33.83557697400005],[57.433826473000124,33.74898537600018],[57.44379859100013,33.619584213],[57.64093056000013,33.22067401800007],[57.70426556100011,33.006198215000154],[57.657855633999986,32.979348297000115],[57.4430505900001,33.20086054000012],[57.394672591000074,33.324895944000104],[57.21740355300011,33.64117046400003],[57.075611591000154,33.84550684699997],[56.81372053500007,33.95343659100001],[56.70605850900017,33.93991004300011],[56.69124953000011,33.99399645300008],[56.89902852800009,34.04961406800015],[56.976184617,34.09636161900016]],[[61.26105157800009,34.011951998000086],[61.16365051100013,34.03173044000016],[61.289924553000105,34.27314500900019],[61.60620460500013,34.41624203400005],[61.69603362900017,34.38649968900006],[61.61741657400012,34.252286476000165],[61.33693663600013,34.03712821800019],[61.26105157800009,34.011951998000086]]]]},"properties":{"objectid":145,"eco_name":"Central Persian desert basins","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Palearctic","eco_biome_":"PA13","nnh":2,"eco_id":820,"shape_leng":123.843813102,"shape_area":56.3571821485,"nnh_name":"Nature Could Reach Half Protected","color":"#FDA87F","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":582193.4509051124,"percentage":2.2067679006840764}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[147.5721125780001,-8.94372182799998],[147.5143585830001,-8.813701912999875],[147.5081636860001,-8.722538657999962],[147.41375764000009,-8.711800265999898],[147.42169161400022,-8.786704137999948],[147.531921688,-8.947363596999935],[147.5721125780001,-8.94372182799998]]],[[[147.40911859200003,-8.456607523999935],[147.42565960700017,-8.376406288999874],[147.38706966000018,-8.289997416999938],[147.3389287020001,-8.29275841599997],[147.31991569600007,-8.471137385999953],[147.40911859200003,-8.456607523999935]]],[[[145.96739168200008,-6.907745473999967],[146.05741868600012,-6.811638236999897],[146.0437317090002,-6.712547377999954],[145.95330757000022,-6.735355876999904],[145.98991368800012,-6.845055878999972],[145.96739168200008,-6.907745473999967]]],[[[147.0872035540002,-6.241329017999874],[147.017608611,-6.217420644999947],[147.0007326550001,-6.150644536999948],[146.86959861800005,-6.176804624999932],[146.7429805830002,-6.235971305999954],[146.78625467300026,-6.281291082999928],[146.86100767000016,-6.257016923999913],[147.02482559800023,-6.299391802999935],[147.08131359000015,-6.370588526999938],[147.15792871100007,-6.403433013999972],[147.1753696080001,-6.316024515999914],[147.0872035540002,-6.241329017999874]]],[[[144.65879856300023,-5.99853763699997],[144.50328056400008,-5.950168188999896],[144.39054866000015,-5.954838752999876],[144.314300666,-5.995661973999972],[144.35470563000024,-6.072703398999977],[144.4547575590001,-6.034310090999952],[144.5911406790002,-6.11313317399987],[144.7545016250001,-6.162400826999942],[144.79821760900018,-6.126382447999958],[144.76502963100006,-6.058109163999973],[144.65879856300023,-5.99853763699997]]],[[[146.1033176530001,-5.761452990999885],[146.09741159600003,-5.817503950999935],[146.16293360400005,-5.88122535899987],[146.35452262100011,-5.966671987999973],[146.44377161700004,-6.033063031999973],[146.5389405840001,-6.043384339999875],[146.49447659900022,-5.933186284999977],[146.3921965930001,-5.914014692999956],[146.3267216920001,-5.850238635999915],[146.20481864500005,-5.788529890999882],[146.1033176530001,-5.761452990999885]]],[[[144.9924006570002,-5.636329281999963],[144.94451870000012,-5.712270497999953],[144.93637065200005,-5.792355726999972],[145.02510064100022,-5.866331386999889],[145.09049960200014,-5.775979834999873],[144.9924006570002,-5.636329281999963]]],[[[143.85462955200012,-5.860090892999949],[143.80851768500008,-5.758354368999903],[143.70759571500014,-5.723989739999979],[143.73294057800024,-5.629473554999947],[143.65023768100002,-5.572717844999943],[143.61216758000012,-5.633602480999969],[143.65364056600004,-5.783324393999976],[143.71325668500003,-5.829739014999916],[143.67048668300015,-5.938793107999913],[143.79910262800013,-5.93547521499994],[143.8007816910001,-6.081443544999956],[143.92459061500017,-6.126317403999906],[143.9547116550002,-5.983517601999949],[143.85462955200012,-5.860090892999949]]],[[[143.35675070500008,-5.454740713999968],[143.02606165800012,-5.470754339999871],[142.93884259100025,-5.543039033999833],[142.94140661500012,-5.599860793999881],[143.02088968900011,-5.607621430999927],[143.21940567800027,-5.877841416999843],[143.12100263700006,-5.900534748999974],[143.11967460900007,-5.997557792999885],[143.2964937060002,-5.90973003199997],[143.2835386370001,-5.795151426999951],[143.20216360000006,-5.641556738999952],[143.17967260700016,-5.542353226999921],[143.29252655100015,-5.53728737199998],[143.35675070500008,-5.454740713999968]]],[[[142.2608187080001,-5.074201470999924],[142.18075560700004,-4.985996188999877],[141.99081464000017,-5.04057293999989],[141.99353071200005,-5.097257739999975],[142.13836664600012,-5.094826148999971],[142.2786716590001,-5.140406770999959],[142.2608187080001,-5.074201470999924]]],[[[141.4053957000001,-5.203543121999871],[141.41996763800012,-5.13232125199994],[141.33174157000008,-5.043555723999873],[141.2253266030002,-4.977346735999902],[141.12319965100016,-4.951859714999898],[140.98268157000018,-4.818226361999962],[140.8529506640001,-4.830578604999971],[140.8247066670001,-4.876322002999927],[140.88197367400005,-4.954002464999917],[141.00292956600003,-5.037534164999897],[141.05870057000004,-5.042632875999971],[141.2512665820002,-5.132857358999956],[141.34819055200023,-5.21437706699993],[141.4053957000001,-5.203543121999871]]],[[[139.42337064000003,-4.286819734999938],[139.2873685610001,-4.254049007999868],[139.10665858400012,-4.26719602299994],[139.12567159000002,-4.36216717699989],[139.20274369300012,-4.343154505999905],[139.34051569500002,-4.354975671999966],[139.42355370100017,-4.389236197999878],[139.50212063200001,-4.370418657999949],[139.59750367300012,-4.435923733999971],[139.68583669500003,-4.443603233999966],[139.80984460500008,-4.543340672999932],[139.82948256600014,-4.646075983999879],[139.9887236390001,-4.601255433999938],[139.99353066100014,-4.666523469999902],[140.11244170400005,-4.753960130999815],[140.1872555540001,-4.658009131999961],[140.2518915950002,-4.745210764999911],[140.3297116980002,-4.785338790999958],[140.45133965200012,-4.773571772999958],[140.4883425690001,-4.696917255999949],[140.375732706,-4.674778973999878],[140.35865759500007,-4.54507555999993],[140.1951596890002,-4.602912367999977],[139.9774327130001,-4.506798424999943],[139.91671755900006,-4.442691282999931],[139.80540471100005,-4.438969382999971],[139.72483869600023,-4.394272883999975],[139.70428459300012,-4.318683204999957],[139.6162566720002,-4.255324900999938],[139.54096958000002,-4.287944585999981],[139.42337064000003,-4.286819734999938]]],[[[135.91430665400003,-3.831461444999945],[135.80934158900004,-3.78764085499995],[135.81219462100023,-3.86863384499992],[135.6941066810001,-3.819366358999901],[135.66694663200008,-3.880159799999944],[135.717727555,-3.924370650999833],[135.89091460600014,-3.901507165999931],[135.91430665400003,-3.831461444999945]]],[[[137.33923354700005,-3.847952168999882],[137.36849963300017,-3.765001334999965],[137.2922365520002,-3.758919928999944],[137.2767945710001,-3.838485982999941],[137.22566261500003,-3.856865484999901],[137.1522825730001,-3.815126624999948],[137.05343663300027,-3.865665812999907],[136.9506376190002,-3.853071835999913],[136.89221156300005,-3.906844929999977],[136.72108461600033,-3.902427163999903],[136.61819457500008,-3.948296625999888],[136.61294566000004,-4.015257973999951],[136.69953960500004,-4.004036784999926],[136.78225658400004,-4.041946791999976],[136.97195464300023,-4.038882200999979],[137.12030058300002,-4.158469159999925],[137.23930366000013,-4.136468675999936],[137.4286035780002,-4.138120581999885],[137.46871970200004,-4.199786075999896],[137.5522616290001,-4.170544297999925],[137.79336556500016,-4.145112261999941],[138.07495157900019,-4.231084772999907],[138.19584661800013,-4.187077098999964],[138.27947957200013,-4.211978223999893],[138.39779667300002,-4.199308139999971],[138.53327957700003,-4.251079299999958],[138.6735225640001,-4.352819846999921],[138.71235659200022,-4.32008415599995],[138.92269860800013,-4.391857051999921],[138.96545369000012,-4.260475748999966],[138.93418868900005,-4.203843922999909],[138.74974055000007,-4.251242243999911],[138.68110667700012,-4.209486284999855],[138.5971986300002,-4.081049040999972],[138.53634668300015,-4.053490013999919],[138.40452566500005,-4.064987302999896],[138.2775265890001,-3.964590710999914],[138.23379568500002,-3.893598839999811],[138.29356368400022,-3.826678730999902],[138.22251867300008,-3.757966067999973],[138.11343356700002,-3.820827156999883],[137.98779269400018,-3.756670896999935],[137.90155062200006,-3.816972654999972],[137.8231045570003,-3.837529942999936],[137.7109836940001,-3.828441780999924],[137.73278770700006,-3.893068936999953],[137.67481963800003,-4.050097354999878],[137.54701254500014,-4.012821019999933],[137.43653855900004,-4.039886016999901],[137.2945405690001,-4.010555223999859],[137.28216569500012,-3.883811459999947],[137.33923354700005,-3.847952168999882]]],[[[138.2351835610001,-3.66027330999998],[138.25198357700003,-3.567444067999872],[138.0810696980002,-3.557899594999924],[138.06394966000016,-3.655190523999977],[138.2351835610001,-3.66027330999998]]],[[[137.96467557300014,-3.490099888999964],[137.88165265400005,-3.510252330999947],[137.7929836850002,-3.489609714999915],[137.77740457700008,-3.569065965999869],[137.82797259900008,-3.613532632999977],[137.9598846440001,-3.548005427999897],[137.96467557300014,-3.490099888999964]]],[[[136.44157362600004,-3.436695597999972],[136.35034163900002,-3.447612020999941],[136.20697069400023,-3.432163167999931],[136.25567659200033,-3.503105751999954],[136.42147868400002,-3.520306590999951],[136.44157362600004,-3.436695597999972]]]]},"properties":{"objectid":148,"eco_name":"Papuan Central Range sub-alpine grasslands","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Australasia","eco_biome_":"AU10","nnh":2,"eco_id":195,"shape_leng":25.7689856599,"shape_area":1.26400962628,"nnh_name":"Nature Could Reach Half Protected","color":"#D3AE79","color_bio":"#D6C39D","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":15605.852435867191,"percentage":0.3195756620927454}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[129.77754201900007,-26.936206663999883],[129.64013706700018,-27.00350793499996],[129.50154106500008,-27.006212536999953],[129.3130490960002,-27.035213441999872],[129.29093935900005,-27.07651517399995],[129.4127501700001,-27.165610972999957],[129.54754654400017,-27.16351121599996],[129.65783711200015,-27.211910039999964],[129.77453640300007,-27.29710956999986],[129.87783798600003,-27.414209310999865],[130.00123598800008,-27.438810453999906],[130.1537478560001,-27.54490657799994],[130.1511381900002,-27.613008519999937],[130.2374418750003,-27.708505883999862],[130.42004388400017,-27.688903654999933],[130.61814895400005,-27.730400199999963],[130.6990359030002,-27.613702832999934],[130.58514400700017,-27.488704492999943],[130.4327394610001,-27.451203994999958],[130.35704017900002,-27.372804660999975],[130.2313382540002,-27.403205764999882],[130.18493677400033,-27.229105045999916],[130.12254343100005,-27.18310559799994],[130.06004318400005,-27.05770502499996],[129.95384209700012,-26.969806964999975],[129.83364852600005,-26.966707493999934],[129.77754201900007,-26.936206663999883]]],[[[135.78422538100028,-22.154865320999875],[135.6995849220001,-22.153165806999937],[135.60317996000026,-22.082973401999823],[135.5112152270002,-22.062557265999885],[135.40657035100014,-22.10098460399996],[135.23777776400004,-22.22896570299997],[135.1075134340001,-22.251222673999962],[134.80343625900002,-22.197164595999936],[134.69303871500006,-22.123657315999935],[134.61833198500017,-22.034532539999873],[134.42294311700005,-21.937007922999953],[134.20837393900013,-21.788152697999976],[134.1642303100001,-21.71150773699992],[134.24716186600006,-21.57039638499998],[134.2807922410002,-21.43966870299994],[134.16543579600022,-21.312677337999958],[134.14245613800006,-21.221958322999967],[133.89511103600012,-21.060481964999894],[133.66856378300008,-20.94225890799993],[133.61718741100015,-20.945505218999926],[133.50176994500032,-21.31018824699987],[133.37094117700008,-21.31967924399993],[133.28073111100014,-21.387706769999966],[133.18038933600008,-21.390295101999982],[133.1514586950001,-21.3153285329999],[133.1996306660002,-21.192804386999967],[133.15325929500023,-21.138233168999875],[133.01388551200023,-21.12704081299995],[132.95124822100001,-21.192272136999918],[132.8021393590002,-21.42745593399991],[132.9151611100001,-21.55720142599995],[133.0632934790002,-21.686943060999965],[133.12261958400018,-21.874937078999892],[133.1020659840001,-21.933427843999937],[132.97953798200012,-21.927701997999918],[132.6169433880001,-21.805263513999876],[132.41572574500015,-21.81379293899994],[132.13671884200005,-21.88422204799997],[131.8788604870001,-22.010229041999935],[131.73001096300015,-22.00896069299995],[131.6181945300001,-21.956209184999977],[131.5201110070002,-21.85724640099994],[131.31771855600016,-21.833337859999915],[131.11929325900007,-21.843307463999963],[130.90852359800022,-21.993129791999934],[130.82502743700002,-22.013801576999924],[130.63841241000034,-22.000310902999956],[130.44749428000011,-22.066881151999894],[130.31141659700006,-22.16137671699994],[130.2191923600003,-22.248327226999947],[130.1424712920002,-22.43480881499994],[130.16137701000002,-22.50539583899996],[130.47904963200017,-22.604898417999948],[130.71133429700012,-22.615024762999894],[130.80186455100022,-22.40041736299986],[130.92709353700002,-22.273881974999938],[131.04016122000007,-22.309051601999954],[131.22445680800013,-22.446172664999892],[131.32859809900015,-22.436092420999955],[131.44102473400005,-22.338340821999964],[131.52801514200007,-22.34147079199994],[131.66131590100008,-22.43833357299991],[131.8353577390002,-22.523460349999937],[132.1181334810002,-22.579793947999974],[132.35310370800016,-22.58128542399993],[132.52247615500028,-22.690521235999938],[132.84733575500002,-22.77850154799995],[133.10258482500012,-22.788455895999903],[133.1742247830001,-22.848924621999913],[133.25575253800014,-23.022287357999915],[133.43116766700007,-23.25887680099987],[133.2688140580001,-23.257343079999885],[133.19021611300002,-23.237142525999957],[132.9346312660001,-23.12216376899994],[132.85105899700022,-23.115724622999892],[132.47731010200005,-23.132720942999924],[132.24633787500022,-23.16619876799996],[132.04502870100032,-23.24137303999987],[131.84088141400002,-23.244426734999934],[131.7392731340001,-23.201810791999947],[131.4234924750001,-23.240532],[131.30972305900002,-23.240867610999885],[131.19192530100008,-23.291341754999905],[131.19549565600005,-23.39882273199987],[131.3067322290002,-23.47451785599992],[131.44433592100017,-23.64080425399993],[131.5778502520003,-23.698770478999904],[131.64442435500007,-23.802278600999955],[131.64691160200016,-23.913391120999904],[131.4331512780002,-24.012214596999968],[131.36230475000013,-24.063619635999828],[131.313461221,-24.188068435999924],[131.4116667840001,-24.296316187999935],[131.50129698900014,-24.344789572999957],[131.76992793300008,-24.424266778999936],[131.81552129600016,-24.476125780999894],[132.00474544200017,-24.551179856999852],[132.23527527300007,-24.536394179999945],[132.40209962100016,-24.58042331199988],[132.348968581,-24.640108161999876],[131.94645684900024,-24.649618100999874],[131.80140684200012,-24.700744692999933],[131.7049408590001,-24.708166197999958],[131.60781857300003,-24.773324933999902],[131.5252075420001,-24.879833274999953],[131.5176544410001,-25.009029415999976],[131.60054023200007,-25.15279581899989],[131.6880340570001,-25.442148168999893],[131.69334416100014,-25.510868039999878],[131.55690002100016,-25.771863908999876],[131.45814510800017,-25.744821542999944],[131.31283576400006,-25.757924971999955],[131.2617950030002,-25.69894403299992],[131.25737002800008,-25.598718599999984],[131.08712770700004,-25.672958289999883],[130.9927520040003,-25.670780167999965],[130.8795012600002,-25.62344169399995],[130.55651853500024,-25.39981452899991],[130.44161990800012,-25.269658994999872],[130.41957097700003,-25.156503637999833],[130.32687383400003,-25.14149282199986],[130.2002563010002,-25.042287800999873],[130.05700689400032,-24.824123456999928],[130.03518678800003,-24.71030039699997],[129.94453432600028,-24.656322449999948],[129.58666997600005,-24.590091667999957],[129.41027835500017,-24.584573693999914],[129.18882629300003,-24.619046617999913],[129.03208856000003,-24.72387086699996],[128.94169610500023,-24.679880123999908],[128.7531280930001,-24.646091497999976],[128.49468987800003,-24.50059121399994],[128.4301452000002,-24.43209648099986],[128.3566741310001,-24.295524599999965],[128.41281125600005,-24.243093616999943],[128.35420230700004,-24.176870378999865],[128.4166565390001,-24.126863441999944],[128.6303100770001,-24.081033709999872],[128.76167294000004,-23.948993756999982],[128.88513183600014,-23.915306049999913],[129.02650550700002,-23.80902417599998],[129.1478794200002,-23.78452668999995],[129.19242030700002,-23.742212847999895],[129.1868526950002,-23.653131076999955],[129.11113319000003,-23.613044279999883],[128.96781914400026,-23.582963923999955],[128.7778473310001,-23.50723644599998],[128.7077789790003,-23.50638953899994],[128.578018401,-23.699008858999946],[128.43940737000003,-23.69186596799983],[128.466827426,-23.7768477379999],[128.41828916500003,-23.81262404699993],[128.43893429600018,-23.884376658999884],[128.25242622100006,-23.953092506999894],[128.16326909100007,-24.03935050499996],[128.03611763100014,-24.029638225999975],[127.70086665000008,-24.23963541099988],[127.54170989900001,-24.30990593399997],[127.51731101700011,-24.395038577999912],[127.44333653100023,-24.419473669999945],[127.37108620100014,-24.502885843999877],[127.2787094140001,-24.563835188999974],[127.30435183500015,-24.759532845999956],[127.26100163800004,-24.90984333699987],[127.00331092100032,-25.034341755999947],[126.91504663100011,-25.19382087499997],[126.88097386000004,-25.33850677199996],[126.81459052800017,-25.43969914299987],[126.88797761000012,-25.531400684999937],[126.88011169700007,-25.639057177999916],[126.69277197000008,-25.73791502099988],[126.5847625990001,-25.86388396199993],[126.49514764800006,-25.896383281999874],[126.53862776500011,-25.984540954999886],[126.5029602530002,-26.030387952999888],[126.50399022100032,-26.182769779999887],[126.58111580000025,-26.18807803899989],[126.64968094200003,-26.286756507999826],[126.85314946200003,-26.367151197999874],[127.01128395600006,-26.334150303999877],[127.19404599000006,-26.334978099999887],[127.22476197700018,-26.357976869999902],[127.39663692500017,-26.285858136999934],[127.49926763000008,-26.358732246999978],[127.54407493800022,-26.21275335699994],[127.61451712200005,-26.151050646999977],[127.6857451950001,-26.16992937499998],[127.83290861600005,-26.123573259999887],[127.90744016400015,-26.197576579999918],[128.02888488800022,-26.232265420999965],[127.98985288000029,-26.089347769999904],[128.1369475680001,-26.09833518099998],[128.1983642890002,-26.038852669999926],[128.40025332300002,-26.059507355999983],[128.4817505670003,-26.03837590799992],[128.60400397700016,-26.11893085799983],[128.53926098400018,-26.146705635999922],[128.57577490100016,-26.28986937999997],[128.65303040000003,-26.332542487999888],[128.6847381340002,-26.40229601599998],[128.7840729070001,-26.41216469999989],[128.92710874400007,-26.490940173999945],[129.09085883800014,-26.379796786999975],[129.4209290990001,-26.31680652299997],[129.6824341560001,-26.349306138999964],[129.78492749500003,-26.411207054999977],[129.8724215860001,-26.385906362999947],[129.9269256770002,-26.450202888999854],[130.04283136000004,-26.44370665699995],[130.1171267740002,-26.356601921999925],[130.22842443500008,-26.31220217699996],[130.26292434900017,-26.266899258999956],[130.35162358200012,-26.268699508999873],[130.48962416200004,-26.225297766999972],[130.56002824600012,-26.250198470999976],[130.67012028800002,-26.395797704999893],[130.92123444900005,-26.415193295999927],[131.1428223690002,-26.680694356999936],[131.291824259,-26.712291882999978],[131.41072096200003,-26.62968994599987],[131.54571568000017,-26.571689566999908],[131.61831698900005,-26.569288118999907],[131.9185182330002,-26.69398681699994],[132.03190616600023,-26.75178742299994],[132.02771009700018,-26.847187217999874],[132.15270966300022,-26.87718230899992],[132.2731173730001,-26.70038246999991],[132.49841345200002,-26.671981631999984],[132.57301348600015,-26.63028150199989],[132.66160612500005,-26.66337981299995],[132.7507172490001,-26.74847994299995],[132.84800744200004,-26.775181100999873],[132.86621119300003,-26.87127878399997],[132.92602926500024,-26.96189714299993],[133.04300269300018,-26.962924621999946],[133.01524763500004,-27.030587927999875],[132.92232376100003,-27.122930416999964],[132.7914084990001,-27.121407230999978],[132.8281704540001,-27.06100711099998],[132.61051917400005,-26.86038042099989],[132.4287108750002,-26.872484200999963],[132.33320598000012,-26.99448400999995],[132.14460787500013,-27.0770890899999],[132.110610715,-27.120685856999955],[132.21681194100006,-27.206483921999904],[132.3283078190001,-27.234985555999913],[132.49591062100012,-27.179382445999977],[132.6422122150002,-27.22918126399992],[132.746821941,-27.222501209999905],[132.8602667020001,-27.142543110999952],[133.00610934600002,-27.16015102299997],[133.15181415400014,-27.278293332999965],[133.35219222900025,-27.26609513399984],[133.30448029100012,-27.422867381999936],[133.16605442900016,-27.476255183999967],[133.20478154700027,-27.568971531999978],[133.31627687900027,-27.552519587999882],[133.35726176800006,-27.597156151999968],[133.4950823580001,-27.594190330999936],[133.51897098100017,-27.432935114999907],[133.44166032700014,-27.39627623399997],[133.49270955300028,-27.3142318269999],[133.5227886360001,-27.274073272999942],[133.4909184810001,-27.148698509999974],[133.60250123600008,-27.11489792899988],[133.61258997700008,-27.172633703999907],[133.74681201900023,-27.142213684999945],[133.81080190600005,-27.067642012999954],[133.7653074200001,-26.924134450999873],[133.90342209400012,-26.945891719999906],[134.05601617000002,-26.909809672999984],[134.19346688400015,-26.92954546099992],[134.2395196540001,-26.91132608099997],[134.31302567500006,-26.98337132699993],[134.34023287200023,-27.067771276999963],[134.41064731000006,-27.129680730999894],[134.57139548700002,-27.160786253999902],[134.7208067050002,-27.12685927299998],[134.87561451400006,-27.146451499999955],[135.001299033,-27.1024298669999],[135.26638882400016,-27.157145927999977],[135.25700935700002,-27.068929379999872],[135.0919751350001,-27.016095839999934],[135.0623084800003,-26.970217208999827],[135.1663036210001,-26.913734017999957],[135.2027251830001,-26.82703906699993],[135.32286006200002,-26.718568708999896],[135.2971158460001,-26.669692682999937],[135.20979521200002,-26.671660750999877],[135.05185644800008,-26.73436011499996],[134.91860584100004,-26.72847554899988],[134.7769743900002,-26.758353464999857],[134.70110295400002,-26.748603686999957],[134.61123407500008,-26.786058675999982],[134.45752457800006,-26.748288034999973],[134.41262252800004,-26.648065639999913],[134.24898657100005,-26.596612076999918],[134.1863217460001,-26.496158307999906],[134.33323707300008,-26.39920493099993],[134.3337398880002,-26.35080600699996],[134.15968090400008,-26.167134380999926],[134.05826769200007,-26.16036063199988],[133.95947032300012,-26.29264354599991],[134.01912773700008,-26.426012732999936],[133.91260176100002,-26.42554069599987],[133.8423480990001,-26.50604271599991],[133.76216234900005,-26.503219729999955],[133.62992075500017,-26.56835960599983],[133.59721232100014,-26.65229670399998],[133.4645954030001,-26.65963125399992],[133.50135971800023,-26.584880716999976],[133.48474977800026,-26.45153799399992],[133.65460628800008,-26.380138945999875],[133.933455986,-26.363364625999907],[133.9208650270001,-26.317449118999946],[133.7428846910002,-26.259492904999888],[133.6834537640001,-26.261104476999947],[133.65609562100008,-26.170098944999893],[133.66828928600012,-25.99855999899995],[133.71927901100014,-25.960153901999945],[133.96692559400014,-25.921184135999965],[134.06057874300006,-25.947583009999903],[134.22585726700004,-25.87231338399988],[134.38449000100002,-25.76471900699994],[134.45208134000018,-25.828172100999893],[134.6493376960001,-25.928869401999975],[134.72520552600008,-25.85713981899994],[134.84245580800007,-25.843345667999984],[135.03005625900005,-25.91507525199995],[135.07646372300007,-25.860402244999875],[134.9004363370001,-25.66292196799992],[134.77471918900017,-25.557413085999883],[134.6658785000002,-25.51259236699991],[134.49890143300013,-25.517511369999966],[134.42254631900005,-25.47090513899991],[134.44905090300017,-25.314653388999943],[134.57200621400023,-25.285024701999816],[134.6567078600002,-25.222360419999973],[134.63627630100018,-25.025630949999936],[134.608169599,-24.92086604499991],[134.48863226100002,-24.778221140999904],[134.34750364200022,-24.655549975999975],[134.31423955700006,-24.564016407999873],[134.34794620700006,-24.382150733999936],[134.2648010790001,-24.108932540999945],[134.22644046100015,-24.0640201249999],[134.10275273900015,-24.031055439999932],[134.05531317900022,-23.969444261999968],[134.0423737000001,-23.76100728399996],[134.19857784100031,-23.745365143999948],[134.23300164700004,-23.778303173999973],[134.37669378700002,-23.781656269999928],[134.45211784000003,-23.726932500999908],[134.67959598700008,-23.76094056499994],[134.82948285600014,-23.867116981999914],[135.03378319600017,-23.93434722199993],[135.17367548400034,-24.000347164999937],[135.32151800700012,-24.00530807799987],[135.42126466700006,-23.925169037999922],[135.5023956220001,-23.768478409999943],[135.57760627200014,-23.69474029299988],[135.58212277600023,-23.54579756199996],[135.61517329000014,-23.402357047999942],[135.6999359570001,-23.322370556999886],[135.87922671000013,-23.276710474999902],[135.95527655600006,-23.2874813869999],[135.98548895800002,-23.233633023999914],[135.9492948940001,-23.11601832599996],[136.00704956000015,-22.936164812999948],[136.1999054170002,-22.758237794999957],[136.02500912900007,-22.655254379999974],[135.80221546000007,-22.488317378999966],[135.7315826700002,-22.38088032299993],[135.72991936500011,-22.252164799999946],[135.78422538100028,-22.154865320999875]]]]},"properties":{"objectid":149,"eco_name":"Central Ranges xeric scrub","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Australasia","eco_biome_":"AU13","nnh":2,"eco_id":208,"shape_leng":67.7239499042,"shape_area":25.6205460196,"nnh_name":"Nature Could Reach Half Protected","color":"#CC5247","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":288673.8777974879,"percentage":1.0942002976830463}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-68.65896855699998,-70.76572051699998],[-68.3735451949999,-70.92822036999996],[-68.31484016699989,-70.86305674699997],[-68.40091111399994,-70.76706011299996],[-68.65896855699998,-70.76572051699998]]]},"properties":{"objectid":150,"eco_name":"Central South Antarctic Peninsula tundra","biome_num":11,"biome_name":"Tundra","realm":"Antarctica","eco_biome_":"AN11","nnh":1,"eco_id":118,"shape_leng":381.5574418,"shape_area":1.18922203362,"nnh_name":"Half Protected","color":"#74E4F7","color_bio":"#9ED7C2","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":4934.208619807934,"percentage":0.0577427598619568}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-90.16571016599994,42.08687206400003],[-90.36183212799995,42.12140930300012],[-90.46128157799996,42.178197975000046],[-90.60065393999986,42.30091466900018],[-90.69379942399985,42.324129446000086],[-90.71437182999989,42.396231430000114],[-90.94682572699998,42.437127591000035],[-91.00290551799992,42.48026386800018],[-91.022144229,42.57063545500006],[-91.24207086399997,42.598274669000034],[-91.329965384,42.58173258100004],[-91.40849008599992,42.65805998500008],[-91.53058122599992,42.68960250700013],[-91.6187362419999,42.75184676800012],[-91.80921054499998,42.83493548000007],[-91.78921712399995,42.91701196499997],[-91.96061722899987,43.15407824500005],[-91.99262632199992,43.23826676500005],[-91.92141914099994,43.29465409900013],[-91.94096511299983,43.37484248200019],[-92.20555747499992,43.481149422000044],[-92.24162110499992,43.54240832500005],[-92.41079432099997,43.5948454760001],[-92.57450911099983,43.71572548200015],[-92.59677442999998,43.82360119300006],[-92.75122821799988,43.959912088000124],[-92.68817547799995,44.02532672300009],[-92.70967405599993,44.094835993000174],[-92.81908201999988,44.159297569000046],[-92.86757846199998,44.260214634000135],[-92.97496481799999,44.280006942000114],[-92.99759988299985,44.47562692800017],[-92.77375093899997,44.608480647000135],[-92.77944578099988,44.74541390100012],[-92.58091746699989,44.764774197000065],[-92.42107048899999,44.73030878300017],[-92.23416186899993,44.75058502800016],[-92.14497033099991,44.84453421000018],[-92.26331328499992,45.05678612400004],[-92.56263281099996,45.10687647900005],[-92.66246261199984,45.02148974400012],[-92.87324300899996,44.91478284200019],[-92.93795693599998,44.8115169190001],[-93.2002921109999,44.731069850000154],[-93.23011384999995,44.60030980200008],[-93.15694994999996,44.41824663300008],[-93.22977788999992,44.272443096000075],[-93.33125398299995,44.2668591740001],[-93.45704630699987,44.16756982000015],[-93.76228188399989,44.10861046000008],[-93.90822483599999,44.177594054],[-94.03123014599993,44.300617715000044],[-93.97370982399997,44.422675705000074],[-94.05679874499992,44.51824727700006],[-94.01389517699994,44.62837378300014],[-94.02520591099994,44.81024361600015],[-94.14142491499996,44.91627998200005],[-94.4223983249999,44.932416621000186],[-94.50705164199991,44.95920352100018],[-94.51480215299983,45.07620244100008],[-94.5548535989999,45.13504979300018],[-94.67320838499995,45.182346353000185],[-94.90413209499997,45.12071155200016],[-95.00280547599993,45.165797349000115],[-95.336439752,45.26937563000013],[-95.57987779699988,45.379791555000054],[-95.73437441299995,45.27605982500012],[-95.92381507399995,45.253379884000026],[-96.25620274499994,45.09175939600004],[-96.34688929999993,45.01139958000016],[-96.38476299899997,44.815767837000124],[-96.26577826399995,44.70640956100016],[-95.97830206299994,44.515401595000185],[-95.59113817699995,44.28930113100006],[-95.61574059099996,44.226065107000124],[-95.85785651599986,44.05207354600003],[-95.98627279899995,44.019259471000055],[-96.45665510899994,44.009921288000044],[-96.57790784799994,44.048374942000066],[-96.73305563399998,44.13313228800007],[-96.76656502699996,43.92399382600007],[-96.8548326849999,43.87094445600013],[-96.9668569609999,43.73800096600007],[-96.96442258199994,43.68717617300007],[-96.75970843999988,43.49983792900014],[-96.65592342799994,43.52477215100015],[-96.52149025799991,43.37594389500009],[-96.53150843099996,43.2993257010001],[-96.62040671299991,43.16924076100014],[-96.71377797699995,43.16397091400012],[-96.73176580099994,43.06245598300018],[-96.79291961999996,43.00599871300017],[-96.76802771299998,42.86521684900009],[-96.6491075809999,42.758991360000095],[-96.95470585799995,42.78433690800006],[-96.98136894899983,42.873542678000035],[-97.1599258849999,42.941585990000135],[-97.26228995799988,42.92695109599998],[-97.43912679799985,42.847116482],[-97.68651777199995,42.84244373600012],[-97.84215763299994,42.86814251800013],[-97.97200494299994,42.69209618400009],[-97.98414705699997,42.58500288500011],[-98.05307107699997,42.346773824000024],[-98.05822855099984,42.17355796100014],[-98.03354590699996,42.11874322500017],[-98.04112529299994,42.02538264900011],[-98.04273624799998,41.93228267000006],[-97.99598454399995,41.85123941600011],[-97.89449017699997,41.7596825280001],[-97.588321222,41.640565505000154],[-97.26591516499997,41.532765226000095],[-96.91858234499995,41.483493385000145],[-96.88899808999997,41.42176556600003],[-97.07426811699997,41.34011212400003],[-97.09880590799992,41.294168155000136],[-97.01766413599995,41.195057339000186],[-97.0333927659999,41.0255953140001],[-97.00086148599996,40.96426138900006],[-97.014733875,40.732372748000046],[-96.91843306499999,40.39429264200015],[-96.75271198599995,40.2441200400001],[-96.60777556199992,40.079021373000046],[-96.5948434149999,40.00010694100018],[-96.67378724499991,39.88383785100007],[-96.687820693,39.68589870500017],[-96.57187993799988,39.62514879100007],[-96.46979230899996,39.651742487000035],[-96.307398359,39.54645275100012],[-96.17419201599995,39.52029830200013],[-95.91121049099996,39.39661635500016],[-95.86028401799996,39.30549734400006],[-95.95195468999998,39.075905139000156],[-95.90649350899992,38.95668723800003],[-95.97862882599998,38.852074729000094],[-96.1040909859999,38.81583514000005],[-96.13761311099995,38.7589739070001],[-96.05153390599992,38.626628635000145],[-96.10806104199992,38.54354741300011],[-96.0870210519999,38.15887637700013],[-96.0102832639999,38.04342962200013],[-95.88042556799991,37.98560397100016],[-95.87537361199998,37.82448936800006],[-95.96154120099993,37.7587186830001],[-95.7804572039999,37.850211854000065],[-95.74747680799993,37.80405788000007],[-95.8406819519999,37.72509615700011],[-95.94743750099997,37.57821428500017],[-95.94001651499997,37.44563477500003],[-95.88996451599985,37.36649092900018],[-95.93308360099991,37.278625889000125],[-95.83842408099997,37.24791088699999],[-95.98320179499996,37.01457009100017],[-95.98928286699999,36.623323218000166],[-95.97317873899993,36.57147553700008],[-96.01316814299997,36.38741435100019],[-96.05862330899993,36.307082917000116],[-95.99326278799992,36.25353880900013],[-96.04631784499998,36.193306580000126],[-96.00302932199997,36.08225633500007],[-96.0741631549999,35.874583396000105],[-96.1726138269999,35.745516324000164],[-96.05691022799994,35.74198954700012],[-95.97473006499996,35.84084976100007],[-95.82385428399988,35.91028115600005],[-95.72471773999996,35.89703839300006],[-95.80045590499986,35.78771362100008],[-95.88536044099993,35.80792081100009],[-95.94725120399994,35.75336848200004],[-95.98080165299996,35.62725208900008],[-95.87315326599986,35.51204650500006],[-95.68711627499994,35.48685139000003],[-95.59638403899993,35.45558987900006],[-95.55750877199995,35.38171547000002],[-95.39256822399989,35.49115392400006],[-95.29409554799986,35.38324913900004],[-95.29573927999996,35.31844643800008],[-95.22510369199995,35.35290632500016],[-95.16197963699989,35.5390436940001],[-95.2094565559999,35.59512907800007],[-95.14076096499997,35.674042402000055],[-95.28885388699996,35.676198837000015],[-95.24775388399996,35.869308634000106],[-95.27746694099994,35.955068740000115],[-95.25008626699997,36.00850734100004],[-95.27310534699996,36.15109000700005],[-95.15899082799996,36.374371937000035],[-95.17909995799994,36.44115036700009],[-95.12834490399996,36.58173523200014],[-95.00873994299997,36.59103916400005],[-94.82163467399994,36.72749788900012],[-94.81511874799992,36.78327555400011],[-94.67884685299998,37.15022019600008],[-94.6213154589999,37.151991621000036],[-94.57360606799995,37.30608846100006],[-94.3945013209999,37.30886441900009],[-94.3591031819999,37.34774674500005],[-94.24676907999998,37.35215442500004],[-94.14382350499994,37.467311017000156],[-94.05976495199997,37.41907275200009],[-93.99468941399988,37.43557648900003],[-94.00165342699995,37.58520871700017],[-93.93106559699993,37.71423334300016],[-93.99482015999996,37.73364511400001],[-93.9577551569999,37.8264686870001],[-93.82212637199996,37.94079495500006],[-93.9394734309999,38.06184092700016],[-93.84112573899989,38.12316491300015],[-93.70129304799997,38.10547617200007],[-93.62324869499992,38.25673900400011],[-93.51551576199984,38.29622357700009],[-93.4621682149999,38.37436824300005],[-93.27162450199995,38.365036939000106],[-93.15246587899986,38.49997904100019],[-93.14974159299987,38.58691089800004],[-93.25157898299994,38.63008907300008],[-93.19669066499989,38.68126050900008],[-93.08190189699997,38.655320250000045],[-93.03178270099994,38.69199220300004],[-93.142867331,38.765493626000136],[-93.15614972899994,38.822890163000125],[-93.26538143099998,38.92767470000007],[-93.23824234599994,39.029191395000055],[-93.00161862399983,39.00881433600006],[-92.96471093899999,39.12445273100013],[-92.73709742699998,39.19230274900008],[-92.59778766799997,39.305903972000124],[-92.45340649399998,39.27642357800005],[-92.47039608599994,39.08718450600003],[-92.3871219959999,39.04682989700018],[-92.30841622499997,38.92011475800001],[-92.30110251999997,38.777329728000154],[-92.00266138999996,38.86572072500013],[-91.95276901699992,38.980437137000024],[-91.82160120799989,38.974480888000016],[-91.73914474399987,38.88388488500004],[-91.67143056299989,38.902625921000094],[-91.77879134299991,39.07159958600016],[-91.71567134299994,39.09659258200003],[-91.56295961899991,39.06089678300003],[-91.50689663799994,38.884770595000134],[-91.38985249399991,38.87688575600015],[-91.1549125119999,38.79234698400012],[-90.92958215099992,38.764999623],[-91.07747614999994,38.855588101000194],[-91.06241961399991,38.95427899800006],[-90.9549294439999,38.90299725900013],[-90.92871585799992,38.980337705000125],[-91.04123488599998,38.99469529900006],[-91.25557525799996,38.955534565000164],[-91.33988311699989,39.03199717900003],[-91.39867860599992,39.17646886400013],[-91.24318026999998,39.07936236600011],[-91.24417271299995,39.15883766800005],[-91.31874585199989,39.16410389100014],[-91.35749154999996,39.23299689200013],[-91.20793919699986,39.26094644800003],[-91.11073924599987,39.311452376000034],[-91.33306530099998,39.41340217100009],[-91.38941323199998,39.355778630000145],[-91.56526926799995,39.424029400000165],[-91.45272366499984,39.56225653300015],[-91.59613620299996,39.51756007400007],[-91.66306302999999,39.44661923300009],[-91.77834692899995,39.456555255000126],[-91.77758916199986,39.32134503100008],[-91.89062426699996,39.43983770100016],[-91.99119928399989,39.46809121300015],[-91.93630926799989,39.56658236800007],[-91.95215526499987,39.65718254700005],[-91.78637163299999,39.54433127600004],[-91.7519729149999,39.603460323000036],[-91.49445340699987,39.67552989700005],[-91.50277676499985,39.733897233000164],[-91.70708844899997,39.72470995600003],[-91.77769675699994,39.67844315800011],[-91.86447964299992,39.808920204],[-91.94838381799991,39.80741684200018],[-91.93652195599998,39.93545018900011],[-91.84186290799994,39.87902070200016],[-91.74321915399992,39.87600600000013],[-91.65849378299993,39.83294148900006],[-91.52453797799996,39.93429927400018],[-91.50271603799996,40.06334133500013],[-91.52190691299995,40.21536974600019],[-91.58544903099988,40.365304016000096],[-91.5249111149999,40.410805338000046],[-91.38576644599988,40.39236904800015],[-91.38124871399998,40.52557362600015],[-91.44898814999993,40.60623440800009],[-91.30190188699987,40.62930318300005],[-91.1864932229999,40.75968893500004],[-91.09910541699998,40.76359676400017],[-91.10557376099996,40.84403165100019],[-91.03037743299996,40.99927200500014],[-91.08006787099998,41.09651549200004],[-91.2028882009999,41.129906824000045],[-91.28766914299996,41.18743298000004],[-91.44543558699996,41.40023386700011],[-91.54430537099995,41.48890324800004],[-91.53789261399993,41.62431205100006],[-91.38015344299998,41.47412522200011],[-91.23915006699997,41.55790782800011],[-91.07784512899991,41.58813096600005],[-91.17142654399993,41.426954825000166],[-90.93213393199994,41.421562132000076],[-90.84746118399994,41.45502577899998],[-90.65879492399989,41.462327329000175],[-90.60070324499992,41.509592330000146],[-90.4564246079999,41.527425744000084],[-90.3422907879999,41.59143968900014],[-90.32365078399994,41.72956947800009],[-90.19584786899998,41.80614518400006],[-90.14416317699994,42.01166676500003],[-90.16571016599994,42.08687206400003]]]},"properties":{"objectid":151,"eco_name":"Central Tallgrass prairie","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Nearctic","eco_biome_":"NE08","nnh":4,"eco_id":388,"shape_leng":62.8119068745,"shape_area":36.7793240461,"nnh_name":"Nature Imperiled","color":"#DEFC4E","color_bio":"#FEFF73","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":342780.44999202614,"percentage":3.235213001572692}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[85.01522857499998,29.730851026000153],[85.07926162100011,29.81994562800014],[84.99520856700019,29.805597318000082],[85.01522857499998,29.730851026000153]]],[[[82.01161950200014,30.7953812290001],[81.93077051400007,30.862746752000135],[81.82682753800003,30.85163100700015],[81.8318254990001,30.78909128100014],[81.94797554300015,30.76806510900019],[82.01161950200014,30.7953812290001]]],[[[80.23779253500015,32.73165568200005],[80.17313352800005,32.808664417000045],[80.08839449900006,32.81817016600007],[79.92439250500007,32.91003331000019],[80.08030663300019,32.80120251200003],[80.23779253500015,32.73165568200005]]],[[[80.20033263600004,34.12206791000017],[80.00739262400003,34.112875141000075],[79.93139659000002,34.05533170000018],[80.09768650900008,34.00098947400005],[80.19607563500011,34.0607598200001],[80.20033263600004,34.12206791000017]]],[[[81.16645862500008,34.509318375000134],[81.05354349300018,34.43807638900017],[80.84005759200011,34.60487793800007],[80.75249453200018,34.604042095000125],[80.59639751100008,34.526915007000184],[80.71742263700008,34.552064237000025],[80.78112057499999,34.50763948000019],[80.87416053900017,34.50093781300018],[80.97893550200018,34.35761145900011],[81.16645862500008,34.509318375000134]]],[[[80.26259659800013,34.5107483270001],[80.12807459600003,34.451804940000045],[79.99076058200006,34.432865694999975],[79.92456852400016,34.46479370500009],[79.96560665800013,34.55912532000008],[80.07942150400004,34.59656225200001],[80.2062685320002,34.583328568000184],[80.24932854800016,34.67383401200004],[80.06847356500009,34.69678668000006],[79.96675849900015,34.786113125000156],[79.86618756300004,34.798204859],[79.6011355230001,35.03718985000012],[79.47753162100008,35.257914195000126],[79.283286546,35.399180779000176],[79.00695749400012,35.46730503300006],[78.60343959900013,35.40359368400016],[78.28331761800013,35.296739338000066],[77.89643863900017,35.12867547400009],[77.86868263700012,35.0694878380001],[78.09578661500012,34.977277347000154],[78.20279652900007,34.715725926000175],[78.36293061000009,34.69870848300019],[78.44194060900014,34.635352024000156],[78.58281760300008,34.59883106600017],[78.58281760300008,34.54069250900005],[78.68344855300018,34.49000915200003],[78.61561565500006,34.421437808000064],[78.77438365300003,34.395349637000095],[78.81846659700011,34.311637894],[78.88363656400008,34.25039132700016],[79.08454156400006,34.16691662400018],[79.2312166550002,34.090673993999985],[79.19464155000009,34.00768007700003],[79.26761657800006,33.95355879900018],[79.48825861300014,33.90504819900008],[79.57177757200009,33.969469160000074],[79.62496158600015,34.04222525300014],[79.80328355900008,34.02710362900007],[79.81630652200016,34.12481901800004],[79.86734057800015,34.19104326200011],[79.8564834980001,34.28007265200006],[79.792419607,34.33761223800013],[79.83259557700012,34.42664079100007],[79.92162362700009,34.35824043700006],[79.96614058500018,34.401670430000024],[80.19197051400005,34.412526001000174],[80.26259659800013,34.5107483270001]],[[78.47176358800004,35.30783194900016],[78.70230062700017,35.289045421000026],[78.78171563900008,35.25147840200009],[78.76377853400004,35.14218726900009],[78.68522652200011,35.121694689000094],[78.66986065000009,35.02179816100016],[78.56739758300017,35.03204386500005],[78.45383453000005,35.10547101300011],[78.34283449500009,35.042289568],[78.24037159500011,35.08925152700016],[78.26683862800019,35.15328692100013],[78.17292057700013,35.20366249400007],[78.18231149300016,35.254893189000086],[78.3385615680001,35.24891555100004],[78.35649163200003,35.297586245000105],[78.47176358800004,35.30783194900016]],[[78.75338765600003,34.71328427700007],[78.93939952200003,34.726112948000036],[79.01252760400018,34.65940758300002],[79.1279836270001,34.66325655300017],[79.26781455900016,34.54010175200011],[79.72067252700003,34.55934609900015],[79.75145758100007,34.45928595700019],[79.46537752600011,34.3887277660001],[79.30886861800013,34.40540440100017],[79.22035253500013,34.370768365000174],[78.96762859900002,34.36948610100012],[78.97403756900007,34.51829421999997],[78.85986364300015,34.51188156100011],[78.87012460100004,34.398992412000155],[78.75338765600003,34.4387593460001],[78.63536056900006,34.5413877040001],[78.75338765600003,34.71328427700007]]],[[[100.69499954700012,37.62603754300011],[100.5061876220002,37.72753367300004],[100.08427463500016,37.86386784300015],[99.91653464700016,37.944601497000065],[99.6704255410001,38.034393976],[99.50409656300013,38.07597307700013],[99.18865956300004,38.18888619800009],[99.155853632,38.09345571500012],[99.2288055260002,38.010407316000055],[99.48733560700009,37.913226021000185],[99.7388225420001,37.799111271000186],[99.79185467600018,37.73768449400012],[99.70568854300006,37.68242931100019],[99.7441105170002,37.616005578000056],[99.66964753299999,37.56797542900017],[99.5753705680001,37.58706018500004],[99.25647754100015,37.71543372600013],[98.89396659900018,37.63166833800011],[98.83169559600009,37.68953213599997],[98.84365858300004,37.94754958000004],[98.66979963900019,37.99294378800005],[98.56308761800011,38.189080155000056],[98.43994153400013,38.30805104500007],[98.36540261100015,38.26784473100014],[98.33312960100011,38.09639675700009],[98.38775664300005,37.86317415700012],[98.61988054400018,37.621105631000034],[98.65222966100004,37.48637307500013],[98.94094867500013,37.324556076000135],[99.10896258300005,37.11120160400003],[99.29108457500007,36.91745642600006],[99.1965256430002,36.88135121000016],[99.10176051700012,36.96352956900017],[98.53949759000011,36.85540368800014],[97.89931464600011,36.804192774000114],[97.88407165300003,36.711112745000094],[96.69577762000017,36.85540368800014],[96.29341860700015,36.55070826400015],[95.87634264800016,36.26645060200002],[95.13373553100013,36.112812999000084],[94.33551767000017,36.50508925300011],[94.38007352100016,36.21044775400014],[94.33969152300011,36.128670721000105],[94.14411959400019,36.147446185000035],[93.89347856000018,36.24492084500008],[93.805419626,36.24178500800008],[93.68555455500018,36.160484906000136],[93.8534856500001,36.002056374000176],[93.86538661200018,35.92746112400005],[93.7891696310001,35.85275992600009],[93.52050063200011,35.82944130400017],[92.99122652900002,35.818012579000026],[92.783180651,35.79045237899999],[92.65643353500019,35.72609176700013],[92.48661064400005,35.74694225400003],[92.2446596330002,35.807342919000064],[92.16547361400012,35.80268895100011],[92.13885453400019,35.714476293000075],[92.20999861900009,35.58917824000014],[92.23274257800017,35.454804430000024],[92.18846852700017,35.373859217000074],[92.03558361900002,35.30377711900019],[91.98938759800006,35.200366562000056],[91.9324416180001,35.15216575700009],[91.6915205750002,35.08167177200016],[91.54676862700012,35.067157166000186],[91.01898952100004,35.123353636000104],[90.88862661900015,35.14622315600019],[90.53285254700018,35.12679859800005],[90.38249159800006,35.07143696500003],[90.2659605120001,34.93904430200013],[90.16534464900008,34.769122505000155],[90.06050866600015,34.724548717000175],[89.86041252000012,34.696355515],[89.63419350300006,34.690087696000035],[89.47269451300019,34.72454486100003],[89.53347051900016,34.83196012400009],[89.9853516600001,35.02637518300014],[90.07118955700003,35.0960532740001],[90.05115563500016,35.14511992900009],[89.89523362800014,35.100073067000096],[89.25335653500008,34.999680833000184],[88.55342051300005,34.770068486000184],[88.23625952200007,34.81237664600013],[88.1301116030001,34.797899758000085],[87.92263753900016,34.730354526000156],[87.89610261300004,34.65556951000019],[88.02154550500018,34.60973374300016],[88.1310956390002,34.647345857000175],[88.15836364600011,34.56552205300011],[87.92604863800005,34.50270773500006],[87.82089950700015,34.57440687100018],[87.60369857900008,34.554490295],[87.67877964400009,34.670427104000055],[87.6490096390001,34.77697634800012],[87.56615452600005,34.77245665800007],[87.51699851900008,34.65275084300009],[87.4589845180002,34.58317668800004],[87.36711165000014,34.53504796800013],[87.3853835290002,34.452668109000115],[87.31905350600016,34.41584489900015],[87.01605960800003,34.42417265500018],[86.83573151000013,34.369646363000015],[86.89963564300018,34.23014718700006],[86.72817258200007,34.20024089200018],[86.64195263800002,34.11408431500013],[86.48114750100012,34.229730942000174],[86.39503451000019,34.199473948000104],[86.3087465050001,34.22638924500018],[86.25668365500007,34.29626112500006],[86.123428661,34.29879028000016],[85.94738757100009,34.21853540100011],[85.7709426420002,34.18368931500015],[85.63376659400006,34.25610929400011],[85.4110106440001,34.30148724100013],[85.2792585250001,34.41935507300013],[85.12643463700005,34.41959479500008],[84.98153650900014,34.488711969000065],[84.9622805950001,34.54644148900019],[85.02973966100018,34.63373515500007],[85.11872060400015,34.623996557000055],[85.24549051900016,34.68825692000007],[85.08705863500006,34.83106812200015],[84.86811863000008,34.81487864400003],[84.75551564000011,34.78369427600012],[84.54634055200012,34.545274560000166],[84.41091162800012,34.55278927200004],[84.2623675390002,34.633052365000026],[84.18740851500007,34.59764117100002],[84.05283353900018,34.36429133300015],[83.90563960700018,34.34474506999999],[83.81420159300006,34.36215847400018],[83.88182058500007,34.43794345200013],[83.86080162200011,34.48039242700003],[83.48770165400009,34.57168694300003],[83.43166360200013,34.53957956000005],[83.47185549800008,34.44839518200018],[83.39371453500019,34.37882504999999],[83.12468762900016,34.330543444],[82.9878616100001,34.41906103600007],[83.05310064399998,34.46338671900003],[82.84337654200004,34.52955782100014],[82.77489454900012,34.43293459400007],[82.83724249700009,34.33330125800012],[82.71925363100019,34.30054109200006],[82.58648663200006,34.37783313600016],[82.52989956500005,34.45510087200006],[82.42376757199997,34.357386489000135],[82.42678053100013,34.242540837000035],[82.20027954600005,34.38122797400007],[82.12210052900014,34.46283368100012],[82.03880352300007,34.39384659400014],[82.05148349800015,34.33102724700018],[82.17251549800017,34.24210162500009],[82.24392663100014,34.108637419000104],[82.32875065300016,34.05462594300013],[82.246475567,33.98568881300014],[82.17768059400015,34.08347595100014],[82.09226263000005,34.07971817599997],[81.93992656900014,34.22965902500016],[81.80399355700013,34.251672417000066],[81.79151960900009,34.336959288000116],[81.62588465300018,34.47935038900016],[81.48409252300019,34.64208101600002],[81.33747057200003,34.59113346100003],[81.2552186210001,34.49684492900013],[81.1996995770001,34.493555871000126],[81.22451755399999,34.36180358400014],[81.15662363500007,34.31821869400005],[80.9780956350001,34.288044513000045],[80.90181763400011,34.10616542800011],[80.7928545690001,34.18830522900015],[80.7316665080001,34.34671682900017],[80.74927554600009,34.40957825300018],[80.61013058800012,34.392812770000035],[80.54465451400011,34.429791716000125],[80.42099763700008,34.42068578400006],[80.34154557700015,34.46185668600003],[80.3255155220001,34.305042845000116],[80.16156750800013,34.278985855000144],[80.06276649400013,34.21601429200018],[79.93465463600012,34.2594431120001],[79.91402459300019,34.18670227400014],[80.0291136560001,34.179103576000045],[80.19758555100003,34.13746764500007],[80.27269763000015,34.0512428400001],[80.39493561800009,34.03954723500004],[80.49820753800009,34.094671659000085],[80.5148466220001,33.95921960100014],[80.63526959199999,33.78672757700008],[80.45688659900003,33.70341682400016],[80.37870758300005,33.62393593000013],[80.22644058800017,33.591287076000015],[79.98217751300012,33.5758385580001],[79.92169152000014,33.43242067400007],[79.77990760400013,33.35987463100014],[79.76451859800011,33.26750840500017],[79.88544465000007,33.14038041500004],[80.00920060100015,33.07475430400018],[80.08284752300011,32.95279794800007],[80.16283451599998,32.97972129100009],[80.2673726070002,32.96863639200012],[80.39646162700018,32.909239209000134],[80.347366641,32.83875729400012],[80.55881456600008,32.79520274499998],[80.4194335740001,32.74055860400017],[80.32248663800016,32.67231264500009],[80.49025763800006,32.622703010000066],[80.463813572,32.58008354700007],[80.34988355900009,32.57832435299997],[80.09828162400004,32.54207865700005],[79.96524053600007,32.57442676800002],[79.7303695510002,32.68735698800009],[79.59226964900017,32.69458872600018],[79.41081955000004,32.769175427000164],[79.35004454900013,32.76336559500015],[79.46238753300008,32.61557034600003],[79.70731361700012,32.45420647200018],[79.92608665500006,32.242901040000106],[80.05090358700011,32.03134113300007],[80.20900757100003,31.803599626000164],[80.21488965500004,31.740358502000163],[80.28118162499999,31.63724315600001],[80.38014256400004,31.57138838700007],[80.52277355500007,31.420724347000032],[80.58152063800009,31.328239601000178],[80.67939763100014,31.28476887200003],[80.70654259200018,31.38850028800016],[80.85807063700008,31.260469735000072],[81.02714552700002,31.204949852000084],[81.239875547,31.062427658000104],[81.34804551700006,31.00638558300011],[81.4537735020001,30.993878107000114],[81.58255758900015,30.945682667000142],[81.67209659900016,30.86758361300008],[81.76985959800004,30.935037985000122],[81.91319265700008,30.886961735000057],[82.10202050700013,31.002675753000062],[82.17655959800015,30.901178281000057],[82.36132859600013,30.80681766500004],[82.43666061500016,30.88214683500013],[82.47313664600006,30.804436869000085],[82.41762564900012,30.677565365000078],[82.32102153200003,30.646314277000158],[82.47850056200014,30.581123858000126],[82.58412159400012,30.580897882000045],[82.67075359300003,30.42222241900015],[82.64297462400015,30.367540392000024],[82.51650964300006,30.27625375500014],[82.61125951400004,30.170361651000064],[82.60865056300008,30.050910981000186],[82.68595165900007,30.06088662000019],[83.03275256800003,29.88403935900004],[83.08013161100001,29.821702810000033],[83.2372285940001,29.736924050000084],[83.30705252899998,29.644665447000193],[83.40429652000006,29.56986031400004],[83.56244660500005,29.371035871000174],[83.60836065900008,29.33879320400007],[83.67504858900014,29.29403702600007],[83.71115849900002,29.35810242700012],[83.6609495580002,29.442499307000162],[83.65097056700012,29.607068756000103],[83.7182995450001,29.60457597800007],[83.76478558000008,29.696834581000132],[83.51631965000007,29.691849695000144],[83.43402864000007,29.819016745000113],[83.32680565800007,29.928730660999975],[83.22209154700005,30.08322103900008],[83.25686655499999,30.16533686800011],[83.35319557700012,30.201691529000072],[83.3970716550001,30.131354286000146],[83.57122765400015,30.02290503100005],[83.66590862700008,29.930422632000102],[83.85189853200012,29.865531111000053],[83.85407263000008,29.78803287200003],[83.93362460300017,29.686582842],[84.006767605,29.415149157000087],[84.05111659000016,29.38974813500016],[84.13590255800017,29.401889824000136],[84.23434465800017,29.36123021800006],[84.29510457100014,29.289823946000183],[84.53985564100009,29.234049254000183],[84.58254266200004,29.26116303400005],[84.56025652300019,29.41977613500012],[84.48916658500002,29.512385604000087],[84.384941642,29.479460650000078],[84.26831064400017,29.525889856000106],[84.07803356300013,29.51189140700012],[84.01672362900007,29.56727935900011],[83.995498639,29.711171826000054],[84.12458061800004,29.772055624000075],[84.19556460900003,29.71062985200018],[84.24700954600019,29.745680457000105],[84.35165358400019,29.72893827600012],[84.444770661,29.669967396000175],[84.62777761500007,29.617734392999978],[84.70768766200018,29.653072161000125],[84.85942860800014,29.590115519000108],[84.92184461800008,29.63339698400017],[84.90725759200018,29.698923351000133],[84.8129196070002,29.835780216000046],[84.81092052300016,29.915166227000157],[84.70568053200003,29.908216456000048],[84.62310755300001,29.966392396000117],[84.6062165100002,30.05084124399997],[84.65313756600005,30.131533994000108],[84.64562956000003,30.259144279000054],[84.48986060599998,30.354851028000155],[84.51238261200007,30.463695909000137],[84.48235360600006,30.510611432000132],[84.50675165000013,30.61570239300005],[84.57807158800011,30.64384932700017],[84.7244496240001,30.50498063700013],[84.80702260200013,30.493721730000175],[84.9083635,30.38112393600005],[85.05850249700006,30.304182759000128],[85.07350962400017,30.22348984200005],[85.17109660200015,30.189709934],[85.20487952800005,30.266651278999973],[85.27806863000018,30.281663603000084],[85.37190252700003,30.178449517000104],[85.46199055200009,30.174695431000032],[85.5370555240001,30.048964033000175],[85.52954852400018,29.98328059],[85.59147654000003,29.94011932],[85.65341159600013,29.759964058000037],[85.5370555240001,29.679271141000186],[85.488258599,29.735568026000124],[85.38691753300014,29.669886427000108],[85.30809763600018,29.78248304700014],[85.31748151200014,29.95325460100014],[85.2761915870002,30.026444877000188],[85.12418359300017,30.095879557000103],[85.11104563000015,30.045210281000095],[85.18048064600015,29.913846245000173],[85.1562115160001,29.84002414100013],[85.13144651200002,29.74470346200019],[85.24182863300007,29.66082894200008],[85.23077357400007,29.616458332000036],[85.07161766100006,29.619941348000054],[85.07000749700006,29.559653503000106],[85.30145263100007,29.531250586000056],[85.35869549800015,29.4629553420001],[85.49811554900009,29.424361874],[85.542549527,29.446540893000076],[85.6074145610001,29.349986901000136],[85.82487465700007,29.33746819300012],[86.02346759199997,29.385035326000036],[86.00463865200015,29.280978356000162],[86.08876764700005,29.24671162700008],[86.23444361600014,29.319216934000167],[86.28192860600012,29.210148257000128],[86.49668151500003,29.25015860100018],[86.73372659800003,29.213691120000078],[87.04370865700008,29.186341137000113],[87.16612266400011,29.211952043000167],[87.10031852200018,29.284422145000065],[87.09074353900013,29.404525765000017],[86.85426356300007,29.43999714100005],[86.4888836630002,29.464639434000162],[86.29527259600002,29.414989063000178],[86.2026676530001,29.462484447000122],[86.03728465600017,29.450767719],[85.85905454900018,29.416507025000158],[85.75930051400007,29.53407562300015],[85.80496260800004,29.637754736000147],[85.89994063500006,29.50960163900004],[86.05853261300007,29.51206541600004],[86.21781157300006,29.54847724100017],[86.30034649700019,29.61354947600006],[86.3965685660001,29.559707650000064],[86.88748959500009,29.533789632000037],[87.2875745980001,29.425343898000108],[87.55030853800008,29.439852134000034],[87.61173263300009,29.483538614000167],[87.63719165800006,29.654524074000108],[87.58506057900019,29.89611684300013],[87.6548385820002,29.879742460000045],[87.71203652200006,29.75154342999997],[87.690574659,29.627488078000113],[87.71191364300012,29.532923782000125],[87.93061861900009,29.46512038700007],[87.96048753100018,29.51520527600013],[87.8685605170001,29.62457402600006],[87.93582160200009,29.653141228000095],[88.03587353000006,29.465163303000054],[88.1971356480002,29.56571931899998],[88.23620554300015,29.482243610000125],[88.31060063300004,29.59106351200012],[88.35411059000018,29.550963146000072],[88.34629865600004,29.431196646000103],[88.47953755700013,29.446739041000114],[88.46948262600012,29.54033355200005],[88.54745460900011,29.62467511100016],[88.55097953500007,29.8467407280001],[88.53240959600004,29.930291539000166],[88.40243561400018,30.03240675700016],[88.18891853300005,30.088106850000145],[88.16106463100004,30.19022290600003],[88.10536152000014,30.26449008900005],[88.04037461200016,30.27377304700019],[87.91040750400015,30.199507540000127],[87.77114855300005,30.27377304700019],[87.74330152300013,30.440871651000066],[87.76187163000014,30.580121717000054],[87.75258666100007,30.691520899000125],[87.83613562700009,30.821486163000145],[87.94754050900008,30.867903634000186],[87.89627058600018,31.05245788700006],[88.00566062500019,31.026028908000114],[88.16682450700017,31.122972659000027],[88.26523559400005,31.118278794000048],[88.52597061800003,31.049725219000095],[88.6690295890001,31.060544580000112],[88.90689861300012,31.009853679000173],[89.01194766500004,31.011810351000065],[89.2009275630001,31.06053770700015],[89.3100586010001,31.115443699000082],[89.48054450000018,31.102558367000086],[89.71583558700019,31.128751311000144],[89.84095762000015,31.18623524100019],[89.98095652600006,31.3215548660001],[90.25801061200008,31.784359135000045],[90.4914705880002,31.937228118000064],[90.61975058700017,31.99719108000005],[90.82329555100006,32.160082807000094],[90.87804463300012,32.222363868000116],[90.83834861100019,32.455659223],[90.9129636420002,32.54489346800011],[91.07804857800011,32.62615199600015],[91.28904756800017,32.674448354000106],[91.64348556400012,32.715317173000074],[91.70740562300006,32.7616038860001],[91.71096055500004,32.850124998000126],[91.6197505290001,32.915362021000135],[91.4183575350001,32.967388662000076],[91.47837866800018,33.05740979900014],[91.73580954600016,33.37919206800018],[92.21849853900011,33.797511063],[92.67679552500005,34.059390720000124],[92.92736866500019,34.12772502399997],[93.17703253600013,34.25255352300019],[93.45790860300008,34.19013919000014],[93.6763606130001,34.19013919000014],[93.86360964800008,34.314968862000114],[93.98844166800006,34.47100469500009],[94.08206953799998,34.54902428800011],[94.23810553900017,34.611438788999976],[94.55019363400004,34.68945469400006],[94.78424855700007,34.72066202900015],[94.92469053000013,34.814287384000124],[95.4708325430002,35.063945053000054],[95.84532960700017,35.251189394000164],[96.11059555200018,35.32920546600013],[96.39147161900013,35.391623823000145],[96.53190655100008,35.45403849200005],[96.85959655400012,35.53205456400002],[96.98442857300006,35.54766015900009],[97.1716766020001,35.61007449300007],[97.48375665000003,35.734903662000136],[97.85825354700012,35.79731816300017],[98.13912961400007,35.79731816300017],[98.49732152899998,35.89590677900003],[98.94921155500009,35.933565161],[99.41014062500005,36.010383292000085],[99.84546666900007,36.061598229000026],[100.741722622,36.13841736600017],[101.12583154999999,36.24084707300017],[101.45872453400005,36.343272589000094],[101.75290653700011,36.46094227200018],[101.56320965100008,36.55391216300012],[101.4916535120002,36.614289861000145],[101.38181252600009,36.82505851600007],[101.32442465200018,37.04491080800017],[101.26353465200003,37.18299998000015],[101.10710855700012,37.387463936000074],[100.69499954700012,37.62603754300011]],[[80.33724951600004,32.14282228900015],[80.41460459200005,32.10353563800004],[80.40846250100014,32.01268050199997],[80.55580160700009,32.02127429900008],[80.54720261200009,31.92305348200017],[80.81732151200009,31.69468802600005],[80.80750261500009,31.606289123000124],[80.87380263100005,31.537533377000045],[80.85169955300012,31.425807301000134],[80.7055966100001,31.45159120900007],[80.73997465100013,31.532622420000052],[80.63315550900018,31.643122726000115],[80.56562050300016,31.63207202400008],[80.54475358800016,31.722926992999987],[80.41091957200013,31.864120320000097],[80.31269858600012,32.053199125000106],[80.33724951600004,32.14282228900015]],[[82.21012861800011,31.185409456000173],[82.18000053700018,31.29144472300004],[82.36195355100006,31.232402932000184],[82.44630449800007,31.176974579000102],[82.57764456200016,31.0323835640001],[82.66680957200015,30.967316862000075],[82.85960357100004,30.94321889000014],[82.91142250800004,31.013105355000107],[83.06083663800007,30.99262115700003],[83.19820362600018,31.087809737000157],[83.20784750800004,30.98900721500013],[83.04637953100018,30.880561984000167],[83.1849515020001,30.798627875000136],[83.1186756260002,30.760070282000072],[82.96805550800019,30.770914789000074],[82.86804163300008,30.872128281000016],[82.81381960400017,30.804652618999967],[82.8740695620001,30.770914789000074],[82.8969645630001,30.696208729000034],[82.80658753000006,30.603428773000076],[82.75839259300005,30.669701464000184],[82.66320066000014,30.698619365000184],[82.61861463400004,30.66367588100013],[82.49329361500014,30.708259056000088],[82.50896458900019,30.782963607000056],[82.61499750800004,30.77573488600018],[82.4029236230001,30.92032573299997],[82.2751995110001,31.16974703200009],[82.21012861800011,31.185409456000173]],[[83.36067156400009,30.879262119000032],[83.41734362300019,30.94386195000004],[83.37200959700004,31.096861355000158],[83.39127355700003,31.13766010100005],[83.56015063400002,31.17052889600012],[83.58847861700008,31.052659891000076],[83.50574453900003,30.89059478700011],[83.459274597,30.84979419700005],[83.47514355100009,30.77499493100015],[83.4558795910001,30.6231270830001],[83.51594565000005,30.485994118000065],[83.47061162400001,30.456528208000123],[83.25413556299998,30.490527051000072],[83.25980357300017,30.632194961000096],[83.2053986520001,30.816928419000135],[83.31080661600004,30.836193553000044],[83.36067156400009,30.879262119000032]],[[84.1075205950001,30.72930350100006],[84.07894165800008,30.64854721600011],[84.26779951600014,30.5926372400001],[84.26158852500004,30.540456037000126],[84.3150095800001,30.423669471000153],[84.18579851900006,30.349124177000135],[84.24542955700014,30.247246838000024],[84.18952159200018,30.162761947000092],[84.08391564700014,30.141640892000055],[84.09012563200014,30.23979130200007],[83.95594058199998,30.195064796000054],[83.89009050600015,30.207489291000172],[83.85530057900013,30.27457972100018],[83.7273255140002,30.328002787000116],[83.70744363900019,30.42615520800007],[83.75714866000004,30.554123736000065],[83.86524151600008,30.593881282000154],[83.9621505660001,30.542941104000136],[84.05409250000014,30.320549263000146],[84.11124450700004,30.387639693000153],[84.03048654600008,30.54791190700007],[84.04912555200008,30.715637980999986],[84.1075205950001,30.72930350100006]],[[86.26319857300018,30.390851638000072],[86.33797453700015,30.437768],[86.31158461700011,30.23690122200003],[86.33357252900004,30.137199993000024],[86.29398362700005,30.10054643300009],[86.25439455700007,29.952461673000073],[86.25292956800007,29.857160439999973],[86.17375159600005,29.785316968000018],[86.07845254200004,29.785316968000018],[86.14443153100018,29.64016553900018],[86.12536655700012,29.563924418000113],[85.87464153700006,29.594713160000083],[85.7896046140001,29.691482735000193],[85.80279555100009,29.833701169000108],[85.75001554400012,29.89234817199997],[85.69869264800019,30.0345677790001],[85.76174165900017,30.11374273400014],[85.8130645550001,30.075622173],[85.87757855500007,30.13426917600009],[85.94062052600015,30.097614275000126],[85.85118059000018,30.033102622000115],[85.83505263400014,29.868890075000024],[85.95822151700014,29.914340274000097],[86.16495562600005,29.917274276000057],[86.14882649800012,30.08735164100011],[86.10484363400013,30.12987018600012],[86.23680161300013,30.286751250000123],[86.26319857300018,30.390851638000072]]]]},"properties":{"objectid":152,"eco_name":"Central Tibetan Plateau alpine steppe","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Palearctic","eco_biome_":"PA10","nnh":2,"eco_id":750,"shape_leng":130.98088872,"shape_area":60.9734061571,"nnh_name":"Nature Could Reach Half Protected","color":"#E67938","color_bio":"#D6C39D","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":630873.7763852588,"percentage":12.918993410568314}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[36.72374677200014,-16.589147263999962],[36.69731852100006,-16.500602661999892],[36.625717455000085,-16.44916778399994],[36.52593961400015,-16.49806998599996],[36.43233454300008,-16.43773754999995],[36.31499460400005,-16.454456764999975],[36.23086560900015,-16.426098271999933],[36.24856953000011,-16.337651087999973],[36.31167252000017,-16.21935644999985],[36.30851208600018,-16.15026371999994],[36.196787382000025,-16.279496048999874],[36.174416259000054,-16.365850321999915],[36.192818628000055,-16.438151306999885],[36.283321954000144,-16.51126412499997],[36.49963272200006,-16.649460725999916],[36.60256357100013,-16.659514380999894],[36.72374677200014,-16.589147263999962]]],[[[36.81572134100014,-16.511130146999903],[36.897416133000036,-16.396461847999888],[37.04310682400012,-16.347074859999964],[37.253940322000176,-16.35553461399985],[37.31211313600005,-16.26677460699989],[37.30862616500008,-16.15953095699996],[37.42000394100012,-16.061539050999954],[37.439887189000046,-15.947068278999893],[37.52590444700013,-15.833810294999978],[37.59154088100007,-15.829399783999975],[37.83121792100013,-15.892488711999874],[38.040558695000186,-15.884078565999914],[38.11762750400004,-15.805362291999927],[38.059940421000135,-15.696103942999912],[37.875956217000066,-15.651899613999944],[37.74368425100016,-15.581593484999928],[37.523400781000134,-15.534171588999982],[37.45278860000019,-15.48234910399998],[37.3786894480001,-15.323282968999877],[37.35480981000012,-15.121245134999981],[37.31452205000005,-14.93728006799995],[37.20413152800012,-14.910757469999965],[36.91126137000009,-15.060542097999928],[36.79341907100013,-15.153311660999975],[36.77453491900013,-15.346909583999945],[36.785987033000026,-15.6120065799999],[36.715884271,-15.769449049999935],[36.645279985000116,-15.853387667999925],[36.52594496200004,-15.929287331999944],[36.40313086400005,-16.03370444899997],[36.322662912000055,-16.134676455999966],[36.40315261200004,-16.194622124999967],[36.40543751900003,-16.239018047999934],[36.562255551000135,-16.227138041999922],[36.67038746700007,-16.306524890999924],[36.788322520000065,-16.303033995999897],[36.77548245100019,-16.432574968999916],[36.81572134100014,-16.511130146999903]],[[37.14077752600002,-15.119277590999957],[37.20771758400019,-15.133223735999934],[37.25513451400002,-15.20016144699997],[37.257926525000016,-15.286621952999951],[37.377860496000096,-15.328457204999893],[37.37304660100011,-15.436593142999868],[37.31869850900017,-15.477292647999832],[37.171596611000155,-15.457970013999955],[37.05774656099999,-15.492432711999925],[36.93484858200003,-15.437929050999912],[36.840557535000016,-15.34387504499989],[36.89715147500016,-15.29300560999991],[36.89549252900002,-15.23292043999993],[36.963542518999986,-15.140885298999876],[37.14077752600002,-15.119277590999957]]],[[[28.144166667000093,-14.418333332999964],[28.086666667000145,-14.385833332999937],[28.0375,-14.435833332999891],[28.078333333000046,-14.533333333999963],[28.179166667000175,-14.4625],[28.144166667000093,-14.418333332999964]]],[[[35.96253628799997,-15.463696794999976],[36.00779189900015,-15.568133755999952],[36.05901051100017,-15.604289208999887],[36.267845814,-15.45449465999991],[36.40557531000013,-15.315134876999934],[36.50253526300014,-15.257708934999982],[36.83418071699998,-14.935616716999903],[36.7973799290001,-14.858895298999926],[36.69146363100003,-14.815101845999948],[36.464222011000174,-14.824714858999982],[36.363273564,-14.70139329999995],[36.257349369999986,-14.521838743999922],[36.212089811000055,-14.349521230999812],[36.18721502400007,-14.13623679899996],[36.21802517600008,-13.806075860999954],[36.26127864500012,-13.684377966999875],[36.22099483300019,-13.568293450999874],[36.15535839900008,-13.572703962999924],[36.07232264200019,-13.651821191999886],[35.966418188000034,-13.811669395999843],[35.799849098000095,-13.96428055499996],[35.67951497800004,-13.961053067999899],[35.544755139000074,-13.862630440999908],[35.46867753100008,-13.884712762999868],[35.35250000000019,-14.019999999999868],[35.484166666000135,-14.1675],[35.5875,-14.334923872999923],[35.73225000100018,-14.421361730999877],[35.83916934400003,-14.612162886999897],[35.87049681100012,-14.627028007999968],[35.90133459900011,-14.772030932999883],[35.916265788000146,-15.00861047599983],[35.94959145000007,-15.181729898999947],[35.92672275299998,-15.262460872999952],[35.96253628799997,-15.463696794999976]]],[[[24.87500000000017,-12.79166666599997],[24.79333333300002,-12.925833333999947],[24.834166666000044,-12.9675],[24.87500000000017,-12.79166666599997]]],[[[29.526015257000097,-7.002092886999947],[29.66753166100017,-6.901901700999815],[29.632774585999982,-6.826994050999815],[29.557220446000144,-6.784775242999899],[29.46265845000005,-6.667005770999936],[29.409861110000122,-6.72684275599994],[29.361287557000082,-6.877491164999981],[29.429572117000077,-6.992941347999931],[29.526015257000097,-7.002092886999947]]],[[[31.215000000000146,-4.839166666999915],[31.161666666000144,-4.959166666999977],[31.259166666,-4.969166665999978],[31.215000000000146,-4.839166666999915]]],[[[25.682500000000175,-15.770833333999974],[25.80500000000012,-15.859166666999897],[25.852500000000134,-15.78166666699991],[25.924166667000122,-15.74583333299995],[26.024166666000156,-15.538333332999912],[26.05833333300012,-15.58416666699992],[26.015833334000035,-15.689166666999938],[26.0375,-15.748333332999948],[26.077500000000157,-15.759999999999877],[26.090833334000024,-15.766666666999924],[26.156666667000025,-15.76166666599994],[26.173333333000187,-15.763333333999924],[26.15750000000014,-15.618333332999896],[26.18916666600012,-15.56999999999988],[26.2875,-15.54833333299996],[26.406666666000035,-15.4725],[26.30333333300007,-15.4275],[26.36666666700006,-15.377499999999884],[26.45416666600005,-15.36],[26.49333333300018,-15.465833332999978],[26.5925,-15.440833332999944],[26.705,-15.3566666669999],[26.594166667000138,-15.285833332999971],[26.556666667000115,-15.204166666999924],[26.560000000000173,-15.013333332999878],[26.626666667000165,-15.065],[26.713333334000083,-15.215833333999967],[26.78416666700008,-15.188333332999946],[26.83416666700009,-15.234166666999954],[26.91166666700019,-15.11],[26.983333333000076,-15.128333333999876],[27.078333333000046,-15.23],[27.1925,-15.221666666999965],[27.161666667000134,-15.158333333999906],[27.30333333300007,-15.138333332999935],[27.390833333000103,-15.148333332999925],[27.385,-15.05416666699989],[27.45916666700009,-15.0525],[27.59750000000014,-15.134166665999885],[27.61833333300001,-14.941666666999822],[27.71833333400008,-14.91083333399996],[27.766666667000152,-14.863333332999957],[27.80083333300007,-14.758333332999939],[27.803333333000126,-14.655833332999919],[27.560833333000062,-14.569166666999877],[27.481666667000127,-14.486666666999895],[27.375,-14.545833333999894],[27.3275,-14.46],[27.18416666700017,-14.3975],[27.079166667000095,-14.385833332999937],[27.276666667000086,-14.208333332999814],[27.34020633400013,-14.086012621999942],[27.435833333000176,-14.07666666699987],[27.52333333399997,-14.019166666999922],[27.804166667000175,-13.930833332999839],[27.790000000000134,-13.861666666999952],[27.917500000000132,-13.903333332999978],[27.95083333400015,-13.975833332999912],[27.875833334000163,-14.08666666699986],[27.90583333400008,-14.228333332999966],[28.03166666600015,-14.254166666999936],[28.03833333300014,-14.319166666999934],[28.078333334000092,-14.37],[28.1625,-14.38083333399993],[28.2525,-14.368333332999953],[28.370833334000054,-14.5175],[28.463333334000083,-14.534166666999965],[28.521666666999977,-14.585],[28.51250000000016,-14.724166665999974],[28.59083333300015,-14.725833332999855],[28.616666667000118,-14.82333333299988],[28.694166667000047,-14.8325],[28.829166667000095,-14.740833332999898],[29.159166667000193,-14.6275],[29.235000000000127,-14.54],[29.264166667000154,-14.463333332999923],[29.5475,-14.224166665999974],[29.66500000000019,-14.08],[30.006666667000104,-13.730833333999954],[30.15083333399997,-13.536666666999963],[30.265,-13.429999999999893],[30.355833333000135,-13.395],[30.712500000000148,-13.31999999999988],[30.905000000000143,-13.21166666699986],[31.080833333000044,-12.9775],[31.423333333000073,-12.134166666999874],[31.535833333000028,-11.9175],[31.669166667000013,-11.752499999999827],[32.00833333400004,-11.493333332999839],[32.140833333000046,-11.372499999999889],[32.155833334000135,-11.251666665999892],[32.0716666670001,-11.120833332999894],[32.17916666700012,-11.049166666999838],[32.28083333300009,-11.064166666999881],[32.27416666700003,-10.9375],[32.33583333400003,-10.893333333999976],[32.40916666700008,-10.89666666699992],[32.487500000000125,-10.760833332999937],[32.4525,-10.72916666599997],[32.245,-10.731666666999956],[32.23750000000018,-10.648333332999925],[32.28416666700019,-10.5575],[32.51833333300016,-10.215],[32.62333333300012,-10.184166665999896],[32.62,-10.30833333399994],[32.755833333000055,-10.359166666999954],[32.77666666700003,-10.176666666999893],[32.8375,-10.078333332999932],[32.955,-9.996666665999953],[33.04416666700001,-10.000833332999946],[33.11833333300018,-10.117499999999893],[33.11416666600013,-10.1575],[33.1025,-10.191666666999879],[33.095,-10.216666666999913],[33.0833333330001,-10.250833332999889],[33.0833333330001,-10.266666666999981],[33.07916666700015,-10.283333332999973],[33.130833333000055,-10.36333333399989],[33.18083333300012,-10.449166666999815],[33.13416666600011,-10.608333332999962],[33.15,-10.694166665999944],[33.215833333000035,-10.682499999999834],[33.25083333300012,-10.7525],[33.2583333340001,-10.90083333299998],[33.294166667000184,-11.0375],[33.285833333000085,-11.181666666999945],[33.23916666700012,-11.31],[33.1075,-11.501666666999938],[33.075833333,-11.640833332999932],[32.96666666700014,-11.952499999999873],[32.95833333300004,-12.157499999999857],[32.9775,-12.305833332999896],[32.95916666600016,-12.39],[32.8375,-12.552499999999895],[32.720833333000144,-12.739999999999895],[32.646666666000044,-12.915],[32.650833333000094,-12.95916666599993],[32.8025,-13.181666665999842],[32.799166667000065,-13.386666666999872],[32.787500000000136,-13.405833332999975],[32.7325,-13.49166666699989],[32.66416666600014,-13.549166666999952],[32.56916666600017,-13.530833332999975],[32.52166666700009,-13.619166666999888],[32.38666666600017,-13.608333332999962],[32.269166667000036,-13.622499999999889],[32.15583333300003,-13.788333332999969],[31.98833333400006,-13.964166666999972],[31.951666666000108,-14.002499999999884],[31.86,-14.084166666999977],[31.86,-14.085],[31.859166667000125,-14.088333333999913],[31.766666666000162,-14.163333333999901],[31.63750000000016,-14.302499999999895],[31.611666667000065,-14.386666666999872],[31.645833333000155,-14.524166666999974],[31.474166667000134,-14.61999999999989],[31.2725,-14.6575],[31.54941906000016,-14.702431594999894],[31.725453913000024,-14.860304784999926],[31.730935131000024,-15.057922184999939],[31.787627064000162,-15.155933934999894],[31.92784443300019,-15.04469065099994],[32.025799536000136,-14.99851130799982],[31.915902640000184,-14.909731457999897],[31.98899085100004,-14.786028786999964],[31.9830199540001,-14.718549189999976],[31.882075456000166,-14.663108182999906],[31.871132760000137,-14.607276141999876],[31.97704116200009,-14.515308489999882],[32.184885264000116,-14.422147893999977],[32.38676636600002,-14.397268804999953],[32.454886726000154,-14.353094239999962],[32.448333333000164,-14.1425],[32.47083333300003,-13.98],[32.591666667000084,-13.776666666999972],[32.69416666600006,-13.685],[32.764166667000154,-13.67],[32.88500000000016,-13.826666666999927],[32.9025,-13.98],[32.87333333400011,-14.122499999999889],[32.99190025200011,-14.113366581999855],[33.03267769100012,-14.167193844999929],[32.94268378300012,-14.303345982999929],[32.959095853000065,-14.35315376899996],[33.11175259000004,-14.38249297699997],[33.115737136000064,-14.495359926999924],[33.233093704000055,-14.600608719999855],[33.38426166500017,-14.680958580999913],[33.52299420600002,-14.68860650199997],[33.66768974700017,-14.62797291499993],[33.77906752300004,-14.529981007999936],[33.814166667,-14.541666666999959],[33.91333333300008,-14.474166665999917],[33.86833333400011,-14.376666666999881],[33.85666666600008,-14.28416666599992],[33.64500000000015,-14.2725],[33.62583333300017,-14.163333332999912],[33.382500000000164,-14.064166665999892],[33.375000000000114,-13.995],[33.28083333300009,-13.878333332999944],[33.281666666000035,-13.7775],[33.5225,-13.643333332999873],[33.5825,-13.588333332999923],[33.57833333300016,-13.510833333999926],[33.750000000000114,-13.3525],[33.765,-13.246666665999953],[33.83166666600016,-13.133333332999939],[33.82661825000008,-12.968147011999974],[33.878441987000144,-12.902685448999875],[33.759792904000165,-12.87131844999982],[33.70251403700013,-12.717211020999969],[33.70933294900016,-12.41990642299993],[33.73797238300011,-12.377629162999881],[33.82661825000008,-12.403541031999964],[33.89753494300015,-12.381720510999855],[33.91390033300013,-12.257616297999903],[34.005,-12.208333332999928],[34.11166666700012,-11.973333332999971],[34.191666667000106,-11.92],[34.184166667000056,-11.823333332999937],[34.30250000000012,-11.7275],[34.328333333000046,-11.667499999999848],[34.276666667000086,-11.515],[34.27583333300004,-11.383333332999825],[34.22166666700002,-11.276666666999915],[34.2125,-11.186666665999951],[34.24416666700006,-11.13],[34.25000000000017,-10.979166666999902],[34.17916666700006,-10.561666666999884],[34.237500000000125,-10.38083333399993],[34.14916666600004,-10.283333333999906],[34.075,-10.236666665999962],[33.99250000000018,-10.10249999999985],[33.943333333000055,-9.97],[33.89583333300004,-9.741666666999947],[33.943333333000055,-9.706666666999922],[33.94916666600017,-9.5725],[34.036666667000134,-9.49166666699989],[34.30916666600018,-9.743333332999896],[34.343333332999975,-9.805833332999953],[34.501666666000176,-9.975833332999969],[34.57083333300011,-10.294999999999845],[34.541666667000186,-10.415833333999956],[34.54750000000013,-10.509166666999931],[34.59416666700014,-10.58083333399992],[34.65000000000015,-10.748333332999948],[34.64916666700003,-10.9075],[34.60166666700002,-11.001666666999938],[34.62833333300006,-11.104166666999959],[34.73083333300008,-11.189999999999884],[34.78333333300003,-11.326666666999813],[34.8975,-11.368333332999953],[35.109338605,-11.165577663999954],[35.363940932,-10.859816924999905],[35.43889395400004,-10.582609716999968],[35.45436045100013,-10.45411882299993],[35.51027778400015,-10.210224069999924],[35.503139401000055,-9.927068209999959],[35.579282154000055,-9.604651243999967],[35.632820026000104,-9.447606817999883],[35.66137355800004,-9.303649426999925],[35.90553630300013,-9.15981226799994],[35.89205646300013,-8.94363974099997],[35.82984047700006,-8.98555178499987],[35.76924735600011,-8.87454065299994],[35.848863836000135,-8.80540072499997],[35.86086581400019,-8.660743657999888],[35.94160669500013,-8.573860283999977],[35.87544519700009,-8.451231365999888],[35.8625,-8.454166665999935],[35.74750000000017,-8.559999999999889],[35.66166666700008,-8.668333332999907],[35.47333333300003,-8.7225],[35.42000000000013,-8.671666666999954],[35.328900347,-8.693333333999874],[35.32833333299999,-8.693763025999885],[35.32780069500018,-8.694166666999877],[35.2049929370001,-8.757563125999923],[35.11742877200015,-8.767080969999881],[34.99179323100003,-8.826091602999952],[34.944204011000124,-8.797538070999906],[34.96895040600015,-8.62621687799998],[35.08887524,-8.519617024999889],[35.033671745000106,-8.452992116999894],[35.07745382700011,-8.401595758999974],[35.18976438700008,-8.39017434699997],[35.235450038000124,-8.306417318999877],[35.138333333000105,-8.268333332999873],[34.9558333330001,-8.321666666999874],[34.899166667000145,-8.270833333999974],[34.7558333340001,-8.316666666999879],[34.683333333000064,-8.363333332999957],[34.721666667000136,-8.44499999999988],[34.586666666000156,-8.493333332999896],[34.7975,-8.534166666999909],[34.780833333000146,-8.626666666999881],[34.84250000000014,-8.6625],[34.685,-8.83083333299993],[34.5766666670001,-8.8725],[34.48000000000019,-8.825833333999924],[34.428333333000126,-8.832499999999868],[34.301666667,-8.77916666699997],[34.22833333300008,-8.826666666999927],[34.199166666999986,-8.89],[34.12833333400005,-8.855],[33.998333334000165,-8.875],[33.7558333340001,-8.793333333999897],[33.70583333300016,-8.814166665999892],[33.607500000000186,-8.769166666999979],[33.6625,-8.604166666999959],[33.68166666700006,-8.4875],[33.54916666600019,-8.442499999999882],[33.383495725000046,-8.34841271599987],[33.353433229000075,-8.154509620999875],[33.263245743000084,-7.954594025999938],[33.13548013800005,-7.841859668999916],[32.80028331400018,-7.611881578999942],[32.70408332900013,-7.535222215999966],[32.45757086700007,-7.404450360999931],[32.27418964499998,-7.366872240999953],[32.14943028900012,-7.213553514999944],[32.13439904100005,-6.997103547999927],[32.114858419000086,-6.923450433999903],[32.03669593100011,-6.8723441919999],[31.954024069000184,-6.768628582999838],[31.910433450000085,-6.652887975999931],[31.866842832000145,-6.421406760999957],[31.859327208000025,-6.302659903999881],[31.87886783000016,-6.185416171999975],[32.000620937000065,-5.854728722999937],[32.11335529399997,-5.454897533999883],[32.17348028500015,-5.041538221999929],[32.16596466100003,-4.61314766299995],[32.10133029600013,-4.135153985999921],[32.0772803000001,-3.742838420999931],[32.062249052000084,-3.663172807999899],[32.062249052000084,-3.367057228999954],[32.08479592400005,-3.26033536999995],[32.08479592400005,-3.132569764999914],[32.046666667000125,-2.95499999999987],[31.964166667000086,-2.973333332999971],[31.9075,-2.926666666999949],[31.836666665999985,-2.9325],[31.794166666000024,-3.035833332999914],[31.726666666000085,-3.045833332999962],[31.707500000000152,-2.889166666999927],[31.724166667000077,-2.749166666999884],[31.710833332999982,-2.6625],[31.4375,-2.663333332999969],[31.63750000000016,-2.489166666999949],[31.656666666000092,-2.418333333999954],[31.605833333000078,-2.389166666999927],[31.600000000000136,-2.2325],[31.508333333000053,-2.065833332999944],[31.3825,-2.088333333999969],[31.39583333300004,-2.1775],[31.338333333000094,-2.284166666999909],[31.405833332999975,-2.360833333999892],[31.325,-2.398333332999869],[31.365833334000172,-2.503333332999887],[31.34416666700008,-2.6075],[31.2975,-2.65],[31.210833333000096,-2.9258333329999],[31.10166666700019,-3.059999999999832],[31.05666666600007,-3.0325],[31.134166666000112,-2.905],[31.060833334000165,-2.83],[31.000000000000114,-2.92],[30.8975,-3],[30.840000000000146,-2.9775],[30.745000000000175,-2.997499999999889],[30.644166666000046,-2.9475],[30.613333333000185,-3.040833332999966],[30.535833333000085,-2.99916666699994],[30.641666666000106,-2.939166666999881],[30.57333333300005,-2.888333333999981],[30.42416666600019,-2.994999999999891],[30.415,-3.04833333299996],[30.24166666700006,-3.260833332999937],[30.130833334000044,-3.33083333299993],[29.989166667000063,-3.394166666999979],[30.045833334000065,-3.444999999999823],[30.079166666000106,-3.52916666699997],[30.076666667000097,-3.6275],[30.13583333400004,-3.690833332999887],[30.080833333000044,-3.815],[30.020833334000145,-3.875833332999889],[30.003333334000047,-3.942499999999882],[29.92666666700012,-3.944999999999879],[29.915000000000134,-4.05833333399994],[29.833333334000088,-4.078333332999875],[29.75000000000017,-4.139999999999873],[29.74583333300012,-4.188333333999879],[29.670833333000132,-4.195833332999939],[29.645833334000088,-4.098333333999904],[29.560000000000116,-4.125833333999935],[29.581666667000036,-4.016666665999878],[29.571666667000045,-3.909166666999965],[29.589166667000086,-3.829166666999868],[29.459166667000034,-3.82],[29.331666667000093,-3.763333333999981],[29.37166666700017,-3.884166666999931],[29.440833333000114,-3.985833332999903],[29.458333332999985,-4.063333332999832],[29.595833333000144,-4.3475],[29.662500000000136,-4.410833333999904],[29.636666667000043,-4.596666666999965],[29.59166666699997,-4.72333333399996],[29.59083333400008,-4.87],[29.82,-5.137499999999875],[29.78166666700008,-5.202499999999873],[29.79833333300013,-5.259166665999828],[29.75000000000017,-5.4225],[29.770000000000152,-5.508333332999939],[29.829166666000162,-5.559166666999943],[29.928333333000182,-5.770833332999928],[29.94416666700016,-5.869166666999888],[29.904166667000084,-5.935],[29.72083333300003,-6.0525],[29.715833333000035,-6.294166665999967],[29.858333334000065,-6.453333333999922],[29.967500000000143,-6.5275],[30.13,-6.484999999999843],[30.35750000000013,-6.7075],[30.405,-6.823333333999869],[30.483333333000132,-6.92],[30.555,-6.961666666999918],[30.56250000000017,-7.033333333999906],[30.525000000000148,-7.2175],[30.6025,-7.380833332999828],[30.59416666700008,-7.475],[30.639166667000154,-7.605],[30.739166667000063,-7.7025],[30.8,-7.868333332999953],[30.85666666700007,-7.9125],[30.91666666700013,-8.030833333999908],[30.921666667000068,-8.11666666699989],[30.98000000000019,-8.155833332999975],[30.953333333000103,-8.220833332999973],[30.981666667000127,-8.305],[31.04333333300002,-8.313333332999946],[31.144166667000036,-8.42],[31.136666666000053,-8.490833332999898],[31.2,-8.6125],[31.199166667000043,-8.73916666699995],[31.029166667000084,-8.80833333299995],[30.84916666700019,-8.628333332999944],[30.794166666000024,-8.61083333299996],[30.65833333300003,-8.714166666999859],[30.51666666600005,-8.65],[30.533333332999973,-8.594166666999968],[30.541666666000026,-8.571666666999931],[30.54416666600008,-8.5675],[30.575,-8.541666666999902],[30.575,-8.5375],[30.575,-8.529166666999913],[30.575,-8.524166665999928],[30.56666666700005,-8.51416666599988],[30.56166666600012,-8.51416666599988],[30.49166666600013,-8.5275],[30.483333333000132,-8.523333333999915],[30.483333333000132,-8.5225],[30.47750000000019,-8.516666665999935],[30.475833333000026,-8.515833332999932],[30.45000000000016,-8.475833332999912],[30.465833334000138,-8.408333332999916],[30.475,-8.369166665999956],[30.566666666000117,-8.2925],[30.5741666670001,-8.26333333399998],[30.573307439000075,-8.253333333999933],[30.296666667000125,-8.289166665999971],[30.22666666700013,-8.349166666999906],[30.154166666000094,-8.48],[30.191666666000117,-8.550833333999947],[30.025833333000037,-8.524166666999918],[29.965,-8.5925],[30.11,-8.6025],[30.185,-8.639999999999873],[30.1,-8.719166665999921],[30.044166666000024,-8.681666665999956],[29.950000000000102,-8.7025],[29.812500000000114,-8.858333332999848],[29.808333333000064,-8.931666666999945],[29.554166667000175,-8.958333332999871],[29.45000000000016,-8.937499999999886],[29.50916666600017,-8.8525],[29.481666665999967,-8.750833333999935],[29.576666666000108,-8.536666665999917],[29.626666666000176,-8.4875],[29.725,-8.495833333999883],[29.78166666700008,-8.425],[29.79543867700005,-8.348333332999971],[29.918649453000057,-8.29679899599995],[30.128639597000188,-8.29591621399993],[30.39501949700019,-8.25772390499992],[30.46750049600007,-8.07236498899988],[30.54075648600019,-8.097438445999956],[30.52749648300005,-8.059406230999969],[30.272777486000166,-7.843865422999954],[30.268753502000095,-7.771545859999947],[30.156610511000054,-7.792237425999929],[30.096279583000182,-7.841092856999978],[30.04492120000009,-7.993446727999981],[29.964988093000045,-8.002325399999961],[29.89952060800016,-7.945153346999973],[29.69888672100012,-8.042403436999962],[29.580460608000124,-8.026434560999917],[29.58148738,-7.871846079999955],[29.426855610000132,-7.846470609999869],[29.344385333000105,-7.882947847999958],[29.2412352770001,-7.994644103999917],[29.155655276000175,-7.995551495999962],[29.013546613000017,-7.83021126899996],[28.851104645000134,-7.797147505999931],[28.73833140700009,-7.746610432999944],[28.672439678000103,-7.671867853999913],[28.65861946300015,-7.507474601999888],[28.685983265000118,-7.382552898999904],[28.741826571000104,-7.266095908999944],[28.81638855800003,-7.173680384999955],[28.886975919000065,-7.003094262999923],[28.90238409800014,-6.745807598999875],[28.879880526000136,-6.640526712999872],[28.866790508000122,-6.434293840999885],[28.800210537,-6.225489064999977],[28.845220519,-6.139527283999882],[28.91251664100014,-6.104500365999968],[29.193054581000126,-6.085104256999898],[29.181663574000083,-5.919282383999871],[29.324996466000187,-5.82262344999998],[29.350555571000086,-5.721242151999945],[29.18428685700013,-5.604252161999966],[29.112050691000036,-5.519682991999844],[29.057169473000044,-5.523603770999955],[29.01481506700003,-5.611881773999926],[28.85681885600019,-5.402965097999925],[29.038133785000127,-5.385832978999929],[29.064480532000175,-5.343497219999904],[28.955245354000112,-5.038695834999942],[28.87948547200017,-4.895985359999884],[28.668062546000158,-4.681038717999911],[28.580413816000032,-4.537378493999938],[28.372592491000034,-4.548929390999945],[28.140451491000192,-4.587892332999957],[28.019901451000067,-4.629340508999974],[27.852479473000074,-4.759696872999939],[27.686927497000056,-4.954997395999897],[27.441219549000152,-5.317711515999974],[27.26100544500008,-5.568894020999892],[26.95967652900009,-5.957470502999968],[26.80432549699998,-6.12357551599996],[26.624170570000103,-6.219814516999918],[26.320474604000026,-6.279853250999963],[26.061477483000033,-6.395669527999928],[25.729276509000044,-6.584140979999916],[25.45699859800004,-6.687111486999981],[25.113290444000086,-6.847905558999969],[24.99977349100004,-6.923636221999914],[24.87884945000019,-7.040001680999922],[24.396751548000054,-7.580638626999928],[24.124204578000047,-7.868302693999965],[24.009826468000085,-8.038415430999919],[23.965478489000077,-8.258806845999914],[23.85087758800006,-8.445231269999908],[23.453868576000104,-8.874845716999971],[23.321107444000063,-8.81529799499998],[23.149772458000143,-8.777226552999934],[22.991126501000167,-8.789916753999933],[22.788063497000167,-8.764535512999885],[22.69352954300001,-8.79917624199993],[22.635765489000107,-8.910478193999893],[22.591342576000045,-9.056420873999969],[22.527885534000177,-9.170635704999881],[22.37558752600006,-9.3102327819999],[22.280401460000178,-9.64653502199991],[22.051952521000032,-9.995528300999922],[21.956766455000093,-10.065326587999948],[21.810813549000102,-10.116088902999934],[21.602697598000077,-10.166470259999926],[21.63581047399998,-10.450725322999972],[21.61035977000006,-11.06116281099986],[21.685723940000173,-11.085022153999944],[21.76428625400007,-11.027999955999974],[21.94181670300003,-11.133726975999934],[22.00146783000008,-11.05207495299993],[22.084418001000188,-11.07437994299994],[22.120359129000178,-11.173602060999883],[22.288088086000073,-11.210284153999908],[22.50024361100003,-11.065281302999836],[22.45347952300017,-10.952601952999885],[22.537418538000054,-10.902720096999929],[22.650900245000173,-11.042412144999957],[22.73654472400011,-11.081358971999975],[22.901609781000047,-11.079907],[22.937611610000147,-11.15769342699997],[22.82922512199997,-11.294917325999904],[22.84983921500003,-11.423562912999898],[22.761429096000086,-11.424284384999908],[22.561058556999967,-11.505916903999946],[22.544748773000038,-11.565483473999961],[22.598827126000117,-11.611616365999964],[22.686387508000166,-11.571171534999905],[22.809095077,-11.563330161999943],[23.055440973000145,-11.51426654599993],[23.132965653000156,-11.583439191999958],[23.061641583000153,-11.636626343999922],[23.08322882200008,-11.708169173999977],[23.04527087200006,-11.774914407999972],[22.746990246000166,-11.994550267999955],[22.751642908,-12.12864968699995],[22.58090659800007,-12.278159753999887],[22.59791861500014,-12.39524643899989],[22.52876280700019,-12.510996740999872],[22.67078055400009,-12.755706956999916],[22.705429498000115,-12.860009850999916],[22.70782269800003,-13.000529884999878],[22.707521146000147,-13.00166671999989],[22.685000000000116,-13.001666666999881],[22.703333334000035,-13.09166666599998],[22.7725,-13.075],[22.88416666600017,-13.126666665999949],[22.972473829000137,-13.059999999999889],[23.016231093000044,-12.999166666999884],[22.73245716600013,-13.001666666999881],[22.76030146000005,-12.955233467999903],[22.929841545000045,-12.800643009999874],[23.01971046699998,-12.757644852999874],[23.236531707999973,-12.726116702999889],[23.3506183610001,-12.50238342699987],[23.551148818000115,-12.334013539999887],[23.56143865200005,-12.261101388999975],[23.450338354000053,-12.174592392999841],[23.435785515000077,-12.077198622999958],[23.462163885000166,-12.006934615999967],[23.53971955700007,-11.94702734699996],[23.620226525000078,-11.840733243999978],[23.72851421700011,-11.785237250999842],[23.90423328200012,-11.661962763999895],[23.971666667000136,-11.654166666999913],[24.023333334000142,-11.8125],[24.070000000000107,-11.806666666999945],[24.039166667000075,-11.77583333299998],[24.11666666600007,-11.6225],[24.038333333000026,-11.538333333999901],[24.035,-11.456666666999865],[24.1325,-11.3175],[24.23,-11.373333332999948],[24.33,-11.335833333999915],[24.285833333000085,-11.265833332999932],[24.285833333000085,-11.135],[24.193333333,-11.02916666699997],[24.320833333000166,-11.0525],[24.38000000000011,-11.08833333299998],[24.39833333399997,-11.26833333299993],[24.35,-11.36666666699989],[24.475,-11.46],[24.58500000000015,-11.45583333399992],[24.66583333300008,-11.3575],[24.741666667000118,-11.304166665999958],[24.985833333000016,-11.25],[24.959166667000034,-11.389999999999873],[24.77,-11.435833332999948],[24.50166666700011,-11.667499999999848],[24.439166667,-11.610833332999903],[24.34,-11.64916666699986],[24.246666667,-11.7325],[24.25666666700016,-11.749166665999894],[24.21000000000015,-11.81666666599989],[24.177500000000123,-12.085833333999972],[24.070000000000107,-12.09166666699997],[24.15416666700014,-12.1175],[24.243333333000066,-12.258333332999939],[24.15833333400019,-12.5441666669999],[24.325,-12.539166665999915],[24.4525,-12.559999999999889],[24.53916666700013,-12.5975],[24.632500000000107,-12.69416666699982],[24.66416666700019,-12.640833332999932],[24.56333333300006,-12.5975],[24.609166667000125,-12.525],[24.73000000000019,-12.440833332999944],[24.848333333000085,-12.4975],[24.80666666600007,-12.55166666599996],[24.8125,-12.634166666999874],[24.876666666000062,-12.775],[24.9725,-12.856666666999956],[25.009166667000102,-12.942499999999882],[24.89666666700009,-13.000833332999946],[24.7525,-13.01],[24.68333333300012,-13.1025],[24.565,-13.149166666999918],[24.49666666700017,-13.149166665999928],[24.248333333000062,-13.30833333299995],[24.204166667000038,-13.127499999999884],[24.273333334000085,-13.070833332999882],[24.280000000000143,-12.896666666999977],[24.22750000000019,-12.859166666999954],[24.1475,-12.8825],[24.129166666000117,-12.951666666999927],[24.039166666000142,-12.923333333999949],[24.0275,-13.01749999999987],[24.071666667000045,-13.11083333299996],[24.167500000000132,-13.190833333999876],[24.215000000000146,-13.294166666999843],[24.169166667000127,-13.346666666999965],[24.10750000000013,-13.315833332999944],[24.0675,-13.22166666599992],[24.016666667000038,-13.248333332999835],[24.0525,-13.331666665999933],[24.0425,-13.396666666999977],[23.93083333300018,-13.40666666699991],[23.904166666000094,-13.360833333999835],[23.93916666700011,-13.250833332999889],[23.872500000000116,-13.251666666999938],[23.86,-13.375],[23.93416666600001,-13.5625],[23.79833333400012,-13.65],[23.685833333000062,-13.65],[23.590000000000146,-13.6875],[23.53166666599998,-13.7625],[23.44083333400016,-13.7475],[23.332500000000152,-13.8025],[23.29500000000013,-13.70583333299993],[23.343333333000032,-13.653333332999864],[23.23416666700018,-13.535],[23.213333334000083,-13.3725],[23.30666666700006,-13.4191666669999],[23.35500000000019,-13.346666666999965],[23.503333333000057,-13.254166665999946],[23.596666667000136,-13.23916666599996],[23.72583333300014,-13.15],[23.72583333400007,-13.081666666999979],[23.655,-13.040833332999966],[23.601719855000056,-12.95025725399995],[23.59489268800013,-12.839693476999969],[23.370833334000167,-13.08333333399986],[23.29416666600008,-13.029166666999913],[23.405396899000095,-12.843729828999926],[23.175,-13.01833333399992],[23.23583333400012,-13.060833333999824],[23.229166666000083,-13.124166666999884],[23.15666666600015,-13.2175],[23.066952398000012,-13.179166665999844],[22.96916666700008,-13.2775],[22.975833333000082,-13.293333333999897],[23.05416666700006,-13.314999999999827],[23.06833333300017,-13.46],[23.18250000000012,-13.702499999999873],[23.193333334000158,-13.725],[23.239166666000074,-13.79],[23.216666667000084,-13.843333332999975],[23.240833333000182,-13.998333332999948],[23.228333333000137,-14.093333332999975],[23.2975,-14.200833332999935],[23.23916666700012,-14.2575],[23.239166666000074,-14.40083333299998],[23.27333333300004,-14.382499999999823],[23.28083333300009,-14.266666665999878],[23.393333334000033,-14.253333333999876],[23.456666667000093,-14.1725],[23.52833333400008,-14.1775],[23.55333333300007,-14.280833332999975],[23.605000000000132,-14.26833333299993],[23.660833334000188,-14.27],[23.6575,-14.23],[23.71916666700008,-14.1675],[23.72916666600014,-14.164166665999858],[23.8925,-14.045833332999905],[24.050000000000125,-14.04166666599997],[24.09916666600003,-13.980833332999964],[24.22750000000019,-13.945833333999872],[24.35583333400018,-13.9775],[24.4175,-14.020833332999871],[24.612500000000182,-14.07666666599988],[24.6575,-14.228333332999966],[24.72666666600003,-14.21666666599998],[24.872500000000116,-14.3425],[24.856666667000184,-14.420833332999962],[24.918333333000135,-14.530833332999862],[24.875833333000116,-14.590833332999978],[25.04583333400018,-14.651666666999972],[25.201666666,-14.887499999999875],[25.2125,-14.970833332999973],[25.08,-15.2075],[25.106666667000127,-15.241666666999834],[25.185833334,-15.2525],[25.253333333000057,-15.3525],[25.214166666000096,-15.389166666999927],[25.35583333400018,-15.541666665999912],[25.682500000000175,-15.770833333999974]],[[23.311666667000054,-13.9475],[23.419166665999967,-14.023333333999972],[23.40333333300009,-14.09416666699991],[23.299166666000076,-14.114999999999895],[23.311666667000054,-13.9475]],[[25.0275,-12.8525],[25.025833334000026,-12.68666666699994],[25.113333334000117,-12.6675],[25.133333334000042,-12.758333333999929],[25.04916666700018,-12.801666666999836],[25.0275,-12.8525]],[[24.650833333000094,-12.439166666999881],[24.604166666000083,-12.45499999999987],[24.49000000000018,-12.3875],[24.5825,-12.2175],[24.6575,-12.195],[24.671666667000068,-12.331666666999865],[24.650833333000094,-12.439166666999881]],[[29.875,-10.87499999999983],[29.906666667000138,-10.833333333999974],[30.0075,-10.839166666999972],[30.11416666700012,-10.809515246999922],[30.16000000000014,-10.877499999999884],[30.11416666700012,-10.9525],[30.150000000000148,-11.041666666999959],[30.26333333399998,-11.039379372999974],[30.3825,-11.095],[30.48166666700007,-11.1075],[30.570833333000166,-11.197499999999877],[30.688333333000173,-11.177499999999895],[30.736666666000076,-11.21666666699997],[30.729166667000072,-11.345833333999906],[30.808333333000064,-11.351666666999904],[30.791666667000015,-11.42583333399989],[30.6875,-11.51833333299993],[30.7525,-11.695833332999882],[30.664166667000075,-11.7],[30.655,-11.808333333999883],[30.568333334000158,-11.794166666999956],[30.543333334000067,-11.928333332999955],[30.5775000000001,-12.071666666999931],[30.495,-12.099166666999963],[30.481666666000137,-12.188333332999889],[30.36833333300018,-12.24166666699989],[30.19833333300005,-12.189166666999938],[30.16000000000014,-12.229166666999902],[30.19,-12.305],[30.105,-12.350833333999958],[29.96,-12.253333332999944],[29.878333333000114,-12.305833332999896],[29.816666667000163,-12.2775],[29.787050555000064,-12.403590747999829],[29.67826049300004,-12.361833781999962],[29.529729480000185,-12.378451407999819],[29.46149056200005,-12.306056574999957],[29.57916666600005,-12.155833332999975],[29.562414257000114,-12.11333333399989],[29.62833333300017,-11.944166666999877],[29.595,-11.889166665999937],[29.596666667000136,-11.669166665999967],[29.66500000000019,-11.625],[29.737500000000125,-11.501666666999938],[29.705833333000044,-11.44166666599989],[29.605833333000135,-11.468333333999965],[29.54166666700013,-11.3625],[29.575,-11.241666666999834],[29.525,-11.208333332999871],[29.616666667000118,-11.1375],[29.65,-11.054166665999901],[29.716666667000084,-11.05],[29.804166667000118,-10.91666666599997],[29.875,-10.87499999999983]],[[24.626666667,-12.138333332999935],[24.608333333000132,-11.8975],[24.65,-11.921666666999954],[24.661666667000134,-12.1075],[24.626666667,-12.138333332999935]],[[25.10833333300019,-11.903333333999967],[25.10083333300014,-11.934166666999886],[24.943333333000055,-12.0225],[24.86916666700006,-12.0875],[24.835,-12.033333333999906],[25.000833334000106,-11.975833332999969],[25.10833333300019,-11.903333333999967]],[[31.872500000000116,-10.583333333999917],[31.80750000000012,-10.518333333999976],[31.607020897000098,-10.56916666799998],[31.55670444200007,-10.480833332999964],[31.5775000000001,-10.3975],[31.653333334000138,-10.384166665999942],[31.744166666000126,-10.25666666699982],[31.844166666999968,-10.2275],[31.84583333300003,-10.185833332999948],[31.9825,-10.125833332999889],[31.961666667000145,-10.061666666999827],[31.87416666600018,-10.000833333999935],[31.947500000000105,-9.938333332999889],[31.918333333000135,-9.82583333399998],[31.940833334000104,-9.7325],[31.99083333300007,-9.66666666599997],[32.085,-9.624999999999886],[32.039166667000075,-9.54333333299985],[32.234166667000125,-9.415833332999966],[32.208333333000155,-9.349166666999963],[32.254166666000174,-9.258333332999882],[32.413333333000026,-9.276666666999972],[32.52333333300015,-9.359166666999954],[32.629166667000106,-9.601666666999904],[32.70750000000015,-9.631666666999934],[32.65833333300003,-9.758333332999882],[32.738333333000185,-9.758333332999882],[32.67583333300007,-9.928333332999841],[32.5775000000001,-10.0725],[32.523333334000085,-9.9725],[32.55250000000012,-9.875833332999946],[32.483333333000076,-9.793333332999964],[32.406666667000025,-9.81166666699994],[32.30500000000012,-9.876666666999881],[32.19166666700016,-9.88666666599994],[32.18583333300012,-9.985],[32.12500000000017,-10.045],[32.17916666700012,-10.1325],[32.141666667000095,-10.16583333299991],[32.12166666600007,-10.273333332999925],[32.020833333000155,-10.504166665999946],[31.9675,-10.555],[31.872500000000116,-10.583333333999917]],[[28.45636587200005,-9.525917618999927],[28.352811213000052,-9.499637375999953],[28.374205570000186,-9.430878111999903],[28.328703862000168,-9.372732837999934],[28.36036719500015,-9.200435568999978],[28.33594647400008,-9.1473998969999],[28.6712198460001,-8.747061500999962],[28.725358396000104,-8.713933247999819],[28.887430618999986,-8.47624498499988],[29.0125,-8.541666666999902],[29.150000000000148,-8.645833333999974],[29.108333333000132,-8.804166665999901],[29.016666667000095,-9],[28.945833333000053,-9.025],[28.725,-9.312499999999886],[28.729166666000026,-9.493333332999953],[28.70000000000016,-9.536666666999963],[28.741666667,-9.645],[28.741666667,-9.856666665999967],[28.708333333000155,-9.975],[28.640833333000046,-10.071666666999874],[28.6366666670001,-10.317499999999882],[28.577500000000157,-10.225],[28.58450595500011,-10.04272575099992],[28.463125595000065,-10.02276328399995],[28.417398457000047,-9.961799689999964],[28.371671487000015,-9.66205679799998],[28.33793248300003,-9.568268497999952],[28.37172404200004,-9.52015989399996],[28.45636587200005,-9.525917618999927]],[[33.56000000000017,-9.4925],[33.455,-9.564166665999892],[33.34833333300003,-9.486666666999895],[33.31916666600017,-9.333333332999871],[33.26083333300011,-9.309166665999953],[33.25916666600017,-9.230833332999964],[33.156666667000025,-9.202499999999816],[33.123333333000176,-9.141666665999935],[33.21916666700014,-9.0425],[33.275833333000094,-8.953333333999979],[33.42666666700012,-8.986666666999952],[33.5150000000001,-8.9525],[33.44000000000011,-8.859166666999954],[33.56500000000017,-8.875],[33.60333333300014,-8.9925],[33.42833333300018,-9.068333332999885],[33.5150000000001,-9.160833332999914],[33.535,-9.274166666999974],[33.5083333340001,-9.315833333999933],[33.55750000000012,-9.395833333999917],[33.56000000000017,-9.4925]],[[34.14916666600004,-9.509166665999942],[34.006666667,-9.405833332999975],[33.9575,-9.263333332999878],[33.895833334000145,-9.235],[33.81166666700011,-9.115],[33.750000000000114,-9.195833332999939],[33.68,-9.195],[33.60583333300019,-9.133333332999939],[33.685833333000176,-9.06083333399988],[33.7225,-8.9191666669999],[33.86083333300013,-8.950833332999878],[33.982500000000186,-8.939166666999938],[34.125000000000114,-9.109166665999908],[34.2075,-9.117499999999836],[34.30333333300007,-9.054999999999893],[34.375,-9.095],[34.46083333300015,-9.194166666999877],[34.545000000000186,-9.18333333299995],[34.57500000000016,-9.301666666999893],[34.62583333300012,-9.3],[34.7325,-9.1775],[34.8075,-9.034166666999909],[34.810000000000116,-8.965833332999864],[34.934166667000056,-8.95916666599993],[34.995,-8.984166665999851],[35.10083333300008,-8.954166666999981],[35.13416666700016,-9.063333332999889],[35.278333334000024,-9.109166666999897],[35.335833333000096,-9.21333333299998],[35.33666666600004,-9.2125],[35.335833333000096,-9.21333333299998],[35.30666666600007,-9.455833333999976],[35.213333333000094,-9.461666666999974],[35.22,-9.5508333329999],[35.31333333300006,-9.566666666999936],[35.29750000000013,-9.644166666999979],[35.35,-9.650833332999866],[35.34583333300003,-9.68333333299995],[35.326666667000154,-9.82583333399998],[35.24166666600007,-9.8575],[35.11583333400017,-9.778333332999921],[34.97083333300003,-9.889999999999873],[34.950833333000105,-9.795],[34.82250000000016,-9.821666665999942],[34.70833333300004,-9.785833332999971],[34.615,-10.044166665999967],[34.565833333000114,-10.03916666699996],[34.49166666700012,-9.901666665999926],[34.36166666600013,-9.724166666999963],[34.25250000000011,-9.640833332999875],[34.237500000000125,-9.590833332999978],[34.21666666600015,-9.519166666999922],[34.14916666600004,-9.509166665999942]],[[33.57666666600005,-10.01333333299982],[33.636666667000156,-10.014166665999937],[33.694166666,-10.090833332999978],[33.61333333300007,-10.145],[33.57666666600005,-10.01333333299982]],[[33.481666667000184,-10.151666665999869],[33.38750000000016,-10.125833332999889],[33.44333333300011,-10.048333332999903],[33.481666667000184,-10.151666665999869]],[[33.79000000000019,-10.345833332999916],[33.84583333299997,-10.43583333399988],[33.959166667000034,-10.46],[33.96000000000015,-10.6025],[33.995,-10.681666666999888],[33.98,-10.76],[33.915,-10.740833332999898],[33.83,-10.650833332999923],[33.76166666700004,-10.687499999999886],[33.70083333300016,-10.665833333999899],[33.7116666660001,-10.570833332999939],[33.79000000000019,-10.345833332999916]],[[34.10833333300019,-10.574999999999818],[34.1275,-10.715833333999967],[34.05416666600007,-10.697499999999877],[34.10833333300019,-10.574999999999818]],[[34.173333333000016,-10.790833332999966],[34.21,-10.834166665999874],[34.225833333000026,-10.990833332999955],[34.21416666700014,-11.064999999999827],[34.15333333300009,-11.163333333999958],[34.054166667000175,-11.168333332999964],[34.0375,-11.095],[34.0925,-10.9725],[34.1175,-10.8325],[34.173333333000016,-10.790833332999966]],[[34.1225,-11.299999999999898],[34.1400000000001,-11.434166665999896],[34.04500000000013,-11.44],[34.1225,-11.299999999999898]],[[34.03166666700014,-11.49499999999989],[33.96583333300009,-11.570833332999939],[33.9591666660001,-11.668333333999954],[33.923333334000176,-11.724166666999963],[33.911666666000144,-11.86416666599996],[33.729166667000015,-12.14249999999987],[33.68750000000017,-12.11416666699995],[33.8216666670001,-11.961666666999918],[33.705,-11.895],[33.7975,-11.798333333999835],[33.74500000000012,-11.655],[33.90166666600015,-11.5],[34.0125000000001,-11.449166666999872],[34.03166666700014,-11.49499999999989]],[[34.82000000000011,-10.684999999999889],[34.87916666600012,-10.71333333299998],[34.9025,-10.824166666999929],[34.968333333000146,-10.970833333999963],[34.99583333300018,-11.110833333999949],[34.975,-11.220833332999916],[34.87583333300006,-11.2],[34.845,-11.053333333999888],[34.788333333000026,-10.998333333999938],[34.779166667000084,-10.878333332999944],[34.85500000000019,-10.741666666999947],[34.82000000000011,-10.684999999999889]],[[33.40083333400008,-8.853333333999956],[33.265833334000035,-8.817499999999825],[33.50416666700005,-8.76083333299988],[33.5025,-8.828333332999932],[33.40083333400008,-8.853333333999956]],[[31.69000000000011,-8.3575],[31.631666666000115,-8.26166666599994],[31.563333334000163,-8.316666666999879],[31.49666666700017,-8.28],[31.498333333000062,-8.124166666999884],[31.535833333000028,-8.085833332999869],[31.628333333000114,-8.131666666999877],[31.693333333000112,-8.244166665999956],[31.69000000000011,-8.3575]],[[31.11916666700006,-7.978333332999966],[30.995833333000064,-7.88583333299988],[30.98083333400018,-7.805],[31.070000000000107,-7.765833332999819],[31.16416666700013,-7.626666666999881],[31.159166667000136,-7.496666665999953],[31.30416666600007,-7.720833332999916],[31.2675,-7.773333332999869],[31.17416666600002,-7.786666666999963],[31.120833334000054,-7.880833332999885],[31.11916666700006,-7.978333332999966]],[[31.51000000000016,-7.356666666999899],[31.61166666600019,-7.381666666999934],[31.823333333000164,-7.469999999999857],[32.05833333300018,-7.62916666599989],[32.18166666700017,-7.764999999999873],[32.31,-7.846666665999919],[32.43000000000018,-7.989166666999949],[32.50083333300012,-8.005],[32.61833333300012,-8.165],[32.66583333300008,-8.18],[32.79916666600013,-8.335],[32.93,-8.416666666999902],[32.8275,-8.508333332999939],[32.586666667000145,-8.47916666599997],[32.51083333300011,-8.411666666999963],[32.53750000000019,-8.360833333999949],[32.4175,-8.289166665999971],[32.43333333300018,-8.238333332999957],[32.366666666000185,-8.139166666999927],[32.2025,-8.0775],[32.09333333300009,-8.1475],[32.0783333330001,-8.090833333999967],[31.983333334000065,-8.045],[31.87166666700017,-7.893333332999873],[31.79083333400007,-7.8175],[31.77666666700003,-7.757499999999879],[31.700000000000102,-7.749166666999884],[31.68416666700017,-7.690833333999876],[31.54583333300019,-7.604166665999969],[31.549166666000076,-7.553333332999955],[31.446666666,-7.516666665999878],[31.38416666700016,-7.40416666699997],[31.51000000000016,-7.356666666999899]],[[31.955833333000157,-8.295],[31.716666667000027,-8.0775],[31.66500000000019,-7.928333332999955],[31.689166667000165,-7.851666665999915],[31.819166667000047,-7.9883333329999],[31.91750000000019,-8.137499999999875],[31.955833333000157,-8.295]],[[31.55166666600013,-7.244166666999888],[31.463333334000026,-7.144166665999876],[31.36583333300007,-7.1225],[31.383333334000042,-7.056666665999899],[31.5,-7.074999999999875],[31.545,-7.1375],[31.55166666600013,-7.244166666999888]],[[31.245833333000178,-7.11],[31.035,-7.070833333999929],[31.07416666600011,-6.989999999999895],[31.1425,-6.96],[31.064166667000052,-6.889166666999927],[30.96583333300015,-6.9375],[30.9075,-6.86083333299996],[31.02833333300009,-6.8475],[31.0683333340001,-6.762499999999818],[31.044166665999967,-6.7075],[31.13166666700016,-6.6525],[31.258333334000156,-6.85],[31.321666666000112,-6.845],[31.33,-6.671666666999897],[31.430000000000177,-6.776666666999915],[31.405,-6.886666666999929],[31.332500000000152,-6.93],[31.319166666000058,-7.048333333999892],[31.245833333000178,-7.11]],[[30.884166667000102,-6.726666665999971],[30.916666666000026,-6.55833333299995],[30.991666666000185,-6.55],[31.048333333000016,-6.635833332999937],[30.884166667000102,-6.726666665999971]],[[30.0125,-6.425],[29.78916666700013,-6.241666666999947],[29.82,-6.16],[30.021666667000034,-6.379999999999882],[30.0125,-6.425]],[[30.47583333400013,-6.129166666999936],[30.530833334000192,-5.9825],[30.645,-6.066666666999879],[30.579166666000162,-6.164166666999961],[30.47583333400013,-6.129166666999936]],[[30.419166666000024,-3.831666666999865],[30.474166667000134,-3.866666666999947],[30.490833333000182,-3.944999999999879],[30.567500000000166,-3.9775],[30.68666666600018,-4.124166666999884],[30.780833333000032,-4.078333333999979],[30.824166667000043,-4.130833332999941],[30.76833333400009,-4.1775],[30.769166666000103,-4.359166666999954],[30.8325,-4.375],[30.786666667000077,-4.511666666999872],[30.785,-4.7025],[30.84916666700019,-4.726666666999904],[30.92333333300013,-4.6825],[30.850833333000026,-4.603333333999899],[30.9625,-4.601666666999961],[31.0216666660001,-4.67],[31.138333333000162,-4.731666665999967],[31.12500000000017,-4.7775],[31.005833334000158,-4.840833332999978],[31.021666667000034,-4.927499999999895],[31.098333333000085,-4.908333333999906],[31.256666666000115,-4.764166666999927],[31.36583333300007,-4.77916666699997],[31.405,-4.706666666999979],[31.308333334000054,-4.619166666999888],[31.209166667000034,-4.580833333999976],[31.19583333300011,-4.420833332999962],[31.30500000000012,-4.439999999999884],[31.31333333400005,-4.195],[31.271666667000147,-4.094166665999978],[31.288333333000026,-3.9725],[31.243333334,-3.8875],[31.2558333340001,-3.793333332999907],[31.161666666000144,-3.789166666999961],[31.118333334000113,-3.840833333999967],[31.11083333300013,-3.9625],[31.058333333000178,-3.978333333999956],[30.806666667000172,-3.759166666999931],[30.950833333000162,-3.744166666999888],[31.0525,-3.693333333999874],[31.1325,-3.58],[31.21416666700003,-3.606666666999956],[31.2775,-3.7225],[31.359166667000068,-3.785833332999857],[31.3925,-3.920833332999962],[31.453333334000092,-4.003333332999944],[31.617500000000177,-3.951666666999927],[31.565,-4.093333332999919],[31.545,-4.259166665999942],[31.51416666700004,-4.37],[31.55250000000018,-4.414166666999904],[31.624166667000168,-4.3525],[31.610833333000073,-4.193333333999874],[31.62916666600006,-4.094166666999968],[31.70583333400009,-4.074166666999929],[31.769166666000046,-4.2],[31.73916666600013,-4.406666666999968],[31.77583333400014,-4.520833332999928],[31.645,-4.550833333999947],[31.65083333300015,-4.624166665999951],[31.820000000000164,-4.73916666599996],[31.725000000000193,-4.77916666699997],[31.663333333000026,-4.705833333999919],[31.53833333300014,-4.7325],[31.565,-4.8575],[31.490833333000182,-4.910833332999971],[31.4575,-4.99166666699989],[31.402500000000146,-4.9775],[31.268333333000044,-5.028333332999978],[31.278333333000035,-5.226666666999904],[31.391666667000038,-5.345833332999973],[31.3675,-5.448333333999869],[31.484166667000125,-5.486666666999895],[31.43333333400011,-5.556666666999945],[31.354166667000072,-5.515833332999932],[31.305833333000066,-5.333333332999871],[31.238333333000128,-5.27083333399986],[31.024166667000145,-5.270833332999928],[30.996666667000113,-5.288333332999969],[31.071666667000102,-5.451666665999824],[31.079166666000106,-5.57],[31.162500000000193,-5.606666665999967],[31.15416666699997,-5.692499999999825],[31.06500000000017,-5.66],[31.03,-5.5775],[31.030833333000146,-5.4925],[30.985000000000127,-5.374166666999827],[30.92750000000018,-5.309999999999889],[31.050000000000182,-5.1725],[31.1325,-5.18333333299995],[31.18833333300006,-5.148333333999972],[31.196666666000056,-5.054166666999947],[31.12416666600018,-4.993333332999953],[31.031666667000025,-4.993333332999953],[30.946666667000045,-5.0375],[30.875833333000173,-5.139166665999937],[30.84916666700019,-4.983333332999905],[30.87750000000011,-4.814999999999827],[30.85916666600008,-4.781666665999978],[30.739166666000187,-4.748333332999835],[30.73,-4.656666665999978],[30.669166666000137,-4.609166665999908],[30.652500000000146,-4.416666666999902],[30.73583333300013,-4.327499999999873],[30.70416666600005,-4.169166666999956],[30.64,-4.145833333999974],[30.519166667000036,-4.214166666999972],[30.47916666700013,-4.155833332999975],[30.500833333000173,-4.091666665999981],[30.476666666000142,-4.015],[30.34916666600003,-4.035],[30.348333333000085,-3.960833332999869],[30.419166666000024,-3.831666666999865]],[[30.074166667000043,-3.930833332999953],[30.073333333000164,-3.841666666999913],[30.18,-3.682499999999891],[30.21833333400008,-3.6975],[30.179166667000118,-3.868333333999942],[30.074166667000043,-3.930833332999953]],[[30.111666667,-3.583333332999871],[30.146666667000147,-3.5275],[30.295000000000186,-3.45583333299993],[30.2325,-3.398333332999869],[30.49916666600018,-3.218333332999919],[30.583333334000145,-3.1725],[30.611666667000122,-3.090833333999967],[30.703333333000103,-3.17],[30.741666667000175,-3.236666666999895],[30.5,-3.24166666699989],[30.4525,-3.348333332999971],[30.3925,-3.384166666999931],[30.3675,-3.4625],[30.261666667000043,-3.516666666999868],[30.195833333000166,-3.609166666999954],[30.111666667,-3.583333332999871]],[[30.529166667000027,-5.525],[30.416666667000186,-5.494166666999888],[30.498333333000062,-5.427499999999895],[30.529166667000027,-5.525]],[[29.99916666600012,-4.823333332999937],[29.954166667000152,-4.6925],[30.01583333400015,-4.61666666699989],[30.015833333000046,-4.541666666999902],[29.920833333000076,-4.451666666999927],[29.985000000000184,-4.385833333999869],[30.120833333000178,-4.291666665999969],[30.193333334000158,-4.285],[30.1525,-4.425],[30.169166667000184,-4.483333332999905],[30.080000000000155,-4.545],[30.125,-4.661666665999974],[30.0675,-4.67666666599996],[30.04333333400018,-4.783333332999916],[29.99916666600012,-4.823333332999937]]]]},"properties":{"objectid":153,"eco_name":"Central Zambezian wet miombo woodlands","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Afrotropic","eco_biome_":"AF07","nnh":3,"eco_id":39,"shape_leng":454.856079642,"shape_area":84.0652569766,"nnh_name":"Nature Could Recover","color":"#FFAA01","color_bio":"#FEAA01","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":1024260.7271360642,"percentage":4.777554802776616}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-55.29526551499998,-22.89863089999983],[-55.437812518999976,-22.866463669999973],[-55.569351569999924,-22.93967070899987],[-55.52480359899994,-23.032328792999976],[-55.57530557099989,-23.10954389099993],[-55.74485353499995,-23.237953138999956],[-55.78676657199992,-23.39071248699986],[-55.74818752099992,-23.52139591299988],[-55.624118589999966,-23.699536668999883],[-55.56756555399994,-23.84819223599993],[-55.4039804759999,-23.972003171999972],[-55.28067060999996,-23.995626895999976],[-55.26551059699989,-23.887632107999877],[-55.09799557999992,-23.71290110999996],[-55.24599048599998,-23.612055247999933],[-55.279663607999964,-23.743157433999897],[-55.42885947299993,-23.763786470999946],[-55.43089661099992,-23.684626603999902],[-55.341312505999895,-23.61167236299997],[-55.343402617999914,-23.53250528699988],[-55.268001530999925,-23.437805035999872],[-55.16553863199988,-23.521853731999897],[-55.03486258199996,-23.547038333999865],[-55.02759161599988,-23.431053412999972],[-54.958652473999905,-23.43495518899988],[-54.916435509999985,-23.498796792999883],[-54.79005451499995,-23.570883339999966],[-54.71441655599995,-23.67905280599996],[-54.563232503999984,-23.715089121999938],[-54.561000570999965,-23.622087715999953],[-54.64214359599998,-23.488802378999935],[-54.74876056599993,-23.482031644999893],[-54.814498491999984,-23.356518344999927],[-54.69469460799996,-23.332179476999954],[-54.790428515999906,-23.122092438999914],[-54.94239862299992,-23.066354290999982],[-55.15476654499997,-23.064977143999897],[-55.24987449199989,-23.04974605299998],[-55.33120761899994,-23.267315951999933],[-55.41173960399993,-23.220878196999934],[-55.287620548999826,-23.024810225999943],[-55.29526551499998,-22.89863089999983]]],[[[-54.55342450299992,-22.64396521199984],[-54.61636354399997,-22.602297429999965],[-54.787540614999955,-22.56074045699995],[-54.8231925369999,-22.6759386519999],[-54.72545250499991,-22.795338191999917],[-54.71656047899995,-22.88706538199989],[-54.66533263399998,-22.89218420999987],[-54.61743558899991,-22.76761756199994],[-54.5687025339999,-22.775033366999878],[-54.59501651299985,-22.920012631999953],[-54.50563055599997,-23.04053652099998],[-54.46356949599988,-23.017017737999936],[-54.41273861699989,-22.854459275999886],[-54.24289359799997,-22.865803678999896],[-54.32290657599998,-22.6511429709999],[-54.41658758699998,-22.70641977799994],[-54.55342450299992,-22.64396521199984]]],[[[-54.98511850099993,-22.39875598699996],[-55.18885054899994,-22.40991967599996],[-55.2519345959999,-22.544771421999883],[-55.38759251399995,-22.542444437999904],[-55.31236660899998,-22.81843318499989],[-55.15402256799996,-22.71606148099994],[-55.125022523999974,-22.643479228999865],[-55.04887762699997,-22.657665599999916],[-54.94938661599991,-22.556786880999937],[-55.02444052399994,-22.527715422999904],[-55.02437950299998,-22.438182950999874],[-54.98511850099993,-22.39875598699996]]],[[[-54.49372054199995,-21.983051474999854],[-54.54588347299995,-21.976856577999854],[-54.535228564999954,-22.094972345999963],[-54.62200959399996,-22.252225901999907],[-54.557662560999916,-22.313397701999918],[-54.50289554099999,-22.24608716399996],[-54.45025651899988,-22.27407182399992],[-54.422527506999984,-22.15543922799992],[-54.33651358999998,-22.108295548999934],[-54.33313752699996,-22.02099031599994],[-54.40846250499993,-22.03813432499993],[-54.49372054199995,-21.983051474999854]]],[[[-49.93609253799997,-20.8963427569999],[-49.96469846499997,-20.864240737999978],[-50.06499849699992,-20.98406708499988],[-50.02520759099991,-21.018033070999934],[-50.08195860799998,-21.14873275799988],[-50.21086456699993,-21.29601989599996],[-50.21318451099995,-21.40621476499996],[-50.11145754299986,-21.44119680599988],[-50.101982471999975,-21.563529006999943],[-49.96188750999988,-21.59572322599996],[-49.82399346699992,-21.50635034499993],[-49.784633558999985,-21.602166059999945],[-49.719703480999954,-21.589118788999883],[-49.65482755099998,-21.501534606999883],[-49.41199157799991,-21.367254673999923],[-49.34015246499996,-21.275844822999943],[-49.38000858199996,-21.221440905999884],[-49.40161159599995,-21.017226228999903],[-49.508609607999915,-21.02185303999994],[-49.578399512999965,-20.957199396999954],[-49.60901257099988,-21.035307],[-49.80172358899995,-21.12820715299989],[-49.86281156999985,-21.11466887099988],[-49.875530604999824,-21.003964716999974],[-49.8406865309999,-20.908521326999846],[-49.93609253799997,-20.8963427569999]]],[[[-43.7673185729999,-21.362775048999936],[-43.79684851999991,-21.170589743999926],[-43.94708256799993,-21.078627692999873],[-44.0983465839999,-21.070732275999887],[-44.21953951599994,-21.025188533999938],[-44.26269558899992,-20.911191129999963],[-44.321426577999944,-20.901864586999977],[-44.44215347699986,-20.945998156999963],[-44.41956759999994,-21.02288887499998],[-44.33969460099996,-21.090996028999882],[-44.44279050099988,-21.18396089099997],[-44.71092255499997,-21.284333510999886],[-44.89607661699995,-21.256575832999886],[-45.0339815559999,-21.261759704999974],[-45.084171553999965,-21.34278521599998],[-44.98400462599989,-21.35852927999997],[-44.956077464999964,-21.530913847999955],[-44.982383564999964,-21.704879409999933],[-44.83783362199995,-21.592881425999906],[-44.78494649499993,-21.456403086999956],[-44.819076598999914,-21.36513388399993],[-44.5443875499999,-21.379602054999964],[-44.46195253799988,-21.47542598399997],[-44.48319261599994,-21.564725103999933],[-44.54351449099988,-21.601483940999913],[-44.63891261899994,-21.571930522999878],[-44.72034850799997,-21.5956724319999],[-44.693897568999944,-21.65898698099994],[-44.755844526999965,-21.76033441699991],[-44.751865469999984,-21.806752893999942],[-44.623725615999945,-21.854308123999942],[-44.507297460999894,-21.79558048699994],[-44.42815050199988,-21.79309458299997],[-44.40663147399994,-21.87414121599994],[-44.23627448899998,-21.680113567999854],[-44.23634355499996,-21.761640316999944],[-44.31917955799992,-21.894938058999912],[-44.19956946399998,-21.81112757699998],[-44.145584474999964,-21.832042436999927],[-44.04352960699998,-21.767320062999943],[-43.922092593999935,-21.61037546299991],[-43.912147465999965,-21.47037001999996],[-44.01200459899991,-21.36402814399986],[-43.7673185729999,-21.362775048999936]]],[[[-50.71712850199998,-20.681703840999887],[-50.7134396269999,-20.62305817899994],[-50.7761345859999,-20.53348832399996],[-50.87399649099996,-20.60346313399998],[-50.91947552399995,-20.72437661299989],[-50.888706562999914,-20.78527499599994],[-50.821140544999935,-20.782916159999957],[-50.73015247099994,-20.840504863999968],[-50.64854056199988,-20.791681619999963],[-50.58495359999989,-20.86853126699998],[-50.447769505999986,-20.936879483999974],[-50.40505247699997,-20.844652900999904],[-50.498092607999865,-20.771262799999874],[-50.59040854299997,-20.741385506999904],[-50.6561395949999,-20.670340662999934],[-50.71712850199998,-20.681703840999887]]],[[[-60.90527348299992,-14.74722167199991],[-60.901328624999906,-14.822511949999978],[-60.96472548499992,-14.943806134999932],[-60.89964252099986,-14.953779258999873],[-60.86629863899992,-14.782938637999905],[-60.90527348299992,-14.74722167199991]]],[[[-61.012245510999946,-15.065963153999917],[-61.02622551999997,-14.93480464199996],[-60.97068049099994,-14.899276100999828],[-60.95432253699988,-14.786179416999914],[-61.10830647999995,-14.702933706999943],[-61.16769461099989,-14.805301890999942],[-61.10361848199983,-14.872136671999954],[-61.093402617999914,-15.00960172899994],[-61.012245510999946,-15.065963153999917]]],[[[-59.598358589999975,-14.598124377999909],[-59.624198487999934,-14.519762803999924],[-59.767391569999916,-14.38898734399993],[-59.89620549599988,-14.383288487999948],[-59.93729760899993,-14.554352402999939],[-59.90124151099991,-14.650076084999966],[-59.767368602999966,-14.773927085999844],[-59.6840476239999,-14.688321535999933],[-59.568481630999884,-14.783133600999975],[-59.50210550699995,-14.78196365499997],[-59.47130150999993,-14.71370998499998],[-59.51750155499991,-14.577702038999917],[-59.598358589999975,-14.598124377999909]]],[[[-61.34732449599994,-13.964725244999897],[-61.33649457399986,-14.127762313999938],[-61.27009950799993,-14.033743511999944],[-61.34732449599994,-13.964725244999897]]],[[[-60.66936163299988,-13.702642577999882],[-60.70645155499989,-13.671628530999897],[-60.823223535999944,-13.767386074999933],[-60.81899251899989,-13.882520734999957],[-60.7486955089999,-14.007544196999902],[-60.77261360499995,-14.122012830999893],[-60.76142460199992,-14.21073393599994],[-60.80225754599991,-14.31941872099992],[-60.74911460399994,-14.387189257999921],[-60.79729462199998,-14.475446675999876],[-60.723842494999985,-14.505449529999964],[-60.704185590999884,-14.559927206999873],[-60.57402452499991,-14.653186105999907],[-60.521942563999914,-14.648411102999887],[-60.45755362199998,-14.739267413999926],[-60.38698151799997,-14.771646369999871],[-60.32233055699999,-14.890012421999927],[-60.25529863299994,-14.889366679999966],[-60.25679748499988,-14.814607479999893],[-60.301013532999946,-14.63201542999991],[-60.45461660299998,-14.461773444999892],[-60.44958159399994,-14.3905079889999],[-60.51576660999996,-14.26890316999993],[-60.63832059599997,-14.27317995199985],[-60.65260654399992,-14.214183591999813],[-60.520244557999945,-14.08529825099987],[-60.42322553799988,-14.084426365999946],[-60.38644457299995,-14.034134611999889],[-60.4679984789999,-13.883953537999844],[-60.54679457199995,-13.862962736999975],[-60.66936163299988,-13.702642577999882]]],[[[-61.60161953599999,-13.605785998999977],[-61.629138497999975,-13.638064875999873],[-61.55276460799996,-13.834219682999958],[-61.47814555299988,-13.883906598999943],[-61.44702153499992,-13.772539938999842],[-61.55739259199993,-13.61141947599998],[-61.60161953599999,-13.605785998999977]]],[[[-61.42432753199995,-13.556113163999953],[-61.45687060599994,-13.667531958999973],[-61.267970503999834,-13.629960245999882],[-61.29592163699988,-13.581673442999886],[-61.42432753199995,-13.556113163999953]]],[[[-62.36244555899992,-13.12695586599989],[-62.43740056099995,-13.158798882999918],[-62.32343651699995,-13.324003680999965],[-62.310432496999965,-13.416173434999962],[-62.230739540999934,-13.552889483999877],[-62.102672609999956,-13.582248440999876],[-61.96846761099988,-13.539720508999892],[-61.950523632999875,-13.458093679999934],[-62.095245572999886,-13.47891550099996],[-62.17817360799995,-13.419599453999922],[-62.26592660299997,-13.404185301999973],[-62.25723658099997,-13.341264700999943],[-62.146266552999975,-13.325460790999898],[-62.157752609999875,-13.2512485929999],[-62.27483354799995,-13.111624023999923],[-62.36244555899992,-13.12695586599989]]],[[[-43.63994549499995,-12.857209959999977],[-43.812560565999945,-12.854332452999927],[-43.85414151099991,-12.914530107999894],[-43.93328059099997,-12.898660315999905],[-44.08343551299993,-12.941527379999968],[-44.135887618999845,-12.994104040999957],[-44.12155154699991,-13.081131162999895],[-44.15970647399985,-13.17697453799991],[-44.06697060499988,-13.326424709999912],[-44.017532463999885,-13.365834909999933],[-43.85020453099992,-13.375608375999946],[-43.750190488999976,-13.339678677999927],[-43.68231148999996,-13.18848372899987],[-43.78778047499998,-13.161035677999905],[-43.731414522999955,-13.085624700999915],[-43.59612255899992,-13.01804543899982],[-43.59360547299997,-12.949934931999906],[-43.63994549499995,-12.857209959999977]]],[[[-48.82025955499995,-10.205971570999964],[-48.89420353199995,-10.080277220999903],[-48.948516587999904,-10.132210822999923],[-48.90934761899996,-10.270753959999922],[-48.92184453399983,-10.320147676999909],[-48.85640751899996,-10.374782597999967],[-48.764503470999955,-10.381050417999973],[-48.785903474999884,-10.484404144999928],[-48.780441491999966,-10.602471800999979],[-48.81120257399982,-10.697862050999902],[-48.86665355699995,-10.75904105899997],[-48.863830531999895,-10.830122112999902],[-48.91754947899989,-10.976163699999972],[-48.846458534999954,-10.979081607999888],[-48.736709582999936,-10.855556159999878],[-48.65966061399996,-10.880178502999911],[-48.50964348999986,-10.850308417999827],[-48.63523055099989,-10.724081313999932],[-48.59785447199994,-10.588514926999892],[-48.63347655399991,-10.490192519999937],[-48.62383250399989,-10.375484665999977],[-48.55809759599998,-10.300489095999978],[-48.647567538999965,-10.133743704999915],[-48.72039051999997,-10.193858546999934],[-48.82025955499995,-10.205971570999964]]],[[[-43.52519958799985,-10.085077033999937],[-43.588340463999884,-10.067186364999827],[-43.66349746999998,-10.136812319999876],[-43.752769599999965,-10.146676813999932],[-43.716133474999936,-10.329561894999927],[-43.75164759899985,-10.404055723999875],[-43.76958453599997,-10.534861693999915],[-43.82889555399993,-10.637135496999974],[-43.884750544999974,-10.63839445899987],[-43.93902554699997,-10.707678599999895],[-43.92903146899994,-10.786876856999982],[-44.011955480999916,-10.877260762999924],[-43.97788958199993,-10.937765530999968],[-43.86386854199992,-11.02701134199998],[-43.73342148499995,-11.069257474999915],[-43.70747345999996,-10.988125010999852],[-43.65068053399989,-10.975422738999953],[-43.601097552999875,-11.046761955999898],[-43.5362395599999,-11.030440042999885],[-43.51607555099997,-10.906415703999926],[-43.546676537999986,-10.610236125999904],[-43.540222472999915,-10.392497582999965],[-43.506561587999954,-10.23990319099994],[-43.52519958799985,-10.085077033999937]]],[[[-43.32866658899985,-10.024763373999974],[-43.40499856999992,-9.971829140999887],[-43.43780550699995,-10.095619456999941],[-43.39289057499997,-10.472933845999876],[-43.388984608999976,-10.63255361399996],[-43.427749569999946,-10.94277522699997],[-43.42538453199984,-11.079799561999891],[-43.38719155199988,-11.201168178999978],[-43.31277450099998,-11.318024314999889],[-43.230529589999946,-11.105679861999931],[-43.17716955699996,-11.031563050999921],[-43.056518597999855,-10.967310565999924],[-42.93105357699994,-10.823762259999853],[-42.72965957799994,-10.73368781299996],[-42.67131851399989,-10.56714040299994],[-42.59518451399998,-10.49849211299994],[-42.51645245899988,-10.311735263999935],[-42.54837761999994,-10.24329182699995],[-42.74613554999996,-10.069108167999957],[-42.979286568999896,-9.924682275999885],[-43.02478756199997,-9.924689316999945],[-43.26378261199983,-10.015886770999884],[-43.32866658899985,-10.024763373999974]]],[[[-48.98027058999992,-8.75820399099996],[-49.013839608999945,-9.080674916999897],[-48.97401450499996,-9.187179569999955],[-49.006118535999974,-9.269920520999904],[-48.929313479999905,-9.341837417999898],[-48.99493456199997,-9.445373200999938],[-49.05981451599996,-9.460584007999842],[-49.08966062899992,-9.52955533699992],[-49.019271585999945,-9.698998191999976],[-48.96554559799989,-9.770994213999927],[-48.859207576999836,-9.686694228999954],[-48.7682184979999,-9.77333092099991],[-48.69300851899993,-9.732758821999937],[-48.62892149299995,-9.579893694999896],[-48.674621472999945,-9.496462409999936],[-48.814125510999986,-9.428421471999968],[-48.81795453199982,-9.35733941299992],[-48.769889513999885,-9.230949197999962],[-48.80552651699992,-9.035029251999958],[-48.72290760599998,-8.860350724999876],[-48.7487106239999,-8.780204474999948],[-48.88014959499992,-8.807652357999928],[-48.98027058999992,-8.75820399099996]]],[[[-49.87528954099997,-8.08289047999989],[-49.93190762099994,-8.03926535599993],[-49.99661256099989,-8.094419451999897],[-50.05783062899991,-8.081795467999882],[-50.111045487999945,-8.312716732999945],[-50.09947946799997,-8.378194316999952],[-50.14804857299998,-8.557427234999977],[-50.13875555699997,-8.709072626999898],[-50.09246062999995,-8.750397421999935],[-49.996414579999964,-8.736524533999955],[-49.916473519999954,-8.821427344999961],[-49.858657498999946,-8.773111875999916],[-49.76139858799996,-8.801669858999901],[-49.688728492999985,-8.731431856999905],[-49.681892547999894,-8.553501653999831],[-49.7074204729999,-8.489249169999937],[-49.72261853899994,-8.32391009399987],[-49.76080347299995,-8.28376379599996],[-49.83592946499988,-8.303358505999938],[-49.869476523999936,-8.227586938999934],[-49.844093606999934,-8.136845628999936],[-49.87528954099997,-8.08289047999989]]],[[[-49.57830848599997,-7.564614774999825],[-49.619636464999985,-7.53821060599995],[-49.73942559599993,-7.561087837999935],[-49.93180854699983,-7.626922154999818],[-49.943397533999985,-7.719959603999939],[-49.98843349999993,-7.763595456999951],[-49.85106651199982,-7.899109708999958],[-49.70788550099991,-7.869177596999975],[-49.669799473999944,-7.815181544999973],[-49.714836612999875,-7.763540471999931],[-49.587161619999904,-7.655606033999902],[-49.57830848599997,-7.564614774999825]]],[[[-47.95440660999992,-6.520559549999973],[-47.887969465999845,-6.352078769999935],[-47.925033570999915,-6.226191971999924],[-47.898704503999966,-6.129959173999964],[-47.94831849799988,-6.025821737999877],[-47.95532258399987,-5.935359376999941],[-48.01860846799991,-5.902219678999927],[-48.07044249199993,-5.772836118999976],[-48.138275557999975,-5.80610087499997],[-48.149742504999836,-5.878276436999954],[-48.10823850499992,-6.0088398339999],[-48.09661062599997,-6.134826544999896],[-48.0470355249999,-6.208063423999931],[-48.00167048499992,-6.495469495999942],[-47.95440660999992,-6.520559549999973]]],[[[-48.98027058999992,-8.75820399099996],[-48.96565255099995,-8.630827225999951],[-49.160156625999946,-8.578696984999965],[-49.25282258899995,-8.533067244999927],[-49.29460956199995,-8.463165189999927],[-49.36532549899994,-8.417486331999953],[-49.41493261999989,-8.537247802999957],[-49.51510658899997,-8.637852768999949],[-49.59628649499996,-8.752174552999975],[-49.588905557999965,-8.81740285799998],[-49.78554550999985,-8.91309183899989],[-49.830543589999934,-9.023413944999902],[-49.92175260999994,-9.12315808999989],[-49.950908556999934,-9.195253018999892],[-50.052982535999945,-9.279822901999978],[-50.179904498999974,-9.276593186999946],[-50.276515488999905,-9.351771649999932],[-50.3383335339999,-9.538615670999945],[-50.246383552999816,-9.612995170999966],[-50.207740464999915,-9.699888181999881],[-50.29098550399988,-9.828095258999895],[-50.31113861599982,-9.929841001999876],[-50.43798061599995,-10.088703715999827],[-50.47497950999997,-10.174847719999946],[-50.42108554899988,-10.267882151999913],[-50.348365497999964,-10.319006731999934],[-50.39968856199988,-10.381913082999915],[-50.465183579999916,-10.378068471999882],[-50.622554482999874,-10.308996224999873],[-50.7159535269999,-10.335069475999887],[-50.75292258199994,-10.383863216999885],[-50.87806355799995,-10.272453976999884],[-51.037074463999886,-10.261853551999877],[-51.20149655899991,-10.143171],[-51.26295853999994,-10.237987423999812],[-51.36004662799991,-10.281843384999888],[-51.34825848699995,-10.36643941899996],[-51.21347061099988,-10.440179212999965],[-51.13909949199996,-10.511522283999966],[-51.023940524999944,-10.526499236999882],[-51.03429452199998,-10.597765026999923],[-50.95880861099994,-10.782882376999964],[-50.98865153899993,-10.840487341999903],[-51.07324254399998,-10.83477255999992],[-51.163455626999905,-10.75437015999995],[-51.23631649399994,-10.956627159999869],[-51.39180347999991,-10.890577762999897],[-51.5935825439999,-10.931557054999928],[-51.61884358799995,-10.86428356499988],[-51.69568250699996,-10.840921188999914],[-51.78416858199989,-10.855135387999951],[-51.807022511999946,-10.997164390999842],[-51.78158561499998,-11.073148186999958],[-51.59295658299993,-11.16895551999994],[-51.560363552999945,-11.203506059999881],[-51.52911347099996,-11.348470068999916],[-51.483673496999984,-11.396819568999945],[-51.39852157499996,-11.418733048999968],[-51.30048348299988,-11.386583253999959],[-51.2065126249999,-11.44812804799983],[-51.29425857899997,-11.670034743999963],[-51.18434148499989,-11.66657318599988],[-51.13293460299997,-11.771185036999952],[-51.03598749899993,-11.730888702999948],[-51.019569529999956,-11.813647926999977],[-51.08376350899994,-11.932104],[-51.01827955499982,-11.952739574999896],[-50.99716956399993,-12.023987763999969],[-51.06026450799993,-12.079239927999936],[-51.13659246499992,-12.248725362999949],[-51.05091449499997,-12.276202415999933],[-51.03805548199995,-12.389765803999921],[-51.09720657299994,-12.42253954899985],[-51.321041608999906,-12.430009835999954],[-51.39538959299989,-12.468903207999972],[-51.564479569999946,-12.619723149999857],[-51.723941589999924,-12.74142285299996],[-51.797443504999876,-12.85850010299987],[-51.854328464999924,-12.894533568999975],[-52.07658753599998,-12.932486994999977],[-52.23125058099998,-13.0273275589999],[-52.32921256499998,-13.170231128999944],[-52.41961256499991,-13.242673235999916],[-52.66390950299996,-13.314090570999895],[-52.83516653699991,-13.327214619999893],[-52.90360662099994,-13.284971503999941],[-53.0204086089999,-13.29905645499997],[-53.216083468999955,-13.490994493999892],[-53.33506357899995,-13.46466827699993],[-53.34658048099993,-13.37044881199995],[-53.46522849999997,-13.412016010999878],[-53.546173544999874,-13.616357422999954],[-53.61552054999987,-13.585461391999957],[-53.58792849899993,-13.374121426999977],[-53.68284651099998,-13.362136310999972],[-53.83326361999991,-13.41565358899993],[-53.87254758799992,-13.464760477999903],[-54.04552458899991,-13.45751583099991],[-54.14356251399994,-13.405092390999869],[-54.29131652399985,-13.41567068799992],[-54.51798263199987,-13.309935829999858],[-54.63105349999995,-13.340500774999896],[-54.76481258099989,-13.336764960999972],[-54.85954652799995,-13.255233349999912],[-55.02124048099995,-13.198794977999967],[-55.228507511999965,-12.922904634999952],[-55.296153493999896,-12.814391845999978],[-55.450500541999986,-12.660895226999912],[-55.48361257999983,-12.477066678999961],[-55.575595584999974,-12.475894049999908],[-55.62566354299997,-12.432738815999869],[-55.634338476999915,-12.3073353179999],[-55.7506445919999,-12.335185532999958],[-55.92821856399996,-12.265799132999916],[-55.89627060499993,-12.177948069999957],[-55.927741633999915,-12.105764963999945],[-56.0208355769999,-12.098719470999981],[-56.08892462599988,-12.04285224299997],[-56.168502581999974,-12.065806754999926],[-56.206016627999986,-12.2025725929999],[-56.27977352099998,-12.196753875999946],[-56.38959153999991,-11.990871031999916],[-56.46086453899994,-11.924103472999946],[-56.58099347199993,-11.715877886999976],[-56.708583472999976,-11.812139183999932],[-56.662189471999966,-11.997260388999962],[-56.425952570999925,-12.06897461099993],[-56.3664776039999,-12.256409724999912],[-56.31846656499994,-12.25532778899992],[-56.31629162899998,-12.416248929999938],[-56.45137756599996,-12.614855443999886],[-56.39872362299997,-12.687365611999951],[-56.41896860199995,-12.859720004999929],[-56.29589862599994,-12.987531455999886],[-56.21491653299995,-13.03363108499991],[-56.23268549699998,-13.153147300999933],[-56.32322647999996,-13.18632002399994],[-56.433891574999905,-13.27112627699995],[-56.55660649299989,-13.431678446999967],[-56.766979521999986,-13.370060561999821],[-56.85952763599994,-13.27663184599993],[-56.90189748599994,-13.286794400999952],[-56.93311353699994,-13.43600417999994],[-57.03055953199993,-13.393042063999928],[-57.04774461299996,-13.296469463999927],[-57.19239463599996,-13.300320445999887],[-57.340454585999964,-13.080129021999937],[-57.40015049999994,-13.043029544999968],[-57.50579852299995,-13.032040199999926],[-57.57578657599993,-12.956954272999894],[-57.53776156899994,-12.886013028999912],[-57.42506755199997,-12.886706044999869],[-57.4187206069999,-12.80406383299993],[-57.56172157499998,-12.776783419999958],[-57.62114759199994,-12.712105804999965],[-57.51952355399993,-12.588739277999878],[-57.60475158399987,-12.528511447999904],[-57.670379538999896,-12.525796381999953],[-57.687419611999985,-12.440729283999929],[-57.77775959699994,-12.279417210999952],[-57.7957835389999,-12.170245603999888],[-57.87285949699998,-12.142179638999949],[-58.04558152099992,-12.229313713999943],[-58.121166505999895,-12.311355111999887],[-58.181541521999975,-12.097448774999918],[-58.110431634999884,-11.978657760999965],[-58.12291748599995,-11.9269253249999],[-58.32653453299997,-11.939098529999853],[-58.355323520999946,-11.883796241999903],[-58.36227463299991,-11.731162622999875],[-58.41937249299991,-11.710047267999926],[-58.62985247599994,-11.721999358999938],[-58.77083960699997,-11.549857027999906],[-58.84561154799991,-11.551449924999929],[-58.914001507999956,-11.617280553999933],[-59.04410557699998,-11.657235745999856],[-59.13587953799993,-11.715865816999951],[-59.23272354399995,-11.701059855999972],[-59.30319255099994,-11.628093711999952],[-59.2806965289999,-11.495437856999956],[-59.50323857299992,-11.550193980999893],[-59.563285521999944,-11.49222406799987],[-59.626243504999934,-11.483454584999947],[-59.77376148099995,-11.512549847999878],[-59.82239562999996,-11.570315744999903],[-59.970809630999895,-11.574091624999937],[-60.105480495999984,-11.67981726399995],[-60.10874960599995,-11.744989745999874],[-60.05218550599989,-11.877380732999882],[-59.95810350399995,-12.005738012999814],[-59.98043456999994,-12.093547836999846],[-60.06351850899995,-12.092349056999865],[-60.1575245709999,-12.039478693999968],[-60.17779955699996,-12.14099862899991],[-60.25897560699991,-12.09172108499996],[-60.378391575999956,-12.093302079999944],[-60.43960159699992,-12.18610248799996],[-60.580478590999974,-12.276403580999897],[-60.579849612999965,-12.375875649999955],[-60.666744634999986,-12.45212045799991],[-60.731128547999845,-12.447562714999947],[-60.83738761099994,-12.489092027999959],[-60.86902963099993,-12.674766269999907],[-60.75990663899984,-12.736197406999963],[-60.62710560899984,-12.724873957999932],[-60.58851247699988,-12.796439317999955],[-60.71028560499997,-12.843398930999967],[-60.78772751699995,-12.902539124999919],[-60.64318461399989,-12.974339177999923],[-60.47607461099989,-12.965915700999915],[-60.36029051999992,-12.999988472999974],[-60.28255859399991,-12.925777448999952],[-60.18018353799994,-12.919475933999934],[-60.14543551999998,-12.94981791999993],[-60.09952548899986,-13.154382961999943],[-60.008975620999934,-13.15702007599998],[-60.06238158799994,-13.045067520999908],[-60.06553251299994,-12.952261747999955],[-60.010536498999954,-12.895884563999914],[-59.97651653399987,-12.753261116999965],[-60.00241057899996,-12.608559796999884],[-59.98761350299992,-12.487388991999921],[-59.90930557199994,-12.508029596999961],[-59.88420462199991,-12.708855973999903],[-59.844055473999845,-12.771315903999948],[-59.75547049199997,-12.817313776999981],[-59.734432584999865,-12.902407025999935],[-59.64596561999997,-12.959852231999946],[-59.715618564999886,-13.131838658999982],[-59.63134355799997,-13.313005449999821],[-59.60247058399983,-13.500231853999935],[-59.61044361799998,-13.557407161999947],[-59.55587759599996,-13.60981182699993],[-59.39546154699997,-13.680983069999911],[-59.40335847399996,-13.734742249999897],[-59.50918150999996,-13.789313635999918],[-59.67137955099997,-13.824588540999855],[-59.78940948799993,-13.827253314999894],[-59.69769252399993,-13.985722917999965],[-59.60593448899982,-14.076591632999964],[-59.51858147899992,-14.2934515849999],[-59.448398629999986,-14.410342924999952],[-59.24053547799997,-14.65320806699998],[-59.10660557299991,-14.871982612999943],[-58.978031536999936,-14.989744161999965],[-58.95725648699994,-14.949906819999853],[-58.84242256899995,-15.04218872399997],[-58.75608058499995,-15.059468519999939],[-58.725242556999945,-14.977287814999954],[-58.638725557999976,-14.980752726999981],[-58.53108951599995,-15.09003849499993],[-58.43886561499994,-15.023498923999966],[-58.296523631999946,-15.022938844999828],[-58.20703558399987,-14.978061799999978],[-58.1695974779999,-14.919931457999894],[-58.075366613999904,-14.86814990399995],[-58.02215560999991,-14.769960433999927],[-58.00807954499993,-14.671349689999886],[-57.9349095529999,-14.579064768999956],[-57.951873518999946,-14.500804949999974],[-57.65356460299995,-14.348455980999972],[-57.56121849299984,-14.334277655999927],[-57.4341205099999,-14.255974083999888],[-57.18178549399994,-14.163459162999914],[-57.052894621999826,-14.143540408999968],[-57.015483505999896,-14.213867593999964],[-56.931808474999855,-14.256854016999966],[-56.79328947799996,-14.20581023799997],[-56.71083854099987,-14.267119333999858],[-56.66858653999998,-14.615682453999966],[-56.77359351399997,-14.784191564999958],[-56.747848498999986,-14.848701373999972],[-56.87201650399999,-15.013588664999872],[-56.98620954099982,-15.068092157999956],[-57.18936156099983,-15.109267418999934],[-57.17709347199997,-15.21738139699994],[-57.1276476189999,-15.275195573999895],[-57.17740259699997,-15.419647281999914],[-57.26838262399991,-15.503995882999902],[-57.43284947799998,-15.8151649859999],[-57.66466157199983,-16.010562738999965],[-57.7226985399999,-16.196041012999842],[-57.78059351899992,-16.14718507899994],[-57.72384652499994,-16.083467023999845],[-57.73048348399993,-15.926042141999858],[-57.76729160599996,-15.805060601999912],[-57.81570447299998,-15.549583041999881],[-57.885745499999985,-15.539661718999866],[-57.98447761399996,-15.74758438299989],[-58.06566958999997,-15.670868342999938],[-58.25184255599993,-15.714552475999938],[-58.336688538999965,-15.563108248999981],[-58.47273252699989,-15.511989535999874],[-58.512424526999894,-15.544740481999952],[-58.63256050099994,-15.466212441999915],[-58.74015463299992,-15.50713859299998],[-58.8988795489999,-15.47037908599998],[-58.97090960199995,-15.514010412999937],[-59.022426621999955,-15.680651700999931],[-59.21155957399998,-15.60990927599994],[-59.241405519999944,-15.54864208999993],[-59.3633955709999,-15.456005127999845],[-59.337749628999916,-15.350976695999975],[-59.343913512999904,-15.161721871999873],[-59.47522356999991,-15.004767213999969],[-59.518657586999836,-14.91348392999987],[-59.673496483999884,-14.887877550999974],[-59.78031562599989,-14.832120292999946],[-59.84860651199989,-14.931681879999928],[-59.83066555099998,-14.984707475999869],[-59.62295159599995,-15.040023678999887],[-59.50683256499991,-15.113107168999932],[-59.42300749899982,-15.137466655999901],[-59.43218249699993,-15.251935121999907],[-59.64987561099986,-15.27215596099984],[-59.783519524999974,-15.304056645999822],[-59.867118614999924,-15.208542009999917],[-59.94290158099989,-15.372015272999931],[-60.028049479999936,-15.40926310999987],[-60.05122762199994,-15.468817034999972],[-59.97812250599998,-15.525431426999887],[-59.951827637999884,-15.676875820999953],[-59.806693474999975,-15.716204380999898],[-59.67832948999995,-15.840329302999976],[-59.58712063699994,-15.900267789999873],[-59.54871358299994,-15.976229792999902],[-59.612094516999946,-16.169335598999908],[-59.659122525999976,-16.20666406999993],[-59.798534530999916,-16.1709725849999],[-59.822227488999886,-15.998302529999933],[-59.895980525999846,-16.017583253999874],[-59.99188659699996,-16.23495047899985],[-60.12256650299997,-16.194440907999876],[-60.153758581999966,-16.23796930499998],[-59.82599247199994,-16.25332226899991],[-59.267223624999986,-16.279495767999947],[-59.14800647499993,-16.190405188999932],[-58.968490583999824,-16.141456215999938],[-58.93657263199998,-16.10886335299989],[-58.78649549399984,-16.138892358999897],[-58.5830536279999,-16.131146977999947],[-58.30578647299984,-16.26074595299997],[-58.338542615999984,-16.49343931999988],[-58.462051634999966,-16.67167914999993],[-58.47170658199991,-16.79349133799991],[-58.37091453099998,-16.822527758999968],[-58.33245048099997,-16.771890837999877],[-58.3368456149999,-16.67024098299993],[-58.30445056499997,-16.59356785899996],[-58.177570511999875,-16.566893625999967],[-58.05755657799989,-16.722135021999975],[-58.00747252699989,-16.838118601999895],[-57.86828247499989,-16.864498127999923],[-57.86920549099989,-16.75693366699994],[-57.951614518999975,-16.71653926399989],[-58.00434155099998,-16.650199349999923],[-58.04695548199999,-16.52005957399996],[-58.14241747999989,-16.396828330999938],[-58.18134655899985,-16.29859426899992],[-58.07659154499993,-16.218572574999826],[-58.07261651099992,-16.138209401999973],[-58.208423626999945,-16.01956691499987],[-58.21187562999995,-15.965187641999933],[-58.088878576999946,-15.879307834999906],[-57.94787250199988,-15.892684011999961],[-57.86850761299996,-16.039434707999817],[-57.833389617999956,-16.2404602389999],[-57.80528660599998,-16.30788996799987],[-57.663757499999974,-16.202895398999942],[-57.62430153499997,-16.09772497699987],[-57.44254247899988,-16.067083923999917],[-57.34431059699995,-16.100175845999956],[-57.390994611999986,-16.185308488999908],[-57.34062155299989,-16.21485385999989],[-57.23863558499994,-16.205340399999955],[-57.08987859599995,-16.26074192999988],[-56.91791546999991,-16.206029391999834],[-56.74941658499989,-16.25405736199997],[-56.6155015999999,-16.235869469999955],[-56.48692655799994,-16.12539145999989],[-56.39373354099996,-16.091862505999927],[-56.32484049999988,-16.113992071999974],[-56.18049255999995,-16.22081741599993],[-56.024791499999935,-16.16429287899996],[-55.927577515999985,-16.184929626999917],[-55.84543654099997,-16.160696203999976],[-55.624511533999964,-15.99462253899992],[-55.61383449799996,-16.0926693479999],[-55.75069857199992,-16.1777200169999],[-55.83198157499993,-16.313129662999927],[-55.76274856299989,-16.359904705999952],[-55.70145757299997,-16.33577421299998],[-55.521171551999885,-16.152172646999873],[-55.44696052899991,-16.204711421999946],[-55.409728617999974,-16.366347203999908],[-55.41883454899994,-16.440919320999967],[-55.494201604999944,-16.666260249999937],[-55.623138577999896,-16.71113545099996],[-55.77980456299997,-16.68756386299998],[-55.83472061299983,-16.595748829999934],[-55.99431959399993,-16.66544653499983],[-56.11782056699997,-16.614200584999878],[-56.23835753099996,-16.64090381899996],[-56.276107611999976,-16.720329895999896],[-56.18092355699997,-16.77183484699998],[-55.798896526999954,-16.765749249999942],[-55.61127047399998,-16.79853204699998],[-55.453540489999966,-16.79358756199997],[-55.17645254099989,-16.663145534999956],[-54.97610057899993,-16.63019258499986],[-54.952457576999905,-16.749324071999922],[-55.031326591999914,-16.850723977999962],[-54.99767660399988,-17.080884501999947],[-55.053596470999935,-17.15246310499998],[-55.281478625999966,-17.20574870799993],[-55.36134760199991,-17.246745433999877],[-55.437076587999854,-17.210816573999978],[-55.530349568999895,-17.27552168199992],[-55.73859761799997,-17.34822111299991],[-55.92950853899998,-17.27751053999998],[-56.07588556999991,-17.19333862999997],[-56.162025550999886,-17.248250153999948],[-56.03816951999988,-17.29124462299984],[-55.741050497999936,-17.498411741999973],[-55.46753659199993,-17.62967469299997],[-55.28690356099992,-17.72960089299994],[-55.1755595329999,-17.82302307099991],[-55.01704449999994,-17.91110664799993],[-54.88624154799999,-17.955652104999956],[-54.81280149199989,-18.064688426999908],[-54.79908752499995,-18.247773500999926],[-54.81706955699991,-18.295297382999934],[-54.913570575999984,-18.328428531999975],[-55.05899458399989,-18.229650484999866],[-55.29835860499992,-18.267721088999906],[-55.33602151399998,-18.347325364999847],[-55.234569471999976,-18.412497511999902],[-55.09733156499988,-18.447649369999965],[-55.05074662399994,-18.492047639999953],[-55.049484476999964,-18.59253861299993],[-55.1077765899999,-18.71263167199993],[-55.12707156399989,-18.867746501999818],[-55.27210648399995,-18.944989929999906],[-55.23466854599985,-19.053383528999973],[-55.13411755899995,-19.210734314999968],[-55.100040596999975,-19.33805374799988],[-55.11884656999996,-19.435230012999966],[-55.24634151999987,-19.556052967999904],[-55.382801585999914,-19.792762439999933],[-55.44383961099999,-19.95298721399996],[-55.51816161099998,-20.05418947399994],[-55.64564147399989,-20.126251210999897],[-55.68999062599994,-20.22712255399989],[-55.77035849299989,-20.241945781999902],[-55.79377350699997,-20.147525989999906],[-55.90145849999993,-20.03597341899996],[-55.94515654599985,-20.072924200999978],[-55.9357225469999,-20.160361365999904],[-55.87613257899994,-20.226169698999854],[-55.86917861699993,-20.312437754999962],[-55.95221360599993,-20.314186722999978],[-56.06566953899983,-20.087877348999882],[-56.15125262599997,-20.063543007999954],[-56.22837451699996,-20.204651844999887],[-56.32135362799994,-20.21810295599994],[-56.36974352799996,-20.084714688999952],[-56.46894452599997,-20.09811701699988],[-56.592132518999904,-20.079621006999957],[-56.69887555299994,-20.094100073999982],[-56.76966055799994,-19.885011989999896],[-56.85010151499995,-19.796498086999975],[-56.94039556699988,-19.783628847999978],[-57.163635487999954,-19.985891212999945],[-57.13480358499993,-20.134829752999963],[-57.1537165119999,-20.27548881799987],[-57.087066634999985,-20.303857200999914],[-56.95376252299991,-20.267135244999963],[-56.954910508999944,-20.41017024399997],[-57.1337275169999,-20.579266590999907],[-57.15650550599992,-20.715188035999915],[-57.20810651399995,-20.826553689999855],[-57.20551650599998,-20.912908078999976],[-57.25525253999996,-21.016873182999973],[-57.35979063099995,-21.13242576499988],[-57.43387961399998,-21.156510325999932],[-57.49642554299999,-21.050853250999978],[-57.589153531999955,-21.024738760999924],[-57.713519517999885,-21.080432651999956],[-57.748149518999924,-21.17401341599998],[-57.721916507999936,-21.3413812469999],[-57.74108860299987,-21.424752684999874],[-57.695312514999955,-21.45911882399986],[-57.61555853899989,-21.382130874999973],[-57.58130253899998,-21.461066777999918],[-57.679107613999975,-21.62502283899994],[-57.74624263599998,-21.645056593999925],[-57.77724461299994,-21.699759575999906],[-57.79522362799992,-21.85878020499996],[-57.836330492999934,-21.94741011399998],[-57.83121451399995,-22.02200435899988],[-57.76465952099994,-22.086539648999917],[-57.54635653999992,-22.106792673999962],[-57.42011652899993,-22.10071998499984],[-57.389507494999975,-22.181892681999955],[-57.45402551799998,-22.24873802499991],[-57.659763522999924,-22.22657727899997],[-57.755870591999894,-22.242776479999918],[-57.74262953199991,-22.34241618599998],[-57.587165511999956,-22.42476788199997],[-57.54432661099992,-22.481484700999943],[-57.55063248499994,-22.63730763399991],[-57.47518563299991,-22.716175474999943],[-57.44947850299991,-22.79250728799991],[-57.482070527999895,-22.93107707899992],[-57.36721062699996,-22.903427694999948],[-57.23442853999995,-22.7898644739999],[-57.00223154899999,-22.679791309999814],[-56.864715530999945,-22.46790534699994],[-56.574367577999965,-22.24502433899994],[-56.49623449399991,-22.12609066499988],[-56.417385595999974,-22.131263471999887],[-56.37591160299996,-22.208945274999905],[-56.40024560899985,-22.320765394999967],[-56.451461551999955,-22.381192043999874],[-56.46187556399991,-22.54648635999996],[-56.57978463399991,-22.611383915999852],[-56.56436947599997,-22.658998322999878],[-56.35397347999992,-22.68345705099989],[-56.32201361899996,-22.738475192999942],[-56.344234546999985,-22.83804499499996],[-56.19428648999991,-22.78893944699996],[-56.138965593999956,-22.705051012999945],[-56.17339761399995,-22.617597587999967],[-56.20195056699998,-22.454782303999934],[-56.14091857699998,-22.376121494999893],[-56.12262758799994,-22.290508735999936],[-55.85555651599992,-22.263897199999974],[-55.82340655299993,-22.326846968999916],[-55.748142593999944,-22.365597009999874],[-55.75086252199992,-22.48488356199988],[-55.54562357599997,-22.674429741999916],[-55.56139362399989,-22.58617031299991],[-55.41696152899988,-22.47036644099984],[-55.32640847699997,-22.44898755899993],[-55.248874530999956,-22.379462018999902],[-55.14231153999998,-22.35324342599995],[-55.17708956499985,-22.252562016999946],[-55.07437554399996,-22.225181523999936],[-54.998443547999955,-22.332311633999893],[-54.79586049199992,-22.419637151999893],[-54.73894451899997,-22.320248398999922],[-54.83591458999996,-22.230685919999928],[-54.94546153799996,-22.21007833999994],[-55.065067607999936,-22.081602204999967],[-55.10248157399997,-21.968331176999925],[-55.04877855299992,-21.811677429999975],[-54.95869052799986,-21.791219550999983],[-54.85098659299996,-21.877276885999947],[-54.67312947999994,-21.924529529999973],[-54.60528149399988,-21.906452614999978],[-54.542388553999956,-21.666823389999934],[-54.47803850399998,-21.597068353999873],[-54.41719862799988,-21.612297265999928],[-54.22961062899998,-21.725527222999972],[-54.02773651399991,-21.734973794999974],[-53.98804451399991,-21.799768085999915],[-53.81887457399989,-21.95073320299997],[-53.6193276109999,-22.058477203999928],[-53.48207059299989,-22.092576462999887],[-53.30490146799997,-22.180853660999958],[-52.90288158599998,-22.12953160299992],[-52.54948847799989,-21.99809749399998],[-52.2647134849999,-21.947006273999875],[-52.16819352299996,-21.867448601999968],[-52.08013157199997,-21.76052334499991],[-52.00317748599991,-21.62173076299996],[-51.97144661799996,-21.60934163899998],[-51.83703257499997,-21.3172886399999],[-51.84081650099989,-21.17390445099994],[-51.7608145879999,-21.03033837499987],[-51.6416624819999,-20.986572937999938],[-51.62813157499994,-20.712958113999946],[-51.529079607999904,-20.597424642999954],[-51.49928261299988,-20.43809555999991],[-51.427299498999844,-20.360083845999952],[-51.38098948399983,-20.219736085999898],[-51.20656157499997,-20.19807221899987],[-51.114788619999956,-20.162921366999967],[-51.09813662899995,-20.02350215299998],[-51.22754248499996,-20.000189397999918],[-51.17910346599996,-19.761035259999915],[-51.09976154399993,-19.598908465999955],[-51.04669957099992,-19.550104498999872],[-51.00910556199989,-19.449009190999902],[-50.86671462899983,-19.254871572999946],[-50.82809852999992,-19.121592438999926],[-50.88383449799994,-19.00298130099992],[-51.01270659499994,-18.94070795099998],[-51.14876952599991,-18.77985369699985],[-51.2019956179999,-18.65299610699992],[-51.1904185329999,-18.537841161999893],[-51.112453589999916,-18.546833602999982],[-51.004558546999874,-18.70630685499998],[-50.91009148099988,-18.794994766999935],[-50.86376151699989,-18.79917733699989],[-50.847751578999976,-18.616174405999914],[-50.674114586999906,-18.464534545999925],[-50.6029855889999,-18.454040905999875],[-50.454654568999956,-18.374256921999915],[-50.435844571999894,-18.30016106599993],[-50.22803858399993,-18.16992892199994],[-50.176307488999896,-18.19097588099993],[-50.13830561699996,-18.316891344999874],[-50.05733157099991,-18.425122836999947],[-49.92293546399992,-18.476213721999954],[-49.86516554399992,-18.465966342999934],[-49.78425251799996,-18.321784866999963],[-49.768859487999975,-18.231748306999975],[-49.711543530999904,-18.104535994999935],[-49.65811157999991,-18.05428413899989],[-49.59558157699996,-18.07245308699993],[-49.59582146699995,-18.17449571799989],[-49.55408059499996,-18.26683428399997],[-49.56167962799998,-18.339358868999966],[-49.508007619999944,-18.504564838999954],[-49.404392543999904,-18.618393095999977],[-49.247951529999966,-18.51332862199996],[-49.28702561599994,-18.27772857799988],[-49.24155848499993,-18.188740929999938],[-49.28976448599997,-18.0646733399999],[-49.284923601999935,-18.012899497999967],[-49.199657517999924,-17.973842845999968],[-49.18043546699988,-18.12430873699998],[-49.09943359299996,-18.14725654399996],[-48.99750160399992,-18.126879801999905],[-49.0165295299999,-18.058951684999897],[-48.97642161999988,-18.012555671999962],[-49.01435861699997,-17.95345319599994],[-48.90940059299987,-17.873356902999888],[-48.79962146599985,-17.869063356999902],[-48.672340589999976,-17.9723059399999],[-48.651576603999956,-18.072200959999975],[-48.51438848599997,-18.197756336999873],[-48.436313571999904,-18.185025064999877],[-48.31355255299991,-18.21600021999984],[-48.36259456599987,-18.34310859699991],[-48.361026478999975,-18.41862099499997],[-48.472167497999976,-18.427199704999907],[-48.439170627999886,-18.52418083999993],[-48.27515052899997,-18.572628910999924],[-48.220210505999944,-18.645599579999953],[-48.16187262699992,-18.646249680999915],[-48.09485646199988,-18.716298418999884],[-47.97002460999988,-18.79721647399998],[-47.95391459199982,-18.889141979999863],[-47.99105446999994,-18.964231594999887],[-48.23134653499994,-18.75376619699989],[-48.335132600999884,-18.63156726899996],[-48.50185351699997,-18.69430866399989],[-48.53665953799998,-18.63291038499989],[-48.64111347399995,-18.609037718999957],[-48.62161247299997,-18.516502345999925],[-48.6876945599999,-18.50573998199991],[-48.81567750399995,-18.614584526999977],[-48.888076527999885,-18.623517958999912],[-48.85044060999991,-18.47861144899997],[-48.894794623999985,-18.41638839099994],[-48.9637605879999,-18.46868023499985],[-49.0647735849999,-18.610590549999927],[-49.161418604999824,-18.620465940999964],[-49.31033350899992,-18.781533597999953],[-49.2785225099999,-18.861593848999917],[-49.212711493999905,-18.889754193999977],[-49.20809155699993,-18.959486934999973],[-49.38240446499998,-18.926725762999865],[-49.453426509999986,-18.94229313699998],[-49.596858475999966,-18.891985959999886],[-49.71310457599992,-18.87602379899988],[-49.64524854399991,-18.791870998999855],[-49.48434450099995,-18.854129261999958],[-49.44336654999995,-18.795105742999965],[-49.47938157599998,-18.67503782999995],[-49.57082361399989,-18.640922813999907],[-49.73330362199994,-18.61875921799998],[-49.839061614999935,-18.751395291999927],[-49.822376597999835,-18.825300878999883],[-49.88682153199994,-18.851916438999922],[-49.84542448499991,-18.961563802999876],[-49.89508860299998,-18.993338088999963],[-49.955627568999944,-18.91768738899998],[-50.022602495999934,-18.776856663999922],[-50.09147257099988,-18.757676018999916],[-50.21162748799992,-18.817265483999904],[-50.322849475999874,-18.917773554999883],[-50.35042560199997,-19.04272392699994],[-50.39760247399994,-19.10756834199998],[-50.5184856109999,-19.128010126999982],[-50.543147516999966,-19.20923127199984],[-50.58367150499987,-19.497621547999927],[-50.68531750299991,-19.548288475999982],[-50.80683162999998,-19.561715781999965],[-50.935600628999964,-19.732584733999943],[-50.76187160399991,-19.738076556999943],[-50.672843554999986,-19.763639181999906],[-50.49505249199996,-19.719371669999873],[-50.36087749999996,-19.657058253999935],[-50.24266047899994,-19.679022025999927],[-50.16695747599988,-19.761054370999943],[-49.922759611999936,-19.835283834999927],[-49.696502540999916,-19.783728089999954],[-49.66553861699998,-19.663180898999883],[-49.695003520999876,-19.60818723299991],[-49.813449535999894,-19.55562414999997],[-49.683101553999904,-19.497598413999867],[-49.5781705199999,-19.548345472999927],[-49.517166524999936,-19.623790312999972],[-49.56440357899993,-19.683094792999896],[-49.57510760499997,-19.81656503399995],[-49.44672048499996,-19.86622026599997],[-49.365135564999946,-19.759553171999983],[-49.30118549999992,-19.76712873599996],[-49.283252585999946,-19.930301424999925],[-49.34168249699991,-20.03486365599997],[-49.34464650599995,-20.098049961999948],[-49.26901256999997,-20.2610027099999],[-49.30102557299995,-20.33118756999994],[-49.221805523999876,-20.46413427699997],[-49.26992753899992,-20.531602395999926],[-49.33629947199995,-20.531070479999983],[-49.40419758099995,-20.451465700999904],[-49.368522524999946,-20.404059500999892],[-49.40905355299992,-20.330136646999847],[-49.53743748799985,-20.239286706999962],[-49.614532556999905,-20.242523629999937],[-49.795360550999874,-20.15249276999998],[-49.93905252299993,-20.172045570999956],[-49.98073958299989,-20.304480143999854],[-50.055824503999986,-20.352193457999874],[-50.1822705429999,-20.37778005499996],[-50.209651537999946,-20.45112070199997],[-50.305450488999895,-20.45019986599982],[-50.394931496999845,-20.53734902799988],[-50.311042559999976,-20.65580744899995],[-50.268497527999955,-20.672538229999873],[-50.16732460399987,-20.518321939999964],[-50.09910161199997,-20.613176585999895],[-49.969314545999964,-20.681440816999896],[-49.856487591999894,-20.649347515999978],[-49.74328948599998,-20.702046719999885],[-49.58591053699996,-20.701186736999887],[-49.5060345199999,-20.773465731999977],[-49.40004753299996,-20.825071936999905],[-49.33835957599996,-20.65957125799997],[-49.21768950699993,-20.68635060099996],[-49.17741362399994,-20.75104397399997],[-49.18098062599995,-20.89975854999983],[-49.06682949799995,-20.79951618399997],[-49.05456560099998,-20.729068131999952],[-48.986312600999895,-20.693886098999883],[-48.978420535999874,-20.588123244999963],[-49.13169453299997,-20.50108103599996],[-49.14288353499995,-20.4511627789999],[-49.09142652899993,-20.21282621199998],[-48.9999425819999,-20.227059521999934],[-48.98612953999992,-20.30319938899993],[-49.009799531999874,-20.41310910699991],[-48.90710847799994,-20.473736585999916],[-48.827842495999846,-20.440300335999893],[-48.74024154899996,-20.515257348999967],[-48.72951556299995,-20.62127316899995],[-48.61213254099994,-20.873389081999903],[-48.52106450399998,-21.001826828999924],[-48.48803762599982,-21.126175044999968],[-48.51099046199994,-21.177682342999958],[-48.60575055999993,-21.247569477999946],[-48.53494661199994,-21.36207314899991],[-48.5217055519999,-21.48395339699988],[-48.61460453199993,-21.48162658099983],[-48.65597961699996,-21.36337787599996],[-48.859947531999865,-21.339884406999886],[-48.87763552699994,-21.24334164599992],[-48.993350549999946,-21.226954521999915],[-49.06426949799993,-21.37687139899998],[-49.137512578999974,-21.46271851599988],[-49.12184948399994,-21.546794871999907],[-49.14363052999994,-21.693312047999882],[-49.07567257399995,-21.713108929999976],[-48.99087956499994,-21.79051982999988],[-48.8667335209999,-21.860276038999928],[-48.7933125749999,-21.973607751999964],[-48.64819349999982,-22.12118088099993],[-48.574592510999935,-22.147323701999824],[-48.52774052199993,-22.266374219999932],[-48.38180957599997,-22.33458145399993],[-48.39757560099997,-22.382329132999814],[-48.50740853999986,-22.398190040999964],[-48.50764055099995,-22.539051611999867],[-48.64311959899993,-22.67066676999997],[-48.72631853699994,-22.63469683799991],[-48.738445474999935,-22.53449286199998],[-48.7883875359999,-22.489970203999974],[-48.8386035179999,-22.353798642999948],[-48.829177564999895,-22.236502792999886],[-48.93097661799993,-22.10733883799992],[-48.98670956799998,-21.977071657999886],[-49.100116550999985,-21.94569031499998],[-49.197509571999944,-21.95703572399998],[-49.33616653499996,-22.009154062999983],[-49.35108162799992,-22.078587065999955],[-49.44380961699983,-22.13315124499985],[-49.46628149999992,-22.248760990999926],[-49.34177754799998,-22.275292564999972],[-49.272495585999934,-22.337478406999935],[-49.26856246199986,-22.432415194999976],[-49.364482614999986,-22.40811354399989],[-49.4649844839999,-22.460751895999977],[-49.50935358599992,-22.351530499999967],[-49.623378481999964,-22.503252670999927],[-49.69704049099994,-22.475489124999854],[-49.91819348599995,-22.484862439999915],[-50.005226474999915,-22.43687118299988],[-50.20090451999988,-22.43103855199996],[-50.25524858899996,-22.38732575299997],[-50.48155947199996,-22.33532861699996],[-50.63777551599992,-22.34579811699996],[-50.6940004839999,-22.396067407999908],[-50.78958854699994,-22.372026432999917],[-50.91003750099998,-22.289150867999865],[-51.02890059999993,-22.300210285999924],[-51.012489503999916,-22.217022914999973],[-51.02021761799995,-22.061238202999903],[-51.077442547999965,-22.027641020999965],[-51.19828058999991,-22.138466879999953],[-51.25472248199998,-22.155277121999916],[-51.34680154499995,-22.276522692999947],[-51.312221499999964,-22.36489695399996],[-51.33213455499998,-22.458511915999964],[-51.277450515999874,-22.580635406999875],[-51.20178254999996,-22.542520545999935],[-51.13265246799989,-22.588361174999818],[-51.06706658999997,-22.57806970599995],[-50.96212750899991,-22.49751877899996],[-50.86375447599994,-22.58465922299996],[-50.66416560299996,-22.61866544299994],[-50.5400395069999,-22.717238467999948],[-50.42913049999993,-22.688894726999933],[-50.30266954099994,-22.72638882399997],[-50.16685856999993,-22.698034521999887],[-49.85881055199991,-22.772454422999942],[-49.67350762799998,-22.7129236319999],[-49.54099661099997,-22.718583260999935],[-49.43036252999991,-22.872963164999874],[-49.30679651299994,-22.939546656999937],[-49.302761464999946,-23.125018225999952],[-49.27354852099995,-23.422769745999915],[-49.25539046899996,-23.49984972799996],[-49.28169656899996,-23.65578112199995],[-49.33351148299994,-23.69486208099994],[-49.29533761399995,-23.791644228999814],[-49.30813258899997,-23.854121929999963],[-49.538040481999985,-23.860095544999922],[-49.678501564999976,-23.891597083999955],[-49.716045618999885,-23.965472327999976],[-49.660568483999896,-24.059309745999826],[-49.56585348099998,-24.063087637999956],[-49.60153960099984,-24.147224343999824],[-49.682380542999965,-24.21388494899992],[-49.74883260599995,-24.221416759999954],[-49.84993746899994,-24.170808001999887],[-49.86642450499983,-24.07407195399992],[-49.97766158099995,-24.0914531709999],[-50.04262149799996,-24.175611837999895],[-50.32053355599999,-24.31780981999998],[-50.183143601999916,-24.33856575899995],[-50.19506048899996,-24.40213059199982],[-50.299175628999876,-24.41671594199994],[-50.433185496999954,-24.388839240999914],[-50.454841484999974,-24.436719018999952],[-50.37387447899994,-24.642217803999984],[-50.20696647999989,-24.713381502999937],[-50.16179657099997,-24.8032401989999],[-50.15488854199998,-25.20313476499996],[-49.94961958799996,-25.28378895799989],[-49.855682593999916,-25.256744243999947],[-49.81716959199997,-25.37770466199993],[-49.76205857899993,-25.45204929399995],[-49.76970656299994,-25.520025857999883],[-49.67113454299982,-25.527031452999893],[-49.62955057999994,-25.45177419999993],[-49.69749059999998,-25.332213726999896],[-49.77242648999999,-25.28973189499993],[-49.80358856199996,-25.18680061499998],[-49.976623565999944,-24.971961874999977],[-50.04316749499992,-24.84180835299992],[-50.16159456699995,-24.709206811999934],[-50.140396565999936,-24.60511866199994],[-50.056621622999955,-24.489229294999973],[-49.88718446799993,-24.449043433999975],[-49.76484656799988,-24.378186008999876],[-49.59086256499995,-24.331240142999945],[-49.43616850699988,-24.257501858999944],[-49.37309250599998,-24.389812211999867],[-49.21186056299996,-24.363688501999945],[-49.07213256099993,-24.211228220999942],[-48.96112850299983,-24.150667126999906],[-48.851882464999846,-24.14514747599992],[-48.86062260999995,-23.919801516999883],[-48.75109460499982,-23.90160859599996],[-48.58218752099998,-23.928373186999977],[-48.384822534999955,-23.92705940699983],[-48.404716478999944,-23.852515956999923],[-48.7477455319999,-23.8131939349999],[-48.89604553899994,-23.72903023899994],[-48.82337158799993,-23.68525356999993],[-48.63897357399998,-23.723926665999898],[-48.589866517999894,-23.645750498999917],[-48.47384253799993,-23.635078156999896],[-48.37461454999993,-23.656149087999836],[-48.24976761099998,-23.645987538999975],[-48.10232959899997,-23.692887974999906],[-47.99122948399997,-23.683271585999876],[-47.91442157899985,-23.630864238999948],[-47.95196546399984,-23.482972597999947],[-47.99938960199995,-23.467302461999964],[-48.20390351299983,-23.502609720999885],[-48.29443762299985,-23.556768046999935],[-48.45235452299994,-23.558321883999895],[-48.58798260099991,-23.454297268999937],[-48.78859758699997,-23.45198134899988],[-48.881240582999965,-23.53688114399995],[-48.953319585999964,-23.399489847999916],[-48.851055505999966,-23.37146445199994],[-48.69266553099982,-23.36114297599994],[-48.551784513999905,-23.391683445999888],[-48.50523360299985,-23.43507907399993],[-48.37136052799997,-23.471536496999818],[-48.32470350199992,-23.456440018999956],[-48.2897915339999,-23.35605415499998],[-48.32301354299989,-23.188296900999944],[-48.46332961899998,-23.184262187999877],[-48.63554755499996,-23.21039176499994],[-48.60618256299995,-23.097730436999825],[-48.390388621999875,-23.03149211199991],[-48.371028604999935,-22.96173556699989],[-48.2365984679999,-23.014145762999874],[-48.22285449299994,-23.092437767999968],[-48.06614659899992,-22.90756449999992],[-48.01541160999989,-22.93913862599993],[-47.90307952299992,-22.900867693999885],[-47.695083600999965,-22.8571119799999],[-47.693290543999865,-22.75399026399998],[-47.8069224969999,-22.619587619999947],[-47.68298750899993,-22.385971739999945],[-47.62972252599991,-22.32687999399991],[-47.60580862099994,-22.200776606999852],[-47.46414557199989,-22.183540563999884],[-47.44502661899992,-22.117222107999908],[-47.48057561099989,-22.012838746999932],[-47.455429565999964,-21.94388753499993],[-47.54167549399989,-21.914464204999945],[-47.52292651799996,-21.86076202199996],[-47.5492175309999,-21.762688222999884],[-47.62898257099988,-21.75457470799995],[-47.64640837999991,-21.696029796999937],[-47.53627050799997,-21.601747131999844],[-47.50815156999988,-21.72832694599998],[-47.355083600999876,-21.70358239399991],[-47.252365555999916,-21.72167439699996],[-47.21957052199991,-21.548187943999892],[-47.30685060899992,-21.42624265199987],[-47.36087750699994,-21.39386822199998],[-47.39178460199986,-21.20570371599996],[-47.24075360299997,-21.23255916599993],[-47.14489748799997,-21.22702258299995],[-47.089347597999904,-21.282119347999924],[-47.19525562699994,-21.395791365999912],[-47.207645587999934,-21.486868287999982],[-47.15954251699998,-21.521818476999954],[-47.13284648999996,-21.62319373999992],[-47.19613656499996,-21.801902956999925],[-47.18091150799995,-21.98745515899998],[-47.24805457599996,-22.183580461999895],[-47.332645580999895,-22.29034897699995],[-47.26956957999994,-22.303817186999936],[-47.219673618999934,-22.431290343999876],[-47.34234646099992,-22.43850900699988],[-47.52299156199996,-22.600043535999816],[-47.523525488999894,-22.701923221999948],[-47.428535558999954,-22.705565996999894],[-47.159061562999966,-22.79601712599998],[-47.0677796199999,-22.764196906999814],[-47.048767618999875,-22.69899726799997],[-46.91428350299998,-22.524983424999903],[-46.78067361999996,-22.479022767999936],[-46.755313500999875,-22.332258827999965],[-46.78684655599989,-22.15471821699998],[-46.77379962099997,-22.043030026999872],[-46.81282861199992,-21.913948047999952],[-46.86694754299998,-21.83263034399988],[-46.927215605999834,-21.62702175599992],[-46.94751758199982,-21.280637594999973],[-46.91383356299997,-21.196320174999983],[-47.06213759299982,-21.100986586999966],[-47.12682761299993,-21.092165974999887],[-47.13083248699985,-20.958588445999965],[-47.02503157799998,-20.93872936999992],[-46.919387578999874,-20.953121600999964],[-46.848686560999965,-20.921915439999964],[-46.965976543999886,-20.700886832999856],[-46.97147356399995,-20.61888549999992],[-46.86851847899993,-20.59686976099988],[-46.81658554799992,-20.692121205999968],[-46.65624661399994,-20.7705717959999],[-46.56139347699997,-20.789981769999883],[-46.475406549999946,-20.874999077999973],[-46.34719846699994,-20.843102751999822],[-46.20616154699991,-20.88683533099993],[-46.09330357899995,-20.981326201999934],[-46.00632054599993,-20.97462235599994],[-45.99146261699991,-21.0581517089999],[-45.91427953799996,-21.018918031999817],[-45.75358554599984,-21.089461134999908],[-45.7538225859999,-21.19903021199997],[-45.581302566999966,-21.195546189999902],[-45.54763447299996,-21.089560208999956],[-45.44034158599993,-21.151831546999972],[-45.344734580999955,-21.128228107999917],[-45.45939247899997,-20.987736681999934],[-45.405860615999984,-20.75832147699998],[-45.27126351199996,-20.764049166999882],[-45.27007261099993,-20.68530168899997],[-45.310184543999924,-20.61276469899991],[-45.435127539999826,-20.570972026999925],[-45.48212051199994,-20.390478302999895],[-45.64085062399994,-20.467066937999903],[-45.68651154499997,-20.382192791999955],[-45.75534054899998,-20.347854648999885],[-45.88419353499984,-20.331011717999957],[-45.937015617999975,-20.27957968899989],[-45.86476562399997,-20.21108143499987],[-45.741405466999936,-20.25453389199987],[-45.65349556399991,-20.232881256999974],[-45.57879654499993,-20.280493483999976],[-45.541656499999874,-20.21989299499984],[-45.38090148799995,-20.12492720499995],[-45.213684530999956,-20.116071723999823],[-45.1274416199999,-20.02707804099998],[-45.047714465999945,-20.028527942999972],[-45.02367047399997,-20.163627122999856],[-45.09191861199997,-20.372256380999886],[-45.04323953499994,-20.490863495999918],[-44.92272553699996,-20.476845433999927],[-44.66075149999995,-20.329821822999975],[-44.63047455699996,-20.173977599999944],[-44.64130347299994,-20.009651896999912],[-44.80817459299993,-19.75817032599997],[-45.033260543999916,-19.645855840999843],[-45.018943582999896,-19.57767794299997],[-44.93029758099988,-19.618416339999953],[-44.78630855399996,-19.647346813999945],[-44.77474957399994,-19.54521080899997],[-44.64526760999985,-19.622846342999935],[-44.531806480999876,-19.864234425999882],[-44.229850597999985,-19.90420990099983],[-44.03982547699991,-19.877935651999962],[-43.8346596209999,-19.82876724099998],[-43.693962502999966,-19.842176608999864],[-43.566173515999935,-19.8757506579999],[-43.5260205109999,-19.830695077999962],[-43.449729601999934,-19.83513581099993],[-43.38023356599996,-19.734476696999934],[-43.33921856699993,-19.630324844999905],[-43.36223259099995,-19.562829736999845],[-43.35671646099996,-19.429603408999924],[-43.31589860399998,-19.29486247099993],[-43.37170447699992,-19.170800580999924],[-43.52413156599994,-19.031576666999968],[-43.42066551999983,-19.21934973799995],[-43.43524148199998,-19.299282080999944],[-43.50048856399991,-19.334005120999848],[-43.54928548899983,-19.279648310999903],[-43.58124149499997,-19.14299127099997],[-43.579788575999885,-19.002525324999965],[-43.65060057099987,-18.858608885999956],[-43.69768155299988,-18.699774334999972],[-43.69643348799991,-18.620103171999972],[-43.63678350599997,-18.591965625999876],[-43.58024253999997,-18.491755614999875],[-43.65874057199994,-18.42872940299992],[-43.80823147999996,-18.460555656999873],[-43.84504647499995,-18.40564798799994],[-43.81871757599998,-18.27987937499995],[-43.81414759499995,-18.0530392579999],[-43.86965557499997,-18.06214753699993],[-43.948722570999905,-18.01082464099983],[-43.991455524999935,-18.11490725899995],[-43.853790476999905,-18.612028548999888],[-43.70133958299988,-18.886229435999837],[-43.617671592999955,-19.101600761999862],[-43.596809538999935,-19.262466079999854],[-43.67103548299991,-19.264526016999923],[-43.77912850599989,-19.079295008999907],[-43.882804601999965,-18.824291865999953],[-43.94339754799995,-18.736555299999964],[-44.07736248899988,-18.45727196199988],[-44.210823509999955,-18.457406910999964],[-44.23149847999997,-18.409935666999957],[-44.23091560299997,-18.24502255999988],[-44.18354058299997,-18.073527814999977],[-44.122848562999934,-18.028467541999873],[-44.101158544999976,-17.948556320999955],[-44.02052647999989,-17.864634526999907],[-43.930751602999976,-17.711920776999932],[-43.87309249099991,-17.50350743599995],[-43.88968262399993,-17.39673020399988],[-43.85148947699986,-17.2964593399999],[-43.799076597999886,-17.272454742999912],[-43.766006468999876,-17.405329533999975],[-43.782760552999946,-17.454171721999955],[-43.70784360499988,-17.502384596999946],[-43.65497257099986,-17.684914619999972],[-43.674583542999926,-17.77370395299988],[-43.660865551999905,-17.812881806999883],[-43.67407258199995,-17.99918234499995],[-43.5747145069999,-18.221035899999947],[-43.5198095209999,-18.297754453999914],[-43.505939482999906,-18.426705507999884],[-43.37189055499988,-18.34314866199992],[-43.32608060399991,-18.20047408599993],[-43.232879540999875,-18.184842170999843],[-43.17746359399996,-18.071799968999983],[-43.15585353899991,-17.819612139999947],[-43.08869152799997,-17.900897321999878],[-42.954807555999935,-17.975212783999893],[-42.91048455499998,-17.952531353999973],[-42.74326357399991,-17.940271814999903],[-42.77909855699994,-17.827086952999878],[-42.76794861499991,-17.758288961999938],[-42.70820257599985,-17.677965854999968],[-42.68822447799994,-17.58475255299993],[-42.6118395229999,-17.58813532199997],[-42.50364256399996,-17.63890635399997],[-42.49703561299998,-17.71651137799995],[-42.320972562999884,-17.739370168999926],[-42.27275449199993,-17.667812519999927],[-42.334270619999984,-17.598959543999854],[-42.28264262299996,-17.524905261999947],[-42.26654048399996,-17.43093205699995],[-42.340312463999965,-17.315456923999875],[-42.30245257999991,-17.14973244899994],[-42.2412645199999,-17.032067626999947],[-42.10562554499995,-17.09763355599995],[-42.01517860699994,-17.042192965999902],[-41.98952059499993,-16.975838132999968],[-42.03202857899993,-16.886381599999936],[-41.86988049399997,-16.840241402999936],[-41.822864555999956,-16.86942467499989],[-41.69215346899995,-16.86395397399997],[-41.59566150299992,-16.78317204099983],[-41.67840949499998,-16.61794025399996],[-41.855838459999916,-16.537623516999872],[-42.04446749099992,-16.609319801999902],[-42.15658550499995,-16.57580409199994],[-42.245803487999865,-16.484005655999965],[-42.213306513999896,-16.396839394999972],[-42.26418349299996,-16.287485229999845],[-42.284404498999834,-16.155535465999947],[-42.24299957399995,-16.10394066099991],[-42.2679484759999,-16.00172821299998],[-42.37311956799988,-15.974178908999932],[-42.41040746999994,-15.911230815999943],[-42.283424486999934,-15.760911608999834],[-42.14353957499992,-15.80520761999992],[-42.11051554699998,-15.93391459299994],[-42.04317852199995,-15.996834522999961],[-41.91733547799993,-16.012521421999907],[-41.78564856999992,-15.953183414999955],[-41.76214956899992,-15.860025266999969],[-41.87102546199992,-15.772013774999948],[-41.934452496999825,-15.801453868999943],[-41.9783555649999,-15.880304778999971],[-42.074092489999884,-15.80587951299998],[-42.066436458999874,-15.766916068999876],[-41.955368530999976,-15.69003306199994],[-42.03569046499996,-15.567032990999962],[-42.129661489999876,-15.57258365499996],[-42.112518486999875,-15.456131023999944],[-42.20771746099996,-15.4605756119999],[-42.27130157299996,-15.302277000999936],[-42.322841559999915,-15.314897128999974],[-42.33792160999991,-15.537516789999927],[-42.415283558999874,-15.463759394999897],[-42.468799495999974,-15.27860650599996],[-42.47941953499998,-15.169640590999961],[-42.562347569999986,-15.078182459999937],[-42.63341856599993,-15.15104869199996],[-42.599712585999896,-15.283027959999913],[-42.59626058299983,-15.518108157999961],[-42.63446060399991,-15.582952907999925],[-42.65672645899997,-15.650110727999902],[-42.541511499999956,-15.764341147999971],[-42.504253604999974,-15.85902329399994],[-42.57855649499993,-15.98076255899997],[-42.686454554999955,-16.056219636999913],[-42.68153353999992,-15.8566793789999],[-42.77015657599998,-15.824319364999894],[-42.77841157699993,-15.494342444999916],[-42.714321532999975,-15.409628057999953],[-42.73238755199992,-15.05436796499987],[-42.705123567999976,-14.907665547999954],[-42.79646250799982,-14.801788196999894],[-42.92794456199994,-14.78456539799987],[-42.91944849699996,-14.855233725999938],[-42.846603555999934,-14.893380270999955],[-42.841735513999936,-14.95317039799994],[-42.888050557999975,-15.131009069999948],[-42.84634354899998,-15.317708922999941],[-42.89823155299996,-15.598182992999966],[-42.90345750199998,-15.802128946999915],[-42.960239531999946,-15.85772443399992],[-43.05031950999995,-15.824170334999849],[-43.11334656099996,-15.907584017999909],[-43.21995548399997,-15.834259798999938],[-43.230945499999905,-15.957091058999879],[-43.390560573999835,-16.095984055999963],[-43.4792255189999,-16.368765047999943],[-43.50330756499994,-16.511230915999874],[-43.566699563999975,-16.62567088399993],[-43.674217588999966,-16.612281798999845],[-43.853721576999874,-16.71697210499991],[-43.91633657399984,-16.604203152999958],[-43.849121588999935,-16.471085454999923],[-43.850311483999974,-16.386000922999813],[-43.89671353199998,-16.274269985999922],[-43.98528258899995,-16.236720233999904],[-44.07143346599986,-16.2876072709999],[-44.074546504999944,-16.158516405999933],[-44.218780617999926,-16.11920561599993],[-44.173423457999945,-16.06078559399998],[-44.205757487999904,-15.994908696999971],[-44.0808525459999,-15.797190329999921],[-44.120063591999894,-15.718143114999918],[-44.119819510999946,-15.597140954999873],[-44.22304952199988,-15.676316747999977],[-44.3697584759999,-15.819613596999943],[-44.430656522999925,-15.839152651999939],[-44.61691246999993,-15.820443572999977],[-44.663932599999896,-15.9346014059999],[-44.617790557999854,-15.992181895999863],[-44.68501258399988,-16.033898292999936],[-44.79553954399995,-16.22702186899994],[-44.87822349899989,-16.27985970999987],[-44.699615534999964,-16.420319787999972],[-44.676811561999955,-16.51847656799987],[-44.786148459999936,-16.57628085499988],[-44.803859588999956,-16.682765222999876],[-44.74910748899998,-16.75192011499996],[-44.74650155499984,-16.854160725999918],[-44.64590446699998,-16.793774477999932],[-44.62216959999989,-16.880492139999888],[-44.74591046299997,-16.92814392999992],[-44.85716245799989,-16.896781865999912],[-44.91944452499985,-16.715476270999943],[-44.910610501999884,-16.56333684899994],[-44.971626565999884,-16.354413050999938],[-44.96647655699991,-16.298478263999982],[-44.89397460299995,-16.154940518999922],[-44.99143954099998,-16.017602196999917],[-45.12660259199993,-15.942767894999974],[-45.08800560399993,-15.88805150099995],[-44.938240607999944,-15.815012099999876],[-44.78715546199993,-15.71458030399998],[-44.70387253599989,-15.61519373099992],[-44.641807560999894,-15.587744505999922],[-44.55512258899995,-15.454563943999972],[-44.520225540999945,-15.29995102199996],[-44.482738483999924,-15.227456779999955],[-44.456565488999956,-15.051242017999868],[-44.35223359299994,-15.068521981999936],[-44.27646655299998,-14.809139628999958],[-44.345207545999926,-14.777216982999903],[-44.47351051199996,-14.621031113999948],[-44.45969747099991,-14.540722422999977],[-44.533500463999985,-14.486483797999938],[-44.59239154799985,-14.382531769999957],[-44.59291860199994,-14.291603710999937],[-44.66111762199995,-14.149208083999952],[-44.63600946299988,-14.083677190999936],[-44.57254051899997,-14.076149906999945],[-44.48341356299994,-13.831459018999965],[-44.52259057799995,-13.666656888999853],[-44.50366558199994,-13.587366263999911],[-44.54745851199988,-13.476076717999888],[-44.73144547699985,-13.448468404999971],[-44.7442096069999,-13.288477989999876],[-44.65811958299997,-13.088359380999975],[-44.56935858099996,-13.028050748999874],[-44.452171526999905,-13.141952095999898],[-44.420177467999906,-13.254375377999963],[-44.29847357499989,-13.215489885999887],[-44.2546315269999,-12.982203749999883],[-44.330661591999956,-12.913549257999932],[-44.44782651699995,-12.663869292999891],[-44.39761355199994,-12.595218823999971],[-44.296218506999935,-12.617111181999917],[-44.15194348999995,-12.586615470999902],[-44.102848503999894,-12.520307743999979],[-44.104949511999905,-12.397163336999938],[-44.072677507999856,-12.311816953999823],[-44.07681246899995,-12.186390657999937],[-44.14730846499998,-12.08945713299994],[-44.14351649199983,-12.012150336999866],[-44.3961715289999,-12.058249462999925],[-44.393768604999934,-12.015008397999907],[-44.288513526999964,-11.969240356999876],[-44.20382646499985,-11.807007447999979],[-44.06187457599998,-11.646821398999975],[-43.932762588999935,-11.62544503099997],[-43.7800754939999,-11.656735848999972],[-43.69928752599998,-11.738695103999873],[-43.629989470999874,-11.929466214999934],[-43.47625748699994,-12.06919471999987],[-43.45073660399987,-12.14100449599988],[-43.469268488999944,-12.211354815999925],[-43.45590957899998,-12.320876450999947],[-43.39132651199998,-12.364782367999908],[-43.43553954299995,-12.565505647999885],[-43.47869846499998,-12.572445192999965],[-43.56639848599991,-12.463920836999932],[-43.640201478999984,-12.244095534999872],[-43.69789847699991,-12.223409165999954],[-43.75248746499989,-12.270726685999932],[-43.82717156399997,-12.238746036999828],[-43.83741760199996,-12.371758961999944],[-43.747207536999895,-12.412354194999978],[-43.76638046999983,-12.477544781999882],[-43.882385506999924,-12.51822886399998],[-43.93074053899994,-12.588785210999959],[-43.83393056299991,-12.684012850999977],[-43.768501593999986,-12.71608469499995],[-43.515197462999936,-12.793418312999904],[-43.38042450599994,-12.761629609999886],[-43.25701958999997,-12.533774947999916],[-43.32795747999995,-12.210835807999956],[-43.39817050399995,-11.97495295899995],[-43.530334508999886,-11.897286411999914],[-43.559455587999935,-11.776793703999942],[-43.64877348299996,-11.673737701999926],[-43.69260446699991,-11.520679287999883],[-43.88687854199998,-11.274865224999928],[-43.99834461099988,-11.153854347999925],[-44.06110360899993,-10.99444965999993],[-44.1025695539999,-10.83731361799994],[-44.17887152799989,-10.66186881699997],[-44.16098756399998,-10.569553217999896],[-44.31892357399988,-10.530868722999855],[-44.42279848899989,-10.347828576999973],[-44.578590575999954,-10.349771333999968],[-44.687972568999896,-10.40532172699983],[-44.837371610999924,-10.616311831999894],[-44.90209147099995,-10.5800324409999],[-44.87646447199984,-10.462376503999963],[-44.81234760699988,-10.349701428999879],[-44.926300586999844,-10.288116736999825],[-44.90209951799994,-10.213734051999893],[-44.772407502999954,-10.187473883999871],[-44.71876550199988,-10.256971930999953],[-44.593009461999884,-10.22373114699991],[-44.53266160299995,-10.158936017999963],[-44.544937569999945,-10.06484446099995],[-44.647560563999946,-10.02940979799996],[-44.68905651699998,-9.984699049999904],[-44.63483448799991,-9.901860867999915],[-44.473922565999885,-9.81368827599988],[-44.407150480999974,-9.80792538199995],[-44.36838551999995,-9.684512083999948],[-44.35964956599997,-9.528748159999907],[-44.29256450099996,-9.454859335999913],[-44.2514574679999,-9.48251358199991],[-44.18045855699995,-9.433541976999948],[-44.08747860799997,-9.444329318999962],[-44.1074215029999,-9.306229919999907],[-44.07984956699988,-9.229696605999948],[-44.09734360499988,-9.158505413999876],[-44.011283587999856,-9.111595757999964],[-43.96576650099996,-9.000742740999897],[-43.82726259099991,-8.94563759499988],[-43.72602847899992,-8.999875716999952],[-43.71322646299984,-8.945175584999845],[-43.74633749499998,-8.776828579999972],[-43.82246361599988,-8.695037465999917],[-43.92935953699998,-8.703637968999942],[-43.91912053899995,-8.55373969999988],[-43.77238459499995,-8.402830573999893],[-43.70082057599984,-8.25205824099993],[-43.68994857699994,-8.136275491999925],[-43.717704578999985,-7.98481148399992],[-43.697532522999836,-7.865501964999964],[-43.68848459399993,-7.612622292999959],[-43.67189747799995,-7.477518083999826],[-43.62796758799993,-7.398742610999875],[-43.524055457999964,-7.320313477999946],[-43.32479850899989,-7.215723921999938],[-43.23227654699997,-7.23483566699997],[-43.23980751899995,-7.436405015999924],[-43.17681852199996,-7.509070584999961],[-42.9950145389999,-7.55685145599989],[-42.90761961999982,-7.541804430999946],[-42.72624546099996,-7.453719680999939],[-42.624145497999905,-7.330625732999977],[-42.50917059699992,-7.261290629999905],[-42.43174745999988,-7.156297234999897],[-42.39471051199996,-7.155853160999925],[-42.33588061599988,-7.251609363999933],[-42.18896060599991,-7.197859403999928],[-42.13472751299997,-7.043152605999978],[-42.16610349099989,-6.913552791999962],[-42.051937610999914,-7.005761102999941],[-42.003250487999935,-7.206749753999929],[-41.91402445799997,-7.330309567999961],[-41.81750147899987,-7.313642823999942],[-41.88339245799989,-7.243250091999926],[-41.96999361099995,-7.10039530499995],[-41.93635150099993,-7.001943648999941],[-41.83931353799983,-7.047379263999971],[-41.687438480999845,-6.977684241999896],[-41.67124548199985,-6.877824594999936],[-41.59521860299998,-6.845261738999966],[-41.473701458999926,-6.720670782999889],[-41.56489958299994,-6.598417874999939],[-41.65867648299985,-6.647434406999878],[-41.63564250999997,-6.283712781999952],[-41.57001857899991,-6.251740179999956],[-41.49459050199994,-6.284679718999939],[-41.40127561299994,-6.381008572999974],[-41.372337594999976,-6.356165450999924],[-41.396602533999896,-6.200724731999969],[-41.441066518999946,-6.162024814999825],[-41.42488458399998,-6.056682396999975],[-41.46907850399998,-5.862584675999926],[-41.54006953599992,-5.822609535999959],[-41.535892497999896,-5.731932262999919],[-41.72154260099995,-5.684711637999953],[-41.91260959299996,-5.860867894999899],[-41.9846074589999,-5.98885938899997],[-42.169628583999895,-6.175544656999875],[-42.35255456899989,-6.437994450999895],[-42.55688860399994,-6.417921133999926],[-42.64232249399993,-6.338790938999978],[-42.741702528999895,-6.339300725999976],[-42.81726857099994,-6.384109374999923],[-42.91825860199998,-6.401636101999941],[-42.901752622999936,-6.326317660999905],[-42.83877955199995,-6.284278895999876],[-42.862682560999986,-6.209414083999945],[-42.96297052399996,-6.158955026999934],[-43.003387557999986,-6.102779008999903],[-43.01621253999991,-5.985563624999941],[-43.121383464999894,-6.04158340399988],[-43.11307146599995,-6.132972970999901],[-43.149314480999976,-6.264554098999952],[-43.30515652399998,-6.125492289999954],[-43.306152461999886,-6.04283331299996],[-43.48177361799998,-6.070888213999979],[-43.52034361599988,-5.971430729999952],[-43.671424570999875,-5.976954236999916],[-43.71415752499996,-5.91726351899996],[-43.798168501999896,-5.924835059999907],[-43.85323760599988,-5.813355243999979],[-43.98338660199994,-5.882680121999897],[-44.0593264769999,-5.859269968999968],[-44.094253532999915,-5.759452230999898],[-44.179981458999976,-5.657970684999952],[-44.3203355899999,-5.638959019999959],[-44.47644451299993,-5.56701630699996],[-44.657207463999896,-5.513992218999874],[-44.83813453199991,-5.422180874999981],[-44.788314510999896,-5.196430573999976],[-44.78858960499991,-5.020115396999927],[-44.80990260599998,-4.969605376999937],[-44.91991860499991,-4.989023731999907],[-45.00339548799997,-4.940444400999979],[-45.105205603999934,-4.754647278999926],[-45.18720257799998,-4.713894297999957],[-45.39828454899998,-4.743109924999942],[-45.39377558799998,-4.846652244999973],[-45.33613256899997,-4.88247867899986],[-45.29051255199994,-5.007508343999973],[-45.36005049799991,-5.031320659999949],[-45.460342483999966,-4.89085404399998],[-45.52422750599993,-4.875715320999973],[-45.57312048799997,-4.967255426999941],[-45.71448162099989,-5.051403364999942],[-45.84627162599992,-5.182051586999876],[-46.03018550099995,-5.200249368999948],[-46.13978156699994,-5.127113575999886],[-46.1861725519999,-5.262082835999877],[-46.31031054999994,-5.274993649999828],[-46.36440651399988,-5.242372287999899],[-46.44305759999992,-5.052845219999938],[-46.58595262099993,-5.054782947999968],[-46.663066464999986,-5.095902888999888],[-46.738494541999955,-5.264993535999906],[-46.79737456199996,-5.189004207999972],[-46.844623516999945,-5.226977246999922],[-46.857471465999936,-5.332536420999929],[-46.930301487999884,-5.290096497999969],[-46.92926062299995,-5.100252593999812],[-47.08912262799993,-5.037391169999978],[-47.205696460999945,-5.222632570999963],[-47.22373951299983,-5.311252085999968],[-47.28446153999994,-5.324454086999935],[-47.459117603999914,-5.193272775999901],[-47.59348252899997,-5.134105088999888],[-47.78989046999993,-5.00215297799997],[-47.90864946499994,-5.11997923499996],[-47.93694358499994,-5.216996914999868],[-47.80413048499992,-5.340438878999919],[-47.7270126169999,-5.373768343999927],[-47.628051509999864,-5.470208509999907],[-47.551040594999904,-5.496454427999936],[-47.486495581999975,-5.589078816999972],[-47.52441447299998,-5.665790162999883],[-47.588836607999895,-5.625813848999883],[-47.70032446999983,-5.661422352999978],[-47.80611448099995,-5.610019157999886],[-47.91988356199994,-5.669648687999938],[-47.79434947499993,-5.887061677999952],[-47.72062661299998,-5.971667769999954],[-47.71587357099992,-6.072394106999923],[-47.788223476999974,-6.145799964999924],[-47.73514557799996,-6.223535243999947],[-47.74415562099989,-6.322002991999966],[-47.8453136249999,-6.388631243999953],[-47.83458747099991,-6.551192388999937],[-47.875602470999866,-6.729921386999933],[-47.83493850499991,-6.854602196999906],[-47.88409451199993,-6.981848874999969],[-48.01699059299989,-7.022835039999904],[-48.13883261999996,-7.199643072999891],[-48.17645261299998,-7.290243567999823],[-48.188713492999966,-7.42890958299995],[-48.2553176049999,-7.52194585899997],[-48.264846486999886,-7.775211433999914],[-48.32704154999993,-7.815558729999964],[-48.32894155999992,-7.926716680999959],[-48.396766578999916,-8.01179936799997],[-48.45264453699997,-8.20571855399993],[-48.37817350599994,-8.326874940999971],[-48.492378613999904,-8.383546664999926],[-48.474723475999895,-8.459127458999944],[-48.40630350899994,-8.502352263999967],[-48.433731610999985,-8.572396139999967],[-48.41719847399992,-8.645660176999968],[-48.46201349299997,-8.711215376999917],[-48.5245134889999,-8.708084567999947],[-48.56195846799989,-8.86989888599993],[-48.533821592999914,-8.943121682999902],[-48.564720472999966,-9.016642708999939],[-48.643112557999984,-9.089274413999817],[-48.55365753399997,-9.139239944999929],[-48.50994155099994,-9.0816970059999],[-48.41934960599991,-9.12588287999995],[-48.38270560099994,-9.050032354999928],[-48.278282510999986,-9.0814919849999],[-48.254814522999936,-9.131763454999941],[-48.29556247399984,-9.287836168999888],[-48.29496752699998,-9.382942606999961],[-48.325477486999944,-9.506897710999965],[-48.31163762399996,-9.669516355999917],[-48.26334361199997,-9.771155146999945],[-48.30098757699983,-9.863089536999894],[-48.238586487999896,-9.98177728599984],[-48.24028751099996,-10.060847634999902],[-48.14480556399991,-10.088721820999979],[-48.128410560999896,-10.24552476599996],[-48.07612659599994,-10.376785704999975],[-48.0846255109999,-10.467344122999975],[-47.993614470999944,-10.497434986999963],[-47.985565496999925,-10.61187529099982],[-48.018478547999905,-10.699237185999891],[-48.11386158899995,-10.829578126999934],[-48.30424461699994,-10.898943236999969],[-48.35903158599996,-10.89256276499998],[-48.404838519999885,-10.98235842899993],[-48.465469518999896,-10.978304772999934],[-48.56116453499993,-11.098335302999942],[-48.550514487999976,-11.252989630999934],[-48.67387347199997,-11.28386655099996],[-48.72695958499986,-11.35080476499985],[-48.78414159899995,-11.491175155999883],[-48.83624250399987,-11.542065713999818],[-48.94636562399995,-11.492495137999924],[-48.95418560499991,-11.387039228999924],[-49.01554147099995,-11.292294889999823],[-49.12034660899997,-11.318286165999893],[-49.20474248399995,-11.254615552999894],[-49.24384355899997,-11.157344403999957],[-49.17757455599997,-10.943511157999922],[-49.18846851599989,-10.677381540999875],[-49.280380609999895,-10.684798015999888],[-49.29928548999993,-10.630979994999961],[-49.21817062799988,-10.567413149999936],[-49.141151498999875,-10.400608079999927],[-49.152137491999895,-10.301996664999933],[-49.20965561999992,-10.19215769199991],[-49.307357597999896,-10.174279929999955],[-49.36175547899995,-9.954192274999969],[-49.41259758899997,-10.01639588699993],[-49.481475542999874,-9.927144040999849],[-49.48058354099987,-9.849082705999933],[-49.234603516999925,-9.820505780999895],[-49.17907759899998,-9.775497977999976],[-49.16662561099997,-9.707750742999906],[-49.236419539999986,-9.66445452499994],[-49.33376361099994,-9.694695592999949],[-49.58288550799995,-9.808135432999904],[-49.61402846899995,-9.869093326999973],[-49.53930648399995,-9.988208887999974],[-49.61444052299993,-10.09182463399992],[-49.67635361899988,-9.986422871999878],[-49.747299555999916,-9.953355257999931],[-49.794738613999925,-10.014374171999975],[-49.918106481999985,-9.910227180999925],[-49.928733561999934,-9.835604437999962],[-49.88033259699995,-9.675833963999935],[-49.93495159299994,-9.63921946399995],[-49.93880458599995,-9.430193070999962],[-50.02130162399993,-9.31433555599989],[-49.83621260599995,-9.100371550999967],[-49.82101453899992,-9.185332700999936],[-49.691497538999954,-9.05299116699996],[-49.686691522999865,-9.142539732999978],[-49.74312553599998,-9.311475649999977],[-49.82601954099988,-9.35061796499997],[-49.86344959999997,-9.433471065999868],[-49.819290548999845,-9.47586187099995],[-49.7382435799999,-9.42169600099993],[-49.675476536999895,-9.482377459999952],[-49.58398454299993,-9.44077438599993],[-49.488388601999986,-9.604622990999928],[-49.403625599999884,-9.627262343999917],[-49.262351471999864,-9.556698118999975],[-49.219711556999926,-9.489967104999948],[-49.19140653999989,-9.309702709999897],[-49.264793622999946,-9.204409409999869],[-49.30759447099996,-9.226362619999975],[-49.39577460699991,-9.188802473999942],[-49.42606361999992,-9.125762682999948],[-49.4254374919999,-8.922600436999971],[-49.44528147999995,-8.859525944999916],[-49.41538255999984,-8.7779507489999],[-49.36326556299986,-8.788138784999887],[-49.332832548999875,-8.92233020499998],[-49.29678349199986,-8.972707621999916],[-49.14654558899997,-8.880415156999902],[-49.19187156799984,-8.819748449999963],[-49.296142611999926,-8.785654890999979],[-49.21774247999997,-8.677549797999916],[-49.11704246299996,-8.690999734999878],[-48.98027058999992,-8.75820399099996]],[[-49.759986572999935,-8.965869329999975],[-49.69644956699989,-8.880770213999881],[-49.65351159199997,-8.936950422999814],[-49.759986572999935,-8.965869329999975]],[[-49.47098559199998,-10.36345965299995],[-49.386032487999955,-10.375686502999883],[-49.36001556399998,-10.463945595999974],[-49.481224588999964,-10.41630168499995],[-49.47098559199998,-10.36345965299995]],[[-49.07682458299996,-14.96956623899996],[-49.040626495999845,-15.008274872999948],[-49.058597463999945,-15.116716751999832],[-49.11334956399992,-15.173872278999966],[-49.414066601999934,-15.223220062999872],[-49.475746512999876,-15.288605780999944],[-49.616935480999985,-15.306468454999958],[-49.83380146799993,-15.431369540999924],[-49.828403521999974,-15.536714808999932],[-49.93034758099992,-15.555293632999962],[-50.01219552499987,-15.599506663999932],[-50.02860662099988,-15.69876331699993],[-50.09250253899995,-15.71478649799991],[-50.11007352299998,-15.631635671999902],[-50.22693250799989,-15.448630394999896],[-50.21938359899997,-15.364596953999978],[-50.047260545999904,-15.373554357999922],[-49.93828557899997,-15.414457710999955],[-49.892555591999894,-15.333666724999887],[-49.87944746799997,-15.24256784299996],[-49.95528759899997,-15.16264874299992],[-49.87116262799998,-14.997911655999928],[-49.62392850299983,-15.075043437999852],[-49.47340058599991,-15.027058717999978],[-49.39362347499991,-15.026373748999902],[-49.27057260999993,-14.97815768899983],[-49.07682458299996,-14.96956623899996]],[[-44.99909959499996,-15.492580735999923],[-44.97293062299997,-15.56460508899994],[-45.072868556999936,-15.631448922999937],[-45.153442618999975,-15.60204470399998],[-45.11196845899997,-15.526772362999907],[-44.99909959499996,-15.492580735999923]],[[-49.39564552499996,-15.634170694999966],[-49.41235753199993,-15.690996812999913],[-49.31908052799997,-15.943092944999933],[-49.202964513999916,-15.971791239999902],[-49.082130494999944,-16.051810084999943],[-49.14776649699991,-16.110604441999953],[-49.16095357699999,-16.191372125999976],[-49.220729622999954,-16.22126433899996],[-49.26161554099997,-16.299694309999893],[-49.35848653699992,-16.332169155999964],[-49.446544464999874,-16.319547015999945],[-49.520572595999965,-16.185930593999956],[-49.60993960899992,-16.168683486999953],[-49.57037752899993,-16.395411285999955],[-49.57748052099993,-16.594088877999923],[-49.53112457299994,-16.66684614499991],[-49.613426480999976,-16.707862652999893],[-49.55105254799997,-16.78917951899996],[-49.558536581999874,-16.921356431999982],[-49.6461024919999,-16.982082817999924],[-49.67882946599997,-17.060185726999975],[-49.749340549999886,-17.043381016999888],[-49.80189860299993,-16.93869121399996],[-50.03182560699992,-16.873793490999958],[-50.145900626999946,-16.876778285999933],[-50.27522651999993,-16.980079878999845],[-50.45706956199996,-17.00480515199996],[-50.67186354299997,-17.049995344999957],[-50.827960563999966,-17.02531700999998],[-50.90015758399994,-17.057521119999933],[-50.9092864829999,-17.13704107399991],[-51.089462531999914,-17.180697545999863],[-51.19491961499995,-17.15988360399996],[-51.28482860199989,-17.20514772499996],[-51.303722585999935,-17.146005518999914],[-51.25337249299986,-17.070963010999947],[-51.17382052099998,-17.04094909199995],[-51.209457522999855,-16.950180791999912],[-51.18887357999989,-16.885235793999982],[-51.108287615999984,-16.852873600999942],[-51.073425604999954,-16.78517783099994],[-50.99675750999995,-16.77931318099985],[-50.90783356399993,-16.84650721099996],[-50.84251758299996,-16.85816945499988],[-50.672676586999955,-16.836495697999908],[-50.5583995639999,-16.902676522999855],[-50.43576460899993,-16.872075535999954],[-50.49529657299996,-16.76163541199992],[-50.54131355699991,-16.625456977999875],[-50.62331052999991,-16.551304626999865],[-50.685543478999875,-16.425942367999937],[-50.580848479999986,-16.307670864999977],[-50.53927256299994,-16.393519322999964],[-50.551475608999965,-16.483463849999964],[-50.49482752199998,-16.49073230099998],[-50.42977959399997,-16.3094597299999],[-50.31900452999997,-16.260893809999857],[-50.36853453699996,-16.218988316999855],[-50.46326060399997,-16.216478439999946],[-50.5711405589999,-16.15008287099988],[-50.64426059499988,-16.245493738999926],[-50.70530649799997,-16.27964563599994],[-50.828945604999944,-16.273330877999967],[-50.87247048199998,-16.228800843999863],[-50.903316555999936,-16.102332676999822],[-50.825984613999935,-15.988493020999897],[-50.772453589999884,-16.013181413999916],[-50.65966753799995,-15.988847909999947],[-50.618884549999905,-16.121819427999924],[-50.56456361499994,-16.13379297699987],[-50.44480851399993,-16.039090881999982],[-50.18261352999997,-16.04154359499995],[-49.98802161299989,-15.999073496999927],[-49.83580356899995,-16.005030012999953],[-49.77063762499995,-15.813366061999943],[-49.72417455599998,-15.750863215999914],[-49.75390650799994,-15.695749687999978],[-49.87225361599991,-15.634662711999908],[-49.810607567999966,-15.563603116999957],[-49.73375356299994,-15.54474433699994],[-49.62561058299991,-15.561406219999924],[-49.49293159299998,-15.535804869999936],[-49.39616352699994,-15.565390975999946],[-49.39564552499996,-15.634170694999966]],[[-43.305568578999896,-16.81591493999997],[-43.22659646599993,-16.800876967999955],[-43.185005462999925,-16.989232245999858],[-43.20384948999998,-17.078422736999983],[-43.25947950999995,-17.071934137999847],[-43.28969157799992,-16.923875193999947],[-43.37747558499996,-16.860002241999894],[-43.305568578999896,-16.81591493999997]],[[-55.21975361999989,-17.31270615099993],[-55.176864594999984,-17.28032736199998],[-55.04727148699993,-17.26707423199997],[-54.998294517999966,-17.330358103999913],[-54.99902759899993,-17.56919657899988],[-55.08501452599995,-17.520522531999973],[-55.20643661999992,-17.39769714099998],[-55.24961850899996,-17.406426556999975],[-55.28167358899998,-17.52853814599996],[-55.51110857499998,-17.477543149999974],[-55.587837521999916,-17.474674191999952],[-55.61444855599996,-17.405140437999933],[-55.554302532999884,-17.35732251899998],[-55.21975361999989,-17.31270615099993]],[[-50.71134146899993,-17.47032968399992],[-50.623168540999984,-17.47423229899988],[-50.545154479999894,-17.55764531099993],[-50.44095652699991,-17.508108095999944],[-50.3039355439999,-17.55605224599998],[-50.30945251299994,-17.628549841999813],[-50.46176560799984,-17.744125892999932],[-50.505351503999975,-17.832883541999877],[-50.63950352899991,-17.80079225199995],[-50.897987508999904,-17.801440508999917],[-51.030193591999875,-17.81952832099995],[-51.1044616129999,-17.803540175999956],[-51.17044848099994,-17.714916636999817],[-51.107845554999926,-17.609589976999928],[-50.964805526999896,-17.594663818999948],[-50.90364059999996,-17.487044539999943],[-50.797012565999864,-17.50074677299989],[-50.71134146899993,-17.47032968399992]],[[-49.40612458099997,-17.505899295999882],[-49.26671257599992,-17.49451516299996],[-49.18492162999996,-17.696355917999938],[-49.34616061299988,-17.787828129999923],[-49.409870620999925,-17.900494487999936],[-49.46323048699992,-17.896918599999935],[-49.48548846299991,-17.80607704199997],[-49.46850153099996,-17.701043413999912],[-49.525855540999885,-17.55310952799988],[-49.40612458099997,-17.505899295999882]],[[-44.24585751899991,-17.873914969999873],[-44.30541647299998,-17.799678464999886],[-44.28657160699993,-17.710489817999928],[-44.21971855299989,-17.66210796499996],[-44.22452155199994,-17.82763680599993],[-44.24585751899991,-17.873914969999873]],[[-54.91512256899995,-17.834222299999908],[-55.04272061599988,-17.73995924899998],[-55.24518163199991,-17.69369902199992],[-55.22476951899995,-17.636730243999978],[-55.12071657199988,-17.640336138999885],[-54.90798152299993,-17.71708536999995],[-54.86006553499993,-17.780342587999826],[-54.91512256899995,-17.834222299999908]],[[-54.835697497999945,-21.15038080799991],[-54.79874755499998,-21.148797800999944],[-54.74521652999988,-21.264113510999948],[-54.68579051299997,-21.51367394899995],[-54.788330524999935,-21.513769670999977],[-54.84331849199998,-21.470786097999962],[-54.87701055799994,-21.275998713999968],[-54.835697497999945,-21.15038080799991]],[[-45.923786459999974,-18.968584484999894],[-45.86711859199994,-18.926323934999914],[-45.76413752399992,-18.938238139999896],[-45.765846593999925,-19.03530862499997],[-45.8116645909999,-19.05868206499997],[-45.898761617999924,-19.327648285999942],[-46.00309351399994,-19.352335001999904],[-46.06581160699989,-19.397266361999982],[-46.13710354899996,-19.38905176199995],[-46.08942057899992,-19.19665506499996],[-46.02014548999995,-19.053198623999947],[-45.923786459999974,-18.968584484999894]],[[-44.79222148399998,-11.055555242999958],[-44.790237486999956,-10.98386331599994],[-44.67509461299994,-10.808661590999975],[-44.54315155399996,-10.715020811999977],[-44.435020476999966,-10.708232475999978],[-44.37005653699998,-10.64324607199984],[-44.28949756199995,-10.654045315999952],[-44.25638552399988,-10.730560860999958],[-44.19114648899989,-10.78363607699987],[-44.17944350899995,-10.88898486599993],[-44.26190148699993,-10.89987999899995],[-44.27524547699994,-10.825224398999922],[-44.345741473999965,-10.849466538999877],[-44.418991595999955,-10.961255981999898],[-44.57279247899993,-10.962266671999942],[-44.65524257799996,-11.02880305799988],[-44.79222148399998,-11.055555242999958]],[[-47.35858153599992,-10.785975130999873],[-47.376136594999934,-10.875412720999975],[-47.573020626999835,-10.871996926999941],[-47.6074675669999,-10.812872155999855],[-47.59835057099997,-10.6903297369999],[-47.52941846999994,-10.607176395999943],[-47.44380956599997,-10.664562592999914],[-47.494483534999915,-10.713191209999934],[-47.45638258899993,-10.785983177999924],[-47.35858153599992,-10.785975130999873]],[[-47.489707526999894,-10.300085088999936],[-47.48105656499996,-10.346903717999965],[-47.56429255099994,-10.503418659999966],[-47.641502619999926,-10.461893538999902],[-47.624793463999936,-10.390760684999861],[-47.65412157499998,-10.306469416999903],[-47.61093147199989,-10.235679382999876],[-47.612434514999904,-10.082806208999898],[-47.49766547299993,-10.20520948799998],[-47.489707526999894,-10.300085088999936]],[[-47.681602482999836,-9.531759106999914],[-47.70520759899989,-9.481591571999957],[-47.669296507999945,-9.337076832999912],[-47.68161052999994,-9.24560830799993],[-47.639411502999906,-9.159432452999852],[-47.574897502999875,-9.113131657999872],[-47.540023588999986,-8.982396934999883],[-47.48046848999991,-9.016739603999952],[-47.517341487999886,-9.184137776999933],[-47.49169956999998,-9.20338430299995],[-47.33605952999994,-9.108247019999851],[-47.237808537999854,-9.111394759999882],[-47.24156949699989,-9.208636068999908],[-47.32599655299998,-9.227706574999957],[-47.38808449499993,-9.283163760999912],[-47.384597622999934,-9.414695267999946],[-47.440002505999985,-9.441504449999911],[-47.49378951399996,-9.523233537999886],[-47.64002254399992,-9.511945460999925],[-47.681602482999836,-9.531759106999914]],[[-47.58972156899995,-8.995377149999968],[-47.632514537999896,-9.002576701999942],[-47.74162260999992,-8.887341793999894],[-47.68984960499989,-8.841192207999939],[-47.66201749599992,-8.684192455999948],[-47.5796964779999,-8.62452755499993],[-47.51067351699993,-8.730433068999957],[-47.48280352099994,-8.894984412999975],[-47.519714572999874,-8.912431847999926],[-47.61994956199982,-8.822799462999967],[-47.58972156899995,-8.995377149999968]],[[-48.17723062099992,-8.640424504999942],[-48.151061480999886,-8.768589168999881],[-48.186393549999934,-8.865022461999956],[-48.27298749499988,-8.90905427599995],[-48.28039558799992,-8.824316419999889],[-48.204902468999876,-8.657767332999924],[-48.17723062099992,-8.640424504999942]],[[-43.74792452499997,-7.322326139999916],[-43.75675955399993,-7.424566750999929],[-43.80049850399996,-7.603149903999963],[-43.85343156399995,-7.939539818999947],[-43.90557856799995,-8.084344236999925],[-43.90048957999994,-8.190883590999874],[-43.97174061799984,-8.366669031999947],[-44.07365450299994,-8.504426113999955],[-44.12062048599989,-8.384853738999936],[-44.19206950499989,-8.32463814599987],[-44.33532746199984,-8.33129957999995],[-44.25921659599993,-8.159869878999928],[-44.20406350499991,-8.138650419999976],[-44.085945557999935,-8.155094205999944],[-44.00509656999998,-8.07447689299994],[-44.039230528999894,-8.031853070999887],[-44.13558151199993,-8.07977257999994],[-44.181220471999836,-7.956701597999881],[-44.039237569999955,-7.950163880999924],[-43.96608752799989,-7.896928737999929],[-43.93756055799997,-7.791041327999892],[-43.986206609999954,-7.780364124999949],[-44.07050357799994,-7.86210025399987],[-44.130607522999924,-7.858390422999946],[-44.108871571999885,-7.759351698999978],[-44.0122835489999,-7.645718740999939],[-44.08966058499993,-7.553701368999953],[-44.09442854699989,-7.451631748999887],[-44.00964358499988,-7.405164153999976],[-43.90948453499993,-7.452772693999975],[-43.829521513999964,-7.323364322999964],[-43.74792452499997,-7.322326139999916]],[[-47.68890362399998,-8.372332683999957],[-47.694236525999884,-8.443326565999882],[-47.76833355599996,-8.430064383999934],[-47.787681502999874,-8.28365801599989],[-47.68708760099997,-8.288762762999909],[-47.68890362399998,-8.372332683999957]],[[-47.684127614999966,-7.418409237999981],[-47.78763556999996,-7.495564823999814],[-47.91862459999987,-7.470251476999977],[-47.93107658799988,-7.404558142999974],[-47.860908490999975,-7.351605301999882],[-47.684127614999966,-7.418409237999981]],[[-47.67990162699988,-7.036089007999919],[-47.64902453999986,-7.106211842999812],[-47.753295582999954,-7.139385403999938],[-47.75823252399988,-7.050120146999916],[-47.67990162699988,-7.036089007999919]],[[-47.27445958299995,-6.452495478999879],[-47.4029234809999,-6.499582998999927],[-47.38379648099988,-6.355366654999841],[-47.286132555999984,-6.40334600999995],[-47.27445958299995,-6.452495478999879]],[[-47.757953574999874,-6.568097010999907],[-47.83296557299991,-6.536012426999889],[-47.824249566999924,-6.410887543999934],[-47.68267050499992,-6.357365570999946],[-47.675579582999944,-6.217437743999938],[-47.48170850899993,-6.300753526999927],[-47.3977204979999,-6.300029665999887],[-47.454620544999955,-6.5463766499999],[-47.602497600999925,-6.514095090999945],[-47.757953574999874,-6.568097010999907]]]]},"properties":{"objectid":154,"eco_name":"Cerrado","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Neotropic","eco_biome_":"NO07","nnh":3,"eco_id":567,"shape_leng":345.449464711,"shape_area":161.003728408,"nnh_name":"Nature Could Recover","color":"#E69800","color_bio":"#FEAA01","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":1921063.308733411,"percentage":8.960594694223815}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[146.95959461000007,59.70018626600017],[146.68189964300007,59.75602315200018],[146.48030062200007,59.76809745200018],[146.28289758200015,59.74622671900005],[146.0010066340003,59.66813386800004],[145.58090162300016,59.37474630200006],[145.91499355500014,59.33963400700014],[145.8034976470002,59.292883439000036],[145.77319371400006,59.21223058700019],[145.93649263400005,59.13662766500005],[146.14179964100015,59.19065758],[146.2411035680003,59.264661403000105],[146.27780172000007,59.42197698600012],[146.40409856100007,59.466545576000044],[146.56210363800005,59.47150866900006],[146.6920016800002,59.39860421600014],[147.02830459000018,59.37317436000018],[147.0989077080003,59.32523339400012],[147.31790169200008,59.31170198500007],[147.44389359900003,59.23806830700016],[147.5942996440001,59.30528178200012],[147.78779571100006,59.26952558900007],[147.79229763100022,59.36140583300016],[147.91999860800001,59.39671493500009],[148.1385956260001,59.38944480800012],[148.2299955860001,59.46857952900018],[148.21690355600026,59.56141698599998],[148.11289956100006,59.622782408000035],[147.8896946760002,59.66725594800005],[147.60710166,59.67306611500004],[147.15409868500012,59.650905368999986],[146.95959461000007,59.70018626600017]]],[[[151.9775996520001,60.603811253000174],[151.5316005960002,60.64320267700003],[151.35650666200013,60.61885274600013],[151.00489755800027,60.44811606000013],[150.90299959900005,60.35415274600018],[150.90609771800018,60.28187593000007],[151.11309870800005,60.24001620300004],[151.5339966470001,60.32063938300007],[151.8768005610002,60.319658365000066],[152.15679971300017,60.240348126000015],[152.5979007210002,60.13705340700005],[152.80310060800002,60.18555512200004],[152.8625026520001,60.28079667600008],[152.81210361000012,60.43579365700009],[152.8569945690001,60.59039769300006],[152.70840471500003,60.61150969600004],[152.1817016770002,60.57838508500015],[151.9775996520001,60.603811253000174]]],[[[139.4199986000001,60.49251701300011],[139.56050058800008,60.54301798000017],[139.63229360000014,60.61292053800008],[139.58110062300022,60.674034838000125],[139.34100368900022,60.74365559600005],[139.1439976160002,60.772228833000156],[138.93870569600028,60.73648756000006],[138.97239658800004,60.68163018300004],[139.18980371100008,60.615709532000096],[139.1078945800001,60.52831930600007],[139.29319767200002,60.48050759000006],[139.4199986000001,60.49251701300011]]],[[[138.75909458700016,60.42502442000017],[138.74360667400003,60.53986671900009],[138.60639961200002,60.658302341000024],[138.73100263800006,60.75021309400012],[138.6943966880001,60.815130431000114],[138.53889461400001,60.82878388100005],[138.3849946570001,60.733474266000144],[138.44569355000021,60.63926251200007],[138.39689662500007,60.57598903400003],[138.2109065520001,60.49549594100006],[138.231506587,60.431605722000086],[138.48390161800012,60.373127196000155],[138.61010759900012,60.37266216800003],[138.75909458700016,60.42502442000017]]],[[[149.23939566500007,60.65203100100001],[149.27250669700004,60.69669481000011],[149.12399261600012,60.905282997000086],[148.82600372000002,61.00932102300004],[148.64050264700018,60.9967246990002],[148.50599657100008,60.90256306900011],[148.69529766300013,60.731826384000044],[148.9510037130001,60.585801560000164],[149.23939566500007,60.65203100100001]]],[[[150.2095945880002,60.159008126],[150.291107591,60.28685796600013],[150.31100472000003,60.39302197800009],[150.6078945810001,60.54693903400005],[150.67469767900002,60.62776019400013],[150.59429963700018,60.70424405500006],[150.39889568100023,60.78943738400011],[150.25430265400007,60.960385126000176],[150.09770171300022,61.01994542100016],[149.7245026700001,60.96698453300007],[149.70350667300022,60.82707900200012],[149.62559470400004,60.667949744000055],[149.5344996770002,60.60927055400009],[149.22230563500023,60.475884299000086],[149.10279863900007,60.39555113400013],[149.31950369300012,60.22474571600014],[149.61039764300006,60.07843104700015],[149.78540071700024,60.074100955000176],[150.2095945880002,60.159008126]]],[[[140.56309456100007,61.17563390800018],[140.49319468500016,61.23528623700014],[140.12339768900006,61.32160860800019],[139.572204574,61.282696796000096],[139.20489465700007,61.16647433200012],[138.89300554800002,61.01992631000007],[138.8303985990002,60.94257358100003],[138.97790567800007,60.86967147500002],[139.28010564200008,60.98353728300009],[139.587005674,60.90673608400016],[139.78120464800008,60.90903306000013],[139.73359661100017,61.06266831700009],[139.89039570100033,61.13507002300008],[140.18719470200006,61.064129282000124],[140.41040059200031,60.94137547200012],[140.5594026680002,60.91759349800003],[140.61059564400023,60.97195483399997],[140.6107025970001,61.10607014700014],[140.56309456100007,61.17563390800018]]],[[[151.60749856100017,61.32743788600004],[151.51260368300018,61.422393785],[151.33140571100023,61.39804385300005],[151.11659262000012,61.21313320200011],[151.1342926850001,61.122992706000105],[151.3143005940001,61.07018772200013],[151.49960368600023,61.07656987100012],[151.7117007050001,60.99248664099997],[151.8099055980001,60.90520705700004],[151.97149662100003,60.85409186400017],[152.18609664400014,60.833831128000156],[152.5337986080001,60.76925661100006],[152.81080659400004,60.696313936000195],[152.95680258400023,60.79120747400003],[152.8916926300002,60.843058430000156],[152.62980660300002,60.91353447800009],[152.40089464800008,61.024782785000184],[152.47529560600015,61.169159391000164],[152.20590157300012,61.32913589200007],[151.94389367300005,61.406104059000086],[151.79840059700007,61.289579512000046],[151.60749856100017,61.32743788600004]]],[[[147.44740259900027,61.34586365600012],[147.58120761400016,61.47468395300001],[147.32820171000014,61.51518665000003],[146.97059669600003,61.35704109200003],[146.67089856200016,61.29088826200018],[146.0899966300002,61.38823149500013],[146.03939860000003,61.25624485000009],[146.21130355600008,61.13662319000008],[146.4911955870001,61.00076494400008],[146.36689766300026,60.87364282100003],[146.14739959100007,60.79126866200011],[145.80380258000014,60.70020498300016],[145.51379359200007,60.57439798100012],[145.52160669900002,60.43447367400006],[145.65179458700015,60.378510389000155],[145.76649456200005,60.38927191500005],[145.97009266600026,60.544363778000104],[146.15939359100014,60.61533955500016],[146.4476016440002,60.63588242600014],[146.60659763,60.624369044],[147.0207065630002,60.77061867000003],[147.2221065970001,60.67208889500017],[147.3894046910002,60.62638003000012],[147.6506045750001,60.71578442700013],[147.75230371500004,60.817617677000044],[148.18569957500006,60.94461457500012],[148.28439363500001,60.99716743100004],[148.25140363800006,61.073857654000165],[148.11210663300017,61.118849364000084],[148.07049568000014,61.22887391300003],[147.87390166100022,61.26163592300003],[147.58009365900023,61.151012906000176],[147.44090260100018,61.17473369200013],[147.38609367200002,61.28415826400004],[147.44740259900027,61.34586365600012]]],[[[150.99310271100023,61.44689274700005],[151.09719857300013,61.58201807900019],[151.33200065900007,61.733494324],[151.34089670800006,61.80579025100019],[151.15060470700007,61.87149716300007],[150.84039264900014,61.75772640600019],[150.47579964200008,61.482474094000054],[150.6549986970001,61.40205291799998],[150.84049960300013,61.39896267800009],[150.99310271100023,61.44689274700005]]],[[[153.09530666100022,61.651994062000085],[153.13560467200034,61.78841758300001],[153.39030472600018,61.91823314700008],[153.21600372000012,62.02261935700005],[152.96290561500007,61.98020558600018],[152.70730568000033,61.83159075500009],[152.6347046520001,61.75698645200009],[152.68699666400005,61.674284895000085],[152.80720556100005,61.61717982700014],[153.00480658100003,61.61633258400013],[153.09530666100022,61.651994062000085]]],[[[147.16299456600007,61.72169595700018],[147.3587036240002,61.8115127440002],[147.1477046340001,61.9153831320001],[146.74420165800007,62.02728472500007],[146.5364986000002,62.223806827000146],[146.37590066500002,62.28999888400011],[146.19689959000004,62.32142498600007],[146.10139467700014,62.291409893000036],[146.0785975760001,62.19973500700007],[146.15660057300033,62.127782738000064],[146.5202947050002,62.00030539000005],[146.5852046660001,61.95105952900013],[146.59249859900012,61.82946175100017],[146.7037046610002,61.704273333000174],[146.92629967900007,61.62997111400006],[147.16299456600007,61.72169595700018]]],[[[153.30320769900015,62.19994488900005],[153.39059457200017,62.299860025000044],[153.2489016840001,62.434990051],[152.97090161500012,62.52943096600018],[152.71650666300002,62.53300115400015],[152.23030062200007,62.461476027000174],[152.21220359000017,62.30930156900018],[152.0413966650001,62.14148262300006],[152.15350361400021,62.03843919400009],[152.3426975850001,62.023008613000115],[152.49710062400004,62.09510153000019],[152.53269957300006,62.15693214700008],[152.76040671300007,62.1898852650001],[153.13450664300035,62.16495530500009],[153.30320769900015,62.19994488900005]]],[[[147.17790261900018,62.968688961],[147.0933075910001,62.86354050000011],[146.98240663,62.861194405000106],[147.85169967600007,62.629783971999984],[148.0626066330001,62.584254312000155],[148.24789463800016,62.612682710000115],[148.345001668,62.695457189000024],[148.31809961500016,62.813695333],[148.1744996760001,62.88998456600018],[147.99769566600003,62.93663673000003],[147.71180755600005,62.966953236],[147.17790261900018,62.968688961]]],[[[140.63189657500004,62.765128072000095],[140.59359764800013,62.89328485700014],[140.93499759300016,63.085123319000104],[141.0928955500002,63.14182672600015],[141.15150466700015,63.2089875640001],[141.0733036900001,63.260763083000086],[140.81230161800022,63.267103322000196],[140.31840568500002,63.131164275000174],[139.45869466200008,62.94839804900016],[138.77070670800003,62.89700005100008],[138.44869963600001,62.835142276000056],[138.04049659200007,62.785251009000035],[137.38279765100015,62.67173623600013],[137.47120661300005,62.516399453000076],[137.78790257600008,62.471807393],[138.25759861400002,62.4548466120001],[138.92349271000012,62.47323768100006],[138.86599754800022,62.399115505000054],[138.43780567700026,62.30050090600008],[138.38529959100015,62.16835450200006],[138.47889661600016,62.10891105100012],[138.7088016590002,62.05691089700014],[139.1325077030001,62.07561058700014],[139.29179370300017,62.048052566000024],[139.38769558400008,61.991066186000126],[139.45779461300003,61.88132058600013],[139.29429670700017,61.80048718800009],[139.071594569,61.75090621900017],[138.66439869400006,61.62752594600005],[138.31689471100015,61.476866097000084],[138.21490455200012,61.347309702000075],[138.2539065530001,61.256195732000094],[138.57319654700018,61.2404555240002],[139.11419659700005,61.3063989740001],[139.3979945960001,61.36187124700007],[139.67340063300003,61.46354423600013],[139.99960368500012,61.62419615099998],[140.14900155400028,61.77132688199998],[140.5265047040001,62.25502824300003],[140.76910363600018,62.30105830200017],[140.88560471400012,62.268207947],[140.90409871300005,62.17262290300016],[140.5502927120001,61.965605987],[140.65229762400008,61.82956032200008],[140.74220258800017,61.77378713900009],[140.86070258300003,61.801800130000174],[141.1322936800002,62.07519853300016],[141.3390956840003,62.03356377600011],[141.17590354900005,61.65648441500008],[141.28610261000006,61.596950104000086],[141.51370262900002,61.52828588800014],[141.75570661400013,61.41835354000011],[141.92480463800007,61.441464458999974],[142.0435026130001,61.518237495000164],[142.0532076830001,61.627221180000106],[141.85580464300006,61.800197342000104],[141.84379555500016,61.89078107300014],[142.03120468500015,61.985515857000166],[142.313003599,61.9480044930001],[142.42990063800005,61.880351638000036],[142.47889655100028,61.672052962000066],[142.58959969900013,61.619636898000124],[142.72779867400004,61.639512570000136],[142.84300256900008,61.71780491000004],[142.79440261800016,61.83477973400011],[142.82460060400012,61.925443260000065],[143.00320471100008,61.93992400300016],[143.0529026920001,61.8857536070002],[142.99769562200015,61.79593313300012],[143.01649455400002,61.63283219300007],[143.19059758000003,61.49794675200019],[143.4532926280002,61.486014442000055],[143.59049968900013,61.58848421400006],[143.57580571000017,61.754495183000074],[143.51890566300006,61.857881767000094],[143.5350036110001,61.939683946000116],[143.6786037180002,61.966655066000044],[143.95260662400017,61.82143909600012],[144.07949858000006,61.89643131399998],[144.0021056180002,62.04037323400007],[144.009292597,62.11119210200013],[144.11999457200022,62.14608261200004],[144.29600565400017,62.132632004000016],[144.5581055870001,62.0507389660001],[144.8397066880001,62.021455614000104],[144.80110165400015,61.98033466700008],[144.543792649,61.90688354700018],[144.40519771200002,61.83685073400005],[144.3578035820001,61.63632258500007],[144.21879558500018,61.52439903200002],[144.180206644,61.352955920000056],[144.287093679,61.262669411000104],[144.48240660800013,61.328479924000135],[144.55439760100012,61.46000439],[144.67170770000018,61.50532098200017],[144.80059857200013,61.41874262800013],[144.6746976930002,61.32612980599998],[144.77330055800007,61.25603597300011],[144.89869667900018,61.24183635900016],[145.1403955630002,61.27536581500004],[145.47140463100015,61.20879607000012],[145.60110469200015,61.248775736000084],[145.77119463000008,61.39452244800009],[145.84550456000034,61.52246868000003],[145.78089869500002,61.75571642600016],[145.59570255500034,61.88737466700019],[145.47839362900004,62.17776486499997],[145.52639762700028,62.291657662000034],[145.75489769600006,62.437087874000156],[146.14340159000005,62.56033118700009],[145.93339568800013,62.57072273500012],[145.69050556800005,62.817212380000115],[145.2946926540002,63.0483014510001],[145.06939665200002,62.95154914200003],[145.4178006840002,62.4612671500002],[145.11759963600002,62.3556025310001],[144.80859356700012,62.34762228900007],[144.51080365700022,62.451553697000065],[144.34069863200023,62.457787989],[144.2061006900002,62.380006442000195],[144.02270464800029,62.366921118000164],[143.70019566800022,62.533099892000166],[143.4803006290001,62.577372099000115],[143.40109265,62.45764683800013],[143.35020460700025,62.282109334000154],[143.0061947040001,62.26526657000011],[143.0108946050001,62.492949570000064],[142.72569263700018,62.814313415000186],[142.42480460900003,62.893536649],[141.98620559900007,62.95747749500015],[141.90710457300008,62.991577927000094],[141.56120270700012,62.94603703500019],[140.7371975860001,62.73658886500016],[140.63189657500004,62.765128072000095]]],[[[149.83219855900006,62.812840379000136],[149.9020996080003,62.86816379000004],[149.79580668200015,62.97747135100013],[149.45790064900007,63.13161438300011],[149.22250361500005,63.28714344600007],[148.98550463200002,63.29506635700005],[148.8981937000001,63.246629182000106],[148.9573975960002,63.16789394200009],[149.28799461000017,62.98368971700006],[149.2557066810001,62.809921800000154],[149.3217005900001,62.77769053300011],[149.66839571900005,62.771350461000054],[149.83219855900006,62.812840379000136]]],[[[137.88659663600004,62.929155211000136],[137.96919258000003,62.99278408200013],[138.02799967800013,63.184206635000066],[137.83689865500003,63.30056387899998],[137.66020159800007,63.34163453400015],[137.32189960400012,63.36341742400015],[137.05250557100032,63.43416772800009],[136.85659769500012,63.389667701000064],[136.97929367000006,63.24311113000016],[137.1004946490001,63.16907679600013],[137.3693996820001,63.09469461400005],[137.7243955770001,62.92870527100001],[137.88659663600004,62.929155211000136]]],[[[135.9380036350001,63.338624425000035],[136.1526036580002,63.53818446400004],[135.9841005820001,63.655803688000105],[135.73350564900022,63.61492799600006],[135.5444945710002,63.502781820000166],[135.499404625,63.41723008100013],[135.72729465900022,63.32280341500018],[135.9380036350001,63.338624425000035]]],[[[156.95030168200014,63.14550487300011],[157.11250257300003,63.20751871900012],[157.2489016190002,63.34247373000011],[157.2313997020001,63.41281969100004],[157.0841977240001,63.53907261100005],[157.25830058200006,63.63413965400014],[157.1856997220002,63.703661841000155],[156.7742005780002,63.78880186100014],[156.68080170200005,63.99556027800014],[156.46429462800006,64.0636712880002],[156.3518066370002,64.02541561100008],[156.33020060600018,63.92110567600014],[156.37789967000003,63.815665860000024],[156.23519860600004,63.721362576],[156.24999970600004,63.669297211000014],[156.43159464400014,63.579217233],[156.49780262700006,63.45349069700006],[156.34469559800004,63.24340935800012],[156.39190666800016,63.19311793900005],[156.6405947180001,63.111113253999974],[156.95030168200014,63.14550487300011]]],[[[138.41960169200001,63.79588239000009],[138.39880367500018,63.867850081000086],[138.2243046880002,63.96543404200008],[137.40939359800007,63.98817481600014],[136.82730059600033,64.09954616900006],[136.39390557500008,64.0387602720001],[136.2911985950002,63.89461869500019],[136.31019567600003,63.78718465600019],[136.56399568100005,63.64120811300012],[136.92469764100008,63.61221561200017],[137.26559467200013,63.647239395000156],[137.74090558000023,63.75784447500007],[137.87060564100022,63.6512984150001],[138.14630169200007,63.58217721800008],[138.35859669100034,63.64732740500017],[138.41960169200001,63.79588239000009]]],[[[143.42160065200005,64.36654163700007],[143.21420269500027,64.38331214900018],[142.88900765100004,64.19655060499997],[143.0661927020002,63.96447263700003],[143.27609265700005,63.78402568500002],[143.45239257900005,63.67957074200018],[143.64320358800023,63.61499672800005],[144.06739762600023,63.53458309600012],[144.3522946600001,63.45370326200015],[144.62229956600004,63.47561271900008],[144.82739266700003,63.55360398100015],[144.76210065900023,63.69346039400011],[144.4004976440001,63.82856845900011],[144.08030659500002,63.99392429800014],[144.21350056900008,64.18074987900019],[144.0480956120001,64.2684768900001],[143.7615966290001,64.31801628500017],[143.55619758900002,64.31694004800005],[143.42160065200005,64.36654163700007]]],[[[157.24079866500017,64.44598229800005],[157.24290470200003,64.52858193000003],[157.09060669500013,64.59799045900007],[156.78329460800023,64.61498225300016],[156.53660564200015,64.42577118200006],[156.38740558600023,64.40913059000007],[156.24920661000033,64.4438080320001],[156.1576996970001,64.54159835500013],[155.89750664700023,64.57893839300004],[155.82820171800006,64.45927381700017],[155.81779458000017,64.33818197000005],[155.88949572700017,64.22299584500013],[156.1065067200002,64.14028104500005],[156.4217076870002,64.12943134200003],[156.9270937010001,64.26205970500001],[157.24079866500017,64.44598229800005]]],[[[135.79060367700026,64.55560736500013],[135.8372037050002,64.62471749800017],[136.14689658800012,64.71613707199998],[136.24989358200003,64.80944944800012],[136.2462006830001,65.0115611060001],[135.61090070100022,64.99295227500005],[135.33520465100014,64.97049832900012],[135.16130061100012,64.79446377800008],[135.2884976690002,64.66942740800005],[135.43829367800015,64.46648409700009],[135.4062955950002,64.27864749100007],[135.5803986200001,64.21757862100009],[135.77009567400012,64.20652289100013],[135.90539568500003,64.1462932170001],[136.1446986850001,64.21203131000004],[136.16600062200018,64.37712378900011],[136.23370360100012,64.54396389599998],[135.79060367700026,64.55560736500013]]],[[[127.15319862700028,64.98658873400012],[126.98000369600004,65.05800355500008],[126.74040263500012,65.08591378400018],[126.74710061400003,64.88108471300018],[126.94789866000019,64.66118715900006],[127.30020161800007,64.50934848000009],[127.52809869200007,64.67351023300006],[127.45870156300032,64.82267106200004],[127.6472016810003,64.90331787800005],[127.60030359200016,64.95976245300017],[127.15319862700028,64.98658873400012]]],[[[160.83270267700016,64.26991908000008],[160.8190006120002,64.3667704630002],[161.01460271700012,64.53750932800011],[160.85719258600022,64.58270069399998],[160.54829363800002,64.59169598500006],[160.41160558400009,64.68466436700015],[160.6558986670001,64.76517338500014],[160.74600261700004,64.84076172300018],[160.66850270200018,64.91245029700008],[160.4972996480002,64.93971143100009],[160.2982936520001,65.05110608700011],[160.38079856900015,65.13779625500013],[160.22419762800007,65.27281178400011],[160.03709360000016,65.31331079400013],[159.71710170600034,65.31045759400013],[159.47869858600018,65.25923109000018],[159.36050469900022,65.18684748800013],[159.39549260700005,65.02979610400001],[159.7075956220002,64.70949173200012],[159.86990363300015,64.35935415500012],[159.7879946690001,64.24682291400012],[159.68760662700004,64.20763734899998],[159.48179670500008,64.25884725700013],[159.46490465600016,64.5239656810001],[159.3634036640002,64.58817089200016],[159.072006632,64.56756297700008],[159.01600663400018,64.52865099700017],[159.00120570200022,64.38692055800004],[158.89689660500017,64.25673417900009],[158.69889861700017,64.20564580800016],[158.58430459000033,64.23108304000004],[158.27059962500016,64.45068253400012],[158.1477966970001,64.50197793700016],[157.86599761500008,64.49685055900011],[157.6853945910002,64.39739592500018],[157.63299562600014,64.25441507400018],[157.68150371200022,64.08475931800007],[157.91099569500034,63.8489167030001],[157.9535066960001,63.730972093000105],[157.802993699,63.58925758000004],[157.61300663100008,63.47982060200019],[157.65159557200002,63.346559573000036],[157.8769986950001,63.273641542000064],[158.14639272800002,63.273653444],[158.3907925970002,63.30261174600008],[158.56359860700002,63.35741614900019],[158.87420662500017,63.574345168000036],[159.30589257600002,63.83186070300019],[159.5314026520001,63.91975468099997],[160.27949572600016,64.08952074200005],[160.62480163800012,64.17754480700006],[160.83270267700016,64.26991908000008]]],[[[136.54060363300016,65.2999280790001],[136.78419464700005,65.39281247499997],[136.74380460300017,65.46333529400005],[136.43960555500018,65.48914652600013],[136.2592925450001,65.3805142110001],[136.30009464400007,65.26746329200006],[136.54060363300016,65.2999280790001]]],[[[138.96940559000006,64.87520246100019],[138.1846006190002,64.99656118700005],[137.28140260600014,65.06120812400007],[137.59390258800022,65.17286999400005],[137.67309564800019,65.29435863999998],[137.59790058800002,65.36672732100016],[137.46299754500012,65.58773111900013],[137.33149755400007,65.60468385300015],[137.20010367800012,65.36669614100003],[137.19999655700008,65.2976931290001],[137.0260926850002,65.24381140500003],[136.95030167300013,65.177836775],[137.04449465100026,65.0622914010001],[136.64300567900023,64.6016525120001],[136.53190657000005,64.45076652000017],[136.52479569900026,64.26561547600016],[136.75219757000002,64.21592235700018],[137.1363066660001,64.38549446100006],[137.33659358300008,64.36387920900006],[137.20550564700022,64.24364986000012],[137.35180657,64.19253047700005],[137.84010356000022,64.36010198800011],[138.0213925590001,64.36783865200005],[138.07200668100006,64.20308178400012],[138.211105706,64.18763226000004],[138.51519763300007,64.28662773400004],[138.71119670400003,64.27646501099997],[138.78089859900012,64.20916302300009],[139.03919968600007,64.13822898799998],[139.3883976520001,64.07044654800012],[139.4833066120001,64.0130779530001],[139.37640365100003,63.899890912000046],[139.00309765600014,63.89133047400014],[138.8128966820001,63.82779765900011],[138.92190568000012,63.71913047600009],[138.8751066650001,63.640578967000124],[138.6336055940002,63.54790361600004],[138.58959959600008,63.461107835000064],[138.85839868200014,63.35007695500008],[138.6282956580003,63.207659367000076],[138.8451996990001,63.08897949700014],[139.1614986940001,63.09363363300014],[139.8836056890002,63.1934379600001],[140.44529764000004,63.32055371299998],[140.784805623,63.45765968800015],[141.00660670700006,63.51857148100004],[141.16560369900003,63.62625848500005],[141.0164036430001,63.640288953000095],[140.75959755200006,63.55312302700014],[140.49740558600013,63.51226225500005],[140.05220063000002,63.49924180700009],[139.95550565400015,63.55389416200006],[139.99209567900004,63.625987415],[140.22009266600003,63.71747152900019],[140.89849859600008,63.896529601],[140.969802608,63.973300123000115],[140.83439665000014,64.04387960300011],[139.91479458300012,64.24477873500018],[139.8502046430001,64.29437210900016],[139.92759659900014,64.38579956199999],[140.04559367900004,64.39612170800018],[140.46040367400008,64.32593668000015],[140.7062987060001,64.33346698200006],[140.79769866700008,64.4173331200002],[140.82000760500011,64.53461723600009],[139.88389570200013,64.69953403099998],[140.07179265900004,64.83866289500008],[140.22540260100016,65.01108098999998],[140.14909358700004,65.09988339900008],[139.86250257100028,65.15129262800014],[139.50039664200017,65.09077377900007],[139.22169467300012,64.94924886400008],[139.09199561800006,64.84883332800001],[138.96940559000006,64.87520246100019]]],[[[158.01919567100003,65.74816175100017],[157.64460758000007,65.78689787900015],[157.5502017010001,65.68149276399998],[157.73049962400012,65.6341194210001],[158.076598632,65.60637817100019],[158.29890464200002,65.52570822000013],[158.5682066420003,65.48431704100011],[158.82069370500005,65.60356285700016],[158.7624966430002,65.678448624],[158.62309268500007,65.72547076600006],[158.01919567100003,65.74816175100017]]],[[[135.49639870700014,65.6378354540002],[135.68969763200005,65.81573162600012],[135.49310260800019,65.91011872900009],[135.3128056910001,65.85630657500008],[135.09539756200002,65.72618088100012],[135.01300060400013,65.61846370200016],[134.72439558400004,65.56523777900009],[134.44110066800022,65.73751069900015],[134.21879566400025,65.73418442500008],[134.07809469000017,65.57826962600018],[134.0872956730002,65.43712642300017],[134.04060361100005,65.32670138700007],[134.04750057600006,65.18238429200017],[134.24319454600004,65.148667752],[134.4642027020002,65.251845962],[134.55900554700008,65.34305112700014],[134.81880163100016,65.40708819700006],[135.0785975460002,65.37405846900009],[135.35389663000012,65.37956018300002],[135.46229559300002,65.47146858899998],[135.49639870700014,65.6378354540002]]],[[[137.62879963600028,65.75670760500009],[137.7088015490002,65.8273590020001],[137.63470468700007,65.87647159000011],[137.33340460400007,65.91520838800011],[137.2048035780001,65.90064248400017],[137.06019563200005,65.82585579100015],[137.16650364500015,65.76419147100006],[137.62879963600028,65.75670760500009]]],[[[144.35270671400008,65.51355412500016],[144.27549765100014,65.56175895300004],[144.381805664,65.8709710500001],[144.06719964600018,65.98048061500003],[143.73049960100002,65.93474828100011],[143.60110464100012,65.87859237900017],[143.6287996220002,65.72659980800006],[143.91239964000022,65.49408262900005],[143.94340564100014,65.34490503700005],[143.78430169600017,65.12847960200014],[143.47889666000003,64.96556172400011],[143.66659563500002,64.71938003000008],[143.9649965860002,64.47757754600019],[144.50100655400024,64.47416644700013],[144.92959555900018,64.500374647],[144.9992976220002,64.44896625500013],[144.78489658500007,64.33474086400008],[144.69340559800003,64.23129728200018],[144.70339967600012,64.12511315300003],[145.0765076910002,64.06519746500004],[145.33970665900006,64.14749937199997],[145.60859660500012,64.15164942000018],[145.77380358100004,64.04976939900001],[146.39169267300008,64.03596004600007],[146.48120167600007,63.956293241000196],[146.35650661700026,63.82958652500014],[146.07620269900008,63.8182451400001],[145.83459467500018,63.75878207400012],[146.0540925800001,63.66425013200012],[146.4416045600001,63.61232575100013],[146.36109956500002,63.437803965000114],[146.97470064300023,63.30793408699998],[147.09989962200018,63.179586530000165],[147.25399756000013,63.14895302000002],[147.55029264000018,63.140506744],[147.76539557800004,63.18329451599999],[147.8746035620003,63.266710210000156],[147.81260664700017,63.435647804000155],[147.57550071100002,63.60440652900019],[147.5639957110002,63.68680717500018],[147.6428985890002,63.77202397300016],[147.82710264600007,63.88091998300007],[147.93769867300023,63.984863461000145],[147.91040065900017,64.19359045200008],[147.7489926960002,64.41914109700014],[147.3715976730001,64.51645164000018],[147.22639461100016,64.67499014200007],[146.97419756100032,64.75217975900011],[146.5252987010001,64.79357864900015],[146.3860016960001,64.8531976180002],[146.352401664,64.97377816800014],[146.53320266800017,65.27289560300005],[146.55389356400008,65.413459617],[146.37669359300003,65.47969291300012],[145.93089268400013,65.53299427300016],[145.56889370900012,65.62230898399997],[145.3592986870002,65.74340083000016],[145.08489965200022,65.7316051460001],[144.98269659200002,65.59213329400012],[144.85890158200004,65.50618408600008],[144.51240560700012,65.4614730020001],[144.35270671400008,65.51355412500016]]],[[[155.42930560500008,65.85866373400017],[155.62750257900018,65.92173973500007],[155.5839996630001,66.00002855400015],[155.2301026350002,66.07663110300012],[154.8231966070001,66.03462133900001],[154.63130165100006,66.03240902000005],[154.34779366600014,65.93577037000006],[154.4530026440001,65.87504499],[154.75160258100004,65.8241998630001],[155.17160063900008,65.82231561100019],[155.42930560500008,65.85866373400017]]],[[[136.4275966350001,65.66363159899998],[136.69700659400007,65.865722135],[137.0272976680002,65.97163821000015],[137.03689561700003,66.16354205100015],[136.97470055500003,66.24802710900013],[136.59910562900006,66.26829103000017],[136.4172055890001,66.14984702700013],[136.35719267100023,65.9681280370001],[136.15739458600012,65.72203770600004],[136.24240066300013,65.63717143900004],[136.4275966350001,65.66363159899998]]],[[[135.36189263000006,66.07790548700007],[135.45480368000017,66.15721723500013],[135.42179859500004,66.26313381300002],[135.30529768500003,66.35813162200009],[135.11970558500002,66.38943685600003],[134.4001005880002,66.21848442100003],[134.0941006050001,66.179129541],[133.88619956600007,66.08329203400012],[133.89289855100003,66.01935420600006],[134.14599565000003,65.95691254700006],[134.50779765100003,66.00793285700018],[135.1056975800003,66.03242427500015],[135.36189263000006,66.07790548700007]]],[[[156.80329869100024,66.46378199100008],[156.60299668500022,66.58286000100009],[156.28979463500013,66.55198928400017],[156.01390060400013,66.488845222],[155.65109260700012,66.44770516500006],[155.2422946160001,66.44789610500004],[155.07879671000023,66.41730048200009],[154.99850461500012,66.34385673700018],[155.03750561000004,66.26324076600008],[155.23139965100006,66.2262358370001],[155.8515925930002,66.18015230100008],[156.2947996370002,66.22142998900006],[156.67100560400002,66.2375054740001],[156.90269465100005,66.19751759300004],[156.94990572100016,66.05924334800005],[157.05720564900014,65.97601725200013],[157.25799564800013,65.92083851200005],[157.7765047050001,65.87552527300005],[158.08970658800013,65.87238222700006],[158.42810061500006,65.91154599900005],[158.4528956260001,65.9857298660001],[157.9364015790003,66.08733596700017],[157.61590559600006,66.131718144],[157.41780065600017,66.27506662600018],[157.7301026570001,66.41492873900006],[157.66470369600017,66.46886326800018],[157.39320362600017,66.45421337800019],[156.96090663400003,66.39733344700011],[156.80329869100024,66.46378199100008]]],[[[153.85949667600005,66.65573159700006],[153.71470667500012,66.76284611700015],[153.55859356000008,66.79514276300017],[153.32589767900004,66.71696072900016],[153.2586055810001,66.60912938900009],[152.9602966640001,66.39678443300016],[152.98930358100006,66.26001272800016],[153.33000162600013,66.24509679600004],[153.64419559100008,66.35607956400014],[153.8937986090002,66.31504629200015],[154.0393066040001,66.19482432000018],[154.26010169200003,66.20256869500014],[154.3986056010001,66.24976618600004],[154.70840459900023,66.40528401800009],[154.9953007160002,66.64058683900015],[154.89059465200023,66.70681343000018],[154.6174926330001,66.7315945260001],[154.06260661900012,66.6355654080001],[153.85949667600005,66.65573159700006]]],[[[144.15029867200008,67.31534982700015],[144.11939962400015,67.49582544600008],[143.8623965590001,67.51750875800019],[143.6573946530001,67.43486319300007],[143.5478976600001,67.26031626200006],[143.89480569000023,67.05099331700018],[144.13040171000011,66.95574220800012],[144.2315976010001,66.786292312],[144.07620264800005,66.56576913300017],[144.08639571300012,66.4700843440001],[144.2456966330002,66.39202300900001],[144.6996006620002,66.31419921700018],[145.26690664500006,66.10782904900009],[145.57269255500023,66.06847467300008],[146.09060666400023,66.07031399800013],[146.25840767200032,65.98055772900017],[146.32330372000013,65.86885696600012],[146.71080061200007,65.75023727800004],[147.21969562700008,65.69669937999998],[147.28880257400021,65.60561508300015],[147.2633976960002,65.47033099800012],[147.33189360300003,65.36893930600013],[147.55029264000018,65.18915972000013],[147.6593936710001,65.13023477300015],[147.6752016060002,64.94972998499998],[147.99490365400015,64.87063214400013],[148.4954985720001,64.93225723700004],[148.66920463100018,65.0137132430001],[148.94580056300015,65.2236450490002],[149.17649870200023,65.26944745600014],[149.3766935860001,65.1388250500001],[149.32220467700017,65.07076802000006],[148.792007559,64.83553493600016],[148.63890069800004,64.74177329100007],[148.7633976090001,64.61026676199998],[149.06869468600007,64.5959761200001],[149.35369867300005,64.67369279100006],[149.65769957200007,64.85191652800006],[149.98150657400004,64.87996287900006],[150.281600668,64.96644702000003],[150.25070162100008,65.02802567800012],[149.73319956500018,65.22990247500013],[149.59280369300006,65.33350665400013],[149.5581056310001,65.51102832300006],[149.7259066390002,65.72527982600008],[149.2971955930002,65.83184516400001],[148.96749862800016,65.81539551100013],[148.875900687,65.88848872500012],[148.87879965200023,66.01505948599998],[148.5635986860001,66.0317451730001],[148.21060170600003,66.12440878899997],[147.3894046910002,66.1570182480001],[146.97639462600011,66.26100481000003],[146.79049658600002,66.41035825400019],[146.571502602,66.52228666900004],[146.19880664100003,66.56117601800014],[146.09779364300005,66.59388455100009],[145.91729757300016,66.77129976900005],[145.69079558200008,66.85867641600015],[145.38529968600005,66.9193251850001],[145.2032926940002,66.93013700200004],[145.10119658700012,66.98050151200005],[145.22900367900024,67.04803316400012],[145.26010171300004,67.1607167890001],[145.47030660200016,67.24430112700003],[145.4898065960001,67.39804920400007],[145.37910462200034,67.43265825000015],[144.8816066490001,67.35794732900018],[144.7872006030001,67.46565713200005],[144.59950263300004,67.48097757500017],[144.52529865000008,67.36864397900007],[144.28120455400006,67.28498336500007],[144.15029867200008,67.31534982700015]]],[[[141.99119568100002,67.08899720200003],[142.26229861700006,67.23800715599998],[142.21299760400018,67.47795623400003],[142.4685977060002,67.60977641300013],[142.8674006130001,67.69656515400004],[142.8925015630001,67.77609047200019],[142.5503995490003,67.8229069210002],[142.1920016070003,67.77414503199998],[141.74079856100002,67.63299361499998],[141.3699037040003,67.44307293200018],[141.2882996740001,67.24977166000014],[141.4008025840002,67.09733652500017],[141.81050062400004,67.04952799300008],[141.99119568100002,67.08899720200003]]],[[[169.9124147230001,67.02246483900012],[169.63058462800007,67.03179624400013],[168.74139361400012,67.1061177420001],[167.9381866770002,67.08071856400016],[167.66560366500005,67.13910958300005],[167.38209568100024,67.28396127600013],[167.10511770200014,67.52473379100019],[167.00318873000015,67.63918884700013],[166.80403169300007,67.643774586],[166.3011015760003,67.5493631760001],[166.01969862300007,67.5404139850001],[165.80780059000006,67.58352228100017],[165.65020773400033,67.76699610700012],[165.5196986520001,67.80052170800013],[165.06950361400027,67.80527491700008],[164.58520462400008,67.98180551000007],[163.90330461400004,67.87908478300017],[163.40170269400016,67.98755096900004],[163.22068761600008,67.98848186300012],[163.00810260200035,67.9310517450001],[162.98107867500005,67.8385257600001],[163.04640169700008,67.74316752900012],[163.39070161300003,67.42853787400014],[163.6614986090001,67.37677023400016],[163.91090364700005,67.43073510600004],[164.0057986940003,67.639028753],[164.2082067360003,67.66985353700017],[164.44540369900005,67.57720450500005],[164.41960168700007,67.48998812000008],[164.9416966900003,67.36569874600019],[165.21620167200012,67.22151106800004],[166.07279965600014,67.27807768200006],[166.32789567100008,67.25972902600012],[166.49479663000022,67.17480945000005],[165.93980366300002,67.0437446470001],[165.86369363500023,66.97616739700015],[165.92919971700007,66.86570346800016],[166.12150572200005,66.78404931500017],[166.38999970600003,66.77464196900019],[166.9024047260001,66.83313189600005],[167.46644562200015,66.82140511000006],[167.85227971300014,66.77877022400008],[168.13999960400008,66.77896015800019],[168.52650458300013,66.81303477400007],[168.99931365900022,66.8812451930001],[169.22248870500005,66.71293959500014],[169.0709536180001,66.63796179500002],[168.49937470900022,66.54490121200007],[168.06163065300007,66.54761007500008],[167.6360016330002,66.49188232100005],[167.0662846790001,66.52245481],[166.7004546710001,66.59052759899998],[166.5578007140001,66.51254337700016],[166.5424956940002,66.43477339700013],[166.40879863800012,66.36175562099999],[166.07240268900023,66.30879004000013],[165.89430266900013,66.38929235200015],[165.649902633,66.39892869100015],[165.6018986350001,66.25029994600015],[165.43879669000012,66.20290380400007],[165.16889957500007,66.31905971500015],[164.96229572000004,66.510788542],[164.83560157700026,66.54681630900018],[164.53930666400015,66.55063124800006],[164.3018946200001,66.512833559],[163.94410671300034,66.40491806400019],[163.66540558200006,66.42959204000016],[163.5119936200001,66.59184741300015],[163.1083986110002,66.63949585100016],[163.00889569800006,66.51266558500015],[162.8509067130001,66.46277465400016],[162.6634067240002,66.51648756600014],[162.5932005740002,66.5781218790001],[162.58009362400003,66.71457959800006],[162.48410071600017,66.80917457200007],[162.09779371800005,66.87399702600015],[162.11129763500026,66.92794681100008],[162.5886996590002,66.97492452800009],[162.44490073400016,67.08286265400011],[161.97720361200015,67.07119605100019],[161.6916046780001,67.09771086100005],[161.26519765000012,67.1650279370001],[161.006698582,67.12122494900018],[160.928695585,67.04723068100003],[161.09559671200032,66.92679446700015],[161.5034026210002,66.75923033200019],[161.51739469900008,66.68555625300019],[161.28790271600008,66.52914625100004],[161.377197646,66.38640814000007],[161.2788997140002,66.36579184300018],[161.0301965770003,66.4233438340001],[160.78779562500029,66.52435414900003],[160.59030172500013,66.50060251800011],[160.5679936250001,66.43409463100011],[160.8791965910002,66.2987496930001],[161.34699966000005,66.16177984000007],[161.56120271600003,66.14967117500015],[161.82409658400013,66.17880935200009],[162.2140956420002,66.14518467700003],[162.97199973300008,65.96161278300013],[163.17199663700023,65.92494380100015],[163.6369015790001,66.01856161300014],[163.95660362800004,66.1632517020002],[164.3468016730002,66.2005846990001],[164.52360568300003,66.14798507100011],[164.32400457200015,66.0476922470001],[164.0074006430001,65.97656626600008],[164.0187076630002,65.91294913000007],[164.212905631,65.8699409140001],[164.4951016800003,65.92736985900012],[164.65170262100014,65.92612581700007],[164.78840660000003,65.85793149100004],[164.9678956690001,65.87265748900012],[165.41889972800016,66.0653465470001],[165.6703947100001,66.01056494200009],[165.73510769600023,65.93152795300011],[165.6519017170001,65.83865043100008],[165.48150667800007,65.75792750700015],[165.10150169700023,65.66265477200011],[165.08770759900005,65.57465333800013],[165.33410671900015,65.3838709960001],[165.04330463500003,65.37337953500008],[164.64549263700007,65.47313155900008],[164.4521947170001,65.47209337700019],[164.2727046430001,65.2788848080001],[164.12179568400006,65.21708386299997],[163.93359362700005,65.28321925800009],[163.90299968000022,65.34564532600012],[164.1354975810001,65.47503156900012],[164.23669464500006,65.56170564500002],[164.06469765700012,65.58770010600011],[163.84950268600005,65.56152979200016],[163.62309272900018,65.49144367100018],[163.42449962600006,65.48714727500015],[163.22019962100012,65.54827716500006],[162.98559568300004,65.58241313600018],[162.68730168600007,65.58886720200002],[162.4275056030002,65.56915229500015],[162.24719259300014,65.49188539700015],[162.28829962500015,65.40061803800006],[162.85009769200008,65.41649571000016],[162.96530158700023,65.33835172900018],[162.91209360100015,65.18275862800004],[163.17170762900014,65.03989059700012],[163.02760259700005,64.92455896200005],[162.6246945690002,64.90992516500006],[162.33909563500015,64.944197761],[161.8946986950001,64.9512633700001],[161.7906036720002,64.88720383700019],[161.82550072000026,64.82013101000018],[162.53399667700023,64.66561263600005],[162.62399266800014,64.55797944400001],[162.28970359400023,64.42627510200003],[162.3049006550002,64.29505791600013],[162.40499868400002,64.19482628000003],[162.70700066700022,63.99710539800009],[162.6958006010001,63.89374848500012],[162.59370466100006,63.83024685200019],[162.20599369500007,63.80946677200012],[162.11779763300024,63.854207695000184],[162.29200761200002,63.996384387000035],[162.21569859700003,64.06660059600006],[161.89750663300003,64.10526162100012],[161.80490068400002,63.95747257500011],[161.67120362900005,63.908692078000115],[161.47819572300034,63.92821218900008],[161.42340070800014,64.01481837100005],[161.6714016090001,64.13238445400009],[161.72160367700008,64.1942774330002],[161.31559769800003,64.19530756900014],[161.18490572300004,64.14321119100003],[161.02279669700022,63.918892854000035],[160.73500069900012,63.776773159000186],[160.4756015830003,63.692583647000106],[160.15429657900006,63.64227295],[159.82589763600015,63.61237570700018],[159.65170257700004,63.43446863800011],[159.44880670800012,63.39514175400012],[159.08009366000022,63.360724318999985],[158.8399967260002,63.27829249200016],[158.73449672800007,63.20259736800017],[158.62669371800007,63.049442563000184],[158.2733006100001,62.89868598700008],[157.90049769600012,62.861762530000135],[157.41189560500015,62.95715345000008],[156.98599266400004,62.917161714000144],[156.75329560900025,62.94760411600009],[156.38000470100008,63.033369928000184],[156.36869768100019,62.93562553800018],[156.7109066480001,62.81461030200012],[156.82189964200018,62.66407584700005],[156.63529970200022,62.60514821800018],[156.30439758700015,62.594012692000035],[156.13619961200015,62.56501566500003],[156.25239558900012,62.44062419900007],[156.1837006960002,62.388254067],[155.817596599,62.340892962000055],[155.6842956720002,62.271766903000184],[155.7241977230002,62.175369820000185],[156.30490066900018,62.10616111600007],[156.16909757700012,62.01692318400012],[155.93760667700008,61.974013539000055],[155.52839663200018,61.96057382800012],[155.25779761600006,62.01808726200011],[155.08729562400003,62.12468160100008],[155.0547025940001,62.30333147400012],[155.15159571800007,62.399443572999985],[155.6479036280001,62.71387206300011],[155.6018066810002,62.79753569400009],[155.40809670800002,62.969509214000084],[155.60589570900015,63.11478352100016],[155.53199766500018,63.217098061000115],[155.25999468100008,63.29502444700017],[155.17059363700014,63.392238766000105],[155.24169966800002,63.50438376900013],[155.17340056900002,63.64502338700015],[154.95190458600007,63.74970313200015],[154.75230364300012,63.80734564800014],[154.59750363800003,63.81492607400014],[154.37080366700002,63.782206476000056],[154.18339571100012,63.70993318100017],[154.21440171200004,63.64247897700011],[154.37899764800022,63.61961616200017],[154.66369670100016,63.51216334900005],[154.70320161600023,63.44446405800005],[154.55160567700023,63.21216178999998],[154.38999956600014,63.10888534400004],[154.37629666300006,62.99300922000009],[154.65480065200006,62.681807428000184],[154.61549371700005,62.589651420000166],[154.35910068600003,62.48522413799998],[154.20629859100006,62.389333992000104],[154.26759360500023,62.29050967699999],[154.45219462900013,62.1202024800001],[154.83869960700008,61.99775729100014],[154.79240468000012,61.928914541000154],[154.5505066420003,61.85817966000013],[154.23579367000013,61.870528215000036],[153.98269657100013,61.93563297200012],[153.74620067000012,61.94082086700013],[153.66859464000015,61.856489701000044],[153.83279461500024,61.591719629000124],[153.75869758500016,61.491957546000094],[153.59120167800006,61.45231382700007],[153.32919260500023,61.45960323300011],[153.13349964100018,61.496996914000135],[152.90919471500013,61.495566626000084],[152.75180067800022,61.45745629200002],[152.57569856800023,61.29801757300004],[152.62719765200006,61.205015831000026],[153.00810268100008,61.0205256160001],[153.42739867100022,60.783086248000075],[153.63589465700022,60.77868692200008],[153.75079361800033,60.836898234000046],[153.79440264800007,61.00922614000007],[154.05999766800005,61.10423082200009],[154.06419364800013,61.212485281000056],[154.23440562700011,61.21800560200006],[154.34109468200006,61.046218496],[154.47740169400004,60.96164341700012],[154.62510658600024,60.94377454000016],[154.72720369900003,61.01428847400007],[154.74679572700006,61.20226489099997],[154.6656035840001,61.39973398000018],[154.75520361400015,61.454922945000135],[154.95269768200023,61.46166333700006],[155.04220567900006,61.40064090200008],[155.1004025740002,61.21370937400019],[155.3753967240001,61.120272779000175],[155.50939971900004,61.179143746000136],[155.56709269400005,61.35592696900011],[155.4454955860001,61.41282232200007],[155.15319867300002,61.72609411000002],[155.2413027020001,61.783667559000094],[155.47279360100003,61.77869742500013],[155.6732027270001,61.74052556800001],[156.0843045680001,61.54682246700003],[156.27659565200008,61.5054049690001],[156.62089556900003,61.657964324000034],[156.6441037180001,61.86641186300017],[156.70010371600017,61.937056051000184],[157.22360268800014,62.129133901000046],[157.22639470000001,62.312528601000054],[157.52969369900006,62.4077637850001],[157.76100170500013,62.3836346330001],[158.22920257900012,62.25401721700007],[158.50239562600018,62.25019406400003],[158.5888066780002,62.30602843500009],[158.63209568700017,62.40761089900002],[158.6013025860001,62.53313107300016],[158.63690170300004,62.60396134000001],[158.97920270300017,62.63263734000003],[159.14329572500003,62.57579278100002],[159.22000170600006,62.69565500200014],[159.487197669,62.776740696000104],[159.7411036210002,62.791221271000154],[159.80099466600007,62.9969004350001],[160.15159559500034,63.08476423800016],[160.2263946930001,63.148216922000074],[161.04879769600007,63.10959529100006],[161.3170016670001,63.23363991400004],[161.27389571800006,63.51182304300016],[161.29089371500004,63.65100840200017],[161.48739670600003,63.74318368799999],[161.68389869200007,63.73095331800005],[161.72090160900007,63.64278810100012],[161.68949864100023,63.39002560800009],[161.8769076030003,63.33891460700005],[162.0545955680002,63.379371204000165],[162.52699259100018,63.31632236000013],[162.7886967310002,63.391883876],[162.92990061900002,63.517553583000165],[162.9754026180001,63.631541767000044],[162.87609869100015,63.87863088500018],[163.07659867600012,63.95562252100012],[163.62660273500012,63.97807344900019],[163.76060472400013,64.09879816800009],[163.64559964800014,64.18201571400004],[163.38760366200006,64.19667264600002],[163.14779657400015,64.24274897300006],[163.01750173300013,64.33286398800004],[162.99429358400016,64.43359166500011],[163.24139359900005,64.53628037300012],[163.48500070600016,64.57378804900003],[163.7136995940001,64.63804606500014],[163.69670059100008,64.74906755800009],[163.538894668,64.912099431],[163.6060026990001,64.99075504300015],[163.85609471800012,65.03277201400005],[164.15789771500022,64.99191526600015],[164.56140169600008,64.86114751800017],[164.84770169200021,64.93007526000008],[164.9028016420002,65.00707494300008],[165.06669668300015,65.05401309800004],[165.49920657500002,65.10485068200012],[165.67610161200002,65.14508281200006],[165.73159769000006,65.21672578800013],[165.75199857200016,65.42798612600018],[165.93229666200023,65.49926365100009],[166.1517027010002,65.54089153500007],[166.29550162700014,65.6837587280001],[166.68650869300018,65.81739442800006],[166.78897058600012,65.89322718200003],[166.84034762900012,66.24480678200007],[167.0549925790001,66.32887911500012],[167.33944671300014,66.3551035750001],[167.63551363900012,66.35379029900014],[167.76565559400012,66.25639627200007],[167.9265596360001,66.19358832400007],[168.2590026800001,66.24207562200019],[168.60769672600009,66.25942582700003],[168.8849796390001,66.23401022000007],[169.0400386450002,66.1605124960002],[169.29780563700012,66.20559791500017],[169.2976535890001,66.38042564000011],[169.3982086000001,66.50283109800012],[169.89050258400027,66.72279721600017],[170.18267863000005,66.77959433300015],[169.9124147230001,67.02246483900012]]],[[[148.65130658500004,67.3662936930001],[148.82940660500003,67.42665378900011],[148.9328005660002,67.57316057200018],[148.8231045880002,67.77770030000016],[149.33450361200016,67.89761113600014],[149.3616946730001,67.9574051190001],[148.90249663300006,68.04514755200006],[148.68730166300008,68.14703645900005],[148.5805966820002,68.25599818200016],[148.44410660900007,68.28167161700014],[148.19709762200023,68.21698595500015],[148.02020258500022,68.06572596300003],[147.5491025780001,67.81894747800004],[147.63890058900017,67.75142336900018],[148.1259005630002,67.64694864500018],[148.27929660000007,67.58062314800003],[148.344100614,67.42703499800012],[148.4759975720002,67.35755807400005],[148.65130658500004,67.3662936930001]]],[[[137.27900655600013,68.78303482000013],[136.77540555100006,68.8154389230001],[136.60719265700004,68.72269048200019],[136.8298036000001,68.59565351900005],[137.16099556100005,68.44621625500008],[137.2371065950001,68.20055189300001],[136.80450466900004,68.15014916200016],[136.0106046630002,68.43290981600018],[135.69479366200017,68.28628769800008],[135.64909368100018,68.03679347700012],[136.35290566300012,67.80919630700015],[136.85870356400017,67.59194542300003],[137.12300056200002,67.44284360300009],[137.96629361500004,67.23705312800013],[137.63929763500016,66.86761873300009],[137.24099764200014,66.65995121500009],[136.9270936920002,66.39759345400006],[137.39270070200018,66.06902402300011],[137.77499360700006,65.94457455300011],[138.32380659600017,65.95297506400016],[138.62449664400003,65.92057967900018],[138.79310566800018,65.79210203500014],[139.17489666400002,65.63098408600013],[139.15260365100005,65.47887668300012],[139.21769767900003,65.36014182800017],[139.42959571200015,65.30095788000017],[140.33549470900005,65.37953688100009],[140.45050062300004,65.33295747200015],[140.40089467600023,65.11628695100018],[140.5355985660001,64.94258743000012],[140.79469258100005,64.93801040800014],[141.15679968300003,64.97728850900006],[141.45765669800016,65.04615472900008],[141.79150371100002,64.96058672900017],[142.47590655800025,64.93932251100006],[142.8135986850001,65.03566310000019],[142.63240071400003,65.20138221100007],[142.3300015960001,65.36302587300014],[141.8410037110001,65.48890227800018],[141.62370270300005,65.6029979170001],[141.6455995870001,65.71411043700004],[142.12480170900017,65.89610351600015],[142.13349961000017,65.97500220300009],[141.5449986440001,66.18877409400017],[141.47889660900012,66.27591370099998],[141.57730065500004,66.35546148200012],[141.7816926940003,66.36325866400011],[142.06269868000015,66.31780846499998],[142.69290162600032,66.18031273100007],[142.9075016490002,66.25241436500005],[142.91679366000017,66.33124415300006],[142.69549565800003,66.40728310200012],[142.37229969700002,66.46686401700003],[141.98919659800004,66.56937033400015],[141.23399365900002,66.53460169700008],[140.81979369900023,66.68240532700008],[140.53930655200008,66.84418729100008],[140.49229463600022,66.93270823500006],[140.60240166300002,67.24147106100014],[140.391296559,67.37390898700016],[139.70809970000005,67.45714229200007],[139.48660271200015,67.61987811600011],[138.92300454700012,67.79879688000011],[138.57679758000006,67.99375374500005],[138.67790261100026,68.32278200200017],[138.51489269900014,68.38423208100016],[138.00869766300013,68.44002135800008],[137.82919266900012,68.49164399099999],[138.08489955700009,68.65189357500003],[138.05310062800004,68.74182586400019],[137.84590165800012,68.7993781900002],[137.27900655600013,68.78303482000013]]],[[[148.65179458000023,68.60355111600006],[148.76989760700008,68.77103361100018],[149.05320761100006,68.86899978700006],[149.43310563800026,68.97046138400009],[149.59759562700003,69.05023044800015],[149.40260355700013,69.15849781500015],[149.0946046580002,69.20536070000009],[148.68710368200027,69.11568758000016],[148.5328976180001,69.04300541499998],[148.11990364700011,68.74762513500013],[148.13529969400008,68.64983363800002],[148.3101956480001,68.54500687500013],[148.43980367500012,68.51670018200008],[148.65179458000023,68.60355111600006]]],[[[127.08979757600014,68.94270387300014],[127.48490154900026,68.96791999100003],[127.49210361500002,69.06627676300008],[127.24109662800015,69.37274294800017],[127.03209655400008,69.42116972900016],[126.72959869700003,69.39551808800007],[126.32479853900008,68.9853620610001],[126.70890059300007,68.89074479099997],[127.08979757600014,68.94270387300014]]],[[[132.93629457200007,68.46783955400014],[133.33149761900006,68.73399699900017],[133.7277066620003,68.95025714200011],[133.91619856600016,69.280796823],[133.85440063700014,69.49770471900018],[134.08340462600006,69.71619226900009],[134.3708036580001,70.06260224600004],[134.20359759700034,70.15405316900006],[133.90789763200007,70.15269530000006],[133.56959563700002,70.08768140400014],[133.55529761900004,69.94895554100015],[133.28309665400002,69.69289778700005],[133.3202056870001,69.5566600090001],[133.0715945830001,69.45040714900006],[132.5411986460001,69.07558436400006],[132.16740465600026,68.69322390100007],[132.33459462300016,68.42528831900006],[132.93629457200007,68.46783955400014]]],[[[145.24760463100006,69.4947896610002],[145.09410063500002,69.65123956000019],[144.36379966000004,69.59386358900008],[143.87019357300005,69.66911648400014],[143.77699267600008,69.80043307900013],[144.16679358700003,69.84321330700004],[144.60710166700028,69.97825414900012],[144.1524965750001,70.09253335200015],[143.44590766800002,70.10085825800007],[143.09919761900017,69.98058096500006],[142.80859368300003,69.80997855700019],[142.50430260200017,69.71636828900012],[142.08819559100004,69.72861374700005],[142.1284946080001,69.9450113530001],[141.72970561600016,70.11732987100004],[139.6103975540002,70.18731088400017],[139.23500060900005,70.2256513860001],[138.00489764400004,70.30543687800008],[137.2048035780001,70.2238050200001],[136.28509556400002,70.34103666500016],[135.78089860600005,70.33350669800018],[135.1237025790001,70.28484354800008],[134.98480270800007,70.20212103600005],[135.1116026310001,70.09611208900003],[135.84109458500006,69.97495804900007],[136.25199861300007,69.79288768900005],[135.8861996180001,69.63112751900007],[135.25019857400025,69.48873943600012],[135.16380261000006,69.42203960300003],[135.7115936780002,69.32788736100002],[135.82949855700008,69.09855815500015],[136.0041046650001,68.96747005000003],[136.20899961700002,68.96966745000009],[136.4277035880001,69.06407165200017],[136.43260163700018,69.2210625190001],[136.6300967100002,69.25094098700009],[136.98199465400023,69.25894436300007],[137.10209659800023,69.38263141500005],[136.94900465700005,69.44183162299998],[136.9501036920002,69.5106757150001],[137.11689769800012,69.54268234700015],[137.60200470400002,69.53355696900007],[138.17030360700005,69.56094064700005],[138.63110359600012,69.42864705700015],[138.88800054600017,69.15469075400017],[139.19619759400018,68.99766082700017],[139.35470558600002,68.77480965900014],[139.53849758900003,68.71154322100006],[139.52290356100002,68.48698968800011],[139.67149358200015,68.35288141600012],[139.92629958300006,68.27071613400005],[140.3190006320002,68.09005711900005],[140.4703065570003,68.08173288300014],[140.8211056340001,68.28788998300018],[141.15390055000023,68.34787607900017],[141.3610996880002,68.31586860800013],[141.50660667800003,68.11036697300005],[141.61090068700014,68.09567249100013],[141.89880363900033,68.18028679800011],[142.0928036260002,68.31673060300011],[142.50669865300006,68.44884867600018],[142.57940663400007,68.52842009400007],[142.5196076220003,68.66335348000013],[141.99110364800015,68.84608751900004],[141.641692615,68.86568843200013],[141.17720056500013,68.73122812100002],[140.77220158800003,68.68006246900018],[140.61390666400007,68.72510195500013],[140.59379562800018,68.79206045400014],[140.91659562800032,68.95082945800004],[140.84930470300003,69.05675425100003],[140.727798623,69.09643719800005],[140.23379556900022,68.97609150800014],[140.0563966110002,69.03793922500006],[140.4445037070002,69.23857315300017],[140.26300063400015,69.305745893],[140.04859959700002,69.31019416900017],[139.8065946060002,69.3863397360002],[139.86450165500014,69.4477831100001],[140.50390659000016,69.60642990600002],[140.70829762200003,69.68962482100017],[140.76339757200003,69.77412580500004],[140.9225006790001,69.82815270300006],[141.25639362400022,69.79505374100006],[141.2763066790002,69.66022009900007],[141.13369764900028,69.53433464200003],[141.14509569600023,69.46441582300008],[141.32179258600002,69.45110100200003],[141.62300063500027,69.68497822900008],[141.76170369900012,69.70827941700014],[141.93370068700006,69.59225325799997],[141.89149462000034,69.31851086100016],[142.01300070000002,69.24668365100013],[142.4150997060001,69.22644873000019],[142.82800265100013,69.43512408900011],[143.24099762800017,69.45763285200007],[143.65879862100007,69.40404063900007],[144.34030166500008,69.38671356900011],[144.83219868200024,69.42470940700014],[145.24760463100006,69.4947896610002]]],[[[153.37120069200012,69.5976175080001],[153.36129764100008,69.7216936480001],[153.2451936970001,69.784365138],[153.46609456500005,69.88390359100003],[153.1573025690002,69.99928115900013],[152.70230067800014,70.07068944200006],[151.97219868900004,70.12532671000008],[150.66259756300008,70.25095970400014],[150.36239668300027,70.41376509800006],[149.69810470400012,70.60294699900004],[149.19590766900023,70.62440148600018],[148.9183955950001,70.53198916000008],[148.88740568700007,70.39947412000015],[149.69909661900022,70.17105988300017],[149.6938016030001,69.96413148000016],[149.0458065580001,69.83814711700012],[148.50199857100006,69.67055062700007],[148.59849556600022,69.57665805600016],[149.12759364900012,69.53683814900012],[149.58149767900022,69.60319465900017],[149.9808046730002,69.79188035200013],[150.45829755800003,69.82015586400018],[150.70109564400013,69.770570201],[151.10060162500008,69.74230139500014],[151.7339016850001,69.87420639900012],[152.12669359400024,69.82569546400003],[152.35159262900004,69.70686874300014],[152.60200466900005,69.64457913300004],[153.04060367800014,69.60188188500007],[153.37120069200012,69.5976175080001]]],[[[130.26585357800002,70.87340871900017],[129.87130767200028,70.94329920700017],[129.51080369200008,70.93404374200009],[129.36199959700002,70.88139767899997],[129.2162015880001,71.18271536400005],[128.65950055700023,71.23195803900006],[128.48390169700008,71.28248314600017],[128.47250365000002,71.5046570560001],[128.22309861200006,71.63756956600008],[127.69539661800013,71.72561743500006],[127.3973996760003,71.71632425200005],[127.37270357200009,71.57202107100005],[127.69509855800004,71.39857904200016],[127.99939768600007,71.18199100000015],[127.96260062800002,70.85943893600006],[128.077606542,70.70233290200008],[128.10920765800006,70.57326617700005],[127.6181025630001,70.23633261200013],[127.70649761100003,70.15100098200003],[128.05990563900014,70.02846627500014],[128.06019565300016,69.81592199700009],[128.3383945400003,69.73606844400001],[128.66690060400015,69.77572037800007],[128.89920069200002,69.68970897600008],[128.74740559900022,69.59347416600014],[128.18730168300021,69.36299211300013],[128.07870457100023,69.26832203700008],[128.1179965870001,69.16580750500009],[128.27409360800004,69.04845298100008],[128.19979859700004,68.96409013200014],[127.22250355500012,68.722644549],[126.69239763200005,68.60714460500014],[126.4682995710001,68.49561231900009],[126.57050363700012,68.33254054900016],[126.8504025420001,68.32394876300015],[127.42209661900017,68.47095996900015],[127.97129869600008,68.48485330800008],[128.21150157800014,68.44083725300015],[128.34390262400007,68.2904229940001],[128.074996585,68.21148558300018],[127.82579757400015,68.20115404900014],[127.51629663800009,68.24836796800014],[127.23639655900001,68.22200721800004],[127.55680067600008,68.09362009800003],[127.87940269500018,68.10385909600006],[128.14370757200004,68.06358203999997],[128.170303686,67.9788602770002],[127.81759655300004,67.85410553800011],[127.25389864400017,67.96032051300011],[127.0475006480001,68.02994898200018],[126.77829755500011,68.00956285299998],[126.65110066500017,67.93466870400016],[126.93650061300013,67.74924910300007],[127.14910155200016,67.742168407],[127.63670368300018,67.68901155000015],[127.64920059700012,67.55496362800005],[127.3955995790003,67.4341462050001],[127.11489869300021,67.36968216100018],[126.93840062300012,67.28737958300007],[127.13829761400007,67.13431764900002],[127.16369662500006,66.95462104400008],[126.95110356500004,66.86330741800015],[127.12339760800023,66.63099576200017],[127.33329756300009,66.5304883610001],[127.55799861700007,66.24321992],[127.54750061900006,66.17744360500018],[127.34829764900007,66.06870400200017],[127.0669025750002,65.97913733100006],[127.34929660400019,65.88514686000008],[128.1228026020002,65.97278234000015],[128.44349656500003,65.94961073600012],[128.40429658300013,65.75582214000013],[128.19000266700004,65.69534855300009],[127.74539970000012,65.63713338500008],[127.71040357800018,65.53978462100014],[128.06820657300023,65.47719879400012],[128.319396621,65.3696562940001],[127.82689660900007,65.23379369000008],[127.57430259300008,65.19632373300004],[127.69460268500006,65.11827111500003],[128.2234955790002,64.91763148700016],[128.57189961000006,64.90300489800012],[128.3883055880001,64.55627020600019],[128.55799855900034,64.47020750700011],[128.95930463800028,64.527635949],[129.17329362000032,64.46432491900009],[129.27209463300005,64.363688604],[129.38600168000005,64.40894048800016],[129.44439655600002,64.502809087],[129.85589569900003,64.5399967410001],[129.9617006300001,64.33085786300006],[130.12849463600003,64.34471247900012],[130.51679954500014,64.48655003800008],[130.76890556700005,64.45719879300009],[130.92289755700017,64.35060277700006],[131.2145996900001,64.40563617400011],[131.5162045390001,64.43388151200003],[131.53320354200002,64.35189996100013],[131.41760268000007,64.27876131700009],[131.43069454200008,64.18531198200009],[131.94590766700014,64.26402861400015],[132.02569567400008,64.220775646],[132.01069659400002,64.08821551200003],[132.7810055660001,64.25030995300006],[132.88800056000014,64.08005220900009],[133.33859256500034,64.01902927200007],[133.4860996440001,63.945951984000146],[133.80020157500007,63.99081494800009],[134.06779467200022,64.1148287260001],[134.29789769600006,64.00306727800006],[134.3818966030001,63.83050568500016],[134.79809564700008,63.74292485500018],[135.2601016250003,63.76440549300008],[135.44599966400017,63.66520013700017],[135.6417995820002,63.72470092100008],[135.73919662600008,63.82659552700011],[135.6940005660001,63.992325031000064],[135.59390270500012,64.04806049600012],[135.29479968600003,64.12442717800002],[135.05400068400002,64.38895065500003],[134.84750361400006,64.72428545600008],[134.47390760500014,64.86144591300007],[133.9678035960003,64.92836619000008],[133.67100560200004,65.04388088600012],[133.48989865800002,65.17004646599997],[133.35809356500022,65.31315036400014],[133.38439966600015,65.46995716499998],[133.1219936250002,65.52478503700019],[132.78469863300006,65.44774696500014],[132.79049656300003,65.324717223],[132.92829857200002,65.19844519200012],[132.9550936720001,64.95892359200013],[133.0858005670001,64.77519160300005],[133.0751035820001,64.56889787900008],[132.83210768300012,64.60022557700006],[132.7877955780001,64.76462437000015],[132.66929659000004,64.95777946200013],[132.61920164200012,65.2056543000001],[132.49180559900014,65.43309036900018],[132.42149366900003,65.61390025900016],[132.5881956410002,65.78492980800013],[132.27389556200012,66.05570216100006],[131.7561036610001,66.0418167000002],[131.38439961400002,65.99821236400015],[131.3435976830001,65.92284564300007],[131.75100662500006,65.6065228430001],[131.8302006910002,65.43243473700011],[131.6564946320001,65.25185266800003],[131.2850956870002,65.10136347500014],[130.8636016270001,65.14978992100004],[130.68690457000002,65.31357767300005],[130.73190265000005,65.45926085000008],[131.02549758400005,65.58663174800017],[130.90669265600002,65.70139877800017],[130.56019567500005,65.63762138000004],[130.29949954300002,65.53568737900002],[130.00399755800015,65.534688759],[129.73539762600012,65.71012014900015],[129.64270065000005,65.919053335],[129.94259659700015,66.16458777700012],[129.79110761100003,66.3078289710001],[128.8307036120002,66.27207512400008],[128.97360265600003,66.47164840700009],[129.29580670200016,66.7266041090001],[129.57600366700024,66.84813147900007],[129.60859669800004,67.00379465300006],[129.56359861800013,67.06890779100002],[129.65710461600008,67.2297974170001],[129.4906006230001,67.42665378900011],[129.66799958100012,67.68616572600007],[129.95179757900007,67.88542519000015],[130.00779757700002,68.07858950200006],[130.44659456800014,68.23007865600016],[130.863998594,68.22195323900013],[131.22210669000003,68.37159636200016],[130.89990264400012,68.53412733200014],[131.13110369700007,68.67913911900013],[131.21949757200014,68.91261216999999],[130.81460554700016,69.003246192],[131.1974025390001,69.13819466600006],[131.16209360500022,69.37361282200004],[131.3372036320003,69.51848127800014],[131.3780975970002,69.69155584400016],[131.1537016430001,69.82134643000012],[131.34649664800008,69.95866094700006],[131.9676055650002,70.1606755430002],[132.1976926630001,70.26179348199997],[131.87629663200005,70.36219510300003],[131.64050263100012,70.49426674000017],[131.45329265600026,70.5473790050001],[130.85729960900005,70.62894162800012],[130.53550761700012,70.6875388430002],[130.39259365300006,70.82646335600015],[130.26585357800002,70.87340871900017]]]]},"properties":{"objectid":160,"eco_name":"Cherskii-Kolyma mountain tundra","biome_num":11,"biome_name":"Tundra","realm":"Palearctic","eco_biome_":"PA11","nnh":2,"eco_id":771,"shape_leng":455.376552216,"shape_area":109.668886596,"nnh_name":"Nature Could Reach Half Protected","color":"#5085A5","color_bio":"#9ED7C2","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":558029.6809851653,"percentage":6.530363093205617}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-105.23399357499994,25.981622715000128],[-105.19704463699998,26.05834814200017],[-105.32066362699993,26.170644019000065],[-105.36138157199997,26.12773403900013],[-105.32380667299992,26.047093593000056],[-105.23399357499994,25.981622715000128]]],[[[-105.64496666999986,26.312608481000098],[-105.74735262299993,26.311960560000045],[-105.7343065259999,26.149642825000058],[-105.67015060099999,26.14037344600007],[-105.62691456499994,26.06156913900014],[-105.56376664699997,26.103565157],[-105.64496666999986,26.312608481000098]]],[[[-105.41087352499994,26.402400625000098],[-105.44673164199997,26.303829946000064],[-105.352729604,26.286185872000146],[-105.41087352499994,26.402400625000098]]],[[[-107.76807357699994,28.890370939000093],[-107.78281365699996,29.01158013200012],[-107.85239451699994,29.11053805500012],[-107.89817865199996,29.036097870000162],[-107.76807357699994,28.890370939000093]]],[[[-107.93122866399983,29.386809272000107],[-108.04567768399988,29.48295657500006],[-108.04504367699991,29.383257524000044],[-107.9357295779999,29.328061686000126],[-107.87628159999997,29.256870326000126],[-107.80707557799985,29.23978314600015],[-107.7059326609999,29.298179866000055],[-107.836921524,29.471969073000082],[-107.93122866399983,29.386809272000107]]],[[[-107.30506864499989,29.42184395100014],[-107.35517867899989,29.521064059000025],[-107.43377662399996,29.58902251800015],[-107.45162957499991,29.38936307],[-107.49210360599989,29.32480565200018],[-107.44314557999996,29.272799798000108],[-107.49010452199997,29.145210636],[-107.58626557099996,29.001295537000146],[-107.55655658599994,28.822921429000075],[-107.47288557799999,28.792906672000072],[-107.45110352599994,28.88922396000015],[-107.36061853499996,28.918607727000165],[-107.33172561099997,28.78777476800019],[-107.246917683,28.79968142900009],[-107.26148257999995,28.877643187000047],[-107.39826166199998,28.999954600000137],[-107.37973061499997,29.203573492000146],[-107.29615063499989,29.146160808000104],[-107.26658665699989,29.20613533700009],[-107.27500158399994,29.344156952000105],[-107.30506864499989,29.42184395100014]],[[-107.34205664199999,29.408773379000138],[-107.31902367499998,29.301731446000076],[-107.40276358199998,29.312267330000168],[-107.40945451999988,29.378975713000045],[-107.34205664199999,29.408773379000138]]],[[[-107.75854452699991,29.901834642000097],[-107.84191864699994,29.829510385000106],[-107.80523658899995,29.75675211300012],[-107.81410263099997,29.674910372000056],[-107.691421575,29.576750909000054],[-107.69585459599989,29.721362544000044],[-107.788741674,29.758011242000123],[-107.75854452699991,29.901834642000097]]],[[[-111.14585868699999,31.05995969100013],[-111.19810459799999,31.154371604000175],[-111.21834555299989,31.08167988400004],[-111.14585868699999,31.05995969100013]]],[[[-100.599922613,25.854446444000075],[-100.51453365099997,25.863557070000184],[-100.50998663599995,25.896232746000123],[-100.54290756699999,25.979905765000183],[-100.51927160499991,26.077878311000063],[-100.54525751699992,26.155370683000058],[-100.47842357399992,26.170247052000036],[-100.49797067499998,26.262504816000103],[-100.54448654999999,26.372666829000025],[-100.58586867599996,26.605497491000108],[-100.561424532,26.69376060800016],[-100.49946567099988,26.753968657000087],[-100.43088560999985,26.75475873500011],[-100.44171167599995,26.84535654800004],[-100.50212860199986,26.895851647000143],[-100.51620466699995,27.069767756000033],[-100.63117956799988,27.18448382400004],[-100.69554856099995,27.17260147000013],[-100.73873866499991,27.04512982199998],[-100.84306351999993,26.99428218000014],[-100.90991254999994,27.040644163000024],[-100.91232251499991,27.09813848700003],[-100.98063653499997,27.20743381],[-101.08167266599986,27.233857759999978],[-101.19824264399989,27.35059956600014],[-101.24082153799992,27.35137170700017],[-101.35093661199994,27.514557639000145],[-101.44195553099996,27.506341027000133],[-101.53789563299989,27.61626616700005],[-101.4488295299999,27.638747270000067],[-101.48412354499999,27.7601390210001],[-101.5308915469999,27.72183791400016],[-101.70381155099994,27.809538941000028],[-101.87893666599996,27.810923966000132],[-101.94647955,27.83655599400015],[-102.036125514,27.956986844000028],[-102.13227063699998,28.15279464000014],[-102.1473615829999,28.231186557000058],[-102.11368561099994,28.34502084900015],[-102.20563458599997,28.338696200000072],[-102.21920052899998,28.256750523000107],[-102.31648257299997,28.157049629000028],[-102.37380255299996,28.176760680000143],[-102.34684752599992,28.26153524900002],[-102.38037865899997,28.33012436300004],[-102.25215951299992,28.329276450000123],[-102.24724553799996,28.399499699000046],[-102.37160465099993,28.62757346400008],[-102.46013665899994,28.639580876000082],[-102.45270559899996,28.48947490400019],[-102.53086852299992,28.48164922300009],[-102.48176565699993,28.37536149400006],[-102.48511456299991,28.303718350000167],[-102.56648255899995,28.303041428000142],[-102.61975860599989,28.422165539000105],[-102.65756953899995,28.605573147000086],[-102.54361756499998,28.72942129900008],[-102.69124567899996,29.020824533000052],[-102.66243758099995,29.07072267400008],[-102.79647862899998,29.09543068000005],[-102.89232917899994,29.248952557000052],[-102.84104956699997,29.31467612200015],[-102.77309462799997,29.274123804000055],[-102.67607158399994,29.282126510000126],[-102.60510251299996,29.225825601000167],[-102.6023946549999,29.128651515000115],[-102.53141753699998,29.00712632400007],[-102.41041554499992,28.990824696],[-102.47139757799988,28.813759003000143],[-102.37861661599993,28.795531716000028],[-102.4146886389999,28.67489249300013],[-102.34707651999997,28.666805800000077],[-102.19744161099993,28.599429548000103],[-102.0960995399999,28.51512604200019],[-101.99679561199997,28.51173103600013],[-101.96022067499996,28.384354103000135],[-102.00649263599996,28.362667940000165],[-101.90944662599998,28.146680041000025],[-101.85179153699988,28.06407035100011],[-101.801895576,28.06541832800019],[-101.7920076129999,28.181523613000138],[-101.67706255099989,28.24763168300018],[-101.72885852199988,28.32765254000003],[-101.66771656099996,28.355487499000162],[-101.45071461999993,28.34423697300008],[-101.33814264299991,28.36908479000016],[-101.32773567199985,28.45377151600013],[-101.21877260699983,28.518381741000155],[-101.28787251399996,28.606122330000176],[-101.30751751499997,28.833404005000034],[-101.27339160199989,28.968053580000117],[-101.29166465399993,29.041584664000084],[-101.4419476519999,29.001518496000017],[-101.46566055899996,29.055685204000042],[-101.40397662499993,29.104994432000183],[-101.43727155599998,29.172301617000016],[-101.52478767799988,29.23705198700003],[-101.71212757199999,29.259101421000082],[-101.72017654599989,29.228236404000086],[-101.69238265799999,29.165328880000175],[-101.51557160799996,29.060870920000127],[-101.576339567,28.81095190400015],[-101.46999366799992,28.792893596000056],[-101.39788851299988,28.744471509000107],[-101.43061867199992,28.67891915900003],[-101.50102263499997,28.684528161000117],[-101.52301054699984,28.523630488000038],[-101.6388165969999,28.52736546500006],[-101.70960260799995,28.570410561000074],[-101.81021159799991,28.524879392000173],[-101.86840865999989,28.562855951000074],[-101.87400056299992,28.639678775999982],[-101.81190457399993,28.655103322000116],[-101.88713852599994,28.83747593300012],[-101.98428360999992,28.81093983400001],[-101.9377365549999,28.73890978100019],[-101.98554961299993,28.610045060000175],[-102.13233165699995,28.702740360000064],[-102.22794352399995,28.690678634],[-102.28472857099996,28.757372095999983],[-102.29734752599995,28.930970196000146],[-102.250602658,28.954945121000094],[-102.24880960199994,29.04456158],[-102.33222965499994,29.135390063000045],[-102.29498265599995,29.335421332000124],[-102.33755467799995,29.396613919000174],[-102.307830605,29.450760007999975],[-102.19864659299998,29.468620167000097],[-102.0405806629999,29.42026496800014],[-102.06240060099998,29.34378496300019],[-102.02390251999998,29.269927823000046],[-101.89344758399994,29.28417337000019],[-101.85665857299989,29.234557197000186],[-101.80221559699993,29.378460561000054],[-101.71927666499994,29.393500042000028],[-101.78743763099993,29.518243381000048],[-101.91683963199989,29.468045169000106],[-101.89080057899997,29.673978136000187],[-101.8048626019999,29.716376653000054],[-101.72045851399997,29.646088192000036],[-101.60182960599991,29.726977413000157],[-101.39701757799997,29.733968618000176],[-101.36322665699998,29.65264133100004],[-101.30003573199997,29.640704968000136],[-101.2611811729999,29.536786768000184],[-101.15189023499994,29.477014033000046],[-101.06016293999994,29.45866857800013],[-101.00664474099995,29.365995835999968],[-100.92918065099997,29.38813404400014],[-100.9191600659999,29.475549427000033],[-100.97235195399992,29.568584495000096],[-100.93292075599999,29.656665527000087],[-101.00959083999999,29.65267371500005],[-101.08447639499991,29.745793649000063],[-101.07364080399992,29.83491599600012],[-101.21502426599994,29.963122434000127],[-101.33673816199996,30.163352588000066],[-101.42748959599993,30.123391418000153],[-101.65304774399993,30.21961957900004],[-101.74331639799993,30.303072639000106],[-101.65893747299992,30.35126470100016],[-101.73111807199996,30.418985894000173],[-101.63778607699999,30.560630979000166],[-101.64657179599999,30.63734078500005],[-101.7587242109999,30.659334627000135],[-101.82067494299997,30.76016712000012],[-101.87330615299993,30.9660808700001],[-101.98785450899999,31.007987672000013],[-101.99233794399993,31.24696265900019],[-102.24878245799994,31.408362451000187],[-102.34208850199997,31.426159851000136],[-102.39437362399991,31.367429386000083],[-102.48324430399998,31.340655718000107],[-102.63318110299997,31.368112653000026],[-102.78913393199997,31.362100641000154],[-102.85383858699998,31.40068741200008],[-102.80610997499997,31.4977105480001],[-102.9111827029999,31.615245727000115],[-102.95436748499998,31.719291863000137],[-103.04544712899991,31.74149448500009],[-103.10726602999989,31.966981794],[-103.0897440789999,32.08363707900003],[-103.16021605299989,32.19382303100002],[-103.23397550699991,32.177010784000174],[-103.3490395799999,32.22060610199998],[-103.30924215099998,32.30878498300018],[-103.33916954899985,32.40183774900015],[-103.54518375499998,32.46186483600019],[-103.6675876,32.46415513700009],[-103.69495113799991,32.50182045300005],[-103.65637230899989,32.60686568400013],[-103.75584393899993,32.61840769600013],[-104.04280670199995,32.792151524000076],[-104.03653027699994,32.93019182600011],[-103.95454387799998,33.07151414700007],[-104.03847798599998,33.127739741000084],[-104.05335294199989,33.243714239000155],[-103.96742810599994,33.383321765],[-104.03549579299994,33.42276399500014],[-104.00883736399993,33.51294398000016],[-104.22952774799995,33.66098047200006],[-104.18687229699998,33.774348175],[-104.30674033199989,33.828507186000024],[-104.39473899899991,33.76926052100009],[-104.48293346999998,33.79657551100007],[-104.61368115099998,33.76071239400005],[-104.63989338799996,33.70910515600008],[-104.59105445699993,33.592381745000125],[-104.62147114599998,33.46115643500008],[-104.76604324499993,33.329034185000125],[-104.712458444,33.24404357200012],[-104.69614187399992,33.079456139000115],[-104.58268706099994,33.04947969299997],[-104.58641434299989,33.002659535000134],[-104.74332353499994,32.95565280500011],[-104.8140926179999,32.86472207500003],[-104.77536980499997,32.74873284500018],[-104.87224194699985,32.70951248200004],[-104.97756644899988,32.7025458490001],[-105.09178015499992,32.646939622000104],[-105.08191926999984,32.61961543100011],[-104.87333290899994,32.52335222700009],[-104.64592810299985,32.2336616230001],[-104.42601339699996,32.22434025000007],[-104.48133582799994,32.15837133600013],[-104.72252945799994,32.01470017300005],[-104.8264071889999,31.86911210300019],[-104.93354437999983,31.91950230800012],[-104.96433093199983,32.037585879000176],[-105.00752041599992,32.06614754300011],[-105.01801662699984,32.22198647000016],[-104.94153411199983,32.28608223700007],[-105.12953017399991,32.4129357760001],[-105.18133076799995,32.504079263999984],[-105.30508843099989,32.43622215700009],[-105.37117397699996,32.437859993000075],[-105.40357648499997,32.3531830120001],[-105.5804001969999,32.518676224000046],[-105.80757935899999,32.53930775800018],[-105.93402703599986,32.813655425000036],[-105.88599912599989,32.99401982900008],[-105.92391898299991,33.13807238000015],[-105.98353217999994,33.17133940400004],[-105.93809469799999,33.33552591000017],[-106.02607351699987,33.42638438700004],[-105.85906916899995,33.55696980200014],[-105.71918464099997,33.62652683400006],[-105.80654201599998,33.70297692100007],[-105.81198210499997,33.80195793900009],[-105.97363106499995,33.84827593900013],[-106.05670302399994,33.846752978000154],[-106.183035051,33.728315630000054],[-106.39356995299994,33.69956803399998],[-106.35249938599992,33.847063779],[-106.27161186699988,33.810540599000035],[-106.29235757199996,33.97936014100003],[-106.3366807829999,34.039015923000136],[-106.36012616599993,34.150924729999986],[-106.42096107799995,34.164716625000096],[-106.5682510709999,34.062981416000014],[-106.67951264699991,34.066954723000094],[-106.73168361599994,34.11003064600004],[-106.6694614889999,34.27010943200014],[-106.7208477829999,34.32749918800005],[-106.96165925699995,34.249213648000136],[-106.98597196199995,34.12618560700008],[-106.95271134099983,34.054384366000136],[-107.0284617829999,34.00248160000001],[-107.04561524399998,33.90043546300018],[-107.13190557999997,33.85343727400004],[-107.21475178999998,33.87159702400015],[-107.32367381499989,33.84219848000009],[-107.31470467199995,33.73910796000001],[-107.2630215289999,33.72583757100011],[-107.28951632099995,33.60787066800009],[-107.26220350399996,33.54828424200019],[-107.33450681799997,33.41955062200009],[-107.50273607099996,33.452766461000124],[-107.48752407899997,33.344892643000094],[-107.54185135399996,33.22455901100011],[-107.51629261299996,33.131304119000106],[-107.51817502999984,32.94935779999997],[-107.59893163099997,32.91193312900009],[-107.56698005999988,32.70027719500018],[-107.69698760899985,32.460972316000095],[-107.77439073799991,32.48475680400014],[-107.83622104799997,32.56733636000007],[-107.95139379899996,32.58229336700009],[-108.05121892199998,32.65747480200014],[-108.132515647,32.77934706500014],[-108.2798191739999,32.80770402100018],[-108.35400984899991,32.7316564460001],[-108.32039979399997,32.656736795000086],[-108.34106570299997,32.54203254000004],[-108.45208121399997,32.499107224],[-108.48198634499994,32.41561517900004],[-108.57305738699989,32.43981349500007],[-108.5383409929999,32.52405969900019],[-108.54431889099999,32.61022729600006],[-108.67900646999993,32.741503994000084],[-108.78445721299994,32.80466468700007],[-108.90480336599995,32.76737647699997],[-108.97686467999984,32.79307112700019],[-109.13855401399996,32.99781529800015],[-109.16605278099996,33.07230647700004],[-109.41807639799993,33.08604866000013],[-109.45062322899992,33.12129675300008],[-109.46818830299992,33.264191296000035],[-109.43911277699993,33.33747218400009],[-109.51863654799996,33.356731524000054],[-109.52251211999999,33.177452832000085],[-109.57578617799999,33.143066881000095],[-109.72103106599991,33.20778001800011],[-109.7687459309999,33.289178989000106],[-109.88742475099991,33.32819292800008],[-109.95369051499995,33.39006117600013],[-110.07461484699996,33.443540229],[-110.38723153799998,33.53578456000014],[-110.41175598099994,33.485525098000096],[-110.3118171619999,33.43943247200008],[-110.36726414499998,33.3447613080001],[-110.23629702399995,33.325782654000136],[-109.97110323499999,33.15691338100004],[-110.00036148099997,33.10847696700017],[-110.10479162099995,33.1291398350001],[-110.01621279699998,32.9969550350001],[-110.1275497119999,33.00648124000003],[-110.1635306689999,33.126946113000145],[-110.2764418239999,33.15664517200014],[-110.51686685699997,33.09879690200012],[-110.62231535299998,33.137698052000076],[-110.6776765859999,32.95481494100005],[-110.56522979299996,32.877134791000174],[-110.57502631999995,32.8239865380001],[-110.51682274099988,32.65963770800005],[-110.45015605799989,32.58036207200013],[-110.41924049499994,32.39047313100008],[-110.34834230699988,32.31327070599997],[-110.36223245599996,32.25629582100004],[-110.53455378199993,32.38814984700019],[-110.60473262099993,32.54124631200017],[-110.71877667799998,32.69505306800005],[-110.73921471099993,32.79027949400006],[-110.81092470799996,32.85329422900003],[-110.8621022939999,32.952671156000065],[-110.97266687699994,32.97951880400012],[-111.03691795199995,32.81786607300006],[-111.00460769499995,32.68091786500014],[-111.08647267299995,32.562969361000114],[-111.04954215999999,32.46516534700015],[-110.89472214899996,32.48508259100004],[-110.86433655099995,32.447054728000126],[-110.95216470399998,32.371274816000096],[-110.89317394999995,32.33940267300005],[-110.70494175799996,32.310075962000155],[-110.64205917599998,32.25932952600016],[-110.70483679799997,32.173177886000076],[-110.62467319899991,32.149804838000136],[-110.66041444299998,32.01584985500011],[-110.79784860199999,31.93774888300004],[-110.94099558799991,31.797185109999987],[-111.000323257,31.711673390000158],[-111.07874907999997,31.73223285],[-111.0523190479999,31.917007377],[-111.09297468799997,31.99193726599998],[-111.23170361599989,32.00424027800011],[-111.31870489799991,31.942367744000023],[-111.40388973699999,31.751781411000024],[-111.45193879599992,31.81638039800015],[-111.47088589999998,32.007523420000155],[-111.61991971799989,32.04960917900007],[-111.70000270899999,32.009072029000095],[-111.72089470899994,31.91450954200002],[-111.65776835099996,31.761656665000146],[-111.68633110199988,31.70421678500003],[-111.66204736399999,31.52799827000007],[-111.53428664199993,31.466757927000174],[-111.54727155099988,31.339706212000067],[-111.44325263499996,31.27990921200012],[-111.3426515249999,31.371978048000187],[-111.26325260599992,31.3472630010001],[-111.29981262299987,31.26717441900007],[-111.1969376699999,31.258220032000054],[-111.17274464699994,31.182948530000147],[-111.17848155699988,31.3456340620001],[-111.07483795299999,31.332241228000044],[-110.62703320999998,31.33300718800018],[-110.48194858799997,31.32132587199999],[-110.42341658399988,31.270605635000152],[-110.43518863199995,31.20561269300015],[-110.24895464599996,30.984086368000078],[-110.27647360699996,30.945890873000167],[-110.44547255699996,31.00361284899998],[-110.62850163899998,31.014179412000033],[-110.65619661999989,30.831720802000063],[-110.74911454299996,30.858796864],[-110.84804564399991,30.957862243000193],[-110.89838366599997,30.938094027000034],[-110.8448486179999,30.83636454400005],[-110.95246856699998,30.623163125000076],[-110.927116663,30.51809311900007],[-110.84152267899998,30.472226674000126],[-110.80349767199993,30.391215580000164],[-110.73148354499989,30.46411684800006],[-110.79326655399996,30.500771749000023],[-110.82121265699993,30.618067264000047],[-110.81127959899999,30.722021805999987],[-110.69949367599992,30.713692877000028],[-110.70169057299995,30.558542675000183],[-110.63385767499994,30.620691302000125],[-110.6852035369999,30.743682991000185],[-110.60614056499998,30.808760758000176],[-110.60084554899998,30.906128298000056],[-110.5418625989999,30.982172444000128],[-110.42855066799996,30.94016905100011],[-110.3965986849999,30.83474164000006],[-110.33320651899999,30.759574409000038],[-110.35334756199995,30.66028087500007],[-110.25938458299999,30.647725287000014],[-110.21864367199998,30.510577402000024],[-110.31116462799997,30.4653548550001],[-110.26468663999992,30.363176605000035],[-110.29409052399984,30.257644421000123],[-110.15586858199993,30.26209621700002],[-110.08395352899998,30.07927618000008],[-109.95895353599985,29.983088644000134],[-109.8641285619999,29.936198434000175],[-109.81359054799998,29.862728035000146],[-109.73171259699996,29.885868290000133],[-109.64981067399998,29.63633065100015],[-109.64223460699992,29.446811964000176],[-109.66554266799994,29.384503243000154],[-109.51744852099989,29.38396529200014],[-109.39385953699997,29.633091716000138],[-109.40820365599984,29.680494898000063],[-109.50654567599992,29.72256333500019],[-109.57176157699996,29.859579121000024],[-109.62469463599996,30.02116327200008],[-109.67197460499995,30.082737905999977],[-109.69014757699989,30.25908845500004],[-109.87157454199996,30.532428353000057],[-109.80825060499996,30.622984088000123],[-109.91280361499992,30.812194488000046],[-110.03614063799989,30.724827732000165],[-110.02248366799995,30.670967466000093],[-110.18262462299987,30.623678110000128],[-110.28378262699988,30.744870707000075],[-110.29297656899996,30.849224228000026],[-110.25382251999997,30.913786005000134],[-110.12056752599989,30.914954945000034],[-110.12124662799994,31.001779895000027],[-110.04608157599995,31.08304898400013],[-109.92314956599995,31.147967661999985],[-109.83860767899995,31.084609024000088],[-109.8074645499999,30.846145219000107],[-109.74210364199996,30.767340913000112],[-109.73977665799998,30.679518348999977],[-109.68298356499997,30.60371275100016],[-109.45347565599997,30.585385552000105],[-109.4181286679999,30.5076792750001],[-109.5205005389999,30.380290943000148],[-109.48850262399998,30.289391382000076],[-109.4039835349999,30.219428810000124],[-109.40361054099992,30.138546797000117],[-109.50376154299994,30.07981815400018],[-109.50462353799986,30.022378312000058],[-109.3777086159999,30.001451885000108],[-109.34545857299997,29.88843214700006],[-109.22734867199995,29.988693288000036],[-109.16535963699994,30.169705851000174],[-109.25012163199995,30.261789272000158],[-109.31333157599988,30.481220457000063],[-109.30802951899994,30.582217696000043],[-109.23858662499993,30.63313692000014],[-109.23788455699986,30.73547425800018],[-109.11556962299983,30.720173764000037],[-109.08494566899998,30.614422644000115],[-109.01192453999982,30.555725518000088],[-108.96649965399996,30.252508661000093],[-108.85354663599992,30.29303432500012],[-108.85211165399994,30.418806458000063],[-108.8027955529999,30.55926251300008],[-108.8857725389999,30.599177973999986],[-108.90389253699993,30.697619404000136],[-108.95153762199999,30.750281728],[-108.96072368499995,30.855624984000144],[-108.85905455199992,30.87737501700019],[-108.83277158599998,30.663029804000075],[-108.74835157099994,30.657110839000154],[-108.68894164699998,30.759894430000088],[-108.60224158799991,30.748687825000047],[-108.50167065199997,30.645654286000024],[-108.49926755999991,30.57962081500017],[-108.37379465999999,30.617790325000158],[-108.32032767399994,30.53407640300003],[-108.24359855799997,30.49781478100016],[-108.12993659799992,30.275889812000116],[-108.07630163799985,30.05418394700007],[-108.03638466799998,30.05469909900006],[-107.97295361,30.176944463000098],[-107.83988167699988,30.124303261000193],[-107.67305766399988,29.919022908000102],[-107.59603166199992,29.874838544000056],[-107.49800865699996,29.706119215000058],[-107.427390619,29.715436873999977],[-107.39556855599994,29.851333508000153],[-107.26581552099998,29.88552714700006],[-107.18423462499999,29.82613851300016],[-107.1197276659999,29.598780227000077],[-107.12690760399988,29.527828758000112],[-107.07604956899996,29.452377715000182],[-107.06558962399993,29.33382541800006],[-107.13160666699991,29.226443683000184],[-107.09110262899998,29.022281476000046],[-107.00061763699995,29.052986231000148],[-106.99369066399993,29.145063617],[-106.91519162699996,29.145771553000145],[-106.84023260199996,29.075183523000135],[-106.70923653099993,28.997789387000125],[-106.80899861299991,28.95523530300011],[-106.85371355199993,28.90125735500004],[-106.92172263799989,28.69913748300013],[-107.01287063799998,28.760210879000113],[-107.11276968099992,28.86456088],[-107.17472854099992,28.787205972000038],[-107.13944257299988,28.692992542000127],[-107.00359354799997,28.58719180100013],[-106.99454461299996,28.44058393300014],[-106.93881954099999,28.342996954000114],[-106.99819962499998,28.248796936000076],[-107.09739659999991,28.365030128000058],[-107.12156665599991,28.432461366000155],[-107.24325562899986,28.5316092220001],[-107.39541667599997,28.594882532999975],[-107.52571067899993,28.68580807700016],[-107.65087160399997,28.735778134000157],[-107.56670354999983,28.566122714000073],[-107.44240562499994,28.552466246999984],[-107.45434564599992,28.440267935000122],[-107.5187525259999,28.415741983000146],[-107.51850157199993,28.30118768600005],[-107.42412553299994,28.312400158000173],[-107.45251453599997,28.399656441000047],[-107.36824757499988,28.442266851000113],[-107.27464267099998,28.423771511000155],[-107.23969264999994,28.326590720000127],[-107.10207353399989,28.16268126200015],[-107.05324559499991,28.071720178000078],[-106.951721637,28.0551766480001],[-106.8884426269999,28.132855433000145],[-106.901710676,28.20553038900016],[-106.83731066999997,28.32117165200009],[-106.80456559199996,28.43824588500013],[-106.75349465599999,28.422545574000026],[-106.64083064499994,28.475618444000133],[-106.70994563999989,28.611877847000017],[-106.76339753899993,28.60712128500012],[-106.87015566099996,28.729984228000035],[-106.71984852299994,28.795462482000175],[-106.72883559999991,28.865812633000132],[-106.64676654099998,28.940451805000123],[-106.67894751799997,29.07327764500019],[-106.73837252899995,29.150741351000136],[-106.67251557999998,29.21355801500016],[-106.839515614,29.276885641000035],[-106.79668459099997,29.357612421000113],[-106.85153157499997,29.424164732000065],[-106.95935855699986,29.431818416000056],[-107.02201060099992,29.529430707000074],[-107.04036763899995,29.654943170000138],[-106.93240352899988,29.77703028300016],[-106.86454062399997,29.662230731000136],[-106.72760765099991,29.675271296000062],[-106.73140766999995,29.626756003000025],[-106.56991555299993,29.496433165999974],[-106.51313067399991,29.510753648000048],[-106.467437567,29.374577728000077],[-106.394302612,29.258108166000056],[-106.38850367599997,29.12603854100007],[-106.33458658099994,29.075993382000092],[-106.37434362399989,28.934184153000047],[-106.3653416279999,28.77470235200002],[-106.25509663399993,28.703988258000095],[-106.2684786779999,28.55944200200014],[-106.32293657399993,28.456309221000083],[-106.47284657699998,28.409314237000103],[-106.42143265299995,28.306461412000147],[-106.33864560099994,28.305170431000136],[-106.27905261599994,28.08938520700019],[-106.32469157599985,27.96113286800005],[-106.40742464899995,27.97760800200018],[-106.47055865199991,28.031976714000052],[-106.56890067299992,27.92636305700006],[-106.65191654999995,27.954724065000107],[-106.71714066499987,28.07149319600012],[-106.80588557399989,27.975088234000054],[-106.77397952399991,27.856790076000152],[-106.64815558999999,27.80780623400011],[-106.61649362199995,27.712616144000094],[-106.53536953899993,27.709680131000084],[-106.52672561799989,27.9130066620001],[-106.45610053999997,27.924965291000035],[-106.41724354599995,27.81423297400005],[-106.2938615949999,27.726964454000097],[-106.52529868299996,27.478890294000166],[-106.41208666299991,27.500928330000193],[-106.48072053699997,27.308385620000024],[-106.43736262799996,27.256399883000086],[-106.4271846499999,27.151713265000126],[-106.48318464799985,27.077639369000167],[-106.46666760499994,26.992737060000024],[-106.38742056599989,26.922794436000117],[-106.32148767799998,26.913312828000073],[-106.32806361599995,27.01303434100015],[-106.23941057299999,26.990925395000147],[-106.05912756999999,27.05127275100017],[-106.13108067699994,27.14338668200014],[-106.02716854699997,27.152259262000086],[-105.93740054299991,27.072245614000053],[-105.73445153299991,27.11887967400014],[-105.82229655999993,26.871578661000115],[-105.77519261199996,26.814820101000066],[-105.63862659799992,26.718385299000033],[-105.6352235459999,26.657142923000038],[-105.47879057799992,26.679530148000083],[-105.38867958599991,26.535045584000102],[-105.3216015619999,26.354797785000187],[-105.19446552499994,26.32868882700012],[-105.21657564499998,26.27736324900019],[-105.14338654299996,26.220589768000025],[-105.06600967399993,26.211640242999977],[-105.10181464999994,26.128273834000083],[-105.03684953599986,26.020805765000148],[-104.96661354599996,26.04278294700009],[-104.86080157299989,25.95739482300013],[-104.8135226099999,25.868567772000176],[-104.87014756299993,25.771526288000018],[-104.94331353099989,25.764168821000112],[-105.08588366899994,25.949352220000037],[-105.164108619,25.976835810000125],[-105.23525957699991,25.905956089000085],[-105.15847765599989,25.821651075000034],[-105.23965454499995,25.784751925000023],[-105.28443854999989,25.711865242000158],[-105.26399257399999,25.645880386000158],[-105.2721635879999,25.506260677000057],[-105.3947445639999,25.516385346000163],[-105.39700365399995,25.440412949000063],[-105.34802266199983,25.405752438000093],[-105.2342225679999,25.40081667100003],[-105.11173261999994,25.438959862000047],[-105.07567551699998,25.389432202000137],[-104.86225164199988,25.30224331000005],[-104.74340061399994,25.288250226000116],[-104.75657662999987,25.224462098000174],[-104.67662852899991,25.10900171700007],[-104.7247086349999,24.997195008000176],[-104.7038115439999,24.857814519000158],[-104.64053353899999,24.82675118600008],[-104.44483152299989,24.874233997000147],[-104.45030959899992,24.788427951000074],[-104.3865055469999,24.700492231],[-104.29635666899998,24.68724496900012],[-104.24816860499999,24.777232578000053],[-104.1509246139999,24.718512485000133],[-104.06756558099988,24.67238553100009],[-104.136993556,24.616996406000055],[-104.13712364299994,24.521135932000163],[-104.18155661399999,24.474685268000144],[-104.18826263999983,24.379655944000035],[-104.09892261599992,24.19188823700017],[-104.00876652999995,24.218064082000183],[-103.8742445279999,24.200829716000044],[-103.77848061299989,24.283312672000136],[-103.71120460799995,24.381896762000167],[-103.66903659499997,24.52443002000018],[-103.5398555409999,24.62038219200008],[-103.49333966599994,24.713839741000015],[-103.49269057199996,24.87221395800003],[-103.52479560799998,24.952204137000024],[-103.64085361899993,25.06674468800003],[-103.60740663999991,25.203480183000067],[-103.45696254199993,25.480236880000064],[-103.32851456899994,25.56667006000015],[-103.16925857699988,25.64885294400011],[-102.99525462499992,25.542270172000144],[-102.73017861299985,25.510758742000178],[-102.43202157699989,25.435111060000054],[-102.3226776379999,25.477999079000085],[-102.22254960199996,25.42879060200005],[-102.19657860999996,25.333202036999978],[-102.13446753399995,25.318167585000026],[-102.04446466899992,25.38053464400008],[-101.93599663899994,25.347638189],[-101.859580672,25.27491277400003],[-101.766448675,25.262250232000042],[-101.77439857499996,25.195852316000128],[-101.74343062799989,25.17711440400018],[-101.71076953699998,25.311993978000032],[-101.58012366099996,25.30222034400009],[-101.45114159399998,25.264731276000134],[-101.30859358399982,25.255328792000057],[-101.2579425809999,25.18966781200004],[-101.12506058199995,25.133743419000155],[-101.11409755599988,25.13415731700013],[-101.06796255499995,25.16082417500013],[-101.07851453299992,25.27845060700008],[-101.03118863099996,25.360525533000157],[-100.80200962799995,25.425650741000084],[-100.80702954999998,25.526937827000097],[-100.77484153299997,25.6113870100001],[-100.65719565499995,25.679739754000025],[-100.5899045619999,25.689894262],[-100.59587063399982,25.740956984000093],[-100.51057454299996,25.7965933750001],[-100.599922613,25.854446444000075]],[[-101.4065096359999,25.885953013],[-101.52323953999996,25.827826693000134],[-101.64501166199994,25.895776603000172],[-101.65662361499994,26.04979357100018],[-101.52863362999994,26.187296346000096],[-101.44754760199999,26.116433390000054],[-101.47221353099991,26.0294724850001],[-101.42002059299995,26.003987812000105],[-101.4065096359999,25.885953013]],[[-101.53263867099997,26.40656827400005],[-101.57272361399998,26.37554266000018],[-101.72248056399991,26.382073504000175],[-101.84044663099996,26.482982901000128],[-101.93924764399998,26.597279874000094],[-101.90198555899997,26.62110677400011],[-101.72529554199997,26.479004011000086],[-101.55624361899993,26.45734701700019],[-101.55796861499994,26.5014371690001],[-101.70884655999993,26.567501151000045],[-101.77825156799992,26.695249234000016],[-101.84188060699995,26.75144402799998],[-101.79841658399994,26.82436373600018],[-101.61568455599996,26.72507908700004],[-101.65972156699996,26.590688177000118],[-101.57089267099997,26.538467412000045],[-101.47713454599995,26.550579765000123],[-101.48551158799984,26.428816192000056],[-101.53263867099997,26.40656827400005]],[[-102.58037556299996,26.759696347000045],[-102.61561559899997,26.854493157000093],[-102.42536953099994,26.855837112000188],[-102.41223156799992,26.78806137800018],[-102.47953757999989,26.7514609590001],[-102.58037556299996,26.759696347000045]],[[-102.24311057799997,26.997881034000045],[-102.45690157999996,27.018635967000023],[-102.52167558599996,27.080145390000155],[-102.58278653399998,27.06785098200004],[-102.69351164299985,27.128904262],[-102.66692357499994,27.174494440000046],[-102.50137361099996,27.178793182000106],[-102.50009151499995,27.13842979200018],[-102.38362865899995,27.082188228000064],[-102.215614583,27.040474010000082],[-102.24311057799997,26.997881034000045]],[[-104.10340156999996,27.252094937000038],[-104.17311855199995,27.289275216000135],[-104.10049455799998,27.431519298000012],[-104.0575565829999,27.35371344400005],[-103.96933755499992,27.31671304100007],[-103.98421459499986,27.18619272700016],[-104.05460363799989,27.157936996000046],[-104.10340156999996,27.252094937000038]],[[-102.63215661399994,27.37325752700019],[-102.69084954999994,27.480564160000085],[-102.69453456999992,27.55635869300005],[-102.77906053199996,27.64780676600003],[-102.72879761099989,27.689479242000118],[-102.60037964599991,27.59722198000003],[-102.54672255699995,27.447402502000045],[-102.50191457899996,27.391364785000064],[-102.60736864399996,27.32203588400006],[-102.63215661399994,27.37325752700019]],[[-102.9284815339999,28.005396861000065],[-102.99201166699999,27.98753871300005],[-103.03347761199996,28.084151547000033],[-103.14813953299995,28.262991186000136],[-103.11920151599998,28.36240307200012],[-102.97771465399995,28.225180588000057],[-102.92260766399994,28.11962107900007],[-102.9284815339999,28.005396861000065]],[[-106.01094855799994,28.21958482900004],[-106.0010605949999,28.114868372000046],[-106.11505162799995,28.112205274000132],[-106.07910164499992,28.20151981600003],[-106.12914261299989,28.31157604900011],[-106.03342463199988,28.309753153000088],[-106.01094855799994,28.21958482900004]],[[-106.0279386759999,28.343660801000055],[-106.09760251699998,28.35736839800012],[-106.13356758799995,28.436318047000157],[-106.08119963599995,28.46999871300011],[-105.97687561899983,28.390929035],[-106.0279386759999,28.343660801000055]],[[-101.95172863399995,27.613779256999976],[-101.85607167199993,27.531629732000056],[-101.76494563199998,27.40100430900003],[-101.82951361199997,27.342184136000185],[-101.74742862799991,27.10270444500003],[-101.92811563899994,27.178464947000066],[-101.99749751299998,27.180765109000106],[-102.00279252899998,27.059745179],[-102.11498262699996,27.219015254000112],[-102.01708266799989,27.303085575000182],[-101.94451851999997,27.325665751000088],[-101.98313160099997,27.443689486000153],[-102.03007461799996,27.493501628000104],[-101.95172863399995,27.613779256999976]],[[-101.2802126279999,26.86647793800006],[-101.21466865899998,26.847233759],[-101.0743556,26.68987878100006],[-101.09426865499995,26.659983047000026],[-101.24759663099996,26.746935067000038],[-101.31781753299998,26.816522968000186],[-101.2802126279999,26.86647793800006]],[[-103.55904356099984,28.596621610000113],[-103.53903159999987,28.526682339000047],[-103.64447761799994,28.509584095000037],[-103.68016055399994,28.599763315000075],[-103.61325854899997,28.646291427000108],[-103.55904356099984,28.596621610000113]],[[-104.4849476469999,29.18328023400005],[-104.67121163999997,29.234393247000128],[-104.687385528,29.42985068000013],[-104.65198556599995,29.44513021900002],[-104.47966755099992,29.24793454700017],[-104.4849476469999,29.18328023400005]],[[-106.66682460299995,29.887650283000028],[-106.69911957399995,29.895031052000093],[-106.69949357399997,30.069005499000184],[-106.65139754299997,30.05166401200006],[-106.66682460299995,29.887650283000028]],[[-103.45287590399994,30.118683902000043],[-103.52783416499994,30.165679454000042],[-103.55961838299999,30.286543892000054],[-103.48879354199994,30.297779550000087],[-103.45287590399994,30.118683902000043]],[[-103.43223552299992,30.287838562000047],[-103.25473441299988,30.492376869000168],[-103.03999221799995,30.503698323000037],[-102.9486485249999,30.45805742500005],[-103.07395491999995,30.383998134000024],[-103.34588395999992,30.29460953800003],[-103.43223552299992,30.287838562000047]],[[-104.09078116599989,30.753349939000145],[-104.0546863059999,30.871101840000108],[-104.11415214599998,30.929345521000016],[-104.07120176899991,31.01117362500014],[-103.96856706599993,30.87815203800011],[-103.85108075699992,30.80737710200009],[-103.85452938399999,30.76883683800014],[-103.70749047199996,30.689939900000127],[-103.75589685399996,30.613703207000015],[-103.70001200399997,30.510849022000116],[-103.79071836199995,30.48836595800003],[-103.8524546559999,30.524861934000114],[-103.78693349699995,30.616455307000024],[-103.855177428,30.664786554000102],[-104.04156577999993,30.552089438000166],[-104.20616878899989,30.58374223200002],[-104.18737253599988,30.74850926900018],[-104.09078116599989,30.753349939000145]],[[-107.69692261799997,30.814076561000093],[-107.75243361599985,30.78687728500006],[-107.81345353599988,30.878873031000126],[-107.73916657199999,30.900392226000122],[-107.69692261799997,30.814076561000093]],[[-108.92958860199991,30.98591127600008],[-108.99499560999993,30.9570983160001],[-109.0975185239999,30.974635772000056],[-109.10194366599995,31.02879091300008],[-109.03016657899997,31.178409561000024],[-108.920852648,31.308742288000133],[-108.74750566999995,31.32782553500016],[-108.67595657099992,31.259987775000184],[-108.79397561099995,31.09138964800013],[-108.79724857699995,31.00556952100004],[-108.92958860199991,30.98591127600008]],[[-109.29720932299989,31.74688000800012],[-109.34443848599994,31.882245136000165],[-109.41281686099995,31.942120901000123],[-109.33013529399989,31.98309609100005],[-109.17287344799996,31.80949750200017],[-109.29720932299989,31.74688000800012]],[[-110.49983747499988,32.092278252000085],[-110.59642814299991,32.21654183400017],[-110.52215484099997,32.25558598100014],[-110.49983747499988,32.092278252000085]],[[-106.55601969699995,32.45052220200017],[-106.5829648269999,32.509072902000185],[-106.53057680599994,32.61614593900015],[-106.45098438999992,32.56829690100005],[-106.45454506799996,32.508481410000115],[-106.55601969699995,32.45052220200017]],[[-106.72045527399996,33.094748442000025],[-106.77444907299997,33.233324677999974],[-106.7030949849999,33.312277590000065],[-106.60913633899997,33.26244541800003],[-106.67001694799995,33.130847626000104],[-106.72045527399996,33.094748442000025]],[[-109.98385901299997,32.69411336400009],[-109.88905142999994,32.75337863800007],[-109.82889192299996,32.73417477100003],[-109.82176242299988,32.593673310000156],[-109.98385901299997,32.69411336400009]],[[-110.6869673629999,32.361898753000105],[-110.76045153399997,32.38580176500005],[-110.87618391099994,32.35822498300007],[-110.80713026199987,32.513906809],[-110.66384562199994,32.40985655500015],[-110.6869673629999,32.361898753000105]],[[-110.00790368299982,30.317020314000104],[-109.88306462299994,30.270351051000034],[-109.91860154499994,30.19950368500008],[-110.01296953799994,30.19159183900007],[-110.00790368299982,30.317020314000104]],[[-103.94170359299994,25.7398358210001],[-103.88794659199988,25.711333159000105],[-103.82717159199984,25.581825379000065],[-103.83527353899996,25.52286405400008],[-103.76956159799994,25.366783462000058],[-103.88072155999998,25.332643132000044],[-103.92868767099998,25.498512111000025],[-103.91948652099995,25.61364174200014],[-103.98499260299991,25.699635878000095],[-103.94170359299994,25.7398358210001]]]]},"properties":{"objectid":164,"eco_name":"Chihuahuan desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Nearctic","eco_biome_":"NE13","nnh":2,"eco_id":428,"shape_leng":187.000564126,"shape_area":46.8072953603,"nnh_name":"Nature Could Reach Half Protected","color":"#E18C78","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":503623.45938530954,"percentage":1.908953256817222}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-70.30879957199994,-22.958491769999966],[-70.40814959999994,-23.083373242999926],[-70.57710261599993,-23.098869537999917],[-70.59088849999989,-23.21659454099995],[-70.58771561399993,-23.433103290999952],[-70.61836957599996,-23.49326423399998],[-70.54662350199999,-23.532637385999976],[-70.50489050899995,-23.460441874999958],[-70.4298406239999,-23.495223251999903],[-70.39130348299989,-23.610500236999883],[-70.44646461999986,-23.740546805999884],[-70.49987762799998,-23.807783248999954],[-70.50068664899993,-24.15771278699998],[-70.54140459399991,-24.407421416999966],[-70.57729355599992,-24.550460270999906],[-70.55574049799998,-24.58027604199998],[-70.5802076089999,-24.714127491999932],[-70.51721157099996,-24.9287779739999],[-70.47186262499997,-25.027415372999883],[-70.50679755899989,-25.092920281999966],[-70.46015964399993,-25.14478967799988],[-70.43704252299989,-25.246194947999925],[-70.44842548299994,-25.349484134999955],[-70.53353163999998,-25.474271059999978],[-70.62788353899987,-25.50979356599987],[-70.73120155899989,-25.780974620999814],[-70.69478654899996,-25.896648236999965],[-70.63106564399999,-25.989486196999962],[-70.67368359899996,-26.16550398499993],[-70.62813549899994,-26.33490844999983],[-70.69396260799994,-26.38617401399989],[-70.70939654099988,-26.53217838599994],[-70.6865385879999,-26.566240931999857],[-70.82936051899992,-26.880672103999927],[-70.78950456899986,-26.99416005599994],[-70.81099660699988,-27.05286941999998],[-70.93086251699998,-27.110216724999816],[-70.96979561899997,-27.167124483999885],[-70.93110659799993,-27.32047173799998],[-70.9611585699999,-27.368105757999956],[-70.89842957999991,-27.457370008999874],[-70.9375836289999,-27.65854339699996],[-71.04103861099998,-27.71653191799993],[-71.0796055909999,-27.780992943999934],[-71.14509557999997,-27.978975676999823],[-71.1686475539999,-28.122499675999904],[-71.15692160699996,-28.216969759999984],[-71.19825763299991,-28.292492718999938],[-71.16591656299988,-28.352476467999963],[-71.2565685219999,-28.464075640999965],[-71.31008948799996,-28.689757545999953],[-71.39767450899996,-28.80407010999994],[-71.49520164099994,-28.85379809699998],[-71.52128562099995,-28.917179534999832],[-71.46635448299992,-29.104448182999874],[-71.50284560099993,-29.13440979899991],[-71.45999161299994,-29.247726423999893],[-71.33963754099989,-29.32877842199997],[-71.30854051299997,-29.415674115999934],[-71.32904063599983,-29.544581080999876],[-71.29196161099992,-29.596984906999978],[-71.32887249499993,-29.731610006999915],[-71.27706948399992,-29.859279132999916],[-71.29368560099994,-29.94805974899998],[-71.40270951899998,-29.991903975999946],[-71.37319164099989,-30.08306957799988],[-71.51702861999996,-30.285550206999915],[-71.64875056399995,-30.26372306099995],[-71.6884615059999,-30.39973704199997],[-71.71434750599997,-30.605316628999958],[-71.68486064099994,-30.913512670999978],[-71.65344962599988,-30.97377553699988],[-71.67146250399992,-31.147082449999914],[-71.63078361899989,-31.262900402999833],[-71.61830849699993,-31.397469007999973],[-71.57202949499992,-31.499323548999882],[-71.57329549799994,-31.580161807999957],[-71.51174148299992,-31.75542773899997],[-71.52238448799994,-31.920936296999912],[-71.49497952099995,-31.967761965999955],[-71.54355650499997,-32.18619369299989],[-71.47792854999994,-32.26950025499991],[-71.47814949699989,-32.33844878499997],[-71.41082755999997,-32.384414303999904],[-71.44400061799996,-32.49696381699994],[-71.48686952599985,-32.523626986999886],[-71.43859864899997,-32.63111081299991],[-71.50055650399997,-32.770846359999894],[-71.57884264099994,-33.02026279699987],[-71.6612774859999,-33.02154858099988],[-71.71987956199996,-33.20852017499993],[-71.6547466419999,-33.30297718299994],[-71.70948750999986,-33.42770241699998],[-71.60082250599999,-33.537497301999906],[-71.6377945779999,-33.67066143599993],[-71.69160455199983,-33.73811061099991],[-71.78198259099997,-33.768516802999955],[-71.82930748699994,-33.894768213999896],[-71.93702650999995,-34.02788943199994],[-71.91262863399993,-34.14780110699991],[-71.7426686149999,-34.22753396099989],[-71.7220005179999,-34.26674400099989],[-71.79354056499989,-34.40911984699994],[-71.79863759999995,-34.548993358999894],[-71.90327459699995,-34.67769094499994],[-71.90806552599997,-34.76098577199997],[-71.8574906309999,-34.816698102999965],[-71.77011850999997,-34.83390581499998],[-71.72055061699996,-34.89107927999993],[-71.61730954199999,-34.907748873999935],[-71.68274655699992,-35.04605547299991],[-71.78894761699996,-35.159417360999896],[-71.93658461599983,-35.44275452199997],[-72.02075954299994,-35.52936539799998],[-71.88193561299994,-35.62335721099993],[-71.89533257699998,-35.68869749899994],[-71.97418952199996,-35.7102119999999],[-72.10603350599985,-35.810959793999984],[-72.15789753799993,-35.92270414199993],[-72.22840862199996,-35.96335721099996],[-72.38024160099985,-36.207281657999886],[-72.3663325039999,-36.38248371899988],[-72.48389456299998,-36.47602860799998],[-72.50468453299999,-36.580465277999906],[-72.4832915689999,-36.74251797599993],[-72.50413551799994,-36.84696269199998],[-72.61222854199991,-37.01168117199995],[-72.6253965109999,-37.10944634899988],[-72.73565659199994,-37.22210298399989],[-72.64123562599997,-37.38275573699997],[-72.67077663799984,-37.48083808599995],[-72.61268652899997,-37.51217148399991],[-72.55311550499994,-37.835918302999914],[-72.56977051399997,-38.07672803499992],[-72.66194160899988,-38.280067473999964],[-72.81992355299997,-38.51056645899996],[-72.95641362599991,-38.65601108699991],[-73.04630249699994,-38.70303741899994],[-73.15703548499994,-38.7089771709999],[-73.03227957299998,-38.813547447999895],[-72.94724265099995,-38.98847592399994],[-72.88844259399991,-39.00448954999996],[-72.68770556799996,-39.30161125399991],[-72.40865357099995,-39.33028658299986],[-72.25033551299992,-39.47672664599992],[-72.16600049099998,-39.38172699299997],[-72.22632555099995,-39.246635021999964],[-72.09927350099997,-39.180332825999926],[-72.08766959399998,-38.93857275499994],[-72.18817850399995,-38.82044038999993],[-72.1969065799999,-38.733317714999885],[-72.12084952599997,-38.64413627699997],[-72.02262853999986,-38.45453745899994],[-72.00003864099995,-38.233548246999874],[-71.83808853599999,-37.95481325299994],[-71.73904461599989,-37.81903161799988],[-71.94618960599996,-37.753892830999916],[-71.98046153199988,-37.68407023699996],[-71.93347962399997,-37.5539266049999],[-71.84396357999998,-37.19804457499998],[-71.79000859899998,-37.121733212999914],[-71.84252960399988,-36.85695241199994],[-71.76495358099999,-36.609464818999925],[-71.72264056099993,-36.267240092999884],[-71.59377248699985,-36.159648810999954],[-71.50546259899994,-35.95329741799998],[-71.48506959599996,-35.83623911099994],[-71.43536356899989,-35.80566075499996],[-71.27832760699994,-35.55966882799987],[-71.17298854199998,-35.52725550599996],[-71.08847850599989,-35.171032331999925],[-70.98054457099994,-34.996979764999935],[-70.96545463099989,-34.83721381699996],[-70.97920262899993,-34.751292771999886],[-70.89990948899998,-34.6732958099999],[-70.9161296449999,-34.55908701499993],[-70.82159451799998,-34.42154082199988],[-70.82639349299984,-34.30556176799996],[-70.70017259199983,-34.16785061899998],[-70.65529655299997,-34.081171849999976],[-70.65026053799994,-33.95616749899983],[-70.68141959199994,-33.87022080399993],[-70.68591363399997,-33.72993976399994],[-70.60254655399984,-33.630149685999925],[-70.57596552699994,-33.54783101499987],[-70.5975645179999,-33.46915528699992],[-70.72035956799988,-33.34121006099997],[-70.73780063199996,-33.26315626999991],[-70.71865854399994,-33.141513060999955],[-70.76933251299988,-33.05644445499996],[-70.85917662499992,-33.0285104219999],[-70.90913360599995,-33.063165567999874],[-70.89257062999991,-33.367653288999975],[-70.91966261799985,-33.438127324999925],[-71.01081849699995,-33.428388558999984],[-71.10236363199988,-33.247760892999906],[-71.2971194989999,-33.17159906499995],[-71.34050758299992,-33.12109776299991],[-71.29836253499991,-33.03213743899988],[-71.1478956389999,-32.919508632999964],[-70.82248651999987,-32.79216271299998],[-70.74466658399996,-32.8032011759999],[-70.52548953899998,-33.01418289999998],[-70.49272149399991,-33.0931825049999],[-70.3171615259999,-33.074602004999974],[-70.19094062499988,-33.02453153299996],[-70.12875360899994,-32.95393880899991],[-70.1745146099999,-32.86858320599998],[-70.33162651199984,-32.844669971999906],[-70.37190256199995,-32.78912192599989],[-70.37624354999991,-32.61998802799985],[-70.4289476159999,-32.56506577499994],[-70.53882548199994,-32.56376875899997],[-70.50751454699997,-32.49494176699994],[-70.51792151799998,-32.371547914999894],[-70.61862153599992,-32.190389505999974],[-70.47879060299994,-32.14703293799988],[-70.45967852299992,-31.953466462999927],[-70.49064663799993,-31.85753742499992],[-70.62868451299988,-31.636736972999927],[-70.68942263399998,-31.591267326999912],[-70.73561060799994,-31.45506106499988],[-70.81157663499994,-31.41211252899984],[-70.8145595869999,-31.349130739999907],[-70.72331955299984,-31.310719998999957],[-70.67233260299992,-31.248181947999967],[-70.59688558399995,-31.22833963699992],[-70.51770761199987,-31.07796108499997],[-70.43164055399996,-31.021155753999835],[-70.50305956599988,-30.8945023469999],[-70.42568956999997,-30.809836239999925],[-70.44172649799987,-30.704559199999892],[-70.60134157199997,-30.590522066999938],[-70.59040050599992,-30.522510633999957],[-70.52639059299992,-30.465061739999953],[-70.57588154099989,-30.366981234999912],[-70.49159261899996,-30.352726969999935],[-70.46306648799992,-30.441058650999878],[-70.3609614959999,-30.500920359999952],[-70.29994157699986,-30.467250757999977],[-70.31298851199995,-30.29753196999991],[-70.46868152499991,-30.063979290999953],[-70.39907853599988,-30.032605658999955],[-70.26806653999995,-30.116891394999925],[-70.19087256399996,-30.1964425299999],[-70.1098175489999,-30.176808256999948],[-70.10432455199998,-29.934166408999943],[-70.1845546209999,-29.833493213999873],[-70.28437755599992,-29.78586791099997],[-70.37126151399991,-29.64032839899994],[-70.41849554999999,-29.613364486999956],[-70.53069252099988,-29.64732427099989],[-70.46504260599994,-29.497396832999925],[-70.4626924879999,-29.398222825999937],[-70.4107515099999,-29.153929239999968],[-70.36209053899995,-29.060699844999874],[-70.26942457599995,-28.971048349999876],[-70.24500255999999,-28.790007622999894],[-70.15331258599997,-28.69608236299996],[-70.00354758899994,-28.59992936099991],[-69.97734860999992,-28.49309345499995],[-70.02460460599997,-28.409699888999967],[-70.00309764899993,-28.35674101299992],[-69.83296948899994,-28.310203009999952],[-69.72669248899996,-28.14913971099992],[-69.69698350399995,-28.032153655999934],[-69.73245253299996,-27.731335196999964],[-69.70158349199988,-27.604067563999934],[-69.62277264699998,-27.495122268999978],[-69.51092553699988,-27.399175293999917],[-69.39601148899999,-27.127234167999973],[-69.33784460099992,-27.020230959999935],[-69.31699361099999,-26.91309162899995],[-69.31663553599992,-26.861498835999896],[-69.41484864299991,-26.758893276999913],[-69.31421651899996,-26.62301055599994],[-69.26844763899999,-26.47974974899995],[-69.14326458599993,-26.40544702699998],[-69.09183456899996,-26.321793956999898],[-69.09739663199991,-26.191329968999923],[-69.18832351799995,-26.101450150999938],[-69.21618664099998,-25.983680555999968],[-69.19107848199997,-25.496253941999953],[-69.24242350599985,-25.4096579859999],[-69.41230054399995,-25.262854986999912],[-69.42980950199984,-25.180359959999976],[-69.4956055969999,-25.366350032999947],[-69.72080956599984,-25.742412501999922],[-69.77498650099989,-25.939821408999933],[-69.8710635629999,-26.18854902199996],[-70.00304450699997,-26.31445140999989],[-70.1118625659999,-26.299983071999975],[-70.27693157599998,-26.238980753999954],[-70.36677551999992,-26.058761788999902],[-70.36721758099998,-25.834119239999893],[-70.31328556599993,-25.458562702999927],[-70.29781357899998,-25.267439719999913],[-70.31024964099998,-25.073855139999978],[-70.30373354999989,-24.769691630999944],[-70.3507005379999,-24.538839097999983],[-70.36634854599993,-24.246632373999887],[-70.39394361499984,-24.09544278999988],[-70.37762455199999,-23.547298339999884],[-70.31999159199995,-23.311596540999915],[-70.30363464299995,-23.111401823999813],[-70.30879957199994,-22.958491769999966]]]},"properties":{"objectid":165,"eco_name":"Chilean Matorral","biome_num":12,"biome_name":"Mediterranean Forests, Woodlands & Scrub","realm":"Neotropic","eco_biome_":"NO12","nnh":3,"eco_id":596,"shape_leng":49.7403637604,"shape_area":14.1063964375,"nnh_name":"Nature Could Recover","color":"#CD6667","color_bio":"#FE0000","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":148839.82882038027,"percentage":4.50566406558303}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-172.63270557799993,64.59869252700008],[-172.83259569599997,64.67887330999997],[-172.88949574299994,64.61974233600012],[-172.63270557799993,64.59869252700008]]],[[[-172.40800469099997,64.72726840700005],[-172.25340266599997,64.78629242800008],[-172.3197016759999,64.83440572600017],[-172.56080661800002,64.877117725],[-172.78660570199997,64.77943284600008],[-172.76400758799997,64.69261510500002],[-172.40800469099997,64.72726840700005]]],[[[-179.81515472699994,65.93202399500012],[-179.76196266699992,66.11532934400009],[-179.43670660200002,66.12534001900013],[-179.12722762599995,66.25841832200007],[-178.99447671899995,66.1675628500002],[-178.7683406829999,66.21923158300001],[-178.64639270899994,66.35922294500006],[-178.51531969199993,66.35366842600013],[-178.56500258499995,66.19199308000009],[-178.69110060699992,66.0747852400001],[-178.947540744,66.04367094500009],[-178.65472364999994,65.75976666400015],[-178.4769597439999,65.6780975900001],[-178.56307960799992,65.51477453000012],[-178.36947658799997,65.47390923200004],[-177.50033558899997,65.48417907500004],[-177.26959269099996,65.51437856900014],[-177.181670718,65.59365142500019],[-176.73446667899992,65.57143301100018],[-176.17834466899996,65.47615290000005],[-175.95150773799995,65.37139620900012],[-175.87789970799992,65.16597252600008],[-176.00469963099994,64.99680526800012],[-175.83850074,64.92532188299998],[-175.69599866299998,64.92632922000013],[-175.5827026569999,64.87052519100007],[-175.51429760899998,64.77048348800014],[-175.18310564799992,64.78184415200008],[-175.02009573599994,64.8162314130002],[-174.79148871499999,64.73305175300004],[-174.39750674299998,64.65374788500009],[-174.19299366999996,64.53811165100012],[-174.07519574399993,64.3994109350001],[-173.78680462999998,64.32081617600011],[-173.65809665099997,64.32586727800009],[-173.43389867799996,64.50419796800008],[-173.36109966999993,64.39741168300009],[-173.51040667899997,64.2850408720002],[-173.23339869299994,64.23397429400018],[-172.986495653,64.32048123500005],[-172.98530558999994,64.41021437],[-172.74429368699998,64.35778271600003],[-172.31370559799993,64.40192097900012],[-172.59330761499993,64.55472206900009],[-172.93989562399994,64.58770485800017],[-173.2223966059999,64.66886280300014],[-172.957702642,64.73464682899998],[-173.08920263299999,64.83813684600017],[-172.664398727,64.91530450300019],[-172.29049661099995,65.01867952100014],[-172.17790267299998,65.08768353900018],[-172.264007617,65.26017723900003],[-172.20010365199997,65.47586255100009],[-172.3491057269999,65.49967570500007],[-172.57769766199993,65.61134528700012],[-172.64071666499993,65.70119275100006],[-172.367095639,65.66147292400018],[-172.2801965929999,65.58569414900012],[-171.88020362299991,65.52284680600013],[-171.48609961099993,65.52514411800013],[-171.1672055779999,65.46276281000007],[-171.04821758999998,65.54575203300004],[-171.10819966199995,65.61351938500007],[-171.39160169899995,65.70576290000014],[-171.47560161299995,65.76375678500017],[-171.42039470999993,65.83625505100014],[-171.22161871499998,65.70550373200018],[-170.79499861799997,65.59826750600013],[-170.56051671999995,65.6443438340001],[-170.51551864099994,65.70436697800011],[-170.61039759399992,65.84637184000007],[-170.37510667499996,65.90696780400003],[-170.072799591,66.02183474600014],[-169.82099866899998,65.9797336200001],[-169.69650259699998,66.05039993700012],[-169.79060370899998,66.11538349100005],[-170.172103686,66.11536035700004],[-170.19630458700001,66.18334882400018],[-170.34739660599993,66.28658788700017],[-170.55700671499997,66.20674187700013],[-170.68840059099998,66.23817636100006],[-170.53250171799996,66.31642025400015],[-170.919799624,66.49228649700012],[-171.1302036669999,66.54500816500013],[-171.371002669,66.64264677600016],[-171.50300574199997,66.79968324000009],[-171.70640569899996,66.86394846600007],[-171.78869670999998,66.98535379500015],[-172.0234986279999,67.00899109800008],[-172.20880172099996,66.98574254800008],[-172.62289472799998,67.01913035100011],[-172.7328036069999,66.9359961200002],[-173.03469863699996,66.95832936600016],[-173.12480158099999,67.00068932500017],[-173.3829957149999,66.86268229500018],[-173.34100372199993,67.08811894600018],[-173.7182005969999,67.14211583700012],[-173.78900169499994,67.09642876500004],[-174.16509970199994,67.11989775800004],[-174.38349873899992,67.09357439100012],[-174.32130468199998,67.01467520100005],[-174.15800458899997,66.96312850800018],[-174.08459470699992,66.89310977700012],[-174.12109370499996,66.69363674200008],[-174.3372036439999,66.58108203200015],[-174.034896727,66.53146569100011],[-173.8146975919999,66.44147187900012],[-173.823394655,66.3655019970002],[-173.96150159699997,66.32283676800012],[-174.04040564899998,66.21928539500004],[-174.175704654,66.24794999500017],[-174.0690006789999,66.36605201700002],[-174.10839864199994,66.45504553300003],[-174.32640071199992,66.41968178100007],[-174.59129366299996,66.29031816900005],[-174.67300363999993,66.44534012700012],[-174.664199624,66.55198928400017],[-175.02389558799993,66.63482562200016],[-174.99729964199992,66.74366497000017],[-174.84049971399995,66.7405061660001],[-174.82769769799995,66.91524386900011],[-174.98370369199995,66.9751835290001],[-175.04530363999993,67.07652258300004],[-174.91400162899998,67.3187760130001],[-175.06390358599995,67.40582358700004],[-175.16879270999996,67.34386221100004],[-175.44799759299994,67.35047771200004],[-175.24339265499998,67.48945419300003],[-175.47599767599996,67.62638649600018],[-175.44412263999996,67.67965717800013],[-175.778594607,67.75851965600015],[-176.04620362999995,67.73238689300018],[-175.972396614,67.63934206800008],[-175.8058926219999,67.61890128900018],[-175.8110966099999,67.5088111930001],[-176.27569561299993,67.63441250300014],[-176.12602264999998,67.84694806400012],[-176.38999962699998,67.91564698000013],[-176.638793624,67.8909497030001],[-177.0057986079999,67.97191000300012],[-176.94749459199994,68.06307778400003],[-177.15840171600001,68.16843026100008],[-177.3804926459999,68.196271926],[-177.42089861599993,68.25951539700009],[-177.6786956159999,68.19810303600019],[-177.87409973999996,68.32439903900013],[-178.057998695,68.36431802000016],[-178.11090074199993,68.42951464200007],[-178.37280269499993,68.45116057200016],[-178.78269972099994,68.56668331500009],[-178.84699964699996,68.68039053700011],[-179.00509659099995,68.7391788590001],[-179.32870460599995,68.79703561600019],[-179.55233763799998,68.90762175300017],[-179.75192265599992,68.91462650900013],[-179.99998860099998,68.97818178699998],[-179.99998860099998,68.21632361700006],[-179.99998860099998,67.45446611800014],[-179.99998860099998,66.69260845100018],[-179.99998860099998,65.9307504480002],[-179.81515472699994,65.93202399500012]]],[[[168.32089264200033,70.00016628800006],[168.16473359500014,70.00633168000002],[167.91886873700003,69.9341686910002],[167.85794068300004,69.818958258],[168.08287073100018,69.77012730200005],[168.25784262500008,69.68823644300005],[168.71650673700003,69.5612993920002],[169.15309157600007,69.56004730400014],[169.28784173300028,69.59777726700008],[169.25370760600015,69.71533815300012],[169.45347568400007,69.827572675],[169.41394059400022,69.89084699199998],[168.89309667400005,69.94355307000012],[168.66827357800003,69.94828465400013],[168.32089264200033,70.00016628800006]]],[[[179.99998860100004,65.93052128700015],[179.99998860100004,66.69255313000014],[179.99998860100004,67.45458581100019],[179.99998860100004,68.21661815700014],[179.99998860100004,68.97865016800012],[179.2983706660002,69.26707799400009],[178.66598473700014,69.29726189800016],[178.75204458700023,69.41023620700003],[178.18823268400024,69.44830111200014],[177.93147269300005,69.50888249000019],[177.5701135920001,69.53070393700011],[177.52542061400004,69.58293744300005],[177.07130469000003,69.62321483500017],[176.2959286890001,69.78409809000016],[176.0328525990002,69.86717046200016],[175.38418566200005,69.80585013500018],[174.16870174100006,69.89012899800008],[173.95675660200004,69.84703679500007],[173.6820067000001,69.86162432500015],[173.5015106300001,69.91927606000013],[173.42378272700012,69.79303940200009],[172.93125874300006,69.87900570900018],[172.7035215950001,69.9815194030001],[172.43290665400002,69.97585776300008],[171.86419670300018,70.01956938800004],[171.41418472600014,70.09687501000019],[170.9484097420002,70.09009254200015],[170.61137358300005,70.12858475600018],[170.5089566170002,69.85623811400012],[170.53904764900017,69.74892427200007],[170.16506959200024,69.70090233700012],[170.16345171700004,69.54281947500016],[170.57943769300005,69.53679992800011],[170.8427426090002,69.33511272900012],[170.9115146160001,69.1641822540002],[171.03350869100007,69.07669144599998],[170.98448159800012,69.01051732600018],[170.5863187330002,68.82440320100017],[170.09342963400002,68.838648245],[169.87225367200006,68.78423997000016],[169.6134486650002,68.80017061600006],[169.42349261100003,68.91926455200013],[169.37872268600006,69.08057461400011],[169.242950607,69.15239478300003],[169.02326964200017,69.14616820300017],[168.77796972500016,69.2024912390001],[168.379745672,69.2123716590001],[168.25567657300007,69.34744234100015],[168.23715172900017,69.56777675900008],[168.00524860800022,69.67661610800019],[168.01394667700004,69.73319144000004],[167.80799862200013,69.79900614300004],[167.64691168600007,69.76540527300006],[167.22734060200014,69.59574767300018],[166.87712071500005,69.51867104400003],[166.15638768200017,69.53515908600002],[165.6757966790001,69.57629914300003],[165.2415006030002,69.57165271900016],[164.6688996040001,69.54107218400009],[164.3554995740002,69.58611083200014],[164.0231936570001,69.76293998700004],[163.84010271700004,69.68607760000003],[163.63029462800012,69.65948685000006],[163.24800071800007,69.70380968400008],[162.8726956380002,69.64685230500015],[162.43189973200003,69.67460998300004],[162.19090258100005,69.6507436870001],[162.04539458600004,69.51149160900013],[162.20410173100004,69.44718682100006],[162.17669659600017,69.14854849599999],[162.40280161900023,69.11787626200004],[162.71029659900023,69.25235216400006],[163.0032955800002,69.25126117500014],[163.11090060900005,69.18472914800009],[163.36039768100034,69.15420929800013],[163.70410164400005,69.19619693300012],[164.08790563800005,69.02509831700019],[164.23510761600016,68.99464753300009],[164.54409759200007,69.00046122100008],[164.77360566800007,69.10580581900012],[165.01229863400022,69.08928810500015],[165.3011936680001,69.0269294270002],[165.36250259500002,68.85676120200009],[165.1119996960001,68.76429590200007],[165.08670059700023,68.66091149700014],[165.25210572200024,68.60954048800005],[166.04640169000015,68.6744782780001],[166.33540367700016,68.5861928650001],[166.63169859000004,68.42547842099998],[167.30795271800014,68.45432692000014],[167.55026264200012,68.44903173600005],[167.82260157300016,68.3225754720001],[167.79499862500018,68.15563494999998],[168.09942666600034,68.12867120600009],[168.47352559000024,68.15865696200012],[168.7252197260002,68.10185297100008],[168.6210326690001,68.03387925700002],[168.1708527190001,67.87299650400013],[168.1890867110002,67.78252257700012],[168.46928367600026,67.58185076200016],[168.6393736140002,67.50269978000006],[168.92140169000004,67.45438028700005],[169.61413564600014,67.37619707900012],[169.75985771500007,67.33393569100014],[169.88484161400015,67.24346193100007],[169.9124147230001,67.02246483900012],[170.18267863000005,66.77959433300015],[169.89050258400027,66.72279721600017],[169.3982086000001,66.50283109800012],[169.2976535890001,66.38042564000011],[169.29780563700012,66.20559791500017],[169.0400386450002,66.1605124960002],[168.8849796390001,66.23401022000007],[168.60769672600009,66.25942582700003],[168.2590026800001,66.24207562200019],[167.9265596360001,66.19358832400007],[167.92269859600003,66.11825965700012],[167.76710465700023,65.97175220399998],[167.73229964200004,65.86901706100014],[167.61619569900017,65.8139303550002],[167.73229964200004,65.48251577000019],[168.09599260100015,65.39900083400016],[168.60479759300006,65.41920373500011],[168.78330966800013,65.43983478400014],[168.91725164200022,65.54046389000013],[169.33798261400023,65.61070423900003],[170.28961159800008,65.79180447700003],[170.61592059800012,65.864973798],[171.19499158700035,66.06665211200004],[171.40202359000023,66.2076350530001],[171.8690186440001,66.0881220220001],[172.07528672000024,66.20196570100018],[172.31629962900013,66.22152839300003],[172.51820358300017,66.17754234400007],[172.58090172800007,65.98860703800017],[172.6428986420001,65.92375357100008],[172.83760069800007,65.89076223200016],[173.03140270500023,65.92280758900012],[173.29310567100003,66.01855339900015],[173.6994936970002,66.19576259000019],[173.82069367100007,66.34281201700009],[173.7474976950001,66.49957288500008],[173.51080364600023,66.51398556800007],[172.9562986730001,66.4171782740001],[172.76460270300004,66.48468712800008],[173.0222017220002,66.63642053000012],[173.28669770600015,66.73550099600004],[173.48829672700003,66.83737414400008],[173.68850669900007,66.98311850900012],[173.84689365600013,67.1368357410002],[173.96479769700022,67.33949809],[174.1291966580003,67.4407073910001],[174.33079567900006,67.51554839900012],[174.55349765000005,67.52469590500004],[174.868896596,67.47751366900007],[175.01130664000016,67.2968399020001],[175.21600361200024,67.27745306300017],[175.3986965800002,67.3152360000002],[175.49830661500016,67.3896486930002],[175.7419886570001,67.49095706800011],[175.98176573800004,67.54347287700006],[176.2039186940002,67.52253018900012],[176.35989367500008,67.37675414100016],[176.38157665200015,67.14896703700015],[176.22268661300006,66.77053651300014],[176.08273263500007,66.4803987790001],[176.0741426930001,66.27447134300019],[176.11059559000023,66.20701697100014],[176.28425571500009,66.17075233200012],[176.56924461500012,66.15730809400009],[176.76042174500003,66.19406139900002],[176.8549496640003,66.41000705300019],[176.7800597060002,66.63819062100015],[177.02001968000002,66.72117230000003],[177.27337661700017,66.62267890300012],[177.25677458200005,66.46276677500015],[177.14298974300004,66.34549690800009],[177.20002758900034,66.20051563200019],[177.44578566000007,66.13340408000005],[177.75694269400003,66.17106497700013],[177.79399070600016,66.25611447200004],[177.73760966600003,66.45345045700003],[177.79592860200023,66.59418948500013],[177.99844359700012,66.63355945100011],[178.21038873600003,66.53974365900007],[178.26963772800013,66.41363859600017],[178.44140672800006,66.41640864700014],[178.9228816870003,66.52090600200012],[179.12014760000022,66.46915294700005],[179.30483965100018,66.35217342900012],[179.3560487210001,66.23186713500013],[179.59948768800007,65.97758131500012],[179.71339372900002,65.93919638900007],[179.99998860100004,65.93052128700015]]]]},"properties":{"objectid":171,"eco_name":"Chukchi Peninsula tundra","biome_num":11,"biome_name":"Tundra","realm":"Palearctic","eco_biome_":"PA11","nnh":2,"eco_id":772,"shape_leng":115.582405191,"shape_area":63.2552294445,"nnh_name":"Nature Could Reach Half Protected","color":"#5EC0AB","color_bio":"#9ED7C2","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":298808.0377534326,"percentage":3.4968121735984883}}, + {"type":"Feature","geometry":null,"properties":{"objectid":172,"eco_name":"Clipperton Island shrub and grasslands","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Neotropic","eco_biome_":"NO07","nnh":4,"eco_id":568,"shape_leng":0.365059287969,"shape_area":0.0023745574521,"nnh_name":"Nature Imperiled","color":"#FBE97B","color_bio":"#FEAA01","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":28.951641566333038,"percentage":0.0001350418409580661}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-107.68956984499994,40.203195789000176],[-107.78052860399998,40.287733446000175],[-107.8400720489999,40.259181438000155],[-107.96330322799997,40.28904719700006],[-108.00264196199998,40.479107305000184],[-108.22194042799987,40.40232508700012],[-108.31102993299999,40.44266102200004],[-108.3766255029999,40.55529325900005],[-108.45958585699998,40.57318146799997],[-108.64635622299994,40.56449763400019],[-108.80600049799995,40.614199311],[-108.94720232099996,40.78413840600018],[-109.2473347369999,40.89676178900015],[-109.30525516199992,40.78918009400007],[-109.36868123899984,40.73879700300017],[-109.53613986999994,40.67597973599999],[-109.6134669029999,40.58892490900013],[-109.93002164299992,40.59775134400007],[-110.0171794929999,40.56495425300005],[-110.09220164899989,40.61431096100017],[-110.15433601999996,40.55318458300002],[-110.57712283299998,40.52053211000009],[-110.57322550499998,40.39899245700008],[-110.6965586039999,40.477492786000084],[-110.81886896299989,40.48739760000018],[-110.96300383799985,40.45523165600008],[-110.86533407999997,40.36988142299998],[-110.892480106,40.29698742300019],[-110.98410585999994,40.23866343100008],[-110.92693083199998,40.14050335600001],[-110.9727653569999,40.09135215500015],[-110.81326830899997,40.026685746000055],[-110.81630184199997,39.965026113000135],[-110.75032196499996,39.91248693500012],[-110.45553628199997,39.81957891000013],[-110.47510723899995,39.752970697000194],[-110.57034340299992,39.72183060900005],[-110.73489656899994,39.72345886300013],[-110.94060736899985,39.803798093000125],[-111.189428008,39.60223573000002],[-111.22748429499995,39.53802059900005],[-111.14131759199995,39.211014723000176],[-111.21417387399998,39.19016010000013],[-111.24873189899989,39.11195877400013],[-111.23702671799998,39.01687702200013],[-111.37826526299989,38.917900346000124],[-111.4239384469999,38.84660934700014],[-111.407013195,38.631492569000045],[-111.46521485499989,38.580083058000184],[-111.42163158299996,38.45661327100015],[-111.41285048599997,38.347545127000046],[-111.47427648799993,38.307847189000086],[-111.34470976099993,38.18691181500009],[-111.27258853699993,38.057203704000074],[-111.39073277499995,37.975748371000066],[-111.66474420799995,37.93610952299997],[-111.93538869299994,37.76014951100018],[-112.04465678499997,37.73704515200018],[-112.14151628999997,37.67267406600013],[-112.17673225399989,37.58292869899998],[-112.26457957999992,37.51032258499998],[-112.25186080299994,37.460803247000115],[-112.39108640399996,37.40516413400019],[-112.5074395179999,37.431120314],[-112.7000812089999,37.41866329200013],[-112.77776267199982,37.50174036400017],[-112.83227198999992,37.414195262000135],[-112.89486038799993,37.473464673000194],[-113.07167776799997,37.4399436330001],[-113.17652981099991,37.533774566000034],[-113.2377123469999,37.40277511700015],[-113.28305529699992,37.313329433000035],[-113.26886087499992,37.213912515000175],[-113.30448456199991,37.12205804399997],[-113.30107858199995,37.00016822400005],[-113.35921721899996,36.912929597000016],[-113.43761438699994,36.93963968300005],[-113.57186748099991,36.886352971],[-113.69506990999992,36.95531532200005],[-113.8607535829999,36.87306311200007],[-113.917597393,36.74392929900017],[-114.0168413529999,36.66808302600009],[-114.13904030299994,36.63810059700006],[-114.1714515939999,36.58512675800006],[-114.08760667899992,36.53667634700008],[-114.01331111499996,36.63768606400015],[-113.74794112799998,36.550951521000115],[-113.81467099099996,36.307053511],[-113.784477531,36.237359174000176],[-113.83148833299992,36.189327972000115],[-113.81623788299993,36.07447146200013],[-113.70608863899992,36.01294179800004],[-113.5555936319999,36.073771678000185],[-113.44745798699995,35.975002642000106],[-113.39436041699992,36.11126751400019],[-113.44939840599994,36.188718285],[-113.25774423099995,36.22763033300015],[-113.13405933599995,36.13728891000005],[-113.20967564699998,36.072537432],[-113.26773892499989,35.8946033360001],[-113.28455153999994,35.77575312000016],[-113.23027521799997,35.718578535],[-113.41080417399996,35.616150491999974],[-113.4048617009999,35.70424171000013],[-113.56632779199998,35.76100264500013],[-113.60517969799997,35.69625448600004],[-113.74251350199995,35.86670939800018],[-113.81110972399989,36.015381159000185],[-113.94516250299989,36.054233500000066],[-114.041197464,35.780368913000075],[-113.86176631299992,35.73379288000007],[-113.88200469399999,35.67290334300003],[-113.81874380099998,35.58556220000008],[-113.74527701699998,35.557404345000066],[-113.737380638,35.47600904200016],[-113.650399054,35.37000846800004],[-113.51029344799997,35.311999974000116],[-113.41292503199998,35.209123177000095],[-113.27805956999993,35.17575154400015],[-113.1284808559999,35.255302621000055],[-112.98964785399988,35.22738821500019],[-112.921869303,35.1257804010001],[-112.8213406019999,35.18365177900006],[-112.76463768299999,35.013253015000146],[-112.66239633299989,34.98422562500019],[-112.68929581799995,34.77209878900004],[-112.60955341599998,34.74306005400018],[-112.6098305999999,34.85843595900019],[-112.51337232499998,34.870020064000016],[-112.52217038799989,34.688079862000166],[-112.41490843699995,34.61555338700009],[-112.22254396499989,34.53567812900013],[-112.20623592899994,34.61230165700016],[-112.26783588999996,34.66091782900014],[-112.28695057999994,34.75973597600006],[-112.41943358299989,34.80454242500019],[-112.49462329099998,34.97787835400004],[-112.68021881799996,35.10104320700003],[-112.59749842799994,35.17563504600014],[-112.45773266499992,35.22141113200013],[-112.60571617999989,35.28126204100016],[-112.73414624599991,35.18198505700019],[-112.81988812299988,35.21591113600016],[-112.76709757999998,35.314896757999975],[-112.79014249,35.504302604000145],[-112.66533474699992,35.45577416400016],[-112.59906033599998,35.4015033930001],[-112.43437416599994,35.48844603100008],[-112.31571237999998,35.46191081900014],[-112.11752329299992,35.51285420500005],[-112.07108700399993,35.553364944000066],[-112.08181865199998,35.78432540700004],[-112.19482142799984,35.84172322100005],[-112.24117993299996,35.89810188500013],[-112.26308894099986,36.02016805599999],[-112.37298111099983,36.0661814880001],[-112.43957049699998,36.15044166700005],[-112.17223795899992,36.05735613300004],[-112.05937138899998,36.04267483300015],[-111.94303180399999,35.98364894700006],[-111.75428168999997,36.077333243000055],[-111.72551409299996,35.834825338000144],[-111.76014070499991,35.720965789],[-111.75939509599993,35.60098198000014],[-111.6401181089999,35.58827137500015],[-111.58722911099994,35.52012393900009],[-111.44423292999988,35.46898529300017],[-111.41331510399993,35.418413209],[-111.27518074299991,35.31881163800006],[-111.26170512799996,35.176772159000166],[-111.2905364529999,35.13981665799997],[-111.16830282599994,35.00315570800018],[-111.19574034999994,34.957484751000095],[-111.12315248499993,34.86512630100003],[-110.98060176899992,34.79718792600016],[-110.81960633499989,34.68014332700011],[-110.52472126799995,34.602700563000155],[-110.44868406699993,34.48278195100005],[-110.07345002899996,34.37881066400007],[-109.943700316,34.41074640400012],[-109.80453335799996,34.38617113500004],[-109.66621930899998,34.27023573000008],[-109.58251855799995,34.282206009000106],[-109.38368115399999,34.164569947000075],[-109.32445449199997,34.109490129000164],[-109.23855088999994,34.17642632700017],[-109.1220702949999,34.15954269800005],[-109.050227598,34.1970581920001],[-108.96750853699984,34.11646947200006],[-108.88185513899998,34.155394661000116],[-108.79683326699995,34.127857215000176],[-108.66828868799996,34.16431722200019],[-108.60728168399993,34.26617665900005],[-108.52898332299998,34.24069959800016],[-108.42962916699997,34.27542744300007],[-108.34040584899998,34.199358007],[-108.24445680099984,34.280435090000026],[-108.16773318499997,34.26843322999997],[-108.03808472799994,34.36150360000016],[-107.93101445599996,34.372948235000024],[-107.81343165899995,34.34731891700005],[-107.71828659799996,34.43731094400016],[-107.6358918819999,34.44770099100003],[-107.58738546499995,34.38817084400006],[-107.41748159799988,34.34288181000005],[-107.31855508299986,34.3667274070001],[-107.2719969069999,34.32793690400018],[-107.19913572099995,34.16728227400006],[-107.46273775599991,34.078926373000115],[-107.56920627299996,34.183446128000185],[-107.57644493399988,34.2681285650001],[-107.68051149799987,34.28160340300019],[-107.80530999799987,34.19191576600019],[-107.7759761019999,34.087306815000034],[-107.83660138299996,34.04736647400017],[-107.97326330799996,34.07103098700003],[-108.03328925999989,33.99870229700008],[-108.19773532899995,33.9027684830001],[-108.35415647799994,33.87184275800007],[-108.37790203899993,33.785584688000085],[-108.26872334199993,33.68478611400013],[-108.2035957949999,33.78065621500008],[-108.04349524099996,33.80231016700009],[-107.81929600199987,33.88868597200013],[-107.76838730699995,33.77442922400007],[-107.64302319799992,33.807220016000144],[-107.69282687899994,33.88325244600014],[-107.67021558399983,33.92907503500015],[-107.55698476199996,33.976507408000145],[-107.41281286299994,33.939869566000084],[-107.32367381499989,33.84219848000009],[-107.21475178999998,33.87159702400015],[-107.29010974899995,34.03065634000012],[-107.17581749199996,34.129564752000135],[-107.0284617829999,34.00248160000001],[-106.95271134099983,34.054384366000136],[-106.98597196199995,34.12618560700008],[-106.96165925699995,34.249213648000136],[-106.7208477829999,34.32749918800005],[-106.6694614889999,34.27010943200014],[-106.66218747499994,34.2738941500001],[-106.4976801819999,34.47076713500019],[-106.52409443,34.62814485700005],[-106.43809675699998,34.86302408600011],[-106.49628486899991,35.01600696000003],[-106.4716727149999,35.15138082200008],[-106.5047145989999,35.26319173900015],[-106.37776254299996,35.317229919000056],[-106.27960473399997,35.26739448600017],[-106.21679309399997,35.36417509400019],[-106.14040993499992,35.40102811000014],[-106.08556070399993,35.35268027300009],[-106.08698363499997,35.278164760000095],[-106.01861049899992,35.29095754500014],[-105.89590368799998,35.25576638300004],[-105.85840254299995,35.38976944700005],[-105.85287161999992,35.50354233400009],[-105.93027035599988,35.59959825900012],[-105.90166722599997,35.66769499000014],[-105.92267207699996,35.77131021800005],[-105.91103265199996,35.92055572700008],[-105.85292918799996,36.01754134500004],[-105.90439529599985,36.05473544400019],[-105.87111315599998,36.17277564500006],[-105.71804114599996,36.304643794000185],[-105.6004652979999,36.32969737500002],[-105.51651066499994,36.44772168800017],[-105.56203132999991,36.54177928000013],[-105.66504393999998,36.5708165850001],[-105.62263376599998,36.6781858650001],[-105.57402681599996,36.70141540300011],[-105.53252302199996,36.943434984000135],[-105.45412004299999,36.9280040430001],[-105.38578897199994,36.99021456500009],[-105.34442188399998,37.12876170099997],[-105.40049972199995,37.27676592000017],[-105.39622689899988,37.3678585240001],[-105.48662645099989,37.495714909000185],[-105.58953926099997,37.54970960600008],[-105.59228853399998,37.623695241000064],[-105.50423957799995,37.751597272000026],[-105.5070514539999,37.808405601],[-105.63862684899993,37.89201878900019],[-105.74757766999994,38.04663412600007],[-105.85467083499992,38.26942651100012],[-106.05088439999997,38.42905613900018],[-106.02140404899995,38.234508586000175],[-105.95568511699997,38.188368396000044],[-106.09165735899995,38.12035979600017],[-106.17771877999985,38.146417412],[-106.22338051299994,38.071147131000146],[-106.14374650099995,38.05159465600019],[-106.31135763699996,37.811335983],[-106.33013441199995,37.73376167700019],[-106.45000583099988,37.74047915900019],[-106.55163610599999,37.70048015200007],[-106.41813009599991,37.61669455600003],[-106.29992914299993,37.6340068290001],[-106.21214458999987,37.46830478000004],[-106.24808583899994,37.380076781000014],[-106.20314361899995,37.172493248000194],[-106.21796791899993,37.1268982360001],[-106.10600896399995,37.05010993200011],[-106.16006813499996,36.996446663000086],[-106.0743246159999,36.87817092800009],[-106.10801145199997,36.82719127600018],[-106.03769868499995,36.69629600900004],[-105.98571302499988,36.69619079700004],[-105.91226411199995,36.44902865400013],[-106.06232843999999,36.31964454400003],[-106.20348668299982,36.364299004000145],[-106.26306120999999,36.300219926000125],[-106.55513388999992,36.320677874000125],[-106.59859656899982,36.1759851060001],[-106.43120236899989,36.23119998200019],[-106.24522462399989,36.1590512730001],[-106.14043511999989,35.9900319410001],[-106.17164241699999,35.84872942300012],[-106.27550829299986,35.73268032900012],[-106.500099477,35.56610512300017],[-106.56800811399995,35.543857957000114],[-106.73943143899999,35.628000579],[-106.85404425299993,35.566631621000056],[-106.92070528999989,35.696956231000115],[-106.89901065099997,35.760137018000194],[-106.91528568399991,35.97462942400011],[-106.944755623,36.0448510010001],[-107.02832434499999,36.06556719000008],[-107.22485821099997,36.240458028000035],[-107.16353197799998,36.31110672000011],[-107.32062479499996,36.41036048400008],[-107.25671984499996,36.47090548900019],[-107.32856951699995,36.51865570800004],[-107.2419800099999,36.59084434700003],[-107.3270220679999,36.61700051800017],[-107.3297454829999,36.81840911500012],[-107.26841610599985,36.855378773000155],[-107.28461590999996,36.92916952400003],[-107.40834972699997,36.97122071000018],[-107.44195492199987,37.04045363200015],[-107.5234650129999,37.06045491200018],[-107.54973812299994,37.1461336270001],[-107.50287935699998,37.21890952000018],[-107.6544783899999,37.27856683800013],[-107.73177539499994,37.250425113],[-107.84846572499993,37.322045635],[-107.90614390999997,37.20653807100001],[-107.99752421799991,37.184907863000035],[-108.02413390999999,37.27853322400017],[-108.15875032799994,37.31988408500007],[-108.2262422309999,37.39377610200012],[-108.40332093299997,37.40379988500018],[-108.48477780699989,37.54810346500017],[-108.69779762099995,37.646570792000034],[-108.6927110179999,37.712455126],[-108.77545023599998,37.88962882600009],[-108.68678895899984,37.86171531900004],[-108.5281547759999,37.77080387100011],[-108.47285539799992,37.834821187000045],[-108.51043371899993,37.932830391000095],[-108.41661996599998,37.980354900000066],[-108.34619748499983,37.923790976000134],[-108.28077183299996,37.96250588900017],[-108.17425261999989,37.947027956],[-108.23763621999996,38.157951874000105],[-108.16703510399992,38.20125609900015],[-108.51063171399989,38.372319306000065],[-108.50439147499998,38.409796101000154],[-108.63385051199992,38.461308006000024],[-108.832832812,38.62276264600007],[-108.77100006099994,38.75024602700017],[-108.6391350479999,38.77595033100016],[-108.58591244799993,38.755233179000186],[-108.61612682699985,38.64818163900014],[-108.49061847099989,38.60224282300004],[-108.47413312299994,38.55431402200003],[-108.3308501699999,38.554011373000094],[-108.18008452999999,38.43324251299998],[-108.06418454199985,38.38997064000017],[-108.02638447199996,38.33301348400005],[-107.87371781399997,38.25898394900014],[-107.72403557099994,38.135601534000045],[-107.6844590039999,38.20652933000008],[-107.72202716499993,38.28281454200004],[-107.69987323899994,38.402793712000175],[-107.58075267199996,38.416781558000025],[-107.54993974399991,38.34893246399997],[-107.43394680599994,38.39676351500009],[-107.57074869199994,38.51167321000008],[-107.53846836799988,38.7290271],[-107.57099994099997,38.80374221800008],[-107.50372573399994,38.86411153600011],[-107.54259264199999,38.92668224100015],[-107.75416787899997,38.88660173700015],[-107.93603791999993,38.97341579900012],[-108.04379730799991,38.947919175000095],[-108.12345096999985,38.8747473140001],[-108.20009460999995,38.874837273000026],[-108.2313262049999,38.98813621700003],[-108.2862398119999,39.057124582000085],[-108.24094926399988,39.11636847300019],[-108.13483626099998,39.10477100000014],[-107.78370757799985,39.27622967600013],[-108.07022284299995,39.334239860000025],[-107.97373508399988,39.453654332000156],[-107.81419277999987,39.490247871000065],[-107.71960906699996,39.42304653200006],[-107.71925151999989,39.36265462800009],[-107.61158616999995,39.35817208100019],[-107.49520134999995,39.49209046400017],[-107.41269020699991,39.54392425800006],[-107.436428262,39.593150036000054],[-107.56444536399994,39.66945508700013],[-107.81032703099993,39.685353518000056],[-107.89074095399997,39.72512727700018],[-107.92384084199989,39.863639929000044],[-107.84638721699991,39.944394234000185],[-107.68060615599995,39.98561789000013],[-107.67129252399997,40.037412956000026],[-107.74170020499992,40.11610107600018],[-107.68956984499994,40.203195789000176]],[[-108.68792380699995,38.929509652000036],[-108.63466561899997,38.838407781000114],[-108.76071437599984,38.785985443000186],[-108.84816813599997,38.806299134000085],[-108.92618986699989,38.75936359900015],[-109.00069793599994,38.79997654400006],[-108.94985761599992,38.857857126000056],[-108.84538028799989,38.81680761700011],[-108.7961595239999,38.88179017100009],[-108.68792380699995,38.929509652000036]],[[-109.19388089199998,38.61251343700019],[-109.06482243899995,38.46468124800003],[-109.08253960399992,38.41346926600005],[-109.21422030399992,38.33056717100004],[-109.32792389199989,38.388913623],[-109.33631226199992,38.53056780600008],[-109.29357129299996,38.59103140200011],[-109.19388089199998,38.61251343700019]],[[-110.77185798,38.153001491000055],[-110.7158413329999,38.02262431800017],[-110.74034044799998,37.945974958000136],[-110.80681070499998,37.92263266400005],[-110.88051158999997,38.079720858000144],[-110.77185798,38.153001491000055]],[[-109.4962414869999,37.91796430400012],[-109.35838887699998,37.871913137000035],[-109.34988252199997,37.785158115000115],[-109.45477304699989,37.7213944450001],[-109.54067964099994,37.753567516000146],[-109.6084665489999,37.86493091900019],[-109.4962414869999,37.91796430400012]],[[-112.15144444799995,36.88991031800009],[-112.07649508999987,36.88220179800004],[-112.0897311249999,36.79499968699997],[-112.00695046699997,36.60399594900019],[-112.00082318499994,36.460724605000166],[-111.88162628299989,36.32343020300004],[-111.97993173199995,36.29416605900002],[-112.00211373999997,36.18477387900015],[-112.13121569099997,36.241346422],[-112.20369735199989,36.244455391000145],[-112.27108868999989,36.307445029000064],[-112.39816475699996,36.34203715600006],[-112.53869396999988,36.48881322100004],[-112.48029325399995,36.57907431300015],[-112.37204708399997,36.681230484000025],[-112.333545303,36.77996084400013],[-112.21192929099993,36.89747246800016],[-112.15144444799995,36.88991031800009]],[[-109.13480526199993,36.88355085800009],[-109.04826670899996,36.81555929500007],[-109.06847581999995,36.75080666100007],[-109.21038344199991,36.64710438600014],[-109.21118374899999,36.58920338900015],[-109.08096928899994,36.50919240600001],[-108.92285789699997,36.531745742000055],[-108.86204857499996,36.34242537800003],[-108.86399666899985,36.26418635900018],[-108.71277363399997,36.121099711000056],[-108.66272252999994,35.97381802700005],[-108.670928313,35.89459625700016],[-108.87761058499996,35.765571178000016],[-109.01194050899988,35.728995804000135],[-109.06929718499998,35.772021820000134],[-109.11240051199997,35.64462247200015],[-109.10198974699995,35.556795021000084],[-109.17047589599991,35.48637321899997],[-109.1748765619999,35.413600357000064],[-109.33564705099997,35.423004799000125],[-109.42275442399995,35.56579974300013],[-109.37058086499997,35.74151615000011],[-109.43622160399991,35.86060867700019],[-109.33303079399991,36.09004969500012],[-109.34522836399992,36.23379949000014],[-109.2067280689999,36.364728735000085],[-109.21735429599988,36.430175022000185],[-109.33494745599995,36.55852708800012],[-109.28243198299998,36.606259399000066],[-109.29989980599993,36.828585723000174],[-109.24793451099998,36.88552645500005],[-109.13480526199993,36.88355085800009]],[[-107.31889814699991,35.61305447800015],[-107.21793746699996,35.586058448000074],[-107.14980504499994,35.377643692000106],[-107.21125809699993,35.31828623600012],[-107.25720058599984,35.21034603100003],[-107.37750940899997,35.14504910700009],[-107.36071130099998,35.078438014000085],[-107.43026233899991,35.05027758000017],[-107.66492747799998,35.119684783000025],[-107.7205842159999,35.083988569999974],[-107.86147807699984,35.16351096500017],[-107.76670633099997,35.22732238500009],[-107.78627545299997,35.33078481300015],[-107.68258647099998,35.310267997000096],[-107.63600197699998,35.40424369100003],[-107.51045840999996,35.46409175200017],[-107.40578384399993,35.58798808800003],[-107.31889814699991,35.61305447800015]],[[-108.49664477699997,35.46879298500005],[-108.05638723299995,35.32021384300003],[-108.01631823599985,35.15320794700017],[-107.93353514399996,35.067588857000146],[-107.94133901199996,34.95256853200004],[-108.01947435699986,34.913883435000116],[-108.04956729799994,35.00149381199998],[-108.12363479199996,34.97782781300003],[-108.0940046149999,34.90164267900019],[-108.20955584899986,34.79221449500017],[-108.33571870599997,34.777075291000074],[-108.26269988999991,34.916279880000104],[-108.15231853699999,35.00535651400003],[-108.29025019799991,35.10876291699998],[-108.50559351899994,35.15457391100006],[-108.65066919799989,35.407498356000076],[-108.63992467299988,35.44389533300006],[-108.49664477699997,35.46879298500005]],[[-107.75529446899992,34.98355032300009],[-107.71910198599994,34.88503056400015],[-107.65186607299995,34.83671873200018],[-107.76541479799994,34.70509934700016],[-107.86162903499996,34.688405566000085],[-107.91824730299999,34.76827793800004],[-107.8679035529999,34.86077763600002],[-107.75529446899992,34.98355032300009]]]},"properties":{"objectid":174,"eco_name":"Colorado Plateau shrublands","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Nearctic","eco_biome_":"NE13","nnh":2,"eco_id":429,"shape_leng":95.1227504038,"shape_area":28.7327900993,"nnh_name":"Nature Could Reach Half Protected","color":"#FF7F7E","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":283959.84452132933,"percentage":1.0763320490787198}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[119.11207580600012,-29.69329640399991],[119.02079771900003,-29.669557512999972],[118.88595603100009,-29.69451513299998],[118.7579345290003,-29.7454702309999],[118.65184025500002,-29.732875750999938],[118.587081839,-29.758810029999893],[118.53728478400012,-29.837802929999953],[118.36967471700007,-29.868492094999965],[118.14265438900009,-29.881694764999907],[117.76216895800007,-29.837011342999915],[117.67452995800011,-29.862417225999877],[117.68519593000008,-30.000022930999876],[117.74617008400014,-30.008443892999935],[117.8321151020001,-30.081182552999962],[117.88108067200005,-30.16361421099998],[117.95123284300007,-30.17032057299997],[117.98262793200013,-30.249385891999964],[118.16527546900033,-30.296249446999923],[118.2169113460003,-30.290462413999933],[118.33728788100018,-30.34699047199996],[118.42758176500013,-30.416740478999884],[118.41850282300015,-30.536062235999964],[118.60629265800003,-30.750501660999873],[118.79491431300005,-30.86025228999995],[118.85911566900006,-30.922031441999934],[118.94836433000012,-30.938796924999963],[119.03490446300009,-30.99874882299997],[119.25889590600025,-31.226266867999925],[119.18314361700027,-31.27423281199998],[119.30303953400016,-31.423667895999984],[119.322929455,-31.477186179999933],[119.41914364500008,-31.45377921299996],[119.48178864900012,-31.568731315999912],[119.57691956200017,-31.61826132199991],[119.59372712100003,-31.723148267999818],[119.69258110900012,-31.84426877999988],[119.60707094400016,-31.93375012299998],[119.4703445020001,-31.95891376999998],[119.38887022300003,-32.02354042299993],[119.48085792200004,-32.02032847799995],[119.48455819700007,-32.14489747299996],[119.62400825600002,-32.25893779199993],[119.59098825100023,-32.38780586499996],[119.69339013000001,-32.54849616899992],[119.8520431280001,-32.53909687099991],[119.90863807400001,-32.43978120899993],[119.97956087700004,-32.518981978999875],[120.1893463350001,-32.45508572599988],[120.33763125500013,-32.477367338999954],[120.26627343200016,-32.59232329699995],[120.30088801000011,-32.68014904599988],[120.41039271300019,-32.67545702399997],[120.58192450500007,-32.630664803999935],[120.60826882800029,-32.66032785699997],[120.74253082300015,-32.58938594299991],[120.93148037800006,-32.605636608999816],[121.23601537300021,-32.59268958599989],[121.32759856100006,-32.63204949499993],[121.37789920100033,-32.600318962999836],[121.4915847970002,-32.63388446199997],[121.50148768100019,-32.700527129999955],[121.63593290500012,-32.67288210399994],[121.71621712100034,-32.705577896999955],[121.9007262790002,-32.71064760699994],[121.93009194100023,-32.58113462999995],[121.90882118600018,-32.5426712499999],[122.27673342700018,-32.33947748799983],[122.38498688000016,-32.31270988099993],[122.43423458400014,-32.262107828999945],[122.59037787300008,-32.27568818799995],[122.6582260260002,-32.23276513199994],[122.72357184600003,-32.3035544949999],[122.85824572900015,-32.351718922999964],[122.84218600200018,-32.42920676799997],[122.93160247000003,-32.48860160499993],[122.94247430100006,-32.63343804199991],[122.99721533700006,-32.70327371199994],[123.14586637800005,-32.769828704999895],[123.29036720400018,-32.68477636099993],[123.35916133900014,-32.75099942999992],[123.32741555100017,-32.8123740719999],[123.38144680800008,-32.8934592629999],[123.31552129500017,-32.93958286399993],[123.292419429,-33.01943591399993],[123.19689171700009,-33.10779575899994],[123.20711512400021,-33.278327925999974],[123.35112007700002,-33.31563560999996],[123.45114132700019,-33.31008142499991],[123.70085146600002,-33.23434070399992],[123.7833862230002,-33.23800275699995],[123.83821862100024,-33.144618967999975],[123.9526748510001,-33.08774188799998],[123.88246920400002,-32.99306108299993],[123.9174881240001,-32.90676503099991],[124.06864166700007,-32.864738503999945],[124.15605904900008,-32.78911965599997],[124.28427132200011,-32.83494955599997],[124.52623742100013,-32.762401500999886],[124.56065385100021,-32.72285467599994],[124.69551079400003,-32.71502681699991],[124.76202387800004,-32.64366915999989],[125.01126094200015,-32.66308215099997],[125.08186339000008,-32.63418201999991],[125.09697730100015,-32.559303292999914],[125.24744419800015,-32.49975205099997],[125.34333032100017,-32.49283597499988],[125.38605506100009,-32.440216062999866],[125.55553429300005,-32.32921602899995],[125.67563623700005,-32.29597859699987],[125.80818932900002,-32.16071697499996],[125.89742273600007,-32.123428402999934],[126.00146478500005,-32.12206265599991],[126.4751128900001,-31.98801993099994],[126.5677719800002,-31.936378521999984],[126.2193604050002,-31.960933474999933],[126.04159549400003,-32.03070443699994],[125.96624000400004,-32.017471255999965],[125.87519074400018,-32.10292056799989],[125.68963619500005,-32.088234131999855],[125.64908605500011,-32.19348535499995],[125.51330559400003,-32.19358442999982],[125.35961920800003,-32.2499656359999],[125.2929230640002,-32.227157638999984],[125.2471008760001,-32.30225379199993],[125.07144166600017,-32.28804009599992],[124.95584868300011,-32.318046638999874],[124.8295059090002,-32.42313005699998],[124.64624029000015,-32.47121804099993],[124.56400292400008,-32.45378116799992],[124.42271421100031,-32.5677643219999],[124.23799902600024,-32.556064525999886],[123.98731993800004,-32.50738528199997],[123.79454806700005,-32.52151867999987],[123.71459963100006,-32.422981192999885],[123.68904874000009,-32.33172607199998],[123.71234892200005,-32.267807019999964],[123.80481724000003,-32.27743531199991],[123.81340785200007,-32.211418100999936],[123.92029572500019,-32.14929964999993],[123.92553709800029,-32.08057022299988],[123.83213050900008,-32.054054239999914],[123.94209286500029,-31.980886427999906],[123.89556877600012,-31.89827338399988],[123.78411109000001,-31.8701190729999],[123.74591827700021,-31.815975163999894],[123.8217010750003,-31.74355132999989],[123.93827826100016,-31.725570638999955],[123.93889617500008,-31.675264299999867],[124.06889345800005,-31.564859379999916],[124.04493714000012,-31.449434203999942],[123.9926833500001,-31.378759336999906],[124.13694763800004,-31.23760993199994],[124.23013311100021,-31.243341476999944],[124.27675627500025,-31.15129091299997],[124.14590454000017,-30.970808085999977],[124.2527999570002,-30.80699535499997],[124.37916569700008,-30.71764393199993],[124.1065292080001,-30.748792591999973],[124.01853179800003,-30.572397283999976],[123.8755113840001,-30.587543550999953],[123.74999992700009,-30.6428012479999],[123.67565160800007,-30.61360355899984],[123.53197472300019,-30.61579509099988],[123.4640655500001,-30.652181602999974],[123.38029479800002,-30.59767525999996],[123.05911250500003,-30.66147981599994],[122.85438535900016,-30.651065803999984],[122.8175432060001,-30.70359619699991],[122.73309318500026,-30.70335764799995],[122.63020331100017,-30.658515974999943],[122.529449483,-30.65307997499997],[122.43206031700004,-30.69142332699994],[122.34918207000021,-30.627424309999924],[122.14329537000015,-30.60843460599989],[122.08435064200023,-30.566566496999883],[121.98367308800016,-30.622102807999966],[121.86804959600022,-30.72859002599995],[121.77333073700015,-30.744830969999953],[121.61434179200023,-30.683193134999897],[121.50923926400014,-30.67924492399993],[121.5075149390002,-30.62094694299992],[121.21632393400012,-30.433593804999873],[120.99051663500006,-30.207084606999956],[120.86219020100009,-30.16885189599992],[120.86598971800015,-30.12488562799996],[120.67732246400021,-30.102073608999945],[120.66439052900012,-30.014467297999943],[120.56882476300007,-29.96321682099989],[120.4917374050001,-29.87996474199997],[120.45130913900005,-29.934412074999955],[120.34700758600013,-29.951198512999895],[120.28588104800008,-29.896942117999913],[120.14043424100021,-29.87693786899996],[120.10745245800001,-29.926609025999937],[119.9544981480002,-29.94171137199993],[119.83940120600005,-29.810274077999964],[119.81278229300017,-29.8596535449999],[119.6444626120001,-29.847734478999882],[119.36528002500006,-29.77544777199995],[119.11207580600012,-29.69329640399991]]]},"properties":{"objectid":179,"eco_name":"Coolgardie woodlands","biome_num":12,"biome_name":"Mediterranean Forests, Woodlands & Scrub","realm":"Australasia","eco_biome_":"AU12","nnh":2,"eco_id":197,"shape_leng":38.6159795482,"shape_area":12.2438682088,"nnh_name":"Nature Could Reach Half Protected","color":"#FF7F7E","color_bio":"#FE0000","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":129520.93172025503,"percentage":3.9208443896898553}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-77.70737458599996,-8.353334094999923],[-77.61903351799992,-8.274195684999881],[-77.72846261699988,-8.186121999999898],[-77.73091851399994,-8.025373356999978],[-77.81034861399996,-8.02324167199987],[-77.85486557199994,-7.944474412999909],[-77.95158351499992,-7.93649886399993],[-78.02949565199992,-7.840526743999931],[-78.09677852999994,-7.864090116999932],[-78.10328657499997,-7.932718290999958],[-78.23609950699989,-7.828688813999975],[-78.27407053399997,-7.907601917999898],[-78.37728160199993,-7.861028375999922],[-78.49755051299996,-7.892467050999869],[-78.36495953399998,-7.991434025999979],[-78.43148049699988,-8.042305136999971],[-78.35543065099995,-8.084669119999887],[-78.33964551599996,-8.173325850999959],[-78.40926359199989,-8.243652867999913],[-78.31439251799998,-8.373833379999894],[-78.24013556099999,-8.324858087999871],[-78.23486351199995,-8.199376134999909],[-78.27303352499996,-8.100921126999879],[-78.20502460699993,-8.020677982999871],[-78.11620358999988,-7.988161059999868],[-78.08851665599997,-8.052775642999961],[-78.01490761999992,-8.011182627999972],[-77.94107059699996,-8.090070920999949],[-77.86757656099996,-8.07668669799989],[-77.85808556399991,-8.199778969999954],[-77.82476062599994,-8.234463619999872],[-77.70737458599996,-8.353334094999923]]],[[[-78.65247356499998,-6.624199938999936],[-78.76977561799998,-6.714422408999894],[-78.75692750199994,-6.76880151499995],[-78.90793653999998,-6.768395327999883],[-78.99047850499994,-6.840669293999952],[-78.95040864899994,-6.951684080999883],[-78.79352557299995,-6.899955835999947],[-78.75253253399995,-6.957738664999908],[-78.75789661699986,-7.063547954999933],[-78.67813157699993,-7.073073317999899],[-78.60573556999992,-7.131001153999819],[-78.58027654499995,-7.062834990999932],[-78.3979946259999,-6.997353886999974],[-78.2679596239999,-7.059405450999918],[-78.26420553699995,-7.153967567999871],[-78.12667862299992,-7.198999342999912],[-78.08148155699996,-7.143814065999834],[-78.17715461099993,-7.018940304999887],[-78.29296854099994,-6.974931457999958],[-78.29178652499996,-6.858777054999905],[-78.36140460099989,-6.802291073999925],[-78.37836454399991,-6.728276353999831],[-78.51467155599994,-6.842024982999931],[-78.58028459199988,-6.818729662999885],[-78.64627062199997,-6.682786759999942],[-78.65247356499998,-6.624199938999936]]],[[[-76.67227156899997,-9.156248502999915],[-76.68837756399995,-9.073325496999928],[-76.76183354599993,-8.921446248999871],[-76.6569065349999,-8.919943373999956],[-76.64864365499994,-8.818229816999974],[-76.52968550499992,-8.799795161999953],[-76.61303749799998,-8.67054219199997],[-76.72940848899998,-8.760491747999879],[-76.83567861599994,-8.745997760999956],[-76.93622557899994,-8.760716884999965],[-77.02888450199998,-8.654297559999975],[-76.99224854399989,-8.598141323999926],[-76.87051363799998,-8.60666471299993],[-76.81516256699996,-8.53669292099994],[-76.95159161999999,-8.494779884999957],[-76.9748006069999,-8.440760864999959],[-76.89566052099991,-8.37160060899987],[-76.88043965499998,-8.270536984999978],[-76.95091251799994,-8.29041852399996],[-76.99889354899994,-8.369852813999955],[-77.14044159799988,-8.26337934199995],[-77.22446464499995,-8.15875609099993],[-77.22071860499995,-8.049155833999976],[-77.06258360799995,-8.051799653999979],[-77.11004663799997,-7.918481124999971],[-77.23362757399985,-7.954094490999921],[-77.26114653599996,-7.798009036999929],[-77.33387765099997,-7.810915826999974],[-77.39951365299993,-7.761930475999918],[-77.40946163099989,-7.689361633999965],[-77.47899655799995,-7.636682378999922],[-77.445114559,-7.571689100999947],[-77.55471749799995,-7.351780985999881],[-77.52605457399994,-7.181186457999956],[-77.54349563899996,-7.080356688999814],[-77.61022162299997,-7.037455760999933],[-77.67043252199994,-7.048754063999979],[-77.73457352699995,-6.992496070999948],[-77.71685753599996,-6.934484247999819],[-77.77924353899988,-6.843230132999906],[-77.85562161999997,-6.800315123999951],[-77.90497560699998,-6.871318896999981],[-77.79014554499997,-6.994821042999945],[-77.78567463799999,-7.100884472999894],[-77.65859962099984,-7.166391560999955],[-77.72348058099993,-7.256791894999935],[-77.67100550799984,-7.290899367999884],[-77.6329955889999,-7.448417121999853],[-77.55741160999992,-7.549572946999945],[-77.51767753299998,-7.685040930999889],[-77.53550751699999,-7.780613234999976],[-77.46092249299994,-7.846042370999953],[-77.41616061499985,-7.931714138999837],[-77.43226660999994,-7.991759075999937],[-77.3978656029999,-8.072111184999926],[-77.26143654999993,-8.168802137999933],[-77.24311052399986,-8.225539239999875],[-77.29601257099995,-8.315820719999977],[-77.28305062799996,-8.391776352999898],[-77.2211915119999,-8.408193986999947],[-77.12319951999996,-8.483536734999973],[-77.08452558699997,-8.636735628999872],[-77.19741054399998,-8.593963782999936],[-77.00551558799992,-8.846222690999923],[-76.90185558499991,-8.899648774999946],[-76.90060450299995,-8.963636390999966],[-76.83035258699988,-9.0363490659999],[-76.67227156899997,-9.156248502999915]]],[[[-79.26012449799998,-6.171255971999869],[-79.27389562999997,-6.201792921999981],[-79.2137905109999,-6.371140558999969],[-79.17217251699998,-6.307102985999904],[-79.20183556999996,-6.172639991999972],[-79.26012449799998,-6.171255971999869]]],[[[-79.30987561999996,-5.583354982999936],[-79.36362457399997,-5.628512653999906],[-79.2828905849999,-5.783963262999976],[-79.26696061099989,-5.653831868999873],[-79.30987561999996,-5.583354982999936]]],[[[-79.31794755999994,-5.370285662999947],[-79.2838975869999,-5.266935455999942],[-79.33795164199995,-5.25405414699992],[-79.36002353999999,-5.349158237999973],[-79.31794755999994,-5.370285662999947]]],[[[-79.30597652599994,-4.430120104999901],[-79.33824953499999,-4.46465270799996],[-79.33953850399996,-4.5773043129999],[-79.4961166469999,-4.785326720999933],[-79.55340561399998,-4.809574057999953],[-79.50173956299989,-4.9380325919999],[-79.45304858399999,-4.969445282999914],[-79.37792158599996,-4.886859228999924],[-79.34293350999997,-4.73712558099993],[-79.35436257099997,-4.673676082999918],[-79.29243455499989,-4.610685912999941],[-79.30597652599994,-4.430120104999901]]]]},"properties":{"objectid":181,"eco_name":"Cordillera Central páramo","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Neotropic","eco_biome_":"NO10","nnh":3,"eco_id":590,"shape_leng":33.4948647964,"shape_area":0.993052030124,"nnh_name":"Nature Could Recover","color":"#BD9A64","color_bio":"#D6C39D","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":12198.549066843976,"percentage":0.24980111856292073}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-71.90905760799996,8.112253544000112],[-71.9885105059999,7.982403782000063],[-71.94615155299994,7.953941856000029],[-71.87905156799997,8.001489543000105],[-71.90905760799996,8.112253544000112]]],[[[-70.74810752299999,9.163362308000046],[-70.8193966149999,9.109156205000033],[-70.88780954099997,9.015549960000044],[-70.88774164799997,8.9301980460001],[-70.96394354099994,8.93487447700005],[-71.10952764399997,8.7872341260001],[-71.30191763599998,8.760258981999982],[-71.30066655299987,8.625888692000046],[-71.21823858199997,8.624595867000096],[-71.09796162399988,8.7164472770001],[-70.94735759899993,8.722270688000094],[-70.98020962999993,8.638564812000084],[-71.15278664699997,8.490082415000131],[-71.10415652099988,8.43647410900013],[-71.14920053299988,8.356059135000123],[-71.0456235119999,8.351602310000033],[-70.93269362699988,8.52663086500013],[-70.88169863099989,8.531653302000109],[-70.76902053899983,8.68367638300009],[-70.63394952199997,8.811520355000084],[-70.70639062299995,8.873530010000025],[-70.64063258099992,8.976537733000043],[-70.51746353099992,8.936871382000163],[-70.54792051699991,9.085999689000062],[-70.77023356799998,8.954628276000108],[-70.81144755399998,9.069629161000023],[-70.74810752299999,9.163362308000046]]]]},"properties":{"objectid":182,"eco_name":"Cordillera de Merida páramo","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Neotropic","eco_biome_":"NO10","nnh":4,"eco_id":591,"shape_leng":10.1258374139,"shape_area":0.22988818816,"nnh_name":"Nature Imperiled","color":"#F4B158","color_bio":"#D6C39D","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":2815.580654334049,"percentage":0.05765728309184343}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.090312555000025,42.550791398000115],[8.904342431000146,42.55593419900015],[8.754098493000185,42.45843489500015],[8.75956349400019,42.40233632600007],[8.651267461000145,42.34973150200011],[8.719647530000145,42.2598433010001],[8.674654479000026,42.20295063100008],[8.750346585000102,42.15485895800009],[8.783430459999977,41.97839340900015],[8.892194539000059,41.92307284800012],[8.83494848700019,41.83833733900008],[8.86433443400017,41.786037951000026],[9.07678651000009,41.66395385500016],[9.054971434000038,41.55521274300014],[9.130385428000181,41.55496078300007],[9.30623054900019,41.72358036700001],[9.338912427000139,41.874484967000114],[9.333338461999972,41.98387433600004],[9.262516577000099,42.08899144800006],[9.326550461000124,42.176915769000175],[9.23281848800002,42.205243584000186],[9.140127547000077,42.29819905800008],[9.130857497000079,42.43737804600005],[9.090312555000025,42.550791398000115]]]},"properties":{"objectid":185,"eco_name":"Corsican montane broadleaf and mixed forests","biome_num":12,"biome_name":"Mediterranean Forests, Woodlands & Scrub","realm":"Palearctic","eco_biome_":"PA12","nnh":1,"eco_id":788,"shape_leng":3.53167501289,"shape_area":0.395384331148,"nnh_name":"Half Protected","color":"#FF7F7E","color_bio":"#FE0000","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":3636.1659121240273,"percentage":0.1100736423617268}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[23.881416550000154,35.502651351],[23.799901535000117,35.524997840000026],[23.76437953300018,35.6438528920001],[23.713119501000165,35.64009880500004],[23.723550444000182,35.495502426000144],[23.579385565000052,35.45797144800002],[23.51727851200019,35.256850364000115],[23.573749573000043,35.212749483000096],[23.983219458000065,35.22151930100006],[24.040193601000112,35.17232239000015],[24.179185504000145,35.18931183800004],[24.493921443000033,35.1389560450001],[24.59332260000008,35.08347673100019],[24.74179460400012,35.05423327700015],[24.752777579000167,34.94020335100004],[24.921386603000144,34.92520460600008],[25.206108454000173,34.94520818600017],[25.380275518000133,34.99659092900015],[25.504444529000068,34.9793721530001],[25.59694251800005,35.00770667300009],[25.80777755800011,34.995759947000124],[25.978610468000056,35.03381395500014],[26.146720601000027,34.99937958800001],[26.236917590000076,35.0337638310001],[26.276325443000076,35.11063577400017],[26.270160552999982,35.25075454100016],[26.134532475000015,35.19252378300013],[26.061309510000058,35.22874399800003],[25.888551445000076,35.17440831100015],[25.80911044800007,35.105601100000115],[25.708108515000106,35.135560201000146],[25.74821256900009,35.330231411],[25.62292457400008,35.33091436900003],[25.450464569000076,35.277703701000064],[25.349061478000124,35.32165253300002],[25.127817455000127,35.3385623530001],[24.974643539000056,35.413393470000074],[24.797807510000155,35.39080306700009],[24.71765153800004,35.41004054100006],[24.513408529000174,35.349082982000084],[24.291938531000028,35.34104624600019],[24.243881559000158,35.45208131700002],[24.18102047100018,35.43189803000013],[24.16716149700011,35.562406943999974],[24.079095522000046,35.55661287000004],[24.03131649500017,35.49557132500007],[23.881416550000154,35.502651351]]]},"properties":{"objectid":187,"eco_name":"Crete Mediterranean forests","biome_num":12,"biome_name":"Mediterranean Forests, Woodlands & Scrub","realm":"Palearctic","eco_biome_":"PA12","nnh":3,"eco_id":789,"shape_leng":8.03977846644,"shape_area":0.811084337208,"nnh_name":"Nature Could Recover","color":"#F5A27A","color_bio":"#FE0000","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":8211.02592929276,"percentage":0.2485633366041544}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-95.29573927999996,35.31844643800008],[-95.29409554799986,35.38324913900004],[-95.39256822399989,35.49115392400006],[-95.55750877199995,35.38171547000002],[-95.59638403899993,35.45558987900006],[-95.68711627499994,35.48685139000003],[-95.87315326599986,35.51204650500006],[-95.98080165299996,35.62725208900008],[-95.94725120399994,35.75336848200004],[-95.88536044099993,35.80792081100009],[-95.80045590499986,35.78771362100008],[-95.72471773999996,35.89703839300006],[-95.82385428399988,35.91028115600005],[-95.97473006499996,35.84084976100007],[-96.05691022799994,35.74198954700012],[-96.1726138269999,35.745516324000164],[-96.0741631549999,35.874583396000105],[-96.00302932199997,36.08225633500007],[-96.04631784499998,36.193306580000126],[-95.99326278799992,36.25353880900013],[-96.05862330899993,36.307082917000116],[-96.01316814299997,36.38741435100019],[-95.97317873899993,36.57147553700008],[-95.98928286699999,36.623323218000166],[-95.98320179499996,37.01457009100017],[-95.83842408099997,37.24791088699999],[-95.93308360099991,37.278625889000125],[-95.88996451599985,37.36649092900018],[-95.94001651499997,37.44563477500003],[-95.94743750099997,37.57821428500017],[-95.8406819519999,37.72509615700011],[-95.74747680799993,37.80405788000007],[-95.7804572039999,37.850211854000065],[-95.96154120099993,37.7587186830001],[-96.0509399909999,37.69232725600017],[-96.09246135899991,37.60852193800008],[-96.10036768599986,37.43945213100011],[-96.15578824299996,37.432811604000165],[-96.23485158699998,37.27989604600015],[-96.20104398399997,37.19475135900018],[-96.24708061899992,37.10748992100014],[-96.3460396029999,37.04380870400007],[-96.35690984499996,36.87739972800006],[-96.32928332999984,36.83319760699999],[-96.38400694999996,36.70371086800009],[-96.394325601,36.59836360800017],[-96.4798861679999,36.61485017200005],[-96.54589433599995,36.44262701800017],[-96.58104081099998,36.29001997600011],[-96.55020274599997,36.23954695300006],[-96.66358580999997,35.93224669700015],[-96.62179398499995,35.74636338800008],[-96.81498430999994,35.69470241100015],[-96.81833525499991,35.871352822000176],[-97.07844810499995,35.86129420300006],[-97.17563864799996,35.97029058900006],[-97.11435649999999,36.066230364000035],[-97.182911489,36.140652727000145],[-97.27717514399995,35.99359305800016],[-97.21806292199989,35.92803352599998],[-97.3832467709999,35.86351537100012],[-97.48641109999994,35.763334590000056],[-97.47659790499995,35.63255794400004],[-97.51168690099996,35.520646747],[-97.40245217699999,35.49557334100007],[-97.37812733099997,35.41472797300008],[-97.39315591199988,35.314489810000055],[-97.36853120999984,35.19039726500006],[-97.25976915799993,35.067368277000185],[-97.22977797499993,34.95324704100011],[-97.05647449399993,34.92993791400005],[-97.03784607499995,34.89073881600012],[-97.16606579599988,34.767628709],[-97.1611357349999,34.60495907400008],[-97.33446883599999,34.55663818700009],[-97.44851976099994,34.61182260800007],[-97.53676111699997,34.759350438000126],[-97.61272525499999,34.78215725000018],[-97.719308072,34.87539971500007],[-97.67702073599997,34.93048838100003],[-97.50428074399997,35.021469723000166],[-97.61568468899998,35.14668486500011],[-97.71965907199996,35.1667120140001],[-97.79240660499994,34.84512209900009],[-97.77319212499998,34.735877175000155],[-97.85710848399998,34.74295415900019],[-97.89217030899988,34.83966883599999],[-98.05936523899999,34.91423016700003],[-98.03134436799996,34.99557130000005],[-98.14969511599992,35.076082807000034],[-98.11808617499997,35.24141377500018],[-98.0632369949999,35.281303120000075],[-98.12344775399998,35.353266508],[-98.12071527099994,35.41888220400017],[-98.3010451699999,35.523596581],[-98.34386369699996,35.456518272000096],[-98.46471752199994,35.427281564000054],[-98.41065764399997,35.329378560000066],[-98.39510928699997,35.21871140000019],[-98.28705061099998,35.13592635100008],[-98.23793354999998,35.01026899400006],[-98.25279841199995,34.969722144],[-98.10849851099994,34.90425536000009],[-98.13548867499998,34.83744311000004],[-98.090376301,34.76476825300017],[-98.10433033799995,34.660610311000084],[-97.98178387399992,34.537433243],[-98.04250544999991,34.44580098300003],[-97.95597312699988,34.38942606300009],[-97.845603198,34.40761243700007],[-97.74199408699997,34.37544378700011],[-97.6037490519999,34.24594975600007],[-97.51943429399995,34.23090381000003],[-97.51224166599991,34.07602575700008],[-97.57965833699996,33.94165250900005],[-97.69244946499998,33.88447691300013],[-97.70410298899992,33.78777064000013],[-97.83530655699997,33.696114752000085],[-97.88830989699994,33.56023679400005],[-97.97614107099997,33.561547295000025],[-98.0694115309999,33.517565107000166],[-98.44892976099993,33.437187512000094],[-98.51745537199997,33.38128266100006],[-98.62021451499999,33.36961842900007],[-98.56371100999996,33.287291653000125],[-98.44594925499996,33.24326891900006],[-98.47535713699995,33.19302133000002],[-98.64643647799994,33.140101875000084],[-98.81848031099997,33.16240947400013],[-98.87023405099995,33.076743747000194],[-98.85625693099996,32.99376781500018],[-99.01643706899983,32.86414050900004],[-99.07509811399984,32.61540704900011],[-99.14731891499991,32.50342948200006],[-99.08662857599995,32.4000047400001],[-99.19808661699983,32.322031939000055],[-99.33550069399996,32.38821406800008],[-99.39909175399993,32.34501068200018],[-99.37246153099994,32.188672293000025],[-99.31608572699997,32.14327863300008],[-99.31320554599989,32.060018194000065],[-99.24778921299998,32.006410073000154],[-99.17095663199996,31.816977917000145],[-99.04513288199996,31.774968180000144],[-98.92238939299989,31.659705574000157],[-98.99330866499992,31.622215164000067],[-98.98905803599996,31.549881839000136],[-99.09712090799991,31.539054369000098],[-99.18010027499997,31.452679269000043],[-99.18695076799992,31.312590132000025],[-99.11647190799988,31.253506577000053],[-99.00241150399995,31.27688627600014],[-98.93043795199998,31.199114653000038],[-98.79962890899992,31.173322141000085],[-98.68702617599996,31.17979971600016],[-98.51218872599998,31.222737887999983],[-98.412247257,31.182618616000184],[-98.34228981599995,31.098026876000063],[-98.33485010899994,30.980072110000094],[-98.23814033399992,30.901150365000035],[-98.11862778199998,30.89214881800018],[-97.91176970899988,30.845071807000124],[-97.86222466599992,30.7748337970001],[-97.67449953299996,30.667959846000144],[-97.65853727099994,30.801349958000174],[-97.56153862199989,30.982964501000026],[-97.44458788499998,31.007346423000172],[-97.39308324399991,31.188877795000167],[-97.3952652289999,31.349054547000037],[-97.20992771799996,31.54924542900011],[-97.12238442099994,31.622295712000152],[-97.16175427699994,31.770562768000104],[-97.12581066799993,31.844893192000143],[-97.22790412199998,31.998015061000103],[-97.27336457199993,32.22546666900007],[-97.14945484699996,32.354085017000045],[-97.2581488589999,32.43068239300004],[-97.12265802499991,32.57066382300013],[-97.13059157099997,32.66886109400002],[-97.03927876299991,32.77044042700004],[-97.09177077499993,32.91601638700007],[-97.02820914699993,32.98624429800003],[-97.05635978599997,33.06218863300012],[-96.9926635519999,33.13648889500013],[-96.91348449399999,33.50686053800007],[-96.91857307899983,33.65623219200012],[-96.75135777999998,33.73577571000004],[-96.6813799649999,33.790475336999975],[-96.6530773099999,33.90988321700013],[-96.5023903579999,34.0202637970001],[-96.29564795499994,34.03381045700007],[-96.26049723099999,34.08295298300004],[-96.14078652799998,34.049256126000046],[-96.08589741199995,34.09148431400007],[-96.16256452199985,34.15556625200003],[-96.33548733499998,34.19115257500005],[-96.40523222699994,34.183650233000094],[-96.51369387599993,34.233372152000186],[-96.48417374699983,34.2904238750001],[-96.36773116799992,34.24490864800009],[-96.41229924199996,34.3941806900001],[-96.36275157199992,34.4682638160001],[-96.47557793299995,34.497625099000174],[-96.505465486,34.54243638100007],[-96.64412906099994,34.59715969100017],[-96.57756835599992,34.70258958300013],[-96.65863427999989,34.73210288800004],[-96.57448790999996,34.82984073800003],[-96.37609267699997,34.90689703200019],[-96.33462409999987,34.999305271000026],[-96.18015606599994,35.04677481400006],[-96.10164115099997,35.188773762000096],[-95.84772437399994,35.32337631300004],[-95.80155037299983,35.28999791400008],[-95.71685075399989,35.364889401000084],[-95.55667588999995,35.31490154200003],[-95.31813809199997,35.29237006700015],[-95.29573927999996,35.31844643800008]]]},"properties":{"objectid":191,"eco_name":"Cross-Timbers savanna-woodland","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Nearctic","eco_biome_":"NE08","nnh":4,"eco_id":390,"shape_leng":34.4602219189,"shape_area":8.56895647834,"nnh_name":"Nature Imperiled","color":"#FBDA4D","color_bio":"#FEFF73","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":88419.33404565744,"percentage":0.8345148595888833}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-75.78664353499988,20.066414899000108],[-75.92906950399993,20.053149532000077],[-75.89357750799996,19.972416214000134],[-75.70251453999998,19.96054190700005],[-75.58786049799988,19.89502258100009],[-75.49392652099993,19.88552839900018],[-75.48783857699993,19.939244161000033],[-75.65480055599994,19.968462638000062],[-75.78664353499988,20.066414899000108]]],[[[-74.23160553099996,20.12083993800013],[-74.15579255799997,20.168887018000078],[-74.19938650099982,20.22396484000018],[-74.26280263899997,20.123141776000125],[-74.49423251799988,20.139296721],[-74.55725856299995,20.10922832],[-74.76347349799994,20.13509705200005],[-74.95503250699988,20.08790157300018],[-75.13607055199992,20.14984501100008],[-75.22917153599997,20.122085656000138],[-75.4018786389999,19.88959513100008],[-75.22119162899997,19.90640101500003],[-75.21384455499987,19.98483668500012],[-75.13277461999996,20.059705353000084],[-75.07156359299995,20.004570368000145],[-75.12951657399998,19.943463108000174],[-75.07827749699999,19.900426394000135],[-74.97834056799991,19.92640794700003],[-74.97950749699993,19.979101787000047],[-74.87879960099997,19.991224199000158],[-74.83675362799994,20.03392278700005],[-74.64311255299998,20.044077295000022],[-74.36193054699999,20.081139053000186],[-74.27758764599992,20.066654789000097],[-74.23160553099996,20.12083993800013]]],[[[-82.01924150199989,23.188918084000022],[-81.95917560999999,23.12673022900009],[-81.88103464699998,23.138820622000082],[-81.65257263199999,23.1202954420001],[-81.56573460699997,23.087544329000025],[-81.55568654899992,23.005902580000168],[-81.43873552999997,23.06578222600018],[-81.59963957299988,23.158854712],[-81.85809354599996,23.152388911000173],[-82.01924150199989,23.188918084000022]]]]},"properties":{"objectid":192,"eco_name":"Cuban cactus scrub","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Neotropic","eco_biome_":"NO13","nnh":4,"eco_id":600,"shape_leng":17.563619749,"shape_area":0.282603984934,"nnh_name":"Nature Imperiled","color":"#F76A63","color_bio":"#CC6767","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":3272.083094041857,"percentage":0.01240262653088391}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-77.29799656799997,20.732677296000077],[-77.19973752799996,20.668067742],[-77.16172760899991,20.585159320000116],[-77.10182164399993,20.57883668300019],[-77.01151250399988,20.441611685000055],[-76.99105864899997,20.55089946400011],[-77.07907852299996,20.704443861000016],[-77.29799656799997,20.732677296000077]]],[[[-78.62096364399991,21.68928932200015],[-78.74317162499989,21.660465130000148],[-78.63536861499995,21.56891597200007],[-78.49542955699991,21.402941044999977],[-78.43898749699991,21.432381307000185],[-78.6273655739999,21.57804151800019],[-78.62096364399991,21.68928932200015]]],[[[-78.64588957999996,22.173262255999987],[-78.54814150199991,22.128577827000186],[-78.44052859399994,22.17138957100002],[-78.40589859299985,22.13435647800003],[-78.30252055799991,22.14656673200011],[-78.42232561399993,22.23482817300004],[-78.49042555999995,22.239251806000027],[-78.61266354799983,22.154428287000144],[-78.64588957999996,22.173262255999987]]],[[[-82.13755055599995,22.743032350000078],[-82.16458152399997,22.76802282700004],[-82.37238365599995,22.740424405000056],[-82.7353825919999,22.749697807000132],[-82.73931856599995,22.724539190000087],[-82.07762162499984,22.685896269000125],[-81.86815652299998,22.69465083199998],[-81.76068862199998,22.670538946000192],[-81.67316462099996,22.619836646000067],[-81.520057593,22.464895992000038],[-81.74614752899987,22.3914116790001],[-81.7302856149999,22.328204921000122],[-81.65583050999987,22.272943033000104],[-81.5280074929999,22.297868634000167],[-81.44436649199992,22.282158601000162],[-81.37796052899995,22.195430042000112],[-81.33059657399991,22.28308161600006],[-81.38283561199995,22.34456421700014],[-81.44409961299988,22.305745276000152],[-81.54817150199995,22.37086092900006],[-81.46073165599995,22.415381576000186],[-81.38527658999999,22.363674285000172],[-81.27716059999995,22.36829388800004],[-81.18540960499996,22.31946645200003],[-81.03160050799994,22.156118414000105],[-80.86289257899995,22.14163716700017],[-80.67723861999991,22.10358114700017],[-80.91010264199991,22.2684171410001],[-81.02645150499995,22.44016418100017],[-81.2180256019999,22.538786995],[-81.33339663199996,22.65263402700009],[-81.44839449999995,22.675358707999976],[-81.50393651099984,22.6418426620001],[-81.6975475779999,22.709932047000052],[-82.13755055599995,22.743032350000078]]]]},"properties":{"objectid":196,"eco_name":"Cuban wetlands","biome_num":9,"biome_name":"Flooded Grasslands & Savannas","realm":"Neotropic","eco_biome_":"NO09","nnh":1,"eco_id":579,"shape_leng":23.6011696193,"shape_area":0.494292598757,"nnh_name":"Half Protected","color":"#7F99A6","color_bio":"#BEE7FF","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":5673.758121018233,"percentage":0.49065548986648705}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[34.597919492000074,35.697474441],[34.35860861200007,35.62019832300018],[34.29720647800019,35.57490050600006],[34.18795054900011,35.56145777800015],[34.129329530000064,35.504917315000114],[33.98458445500006,35.44161785199998],[33.77327349100011,35.40681367600013],[33.68273150200014,35.36378048200004],[33.51283250400019,35.333016383000086],[33.367515449000166,35.32865946900017],[33.125698548,35.36108771200003],[33.01624245900007,35.35964166600007],[32.9459915490001,35.29155848400006],[32.91494347100013,35.18011521300019],[32.82374953800007,35.140546092000136],[32.65591047600003,35.1920857450001],[32.54950758000018,35.15517871600008],[32.447837609000146,35.04737436500017],[32.27495146800004,35.04451345399997],[32.31819152700007,34.974252318000026],[32.318126483000015,34.89077040700016],[32.39144852300012,34.83595393300004],[32.42447255100012,34.75176626500013],[32.50117450800019,34.70076137900003],[32.71277951000013,34.63915221100007],[32.88683660300018,34.66239455800019],[32.949832472000026,34.57386875200012],[33.02133949400019,34.646635742000115],[33.15434655100012,34.708569289000025],[33.272132575000114,34.70136454100003],[33.611698561000026,34.81376452100011],[33.695812468000156,34.96959851800011],[33.91431057900013,34.9654176250001],[34.088726585000074,34.984331054000165],[33.92148548800003,35.15755968000008],[33.91647746900003,35.24603167400011],[33.96398559300013,35.30935410200004],[34.05171260300017,35.316399930000046],[34.132995607000055,35.402605625000035],[34.30229546600009,35.48297969500004],[34.45374254300003,35.60194572300003],[34.56991957700018,35.64432982200009],[34.597919492000074,35.697474441]]]},"properties":{"objectid":197,"eco_name":"Cyprus Mediterranean forests","biome_num":12,"biome_name":"Mediterranean Forests, Woodlands & Scrub","realm":"Palearctic","eco_biome_":"PA12","nnh":4,"eco_id":790,"shape_leng":6.62806285944,"shape_area":0.916110729503,"nnh_name":"Nature Imperiled","color":"#A80000","color_bio":"#FE0000","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":9293.961718824372,"percentage":0.2813458579957555}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[120.05098759200007,51.549547168],[119.99872558800007,51.739084462],[119.92221859300003,51.882527157000084],[119.76921868500028,52.00684637100011],[119.65881359700006,52.032325010000136],[119.52279659900012,51.90621257100014],[119.32170066000003,51.782961211000156],[118.97820255600004,51.704106948000174],[118.42870359100004,51.776369179000085],[118.2702026400002,51.75482802300013],[118.12609861300018,51.654308217000164],[117.82379957500018,51.50917573100003],[117.6829986890001,51.51068682099998],[117.35340163700016,51.57817773700009],[117.21810162600002,51.54434435300004],[116.98950164500002,51.36217424800003],[116.79620355900022,51.33736264100014],[116.53040368600011,51.532655957000145],[116.30419958800007,51.58063380300007],[116.11289957900021,51.46722497600007],[115.95379664000006,51.4776431790001],[115.90149658200016,51.58057697300018],[116.06809964800004,51.77751817100011],[116.80629754900019,52.37226717500016],[117.27210254000022,52.67620521000009],[117.352302602,52.75798978700004],[117.34950254300009,52.84186145700011],[117.164100544,52.8685311640001],[116.944900533,52.83201925900005],[116.77320059900012,52.886540521000086],[116.6557005650003,52.98849363300019],[116.674201605,53.07660336100008],[116.62059765800018,53.160967049000135],[116.41999859800023,53.18140766100015],[116.10459864500012,53.01038297300016],[115.83699766900008,52.597364694000134],[115.66549655400001,52.40040069800011],[115.4506985500002,52.24774880600006],[115.19850166800006,52.17231536600008],[114.90670062800018,52.13279486000005],[114.5663985440001,52.121724378000124],[114.45587963000025,52.04955602400014],[114.32927668200011,51.89812135200009],[114.37757857300005,51.438602286000105],[114.34197962400003,51.274331735000146],[114.1647796530001,51.14158971400013],[113.9581836770003,51.099497808000194],[113.76187866600003,51.093057824000084],[113.58377864600004,51.00502839500018],[113.33988152400002,50.69285161900018],[113.14517963700007,50.61798747700004],[112.84137755600011,50.55211058000003],[112.75868253700014,50.45557033300008],[112.75917857800005,50.312685036000175],[112.70427660900009,50.18095437500017],[112.56668062800009,50.02265425400009],[112.08306157800018,49.79468040100011],[111.94996667800001,49.665040690000126],[111.92716253700013,49.55159045700009],[111.9542005450001,49.403730667000104],[111.8642115940001,49.30956769599999],[111.7068405240002,49.06352095200015],[111.5593265720002,48.91365118200008],[111.43853764700015,48.83614757900011],[111.3261255970001,48.837001359000055],[111.10710864600014,48.733855335000044],[110.95653563399998,48.70947908400012],[110.90892759700006,48.761355857000126],[110.94441255200002,48.851459639000154],[111.09839666300007,48.94849458600015],[111.12416062200009,49.01591626800018],[111.03511061200004,49.11980727600019],[110.93617263800002,49.17422410000012],[110.72344965900004,49.23358976700018],[110.54535668000005,49.23358976700018],[110.14958953000018,49.11485943800011],[110.01943165000006,48.990067987000145],[110.02853355800016,48.88533409500019],[109.86963664600012,48.567978980000134],[109.74236264300009,48.468623923000166],[109.645309592,48.35595605700013],[109.51033764900006,48.26206415600012],[109.40280151900009,48.235101753000095],[109.26674663500017,48.26715314500012],[109.22053552600016,48.38877422500019],[109.143440624,48.482475018],[109.0676955450001,48.482711890000076],[108.7409666120002,48.39178031100005],[108.5113906420001,48.29699523500011],[108.4487766520001,48.244180863000054],[108.11557756000019,48.108025731],[107.76438855700002,48.17318144900014],[107.6575466170001,48.17455038200018],[107.5114825660001,48.124062826000056],[107.37435161200011,48.12014881300013],[107.1012415460001,48.2327179400001],[107.07791856500012,48.31832349100017],[107.1231766520001,48.38847314700013],[107.09095762200008,48.546188546],[106.85600265000011,48.61005529600004],[106.80988357400014,48.71417110600004],[106.82305858500018,48.94472541100015],[106.74829066700005,49.006029143000035],[106.54234361800002,49.03946170400002],[106.33437368000011,49.130598641],[106.29631062000004,49.198566153000115],[106.37093353000012,49.26309591100011],[106.37037663700016,49.39452163800007],[106.4689865430002,49.52288394700008],[106.58021557100017,49.58399975599997],[107.02255257500013,49.652142617000095],[107.120620674,49.69996808100018],[107.31968651600005,49.74919768000018],[107.57870459100019,49.75935302600004],[107.84230756700015,49.75019663500012],[108.06649766100014,49.83362892600019],[108.16069768000006,50.04465356500015],[108.1268996670002,50.15559408799999],[108.04499858300011,50.22250883300012],[107.61289957100013,50.40893945900007],[107.39050253400012,50.43164871700003],[107.27629860000013,50.50034092800013],[107.3546985640001,50.594050103000086],[107.4817965470001,50.68379245799997],[108.02110261500007,50.85985433400003],[108.25810260400004,50.98734727300007],[108.24520168100014,51.081396753000035],[108.15090158200007,51.11955922300018],[107.94219956900002,51.12668920500016],[107.53070059400017,50.99504538000008],[107.36710361300004,51.008637307000186],[107.2925036690001,51.062948184000106],[107.3769986170002,51.159709712000165],[107.87149855100012,51.329672748000064],[108.14279963500002,51.45425465200003],[108.18669867900013,51.55445326300014],[107.55329854000013,51.54927626500006],[107.38425466300015,51.58024471500005],[107.03359958800013,51.4466026450001],[106.92320254700013,51.266309583000066],[106.72859956500008,51.14060953400008],[106.61009957100009,51.01253656800009],[106.53878768000015,51.00106945400006],[106.39768957100011,50.82186754900016],[106.34946462700003,50.51484815800018],[106.11072556000005,49.903469793000056],[105.85608652700006,49.65070042700012],[105.57865156600019,49.4696343870001],[105.24860356700009,49.22117264800016],[104.97011567200019,49.07612079600011],[104.88766456700017,49.00306831900019],[104.88481857600016,48.82992535700009],[104.79737856200006,48.77810591700012],[104.71411156200014,48.558594769000024],[104.54001658300018,48.41477539200008],[104.45675662400004,48.26338413899998],[104.44175754400015,48.135522061000074],[104.5708995380001,48.101601673000175],[104.83618157700016,47.96476676800006],[105.00984153500008,47.903407213000094],[105.26079554799998,47.88599716200008],[105.42986255900013,47.91407720800015],[105.63063864500009,47.99639504099997],[105.85774966400004,47.99848884100004],[106.19399256000014,48.03983727200006],[106.47216060200014,48.11144672100011],[106.58689159,48.07938057700011],[106.85109756000014,47.95496362900013],[106.72402958400005,47.881991115],[106.60842855500005,47.86236472100006],[106.43975063200014,47.77203228000002],[106.36645457700018,47.623608221000154],[105.97811161400006,47.39311158300006],[105.87823453200019,47.26051959800009],[105.96932251800007,47.19468829800019],[106.15043667100014,47.22976572400012],[106.30990556400013,47.34913123400008],[106.35265360500011,47.421416767000096],[106.45053059800017,47.384436648000076],[106.431686571,47.25838288300008],[106.49675763200014,47.22124652499997],[106.77008864500004,47.17808726800007],[107.04550960200004,47.21592552599998],[107.19546453200007,47.26808376200012],[107.39038854000006,47.40099677500007],[107.6504436240001,47.52087827399998],[107.90795865600012,47.466099184000086],[108.05001867200008,47.5182805550001],[108.31219454500018,47.71045060500012],[108.39321167400004,47.82345039500012],[108.55238368099998,47.858602923000035],[108.64154064400014,47.92560517500016],[108.70602463699998,47.88262109900012],[108.61054956300018,47.77501104100003],[108.53143361700012,47.632081319000065],[108.59133153500005,47.54119164900004],[108.80659456700005,47.46418693700008],[109.01900456600009,47.425746691000086],[109.34235358100011,47.422152865999976],[109.44039167300008,47.45152590400011],[109.50111353200009,47.536777571000016],[109.48968464000018,47.639024385000084],[109.54216759100007,47.69724458100012],[109.76854653500016,47.69617270400016],[109.90626556300009,47.78489112500006],[110.05099454400016,47.933432531000165],[110.15971352800011,47.89520518600011],[110.08770761600005,47.784914427],[110.10478959900007,47.73729884700009],[110.23753363200007,47.73631481100017],[110.5955356130001,47.83879380400015],[110.68493665800014,47.82723868000011],[110.89675154200006,47.855135665000034],[111.098579556,47.92124122100006],[111.20705462700016,47.840292823000084],[111.29129057500018,47.83601956100006],[111.49336267000018,47.911528271],[111.54472362000001,47.984885850000126],[111.45819052800005,48.05723625899998],[111.64504963700006,48.14594412000008],[111.7590336290001,48.097218775000044],[112.09370458300032,48.21443365599998],[112.22186254200028,48.21380367300003],[112.60115858100005,48.34638492900012],[112.80191756700003,48.43888861800019],[112.87098662900007,48.51117716900012],[112.87509158200021,48.62859858000013],[112.9846955270001,48.714117294000175],[113.00813267,48.848644661000094],[113.1881566720001,48.919152225],[113.27494859700016,48.98045092700005],[113.37999764800031,48.96984178400004],[113.53663664300029,48.87979885400006],[113.75972753500025,48.83591037100001],[114.09668758600014,48.8790897450001],[114.5170975310001,49.00214932700004],[114.85176060600008,49.14832569500004],[115.01708962300006,49.320103749],[115.05351268000004,49.41327162000016],[115.02204852400007,49.483901560000106],[114.86473059500008,49.47359047800012],[114.4653855470001,49.241642765000165],[114.31904556400002,49.18321603800018],[114.26454961400009,49.25342202100012],[114.44129964500019,49.342161062000116],[114.42111954200016,49.400041624000096],[114.2575606160002,49.42968590100003],[114.04629558400006,49.378805234000026],[113.78581268800019,49.37370819900008],[113.69084958000008,49.33442490100015],[113.45310963700001,49.17285902300006],[113.27495563800028,49.16093375400004],[113.2156675870001,49.26597593200012],[113.26976053400017,49.359815027000195],[113.37617466200004,49.426282848000085],[113.61885858700009,49.500895701000104],[114.11454757800004,49.58577772500013],[114.5356066170001,49.6943572350001],[114.82467666500031,49.857235048000064],[115.17452959200023,50.00895503900017],[115.30193368200003,50.09534731500008],[115.79861458700009,50.131690577000086],[115.9379276860002,50.21043470200004],[116.15598256200019,50.2770637910001],[116.37403861100006,50.264947582000104],[116.60420952800007,50.174091440000154],[116.67083761200001,50.06506282800012],[116.71323361300017,49.78642925600019],[116.79197656500003,49.628945197000064],[116.90100852900002,49.47145728300012],[117.08271762900029,49.33820078100007],[117.28865864300008,49.25945682300011],[117.43402867200007,49.23522977100015],[117.51277162300005,49.29580042000009],[117.7974545830001,49.44723006300018],[117.88581861800003,49.540382176000094],[118.17221064800015,49.666772894000076],[118.23719755500008,49.72870845300014],[118.58332858200004,49.92483207900011],[118.91137665900021,49.98288480600007],[119.17414865300032,49.99928081400009],[119.31387363800002,50.08649401400004],[119.35942056500005,50.33983167300016],[119.22747767400006,50.350115765000055],[119.20110368100006,50.407329631000096],[119.26470958500033,50.47622334300007],[119.29193166000005,50.59511426900008],[119.50221265600021,50.740120188000105],[119.51914963200022,50.89762486600006],[119.74664253100002,51.07151650000014],[119.75861356600024,51.21040379800013],[119.92082267100011,51.33429184700009],[120.05098759200007,51.549547168]],[[112.23657965500001,48.87903593300007],[112.09956353400003,48.88908415900016],[112.05577060400003,48.997148181000114],[112.18814868300012,49.15051991000013],[112.39019060400028,49.50870478500019],[112.45906067900012,49.56497535000011],[112.61347159600018,49.622040353000045],[112.83501468500003,49.65224940300004],[113.03976463100003,49.63882142600005],[113.0892406590001,49.596237838000036],[112.8609776300002,49.38319249000011],[112.575691677,49.157477895],[112.39236453400008,48.96099166800019],[112.23657965500001,48.87903593300007]]]},"properties":{"objectid":200,"eco_name":"Daurian forest steppe","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Palearctic","eco_biome_":"PA08","nnh":2,"eco_id":726,"shape_leng":65.6698826658,"shape_area":26.2527953299,"nnh_name":"Nature Could Reach Half Protected","color":"#7FFC4A","color_bio":"#FEFF73","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":209403.0150896768,"percentage":1.9763768820608187}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-62.14647624799983,65.63833156100009],[-62.17702026799998,65.70496718900012],[-62.44782275099993,65.73829268600014],[-62.46882114899989,65.64806498900003],[-62.328633736999905,65.59664500700012],[-62.14647624799983,65.63833156100009]]],[[[-63.88989686199989,67.4839908960002],[-63.766656875999956,67.54901239300011],[-63.95432375799993,67.62980446900008],[-64.01847219399986,67.5004222660001],[-63.88989686199989,67.4839908960002]]],[[[-66.23393221399988,68.23089611400013],[-66.39761543199995,68.24117854700012],[-66.48321578699989,68.17230620700013],[-66.30994809999993,68.14635642400003],[-66.23393221399988,68.23089611400013]]],[[[-67.71260005499988,69.6527888440001],[-67.89196376999996,69.7111962800002],[-68.21797628199994,69.59791852400014],[-67.91961494799995,69.5196881230001],[-67.71260005499988,69.6527888440001]]],[[[-63.600417142999845,65.64808386400011],[-63.44739909599997,65.67106177100015],[-63.031563827999946,65.62060224700008],[-62.859717296999975,65.638567862],[-62.66307790899998,65.57268751700008],[-62.58299746999995,65.7622583960001],[-62.28421341799992,65.7943202690002],[-62.38074289599996,65.94177650900002],[-62.19731265399997,65.9980390550001],[-62.00115912699994,66.00923028700004],[-62.177889563999884,66.13647498800015],[-62.44497655299983,66.1708446020001],[-62.4967124019999,66.21289393700005],[-62.31345581099998,66.29438078100014],[-62.58792236499988,66.42710349000015],[-62.20833038899997,66.4032188160001],[-62.17640040499998,66.30074749600016],[-61.89291367199996,66.2716690640001],[-61.49333122599995,66.35310763600006],[-61.579474447999985,66.53092995300005],[-61.42635576199996,66.5300035480002],[-61.27931780299991,66.59463948600012],[-61.275521185999935,66.66958940400008],[-61.82816876499999,66.96805931500006],[-61.973361599999976,66.9517078180001],[-62.019149154999866,67.05083676900017],[-62.271299527999986,67.04735323800014],[-62.2703117019999,66.94368727200009],[-62.970532652999964,66.94601298100008],[-63.23729470899997,66.95734037200003],[-63.28696129299982,67.10782085200015],[-63.00985380899988,67.16717362100019],[-62.95687140699988,67.21863097600016],[-63.0781855059999,67.32474965500018],[-63.28854340099997,67.3013788720001],[-63.410655270999825,67.1969564210001],[-63.55384038799997,67.2315947730001],[-64.01209602399996,67.2044578230001],[-63.946111780999956,67.40910058800017],[-64.11818463299988,67.4770200850001],[-64.06281177499989,67.60666817700019],[-64.24615346699994,67.71284932100014],[-64.50156035899994,67.81015469500005],[-64.74549317799989,67.81307117700015],[-65.03031071099997,67.77132083400011],[-65.0363409869999,67.84944951200015],[-64.90896791199998,67.92621103500016],[-64.71100857499994,67.98356148800008],[-65.06642795099992,68.04046004999998],[-65.20746366999998,67.94066808000002],[-65.4086839339999,67.91794620400015],[-65.4643132889999,67.99716550000016],[-65.73506137599998,67.96216450200018],[-65.76286942699983,67.86550843200013],[-65.91947831599998,67.8685852110001],[-65.97950660399994,67.94091773000008],[-66.1376416629999,67.97403480700007],[-66.2892612789999,68.12517014800017],[-66.50091210499994,68.14931751600005],[-66.84047012799994,68.10271825300009],[-66.7844374579999,68.2434155570001],[-67.03876993699993,68.32845384600012],[-66.7932664469999,68.47691968300012],[-67.17080534899992,68.41048276500004],[-67.2235815169999,68.48210240000003],[-67.65914172499987,68.567525396],[-67.8553802319999,68.54004501100013],[-68.11408667499995,68.57239901600002],[-68.04388600799984,68.68184404300013],[-68.72781911099992,68.76459559600016],[-68.48955975699994,68.79210281800005],[-68.40857829099991,68.84445152100005],[-67.86266331799999,68.77715696600012],[-68.03886554799993,68.94491275800004],[-67.77681572799997,69.0435027530001],[-68.04932416699995,69.11813737000017],[-68.19039127399998,69.31396116800005],[-67.70156885399996,69.18148071100018],[-67.35632485899993,69.19411652500008],[-66.97508739899996,69.18249039700004],[-66.75961982899997,69.13962459400005],[-66.64723974899994,69.24835312100004],[-66.84274155999998,69.36689860300004],[-67.18164744499995,69.45862226200006],[-67.76516657799993,69.48666740700014],[-67.97996305999993,69.46180128400005],[-68.55185649499992,69.58193551900013],[-68.29080713799993,69.62764249700007],[-68.08711175899992,69.75946785600007],[-67.7673226899999,69.77841067800011],[-67.40277030799996,69.71399915600011],[-67.11057783099989,69.73197153100006],[-67.21038607199995,69.94168698400011],[-67.41253594299991,70.08497413800018],[-67.77566379999996,70.25034409900007],[-68.13641947799982,70.29798713700018],[-68.34911721699996,70.1928618720001],[-68.21152739599995,70.10372420500016],[-68.51676157899988,70.04878408800016],[-68.65703748699991,69.94935140900003],[-68.92102488699999,69.95236529200008],[-68.63367707799983,70.16600295400019],[-68.67023166999996,70.20804081900002],[-69.19012352999982,70.19494853000009],[-69.63033736499995,70.14776315900014],[-69.76690752499997,70.09285173400019],[-69.76114160199995,69.96557805600014],[-70.05319247599994,69.95942748500005],[-70.32164047799995,69.84421480600008],[-70.41327922099998,69.83931817500019],[-70.33368742699992,69.70437697400013],[-70.05893225099993,69.44614895100017],[-69.8518929249999,69.13353141700014],[-69.38520121999994,68.86286668200006],[-69.35138840499991,68.77274305100008],[-69.39438985999993,68.58266696200013],[-69.52893470199996,68.37009445900014],[-69.34772166999994,68.17329507600016],[-69.3848400899999,68.06354189100011],[-69.11473466899997,67.89548258800005],[-69.15764855599991,67.79976757700018],[-69.02778605399988,67.73090086800005],[-68.72473329299999,67.34170419300006],[-68.52037044599996,67.28068309200017],[-68.01283068599997,67.40834022200016],[-67.72442905999998,67.42783435799998],[-67.51437067699999,67.34792594200013],[-67.34063466299989,67.17017318000012],[-66.72766272899992,67.09355147100018],[-66.54403640399988,66.91513983800013],[-66.16397057899985,66.79728882900014],[-65.96572786099995,66.67547390200008],[-65.85141575899996,66.61978980000009],[-65.83165031899995,66.47396761500016],[-65.56852541099994,66.34845709100011],[-65.57233432999993,66.24447707000013],[-65.50956116599997,66.234763208],[-65.05582349599996,66.16739816800009],[-64.83562479899985,66.16710645600011],[-64.75734968999984,66.1721207870001],[-64.53219101899992,66.01758677100014],[-64.23479868999993,65.91360640500017],[-64.10037489699988,65.69984095500013],[-63.93991618199988,65.64605632500013],[-63.600417142999845,65.64808386400011]]],[[[-71.27007969499988,70.3407523670001],[-71.15901039299996,70.5465128460001],[-71.48888713899998,70.56758724400015],[-71.68293894999994,70.36491032600009],[-71.39875848499986,70.37073701499997],[-71.27007969499988,70.3407523670001]]],[[[-70.43049382099997,69.85689659000008],[-70.25541752599997,69.890838648],[-70.13191957999993,69.96969634200019],[-69.80355105899991,70.00339423999998],[-69.90015567299992,70.08310191200013],[-69.78567431599987,70.15817910700002],[-69.36958840599988,70.25840253299998],[-68.87382067999994,70.2961023960001],[-68.42498952999995,70.37547165200016],[-68.27169014599997,70.51067286900002],[-68.34831333699998,70.57852588300005],[-69.43357204599994,70.79007618400004],[-69.7631463429999,70.71551219200006],[-70.00699379199989,70.62347282400009],[-70.15858912099992,70.653899211],[-69.91731280199997,70.74505874700003],[-69.76242948499993,70.86023256800019],[-70.06951462399996,70.82431289300013],[-70.5867074229999,70.72561468400016],[-70.82086719799992,70.64503606500017],[-70.99256275199991,70.62995325300011],[-71.1997752929999,70.29926628900017],[-71.05181517499983,70.1309582500001],[-70.5998076869999,70.00857376800008],[-70.43049382099997,69.85689659000008]]],[[[-71.56462416799997,71.02115945600013],[-71.85229385399998,71.07431771],[-71.98507101699988,71.055984185],[-72.04589583699988,70.94990758699998],[-72.2130812929999,70.88591158700007],[-72.08690000399997,70.81289384400003],[-71.58476911299982,70.90789985200013],[-71.40284907299991,70.91878675400017],[-71.37381666499994,71.01876793800011],[-71.56462416799997,71.02115945600013]]],[[[-71.74286099699992,70.36778063500014],[-71.73253879099985,70.49117060600014],[-71.5798398039999,70.54333276600005],[-71.59305595299998,70.60767223300007],[-71.1552981339999,70.59104179000008],[-71.06170279999992,70.6749449720001],[-70.73157177999997,70.76913081600003],[-70.68326092399997,70.84273260600014],[-70.50186030499998,70.9236020400001],[-70.59945562899998,71.06279967300014],[-70.76423023799987,71.12092641500004],[-71.20621075999998,71.00535612400012],[-71.27154510399998,70.87808288300016],[-71.66044158099993,70.85490885100018],[-71.9176490449999,70.79064158400007],[-72.1671996639999,70.77816103500015],[-72.30943023099985,70.67120373900008],[-72.53725934399989,70.61277323900003],[-72.23003303399997,70.46225214100008],[-71.74286099699992,70.36778063500014]]],[[[-73.16244473699993,71.42821766100008],[-73.04559470399988,71.53016030200013],[-73.35839683199998,71.52285328200003],[-73.24074949999988,71.35654831500017],[-73.07025689799997,71.30312635400003],[-72.98581136899992,71.42226062000009],[-72.82505379299988,71.46351847200015],[-72.97936251099998,71.52377763400011],[-73.16244473699993,71.42821766100008]]],[[[-72.6014894889999,70.64033278100004],[-72.36905658899997,70.68155506500017],[-72.16554265599996,70.83093268100004],[-72.29892435599993,70.93966981000017],[-72.15575489599996,70.96469915600005],[-72.08185193399993,71.07095366800002],[-71.85920117099988,71.11386085200013],[-71.46402082799983,71.06561804300009],[-71.32593056299999,71.17737768400019],[-71.13288897099994,71.2509649590001],[-71.29711688599997,71.38563732700004],[-71.54428566599995,71.49802735000009],[-72.5767720149999,71.652073352],[-72.77745678699995,71.41924449200008],[-72.97894871799991,71.40832455300011],[-73.03292048899988,71.28340526600005],[-73.4004032339999,71.3453193630001],[-73.59505223199989,71.2317319890002],[-73.67962786699997,71.07919688400011],[-73.79362798299991,71.05870151000005],[-73.85692453999997,70.96066051500009],[-73.55751970599988,70.87261787799997],[-73.1617995549999,70.83420140800018],[-73.01082450699988,70.7558380960001],[-72.6014894889999,70.64033278100004]]],[[[-72.74554458099982,71.53107493300018],[-72.6511183099999,71.59549309900007],[-72.75050109099993,71.66062442300012],[-73.02030596999987,71.58167842400019],[-72.74554458099982,71.53107493300018]]],[[[-74.81606141999993,71.522801856],[-74.60089912299998,71.65103474700015],[-75.08241047099989,71.58010787600011],[-74.81606141999993,71.522801856]]],[[[-73.83477262799994,71.07592813200006],[-73.70301118599997,71.09981465300012],[-73.58952763799994,71.3056518750002],[-73.3653034699999,71.39869134400004],[-73.62711464099993,71.44866917500013],[-73.54742277799988,71.55041883600012],[-73.73298199599998,71.58895320300019],[-73.78008192399989,71.66203780300015],[-73.58514724399998,71.77601282000006],[-74.28390876199995,71.72288172800012],[-74.7382843829999,71.52746213600017],[-74.61985705199993,71.37369112900012],[-74.27838779599995,71.22871839400017],[-73.83477262799994,71.07592813200006]]],[[[-75.22553285499998,71.57486199800019],[-74.92359796699992,71.6475560040002],[-74.86827636399994,71.70845301700007],[-74.52322867999999,71.79165738000012],[-74.23419171899997,71.81912993700007],[-74.10202834099988,71.9566619200001],[-74.20690966199993,72.06293878300005],[-75.20690197199997,72.13217120500013],[-74.92303221999993,72.24819179900015],[-75.19016027299989,72.45913828700014],[-75.16043045799995,72.49181047200011],[-75.8047977839999,72.58946258300006],[-76.3925697379999,72.61449737300018],[-76.6565758879999,72.64367403500006],[-76.74107444699996,72.72407906200004],[-77.36683390299999,72.75874163300006],[-77.27820024999994,72.49760710200013],[-77.49553486199994,72.20001342900014],[-77.50449492399991,72.18583835600015],[-77.55667213099991,72.10280122900014],[-77.41750688699994,71.8973121320002],[-77.11730378199991,71.79219395899997],[-76.65729143199997,71.76197684800013],[-76.27095974699995,71.70474099100011],[-76.04553350899994,71.6279970540001],[-75.7612541659999,71.57521758900003],[-75.22553285499998,71.57486199800019]]],[[[-77.68703149699996,72.8983414760001],[-76.97182585999997,72.83920295700017],[-76.30909154899996,72.82062535600005],[-76.11677245599992,72.84899138500003],[-76.05733689399989,72.91564169900005],[-76.32640077099995,72.97102280500019],[-76.28557211199995,73.10185138600013],[-76.51981265299992,73.1251598410002],[-76.69398716299997,73.30556689300005],[-77.04247821399997,73.37078932200006],[-77.18834726799986,73.51049843600003],[-77.75227513199997,73.59215087000013],[-78.13682026299989,73.67196167800012],[-78.80334591499997,73.65842126700005],[-78.96227445399995,73.63529066000012],[-79.46812402099994,73.63687568400019],[-79.97182294199996,73.71725337100008],[-80.16170093199997,73.70862810500017],[-80.51472549699992,73.54277602300004],[-80.35051862399985,73.42022606299997],[-79.437194719,73.12636538400017],[-79.23936006299994,73.0145580750002],[-79.00483461799996,72.96715200200009],[-78.29354534299989,72.96230140400019],[-77.88160688699998,72.9361024530001],[-77.68703149699996,72.8983414760001]]]]},"properties":{"objectid":201,"eco_name":"Davis Highlands tundra","biome_num":11,"biome_name":"Tundra","realm":"Nearctic","eco_biome_":"NE11","nnh":2,"eco_id":415,"shape_leng":155.688051038,"shape_area":22.4957385794,"nnh_name":"Nature Could Reach Half Protected","color":"#4CB9BB","color_bio":"#9ED7C2","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":98049.67910575139,"percentage":1.147430015913212}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[80.25354749600018,9.819979816],[80.02261365800018,9.813389294000046],[79.91059153300017,9.765512701000091],[79.94888258200018,9.685788228999968],[79.99858056200014,9.680898729000091],[80.11856851200008,9.605373926000084],[80.09372756800013,9.572247302999983],[80.1842725750002,9.481943864000073],[80.14872760500015,9.43227622600017],[80.0556105280001,9.390539377000152],[80.11789661800009,9.304896443000075],[80.07810956800006,9.06162343800014],[79.9453425690001,8.944481815000188],[79.91889950800004,8.818990978000102],[80.04799657500007,8.897365125000135],[80.15014649400018,9.06652534300008],[80.1796645390001,9.367967750000162],[80.21881858800009,9.41012872300007],[80.3782506010001,9.399373735000154],[80.43430357300002,9.461699053000189],[80.49413259200003,9.412728789000084],[80.62698357800008,9.45178594400005],[80.35376756500011,9.668039716000067],[80.25354749600018,9.819979816]]],[[[81.15148150500005,15.998774682000146],[80.91430650200016,16.14681535300008],[80.73081960100006,16.310174958000175],[80.66589354600006,16.42518674000013],[80.54811858600004,16.496902304000173],[80.27124756100017,16.566668907000178],[80.21494262900012,16.599455727000077],[80.18125156900015,16.688260147000108],[80.18250265200004,16.82003288599998],[80.10553750200012,16.86838909100004],[79.93448649500016,16.62493419800012],[79.85217251800015,16.56424888400005],[79.82792652200004,16.500762841000096],[79.73922754600005,16.408667685000182],[79.70372063100007,16.329542519000086],[79.42569759600008,16.13083609300014],[79.3258436480001,16.022882042000106],[79.2346195400001,15.81412621700008],[79.25084656900009,15.740440067000065],[79.34155250800012,15.630447872000161],[79.36427249500014,15.540634774000011],[79.21441663900015,15.381982949000133],[79.14196061800004,15.191155344000038],[79.12761649900011,15.014277741000058],[79.23320752500007,14.794009875000086],[79.35671252100008,14.620042468000065],[79.36945351700018,14.523938584000064],[79.25570656400015,14.436884305000035],[78.98381757400006,14.408495134000077],[78.86506662500005,14.48715108100015],[78.7072065550002,14.562245055000119],[78.62174953100003,14.650791313000013],[78.54228959200009,14.697928286000092],[78.47743964500012,14.77579214300016],[78.3955685680001,14.827968820000137],[78.10218049900016,14.896205223000152],[77.90664662300014,14.95531038100006],[77.7501065350001,15.041844982000043],[77.76880656100013,15.154897578000146],[77.83988962600012,15.27297981800018],[77.7901916450001,15.410481252000068],[77.77393360300016,15.581530080000107],[77.78220352400007,15.759039846000064],[77.86142759700004,15.934677598],[78.13760359500009,16.13256611800017],[78.18966661300016,16.216669631000116],[78.19159663000005,16.339073078000013],[77.97344251300007,16.39641837199997],[77.79174062100003,16.407918846000143],[77.72802759600017,16.429016264000097],[77.54386159200016,16.580547997999986],[77.39909355200012,16.752217254000072],[77.36450160500016,16.848061132000055],[77.32173964900016,17.167890416999967],[77.24204250200006,17.407844692000026],[77.25256363500012,17.554186686000037],[77.3028335960002,17.755325205000076],[77.27179758800014,17.925314896000145],[77.30834151200008,18.11054389200018],[77.29519650900005,18.18146870700008],[77.19699849000011,18.347529631999976],[77.10188249700002,18.42810369300014],[76.88889364300013,18.64264085200017],[76.7024304950001,19.223676728000157],[76.57618763400018,19.40422526900005],[76.52111065100007,19.448973401000103],[76.34420756700001,19.53283668900019],[76.13641364900008,19.670908763],[75.97329762200013,19.715258083000094],[75.8385466260001,19.712898074000123],[75.57592751800019,19.769632829999978],[75.41280361200018,19.852800085000126],[75.17701749000014,19.86977126000005],[74.71826151200008,20.00343244100003],[74.54110764100017,20.076128352000126],[74.48858663600015,20.126094553000144],[74.49752057100011,20.314764656000023],[74.62084150100014,20.569650452000133],[74.79345657100015,20.627857238000104],[75.0059125040001,20.616125591000127],[75.1070705080001,20.639485285000035],[75.50382957200009,20.620186623000052],[75.76406050800011,20.719301958000074],[75.92980157900007,20.859233976000155],[75.94016261800016,20.99922718200014],[75.8417126390001,21.040913906000185],[75.69307752300006,21.061882914000023],[75.56934353300011,21.047762760000182],[75.46518748900019,21.072771174000138],[75.2638625570001,21.065341790000048],[75.03453050000007,21.093039118000036],[74.8027576340001,21.361636368000063],[74.73368052600006,21.49591797700009],[74.68434162600016,21.92165495600011],[74.61723359500007,21.957022900000084],[74.48484059600014,21.893126311000174],[74.474868646,21.82449009100003],[74.52748151700018,21.695837097000037],[74.46138752800016,21.564094198000078],[74.1827465790002,21.421282997000105],[74.02449758800003,21.286960483000144],[74.01534253800014,21.1985954430001],[74.17993964700008,21.047782541000174],[74.13758857300019,20.963966191000054],[74.03237959500018,20.947789118000117],[74.10791764100014,20.75105931200011],[74.08347349700017,20.65945433100012],[74.125556518,20.572980080000093],[74.09024054300016,20.508821808000107],[73.86313656400006,20.386989671000038],[73.91475651500014,20.26349758300006],[73.89650760300009,20.148043237000024],[73.85449951600003,20.08471695300011],[73.85890152400015,19.96656346600014],[73.78415657300019,19.779894459000047],[73.71408855600015,19.67701933800015],[73.70260652200011,19.524400136000168],[73.74620851200012,19.40955465100012],[73.81345350400011,19.346087551000096],[73.78344763100012,19.279534234000096],[73.80873851500019,19.191618463000168],[73.9159314900001,19.108056420000082],[73.90824863799998,18.93887541600003],[73.9208525050002,18.819701349000127],[73.99756653300011,18.72450522400004],[73.9943775540001,18.652499312000145],[73.92906962000018,18.55099832000019],[73.91886163600009,18.413824451000096],[74.009460622,18.31219169500008],[73.99420153400013,18.221776106000107],[74.03813963900018,18.11036301000013],[73.97586863600009,18.035437512999977],[73.96759754100009,17.893595930000117],[74.01154352400005,17.753225371000042],[74.08537250100005,17.601373616000046],[74.1587066100002,17.36815889500008],[74.27417755300007,17.12521194500016],[74.26386261500016,16.886217734000184],[74.37358055400006,16.683971463000148],[74.42671159400004,16.135714864000136],[74.42671159400004,16.010352773000022],[74.3953706530001,15.881081027],[74.3518905360001,15.81256634400006],[74.43087756800014,15.744300772000031],[74.523956591,15.71082177400018],[74.80972249300004,15.413032032999979],[74.96130351200003,15.326657359000137],[75.0459676070002,15.143549151000059],[75.14141049500017,15.126470353000059],[75.24059254900016,14.978388946000052],[75.27364356700008,14.839409112000055],[75.40457962400006,14.651592287000028],[75.39192948800019,14.552706617000126],[75.44920353499998,14.470452151000131],[75.661239534,14.375967315000139],[75.81823761000015,14.378828059000057],[75.9085465820001,14.3178220530001],[76.08908858500018,13.93852802500004],[76.12390852000004,13.799557412000013],[76.3386386300001,13.465378476000183],[76.41325349400006,13.300400660000093],[76.43943051300016,13.155879215000141],[76.55274965300003,12.904276274000154],[76.65569250000004,12.97579234900013],[76.70120958700016,13.036547233000078],[77.00367760400019,13.198937219000129],[77.10111957600009,13.179387771000108],[77.24743659200016,13.090073563999965],[77.43376160600013,13.048915401999977],[77.55110154500011,13.091194559000087],[77.72469360999997,13.095303368000145],[77.85984056700005,13.166358606000074],[77.97873652300007,13.123521548000099],[78.10041862300005,13.003959567000095],[78.18411259700014,12.884438489000047],[78.24346954700007,12.834721733000151],[78.32936058500007,12.678880360000107],[78.39938350700004,12.618086416000097],[78.57586649000018,12.584467776000054],[78.63404058700007,12.719228495000095],[78.75208259400006,12.841340252],[78.99817661200012,12.905405987000108],[79.16909049100008,12.97061166200018],[79.2797926340001,12.936905012000182],[79.3351665040002,12.774965972000132],[79.33896652300012,12.58166889100005],[79.27822153000017,12.4631469360001],[79.17964951000005,12.205723434000049],[79.01127652100018,11.91925412300003],[78.96376051800019,11.770283228000153],[78.90805053400004,11.668181254],[78.81839753000014,11.55564783400007],[78.72792863100005,11.497154052000155],[78.70874061100011,11.42171625200018],[78.7521746270001,11.320826134000129],[78.75466958400006,11.22877540200011],[78.59107260400015,11.196445899000082],[78.52857964800012,11.154219546999968],[78.53054855700003,11.037954839000065],[78.59203350500019,10.880244804000085],[78.43003864200006,10.455075447000127],[78.4377976020001,10.354002268000158],[78.34593160800006,10.172834974000068],[78.3064875450001,10.02501541800018],[78.24075364300006,9.918139111000187],[78.05902057100008,9.786643143000163],[77.9901885490001,9.702663179000183],[77.9676135690001,9.57816593300015],[77.97466258200006,9.350204150000138],[77.95171360200015,9.157632774000092],[77.92548360900014,9.06664134800019],[77.90032163900014,8.820217921000108],[77.8704686530001,8.721377680000103],[77.75321957300008,8.59683282500015],[77.61593657200007,8.538956956999982],[77.65611254300006,8.323155472000167],[77.7348635410001,8.228339215000062],[77.78368360100006,8.210564551],[77.95876362100006,8.319066779000025],[78.059646531,8.363412411000127],[78.13363660800002,8.486684726000135],[78.12191049300014,8.641971385000147],[78.17434650600006,8.760554024999976],[78.1691205570001,8.865456393000045],[78.19503052800013,8.92758222100008],[78.40628064000003,9.101605787000096],[78.65200049100014,9.150075148000042],[78.86585955300012,9.248704332000102],[79.07656853000009,9.288593306000053],[78.98329957200019,9.354201815000067],[78.90075660200011,9.47515016300008],[78.7773436380001,9.591964054000073],[78.8048936130001,9.890973866000024],[78.86918649900002,10.06802128600009],[78.90440356800008,10.246088785000097],[78.93044262000018,10.284548141000073],[79.07749154500016,10.355450158000053],[79.19171157200014,10.659321138000053],[79.29805763900015,10.908502714000122],[79.27699257500018,11.083571670000083],[79.36723365400007,11.316254308],[79.51730358300011,11.572366713000065],[79.59452052500006,11.826620514000183],[79.62310750900014,12.02611567700012],[79.61746950600019,12.186836827000093],[79.64147158800017,12.47403620200015],[79.63878653000006,12.662742514000115],[79.52887765100013,12.99498992500014],[79.56009655200012,13.235353739000175],[79.64665261000005,13.391763573000105],[79.77176659700001,14.011692150000101],[79.92239358800015,14.206610291000118],[80.00081651800019,14.202280535000114],[80.05571764900014,14.453544176000094],[80.05001862500006,14.641971874000149],[80.11459364600017,14.696058451],[80.05426758000016,15.02257699800009],[80.05287953700014,15.098951224000132],[80.09484856400019,15.222904149000158],[80.11331959600011,15.350175973000091],[80.15309860000019,15.400367648000099],[80.09185756600016,15.471247368000093],[80.13124865500004,15.56286140200018],[80.17062365100008,15.772219048000181],[80.26648764500015,15.763518464000072],[80.59207161000018,15.966814653000085],[80.6783825820001,15.891820424000116],[80.87747960500013,15.838403729000106],[80.94737964800015,15.93385784800006],[81.09156062000005,16.014932645000044],[81.15148150500005,15.998774682000146]]]]},"properties":{"objectid":202,"eco_name":"Deccan thorn scrub forests","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Indomalayan","eco_biome_":"IN13","nnh":4,"eco_id":315,"shape_leng":55.5937841427,"shape_area":28.6472841235,"nnh_name":"Nature Imperiled","color":"#C9A63E","color_bio":"#CC6767","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":341002.58203401143,"percentage":1.2925489816368474}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[39.954071464000094,15.87931110400001],[40.00744055000007,15.858687850000024],[39.9819485000001,15.733810317000064],[40.12038049300014,15.594229501000086],[40.300109620000114,15.554131985000083],[40.41564158199998,15.554661721000059],[40.31212960400006,15.681374807000111],[40.247138506000056,15.613589015000116],[40.15911058500012,15.62501723700018],[40.13370855700015,15.76824820500019],[40.09368161700013,15.82530549600017],[39.954071464000094,15.87931110400001]]],[[[42.096772998000176,13.641880737000179],[42.06420502900011,13.719311585000014],[41.963710536,13.847393100999966],[41.85589948000006,13.861902175000182],[41.79917947600012,13.925677897000185],[41.6816905070001,13.942516806000128],[41.648399599000186,14.024401294000086],[41.54304846400004,14.13248425900008],[41.480789531000084,14.24654670700005],[41.33852047100004,14.407696339000154],[41.288989458000174,14.512159495000049],[41.18376153700012,14.617762423000158],[40.90024148200007,14.719626854000069],[40.74597959500011,14.732414956000184],[40.74554055100003,14.807030994],[40.686069607000036,14.881575282000142],[40.61902946900017,14.885674871000163],[40.54280653700005,14.998432675000174],[40.364379539000026,14.957640383000069],[40.29722959800006,14.896474283000032],[40.16062955400014,14.977489903000048],[40.07727856800017,15.151607848000083],[40.0189894720001,15.232402690000129],[40.085571455000036,15.319087159000105],[39.88811158600009,15.462368753000078],[39.82849848400008,15.467627391000121],[39.77476847300005,15.389342427000088],[39.78168153200011,15.26014176000001],[39.84601004000018,15.156593572000133],[39.77750047100011,15.05590512200007],[39.6933285610001,15.120899908000013],[39.712341567000124,15.23879221400017],[39.653499601000135,15.340165634000016],[39.61436047200016,15.482286502000022],[39.54014961500013,15.528824505000102],[39.45917858700011,15.520294912],[39.43872054000019,15.589149733000056],[39.47269055000015,15.645736129000056],[39.42221053800017,15.750649226],[39.43059160300004,15.799026218000108],[39.30205947600018,15.891901393000182],[39.234981619999985,16.075269775000095],[39.19435151700009,16.28650630800007],[39.186569591000136,16.424557762000177],[39.146930565000105,16.53004015800002],[39.14767051900003,16.63749347400011],[39.11499048500002,16.78051539700016],[39.062271499000076,16.890188745000046],[38.931541469000194,17.369138069000087],[38.81612048300008,17.612893033000034],[38.60076960900017,17.924304205999988],[38.54182856900019,18.08276559400008],[38.49369850700009,18.051106475000097],[38.410278454000036,18.10428411900017],[38.391590498000085,18.181384720000153],[38.276569496000036,18.017718338],[38.16141298200017,17.792106526],[38.25827029600015,17.72679723000016],[38.27056822400016,17.463292155000033],[38.34860927500017,17.231237321000037],[38.33269824400003,17.05938802100019],[38.452487861000066,16.840117373000112],[38.55857829700011,16.820411915000022],[38.55883025700018,16.76383658300017],[38.48747930600007,16.635294566000027],[38.555179267000085,16.48171295399999],[38.584689266000055,16.11180649000005],[38.64739931300005,16.05645106100019],[38.802501235000136,15.981175535000148],[38.88714923700013,15.730710522000152],[39.00746123100009,15.607068398000024],[39.11264020200019,15.3950121150001],[39.25872034600002,15.200824539999985],[39.444179341,15.219643421],[39.51744824000008,15.08489209000004],[39.70779019600019,14.94609095800007],[39.72788932999998,14.874486874000013],[39.719089338000174,14.752493638000033],[39.74618819900013,14.61173298500006],[39.70750000000015,14.4625],[39.6075,14.38000000000011],[39.73666666700018,14.343333333000032],[39.80666666700017,14.276666667000143],[39.774166667000145,14.12],[39.87,14.08333333400003],[39.83833333300015,14.011666667000043],[39.84666666700008,13.831666666000046],[39.79083333400007,13.7575],[39.80666666600007,13.51916666600016],[39.72,13.444166667000047],[39.77166666700009,13.286666667000134],[39.70916666700015,13.161666667000077],[39.77916666700014,13.135833333000107],[39.764166666999984,13.0183333330001],[39.73000000000019,12.995000000000175],[39.70083333300005,12.879166667000106],[39.62416666700017,12.79166666600014],[39.62250000000017,12.674166667000065],[39.58416666700009,12.649166667000145],[39.59166666700014,12.545833333000076],[39.5125000000001,12.354166667000129],[39.505,12.266666667000038],[39.6025,12.086666666000042],[39.61000000000013,11.959166666000044],[39.6975,11.774166666000099],[39.6125,11.685000000000173],[39.64083333300016,11.6225],[39.62666666700005,11.499166666000065],[39.58166666700015,11.454166666000162],[39.62666666700005,11.394166666000103],[39.808333333000064,11.399166667000031],[39.914166666000085,11.199166667000156],[39.843333333000146,11.143333333000044],[39.86083333300019,11.015000000000157],[39.95666666699998,10.9575],[39.865,10.91583333400007],[39.81666666700016,10.96],[39.730833333000135,10.97416666600003],[39.68000000000012,10.88000000000011],[39.75083333300012,10.814166666000062],[39.781666667000025,10.659166666000033],[39.899166666000156,10.481666667000127],[39.8958333330001,10.21],[39.77583333300004,9.9725],[39.869166667000115,9.803333333000182],[39.81666666700016,9.79],[39.84666666600015,9.7],[39.775,9.58916666600004],[39.81750000000011,9.4725],[39.723333333000085,9.456666666000103],[39.68833333300017,9.40833333300003],[39.649166665999985,9.245833334000054],[39.585,9.154166667000084],[39.415,9.069166667000104],[39.334166666000044,9.070833333000166],[39.440833333000114,8.825000000000102],[39.30916666700017,8.735833334000176],[39.317500000000166,8.649166667000031],[39.24750000000017,8.558333333000064],[39.145833333999974,8.538333334000185],[39.133333333,8.598333333000141],[38.98083333400018,8.59583333300003],[38.89,8.630833334000044],[38.890833334000035,8.52],[38.8275000000001,8.456666667000036],[38.735,8.484166665999965],[38.72583333400007,8.364166666000074],[38.68916666600012,8.310833333000176],[38.674166667000065,8.1375],[38.579166666,8.000833334000106],[38.575,7.920833333000189],[38.48083333300019,7.791666667000186],[38.24083333400017,7.5875],[38.28416666700008,7.510000000000161],[38.33916666700014,7.580833333000101],[38.37166666700011,7.296666665999965],[38.40583333300003,7.176666666000074],[38.29833333400012,7.002500000000168],[38.36416666700006,6.960833334000029],[38.55416666600007,6.9575],[38.60166666600003,6.994166667000172],[38.62333333300012,7.104166667000072],[38.52333333300004,7.146666666000158],[38.53166666700014,7.220833334000133],[38.67583333300013,7.440000000000111],[38.81750000000011,7.475],[38.85416666600008,7.595833333000087],[38.834166667000034,7.741666667000118],[38.730833333000135,7.760000000000105],[38.76000000000016,7.828333334000035],[38.864166666000074,7.79],[38.90833333300003,7.862500000000125],[39.069166666000115,7.953333334000092],[39.105,8.072500000000161],[38.9566666660001,8.178333333000012],[38.98416666700007,8.237500000000125],[39.073333333000164,8.167500000000132],[39.1525,8.245833333000121],[39.27583333300015,8.25],[39.396666667000034,8.21083333300004],[39.43166666700017,8.2875],[39.668333334000124,8.435833333000062],[39.79250000000013,8.4275],[39.92416666700018,8.491666667000118],[39.98333333300019,8.550833333000128],[40.06166666700011,8.538333333000082],[40.11500000000018,8.661666667000077],[40.17083333300019,8.679166666000071],[40.31333333400005,8.796666667000125],[40.44583333300005,8.798333333000187],[40.45416666700015,8.8900000000001],[40.529166666000094,8.965000000000146],[40.71,9.050833333000071],[40.745833333000064,9.095],[40.843333333000146,9.08083333400009],[40.8958333330001,9.113333333000185],[40.90916666700019,9.200000000000102],[40.983333334000065,9.170000000000186],[41.02583333300015,9.361666667000065],[41.09666666700019,9.39083333300016],[41.16,9.300833333000185],[41.2091666660001,9.387500000000102],[41.293333333000135,9.376666667000052],[41.40666666699997,9.440000000000111],[41.47250000000014,9.443333333000112],[41.52916666700014,9.495000000000118],[41.819166666000115,9.464166667000086],[41.95833333400009,9.490000000000123],[42.071666667000045,9.559166667000056],[42.17166666700018,9.535833332999971],[42.17916666700006,9.59583333300003],[42.26000000000016,9.625],[42.30833333400017,9.59333333300009],[42.3841666670001,9.626666666000062],[42.566666667000106,9.645000000000152],[42.64500000000015,9.600833334000072],[42.68416666700011,9.69250000000011],[42.775,9.73166666700007],[42.8725,9.6991666670001],[43.00843865100006,9.745173154000042],[43.201666666000165,9.87177626100015],[43.31295159399997,10.006844001000104],[43.47891886300016,10.160037034000027],[43.71646000200013,10.409081535999974],[43.97118496700017,10.66371652500004],[43.88251876800018,10.651734352000062],[43.82308960000012,10.693817139000089],[43.828660006,10.79390044500019],[43.69219962100004,10.94001162900014],[43.564090729000156,11.126223564000043],[43.467178345000036,11.201981544000091],[43.483699612,11.348502340000152],[43.325157166000054,11.37293720200006],[43.279978242000084,11.468968092000011],[43.191236995000054,11.528020684000012],[43.09682846100003,11.525362968000024],[43.03306955300019,11.59715518600018],[42.80368050000004,11.582675951000056],[42.66025959900003,11.51846152000013],[42.70341148000006,11.636273528000174],[42.771739582000066,11.732805728000073],[42.87582052300007,11.779142732000082],[42.946361615000114,11.765703692000159],[43.08821161100008,11.844209642000123],[43.08120346100003,11.920044899000061],[43.23453521700003,12.027014732000168],[43.32615493500009,12.067356400000108],[43.03908960400014,12.433408111000062],[42.83686059900009,12.70236980499999],[42.73896047300019,12.787135154],[42.47338858800009,12.964272093000147],[42.3783495400001,13.010799032000136],[42.30430950700003,13.084734124000136],[42.1520306110001,13.354175934000068],[42.10203959900008,13.518215143000191],[42.096772998000176,13.641880737000179]],[[39.91000000000014,10.848333333000028],[39.944166666,10.836666666999974],[39.9875,10.720000000000141],[39.92916666600007,10.705000000000155],[39.88,10.785000000000139],[39.91000000000014,10.848333333000028]]]]},"properties":{"objectid":204,"eco_name":"Djibouti xeric shrublands","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Afrotropic","eco_biome_":"AF13","nnh":3,"eco_id":92,"shape_leng":114.343417483,"shape_area":19.6616982241,"nnh_name":"Nature Could Recover","color":"#F5A27A","color_bio":"#CC6767","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":238175.3845052536,"percentage":0.9027889139634873}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[30.945764542000063,-28.52565956099994],[30.969753265000122,-28.62625503499993],[30.929346085000077,-28.71556472799989],[30.861547470000062,-28.69042968799988],[30.704095840000093,-28.69698905899986],[30.7214965820001,-28.60964202899993],[30.78426551800004,-28.54721832299998],[30.656162262000123,-28.461137771999972],[30.629262924000045,-28.387998580999977],[30.512613297000144,-28.50235748299997],[30.544408798000063,-28.641969680999978],[30.61554908800008,-28.682067870999845],[30.569980621000127,-28.741048812999964],[30.465158463000023,-28.717161178999845],[30.43374443100015,-28.652215957999886],[30.35148048400015,-28.588825225999983],[30.340662003000034,-28.518909453999925],[30.216213226000036,-28.554195403999984],[30.037574768000127,-28.538610457999937],[30.04174804700017,-28.488918303999924],[29.82482528700001,-28.532253264999895],[29.813341141000024,-28.607368468999937],[29.684209824000163,-28.74322318999998],[29.852363586000138,-28.70237922699988],[29.868396759000063,-28.759983062999822],[29.79032707200014,-28.863153457999886],[29.936775208000086,-29.022319793999884],[29.99656295800014,-29.012233733999892],[30.110574722000024,-29.079038619999892],[30.195707321000043,-29.002458571999966],[30.295862198000066,-28.98181724499989],[30.33047676100017,-29.064447402999974],[30.445600510000133,-29.027971267999874],[30.461233139000115,-28.960668563999945],[30.52602386500007,-28.931390761999978],[30.61593246500007,-28.972133635999967],[30.71323585500005,-28.95504379299996],[30.782396317000064,-28.898927688999947],[30.88565444900007,-28.896385192999958],[30.92542457600007,-28.98635673499996],[30.847520828000143,-29.009168624999973],[30.836156845,-29.108547210999916],[30.715833664000115,-29.13683700599995],[30.68942832900018,-29.277711867999983],[30.63150215100012,-29.354537963999974],[30.53135490400018,-29.337444304999963],[30.468278885000075,-29.279548644999977],[30.345546722000165,-29.352558135999857],[30.284276962000035,-29.451686858999892],[30.357757568000125,-29.542352675999894],[30.285324097000114,-29.652585982999938],[30.353887558000167,-29.726865767999982],[30.296945572000027,-29.871767043999967],[30.233325957999966,-29.84751701399989],[30.15943718000011,-29.938598632999913],[30.060312271000157,-29.918796538999914],[30.12977981600011,-30.11171531699995],[30.192531586000086,-30.17794609099991],[30.216938019000054,-30.26846885699996],[30.198755264000056,-30.34623718299997],[30.095405579000158,-30.31138801599991],[30.091531754000187,-30.262914657999943],[29.93218803400015,-30.220746993999853],[29.90915679900013,-30.25959396399992],[29.981348038000192,-30.356626510999945],[29.85999679600019,-30.42089462299998],[29.832025528000088,-30.532444],[29.89209747300015,-30.611959456999955],[29.84448432900018,-30.66126060499994],[29.768917084000066,-30.629341124999883],[29.711801529000013,-30.733675002999973],[29.870813370000064,-30.82876777599995],[29.875242233000108,-30.877504348999935],[29.759162903000117,-30.970546721999938],[29.523183823000124,-31.01637268099995],[29.53746795700016,-30.901880263999942],[29.444892883000136,-30.937900542999955],[29.369821548000175,-30.87831497199994],[29.319324493000124,-30.947999953999897],[29.39349746700009,-30.979042052999944],[29.421302795000145,-31.054273604999878],[29.206851959000062,-31.01200103799988],[29.155982971000014,-30.945194243999936],[29.028194427000187,-30.93576431299988],[29.191082001000154,-31.05993652299992],[29.118299484000033,-31.15709114099991],[28.998430252000105,-31.065362929999935],[28.980937958000027,-30.99500656099991],[28.813585281000144,-31.07403182999991],[28.938739777000023,-31.16253471399989],[28.896787643000096,-31.237916945999928],[28.68533706700009,-31.167774199999826],[28.615547180000135,-31.264949798999908],[28.766847610000127,-31.27308464099997],[28.919229507000125,-31.25183296199998],[28.99661064100013,-31.33007621799993],[29.162448882999968,-31.424331664999954],[29.130971909000095,-31.557291030999977],[28.96284103400012,-31.51805114699988],[28.85344314600013,-31.617988585999967],[28.744647980000025,-31.605091094999977],[28.793952942000146,-31.72322082499994],[28.70397758500019,-31.789670943999965],[28.564826965000066,-31.853876113999945],[28.496450424000045,-31.784500121999884],[28.330545425000025,-31.806217193999885],[28.39284324600004,-31.902027129999965],[28.326278687000126,-31.969758986999977],[28.560482025000113,-32.011844634999875],[28.48464965800008,-32.1275863649999],[28.371646881000117,-32.18341445899989],[28.169610977,-32.22443008399989],[28.115287781000177,-32.26915359499992],[28.07155799900005,-32.40280532799994],[27.99090385400001,-32.40245437599998],[27.878976822000027,-32.26353073099989],[27.858886719000168,-32.17424774199992],[27.714334488000134,-32.146556853999925],[27.50073814400008,-32.16391754199998],[27.455318450999982,-32.074596404999966],[27.379449844000135,-32.06429290799991],[27.228603363,-32.107734679999965],[27.155130386000167,-32.243957519999924],[27.206190109000033,-32.279808043999935],[27.276931763000164,-32.415401458999895],[27.510730743000067,-32.33288955699982],[27.629379272000108,-32.32746505699998],[27.68950653100012,-32.41790389999983],[27.613115311000115,-32.494651793999935],[27.65016174300007,-32.57692718499993],[27.779726028000027,-32.588649749999945],[27.441707611000027,-32.69552612299998],[27.309408188000077,-32.67638397199994],[27.245859146000043,-32.61757278399995],[27.175355911,-32.64665985099998],[27.014902115000154,-32.65358352699991],[27.016716003000113,-32.77205657999997],[26.946699142000057,-32.78830337499994],[26.90486145000017,-32.66911697399996],[26.769319534000033,-32.79149246199995],[26.766351700000143,-32.794147490999876],[26.752054214000054,-32.79637908899997],[26.745121002000133,-32.78804016099991],[26.751956940000184,-32.78319930999987],[26.728908539000145,-32.77204894999994],[26.712511063000193,-32.77275466899988],[26.732110977000104,-32.886230468999884],[26.97377395600006,-32.97665405299989],[27.073297501000127,-32.93493270899995],[27.106060028000115,-32.87499618499993],[27.235322952000104,-32.85541534399994],[27.21154594400008,-32.93361663799993],[27.347307205000163,-32.96468353299997],[27.462511063000022,-32.90019607499988],[27.623128891000135,-32.88071823099989],[27.703741074000106,-32.91531753499987],[27.765813828000034,-32.89205932599998],[27.826925278000033,-32.78471755999993],[27.94686889600007,-32.8410415649999],[27.995456696000133,-32.796558379999965],[28.135890961000143,-32.80305099499998],[28.176179886000057,-32.70287322999991],[28.348260880000055,-32.703769683999894],[28.35779571500018,-32.69976043699995],[28.36332511900008,-32.69586181599993],[28.310588837000125,-32.64287948599997],[28.312664032000157,-32.63182067899993],[28.424903870000094,-32.50048446699998],[28.561185837000096,-32.460124968999935],[28.613262177000024,-32.39313888499987],[28.77980423000008,-32.34358978299997],[28.806713104000096,-32.20525741599994],[28.93295478800019,-32.12040710399998],[28.910797119000165,-32.03156661999992],[29.09552002000015,-31.92408561699989],[29.102895477000118,-31.84687581199995],[29.208538055000133,-31.81083297699996],[29.179838181000093,-31.72444915799997],[29.267419814999982,-31.708040236999977],[29.233539581000173,-31.63996314999997],[29.35787773100003,-31.622262954999883],[29.430627823,-31.576761245999876],[29.480712891000053,-31.497966765999877],[29.61209487900004,-31.39286994899993],[29.704759598000123,-31.37151336699992],[29.79981994600007,-31.28704070999987],[29.97343635600015,-31.052656173999935],[30.094425201000035,-30.98316383399998],[30.177885056000036,-30.791980742999954],[30.16139030500011,-30.68506622299998],[30.21001243600017,-30.65351104699988],[30.170104980000076,-30.555807113999947],[30.31700515700004,-30.431158065999966],[30.38825607300015,-30.447376250999923],[30.411815643000125,-30.356435775999955],[30.530370712000092,-30.332046508999895],[30.564723969000056,-30.26193237299998],[30.534488678000116,-30.200740813999914],[30.622501373000034,-30.14462661699997],[30.59272003200016,-30.09284019499995],[30.718891144000168,-30.018306731999928],[30.78633499100016,-29.802495955999973],[30.845888138000078,-29.800577163999947],[30.872810364000088,-29.669048308999947],[30.833381653000117,-29.580619811999952],[30.975294113000075,-29.50419235199996],[30.978391647000024,-29.455322265999882],[31.13388061500018,-29.36468696599991],[31.101854323999987,-29.283473968999942],[31.04432296800013,-29.282873153999958],[31.05944252000006,-29.17826652499997],[31.199270248,-29.252355575999957],[31.219120026000155,-29.186752318999936],[31.304733276000093,-29.194154738999885],[31.356584549000104,-29.14381027199994],[31.305418015000157,-28.943418502999975],[31.51000404400014,-28.896244048999904],[31.526025772000082,-28.81970786999989],[31.642295837,-28.758882522999954],[31.574476242,-28.715274810999972],[31.547729492000144,-28.625368117999926],[31.61972618100009,-28.58401489299996],[31.642641068000103,-28.51844978299988],[31.54300308200004,-28.479877471999885],[31.329368591000105,-28.534818648999874],[31.278190613000106,-28.586200713999972],[31.17961120600006,-28.607372283999894],[31.10749435400004,-28.67489433299994],[30.945764542000063,-28.52565956099994]]]},"properties":{"objectid":205,"eco_name":"Drakensberg Escarpment savanna and thicket","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Afrotropic","eco_biome_":"AF07","nnh":4,"eco_id":40,"shape_leng":116.977467241,"shape_area":3.29209561164,"nnh_name":"Nature Imperiled","color":"#FCD135","color_bio":"#FEAA01","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":35081.597235201676,"percentage":0.16363436468832593}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[26.058147430000076,-32.410476684999935],[26.020462036000026,-32.350185393999936],[26.028841019000083,-32.2526245119999],[25.844795227000077,-32.23420333899986],[25.74972534200009,-32.376491546999944],[25.78728485100015,-32.44745635999993],[25.807477951000067,-32.427345275999926],[25.903541565000126,-32.3889312739999],[26.058147430000076,-32.410476684999935]]],[[[31.31060028100012,-27.292871474999913],[31.236032486000113,-27.231908797999893],[31.048223495000173,-27.236743926999964],[31.07306480400007,-27.388925551999876],[31.049617767000086,-27.492805480999948],[30.921844482000154,-27.47239875799994],[30.891380309999988,-27.539924621999944],[30.935417175000055,-27.62059402499989],[30.870002747,-27.717357634999928],[30.80662918100012,-27.753929137999933],[30.56865501400017,-27.74609184299993],[30.480888367000148,-27.68801307699988],[30.418178558000136,-27.70713043199993],[30.214960098000063,-27.576227187999905],[30.03810882600004,-27.51601982099993],[29.918142319000026,-27.50891303999998],[29.8786468510001,-27.427553176999936],[29.694755554000153,-27.332489013999975],[29.657958984000118,-27.361181258999977],[29.71406745900009,-27.459861754999906],[29.781713486000115,-27.470619201999966],[29.788496017000114,-27.596290587999874],[29.667552948000036,-27.65386962899987],[29.70741081200009,-27.815586089999954],[29.66749763500019,-27.944410323999875],[29.601320267000062,-27.99434661899994],[29.662237167000114,-28.14649200399998],[29.58500099200012,-28.2626075739999],[29.376306534000094,-28.37836646999989],[29.209390640000038,-28.50112152099996],[29.012981415000183,-28.540325164999956],[28.976381302000107,-28.514173507999942],[28.854862213000047,-28.534400939999955],[28.796966553000175,-28.57924461399989],[28.655038834000095,-28.534154891999947],[28.620229721000044,-28.457281112999965],[28.488870621,-28.457868575999896],[28.426773071000127,-28.50353431699989],[28.332418442,-28.497173308999947],[28.227508544999978,-28.573379516999978],[28.259712219,-28.620504378999954],[28.362791061000166,-28.63544082599998],[28.47100067100007,-28.729375838999943],[28.332141876000037,-28.831533431999958],[28.152471542000058,-29.06012153599994],[28.028575897000167,-29.074420928999928],[28.003961563000132,-29.14762687699988],[27.927272797,-29.233644484999957],[27.82529640200005,-29.220464705999973],[27.71136093100006,-29.29161834699994],[27.791177750000088,-29.491361617999928],[27.65777206400014,-29.524507522999897],[27.635723114000086,-29.629495620999933],[27.70266723600008,-29.837755202999915],[27.538272858000084,-29.947029113999974],[27.565898895000146,-30.16341972399988],[27.551944733000028,-30.2626457209999],[27.643167496000046,-30.2828330989999],[27.643167496000046,-30.187332152999886],[27.800167084000066,-30.127332686999978],[27.88716697700005,-30.015333175999842],[27.974666595000087,-30.036832808999975],[28.001167297000052,-29.98283386199995],[28.101167679000184,-30.04733276399992],[28.219167708999976,-29.956832885999972],[28.607667923000065,-30.030332564999924],[28.713167191000082,-29.899833678999983],[28.732166290000066,-30.03283309899996],[28.660667419000106,-30.03133392299992],[28.50216674800015,-30.114332198999932],[28.363666534,-30.069833754999934],[28.15566635100015,-30.06833267199994],[28.07216644300013,-30.162332534999905],[28.00516700700007,-30.116333007999913],[27.944667816000162,-30.155832290999967],[28.023166656000114,-30.219333648999964],[27.91916656500007,-30.288333892999958],[28.001167297000052,-30.434833526999967],[27.860166550000088,-30.363332747999948],[27.764167786000087,-30.44683265699996],[27.76366615300003,-30.55583381699995],[27.625566483000057,-30.67908668499996],[27.44931221000013,-30.640100478999898],[27.37982177700013,-30.695724486999893],[27.251550674000043,-30.66047859199989],[27.166103363000047,-30.802604674999884],[27.22230720500005,-30.86040878299997],[27.256778717000145,-30.965660094999976],[27.16082954400008,-30.974740981999958],[27.064115524000044,-31.10210800199991],[26.889387131000092,-31.144556045999877],[26.870788574000187,-31.04493331899988],[26.755968094000025,-30.96590232799997],[26.65078926100017,-30.938383101999932],[26.543394089000117,-30.958370208999952],[26.520492554000157,-31.03915405299989],[26.431089401000122,-31.044916152999974],[26.489315033000025,-31.156768798999963],[26.467353821000188,-31.212341308999953],[26.374628067000117,-31.27206993099992],[26.372270583999978,-31.321763991999887],[26.46780776999998,-31.39672279399997],[26.413133621000156,-31.431413650999957],[26.46380615200019,-31.56039428699995],[26.396680832000186,-31.565601348999962],[26.324167252,-31.63385581999995],[26.175838470000087,-31.59825897199994],[26.077026367000087,-31.59713554399997],[26.103754044000084,-31.485359191999976],[26.064872742000034,-31.597082137999905],[25.979175568000073,-31.634893416999887],[26.015752792000114,-31.763433455999973],[26.08742904700017,-31.80285263099995],[26.002925873000095,-31.709728240999937],[26.137418747000083,-31.631513595999934],[26.2525138850001,-31.626611709999906],[26.267894745000092,-31.686683654999968],[26.19124412500014,-31.786371230999976],[26.091320038000163,-31.82252693199996],[26.125005722000026,-31.882112502999973],[25.90359306300013,-32.05258941699998],[25.988843918000157,-32.03752136199995],[26.105222702000106,-32.11366271999998],[26.18319702100007,-32.09836959799992],[26.23446273800016,-32.02948379499992],[26.32278251600019,-32.06431198099983],[26.433776855000076,-32.163345336999896],[26.542081833000054,-32.15865707399996],[26.546274185000186,-32.04341506999998],[26.66156959500006,-32.20405578599997],[26.564691544000027,-32.2830772399999],[26.477266312000097,-32.27627563499988],[26.29981422400016,-32.358600615999876],[26.25189399700014,-32.32168197599992],[26.128231049000192,-32.3884696959999],[26.150175095000066,-32.43040466299993],[26.051673889000142,-32.471290587999874],[26.12201118500019,-32.63359832799995],[26.23803710900006,-32.65710067699996],[26.265756607000128,-32.57955551099997],[26.384454727000104,-32.64818954499992],[26.405721664,-32.70078659099994],[26.508434296000075,-32.7688026429999],[26.561105727999973,-32.73834228499993],[26.712511063000193,-32.77275466899988],[26.728908539000145,-32.77204894999994],[26.751956940000184,-32.78319930999987],[26.745121002000133,-32.78804016099991],[26.752054214000054,-32.79637908899997],[26.766351700000143,-32.794147490999876],[26.769319534000033,-32.79149246199995],[26.90486145000017,-32.66911697399996],[26.946699142000057,-32.78830337499994],[27.016716003000113,-32.77205657999997],[27.014902115000154,-32.65358352699991],[27.175355911,-32.64665985099998],[27.245859146000043,-32.61757278399995],[27.309408188000077,-32.67638397199994],[27.441707611000027,-32.69552612299998],[27.779726028000027,-32.588649749999945],[27.65016174300007,-32.57692718499993],[27.613115311000115,-32.494651793999935],[27.68950653100012,-32.41790389999983],[27.629379272000108,-32.32746505699998],[27.510730743000067,-32.33288955699982],[27.276931763000164,-32.415401458999895],[27.206190109000033,-32.279808043999935],[27.155130386000167,-32.243957519999924],[27.228603363,-32.107734679999965],[27.379449844000135,-32.06429290799991],[27.455318450999982,-32.074596404999966],[27.50073814400008,-32.16391754199998],[27.714334488000134,-32.146556853999925],[27.858886719000168,-32.17424774199992],[27.878976822000027,-32.26353073099989],[27.99090385400001,-32.40245437599998],[28.07155799900005,-32.40280532799994],[28.115287781000177,-32.26915359499992],[28.169610977,-32.22443008399989],[28.371646881000117,-32.18341445899989],[28.48464965800008,-32.1275863649999],[28.560482025000113,-32.011844634999875],[28.326278687000126,-31.969758986999977],[28.39284324600004,-31.902027129999965],[28.330545425000025,-31.806217193999885],[28.496450424000045,-31.784500121999884],[28.564826965000066,-31.853876113999945],[28.70397758500019,-31.789670943999965],[28.793952942000146,-31.72322082499994],[28.744647980000025,-31.605091094999977],[28.85344314600013,-31.617988585999967],[28.96284103400012,-31.51805114699988],[29.130971909000095,-31.557291030999977],[29.162448882999968,-31.424331664999954],[28.99661064100013,-31.33007621799993],[28.919229507000125,-31.25183296199998],[28.766847610000127,-31.27308464099997],[28.615547180000135,-31.264949798999908],[28.68533706700009,-31.167774199999826],[28.896787643000096,-31.237916945999928],[28.938739777000023,-31.16253471399989],[28.813585281000144,-31.07403182999991],[28.980937958000027,-30.99500656099991],[28.998430252000105,-31.065362929999935],[29.118299484000033,-31.15709114099991],[29.191082001000154,-31.05993652299992],[29.028194427000187,-30.93576431299988],[29.155982971000014,-30.945194243999936],[29.206851959000062,-31.01200103799988],[29.421302795000145,-31.054273604999878],[29.39349746700009,-30.979042052999944],[29.319324493000124,-30.947999953999897],[29.369821548000175,-30.87831497199994],[29.444892883000136,-30.937900542999955],[29.53746795700016,-30.901880263999942],[29.523183823000124,-31.01637268099995],[29.759162903000117,-30.970546721999938],[29.875242233000108,-30.877504348999935],[29.870813370000064,-30.82876777599995],[29.711801529000013,-30.733675002999973],[29.768917084000066,-30.629341124999883],[29.84448432900018,-30.66126060499994],[29.89209747300015,-30.611959456999955],[29.832025528000088,-30.532444],[29.85999679600019,-30.42089462299998],[29.981348038000192,-30.356626510999945],[29.90915679900013,-30.25959396399992],[29.93218803400015,-30.220746993999853],[30.091531754000187,-30.262914657999943],[30.095405579000158,-30.31138801599991],[30.198755264000056,-30.34623718299997],[30.216938019000054,-30.26846885699996],[30.192531586000086,-30.17794609099991],[30.12977981600011,-30.11171531699995],[30.060312271000157,-29.918796538999914],[30.15943718000011,-29.938598632999913],[30.233325957999966,-29.84751701399989],[30.296945572000027,-29.871767043999967],[30.353887558000167,-29.726865767999982],[30.285324097000114,-29.652585982999938],[30.357757568000125,-29.542352675999894],[30.284276962000035,-29.451686858999892],[30.345546722000165,-29.352558135999857],[30.468278885000075,-29.279548644999977],[30.53135490400018,-29.337444304999963],[30.63150215100012,-29.354537963999974],[30.68942832900018,-29.277711867999983],[30.715833664000115,-29.13683700599995],[30.836156845,-29.108547210999916],[30.847520828000143,-29.009168624999973],[30.92542457600007,-28.98635673499996],[30.88565444900007,-28.896385192999958],[30.782396317000064,-28.898927688999947],[30.71323585500005,-28.95504379299996],[30.61593246500007,-28.972133635999967],[30.52602386500007,-28.931390761999978],[30.461233139000115,-28.960668563999945],[30.445600510000133,-29.027971267999874],[30.33047676100017,-29.064447402999974],[30.295862198000066,-28.98181724499989],[30.195707321000043,-29.002458571999966],[30.110574722000024,-29.079038619999892],[29.99656295800014,-29.012233733999892],[29.936775208000086,-29.022319793999884],[29.79032707200014,-28.863153457999886],[29.868396759000063,-28.759983062999822],[29.852363586000138,-28.70237922699988],[29.684209824000163,-28.74322318999998],[29.813341141000024,-28.607368468999937],[29.82482528700001,-28.532253264999895],[30.04174804700017,-28.488918303999924],[30.037574768000127,-28.538610457999937],[30.216213226000036,-28.554195403999984],[30.340662003000034,-28.518909453999925],[30.35148048400015,-28.588825225999983],[30.43374443100015,-28.652215957999886],[30.465158463000023,-28.717161178999845],[30.569980621000127,-28.741048812999964],[30.61554908800008,-28.682067870999845],[30.544408798000063,-28.641969680999978],[30.512613297000144,-28.50235748299997],[30.629262924000045,-28.387998580999977],[30.656162262000123,-28.461137771999972],[30.78426551800004,-28.54721832299998],[30.7214965820001,-28.60964202899993],[30.704095840000093,-28.69698905899986],[30.861547470000062,-28.69042968799988],[30.929346085000077,-28.71556472799989],[30.969753265000122,-28.62625503499993],[30.945764542000063,-28.52565956099994],[30.995628357000157,-28.40752410899995],[30.9571304320001,-28.34435462999994],[30.947565079000128,-28.193681716999947],[30.986763000000167,-28.161901473999876],[31.124422073000062,-28.17564964299993],[31.062242508000054,-28.071571349999886],[31.077932358000112,-28.005437850999954],[31.211265564000087,-27.856748580999863],[31.384281158000135,-27.95960617099996],[31.366407394000078,-27.862943648999874],[31.415613174000157,-27.807716369999923],[31.31351280200016,-27.730859755999973],[31.45867538500005,-27.50255012499997],[31.367393494000112,-27.498470305999888],[31.41904068000008,-27.35475158699984],[31.31060028100012,-27.292871474999913]],[[26.83124160800014,-32.55907821699992],[26.720390320000092,-32.62932968099989],[26.779607773000123,-32.694576262999874],[26.73624801600016,-32.74461364699994],[26.616403580000167,-32.68450927699996],[26.646099091000053,-32.550685882999915],[26.78749465900006,-32.531749724999884],[26.83124160800014,-32.55907821699992]]]]},"properties":{"objectid":206,"eco_name":"Drakensberg grasslands","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Afrotropic","eco_biome_":"AF07","nnh":4,"eco_id":41,"shape_leng":168.504073682,"shape_area":10.7547173371,"nnh_name":"Nature Imperiled","color":"#FDBD7F","color_bio":"#FEAA01","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":115164.73963045012,"percentage":0.5371736320208295}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-59.10432854499999,-18.623451071999966],[-59.34162860599997,-18.55755187799997],[-59.612068532999956,-18.442223595999906],[-59.69711249699998,-18.315203396999948],[-59.807437620999906,-18.239443732999973],[-59.93813663699996,-18.187973985999975],[-60.0585094839999,-18.03730592299985],[-60.08833363699995,-17.88201339699998],[-60.25899153199998,-17.81693646799988],[-60.26718148999993,-17.754801252999926],[-60.36441056099994,-17.71351585299982],[-60.34488257099997,-17.660905999999898],[-60.439437478999935,-17.576425132999873],[-60.523860510999896,-17.584126760999936],[-60.72111552699994,-17.676025108999966],[-60.72964059299994,-17.77659101599994],[-60.653064530999984,-17.86013193599996],[-60.488376561999985,-17.955293023999843],[-60.47541461999998,-18.039168046999976],[-60.51790248699996,-18.100884167999936],[-60.64357755799989,-18.048003410999968],[-60.787860621999926,-18.09125570799995],[-60.87919654399997,-18.08103347399998],[-61.01816950499983,-18.02856762199997],[-61.19248157499999,-18.02845446599997],[-61.49211852099995,-17.97338904999998],[-61.70456355699997,-17.966223360999948],[-61.72890057999996,-17.90935365699994],[-61.819499565999934,-17.903269232999946],[-61.862350536999884,-17.963948511999945],[-62.07936857199985,-17.97788057699995],[-62.420566513999916,-18.030123637999964],[-62.559856477999915,-18.065752258999908],[-62.97133248699993,-18.19958912399983],[-63.13089358099995,-18.129776419999928],[-63.17984758399996,-18.029124514999978],[-63.21347862899995,-17.846489717999816],[-63.28097960399998,-17.688063365999938],[-63.42206949799993,-17.58807832499997],[-63.37832652499986,-17.729472649999877],[-63.435745578999956,-17.90526496399997],[-63.55698058899998,-17.9591077959999],[-63.65917157899992,-17.933047284999873],[-63.664150596999946,-18.022544050999954],[-63.71916153099994,-18.09641543999993],[-63.63712348599989,-18.116708194999944],[-63.62716662299994,-18.171580994999943],[-63.679222599999946,-18.263053541999966],[-63.64850661299994,-18.299509121999904],[-63.534374595999964,-18.186634892999848],[-63.50756859899991,-18.310162687999934],[-63.56227459899998,-18.372631838999837],[-63.62406163099996,-18.379177602999903],[-63.659271490999856,-18.46019657599993],[-63.72729851499997,-18.516867293999894],[-63.70167151599992,-18.77616096599985],[-63.748493497999846,-18.833059503999948],[-63.748405487999946,-18.931169680999915],[-63.9057195609999,-18.954455445999884],[-63.964939550999986,-19.05080475199992],[-63.9070775969999,-19.128567020999867],[-63.86193048699994,-19.019858430999932],[-63.6906855229999,-19.056605364999882],[-63.741104514999904,-19.269667811999852],[-63.835586500999966,-19.27845841599992],[-63.831798550999906,-19.40003523999991],[-63.67979055799992,-19.551573343999905],[-63.60765053499995,-19.84378241399986],[-63.632595580999975,-19.969313316999887],[-63.72079449299997,-20.01607159599996],[-63.72336153499998,-19.847849145999874],[-63.77635159099992,-19.813587110999947],[-63.853374575999965,-19.867885079999894],[-63.796161548999976,-19.961199634999844],[-63.749519609999936,-20.10016773399991],[-63.89677053899993,-20.201818090999893],[-63.869537567999885,-20.26316239099998],[-63.63803459799988,-20.194228444999965],[-63.533863634999875,-20.259656743999983],[-63.52843853199988,-20.34564467699994],[-63.61947656199993,-20.479124305999846],[-63.617725581999935,-20.547514432999947],[-63.48537851599991,-20.723682423999946],[-63.499671504999924,-20.819792007999922],[-63.460361552999984,-20.849638623999965],[-63.48601554099997,-20.976899215999936],[-63.59438349099986,-21.014090223999972],[-63.68046161299998,-20.81833120999994],[-63.731689625999934,-20.854183124999906],[-63.81349951599992,-20.805910067999946],[-63.84368559899997,-20.885176552999894],[-63.92466350099994,-20.93914963899988],[-64.0768205249999,-20.911627994999947],[-63.903118488999894,-21.170484801999976],[-63.81176362299993,-21.1848557429999],[-63.79327062999994,-21.29875457599985],[-63.874557488999926,-21.599723237999967],[-63.78149455899984,-21.594396537999955],[-63.621871606999946,-21.927437211999973],[-63.621871606999946,-22.11794697499994],[-63.6467365229999,-22.215839892999895],[-63.934554481999896,-23.083838102999948],[-64.02623758299995,-23.18315024499998],[-64.06254563999983,-23.26857256699998],[-64.21223452899994,-23.312240605999932],[-64.2840495019999,-23.37049248599982],[-64.31422452099997,-23.445023530999833],[-64.49456753799996,-23.670697221999887],[-64.54908762799988,-23.67600698999985],[-64.68161054599994,-23.808855125999912],[-64.71036550299982,-23.7959317399999],[-64.85237153899993,-23.919151751999948],[-64.87663262299992,-23.974388996999835],[-64.98922756599995,-24.069737000999964],[-65.08671563799999,-24.10985228699991],[-65.25880449299996,-24.120362690999855],[-65.26485454999994,-24.20179153899994],[-65.11876652699988,-24.379369701999963],[-65.0609055789999,-24.604049801999963],[-65.09424560499997,-24.701209973999937],[-65.03039561899988,-24.825285944999962],[-65.16532162899995,-25.043941635999943],[-65.25550051399995,-25.122219894999944],[-65.32142652899995,-25.08782743699993],[-65.32137254999992,-24.858012582999947],[-65.38733661899994,-24.78288809999998],[-65.34719048799997,-24.68815666799992],[-65.34637459399994,-24.592393423999965],[-65.40660862599998,-24.59025151299994],[-65.52405551799995,-24.68881984399991],[-65.59967051099994,-24.803959197999973],[-65.54184761699997,-25.1928033989999],[-65.69652558199988,-25.414634991999947],[-65.62577058399995,-25.705314365999982],[-65.37069652999992,-25.47344326299998],[-65.33641052199994,-25.474492174999966],[-65.34429956999992,-25.72107770799994],[-65.23752552299993,-25.68225943799996],[-65.26570162499996,-25.610591650999936],[-65.2271886239999,-25.441643495999983],[-65.05073548099989,-25.250312641999983],[-65.01125353199996,-25.250053640999965],[-64.93744651499998,-25.413500082999917],[-65.0183635649999,-25.672568784999896],[-65.17056249799992,-26.0050233959999],[-65.34314756099991,-26.16747004399997],[-65.43309761999996,-26.21572566599997],[-65.54412849999989,-26.321432026999958],[-65.54588350299997,-26.552408611999965],[-65.34134662499997,-26.717948182999976],[-65.26271062699993,-26.72115191399996],[-65.1578825229999,-26.660733646999915],[-65.14144862799998,-26.363864908999915],[-65.08763161299993,-26.28095983899982],[-65.0293954899999,-26.099881058999983],[-64.95993063499992,-26.01203804299996],[-64.94004859299997,-25.86589369299992],[-64.80491655599991,-25.887579855999945],[-64.83808860899995,-26.01230492299993],[-64.80870852899989,-26.036001065999983],[-64.81632952299992,-26.20000456899993],[-64.85418655699988,-26.26253758999985],[-64.7038495789999,-26.414420859999893],[-64.71810149699996,-26.567706926999904],[-64.81108060799994,-26.71210431999998],[-65.0640635449999,-26.89587620599997],[-65.60361453199994,-27.170059154999876],[-65.66896856599993,-27.239632136999887],[-65.8102495679999,-27.606049548999977],[-65.76690657899991,-27.777089323999974],[-65.60856655999987,-28.038760439999976],[-65.60142551399991,-28.147619903999953],[-65.46483653399986,-28.468983412999933],[-65.4670795319999,-28.561115951999966],[-65.55169652099988,-28.737286625999957],[-65.5758975899999,-29.129752142999905],[-65.6345745999999,-29.10360932199984],[-65.61972052599992,-28.695620519999977],[-65.54972057099991,-28.56620058199985],[-65.54328159299996,-28.48721673499989],[-65.60883360799994,-28.337873850999983],[-65.74706259099997,-28.210178238999845],[-65.84999051799997,-28.01171740199993],[-65.91071355099996,-27.944770302999927],[-66.01313051699998,-28.13264228099996],[-65.91037760399996,-28.344387595999933],[-65.90763051899995,-28.39343664899991],[-66.06336963299992,-28.639911541999936],[-66.29855359899994,-28.841778615999942],[-66.40855451099992,-28.82833320499992],[-66.77637455099989,-28.965484777999905],[-66.91989854899998,-29.044729469999936],[-67.05440563199994,-29.152592325999933],[-67.04840854799994,-29.232785011999965],[-66.99210361599995,-29.333687032999933],[-67.01248957799993,-29.73662774999997],[-67.09846460299997,-29.953626505999978],[-67.20293463299998,-30.074703935999935],[-67.22130558499998,-30.226424429999952],[-67.30413052299997,-30.345218963999912],[-67.41436763799993,-30.34048318899994],[-67.52787754999991,-30.280610583999874],[-67.61734061999988,-30.274749621999888],[-67.7200854859999,-30.399001278999947],[-67.65148161999997,-30.502724480999916],[-67.36106862399993,-30.770365857999877],[-67.2837826149999,-30.894323476999944],[-67.26477849399998,-31.030835510999964],[-67.22367062299992,-31.074282937999897],[-67.23564148999998,-31.35398050999993],[-67.32563060799993,-31.510917061999976],[-67.40148951399993,-31.54358703899993],[-67.4093326279999,-31.878285819999974],[-67.2883075019999,-32.14141438099995],[-67.26160460199992,-32.344933527999956],[-67.18634064399993,-32.40544064299996],[-67.22307550799997,-32.51627723099989],[-67.09947948399997,-33.13789308499992],[-66.99125654099993,-33.24399993299994],[-67.07382163999995,-33.36405644699988],[-67.07331051199998,-33.554128841999955],[-66.99903159399992,-33.67428442999994],[-66.97434957199994,-33.7677228689999],[-66.90670761299998,-33.86864986799998],[-66.72328156399988,-33.52678271499997],[-66.50428053899992,-33.41908196499992],[-66.45077549799993,-33.549589873999935],[-66.34941062799993,-33.54872419099996],[-66.34540558699996,-33.62046087699997],[-66.26824161899987,-33.619458065999936],[-66.12237554899997,-33.53481241099996],[-65.98256657699994,-33.116439938999974],[-65.77315562299992,-32.78505971999988],[-65.69093351099997,-32.82194663199988],[-65.59709156699995,-32.90656932099989],[-65.35797849999994,-33.04544706299998],[-65.39399754999988,-33.17474194299996],[-65.39604960799994,-33.290716637999935],[-65.33847062699994,-33.37530512799998],[-65.23266552699982,-33.41653302799989],[-65.0095675959999,-33.3539896129999],[-64.89395851999996,-33.14620105999995],[-64.93235048599996,-33.02698759799995],[-64.75915555599994,-32.92975031199995],[-64.70822157999999,-32.82522781199992],[-64.54249559599998,-32.65604295199984],[-64.46154753399998,-32.51401143499993],[-64.4541935869999,-32.28318656199997],[-64.33176449199993,-32.28282882199994],[-64.3364486349999,-32.56501565099995],[-64.18573748899985,-32.52680087799996],[-64.18330355199998,-32.17677193099996],[-64.32550857399985,-31.932454036999957],[-64.31393450699994,-31.411025562999953],[-64.27110247899992,-31.31360873799997],[-64.15678354599987,-31.176910625999938],[-64.15927162999992,-31.047820095999896],[-64.26552549599995,-31.085160804999873],[-64.27079050499987,-30.947729610999943],[-64.41060651699996,-30.713955648999956],[-64.38404862499988,-30.646667071999957],[-64.27304858899998,-30.666762348999953],[-64.22663162099991,-30.784514174999913],[-64.17463649599989,-30.824444890999928],[-64.07904055499995,-30.824261829999898],[-63.99871459799988,-30.75608728599991],[-63.943427563999876,-30.621310975999904],[-63.881755532999875,-30.53303914199995],[-63.916541603999974,-30.3913182579999],[-63.79884358999993,-30.28895325999997],[-63.755851634999885,-30.42213030199997],[-63.69432863399999,-30.51550872699994],[-63.53795651799987,-30.63817553299998],[-62.95021461699997,-30.864741393999964],[-62.830097585999965,-30.8941254959999],[-62.56837047999994,-30.850396771999954],[-62.37513358099994,-30.796136856999965],[-62.26296963499993,-30.690196473999947],[-62.258369478999896,-30.594482180999933],[-62.33620450199999,-30.471241548999956],[-62.32744558099995,-30.263088215999915],[-62.12956259299989,-30.079365782999957],[-61.74356857599997,-29.854795149999916],[-61.58668147599997,-29.745726472999877],[-61.55268447699984,-29.08410195099998],[-61.64297048199995,-28.22106180499992],[-61.76688350999996,-28.054125641999974],[-61.977039615999956,-28.01624513899992],[-62.04983560699992,-28.050621837999984],[-62.15508263899994,-28.045251049999933],[-62.378837543999964,-27.919875212999955],[-62.4332275459999,-27.861538674999963],[-62.43942663399997,-27.754129111999873],[-62.32849449199995,-27.656809348999957],[-62.21225358899994,-27.524608965999903],[-62.129188592999924,-27.523511942999903],[-61.824981497999886,-27.839666601999852],[-61.69715160699991,-27.877547104999962],[-61.59605764099996,-27.75131027799989],[-61.62925752099994,-27.592298198999856],[-61.560981554999955,-27.52323416599984],[-61.46457256999997,-27.587005361999957],[-61.386917588999836,-27.456648829999892],[-61.295822562999945,-27.489419556999962],[-61.36360550499984,-27.6290454679999],[-61.334339586999874,-27.78092806799998],[-61.36628754599997,-27.819029350999926],[-61.32660661099993,-28.085200373999896],[-61.28227656899992,-28.113537241999893],[-61.14791147599993,-28.106451515999936],[-61.0140345449999,-27.885530531999905],[-60.75199563199993,-27.802969120999876],[-60.74060462499989,-27.677197322999916],[-60.679363590999856,-27.58533451399984],[-60.66712953199993,-27.506085630999905],[-60.57260161299996,-27.550158850999935],[-60.50678255099996,-27.41987356599992],[-60.390842556999985,-27.359157237999966],[-60.3896675819999,-27.30302664999988],[-60.479041636999966,-27.25169771899988],[-60.490623582999945,-27.179360720999966],[-60.35593058999996,-27.125065098999926],[-60.38897657799993,-26.943823206999923],[-60.35784149599988,-26.900813146999894],[-60.35055560999996,-26.672614155999895],[-60.293113589999905,-26.492532318999963],[-60.25741556699995,-26.250089121999963],[-60.292182527999955,-26.21568191299997],[-60.301380492999954,-26.08122176899991],[-60.396968554999944,-25.960875408999982],[-60.4129945869999,-25.87319148099988],[-60.49006652199995,-25.775905915999886],[-60.423973538999974,-25.751896959999897],[-60.33290047199995,-25.81041739699998],[-60.28804052699991,-25.893368565999936],[-60.11330751699995,-26.011614085999952],[-60.01523556199999,-25.993260902999907],[-60.00122051699992,-25.90560513899993],[-60.1307185739999,-25.714090888999976],[-60.22000461799996,-25.665178292999826],[-60.22550549399983,-25.60574188199996],[-60.15400350099998,-25.561139092999895],[-60.03860447599993,-25.686482240999908],[-60.00586660599993,-25.787713502999964],[-59.93613051199998,-25.786008623999862],[-59.87738460299988,-25.69886164099995],[-59.79430753699995,-25.651214712999888],[-59.79710357199991,-25.546399851999922],[-59.90486953399983,-25.521124054999973],[-60.050605516999894,-25.311234828999943],[-60.050361603999875,-25.10128575599998],[-60.022659580999914,-24.997589878999918],[-59.87721662999985,-25.053666990999943],[-59.701568483999836,-25.058217860999946],[-59.64925350599998,-25.03213404899998],[-59.76501462899989,-24.9428553809999],[-59.77235063899997,-24.87519380899994],[-59.855224526999905,-24.70345297099982],[-59.88238558199998,-24.400200742999914],[-59.841648525999915,-24.083369495999932],[-59.72606258399992,-23.632394103999957],[-59.72487252199994,-23.515272093999897],[-59.80138052199993,-23.381433886999957],[-59.76607158699994,-23.329898425999943],[-59.78253163399995,-23.195812617999877],[-59.89186450799997,-23.127537154999914],[-59.88879354699992,-23.04030735899994],[-59.763767569999914,-22.890803375999837],[-59.63549762899993,-22.908964277999928],[-59.54926662099996,-22.788397472999975],[-59.62525561399991,-22.6661329989999],[-59.70668462999993,-22.58022955499996],[-59.47910657099993,-22.54195661199998],[-59.309692548999976,-22.49054436499995],[-59.2413555629999,-22.502546578999954],[-59.21768154799997,-22.57312086299993],[-59.247596560999966,-22.700759143999903],[-59.198402500999975,-22.83016449699994],[-59.079502521999984,-22.91841487299996],[-58.968910517999916,-22.935413875999927],[-58.714885541999934,-22.85806584099987],[-58.61437948199995,-22.84020584899997],[-58.46866260999985,-22.777673330999903],[-58.37891354899995,-22.704938024999876],[-58.23577461499991,-22.499062892999916],[-58.06506357799992,-22.293853785999943],[-58.14369555299987,-22.212279092999893],[-58.34712551699994,-22.20243169799994],[-58.431915507999975,-22.15481913499997],[-58.53831454899995,-22.173830967999947],[-58.63956860999997,-22.15867195999988],[-58.68985751499997,-22.110901482999907],[-58.605247565999946,-22.029808748999926],[-59.03566349199997,-21.922896567999942],[-59.05338652299997,-21.860828909999896],[-58.867626616999985,-21.821250233999933],[-58.63175952599994,-21.86229792199987],[-58.50769461899995,-21.84035091499993],[-58.33116955799994,-21.772675595999885],[-58.11175949599988,-21.78056816399993],[-58.05207850099987,-21.744513238999957],[-57.990444522999894,-21.502770266999903],[-58.08952750399993,-21.469969029999902],[-58.23511462399995,-21.536416399999894],[-58.255649615999914,-21.473161863999962],[-58.18439857799996,-21.393834190999883],[-58.20157259499996,-21.342504254999938],[-58.30212358099982,-21.357112402999974],[-58.50390650099996,-21.436920861999965],[-58.74740950599988,-21.50915207999992],[-58.649375603999886,-21.399059972999908],[-58.45034060799992,-21.32524423999996],[-58.38618451499997,-21.232779274999928],[-58.54493759399992,-21.215864090999958],[-58.957458490999954,-21.222006852999925],[-58.943687526999895,-21.194146411999895],[-58.77943457899994,-21.132471865999946],[-58.56942750299993,-21.12764807999997],[-58.33021150699989,-21.084498545999907],[-58.043907486999956,-20.99159252499993],[-58.00138458299995,-20.733069987999954],[-58.0269205539999,-20.38072981499994],[-58.13239255699989,-20.1663309569999],[-58.14702953899996,-20.10127565399995],[-58.23229562199998,-20.101252686999885],[-58.24259161699996,-19.81837300999996],[-58.458717481999884,-19.696799874999954],[-58.54998752299997,-19.681648913999936],[-58.579067529999975,-19.63215981099995],[-58.56713857299991,-19.45204913999993],[-58.63241163799995,-19.295032455999944],[-58.616619629999946,-19.203498720999903],[-58.67721559299997,-19.156492336999975],[-58.76173350799996,-19.222574590999955],[-58.79761861499992,-19.1557485269999],[-58.774475508999956,-19.081713858999933],[-58.83924850999995,-19.018053638999902],[-58.81034854599989,-18.97367632299995],[-58.88558953799998,-18.885516471999892],[-59.065448584999956,-18.82789289899995],[-59.00073962099992,-18.75637497999992],[-59.04307158499995,-18.659478838999917],[-59.10432854499999,-18.623451071999966]],[[-64.71134953899997,-24.986840255999937],[-64.81662758399989,-24.962582524999846],[-64.81410949199994,-24.81415544799995],[-64.69302351299996,-24.606092806999982],[-64.54596754799991,-24.416846866999947],[-64.57935350699995,-24.353730968999912],[-64.56957249599998,-23.941914486999963],[-64.51847054699988,-23.855252815999904],[-64.25587457299991,-23.737609954999982],[-64.12113162299994,-23.795867031999876],[-64.04222153699988,-23.940880662999973],[-64.04256452399994,-24.00430836799984],[-63.97993058499998,-24.09444299599994],[-63.98746859799991,-24.36138884299993],[-64.03165463899995,-24.460088937999956],[-64.21607260199988,-24.6394869799999],[-64.44969149899998,-24.69952219399994],[-64.5796886149999,-24.903066150999962],[-64.67518648799984,-24.930272970999965],[-64.71134953899997,-24.986840255999937]],[[-64.68325758999998,-25.157732006999936],[-64.75521052899995,-25.194260508999946],[-64.75790363499993,-25.05784771599997],[-64.67611654399997,-25.088256254999976],[-64.68325758999998,-25.157732006999936]]]},"properties":{"objectid":208,"eco_name":"Dry Chaco","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Neotropic","eco_biome_":"NO07","nnh":2,"eco_id":569,"shape_leng":82.962400814,"shape_area":70.6246291031,"nnh_name":"Nature Could Reach Half Protected","color":"#D4D20E","color_bio":"#FEAA01","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":790164.6167544662,"percentage":3.6856384900306347}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[37.75789783800013,-5.241276395999819],[37.821857424000086,-5.193103926999868],[37.8353148540001,-5.118580213999962],[37.74177359100014,-5.078696290999972],[37.730181619000064,-5.197185547999936],[37.75789783800013,-5.241276395999819]]],[[[37.910334127,-4.802836807999938],[37.861623129,-4.797297607999894],[37.719629669000085,-4.953636177999897],[37.79978290200006,-5.020385896999926],[37.90356831500014,-4.970488656999919],[37.88830890100019,-4.895972079999979],[37.910334127,-4.802836807999938]]],[[[38.11583333300018,-4.47],[38.105,-4.465833332999978],[38.086666665999985,-4.485],[38.01916666700015,-4.5625],[38.0175,-4.568333332999885],[38.099166667000134,-4.665],[38.15500000000014,-4.576666666999927],[38.11583333300018,-4.47]]],[[[35.51141940800011,-4.5725],[35.55419292800019,-4.509365116999959],[35.479284495,-4.463862221999932],[35.41675654799997,-4.53618662599996],[35.50416666600006,-4.578333332999875],[35.51141940800011,-4.5725]]],[[[35.89583333300004,-3.442499999999825],[35.81437369600013,-3.419051789999912],[35.73196153300012,-3.597667834999925],[35.752879710000116,-3.670296489999942],[35.73066660200004,-3.74760478099995],[35.777414821000036,-3.775585088999946],[35.87825210699998,-3.66293486099994],[35.864191579000135,-3.57429865499995],[35.90166666700003,-3.476666666999961],[35.89583333300004,-3.442499999999825]]],[[[35.333333333000155,-3.475833332999969],[35.340000000000146,-3.413333332999912],[35.288333334000185,-3.330833333999919],[35.185000000000116,-3.447499999999877],[35.079166667000095,-3.524166665999871],[34.967315592000034,-3.611594615999934],[34.81565946500007,-3.63256728399989],[34.73968059900005,-3.690183325999953],[34.87083357600005,-3.757257656999911],[35.079640250000125,-3.700662612999963],[35.17608877900011,-3.652081679999981],[35.22490143400006,-3.54634217399996],[35.333333333000155,-3.475833332999969]]],[[[36.268888398000115,-3.077162264999913],[36.12239373200009,-3.074140710999927],[36.15337174600012,-3.185356559999889],[36.268888398000115,-3.077162264999913]]],[[[35.92916666700006,-2.574999999999875],[36.011666667000156,-2.586666666999918],[36.084166667000034,-2.443333332999941],[36.12416666700011,-2.307499999999891],[36.108333334000065,-2.191666665999946],[36.00250000000011,-2.145],[35.96833333400019,-2.190833332999944],[35.97666666700002,-2.341666665999981],[36.02500000000015,-2.508333333999815],[35.9500000000001,-2.498333332999835],[35.92916666700006,-2.574999999999875]]]]},"properties":{"objectid":210,"eco_name":"East African halophytics","biome_num":9,"biome_name":"Flooded Grasslands & Savannas","realm":"Afrotropic","eco_biome_":"AF09","nnh":3,"eco_id":69,"shape_leng":11.2567516124,"shape_area":0.307354702988,"nnh_name":"Nature Could Recover","color":"#C3E8FA","color_bio":"#BEE7FF","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":3800.4392014924547,"percentage":0.32865453872775147}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[78.45071992300018,-68.41025459199994],[78.22799992700016,-68.43594815299991],[78.20980884100015,-68.53840991799996],[78.02724924300014,-68.54130519699999],[77.8855462410001,-68.62858464699991],[78.23736637200005,-68.65343666499996],[78.5729467270001,-68.60935940399986],[78.45071992300018,-68.41025459199994]]],[[[100.73398812699998,-66.20960449099988],[100.48539754600006,-66.27106381499988],[100.534086866,-66.32625548299995],[100.82305108100007,-66.34901487399998],[100.96484745800012,-66.33100483999993],[101.13211309500008,-66.20628123299997],[100.73398812699998,-66.20960449099988]]]]},"properties":{"objectid":213,"eco_name":"East Antarctic tundra","biome_num":11,"biome_name":"Tundra","realm":"Antarctica","eco_biome_":"AN11","nnh":1,"eco_id":120,"shape_leng":39.7922609386,"shape_area":0.228137691898,"nnh_name":"Half Protected","color":"#75CCFA","color_bio":"#9ED7C2","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":1080.5690664625668,"percentage":0.012645399683452295}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[57.55904911100015,20.881998106000026],[57.55653100900014,20.756812477000153],[57.64088741699999,20.754833968000128],[57.55904911100015,20.881998106000026]]],[[[58.21609379800003,20.62569132300007],[58.31340044300015,20.760319833000096],[58.28839929000003,20.83127634200008],[58.13965142400002,20.859964716000036],[58.00322426900016,20.776957290999974],[58.05340644000006,20.99198519200013],[58.02067111700006,20.99855024300018],[57.9355952520001,20.729922748000092],[57.84908047100009,20.521729694000157],[57.76805155400018,20.502034541000114],[57.74008263900015,20.63468454300005],[57.63306331500013,20.653120645000115],[57.490610703000186,20.53072291500007],[57.30436110700009,20.234576165000192],[57.27648212400004,20.026562976000093],[57.330531379000035,19.903535720000036],[57.31173554800017,19.769446803000164],[57.346089650000124,19.65802080100019],[57.411920024000096,19.548573308000073],[57.54115260200007,19.573034868000036],[57.616335925000044,19.516017850000082],[57.7029406370001,19.58544551200015],[57.71355263800018,19.643811513000117],[57.69091420500013,19.646241360000147],[57.679030378000164,19.651275886000178],[57.67526620700005,19.654960124000183],[57.66439072999998,19.659575902000142],[57.6740626510001,19.714893343000085],[57.740277100000185,19.804166667000175],[57.816884741000024,19.981686805000095],[57.835984294000184,20.097349040000154],[57.826041667000084,20.204166667000095],[57.99213053400018,20.43286946600017],[58.06599528000004,20.459004720000053],[58.079781433,20.56183945700019],[58.08928938900016,20.61552898300016],[58.21609379800003,20.62569132300007]]],[[[59.283319270000106,21.9600154420001],[59.091943538000066,22.156787107000127],[59.051743843000054,22.285300226000174],[58.99175906200014,22.342137380000167],[58.831050213000026,22.36183253300004],[58.72537987200013,22.408777143000066],[58.67312926200003,22.467233076000127],[58.55783617500015,22.327388498000175],[58.50324732700017,22.18394663200013],[58.40441183400003,22.01838144300018],[58.4338196650001,21.879166390000023],[58.48867831000007,21.794450254000083],[58.501628547000166,21.618273065000153],[58.537151768000115,21.532567674000177],[58.62456587100007,21.470694317000095],[58.59974458300019,21.235071941000115],[58.534813531,21.106109160000187],[58.51700695400007,21.015187701000116],[58.601453294000066,20.91176566500019],[58.69201502400017,20.878041089000078],[58.74650298200015,20.872866042000112],[58.80416666700006,20.98988037100014],[59.0253519690001,21.24131469700012],[59.183864340000184,21.3661356610001],[59.29951377600014,21.408217229000115],[59.32181025300014,21.54201055500016],[59.2524725240001,21.583649166000157],[59.33700879500003,21.82520706800011],[59.283319270000106,21.9600154420001]]]]},"properties":{"objectid":214,"eco_name":"East Arabian fog shrublands and sand desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Palearctic","eco_biome_":"PA13","nnh":2,"eco_id":821,"shape_leng":11.7632800052,"shape_area":1.53083092483,"nnh_name":"Nature Could Reach Half Protected","color":"#734C00","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":17694.4556245043,"percentage":0.06706972850953452}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[26.04019431500012,29.142545803000075],[26.013837658000114,29.09176828200009],[25.843243434000044,29.111436081000136],[25.574178617000143,29.097674395000126],[25.307336025000154,29.201408947000175],[25.30590510800016,29.23138687100004],[25.608831985000165,29.25757575800003],[25.570297419000156,29.27823473100011],[25.268279619000168,29.348389722000036],[23.521770946000117,29.418250069000123],[22.520712990000163,29.404897724000193],[22.333025800000144,29.395434504000036],[22.15982024000016,29.36557620100018],[22.049360837000165,29.321580323000035],[21.897728324000184,29.186540521000097],[21.809622736999984,29.061157327000103],[21.569694638000044,28.612031020000188],[21.283293832000084,28.201098447999982],[21.11639193900004,27.996183557000165],[20.98127761900014,27.853159364000078],[20.821991400000115,27.712593491000064],[20.67982092200009,27.61349005800014],[20.517244339,27.530561447000025],[20.306965813000033,27.486689285000182],[20.09006739800003,27.492808713999977],[19.643331665000176,27.560325545000183],[19.301755815000092,27.58559242300015],[19.14349474,27.56460021400011],[19.02495002700016,27.523435592999988],[18.86923498400006,27.41827197800012],[18.52451397300007,27.09637079400005],[18.374796074000074,27.01017767800016],[18.258344506000128,26.983082744000058],[17.793152656000075,26.98863715400006],[17.64274526500003,26.959691858000042],[17.568768816000045,26.9207862720001],[17.44912919500007,26.79870478099997],[17.315348642000117,26.633076325000047],[17.220501033000062,26.56405215900014],[17.11118377600002,26.57216750400005],[17.041039305000083,26.618246923000186],[16.91760112999998,26.749878893000073],[16.752678872000047,26.957433063999986],[16.558172723999974,27.138362599],[15.778163151000058,27.398365790000128],[13.717646136000155,27.591539260000047],[13.631418649000125,27.63506754200006],[13.282760714000176,27.87240646500004],[13.152995199000088,27.92032184599998],[12.949784164000164,27.937102103000086],[12.738700035000022,27.911474098000156],[12.568557639,27.868883058000108],[12.296584800000062,27.770049244000177],[12.04640558300008,27.628829770000152],[11.878595365000137,27.503118353000104],[11.588202239000054,27.234217435000176],[11.50663562700015,27.125020091000067],[11.338245106000045,26.831860151000058],[11.239220282000133,26.683215698000026],[11.135924249000027,26.582405526],[10.979956601000083,26.522371650000025],[10.859645699000055,26.51908480500009],[10.451139566,26.5797924310001],[10.281180784000071,26.593313999000088],[10.13089860100007,26.550777852000067],[10.080713140000057,26.491351134000013],[10.046016873000099,26.36820761900003],[10.046450618000051,26.194895795000093],[10.084673283000086,25.861787038000102],[10.058092951000106,25.38334106100018],[9.906509962000143,25.097809956000162],[10.027459970000109,24.794060044000048],[10.128229993000105,24.657920041000068],[10.170599935000155,24.51654995600012],[10.233279941000092,24.514469928000153],[10.288309944000048,24.574489745000164],[10.30199989700003,24.690149825000105],[10.248030063000158,24.936119950000148],[10.230829920000133,25.080279951000023],[10.348219924000091,25.466840041000125],[10.34639002,25.566669941000043],[10.452539917000138,25.572879925000166],[10.473419934000162,25.473420019000116],[10.482819928000083,25.194930028000044],[10.532959920000167,24.627939968000135],[10.564750006000054,24.40025004400013],[10.626270040000065,24.270490060000043],[10.76091000100007,24.0896100060001],[10.796570062000171,23.928930004000165],[10.885939976000088,23.799839952000127],[11.039140186000168,23.689220028000022],[11.118059971000037,23.653000046999978],[11.276989983000135,23.692350015000102],[11.35155996200018,23.632419969000182],[11.456640009000068,23.443159956000102],[11.72650009300014,23.238570188000097],[11.813760055000046,23.127030032000107],[11.922180258000083,22.87055996300012],[12.050729928000067,22.726829979],[12.485179946000073,22.471659994000163],[12.545589999000185,22.337729922000165],[12.46800004500011,22.272320022000144],[12.345479939000086,22.25593995600002],[12.208929986000157,22.285870039000145],[12.024260046000165,22.372080042000107],[11.762700007000035,22.521970021000186],[11.643219942000087,22.61018999600003],[11.469820033000076,22.87448996100005],[11.345790027000021,22.935020059000067],[11.151629971000148,22.93799004400006],[10.982029980000164,22.908329976000175],[10.670680054,22.734450235999986],[10.520209913000087,22.736319920000142],[10.380259958000067,22.79446001900004],[10.282980059000181,22.90534995800016],[10.287850004000177,23.035730059000116],[10.42771001300008,23.336659955000187],[10.42571993100006,23.473770004000073],[10.36086995100004,23.598030068000014],[10.272610019000126,23.679180201000065],[10.103829753000014,23.747960003000173],[9.893190002999972,23.81479003200019],[9.734999979,23.88370994600018],[9.66233999299999,23.988530012000183],[9.660579969000025,24.06099004000015],[9.60298975600017,24.203169992000085],[9.439559970000118,24.343530074000057],[9.233509940000033,24.362339919000192],[9.082549935999964,24.268350010000063],[8.856159920000096,24.291289988000074],[8.78344994400004,24.40121005700007],[8.647749991000069,24.384669988000155],[8.603530079000052,24.453169919000118],[8.514689985000132,24.518879933000107],[8.403380062999986,24.520629923000115],[8.367260061000138,24.3687899950001],[8.322929785000042,24.32795001800008],[8.123599846000104,24.370429973000057],[8.117290058000094,24.241029951000087],[8.203619931000048,24.117489985000077],[8.29980991400015,24.11258008400017],[8.518559960000118,24.14964003200015],[8.532789941999965,24.10253004800012],[8.422639990999983,23.98366006800012],[8.570499932000132,23.878189960000157],[8.552380084000163,23.773429916],[8.424570050000113,23.66171004299997],[8.289760054000169,23.63086993700017],[8.406059967000033,23.546820227000126],[8.316439927999966,23.396330020000164],[8.377830060000122,23.381680054000014],[8.583679955000036,23.52330994400012],[8.801939961000187,23.553830046000087],[8.920370067000022,23.492800051000188],[8.899539864000019,23.4235499240001],[8.731100021000145,23.37393007100013],[8.814219994000041,23.277389984000024],[8.827649965999967,23.218739955000046],[8.777690042000017,23.14636001700012],[8.626749752000023,23.10372991700001],[8.520610065000028,23.01656993400013],[9.072474235000072,22.405057545000147],[9.160646287000134,22.35114875500011],[9.334165256000176,22.29000638400015],[9.818893163999974,22.210033068000087],[10.044864459000166,22.146802508000064],[10.23129513400005,22.026487644000042],[10.454847224,21.742349054000044],[10.55622397500008,21.63561347600006],[10.673424566000108,21.559495535000167],[10.965510894999966,21.462441446000184],[11.17633317900004,21.435079125000073],[11.37547431900009,21.433906199000035],[11.701519873000052,21.475086368000177],[11.918194530000164,21.53126587700018],[12.179454267000153,21.635557435000123],[12.402315117000114,21.7803216100001],[12.546704838000153,21.91143721500015],[12.824238630000082,22.134798204000163],[12.967385694000086,22.231528136000065],[13.300103897000156,22.42494775400013],[13.74631063400011,22.633390790000135],[14.11781597200013,22.76957313200012],[14.537897454000017,22.88635088900014],[14.909081282000159,22.95472801699998],[15.32178599200006,23.012522049000154],[15.578104622000183,23.011653074000094],[15.771593620000147,22.9373222210001],[15.980830678000132,22.770408809000116],[16.211103827000045,22.521555462000094],[16.517059614000175,22.093769944000087],[16.559339962000138,22.109090018000074],[16.91847983700012,22.11364999100016],[17.395679824000126,22.04242016700016],[17.974119807000022,21.85383008600013],[18.03939980500013,21.907639918000086],[18.30756992000005,21.928619914000137],[18.45264980200011,21.97153006200017],[18.60349979299997,22.055579948],[18.66841982900013,22.1237600500001],[18.70558979000009,22.245369957000037],[18.766269857,22.270300017000068],[18.918329810000046,22.280410075000077],[19.014599882000084,22.353789983000183],[18.980309961000046,22.435810007000157],[18.863099849000037,22.594829966000134],[19.068399857000088,22.76161997400004],[19.189019828000028,22.78889004300015],[19.330579838000176,22.741340009000112],[19.399199814000042,22.816909957],[19.574999932000082,23.079139927000085],[19.687569805000123,23.060920101000136],[19.690270127000076,22.967850071000043],[19.637829907000082,22.72114999100006],[19.576499798000043,22.499090065000132],[19.555829949000156,22.369950024000104],[19.56613979000008,22.13376995300007],[19.6001598740001,22.055319966000184],[19.571859911000104,21.859379996000143],[19.499649832000102,21.792799915000046],[19.10878992700009,21.55897992000007],[19.062720045000162,21.385199983000064],[18.959069807000162,21.079900215000123],[18.94618989800017,20.999179923000042],[19.548571412000058,21.02799262100018],[20.848225374000037,21.15828920900009],[22.255986637000092,21.03031091200006],[22.702152391000084,21.01277587100003],[23.06935123500017,21.00591837400009],[23.51037884700014,21.0079051190001],[24.007265135000182,21.02555252700006],[24.3013966150001,21.04471645300015],[24.788329518000182,21.09258485500004],[25.56260141100006,21.229529752000133],[25.952695843000186,21.30458231300014],[26.388813853000045,21.367590179],[26.65426360500004,21.376258481000093],[26.963446309000062,21.363434626000185],[27.253519551000124,21.367520165000087],[27.57386436200011,21.348716245000162],[28.266246910000064,21.290478461000077],[28.919804269000053,21.264595001000032],[29.73513325100015,21.248417839000183],[29.96808438900007,21.264595001000032],[30.547226800000146,21.348716245000162],[30.699996663000093,21.397952268000154],[30.75781308200004,21.549500564000027],[30.73814944300011,21.761111334000077],[30.618061792000162,22.00243957900011],[30.5157094220001,22.24606362500009],[30.479655954000066,22.380721998000183],[30.468540232000123,22.55608952000017],[30.524934411000174,22.80258496300013],[30.58633141000007,22.959558183000127],[30.705809436000095,23.156885572000135],[30.873553687000026,23.27558437800002],[31.051819442000067,23.336518617000024],[31.208263328000157,23.368171098000175],[31.58388942900001,23.418706480000083],[31.89491146400013,23.48609630400017],[32.04821790000017,23.551475735000054],[32.163979895000125,23.63884899100009],[32.67837056000013,24.603331488000094],[32.727084350000155,24.731205188000047],[32.680084555000064,24.846022355],[32.38985059700008,25.183664023],[32.338195609000024,25.3272681520001],[32.32702655600002,25.529256597000142],[32.35258851100019,25.644022453],[32.44490059000009,25.754111208000097],[32.487010601,25.860357195000176],[32.20586061300003,25.88913008900016],[32.09628650700017,25.93292687500019],[31.81978445300018,26.132942889000162],[31.694143580000116,26.261188858000082],[31.43159253300007,26.641951730000187],[31.364534457000104,26.72209814700011],[31.185312603000057,26.886898936000023],[31.005721789000063,27.08526900900017],[30.78033659300013,27.38248918800008],[30.687206122000077,27.653847106000114],[30.635776591000138,27.905840973000068],[30.60296244500006,28.22842874300011],[30.61238253099998,28.368609871000046],[30.667577531,28.63636406900008],[30.704698466000025,28.754096113000116],[30.798909960000117,28.958384936000186],[30.626904886000148,28.98711636300004],[30.468908719000126,28.970700734000104],[30.37065961600001,28.937737673000072],[30.28892344899998,28.8655051450001],[30.075047359000052,28.51002483500008],[30.015146255000047,28.44468498200007],[29.891455395000094,28.38902211800007],[29.765999744000112,28.377458239000134],[29.544205622000106,28.40690119700014],[29.01249614500017,28.540724095000144],[28.789539426000033,28.555775407000056],[28.679606414000148,28.5214728090001],[28.593310060000192,28.427208636000046],[28.497866953000084,28.163152391000153],[28.429216566000093,28.09354508700011],[28.254317695000054,27.995660236000106],[28.09633372500008,27.95000056300006],[27.959230559000105,27.935967870000127],[27.831090933000155,27.95079243500004],[27.751582168000027,27.985456360000114],[27.691318148,28.061692611000183],[27.55211654600015,28.293695280000065],[27.479042889000084,28.362831063999977],[27.06406489000011,28.660739582000133],[26.937477564000176,28.72450913700004],[26.718071970000153,28.803518300000064],[26.648269962000143,28.777530069000136],[26.611740544000156,28.86731715500008],[26.44649358600003,28.966465330000176],[26.366750140000136,28.938630232000094],[26.32209282900004,29.041105785000184],[26.204409794000128,29.107217914000103],[26.04019431500012,29.142545803000075]],[[24.99369980200015,22.035069925000073],[25.027309935000062,22.083579972000052],[25.198909863999972,22.05064998100005],[25.269359920000113,21.9441600130001],[25.18773981300012,21.824660057000017],[25.021169831000066,21.80597993800012],[24.98916992900007,21.779340197000124],[24.83609979700003,21.80248999100013],[24.78195992800005,21.930690085000094],[24.817809914000122,22.018380064000155],[24.99369980200015,22.035069925000073]]]},"properties":{"objectid":218,"eco_name":"East Sahara Desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Palearctic","eco_biome_":"PA13","nnh":2,"eco_id":822,"shape_leng":81.1761409611,"shape_area":137.457208457,"nnh_name":"Nature Could Reach Half Protected","color":"#D47A55","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":1544403.878801744,"percentage":5.8539664095038715}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[24.58826991800015,12.770310016000053],[24.620639990000086,12.83683007400009],[24.55708991700004,12.932540051000046],[24.565200037000125,13.018719954000062],[24.527209999000092,13.068709977000083],[24.580720069000165,13.150210038000125],[24.560790032,13.20675997300009],[24.45409993000004,13.35013017200015],[24.354700047000108,13.289280069000029],[24.30816001500017,13.11580992800009],[24.213159927,13.006139983000025],[24.190930013000127,12.93652003800014],[24.26208995700017,12.813349890000097],[24.41898993100017,12.76933997000009],[24.510660074000043,12.707060057000149],[24.58826991800015,12.770310016000053]]],[[[22.527620008000042,15.826840062000144],[22.362330042000053,15.674860022000075],[22.358080040000118,15.614029986000105],[22.279990014000077,15.589760001000116],[22.177480033,15.66267996800002],[22.133770051000113,15.56147007200019],[22.083499981000102,15.530130069000109],[22.04728,15.403280047000123],[21.990429951000124,15.424840029000165],[21.87180006300008,15.343050063000021],[21.854619986000102,15.199640083000133],[21.87197995500003,15.10576001000004],[21.803679983000166,14.958800060000044],[21.871699907000107,14.845440032999988],[22.00773993100006,14.80657007100018],[22.124349991000145,14.829250068000078],[22.211800054000093,14.894019959000161],[22.275999993000084,15.005490060000113],[22.209709993000047,15.092189927000163],[22.27964976700008,15.13267997600019],[22.323629940000046,15.07305004400007],[22.387990056999968,15.086380036000037],[22.34323997200005,15.270879940000157],[22.305529983000042,15.338599925999972],[22.375759837000032,15.401329922000116],[22.456949927000096,15.419640047000144],[22.55716003000009,15.623020030000191],[22.57891997100012,15.774620042000095],[22.527620008000042,15.826840062000144]]],[[[23.833374260000085,17.51992273100018],[23.875580034000052,17.56477003600014],[23.96439002800014,17.582709815000044],[24.06734973900012,17.74347008300009],[24.007609970000033,17.851109989000122],[23.859829943000136,17.828049965000105],[23.730690078000066,17.856650042000126],[23.607729922000033,17.75372993500008],[23.464799949000167,17.60292007600009],[23.440149937000058,17.654669946000183],[23.323019913999985,17.649710055000014],[23.24235999600012,17.49548998500012],[23.187059979000026,17.487929928000142],[23.004470067000057,17.70351003000019],[22.98385003200019,17.798480019000067],[22.902829801999985,17.76833994400016],[22.96669987900009,17.572530052000047],[22.833110053000155,17.517880077000086],[22.830749977000096,17.42932003100009],[22.76502993000014,17.382640063999986],[22.603650072000164,17.395609920000027],[22.66454998800009,17.475999999000067],[22.61172005900005,17.572659955000063],[22.451379951000035,17.533800027000154],[22.346670073000098,17.46773005200015],[22.147050054000147,17.544339751],[22.04315990100008,17.408749986000146],[21.942233299000065,17.42278360800009],[21.963299994000067,17.311129841000024],[21.88738997500019,17.275849983],[21.86596992900013,17.21823002200017],[22.017789967000112,17.132250077000037],[22.023299920000113,17.014850040000056],[22.202889924000033,17.047199870000043],[22.253309963000106,17.002160056000093],[22.25662001900008,16.908219960000054],[22.422770018000108,16.79699998400008],[22.553629950000072,16.848530004999986],[22.56014990600005,16.71320004600011],[22.60045002900017,16.654570084000113],[22.47037004100008,16.644129987000042],[22.47780002000013,16.548950007000087],[22.404539806000173,16.532889945000022],[22.357179874000053,16.46913991300005],[22.36729996600002,16.383550028000172],[22.454480015000172,16.442630074000135],[22.56757002700016,16.44663998500016],[22.634290044000124,16.39144998100005],[22.545420027000148,16.332739929000127],[22.58384993800007,16.22670004400004],[22.689790019000043,16.159250073000067],[22.750429954000026,16.162440083000092],[22.757640084000116,16.066390035000097],[23.113310077000108,15.979989929999988],[23.104900019000013,16.13008004400018],[23.01906001000009,16.200590122000108],[22.988150024,16.313469967],[23.04052001200006,16.355570070000056],[23.13507001800008,16.329679998000188],[23.236759921000157,16.237920084999985],[23.340679997000052,16.226309984000125],[23.45167994800005,16.278199966000045],[23.352829951000103,16.388820066000108],[23.284770071000025,16.42459999700003],[23.15901999800019,16.442310070000133],[23.165179817000137,16.540560015000096],[23.396439954000186,16.711949952000055],[23.388010006000115,16.81136004500013],[23.488410035000186,16.848210000999984],[23.455790015000048,16.94310007700011],[23.657220048,16.992330045000017],[23.760349970000107,17.053740067000035],[23.67896995500007,17.124309817000096],[23.795490069000152,17.312269922000098],[23.80443998000004,17.49086998900009],[23.833374260000085,17.51992273100018]]]]},"properties":{"objectid":219,"eco_name":"East Saharan montane xeric woodlands","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Palearctic","eco_biome_":"PA13","nnh":2,"eco_id":823,"shape_leng":23.836105312,"shape_area":2.35131477481,"nnh_name":"Nature Could Reach Half Protected","color":"#FA774D","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":27933.09471820375,"percentage":0.10587865029238626}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[35.040000000000134,1.25416666700005],[35.06,1.38666666600011],[35.049166666000076,1.476666666000028],[34.98916666600019,1.4675],[34.91166666700019,1.379166667000106],[35.040000000000134,1.25416666700005]]],[[[33.68750000000017,7.974166667000191],[33.583333333000155,7.95],[33.46083333299998,7.958333333000041],[33.59166666599998,7.85],[33.775,7.93],[33.68750000000017,7.974166667000191]]],[[[29.115533543000083,9.377667288000112],[28.860439540000073,9.490954074000058],[28.547920448000013,9.599248431000149],[28.176609513000187,9.670742377000124],[27.762649443000157,9.732065219000049],[27.324624593000067,9.810277428000177],[27.02808283500002,9.810277428000177],[26.89193474700005,9.825551814999983],[26.786785381000186,9.858849115000055],[26.393329211000037,10.030143126000098],[26.140452914000093,10.095837686000039],[25.85606662900011,10.106609894000087],[25.739726785000187,10.089374361000182],[25.580298110000115,10.022586673000035],[25.3445272780001,9.955682890000162],[25.02303159600001,9.948825929000066],[24.41509249300009,10.04687391200008],[23.760044732000097,10.258786288000067],[23.46230930200005,10.277604111000187],[23.100557685000126,10.132914535000111],[22.767774597000084,10.1057028030001],[22.159835494000163,10.08609216700006],[21.89975560000005,10.158011243000033],[21.59263244100015,10.38135761400008],[21.26904152500009,10.640423466000186],[21.085208451000085,10.647926779000102],[20.88665055200005,10.604813957000033],[20.739780498000187,10.542519317000028],[20.723459591000108,10.490111802000115],[20.769329556000116,10.421296713],[20.98188054000019,10.414128174000098],[21.05091054100012,10.374051109000106],[21.064039452000088,10.25212844900011],[20.901100451000048,10.079960637000056],[20.659389497000063,9.94404606500018],[20.44791944399998,9.924925435000148],[20.342390445000092,9.954554290000033],[20.104759466000075,9.943067058999986],[19.99773949400003,9.965196624000043],[19.86352946600016,9.940011352000056],[19.626640453000107,9.836007692000123],[19.55446053200012,9.849887620000118],[19.5628504820001,9.963914864],[19.675090536000084,10.084220152000114],[19.7409494960001,10.258388222000178],[19.737451560000068,10.511513483000158],[19.79444146100019,10.642553308000174],[19.763219542000115,10.680818708000118],[19.94408426500013,10.875340508000022],[19.937695401000155,11.008632011000032],[19.83810506800006,11.105753993000064],[19.464597478000087,11.245809441000063],[18.615272472000186,11.391398238000022],[17.935815451000053,11.48845564800007],[17.368085110000095,11.52251654100013],[17.303299593000133,11.498791067000127],[17.293750250000073,11.36263267400011],[17.44156043600009,11.188614351000126],[17.535588492000045,11.046217814000101],[17.705730532000075,10.925051608],[17.853010461000167,10.77109331400004],[17.95138953000003,10.610923358000036],[18.008735494000177,10.454650485000172],[17.950080444000037,10.28940696300009],[17.814559486000064,10.204311703000087],[17.586509526000157,10.20395295700007],[17.522880487000123,10.277636592000135],[17.54334054500015,10.340453424000145],[17.428800497000054,10.373391118000143],[17.267509546000156,10.516890977000116],[17.024200499000187,10.675898866000182],[16.92584054100007,10.88241538200009],[16.79487045400009,11.078971011000021],[16.589040584000145,11.216931438000131],[16.440650555000047,11.284776742000076],[16.27882953200009,11.405519398000138],[16.19507956700005,11.437976977000062],[16.151216565000084,11.522109324000098],[15.970239541000183,11.452059245000157],[15.703309452000155,11.221544167000161],[15.57283959700004,10.981222765000041],[15.639089489000071,10.81838887300006],[15.657640485000059,10.566356444000121],[15.683219539000106,10.416747016000102],[15.758609561000071,10.234770868000055],[15.73383952800009,10.084630363000088],[15.592439504000026,9.977040756000179],[15.432900538000183,9.957405310000183],[15.245400549000067,10.007115696000085],[15.00341953000003,10.009025596000015],[14.744788531000154,9.996177480000142],[14.489990577000071,10.081104431000028],[14.307991463000121,10.23882435700017],[14.247326433000126,10.493603536000023],[14.259460579000063,10.809044727000185],[14.147878505,10.912036524000143],[14.091039478000141,10.70492791100014],[14.103679556000031,10.599455238000075],[14.041600498000093,10.460564923000106],[13.996749437,10.44121613800013],[13.915989465000052,10.498541315000125],[13.951020456000094,10.305175669999983],[13.914299506000077,10.26390753700008],[13.781270488000075,10.202232153000125],[13.759099516000049,10.08767098200019],[13.652919578000024,9.967726618000086],[13.585530585000129,9.951607715000023],[13.483329537000145,10.016895030000114],[13.480469464,9.937143735000177],[13.397330539000109,9.90227418000012],[13.30292047,10.049842782000042],[13.28582943400005,10.143252220000022],[13.223353578000172,9.981188457000087],[13.173978468000143,9.775473084000055],[13.099916474999986,9.610901791000117],[12.877729488000114,9.413415603000033],[12.869500471000038,9.108958224000105],[12.820608494000112,8.945997766000119],[12.83421450200018,8.924971259000074],[12.921565499999986,8.954087308000112],[13.150682477000032,8.99103876100014],[13.246763563000115,9.020599386000015],[13.416751577000127,8.99103876100014],[13.59413242900007,8.887573889],[13.764121449000186,8.673255330000131],[13.904547497000124,8.518058525000129],[13.99323758800017,8.525448682000103],[14.118881478,8.458936436000158],[14.488423496000166,8.16332364200008],[14.554941442000029,8.037688972000069],[14.739711445000182,8.11159154100011],[14.924482454000099,8.11159154100011],[14.954045594000092,7.985956536],[14.739711445000182,7.675563932000045],[14.998391562000052,7.646003139000129],[14.998391562000052,7.468635865000067],[14.894919481000159,7.269097283000178],[14.754493434000153,7.069559708000099],[14.747102440000049,6.995656300000064],[14.857965514000114,6.980875149000155],[15.168380582000168,7.054778725000062],[15.419668530000138,7.143462445000182],[15.545312588000172,7.209974523000085],[15.744865587000106,7.232145831000082],[15.900073455999973,7.158242423000047],[16.09962444200005,6.847850824999966],[16.24005149500016,6.581799327000112],[16.39525953200001,6.345310467000047],[16.653938475000132,6.212285305000137],[17.001308515000062,6.19011399700014],[17.407802489000176,6.227065282000126],[17.872863502000143,6.416324298000177],[18.020416513999976,6.377497143000085],[18.191268535000177,6.439620624000042],[18.47861056900001,6.486213109000118],[18.657230434999974,6.532805930000109],[19.084360486000037,6.618225570000163],[19.38723351700014,6.625990899999977],[19.98521659500011,6.680349051000121],[20.948200544000088,6.688114381000162],[21.196712574000173,6.657052892000024],[21.71703547499999,6.618225570000163],[22.097570527000073,6.633756398000173],[22.633424591,6.618225570000163],[22.827573441000027,6.602695580000045],[23.091617473000042,6.625990899999977],[23.483268605000035,6.589450664000026],[24.467224578000128,6.72012202000019],[24.959203571000103,6.81236134400018],[25.72791847300016,6.781614678999972],[26.465887548000126,6.81236134400018],[27.111608581999974,6.996840160000147],[27.84957547800002,7.027586825000128],[28.495298524000077,7.150572814000043],[28.803291557000023,7.317518700000107],[28.9067805680001,7.41568755000003],[29.01021744500008,7.482915778000063],[29.175714602000085,7.555316646000108],[29.42610149700016,7.696167321000132],[29.425743589000035,7.842888010000138],[29.458162444000152,8.080222772000184],[29.40327858000012,8.238905442000089],[29.240915583000117,8.36905594700005],[29.086284557000113,8.439602067000123],[28.754873493000105,8.64484839000005],[28.27518253800008,8.892733453000062],[27.845031481000035,9.079752153000072],[27.820425566000097,9.173895678000122],[27.849866498000154,9.225473049000016],[27.977687504000187,9.336878098000113],[28.222961605000023,9.373882356000138],[28.406572559000097,9.38560159800005],[28.930053593000025,9.38560159800005],[29.115533543000083,9.377667288000112]],[[16.35106058300005,10.694248528000173],[16.402879520000056,10.681188685000052],[16.538059502000067,10.570387301000096],[16.689540441000133,10.533419755000125],[16.822299562000126,10.481412393000028],[16.937070447,10.367680360000122],[17.05837050000008,10.148165859000073],[17.11491951300013,9.97260706500009],[17.113729451000097,9.699414521000165],[17.256130442000085,9.284158944000126],[17.353160527000057,9.060588776000145],[17.379480541000135,8.894812333000118],[17.351320531000056,8.827928266000072],[17.195850476000146,8.767055700000128],[16.966360505000182,8.760394937000171],[16.838649470000064,8.805815967000058],[16.497789486000045,9.02060039200012],[16.348119541000074,9.180024191000143],[16.182460444000185,9.290825239000071],[15.902239507000047,9.622569736],[15.806759570999986,9.691428914000142],[15.755370458000016,9.818501919000028],[15.758469583000021,9.98429931700008],[15.825710552000146,10.087100007000117],[15.975150498000176,10.237590541000031],[16.038160449000088,10.369811375000154],[16.073799463000114,10.55710818700004],[16.197969479999983,10.66187996500014],[16.32169944700007,10.718585887000074],[16.35106058300005,10.694248528000173]]],[[[37.17000000000013,12.326666667000097],[37.07416666600017,12.246666667000113],[37.025,12.163333334000072],[37.0025,12.0175],[37.005000000000166,11.875833334000106],[37.079166666000106,11.79916666700018],[37.277500000000146,11.792500000000189],[37.291666667000186,11.645],[37.496666667000056,11.439166666],[37.62916666600012,11.433333334000167],[37.69916666700004,11.2725],[37.80833333400017,11.217500000000143],[37.75416666700005,11.156666667000138],[37.7691666660001,11.103333333000137],[37.892500000000155,11.185833334000108],[38.03250000000014,11.120833333],[38.05166666700018,11.075833333000105],[38.2075,11.064166666000176],[38.306666667000115,11.0808333330001],[38.38833333300016,11.031666667000081],[38.43583333300012,10.946666667000102],[38.475833333000026,10.705000000000155],[38.44166666700016,10.68416666600018],[38.34083333299998,10.72416666700019],[38.35500000000019,10.53],[38.44166666700016,10.524166667000088],[38.4575,10.41166666600003],[38.32333333300011,10.23250000000013],[38.14166666600005,10.089166666000153],[38.05583333300012,10.108333333000132],[37.70916666699998,9.9725],[37.662500000000136,10.0175],[37.585833334000085,10.164166667000075],[37.51583333300016,10.15],[37.43666666600012,10.21833333300009],[37.36333333300007,10.1675],[37.30000000000018,10.194166667000161],[37.2375,10.339166666000096],[37.186666667000054,10.352500000000191],[37.1991666670001,10.455],[37.3875,10.640000000000157],[37.11083333300019,10.626666667000109],[37.12083333300018,10.55166666700012],[37.005000000000166,10.43750000000017],[36.93333333400011,10.475],[36.83333333300004,10.48416666700001],[36.80333333400006,10.551666666000017],[36.83083333400003,10.648333333000153],[36.65833333300009,10.643333333000157],[36.62833333300017,10.75],[36.53416666700008,10.711666667000088],[36.47666666700013,10.742500000000177],[36.49166666700006,10.848333333000028],[36.62500000000017,10.905833332999975],[36.60166666700019,11.081666666000046],[36.57083333300005,11.12],[36.5725,11.226666666000085],[36.630000000000166,11.249166666000121],[36.76083333300011,11.369166667000115],[36.78916666700019,11.476666667000131],[36.68916666700005,11.57666666700004],[36.73166666700007,11.65],[36.8425,11.613333333000014],[36.90083333300015,11.704166666000106],[36.941666667000106,11.866666667000061],[36.825,11.84],[36.730833334000124,11.935833333000062],[36.72916666600008,11.999166667000054],[36.810833333000176,12.1525],[36.906666667000025,12.134166667000102],[36.93333333300018,12.250000000000114],[37.01833333300016,12.323333333000164],[36.9583333330001,12.451666666000051],[37.041666667000015,12.6],[37.0808333330001,12.603333333000023],[37.11833333300012,12.711666667000088],[37.178333333000126,12.696666666],[37.19833333399998,12.575],[37.27250000000015,12.6975],[37.366666667000175,12.714166667000143],[37.368333333000066,12.761666667000156],[37.55083333300007,12.812500000000114],[37.6075,12.928333333000182],[37.70000000000016,12.98583333300013],[37.70333333400009,13.123333333000062],[37.65083333400008,13.28],[37.585,13.284166667000079],[37.51333333400015,13.323333333000107],[37.47083333400019,13.225000000000136],[37.39333333300016,13.253333334000047],[37.36333333300007,13.328333333000103],[37.270833332999985,13.360000000000184],[37.19916666600005,13.33083333400009],[37.18333333300012,13.415],[37.27666666700003,13.459166667000034],[37.433333333000064,13.499166667000111],[37.3925,13.625000000000114],[37.3375,13.635833333],[37.22801368900002,13.763333334000095],[37.1697794910001,13.846370667000087],[36.99852343600003,14.268333333000044],[36.97999954700009,14.546185160999983],[36.909751487000165,14.850574143000074],[36.816085563000115,15.037892077000095],[36.58192854800012,15.24862150500013],[36.441429578000054,15.272036184000058],[36.300933458000145,15.201791644000082],[36.09018760200007,15.014476560000105],[35.996524528000066,14.733502927000018],[35.97311051900016,14.569600510000043],[35.809196535000126,14.218382506000069],[35.66870158900019,13.77350712700013],[35.621868543000176,13.492533663000188],[35.481372590000035,13.188145016000021],[34.755474461000176,12.392052639000042],[34.45106553100004,12.368638463000082],[34.21690348700008,12.27498175900007],[34.12324158600012,12.204737555000065],[33.935913593,12.111079845000177],[33.81485745400005,12.08793238100003],[33.62245958300008,11.82197057000019],[33.54584161200006,11.637733153000056],[33.47237054300018,11.300406476000092],[33.476589490000094,11.147317050000083],[33.53102156900013,10.875424874000089],[33.65298060700013,10.53491978000011],[33.713409603000116,10.17416400899998],[33.71590053699998,9.92430048100016],[33.69248954600016,9.65225458100008],[33.60718155300003,9.230605624000077],[33.60440060500014,9.092401283000186],[33.64170057700011,8.907908554000073],[33.644599542000094,8.649314938000146],[33.627948557000025,8.506246244000067],[33.56750000000011,8.451762919000032],[33.679166667000175,8.438333333000116],[33.69166666700005,8.379166667000106],[33.77,8.363333333000128],[33.903333334000024,8.4825],[34.024166666000156,8.49000000000018],[34.1400000000001,8.595],[34.15833333300009,8.681666667000059],[34.24666666700017,8.689166667000109],[34.191666667000106,8.465],[34.27500000000015,8.398333334000142],[34.23083333400007,8.269166667000036],[34.29,8.237500000000125],[34.40666666700014,8.229166667000129],[34.459166666000044,8.229166667000129],[34.40666666700014,8.229166667000129],[34.35083333400013,8.172500000000127],[34.09916666700008,8.091666666000094],[34.11083333300007,7.99],[34.006666667,7.905833333000032],[34.095,7.85],[34.10666666700013,7.77583333299998],[33.975000000000136,7.810000000000173],[33.899166666999974,7.783333333000087],[34.09083333300015,7.625833333000173],[33.959166667000034,7.565833333000114],[34.03500000000014,7.458333334000031],[33.95666666600005,7.446666666000169],[33.93916666700005,7.508333333000166],[33.87500000000017,7.51416666700004],[33.795833334,7.603333334000069],[33.67166666700007,7.693333333999988],[33.54197064100015,7.701666666000108],[33.62330246800008,7.492836263000129],[33.6376995600001,7.243523258999971],[33.62607553600003,7.124226648000104],[33.52650053800011,6.603735606000157],[33.45967849700003,6.363097368000126],[33.393497504000095,6.217614686000104],[33.235031590000176,5.999503652000101],[33.09556946099997,5.84252234000013],[32.79841657700018,5.545816043000059],[32.59310956900015,5.32711525700006],[32.451080567000076,5.201224436000075],[32.31560856000016,5.11631860600005],[31.669931447000067,4.789387670000053],[31.479839605000052,4.409233827000037],[31.25597556800011,4.138261817000171],[30.973926537000068,3.913904420000108],[31.07788460000006,3.745758078000051],[30.98000000000019,3.700833333000105],[30.874166666,3.54],[30.93333333300012,3.484166667000181],[30.935833333,3.401666665999983],[30.829166667000038,3.255833333000055],[30.768333333000157,3.033333334000019],[30.875833333000173,2.89416666700015],[30.952500000000157,2.796666666000021],[30.876666667,2.681666667000172],[30.95166666700004,2.624166667000054],[30.90833333300003,2.534166667000079],[30.996666667000113,2.46666666700014],[30.965733113,2.406666667000081],[31.01781652900013,2.335018896000065],[31.052537557000107,2.175313801000073],[30.990039573000104,2.057271626000102],[30.84421155600006,1.869791586000133],[30.698383540000123,1.751749411000105],[30.608108599000047,1.640650805000064],[30.524778567000055,1.592044651000037],[30.46650556400016,1.601756594999983],[30.355983465000122,1.466225746000021],[30.24023256800018,1.291034917000161],[30.15836149000006,1.118066969000154],[30.17333333300013,0.918333334000181],[30.159522476000063,0.820808974000045],[30.227829594000127,0.828053669000042],[30.23888134500004,0.760401530000081],[30.340960222000092,0.797878040000057],[30.40663334500016,0.886393989999988],[30.614166667000177,0.976666667000075],[30.69000000000011,1.105000000000132],[30.75333333300017,1.109166666000135],[30.7825,1.245833333000121],[30.844166667000025,1.328333334000092],[30.942500000000166,1.359166667000125],[31.094166666000035,1.5025],[31.169166667000127,1.511666667000043],[31.286666667000134,1.650833333000037],[31.553333333000126,1.871666666000181],[31.643333333000044,1.959166666999977],[31.800833333000128,2.025833333000094],[31.908333333000144,2.241666666000071],[31.857500000000186,2.4491666670001],[31.75500000000011,2.395000000000152],[31.6825,2.582500000000152],[31.703333333000103,2.611666667000179],[31.715,2.701666667000154],[31.693333333000112,2.71000000000015],[31.748333333000176,2.803333334000058],[31.685833334000165,2.8425],[31.605833333000078,3.003333334000104],[31.746666667000113,3.150833333000094],[31.858333333000076,3.180000000000121],[32.01,3.13583333400004],[32.0625,3.043333333000078],[32.22333333300014,3.035],[32.328333333000046,3.04916666600019],[32.4625,3.008333333000166],[32.47583333400007,2.920000000000186],[32.525,2.808333333000121],[32.68083333400011,2.755],[32.849166667000134,2.62916666700005],[32.86166666700018,2.509166666000056],[32.9491666670001,2.419166666000081],[32.965000000000146,2.311666667000168],[32.94166666700016,2.260833333000051],[33.0175,2.22],[33.074166667000156,2.1475],[33.071666667000045,2.04166666600014],[33.17333333300007,1.993333333000066],[33.33416666700009,2.016666667000152],[33.3933333330001,1.980833333000021],[33.42833333400006,1.899166667000145],[33.420000000000186,1.785833334000188],[33.425000000000125,1.791666666000026],[33.42166666600002,1.76],[33.433333334000054,1.74583333400011],[33.455833333000044,1.735000000000127],[33.4325,1.741666667000061],[33.46083333299998,1.69583333300011],[33.45916666700015,1.686666666000121],[33.47333333400013,1.67],[33.53,1.54],[33.62083333300018,1.410833334000188],[33.7125,1.4675],[33.70953047500018,1.37],[33.763333333000105,1.350833334000129],[33.721666667000136,1.265833333000046],[33.806666667000115,1.15],[33.85833333400012,1.116666667000118],[33.88833333300016,1.113333333000185],[33.8975,1.110000000000127],[33.95166666600005,1.08416666700009],[33.958333332999985,1.076666666999984],[33.99416666600001,1.046666667000068],[34.1966666670001,1.130000000000109],[34.4,1.300833333000185],[34.413333333000026,1.408333334000076],[34.510000000000105,1.406666667000138],[34.62416666600018,1.435833334000108],[34.7058333330001,1.36],[34.6991666670001,1.291666667000015],[34.82916666600005,1.468333334000135],[34.86083333300013,1.469166666000149],[34.7975,1.541666666000083],[34.7225,1.5575],[34.719166667000025,1.574166666999986],[34.77166666699998,1.634166666000112],[34.74500000000012,1.684166666000181],[34.626666667000165,1.703333334000092],[34.64166666700015,1.843333333000032],[34.7325,1.80916666700017],[34.8250000000001,1.879166667000163],[34.860000000000184,1.896666666000158],[34.870000000000175,2.023333333000153],[34.745833333,2.189166666000062],[34.705,2.290833332999966],[34.54750000000013,2.351666666000142],[34.425000000000125,2.469166667000025],[34.399166666000156,2.40166666600004],[34.27416666700003,2.421666665999965],[34.364166666000074,2.51],[34.3375,2.65],[34.25250000000011,2.755833333000169],[34.0875,2.83083333400009],[34.14083333400009,3.15166666600004],[34.10500000000019,3.224166667000077],[34.12166666600018,3.331666667000093],[34.20583333400015,3.408333333000144],[34.3425,3.448333334000154],[34.364166666000074,3.485000000000127],[34.36416666700018,3.486666667000065],[34.36333333300013,3.489166667000177],[34.36250000000018,3.489166667000177],[34.36333333300013,3.491666666000128],[34.364166666000074,3.496666667000056],[34.365833334000115,3.5],[34.36583333300001,3.500833333000173],[34.36750000000018,3.511666667000043],[34.26500000000016,3.556666667000115],[34.279166666000094,3.556666666000183],[34.325,3.585],[34.31416666700011,3.6125],[34.312500000000114,3.614166666000131],[34.290833334000126,3.616666666000015],[34.28166666600015,3.61500000000018],[34.25083333400005,3.724166666000031],[34.25000000000017,3.725833333000026],[34.24833333300006,3.7275],[34.24250000000012,3.721666667000079],[34.1975,3.7275],[34.11500000000012,3.666666667000186],[33.96333333300015,3.682500000000118],[33.94916666600017,3.775000000000148],[33.831666667000036,3.7875],[33.834166666000044,3.830833334000033],[33.966666667000084,3.822500000000105],[34.07250000000016,3.846666667000136],[34.11500000000012,3.856666667000127],[34.16083333300014,3.850833333000082],[34.16416666599997,3.850833333000082],[34.16583333300014,3.851666667000131],[34.19833333400004,3.866666667000061],[34.18000000000018,3.865000000000123],[34.175833334,3.863333333000128],[34.0925,3.865833333000069],[34.09,3.865000000000123],[34.09,3.865833334000115],[34.08333333300004,3.898333333000039],[33.99250000000018,3.940833333000057],[33.93250000000012,4.059166667000056],[33.90666666700008,4.056666667000172],[33.93333333400017,3.975833333000139],[33.82000000000011,3.95666666600016],[33.77833333300009,3.894166667000093],[33.615,3.8525],[33.80120129500017,4.037500000000136],[33.654220459000044,4.093133315000102],[33.54571554800009,4.110452003000091],[33.433261588000164,4.230096127000024],[33.372009490000096,4.227317191000111],[33.26842861200015,4.329694595000149],[33.3239865490001,4.37025881500017],[33.44299649800007,4.35898767000009],[33.33147460599997,4.471155137000039],[33.33537655000009,4.546047777000069],[33.46289061000016,4.561889406000091],[33.634868488000166,4.435569767000175],[33.75546245000015,4.497187316],[33.82916653600006,4.418339088000153],[33.897785489000114,4.241517141000145],[34.00250000000011,4.221666667000136],[34.05703995400012,4.274166666000042],[34.01822010200016,4.35698087500009],[33.86414010200008,4.520425472000056],[33.781312147000165,4.675091200000111],[33.65202011600013,4.707934680999983],[33.42916207500019,4.693478916000061],[33.34925202800008,4.788591724000071],[33.23827110200017,4.809928194000122],[33.15344305800005,5.036352568000041],[33.34178207500008,5.302473971000097],[33.412892130000046,5.456877680000048],[33.57157211900011,5.626520024000115],[33.78030112100015,5.759158278000143],[34.07645045000015,5.906632667000167],[34.21828046600007,5.81155539800011],[34.35622060800006,5.739460973000064],[34.51014569000006,5.706026234000092],[34.57337299600016,5.725652961000151],[34.809379487,5.866905631000066],[35.015251602000035,5.872454954000148],[35.13000000000011,5.691666667000106],[35.138333333000105,5.6125],[35.30333333400017,5.503333333000057],[35.294166666000024,5.3675],[35.35083333400013,5.335],[35.470833333000144,5.406666667000025],[35.545833334,5.417500000000132],[35.67916666700012,5.383333333000166],[35.86166666700012,5.315000000000111],[35.82916666600005,5.233333333000132],[35.864166667,5.175833333000185],[35.83250000000015,5.12],[35.83,5.11833333400017],[35.87000000000012,5.025833333000037],[36.01416666600011,5.03],[36.045,5.17750000000018],[36.105833334000124,5.190833333000171],[36.18333333300012,5.213333333000037],[36.13333333300011,5.279166667000084],[36.18333333300012,5.315833333000057],[36.2033333330001,5.415],[36.185000000000116,5.439166667000052],[36.100833334000185,5.55],[36.21416666600004,5.595],[36.23000000000019,5.5225],[36.23000000000019,5.508333333000053],[36.22916666700007,5.505833333000112],[36.23000000000019,5.465833333000035],[36.228333334000126,5.449166667000043],[36.23000000000019,5.428333334000115],[36.2275,5.42],[36.22250000000014,5.2025000000001],[36.19416666600006,5.14666666700009],[36.16666666700013,5.060000000000173],[36.1675,4.798333333000073],[36.154166667000084,4.713333334000026],[36.224166665999974,4.624166666000065],[36.28,4.444166667000047],[36.37833333400016,4.436666667000168],[36.63666666600017,4.447500000000105],[36.670833334000065,4.5225],[36.64416666700015,4.580833333000157],[36.68250000000012,4.631666667000047],[36.65583333300003,4.710833333000039],[36.74333333400017,4.7725],[36.71416666700003,4.984166667000068],[36.77000000000015,5.068333333000169],[36.826666666999984,5.085833333000039],[36.91500000000019,5.345],[36.875000000000114,5.419166667000127],[36.79250000000019,5.45333333300016],[36.828333333000046,5.605000000000132],[36.88666666700004,5.645],[36.96666666700003,5.624166666000065],[36.925833334000174,5.546666667000068],[36.987500000000125,5.49],[37.00416666600012,5.406666667000025],[37.108333334,5.455833333000101],[37.135,5.3575],[37.31000000000017,5.205833334000033],[37.44,5.247500000000173],[37.47833333400007,5.385833334000154],[37.41416666700013,5.406666666000149],[37.43833333300006,5.588333333000037],[37.40916666600009,5.759166666000112],[37.415,5.865],[37.560000000000116,6.018333333000101],[37.564166667000165,6.10333333300008],[37.62833333300017,6.16],[37.72666666700002,6.198333333000051],[37.77500000000015,6.310833333000062],[37.737500000000125,6.460833333000039],[37.77166666700009,6.5925],[37.83583333400003,6.6675],[37.9275,6.710833334000085],[37.91083333400019,6.875833333000116],[37.935000000000116,6.9125],[37.79083333300002,6.791666666000083],[37.64583333300004,6.797500000000127],[37.574166667000156,6.838333333000151],[37.638333333000105,6.980000000000132],[37.7708333330001,7.11833333300018],[37.75,7.209166666000101],[37.639166667000154,7.255],[37.525,7.245],[37.50250000000017,7.291666667000072],[37.52333333300004,7.401666667000029],[37.5575,7.430833333000066],[37.558333334000054,7.571666666000056],[37.64750000000015,7.62],[37.619166666000126,7.750000000000114],[37.66750000000013,7.778333333000091],[37.73166666700001,7.916666667000072],[37.686666666000065,8.055833333000066],[37.65416666700014,8.09],[37.698333333000164,8.20333333300016],[37.82666666600005,8.24666666700017],[37.85500000000013,8.399166667000088],[37.80583333300018,8.495000000000175],[37.68666666700011,8.53],[37.61166666700012,8.480833334000067],[37.49833333300012,8.51083333300005],[37.298333333000016,8.618333333000066],[37.23500000000013,8.692500000000166],[37.3025,8.78333333300003],[37.40666666600015,8.83333333400003],[37.395833334000145,8.947500000000105],[37.26416666600005,9.029166667000027],[37.21583333300015,9.025833333000094],[37.16166666600003,9.115833333000069],[37.06583333400005,9.170000000000186],[36.88333333400004,9.0275],[36.76416666700004,9.059166666000067],[36.69000000000017,9.02833333400008],[36.59,8.900833333000037],[36.6975,8.821666667000102],[36.698333333,8.644166667000036],[36.525,8.66333333300014],[36.453333333000046,8.726666667000131],[36.43083333300018,8.878333333000171],[36.368333333000066,9.012500000000102],[36.400833333000094,9.15],[36.58750000000015,9.173333333000016],[36.688333334000106,9.229166667000129],[36.75666666700016,9.23250000000013],[36.791666666000026,9.297500000000127],[36.90750000000014,9.243333334000113],[36.97250000000014,9.441666666000117],[36.9325,9.551666666000074],[36.88750000000016,9.588333334000026],[36.981666667000184,9.765],[36.955833333000044,9.870833333000064],[36.90833333300003,9.904166666000037],[36.78916666700019,9.89416666700015],[36.68500000000017,9.73166666700007],[36.65583333300003,9.738333333000128],[36.58166666600016,9.774166667000088],[36.515,9.752500000000168],[36.44250000000011,9.670833334000122],[36.350833333000026,9.790833334000183],[36.250000000000114,9.713333334000083],[36.181666667000115,9.803333333000182],[36.13750000000016,9.986666667],[36.244166666000126,10.06250000000017],[36.30250000000012,10.008333333000053],[36.410833333000085,10.079166666000162],[36.3908333330001,10.174166667],[36.48833333300013,10.2025],[36.505,10.113333333000128],[36.48583333300007,10.013333333000048],[36.574166667000156,10.025000000000148],[36.635000000000105,10.054166666000071],[36.67583333300013,10.125833333],[36.78833333400007,10.001666666000062],[36.91500000000019,10.155833333000146],[37.03750000000019,10.119166667000172],[37.09666666700008,10.000833333000116],[37.215,9.964166666000096],[37.228333334000126,9.844166665999978],[37.32333333400004,9.77333333300004],[37.35,9.686666666000121],[37.46333333299998,9.605],[37.505,9.831666667000036],[37.595,9.8525],[37.60166666700013,9.75],[37.57000000000011,9.71],[37.56333333300012,9.532500000000141],[37.50583333300017,9.534166667000079],[37.57750000000016,9.378333333000057],[37.47583333300008,9.358333334000065],[37.41416666700013,9.2525],[37.5375,9.2075],[37.69416666700005,9.193333334000044],[37.76083333300011,9.138333334000038],[37.86666666700006,9.201666666000165],[37.80583333400011,9.295],[37.83333333300004,9.403333334000138],[37.93833333300012,9.415000000000134],[37.96666666700003,9.45583333400009],[37.889166666,9.543333333000078],[37.73583333300019,9.511666667000043],[37.65583333400008,9.655833333000032],[37.670000000000186,9.752500000000168],[37.70916666699998,9.770833333000155],[37.88,9.65083333399997],[37.89,9.69],[38.00916666699999,9.730833333000078],[38.0675,9.67],[38.059166667000056,9.5125],[38.113333334000174,9.431666667000059],[38.16333333400007,9.4925],[38.16000000000014,9.615833333000126],[38.23500000000013,9.66833333400001],[38.338333334000026,9.635000000000161],[38.36166666700018,9.532500000000141],[38.510833333000164,9.564166667000052],[38.57583333300016,9.421666666000021],[38.63666666700004,9.4975],[38.41833333400018,9.635833333000107],[38.23166666700013,9.721666667000136],[38.165000000000134,9.726666666000028],[38.2025000000001,9.821666667000045],[38.125,9.863333334000117],[38.219166667000025,10.013333333000048],[38.34916666700008,10.075833333000162],[38.380000000000166,10.008333334000099],[38.46333333300015,9.988333333000071],[38.586666666999974,10.030000000000143],[38.68000000000018,9.9675],[38.79583333300019,9.78],[38.88333333300005,9.856666667000127],[38.945,9.829166667000152],[39.013333333000105,9.889166667000154],[39.08,9.891666667000095],[39.066666666,10.01],[38.95916666700009,9.954166666000106],[38.86833333300012,9.991666667],[39.00083333400016,10.163333333000026],[39.03416666700008,10.245833333000121],[39.0025,10.396666667000147],[38.89833333400014,10.461666666999974],[38.73833333300007,10.495833333000064],[38.662500000000136,10.411666667000077],[38.57,10.5625],[38.575,10.708333332999985],[38.63333333300011,10.82],[38.59,10.979166666000026],[38.5975,11.048333334000176],[38.52,11.090000000000146],[38.60000000000019,11.166666667000129],[38.70416666700015,11.17416666700018],[38.737500000000125,11.23583333300013],[38.69500000000011,11.323333334000097],[38.775,11.360833333000187],[38.87,11.320000000000164],[38.97916666600014,11.343333334000022],[38.94000000000011,11.40083333399997],[38.75833333300017,11.415],[38.72333333400019,11.461666667000145],[38.74666666600007,11.543333334000124],[38.70666666600016,11.6425],[38.61083333300007,11.64666666700009],[38.63833333400004,11.5375],[38.6925,11.526666666999972],[38.63166666700005,11.406666667000081],[38.585,11.493333333000123],[38.510833333000164,11.376666667000165],[38.575,11.315833334],[38.45416666700004,11.223333333000028],[38.484166667000125,11.138333333000048],[38.41166666700002,11.125],[38.21333333400014,11.24333333300018],[38.16833333400007,11.346666666000147],[38.13583333300011,11.194166667000161],[38.04833333300007,11.2425],[38.0675,11.381666667000161],[38.03916666700013,11.301666666000074],[37.97166666700019,11.305833333000123],[37.885,11.225],[37.75,11.305000000000177],[37.61583333300007,11.53333333300003],[37.54833333300019,11.516666667000038],[37.51666666699998,11.569166666000058],[37.41083333300003,11.601666667000188],[37.47083333300009,11.81250000000017],[37.55500000000012,11.8375],[37.63000000000011,11.803333333000126],[37.67750000000012,11.921666667000125],[37.75416666700005,11.984166665999965],[37.64166666700004,12.11416666700012],[37.56083333300006,12.2425],[37.451666667000154,12.348333333000085],[37.338333333000094,12.3875],[37.2975,12.370833334000054],[37.270833332999985,12.26250000000016],[37.182500000000175,12.196666667000045],[37.17000000000013,12.326666667000097]],[[38.64166666700004,10.36],[38.73666666700018,10.316666667000163],[38.794166666000024,10.2575],[38.74000000000018,10.149166665999985],[38.61333333400006,10.145833333000155],[38.52916666700003,10.076666666999984],[38.44166666700016,10.110833333000073],[38.50750000000011,10.340833334000138],[38.64166666700004,10.36]],[[35.68916666700011,10.376666667],[35.62333333400011,10.47833333400007],[35.6,10.634166667000045],[35.612500000000125,10.720833334000133],[35.72666666599997,10.74583333400011],[35.76333333400015,10.640000000000157],[35.8241666670001,10.556666666000012],[35.82,10.451666666000108],[35.7641666670001,10.4491666670001],[35.690833333000114,10.52],[35.68916666700011,10.376666667]],[[36.12666666700005,11.380833333000112],[36.13333333300011,11.445833334000042],[36.19000000000011,11.511666667000043],[36.21583333300015,11.363333333000071],[36.12666666700005,11.380833333000112]],[[35.902500000000146,6.730833333000135],[35.86166666700012,6.794166666000024],[35.80500000000012,6.711666667000031],[35.744166667000115,6.859166667000125],[35.687500000000114,6.9125],[35.6366666670001,6.854166667000129],[35.5150000000001,6.915833333000023],[35.446666667000045,6.875],[35.17666666600002,6.784166667000136],[35.100000000000136,6.889166666000165],[34.938333334000106,6.965833333000091],[34.90750000000014,7.017500000000155],[34.81083333300006,7.010833334000097],[34.590833333000035,7.040833334000183],[34.415000000000134,7.16166666700002],[34.386666666999986,7.308333334],[34.411666667000134,7.4375],[34.5025,7.394166666000046],[34.62166666700017,7.448333333000164],[34.5575,7.545833333000189],[34.445833333,7.500000000000171],[34.365833334000115,7.564166667000052],[34.36750000000018,7.644166667000093],[34.43916666600006,7.645],[34.61916666600018,7.792500000000132],[34.68416666700011,7.880833333000112],[34.545833334000065,7.998333334],[34.56916666700005,8.04],[34.51166666600017,8.1075],[34.530833332999975,8.1925],[34.598333333000085,8.19166666600006],[34.65916666700019,8.11833333300018],[34.80916666700017,8.191666667000106],[34.91416666700013,8.210833334000142],[34.926666666000074,8.25],[34.85666666600008,8.429166666000128],[34.90416666700014,8.562500000000114],[34.974166667000134,8.569166667000047],[34.90083333300004,8.759166667000159],[35.0125000000001,8.91],[35.0875,8.870000000000175],[35.1825,8.858333333000076],[35.2650000000001,8.905],[35.385833333000164,8.7825],[35.425000000000125,8.931666667000172],[35.49500000000012,8.988333334],[35.4625,9.11166666600019],[35.53166666600009,9.135000000000105],[35.537500000000136,9.278333333000148],[35.5150000000001,9.386666666999986],[35.46416666600015,9.448333333000107],[35.372500000000116,9.464166665999983],[35.39416666600016,9.566666667000106],[35.36750000000018,9.636666667000156],[35.428333333000126,9.694166667000104],[35.57333333400004,9.71666666700014],[35.624166667000054,9.47],[35.6525,9.4075],[35.7225,9.360833333000016],[35.746666667000056,9.286666667000077],[35.870833333000064,9.20333333300016],[35.91083333300014,9.078333333000046],[35.84083333400008,8.956666667000093],[35.82583333300016,8.8675],[35.85916666700007,8.770833333000155],[35.96166666700009,8.78333333300003],[36.01000000000016,8.726666667000131],[36.08583333400003,8.728333333000023],[36.234166666000135,8.556666667000172],[36.27083333300004,8.585833334000142],[36.19083333300006,8.751666666000176],[36.30833333400011,8.810833334000165],[36.341666667000084,8.7683333330001],[36.30083333300013,8.684166667000113],[36.316666667000106,8.610833333000187],[36.508333333999985,8.379166667000106],[36.66333333300008,8.286666667000077],[36.6475,8.199166667000043],[36.528333333000035,8.089166667000086],[36.43,8.0625],[36.490833334000115,7.995],[36.515,7.8875],[36.60083333300014,7.810000000000173],[36.71666666599998,7.810833333000119],[36.839166667000086,7.862500000000125],[36.79166666700007,7.942500000000109],[36.871666667000056,8.145833333000041],[36.9325,8.243333333000066],[36.91500000000019,8.326666667000154],[36.95666666600016,8.440833333000057],[36.86000000000013,8.510000000000105],[36.9125,8.547500000000127],[36.976666666000085,8.4975],[37.03833333300008,8.542500000000132],[37.05,8.632500000000107],[36.97250000000014,8.72],[36.99250000000012,8.799166667000065],[36.89916666700009,8.906666667000081],[37.05333333300007,8.91],[37.131666666000115,8.852500000000134],[37.0925,8.786666667000134],[37.105833334000124,8.683333334],[37.05833333400017,8.520833333000041],[37.05750000000012,8.461666667000031],[36.97083333299997,8.309166667000113],[36.87916666700016,8.089166667000086],[36.8625,7.961666667000145],[36.91666666600008,7.906666667000081],[36.96833333400019,7.9625],[36.99583333300012,8.08],[37.06916666700005,8.075],[37.02166666600016,8.1325],[37.065833333000114,8.203333334000092],[37.16583333300008,8.26416666700004],[37.16583333300008,8.265833334000035],[37.16583333400018,8.295],[37.20583333300016,8.384166666000056],[37.19166666600012,8.459166667000147],[37.23500000000013,8.555833334000056],[37.29416666700007,8.5275],[37.31833333300017,8.322500000000105],[37.29583333300013,8.249166667000054],[37.352500000000134,8.129166667],[37.3925,7.958333333000041],[37.3325,7.870833333000121],[37.26250000000016,7.900000000000148],[37.194166667000104,7.782500000000141],[37.09500000000014,7.723333334000131],[37.090000000000146,7.8275],[37.065,7.8375],[36.91333333400013,7.682500000000175],[36.875000000000114,7.66583333300008],[36.828333333000046,7.706666667000036],[36.71416666700003,7.603333333000137],[36.73916666600002,7.567500000000109],[36.870833333000064,7.586666667000088],[36.92333333300019,7.533333333000144],[37.05333333300007,7.544166667000127],[37.09666666700008,7.622500000000173],[37.28,7.65],[37.3325,7.710833333000153],[37.408333333000144,7.933333333000064],[37.42833333400017,8.083333333000098],[37.507500000000164,8.133333334000042],[37.57250000000016,8.03],[37.57750000000016,7.935833333000176],[37.54083333400018,7.767500000000155],[37.48166666700007,7.670833333000076],[37.38083333300011,7.696666666000112],[37.3958333330001,7.495000000000175],[37.29083333400007,7.395],[37.11583333300018,7.370000000000118],[37.145,7.300000000000125],[36.97833333400018,7.312500000000171],[36.92416666600013,7.388333333000105],[36.86583333300007,7.3275000000001],[36.764166666000165,7.33],[36.73,7.395],[36.555833333000066,7.4425],[36.52666666699997,7.5225],[36.4675,7.575833333000105],[36.35833333400018,7.546666667000011],[36.26166666600017,7.560833334000051],[36.220833334000076,7.620833333000178],[36.1341666670001,7.5775000000001],[36.05166666700006,7.623333333000062],[35.90416666700014,7.589166667000029],[35.86416666600013,7.469166667000138],[35.9625,7.463333333000094],[36.125,7.544166667000127],[36.0925,7.423333333000187],[36.03083333300003,7.390833332999989],[35.9625,7.294166667000184],[35.99,7.231666666000137],[35.888333333000105,7.215000000000146],[35.851666666000085,7.1400000000001],[35.738333334,7.085],[35.84916666700008,7.038333333000026],[35.84833333300003,6.900833333999969],[35.97166666700002,6.760000000000105],[35.902500000000146,6.730833333000135]],[[37.429166666000185,6.695000000000107],[37.340833333000035,6.753333334000047],[37.35666666600008,6.801666667000177],[37.43916666700011,6.799166667000065],[37.5525,6.867500000000121],[37.5525,6.76916666700015],[37.429166666000185,6.695000000000107]],[[36.7175,7.138333333000162],[36.83083333300016,7.155833333000032],[36.9533333330001,7.100833333000139],[36.975,7.155833333000032],[37.08500000000015,7.143333334000033],[37.0875,7.085833332999982],[37.192500000000166,7.093333333999965],[37.26083333300005,7.048333333000187],[37.24166666700012,6.865833334000058],[36.98,6.860833333000187],[36.93083333400017,6.888333333000048],[36.97666666700019,6.974166666000144],[36.96833333300009,7.064166667000165],[36.845,7.119166667000059],[36.72750000000019,7.098333334000131],[36.59250000000014,7.043333334000124],[36.43166666700006,7.028333333000035],[36.37083333300018,6.918333333000135],[36.32916666700004,6.955833334000033],[36.326666666,7.064166666000062],[36.27666666700003,7.14666666700009],[36.30000000000018,7.219166666000092],[36.25166666700011,7.255],[36.28583333299997,7.365833334000172],[36.44250000000011,7.378333334000047],[36.500833334000106,7.405833333000146],[36.54333333300019,7.336666666999974],[36.605833333000135,7.309166666000067],[36.64666666700009,7.234166666000021],[36.656666667000025,7.25],[36.6575,7.250833334000049],[36.72833333300014,7.219166666000092],[36.69000000000017,7.129166666000117],[36.7175,7.138333333000162]],[[36.12250000000017,6.84],[36.17333333300019,7.024166665999985],[36.07666666600005,7.09],[36.06666666700016,7.155833333000032],[35.99333333400017,7.160833334000074],[36.029166666000094,7.331666666999979],[36.09083333300009,7.396666666000101],[36.16833333300019,7.29083333300008],[36.235833334,7.237500000000182],[36.20250000000016,7.141666666000162],[36.20583333400009,7.038333333000026],[36.2375,6.9675],[36.15666666700014,6.916666667000072],[36.12250000000017,6.84]],[[37.3925,6.664166667000018],[37.444166667000104,6.544166667000127],[37.3375,6.579166667000038],[37.3925,6.664166667000018]],[[37.63916666600005,6.5775000000001],[37.684166667000056,6.516666667000095],[37.715,6.273333334000142],[37.63333333300017,6.225000000000136],[37.59833333400013,6.148333334000085],[37.48583333400012,6.112500000000125],[37.479166667000186,6.04416666700007],[37.3908333330001,5.978333334000126],[37.37416666600018,5.895833333000098],[37.28666666700019,5.872500000000116],[37.287500000000136,5.796666667000181],[37.3375,5.7675],[37.38583333300011,5.648333333000096],[37.3275,5.59],[37.34583333300003,5.533333334000076],[37.244166666000126,5.482500000000186],[37.189166667000165,5.566666666000117],[37.29583333300013,5.629166667000163],[37.295000000000186,5.785],[37.135,5.954166666],[37.195,6.151666667000086],[37.25833333300011,6.175],[37.32000000000011,6.29083333300008],[37.408333333000144,6.310000000000116],[37.419166666000024,6.38333333300011],[37.47416666600009,6.42583333400006],[37.58583333300015,6.422500000000127],[37.63916666600005,6.5775000000001]],[[36.734166667000125,5.719166667000138],[36.59250000000014,5.811666667000168],[36.6175,5.8975],[36.56833333300011,6.048333333000187],[36.67416666600019,6.203333333000046],[36.7025,6.28],[36.836666667000145,6.365000000000123],[36.94583333300005,6.50416666700005],[36.96166666700003,6.40083333299998],[36.80250000000018,6.241666667000061],[36.78333333299997,6.167500000000189],[36.8325,6.07333333400004],[36.68666666700017,5.885],[36.765,5.769166666999979],[36.734166667000125,5.719166667000138]],[[35.54166666600008,6.032500000000141],[35.573333333000164,6.211666667000145],[35.6333333340001,6.141666666],[35.54166666600008,6.032500000000141]],[[36.594166666000035,6.307500000000175],[36.54833333300019,6.436666666000065],[36.630000000000166,6.456666667000093],[36.6425,6.535],[36.75666666700016,6.6525],[36.80166666600013,6.528333333000148],[36.744166667000115,6.491666666000071],[36.688333334000106,6.3675],[36.594166666000035,6.307500000000175]],[[35.0775000000001,6.663333333000026],[35.0225,6.698333333000107],[34.961666665999985,6.808333333],[34.9675,6.885000000000161],[35.065,6.905833333000089],[35.12000000000012,6.758333333000166],[35.0775000000001,6.663333333000026]],[[34.76583333300016,8.483333333000019],[34.71333333300004,8.49333333300018],[34.57916666699998,8.693333333000055],[34.591666667000084,8.7825],[34.65583333300009,8.80500000000012],[34.61833333400017,8.885000000000161],[34.53,8.9525],[34.54083333300014,9.03083333300009],[34.626666667000165,9.02],[34.66083333300003,8.960833333000096],[34.753333333000114,8.916666667000015],[34.79500000000013,8.991666666000128],[34.870000000000175,8.985],[34.905,8.880833333999988],[34.785,8.73333333300019],[34.8900000000001,8.713333333000037],[34.90083333300004,8.627500000000111],[34.83,8.629166667000106],[34.76583333300016,8.483333333000019]],[[33.01778053800007,4.129172481000012],[32.98479054100011,4.2546482300001],[33.00149148300011,4.331892665000112],[33.05218556900007,4.37905193500012],[33.18755347300015,4.372329648],[33.22349155300009,4.279981358999976],[33.23404654800004,4.15066301000013],[33.174617513999976,4.064073256000086],[33.098281510000106,4.042055002000097],[33.01778053800007,4.129172481000012]],[[32.968399561000126,4.067439093000132],[33.055843599000184,4.019376758000078],[33.1001734730001,3.891041103000134],[33.03333333400013,3.8275000000001],[32.96666666700014,3.855000000000132],[32.961666667000145,3.745833334000054],[32.79750000000013,3.75333333400016],[32.76922257500013,3.894702821000067],[32.620037607000086,3.951586607000024],[32.55516452600017,4.013014223000027],[32.54720658000019,4.088487729000121],[32.61207161400006,4.107225305999975],[32.74674951900005,3.993179622000184],[32.81620750100012,4.03493558200006],[32.84258652400007,4.122408956000072],[32.968399561000126,4.067439093000132]],[[33.42112761000004,3.872041507000176],[33.49093260300015,3.863316448999967],[33.561666666000065,3.801666666000131],[33.510000000000105,3.749166666000178],[33.43879485800005,3.755],[33.42112761000004,3.872041507000176]],[[31.471759451000082,2.400029105000158],[31.458053529999972,2.331214183000156],[31.356109471000025,2.250387155000112],[31.405830585000103,2.038179997000043],[31.412776501000167,1.92180079200017],[31.375831586000174,1.826252125],[31.292221599000186,1.699317589000145],[31.19832953100007,1.615712799000107],[31.050830499000085,1.580992441000092],[30.939720493000152,1.507109820000039],[30.822923534000154,1.330693892],[30.70581057700008,1.266269746000035],[30.702220608000175,1.154913145000023],[30.588333510000155,1.022423083000035],[30.494441610000024,1.045477508000033],[30.505275555000026,1.205465409000169],[30.392497549999973,1.25546178500008],[30.496108602000106,1.502665232000027],[30.6411094930001,1.644321575000049],[30.81638749300015,1.790699780000125],[30.90388852800004,1.895135946000153],[30.988609452,1.928744193000114],[31.05611059500012,1.997350238000138],[31.14055257000001,2.03651434600016],[31.23860960500008,2.117341373000102],[31.37110855200001,2.316493549000029],[31.439441514000123,2.337602869000079],[31.471759451000082,2.400029105000158]],[[34.51916666600005,2.108333333000132],[34.537500000000136,2.000833333000116],[34.476666666000085,2.000833333000116],[34.51916666600005,2.108333333000132]],[[34.24416666600018,1.914166666000028],[34.25250000000011,1.99333333400017],[34.21916666700014,2.090833334000024],[34.25416666700005,2.134166667000102],[34.3425,2.139166666],[34.3841666670001,2.0825],[34.24416666600018,1.914166666000028]]]]},"properties":{"objectid":221,"eco_name":"East Sudanian savanna","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Afrotropic","eco_biome_":"AF07","nnh":3,"eco_id":43,"shape_leng":505.574629105,"shape_area":86.7161984598,"nnh_name":"Nature Could Recover","color":"#E0B51B","color_bio":"#FEAA01","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":1062140.7284602306,"percentage":4.954242024556052}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[46.74453353500007,39.1227390090001],[46.57662959800007,38.94515682300016],[46.15652056300013,38.90818911000008],[46.13143956200014,38.98121225000011],[45.96884556000009,39.09154743300013],[45.74135551100005,39.49783336800016],[45.737384501000065,39.54575287600005],[45.640094577000184,39.63705962900002],[45.409995576000085,39.66832798400003],[45.30002953300004,39.70074549700007],[45.36304049000006,39.80326019700004],[45.57448556500003,39.831465971],[45.66436756300004,39.89763808000015],[45.58148160400009,40.02088927200009],[45.50805646800018,40.04477317000004],[45.26995459400007,40.052570184],[45.00762952300005,40.108821304],[44.87483955700009,40.199144190000084],[44.81229346000015,40.37499215999998],[44.90795561800019,40.4416452210001],[44.99568547800004,40.40336976300006],[45.12480148800017,40.24137255300002],[45.28623962600011,40.185858370000176],[45.38248047100018,40.193884378000064],[45.65830660800009,40.168058728],[45.760173554000175,40.20748317700003],[45.72317851600019,40.29337404800009],[45.11390652300014,40.62479802000007],[44.99329747400003,40.63461406699997],[44.81179859200006,40.57476577000017],[44.75189949999998,40.47085380700008],[44.686370620000105,40.43630527900007],[44.44476360100009,40.41660965000017],[44.174556524000025,40.44690218400012],[44.05510350700018,40.51985743100016],[44.02666454800004,40.63078705800018],[44.06070748000013,40.71632723000005],[44.16050359299999,40.764090499000076],[44.38153052400003,40.79039224100006],[44.401252471000134,40.85230868900004],[44.1293634810001,40.9788362000001],[44.031490512000175,41.04011981400015],[44.011737552000056,41.15646666500004],[44.073722564000036,41.295785296000076],[44.190418605,41.30759506200002],[44.35032251900003,41.035484789000066],[44.520343558000036,40.958500529],[44.48653749800013,41.206183086000124],[44.3272625620001,41.66425895600008],[44.072158501,41.72654119100008],[43.730564598000115,41.56460064200019],[43.50268160500002,41.5351441200001],[43.254611469000054,41.615690186000165],[43.13732550900005,41.633188247000135],[42.762424605000035,41.623762126000145],[42.83135955600011,41.51726099400014],[43.120971578000194,41.50677439500015],[43.154308586000184,41.31353498200019],[43.00413857600017,41.278169217000084],[42.978702518000034,41.199679064000065],[43.10791056099998,41.17429631500016],[43.23228861700011,40.92331799300007],[43.10817358500009,40.79960127000004],[43.06634554100009,40.652874881000116],[42.928737490000174,40.5368063090001],[43.01508349800014,40.44506336200004],[43.10796755800004,40.440631179000036],[43.145988541000065,40.597291632],[43.33566246100014,40.68059165600005],[43.50568752300006,40.6009454710001],[43.500392507000186,40.53740813000002],[43.40879054300018,40.442431276000036],[43.41342154400007,40.35990909300017],[43.263503495,40.30324189500004],[43.244270547000156,40.24768144400008],[43.04880154700015,40.183744286000035],[42.78573249900012,40.13558505600008],[42.573623577000035,40.30059505800017],[42.42047849400012,40.25238536800009],[42.363223558000186,40.295990878000055],[42.40276351000006,40.36507804500013],[42.34125861300009,40.42778356500003],[42.253475611000056,40.37598005100011],[42.14796857300013,40.35837118100011],[42.04440362100007,40.255776518000175],[41.76079555700011,40.284833056000025],[41.697807566,40.335399402000064],[41.580379617,40.365486076000025],[41.47358360900017,40.325935730000026],[41.40838246100003,40.238084668000056],[41.186164461000146,40.11885310100007],[41.111240472000134,40.180643485000076],[41.11019860200008,40.292526973000065],[41.04396061200015,40.36750024700018],[40.9519655360001,40.40591769400015],[40.78702946300018,40.18255439100011],[40.718704547000016,39.98963298700005],[40.738800495000135,39.78867233200015],[40.718704547000016,39.66810016400018],[40.62224158200007,39.587717209],[40.590087595,39.51135220400016],[40.574012614000026,39.330491856000094],[40.61420450999998,39.18982005100014],[40.762916572,39.105417303000024],[40.99201158800008,39.02101438799997],[41.056316543000094,38.92053716200019],[41.012107535999974,38.739676981],[41.09249149600015,38.69546579500019],[41.34971953200005,38.65527423400016],[41.357757609000146,38.55479281700008],[41.06033751000018,38.42216227400007],[41.028182517000175,38.245320211000035],[41.07332258600019,38.14545989200019],[41.312950470000146,38.098273801000175],[41.45494845899998,38.13237607700006],[41.71708259000019,38.13950890900014],[42.01769250700016,38.17520642900001],[42.2375144560001,38.141390143000194],[42.38594052700017,38.05496568100011],[42.59636653000018,37.97417989200005],[42.851882478000164,37.962907070000085],[43.25756055800008,37.79808113500019],[43.53060155700018,37.74207527000016],[43.726631473,37.68606839800009],[43.985668492000116,37.57405247700012],[44.24470551000013,37.518045605000054],[44.363723506000156,37.55304893600015],[44.20641362300006,37.91076509500016],[44.187599603000194,38.03172283100008],[44.21178860200007,38.149991987000135],[44.321998559000065,38.343523426000104],[44.437580478000086,38.2306294170001],[44.5988615390001,38.174184507],[44.64993247500013,38.04247664500008],[44.70906847800018,37.78712146100003],[44.74938962300007,37.53714226300002],[44.89185347900002,37.46725429000014],[44.92679562200004,37.391992007000056],[44.918731560000026,36.92429237100015],[45.09076358500016,36.983426195000106],[45.28161248000009,36.93235626500018],[45.35956149700007,36.72269737400018],[45.46217359400009,36.60100018600019],[45.58649850900014,36.54292248200005],[45.75441351000018,36.595155150000096],[45.869159586000194,36.60421213100011],[46.00186958800015,36.53332872300018],[46.192493513000045,36.55342400100005],[46.371871605000024,36.46904103400004],[46.45034449100018,36.299175731000105],[46.567928512000094,36.15291185600006],[46.61907957900007,36.05709329200005],[46.68851861700006,36.19579987500009],[46.71171553400012,36.37786805600018],[46.66315447500017,36.661190799999986],[46.646347586,36.89948981700019],[46.66741952300009,37.079498061000095],[46.746246461000055,37.083883975000106],[46.76074262700007,36.895804797000096],[46.81302256900011,36.75344286500007],[46.939521581,36.763013657000045],[47.01360654100017,36.64248708600019],[47.26524753600012,36.72875531000011],[47.329601609000065,36.795869041000174],[47.407932506000066,36.80191993700004],[47.42468256600006,36.72131251600018],[47.50275446200004,36.64944909500008],[47.746868508000034,36.52932284400015],[47.81613555000018,36.83123128500006],[47.97352556300012,36.84156801600005],[48.09991460499998,36.75171501900007],[48.29934355100005,36.648556255000074],[48.64849860100003,36.50671416900008],[48.76739153900019,36.562991105000094],[48.78490049700008,36.69370202400006],[48.62928057400006,36.73471719000014],[48.464996612000164,36.80281998600003],[48.273479512000165,37.01065966900012],[48.237857597000186,37.11184952500008],[48.24201150100015,37.2076305380001],[48.28889450300005,37.29260191399999],[48.410655561,37.34802372800016],[48.355419489000155,37.58834898600003],[48.29625649600018,37.525823341000034],[48.18164453100013,37.5518048940001],[47.94642653500006,37.716051807000156],[47.78284447400006,37.680388318000155],[47.50875054,37.692187188000105],[47.28814656000009,37.67539957700012],[47.16048061900017,37.70785782600012],[46.97105446900014,37.69513627700013],[46.74085957900019,37.73511745200017],[46.85808150100007,37.83889748300015],[47.45902255300018,37.955053395000164],[47.55606051700016,37.944612393000114],[47.59060653100016,38.02211029600011],[47.43997551600012,38.09643481100005],[47.13090859400006,38.15838076400007],[46.93274648900007,38.23697317600016],[46.72094350700007,38.40675549800005],[46.72741349800009,38.457150685000045],[46.44504159700017,38.44617575700005],[46.31279746000013,38.45547547800004],[46.15629559300015,38.50047674300015],[45.92992754599999,38.52760628100009],[45.79594047600011,38.60899892000009],[45.769187621000185,38.66208335700003],[45.89483251700011,38.713924422000105],[46.14081153600017,38.770861349000086],[46.24921049900007,38.74238182099998],[46.5247726070001,38.799253873000055],[46.65341956500009,38.934772819000045],[46.722572614000114,39.02611829700015],[46.74453353500007,39.1227390090001]],[[45.02609250800009,38.17430235699999],[45.104705540000054,38.26846264500011],[45.340827607999984,38.26235190300008],[45.45331559900018,38.194009049000044],[45.50083160200012,38.128733134000186],[45.45887749500008,37.94290751400018],[45.40608961000004,37.895697282000185],[45.41081247700009,37.80347505700013],[45.47721056100016,37.74820110000002],[45.67581958900007,37.750138996000146],[45.798606592000056,37.66458457500005],[45.692756566000185,37.64263505300005],[45.72664661200008,37.55819458600013],[45.86831653400009,37.40874575600009],[45.80888347600006,37.3159815570001],[45.740272569000126,37.27514224200013],[45.622207595000134,37.26348452400009],[45.57166254000015,37.12126022300015],[45.458320601000025,37.111540400000024],[45.34915150900014,37.20348049000006],[45.28443148200006,37.35570658100016],[45.31998449700018,37.387642973000084],[45.26054356100002,37.50903170700013],[45.29165651500006,37.566815541000096],[45.23359658000004,37.660975830000154],[45.263053605000096,37.74735402500005],[45.16915852000017,37.830131689000154],[45.05721250300007,37.854026148],[45.043609513000035,37.943746375000046],[45.084159484000054,38.00764145500011],[45.17165347700006,38.02512794900008],[45.204162521000114,38.113741597000114],[45.02609250800009,38.17430235699999]]]},"properties":{"objectid":223,"eco_name":"Eastern Anatolian montane steppe","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Palearctic","eco_biome_":"PA08","nnh":4,"eco_id":727,"shape_leng":46.7146364143,"shape_area":17.4747392713,"nnh_name":"Nature Imperiled","color":"#FDF674","color_bio":"#FEFF73","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":168624.62186274258,"percentage":1.5915043260148416}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[146.62312858300027,-25.13591167299984],[146.67396679900003,-25.23046752199997],[146.69533628200008,-25.42046473399995],[146.51939777700022,-25.609795196999983],[146.52815918400006,-25.706534567999938],[146.49344366100001,-25.817775410999957],[146.61017730000026,-25.767419634999953],[146.66042081000023,-25.689535814999886],[146.68158134200007,-25.572599380999975],[146.73801785900025,-25.5684290829999],[146.86907831200006,-25.3424628599999],[146.79490502900012,-25.24310411099998],[146.81883089200028,-25.184685401999957],[146.7737573840002,-25.123193973999946],[146.62312858300027,-25.13591167299984]]],[[[146.4074551210001,-25.99568815999993],[146.27074745100003,-25.962434004999977],[146.14236950600014,-26.045009396999887],[146.12934420300007,-25.85821237599987],[145.9206132800001,-25.64846869199988],[145.76148250800009,-25.617443523999953],[145.73054663400023,-25.491966240999943],[145.82533817000012,-25.37398735499994],[145.78982832400015,-25.3535013959999],[145.7781885820002,-25.23822837299997],[145.71879000500007,-25.19214643999993],[145.82308541200007,-24.98297645299988],[145.8229028390001,-24.89490095699989],[145.86914257000024,-24.75453876599994],[145.75936490300012,-24.812924103999933],[145.7121432570001,-24.99723193699998],[145.60558588300012,-25.13070296799998],[145.5573864470001,-25.240614518999962],[145.4655282550001,-25.274201294999898],[145.53614121800013,-25.38304851299995],[145.41560076100018,-25.49375708899987],[145.33077441700016,-25.445676705999915],[145.17611491800005,-25.590066441999966],[145.1092832520003,-25.535958609999966],[145.08627371700015,-25.459847264999894],[145.01909349900018,-25.414953372999832],[145.08815454000023,-25.2533548159999],[145.0214944080002,-25.12390603199998],[145.13173562300005,-25.06837652799993],[145.20143372100017,-24.992473392999898],[144.95581298800005,-25.024446551999915],[144.91466949600022,-24.93595329199991],[144.809664042,-24.838549715999875],[144.8275186420001,-24.782033765999984],[144.72469718000013,-24.655424589999825],[144.61783593000018,-24.67594475699991],[144.59936045300014,-24.77899169799997],[144.5057806000002,-24.87169067799988],[144.44796990600014,-24.89182401599993],[144.37795404800022,-24.836739361999832],[144.21578398400004,-24.876668862999963],[144.23713558300005,-24.922807805999923],[144.11399838000023,-25.136894112999926],[144.04803559800007,-25.07518353599994],[143.98328272800006,-25.080521570999906],[143.97158197600004,-25.158532733999948],[143.90020480600015,-25.320409393999967],[143.85894317100008,-25.324105403999965],[143.86787356300033,-25.47767701299989],[143.94732263900005,-25.737759292999954],[144.00851829900023,-25.863192079999976],[143.98024801600002,-26.00304680399995],[144.00821171000018,-26.12836993299993],[143.92682710500014,-26.144571681999935],[143.8652995670002,-26.005790108999918],[143.88272559600023,-25.938449525999943],[143.82064679100006,-25.858268833999944],[143.7579689700001,-25.695654523999906],[143.79011793900008,-25.650870409999925],[143.74086644400006,-25.572435295999924],[143.8667172160001,-25.57130042499989],[143.842181653,-25.487812279999957],[143.78658237100012,-25.452099202999932],[143.68940053300025,-25.298984394999934],[143.5451566180002,-25.311110223999947],[143.55885784200018,-25.24832687399993],[143.4985049820001,-25.173738961999902],[143.31989897300014,-25.197918865999952],[143.1715353950001,-25.43503302199997],[143.1283614450001,-25.427552869999943],[143.0023020010002,-25.540171390999888],[142.86446070600016,-25.593464771999948],[142.87129991300003,-25.798565891999942],[142.7931388170001,-25.864133485999957],[142.7423955920001,-25.81413180699991],[142.6870941530001,-25.8864791499999],[142.67401040200014,-25.993943255999966],[142.59182355200005,-25.954406735999953],[142.58662624400006,-25.89903974899994],[142.46070100500003,-25.915376232999904],[142.40051477800012,-25.866406306999977],[142.3100965540001,-25.984845502999974],[142.32918205600004,-26.01988652499989],[142.28024040100001,-26.168153347999862],[142.39162714700012,-26.193832424999925],[142.51306718900014,-26.179772539999874],[142.60146784300014,-26.09263859399988],[142.75138762900008,-26.201276417999907],[142.83771964000005,-26.316448531999924],[142.8584255000003,-26.427369669999962],[142.92337673500015,-26.544551012999875],[143.06857585700004,-26.727638703999958],[143.0538716970001,-26.794145280999828],[143.12015126100016,-26.91929833499995],[143.0285272210001,-27.064100120999967],[143.25834470200016,-27.08274525099995],[143.3219046910001,-27.206662357999903],[143.46674318400005,-27.251996951999956],[143.541978706,-27.338385855999945],[143.46190833700007,-27.45966932099998],[143.419085794,-27.635455393999962],[143.53367333000006,-27.818761967999933],[143.70149123600015,-27.958566622999967],[143.80782653600022,-27.99856298799989],[143.73219803000006,-28.080738528999973],[143.55562148700017,-28.063049833999912],[143.52344057300013,-28.149667790999956],[143.4153674910001,-28.215976809999916],[143.35053179600004,-28.22344118799998],[143.30762220000008,-28.39810886099997],[143.23774024800014,-28.56853525899993],[143.33313005500008,-28.581948047999845],[143.39171890500006,-28.45133364499992],[143.51008267400005,-28.463250127999856],[143.50604711000005,-28.543138772999953],[143.6313063470002,-28.685327247999965],[143.72879525700023,-28.64218281199993],[143.7914142630002,-28.66726636599998],[143.79530212900022,-28.79459258099996],[143.70319833300005,-28.901154103999943],[143.68867363000004,-29.149682445999872],[143.6118940670002,-29.13971473999993],[143.51835725500018,-29.187990122999906],[143.33657914600008,-29.19560830899991],[143.3165146760001,-29.365530529999944],[143.22064470500004,-29.582078191999926],[143.06268688600017,-29.75535190399995],[143.05002263300014,-29.847095816999968],[142.85231472700002,-29.840284639999936],[142.81590747500002,-29.888651508999885],[142.7301228230001,-29.894440196999938],[142.74802149300012,-30.053706485999953],[142.66277121600012,-30.162126642999908],[142.68048691400008,-30.21623834199994],[142.82137137100017,-30.267552467999906],[142.87438075100022,-30.403494380999973],[142.98853235900003,-30.525222927999835],[142.96746056200016,-30.60988508699984],[142.8823928190002,-30.636841619999927],[142.82930695200014,-30.536174537999955],[142.85373578500014,-30.445193209999957],[142.70790735500032,-30.32070278599997],[142.60941998200008,-30.38617874499994],[142.54650019400003,-30.289593406999984],[142.43277650100026,-30.240116514999954],[142.27603855400014,-30.303317025999945],[142.15846934900014,-30.288979614999903],[142.19260362600028,-30.364674922999882],[142.33913496700006,-30.567295884999908],[142.4861226080002,-30.539227205999907],[142.66098761100022,-30.58130799099996],[142.70452179100016,-30.745133746999954],[142.67147084400017,-30.79396017099998],[142.71845314400025,-30.922810103999893],[142.78101448500001,-30.94741510399996],[142.8485348500003,-31.035998094999968],[142.82285415,-31.106614143999877],[142.90186440100013,-31.152268207999896],[143.01682435200019,-31.067017756999974],[143.10108337600013,-31.04085532299996],[143.29886667400012,-31.105029811999884],[143.33385466500033,-31.18661640499988],[143.22715057300013,-31.218079882999973],[143.27060744400012,-31.279193608999947],[143.13477374600006,-31.348570610999843],[143.13477338000018,-31.45645193199988],[142.98490160400013,-31.567574186999934],[142.94290946200022,-31.62957993099991],[143.03528589600035,-31.772993628999984],[143.00206752400004,-31.85247451299989],[143.11797320800008,-31.820148926999934],[143.1561964550002,-31.75359587999992],[143.2836374300001,-31.65589217099989],[143.28223376600022,-31.54827565499994],[143.33319781900002,-31.542610832999912],[143.47197650400017,-31.433579139999893],[143.53946591700003,-31.469288576999816],[143.6418979880002,-31.444906814999968],[143.7863215740001,-31.331625568999982],[143.9619041740001,-31.266489343999865],[144.00014246600006,-31.168785036999964],[144.11851990600007,-31.027300855999954],[144.1063435100001,-30.88841301499997],[144.22528600400005,-30.97195878699995],[144.32724539700007,-30.906820453999956],[144.47025089800002,-30.874252451999894],[144.60761022700012,-30.746812992999878],[144.61469037800032,-30.66043483699991],[144.6812339930001,-30.66043463999989],[144.8782403160002,-30.563560953999968],[145.04656031000002,-30.44740258199988],[145.08780078000007,-30.352920645999973],[145.16144387600025,-30.361270081999976],[145.2509060120001,-30.289469382999926],[145.35787018800022,-30.247244245999866],[145.48970650700005,-30.267887269999903],[145.5158291910002,-30.20633857099989],[145.63515250500006,-30.111954773999855],[145.73843905400008,-30.083460570999875],[145.76158635900003,-30.02647467199995],[145.89693211500014,-30.06209026499988],[146.01268534500002,-30.037159057999872],[146.02039036200006,-29.895734852999965],[146.09612005600002,-29.947129792999874],[146.22263456300016,-29.89272923799996],[146.26486673800002,-29.82387428599992],[146.36897752100003,-29.784425843999884],[146.42705201,-29.69128197499998],[146.56253436700013,-29.580483467999954],[146.58046340600004,-29.47102641799995],[146.73775097200007,-29.332214460999978],[146.7594187850001,-29.23600389799998],[146.97188300100015,-29.0989159639999],[146.94481219000022,-28.92637767399998],[147.06446268900004,-28.77374426199998],[147.11467145400002,-28.82030340599988],[147.212698756,-28.808471431999976],[147.24658171400006,-28.731458849999967],[147.48609914700012,-28.80224880999998],[147.6257313870001,-28.697313902999895],[147.84590816800016,-28.586115153999913],[148.1750699470001,-28.47620997699994],[148.36094863000017,-28.30469016199993],[148.47488442000008,-28.132109518999926],[148.5874001740002,-28.014348430999917],[148.67448807300002,-27.96026518799988],[148.6293458890001,-27.85663498799994],[148.71758956000008,-27.68927028699983],[148.67278361400008,-27.573972073999926],[148.73182685400002,-27.518163344999948],[148.71530122800016,-27.406090630999927],[148.81423211900017,-27.33595995099995],[148.7733630460002,-27.267678516999922],[148.66975018500023,-27.18816865799988],[148.6095685560001,-27.07845652599991],[148.53005492800003,-27.009205758999883],[148.41878865800004,-27.044681643999922],[148.34737186100006,-26.93627820399996],[148.26900828300018,-26.91806670299991],[148.19970552500024,-26.79608072199983],[148.05243022500008,-26.88590874399995],[147.97795039000005,-26.749850800999866],[147.848270242,-26.713994368999977],[147.80441783100014,-26.741011778999848],[147.7063015010001,-26.695675865999874],[147.62016419400004,-26.58581685199988],[147.546980404,-26.69846079399997],[147.45100010500005,-26.63771242499996],[147.35231809700008,-26.712826052999844],[147.31641047000016,-26.66155391999996],[147.1843492370001,-26.70837933499996],[147.0762517600001,-26.637513470999977],[147.09578199300006,-26.582196008999972],[147.02069392900023,-26.480643229999885],[147.03998121200004,-26.398498434999965],[146.97358489300007,-26.34184418399991],[147.03922045000002,-26.278419708999877],[147.06742948300018,-26.101160012999912],[147.01878815700013,-26.020882363999874],[147.0401967160002,-25.894304914999964],[147.01224597100008,-25.841312407999908],[147.05524835900007,-25.76020892999992],[147.0357378880002,-25.650833866999903],[146.9907359990001,-25.78844387999993],[146.8937577900001,-25.837931770999944],[146.91800065600012,-25.915971697999964],[146.79500759200005,-26.053972407999936],[146.70299134100014,-26.123472696999897],[146.42136475100006,-26.133866544999876],[146.54634753100015,-26.029283429999964],[146.5239282990001,-25.987385825999922],[146.58013237600017,-25.848994626999968],[146.4877783080001,-25.907366530999923],[146.4074551210001,-25.99568815999993]]],[[[143.65081576900002,-25.021355960999983],[143.57112059300005,-24.980416691999835],[143.58765775700022,-24.865621760999943],[143.6413197290002,-24.73812800199994],[143.60832252900025,-24.604794125999888],[143.49207803100023,-24.59092272099997],[143.42103557300015,-24.514402398999948],[143.3203318430002,-24.33192859099995],[143.27112258400007,-24.450379951999878],[143.2186006950002,-24.4979684569999],[143.21130332000007,-24.61530279699997],[143.11486811200007,-24.72593738099988],[143.13616047300013,-24.798636594999948],[143.30235474300014,-24.792652958999952],[143.39224089200002,-24.9242631489999],[143.30470357600007,-24.96753998199995],[143.24453230900008,-25.052240249999898],[143.3320751030002,-25.077506894999885],[143.35542656300015,-25.13265386799992],[143.4695070240001,-25.108208440999874],[143.65081576900002,-25.021355960999983]]]]},"properties":{"objectid":225,"eco_name":"Eastern Australia mulga shrublands","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Australasia","eco_biome_":"AU08","nnh":2,"eco_id":191,"shape_leng":84.860573534,"shape_area":23.0956938726,"nnh_name":"Nature Could Reach Half Protected","color":"#FDB666","color_bio":"#FEFF73","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":252837.70892184708,"percentage":2.386319999319797}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[108.91356659400014,40.96425755500013],[109.07307454699998,40.95950468100011],[109.17716253000003,41.006466138000064],[109.36205256200014,41.15144976100004],[109.4788815400002,41.12933695900006],[109.6120076200001,41.13780067000005],[109.82106066700004,41.23403363600005],[110.40567058700015,41.33636192100016],[110.5902405980001,41.39219344300011],[110.89433252500004,41.53247699800005],[111.05481764000007,41.58605848200017],[111.23927265100014,41.57774564600015],[111.57257852800012,41.597864393000066],[111.7402645360001,41.68041390100012],[111.81005058599999,41.79331294000002],[111.88455967000004,41.83464444000015],[112.07614868700011,41.87124620000009],[112.2823716690001,41.870613031000175],[112.46524853500023,41.90598684200006],[112.74767257200006,41.99150404700009],[112.8514785870002,42.04824668200018],[113.12969155600013,42.26011739000012],[113.21205867400022,42.37813542500004],[113.09298653100007,42.552211460000194],[113.16339166800014,42.70775846100008],[113.27466562400014,42.71919825000009],[113.3913195880001,42.78453200000018],[113.42525456100009,42.84155056700018],[113.39370759200017,42.980568958000106],[113.30438265600003,43.191451775000075],[113.28672768500007,43.27928439700014],[113.52883962900012,43.492254475000095],[113.51895166600013,43.52511455300004],[113.63694757300004,43.6246810020001],[113.68862954900021,43.70570098100018],[113.74052459400014,43.91635933000009],[113.96052558100007,44.03175399700001],[114.02391053800034,44.08521662600015],[114.05354257800002,44.23978730200014],[113.99842066800022,44.392814200000146],[114.00344863600003,44.46502194900012],[114.10105154000007,44.64579697000016],[114.11517353800002,44.868182943000136],[114.04215961800003,44.97173582400018],[113.82996352500004,45.061083727000096],[113.67361454300021,45.10575373900019],[113.26596856100002,45.19510180900005],[113.07052655100017,45.2565260720001],[112.80249055400009,45.40171421400004],[112.72431153700006,45.463138309000044],[112.71884955400014,45.534191200000066],[112.80730461600001,45.669368499000086],[112.76609063100011,45.790622620000136],[112.67774956200014,45.78536565800016],[112.49346956500005,45.655528301000174],[112.22732553100013,45.51570105700006],[112.07913968500009,45.50955930100008],[111.92581154200019,45.568595224000035],[111.9754255360001,45.668537518000164],[112.16196462300013,45.80579772000016],[112.23055256400005,45.90438885000009],[112.1202545970001,45.95759197500007],[111.7485426720001,45.76155468200005],[111.34117161600005,45.6615755090001],[111.241714635,45.658401450000156],[111.17668162700011,45.71945154400004],[111.197799665,45.78017776200011],[111.33629552700012,45.868041901000026],[111.38591756800008,45.94031905200006],[111.34525259700013,46.02491843900003],[111.02151466200007,46.138359619000084],[110.98316963400015,46.40650340800016],[110.81587254599998,46.40923171700018],[110.649749596,46.35383421000006],[110.27175861900008,46.35848834600017],[110.06481965500018,46.33205618200003],[109.85482766700005,46.22215803200004],[109.67687265400014,46.16055758099998],[109.42992368200004,46.11628068100009],[109.15283154100013,46.090588471000046],[108.59495553500005,45.94120418099999],[108.21128062200006,45.82108664700013],[108.06356852100004,45.802650651000135],[107.77336155200004,45.8347627280001],[107.44017754800007,45.818721777000064],[106.9377666060002,45.900246011000036],[106.35173763100016,46.091320379000194],[106.09592462800003,46.07795861900007],[105.95674161699998,46.00198421100009],[105.91256764600013,45.85467980600009],[105.84479560000011,45.733722573000136],[105.77677159400014,45.708408387000134],[105.2779615190002,45.658286618000034],[105.18582965000013,45.56010016600004],[105.1565325520001,45.41699911800015],[105.10201263000016,45.38182814900017],[104.9537585560002,45.387865969000075],[104.7786946290002,45.543086243000175],[104.6404346330001,45.58552532800019],[104.347076571,45.53836035900014],[104.25943757100003,45.49489935200012],[104.32239555400008,45.26022701800008],[104.32239555400008,45.01800879100011],[104.25427264200016,44.87419075500003],[104.2088546290002,44.647108905000096],[104.04233554900014,44.42002822800015],[103.90608251600008,44.31406018500013],[103.64673654100017,44.20796155100004],[103.70709965500004,44.16093052499997],[103.68403651300014,44.091979816],[103.23731963000006,44.10132580500016],[103.16162853000009,44.07104886200011],[103.04808760500003,43.96507713100016],[103.02538253800014,43.896954219000065],[103.03099858100006,43.68424397900009],[103.09155263400004,43.61611721100019],[103.30349760600006,43.60854919100018],[103.5230105980001,43.62368523200013],[103.56085153800007,43.52528554400004],[103.47002456400008,43.51014564800005],[103.32620267300007,43.532854570000154],[102.97801154200005,43.51771735600005],[103.01586153400001,43.43445370900008],[103.28836055900001,43.45716263200012],[103.47002456400008,43.442022903],[104.07223564200007,43.13841209700007],[104.23661063100008,43.11174406600003],[104.39816259500009,43.162219887000106],[104.48539758700002,43.13273201700008],[104.58555563100009,42.99379375700016],[104.70024856499998,42.944512190000125],[104.875121552,42.79345101600006],[105.00234258100011,42.72680415700012],[105.26889766400012,42.66822672400008],[105.53840652899999,42.526904315000195],[105.64437859500009,42.43607315100019],[105.76548754100008,42.3906553060001],[105.85632356700012,42.46634975900008],[105.79576867499998,42.58745820200011],[105.82604260100004,42.708566309000105],[105.91687762100014,42.72370721100003],[106.12882259200012,42.69343043600003],[106.31048559200013,42.69343043600003],[106.43159453700002,42.75398398700014],[106.56784052900014,42.78426093000013],[106.67381259600012,42.84481548600007],[106.99172963400008,43.11730931500017],[107.052284526,43.26869838900018],[107.052284526,43.435220821000144],[107.02200356000009,43.647164954],[107.06742056700011,43.85910540000003],[107.11283858000007,43.91965928600007],[107.4307475720002,44.14673962700016],[107.7486646100001,44.31326641800007],[108.00601954800004,44.464652139000066],[108.35420967300001,44.57062487700006],[108.76295452300002,44.58576091700007],[109.08087156100015,44.61603886600017],[109.27767160700012,44.60090182000005],[109.51988966600004,44.61603886600017],[109.88322455000014,44.66145587300019],[109.95891565000011,44.60090182000005],[109.95891565000011,44.525207031000036],[109.85294358300013,44.464652139000066],[110.15571552800009,44.40409808600015],[110.32224265400009,44.31326641800007],[110.3525236210001,44.19215764000012],[110.201133541,44.177017744000125],[110.09516164200005,44.22243458300011],[110.00433366300007,44.19215764000012],[109.91349763700003,44.08618574100012],[109.837806537,43.949936229000116],[109.7923885240001,43.76827356500007],[109.65614353700016,43.662301833000015],[109.6864166250001,43.5714701660001],[109.7923885240001,43.556333287000086],[109.89836159600009,43.46549759600015],[109.80752557000005,43.42008394200013],[109.32308962000002,43.48063849900012],[108.99003553500012,43.45036189100006],[108.83865367000004,43.3898068310001],[108.77809157000007,43.32925311300011],[108.79323565700014,43.26869838900018],[109.02031666900018,43.17786705700013],[109.29280865400011,43.16272699300015],[109.5350345920001,43.22328071099997],[109.61072552400003,43.28383526800019],[109.80752557000005,43.238421781000056],[110.32224265400009,43.25355849200008],[110.41307868000013,43.208144670000024],[110.44335160000008,43.102172101],[110.3373795330001,42.90536920500017],[110.15571552800009,42.708566309000105],[110.05161262600012,42.645689798000035],[109.94666264900013,42.37729254000004],[109.84968553700003,42.212075506000076],[109.77426165200006,42.14742488100006],[109.16366565400011,41.928328805000035],[108.98970763500012,41.8894689600001],[108.81123361500016,41.82468858300018],[108.4342806530002,41.74717006100019],[108.09304063400009,41.60723351600018],[107.8526075850001,41.427684936000105],[107.55083459600019,41.40416028599998],[107.0996625630001,41.286313410000105],[106.8942415620001,41.21865686700011],[106.60058560800013,41.06766828000008],[106.424323572,41.00392206200007],[106.0231165670001,40.93140200400006],[105.74366760300018,40.81368521400009],[105.72816460300015,40.74324789100001],[105.81038654700012,40.57386186500008],[105.7682346260001,40.524236471999984],[105.5085905900001,40.408541565000064],[105.37493158900008,40.36426902300013],[105.2681275340002,40.292400909000094],[105.13513958800019,40.25251847300018],[104.95259062100013,40.32200260600001],[104.77624560400017,40.561781028000155],[104.66738865400015,40.63963013300008],[104.55172761000006,40.67425158400005],[104.27529864600007,40.644836972],[103.97238957300016,40.71046811200006],[103.8114925710002,40.76787057000013],[103.61674458300018,40.75359283600005],[103.43987267900008,40.70897227699999],[103.35745258700007,40.66486770800003],[103.3199006550002,40.52343935300007],[103.41477960800017,40.43107128300005],[103.65753159400009,40.264645243000075],[103.80811365900007,40.19848822200015],[103.88108064000016,40.22168094800014],[104.02386451700005,40.33648737300007],[104.27270461500012,40.33529664000008],[104.40746265100006,40.31741384900005],[104.571479565,40.10354539900004],[104.78543066200007,39.95018926000006],[104.98190264000004,39.93988957700009],[105.45116466300016,40.177034405000086],[106.03061652700018,40.43915445500011],[106.32055661600015,40.61305732100004],[106.48204051900007,40.76356763600006],[106.63100454000005,40.82298493600001],[106.78087665700008,40.921144063000156],[107.170486628,41.09761698800003],[107.51908864000006,41.221903010000176],[107.95720652900008,41.24518777000014],[108.19077261900009,41.317323099000134],[108.40994262400005,41.32767173200011],[108.59608457700006,41.27492625899998],[108.71743056300011,41.27823845200004],[108.79193864100012,41.21945784100012],[108.91356659400014,40.96425755500013]]]},"properties":{"objectid":233,"eco_name":"Eastern Gobi desert steppe","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Palearctic","eco_biome_":"PA13","nnh":2,"eco_id":824,"shape_leng":53.8522284101,"shape_area":31.6341622251,"nnh_name":"Nature Could Reach Half Protected","color":"#B2863B","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":282447.6201926832,"percentage":1.0706000572435288}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[87.77420057100016,27.69857092400008],[87.78379064200004,27.594970266000075],[87.64694266200007,27.538404489000072],[87.66120949900005,27.471975560000033],[87.7615276370002,27.526365226000053],[87.80749550200017,27.67030882300014],[87.77420057100016,27.69857092400008]]],[[[87.99868051100015,27.688979177000192],[87.91985357400011,27.650207846000058],[87.94127654500011,27.498519203000058],[87.99890162600002,27.494947339000134],[88.02353654200016,27.390842760000112],[88.08342758800006,27.313953383000182],[88.1461565780001,27.418267677000017],[88.19332154699998,27.438288020000186],[88.37349659100005,27.43731706000011],[88.38868761700019,27.50643490500005],[88.3460235620002,27.600729974000046],[88.17903157500018,27.596888213000057],[88.05623652600019,27.541249475000086],[87.99868051100015,27.571947189000184],[87.99868051100015,27.688979177000192]]],[[[90.52120254000016,27.916167478000148],[90.46842152800002,27.98766444200004],[90.34556562600011,28.013317424000036],[90.2618555590002,27.925564262000137],[90.28346259700004,27.77030878400018],[90.23341358200008,27.685288290000074],[90.30281054400012,27.621790177000037],[90.49046358600003,27.769330783000157],[90.55213159500016,27.874262488],[90.52120254000016,27.916167478000148]]],[[[88.07427957900012,28.053957920000187],[88.15792057900012,28.030482722999977],[88.4495546510002,28.020889300000192],[88.5553136490002,28.09511507600007],[88.43695866200011,28.061428375],[88.28101352100015,28.07098810300016],[88.07427957900012,28.053957920000187]]],[[[94.3544465220001,28.412766911000176],[94.3935165850001,28.287283115000037],[94.4729916120001,28.391246877000015],[94.3544465220001,28.412766911000176]]],[[[93.6730725600001,28.40099637200018],[93.72496760500019,28.44316472100013],[93.73188066400013,28.53173109500017],[93.62799854100007,28.529572420000136],[93.59152251000012,28.46103410000012],[93.6730725600001,28.40099637200018]]],[[[95.48757153900016,28.890036669000153],[95.45982358300006,28.997702383000046],[95.37941766300003,28.965013799000076],[95.48757153900016,28.890036669000153]]],[[[95.51023855200009,28.707994975000076],[95.39913156400007,28.799408347000053],[95.32691962400014,29.02398853400007],[95.25343363400003,28.972654406000117],[95.31611652400017,28.913926769000113],[95.36740153400012,28.78419116900011],[95.25659159999998,28.682194974000083],[95.19422152300007,28.72107342600009],[95.13498661400018,28.666746624000154],[95.19026157700017,28.618398800000023],[95.40284759700012,28.696564574000092],[95.51023855200009,28.707994975000076]]],[[[97.24140951000004,29.034383100000184],[96.97458654200011,29.06043422300013],[96.89165465100007,28.99900157800016],[96.6797026390002,28.946726665000085],[96.74639157500013,28.888016966000123],[96.79033655200004,28.773088500000085],[96.8695525780002,28.7108050920001],[96.94152060500005,28.70343320799998],[96.9672396360001,28.636573952000163],[97.03220357700008,28.622661669000024],[96.96898659300012,28.79952150200012],[96.95175155600003,28.940561943000148],[97.01551051400008,29.015668657000106],[97.09724463100008,28.997286473000088],[97.01923358800008,28.868490819000044],[97.13906865200005,28.75156628700006],[97.20760361800012,28.77751733000008],[97.18788955000002,28.871032715000183],[97.23410753100006,28.926923413000054],[97.29035161100006,28.802609228000165],[97.26187862100016,28.705561206000027],[97.30679355200004,28.665680781000162],[97.40140562500011,28.712407041000063],[97.39860556700012,28.839344930000152],[97.33543350900015,28.97326662100005],[97.24140951000004,29.034383100000184]]],[[[92.9165345520002,29.001526542000192],[92.9342656300002,28.835119110000107],[92.82244852700012,28.767013632000157],[92.75645461800019,28.861971040000128],[92.81095157300007,28.929237154000077],[92.66849559600013,28.997774635000155],[92.65661659600016,28.88392005900016],[92.58002460800003,28.84186067500019],[92.51881458700018,28.901465394000127],[92.52309455400018,29.031652108000173],[92.42768854700012,29.02798821100015],[92.26333652500011,29.13293936200006],[92.2925415900001,29.029119432000073],[92.18697353100015,29.007038147000117],[92.06111154300015,29.087332924000066],[91.98299354700009,28.957283002000167],[91.96994761700017,28.84503657800019],[91.72362561100005,28.901762281000117],[91.65460164400008,28.867091880000032],[91.50290663100003,28.94325756300009],[91.50082356000007,29.084088121000093],[91.37178064000017,29.066310775000034],[91.25371566700005,29.09328390700017],[91.2104266570002,29.018216756000186],[91.13531457900012,29.024331354000026],[90.88045459800014,29.135118992000116],[90.80004851000012,29.238520161000167],[90.74399553799998,29.195915785000068],[90.857398665,29.115138882],[91.02810651700014,29.02615156800016],[91.0947185070001,28.946304553000118],[91.25341056600013,28.941483617000017],[91.71844458900017,28.816446576000033],[91.62640358100009,28.668453515000067],[91.5375976520001,28.631805152000084],[91.56387357700015,28.752278414000102],[91.53474462000008,28.784195863000093],[91.30180365100006,28.82772241600003],[91.38478851600019,28.72618839900008],[91.24288155400012,28.74420647300019],[91.1971515670001,28.690427680000028],[90.94561752500005,28.70531025200006],[91.01093266800012,28.597957518000158],[90.90618855000008,28.612314880000042],[90.80692250900017,28.67794032000012],[90.69565559400013,28.716453824000155],[90.46408054000005,28.691649593000136],[90.32403553400019,28.792450696],[90.34056062400003,28.92347660700017],[90.37796050800011,28.978393328000152],[90.31750452300008,29.038374898000086],[90.3046875870001,29.18028940300013],[90.45789352200006,29.157938220000062],[90.34447463700013,29.258478311000033],[90.20812253000008,29.306051311000033],[90.146446643,29.22085680900011],[90.05596165100008,29.256500517000177],[89.91835762300019,29.195741609000038],[89.80766252100017,29.17060763500001],[89.8100205180001,29.253231575000086],[89.76780657200015,29.320350000000133],[89.39509552400017,29.302635518000102],[89.48595451600016,29.257028242000047],[89.66114065100015,29.250587587000155],[89.74709354800018,29.07306860100016],[89.5686725010001,29.010250092000035],[89.68341053000006,28.96451574600013],[89.70272059000013,28.887052041000118],[89.8283235770001,28.85333332099998],[89.98052955100019,28.85580732300008],[89.99183657100014,28.758327969000106],[90.0386196610001,28.693322621],[89.9632945140001,28.625982244000056],[90.11597456900012,28.531769316],[90.02462758200016,28.45004441900005],[90.11874361400015,28.45748637600019],[90.16329963200008,28.39268470900015],[90.20245351400013,28.252277772000127],[90.36986560100013,28.36838272200015],[90.45492565799998,28.272528953000176],[90.55483257900016,28.28062956000008],[90.60343957100008,28.338682957000117],[90.69119256599998,28.277930587000185],[90.61153464600005,28.205026469000188],[90.59533661800009,28.132123692999983],[90.89100657600017,28.04301920100005],[90.89640753900017,28.00116617900011],[90.6655426010002,28.052469964000124],[90.68849158100011,27.93501485800016],[90.60073858700002,27.887761879000095],[90.58392365100019,27.75831427999998],[90.63903064100003,27.696086025000056],[90.70597053100016,27.72484668200002],[90.94605254600009,27.684464349000052],[90.95007351300018,27.856688990000123],[91.01711264500017,27.839879754000037],[91.00399060800004,27.978824886000154],[91.06849656100013,28.044412105],[91.14104461500011,28.061205584000163],[91.18758362400007,27.995692126000108],[91.179206583,27.859611089000055],[91.33895157600011,27.760374217000162],[91.43385366300004,27.852989386000047],[91.53672761000001,27.780163387000073],[91.67319455000012,27.764036103000137],[91.71909351600016,27.916901565000046],[91.69581563000003,28.05889569900006],[91.70512356600017,28.145023945000162],[91.80988360900005,28.21718609600009],[91.83781462500019,28.177613623000127],[91.9029926400001,27.944835263000073],[92.044547562,27.91764537500012],[92.11074850400013,28.001700106000158],[92.28336357400008,27.99371818700007],[92.34023260700013,28.02364895800008],[92.47393066900008,27.97875196399997],[92.51483955300006,28.107458602000122],[92.63257562100006,28.13639125500015],[92.67049350700017,28.21121935500014],[92.89997861700004,28.21620926900016],[92.68745462300006,28.113443448000112],[92.75929256300009,28.063559390000023],[92.71140255900013,27.898935458000096],[92.64654557100005,27.78519722300001],[92.69425955500014,27.772492773000124],[92.6843715920001,27.65412755900013],[92.88633757200012,27.732636488000082],[92.79252664100005,27.828991159000168],[92.83690663900018,27.86743676900005],[92.97545664900014,27.891868676000172],[92.95411665900014,27.9801240810001],[93.01042963700013,28.04544224100016],[93.08901266200002,28.07479080500019],[93.27391057300014,28.010162643],[93.3647236320001,28.05673266500014],[93.1970905980001,28.126868910000155],[93.20294166900004,28.19935477100006],[93.28222659400012,28.23228542400011],[93.34671762800014,28.19321502700012],[93.43565364400018,28.193844172000183],[93.50312058800006,28.14688808000011],[93.64824653600016,28.21482407600007],[93.73018651300004,28.158436666000114],[93.80465653800013,28.214105244000052],[93.81537665700012,28.270451918000163],[93.69315358900013,28.289670951000062],[93.41797654500016,28.306030582000176],[93.26914965200012,28.347629632000064],[93.24672655200004,28.442954838000105],[93.28811655700014,28.474224701000026],[93.37875359700001,28.414265930000113],[93.48718256700016,28.411496214000124],[93.59638954500019,28.56247993900007],[93.72992650700019,28.584109943000044],[93.88932063300012,28.537331044000155],[93.84678666600007,28.648047436000184],[93.79232759700011,28.64330462000015],[93.71584356800014,28.71626171100013],[93.5548855460001,28.719568539000193],[93.56517064400003,28.79583866200005],[93.63061553800014,28.88598787400008],[93.76093250800011,28.96425976300003],[93.61543255900006,29.05514909800013],[93.53283661400008,29.02252958000014],[93.47689059600009,29.066800949000083],[93.39136450600012,28.98176117700018],[93.46916952200007,28.825742441999978],[93.32408866800012,28.870797687000106],[93.12261956700007,28.886120979000168],[93.04732560100007,28.825887449],[93.00250253600018,28.972823553000183],[92.9165345520002,29.001526542000192]],[[93.29553253000006,28.64041671900003],[93.059142576,28.664253846000122],[93.06378162400017,28.691214740000134],[93.31607858600012,28.713210028000162],[93.29553253000006,28.64041671900003]]],[[[86.28192860600012,29.210148257000128],[86.26734962600017,29.160918993000053],[86.06659650700004,29.126384378000182],[85.85440058100005,29.16528898200005],[85.67273758200008,29.162511890000133],[85.5555726570002,29.214636096000106],[85.38333158800003,29.233718169000042],[85.27951065300005,29.276747507000152],[85.14838466200013,29.269566731000168],[85.08904263200003,29.231421360000184],[85.19552649700006,29.151418608000142],[85.20297951800006,29.009337135000067],[85.10584264800008,28.938761845999977],[84.83174150600013,29.171548587000075],[84.78455357000018,29.14440362600004],[84.83118461200002,29.029628382000055],[84.72193153300003,29.036759034000113],[84.63477365400013,29.158127316000105],[84.57191457700003,29.178988364000077],[84.38041658800006,29.138750870000024],[84.29510457100014,29.289823946000183],[84.23434465800017,29.36123021800006],[84.13590255800017,29.401889824000136],[84.05111659000016,29.38974813500016],[83.99822963000014,29.00536511900009],[83.91751860800008,28.97077149600011],[83.85614061299998,28.8791153840001],[83.82757559000004,28.770839635000073],[83.68040462500011,28.68830471100017],[83.68692054900009,28.652674247000107],[83.79209164100013,28.548511498000096],[83.74121851800004,28.503989342000125],[83.95218649500015,28.45119860700015],[84.00827064700002,28.521475501000168],[84.21629355900012,28.377596613000037],[84.30456556000019,28.40075061400006],[84.33703655099998,28.490117796000106],[84.41990658300017,28.54880050600019],[84.45545155200011,28.39424692800003],[84.53070863800008,28.405280362000042],[84.6867295510001,28.280850339000153],[84.75476059800019,28.287795081000127],[84.83841651800014,28.35139042500009],[84.84412358800017,28.494550649000132],[84.90623449700018,28.553197484],[84.97248858000012,28.453122422000092],[84.90792060000012,28.42819430600008],[84.94802063100008,28.19707388700016],[85.0957945900002,28.242245137],[85.1361995540002,28.178122572],[85.22385364200005,28.16109825600006],[85.23865558000017,28.264740154000094],[85.30687756600014,28.381649263000156],[85.17348460599999,28.438502874000164],[85.45557353500016,28.455997415000184],[85.46432457700018,28.347951665000153],[85.38126360400014,28.106441542000027],[85.45398751100004,28.046144310000102],[85.64804851900004,28.062450464000108],[85.71516459700018,28.019871234000163],[85.75550066200009,28.126689872999975],[85.71063954200014,28.14662388300019],[85.71811653499998,28.257524508000074],[85.63587162500005,28.228865440000106],[85.57979551900013,28.28244642100009],[85.54864451100019,28.408296171000075],[85.48634350100019,28.409543231000043],[85.49132553700014,28.540378704000034],[85.4701386000001,28.662491801999977],[85.605964659,28.593957841000076],[85.60472061700011,28.535395160000178],[85.7305755640001,28.486797053000032],[85.84770964300014,28.501750536000145],[85.89381463700016,28.412033997000094],[85.86390649800012,28.302383616000043],[85.7592396610001,28.23384932000016],[85.84147652500008,28.202697809000085],[85.81442259100004,28.06498749800005],[85.9563446410001,28.023033056000088],[86.01101661000007,28.097380872000144],[86.07549255600009,27.87569545800011],[86.20144657700013,27.86702957600005],[86.17477452300005,27.96155280100004],[86.23625159199997,28.018660384000157],[86.36912554500009,28.058802660000083],[86.48847160800011,28.176776774000075],[86.6174315470002,28.174033712000096],[86.64212061100017,28.293378937000114],[86.76147455400019,28.287892144000068],[86.80674756000008,28.165804192000053],[86.86161751000003,28.24399611700011],[86.92884054100006,28.205585710000037],[87.05093352200004,28.19872495500016],[87.16616859700014,28.24399611700011],[87.26631960000003,28.195982899000114],[87.34588666000008,28.095840948999978],[87.36508960000015,27.99021354600012],[87.34313957500007,27.898301451000123],[87.24162265700005,27.929853952000144],[87.21144059700015,27.83245707600014],[87.14285265700005,27.741917099000148],[87.04544857200005,27.669211967000138],[86.88494166400005,27.636288521999973],[86.78617065800017,27.762495174000094],[86.84241456900003,27.854408274000036],[86.81085955400016,27.960032660000138],[86.69837156300014,27.946315172000084],[86.57901762000017,27.96140561500016],[86.6476136070001,27.726828499000135],[86.58998852600018,27.71311000600008],[86.42399566200015,27.82559631999999],[86.35814659300013,27.847545340000124],[86.34553551599998,27.746212824000054],[86.51072656700006,27.716343074000065],[86.50403562900016,27.621826051000028],[86.6464845650001,27.652139707000117],[86.72763060800014,27.76048016400017],[86.767303664,27.642947106000065],[86.8417735210001,27.61424646400019],[87.10958052500013,27.666868220000083],[87.28791859100005,27.784120987000165],[87.36526461400007,27.783957037000107],[87.41349760500003,27.86467476400003],[87.5130695860002,27.824116411000034],[87.51709759400006,27.650610848000042],[87.59192653100018,27.696653983000147],[87.55738856400006,27.884671806000142],[87.7300646540001,27.926880053000048],[87.79721861900009,28.072691138000096],[87.93727854399998,28.114899217000186],[88.04826366000009,28.05632279000008],[87.93464662700012,28.262847185000055],[87.8471905200002,28.29469489600018],[87.79309053100013,28.41698803700018],[87.63294957700003,28.399284452000074],[87.5307845710002,28.318531017],[87.47245758899999,28.30895938700013],[87.36468458600007,28.37374378700008],[87.41841158000011,28.434225086000083],[87.41088865400008,28.497167479000098],[87.34349060900018,28.55450321700016],[86.94693757300013,28.531801335000125],[86.75714865300012,28.551724281000077],[86.71357750900012,28.52767241000015],[86.69019350800005,28.406829171000027],[86.61737857400016,28.402374357000042],[86.5279235500002,28.507562212000153],[86.52500161900008,28.562474071999986],[86.60433163900007,28.670366600000193],[86.71687360900017,28.68510986500013],[86.7929075290001,28.757851206000055],[86.85949655300016,28.73952082200003],[87.08872266200012,28.789023671000052],[87.16308556600018,28.8401076830001],[87.28968063500014,28.803526376000036],[87.42213465400016,28.689404752000144],[87.60962659600017,28.660419963000095],[87.74752063800003,28.59813035300016],[87.78591159900014,28.659953090999977],[88.00942963200004,28.77374446800019],[88.10852065900013,28.785251144000142],[88.21125060500003,28.744088624000142],[88.20598559700011,28.519516650000185],[88.40414451700008,28.501826308000034],[88.4934925870001,28.458039079],[88.56457565200014,28.36837685400019],[88.73604558700015,28.308130417000086],[88.63283552500013,28.26157028500012],[88.679420634,28.145886108000127],[88.57033552900003,28.101603004000083],[88.6279906170002,28.022808085000065],[88.72583760200007,27.992110371000138],[88.84671755400012,28.04391237600015],[88.9426496100001,27.99978500900005],[88.9829405800001,27.930717959000162],[88.99636855700015,27.821358430000032],[88.950324583,27.750372595000044],[88.77188861700017,27.683222319000095],[88.72609760900019,27.57755082700004],[88.64543151400005,27.501494108000088],[88.65500666500014,27.386090053000032],[88.89363056400003,27.40948210099998],[89.02741261200003,27.497974379000084],[89.14819365700015,27.365099924000162],[89.25861366500004,27.40910122700012],[89.29546352800014,27.597131119999972],[89.39585157100015,27.502685176000057],[89.56033351300005,27.601950715000044],[89.66079766300004,27.714346169000123],[89.5935136120001,27.804321206000054],[89.69460255000007,27.955436024000107],[89.65178661500016,28.053188796000143],[89.8446736530002,27.957304853000096],[89.7922825670002,27.833919885000114],[89.84967764900017,27.77379347599998],[89.95706961000002,27.81524399900013],[89.96115863800014,27.991914402000134],[90.00849962700005,28.00442405700005],[90.06188162100011,27.88942686000007],[90.16059864800008,27.921515467000063],[90.2618555590002,27.994416400000034],[90.32666057900008,28.080821752000134],[90.2780606280001,28.129422709000153],[90.19570155600013,28.107822712000086],[90.15114553800004,28.15642350100012],[89.81227156200003,28.09972277600008],[89.7744675020001,28.248228643],[89.84602364200009,28.271178964000114],[89.88247653900004,28.20637763200017],[89.98913558700013,28.245527993000053],[90.13224753100008,28.23877804700004],[90.06879451200001,28.31168132600004],[89.9413755020002,28.317532900000117],[89.76741765100007,28.249546613000177],[89.70793162000018,28.194127145000095],[89.56210360300014,28.147925089000182],[89.46263153500018,28.08022864800006],[89.40354163200004,28.17033595100014],[89.33390763000011,28.11183227900011],[89.33666259400013,27.940149612000084],[89.27112566699998,27.879874171999973],[89.18475350699998,27.902747213000055],[89.14956661300005,27.98588177800019],[89.08686863600019,28.023272107000082],[89.02653452300012,28.120249050999973],[89.02101856100006,28.344432942000083],[89.14683562100004,28.318299843999966],[89.30127755200016,28.355708278000066],[89.47750052800006,28.457111370000064],[89.52854950400001,28.518408729999976],[89.5636296130001,28.64210282300013],[89.44489257800018,28.648402326000053],[89.28083761000005,28.686898898000095],[89.50620251200002,28.748429444000124],[89.52215561999998,28.806813088000183],[89.43184664900014,28.830457263000085],[89.40714266500015,28.9934296240001],[89.31033352800017,28.988100913000153],[89.35486557300015,28.814771872],[89.2858806660002,28.783439145000045],[89.25360061600009,28.889731903000154],[89.19022353700018,28.885534078000035],[89.13573462900013,28.776126437000187],[89.04878260900011,28.90475126800004],[88.83106250600014,28.899729502000014],[88.7667696210001,29.012118921000024],[88.92440053000007,28.970718690000183],[89.06517761200013,28.96261204800004],[89.03366065000006,29.033032105000075],[88.93546263100012,29.03147826800017],[88.8615726340002,29.075639330000115],[88.75869751300013,29.076829561000125],[88.64826962600006,29.191793901000096],[88.54830956300015,29.20844639500018],[88.38759662800004,29.129708306000055],[88.44880665,29.074695528000177],[88.4207916470001,29.026475445000074],[88.27191161200011,29.037298997000164],[88.26288564400011,29.100832482000044],[88.37738059700007,29.15216845300006],[88.357833664,29.220235878000153],[88.28699451200004,29.254877444999977],[88.19786051500006,29.247673701999986],[88.23670158400006,29.169974633000038],[88.0348286420001,29.097912729000143],[88.0573196360001,29.055361327000185],[87.98405459300005,28.955643334],[88.04776761900018,28.91298279900019],[87.96002166500017,28.854147204000128],[87.95517759600006,28.95935299700011],[87.78425550200018,29.04746859200003],[87.57917061600017,28.993738581000173],[87.55283350200011,29.103834376000123],[87.47817253800008,29.151308638000103],[87.18773657500014,29.19110608200009],[87.16612266400011,29.211952043000167],[87.04370865700008,29.186341137000113],[86.73372659800003,29.213691120000078],[86.49668151500003,29.25015860100018],[86.28192860600012,29.210148257000128]],[[84.46158559700007,28.989805960000126],[84.48997460000004,28.940977853000106],[84.57855254100019,28.920539588000054],[84.50928466100015,28.787684746000025],[84.56265257400008,28.697976422000067],[84.71595758300009,28.372086685000113],[84.65917957700003,28.368677932000082],[84.53426357100017,28.44589370100016],[84.45137057100004,28.536736097000187],[84.52177453500008,28.594645660000026],[84.45023365000003,28.643473767000046],[84.26059761700014,28.644608676000075],[84.3412166060001,28.817207653000025],[84.25264754900013,28.788819823999972],[84.11183962200016,28.836510841000063],[84.0368886440001,28.829698198000074],[84.06755065200008,28.93643704100009],[84.14930756800015,28.969365683000035],[84.46158559700007,28.989805960000126]]],[[[94.92141756500013,29.36870302000017],[94.97959166100009,29.406074406000187],[95.12733460700008,29.418350038000142],[95.12950853700016,29.529985925000176],[95.24974861500004,29.57378103299999],[95.27910656600005,29.618560345000105],[95.25438665700011,29.74862149900008],[95.00138058600004,29.715081816000122],[94.94686854300011,29.652239],[94.91374963200013,29.49690322300006],[94.83813463900015,29.38876225500013],[94.66684759800017,29.342066170000123],[94.51358751600009,29.27485353200018],[94.42535356800005,29.266315055000064],[94.27822853600009,29.119794693000017],[94.26058161200012,29.06685291700012],[94.35781051500004,29.001623269999982],[94.34133152600015,28.9641838230001],[94.44467150800006,28.861120947000074],[94.46054850900003,28.67343555000008],[94.5134966560002,28.722694654000122],[94.48815162500006,28.82461725600018],[94.36636357700019,29.037351132000083],[94.38684056700015,29.090349906000142],[94.5997085530002,29.062252090000186],[94.66409263400016,29.117730901000186],[94.63784051300007,29.250532769000074],[94.67302656900011,29.293159943999967],[94.78807053700012,29.14595679300004],[94.84659566800008,29.203701400000057],[94.92141756500013,29.36870302000017]]],[[[96.01154358500003,29.519569231000162],[95.98460364500016,29.587578484000062],[95.7954026330001,29.658281010999985],[95.69768556700006,29.76245700300018],[95.57226564100006,29.78039830000006],[95.45193453600001,29.730057092000152],[95.40607462900016,29.61755854000012],[95.57699554900006,29.48665835800017],[95.67212663000015,29.492628117000038],[95.83386953299998,29.4641333350001],[95.8904576060001,29.427670715000147],[95.7437136150001,29.308290452999984],[95.68171653300004,29.122367602],[95.81757360500012,29.185815257000115],[95.88288858000016,29.267451976000075],[95.97174865600016,29.17330677500007],[95.9142605340001,29.08922907800013],[96.09942666600011,29.10983799800016],[95.96788761600004,29.001942453000026],[95.93586757200018,28.838209015000075],[95.85788754200013,28.79968142900009],[95.86624161700007,28.729633194000087],[95.99607059200014,28.812339779000126],[96.12519867200012,29.02780146200007],[96.20182066600006,28.8782483600001],[96.074928543,28.77908122600013],[96.15667758000006,28.75536211600013],[96.35867356700015,28.924096365000082],[96.4489825390001,28.917445660000055],[96.52068351800006,28.833138969000117],[96.50916259200005,28.776481327000056],[96.3915326400001,28.730043068999976],[96.44158165400017,28.623108424000122],[96.31674963500006,28.564970873000107],[96.03759755800007,28.51409992900011],[96.15809663600004,28.45024441200019],[96.21534754900006,28.53096431800003],[96.3179626640001,28.463402994000035],[96.2727666040002,28.42014583499997],[96.40131365000008,28.323559656000157],[96.45279664100019,28.21480513299997],[96.59307064000006,28.35729933100015],[96.67495764300014,28.34707860600014],[96.62671660500013,28.190945207000027],[96.73055262800011,28.169015969000156],[96.7262265600001,28.096110175000092],[96.80811356300018,28.063311285],[96.837898656,27.99579337900019],[96.91649660000019,28.01493362200017],[96.90561655500011,28.110349520000057],[96.83824164400016,28.139548383000033],[96.79386851900017,28.346258688000148],[96.78728453400015,28.535297092000064],[96.67021164200014,28.652365457000144],[96.65978958400007,28.805283223000174],[96.59169751700006,28.920509581000147],[96.57598865700004,29.072400563000087],[96.49916851400019,29.10033258500016],[96.34098859000017,29.06667270600019],[96.26901251700014,29.164320034000184],[96.42340851400019,29.202278488000104],[96.49740563200015,29.141084895000176],[96.59703058600019,29.118316629000105],[96.6185985640002,29.184802052000066],[96.589424512,29.283425202000103],[96.52552054700016,29.343156991000058],[96.40467060200001,29.35148977600005],[96.22269462300011,29.473728937000033],[96.01154358500003,29.519569231000162]]],[[[96.75492066400017,29.59463135300018],[96.77451353100014,29.4482290090001],[96.82510351300016,29.389729192000118],[96.86169454400016,29.573743147000073],[96.96031953700009,29.595968266],[97.06034062000009,29.56818728600018],[97.06311754500013,29.64875414],[97.1923066450002,29.655698882000138],[97.13951859200012,29.53068279600018],[97.24787162200005,29.415387371000065],[97.06589463700004,29.382050530000186],[97.05061358900008,29.188968864],[97.1595615670002,29.218161859000077],[97.10700250800005,29.33425943300017],[97.23233056800007,29.356288415000165],[97.23322257000012,29.212185227000077],[97.32532459900006,29.132220362000055],[97.35111253000008,29.207010240000102],[97.30010261400014,29.399949749000143],[97.387496527,29.34256606600013],[97.40663962100012,29.117101756000068],[97.48002653600014,29.066846714000064],[97.50212860900001,28.904858221000097],[97.57613360500011,28.810935810000046],[97.54197651200008,28.736938022000174],[97.58770767300012,28.655921061000186],[97.475341555,28.576509232999967],[97.38271364600013,28.387152150000077],[97.06494865500008,28.390266865000115],[97.08306865399999,28.255374383000117],[97.07971958000019,27.993644259000177],[97.10022758300016,27.920407548000185],[97.21056360400007,27.858489088],[96.89605766500006,27.61294928000018],[96.92391961400011,27.495704392000107],[96.98057558000005,27.472139342000105],[97.03073154700013,27.61258131500017],[97.16114055000014,27.632642730000157],[97.21130355800005,27.76806394300013],[97.3015895630001,27.748001522000095],[97.4771426580001,27.76806394300013],[97.53733863700012,27.7329553350001],[97.66774764000013,27.76806394300013],[97.65270262600018,27.82323765300015],[97.55238365000014,27.963675770000123],[97.5423505120001,28.013832576000027],[97.6376495660001,28.134208440000123],[97.70787851600005,28.03389583400002],[97.66273459100006,27.948629080000046],[97.76304652600015,27.858347936000087],[97.84330760800009,27.833268109000187],[97.93359361300014,27.763049888000126],[97.92356164800015,27.903487],[98.10413365900007,27.89345754900006],[98.13422351800006,27.813207029000125],[98.1442566560001,27.672768744000166],[98.24958767500016,27.61759436400007],[98.22554066499998,27.830727218000163],[98.14749156800008,28.01210858600018],[98.15220655600007,28.135714333000067],[97.99944251500011,28.282786391000116],[97.91818264600005,28.463987883000186],[97.84685566700011,28.564236954000023],[97.80655665000006,28.698136348000162],[97.83130656600008,28.870479677000105],[97.8112635920001,28.965619643000082],[97.7358395390001,29.090110016000153],[97.76068852900016,29.18339406000007],[97.73408453600013,29.246185747000084],[97.55734255200014,29.42965353800014],[97.49932067100008,29.467473188000156],[97.38598661100013,29.652179991000025],[97.31149261400014,29.742183862000047],[97.14536262300004,29.894840950000173],[96.96749863700012,30.011409586000013],[96.76940157600018,30.00229309300005],[96.71925365500005,29.96582527600009],[96.75492066400017,29.59463135300018]]]]},"properties":{"objectid":237,"eco_name":"Eastern Himalayan alpine shrub and meadows","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Palearctic","eco_biome_":"PA10","nnh":2,"eco_id":751,"shape_leng":149.112745627,"shape_area":11.1612771857,"nnh_name":"Nature Could Reach Half Protected","color":"#E8A382","color_bio":"#D6C39D","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":121456.54521410183,"percentage":2.4871794739700293}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[39.526652833000014,23.656676414000174],[39.494187307,23.63419336300018],[39.47916862900013,23.57915485400008],[39.57413703700013,23.550016820000053],[39.602465681000126,23.66252200800011],[39.526652833000014,23.656676414000174]]],[[[38.98580055400015,24.42748534000009],[38.91916079100008,24.45581398500019],[38.964126893000184,24.30751577900014],[38.963317503000155,24.30832516900017],[38.964126893000184,24.30751577900014],[38.97752679100006,24.375864255000124],[38.98499116400012,24.426675950000117],[38.98580055400015,24.42748534000009]]],[[[37.27421083600012,26.52002787700019],[37.18580747800013,26.449161300000128],[37.249209683000174,26.387467807],[37.27421083600012,26.52002787700019]]],[[[35.354158268000106,28.757541128000128],[35.292464775000155,28.730021873],[35.23913497800004,28.64251783800006],[35.31413843800016,28.631636041000036],[35.350021386000094,28.511666480000088],[35.49580149000019,28.58001495600007],[35.354158268000106,28.757541128000128]]],[[[35.64113193300011,30.915014716000087],[35.61783949300002,30.852601766000078],[35.51756508400001,30.78029627400008],[35.514687253000034,30.509870134000096],[35.42844226900007,30.407257489000074],[35.37322389500008,30.061737959000027],[35.404430370000114,29.923242364000032],[35.467832574000056,29.94509588900013],[35.491125016000126,30.064885586000116],[35.557674847000044,30.123701249000135],[35.645898341000134,30.37829932000011],[35.64823657700015,30.464814101000115],[35.70705223800013,30.601511051000045],[35.662715662000096,30.77211244400013],[35.718833357000165,30.887405529000034],[35.64113193300011,30.915014716000087]]],[[[35.72225078100013,30.923738140000182],[35.800311936000185,31.136787534000064],[35.92864519200015,31.236522348000108],[35.88709651200003,31.36692404400003],[35.77108396799997,31.384550756000067],[35.67800413800012,31.283287094000173],[35.63690511900012,31.053600243000062],[35.64717623200005,30.952896835000047],[35.72225078100013,30.923738140000182]]],[[[35.537106154000014,30.984855304000064],[35.602371153000036,31.1184413630001],[35.612353627000175,31.408202926000058],[35.537106154000014,30.984855304000064]]],[[[35.617120034000095,31.638249506000136],[35.681691358000194,31.750215100000162],[35.65147413600005,31.87576045800006],[35.59391752500011,31.8638894070001],[35.62701257700019,31.756960016000107],[35.617120034000095,31.638249506000136]]],[[[35.64535874500007,31.905797814000096],[35.647876849000056,32.09186754600006],[35.60506911900018,32.09861246100007],[35.592748407000045,31.90687700100011],[35.64535874500007,31.905797814000096]]],[[[36.90297635400009,32.27464053100016],[37.02280056200004,32.43393500700006],[36.98392848100008,32.593246991000115],[36.79959148700016,32.79349384300019],[36.766300579000074,32.94655024500014],[36.652194546000146,32.973255324000036],[36.56874850800011,32.835045619000084],[36.59167452200006,32.72501805200005],[36.52869457800017,32.46737008300016],[36.54491054300013,32.388515485000084],[36.62140583600012,32.29912492400018],[36.721569261000184,32.26239833400007],[36.90297635400009,32.27464053100016]]],[[[40.55437046200018,36.363200396000025],[40.44023861199997,36.41680719300018],[40.221595494000155,36.420809049000184],[40.220371569000065,36.548217330000114],[40.042423597000095,36.437421813000185],[40.03175360199998,36.3709402450001],[40.09795353800018,36.31224848300013],[40.20771757700004,36.287419106000186],[40.21968458800012,36.34656080899998],[40.51839449500005,36.34158262900007],[40.55437046200018,36.363200396000025]]],[[[42.03441256000002,36.76172854400005],[41.90864947900019,36.763200741000105],[41.74679157600019,36.71565556900009],[41.64899857000006,36.733161341000084],[41.52659260900015,36.71673566100009],[41.47065346300019,36.65461000100004],[41.655109480000135,36.65671587000014],[41.960739487000126,36.690731309],[42.03441256000002,36.76172854400005]]],[[[36.205055550000054,36.71948576400018],[36.266235564,36.818116456000155],[36.222663582000166,36.96680236599997],[36.26630345800015,37.061729599000046],[36.2783395350001,37.207127624000066],[36.345947464000176,37.33409719600019],[36.29637554700008,37.40270257100019],[36.20042052500014,37.42495032100015],[36.118148457000075,37.499037964000024],[35.815593604000185,37.5856371050001],[35.66221248700009,37.4903781160001],[35.52487148299997,37.48567100700012],[35.277568459000065,37.29954380600009],[35.157882592000135,37.28847785000005],[34.94009359000012,37.15404268400016],[34.705940599000144,37.07291340500012],[34.54642845500018,36.89238682400003],[34.40273245900005,36.823761333000164],[34.230583591000084,36.66270490700015],[34.00134658500019,36.50972025400017],[33.877117560000045,36.48869743500006],[33.71815845400005,36.52983766000011],[33.63598646600008,36.58088546200014],[33.543567602,36.52624081800019],[33.59743155600006,36.43107369500018],[33.79551353000005,36.40708334700014],[33.812515550000114,36.332264132000034],[33.66116352400013,36.28775086200011],[33.33755450300009,36.255265623000184],[33.10958450600009,36.16334179300003],[32.906944453000165,36.19117323199998],[32.780166491000045,36.11782588000017],[32.660045604,36.149098090000166],[32.603778559000034,36.20191497700017],[32.47804649100016,36.20659174300005],[32.35392760300016,36.34986076500019],[32.19464445300014,36.43116572800005],[32.07876950300016,36.58220846200004],[31.841314545000102,36.65201999200008],[31.76670051900004,36.78852615900013],[31.587272470000073,36.87169240800017],[31.436511536000182,36.89049502900008],[31.37623056500007,36.949407738000104],[31.282123585000136,36.970086229000174],[31.176076584000157,37.10720762700004],[31.04613160400004,37.059375458000034],[30.985038594000173,37.196930704000124],[30.911542546000078,37.26935537600019],[30.89537452600007,37.450320666000096],[30.79037660400013,37.37165918700009],[30.69838152800014,37.34621977500018],[30.74195854000004,37.27442525400011],[30.689559575000033,37.19580585200015],[30.596054584000058,37.14014599200004],[30.617448553000145,37.06040559400003],[30.574298516000113,36.95792157200009],[30.413646601000096,36.84021400300003],[30.46054653400006,36.76514668400006],[30.589961611000092,36.80990353200008],[30.702638529000183,36.88646618300015],[30.756677497000112,36.84893503800015],[31.00871445300004,36.85914972800015],[31.299488542000063,36.81762041500008],[31.57392345100004,36.70755697400017],[31.789031585000146,36.60461597100016],[32.026142551000135,36.542002316000094],[32.09770958700017,36.491546444000164],[32.29812659200019,36.23385103400017],[32.512298467000164,36.09617425000016],[32.67116151700003,36.04082351500011],[32.808124497000165,36.017040200000054],[32.962657455000056,36.09947722300012],[33.09360558100019,36.08426457200005],[33.14727356600008,36.131199374000175],[33.400581553999984,36.12557277000002],[33.48331848200013,36.15207316300007],[33.57357448000016,36.13128352800004],[33.70272049700014,36.16702279000003],[33.80050646200016,36.225191522000046],[33.8787615870001,36.31163844800005],[34.00644647100006,36.286785937000104],[34.083747567000046,36.31516354100012],[34.08708155300002,36.40809822800014],[34.18051546600003,36.47241693000012],[34.28697552700004,36.58791150899998],[34.42840958200014,36.66026795300013],[34.57769345700012,36.775205471],[34.725192489000165,36.81479772600005],[34.83581148300016,36.798799019000114],[34.911769462999985,36.729910337000035],[35.02538649600018,36.707640961000095],[35.34614952600003,36.54871638800017],[35.44557951700011,36.59336645100018],[35.55625148400014,36.57810049100004],[35.63786356100019,36.61061590500009],[35.608459509,36.73377120900011],[35.795051571000045,36.76713369800018],[36.02020658900011,36.93146711300011],[36.144931488000054,36.868030522000026],[36.213287585000046,36.77271051300016],[36.205055550000054,36.71948576400018]]],[[[41.07332258600019,38.14545989200019],[40.79868651100014,38.22225673300011],[40.75817459400008,38.20397697600009],[40.5502816020001,38.21849560600003],[40.49274855400006,38.19473022800008],[40.22561646100007,38.15905986600012],[40.237735520000115,38.080462927000156],[40.37066261300015,38.05856336100004],[40.74769553800007,38.07429133200014],[40.923816591000104,38.0364079790001],[41.08684946900007,38.036968896000076],[41.17368648900015,37.982048823000184],[41.13204150600012,37.862346025000136],[41.194629513000166,37.77082570100015],[41.00712952300012,37.784684507],[40.80806351399997,37.70328398900017],[40.630298602000096,37.75177899900007],[40.561038601000064,37.73654723700008],[40.28699445600017,37.74032714000009],[40.19438146600015,37.88255278200006],[40.02202254700018,37.94528043100013],[39.96809757300008,38.03440101600006],[39.8653485160001,38.07958500700016],[40.112792524000156,38.22952334100006],[40.07627860700012,38.393231633000084],[39.95421948800009,38.42753306300011],[39.91899856400005,38.28765452099998],[39.73314645700003,38.220776657000044],[39.66100358400007,38.24452627700009],[39.5510445810001,38.14076803800015],[39.31944656100006,38.094359787000144],[39.26299259900014,38.036582993000025],[39.29848459500005,37.969442105000155],[39.08626553500011,37.849506123000026],[38.93851051900003,37.800522113],[38.836692523000124,37.850452104000055],[38.72879446300004,37.84441344600009],[38.46204357900001,37.76367677500019],[38.38256855300011,37.787900475000185],[38.20833560800014,37.74424132100006],[38.007465477000096,37.79407944700006],[37.89822061300015,37.77685664699999],[37.78693358100014,37.70726690200013],[37.77248351500003,37.65131384300014],[37.656311511000126,37.5569126580001],[37.39522545200015,37.408924625000054],[37.30132248799998,37.25598171400014],[37.25321556100016,37.103819661000045],[37.11380355600005,37.101546657000085],[37.047260465000136,37.02315641600018],[36.96949048500011,37.012795378000135],[36.898223521000034,36.9020798250001],[36.80984858900007,36.8934469670001],[36.81938551900009,37.012028434000115],[36.86221352300004,37.100748700000054],[37.19375651900015,37.34882487100009],[37.227790566000124,37.42993906200019],[37.406852492999974,37.50301987000017],[37.5521775950001,37.61498248300006],[37.42183346900015,37.60855188700015],[37.2765045110001,37.56253959700018],[37.11125545700014,37.417614480000054],[37.00031258700017,37.398167794000074],[37.000617520000105,37.494365053000024],[36.8137475150001,37.542436105000036],[36.80268860000018,37.62562548900013],[36.701820609000094,37.5890242320001],[36.821315535999986,37.43278119800016],[36.76782256500002,37.33380718200016],[36.745292512000105,37.22341232100018],[36.664390550000064,37.06296961800007],[36.619022493000045,37.01966133000019],[36.51294347300018,36.761228647000166],[36.37963852300004,36.52242990200017],[36.241622608000114,36.43448077099998],[36.156394579,36.30448265000018],[35.8808445410001,36.182037293],[35.98772051200007,36.01767705700007],[35.92172258000011,35.928457062000064],[36.14339458200004,36.03328265200014],[36.196617488000186,36.024436056000184],[36.224678591000156,35.85404889500006],[36.15483856200012,35.818145851000054],[35.89652657900018,35.89580787200015],[35.81719555300009,35.83484243500004],[35.85413745000005,35.753828323000164],[35.77433050000019,35.66087352000005],[35.74344654000015,35.56295679700008],[35.924159534000125,35.421576051000045],[35.928653575000055,35.27338970300019],[35.96302759300005,35.19871583000008],[35.89731950700008,35.10571894900005],[35.88036761000018,34.907642004000024],[35.93910949700012,34.77322762600011],[35.99739859300013,34.54742938000015],[35.82326857700008,34.40898615600014],[35.73380249000013,34.363932420000026],[35.6643795440001,34.28355147700006],[35.63665053200009,34.1514982810001],[35.64404655600009,33.990582671000084],[35.57986850200007,33.90617003300002],[35.482734482000126,33.902237244000105],[35.492404516000136,33.823568221000016],[35.358123577000185,33.512985180000044],[35.29983850500008,33.46439478499997],[35.21552259400016,33.26351174600012],[35.21137254600012,33.20509843000008],[35.11890456300017,33.113567209000166],[35.08096656100014,32.9597596210001],[35.09027047300009,32.906386344000055],[35.034126474000175,32.813688362000164],[34.96520258700008,32.82536100100009],[34.89236049600004,32.4705478300001],[34.78449261000014,32.118661118000034],[34.64022848900015,31.813790009000172],[34.55429051200008,31.675664794000056],[34.38136648500006,31.469527643000163],[34.23045752700017,31.328554593000092],[34.319904504000135,31.333006222000108],[34.41976951600009,31.403374981000184],[34.51485851900003,31.552412764000053],[34.68021754400013,31.55462072400013],[34.738334475000045,31.49965455000006],[34.90927852900012,31.511409164000042],[34.914535491000095,31.40079503100003],[35.052486530000124,31.343213871000103],[35.1881214820001,31.380142693000096],[35.27962856300019,31.47961945500009],[35.36573753000016,31.703886830000158],[35.38146248400005,31.89906916800004],[35.45782061600016,32.027126040999974],[35.54325023400003,32.086531003000175],[35.56991670200017,32.19547743500016],[35.558955081000136,32.4263314050001],[35.57722873200015,32.592607042],[35.57251366100019,32.60744887500016],[35.66829145800011,32.66410616400009],[35.69167383200016,32.598995247],[35.698418747000176,32.45384466900015],[35.679532984000105,32.18665608900017],[35.686997357000166,32.15428049600007],[35.68079203500014,32.10805534200006],[35.67449678100007,32.08035622299997],[35.692483222000135,31.89878310199998],[35.69491139100006,31.895005950000098],[35.77432152799997,31.863439746000097],[35.748690849000184,31.782770558000152],[35.799052884000105,31.58590896300018],[35.788710680000065,31.532039572000144],[35.77836847700007,31.501372690000096],[35.78943013800006,31.41296933300015],[35.8725274950001,31.405594892000067],[35.91650434300004,31.50083309700011],[36.00481776800018,31.850219712000126],[36.023074006000115,31.981700595000063],[36.085756752000066,32.214085412000145],[36.01138281900012,32.35500917600001],[36.049244277000184,32.58559534900013],[36.04864152500005,32.69114091400019],[35.96369948600011,32.74632619099998],[35.83045555600006,32.77392444600008],[35.927612543000066,32.90337640300015],[35.93589352800018,32.97720705600011],[35.865867588000185,33.13985017600015],[35.92540357600018,33.253014083000096],[36.04865661300005,33.32342676400009],[36.06762351900011,33.43072384100009],[36.239189510000074,33.619904067],[36.265792497000064,33.69921296400014],[36.25498956500007,33.8316099860001],[36.13933958500019,33.830649253000104],[36.05998257600004,33.775672853],[36.0337825900001,33.64421460400018],[36.05770454200018,33.53645668900009],[35.782733526000015,33.339799470000116],[35.80908958200007,33.48870112999998],[35.90358749400008,33.55756198600011],[35.84356652900016,33.63739056100019],[36.039768610000124,33.784618355000134],[36.07981449400012,33.86881021400012],[36.20772954500006,33.904011022000134],[36.30287152200009,34.02694370200004],[36.41508056300012,34.12947198000012],[36.66050755000015,34.45396814200012],[36.71483250800014,34.54246662300011],[36.81098551000008,34.564572048000116],[36.878482462000136,34.404966195000156],[36.80503855000006,34.153313298000114],[37.047378482000056,34.29508631700003],[36.99584553500006,34.46260887800008],[36.9931225900001,34.5633942230001],[37.12018956000014,34.67966312300018],[37.1833725140001,34.88442279100008],[37.253921484000045,34.929026419000024],[37.31139753600013,35.03690788300014],[37.29367048100005,35.1684655410001],[37.344470514000136,35.247774606000064],[37.37701057100003,35.42358603200017],[37.55396646100013,35.41167635300019],[37.736606455000185,35.44346354700019],[37.85232147800019,35.52825856800018],[37.818016528000044,35.621487292000154],[37.84120154300018,35.75153537000011],[37.920967588999986,35.913152545],[37.87919251900013,36.04704154600006],[37.77489448600011,36.05463337100019],[37.761829613000145,35.94081986600014],[37.83251152100007,35.87378257800009],[37.65701659600012,35.87178332600007],[37.646728481000025,35.93713501400009],[37.553417614000125,36.02693101300014],[37.60887161500017,36.128708608000125],[37.81841651200011,36.120018753000124],[37.93885054700013,36.32685897800013],[38.0847474630001,36.33100098000017],[38.24330557800005,36.42202593400003],[38.337551530000155,36.66977772500002],[38.403221562,36.742537171000095],[38.486579589000144,36.66743883900017],[38.46456150299997,36.53612861400012],[38.49407150200017,36.42069002600016],[38.54808448600005,36.36599341400017],[38.63822950800011,36.40066733500004],[38.78363759100006,36.51402687600017],[39.013629471000115,36.481865681000045],[39.095519491000175,36.55297422800004],[39.12099846500013,36.6383903470001],[39.27315850600007,36.7322983410001],[39.73285258700008,36.87020428500006],[39.95695450300019,36.950647924000066],[40.261501568000085,36.95639573100004],[40.44060557200015,36.855323725],[40.614364604000116,36.83152817200016],[40.7519954550001,36.834652107000124],[40.83839762100013,36.81014359000005],[40.98463450700018,36.72105770600007],[41.070903569000166,36.6968720590001],[41.31141658100012,36.80167887400012],[41.624168523000094,36.79670505200016],[41.93947258700018,36.87249740600015],[42.22774551600003,36.79111197600014],[42.45463558800009,36.81426748700011],[42.59354752900009,36.90687075300019],[42.64019751400019,37.00794343000018],[42.681945594000126,37.06142751600004],[42.64825855800012,37.24138697700005],[42.437526615000024,37.285517865000145],[42.271758554000144,37.411636674000135],[42.04254552100019,37.45640576000011],[41.95277449900016,37.50958876800013],[41.96190256000017,37.67194254500009],[41.93352545900018,37.70826585700007],[42.065998589,37.90844230200008],[41.878524584000104,37.995972505000054],[41.73957861300016,38.00932051800004],[41.63791249700006,38.053073550000136],[41.43936549500012,38.091300057000126],[41.45494845899998,38.13237607700006],[41.312950470000146,38.098273801000175],[41.07332258600019,38.14545989200019]],[[41.655445595000174,37.698947025000166],[41.806789574000106,37.68000744400007],[41.87952454500015,37.61114575100004],[41.90159661000007,37.40757446800012],[41.78936058000005,37.301313561000086],[41.581199535,37.240119801],[41.42226758600003,37.21245650300017],[41.37342053700007,37.276980058000106],[41.424045555000134,37.391392869000185],[41.56026053500017,37.40613278100011],[41.64036554500012,37.49595476400003],[41.620964457000184,37.56904764200016],[41.37286749900011,37.52525940700008],[41.193519581000146,37.54959291],[41.095348552000075,37.509622631000184],[41.12903558800008,37.4379878690001],[41.05139955100003,37.386029122000025],[40.96533148700013,37.43537908500008],[40.78676945600006,37.401028705000044],[40.65909949200011,37.4342461870001],[40.57247151700017,37.41071751400011],[40.46557257900014,37.54107488400007],[40.53034256300015,37.61125253600005],[40.603900469000166,37.58368412200008],[40.76664350100009,37.608852630000115],[40.85155855100015,37.659514697000134],[41.00272349200003,37.63444140700017],[41.14757149600007,37.66734272400009],[41.23526749399997,37.61078683800008],[41.440010566000126,37.67499037200008],[41.52479150500017,37.65921395400005],[41.655445595000174,37.698947025000166]],[[36.353046600000084,35.820201597000164],[36.34187654100003,35.68436380300005],[36.4095845490001,35.344223155000066],[36.408489537000094,35.03825384900017],[36.35466749300019,35.01399745900011],[36.297698547000095,35.11723887000011],[36.22987352700011,35.16491764900019],[36.23372249700009,35.44312056000018],[36.1861805100001,35.59877987800019],[36.23322260000003,35.696498452000185],[36.353046600000084,35.820201597000164]],[[36.08204257100016,34.45969398800014],[36.244934466000075,34.53131282400017],[36.441307538000046,34.664419291000115],[36.50985356900014,34.653025602000184],[36.43282656100007,34.46706369200007],[36.35457948300018,34.35382384500008],[36.06810346600014,34.073222201000135],[36.035747476000154,33.97041128600006],[35.953746479000074,33.84923377600006],[35.859989527000096,33.795756228000016],[35.73989848000019,33.65262936400012],[35.683727491000184,33.46659151400013],[35.58270661500012,33.41867301200017],[35.56386158200007,33.49721982600016],[35.62239056800007,33.66987160900004],[35.69994345600014,33.72918396800014],[35.70656247800014,33.817522522000104],[35.789943471000186,33.89503920100009],[35.86526157700001,34.197097007000025],[36.049335547000055,34.38693772700003],[36.08204257100016,34.45969398800014]],[[35.425476528000104,33.110436066000034],[35.45526849400005,33.211766067000156],[35.55857058900011,33.300722367000105],[35.60594560900006,33.29316976900009],[35.53835260100004,33.105923249000114],[35.425476528000104,33.110436066000034]]]]},"properties":{"objectid":242,"eco_name":"Eastern Mediterranean conifer-broadleaf forests","biome_num":12,"biome_name":"Mediterranean Forests, Woodlands & Scrub","realm":"Palearctic","eco_biome_":"PA12","nnh":4,"eco_id":791,"shape_leng":107.355031771,"shape_area":14.2211078937,"nnh_name":"Nature Imperiled","color":"#F5A27A","color_bio":"#FE0000","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":142871.73736261702,"percentage":4.324998611756098}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-100.30364969299995,31.708839055],[-100.45809386499997,31.745616858000062],[-100.53076776899997,31.817827261000048],[-100.72297573599997,31.886052120000045],[-100.76873176599997,31.986410274000093],[-100.83741147199999,31.97596536000009],[-100.94792850799996,32.035683094000035],[-101.02714542099994,32.01231171400019],[-101.15263452899995,32.02767457300007],[-101.18928129899996,32.068077359000085],[-101.41471984699996,32.150735576000045],[-101.44345770199999,31.931134364000172],[-101.54515379299994,31.858487142000115],[-101.49370659799996,31.76608161000007],[-101.35057477099997,31.781444734000047],[-101.25751179199995,31.68624610100011],[-101.26663560499998,31.61715582300002],[-101.35099531199995,31.61107271300017],[-101.47944764499994,31.46162499600007],[-101.70106906199999,31.413089608000064],[-101.81189820999992,31.308527671000036],[-101.99233794399993,31.24696265900019],[-101.98785450899999,31.007987672000013],[-101.87330615299993,30.9660808700001],[-101.82067494299997,30.76016712000012],[-101.7587242109999,30.659334627000135],[-101.64657179599999,30.63734078500005],[-101.63778607699999,30.560630979000166],[-101.73111807199996,30.418985894000173],[-101.65893747299992,30.35126470100016],[-101.74331639799993,30.303072639000106],[-101.65304774399993,30.21961957900004],[-101.42748959599993,30.123391418000153],[-101.33673816199996,30.163352588000066],[-101.21502426599994,29.963122434000127],[-101.07364080399992,29.83491599600012],[-101.08447639499991,29.745793649000063],[-101.00959083999999,29.65267371500005],[-100.93292075599999,29.656665527000087],[-100.94271609999998,29.779914007],[-100.67009363699992,29.829558865000024],[-100.60009531599997,29.776118264000104],[-100.65311167099992,29.729744658000072],[-100.75075867099997,29.740349663000075],[-100.77137729399993,29.683577194],[-100.68623697599998,29.616672242000107],[-100.56403262299995,29.567995113],[-100.4400816729999,29.567977896000116],[-100.06107942099993,29.433513126000094],[-99.93191120899996,29.329013496000186],[-99.8555063419999,29.323408135000136],[-99.554385589,29.46721642600005],[-99.28390468999999,29.514396365000096],[-99.20562730799998,29.483350249000125],[-99.08901392499996,29.50463797600014],[-99.01395691,29.466585420000058],[-98.87656908499997,29.51696175600017],[-98.65738853599998,29.577653294000015],[-98.47915334399988,29.56127279300017],[-98.25935415299995,29.63807967600019],[-98.16962281199994,29.69770587200003],[-97.92741574199994,29.895560918000058],[-97.90184447799999,30.006785339000146],[-97.84023542699998,30.0956547240001],[-97.83518997099992,30.176405092000152],[-97.71016691099999,30.419069721000085],[-97.67449953299996,30.667959846000144],[-97.86222466599992,30.7748337970001],[-97.91176970899988,30.845071807000124],[-98.11862778199998,30.89214881800018],[-98.23814033399992,30.901150365000035],[-98.33485010899994,30.980072110000094],[-98.34228981599995,31.098026876000063],[-98.412247257,31.182618616000184],[-98.51218872599998,31.222737887999983],[-98.68702617599996,31.17979971600016],[-98.79962890899992,31.173322141000085],[-98.93043795199998,31.199114653000038],[-99.00241150399995,31.27688627600014],[-99.11647190799988,31.253506577000053],[-99.27808843099996,31.13928400300017],[-99.4451502529999,31.153204668000058],[-99.54784599699997,31.114715374000127],[-99.61405160899994,31.180195174000062],[-99.81488498699991,31.220283080000115],[-99.71450969599994,31.276503550000086],[-99.878863573,31.315901259000157],[-100.02204301499995,31.242160753000064],[-100.23078723599997,31.30171417100013],[-100.363549418,31.270717892000107],[-100.42408091599992,31.313298182000153],[-100.490441493,31.242283718000067],[-100.62062617399994,31.36357770700016],[-100.52947252599995,31.407459084000152],[-100.5652890429999,31.508318575000033],[-100.70170749399989,31.624224956999967],[-100.38840657999998,31.585737528000095],[-100.30364969299995,31.708839055]]],[[[-100.21311850799992,32.006085540000186],[-100.15468596499989,32.074901628000134],[-100.18094465499996,32.15765674800019],[-100.12404636699989,32.20218085700003],[-100.0483260879999,32.119119722000164],[-99.96146315099998,32.168379697000034],[-99.8984015229999,32.158897816000035],[-99.84274600799989,32.26054573600004],[-99.86308686999996,32.32103274200006],[-100.13752104999998,32.33336320500007],[-100.18987876399996,32.4482105730001],[-100.26515081199983,32.45877681300004],[-100.28244596699989,32.38414626300005],[-100.42221247499998,32.32921076500003],[-100.51032789599998,32.36114257800017],[-100.66265546499989,32.254243003],[-100.64239893099995,32.152762973000165],[-100.67595454199983,32.07841721200003],[-100.55470318299996,32.080015064000065],[-100.49571926499988,32.01133983400007],[-100.21311850799992,32.006085540000186]]]]},"properties":{"objectid":246,"eco_name":"Edwards Plateau savanna","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Nearctic","eco_biome_":"NE08","nnh":2,"eco_id":391,"shape_leng":19.3825278921,"shape_area":7.05160838864,"nnh_name":"Nature Could Reach Half Protected","color":"#93FC7C","color_bio":"#FEFF73","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":75207.44483973771,"percentage":0.7098190791401333}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[145.12369299600027,-15.88997554599996],[144.93543010700012,-15.7009752969999],[144.84510247100002,-15.736365606999982],[144.70305173300017,-15.667387542999961],[144.63394789900008,-15.6851170139999],[144.58402694000006,-15.637496031999945],[144.39442654700008,-15.742609759999937],[144.50752481100005,-15.861301792999882],[144.36392127300007,-15.948455835999937],[144.22926458300003,-15.912066821999929],[144.12776709800005,-15.862474721999945],[144.1793507640001,-15.79400612899991],[144.11711462100004,-15.668116877999978],[144.04199282000002,-15.591710669999884],[144.04659439800002,-15.817291796999939],[144.10056234700005,-16.088363243999936],[144.07595097800004,-16.229017380999835],[144.10680967000008,-16.46724158899997],[144.11068859400007,-16.61072277999989],[144.1885352070002,-16.619097026999896],[144.25791879300016,-16.75095376099995],[144.13091333900002,-16.808734751999964],[144.17050979200008,-16.878393757999902],[144.06383803300014,-16.891664763999927],[144.10852473100022,-16.958856632999925],[144.03657852700007,-17.001129174999846],[144.00020387300015,-17.08786353299996],[144.02839317300015,-17.1745312889999],[144.0390551160001,-17.38990131299994],[143.98260012200012,-17.375118632999886],[143.8478303380001,-17.455430590999867],[143.9174233970001,-17.500228123999875],[143.92907999400006,-17.65013255399998],[143.79425773800006,-17.689219140999967],[143.69881740100016,-17.750837016999924],[143.54871767200018,-17.655553918999942],[143.47885281100002,-17.743491493999954],[143.55105256900015,-17.825307540999916],[143.5212353830001,-17.89705358599997],[143.41615460900005,-17.961498726999935],[143.4082092240003,-18.02968631099992],[143.31660585600002,-18.01843973099983],[143.27790038900002,-18.057238947999963],[143.16337152400013,-18.07458541799997],[143.18066554200016,-18.213678108999886],[143.24848832100008,-18.304617907999898],[143.0902054720001,-18.369578671999875],[142.9670937840002,-18.38337586499989],[142.9245874610001,-18.273647495999967],[142.8335766560001,-18.24179584599989],[142.67414824900004,-18.075144119999948],[142.60268703800023,-17.958398959999954],[142.54624087200023,-17.993821529999934],[142.40138784600015,-18.00315540699995],[142.38470449700003,-18.03453254799996],[142.2245112400003,-18.06437305499992],[142.18615883700022,-18.111514336999903],[142.24220042600007,-18.188425690999964],[142.42625151000016,-18.236533986999973],[142.52369466200025,-18.241363342999875],[142.47758685400004,-18.374611409999943],[142.55246833600017,-18.65235809899997],[142.62318403400002,-18.656964733999928],[142.6195167310001,-18.737444842999935],[142.72282375800023,-18.850674932999937],[142.79408692500022,-18.841956877999905],[142.85511343500013,-18.692173973999843],[143.01229090100014,-18.818485329999874],[143.11035941700015,-18.769589466999946],[143.20964712600005,-18.826715038999907],[143.21460355300007,-18.875517264999928],[143.30138075300022,-18.950332137999965],[143.41848812800026,-18.91383986099993],[143.53920348800023,-18.96107026699997],[143.54838984900027,-19.026199214999963],[143.6440041090001,-19.041082003999975],[143.70869688300013,-19.129911664999838],[143.54637378000018,-19.296694409999873],[143.71184844100003,-19.517606128999944],[143.88742892400035,-19.601493542999947],[143.97091391000004,-19.61295015199994],[144.06473337000023,-19.538733851999837],[144.09130271800018,-19.604617250999922],[144.00343413600012,-19.644280494999975],[143.86320283100008,-19.746733925999877],[143.89506714100003,-19.80701106899994],[143.967417715,-19.82803959099988],[144.0332433010002,-19.746855903999915],[144.0993178880002,-19.75267035299987],[144.0355643140001,-19.904334366999933],[144.1026357410002,-19.887656491999962],[144.15277453900035,-19.79099019399996],[144.28504957200005,-19.689502164999908],[144.30673790600008,-19.830269511999916],[144.35042445800002,-19.946637892999888],[144.25775934800004,-20.027201840999908],[144.26936995900007,-20.166616720999855],[144.20298293700012,-20.17346595299989],[144.17942335100008,-20.251990937999892],[144.0921934390002,-20.241329649999898],[143.9748067930002,-20.274583436999933],[143.9282359650001,-20.252292910999927],[143.7497105010002,-20.353493379999975],[143.78882699400026,-20.41867600599994],[143.66972252200003,-20.520054320999975],[143.6484168310002,-20.59816637399996],[143.71744538300004,-20.630232598999953],[143.89904808300014,-20.621138404999897],[144.0584003570001,-20.594832500999928],[144.0548044100001,-20.75083550499994],[144.19394910900007,-20.685173628999962],[144.29819678400008,-20.68060136899993],[144.45485619600004,-20.619275270999935],[144.58600108200017,-20.62960547699987],[144.65976892100002,-20.567347409999968],[144.67134701200018,-20.42723291699997],[144.76577355700033,-20.30217993499997],[144.85108937300015,-20.350013830999956],[145.1372535280002,-20.44977425299993],[145.2380406100002,-20.560140894999904],[145.46980782200023,-20.43467487399994],[145.41929069200023,-20.368719848999945],[145.50565021600005,-20.34280390699996],[145.54766197800018,-20.423676324999917],[145.6158945520001,-20.35669442899996],[145.69811302200003,-20.213942998999926],[145.80187312300006,-20.16779354499988],[145.62318264300018,-20.06034903399984],[145.59436596000012,-19.998669059999884],[145.6607740400002,-19.936678160999975],[145.7405858010003,-19.925130195999884],[145.91879711400009,-19.836449432999927],[146.1127403050001,-19.899687662999952],[146.26461247200018,-19.91463080699998],[146.25682492300018,-19.972037389999855],[146.13210801500009,-20.139915164999877],[146.10226263500022,-20.21926129899998],[146.0320313520001,-20.276990667999883],[146.08812771700002,-20.36354311899987],[146.17260080200003,-20.3637934759999],[146.31690045900007,-20.432205245999967],[146.38916333300006,-20.39017129599989],[146.45104781500027,-20.311044050999897],[146.58606245800001,-20.31759766899995],[146.72084486200004,-20.40315961999994],[146.76270993900016,-20.542165614999874],[146.79734647500015,-20.565834801999927],[146.90524224700005,-20.46231368399998],[147.00319672100022,-20.567301215999976],[147.10080338800014,-20.538080987999876],[147.1765917140002,-20.615368583999896],[147.08790995700008,-20.675814665999894],[147.04848867400005,-20.843526456999882],[147.17489006800008,-20.887104610999927],[147.2795651370002,-20.86883554499991],[147.30054584000004,-20.8188824639999],[147.39113187500004,-20.812121839999975],[147.50965454200002,-20.840895911999837],[147.6339547990002,-20.912700256999926],[147.66084908400012,-20.814244737999957],[147.5399370780001,-20.75595525599988],[147.44700580000006,-20.612305660999937],[147.36657243000025,-20.588156798999933],[147.37697764900008,-20.508139463999896],[147.29010080600017,-20.440883850999967],[147.20889644800002,-20.239903332999916],[146.97736581400022,-19.98585610599997],[147.0011016740002,-19.905086887999914],[146.72486958000013,-19.90285060499997],[146.68145472900005,-19.831411169999967],[146.76629538600002,-19.787420484999927],[146.7490695790002,-19.715685505999886],[146.77802329700012,-19.63586910299989],[146.67116504000012,-19.595839221999825],[146.6119497100002,-19.521478698999886],[146.59909450400005,-19.45044264299986],[146.46854016900022,-19.34198231599987],[146.39836863000016,-19.342049429999918],[146.37614736400008,-19.267380232999926],[146.2426793520001,-19.104903487999934],[146.08477539600005,-19.05758729299987],[146.04625627300004,-18.902696465999952],[145.90935343200033,-18.909517136999966],[145.76849122900012,-18.822525820999942],[145.74084882900002,-18.721691440999905],[145.6293736890001,-18.665371963999917],[145.6573583080002,-18.555199073999972],[145.64774869100006,-18.439540575999956],[145.54979339400006,-18.294505345999937],[145.5896726440002,-18.176330969999924],[145.47930538100013,-18.075266817999875],[145.45616107700005,-17.985445917999982],[145.51077170700023,-17.954923882999935],[145.43651928800034,-17.867811692999908],[145.417380685,-17.74246887199996],[145.43776391000017,-17.597738197999945],[145.36411559200008,-17.538486630999955],[145.32306829300012,-17.388043687999982],[145.34568295200006,-17.288573157999963],[145.42545515100016,-17.179456611999967],[145.52003335200015,-17.135807310999894],[145.56307488300024,-17.02252087499994],[145.53958385300007,-16.868717981999964],[145.43757002700033,-16.766686032999928],[145.374620595,-16.761188973999936],[145.33585982800003,-16.678549526999973],[145.24762217000023,-16.63927802899991],[145.21329421400014,-16.51493554599989],[145.12654341000007,-16.484470372999965],[145.14641890200005,-16.36616030499988],[145.08362825600034,-16.311991879999823],[144.99052430100016,-16.334041586999888],[144.94311250200008,-16.293770269999925],[144.89956053200012,-16.17626267399993],[144.9852578650001,-16.084533246999968],[145.08203369600005,-16.093893402999925],[145.06320870900004,-16.00323113999997],[145.12369299600027,-15.88997554599996]]]},"properties":{"objectid":247,"eco_name":"Einasleigh upland savanna","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Australasia","eco_biome_":"AU07","nnh":2,"eco_id":185,"shape_leng":112.876737935,"shape_area":9.95456771596,"nnh_name":"Nature Could Reach Half Protected","color":"#CEFC39","color_bio":"#FEAA01","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":116880.83007698045,"percentage":0.5451781526839857}}, + {"type":"Feature","geometry":null,"properties":{"objectid":249,"eco_name":"Ellsworth Land tundra","biome_num":11,"biome_name":"Tundra","realm":"Antarctica","eco_biome_":"AN11","nnh":1,"eco_id":121,"shape_leng":16.0134589737,"shape_area":0.0620223223725,"nnh_name":"Half Protected","color":"#72EBD8","color_bio":"#9ED7C2","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":218.39399384490133,"percentage":0.002555763834397964}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-84.7889042,-78.47980563999994],[-85.64250313799994,-78.6659592339999],[-85.06258283399995,-78.62923474799993],[-84.7889042,-78.47980563999994]]],[[[-86.03601286099996,-78.23242205199989],[-86.30256402699996,-78.27996489599997],[-86.01899423899994,-78.45478330299989],[-85.78554405899996,-78.41031091799988],[-85.82042771399989,-78.30369809699988],[-86.03601286099996,-78.23242205199989]]],[[[-86.19691328,-77.77800537399986],[-86.28014862899983,-77.8558003629999],[-86.08736913699988,-78.0299753729999],[-85.89652351899997,-77.97100061499998],[-86.13097617299997,-77.8893088779999],[-86.02166136099999,-77.8150059589999],[-86.19691328,-77.77800537399986]]]]},"properties":{"objectid":250,"eco_name":"Ellsworth Mountains tundra","biome_num":11,"biome_name":"Tundra","realm":"Antarctica","eco_biome_":"AN11","nnh":1,"eco_id":122,"shape_leng":166.309322236,"shape_area":1.23655424508,"nnh_name":"Half Protected","color":"#5AB1D2","color_bio":"#9ED7C2","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":2946.2399834473445,"percentage":0.034478482968261226}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[82.73910549900012,45.236971930000095],[82.93395256100018,45.14917685900019],[83.40505960900009,44.980662886000175],[83.57079363900004,45.010809910000035],[84.03831457400014,44.948260963],[84.07797958300011,44.985712816000046],[84.5497055510001,45.025599946],[84.66370362500004,45.104262934000076],[84.69922663400018,45.257208862000084],[84.78836850900012,45.38718401700015],[85.09151462200009,45.50092325800006],[85.09236153000018,45.643165329000055],[85.0450285870001,45.70014550700017],[84.9993975060001,45.87244776400013],[84.68995658400019,45.92608289200007],[84.55171955500009,46.010693343000014],[84.48542054400014,46.09495644800006],[84.6841125540002,46.073185293],[84.81594865900018,46.171444835000045],[84.88482661300009,46.13647168000011],[85.11142751000011,46.24352383799999],[85.44255861800002,46.273157051000055],[85.51192456700011,46.26391399099998],[85.70931252000014,46.31397407000014],[85.7836304970001,46.37967846800018],[85.922698508,46.65227472300006],[86.51414454000013,46.62805856700015],[86.73465765999998,46.63194156700007],[86.85928365200004,46.66936760300018],[86.9334415350001,46.730982805999986],[86.89265452400014,46.91425798000006],[86.73338361100019,47.02084444000013],[86.5634155460001,47.1848814710001],[86.35188262900016,47.29114388700003],[85.77587857700013,47.50106026999998],[85.61854556100019,47.58774272800008],[85.65242756000009,47.4408257340001],[85.79133564500006,47.35498750200003],[85.85238657800011,47.2532258330001],[85.87274152700007,47.131113071000186],[85.79811861600007,46.961514145000194],[85.71670552600006,46.880104742000185],[85.30966957800007,46.852966487000174],[85.08579263200005,46.771560270000066],[84.99760461699998,46.69015086700011],[84.84156761100019,46.676581572000146],[84.69910459300013,46.717288788000076],[84.64483663200014,46.79191236900016],[84.63805366000008,46.9547281560001],[84.71853652700014,46.977036256000076],[84.51693750600003,46.97535015200003],[84.43803362200009,46.99925332800018],[84.19754055900012,46.99977635900018],[84.02474963700018,46.89898363800012],[83.5924836580001,46.82487839400005],[83.16737364500005,46.80388625300003],[82.5424425810001,46.80967328600019],[82.44999655900011,46.73838385900018],[82.34509251400004,46.73101381900017],[82.28748352600013,46.779098283],[82.04773762500014,46.84859465400018],[81.86685162900005,46.81339233700015],[81.53756755600011,46.86887349500006],[81.3780285900001,46.94924605600005],[81.25891856100003,46.922512814000015],[81.14959758900017,46.96145295700012],[80.97923255700016,46.98037426500014],[80.80998265300013,47.07207983000012],[80.72131351700011,47.076104652000026],[80.50670662000005,47.006764184000076],[80.36083954400004,47.05336454800005],[80.24021155200006,46.987504247000174],[80.208808584,46.91468478700011],[80.18192262399998,46.755541950000065],[80.25003061700005,46.693141698000034],[80.28495063100013,46.59394321500008],[80.35993161700014,46.53179408500017],[80.548019512,46.461881804000086],[80.53646053300008,46.3771685910001],[80.67916059000015,46.30466211099997],[80.93100761199997,46.26489819400018],[81.04051952400005,46.21444098100005],[81.067397605,46.12975073400003],[81.23280356800012,46.064663412000016],[81.4397425320002,45.92150888800012],[81.53838361800013,45.82322671400004],[81.82303657100016,45.70818341699999],[81.9609755400001,45.55971543600003],[82.09690050500018,45.48368403100005],[82.31133255500015,45.44656711900012],[82.73520657200004,45.28761606000012],[82.73910549900012,45.236971930000095]]]},"properties":{"objectid":251,"eco_name":"Emin Valley steppe","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Palearctic","eco_biome_":"PA08","nnh":3,"eco_id":728,"shape_leng":18.5212925282,"shape_area":7.59403598652,"nnh_name":"Nature Could Recover","color":"#FD9057","color_bio":"#FEFF73","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":65116.93112793775,"percentage":0.6145833060564521}}, + {"type":"Feature","geometry":null,"properties":{"objectid":252,"eco_name":"Enderby Land tundra","biome_num":11,"biome_name":"Tundra","realm":"Antarctica","eco_biome_":"AN11","nnh":1,"eco_id":123,"shape_leng":89.6381789895,"shape_area":0.453849802876,"nnh_name":"Half Protected","color":"#4CAD9E","color_bio":"#9ED7C2","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":2141.678126432834,"percentage":0.025063067917268252}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-71.60343162499987,18.52335312700012],[-71.72042857599996,18.569161233000102],[-71.80419161699984,18.491143987000044],[-71.62831162799989,18.40575116900004],[-71.49903854099995,18.429057722000096],[-71.51927161699984,18.48928203100013],[-71.60343162499987,18.52335312700012]]],[[[-71.91083557699989,18.475116950000086],[-71.87812050599996,18.501378459000023],[-71.99132548499995,18.646642708000172],[-72.06893151399998,18.59863753700006],[-72.0184245129999,18.513818544],[-71.91083557699989,18.475116950000086]]]]},"properties":{"objectid":254,"eco_name":"Enriquillo wetlands","biome_num":9,"biome_name":"Flooded Grasslands & Savannas","realm":"Neotropic","eco_biome_":"NO09","nnh":1,"eco_id":580,"shape_leng":1.6898677104,"shape_area":0.0537589158955,"nnh_name":"Half Protected","color":"#46A6FA","color_bio":"#BEE7FF","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":631.8210233627187,"percentage":0.054638644636184286}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[43.32615493500009,12.067356400000108],[43.41550059200017,12.090542170000049],[43.398818593000044,12.239162030999978],[43.35580853300013,12.382142547000058],[43.16490146800004,12.631035618000169],[43.098949468000114,12.74586668600017],[43.08034851600007,12.828202121],[42.891178517000185,12.800184101000127],[42.824771548,12.858830266000155],[42.77439848900008,12.844140310000057],[42.73588146500015,12.955023669000184],[42.73818950600008,13.035667133000118],[42.66572158200012,13.052526158000148],[42.5540100070001,13.196651977000045],[42.4923705810001,13.176658959000122],[42.388278575000186,13.20189720500008],[42.3521886150001,13.391504572000088],[42.28937161500005,13.552233599999965],[42.096772998000176,13.641880737000179],[42.10203959900008,13.518215143000191],[42.1520306110001,13.354175934000068],[42.30430950700003,13.084734124000136],[42.3783495400001,13.010799032000136],[42.47338858800009,12.964272093000147],[42.73896047300019,12.787135154],[42.83686059900009,12.70236980499999],[43.03908960400014,12.433408111000062],[43.32615493500009,12.067356400000108]]]},"properties":{"objectid":255,"eco_name":"Eritrean coastal desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Afrotropic","eco_biome_":"AF13","nnh":3,"eco_id":93,"shape_leng":7.10644006024,"shape_area":0.381010762862,"nnh_name":"Nature Could Recover","color":"#E74E6A","color_bio":"#CC6767","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":4603.510184530636,"percentage":0.017449317730903434}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[126.0394265770002,-32.2700143749999],[126.30407713900001,-32.156745964999914],[126.49423989000013,-32.02185063299993],[126.5962067480001,-31.92329017999998],[126.5677719800002,-31.936378521999984],[126.4751128900001,-31.98801993099994],[126.00146478500005,-32.12206265599991],[125.89742273600007,-32.123428402999934],[125.80818932900002,-32.16071697499996],[125.67563623700005,-32.29597859699987],[125.55553429300005,-32.32921602899995],[125.38605506100009,-32.440216062999866],[125.34333032100017,-32.49283597499988],[125.24744419800015,-32.49975205099997],[125.09697730100015,-32.559303292999914],[125.08186339000008,-32.63418201999991],[125.01126094200015,-32.66308215099997],[124.76202387800004,-32.64366915999989],[124.69551079400003,-32.71502681699991],[124.56065385100021,-32.72285467599994],[124.52623742100013,-32.762401500999886],[124.28427132200011,-32.83494955599997],[124.15605904900008,-32.78911965599997],[124.06864166700007,-32.864738503999945],[123.9174881240001,-32.90676503099991],[123.88246920400002,-32.99306108299993],[123.9526748510001,-33.08774188799998],[123.83821862100024,-33.144618967999975],[123.7833862230002,-33.23800275699995],[123.70085146600002,-33.23434070399992],[123.45114132700019,-33.31008142499991],[123.35112007700002,-33.31563560999996],[123.20711512400021,-33.278327925999974],[123.19689171700009,-33.10779575899994],[123.292419429,-33.01943591399993],[123.31552129500017,-32.93958286399993],[123.38144680800008,-32.8934592629999],[123.32741555100017,-32.8123740719999],[123.35916133900014,-32.75099942999992],[123.29036720400018,-32.68477636099993],[123.14586637800005,-32.769828704999895],[122.99721533700006,-32.70327371199994],[122.94247430100006,-32.63343804199991],[122.93160247000003,-32.48860160499993],[122.84218600200018,-32.42920676799997],[122.85824572900015,-32.351718922999964],[122.72357184600003,-32.3035544949999],[122.6582260260002,-32.23276513199994],[122.59037787300008,-32.27568818799995],[122.43423458400014,-32.262107828999945],[122.38498688000016,-32.31270988099993],[122.27673342700018,-32.33947748799983],[121.90882118600018,-32.5426712499999],[121.93009194100023,-32.58113462999995],[121.9007262790002,-32.71064760699994],[121.71621712100034,-32.705577896999955],[121.63593290500012,-32.67288210399994],[121.50148768100019,-32.700527129999955],[121.4915847970002,-32.63388446199997],[121.37789920100033,-32.600318962999836],[121.32759856100006,-32.63204949499993],[121.23601537300021,-32.59268958599989],[120.93148037800006,-32.605636608999816],[120.74253082300015,-32.58938594299991],[120.60826882800029,-32.66032785699997],[120.58192450500007,-32.630664803999935],[120.41039271300019,-32.67545702399997],[120.30088801000011,-32.68014904599988],[120.26627343200016,-32.59232329699995],[120.33763125500013,-32.477367338999954],[120.1893463350001,-32.45508572599988],[119.97956087700004,-32.518981978999875],[119.90863807400001,-32.43978120899993],[119.8520431280001,-32.53909687099991],[119.69339013000001,-32.54849616899992],[119.59098825100023,-32.38780586499996],[119.62400825600002,-32.25893779199993],[119.48455819700007,-32.14489747299996],[119.48085792200004,-32.02032847799995],[119.38887022300003,-32.02354042299993],[119.28466036700013,-31.976770408999982],[119.12060540000027,-32.156223267999906],[118.8674316910002,-32.150917019999895],[118.68181612100011,-32.13290028599994],[118.57127357000002,-32.072349584999984],[118.41854858900001,-32.1437033869999],[118.32438662400023,-32.21010582899987],[118.19461816600017,-32.147846225999956],[118.1905593140001,-32.21583167499989],[118.13145449100011,-32.30599597499997],[118.03479773600009,-32.314739137999936],[117.97124480600007,-32.37298967699991],[117.98062901700018,-32.512882300999934],[118.02938084900018,-32.68629448899998],[117.98918157600008,-32.85353089199998],[117.99720004000005,-33.01256560299993],[117.87815857400005,-33.2090759699999],[117.87724310300007,-33.30765536599995],[117.91975410400016,-33.42034150499995],[117.996505683,-33.42329025799995],[118.12525171600032,-33.48374171699987],[117.96903232000034,-33.6388892359999],[117.9745787930002,-33.73889539899983],[117.85377511500019,-33.72763816899993],[117.85061647900011,-33.80989078999994],[117.92329411800029,-33.84963995399988],[117.92203498900017,-33.91607290699989],[117.85638423500006,-34.02486045499995],[117.6928863280001,-34.16554634099998],[117.81105037600003,-34.32006840299988],[117.68238833000021,-34.31275552799991],[117.75186911100013,-34.391620686999886],[117.73428337500025,-34.47878258999998],[117.90076440100006,-34.61620322199991],[118.07573696500003,-34.65936281499995],[118.27655026700006,-34.767181413999936],[118.23199459600005,-34.91638016499991],[118.38927001100012,-34.90794999099995],[118.43012001100021,-34.771579990999896],[118.5216200110001,-34.71662999099982],[118.64982001100009,-34.68909999099998],[118.75371001000008,-34.621259990999874],[118.75021001000005,-34.55092999099992],[118.90656001000002,-34.49962999099995],[118.96391001000018,-34.45149999099988],[119.11615001000007,-34.4703799909999],[119.25776001000008,-34.521279990999915],[119.27203001000021,-34.46643999099996],[119.36600001000022,-34.46394999099988],[119.40399001000003,-34.38125999099992],[119.5041100100002,-34.35176999099991],[119.51112001000001,-34.265139990999955],[119.58083001000023,-34.15393999099996],[119.66223001000003,-34.08177999099996],[119.85373001000005,-33.97107999099984],[119.94622001000005,-33.976189990999956],[120.04989001000001,-33.923439990999896],[120.12010001000021,-33.95219999099993],[120.30655000900026,-33.94062999199997],[120.4370600090001,-33.971119991999956],[120.6007400090001,-33.88568999199998],[120.80681000900017,-33.888559991999955],[120.86609000900012,-33.85671999199997],[121.00574000900019,-33.87025999199989],[121.26871000900019,-33.850929991999976],[121.31861000900017,-33.821349991999966],[121.5301900090002,-33.82597999199987],[121.66150000900006,-33.88430999199994],[121.78593000900003,-33.90800999199996],[122.0188800090001,-33.8369799919999],[122.08319000900019,-33.899599991999935],[122.12030000900006,-34.013439991999974],[122.25353000900009,-34.00424999199993],[122.28007000900004,-33.95359999199991],[122.39504000900013,-33.911419991999935],[122.5750400080002,-33.947719991999975],[122.6030000080001,-33.89791999199991],[122.83050000800017,-33.90926999199996],[123.00217000800012,-33.883569991999934],[123.12521000800018,-33.89644999199987],[123.1728400080001,-33.99286999199984],[123.25341000800017,-33.997439991999954],[123.3526800080001,-33.901689991999945],[123.57227000800026,-33.88879999199992],[123.74390000800008,-33.80821999199992],[123.75594000800015,-33.72437999199997],[123.868480008,-33.607399992999945],[123.97981981900011,-33.55306031999993],[124.0165400080001,-33.376829992999944],[124.10073000700015,-33.17808999299996],[124.23947000700002,-33.017259992999925],[124.36898000700023,-32.95588999299997],[124.74822000700021,-32.89878999299998],[124.89984000700008,-32.82926999299997],[125.02606000700007,-32.72857999299998],[125.10144000700006,-32.716419992999874],[125.31713000700017,-32.60715999299998],[125.53120000600006,-32.54978999299988],[125.71177000600005,-32.4218499939999],[125.94882000600023,-32.291559993999954],[126.0394265770002,-32.2700143749999]]]},"properties":{"objectid":256,"eco_name":"Esperance mallee","biome_num":12,"biome_name":"Mediterranean Forests, Woodlands & Scrub","realm":"Australasia","eco_biome_":"AU12","nnh":2,"eco_id":198,"shape_leng":41.3375994508,"shape_area":9.98783469057,"nnh_name":"Nature Could Reach Half Protected","color":"#E54C00","color_bio":"#FE0000","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":103465.95004009089,"percentage":3.1321106507696634}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-62.07879256699988,-39.07387745899996],[-62.077979522999954,-39.141308360999915],[-61.86025656999993,-39.231098157999895],[-61.874637568999844,-39.13402666699989],[-62.07879256699988,-39.07387745899996]]],[[[-59.99734858099998,-30.17567737099995],[-60.22245062499991,-30.387452524999958],[-60.272212475999936,-30.383685696999976],[-60.431701485999895,-30.531410202999893],[-60.60474352999995,-30.642543342999886],[-60.59130448899998,-30.53696204099998],[-60.62845660499988,-30.41318949399988],[-60.63464747799998,-30.27499772599998],[-60.668765511999936,-30.20358910799996],[-60.67609062499986,-29.965182970999876],[-60.74511760899992,-29.79966116999998],[-60.848297496999976,-29.655717740999876],[-61.140289475999964,-29.410062263999976],[-61.32012153199997,-29.384272153999916],[-61.470786576999956,-29.553106817999947],[-61.529663579999976,-29.704392793999943],[-61.58668147599997,-29.745726472999877],[-61.74356857599997,-29.854795149999916],[-62.12956259299989,-30.079365782999957],[-62.32744558099995,-30.263088215999915],[-62.33620450199999,-30.471241548999956],[-62.258369478999896,-30.594482180999933],[-62.26296963499993,-30.690196473999947],[-62.37513358099994,-30.796136856999965],[-62.56837047999994,-30.850396771999954],[-62.830097585999965,-30.8941254959999],[-62.95021461699997,-30.864741393999964],[-63.53795651799987,-30.63817553299998],[-63.69432863399999,-30.51550872699994],[-63.755851634999885,-30.42213030199997],[-63.79884358999993,-30.28895325999997],[-63.916541603999974,-30.3913182579999],[-63.881755532999875,-30.53303914199995],[-63.943427563999876,-30.621310975999904],[-63.99871459799988,-30.75608728599991],[-64.07904055499995,-30.824261829999898],[-64.17463649599989,-30.824444890999928],[-64.22663162099991,-30.784514174999913],[-64.27304858899998,-30.666762348999953],[-64.38404862499988,-30.646667071999957],[-64.41060651699996,-30.713955648999956],[-64.27079050499987,-30.947729610999943],[-64.26552549599995,-31.085160804999873],[-64.15927162999992,-31.047820095999896],[-64.15678354599987,-31.176910625999938],[-64.27110247899992,-31.31360873799997],[-64.31393450699994,-31.411025562999953],[-64.32550857399985,-31.932454036999957],[-64.18330355199998,-32.17677193099996],[-64.18573748899985,-32.52680087799996],[-64.3364486349999,-32.56501565099995],[-64.33176449199993,-32.28282882199994],[-64.4541935869999,-32.28318656199997],[-64.46154753399998,-32.51401143499993],[-64.54249559599998,-32.65604295199984],[-64.70822157999999,-32.82522781199992],[-64.75915555599994,-32.92975031199995],[-64.93235048599996,-33.02698759799995],[-64.89395851999996,-33.14620105999995],[-65.0095675959999,-33.3539896129999],[-65.23266552699982,-33.41653302799989],[-65.33847062699994,-33.37530512799998],[-65.39604960799994,-33.290716637999935],[-65.39399754999988,-33.17474194299996],[-65.35797849999994,-33.04544706299998],[-65.59709156699995,-32.90656932099989],[-65.69093351099997,-32.82194663199988],[-65.77315562299992,-32.78505971999988],[-65.98256657699994,-33.116439938999974],[-66.12237554899997,-33.53481241099996],[-66.26824161899987,-33.619458065999936],[-66.34540558699996,-33.62046087699997],[-66.35305759499988,-33.74356957699996],[-66.32456951699999,-33.77831256499991],[-66.33265654499996,-34.018566576999945],[-66.4134825669999,-34.10797332099986],[-66.33631859899992,-34.2181800919999],[-66.34557356099998,-34.369958924999935],[-66.42393463299999,-34.472507151999935],[-66.61952952799999,-34.57446344799996],[-66.6678005739999,-34.64831472099985],[-66.58939356899992,-34.80887829099993],[-66.49279749899989,-34.891777324999964],[-66.37474057199984,-35.087012468999944],[-66.38446860899995,-35.299717846999954],[-66.46870455699997,-35.49780719799992],[-66.54992653999989,-36.047171213999945],[-66.59476452499996,-36.13897015299989],[-66.83589159499985,-36.37173007199988],[-66.83794348499998,-36.42548170799995],[-66.6222075469999,-36.810345509999934],[-66.56185164099998,-37.09022463399987],[-66.30490858999997,-37.356397333999894],[-65.88414761099995,-37.48815096099992],[-65.75076252999997,-37.47360919699997],[-65.60173748799997,-37.591474010999946],[-65.43529552199988,-37.762822575999905],[-65.42436954399994,-37.812938644999974],[-65.31369757599992,-37.893580097999916],[-65.2813875189999,-37.96148088899997],[-65.16574860299988,-38.04672635399993],[-65.12104757799995,-38.121657214999914],[-64.98807555799993,-38.22450752599997],[-64.95986961499995,-38.29115237299993],[-64.84335361699993,-38.37486881099994],[-64.82095348399997,-38.44630860999996],[-64.70562754899993,-38.52511911899995],[-64.6723865969999,-38.59641106099991],[-64.47901961099984,-38.74454477199998],[-64.44534263299988,-38.820539296999925],[-64.34683263899996,-38.855016746999866],[-64.12712853999989,-39.25176977499984],[-63.98169748999999,-39.448764951999976],[-63.87597654599983,-39.68331675499991],[-63.362331506999965,-40.46316768599996],[-63.28252757399997,-40.73590760699983],[-63.233409621999954,-40.784880216999966],[-63.06787457699994,-40.870321314999956],[-62.89334860099996,-41.08484992399997],[-62.326709481999956,-40.880804225999896],[-62.173252592999916,-40.59776814299988],[-62.40493057599991,-40.46811569099992],[-62.48482553599996,-40.334965470999975],[-62.436222567999835,-40.24386357099996],[-62.35452650399992,-40.20110496799998],[-62.33121861099994,-39.91588355499994],[-62.26150850199991,-39.859549453999875],[-62.11386161199994,-39.845564583999874],[-62.11546758499992,-39.66999187599998],[-62.01192861699991,-39.36308815499996],[-62.138240544999974,-39.28954919199987],[-62.26226052599998,-39.27289468599997],[-62.35733460999984,-39.10125493399994],[-62.29991957899989,-39.027854272999946],[-62.32287962299989,-38.90565199199989],[-62.37621652299998,-38.803251788999944],[-62.24351154999994,-38.79240694799989],[-62.1429136239999,-38.82710819399995],[-62.09266662899995,-38.899083093999934],[-62.15686060799999,-38.74256463099994],[-62.31038254099997,-38.603056066999955],[-62.31731454199996,-38.556711685999915],[-62.43390647999996,-38.47436216899996],[-62.714736613999946,-38.14227887599998],[-62.90814550999994,-37.9660238809999],[-62.953437626999914,-37.891970436999884],[-63.18423852799992,-37.687532967999914],[-63.61932350799998,-37.04854561999986],[-63.896144577999905,-36.57354936899992],[-64.06314058799995,-36.171375260999866],[-64.27466562599994,-35.25097925899996],[-64.28478258299992,-35.046783356999924],[-64.31465954199996,-34.86555604899996],[-64.53811655499993,-34.609111721999966],[-64.62873062799991,-34.46076946999989],[-64.69603747799994,-34.40055236799992],[-64.83406847999993,-34.116284815999904],[-64.91612261799997,-33.765613646999896],[-64.89912462199999,-33.63994930399997],[-64.74790150999996,-33.42334583899992],[-64.53279153099999,-33.33014427199993],[-64.31911452299988,-33.33460746799989],[-63.83145556399995,-33.53380859399988],[-63.67132550599996,-33.38510089099992],[-63.57282255299998,-33.34138205699992],[-63.23128162399985,-33.29121251099997],[-63.015674598999965,-33.188241500999936],[-62.916706617999864,-33.01137881799997],[-63.10680348899996,-32.74826014799993],[-63.26046757899991,-32.625041979999935],[-63.30102961999995,-32.49684881799993],[-63.247932609999964,-32.341530642999885],[-63.14407362099996,-32.197004335999964],[-62.90026853299992,-32.133899501999906],[-62.29258356899999,-32.12590869799993],[-62.112258488999885,-32.0416524659999],[-62.06119157699993,-31.924205238999946],[-61.87691459699994,-31.72246389299994],[-61.74537252899995,-31.66558496899995],[-61.39565253799992,-31.76327655299997],[-61.26062762199996,-31.83472724899991],[-60.93582552099997,-32.07047548399987],[-60.8395115859999,-32.08806406999997],[-60.84720650799994,-31.825777555999878],[-60.56169156099992,-31.37707952599993],[-60.44432060899993,-31.268219390999946],[-60.34019457199986,-31.220704895999972],[-60.28054861399988,-31.104708072999927],[-60.10849747799995,-30.45153921499991],[-59.99734858099998,-30.17567737099995]]],[[[-57.550743628999896,-28.677761198999917],[-57.695075474999896,-28.72247529999987],[-57.99824556099992,-28.73261991699991],[-58.103290588999926,-28.71614461599995],[-58.33327861299995,-28.909952657999952],[-58.47768354899989,-28.952393250999933],[-58.528636635999874,-29.11486957099993],[-58.6145325359999,-29.181604942999968],[-58.66153757799998,-29.26265895299997],[-58.702434559999915,-29.636280442999976],[-58.74399555699995,-29.706927816999894],[-58.90258451799997,-29.84618257699998],[-58.957443570999885,-29.938300195999943],[-59.09075153899994,-30.059316604999935],[-59.11288060099997,-30.110812838999948],[-59.23197151999989,-30.17987921899993],[-59.28583547399984,-30.335194375999947],[-59.50835455099991,-30.53188126599997],[-59.56915654199997,-30.538695920999942],[-59.57757163699989,-30.62682392199997],[-59.673740564999946,-30.796935819999874],[-59.78662149999991,-30.928794220999976],[-59.87448463199985,-31.106502805999924],[-59.990058503999876,-31.25516792899998],[-60.06859961899988,-31.324219556999935],[-60.09293748099992,-31.392675062999956],[-60.17087560199985,-31.460763776999954],[-60.31719949099988,-31.633996928999977],[-60.61041656999993,-31.761055683999928],[-60.64209362599996,-31.841504855999972],[-60.65138647399988,-32.03298172299998],[-60.603919588999986,-32.08417721399991],[-60.36355258899994,-32.086100021999926],[-60.30572852199998,-32.05498807399994],[-60.17054753399998,-32.05168828699993],[-59.53964955999999,-31.82583354699989],[-59.369209593999926,-31.821516698999858],[-59.22019159299998,-31.892309414999886],[-59.03771554899993,-31.921407359999876],[-58.84022148199989,-31.915053541999896],[-58.61868258399983,-31.839511973999947],[-58.28162748099993,-31.829756276999944],[-58.18138863599995,-31.85492444999994],[-58.03722358999994,-31.784473883999908],[-57.97917153399993,-31.60836691299994],[-58.00666853499996,-31.52670655599991],[-58.07917048899998,-31.45948385999992],[-57.991393521999896,-31.404483822999964],[-57.975006565999934,-31.323656292999885],[-57.90778353499991,-31.23310240199993],[-57.91278049099992,-31.154772342999877],[-57.852226604999885,-31.038943157999938],[-57.89972651499994,-30.926720370999874],[-57.81361352299996,-30.910334923999926],[-57.81222547999988,-30.716454629999873],[-57.889724556999965,-30.602566860999957],[-57.87833355099991,-30.506463311999937],[-57.66889158299995,-30.352857895999932],[-57.62583961399997,-30.283969212999978],[-57.62751062999985,-30.184512063999875],[-57.6149025709999,-30.04502713699992],[-57.719085603999986,-29.936904105999872],[-57.69678856899998,-29.778436179999915],[-57.55700658699993,-29.592270254999903],[-57.51622058099986,-29.486008341999934],[-57.57129655799997,-29.319543576999877],[-57.65091357399996,-29.196154585999977],[-57.56345361099994,-29.018108544999905],[-57.59965153099995,-28.960967937999953],[-57.5897335599999,-28.733159711999917],[-57.550743628999896,-28.677761198999917]]]]},"properties":{"objectid":257,"eco_name":"Espinal","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Neotropic","eco_biome_":"NO08","nnh":3,"eco_id":575,"shape_leng":57.7344315342,"shape_area":29.2930476287,"nnh_name":"Nature Could Recover","color":"#829A2C","color_bio":"#FEFF73","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":299481.9328008408,"percentage":2.826555139757644}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[38.04250000000013,4.970092773000147],[37.98416666700007,4.9025],[38.058333333000064,4.855833334000124],[38.07500000000016,4.780833334000135],[38.1458333330001,4.745833333000121],[38.16000000000014,4.83166666700015],[38.12083333300018,4.914166667000018],[38.04250000000013,4.970092773000147]]],[[[38.049166667000065,5.619079590000183],[37.97833333300002,5.560833334000108],[37.911666667000134,5.42],[37.9533333330001,5.320833334000099],[38.02583333300004,5.370000000000175],[38.09583333400013,5.528333334000081],[38.049166667000065,5.619079590000183]]],[[[38.215,5.5275],[38.246666667000056,5.740833333000126],[38.192500000000166,5.815833333000114],[38.197500000000105,5.6975],[38.116666667,5.680000000000121],[38.111666667,5.492500000000121],[38.215,5.5275]]],[[[37.882500000000164,6.039166665999971],[37.878333333000114,5.985833333000073],[37.751666667000165,5.849166666999963],[37.80250000000018,5.723333334000188],[37.77833333400008,5.48],[37.89166666700004,5.4475],[37.87333333300012,5.590833333000091],[37.905,5.755000000000166],[37.882500000000164,6.039166665999971]]],[[[35.54166666600008,6.032500000000141],[35.6333333340001,6.141666666],[35.573333333000164,6.211666667000145],[35.54166666600008,6.032500000000141]]],[[[36.734166667000125,5.719166667000138],[36.765,5.769166666999979],[36.68666666700017,5.885],[36.8325,6.07333333400004],[36.78333333299997,6.167500000000189],[36.80250000000018,6.241666667000061],[36.96166666700003,6.40083333299998],[36.94583333300005,6.50416666700005],[36.836666667000145,6.365000000000123],[36.7025,6.28],[36.67416666600019,6.203333333000046],[36.56833333300011,6.048333333000187],[36.6175,5.8975],[36.59250000000014,5.811666667000168],[36.734166667000125,5.719166667000138]]],[[[37.63916666600005,6.5775000000001],[37.58583333300015,6.422500000000127],[37.47416666600009,6.42583333400006],[37.419166666000024,6.38333333300011],[37.408333333000144,6.310000000000116],[37.32000000000011,6.29083333300008],[37.25833333300011,6.175],[37.195,6.151666667000086],[37.135,5.954166666],[37.295000000000186,5.785],[37.29583333300013,5.629166667000163],[37.189166667000165,5.566666666000117],[37.244166666000126,5.482500000000186],[37.34583333300003,5.533333334000076],[37.3275,5.59],[37.38583333300011,5.648333333000096],[37.3375,5.7675],[37.287500000000136,5.796666667000181],[37.28666666700019,5.872500000000116],[37.37416666600018,5.895833333000098],[37.3908333330001,5.978333334000126],[37.479166667000186,6.04416666700007],[37.48583333400012,6.112500000000125],[37.59833333400013,6.148333334000085],[37.63333333300017,6.225000000000136],[37.715,6.273333334000142],[37.684166667000056,6.516666667000095],[37.63916666600005,6.5775000000001]],[[37.49166666600013,6.264166667000097],[37.303333334000115,6.096666667000022],[37.2650000000001,6.122500000000116],[37.366666667000175,6.220833333000087],[37.49166666600013,6.264166667000097]]],[[[37.3925,6.664166667000018],[37.3375,6.579166667000038],[37.444166667000104,6.544166667000127],[37.3925,6.664166667000018]]],[[[37.429166666000185,6.695000000000107],[37.5525,6.76916666700015],[37.5525,6.867500000000121],[37.43916666700011,6.799166667000065],[37.35666666600008,6.801666667000177],[37.340833333000035,6.753333334000047],[37.429166666000185,6.695000000000107]]],[[[36.72750000000019,7.098333334000131],[36.845,7.119166667000059],[36.96833333300009,7.064166667000165],[36.97666666700019,6.974166666000144],[36.93083333400017,6.888333333000048],[36.98,6.860833333000187],[37.24166666700012,6.865833334000058],[37.26083333300005,7.048333333000187],[37.192500000000166,7.093333333999965],[37.0875,7.085833332999982],[37.08500000000015,7.143333334000033],[36.975,7.155833333000032],[36.9533333330001,7.100833333000139],[36.83083333300016,7.155833333000032],[36.7175,7.138333333000162],[36.72750000000019,7.098333334000131]]],[[[36.73,7.17416666600019],[36.69000000000017,7.129166666000117],[36.72833333300014,7.219166666000092],[36.6575,7.250833334000049],[36.73,7.17416666600019]]],[[[36.764166666000165,7.33],[36.86583333300007,7.3275000000001],[36.92416666600013,7.388333333000105],[36.97833333400018,7.312500000000171],[37.145,7.300000000000125],[37.11583333300018,7.370000000000118],[37.29083333400007,7.395],[37.3958333330001,7.495000000000175],[37.38083333300011,7.696666666000112],[37.48166666700007,7.670833333000076],[37.54083333400018,7.767500000000155],[37.57750000000016,7.935833333000176],[37.57250000000016,8.03],[37.507500000000164,8.133333334000042],[37.42833333400017,8.083333333000098],[37.408333333000144,7.933333333000064],[37.3325,7.710833333000153],[37.28,7.65],[37.09666666700008,7.622500000000173],[37.05333333300007,7.544166667000127],[36.92333333300019,7.533333333000144],[36.870833333000064,7.586666667000088],[36.73916666600002,7.567500000000109],[36.71416666700003,7.603333333000137],[36.85833333300019,7.487500000000125],[36.85833333300019,7.38666666600011],[36.764166666000165,7.33]]],[[[37.090000000000146,7.8275],[37.09500000000014,7.723333334000131],[37.194166667000104,7.782500000000141],[37.26250000000016,7.900000000000148],[37.3325,7.870833333000121],[37.3925,7.958333333000041],[37.352500000000134,8.129166667],[37.29583333300013,8.249166667000054],[37.31833333300017,8.322500000000105],[37.29416666700007,8.5275],[37.23500000000013,8.555833334000056],[37.19166666600012,8.459166667000147],[37.20583333300016,8.384166666000056],[37.16583333400018,8.295],[37.16583333300008,8.265833334000035],[37.16583333300008,8.26416666700004],[37.1375000000001,8.03],[37.05833333400017,7.995],[37.00583333300011,7.921666666000135],[37.03,7.834166667000147],[37.090000000000146,7.8275]]],[[[40.6525,8.820000000000107],[40.5875,8.71],[40.636666666999986,8.666666667000072],[40.73666666700012,8.730833334000181],[40.71666666700003,8.814166667],[40.6525,8.820000000000107]]],[[[37.05833333400017,8.520833333000041],[37.105833334000124,8.683333334],[37.0925,8.786666667000134],[37.131666666000115,8.852500000000134],[37.05333333300007,8.91],[36.89916666700009,8.906666667000081],[36.99250000000012,8.799166667000065],[36.97250000000014,8.72],[37.05,8.632500000000107],[37.03833333300008,8.542500000000132],[37.05833333400017,8.520833333000041]]],[[[43.069166667000104,9.457500000000152],[43.025833334000026,9.435000000000116],[43.08,9.3275000000001],[43.16416666600014,9.351666667000075],[43.15750000000014,9.425000000000125],[43.069166667000104,9.457500000000152]]],[[[38.64166666700004,10.36],[38.50750000000011,10.340833334000138],[38.44166666700016,10.110833333000073],[38.52916666700003,10.076666666999984],[38.61333333400006,10.145833333000155],[38.74000000000018,10.149166665999985],[38.794166666000024,10.2575],[38.73666666700018,10.316666667000163],[38.64166666700004,10.36]]],[[[39.91000000000014,10.848333333000028],[39.88,10.785000000000139],[39.92916666600007,10.705000000000155],[39.9875,10.720000000000141],[39.944166666,10.836666666999974],[39.91000000000014,10.848333333000028]]],[[[36.12666666700005,11.380833333000112],[36.21583333300015,11.363333333000071],[36.19000000000011,11.511666667000043],[36.13333333300011,11.445833334000042],[36.12666666700005,11.380833333000112]]],[[[37.585,13.284166667000079],[37.47166666700008,13.35750000000013],[37.49250000000018,13.54916666700018],[37.42833333300007,13.60833333300019],[37.42,13.7025],[37.36083333300013,13.722500000000139],[37.30416666700006,13.80916666600018],[37.22801368900002,13.763333334000095],[37.3375,13.635833333],[37.3925,13.625000000000114],[37.433333333000064,13.499166667000111],[37.27666666700003,13.459166667000034],[37.18333333300012,13.415],[37.19916666600005,13.33083333400009],[37.270833332999985,13.360000000000184],[37.36333333300007,13.328333333000103],[37.39333333300016,13.253333334000047],[37.47083333400019,13.225000000000136],[37.51333333400015,13.323333333000107],[37.585,13.284166667000079]]],[[[38.24083333400017,7.5875],[38.48083333300019,7.791666667000186],[38.575,7.920833333000189],[38.579166666,8.000833334000106],[38.674166667000065,8.1375],[38.68916666600012,8.310833333000176],[38.72583333400007,8.364166666000074],[38.735,8.484166665999965],[38.8275000000001,8.456666667000036],[38.890833334000035,8.52],[38.89,8.630833334000044],[38.98083333400018,8.59583333300003],[39.133333333,8.598333333000141],[39.145833333999974,8.538333334000185],[39.24750000000017,8.558333333000064],[39.317500000000166,8.649166667000031],[39.30916666700017,8.735833334000176],[39.440833333000114,8.825000000000102],[39.334166666000044,9.070833333000166],[39.415,9.069166667000104],[39.585,9.154166667000084],[39.649166665999985,9.245833334000054],[39.68833333300017,9.40833333300003],[39.723333333000085,9.456666666000103],[39.81750000000011,9.4725],[39.775,9.58916666600004],[39.84666666600015,9.7],[39.81666666700016,9.79],[39.869166667000115,9.803333333000182],[39.77583333300004,9.9725],[39.8958333330001,10.21],[39.899166666000156,10.481666667000127],[39.781666667000025,10.659166666000033],[39.75083333300012,10.814166666000062],[39.68000000000012,10.88000000000011],[39.730833333000135,10.97416666600003],[39.81666666700016,10.96],[39.865,10.91583333400007],[39.95666666699998,10.9575],[39.86083333300019,11.015000000000157],[39.843333333000146,11.143333333000044],[39.914166666000085,11.199166667000156],[39.808333333000064,11.399166667000031],[39.62666666700005,11.394166666000103],[39.58166666700015,11.454166666000162],[39.62666666700005,11.499166666000065],[39.64083333300016,11.6225],[39.6125,11.685000000000173],[39.6975,11.774166666000099],[39.61000000000013,11.959166666000044],[39.6025,12.086666666000042],[39.505,12.266666667000038],[39.5125000000001,12.354166667000129],[39.59166666700014,12.545833333000076],[39.58416666700009,12.649166667000145],[39.62250000000017,12.674166667000065],[39.62416666700017,12.79166666600014],[39.70083333300005,12.879166667000106],[39.73000000000019,12.995000000000175],[39.764166666999984,13.0183333330001],[39.77916666700014,13.135833333000107],[39.70916666700015,13.161666667000077],[39.77166666700009,13.286666667000134],[39.72,13.444166667000047],[39.80666666600007,13.51916666600016],[39.79083333400007,13.7575],[39.84666666700008,13.831666666000046],[39.83833333300015,14.011666667000043],[39.87,14.08333333400003],[39.774166667000145,14.12],[39.80666666700017,14.276666667000143],[39.73666666700018,14.343333333000032],[39.6075,14.38000000000011],[39.70750000000015,14.4625],[39.74618819900013,14.61173298500006],[39.719089338000174,14.752493638000033],[39.72788932999998,14.874486874000013],[39.70779019600019,14.94609095800007],[39.51744824000008,15.08489209000004],[39.444179341,15.219643421],[39.25872034600002,15.200824539999985],[39.11264020200019,15.3950121150001],[39.00746123100009,15.607068398000024],[38.88714923700013,15.730710522000152],[38.802501235000136,15.981175535000148],[38.64739931300005,16.05645106100019],[38.584689266000055,16.11180649000005],[38.555179267000085,16.48171295399999],[38.48747930600007,16.635294566000027],[38.55883025700018,16.76383658300017],[38.55857829700011,16.820411915000022],[38.452487861000066,16.840117373000112],[38.33269824400003,17.05938802100019],[38.34860927500017,17.231237321000037],[38.27056822400016,17.463292155000033],[38.25827029600015,17.72679723000016],[38.16141298200017,17.792106526],[37.97098156699997,17.895307012000103],[37.744628607000095,17.735335540000165],[37.75308946800004,17.596135094000033],[37.85807045800016,17.4778124610001],[37.86729859800005,17.234197139000116],[37.90219849600004,17.11524351600002],[38.014869547000046,17.06888656200016],[38.15703953400015,16.83143210600008],[38.17247061700016,16.539759310000022],[38.24029161300018,16.332493452000108],[38.35272948000011,16.22963911800008],[38.33686052600018,16.194282070999975],[38.34421145500011,16.01792347500009],[38.402828619000104,15.812956271000076],[38.39944853200012,15.75824892999998],[38.447910517000025,15.583801072000085],[38.4514505300001,15.316037320000078],[38.5028605980001,15.195625078000035],[38.401908452999976,15.08122333100016],[38.213409509000144,15.06856431000017],[38.157150510000065,14.961951028000158],[38.214420534,14.923162598000147],[38.36640958400011,14.942317426000159],[38.28237949600009,14.812849711000183],[38.27046948200018,14.748633939000172],[38.41875859300012,14.644500862000143],[38.39155948500013,14.497220262000042],[38.44000000000017,14.425833333000128],[38.52,14.418333333000078],[38.69916666600011,14.47083333300003],[38.89833333300004,14.506666666000058],[39.07833333300016,14.638333333000105],[39.17833333300007,14.585833333000096],[39.14500000000015,14.520000000000152],[39.00916666700016,14.3825],[38.881666667,14.3875],[38.8975,14.310000000000116],[38.81750000000011,14.286666667000134],[38.78916666700013,14.230833333000078],[38.68000000000018,14.2025000000001],[38.553333333000126,14.226666666000028],[38.48,14.175],[38.40583333300003,14.256666666000115],[38.246666667000056,14.230833334000124],[38.26583333300016,14.14666666700009],[38.197500000000105,14.122500000000116],[38.26583333400009,14.03],[38.362500000000125,13.981666666000024],[38.43333333400017,13.872500000000173],[38.518333333000044,13.875],[38.49583333300018,13.994166667],[38.60500000000013,13.961666666000099],[38.57166666600011,13.845833334000133],[38.58833333400014,13.759166667000045],[38.755000000000166,13.886666666999986],[38.79250000000019,13.852500000000191],[38.87666666700005,13.974166667000077],[38.9075,14.061666667000111],[38.97,14.035833333000141],[38.9075,13.939166667000165],[38.9875,13.90583333300009],[39.070000000000164,13.953333333000103],[39.126666667000165,14.073333333000164],[39.2,14.029166667000084],[39.3075,14.00500000000011],[39.28583333400019,13.863333333000128],[39.20833333300004,13.77166666700009],[39.0875,13.701666667000097],[39.04250000000013,13.768333333000157],[39.0025,13.804166667000118],[38.881666667,13.716666667000027],[38.9725,13.628333334000047],[38.9616666660001,13.585],[39.09333333400019,13.511666667000156],[39.066666667000106,13.432500000000118],[39.14666666700009,13.275],[39.08916666700014,13.243333333000123],[39.091666667000084,13.171666665999965],[39.21916666600009,13.175833333000014],[39.33750000000015,13.135833333000107],[39.23333333300013,13.047500000000127],[39.2975,12.945833333000053],[39.21000000000015,12.916666666000026],[39.15000000000015,12.760000000000161],[39.1475,12.680833333000123],[39.2025000000001,12.649166667000145],[39.225000000000136,12.494166667000115],[39.138333334000095,12.5375],[39.16333333300014,12.614166667],[39.09666666700002,12.66166666700019],[38.991666666000185,12.786666665999974],[38.913333333000026,12.8],[38.9,12.9],[38.80333333300007,12.955833332999987],[38.76833333300016,12.89583333400003],[38.91666666700013,12.76833333400009],[38.871666666000124,12.700833334000151],[38.755000000000166,12.634166667000159],[38.65,12.610000000000184],[38.71916666700014,12.5225],[38.525833333000094,12.525],[38.554166667000175,12.325000000000102],[38.65333333300009,12.325000000000102],[38.63166666700005,12.249166666000065],[38.518333333000044,12.203333334000149],[38.58083333300016,12.119166667000115],[38.68083333400017,12.130833333000169],[38.73833333300007,12.043333334000181],[38.72166666700019,11.991666666000071],[38.5925,11.9425],[38.52333333300004,12.05],[38.370833334,12.072500000000105],[38.390833333000046,12.163333332999969],[38.351666666000085,12.293333334000124],[38.365833333000126,12.3875],[38.23666666700012,12.315000000000111],[38.15166666700014,12.36],[38.21833333300003,12.444166667000047],[37.96,12.422500000000127],[37.8975,12.343333334000022],[37.840000000000146,12.35750000000013],[37.81416666700011,12.468333332999975],[37.88666666700004,12.535],[37.959166666000044,12.670833334000065],[37.913333333000026,12.7775],[38.058333333000064,12.923333334000063],[38.24000000000012,12.87],[38.31583333400016,12.8308333330001],[38.41916666700013,12.885],[38.40083333400014,12.933333333000121],[38.42666666700018,13.042500000000132],[38.54333333400007,13.064166667000052],[38.52,13.141666667000152],[38.6275,13.193333333000055],[38.60583333300008,13.284166666000147],[38.5175,13.482500000000186],[38.50750000000011,13.56666666700005],[38.41083333300003,13.620833334000167],[38.33166666600016,13.600833333000082],[38.310000000000116,13.515833333000103],[38.21583333300009,13.504166666000174],[38.186666667000054,13.425],[38.09,13.417500000000132],[38.023333333000096,13.280833333000146],[37.86166666600019,13.238333333000128],[37.77500000000015,13.19],[37.64583333300004,13.293333334000124],[37.585,13.284166667000079],[37.65083333400008,13.28],[37.70333333400009,13.123333333000062],[37.70000000000016,12.98583333300013],[37.6075,12.928333333000182],[37.55083333300007,12.812500000000114],[37.368333333000066,12.761666667000156],[37.366666667000175,12.714166667000143],[37.27250000000015,12.6975],[37.19833333399998,12.575],[37.178333333000126,12.696666666],[37.11833333300012,12.711666667000088],[37.0808333330001,12.603333333000023],[37.041666667000015,12.6],[36.9583333330001,12.451666666000051],[37.01833333300016,12.323333333000164],[36.93333333300018,12.250000000000114],[36.906666667000025,12.134166667000102],[36.810833333000176,12.1525],[36.72916666600008,11.999166667000054],[36.730833334000124,11.935833333000062],[36.825,11.84],[36.941666667000106,11.866666667000061],[36.90083333300015,11.704166666000106],[36.8425,11.613333333000014],[36.73166666700007,11.65],[36.68916666700005,11.57666666700004],[36.78916666700019,11.476666667000131],[36.76083333300011,11.369166667000115],[36.630000000000166,11.249166666000121],[36.5725,11.226666666000085],[36.57083333300005,11.12],[36.60166666700019,11.081666666000046],[36.62500000000017,10.905833332999975],[36.49166666700006,10.848333333000028],[36.47666666700013,10.742500000000177],[36.53416666700008,10.711666667000088],[36.62833333300017,10.75],[36.65833333300009,10.643333333000157],[36.83083333400003,10.648333333000153],[36.80333333400006,10.551666666000017],[36.83333333300004,10.48416666700001],[36.93333333400011,10.475],[37.005000000000166,10.43750000000017],[37.12083333300018,10.55166666700012],[37.11083333300019,10.626666667000109],[37.3875,10.640000000000157],[37.1991666670001,10.455],[37.186666667000054,10.352500000000191],[37.2375,10.339166666000096],[37.30000000000018,10.194166667000161],[37.36333333300007,10.1675],[37.43666666600012,10.21833333300009],[37.51583333300016,10.15],[37.585833334000085,10.164166667000075],[37.662500000000136,10.0175],[37.70916666699998,9.9725],[38.05583333300012,10.108333333000132],[38.14166666600005,10.089166666000153],[38.32333333300011,10.23250000000013],[38.4575,10.41166666600003],[38.44166666700016,10.524166667000088],[38.35500000000019,10.53],[38.34083333299998,10.72416666700019],[38.44166666700016,10.68416666600018],[38.475833333000026,10.705000000000155],[38.43583333300012,10.946666667000102],[38.38833333300016,11.031666667000081],[38.306666667000115,11.0808333330001],[38.2075,11.064166666000176],[38.05166666700018,11.075833333000105],[38.03250000000014,11.120833333],[37.892500000000155,11.185833334000108],[37.7691666660001,11.103333333000137],[37.75416666700005,11.156666667000138],[37.80833333400017,11.217500000000143],[37.69916666700004,11.2725],[37.62916666600012,11.433333334000167],[37.496666667000056,11.439166666],[37.291666667000186,11.645],[37.277500000000146,11.792500000000189],[37.079166666000106,11.79916666700018],[37.005000000000166,11.875833334000106],[37.0025,12.0175],[37.025,12.163333334000072],[37.07416666600017,12.246666667000113],[37.17000000000013,12.326666667000097],[37.182500000000175,12.196666667000045],[37.270833332999985,12.26250000000016],[37.2975,12.370833334000054],[37.338333333000094,12.3875],[37.451666667000154,12.348333333000085],[37.56083333300006,12.2425],[37.64166666700004,12.11416666700012],[37.75416666700005,11.984166665999965],[37.67750000000012,11.921666667000125],[37.63000000000011,11.803333333000126],[37.55500000000012,11.8375],[37.47083333300009,11.81250000000017],[37.41083333300003,11.601666667000188],[37.51666666699998,11.569166666000058],[37.54833333300019,11.516666667000038],[37.61583333300007,11.53333333300003],[37.75,11.305000000000177],[37.885,11.225],[37.97166666700019,11.305833333000123],[38.03916666700013,11.301666666000074],[38.0675,11.381666667000161],[38.04833333300007,11.2425],[38.13583333300011,11.194166667000161],[38.16833333400007,11.346666666000147],[38.21333333400014,11.24333333300018],[38.41166666700002,11.125],[38.484166667000125,11.138333333000048],[38.45416666700004,11.223333333000028],[38.575,11.315833334],[38.510833333000164,11.376666667000165],[38.585,11.493333333000123],[38.63166666700005,11.406666667000081],[38.6925,11.526666666999972],[38.63833333400004,11.5375],[38.61083333300007,11.64666666700009],[38.70666666600016,11.6425],[38.74666666600007,11.543333334000124],[38.72333333400019,11.461666667000145],[38.75833333300017,11.415],[38.94000000000011,11.40083333399997],[38.97916666600014,11.343333334000022],[38.87,11.320000000000164],[38.775,11.360833333000187],[38.69500000000011,11.323333334000097],[38.737500000000125,11.23583333300013],[38.70416666700015,11.17416666700018],[38.60000000000019,11.166666667000129],[38.52,11.090000000000146],[38.5975,11.048333334000176],[38.59,10.979166666000026],[38.63333333300011,10.82],[38.575,10.708333332999985],[38.57,10.5625],[38.662500000000136,10.411666667000077],[38.73833333300007,10.495833333000064],[38.89833333400014,10.461666666999974],[39.0025,10.396666667000147],[39.03416666700008,10.245833333000121],[39.00083333400016,10.163333333000026],[38.86833333300012,9.991666667],[38.95916666700009,9.954166666000106],[39.066666666,10.01],[39.08,9.891666667000095],[39.013333333000105,9.889166667000154],[38.945,9.829166667000152],[38.88333333300005,9.856666667000127],[38.79583333300019,9.78],[38.68000000000018,9.9675],[38.586666666999974,10.030000000000143],[38.46333333300015,9.988333333000071],[38.380000000000166,10.008333334000099],[38.34916666700008,10.075833333000162],[38.219166667000025,10.013333333000048],[38.125,9.863333334000117],[38.2025000000001,9.821666667000045],[38.165000000000134,9.726666666000028],[38.23166666700013,9.721666667000136],[38.41833333400018,9.635833333000107],[38.63666666700004,9.4975],[38.57583333300016,9.421666666000021],[38.510833333000164,9.564166667000052],[38.36166666700018,9.532500000000141],[38.338333334000026,9.635000000000161],[38.23500000000013,9.66833333400001],[38.16000000000014,9.615833333000126],[38.16333333400007,9.4925],[38.113333334000174,9.431666667000059],[38.059166667000056,9.5125],[38.0675,9.67],[38.00916666699999,9.730833333000078],[37.89,9.69],[37.88,9.65083333399997],[37.70916666699998,9.770833333000155],[37.670000000000186,9.752500000000168],[37.65583333400008,9.655833333000032],[37.73583333300019,9.511666667000043],[37.889166666,9.543333333000078],[37.96666666700003,9.45583333400009],[37.93833333300012,9.415000000000134],[37.83333333300004,9.403333334000138],[37.80583333400011,9.295],[37.86666666700006,9.201666666000165],[37.76083333300011,9.138333334000038],[37.69416666700005,9.193333334000044],[37.5375,9.2075],[37.41416666700013,9.2525],[37.47583333300008,9.358333334000065],[37.57750000000016,9.378333333000057],[37.50583333300017,9.534166667000079],[37.56333333300012,9.532500000000141],[37.57000000000011,9.71],[37.60166666700013,9.75],[37.595,9.8525],[37.505,9.831666667000036],[37.46333333299998,9.605],[37.35,9.686666666000121],[37.32333333400004,9.77333333300004],[37.228333334000126,9.844166665999978],[37.215,9.964166666000096],[37.09666666700008,10.000833333000116],[37.03750000000019,10.119166667000172],[36.91500000000019,10.155833333000146],[36.78833333400007,10.001666666000062],[36.67583333300013,10.125833333],[36.635000000000105,10.054166666000071],[36.574166667000156,10.025000000000148],[36.585,9.97416666600003],[36.69000000000017,10.01],[36.675,9.8825],[36.698333333,9.810000000000116],[36.65583333300003,9.738333333000128],[36.68500000000017,9.73166666700007],[36.78916666700019,9.89416666700015],[36.90833333300003,9.904166666000037],[36.955833333000044,9.870833333000064],[36.981666667000184,9.765],[36.88750000000016,9.588333334000026],[36.9325,9.551666666000074],[36.97250000000014,9.441666666000117],[36.90750000000014,9.243333334000113],[36.791666666000026,9.297500000000127],[36.75666666700016,9.23250000000013],[36.688333334000106,9.229166667000129],[36.790000000000134,9.249166666000121],[36.84333333300003,9.11333333400006],[36.76416666700004,9.059166666000067],[36.88333333400004,9.0275],[37.06583333400005,9.170000000000186],[37.16166666600003,9.115833333000069],[37.21583333300015,9.025833333000094],[37.26416666600005,9.029166667000027],[37.395833334000145,8.947500000000105],[37.40666666600015,8.83333333400003],[37.3025,8.78333333300003],[37.23500000000013,8.692500000000166],[37.298333333000016,8.618333333000066],[37.49833333300012,8.51083333300005],[37.61166666700012,8.480833334000067],[37.68666666700011,8.53],[37.80583333300018,8.495000000000175],[37.85500000000013,8.399166667000088],[37.82666666600005,8.24666666700017],[37.698333333000164,8.20333333300016],[37.65416666700014,8.09],[37.686666666000065,8.055833333000066],[37.73166666700001,7.916666667000072],[37.66750000000013,7.778333333000091],[37.619166666000126,7.750000000000114],[37.64750000000015,7.62],[37.558333334000054,7.571666666000056],[37.5575,7.430833333000066],[37.52333333300004,7.401666667000029],[37.50250000000017,7.291666667000072],[37.525,7.245],[37.639166667000154,7.255],[37.75,7.209166666000101],[37.7708333330001,7.11833333300018],[37.638333333000105,6.980000000000132],[37.574166667000156,6.838333333000151],[37.64583333300004,6.797500000000127],[37.79083333300002,6.791666666000083],[37.935000000000116,6.9125],[37.94583333300005,7.013333333000105],[37.999166667000054,7.115833333000126],[38.035,7.3241666670001],[38.11333333300007,7.33416666700009],[38.14166666600005,7.230833333000021],[38.23083333400018,7.030833333000146],[38.218333334000135,6.940833333000171],[38.24083333400017,6.792500000000132],[38.2875,6.759166667000159],[38.35083333300014,6.834166666999977],[38.40416666700014,6.834166666999977],[38.46916666600009,6.7575],[38.34583333299997,6.664166666000142],[38.29583333300013,6.547500000000184],[38.338333334000026,6.531666667000081],[38.345833334000076,6.386666667000043],[38.289166667000075,6.280833334000022],[38.22083333300009,6.322500000000161],[38.17000000000013,6.241666666000128],[38.06916666700005,6.172500000000127],[38.0975,6.017500000000155],[38.158333333000144,5.995833333000064],[38.190833334000104,5.819166666000172],[38.26666666700004,5.860833333000187],[38.309166666000124,5.960833333000153],[38.35833333400012,5.9875],[38.3875,6.122500000000116],[38.483333334,6.15083333400014],[38.50166666600012,6.2225],[38.596666667000136,6.338333333000037],[38.62666666700005,6.4425],[38.75000000000017,6.440000000000168],[38.776666667000086,6.4425],[38.8275000000001,6.475],[38.82333333300005,6.557500000000118],[38.9025,6.69166666700005],[39.056666667000115,6.750000000000114],[39.10750000000013,6.924166666000076],[39.21583333300009,6.88],[39.26,6.918333333000135],[39.3975,6.88583333400004],[39.540000000000134,6.994166667000172],[39.55416666600007,7.102500000000134],[39.62250000000017,7.176666667000177],[39.61666666700006,7.255],[39.73083333400007,7.312500000000171],[39.78583333300003,7.12916666700005],[39.820000000000164,7.1225],[39.8958333330001,7.009166667000102],[40.013333333000105,6.900833333000094],[39.964166667000086,6.797500000000127],[39.98416666700018,6.695833333000053],[40.060833334000165,6.868333333000066],[40.20666666700015,6.89333333400009],[40.299166666000076,6.880833333000112],[40.40166666700003,6.72],[40.48,6.73583333300013],[40.41916666600014,6.88],[40.540833333000194,6.909166667000022],[40.47333333400019,6.966666666000037],[40.497500000000116,7.085833332999982],[40.59500000000014,7.102500000000134],[40.64166666699998,7.07666666700004],[40.74666666700011,7.1225],[40.80000000000018,7.243333333000066],[40.795000000000186,7.318333333999988],[40.73916666600013,7.358333334000065],[40.74166666700012,7.425000000000182],[40.600000000000136,7.5325],[40.42500000000018,7.436666666],[40.32250000000016,7.449166666000053],[40.278333333000035,7.485],[40.18,7.41],[39.93416666700011,7.458333333000098],[39.86083333300019,7.390833332999989],[39.77166666700009,7.3575],[39.69833333400004,7.420000000000186],[39.57833333400015,7.453333333000103],[39.585833333000096,7.519166666999979],[39.705,7.528333334000024],[39.62000000000012,7.661666667000134],[39.6975,7.655],[39.81750000000011,7.55],[39.92000000000013,7.540833333000023],[39.99166666700012,7.494166666000126],[40.1,7.498333333],[40.17083333300019,7.62083333400011],[40.18333333400017,7.716666666000094],[40.14416666699998,7.835833333000039],[40.0775,7.808333333000178],[40.00500000000011,7.855833332999964],[40.05416666700006,7.903333334000081],[39.97416666700002,7.9725],[39.98916666700018,8.081666667000036],[40.1325,8.08083333400009],[40.0425,8.160833334000074],[40.045000000000186,8.306666666000126],[40.14416666699998,8.355833333000078],[40.22416666700019,8.5275],[40.31333333400005,8.581666667000093],[40.36916666700017,8.69833333300005],[40.49833333300006,8.818333333000169],[40.735000000000184,8.908333333000087],[40.78,8.7475],[40.99000000000012,8.834166667000147],[40.9625,8.96000000000015],[41.099166665999974,8.93833333300006],[41.16666666600008,8.998333333000062],[41.31,9.071666667000045],[41.33583333300015,8.98916666700012],[41.459166666000044,9.158333333000087],[41.50583333300011,9.039166666000085],[41.65000000000015,9.289166666000028],[41.594166667000025,9.110000000000127],[41.516666667000095,8.945000000000164],[41.660833333000085,8.970833334000133],[41.75416666700016,8.965833333000091],[41.9025,9.011666667000156],[41.91416666700013,9.160833333000141],[41.958333332999985,9.275],[42.040000000000134,9.259166666000112],[42.14416666700015,9.1725],[42.1400000000001,9.31],[42.20333333300016,9.388333333000048],[42.305,9.35333333400007],[42.41416666700002,9.361666666000133],[42.55166666700018,9.431666666000183],[42.608333333000076,9.430833333000066],[42.71666666600004,9.355833334000124],[42.70916666700009,9.478333333000023],[42.90083333400014,9.476666667000131],[42.94916666600011,9.52250000000015],[42.92169189500015,9.640000000000157],[42.8725,9.6991666670001],[42.775,9.73166666700007],[42.68416666700011,9.69250000000011],[42.64500000000015,9.600833334000072],[42.566666667000106,9.645000000000152],[42.3841666670001,9.626666666000062],[42.30833333400017,9.59333333300009],[42.26000000000016,9.625],[42.17916666700006,9.59583333300003],[42.17166666700018,9.535833332999971],[42.071666667000045,9.559166667000056],[41.95833333400009,9.490000000000123],[41.819166666000115,9.464166667000086],[41.52916666700014,9.495000000000118],[41.47250000000014,9.443333333000112],[41.40666666699997,9.440000000000111],[41.293333333000135,9.376666667000052],[41.2091666660001,9.387500000000102],[41.16,9.300833333000185],[41.09666666700019,9.39083333300016],[41.02583333300015,9.361666667000065],[40.983333334000065,9.170000000000186],[40.90916666700019,9.200000000000102],[40.8958333330001,9.113333333000185],[40.843333333000146,9.08083333400009],[40.745833333000064,9.095],[40.71,9.050833333000071],[40.529166666000094,8.965000000000146],[40.45416666700015,8.8900000000001],[40.44583333300005,8.798333333000187],[40.31333333400005,8.796666667000125],[40.17083333300019,8.679166666000071],[40.11500000000018,8.661666667000077],[40.06166666700011,8.538333333000082],[39.98333333300019,8.550833333000128],[39.92416666700018,8.491666667000118],[39.79250000000013,8.4275],[39.668333334000124,8.435833333000062],[39.43166666700017,8.2875],[39.396666667000034,8.21083333300004],[39.27583333300015,8.25],[39.1525,8.245833333000121],[39.073333333000164,8.167500000000132],[38.98416666700007,8.237500000000125],[38.9566666660001,8.178333333000012],[39.105,8.072500000000161],[39.069166666000115,7.953333334000092],[38.90833333300003,7.862500000000125],[38.864166666000074,7.79],[38.76000000000016,7.828333334000035],[38.730833333000135,7.760000000000105],[38.834166667000034,7.741666667000118],[38.85416666600008,7.595833333000087],[38.81750000000011,7.475],[38.67583333300013,7.440000000000111],[38.53166666700014,7.220833334000133],[38.52333333300004,7.146666666000158],[38.62333333300012,7.104166667000072],[38.60166666600003,6.994166667000172],[38.55416666600007,6.9575],[38.36416666700006,6.960833334000029],[38.29833333400012,7.002500000000168],[38.40583333300003,7.176666666000074],[38.37166666700011,7.296666665999965],[38.33916666700014,7.580833333000101],[38.28416666700008,7.510000000000161],[38.24083333400017,7.5875]],[[38.18750000000017,7.983333333000132],[38.112500000000125,8.02],[38.135,8.15],[38.182500000000175,8.238333333000071],[38.31833333300017,8.3425],[38.31166666700011,8.4],[38.46416666700003,8.454166666000049],[38.3825,8.240833333000182],[38.2925,8.199166667000043],[38.260833333,8.130833333000055],[38.26916666700009,8.053333333000126],[38.18750000000017,7.983333333000132]],[[37.9275,8.75416666600006],[37.840000000000146,8.774166665999985],[37.85500000000013,8.837500000000148],[37.93000000000012,8.816666667000106],[37.9275,8.75416666600006]],[[39.48250000000013,9.340000000000146],[39.586666667000145,9.350000000000136],[39.579166667000095,9.2725],[39.45916666699998,9.231666667000184],[39.48250000000013,9.340000000000146]],[[39.65083333300015,9.561666666000065],[39.61916666600007,9.645833333999974],[39.681666667000115,9.827500000000157],[39.734166666000135,9.806666667000115],[39.75916666699999,9.679166667000118],[39.7425,9.623333333000062],[39.65083333300015,9.561666666000065]],[[38.59083333300015,9.687500000000114],[38.5375,9.79083333300008],[38.6225,9.8675],[38.68083333400017,9.82666666700004],[38.68666666700011,9.755833333000169],[38.59083333300015,9.687500000000114]],[[39.6675,10.0775000000001],[39.620833333000064,10.203333333000103],[39.6075,10.411666667000077],[39.72416666700008,10.414166667000188],[39.72333333400013,10.53333333300003],[39.65416666600015,10.591666667000027],[39.67333333300019,10.71333333299998],[39.723333333000085,10.70000000000016],[39.76166666600017,10.53],[39.81083333300012,10.42750000000018],[39.8225,10.27916666700014],[39.76916666700015,10.216666667000027],[39.775,10.156666666000092],[39.6675,10.0775000000001]],[[38.9875,11.039166666000085],[39.04083333300014,11.0808333330001],[38.99000000000012,11.14833333300004],[39.07833333300016,11.173333333000187],[39.10583333300019,11.135833333000164],[39.26583333300016,11.112500000000182],[39.317500000000166,11.020833333000098],[39.3925,11.050833333000185],[39.59,10.974166667000134],[39.543333333000135,10.8475],[39.381666667000104,10.873333334000051],[39.32000000000011,10.77333333300004],[39.2275,10.745],[39.22833333400007,10.82666666700004],[39.1525,10.810000000000116],[39.017500000000155,10.841666666000094],[38.96916666700008,10.811666667000054],[38.812500000000114,10.905833334000079],[38.83833333400008,10.9725],[38.9125,10.96833333300009],[38.910833333000085,11.04166666600014],[38.9875,11.039166666000085]],[[39.50666666600006,11.447500000000105],[39.43583333300012,11.520833333000155],[39.57166666699999,11.523333334000142],[39.50666666600006,11.447500000000105]],[[39.193333333000055,11.58916666600004],[39.13916666600011,11.66166666700002],[39.03250000000014,11.6375],[38.96666666699997,11.67416666600019],[39.02583333400008,11.843333334000135],[39.1375,11.850833334000185],[39.211666667000145,11.9125],[39.34,11.955],[39.324166667000156,12.044166666000024],[39.12833333300006,12.030833333000032],[39.05416666600013,12.08500000000015],[39.13250000000011,12.154166667000027],[39.22083333300009,12.18083333300001],[39.389166667000154,12.112500000000182],[39.41916666700007,12.071666667000159],[39.40166666600015,11.898333333000096],[39.468333333000146,11.752500000000111],[39.525833333000094,11.726666667000075],[39.455000000000155,11.636666666000167],[39.42666666700018,11.725],[39.25083333300017,11.659166666000033],[39.193333333000055,11.58916666600004]],[[38.49416666600001,11.738333333000071],[38.515833334000035,11.668333333000078],[38.41416666600003,11.654166666000037],[38.3275,11.733333333000076],[38.288333333000026,11.69916666600011],[38.26666666700004,11.585833332999982],[38.22083333300009,11.551666666000187],[38.123333334000165,11.74333333400017],[38.25083333300006,11.813333333000116],[38.355833333000135,11.7675],[38.49416666600001,11.738333333000071]],[[37.97166666600009,13.12166666700017],[37.98916666700006,13.204166667000095],[38.115,13.300000000000125],[38.34666666700019,13.384166666999988],[38.45000000000016,13.379166666000117],[38.45166666600005,13.2975],[38.545833333000076,13.233333333000132],[38.43,13.078333334000092],[38.31583333400016,13.069166667000047],[38.25166666700005,13.214166667000029],[38.24333333300012,13.020833333000041],[38.16166666700008,13.02916666700014],[38.059166667000056,13.143333332999987],[37.97166666600009,13.12166666700017]],[[37.60500000000019,10.86333333400006],[37.64083333400015,10.822500000000161],[37.79916666700012,10.800833334000117],[37.87250000000017,10.8425],[37.9533333330001,10.83],[38.02833333300009,10.774166666000156],[38.06416666700005,10.683333333000064],[37.9825,10.6375],[37.9275,10.526666666000096],[37.87000000000012,10.507500000000164],[37.733333333000076,10.596666667000022],[37.754166666000174,10.743333334],[37.60500000000019,10.81250000000017],[37.60500000000019,10.86333333400006]],[[37.13833333300005,9.273333334000085],[37.090000000000146,9.274166666999974],[37.05,9.414166666000142],[36.93833333400005,9.535833332999971],[36.93833333300017,9.5825],[37.0175,9.661666667000077],[36.999166667000054,9.837500000000148],[37.12250000000017,9.81666666700005],[37.161666667000134,9.62916666700005],[37.12583333300017,9.616666667000175],[37.0825,9.4491666670001],[37.090000000000146,9.344166667000025],[37.13833333300005,9.273333334000085]],[[39.05833333300018,7.248333333000062],[38.954166667000095,7.421666667000125],[39.045000000000186,7.468333333000089],[39.22083333300009,7.435833334000165],[39.245833333,7.3775],[39.165,7.281666667000138],[39.05833333300018,7.248333333000062]],[[39.280833333000146,7.525833333000037],[39.331666667000036,7.68416666700017],[39.29333333300019,7.8175],[39.19083333400005,7.852500000000134],[39.17,7.906666667000081],[39.240833334000115,7.982500000000186],[39.37166666600001,7.993333334],[39.44583333300011,8.045833333000076],[39.5125000000001,8.025],[39.509166667000045,7.927500000000123],[39.379166667,7.525833333000037],[39.395,7.38333333300011],[39.36083333300013,7.3241666670001],[39.29500000000013,7.3525],[39.280833333000146,7.525833333000037]]],[[[37.1562885730001,18.568945316000054],[37.21002948100005,18.752404389000162],[37.16971956700013,18.873577372],[37.120510587000126,18.918395576000137],[37.01152053200019,18.94883278100008],[36.94324859000017,18.870147330000066],[36.95468150600004,18.76217383300002],[37.020099577999986,18.683879481000133],[37.07123958100016,18.535798241000066],[37.1562885730001,18.568945316000054]]],[[[36.38420980000018,21.534850047000077],[36.445599931,21.589930039000023],[36.390230035000116,21.641279992000136],[36.31800006500015,21.602969950000045],[36.38420980000018,21.534850047000077]]],[[[36.55223001100018,21.812310144000037],[36.51877002400005,21.944800021000162],[36.45080994600005,21.921870076000175],[36.46252002700004,21.82048996800006],[36.55223001100018,21.812310144000037]]],[[[36.39863991700014,21.757260076000136],[36.410219918,21.81755008300007],[36.35809002100001,21.960800060000167],[36.308139955,22.00974998100014],[36.226150030000156,21.979849997000088],[36.39863991700014,21.757260076000136]]]]},"properties":{"objectid":259,"eco_name":"Ethiopian montane grasslands and woodlands","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Afrotropic","eco_biome_":"AF10","nnh":4,"eco_id":79,"shape_leng":627.855907705,"shape_area":18.297061176,"nnh_name":"Nature Imperiled","color":"#B57454","color_bio":"#D6C39D","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":222528.50967301516,"percentage":4.556924788665926}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[37.49166666600013,6.264166667000097],[37.366666667000175,6.220833333000087],[37.2650000000001,6.122500000000116],[37.303333334000115,6.096666667000022],[37.49166666600013,6.264166667000097]]],[[[39.964166667000086,6.797500000000127],[40.013333333000105,6.900833333000094],[39.8958333330001,7.009166667000102],[39.820000000000164,7.1225],[39.78583333300003,7.12916666700005],[39.73083333400007,7.312500000000171],[39.61666666700006,7.255],[39.62250000000017,7.176666667000177],[39.55416666600007,7.102500000000134],[39.540000000000134,6.994166667000172],[39.3975,6.88583333400004],[39.26,6.918333333000135],[39.21583333300009,6.88],[39.10750000000013,6.924166666000076],[39.056666667000115,6.750000000000114],[39.1441666660001,6.780833333000032],[39.3625,6.776666667000029],[39.445000000000164,6.703333333000103],[39.487500000000125,6.8225],[39.65833333300003,6.831666666],[39.66833333300019,6.765833333000046],[39.87083333300018,6.712500000000148],[39.97333333300003,6.759166667000159],[39.964166667000086,6.797500000000127]]],[[[39.05833333300018,7.248333333000062],[39.165,7.281666667000138],[39.245833333,7.3775],[39.22083333300009,7.435833334000165],[39.045000000000186,7.468333333000089],[38.954166667000095,7.421666667000125],[39.05833333300018,7.248333333000062]]],[[[39.280833333000146,7.525833333000037],[39.29500000000013,7.3525],[39.36083333300013,7.3241666670001],[39.395,7.38333333300011],[39.379166667,7.525833333000037],[39.509166667000045,7.927500000000123],[39.5125000000001,8.025],[39.44583333300011,8.045833333000076],[39.37166666600001,7.993333334],[39.240833334000115,7.982500000000186],[39.17,7.906666667000081],[39.19083333400005,7.852500000000134],[39.29333333300019,7.8175],[39.331666667000036,7.68416666700017],[39.280833333000146,7.525833333000037]]],[[[38.18750000000017,7.983333333000132],[38.26916666700009,8.053333333000126],[38.260833333,8.130833333000055],[38.2925,8.199166667000043],[38.3825,8.240833333000182],[38.46416666700003,8.454166666000049],[38.31166666700011,8.4],[38.31833333300017,8.3425],[38.182500000000175,8.238333333000071],[38.135,8.15],[38.112500000000125,8.02],[38.18750000000017,7.983333333000132]]],[[[37.9275,8.75416666600006],[37.93000000000012,8.816666667000106],[37.85500000000013,8.837500000000148],[37.840000000000146,8.774166665999985],[37.9275,8.75416666600006]]],[[[39.48250000000013,9.340000000000146],[39.45916666699998,9.231666667000184],[39.579166667000095,9.2725],[39.586666667000145,9.350000000000136],[39.48250000000013,9.340000000000146]]],[[[38.59083333300015,9.687500000000114],[38.68666666700011,9.755833333000169],[38.68083333400017,9.82666666700004],[38.6225,9.8675],[38.5375,9.79083333300008],[38.59083333300015,9.687500000000114]]],[[[39.65083333300015,9.561666666000065],[39.7425,9.623333333000062],[39.75916666699999,9.679166667000118],[39.734166666000135,9.806666667000115],[39.681666667000115,9.827500000000157],[39.61916666600007,9.645833333999974],[39.65083333300015,9.561666666000065]]],[[[39.6675,10.0775000000001],[39.775,10.156666666000092],[39.76916666700015,10.216666667000027],[39.8225,10.27916666700014],[39.81083333300012,10.42750000000018],[39.76166666600017,10.53],[39.723333333000085,10.70000000000016],[39.67333333300019,10.71333333299998],[39.65416666600015,10.591666667000027],[39.72333333400013,10.53333333300003],[39.72416666700008,10.414166667000188],[39.6075,10.411666667000077],[39.620833333000064,10.203333333000103],[39.6675,10.0775000000001]]],[[[37.60500000000019,10.86333333400006],[37.60500000000019,10.81250000000017],[37.754166666000174,10.743333334],[37.733333333000076,10.596666667000022],[37.87000000000012,10.507500000000164],[37.9275,10.526666666000096],[37.9825,10.6375],[38.06416666700005,10.683333333000064],[38.02833333300009,10.774166666000156],[37.9533333330001,10.83],[37.87250000000017,10.8425],[37.79916666700012,10.800833334000117],[37.64083333400015,10.822500000000161],[37.60500000000019,10.86333333400006]]],[[[38.9875,11.039166666000085],[38.910833333000085,11.04166666600014],[38.9125,10.96833333300009],[38.83833333400008,10.9725],[38.812500000000114,10.905833334000079],[38.96916666700008,10.811666667000054],[39.017500000000155,10.841666666000094],[39.1525,10.810000000000116],[39.22833333400007,10.82666666700004],[39.2275,10.745],[39.32000000000011,10.77333333300004],[39.381666667000104,10.873333334000051],[39.543333333000135,10.8475],[39.59,10.974166667000134],[39.3925,11.050833333000185],[39.317500000000166,11.020833333000098],[39.26583333300016,11.112500000000182],[39.10583333300019,11.135833333000164],[39.07833333300016,11.173333333000187],[38.99000000000012,11.14833333300004],[39.04083333300014,11.0808333330001],[38.9875,11.039166666000085]]],[[[39.50666666600006,11.447500000000105],[39.57166666699999,11.523333334000142],[39.43583333300012,11.520833333000155],[39.50666666600006,11.447500000000105]]],[[[38.49416666600001,11.738333333000071],[38.355833333000135,11.7675],[38.25083333300006,11.813333333000116],[38.123333334000165,11.74333333400017],[38.22083333300009,11.551666666000187],[38.26666666700004,11.585833332999982],[38.288333333000026,11.69916666600011],[38.3275,11.733333333000076],[38.41416666600003,11.654166666000037],[38.515833334000035,11.668333333000078],[38.49416666600001,11.738333333000071]]],[[[39.193333333000055,11.58916666600004],[39.25083333300017,11.659166666000033],[39.42666666700018,11.725],[39.455000000000155,11.636666666000167],[39.525833333000094,11.726666667000075],[39.468333333000146,11.752500000000111],[39.40166666600015,11.898333333000096],[39.41916666700007,12.071666667000159],[39.389166667000154,12.112500000000182],[39.22083333300009,12.18083333300001],[39.13250000000011,12.154166667000027],[39.05416666600013,12.08500000000015],[39.12833333300006,12.030833333000032],[39.324166667000156,12.044166666000024],[39.34,11.955],[39.211666667000145,11.9125],[39.1375,11.850833334000185],[39.02583333400008,11.843333334000135],[38.96666666699997,11.67416666600019],[39.03250000000014,11.6375],[39.13916666600011,11.66166666700002],[39.193333333000055,11.58916666600004]]],[[[37.97166666600009,13.12166666700017],[38.059166667000056,13.143333332999987],[38.16166666700008,13.02916666700014],[38.24333333300012,13.020833333000041],[38.25166666700005,13.214166667000029],[38.31583333400016,13.069166667000047],[38.43,13.078333334000092],[38.545833333000076,13.233333333000132],[38.45166666600005,13.2975],[38.45000000000016,13.379166666000117],[38.34666666700019,13.384166666999988],[38.115,13.300000000000125],[37.98916666700006,13.204166667000095],[37.97166666600009,13.12166666700017]]]]},"properties":{"objectid":260,"eco_name":"Ethiopian montane moorlands","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Afrotropic","eco_biome_":"AF10","nnh":3,"eco_id":80,"shape_leng":100.686667019,"shape_area":1.28900902779,"nnh_name":"Nature Could Recover","color":"#A93800","color_bio":"#D6C39D","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":15730.09758274912,"percentage":0.32211994637582286}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[14.993562900000029,-19.24659855999994],[15.094119485000135,-19.223070971999903],[15.128264933000025,-19.13001352499998],[15.04036129300016,-19.129338412999914],[14.993562900000029,-19.24659855999994]]],[[[15.750505519000114,-18.534335301999874],[15.675013760000184,-18.58387560099993],[15.719519664000074,-18.658854452999947],[15.804044476000172,-18.634697056999926],[15.750505519000114,-18.534335301999874]]],[[[17.058735286000058,-18.659816916999944],[16.913754864000055,-18.797851640999966],[16.865797512000086,-18.762616698999977],[16.89338743100018,-18.679661582999927],[16.829581344000076,-18.62060818699996],[16.80493608400019,-18.495627893999824],[16.74396906300018,-18.439460227999973],[16.623506609,-18.417808230999924],[16.522309299000142,-18.44519993299997],[16.47597836300008,-18.502294270999926],[16.365744277000147,-18.484163312999897],[16.226275836000127,-18.56457187199993],[15.998576541000148,-18.655218826999885],[15.878801731000067,-18.742808505999903],[15.834799283000109,-18.81680664299995],[15.721469157000172,-18.830552358999967],[15.67890608800019,-18.917855154999813],[15.600709946000052,-18.861382078999895],[15.447016948000055,-19.005872644999954],[15.397284917000036,-19.154457373999946],[15.343143352000027,-19.181056947999878],[15.25225204000003,-19.068753801999833],[15.18838827900015,-19.074620035999885],[15.182212410000147,-19.22162541499995],[15.361195897000073,-19.2033022949999],[15.456735803000129,-19.104676411999947],[15.561749753000129,-19.159650830999965],[15.57943654200011,-19.110960144999922],[15.739788315000112,-19.07207404499991],[15.916411798000013,-19.185673622999957],[16.043593008000073,-19.24193799999989],[16.098250962000066,-19.117052095999952],[16.190286058000027,-19.044335390999947],[16.289955008000106,-19.06777236199997],[16.374831034000124,-19.038353018999942],[16.41187176300008,-18.98366236499993],[16.52957393600019,-18.93444609099987],[16.681055451000134,-18.948348685999974],[16.732954580000182,-18.844539727999916],[16.881825193999987,-18.860790583999915],[17.118211589000055,-18.734570026999847],[17.124170679000144,-18.672045020999974],[17.12274285900014,-18.67137791199991],[17.058735286000058,-18.659816916999944]]]]},"properties":{"objectid":261,"eco_name":"Etosha Pan halophytics","biome_num":9,"biome_name":"Flooded Grasslands & Savannas","realm":"Afrotropic","eco_biome_":"AF09","nnh":1,"eco_id":70,"shape_leng":15.5064351995,"shape_area":0.659231647253,"nnh_name":"Half Protected","color":"#5993B9","color_bio":"#BEE7FF","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":7731.899548151296,"percentage":0.6686395294757141}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-80.04599243099995,26.85559573800009],[-80.0975956289999,26.82162481500012],[-80.14448082799998,26.703074137999977],[-80.21119721199983,26.668396905000066],[-80.30862847699996,26.676759675000085],[-80.37098773099996,26.751394091000066],[-80.57145608199988,26.937697534000108],[-80.63410370799988,27.072446153000044],[-80.75278771799998,27.200179686000013],[-80.82612393699998,27.201170074000117],[-81.01368985899984,27.020307859000127],[-81.13633542499997,26.965818266000156],[-81.1773941919999,26.864380816000107],[-81.15838577599999,26.761479899],[-80.99825593999992,26.64341945400008],[-80.96387930999998,26.46080115100017],[-80.92202349999991,26.38922649800014],[-80.97603004199993,26.31213574200018],[-81.05789427899998,26.336870078000175],[-81.10625192699996,26.422618221000164],[-81.22217266199993,26.38670931200005],[-81.16775303399993,26.2943276150001],[-81.20823781699988,26.24883835800017],[-81.35310141199983,26.321418861999973],[-81.39747457999982,26.274492836000093],[-81.58842169999991,26.27372419800008],[-81.54910577399994,26.38356230800008],[-81.64667934399995,26.416030729000056],[-81.75154882799995,26.519373875000042],[-81.80010655099994,26.387072133000174],[-81.7848888979999,26.17243031999999],[-81.78273426199996,26.167185325000105],[-81.77202871499998,26.145441842000025],[-81.77219392099988,26.143295451000142],[-81.77567856199988,26.125959633000036],[-81.77636804699995,26.123782472000073],[-81.77916259799997,26.11562581800007],[-81.69857729699993,26.018803076000097],[-81.56984845699998,25.989535706000026],[-81.40495180899995,25.90720635500014],[-81.36307329499988,25.911965277000036],[-81.24195872999996,25.83748814800009],[-81.15848277599997,25.71355769100012],[-81.05931624399994,25.625111259000107],[-80.87842021599994,25.41969425600007],[-80.85486355199998,25.335223391000113],[-80.73803201699997,25.226719968999987],[-80.49389931699989,25.286206494000112],[-80.38991687099997,25.352593456000136],[-80.33096677699996,25.54802215300009],[-80.23837541899996,25.726977401000056],[-80.18909358799982,25.75775922800011],[-80.17086631299998,25.867668347000063],[-80.12942642899998,25.929211806000183],[-80.03681174699994,26.594423078000148],[-80.04599243099995,26.85559573800009]]]},"properties":{"objectid":263,"eco_name":"Everglades flooded grasslands","biome_num":9,"biome_name":"Flooded Grasslands & Savannas","realm":"Neotropic","eco_biome_":"NO09","nnh":2,"eco_id":581,"shape_leng":16.4507100444,"shape_area":1.78860361144,"nnh_name":"Nature Could Reach Half Protected","color":"#2AA6BE","color_bio":"#BEE7FF","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":19889.469900199885,"percentage":1.7200024020967535}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[137.96452366100016,-32.765647723999905],[137.92091134400005,-32.74509669099996],[137.8972400020001,-32.77572999699993],[137.95131000200013,-33.00905999699995],[138.04057000200032,-33.07291999699987],[138.0224700020002,-33.14043999699987],[137.83619000200008,-33.20189999699994],[137.8111500020002,-33.27626999699993],[137.88462000200002,-33.33534999699998],[137.87278000200013,-33.4008299969999],[137.9412300020001,-33.54972999699987],[137.59989000200017,-33.87674999699988],[137.56761000300014,-34.04402999599995],[137.5188600030001,-34.132779995999954],[137.47195000300007,-34.39797999599989],[137.5093200030002,-34.62568999599995],[137.45988000300008,-34.80773999599995],[137.45728000300005,-34.89059999599988],[137.37784000300007,-34.95383999599994],[137.2914200030002,-34.900719995999964],[137.09420000300008,-34.91925999599988],[137.008720003,-34.89635999599989],[136.93576000300004,-35.032109995999974],[136.94153000300003,-35.128299995999896],[136.8461800030002,-35.19226999599988],[136.88329000400017,-35.30107999599994],[137.00240000300005,-35.223489995999955],[137.13713000300015,-35.24367999599997],[137.2125300030002,-35.18153999599997],[137.30121000300005,-35.16781999599988],[137.4261100030002,-35.097709995999935],[137.5593900030002,-35.11913999599989],[137.6362100030001,-35.168059995999954],[137.75507000300001,-35.11095999599996],[137.72663000300008,-35.049569995999946],[137.83197000300004,-34.81229999599998],[137.86407000300017,-34.777529995999885],[137.88536000300007,-34.512609995999924],[137.9165600030002,-34.42944999599996],[138.01618000300016,-34.32609999599987],[138.0094900030001,-34.23507999699996],[138.09052000200018,-34.13258999699997],[138.15578000200003,-34.20951999699997],[138.1553100030003,-34.271809996999934],[138.22408000200005,-34.31412999699995],[138.26309000300023,-34.47315999599988],[138.33174000300005,-34.51993999599989],[138.4292600030002,-34.66569999599989],[138.54198000300005,-34.75477999599997],[138.4765300030001,-34.85966999599992],[138.51650134200008,-35.03534571599994],[138.59342010700016,-34.94410532299992],[138.5960116330001,-34.861034907999965],[138.67438324800014,-34.77517687099987],[138.5828880780001,-34.724265687999946],[138.5751636120001,-34.63887498999986],[138.71688921900034,-34.616076272999976],[138.76564000400003,-34.56174852999993],[138.78294405300005,-34.457447233999915],[138.66934210600016,-34.33714666099985],[138.69074999500015,-34.287944677999974],[138.6079410110001,-34.10944739499996],[138.5723417500002,-33.89624790599987],[138.39204390400016,-33.608146936999844],[138.32734659500022,-33.57514540799997],[138.29454021300023,-33.40584572999995],[138.16484057700018,-33.2196462199999],[138.0984344520001,-33.01044844299997],[138.0403287260001,-32.95084752799994],[137.96452366100016,-32.765647723999905]]],[[[133.01412961200015,-31.766668328999913],[132.90617409000015,-31.78209878799987],[132.85276778000014,-31.829498433999902],[132.6560672600002,-31.809299558999953],[132.48156752400007,-31.85290150999998],[132.35237141000027,-31.829402919999893],[132.279281566,-31.864204666999967],[132.19587731500008,-31.75330566899987],[132.1130829750001,-31.759505975999957],[132.12979161600015,-31.83550675999993],[132.09202759700008,-31.933260996999934],[132.150870004,-32.00249999599998],[132.27014000300017,-32.03287999599996],[132.43724000300017,-31.994769995999945],[132.5592100030001,-31.932189995999977],[132.74847000300008,-31.948949995999897],[132.93510000300012,-32.054289995999966],[133.0559600030001,-32.10405999599993],[133.14052000300023,-32.17870999599995],[133.25681000300017,-32.207219995999935],[133.47413000300025,-32.10075999599991],[133.55048000300008,-32.16973999599992],[133.60071000300013,-32.084629995999876],[133.67248000300003,-32.11235999599995],[133.71557000300004,-32.194959995999966],[133.80814000300018,-32.23212999599997],[133.9026900030002,-32.318609995999964],[133.84695000300007,-32.50689999599996],[133.99143000300023,-32.505159995999975],[134.0499800030002,-32.45949999599998],[134.13662000300008,-32.45783999599996],[134.25741000300002,-32.55928999599996],[134.290150003,-32.69283999599992],[134.23164000300017,-32.76237999599988],[134.16213000300002,-32.72095999599992],[134.06075000300007,-32.723219995999955],[134.1383300030002,-32.83996999599998],[134.074550003,-32.882379995999884],[134.20545000300012,-32.9760999959999],[134.259800003,-33.152799995999885],[134.32872000300006,-33.1995799959999],[134.41596000300012,-33.14944999599993],[134.60046000300008,-33.140769995999904],[134.71577000300022,-33.19152999599987],[134.69633000300007,-33.263569995999944],[134.8025400030001,-33.329429995999874],[134.86287000300024,-33.548639995999906],[134.84248000300022,-33.63037999599993],[135.043750003,-33.758459995999885],[135.25336000300013,-33.98288999599998],[135.28121000300007,-34.06990999599998],[135.24445000300022,-34.15251999599997],[135.306540003,-34.188359995999974],[135.35141000400006,-34.28693999599983],[135.44738000400002,-34.63042999599992],[135.37703000400018,-34.64505999499994],[135.31800000400006,-34.517269995999925],[135.25077000400006,-34.55021999499996],[135.68577000400012,-34.94501999499994],[135.7137900040001,-34.86478999499991],[135.80095000400001,-34.862959994999926],[135.92801000400004,-34.948399994999875],[135.9913000040001,-34.923179995999874],[135.96008000400002,-34.84810999599995],[136.0034200040002,-34.775219995999976],[135.85543000400003,-34.74961999599998],[135.86043000400002,-34.637199995999936],[135.93422000300006,-34.5274799959999],[136.0255300030002,-34.483729995999965],[136.11241000300015,-34.515979995999885],[136.1277000030001,-34.345229995999944],[136.18691000300032,-34.33498999599993],[136.32423000300014,-34.18234999599997],[136.36092000300005,-34.07129999599994],[136.50056000300015,-33.991879995999966],[136.59301000300002,-33.89945999599996],[136.9886000030001,-33.72527999599993],[137.2092900030002,-33.663589996999974],[137.27956000200004,-33.56308999699996],[137.37924687400005,-33.356802850999884],[137.11154189400008,-33.289859608999905],[137.06465786800015,-33.12916317799994],[136.97026480700004,-33.150260748999926],[136.90873001100022,-33.111525790999906],[136.80714718700006,-33.10669654399993],[136.55234057000018,-33.023103123999874],[136.3951831290001,-32.82916139899987],[136.26122297600023,-32.82119353699994],[136.16477945600002,-32.84626124999994],[135.97763793800004,-32.85172884899998],[135.90952880300006,-32.80936870399995],[135.72956410200015,-32.81551756199997],[135.58661731800032,-32.78852223699994],[135.24290643900008,-32.573006549999945],[135.17959539000003,-32.64485699499994],[135.08375414900001,-32.50920053899995],[134.9792825850002,-32.428815852999946],[134.70515452100005,-32.262080941999955],[134.61465481900018,-32.26568241199993],[134.44325269100023,-32.19018522999994],[134.39976465700022,-32.12878384099986],[134.22375451400023,-32.07608444399989],[134.13815271600004,-31.984285297999918],[134.03805561700028,-32.01388572299993],[133.93936168900007,-31.973686235999935],[133.8283687720001,-31.96488771399993],[133.8092651940001,-31.87218645799993],[133.67807037600016,-31.87869052699989],[133.30886809400022,-31.794992327999978],[133.2589720530001,-31.860195464999947],[133.16906742000015,-31.83979416199992],[133.09597807900002,-31.779396],[133.01412961200015,-31.766668328999913]]]]},"properties":{"objectid":264,"eco_name":"Eyre and York mallee","biome_num":12,"biome_name":"Mediterranean Forests, Woodlands & Scrub","realm":"Australasia","eco_biome_":"AU12","nnh":3,"eco_id":199,"shape_leng":45.5655263979,"shape_area":5.93820627596,"nnh_name":"Nature Could Recover","color":"#E54C00","color_bio":"#FE0000","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":61365.68700895496,"percentage":1.8576557968884484}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-6.923813540999959,61.59510675600018],[-6.861862558999974,61.48721506600009],[-6.745346560999906,61.410548312],[-6.651648450999971,61.428845001000184],[-6.742454468999938,61.57198577899999],[-6.923813540999959,61.59510675600018]]],[[[-6.961266565999949,61.926114483000106],[-6.869383472999971,61.82046210200008],[-6.62085451199988,61.83399367900017],[-6.822412460999885,61.908958571000085],[-6.961266565999949,61.926114483000106]]],[[[-7.214883510999869,62.13734749500003],[-7.387509476999924,62.13751144500009],[-7.412931453999875,62.0674514750001],[-7.242197450999868,62.02762771200008],[-7.076407428999971,62.09691772100007],[-7.214883510999869,62.13734749500003]]],[[[-6.991668567999966,62.17570191100003],[-7.123083565999934,62.28505825500014],[-7.257724423999889,62.280717435000156],[-7.271887492999895,62.19040058400003],[-7.048889473999964,62.10354780600005],[-6.917963474999965,61.99924943800005],[-6.77481749999987,62.050257342],[-6.991668567999966,62.17570191100003]]],[[[-6.970301587999927,62.266071568000086],[-6.955032441999833,62.170684671],[-6.727397553999936,62.09038235100007],[-6.623627580999937,62.11957350200015],[-6.645923442999958,62.20259189400008],[-6.868454422999946,62.301100379],[-6.970301587999927,62.266071568000086]]]]},"properties":{"objectid":265,"eco_name":"Faroe Islands boreal grasslands","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Palearctic","eco_biome_":"PA08","nnh":4,"eco_id":729,"shape_leng":9.69614963638,"shape_area":0.250002535977,"nnh_name":"Nature Imperiled","color":"#FCC960","color_bio":"#FEFF73","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":1451.3124082954494,"percentage":0.013697702925503591}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[140.60221857800002,-32.593040601999974],[140.55985300200018,-32.50296108799989],[140.59802165800022,-32.432499065999934],[140.61137003700003,-32.31615892899998],[140.66486960100008,-32.30754326999988],[140.65597908900008,-32.19478795899994],[140.5618106820001,-32.22070371099994],[140.48756771900014,-32.17373900999996],[140.34811092400003,-32.22841531399996],[140.30831029800026,-32.17264251699993],[140.23309026700008,-32.22175257799995],[140.1373522470002,-32.15038330599998],[140.11465972100007,-32.23904833499989],[139.972436506,-32.179218749999905],[140.0119593490001,-32.11922749099989],[139.84713376700017,-32.04798536699997],[139.73925440000016,-32.06912256299995],[139.61614470200016,-31.967596008999976],[139.4621861620002,-31.928753850999954],[139.3166448100003,-31.962897941999927],[139.29626749800002,-31.891862037999942],[139.3508777420002,-31.800318874999903],[139.13782726500006,-31.782343784999966],[139.27793488600003,-31.672982283999943],[139.24723749300006,-31.58865394999998],[139.25553182500028,-31.491140775999895],[139.35558975900005,-31.417939558999933],[139.37097845200014,-31.35660091999989],[139.31509434400027,-31.304917831999944],[139.33426766500008,-31.241759497999965],[139.24444970500008,-31.199184705999926],[139.2133095160001,-31.121878917999936],[139.24753210400002,-31.019757779999964],[139.420952155,-30.865857063999897],[139.4058480010002,-30.78992500299995],[139.3076060110002,-30.648107491999838],[139.42739002000008,-30.45364127099998],[139.49724298500007,-30.416975299999933],[139.48761877400023,-30.35129842399988],[139.5366353400001,-30.260884791999956],[139.49929233700004,-30.194844079999882],[139.51764189500022,-30.124922519999984],[139.67766585200013,-30.02375270999994],[139.73488997200002,-29.916618315999983],[139.6829307060002,-29.858829836999973],[139.5367430760001,-29.83005656699993],[139.5389091730002,-29.75780739499993],[139.3499301410002,-29.81159917799988],[139.30463777400018,-29.85556804999993],[139.19729519800023,-29.856414204999965],[139.15602384600015,-29.935385836999956],[139.17016776000014,-30.01045069099996],[139.085059354,-30.07381780599991],[138.96604288100025,-30.056702035999933],[138.88233767700012,-29.962138896999875],[138.73163992000002,-30.150557380999942],[138.6730123250003,-30.10288153199997],[138.57651300200018,-30.113320717999898],[138.47300385100004,-30.17086582299993],[138.53290010100022,-30.32607557599988],[138.5110480290001,-30.401437738999903],[138.39859880400002,-30.38801577399994],[138.38082322900016,-30.472703725999963],[138.25668334700003,-30.363898126999914],[138.1591107700001,-30.36069736299993],[138.19863995100002,-30.490450818999932],[138.17341944700001,-30.712491238999917],[138.12092132800012,-30.735569101999943],[138.17302118000032,-30.98960191799995],[138.30451075800022,-31.076729977999946],[138.35409056100002,-31.24086587699992],[138.2960968110001,-31.389656463999984],[138.3238676630001,-31.43044277599995],[138.2048996860001,-31.485865829999966],[138.29363712600002,-31.626464720999934],[138.09258090000014,-31.863295214999937],[138.06198186200004,-31.982431068999972],[138.01018100700014,-31.97243900999996],[137.90456520400028,-32.049948342999926],[137.83252966200007,-32.187093638999954],[137.85766944900013,-32.24656881799996],[137.83906122000008,-32.49917460099988],[137.98123174200032,-32.59534809999997],[137.96452366100016,-32.765647723999905],[138.0403287260001,-32.95084752799994],[138.0984344520001,-33.01044844299997],[138.16484057700018,-33.2196462199999],[138.29454021300023,-33.40584572999995],[138.32734659500022,-33.57514540799997],[138.39204390400016,-33.608146936999844],[138.5723417500002,-33.89624790599987],[138.6079410110001,-34.10944739499996],[138.69074999500015,-34.287944677999974],[138.66934210600016,-34.33714666099985],[138.78294405300005,-34.457447233999915],[138.76564000400003,-34.56174852999993],[138.71688921900034,-34.616076272999976],[138.5751636120001,-34.63887498999986],[138.5828880780001,-34.724265687999946],[138.67438324800014,-34.77517687099987],[138.5960116330001,-34.861034907999965],[138.59342010700016,-34.94410532299992],[138.51650134200008,-35.03534571599994],[138.46759000300028,-35.12150999599987],[138.46913000300003,-35.24198999599997],[138.43911000300022,-35.351489995999884],[138.33288000300013,-35.40207999599994],[138.4139711260002,-35.41325389199994],[138.5968629460001,-35.26774970599996],[138.6762540860002,-35.164451772999826],[138.8305512600001,-35.222351241999945],[138.9194642570003,-35.119648269999914],[138.94155856200007,-35.02664592399998],[138.88446012400016,-34.95294600599988],[139.05804438600023,-34.80204407999997],[138.97784393400013,-34.71314617699994],[138.96473712600016,-34.65024551199997],[139.0429383070001,-34.60764301399996],[139.04113797200023,-34.54374324299994],[139.12763946400014,-34.52604283999989],[139.1656497810003,-34.39324192799984],[139.25863662100016,-34.261939910999956],[139.11332665100008,-33.98633928299995],[139.15241971200032,-33.8979377849999],[139.08102437900004,-33.66713697399996],[139.20112594600027,-33.62614045199996],[139.1537320220002,-33.48523693499993],[139.17503392400022,-33.39204045999992],[139.32432588100016,-33.39743448199994],[139.3209227540001,-33.30073520899998],[139.2302245730001,-33.2897338059999],[139.36320520200002,-33.14673629799995],[139.51031034400012,-33.1188049239999],[139.637103098,-33.11954478799993],[139.63514781600009,-33.02538484299993],[139.75054898300004,-32.945765811999934],[139.81215278000002,-32.992695309999874],[139.87757242600026,-32.93604353799992],[139.98570108900014,-32.91027878299997],[140.03867704000015,-32.83986767999994],[140.11117169500005,-32.88338009399996],[140.34781280400023,-32.7993884899999],[140.3861273800003,-32.71129737099989],[140.5254221470002,-32.590681847999974],[140.60221857800002,-32.593040601999974]]],[[[137.989298544,-29.676351480999983],[137.8141100370001,-29.7287180969999],[137.59137194800007,-29.87529062199991],[137.63875984100025,-29.948446041999887],[137.58633332800002,-30.03693136399994],[137.7295475520001,-30.1141569589999],[137.82371368200018,-30.13285554099997],[137.85666210500005,-30.185370430999967],[138.0637683650001,-30.30761096799995],[138.1243914580001,-30.291520956999932],[138.18650344300022,-30.127574404999905],[138.25555257400015,-30.069339970999977],[138.19897511500005,-29.98890253299993],[138.12880295000014,-29.954705280999974],[138.0912210910002,-29.763946907999923],[137.989298544,-29.676351480999983]]]]},"properties":{"objectid":270,"eco_name":"Flinders-Lofty montane woodlands","biome_num":12,"biome_name":"Mediterranean Forests, Woodlands & Scrub","realm":"Australasia","eco_biome_":"AU12","nnh":2,"eco_id":200,"shape_leng":37.0003535706,"shape_area":6.32736621226,"nnh_name":"Nature Could Reach Half Protected","color":"#A80000","color_bio":"#FE0000","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":66350.96778288622,"percentage":2.008569706276581}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-96.687820693,39.68589870500017],[-96.82050263399992,39.717480442000124],[-96.85474985899998,39.6566797640001],[-96.85459684699987,39.536270635000164],[-96.92816471299994,39.482427060000134],[-96.95807014799993,39.40124693700011],[-97.05110348699998,39.28793063799998],[-96.95889157099998,39.15096073800004],[-96.93482488199999,39.03242649200007],[-97.02000017299997,38.925134525000146],[-97.05796965199994,38.8211904960001],[-97.0748450239999,38.628930509000156],[-97.10326908999991,38.583893556000135],[-97.27601760199991,38.484473037999976],[-97.36771768899996,38.3755619100001],[-97.32431312699998,38.275153689000035],[-97.16260803799997,38.11992515800006],[-97.04062323099998,38.026042748],[-97.04988297199998,37.892186551000066],[-96.99296683699993,37.66732281100013],[-97.02930086399994,37.51867954700009],[-97.02507221299999,37.27261632300008],[-96.92074477799991,37.13376558300013],[-96.95351912099989,37.1064225290001],[-96.92083825399993,36.99261071100011],[-96.96018692599995,36.89551763100019],[-96.89103572599998,36.75093803900012],[-96.91712584199996,36.63777315300018],[-96.83459223999995,36.55948755999998],[-96.73688888199996,36.57312164400008],[-96.64015471599998,36.46439720100011],[-96.54589433599995,36.44262701800017],[-96.4798861679999,36.61485017200005],[-96.394325601,36.59836360800017],[-96.38400694999996,36.70371086800009],[-96.32928332999984,36.83319760699999],[-96.35690984499996,36.87739972800006],[-96.3460396029999,37.04380870400007],[-96.24708061899992,37.10748992100014],[-96.20104398399997,37.19475135900018],[-96.23485158699998,37.27989604600015],[-96.15578824299996,37.432811604000165],[-96.10036768599986,37.43945213100011],[-96.09246135899991,37.60852193800008],[-96.0509399909999,37.69232725600017],[-95.96154120099993,37.7587186830001],[-95.87537361199998,37.82448936800006],[-95.88042556799991,37.98560397100016],[-96.0102832639999,38.04342962200013],[-96.0870210519999,38.15887637700013],[-96.10806104199992,38.54354741300011],[-96.05153390599992,38.626628635000145],[-96.13761311099995,38.7589739070001],[-96.1040909859999,38.81583514000005],[-95.97862882599998,38.852074729000094],[-95.90649350899992,38.95668723800003],[-95.95195468999998,39.075905139000156],[-95.86028401799996,39.30549734400006],[-95.91121049099996,39.39661635500016],[-96.17419201599995,39.52029830200013],[-96.307398359,39.54645275100012],[-96.46979230899996,39.651742487000035],[-96.57187993799988,39.62514879100007],[-96.687820693,39.68589870500017]]]},"properties":{"objectid":271,"eco_name":"Flint Hills tallgrass prairie","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Nearctic","eco_biome_":"NE08","nnh":4,"eco_id":392,"shape_leng":9.46111589042,"shape_area":2.87363603356,"nnh_name":"Nature Imperiled","color":"#A87001","color_bio":"#FEFF73","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":27976.66771225605,"percentage":0.2640479616777304}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[19.587980270000116,-34.151393889999895],[19.4801712040001,-34.16359710699993],[19.43087768600003,-34.22402572599998],[19.583246231000032,-34.22888183599997],[19.587980270000116,-34.151393889999895]]],[[[22.690799557000105,-33.98134388599988],[22.78012,-34.02772],[22.97373962400013,-34.08644485499991],[22.97817294000015,-33.99740729999991],[22.88446946500011,-34.0258226229999],[22.690799557000105,-33.98134388599988]]],[[[23.651119569000173,-33.97648389099993],[23.38497955800017,-34.00674507599996],[23.316589599000054,-33.990472616999966],[23.217145023000057,-34.03488714799994],[23.27049,-34.09980999999988],[23.3751297,-34.09860992399996],[23.44815444900013,-34.00542068499993],[23.651119569000173,-33.97648389099993]]],[[[19.819160461000138,-33.83156204199997],[19.778207779000127,-33.84217452999991],[19.775678635000077,-33.846115111999836],[19.744827271000077,-33.85399627699991],[19.819160461000138,-33.83156204199997]]],[[[24.674650192000115,-33.80604553199993],[24.670642853000118,-33.80350875899984],[24.668481827,-33.80221939099994],[24.67627143900006,-33.80724334699994],[24.674650192000115,-33.80604553199993]]],[[[19.687379837000037,-33.797420501999966],[19.73718452500009,-33.77932739299996],[19.712127686000144,-33.77968597399996],[19.69519043000014,-33.78577804599996],[19.69171714800018,-33.78564071699998],[19.67958259600016,-33.78631591799996],[19.688570023000068,-33.79365158099995],[19.68829536400017,-33.795505523999964],[19.687379837000037,-33.797420501999966]]],[[[20.870609283000135,-33.80113983199993],[20.879774094000027,-33.76154327399985],[20.599855423000065,-33.74577331499995],[20.55946922300018,-33.7567863459999],[20.77602767899998,-33.81748199499992],[20.870609283000135,-33.80113983199993]]],[[[20.483644485000127,-33.74792480499997],[20.350103378000085,-33.78934478799994],[20.472345352000048,-33.848407744999975],[20.483644485000127,-33.74792480499997]]],[[[22.646211624000102,-33.72903823899986],[22.619935989000055,-33.72756957999991],[22.614183426000068,-33.72750854499992],[22.651163101000066,-33.738937377999946],[22.661705017000145,-33.73928451499995],[22.668048859000123,-33.7340164179999],[22.646211624000102,-33.72903823899986]]],[[[24.236047745000178,-33.68054962199989],[24.235738754000067,-33.67905807499994],[24.23053932200014,-33.67693710299994],[24.230182648000095,-33.67849731399997],[24.236047745000178,-33.68054962199989]]],[[[21.994020462000094,-33.69606780999993],[21.75108337400013,-33.673732757999915],[21.72102356000005,-33.73758697499994],[21.74225044300016,-33.74095916699997],[21.942792892000057,-33.76021194499998],[22.028450012000064,-33.725040435999915],[22.0071544650001,-33.69773483299991],[22.00679779100011,-33.70055770899995],[21.994020462000094,-33.69606780999993]]],[[[21.661785126000098,-33.7243423459999],[21.62049102800006,-33.65810775799997],[21.517396927,-33.58380889899996],[21.302585602000022,-33.60488510099998],[21.33304786700012,-33.655792235999854],[21.40810203600006,-33.71520233199993],[21.502559662000124,-33.728500365999935],[21.510078430000135,-33.729339599999946],[21.557064056000172,-33.72766113299997],[21.661785126000098,-33.7243423459999]]],[[[18.80272483800013,-33.53532409699994],[18.683815002000017,-33.60621643099989],[18.679250717000116,-33.67340850799991],[18.79368400600015,-33.6780700679999],[18.85865020800003,-33.63719558699995],[18.80272483800013,-33.53532409699994]]],[[[25.26632118200007,-33.83009338399995],[25.29706955000006,-33.70845413199987],[25.456968307000125,-33.68552780199991],[25.338373184000034,-33.606113433999894],[24.953151703000117,-33.55442810099993],[24.855646133000107,-33.556060790999936],[24.677848816000107,-33.520904540999936],[24.72214317300012,-33.68162536599988],[24.85407447800003,-33.710380553999926],[24.917877197000053,-33.80202865599995],[24.910839081000177,-33.86886215199996],[25.102504730000135,-33.8885345459999],[25.30413818400018,-33.93368530299995],[25.368154526000183,-33.99442291299988],[25.573287964000087,-34.00666427599998],[25.66413116500007,-33.99034881599994],[25.520879745000173,-33.89468765299989],[25.39438056900019,-33.86073684699994],[25.26632118200007,-33.83009338399995]]],[[[20.32267570500011,-33.52207183799982],[20.376798630000167,-33.511344909999934],[20.36749267600004,-33.51130294799998],[20.332162857000128,-33.51291274999994],[20.325082779000127,-33.51512908899991],[20.323362349999968,-33.520290374999945],[20.32267570500011,-33.52207183799982]]],[[[23.046264648000033,-33.58098220799985],[23.050306320000118,-33.54172515899995],[23.084615707000182,-33.50732803299991],[22.962385178000034,-33.5651893619999],[22.651762009000095,-33.58102798499982],[22.491315842000063,-33.55419540399993],[22.518188477000137,-33.63574218799994],[22.555242538000073,-33.677425384999935],[22.563642502000164,-33.69082260099998],[22.83603477500003,-33.69099426299988],[23.05743598900017,-33.62929153399989],[23.046264648000033,-33.58098220799985]]],[[[20.319849014000056,-33.48052978499993],[20.31930160500019,-33.47883605999988],[20.28275108300005,-33.49461364699988],[20.32238578800019,-33.48599243199993],[20.319849014000056,-33.48052978499993]]],[[[21.31836319000007,-33.52822112999996],[21.191490172999977,-33.507404326999904],[21.281480789000057,-33.532798766999974],[21.285301208000078,-33.53361511199995],[21.31836319000007,-33.52822112999996]]],[[[20.736322403000145,-33.55089569099994],[20.736703873000067,-33.47013091999992],[20.496994019000113,-33.49652099599996],[20.45893859900019,-33.52854537999997],[20.736322403000145,-33.55089569099994]]],[[[20.314420700000028,-33.47214126599988],[20.29547500600006,-33.45869827299998],[20.234178543000155,-33.47216415399993],[20.23974990800008,-33.475955962999876],[20.234567642000115,-33.47930908199993],[20.317752838,-33.47619628899997],[20.314420700000028,-33.47214126599988]]],[[[20.11509132400016,-33.45665740999988],[20.121360779000156,-33.48018646199995],[20.118236541999977,-33.45592880199996],[20.11509132400016,-33.45665740999988]]],[[[20.170351028000027,-33.44246292099996],[20.167444229000125,-33.441783904999966],[20.15860366800007,-33.440696715999934],[20.125602722,-33.48181533799993],[20.128400803000147,-33.48220825199991],[20.180768967000063,-33.44243240399982],[20.170351028000027,-33.44246292099996]]],[[[20.329183578000084,-33.476348876999964],[20.378231049000078,-33.449626922999926],[20.356002808000085,-33.45581436199984],[20.32709884600007,-33.47032546999992],[20.329183578000084,-33.476348876999964]]],[[[22.261775970000087,-33.41794204699994],[22.18795585600003,-33.40143203699989],[21.975532532000045,-33.41795730599995],[21.93160438500007,-33.481880187999934],[21.821697235000045,-33.49881744399988],[22.046663284000147,-33.48831939699983],[22.24868774400005,-33.45969390899995],[22.261775970000087,-33.41794204699994]]],[[[20.74259758000005,-33.406276702999946],[20.600009918000126,-33.438728332999915],[20.59092521700012,-33.44076919599996],[20.744588852000106,-33.41492080699987],[20.7440338130001,-33.41341781599988],[20.740804672000024,-33.40655517599998],[20.74259758000005,-33.406276702999946]]],[[[20.155744553000034,-33.38740920999987],[20.130292892000114,-33.37963104199997],[20.121870040999966,-33.382392882999966],[20.155744553000034,-33.38740920999987]]],[[[20.11631393400006,-33.37821960399998],[20.09727287300018,-33.37921523999995],[20.098608017000117,-33.37988281299994],[20.113155365000125,-33.38054656999998],[20.11631393400006,-33.37821960399998]]],[[[23.748241425,-33.3746032709999],[23.751535415999967,-33.390579223999964],[23.751932144000136,-33.389038085999914],[23.752655029000152,-33.38434600799991],[23.748241425,-33.3746032709999]]],[[[23.72361564600004,-33.330223082999964],[23.730663300000174,-33.34618377699991],[23.731290817000115,-33.344676970999956],[23.737440109000033,-33.33428573599991],[23.72361564600004,-33.330223082999964]]],[[[21.01371002200017,-33.36808395399987],[21.252571106,-33.34820175199991],[21.49805831900005,-33.30262756299993],[21.500654221000104,-33.29974365199996],[21.253408432000015,-33.34577941899994],[21.175699234000035,-33.3365707399999],[21.00111961400006,-33.36275863599997],[20.99678039600002,-33.36505889899996],[20.993143082000188,-33.367259978999925],[21.01371002200017,-33.36808395399987]]],[[[24.490610123000124,-33.296627044999866],[24.480827332000104,-33.29525375399993],[24.49816513100012,-33.301841735999915],[24.50666236900014,-33.29693603499993],[24.490610123000124,-33.296627044999866]]],[[[22.956052780000107,-33.41547775299995],[22.725576401000012,-33.383041381999874],[22.519594193000046,-33.39069747899998],[22.397397995000176,-33.29932022099996],[22.0241661070001,-33.28862762499995],[21.680961609000065,-33.30394363399995],[21.508626938000134,-33.34086227399996],[21.286426544000108,-33.38030624399988],[21.12646102900004,-33.39052963299997],[21.113910675000056,-33.45953750599995],[21.20531463600014,-33.47527313199987],[21.417427063000048,-33.45413207999991],[21.41609191900011,-33.50993728599997],[21.513328552000075,-33.56675720199996],[21.606601715000068,-33.514198302999944],[21.511993408000137,-33.473060607999855],[21.496410370000035,-33.46849822999991],[21.49312210100004,-33.46449279799998],[21.569126129000153,-33.46725845299994],[21.5698471070001,-33.464859008999895],[21.56402587900004,-33.45589828499993],[21.561912537000126,-33.453716277999945],[21.614963531000058,-33.42504882799989],[21.61582756000007,-33.4235610959999],[21.66947174100011,-33.44020080599989],[21.674648285000103,-33.43941116299993],[21.681882858000165,-33.438774108999894],[21.85333633400012,-33.432014464999895],[21.99405479400008,-33.38727188099989],[22.19179916400003,-33.35835647599998],[22.298444748000065,-33.412212371999885],[22.273843765000038,-33.43687820399998],[22.4065418240001,-33.43157195999987],[22.642753601000095,-33.47464370699993],[22.913816452000106,-33.460594176999905],[23.010395050000113,-33.43757247899998],[23.09293174700008,-33.40649795499996],[23.317108154000096,-33.40645599399994],[23.24918746900005,-33.36755752599993],[23.09763336200018,-33.37733459499998],[22.956052780000107,-33.41547775299995]],[[21.751682281,-33.34857559199992],[21.75631523100003,-33.36164855999988],[21.56378746000013,-33.389324187999875],[21.522659302000136,-33.365833281999926],[21.620159149000074,-33.345989226999905],[21.629728317000115,-33.3476219179999],[21.751682281,-33.34857559199992]]],[[[24.73090934800007,-33.294841765999934],[24.617046356000117,-33.27310180699993],[24.617908478,-33.27744674699994],[24.834619522000082,-33.315895080999894],[24.83194351200018,-33.314559936999956],[24.7473888400001,-33.29702758799988],[24.73090934800007,-33.294841765999934]]],[[[26.365535736000027,-33.41809463499993],[26.316923141000075,-33.34236144999994],[26.494970321999972,-33.38272094699994],[26.55860137900015,-33.349666594999974],[26.358182907000128,-33.27828216599988],[26.317213058000164,-33.33789062499994],[26.205894470000032,-33.40809631299993],[26.365535736000027,-33.41809463499993]]],[[[20.155744553000034,-33.38740920999987],[20.16276931800013,-33.42663192699996],[20.169487000000117,-33.42686080899989],[20.198017120000145,-33.44301223799994],[20.386703491000162,-33.439334868999936],[20.492452621000098,-33.371452331999876],[20.484617233000165,-33.315017699999885],[20.302440643000068,-33.31336975099998],[20.275075912000148,-33.26364135699998],[20.279531479000127,-33.35449600199996],[20.149749756000062,-33.358337401999904],[20.163961411000116,-33.370552062999934],[20.155744553000034,-33.38740920999987]]],[[[20.78550148000005,-33.26464462299987],[20.71726989700005,-33.256114959999934],[20.45251274100019,-33.2762794489999],[20.541706084999987,-33.33681106599988],[20.58207511900008,-33.42125320399998],[20.58289909400014,-33.42250060999993],[20.638706207000098,-33.33163070699993],[20.85010910000011,-33.32394027699996],[20.90144920300014,-33.34212112399996],[20.918243408000137,-33.313533782999855],[20.773200989000088,-33.29565048199987],[20.76046562200014,-33.28980255099998],[20.760581970000032,-33.287925719999976],[20.789224624999974,-33.265827178999984],[20.78550148000005,-33.26464462299987]]],[[[24.612560272000167,-33.27236556999992],[24.50149917600004,-33.24544525099998],[24.501014709000174,-33.24581909199992],[24.609500885000102,-33.274936675999925],[24.612560272000167,-33.27236556999992]]],[[[21.56135749800012,-33.255542754999965],[21.31609535200016,-33.290473937999934],[21.063508986999977,-33.29467391999998],[21.065553665000095,-33.29642486599994],[21.113082886000086,-33.30605697599992],[21.03425788900006,-33.32373809799992],[21.038331985000184,-33.33382034299996],[21.015203476000067,-33.34124374399994],[21.012434006000092,-33.35421371499996],[21.170175552000046,-33.32840347299998],[21.28166008000005,-33.335266112999875],[21.52472305300006,-33.28511810299989],[21.49616432200014,-33.28579330399998],[21.52314186100017,-33.274475097999925],[21.556921005000163,-33.26987457299998],[21.597351074000187,-33.2614517209999],[21.56135749800012,-33.255542754999965]]],[[[22.807653427000105,-33.303833007999856],[22.55550766000016,-33.28293228099989],[22.318607330000134,-33.233516692999956],[22.121559143000184,-33.25371169999988],[22.324373245000174,-33.23751449599996],[22.491939545000037,-33.26835632299992],[22.619468689000087,-33.29835891699997],[22.807653427000105,-33.303833007999856]]],[[[25.456676483000138,-33.326148986999954],[25.797784805000106,-33.36700057999997],[25.83837318400009,-33.26713180499996],[25.72458457900018,-33.240028380999945],[25.443073273000095,-33.23091125499997],[25.261152267000057,-33.280052184999874],[25.456676483000138,-33.326148986999954]]],[[[19.75063133200007,-33.22296142599987],[19.72104072600007,-33.22148132299998],[19.841878891000135,-33.28488922099996],[19.90770530700013,-33.231685637999874],[19.904930115000013,-33.22823333699995],[19.80847740200005,-33.229209899999944],[19.812635422000028,-33.23747253399995],[19.73875427200005,-33.24024200399998],[19.75798225400007,-33.22978210399987],[19.75063133200007,-33.22296142599987]]],[[[23.54040145900018,-33.173820495999905],[23.540307999000106,-33.169940947999976],[23.52957534800015,-33.1677780149999],[23.28031730700002,-33.21391296399992],[23.233463287000063,-33.252124785999854],[23.186830521000047,-33.2594604489999],[23.129583359000037,-33.26229858399989],[23.11517143200018,-33.26596450799991],[23.106410980000078,-33.267585753999924],[23.091894150000144,-33.271007537999935],[23.080059052000024,-33.27307891799995],[23.08231544500012,-33.28621673599997],[23.08695411700006,-33.28967285199991],[23.087944031000063,-33.292274474999886],[23.08748245200013,-33.29467391999998],[23.171007156000087,-33.28066635099998],[23.154291153000145,-33.27613067599998],[23.14007759100008,-33.27584075899995],[23.136953354000127,-33.26882934599996],[23.347698212000182,-33.25558853099983],[23.46594619800004,-33.23509597799989],[23.382722855000054,-33.20416259799998],[23.54040145900018,-33.173820495999905]]],[[[20.02206230200005,-33.172443389999955],[20.031904221,-33.15481948899992],[20.015367508000168,-33.163562774999946],[20.01811790500011,-33.167968749999886],[20.02206230200005,-33.172443389999955]]],[[[23.750398636000057,-33.10547637899998],[23.71754264800012,-33.09647369399988],[23.659788132000074,-33.100406646999886],[23.666730881000092,-33.114112853999984],[23.750398636000057,-33.10547637899998]]],[[[24.10127449000015,-33.1196327209999],[23.947362900000144,-33.100830077999944],[23.840955734000147,-33.13989639299996],[23.842914581000116,-33.14305877699985],[23.955286026000067,-33.17033386199989],[23.958671570000035,-33.17131805399998],[24.187868117999983,-33.20354461699992],[24.280303955000136,-33.14144515999993],[24.280012130999978,-33.1402664179999],[24.249271393000072,-33.13399505599989],[24.227460861000054,-33.13163757299998],[24.20794677700013,-33.12941360499997],[24.17358207700005,-33.12770843499993],[24.148872375000167,-33.12538528399995],[24.10127449000015,-33.1196327209999]]],[[[23.490203857000097,-33.076190947999976],[23.44884109500009,-33.07607650799986],[23.44812202500009,-33.08309555099993],[23.490203857000097,-33.076190947999976]]],[[[23.796806334999985,-33.09440994299996],[23.714302063000105,-33.05720138499987],[23.648973465000097,-33.09937667799994],[23.796806334999985,-33.09440994299996]]],[[[17.965789374000053,-33.02988798799993],[17.960308141000155,-33.02680986699988],[17.962514877000103,-33.02991485599995],[17.96430778500013,-33.030910491999975],[17.965789374000053,-33.02988798799993]]],[[[19.329925537000122,-32.26854705799991],[19.263145447000056,-32.330898284999876],[19.27190589900016,-32.38610839799992],[19.385868073000154,-32.5574913019999],[19.47342872600018,-32.5211257929999],[19.329925537000122,-32.26854705799991]]],[[[18.487472534000062,-31.769893645999957],[18.393541336000112,-31.671115874999884],[18.313945769999975,-31.720170974999917],[18.316659927000103,-31.86650848399995],[18.413858414000174,-31.94471359299996],[18.38426017800009,-32.00796127299992],[18.433988571000157,-32.11434173599997],[18.441696166999975,-32.220664977999945],[18.401597977000108,-32.32061767599998],[18.377857208000023,-32.323238372999924],[18.376594543000067,-32.32386398299997],[18.315616608000028,-32.31692123399995],[18.336952209000117,-32.46677780199997],[18.317098618000102,-32.56995773299997],[18.24931716900005,-32.676956176999965],[18.137210000000152,-32.77397],[18.01478795600002,-32.740006294999944],[17.89493000000016,-32.74866999999989],[17.88055,-32.85366999999985],[17.896570000000168,-33.02917],[17.933557510000014,-33.031562804999965],[17.94927414200015,-33.01585126899994],[17.970561981000174,-32.995162963999974],[17.97130012500014,-32.995025634999934],[18.04146766700012,-33.04628372199994],[17.95211968000001,-33.10585031999989],[18.043333054000016,-33.170028686999956],[18.14232063300011,-33.28684997599993],[18.158923128000083,-33.36426527699996],[18.290670395,-33.45935058599997],[18.421533585000077,-33.65993499799998],[18.48938,-33.87027],[18.434949875000086,-33.91672134399994],[18.381744566000123,-33.91921601299998],[18.31137657200003,-34.043533324999885],[18.318794250000053,-34.14519119299996],[18.387742996000156,-34.27558517499995],[18.47477000000015,-34.233851],[18.42641,-34.17718999999988],[18.501905441000133,-34.097305297999924],[18.71484756500007,-34.07220077499994],[18.813380000000166,-34.10133],[18.85277,-34.2381],[18.81286031200017,-34.31164248099992],[18.83348655700013,-34.38411712599998],[18.842195696000147,-34.37814107599996],[18.844329372000118,-34.378815647999886],[18.855297089000146,-34.38448333699989],[18.856773673000134,-34.38868803399998],[18.86093711899997,-34.38742828399995],[18.856697082999972,-34.37488555899989],[18.85853576700009,-34.37248229999989],[18.869842529000152,-34.36845397899992],[18.884986877000188,-34.37392806999998],[18.905261993000124,-34.359161376999964],[18.977861404000066,-34.35710525499991],[19.05035400400004,-34.343105315999935],[19.059183121000046,-34.345798491999915],[19.05945396400017,-34.34586715699993],[19.090400696000074,-34.36164855999988],[19.142671585000187,-34.42348098799994],[19.294921875000057,-34.41645049999988],[19.35774000000015,-34.48547999999988],[19.404449463000162,-34.60610580399998],[19.517034531000093,-34.66960906999998],[19.645610000000147,-34.78053],[19.87246322599998,-34.765609740999935],[19.987108231000093,-34.832206725999924],[20.057750702000078,-34.75680541999992],[20.234070000000145,-34.68734],[20.270551682000075,-34.63249206499995],[20.39934349100008,-34.57089233399995],[20.454811096000185,-34.503444671999944],[20.61651,-34.45197999999982],[20.84599304200009,-34.47380065899995],[20.880666733000112,-34.38052368199993],[21.005050659000176,-34.36195754999994],[21.00149465200019,-34.365011736999975],[21.001605948000133,-34.365185065999924],[21.010292053000057,-34.36653137199994],[21.011071061,-34.36660983799993],[21.032493591000105,-34.36986923199987],[21.05578613300014,-34.37094116199995],[21.073862076000125,-34.37297058099989],[21.29937,-34.438832577999904],[21.422580719000166,-34.376869201999966],[21.512685776000012,-34.35795593299997],[21.695762634000175,-34.394611358999896],[21.88040351900014,-34.34442138699984],[21.88695037600013,-34.34332242499994],[21.951416016000167,-34.228046416999916],[22.090095520000034,-34.20862197899993],[22.121562958000027,-34.11615371699992],[22.249368668000045,-34.05342483499993],[22.250579487000152,-33.93951684799998],[22.384000443000104,-33.901016083999934],[22.423000600000137,-33.9480157619999],[22.598070562000032,-33.93288692999994],[22.87815051600012,-33.8580871609999],[23.098524497000085,-33.916457393999906],[23.160150596000108,-33.906585690999975],[23.30392051900003,-33.94480381699998],[23.382428983000068,-33.92450109499987],[23.53700046000006,-33.968705987999954],[23.70798449600011,-33.934550402999946],[23.92283052800019,-33.91913541199989],[23.94687452000005,-33.970842450999896],[24.310927844000105,-34.02781578299988],[24.490745037000124,-34.08720489199993],[24.454837799000074,-34.146434783999894],[24.60833740200019,-34.17760086099997],[24.796035766999978,-34.14691543599997],[24.742523193000125,-34.11966705299989],[24.722419739000088,-34.11079025299995],[24.695186615000125,-34.09721374499992],[24.68908500700013,-34.09460449199992],[24.585319519000052,-34.018672942999956],[24.61787414600019,-33.98593521099997],[24.86187553400015,-34.03425979599996],[24.86712837200008,-34.03566360499997],[24.880847931000062,-34.03841018699984],[24.881088257000044,-34.03655242899998],[24.91103172300012,-34.043201446999944],[24.91890525800011,-34.0403518679999],[24.909149170000035,-34.03139877299998],[24.914152145000173,-34.0182495119999],[24.911218643000097,-34.01562118499987],[24.91032409700017,-34.014823913999976],[24.907432556000117,-34.01225280799997],[24.904352188000132,-34.00940322899993],[24.903152466,-34.00818633999995],[24.900592804000155,-34.00534820599995],[24.89700126600019,-34.00074768099989],[24.884754181000176,-33.985382079999965],[24.875875473000065,-33.97913742099985],[24.879081726000038,-33.96917343099983],[24.86909675600009,-33.95788955699993],[24.856163025000114,-33.93904113799988],[24.851247787000034,-33.934055327999886],[24.840824127000133,-33.92236328099989],[24.780401230000052,-33.86438369799998],[24.76682472200008,-33.85438919099994],[24.715726852000103,-33.83044815099993],[24.715154648,-33.8301849369999],[24.70507621800016,-33.82450103799994],[24.69855690000003,-33.8203811649999],[24.694437027000106,-33.81774902299992],[24.589143753000087,-33.77654266399992],[24.49196052600007,-33.6943244929999],[24.41142845200011,-33.703956603999984],[24.334825516000137,-33.805103301999964],[24.22220802300012,-33.862663268999825],[23.898252487000036,-33.757900237999934],[23.889308929000094,-33.74784851099997],[23.902320862000124,-33.75227355999988],[23.913433075000057,-33.766662597999925],[24.251775742000063,-33.8585166929999],[24.33266830399998,-33.795242309999935],[24.354848862000097,-33.65906143199987],[24.26275062600007,-33.66664123499993],[24.24222564700011,-33.6812820429999],[24.242624283000055,-33.68289565999993],[24.2268943790001,-33.67734527599998],[24.22735214200003,-33.675796508999895],[24.18732070900012,-33.66180801399997],[24.18914604200006,-33.66410827599992],[24.181680679000067,-33.66114807099996],[24.18228912400008,-33.659713744999976],[24.152837753000142,-33.649307250999925],[24.15341758700015,-33.65106964099988],[24.1487045290001,-33.64888381999998],[24.14341354400011,-33.64511871299993],[24.113418579000154,-33.63262557999997],[24.112440109000033,-33.63420867899998],[24.116369247000023,-33.64416503899997],[23.93227195700001,-33.55270004299996],[23.906766891000018,-33.575027465999824],[23.903484344000162,-33.57958221399991],[23.869585037000093,-33.587635039999896],[23.86901092500017,-33.592380523999964],[23.865892410000185,-33.58809280399993],[23.85606765700004,-33.58581542999997],[23.867923737000126,-33.57634353599991],[23.722484588999976,-33.5511054989999],[23.725109100000168,-33.56579208399995],[23.72185897800017,-33.57296371499996],[23.716894150000087,-33.57447433499988],[23.718702316000133,-33.56210327099984],[23.757741928000144,-33.50834655799997],[23.933725357000185,-33.512134551999964],[23.994297028,-33.54283523599997],[24.45343017600004,-33.648399352999945],[24.466756821000047,-33.69223403899997],[24.646986008,-33.64080810499996],[24.657491684000092,-33.58325195299989],[24.395618439000145,-33.57910156299994],[24.293264389000115,-33.54623413099989],[24.26692581200018,-33.52387237499994],[24.021545409999987,-33.49978256199989],[23.83847236600019,-33.44935607899998],[23.696794510000075,-33.47175598099989],[23.563837051000178,-33.42215347299998],[23.407236099000045,-33.39937210099998],[23.305482864000112,-33.41811752299998],[23.328634262000037,-33.4583969119999],[23.412158966000163,-33.51306915299995],[23.18855285600017,-33.57164001499996],[23.021074295000062,-33.6704521179999],[23.11763763400012,-33.65747451799996],[23.11783599900008,-33.66284942599998],[23.09353065500011,-33.671550750999984],[23.045572281000034,-33.696006774999944],[22.987110138000105,-33.7066993709999],[22.897859573000062,-33.71595382699985],[22.88418769800012,-33.71760940599995],[22.850475311000082,-33.72426986699992],[22.819417953000084,-33.72957992599993],[22.784690857000157,-33.73011398299997],[22.76142692600007,-33.73184585599989],[22.70920181300005,-33.741798400999926],[22.69707679700008,-33.74362564099988],[22.657447815000126,-33.75077056899988],[22.647777557000097,-33.75068664599996],[22.633857727000134,-33.76929092399996],[22.347290039000086,-33.79757308999996],[22.321577072000025,-33.799808501999905],[22.25352859500009,-33.80940246599988],[22.239313126000127,-33.814281463999976],[22.213630676000037,-33.81789398199993],[22.203666687000066,-33.81996917699985],[22.19321441699998,-33.80830764799998],[22.156343460000073,-33.7871780399999],[22.15717506400017,-33.783512114999894],[22.02967834499998,-33.73684692399996],[21.863002777000133,-33.81042480499991],[21.716995239000084,-33.835494994999976],[21.650623322000115,-33.91616821299988],[21.353994370000123,-33.92144775399993],[21.24684333800002,-33.92138671899994],[21.051443100000085,-33.91545867899998],[20.94327163700018,-33.87715530399993],[20.767572403000088,-33.89655303999996],[20.66874694800009,-33.93301773099995],[20.53278923000005,-33.93957138099995],[20.476699828999983,-33.89953613299997],[20.391204834000177,-33.93310546899994],[20.245164870999986,-33.88346862799989],[20.176692963000107,-33.81724548299991],[20.092411041000048,-33.74995040899995],[19.96367073100015,-33.671314239999845],[19.92591667199997,-33.67176055899989],[19.831340790000127,-33.68700027499989],[19.72158241300002,-33.59280395499991],[19.69198417700011,-33.58248519899996],[19.841762543000073,-33.625267028999815],[19.97028732300015,-33.635761260999914],[20.003446579000126,-33.63574600199996],[20.055135727000163,-33.64438247699985],[20.108695984,-33.679023742999846],[20.123245239000084,-33.69421005199996],[20.128797531000146,-33.72749328599991],[20.199056625000082,-33.73662185699993],[20.310825348000037,-33.608882903999984],[20.220380783000167,-33.57684707599992],[20.104412079000042,-33.600090026999965],[20.012832642000035,-33.58437728899992],[19.925344467000173,-33.60967636099991],[19.73802948000008,-33.48151016199989],[19.72417068500016,-33.417026519999865],[19.772968292000087,-33.393249511999954],[19.709499359000176,-33.28489303599986],[19.596448898,-33.3414916989999],[19.5039043430001,-33.230300902999886],[19.69677162200003,-33.221939086999896],[19.727827072000082,-33.20215988199993],[19.71862220800017,-33.072147368999936],[19.660753250000027,-33.000057219999974],[19.71660041800004,-32.88457870499991],[19.67565727200008,-32.83563613899997],[19.628751755000167,-32.68989944499998],[19.43854522700002,-32.62646102899993],[19.445707321000043,-32.734745025999985],[19.43155860900015,-32.73780822799995],[19.36886215200002,-32.61193084699994],[19.337282181000035,-32.492229461999955],[19.270242691000192,-32.404502868999884],[19.17012786900017,-32.20737838699989],[19.193439484000123,-32.00443649299996],[19.150661469000113,-31.9255542759999],[19.050392151000096,-31.887716292999926],[18.95558929400005,-31.97097015399993],[18.830379486000027,-31.88113784799998],[18.64864540100001,-31.89979171799996],[18.556119919000025,-31.858144759999902],[18.487472534000062,-31.769893645999957]],[[20.39190864600016,-33.6730079649999],[20.382501602000048,-33.67013549799992],[20.41114425699999,-33.67787933299991],[20.402013779000015,-33.67538833599997],[20.39190864600016,-33.6730079649999]],[[23.06766700700007,-33.2823829649999],[22.939804077000133,-33.28049850499997],[22.984071732000075,-33.28049850499997],[23.001083374000018,-33.280845641999974],[23.06766700700007,-33.2823829649999]],[[19.931913376000182,-33.22156524699989],[20.023082733000024,-33.17675399799998],[20.0169830320001,-33.183895110999856],[20.016878128000087,-33.18836975099998],[19.98279190100004,-33.20733261099991],[19.97594261200004,-33.20534896899994],[19.963724136000053,-33.21009826699998],[19.959943771000155,-33.209606170999905],[19.94943237300015,-33.20854568499993],[19.93020439100013,-33.21623992899998],[19.931913376000182,-33.22156524699989]],[[18.928173065000124,-32.6062431339999],[19.030469894000078,-32.80984115599995],[19.027490616000136,-33.05262374899996],[18.965219498000124,-33.21561813399995],[19.022327423000092,-33.26913833599997],[19.02619171100008,-33.44196319599996],[19.065870285000187,-33.525913238999976],[19.053377151000177,-33.65601730299983],[18.980243683000083,-33.67157363899997],[18.960868835000156,-33.79265594499998],[18.851707458000078,-33.76792144799998],[18.875911713000164,-33.95158004799987],[18.747413635000044,-34.03956222499994],[18.71030998200007,-33.913600921999944],[18.790176391999978,-33.82848739599996],[18.718528748000097,-33.78367614699988],[18.632543564000116,-33.88981628399989],[18.55032157900007,-33.791477202999886],[18.53644943200004,-33.67099761999992],[18.63870430000003,-33.566249846999824],[18.62483024600016,-33.43966674799998],[18.52707290600017,-33.3995590209999],[18.533849716000077,-33.50791549699994],[18.451038361000087,-33.50860214199997],[18.271869659000174,-33.37261199999989],[18.232305527000108,-33.29109954799992],[18.359163284000147,-33.198799132999966],[18.40693664600019,-33.09579086299988],[18.496433258000025,-33.02252578699989],[18.494426727000018,-32.94817733799988],[18.59097290000011,-32.899085998999965],[18.74518013000005,-32.93801879899996],[18.786609650000116,-32.69702148399995],[18.790937424000106,-32.49096298199993],[18.928173065000124,-32.6062431339999]],[[19.177251816000137,-33.215602874999945],[19.2340755460001,-33.39138793899991],[19.151977539000143,-33.43774032599998],[19.078386307000187,-33.29583740199996],[19.177251816000137,-33.215602874999945]],[[19.298065185999974,-33.35313796999998],[19.32185173000005,-33.241413115999876],[19.524707794,-33.3085708619999],[19.48541068999998,-33.41297149699989],[19.399330139000085,-33.41696166999998],[19.298065185999974,-33.35313796999998]],[[19.468332291000138,-33.775554656999816],[19.53810882600004,-33.75908660899995],[19.51361846900005,-33.7194862369999],[19.509693146000075,-33.72186660799997],[19.50519752499997,-33.723789214999954],[19.413770676000183,-33.654754638999975],[19.433568954000123,-33.59359359699988],[19.45651817300012,-33.58302307099996],[19.464542389000087,-33.583786010999916],[19.567094803000145,-33.58819580099993],[19.78285217300015,-33.70026779199998],[19.881071090999967,-33.76791000399993],[20.046831131000147,-33.772857665999936],[20.078893661,-33.82268142699991],[20.088138580000134,-33.826858520999906],[20.168504715000154,-33.87217712399996],[20.23266601600011,-33.956340789999956],[20.519330978000085,-34.033863067999846],[20.620729446000098,-34.00278091399997],[20.766597748000038,-34.00402069099988],[20.81480217,-34.04996871899988],[21.055694580000136,-34.07222366299982],[21.133962631000088,-34.03551864599996],[21.27546882600012,-34.08455657999991],[21.44201088000011,-34.112869262999936],[21.50247383100003,-33.99037933299991],[21.63329315200008,-33.985713958999895],[21.613548279000042,-34.06015777599998],[21.679683685000043,-34.13642120399987],[21.64499855000014,-34.20027542099996],[21.527759552000077,-34.202831267999954],[21.33474922200014,-34.166858672999865],[21.16002655,-34.212158202999944],[21.082666397000025,-34.21102142299992],[20.93350791900002,-34.27900695799997],[20.6871623990001,-34.350528716999975],[20.527843475000168,-34.337020873999904],[20.42304992700008,-34.38059997599993],[20.253051758000026,-34.41186141999998],[20.182771683,-34.48376846299993],[20.078653336000116,-34.509494780999944],[20.210697174000188,-34.634471892999954],[20.048618317000034,-34.64038085899995],[20.061759949000077,-34.54511642499995],[19.936048508000056,-34.50093078599991],[19.89287376400017,-34.452430724999886],[19.76139068600014,-34.398029326999904],[19.525606155,-34.3786010739999],[19.35713386500015,-34.291389464999895],[19.194906235000076,-34.28451156599988],[19.227891922000026,-34.14578628499993],[19.378688812000064,-34.06895828199998],[19.58399772600012,-34.04954528799993],[19.7076969150001,-34.11915969799992],[20.021062851000067,-34.12154388399995],[19.994974136000167,-34.04531097399996],[19.835510254000155,-33.9725570679999],[19.81804466200009,-33.97377777099996],[19.807373047000056,-33.956008910999856],[19.809682846000157,-33.9469604489999],[19.81643104600016,-33.94168472299992],[19.821779251000123,-33.92950820899989],[19.82582473800005,-33.92343902599998],[19.816728592000118,-33.91226196299988],[19.82546806300013,-33.87562560999993],[19.71590995800011,-33.93676376299993],[19.58866119400011,-33.98754882799983],[19.51104545600009,-33.92110824599996],[19.498630524000134,-33.92229461699998],[19.46070480300017,-33.922744750999925],[19.427497863999974,-33.91891860999982],[19.42473411600014,-33.91947555499996],[19.400917053000114,-33.92023467999991],[19.371351242000117,-33.82860183699995],[19.426073074000044,-33.803829192999956],[19.468332291000138,-33.775554656999816]],[[21.940231323000148,-34.050651549999884],[21.881441116000076,-34.17904663099995],[21.79596138000005,-34.14345169099994],[21.7973728180001,-34.071136474999946],[21.74969291700006,-33.96952056899994],[21.940231323000148,-34.050651549999884]],[[19.167972565000184,-34.07712554899996],[19.303066254000044,-33.96437072799989],[19.285615921000158,-34.087318419999974],[19.167972565000184,-34.07712554899996]]],[[[19.111104965000152,-31.32670974699994],[19.11707687400019,-31.21979713399992],[19.03238868700015,-31.1849861149999],[18.980333328000086,-31.263977050999983],[18.98137092600018,-31.353981017999956],[19.116348267000035,-31.49926185599992],[19.057659149000074,-31.672698974999946],[18.977378844999976,-31.673156737999932],[18.99998855600012,-31.7612590789999],[19.001581192000117,-31.760313033999978],[19.003292084000066,-31.766551970999956],[18.96374702500009,-31.77587509199998],[18.964246750000143,-31.78181266799993],[18.906234741000162,-31.778650283999923],[18.840303420999987,-31.7090129849999],[18.76262092600018,-31.749979018999966],[18.74971008300014,-31.74774169899996],[18.68226051300013,-31.72644042999997],[18.646537781000063,-31.802591323999934],[18.680019379000157,-31.84319305399987],[18.778833389,-31.86822128299991],[18.871526718000155,-31.82824325599995],[19.137817383000026,-31.90587043799991],[19.216552734000118,-31.848934173999965],[19.213045120000118,-31.638952254999936],[19.19138526900008,-31.57276534999994],[19.111104965000152,-31.32670974699994]]]]},"properties":{"objectid":273,"eco_name":"Fynbos shrubland","biome_num":12,"biome_name":"Mediterranean Forests, Woodlands & Scrub","realm":"Afrotropic","eco_biome_":"AF12","nnh":3,"eco_id":89,"shape_leng":261.043544304,"shape_area":5.20432407433,"nnh_name":"Nature Could Recover","color":"#CD8966","color_bio":"#FE0000","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":53809.08596762345,"percentage":1.628903143517937}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-90.42221863299989,-1.22861345899986],[-90.4766535629999,-1.231690287999868],[-90.51042961499996,-1.312027141999863],[-90.4327625649999,-1.356542759999911],[-90.35252361099998,-1.270897310999885],[-90.42221863299989,-1.22861345899986]]],[[[-89.3256915209999,-0.690372563999915],[-89.41752650199999,-0.72599514999996],[-89.48265053699998,-0.815510354999958],[-89.60182963299997,-0.879910528999972],[-89.55424456299988,-0.951068192999969],[-89.40952262299999,-0.921235322999905],[-89.24066163999993,-0.717765628999928],[-89.3256915209999,-0.690372563999915]]],[[[-90.24758151299994,-0.477018761999943],[-90.48384054199994,-0.520359571999961],[-90.53037250999989,-0.562150231999965],[-90.53489655799996,-0.690286900999979],[-90.39535564,-0.769646927999929],[-90.23521451799996,-0.744467690999898],[-90.19742554499993,-0.697567253999978],[-90.16676353799994,-0.569181642999979],[-90.24758151299994,-0.477018761999943]]],[[[-91.46165459199989,-0.256378068999936],[-91.66187260999999,-0.302205621999917],[-91.60546860399995,-0.475843786999974],[-91.52056864199989,-0.497157289999905],[-91.38839759599995,-0.45136460599997],[-91.37963850699998,-0.347187439999914],[-91.46165459199989,-0.256378068999936]]],[[[-90.78679655299999,-0.141547671999945],[-90.82645452199995,-0.159877552999831],[-90.83225261999996,-0.325055192999912],[-90.59532957699992,-0.373673415999974],[-90.54622654399992,-0.300442906999933],[-90.6424635329999,-0.195976565999899],[-90.78679655299999,-0.141547671999945]]],[[[-91.35916151799984,0.165519328000187],[-91.38755052099998,0.127032143000122],[-91.48952458699989,0.099120070000026],[-91.5939555569999,-0.005768886999931],[-91.54712653499996,-0.051249595999934],[-91.46434752899995,-0.013602445999936],[-91.40802750999995,-0.043700183999931],[-91.39064763399989,-0.233384999999885],[-91.32056452999984,-0.339684127999931],[-91.22800451399996,-0.384202762999962],[-91.21417252999993,-0.47737650199997],[-91.0778576379999,-0.598126701999945],[-91.0923236299999,-0.635095923999927],[-91.32889563899994,-0.690981592999947],[-91.48919651999995,-0.845170054999869],[-91.50241863699995,-0.919360458999961],[-91.4194485239999,-1.010186929999975],[-91.30953260399991,-1.011699695999937],[-91.210906605,-1.041576318999944],[-91.0166776239999,-0.987303662999977],[-90.86003862899992,-0.914059072999976],[-90.82483664699998,-0.78887048799993],[-90.7813265229999,-0.761405337999975],[-90.8977045549999,-0.60480422899991],[-90.95433755399989,-0.605500932999917],[-90.94049852899997,-0.478826570999956],[-91.01316057799988,-0.362695134999967],[-91.10842861899988,-0.308013441999947],[-91.17464464799991,-0.220741736999969],[-91.1983035749999,-0.020189950999963],[-91.27082061699991,0.04322551700011],[-91.31032553199998,0.133345728000165],[-91.35916151799984,0.165519328000187]]],[[[-90.47323558999989,0.38811769900002],[-90.5394055189999,0.320367781000186],[-90.47727952299982,0.280700424000145],[-90.40151264999997,0.329596089000063],[-90.47323558999989,0.38811769900002]]]]},"properties":{"objectid":274,"eco_name":"Galápagos Islands xeric scrub","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Neotropic","eco_biome_":"NO13","nnh":1,"eco_id":601,"shape_leng":11.6906818383,"shape_area":0.648200808387,"nnh_name":"Half Protected","color":"#F5984B","color_bio":"#CC6767","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":8032.001180398078,"percentage":0.030444798641419142}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[17.54776914100006,-27.596926937999967],[17.509998742,-27.550130099999876],[17.431579738000096,-27.637891437999883],[17.447397700000067,-27.828319345999944],[17.515625995000107,-27.746229398999958],[17.54776914100006,-27.596926937999967]]],[[[22.386854172000085,-29.12234878499993],[22.26510810900004,-28.9881820679999],[22.181861877000188,-28.96786308299994],[22.056930542000032,-28.840639113999828],[21.886350632000074,-28.785953521999943],[21.823820114000057,-28.669527053999957],[21.77784919700008,-28.637405395999963],[21.766090393000013,-28.51821327199997],[21.71558380100015,-28.45536231999995],[21.545629501000064,-28.38177299499995],[21.41898727400013,-28.359767913999917],[21.320327759000122,-28.234056472999953],[21.262161255000137,-28.10892105099998],[20.882890701000065,-27.836305617999926],[20.844761327000015,-27.909699726999918],[20.770215988000075,-27.906032561999893],[20.63345035100008,-27.847961350999867],[20.650122299000145,-27.951716851999947],[20.733898163000106,-28.04235076899994],[20.650718689000144,-28.07390594499998],[20.48781013500019,-27.918140410999968],[20.430734900000118,-27.741489500999933],[20.278044675,-27.565646723999976],[20.113073349000103,-27.47088050799988],[20.075336456000116,-27.29619216899988],[20.17393684400008,-27.14210128799988],[20.13660812400002,-27.019042968999884],[20.25417137100004,-27.039724349999915],[20.345016479000094,-26.97114372299984],[20.30176544200009,-26.920383452999943],[20.285429001000125,-26.81946372999994],[20.197708130000137,-26.715896605999944],[20.028463364000174,-26.650806426999964],[19.999443054000096,-26.588373964999903],[19.80618905100016,-26.59117395199985],[19.729370820999975,-26.573879153999883],[19.642976997000176,-26.473411666999937],[19.42574570700009,-26.313082321999957],[19.347640037000133,-26.237481623999884],[19.4173430030001,-26.21162751999998],[19.62152577100005,-26.37983468999994],[19.729606179000086,-26.41243410899989],[19.56780941700015,-26.18733402499987],[19.439008213000136,-25.98127829599997],[19.184684807000053,-25.68348840099992],[19.049105175000022,-25.48864474499993],[18.861864906999983,-25.244560089999936],[18.332350501,-24.713711866999972],[18.294267468000044,-24.69568341099989],[18.138154016999977,-24.533113010999955],[18.018503853000084,-24.56072458699998],[18.000096135000092,-24.385851269999876],[17.880445970999972,-24.303016540999977],[17.76079580700008,-24.25699724699996],[17.71477651300006,-24.063716211999974],[17.482856055000127,-23.671462480999878],[17.36770489700018,-23.54488159999994],[17.31417722599997,-23.456874608999954],[17.199031594000132,-23.37550202899996],[17.040722408000022,-23.350144635999925],[16.832665583000107,-22.942987324999933],[16.74395755,-22.925245718999975],[16.411516799000026,-23.19643505199997],[16.291546582000024,-23.34217347299989],[16.234280233000106,-23.45872693599989],[16.249412819000042,-23.50255314599991],[16.167266167000037,-23.691784303999896],[16.15503194000007,-23.770793789999914],[16.172019778000163,-23.990433589999896],[16.269722832000127,-24.204725644999883],[16.254693256000053,-24.33823748899988],[16.212537515,-24.501232413999958],[16.233177722000107,-24.628764265999905],[16.342949547000046,-24.867883434999897],[16.397195062000094,-25.052559481999936],[16.447935969000127,-25.16446040199986],[16.46567959200013,-25.28416577099989],[16.519719653000095,-25.409086011999932],[16.667689176000067,-25.504386990999933],[16.742854836000106,-25.721541018999915],[16.713906324000106,-25.86976560399995],[16.792270685000062,-25.99649492899988],[16.75961848200012,-26.123865158999877],[16.802513176000105,-26.295920590999913],[16.794281551000154,-26.413121018999902],[16.754466080000157,-26.438135613999975],[16.79489821499999,-26.563844901999914],[16.67400364499997,-26.816756022999982],[16.739999221000176,-26.89457667499994],[16.87800353000017,-26.925493647999872],[17.02391233600008,-27.027453734999938],[17.05668561500005,-27.201976721999927],[16.99341959800006,-27.347972907999917],[17.07090501000016,-27.425309778999917],[17.093374693999976,-27.59344230699992],[17.055314606000024,-27.686796707999974],[17.148093617000143,-27.714530378999882],[17.167769684000064,-27.642219949999912],[17.158213701000136,-27.43720041499995],[17.21749863500014,-27.391260573999887],[17.305500233000146,-27.397171216999936],[17.377689572,-27.46241704199997],[17.50375011400007,-27.512638367999955],[17.55699080500017,-27.49210624299991],[17.56717229100002,-27.398709991999965],[17.660460361000105,-27.36758217599987],[17.726947865000113,-27.41311321099994],[17.602055530000143,-27.58735851299997],[17.600055989000168,-27.7303266429999],[17.682552332000057,-27.772405680999896],[17.64445950700008,-27.880987010999945],[17.57111400400015,-27.951015492999886],[17.41883141000011,-28.235083561999943],[17.214561462000063,-28.247920989999955],[17.18039703400018,-28.20472526599997],[17.191585541000165,-28.110885619999976],[17.080961227000103,-28.033761977999973],[16.91153144800012,-28.092170714999952],[16.91001892100013,-28.200849532999882],[16.986179352000136,-28.23352813699995],[17.047670364000112,-28.175823211999898],[17.078182220000087,-28.248836516999916],[17.064273834000062,-28.28768730199988],[17.054279327000074,-28.30198478699998],[17.10829925500002,-28.35819244399994],[17.16803169300016,-28.410615920999874],[17.175050735000013,-28.4325695039999],[17.18373489400011,-28.404680251999935],[17.23082542400016,-28.448263167999983],[17.249732971000014,-28.63282775899995],[17.320646286,-28.797243117999926],[17.415576935,-28.847602843999937],[17.417306900000085,-28.913064956999904],[17.54957199100005,-28.987670897999976],[17.639225006000174,-28.97584915199991],[17.655681610000045,-28.92299842799997],[17.833906174000163,-28.94904136699995],[17.937946320000094,-29.04242134099991],[17.961690903000147,-29.119529723999904],[17.888750076000065,-29.176557540999966],[18.020885468000074,-29.317434310999886],[18.08653068500007,-29.30192375199988],[18.119989395,-29.323404311999923],[18.08024978600008,-29.330240249999974],[18.02101707500003,-29.496221541999944],[18.057693481000115,-29.530395507999913],[18.053588867000144,-29.639217376999966],[18.055189133,-29.639932631999898],[18.13286972000003,-29.64540290799988],[18.203683852999973,-29.69586753799996],[18.22149276700003,-29.65262794499995],[18.33974838300003,-29.632534026999963],[18.463417053000057,-29.692045211999982],[18.36242866500004,-29.77983093299997],[18.474634171,-29.90462303199996],[18.46095085100012,-29.962093352999943],[18.33974838300003,-29.906921386999954],[18.297143936000168,-29.94771194499998],[18.381664276000095,-29.972570418999965],[18.56988525400004,-30.04878425599992],[18.517988205000165,-30.13985443099989],[18.540430068999967,-30.22169876099997],[18.51021003700015,-30.344402312999932],[18.618190765000122,-30.403772353999898],[18.680671692000033,-30.374532699999918],[18.70189094500006,-30.307817458999978],[18.775190353000028,-30.250844954999877],[18.732622147000086,-30.100572585999885],[18.810626984000123,-30.00657272299992],[19.022422791000167,-30.090570449999916],[19.060403824000048,-30.263977050999927],[19.16349029500003,-30.335201262999817],[19.275800705000165,-30.270101546999967],[19.274887085000046,-30.42692565899989],[19.357444763000103,-30.504793166999946],[19.548032761000172,-30.583332061999897],[19.74902534500012,-30.822336196999913],[19.891395569000167,-30.834007262999933],[19.871726990000184,-30.94219398499996],[19.97953033400006,-31.04286003099992],[20.015651703000174,-31.28724479699997],[20.015651703000174,-31.2899513239999],[20.048122406000118,-31.294460296999944],[20.254667282000128,-31.20967674299993],[20.34263229400011,-31.209890365999854],[20.470706940000184,-31.09726524399997],[20.652979307000123,-31.126287582999907],[20.752386092999984,-31.22529220599995],[20.81247711200001,-31.185714721999886],[20.818735123000124,-31.02611160299989],[20.86222076400003,-30.982383727999945],[21.007970810000074,-31.072179793999965],[21.064182281000114,-31.058618545999934],[21.171316147000027,-30.951286315999937],[21.214536667000118,-30.973285674999943],[21.3834781650001,-30.855901717999984],[21.57525444000015,-30.60846328699995],[21.657617569000024,-30.63348007199994],[21.76333236700009,-30.772523879999937],[21.604721069000107,-30.777999877999946],[21.579814911000085,-30.828771590999906],[21.778959274000158,-30.93729019199992],[21.871980667000116,-30.92093276999998],[21.924524307000127,-30.817594527999972],[22.043642044000137,-30.806777953999926],[22.00491333000008,-30.62748718299997],[22.092836380000108,-30.562101363999943],[22.045824051000068,-30.501735686999893],[22.095241547000114,-30.43264198299994],[22.017532349000078,-30.404823302999887],[22.02384567300004,-30.306367873999932],[22.24980163600003,-30.416301726999905],[22.269552231000034,-30.441080092999982],[22.466627120999988,-30.45542716999995],[22.489440918000184,-30.379625319999946],[22.579051971000183,-30.31824684099996],[22.602743149,-30.115837096999826],[22.67593002300009,-30.146589278999897],[22.78609848000019,-30.110971450999955],[22.881961823000097,-30.20894241299993],[23.04348754900019,-30.21031951899994],[22.975139618000185,-29.87329292299995],[22.904159546000074,-29.88190841699992],[22.86866569500006,-29.759092330999977],[22.729879379000067,-29.690643310999974],[22.640623092999988,-29.559926986999983],[22.72131347700008,-29.502674102999947],[22.676879883000026,-29.398677825999926],[22.60161018400015,-29.360525130999918],[22.51594734200006,-29.400253295999903],[22.405351639000116,-29.341302871999915],[22.384601593000127,-29.25931739799995],[22.313524246000043,-29.27251052899993],[22.292608261000055,-29.19066047699988],[22.386854172000085,-29.12234878499993]],[[18.01410947500011,-27.742149854999923],[17.94558435600004,-27.70663015199989],[17.936861406,-27.646888222999905],[18.03694561200018,-27.635199294999893],[18.01410947500011,-27.742149854999923]],[[18.163505554000153,-29.282649993999883],[18.103525162000153,-29.24650382999988],[18.131055832000072,-29.15443229699997],[18.187776566000025,-29.11662864699997],[18.223806381000145,-29.27428054799998],[18.163505554000153,-29.282649993999883]]]]},"properties":{"objectid":275,"eco_name":"Gariep Karoo","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Afrotropic","eco_biome_":"AF13","nnh":2,"eco_id":94,"shape_leng":70.9380413228,"shape_area":23.0419740659,"nnh_name":"Nature Could Reach Half Protected","color":"#C17D4C","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":252628.519219431,"percentage":0.9575726180775133}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[66.33546448300018,32.761840927000094],[66.25408156700013,32.664678911000124],[66.20660361800014,32.5254090630001],[66.28544648100006,32.43906573700019],[66.38881663800004,32.576379416000066],[66.37558748000004,32.71298717200011],[66.33546448300018,32.761840927000094]]],[[[63.202358526000125,34.15160406000007],[63.22206857100019,34.210227426000074],[63.12725063900018,34.23676889100011],[62.96978351100017,34.1889003440001],[62.81901151300002,34.188747123000155],[62.49057049300012,34.10068768600007],[62.41269657700019,34.06248783300015],[62.41935348500016,34.00239646099999],[62.66987951800019,34.044044294000116],[62.870628614000054,34.10486053300008],[62.956371628000056,34.07913932200006],[63.042545640000185,34.00618122500015],[63.15850457600004,34.04122512400005],[63.202358526000125,34.15160406000007]]],[[[69.34153750000013,34.08052719800014],[69.50199160200003,34.19161624900005],[69.42317153700009,34.29228642600009],[69.3426135690001,34.24674469600012],[69.31828358600006,34.1090332120001],[69.34153750000013,34.08052719800014]]],[[[68.0957794860002,34.29863420900011],[68.001914576,34.27367876900013],[67.91323052000001,34.177456532000065],[67.9576495770001,34.13748675600016],[68.05901360900009,34.174408704000086],[68.0957794860002,34.29863420900011]]],[[[62.99419060800017,34.60304297200014],[62.98492055800017,34.67832805300003],[62.82054154600007,34.642881990000035],[62.81349957400005,34.598007292000034],[62.99419060800017,34.60304297200014]]],[[[63.65876757100011,34.71666017300015],[63.30873862400006,34.68729970700019],[63.300472558000195,34.652365779000036],[63.531379574000084,34.58488156699997],[63.58374048500019,34.59701219300007],[63.65876757100011,34.71666017300015]]],[[[64.13227854900015,34.719979071000125],[64.03241756000006,34.80203874100016],[63.84136163200003,34.77911624800009],[63.78636159500002,34.700925329000086],[63.83704361100007,34.59549322400005],[63.963272558000085,34.605445896],[64.09406260200012,34.66583834700009],[64.13227854900015,34.719979071000125]]],[[[64.94999657100004,34.85825851300007],[64.76760853700006,34.80870671300016],[64.79114559200019,34.74870720600006],[64.91999857800016,34.737354421000134],[65.03833059900018,34.79690398800011],[64.94999657100004,34.85825851300007]]],[[[67.53027360100009,35.50134327100017],[67.51970653500007,35.58030549300008],[67.41711455500007,35.553328002],[67.33532763200009,35.678146108000135],[67.2371215660001,35.70302544000003],[67.17649056600004,35.655964574000166],[67.18823948000016,35.57511759800008],[67.12883760300014,35.51811193900005],[67.07660661100005,35.402868649000084],[67.07788049300012,35.33420242200003],[66.99166155500018,35.30546691100005],[67.00580551299998,35.42386816600009],[66.97097753200018,35.53180243700007],[66.86628756100009,35.52186988100016],[66.79404460800004,35.45253947200018],[66.60023455500004,35.39362273900019],[66.55165857600014,35.321594698000126],[66.44077253500018,35.24536045100007],[66.35112757800005,35.11326500900003],[66.45874048600012,34.997353849000035],[66.4779965670001,34.92847371600004],[66.3969425570001,34.90151617400011],[66.28348561900015,35.03565277700005],[66.12213850900008,35.16512350900018],[66.1302946030001,35.230129024000064],[66.27088963000006,35.29834128700003],[66.37556451300003,35.38132011700009],[66.45891550000005,35.5645507000001],[66.24215663400014,35.59002112400003],[66.10251664100014,35.47030709500012],[66.01122262800016,35.48276578800005],[65.86641653300012,35.36127060500013],[65.53229560000017,35.36306366100018],[65.432472497,35.29903128600017],[65.3207246290001,35.317269804000034],[65.28948963400018,35.2793517500001],[65.16390961400009,35.32243758300018],[65.05621355700009,35.32232761200004],[65.00550857500014,35.253020337000066],[65.08477053400009,35.19248572900017],[65.33870649300019,35.15663280900003],[65.58857756500015,35.212173311000015],[65.45322458100003,35.10134409900007],[65.40213755200017,35.020554287000095],[65.52069052000007,35.019963363000045],[65.59589362600019,34.97777322100012],[65.55744164500004,34.89640438700002],[65.42749750300015,34.81458544499998],[65.28029653100009,34.77954054000003],[65.41215560200004,34.72044795500017],[65.71524857399999,34.693646652000155],[65.94850151700012,34.72371773499998],[66.1647415430001,34.702508335000175],[66.17634561799997,34.63740810500019],[66.04756957800015,34.60436295400012],[65.81236247800007,34.57559291000018],[65.83374052200003,34.50399251400006],[66.0550306450001,34.51463535100004],[66.0768205760001,34.46884149400012],[65.85194350100005,34.44363023800008],[65.50521853200013,34.460326654000085],[65.11698956400016,34.46419557200011],[64.92987849500008,34.45299600900006],[64.68409762400006,34.39343454000016],[64.50373063500007,34.37123322500008],[64.03108953100008,34.36080848500012],[64.00556948600018,34.34107899300017],[64.030731624,34.27628084700012],[64.16573357400006,34.229536984000106],[64.37009460000019,34.23187486500018],[64.79262550100015,34.284749419000036],[64.79721861600012,34.18909413400013],[64.55879957100012,34.15724189600007],[64.36812552300006,34.14580227500011],[63.86522658700011,33.97292099500015],[63.5712014930001,33.911532942000065],[63.54953762600002,33.854215644000135],[63.37926060400008,33.80834467300002],[63.022777591000136,33.75849615400017],[62.8093605900001,33.68393241900014],[62.877967641000055,33.637000635000106],[63.1497575570001,33.70404664],[63.094787527,33.64018274],[62.96385549400003,33.59553703600011],[62.87862360900016,33.52962493500007],[62.96433661500015,33.489578883000036],[63.10825758100003,33.530806783000116],[63.37500360300004,33.653369151000106],[63.5044245470001,33.73944962000007],[63.80892953400013,33.78865440900012],[64.02217051600007,33.86463619400013],[64.18208348200017,33.89262035100012],[64.48136855500007,33.99876139700018],[64.78458356800007,34.029259621999984],[64.77252150600003,33.966856185000154],[64.700134552,33.913272690000156],[64.53781849400008,33.84645685200019],[64.44754757600009,33.836065136000116],[64.27207159500011,33.77408984600004],[63.60057050900002,33.58552720000006],[63.254104541000174,33.39599158200019],[63.26591849800002,33.343797135000045],[63.40785261700012,33.37199855100016],[63.592033540000045,33.50904048900003],[63.690158637000195,33.528555907000055],[64.11769856300009,33.67199977400003],[64.2275546360001,33.68371449000011],[64.53661351200003,33.78335537000004],[64.6102295880001,33.82699424000009],[64.81949654099998,33.876930769000126],[64.74324754200012,33.767227079000065],[64.57745349700008,33.65577308000019],[64.4183195440001,33.57771426000005],[64.25785052300012,33.539668465999966],[64.15409848700006,33.55128310200013],[64.06805456300003,33.521125182000105],[63.99478164100009,33.3872718880001],[63.91984558300004,33.31059809300007],[63.715412641,33.19224377600017],[63.61053458000015,33.09635966500019],[63.61667248000015,32.97359914900011],[63.69879149400015,32.918985853000095],[63.704357581000124,32.85920779600002],[63.80828848599998,32.846173266000164],[63.91229248200011,32.94915517300018],[63.96858953500009,33.13342242900006],[64.04144252300011,33.154097902000046],[64.12621357100016,33.09250382200008],[64.29649361100019,33.13837328400018],[64.36477661700008,33.26902351799998],[64.28251662000002,33.339379202000146],[64.45358254600006,33.42254494800005],[64.5390925430001,33.369591436000064],[64.57772054400004,33.28912986000006],[64.65473950600011,33.26138659800017],[64.70680956500013,33.30500652500018],[64.78762049900007,33.46514680900003],[64.89669755800014,33.526934847000064],[65.13795454799998,33.550387076000106],[65.20374259700014,33.59922876200005],[65.16655762500005,33.77002395300019],[65.19831850000014,33.803675953000095],[65.37134562400007,33.725126288000126],[65.41860162100005,33.764122086999976],[65.42877959800006,33.85647339400009],[65.54759961400003,33.89743826900013],[65.55364950400008,33.97948586900009],[65.45481161000015,34.038700160000076],[65.339614589,34.02662669900019],[65.20259058800013,34.04602007600016],[65.26850151600019,34.152161289000105],[65.25926952100008,34.241773893000186],[65.41108657400008,34.23340104200008],[65.48810553600015,34.20566063000007],[65.68981151000014,34.0545649230001],[65.76950061000014,33.94679493800004],[65.72433455700013,33.803382083000145],[65.53070857000012,33.58263225800016],[65.5027995150001,33.51772598500014],[65.55197949400008,33.3806840470001],[65.62885261000014,33.36868652600015],[65.75196851800013,33.418532028000186],[65.90898855500018,33.586683232000155],[65.99357553700008,33.847341645000085],[66.061035608,33.92637259900005],[66.08959962500006,34.04431502900019],[66.03074659500004,34.157787893000034],[66.25065655399999,34.10675232900013],[66.48783859800005,34.22159144300019],[66.51608259400018,34.196284969000146],[66.48892254500015,34.06697768400011],[66.31822156700008,33.90792805300015],[66.30570956500009,33.80539172900012],[66.42084456000009,33.78881819100019],[66.6280215700001,33.855798483000115],[66.70201147900013,33.910922907000156],[66.77522254200017,34.01612601800008],[66.74996149700002,34.104654505999974],[66.687080627,34.16342572900004],[66.61901052100018,34.29346525700004],[66.68714147999998,34.35249263100002],[66.86037463200012,34.286843386000044],[66.81036350300013,34.211855695000054],[66.87967664600006,34.159240980000106],[66.9910275470001,34.20256770800012],[67.07994059700019,34.326015540000185],[67.145370572,34.2903294190001],[67.28182259100004,34.333915316000116],[67.41912855900006,34.44344734500015],[67.53067056800012,34.4123052220001],[67.57457749100007,34.463966579000044],[67.66712158100006,34.45589095000008],[67.77899953700012,34.494955816000015],[67.94447356100005,34.46315772500009],[67.81275161700017,34.381220095],[67.65928651300015,34.3684794350001],[67.51979052200016,34.23826472500008],[67.3527225950001,34.19547594700015],[67.27995258800013,34.130406730000175],[66.99762762600005,34.04689397300007],[66.9170684840002,34.00135123700005],[66.98452754900018,33.919970669],[67.36219062600003,33.88531149900007],[67.42545354300012,33.83801895700003],[67.26541853600014,33.75273543900005],[67.06164558500012,33.77478789100019],[66.87268848600007,33.734814930000084],[66.65229757300011,33.64402735200014],[66.67817653200007,33.594213031000095],[66.77638259700012,33.569330513000125],[66.97406760500019,33.61132133300009],[67.02214854800013,33.541522542999985],[66.80812855300013,33.51561726600005],[66.50273156300011,33.546561408000116],[66.3465725160001,33.44435315100014],[66.16191063900015,33.413268193000135],[66.04821062600007,33.27238751100009],[66.07795749700011,33.11827901300012],[66.22170261000014,33.16092563299998],[66.37523661300003,33.28444186100006],[66.40018451000003,33.21307800200009],[66.47716558500008,33.17101140900013],[66.525184503,33.39338983900012],[66.6043095010001,33.435972589000016],[66.77655761100004,33.40749641400015],[66.8502885200001,33.421068895000076],[66.94075054500007,33.35699477700007],[66.85440856100007,33.27095722300004],[66.73783154200015,33.19720267800017],[66.6612925290001,33.11898778600005],[66.63391857400006,32.97677622600003],[66.56816053200004,32.94225820800017],[66.47197752200009,32.83407650400005],[66.44300061200005,32.69032485200012],[66.55241361800012,32.661901819000036],[66.61788952500012,32.727914],[66.89484353200015,32.796739651000166],[66.98740354800003,32.87603329300015],[67.00002250300008,32.948499205000076],[66.87067448200003,32.97844003400019],[66.87757161500008,33.039061310000136],[67.00511953799997,33.08204387700016],[67.03554551200017,33.155710748000104],[67.11799661700019,33.17130544700012],[67.16413161800011,33.102806355000155],[67.30375652300012,33.13515044300004],[67.37762455900008,33.293390715999976],[67.21833051300007,33.30411754100015],[67.14905559200008,33.37105542],[67.12023156800012,33.459344688000044],[67.34143854200016,33.51438127000006],[67.43984962900004,33.50240755400006],[67.44424459600015,33.393847658000084],[67.48774751200011,33.34665821400006],[67.58280952600006,33.34734418900007],[67.62467947900006,33.284285120000106],[67.7219466040001,33.23785842800015],[67.79588354000009,33.26433568700003],[67.90779854300007,33.40509332300019],[68.0079956460001,33.39323779100016],[68.01245850700013,33.56111373300007],[68.08631849700015,33.71935434200003],[68.01653261500007,33.717508480000106],[67.94831062800017,33.61550625000001],[67.8926006440002,33.616043362000084],[67.9237675780002,33.785724431000176],[68.08083354700017,33.89515319500009],[68.18363155500015,33.93503915100018],[68.2719265230001,34.019771811000055],[68.22600559500006,34.10117970400006],[68.12234458700004,34.15576617800019],[68.06888564700012,34.05046784900003],[67.92879454000013,34.05103714800015],[67.81018055200013,34.02297688300018],[67.80612153200002,34.201735720000045],[67.82580559300004,34.24603458200016],[68.04039757000015,34.369372108000164],[68.11108350000006,34.37844317100013],[68.21170858300013,34.31935175900014],[68.40789758800008,34.32973039900014],[68.51068151400017,34.28224255900011],[68.67150157000015,34.317451582],[68.49523953400006,34.46596583000019],[68.51522048300012,34.56613996700008],[68.66050753100006,34.5816805180001],[68.70567358400012,34.47730621000005],[68.80928061300017,34.481437315000164],[68.81482658300007,34.65511973700018],[68.85859654600006,34.8098964400001],[69.00595057200013,34.954477900000086],[68.94977555900016,34.98792387300011],[68.60488153300014,34.785605182000154],[68.48870064400012,34.810705629000154],[68.26280248600006,34.647928902],[68.23436755000012,34.747700372000054],[68.27166752200009,34.79461908100018],[68.46183060900006,34.89769050600012],[68.41601562900007,34.94902698100003],[68.25910958700013,34.911220071],[68.23769348900004,34.96849663300014],[68.45272048600009,35.04460146400015],[68.73943354300002,35.17997423000014],[68.91969257300008,35.232245957000146],[68.97206857200018,35.33174551800016],[69.4032365220001,35.44136974800006],[69.35214261900018,35.47426704200012],[69.34095764000011,35.56446369600019],[69.09925858800011,35.53798627000003],[68.91873150400005,35.44415857500019],[68.75035063700005,35.394060778000096],[68.68383755300005,35.39822289500012],[68.57679763100009,35.29073839800003],[68.38065355300006,35.38205319800011],[68.2706526410002,35.386085229],[68.11647759000016,35.29689926500009],[68.07790356900006,35.1582268790001],[67.98186456000019,35.034297926000136],[68.07981849800012,34.89481752500018],[67.96855158400018,34.80709671700015],[67.91369655300014,34.71316223700006],[67.73723553100007,34.68835582700018],[67.37252853000007,34.70527419500007],[67.27777061100016,34.76046383100015],[67.25831554400008,34.81643834800008],[67.31941961800015,34.91796079800008],[67.4494785920001,34.96970949500013],[67.5781555580001,34.95977677200011],[67.74623853300017,34.97971916300003],[67.80455763600014,35.03092186300012],[67.79220556100017,35.16042478200018],[67.47827948200012,35.11488187800012],[67.41857149700019,35.16241565100012],[67.42001352000005,35.252745243],[67.36941549100015,35.3137827650001],[67.24984764200019,35.33721940400011],[67.24675757000017,35.391437074000066],[67.35647550900006,35.41889820100016],[67.53027360100009,35.50134327100017]]]]},"properties":{"objectid":276,"eco_name":"Ghorat-Hazarajat alpine meadow","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Palearctic","eco_biome_":"PA10","nnh":4,"eco_id":752,"shape_leng":63.1071704144,"shape_area":6.50954678192,"nnh_name":"Nature Imperiled","color":"#BA3D4D","color_bio":"#D6C39D","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":66646.10528893958,"percentage":1.3647747414723115}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[128.7077789790003,-23.50638953899994],[128.48916620400007,-23.540424423999923],[128.48883059200034,-23.49331661899987],[128.5872954910002,-23.38825030099997],[128.44717404200014,-23.334075881999922],[128.50280758300016,-23.273708408999937],[128.4990845090001,-23.203237557999955],[128.56948847300032,-23.184232766999912],[128.58296204700014,-23.11692239599995],[128.44300840400012,-23.063440321999906],[128.3233185140001,-23.079768938999962],[128.14920040200013,-23.054922127999816],[127.90939331300001,-23.068891575999942],[127.8209000290002,-23.031393120999894],[127.84574130700003,-22.97004882099992],[127.78819267000017,-22.92597191199991],[127.65759256000001,-22.960803916999964],[127.50581356000009,-22.899429441999928],[127.40383144600014,-23.0088520029999],[127.2973175730001,-22.98877549999986],[127.27327727000022,-22.913715389999936],[127.49803917700001,-22.72023960699994],[126.81255322000015,-22.26196106199984],[126.7291946910002,-22.24283020699994],[126.56130215200005,-22.26320258899989],[126.23552708000011,-22.184503559999882],[126.13401787300006,-22.098300881999876],[125.84068294600013,-21.999271377999946],[125.84317019200023,-22.093275092999875],[125.6615982200002,-22.07835966399989],[125.5527649070001,-22.145317155999976],[125.33888237500003,-22.18793661899997],[125.19293969400007,-22.187168165999935],[125.14486696500023,-22.231029491999834],[125.06974767800034,-22.220439962999933],[124.91085059900001,-22.28396992799992],[124.84764870100014,-22.285085725999977],[124.47052005500007,-22.431575745999965],[124.44489289000012,-22.492742516999897],[124.57827763600017,-22.575386237999965],[124.60913108600016,-22.625869936999834],[124.54585274600015,-22.68402676599993],[124.602668805,-22.760961573999907],[124.7707672040001,-22.839397412999972],[124.78398898600005,-22.93256779799998],[124.69248961600022,-22.909646980999923],[124.49050905100012,-23.034959786999934],[124.60032639900021,-23.103109519999975],[124.54265588800013,-23.19205291299994],[124.403488132,-23.262142219999873],[124.47514351400002,-23.384971633999953],[124.38129419400002,-23.529189989999963],[124.45192715100018,-23.580858219999925],[124.41574867800011,-23.674610142999825],[124.34825893400034,-23.721931518999952],[124.36781307600017,-23.78017417799998],[124.24119571100016,-23.810173008999982],[124.33651739700008,-23.871780332999947],[124.36683658400023,-23.939001016999953],[124.24334717800025,-23.97417064499996],[124.26290886400022,-24.10301591999996],[124.13898460500002,-24.159664173999943],[124.19955458400011,-24.24284366699993],[124.34762576500009,-24.278051348999895],[124.44391639800017,-24.27916144799991],[124.48831936300019,-24.334535651999943],[124.39795691400013,-24.38146408399996],[124.36440281600028,-24.50302883799992],[124.29664619200025,-24.537296236999964],[124.12416841700019,-24.55130943899991],[123.9785308380001,-24.63426396099993],[123.94883744300023,-24.721353275999945],[124.0363922900001,-24.773931277999964],[124.05702970900018,-24.85548401099993],[123.92761999700008,-24.97736928899991],[123.94920356500018,-25.06502153199989],[124.05857080600003,-25.120408980999912],[124.06040962800012,-25.156598852999878],[123.9337310750002,-25.212161986999888],[123.92276000100014,-25.31310843199998],[124.03105167600017,-25.395492481999895],[124.11835473000008,-25.49132345099997],[124.12193296400005,-25.547182129999896],[124.18964382200022,-25.62156112699995],[124.23836514300024,-25.806690211999978],[124.41587826300008,-25.94207387399996],[124.47073362800006,-26.00215904399994],[124.4481506010003,-26.09193609999994],[124.50002284800007,-26.19694139799998],[124.66019447900021,-26.297113354999908],[124.71051791800005,-26.3062534849999],[124.81297310500008,-26.39981647999997],[124.87607576000005,-26.35560797499994],[124.95856475200003,-26.41653250899998],[125.14910133700005,-26.45153801899994],[125.21591952200015,-26.639968901999964],[125.45190429500019,-26.7380733789999],[125.43913262100023,-26.767860483999982],[125.58015445500007,-26.88368983599986],[125.61959080600013,-27.033603694999954],[125.6900405350001,-27.112766243999886],[125.71503436500007,-27.202753015999917],[125.78909300500004,-27.20619009899991],[125.86544040800004,-27.29973414999995],[125.97116856200034,-27.235498429999893],[125.92266081100001,-27.186080907999894],[126.00966647500002,-27.109638285999893],[126.16058348100012,-27.09123045299998],[126.21934514700001,-27.11483188099993],[126.34594725800002,-27.1041239999999],[126.33657830200002,-27.05541223399996],[126.40270229700002,-26.94177441399995],[126.58272546100011,-26.927337591999958],[126.603538565,-26.854124014999968],[126.55352777200005,-26.72564704099989],[126.69031523500007,-26.690017748999878],[126.7497332050001,-26.603822615999945],[126.84587866400011,-26.59191511699987],[126.96060160500008,-26.536851879999915],[127.06678774500006,-26.52819253599995],[127.16462701900014,-26.444026995999934],[127.22476197700018,-26.357976869999902],[127.19404599000006,-26.334978099999887],[127.01128395600006,-26.334150303999877],[126.85314946200003,-26.367151197999874],[126.64968094200003,-26.286756507999826],[126.58111580000025,-26.18807803899989],[126.50399022100032,-26.182769779999887],[126.5029602530002,-26.030387952999888],[126.53862776500011,-25.984540954999886],[126.49514764800006,-25.896383281999874],[126.5847625990001,-25.86388396199993],[126.69277197000008,-25.73791502099988],[126.88011169700007,-25.639057177999916],[126.88797761000012,-25.531400684999937],[126.81459052800017,-25.43969914299987],[126.88097386000004,-25.33850677199996],[126.91504663100011,-25.19382087499997],[127.00331092100032,-25.034341755999947],[127.26100163800004,-24.90984333699987],[127.30435183500015,-24.759532845999956],[127.2787094140001,-24.563835188999974],[127.37108620100014,-24.502885843999877],[127.44333653100023,-24.419473669999945],[127.51731101700011,-24.395038577999912],[127.54170989900001,-24.30990593399997],[127.70086665000008,-24.23963541099988],[128.03611763100014,-24.029638225999975],[128.16326909100007,-24.03935050499996],[128.25242622100006,-23.953092506999894],[128.43893429600018,-23.884376658999884],[128.41828916500003,-23.81262404699993],[128.466827426,-23.7768477379999],[128.43940737000003,-23.69186596799983],[128.578018401,-23.699008858999946],[128.7077789790003,-23.50638953899994]]]},"properties":{"objectid":277,"eco_name":"Gibson desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Australasia","eco_biome_":"AU13","nnh":1,"eco_id":209,"shape_leng":28.3896751293,"shape_area":13.9094866012,"nnh_name":"Half Protected","color":"#CF5167","color_bio":"#CC6767","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":156985.46558834173,"percentage":0.595043598988817}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[71.36583752700011,42.77154709100006],[71.2831876030001,42.87319644300004],[71.15660862700014,42.95979407600015],[71.06333162300007,42.98032387100017],[70.82997156000016,42.9796449370001],[70.66909752400016,43.0100866680001],[70.61833956800007,43.055793522000045],[70.594383586,43.1872819460001],[70.42720049200005,43.34066306200009],[70.28717057400007,43.41180295700019],[70.18752248499999,43.51869049500016],[70.09957151000003,43.539041421000036],[70.00714862300003,43.62600098400003],[69.72213759500016,43.77430048800005],[69.59342961600015,43.77098578100015],[69.48539761300009,43.64946092500003],[69.46468358300001,43.58879237500008],[69.52406350000018,43.513574517000166],[69.43486764500005,43.403650886000094],[69.51051348300018,43.242533440000045],[69.66697662600018,43.14873793100014],[69.73404660300014,43.03563353600015],[69.7584764980001,42.91193407900016],[69.7094425320002,42.77884504700012],[69.80184161500017,42.50338670700012],[69.7806166250001,42.384208280999985],[69.6566165930002,42.254277382000055],[69.52140056900004,42.236558374000026],[69.47508954800008,42.18641078900009],[69.30042258800017,42.134569053000064],[69.24109648300004,42.053991638000184],[69.25582164300016,41.97564246900009],[69.123413557,41.83312245399998],[69.15923362000018,41.73693223600014],[69.28666654400013,41.650674909000145],[69.34126257300005,41.440406821000124],[69.53240952900018,41.303006138000114],[69.52114056300019,41.08390721200004],[69.57533258400008,40.94355861300005],[69.54528849000008,40.86958161200005],[69.4154965640002,40.828612043000135],[69.32359352100002,40.766741695000064],[69.27913657800008,40.68542164399997],[69.34033151200003,40.55912580900008],[69.36637861100019,40.412406629000145],[69.42784159800004,40.37164710999997],[69.57494349600006,40.358116371000165],[69.71278355900017,40.38711105100003],[69.91874653400004,40.37310824300016],[70.04567754900012,40.407855590000054],[70.19274156100016,40.504465407000055],[70.38308754200006,40.55191586300003],[70.52897657800008,40.642501941000035],[70.66512249000004,40.801321237000025],[70.84467358500007,40.91080213600003],[70.97106950000006,40.95676866000014],[71.22973654100014,41.020377918000065],[71.46173856900003,41.05179949300009],[71.74909250600007,41.113909899000134],[72.11338762000003,41.16099842500017],[72.21697956200018,41.11936886500007],[72.34932763400019,40.979218247000176],[72.52422358700011,40.983700218000024],[72.62198658600016,40.94760975500003],[72.59436754400008,40.8337997700001],[72.46172359100018,40.778113423000036],[72.23200261400012,40.607583435000095],[72.08077950200015,40.470766971000046],[71.93592864800002,40.44552537200008],[71.62993654400003,40.44156542600018],[71.3318095140001,40.34893852200008],[71.17463659200007,40.370056057000056],[71.02667957200015,40.45100713700003],[70.84953358000013,40.35770817200006],[70.56459061400017,40.30969696600005],[70.306861508,40.23129784100013],[70.07688153100014,40.2016471930001],[69.81108853100017,40.08764962200013],[69.61701964400015,40.14366001400009],[69.51979057300002,40.133658056000115],[69.09271953000012,40.15360883000011],[68.95176659700019,40.03630107700013],[68.76473951400015,40.017841612000154],[68.72604362000015,39.9762960380001],[68.41686253700016,39.94833132700006],[68.16899859600011,39.890202996000085],[68.02242257800009,39.92282284900017],[67.80756355400018,39.925946784000075],[67.67791764000009,39.74378623500019],[67.55529760500002,39.687107806000085],[67.66536758400014,39.47469680000006],[67.5053485030001,39.411377557000094],[67.14201361900018,39.42916932000003],[66.8150635720001,39.51990828300012],[66.66310855200015,39.49199671300016],[66.6594464980002,39.42704853100014],[66.75272350200004,39.28539939600017],[67.01757856700016,39.17850196699999],[67.13127154000017,39.067129943000054],[67.09732852000013,38.98254698500017],[67.00773653600015,38.90920734300005],[66.85565159700008,38.856348045000175],[66.76242857300002,38.781970221000165],[66.84435262400018,38.629392593000034],[66.9505085890001,38.4977838050001],[66.93112962900017,38.409905250000065],[66.61711151700007,38.22611643200014],[66.68681358000003,38.07069029900015],[66.75827064600003,38.050990647],[66.84722158200003,38.0882599410001],[66.92813159000019,38.05639261600015],[67.00640062800011,38.07722030399998],[67.12212353100006,38.04169092500007],[67.23140762300011,37.97285186300019],[67.31426256800012,38.03426003300001],[67.46269953500007,38.01115129300007],[67.54229760900017,38.085941004000176],[67.65634161600013,38.095480951000184],[67.70739763200015,38.16499844400016],[67.72528863700012,38.296275476000176],[67.84015658500016,38.391336652000064],[67.87924961400006,38.47250448800003],[67.96250152600015,38.51567464200008],[68.1677325930001,38.44857465700011],[68.19376359900008,38.40717442600004],[68.03449251900014,38.18621924400003],[67.95865657900009,37.995232550000026],[67.9793925690002,37.910002006000184],[67.91779362800008,37.746336126000074],[67.95124848600005,37.54585106000002],[67.92903158100012,37.48149028200015],[67.94345851200018,37.28835581000004],[67.85269155300006,37.16514350900019],[67.89328762500008,37.089759018999985],[68.04212960600012,37.00857659800016],[68.17356857700014,37.03950096000017],[68.46310449100014,37.24491492000004],[68.5429075850002,37.37338418200005],[68.64629349900014,37.688796373000116],[68.65563948900018,37.88201466400017],[68.75549360500014,37.91257307100017],[68.74764261100017,37.783547586],[68.80917349200013,37.74036620000015],[69.03262363100004,37.71616580099999],[69.07232652800013,37.655146719000015],[69.04579964800018,37.53035912400003],[69.0812835970001,37.46868055400006],[69.24133251800009,37.306334657000036],[69.31153162800007,37.11488930600018],[69.40998864699998,37.17320723500018],[69.4119265430001,37.29459680700012],[69.38114953600012,37.444220820000055],[69.51220662700013,37.57487222700007],[69.65914960400005,37.56903557200002],[69.91804463300014,37.60986767800006],[69.95864053700012,37.563004458000194],[70.13499460700007,37.52697535000004],[70.28637664000007,37.70026700700009],[70.23414648600004,37.82298259600009],[70.15914957500007,37.91602909700015],[70.33331261500001,37.99918059400005],[70.46415764400012,38.109110596],[70.52063759000004,38.19776313600005],[70.59297961700014,38.17879623000016],[70.61353254700015,38.06829441499997],[70.62918055400019,38.13600426700003],[70.723541506,38.30279123300011],[70.78399648500016,38.19085410100013],[70.83751661400004,38.164392600000156],[70.90393062300012,38.25194593700007],[70.96819249600009,38.254851943000176],[71.06105057200006,38.14224107400014],[71.20671849400014,38.169263492000084],[71.15124555,38.0366138390001],[70.99945850300003,37.898890452000046],[70.99542261700003,37.84419249900003],[71.08071854000008,37.778336724000155],[71.18543952400006,37.80259428700003],[71.28378255000018,37.89220337000012],[71.39157851900012,37.90535625200016],[71.44864653900004,37.85187116100013],[71.46179154300017,37.75965983200007],[71.38304155000009,37.48077731700005],[71.32503559500014,37.41240764100007],[71.36520351900009,37.30483463100006],[71.31927454600014,37.13845301499998],[71.33545664800005,37.05074276800002],[71.47410556400018,36.79942498000014],[71.47884351900007,36.745173112000145],[71.56139353000009,36.76538674200003],[71.58561656000006,36.966382601000134],[71.51654850400007,37.13654881400009],[71.51721151300012,37.29395575900003],[71.59224664500005,37.323168200000055],[71.64864361100018,37.25631648800015],[71.74507858000015,37.28184424400007],[71.69373355600015,37.49402508300017],[71.85545349300008,37.60319199500009],[71.9056926090002,37.6771465330001],[71.8448565880002,37.74292117100009],[71.70596359100017,37.68688144300012],[71.59200256400015,37.716631835000044],[71.58838661100003,37.90659224800015],[71.64095254400002,37.95537324800006],[71.80269662100017,37.985863762000065],[71.86196857900018,38.05046074300003],[71.75846062400018,38.08912193600014],[71.61476161100006,38.03543098500012],[71.49195851500002,38.028485069000055],[71.4085926090001,38.094328942000175],[71.44370255700005,38.31673687600011],[71.52996860200005,38.35061552200017],[71.53031158900012,38.453072722],[71.48358164100006,38.49471284300017],[71.29415163500005,38.46931550900007],[71.19865460000011,38.50707179200003],[71.16381857200008,38.61949289500018],[71.24623849700004,38.67427902600019],[71.33197748800012,38.7381739380001],[71.34595464600017,38.79920794000009],[71.35829163400007,38.906571403000044],[71.22458653200005,38.87108376600003],[71.21339451200004,38.94961951600004],[71.1268235340001,38.98833401800016],[70.97102356700009,38.98944395000012],[70.85439257000013,38.953529674000094],[70.68231159500004,38.84109717200016],[70.45909162200013,38.858877032000066],[70.36356357400001,38.95910632199997],[70.20319362700008,38.95354040300015],[70.19991261400014,39.03643323400013],[70.46334057600018,39.07069258700017],[70.60121148400009,39.12527604400009],[70.71695752100015,39.08743460100004],[70.86872864200006,39.140183594000064],[71.10151655700008,39.116163071000074],[71.19731148400018,39.059904910000114],[71.48688562000012,39.136277627000084],[71.50000748900004,39.136162626999976],[71.61633254700018,39.13986675800015],[71.67458358900012,39.24310230100019],[71.91322358100018,39.28278256600004],[71.99954964000017,39.31891896200017],[71.989517508,39.47403697700008],[71.88745861700016,39.51835612200006],[71.79061863400011,39.5014984390001],[71.65173351500005,39.41809950800018],[71.55016362400016,39.414788656000155],[71.44856255200006,39.46893675600006],[71.33223749400014,39.46160896100008],[71.16678660400015,39.415360637000106],[71.06268353400003,39.32879083200004],[70.95684054900005,39.30774521500018],[70.79067954400006,39.32237096500006],[70.6134266000002,39.22191653800007],[70.51101650600015,39.218212407000124],[70.42430856800007,39.16634418400014],[70.31659658600012,39.19428274400019],[70.25919362500008,39.282339666000155],[70.16211660100004,39.29539028900018],[70.0607606160001,39.250846173000184],[70.0357976320002,39.177699987000096],[69.95113353700003,39.150254618000076],[69.90209152400007,39.0340453980001],[69.78595757400018,38.99350682600004],[69.72499850600019,39.05070409500007],[69.51828753000012,38.937824837000164],[69.45480349900004,38.943130582000094],[69.39909351400013,39.08078154900005],[69.29060352400006,39.096143230000166],[69.21233364700015,39.034148160000086],[69.09203355500011,39.0110355650001],[69.06822157400018,38.92713606700005],[68.99054748300011,38.88879556500012],[68.93328852300004,38.94607581500003],[68.88955661400018,39.063772823000136],[68.80058254400018,39.08167455700004],[68.68196855600007,39.025523517000124],[68.65573152200005,38.936126664000085],[68.58345051600014,38.910237144000064],[68.43814050100013,38.914918102000115],[68.35452263500014,38.858946099000036],[68.21172350300014,38.859646994],[68.16069062100007,38.970340419000024],[67.99275952600016,39.01475847100011],[67.83601357800012,38.986445911000146],[67.9127505720001,39.099252414000034],[68.03658263000017,39.13513668200011],[68.15778360900003,39.22735253700017],[68.33821061300017,39.31405527900017],[68.38155360200017,39.22683755300005],[68.24929052300018,39.11684200500014],[68.23406948900003,39.04815499100005],[68.33595252800012,39.027335517000154],[68.59529850299998,39.170033395000075],[68.79530362200006,39.153622467000105],[68.9084775870001,39.17507628300007],[69.27863349600017,39.14745858300006],[69.40249656700007,39.229682371000024],[69.28106659500014,39.268263936000096],[69.58336663800014,39.393460903],[69.86797349000017,39.40441990700015],[70.0500026110002,39.44702914400017],[70.23709859300016,39.41900743600013],[70.39389751400006,39.434998263000125],[70.39082353499998,39.504356500000085],[70.21025051900006,39.53896588100008],[70.05845659900012,39.542658948],[69.96697952500017,39.59065523400005],[70.0074465150002,39.65404622700004],[70.12859351500015,39.677526117000184],[70.44445061700014,39.70010478500012],[70.61287657900004,39.76590674800019],[70.73210160800005,39.735386059000064],[70.88343854700008,39.7786445590001],[70.95127060700014,39.69213963000004],[71.13957961700015,39.81349500300007],[71.3600235030001,39.83310178400012],[71.4526064850001,39.89107706100003],[71.62441253399999,39.910531794000065],[71.66929662000007,39.94845722300005],[71.83683058000008,39.99370290400009],[71.97458648900016,39.957311195000045],[71.91256761400018,39.839193751000096],[71.9692765530001,39.769023810000135],[72.23515353900012,39.802165352000145],[72.24643759300011,39.860563581000065],[72.17862648700003,39.92734253900005],[72.16246064600017,40.00671061200006],[72.23200948800013,40.056942017000154],[72.34322359600014,40.07326476800006],[72.48578652600014,39.98777086400008],[72.67608657400018,40.03310036400006],[72.75306664300012,40.01927257100016],[72.85256955699998,39.936131467000166],[73.03093762999998,39.941396476000136],[73.07009151200009,40.05938282700015],[73.13881658000008,40.12057826400007],[73.28943653000005,40.094088600000134],[73.35825363200007,39.96952094600016],[73.4641795980001,39.926549778000094],[73.57740050200005,40.003479724000044],[73.6126095250001,40.222996739000166],[73.57673648800017,40.28643902900012],[73.38085157800003,40.499715550000076],[73.26702851800019,40.55602383400003],[73.2522964850001,40.635574968000185],[73.33747053500008,40.65282492500006],[73.44111662400019,40.60503449800012],[73.76431258500014,40.49531370900013],[73.8651586150001,40.48485376500008],[73.8966526100001,40.385283796000124],[73.9902196270001,40.35982527400006],[74.08759353800008,40.25853852299997],[74.33390850300003,40.25461663100003],[74.44217654100004,40.319786766],[74.42948164600006,40.402247594000016],[74.22509748599998,40.54291302900015],[74.13757348500019,40.642254004],[74.15045160900007,40.69319133300007],[74.00626359600017,40.84077669900017],[73.87465665200006,40.781882597000106],[73.80239056500005,40.84491987400003],[73.83827952700011,40.92281893500018],[73.81701665100013,40.988243210000064],[73.71221955900012,41.035049769000125],[73.66589361800004,41.10214925100013],[73.48230764300013,41.26487535100006],[73.32700355000009,41.36258755500006],[73.17955061800018,41.38774533500009],[73.06195855100009,41.45964781500015],[72.9618526430001,41.38499523200005],[72.82808652100005,41.36854658600009],[72.76448061600013,41.45672571600005],[72.772247623,41.517085309000095],[72.86270160200013,41.55835277200015],[73.22384662899998,41.58777459300012],[73.5158764950001,41.69229273500014],[73.72917162300013,41.765431042000046],[73.73362761000016,41.882553220000034],[73.60637657400014,41.94837144400009],[73.36338754700006,41.98802119900006],[73.10211155500008,42.04963975400017],[72.98977661800012,42.049330797000096],[72.90104662900018,42.12113018000019],[72.79604351100016,42.16151988900015],[72.7018966330001,42.08038943600013],[72.57644653199998,42.05957281200011],[72.41204857700018,42.09626945500014],[72.23338361700007,42.04331074700008],[72.17194359600018,41.98530127100008],[72.17340858500012,41.82881248000007],[71.85294361600018,41.831421599000066],[71.5781405730001,41.74011333600009],[71.42598757300016,41.60479237100003],[71.21602659700011,41.53220307800012],[70.9668425070002,41.52674411200019],[70.88948055800006,41.39377611400005],[70.79963661400006,41.39346732500013],[70.7096325760001,41.31040719100008],[70.53436262100013,41.338257740000074],[70.5181575530001,41.434463884000024],[70.72295359900016,41.544443841000145],[70.9719775960001,41.62026419100016],[71.30690755000006,41.84682133400014],[71.67127257000016,41.964110311000184],[71.69978361300008,42.02900987900006],[71.63725260400014,42.07641859400019],[71.44669355600018,42.06861353300019],[71.37212361900015,42.08875843100009],[71.16761054500006,42.047830939000164],[70.98632858700006,41.975531325000134],[70.86692049800001,42.00039221700007],[70.88353762100013,42.06944870600012],[71.04438751600003,42.17831990500014],[71.02159158900008,42.24281043600007],[70.89668262400016,42.24133823800008],[70.81249260900017,42.272858050000025],[70.80416854100014,42.3648304940001],[70.85266858000017,42.393707324],[71.07407353500014,42.39784630800017],[71.12140664499998,42.581805278000104],[71.32582064400015,42.72314612700012],[71.36583752700011,42.77154709100006]]]},"properties":{"objectid":278,"eco_name":"Gissaro-Alai open woodlands","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Palearctic","eco_biome_":"PA08","nnh":4,"eco_id":730,"shape_leng":68.2981184051,"shape_area":17.7634116643,"nnh_name":"Nature Imperiled","color":"#FCFA58","color_bio":"#FEFF73","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":168398.81523129126,"percentage":1.5893731293554938}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[79.63588756500008,10.324994512000046],[79.70854156600006,10.276147966000053],[79.86873650000018,10.280316454000172],[79.87071965800016,10.324874316000034],[79.72786755300012,10.293525663000025],[79.63588756500008,10.324994512000046]]],[[[80.00081651800019,14.202280535000114],[79.99797052700018,14.131104263000168],[80.05715162500013,13.934938392000163],[80.12613653200009,13.808485647000055],[80.10948957000011,13.712653169000134],[80.13157655500015,13.594439836],[80.21785751900006,13.477468868000074],[80.23645763300004,13.338627000000145],[80.21211960400007,13.22039472400013],[80.23338365400014,13.126071156000023],[80.29708863300004,13.12396226900006],[80.34792353400019,13.29410099],[80.33830261800011,13.374534571000083],[80.23681654600017,13.636178025000106],[80.25817162400011,13.77625890600018],[80.16171251400004,13.978505513000073],[80.12876157700015,14.20160981500004],[80.17339353500012,14.347761205000154],[80.19862356600004,14.573885172000132],[80.11459364600017,14.696058451],[80.05001862500006,14.641971874000149],[80.05571764900014,14.453544176000094],[80.00081651800019,14.202280535000114]]],[[[81.15148150500005,15.998774682000146],[81.09156062000005,16.014932645000044],[80.94737964800015,15.93385784800006],[80.87747960500013,15.838403729000106],[80.6783825820001,15.891820424000116],[80.59207161000018,15.966814653000085],[80.26648764500015,15.763518464000072],[80.17062365100008,15.772219048000181],[80.13124865500004,15.56286140200018],[80.09185756600016,15.471247368000093],[80.15309860000019,15.400367648000099],[80.2045135300001,15.463008795000064],[80.24575064900012,15.617577963000144],[80.36833162500005,15.767758366000066],[80.55294052800002,15.868191839000076],[80.74432351700005,15.87677239300001],[80.81186657000012,15.836054951999984],[80.81247761000003,15.718093578000037],[80.93109159900013,15.707707227000128],[81.01236756100013,15.74780742500019],[80.99176065200015,15.823134751000055],[81.15148150500005,15.998774682000146]]],[[[82.25858255600019,16.890838510000037],[82.22641750500009,16.81749417499998],[82.29497560600004,16.70250318],[82.23525957500016,16.61404778200017],[82.12247453000009,16.532227834000025],[81.82613351600014,16.42165795900013],[81.62931050400005,16.40175596800003],[81.49219564400016,16.434927014000152],[81.31748962400002,16.412812369000108],[81.3265226330002,16.37334986500008],[81.7612606030001,16.326273744000105],[81.95014964100005,16.396038336000174],[82.18359352400017,16.508641327000078],[82.275573512,16.571907429000134],[82.34658063700016,16.708040098000026],[82.36766062100008,16.855819589000077],[82.25858255600019,16.890838510000037]]],[[[86.96569861900008,20.773228776000167],[86.86322750600004,20.773499847000096],[86.74234051299999,20.70092010900015],[86.59880058800007,20.431667059000063],[86.52078250400012,20.31835361900005],[86.17105061100011,19.99329302000018],[86.11863756500009,19.911356731000126],[86.20313251300018,19.886469184000134],[86.40162654200009,19.970183275000068],[86.38481864700003,20.004902291000178],[86.49738358300004,20.12851424100012],[86.53347052600014,20.201480049000054],[86.65505254599998,20.25565698300005],[86.76450360600018,20.330243852000024],[86.71439357100013,20.395379286000093],[86.72834055499999,20.452905964000138],[86.80637355900012,20.538461055000084],[87.00125163500007,20.667394005000176],[86.96569861900008,20.773228776000167]]]]},"properties":{"objectid":279,"eco_name":"Godavari-Krishna mangroves","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Indomalayan","eco_biome_":"IN13","nnh":4,"eco_id":316,"shape_leng":16.5759477632,"shape_area":0.591342978906,"nnh_name":"Nature Imperiled","color":"#E600AA","color_bio":"#CC6767","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":7019.193530811346,"percentage":0.026605814525056146}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[103.34910555300007,46.41224065300014],[103.22539553500013,46.38772760900014],[102.9486235830002,46.40914756300015],[102.98482552600018,46.264017089],[102.93005364400017,46.18929393100018],[102.50904053800008,46.02225534100012],[102.24060053300002,45.88834789900005],[102.06291960800007,45.848438976000125],[101.81732967700003,45.89011799000002],[101.70646660300014,45.98214810200011],[101.58770760700003,45.96318907500006],[101.49460561800004,45.99850136200013],[101.27572663300009,46.20778776200012],[100.928871577,46.35325435000004],[100.78847453100019,46.4341185940001],[100.46134159000007,46.670260611000174],[100.26726566300016,46.75627117500011],[99.93353264400014,46.82765548599997],[99.73019354000019,46.909202854000114],[99.65536460200013,47.011586293000164],[99.3438496620002,47.042855486000065],[99.05282562500008,47.05038159700007],[98.67315659100012,46.85469047700019],[98.4825896640001,46.7944101760001],[98.26786760000016,46.80935645000011],[98.08370159700007,46.686900868000066],[97.96461453400008,46.68364282200014],[97.69068857300016,46.80271127700013],[97.49111160300009,46.91113270400007],[97.14984157700007,46.975667156000156],[97.04972058100009,47.03529031500017],[96.83062752300015,46.85547636400008],[96.57118264100012,46.39249959500012],[96.82351665100009,46.318128141000045],[97.01807353200002,46.22103603000011],[97.18135853800004,46.19704165900015],[97.38346064100006,46.12550865300011],[97.48670959500004,46.04472822900004],[97.65256466000017,45.98795407800003],[97.67971766800008,45.921822036000094],[97.52397151300005,45.92338190800001],[97.0524906330001,46.07063753000017],[96.71382855200017,46.11434261700009],[96.57740067200012,46.165158576000124],[96.4852146570002,46.13989350800006],[96.45538363100019,46.078446446000044],[96.32733966600006,46.09458647100007],[96.3026655230002,45.998242194],[96.19020854500019,45.888599859000124],[96.41653451600001,45.78306985400013],[96.60819964000007,45.76625072700017],[96.80750252200016,45.77830155700019],[96.94299364000017,45.70111043200018],[97.2384875790001,45.577182149000066],[97.36701953800014,45.507041042000026],[97.49642153900015,45.47858029000008],[97.65425864300005,45.481387221000034],[97.86775158400019,45.425666173000195],[98.1861495760001,45.27635882900012],[98.45501655500016,45.112349962],[98.44121558400019,45.018481866000116],[98.22773756200013,45.01626082900009],[97.89564555200013,45.14787984300017],[97.64945262700013,45.21678093200012],[97.53547651300005,45.22094975500016],[97.4533085490001,45.11310466800012],[97.33284752400016,45.10983170300011],[97.16466564300009,45.187308986000176],[96.88292657500017,45.22379574600018],[96.9740985480002,44.90044673200009],[97.63600151700007,44.59333396700015],[97.84037058900014,44.517639179000184],[98.25669066700004,44.31326641800007],[98.73734252400004,44.006706859000076],[98.82817067000013,43.99157014800011],[99.5784306330001,44.041892747000134],[99.95689351100009,44.07973871700017],[100.274810549,44.07973871700017],[100.63813755400008,44.125156562000086],[100.82736957900016,44.132724582000094],[100.97875965900005,44.163001693000126],[101.36778256100018,44.19214238500018],[101.86727157100012,44.12403053700007],[101.99594853700012,44.12403053700007],[102.07163963800019,44.16944855000003],[101.98838051700011,44.30569839800006],[101.96567561800003,44.396530065000036],[102.01108558400011,44.48736123000009],[102.08678456300015,44.48736123000009],[102.2457356220001,44.419238150000126],[102.75288351300014,44.25271236500015],[103.01781451800014,44.214866395000115],[103.479545568,44.245143338000105],[103.64673654100017,44.20796155100004],[103.90608251600008,44.31406018500013],[104.04233554900014,44.42002822800015],[104.2088546290002,44.647108905000096],[104.25427264200016,44.87419075500003],[104.32239555400008,45.01800879100011],[104.32239555400008,45.26022701800008],[104.25943757100003,45.49489935200012],[104.2391355950001,45.57057117400012],[104.102889603,45.71438971300017],[103.94393167100009,45.82793080600004],[103.85309564500005,45.92633518800011],[103.61087758600013,46.107998522],[103.46706357300013,46.19126284000009],[103.36865952700003,46.32750832900007],[103.34910555300007,46.41224065300014]]]},"properties":{"objectid":280,"eco_name":"Gobi Lakes Valley desert steppe","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Palearctic","eco_biome_":"PA13","nnh":2,"eco_id":825,"shape_leng":25.8132900767,"shape_area":16.0621912504,"nnh_name":"Nature Could Reach Half Protected","color":"#D16B54","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":139699.9905431919,"percentage":0.5295240858125527}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-111.73424774699998,42.03614508000004],[-111.80449479099991,42.066114262999974],[-111.80077426499992,42.16566833600007],[-111.85854739699994,42.27945730000016],[-112.03518611599992,42.33968930900011],[-111.99152277299987,42.15656046600003],[-111.99899496599994,42.060809463],[-112.07814485399996,42.07518269400009],[-112.15191921899998,41.90953501600018],[-112.20727530199997,42.074561863000156],[-112.2332132009999,42.22220920600006],[-112.38379541499995,42.27800049000007],[-112.37592378999994,42.192168240000115],[-112.4404937079999,42.0761660500001],[-112.39764504599992,41.992855819000056],[-112.6324472789999,42.01948614000014],[-112.62006130099996,42.09334013900008],[-112.7109060649999,42.11573644800018],[-112.83273346499993,42.056213087],[-112.91927332099988,42.10695124300008],[-113.1358481339999,41.96316391700003],[-113.17247901799993,41.84601616900005],[-113.24407850399996,41.81349897900003],[-113.58093841499993,41.800363527000115],[-113.68790573499996,41.63995123300015],[-113.68269734299986,41.45496964400007],[-113.85160450099988,41.49467940000011],[-113.84443368199999,41.62318552600004],[-113.88235662099999,41.724520416000075],[-113.97879725599995,41.62962698300015],[-113.95180370499997,41.4693952020001],[-114.0379174869999,41.41734623600013],[-114.10342961099997,41.46660176000006],[-114.18293683599995,41.44740950900007],[-114.25708581299995,41.25052062100019],[-114.25326530299998,41.15435884300007],[-114.44190968699996,41.088388081000176],[-114.53088824899999,41.16721574600007],[-114.62396405099997,41.20464287800007],[-114.69960636199994,41.184819237000056],[-114.79349611199996,41.23879131100017],[-114.94896829599992,41.1754590810001],[-115.01909522399995,41.36705423700016],[-115.11997803399993,41.49746036700009],[-115.14438617999986,41.62367699800018],[-115.2726077339999,41.681561006000095],[-115.34068539599997,41.55347620000009],[-115.3923715219999,41.517475196000134],[-115.48112494399993,41.60779803500003],[-115.59776242699996,41.503540367000085],[-115.78165447499998,41.61148019300009],[-115.89503316799994,41.61741341100003],[-115.9454494499999,41.48998696000018],[-115.9291813609999,41.340302314000155],[-115.96339855099995,41.28439483300008],[-116.17635185299997,41.17284556300001],[-116.16987279699998,41.12741322400018],[-116.27118373899992,40.97061154400012],[-116.34579939399993,41.093206726000176],[-116.30002870299995,41.22255440000009],[-116.39413923899997,41.241896323],[-116.38247522199998,41.31233874600014],[-116.50596501999996,41.36187933400004],[-116.65053379699998,41.34339535400011],[-116.73314598099995,41.25784317100016],[-116.98699343399988,41.16544788300007],[-117.10336317699989,41.31797638100005],[-117.05872038399997,41.44062964400018],[-117.11172181399996,41.516720073000045],[-117.20885740499995,41.514886454000134],[-117.32782329899999,41.45452244100011],[-117.383549282,41.54463423600015],[-117.50092206899996,41.57827018200004],[-117.58489910299994,41.541899619000105],[-117.61989843799995,41.33864298400016],[-117.68470337699995,41.31732368200011],[-117.76393367599991,41.39071503700018],[-117.76922960599995,41.5648956980001],[-117.70266588899995,41.762259167000025],[-117.87437506799995,41.81073313100012],[-117.97170933799993,41.71287708800003],[-117.99481528199993,41.544569028000126],[-118.05983533199992,41.58816801800009],[-118.23803032899991,41.90603572400016],[-118.3271535159999,41.880879870000115],[-118.2690325559999,41.66695553000011],[-118.26599093499993,41.55471630400018],[-118.43103119399996,41.67586559200015],[-118.47321015299997,41.754017268000155],[-118.58530449199998,41.82870844700011],[-118.59654308199993,41.655477586000075],[-118.56023246799992,41.55369744700016],[-118.60971785999993,41.473544194],[-118.70774631799992,41.51952199200019],[-118.78942471299996,41.497932733000084],[-118.8874934829999,41.39537371400007],[-118.87756794599994,41.284574239000165],[-119.00648144099989,41.153978781000035],[-119.11751582899996,41.27157394000017],[-119.20434024499991,41.41834663700007],[-119.25861948799991,41.339252625000086],[-119.19015428599988,41.31411510800001],[-119.15713308999983,41.14852010000004],[-119.16177502899995,41.03291041400013],[-119.250270904,40.92585856500017],[-119.33494189699991,40.982016620000024],[-119.41088429299998,40.90815549500019],[-119.35810172599992,40.78648846100003],[-119.30383935299989,40.74657364900003],[-119.37176400599998,40.676499657000136],[-119.49221321399989,40.79645289200016],[-119.67095223699994,40.655879090999974],[-119.8372682129999,40.688988958000095],[-119.85396892499989,40.54458885400015],[-119.91952421899998,40.515743579000116],[-119.89566654099997,40.39182701600009],[-119.92936101699996,40.26360715200008],[-120.00448575599995,40.25981643600011],[-120.1898145589999,40.32166786500011],[-120.27653681699991,40.40516662600015],[-120.35904323999989,40.38408281000005],[-120.52683373299993,40.41508427000008],[-120.56975830299996,40.335674784000105],[-120.37814293599996,40.16846687000003],[-120.1814727819999,40.08245227600014],[-120.03992357099997,39.902521094],[-120.18145008599998,39.82376805900009],[-120.291897759,39.84376271200006],[-120.43124005799996,39.824130703000094],[-120.38398283499998,39.744566862000056],[-120.43700320099987,39.65746814700003],[-120.25067979899995,39.6691669870001],[-120.15419955099998,39.76342607600009],[-120.10384989199997,39.76708915000012],[-120.05318449499998,39.640054179000174],[-119.94229173899993,39.616789877000144],[-119.96401905699997,39.50111664700012],[-119.83867468099993,39.44894857300011],[-119.81674573299989,39.32815724599999],[-119.84736487999999,39.277236544000175],[-119.8065114129999,39.16798539000018],[-119.84482857799992,39.08922887900013],[-119.84435159099996,38.88996802100013],[-119.74152211099994,38.72799185100007],[-119.607854939,38.71770288000005],[-119.58158734399996,38.558208606],[-119.45245950699996,38.42128611600009],[-119.47535282399991,38.36394615500012],[-119.31856470499997,38.237113433000104],[-119.31508465299999,38.14693090000003],[-119.16781227199994,38.030899817000034],[-119.10605605899991,37.93263312600004],[-119.11991270199997,37.87516868400019],[-119.05175776199991,37.81751921700004],[-118.99099349599999,37.84901291600016],[-118.82671218299998,37.86140044300009],[-118.65036266499999,37.787761597999975],[-118.63198977699994,37.74226102600005],[-118.8635210679999,37.759232637000025],[-118.86201768299992,37.65393532000007],[-118.7462604349999,37.55848263800016],[-118.65334107499996,37.544455163000066],[-118.6163073749999,37.37536882600017],[-118.41442165299998,37.31913319400019],[-118.32059580599997,37.09799945300006],[-118.37532639599993,37.0429080510001],[-118.25816827199998,36.84128445400006],[-118.28305807599997,36.77698029800007],[-118.22750055899996,36.63016821400004],[-118.075674957,36.501220403000104],[-118.05529904999986,36.547942440999975],[-118.09613977999987,36.67156479300013],[-118.17073580399995,36.80858372200015],[-118.07296825199995,36.785497706000115],[-117.99192159499995,36.60798876600006],[-117.82328882699989,36.48103491900008],[-117.74645889499999,36.46353613500008],[-117.68962258199997,36.508065642000076],[-117.83145949299995,36.647173358000146],[-117.90236123199998,36.76209806800006],[-117.9462843579999,36.922874745000115],[-117.85355500299988,36.96220548600013],[-117.72535330799997,36.898677726000074],[-117.6965185439999,37.00185840800009],[-117.87859478299993,37.12136995499998],[-117.88649121799995,37.18546729500014],[-117.96455511599999,37.29981202100015],[-117.88541548799992,37.37364726700008],[-117.836651309,37.32757653000016],[-117.70860173799991,37.34123609500011],[-117.59153976299996,37.272393363000106],[-117.49568460999996,37.24881572800018],[-117.4492907959999,37.14756907300006],[-117.27622029799983,37.029889572],[-117.22160245499987,37.03392738900004],[-117.13353238099995,37.15532865000017],[-117.04841896299996,36.95349578300005],[-116.85184719399984,36.978194976000054],[-116.77946427799992,37.05256486900009],[-116.68840915399994,37.06197135100018],[-116.54517371299994,37.13157283200013],[-116.51734924199997,37.04629652600005],[-116.38446191499992,37.01219761500016],[-116.32948529299995,37.09954663300016],[-116.25223712199994,37.138044388000026],[-116.19823361099998,37.07995232500019],[-116.14704951899995,37.22704876600005],[-116.03375341699996,37.23303139600017],[-115.88280138999994,37.17369421400008],[-115.617552,37.19168126500017],[-115.51890208999987,37.15876210100015],[-115.40495807999991,37.0338153080001],[-115.35450182399995,37.135282352000104],[-115.20514995399992,37.12468285700004],[-114.98880869999994,37.182239073000176],[-114.90100342199992,37.29210778700008],[-114.80338266299992,37.231251881000105],[-114.619097523,37.31924217600016],[-114.55925778499983,37.46522963200016],[-114.41164414199983,37.38670895400014],[-114.27330528699991,37.28768023200013],[-114.16177489999995,37.31689257100015],[-114.02605365799991,37.30802261400015],[-113.93392603199993,37.346343197000124],[-113.89265077099986,37.282321319000175],[-113.78955950999995,37.2223443150001],[-113.67013451699984,37.22031143800018],[-113.63149805199993,37.27742150300014],[-113.52364084699997,37.217866718000096],[-113.56882761699995,37.346305681],[-113.43217978999996,37.4723836230001],[-113.35283591799993,37.49778242000008],[-113.2377123469999,37.40277511700015],[-113.17652981099991,37.533774566000034],[-113.04628333499988,37.72008662300004],[-112.98432078899992,37.768198638000115],[-112.81537942499989,37.83611353600014],[-112.75265531199994,37.887708091000036],[-112.61096405199999,38.12118040400003],[-112.5043770609999,38.14959438000017],[-112.5832487639999,38.25523208200008],[-112.53983774699992,38.32691373200015],[-112.59893395699999,38.505791827999985],[-112.57518592399998,38.69562406700015],[-112.386354897,38.77167015700019],[-112.37197471299987,38.87913629200017],[-112.30914041799997,38.96449098500011],[-112.23514618399997,39.00016671700013],[-112.17502590599992,39.08211631700016],[-112.09791625899999,39.02693217100017],[-112.02546058099983,38.86895658300017],[-112.23344922699988,38.66558412100011],[-112.27740571299995,38.59451011000016],[-112.16092430899994,38.51714537200007],[-112.01424384699999,38.70360695800014],[-111.92540464799998,38.74636549700011],[-111.7953273419999,38.99604631700009],[-111.74871319899995,39.00458172600014],[-111.694553795,39.17587335400003],[-111.82027281999996,39.214160449000076],[-111.91549162799998,39.398068597000076],[-111.8289554669999,39.55625409700019],[-111.82955885699994,39.784309634000124],[-111.79762237099999,39.94934026700008],[-111.72451006199987,40.018872842000064],[-111.65182197699994,40.02358845800012],[-111.55181570999997,40.1350218390001],[-111.62572699499998,40.21657484000008],[-111.65262385399984,40.309728959000154],[-111.77941836099995,40.473276661],[-111.845956388,40.497173684000074],[-111.78908109499991,40.584367835000194],[-111.81292694599995,40.75136923600007],[-111.91542906299998,40.82344528300018],[-111.85169338199984,40.891249202000154],[-111.90216647799997,41.04843766600004],[-111.89460026899991,41.134707715],[-111.95260299799997,41.33761763400008],[-112.02463763899993,41.366018242000166],[-111.98737136699992,41.508613254000124],[-112.048972231,41.6139487260001],[-112.02087812499991,41.72501663300005],[-111.92362704799996,41.59462276400018],[-111.77365861599998,41.518761422000125],[-111.80376405799996,41.662774626000044],[-111.78617427499995,41.83580749800012],[-111.73424774699998,42.03614508000004]],[[-115.258663421,40.77247351800008],[-115.41396016999994,40.49397517700004],[-115.51440881899998,40.630574017000015],[-115.30788072799987,40.72357626100006],[-115.258663421,40.77247351800008]],[[-113.85014589199983,39.91934000100014],[-113.85573377199995,39.83458902100017],[-113.98000182899995,39.789064309000025],[-113.90209522599997,39.924446003000185],[-113.85014589199983,39.91934000100014]],[[-114.62319538499997,39.64549766100009],[-114.57533800099998,39.51493913200011],[-114.54362969299996,39.317713707],[-114.62220563699998,39.23711607000007],[-114.68750405999998,39.25824292700008],[-114.6265514399999,39.50882947400015],[-114.6867717859999,39.54040544100019],[-114.62319538499997,39.64549766100009]],[[-114.17690036,39.32205777600018],[-114.09631473699994,39.2706203190001],[-114.1192366439999,39.19322309900019],[-114.19477876999991,39.17402690200004],[-114.29292269899992,39.24411297700016],[-114.25400309799988,39.32613357200006],[-114.17690036,39.32205777600018]],[[-114.30762742099989,39.04852505200017],[-114.17310422599996,38.94183629100007],[-114.29654231299992,38.805069878000154],[-114.3630070609999,39.04354284700014],[-114.30762742099989,39.04852505200017]],[[-116.257980004,38.70505146000011],[-116.26749241399995,38.597928153000055],[-116.38347597699999,38.636014257000056],[-116.3744710869999,38.689115181000034],[-116.257980004,38.70505146000011]],[[-116.48574872499995,39.20466663000013],[-116.3518673769999,39.03716466100019],[-116.430869068,39.024663366000084],[-116.51353334999999,38.90719811800017],[-116.55108069599999,38.64504604400014],[-116.66716124799996,38.63237121300011],[-116.6733854719999,38.739689737],[-116.61869995999996,38.87915355400003],[-116.53860322499992,38.93843069400009],[-116.47759223399999,39.06386592400008],[-116.48574872499995,39.20466663000013]],[[-116.44685030899996,39.41197078400006],[-116.4368075029999,39.22680171200017],[-116.52557152099996,39.25392367799998],[-116.55294529499992,39.35411747600017],[-116.44685030899996,39.41197078400006]],[[-117.03375294099999,39.45737928199998],[-117.1003533149999,39.242938158000186],[-117.18799874599995,39.28855189300015],[-117.06516381799986,39.4512530720001],[-117.03375294099999,39.45737928199998]],[[-117.17943646299989,39.23427837700018],[-117.13578021799998,39.16944349400006],[-117.18776327799998,39.1287664780001],[-117.28571205899993,38.94269264200011],[-117.23217798299993,38.74945969200007],[-117.44259503899997,38.66670373300019],[-117.47923418499994,38.824604997999984],[-117.31715635199998,39.01138276000012],[-117.24456779899992,39.18124630500006],[-117.17943646299989,39.23427837700018]],[[-116.85011826799996,39.17009315800016],[-116.75769306499996,39.07863908300004],[-116.79128083799992,38.994893176000176],[-116.85990239699993,38.97219171900008],[-116.85011826799996,39.17009315800016]],[[-116.87306779299996,38.841298395000024],[-116.82331396399996,38.735673595000094],[-116.88452638599995,38.64538177100013],[-117.00077706699994,38.638004266000166],[-116.95634420099998,38.71904086500018],[-116.99109006699985,38.82265007100017],[-116.87306779299996,38.841298395000024]],[[-118.75649399499991,38.5790625840001],[-118.72028244399996,38.461470219000034],[-118.79378508899998,38.44203806700017],[-118.82503444399998,38.53243010200015],[-118.75649399499991,38.5790625840001]],[[-118.27499762999997,37.88841034100005],[-118.27810599099996,37.832190438000055],[-118.21651993899997,37.730931156],[-118.19858723699997,37.62401271400017],[-118.06233240599994,37.53352134500011],[-118.06907796899986,37.46931225700018],[-118.13983354899995,37.386479596000186],[-118.21804507499985,37.37597892100007],[-118.33005741799991,37.70731581100017],[-118.40059655899995,37.79968269000011],[-118.37890481,37.88149165100015],[-118.27499762999997,37.88841034100005]],[[-118.7958948719999,38.298662066000134],[-118.98016529799997,38.1847856440001],[-119.10524501899994,38.22743303000004],[-118.94292128199999,38.277265881],[-118.7958948719999,38.298662066000134]],[[-119.2808754799999,38.51692240200009],[-119.22942932999996,38.36938769600016],[-119.32687038199998,38.39550592000006],[-119.37670871199998,38.46960185300014],[-119.2808754799999,38.51692240200009]],[[-119.467805081,39.21201124700002],[-119.48375021499999,39.08795771800004],[-119.44908373999988,39.01121196400004],[-119.48537790399996,38.77815286400005],[-119.55288783299989,38.83445019100003],[-119.47582171199991,38.970779971000184],[-119.50149774599993,39.071597090000125],[-119.467805081,39.21201124700002]],[[-116.28522123599993,39.887558346000105],[-116.25162632299993,39.81059419300004],[-116.35810353699998,39.77811146300007],[-116.38816956799985,39.830117594000114],[-116.28522123599993,39.887558346000105]]]},"properties":{"objectid":283,"eco_name":"Great Basin shrub steppe","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Nearctic","eco_biome_":"NE13","nnh":2,"eco_id":430,"shape_leng":100.55720677,"shape_area":31.5161691988,"nnh_name":"Nature Could Reach Half Protected","color":"#FFA77F","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":301267.7524302401,"percentage":1.1419365926234828}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[96.09924360600007,50.12550355900015],[95.99460560300014,50.30492993100006],[95.86627162399998,50.39531350200002],[95.48547354800002,50.473572482000066],[95.31828257500007,50.59301225600012],[95.24101266000008,50.68963648800019],[95.08084052500016,50.79055225600007],[94.13356761600005,50.83976173900015],[93.82704158400009,50.92817707100011],[93.30245262900002,51.129447521000145],[92.8337785130002,51.15841973700009],[92.52771750900013,51.15832871000015],[92.24713866400003,51.11112904000015],[92.00578260100008,51.04003692200018],[91.69564061600016,50.87097443800013],[91.5062025630001,50.78741206000012],[91.28237959600006,50.744942465000065],[90.88684060300017,50.744282474000045],[90.56905365200004,50.655696151000086],[90.44064356500019,50.65246090400018],[90.13629951100012,50.68738158900004],[89.99096653000015,50.68070255300006],[89.97113058800011,50.604720433000125],[90.07962057800017,50.540349428000184],[90.05658761100017,50.43077867500017],[89.94873850100004,50.39531635200012],[89.73191861500004,50.457470176000186],[89.6280666670001,50.429427848000046],[89.69271863300008,50.25729138400004],[89.789649644,50.18242355500007],[89.96729251500005,50.09993741300008],[90.1154636080002,49.97963463900015],[90.16506150900011,49.89887667800008],[90.183257615,49.516136012000175],[90.14050253200014,49.44015808300014],[90.12619060000009,49.397371485000065],[90.35880266300012,49.144030808000196],[90.43871254300012,49.12097051600017],[90.58031457100003,49.13844259300015],[90.78758260800004,49.203636366000126],[91.04930166800011,49.1867443160001],[91.18947558700006,49.09652922200007],[91.37321461600015,48.877734727000075],[91.49098957600017,48.76207955000007],[91.50154859500014,48.572648034999986],[91.43656152,48.491772225000034],[91.18743157600011,48.34802895600018],[91.13345362900014,48.27921520700016],[91.28591156300013,48.079933615000186],[91.38484165700004,47.90567334400009],[91.43266259400019,47.869421781000085],[91.94166556700009,47.62402815400014],[92.06483461699997,47.50938031500016],[92.08615164100001,47.41519873600015],[92.05090355900018,47.28650886200012],[92.0794146020001,47.24646951600016],[92.31144764300018,47.12151897700005],[92.39793362900019,47.101315740000075],[92.59176664900019,47.179742358000055],[92.6930545730001,47.18038323900009],[93.04484556400013,47.037850316000174],[93.36682162300008,46.84778965600003],[93.36173263400008,46.7823412410001],[93.21614853100016,46.78406104000004],[93.08467066800011,46.84747349000014],[92.83353460000018,46.922302763000175],[92.74374362900016,46.862243410000076],[93.09159060000019,46.633315361000086],[93.2562175490001,46.56237311200016],[93.37711359400015,46.47139593500009],[93.5815125060002,46.46739776700019],[93.4875025880001,46.60027926300012],[93.455963666,46.774214986000175],[93.54978951700008,46.823341488000096],[93.73909765000002,46.727306],[93.86468454300007,46.68604574600016],[93.99472055100011,46.59017823200003],[94.00510355000006,46.50072002300004],[93.91964753200017,46.367177362000064],[94.04146558700012,46.20902375700018],[94.30271157200002,46.008297293],[94.69187964900004,45.889210062000075],[95.01139863600008,45.85885701100017],[95.17227166600014,45.91292213100013],[95.28081563600006,45.91550912100013],[95.41068266400009,45.97776805400008],[95.54271658300013,45.952481026000044],[95.78490463400004,45.87122786200007],[96.071205637,45.896626035],[96.19020854500019,45.888599859000124],[96.3026655230002,45.998242194],[96.32733966600006,46.09458647100007],[95.94908851600019,46.427988573000164],[95.76016259700003,46.50866187600013],[95.68268564900012,46.62082129600003],[95.48468062000018,46.69613169000013],[95.26099360800009,46.80520640200007],[95.23551161700016,46.90725389400012],[95.35308859600019,47.01129242400009],[95.17861157000016,47.186033480000106],[95.18684360500015,47.25947789500009],[95.31008155400019,47.26507365300017],[95.37458750700006,47.36738131900012],[95.52230866000008,47.38883563900015],[95.60005952900008,47.289137930000095],[95.65191652000004,47.13648402700011],[95.74360666200005,47.034325558000035],[95.85329459400009,46.96048400900003],[96.11917862100006,46.87817053400005],[96.21656057800016,46.748843970999985],[96.18065652800004,46.602763492],[96.36408961800004,46.44914868700016],[96.57118264100012,46.39249959500012],[96.83062752300015,46.85547636400008],[97.04972058100009,47.03529031500017],[96.93931566100008,47.140264097000056],[96.81598651700006,47.41111674900003],[96.753936629,47.50334517700014],[96.51557961000003,47.597085029000084],[96.35732257199999,47.70630776600012],[96.29782866200009,47.970641811000064],[96.06281266900015,48.1120198750001],[95.91919663700003,48.2404348230001],[95.75234965800013,48.48236488000015],[95.6045306040001,48.846301584000116],[95.61575363700007,48.90838734700003],[95.73443551900016,49.113215244000116],[95.75088466900013,49.295853394],[95.98220860000015,49.552536271],[96.03568262800007,49.67622499900011],[96.10526265000016,49.929566011000134],[96.09924360600007,50.12550355900015]],[[91.13486463800012,50.414359701000194],[91.46377554800017,50.42114267200003],[91.66383364000006,50.390624162000165],[91.75777465800019,50.331907422000086],[91.99794753300017,49.677281789000176],[91.94048355100017,49.36201611400014],[91.74394954700017,49.255977831],[91.67819251100019,49.16579408500013],[91.57091554900018,49.162955804000035],[91.49890159000006,49.21978359900004],[91.23521462700018,49.275094270000125],[91.18170154000012,49.3447009460001],[91.12209363500011,49.5637975250001],[91.17291261100007,49.697309173000065],[91.11228965800012,49.79762529900006],[90.99009659700005,49.843036942000026],[90.8542026450001,49.930169172000035],[90.78682756600011,50.062624700000185],[90.79238862400013,50.1193576120001],[90.97210651900008,50.36010682600005],[91.13486463800012,50.414359701000194]],[[93.11357163800005,49.70252824900007],[93.37653356600009,49.828196615000195],[93.51659366000013,49.82439374500012],[93.89405858800018,49.75472487500019],[94.09244566300009,49.69268219500003],[94.25885058100016,49.67727793300003],[94.51695251400014,49.62239105200018],[94.77729761200004,49.60489701400013],[94.93331953200004,49.62729010700008],[95.17768855500009,49.77049911400013],[95.32151061400009,49.79642048400012],[95.43189256700009,49.73258843600013],[95.61895753600004,49.66472771000019],[95.70388063200005,49.54212527700014],[95.60685758800008,49.466109294000034],[95.55964651800019,49.29695645200019],[95.35176056700016,49.226253590000056],[95.16655755500017,49.22526167600006],[94.9676516400001,49.25379987700012],[94.88969457600001,49.20505123100003],[94.73681654000012,49.22533057499999],[94.55530558900011,49.19932924100016],[94.34502459300012,49.20703137200019],[94.11228965100014,49.278321302000165],[94.0582196700002,49.36196699599998],[93.72572365300005,49.42225467300011],[93.29500564400018,49.57521451600013],[92.8154065550001,49.58563674200008],[92.74378956200013,49.62823625600015],[92.77687058700019,49.691934194000055],[93.05187261600014,49.68357609500015],[93.11357163800005,49.70252824900007]],[[93.17202753400005,47.28289290900017],[92.80988355099998,47.50018318800011],[92.74188955200015,47.568176683000104],[92.54086251300009,47.70194750000013],[92.437393617,48.002013934000104],[92.45291153800014,48.1468741760001],[92.54603565600013,48.20378243700003],[92.63398763600009,48.188260325000044],[92.7167585950001,48.08996272900009],[92.73745753700018,47.98649165500018],[92.90300766899998,47.836462629000096],[93.20824456400015,47.61399903900019],[93.32205957700018,47.41223070400008],[93.31171463200013,47.24667956700006],[93.17202753400005,47.28289290900017]],[[94.33338162600018,46.279698959000086],[94.189803648,46.507833912000024],[93.97840165600019,46.67660872900012],[93.96592754000011,46.79059909200009],[94.15356465700017,46.75133909600015],[94.3654095490001,46.64103257900018],[94.72558562800009,46.561163100000044],[94.68030558200007,46.45576284700013],[94.58010864600004,46.437707557000124],[94.43121352400016,46.28436801400011],[94.33338162600018,46.279698959000086]],[[94.6456836280002,46.273008189000166],[94.75504265400019,46.31537032700015],[94.94657852900008,46.339925448000145],[95.2266006480001,46.446912731000054],[95.53059366800011,46.49359775200003],[95.67705552400008,46.441797758000064],[95.95799261100018,46.22634294800008],[95.94326761900004,46.12498545500017],[95.8185505990001,46.057320362000155],[95.4784235300001,46.12066374500017],[95.35601052700008,46.11806150000007],[94.95127859800004,46.0735525880001],[94.76864665000011,46.03995942900019],[94.56398052300005,46.12127361300003],[94.58282455000005,46.23433107000005],[94.6456836280002,46.273008189000166]]]},"properties":{"objectid":284,"eco_name":"Great Lakes Basin desert steppe","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Palearctic","eco_biome_":"PA13","nnh":3,"eco_id":826,"shape_leng":46.7804842136,"shape_area":19.2961979653,"nnh_name":"Nature Could Recover","color":"#F9CD64","color_bio":"#CC6767","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":157569.93449310752,"percentage":0.5972589918551914}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[136.58563238700026,-21.53625672699991],[136.72026067200022,-21.499685309999904],[136.73582452500023,-21.458665784999937],[136.85638428800007,-21.407400220999875],[136.90599073800013,-21.326324417999956],[136.8944243830001,-21.248132660999943],[137.00846855700001,-21.089910492999877],[137.1058044130001,-20.982330441999977],[137.41967768600023,-21.001092996999944],[137.6384584350002,-21.04702750299998],[137.76545717700003,-21.117130220999968],[137.71267700300018,-20.941650383999956],[137.53405763900014,-20.672393813999918],[137.37347412100019,-20.582792274999974],[137.2357787300001,-20.47077182699985],[137.1286772860002,-20.429090465999934],[137.00714119800023,-20.14727026099996],[136.8264769870001,-19.886405988999968],[136.6408386190002,-19.849849825999968],[136.33242799900006,-19.76705740999995],[136.25637815400012,-19.698801057999958],[136.25245659600023,-19.529117642999893],[136.0322571270001,-19.390796626999872],[135.96824637600014,-19.376476311999852],[135.89428714500002,-19.41272351799995],[135.67622371900018,-19.41023258399997],[135.5801391130002,-19.381002372999944],[135.3435821920001,-19.37161262899997],[135.18373108300023,-19.30571360299996],[135.2585603570003,-19.245778971999982],[135.29646298700004,-19.136758742999973],[135.27185053500023,-19.01595305399985],[135.09506228200019,-18.992780779999975],[135.03880311600005,-19.09203726599992],[134.94007871300005,-18.988811445999886],[134.8722228490003,-19.010286383999926],[134.84553520400027,-19.125892610999927],[134.70930480200002,-19.112794880999957],[134.63162233000014,-19.04855915999991],[134.58677680100016,-18.93339348699982],[134.53320319600004,-18.884717930999898],[134.49038692500028,-18.78350443799991],[134.3923949340001,-18.649309161999952],[134.24888602200008,-18.55721668999996],[134.11462402700022,-18.442249331999903],[134.06852724700002,-18.353185743999973],[133.96942130000002,-18.27998742099993],[133.91796865300012,-18.201393164999956],[133.8687286590001,-18.06635483699995],[133.78062429500005,-17.975128214999927],[133.60339347900015,-17.987216929999875],[133.48309321900012,-18.055492392999952],[133.3796080630001,-18.068218300999945],[133.1094055120002,-18.23625584699988],[132.86830140900008,-18.451881478999894],[132.68576048800014,-18.466512761999923],[132.36535637200018,-18.39409060299994],[132.2151489790001,-18.37593070799994],[131.64193727500003,-18.37128260699984],[131.34124756200004,-18.372955299999944],[130.72145074900016,-18.271274598999923],[130.44197077200022,-18.213468635999902],[130.25271611500023,-18.158706644999825],[130.14070120000008,-18.152967387999865],[129.98761009600014,-18.200017859999946],[129.87199398000007,-18.2706280189999],[129.57490530100017,-18.567283687999975],[129.41215506000003,-18.661548582999956],[129.2673187910002,-18.671842565999896],[129.10540774600008,-18.6414489469999],[129.00051999800007,-18.652488136999978],[128.95236224100006,-18.692552572999887],[128.76890568200008,-18.677419716999964],[128.66839593400005,-18.619905443999983],[128.53800956300006,-18.675026180999964],[128.46626281800002,-18.747364015999892],[128.34881592600016,-18.774360617999832],[128.23628233800002,-18.915147757999875],[128.20216363400004,-19.14706797799994],[128.02607728300018,-19.16164025199987],[127.92285917400011,-19.267270838999934],[127.72709664100012,-19.38523489399995],[127.7169875620001,-19.478202773999897],[127.64909364300001,-19.474748591999912],[127.51929467600019,-19.401838270999974],[127.48733514900005,-19.293201429999954],[127.33006281700011,-19.295536124999956],[127.0804061550001,-19.34486194899995],[126.78652958900034,-19.360157077999872],[126.68591305600012,-19.327385009999944],[126.56618494500003,-19.321661007999978],[126.54590610400021,-19.253751834999946],[126.3672485190001,-19.25200655499998],[126.29249568900025,-19.191493906999938],[126.17906959600009,-19.19998930099996],[126.07909394300009,-19.27749256999988],[125.89017489800005,-19.27872085399997],[125.77574917900017,-19.31149677699983],[125.5028533540002,-19.302120277999904],[125.36598207200018,-19.346918028999937],[125.04530336500011,-19.265338976999885],[124.8756256490002,-19.162555721999865],[124.76696014200013,-19.11663814699989],[124.73211673700007,-19.068615038999894],[124.79085543900021,-18.97334297499998],[124.74182130500014,-18.91599466399998],[124.635154714,-18.811634100999925],[124.47943135800006,-18.754880905999926],[124.27593232800007,-18.846282876999908],[124.02780921800013,-18.900381021999863],[123.88830568300023,-18.843219793999936],[123.75351713600003,-18.811872481999842],[123.72061917200028,-18.877140014999952],[123.5111924590002,-18.925474092999934],[123.29765308300023,-18.91488271999998],[123.23018647300034,-18.825372709999954],[123.09499358300002,-18.83789627999994],[122.74119562900012,-18.900247581999906],[122.28833766200012,-19.073768566999888],[122.10074614200005,-19.16390805599991],[121.98514561600018,-19.24728972099996],[121.85505680200004,-19.388706173999935],[121.85272981800006,-19.468116826999903],[121.96566775000008,-19.545619926999905],[121.93840024500003,-19.701847035999833],[121.7007446240001,-19.685032099999887],[121.37350456200011,-19.676456406999876],[121.27616116200022,-19.704742479999936],[121.25948335400017,-19.747577693999972],[121.14981838900019,-19.766138076999823],[121.07146452500012,-19.749406791999945],[121.03435515800004,-19.856668497999976],[120.78090669000005,-19.857097651999936],[120.6534194510001,-19.912572774999887],[120.39736169700006,-19.996795646999942],[120.20686333300011,-20.089254408999977],[120.02786259400023,-20.08935934999994],[119.5026550560001,-20.252923975999977],[119.39915464400019,-20.25716019099991],[119.41519157300024,-20.317861597999922],[119.62039950500014,-20.33016204099988],[119.80202478600017,-20.363697029999912],[119.98385626100003,-20.420789691999914],[120.03927606400009,-20.40504462299998],[120.18711104300007,-20.521682660999943],[120.30144506400006,-20.47828871099989],[120.38698573900024,-20.584010995999904],[120.46987907400012,-20.528896293999935],[120.63150781500008,-20.578762080999923],[120.61782067000013,-20.634298392999938],[120.75218961900009,-20.68536379699998],[121.09581764300003,-20.78218835699988],[121.17671960400014,-20.90254209299991],[121.09805292800013,-20.975177821999978],[121.13660431800008,-21.062393200999907],[121.11409002400012,-21.119302802999982],[121.20300290700004,-21.287605215999974],[121.25736994200008,-21.312080372999844],[121.32646180200027,-21.47880547999989],[121.3430710460002,-21.595108074999928],[121.31076048600005,-21.674232402999962],[121.38182075200018,-21.812002224999958],[121.39997109300009,-21.998794613999905],[121.35562127000014,-22.1995257719999],[121.40473939000003,-22.309953658999973],[121.40242028600017,-22.41602127999988],[121.20717625600003,-22.428249301999983],[121.19100186600019,-22.469606450999947],[121.23974615300017,-22.61402697699998],[121.23247535400014,-22.678447937999863],[121.15075682800011,-22.8275606549999],[121.24612427800002,-22.851278255999944],[121.30738073600014,-22.91119193199995],[121.26654812700019,-23.076482726999927],[121.20756534500015,-23.102706852999972],[121.09854125900029,-23.07314103099992],[120.95266731000004,-23.143068230999972],[120.90269473900003,-23.23893742199988],[120.838073785,-23.287691096999936],[120.89686579500017,-23.368804953999813],[120.87232978600014,-23.491067918999875],[120.77785484100002,-23.597511216999976],[120.79603569100004,-23.723161477999838],[120.73987576700017,-23.79645367699993],[120.49910744200008,-23.848236068999938],[120.4223099310002,-23.9177493709999],[120.28433994900001,-23.87004661999987],[120.20851138500007,-23.926788247999866],[120.13142402700021,-23.939868878999903],[120.0290221480002,-24.0278532129999],[120.06952669000009,-24.124013926999964],[119.99111180700027,-24.127656868999964],[119.94197088800001,-24.325420331999965],[119.83625798900016,-24.38791077199994],[119.90869909000003,-24.428039468999884],[119.95443712400004,-24.54814727999991],[120.05647271400005,-24.581047087999877],[120.10349267600009,-24.63341319599988],[120.27799216600022,-24.66427804599988],[120.27624504200003,-24.81792252199989],[120.31740571900002,-24.905288775999907],[120.25252526200018,-24.966257062999944],[120.10395049600015,-25.044069287999946],[120.01097876100005,-25.046630796999864],[120.03587334900033,-25.175670698999966],[120.15128327100001,-25.181152295999937],[120.35348511900008,-25.134273484999937],[120.47534944100005,-25.181837096999914],[120.50262449000002,-25.134185810999952],[120.58763894800006,-25.137092654999947],[120.64719387900016,-25.407764424999982],[120.72145083600003,-25.385766957999977],[120.83846287400002,-25.28959082199998],[120.95067593800024,-25.273193136999907],[121.05014046300005,-25.294847448999974],[121.16052241700015,-25.212207750999937],[121.22381584400011,-25.240409836999902],[121.31232455000008,-25.106597949999923],[121.37270359000001,-25.08702285299995],[121.32941441300022,-24.994863491999922],[121.39005278900015,-24.952230618999977],[121.44383996500005,-24.80472756299997],[121.57022095900015,-24.76280597699997],[121.67761224900005,-24.75737953299995],[121.79719552100028,-24.79185111599992],[121.83128354800033,-24.843332261999876],[122.01813511300008,-24.881284680999954],[122.09091182600002,-24.98392292999995],[122.19842532400014,-24.927228909999883],[122.44906619000017,-25.07067680199998],[122.48031610400017,-25.12744927599988],[122.56124120000027,-25.10590560499992],[122.67138678400033,-25.165126767999936],[122.83163452300016,-25.015710794999904],[123.0013734270002,-25.023597663999965],[122.99259941900004,-25.105781553999975],[123.03126530600014,-25.168218685999932],[123.13071424000009,-25.223562212999923],[123.11262508700008,-25.308559404999926],[123.15514380000013,-25.341516544999934],[123.12165072100004,-25.46050268999994],[123.17633828100008,-25.556915195999977],[123.0992430440001,-25.689394024999956],[123.14210507900032,-25.791030636999892],[123.20639042100004,-25.725915821999934],[123.30319972600023,-25.792076027999883],[123.39341733600008,-25.78391272499988],[123.4733352620002,-25.736043842999948],[123.50549310400015,-25.79366104599984],[123.58650973000022,-25.829721501999927],[123.55622105200007,-25.913722923999956],[123.67918390700004,-25.987489706999895],[123.7192153740001,-25.894624757999964],[123.81720736600005,-25.80429466299995],[124.00602717000015,-25.724548397999968],[124.10588832600001,-25.64652830299991],[124.18964382200022,-25.62156112699995],[124.12193296400005,-25.547182129999896],[124.11835473000008,-25.49132345099997],[124.03105167600017,-25.395492481999895],[123.92276000100014,-25.31310843199998],[123.9337310750002,-25.212161986999888],[124.06040962800012,-25.156598852999878],[124.05857080600003,-25.120408980999912],[123.94920356500018,-25.06502153199989],[123.92761999700008,-24.97736928899991],[124.05702970900018,-24.85548401099993],[124.0363922900001,-24.773931277999964],[123.94883744300023,-24.721353275999945],[123.9785308380001,-24.63426396099993],[124.12416841700019,-24.55130943899991],[124.29664619200025,-24.537296236999964],[124.36440281600028,-24.50302883799992],[124.39795691400013,-24.38146408399996],[124.48831936300019,-24.334535651999943],[124.44391639800017,-24.27916144799991],[124.34762576500009,-24.278051348999895],[124.19955458400011,-24.24284366699993],[124.13898460500002,-24.159664173999943],[124.26290886400022,-24.10301591999996],[124.24334717800025,-23.97417064499996],[124.36683658400023,-23.939001016999953],[124.33651739700008,-23.871780332999947],[124.24119571100016,-23.810173008999982],[124.36781307600017,-23.78017417799998],[124.34825893400034,-23.721931518999952],[124.41574867800011,-23.674610142999825],[124.45192715100018,-23.580858219999925],[124.38129419400002,-23.529189989999963],[124.47514351400002,-23.384971633999953],[124.403488132,-23.262142219999873],[124.54265588800013,-23.19205291299994],[124.60032639900021,-23.103109519999975],[124.49050905100012,-23.034959786999934],[124.69248961600022,-22.909646980999923],[124.78398898600005,-22.93256779799998],[124.7707672040001,-22.839397412999972],[124.602668805,-22.760961573999907],[124.54585274600015,-22.68402676599993],[124.60913108600016,-22.625869936999834],[124.57827763600017,-22.575386237999965],[124.44489289000012,-22.492742516999897],[124.47052005500007,-22.431575745999965],[124.84764870100014,-22.285085725999977],[124.91085059900001,-22.28396992799992],[125.06974767800034,-22.220439962999933],[125.14486696500023,-22.231029491999834],[125.19293969400007,-22.187168165999935],[125.33888237500003,-22.18793661899997],[125.5527649070001,-22.145317155999976],[125.6615982200002,-22.07835966399989],[125.84317019200023,-22.093275092999875],[125.84068294600013,-21.999271377999946],[126.13401787300006,-22.098300881999876],[126.23552708000011,-22.184503559999882],[126.56130215200005,-22.26320258899989],[126.7291946910002,-22.24283020699994],[126.81255322000015,-22.26196106199984],[127.49803917700001,-22.72023960699994],[127.27327727000022,-22.913715389999936],[127.2973175730001,-22.98877549999986],[127.40383144600014,-23.0088520029999],[127.50581356000009,-22.899429441999928],[127.65759256000001,-22.960803916999964],[127.78819267000017,-22.92597191199991],[127.84574130700003,-22.97004882099992],[127.8209000290002,-23.031393120999894],[127.90939331300001,-23.068891575999942],[128.14920040200013,-23.054922127999816],[128.3233185140001,-23.079768938999962],[128.44300840400012,-23.063440321999906],[128.58296204700014,-23.11692239599995],[128.56948847300032,-23.184232766999912],[128.4990845090001,-23.203237557999955],[128.50280758300016,-23.273708408999937],[128.44717404200014,-23.334075881999922],[128.5872954910002,-23.38825030099997],[128.48883059200034,-23.49331661899987],[128.48916620400007,-23.540424423999923],[128.7077789790003,-23.50638953899994],[128.7778473310001,-23.50723644599998],[128.96781914400026,-23.582963923999955],[129.11113319000003,-23.613044279999883],[129.1868526950002,-23.653131076999955],[129.19242030700002,-23.742212847999895],[129.1478794200002,-23.78452668999995],[129.02650550700002,-23.80902417599998],[128.88513183600014,-23.915306049999913],[128.76167294000004,-23.948993756999982],[128.6303100770001,-24.081033709999872],[128.4166565390001,-24.126863441999944],[128.35420230700004,-24.176870378999865],[128.41281125600005,-24.243093616999943],[128.3566741310001,-24.295524599999965],[128.4301452000002,-24.43209648099986],[128.49468987800003,-24.50059121399994],[128.7531280930001,-24.646091497999976],[128.94169610500023,-24.679880123999908],[129.03208856000003,-24.72387086699996],[129.18882629300003,-24.619046617999913],[129.41027835500017,-24.584573693999914],[129.58666997600005,-24.590091667999957],[129.94453432600028,-24.656322449999948],[130.03518678800003,-24.71030039699997],[130.05700689400032,-24.824123456999928],[130.2002563010002,-25.042287800999873],[130.32687383400003,-25.14149282199986],[130.41957097700003,-25.156503637999833],[130.44161990800012,-25.269658994999872],[130.55651853500024,-25.39981452899991],[130.8795012600002,-25.62344169399995],[130.9927520040003,-25.670780167999965],[131.08712770700004,-25.672958289999883],[131.25737002800008,-25.598718599999984],[131.2617950030002,-25.69894403299992],[131.31283576400006,-25.757924971999955],[131.45814510800017,-25.744821542999944],[131.55690002100016,-25.771863908999876],[131.69334416100014,-25.510868039999878],[131.6880340570001,-25.442148168999893],[131.60054023200007,-25.15279581899989],[131.5176544410001,-25.009029415999976],[131.5252075420001,-24.879833274999953],[131.60781857300003,-24.773324933999902],[131.7049408590001,-24.708166197999958],[131.80140684200012,-24.700744692999933],[131.94645684900024,-24.649618100999874],[132.348968581,-24.640108161999876],[132.40209962100016,-24.58042331199988],[132.23527527300007,-24.536394179999945],[132.00474544200017,-24.551179856999852],[131.81552129600016,-24.476125780999894],[131.76992793300008,-24.424266778999936],[131.50129698900014,-24.344789572999957],[131.4116667840001,-24.296316187999935],[131.313461221,-24.188068435999924],[131.36230475000013,-24.063619635999828],[131.4331512780002,-24.012214596999968],[131.64691160200016,-23.913391120999904],[131.64442435500007,-23.802278600999955],[131.5778502520003,-23.698770478999904],[131.44433592100017,-23.64080425399993],[131.3067322290002,-23.47451785599992],[131.19549565600005,-23.39882273199987],[131.19192530100008,-23.291341754999905],[131.30972305900002,-23.240867610999885],[131.4234924750001,-23.240532],[131.7392731340001,-23.201810791999947],[131.84088141400002,-23.244426734999934],[132.04502870100032,-23.24137303999987],[132.24633787500022,-23.16619876799996],[132.47731010200005,-23.132720942999924],[132.85105899700022,-23.115724622999892],[132.9346312660001,-23.12216376899994],[133.19021611300002,-23.237142525999957],[133.2688140580001,-23.257343079999885],[133.43116766700007,-23.25887680099987],[133.25575253800014,-23.022287357999915],[133.1742247830001,-22.848924621999913],[133.10258482500012,-22.788455895999903],[132.84733575500002,-22.77850154799995],[132.52247615500028,-22.690521235999938],[132.35310370800016,-22.58128542399993],[132.1181334810002,-22.579793947999974],[131.8353577390002,-22.523460349999937],[131.66131590100008,-22.43833357299991],[131.52801514200007,-22.34147079199994],[131.44102473400005,-22.338340821999964],[131.32859809900015,-22.436092420999955],[131.22445680800013,-22.446172664999892],[131.04016122000007,-22.309051601999954],[130.92709353700002,-22.273881974999938],[130.80186455100022,-22.40041736299986],[130.71133429700012,-22.615024762999894],[130.47904963200017,-22.604898417999948],[130.16137701000002,-22.50539583899996],[130.1424712920002,-22.43480881499994],[130.2191923600003,-22.248327226999947],[130.31141659700006,-22.16137671699994],[130.44749428000011,-22.066881151999894],[130.63841241000034,-22.000310902999956],[130.82502743700002,-22.013801576999924],[130.90852359800022,-21.993129791999934],[131.11929325900007,-21.843307463999963],[131.31771855600016,-21.833337859999915],[131.5201110070002,-21.85724640099994],[131.6181945300001,-21.956209184999977],[131.73001096300015,-22.00896069299995],[131.8788604870001,-22.010229041999935],[132.13671884200005,-21.88422204799997],[132.41572574500015,-21.81379293899994],[132.6169433880001,-21.805263513999876],[132.97953798200012,-21.927701997999918],[133.1020659840001,-21.933427843999937],[133.12261958400018,-21.874937078999892],[133.0632934790002,-21.686943060999965],[132.9151611100001,-21.55720142599995],[132.8021393590002,-21.42745593399991],[132.95124822100001,-21.192272136999918],[133.01388551200023,-21.12704081299995],[133.15325929500023,-21.138233168999875],[133.1996306660002,-21.192804386999967],[133.1514586950001,-21.3153285329999],[133.18038933600008,-21.390295101999982],[133.28073111100014,-21.387706769999966],[133.37094117700008,-21.31967924399993],[133.50176994500032,-21.31018824699987],[133.61718741100015,-20.945505218999926],[133.66856378300008,-20.94225890799993],[133.89511103600012,-21.060481964999894],[134.14245613800006,-21.221958322999967],[134.16543579600022,-21.312677337999958],[134.2807922410002,-21.43966870299994],[134.24716186600006,-21.57039638499998],[134.1642303100001,-21.71150773699992],[134.20837393900013,-21.788152697999976],[134.42294311700005,-21.937007922999953],[134.61833198500017,-22.034532539999873],[134.69303871500006,-22.123657315999935],[134.80343625900002,-22.197164595999936],[135.1075134340001,-22.251222673999962],[135.23777776400004,-22.22896570299997],[135.40657035100014,-22.10098460399996],[135.5112152270002,-22.062557265999885],[135.60317996000026,-22.082973401999823],[135.6995849220001,-22.153165806999937],[135.78422538100028,-22.154865320999875],[135.9647521290001,-21.968420110999944],[136.15728763100003,-21.837118100999874],[136.48344424700008,-21.656778267999982],[136.58563238700026,-21.53625672699991]]]},"properties":{"objectid":285,"eco_name":"Great Sandy-Tanami desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Australasia","eco_biome_":"AU13","nnh":2,"eco_id":210,"shape_leng":88.8335147444,"shape_area":71.7890304516,"nnh_name":"Nature Could Reach Half Protected","color":"#FF7F7E","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":827851.0729847959,"percentage":3.137917768689342}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[127.22476197700018,-26.357976869999902],[127.16462701900014,-26.444026995999934],[127.06678774500006,-26.52819253599995],[126.96060160500008,-26.536851879999915],[126.84587866400011,-26.59191511699987],[126.7497332050001,-26.603822615999945],[126.69031523500007,-26.690017748999878],[126.55352777200005,-26.72564704099989],[126.603538565,-26.854124014999968],[126.58272546100011,-26.927337591999958],[126.40270229700002,-26.94177441399995],[126.33657830200002,-27.05541223399996],[126.34594725800002,-27.1041239999999],[126.21934514700001,-27.11483188099993],[126.16058348100012,-27.09123045299998],[126.00966647500002,-27.109638285999893],[125.92266081100001,-27.186080907999894],[125.97116856200034,-27.235498429999893],[125.86544040800004,-27.29973414999995],[125.78909300500004,-27.20619009899991],[125.71503436500007,-27.202753015999917],[125.6900405350001,-27.112766243999886],[125.61959080600013,-27.033603694999954],[125.58015445500007,-26.88368983599986],[125.43913262100023,-26.767860483999982],[125.45190429500019,-26.7380733789999],[125.21591952200015,-26.639968901999964],[125.14910133700005,-26.45153801899994],[124.95856475200003,-26.41653250899998],[124.87607576000005,-26.35560797499994],[124.81297310500008,-26.39981647999997],[124.71051791800005,-26.3062534849999],[124.66019447900021,-26.297113354999908],[124.50002284800007,-26.19694139799998],[124.4481506010003,-26.09193609999994],[124.47073362800006,-26.00215904399994],[124.41587826300008,-25.94207387399996],[124.23836514300024,-25.806690211999978],[124.18964382200022,-25.62156112699995],[124.10588832600001,-25.64652830299991],[124.00602717000015,-25.724548397999968],[123.81720736600005,-25.80429466299995],[123.7192153740001,-25.894624757999964],[123.67918390700004,-25.987489706999895],[123.55622105200007,-25.913722923999956],[123.50452415600012,-25.9863757519999],[123.51857759000006,-26.184984277999945],[123.4452895820001,-26.38479040899989],[123.39983368300011,-26.41148760899995],[123.36878208400026,-26.56723208699998],[123.20864113000016,-26.617053951999935],[123.14312750400006,-26.658088731999953],[123.02690889600012,-26.642644907999852],[122.89159396600007,-26.66631892299995],[122.74613944700002,-26.774030737999965],[122.73598477200017,-26.875984184999936],[122.90537264200009,-27.006338033999953],[122.961776815,-27.130712568999854],[122.89593512200008,-27.21385199599996],[122.89974218200018,-27.30394555299995],[122.77161406300002,-27.335212733999924],[122.68865199700008,-27.42078777399996],[122.42978664000009,-27.60059351099983],[122.48992159900001,-27.718255985999917],[122.56756585100004,-27.765062376999822],[122.50131227000008,-28.00049394399997],[122.42768093900008,-28.01782604399989],[122.44311520700012,-28.204194978999965],[122.49961845600012,-28.243104946999892],[122.50543968800002,-28.403190579999944],[122.56764983800008,-28.578924221999955],[122.54206843700013,-28.642747887999974],[122.71337123500007,-28.809242324999957],[122.6520232490002,-28.886917085999926],[122.62786861600011,-29.016189501999918],[122.72752374400011,-29.1853180359999],[122.86314394400017,-29.25755143399988],[122.77497101600022,-29.372068515999956],[122.7659988600002,-29.4292698079999],[122.63296514800015,-29.42119216799989],[122.56178300900012,-29.44819061399994],[122.59935757200014,-29.547161107999955],[122.71398931800013,-29.617166595999947],[122.77989203200002,-29.707252441999913],[122.90151210600004,-29.793954847999885],[122.81975552500012,-29.918130899999937],[122.96426389500016,-29.938583413999936],[123.0147553060001,-30.08692935399995],[123.09519961600006,-30.120685624999965],[123.31124870300016,-30.27824595899989],[123.43360135500018,-30.32040793799996],[123.66048438700022,-30.49434852299993],[123.63502502600022,-30.56256480899998],[123.76470949700001,-30.592880308999895],[123.74999992700009,-30.6428012479999],[123.8755113840001,-30.587543550999953],[124.01853179800003,-30.572397283999976],[124.1065292080001,-30.748792591999973],[124.37916569700008,-30.71764393199993],[124.4455185190003,-30.75307088299985],[124.52908324400028,-30.707769378999956],[124.52125555200007,-30.583103153999957],[124.5580826160002,-30.48454303699998],[124.63452155100015,-30.428951237999968],[124.63134765900008,-30.345764200999895],[124.72367097000017,-30.331075753999983],[124.8345717630001,-30.432323444999952],[124.93494421500031,-30.365713130999893],[124.87271126600001,-30.26655571899994],[124.87448118900033,-30.166192989999956],[124.96945955100011,-30.063087533999976],[124.97776031800004,-30.008802473999936],[124.85481238300008,-30.01170730499996],[124.91494750800018,-29.89438630999996],[124.90791324800011,-29.790348115999905],[125.07366940600014,-29.743097315999933],[125.08691398700023,-29.68453983199987],[125.19113926500006,-29.65954968999995],[125.04681395700004,-29.55525014799997],[125.1021118860001,-29.461236877999966],[125.19268807400022,-29.440656456999932],[125.25002297300023,-29.344015123999895],[125.36938479500009,-29.30632405299997],[125.46217346900005,-29.195301050999888],[125.45706939300032,-29.140886071999944],[125.65819550600008,-29.063527977999968],[125.86953731500034,-28.961219808999886],[126.49240106700017,-28.893392610999967],[126.74160762200006,-28.917684538999936],[126.82373032400005,-28.940662352999937],[127.06200402600018,-28.93452260999993],[127.12715907500012,-29.012592493999932],[127.2432100450003,-28.975738438999826],[127.41577918200016,-29.052326235999942],[127.50388337800007,-29.007947913999942],[127.53632352300019,-29.059808759999953],[127.73646543400002,-29.09032827599998],[127.91516878300001,-29.06559763799993],[128.01976018200003,-29.1149006629999],[128.0903473740001,-29.18279072699994],[128.21545415300022,-29.254085518999887],[128.22167972700004,-29.316850718999945],[128.33596798300005,-29.36356356799996],[128.41255192300014,-29.449720312999943],[128.51387002200022,-29.384727537999936],[128.62716686600004,-29.39232070399993],[128.76281740700017,-29.447694741999896],[128.90348820600002,-29.342410996999945],[128.99971329400012,-29.316466826999942],[129.06193625700007,-29.337005154999872],[129.40847791400006,-29.530023891999974],[129.51947040800007,-29.511421439999936],[129.6331790800001,-29.54532061699996],[129.77098112800002,-29.526218551999875],[129.92607122500021,-29.56371892699991],[129.83187852000003,-29.707721832999937],[129.88636742600022,-29.765819825999984],[129.98147579500016,-29.796319826999934],[129.97247286200002,-29.856218250999973],[130.1113736640002,-29.93731876499993],[130.271270694,-29.890214828999945],[130.32698040700006,-29.84631907699992],[130.42688007200002,-29.851913259999947],[130.41157514800022,-29.953914845999975],[130.44667090300015,-30.075616924999906],[130.5008695570001,-30.12021440599989],[130.60757433400022,-30.13261381999996],[130.91267422900034,-30.13071039199997],[131.30686984600015,-30.207708486999934],[131.47216799700016,-30.274603162999938],[131.65287746700017,-30.375203851999913],[131.7229614260001,-30.392102869999974],[131.82806377800034,-30.477600028999973],[132.01826512900016,-30.55850241099995],[132.07788067400008,-30.680801520999978],[132.0300752400001,-30.74260126699994],[132.10006699300004,-30.80279907299996],[132.1458739220003,-30.902799589999972],[132.2153622630002,-30.929937364999944],[132.32476811800007,-31.04119872699988],[132.36036698500004,-30.99760028299994],[132.57017495200012,-31.046998886999972],[132.6395724260002,-31.142497903999924],[132.74357634000012,-31.156396936999954],[132.7211762520002,-31.251796929999955],[132.7623752610001,-31.345996747999948],[132.86927811300006,-31.41749540799998],[132.84207144900017,-31.5206963629999],[132.9732664190003,-31.566495690999943],[132.85697927500019,-31.648197429999982],[132.85408007800015,-31.710697062999884],[133.01412961200015,-31.766668328999913],[133.09597807900002,-31.779396],[133.16906742000015,-31.83979416199992],[133.2589720530001,-31.860195464999947],[133.30886809400022,-31.794992327999978],[133.67807037600016,-31.87869052699989],[133.8092651940001,-31.87218645799993],[133.8283687720001,-31.96488771399993],[133.93936168900007,-31.973686235999935],[134.03805561700028,-32.01388572299993],[134.13815271600004,-31.984285297999918],[134.22375451400023,-32.07608444399989],[134.39976465700022,-32.12878384099986],[134.44325269100023,-32.19018522999994],[134.61465481900018,-32.26568241199993],[134.70515452100005,-32.262080941999955],[134.9792825850002,-32.428815852999946],[135.08375414900001,-32.50920053899995],[135.17959539000003,-32.64485699499994],[135.24290643900008,-32.573006549999945],[135.16645056900006,-32.518941502999894],[135.19425352200017,-32.44559666499998],[135.11756747800007,-32.28824360099998],[134.95654936000005,-32.16914741799991],[134.87381557100014,-32.063524507999944],[134.70934854700022,-31.94952111299989],[134.6495668140002,-31.853927962999876],[134.76644394300024,-31.84722639399996],[134.87933314500015,-31.894623342999978],[134.98975044300028,-31.904319621999946],[135.1043554260001,-31.950749526999914],[135.48889475700025,-31.913724292999973],[135.5496084350002,-31.980638216999978],[135.52369262600007,-32.077788859999885],[135.6327082150002,-32.03898750399998],[135.57897630900004,-31.918245700999876],[135.45719487300005,-31.881836474999886],[135.36245480900004,-31.797890262999942],[135.301886093,-31.82474893799997],[135.16109166100023,-31.829683719999935],[134.9254575340001,-31.776434062999954],[134.6453887030001,-31.691018106999934],[134.54502246500022,-31.5912801099999],[134.77578693800012,-31.624112322999963],[134.75192408500004,-31.54866778899998],[134.811833846,-31.355055531999938],[134.88397715100018,-31.40541100899992],[134.9842413330001,-31.423724088999904],[135.06351911800027,-31.386152798999888],[135.09901292500012,-31.292054062999966],[134.97330343600004,-31.273227352999925],[134.89326850400005,-31.214536572999975],[134.66538532000004,-31.160961245999943],[134.57695261900017,-31.175074872999915],[134.521332324,-31.133714882999925],[134.30543542500016,-31.140478345999895],[134.29206843100008,-31.10146710999993],[134.385147468,-31.012279178999904],[134.37243682400026,-30.920774420999976],[134.27554302400029,-30.917276479999884],[134.0875753480003,-30.95365024299997],[134.0028397110001,-30.680264171999966],[134.02764745500008,-30.575548658999935],[133.8718047010002,-30.506519143999924],[133.79162478900002,-30.42584747799998],[133.73153045200013,-30.436061643999892],[133.48745507100023,-30.35925009999994],[133.45650461000002,-30.318025407999926],[133.27442817700035,-30.316887055999814],[133.23454675000005,-30.218868676999932],[133.11738857500018,-30.27936535799995],[133.0960923550001,-30.19673395899997],[133.04253367700028,-30.158497651999937],[132.8164027790001,-30.09567303299997],[132.64112565400012,-30.135969445999876],[132.55929887300022,-30.020658099999878],[132.55584242600014,-29.77704781799997],[132.39828591700007,-29.788635110999905],[132.308477583,-29.770527340999934],[132.30504683800007,-29.710707916999922],[132.3834701410001,-29.662955324999928],[132.5555434360001,-29.681272565999905],[132.6874763410001,-29.644549559999973],[132.61179749000019,-29.52617585699994],[132.74477579000006,-29.483913927999822],[132.81220394900004,-29.515682348999974],[132.9502902700001,-29.525919451999926],[133.0552440780001,-29.47877603099988],[133.1335632590002,-29.494524290999948],[133.3612711200003,-29.48370490399992],[133.40314764200002,-29.564275444999964],[133.4692866700002,-29.523302541999954],[133.6218873900001,-29.50153512099996],[133.70586471800004,-29.519867027999908],[133.89667252700008,-29.485882230999948],[133.99563044900015,-29.54520769399994],[134.1904446850001,-29.525518164999937],[134.21134780500017,-29.47240374299986],[134.11077173700016,-29.443464416999916],[134.07308384500004,-29.38484807799989],[134.2043604500003,-29.362924696999983],[134.3898508840001,-29.30575637899983],[134.36508011900003,-29.256454108999947],[134.4108771450002,-29.118390751999925],[134.2615107050002,-29.055443008999873],[134.16206853900007,-28.91468309499993],[134.0432419880002,-28.494669272999943],[134.13301185100022,-28.400676329999953],[134.23477461400023,-28.33954327999993],[134.18408766900006,-28.199362347999966],[134.03101285800017,-28.16282308199993],[134.07407258500018,-28.0992991089999],[134.05188492700006,-28.012716791999935],[134.09553058100016,-27.814288500999965],[133.98161079300007,-27.832601383999872],[133.89729893900005,-27.792766059999906],[133.88262735500007,-27.70711815599998],[133.801365464,-27.654562083999963],[133.80437003800012,-27.60157799299992],[133.73015114700013,-27.54319441599995],[133.74236043000008,-27.48330449599996],[133.61557175200016,-27.36814058199991],[133.524382155,-27.37321950299986],[133.49270955300028,-27.3142318269999],[133.44166032700014,-27.39627623399997],[133.51897098100017,-27.432935114999907],[133.4950823580001,-27.594190330999936],[133.35726176800006,-27.597156151999968],[133.31627687900027,-27.552519587999882],[133.20478154700027,-27.568971531999978],[133.16605442900016,-27.476255183999967],[133.30448029100012,-27.422867381999936],[133.35219222900025,-27.26609513399984],[133.15181415400014,-27.278293332999965],[133.00610934600002,-27.16015102299997],[132.8602667020001,-27.142543110999952],[132.746821941,-27.222501209999905],[132.6422122150002,-27.22918126399992],[132.49591062100012,-27.179382445999977],[132.3283078190001,-27.234985555999913],[132.21681194100006,-27.206483921999904],[132.110610715,-27.120685856999955],[132.14460787500013,-27.0770890899999],[132.33320598000012,-26.99448400999995],[132.4287108750002,-26.872484200999963],[132.61051917400005,-26.86038042099989],[132.8281704540001,-27.06100711099998],[132.7914084990001,-27.121407230999978],[132.92232376100003,-27.122930416999964],[133.01524763500004,-27.030587927999875],[133.04300269300018,-26.962924621999946],[132.92602926500024,-26.96189714299993],[132.86621119300003,-26.87127878399997],[132.84800744200004,-26.775181100999873],[132.7507172490001,-26.74847994299995],[132.66160612500005,-26.66337981299995],[132.57301348600015,-26.63028150199989],[132.49841345200002,-26.671981631999984],[132.2731173730001,-26.70038246999991],[132.15270966300022,-26.87718230899992],[132.02771009700018,-26.847187217999874],[132.03190616600023,-26.75178742299994],[131.9185182330002,-26.69398681699994],[131.61831698900005,-26.569288118999907],[131.54571568000017,-26.571689566999908],[131.41072096200003,-26.62968994599987],[131.291824259,-26.712291882999978],[131.1428223690002,-26.680694356999936],[130.92123444900005,-26.415193295999927],[130.67012028800002,-26.395797704999893],[130.56002824600012,-26.250198470999976],[130.48962416200004,-26.225297766999972],[130.35162358200012,-26.268699508999873],[130.26292434900017,-26.266899258999956],[130.22842443500008,-26.31220217699996],[130.1171267740002,-26.356601921999925],[130.04283136000004,-26.44370665699995],[129.9269256770002,-26.450202888999854],[129.8724215860001,-26.385906362999947],[129.78492749500003,-26.411207054999977],[129.6824341560001,-26.349306138999964],[129.4209290990001,-26.31680652299997],[129.09085883800014,-26.379796786999975],[128.92710874400007,-26.490940173999945],[128.7840729070001,-26.41216469999989],[128.6847381340002,-26.40229601599998],[128.65303040000003,-26.332542487999888],[128.57577490100016,-26.28986937999997],[128.53926098400018,-26.146705635999922],[128.60400397700016,-26.11893085799983],[128.4817505670003,-26.03837590799992],[128.40025332300002,-26.059507355999983],[128.1983642890002,-26.038852669999926],[128.1369475680001,-26.09833518099998],[127.98985288000029,-26.089347769999904],[128.02888488800022,-26.232265420999965],[127.90744016400015,-26.197576579999918],[127.83290861600005,-26.123573259999887],[127.6857451950001,-26.16992937499998],[127.61451712200005,-26.151050646999977],[127.54407493800022,-26.21275335699994],[127.49926763000008,-26.358732246999978],[127.39663692500017,-26.285858136999934],[127.22476197700018,-26.357976869999902]],[[129.77754201900007,-26.936206663999883],[129.83364852600005,-26.966707493999934],[129.95384209700012,-26.969806964999975],[130.06004318400005,-27.05770502499996],[130.12254343100005,-27.18310559799994],[130.18493677400033,-27.229105045999916],[130.2313382540002,-27.403205764999882],[130.35704017900002,-27.372804660999975],[130.4327394610001,-27.451203994999958],[130.58514400700017,-27.488704492999943],[130.6990359030002,-27.613702832999934],[130.61814895400005,-27.730400199999963],[130.42004388400017,-27.688903654999933],[130.2374418750003,-27.708505883999862],[130.1511381900002,-27.613008519999937],[130.1537478560001,-27.54490657799994],[130.00123598800008,-27.438810453999906],[129.87783798600003,-27.414209310999865],[129.77453640300007,-27.29710956999986],[129.65783711200015,-27.211910039999964],[129.54754654400017,-27.16351121599996],[129.4127501700001,-27.165610972999957],[129.29093935900005,-27.07651517399995],[129.3130490960002,-27.035213441999872],[129.50154106500008,-27.006212536999953],[129.64013706700018,-27.00350793499996],[129.77754201900007,-26.936206663999883]]]},"properties":{"objectid":286,"eco_name":"Great Victoria desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Australasia","eco_biome_":"AU13","nnh":2,"eco_id":211,"shape_leng":83.8369368088,"shape_area":38.9245538329,"nnh_name":"Nature Could Reach Half Protected","color":"#B3493B","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":424022.1418060374,"percentage":1.6072294359583599}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-74.72095461799984,10.81084566300018],[-74.81000563299989,11.040616428000135],[-74.85954251399988,11.075163113000087],[-75.00683551899994,10.98502630500019],[-75.03517154799994,10.913588518000097],[-75.15715053599996,10.837821477000148],[-75.25900256199998,10.80519190200016],[-75.2798465109999,10.716927947000045],[-75.39115851999998,10.68220339800007],[-75.50901763399997,10.578223710000032],[-75.49967164499998,10.506206733],[-75.41638151099994,10.476634708000063],[-75.37010954999988,10.384086259000185],[-75.45304864899998,10.209308658000054],[-75.47336554499992,10.089948848],[-75.45680960899995,10.007830504000083],[-75.58232156899999,9.942679144000124],[-75.64754450999999,9.753650631000085],[-75.56667356099996,9.609048720000033],[-75.62179563899991,9.442406426000048],[-75.73129263099997,9.38484253300004],[-75.6150896129999,9.32999052000008],[-75.40196949899996,9.322226195999974],[-75.26840957199988,9.39689286000015],[-75.20909855399992,9.604867156000068],[-75.22371659299989,9.722459726000068],[-75.26730349599995,9.772549141000184],[-75.29469253799994,10.034882929000105],[-75.19894454899998,10.196403377000138],[-75.04494451199997,10.300932080000052],[-75.01325253599992,10.439270363],[-74.92091363499998,10.517070853000064],[-74.79616560199997,10.494991411],[-74.7583085689999,10.532000867000136],[-74.6981585229999,10.709647593000057],[-74.72095461799984,10.81084566300018]]],[[[-74.09254455999996,11.325324869000099],[-74.15470156899988,11.325954852999985],[-74.21398157399994,11.25984745300019],[-74.2367855469999,11.179252101000145],[-74.21555351599989,11.067569611000124],[-74.21688858499994,10.877678768000067],[-74.18320456599992,10.868563448000089],[-74.07852163599995,10.960470010999984],[-74.13850354099998,11.100953223000033],[-74.10990163799994,11.18188368300008],[-74.05120048799989,11.226266531000078],[-73.88413256099994,11.23385500300003],[-74.00951359499993,11.34497942600018],[-74.09254455999996,11.325324869000099]]],[[[-71.60325661099995,12.441489439000065],[-71.59951761099995,12.407057754],[-71.71323355099992,12.34192902500007],[-71.77375759699999,12.277076564000083],[-71.83994261299989,12.35555112700007],[-71.92393464799989,12.30040289800013],[-71.8658064839999,12.247810479000066],[-71.93112950599993,12.155352722000032],[-71.99104351699998,12.246833484000149],[-72.12847152599988,12.24297495899998],[-72.14787261399994,12.08497356900017],[-72.23473360599996,11.905550885000025],[-72.34504649299993,11.835899784000048],[-72.52111859499996,11.781504585],[-72.62509157799991,11.724549385000046],[-72.73403955499992,11.699128246000157],[-72.87524461699991,11.575333571000044],[-73.03057050299998,11.49463109900006],[-73.27778652299997,11.287985334000155],[-73.25447862999994,11.161184070000104],[-73.16209463399991,11.09381184100016],[-73.09761064099996,10.953556617000118],[-73.10640761599996,10.806991664000066],[-73.17443061599988,10.739273430000026],[-73.17872650899989,10.650647544000037],[-73.33534253799985,10.570593160000158],[-73.33117656399992,10.477312804],[-73.36774462799991,10.383794400999989],[-73.4535295519999,10.3112324330001],[-73.57163961999993,10.246705860000077],[-73.56146952199992,10.159415044000127],[-73.61423460799989,10.000891127000102],[-73.58136748899994,9.912587441000028],[-73.47457164899993,9.849515967],[-73.37422149299988,9.861900061000085],[-73.22064960399996,9.991407841000068],[-73.22076460299996,10.110616609999965],[-73.19382449599988,10.156104360000086],[-73.24301151499992,10.241255276000118],[-73.16343657599992,10.298627392000128],[-73.13867157299995,10.415609927000048],[-73.03064761599995,10.6130423030001],[-72.9403535639999,10.699652341000103],[-72.88587152899999,10.80367813000015],[-72.80474057299995,10.849190858000043],[-72.72629551499989,10.98343860500006],[-72.63195752999991,11.004651023000179],[-72.59141560499995,11.080718806000164],[-72.43711851399996,11.198860558000092],[-72.34877057199998,11.198951585000088],[-72.1964566389999,11.158087292000175],[-72.11249561799991,10.972464347000141],[-71.97529559799995,10.810671654999965],[-71.93437162599997,10.718486813000084],[-71.92701751199996,10.526956134000045],[-71.82857557899996,10.388686918000076],[-71.77403252399989,10.34232409700013],[-71.62970754999986,10.439249408000137],[-71.58998856099993,10.71347929600006],[-71.67026556799993,10.797749275000115],[-71.74440752499999,10.942335260000107],[-71.87693061099998,10.982232449000094],[-71.97561662499993,11.08382547400015],[-72.00698857899994,11.158284435000041],[-71.99141651199983,11.540934073000074],[-71.93467756499996,11.60813631700006],[-71.80020149599994,11.65564611800005],[-71.43349457299996,11.728678981000087],[-71.33624253499994,11.800487080999972],[-71.28321861599994,11.917859207000049],[-71.13586458999993,12.006249895999986],[-71.11371658399997,12.086158603000172],[-71.23753355499997,12.319680605000087],[-71.29697449199983,12.356784105000145],[-71.42905451099995,12.384465172000148],[-71.49120364099997,12.43076999100009],[-71.60325661099995,12.441489439000065]]]]},"properties":{"objectid":288,"eco_name":"Guajira-Barranquilla xeric scrub","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Neotropic","eco_biome_":"NO13","nnh":4,"eco_id":602,"shape_leng":20.596488813,"shape_area":2.60459330079,"nnh_name":"Nature Imperiled","color":"#F7975B","color_bio":"#CC6767","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":31673.88784297879,"percentage":0.12005789291014407}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-79.54486059899995,-1.759412733999909],[-79.60143257799996,-1.593465131999949],[-79.68390664999998,-1.577170544999831],[-79.7853166139999,-1.707031705999952],[-79.8023685899999,-1.890445013999852],[-79.83371757899988,-2.006851208999933],[-79.80713655199997,-2.071541564999904],[-79.85866564299988,-2.162816634999956],[-79.76776155599998,-2.173759711999878],[-79.72924050799998,-2.315173147999815],[-79.63674955999988,-2.410504052999954],[-79.61045854699995,-2.603462672999967],[-79.70205665499992,-2.716959173999953],[-79.7382435109999,-2.884577791999959],[-79.6802365499999,-2.894614952999973],[-79.61668361899996,-2.673829419999947],[-79.56298059699998,-2.615582904999883],[-79.47724965299989,-2.418383712999912],[-79.49093663099995,-2.322001716999921],[-79.61797359299993,-2.136331664999886],[-79.59814452499995,-2.065121864999981],[-79.53432454699993,-2.003268448999961],[-79.43215953999999,-1.957531922999976],[-79.42161560899996,-1.914505266999925],[-79.54486059899995,-1.759412733999909]]]},"properties":{"objectid":289,"eco_name":"Guayaquil flooded grasslands","biome_num":9,"biome_name":"Flooded Grasslands & Savannas","realm":"Neotropic","eco_biome_":"NO09","nnh":4,"eco_id":582,"shape_leng":3.68457003111,"shape_area":0.237694387105,"nnh_name":"Nature Imperiled","color":"#46B7F1","color_bio":"#BEE7FF","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":2943.5266900571337,"percentage":0.25455042305995773}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-55.81796250699995,2.227987022000093],[-55.86441048799992,2.285938830000134],[-55.978759595999975,2.304171313000097],[-56.09531062999997,2.121175926000035],[-56.05704154299997,2.004868638000175],[-56.060172518999934,1.837750084000049],[-56.10404256199996,1.84597642000017],[-56.13298761999988,1.545801021000102],[-56.16423049399998,1.37803756400001],[-56.08538846899995,1.236919003000082],[-56.07735458199994,0.988213519000112],[-55.96451555699997,0.939980360000163],[-55.86006949999995,0.973542842000143],[-55.846824583999876,1.044812320000062],[-55.764877566999985,1.120031854999979],[-55.66728254199984,1.154814071000033],[-55.65668463099996,1.062619171000165],[-55.555107530999976,1.034035372000062],[-55.596038543999896,0.940007182000045],[-55.679260616999954,0.973015620000069],[-55.76859259399998,0.894277530000181],[-55.856468633999896,0.745571839000092],[-55.925414481999894,0.715140166000026],[-55.97305252599995,0.638458660000026],[-55.971679569999935,0.541745914000103],[-55.90375547699995,0.465124925000168],[-55.81564356899986,0.465438911000035],[-55.672920544999954,0.553882239000188],[-55.633506488999956,0.487873243000138],[-55.389564607999944,0.510888440000087],[-55.32166247499998,0.551687185999981],[-55.28320362099993,0.625012914000024],[-55.188735548999944,0.932723644000134],[-55.145675532999974,1.008324219000031],[-55.044410575999905,1.068405701000017],[-55.04017654099988,1.152432269000144],[-55.08341961799988,1.178164543999969],[-55.180961501999946,1.150294548999966],[-55.260131594999905,1.248924236000164],[-55.35947458199996,1.645949341000062],[-55.301208619999954,1.759421032000091],[-55.13893849499988,1.853516109000054],[-55.230911609999964,1.936119933000043],[-55.400375586999985,1.933036901000037],[-55.52381855699997,1.954861365000113],[-55.57616454899983,1.99102558900006],[-55.76071947199995,2.226342157000147],[-55.81796250699995,2.227987022000093]]],[[[-50.75534059299997,2.034590364000167],[-50.75743858299995,2.146173109000188],[-50.79129761699994,2.186847132000025],[-50.86236559399998,2.556913354000187],[-50.94311550899994,2.509583932000112],[-50.897125514999914,2.050072409000109],[-50.911819493999985,1.807500466000079],[-50.98354360699989,1.742767362999984],[-50.97389955699998,1.684002511000187],[-50.89552356499996,1.631351586000108],[-50.92739860199998,1.545446131000062],[-50.89054152999995,1.464529081000023],[-51.093872586999964,1.188404715000047],[-51.20821348099997,1.090707096000074],[-51.25714853999989,1.009547977000182],[-51.16772452999999,0.918864670000062],[-51.18843855999995,0.799427746000049],[-51.33921860399994,0.71471503600003],[-51.37326053099997,0.632227218000082],[-51.32063257199991,0.520076515000142],[-51.227371493999954,0.465057702000024],[-51.22402158299997,0.34422167200006],[-51.28840650099994,0.313809948000142],[-51.423828552999964,0.38651072000016],[-51.473052619999976,0.270784297000091],[-51.54026760499994,0.185147734000111],[-51.36164053099998,-0.053745223999897],[-51.167968610999935,-0.091043519999914],[-51.05960049299995,-0.041952388999903],[-51.010280536999915,0.063549788000159],[-50.91340249999985,0.146593661000054],[-50.86180853299987,0.270300494000139],[-50.86512759899995,0.393401146999963],[-50.766990599999986,0.367094209000072],[-50.731231556999944,0.504735956000104],[-50.744590466999966,0.649785126000154],[-50.89127360499998,0.737586400000055],[-51.03392756199992,0.774760476000097],[-51.040214492999894,0.82889566800003],[-50.978828618999955,0.89611149100017],[-50.85977156299998,1.111082329000055],[-50.75856058499994,1.260617326000045],[-50.73908255099985,1.159204009000177],[-50.68118254299992,1.117161891000023],[-50.650360607999914,1.213424864000103],[-50.58529658799995,1.298932346000186],[-50.66172060199989,1.322791602000052],[-50.695968554999865,1.431278407000093],[-50.804511518999846,1.548659585000053],[-50.807319624999934,1.702822062999985],[-50.72821055199995,1.908917975000122],[-50.75534059299997,2.034590364000167]]],[[[-60.11413950499997,5.534489912000026],[-60.257156565999935,5.516614330000152],[-60.15883248299991,5.427235917000189],[-60.11413950499997,5.534489912000026]]],[[[-61.564681494999945,5.958784869000112],[-61.6920056219999,5.97012491300012],[-61.727004593999936,5.905688697000187],[-61.83282863599999,5.887029910000138],[-61.927295534999985,5.805117929000119],[-62.00757958299994,5.800187526000116],[-62.0794026019999,5.719305178000127],[-61.945575626999926,5.689465602000155],[-61.946918575999916,5.614065019000122],[-61.87779955799988,5.48506954100003],[-61.66527556499983,5.380376385000091],[-61.55736157899992,5.298038435000137],[-61.5471765609999,5.226867360000085],[-61.68540151999997,5.119911425000055],[-61.75473360599989,5.120207474000154],[-61.88905360399997,5.285415121000142],[-61.90621152799997,5.190003079],[-62.01485457199988,5.067422271000112],[-61.90528448899994,4.92978639200004],[-61.79504754299995,4.894817930000045],[-61.65253054599992,4.771106068000165],[-61.60476258199998,4.769554075000087],[-61.45743152299991,4.882627961000139],[-61.42010858499998,4.835868340000047],[-61.55424451699997,4.732194927000023],[-61.771099606999826,4.70720377900011],[-61.73436356999997,4.670547370000179],[-61.660816559999944,4.70506605900016],[-61.535354556999835,4.690663938000171],[-61.29648255399991,4.694389861],[-61.322593522999966,4.814857926000172],[-61.236679517999846,4.843196806000151],[-61.14129262199992,4.71279953800007],[-61.09886560699994,4.609697938000011],[-61.04558553699991,4.614049654000041],[-61.00280748799992,4.511366311000188],[-60.93893453599998,4.551543455000171],[-60.77825160799989,4.55036227800008],[-60.74273647799998,4.449678018000156],[-60.88159158899998,4.448613014000159],[-60.92868061899998,4.376604251000117],[-61.02281157099998,4.327487807000182],[-61.12723549999998,4.304682660000026],[-61.12613663199994,4.222395840000161],[-61.270946582999954,4.108363233000091],[-61.47742051799992,4.032987795000111],[-61.71247858799984,3.904076136000128],[-61.90627254799995,3.917852296000092],[-62.05308560599997,3.857440567000026],[-62.00038153999998,3.782148278000079],[-61.79980460799999,3.707847903000129],[-61.60954261399996,3.66884070500015],[-61.520400570999925,3.496308616000022],[-61.56415561399996,3.399333852000098],[-61.52309451499991,3.311327221000113],[-61.63888547799996,3.293307470000116],[-61.621856635999904,3.222491955000066],[-61.72465548199989,2.917981436000161],[-61.78218048299988,2.839395394000064],[-61.8043595019999,2.715083555000035],[-61.79679852199996,2.587256179000121],[-61.869049521999955,2.56127211200004],[-61.972495617999925,2.465824363000081],[-62.04043563699986,2.370275360000107],[-62.049980612999946,2.280217175000189],[-61.96356151499987,2.147532989000069],[-61.90879851799997,2.106212218000053],[-61.92522453399988,2.025302209000188],[-61.85428647599997,2.016964898000026],[-61.76340451699997,2.104398374000084],[-61.64184563099997,2.144915153000056],[-61.52005758299998,2.006156601000043],[-61.5366135189999,1.908049945000073],[-61.49531554599997,1.797423072000072],[-61.41891449899998,1.74900668500004],[-61.39547752399994,1.649487175000047],[-61.28511853699996,1.531141910000031],[-61.21735353199995,1.532382935000101],[-61.17402663599995,1.666087031000075],[-61.0987395439999,1.81078516700012],[-60.98478656399993,1.916428327000176],[-61.02185050199995,2.041248780000046],[-61.0018925199999,2.132595264000031],[-60.89035051099995,2.225777049000101],[-60.832252521999976,2.307649970000057],[-60.68214453899998,2.411166475000073],[-60.59394847699997,2.415323061000095],[-60.42824562699997,2.574738980000177],[-60.39697257899985,2.646681861000104],[-60.296081621999974,2.670272895000153],[-60.18973555399998,2.631983858000183],[-60.105598512999904,2.513612778000038],[-60.0969165379999,2.421957672000076],[-60.019676628999946,2.307007079000073],[-59.95129354299996,2.252786223000044],[-59.88909948599991,2.315448326000137],[-59.74434653299983,2.296765734000132],[-59.711742605999916,2.243496895000021],[-59.7295834869999,2.062403362000111],[-59.66175058799996,2.001531970000144],[-59.54829750499988,2.06218627100003],[-59.47942759799997,2.204520710000054],[-59.28044859199997,2.405350607000116],[-59.29389551199995,2.477918443000135],[-59.168418588999884,2.618562923000184],[-59.09305555599997,2.836678484000174],[-59.12375259999993,2.980944952000073],[-59.30876551099993,2.957212766000055],[-59.339973515999986,3.032625084000074],[-59.42726550499998,3.001355221000154],[-59.49993157699993,3.043130124000072],[-59.610595497999896,3.036863645000039],[-59.69415251099997,3.10154478000004],[-59.77544356099992,3.103869585000098],[-59.83134850799996,2.984697697000172],[-59.87921856299994,3.048054995000143],[-59.85633060299995,3.128786804000015],[-59.75123260099997,3.271256359],[-59.58114249599993,3.403871311000103],[-59.40563550099995,3.590018461000057],[-59.382690543999956,3.678038],[-59.40625760599994,3.767513307],[-59.37163548499984,3.807327515000168],[-59.28630050199996,3.800456869000129],[-59.11867149099987,3.838394201000085],[-59.09920150299996,3.972042139000166],[-59.31208055399992,4.011381260000178],[-59.38500562599995,3.952840540000125],[-59.502494594999916,3.956078469000033],[-59.61797358399991,4.071053035000148],[-59.63269857599988,4.137567963000151],[-59.710540472999924,4.196222510000155],[-59.66894561399994,4.316459737],[-59.54691348499995,4.433513015000187],[-59.50572548399998,4.546392776000062],[-59.519454537999934,4.653169841000079],[-59.61556261399994,4.506732795000175],[-59.74816147199988,4.513106227000094],[-60.09128155199994,4.552658249000046],[-60.05573255899992,4.608193219000157],[-59.81720354399988,4.561652534000018],[-59.74337054399996,4.624908913000127],[-59.820758476999856,4.731397975000164],[-59.87022763099998,4.741689444000031],[-59.959712493999916,4.679811887000142],[-59.96910056099989,4.776400581000075],[-59.946807547999924,4.879755147000139],[-60.07091553899994,4.831495501000177],[-60.09717553899992,5.027346213000158],[-60.16156062499988,4.909426917000076],[-60.37512950699988,4.94614015600007],[-60.4084314779999,5.01022852300008],[-60.57641252999997,4.971968152000159],[-60.63613560099992,5.108267286000057],[-60.839187540999944,5.117505652000034],[-60.885059517999935,5.150342260000059],[-60.95434147999998,5.292204631000061],[-61.05132663799992,5.359155920000148],[-61.0997046359999,5.423226015000068],[-61.214588509999885,5.431083546000139],[-61.270473507999895,5.493638863000115],[-61.04672262599996,5.552365662000057],[-61.043743529999915,5.635785548000058],[-61.11495953199994,5.707887182000036],[-61.177532618999976,5.699071934000074],[-61.16516159999992,5.845274957000015],[-61.26292459799987,5.887547912000173],[-61.27476152199995,5.806436067000107],[-61.41052656099998,5.956346070000052],[-61.564681494999945,5.958784869000112]],[[-60.23963956199998,2.99517088500005],[-60.20553560999997,2.929760692000059],[-60.11402852799989,2.899592043000155],[-60.22089360299998,2.82563432000012],[-60.310394558999974,2.793966820000094],[-60.527893547999895,2.826937371000042],[-60.517333522999934,2.885266030000082],[-60.42328655799997,2.910055173000046],[-60.39555352199994,2.969451853000123],[-60.23963956199998,2.99517088500005]],[[-61.4257816249999,2.573309363000078],[-61.32160948799998,2.561469254000031],[-61.303817556999945,2.439157338000143],[-61.23426050099988,2.374877863000165],[-61.29795055999989,2.22777797700013],[-61.370407586999875,2.402898901000128],[-61.442550627999935,2.402070936000086],[-61.55427552999993,2.519000330000097],[-61.4257816249999,2.573309363000078]],[[-61.71312751499988,2.327864606000048],[-61.74691060799984,2.201332065999964],[-61.84657260999995,2.190366693000158],[-61.934524590999956,2.235251449000089],[-61.841567607999934,2.28276678200001],[-61.7666545159999,2.391999912000074],[-61.71312751499988,2.327864606000048]],[[-61.29589062399998,1.650023112999975],[-61.35405751099995,1.684643559000108],[-61.38450661899992,1.760235753000075],[-61.29571560999989,1.870561715000179],[-61.187881586999936,1.908806663000178],[-61.17395052899997,1.748713821000138],[-61.201881543999946,1.67573007500016],[-61.29589062399998,1.650023112999975]]],[[[-61.05566460799997,5.996278966000091],[-61.01097162999997,5.853273639000179],[-60.933502559999965,5.900941858000124],[-61.05566460799997,5.996278966000091]]],[[[-60.981174633999956,6.300165704000165],[-61.04672262599996,6.297186943000156],[-61.052684505999935,6.228663041000061],[-60.972236507999924,6.175036965000174],[-60.89036559799996,6.273290640000141],[-60.981174633999956,6.300165704000165]]],[[[-60.92456460099993,6.511695436000139],[-60.87689252699994,6.583198267000057],[-60.90370958799991,6.642784881000182],[-60.99905055199986,6.624907958000108],[-61.00501259899994,6.541488073000039],[-60.92456460099993,6.511695436000139]]]]},"properties":{"objectid":294,"eco_name":"Guianan savanna","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Neotropic","eco_biome_":"NO07","nnh":1,"eco_id":570,"shape_leng":55.257953262,"shape_area":8.50414290552,"nnh_name":"Half Protected","color":"#FCD379","color_bio":"#FEAA01","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":105195.35007453916,"percentage":0.490672478855688}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-14.923069432999853,10.894813557000191],[-14.95433057899993,10.9742481830001],[-15.077989466999952,10.889444110000113],[-15.014889493999931,10.776976823000041],[-14.923069432999853,10.894813557000191]]],[[[-16.118770552999933,11.207642110000165],[-16.246969582999895,11.103839112000173],[-16.16161951299989,11.016006154000081],[-16.063470443999904,11.036244930000066],[-16.06547958599998,11.183903721999968],[-16.118770552999933,11.207642110000165]]],[[[-15.660679510999955,11.306330638000134],[-15.708820552999953,11.306535156],[-15.783670445999974,11.23433109500013],[-15.73130953499998,11.17875488600015],[-15.660679510999955,11.306330638000134]]],[[[-16.27973947199996,11.590765493000049],[-16.412740493999877,11.500601696000103],[-16.28244045599996,11.49225231500003],[-16.27973947199996,11.590765493000049]]],[[[-15.490800042999922,11.591021057999967],[-15.540590558999895,11.609205345000078],[-15.624480501999926,11.524721125000156],[-15.566530537999881,11.502552668000078],[-15.490800042999922,11.591021057999967]]],[[[-15.994950564999954,11.880255642000122],[-16.10419056799998,11.861697941000045],[-16.149179510999943,11.808970573000067],[-16.040340581999885,11.773013885000069],[-15.994950564999954,11.880255642000122]]],[[[-15.882809584999904,13.428489887000069],[-15.99481947199996,13.411972006000155],[-16.145637569999963,13.333089412000106],[-16.214836550999962,13.255988476000141],[-16.361141497999938,13.230288387000087],[-16.53314753899997,13.24214928300006],[-16.628047446999915,13.30343524500006],[-16.732719479999957,13.450629343000116],[-16.824289592999833,13.328647506000095],[-16.794160506999958,13.22870437500012],[-16.78226055099998,13.07667458900005],[-16.748880459999896,13.037037239000142],[-16.791479470999832,12.792424805999985],[-16.772199584999953,12.572178565000115],[-16.67483296699993,12.558407014000124],[-16.513179498999932,12.443827320000139],[-16.39089054899989,12.334704831000067],[-16.304750567999918,12.33170478000011],[-16.20352953099996,12.420768704000068],[-16.071159498999975,12.42641844200017],[-16.018609491999882,12.388331074000064],[-15.996190582999873,12.299908198000026],[-16.03158953999997,12.239691097000048],[-16.152490446999877,12.13638816300005],[-16.023349457999927,12.009637862000034],[-15.881030441999883,12.130889635000187],[-15.685059533999947,12.170955803000084],[-15.24722947999993,12.104311458000154],[-15.241379581999979,11.99241808000005],[-15.206669450999982,11.969179588000031],[-14.963199470999939,12.033795345000158],[-14.880169510999963,12.03345604500015],[-14.840299479999885,11.991399175000026],[-14.84805944599998,11.913813430000062],[-14.904499493999936,11.875925886000118],[-15.038800548999859,11.85656838400007],[-15.28411052499996,11.784632376000104],[-15.284079511999892,11.747134926000115],[-15.12559046299998,11.77184427400016],[-15.026679478999881,11.719236599999988],[-14.925180498999907,11.58839559400019],[-15.005829494999944,11.559738538000147],[-15.150340546999928,11.558037849000016],[-15.169799469999873,11.520020554000155],[-15.09193946899984,11.44632535300019],[-15.188619524999979,11.357521603000066],[-15.123749461999978,11.338622757999985],[-15.072999551999942,11.427517703000092],[-14.995670460999975,11.439766849000023],[-14.999540552999974,11.321345141000165],[-15.086589466999953,11.16187624800017],[-14.991270463999967,11.205661969],[-14.949754562999942,11.327831561000039],[-14.885589584999934,11.387429575],[-14.802029553999887,11.313144622000095],[-14.75104059299997,11.088190267000073],[-14.68251953999993,11.121588966000104],[-14.62716058999996,11.197352653000166],[-14.569370552999885,11.12616749600005],[-14.60848051299996,10.94079131400008],[-14.362750436999875,11.006727052000087],[-14.284749450999925,11.00175608100011],[-14.223730536999938,10.947931019000066],[-14.227390578999916,10.886254293000036],[-14.367810591999955,10.767352637999977],[-14.497839558999942,10.557887201000028],[-14.552129480999952,10.417447072000073],[-14.46345045399994,10.338523407000082],[-14.471150572999875,10.254808310999977],[-14.317090521999944,10.19705247200011],[-14.238039451999953,10.114588123000033],[-14.137599440999907,10.046332944000085],[-14.078619508999907,10.065041520000136],[-14.032739485999912,9.995554536999975],[-13.878179537999927,9.905385878],[-13.82666050499995,9.845578149000175],[-13.717709509999963,9.874726888000112],[-13.69289957999996,9.93308706199997],[-13.594710444999976,10.015296266000178],[-13.550860518999968,9.999646079000115],[-13.453060472999937,9.846645164999984],[-13.451435556999968,9.740754403000096],[-13.372534522999956,9.732221122000055],[-13.173868497999877,9.638803638000127],[-12.904731453999943,9.46582680500012],[-12.638825465999957,9.3272286830001],[-12.469089578999899,9.221508241000095],[-12.239845532999936,9.060873760000106],[-11.997127577999947,8.852465449000022],[-11.825662504999912,8.68476636500003],[-11.754996522999875,8.648425115000123],[-11.636852591999968,8.634588102],[-11.519827476999922,8.70258126200008],[-11.407070426999894,8.93633058100005],[-11.33822952099996,9.165774285000055],[-11.225230569999951,9.330352618],[-11.119007548999832,9.384159743000055],[-10.980388471999902,9.39115209400012],[-10.744183590999967,9.3493661280001],[-10.570587502999956,9.304340219999972],[-10.482567460999917,9.195849056000043],[-10.09461459299996,8.637586979000105],[-9.898488451999867,8.410646950000057],[-9.66689847799995,8.558608496000147],[-9.5456904589999,8.622416740000176],[-9.437308426999948,8.651925901000084],[-9.394556529999875,8.706343060000108],[-9.357707503999904,8.84563201900005],[-9.451747428999909,8.85451432200017],[-9.603284526999914,8.914935103000118],[-9.676959443999976,8.924210348999964],[-9.721634484999981,9.027009195000062],[-9.714920580999944,9.09611111400011],[-9.625506460999873,9.14104800600012],[-9.487113527999952,9.14101196300004],[-9.536904547999939,9.206611252000187],[-9.534811585999876,9.27667625099997],[-9.415894507999951,9.286977443000183],[-9.359119519999979,9.24269283100017],[-9.296470492999958,9.127199089999976],[-9.214260450999973,9.11445390299997],[-9.23420351399983,9.279600027000129],[-9.091124425999965,9.334742053000014],[-9.114941435999981,9.13453241700006],[-9.046071528999846,8.965685515000075],[-9.086887541999943,8.76136204100004],[-9.037912583999969,8.70842378400016],[-9.012168574999919,8.55462575100006],[-8.940340525999886,8.525396881000177],[-8.889683487999946,8.71546726500003],[-8.904140426999902,8.859413879000101],[-8.936432546999924,8.921175598000161],[-8.973025589999963,9.152582007000092],[-8.94801952299997,9.280042927000181],[-8.862925435999898,9.375482294000165],[-8.912603466999883,9.111776053000085],[-8.907039559999873,9.001301898000122],[-8.867416458999969,8.929306882000049],[-8.86537747799997,8.669622613000058],[-8.825425470999903,8.549498038000081],[-8.852480577999927,8.49842492300013],[-8.73742856399997,8.454227986000149],[-8.719144447999952,8.399991875000126],[-8.592021486999897,8.315781744000049],[-8.162296564999963,7.957460579000099],[-7.96967657499988,7.83333867500005],[-7.560275588999957,7.667294514000105],[-7.532002423999927,7.812245113000188],[-7.416940518999979,7.787293863],[-7.358716465999976,7.816403878000131],[-7.240882497999962,7.751253356000063],[-7.282471489999978,7.670854141000177],[-7.475164570999937,7.587683365000032],[-7.463328485999966,7.490853105000156],[-7.392522525999937,7.522179127000015],[-7.192718573999912,7.655516264000084],[-6.867346502999908,7.839562070000113],[-6.887896582999929,7.944500480999977],[-6.75646046199995,7.972454463000076],[-6.64970049599998,7.973324337000122],[-6.700633465999886,7.819016517000023],[-6.564864571999976,7.800167796000039],[-6.514922510999952,7.734272793000116],[-6.558864469999946,7.631288037000104],[-6.461643445999812,7.618035913000028],[-6.454854439999963,7.451604005000036],[-6.367269585999964,7.122343067000145],[-6.258336528999962,7.133234009000091],[-6.256256474999873,7.189840186000083],[-6.363028510999868,7.523619809000024],[-6.275671477999936,7.567055837000055],[-6.204659490999916,7.541811556000027],[-6.124720441999955,7.428943697000079],[-6.069753429999935,7.261934779000114],[-6.121409422999875,7.136064075000149],[-6.09033452299991,7.064739108000026],[-5.929119510999953,7.087262623000129],[-5.852408500999957,7.048098180000181],[-5.700170507999871,6.884745281000164],[-5.566891541999951,6.929149920999976],[-5.553917528999932,7.051889147000054],[-5.410555468999974,6.935041394000109],[-5.323113442999841,6.994588278000151],[-5.267226432999962,6.975656576000119],[-5.159267519999958,6.826411593000159],[-5.02731155399988,6.683696783000187],[-5.020127424999941,6.566426246000105],[-4.964557585999898,6.301289717000145],[-4.794613492999929,6.1068300660001],[-4.746907555999883,6.452244608000058],[-4.719317514999886,6.520370706000108],[-4.55185245399997,6.55351828300013],[-4.505845528999885,6.59962411500004],[-4.531040523999877,6.722849826000129],[-4.45400144599995,6.796379737000052],[-4.2840845099999,6.88217136600008],[-4.279777552999974,6.947673592000115],[-4.408240445999979,7.11385353999998],[-4.260980464999818,7.24804881600005],[-4.22728253199989,7.317277804000071],[-4.233306437999943,7.509120960000075],[-4.325473509999824,7.745987677000073],[-4.268977470999971,7.98219993400005],[-4.212750490999838,8.036804010000026],[-4.032803434999948,8.069786464000174],[-3.948700423999981,8.050715790000027],[-3.855459462999931,7.994375822000109],[-3.714767540999958,7.985798452999973],[-3.688338561999956,7.927394860000163],[-3.532318486999941,7.893741351000187],[-3.412625579999883,7.79284033600004],[-3.358747544999972,7.616430108000088],[-3.301059430999885,7.584137652000038],[-3.220007432999978,7.722454478000031],[-3.146559497999874,7.805332557000042],[-2.777340517999903,8.02708670200019],[-2.667942432999951,8.054285475000086],[-2.526774418999935,8.018539340000132],[-2.389225543999942,7.953876813000079],[-2.277813454999944,7.853756991000125],[-2.104943574999936,7.657853138000178],[-1.625123537999968,7.295082524000179],[-1.401775490999967,7.169952445000092],[-0.988799455999924,6.999141830000156],[-0.700087482999947,6.850389703000076],[-0.69888853599997,6.798662297000078],[-0.603055553999923,6.705613281000069],[-0.559444511999914,6.726167719000102],[-0.417499495999891,6.674227579999979],[-0.371388467999907,6.612287159000061],[-0.277996463999955,6.602417636000155],[-0.162499537999963,6.508128601000124],[-0.035277502999975,6.432856260000051],[-0.008194483999944,6.330780019000031],[0.074722571000109,6.470631486000116],[0.11111143100004,6.432856260000051],[0.06611150700013,6.275367508000045],[0.090000434000046,6.197595349000096],[0.117537501000072,5.986254880000047],[-0.151075506999916,5.746648287000028],[-0.417264467999928,5.53476685000004],[-0.551497461999816,5.451025100000038],[-0.822108546999914,5.334169635000023],[-1.25904542599983,5.203217317000053],[-1.36173245699996,5.148314175000166],[-1.328248429999974,5.093852256000162],[-1.246983531999945,5.100162991000161],[-1.092568422999932,5.192134932000101],[-0.809011487999953,5.213184574000081],[-0.724099455999863,5.297935170000187],[-0.495813461999944,5.378294320000066],[-0.466799503999937,5.428550535000056],[-0.33493557099996,5.50488016900016],[-0.212782574999892,5.5305331510001],[0.023361454000167,5.63722120000017],[0.069418503000179,5.688875683999981],[0.395277562000103,5.82262269600011],[0.549066542000048,5.894800437000072],[0.44658654400007,5.998768726000037],[0.526319566000041,6.050098160000118],[0.7864054960001,6.006699348000041],[1.003633581000031,6.062516285000072],[1.106220532000066,6.069169840000029],[1.434465584000122,6.182387391000134],[1.870625459000109,6.278036306000047],[2.327578490000178,6.338709048000169],[2.580795449999982,6.352603058000113],[2.844388535000121,6.38779732800009],[2.915324582000039,6.450372928999968],[2.772845471000153,6.475447057],[2.578694442000085,6.484954315000095],[2.565650524000148,6.61404601800001],[2.635752572000058,6.840199321000171],[2.762130549000176,7.031636457000161],[2.828634581000131,7.07847503500011],[2.929399474000036,7.099181521000105],[3.09760650100003,7.068909775000066],[3.227725490000068,6.98486996400004],[3.303335453000045,7.003164641000183],[3.332751575000145,7.065123167000081],[3.362405575000025,7.234989643000176],[3.441222455,7.381142206999982],[3.645900484000151,7.607482929000128],[3.729172513000094,7.679023646000132],[3.845288526000047,7.732915931000093],[3.989375453000093,7.76760242600011],[4.41727647200014,7.956151661000149],[4.643377473000044,8.085962196000082],[4.933845454000163,8.175941759000068],[5.078172439000184,8.178027679000138],[5.188559422000026,8.150439819000155],[5.404201483000179,8.027842415000066],[5.53667444600012,7.899911606000103],[5.548971536000067,7.794262410000101],[5.524579527000071,7.631909974000166],[5.518802552000011,7.409391232000075],[5.619608516000028,7.238256406000062],[5.796910579000155,7.136524912000027],[5.899371466000048,7.008116334000022],[5.954064558000084,6.991041392000113],[6.101597454000057,7.013552837000134],[6.196564584000157,7.004337437000061],[6.357419509000067,6.918593585000167],[6.557504423000069,6.675920556000108],[6.62358650900012,6.568080163000047],[6.699209549000159,6.320073395000179],[6.76850257500007,6.293138316000125],[7.114558500000044,6.417639083000154],[7.18774257299998,6.36623505],[7.26183055100006,6.148529028999974],[7.361153589000082,6.054285927000137],[7.574349475000076,5.969293931000095],[7.799216492000028,5.921227405000138],[7.890094427000065,5.931313684000088],[8.191458548000071,6.141512538000029],[8.413106578000168,6.202770001000147],[8.642021551000028,6.007590177000111],[8.724781445000076,6.258730771000103],[8.70628543500004,6.326371892000054],[8.584559581000178,6.432304061000139],[8.549212425000121,6.522613703000104],[8.574382442000058,6.569719999000029],[8.998478580000096,6.570033147000174],[9.217863496000064,6.486670258000061],[9.372847568000111,6.527184355000145],[9.413658552000186,6.637519202000135],[9.520906512000124,6.633614409000074],[9.550865446000046,6.580652180000129],[9.55467451800007,6.419109101000117],[9.623385504,6.306217270000104],[9.6846154750001,6.250017615],[9.815670554000178,6.209691273000089],[9.891278506,6.212842031000037],[9.94168459000008,6.260094842000058],[10.033045490000063,6.238043227999981],[10.075602592000166,6.122746630000051],[10.136432578000097,6.118692136000163],[10.221593553,6.167351431000043],[10.185096567000016,6.228177226000128],[10.083713592000151,6.297112177000031],[10.148598575000165,6.374157290000028],[10.172930570000176,6.455257567000046],[10.286478536,6.43903774600011],[10.363530522000133,6.540413177000062],[10.440581502000043,6.580963316000123],[10.529797474000134,6.552578336000067],[10.667678439999975,6.617457787000149],[10.809614571000111,6.613402790000123],[10.92721854000007,6.451202905000116],[10.982436507000102,6.422325740000076],[11.062782581000135,6.424679546000164],[11.086916427000176,6.579723297000101],[11.049710500000117,6.662398367000094],[10.938090538999973,6.70786901800011],[10.927755484999977,6.8050129290001],[10.8843474520001,6.883554380000135],[10.942225499000187,6.939359079000042],[10.969096540000123,7.092308025000136],[10.981498572000078,7.332066834000159],[11.091051555000035,7.387871701000108],[11.08071650100004,7.270059358000083],[11.161330460000102,7.185318485000153],[11.155127517000153,7.127445634000026],[11.241943582000033,7.119178060000024],[11.31429047000006,7.005499336000184],[11.41920256200018,6.999968957000078],[11.47155358200007,7.133216239000092],[11.533423594000112,7.052316121000047],[11.685718584000142,7.118940182000074],[11.719032459000061,7.199840300000062],[11.576256461000014,7.347364644999971],[11.561979565000058,7.45205914200011],[11.581015538000088,7.528200686000105],[11.657162446000143,7.537719008000181],[11.795179534000056,7.480613101000074],[11.790420456999982,7.56151305200018],[11.904641490000017,7.575790115000075],[11.961751588000027,7.551995736000151],[12.014337469000111,7.629392218000021],[12.014337469000111,7.709358592000058],[12.134843588000024,7.847930395000162],[12.237273462000132,7.992525936],[12.195096564000039,8.094948602000045],[12.261374452000098,8.203396012000098],[12.237273462000132,8.317370617000165],[12.172865577000152,8.368184061000022],[12.199386590000074,8.46100056299997],[12.269004498000129,8.444426523000175],[12.408993513000041,8.486562518000142],[12.502189548000047,8.622050786000102],[12.48448747100008,8.669839537000087],[12.544160587000022,8.72950829400014],[12.706603546999986,8.749396874000126],[12.796112550000146,8.828954043000124],[12.804456567000102,8.945433999000102],[12.328359437000188,8.917895927000131],[12.048990436000167,9.015840812000135],[11.88726949300019,9.052516332000096],[11.48945045400012,9.042710846999967],[11.237409475000106,8.997030313000096],[10.983440491000067,8.866567331000113],[10.862890451000112,8.793280663000132],[10.661910516999967,8.712543322000101],[10.476180451000062,8.6995574070001],[10.137669579000033,8.776242769000078],[10.001649563000171,8.841918165000038],[9.872233481000137,8.929812814000172],[9.650639430000126,9.12723882000006],[9.59116245100006,9.224429167000153],[9.568890561000103,9.321076031000132],[9.500904441000102,9.275754242000176],[9.358267583000043,9.256737715000156],[9.277441561000046,9.190178531000072],[9.015940431000104,9.11411192100013],[8.930358517000116,9.066569096000023],[8.821004520000088,9.061814713000047],[8.754441480000082,9.137882161000107],[8.659350465000102,9.194932075999986],[8.659350465000102,9.35182185800005],[8.67836850000009,9.427889473],[8.630823496000119,9.518218058000059],[8.549996468000074,9.541990645000169],[8.47867753600002,9.513464513000145],[8.374077587000045,9.570515602000171],[8.52146949900009,9.722648821],[8.603759504000095,9.934031870000183],[8.282309493000184,9.961099885000067],[7.93674256800017,9.95752031000012],[7.624342499000079,9.88783601700004],[7.438776550000171,9.90514179700017],[7.082135454000024,10.023925435000137],[6.505735442000116,10.293336566999983],[6.330444533000161,10.267737564000129],[6.063783503000138,10.127067268000076],[5.775576456000181,10.031524133],[5.301445553000121,9.836916625000072],[4.936282576000167,9.617311265000069],[4.810040553000135,9.526054803000022],[4.600642507000146,9.34435240800019],[4.227045492000116,9.111089072000027],[4.09241251300017,9.03702322300012],[3.97765855900019,8.937220404000072],[3.696098528000107,8.611578772000144],[3.485274553000181,8.423142188999975],[3.335885569000084,8.324442094000062],[3.123512448999975,8.145474044000025],[3.027317537000101,8.045122379000077],[2.695408421000138,7.772770037000043],[2.560236486000179,7.689216879000014],[2.232928531000141,7.577759023999988],[2.075459560000013,7.547220063000168],[1.70581947300002,7.520635180000113],[1.166097495000145,7.513605614000028],[1.121605515000169,7.595463783000014],[0.900164518000054,7.376693428000067],[0.780181430000084,7.183119576000024],[0.643235548000177,6.8845473],[0.520070522000083,6.794715761000077],[0.42452654900012,6.782831731000158],[0.385867535000159,6.871965225],[0.516725472000076,7.024790119000158],[0.580156530000124,7.13345512300009],[0.605391423000015,7.31009820100013],[0.566069568000046,7.766655271000161],[0.583860493000088,7.918078542999979],[0.54703946300009,8.084777498000108],[0.437696530000096,8.103323129000103],[0.010523563000106,8.23149885700019],[-0.340554462999819,8.448170384000036],[-0.710205445999918,8.625031559000092],[-1.373587484999859,8.868578485000057],[-1.582028485999956,8.910896199000092],[-1.99523451999994,8.916087112000127],[-2.499290493999979,8.893909602000122],[-2.838741479999953,8.842027130000076],[-3.115622563999978,8.79070876000003],[-3.342664516999889,8.772229346000131],[-3.614789540999936,8.770473169000013],[-4.105311423999979,8.747092856000052],[-4.490312520999964,8.763806874000124],[-4.685211550999952,8.795296678],[-5.086883583999963,8.81581725400008],[-5.407927574999974,8.81805304300002],[-5.776548421999962,8.793855662000169],[-5.990478562999897,8.766766524000047],[-6.056972535999932,8.789867049000122],[-6.197337562999962,8.776442928000051],[-6.721748485999967,8.767327609000176],[-6.924159545999885,8.790475911000044],[-7.113874536999845,8.829912095],[-7.444966585999964,8.937717284000144],[-8.124713452999913,9.223929102000113],[-8.40878453299996,9.363597089999985],[-8.65459457299994,9.511331822000159],[-9.114145490999931,9.805047959000092],[-9.37988149399996,9.962685909000015],[-9.59800845399991,10.134226754000053],[-9.80028858799983,10.347481985000059],[-9.887540512999976,10.473442879],[-9.965262547999941,10.690427889000148],[-10.076910503999954,11.080680752000035],[-10.167559445999927,11.256348679000041],[-10.294630438999889,11.392770188000043],[-10.37397956999996,11.450235343000031],[-10.801420589999964,11.595536137000067],[-11.192069581999874,11.760283953000169],[-11.428310504999956,11.87275635300017],[-11.65007051799995,11.99028924400011],[-12.051850508999905,12.227722074000155],[-12.2082095479999,12.346144788000117],[-12.395669471999895,12.520952899000065],[-12.575639494999905,12.667723040999988],[-12.778949428999965,12.782315225000104],[-13.02770051099992,12.8556205000001],[-13.78925944699995,12.966862772000184],[-14.381540483999913,12.97056271200006],[-14.932339481999918,13.03149864500017],[-15.167920582999841,13.069634963000055],[-15.40423057299995,13.13189188500013],[-15.639510595999923,13.241314445000057],[-15.828769442999885,13.36416632400011],[-15.882809584999904,13.428489887000069]],[[-12.410297568999908,12.170979775000092],[-12.220396499999936,12.16848984700016],[-11.982213489999936,12.141041964000067],[-11.902311488999942,12.029241457000126],[-11.846899564999944,11.770158170000116],[-11.831834434999905,11.636105555000029],[-11.850824474999968,11.397161802000142],[-11.884179587999938,11.24078264600007],[-11.872325564999926,11.042016541000066],[-11.8375054629999,10.965364874999977],[-11.754469468999957,10.87228719300009],[-11.71443246999985,10.708922559000086],[-11.753290469999968,10.569712222000135],[-11.847959540999966,10.36806341300013],[-11.898785556999883,10.300423131000116],[-11.965004436999948,10.284112115000084],[-12.021734497999887,10.337491595000131],[-12.058967582999912,10.567608532000122],[-12.040868538999973,10.801838135000082],[-12.037017557999832,11.061772016000134],[-12.046097505999967,11.28154685900006],[-12.06818147399997,11.434699150000029],[-12.108198523999931,11.525819993000084],[-12.234210546999975,11.660154911000177],[-12.446056444999897,11.770632083000123],[-12.523677561999875,11.843314080000141],[-12.531053468999914,11.982713680000018],[-12.594152435999945,12.098838746000126],[-12.410297568999908,12.170979775000092]],[[-11.313397461999955,10.959533249000117],[-11.244637525999963,11.046748126000125],[-11.167901536999864,11.030723100000102],[-10.91882657899987,11.030397212000139],[-10.88296343199994,10.962926076000088],[-10.907288553999933,10.88202646100018],[-10.823671525999885,10.861352832000023],[-10.800481481999952,10.808131603000106],[-10.854223562999948,10.709258673000022],[-10.992660583999964,10.720593688000065],[-11.047182517999886,10.66979918700008],[-11.220203439999977,10.624232646999985],[-11.221464580999964,10.501946882000084],[-11.191105494999874,10.441400204000104],[-11.2476585309999,10.33968547400002],[-11.220026580999956,10.265358445],[-11.261742474999949,10.225897283000108],[-11.344790539999963,10.304792785000188],[-11.575384574999816,10.363104679000173],[-11.676139577999948,10.405425914000034],[-11.709179530999961,10.50878768900003],[-11.577796551999882,10.611649399000157],[-11.541116504999877,10.750467629000127],[-11.430243539999935,10.804233012000054],[-11.40708953799998,10.909567719000052],[-11.313397461999955,10.959533249000117]],[[-12.260096546999875,11.583927872000174],[-12.260549504999972,11.474654677000103],[-12.190924554999981,11.402999463000072],[-12.202602557999967,11.295263844000033],[-12.16659943399992,11.279028097000037],[-12.128482561999931,11.157062521000057],[-12.19141355599993,11.022554768000134],[-12.339609459999963,10.953508673000101],[-12.30708851299994,10.907551871000067],[-12.17737051499995,10.859717188000047],[-12.126951522999946,10.780969543000026],[-12.13856548799987,10.660136026000146],[-12.23390544599988,10.503184889000124],[-12.293008591999978,10.493527763000088],[-12.378241483999943,10.596930440999984],[-12.414565466999875,10.790703950000136],[-12.6168554919999,10.842891188000124],[-12.654644463999944,10.924988577000022],[-12.744613465999976,10.983143562000066],[-12.73816258599993,11.090661084000146],[-12.769843496999954,11.146256236000056],[-12.889651571999877,10.996909497],[-12.981983431999936,11.045239215000038],[-12.947300457999972,11.15415668300011],[-12.896435548999932,11.217422450000072],[-12.996087492999948,11.349211281000123],[-12.940239542999905,11.41951633800005],[-12.870016460999977,11.436619109000162],[-12.760199446999934,11.42078820800009],[-12.701482538999926,11.501275769000017],[-12.654726438999944,11.506623255000022],[-12.491234567999982,11.633097792000115],[-12.432685464999906,11.636072530000035],[-12.294859483999971,11.571206825000047],[-12.260096546999875,11.583927872000174]],[[-12.88131845099997,9.849901702000068],[-12.819978509999885,9.765627868000138],[-12.845020451999858,9.668964408000022],[-12.822998509999934,9.600059464000026],[-12.840827488999935,9.511083718000066],[-12.913606547999962,9.539625774000172],[-12.944442563999928,9.674717243000032],[-12.939967465999871,9.834461733000182],[-12.88131845099997,9.849901702000068]],[[-8.640948499999922,8.898005335000164],[-8.625872472999959,8.983395303000066],[-8.506212590999894,9.002801756000054],[-8.278475442999877,8.907017557000131],[-8.309595437999974,8.845291043000088],[-8.390624469999977,8.808333723000032],[-8.455210553999962,8.719559813000046],[-8.586708532999978,8.802481143000023],[-8.582783455999845,8.881950302000064],[-8.640948499999922,8.898005335000164]],[[-7.466330547999974,8.029981309000163],[-7.465078458999869,8.108300639000163],[-7.354211528999883,8.122027681000134],[-7.352120578999973,8.050724843000125],[-7.466330547999974,8.029981309000163]],[[-7.646927536999954,7.878230304000112],[-7.659958546999974,7.962681332000159],[-7.576589454999919,7.954575864000049],[-7.569022440999902,7.887023758999987],[-7.646927536999954,7.878230304000112]],[[-6.257836463999979,7.751396519000139],[-6.229265573999953,7.85548885999998],[-6.16111047499993,7.837105335000103],[-6.174267547999932,7.772186824000187],[-6.257836463999979,7.751396519000139]],[[-6.099864578999927,7.749618717000089],[-6.042150481999954,7.834040408000078],[-5.995554475999938,7.804127742000105],[-6.00130747899982,7.722165470000107],[-6.099864578999927,7.749618717000089]],[[-5.500659586999973,7.581801784000049],[-5.438333430999933,7.499722500000132],[-5.503334587999973,7.457503691000056],[-5.531303489999971,7.538936731000092],[-5.500659586999973,7.581801784000049]],[[-5.862884538999879,7.333569709000074],[-5.775000451999915,7.245296031000123],[-5.80832354599994,7.181597758000066],[-5.868237557999976,7.190418873000112],[-5.99744643899993,7.301435838999964],[-5.862884538999879,7.333569709000074]],[[11.77504955600017,8.03337799100018],[11.665649458000132,8.12619533100019],[11.692171476000055,8.29857000800007],[11.751843586000177,8.414591809000058],[11.672280550000096,8.540558906000115],[11.685540553000067,8.633376079000016],[11.612607434000097,8.71956283000003],[11.725321568000027,8.78254663000007],[11.791625440000132,8.646635244000095],[11.834721498000079,8.633376079000016],[11.907654449000177,8.437797108000098],[12.007108580000022,8.37812734500011],[12.017054547000043,8.21901267100003],[11.914284535000036,8.109620621000147],[11.960697479000146,8.020119161000025],[11.838036541000179,8.003544451000153],[11.77504955600017,8.03337799100018]],[[10.679199534000077,7.384541906000038],[10.698450586000035,7.515008576000128],[10.763688447000106,7.497897592000129],[10.788286483000036,7.414484747000074],[10.679199534000077,7.384541906000038]]],[[[-15.902823501999933,13.452694086000122],[-16.088939526999923,13.658485623000047],[-16.487180544999944,14.069933469000034],[-16.531396838999967,13.868333665000137],[-16.62409956999994,13.781428529000095],[-16.648529464999967,13.705573646000119],[-16.54073953099993,13.550222782000048],[-16.55610288899993,13.497717255000055],[-16.36311744799991,13.42205325600014],[-16.147615531999918,13.50310894200004],[-16.05321552099997,13.438099404000127],[-15.902823501999933,13.452694086000122]]],[[[-17.214363585999877,14.674904874999982],[-17.15847054099993,14.621502093000117],[-17.06092044299993,14.451854384000114],[-17.01115959799995,14.433234489000029],[-16.93654054299992,14.331952097],[-16.873640562999924,14.180291281999985],[-16.796037549999937,14.084679416000029],[-16.703380471999935,14.07759704300014],[-16.56344945999996,14.15034006000019],[-16.723880595999958,14.372559401000103],[-16.966279535999945,14.679248544000131],[-17.04527059199995,14.741394489000186],[-17.17090056799998,14.711066417000097],[-17.214363585999877,14.674904874999982]]]]},"properties":{"objectid":295,"eco_name":"Guinean forest-savanna","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Afrotropic","eco_biome_":"AF07","nnh":4,"eco_id":44,"shape_leng":139.987316191,"shape_area":55.1630981064,"nnh_name":"Nature Imperiled","color":"#FCEE50","color_bio":"#FEAA01","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":675086.0300178927,"percentage":3.148866708984864}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-113.5225376119999,29.551590112000042],[-113.56304164999995,29.547188272000028],[-113.60391968899984,29.422442922000073],[-113.46565265199985,29.28903319800014],[-113.42446163299996,29.21668983],[-113.30123860399993,29.127744258000064],[-113.19931063799999,29.13554311600018],[-113.20178262899998,29.296800875000088],[-113.31043254599984,29.28697409900019],[-113.38759668199992,29.313173247000066],[-113.39940661599991,29.45723871600012],[-113.5225376119999,29.551590112000042]]],[[[-110.30080459599998,24.19288233000009],[-110.39403566699997,24.16857447600006],[-110.53791053199996,24.20146674000017],[-110.60734554699985,24.254540281000118],[-110.6764295289999,24.36081795200016],[-110.68489860399995,24.46708673800009],[-110.72849254699997,24.518500326000037],[-110.7246165869999,24.67680262600004],[-110.66068261499998,24.76650307200009],[-110.68566152499994,24.885185456000045],[-110.78494265299992,25.03357934100012],[-110.8576045339999,25.075833353000178],[-110.90909557099997,25.152897409000104],[-110.9342726289999,25.285576231000107],[-111.02458964699991,25.45335326600008],[-111.01683068699998,25.512206632000073],[-111.11653862199995,25.525559004000172],[-111.17946659799992,25.597510434000185],[-111.21968866999993,25.724297449],[-111.30448955799994,25.782431815000052],[-111.35528556699995,25.961567670000193],[-111.31282753999989,26.06865285300006],[-111.39075459599997,26.26009099600003],[-111.379875557,26.326960814000074],[-111.4617305409999,26.412514900000076],[-111.45139364299996,26.489745588000062],[-111.56264463199989,26.56204822000018],[-111.5574726619999,26.69339448700015],[-111.81452953999991,26.897396264000122],[-111.81578062299997,26.720011388000046],[-111.67675753799995,26.594093745000123],[-111.73802958599998,26.542140194000183],[-111.86180866999985,26.698982199000113],[-111.87206258799995,26.83290120700002],[-112.00908658799995,26.95651667700014],[-112.01171163299989,27.018604954000182],[-111.95133963399991,27.070477871000037],[-112.110679614,27.13621294700016],[-112.19731865299997,27.235640591000163],[-112.3144455239999,27.429198181000118],[-112.32971165199996,27.517193580000026],[-112.40370156099993,27.583680680000157],[-112.58863853199989,27.646883918000015],[-112.70690953299999,27.763124152000046],[-112.76922563,27.863058901000045],[-112.75630961999997,27.960812679000128],[-112.8029255749999,28.022878996000145],[-112.79044357999993,28.188653260000024],[-112.86440264399994,28.275786664000123],[-112.84159866999988,28.440305821000038],[-112.89559958399997,28.472075749000055],[-112.98014867999996,28.451484430000107],[-113.10795560399998,28.524929348000057],[-113.12612153599997,28.638568845000066],[-113.19115454299998,28.79642757400012],[-113.24688766099996,28.840931792000163],[-113.32293666899989,28.80100526700005],[-113.41898355599994,28.951588504000085],[-113.52981561799999,28.908294969000053],[-113.55922654299991,29.02007468800008],[-113.53181453399998,29.05508824500015],[-113.65168765199996,29.20973704100004],[-113.63435354099994,29.270991822000042],[-113.77252167199993,29.411353496000174],[-113.821281549,29.4317064330001],[-114.20420862899988,29.742687614000033],[-114.38679464299997,29.79009482000015],[-114.40467055999989,29.889943236000136],[-114.5265045409999,29.970294172000024],[-114.53958852399995,29.94685015600004],[-114.5359036719999,29.868926955],[-114.45423157999994,29.741203850000147],[-114.45478059499999,29.6794731440001],[-114.38523057999998,29.571929303000104],[-114.246642684,29.494839263000188],[-114.22904152499996,29.437334378000116],[-114.14407366999995,29.398732697000128],[-114.12525964999998,29.310852130000114],[-114.07011460599983,29.235385162000057],[-113.95406363599983,29.21944797900005],[-113.8171846429999,29.12618740300013],[-113.77710757799997,28.986072157000024],[-113.63266760499982,28.977624372000093],[-113.59503168599986,28.894297526000173],[-113.63088259499983,28.830383335000192],[-113.56996962799991,28.707026195000026],[-113.5698546289999,28.647603363000144],[-113.62907361299989,28.503554489000123],[-113.52251464499994,28.510759908000068],[-113.44690652599996,28.62306048000005],[-113.40900456499992,28.615000945000133],[-113.37553361399995,28.473255418],[-113.28722355899993,28.35772328800016],[-113.12963858199993,28.33404441099998],[-113.13305655499994,28.20794840100001],[-112.94680060799993,27.900260134000064],[-112.8536075909999,27.85832916100003],[-112.81335467399998,27.67463472300011],[-112.66284955599997,27.516291520000152],[-112.53726165599994,27.49305856100017],[-112.40971356499983,27.27966771100006],[-112.17247754199991,27.024284867000063],[-112.13710758699995,26.95219094400005],[-112.1249385719999,26.757374560000073],[-112.09258258199992,26.673737247000133],[-111.97541061599998,26.509571806],[-111.89144154799993,26.469322410000075],[-111.69998161299986,26.32601885500003],[-111.65577662899994,26.23540511800013],[-111.63517759899997,25.999293778000037],[-111.50271553299996,25.869406968000135],[-111.49993156799991,25.724804721000055],[-111.47542556499997,25.658031631000085],[-111.35217252799998,25.62787404600016],[-111.33655553399984,25.56839572600012],[-111.38397967199995,25.402845594000098],[-111.35449967999995,25.344638472999975],[-111.21643866999995,25.304524361000063],[-111.17490365799995,25.20566786000012],[-111.18614161099998,25.106343648000177],[-111.25495955099996,24.95374590400013],[-111.20992257899985,24.817243593000057],[-111.09835056299988,24.748504108000134],[-111.10556067599987,24.57719829100006],[-111.0431515389999,24.503024986000185],[-110.98522152399988,24.37703928100018],[-110.98189558499996,24.290865270000154],[-110.90698266099986,24.209715539000115],[-110.89314262999994,24.11228010500008],[-110.93486053499998,24.01728497900018],[-110.7581555989999,23.87982797000018],[-110.63028765499996,23.7391600200001],[-110.42846668099997,23.645080869000083],[-110.32544655299995,23.577712998000152],[-110.29511261299996,23.521998823000047],[-110.27548253099997,23.682863806000114],[-110.29759265099995,23.8717791630001],[-110.30080459599998,24.19288233000009]]]]},"properties":{"objectid":299,"eco_name":"Gulf of California xeric scrub","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Nearctic","eco_biome_":"NE13","nnh":1,"eco_id":431,"shape_leng":25.8795307062,"shape_area":2.13470240095,"nnh_name":"Half Protected","color":"#E18C78","color_bio":"#CC6767","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":23631.53282043808,"percentage":0.08957384867698287}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[129.43765078700005,-31.63658566999993],[129.31591788000003,-31.548740242999884],[128.99732042900007,-31.560631549999982],[128.70007316400017,-31.623699167999973],[128.47508243100015,-31.651792457999875],[128.34515387900012,-31.698743855999965],[128.29635628200003,-31.64830977699995],[128.00163264200012,-31.689863229999958],[127.89526360800005,-31.66168209799997],[127.8238219650002,-31.697681365999983],[127.67472098200005,-31.6944923879999],[127.43199162800022,-31.7595996579999],[127.29277039600015,-31.76690096599998],[127.12101748900022,-31.747667348999926],[127.05899056700014,-31.77646438299996],[126.90020748100028,-31.774185174999957],[126.5962067480001,-31.92329017999998],[126.49423989000013,-32.02185063299993],[126.30407713900001,-32.156745964999914],[126.0394265770002,-32.2700143749999],[126.20606000600003,-32.2324799939999],[126.42158000600011,-32.28440999399987],[126.68325000600021,-32.30906999399991],[126.7722300060002,-32.292119993999904],[126.9551300060001,-32.29768999399988],[127.22137000600003,-32.27569999399998],[127.482820005,-32.217419993999954],[127.7073900050001,-32.13646999399998],[128.02274000500006,-32.07386999399989],[128.43642000500006,-31.935259994999967],[128.64322000500022,-31.851619994999965],[128.80419000500012,-31.758109994999927],[129.0289400050001,-31.67956999499995],[129.43765078700005,-31.63658566999993]]]},"properties":{"objectid":304,"eco_name":"Hampton mallee and woodlands","biome_num":12,"biome_name":"Mediterranean Forests, Woodlands & Scrub","realm":"Australasia","eco_biome_":"AU12","nnh":2,"eco_id":201,"shape_leng":7.27139016556,"shape_area":1.0379087254,"nnh_name":"Nature Could Reach Half Protected","color":"#CD8966","color_bio":"#FE0000","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":10914.318225035558,"percentage":0.3303971243223245}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-155.72708159999996,19.171290671000122],[-155.58413662299998,19.293779613000027],[-155.3941497239999,19.490232146000153],[-155.4588316969999,19.59768395300017],[-155.47859169799997,19.69449929400014],[-155.5795746889999,19.69820895700019],[-155.71897864699991,19.578862055000172],[-155.7550196569999,19.41115676800007],[-155.78512560899998,19.358415822000097],[-155.78654466499998,19.246495286000084],[-155.72708159999996,19.171290671000122]]],[[[-155.41252168199998,19.883280541000033],[-155.502456653,19.87628785400011],[-155.513213652,19.77921938000003],[-155.41960170799993,19.76356014100014],[-155.41252168199998,19.883280541000033]]],[[[-156.12928772699993,20.704834625000046],[-156.13563567799997,20.745982561000062],[-156.2580567269999,20.768031325000095],[-156.29296869499993,20.661333051000156],[-156.12928772699993,20.704834625000046]]]]},"properties":{"objectid":306,"eco_name":"Hawai'i tropical high shrublands","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Oceania","eco_biome_":"NO07","nnh":3,"eco_id":639,"shape_leng":2.87158297009,"shape_area":0.159109306959,"nnh_name":"Nature Could Recover","color":"#E69800","color_bio":"#FEAA01","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":1857.2346144567198,"percentage":0.008662872564674611}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-155.69189470599994,19.94573074900012],[-155.83811968899997,20.10038088600004],[-155.83213769199992,19.979623980000042],[-155.92497263499996,19.855790916000046],[-155.69189470599994,19.94573074900012]]],[[[-156.53713956899995,20.579437666000103],[-156.58944666799994,20.600207519000037],[-156.67131070499997,20.50298817100014],[-156.54203761799994,20.515549291000127],[-156.53713956899995,20.579437666000103]]],[[[-156.95491072299998,20.927584373],[-157.04678358999993,20.87380926700007],[-156.98800666799994,20.821961329000032],[-156.959380624,20.73709187700001],[-156.8366087089999,20.761548594000033],[-156.80630460899994,20.807628107000028],[-156.84429960799994,20.87455827400015],[-156.95491072299998,20.927584373]],[[-156.93504360099993,20.763891503000025],[-157.00375358199997,20.886198726000146],[-156.88183561499991,20.863536909000118],[-156.85322566399998,20.77274799000014],[-156.93504360099993,20.763891503000025]]],[[[-157.24540669999993,21.220684943000094],[-157.2991026809999,21.134406828000124],[-157.2375186589999,21.09047928500007],[-157.08554067199995,21.1049476230001],[-157.10073857199993,21.1926216600001],[-157.24540669999993,21.220684943000094]]]]},"properties":{"objectid":307,"eco_name":"Hawai'i tropical low shrublands","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Oceania","eco_biome_":"NO07","nnh":4,"eco_id":640,"shape_leng":10.1392724334,"shape_area":0.131613270859,"nnh_name":"Nature Imperiled","color":"#FFAA01","color_bio":"#FEAA01","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":1525.179878663251,"percentage":0.007114038702606534}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-67.62264960399995,62.94849228600003],[-67.84809241499983,62.91601418900012],[-67.85447797499995,63.019000163000044],[-68.02751318499998,63.02615174500011],[-68.04988332999994,63.10240770799999],[-68.21308133999992,63.149582714000076],[-68.36773094999995,63.27379649800014],[-68.54311311399994,63.33118477500017],[-68.50898719299994,63.37557490700004],[-69.00861534299997,63.53428266600014],[-69.36617260199995,63.68898157400008],[-69.64176215399988,63.77905230300013],[-69.75175619899994,63.76822176200005],[-69.82795490399991,63.881372099000146],[-70.0865773619999,63.96168154700018],[-70.15067893299994,63.87809697900008],[-70.47522743799993,64.01024801300008],[-70.58541096399995,64.02433670800008],[-70.80227765199993,64.14030878100004],[-71.28928092799998,64.32702315200015],[-71.70298742099999,64.44277340700006],[-72.05654195199992,64.45911223500013],[-72.27343480699989,64.51751968000008],[-72.30781535499989,64.60104966400013],[-72.94198604999997,64.7887125040001],[-73.06534899299993,64.57537461500004],[-73.01206964799997,64.50096233500017],[-72.83130738999995,64.42275184900006],[-72.81980000299995,64.31546141000007],[-72.71279528799994,64.24819429500013],[-72.5304032119999,64.28565198400014],[-72.36423411699991,64.25138876500012],[-72.16458030199988,64.09266154100015],[-71.92717540999996,64.04650240200016],[-71.72502933099997,63.97805340000002],[-71.78108266799995,63.90795959500019],[-71.4062788299999,63.78951451800003],[-71.27270503199992,63.700333773000125],[-71.07290802899996,63.638975746000085],[-71.18438564699994,63.47329213900008],[-71.19907205399988,63.393999018000045],[-70.89684437099993,63.345903361000126],[-70.76572981899994,63.39652775000002],[-70.79516429099988,63.456100053000114],[-70.7266481979999,63.58745471300017],[-70.63552511599994,63.649797672000034],[-70.54734813799996,63.78115921699998],[-70.39122892199993,63.75839546499998],[-70.04883584599997,63.61379255600008],[-69.97381464499983,63.452420576000065],[-69.84527446599986,63.39432314500016],[-69.59476429399996,63.391822248000096],[-69.48443476199998,63.30332777300009],[-69.56415691499996,63.25287808100012],[-69.4367601319999,63.06420024900018],[-69.23740328299988,63.01786847800014],[-69.26793529599996,63.12107566800006],[-69.18244795899994,63.23746298999998],[-69.09909615099991,63.229518784000106],[-69.15147290999994,63.07813127600008],[-69.04550800599998,63.0317239420001],[-69.03776587799996,62.93338764900005],[-68.71736161499996,62.86092116900005],[-68.45934647599995,62.851060903000075],[-68.4375927399999,62.764635659000135],[-68.29019892499997,62.72542072200008],[-68.28591986799995,62.59285207200014],[-68.05962947899997,62.67086561000008],[-68.02341414799992,62.57526885600009],[-67.76966196999996,62.536094394000145],[-67.73589557699995,62.45596278100015],[-67.58998009499993,62.460949870000036],[-67.49627663599995,62.39891985700018],[-67.14839229199998,62.443861831000106],[-67.05715876199991,62.49544718600015],[-66.92015889799995,62.42732265300015],[-67.15820107399992,62.34775303000015],[-66.88144903199986,62.29821971600012],[-66.82477732699994,62.242880676000084],[-66.31853418699995,62.11907856800002],[-66.19653569699994,62.130472996000094],[-66.43551794499996,62.2975077370001],[-66.6894456249999,62.3510661250001],[-66.6535022299999,62.42161314700007],[-66.92293475099996,62.610402204000025],[-66.83141244099988,62.66586493300008],[-67.3795250629999,62.960976299000095],[-67.62264960399995,62.94849228600003]]],[[[-66.4073958319999,64.67472828200005],[-66.56987189799992,64.73762401300013],[-66.89641098699997,64.69674498800009],[-66.97967872999988,64.78806963900013],[-67.22828924499998,64.8820910770001],[-67.3142829109999,65.01361994600012],[-67.86338050199998,65.02458255000016],[-67.98686463399997,64.91965139000007],[-68.22247519199993,65.054197654],[-68.09013921099995,65.14986600100013],[-68.26068687599991,65.1932536440001],[-68.34592277699988,65.30060684900013],[-68.07610848799999,65.3843546490001],[-68.14954881799997,65.46818720300013],[-68.12753107099996,65.58603877800016],[-68.37119518499998,65.73560138200003],[-68.28554706799991,65.84006270300006],[-68.4671276759999,66.03677757100007],[-68.47797854199996,66.15261275900019],[-68.62028775599998,66.17144289400005],[-68.86942419299999,66.14023349200005],[-69.01596171799997,66.03627588200004],[-69.23800794399989,65.99696291900005],[-69.21490048799996,65.93558302600019],[-69.38352226999984,65.91498688600007],[-69.51972705399999,65.83648000000017],[-69.71578806299993,65.92199111999997],[-69.88055970599993,65.86303334400003],[-70.12731511599992,65.84659938200008],[-70.16474761699993,65.80755877600018],[-70.42484663699997,65.74573954800007],[-70.52234058799996,65.6942904620002],[-70.7838020989999,65.679707839],[-70.87937976299997,65.61733084200006],[-70.72667530999996,65.57497655400005],[-70.6359918689999,65.47130176000013],[-70.70739789699991,65.36788313100004],[-70.64988209899997,65.29114242400016],[-70.4670614609999,65.21402755000014],[-70.20106066199997,64.9483849390001],[-70.26585574799998,64.88757115600015],[-70.13414063499994,64.662161874],[-70.01764888499997,64.60168968500005],[-69.67339542899992,64.56223657900011],[-69.53763395499988,64.51111033400002],[-69.45420244499991,64.30763674500008],[-68.88693056799997,64.27069150000005],[-68.69512766799988,64.27112764400005],[-68.4704295109999,64.19415811300007],[-68.33636119499994,64.09748391500017],[-68.12201729699996,64.10079858900014],[-68.14137268499991,63.9990586290001],[-67.89968805299992,63.93509943300006],[-67.71369332699993,63.85489906800012],[-67.47433677999999,63.80712065199998],[-67.26846770399999,63.56172015100003],[-67.09756451999982,63.52680274700003],[-66.72428024599992,63.31773468000006],[-66.50620855099993,63.30407771600005],[-66.03137259899995,63.334106841000164],[-65.90367223399994,63.25269275400012],[-65.94484532199982,63.17433308500006],[-65.64788879899999,63.16898244200013],[-65.66425246199998,63.296086861000106],[-65.81046437299995,63.31221397600018],[-65.7715687679999,63.40981681400001],[-65.6134042619999,63.347366875000034],[-65.47244145699989,63.429030651],[-65.52450564599997,63.56364899100009],[-65.20062093999991,63.50957537700015],[-65.13027253299992,63.62090981000006],[-65.26710285399997,63.659520943000075],[-65.47238389099994,63.787741757],[-65.33849241699994,63.837723773],[-65.54880634299997,63.89305932100012],[-65.28026395099994,63.927581788000055],[-65.41100913099984,64.03108416700013],[-65.67471047299995,64.09696498900001],[-65.87649768599994,64.07592526900004],[-65.95419963099994,64.28465375700006],[-66.36731793799993,64.46928514900003],[-66.3701567949999,64.64850321500006],[-66.4073958319999,64.67472828200005]]],[[[-77.49553486199994,72.20001342900014],[-77.27820024999994,72.49760710200013],[-77.36683390299999,72.75874163300006],[-77.95585203299999,72.6980300510001],[-78.41820579199992,72.58670724700016],[-78.54001564599992,72.44166781900009],[-78.32961717299997,72.36592966799998],[-77.87141205799998,72.29219980100004],[-77.49553486199994,72.20001342900014]]],[[[-96.67113079099994,72.75410245800015],[-96.65896299299999,72.88954639900004],[-96.77432624199997,72.89351756299999],[-96.96824302399995,72.77624208400005],[-96.67113079099994,72.75410245800015]]],[[[-96.72890494299992,72.02975814100006],[-96.49328803199995,72.07361758100006],[-96.48944893999993,72.23820045600007],[-96.65312781399984,72.30645691100017],[-96.26919291799987,72.42339852100014],[-96.49243191999994,72.66956622000015],[-96.63904233399995,72.70871030700005],[-96.99827204799993,72.73576979600011],[-97.26052622199995,72.85231118400003],[-97.2073683559999,72.93355270500018],[-97.42837227599995,72.99773749500008],[-97.83788690399996,73.0458910970001],[-98.210254938,72.98786917700016],[-98.407867636,72.87427556200015],[-98.43541527699995,72.84019747400015],[-98.8985502409999,72.72407594100008],[-98.80819379899992,72.63188455700015],[-98.43236864299996,72.64736316000017],[-98.30130569799996,72.6113209190001],[-98.28061805399994,72.5220826060002],[-98.02510037299999,72.38985458500008],[-98.13843022799989,72.2695887700001],[-97.90367491699999,72.07146828700007],[-97.34837538099998,72.00429287400004],[-96.72890494299992,72.02975814100006]]],[[[-96.83411554099996,72.921689517],[-96.68568991799992,72.93463765700005],[-96.53904585699996,73.03044147500009],[-96.75260327599989,73.18081394500018],[-97.04189234899991,73.14171624700015],[-97.07333845099993,72.98771966700019],[-96.83411554099996,72.921689517]]],[[[-77.50449492399991,72.18583835600015],[-78.54657994099995,72.35497021900011],[-78.97705706399995,72.29460389900015],[-79.30285933199985,72.40234143000004],[-79.47176133499983,72.30278063700007],[-79.75659825099996,72.42924333000013],[-80.06053090999995,72.38772977500014],[-80.14262671699998,72.31768078300013],[-79.91835129299994,72.19308440100008],[-80.48616755899991,72.18237651900017],[-80.33292902799991,72.09337005700013],[-80.53461355799993,72.00609179100013],[-81.07679768999998,72.05578277600011],[-80.75156283899997,72.10829313800008],[-80.88626200399989,72.19072758000004],[-80.77334163099994,72.28990618000006],[-80.51104634899997,72.40754813100017],[-80.57091568199996,72.51626310800009],[-80.51973964799993,72.64006299900007],[-80.24560966799999,72.73233970100011],[-80.62781871299995,72.92973096700013],[-80.50540850799996,73.09254506200017],[-80.61696982499984,73.16697078099997],[-81.09596155399993,73.24102660200015],[-81.19804903699992,73.28414957400014],[-81.144395106,73.380489265],[-81.25929450699994,73.5797861640001],[-81.54426437899997,73.72474416199998],[-81.92919042699987,73.73484699500005],[-82.86203814099997,73.71962455100015],[-83.02171237499994,73.6573305980001],[-83.57998812799985,73.59793630000007],[-83.99041820499991,73.50413626800014],[-84.98093886099991,73.35668530700008],[-85.15039838399991,73.29610471400008],[-85.17097123799994,73.22499164600015],[-84.62234348799984,73.1248809130002],[-84.8160422659999,73.08754039200016],[-85.06455797199999,73.14294473700016],[-85.41928852799992,73.13947886200003],[-85.53978535999983,73.035007441],[-85.16050612999993,73.03197978600008],[-84.79829321199992,72.92592023400005],[-84.9120498239999,72.89410157700019],[-85.28237852699993,72.97236114000015],[-85.56299162699992,72.97127371300013],[-85.63070388899996,72.92258391000007],[-85.69051170099988,72.65582274100018],[-85.56757849099995,72.51727013200008],[-84.77076013299995,72.51612018900005],[-84.55441165799988,72.46069569800017],[-84.17774129299994,72.41903991700008],[-83.72663156399994,72.20888320700004],[-83.42557453399996,72.12781790200012],[-83.04253955399992,72.06531023300016],[-82.65297712099994,72.05599826399998],[-81.8713223009999,72.20176706200004],[-81.66563427399996,72.13891467000008],[-81.70878630999988,72.04735614900005],[-81.67707736999995,71.87495411000003],[-81.13559133299992,71.78474925300003],[-81.05513818599997,71.63000267700005],[-80.87927119799991,71.48302670300018],[-79.9937833759999,71.35019446800015],[-79.59197171099999,71.31100573100014],[-79.25930227199996,71.3145720980001],[-78.90276497899998,71.35429225000013],[-78.84840330499998,71.27397270400013],[-78.52707865099995,71.24515364300015],[-78.38242281299989,71.16673469000011],[-77.91442725399997,71.11626661400004],[-77.608679839,71.114220176],[-77.03443424099999,71.06637231300016],[-76.58529818699998,70.91425911600015],[-76.48130941199997,70.7983911840002],[-76.71616486499988,70.76087128200015],[-76.66695003199993,70.68748085900017],[-76.46786577899996,70.62599855800016],[-76.64644571199995,70.57151140000008],[-76.75914344899996,70.4705776030001],[-76.33192774299994,70.49862327400001],[-76.22100679699986,70.53832392000004],[-75.92123332699992,70.51718236800014],[-76.46143049699998,70.43153772700003],[-76.21295447099999,70.3392991290001],[-76.28044695999995,70.27273029300011],[-76.86688773499992,70.09301286000004],[-76.79427753799996,70.03200083500019],[-76.6048065999999,70.01614111600009],[-76.2527987979999,70.04504497200008],[-76.01165203199997,70.00932883600007],[-75.76355946999996,70.08022132400004],[-75.70617861599999,70.15086997900016],[-75.42798428999993,70.2031501240001],[-75.16319683499995,70.12786490800016],[-74.8073812909999,69.854705271],[-75.01578208699988,69.738062706],[-75.20343390199992,69.68944942900004],[-75.26215639399993,69.59138052300017],[-74.86784480199992,69.66052775000003],[-74.98025789299993,69.49672389800008],[-74.8162339299999,69.332340848],[-74.69737251699996,69.27202547500008],[-74.4779418309999,69.30760380300006],[-74.24133244899997,69.30252207900008],[-74.08142253999989,69.36734937700004],[-73.84334555199996,69.34803487500011],[-73.90779822999991,69.28970989800001],[-74.21203239299996,69.24418918200007],[-74.14188249399996,69.15606864100005],[-73.81195952699994,69.15860571200011],[-73.59061506099994,68.99882459200012],[-73.20193294699993,68.92035105100001],[-73.02994946399991,68.78557826500014],[-72.88166998899999,68.72189314100018],[-72.56709563099997,68.70371029700016],[-72.3026187239999,68.4493433880001],[-72.01224183899996,68.52612464400005],[-72.08109393399991,68.3324520650001],[-72.17691730999996,68.25463813300013],[-72.07175605199996,68.09714347900018],[-71.87183311299992,67.97934049000008],[-71.66873375899985,67.97366282400014],[-71.44694063599997,67.91289920800017],[-71.23655046199997,67.77829555000005],[-70.77669601999992,67.72414443200006],[-70.58067542899988,67.63118420300003],[-70.19351788199998,67.51732998900007],[-70.22637564199994,67.3666496890001],[-69.78134778899982,67.28241197000006],[-69.56300100899989,67.35406977800005],[-69.46056470799988,67.32815559400018],[-69.42910248999993,67.20429072900015],[-69.15185624199995,67.12027624000007],[-69.05344112699993,67.12142373900008],[-68.47791411699995,67.03497109000006],[-67.84403539499988,67.03432815700006],[-67.74817378899996,66.96023682800006],[-67.90697474599995,66.90960627400005],[-67.41405807099983,66.7377979850001],[-66.8624654969999,66.5990970950001],[-66.72682402999988,66.58758627200007],[-66.37238371799998,66.58700401500016],[-65.96572786099995,66.67547390200008],[-66.16397057899985,66.79728882900014],[-66.54403640399988,66.91513983800013],[-66.72766272899992,67.09355147100018],[-67.34063466299989,67.17017318000012],[-67.51437067699999,67.34792594200013],[-67.72442905999998,67.42783435799998],[-68.01283068599997,67.40834022200016],[-68.52037044599996,67.28068309200017],[-68.72473329299999,67.34170419300006],[-69.02778605399988,67.73090086800005],[-69.15764855599991,67.79976757700018],[-69.11473466899997,67.89548258800005],[-69.3848400899999,68.06354189100011],[-69.34772166999994,68.17329507600016],[-69.52893470199996,68.37009445900014],[-69.39438985999993,68.58266696200013],[-69.35138840499991,68.77274305100008],[-69.38520121999994,68.86286668200006],[-69.8518929249999,69.13353141700014],[-70.05893225099993,69.44614895100017],[-70.33368742699992,69.70437697400013],[-70.41327922099998,69.83931817500019],[-70.43049382099997,69.85689659000008],[-70.5998076869999,70.00857376800008],[-71.05181517499983,70.1309582500001],[-71.1997752929999,70.29926628900017],[-71.27007969499988,70.3407523670001],[-71.39875848499986,70.37073701499997],[-71.68293894999994,70.36491032600009],[-71.74286099699992,70.36778063500014],[-72.23003303399997,70.46225214100008],[-72.53725934399989,70.61277323900003],[-72.6014894889999,70.64033278100004],[-73.01082450699988,70.7558380960001],[-73.1617995549999,70.83420140800018],[-73.55751970599988,70.87261787799997],[-73.85692453999997,70.96066051500009],[-73.79362798299991,71.05870151000005],[-73.83477262799994,71.07592813200006],[-74.27838779599995,71.22871839400017],[-74.61985705199993,71.37369112900012],[-74.81930129799991,71.45068506600018],[-74.81606141999993,71.522801856],[-75.08241047099989,71.58010787600011],[-75.22553285499998,71.57486199800019],[-75.7612541659999,71.57521758900003],[-76.04553350899994,71.6279970540001],[-76.27095974699995,71.70474099100011],[-76.65729143199997,71.76197684800013],[-77.11730378199991,71.79219395899997],[-77.41750688699994,71.8973121320002],[-77.55667213099991,72.10280122900014],[-77.50449492399991,72.18583835600015]]],[[[-77.68703149699996,72.8983414760001],[-77.88160688699998,72.9361024530001],[-78.29354534299989,72.96230140400019],[-79.00483461799996,72.96715200200009],[-79.23936006299994,73.0145580750002],[-79.437194719,73.12636538400017],[-80.35051862399985,73.42022606299997],[-80.51472549699992,73.54277602300004],[-80.16170093199997,73.70862810500017],[-80.46107629099998,73.7698634190001],[-80.76982942899991,73.75626408099998],[-80.855409851,73.56034803700015],[-80.87245234999989,73.33888837000006],[-80.75623743299991,73.27861180100018],[-80.37107623899993,73.2419986220001],[-80.10824164799993,73.18280809500015],[-80.17429590599988,73.05040032300019],[-79.99063043699988,72.86677063600001],[-79.55987619599995,72.75334119300015],[-79.14524912999997,72.75364406200003],[-78.42586997699993,72.87912440900016],[-77.68703149699996,72.8983414760001]]],[[[-86.38773247499995,72.01555368500016],[-86.4396048449999,72.2209643010001],[-86.3992223379999,72.30424791400009],[-86.23005027599999,72.4142789060001],[-86.33425634499991,72.50168026500006],[-86.60768714599993,72.61124129800015],[-86.73302990599996,72.7267139290002],[-86.64435170299998,72.87508046100004],[-86.34524354299998,73.03898180700008],[-86.11680356799991,73.25986928500015],[-85.91579471999995,73.36731897200019],[-85.48294030799997,73.52495063900005],[-84.93207792099997,73.66883001500008],[-84.83820861499987,73.74001809300017],[-85.20220962599996,73.82016249700018],[-86.12223233699996,73.85612380000015],[-86.68517065999998,73.84593485000016],[-87.22641477999997,73.79185678100009],[-87.99870619799992,73.64986937400005],[-88.67034955999986,73.42204470500019],[-88.99038491199991,73.28560801700013],[-89.29718268899995,73.043425447],[-89.31749831899992,72.76584877700009],[-89.33283274399986,72.64405519600007],[-89.43414283299995,72.5338969070001],[-89.2263328009999,72.472787794],[-89.41558024199998,72.4070748910001],[-89.3740389539999,72.25529536599998],[-89.21047942999985,72.13524806200007],[-89.65146432199992,72.11571172000015],[-89.66708879699996,72.11511011200008],[-89.83110780999993,72.03773514700015],[-89.84421451299994,71.9553568820001],[-89.59676323499991,71.86888098100013],[-89.67035586999992,71.77054979500008],[-89.60584296299987,71.63754310900009],[-89.72080936299994,71.53435750900019],[-89.49829140699995,71.42104867700004],[-89.00559945399993,71.35595164900019],[-88.59957110099992,71.32359370300003],[-88.42222562099988,71.26690065600013],[-87.80977468199995,71.2895212950001],[-87.69802967099997,71.1636075190001],[-87.27310302499995,71.0593527420001],[-86.69822976099994,71.03048411200018],[-86.52137165799991,71.04330307800018],[-86.5291058069999,71.19819807300007],[-86.26884465099994,71.25577531800013],[-85.77358800499997,71.25388784100016],[-85.60032819799994,71.37498824300019],[-85.74516933699994,71.44976329600013],[-85.60802514599993,71.49455852200015],[-85.72746828299995,71.57536033400004],[-86.2707149929999,71.66721053400016],[-86.31093457699995,71.85251179900001],[-86.45925203699983,71.9704439410001],[-86.38773247499995,72.01555368500016]]],[[[-98.341651631,73.03921669600004],[-97.94114238999998,73.18437036400019],[-97.8242284989999,73.27410468599999],[-97.61174337699993,73.32513261300011],[-97.1445530869999,73.35523223200005],[-97.24977043899997,73.48508644000009],[-97.65767854199993,73.48736538000003],[-96.966105412,73.62440076000007],[-96.91389725699992,73.69312614100005],[-97.19036346399997,73.85377513100008],[-97.7495604849999,73.91456120000004],[-98.15419945999992,73.80795282900016],[-99.22307236499984,73.74319314500013],[-99.45046677699997,73.82402713300002],[-99.70126740699999,73.85039774000012],[-99.95203061099994,73.95106751300017],[-101.00742018799997,73.79836678400005],[-101.04232461499998,73.67489423800009],[-101.15611608199998,73.60258322400017],[-101.43874552099999,73.54950616500014],[-101.54075754099989,73.47076823500015],[-101.25052870299993,73.35866772100013],[-100.81446733299998,73.26013229300008],[-100.56505047999997,73.28019685200013],[-100.25621537299992,73.36391082800009],[-100.14525683199997,73.28570898900011],[-100.43728070099996,73.25714451700014],[-100.57913651099989,73.15532555600004],[-100.26523987899998,73.12555163700006],[-100.12535887899998,73.04755251500006],[-99.8107574089999,72.9733752510001],[-99.59712044099996,72.95446896400017],[-99.26836705299996,73.01705952800012],[-99.02982198099994,72.98011780100006],[-98.341651631,73.03921669600004]]],[[[-97.632369069,74.05347866000005],[-97.6912643199999,74.11799201100001],[-98.0086938419999,74.11032434200001],[-98.46077999899995,74.04153603499998],[-98.77095207599996,74.03390066800017],[-99.04387653999999,73.95675526300005],[-99.40311451799988,73.91787843600008],[-99.08364277299995,73.81648899900017],[-98.7669418239999,73.81587915100016],[-98.06806583299993,73.89252490000018],[-97.632369069,74.05347866000005]]],[[[-92.76533945199998,72.74791676500018],[-92.31037774299995,72.70599728100012],[-92.01287822799986,72.76779877400008],[-91.798358023,72.87247706300013],[-91.26674791199991,73.25862804400003],[-90.83044736499988,73.54047257200011],[-90.57576398699996,73.65339777400015],[-90.15967157599988,73.89755054300008],[-91.11668233199998,74.01443029100011],[-91.55363397899998,74.02944268800007],[-92.24456929699988,73.99247016700014],[-92.35351794099995,74.05957394500012],[-93.03080659099999,74.15485890100007],[-93.47301062299994,74.17662336100017],[-94.23884235499992,74.1318832550001],[-94.7869038479999,74.07394543000004],[-95.31147056099996,73.97977983200002],[-95.28429831199998,73.87722129900004],[-95.05734113199992,73.77059077100006],[-95.58111110499988,73.74850385500008],[-95.48456539299991,73.69865310300008],[-94.76075042199983,73.55640727300005],[-94.45517709299997,73.3854547580001],[-94.29579943199991,73.3395692200001],[-94.22585236499992,73.23654690500013],[-94.21627049199998,73.05224295300002],[-94.03061638799994,72.99171021600006],[-93.73506150899993,72.98830474600004],[-93.61060340899985,73.06732296600012],[-93.36837784299996,73.04755185200014],[-93.20057701499996,72.911358479],[-92.84882394999994,72.82609897900005],[-92.76533945199998,72.74791676500018]]],[[[-97.55790749899995,74.47352734000009],[-97.26233379599995,74.60144579600018],[-97.43451986299993,74.62993399400011],[-97.77973289599998,74.49701158700009],[-97.55790749899995,74.47352734000009]]],[[[-95.41069269499991,74.62356322700009],[-95.66847724699994,74.64621796800009],[-95.81347253299992,74.57100325600004],[-95.49493649499988,74.50342897800004],[-95.22937532899988,74.51315549200012],[-95.41069269499991,74.62356322700009]]],[[[-104.196046261,75.02067322300002],[-103.8494069489999,75.05834435000008],[-103.57351713399993,75.15392603200019],[-103.74936448999983,75.3064946400001],[-103.96115084699989,75.40371314000015],[-104.37467827599983,75.42695226900014],[-104.68304097299995,75.31850168700015],[-104.90025891999994,75.11859464900016],[-104.58601042899994,75.05346798600004],[-104.196046261,75.02067322300002]]],[[[-94.41319919399996,75.61003739500006],[-94.88531783199988,75.63965559200011],[-95.28077597299995,75.60848870000007],[-96.11548960799996,75.41753753300009],[-95.88924648799997,75.38180452300008],[-96.08041081099992,75.24488690300018],[-96.43969008499994,75.20149303800002],[-96.59985401499989,75.07068382300008],[-95.8429159829999,74.83042892000009],[-95.28001665999989,74.80536225700001],[-95.064527608,74.74912773500017],[-95.0619546719999,74.67983936700006],[-94.54257507099999,74.62830023600009],[-93.72131053299984,74.64377018200003],[-93.4494166419999,74.71018371000014],[-93.39351783399991,74.90297799700005],[-93.4920843999999,75.02471485400002],[-93.47386292699997,75.26366621800014],[-93.65748470099999,75.34578897300014],[-94.41319919399996,75.61003739500006]]],[[[-96.0958545599999,75.60866237800008],[-96.42258321799989,75.5860386830002],[-97.01051791099997,75.49983954600003],[-96.84214485399997,75.3787551040001],[-96.46557706999988,75.46640493700005],[-96.12706472799988,75.45917918000004],[-95.89843915799992,75.56251331900006],[-96.0958545599999,75.60866237800008]]],[[[-94.41814796599988,75.95284779600007],[-94.85548520099996,75.93723198000015],[-94.77229900599997,75.78067554900008],[-94.28941304799997,75.75984528600009],[-94.41814796599988,75.95284779600007]]],[[[-102.12655276599992,75.91166714800016],[-102.15478160999987,75.99673955600014],[-103.03648975399989,75.8991842170002],[-103.36232293199993,75.77327291100005],[-103.2053893879999,75.74582517300007],[-102.58045079099998,75.77106455900014],[-102.40021639499992,75.87557887200012],[-102.12655276599992,75.91166714800016]]],[[[-103.33840642199993,75.90541297700008],[-102.25113522099991,76.03154140300006],[-102.55376582599996,76.09049939600015],[-103.93219294399995,75.94290691100008],[-103.84708977199995,75.89809327000006],[-103.33840642199993,75.90541297700008]]],[[[-78.94208910699996,75.88346412200008],[-79.15465137399997,75.971248296],[-78.8603613549999,76.0413819800001],[-79.11806083699997,76.09189118799998],[-79.66838235599982,75.8966656560001],[-79.35305804799992,75.86953176900005],[-78.94208910699996,75.88346412200008]]],[[[-118.23838758299996,75.59891319600007],[-118.00860735399988,75.70010500900014],[-117.8194000229999,75.86196479700016],[-117.54586850799996,75.9821319560001],[-117.43800171299995,76.0952847330002],[-117.79859733399996,76.1098942800001],[-118.11511627699997,76.0004232120001],[-118.58308138799998,75.9246423370002],[-119.31448951099992,75.66217014500018],[-119.39284535599995,75.60102984400004],[-118.55569754199996,75.50022207500012],[-118.23838758299996,75.59891319600007]]],[[[-103.18949436399998,76.05068068000014],[-102.587510738,76.13892799700011],[-102.48997421099995,76.2223934210001],[-102.71459821899998,76.31655775400014],[-103.07990869099996,76.31354503100016],[-103.49465174999995,76.26908544600013],[-104.24646689899998,76.22062664700013],[-104.48054465299992,76.15340907900014],[-104.388853999,76.0876629440001],[-104.0728471679999,76.04153793900014],[-103.18949436399998,76.05068068000014]]],[[[-103.32415513799992,76.49726567700009],[-103.9151055609999,76.65335119000014],[-104.32470738099994,76.66717413800006],[-104.64527837799989,76.59686356800012],[-104.56434779799991,76.48204901000008],[-104.24610930799997,76.36113812900004],[-103.77318847499998,76.3076822930002],[-103.25767039299996,76.33829895800011],[-102.98043401299998,76.44476130300012],[-103.32415513799992,76.49726567700009]]],[[[-98.376485259,76.65775473000014],[-98.58275918099991,76.61205369500004],[-98.97171023499999,76.60886866900017],[-99.23154967399995,76.47669766000013],[-99.68081781199999,76.63055012500013],[-100.16087779599991,76.6393206460001],[-100.44197161299996,76.61377592100013],[-100.97750616499997,76.49831291900006],[-100.73302845699999,76.38192558500015],[-100.29760347699994,76.38036214900006],[-100.43417154899993,76.21350214200015],[-99.93193595999998,76.18999168900007],[-100.23098281499989,76.00419741000007],[-100.8570716399999,76.21736674400017],[-101.1062487559999,76.24519175900014],[-101.085822394,76.31203668400013],[-101.27885962299996,76.4126268340001],[-101.86814845899994,76.44638635800004],[-102.05984621099992,76.35299522600013],[-102.11308191699993,76.21613781200006],[-101.45591668799995,76.23322234600005],[-101.90537101199999,76.11038414100005],[-101.82315685999998,76.02150697600018],[-101.58624636199983,75.92344029600014],[-102.12916182499998,75.88096424300011],[-102.095327866,75.71745695200008],[-102.54489660399997,75.71424480800005],[-102.84644515899993,75.62090742599997],[-102.63315037499996,75.49686629200005],[-102.41349952899992,75.53676516600012],[-101.11914499399995,75.58919528600018],[-99.97158776799995,75.67458224200016],[-99.70019618299995,75.59448598200004],[-100.00626052399997,75.53040846400012],[-100.09028826399998,75.45128135100015],[-100.41710822499988,75.38505324800019],[-100.76926475099992,75.35184551800006],[-100.20514309799995,75.25258759300016],[-100.39637951199995,75.16519815800012],[-100.36522091799998,75.03000657700011],[-99.92876183999988,74.98015490900008],[-98.75120878199994,74.99535476200015],[-97.9336444509999,75.03286837700011],[-97.94488268399994,75.10453407199998],[-97.55328975199996,75.14273753600014],[-97.85045997499986,75.26588614300005],[-98.10150430999988,75.30933676600006],[-98.02453931199994,75.41498229800015],[-97.64784553499999,75.55274247100004],[-97.37113416499983,75.44539375000016],[-97.40499592299989,75.69658932300018],[-97.84295517099991,75.730944297],[-97.58232783699998,75.85670510400007],[-97.63146436099998,75.98445792000018],[-97.47840691099998,76.12625909600018],[-97.56398898499998,76.2307531890001],[-97.77616898399998,76.3134757150001],[-97.66142824099995,76.48523186800014],[-98.20361685899991,76.54501966500015],[-98.376485259,76.65775473000014]]],[[[-100.50246974299995,76.68223384100008],[-100.48695623899994,76.76136623400015],[-100.99186021399993,76.72352076600015],[-101.1730918849999,76.65638919000014],[-101.68864663799997,76.58882613000014],[-101.333922396,76.5540565180001],[-100.50246974299995,76.68223384100008]]],[[[-89.67167346399998,76.50618188200019],[-89.83020290999997,76.54515630100008],[-89.82924283299991,76.64618998400005],[-89.7020334259999,76.74323883700015],[-90.05185732199999,76.83955356200005],[-90.47317782199991,76.7998998020002],[-90.59407586599997,76.72478247800007],[-90.22874336999985,76.53679890800004],[-89.97312454199994,76.47118454900004],[-89.67167346399998,76.50618188200019]]],[[[-108.6195872809999,76.81469051200008],[-109.09075060299995,76.82312298200003],[-109.29369761399994,76.79538606100004],[-109.53948021799982,76.62562238700008],[-109.72680259499998,76.59600501800008],[-110.084802288,76.44549748700013],[-110.37778079799989,76.40346754300015],[-110.26419968999988,76.30201757900011],[-109.91916269099994,76.20683171600012],[-109.68496038899997,76.21848286600016],[-109.27064759599995,76.10206739900008],[-109.36727320999995,76.02250158000004],[-109.62958012499996,75.95343078000019],[-110.034954627,75.89688563599998],[-109.89878148899999,75.85083855400018],[-108.9337633639999,75.70960822800009],[-108.80128020599994,75.61910419999998],[-108.9438160919999,75.48055318100006],[-109.233222937,75.51745401900001],[-110.36009987399996,75.54092252100008],[-110.77742535199991,75.56604576000018],[-111.19811949199999,75.52125252100006],[-111.38588331299997,75.61597369400016],[-111.3115521879999,75.71006073100017],[-111.45323335999984,75.84384717400008],[-111.93256273299988,75.80723733399998],[-112.1538969099999,75.84475235800016],[-111.68552464899989,75.92244806600013],[-112.380522037,76.04341636999999],[-112.54465734799993,76.198677427],[-112.97961817599992,76.27115975599997],[-113.3387092609999,76.26581150200013],[-113.68317214299998,76.20416018900016],[-114.0236211319999,76.22321752500011],[-114.12471581699992,76.3137597000001],[-114.04484792299996,76.41730322500001],[-114.396630486,76.49471021200014],[-114.88926131499989,76.49786660000018],[-115.62236186299998,76.42077823100016],[-115.87170694799994,76.35583443900015],[-115.85639131699998,76.25617295000006],[-116.04924883199999,76.20415110600004],[-116.60682568999988,76.12023961900013],[-116.71915032099992,75.90192910000019],[-116.04976513199995,75.80909889300011],[-116.78695359199992,75.80042715400015],[-116.98245414699994,75.75233731600002],[-117.21688800499999,75.58201577200015],[-116.39698578599985,75.5611776790002],[-115.39736087699998,75.65486620899998],[-115.94169323399996,75.4927526960002],[-116.12991544699997,75.47723275800001],[-117.14511854999984,75.48186952100008],[-117.54986059999993,75.35114338000005],[-117.65380816499999,75.24669018300017],[-117.48489072599989,75.19722939600007],[-116.69144610099988,75.11732720900005],[-116.55565914299984,75.18078766999997],[-116.23230732199994,75.18136829200006],[-116.22536156699988,75.05924779200006],[-115.67619936899996,74.96893694500005],[-115.53466796499998,75.00370232800014],[-115.57506610899986,75.10337749800004],[-115.20248130999994,75.07240667300016],[-114.99402065799995,74.96387377000008],[-114.43536300999989,75.06020057600017],[-114.09560228899988,75.25019486200017],[-114.04174266999996,75.33876310000016],[-113.80282254899998,75.31916499200003],[-113.90552897799995,75.19527703300008],[-113.90363866299987,75.05513210900011],[-113.00797609699998,75.09324923600013],[-112.77304580799989,75.120827302],[-112.60716437499991,75.19954969300011],[-112.37237939199997,75.12525365000016],[-111.55553179699996,75.14263968200004],[-111.05162328799997,75.27372660000015],[-110.88960230299995,75.23657006000013],[-111.28539229599988,75.07766355500013],[-111.71318978299996,74.98861141700007],[-112.0722610059999,75.01164107400012],[-112.84158231999999,74.98115249400007],[-113.10016750199998,74.94194054600018],[-113.45395972099993,74.8384317870001],[-113.71851031299997,74.82634130000008],[-114.19457478099997,74.76094408100016],[-114.39083912999996,74.64653789200008],[-114.01729806099996,74.52542807999998],[-113.69103245499991,74.450404746],[-113.0309321229999,74.39913627200019],[-112.39995634699994,74.4169890020001],[-111.64289227899997,74.49585225400017],[-111.39470683699994,74.56255372700019],[-111.0328434249999,74.61135925300005],[-110.55491159999991,74.7079794230001],[-110.62481251999992,74.77443521000004],[-110.22411141199996,74.84104133400012],[-109.80924036599987,74.87406183799999],[-109.50535685099987,74.86213935100005],[-109.33524804399997,74.94617887900012],[-108.92721230499995,75.012233445],[-108.79428224499992,75.06986097700002],[-108.50755823999998,75.01433395800018],[-108.3397104419999,74.9142787310002],[-107.91450340299991,74.93328599900008],[-107.88890281699986,75.00000872900017],[-107.20118948199996,74.90949417100006],[-106.924239818,74.92618010100011],[-106.68070748699995,75.00278644500014],[-105.9918276649999,75.05114025600017],[-105.86793802899996,75.14041916500008],[-105.90112458699986,75.21799846800002],[-105.61640035,75.36165978700006],[-105.36853568699996,75.62873439600014],[-105.4176638379999,75.84699046200006],[-105.56643494599996,75.93462833600017],[-105.88419720599995,76.01009819200016],[-106.304787337,76.06015535800015],[-106.630539232,76.05556424600007],[-106.86850834599989,75.93635921300012],[-106.78060882099999,75.79245738000014],[-107.076435442,75.84197816800014],[-106.99963984399994,75.8947033020001],[-107.43687840199993,75.91070688400015],[-107.87592064499995,75.89188882100018],[-107.57813707099984,75.99471371100009],[-107.78368015199999,76.06074243000006],[-108.37656495099998,76.05158449200013],[-108.3294654369999,76.1760609120002],[-108.08396958099996,76.232334407],[-108.25603332199995,76.38588182000018],[-108.57248457599991,76.42349300000012],[-108.49887210399999,76.56387695100005],[-108.68154866099997,76.61840248300012],[-108.39333611999984,76.70514595100008],[-108.6195872809999,76.81469051200008]]],[[[-113.73346863499995,76.8887266480001],[-114.5803693929999,76.870920319],[-114.79220684399985,76.81653121000016],[-114.76348472399997,76.75133871100007],[-113.59732575399994,76.7099830630001],[-113.45307827899995,76.82594138800016],[-113.73346863499995,76.8887266480001]]],[[[-94.9397303159999,76.97509155600005],[-95.44110947199988,77.05784773900007],[-96.30674884599995,77.04007518300006],[-96.45753792799997,76.96945270800012],[-96.78119752099997,76.98412957400018],[-96.97259224899989,76.73430920500005],[-96.50046180799995,76.68939416600017],[-96.04198102299989,76.55273432900003],[-96.01758970099996,76.43844736700015],[-95.81321534599988,76.39318879600006],[-95.01131190899997,76.34922080800015],[-95.39917962099997,76.28697293500016],[-95.38830159399993,76.22928560899999],[-95.06400559099995,76.21664871700017],[-94.75523517199991,76.28589751500004],[-93.80723540399987,76.25498940199998],[-93.35170158399984,76.35907679700017],[-93.12092231099984,76.36393901400004],[-92.95905168499996,76.23999639200008],[-92.64678981099996,76.12561406700001],[-92.55307106299989,75.97402876800004],[-92.14791081899995,75.88114647400016],[-92.16614288899996,75.7334398750001],[-92.00378335599999,75.594187348],[-92.20768197199993,75.54900873800011],[-92.41598390199994,75.41966271000013],[-92.48661565499998,75.21615753700007],[-92.05635658399996,75.0884743110002],[-92.19934586299996,75.02775421700011],[-92.01859693199998,74.89273210900018],[-92.082934218,74.8002254020002],[-91.57786676099994,74.64909697700017],[-91.11818320999998,74.63871086300003],[-91.02513214399994,74.70583195000012],[-90.61428656499993,74.61459424800006],[-89.9540733529999,74.5296627940001],[-89.57123149399996,74.53896755500017],[-89.22549904599992,74.57980647100004],[-89.12061351199998,74.68824787500017],[-88.80689223799999,74.6762763430001],[-88.71941440299997,74.79772126400013],[-88.40812784999997,74.73870494400012],[-88.57314230399999,74.56924279000009],[-88.54223287099995,74.50587792300007],[-87.7139383569999,74.45996298500012],[-87.44459057999995,74.48557558300013],[-86.93898026999994,74.46169578100017],[-86.28601340299997,74.50107428900014],[-86.10192849399988,74.48069857200011],[-85.36498795499995,74.50310823300003],[-84.24990937799993,74.50704395700006],[-83.84525297499994,74.55237011600008],[-83.59818053499998,74.54924947700005],[-83.31534591299987,74.78358541000006],[-83.07165308599997,74.7867193830001],[-83.07407579799997,74.6162988230002],[-82.81531257999995,74.52590738600003],[-82.41037270899994,74.52471671300003],[-81.80011704299994,74.45793009200008],[-81.29743106399991,74.5659638890001],[-80.81941385999988,74.56048816000009],[-80.25168202999998,74.57821384100009],[-80.16386496599995,74.84338306600006],[-79.8694088119999,74.8157744950002],[-79.39698055099984,74.91279251000003],[-79.54849730299992,75.01258514300014],[-79.84166118799999,75.02081283100006],[-80.20204757799996,74.95891515200009],[-80.37775571099996,75.00931847700008],[-80.2697248309999,75.06347993800011],[-79.97463672199996,75.09166285300006],[-79.83085986199995,75.16925515300011],[-79.60700355599994,75.18841249300016],[-79.47532066699989,75.26855196800005],[-79.50831469899992,75.3713376730002],[-79.70277868899996,75.46894952700006],[-80.04313108499991,75.52513951300017],[-80.068107936,75.57988883200017],[-80.50901676799998,75.65318782500003],[-81.01177509299993,75.62785184600011],[-81.28438702599988,75.6505542110001],[-81.14616391899995,75.77438386200004],[-82.33680296799997,75.83869003800004],[-82.94025274499995,75.75548325000011],[-83.41354715299991,75.74556984300011],[-83.81116761899983,75.82020455000014],[-84.38587677599992,75.70226892599999],[-85.08069323899997,75.6516964400002],[-85.42215333699994,75.56491933600006],[-85.91302223599996,75.54607127700012],[-86.15871243399994,75.50466217900015],[-85.82855294099994,75.4256662470001],[-86.34502965099995,75.42083698300007],[-86.79043384699992,75.47638672900013],[-87.257701565,75.61982726000014],[-87.53126835399985,75.56099986300006],[-87.72288045199991,75.57857450200015],[-88.18230101999995,75.52312243300008],[-88.63013087099989,75.672072856],[-88.92225124499993,75.607993109],[-88.74640795799996,75.46953286500019],[-88.97335932799996,75.43576253900005],[-89.25066371299988,75.62497462700014],[-89.15001897799988,75.76332677800019],[-89.67266181399992,75.89007168400019],[-90.0367023739999,76.01042711600019],[-91.11915331899996,76.16215906300005],[-90.42315151999998,76.18083871700003],[-89.71642959399992,76.16209154800009],[-89.28723099299998,76.19397832200013],[-89.30321092799994,76.30129640900014],[-89.76346126499999,76.32687289800009],[-90.35548967099999,76.39669399900009],[-90.51174657299998,76.52635349900004],[-90.97230376999994,76.65202483000019],[-91.43024580099996,76.69134889100019],[-91.91735357299984,76.66737552500012],[-92.12558817999991,76.61576958700005],[-92.65659726199993,76.59052170400008],[-92.86980887499988,76.6196569980001],[-93.34679896199998,76.53712413200014],[-93.16840433399994,76.68092015500008],[-93.25339027899997,76.75229595300004],[-93.7071301549999,76.92017203100016],[-93.97632006799995,76.93226420700006],[-94.24605824699995,76.88919992600017],[-94.59770934699992,76.97972028600003],[-94.9397303159999,76.97509155600005]]],[[[-90.79321708499992,77.14438792200019],[-90.81414361799989,77.23845475000007],[-91.08969120999996,77.25301229100006],[-91.23253377499998,77.1787035810001],[-90.79321708499992,77.14438792200019]]],[[[-116.08457468999995,77.46578962400014],[-116.39879203099997,77.55548038500001],[-116.76136757899997,77.53319705800004],[-117.07134118199991,77.44419559500005],[-116.83330773899996,77.38601963000019],[-117.02332072099995,77.29873292700012],[-117.61240712799997,77.33224288899999],[-117.85863928199996,77.38608252000006],[-118.09874105199998,77.3600972100001],[-118.81208391599995,77.35840814900007],[-119.13413281299995,77.32503761400005],[-119.3759893969999,77.18726101100009],[-119.725774732,77.11755165200003],[-120.07193223699988,77.00234806800017],[-120.5811287969999,76.75074055700014],[-120.8705958889999,76.69873567100012],[-121.18451453299997,76.68839528900003],[-121.50470108399998,76.44017425900006],[-121.98932342499995,76.43853207300003],[-122.33689183899997,76.4056885670002],[-122.6203131829999,76.33709793400004],[-122.62215131099993,76.17842844200015],[-122.46310565699986,76.10747559700008],[-122.68213509799995,75.9039524420001],[-122.41752860799988,75.86908129900013],[-122.0971673659999,76.0243762980001],[-121.833175257,76.04276714300005],[-121.23063597999999,75.97386763300011],[-120.979015415,75.99559041100014],[-121.00961065299998,76.14458203200013],[-120.82829132599994,76.18215385200006],[-120.62099738199998,75.99244892600018],[-120.40290429899989,75.96666655100012],[-120.45628336699986,75.83034380200013],[-120.24345956599996,75.82226898500016],[-119.71738214799996,75.88491767500017],[-119.56899161499996,76.08309935000017],[-119.63373787599994,76.3090873910001],[-119.4663225949999,76.32623305200008],[-119.29014758599999,76.13902508300015],[-119.05561163499993,76.08996097600016],[-118.89721179299994,76.2641630940002],[-118.52518614899998,76.3356679630001],[-118.64958005099999,76.45135162999998],[-118.29879258099987,76.5541877980001],[-118.43494371599996,76.72480989600007],[-118.28792359199991,76.77828545100016],[-117.75509510099994,76.73837174800019],[-117.92140111999998,76.67810243800011],[-118.00296984,76.40510748600019],[-117.59238690599994,76.28516251600007],[-117.30855424499987,76.259198615],[-116.92535529799994,76.34597603900016],[-117.0289464299999,76.53186334000003],[-116.46020646599999,76.56940815100012],[-116.06798594799994,76.61641475700014],[-115.86798635899993,76.69618004500006],[-115.93512367799997,76.89910026500019],[-115.74097363999994,76.96413082100003],[-116.21461624399996,77.03935986800008],[-116.3348208249999,77.12110325000009],[-116.18029917099989,77.19657825000013],[-115.58994415499996,77.26474656300019],[-115.46177176799995,77.35954992200016],[-116.08457468999995,77.46578962400014]]],[[[-85.0356007929999,77.57541359500016],[-85.327998558,77.58476284400018],[-85.16355266799997,77.45874995700007],[-84.80607414799988,77.50372500100019],[-85.0356007929999,77.57541359500016]]],[[[-90.77962455799997,77.64642185600019],[-91.23115873199998,77.57085546800005],[-91.20871696199998,77.39471602900005],[-90.857311784,77.28892225500016],[-90.13664479899995,77.19595706500019],[-89.6413530829999,77.32201999600017],[-89.80674670699995,77.49995390200019],[-90.40642207199983,77.63670061000016],[-90.77962455799997,77.64642185600019]]],[[[-104.99584365399994,77.40603049600014],[-104.97480515999996,77.5236309350002],[-105.37721910599998,77.68705353500002],[-105.9176671749999,77.76283760600018],[-106.06983104999989,77.70982331700003],[-105.81757227099985,77.6154688970002],[-105.78793998099997,77.5318446280001],[-105.48408357799997,77.29552825300016],[-105.22464007199994,77.16362762800014],[-104.80038564499989,77.110779025],[-104.47100629699997,77.1398214130001],[-104.38491231199998,77.27721864199998],[-104.71321763099996,77.38699662800019],[-104.99584365399994,77.40603049600014]]],[[[-95.39148300599999,77.74185018200006],[-95.92835916099989,77.755261508],[-96.2563375019999,77.68821228500019],[-96.29593153599996,77.6081392480001],[-96.06949795799989,77.4937462170002],[-95.28832698099995,77.46516487500008],[-94.84647840899999,77.48275979700014],[-94.14794036299992,77.44653906600001],[-93.56943756799996,77.43949703900012],[-93.3819930809999,77.62667212000014],[-93.08185038699997,77.65718059400007],[-93.22584983299998,77.73107527300016],[-93.64901986699994,77.78071833900003],[-93.84119112299999,77.74770868600018],[-94.70581741799998,77.79238566600003],[-95.39148300599999,77.74185018200006]]],[[[-102.07089097699992,77.90048180600013],[-102.42875435299993,77.88011894700008],[-102.51251769399994,77.78450771600012],[-102.06824454999997,77.68041572900006],[-101.51849815499997,77.72258270800012],[-101.10100547299993,77.71170834200012],[-100.97653490199997,77.77665518200018],[-101.25263939199994,77.84967974400013],[-102.07089097699992,77.90048180600013]]],[[[-114.02591595899997,77.96543673800016],[-114.4974419749999,78.04080839200003],[-114.92477673999997,77.96252168500013],[-115.00063378299996,77.91304201600019],[-114.27758693399988,77.70487159100009],[-113.88399187099992,77.72235264400013],[-113.54154226299983,77.81590259400014],[-114.02591595899997,77.96543673800016]]],[[[-109.54576592199999,78.07101178100015],[-110.08465597199995,78.11616232799997],[-111.21680821099989,78.09169378400014],[-111.7501767469999,78.03762150800014],[-112.39860893399992,78.00667242300011],[-112.792391609,77.93665338599999],[-113.19988520999993,77.91279499100011],[-113.2923306319999,77.77975920900008],[-113.12339064199989,77.634969373],[-113.17700772299992,77.52226004599999],[-112.90576815899993,77.46420331900009],[-112.55782697899997,77.45032372500009],[-112.44588208199997,77.36962627400004],[-111.99409793599995,77.3278913800001],[-111.31424280999994,77.41006319200005],[-110.91975410899988,77.40333832200014],[-110.42782225499991,77.45794426800012],[-110.05550795799991,77.55613146100006],[-110.02860644299994,77.76188102200007],[-110.60483824499994,77.76190135900003],[-110.8573898699999,77.86473747600007],[-110.16992890999995,77.89443757400011],[-109.66094057399994,77.95977744700008],[-109.54576592199999,78.07101178100015]]],[[[-103.06905133799995,78.12285925600003],[-102.768050626,78.2140089940001],[-103.0339577879999,78.26538807900016],[-103.29809185799996,78.14878555300015],[-103.06905133799995,78.12285925600003]]],[[[-109.34518881499991,78.55121105800015],[-110.40843338499991,78.75890432800014],[-111.15721067799996,78.69250803200003],[-111.40215094799993,78.59633131000004],[-111.68794404299996,78.5540840910001],[-112.28867665899992,78.54285095800014],[-113.05730580499983,78.43182948800012],[-113.31087603699996,78.33596571600009],[-113.04717402599994,78.2734995690002],[-112.65148782499995,78.33942869800006],[-112.1560791419999,78.37315026300018],[-111.740294485,78.27345631000009],[-111.40331466599991,78.27592187100004],[-111.25774937699987,78.37564851600001],[-110.9329018379999,78.36886080200009],[-110.67567636599995,78.29736480200012],[-110.36666252899994,78.27665769600009],[-109.96590592599989,78.32616870300012],[-109.42602311499996,78.31412186600016],[-109.22715598199989,78.47769639500007],[-109.34518881499991,78.55121105800015]]],[[[-96.91036836099988,78.70463140300012],[-97.50492734799985,78.7989738440001],[-98.1918765389999,78.81239203500019],[-98.40536864199998,78.76669387800018],[-98.36909632699997,78.64946454200003],[-98.10875570499991,78.57820513600007],[-98.36604617299992,78.52832025900005],[-98.35749326699994,78.44353217200012],[-98.07775697699992,78.3110865910001],[-97.80768930799996,78.2575028890002],[-96.92606556499999,78.14265758],[-96.97683268199984,78.0718997800002],[-97.65831979899997,78.09116308600011],[-97.72247317899996,78.04056281500004],[-97.02668109899997,77.91894452300016],[-97.09106747099992,77.80573475900007],[-96.82033795199999,77.79149296200006],[-96.57651920999996,77.89933982600013],[-96.30667761299992,77.8591644350002],[-95.94025089199988,77.88411608900009],[-95.40164307499998,77.96480334100005],[-95.10374409699989,77.94996800400014],[-94.8932271619999,78.1063050200001],[-95.40982699699998,78.2356892250001],[-94.91029886399997,78.3274306890001],[-94.91150423999994,78.3929114450001],[-95.55682968399998,78.51287866200005],[-95.92897368199993,78.48267860600009],[-96.28898317999995,78.52502287000016],[-96.25871465599994,78.62612503700007],[-96.91036836099988,78.70463140300012]]],[[[-85.15658,79.02762960300015],[-85.8098616449999,79.06883484900015],[-86.27545362999984,78.98948657600016],[-86.32405836999999,78.88857330900004],[-85.20211040399988,78.99234956300018],[-85.15658,79.02762960300015]]],[[[-103.4608021919999,79.30933772600008],[-103.96304532699997,79.37478237300019],[-105.116197748,79.30150133700016],[-105.45640692199999,79.2998495010001],[-105.61226928299993,79.1748862820001],[-105.59917600299991,79.04100563900005],[-105.38268142099992,79.00754677200018],[-104.92566249899994,79.05057409800014],[-104.68191091799997,78.98981347600005],[-104.85438639499995,78.8752456150001],[-104.58006789999996,78.85062849000013],[-104.4494429479999,78.94239523000005],[-104.10116847499995,78.98000511800012],[-103.90205719499988,78.87227911800005],[-104.19891438199983,78.771010333],[-103.58481024599996,78.76627837299998],[-103.32733730999996,78.72556781500009],[-103.49991083099997,78.66453185800003],[-103.54335341099994,78.50488039100003],[-104.13420986999989,78.52648633100017],[-104.73578541799998,78.58162647500012],[-105.01440506599988,78.49479560800006],[-104.73759570999994,78.35923584900019],[-104.43149549499987,78.26576186200009],[-103.91470999799998,78.2442616350001],[-103.65972945099998,78.31717708999997],[-103.05761587699993,78.3674783080001],[-102.56121232399988,78.23513679300004],[-102.16259772199999,78.29266152600019],[-101.70743977199999,78.26100424400005],[-101.28458083099991,78.17582586300017],[-101.00944738399994,78.17105255500013],[-100.74280677099989,78.08551306200019],[-100.76508557399984,77.96809657000017],[-100.4580770849999,77.85592485500007],[-99.90311013399997,77.77928939400016],[-99.77152352499996,77.81785968100019],[-99.33165427599994,77.82837864200019],[-99.05035196599994,77.88746112600018],[-98.95076997999996,78.04179690100017],[-99.48771103399997,78.2715376070002],[-99.70629277399996,78.30263977400011],[-99.85171197899996,78.42875185700012],[-99.4895233929999,78.585063918],[-99.79215927299998,78.64015334600003],[-99.97425065899984,78.73417451100005],[-100.38255987999992,78.83060455100002],[-100.96632513999998,78.77057679000012],[-101.19424924499998,78.82147027800005],[-100.96802343099989,78.92295649500011],[-101.62645624999993,79.07789026600005],[-101.98907378599995,79.08480419000011],[-102.72649289999998,78.95720613400005],[-102.61628643599994,79.1007630630001],[-103.0776003169999,79.28740279800007],[-103.4608021919999,79.30933772600008]]],[[[-99.4908556719999,80.10638573200015],[-99.89021388599997,80.13399452100003],[-100.19637597599996,80.03720615400016],[-100.1387547899999,79.88863577400014],[-99.51388405499995,79.88653867800019],[-99.29599516699994,79.83847773400015],[-99.33810782599994,79.76100612200008],[-98.9922800189999,79.72347341600005],[-98.61747354399995,79.78412349500013],[-98.85963635699989,80.06912486500016],[-99.15314357599993,80.13081792700012],[-99.4908556719999,80.10638573200015]]],[[[-95.18015009599998,80.69681679900009],[-95.97077480999991,80.69405263900018],[-95.24604337599993,80.60797233200009],[-95.18015009599998,80.69681679900009]]],[[[-93.12432674199988,81.34576969200015],[-94.28725609499992,81.340031942],[-94.41354580899986,81.24536162300006],[-93.78388575799994,81.19909306100004],[-93.2901849619999,81.21043113300004],[-93.21696324499993,81.08910802800017],[-93.6005887959999,81.07721513899997],[-94.2350892479999,81.10664068500017],[-94.16823672699996,81.00320298900004],[-94.9155185709999,81.06075256100019],[-95.27615187899994,81.00355893000005],[-95.28820133499994,80.8844188160001],[-95.4942147719999,80.79460853300009],[-94.69793373899995,80.72220154600012],[-94.57723557399993,80.60242129900007],[-94.77866684599996,80.5594397100001],[-95.51087405699997,80.58979372100009],[-95.95349622599997,80.55105124300013],[-96.10770979299991,80.4851567400001],[-95.82210837399992,80.44784330700014],[-96.12433431799991,80.38089840400005],[-96.64383013199989,80.33006295600012],[-96.46650703499995,80.27189784600006],[-95.33561166899989,80.11379188500018],[-94.66707153799996,80.12545224900003],[-95.15803381399996,80.02664887900016],[-96.04220144799984,80.07211881500007],[-96.61664173899999,80.14251558800015],[-96.77133692699988,80.08592982100004],[-96.63290714699991,79.89527207100008],[-96.35927736899998,79.82626377800011],[-95.90084421299997,79.64811287100014],[-95.55394830399996,79.62877716700012],[-94.82245847499996,79.66104114600006],[-94.56964645799997,79.62376412900011],[-95.35516262599998,79.5548804710001],[-95.62859170599995,79.55111188600011],[-95.74169492499993,79.40638636100016],[-95.34680717099991,79.38582983000009],[-95.2069908499999,79.28513812099999],[-94.9918290629999,79.2638770860001],[-94.50733458899998,79.34321356700013],[-94.25351978099985,79.26612043200004],[-93.8605456549999,79.26349053300015],[-93.07264183099994,79.35717214100009],[-92.57223954499989,79.36190788000016],[-91.82930694299995,79.33623608600004],[-91.9594572719999,79.29157946500004],[-92.52299891699994,79.30295509700017],[-92.67957236199993,79.24681713300009],[-92.25692370999997,79.20141913800006],[-91.17233547599989,79.24471726600018],[-90.77450373099992,79.20650696200005],[-92.0957720639999,79.14828482400003],[-93.38262505299997,79.16164668900007],[-93.69117973999994,79.04663754200004],[-94.25323050599997,78.99201015600005],[-93.82055543799999,78.76977408400012],[-93.29649429199998,78.57979052600018],[-92.84394996399999,78.62550748100011],[-92.25067268499987,78.57455195000017],[-91.99519740599993,78.52555081900005],[-92.86119335199987,78.49858839300009],[-92.93773821999997,78.41654942000008],[-92.49497256399997,78.30351649599999],[-91.98230237199988,78.21280289600014],[-90.98031949699998,78.14031665200014],[-90.32610669299993,78.14500889900012],[-90.36212951099992,78.2569319550002],[-90.04209563299992,78.29875430300007],[-89.86265368299996,78.20898137000017],[-89.48535204999996,78.18544748300008],[-89.74528144499999,78.37794850400007],[-89.99993804499991,78.47333907600006],[-89.77027230699997,78.4928543310001],[-88.99391069099994,78.16669365600012],[-88.76302125299998,78.1656390440001],[-88.53558910899994,78.4004748810001],[-88.31556921899994,78.47860428600012],[-88.016242031,78.47775992800007],[-87.86456069499997,78.58179735200014],[-88.10021129999996,78.68117786700003],[-87.52200684199994,78.66072526300013],[-87.32606261199999,78.79804343900014],[-86.28045048699994,79.08950164700019],[-85.27202729799995,79.18846516400009],[-84.86607614699994,79.270583338],[-85.38382917299992,79.45379029000009],[-85.63233898099998,79.6056181510001],[-85.87267813399984,79.51485652200006],[-86.22921202099997,79.6326213480001],[-86.65923980199995,79.656461552],[-87.16871158499998,79.57401879100013],[-86.94203122499994,79.86207869600014],[-86.96526957099996,79.94722116300011],[-87.3607641449999,80.08069242600004],[-88.05100957699995,80.09773135400013],[-87.61817965099988,80.17282545600011],[-87.67196958799997,80.4044544360001],[-88.42354197499998,80.43754840300011],[-88.69309280899995,80.37079471100009],[-88.67972284999996,80.27269525600013],[-88.34418508899995,80.15809843700009],[-88.73805019599996,80.1250327750002],[-89.15588119499989,80.2149560100001],[-89.04796135799995,80.44913852400009],[-89.28634009099983,80.52129745800005],[-90.74169275099996,80.55597991500008],[-90.61035198399998,80.63533336600011],[-90.77362095799998,80.7123285130001],[-91.14238097799989,80.75674093800012],[-91.81148141499995,81.07492716200017],[-91.8376881179999,81.15232620200004],[-92.36561997999996,81.2616063010002],[-93.12432674199988,81.34576969200015]]],[[[-69.53694230999992,83.005125071],[-69.64178523899994,83.10665981900013],[-71.08404268699996,83.0946303360002],[-72.63078433999993,83.09456530500006],[-73.64388287599996,82.93944456000008],[-74.47694421299997,83.02958636700015],[-76.12943802299992,83.05245558100017],[-77.42504985199992,82.97269404800011],[-76.7193160779999,82.88210152900007],[-76.26261148599991,82.70695236800015],[-75.6140497319999,82.62772322400014],[-75.87655478699998,82.59255718400016],[-76.6120682369999,82.67536493800014],[-77.14565650099996,82.85958169000008],[-77.82542745299997,82.9269207280002],[-79.03052458299993,82.88935058700014],[-79.31656182299992,82.96602269200002],[-80.16173294499987,82.92889658400009],[-80.42647276899993,82.78579310900005],[-81.33742905299994,82.82170907000017],[-81.62287650099995,82.79787364600014],[-80.62575871899998,82.56160994100009],[-80.88076925099989,82.528344817],[-81.4965542349999,82.6343661630001],[-82.10178260099997,82.66802273400015],[-82.417807999,82.59769439700005],[-82.73208637499994,82.39152594200004],[-82.62999673599995,82.34823043700004],[-81.51464551999993,82.18119326200019],[-80.98257924999996,82.15548518500003],[-80.58331792699983,81.99265079700018],[-82.09431213499994,82.17349573400008],[-82.66553462899986,82.28034789300006],[-83.01294294299998,82.2165466100002],[-83.873240792,82.36089834200004],[-84.751352737,82.40500947600015],[-84.65279944699995,82.46711699899998],[-85.63525551199996,82.46605507600015],[-85.43448252899998,82.27761265200019],[-85.68401801699986,82.23314584800016],[-86.68627510299996,82.22832272500017],[-86.59875515499994,82.11201708500005],[-86.89460766799988,82.05144213900019],[-88.08654645899998,82.08782984499999],[-88.83122775899994,82.03299883900007],[-89.30434669099998,81.939405889],[-89.86948679199992,81.89628589400019],[-90.60808341699993,81.87471639200004],[-91.70902799699996,81.72438635800006],[-91.93601776299994,81.60672347200011],[-90.94672169699999,81.55446063500011],[-90.73269516099987,81.65758274000018],[-90.29542419299992,81.68894308200004],[-89.77972262399993,81.59804293200006],[-90.82167849099983,81.45554217700015],[-90.33720197699995,81.3771530750002],[-88.94074515199998,81.53552519200008],[-88.90580809599993,81.48729217300007],[-89.90151119099994,81.30266796400008],[-90.28607334499992,81.19710044200008],[-90.2490227099999,81.08485767800005],[-89.66409957199988,81.00585105400017],[-88.26338532799991,81.06627152300013],[-87.43963537099995,81.06252991100013],[-86.45609521699993,81.12033109100014],[-85.94905590799988,81.22648485500014],[-85.04322826399994,81.30259699300018],[-85.01672450899991,81.25058874600012],[-85.51003882899988,81.19372013999998],[-86.02970145299997,81.07975453400007],[-86.69649384199994,81.00333871100008],[-87.65473969399989,80.97904671400016],[-88.29520683499993,81.00035011700004],[-89.45171683999996,80.91179489300009],[-89.27065353599988,80.84255621200009],[-88.20605887099993,80.68067453100008],[-87.53774854199992,80.61829350300007],[-87.1979128509999,80.63467480399999],[-87.08717142199993,80.71635112700005],[-86.62723332299998,80.82000717600005],[-86.21053561999992,80.95897896600013],[-85.71002981499993,81.04436850000019],[-83.72533460399995,81.11614866400004],[-82.83587611799999,81.17050944200014],[-82.76694727099988,81.1262731720002],[-83.81675545399997,81.07110131500002],[-85.20298579199994,81.01370399000012],[-85.7430993299999,80.955543815],[-86.55090930099993,80.71512358100011],[-86.76126450399988,80.59384514300012],[-86.31893164299993,80.54198081400006],[-85.17594201999992,80.50505729500009],[-83.89882387999995,80.53441535700017],[-83.7316022899999,80.6155945160001],[-83.88538356499998,80.78626635100017],[-83.16021796799993,80.80838921000014],[-83.55578628499995,80.71388211800013],[-83.1030871189999,80.64506577999998],[-83.01124418599994,80.53669804700002],[-81.51346772499994,80.6085943550001],[-80.9822343379999,80.65285670800017],[-79.9718611269999,80.76823014800004],[-79.53395477599997,80.84083761400018],[-79.21336008999992,80.95979492700002],[-79.38731407699993,81.00281010500004],[-79.19250701199991,81.10161960100004],[-78.72027255199998,81.1162729190001],[-78.66728296999992,81.18776796500003],[-78.31149832099993,81.28477509200002],[-77.01110824699992,81.43848952000008],[-77.03392705299996,81.37517982000008],[-77.68507836799989,81.31735216300012],[-78.38920460999998,81.14084748800013],[-78.4806289039999,81.07889332800005],[-78.98136737199997,80.97998345600007],[-78.9545160269999,80.8507955010001],[-77.85923034399997,80.90754304100017],[-77.58703187999987,80.82977377600008],[-78.48356160399999,80.77939031900019],[-79.8848106079999,80.63352324800013],[-79.68585367499998,80.59662455600011],[-79.0661982119999,80.61778173300019],[-78.54982752699988,80.56766178400005],[-80.2517626479999,80.52675306499998],[-80.64349625199998,80.46626034100007],[-81.78232108499998,80.40026629800013],[-83.20387465399989,80.33223104400014],[-82.3091038789999,80.04256341400003],[-81.63071159499987,79.95632582500008],[-81.51460271399986,79.71255606900013],[-81.97013426999996,79.71825070800014],[-82.0902225989999,79.84145175300011],[-83.29600751699996,80.10965026800011],[-83.70945540999998,80.22889223100003],[-84.30495183099987,80.26947872000011],[-85.3765970579999,80.2683745010001],[-85.78682997599992,80.3241877690001],[-86.52712576299996,80.29879393900012],[-86.66334324499991,80.10781545000015],[-86.42701694599998,79.94912048400016],[-86.46727992899997,79.80029522800015],[-86.30603200899992,79.74437102800005],[-85.4438670379999,79.69086719000012],[-85.02298647699996,79.61012898900009],[-84.8865584589999,79.48340429900014],[-84.49952331699984,79.41246888000012],[-84.31145169999996,79.18892091600014],[-83.56219977499984,79.05046370700012],[-83.97849028999997,79.05177044700008],[-84.13726386999997,79.12078185900003],[-84.54394508099995,79.1462428050001],[-84.77654940299993,79.06902809200005],[-84.68937812899998,79.01976044100013],[-84.18434653899999,78.95609581000019],[-83.57262458999998,78.93068420600008],[-82.91970352799996,78.93306195500008],[-82.5256181719999,78.88782818900006],[-82.09386741699996,78.9122316770002],[-81.72034356799992,78.85650150900011],[-82.46136514999995,78.83161829300008],[-82.98636507999998,78.85602835300006],[-83.37476289499989,78.77623826400014],[-83.84442700299996,78.84365354800013],[-84.63865965999997,78.85328384600007],[-85.0845728029999,78.92090761000014],[-85.65650458699997,78.84585729000003],[-86.54767442499991,78.79591007300019],[-86.89590854599999,78.72196279000013],[-87.17141222899988,78.54074621100017],[-87.49580825699996,78.43470467300006],[-87.46662196499994,78.1189835290001],[-86.7313991289999,78.11452235600018],[-86.41157761899996,78.19853998700017],[-86.11910328799996,78.05228356000003],[-85.5232093429999,78.09680444500015],[-85.18219518199993,78.21393239999998],[-84.95171651999993,78.22079009300012],[-85.06090687499994,78.05556679600005],[-85.68985951799993,77.9294096910001],[-85.17682050399986,77.77755069500012],[-85.29690959499993,77.66773486200003],[-84.92677894199994,77.5979928380001],[-84.8594526259999,77.53634841300016],[-83.93714460299998,77.49416721800014],[-83.40456921499998,77.6055975060001],[-83.1241741579999,77.78786372300004],[-82.74387127599988,77.95498891200009],[-82.53451893699997,77.91557046000014],[-82.98024525799997,77.67435164900013],[-83.37947360999993,77.5120995740001],[-83.82789789399988,77.44422105400008],[-83.95103903099988,77.38427480100017],[-84.61992357499997,77.37602989800018],[-85.41132497599995,77.38780013600007],[-85.73114578899992,77.45349074400002],[-85.88468438699988,77.63053197500005],[-86.19679860199994,77.78932022100014],[-86.81621563199991,77.88200714800007],[-87.28336798499998,77.89888572900014],[-88.09691002099993,77.82070971600018],[-88.22815916299993,77.65954934500019],[-87.71095909299993,77.53192747800017],[-87.71565017299997,77.35563602000013],[-87.23151718899999,77.30178370900012],[-87.07573747899988,77.17869020400013],[-87.69728581599998,77.1349777370001],[-88.39732710599998,77.11873753200013],[-88.71984303399995,77.00010213700006],[-89.5268308759999,76.8489519060002],[-89.41035131699988,76.67488262000012],[-89.65196151299995,76.57177223000008],[-89.39830393699998,76.53297988800006],[-89.23079565299992,76.436134804],[-88.8753936359999,76.4068279600001],[-88.6993398429999,76.7194453680001],[-88.52618311399988,76.72847178700005],[-88.33327165199995,76.51501806300007],[-88.32588326299998,76.383339105],[-87.60749414999992,76.33631903000003],[-87.4121265679999,76.41222700600002],[-86.70005655699993,76.34448467000016],[-86.60142130899993,76.45120111200015],[-86.30203840299998,76.37469729500015],[-85.69812580199988,76.34567535800005],[-85.23405960299988,76.2805816340001],[-84.38822205199989,76.32134753800011],[-84.94083245899992,76.4149969180001],[-84.21835455099989,76.44602474700002],[-84.03399256299997,76.5282917460001],[-83.70123496399998,76.42299391500012],[-83.30822132599997,76.40488915400005],[-83.04488447799997,76.43109788400017],[-82.7779408479999,76.3762121060002],[-82.2752259159999,76.39032667200007],[-82.09831447499982,76.51793085000014],[-81.77461854499995,76.46563892300003],[-81.47177839999995,76.465153225],[-81.27977891999996,76.53108097400013],[-80.76090975099999,76.41602913100013],[-81.10629295499996,76.21238219100013],[-81.0823058119999,76.14231201100017],[-80.22419302399999,76.24019253600017],[-80.05528470199994,76.22682246100015],[-79.57546899599993,76.30667808100009],[-79.25174850999997,76.31706608500019],[-78.97725689199996,76.41729381800008],[-78.79357023599982,76.56204244300017],[-78.52637792099995,76.45660277200017],[-78.16691079799995,76.5195150300001],[-78.05397791899992,76.62380017000004],[-77.80512281399996,76.64911721300018],[-77.80162476899994,76.84394603600003],[-77.88531636499994,76.94258219500006],[-78.09013142399988,77.01529180200015],[-78.39526747099995,76.9973213240001],[-78.73344782599997,76.82837784600014],[-78.87091545699997,76.92139285800016],[-79.346652367,76.91553483500019],[-79.35433736499988,76.97214403600003],[-78.97708081099995,77.09648018000007],[-79.2529379579999,77.21534316000003],[-79.63316211399996,77.24278220500008],[-80.13893955699996,77.1932148160002],[-81.09237171599995,77.28418521300006],[-81.67499366699997,77.17709200500013],[-81.90518643099989,77.18760757200005],[-81.74306575499998,77.29452720200004],[-81.18026939399994,77.31716295500019],[-81.77293150299988,77.44157048300008],[-81.66925657799999,77.53588950699998],[-81.2970447209999,77.42159675700015],[-80.76920402399998,77.3286421580001],[-80.12668007699995,77.28232819600015],[-79.66130038299997,77.31376193400007],[-79.15597816499996,77.29048505900016],[-78.71968078699996,77.31154465600008],[-78.32830802899997,77.37070608700014],[-78.01974903199994,77.46149890900017],[-77.94122737799995,77.55003676500013],[-77.70516183499996,77.59546788700015],[-77.98974093699997,77.69368135600013],[-77.97497259599999,77.797369823],[-78.39525530999992,77.89843231700013],[-78.06135519699995,77.95822837200006],[-77.18605095599992,77.9384065480001],[-76.95581224499989,77.88933346300007],[-76.25978817499998,78.00338569600018],[-75.88079327199995,77.95903429300006],[-75.64275468799997,78.03962052400016],[-75.60447693199995,78.12837104400012],[-76.11941238199995,78.12920288300012],[-76.63406035699995,78.16220494900011],[-76.63269095099997,78.24813943700013],[-75.61608965799996,78.2010231660002],[-75.08349527699994,78.36285131800008],[-75.81864416199988,78.5006688700002],[-75.05099416699994,78.52680314100007],[-74.66519710299997,78.58314372400014],[-74.81171591899982,78.635573986],[-74.7419112639999,78.8142611610001],[-75.3394156029999,78.88926682000016],[-75.83065710099999,78.92096384600018],[-75.72866539199998,78.96910683800007],[-76.76046941199996,79.0215647340001],[-77.20304079299996,79.06078951000018],[-76.18120408399994,79.12410665000004],[-77.12546335499997,79.18775793300011],[-76.11655427099993,79.19759034000015],[-75.84479889099998,79.15410188800013],[-75.74217845899994,79.07403413800017],[-75.12921729999988,79.03044726900009],[-74.45542784499992,79.029210239],[-74.58945893099991,79.14293127700017],[-74.91481647599988,79.23979856000017],[-75.95661538799993,79.22948965000006],[-76.08789477799996,79.25964050100009],[-76.75798840699986,79.28107943000003],[-76.86390666199998,79.34523255100004],[-76.09299331599993,79.3320231570001],[-75.88443419999993,79.41658251000013],[-74.91466782599991,79.37238008100002],[-74.6449593029999,79.43370343700013],[-74.06168183999989,79.43585720800007],[-73.12085103499999,79.54739331000007],[-73.14672189199985,79.62912796299997],[-73.38810065499996,79.7399119050001],[-74.00079636199996,79.7895607750001],[-74.67084937899995,79.78444913100009],[-74.7455044219999,79.84556919600016],[-74.24544643599995,79.88305638999998],[-73.12819515799993,79.8115932400001],[-72.94176117099994,79.70172822300003],[-72.70817122099999,79.67172364599998],[-71.4674923209999,79.72471764900007],[-71.10510752499988,79.78512836100015],[-70.88140305299999,79.87648856800013],[-71.27044369499998,79.94941056800019],[-70.70918395299998,79.98407674100008],[-70.49265479399998,80.04794880300005],[-70.62587339099997,80.12814126300015],[-71.3658953179999,80.07054515600015],[-71.67695474299995,80.10327469800012],[-70.74334604699993,80.1991196100002],[-70.0869446349999,80.19648897700006],[-69.82956316199994,80.34388566000007],[-69.38120853099997,80.39833502800019],[-68.91107129999995,80.61669303000008],[-68.25361308099997,80.76329163300011],[-66.58730291299997,81.05638814600007],[-66.12645320799999,81.21036657700006],[-65.53876013399997,81.24702521700004],[-64.77368327499994,81.37004538700006],[-64.46004214899995,81.48072907300008],[-64.54075614099992,81.54745277500007],[-65.15037291099992,81.52587643400017],[-66.60726657799995,81.40993904300007],[-67.64755037499992,81.33665039900012],[-68.17195981999993,81.27877905200006],[-68.53830935499991,81.30239761700017],[-66.66931127699996,81.50753713200015],[-67.14686496999991,81.56467556500013],[-66.78793243199988,81.62204486900009],[-65.85072523299993,81.62853013200015],[-65.7891109599999,81.69557323300018],[-64.95650620999993,81.75091762100016],[-64.18363376299993,81.74444079500017],[-63.504018732999896,81.86032378300013],[-62.35276283099995,82.00453132900014],[-61.173492875999955,82.24611561400019],[-61.135980860999894,82.35634884100011],[-61.71955069199993,82.48814839900001],[-62.33235563099993,82.52989146800019],[-62.88724184499989,82.51410696700009],[-63.73315328499996,82.71031542400004],[-63.45586441699999,82.76584233100004],[-63.97133310199996,82.83720250900018],[-64.52895798199995,82.77760870200007],[-64.67758884999984,82.89835420100013],[-65.75667070499986,82.85099892800014],[-67.3651698299999,82.67857599100017],[-68.3916866209999,82.68489534400015],[-67.01113841599988,82.79992372600009],[-66.37590446499996,82.93129929500003],[-67.30715183399991,82.93671429500006],[-68.46121838099992,83.00914909199997],[-68.81996158099997,82.95697084900007],[-69.53694230999992,83.005125071]]]]},"properties":{"objectid":311,"eco_name":"Canadian High Arctic tundra","biome_num":11,"biome_name":"Tundra","realm":"Nearctic","eco_biome_":"NE11","nnh":2,"eco_id":412,"shape_leng":956.812491836,"shape_area":229.363222504,"nnh_name":"Nature Could Reach Half Protected","color":"#579ACE","color_bio":"#9ED7C2","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":645967.978203272,"percentage":7.559464286566222}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-65.86623363999996,-26.845067622999977],[-65.89307349999996,-26.672765030999926],[-65.85977957499989,-26.66435546699995],[-65.84796863499992,-26.53150749799994],[-65.80290953499986,-26.429730070999938],[-65.79268663099998,-26.197545485999854],[-65.70296455999994,-26.005896454999913],[-65.63685648899997,-25.969843038999954],[-65.62577058399995,-25.705314365999982],[-65.69652558199988,-25.414634991999947],[-65.76129958799999,-25.31301581599996],[-65.84954057699997,-25.298770435999927],[-65.96943649399986,-24.973265930999958],[-66.10054052399994,-24.70271301599996],[-66.16596949199993,-24.63921205299988],[-66.24338558799991,-24.713318638999965],[-66.25334161299992,-25.096344120999902],[-66.37182651999996,-25.15713504799993],[-66.44307755799991,-25.221577968999952],[-66.43939957899988,-25.296991628999933],[-66.37790658499995,-25.42164142499996],[-66.35095256299996,-25.669464965999964],[-66.21245552699997,-25.76907416199998],[-66.11869052899988,-25.857748327999843],[-66.07643148799991,-25.966687084999876],[-66.07785758499989,-26.11868233799987],[-66.04873650599995,-26.22521029299992],[-66.07939951999992,-26.433436045999883],[-66.1779026399999,-26.523101957999927],[-66.23374153799983,-26.503874877999976],[-66.2441485089999,-26.393757624999864],[-66.27998349199999,-26.375739550999924],[-66.4063644869999,-26.423304336999934],[-66.54991949899994,-26.42402534799993],[-66.59678657499995,-26.490850405999936],[-66.66574851599995,-26.687996624999982],[-66.88063050699998,-26.740677221999874],[-66.92804760299992,-26.83490490099996],[-66.95051562999998,-26.96996787099988],[-66.99276763099988,-27.066595624999877],[-67.06419351599993,-27.129490072999943],[-67.26136052099992,-27.41859348099996],[-67.34212451699995,-27.4453584069999],[-67.48449751299995,-27.160372692999886],[-67.57953655999995,-27.070803507999983],[-67.66056860899988,-27.037569093999934],[-67.76750157699996,-27.04105177499997],[-67.83853954799997,-27.137038814999983],[-67.8767544889999,-27.263336326999934],[-67.89933064199994,-27.487916513999835],[-67.86022956599999,-27.55543358299991],[-67.88417062899998,-28.01084736099989],[-67.95337648299989,-28.111548383999946],[-67.97046651299996,-28.23450000699995],[-68.08290052399991,-28.251970407999977],[-68.52165962799995,-28.244575892999933],[-68.66776257099991,-28.417567645999952],[-68.80681650099984,-28.663460665999935],[-68.80998251299997,-28.781752956999924],[-68.78351548099988,-28.909032994999905],[-68.91724354899992,-29.074765181999965],[-68.96617156799994,-29.068122522999943],[-69.02266660099997,-29.23620298399993],[-69.04385353799995,-29.49033222999992],[-68.87046062699994,-29.64003436199988],[-68.71376061199999,-29.511829296999906],[-68.68671455699996,-29.625954775999958],[-68.69273360199998,-29.800377319999882],[-68.66092662599993,-29.84166791599995],[-68.66950248599994,-29.957460555999944],[-68.70363661399995,-30.000995657999965],[-68.72069563099996,-30.12257918699987],[-68.68306759099983,-30.20583914599996],[-68.73168950299998,-30.271779745999936],[-68.73991349099992,-30.418640412999878],[-68.7024006179999,-30.458870865999927],[-68.72026060999991,-30.555323437999903],[-68.8536455229999,-30.582349542999964],[-68.87091056799994,-30.79233884899992],[-68.85018161799991,-30.93384197099988],[-68.88611550799999,-30.97606949599998],[-68.89752947999983,-31.16943966799994],[-68.86793549499998,-31.202374679999878],[-68.89224251099989,-31.360789296999883],[-69.08119960999994,-31.346828566999932],[-69.14881860299994,-31.286628731999883],[-69.28704859099997,-31.21982798199997],[-69.2609325929999,-30.944441725999923],[-69.23372661099995,-30.91883467599996],[-69.1697235719999,-30.65868889999996],[-69.09144548099994,-30.54464489299994],[-69.07034253099994,-30.400523096999905],[-69.03379860699988,-30.33324943899987],[-68.87578548199997,-30.254345554999873],[-68.91375751499999,-30.094527136999943],[-69.03434762099994,-30.08223473999982],[-69.09947953499994,-30.011388547999957],[-69.12689254999998,-29.87806834299988],[-69.17871852799993,-29.782405010999923],[-69.23259756899995,-29.410575235999943],[-69.30966162499988,-29.310891943999934],[-69.38111148199994,-29.484574197999905],[-69.40125252499985,-29.75893383799996],[-69.32342554799999,-29.93181947599993],[-69.31479654599991,-30.085011496999982],[-69.28035748599996,-30.12412229599994],[-69.28117354799997,-30.231662280999956],[-69.41643550399994,-30.51978467099991],[-69.46280653999992,-31.006097496999928],[-69.49577357099997,-31.035082285999977],[-69.53839152499995,-31.434191802999976],[-69.64956657399983,-31.641347521999933],[-69.66198754899995,-31.77958002599985],[-69.54069554299997,-31.863059422999868],[-69.49937460399991,-31.955011414999944],[-69.47557854899986,-32.17789694999988],[-69.43341858099996,-32.21489483799991],[-69.46648451899995,-32.60228444299992],[-69.51350364299986,-32.68579686399994],[-69.50312751699994,-32.78166102599988],[-69.22682159899989,-32.884680818999925],[-69.17793263999994,-32.94328809199993],[-69.06906848199992,-32.99141664499996],[-68.95910662899996,-32.96778520999993],[-68.91593949299994,-32.732197403999976],[-68.82291461599988,-32.60646147999995],[-68.76941661599994,-32.47380545699997],[-68.74769558499997,-32.315336692999836],[-68.67467462399992,-32.17707300899991],[-68.65020751299994,-32.01145246899995],[-68.60842154599999,-31.922679396999968],[-68.77427661199988,-31.564195120999955],[-68.72223655999989,-31.40634862899998],[-68.65711956599995,-31.370659825999894],[-68.4540485149999,-31.38307644199989],[-68.40280155899995,-31.449797229999945],[-68.32341755999994,-31.453648881999925],[-68.30844848599997,-31.52564942999993],[-68.22608153599998,-31.641869546999885],[-68.07218157899996,-31.759226584999965],[-67.8521886389999,-31.672952661999886],[-67.75245656399994,-31.572738123999954],[-67.66950254499994,-31.541561970999965],[-67.40148951399993,-31.54358703899993],[-67.32563060799993,-31.510917061999976],[-67.23564148999998,-31.35398050999993],[-67.22367062299992,-31.074282937999897],[-67.26477849399998,-31.030835510999964],[-67.2837826149999,-30.894323476999944],[-67.36106862399993,-30.770365857999877],[-67.65148161999997,-30.502724480999916],[-67.7200854859999,-30.399001278999947],[-67.61734061999988,-30.274749621999888],[-67.52787754999991,-30.280610583999874],[-67.41436763799993,-30.34048318899994],[-67.30413052299997,-30.345218963999912],[-67.22130558499998,-30.226424429999952],[-67.20293463299998,-30.074703935999935],[-67.09846460299997,-29.953626505999978],[-67.01248957799993,-29.73662774999997],[-66.99210361599995,-29.333687032999933],[-67.04840854799994,-29.232785011999965],[-67.05440563199994,-29.152592325999933],[-66.91989854899998,-29.044729469999936],[-66.77637455099989,-28.965484777999905],[-66.40855451099992,-28.82833320499992],[-66.14066352099991,-28.63746084099995],[-66.02264364199988,-28.44490941399988],[-66.02800755699997,-28.25826806699996],[-66.08195449099992,-28.120652806999885],[-66.06691752499995,-27.805988114999934],[-66.18118247899997,-27.737680800999897],[-66.2735215479999,-27.55804638999996],[-66.50806463299995,-27.47004227399998],[-66.34561161499994,-27.42746203799993],[-66.26747853099988,-27.27925456699984],[-66.00899454999995,-27.06172506799993],[-65.93956758199994,-26.908540590999962],[-65.88350656299997,-26.91089657599997],[-65.86623363999996,-26.845067622999977]],[[-69.13629151299995,-31.412412432999872],[-69.08026854799982,-31.446039119999853],[-68.97480056899997,-31.724605804999953],[-68.99583461999998,-31.942810548999944],[-69.04093948499991,-31.99312292299993],[-69.05316951999993,-32.19239261299998],[-69.01179460199995,-32.216092946999936],[-69.02379648199991,-32.408198791999894],[-69.10163854599989,-32.460077072999866],[-69.12930251399996,-32.56693477199991],[-69.24243155299996,-32.57362151899997],[-69.33049752699998,-32.35983336699991],[-69.38480354299998,-32.04056432799996],[-69.34947164199997,-31.994903071999943],[-69.37233764099989,-31.853305569999918],[-69.34032463799997,-31.50762733299996],[-69.21075449699993,-31.34843068399988],[-69.13629151299995,-31.412412432999872]]],[[[-65.88686351599995,-24.805647145999956],[-65.78341658099993,-24.716954204999922],[-65.65912653599997,-24.64250597399996],[-65.69591554699997,-24.59230926999993],[-65.69779963099995,-24.352898980999896],[-65.72402962399997,-24.307460348999882],[-65.72174052599996,-24.157820912999966],[-65.7884445489999,-24.058565600999884],[-65.86000856799996,-24.19272617599995],[-65.89513360399997,-24.325632481999946],[-65.91587059999989,-24.577032077999945],[-65.87916557599993,-24.62608263999988],[-65.95115656899992,-24.71231348099991],[-65.88686351599995,-24.805647145999956]]],[[[-65.37863955699987,-23.881475432999935],[-65.32700351299997,-23.796265004999952],[-65.27242257099988,-23.55060332499994],[-65.24010463399992,-23.52530959099994],[-65.23245262699999,-23.276262292999945],[-65.26239060599994,-23.252461542999924],[-65.27619157699996,-23.095689778999883],[-65.40899663099992,-23.20878394899995],[-65.41366551799996,-23.324929968999925],[-65.3798296189999,-23.35233929599997],[-65.3764114789999,-23.529509426999823],[-65.43201450999993,-23.581199785999956],[-65.53646861399989,-23.795839874999956],[-65.5373916289999,-23.90358655799986],[-65.46398962699993,-24.019467710999947],[-65.37863955699987,-23.881475432999935]]]]},"properties":{"objectid":312,"eco_name":"High Monte","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Neotropic","eco_biome_":"NO10","nnh":3,"eco_id":592,"shape_leng":36.9126921895,"shape_area":10.798834365,"nnh_name":"Nature Could Recover","color":"#DBA05E","color_bio":"#D6C39D","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":116983.30834554779,"percentage":2.3955768114534783}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[25.90359306300013,-32.05258941699998],[25.790735245000178,-31.990304946999913],[25.682846069000107,-32.06049728399995],[25.560218811000084,-32.003284453999925],[25.500017166000134,-32.03821182299998],[25.432321548000175,-32.134727477999945],[25.46768760700013,-32.20686340299994],[25.565221786000052,-32.18080139199998],[25.665311813000073,-32.31787872299992],[25.608745575000114,-32.45172119099993],[25.70494842500011,-32.542507171999944],[25.78728485100015,-32.44745635999993],[25.74972534200009,-32.376491546999944],[25.844795227000077,-32.23420333899986],[26.028841019000083,-32.2526245119999],[26.020462036000026,-32.350185393999936],[26.058147430000076,-32.410476684999935],[26.150175095000066,-32.43040466299993],[26.128231049000192,-32.3884696959999],[26.25189399700014,-32.32168197599992],[26.29981422400016,-32.358600615999876],[26.477266312000097,-32.27627563499988],[26.564691544000027,-32.2830772399999],[26.66156959500006,-32.20405578599997],[26.546274185000186,-32.04341506999998],[26.542081833000054,-32.15865707399996],[26.433776855000076,-32.163345336999896],[26.32278251600019,-32.06431198099983],[26.23446273800016,-32.02948379499992],[26.18319702100007,-32.09836959799992],[26.105222702000106,-32.11366271999998],[25.988843918000157,-32.03752136199995],[25.90359306300013,-32.05258941699998]]],[[[26.091320038000163,-31.82252693199996],[26.19124412500014,-31.786371230999976],[26.267894745000092,-31.686683654999968],[26.2525138850001,-31.626611709999906],[26.137418747000083,-31.631513595999934],[26.002925873000095,-31.709728240999937],[26.08742904700017,-31.80285263099995],[26.091320038000163,-31.82252693199996]]],[[[25.681053162000183,-30.880989074999945],[25.681348801000013,-30.964017867999928],[25.498062134,-31.07025527999997],[25.39164352400013,-31.024667739999984],[25.461879730000135,-31.228141784999877],[25.395500183000138,-31.282814025999983],[25.520816803000116,-31.321296691999976],[25.62290382400016,-31.257455825999898],[25.67922592200017,-31.25762748699998],[25.712165833000086,-31.35119438199996],[25.774583817000178,-31.40679550199991],[25.900615692000088,-31.438800811999954],[25.866767883000023,-31.328817367999875],[25.816274643000156,-31.33271598799996],[25.762809753000113,-31.22033119199989],[25.658512115,-31.21142196699992],[25.594022751000182,-31.1556892399999],[25.58878898600011,-31.087244033999923],[25.673809052000138,-31.02895164499995],[25.743625641000165,-31.034896850999928],[25.681053162000183,-30.880989074999945]]],[[[31.31060028100012,-27.292871474999913],[31.378501892000145,-27.215951919999895],[31.38735580400015,-27.150743483999975],[31.290624619000027,-27.092346190999933],[31.3932685850001,-26.95043373099992],[31.3359355930001,-26.91661262499997],[31.264087677000134,-26.978055953999956],[31.110385895000093,-26.95193481399997],[31.244743347000053,-26.796001433999947],[31.195995331000063,-26.7020988459999],[31.29613304100019,-26.647783278999896],[31.15679359400019,-26.61492156999998],[31.032930374000046,-26.621683120999876],[30.982387543000073,-26.502813338999886],[31.073310852000134,-26.48943328899992],[31.048530578999987,-26.371435164999923],[31.16457176199998,-26.357727050999927],[31.256498337000153,-26.42498397799983],[31.283964157000185,-26.321296691999976],[31.396343231000117,-26.170614242999818],[31.229047775000083,-26.083570479999935],[31.154479980000076,-26.110475539999925],[31.07361412,-26.043851851999932],[30.9842052460001,-26.029331206999927],[30.9042682650001,-26.103109359999905],[30.719493866000107,-26.059726714999897],[30.57606315600009,-25.971210479999968],[30.61700630200005,-25.942026137999846],[30.59480094900016,-25.839908599999944],[30.684757233000028,-25.826110839999956],[30.735824585000103,-25.92963600199988],[31.090454102000024,-25.99851417499991],[31.16019058200004,-25.99667358399995],[31.256511688000103,-25.900272368999936],[31.212173462000067,-25.848583220999956],[31.337179184000036,-25.760196685999972],[31.444871902000045,-25.711408614999982],[31.42972755400018,-25.64197349499983],[31.220478058000083,-25.729101180999976],[31.12825965900015,-25.717645644999948],[31.018678665000095,-25.82166671799996],[30.898250580000024,-25.825372695999818],[30.746143341,-25.73682594299993],[30.743116379000185,-25.636444091999977],[30.843206406000036,-25.50542640699996],[30.67759323100006,-25.458215713999834],[30.55377960200019,-25.294631957999968],[30.62611579900016,-25.224725722999892],[30.704750061000084,-25.23623657199994],[30.693386078000174,-25.374347686999897],[30.797687531000122,-25.38434219399994],[30.85251426700006,-25.294033050999815],[30.950487137000152,-25.239395141999978],[30.954076767000117,-25.124200820999874],[30.852457047000087,-25.051334380999947],[30.946399689000145,-24.789855956999872],[30.92483329800018,-24.728822707999882],[30.922651291000193,-24.54390144299998],[30.860427856000115,-24.52525329599996],[30.68212890600006,-24.586772918999884],[30.616130829000156,-24.743705749999947],[30.517873764000115,-24.762348174999943],[30.41441535900009,-24.862863540999967],[30.427572250000082,-24.909805297999924],[30.301471710000044,-24.948553084999958],[30.238559723000037,-24.872535705999894],[30.17308235200005,-24.925508498999932],[30.144615173000034,-25.13592719999997],[30.09171867400005,-25.08161926299988],[29.962270737000097,-25.05727577199991],[29.920339583999976,-25.145631789999925],[29.809833527000023,-25.199447631999874],[29.790746689000173,-25.031169890999934],[29.808835983000108,-24.91086387599995],[29.748132706000035,-24.90904998799988],[29.69556808500016,-25.004886626999962],[29.535768509000036,-25.146350860999917],[29.697324753000032,-25.23682594299993],[29.63204193100006,-25.358833312999934],[29.661767960000134,-25.43537712099993],[29.496629714999983,-25.461389541999893],[29.264802933,-25.546810149999942],[29.172304153000084,-25.652067183999918],[29.0530662540001,-25.628929137999933],[28.961977005000165,-25.650638579999907],[28.843215941999972,-25.59602928199996],[28.67403602600001,-25.680772780999973],[28.535039902000108,-25.62508583099998],[28.504005432000042,-25.733133315999908],[28.503149033000113,-25.88926887499997],[28.435140610000133,-25.928339004999884],[28.171255112000097,-25.77782058699995],[27.853204727000048,-25.820434569999975],[27.702877045000093,-25.939020156999902],[27.63788414000004,-26.04033660899995],[27.580810547000112,-26.024963378999928],[27.45195198100015,-26.068971633999922],[27.24474525500011,-26.09569358799996],[27.332496643000013,-25.97008323699987],[27.26613616900005,-25.928752898999846],[27.14076995800019,-25.92259788499996],[26.95345306400003,-25.882450103999872],[26.85557937600015,-25.83445358299997],[26.753770828000143,-25.836481093999907],[26.679033279000123,-25.74059867899996],[26.509386063000193,-25.74373054499995],[26.503473282000073,-25.80820846599994],[26.442131042000028,-25.85910987899996],[26.33793830899998,-25.765804290999938],[26.11656379700014,-25.785844802999975],[26.048542022999982,-25.745178222999982],[25.990283966000106,-25.594535827999948],[25.898609161000024,-25.49729156499984],[25.735279083000023,-25.360385894999865],[25.674379349000162,-25.615942000999894],[25.84715080300009,-25.606346129999963],[25.842975616000047,-25.72693252599987],[25.74960136400017,-25.706899642999872],[25.703815460000044,-25.759037017999958],[25.574045181000088,-25.82956695599995],[25.54614067099999,-25.894371032999913],[25.40275764500018,-25.94131660499994],[25.4599437710001,-25.98815154999994],[25.38534545900012,-26.041887282999937],[25.355491638000103,-26.115306853999982],[25.286283493000155,-26.145486831999904],[25.321422577000078,-26.45009231599994],[25.213333130000024,-26.450893401999963],[25.08985900900018,-26.51296615599989],[25.120014191000166,-26.62388229399994],[25.23854255700013,-26.69215393099995],[25.110660553,-26.844373702999974],[25.185146332000045,-26.86424827599984],[25.239675522000027,-26.948183059999963],[25.236118317000148,-27.05434417699996],[25.341508865000037,-27.142889022999952],[25.415111542000147,-27.073205947999952],[25.461912155000107,-27.20191001899991],[25.46822547900001,-27.33458900499994],[25.55356407200003,-27.36906623799996],[25.564287186000172,-27.260068892999925],[25.67787933300019,-27.21595001199995],[25.770790100000056,-27.259378432999938],[25.793066025000087,-27.36040115399993],[25.96347236600019,-27.3614978789999],[25.911684036000167,-27.452543258999924],[25.817411423000067,-27.44583702099993],[25.74331092800014,-27.53348731999995],[26.025385651000192,-27.669664495999882],[26.134880066000107,-27.588191985999913],[26.22065925600009,-27.610443114999953],[26.27510643000005,-27.73591995199996],[26.229742050000027,-27.771078109999905],[26.23778152500006,-27.92875099199989],[26.07097672500015,-27.915480979999984],[26.003068924000104,-28.000473021999937],[25.885126114000116,-28.00712585399998],[25.705694199000163,-27.957798003999926],[25.604120255000055,-27.996231078999983],[25.49938201900011,-27.89608192399993],[25.44138526900008,-27.94915199299993],[25.492380142000115,-28.004114150999953],[25.588180542000032,-28.03929901099997],[25.529823303000114,-28.27729415899995],[25.437244415000123,-28.263641356999983],[25.293634415000156,-28.349292754999965],[25.227506638000023,-28.451585769999838],[25.317651749000163,-28.502687453999897],[25.297573090000185,-28.68105697599998],[25.36973762500014,-28.762773513999946],[25.313667297000165,-28.818288802999916],[25.461093903000062,-28.91628456099994],[25.50257682800003,-29.013711928999896],[25.52524757400016,-29.18123245199996],[25.487461090000068,-29.23287582399996],[25.560516356999983,-29.498643874999914],[25.41880226100011,-29.50591278099995],[25.212678909000147,-29.458559035999826],[25.1458911900001,-29.50679206799998],[25.192947388000107,-29.58983230599989],[25.265806198000064,-29.611673354999937],[25.22484016400017,-29.757553100999928],[25.121675491000133,-29.72002220199994],[25.070579529000156,-29.761693953999952],[24.943798065000124,-29.775249480999946],[24.753921509000122,-29.752853393999885],[24.74610328700004,-29.894411086999924],[24.59302902200011,-29.89735031099997],[24.45064353900017,-29.781549453999958],[24.415569305000133,-29.835914611999954],[24.468561172000022,-29.995180129999937],[24.546430588000135,-29.96342849699994],[24.606683731000032,-29.99358749399994],[24.61810493500019,-30.092117309999935],[24.77401733400012,-30.194585799999913],[24.822824478000086,-30.329048156999875],[24.78142929100011,-30.415233611999895],[24.622146606000058,-30.376035689999924],[24.523841858000026,-30.383644103999984],[24.500061035000158,-30.461999892999927],[24.372367859000178,-30.50040435799997],[24.324001312000178,-30.375751494999975],[24.25162506100014,-30.31321906999989],[24.230070114,-30.489250182999967],[24.19510841400006,-30.583570479999935],[24.337579727000048,-30.641822814999955],[24.348680496000043,-30.564474105999977],[24.52031517000006,-30.438447951999876],[24.576560974000188,-30.46014785799997],[24.701265335000016,-30.415109633999975],[24.662231445000145,-30.59566116299993],[24.601474762000123,-30.644702910999968],[24.805030823000152,-30.66547203099998],[24.93141365100007,-30.584436416999893],[24.827348709000034,-30.507591247999983],[24.837583542000175,-30.385429381999984],[25.00975608800013,-30.448160171999973],[25.09562492400005,-30.433584212999904],[25.168582916,-30.498405456999876],[25.191373825000028,-30.608020781999926],[25.306772232000128,-30.667648314999894],[25.60327148400006,-30.595876693999912],[25.682365417000142,-30.678874968999935],[25.770832062000125,-30.68219375599989],[25.95167160000011,-30.548225402999947],[26.04552459700011,-30.60231018099995],[26.193569183000136,-30.55057144199992],[26.270053864000147,-30.662437438999973],[26.39990043600011,-30.556776046999914],[26.747512817000086,-30.658226012999933],[26.791406631000086,-30.717168807999883],[26.70408248900003,-30.758699416999946],[26.608350754000185,-30.72285461399997],[26.422283173000153,-30.750101088999884],[26.42241287200011,-30.941190719999895],[26.335884094000107,-30.986297606999926],[26.332511902000192,-31.068984984999872],[26.273824692000062,-31.10792922999991],[26.33058548000014,-31.167810439999982],[26.32900619500009,-31.237819671999944],[26.19085693400018,-31.32415008499987],[26.118614197000113,-31.32607078599989],[26.082683563000103,-31.395952224999974],[26.103754044000084,-31.485359191999976],[26.077026367000087,-31.59713554399997],[26.175838470000087,-31.59825897199994],[26.324167252,-31.63385581999995],[26.396680832000186,-31.565601348999962],[26.46380615200019,-31.56039428699995],[26.413133621000156,-31.431413650999957],[26.46780776999998,-31.39672279399997],[26.372270583999978,-31.321763991999887],[26.374628067000117,-31.27206993099992],[26.467353821000188,-31.212341308999953],[26.489315033000025,-31.156768798999963],[26.431089401000122,-31.044916152999974],[26.520492554000157,-31.03915405299989],[26.543394089000117,-30.958370208999952],[26.65078926100017,-30.938383101999932],[26.755968094000025,-30.96590232799997],[26.870788574000187,-31.04493331899988],[26.889387131000092,-31.144556045999877],[27.064115524000044,-31.10210800199991],[27.16082954400008,-30.974740981999958],[27.256778717000145,-30.965660094999976],[27.22230720500005,-30.86040878299997],[27.166103363000047,-30.802604674999884],[27.251550674000043,-30.66047859199989],[27.37982177700013,-30.695724486999893],[27.44931221000013,-30.640100478999898],[27.625566483000057,-30.67908668499996],[27.76366615300003,-30.55583381699995],[27.764167786000087,-30.44683265699996],[27.860166550000088,-30.363332747999948],[28.001167297000052,-30.434833526999967],[27.91916656500007,-30.288333892999958],[28.023166656000114,-30.219333648999964],[27.944667816000162,-30.155832290999967],[28.00516700700007,-30.116333007999913],[28.07216644300013,-30.162332534999905],[28.15566635100015,-30.06833267199994],[28.363666534,-30.069833754999934],[28.50216674800015,-30.114332198999932],[28.660667419000106,-30.03133392299992],[28.732166290000066,-30.03283309899996],[28.713167191000082,-29.899833678999983],[28.607667923000065,-30.030332564999924],[28.219167708999976,-29.956832885999972],[28.101167679000184,-30.04733276399992],[28.001167297000052,-29.98283386199995],[27.974666595000087,-30.036832808999975],[27.88716697700005,-30.015333175999842],[27.800167084000066,-30.127332686999978],[27.643167496000046,-30.187332152999886],[27.643167496000046,-30.2828330989999],[27.551944733000028,-30.2626457209999],[27.565898895000146,-30.16341972399988],[27.538272858000084,-29.947029113999974],[27.70266723600008,-29.837755202999915],[27.635723114000086,-29.629495620999933],[27.65777206400014,-29.524507522999897],[27.791177750000088,-29.491361617999928],[27.71136093100006,-29.29161834699994],[27.82529640200005,-29.220464705999973],[27.927272797,-29.233644484999957],[28.003961563000132,-29.14762687699988],[28.028575897000167,-29.074420928999928],[28.152471542000058,-29.06012153599994],[28.332141876000037,-28.831533431999958],[28.47100067100007,-28.729375838999943],[28.362791061000166,-28.63544082599998],[28.259712219,-28.620504378999954],[28.227508544999978,-28.573379516999978],[28.332418442,-28.497173308999947],[28.426773071000127,-28.50353431699989],[28.488870621,-28.457868575999896],[28.620229721000044,-28.457281112999965],[28.655038834000095,-28.534154891999947],[28.796966553000175,-28.57924461399989],[28.854862213000047,-28.534400939999955],[28.976381302000107,-28.514173507999942],[29.012981415000183,-28.540325164999956],[29.209390640000038,-28.50112152099996],[29.376306534000094,-28.37836646999989],[29.58500099200012,-28.2626075739999],[29.662237167000114,-28.14649200399998],[29.601320267000062,-27.99434661899994],[29.66749763500019,-27.944410323999875],[29.70741081200009,-27.815586089999954],[29.667552948000036,-27.65386962899987],[29.788496017000114,-27.596290587999874],[29.781713486000115,-27.470619201999966],[29.71406745900009,-27.459861754999906],[29.657958984000118,-27.361181258999977],[29.694755554000153,-27.332489013999975],[29.8786468510001,-27.427553176999936],[29.918142319000026,-27.50891303999998],[30.03810882600004,-27.51601982099993],[30.214960098000063,-27.576227187999905],[30.418178558000136,-27.70713043199993],[30.480888367000148,-27.68801307699988],[30.56865501400017,-27.74609184299993],[30.80662918100012,-27.753929137999933],[30.870002747,-27.717357634999928],[30.935417175000055,-27.62059402499989],[30.891380309999988,-27.539924621999944],[30.921844482000154,-27.47239875799994],[31.049617767000086,-27.492805480999948],[31.07306480400007,-27.388925551999876],[31.048223495000173,-27.236743926999964],[31.236032486000113,-27.231908797999893],[31.31060028100012,-27.292871474999913]]],[[[30.802494049000074,-24.505178451999882],[30.762527466,-24.450414657999943],[30.635643005000077,-24.45619010899992],[30.664583206000145,-24.490198134999957],[30.802494049000074,-24.505178451999882]]],[[[30.515827179000155,-24.43310546899994],[30.493934631000116,-24.355293273999962],[30.396251678000112,-24.28874015799994],[30.28307533300017,-24.1269168849999],[30.24252700800014,-24.040296554999884],[30.140888214000142,-24.05715179399988],[30.165283203000172,-24.188196181999956],[30.29779243500019,-24.210052489999896],[30.33153915400004,-24.314243316999864],[30.415229797000165,-24.388675689999957],[30.515827179000155,-24.43310546899994]]],[[[30.103670120000174,-24.04436111499996],[30.09663963300011,-23.93111991899997],[30.036289215000068,-23.88464927699988],[29.992984772000057,-23.76122856099994],[29.880426407000073,-23.83667564399991],[29.907648087000155,-23.923860549999915],[29.881511688000103,-24.035091399999885],[29.810388565000153,-24.05005836499987],[29.77394485500014,-24.11277008099995],[29.88902092,-24.1398315429999],[30.006660461000138,-24.045778274999975],[30.103670120000174,-24.04436111499996]]]]},"properties":{"objectid":313,"eco_name":"Highveld grasslands","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Afrotropic","eco_biome_":"AF10","nnh":4,"eco_id":81,"shape_leng":184.115000272,"shape_area":22.1380198128,"nnh_name":"Nature Imperiled","color":"#F8C29C","color_bio":"#D6C39D","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":242557.736464843,"percentage":4.967082031886613}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[70.39769753400003,34.86354129100016],[70.39116652300015,34.77013353000007],[70.48493152100002,34.75211310900005],[70.54859961900019,34.80367874500013],[70.69231455800019,34.8319991840001],[70.68424261700011,34.88123783600008],[70.54181664800018,34.960771871000134],[70.54356360400016,35.10698210200019],[70.46316556200009,35.13306239400015],[70.44720457500011,35.00021476100011],[70.39769753400003,34.86354129100016]]],[[[70.43394457100004,36.29005504700007],[70.34153760900006,36.41247726900019],[70.42424050700004,36.54267052200015],[70.38976255400007,36.64776315900019],[70.42124950900018,36.800278761000186],[70.31452156199998,36.83604098900008],[70.27659663500009,36.750410963000036],[70.18019049900016,36.70236589400014],[70.14743050100014,36.61851283200002],[70.03742958900011,36.622544527000116],[69.88098153400011,36.551825069000074],[69.87688462699998,36.46847592600017],[69.76716652000005,36.44101848800011],[69.69600650900009,36.377489864000154],[69.68933049100013,36.25672675599998],[69.46741457500002,36.11999964300014],[69.5484695900002,35.986541639000166],[69.54656254000014,35.9291212440001],[69.44420659400015,35.92937203000008],[69.37342863000003,35.87732929600014],[69.41014857400017,35.73944346800005],[69.45558150700009,35.676624122000135],[69.34095764000011,35.56446369600019],[69.35214261900018,35.47426704200012],[69.4032365220001,35.44136974800006],[69.61867557300013,35.53295042200011],[69.8234935800001,35.66279247300014],[69.87590059200005,35.61620049000004],[69.80059053300005,35.52804550000013],[69.61019157800007,35.39774194200004],[69.65459454300003,35.27040289500013],[69.51509050499999,35.295358168],[69.43777448900005,35.26722213100004],[69.4102095940001,35.19947757700015],[69.54818762300005,35.128583608000156],[69.70617660700009,35.17219247100013],[69.72408253200007,35.055954417000066],[69.78327955600008,34.93963941700008],[69.91546652700015,34.98866801800017],[69.91171260800019,35.06289228600008],[70.04158751600016,35.02869093600003],[70.11562352600015,35.04042878500013],[70.04549448900002,35.27260398300018],[70.01432051400008,35.337654425000096],[70.05575561400002,35.48225063700011],[70.20268249800017,35.51365293400016],[70.16521455300006,35.395109857000136],[70.18327353100017,35.35049483000017],[70.37607557700011,35.359214691000034],[70.454872507,35.33159330300009],[70.50433361500006,35.23610180000003],[70.5704425240001,35.26777902400005],[70.65795864500018,35.40259472800011],[70.66145356400006,35.534598303999985],[70.7515186220001,35.532084404000045],[70.87190253300002,35.633313151000095],[70.93858359000018,35.6020069110001],[70.81021155800016,35.37419851700008],[70.77493263100018,35.30358215600012],[70.84275848800013,35.26464318700016],[70.7938235960001,35.155320873],[70.85867354300007,35.01608723500016],[70.94565557000016,35.044498702],[71.09517648500008,35.20953753800018],[71.20865655800009,35.250922346000095],[71.22851563299997,35.31713183800019],[71.21171561700015,35.49891335700016],[71.26323649400018,35.584078355000145],[71.24901558900012,35.91827237900014],[71.18873562400006,36.0340336700001],[71.20923658499999,36.14352127500018],[71.2555466,36.20614180300015],[71.05282557800007,36.39460973400003],[71.03628556900014,36.48516161300006],[70.91999051800008,36.54033247400014],[70.85282163300013,36.715506539000046],[70.75155650800019,36.68364726000016],[70.7847066,36.45815026000008],[70.73671752200005,36.25009398800012],[70.7860485430001,36.09730731600007],[70.7686465380001,36.0345406080001],[70.69255059199998,35.99646346500003],[70.57617155400004,36.09602941100013],[70.49433853100015,36.11914887900008],[70.44013963600003,36.07824854500012],[70.33331261500001,36.071039940000105],[70.33796658300014,36.16445172500016],[70.4199595340001,36.21295461400007],[70.43394457100004,36.29005504700007]]],[[[71.47884351900007,36.745173112000145],[71.47410556400018,36.79942498000014],[71.33545664800005,37.05074276800002],[71.31927454600014,37.13845301499998],[71.36520351900009,37.30483463100006],[71.32503559500014,37.41240764100007],[71.38304155000009,37.48077731700005],[71.46179154300017,37.75965983200007],[71.44864653900004,37.85187116100013],[71.39157851900012,37.90535625200016],[71.28378255000018,37.89220337000012],[71.18543952400006,37.80259428700003],[71.08071854000008,37.778336724000155],[70.99542261700003,37.84419249900003],[70.99945850300003,37.898890452000046],[71.15124555,38.0366138390001],[71.20671849400014,38.169263492000084],[71.06105057200006,38.14224107400014],[70.96819249600009,38.254851943000176],[70.90393062300012,38.25194593700007],[70.83751661400004,38.164392600000156],[70.78399648500016,38.19085410100013],[70.723541506,38.30279123300011],[70.62918055400019,38.13600426700003],[70.61353254700015,38.06829441499997],[70.60734552900004,37.919684110000105],[70.64381451900016,37.827613765000194],[70.57711753600012,37.77155056800018],[70.47150455000013,37.8274387510001],[70.45225550900005,37.735906356999976],[70.69654859200006,37.60343976400003],[70.70066863300013,37.45332658400008],[70.76851661900008,37.38343123400006],[70.78183764200014,37.28979800000019],[70.74038661700018,37.21825024200018],[70.57000750300011,37.28982079900004],[70.53295848500011,37.19708375700009],[70.71088449700005,37.07875827400011],[70.83386964700003,37.07130726500009],[70.8408665250002,37.174901218000116],[70.92689552900003,37.27810625100011],[71.06137059300016,37.23562291000019],[71.1434175230001,37.06499032700003],[71.24543752200009,36.99453473100016],[71.28885661900017,36.90436456400005],[71.32764454700015,36.73511013400014],[71.40795156100017,36.66605364500009],[71.47884351900007,36.745173112000145]]]]},"properties":{"objectid":316,"eco_name":"Hindu Kush alpine meadow","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Palearctic","eco_biome_":"PA10","nnh":4,"eco_id":753,"shape_leng":21.1957137937,"shape_area":2.83632932427,"nnh_name":"Nature Imperiled","color":"#FA9A50","color_bio":"#D6C39D","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":28325.79918046955,"percentage":0.580053929422003}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[49.134495964000166,6.535037730000056],[49.05773776600017,6.537551169000096],[48.89007568400001,6.429687500000057],[48.69427490200013,6.24890136700003],[48.65865194700012,6.195503062000057],[48.570862633000104,5.963974860000121],[48.457713721,5.791557470000157],[48.22063981000014,5.306633560000137],[48.159912109000174,5.106079102000024],[48.15570068400018,5.026672363000159],[48.09271240200013,4.937072753999985],[48.02331543000014,4.7293090820001],[47.95410156200012,4.688720703000058],[47.915283203,4.778320312000062],[47.86248779300013,4.768127441],[47.81768798799999,4.584716797000112],[47.76068115200019,4.454284668000128],[47.58752441400014,4.340270996000129],[47.41851806600016,4.21008300800014],[47.35131835900012,4.175292969000111],[47.249328613000046,4.049072266],[47.17810058600014,3.845275879000155],[47.10272216800007,3.763916016000167],[46.92547607400007,3.627502441000161],[46.844116211000085,3.543884277000132],[46.703491211000085,3.350524902000132],[46.48968505900007,3.134521484000061],[46.39392089800003,3.020507812000062],[46.275878906000116,2.827087402000075],[46.1760864260001,2.739501953000172],[46.01307251400016,2.563375996000048],[45.77684792100018,2.362408805000143],[45.723961818000134,2.344780104000051],[45.49478870600018,2.193173276000095],[45.364336319000074,2.157915874000025],[45.25503837300016,2.04156644700015],[45.22692871100014,1.960083008000026],[45.39428710900006,2.047302246000129],[45.89831543000008,2.351684570000032],[46.10412597700014,2.515075684000124],[46.34527587900004,2.78649902300009],[46.57568359400011,2.971679687000062],[46.80688476600005,3.203918456999986],[46.87207031200012,3.293090820000145],[47.13812255900018,3.573730469000111],[47.215881348000096,3.668518066000161],[47.42852783200004,3.869323730000076],[47.624084473000096,4.095886230000076],[47.939514160000044,4.438476562000062],[48.0078735350001,4.536682129000155],[48.197509766,4.883300781000059],[48.31488037100007,5.056091309000124],[48.65148925800014,5.492309570000032],[48.98571777300009,6.044677734000174],[49.08367919900013,6.28210449200003],[49.08532714800015,6.390930176000154],[49.134495964000166,6.535037730000056]]]},"properties":{"objectid":320,"eco_name":"Hobyo grasslands and shrublands","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Afrotropic","eco_biome_":"AF13","nnh":4,"eco_id":95,"shape_leng":12.6232016519,"shape_area":1.09135605852,"nnh_name":"Nature Imperiled","color":"#E05A57","color_bio":"#CC6767","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":13478.346271899789,"percentage":0.051088829427559185}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[47.54197618200004,11.143217897000113],[47.45066694200011,11.121018315000072],[47.37820860100015,11.15770558100013],[47.15039853100018,11.06168300100012],[47.10749056300017,10.991707017000124],[47.017261554000186,10.959888977000048],[46.87051052300012,10.85767636200012],[46.666789539000035,10.744245072000126],[46.44966153400003,10.679939614000034],[46.34471859700011,10.688898024000139],[46.2362286070001,10.779601616000036],[46.096939481000106,10.761644059000105],[45.895694417000016,10.78887215300017],[45.80825208100015,10.860936699000092],[45.597209575000136,10.76414287200015],[45.4606014850001,10.663169939999989],[45.324451549000116,10.65933991300011],[45.23324956900018,10.561216996000098],[45.08797056800012,10.507730730999981],[44.943489523000096,10.410057586000107],[44.725769588,10.416786913000067],[44.6156194780001,10.381339342],[44.410400481000124,10.391029660000129],[44.28818160300017,10.430617054000152],[44.21830115100005,10.490214821000052],[44.11974334700011,10.50703811600016],[44.064441618000046,10.607943592000026],[43.97118496700017,10.66371652500004],[43.71646000200013,10.409081535999974],[43.47891886300016,10.160037034000027],[43.31295159399997,10.006844001000104],[43.201666666000165,9.87177626100015],[43.25666666600006,9.84333333300009],[43.29916666700012,9.610833333000187],[43.39833333300004,9.553333333000012],[43.48500000000013,9.40583333300009],[43.6475,9.358333334000065],[44.00666666700016,8.99583333400011],[44.27166666600016,8.911666666000144],[44.87333333300012,8.70916666700009],[45.514166666,8.4975],[46.09083333400014,8.307500000000175],[46.24166666700012,8.133333333000166],[46.316666667000106,8.1],[46.45000000000016,7.975000000000136],[46.49166666700006,7.975000000000136],[46.58333333300004,7.875000000000171],[46.616666666000185,7.766666666000162],[46.625000000000114,7.616666667000061],[46.5,7.516666667000095],[46.58333333300004,7.416666667000129],[46.66666666600008,7.225],[46.59166666699997,7.225],[46.63333333300011,7.125000000000171],[46.54083333400018,7.021666667000034],[46.51583333300016,6.935833333000176],[46.54333333400007,6.877500000000111],[46.484166667000125,6.763333334000038],[46.52415078700017,6.638349481000148],[46.59916666700008,6.5775000000001],[46.718341008000095,6.541872884000156],[47.19423320900012,6.541872884000156],[47.5749469700001,6.553770188999977],[48.562423287000115,6.553770188999977],[49.05773776600017,6.537551169000096],[49.134495964000166,6.535037730000056],[49.21110149800012,6.733143306000045],[49.39744947900016,7.048994372999971],[49.603881505000174,7.329425026000081],[49.705898068000124,7.491642680000041],[49.569755592000035,7.469782677000126],[49.50043859400006,7.536927924000111],[49.49177153800002,7.69287876500016],[49.58976755300017,7.906489220000026],[49.779266626000094,8.474949391],[49.93547060100019,8.978235571000027],[49.97018056500008,9.533586278000143],[50.10902762900008,9.880677536000064],[50.26400028000006,10.128607960000181],[50.15959,10.21624],[50.12572,10.32376],[50.1819,10.466970000000117],[50.309520000000134,10.66328],[50.39413596000014,10.758818789000088],[50.386840613,10.919386950999979],[50.172492550000186,10.90152628800007],[49.96739680400003,11.023050706000106],[49.93131000000011,10.99058],[49.95089000000013,10.85703],[49.835610000000145,10.83874],[49.7676,10.867070000000183],[49.78635,10.93109],[49.71067,10.96702],[49.681652491000136,11.055505370000105],[49.28105387700003,10.997450966000144],[49.1849,10.953680000000134],[49.04644353600003,10.959268214000133],[48.738464586000134,10.77641800200007],[48.39198654800015,10.651310720000026],[48.074382490000175,10.737923441000135],[47.49692149600003,10.439589546000036],[47.42791000000011,10.39826],[47.266031076000104,10.39204982400014],[47.28938,10.23888],[47.34857,10.187770000000171],[47.15865000000014,10.152230000000145],[46.99194000000011,10.248],[46.96903735000012,10.342136881999977],[46.87018949600014,10.327317138000012],[46.869590525000035,10.389969014000087],[46.76166000000018,10.39380000000017],[46.67488,10.34725],[46.52351000000016,10.41585],[46.42586000000017,10.44097],[46.228310000000135,10.45537],[46.14828000000011,10.51737],[46.008690000000115,10.384050000000116],[45.83195,10.37128],[45.692310000000134,10.199960000000146],[45.60220000000015,10.134960000000149],[45.47703,10.09932],[45.22126,10.08124],[45.11921,10.09984],[44.98430000000019,10.16517],[45.00202000000013,10.27370000000019],[45.04819,10.329000000000178],[45.20201,10.42756],[45.25140000000016,10.42423],[45.42032000000012,10.349080000000185],[45.49059,10.363090000000113],[45.717,10.5701],[45.72041,10.650440000000117],[45.78208000000012,10.790380000000141],[45.8743,10.803270000000111],[45.95525000000015,10.62078],[46.07706,10.60866],[46.15947000000017,10.66933],[46.24935000000016,10.57692],[46.337260000000185,10.65062],[46.45570000000015,10.57771],[46.523800000000165,10.611270000000104],[46.669660000000135,10.52746000000019],[46.721270000000175,10.54584],[46.76537000000019,10.67822],[46.82469,10.710700000000145],[46.88524000000018,10.83436],[47.023135168000124,10.862037239000074],[47.18618000000015,10.97071],[47.38829,11.07462],[47.490400000000136,11.09294],[47.54197618200004,11.143217897000113]],[[45.174910000000125,9.91304],[45.18901,9.800120000000106],[45.06065000000018,9.83613000000014],[45.06926,9.71888],[44.92213,9.687610000000177],[44.87171,9.73328],[44.86745000000019,9.82339],[44.97856,9.99366],[45.06637,9.99353],[45.174910000000125,9.91304]]]},"properties":{"objectid":324,"eco_name":"Horn of Africa xeric bushlands","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Afrotropic","eco_biome_":"AF07","nnh":4,"eco_id":45,"shape_leng":35.3475106994,"shape_area":18.9576866456,"nnh_name":"Nature Imperiled","color":"#FCBE51","color_bio":"#FEAA01","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":231992.94044645116,"percentage":1.0821063011361327}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-57.990444522999894,-21.502770266999903],[-58.05207850099987,-21.744513238999957],[-58.11175949599988,-21.78056816399993],[-58.33116955799994,-21.772675595999885],[-58.50769461899995,-21.84035091499993],[-58.63175952599994,-21.86229792199987],[-58.867626616999985,-21.821250233999933],[-59.05338652299997,-21.860828909999896],[-59.03566349199997,-21.922896567999942],[-58.605247565999946,-22.029808748999926],[-58.68985751499997,-22.110901482999907],[-58.63956860999997,-22.15867195999988],[-58.53831454899995,-22.173830967999947],[-58.431915507999975,-22.15481913499997],[-58.34712551699994,-22.20243169799994],[-58.14369555299987,-22.212279092999893],[-58.06506357799992,-22.293853785999943],[-58.23577461499991,-22.499062892999916],[-58.37891354899995,-22.704938024999876],[-58.46866260999985,-22.777673330999903],[-58.61437948199995,-22.84020584899997],[-58.714885541999934,-22.85806584099987],[-58.968910517999916,-22.935413875999927],[-59.079502521999984,-22.91841487299996],[-59.198402500999975,-22.83016449699994],[-59.247596560999966,-22.700759143999903],[-59.21768154799997,-22.57312086299993],[-59.2413555629999,-22.502546578999954],[-59.309692548999976,-22.49054436499995],[-59.47910657099993,-22.54195661199998],[-59.70668462999993,-22.58022955499996],[-59.62525561399991,-22.6661329989999],[-59.54926662099996,-22.788397472999975],[-59.63549762899993,-22.908964277999928],[-59.763767569999914,-22.890803375999837],[-59.88879354699992,-23.04030735899994],[-59.89186450799997,-23.127537154999914],[-59.78253163399995,-23.195812617999877],[-59.76607158699994,-23.329898425999943],[-59.80138052199993,-23.381433886999957],[-59.72487252199994,-23.515272093999897],[-59.72606258399992,-23.632394103999957],[-59.841648525999915,-24.083369495999932],[-59.88238558199998,-24.400200742999914],[-59.855224526999905,-24.70345297099982],[-59.77235063899997,-24.87519380899994],[-59.76501462899989,-24.9428553809999],[-59.64925350599998,-25.03213404899998],[-59.701568483999836,-25.058217860999946],[-59.87721662999985,-25.053666990999943],[-60.022659580999914,-24.997589878999918],[-60.050361603999875,-25.10128575599998],[-60.050605516999894,-25.311234828999943],[-59.90486953399983,-25.521124054999973],[-59.79710357199991,-25.546399851999922],[-59.79430753699995,-25.651214712999888],[-59.87738460299988,-25.69886164099995],[-59.93613051199998,-25.786008623999862],[-60.00586660599993,-25.787713502999964],[-60.03860447599993,-25.686482240999908],[-60.15400350099998,-25.561139092999895],[-60.22550549399983,-25.60574188199996],[-60.22000461799996,-25.665178292999826],[-60.1307185739999,-25.714090888999976],[-60.00122051699992,-25.90560513899993],[-60.01523556199999,-25.993260902999907],[-60.11330751699995,-26.011614085999952],[-60.28804052699991,-25.893368565999936],[-60.33290047199995,-25.81041739699998],[-60.423973538999974,-25.751896959999897],[-60.49006652199995,-25.775905915999886],[-60.4129945869999,-25.87319148099988],[-60.396968554999944,-25.960875408999982],[-60.301380492999954,-26.08122176899991],[-60.292182527999955,-26.21568191299997],[-60.25741556699995,-26.250089121999963],[-60.293113589999905,-26.492532318999963],[-60.35055560999996,-26.672614155999895],[-60.35784149599988,-26.900813146999894],[-60.38897657799993,-26.943823206999923],[-60.35593058999996,-27.125065098999926],[-60.490623582999945,-27.179360720999966],[-60.479041636999966,-27.25169771899988],[-60.3896675819999,-27.30302664999988],[-60.390842556999985,-27.359157237999966],[-60.50678255099996,-27.41987356599992],[-60.57260161299996,-27.550158850999935],[-60.66712953199993,-27.506085630999905],[-60.679363590999856,-27.58533451399984],[-60.74060462499989,-27.677197322999916],[-60.75199563199993,-27.802969120999876],[-61.0140345449999,-27.885530531999905],[-61.14791147599993,-28.106451515999936],[-61.28227656899992,-28.113537241999893],[-61.32660661099993,-28.085200373999896],[-61.36628754599997,-27.819029350999926],[-61.334339586999874,-27.78092806799998],[-61.36360550499984,-27.6290454679999],[-61.295822562999945,-27.489419556999962],[-61.386917588999836,-27.456648829999892],[-61.46457256999997,-27.587005361999957],[-61.560981554999955,-27.52323416599984],[-61.62925752099994,-27.592298198999856],[-61.59605764099996,-27.75131027799989],[-61.69715160699991,-27.877547104999962],[-61.824981497999886,-27.839666601999852],[-62.129188592999924,-27.523511942999903],[-62.21225358899994,-27.524608965999903],[-62.32849449199995,-27.656809348999957],[-62.43942663399997,-27.754129111999873],[-62.4332275459999,-27.861538674999963],[-62.378837543999964,-27.919875212999955],[-62.15508263899994,-28.045251049999933],[-62.04983560699992,-28.050621837999984],[-61.977039615999956,-28.01624513899992],[-61.76688350999996,-28.054125641999974],[-61.64297048199995,-28.22106180499992],[-61.55268447699984,-29.08410195099998],[-61.58668147599997,-29.745726472999877],[-61.529663579999976,-29.704392793999943],[-61.470786576999956,-29.553106817999947],[-61.32012153199997,-29.384272153999916],[-61.140289475999964,-29.410062263999976],[-60.848297496999976,-29.655717740999876],[-60.74511760899992,-29.79966116999998],[-60.67609062499986,-29.965182970999876],[-60.668765511999936,-30.20358910799996],[-60.63464747799998,-30.27499772599998],[-60.62845660499988,-30.41318949399988],[-60.59130448899998,-30.53696204099998],[-60.60474352999995,-30.642543342999886],[-60.431701485999895,-30.531410202999893],[-60.272212475999936,-30.383685696999976],[-60.22245062499991,-30.387452524999958],[-59.99734858099998,-30.17567737099995],[-59.95432259499995,-30.071111283999983],[-59.894641599999886,-29.724839272999873],[-59.812171551999825,-29.443115795999972],[-59.69000648699995,-29.171441549999884],[-59.62610252099989,-29.106398148999915],[-59.44640759299989,-28.771051445999888],[-59.44158950699995,-28.696908315999906],[-59.35948155699998,-28.562952761999952],[-59.14728948699985,-28.064949024999976],[-59.08850451799998,-27.97619104099988],[-59.087486619999936,-27.9082178299999],[-58.95697049699993,-27.687123004999876],[-58.95747760199998,-27.45006719199995],[-58.82247548399994,-27.32878624999995],[-58.78921558899992,-27.142446316999838],[-58.74206553999994,-27.04829759499995],[-58.53169250999986,-26.85148313199994],[-58.37007851999982,-26.728531843999917],[-58.331706502999964,-26.58956475099984],[-58.339000602999874,-26.420937622999872],[-58.16802955899993,-26.093012256999884],[-57.97609353199988,-25.98266030999997],[-57.836898617999964,-25.685431317999928],[-57.682468589999985,-25.583806105999884],[-57.60498862399993,-25.43955656999998],[-57.57024747899993,-25.55405940199995],[-57.662879578999934,-25.597340197999984],[-57.744022604999884,-25.729178314999956],[-57.83348450099999,-25.777402923999944],[-57.86787461199998,-25.854437307999888],[-57.85644555199991,-25.993891892999898],[-57.95119458499988,-26.06505374799997],[-58.110691473999964,-26.1332914919999],[-58.11784760799992,-26.23910866199998],[-58.221626632999914,-26.398136498999975],[-58.18763751299997,-26.640352545999974],[-58.24864955399988,-26.640333770999916],[-58.24313761399992,-26.73354153999992],[-58.414199517999975,-26.90888475199995],[-58.47875961799997,-26.921001127999943],[-58.47703160499998,-27.06592088199983],[-58.557334595999976,-27.051055575999897],[-58.63216353399997,-27.114231656999834],[-58.662151636999965,-27.186988420999967],[-58.56514351199996,-27.328360449999877],[-58.65185547399989,-27.40799691199993],[-58.76805161899995,-27.46770556699994],[-58.73506547699992,-27.643444906999946],[-58.73073555399998,-27.968380280999952],[-58.80121260699991,-28.078122694999877],[-58.86828962599992,-28.09950861799996],[-58.966022616999965,-28.20705044799996],[-59.04803853299995,-28.720068519999984],[-59.207054635999896,-29.07978024199997],[-59.29792754299996,-29.184496866999893],[-59.4192654819999,-29.409898313999975],[-59.46008249999994,-29.663470498999914],[-59.49033362699993,-29.723386353999842],[-59.501136558999974,-29.914680159999932],[-59.54235054499998,-29.933407175999832],[-59.53862763899997,-30.11684043299988],[-59.57252154099996,-30.228206254999918],[-59.54363247299983,-30.31263012499994],[-59.60620455399987,-30.364607311999976],[-59.56915654199997,-30.538695920999942],[-59.50835455099991,-30.53188126599997],[-59.28583547399984,-30.335194375999947],[-59.23197151999989,-30.17987921899993],[-59.11288060099997,-30.110812838999948],[-59.09075153899994,-30.059316604999935],[-58.957443570999885,-29.938300195999943],[-58.90258451799997,-29.84618257699998],[-58.74399555699995,-29.706927816999894],[-58.702434559999915,-29.636280442999976],[-58.66153757799998,-29.26265895299997],[-58.6145325359999,-29.181604942999968],[-58.528636635999874,-29.11486957099993],[-58.47768354899989,-28.952393250999933],[-58.33327861299995,-28.909952657999952],[-58.103290588999926,-28.71614461599995],[-57.99824556099992,-28.73261991699991],[-57.695075474999896,-28.72247529999987],[-57.550743628999896,-28.677761198999917],[-57.51696355299987,-28.615599663999944],[-57.30814754599999,-28.598702417999903],[-56.9970815399999,-28.472485372999984],[-56.95928150399993,-28.427176156999963],[-56.823493498999824,-28.365742673999932],[-56.69128456599998,-28.158352427999944],[-56.4607235549999,-27.964259401999982],[-56.43012256799989,-27.84221436499996],[-56.432479558999944,-27.66431785799989],[-56.303131537999946,-27.49347623099993],[-56.297988569999916,-27.424790221999956],[-56.169776631999866,-27.33407824899996],[-56.08073852399997,-27.307731411999953],[-55.96892963499988,-27.347972593999827],[-55.9008335449999,-27.338019083999882],[-55.835014482999895,-27.42477714699993],[-55.77689755099988,-27.439935482999942],[-55.92826851999996,-27.29433293999989],[-56.19955049299989,-27.252567760999966],[-56.22094747999989,-27.189908339999874],[-56.17563256499989,-27.078057206999972],[-56.16995952499997,-26.875913026999967],[-56.24230557499993,-26.709466534999876],[-56.18487947999989,-26.559447398999964],[-56.17063560899999,-26.454848958999946],[-56.10974158499994,-26.288142627999946],[-56.1470264699999,-26.155883570999947],[-56.05370755699994,-26.01323715799998],[-56.115879485999926,-25.95071603899987],[-56.23372250599988,-25.97291383299995],[-56.35076857599989,-26.134819512999968],[-56.500415554999904,-26.083189839999875],[-56.56835557399984,-26.1041258219999],[-56.64418748999992,-26.204633222999917],[-56.744010592999985,-26.235808873999872],[-56.881488556999955,-26.203193211999974],[-56.91957056099989,-26.169943710999917],[-56.95651648099988,-25.962077373999932],[-56.933902609999905,-25.8702977129999],[-56.74740258099996,-25.777514067999903],[-56.598380556999984,-25.772158031999936],[-56.58185949099993,-25.706729230999883],[-56.45285462499993,-25.692112029999976],[-56.47731050399989,-25.570209652999893],[-56.457038534999924,-25.40584036399997],[-56.45883159199997,-25.22889972899992],[-56.52175856299988,-25.03527910699995],[-56.47822547199996,-24.97296904399991],[-56.45159951799991,-24.8233220649999],[-56.5049174749999,-24.65710825499997],[-56.55736153499993,-24.596469040999978],[-56.69275257299984,-24.52401285199994],[-56.65261851199995,-24.430064457999947],[-56.784072569999864,-24.382016706999934],[-56.826969473999895,-24.329728382999974],[-56.71479748099995,-24.255032046999872],[-56.75337954899999,-24.188999245999923],[-56.67724957199988,-24.11962675999996],[-56.755302524999934,-23.908429118999948],[-56.77010748099991,-23.81272689499997],[-56.868347576999895,-23.728130189999888],[-57.13897659999998,-23.768387297999936],[-57.17026154999991,-23.682775711999966],[-57.14672047199997,-23.611447224999893],[-57.17441159799989,-23.53652792999992],[-57.04257146999993,-23.521324833999927],[-57.01708562299996,-23.443392747999894],[-57.12085760699995,-23.428772361999904],[-57.26629653599997,-23.486292501999912],[-57.292148503999954,-23.44993851199996],[-57.1364445939999,-23.32495695899985],[-56.993251512999905,-23.31161145999988],[-56.7597005099999,-23.14493295699998],[-56.66738155799993,-23.09933842099997],[-56.53765852999999,-22.968554076999965],[-56.344234546999985,-22.83804499499996],[-56.32201361899996,-22.738475192999942],[-56.35397347999992,-22.68345705099989],[-56.56436947599997,-22.658998322999878],[-56.57978463399991,-22.611383915999852],[-56.46187556399991,-22.54648635999996],[-56.451461551999955,-22.381192043999874],[-56.40024560899985,-22.320765394999967],[-56.37591160299996,-22.208945274999905],[-56.417385595999974,-22.131263471999887],[-56.49623449399991,-22.12609066499988],[-56.574367577999965,-22.24502433899994],[-56.864715530999945,-22.46790534699994],[-57.00223154899999,-22.679791309999814],[-57.23442853999995,-22.7898644739999],[-57.36721062699996,-22.903427694999948],[-57.482070527999895,-22.93107707899992],[-57.44947850299991,-22.79250728799991],[-57.47518563299991,-22.716175474999943],[-57.55063248499994,-22.63730763399991],[-57.54432661099992,-22.481484700999943],[-57.587165511999956,-22.42476788199997],[-57.74262953199991,-22.34241618599998],[-57.755870591999894,-22.242776479999918],[-57.659763522999924,-22.22657727899997],[-57.45402551799998,-22.24873802499991],[-57.389507494999975,-22.181892681999955],[-57.42011652899993,-22.10071998499984],[-57.54635653999992,-22.106792673999962],[-57.76465952099994,-22.086539648999917],[-57.83121451399995,-22.02200435899988],[-57.836330492999934,-21.94741011399998],[-57.79522362799992,-21.85878020499996],[-57.77724461299994,-21.699759575999906],[-57.74624263599998,-21.645056593999925],[-57.80849050399996,-21.623744933999888],[-57.89878053299992,-21.51715847399987],[-57.990444522999894,-21.502770266999903]]],[[[-57.990444522999894,-21.502770266999903],[-58.039565492999884,-21.445667544999935],[-58.06821450299992,-21.248666500999946],[-58.043907486999956,-20.99159252499993],[-58.33021150699989,-21.084498545999907],[-58.56942750299993,-21.12764807999997],[-58.77943457899994,-21.132471865999946],[-58.943687526999895,-21.194146411999895],[-58.957458490999954,-21.222006852999925],[-58.54493759399992,-21.215864090999958],[-58.38618451499997,-21.232779274999928],[-58.45034060799992,-21.32524423999996],[-58.649375603999886,-21.399059972999908],[-58.74740950599988,-21.50915207999992],[-58.50390650099996,-21.436920861999965],[-58.30212358099982,-21.357112402999974],[-58.20157259499996,-21.342504254999938],[-58.18439857799996,-21.393834190999883],[-58.255649615999914,-21.473161863999962],[-58.23511462399995,-21.536416399999894],[-58.08952750399993,-21.469969029999902],[-57.990444522999894,-21.502770266999903]]]]},"properties":{"objectid":326,"eco_name":"Humid Chaco","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Neotropic","eco_biome_":"NO07","nnh":3,"eco_id":571,"shape_leng":58.2200676629,"shape_area":26.3603189342,"nnh_name":"Nature Could Recover","color":"#FFD221","color_bio":"#FEAA01","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":292776.76698496146,"percentage":1.365625970217054}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-58.18138863599995,-31.85492444999994],[-58.28162748099993,-31.829756276999944],[-58.61868258399983,-31.839511973999947],[-58.84022148199989,-31.915053541999896],[-59.03771554899993,-31.921407359999876],[-59.22019159299998,-31.892309414999886],[-59.369209593999926,-31.821516698999858],[-59.53964955999999,-31.82583354699989],[-60.17054753399998,-32.05168828699993],[-60.30572852199998,-32.05498807399994],[-60.36355258899994,-32.086100021999926],[-60.603919588999986,-32.08417721399991],[-60.433170497999924,-32.428792960999886],[-60.20200749899982,-32.61042042099996],[-59.95031755399992,-32.9134200179999],[-59.80855962199985,-33.140228115999946],[-59.41644647999982,-33.39667043199995],[-59.387767630999974,-33.45594574199998],[-58.99538459099989,-33.48913271499998],[-58.76474747299994,-33.54255225999998],[-58.63869856899993,-33.40161843699997],[-58.58815753599998,-33.069673277999925],[-58.55928456199996,-33.010855954999954],[-58.4052845249999,-32.994815338999956],[-58.28657950999997,-33.00764819999995],[-58.240055587999905,-33.08519069499988],[-58.07823557099988,-32.98143094799991],[-58.13957953599993,-32.759986597999955],[-58.13498658799995,-32.652758921999975],[-58.198413622999965,-32.48918926699997],[-58.19216156099992,-32.399683951999975],[-58.10416750299993,-32.316938473999926],[-58.09603152499989,-32.249893641999904],[-58.17970655599993,-32.13869143599993],[-58.14049953299991,-32.01030347799991],[-58.20361358799988,-31.88974857599993],[-58.18138863599995,-31.85492444999994]]],[[[-58.55087248399997,-34.29864887699989],[-58.787425549999966,-34.23594184799987],[-58.9773904889999,-34.121816871999954],[-59.15761951199994,-33.979787701999896],[-59.254436528999975,-33.933428903999925],[-59.37713954499998,-33.755940091999946],[-59.45325460199996,-33.72908480999996],[-59.4724764849999,-33.66348183299988],[-59.58985162799996,-33.692256067999836],[-59.678047521999986,-33.63494463799992],[-59.80777356699991,-33.591553703999864],[-59.84858354499994,-33.53766527499994],[-59.97742060599995,-33.495994643999836],[-60.25412349099997,-33.27271616499996],[-60.50665263199994,-33.132961172999956],[-60.685729478999974,-32.89000667999994],[-60.723071527999934,-32.683892998999966],[-60.79544054499996,-32.57737141499996],[-60.80363050199992,-32.508640646999936],[-60.75737362799987,-32.43407272099995],[-60.7611086039999,-32.32110427999993],[-60.7176854839999,-32.24784191999987],[-60.72694363199997,-32.13629136199995],[-60.8395115859999,-32.08806406999997],[-60.93582552099997,-32.07047548399987],[-61.26062762199996,-31.83472724899991],[-61.39565253799992,-31.76327655299997],[-61.74537252899995,-31.66558496899995],[-61.87691459699994,-31.72246389299994],[-62.06119157699993,-31.924205238999946],[-62.112258488999885,-32.0416524659999],[-62.29258356899999,-32.12590869799993],[-62.90026853299992,-32.133899501999906],[-63.14407362099996,-32.197004335999964],[-63.247932609999964,-32.341530642999885],[-63.30102961999995,-32.49684881799993],[-63.26046757899991,-32.625041979999935],[-63.10680348899996,-32.74826014799993],[-62.916706617999864,-33.01137881799997],[-63.015674598999965,-33.188241500999936],[-63.23128162399985,-33.29121251099997],[-63.57282255299998,-33.34138205699992],[-63.67132550599996,-33.38510089099992],[-63.83145556399995,-33.53380859399988],[-64.31911452299988,-33.33460746799989],[-64.53279153099999,-33.33014427199993],[-64.74790150999996,-33.42334583899992],[-64.89912462199999,-33.63994930399997],[-64.91612261799997,-33.765613646999896],[-64.83406847999993,-34.116284815999904],[-64.69603747799994,-34.40055236799992],[-64.62873062799991,-34.46076946999989],[-64.53811655499993,-34.609111721999966],[-64.31465954199996,-34.86555604899996],[-64.28478258299992,-35.046783356999924],[-64.27466562599994,-35.25097925899996],[-64.06314058799995,-36.171375260999866],[-63.896144577999905,-36.57354936899992],[-63.61932350799998,-37.04854561999986],[-63.18423852799992,-37.687532967999914],[-62.953437626999914,-37.891970436999884],[-62.90814550999994,-37.9660238809999],[-62.714736613999946,-38.14227887599998],[-62.43390647999996,-38.47436216899996],[-62.31731454199996,-38.556711685999915],[-62.31038254099997,-38.603056066999955],[-62.15686060799999,-38.74256463099994],[-62.09266662899995,-38.899083093999934],[-62.02942248699998,-38.940647610999974],[-61.80459553599991,-38.99014593399994],[-61.7135506329999,-38.97342990499993],[-61.55418751999986,-39.01269845099995],[-61.3745846249999,-38.98462293099993],[-61.14433659399998,-39.00276153699997],[-60.94012862199992,-38.985438992999946],[-59.784271548999925,-38.830942243999914],[-59.64358147199988,-38.78854305799996],[-59.10226860899991,-38.695122555999944],[-58.7037696299999,-38.57543836599996],[-58.49935948599989,-38.53520506299992],[-58.196395595999945,-38.44376855799993],[-57.710037507999914,-38.22228347199996],[-57.551589529999944,-38.10753538499995],[-57.55322651599994,-37.97717382399992],[-57.47449161099996,-37.81352269599989],[-57.3387225489999,-37.68134226199993],[-57.111644554999884,-37.48934068799997],[-56.983344606999935,-37.28574677499989],[-56.66903262499994,-36.896498566999924],[-56.690154517999986,-36.443368354999905],[-56.750404475999915,-36.34030547899994],[-56.998626491999914,-36.33700954699998],[-57.08069957399994,-36.29627349699996],[-57.25619148099992,-36.158260767999934],[-57.37622854899996,-35.969647158999976],[-57.387329540999986,-35.81911840399994],[-57.29913750299994,-35.67108209099996],[-57.126316572999826,-35.46699582399992],[-57.13451357199983,-35.39148560499996],[-57.30942561799998,-35.18391079099996],[-57.46804056299993,-35.055786191999914],[-57.570327609999936,-35.013383149999925],[-57.888332490999915,-34.83111397099992],[-58.18644359499996,-34.746472171999926],[-58.35533559099997,-34.635618819999934],[-58.38245054499993,-34.57759140699994],[-58.46561863799997,-34.542142493999904],[-58.53372562499993,-34.4420590499999],[-58.497409519999906,-34.32307039099993],[-58.55087248399997,-34.29864887699989]]]]},"properties":{"objectid":327,"eco_name":"Humid Pampas","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Neotropic","eco_biome_":"NO08","nnh":4,"eco_id":576,"shape_leng":34.7647378563,"shape_area":39.60990299,"nnh_name":"Nature Imperiled","color":"#D9BD40","color_bio":"#FEFF73","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":399422.65174668125,"percentage":3.769810548074036}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-2.670354576999955,36.98268624100018],[-2.726692532999948,37.095095777000154],[-2.802672473999962,37.15864770200017],[-2.950745498999936,37.184014023000145],[-3.159701483999925,37.25355850600005],[-3.271839445999944,37.239475065000136],[-3.289106501999868,37.33344508400006],[-3.346648434999906,37.37226234800016],[-3.479578545999971,37.31630526600014],[-3.515833462999979,37.26421341400004],[-3.456241483999918,37.159948573000065],[-3.528467505999913,37.019043249000106],[-3.461701455999957,36.92499829500014],[-3.313584508999952,36.901427713000146],[-3.200531577999868,36.91296238500007],[-3.033803453999894,36.97989003800018],[-2.922154491999891,36.97817007100008],[-2.86514950399993,36.88735114400009],[-2.730674439999916,36.80870575900019],[-2.629178476999925,36.83957295500011],[-2.583266434999871,36.914229393000085],[-2.670354576999955,36.98268624100018]]],[[[-2.563555551999968,37.12140942100007],[-2.301822577999815,37.16089757200018],[-2.25148153799995,37.200230826000166],[-2.327834472999882,37.26214140700006],[-2.622874447999948,37.30211872700005],[-2.773610571999939,37.39707295000005],[-2.920623453999951,37.39924671200015],[-2.992336502999933,37.33115615400004],[-2.982899485999951,37.272063234000086],[-2.743712490999883,37.158487440000044],[-2.563555551999968,37.12140942100007]]],[[[-1.956302423999944,37.57111462000012],[-2.027216509999903,37.610992865000185],[-2.154800475999821,37.55730962500019],[-2.386033547999943,37.552258690000144],[-2.525119495999945,37.473655214000075],[-2.523315542999967,37.3924608910001],[-2.343124573999887,37.39003483300007],[-1.901843522999968,37.482844127000135],[-1.956302423999944,37.57111462000012]]],[[[-3.658534525999926,37.41009541000017],[-3.620851500999947,37.46217670000016],[-3.699536449999925,37.59510915900006],[-3.802958573999888,37.61125555400014],[-3.822736512999938,37.467597445000024],[-3.658534525999926,37.41009541000017]]],[[[-2.302955475999909,38.97054644600013],[-2.380658567999944,39.01110781700004],[-2.53139854799997,38.907910160000085],[-2.696522542999901,38.89848437500012],[-2.841931463999913,38.965984344000105],[-2.953779579999889,38.96305453399998],[-2.998530561999871,38.906003445000124],[-2.770458472999962,38.70106960000015],[-2.627647438999873,38.70891237900008],[-2.505275507999954,38.68223999000003],[-2.512536582999871,38.570093813000085],[-2.586403445999906,38.48580221000003],[-2.519181420999871,38.38201681400005],[-2.681503513999871,38.178022245000136],[-3.008174443999962,37.8508871250001],[-2.978603424999903,37.78614949600018],[-2.885778540999979,37.75898089800006],[-2.473681432999911,37.85314906600013],[-2.308313523999971,37.97496594700016],[-1.983572442999957,38.17547045900005],[-1.990989420999881,38.24215721600007],[-2.103565421999974,38.2631758440001],[-2.257971477999945,38.15590089400007],[-2.325269442999854,38.17366952300006],[-2.350280539999915,38.28672346000013],[-2.333954435999829,38.39217568100008],[-2.099752493999972,38.65849824900005],[-2.169551451999951,38.725281063000125],[-2.281916563999971,38.75623677200019],[-2.330434539999828,38.82427066900016],[-2.302955475999909,38.97054644600013]]],[[[-1.283735494999974,40.200411030000055],[-1.21596244299991,40.30475281700018],[-1.316956497999968,40.44028316200013],[-1.372775446999981,40.32639757300012],[-1.283735494999974,40.200411030000055]]],[[[-2.474596568999971,40.56868469900019],[-2.551950470999941,40.636254070000064],[-2.644566477999831,40.79968928000005],[-2.724209477999864,40.86697953400005],[-2.816668575999813,40.9989019730001],[-2.926424568999948,41.01102488700002],[-3.05285954299984,40.826448841],[-3.080902541999933,40.650386965000166],[-3.28544444899984,40.431464227000106],[-3.289103484999885,40.312271719000194],[-3.39678244199996,40.191545324000174],[-3.3575564759999,40.14065091100008],[-3.239566436999951,40.15033586400017],[-3.117906464999919,40.262845313000184],[-3.111677536999935,40.38269781100013],[-3.07298248099994,40.435538334000114],[-2.852437508999913,40.45588909200012],[-2.794546553999965,40.56033095900017],[-2.619913456999825,40.49413169300004],[-2.500695468999879,40.494981786000096],[-2.474596568999971,40.56868469900019]]],[[[-0.361214512999936,40.617867192000176],[-0.888104467999938,40.835405911],[-1.009269571999937,40.915032985000096],[-1.105265497999881,41.0771633],[-1.271710480999957,41.14456067500009],[-1.313695433999953,41.09552704400011],[-1.235974571999975,40.92496604300004],[-1.217241521999881,40.68846159200018],[-1.125527574999921,40.6326221920001],[-0.941388561999929,40.573269600000174],[-0.89621245099994,40.43858633000008],[-0.819104472999868,40.32829356000008],[-0.733806537999953,40.35635717700012],[-0.557673583999929,40.4865056700001],[-0.290421461999927,40.45719398699998],[-0.204117530999895,40.395552968000175],[-0.098069524999858,40.44892825699998],[-0.091365510999935,40.59404867300003],[-0.130120580999915,40.638062047000176],[-0.361214512999936,40.617867192000176]]],[[[-2.068160430999853,41.948768411000174],[-2.291026518999956,41.99576808900014],[-2.434678425999891,41.937938657000075],[-2.527958446999833,41.965922311000156],[-2.587657546999935,41.91181880200014],[-2.742503484999872,41.876373075000174],[-2.947720469999922,41.870777316000044],[-2.98515857599989,41.8130575190001],[-2.654818551999881,41.802795723000145],[-2.457186517999901,41.71966350400004],[-2.443556537999939,41.65879295000008],[-2.559822419999875,41.58387264900006],[-2.825245441999812,41.52757609900016],[-2.936596510999948,41.402187354000034],[-3.034782459999917,41.348995796],[-3.358950553999875,41.346008821000055],[-3.559238477999941,41.371758363000026],[-3.634243435999906,41.35427572500015],[-3.674733559999879,41.228074941000045],[-3.797179586999846,41.23245096500011],[-3.942269492999912,41.13635965300011],[-3.944811555999934,41.08319022400008],[-4.049866474999874,41.01689909300006],[-4.127843487999826,40.88075435400009],[-4.240649487999917,40.795889428000066],[-4.479300543999955,40.68824751900013],[-4.534193460999916,40.58137657700013],[-4.46827347999988,40.55456705900019],[-4.150847453999972,40.5884255900001],[-4.02687156199994,40.66656169100014],[-3.802030529999911,40.722732009000026],[-3.695523529999832,40.80858499400017],[-3.624387490999879,40.952389786000026],[-3.321389569999951,41.00474198000006],[-3.221961422999925,41.056793599000116],[-2.945083523999813,41.09886505300017],[-2.841287566999938,41.14007887100013],[-2.768874460999939,41.11516886100003],[-2.583910500999878,40.885980303],[-2.432841447999976,40.85265167600011],[-2.384813477999899,40.803862127000116],[-2.183279500999845,40.81392510400002],[-2.11008453099987,40.79001119900016],[-2.221978579999927,40.64102203200002],[-2.156917576999945,40.46946978700015],[-1.960164469999938,40.21195810800015],[-2.075485542999843,40.08265652200015],[-2.180555549999951,40.12996918099998],[-2.369837530999973,40.10190137200016],[-2.487478547999899,40.112880157],[-2.560673517999874,40.164213781000115],[-2.693767578999939,40.171228429000166],[-2.742158485999937,40.25397943800016],[-2.823654556999884,40.21998394800005],[-2.785293435999961,40.042896294],[-2.548149445999968,40.049492014000066],[-2.492998534999856,40.01087641800012],[-2.487304539999911,39.92159758200012],[-2.285910540999964,40.010811542000056],[-2.153834544999938,39.95286325500007],[-2.117308557999934,39.83738577399998],[-1.989080526999942,39.76844763800011],[-1.881530482999892,39.78028456200019],[-1.853454459999966,39.894182053000065],[-1.711181543999942,39.929761556000074],[-1.618636447999961,40.048378059000186],[-1.50007057199997,40.084235673000194],[-1.492482434999886,40.141161871000065],[-1.593422509999925,40.23477666600007],[-1.598311506999949,40.29059695600017],[-1.532256576999941,40.43201324100005],[-1.565193433999866,40.568379765000145],[-1.447384442999976,40.633671103000154],[-1.557968567999978,40.95110450499999],[-1.650268576999849,41.00634007400009],[-1.730785474999948,41.00378795200015],[-1.824050575999934,40.92102906300005],[-2.025358576999849,40.99056717600013],[-2.317362458999924,41.13426082500018],[-2.430139456999939,41.25685252900007],[-2.408211560999916,41.311269018000075],[-2.221111555999869,41.469993430000045],[-2.082935546999863,41.48371460600009],[-2.156659581999975,41.652940873000034],[-2.292742461999921,41.80121674000014],[-2.201152567999941,41.83777256700006],[-1.969848584999966,41.670877978000135],[-1.849625438999965,41.65224299500005],[-1.715010564999943,41.75692106400004],[-1.728212565999968,41.81655545500013],[-1.867533542999979,41.8745082690001],[-1.91230849599998,41.92674278100009],[-2.068160430999853,41.948768411000174]]]]},"properties":{"objectid":329,"eco_name":"Iberian conifer forests","biome_num":12,"biome_name":"Mediterranean Forests, Woodlands & Scrub","realm":"Palearctic","eco_biome_":"PA12","nnh":3,"eco_id":792,"shape_leng":33.5033176726,"shape_area":3.6348083326,"nnh_name":"Nature Could Recover","color":"#CD8966","color_bio":"#FE0000","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":34501.97088085237,"percentage":1.0444401315272318}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[1.445535563000078,42.078153480000026],[1.38345751200012,42.00731919000009],[1.295395561000021,42.06162151700005],[1.236291576000156,41.99818308300007],[1.070946466,41.9980231560001],[1.181507457000066,42.1449409870001],[1.103997484000161,42.173394867000184],[1.007116429000064,42.266953167],[0.901049479000164,42.271092318000115],[0.812272552000024,42.180344805000175],[0.812829445000034,42.070093777000125],[0.714029438000182,42.08280057500002],[0.7664165,42.16171099600001],[0.797724418000143,42.342911818],[0.740944567000042,42.36661148100012],[0.625667582000176,42.22984430200012],[0.476426455000023,42.357162562000156],[0.190200554000057,42.38692837600007],[0.112006450000081,42.498084483000184],[0.02885445000004,42.37916254300012],[-0.179664501999923,42.26745306400011],[-0.276034427999889,42.321609881000086],[-0.398552538999866,42.309486799000126],[-0.480083478999973,42.33752476800015],[-0.332562485999972,42.41132725800003],[-0.368182556999955,42.502467547000094],[-0.785862515999952,42.498172492000094],[-0.863141483999925,42.42799417000009],[-0.966521530999955,42.45947978300006],[-0.821460458999923,42.58347227100012],[-1.045658431999925,42.64688371600005],[-1.212023451999869,42.62816072300018],[-1.346412516999976,42.88786846200014],[-1.401220440999964,42.778199808000124],[-1.462319485999899,42.77154709100006],[-1.37293252399985,42.63812060400011],[-1.451714533999962,42.60093596700017],[-1.552844542999878,42.66524377200005],[-1.802401460999931,42.642969702000016],[-2.031687584999929,42.70307733600009],[-2.130622540999923,42.63603485100009],[-2.323706553999955,42.61889872000006],[-2.404447582999978,42.57720814000004],[-2.68340251799998,42.56315923200009],[-2.877822438999942,42.61245991000004],[-3.096789432999913,42.598441177000154],[-2.90105657099997,42.503115468000146],[-2.807799515999875,42.33530876100002],[-2.707686567999929,42.389881488000185],[-2.568354525999894,42.38454825100007],[-2.269176573999971,42.30183093700015],[-2.188418444999968,42.30359281300008],[-2.055959564999853,42.17113678200013],[-2.089540485999862,42.094648563000135],[-1.990663532999918,41.99763809100011],[-2.068160430999853,41.948768411000174],[-1.91230849599998,41.92674278100009],[-1.867533542999979,41.8745082690001],[-1.728212565999968,41.81655545500013],[-1.715010564999943,41.75692106400004],[-1.849625438999965,41.65224299500005],[-1.969848584999966,41.670877978000135],[-2.201152567999941,41.83777256700006],[-2.292742461999921,41.80121674000014],[-2.156659581999975,41.652940873000034],[-2.082935546999863,41.48371460600009],[-2.221111555999869,41.469993430000045],[-2.408211560999916,41.311269018000075],[-2.430139456999939,41.25685252900007],[-2.317362458999924,41.13426082500018],[-2.025358576999849,40.99056717600013],[-1.824050575999934,40.92102906300005],[-1.730785474999948,41.00378795200015],[-1.650268576999849,41.00634007400009],[-1.557968567999978,40.95110450499999],[-1.447384442999976,40.633671103000154],[-1.565193433999866,40.568379765000145],[-1.532256576999941,40.43201324100005],[-1.598311506999949,40.29059695600017],[-1.593422509999925,40.23477666600007],[-1.492482434999886,40.141161871000065],[-1.50007057199997,40.084235673000194],[-1.618636447999961,40.048378059000186],[-1.711181543999942,39.929761556000074],[-1.853454459999966,39.894182053000065],[-1.881530482999892,39.78028456200019],[-1.989080526999942,39.76844763800011],[-2.117308557999934,39.83738577399998],[-2.153834544999938,39.95286325500007],[-2.285910540999964,40.010811542000056],[-2.487304539999911,39.92159758200012],[-2.492998534999856,40.01087641800012],[-2.548149445999968,40.049492014000066],[-2.785293435999961,40.042896294],[-2.823654556999884,40.21998394800005],[-2.742158485999937,40.25397943800016],[-2.693767578999939,40.171228429000166],[-2.560673517999874,40.164213781000115],[-2.487478547999899,40.112880157],[-2.369837530999973,40.10190137200016],[-2.180555549999951,40.12996918099998],[-2.075485542999843,40.08265652200015],[-1.960164469999938,40.21195810800015],[-2.156917576999945,40.46946978700015],[-2.221978579999927,40.64102203200002],[-2.11008453099987,40.79001119900016],[-2.183279500999845,40.81392510400002],[-2.384813477999899,40.803862127000116],[-2.432841447999976,40.85265167600011],[-2.583910500999878,40.885980303],[-2.768874460999939,41.11516886100003],[-2.841287566999938,41.14007887100013],[-2.945083523999813,41.09886505300017],[-3.221961422999925,41.056793599000116],[-3.321389569999951,41.00474198000006],[-3.624387490999879,40.952389786000026],[-3.695523529999832,40.80858499400017],[-3.802030529999911,40.722732009000026],[-4.02687156199994,40.66656169100014],[-4.150847453999972,40.5884255900001],[-4.46827347999988,40.55456705900019],[-4.534193460999916,40.58137657700013],[-4.479300543999955,40.68824751900013],[-4.240649487999917,40.795889428000066],[-4.127843487999826,40.88075435400009],[-4.049866474999874,41.01689909300006],[-3.944811555999934,41.08319022400008],[-3.942269492999912,41.13635965300011],[-3.797179586999846,41.23245096500011],[-3.674733559999879,41.228074941000045],[-3.634243435999906,41.35427572500015],[-3.559238477999941,41.371758363000026],[-3.358950553999875,41.346008821000055],[-3.034782459999917,41.348995796],[-2.936596510999948,41.402187354000034],[-2.825245441999812,41.52757609900016],[-2.559822419999875,41.58387264900006],[-2.443556537999939,41.65879295000008],[-2.457186517999901,41.71966350400004],[-2.654818551999881,41.802795723000145],[-2.98515857599989,41.8130575190001],[-3.223960506999958,41.84311334800009],[-3.336416477999933,41.930129573000045],[-3.413436445999935,42.03572395100008],[-3.514733421999892,42.04896065200012],[-3.605190585999935,42.10791242099998],[-3.770649521999871,42.10044733100017],[-3.834868478999908,42.06692759700013],[-3.863589572999899,41.982776139],[-3.980703535999851,41.95576864100008],[-4.154963470999917,41.87680407200003],[-4.181309468999871,41.77592585600007],[-4.062628425999947,41.76573312600016],[-3.917066450999869,41.820118434000165],[-3.860185514999898,41.77149283500006],[-4.107416454999964,41.666039776],[-4.508599486999856,41.60923645600013],[-4.628472436999971,41.66759277500017],[-4.603281464999952,41.813801496999986],[-4.455504488999964,42.02573305699997],[-4.46312045399992,42.11479044300012],[-4.537364501999832,42.18681479600002],[-4.655185562999918,42.20892458100019],[-5.00505458299989,42.12649325700011],[-5.145663523999929,42.18610585500011],[-5.397463438999978,42.41757227900007],[-5.331072562999964,42.48936361500017],[-5.375404448999916,42.53899621700003],[-5.556428579999931,42.57424413100006],[-5.576995422999971,42.69381935600006],[-5.639001557999848,42.69259828100019],[-5.652347559999896,42.514361468],[-5.699764488999961,42.383518283000114],[-5.804546492999975,42.41654901600009],[-5.762577464999936,42.56412834800017],[-5.879573578999896,42.59896689000004],[-5.918579435999959,42.39386725100019],[-6.068789510999864,42.40000129500004],[-6.121392490999824,42.35351542800004],[-6.135029512999893,42.23722943000013],[-6.050118485999974,42.17059883100012],[-6.081349457999977,42.090074390000154],[-6.212249471999883,41.97562319000019],[-6.191074437999873,41.91866664900016],[-5.927994491999868,41.83617447300003],[-5.896575430999917,41.78492097900016],[-5.999437476999901,41.74559912400014],[-6.158926485999871,41.76902084400007],[-6.197782474999883,41.722749218000104],[-6.132963540999924,41.64824901800006],[-6.268797478999943,41.53645203200011],[-6.360488458999953,41.37111748300009],[-6.431600525999954,41.31295512100007],[-6.52608351799995,41.32844689000012],[-6.716239563999977,41.17383832700011],[-6.784277483999915,41.201979226000105],[-6.709938551999926,41.30160619200012],[-6.445916480999927,41.44113587900006],[-6.48332457999993,41.50936406800008],[-6.564459557999953,41.518844],[-6.881994548999899,41.465781692000064],[-6.957279462999963,41.48996348200018],[-7.019799575999969,41.56671774300014],[-7.175805568999976,41.598051309000084],[-7.285185549999937,41.51626505600018],[-7.436553501999867,41.48661759400011],[-7.437991500999942,41.33659879400011],[-7.642137446999925,41.196547250000094],[-7.723266557999978,41.197806044000174],[-8.035140579999961,41.13470372400013],[-8.316406572999938,41.114786981000066],[-8.363615462999917,41.067008289000114],[-8.293839471999945,41.00212917300013],[-8.212734499999954,40.99393921600006],[-7.859010474999934,41.05693843800009],[-7.634626422999929,41.036052747000156],[-7.453380507999896,41.00043116700016],[-7.383052483999961,41.02748091000012],[-7.174482569999896,40.89222917900014],[-7.19911647999993,40.71593814200003],[-7.065282464999939,40.654304834000015],[-6.875191461999918,40.68260146900013],[-6.738120521999974,40.582589606000056],[-6.758352424999941,40.438529165000034],[-6.718347444999949,40.387217836000104],[-6.441799457999878,40.41637344800017],[-6.342266536999944,40.464799894000066],[-6.364645547999942,40.57537563700009],[-6.632122471999878,40.83565787100008],[-6.551110538999978,40.96672954600007],[-6.52969846499991,41.08161140900006],[-6.365088447999881,41.21378211900014],[-6.289607564999869,41.22993672900009],[-6.182295567999972,41.18676640700005],[-6.084473560999925,41.09214712600004],[-6.067053450999936,41.03305068500009],[-6.168136520999951,40.943993634000094],[-6.359828467999876,40.95409047500016],[-6.419220454999959,40.88826923300002],[-6.382090467999944,40.803263324],[-6.291074565999963,40.70419643600019],[-6.176994516999969,40.622082284000044],[-5.986355504999892,40.5809298210001],[-5.790125427999953,40.61877931100008],[-5.685950441999978,40.58363047000017],[-5.682353431999957,40.49039286200019],[-5.637128537999956,40.45087319400005],[-5.441204568999979,40.40691681700008],[-5.294540540999947,40.50135270300012],[-5.174048503999927,40.61970215800011],[-5.054935456999942,40.63041708100019],[-4.946640428999956,40.54491211300018],[-4.835840553999958,40.513239583000086],[-4.745330583999873,40.41464962599997],[-4.553478542999869,40.37800612400014],[-4.543902553999885,40.28138826200012],[-4.851578582999878,40.24685767000011],[-5.133361571999956,40.13857186299998],[-5.520971452999959,40.07441258500006],[-5.77491344799995,39.98625692400003],[-5.849833579999881,39.98672178500004],[-5.937907433999897,40.048095924000165],[-5.878108421999968,40.18947415500014],[-5.937808527999891,40.32565359500006],[-5.942012554999963,40.41490862699999],[-6.052010449999955,40.44316737500009],[-6.117342522999934,40.374477007999985],[-6.122427488999904,40.284722248000094],[-6.34613947899993,40.166529534000176],[-6.644723489999933,40.0834234670001],[-6.761552467999934,40.081321788000025],[-6.950130537999939,40.13023589300002],[-7.103527579999934,40.09326449100007],[-7.334523443999899,39.93126074300005],[-7.405929547999904,39.81959417900009],[-7.50390058499994,39.77692777699997],[-7.365394495999965,39.66863006800014],[-7.503086534999966,39.537872043000164],[-7.158473469999933,39.44646504200006],[-7.012102473999903,39.235954214000174],[-7.230159528999934,39.135289736000175],[-7.312727477999942,39.17880706800014],[-7.333863452999935,39.15857449500004],[-7.538668551999933,39.25636582400011],[-7.510737535999965,39.31629391800004],[-7.677765564999959,39.29866325500012],[-7.7615545889999,39.26135993000014],[-7.838277501999926,39.17746797600017],[-7.852375527999925,39.00715960500003],[-7.784005516999969,38.91019925800015],[-7.639984470999934,38.77010245200006],[-7.601260580999849,38.87729777300018],[-7.465617582999869,38.89444446500016],[-7.404818442999897,38.83857539200005],[-7.478455473999929,38.759433462000175],[-7.457093522999912,38.703846357000145],[-7.706021462999956,38.62698480800003],[-7.769695428999967,38.64237750200016],[-7.897712570999943,38.74375075400019],[-7.936662436999882,38.61834088600017],[-8.098734581999906,38.60700402700013],[-8.011865542999942,38.51353055100003],[-8.040447497999935,38.475788182000144],[-7.968486511999913,38.39877056200015],[-7.763407492999931,38.42485102100005],[-7.680946496999979,38.27462770300008],[-7.561450564999916,38.23475733600014],[-7.647764553999934,38.16216452300006],[-7.891421449999939,38.207199985000045],[-7.901921459999926,38.09886070200014],[-7.964698561999967,37.879595645999984],[-8.068958540999972,37.81250387600011],[-8.144097441999975,37.727564519000055],[-8.205018454999959,37.52780717000013],[-8.049760462999927,37.46770858900015],[-7.926497535999943,37.463992388000065],[-7.843333465999933,37.352868636000096],[-7.672405504999915,37.2244652550001],[-7.578009516999941,37.37974621500007],[-7.607679442999881,37.42471328100004],[-7.528671455999927,37.48150503400012],[-7.60854646699994,37.52017041800008],[-7.645966467999926,37.62614030500009],[-7.550602537999964,37.69451819500017],[-7.397286464999922,37.74638524400007],[-7.304562498999928,37.74251314000014],[-7.266901433999919,37.660083660000055],[-7.347221523999906,37.58723117500017],[-7.304800544999978,37.495546901000125],[-7.215871569999933,37.494718768999974],[-7.009064536999972,37.63155719399998],[-7.001145482999959,37.70384507400013],[-6.921350434999965,37.712598631000105],[-6.90527746499987,37.61794666000009],[-6.803264505999891,37.61516554399998],[-6.768714468999917,37.5403568910001],[-6.687221582999939,37.50342086100005],[-6.372433508999904,37.64474109000014],[-6.341393477999929,37.75133291400016],[-6.24791949899992,37.75095103500013],[-6.060542556999962,37.874171717000024],[-5.954411568999888,37.85707397600015],[-5.850547550999977,37.77082570100015],[-5.787127556999963,37.88262067500011],[-5.697273554999981,37.954652404000115],[-5.497959440999921,37.99829546500007],[-5.402333492999958,37.870474795],[-5.376138535999928,37.97167705600009],[-5.254640502999962,37.891619487000185],[-5.181775444999971,37.88724865900002],[-5.050608550999868,37.82803369800001],[-4.877243467999961,37.87605161000005],[-4.76371947399997,37.930082867000124],[-4.656960513999877,37.90463121800008],[-4.726003423999941,37.82711453900009],[-4.673133563999897,37.758314034000136],[-4.831287503999931,37.73922944600008],[-4.910800584999947,37.59735198800013],[-4.83848755899993,37.564404738000064],[-4.810853429999952,37.46001769000003],[-4.914906543999962,37.46669354000011],[-4.981990435999819,37.39493690500018],[-4.875785519999909,37.27412736100007],[-4.966608469999869,37.20835959600004],[-5.094251443999951,37.23387209800006],[-5.24661449499996,37.196224780000136],[-5.21378358599992,37.12699310900001],[-5.354163532999962,37.061149404000105],[-5.195497458999967,36.963220444000115],[-5.215872523999963,36.906252671],[-5.342450493999934,36.89292879800013],[-5.428254527999968,36.680916268000146],[-5.302912553999874,36.58208357200016],[-5.237866469999915,36.62061886900011],[-5.102828477999935,36.61835961000014],[-5.052504536999891,36.576078775999974],[-4.978209526999876,36.65896691400002],[-4.834165514999938,36.764646787000174],[-4.775734428999954,36.90081667200013],[-4.865962431999947,36.960813497000174],[-4.639672503999975,36.98319401599997],[-4.569820571999912,36.920557395],[-4.31861744899993,36.88442921300003],[-4.219583585999885,36.93050218800016],[-3.97010445199993,36.814465634999976],[-3.848551432999898,36.7943400150001],[-3.827620479999837,36.75026210000004],[-3.724831524999956,36.72956751700008],[-3.614743440999973,36.75478598100017],[-3.473811461999901,36.701564081000186],[-3.244805461999931,36.758405622000055],[-3.007673541999907,36.73829123400009],[-2.946758562999946,36.770799607000185],[-2.796200470999963,36.776815467000176],[-2.730674439999916,36.80870575900019],[-2.86514950399993,36.88735114400009],[-2.922154491999891,36.97817007100008],[-3.033803453999894,36.97989003800018],[-3.200531577999868,36.91296238500007],[-3.313584508999952,36.901427713000146],[-3.461701455999957,36.92499829500014],[-3.528467505999913,37.019043249000106],[-3.456241483999918,37.159948573000065],[-3.515833462999979,37.26421341400004],[-3.479578545999971,37.31630526600014],[-3.346648434999906,37.37226234800016],[-3.289106501999868,37.33344508400006],[-3.271839445999944,37.239475065000136],[-3.159701483999925,37.25355850600005],[-2.950745498999936,37.184014023000145],[-2.802672473999962,37.15864770200017],[-2.726692532999948,37.095095777000154],[-2.670354576999955,36.98268624100018],[-2.418059458999835,37.027230189000136],[-2.358350467999969,36.958654654000156],[-2.209620469999891,36.984452978000036],[-2.151278567999896,36.94994988000002],[-2.015970509999875,37.00365575100005],[-1.941939529999956,37.1037055000001],[-1.968816437999919,37.22077621200009],[-1.939823434999823,37.27678610100014],[-1.826781567999944,37.35429573900012],[-1.613010514999871,37.41648141400009],[-1.444330580999974,37.53682928300009],[-1.338120467999943,37.56966136500006],[-1.035995437999873,37.588334066000016],[-0.785070425999947,37.64548104400012],[-0.871153577999905,37.701071167],[-0.754886521999879,37.786336412000026],[-0.7656425159999,37.85691807200004],[-0.651088552999965,37.99567545000008],[-0.636157533999892,38.12821831800005],[-0.525129502999846,38.19479912700001],[-0.509336488999963,38.32941366600005],[-0.414205575999858,38.34707852700018],[-0.338607514999921,38.45832851000006],[-0.071383555999944,38.576414606000014],[-0.287413531999846,38.54378402500015],[-0.34362441899998,38.49820675600017],[-0.500000557999954,38.497916910000185],[-0.631185556999924,38.59398123100016],[-0.42027457699993,38.60302228800015],[-0.381196467999928,38.665891088000194],[-0.276678493999896,38.64971652900016],[-0.178870567999866,38.73986792100004],[-0.239740451999921,38.80658183500009],[-0.341189475999954,38.82501464600017],[-0.55980342499987,38.775107454000135],[-0.649976442999957,38.80124206000016],[-0.634112516999892,38.88416054000004],[-0.85719552899991,38.81694270600019],[-0.787809463999906,38.91926613000015],[-0.812081443999944,39.01866041500017],[-0.875251489999869,39.11005920100007],[-0.874831556999936,39.19903578599997],[-1.049471526999866,39.10399808000011],[-1.140488433999963,39.17226130500006],[-1.243318460999944,39.184006195000165],[-1.185515514999963,39.27450862100011],[-1.447983581999893,39.34628051100003],[-1.434269446999906,39.40908158600007],[-1.287762496999903,39.417694494000045],[-1.146510495999962,39.35865940899998],[-1.075845520999962,39.30195533099999],[-1.000003545999959,39.32540387300003],[-0.999998516999881,39.393667098000094],[-0.881300541999963,39.41253778000009],[-0.818047514999819,39.536956068000165],[-0.883984426999916,39.577170428000045],[-0.982472459999883,39.52480599700016],[-1.023463486999901,39.6724250580001],[-0.926834559999918,39.681416996000166],[-0.832078485999887,39.60822085300009],[-0.781946490999928,39.67143398200017],[-0.696342448999872,39.64362433600007],[-0.580529524999861,39.652307317000066],[-0.58354550099989,39.73482111900006],[-0.534087578999959,39.80937512999998],[-0.584853580999948,39.921517618999985],[-0.48429052399996,39.94767150400014],[-0.580550479999886,40.06996095699998],[-0.404658420999965,40.127810170000146],[-0.216070459999969,40.166082611000036],[-0.236433455999872,40.226971773000116],[-0.17532150299985,40.291656931000034],[-0.10597751499995,40.29185189400005],[0.013429569000039,40.454264177000084],[0.086059431000024,40.47818193700016],[0.056997528000181,40.62973797900014],[0.177868428000181,40.6654128670001],[0.296292482000069,40.86719645800008],[0.232938537999985,40.922245948000125],[0.211420516000032,41.082374329000174],[0.539423498000133,41.28091244700005],[0.811772487000155,41.29641125600017],[0.934653535000052,41.33109791900017],[1.078789580000091,41.41001521300012],[1.21045050400005,41.44879190900008],[1.44189144700016,41.39890315700012],[1.510623556000155,41.40850529700009],[1.697194495000133,41.52971214400009],[1.818881456000099,41.644774049000034],[1.966358528000058,41.70762742599999],[2.038009551000187,41.826954379000085],[1.98346750200011,41.95143838200016],[1.738944419000063,42.02022095000018],[1.600286451000045,42.02234911500011],[1.473405559000128,41.98471034700003],[1.445535563000078,42.078153480000026]],[[-0.361214512999936,40.617867192000176],[-0.130120580999915,40.638062047000176],[-0.091365510999935,40.59404867300003],[-0.098069524999858,40.44892825699998],[-0.204117530999895,40.395552968000175],[-0.290421461999927,40.45719398699998],[-0.557673583999929,40.4865056700001],[-0.733806537999953,40.35635717700012],[-0.819104472999868,40.32829356000008],[-0.89621245099994,40.43858633000008],[-0.941388561999929,40.573269600000174],[-1.125527574999921,40.6326221920001],[-1.217241521999881,40.68846159200018],[-1.235974571999975,40.92496604300004],[-1.313695433999953,41.09552704400011],[-1.271710480999957,41.14456067500009],[-1.105265497999881,41.0771633],[-1.009269571999937,40.915032985000096],[-0.888104467999938,40.835405911],[-0.361214512999936,40.617867192000176]],[[-1.283735494999974,40.200411030000055],[-1.372775446999981,40.32639757300012],[-1.316956497999968,40.44028316200013],[-1.21596244299991,40.30475281700018],[-1.283735494999974,40.200411030000055]],[[-2.474596568999971,40.56868469900019],[-2.500695468999879,40.494981786000096],[-2.619913456999825,40.49413169300004],[-2.794546553999965,40.56033095900017],[-2.852437508999913,40.45588909200012],[-3.07298248099994,40.435538334000114],[-3.111677536999935,40.38269781100013],[-3.117906464999919,40.262845313000184],[-3.239566436999951,40.15033586400017],[-3.3575564759999,40.14065091100008],[-3.39678244199996,40.191545324000174],[-3.289103484999885,40.312271719000194],[-3.28544444899984,40.431464227000106],[-3.080902541999933,40.650386965000166],[-3.05285954299984,40.826448841],[-2.926424568999948,41.01102488700002],[-2.816668575999813,40.9989019730001],[-2.724209477999864,40.86697953400005],[-2.644566477999831,40.79968928000005],[-2.551950470999941,40.636254070000064],[-2.474596568999971,40.56868469900019]],[[-4.859638453999935,39.67795309100018],[-4.616053473999955,39.70031466800003],[-4.488792546999889,39.68346084000012],[-4.233397465999928,39.58117127800011],[-4.23483546499989,39.48665257900012],[-4.424637459999872,39.51276740500009],[-4.492098536999947,39.56241844600015],[-4.84832154299994,39.622655832000135],[-4.859638453999935,39.67795309100018]],[[-5.185223424999947,39.63795666100003],[-5.207396575999951,39.465949949000105],[-5.413815525999894,39.397023883000145],[-5.590913573999956,39.39125210400016],[-5.591705495999975,39.48525967500012],[-5.475978569999938,39.52529818200014],[-5.281009466999933,39.649606500000175],[-5.185223424999947,39.63795666100003]],[[-2.302955475999909,38.97054644600013],[-2.330434539999828,38.82427066900016],[-2.281916563999971,38.75623677200019],[-2.169551451999951,38.725281063000125],[-2.099752493999972,38.65849824900005],[-2.333954435999829,38.39217568100008],[-2.350280539999915,38.28672346000013],[-2.325269442999854,38.17366952300006],[-2.257971477999945,38.15590089400007],[-2.103565421999974,38.2631758440001],[-1.990989420999881,38.24215721600007],[-1.983572442999957,38.17547045900005],[-2.308313523999971,37.97496594700016],[-2.473681432999911,37.85314906600013],[-2.885778540999979,37.75898089800006],[-2.978603424999903,37.78614949600018],[-3.008174443999962,37.8508871250001],[-2.681503513999871,38.178022245000136],[-2.519181420999871,38.38201681400005],[-2.586403445999906,38.48580221000003],[-2.512536582999871,38.570093813000085],[-2.505275507999954,38.68223999000003],[-2.627647438999873,38.70891237900008],[-2.770458472999962,38.70106960000015],[-2.998530561999871,38.906003445000124],[-2.953779579999889,38.96305453399998],[-2.841931463999913,38.965984344000105],[-2.696522542999901,38.89848437500012],[-2.53139854799997,38.907910160000085],[-2.380658567999944,39.01110781700004],[-2.302955475999909,38.97054644600013]],[[-1.204253427999845,37.86243789100013],[-0.994218523999848,37.92009985200008],[-0.984084467999878,37.846458295000104],[-1.097328505999883,37.772408539000025],[-1.115811440999892,37.683306394],[-1.173354546999974,37.64783485000015],[-1.262546546999943,37.68664842600015],[-1.29624347399988,37.769890615000065],[-1.204253427999845,37.86243789100013]],[[-3.658534525999926,37.41009541000017],[-3.822736512999938,37.467597445000024],[-3.802958573999888,37.61125555400014],[-3.699536449999925,37.59510915900006],[-3.620851500999947,37.46217670000016],[-3.658534525999926,37.41009541000017]],[[-1.956302423999944,37.57111462000012],[-1.901843522999968,37.482844127000135],[-2.343124573999887,37.39003483300007],[-2.523315542999967,37.3924608910001],[-2.525119495999945,37.473655214000075],[-2.386033547999943,37.552258690000144],[-2.154800475999821,37.55730962500019],[-2.027216509999903,37.610992865000185],[-1.956302423999944,37.57111462000012]],[[-2.563555551999968,37.12140942100007],[-2.743712490999883,37.158487440000044],[-2.982899485999951,37.272063234000086],[-2.992336502999933,37.33115615400004],[-2.920623453999951,37.39924671200015],[-2.773610571999939,37.39707295000005],[-2.622874447999948,37.30211872700005],[-2.327834472999882,37.26214140700006],[-2.25148153799995,37.200230826000166],[-2.301822577999815,37.16089757200018],[-2.563555551999968,37.12140942100007]]]},"properties":{"objectid":330,"eco_name":"Iberian sclerophyllous and semi-deciduous forests","biome_num":12,"biome_name":"Mediterranean Forests, Woodlands & Scrub","realm":"Palearctic","eco_biome_":"PA12","nnh":3,"eco_id":793,"shape_leng":107.916561292,"shape_area":31.3403425833,"nnh_name":"Nature Could Recover","color":"#E54C00","color_bio":"#FE0000","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":298322.9379817483,"percentage":9.030801447814271}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[19.719123523000178,42.096075498000175],[19.609758462000116,42.14699019500017],[19.58141153600019,42.30189581300016],[19.493204578000075,42.32527562300015],[19.372501484000054,42.44194383600018],[19.40497348000008,42.54213239000006],[19.282680507000066,42.51948834300015],[19.01851057900012,42.660932624],[19.046035575000076,42.764886999000055],[18.95182650400011,42.83051076300018],[18.79510855100017,42.753514935000055],[18.56780659200018,42.76445197800018],[18.482126442000038,42.812356734000105],[18.478618448000077,43.03258151700015],[18.38682755600007,43.019519494],[18.17096153000017,43.10206615300012],[18.038150442000017,43.10432809400015],[17.899421561999986,43.299468188000105],[17.878328503000148,43.42248787200009],[17.714986500000123,43.35723408500013],[17.625749574000054,43.395892092999986],[17.414356466000186,43.42504686700016],[17.254196569000044,43.473821497000074],[17.20490846399997,43.61671215900003],[17.074893579000047,43.71438362700002],[17.075672593000036,43.78004158900018],[16.908025476000148,43.910309273000166],[16.811471484000037,43.83575945200016],[16.974660433000167,43.70333577600013],[16.949495445000082,43.65239895000019],[16.991468496000095,43.54501134700013],[16.875474523000094,43.49809045900014],[16.77537347700013,43.68799387500002],[16.61548045900014,43.82258662100014],[16.52696756199998,43.86800832200004],[16.424900456000103,43.96968499800016],[16.29430956599998,44.01545387800007],[16.035474551999982,44.16263154800015],[15.936884595000095,44.127700637000146],[15.873754447000067,44.19639167500003],[15.573190463000117,44.26098245300017],[15.305482534000078,44.379241384000125],[15.013051510000139,44.590190083000095],[14.928945482000074,44.69196281600006],[14.911010556000065,44.786200721000114],[14.945366469000078,44.98762489500007],[14.851340458000152,45.11040787500019],[14.56369449600004,45.31747407600005],[14.314125508000018,45.417449058000045],[14.17480151300009,45.22120188300005],[14.11271943800017,45.310370916000124],[13.94648651700004,45.41445521000014],[13.91897157800014,45.568462455000144],[14.10479753400017,45.55483918000016],[14.322111449999966,45.47430702800017],[14.36136859600009,45.52385329599997],[14.229548584000042,45.585845349000124],[14.174558438000133,45.65814529900018],[14.052142586000173,45.691490354],[13.902859549000084,45.924752181000144],[13.784386544000142,45.92729592100011],[13.627727433000075,45.97756219500019],[13.415999552000187,45.79727567100019],[13.397920458000158,45.68772855500009],[13.60951657400011,45.75665680100008],[13.72146745300006,45.67225656800002],[13.721855535000032,45.533965391000095],[13.544845498000143,45.52563428299999],[13.473365465000143,45.485732065000036],[13.567391476000068,45.18764795100009],[13.644589475000089,45.05887191100004],[13.868537499000126,44.8075978760001],[13.971493590000136,44.801054795000084],[14.01277345700015,44.95348691200013],[14.120203472000128,44.96164987999998],[14.124728526000126,45.04566085800002],[14.215960513000141,45.1725499640001],[14.299318540000058,45.341518068000084],[14.55250247600003,45.26322908000009],[14.732466463000094,45.130633910000086],[14.826963537000154,45.09502691500012],[14.903893482000058,44.954901778000135],[14.868504584000107,44.795222666000086],[14.879869439000117,44.69340098300012],[14.95437550600002,44.593020819000174],[15.215555441000163,44.41284510500009],[15.314318567999976,44.284061521000126],[15.181745526000043,44.29451727400004],[15.132247538000115,44.183475665],[15.282816526000147,44.04629592900011],[15.450669502000096,43.92023126700008],[15.6615794760001,43.814228355000125],[15.709150465,43.760239678000175],[15.858601475000057,43.73124064000007],[15.942802554000082,43.66254591400008],[15.91895352500012,43.574029328999984],[15.990936471000055,43.48761961800017],[16.15020554000006,43.466569642000024],[16.172288502000015,43.50184454600014],[16.333271502000173,43.54165825100017],[16.514757476000113,43.49558041500012],[16.635234593000177,43.42751181700004],[16.821403536000048,43.38638902600019],[16.88222648100009,43.39593383500011],[17.17319653900006,43.168673785000124],[17.298732471000108,43.118625106000025],[17.49373459800006,42.96381403600003],[17.690696583000033,42.87373841700014],[17.712684494000086,42.84288848700004],[17.71509546500016,42.818493795999984],[17.837825470000098,42.810261929000035],[18.311912452000172,42.49973957300017],[18.468498474000114,42.43292222600013],[18.58863059200013,42.41453920400005],[18.794372453000165,42.24435119700007],[18.9144014740001,42.20173374600006],[19.0991845530001,42.099783484000056],[19.178199581000115,41.919898789000115],[19.607633482000153,41.79324789700007],[19.532527439000148,41.47618463900011],[19.425716511000132,41.314636867000104],[19.521429464,41.23981664600018],[19.454837590000068,41.12991983700016],[19.445524457000033,41.01743402600016],[19.540933482000128,40.91972483900014],[19.453323483000133,40.88025026600013],[19.359878506000143,40.786833285000114],[19.38392450900011,40.715950044000124],[19.346574581000084,40.60135752500008],[19.463878478000083,40.58011778200017],[19.490386582000156,40.343891276000136],[19.39223650800011,40.296676853000065],[19.50186157500019,40.20193704000002],[19.83199456700015,40.05430993200008],[20.015388597000026,39.85438762700011],[19.97871743500008,39.70468566200003],[20.17725354100014,39.611159046000125],[20.135339499000168,39.53686789100004],[20.20590758000003,39.48241485700015],[20.21948844200017,39.40613266500009],[20.337352586000065,39.292364590000034],[20.467874576000156,39.2491221840001],[20.584651586000177,39.33368871400012],[20.644140468000046,39.273741845000075],[20.693487582000046,39.1545003870001],[20.775964503000125,39.27796464800019],[20.88059043600009,39.313803151000116],[20.89653952200007,39.204978723000124],[20.955224579000117,39.18348417000004],[20.995557459,39.30450326200008],[21.082620455000153,39.429722525000045],[21.03350451400013,39.553805705000116],[21.021202562000155,39.706989512],[20.86733646800019,39.870424219000085],[20.719684550000125,39.977059127000075],[20.672840440000016,40.108119236],[20.509122592000097,40.181394336000096],[20.468669516000034,40.26281430000017],[20.256559588000187,40.32679051700012],[20.166650601000185,40.42681428200018],[20.14526551600011,40.494913557000075],[20.197690465,40.56696892300016],[19.97849648800019,40.88543531100004],[19.97271347800006,40.94562978200008],[20.103097502000082,41.01131506900009],[20.03458047300012,41.115065931],[19.882122539000136,41.13952181000013],[19.813703578000116,41.236737805000075],[19.875740558000075,41.3504037890001],[19.796239547000084,41.52487109200007],[19.945983589000036,41.6239453550001],[19.98070746700006,41.67310085800017],[19.95333250600015,41.79290088600004],[19.79839151700014,41.92700966100017],[19.719123523000178,42.096075498000175]],[[16.28194659400009,43.85729641700004],[16.367818522000107,43.92102520100019],[16.548585496000044,43.79564349600008],[16.600496466000152,43.714554953000174],[16.46599558600019,43.69657694400013],[16.28194659400009,43.85729641700004]],[[17.18907555200002,43.195120701000064],[17.030033464999974,43.29432924300005],[17.062713500000086,43.38624385200012],[17.175638522999975,43.34084612300006],[17.263895437000144,43.23985156599997],[17.18907555200002,43.195120701000064]]]},"properties":{"objectid":332,"eco_name":"Illyrian deciduous forests","biome_num":12,"biome_name":"Mediterranean Forests, Woodlands & Scrub","realm":"Palearctic","eco_biome_":"PA12","nnh":3,"eco_id":794,"shape_leng":38.5983863955,"shape_area":4.44111517757,"nnh_name":"Nature Could Recover","color":"#F1873D","color_bio":"#FE0000","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":40665.39266252469,"percentage":1.2310186049291723}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[71.91483357700014,32.24247825600014],[71.8290865400001,32.25976576400018],[71.84866364800007,32.13787864300019],[71.97180151700013,32.132259582000074],[72.00346348599999,32.04000466800005],[71.93092364600017,31.98258544600003],[71.709876598,32.012714700000174],[71.67907763000005,32.05576231100008],[71.74871850500011,32.152660129000026],[71.68814852600008,32.22526685600013],[71.53500361100004,32.095311818000084],[71.48091854299997,32.21351794300017],[71.41866262700017,32.068220669000084],[71.24684149100017,31.999383115000114],[71.32357764700009,32.14667913800014],[71.24740559300011,32.15094318000018],[71.19734149100009,32.04612261900007],[71.11653156300002,31.963686266000025],[71.04763064200012,31.737493568000104],[71.05941056900019,31.591946680000092],[70.99593357800012,31.48916107800011],[70.9434125730001,31.22055326800006],[70.91763252100014,30.983069308000097],[70.91606862500004,30.784607466000125],[70.9664225730001,30.538274227000045],[71.06300355500014,30.325469943000144],[71.04711163500008,30.162588107000147],[70.99427060800002,30.13672909700017],[70.99696354600007,30.02033329600016],[70.95831257900016,29.98593463600008],[70.98844954400016,29.84814084100003],[71.0428085330002,29.866842040999984],[71.070426569,29.967376264],[71.2395626460002,30.056571784000027],[71.33428150500004,30.18983683600004],[71.40993455199998,30.35278203900009],[71.51670859900008,30.45230121400016],[71.58146651200008,30.583093773000144],[71.72118361800011,30.72892832700012],[71.82710254400007,30.76512607899997],[71.7909165260001,30.826803978000044],[71.97973649800008,30.868483327000092],[71.98258953000004,31.001327775000107],[71.94657852700004,31.017578274000073],[72.03074658100013,31.17104203600013],[72.10085248400009,31.441162612000085],[72.1057666260001,31.56267958899997],[72.14660661100015,31.704464678000193],[72.23961656800003,31.767819796000026],[72.21056355000007,31.807849251000107],[72.2550815140001,31.90145717300004],[72.23020151100019,31.992354219000106],[72.29683663600008,32.15520789200008],[72.25763648600008,32.27299425100006],[72.18846851800015,32.239918088000024],[72.0659715290002,32.24301620700015],[71.99817651700016,32.273815175000095],[71.91483357700014,32.24247825600014]]]},"properties":{"objectid":335,"eco_name":"Indus Valley desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Indomalayan","eco_biome_":"IN13","nnh":1,"eco_id":317,"shape_leng":8.96352470826,"shape_area":1.84493561854,"nnh_name":"Half Protected","color":"#FDA87F","color_bio":"#CC6767","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":19540.005345968384,"percentage":0.07406516942030347}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-4.010570436999956,14.678758371000185],[-3.879904444999966,14.928543277000074],[-3.781003519999899,15.092101533000118],[-3.838179498999978,15.235503323000046],[-3.801945536999938,15.273839969],[-3.699598475999949,15.258741815000121],[-3.649341422999896,15.346175122999966],[-3.641549437999913,15.50767478400013],[-3.61792554699997,15.538843729000064],[-3.473192541999936,15.54746250500017],[-3.49599550999983,15.612969090000092],[-3.621715507999966,15.683893737000119],[-3.571110437999835,15.750349488999973],[-3.323374571999977,15.64136647500004],[-3.131350534999854,15.667074778000028],[-3.078525433999971,15.761369512000101],[-2.93343049899994,15.796401509000077],[-2.706180506999942,15.751409464000062],[-2.61110055599994,15.765219488000128],[-2.53290343499998,15.828794379000101],[-2.391753525999945,16.03741106500007],[-2.322371483999973,16.09171758300016],[-2.165170565999972,16.17094383500006],[-2.11589050799995,16.270077275000062],[-2.188184422999939,16.29742574800008],[-2.34292156399988,16.218370655],[-2.478275553999879,16.179771991000052],[-2.675715473999958,16.20049071400007],[-2.974945561999959,16.16635306699999],[-3.052839426999867,16.176932202000046],[-3.062077457999919,16.288965055000176],[-3.015161430999967,16.39413866199999],[-3.037802459999966,16.45903437400011],[-2.958801513999845,16.548658879000186],[-2.489353579999886,16.61971462000008],[-2.187364504999891,16.715209475],[-2.015875459999904,16.7978231890001],[-1.733755517999953,16.85198101200018],[-1.46343344099995,16.918485882000027],[-1.114696479999964,16.952623697000092],[-0.955042513999899,16.95064389200013],[-0.676550427999928,16.87661844300004],[-0.552444448999836,16.886428790000082],[-0.434930501999929,16.861440325000103],[-0.335631435999971,16.704590274000054],[-0.253659440999968,16.691710977000128],[-0.185972554999978,16.76971598500012],[-0.234954552999966,16.94258536300015],[-0.287210522999942,17.047088752000093],[-0.356382513999904,17.106134231000112],[-0.448174579999829,17.064386653000042],[-0.567629440999895,17.04534883700012],[-1.151847421999946,17.167070332000094],[-1.285361583999929,17.182360432000053],[-1.641101457999923,17.104503448000116],[-1.837839476999932,17.04127908700019],[-2.201596473999814,16.95459361200011],[-2.439606481999874,16.880248143000188],[-2.684607499999913,16.82956126500011],[-2.929841535999969,16.743657822000102],[-3.142115580999871,16.694359658],[-3.247840548999932,16.650972581000076],[-3.539902432999952,16.46345532500004],[-3.611710532999837,16.350701460000096],[-3.68010954499988,16.315284566000173],[-3.789771492999932,16.32197315800005],[-4.049637481999923,16.231249784000113],[-4.113107431999936,16.129514435000033],[-4.348847452999962,16.096866251000165],[-4.385224577999963,16.000893292000114],[-4.458703525999965,16.05343022300019],[-4.514319464999971,16.03284125099998],[-4.576787442999944,15.910269328000027],[-4.868333504999896,15.787227013000177],[-4.926146508999921,15.662106153000082],[-4.917558577999898,15.6144580510001],[-4.789558534999969,15.623957597000071],[-4.659661498999981,15.668044564000184],[-4.631530490999978,15.572670743000117],[-4.528307520999874,15.546093572000132],[-4.519555472999969,15.486557248999986],[-4.651059486999941,15.43535941100015],[-4.724433493999868,15.267500233000021],[-4.814211555999975,14.85227818300001],[-4.852262546999896,14.791732176000039],[-4.865797475999955,14.733534779000024],[-4.977437552999959,14.568975723000108],[-5.032285542999944,14.309892605000186],[-5.194684581999923,14.029421048000131],[-5.148297452999941,14.008333521000168],[-4.919569563999914,13.991184650000093],[-4.766938459999949,14.021672648999981],[-4.674348436999878,14.013692072000026],[-4.649722572999906,13.88680145700016],[-4.548388548999981,13.771448029000112],[-4.659810528999969,13.698953115999984],[-4.785821546999898,13.552273666000133],[-5.127549559999977,13.423412466000116],[-5.24117748999987,13.36486638100007],[-5.280385517999889,13.260623333000012],[-5.225863584999956,13.24023351500017],[-5.041845438999928,13.277551089000156],[-4.914549474999887,13.333757450000121],[-4.833024569999907,13.234944031],[-4.757257529999947,13.242873479000082],[-4.719943475999969,13.30169046800006],[-4.713101495999979,13.447919642000159],[-4.451346561999912,13.628068702000178],[-4.255138445999876,13.828404234000118],[-4.092889442999876,14.117005231000121],[-4.070543456999872,14.228397874000052],[-4.010570436999956,14.678758371000185]]]},"properties":{"objectid":336,"eco_name":"Inner Niger Delta flooded savanna","biome_num":9,"biome_name":"Flooded Grasslands & Savannas","realm":"Afrotropic","eco_biome_":"AF09","nnh":1,"eco_id":71,"shape_leng":19.6817421499,"shape_area":3.86391797041,"nnh_name":"Half Protected","color":"#96BEE1","color_bio":"#BEE7FF","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":46132.898666279034,"percentage":3.989482722256394}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-157.25871961699994,62.55992364200017],[-157.12320589699993,62.61814542399998],[-157.05606014999992,62.69905373199998],[-156.70892035799997,62.79519418799998],[-156.64362223199998,62.92577908200013],[-156.87016514699994,62.98003879900011],[-157.17267093499996,62.95779301600004],[-157.26090315499994,62.814743051],[-157.39694173399994,62.67890354600007],[-157.38036347099995,62.55600467400012],[-157.25871961699994,62.55992364200017]]],[[[-156.11311761499996,63.15001219499999],[-155.76472129199996,63.290894642000126],[-155.51465238799992,63.34664600000019],[-155.49126939899992,63.458377882000036],[-155.63580661799992,63.511115438000104],[-155.65348142899995,63.57594514099998],[-156.0010914769999,63.58564120300008],[-156.10157498699996,63.500906624000095],[-156.08175653599994,63.349307248000116],[-156.18158538299994,63.3066536230001],[-156.11311761499996,63.15001219499999]]],[[[-159.88116493699997,63.559530276000146],[-159.93537517799996,63.62582211900019],[-160.00691217399995,63.85376192000018],[-160.15222652599994,63.88163930000013],[-160.2076903349999,63.77066201100013],[-160.37398471899996,63.61034911200005],[-160.59588453299997,63.530640245000086],[-160.37522346499995,63.48790550700005],[-160.19240169399995,63.55129027500004],[-160.1643989899999,63.34368869899998],[-160.05234032099992,63.28936514600008],[-159.82852879499993,63.3440293110001],[-159.68867427099994,63.449688872000195],[-159.88116493699997,63.559530276000146]]],[[[-151.73922498699991,64.20374695600009],[-151.56536165899996,64.26055411300018],[-151.51984294599995,64.37688223600009],[-151.658642033,64.45983064400014],[-151.91136536799993,64.52131580600013],[-152.01306740799996,64.58928192100018],[-151.90192593199998,64.66829319200014],[-152.15142153099995,64.69285869200002],[-152.41498393199993,64.611746358],[-152.31503704199994,64.52299188700016],[-151.930520583,64.40029278300005],[-151.87621831399994,64.31795046200017],[-152.38162675899997,64.29039063800013],[-152.94254203699995,64.204204817],[-153.21615071899993,64.17890369200012],[-153.66039178899996,64.16230275800001],[-153.74364226499995,64.2141555020001],[-153.941260821,64.17475544299998],[-153.90379142699993,63.997811833000185],[-154.04215273499992,63.774300618000154],[-154.21448216999997,63.743359726],[-154.49338889299997,63.78883826400005],[-154.56716646,63.746117380999976],[-154.55136166499997,63.62605159600008],[-155.09655380999993,63.514655742000116],[-154.89169329499998,63.410530390000076],[-154.66436144199994,63.47381484400012],[-154.47414874299992,63.495667240000046],[-154.2069156709999,63.43666161900012],[-153.930198855,63.58220170300007],[-153.74213836299995,63.70788492400004],[-153.43559283499997,63.7853681150001],[-153.33038132799996,63.89155577800017],[-153.40010293599994,64.06727684700013],[-153.31085866799998,64.07319784300012],[-152.94421786899997,64.01017579100017],[-152.76318697099993,64.00579230700004],[-152.47477934199992,64.11723003900005],[-152.06359811199994,64.1084946250001],[-151.73922498699991,64.20374695600009]]],[[[-159.3116849909999,64.98457916500007],[-159.34016523699995,65.05120240999997],[-159.0834196989999,65.11790505100015],[-159.09647309399992,65.2896075880002],[-159.32595168899996,65.27550069600005],[-159.53539234599998,65.09502341200005],[-159.59176876999996,64.98970769400012],[-159.88090631599997,64.90084831400003],[-159.7550293049999,64.75377263500013],[-159.96866624399996,64.71301243900018],[-160.193536722,64.54324415100001],[-160.17919578999994,64.45393500100005],[-159.87081884199995,64.50004773400008],[-159.84504285699992,64.42499757700011],[-160.05485468299995,64.30976786000008],[-160.14522124099994,64.2199446640002],[-160.00786983599997,64.18594751000012],[-159.86734320399995,64.24512863700016],[-159.69292672599997,64.224457492],[-159.56942809699999,64.28195950200012],[-159.19503684199998,64.31332203599999],[-158.95660876299993,64.39474317200018],[-158.89689309599999,64.44685420000008],[-158.9630287589999,64.53825889000012],[-158.92566900599996,64.63040243000017],[-158.97769718799998,64.74599753500019],[-158.74828488999992,64.76518470900004],[-158.69436546599994,64.85122304500015],[-158.79273165199996,64.87871739000013],[-158.96809029699992,64.83160881900011],[-159.130239329,64.83037000200005],[-159.07662153599992,64.94580302000008],[-159.3116849909999,64.98457916500007]]],[[[-152.902291318,65.43376839300015],[-152.638586911,65.44238351500007],[-152.54060712599997,65.49537746200019],[-152.76717521499995,65.59063582599998],[-153.02492219199996,65.57679572100017],[-153.40002154199996,65.42681722300017],[-153.55329315899994,65.43427206300004],[-153.8897192169999,65.30024145600004],[-153.90503129799993,65.36802446200011],[-153.78095885499997,65.49130738400004],[-154.06032114299992,65.49332547],[-154.30385527699994,65.42529148900007],[-154.4554113799999,65.42405986200004],[-154.84797132599996,65.20633719900002],[-154.93443134799995,65.1048625730001],[-155.15312366899994,65.01014459000015],[-155.13291950499996,64.93473583800005],[-154.9942811249999,64.92822742600015],[-154.5691200429999,65.04523665200003],[-154.2824493649999,65.04724629600003],[-154.00226031299994,65.07739420800016],[-153.83043288099995,65.14744128300003],[-153.5781635879999,65.16778249600009],[-153.53022629699998,65.26686271800014],[-153.30905842399997,65.36371047900013],[-152.92078416699997,65.2991536780001],[-152.80604304799996,65.35815072499997],[-152.902291318,65.43376839300015]]],[[[-150.81606738799996,65.89392504500012],[-150.96987617899998,65.94589776200007],[-151.17616679599996,65.90206109000013],[-151.44436703699992,65.89324008600005],[-151.7426686,65.91471859300003],[-152.41981681599995,65.8858523580002],[-152.119096066,65.70491168300015],[-151.88416479699993,65.66937312000016],[-151.38781289399998,65.668810285],[-151.44775081699993,65.59651143700006],[-151.80212915099997,65.54816362700012],[-152.07716379299998,65.4461302250001],[-151.95439096299998,65.34719455800007],[-151.20870135899992,65.31881020500015],[-151.20063937499998,65.22258154700012],[-151.07401109399993,65.15715811200016],[-150.86808554699994,65.15874593100017],[-150.48417622299996,65.25756381500014],[-149.4636832059999,65.26666991100006],[-149.4494652539999,65.4501619130001],[-149.02339182799992,65.5117630690001],[-148.94548859999995,65.61453407099998],[-149.53679986799995,65.53565942500006],[-149.64177322499998,65.59209842000007],[-150.14194052599996,65.50939823800013],[-150.22896470999993,65.53837938800012],[-150.25957236599996,65.6391913600001],[-150.08509645099994,65.6761031900001],[-150.04325151899997,65.77902675600018],[-150.106028532,65.83838208100008],[-150.3404542529999,65.8161735760001],[-150.45971120999997,65.9190405540001],[-150.71716244399994,65.86963190100005],[-150.81606738799996,65.89392504500012]]],[[[-142.16230060799995,65.07451357399998],[-142.40779042999992,65.12907222800015],[-143.23411617899995,65.27471930700011],[-144.0409876219999,65.38920374899999],[-145.49182252499998,65.669071062],[-145.8027730759999,65.76980423000003],[-145.63522918999996,65.88063081500007],[-145.75443064299995,65.91611152800004],[-146.0102338119999,65.92665607500004],[-146.29343222399993,65.90554446400006],[-146.44887751699991,65.86737386599998],[-146.95833429899997,65.96188516300009],[-147.61305093199996,66.03123298600008],[-147.88978711999997,66.03093485900018],[-148.126489077,65.95163957300008],[-148.28379888499998,65.8199458040001],[-147.98336522099996,65.79739321700009],[-148.0272150669999,65.73961756300002],[-148.30716463199997,65.73072488100001],[-148.54101940699996,65.6796994660001],[-148.558236841,65.62456180700013],[-148.09477481,65.59005154800013],[-148.02977930099996,65.47236284500008],[-148.16750147399992,65.41952559000003],[-148.23891847699994,65.25287036600002],[-148.18233074399996,65.21259440200004],[-147.7574866589999,65.20317967000017],[-147.68235005699998,65.07236182800011],[-147.4401204639999,65.04616507200012],[-147.21517475499996,65.13742488100013],[-146.98771588299996,65.00586180200014],[-146.4723291409999,65.02140647300018],[-146.47547615599996,64.9455236230001],[-146.88147096199998,64.81408237400012],[-146.9148737879999,64.70465844800009],[-147.03934795299998,64.62143238100003],[-146.98005963399996,64.5401352720001],[-146.85283068699994,64.50820678300005],[-146.48517676399996,64.55835800000011],[-146.50373911399998,64.39894923500009],[-146.17696816599994,64.3780178720001],[-145.95453166999994,64.44645212300014],[-145.86676157399992,64.39057239000005],[-145.52115579399998,64.30263581800011],[-145.333725663,64.30000890200017],[-145.31714247899995,64.20559793299998],[-145.12888458899994,64.150383094],[-144.96604750299997,64.1529137230001],[-144.6807931369999,64.05619579199998],[-144.74490515599993,63.89522864100019],[-144.29602666399998,63.819145189000096],[-143.9267518889999,63.72650142800012],[-143.86789478699995,63.677895812000145],[-143.769881586,63.48433139100007],[-143.43858396699994,63.45156378100012],[-143.18573239399996,63.48590398099998],[-143.0280588199999,63.47575492900012],[-142.56733327799992,63.26724820400011],[-142.2360717289999,63.14596695200004],[-141.94138317399995,63.06946785700012],[-141.69112450499995,62.98101297400018],[-141.55408932799998,62.88368648200009],[-141.40919853599996,62.68886599700005],[-141.44653211399992,62.59083718200003],[-141.62568039099995,62.53673996000009],[-141.56031822499995,62.32086499500019],[-141.06242453599998,62.25651918800003],[-140.98974831199996,62.165525575],[-140.88380383699996,62.13578765300008],[-140.56626801899995,61.983541790000174],[-140.4251406809999,61.965847785000165],[-140.41586353099996,62.095345493000195],[-140.36160179099988,62.12453053600012],[-139.97610435299993,62.05453915300018],[-139.320999165,62.36199563800011],[-139.04723973199998,62.15734061500012],[-138.6495831499999,62.144924702000196],[-138.01570034599996,61.86575628200018],[-137.73576234099994,61.89230280800018],[-137.624008001,61.85087201500011],[-137.348800263,61.878294950000054],[-137.22540453399995,62.00038212900006],[-137.12136765599996,62.02434945400012],[-136.91337423899995,62.00526366800011],[-136.73439026699998,62.07308620499998],[-136.815870992,62.17915739900013],[-136.9561906209999,62.238776761999986],[-137.29752930699993,62.31291886700018],[-137.48693809799994,62.381796629000064],[-137.73135478599988,62.435067034999975],[-137.73750274399998,62.478969948000156],[-137.3887308909999,62.41573644099998],[-137.39326404199994,62.47343833500014],[-137.74678045399997,62.58204706500004],[-137.90495194599993,62.60797120799998],[-137.63053870099998,62.69095207600009],[-137.73138325199994,62.751776945000074],[-137.91845606799995,62.766304023000146],[-137.925643665,62.93390242800007],[-138.08158926,63.050587799000084],[-138.41622886999994,63.20797389400008],[-138.7363693239999,63.215485643000136],[-138.6237943999999,63.31427463500006],[-138.42634496599993,63.328086050000195],[-138.32342393999988,63.4103084890001],[-138.339844939,63.48677910100014],[-138.22292976199998,63.53839844100003],[-137.96409504799993,63.55652595100014],[-137.98136781699992,63.69915698500006],[-138.07786688099992,63.764344121000136],[-138.31828337999997,63.839194834000125],[-138.27327104899996,63.91856442400018],[-138.338531903,63.983613251000065],[-138.72050424599996,64.02203253600004],[-138.92866732599998,64.07705752100009],[-139.01551819499997,64.06147068600018],[-139.23487927399998,64.11061935700002],[-139.59960930599993,64.26184791999998],[-139.87860182499998,64.3183135110001],[-139.98666590499994,64.43447251900017],[-140.6652333419999,64.65410418100004],[-140.99929686699988,64.70496860200012],[-141.15810088699993,64.77539115400015],[-141.8107111449999,64.99534150800014],[-142.16230060799995,65.07451357399998]]],[[[-157.08626279599991,66.38408282200004],[-157.2563522179999,66.45367990900019],[-157.35811309699997,66.37068775900008],[-157.84066402899995,66.39151338300013],[-157.79605407999992,66.30933051100004],[-157.45584662499996,66.24275169000003],[-157.21736289599994,66.23585156900009],[-156.8297076709999,66.11796365900017],[-156.74852735299996,66.18613706700006],[-156.86434727699995,66.23784141200014],[-156.81930643599995,66.31808175800012],[-157.08626279599991,66.38408282200004]]],[[[-155.70250259799994,66.09374521300003],[-155.897657933,66.15786607000007],[-155.84132264199997,66.22947632699999],[-156.11244787499996,66.36365074100013],[-156.49312735799998,66.48104993900012],[-156.62728697699993,66.42866546100015],[-156.2426860019999,66.17685235400018],[-156.20411611399993,66.09689950199999],[-155.86494476099992,66.07230575200009],[-155.70250259799994,66.09374521300003]]],[[[-152.87623621499998,67.03231629400017],[-153.129204017,67.0558005960001],[-153.40151138899995,67.0122765100001],[-153.83874433499992,67.04670019200012],[-154.0602435369999,67.04621576700009],[-154.30952003199994,66.91751000700003],[-153.54043217399993,66.91503380000006],[-153.17969652699995,66.81937713200011],[-153.01507397099994,66.82746116200019],[-152.54435333299995,66.94228112600013],[-152.506135787,66.98821642900003],[-152.87623621499998,67.03231629400017]]],[[[-157.51240219699994,67.08924354000015],[-157.4642595249999,67.03360585000007],[-156.96280885699997,66.97220669700005],[-155.56924618599993,66.8778027520001],[-155.320336978,66.91865469500004],[-155.21587628199993,67.00980217],[-155.49036745499998,67.01656527200004],[-156.61016886799996,67.08187666500015],[-157.51240219699994,67.08924354000015]]],[[[-141.11509729499994,67.4717180470002],[-141.02393322699993,67.543306991],[-141.07053835199997,67.87193934700014],[-141.02601707499997,68.14083475100011],[-141.1199155259999,68.19046656300009],[-141.53147009199995,68.14422148900002],[-141.77294845499995,68.07031255900006],[-141.76625562099986,68.00919649500008],[-141.970528694,67.9682640600002],[-142.17128853399993,67.71547878500007],[-141.93479503899994,67.6338687810001],[-141.31102444599998,67.49055688700014],[-141.11509729499994,67.4717180470002]]],[[[-150.23743451099995,67.17554367100013],[-150.06860717699993,67.14465450800009],[-150.04243668799995,67.07925479300013],[-150.57525451999996,66.99166585600005],[-150.4522650449999,66.84124305299997],[-150.56368883899995,66.76828031100018],[-150.509496088,66.63515520800007],[-150.871951797,66.47325305600009],[-150.87118406099998,66.41282181900016],[-150.58310883599995,66.40782408500019],[-150.60177682899993,66.28138783700012],[-150.90871293699996,66.23865490600014],[-151.34037604299996,66.21352621900013],[-151.61709216099993,66.10968302300017],[-152.2046480429999,65.98888389500007],[-152.38760923899997,65.93101302500014],[-151.39198116599997,65.97852175700012],[-150.7023560949999,66.07991397800009],[-150.40037682099992,66.15631419700003],[-150.17616869499997,66.24930264700015],[-150.13231765699993,66.33664677800004],[-150.261271016,66.38974715700004],[-149.84125177299998,66.44070947800003],[-149.59613600999995,66.39662755700016],[-149.23860207599992,66.52929115100017],[-149.5984464229999,66.60671624600019],[-149.47242841399998,66.68702455800008],[-149.24906066099993,66.70255791500006],[-149.16723287499997,66.77167745500003],[-148.81398498099992,66.86401863800018],[-148.59283413199998,66.99167689400008],[-148.23275538299998,67.00135682400008],[-147.61865897799998,67.07887429599998],[-147.9470305709999,67.11002466200006],[-148.41223110199996,67.20304448900004],[-148.28548796799993,67.24571145100003],[-147.88811352699997,67.2574314100001],[-147.31560282899997,67.22595191500005],[-147.27697540999995,67.09964940200013],[-147.06231098899997,67.11227976400016],[-146.37847142399997,67.25349382899998],[-146.29161053399994,67.36864743000007],[-146.0712284699999,67.43002217300011],[-145.64333697999996,67.43361521700001],[-144.69223261899998,67.49660491000009],[-144.53575322999998,67.5518781070001],[-144.5209611949999,67.61751794300011],[-144.16322125499997,67.68199192100013],[-143.87109506299998,67.7551097290002],[-143.86908325499996,67.53611650700014],[-143.65552097099993,67.50498438800008],[-142.85373550799994,67.70912603700009],[-142.65587915699996,67.80662588800004],[-142.5339080299999,67.932637349],[-142.37612709799998,67.95707084800006],[-142.30116101399994,68.08179565800009],[-142.09186360299992,68.14416404399998],[-141.94744554399995,68.25610202900015],[-141.71567026899993,68.22466826900006],[-141.51405138499996,68.24431247700005],[-141.34847118499994,68.37108820200007],[-141.22098387599993,68.61866097900014],[-141.06983488799983,68.7300747320001],[-141.57444036499993,68.6627943920002],[-141.9488161499999,68.36849076700014],[-142.61155774599996,68.3105436680001],[-143.032030089,68.32190247200003],[-143.41421242799998,68.35251139500019],[-143.92789025299993,68.31099834700012],[-143.88496801399992,68.17529120900019],[-143.7564678259999,68.10118491300005],[-144.079183033,68.03926273900015],[-144.47020491499995,68.08362986800017],[-144.96350215699994,68.09698134000018],[-145.2181300149999,68.05837064299999],[-145.41418283899998,67.88678761100016],[-145.80775314499994,67.89124369900009],[-145.97331858599998,68.00098021800017],[-146.60504751899998,67.8263600790001],[-146.52115181399998,67.69674486800017],[-146.70122957099997,67.64770110400019],[-147.14574345199992,67.66255611400004],[-147.3793609779999,67.58133707000007],[-147.76797069699998,67.49708985200004],[-148.25366735999998,67.3247730760001],[-149.04665247199992,67.33217409600013],[-149.9757790019999,67.23284941800011],[-150.23743451099995,67.17554367100013]]]]},"properties":{"objectid":339,"eco_name":"Interior Yukon-Alaska alpine tundra","biome_num":11,"biome_name":"Tundra","realm":"Nearctic","eco_biome_":"NE11","nnh":2,"eco_id":416,"shape_leng":121.006871941,"shape_area":29.0651539405,"nnh_name":"Nature Could Reach Half Protected","color":"#6EE3C6","color_bio":"#9ED7C2","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":152936.9731877279,"percentage":1.7897506160040006}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[16.232158592000133,41.321827869],[16.00222052400011,41.430194981],[15.89822859900005,41.53027607800004],[15.923344469000142,41.61358817200016],[16.055875434000086,41.67023676200017],[16.198795433000043,41.76824987600003],[16.180953546000012,41.87522525700007],[16.069421595000108,41.93241481500007],[15.444740479000075,41.89289900300008],[15.184709535000081,41.90791283500016],[15.06524243600012,41.93717171200012],[14.96624947800018,42.00313812900009],[14.816344504000028,42.041372683000134],[14.723566558000073,42.09413341099997],[14.714013536000152,42.17876967800015],[14.50893753400004,42.24852840300019],[14.394191457999966,42.36909856000011],[14.198572590000026,42.480036736000045],[14.084727570000098,42.580427964000194],[13.917971450000152,42.82550961600015],[13.831004510000128,43.096141321000175],[13.620042568000088,43.47551547900008],[13.605185477000134,43.53988849600006],[13.493485553000085,43.62529925100017],[13.420831552000095,43.61708213600019],[13.227773523000053,43.69882681500019],[12.937609469000108,43.89939938800012],[12.69329459300019,43.98109092500016],[12.525013470000033,44.08872260800018],[12.394055453000021,44.04613885200018],[12.117491540000174,44.14908253700003],[12.05286052800011,44.14624375400007],[11.808423444000027,44.2711294180001],[11.737611450000145,44.32468424700005],[11.378705564000029,44.48214299199998],[11.099038503000088,44.53306087500005],[10.99574546000008,44.51066510000004],[10.9605174940001,44.56374283100013],[10.777633587000025,44.59501588000012],[10.503197504000184,44.708121784000184],[10.418637511999975,44.7051388320001],[10.330656530000113,44.767153852000035],[10.181416576000117,44.75348179399998],[10.050622509000164,44.84994375400015],[9.880607505000057,44.883940753000104],[9.660449442000186,44.95651177400015],[9.564676475000113,44.952509918000146],[9.283061460000113,45.04059483499998],[9.124369569000066,45.03055482399998],[8.952263448000053,44.92545581600007],[8.848357520000036,44.886702925],[8.761622424,44.786551755000175],[8.609935458000052,44.82179598200014],[8.58308453400008,44.89824581200003],[8.457770555000081,44.84357786600009],[8.138665465999964,44.852892675000135],[8.26933045200019,44.933436897000036],[8.414770553000096,44.97697384300005],[8.388967535000177,45.11274290500012],[8.244064546000061,45.069094983000184],[7.950053533000073,45.050967776],[7.962854544000095,44.9774846360001],[7.816514561000133,44.90891966300006],[7.786623520000092,44.83523468699997],[7.851161493000177,44.72154590500003],[7.782052533000126,44.62359599000018],[7.796862518000125,44.50706792200015],[7.68328856800008,44.37124219900005],[7.546535471000027,44.358024273000126],[7.529386432000138,44.43206028200018],[7.691034453000157,44.52631310700008],[7.677086463000023,44.595160887000134],[7.500000485000101,44.707926821000115],[7.46292648900004,44.801588889000016],[7.499999480000099,44.997858864000136],[7.400573512000051,44.96264565000013],[7.326099464000038,44.76655873700008],[7.454020550000052,44.63745781400013],[7.440945451000118,44.47454798200005],[7.46425653,44.30767434800015],[7.620418427000118,44.30815831900014],[7.828958502000091,44.42095526600008],[7.971315572000094,44.41742313200007],[8.18622958100002,44.4518269890001],[8.275273556000059,44.37268036600011],[8.222284505,44.28414148400009],[8.044944556000189,44.23308546800007],[7.951963434000106,44.15336267200007],[7.74734458100005,44.14775065300017],[7.801887469000121,44.05007583200012],[7.59823957600014,43.93339621900009],[7.397967578000078,43.96341013800003],[7.319744472000025,43.91074814900003],[7.145458554000015,43.91529114100007],[7.151919492000104,43.74989054200006],[6.987840552000137,43.70851294200003],[7.051126436000118,43.54108241400007],[7.144568563,43.548315494000065],[7.141978555000151,43.61658223900014],[7.278828547000103,43.70087971000015],[7.492369433000022,43.743874683000115],[7.520335485000089,43.78057551600017],[7.675436569000112,43.77903073200008],[7.996005474000128,43.850209350000114],[8.184344491000047,43.952095072000134],[8.184268551000116,44.005757022000125],[8.294097467000086,44.15540366500011],[8.427714559000151,44.1866455330001],[8.465820534999978,44.28841340500014],[8.770151514000133,44.427650228000175],[9.246251493999978,44.350707374000194],[9.379169535000187,44.270934287000046],[9.517723568,44.219650450000074],[9.628223539000032,44.14289870400006],[9.749940508000122,44.09652381300003],[9.898987510000154,44.09794991000018],[9.955428564000044,44.050842776000025],[10.074279592000096,44.02794693700014],[10.18499447500011,43.93206399900015],[10.252435436000042,43.83100641000004],[10.267848582000113,43.667958780000106],[10.326815438999972,43.460584628000106],[10.383726550000176,43.43744068400008],[10.499999473000173,43.28618957700019],[10.50116958600006,42.93710392800017],[10.644484540000121,42.95333900400004],[10.774971495000045,42.888177251],[10.776194582000073,42.76673688500017],[10.9740675110001,42.719022230000064],[11.0997814750001,42.55971024600018],[11.179302434000135,42.51406039000017],[11.14805352600007,42.440791995000154],[11.533804468000028,42.33914985200016],[11.687895532000141,42.233556480000175],[11.825289510000175,42.02115888500009],[11.890028480000126,42.031337030000145],[12.117420461000052,41.91467686400017],[12.194231550999973,41.821548555000106],[12.21362157599998,41.73228245900009],[12.397782550000159,41.65203311199997],[12.607009437999977,41.442618805000166],[12.837814530000173,41.39820125600005],[12.96714444600019,41.33476399500012],[13.02838849800014,41.20921901100007],[13.253755579000028,41.26872448900008],[13.349978486000055,41.261384624000186],[13.525941456000055,41.18426725900002],[13.574656574000073,41.22643074700005],[13.715946461000158,41.223402030000045],[13.767183526000167,41.182364399000164],[13.906012486000066,41.33086473400016],[14.085610519000056,41.437939021000034],[14.274674572000094,41.30696625200005],[14.387485433000165,41.2571586360001],[14.500000581000165,41.15952153400008],[14.42301648800003,41.09503921700019],[14.482937541000013,40.9742134120001],[14.593935564,40.93980871700012],[14.62217553700009,40.83199179400009],[14.770675536000056,40.82649108600003],[14.7302554850001,40.71722023800004],[14.873475556000187,40.715343194000184],[15.14276146200018,40.61327038900009],[15.070981525000036,40.577447643000085],[14.935900450000133,40.64463882300009],[14.918853503000037,40.498060459000044],[14.9637744690001,40.42467455000008],[15.074001524999971,40.45952918500012],[15.070076448000066,40.52775033400013],[15.141367552000133,40.568314889000135],[15.228634563000185,40.45270028100015],[15.126889490000167,40.436782209000114],[15.193998528000066,40.33022760000006],[15.307286487,40.22670891600012],[15.478516531000139,40.211343882000165],[15.576765512000065,40.295201135000184],[15.627034467999977,40.292804917000126],[15.684175578000122,40.349945357000024],[15.587108446000173,40.52385526299997],[15.587108446000173,40.64923093300007],[15.506219559999977,40.71394308100008],[15.332308480000108,40.71798701400007],[15.287819517000116,40.81505112900004],[15.348485552999989,40.87976243900016],[15.47386356900006,40.887849131999985],[15.615420503000166,40.952561783000135],[15.688220517000047,40.952561783000135],[15.886397542000168,40.84336268400017],[16.056264522000106,40.65731879900011],[16.20186455000004,40.55621091800003],[16.20186455000004,40.40656561600008],[16.10479758500003,40.281190281000136],[16.19739548700005,40.07772360500013],[16.342771551000055,40.13640480600003],[16.547466512000028,40.18320331800004],[16.668441514000108,40.11750713500004],[16.848131581000075,40.355377333000035],[16.750080581000134,40.45669794600008],[16.660205456000085,40.48138667400019],[16.468242439,40.62038125999999],[16.25332859800011,40.69042949600009],[16.274764477000133,40.80121528900014],[16.40192649800008,40.77925051200003],[16.388103565999984,40.85902544300018],[16.434808536000105,40.93095491300011],[16.59451648099997,40.971878382000114],[16.33232451500004,41.13765666900014],[16.227415441000176,41.1809983170001],[16.030004522000013,41.19890407400004],[16.232158592000133,41.321827869]],[[9.342447579000066,44.45888103100009],[9.27089747400015,44.49237813400009],[9.141772579000076,44.60991186300009],[9.160075471000141,44.72580676200005],[9.236373588000163,44.74559677000008],[9.62270958800002,44.733023748000164],[9.774575592000076,44.67412076100004],[9.896780555000078,44.591940895000164],[9.938253541000165,44.4876970090001],[10.11091655600012,44.48596497200003],[10.406228440000177,44.36684421400008],[10.719491510000125,44.272025443000075],[10.781094475000032,44.2294654910001],[10.800371511000037,44.1419027660001],[10.749339467000027,44.094631682000056],[10.631922582000072,44.085025686000165],[9.952357435000067,44.38835804500013],[9.879919519000111,44.361816246000046],[9.833890465000025,44.27761047300015],[9.694135473000188,44.34810211100017],[9.342447579000066,44.45888103100009]],[[10.944602440000097,44.086822934],[10.993021509000187,44.17066962600012],[11.146989527000073,44.213539372000184],[11.345297477000088,44.15937467600014],[11.599692430000175,44.04962186800003],[11.906981550000012,43.88802430700014],[11.94852343600013,43.83912746900006],[12.017715544000112,43.63644215300019],[11.91148749399997,43.612184255000045],[11.471989441000176,43.974530074000086],[11.249232485000107,44.05695368600004],[10.994420449000131,44.04431578800012],[10.944602440000097,44.086822934]],[[12.321084448000136,43.61449615099997],[12.443737507000094,43.61858115600006],[12.667212457000062,43.51265938000006],[12.713802428000122,43.46387653600016],[12.586564467000073,43.41444979400006],[12.388972499000147,43.46648582300014],[12.291329530000041,43.55958730900005],[12.321084448000136,43.61449615099997]],[[12.781597440000155,43.09310522800007],[12.730772429000126,43.198725926],[12.797117540000158,43.272013599],[12.881787503000055,43.26011163200013],[12.948767458000077,43.18521496799997],[12.887289551000038,43.07885347800004],[12.781597440000155,43.09310522800007]],[[13.178488435000133,43.00252568900004],[13.250884442000086,42.972133914000096],[13.340503583000043,42.83811247800003],[13.429436581000061,42.77659383500003],[13.587546433000114,42.746572205000064],[13.630727483000157,42.69533329600006],[13.570387503000063,42.617979896000065],[13.583814474000178,42.56303735900002],[13.789418536000085,42.415890031000174],[13.830549541000039,42.33187167800014],[13.706183555000052,42.277871266000034],[13.537349562000031,42.36260644000009],[13.462227592000033,42.31446497900009],[13.808753575000026,42.05932085200004],[13.937316547000023,42.17085380900005],[14.056612487000109,42.15807509400014],[14.209839545000136,42.18510572600019],[14.295273434000023,42.10148836300016],[14.463968456000032,42.038336925000124],[14.516993549000176,41.92900472100001],[14.417413521000185,41.80199072500011],[14.458731442000158,41.692582581000124],[14.468789559000015,41.573698528000136],[14.644863505000046,41.40981321000004],[14.670745481000097,41.299463275000164],[14.602794565000181,41.27206937100004],[14.497570500000108,41.36007751100004],[14.3426305160001,41.40718900300004],[14.258897483000055,41.45956382800006],[14.261863503000143,41.54919286000006],[14.166749521000156,41.593927413000074],[14.036087553000073,41.52571397600019],[13.883670523000092,41.55184472700017],[13.882815569000059,41.62935822000003],[13.722818448,41.762494024000034],[13.602318531000037,41.76857090300001],[13.447363461000066,41.73737111300011],[13.145183446000033,41.89220397500014],[13.053307561000054,42.02104505900007],[13.168117506000101,42.141184051000096],[13.200584473000163,42.223241374000054],[13.119185464000168,42.35624742600015],[13.29696646900004,42.62300384100013],[13.269897448000108,42.679311623000046],[13.126356518000023,42.661203695000154],[12.982143526000073,42.5127444310001],[12.90518843500007,42.49253784200016],[12.817755462000093,42.58480717300006],[12.85238244500016,42.701650233000066],[13.032427569000106,42.86491830799997],[13.111165492000055,42.97008185600015],[13.178488435000133,43.00252568900004]],[[12.802324546000023,42.960071852000056],[12.853878447000113,42.91642124700013],[12.85887255299997,42.82718784100018],[12.789030512000181,42.75585298300007],[12.710861553000086,42.800545794000186],[12.69602742900014,42.888760296000044],[12.802324546000023,42.960071852000056]],[[14.899552494999966,40.84336268400017],[15.04515252300007,40.867628629000194],[15.15030852800004,40.81100702900011],[15.07750750800011,40.73820802000006],[14.915730574000179,40.77056451300018],[14.899552494999966,40.84336268400017]],[[15.303997596000102,40.51981133000015],[15.380842549000079,40.540033175000076],[15.457686496000179,40.47532102600013],[15.522397470999977,40.313545769000086],[15.445552518,40.26905932000017],[15.364664470000093,40.32567957900005],[15.364664470000093,40.40252268800009],[15.303997596000102,40.51981133000015]]]},"properties":{"objectid":347,"eco_name":"Italian sclerophyllous and semi-deciduous forests","biome_num":12,"biome_name":"Mediterranean Forests, Woodlands & Scrub","realm":"Palearctic","eco_biome_":"PA12","nnh":4,"eco_id":795,"shape_leng":58.0183726803,"shape_area":11.2565277491,"nnh_name":"Nature Imperiled","color":"#E54C00","color_bio":"#FE0000","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":102278.3067790697,"percentage":3.096158435517033}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[30.84916666700019,-8.628333332999944],[30.78916666600003,-8.5675],[30.6875,-8.5425],[30.533333332999973,-8.594166666999968],[30.51666666600005,-8.65],[30.65833333300003,-8.714166666999859],[30.794166666000024,-8.61083333299996],[30.84916666700019,-8.628333332999944]]],[[[29.50916666600017,-8.8525],[29.45000000000016,-8.937499999999886],[29.554166667000175,-8.958333332999871],[29.808333333000064,-8.931666666999945],[29.812500000000114,-8.858333332999848],[29.950000000000102,-8.7025],[30.044166666000024,-8.681666665999956],[30.1,-8.719166665999921],[30.185,-8.639999999999873],[30.11,-8.6025],[29.965,-8.5925],[30.025833333000037,-8.524166666999918],[30.191666666000117,-8.550833333999947],[30.154166666000094,-8.48],[30.22666666700013,-8.349166666999906],[30.296666667000125,-8.289166665999971],[30.573307439000075,-8.253333333999933],[30.587497499000165,-8.152176296999926],[30.54075648600019,-8.097438445999956],[30.46750049600007,-8.07236498899988],[30.39501949700019,-8.25772390499992],[30.128639597000188,-8.29591621399993],[29.918649453000057,-8.29679899599995],[29.79543867700005,-8.348333332999971],[29.78166666700008,-8.425],[29.725,-8.495833333999883],[29.626666666000176,-8.4875],[29.576666666000108,-8.536666665999917],[29.481666665999967,-8.750833333999935],[29.50916666600017,-8.8525]]],[[[36.10583333300008,-6.387499999999875],[36.22,-6.39333333299993],[36.23916666700006,-6.300833332999957],[36.220833333000144,-6.209166665999931],[36.12416666700011,-6.243333332999896],[36.06666666700016,-6.358333333999894],[36.10583333300008,-6.387499999999875]]],[[[36.165000000000134,-6.045833332999905],[36.025833333000094,-5.955],[35.955,-5.976666665999915],[35.9516666670001,-6.051666666999949],[36.008333333,-6.133333332999882],[36.13166666700005,-6.100833333999958],[36.165000000000134,-6.045833332999905]]],[[[35.31416666700005,-5.409166665999919],[35.27916666600004,-5.346666666999965],[35.15666666600009,-5.310833333999938],[35.15833333300003,-5.434999999999889],[35.27166666600016,-5.508333332999939],[35.31416666700005,-5.409166665999919]]],[[[34.65666666599998,-5.185833332999948],[34.585,-5.2475],[34.5825,-5.35],[34.446666667000045,-5.301666666999893],[34.305,-5.223333332999971],[34.27333333300015,-5.291666666999902],[34.17083333300013,-5.285],[34.19500000000011,-5.388333332999935],[34.14583333400009,-5.4475],[34.065,-5.431666666999945],[34.004166667000106,-5.563333333999879],[34.09333333300003,-5.618333332999953],[34.123333333000176,-5.53583333399996],[34.19083333300006,-5.545],[34.31666666700016,-5.6875],[34.4025,-5.755833333999874],[34.35666666700007,-5.789166666999904],[34.27833333300015,-5.7125],[34.30583333300018,-5.9175],[34.35916666700018,-5.83833333299998],[34.53250000000014,-5.958333332999928],[34.58166666700009,-5.91],[34.71416666700003,-5.945],[34.860000000000184,-6.013333332999878],[34.975,-6.015833332999875],[35.04166666700007,-5.941666666999936],[34.99333333400017,-5.886666666999872],[35.02333333299998,-5.780833332999975],[35.11083333300007,-5.696666666999874],[35.19416666700016,-5.51749999999987],[35.13916666600005,-5.456666665999876],[35.138333333000105,-5.3525],[35.09416666600015,-5.346666666999965],[35.11666666700006,-5.4525],[35.11166666700012,-5.591666665999924],[35.03500000000014,-5.689166666999881],[34.911666666000144,-5.92333333299996],[34.86500000000018,-5.830833332999873],[34.97333333300014,-5.744166665999956],[34.9591666660001,-5.699166666999929],[34.82583333300005,-5.740833332999898],[34.78583333400019,-5.621666666999943],[34.80083333300007,-5.458333332999928],[34.68083333400011,-5.428333333999944],[34.672500000000184,-5.321666666999931],[34.6475,-5.290833333999899],[34.65666666599998,-5.185833332999948]]]]},"properties":{"objectid":348,"eco_name":"Itigi-Sumbu thicket","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Afrotropic","eco_biome_":"AF07","nnh":3,"eco_id":46,"shape_leng":43.5815122847,"shape_area":0.90014012779,"nnh_name":"Nature Could Recover","color":"#DE5245","color_bio":"#FEAA01","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":11069.283752357796,"percentage":0.051631492210233845}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[117.85094057000003,-35.03349304999995],[117.70046239600015,-35.029643948999876],[117.48128975600014,-34.99470550999996],[117.39823001100001,-35.03335999099994],[117.56438001100014,-35.08960999099992],[117.85094057000003,-35.03349304999995]]],[[[114.9966090600002,-33.67718957899996],[114.98261001200012,-33.96098998999997],[114.99552001200016,-34.10411998999996],[115.05441001200006,-34.27801998999996],[115.17101001200001,-34.32350998999988],[115.26120001200002,-34.30665998999996],[115.38377001200013,-34.32710998999994],[115.67392001200017,-34.484359989999916],[115.95186001200011,-34.72550998999992],[115.99632001200007,-34.83079998999989],[116.26372001200014,-34.880259989999956],[116.47653001200001,-35.001319989999956],[116.63569001200005,-35.054819989999885],[116.76738001200022,-35.01498998999995],[116.85926001200005,-35.05110998999987],[116.96974001100023,-35.01964998999995],[117.14106001100015,-35.05275998999997],[117.20210001100008,-35.01701998999994],[117.304210011,-35.03293998999993],[117.36933001100022,-34.969269990999976],[117.45520988400006,-34.96730953399987],[117.36428839900009,-34.88368232399995],[117.05811306600015,-34.83482337299989],[117.00552366400007,-34.868846858999916],[116.82123545200022,-34.79359429999988],[116.6664885890001,-34.60471716399991],[116.59326176800005,-34.59369663699994],[116.43717178800011,-34.47009273499992],[116.43312081400006,-34.38698197399998],[116.33655542200006,-34.40576162799994],[116.30161294400011,-34.35005181099996],[116.17923732500003,-34.33465190799984],[116.03790284700028,-34.14553840199983],[115.93872079200025,-33.98321530399994],[115.83366403000002,-34.09221273499992],[115.77423097200005,-34.19907378599993],[115.78722376000019,-34.32305152099997],[115.62409968600002,-34.31353001499997],[115.3352966860001,-34.2118454589999],[115.29070278200004,-34.157600463999984],[115.21682737000003,-34.22057722299991],[115.14591211000027,-34.19316487899988],[115.13764956500006,-34.06543724799997],[115.04579161800018,-33.71879190699991],[114.9966090600002,-33.67718957899996]]]]},"properties":{"objectid":353,"eco_name":"Jarrah-Karri forest and shrublands","biome_num":12,"biome_name":"Mediterranean Forests, Woodlands & Scrub","realm":"Australasia","eco_biome_":"AU12","nnh":2,"eco_id":202,"shape_leng":13.3265404355,"shape_area":0.829989573222,"nnh_name":"Nature Could Reach Half Protected","color":"#F5A27A","color_bio":"#FE0000","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":8467.992492406229,"percentage":0.2563422021044229}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.568890561000103,9.321076031000132],[9.600749504000078,9.342313594000075],[9.557958547000112,9.541990645000169],[9.529431578000072,9.86527578900018],[9.557958547000112,9.917572159000144],[9.567467481000108,10.107740611000168],[9.681576532000122,10.264628549],[9.66731254400014,10.321679637000159],[9.567467481000108,10.359712858000137],[9.496223483000051,10.313616246000095],[9.320231511999964,10.307416488000115],[9.253667466000024,10.345449877000135],[9.163331505000087,10.21233335200003],[9.111031446000027,10.198070370000153],[9.096768465000025,10.107740611000168],[9.006431497000108,10.045935139000107],[8.925604470000167,10.031672996000168],[8.944622505000098,10.240858309000032],[8.96839542600003,10.312171206000073],[9.106277566000188,10.383484439000142],[9.115786500000183,10.454797336000127],[9.068241495000109,10.587915202000033],[9.034958466000091,10.611685441000134],[8.935113571000102,10.469059479000066],[8.86379547700011,10.431025923000163],[8.816249467000034,10.321679637000159],[8.840023562000056,10.202825088000054],[8.640332430000171,10.069706217000146],[8.603759504000095,9.934031870000183],[8.52146949900009,9.722648821],[8.374077587000045,9.570515602000171],[8.47867753600002,9.513464513000145],[8.549996468000074,9.541990645000169],[8.630823496000119,9.518218058000059],[8.67836850000009,9.427889473],[8.659350465000102,9.35182185800005],[8.659350465000102,9.194932075999986],[8.754441480000082,9.137882161000107],[8.821004520000088,9.061814713000047],[8.930358517000116,9.066569096000023],[9.015940431000104,9.11411192100013],[9.277441561000046,9.190178531000072],[9.358267583000043,9.256737715000156],[9.500904441000102,9.275754242000176],[9.568890561000103,9.321076031000132]]]},"properties":{"objectid":355,"eco_name":"Jos Plateau forest-grassland","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Afrotropic","eco_biome_":"AF10","nnh":4,"eco_id":82,"shape_leng":5.83578246415,"shape_area":1.09437232204,"nnh_name":"Nature Imperiled","color":"#DEBDAC","color_bio":"#D6C39D","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":13365.690094628624,"percentage":0.2737017589311865}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[86.75134250900004,48.66946186700011],[86.44106255800006,48.627908414000046],[86.20503252300017,48.695227167000155],[86.08406053800007,48.68796810300012],[85.86573760800007,48.62927751400014],[85.55075859500016,48.630796483000154],[85.40709663000007,48.727926480000065],[84.97630351900006,48.72301736700018],[84.88336162400009,48.792068156000084],[84.88923649999998,48.86264763600008],[84.76300855800014,49.01672948000015],[84.5363766480001,49.06017187900005],[84.34024849600013,49.03623048100013],[84.26181751899998,49.09758232400003],[84.07796449600005,49.09227624400012],[83.71042659100004,48.98890407600004],[83.5756305000001,48.914017136000155],[83.49481151900011,48.92693046300019],[83.39186062599998,48.864158893000194],[83.35056265400016,48.77131976000004],[83.20350652100012,48.64804258400005],[83.12895955000005,48.505734129000075],[83.01142850400015,48.43510452400011],[82.8785936110001,48.41655336100001],[82.65978252000014,48.495735189000186],[82.56784058500011,48.45262488100013],[82.41013356800005,48.276953099000025],[82.12806660000007,48.12425276000016],[82.1252286560001,48.04111132100002],[82.22165658400007,47.92521239900003],[82.39923055600019,47.821169679000036],[82.73145265300019,47.74508781400016],[82.84532164600006,47.696904611000036],[83.03205150600013,47.687543702000085],[83.12433659500005,47.714158758999986],[83.3272936520001,47.71214090000012],[83.53314263300012,47.73999983100009],[83.77549765200018,47.698979635000114],[83.98705253000008,47.71869471000008],[84.05729656700015,47.681119644000034],[84.68184659000008,47.59774887600008],[84.85558366100008,47.55046169900004],[85.09378863300003,47.57858667200014],[85.24999964800014,47.65738025000013],[85.61854556100019,47.58774272800008],[85.77587857700013,47.50106026999998],[86.35188262900016,47.29114388700003],[86.5634155460001,47.1848814710001],[86.73338361100019,47.02084444000013],[86.89265452400014,46.91425798000006],[86.9334415350001,46.730982805999986],[86.85928365200004,46.66936760300018],[86.73465765999998,46.63194156700007],[86.51414454000013,46.62805856700015],[85.922698508,46.65227472300006],[85.7836304970001,46.37967846800018],[85.70931252000014,46.31397407000014],[85.51192456700011,46.26391399099998],[85.44255861800002,46.273157051000055],[85.11142751000011,46.24352383799999],[84.88482661300009,46.13647168000011],[84.81594865900018,46.171444835000045],[84.6841125540002,46.073185293],[84.48542054400014,46.09495644800006],[84.55171955500009,46.010693343000014],[84.68995658400019,45.92608289200007],[84.9993975060001,45.87244776400013],[85.0450285870001,45.70014550700017],[85.09236153000018,45.643165329000055],[85.09151462200009,45.50092325800006],[84.78836850900012,45.38718401700015],[84.69922663400018,45.257208862000084],[84.66370362500004,45.104262934000076],[84.5497055510001,45.025599946],[84.07797958300011,44.985712816000046],[84.03831457400014,44.948260963],[83.57079363900004,45.010809910000035],[83.40505960900009,44.980662886000175],[82.93395256100018,45.14917685900019],[82.73910549900012,45.236971930000095],[82.75286858400017,45.058016956000074],[82.6910555680002,44.96971075700003],[82.6037825210002,44.9736777440001],[82.36315953899998,44.898295936000125],[82.44409955400005,44.81230498500008],[82.78215059500008,44.75872668599999],[82.88264458500004,44.67051989600009],[82.78858152600009,44.50869702900019],[82.84333060900008,44.43708707700017],[83.05033159900012,44.29426933800016],[83.27513860100015,44.26140557200006],[83.61190754500007,44.297183223000104],[83.87602952900016,44.27572253300008],[84.02530653000014,44.15353768600016],[84.21345561400005,44.16644246400017],[84.5488816100002,44.22247364300017],[84.9395066290001,44.17320666000006],[85.04706555800016,44.187583636],[85.39394358000015,44.30493547700007],[85.64953664200016,44.162181608000026],[86.01038360900003,44.10375957500008],[86.31434662200013,44.075649689000045],[86.45372057300011,44.078269704000036],[86.80696062800013,44.024814787000025],[87.19168864300008,43.911587178000104],[87.38116458200005,43.84217948700018],[87.48783854900006,43.727070643000104],[87.50024460400005,43.61178024700018],[87.55072059200006,43.54768953300004],[87.67736058800011,43.65864313300017],[87.78247853900012,43.86126441000016],[87.83969156600006,44.15011552300007],[87.95226253700014,44.26990431900009],[88.02730554900018,44.30734242400001],[88.49073762300009,44.35644914500017],[88.82892663000018,44.25026334000006],[89.19975258800014,44.15466270500008],[89.25775954900007,44.15370163600005],[89.37187161700001,44.24279741100008],[89.45359752000007,44.2428352980001],[89.84411659200003,44.10920378900005],[89.98289458900013,44.04803886200017],[90.07185357200018,43.943631194000034],[90.37422150900011,43.812840479000045],[90.57593552900005,43.804417672000056],[90.78324162000007,43.697831883000106],[90.94246660000005,43.65477086100009],[91.05020859000018,43.66227886700011],[91.41931156400005,43.41469085800014],[91.66465758100014,43.37782104500013],[91.84767157600015,43.29742752900012],[92.21173065600016,43.208148861000154],[93.13449856800014,43.04317154900008],[93.57792656000015,43.03656342400018],[93.77326966300012,43.005836708000174],[93.88187364800007,42.948125125],[94.19093352900018,42.84198458200012],[94.5490416250002,42.77083412700006],[94.70777157000015,42.759199207000165],[94.98049958800016,42.77979102800015],[95.378646527,42.92797905300006],[95.54828652500004,43.00563068100007],[95.86565354300012,43.22435678000011],[95.97097064700017,43.191840863000095],[96.06084459800007,43.390531866000174],[96.06084459800007,43.72044072500012],[95.86909464900009,44.10227581000015],[95.15848561400009,44.55525498100019],[94.87978364600013,44.6462470780001],[94.75610363500016,44.73938292999998],[94.65267966700003,44.897665784000026],[94.33419064800012,45.19034893500009],[94.3122406220001,45.34399005900008],[94.37886065900017,45.50610729800019],[94.27531465100009,45.48646112300014],[94.1263276630001,45.50290205800019],[94.05622058600017,45.57125429900003],[93.87096359500003,45.57451234500013],[93.62071952800005,45.65237050300004],[93.31897755200015,45.82055272000014],[93.23344458800011,45.78471756900012],[92.67355357200012,45.95833612000007],[92.3340836430001,45.92182991500016],[92.10068552600006,45.96672506400017],[91.70377357600017,46.11195042200018],[91.54824065700006,46.218949775000056],[91.47216063700006,46.15737279300009],[91.50533252100007,46.050988337000035],[91.12875356000006,46.01644232299998],[91.03105158200015,46.027707433000046],[91.02221655300019,46.12840745100016],[90.93135052000008,46.275189998000144],[90.83295452100009,46.31451235600008],[90.5854186470001,46.35462345000013],[90.42350760300008,46.48460581400013],[90.40748559500008,46.63546649300008],[90.31126352500013,46.71969892000004],[90.25068650500009,46.6999548440001],[90.09457355800015,46.73324893700004],[89.90864551100009,46.92661676100005],[89.73523751300002,46.94079290600013],[89.61473055600004,47.09355275700017],[89.41046156400006,47.140806071000156],[89.21697253700006,47.27705273400005],[88.92263764800009,47.43830077000007],[88.716026585,47.50748047300016],[88.28043366100013,47.62413527500007],[88.03870359600006,47.71711874400006],[87.86786666300009,47.73775683400004],[87.78201250500013,47.86906286800013],[87.41448264700017,48.110260681],[87.09288762900007,48.36294103200015],[86.75134250900004,48.66946186700011]],[[92.23861661600017,43.71759875700013],[92.4528126310002,43.792706477000195],[92.65975964200015,43.8337223150001],[92.90904951200014,44.026897858000154],[93.03915358100016,44.063285879000034],[93.13623865100016,44.03780372000011],[93.288192665,44.042060721000155],[93.67828358900005,43.949849057000165],[93.82301357600005,43.902047398000036],[94.08066556900013,43.72401191900019],[94.15906553300005,43.61960726800004],[94.16431461600013,43.520116592000136],[94.35967263900005,43.453908777000095],[94.52103466900013,43.31927713900012],[94.88026459900004,43.21975964100017],[95.1386416260001,43.132262965],[95.09619164500003,43.029239485000176],[94.93301359200012,43.00587476200013],[94.63641357800003,42.91378513899997],[94.44954659000018,42.89482644700007],[94.25839963500016,42.9373820400001],[94.10662851400008,43.01116961000014],[93.97388464900007,43.04143548900015],[93.88253766200012,43.11642033000004],[93.59410866200005,43.1627920360001],[93.31204957300008,43.16714107000007],[92.94613658400004,43.154604928000026],[92.77340651400016,43.20038587800008],[92.34088857500006,43.252631621000035],[92.17656656000014,43.284277329000076],[91.9382705610002,43.4233379640001],[91.85829161500016,43.52221860600014],[91.87620558600008,43.56126234900006],[92.02517664800007,43.56952824700011],[92.13777159200009,43.6210881830001],[92.23861661600017,43.71759875700013]]]},"properties":{"objectid":357,"eco_name":"Junggar Basin semi-desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Palearctic","eco_biome_":"PA13","nnh":3,"eco_id":827,"shape_leng":52.948669938,"shape_area":35.210626301,"nnh_name":"Nature Could Recover","color":"#B35E37","color_bio":"#CC6767","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":304897.61962394137,"percentage":1.1556953774300671}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-69.67735258399989,77.21927721100019],[-70.14917762499988,77.23961874900016],[-70.91028561499996,77.18737619100017],[-71.19388563299992,77.13240381400004],[-71.37332155999991,77.00461801200004],[-70.88722951399996,76.9340412140001],[-70.92250056199998,76.86347933500019],[-70.45417764799998,76.78431091800019],[-70.08139049199997,76.87931928800015],[-70.00805654999982,76.7626576130001],[-69.40888961199988,76.70125279600012],[-68.75527148399993,76.65568659100018],[-68.18083954299993,76.68762600100018],[-67.97666962399984,76.60485671800012],[-68.39527863299992,76.57041480800018],[-68.73444362799995,76.58318799000011],[-69.0655516029999,76.48068703700011],[-69.61500564099998,76.42123503599998],[-69.41000356699993,76.31400501300004],[-69.12304659699998,76.2787237390001],[-68.50057260399996,76.0859315830001],[-66.96085353399997,75.97002629100007],[-67.40790552599987,76.04730106800008],[-68.03833059199991,76.1081189840001],[-68.20642848699987,76.21441911800014],[-68.65719550599994,76.24303141500013],[-68.2360615319999,76.30719019000009],[-68.06981654099997,76.3969793170001],[-68.25129664699995,76.44294232100009],[-67.79344960299994,76.57395515600018],[-66.96427955299993,76.61589719300014],[-66.98705251399997,76.69094422800003],[-67.21844450599997,76.75239598400009],[-67.31349947999985,76.93297302400015],[-67.64436354099996,76.87583258400014],[-67.82596551999984,76.79188044800014],[-68.41403163299992,76.68706877200015],[-68.76116161499993,76.69119618800005],[-69.02394852899988,76.73905115600013],[-69.24871060399994,76.88768895400005],[-69.16665663399988,76.95489320900009],[-69.68328864699998,77.04207221100006],[-69.94708256299992,77.007790898],[-70.0381465769999,76.91259309700013],[-70.53201250299998,76.88846025600009],[-70.78335560499994,77.02689677500013],[-70.69493054999998,77.10549287600008],[-70.21121259299997,77.19976849900002],[-69.67735258399989,77.21927721100019]]],[[[-72.20639053599984,77.44879987200005],[-72.52749655299993,77.3874096400001],[-72.00834661499988,77.30294687800017],[-71.49804662699995,77.34880343200007],[-71.67444662899993,77.41823509400012],[-72.20639053599984,77.44879987200005]]],[[[-70.81443754599985,77.46102387200017],[-71.29137454299996,77.45325602700007],[-71.04638659999989,77.36934211200014],[-70.06916850299984,77.39296449400018],[-70.81443754599985,77.46102387200017]]],[[[-69.61397550499993,77.21748449000012],[-69.00623354499999,77.13517285900008],[-69.00132761699996,77.02689677500013],[-68.42780259699998,77.1236970280001],[-67.92944363499998,77.15709287700008],[-67.61383061399988,77.12260604000011],[-67.41539760599989,77.04404849600007],[-66.96755251899992,77.02290665400017],[-66.56858851199996,77.06180371400012],[-66.01754761199987,77.16157250200007],[-65.47576150699996,77.30371046900018],[-65.30818161399998,77.44648043200016],[-65.72940057899996,77.59543188000009],[-66.5377504839999,77.7227291850001],[-67.81100449299998,77.70312810500008],[-67.9989165369999,77.63487024400007],[-68.5067906349999,77.74951020400005],[-69.35034956199996,77.82452052600019],[-69.58613551599996,77.92494561700005],[-69.49456054199987,77.97852207200015],[-70.06063052899987,78.02400429000016],[-70.33945453899997,77.98065124300001],[-70.70004250499989,78.04690934900003],[-71.01764656299997,78.02842909700007],[-71.29553950999991,77.94673571500016],[-71.43749961399988,77.78799537700013],[-71.20223249899982,77.75826979600004],[-70.67028054599996,77.77909916000004],[-70.52084361699997,77.83771196500015],[-70.06665762099993,77.84715786700013],[-70.70861048599994,77.69381128400005],[-70.28332562699995,77.6557535880001],[-70.28778060799993,77.56909342600005],[-69.20666463099991,77.44851002600006],[-68.63695555599992,77.50797812000013],[-67.58111554299995,77.52047553800014],[-67.29777553199995,77.55990786600017],[-67.15610460399995,77.66742773500016],[-66.80973050199992,77.68047483800007],[-66.25139650799991,77.60242087900008],[-66.06417060699994,77.49712841700011],[-66.10194348699997,77.43740149000018],[-66.65666152699993,77.414908652],[-66.54526553099998,77.3321386990001],[-67.31443758199993,77.37851342300007],[-68.35834461499996,77.37184444500019],[-69.10166955899996,77.27100780300009],[-68.54055763499997,77.16516615900014],[-69.61397550499993,77.21748449000012]]],[[[-65.62390862799998,79.13642349100013],[-66.34751162399994,79.13891844800008],[-67.0066755549999,79.11251847000011],[-67.19332863699992,79.14615136000003],[-67.73083460699996,79.08308240000014],[-68.34055352299998,79.06223711000001],[-69.04695852999993,78.9722270360001],[-69.00279260599996,78.89529491200011],[-69.29499849099989,78.81527237900013],[-69.84333052699998,78.7994480160001],[-69.97084056499995,78.7527829440001],[-70.70029463299988,78.69917530900005],[-70.8088754829999,78.61498697000019],[-71.31527755099995,78.64166153900004],[-71.63500960699997,78.62386776400007],[-71.8861235469999,78.55942584800005],[-72.55221562399998,78.52026928500004],[-72.58555564899996,78.4185924410001],[-72.82166262999993,78.35080832500006],[-72.65638759299998,78.28664066500016],[-71.8355716189999,78.376604805],[-69.89682752199997,78.32969649000006],[-69.63365956599995,78.34629198800008],[-68.86785150799989,78.47981537000015],[-68.16154456899989,78.56089854900011],[-67.44195549899996,78.60606761900016],[-67.02470351999995,78.66410861100013],[-66.94494652599991,78.71529018800015],[-67.24548351999994,78.82776996400008],[-67.11199953299985,78.894440293],[-66.7204136119999,78.9510005370002],[-66.21054864399991,78.97575280000018],[-65.66873957299993,78.95561024900007],[-65.4763415349999,78.996864803],[-65.62390862799998,79.13642349100013]]],[[[-19.90831749499995,80.05841540600017],[-19.01890151099991,80.16288526800014],[-19.44168655099986,80.23843639100016],[-19.789442493999957,80.23565879600011],[-20.012481584999932,80.09203371100006],[-19.90831749499995,80.05841540600017]]],[[[-62.78638461999998,81.21906642500011],[-63.06334248199994,81.21573981500018],[-63.81221758699991,81.11461232100004],[-63.948886529999925,81.05015515000008],[-64.76082657199993,80.98765012500013],[-64.73416859899993,80.91209933800013],[-65.03250148899997,80.88432640400009],[-65.06333163699998,80.79375859900011],[-65.98638151699998,80.669299239],[-66.44470951499994,80.56457004100014],[-66.71584363099998,80.55428527800012],[-66.7886045859999,80.45651607700012],[-67.41972350599997,80.347896],[-67.50306661399992,80.20372072700013],[-67.08222148099998,80.13816385100006],[-67.06695551999996,80.05925594400009],[-66.38889358299997,80.10093009600013],[-66.10583453399994,80.02287613700014],[-65.7691576229999,80.0114769160001],[-65.22748551099994,80.08565508300006],[-64.95111857299992,79.95675415300019],[-65.04018350299998,79.88954319099997],[-64.19286361499996,79.89538722200012],[-62.60400060899997,79.95631276200015],[-62.14611852799999,80.01213288400004],[-61.608184577999964,80.01594044700005],[-61.211540513999864,79.97032059800011],[-60.49294251999993,79.99665905300003],[-59.61935860999995,80.18842308300003],[-59.531166570999915,80.27372520900019],[-60.005264617999956,80.40196195800007],[-60.77681360899993,80.5193858830001],[-61.576396545999955,80.70454145399998],[-62.02211363499998,80.95571876200017],[-61.67894762199995,81.05461097000011],[-61.30538547599997,81.00488633500004],[-60.823009629999945,80.840461055],[-60.30201751799996,80.81035376199998],[-61.03630459099992,80.98919977100013],[-61.25111751399993,81.1201663380001],[-61.61167564099998,81.07405162100008],[-62.21304651699984,81.19460467900007],[-62.78638461999998,81.21906642500011]]],[[[-20.773050450999904,81.7254808990001],[-20.81721151399995,81.626581482],[-20.206663459999902,81.66604331500008],[-20.773050450999904,81.7254808990001]]],[[[-18.585552589999963,81.64603805900003],[-18.30584143999988,81.66631790600013],[-18.835557436999864,81.80799084500012],[-19.14418447599985,81.74325824500005],[-18.585552589999963,81.64603805900003]]],[[[-19.748603514999843,81.87243376700008],[-19.885824489999948,81.97410926999999],[-20.478342566999913,82.16885625200013],[-20.745820496999954,82.06495233600009],[-20.245552472999975,81.89967243700016],[-19.748603514999843,81.87243376700008]]],[[[-51.241359548999924,81.98192304700018],[-51.84693562599995,82.1374671980002],[-52.54278161499991,82.2196876340002],[-52.558063499999946,82.2752482520001],[-53.07693448799989,82.32887214800019],[-53.345012561999965,82.19856775200014],[-53.16443652799995,82.10523794200003],[-51.93444051599994,81.9796805530001],[-51.241359548999924,81.98192304700018]]],[[[-46.00304758099986,82.64389692700013],[-46.61555046199993,82.67499613500007],[-47.559169531999885,82.64360674600005],[-46.997497528999986,82.38470735800001],[-45.55222356499996,82.19969679400015],[-45.07665650699988,82.05523150800013],[-44.73721658499994,82.09524386400017],[-45.0672265309999,82.21608559400005],[-44.461933594999834,82.34442158500019],[-44.43888453499994,82.39638100200011],[-44.962772593999944,82.50527617400013],[-46.00304758099986,82.64389692700013]]],[[[-47.56861157799989,82.78195274000018],[-47.84943349799994,82.86972819800008],[-48.413028476999955,82.86057247700006],[-48.29109961399996,82.78306652700002],[-47.56861157799989,82.78195274000018]]],[[[-39.570564524999895,82.99612595700006],[-39.277481556999874,83.08086297400007],[-40.11197260599994,83.16419853800016],[-40.36331151699994,83.08254321100009],[-39.570564524999895,82.99612595700006]]],[[[-32.52226253899988,83.6220110490001],[-33.688610568999934,83.60368318000019],[-34.08140951899992,83.56590024200005],[-34.813323506999836,83.59646418200009],[-35.199462531999984,83.5345098470001],[-36.53113153299989,83.54339097700006],[-37.21002160199993,83.449222809],[-37.95053056199998,83.48700591400006],[-38.07580950399995,83.39199737700005],[-38.79918250099996,83.43283250000019],[-38.85084553499996,83.26032019200005],[-38.70943846899996,83.2100391670001],[-37.798866560999954,83.17753565500016],[-37.82721751099996,83.12197403000005],[-38.65386946899997,83.07781212900016],[-38.67418250799983,83.03836488100012],[-39.44694855199998,82.95724381600002],[-40.55333747599997,82.96696397400012],[-41.569454476999965,83.13003071600019],[-41.97694354999987,83.22087344700014],[-42.65109650199997,83.27199417200012],[-43.231948478999925,83.20892487600014],[-44.26471361599994,83.162534898],[-45.13581447099989,83.1597568000002],[-45.48220047599989,83.10253287600017],[-46.49667747299992,83.04836030100012],[-46.88999157399991,82.96058517800009],[-46.04556260499993,82.84584631100006],[-43.800266492999924,82.8369641760001],[-42.66805661299992,82.85417842600015],[-41.603881467999884,82.82169016900008],[-40.723331524999935,82.74027875500002],[-40.13528452299994,82.71389336200014],[-39.86860253799995,82.62888058000016],[-40.011966609999945,82.55943332700014],[-40.605846578999945,82.56999368700014],[-41.379741496999884,82.72167696500014],[-42.57194853699997,82.77974042000005],[-44.21585449599985,82.76196307400016],[-45.60778451899989,82.78167831600018],[-45.66972359899995,82.72445305200006],[-44.57609159599997,82.55192498600019],[-44.43830852999997,82.48971064500017],[-43.73029352699996,82.40608691099999],[-43.83028460299994,82.33525027400015],[-44.70861049099989,82.25220573000013],[-44.793884620999904,82.18301764500006],[-44.51721559899994,82.11022886300003],[-44.92526659499998,81.98911086499999],[-44.522792581999965,81.93744045500011],[-44.289154574999884,81.80799084500012],[-45.134445537999966,81.78105727600018],[-45.95331959299995,81.96383959400009],[-46.39276550999995,82.09718075400019],[-47.60278359199998,82.17550980700003],[-47.942230553999934,82.28275692900007],[-48.76364147599992,82.3605361290002],[-49.12084952299989,82.46109885000004],[-49.61029047599993,82.50277350500005],[-50.370830507999926,82.51777375900008],[-51.10226052499996,82.50197320100011],[-50.864467607999984,82.37358356700008],[-50.67695957199993,82.17662443200015],[-50.11446362799995,82.0377284180002],[-49.43721356299994,81.92382874700007],[-49.82054850499992,81.86965583600016],[-51.0655554999999,81.93161201500016],[-51.91029761699997,81.92327872700008],[-52.76248554599994,82.03135012500007],[-53.02806849499996,82.01134436600012],[-52.930835568999896,81.86243750900007],[-53.5405575019999,81.675474129],[-53.81945761899982,81.69714252200009],[-53.581935604999956,81.80660313700008],[-53.49998456399993,81.944108594],[-53.568351557999904,82.12162724500007],[-54.07166657099992,82.31358070700014],[-54.501121594999915,82.36487024300015],[-55.34196461799996,82.29830569400008],[-55.349998504999974,82.24636086100014],[-56.08805458399996,82.25776058500009],[-57.07694246999995,82.18634341700005],[-58.589706511999964,82.10273644700004],[-59.373886527999844,82.01273240900014],[-59.41001152499996,81.97606258800016],[-58.468891603999964,81.86605480300005],[-58.3366585309999,81.75021639800013],[-57.81362156999995,81.65159291400005],[-58.43027852299997,81.64104747300013],[-58.748050553999974,81.70799323100005],[-58.84001159899992,81.85549477800015],[-60.06248854099988,81.944108594],[-61.21805157699998,81.8174528400001],[-61.453323552999905,81.73604058800015],[-60.7791675819999,81.50686678200009],[-61.30832249499991,81.35935081800011],[-61.0950166369999,81.22350682200005],[-60.45415459299994,81.32237656700016],[-59.81946950799994,81.32683171600013],[-59.293102583999826,81.42877527200011],[-58.9461746049999,81.36799507500007],[-58.205589537999856,81.36420327000013],[-56.9577715879999,81.24143722200017],[-56.04206458999994,81.26002342200002],[-55.73276548999996,81.20088507100013],[-55.258789483999976,81.22099711300012],[-54.19600657299992,81.20465391000016],[-53.33470147999998,81.30057691300016],[-52.81119949099991,81.26156502100014],[-52.462985560999925,81.17974171999998],[-52.10220346999989,81.181359595],[-51.31196249899995,81.2476031170001],[-50.77861059999998,81.2426888080002],[-49.829891476999876,81.34259589700014],[-49.82715260699996,81.43215485600012],[-50.15162261699993,81.57935934800014],[-49.328231553999956,81.64342776600017],[-48.56212258599987,81.37419064300008],[-47.959823497999935,81.3321956310001],[-46.74196649399988,81.39477676400008],[-46.50548551199995,81.43941140500004],[-46.065002585999935,81.34335060300009],[-45.18662657399983,81.41805498600002],[-45.0050735449999,81.46316270100004],[-44.91611858599998,81.60805512900004],[-43.994762520999984,81.71466070000002],[-43.88095454899991,81.78935804200006],[-43.263736510999934,81.85969830300007],[-43.13276256899991,81.98933197899999],[-42.24105061299997,82.12788366500013],[-41.957309611999904,82.19377581800012],[-42.38914459299991,82.30346458800005],[-42.05978055799994,82.35250207500019],[-41.24967950599995,82.26595540400018],[-39.8566554759999,82.22582167800005],[-38.77475361199993,82.10171335200005],[-38.57946750499991,81.97195830600003],[-38.025440467999886,81.92343865300012],[-37.6146314909999,81.95616478800014],[-37.7108074599999,82.04477843600012],[-36.84102658699993,82.07233813400012],[-36.688529592999885,82.00488879200014],[-37.12280655799998,81.94223305900016],[-37.32545448999997,81.80127593499998],[-36.47391146499996,81.75582439400011],[-35.09853352099992,81.8363813570001],[-34.85094048299993,81.78316314500006],[-35.86284658299985,81.731378238],[-36.20028356499995,81.65169148500007],[-36.14278052399993,81.53544119300011],[-35.69183346199998,81.48783952700006],[-34.84484046899996,81.5190300970001],[-34.29314058399996,81.61727270800003],[-34.00239951999998,81.72139019500003],[-33.620998449999945,81.7602507100001],[-32.61523460899991,81.44067724000007],[-31.775741574999927,81.38800133700005],[-30.874896529999887,81.35518484500011],[-29.88182255499993,81.36920827200004],[-27.80546956899991,81.47781326200015],[-27.35688251499994,81.43861026200011],[-28.80859545699991,81.27524613100002],[-29.62138760299996,81.12417976100011],[-29.92992059799991,81.02416689200004],[-29.74664659699988,80.79774134400003],[-29.45298745699995,80.75731844300003],[-29.223800574999927,80.64061737200018],[-28.518562495999902,80.59418950800011],[-28.013650562999942,80.61796511100005],[-26.955667463999816,80.4981893910001],[-27.49270857399995,80.35103938100013],[-26.27413944299991,80.30678511200006],[-25.590629603999957,80.168249184],[-25.42337744299988,80.02728602400003],[-25.06709660199988,79.87434361600015],[-24.988731506999898,79.78727223800018],[-24.32863450299982,79.62856894800018],[-23.861579601999892,79.58964875400011],[-23.262174450999964,79.58592534500013],[-21.544301548999954,79.64678215300017],[-21.171565522999913,79.69581176000014],[-20.862409584999966,79.789292612],[-20.46528657999994,79.98896899200014],[-20.043334532999893,80.23481993500008],[-19.597490540999956,80.28539131000008],[-19.08222159199994,80.24037428700007],[-18.31141255599988,80.210663458],[-17.428598492999924,80.22566471699997],[-16.90861556199991,80.25983052800007],[-16.617790511999885,80.32567758600004],[-16.607797438999967,80.40289234900007],[-16.125270550999915,80.4967865960001],[-16.21276454499997,80.53789681400019],[-17.04001446799998,80.56539431800019],[-17.53303750999993,80.62568719100005],[-17.86137543299992,80.56902619600015],[-18.547759593999956,80.5442903620002],[-18.891111517999946,80.58402645000012],[-20.12692859399982,80.643463531],[-20.05164351299993,80.6870767530001],[-19.365829488999907,80.64097695600009],[-18.67721959799991,80.61874278400018],[-17.996944502999952,80.72541004600004],[-17.06582050399993,80.73958535300011],[-16.638610488999916,80.70569363100003],[-16.004995436999934,80.727911877],[-15.938622498999905,80.81458779600018],[-15.054723482999975,80.867081644],[-14.69666048099998,80.91348754800003],[-15.140264492999961,81.08822894000008],[-14.949737463999952,81.13545777900009],[-13.975005438999972,81.15073329500012],[-13.668888444999936,81.27351325600011],[-13.19888344899988,81.32741174400013],[-13.113349479999954,81.40296269900017],[-12.60390645699988,81.4749134590001],[-12.165838524999856,81.60852887400006],[-12.534985587999927,81.64104747300013],[-13.16917546999997,81.78021824700011],[-13.910282561999963,81.8216181430002],[-14.768066584999872,81.91772471000013],[-15.663048488999948,81.9007862250001],[-15.99946354899987,81.92772012900019],[-16.883073556999875,81.91244444600005],[-17.784187492999877,81.73715437499999],[-18.06525852299984,81.5693716400001],[-17.967491500999927,81.47518771400019],[-18.395578597999872,81.44851348100013],[-18.994691556999953,81.5449109],[-19.49528144599998,81.56157378800009],[-20.305540580999946,81.45046763800013],[-20.19609253899995,81.59632029700009],[-20.76918756699996,81.57993149700013],[-21.448326578999968,81.41379714700008],[-21.759454442999925,81.24517521500013],[-22.090568451999957,81.20434109800004],[-23.032796461999908,80.93848322200017],[-23.579729557999883,80.86209223300011],[-23.90806044099992,80.88266293200013],[-23.005834560999915,81.16100297000014],[-22.231094579999876,81.4651929650002],[-21.973607542999957,81.73243922000006],[-22.031118462999927,81.95079282699999],[-22.301376501999982,82.08384313400012],[-23.514999472999875,82.04856353600013],[-24.03722154499991,82.00246273400012],[-24.21056550599991,81.70771830500018],[-24.922521511999946,81.69325130800019],[-25.135847485999932,81.64243635500009],[-26.54750046299995,81.49269147500007],[-26.9891605439999,81.40685391300008],[-27.5969274819999,81.50409036100018],[-26.865543564999882,81.55852193700008],[-25.317501600999947,81.77548800400012],[-25.238874486999975,81.99577984200016],[-27.370004551999955,82.02411620700019],[-28.997217447999958,81.99384077300004],[-30.782205588999943,81.86826729000006],[-31.71555347499998,81.82383046300009],[-32.41138454399987,81.7332629930001],[-33.05194852799997,81.67854090000003],[-33.049457593999875,81.81827560800014],[-32.77221659099996,81.85993601400008],[-29.240262464999944,82.13607798200019],[-28.010822507999876,82.18552132000019],[-26.163904507999916,82.14357023000014],[-25.068889490999936,82.15190301500007],[-23.696655598999882,82.29496533800011],[-23.04999545599992,82.28940998100006],[-22.518060601999878,82.326369312],[-22.3077544599999,82.42053831800013],[-21.398616527999934,82.55554194500002],[-21.364452560999894,82.62444018300005],[-21.798072552999884,82.6941621950001],[-24.025556450999943,82.86501287400006],[-25.13358655199994,82.89168677200013],[-24.7675285549999,82.98835878200003],[-25.188341501999957,83.16280898600013],[-26.611915556999975,83.0625210230001],[-28.26221053699993,83.07976528000017],[-28.06027758099998,83.13837825300016],[-26.868894481999973,83.14782499300014],[-26.03889244499993,83.20614761700017],[-25.6719474759999,83.27698341600012],[-26.09996248899995,83.36921603400009],[-27.432861449999848,83.4661297780001],[-28.39194144399994,83.46228550200016],[-28.613061581999887,83.5111773110001],[-29.856941545999973,83.57812256600005],[-30.84446150499997,83.5725687170002],[-32.52226253899988,83.6220110490001]]]]},"properties":{"objectid":359,"eco_name":"Kalaallit Nunaat High Arctic tundra","biome_num":11,"biome_name":"Tundra","realm":"Nearctic","eco_biome_":"NE11","nnh":1,"eco_id":418,"shape_leng":443.266127681,"shape_area":80.5619614613,"nnh_name":"Half Protected","color":"#6AFBEE","color_bio":"#9ED7C2","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":148332.5437391692,"percentage":1.7358671091571016}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[22.976662198000042,-20.34813747599992],[22.90851126800004,-20.296524612999917],[22.935055128000045,-20.245711855999957],[22.888567020000096,-20.128458965999982],[22.78390798000015,-20.013302782999915],[22.64970774400018,-19.95837660299992],[22.38618953800011,-19.94302051699998],[22.33539995900003,-20.003510050999864],[22.28553227599997,-19.89902733799994],[22.160650224000108,-19.86295444299998],[22.09401253200008,-19.663337555999874],[22.066696678000028,-19.494787773999917],[22.110876428000097,-19.348671940999964],[22.21313368200009,-19.209792968999864],[22.23552593100004,-19.033769277999966],[22.209730044000025,-18.942016993999857],[22.06827286400005,-18.7329584229999],[21.705458904000068,-18.93606721699996],[21.46724403600018,-19.136264542999925],[21.100210653000033,-19.284201467999935],[20.99580403200008,-19.305142262999937],[20.81416561600014,-19.247149435999972],[20.60516085900008,-19.245636265999906],[20.533870966,-19.166623889999926],[20.008526739000047,-19.165696417999925],[20.005324423000104,-19.220901249999883],[19.92508961600015,-19.262089755999966],[19.84994402500007,-19.25735866499997],[19.777006768000092,-19.340915172999928],[19.51557671600017,-19.34230900499989],[19.39326124900009,-19.16400027599991],[19.156859941000164,-19.167935610999848],[19.13102517400017,-19.24259058699988],[19.006681186000037,-19.313991018999957],[18.913384895999968,-19.305769049999924],[18.815736870000137,-19.33522199299989],[18.681481484000074,-19.343449608999947],[18.664077903000077,-19.47598268099989],[18.41553044800014,-19.680709865999916],[18.2231084390001,-19.739057529999968],[18.056799763000072,-19.83467837099994],[17.74810226500017,-19.862707087999922],[17.671354673000167,-19.932497566999928],[17.42002047700015,-20.092011563999904],[17.289493314000083,-20.20489992099982],[17.151910629000156,-20.282510665999837],[17.060188838999977,-20.360121411999955],[17.056661078000047,-20.430676634999884],[17.10604973400018,-20.50475961899997],[17.190716002000045,-20.536509469999885],[17.34593749300018,-20.465954245999853],[17.586430427000096,-20.272581190999915],[17.779968568000072,-20.23936044499993],[18.03751185600015,-20.30316710099993],[18.22891836000008,-20.383341802999894],[18.493383305,-20.564670327999977],[18.599603425,-20.713218646999962],[18.66489628700009,-20.856095315999937],[18.823418975000095,-21.027779505999888],[18.925973415000158,-21.108512724999912],[19.154529055000012,-21.2484542549999],[19.409527055000183,-21.385737880999955],[19.77213365500006,-21.498391010999853],[20.009475042000076,-21.4534366179999],[20.127831179999987,-21.44836240199993],[20.213961349000158,-21.50329996599993],[20.335859338000148,-21.517081194999946],[20.53951305700008,-21.59550649499994],[21.030926574000034,-21.737014910999903],[21.488473505000172,-21.52427814899994],[21.586571472,-21.48802882399991],[22.024219557000094,-21.250273762999882],[22.09372726700019,-21.163602162999894],[22.101513102000013,-21.10714657099993],[22.16987991900004,-21.044731404999823],[22.25491151900013,-20.86554450199992],[22.42012538400013,-20.842564494999976],[22.44790130000007,-20.636387120999927],[22.633481153000105,-20.564581183999962],[22.757315186000028,-20.482389212999976],[22.804732962000116,-20.48032025799995],[22.90831704400017,-20.370752626999888],[22.976662198000042,-20.34813747599992]]]},"properties":{"objectid":360,"eco_name":"Kalahari Acacia woodlands","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Afrotropic","eco_biome_":"AF07","nnh":1,"eco_id":47,"shape_leng":17.2540923739,"shape_area":9.20273673587,"nnh_name":"Half Protected","color":"#FBA141","color_bio":"#FEAA01","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":106955.66489411693,"percentage":0.49888327938514665}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[18.2231084390001,-19.739057529999968],[18.077591564000045,-19.739036073999955],[17.973632558000077,-19.718244284999855],[17.798981428000047,-19.780619675999958],[17.512054572000125,-19.730719353999973],[17.211884449000138,-19.830615140999896],[17.16706666000016,-19.766589728999975],[17.192676825000035,-19.632136362999972],[16.840537056000073,-19.683356692999894],[16.795719267000095,-19.805004975999964],[16.654863358000057,-19.805004975999964],[16.61644810900009,-19.843420222999896],[16.590837943999986,-19.965068505999852],[16.398761701000183,-19.97787358799991],[16.257905787000027,-20.112326952999865],[16.168270204000066,-20.105924410999933],[16.00180411800011,-20.189157445999967],[15.891383259000122,-20.187301681999884],[16.01344078900007,-20.303537245999905],[15.926563206000083,-20.35421583599998],[15.93380300400014,-20.45557301699995],[15.846925421000151,-20.607608787999823],[15.745568240000068,-20.730685363999896],[15.760047837000059,-20.904440530999977],[15.618356139000014,-20.98267876199992],[15.770907535000106,-21.199462324999843],[16.02430048700012,-21.35330804599988],[16.23244469700012,-21.73339747299991],[16.07859897700007,-21.860093948999918],[16.1781462080001,-21.950591431999953],[16.4586884040001,-22.00488992199996],[16.68493211100008,-22.113486900999874],[16.531086390000098,-22.25828287299987],[16.40438991500008,-22.213034131999905],[16.350091425000187,-22.249233124999932],[16.368190922000167,-22.37592960099994],[16.196245704000034,-22.54787481799997],[15.997151242000086,-22.70172053899995],[16.060499480000033,-22.90986474899995],[16.313892432000046,-22.98226273599994],[16.350091425000187,-23.099909462999904],[16.411516799000026,-23.19643505199997],[16.74395755,-22.925245718999975],[16.832665583000107,-22.942987324999933],[17.040722408000022,-23.350144635999925],[17.199031594000132,-23.37550202899996],[17.31417722599997,-23.456874608999954],[17.36770489700018,-23.54488159999994],[17.482856055000127,-23.671462480999878],[17.71477651300006,-24.063716211999974],[17.76079580700008,-24.25699724699996],[17.880445970999972,-24.303016540999977],[18.000096135000092,-24.385851269999876],[18.018503853000084,-24.56072458699998],[18.138154016999977,-24.533113010999955],[18.294267468000044,-24.69568341099989],[18.332350501,-24.713711866999972],[18.861864906999983,-25.244560089999936],[19.049105175000022,-25.48864474499993],[19.184684807000053,-25.68348840099992],[19.439008213000136,-25.98127829599997],[19.56780941700015,-26.18733402499987],[19.729606179000086,-26.41243410899989],[19.62152577100005,-26.37983468999994],[19.4173430030001,-26.21162751999998],[19.347640037000133,-26.237481623999884],[19.42574570700009,-26.313082321999957],[19.642976997000176,-26.473411666999937],[19.729370820999975,-26.573879153999883],[19.80618905100016,-26.59117395199985],[19.999443054000096,-26.588373964999903],[20.028463364000174,-26.650806426999964],[20.197708130000137,-26.715896605999944],[20.285429001000125,-26.81946372999994],[20.30176544200009,-26.920383452999943],[20.345016479000094,-26.97114372299984],[20.25417137100004,-27.039724349999915],[20.13660812400002,-27.019042968999884],[20.17393684400008,-27.14210128799988],[20.075336456000116,-27.29619216899988],[20.113073349000103,-27.47088050799988],[20.278044675,-27.565646723999976],[20.430734900000118,-27.741489500999933],[20.48781013500019,-27.918140410999968],[20.650718689000144,-28.07390594499998],[20.733898163000106,-28.04235076899994],[20.650122299000145,-27.951716851999947],[20.63345035100008,-27.847961350999867],[20.770215988000075,-27.906032561999893],[20.844761327000015,-27.909699726999918],[20.882890701000065,-27.836305617999926],[21.262161255000137,-28.10892105099998],[21.320327759000122,-28.234056472999953],[21.41898727400013,-28.359767913999917],[21.545629501000064,-28.38177299499995],[21.71558380100015,-28.45536231999995],[21.766090393000013,-28.51821327199997],[21.77784919700008,-28.637405395999963],[21.823820114000057,-28.669527053999957],[21.886350632000074,-28.785953521999943],[22.056930542000032,-28.840639113999828],[22.181861877000188,-28.96786308299994],[22.26510810900004,-28.9881820679999],[22.386854172000085,-29.12234878499993],[22.44397735600012,-29.148096084999963],[22.489883423000094,-29.233322143999942],[22.589517593000153,-29.191738128999873],[22.597534180000082,-29.09487914999994],[22.722980499000187,-29.111581801999932],[22.824632645000065,-29.075618743999883],[22.939052582000045,-29.07708167999988],[22.991308212000035,-29.12892150899995],[22.98367118800013,-29.2121620179999],[23.048458099000072,-29.284481048999965],[23.096473694000167,-29.166311263999944],[23.16017913800016,-29.091325759999904],[23.236064911000028,-28.94198226899988],[23.31522560100018,-29.099843978999957],[23.40213012700019,-29.120443343999852],[23.436258316000192,-29.198020934999874],[23.55859756500007,-29.10607719399991],[23.589281082000184,-29.04414558399992],[23.74102020300012,-29.05115127599987],[23.784172058000138,-29.279674529999966],[23.848812103000114,-29.355068206999874],[23.89790916400017,-29.503658294999923],[24.09360885600006,-29.55700492899996],[24.008563994999975,-29.464813231999926],[24.166194916000165,-29.44872283899997],[24.155513763000044,-29.366003035999938],[24.014854431000174,-29.368373870999903],[23.97059822099999,-29.29417228699998],[23.94422531100014,-29.10245895399987],[24.0491199490001,-29.10288238499993],[24.142555237000067,-29.065660476999938],[24.295623779000096,-29.123773574999973],[24.261438370000178,-29.214170455999977],[24.312334061,-29.259748458999923],[24.38981819200012,-29.24075698899992],[24.47261810300006,-29.303806304999966],[24.542505264000056,-29.27418136599988],[24.57332420300014,-29.178983687999903],[24.524362564000114,-29.125570296999967],[24.520572662000063,-29.03634262099996],[24.727426529000127,-29.01333427399993],[24.865386963000162,-29.05221939099988],[24.90668869000001,-29.008197783999947],[25.108505249000018,-29.057546615999968],[25.126773834000176,-28.925821303999953],[25.025676727000132,-28.905277251999905],[25.03898429900005,-28.843221663999884],[25.13643073999998,-28.811082839999926],[25.23795318600014,-28.726585387999876],[25.313667297000165,-28.818288802999916],[25.36973762500014,-28.762773513999946],[25.297573090000185,-28.68105697599998],[25.317651749000163,-28.502687453999897],[25.227506638000023,-28.451585769999838],[25.293634415000156,-28.349292754999965],[25.437244415000123,-28.263641356999983],[25.529823303000114,-28.27729415899995],[25.588180542000032,-28.03929901099997],[25.492380142000115,-28.004114150999953],[25.44138526900008,-27.94915199299993],[25.49938201900011,-27.89608192399993],[25.604120255000055,-27.996231078999983],[25.705694199000163,-27.957798003999926],[25.885126114000116,-28.00712585399998],[26.003068924000104,-28.000473021999937],[26.07097672500015,-27.915480979999984],[26.23778152500006,-27.92875099199989],[26.229742050000027,-27.771078109999905],[26.27510643000005,-27.73591995199996],[26.22065925600009,-27.610443114999953],[26.134880066000107,-27.588191985999913],[26.025385651000192,-27.669664495999882],[25.74331092800014,-27.53348731999995],[25.817411423000067,-27.44583702099993],[25.911684036000167,-27.452543258999924],[25.96347236600019,-27.3614978789999],[25.793066025000087,-27.36040115399993],[25.770790100000056,-27.259378432999938],[25.67787933300019,-27.21595001199995],[25.564287186000172,-27.260068892999925],[25.55356407200003,-27.36906623799996],[25.46822547900001,-27.33458900499994],[25.461912155000107,-27.20191001899991],[25.415111542000147,-27.073205947999952],[25.341508865000037,-27.142889022999952],[25.236118317000148,-27.05434417699996],[25.239675522000027,-26.948183059999963],[25.185146332000045,-26.86424827599984],[25.110660553,-26.844373702999974],[25.23854255700013,-26.69215393099995],[25.120014191000166,-26.62388229399994],[25.08985900900018,-26.51296615599989],[25.213333130000024,-26.450893401999963],[25.321422577000078,-26.45009231599994],[25.286283493000155,-26.145486831999904],[25.355491638000103,-26.115306853999982],[25.38534545900012,-26.041887282999937],[25.4599437710001,-25.98815154999994],[25.40275764500018,-25.94131660499994],[25.54614067099999,-25.894371032999913],[25.574045181000088,-25.82956695599995],[25.703815460000044,-25.759037017999958],[25.74960136400017,-25.706899642999872],[25.842975616000047,-25.72693252599987],[25.84715080300009,-25.606346129999963],[25.674379349000162,-25.615942000999894],[25.735279083000023,-25.360385894999865],[25.69029617300015,-25.37393951399997],[25.58155441300005,-25.637720107999883],[25.342472076000092,-25.768367766999972],[25.19741685000008,-25.76033148399995],[25.17432402000003,-25.654054616999872],[25.082891576,-25.66589444199991],[25.07773578600012,-25.601627031999953],[24.89010169200003,-25.404524597999966],[24.707844366000188,-25.366166103999944],[24.650941439000178,-25.294186411999874],[24.661790054000107,-25.237050332999956],[24.592009606000147,-25.19890618399984],[24.657387866000192,-25.108446302999937],[24.785132005000037,-25.065127695999877],[24.862116403000073,-24.925054574999933],[24.688984569000183,-24.841098444999886],[24.573597017000168,-24.8530462679999],[24.424011569000186,-24.83700225599989],[24.350185624000062,-24.79220736499991],[24.381458442000167,-24.714562444999956],[24.478883551000138,-24.699636347999956],[24.542756046000022,-24.737241270999846],[24.631663509000077,-24.71657731799985],[24.77327937200016,-24.767910676999918],[24.964279313000134,-24.742410091999943],[25.046381577000147,-24.763308815999835],[25.079403825000043,-24.676627557999836],[25.225795039000047,-24.705604405999907],[25.225273231000017,-24.596585927999968],[25.27980483700003,-24.580629851999902],[25.33265326500009,-24.44601505099996],[25.405408288000046,-24.381346768999947],[25.508328547000133,-24.360851844999956],[25.45799999800016,-24.281812426999977],[25.546692422000092,-24.196620855999868],[25.516499605000092,-24.105465429999867],[25.64053313200003,-24.047497716999942],[25.756757162000156,-24.10612657699994],[25.826887678000162,-24.02172394999991],[25.858419061000063,-23.90344715799995],[26.011253519000093,-23.85684606199993],[26.17645648200005,-23.702954460999877],[26.049707709000188,-23.70342560099988],[26.07095573400011,-23.58191728099996],[25.931333219000123,-23.604047861999902],[25.841975756000124,-23.58941068699994],[25.72745674400005,-23.784482177999905],[25.78363183700003,-23.522070020999877],[25.642565886,-23.488209852999944],[25.630907779999973,-23.407019202999948],[25.851192245,-23.182536209999967],[26.006117856000174,-23.237661011999876],[26.08190876200007,-23.22979965199994],[26.078931654000087,-23.117216984999914],[26.145216499000128,-23.070350135999945],[26.002677778000077,-23.00317125999993],[26.00138531099998,-22.933568068999875],[26.076676799000154,-22.90921793699988],[26.068279330000166,-22.8341818909999],[26.30198004900018,-22.84614193599998],[26.333295324000176,-22.865624589999925],[26.488623924000137,-22.82163007899993],[26.442683256000066,-22.780797860999883],[26.342278944000043,-22.81997189699996],[26.283129124000027,-22.74241905799994],[26.26881007100019,-22.647390805999862],[26.35495383300008,-22.588637303999917],[26.380028270000082,-22.508274703999973],[26.470322667000175,-22.497240958999953],[26.521763174000114,-22.434172815999943],[26.651393407000057,-22.41275320299991],[26.7048850220001,-22.31030633399996],[26.822696740000083,-22.198217770999975],[26.885137336000128,-22.109470395999892],[26.773132660000044,-22.075814260999948],[26.720634315000154,-22.09873491299993],[26.509280442999966,-22.067377369999917],[26.499121867000042,-21.974686169999927],[26.37692126100012,-21.934932375999892],[26.35819843700017,-21.80574672599988],[26.420541644000025,-21.66614365399994],[26.384489628000097,-21.550245617999963],[26.32711268600019,-21.530421032999982],[26.320787189000043,-21.432857085999956],[26.157793097000138,-21.410149580999928],[25.8815557260001,-21.45298620899996],[25.669237270000053,-21.443187213999977],[25.41498374200006,-21.51846871899994],[25.316294907000156,-21.522549576999893],[25.028329785000096,-21.41166536999998],[24.877658407000126,-21.411113804999843],[24.81652837600012,-21.37794300799993],[24.70801379200003,-21.41869743799998],[24.617015296000034,-21.484245390999945],[24.54024296700004,-21.39342442399993],[24.508611026000153,-21.299501471999918],[24.39905119700012,-21.138728632999914],[24.336420479000026,-21.00147877099988],[24.382418851000125,-20.697041327999898],[24.495639595000057,-20.45951621099988],[24.46970693700007,-20.393585970999823],[24.390977347000046,-20.422377102999917],[24.148603755000124,-20.261364019999974],[23.992648916000064,-20.35093480499995],[23.868820462000144,-20.33295061699988],[23.81560632900016,-20.234092457999907],[23.695244141000103,-20.22729834199987],[23.600329951000163,-20.18619989799987],[23.341759060000072,-20.162875571999905],[23.233083164000107,-20.238583803999916],[23.16152812200005,-20.31976928599994],[22.993241524000098,-20.34633710299994],[22.976662198000042,-20.34813747599992],[22.90831704400017,-20.370752626999888],[22.804732962000116,-20.48032025799995],[22.757315186000028,-20.482389212999976],[22.633481153000105,-20.564581183999962],[22.44790130000007,-20.636387120999927],[22.42012538400013,-20.842564494999976],[22.25491151900013,-20.86554450199992],[22.16987991900004,-21.044731404999823],[22.101513102000013,-21.10714657099993],[22.09372726700019,-21.163602162999894],[22.024219557000094,-21.250273762999882],[21.586571472,-21.48802882399991],[21.488473505000172,-21.52427814899994],[21.030926574000034,-21.737014910999903],[20.53951305700008,-21.59550649499994],[20.335859338000148,-21.517081194999946],[20.213961349000158,-21.50329996599993],[20.127831179999987,-21.44836240199993],[20.009475042000076,-21.4534366179999],[19.77213365500006,-21.498391010999853],[19.409527055000183,-21.385737880999955],[19.154529055000012,-21.2484542549999],[18.925973415000158,-21.108512724999912],[18.823418975000095,-21.027779505999888],[18.66489628700009,-20.856095315999937],[18.599603425,-20.713218646999962],[18.493383305,-20.564670327999977],[18.22891836000008,-20.383341802999894],[18.03751185600015,-20.30316710099993],[17.779968568000072,-20.23936044499993],[17.586430427000096,-20.272581190999915],[17.34593749300018,-20.465954245999853],[17.190716002000045,-20.536509469999885],[17.10604973400018,-20.50475961899997],[17.056661078000047,-20.430676634999884],[17.060188838999977,-20.360121411999955],[17.151910629000156,-20.282510665999837],[17.289493314000083,-20.20489992099982],[17.42002047700015,-20.092011563999904],[17.671354673000167,-19.932497566999928],[17.74810226500017,-19.862707087999922],[18.056799763000072,-19.83467837099994],[18.2231084390001,-19.739057529999968]]],[[[26.372417746999986,-19.360344708999946],[25.830801979000114,-18.83850334799996],[25.709668610000108,-18.873071241999924],[25.6012583160001,-18.85388932199993],[25.53621582000011,-18.880784468999877],[25.391769252000074,-18.859267652999847],[25.302876677000143,-18.80457200099994],[25.204392126000073,-18.81793042399994],[25.05375651700018,-18.92775233599997],[24.90711695800013,-18.855892527999913],[24.904069541000126,-18.794219351999914],[24.750309786000173,-18.744274308999934],[24.71808095500012,-18.69304982299991],[24.569041537000032,-18.64592617699998],[24.506937873000027,-18.698219929999937],[24.557211535000135,-18.817542853999953],[24.54479521500008,-18.871799845999817],[24.279442781000114,-19.063574484999947],[24.165586678000125,-19.108726460999947],[24.07161925300005,-19.188830140999983],[23.95952013200008,-19.243388714999924],[23.88116700100005,-19.33742126999988],[23.895661105000045,-19.42893999699993],[23.85495249100012,-19.60336569599997],[23.684301499000128,-19.825299115999883],[23.45746281200013,-20.08133990799996],[23.63365119399998,-20.09255587699994],[23.682589066000105,-20.136743748999947],[23.839816738000025,-20.134577547999868],[23.922983425000098,-20.208079880999946],[23.95412484300016,-20.278227600999912],[24.042463849,-20.203354782999952],[24.18413394400011,-20.1679087039999],[24.30132578900009,-20.222926703999917],[24.299047326000164,-20.265180713999825],[24.406964912999968,-20.35531163199994],[24.507278386,-20.34254801399993],[24.54020196900018,-20.450233012999888],[24.43241522600016,-20.643070040999874],[24.381808132000117,-20.841035096999974],[24.38653468500013,-20.952293973999872],[24.58988821500003,-20.949534410999888],[24.529309952,-20.886953681999955],[24.528445310000052,-20.806879469999956],[24.579912434,-20.73214470499994],[24.711668476000057,-20.710133408999923],[24.840439366,-20.654862853999873],[24.886663247,-20.57806635599991],[24.841913932000182,-20.52570486299993],[24.798436903000095,-20.36810828399996],[24.70809902700006,-20.22933975099994],[24.60197997400013,-20.169717662999915],[24.627798261,-20.00420699199998],[24.502141601000176,-19.95742602399997],[24.59112616900012,-19.841301231999978],[24.72926846700011,-19.726529536999976],[24.7058871320001,-19.688903548999917],[24.5993298840001,-19.742783193999912],[24.44107731500003,-19.87118660899995],[24.398707672000057,-19.866136163999954],[24.302775485000154,-19.940990652999915],[24.268515203000163,-19.892569392999917],[24.30809330700015,-19.748939451999945],[24.261947080000027,-19.59755076899995],[24.310100047000105,-19.55881392999993],[24.25090836300012,-19.383121917999915],[24.38669223100004,-19.347317724999982],[24.448934356000052,-19.262175771999978],[24.51614044900009,-19.268091595999977],[24.588305985000034,-19.398096155999895],[24.653194670000175,-19.38587415599983],[24.707421784000076,-19.31254824599995],[24.653197430000034,-19.120138499999882],[24.76888800500018,-19.263315895999824],[24.90213319000003,-19.071585119999952],[24.965328507000038,-19.13631736899987],[24.89270767900007,-19.231139088999896],[24.888952902000028,-19.32155501699998],[24.839836850000097,-19.40547525799991],[24.853507578,-19.484864140999946],[24.91623826800003,-19.49977096999993],[24.923761849000186,-19.601663799999983],[25.083122931000105,-19.589059300999907],[25.221682204,-19.53498260799995],[25.347451491000015,-19.458215091999932],[25.421678369,-19.544573053999898],[25.557209415000102,-19.59951635899995],[25.71258702000017,-19.45519847099996],[25.728863592000096,-19.522666122999965],[25.95589309800016,-19.519766035999908],[26.102394511000114,-19.48374602199982],[26.372417746999986,-19.360344708999946]]],[[[23.960188390000155,-19.185502976999942],[23.976251431000037,-18.99461474599991],[24.052567352000096,-18.63950796299997],[23.892421219000028,-18.572767942999974],[23.823154529000135,-18.612644969999906],[23.85644767600013,-18.680920437999873],[23.802880669000047,-18.81486528899984],[23.849177154000017,-18.889663888999962],[23.79453982200016,-18.94834971399996],[23.890844439000148,-18.992885439999895],[23.92786404300017,-19.05551351399987],[23.905643032000057,-19.114609076999955],[23.960188390000155,-19.185502976999942]]],[[[24.063983066000162,-18.612728805999836],[24.07596473500007,-18.53594189699993],[24.018055661000176,-18.470959377999975],[23.911929843,-18.54913880599986],[24.063983066000162,-18.612728805999836]]]]},"properties":{"objectid":361,"eco_name":"Kalahari xeric savanna","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Afrotropic","eco_biome_":"AF13","nnh":2,"eco_id":97,"shape_leng":94.5683796276,"shape_area":60.9005228902,"nnh_name":"Nature Could Reach Half Protected","color":"#E38454","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":688632.4778554996,"percentage":2.6102183821159675}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[12.146704565000107,-15.19113742099995],[12.058190581000133,-15.229342707999933],[12.016079564000108,-15.57035071599995],[11.91864044200014,-15.687643045999891],[11.8756795,-15.78540688299995],[11.78507950900007,-15.778917444999877],[11.732330516000161,-15.880311819999918],[11.809550475000094,-16.018712128999937],[11.794099442,-16.105317472999957],[11.832229558000108,-16.471473536999895],[11.831080567000186,-16.694729551999956],[11.760869555000113,-17.019679509999946],[11.761501600000088,-17.314174139999977],[11.741666861000056,-17.5847984049999],[11.807427820000044,-17.967693732999862],[11.86011197199997,-18.14378195499995],[11.963396529000022,-18.263975923999908],[12.029907363000177,-18.487594756999954],[12.32044591400006,-18.7317378809999],[12.465906950000033,-18.926722268999924],[12.478859399000157,-18.996415055999933],[12.571728079000138,-19.083995509999966],[12.694502982000074,-19.305312518999926],[12.70619917300013,-19.3810199859999],[12.859053410000115,-19.645895868999958],[12.891583933999982,-19.730970590999902],[13.033896520000042,-19.988103447999833],[13.051283617000081,-20.07803812999998],[13.143007690000161,-20.15644721299998],[13.237129428000117,-20.326033971999948],[13.245877632000088,-20.45777732099998],[13.347695676000171,-20.657515899999908],[13.390997890000108,-20.612338670999918],[13.56752558300002,-20.582291403999932],[13.544990133000113,-20.450834611999937],[13.717761917000075,-20.503417328999888],[13.706494192000093,-20.428299161999973],[13.578793308,-20.41327552799993],[13.488651507000156,-20.311866002999977],[13.522454682000046,-20.244259652999972],[13.59757284900013,-20.26303919399993],[13.616352391000191,-20.36069281099998],[13.770469533000153,-20.39568253199991],[13.856730525000046,-20.36069281099998],[13.807903717000045,-20.07524377699997],[13.864242342000068,-19.958810617999973],[13.871754158999977,-19.872424725999963],[13.807903717000045,-19.872424725999963],[13.650155566000137,-19.789794742999902],[13.6238642080001,-19.680873399999882],[13.556464985000048,-19.58131421199988],[13.37221834900015,-19.53063706699993],[13.278320640000175,-19.538148882999906],[13.210714290000112,-19.436739357999954],[13.199446564000084,-19.324062106999975],[13.124328398000046,-19.30152665699984],[13.01540705500014,-19.16255804799988],[13.08676931400015,-19.098707606999938],[13.019162964000088,-19.06490443099983],[12.955312522000156,-18.940959455999916],[12.92526525500017,-19.087439880999966],[12.831367546000024,-18.99354217299998],[12.720195729000011,-18.80701823399994],[12.741206967000153,-18.764995757999827],[12.854667651000057,-18.82382722499989],[12.926105860000177,-18.80281598699986],[12.749611462000189,-18.693557548999934],[12.732802471000014,-18.546478883999953],[12.627746282000146,-18.504456407999953],[12.652959767000084,-18.445624941999938],[12.539499082000077,-18.327962008999975],[12.623544034000076,-18.327962008999975],[12.636657072000048,-18.219361754999966],[12.594128301000126,-18.15554055799987],[12.560510320000049,-18.19349008699993],[12.428867633000038,-18.184627920999958],[12.442847388000075,-18.306950770999947],[12.308375465000097,-18.273332790999973],[12.26635298900004,-18.185085590999904],[12.298713363000047,-18.11389276899996],[12.236937256000033,-18.016995687999895],[12.236937256000033,-17.83209679399988],[12.358802436000076,-17.77326532799998],[12.29997097000006,-17.676613632999874],[12.152892304000034,-17.72704060399991],[12.19491478000009,-17.575759690999973],[12.186510285000054,-17.449692263999964],[12.148690057000067,-17.302613597999937],[12.333884449000095,-17.03022186599992],[12.366541978000043,-16.952885595999874],[12.403861145000121,-16.74425366299988],[12.406457481000189,-16.63802562199993],[12.455046057000175,-16.539916694999874],[12.439838945000133,-16.33571901499994],[12.479525798000111,-16.20896633199993],[12.419810067000071,-16.10493973399997],[12.400522998000042,-15.917768584999976],[12.409053817000029,-15.722568434999971],[12.387357035000036,-15.597230101999969],[12.294404925000038,-15.369838394999874],[12.146704565000107,-15.19113742099995]]]},"properties":{"objectid":364,"eco_name":"Kaokoveld desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Afrotropic","eco_biome_":"AF13","nnh":1,"eco_id":98,"shape_leng":16.8954004388,"shape_area":2.82985101842,"nnh_name":"Half Protected","color":"#DE5245","color_bio":"#CC6767","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":33338.26109790105,"percentage":0.12636659574424403}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[71.87159754100003,36.58280340900012],[71.94050550300011,36.57184474200017],[72.091674635,36.7295182310001],[71.87159754100003,36.58280340900012]]],[[[75.42454565200006,36.82864043900008],[75.38220262400006,36.920885295000176],[75.10752061600004,36.99359294100003],[75.02609260600019,37.14542172900019],[74.88600150000008,37.240615842000125],[74.83735662200007,37.31908235800006],[74.68426551900018,37.397674770000094],[74.41577958100015,37.340928950000034],[74.24602558999999,37.25605363100016],[74.11871353300006,37.224228383000025],[73.86408254600019,37.033257112000115],[73.75798760000004,37.043868937000184],[73.60945155900015,36.9908188660001],[73.45030956000016,36.958993450000094],[73.25933862500011,36.9908188660001],[72.97287752800008,36.94838179300007],[72.78491251100002,36.99638478500009],[72.74584161000018,36.96248853600008],[72.79028363499998,36.87899036400006],[72.87100253600005,36.91444665200004],[72.94910460700015,36.813111790000164],[72.72155756000012,36.77407257300007],[72.61393761200014,36.77733045100018],[72.54777556200008,36.715842653000095],[72.37254349400013,36.74416191900008],[72.33233651000012,36.62695055800009],[72.27191958400005,36.56735070000008],[72.26417554400007,36.46802196300018],[72.14955855000005,36.48998254900016],[72.02822849000006,36.472317856000075],[71.98945648800014,36.40212461300018],[72.02613049900009,36.34044973100009],[71.93421153200006,36.1891850450001],[71.86254860600013,36.17300746900003],[71.7695926290001,36.22274635300016],[71.75086963700011,36.329815108000105],[71.70557349700005,36.37055115700008],[71.82494353300007,36.487938538000094],[71.91934153200003,36.533538606000036],[71.86911750400009,36.58117866099997],[71.66107950500009,36.51299707600009],[71.48538257700005,36.511161942000115],[71.43847660800009,36.469323002000124],[71.42952758600006,36.367026064000186],[71.35720064600002,36.342093925000086],[71.2555466,36.20614180300015],[71.4008336490001,36.08867462600011],[71.59197959800002,36.04276141100007],[71.8192515500001,36.055594272],[71.85975659400003,35.9618272620001],[72.01139058700016,36.05116125100017],[72.09599248900008,35.955399684000156],[72.19081159500013,35.94082372200012],[72.22530363000004,35.88668702100017],[72.21708651500006,35.76241809700019],[72.2846525330001,35.749338305000094],[72.4420925030002,35.780446733000076],[72.67106648400011,35.79337816600008],[72.87993663900005,35.771046932000104],[73.04016862000014,35.79057827500014],[73.10648355600006,35.774888861000136],[73.338668644,35.781148633999976],[73.34765655900003,35.784497372000146],[73.6085355840001,35.82475665800018],[73.65119963900008,35.82528354500016],[73.96704064800008,35.80755699300005],[74.23988349900009,35.68029003100014],[74.4544825160001,35.62574110800006],[74.54116849400015,35.55479299100017],[74.55986064100011,35.461488327000154],[74.54247255000018,35.32982757100018],[74.36685960900007,35.07600392900008],[74.39498156500002,35.0221751790001],[74.63279761600006,34.97318832000013],[74.85919164700005,34.911068024000144],[75.07877353800018,34.718244017000075],[75.11524152300018,34.653349814000194],[75.26956962700018,34.63178518900003],[75.36583762900005,34.549302400000045],[75.35994749800005,34.497648754000124],[75.54859161700011,34.25789816000014],[75.69029255200013,34.2253792250001],[75.7215575530002,34.153470207000055],[75.90454858200007,34.00663116599998],[75.97818762400004,34.01348605400017],[76.05155962000003,34.07105531200017],[76.14060258900014,33.982171934000064],[76.26328263800013,33.978482891000056],[76.21483657900018,33.90042507600009],[76.34243060300008,33.80775777200006],[76.40296957000004,33.72492311100012],[76.42066963400015,33.61731825000004],[76.62915757400009,33.57514738600008],[76.56857250700006,33.48662208300004],[76.60361456200019,33.45860791900009],[76.83229065100016,33.371502343000145],[76.80432158100007,33.27768202400017],[76.98655656100016,33.268660582000166],[76.99377455300015,33.207318126000075],[77.14082364500007,33.09906467300016],[77.00984953500006,33.040102175000186],[77.06292760100007,32.999892509000176],[77.301315634,32.915182984000126],[77.40321359200016,32.91518600100011],[77.55850963900019,32.956135789000086],[77.70446757500008,33.03219150200016],[77.76175654200006,33.020022991000076],[77.96742263000016,32.809969312000135],[78.0413436400001,32.663263878],[78.24681057300012,32.77989135500002],[78.32832357600017,32.62373314600006],[78.2447665630001,32.533697927000105],[78.39409653799999,32.52216610500005],[78.4205325580001,32.56415692500019],[78.61824757200014,32.57387272400018],[78.65856955600003,32.42815618700013],[78.65856955600003,32.300814123000066],[78.70640558000008,32.19715646800006],[78.76956154400011,31.976250906000075],[78.74507850800018,31.908434101000125],[78.97535654600006,31.90097823100018],[79.01035350600006,31.829861638000068],[79.16906752500017,31.927175366000142],[79.05948654600019,32.06221989600016],[79.12274158400004,32.17721424400008],[79.14595761200019,32.300513213000045],[79.21755951700015,32.30747404800019],[79.36008456100018,32.42529930000006],[79.34944960200016,32.32614641400005],[79.4669186220001,32.299979286000166],[79.56161451500003,32.3232015160001],[79.67006661900012,32.26509430800019],[79.73242965500009,32.19411283100004],[79.83034553900006,31.995633052000073],[79.916595658,31.855342791000112],[79.97805764000009,31.711085711000123],[80.16667962999998,31.499887735000073],[80.30912756000009,31.407937922000144],[80.42435458900019,31.470053524000093],[80.38014256400004,31.57138838700007],[80.28118162499999,31.63724315600001],[80.21488965500004,31.740358502000163],[80.20900757100003,31.803599626000164],[80.05090358700011,32.03134113300007],[79.92608665500006,32.242901040000106],[79.70731361700012,32.45420647200018],[79.46238753300008,32.61557034600003],[79.35004454900013,32.76336559500015],[79.41081955000004,32.769175427000164],[79.59226964900017,32.69458872600018],[79.7303695510002,32.68735698800009],[79.96524053600007,32.57442676800002],[80.09828162400004,32.54207865700005],[80.34988355900009,32.57832435299997],[80.463813572,32.58008354700007],[80.49025763800006,32.622703010000066],[80.32248663800016,32.67231264500009],[80.31227161200013,32.67627544100003],[80.24821459400016,32.72386587600016],[80.23779253500015,32.73165568200005],[80.08030663300019,32.80120251200003],[79.92439250500007,32.91003331000019],[79.89356956400019,32.97417917700017],[79.88544465000007,33.14038041500004],[79.76451859800011,33.26750840500017],[79.77990760400013,33.35987463100014],[79.92169152000014,33.43242067400007],[79.98217751300012,33.5758385580001],[80.22644058800017,33.591287076000015],[80.37870758300005,33.62393593000013],[80.45688659900003,33.70341682400016],[80.63526959199999,33.78672757700008],[80.5148466220001,33.95921960100014],[80.49820753800009,34.094671659000085],[80.39493561800009,34.03954723500004],[80.27269763000015,34.0512428400001],[80.19758555100003,34.13746764500007],[80.20033263600004,34.12206791000017],[80.19607563500011,34.0607598200001],[80.09768650900008,34.00098947400005],[80.01174149100007,33.97716307600001],[79.96504959600009,33.88813854700004],[79.89013650400017,33.86099341900007],[79.60242449300017,33.93807926800008],[79.57177757200009,33.969469160000074],[79.48825861300014,33.90504819900008],[79.26761657800006,33.95355879900018],[79.19464155000009,34.00768007700003],[79.2312166550002,34.090673993999985],[79.08454156400006,34.16691662400018],[79.101921607,34.118238218000045],[78.95795454100005,34.05402680500015],[78.8502425590001,34.051955972000144],[78.75392158300008,33.96495634300015],[78.61721056300019,34.01570608500009],[78.60166950900003,34.101667699000075],[78.47946152800017,34.15759293000019],[78.38313250600004,34.078883171000086],[78.30856357500005,34.14930825700009],[78.31270557600004,34.254949239000155],[78.42353059700008,34.27048308400015],[78.47220665600014,34.236307718000035],[78.62860157000006,34.24873539800018],[78.70006550900018,34.220770184],[78.72698952300016,34.13998959200012],[78.82434851300007,34.17002161600004],[78.88363656400008,34.25039132700016],[78.81846659700011,34.311637894],[78.77960155500011,34.27609393000006],[78.6312715410001,34.323051364000094],[78.3934935440002,34.30814398100006],[78.31001263800016,34.36553420200005],[78.43076350900009,34.40429446900015],[78.29212163300019,34.49000915200003],[78.20279652900007,34.715725926000175],[78.09578661500012,34.977277347000154],[77.86868263700012,35.0694878380001],[77.89643863900017,35.12867547400009],[78.28331761800013,35.296739338000066],[78.1963116180001,35.37450730600011],[78.00305158600008,35.615487358],[77.68520361399999,35.82738539100018],[77.47330457600003,35.91567449200005],[77.24374352600012,35.986305772000094],[77.03183761400015,36.074598896000055],[76.8199385750001,36.251176763000046],[76.69633450500004,36.32180821100013],[76.5374065790001,36.37478200700019],[76.32550854700008,36.410097312000175],[75.90293154500011,36.622716691000164],[75.76995063900017,36.718402486000116],[75.69914250000016,36.74788197500004],[75.6941685110001,36.74912098800013],[75.59577955200012,36.76421562200011],[75.61372353100006,36.67801663300014],[75.8003995790001,36.63134854300006],[75.81268359300003,36.53801236300012],[75.95269054500011,36.481521856000086],[75.919532575,36.437306814000124],[75.79794351400017,36.40537444500012],[75.69600649500012,36.45081425100017],[75.5867076510001,36.569944732000124],[75.44670053100003,36.55643293600002],[75.45529164700014,36.637490299000035],[75.36563864300012,36.71117376500018],[75.28458362700002,36.684158221000075],[75.16054554200008,36.7283695750001],[75.1507185980002,36.79100217299998],[75.36809554600006,36.79714409700017],[75.42454565200006,36.82864043900008]],[[74.09845749000016,36.891158875000144],[74.07650763300006,36.808663849000084],[74.14852863300013,36.727400292000084],[74.23926558500017,36.717185769000025],[74.31760352200018,36.662635673000125],[74.41142250000013,36.709361766000086],[74.64677460700005,36.55754001800017],[74.82153360000018,36.505955271000175],[74.76965364300008,36.37364106200005],[74.64598855200012,36.36655734800013],[74.5467375980001,36.39963753500007],[74.48354358000012,36.31600240200015],[74.36198452600001,36.42805973000014],[74.32205951000009,36.53134070300018],[74.11405151800005,36.44131671600013],[74.11278551600009,36.548068132000026],[74.21061657500007,36.569662764999975],[74.248855488,36.656616796000094],[74.05896749400017,36.715830583000184],[74.07402055400007,36.786939129000075],[74.0288005220001,36.84710392799997],[74.09845749000016,36.891158875000144]],[[75.01605259500019,36.46695813100007],[75.33084854800006,36.38880761299998],[75.43018348800007,36.34352488400009],[75.5755305510001,36.323803104000035],[75.68655355200019,36.2522256740001],[75.84870163699998,36.323803104000035],[75.99405657900007,36.363975387000096],[76.21901663400007,36.23542616100019],[76.32857565300003,36.10103726300008],[76.29351750400014,36.05721516400018],[76.35998549400017,35.99513258700006],[76.6389996050001,35.99074969000009],[76.68720258900015,35.856360792000146],[76.77192653100019,35.82130063200003],[76.8464275680002,35.73657451100007],[76.93115251600017,35.69421371300007],[77.00273849600012,35.721967871000174],[77.07504263700008,35.66426835800013],[77.13055464000013,35.697867552000105],[77.31753562200004,35.60583660200018],[77.53519453700005,35.56639773600017],[77.62430556700019,35.49189837500006],[77.70610858400005,35.526957697000114],[77.78353155300005,35.509426108000014],[77.59362763400003,35.3195277210001],[77.69223049900012,35.273515934000045],[77.70246161800009,35.10406704400003],[77.73167456200008,35.04563562300001],[77.88359856900007,34.93754125900006],[77.95517750700014,34.934619327000064],[78.07423355700013,34.86230931900019],[78.12535864000006,34.75567608800003],[78.11367057900014,34.60083417300007],[78.17210350900018,34.552629513000056],[78.17940565500004,34.43576851500018],[78.26267265500019,34.31598676000016],[78.16772463500007,34.244409666000024],[78.01433563900014,34.39486466],[77.93107551200018,34.390485619000174],[77.86898757000006,34.46863563400012],[77.83977563200011,34.603024029000096],[77.69661758700016,34.66583834700009],[77.722907594,34.730110780000075],[77.64110558300007,34.76224884100003],[77.61042765000008,34.974058529000104],[77.51109354800013,34.97844125800009],[77.39276856800012,35.109907889000056],[77.29489157500007,35.13912334800017],[77.26714362000001,35.222389174],[77.17803158400017,35.16833931000008],[77.35040257300011,34.88641366100012],[77.42490361100005,34.871804172000054],[77.42052456900007,34.80314867300018],[77.2817455660001,34.813375601000075],[77.22988857500013,34.930964482000036],[77.1714556460002,34.97479043700008],[77.04290759300011,34.922202711000125],[76.79164864600017,35.03906287],[76.84861759200004,35.109178999000164],[76.93772862200018,35.09165042800015],[77.02245357000015,35.1544618960001],[76.790191536,35.25525528700007],[76.8223265790001,35.33267624500019],[76.73760263700007,35.37211544600012],[76.58421364100013,35.51819190200001],[76.62365753700004,35.32391061800007],[76.4775775600001,35.30930381100006],[76.43959865400012,35.614602397000056],[76.23362763300008,35.526957697000114],[76.19856261100011,35.459760146000065],[76.103614591,35.49774223800017],[76.15912659500015,35.614602397000056],[76.27160653900012,35.73146289100009],[76.10214960200005,35.69348482300012],[76.03349259500004,35.70516835800004],[76.02911355400016,35.87607838100007],[75.81583351200015,35.90529484600012],[75.76178750399998,35.81618884500011],[75.61497461400012,35.917711462],[75.5492405440001,36.01412128600009],[75.49519352900012,35.97614288200015],[75.23516862000014,35.987827758000094],[75.19718954600012,36.01996615400003],[75.09055363300013,35.932316928000034],[74.87435149200019,35.95423258700015],[74.66399354999999,36.08277644900011],[74.54713456500019,36.09300421500012],[74.50184663900012,36.056479066000065],[74.38644459600005,36.074014845000136],[74.42004362300014,36.17772631300005],[74.52230049500014,36.22739629800003],[74.61140465200015,36.15289291300019],[74.76187154900015,36.15143211500009],[74.81446061500003,36.09884824500011],[74.88603955400004,36.12075870800015],[74.94447348900007,36.069635804000086],[75.09493250600013,36.20256004800018],[74.89772761500012,36.25222181800012],[74.95177462900006,36.29750471500006],[74.92256151700019,36.36616826000005],[75.01605259500019,36.46695813100007]],[[78.07491249100013,34.20381091200011],[77.95404863300018,34.209342633000176],[77.88848153000004,34.15088724000009],[78.05318458700003,34.08137410500012],[77.97182463800004,34.03556046600016],[78.0215915170001,33.98263679400014],[78.0263286340001,33.902854990000094],[78.15745563000013,33.92339249700018],[78.13771054800014,33.82386225800013],[78.2905656170002,33.83729409000017],[78.29846153699998,33.75435331400007],[78.40984362000017,33.71011564100007],[78.43907165100006,33.55134429000009],[78.49278255200011,33.49842078500012],[78.45645152700013,33.36097383400005],[78.31426259800008,33.41152827700006],[78.3087315480002,33.48104208299998],[78.2107776100001,33.48104208299998],[78.19892861600005,33.57899250000008],[78.1507415580001,33.66588081700007],[78.06622364300011,33.69195021300004],[78.07553861999997,33.78798234800007],[77.98303258300007,33.812819604000026],[77.92222556400014,33.913882892000174],[77.912803634,34.02522675300003],[77.78793356100016,34.12788595600017],[77.84848761400008,34.14673350400017],[77.93389853700006,34.24778572900004],[78.07491249100013,34.20381091200011]],[[78.91074363899997,33.37232946900019],[79.00779752900007,33.44325445100003],[79.11045857600004,33.43112080800017],[79.10765851700006,33.2734104380001],[79.37642659000011,33.324734676000105],[79.47068058800016,33.25287997200013],[79.61813352000007,33.29767470700017],[79.73292552800018,33.20342054100007],[79.61813352000007,33.130630585000176],[79.6722645210001,33.05504090600016],[79.65639456100007,32.967320433000054],[79.5117495670001,32.99811554600012],[79.53414165300012,33.08023606900014],[79.41655763300008,33.07557019799998],[79.34189549600006,33.16609056200002],[79.22617359900005,33.13716025500008],[79.08432765700019,33.20155439400014],[78.91074363899997,33.37232946900019]]]]},"properties":{"objectid":365,"eco_name":"Karakoram-West Tibetan Plateau alpine steppe","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Palearctic","eco_biome_":"PA10","nnh":3,"eco_id":754,"shape_leng":96.9403956429,"shape_area":14.1195114163,"nnh_name":"Nature Could Recover","color":"#EECB93","color_bio":"#D6C39D","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":143602.16830907876,"percentage":2.940676147228838}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[86.64571359799999,51.30914127600005],[86.39106752300012,51.282990912000116],[86.16607662200005,51.4967054710001],[86.05461860000014,51.65481599300006],[85.90931663200018,51.808409842000174],[86.37342864600004,52.086463890000175],[86.30538150600012,52.16323625600006],[85.75005359800008,52.440451611000015],[85.6753695000001,52.53183514199998],[85.70765659100016,52.77938727700018],[85.6962206570002,52.901249756000084],[85.62206260700003,53.06430509700016],[85.33173359700015,53.31960848100016],[84.75935354600006,53.57496617900006],[84.66741161100009,53.63032613500019],[84.59264352600019,53.78204059400002],[84.59165965800014,53.90179452100011],[84.54662352500014,54.094806785],[84.34573361300016,54.19195119900013],[83.85418662400008,54.32455240400003],[83.71064753800016,54.41754559700013],[83.43908661500012,54.71825810800004],[83.29139764900003,54.85598753000011],[82.96186061100019,55.050122466],[82.52340660800007,55.107012789000066],[82.08651750600006,55.12858127000004],[81.82002260600007,55.179012667],[81.72870663200013,55.27460810500003],[81.71234163700012,55.401320521],[81.8427885260001,55.49341299400004],[82.42106658700004,55.62896077400006],[82.64489760100014,55.69584953500015],[82.85376758700016,55.78970120200006],[82.84647365500007,55.87929167700014],[82.59664164300017,55.93425516900004],[82.07965054800013,55.86234296600014],[81.66652665700008,55.830271122000056],[81.22778364600003,55.754628301000025],[80.90218358800018,55.77898996800019],[80.39089956400011,55.79107114000004],[80.03070051800012,55.87620160400019],[79.50681262600011,55.90203228300004],[78.77198056100019,55.818124906000094],[77.80153655100014,55.801019453000094],[77.33339653000019,55.83474253200018],[76.77256757900011,55.97336512900017],[76.35285953500005,56.021187407000184],[76.01817349300012,56.027405773000055],[75.31120254000007,55.965404165000166],[74.69451155700006,55.970225100000164],[74.38253058300012,56.04329819700018],[74.10513250300005,56.067937807000135],[73.14804052900007,56.015907479000134],[72.78569051900013,55.95849479399999],[72.28488957400009,55.86173226000005],[71.74677256300004,55.79348931900006],[71.16928860200005,55.81718278000017],[70.87957750700019,55.93631510500012],[70.44474750400008,56.00948727600013],[69.53591148800012,56.32042822400018],[69.16899149700009,56.42944040700013],[68.78594958500014,56.509490600000106],[67.65318264400003,56.56232106500016],[67.21820059300018,56.507563600000196],[66.17269161100006,56.33113644000014],[65.69589258000002,56.20286784100006],[65.16921955000015,55.962916081000174],[64.22277862800019,55.50082142300005],[63.74956554300019,55.41052888000013],[63.21871161900003,55.37177079200012],[62.46158956000005,55.46083119500008],[62.07960158900016,55.551344686000164],[61.74325559500005,55.53119894900016],[61.394370610000124,55.4482228010001],[61.08617054500013,55.40957569000011],[60.035427567000056,54.768243252000104],[59.58234060500007,54.622247598000115],[59.126579481000135,54.42473659900003],[58.97484959900004,54.37625466500015],[58.814468587000135,54.202681376000044],[58.59902953500017,53.99938367900006],[58.22137852900005,53.597637550000115],[58.15095159900005,53.417690662000155],[58.17092148299997,53.17010717900001],[58.13220547300011,52.93411838300011],[58.06276358400015,52.730458252000176],[58.028270544000065,52.553861610000126],[57.98086551700004,52.08017360700006],[57.92279049500013,51.889878421000105],[57.81198156700009,51.69300176400009],[57.687030525000125,51.578272956000035],[57.89241447800009,51.55408730900007],[58.19442752500015,51.089445894000164],[58.32419950300016,51.150649881000106],[58.356338569000116,51.086698809000154],[58.53787651100015,51.074938664000115],[58.60179154000019,51.0063985000001],[58.562229628000125,50.946594627000025],[58.589580616000035,50.83126668000011],[58.825660607000145,50.892623552000146],[59.21092657300011,50.92226011800017],[59.655464496000036,50.92226011800017],[59.96664047200011,50.99635044300015],[60.218543485000055,51.02598684100019],[60.55935250700014,50.99635044300015],[60.855712631000074,51.12971423400006],[61.07923552500006,51.46500477800009],[61.06130948400005,51.570555570000124],[61.12058261600015,51.69650774700017],[61.23912452000019,51.859508774],[61.279872639000075,52.003985292000095],[61.3835985230001,52.104008219000036],[61.431755575000125,52.27071019200008],[61.61698155300007,52.467052083000056],[61.90222559799997,52.878254172000084],[62.13571960400009,53.00806386800019],[62.11425053300013,53.11297394800016],[61.78966854000004,53.164626085],[61.68484462700002,53.294919920000154],[61.70074861699999,53.408642230000055],[61.69247048200015,53.67309831600005],[61.82744963300013,53.85492224800009],[61.77157955500002,53.96425394900007],[61.831428523,54.02244430600001],[61.94609061200009,53.947262322000086],[62.069740615000114,54.051314933000015],[62.3403515330001,54.03037526300017],[62.44522054100008,53.93015301400004],[62.58591061800007,53.97441600100012],[62.81082155600018,54.11054716100017],[63.138770559000136,54.10711728600012],[63.15769957800006,54.184019907000106],[63.51821847800005,54.20052622100013],[64.02908357400008,54.29940585600002],[64.31960251800007,54.38677596500008],[64.57933858700011,54.34997488400012],[64.78639255000019,54.35249213700013],[64.979721482,54.40095529600012],[65.32727056000016,54.347792907000155],[65.48174249800019,54.40270610800019],[65.76837156800019,54.430805935000194],[65.96704061000008,54.38775195400012],[66.06777164100004,54.28171232900007],[66.20250654300014,54.20296049300015],[66.4665525870002,54.185721098000045],[66.70768753600004,54.047514914000146],[66.98822748900005,54.013593854000135],[67.22962160700013,54.14432690100017],[67.42347759300003,54.18421101399997],[67.6622464990001,54.14811904200013],[67.86691262600016,54.08394249700012],[68.17185263400017,54.19240801199999],[68.35576650900003,54.23209012100017],[68.52741263100012,54.29544155200011],[68.64774356900006,54.25461950400006],[68.97545653700013,54.267471811000064],[69.1551975660002,54.24126025900006],[69.35881763100019,54.351832146000106],[69.60704048600013,54.352602946000104],[69.80666355700015,54.38270571300012],[69.99104363400005,54.45285537000018],[70.28793349400013,54.43730610100016],[70.45323149800004,54.46170565400007],[70.76421351700003,54.57984958500015],[71.0801006260001,54.55548909200007],[71.49607855600016,54.573170381000125],[71.79801951900009,54.55522908500012],[71.99372857600014,54.51106584300004],[72.2186435370001,54.366012482000144],[72.76145156400014,54.47015578600008],[72.97049757000013,54.55280688300013],[73.07874264200018,54.82139440900005],[73.04432654700014,55.02803095400003],[73.04418958700018,55.17098246900014],[73.23484050100012,55.25567472700004],[73.38804660400012,55.27245613600007],[73.69611356500013,55.162445165],[73.98110162600017,55.10197258300013],[74.18517263700016,55.08918247000014],[74.33051249200014,55.11834210500007],[74.53443162300005,55.290717620000066],[74.75170849100016,55.37872911300008],[75.02214053900013,55.41816999000014],[75.25454758000006,55.40194949900018],[75.43247962700002,55.34232818300006],[75.58750963200015,55.24600435800005],[75.6576765550002,55.13620360500005],[75.65395364900019,55.02944984200019],[75.59610762000011,54.919237036000084],[75.13607759300004,54.59186973700008],[75.02739750100005,54.49270846900009],[75.08509064300017,54.36436426500006],[75.31140152600005,54.293652518000044],[75.57940651000007,54.328802364000126],[75.88469654699998,54.38732498000013],[76.05355048900014,54.37442757800005],[76.26663959100017,54.393326087000105],[76.81974059500004,54.50201657300005],[76.93248758600015,54.48301513400003],[76.83763864000008,54.39893324500002],[76.84095753800005,54.237903307000124],[77.00256364900014,54.268082014000186],[77.24938957600011,54.353613971000016],[78.0251925500001,54.17502863900006],[78.32113659700013,54.20149952800011],[78.49481952200011,54.31917424],[78.74540758100011,54.53220735000019],[78.89911659800015,54.60302822900019],[79.2027515440002,54.54726761799998],[79.38536052500007,54.296452744000135],[79.38603962700012,54.03348830200008],[79.47042862800009,53.859053520000145],[79.72644749100004,53.741058787000156],[79.83396149200007,53.585987375000116],[79.96999357800001,53.57526792700014],[80.132728564,53.434750014000144],[80.52037063100005,53.37728083600007],[80.90724156400017,53.41343349300007],[81.09741957100016,53.395820265000054],[81.30151354900005,53.30098908900004],[81.6508865290001,53.187377588000174],[82.07074762600018,53.16046799000014],[82.44230649800005,53.19643674900004],[82.67700951000012,53.240337637000096],[82.91130851400004,53.32541848100004],[83.2024535860001,53.49706845800017],[83.26880657600003,53.5599246860001],[83.56089058800018,53.42881076500015],[83.66593964000009,53.40621248400009],[83.72569255100018,53.324289438000164],[83.60234060800013,53.18339869800013],[83.6028596160001,53.012572829000135],[83.45234661800009,52.77176913300008],[83.39453864400008,52.56698398300006],[83.38491856600007,52.327470260999974],[83.34586359100012,52.23883767000012],[83.19589960800016,52.21234834100011],[83.03708651500006,52.22554732400005],[82.88105051400004,52.299728844000185],[82.77501658900013,52.666851006000115],[82.65453360400011,52.79037729300018],[82.48095662700007,52.75212664500009],[82.43382250300016,52.60806570200003],[82.44180257800008,52.47327430500013],[82.53733850400016,52.317731328000036],[82.7897335350001,52.14819493100015],[82.97853054000007,52.0728456440001],[83.3240205190001,52.03667002100019],[83.78375952700014,51.870022028],[83.68560760800011,51.6862576850001],[83.34393357400006,51.5513554800001],[82.96517950900017,51.70025781000004],[82.82479855600019,51.70873811700011],[82.58902752200015,51.549715476000074],[82.40115353200014,51.33125961000013],[82.13545960700009,51.07053933800012],[82.0589445650001,50.879366567000034],[82.09404764100003,50.464245435000066],[82.13135565900012,50.277703666000036],[82.20486461500008,49.99633206100009],[82.31568158900006,49.94092332200006],[82.56810763300001,49.94092332200006],[82.98676257400012,49.99017471400015],[83.07697264000006,50.03528058500018],[82.91206355600013,50.08730202900017],[82.91546660900008,50.21125478700009],[82.77419264800005,50.35443781000015],[82.9152835480001,50.427047723000044],[82.93723256700014,50.50503982300012],[82.69912750800017,50.784882904000085],[82.83891250800019,50.9182049530001],[83.06792454300006,50.94470652000007],[83.27751151700005,51.088709628000174],[83.24194358200009,51.20383154800004],[83.02945764200007,51.306391174000055],[82.94835652600011,51.369094180000104],[83.06368262900008,51.4171332140001],[83.28072363000013,51.417213177],[83.43988054900012,51.370051226000044],[83.60077654500014,51.27749070700003],[83.83145155000011,51.21083881900012],[84.19833365500017,51.24962724900013],[84.41300961800016,51.30317135000007],[84.52467350000006,51.40542587500016],[84.63713064500018,51.612907483000185],[84.73934158400016,51.67965760700008],[84.885772595,51.69958994000018],[85.271293538,51.63897302200007],[85.39138056200005,51.57686462800007],[85.68379264200013,51.308161432000134],[85.75202954800011,51.16741888400014],[85.94254266400003,50.85950313300003],[86.3213725010001,50.44811714499997],[86.7542116350001,50.154675096000176],[87.02208753700012,50.06947992400006],[87.18125954300012,50.12377554600005],[87.10575854500007,50.30498709600005],[87.17913858700018,50.45550629600007],[87.25910965400016,50.54289048600009],[87.36151857400012,50.59199016600013],[87.76466364200007,50.544320606000156],[87.59864060300009,50.90579588100013],[87.51859259000008,51.03434493900005],[87.5241165990002,51.10589906700005],[87.01526651200015,51.29350818900019],[86.64571359799999,51.30914127600005]]]},"properties":{"objectid":367,"eco_name":"Kazakh forest steppe","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Palearctic","eco_biome_":"PA08","nnh":4,"eco_id":731,"shape_leng":90.1633157823,"shape_area":58.0278381876,"nnh_name":"Nature Imperiled","color":"#D8FC36","color_bio":"#FEFF73","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":421463.85010230297,"percentage":3.9778386648817734}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[72.99961060200008,48.738566635000154],[72.82042663500005,48.799682109000116],[72.79733264700008,48.956341556000154],[72.40196950600017,48.99959301399997],[72.28943658800011,49.10827143000017],[72.10077654400004,49.13958270000006],[71.94735754100003,49.232543538000016],[71.6738205010002,49.24803178700017],[71.59989949100014,49.29364442700012],[71.6000215310001,49.40858663900008],[71.33809661200013,49.443358126000135],[71.28913154500003,49.54973638000007],[71.20809161700015,49.61477726600015],[70.94750260600006,49.66950774100019],[70.75280759100008,49.804984443000194],[70.58323649300007,49.811999425000124],[70.36717248700012,49.937795196000195],[70.11679850100012,49.96137348900004],[69.96576649600007,50.04242163200013],[69.8048785470001,50.00208104000012],[69.71758253400014,49.93739001400007],[69.63619257700014,49.94786219700012],[69.35971851800008,49.843699951000076],[69.22026862700017,49.84487107000007],[69.142951606,49.89699276100009],[68.8999635850002,49.966470525000034],[68.79382354500007,49.97241362900007],[68.72673060100004,49.926442075000125],[68.533256494,49.889011513000185],[68.212226585,49.9796426850001],[67.99035660200008,49.85746420900011],[67.69458756900013,49.865532126000176],[67.540672525,49.81198048200008],[67.49501059900007,49.76451007600002],[67.34602361100019,49.72392858900008],[67.04416663400013,49.76230882100009],[66.90534957700015,49.80884866800011],[66.77411663400017,49.931851085000176],[66.64729357700014,50.116382372000146],[66.52156050299999,50.20381651800005],[66.3825835190001,50.24422634400014],[66.05496962500018,50.20918361900016],[65.60977154300014,50.33397540500005],[65.400672563,50.26178559300001],[64.96794155600003,50.35782175200018],[64.62835662700007,50.30070696100006],[64.463180496,50.37812708000018],[64.31770351400013,50.368536842000026],[64.31298852600014,50.45567728600014],[64.16731255700006,50.4872787380001],[64.14441655000019,50.59633132200014],[63.95119054800017,50.657997151000075],[63.50559952200007,50.661300291000146],[63.41761049400003,50.629881733000104],[63.259899621000045,50.62700975800004],[63.13885856900015,50.57889813600008],[63.004589532000125,50.41677855000006],[62.826221626,50.36260882400012],[62.57580154000016,50.421397649000085],[62.383201498,50.38960626400018],[62.23751061000007,50.32758537700016],[61.98720150000008,50.30705524700005],[61.75268557200019,50.203144793000035],[61.529899614000044,50.04355050600009],[61.26710163600006,49.96879348500005],[61.05950955400016,49.99612201000019],[60.87952058900015,50.088973045000046],[60.75992155900002,50.08463205800018],[60.227020607000156,49.81037065400011],[60.11082463000014,49.784880113000156],[59.896400627000105,49.867950305000136],[59.62533155400007,49.624116215000186],[59.53952450200012,49.481124467000086],[59.52608160600005,49.33872381100019],[59.55612955600003,49.16682790800013],[59.528400543000146,49.028989522000074],[59.3986734930001,48.9043202790001],[59.29895063800012,48.85216858100017],[59.236240591000126,48.68474811100015],[58.95497158000012,48.49160408400007],[58.81184052500009,48.44935560400012],[58.72932052100015,48.38983822400019],[58.63803053100003,48.251444118000165],[58.53453062300002,48.144204037000065],[58.52980457000007,48.05051028500003],[58.415370637000194,47.88471892200005],[58.32786960300007,47.81532162500008],[58.22389963799998,47.81315037700017],[58.1473125120001,47.89723109200003],[58.2895394950001,48.29278450200013],[58.30028559800007,48.483315220000065],[58.45693247200012,48.712095076000026],[58.284179602999984,48.78095894900008],[58.17248957000015,48.79584805900015],[58.04631862500008,48.86530268800004],[57.83421355900015,48.89471797099998],[57.71823852900019,48.93729133400012],[57.57889961500018,48.949993605000145],[57.405525480000165,49.070741794000185],[57.18572951500005,49.089133030000085],[56.98606151700011,49.17267613000013],[56.86481058200019,49.16461106300011],[56.67379354600013,49.19730316700003],[56.59036259600015,49.181102122000084],[56.352977543000065,49.20488325800005],[56.226432597999974,49.2779622220001],[55.70589059400004,49.34021478400018],[55.544071582000015,49.37418512900007],[55.37739559400012,49.484126530000026],[55.24226355600018,49.50100667700008],[55.08922961800016,49.556366298000114],[54.933189594000055,49.55132625900012],[54.824867577000134,49.63245838800003],[54.61656554799998,49.60383703900004],[54.48175051400017,49.64700853400012],[54.18866352300006,49.84154077200003],[54.03694152000014,49.86673040300013],[53.89498158400011,49.99214395900009],[53.8598635890001,50.12307364499998],[53.76125351600018,50.258664340000166],[53.57640053200015,50.38456723100006],[53.319702568000025,50.2935349010001],[53.2213245050001,50.34680457800005],[53.102008616000035,50.34479778300005],[52.99314848100005,50.448718966000115],[52.93281151899998,50.39482835700011],[52.791080577000116,50.406448357000045],[52.655254518,50.48693960600008],[52.27696648699998,50.488198736000186],[52.03735754600012,50.377338008000095],[51.912033509000196,50.26931941500004],[51.742530472000055,50.26026628900007],[51.528518523000116,50.13995379200003],[51.35678858200015,50.10357230900007],[51.402584619000095,50.030954350000115],[51.37026953200018,49.970685616000026],[51.481838531000164,49.83778383600003],[51.50625250000019,49.69929300200016],[51.63697850699998,49.6354192120001],[51.67754758799998,49.52108385000008],[51.82182361200017,49.42454393900016],[51.89585157500011,49.306607376000045],[52.01510661100019,49.22779049600007],[52.09153347500012,49.07482378100019],[52.23371553100003,49.02829952400003],[52.39337150800009,48.88560885400011],[52.468418543000155,48.86182755100003],[52.680988469,48.86998783600012],[52.874328465000076,48.91006909200013],[53.02128954700015,48.857467620000136],[53.00833850100008,48.791476896],[53.12979848100019,48.62619146500015],[53.168189609000194,48.42848567100003],[53.21855562700017,48.369765075000146],[53.38755457700006,48.26452508300008],[53.52875863200018,48.25859991600004],[53.51830656700014,48.12044201200018],[53.62474047600017,47.89697896400014],[53.686859599000115,47.82852044000015],[53.88199248400008,47.75832921000011],[54.00944854199997,47.66949930800013],[54.076751537000064,47.551067543000045],[54.056648548,47.430567794000126],[54.13698959300007,47.2557057030001],[54.07588954200003,47.17861733900014],[53.94327559600009,47.12187386600016],[53.91473052200007,46.98503611200016],[54.029571480000186,46.776195127000165],[54.028049494000186,46.69868783600009],[54.12063951700014,46.678942754000104],[54.28728449300013,46.690272740000125],[54.480850633000045,46.60216435300009],[54.56089060000005,46.59814321900012],[54.63190459800012,46.66852069600003],[54.873191595000094,46.65687454400006],[54.98278447700011,46.66981469400014],[55.38919060800009,46.57055133500012],[55.74613948700005,46.60212244400009],[55.87253959300011,46.539052981000054],[56.15880555900014,46.49775886400005],[56.45050450700006,46.54099909100012],[56.620464525000045,46.4239637500001],[56.76892848200009,46.3699435580001],[57.087688572000104,46.389673384000105],[57.16928053300012,46.37239258200009],[57.442390599000134,46.24054105400012],[57.54679156100008,46.20807777600015],[57.98907056200011,46.168629857000155],[58.23685051600006,46.210640794000085],[58.53770853700007,46.16564288200004],[58.645458572999985,46.109391427000105],[58.68574853800004,45.98824023600008],[58.77767152900003,45.842258831000095],[59.002059604000124,45.962220294000076],[59.181980508000095,45.936196161000055],[59.29645953600004,45.97961810800007],[59.28602557500011,45.75429981000019],[59.554420485000094,45.79771069200001],[59.6150585260001,45.98822129299998],[59.58224153100002,46.040249443000164],[59.64105952500017,46.152897528000096],[59.59085058400012,46.26556220900011],[59.74675750300014,46.23956104200005],[59.89221956600011,46.08364942900005],[60.05673553800017,46.14429166000019],[60.12795656900005,46.14429166000019],[60.34267863300016,46.05764038300009],[60.465766546,46.118290493000075],[60.51581556000008,46.06626251200004],[60.72555558900018,46.10089251200003],[60.827590508000185,46.09227038400002],[60.92456057800007,46.001778184000045],[60.985637495000105,46.09122951900014],[61.224441605000095,46.29993220300014],[61.45447958500006,46.22206298100008],[61.52555460299999,46.15403059300013],[61.62803661300012,46.13205056100014],[61.86643956500012,46.15509157499997],[61.93989957000019,46.139580528000124],[61.98667159600012,46.04000938500002],[62.07763653500007,46.01619019500009],[62.25033156900008,46.05449046400014],[62.49275548700007,45.96997908700018],[62.60308849100005,45.96173129400012],[62.790031586000055,46.02641025000008],[62.87569061300013,46.09598641700012],[63.0431975840001,46.11963746500015],[63.19533952000006,46.19963183500005],[63.38068049900005,46.36374044700017],[63.59967062800007,46.45599167300003],[63.83646056600003,46.665003649000084],[64.181419635,46.774265110000044],[64.28642258600013,46.734324838000134],[64.40841649300006,46.746582030000184],[64.47074851600001,46.81752428000016],[64.41261264200006,46.99195537300005],[64.62857858000007,46.952304948000176],[64.76576954800004,46.99515608700017],[64.89761353200004,46.99292415300005],[64.979606483,47.053963687000135],[64.96903958500019,47.14241590000006],[65.052429631,47.29127782900014],[65.0499195860001,47.378535621000026],[64.93296052099998,47.45858715500003],[64.90377054300012,47.52567741700017],[64.97737153200012,47.63149022700003],[64.96520955800014,47.77379013300009],[65.01236748700012,47.89033010300005],[65.10649860600006,47.88345996000015],[65.29234350500013,47.77372928000011],[65.32054156800012,47.59562791900015],[65.46389055300006,47.432086930000025],[65.56231656000006,47.38959856000014],[65.78134155700013,47.377578575000086],[65.88900760600012,47.318335116000185],[65.89810163600009,47.250375818000066],[65.84768650000018,47.14932409600016],[65.96798659199999,47.009835481000096],[65.9927296350001,46.864704504000144],[66.10501863900004,46.73410405900006],[66.39273852999997,46.717036995000115],[66.60427060900008,46.594431209000106],[66.84612254600006,46.58927416000017],[67.01748653400006,46.45958181000003],[67.04129750900012,46.363172321000036],[67.16623648100011,46.30563122600017],[67.07417250700007,46.20399998000005],[67.14808664400005,46.13090978400015],[67.38831349700001,46.20058988600016],[67.6011506390002,46.22280997600012],[67.97341962500019,46.18583069600004],[68.05053749300009,46.232400047000056],[68.20699359500014,46.38079242300006],[68.30500050700016,46.37067228],[68.41194956800018,46.29024322600009],[68.51631951800005,46.311353049000104],[68.57791862700014,46.374582606000104],[68.56092063000011,46.43401164100004],[68.83747062900011,46.41584269200018],[69.00012263400004,46.45456172000013],[69.05605356500013,46.42212157600011],[69.21476758400019,46.444372846000135],[69.43884251100013,46.587191257000086],[69.58616652900008,46.60683324100006],[69.90936249000003,46.58834343299998],[70.09073648100008,46.511510885000064],[70.46273054200014,46.57794015000013],[70.60267664100007,46.54876207500007],[70.84317758300011,46.35471129300004],[70.88102757600018,46.287431097000194],[70.99913764400003,46.24044181300019],[71.21662154500018,46.22028098800013],[71.3328626170001,46.15284857700004],[71.51274161200001,46.136555666000106],[71.72099251100002,46.15858967800017],[71.89605761100006,46.09389949000018],[72.09504650700012,46.136082759000146],[72.18612661400005,46.19542780699999],[72.3140865920002,46.19778580400015],[72.38249163900014,46.33048826300006],[72.74098161500012,46.4118787220001],[72.91532151299998,46.51558214300013],[73.07376848500007,46.52806313200011],[73.31984758400006,46.607722226000135],[73.51117659400018,46.77915209500003],[73.5676875530001,46.80606437400019],[74.04679160700016,46.85022359300007],[74.40743254600005,46.95746300299999],[74.56864956900012,47.04197438000017],[74.72074155000007,47.0523736400001],[74.86499762400018,47.09956476100001],[75.08940162400012,47.05254446300012],[75.28778853200009,47.09603665000009],[75.69328355000016,47.00542525900005],[75.83602149400002,46.92006378899998],[75.99698655700001,46.95853521599997],[76.13002764500015,46.96296421400018],[76.26914259500018,46.93393382700009],[76.71761364200006,46.79121432400018],[76.94812754700001,46.75383304700017],[77.10513249600007,46.75866320300014],[77.3444135360001,46.79984215200017],[77.51081057500011,46.792068272000165],[78.02648956600012,46.82880431000018],[78.17343857800006,46.775611076000075],[78.43518865100015,46.790275048000126],[78.77953349400008,46.90768489200008],[78.94600664100017,46.92771596400013],[79.34607655600013,46.86717263900016],[79.5186465320001,46.75832289700003],[79.70356757700017,46.78270317200014],[79.93260157300017,46.905025649000095],[80.12861657000013,46.889148648000116],[80.208808584,46.91468478700011],[80.24021155200006,46.987504247000174],[80.36083954400004,47.05336454800005],[80.34403952800017,47.173566237000045],[80.24925260800006,47.365771491000146],[79.98522165200006,47.52845735900013],[80.19248952200019,47.61333888100006],[80.27343758400008,47.69000747800004],[80.45951063800015,47.80431937100013],[80.49904656700011,47.87459106800014],[80.4798436260001,48.01100201600002],[80.66641255400003,48.140374177000126],[80.72660065400015,48.24676299200013],[80.70812962100013,48.34341287400014],[80.64958152500014,48.40304525300007],[80.6382066110001,48.56636479300005],[80.83274052600007,48.713358397000036],[80.85025753000014,48.782619069000134],[80.74707060200006,48.850959742999976],[80.7584386420001,48.90939736600018],[80.92994663100006,48.96839992900004],[80.984680626,49.07369088300004],[81.17401155800019,49.12928268200011],[81.28797962500005,49.305245484000125],[81.28031152500012,49.4046466420001],[81.11002360600003,49.64204929700003],[81.1305775420002,49.7101991990001],[81.25380660600007,49.73795956000009],[81.18108353700012,49.82995966400017],[81.29842364400008,50.07327206400009],[81.28563654800007,50.20269870800013],[81.19231461700014,50.300214943000185],[81.09217065500019,50.3362184020001],[80.82586652700019,50.289655757000105],[80.3799286580001,50.324595217000194],[80.12351249400007,50.405566414000134],[79.69915752300017,50.442867894000074],[79.4986575370001,50.54636964700012],[79.29389149800011,50.574498978000065],[78.9978865990002,50.540700462000075],[78.91742653100016,50.568693840000094],[78.65448756900003,50.596442298000056],[78.62380259500009,50.51978794900003],[78.68448656800018,50.38364723400002],[78.64576754000018,50.251905341],[78.577926595,50.17105534700005],[78.45094260500014,50.12098269600011],[78.0973436380001,50.050352756000166],[78.00528754200019,49.973432533],[78.02297956000012,49.88132849300007],[78.11215949000007,49.77160904500005],[78.11717957900004,49.647626448000096],[77.99497260400005,49.43774694500013],[78.17050155900017,49.38245538500013],[78.40840159700014,49.36625417200014],[78.54889654400017,49.312653578000095],[78.86258658800011,49.02720032100012],[79.07131961400012,48.98128995500019],[79.17205064400014,48.90478916300003],[79.21199058100018,48.82715949600009],[79.37133056000016,48.70488630400007],[79.5687636080001,48.62200721900018],[79.61131249500016,48.54219574300015],[79.72820249300008,48.45275463300004],[79.73825859800019,48.33143882200011],[79.85645265300013,48.25302293300018],[79.86210658200014,48.20014368500006],[79.69924955600004,48.143453018],[79.53354653800017,48.143933133000075],[79.46434755700005,48.19794242900019],[79.22843956300011,48.28288513900003],[79.11549358500014,48.41630559200007],[78.91179657400016,48.495705181000176],[78.70334652100019,48.53009445400011],[78.51180259900008,48.631665351000095],[78.27586359100002,48.594758155000136],[78.0450365390002,48.70408817900005],[77.84925858200012,48.7531876920001],[77.71481352500007,48.720598349000056],[77.69053651600018,48.56467583900013],[77.57826260000007,48.470196033000036],[77.42820758900001,48.42613555300011],[77.3340375780001,48.32819251100017],[77.29759960100012,48.20554163100013],[77.06578851300003,48.19921245500012],[76.90225959300011,48.29773133400016],[76.79485355100019,48.43383349300018],[76.68485263800011,48.48737306700019],[76.53352357900019,48.50855732100007],[76.38363654200003,48.485133925000184],[76.25418056200004,48.407554214000186],[76.08114656400005,48.41952457800011],[75.93199160300009,48.32640347800003],[75.90381650600006,48.21481453000007],[75.93311360500019,48.048153461000084],[75.9080966410001,47.95280059500004],[75.81687152700016,47.87924101300001],[75.72329763700009,47.87832906200015],[75.62003359500005,47.92592921900018],[75.51429756300018,48.15834531300004],[75.4082104970002,48.234242776000144],[75.16931150400006,48.33880483899998],[75.11071764200005,48.55752674700011],[75.18713360900006,48.70751805400005],[75.04538758000007,48.76780975400004],[74.8271335500001,48.779917916000045],[74.65766152600014,48.8227492740001],[74.51547259600017,48.797557129000154],[74.19049849900011,48.655427543000144],[73.99616960500015,48.72043825500015],[73.80888352199997,48.739409352000166],[73.53843655500015,48.71663940900004],[73.36025958900007,48.60661821200006],[73.33769952900019,48.40707326100011],[73.28488163600014,48.33649378000018],[73.39540055000003,48.21491360400012],[73.38864155100003,47.98015963000006],[73.481697608,47.88876201700015],[73.68441762500015,47.83716050600003],[73.69319163300014,47.77595316700018],[73.49295852700016,47.755621017000124],[73.4040065860001,47.639909346000195],[73.47099257700006,47.527992331],[73.34797658000008,47.48124712700013],[73.20658158500004,47.50811716200019],[73.03340962100015,47.45484899400009],[72.93073264800017,47.34855942100012],[72.77847252700008,47.317815941000106],[72.70168255900012,47.346175272000096],[72.4551466470001,47.311705030000155],[72.44669349700007,47.407298625000124],[72.32003053500006,47.505157344000054],[72.26645659500002,47.66821050699997],[72.28412648500012,47.74674407800006],[72.41313956500005,47.85135861200007],[72.41075860200016,47.89208896200017],[72.19290153900005,47.995894977000034],[72.13638253300007,48.102951662],[72.25833151300014,48.203862568000034],[72.34950264800011,48.24197592000013],[72.51093257100018,48.3797640140001],[72.58917964900007,48.483395016000145],[72.70408648900008,48.55032451200009],[72.9139785650001,48.59031792500008],[72.96987161000004,48.62567648100003],[72.99961060200008,48.738566635000154]]]},"properties":{"objectid":368,"eco_name":"Kazakh semi-desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Palearctic","eco_biome_":"PA13","nnh":2,"eco_id":828,"shape_leng":88.9248121785,"shape_area":82.3317927034,"nnh_name":"Nature Could Reach Half Protected","color":"#CE9053","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":679943.7363978818,"percentage":2.577284250486344}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[82.13135565900012,50.277703666000036],[82.09404764100003,50.464245435000066],[82.0589445650001,50.879366567000034],[82.13545960700009,51.07053933800012],[82.40115353200014,51.33125961000013],[82.58902752200015,51.549715476000074],[82.82479855600019,51.70873811700011],[82.96517950900017,51.70025781000004],[83.34393357400006,51.5513554800001],[83.68560760800011,51.6862576850001],[83.78375952700014,51.870022028],[83.3240205190001,52.03667002100019],[82.97853054000007,52.0728456440001],[82.7897335350001,52.14819493100015],[82.53733850400016,52.317731328000036],[82.44180257800008,52.47327430500013],[82.43382250300016,52.60806570200003],[82.48095662700007,52.75212664500009],[82.65453360400011,52.79037729300018],[82.77501658900013,52.666851006000115],[82.88105051400004,52.299728844000185],[83.03708651500006,52.22554732400005],[83.19589960800016,52.21234834100011],[83.34586359100012,52.23883767000012],[83.38491856600007,52.327470260999974],[83.39453864400008,52.56698398300006],[83.45234661800009,52.77176913300008],[83.6028596160001,53.012572829000135],[83.60234060800013,53.18339869800013],[83.72569255100018,53.324289438000164],[83.66593964000009,53.40621248400009],[83.56089058800018,53.42881076500015],[83.26880657600003,53.5599246860001],[83.2024535860001,53.49706845800017],[82.91130851400004,53.32541848100004],[82.67700951000012,53.240337637000096],[82.44230649800005,53.19643674900004],[82.07074762600018,53.16046799000014],[81.6508865290001,53.187377588000174],[81.30151354900005,53.30098908900004],[81.09741957100016,53.395820265000054],[80.90724156400017,53.41343349300007],[80.52037063100005,53.37728083600007],[80.132728564,53.434750014000144],[79.96999357800001,53.57526792700014],[79.83396149200007,53.585987375000116],[79.72644749100004,53.741058787000156],[79.47042862800009,53.859053520000145],[79.38603962700012,54.03348830200008],[79.38536052500007,54.296452744000135],[79.2027515440002,54.54726761799998],[78.89911659800015,54.60302822900019],[78.74540758100011,54.53220735000019],[78.49481952200011,54.31917424],[78.32113659700013,54.20149952800011],[78.0251925500001,54.17502863900006],[77.24938957600011,54.353613971000016],[77.00256364900014,54.268082014000186],[76.84095753800005,54.237903307000124],[76.83763864000008,54.39893324500002],[76.93248758600015,54.48301513400003],[76.81974059500004,54.50201657300005],[76.26663959100017,54.393326087000105],[76.05355048900014,54.37442757800005],[75.88469654699998,54.38732498000013],[75.57940651000007,54.328802364000126],[75.31140152600005,54.293652518000044],[75.08509064300017,54.36436426500006],[75.02739750100005,54.49270846900009],[75.13607759300004,54.59186973700008],[75.59610762000011,54.919237036000084],[75.65395364900019,55.02944984200019],[75.6576765550002,55.13620360500005],[75.58750963200015,55.24600435800005],[75.43247962700002,55.34232818300006],[75.25454758000006,55.40194949900018],[75.02214053900013,55.41816999000014],[74.75170849100016,55.37872911300008],[74.53443162300005,55.290717620000066],[74.33051249200014,55.11834210500007],[74.18517263700016,55.08918247000014],[73.98110162600017,55.10197258300013],[73.69611356500013,55.162445165],[73.38804660400012,55.27245613600007],[73.23484050100012,55.25567472700004],[73.04418958700018,55.17098246900014],[73.04432654700014,55.02803095400003],[73.07874264200018,54.82139440900005],[72.97049757000013,54.55280688300013],[72.76145156400014,54.47015578600008],[72.2186435370001,54.366012482000144],[71.99372857600014,54.51106584300004],[71.79801951900009,54.55522908500012],[71.49607855600016,54.573170381000125],[71.0801006260001,54.55548909200007],[70.76421351700003,54.57984958500015],[70.45323149800004,54.46170565400007],[70.28793349400013,54.43730610100016],[69.99104363400005,54.45285537000018],[69.80666355700015,54.38270571300012],[69.60704048600013,54.352602946000104],[69.35881763100019,54.351832146000106],[69.1551975660002,54.24126025900006],[68.97545653700013,54.267471811000064],[68.64774356900006,54.25461950400006],[68.52741263100012,54.29544155200011],[68.35576650900003,54.23209012100017],[68.17185263400017,54.19240801199999],[67.86691262600016,54.08394249700012],[67.6622464990001,54.14811904200013],[67.42347759300003,54.18421101399997],[67.22962160700013,54.14432690100017],[66.98822748900005,54.013593854000135],[66.70768753600004,54.047514914000146],[66.4665525870002,54.185721098000045],[66.20250654300014,54.20296049300015],[66.06777164100004,54.28171232900007],[65.96704061000008,54.38775195400012],[65.76837156800019,54.430805935000194],[65.48174249800019,54.40270610800019],[65.32727056000016,54.347792907000155],[64.979721482,54.40095529600012],[64.78639255000019,54.35249213700013],[64.57933858700011,54.34997488400012],[64.31960251800007,54.38677596500008],[64.02908357400008,54.29940585600002],[63.51821847800005,54.20052622100013],[63.15769957800006,54.184019907000106],[63.138770559000136,54.10711728600012],[62.81082155600018,54.11054716100017],[62.58591061800007,53.97441600100012],[62.44522054100008,53.93015301400004],[62.3403515330001,54.03037526300017],[62.069740615000114,54.051314933000015],[61.94609061200009,53.947262322000086],[61.831428523,54.02244430600001],[61.77157955500002,53.96425394900007],[61.82744963300013,53.85492224800009],[61.69247048200015,53.67309831600005],[61.70074861699999,53.408642230000055],[61.68484462700002,53.294919920000154],[61.78966854000004,53.164626085],[62.11425053300013,53.11297394800016],[62.13571960400009,53.00806386800019],[61.90222559799997,52.878254172000084],[61.61698155300007,52.467052083000056],[61.431755575000125,52.27071019200008],[61.3835985230001,52.104008219000036],[61.279872639000075,52.003985292000095],[61.23912452000019,51.859508774],[61.12058261600015,51.69650774700017],[61.06130948400005,51.570555570000124],[61.07923552500006,51.46500477800009],[60.855712631000074,51.12971423400006],[60.55935250700014,50.99635044300015],[60.218543485000055,51.02598684100019],[59.96664047200011,50.99635044300015],[59.655464496000036,50.92226011800017],[59.21092657300011,50.92226011800017],[58.825660607000145,50.892623552000146],[58.589580616000035,50.83126668000011],[58.51566647900012,50.76755264900015],[58.4973716340001,50.668292140000176],[58.20198062600008,50.44551909000006],[58.09576062200006,50.43607000300011],[58.01147052700014,50.50317904100018],[57.870170583,50.48244958800018],[57.760108483000124,50.60679126600013],[57.66088854200012,50.64103972300012],[57.54169050300004,50.61731960700007],[57.38360948500008,50.45649737200017],[57.37388949500013,50.36121692600011],[57.21892151600008,50.26694666600014],[57.12815053400004,50.30802721200007],[57.0410156210001,50.39782622900003],[56.843028530000026,50.50493002000019],[56.764369565000095,50.59950119000001],[56.610130477000155,50.689792727000054],[56.43762956800015,50.870310423000035],[56.12697561700014,50.99269224500017],[55.910461502000146,51.00210327800016],[55.58098263400018,51.09624395300017],[55.26091362600016,51.11506903700007],[55.1761935400001,51.19038026900006],[55.02557358900003,51.26569150200015],[54.81846950200003,51.29393600100008],[54.70550558700012,51.284520777000125],[54.416061539000054,51.38630658600016],[54.20657749399999,51.41631312900017],[53.641342512000165,51.38630658600016],[53.364440473,51.50069156900008],[53.21020557500009,51.46931190200013],[52.68145349700012,51.44495040400005],[52.49069563000012,51.36915939100004],[52.24050152000012,51.40685985100015],[51.96694553600014,51.346651969000106],[51.82489356700006,51.268933790000176],[51.65495651500015,51.24437414300019],[51.427787493000096,51.12543745100015],[51.370952490000036,50.95101943400016],[51.24496862899997,50.811719579000055],[51.24875255600017,50.69616364400002],[51.18785048500018,50.64887914900004],[51.208122621000086,50.44888710700013],[51.15110355100012,50.366396774],[51.17990159100009,50.23282008300009],[51.35678858200015,50.10357230900007],[51.528518523000116,50.13995379200003],[51.742530472000055,50.26026628900007],[51.912033509000196,50.26931941500004],[52.03735754600012,50.377338008000095],[52.27696648699998,50.488198736000186],[52.655254518,50.48693960600008],[52.791080577000116,50.406448357000045],[52.93281151899998,50.39482835700011],[52.99314848100005,50.448718966000115],[53.102008616000035,50.34479778300005],[53.2213245050001,50.34680457800005],[53.319702568000025,50.2935349010001],[53.57640053200015,50.38456723100006],[53.76125351600018,50.258664340000166],[53.8598635890001,50.12307364499998],[53.89498158400011,49.99214395900009],[54.03694152000014,49.86673040300013],[54.18866352300006,49.84154077200003],[54.48175051400017,49.64700853400012],[54.61656554799998,49.60383703900004],[54.824867577000134,49.63245838800003],[54.933189594000055,49.55132625900012],[55.08922961800016,49.556366298000114],[55.24226355600018,49.50100667700008],[55.37739559400012,49.484126530000026],[55.544071582000015,49.37418512900007],[55.70589059400004,49.34021478400018],[56.226432597999974,49.2779622220001],[56.352977543000065,49.20488325800005],[56.59036259600015,49.181102122000084],[56.67379354600013,49.19730316700003],[56.86481058200019,49.16461106300011],[56.98606151700011,49.17267613000013],[57.18572951500005,49.089133030000085],[57.405525480000165,49.070741794000185],[57.57889961500018,48.949993605000145],[57.71823852900019,48.93729133400012],[57.83421355900015,48.89471797099998],[58.04631862500008,48.86530268800004],[58.17248957000015,48.79584805900015],[58.284179602999984,48.78095894900008],[58.45693247200012,48.712095076000026],[58.30028559800007,48.483315220000065],[58.2895394950001,48.29278450200013],[58.1473125120001,47.89723109200003],[58.22389963799998,47.81315037700017],[58.32786960300007,47.81532162500008],[58.415370637000194,47.88471892200005],[58.52980457000007,48.05051028500003],[58.53453062300002,48.144204037000065],[58.63803053100003,48.251444118000165],[58.72932052100015,48.38983822400019],[58.81184052500009,48.44935560400012],[58.95497158000012,48.49160408400007],[59.236240591000126,48.68474811100015],[59.29895063800012,48.85216858100017],[59.3986734930001,48.9043202790001],[59.528400543000146,49.028989522000074],[59.55612955600003,49.16682790800013],[59.52608160600005,49.33872381100019],[59.53952450200012,49.481124467000086],[59.62533155400007,49.624116215000186],[59.896400627000105,49.867950305000136],[60.11082463000014,49.784880113000156],[60.227020607000156,49.81037065400011],[60.75992155900002,50.08463205800018],[60.87952058900015,50.088973045000046],[61.05950955400016,49.99612201000019],[61.26710163600006,49.96879348500005],[61.529899614000044,50.04355050600009],[61.75268557200019,50.203144793000035],[61.98720150000008,50.30705524700005],[62.23751061000007,50.32758537700016],[62.383201498,50.38960626400018],[62.57580154000016,50.421397649000085],[62.826221626,50.36260882400012],[63.004589532000125,50.41677855000006],[63.13885856900015,50.57889813600008],[63.259899621000045,50.62700975800004],[63.41761049400003,50.629881733000104],[63.50559952200007,50.661300291000146],[63.95119054800017,50.657997151000075],[64.14441655000019,50.59633132200014],[64.16731255700006,50.4872787380001],[64.31298852600014,50.45567728600014],[64.31770351400013,50.368536842000026],[64.463180496,50.37812708000018],[64.62835662700007,50.30070696100006],[64.96794155600003,50.35782175200018],[65.400672563,50.26178559300001],[65.60977154300014,50.33397540500005],[66.05496962500018,50.20918361900016],[66.3825835190001,50.24422634400014],[66.52156050299999,50.20381651800005],[66.64729357700014,50.116382372000146],[66.77411663400017,49.931851085000176],[66.90534957700015,49.80884866800011],[67.04416663400013,49.76230882100009],[67.34602361100019,49.72392858900008],[67.49501059900007,49.76451007600002],[67.540672525,49.81198048200008],[67.69458756900013,49.865532126000176],[67.99035660200008,49.85746420900011],[68.212226585,49.9796426850001],[68.533256494,49.889011513000185],[68.72673060100004,49.926442075000125],[68.79382354500007,49.97241362900007],[68.8999635850002,49.966470525000034],[69.142951606,49.89699276100009],[69.22026862700017,49.84487107000007],[69.35971851800008,49.843699951000076],[69.63619257700014,49.94786219700012],[69.71758253400014,49.93739001400007],[69.8048785470001,50.00208104000012],[69.96576649600007,50.04242163200013],[70.11679850100012,49.96137348900004],[70.36717248700012,49.937795196000195],[70.58323649300007,49.811999425000124],[70.75280759100008,49.804984443000194],[70.94750260600006,49.66950774100019],[71.20809161700015,49.61477726600015],[71.28913154500003,49.54973638000007],[71.33809661200013,49.443358126000135],[71.6000215310001,49.40858663900008],[71.59989949100014,49.29364442700012],[71.6738205010002,49.24803178700017],[71.94735754100003,49.232543538000016],[72.10077654400004,49.13958270000006],[72.28943658800011,49.10827143000017],[72.40196950600017,48.99959301399997],[72.79733264700008,48.956341556000154],[72.82042663500005,48.799682109000116],[72.99961060200008,48.738566635000154],[73.25070962300009,48.80203926800016],[73.41741964200003,48.772452826000176],[73.58940154300012,48.894188067000016],[73.8126065960002,48.95190149400014],[74.01412163000003,48.97205494200017],[74.09332256900007,49.04587352500005],[74.05323762500007,49.19849339800004],[74.05785354000017,49.3478330960001],[74.15264850600005,49.45177724500019],[74.37612949100003,49.51557492800009],[74.50372351500016,49.57850676000004],[74.73934954200013,49.633828327000174],[74.92556760300005,49.620957076000195],[75.19113948800015,49.56051651300004],[75.49542252300006,49.62058709900003],[75.72653958900008,49.584335870000075],[75.92829853700005,49.46933649400006],[75.9470066090002,49.31448468800005],[76.15186350800008,49.25686296000015],[76.3652416170001,49.34295784600016],[76.59047659900017,49.356263950000084],[76.60173064600008,49.27707306899998],[76.44259652600016,49.161963722],[76.39163254300018,49.017621315000156],[76.44938653800011,48.92664849600004],[76.59195751400006,48.8691977580001],[76.81094362000005,48.91095019700015],[76.99189751,48.92041822700014],[77.13925958200008,48.889279122],[77.31289657400004,48.75987863],[77.41438264600004,48.71614739100005],[77.71481352500007,48.720598349000056],[77.84925858200012,48.7531876920001],[78.0450365390002,48.70408817900005],[78.27586359100002,48.594758155000136],[78.51180259900008,48.631665351000095],[78.56217951300005,48.681306837000136],[78.53849057800016,48.804069029000175],[78.37183353300014,48.88698985600013],[78.1789325800001,48.86814867900006],[78.06343850400015,48.89617994300016],[77.99932851200003,48.96299092000004],[77.87003363200006,49.012121110000066],[77.78695656600001,49.088660123000125],[77.76780660000009,49.16730483900005],[77.80879259700009,49.27443411100012],[77.99497260400005,49.43774694500013],[78.11717957900004,49.647626448000096],[78.11215949000007,49.77160904500005],[78.02297956000012,49.88132849300007],[78.00528754200019,49.973432533],[78.0973436380001,50.050352756000166],[78.45094260500014,50.12098269600011],[78.577926595,50.17105534700005],[78.64576754000018,50.251905341],[78.68448656800018,50.38364723400002],[78.62380259500009,50.51978794900003],[78.65448756900003,50.596442298000056],[78.91742653100016,50.568693840000094],[78.9978865990002,50.540700462000075],[79.29389149800011,50.574498978000065],[79.4986575370001,50.54636964700012],[79.69915752300017,50.442867894000074],[80.12351249400007,50.405566414000134],[80.3799286580001,50.324595217000194],[80.82586652700019,50.289655757000105],[81.09217065500019,50.3362184020001],[81.19231461700014,50.300214943000185],[81.20748150300005,50.31032821200006],[81.73696163400012,50.242604278000044],[82.13135565900012,50.277703666000036]],[[67.87857855800013,53.44241425900003],[68.05396250600006,53.42079163100016],[68.21330248600015,53.35074121600013],[68.38955664300005,53.37452251900004],[68.61873648400012,53.433282008],[68.77586364100017,53.517412846000184],[68.97631048500006,53.53454528900011],[68.9903795100002,53.44842223900014],[69.20644351600015,53.373271604000195],[69.22286249100017,53.30578018400007],[69.04853851900003,53.15723693400014],[69.12870052600005,53.09153069200016],[69.37146760000013,53.09186647100012],[69.6856535180001,53.045772542000066],[69.81514755100011,53.15432589900007],[70.05420663900003,53.20046576200008],[70.24288160300011,53.127657533000104],[70.50921657700019,53.160516941000026],[70.67098261400014,53.147245873000145],[70.82987248500007,53.01403396300009],[70.71678150100018,52.85342077200005],[70.84295663600005,52.64451541400018],[70.70903762800009,52.58452445600017],[70.67365258600012,52.52150411100007],[70.68245660100013,52.39538077600008],[70.55851759,52.30988016700013],[70.43512759300006,52.29854967800014],[70.19687652099998,52.35102994700014],[70.06249952600007,52.30991805300005],[69.65763851500003,52.30547799100003],[69.47000156500002,52.19820706500013],[69.08161954400009,52.216464359000156],[69.01170357500018,52.331700440000134],[68.66298656300006,52.50559291200011],[68.53807860300014,52.514253095000186],[68.39119748500008,52.47403705800008],[68.17289752200014,52.51570199000008],[67.89769751200004,52.600973774000124],[67.65666163700007,52.554803904000096],[67.51056657300018,52.57157290700013],[67.3278425920002,52.49865353500019],[67.02120960700017,52.48815151300005],[66.90940055100015,52.54027337200006],[66.86411262500008,52.65936697300003],[66.78771258300003,52.725068186000044],[66.79778260200004,52.80538861100018],[66.6548305840002,52.92244809200008],[66.77123258800009,53.02443339000013],[66.7895586140001,53.119463217000146],[66.9919505630001,53.25424992000006],[67.11466263100004,53.46426973600012],[67.40570058200007,53.65202889400007],[67.6103135680001,53.63861248400008],[67.87857855800013,53.44241425900003]]]},"properties":{"objectid":369,"eco_name":"Kazakh steppe","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Palearctic","eco_biome_":"PA08","nnh":3,"eco_id":732,"shape_leng":101.34309317,"shape_area":105.189851573,"nnh_name":"Nature Could Recover","color":"#BDFC53","color_bio":"#FEFF73","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":806305.8594129123,"percentage":7.610034935415887}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[78.51180259900008,48.631665351000095],[78.70334652100019,48.53009445400011],[78.91179657400016,48.495705181000176],[79.11549358500014,48.41630559200007],[79.22843956300011,48.28288513900003],[79.46434755700005,48.19794242900019],[79.53354653800017,48.143933133000075],[79.69924955600004,48.143453018],[79.86210658200014,48.20014368500006],[79.85645265300013,48.25302293300018],[79.73825859800019,48.33143882200011],[79.72820249300008,48.45275463300004],[79.61131249500016,48.54219574300015],[79.5687636080001,48.62200721900018],[79.37133056000016,48.70488630400007],[79.21199058100018,48.82715949600009],[79.17205064400014,48.90478916300003],[79.07131961400012,48.98128995500019],[78.86258658800011,49.02720032100012],[78.54889654400017,49.312653578000095],[78.40840159700014,49.36625417200014],[78.17050155900017,49.38245538500013],[77.99497260400005,49.43774694500013],[77.80879259700009,49.27443411100012],[77.76780660000009,49.16730483900005],[77.78695656600001,49.088660123000125],[77.87003363200006,49.012121110000066],[77.99932851200003,48.96299092000004],[78.06343850400015,48.89617994300016],[78.1789325800001,48.86814867900006],[78.37183353300014,48.88698985600013],[78.53849057800016,48.804069029000175],[78.56217951300005,48.681306837000136],[78.51180259900008,48.631665351000095]]],[[[77.71481352500007,48.720598349000056],[77.41438264600004,48.71614739100005],[77.31289657400004,48.75987863],[77.13925958200008,48.889279122],[76.99189751,48.92041822700014],[76.81094362000005,48.91095019700015],[76.59195751400006,48.8691977580001],[76.44938653800011,48.92664849600004],[76.39163254300018,49.017621315000156],[76.44259652600016,49.161963722],[76.60173064600008,49.27707306899998],[76.59047659900017,49.356263950000084],[76.3652416170001,49.34295784600016],[76.15186350800008,49.25686296000015],[75.9470066090002,49.31448468800005],[75.92829853700005,49.46933649400006],[75.72653958900008,49.584335870000075],[75.49542252300006,49.62058709900003],[75.19113948800015,49.56051651300004],[74.92556760300005,49.620957076000195],[74.73934954200013,49.633828327000174],[74.50372351500016,49.57850676000004],[74.37612949100003,49.51557492800009],[74.15264850600005,49.45177724500019],[74.05785354000017,49.3478330960001],[74.05323762500007,49.19849339800004],[74.09332256900007,49.04587352500005],[74.01412163000003,48.97205494200017],[73.8126065960002,48.95190149400014],[73.58940154300012,48.894188067000016],[73.41741964200003,48.772452826000176],[73.25070962300009,48.80203926800016],[72.99961060200008,48.738566635000154],[72.96987161000004,48.62567648100003],[72.9139785650001,48.59031792500008],[72.70408648900008,48.55032451200009],[72.58917964900007,48.483395016000145],[72.51093257100018,48.3797640140001],[72.34950264800011,48.24197592000013],[72.25833151300014,48.203862568000034],[72.13638253300007,48.102951662],[72.19290153900005,47.995894977000034],[72.41075860200016,47.89208896200017],[72.41313956500005,47.85135861200007],[72.28412648500012,47.74674407800006],[72.26645659500002,47.66821050699997],[72.32003053500006,47.505157344000054],[72.44669349700007,47.407298625000124],[72.4551466470001,47.311705030000155],[72.70168255900012,47.346175272000096],[72.77847252700008,47.317815941000106],[72.93073264800017,47.34855942100012],[73.03340962100015,47.45484899400009],[73.20658158500004,47.50811716200019],[73.34797658000008,47.48124712700013],[73.47099257700006,47.527992331],[73.4040065860001,47.639909346000195],[73.49295852700016,47.755621017000124],[73.69319163300014,47.77595316700018],[73.68441762500015,47.83716050600003],[73.481697608,47.88876201700015],[73.38864155100003,47.98015963000006],[73.39540055000003,48.21491360400012],[73.28488163600014,48.33649378000018],[73.33769952900019,48.40707326100011],[73.36025958900007,48.60661821200006],[73.53843655500015,48.71663940900004],[73.80888352199997,48.739409352000166],[73.99616960500015,48.72043825500015],[74.19049849900011,48.655427543000144],[74.51547259600017,48.797557129000154],[74.65766152600014,48.8227492740001],[74.8271335500001,48.779917916000045],[75.04538758000007,48.76780975400004],[75.18713360900006,48.70751805400005],[75.11071764200005,48.55752674700011],[75.16931150400006,48.33880483899998],[75.4082104970002,48.234242776000144],[75.51429756300018,48.15834531300004],[75.62003359500005,47.92592921900018],[75.72329763700009,47.87832906200015],[75.81687152700016,47.87924101300001],[75.9080966410001,47.95280059500004],[75.93311360500019,48.048153461000084],[75.90381650600006,48.21481453000007],[75.93199160300009,48.32640347800003],[76.08114656400005,48.41952457800011],[76.25418056200004,48.407554214000186],[76.38363654200003,48.485133925000184],[76.53352357900019,48.50855732100007],[76.68485263800011,48.48737306700019],[76.79485355100019,48.43383349300018],[76.90225959300011,48.29773133400016],[77.06578851300003,48.19921245500012],[77.29759960100012,48.20554163100013],[77.3340375780001,48.32819251100017],[77.42820758900001,48.42613555300011],[77.57826260000007,48.470196033000036],[77.69053651600018,48.56467583900013],[77.71481352500007,48.720598349000056]]],[[[67.87857855800013,53.44241425900003],[67.6103135680001,53.63861248400008],[67.40570058200007,53.65202889400007],[67.11466263100004,53.46426973600012],[66.9919505630001,53.25424992000006],[66.7895586140001,53.119463217000146],[66.77123258800009,53.02443339000013],[66.6548305840002,52.92244809200008],[66.79778260200004,52.80538861100018],[66.78771258300003,52.725068186000044],[66.86411262500008,52.65936697300003],[66.90940055100015,52.54027337200006],[67.02120960700017,52.48815151300005],[67.3278425920002,52.49865353500019],[67.51056657300018,52.57157290700013],[67.65666163700007,52.554803904000096],[67.89769751200004,52.600973774000124],[68.17289752200014,52.51570199000008],[68.39119748500008,52.47403705800008],[68.53807860300014,52.514253095000186],[68.66298656300006,52.50559291200011],[69.01170357500018,52.331700440000134],[69.08161954400009,52.216464359000156],[69.47000156500002,52.19820706500013],[69.65763851500003,52.30547799100003],[70.06249952600007,52.30991805300005],[70.19687652099998,52.35102994700014],[70.43512759300006,52.29854967800014],[70.55851759,52.30988016700013],[70.68245660100013,52.39538077600008],[70.67365258600012,52.52150411100007],[70.70903762800009,52.58452445600017],[70.84295663600005,52.64451541400018],[70.71678150100018,52.85342077200005],[70.82987248500007,53.01403396300009],[70.67098261400014,53.147245873000145],[70.50921657700019,53.160516941000026],[70.24288160300011,53.127657533000104],[70.05420663900003,53.20046576200008],[69.81514755100011,53.15432589900007],[69.6856535180001,53.045772542000066],[69.37146760000013,53.09186647100012],[69.12870052600005,53.09153069200016],[69.04853851900003,53.15723693400014],[69.22286249100017,53.30578018400007],[69.20644351600015,53.373271604000195],[68.9903795100002,53.44842223900014],[68.97631048500006,53.53454528900011],[68.77586364100017,53.517412846000184],[68.61873648400012,53.433282008],[68.38955664300005,53.37452251900004],[68.21330248600015,53.35074121600013],[68.05396250600006,53.42079163100016],[67.87857855800013,53.44241425900003]]]]},"properties":{"objectid":370,"eco_name":"Kazakh upland steppe","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Palearctic","eco_biome_":"PA08","nnh":2,"eco_id":733,"shape_leng":33.5475524905,"shape_area":9.12043328626,"nnh_name":"Nature Could Reach Half Protected","color":"#54FC51","color_bio":"#FEFF73","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":72112.5430157015,"percentage":0.6806089342209996}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[96.66651153500015,48.04015729300016],[96.79643254300004,48.114738965000186],[96.79666153600004,48.223847875000104],[96.66944855400004,48.30243928100009],[96.56789358200007,48.30281328199999],[96.4055406440001,48.36452001500015],[96.25442465200013,48.317598456000155],[96.20318557500008,48.21935081600009],[96.2959135640001,48.12850288800013],[96.50524153800012,48.06275238900008],[96.66651153500015,48.04015729300016]]],[[[97.94947061400012,48.254544919000125],[97.79618857100007,48.197049422000134],[97.68069466300017,48.275888094000095],[97.56237756100006,48.310480544000086],[97.18988762800018,48.48638199100009],[97.11746262000008,48.40360616999999],[97.15884357300007,48.28978931300003],[97.28301258400006,48.10353873000008],[97.32440158400016,47.989722711000184],[97.31404859200006,47.79312735100012],[97.13815251000005,47.66896538100008],[97.08641856500014,47.606881127000065],[97.07607261400005,47.503410388000134],[97.14849862800008,47.4413299900001],[97.36578354199997,47.4413299900001],[97.53392753800006,47.397353496000164],[97.65259567300012,47.19843836100006],[97.79322858600005,47.18448031300011],[98.07170860200011,46.99828840400011],[98.12163557600019,46.99036834300017],[98.34116365500012,47.11813503500019],[98.58773058100007,47.048894479000126],[98.70041655200009,47.09191292100019],[98.98706858800006,47.247358668],[99.15179461100018,47.3029890250001],[99.55771660400012,47.335665204],[99.76645667100007,47.22760939600005],[100.05928063800008,47.18055121200018],[100.15402263100009,47.08237968000003],[100.36406658600015,46.92141377900015],[100.59413960300009,46.82341742800014],[100.70940351200005,46.66187552300005],[100.82682760500006,46.61960826700016],[100.97055059100012,46.50439699600008],[101.11602053200005,46.47174294500019],[101.3139725870002,46.35751554200016],[101.5649415200001,46.36376743600016],[101.45222453600007,46.22199777000009],[101.5757905530001,46.10813246499998],[101.70533756000003,46.11787558900005],[101.94936359600007,46.35194543200009],[102.15676155200009,46.427698559000135],[102.16546666200009,46.51209091300012],[102.06890864600018,46.55985904400018],[101.85889453000004,46.58991923100018],[101.63530759700012,46.685187775000145],[101.71631651200005,46.8474384540001],[101.68258656100011,46.913986910000176],[101.69840958200007,47.034649603000105],[101.59601558200012,47.12414284800013],[101.40639463600013,47.15514197500005],[101.27728265000019,47.280862980000165],[101.1397015880001,47.324473184],[100.97490666600004,47.30100083700006],[100.75959066000013,47.345195260000025],[100.57803360800017,47.42158859600005],[100.40745567600015,47.40768368900018],[100.32108251100016,47.5213744830001],[100.5448075760001,47.591447026000026],[100.62601464000016,47.657231220000085],[100.60283666600014,47.72767089000007],[100.48971567400008,47.778837212000155],[100.44429766100018,47.92884025400008],[100.34326957600018,47.933268246000125],[100.21932955900013,47.87951912400001],[100.131706651,47.78430741000017],[100.01200066900014,47.77160815600013],[99.81747463300019,47.85346079300018],[99.69581566700015,47.85466979900002],[99.47044355700007,47.768633083000054],[99.37248257800019,47.80271339900008],[99.36585953400004,47.869754040000146],[99.46097552700007,47.93920850100005],[99.60578162200011,47.99845883300003],[99.55165866700008,48.064068516000134],[99.34977751100013,48.107368925],[98.93630258600018,48.132606835000104],[98.94140666200008,48.214944785000114],[99.1587145430002,48.25558695700005],[99.64369162900005,48.23477385300015],[99.87685354400008,48.265177195000035],[99.9456636050001,48.34969192500017],[99.89080052800011,48.36759114400013],[99.50637862000019,48.379413148000026],[99.25846857800013,48.40281223700015],[98.99896250900014,48.34660570800003],[98.48536658800003,48.286650290000125],[98.39643057200016,48.24434481300011],[98.1682055980001,48.261839186000145],[97.94947061400012,48.254544919000125]]]]},"properties":{"objectid":372,"eco_name":"Khangai Mountains alpine meadow","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Palearctic","eco_biome_":"PA10","nnh":2,"eco_id":755,"shape_leng":18.6486521569,"shape_area":4.43649577822,"nnh_name":"Nature Could Reach Half Protected","color":"#C27F4B","color_bio":"#D6C39D","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":37146.57204845628,"percentage":0.7606851599838048}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[124.57034999800021,-15.247000000999947],[124.5047399980001,-15.281180000999882],[124.4609699990001,-15.36902000099991],[124.62529999800006,-15.374750000999938],[124.57034999800021,-15.247000000999947]]],[[[128.1262299970001,-15.04065000299994],[128.12687999700006,-15.155970002999936],[128.2013499970003,-15.130800002999877],[128.1262299970001,-15.04065000299994]]],[[[125.16739999800006,-14.446710001999918],[125.0956099980001,-14.551890001999936],[125.1003399980001,-14.632590001999915],[125.21076999800005,-14.607210001999817],[125.20812999800012,-14.487310001999845],[125.16739999800006,-14.446710001999918]]],[[[132.95841977400016,-14.546582300999887],[132.68486027000006,-14.487785428999928],[132.3919219740003,-14.372296381999945],[132.30445865900003,-14.31269736199988],[132.06182854500003,-14.189551445999939],[131.83773802800022,-14.039882674999888],[131.752136166,-13.950120705999893],[131.56915284900003,-13.666136796999979],[131.41787726600012,-13.52689745899994],[131.3060455780003,-13.480330454999944],[131.05734244100006,-13.416253151999967],[130.90980535500012,-13.34194942399995],[130.851669312,-13.373127085999954],[130.72850043100004,-13.522858553999981],[130.5931243120001,-13.622074136999913],[130.36193851400003,-13.730032043999927],[130.2349701160001,-13.87130550199987],[130.12014776600006,-14.064403763999906],[129.92611693300012,-14.34846981499993],[129.77959549700017,-14.539892271999975],[129.71941999600006,-14.62829000399995],[129.62307999600011,-14.685530003999872],[129.67246999600013,-14.763400003999948],[129.64547999600018,-14.833720003999872],[129.60591999700023,-15.120620002999942],[129.47997999600022,-14.938380002999907],[129.3668299970002,-14.902740002999906],[129.3166199970002,-14.859170002999917],[129.2346199970001,-14.916520002999903],[129.1890599970002,-14.98568000299997],[129.06374999700006,-14.890160002999892],[128.91136999700018,-14.856750002999888],[128.81927999700008,-14.86299000299988],[128.67726999700005,-14.79578000299989],[128.54879999700006,-14.768990002999885],[128.4340099970001,-14.811650002999897],[128.47627999700012,-14.911680002999844],[128.3546599970001,-14.887710002999938],[128.35955999700002,-15.05417000299991],[128.28711999700022,-14.974030002999882],[128.23531999700026,-14.997350002999838],[128.19472999700008,-15.097370002999924],[128.22377999700007,-15.135650002999967],[128.1895899970002,-15.230620002999956],[128.06676999700005,-15.312370002999955],[128.0998099970003,-15.167250002999936],[128.0769299970001,-15.096910002999948],[128.10770999700026,-14.950670002999914],[128.1839599970001,-14.744400002999953],[128.1303299970001,-14.664350002999981],[127.83006999700024,-14.454050002999907],[127.77989999700014,-14.33355000299997],[127.67036999700008,-14.191780002999849],[127.53794999700017,-14.088230002999978],[127.44853999700013,-14.054390002999924],[127.4560799970003,-13.980570002999968],[127.36022999700003,-13.908950002999916],[127.31355999700031,-13.959560002999922],[127.16975999700014,-13.910200002999886],[127.11363999700029,-13.964700002999962],[127.08134999700007,-13.84011000299995],[127.01605999700007,-13.824300002999962],[126.96411999700001,-13.747260002999894],[126.743569997,-13.789250002999893],[126.80889999700014,-13.916170002999934],[126.70350999700008,-14.131950002999929],[126.57475999700011,-14.230310002999886],[126.45544999700007,-14.099170002999927],[126.48710999700006,-13.99427000299994],[126.43086999700006,-13.989670002999901],[126.34967999700007,-14.049990002999948],[126.30186999700015,-14.141000002999817],[126.35269999700017,-14.178530002999878],[126.25737999700004,-14.238320001999966],[126.19151999700023,-14.08223000299995],[126.20065999700012,-14.005980002999877],[126.08877999700007,-13.921270002999847],[126.10077999700013,-14.074930001999974],[126.16468999700021,-14.149770001999968],[126.01516999800003,-14.413140001999864],[126.04519999800016,-14.475340001999939],[125.90197999800012,-14.569510001999959],[125.79473999800018,-14.466440001999956],[125.68857999800002,-14.4945600019999],[125.65960999800006,-14.44009000199992],[125.67607999800009,-14.351840001999904],[125.62961999800007,-14.233820001999959],[125.58996999800013,-14.245470001999934],[125.58945999800005,-14.370580001999883],[125.62160999800005,-14.410220001999846],[125.60697999800016,-14.515150001999928],[125.49611999800015,-14.512180001999866],[125.42428999800006,-14.599780001999932],[125.34472999800005,-14.550280001999965],[125.25850999800002,-14.593250001999934],[125.18275999800028,-14.707440001999942],[125.19870999800003,-14.83686000199998],[125.3055799980001,-14.88195000199994],[125.25652999800013,-14.946620001999861],[125.28548999800012,-14.999510001999852],[125.373699998,-15.003000001999965],[125.36851999800001,-15.109190001999934],[125.31517999800019,-15.155440001999978],[125.23061999800007,-15.102360001999955],[125.14535999800023,-15.136090000999957],[125.09642999800008,-15.057290001999945],[124.97857999800021,-15.13413000099996],[124.867169998,-15.129400000999965],[124.87798999800009,-15.309760000999916],[124.92025999800012,-15.356350000999896],[125.02521999800013,-15.301750000999903],[125.08880999800022,-15.338630000999956],[125.03034999800002,-15.512390000999972],[124.95267999800024,-15.387030000999971],[124.78208999800017,-15.311740000999976],[124.71549999800004,-15.258790000999966],[124.66865999800007,-15.429740000999914],[124.6215899990001,-15.50107000099996],[124.48396999900001,-15.476080000999957],[124.42811999900016,-15.559040000999971],[124.43544999900018,-15.640220000999818],[124.39268999900003,-15.746410000999958],[124.46130999900004,-15.82837000099994],[124.47912999900007,-15.929190000999881],[124.58058999900004,-15.999810000999958],[124.58797999900003,-16.112380000999963],[124.50945999900011,-16.15720000099998],[124.44991999900014,-16.12140000099987],[124.40628999900014,-16.240770000999873],[124.4177399990001,-16.359570000999952],[124.57089999900018,-16.32945000099994],[124.67294999900002,-16.350470000999906],[124.69982999900014,-16.40084000099995],[124.45275999900014,-16.408080000999917],[124.4034799990003,-16.367640000999927],[124.33953999900007,-16.42261],[124.21907999900009,-16.413189999999872],[124.12633999900027,-16.28074],[123.94168999900035,-16.289149999999836],[123.87998999900003,-16.35299],[123.78557999900022,-16.28583],[123.81125999900007,-16.22176],[123.71945999900004,-16.14112],[123.60519999900009,-16.16178],[123.56648999900017,-16.200689999999895],[123.59243999900002,-16.316889999999887],[123.6605799990001,-16.31458],[123.66589999900009,-16.43475999999987],[123.62937999900021,-16.514839999999822],[123.50290999900005,-16.48767],[123.47155999900008,-16.54203],[123.61628999900017,-16.56805],[123.52190999900017,-16.63575999999989],[123.6238899990002,-16.68451],[123.71210999900029,-16.77176],[123.78900999900009,-16.90755],[123.82927000000018,-17.13320999999985],[123.65912,-17.009639999999877],[123.60055000000034,-17.01021],[123.58819000000017,-17.093979999999874],[123.62456,-17.19686],[123.56768000000011,-17.4131],[123.52038000000016,-17.4257],[123.42614,-17.32569],[123.29639,-17.11092],[123.23505000000011,-16.96973],[123.16586000000018,-16.92316],[123.1529800000003,-16.802],[123.10010000000034,-16.71111],[123.05012000000033,-16.69016],[122.96046000000013,-16.5739999999999],[122.9975,-16.48584],[122.98517,-16.38289],[122.92853,-16.391],[122.9057,-16.48632],[122.7789,-16.57914],[122.7415,-16.68389999999988],[122.77466,-16.735129999999856],[122.71613000000013,-16.78513],[122.57694000000015,-16.78087],[122.53383000000031,-16.8360899999999],[122.57103000000018,-16.931409998999982],[122.48440000000016,-16.94141999899989],[122.37012000000016,-16.99375999899985],[122.25710000000015,-17.110839998999893],[122.17358,-17.26279999899998],[122.14944,-17.35575999899993],[122.14717,-17.564259998999944],[122.19962000000021,-17.68264999899992],[122.21320000100002,-17.878519998999934],[122.2552300010002,-17.958569998999906],[122.35347000100035,-17.976599998999916],[122.38290000100005,-18.068339998999875],[122.31303000100013,-18.172859998999968],[122.21804000100008,-18.202379998999902],[122.13515000100006,-18.304679998999973],[122.06351000100005,-18.325869998999906],[122.01846000100011,-18.390219998999896],[121.90486000100009,-18.464099997999938],[121.82373000100017,-18.44663999799991],[121.75992000100007,-18.55775999799988],[121.78060000100015,-18.66285999799993],[121.65243000100008,-18.76672999799996],[121.51047000100016,-19.095419997999954],[121.31730000200002,-19.359809997999946],[121.19836000200007,-19.47655999799997],[120.96412000200007,-19.630649997999967],[120.64209000200003,-19.766019996999887],[120.19460000200002,-19.913849996999943],[119.97795000200006,-19.932309996999948],[119.76473000300018,-19.97657999699993],[119.60291000300003,-20.079139996999857],[119.54338637900003,-20.064235464999967],[119.47065730800023,-20.07426085999998],[119.37258149700006,-20.136926649999964],[119.39915464400019,-20.25716019099991],[119.5026550560001,-20.252923975999977],[120.02786259400023,-20.08935934999994],[120.20686333300011,-20.089254408999977],[120.39736169700006,-19.996795646999942],[120.6534194510001,-19.912572774999887],[120.78090669000005,-19.857097651999936],[121.03435515800004,-19.856668497999976],[121.07146452500012,-19.749406791999945],[121.14981838900019,-19.766138076999823],[121.25948335400017,-19.747577693999972],[121.27616116200022,-19.704742479999936],[121.37350456200011,-19.676456406999876],[121.7007446240001,-19.685032099999887],[121.93840024500003,-19.701847035999833],[121.96566775000008,-19.545619926999905],[121.85272981800006,-19.468116826999903],[121.85505680200004,-19.388706173999935],[121.98514561600018,-19.24728972099996],[122.10074614200005,-19.16390805599991],[122.28833766200012,-19.073768566999888],[122.74119562900012,-18.900247581999906],[123.09499358300002,-18.83789627999994],[123.23018647300034,-18.825372709999954],[123.29765308300023,-18.91488271999998],[123.5111924590002,-18.925474092999934],[123.72061917200028,-18.877140014999952],[123.75351713600003,-18.811872481999842],[123.88830568300023,-18.843219793999936],[124.02780921800013,-18.900381021999863],[124.27593232800007,-18.846282876999908],[124.47943135800006,-18.754880905999926],[124.635154714,-18.811634100999925],[124.74182130500014,-18.91599466399998],[124.84188077700003,-18.803192183999897],[124.81996914100012,-18.72792822499997],[124.94226831700007,-18.612916947999963],[124.96047967800007,-18.548442844999897],[125.12667085700014,-18.53657725499994],[125.27157585800012,-18.58248711799996],[125.39311965700017,-18.55034251899997],[125.56927490700014,-18.420423522999954],[125.6166762470001,-18.45046426399989],[125.71056362100023,-18.409439038999892],[125.76602164500014,-18.326004065999882],[125.82509612500019,-18.38082690999994],[125.95967110000015,-18.442949216999978],[126.05712111900004,-18.393808298999943],[126.14369964000014,-18.425647795999964],[126.1464386790002,-18.53857985899998],[126.20323948500004,-18.58250421699995],[126.3595656660001,-18.627120919999868],[126.4201964990001,-18.688346867999883],[126.55910491800023,-18.652606934999937],[126.62348179100024,-18.756759625999962],[126.67616272300006,-18.77087206899995],[126.79982764600027,-18.708980598999972],[126.96272272600015,-18.737564061999933],[126.94692233500018,-18.805658139999935],[127.09021750800002,-18.847389289999967],[127.2159653340002,-18.749473572999932],[127.20030207200023,-18.661012643999925],[127.28503422800009,-18.593772848999947],[127.38137062600015,-18.56580931099984],[127.44613641900003,-18.47537226299994],[127.60559843800002,-18.305803176999916],[127.82748418000006,-18.13950152399991],[127.82019812600015,-18.019088778999958],[127.92910771400011,-17.762697257999832],[128.07336445900012,-17.481636118999972],[128.16250616700017,-17.379690382999968],[128.26324457300007,-17.13900755499992],[128.31983951900008,-17.09735485899995],[128.3453826980001,-16.996988273999875],[128.23980709600005,-16.86257741599991],[128.17172223700027,-16.883315920999962],[128.17755118000002,-16.75992005699993],[128.27847281400022,-16.670902400999978],[128.25762936800004,-16.628410342999928],[128.32749940500025,-16.451736420999964],[128.38525390300015,-16.487846329999968],[128.44389336200015,-16.301921802999914],[128.52629082300018,-16.317806179999934],[128.472946212,-16.484281506999935],[128.50183108800024,-16.61505126599991],[128.61703498300005,-16.552207946999886],[128.70933532700008,-16.429237380999894],[128.83409123900003,-16.299737982999943],[128.96769709900002,-16.12276080299995],[129.06840516300008,-16.057695440999908],[129.17193960500015,-16.02203278999997],[129.4029693320001,-16.083801213999948],[129.4912872650001,-16.143463096999824],[129.59065238100027,-16.30961035599995],[129.59710711700006,-16.43561366199998],[129.5212706750001,-16.666648920999933],[129.51679993500022,-16.76658065299989],[129.58805851800003,-16.912750315999972],[129.81973264600015,-17.01952553599989],[129.97250372700012,-17.006278944999963],[130.1525421460002,-16.96599602099991],[130.4851226530002,-17.000080191999928],[130.61090082200008,-16.941473086999906],[130.63571159000003,-16.870374766999873],[130.56375127500007,-16.712326102999896],[130.34431455900005,-16.52388381999998],[130.24575812900002,-16.302232771999968],[130.2885589760001,-16.07054908999993],[130.30343618400025,-15.849446385999954],[130.42616267000017,-15.70417878399985],[130.5836182290002,-15.669624388999921],[130.70912163900016,-15.685499209999875],[130.743514935,-15.76762694099989],[130.6897735250003,-15.888841666999951],[130.67718507900008,-15.975950259999934],[130.77520758100002,-16.040565513999923],[131.20742796200034,-15.908518854999897],[131.29411293400028,-15.860549893999973],[131.35652156800018,-15.785573936999981],[131.397689957,-15.647292148999838],[131.30401615300002,-15.413610387999938],[131.28120413300007,-15.32123946799993],[131.32025139600012,-15.138951346999932],[131.43148796900016,-14.978055014999939],[131.6069183530003,-14.917827519999832],[131.72625737600015,-14.962959374999969],[131.75225820700007,-15.002136223999969],[132.00186156100006,-14.933716759999982],[132.29180902600024,-14.936798114999874],[132.49072265200016,-14.910765599999934],[132.62319947000015,-14.787815987999977],[132.69686885500005,-14.755592263999972],[132.8559722980002,-14.773215383999911],[132.93959049900002,-14.64646726199993],[132.95841977400016,-14.546582300999887]]]]},"properties":{"objectid":375,"eco_name":"Kimberly tropical savanna","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Australasia","eco_biome_":"AU07","nnh":2,"eco_id":186,"shape_leng":151.51384062,"shape_area":28.6514829222,"nnh_name":"Nature Could Reach Half Protected","color":"#E8FC39","color_bio":"#FEAA01","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":340413.5637906283,"percentage":1.5878227227999284}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[30.11575560600005,69.62677127600017],[30.163217462000034,69.4244587880001],[30.019134558000076,69.33801152700016],[29.96973245900017,69.17541266300009],[29.740528478000044,69.14342882900019],[29.799966565000034,68.99902691000017],[30.118497494000053,68.9887652810001],[30.04720454599999,69.07068581200014],[30.372373606999986,69.10155669700009],[30.715726536000147,69.06613158900018],[30.943037548000063,69.09825238300004],[31.241376472000127,69.09663551400013],[31.79326260199997,69.00764115900012],[31.919853480000086,68.92078368800003],[32.211547567000025,68.91391605900014],[32.42247044900006,68.87738537800016],[32.96014053700014,68.95693349500016],[33.29800751100015,68.94100285000019],[33.16715259100005,68.78762022400008],[33.289180528000145,68.62480745500017],[33.44353847200017,68.68132109600015],[33.64989455800014,68.59806465700007],[33.92032258300003,68.57971465900005],[33.98716759000018,68.531151421],[33.946033568000075,68.29550544500006],[34.256050495000125,68.21485812500015],[34.08071549700003,68.157382912],[34.06663155300015,68.09028611300016],[34.273433555999986,68.0522284160001],[34.21723960100019,67.98008135200007],[34.239639567000154,67.86707636600005],[34.415714519,67.77870763700014],[34.641529528000035,67.78712290000016],[35.034191518,67.84359111100008],[35.250946528000156,67.9216212660001],[35.341434537000055,68.03316109500014],[35.16763661300013,68.06630615800015],[35.19575856900008,68.21039476200008],[35.32405449400011,68.20583115100004],[35.45910254400019,68.1232469410001],[35.41579861500003,67.97122268700014],[35.51438555400006,67.9413903200001],[35.7924424520001,67.97064249100009],[35.84885752200017,67.8953518780001],[35.71418749500015,67.82185348399997],[35.960498605000055,67.79321939400012],[36.12077752500005,67.82884332000015],[36.25388751200012,67.74098555200015],[36.594867524999984,67.64461411800005],[36.75755657700006,67.55147625400014],[37.131313519000116,67.52576409500017],[37.38422051600014,67.57217653700002],[37.66625546500006,67.43912857600014],[38.00512357300016,67.41870355400016],[38.123012527000185,67.31415993200017],[38.064460575000055,67.26522219000009],[38.395423542000174,67.20226906800013],[38.614486594000084,67.25124486300007],[38.60781057500009,67.1277561280001],[38.71477153900008,67.10008260400008],[39.05445453600015,67.13091543500008],[39.09828149599997,67.05212236000006],[39.351123617000155,66.99327285000015],[39.57867451900006,67.07149411100016],[39.61737846000011,66.98660487800004],[39.48539751500016,66.91395389400003],[39.700504476000106,66.89760331600007],[39.78643457400011,66.97787629900017],[40.00614957000016,67.04816191000009],[40.17589551400005,66.83594016800009],[40.539886533000185,66.84506454100017],[40.24968358700005,66.71958493500006],[39.98250153800018,66.73537158000016],[40.00762545500015,66.5967687640001],[40.168685569000104,66.50766829500003],[40.183944488000066,66.39226725800006],[40.05887961999997,66.28013248000008],[40.584762572000045,66.450353344],[40.80674755500007,66.5980129730001],[41.2238764870001,66.81639189400005],[41.351852559000065,67.02478495000014],[41.33144346299997,67.21730704000004],[41.08739446100003,67.27976395400015],[41.13768051500011,67.41214119500017],[40.97791255600009,67.46895289600008],[41.01192061900008,67.59618784000014],[40.95356346200015,67.70980302900017],[40.78864650000014,67.71860738000004],[40.565162497000074,67.79930767300016],[40.488891537000086,67.74342787100016],[40.293647508000106,67.82962116100009],[40.07840761000017,67.97738020000003],[39.822006533000035,68.05922462300015],[39.614505479000115,68.04073749800006],[38.64533250000005,68.37657890100007],[38.496280469000055,68.37087266900005],[38.03264253500015,68.54569385600007],[37.63706548700003,68.734509468],[37.09110653600004,68.8870976570002],[36.85008658600003,68.99870722400016],[36.499999468000055,68.998568923],[36.499999468000055,69.09855815500015],[36.281959512000185,69.16063402700013],[35.89209758100003,69.20841288600019],[35.76652946299998,69.24997187100007],[35.18505856700011,69.33294651000006],[35.0575295860001,69.27937759899999],[34.51588848800009,69.32557630300016],[34.23481360200009,69.37874003200005],[33.48335653600009,69.38325771000012],[33.38197758400008,69.47837068600018],[33.11915949000007,69.49206638100014],[32.81462449500009,69.47141253300009],[32.779247499000064,69.54379647000007],[32.501613552000094,69.54892368000009],[32.26655950600008,69.64054978400014],[32.30358555800012,69.70181009700008],[32.78015559500005,69.63317940900004],[32.9670864520001,69.68623752700017],[33.00838056900011,69.77028739600019],[32.795097511000165,69.82942675200002],[32.492874580000034,69.83873519100007],[32.36957561100007,69.89494306000017],[31.92884055700017,69.99870230400012],[31.746490577000145,69.998786123],[31.574707494000165,69.79465761200004],[31.713901570000132,69.73002492400019],[31.04433854700011,69.80460642800006],[30.674583461000054,69.77270641300004],[30.3902285690001,69.79921183500016],[30.2359165580001,69.87366442600012],[30.037359498000058,69.8783103470002],[30.168905589000076,69.76107082300007],[30.093914545000075,69.69767446600014],[30.11575560600005,69.62677127600017]]],[[[30.77978355500005,70.29065740300018],[30.96039060200019,70.30724485400009],[30.88396256400017,70.45382958900007],[30.66043447300018,70.45340144100015],[30.36395247600018,70.57391560700017],[30.123594529000172,70.71339684600014],[29.65329147400007,70.75649692800005],[29.215888561999975,70.69107935900001],[29.239688473,70.81813040300017],[29.18311347600013,70.88448775100005],[28.917919447000088,70.91535846800019],[28.70944257200017,70.87780452500004],[28.539346599,70.77773130600019],[28.726213587000075,70.73865101800016],[28.845893585000113,70.63484734900004],[28.797735528000146,70.55767835200004],[28.989156572000013,70.47656583700012],[29.57603647800005,70.42015059900001],[29.694463549999966,70.329829222],[29.962270553000053,70.2987836580001],[30.102754603000164,70.22481906300004],[30.317878495000173,70.29467803500012],[30.77978355500005,70.29065740300018]]]]},"properties":{"objectid":379,"eco_name":"Kola Peninsula tundra","biome_num":11,"biome_name":"Tundra","realm":"Palearctic","eco_biome_":"PA11","nnh":2,"eco_id":774,"shape_leng":58.0254310648,"shape_area":12.9626004282,"nnh_name":"Nature Could Reach Half Protected","color":"#5DE3E2","color_bio":"#9ED7C2","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":58896.252426549836,"percentage":0.6892355841994854}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[58.48773160700017,38.026100921000136],[58.37123455300019,38.09247888800007],[58.133979586000066,38.190999275000024],[58.026241620000064,38.28475153300013],[57.81502553900003,38.33883542800015],[57.705779501000166,38.47753513900017],[57.53298153800006,38.58387232100006],[57.34729354800004,38.62680979300018],[57.248420618000125,38.69030086600014],[57.03871160300008,38.77988731800019],[56.95790854800015,38.89311761000005],[56.752178590000085,38.93161485300004],[56.54152258700003,39.17738398900008],[56.449088636000056,39.23505014199998],[56.231735491999984,39.29902149700007],[56.10083363400014,39.357759360000045],[55.749252526000134,39.42929957400014],[55.484874559000104,39.40811967899998],[55.24530451099997,39.410740700000076],[55.138923575000035,39.43819830600012],[55.07270050500006,39.49277069800013],[54.88352949900013,39.4564820870001],[54.72894256200016,39.38751008700007],[54.663623564000034,39.247352093000075],[54.701454613000124,39.15374434000012],[54.66860157600013,39.07464482200004],[54.52642454900018,38.98196427500005],[54.53460361000003,38.83205242800017],[54.50428056700014,38.76573866500007],[54.35607561100011,38.71397018700003],[54.30990959700006,38.64434138200011],[54.40658160600003,38.56907172399997],[54.410804577000135,38.466202303000046],[54.33591059500003,38.39480357500014],[54.039958502,38.283672614000125],[54.10945856100011,38.16504873500014],[54.156009472,37.872962711000184],[54.29234347400012,37.669814715000086],[54.39796450699998,37.63844309500013],[54.74589948700009,37.64958482399999],[54.904388536000056,37.56499650100005],[54.97396453500005,37.328478136000115],[54.95365551900011,37.11588541100008],[54.82960150800005,37.00621457800008],[55.0058935510001,37.04943871200015],[55.189308536000055,37.14216385100008],[55.27307560000014,37.20661264000006],[55.48455856100003,37.445823942000175],[55.8465464730001,37.73581952000018],[56.19812758100005,37.85949718400008],[56.431953511000074,37.90119044700003],[56.09452859900006,37.953676248000136],[55.75785453800006,38.02381199000018],[55.556976528,38.092291972000055],[55.509593630000154,38.213700822000135],[55.44804347000007,38.26925691400004],[55.24546460500011,38.30154031700016],[55.10510259600005,38.379705923000074],[55.022472621000134,38.474834154000064],[54.99261058200017,38.61000206600016],[55.03650258500011,38.674358989000154],[54.95166062599998,38.766108642],[55.04855358300017,38.86493781899998],[54.9421845490001,38.97141632000012],[54.99266053800005,39.08184269800017],[55.139148545000126,39.12586378300017],[55.349761632000195,39.14441360500001],[55.60332862000007,39.29680934500004],[55.721660474000146,39.297411334000174],[55.83845558900015,39.220943566000074],[56.25207552200004,39.09592228300011],[56.371135595000055,39.07966474400007],[56.493522613000096,39.01536465000004],[56.49800156700013,38.93796565300005],[56.38450959200003,38.88264576300003],[56.446933480999974,38.82377865100011],[56.62071950300003,38.78953824100017],[56.884799577000024,38.61526288400006],[57.21245957100018,38.58233156000006],[57.30673955400016,38.50875487800005],[57.351249471000074,38.39267473900003],[57.552410622000195,38.27906776400016],[57.738231548000044,38.22531948100004],[57.97169152400011,38.07244010500017],[58.25299858800014,37.925573738000026],[58.36959052600014,37.94161452200012],[58.46564059900004,37.90834708300008],[58.54146949700004,37.95770844599997],[58.48773160700017,38.026100921000136]]]},"properties":{"objectid":380,"eco_name":"Kopet Dag semi-desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Palearctic","eco_biome_":"PA13","nnh":2,"eco_id":829,"shape_leng":16.6503101834,"shape_area":2.70800592564,"nnh_name":"Nature Could Reach Half Protected","color":"#FAD354","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":26326.096099160583,"percentage":0.09978742243086558}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[58.48773160700017,38.026100921000136],[58.54146949700004,37.95770844599997],[58.46564059900004,37.90834708300008],[58.36959052600014,37.94161452200012],[58.25299858800014,37.925573738000026],[57.97169152400011,38.07244010500017],[57.738231548000044,38.22531948100004],[57.552410622000195,38.27906776400016],[57.351249471000074,38.39267473900003],[57.30673955400016,38.50875487800005],[57.21245957100018,38.58233156000006],[56.884799577000024,38.61526288400006],[56.62071950300003,38.78953824100017],[56.446933480999974,38.82377865100011],[56.38450959200003,38.88264576300003],[56.49800156700013,38.93796565300005],[56.493522613000096,39.01536465000004],[56.371135595000055,39.07966474400007],[56.25207552200004,39.09592228300011],[55.83845558900015,39.220943566000074],[55.721660474000146,39.297411334000174],[55.60332862000007,39.29680934500004],[55.349761632000195,39.14441360500001],[55.139148545000126,39.12586378300017],[54.99266053800005,39.08184269800017],[54.9421845490001,38.97141632000012],[55.04855358300017,38.86493781899998],[54.95166062599998,38.766108642],[55.03650258500011,38.674358989000154],[54.99261058200017,38.61000206600016],[55.022472621000134,38.474834154000064],[55.10510259600005,38.379705923000074],[55.24546460500011,38.30154031700016],[55.44804347000007,38.26925691400004],[55.509593630000154,38.213700822000135],[55.556976528,38.092291972000055],[55.75785453800006,38.02381199000018],[56.09452859900006,37.953676248000136],[56.431953511000074,37.90119044700003],[56.46866658200008,37.79851615600006],[56.536750601999984,37.821941899000194],[56.650863509000146,37.77705144300012],[56.976901605000194,37.6845194230001],[57.09217456700014,37.70401992],[57.152412623000146,37.66583951300015],[57.31105757500012,37.63909504000003],[57.559959531000175,37.56176879800006],[57.75028254500012,37.57228557100012],[58.00160251300008,37.508085725],[58.09599648900013,37.464797554000086],[58.29559357599999,37.33274318400004],[58.54371651800005,37.136057132000076],[58.676677475000076,37.07641234700003],[59.0123175440001,36.97242545000017],[59.13154559100019,36.88851103200017],[59.39929157400019,36.75100591000012],[59.5906256130001,36.704451814000095],[59.86378060599998,36.74726691100011],[59.950691555000105,36.718135774000075],[60.08406858900014,36.60557318500008],[60.19312653700007,36.45473631100015],[60.199569539000095,36.398210600000084],[60.547576603000095,36.19920309600002],[60.68049950600016,36.08400573900008],[60.80456558700013,35.94222366700018],[60.87643454000016,35.77998069900008],[60.88057754700003,35.77160768100009],[61.0704155840001,35.94222366700018],[61.345123576,36.030836812000075],[61.531925520000186,36.18134226600017],[61.38977447700006,36.33270602600004],[61.24529259500014,36.58486351400012],[61.13245055200014,36.693725158],[60.87477458800015,36.84642482600009],[60.839054604000125,36.91500337800011],[60.732009486000095,36.97060138000006],[60.59371160400002,37.12382709700006],[60.456272532000185,37.174176351000085],[60.373035539000114,37.264506445],[60.28956955300009,37.30058567700007],[60.0605015270001,37.35412374200018],[59.90002060300009,37.499941868000064],[59.724548476999985,37.588330043000155],[59.512214585000095,37.74580521700011],[59.37788050500012,37.79829520900017],[59.27238453100017,37.79234439300018],[59.180309492,37.854274252000096],[59.033100473000104,37.89054358500016],[58.88594861900003,37.966623271000174],[58.69855156000011,37.95188335900002],[58.48773160700017,38.026100921000136]]],[[[54.23997149899998,40.048411922000014],[54.17496162600014,39.99020094500014],[54.19464149600009,39.922162690000164],[54.31063060800011,39.84402357100004],[54.34104149400008,39.68095481800009],[54.43426552400018,39.57261553400008],[54.64237259000009,39.517383151000104],[54.76200447600013,39.53061616400015],[55.06724556200015,39.619786874000056],[55.10311155800014,39.7140053330001],[54.91404348300017,39.83725267000017],[54.68954460000015,39.89620410400016],[54.60022351900011,39.94016031300009],[54.434791572,39.97740982600004],[54.2763905330001,40.07528681800005],[54.23997149899998,40.048411922000014]]]]},"properties":{"objectid":381,"eco_name":"Kopet Dag woodlands and forest steppe","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Palearctic","eco_biome_":"PA10","nnh":3,"eco_id":756,"shape_leng":19.0190743567,"shape_area":5.96729017739,"nnh_name":"Nature Could Recover","color":"#D57739","color_bio":"#D6C39D","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":58416.34636197454,"percentage":1.1962462571260228}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[60.406814609000094,26.414360092000152],[60.31805763100016,26.558592529000123],[60.181976594000105,26.567539205000173],[59.83039850300008,26.44555870900001],[59.888637475999985,26.381703526000138],[60.269393474000196,26.387396180000053],[60.406814609000094,26.414360092000152]]],[[[61.62244454300003,26.76310040500016],[61.2789766140001,26.88773293500003],[61.115844493000054,26.89983439200006],[60.95918655500003,26.859429260000184],[60.964351484000076,26.811827258000108],[61.05295960000018,26.746780002000094],[61.21805560000007,26.74078526500017],[61.46157855400003,26.63224313900008],[61.74997352300005,26.672452302000124],[61.62244454300003,26.76310040500016]]],[[[58.47248459000008,26.717353319000097],[58.30012852100015,26.927644038000096],[58.17166160500011,26.941529499000126],[57.830501550000065,26.858191085000158],[57.73013647300019,26.80059383200006],[57.791137618,26.616095905],[57.885890507000056,26.535215401000187],[57.97450247900008,26.596344956000166],[58.01325252000004,26.661278051000068],[58.11069851500014,26.664191601000084],[58.24208853500011,26.612465200000088],[58.42726154000002,26.612919164000175],[58.582023492000076,26.5858853470001],[58.84206047100014,26.514374302000192],[58.87637363600015,26.586875082000176],[58.639747480000096,26.726828055000112],[58.47248459000008,26.717353319000097]]],[[[61.60704061600012,27.095061658000134],[61.656726527000046,27.129272394999987],[61.57712962699998,27.230744721000065],[61.23084655200006,27.520254484000134],[61.01060852500018,27.651529672000038],[60.91758348200011,27.646398941000143],[60.941459501000054,27.548366046000126],[61.080959515000075,27.481565966000062],[61.10253554000013,27.425053498000068],[61.063911562000044,27.28543948900011],[61.211322585000175,27.13685600600013],[61.401607545,27.077818406000176],[61.60704061600012,27.095061658000134]]],[[[63.79941154800002,27.38648098500005],[63.7240066060001,27.47284727700014],[63.331104559000096,27.44109880800005],[63.251731624,27.409351176000087],[63.10092157200012,27.43316298900004],[62.94614453300005,27.369665882000106],[62.854865607000136,27.365697051000097],[62.60277953400015,27.21704651200008],[62.479373611000085,27.201226005000024],[62.312087588000054,27.284314470000027],[62.276313625000114,27.428124460000163],[62.12162359000013,27.682446322000146],[62.068996637000055,27.745756848000156],[61.84205660900011,27.840516778000165],[61.72031063800006,27.81045491500015],[61.66661063400011,27.83479495600011],[61.60138350200009,27.97766701000012],[61.58034861300007,28.271891761],[61.53216960100002,28.339211016000036],[61.46631952600012,28.249473690000116],[61.45716062000008,27.965090468000085],[61.41833162100016,27.924383084000112],[61.33527752200018,28.11215045600005],[61.3019296170001,28.295711789000052],[61.315528585000095,28.500255372000083],[61.294013580000126,28.621763464000026],[61.12898647900016,28.94746444000009],[61.051471477000064,29.035197150000045],[60.96736964000007,29.4491897420001],[60.83277555300009,29.27349784300003],[60.78468656300009,29.314079163000088],[60.752433502000144,29.438942195000152],[60.758975578,29.63380266900009],[60.71351951100013,29.778729295000062],[60.54867563800019,29.885249371000157],[60.45380355900005,29.87245271900008],[60.433490519000145,29.80563336000006],[60.4690165450001,29.7094298990001],[60.40124852300016,29.688587626000185],[60.2431485620001,29.77603635700018],[60.151035637,29.76140792400014],[60.115199480000115,29.827485485000068],[60.12195261200003,30.07983508500007],[60.095996540000044,30.163953854000056],[60.024204534000035,30.194147816000054],[59.922595583000145,30.096542565000107],[59.90025747600009,29.976042984000173],[59.91960559000012,29.75704514400013],[59.797401633,29.779048478000107],[59.75018352200016,29.75037046700004],[59.791938476000155,29.54545405600004],[59.862495493000154,29.33248230200013],[59.932109546000106,29.312212345000148],[60.014526621000186,29.23897999200011],[60.16372650900007,29.26208605000005],[60.219436493000046,29.226254419000156],[60.335449577000134,28.93238925200012],[60.38051253200018,28.880483311000035],[60.35978660000018,28.78460104400017],[60.29155757300009,28.74651250300002],[60.21909752900007,28.772386432000076],[60.03167348000005,28.96223083900003],[59.971870612000146,28.960303002000103],[59.978172630000074,28.81141877600004],[60.131114535,28.51905480800019],[60.131763630000194,28.398549694000053],[60.17648661500016,28.332938168000055],[60.26100553600003,28.396404598000174],[60.24105057200006,28.498891469000114],[60.33721162100005,28.54870562200017],[60.39372660300006,28.532061174000034],[60.50612658300014,28.3700837450001],[60.59489060300018,28.436424162000094],[60.67765049700006,28.459261998000045],[60.731716623000125,28.39472184700014],[60.792613496,28.23468331900017],[60.948512537000056,28.03042790600017],[61.05786854500019,27.96392571800004],[61.147823633000144,27.861088986000027],[61.53952053000012,27.590226276000124],[61.67965656400003,27.469553692000034],[61.73082355700012,27.519585273000132],[61.733928549000154,27.63141377500017],[61.946048534,27.387054978000037],[62.07266958700018,27.308425350000107],[62.13407859500006,27.300066749000166],[62.294811479000145,27.188422816000184],[62.42437759800009,27.054101644000184],[62.57051859400019,27.039585026000054],[62.697723530000076,26.938292575000048],[62.792636514000094,26.91962037700017],[62.99514748600012,26.979736896000134],[63.27360554100005,27.172748489000128],[63.37873053300018,27.20695771800007],[63.45413564300014,27.19902122900004],[63.60891352000016,27.22680103600004],[63.77559654900017,27.322043763000067],[63.79941154800002,27.38648098500005]]],[[[56.976184617,34.09636161900016],[56.89902852800009,34.04961406800015],[56.69124953000011,33.99399645300008],[56.70605850900017,33.93991004300011],[56.81372053500007,33.95343659100001],[57.075611591000154,33.84550684699997],[57.21740355300011,33.64117046400003],[57.394672591000074,33.324895944000104],[57.4430505900001,33.20086054000012],[57.657855633999986,32.979348297000115],[57.70426556100011,33.006198215000154],[57.64093056000013,33.22067401800007],[57.44379859100013,33.619584213],[57.433826473000124,33.74898537600018],[57.36622256800001,33.83557697400005],[57.22357548400004,33.866814986000065],[57.20123251500007,33.91054186600013],[57.28355755700005,34.051975083],[57.37326454000004,34.34994771800007],[57.24999960100013,34.42393963800015],[57.189876545000175,34.36706440200004],[56.976184617,34.09636161900016]]],[[[60.473827590000155,32.406412860000046],[60.449130480000065,32.482323566000105],[60.30141050000003,32.38821742500011],[60.26287453300006,32.40196508700018],[60.241073538000194,32.5676629080001],[60.17137952200011,32.61642446200017],[60.061366540000165,32.83908552899999],[59.97153852100013,32.9390585000001],[59.95569957400011,33.05686380200012],[60.041938629000015,33.068631324000194],[60.12051763000011,32.949380143000155],[60.2337075210001,32.92184290900008],[60.34077460000009,32.95615892300003],[60.36643948500006,33.08154414800009],[60.35930648500016,33.22723067800007],[60.27664549700012,33.44174420000019],[60.11046253200004,33.5125841900001],[60.03177657700013,33.47799039900008],[59.94459958699997,33.3876800860001],[59.87301260200019,33.56936454300006],[59.825611599000126,33.60451573100005],[59.70047347200011,33.619824103000155],[59.492778628,33.42806091099999],[59.39397459800011,33.493904784000165],[59.315772614000196,33.615349173000084],[59.18266262700013,33.73688978700011],[59.200511555000105,33.7979541310001],[59.29746653800004,33.81313560100017],[59.398292619000074,33.76083403399997],[59.48372650800013,33.91497773700007],[59.41297553400017,33.94609404300019],[59.26397647600004,33.95553072500013],[59.06809659500004,34.07225727700006],[58.96336756500017,34.04111515400001],[58.88069953600012,34.05129195800009],[58.81853062500011,34.12531405300007],[58.68630962300017,34.16692785600003],[58.568702636000125,34.34060206300012],[58.432575499000166,34.43954121000013],[58.243942612000126,34.37019638400017],[58.23122458300003,34.323142559000075],[58.34520757000013,34.14073642000011],[58.486171568000145,34.03286065500015],[58.6069836260001,33.88439267500007],[58.86189255700003,33.66097187200006],[59.14318855700003,33.474583491000146],[59.21118557300002,33.25526780900003],[59.17295051600007,33.16468240200004],[58.93029358100006,33.03187047600005],[58.937496485999986,32.925302623000164],[59.16487857600009,32.91622804000008],[59.17077256300007,32.77365438100003],[59.350383504000035,32.5621390660001],[59.20605853100005,32.51033370700014],[59.08356858300016,32.408056719000115],[59.10590350500007,32.332036377000065],[59.29051961700003,32.26787525500015],[59.41991860000013,32.17931223400012],[59.28495755300003,32.057975133000184],[59.3788715820001,31.94635668100011],[59.53567855000006,31.94566383299997],[59.68209849600015,31.849624992000145],[59.665416497000194,31.797946536000097],[59.525218605000134,31.800202609000166],[59.46623649400004,31.744754308000097],[59.409072585000104,31.568731156000013],[59.41722448799999,31.46990181200016],[59.53471362500005,31.484551031000137],[59.68478053800004,31.536711280000134],[59.820018522000055,31.52462289900012],[59.847541507000074,31.30185236400007],[59.90933256200009,31.157637529000112],[60.04437256600005,31.089865651000082],[60.099170599,31.197209164000185],[60.033893511000144,31.43772586400013],[60.00913253100009,31.616300803000172],[60.06042055800003,31.600348197000073],[60.08366055800002,31.86013556300003],[60.158981513000015,31.84466022300012],[60.173385479000046,31.72305121300019],[60.25513451600011,31.62189454999998],[60.31623054300013,31.680545409000047],[60.35822253700019,32.114045371000145],[60.41204055800006,32.27779305900009],[60.478774589000125,32.31720962900005],[60.473827590000155,32.406412860000046]]],[[[57.62865056900006,30.309026493000147],[57.54414757400008,30.435109931000113],[57.56786349800018,30.509770225000125],[57.470470477,30.637391741000158],[57.17158857300012,30.789823189000117],[57.231193628000085,30.905851025000118],[57.099540583000135,30.97987043800009],[56.874011564000114,30.880070134000164],[56.79412448300019,30.897619493000093],[56.8160745080001,31.030865937000044],[56.850822526000115,31.066589441000133],[56.80017051800013,31.33580225700007],[56.703449558000045,31.421342429000163],[56.66289858100009,31.529873658000156],[56.515888548000135,31.42310614900009],[56.48338352800005,31.542046193000033],[56.511432561000106,31.60066335700003],[56.360015492,31.715567515000032],[56.25843856000017,31.762478680000015],[56.160800618999986,31.88381092000003],[55.986801529000104,32.13835557300007],[55.88537949500005,32.13161065500009],[55.90189754400012,32.03600281200005],[56.14954757900006,31.63495422600016],[56.128204571000026,31.52560777200017],[56.20915950700015,31.42804024000003],[56.41687061099998,31.254018184000188],[56.377033605000065,31.20183480100019],[56.219135480000034,31.189065307000078],[56.148090469000124,31.116782792000095],[56.209121621000065,31.01544725900004],[56.315978481000116,30.94109206600018],[56.627956605,30.76223516000016],[56.74601755600014,30.71425496700016],[56.97034058700018,30.575357779000058],[57.10389749700005,30.394854332000136],[57.18988760900004,30.17498142100004],[57.378013559000124,29.981268765000095],[57.48991347500004,29.753458192000153],[57.313133605000075,29.93418560400005],[57.049240615000144,30.177403288000164],[56.79432648699998,30.33392862500017],[56.46822753800018,30.48536011100009],[56.123245502000145,30.72013571000008],[55.8013306310001,31.05390795700015],[55.51365650600002,31.29410882700006],[55.17758560600015,31.409798872000124],[55.07006456400018,31.458182905000115],[54.91532155500005,31.55874277700002],[54.85494955700011,31.55537291600018],[54.769485492,31.444656357000042],[54.771770566999976,31.363276292000023],[54.88380057000012,31.423795141000085],[55.12430151200016,31.273172509000062],[55.382507549000024,31.131992090000153],[55.55487853800014,31.061391823000122],[55.759586574000025,30.889866568000173],[55.86619952100011,30.725706658000092],[55.948860508999985,30.64867914700011],[56.21640348300019,30.48441815300015],[56.46890261600004,30.386200855000084],[56.676952518000064,30.334717529000045],[57.03145958100009,30.140465917000085],[57.084091562000026,29.958982458000037],[57.173557482000035,29.780795267000087],[57.39907459900013,29.566987501000142],[57.418746591000115,29.484404632000064],[57.20525750500008,29.577302103000193],[57.01417961700014,29.639541758000178],[56.59469252000014,29.707385887999976],[55.96296356400012,29.907733323000116],[55.79777955399999,29.971745918000067],[55.74175256600006,30.03247867300007],[55.440830507000044,30.214689179000118],[55.43330355800015,30.262083309000047],[55.58570449600006,30.35757078800009],[55.457569503,30.478324341000075],[55.271041480000065,30.554115689000184],[54.95351453500018,30.643172572000026],[54.69030752000003,30.786747533000153],[54.4363554680001,31.02050322300005],[54.4575725790001,31.15032448600016],[54.40324762100016,31.398706094000147],[54.15592163000019,31.56721134900016],[54.079097631000195,31.55857279200012],[53.75216250400007,31.65227945200013],[53.65326359000011,31.704638687000113],[53.53008247000008,31.852408957000193],[53.37840254400015,32.19002782700011],[53.27268562300014,32.31156408200019],[53.203762574000166,32.45477040600014],[53.07776262000016,32.622658082999976],[52.93972759500008,32.66237103800006],[53.005386563000116,32.709676487000024],[53.16175063100013,32.730667789999984],[53.19520951200019,32.78300305300013],[53.149871630000064,32.85050302200011],[52.942707529000074,32.900603501000035],[52.77768361300008,32.97875603100016],[52.72535757100013,32.97823400700008],[52.614963547000116,32.87055940800013],[52.52121346900003,32.8971707770001],[52.42111259000018,33.2209898480001],[52.293601547000094,33.44547029100005],[52.29809961100011,33.57837123400003],[52.128684584000155,33.7388887030001],[51.82381448100011,33.88489961200003],[51.771591536000074,33.94732584800005],[51.57265863100014,34.07040353500014],[51.43485662300003,34.06172474500005],[51.4492414770001,34.3179248240001],[51.48423759900004,34.350909625000156],[51.37668956700014,34.52618594900008],[51.25173148400006,34.59401314800016],[51.11978557600014,34.62654432000005],[50.97992363100008,34.560693239000045],[50.84041556900007,34.416054950000046],[50.98878062000006,34.207560640000054],[51.18568460200015,34.00042839000014],[51.5423734740001,33.70915071600007],[51.94186051200012,33.50563056300018],[52.24380449200004,33.27106853500004],[52.32661853400015,32.96815543900004],[52.37526659700018,32.71983803600011],[52.53198656100017,32.61295737100011],[52.6684535010001,32.5655538530001],[52.78013951100007,32.46685912200007],[52.88863754800013,32.41471362600015],[53.109928509000156,32.19791955600016],[53.14836154700009,32.10796044500012],[53.17775352800004,31.872806319000176],[53.157504527000185,31.769789711000044],[53.20162552400012,31.646588643000143],[53.248100495000074,31.617214598000032],[53.4064175470001,31.691549171000133],[53.50684749900006,31.656060528000182],[53.557945593000056,31.505535461000193],[53.698009542000136,31.356385529000136],[53.91704158000016,31.25603185200015],[54.05180749600004,31.163265306000085],[54.060188561000075,31.048394173000077],[53.95108753,30.897792328000094],[54.01883660900006,30.788553330000127],[54.13304557200013,30.798905987000012],[54.138793546000045,30.9196927320001],[54.242389511000056,31.027609735000055],[54.32076650800013,30.898668572000133],[54.53276847700016,30.723669521000033],[54.56813859900018,30.60441297600005],[54.65969463100009,30.525857779000148],[54.76638754100014,30.32735201600019],[55.12063560300015,30.111709787000052],[55.359992583,29.97443097600018],[55.676826512000105,29.839098109000076],[55.92301960500015,29.71710872800014],[56.14536651800006,29.64658943000012],[56.24291963400009,29.574668174000124],[56.19307362900008,29.47898170800005],[56.351295630000095,29.337656115000016],[56.31246562500007,29.245334648000096],[56.477649635000034,29.070048601],[56.63378554900004,28.959365905000084],[56.75713749100015,28.929614172000186],[56.87610251400014,29.1045092870001],[57.05245960100018,29.136613150000073],[57.26602563300003,28.985097006000046],[57.46860148000019,28.892300789000103],[57.64056360000012,28.85281632500005],[57.82831554900008,28.778766234000045],[57.89689259300013,28.658759173000135],[58.02265550700008,28.549684461000084],[58.13540652100011,28.499530505000052],[58.28861648000003,28.400092467000036],[58.509239571000194,28.287205330000063],[58.63796951100011,28.278082467000104],[58.580234626,28.43355403100003],[58.334266504000084,28.621151417000135],[58.352672493,28.65343415000018],[58.20146547400009,28.766107883000075],[58.19894755000013,28.80700318900017],[57.884891552000056,29.088552826000125],[57.60823057600004,29.299633791000133],[57.577938546000155,29.37433180300002],[57.7045134980001,29.4045375],[57.94958458900004,29.273783666000156],[58.080215545000044,29.130778339000017],[58.29456360800003,29.06689968800015],[58.211078511000096,29.282889430000182],[57.95944556300003,29.629590092000115],[57.984458503000155,29.843784766000113],[57.82731659400014,30.034710774000132],[57.655277528000056,30.143944742000087],[57.61601652600018,30.217385805000106],[57.62865056900006,30.309026493000147]]],[[[60.94464847900008,35.45298153400017],[60.96348563300012,35.51193196200006],[60.88057754700003,35.77160768100009],[60.87643454000016,35.77998069900008],[60.71895953400019,35.83518223700008],[60.28492363200013,35.85535379000015],[60.230079498,35.8109209860001],[60.32233458100018,35.75723824900007],[60.41837660700003,35.61787938600003],[60.65311063200011,35.57690244000014],[60.74150450600007,35.611745676000055],[60.87909361500016,35.465858987000104],[60.94464847900008,35.45298153400017]]],[[[58.167961498000125,35.47867676100003],[58.188541585,35.409433523000075],[58.30534759700015,35.416338199999984],[58.36922054899998,35.455022359],[58.49385458800009,35.45059738499998],[58.70222853300015,35.35943178300005],[58.89736561000012,35.329441333000034],[59.03458759100005,35.32857162700003],[59.24658955899997,35.296453347000124],[59.296283516000074,35.348670928000104],[59.29872147600014,35.44002277599998],[59.5116005270001,35.36047784400017],[59.63819157300003,35.276139805000184],[59.52852258400003,35.16864843500014],[59.58759354400013,35.12099681200016],[59.683265592000055,35.114988664000066],[59.89613760200007,35.23390875900003],[59.95403660500011,35.371707415],[60.09866349400005,35.25953106400004],[60.272369553000146,35.158638766000024],[60.389388633000124,35.054191200000105],[60.49916859800004,35.10639402800018],[60.50186153600015,35.21435931100007],[60.05506150400004,35.52539061600004],[59.95998758800016,35.567861719000064],[59.69221461500007,35.54833909300015],[59.63691752400001,35.60165990000007],[59.64128851800018,35.67570898500003],[59.538715481000054,35.825103502000104],[59.393905531000144,35.819385702000034],[59.29350256800018,35.77485063900019],[59.21844061400003,35.68355897300006],[59.231670610000094,35.55999295600009],[59.01746755300019,35.520659870000145],[58.901653624000176,35.55463289700009],[58.770606591000046,35.56105695500014],[58.62454555700003,35.59713886900005],[58.50167859100003,35.595250929000144],[58.378578608000055,35.62497835500005],[58.11787761500011,35.65187152300018],[58.05429048600001,35.67281706099999],[57.97764250700004,35.78248353600014],[57.87541547500018,35.82002658300007],[57.68402863,35.95942048300003],[57.60334359100011,35.89956095300005],[57.99605553700013,35.53773447700007],[58.112716542000044,35.52180064700008],[58.167961498000125,35.47867676100003]]]]},"properties":{"objectid":382,"eco_name":"Kuh Rud and Eastern Iran montane woodlands","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Palearctic","eco_biome_":"PA10","nnh":3,"eco_id":757,"shape_leng":90.0315478997,"shape_area":11.9347129586,"nnh_name":"Nature Could Recover","color":"#EB9B3C","color_bio":"#D6C39D","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":126622.98011792371,"percentage":2.5929774021404426}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-64.33606759299988,10.347655658000122],[-64.41236856099988,10.324534514],[-64.45659651099993,10.247608759000116],[-64.61808762199996,10.248592794000047],[-64.66847258299998,10.180056487000115],[-64.6411055019999,10.122261755000125],[-64.73400163199989,10.063812565000148],[-64.95194251399988,10.092548747000137],[-65.09120951199992,10.04258321600014],[-65.19449651999997,10.092751589000045],[-65.39790351699992,10.127954241],[-65.60555259499989,10.1885880910001],[-65.65499157499988,10.145896040000082],[-65.77856463299992,10.166996476000179],[-65.96572850699994,10.272285082000167],[-66.07817056499994,10.400911086000065],[-66.29862953899993,10.367746410000109],[-66.53571351399995,10.378763583000136],[-66.84056852999993,10.431016032000116],[-66.93371561399988,10.596447308000108],[-67.02912849399996,10.607885589000148],[-67.15428154099993,10.553146396999978],[-67.5371165869999,10.523665567000023],[-67.74461361699997,10.499628280000081],[-67.84171260099998,10.45903388500011],[-67.93287652699996,10.466550608000034],[-67.98207863399983,10.36700645500008],[-68.16763251299994,10.32732334000002],[-68.2045665309999,10.36078088000005],[-68.20330857499994,10.537023471],[-68.27446757999991,10.529925004000063],[-68.30778463999991,10.665624664000063],[-68.37214659199992,10.748090019000017],[-68.52075153299995,10.703223870000102],[-68.72571555299999,10.591117759000099],[-68.81685651199984,10.525180512000077],[-68.64944459199995,10.492174589],[-68.68064153299997,10.386009068000021],[-68.84944149599994,10.204287898000132],[-69.06565855599996,10.180263687000036],[-69.14317355799994,10.190310906999969],[-69.19412262199995,10.112131220000094],[-69.25038949899994,10.095597413000121],[-69.25222060999982,9.97764492400006],[-69.29328958899998,9.976318907000064],[-69.21739162299991,9.87614896100007],[-69.08636453899999,9.902430083000127],[-69.02793160999994,9.872327316000167],[-68.80316953499988,9.816965181000057],[-68.57949861599997,9.778019003000168],[-68.45900758399995,9.630025271000022],[-68.33287050199988,9.561193250000144],[-68.10498851599988,9.493480883000132],[-67.73382560499994,9.49123000700007],[-67.55944061199995,9.377705007000145],[-67.27040861799998,9.256564713000046],[-67.16133155899996,9.114195740000014],[-67.05693864299991,9.059419836000018],[-66.87793756899993,9.035427308000124],[-66.51097164499993,9.026095065000106],[-66.39904054799996,8.999416138000072],[-66.28461449399998,8.9123253140001],[-66.08348050099988,8.863941616000034],[-65.91136951799996,8.86447856],[-65.6196665469999,8.808342776000131],[-65.50234957399994,8.75885015200015],[-65.33690656299984,8.72852241400011],[-65.25050355899992,8.748158867000086],[-65.05043054699996,8.83414177100002],[-64.92398853199995,8.854058346000102],[-64.84074349299988,8.892574700000182],[-64.74464463699996,9.027779157000168],[-64.58878348299993,9.106103348000147],[-64.47920250399994,9.250381215000175],[-64.37245159099984,9.319003186000145],[-64.1794125049999,9.395126793000088],[-64.1196745129999,9.444614555000044],[-64.04492151599999,9.571750424000186],[-63.91617162699998,9.703511092000099],[-63.74668149799993,9.78579942100015],[-63.68902959399992,9.795064609000065],[-63.48431049399994,9.754715636000185],[-63.33683358999997,9.816074017000062],[-63.25400161099998,9.828199446000099],[-63.1750945419999,9.964383747],[-63.03554959999997,9.94904989400004],[-63.01274462099997,10.04173127900009],[-63.00885055599991,10.186823029000038],[-63.07515358999996,10.258166939000091],[-63.02308252499995,10.368956253000135],[-63.05311957799984,10.45352848300007],[-62.98420356999998,10.521364567000091],[-63.107376475999956,10.484435242000131],[-63.13010450899992,10.396498349000069],[-63.17847462799995,10.378848743000049],[-63.38109557099989,10.415843949000077],[-63.49626157899996,10.409266670000022],[-63.89621750099991,10.32211449000016],[-64.33606759299988,10.347655658000122]],[[-67.76686857599998,10.28128154600006],[-67.84718363699994,10.318952837000097],[-67.86616562999995,10.398799182000118],[-67.66150654399996,10.471162163000145],[-67.44932553799993,10.442848261999984],[-67.18620250999999,10.51050346400018],[-67.06582664599989,10.496632420000026],[-67.01502962999996,10.395491347000075],[-67.0323105999999,10.313657150000097],[-67.12255855199999,10.253631492000068],[-67.23212461099996,10.233035814],[-67.76686857599998,10.28128154600006]],[[-66.17971061699996,10.271551162000037],[-66.09704560499989,10.239594318000172],[-66.12287158999987,10.178783778000025],[-66.22154251599989,10.141179208000096],[-66.32074753699999,10.14764500800004],[-66.38841262999995,10.186667126000032],[-66.35620851999994,10.260876809000138],[-66.17971061699996,10.271551162000037]],[[-66.05618248599995,10.158101096999985],[-65.97546358499994,10.160443001000147],[-65.86466253599997,10.107154716000082],[-65.76310756499998,10.095628426000133],[-65.67377458199996,10.024291389000041],[-65.67533847699997,9.934928901000092],[-65.78836056299997,9.85359661300015],[-65.91789248299995,9.820258766],[-66.03052547999994,9.833138902000087],[-66.20191159599995,9.817527942000027],[-66.35762053499997,9.853039719000094],[-66.41487161599991,9.84044741800011],[-66.55274151799983,9.909903556000074],[-66.72550964199996,9.887944981000146],[-66.76096358299992,9.923981465000054],[-66.74044049399998,10.055980347000116],[-66.69002552499995,10.107918475000133],[-66.52454362199995,10.13363298000013],[-66.26484661299997,10.07205516099998],[-66.1901935279999,10.08434118700012],[-66.05618248599995,10.158101096999985]],[[-64.28794054899998,9.936566558000095],[-64.37989857699995,9.983748458000093],[-64.39627849199996,10.03058418600017],[-64.34456650799984,10.13106392700007],[-64.21990162399999,10.220195912000065],[-63.9600825739999,10.193801467000128],[-63.8718756159999,10.146611855000117],[-63.82814756199997,10.051473565000038],[-63.871810571999845,9.982717484000034],[-64.08740250999989,9.983716438999977],[-64.28794054899998,9.936566558000095]],[[-63.4413076429999,10.009743590000085],[-63.56666554299994,10.052956659000017],[-63.68194956799988,10.213305150000167],[-63.452865616999986,10.30954046200003],[-63.2727586339999,10.273543038000184],[-63.22524262999997,10.188082997000038],[-63.21494261299995,10.101054199000089],[-63.356838509999875,10.02002181500012],[-63.4413076429999,10.009743590000085]],[[-68.49195852199989,10.053637605000063],[-68.53479759099997,9.98420426600012],[-68.62227649699997,9.916395172000023],[-68.72590649199998,9.985914174000015],[-68.72233563399993,10.113294292000035],[-68.6617735339999,10.22424940100018],[-68.54202262399991,10.280750469000111],[-68.27638250999996,10.261046794000038],[-68.18867460999996,10.213602372000082],[-68.16844958099995,10.127633214000184],[-68.24109654199992,10.064669531000163],[-68.40341963999992,10.09567653800002],[-68.49195852199989,10.053637605000063]]]},"properties":{"objectid":384,"eco_name":"La Costa xeric shrublands","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Neotropic","eco_biome_":"NO13","nnh":4,"eco_id":603,"shape_leng":26.8800293324,"shape_area":5.61788226127,"nnh_name":"Nature Imperiled","color":"#FA595E","color_bio":"#CC6767","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":68614.7212000769,"percentage":0.26007981371709943}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[8.76699706800008,11.260079380000093],[8.72508252300014,11.35533761400012],[8.515725967000037,11.509434713000076],[8.482474538000133,11.548590439000122],[8.291165477000163,11.540608017000125],[8.295747528000106,11.452486051000108],[8.18130454300001,11.3416756150001],[8.222751545000108,11.242638400000146],[8.412207535000107,11.25651405400015],[8.514442445999975,11.237227881000024],[8.550169471000117,11.1429353260001],[8.695835046000013,11.111927146000028],[8.762951459000135,11.16567291500013],[8.76699706800008,11.260079380000093]]],[[[13.700549940000144,14.334720035000089],[13.613250021,14.430249944000082],[13.443720086000155,14.450840055000072],[13.34817996900017,14.43114007600019],[13.210380097000098,14.364589919000082],[12.987000022000075,14.142160176000175],[12.98320996000001,14.033230044000163],[13.051559921000035,13.874360054000022],[13.171829964000153,13.763620084000024],[13.354719990000149,13.647500064000155],[13.383890019000034,13.419439970000099],[13.488050011000098,13.327499989000103],[13.585289953000142,13.102520068000047],[13.636879997000108,13.053060042000084],[13.642349993999972,12.87373001900005],[13.678330059000075,12.766099970000027],[13.623639951000087,12.609449945000051],[13.64768005400009,12.494010066000044],[13.734230128000092,12.409849991000044],[14.006449935999967,12.387749980000137],[14.186049972000035,12.358909988999983],[14.313799984000127,12.430359838000129],[14.341739985,12.550269920000062],[14.456130257000098,12.660869954000077],[14.522219946000178,12.778330014000119],[14.66244994900012,12.71303998400009],[14.607689961,12.579470048000076],[14.59333007600003,12.373609944000066],[14.493329965000157,12.384719973000188],[14.552780005000159,12.232219970000187],[14.615830005000134,12.176389781000069],[14.79582995900006,12.105280001999972],[14.916669954000099,12.030549845],[14.968889974000149,12.090000061000069],[14.888689997000029,12.157809817000043],[14.902219947000049,12.378890015000081],[14.87000002000002,12.4497199220001],[14.813049992000117,12.686109985000087],[14.832219975000044,12.708899994000035],[14.787499990000128,12.890000073000124],[14.936109952000095,12.891669974000024],[15.054999998000142,12.948890017000167],[15.141390070000057,12.931110064000109],[15.200280014000043,12.966389922000133],[15.212500024000065,13.066670082000144],[15.274719914000059,13.04556000700012],[15.32750002900002,13.086669998000104],[15.280550047000077,13.18972018400018],[15.334169954000117,13.296939930000065],[15.283609978000072,13.344169960000102],[15.281109967000077,13.427220053000156],[15.15416999900009,13.408890037000162],[14.975560075000033,13.447780065000075],[14.841939973000137,13.543049992000078],[14.742219910000188,13.54861011100013],[14.661110085000075,13.505279979000022],[14.483609966000131,13.54583005100011],[14.365550030000179,13.500000085000124],[14.256940078000184,13.537220035000075],[14.20111006500008,13.522500189000027],[14.09971992400017,13.629440064000107],[14.14278021600012,13.746109970000191],[14.187780073000113,13.796390074000158],[14.16027994500007,13.884999933000131],[14.17805004100012,13.972499987],[14.246670017000156,14.01861000100007],[14.22110998100004,14.084440061000066],[14.12443999200002,14.124719942000127],[14.042779929000062,14.258330010000066],[13.884440111000174,14.230279996000036],[13.882780067000112,14.305000120000102],[13.836099924000052,14.339689959000054],[13.700549940000144,14.334720035000089]]]]},"properties":{"objectid":385,"eco_name":"Lake Chad flooded savanna","biome_num":9,"biome_name":"Flooded Grasslands & Savannas","realm":"Afrotropic","eco_biome_":"AF09","nnh":3,"eco_id":72,"shape_leng":13.7262585689,"shape_area":2.66761224985,"nnh_name":"Nature Could Recover","color":"#43D8F9","color_bio":"#BEE7FF","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":32180.72374007961,"percentage":2.7829259609172734}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[33.300143990000095,-23.040240017999963],[33.231218808,-23.197117400999957],[33.210696654,-23.3995207559999],[33.12861915200011,-23.55131914699996],[33.089156606000074,-23.755018794999955],[33.093890778000116,-23.80951264099997],[32.96446044400011,-24.074187603999974],[32.80504331700013,-24.213006554999822],[32.593373159000066,-24.26200723999989],[32.343583827000145,-24.2881428689999],[32.104404361000036,-24.230677239999977],[31.896519991000048,-24.078402534999952],[31.880807877000166,-23.95299529999994],[31.76865768400006,-23.885206222999955],[31.697298049999972,-23.722524642999815],[31.652004242000146,-23.816776275999928],[31.67826843300014,-23.905118941999888],[31.749570847000086,-23.943658828999958],[31.681535721000103,-24.02133941699998],[31.628343582000127,-24.235801696999943],[31.518823624000163,-24.365356444999918],[31.411262512000064,-24.356513976999963],[31.360012054000094,-24.248003005999976],[31.113086700000167,-24.092172622999954],[31.051404953000144,-24.132392882999966],[30.945598602000018,-24.074914931999956],[30.77251243600017,-24.057773589999897],[30.68540573100006,-23.98742675799997],[30.77984809900005,-23.889797210999973],[30.859680176000097,-23.882732390999934],[30.998624802,-23.793224334999877],[30.831218719,-23.750854491999917],[30.78609275800011,-23.823871612999937],[30.538423538000075,-23.830636977999973],[30.497091293000153,-23.733871459999932],[30.398166656000114,-23.667673110999942],[30.488920212000096,-23.524906157999965],[30.55476188700004,-23.51738929699991],[30.615741730000025,-23.414897918999884],[30.711593628000116,-23.392452239999898],[30.759050369000192,-23.30293655399987],[30.684850693000158,-23.240930556999956],[30.724159241000052,-23.18211746199995],[30.68495750400018,-23.11978530899995],[30.753229141000077,-23.069124221999914],[30.75661087000003,-23.008764266999947],[30.866020203,-22.922225951999962],[31.04857444800018,-22.85994148299983],[31.043956757000103,-22.781976699999916],[31.08078765900018,-22.68422889699997],[31.092664719000027,-22.499300002999973],[31.03008461000013,-22.38961601299991],[30.868530273000033,-22.420249938999973],[30.77409362800006,-22.471794127999942],[30.748659134000093,-22.538610457999937],[30.57971000700013,-22.553615569999977],[30.537820816000135,-22.58949470499988],[30.58325004600016,-22.624912261999896],[30.77680587800012,-22.57821273799982],[30.781429291000165,-22.661844253999902],[30.89095306400003,-22.64000701899988],[30.899908066000023,-22.732908248999934],[30.672960281000087,-22.83079719499989],[30.558822631999988,-22.79998207099993],[30.61700439500015,-22.677473067999927],[30.431123734000096,-22.8192234039999],[30.6333103180001,-22.88916587799997],[30.602724075000026,-22.92669677699996],[30.43199539200009,-22.981601714999954],[30.335075378000113,-23.058141707999937],[30.151819229000125,-23.0634937289999],[30.13463211100003,-23.129594802999975],[30.026643753000087,-23.226978301999907],[29.918655396000077,-23.240476607999938],[29.91287040700007,-23.334001540999907],[30.02568054200009,-23.31857681299988],[30.062316895000095,-23.38703155499985],[30.023750305000135,-23.478630065999937],[29.958400726000093,-23.503086089999954],[29.94464683500007,-23.63130569499998],[29.87488746600019,-23.700458526999967],[29.9191608430001,-23.761346816999946],[29.992984772000057,-23.76122856099994],[30.036289215000068,-23.88464927699988],[30.09663963300011,-23.93111991899997],[30.103670120000174,-24.04436111499996],[30.140888214000142,-24.05715179399988],[30.24252700800014,-24.040296554999884],[30.28307533300017,-24.1269168849999],[30.396251678000112,-24.28874015799994],[30.493934631000116,-24.355293273999962],[30.515827179000155,-24.43310546899994],[30.635643005000077,-24.45619010899992],[30.762527466,-24.450414657999943],[30.802494049000074,-24.505178451999882],[30.860427856000115,-24.52525329599996],[30.922651291000193,-24.54390144299998],[30.92483329800018,-24.728822707999882],[30.946399689000145,-24.789855956999872],[30.852457047000087,-25.051334380999947],[30.954076767000117,-25.124200820999874],[30.950487137000152,-25.239395141999978],[30.85251426700006,-25.294033050999815],[30.797687531000122,-25.38434219399994],[30.693386078000174,-25.374347686999897],[30.704750061000084,-25.23623657199994],[30.62611579900016,-25.224725722999892],[30.55377960200019,-25.294631957999968],[30.67759323100006,-25.458215713999834],[30.843206406000036,-25.50542640699996],[30.743116379000185,-25.636444091999977],[30.746143341,-25.73682594299993],[30.898250580000024,-25.825372695999818],[31.018678665000095,-25.82166671799996],[31.12825965900015,-25.717645644999948],[31.220478058000083,-25.729101180999976],[31.42972755400018,-25.64197349499983],[31.444871902000045,-25.711408614999982],[31.337179184000036,-25.760196685999972],[31.212173462000067,-25.848583220999956],[31.256511688000103,-25.900272368999936],[31.16019058200004,-25.99667358399995],[31.090454102000024,-25.99851417499991],[30.735824585000103,-25.92963600199988],[30.684757233000028,-25.826110839999956],[30.59480094900016,-25.839908599999944],[30.61700630200005,-25.942026137999846],[30.57606315600009,-25.971210479999968],[30.719493866000107,-26.059726714999897],[30.9042682650001,-26.103109359999905],[30.9842052460001,-26.029331206999927],[31.07361412,-26.043851851999932],[31.154479980000076,-26.110475539999925],[31.229047775000083,-26.083570479999935],[31.396343231000117,-26.170614242999818],[31.283964157000185,-26.321296691999976],[31.256498337000153,-26.42498397799983],[31.16457176199998,-26.357727050999927],[31.048530578999987,-26.371435164999923],[31.073310852000134,-26.48943328899992],[30.982387543000073,-26.502813338999886],[31.032930374000046,-26.621683120999876],[31.15679359400019,-26.61492156999998],[31.29613304100019,-26.647783278999896],[31.195995331000063,-26.7020988459999],[31.244743347000053,-26.796001433999947],[31.110385895000093,-26.95193481399997],[31.264087677000134,-26.978055953999956],[31.3359355930001,-26.91661262499997],[31.3932685850001,-26.95043373099992],[31.290624619000027,-27.092346190999933],[31.38735580400015,-27.150743483999975],[31.378501892000145,-27.215951919999895],[31.31060028100012,-27.292871474999913],[31.41904068000008,-27.35475158699984],[31.367393494000112,-27.498470305999888],[31.45867538500005,-27.50255012499997],[31.31351280200016,-27.730859755999973],[31.415613174000157,-27.807716369999923],[31.366407394000078,-27.862943648999874],[31.384281158000135,-27.95960617099996],[31.211265564000087,-27.856748580999863],[31.077932358000112,-28.005437850999954],[31.062242508000054,-28.071571349999886],[31.124422073000062,-28.17564964299993],[30.986763000000167,-28.161901473999876],[30.947565079000128,-28.193681716999947],[30.9571304320001,-28.34435462999994],[30.995628357000157,-28.40752410899995],[30.945764542000063,-28.52565956099994],[31.10749435400004,-28.67489433299994],[31.17961120600006,-28.607372283999894],[31.278190613000106,-28.586200713999972],[31.329368591000105,-28.534818648999874],[31.54300308200004,-28.479877471999885],[31.642641068000103,-28.51844978299988],[31.61972618100009,-28.58401489299996],[31.547729492000144,-28.625368117999926],[31.574476242,-28.715274810999972],[31.642295837,-28.758882522999954],[31.526025772000082,-28.81970786999989],[31.566823959000033,-28.859512328999983],[31.74912834200012,-28.805086135999886],[31.769744873000036,-28.764749526999935],[31.99106979400017,-28.632198333999895],[32.00874710100004,-28.578134536999983],[32.12429046600005,-28.499673842999982],[32.18240737899998,-28.41150474499989],[32.19276858300003,-28.335881137999877],[32.102081588000146,-28.260311239999965],[32.0503275260001,-28.156807475999926],[32.17834047800005,-28.052050617999953],[32.26991645800018,-27.855456933999903],[32.30573652200013,-27.730452247999892],[32.160430530000156,-27.507992680999962],[31.97394357800016,-27.349683507999885],[31.86711354000016,-27.314815125999928],[31.84765059300014,-27.211910332999935],[31.821008546000144,-26.739061190999905],[31.840990499999975,-26.386090027999956],[31.900930496000058,-26.113036455999975],[32.007492481000156,-25.899921202999963],[32.07266244900006,-25.84504588899989],[32.12071657000013,-25.726767175999953],[32.25183451400011,-25.580226194999966],[32.34083959700013,-25.38108944199996],[32.52317851300012,-25.200468145999935],[32.75371152800011,-25.013437040999975],[32.93891957000017,-24.818496267999933],[33.15032960800016,-24.69538337699987],[33.185554556000056,-24.616991124999856],[33.14807856400006,-24.436184923999917],[33.24486155100004,-24.34498964999989],[33.280601483000055,-24.40678657199993],[33.300388558000066,-24.60970901099995],[33.347969521000095,-24.68820377399993],[33.42861288700004,-24.747057044999963],[33.44102847500005,-24.616027052999925],[33.50715458700017,-24.481478736999975],[33.6259880880001,-24.332075221999844],[33.68863512600012,-24.22604436099988],[33.783095362000154,-23.93686026499995],[33.79601256500018,-23.743663296999898],[33.77859745000018,-23.54684780799988],[33.66420659000005,-23.135936053999956],[33.55430574700006,-22.979275651999956],[33.37529729000016,-22.991304318999937],[33.300143990000095,-23.040240017999963]]]},"properties":{"objectid":389,"eco_name":"Limpopo lowveld","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Afrotropic","eco_biome_":"AF07","nnh":3,"eco_id":48,"shape_leng":75.4676067349,"shape_area":7.3586582051,"nnh_name":"Nature Could Recover","color":"#FCC03C","color_bio":"#FEAA01","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":82382.0796145246,"percentage":0.38426241453736143}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-62.76751360299994,6.507861553000055],[-62.82481363399995,6.526782191000052],[-62.934482622999894,6.459549102000096],[-62.97554053799996,6.380075919000092],[-62.896263491999946,6.217426764000038],[-62.89157851099998,6.012721745000135],[-62.81933253999995,6.096248752000179],[-62.69288247799989,6.162465954000027],[-62.77344849299982,6.240616305000174],[-62.871028598999885,6.280708122000135],[-62.88889663699996,6.3284207640001],[-62.844444554999825,6.426148559000069],[-62.72997659099997,6.411000783000134],[-62.76751360299994,6.507861553000055]]],[[[-62.16754954599992,8.663468954999985],[-62.122764533999884,8.776803015000098],[-62.13786352699998,8.87871254100014],[-62.33147861799995,8.993563558000062],[-62.36506255699993,9.074711612000158],[-62.46248256799993,9.133907462000082],[-62.59031648199982,9.172623641000087],[-62.620136610999964,9.351664110000115],[-62.6965785619999,9.439812730000028],[-62.74518555399982,9.542591459000107],[-62.87585053999999,9.615592304000188],[-62.9058684819999,9.700183477],[-62.89183851699988,9.867461454000079],[-63.01057454599993,9.898830391000047],[-63.03554959999997,9.94904989400004],[-63.1750945419999,9.964383747],[-63.25400161099998,9.828199446000099],[-63.33683358999997,9.816074017000062],[-63.48431049399994,9.754715636000185],[-63.68902959399992,9.795064609000065],[-63.74668149799993,9.78579942100015],[-63.91617162699998,9.703511092000099],[-64.04492151599999,9.571750424000186],[-64.1196745129999,9.444614555000044],[-64.1794125049999,9.395126793000088],[-64.37245159099984,9.319003186000145],[-64.47920250399994,9.250381215000175],[-64.58878348299993,9.106103348000147],[-64.74464463699996,9.027779157000168],[-64.84074349299988,8.892574700000182],[-64.92398853199995,8.854058346000102],[-65.05043054699996,8.83414177100002],[-65.25050355899992,8.748158867000086],[-65.33690656299984,8.72852241400011],[-65.50234957399994,8.75885015200015],[-65.6196665469999,8.808342776000131],[-65.91136951799996,8.86447856],[-66.08348050099988,8.863941616000034],[-66.28461449399998,8.9123253140001],[-66.39904054799996,8.999416138000072],[-66.51097164499993,9.026095065000106],[-66.87793756899993,9.035427308000124],[-67.05693864299991,9.059419836000018],[-67.16133155899996,9.114195740000014],[-67.27040861799998,9.256564713000046],[-67.55944061199995,9.377705007000145],[-67.73382560499994,9.49123000700007],[-68.10498851599988,9.493480883000132],[-68.33287050199988,9.561193250000144],[-68.45900758399995,9.630025271000022],[-68.57949861599997,9.778019003000168],[-68.80316953499988,9.816965181000057],[-69.02793160999994,9.872327316000167],[-69.08636453899999,9.902430083000127],[-69.21739162299991,9.87614896100007],[-69.22487649499982,9.755318295],[-69.34281154899992,9.628983400000095],[-69.32556963899998,9.560876077999978],[-69.36638648999991,9.488646201000108],[-69.47757763199996,9.477271120000182],[-69.54727952799993,9.390229247000093],[-69.55050655999986,9.328160583000113],[-69.62213863999989,9.297946671999966],[-69.65005456899996,9.182620904000146],[-69.53444649899996,9.134411382000053],[-69.26403859099992,9.15229115500017],[-69.20797757199995,9.136418345000095],[-69.05255864699984,9.007217510000032],[-68.94542652499996,8.961234725000054],[-68.63302662299992,8.888255840000056],[-68.38848157999996,8.74475514300002],[-68.3654405669999,8.67230549300018],[-68.4665834839999,8.498303720000138],[-68.60301957699994,8.36135666600012],[-68.89927660399997,8.216555097000082],[-69.07505064599991,8.051484746000028],[-69.2070005779999,7.966388983000058],[-69.35731458899988,7.950020299000187],[-69.55039960699997,7.807422501000133],[-69.69873850699986,7.728249055000163],[-69.88488062699997,7.675331921000122],[-70.04939257599995,7.481523879000065],[-70.13774152399992,7.437250164000147],[-70.24964864899988,7.420303464000085],[-70.42767356699994,7.290326800000173],[-70.51578564199991,7.263710737000167],[-70.6524425149999,7.263350651000053],[-70.77375061499993,7.241596427000104],[-70.89297463799994,7.160751294000079],[-70.95815248499986,7.071261569000114],[-70.90715748899999,6.986169829000175],[-70.90393062299995,6.864103671000066],[-70.83409159999997,6.778768017000175],[-70.80215453699998,6.68919849700012],[-70.72747060699993,6.617847714000163],[-70.70490249999995,6.537771537000026],[-70.73889161999989,6.467822543000125],[-70.84313952899993,6.441016378000029],[-71.06636050799995,6.335922065000034],[-71.10008962099994,6.280054165000138],[-71.25093856499984,6.291254567000124],[-71.44052162499997,6.213756999000054],[-71.63869462699995,6.201909012000044],[-71.6862416429999,6.164935766000099],[-71.73956261699988,6.029629553],[-71.77274355399999,6.011248039000066],[-71.7646635669999,5.88935974400016],[-71.68561551499988,5.799475567000059],[-71.86906452999995,5.815554404000068],[-71.95424662699997,5.774318123000057],[-71.97357160799993,5.727698648000057],[-71.90003951799997,5.567710412000167],[-72.06040963399994,5.527320535000058],[-72.06091355399997,5.480521017000115],[-72.13218655299988,5.411083822000023],[-72.10536161299996,5.284451202000071],[-72.17553758799994,5.313283273000081],[-72.25101461499997,5.286014092000073],[-72.33660155799993,5.188685444000157],[-72.38321650599988,5.221905944000127],[-72.54792760899994,5.186157462000097],[-72.58167264899993,5.097669040000142],[-72.46136450999995,4.932827179000185],[-72.5414125239999,4.905618180000147],[-72.65819556899999,4.953541544000188],[-72.70688654799994,4.776479706000146],[-72.77758052499996,4.739823464000153],[-72.79254155199999,4.65123194500012],[-72.87687657299995,4.652079020000144],[-72.97916462599994,4.732451078000167],[-73.07802548599994,4.682026554000174],[-73.06583350499989,4.641901713000152],[-73.14516452999993,4.514637936000099],[-73.14569862499991,4.45864833100012],[-73.2641905729999,4.301170978000073],[-73.25073962999994,4.240410394000151],[-73.3264156429999,4.152545921000069],[-73.34346057799996,4.082779150000079],[-73.53560648899997,4.024030390000178],[-73.60099757099994,4.024638246000166],[-73.69575465099996,3.876457262000031],[-73.84725956299997,3.816586836000056],[-73.7551265219999,3.678252073000067],[-73.73984564199998,3.51909398100014],[-73.54473153199996,3.364894288000187],[-73.49871857099998,3.383640917000093],[-73.39117456199989,3.27849966499997],[-73.33213763299995,3.191320328000074],[-73.24994653499988,3.147548353000104],[-73.26447253999999,3.030872093000028],[-73.22560163199995,2.909659212000065],[-73.11252556699998,2.84120638800016],[-72.96511052099999,2.860963707000053],[-72.83000949699993,2.77594405100001],[-72.77306351699997,2.669986066000149],[-72.65756256799995,2.586380270000063],[-72.60460654199989,2.613210239000182],[-72.53401951799998,2.710882881000089],[-72.43929261199997,2.726443716000176],[-72.33890557499996,2.806123764000176],[-72.25114453399988,2.82055270800015],[-72.21707964199999,2.873429776000023],[-72.12791463199994,2.891762340000071],[-72.09847252599997,2.842705072000172],[-71.92024258699985,2.837623460000032],[-71.77953356699993,2.879066439000042],[-71.87220757599994,3.077928768000049],[-72.08940850399989,3.206403227000067],[-71.94627359299983,3.216432175000136],[-71.87302363799995,3.245593319000136],[-71.89021257499991,3.340079999000068],[-71.76766948599993,3.476971900000024],[-71.60537756699995,3.516622996000024],[-71.55606850699985,3.498782283000139],[-71.39719355599993,3.517004038000096],[-71.32460057499998,3.612302756000076],[-71.11428051899992,3.641504804000078],[-71.09677156099991,3.761509685000135],[-71.00148759499984,3.79231753800002],[-70.95195054699997,3.860481522000157],[-70.80308559899993,3.934560950000048],[-70.71000657599984,3.92393772600019],[-70.6181186209999,3.864200237000091],[-70.58045956899997,3.961462165000171],[-70.48102555399993,4.001813988000151],[-70.4161756069999,3.960227008],[-70.39255557199994,4.040807272000052],[-70.24266853499995,4.089165489000095],[-70.29196150199994,4.183826681000085],[-70.25897955099992,4.209203563000131],[-70.1364595959999,4.207337919000111],[-70.11927049199988,4.260995678000029],[-69.89266959499997,4.337100174000113],[-69.80369552499997,4.333272494000141],[-69.59991452699995,4.423879860999989],[-69.42135651999996,4.413369625000087],[-69.20987657599994,4.310481261000064],[-69.07099950499992,4.36957686400018],[-68.98334457899995,4.378194298000153],[-68.8413395479999,4.526772082000093],[-68.80101052399993,4.641433835000157],[-68.71525560799995,4.693231817000139],[-68.65752457899998,4.680231821000064],[-68.59286456599995,4.793844328000034],[-68.53730059499992,4.800606847000097],[-68.43000049899996,4.86692513600002],[-68.29511254299985,4.876090244000011],[-68.15420554199989,4.845872477000114],[-68.05022451299993,4.854146086000185],[-67.93350248799999,4.92134497700016],[-67.80966154499998,4.898234561000038],[-67.78979458999993,5.019837872000153],[-67.71595756699998,5.06091774700019],[-67.58723449999997,5.191879116999985],[-67.45095062199994,5.516555322000102],[-67.43252552199988,5.598608119000176],[-67.3369595879999,5.776620967000042],[-67.18511152199994,5.955510059000062],[-67.20185856399996,6.061395289000018],[-67.03772748899996,6.102889063000077],[-67.02072161299992,6.244601732000149],[-66.86766051699993,6.357970493000039],[-66.88466656099996,6.488346136000132],[-66.85632348999991,6.53936141600019],[-66.61822563999993,6.567704319000086],[-66.56720750999995,6.675404566000054],[-66.58421355299998,6.794442847000028],[-66.55586964399993,6.987170796000157],[-66.42548360799998,7.145888336000041],[-66.29510461299992,7.100540563000095],[-66.23841059299997,6.947491537000019],[-66.18172461999995,6.856796159999988],[-66.09101851399998,6.845458965000148],[-65.87581650199996,6.913594953000143],[-65.85292854199997,7.077866342000107],[-65.67719255399999,7.094871044000058],[-65.63184360799988,7.145888336000041],[-65.64318063499991,7.225246351000123],[-65.76222964399989,7.344284967000078],[-65.73954754399989,7.485995624000168],[-65.63751262499989,7.48032794900007],[-65.54680651799987,7.440649025000084],[-65.45610862599989,7.434980177],[-65.36540251999992,7.48032794900007],[-65.3030475299999,7.434980177],[-65.16709155199999,7.41518865900008],[-65.09264348799991,7.338396343999989],[-64.97299953099997,7.289425913000116],[-64.9375305019999,7.368884008000123],[-64.95365158399989,7.45565984000018],[-64.92041750599998,7.529115655],[-64.75666847699995,7.526108731000079],[-64.81264450299994,7.429893702000072],[-64.67239363799996,7.431257438000102],[-64.60417148399995,7.458598703000064],[-64.53266949099998,7.438136131000022],[-64.44065848999998,7.350258581000162],[-64.3426435319999,7.387090676000071],[-64.35997764299998,7.543767557000137],[-64.15263349799994,7.592239768000184],[-64.07044256699987,7.561763],[-64.02415451199988,7.491379321000181],[-64.04554747599991,7.428616636000072],[-63.93370857999997,7.335873391000064],[-63.873256617999914,7.358998895000184],[-63.82233454399994,7.455626816000063],[-63.719181478999985,7.315421883000056],[-63.67744060699994,7.367804252000155],[-63.600742504999914,7.334972672000049],[-63.654346619999956,7.273737840000024],[-63.632411514999944,7.201737292000189],[-63.53612155199994,7.18565543700015],[-63.54944961599995,7.057657573000029],[-63.59310960899995,6.927984166000101],[-63.64965459799987,6.840962409000042],[-63.80630163999996,6.740086875000145],[-63.74421654799988,6.697914670000046],[-63.751357593999955,6.6352902860001],[-63.70555451699994,6.525345365000021],[-63.646926623999946,6.54707477900007],[-63.61597057899996,6.618668470000046],[-63.49857749899991,6.721238154000162],[-63.48922748599989,6.805265056999986],[-63.27324662799998,6.947654649000015],[-63.18263657799997,7.031328505999966],[-62.94068958999992,7.154191617000095],[-62.95437254399991,7.270888161000187],[-62.88007753399995,7.374641705000045],[-62.69417161499996,7.322174344000189],[-62.57865155499991,7.398730960000023],[-62.48073952599998,7.360128608000139],[-62.42427047699988,7.222142868000105],[-62.36994954199997,7.280984498000066],[-62.24471250899995,7.255335372000047],[-62.22355658499998,7.095854744000064],[-62.123569531999976,7.061361536000163],[-62.06666948599991,7.194985669000118],[-62.130744608999976,7.358014021000031],[-62.10733747399996,7.404697534000036],[-62.011978572999965,7.370208852000189],[-61.938129479999986,7.489722386000153],[-61.88278964099993,7.650111780000032],[-61.879318526999896,7.736229465000179],[-61.932983493999984,7.865142130000038],[-62.06995351499995,7.948956133000081],[-62.20726048899991,7.931190354000137],[-62.319595592999974,7.95882649400005],[-62.43164453999992,7.952179813000157],[-62.67279055299997,7.830520847000116],[-62.81499456999984,7.71224112900012],[-62.94432063099998,7.728333209000027],[-63.00804153499996,7.896500002999971],[-62.973800621999885,8.029231295999978],[-62.882232520999935,8.11920197400002],[-62.81608153499997,8.144773987000121],[-62.68593555699994,8.297536184000137],[-62.652828547999945,8.380589278000173],[-62.492675523999935,8.491148425000063],[-62.29185451099994,8.560426196000094],[-62.16754954599992,8.663468954999985]],[[-62.24958457399998,7.689277061000041],[-62.39079248499996,7.826135100000045],[-62.294074541999976,7.87497058200006],[-62.24958457399998,7.689277061000041]]]]},"properties":{"objectid":390,"eco_name":"Llanos","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Neotropic","eco_biome_":"NO07","nnh":2,"eco_id":572,"shape_leng":57.1232399336,"shape_area":30.7487673686,"nnh_name":"Nature Could Reach Half Protected","color":"#FFAA01","color_bio":"#FEAA01","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":378245.3404987841,"percentage":1.7642850060068604}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-67.40148951399993,-31.54358703899993],[-67.66950254499994,-31.541561970999965],[-67.75245656399994,-31.572738123999954],[-67.8521886389999,-31.672952661999886],[-68.07218157899996,-31.759226584999965],[-68.22608153599998,-31.641869546999885],[-68.30844848599997,-31.52564942999993],[-68.32341755999994,-31.453648881999925],[-68.40280155899995,-31.449797229999945],[-68.4540485149999,-31.38307644199989],[-68.65711956599995,-31.370659825999894],[-68.72223655999989,-31.40634862899998],[-68.77427661199988,-31.564195120999955],[-68.60842154599999,-31.922679396999968],[-68.65020751299994,-32.01145246899995],[-68.67467462399992,-32.17707300899991],[-68.74769558499997,-32.315336692999836],[-68.76941661599994,-32.47380545699997],[-68.82291461599988,-32.60646147999995],[-68.91593949299994,-32.732197403999976],[-68.95910662899996,-32.96778520999993],[-69.06906848199992,-32.99141664499996],[-69.09255960399992,-33.377960179999945],[-69.13361349499996,-34.00059208799996],[-69.10378263699994,-34.087366913999915],[-69.08670853199993,-34.36735818799997],[-69.05621349199998,-34.40038120999998],[-69.08818860899999,-34.719738761999906],[-69.12245952899991,-34.74634593999997],[-69.15124549899991,-35.045440240999824],[-69.11192364399983,-35.08109953999991],[-69.12155964799996,-35.18119086299998],[-69.06649758399993,-35.30325500999993],[-68.76844750099997,-35.280584476999934],[-68.46259352999994,-35.42817872799992],[-68.30490159999994,-35.63082179799983],[-68.26196261899997,-35.82040435499994],[-68.28356948899983,-36.36596617199996],[-68.3345336399999,-36.440240563999964],[-68.30937954799998,-36.58885824499998],[-68.36462349899989,-36.603307807999954],[-68.45839654299994,-36.71010951499994],[-68.48117050999991,-36.818337319999955],[-68.58193959399989,-36.987000657999886],[-68.74253048899993,-37.10522337899988],[-69.0144045589999,-37.22999203099994],[-69.16305559999995,-37.24880554799995],[-69.40488457099997,-37.14535760799998],[-69.69222258299993,-36.9803209509999],[-69.87000258199987,-36.90539863899994],[-69.88319351799998,-37.07690394499991],[-69.84329951399997,-37.14268277499991],[-69.80326855099997,-37.325471966999885],[-69.65836354899994,-37.23571368599994],[-69.5890654939999,-37.25455435999987],[-69.54975855899994,-37.371572098999934],[-69.37940962099998,-37.34312961899991],[-69.28450753299995,-37.430592096999874],[-69.5855865019999,-37.55796165299989],[-69.65012363599993,-37.68135030899998],[-69.48165157299997,-38.09243672699989],[-69.49443062199987,-38.265190601999905],[-69.54875155799994,-38.292213354999944],[-69.64711754999996,-38.229493249999905],[-69.74877964199993,-37.99824223999997],[-69.76399262899986,-37.82343362599988],[-69.8408126039999,-37.65021086799982],[-70.12416049399985,-37.560643358999926],[-70.12829562199994,-37.60825340799994],[-69.93572961099983,-37.8261724969999],[-69.86010757699995,-38.13551602199993],[-69.87427550799998,-38.23175938099985],[-69.96952058299996,-38.34078849499997],[-70.17544550399992,-38.494788866999954],[-70.16489453199983,-38.57514851999997],[-70.04671455799996,-38.50170175799997],[-69.96905555499995,-38.498393755999984],[-69.94170356099994,-38.58169428299993],[-70.0839766439999,-38.703346375999956],[-70.0543824909999,-38.98730497199989],[-69.98522960999998,-39.22605912599988],[-69.85360757899986,-39.23287914499991],[-69.71028860199993,-39.280520373999934],[-69.6376416409999,-39.39025993799993],[-69.74546057599997,-39.50740809899992],[-69.98896056299998,-39.61508755999995],[-70.14233363299991,-39.85679549599985],[-70.15402957399988,-39.97335474499988],[-69.94358060399998,-40.036823185999936],[-69.73249058699997,-40.010399403999884],[-69.24982455899982,-40.046447957999874],[-68.94445053599998,-39.953138096999965],[-68.87551860299993,-40.08500253299991],[-68.46835357399993,-40.04425391099994],[-67.73007151799999,-40.337047199999915],[-67.57628656099996,-40.36670706799987],[-67.53512554899993,-40.41024753399995],[-67.5436625179999,-40.5784845689999],[-67.49008958299999,-40.63411391899996],[-67.59377255199996,-40.77600730199998],[-67.62097953999995,-41.18274904499998],[-67.49236258799993,-41.22508084099991],[-67.40097855299996,-41.16653324699996],[-67.19101757799996,-40.91339993899993],[-66.94080351899987,-40.91571183499991],[-66.86422762499996,-40.95809643799993],[-66.61067957999995,-40.95971732999993],[-66.51709764199995,-40.87540611299994],[-66.33125257599988,-40.829523741999935],[-66.22303751199996,-40.90380986799994],[-66.18399058399996,-41.01133778399998],[-66.20391051199994,-41.33605673599993],[-66.12349654499997,-41.534354795999946],[-66.15246557599994,-41.68832532799996],[-66.27667951299998,-41.685704641999905],[-66.35131851699998,-41.64610467599988],[-66.41564157799996,-41.74855902599995],[-66.65891257099992,-41.84292232399997],[-66.79872858399995,-41.78831958899997],[-67.04661549099984,-41.73021824799997],[-67.35880249299993,-41.72217312999993],[-67.79827858499988,-42.05276360599987],[-67.87808955799994,-42.260376976999964],[-67.76248953499999,-42.3791922989999],[-67.66043852199988,-42.416527139999914],[-67.60805548299999,-42.383846098999925],[-67.4455716189999,-42.38959507899989],[-67.25833163699986,-42.36673746099996],[-67.11916354499994,-42.41592783399989],[-67.01966063199995,-42.63767845799998],[-67.03314962799988,-42.963402903999906],[-67.09137753599992,-43.03924923699998],[-67.26213048299985,-43.11387985899995],[-67.49379756999991,-43.2614702539999],[-67.52924363199998,-43.56771599499996],[-67.37497755399988,-43.92768906499998],[-67.15509760299994,-44.16878931299988],[-67.06332364199983,-44.22815330499998],[-66.74108858199992,-44.205638338999904],[-66.60614748499995,-44.15035231199994],[-66.19814258899999,-44.06348075799997],[-66.14839163499994,-44.02059575599992],[-65.87904353499988,-43.91203401699994],[-65.83953861999998,-43.87021720499996],[-65.46305856499998,-43.72818451399996],[-65.34719048799997,-43.73327752599994],[-65.32807153499988,-43.644593972999985],[-65.0591205689999,-43.40515384499997],[-65.01074257099992,-43.281424380999965],[-64.88924453699991,-43.203582483999924],[-64.69480148199989,-43.12763187999997],[-64.50608058499995,-43.08200431999984],[-64.32898756699996,-43.00162941199983],[-64.52817561699999,-42.92533179699984],[-64.63915251799989,-42.91939204499988],[-64.95968655399997,-42.78578366999989],[-65.03450761299985,-42.730272168999875],[-64.98638962199988,-42.65715649299983],[-64.84324649699994,-42.61707171699993],[-64.67735253899991,-42.510306218999915],[-64.5607295879999,-42.493392376999964],[-64.57154861399988,-42.427539786999944],[-64.62047562599997,-42.39801017399992],[-64.47901961099984,-42.236978055999884],[-64.87704450899997,-42.18770352999991],[-65.01896655899998,-42.09627037699994],[-65.08551752899996,-41.97158705299995],[-65.03009051799995,-41.73729089799997],[-65.00413561899995,-41.534102667999946],[-65.08792162699996,-41.41181589799993],[-65.17156949999998,-41.09583608499997],[-65.17765057099996,-40.98226196699994],[-65.11483759399994,-40.83167872999991],[-64.9298706159999,-40.73980284499987],[-64.80799858199993,-40.73089992299998],[-64.74123353799996,-40.825307644999896],[-64.43204457599995,-40.90605303299992],[-64.23162857699992,-41.00037777499995],[-63.95914463899993,-41.07799905999997],[-63.783622556999944,-41.16178422899998],[-63.4419475169999,-41.16516733199984],[-63.095184493999966,-41.15555446299993],[-62.89334860099996,-41.08484992399997],[-63.06787457699994,-40.870321314999956],[-63.233409621999954,-40.784880216999966],[-63.28252757399997,-40.73590760699983],[-63.362331506999965,-40.46316768599996],[-63.87597654599983,-39.68331675499991],[-63.98169748999999,-39.448764951999976],[-64.12712853999989,-39.25176977499984],[-64.34683263899996,-38.855016746999866],[-64.44534263299988,-38.820539296999925],[-64.47901961099984,-38.74454477199998],[-64.6723865969999,-38.59641106099991],[-64.70562754899993,-38.52511911899995],[-64.82095348399997,-38.44630860999996],[-64.84335361699993,-38.37486881099994],[-64.95986961499995,-38.29115237299993],[-64.98807555799993,-38.22450752599997],[-65.12104757799995,-38.121657214999914],[-65.16574860299988,-38.04672635399993],[-65.2813875189999,-37.96148088899997],[-65.31369757599992,-37.893580097999916],[-65.42436954399994,-37.812938644999974],[-65.43529552199988,-37.762822575999905],[-65.60173748799997,-37.591474010999946],[-65.75076252999997,-37.47360919699997],[-65.88414761099995,-37.48815096099992],[-66.30490858999997,-37.356397333999894],[-66.56185164099998,-37.09022463399987],[-66.6222075469999,-36.810345509999934],[-66.83794348499998,-36.42548170799995],[-66.83589159499985,-36.37173007199988],[-66.59476452499996,-36.13897015299989],[-66.54992653999989,-36.047171213999945],[-66.46870455699997,-35.49780719799992],[-66.38446860899995,-35.299717846999954],[-66.37474057199984,-35.087012468999944],[-66.49279749899989,-34.891777324999964],[-66.58939356899992,-34.80887829099993],[-66.6678005739999,-34.64831472099985],[-66.61952952799999,-34.57446344799996],[-66.42393463299999,-34.472507151999935],[-66.34557356099998,-34.369958924999935],[-66.33631859899992,-34.2181800919999],[-66.4134825669999,-34.10797332099986],[-66.33265654499996,-34.018566576999945],[-66.32456951699999,-33.77831256499991],[-66.35305759499988,-33.74356957699996],[-66.34540558699996,-33.62046087699997],[-66.34941062799993,-33.54872419099996],[-66.45077549799993,-33.549589873999935],[-66.50428053899992,-33.41908196499992],[-66.72328156399988,-33.52678271499997],[-66.90670761299998,-33.86864986799998],[-66.97434957199994,-33.7677228689999],[-66.99903159399992,-33.67428442999994],[-67.07331051199998,-33.554128841999955],[-67.07382163999995,-33.36405644699988],[-66.99125654099993,-33.24399993299994],[-67.09947948399997,-33.13789308499992],[-67.22307550799997,-32.51627723099989],[-67.18634064399993,-32.40544064299996],[-67.26160460199992,-32.344933527999956],[-67.2883075019999,-32.14141438099995],[-67.4093326279999,-31.878285819999974],[-67.40148951399993,-31.54358703899993]],[[-68.78371463499991,-37.85668480399988],[-68.94654852699989,-37.936319589999925],[-69.03273058499997,-37.905463121999844],[-69.15122957299997,-37.927427730999966],[-69.20373549099997,-37.88659948099996],[-69.18060261199997,-37.663916452999956],[-69.05559557799995,-37.619457497999974],[-68.82424163899998,-37.61566937999993],[-68.71592750099995,-37.69226404999995],[-68.71988660899996,-37.84146108799996],[-68.78371463499991,-37.85668480399988]]]},"properties":{"objectid":393,"eco_name":"Low Monte","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Neotropic","eco_biome_":"NO08","nnh":2,"eco_id":577,"shape_leng":52.8613856237,"shape_area":36.4787003161,"nnh_name":"Nature Could Reach Half Protected","color":"#D6A53C","color_bio":"#FEFF73","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":354191.5934782488,"percentage":3.3429130753963245}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[47.04907255300009,-19.675873111999977],[47.12837960600007,-19.58635723599997],[47.12810149500007,-19.47412371999991],[47.18613460700004,-19.332983031999902],[47.114437484000064,-19.279118071999903],[47.050376610000114,-19.355276714999945],[47.00512355200004,-19.55006828899991],[46.91777456600005,-19.694715127999928],[47.04907255300009,-19.675873111999977]]],[[[49.17737959300018,-14.281945243999871],[49.201862629000175,-14.21610757399992],[49.16643148600019,-14.140820480999878],[49.09952948199998,-14.22814264599998],[49.17737959300018,-14.281945243999871]]],[[[48.95648157500011,-14.176514312999927],[49.01352662900007,-14.10613080099995],[49.03593849700013,-13.970108773999925],[49.02777050000009,-13.870953372999963],[48.97737162500016,-13.87645693099995],[48.92911952300017,-14.019167717999949],[48.95648157500011,-14.176514312999927]]]]},"properties":{"objectid":400,"eco_name":"Madagascar ericoid thickets","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Afrotropic","eco_biome_":"AF10","nnh":4,"eco_id":83,"shape_leng":3.48818047001,"shape_area":0.108619237022,"nnh_name":"Nature Imperiled","color":"#E600AA","color_bio":"#D6C39D","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":1280.4350466847045,"percentage":0.02622066814309727}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[45.99264547100012,-24.06162667199993],[45.86293049000011,-24.304595581999877],[45.836383494000074,-24.41355210899991],[45.85041060900011,-24.608274448999907],[45.916515495000056,-24.686710621999907],[45.88636059200019,-24.760403141999916],[45.393775588000096,-24.777513455999895],[45.14139950100008,-24.720658167999886],[45.089282503,-24.68370503899996],[44.87469052600011,-24.630931402999977],[44.77467346700007,-24.576174273999868],[44.65611262000016,-24.45847709799989],[44.62840255100002,-24.396613120999916],[44.495605544000114,-24.23771067599995],[44.39021652200017,-23.902052501999947],[44.330657568,-23.832840947999955],[44.31763846100006,-23.70476244999992],[44.40512457500006,-23.531504319999954],[44.30702948600009,-23.379073207999966],[44.27793858200005,-23.200339348999876],[44.140617527000074,-23.14278316699989],[44.113872551000156,-23.05096293799994],[43.8795695230001,-23.075436585999967],[43.85335947900006,-22.943752528999937],[43.90228246900017,-22.786755625999888],[43.973979592000035,-22.711520668999924],[43.972907547000034,-22.62687819899986],[43.8365215770001,-22.605361182999957],[43.67783354200003,-22.450128335999977],[43.63133258700003,-22.337793230999864],[43.62664760600006,-22.05630629099994],[43.50233057100013,-22.019941403999894],[43.38465150000013,-22.019086282999922],[43.23862852000002,-22.084296818999974],[43.235778506000145,-22.149942543999884],[43.30447054900003,-22.168532263999964],[43.22850049900006,-22.272856950999937],[43.262349977000156,-22.374270938999928],[43.28488958500009,-22.55447196699987],[43.37044501200012,-22.854215613999884],[43.48188057100009,-22.991449077999903],[43.589790534000144,-23.07473485299988],[43.62046846700014,-23.21231658599993],[43.61602052600011,-23.314522327999953],[43.76322954500017,-23.46127369499993],[43.72124853100013,-23.595837605999975],[43.65494960500013,-23.618596820999926],[43.63353551900002,-23.752819504999877],[43.67602958900005,-24.05941468799989],[43.67052049900008,-24.330210342999976],[43.76221458000015,-24.46691960299995],[43.835201595000115,-24.5074114869999],[43.92872955300015,-24.627276557999892],[43.91764850900006,-24.719351093999933],[44.004840503000025,-24.857350077999968],[44.027740533000156,-24.998988734999955],[44.11037059100016,-25.07315525099989],[44.19677007600018,-25.080794768999965],[44.324340463,-25.180549055999904],[44.35422848600018,-25.258905433999814],[44.68675954000014,-25.306013908999887],[44.89796103700019,-25.392685050999944],[44.972370544000114,-25.480905838999945],[45.11314058500017,-25.534093373999895],[45.18054952600011,-25.60727895599996],[45.29119852700018,-25.58413987399996],[45.5161515420001,-25.577920165999956],[45.61008049000009,-25.54820162599998],[45.871570556,-25.368440982999857],[46.031009610000126,-25.290074881999942],[46.29639860200007,-25.193179242999918],[46.522941496000044,-25.16798961199993],[46.65438046700001,-25.189059537999924],[46.74619019000011,-25.14722551499989],[46.71030050100018,-25.052540127999862],[46.68925454800012,-24.77326349599997],[46.555862594000075,-24.710413470999924],[46.60951649800012,-24.637005265999903],[46.59481447200011,-24.343814506999934],[46.71345846700018,-24.344463433999977],[46.7071604730001,-24.28546841399998],[46.56748561200004,-24.29130205099989],[46.59038547400013,-24.230400315999873],[46.758491583000136,-24.197726650999982],[46.60052456000005,-24.11649293399995],[46.540111489000026,-24.0561879899999],[46.418235600000116,-24.069225201999927],[46.4175605210001,-23.98760424099993],[46.06501348200004,-24.03446997599991],[45.99264547100012,-24.06162667199993]]]},"properties":{"objectid":403,"eco_name":"Madagascar spiny thickets","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Afrotropic","eco_biome_":"AF13","nnh":4,"eco_id":99,"shape_leng":16.0865725807,"shape_area":3.85121045761,"nnh_name":"Nature Imperiled","color":"#E05A57","color_bio":"#CC6767","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":43487.01259882941,"percentage":0.1648348042228004}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[45.99264547100012,-24.06162667199993],[45.91842254500011,-24.095045822999964],[45.79801550000019,-24.27134524199988],[45.697547494000105,-24.25253524599998],[45.72441451100002,-24.17791769999991],[45.67992353700015,-24.116858719999925],[45.782707463000065,-23.98163448199989],[45.811672470000076,-23.831822211999963],[45.88562751100005,-23.92291656799989],[45.949779580000154,-23.930002292999973],[46.00155258500007,-23.80373948299996],[46.03182952800012,-23.56118078399993],[46.08282050000008,-23.553893221999942],[46.074211615000195,-23.729154290999816],[46.23973458900008,-23.49227231899988],[46.16279961500004,-23.410555468999974],[46.167800593000095,-23.317846254999836],[46.123931556000116,-23.215842516999942],[46.05415757700007,-23.18389221099983],[45.91883057600006,-23.049784106999937],[45.93445947300006,-22.946026538999945],[45.84262046800012,-22.858547967999982],[45.751090589000114,-22.864672791999965],[45.74750548100013,-22.745161939999946],[45.67419450600016,-22.683487225999897],[45.5396114830001,-22.6763735049999],[45.55921960500012,-22.5195958729999],[45.523681509000085,-22.381441991999964],[45.55585058300005,-22.286099184999955],[45.52143448800007,-22.035351532999982],[45.51566354800008,-21.9038046039999],[45.4737585580001,-21.701444505999973],[45.55041860600011,-21.556968322999865],[45.59217456600004,-21.355319345999874],[45.561649518000195,-21.248780327999953],[45.43034750800001,-21.356524495999906],[45.34617962100009,-21.376982206999912],[45.26593061000017,-21.53630341199994],[45.23016754300011,-21.45196520499985],[45.07986459700004,-21.591140503999952],[45.033634544999984,-21.470460041999957],[44.93144657200014,-21.481294656999978],[44.96140651200011,-21.042681565999942],[44.92292050000009,-20.902923555999962],[44.97956858700013,-20.89049520599997],[45.166721565000046,-20.787238036999895],[45.15510156500011,-20.674771168999882],[45.24921759800003,-20.632981514999983],[45.284278596000036,-20.486913942999877],[45.25279952000011,-20.293990862999976],[45.20162146300004,-20.27595166599997],[45.10229155200017,-20.315038659999857],[44.979293493000114,-20.421398473999943],[44.88853860400013,-20.404353537999953],[44.98946359100012,-20.215769097999953],[44.97266357500007,-20.154956546999927],[44.743812473000105,-19.965153377999968],[44.58164946800014,-19.85713780399982],[44.473632971000086,-19.823689148999904],[44.4864194810001,-19.95279509999989],[44.44354051400006,-20.058728023999834],[44.26301946500013,-20.306263980999915],[44.23252157500019,-20.406538364999903],[44.11635946100006,-20.488103837999915],[44.04358272100018,-20.709736166999903],[44.033184495000114,-20.805830942999876],[43.96671248200005,-20.879458920999866],[43.88370023700014,-20.906356280999944],[43.86671051000013,-21.051593372999946],[43.80561045900009,-21.220492912999873],[43.72861848700012,-21.284410288999936],[43.757282584999984,-21.38509471599997],[43.71144849400008,-21.475659000999883],[43.54260259800009,-21.716644584999983],[43.42483853500016,-21.670688117999873],[43.34967046500009,-21.748235139999963],[43.32949857700015,-21.868677555999966],[43.23862852000002,-22.084296818999974],[43.38465150000013,-22.019086282999922],[43.50233057100013,-22.019941403999894],[43.62664760600006,-22.05630629099994],[43.63133258700003,-22.337793230999864],[43.67783354200003,-22.450128335999977],[43.8365215770001,-22.605361182999957],[43.972907547000034,-22.62687819899986],[43.973979592000035,-22.711520668999924],[43.90228246900017,-22.786755625999888],[43.85335947900006,-22.943752528999937],[43.8795695230001,-23.075436585999967],[44.113872551000156,-23.05096293799994],[44.140617527000074,-23.14278316699989],[44.27793858200005,-23.200339348999876],[44.30702948600009,-23.379073207999966],[44.40512457500006,-23.531504319999954],[44.31763846100006,-23.70476244999992],[44.330657568,-23.832840947999955],[44.39021652200017,-23.902052501999947],[44.495605544000114,-24.23771067599995],[44.62840255100002,-24.396613120999916],[44.65611262000016,-24.45847709799989],[44.77467346700007,-24.576174273999868],[44.87469052600011,-24.630931402999977],[45.089282503,-24.68370503899996],[45.14139950100008,-24.720658167999886],[45.393775588000096,-24.777513455999895],[45.88636059200019,-24.760403141999916],[45.916515495000056,-24.686710621999907],[45.85041060900011,-24.608274448999907],[45.836383494000074,-24.41355210899991],[45.86293049000011,-24.304595581999877],[45.99264547100012,-24.06162667199993]],[[45.31151961300003,-22.41682435299998],[45.38923662000008,-22.437885224999945],[45.354858579000165,-22.566363204999845],[45.23163957300005,-22.570214018999934],[45.215774475000046,-22.516496747999895],[45.31151961300003,-22.41682435299998]],[[44.24254649900013,-22.57678073699998],[44.22795846700012,-22.733968411999967],[44.170989521000024,-22.77825319099992],[44.0959205260001,-22.77557517299988],[44.00256355900012,-22.553242843999953],[44.013301615000046,-22.482802838999874],[44.10117748800002,-22.482047628999908],[44.202266593000104,-22.43437622499988],[44.24254649900013,-22.57678073699998]],[[45.001430602000084,-22.765722748999963],[45.076770501000055,-22.74443204399995],[45.05026658800011,-22.93848668199996],[45.08692551200011,-23.049696096999867],[44.963169561000086,-23.06164936099998],[44.942363498000134,-22.923827570999947],[44.89855950500015,-22.8808168409999],[45.001430602000084,-22.765722748999963]],[[45.11930849200007,-22.86170492799988],[45.107379535000064,-22.81309843899993],[45.20063357200007,-22.742089972999963],[45.24006254799997,-22.831135288999974],[45.11930849200007,-22.86170492799988]]]},"properties":{"objectid":405,"eco_name":"Madagascar succulent woodlands","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Afrotropic","eco_biome_":"AF13","nnh":4,"eco_id":100,"shape_leng":23.8635172018,"shape_area":6.97792406016,"nnh_name":"Nature Imperiled","color":"#F7885B","color_bio":"#CC6767","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":79874.94367525939,"percentage":0.30276098347976654}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[23.432603265000182,-20.03414030399989],[23.417513213000063,-20.014406745999963],[23.30413333100006,-20.15191292199995],[23.21146914800005,-20.217265789999885],[23.176241001000164,-20.277287742999874],[23.011769677000075,-20.3286914009999],[22.993241524000098,-20.34633710299994],[23.16152812200005,-20.31976928599994],[23.233083164000107,-20.238583803999916],[23.341759060000072,-20.162875571999905],[23.600329951000163,-20.18619989799987],[23.695244141000103,-20.22729834199987],[23.81560632900016,-20.234092457999907],[23.868820462000144,-20.33295061699988],[23.992648916000064,-20.35093480499995],[24.148603755000124,-20.261364019999974],[24.390977347000046,-20.422377102999917],[24.46970693700007,-20.393585970999823],[24.495639595000057,-20.45951621099988],[24.382418851000125,-20.697041327999898],[24.336420479000026,-21.00147877099988],[24.39905119700012,-21.138728632999914],[24.508611026000153,-21.299501471999918],[24.54024296700004,-21.39342442399993],[24.662784210000098,-21.347725643999865],[24.82909626200012,-21.216110375999904],[24.990312069000083,-21.205239769999935],[25.123720175000187,-21.038891311999976],[25.27424050000019,-21.078451807999897],[25.276481157000035,-21.128484913999955],[25.469069032000107,-21.163001195999982],[25.642132627000137,-21.131878656999902],[25.819814069000074,-21.140884101999916],[25.835755978000122,-21.172920593999947],[26.025986788000125,-21.230631080999842],[26.27253722500018,-21.231961906999913],[26.305417004000105,-21.28964677299996],[26.415243556000064,-21.14247803099994],[26.405765520999978,-21.058773458999838],[26.316745210000192,-20.98153909599995],[26.255455940000047,-20.96494227599993],[26.19702727300006,-20.778172063999932],[26.208639988000186,-20.64699595299993],[26.343286123000155,-20.411969641999974],[26.350672483000096,-20.315141586999914],[26.249808392000148,-20.268152233999842],[26.14619581500017,-20.31338099499993],[26.07285576600009,-20.295834194999884],[26.05854245300003,-20.21228222099984],[25.9282285270001,-20.29978747399997],[25.668832165000026,-20.234741047999933],[25.495535349000136,-20.287544315999924],[25.370442202000106,-20.410407904999886],[25.361081455000146,-20.471569901999885],[25.284381598000095,-20.540181238999935],[25.137232494000102,-20.54790934899995],[25.09901738500014,-20.492925200999878],[25.03156608800009,-20.547519263999902],[24.886663247,-20.57806635599991],[24.840439366,-20.654862853999873],[24.711668476000057,-20.710133408999923],[24.579912434,-20.73214470499994],[24.528445310000052,-20.806879469999956],[24.529309952,-20.886953681999955],[24.58988821500003,-20.949534410999888],[24.38653468500013,-20.952293973999872],[24.381808132000117,-20.841035096999974],[24.43241522600016,-20.643070040999874],[24.54020196900018,-20.450233012999888],[24.507278386,-20.34254801399993],[24.406964912999968,-20.35531163199994],[24.299047326000164,-20.265180713999825],[24.30132578900009,-20.222926703999917],[24.18413394400011,-20.1679087039999],[24.042463849,-20.203354782999952],[23.95412484300016,-20.278227600999912],[23.922983425000098,-20.208079880999946],[23.839816738000025,-20.134577547999868],[23.682589066000105,-20.136743748999947],[23.63365119399998,-20.09255587699994],[23.45746281200013,-20.08133990799996],[23.432603265000182,-20.03414030399989]]]},"properties":{"objectid":412,"eco_name":"Makgadikgadi halophytics","biome_num":9,"biome_name":"Flooded Grasslands & Savannas","realm":"Afrotropic","eco_biome_":"AF09","nnh":2,"eco_id":73,"shape_leng":12.7287135614,"shape_area":1.52589397534,"nnh_name":"Nature Could Reach Half Protected","color":"#2C97C3","color_bio":"#BEE7FF","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":17681.37519398939,"percentage":1.529050696606553}}, + {"type":"Feature","geometry":null,"properties":{"objectid":415,"eco_name":"Malpelo Island xeric scrub","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Neotropic","eco_biome_":"NO13","nnh":4,"eco_id":604,"shape_leng":0.11268475086,"shape_area":0.000623405736473,"nnh_name":"Nature Imperiled","color":"#B34544","color_bio":"#CC6767","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":7.7067057421515415,"percentage":0.000029211786606939194}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[13.85493350300004,11.108053868000184],[13.778860523000048,11.101089513000147],[13.641409548000183,10.90494308700005],[13.475569571000051,10.741445181000188],[13.383110473000045,10.618883819000132],[13.331959574000052,10.460424778000174],[13.28582943400005,10.143252220000022],[13.30292047,10.049842782000042],[13.397330539000109,9.90227418000012],[13.480469464,9.937143735000177],[13.483329537000145,10.016895030000114],[13.585530585000129,9.951607715000023],[13.652919578000024,9.967726618000086],[13.759099516000049,10.08767098200019],[13.781270488000075,10.202232153000125],[13.914299506000077,10.26390753700008],[13.951020456000094,10.305175669999983],[13.915989465000052,10.498541315000125],[13.996749437,10.44121613800013],[14.041600498000093,10.460564923000106],[14.103679556000031,10.599455238000075],[14.091039478000141,10.70492791100014],[14.147878505,10.912036524000143],[14.152700446000097,11.023545844000068],[14.0704495,11.085940396000183],[13.910880527000074,10.959670042000141],[13.873999483000148,10.973718112000029],[13.85493350300004,11.108053868000184]]]},"properties":{"objectid":417,"eco_name":"Mandara Plateau woodlands","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Afrotropic","eco_biome_":"AF07","nnh":4,"eco_id":49,"shape_leng":3.84702271037,"shape_area":0.617672093688,"nnh_name":"Nature Imperiled","color":"#FCE55B","color_bio":"#FEAA01","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":7525.565073868381,"percentage":0.035102194792529316}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[36.471666667000136,2.285],[36.386666667000156,2.141666666000106],[36.39666666700015,2.051666666000131],[36.47416666700019,1.91916666700007],[36.313333333,1.819166667000161],[36.28083333300003,1.69166666600006],[36.34,1.650000000000148],[36.46666666700014,1.650000000000148],[36.50833333300011,1.762500000000102],[36.49916666700017,1.815833333000057],[36.55500000000012,2.151666666999972],[36.58666666700003,2.210833332999982],[36.471666667000136,2.285]]],[[[39.49916666700011,2.736666667000065],[39.41166666700019,2.667500000000132],[39.41666666600008,2.516666667000038],[39.446666666000056,2.434166667000113],[39.43666666700017,2.355833334000124],[39.4625,2.2650000000001],[39.55,2.275],[39.565,2.431666666000126],[39.52500000000015,2.500000000000114],[39.52166666700015,2.660833334000131],[39.49916666700011,2.736666667000065]]],[[[36.33583333400014,2.866666667000118],[36.260000000000105,2.96],[36.15916666600015,2.958333333000098],[36.23166666700013,2.839166667000086],[36.30333333300007,2.663333333000082],[36.37916666700005,2.6425],[36.33583333400014,2.866666667000118]]],[[[35.6475,3.27916666700014],[35.665,3.141666666000106],[35.7625000000001,3.160833334000188],[35.6475,3.27916666700014]]],[[[34.675,4.158333332999973],[34.629166666000174,4.060000000000173],[34.79000000000019,4.105833334000124],[34.675,4.158333332999973]]],[[[34.9320466960001,4.750948615000084],[34.86542178800005,4.755707536999978],[34.803555802000176,4.705738856000153],[34.83,4.535833334000188],[34.756666666000115,4.4],[34.780833333000146,4.3275],[34.8925,4.427500000000123],[34.995833334000054,4.386666666],[35.04500000000013,4.416666667000015],[35.110833334000176,4.255000000000109],[35.131666666000115,4.080000000000155],[35.23000000000019,3.940000000000111],[35.25583333400016,3.805833334000113],[35.31916666700005,3.8],[35.3425,3.9475],[35.32416666700004,4.021666666000158],[35.34083333400014,4.144166667000036],[35.420833333000076,4.181666667000059],[35.41666666700007,4.293333333000021],[35.36666666700006,4.36833333300001],[35.36583333300018,4.4575],[35.41833333400007,4.539166667000188],[35.40080051400014,4.636734487000183],[35.26279177600003,4.736671849000061],[35.051019746000065,4.736671849000061],[34.9320466960001,4.750948615000084]]],[[[35.83,5.11833333400017],[35.736213415000066,5.13303216900016],[35.62356484600008,5.119238467000173],[35.577585838000175,5.084754211000131],[35.50861732600009,4.923827683000013],[35.529307879000044,4.781292759000053],[35.784491373000094,4.659448388000044],[35.83083333400009,4.605000000000189],[35.8366666660001,4.385833333000107],[35.81666666700005,4.303333333000182],[35.835,4.189166667000109],[35.73750000000018,3.920833333000076],[35.73166666700007,3.8241666670001],[35.790000000000134,3.761666667000156],[35.8025,3.648333333000096],[35.765,3.523333334000142],[35.82333333399998,3.301666667000177],[35.88416666700016,3.1425],[35.756666666000115,3.133333333000053],[35.67083333300019,3.084166666000101],[35.5875,3.0875],[35.54000000000019,2.987500000000125],[35.71916666600009,2.98250000000013],[35.736666667000065,2.939166666000119],[35.868333334000056,2.834166666000158],[35.86333333400012,2.958333333000098],[35.93583333300012,2.956666667000093],[35.96333333300015,2.870000000000118],[36.11416666700018,2.836666666000099],[36.19083333300006,2.85],[36.14166666699998,2.975833332999969],[36.14916666700009,3.166666666000026],[36.023333334000085,3.292500000000132],[35.945000000000164,3.335833333000039],[35.9466666670001,3.458333334000088],[35.906666667000025,3.543333334000067],[35.83416666700009,3.615833333000126],[35.864166667,3.879166667000163],[35.85833333400012,3.975833334000072],[35.9325,4.13],[35.91833333300008,4.309166666000124],[35.9425,4.513333333000048],[35.99,4.7025],[35.99,4.838333334000083],[36.05,4.937500000000171],[36.01416666600011,5.03],[35.87000000000012,5.025833333000037],[35.83,5.11833333400017]]],[[[36.63666666600017,4.447500000000105],[36.37833333400016,4.436666667000168],[36.28,4.444166667000047],[36.224166665999974,4.624166666000065],[36.154166667000084,4.713333334000026],[36.1675,4.798333333000073],[36.16666666700013,5.060000000000173],[36.19416666600006,5.14666666700009],[36.11666666600013,5.130833333000112],[36.090000000000146,5.03],[36.13,4.955833333000157],[36.11416666700018,4.83500000000015],[36.07416666600017,4.743333333000066],[36.14583333400003,4.706666667000093],[36.20416666700015,4.595833333000144],[36.22416666700008,4.507500000000107],[36.21,4.325000000000102],[36.2650000000001,4.155000000000143],[36.20166666600011,3.940000000000111],[36.29,3.75416666700005],[36.22833333300002,3.6075],[36.264166667000154,3.352500000000134],[36.315833333000114,3.190000000000111],[36.394166667000036,3.127500000000168],[36.41250000000019,3.028333334000024],[36.545833333000076,2.888333333000105],[36.68666666700017,2.8900000000001],[36.71916666699997,2.84],[36.70333333300016,2.565833333000057],[36.71083333400014,2.505000000000109],[36.7775,2.292500000000132],[36.88166666700005,2.253333333000171],[36.92666666700012,2.135833333000164],[36.892500000000155,2.016666667000152],[36.78833333300014,2.025000000000148],[36.773333334000085,2.225],[36.774166666000156,1.983333333000076],[36.688333334000106,1.930000000000177],[36.67750000000012,1.745833333000178],[36.73083333300019,1.692500000000109],[36.78000000000014,1.568333333000169],[36.8725,1.474166667000077],[36.92500000000018,1.363333333000128],[36.98666666700018,1.473333334000131],[36.98916666600019,1.723333333000141],[36.97083333299997,1.808333333000121],[37.04,1.954166666999981],[37.10916666600008,1.939166667000052],[37.30270210600008,1.828830274999973],[37.56583333300006,1.711666667000145],[37.773333334000085,1.758333334000156],[37.829166667000095,1.748333333000119],[37.87333333400005,1.82333333400004],[37.929166667000175,1.785833333000085],[38.080000000000155,1.77],[38.203333333000046,1.697500000000105],[38.330833333000044,1.71666666700014],[38.38083333300011,1.692500000000109],[38.38916666600011,1.755],[38.48750000000018,1.820833333],[38.545833333000076,1.854166667000072],[38.68333333300018,1.915833333000137],[38.75583333300011,1.90416666700014],[38.73916666600019,2.056666667000059],[38.70833333400003,2.165833334000183],[38.71,2.256666667000104],[38.76083333399998,2.299166667000065],[38.8275000000001,2.29],[38.895,2.132500000000164],[39.03333333300009,1.949166667000043],[39.0841666660001,1.993333333000066],[39.06416666700005,2.150833333000151],[39.09416666700014,2.195833334000099],[39.28916666700002,2.2525],[39.30166666700012,2.155],[39.35333333300002,2.100833333000082],[39.47916666700013,2.13666666600011],[39.42083333300013,2.325833333000105],[39.412500000000136,2.444166667000104],[39.36833333300018,2.523333333000096],[39.370000000000175,2.6475],[39.406666667000025,2.885833334000097],[39.325833333,2.900833333000151],[39.27,2.81666666700005],[39.288333333000026,2.69583333300011],[39.17416666700012,2.609166667000068],[39.1525,2.505000000000109],[39.09333333300009,2.465833333000091],[39.066666666,2.564166667000165],[39.0975,2.653333333000148],[39.09,2.74583333400011],[39.11416666700012,2.839166666000153],[39.09333333300009,2.923333333000187],[39.12166666600007,2.977500000000134],[39.06333333300017,3.0975],[38.99166666700012,3.045],[38.968333334000135,2.741666667000061],[38.9125,2.791666667000072],[38.9458333340001,2.8775],[38.900833334000026,2.955833333000044],[38.903333333000035,3.143333333000044],[38.75083333300012,3.27],[38.73166666600008,3.378333333000057],[38.60500000000013,3.296666667000181],[38.684166666000124,3.041666667000072],[38.7625,3.161666667000134],[38.80916666700011,3.064166666000176],[38.72250000000014,2.980833332999964],[38.66583333300014,3.020833333000041],[38.639166667000154,3.101666667000075],[38.5741666670001,3.116666667000061],[38.57250000000016,3.185000000000116],[38.439166666000176,3.39333333400009],[38.34583333299997,3.405833333000032],[38.32916666700015,3.450833333000105],[38.229166667000186,3.524166667000088],[38.204166667000095,3.61500000000018],[38.12666666600006,3.568333333000112],[38.083333333000155,3.653333333000091],[38.03583333300003,3.64416666700015],[37.985000000000184,3.735833334000063],[37.195,4.260833334000097],[37.04,4.375000000000171],[36.853333333000194,4.445000000000164],[36.675,4.431666667000172],[36.63666666600017,4.447500000000105]],[[37.800833333000185,3.809166667000113],[37.85666666700007,3.719166666000092],[37.92666666700012,3.726666667000075],[37.98333333300002,3.596666667000022],[37.85583333300008,3.536666667000134],[37.885833333000164,3.460833333000096],[37.871666666000124,3.344166666000035],[37.77000000000015,3.189166667000165],[37.71,3.1675],[37.61166666700012,3.296666667000181],[37.575,3.495833333],[37.610000000000184,3.55166666700012],[37.74833333300006,3.621666667000113],[37.75250000000011,3.71],[37.800833333000185,3.809166667000113]],[[36.98666666700018,2.902500000000146],[37.0325,2.615833333000126],[36.99250000000012,2.536666666999963],[36.89166666700004,2.539166666000142],[36.84833333400013,2.76083333400004],[36.910833334000074,2.884166667000159],[36.98666666700018,2.902500000000146]],[[38.0925,2.590833332999978],[38.21916666600015,2.5775],[38.316666667000106,2.464166667000086],[38.34416666700014,2.376666667000165],[38.34750000000014,2.260833334000154],[38.27250000000015,2.245000000000175],[38.2275,2.194166666000058],[38.275,2.056666667000059],[38.270833333000155,2.006666667000161],[38.15500000000014,2.024166666000099],[38.15583333300009,1.974166667000134],[37.9875,1.963333333000151],[37.88833333400015,1.998333333000062],[37.79583333300019,1.910833334000074],[37.779166666000094,2.063333334000163],[37.8425,2.14],[37.71333333300015,2.196666667000045],[37.811666667,2.2525],[37.86750000000018,2.3525],[38.00000000000017,2.443333333000055],[37.980833333000135,2.531666666000092],[38.0925,2.590833332999978]]],[[[36.2275,5.42],[36.2033333330001,5.415],[36.18333333300012,5.315833333000057],[36.13333333300011,5.279166667000084],[36.18333333300012,5.213333333000037],[36.22250000000014,5.2025000000001],[36.2275,5.42]]],[[[36.21416666600004,5.595],[36.100833334000185,5.55],[36.185000000000116,5.439166667000052],[36.21416666600004,5.595]]]]},"properties":{"objectid":425,"eco_name":"Masai xeric grasslands and shrublands","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Afrotropic","eco_biome_":"AF07","nnh":3,"eco_id":50,"shape_leng":68.4784529353,"shape_area":6.06006948608,"nnh_name":"Nature Could Recover","color":"#FFAA01","color_bio":"#FEAA01","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":74976.86661262157,"percentage":0.34972158913468454}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-13.883305574999952,28.75384817700018],[-14.015165484999898,28.700841524000168],[-14.029692495999882,28.59009395200019],[-14.198859586999959,28.32175587100005],[-14.21811147699998,28.214147321000098],[-14.366428582999959,28.114498395000055],[-14.324321589999954,28.041673235000076],[-14.212578582999981,28.161854304000087],[-13.947480442999904,28.221551727000076],[-13.87377752999987,28.337278988000037],[-13.861182546999942,28.476698369000076],[-13.82070449199989,28.55063044300016],[-13.837703494999971,28.72199443000011],[-13.883305574999952,28.75384817700018]]],[[[-13.419102532999943,29.121474762000048],[-13.372211483999877,29.186710947000165],[-13.453760528999965,29.235638128000176],[-13.526464486999885,29.131366414000126],[-13.63804253799998,29.11720988200011],[-13.747794507999913,29.073668410000096],[-13.824868453999898,29.005301081000084],[-13.82940155499989,28.919894684000155],[-13.787079481999967,28.846695524000097],[-13.716294476999963,28.905834210000137],[-13.516467557999817,28.968457755000088],[-13.462631432999956,29.01409001000013],[-13.419102532999943,29.121474762000048]]],[[[-7.36741855799994,30.808667719000027],[-7.482326571999977,30.503205518000073],[-7.544474527999967,30.402899115000082],[-7.648404427999935,30.320083062000037],[-7.914934532999951,30.153448312000023],[-7.974836473999972,30.263109254000085],[-7.961818539999967,30.432168049999973],[-8.024453484999981,30.690206784000168],[-8.093730585999936,30.771131880000155],[-8.242093456999953,30.800168972000165],[-8.390332443999966,30.765956055000117],[-8.558388429999866,30.663189731000045],[-8.788840475999962,30.636510636000025],[-8.875218502999928,30.683265897000126],[-8.94264253199998,30.877381220000075],[-8.98263544199989,31.14311487600014],[-8.909525464999945,31.185517248000053],[-8.75037558699995,31.156061563000094],[-8.295157441999947,31.212132472],[-8.024494556999969,31.279291298000146],[-7.860608567999918,31.35285574200003],[-7.530050446999894,31.5862345810001],[-7.435499560999972,31.694347218000075],[-7.134677581999881,31.832474445000173],[-7.029196526999954,31.94151998800004],[-7.015337552999881,31.992982359000052],[-7.077937461999909,32.121468217000086],[-6.97803758099991,32.17669540400016],[-6.686556562999897,32.232438580000064],[-6.386945433999927,32.3543897400001],[-6.257025430999931,32.50121704700007],[-6.211565508999968,32.60863147100008],[-6.233921552999902,32.67519250000004],[-6.379323433999957,32.80841228900016],[-6.49428458899996,32.879127220999976],[-6.628778427999862,32.93022363900019],[-7.018387559999894,33.001025575000085],[-7.368443497999976,32.983299861000035],[-7.660561540999936,32.93002163500017],[-7.823588551999933,32.87960012800011],[-8.00449550299993,32.762843738000186],[-8.204907478999814,32.68299320200015],[-8.45464159099987,32.506370910999976],[-8.651350440999863,32.309801032000166],[-8.856417557999976,31.899347280000143],[-9.07440655299996,31.67988173000009],[-9.151387459999967,31.703738805000057],[-9.236722442999962,31.848326132000125],[-9.24612542999995,32.097237979000056],[-9.285875431999955,32.149856215],[-9.402772470999935,31.981755638000095],[-9.675947580999946,31.69753401800017],[-9.681080490999818,31.619537726000033],[-9.83784856699998,31.41051451900006],[-9.799327518999974,31.314327821000177],[-9.841892499999915,31.14042395000007],[-9.808705527999905,30.81645517700008],[-9.894314430999941,30.642041518000042],[-9.792672455999934,30.607422749000136],[-9.701638448999915,30.531934491000072],[-9.663412444999892,30.44043864200006],[-9.603179585999953,30.39404061700003],[-9.646635562999904,30.156279216000087],[-9.791988492999906,29.861860173000082],[-9.967676535999942,29.69299566900014],[-10.051830508999899,29.58671062200017],[-10.083370436999871,29.498782948999974],[-10.222149439999953,29.30676042000016],[-10.325969536999878,29.229603325000085],[-10.435159583999848,29.09577953500002],[-10.635709525999914,28.950604301000112],[-11.038869513999941,28.75994198799998],[-11.106049461999874,28.688334886000064],[-11.30914046099997,28.522701606000112],[-11.450019466999834,28.34185986500006],[-11.567680432999907,28.27678276900008],[-11.698599557999955,28.24112397400006],[-12.054920464999896,28.08953021399998],[-12.554610472999912,27.992204416000163],[-12.911700502999963,27.950655992000065],[-12.95800045999988,27.918547436000097],[-13.045530495999913,27.752794629999983],[-13.156439502999945,27.69301707500017],[-13.199589540999966,27.60388978399999],[-13.299019531999932,27.32316190900002],[-13.40359953199993,27.175968313000055],[-13.448255462999953,27.012326406000113],[-13.185708116999933,27.15617484700016],[-13.02814056099993,27.349130722000098],[-12.819749516999877,27.549113041000055],[-12.675539542999957,27.66640805300011],[-12.419930555999883,27.740704069000174],[-12.112959444999944,27.810120980000136],[-11.444410464999976,27.91657752100008],[-11.18459946199988,27.994403156000033],[-10.954790474999982,28.078660897000134],[-10.555870556999935,28.160637251000026],[-10.351289589999908,28.183255482000163],[-10.21296052799994,28.23562326600006],[-10.029820468999901,28.244874037000102],[-9.59437858699988,28.342270076000148],[-9.43693258299993,28.432165317000056],[-9.500227518999907,28.477564554000082],[-9.679520450999973,28.440734807000183],[-9.68228748499996,28.530602220000105],[-9.565264548999892,28.680645160000097],[-9.445997442999953,28.74426347000019],[-9.101002498999947,28.97666347100011],[-8.973471506999886,29.04899057800003],[-8.934388535999915,29.174096686000155],[-8.62833943499993,29.35121971100017],[-8.488694580999947,29.407377624],[-8.312313521999954,29.50706276],[-8.261489515999926,29.575640977999967],[-8.128565439999875,29.675677316000076],[-8.040434589999848,29.767512632000035],[-7.995098551999945,29.897708902000147],[-7.898579427999948,29.86659008100014],[-7.787343525999916,29.87713954400016],[-7.699066494999954,29.941517254000075],[-7.549685557999965,30.101940176000028],[-7.29799544499997,30.424447479000037],[-7.174567561999936,30.533214408],[-6.967198438999958,30.636678777000157],[-7.10399646399992,30.630461081000135],[-7.229207512999949,30.664608619000035],[-7.36741855799994,30.808667719000027]]]]},"properties":{"objectid":428,"eco_name":"Mediterranean Acacia-Argania dry woodlands and succulent thickets","biome_num":12,"biome_name":"Mediterranean Forests, Woodlands & Scrub","realm":"Palearctic","eco_biome_":"PA12","nnh":3,"eco_id":796,"shape_leng":32.167136561,"shape_area":9.38389340357,"nnh_name":"Nature Could Recover","color":"#F1873D","color_bio":"#FE0000","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":100304.53963013344,"percentage":3.0364087583824095}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[30.623247489000164,31.384167682000168],[30.61226049100003,31.4766814300001],[30.48320047200002,31.450933229000157],[30.37153055500005,31.50367166100017],[30.31325956400019,31.348826729],[30.161899491000156,31.26575955400017],[30.06583952799997,31.327337541000134],[29.826250537000192,31.135444261000032],[29.780010595000192,31.127414565000038],[29.55656045500018,30.97350991500008],[29.348119454000084,30.874722312000188],[29.10902952200007,30.81632928100015],[29.229278484000133,30.779865655000094],[29.62202848300018,30.76880908700008],[29.934379603000025,30.880143225000097],[30.110202595000032,30.97073483400004],[30.323244590000172,31.09107281200005],[30.587902512000028,31.330519311000103],[30.623247489000164,31.384167682000168]]],[[[23.170919497000057,32.30583823600017],[23.087390479000078,32.36119148700004],[23.154909558999975,32.46782002400016],[23.107980457000167,32.51545655899997],[23.111040522000167,32.63371264000011],[22.86725957300007,32.691152146000036],[22.80372055600003,32.72005110400016],[22.490539461000026,32.80798950600007],[22.376480534000052,32.86701570700012],[22.211320495999985,32.87387830600011],[22.134265493000044,32.92914354699997],[22.306909564000023,32.75225018500004],[22.28950454200003,32.57712339400018],[22.233213525000167,32.47296584200012],[22.151370443000133,32.437604939000096],[21.852338503000055,32.41912736900019],[21.371040570000105,32.32864153900016],[21.15275552700018,32.256469832000164],[20.92455854800005,32.15465099900007],[20.82407947700017,32.08924600200004],[20.492391474999977,31.831707668000035],[20.2739185100001,31.71117439200009],[20.156591479000156,31.696468007000135],[20.07958458700017,31.741506655000023],[19.942926541000077,31.870914356000185],[19.92898944800004,31.721833155000127],[19.955980517000114,31.67143478300011],[19.99361056800018,31.47670037299997],[20.09700955800014,31.323196545000144],[20.17395056800018,31.170121871000106],[20.129329505999976,30.982245367000075],[20.464603455000145,31.337246290999985],[20.510520526000107,31.458832],[20.596679450000067,31.580147978000184],[20.775770546000103,31.789210916000116],[20.880340488000172,31.885027637000064],[21.0585305300001,31.98376444400003],[21.39232054500019,32.11945019000018],[21.561239532000172,32.15894990900017],[21.98685044700005,32.17995730500013],[22.027221548000057,32.217512087000046],[22.14583251900018,32.17111858800007],[22.592840589000105,32.186506924000184],[22.648586448000117,32.17984314400019],[22.851409562000185,32.2341434600001],[22.99945258000014,32.29422259500018],[23.170919497000057,32.30583823600017]]],[[[16.165670486000124,31.25152523800017],[16.03178953200012,31.280358985000134],[15.816760523000085,31.36347544600011],[15.654350588000057,31.458482139000182],[15.521530447000032,31.62452646800017],[15.407879551000178,31.846619074000103],[15.360959501000025,31.99269418900019],[15.36614052300007,32.15787099000016],[15.291110587000105,32.31065581900009],[15.221110464000162,32.379111828000134],[15.104220465000083,32.41377183600002],[14.869930513000043,32.444268720000025],[14.762319449000074,32.43953076500014],[14.643690541000126,32.48912816300009],[14.46006047700007,32.52531719700016],[14.189040522000028,32.7115713],[14.035619508000138,32.72682971700016],[13.948499515000151,32.77172050800016],[13.78913958600009,32.79905959400003],[13.588319579000142,32.79603758300016],[13.38961047100014,32.89843661200007],[13.237299556000153,32.907607252],[12.939860513000042,32.81501907300003],[12.758910478000075,32.790720774000135],[12.549469516000102,32.797929714000134],[12.313389525000048,32.83351642500003],[12.217539445000057,32.87066652800013],[11.891570583000089,33.059869720000165],[11.72977252600009,33.08821178500017],[11.754377332,33.01433959600013],[11.654161557000066,32.973683471000186],[11.601120191000064,33.00439171900007],[11.601115509000067,32.944924430000185],[11.570538099000146,32.88288919400014],[11.587155450000068,32.781047220000175],[11.66444797600002,32.770841406000045],[11.802650492,32.75432906500009],[11.89570956700004,32.59666496300014],[12.169289522000156,32.415781648],[12.231789518000085,32.341092018000154],[12.174019430000158,32.24919601700003],[12.020850543000051,32.177657311000075],[11.795599468000148,32.11970215000002],[11.565580431000058,32.08551219999998],[11.110750536000012,31.97531481500016],[10.958760480000024,31.92300738100016],[10.93490055400008,31.846787886000072],[11.028490538000085,31.816198968000094],[11.169879499000047,31.80769150400016],[11.443240519000028,31.821589873000164],[12.079719499000134,31.8327483650001],[12.46067046100012,31.78228226699997],[12.68764954900007,31.78491200600007],[13.324819532999982,31.84895008100017],[13.646989549000068,31.894377482000152],[13.868229548000102,31.90914706600006],[14.144579555000064,31.893787396],[14.448120456000026,31.827419821999968],[14.647620480000114,31.640965894000033],[14.749609467000084,31.48240207900011],[14.907729544,31.357156497000176],[15.148359568000103,31.285859860000073],[15.909848431000114,31.23885666200016],[16.165670486000124,31.25152523800017]]],[[[10.68900250500019,34.64827289500016],[10.612819554000055,34.78458342800019],[10.521209543000055,35.06931600900003],[10.517149517,35.21823124800005],[10.45014944500008,35.267752034000125],[10.359530510000127,35.2414997460001],[10.22776045400019,35.12264469400009],[9.924569582000117,34.922068601000035],[9.840523568000037,34.80400379500003],[9.727417496000157,34.561978017000115],[9.607853502000069,34.46199079700017],[9.379144557000075,34.47172939500001],[9.260029498000108,34.4560929540001],[9.153940588000125,34.574436878000085],[9.002009540000074,34.58789855000015],[8.988832518000095,34.715405234000116],[8.904371432000119,34.772872401000086],[8.960416525000028,34.87194901100003],[9.166345469000078,34.98142806600009],[9.068161531999976,35.13563312400004],[9.001811560000021,35.13143345500009],[8.819485552000174,35.0593142190001],[8.72077858400013,35.09141439400014],[8.53253847200017,35.07017481800011],[8.337908501000015,35.15430180100009],[8.344540431000041,35.24054957400017],[8.285146432000147,35.28947960400018],[8.148033584000075,35.30971988800013],[8.008676564000154,35.46506622600015],[7.946835553000085,35.50641231100013],[7.850914562000071,35.451894401],[7.663027497000087,35.5147740970001],[7.381635440000025,35.52628278600014],[7.212499530000173,35.606576892000135],[7.026388590000181,35.64518796100015],[6.962562576000096,35.71222910500012],[6.704496518000155,35.78741947100008],[6.587791424000045,35.735140535000085],[6.479581557000188,35.530112477000046],[6.521759461000158,35.48293376200007],[6.719399542000076,35.47296600200008],[6.936264523000148,35.361758767000026],[6.970586572,35.28128964600006],[6.785243582000135,35.006756501000154],[6.217216588000042,34.96062686400012],[6.048878468000112,34.988618062000114],[5.79682642500012,35.10818289400004],[5.489183588000174,35.234831774000156],[5.498989577000032,35.27902066500013],[5.645412540000052,35.41199738],[5.690676494000115,35.4893955390001],[5.668467468000188,35.56224265900016],[5.537309458999971,35.61847031000008],[5.425546503000021,35.61241270800019],[5.056918447000044,35.67549122400004],[4.642156565000107,35.84414618000005],[4.302775484000108,35.907526779000136],[4.175149441000144,35.872695277000105],[3.944535457000143,36.01558208400019],[3.774513580000018,36.029093712000076],[3.638617448000105,35.99495354900017],[3.337614420000079,35.87065461900005],[3.219122472000038,35.87120732200003],[3.269867520000105,35.96365435000013],[3.221666547000154,36.010383292000085],[2.926397579000081,35.95129473000014],[2.862071501000059,35.88606525100005],[2.837167526000144,35.79263720500012],[2.755451514000072,35.715770292000116],[2.415293431000123,35.55359203200004],[2.052534551000065,35.41837517000016],[1.892042563000075,35.330868268000074],[1.907189500000015,35.24859150700007],[2.125468509000029,35.22258313200007],[2.10283351400011,35.15027396200014],[1.92013350600007,35.130044406000025],[1.896924519000095,35.06253404300003],[1.67304053200013,35.05886411100016],[1.52170543800014,35.00375846200012],[1.422027510000021,34.80105068300014],[1.376271538000083,34.769183525000074],[0.985190544000034,34.7597428200001],[0.70599152799997,34.787532182000064],[0.547867427000028,34.87160887300013],[0.372391446000051,34.725834669],[0.233874461000084,34.63963601500018],[0.170064541000102,34.7049154500001],[-0.116819506999946,34.69361664500008],[-0.206334544999947,34.654936676000034],[-0.248411530999931,34.539418627000146],[-0.383598553999889,34.526018143000044],[-0.482103517999917,34.58897847400016],[-0.670252433999906,34.59108736100012],[-0.762454541999887,34.62815850700014],[-0.934805582999957,34.642435905000184],[-1.092851563999943,34.60799785000012],[-1.368492461999892,34.511351489000106],[-1.649888541999928,34.43199263600013],[-1.794963527999926,34.3462437550001],[-1.937669452999955,34.318225567000184],[-1.955855500999917,34.23737590800016],[-2.148118422999914,34.213786550000066],[-2.406975564999868,34.26049638200004],[-2.519866557999819,34.22420726700011],[-2.569644500999971,34.168518573000085],[-2.63640350999998,33.97287623600005],[-2.734783583999899,33.91214783800018],[-3.213201495999954,33.74835237500014],[-3.417938532999926,33.79206014400012],[-3.532460476999972,33.78934021600014],[-3.616374558999894,33.72432129000015],[-3.752538575999893,33.49456779200011],[-3.836972504999949,33.41083040000012],[-4.075856577999957,33.25210582000017],[-4.313816461999977,33.20602546900017],[-4.410648565999963,33.17133931000018],[-4.709212460999936,32.966904523000096],[-4.997014493999927,32.83298953800005],[-5.275493503999883,32.67945318900007],[-5.235592459999907,32.59544506100008],[-5.063053497999931,32.61365524900009],[-4.960094557999923,32.64573245700012],[-4.439328421999846,32.62225307000017],[-4.285142473999883,32.64072343100008],[-4.100601464999897,32.69297185700003],[-3.871503430999951,32.71341029000013],[-3.810221492999972,32.68799418000003],[-3.768088515999978,32.5833374020001],[-3.835417493999955,32.50139994000017],[-3.945194441999888,32.417570682000076],[-4.216607507999925,32.45934022000006],[-4.385811477999937,32.465150220000055],[-4.540472511999951,32.42487919900003],[-4.662961453999969,32.32933220800004],[-4.561826583999959,32.21969674700017],[-4.602529440999888,32.07919140600018],[-4.688588452999966,32.000424148000036],[-4.969982520999963,31.834389374000068],[-5.129844525999886,31.758523092000132],[-5.343661510999937,31.678325546000167],[-5.610643567999887,31.533549626000024],[-5.83902545199993,31.463311792000013],[-6.148935424999934,31.406043947],[-6.447093467999935,31.246409260000178],[-6.973086558999967,31.157273419000035],[-7.131897471999878,31.12196347800011],[-7.246489487999895,31.030947744000116],[-7.36741855799994,30.808667719000027],[-7.229207512999949,30.664608619000035],[-7.10399646399992,30.630461081000135],[-6.967198438999958,30.636678777000157],[-6.882206443999962,30.745646703000148],[-6.926692556999967,30.7855765810001],[-7.101632431999974,30.831074725000178],[-7.097743563999927,30.944019697000044],[-6.929509546999952,31.027497921000077],[-6.634693536999976,31.036847431000012],[-6.375764477999951,31.122354746000156],[-6.371013446999939,31.055185860999984],[-6.473543568999958,30.904331050000053],[-6.502750477999939,30.820645291000176],[-6.444241440999974,30.785215489000052],[-6.188567577999947,30.78738640199998],[-6.072030457999972,30.69214970900009],[-5.792745443999934,30.72412767500009],[-5.659211499999913,30.761876415000074],[-5.718324536999944,30.856053802000076],[-5.414214504999961,30.93434999800013],[-5.312104483999974,31.018737323000153],[-5.185692475999929,31.208870739000076],[-5.031901483999889,31.37828492800014],[-5.07018850899982,31.445562609000092],[-5.344182529999955,31.52194001900017],[-5.331000478999954,31.563728333000086],[-4.918560550999928,31.71233461500003],[-4.758570470999871,31.79524069000007],[-4.455575566999869,31.91152802900018],[-4.038622486999941,31.921416496000063],[-3.496732446999943,32.031413888000145],[-3.148602502999893,32.07160058700009],[-2.976933581999958,32.121750017000124],[-2.837061578999965,32.222397898999986],[-2.570516554999926,32.195989539000095],[-2.400814530999924,32.27057640800007],[-2.281065464999926,32.232968484000025],[-2.468173516999911,32.14062857699997],[-2.400829450999936,32.095892013000025],[-2.172728528999926,32.104649761000076],[-2.169634432999885,32.047324416000095],[-2.253921509999941,31.94410597200016],[-2.1802605069999,31.85187871800008],[-2.060321506999969,31.81903004000003],[-1.676035553999895,31.87381818200015],[-1.463042508999933,31.96011540800015],[-1.342844508999917,32.049014543000055],[-1.187412507999966,32.09811170900019],[-0.706504500999927,32.18014824500011],[-0.556839583999931,32.24859704600016],[-0.345391491999976,32.37212417000018],[-0.061193508999963,32.4759985820001],[0.109842578000098,32.56634694899998],[0.465192525000077,32.7146422620001],[0.774853557000085,32.8245179490001],[1.461266551000108,33.03468260400018],[2.093610571000056,33.20362623300008],[2.452218564000077,33.32075293600019],[2.711448534000112,33.35585081500011],[3.076121504000071,33.389182794000135],[3.335470497000017,33.45425989000012],[3.779655542000057,33.60152557100014],[4.268428456000038,33.85729750200005],[4.452857484000162,33.97556498300003],[5.084853487000146,34.40502335900004],[5.287847424000063,34.51669931100008],[5.45306244700015,34.587399491000156],[5.654736570000068,34.69485649600006],[5.869099553000069,34.72861578400017],[6.4295095760001,34.758712852000144],[6.746160444000054,34.803171807000126],[6.995542516000057,34.77412348300004],[7.184670438000126,34.70233650600005],[7.378052510999964,34.552968477000036],[7.530343478000077,34.45693181500013],[7.788749506000102,34.37981310900011],[8.187101467000048,34.221156422000035],[8.404247577000035,34.16997953900017],[8.927145566000092,34.113481321000165],[9.101101573000108,34.128468834000046],[9.277276438000172,34.11638011800011],[9.65771592800013,34.04841548200011],[9.662645545000089,34.04955901700015],[9.792697434000047,34.160389971000086],[9.768398464000029,34.31452562700014],[9.63502645900013,34.407762062000074],[9.704906554000104,34.444432217999974],[9.874452506000125,34.48162037600014],[9.990845458000024,34.61617657600004],[9.969043457000112,34.797603038000034],[10.031229467000173,34.7779345670001],[10.095620589000077,34.68824585600004],[10.202850444000035,34.75062230300017],[10.232279473000062,34.68808576200013],[10.04012954000018,34.49774095499998],[9.974712473000181,34.28451657000005],[9.975529541000128,34.14484942000007],[10.036227428000075,34.07958104800019],[10.02414944100019,34.1782383960001],[10.127710537000098,34.3186956240001],[10.331000523000057,34.39741342900015],[10.464850465000154,34.509970655000075],[10.567919543000187,34.527430159000176],[10.68900250500019,34.64827289500016]],[[4.18351357500012,35.42256729500019],[4.246848576000104,35.508044938000126],[4.541419499000085,35.566603763000046],[4.638196451000169,35.570631603000095],[4.878333451000117,35.52352480400003],[4.904443582000169,35.46574901600019],[5.038173494000091,35.46039331500015],[5.098888481000017,35.34436112100008],[4.936110580000161,35.31075388000005],[4.917141495000124,35.352520065000135],[4.763054454000098,35.379638204000116],[4.555276462000052,35.34686311899998],[4.514721461000136,35.38297219000009],[4.251193586999989,35.38689710000011],[4.18351357500012,35.42256729500019]],[[3.625173546000099,35.308983957000066],[3.498332552000136,35.25519829000001],[3.424354545000028,35.18165228700019],[3.340815469000177,35.22868985100007],[3.559734519000074,35.33602917400003],[3.625173546000099,35.308983957000066]],[[3.881030470000098,35.094504298000174],[4.009188429000062,35.087954344000025],[3.884433522999984,34.937400443000115],[3.804929495000181,34.881340598],[3.644678570000167,34.821752307000054],[3.366133510000054,34.742103272000065],[3.05597945500017,34.58207765300017],[2.790819457000168,34.36297554200007],[2.709125573000165,34.33679517000019],[2.703095464000114,34.427990612000144],[2.657129442000041,34.46385962599999],[2.493454510000106,34.466911644000106],[2.510513527,34.5244389930001],[2.66271950100014,34.5815894910001],[2.86755142200019,34.55516922900006],[2.88201657500008,34.63758814800008],[3.044152422000082,34.71574520400003],[3.104830528000093,34.77897224700013],[3.478374570000085,34.97638936800013],[3.550162553000177,35.07039593300004],[3.620887543000151,35.046466438000095],[3.881030470000098,35.094504298000174]],[[4.01096354800012,34.847699494000096],[4.013852455000119,34.903320127000086],[4.143484455000078,34.977228396999976],[4.257485547000158,34.917208773000084],[4.286451560000046,34.83577087300017],[4.01096354800012,34.847699494000096]],[[7.289446575000056,34.9372393430001],[7.322879472000068,35.003838760000065],[7.550106497000058,35.04111476000014],[7.685883438000189,35.04445662500018],[7.716522479000162,34.928618388000075],[7.625920476000033,34.87448990100012],[7.407256571000119,34.93936817900004],[7.289446575000056,34.9372393430001]],[[3.783265460000109,34.37665397000012],[3.890500512000074,34.55761825400009],[4.00579057300007,34.516020377000075],[3.959863443000074,34.39440348800002],[3.858114514000079,34.310516898000174],[3.783265460000109,34.37665397000012]],[[2.175918513,34.31480457700013],[2.435517454000092,34.30252508900003],[2.438754545000108,34.21935934200019],[2.300689512000076,34.15012029600007],[2.426438512000118,34.094320793],[2.42034755100002,34.04025315900003],[2.20505350600007,33.966875464000054],[2.045645465000121,33.95206380300016],[2.012655468000162,34.01853279800014],[1.865406551000149,33.959055651000085],[1.763826434000123,34.00536415700009],[2.04826849799997,34.29144723000013],[2.175918513,34.31480457700013]],[[-0.374444508999829,34.064952616000085],[-0.341430539999919,34.11577008299997],[-0.17853445399993,34.19277915400005],[-0.046155536999947,34.23323692399998],[0.162850572000025,34.26731606600009],[0.410674448000179,34.33598329900008],[0.570705430999965,34.409162175],[0.792267463000087,34.5806084730001],[0.990555465000114,34.54132668400001],[1.081076499000176,34.56750185900012],[1.064444456000103,34.36716716400019],[0.944058533000145,34.28939953100007],[0.840905468000187,34.169708804000095],[0.730622421000021,34.10149955800006],[0.576666473000103,34.083842073000085],[0.38576644900013,34.085242018000145],[0.248423433000028,34.10697059300003],[0.031666579000103,34.092729740000095],[0.029166425000028,34.14856025600011],[-0.068888431999824,34.1799474660001],[-0.374444508999829,34.064952616000085]],[[2.695476482000174,34.878074841000114],[2.578821512000104,34.87067110600009],[2.546717481999963,34.951117092],[2.885437565000132,35.04205755700008],[2.892777430000024,34.9146527960001],[2.807777556000076,34.88048966700006],[2.695476482000174,34.878074841000114]],[[1.109524510000028,33.76423993700013],[1.151057511000033,33.86167637600016],[1.213345446000119,33.91558475400012],[1.273360543000081,33.887497667000105],[1.245607559000064,33.79418914700017],[1.318819460000043,33.74826151500008],[1.3207265100001,33.61724516000004],[1.175865429999988,33.537867531000074],[1.07346254600003,33.51134836200015],[0.937315460000093,33.42856064000006],[0.899159527999984,33.506309330000136],[0.935463562000166,33.58808703300019],[1.074808512000175,33.69992274400005],[1.109524510000028,33.76423993700013]],[[0.069895433000056,33.242306202000066],[0.161807528000054,33.36400255100011],[0.29338647700007,33.368080514999974],[0.164011466000147,33.23689635400012],[0.069895433000056,33.242306202000066]],[[-3.160993470999927,32.83805958400012],[-3.132301544999848,32.897654748000036],[-2.954305460999876,33.03609327800001],[-2.769234547999872,33.204156472000136],[-2.717325420999941,33.16954625300008],[-2.853400422999925,32.98436402800007],[-3.085283426999865,32.83836854100019],[-3.160993470999927,32.83805958400012]],[[-0.608845437999889,32.88036707300006],[-0.44966052299992,33.14057839500009],[-0.381926531999909,33.179659019000155],[-0.311984578999898,33.12548761700009],[-0.384357450999971,32.91818487900008],[-0.540671563999979,32.68137130300016],[-0.684979437999914,32.57955632500011],[-0.856384495999976,32.524856193],[-0.947724441999981,32.57687545700003],[-0.662006484999949,32.799139558000036],[-0.608845437999889,32.88036707300006]],[[-0.306928446999962,32.87704817400004],[-0.202393540999878,33.05677981500003],[-0.11774855699997,32.998134656000104],[-0.207078521999847,32.87874618000018],[-0.306928446999962,32.87704817400004]],[[-1.550032581999915,32.31355495100013],[-1.56287550199994,32.366272093000134],[-1.475095517999875,32.40400188900014],[-1.434798512999976,32.31139594100006],[-1.520109522999974,32.246246928],[-1.550032581999915,32.31355495100013]],[[-1.840620424999827,32.226277714000105],[-1.650879450999923,32.19673770800006],[-1.626243527999918,32.10587050100003],[-1.78488847999995,32.10246057500012],[-1.936722465999935,32.14583910400006],[-2.082406480999964,32.14686924000006],[-2.052038509999875,32.21212922900003],[-1.840620424999827,32.226277714000105]],[[-4.059298462999948,32.21929693000004],[-3.834625571999879,32.236515371000166],[-3.814902450999966,32.15488787100014],[-3.956386461999841,32.12178907700013],[-4.094971507999958,32.12416903400015],[-4.096044558999893,32.04056072300011],[-4.141935478999869,31.98135548500011],[-4.233662500999912,32.03343191500005],[-4.38124652599987,32.05489210100018],[-4.333082433999948,32.189397843],[-4.280352551999954,32.20859726300017],[-4.059298462999948,32.21929693000004]],[[-6.036021465999966,31.124244529000123],[-5.871191507999924,31.209311627000147],[-5.805822553999917,31.32515757500005],[-5.582359505999932,31.389435373000026],[-5.509792508999965,31.353345748000095],[-5.562519540999972,31.233340699000053],[-5.435978451999915,31.136523179000164],[-5.506255512999871,31.04625511100005],[-5.646773425999925,31.015298396000105],[-5.73212450199992,31.07791523600008],[-5.800753513999837,31.085915763000116],[-5.945466569999894,31.04596627100011],[-6.088311466999869,30.94086106100019],[-6.264935432999891,30.941659856000115],[-6.278925499999957,30.983448337000084],[-6.036021465999966,31.124244529000123]],[[8.622657510000181,34.47909926700015],[8.659216522000122,34.583496542000034],[8.746285553000178,34.50084963500018],[8.6793154880001,34.299454295000146],[8.606236524000053,34.26032807300004],[8.341255563000061,34.27317585500009],[8.158826458000135,34.33041318900018],[8.14028451400003,34.42274186400016],[8.360042425000188,34.33662418000006],[8.521091475000105,34.342013911000095],[8.602495513000065,34.415760913000156],[8.622657510000181,34.47909926700015]],[[9.443804570000111,34.31903458800008],[9.610548452000103,34.32507341400003],[9.588135578,34.23512905500013],[9.523260486000027,34.22284638200006],[9.201424572,34.239927862000116],[9.035677466000038,34.2330961080001],[9.02405344300007,34.30775489299998],[9.261296507000054,34.29104724600006],[9.443804570000111,34.31903458800008]],[[7.799746563000099,35.05564546],[7.838563492000048,35.14304524100004],[8.013021575000039,35.199680587000046],[8.097226510000041,35.145573893000176],[7.867643500000099,35.063217168000165],[7.799746563000099,35.05564546]]]]},"properties":{"objectid":430,"eco_name":"Mediterranean dry woodlands and steppe","biome_num":12,"biome_name":"Mediterranean Forests, Woodlands & Scrub","realm":"Palearctic","eco_biome_":"PA12","nnh":3,"eco_id":797,"shape_leng":113.566193994,"shape_area":28.3558630225,"nnh_name":"Nature Could Recover","color":"#F5A27A","color_bio":"#FE0000","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":292848.84988985123,"percentage":8.865090413321873}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-8.383689450999952,31.06965235600012],[-8.42846155399991,31.07748507700012],[-8.49947756399996,30.950481642000113],[-8.766268512999943,30.89352057400015],[-8.744705563999958,30.853638976000127],[-8.636585550999882,30.85875679900016],[-8.575987575999932,30.918465789000095],[-8.508936541999958,30.899509444000103],[-8.385476471999937,30.962848301000065],[-8.383689450999952,31.06965235600012]]],[[[-7.414386552999929,31.282923176999986],[-7.610122431999969,31.287132066000026],[-7.622984462999966,31.227733876],[-7.71087844099992,31.177339695000114],[-7.755366564999918,31.222231157000067],[-7.842771542999969,31.1545144320001],[-8.004296516999887,31.101082313000177],[-8.059111481999935,31.013967517000026],[-7.902281546999973,31.001861702000156],[-7.834802531999969,31.050009030000012],[-7.700619493999966,31.050434161000112],[-7.617966552999917,31.132619224000166],[-7.414386552999929,31.282923176999986]]],[[[-5.836045516999945,31.95608555600012],[-5.901650505999896,31.88161385500007],[-6.02822042899993,31.892679476000183],[-6.055961510999907,31.81390098500009],[-6.22735148199996,31.855119833000117],[-6.244500520999907,31.79775073400009],[-6.379846463999968,31.761376795000103],[-6.473243496999942,31.701996711000163],[-6.488954535999937,31.613981698000032],[-6.619503516999941,31.534333334],[-6.685210428999824,31.609328065000057],[-6.795005481999908,31.5541977740001],[-6.808544434999874,31.457803037000133],[-6.742752529999962,31.430261947000076],[-6.742984540999885,31.332493417000023],[-6.607514544999958,31.313753996],[-6.597471515999871,31.374952953000047],[-6.492197494999914,31.434051741000133],[-6.386865469999975,31.391195238000023],[-6.379469445999973,31.464999907000163],[-6.289886514999978,31.466483839000034],[-6.130642424999905,31.545974959000034],[-6.024512442999935,31.515813183000034],[-5.929573474999927,31.591458686000067],[-5.957247501999973,31.672399875000053],[-5.821709444999897,31.821703867000167],[-5.75336843599996,31.86564431800008],[-5.744797436999818,31.720917181000175],[-5.656013468999902,31.690473269999984],[-5.537174509999886,31.812410348000128],[-5.50628652599994,31.916730677000032],[-5.557697431999941,32.08542033400005],[-5.701688470999954,32.11777213300013],[-5.836045516999945,31.95608555600012]]],[[[-5.502517519999913,32.27650409000012],[-5.541120542999977,32.1550711000001],[-5.451042575999963,32.120522068000184],[-5.355935466999938,32.193197863000194],[-5.208828539999956,32.24391625600009],[-4.996252578999929,32.370514175000096],[-4.842241477999949,32.39318018200015],[-4.672354549999909,32.52215939900003],[-4.70631349599995,32.575288596000064],[-4.909420420999879,32.55797812100019],[-5.00608656299994,32.5172492800001],[-5.041218471999912,32.404247144000124],[-5.263265480999962,32.33828508600004],[-5.319060457999967,32.27214818200008],[-5.441676469999948,32.291140569000106],[-5.502517519999913,32.27650409000012]]],[[[-3.861595518999934,33.53235575900004],[-3.852935503999902,33.62054528200002],[-3.989214520999894,33.53742546900014],[-3.92465157099997,33.49765484699998],[-3.861595518999934,33.53235575900004]]]]},"properties":{"objectid":431,"eco_name":"Mediterranean High Atlas juniper steppe","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Palearctic","eco_biome_":"PA10","nnh":3,"eco_id":758,"shape_leng":12.7276798653,"shape_area":0.602304940707,"nnh_name":"Nature Could Recover","color":"#D6A890","color_bio":"#D6C39D","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":6346.702822392734,"percentage":0.12996738018043083}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-6.036021465999966,31.124244529000123],[-6.278925499999957,30.983448337000084],[-6.264935432999891,30.941659856000115],[-6.088311466999869,30.94086106100019],[-5.945466569999894,31.04596627100011],[-5.800753513999837,31.085915763000116],[-5.73212450199992,31.07791523600008],[-5.646773425999925,31.015298396000105],[-5.506255512999871,31.04625511100005],[-5.435978451999915,31.136523179000164],[-5.562519540999972,31.233340699000053],[-5.509792508999965,31.353345748000095],[-5.582359505999932,31.389435373000026],[-5.805822553999917,31.32515757500005],[-5.871191507999924,31.209311627000147],[-6.036021465999966,31.124244529000123]]],[[[-1.840620424999827,32.226277714000105],[-2.052038509999875,32.21212922900003],[-2.082406480999964,32.14686924000006],[-1.936722465999935,32.14583910400006],[-1.78488847999995,32.10246057500012],[-1.626243527999918,32.10587050100003],[-1.650879450999923,32.19673770800006],[-1.840620424999827,32.226277714000105]]],[[[-4.059298462999948,32.21929693000004],[-4.280352551999954,32.20859726300017],[-4.333082433999948,32.189397843],[-4.38124652599987,32.05489210100018],[-4.233662500999912,32.03343191500005],[-4.141935478999869,31.98135548500011],[-4.096044558999893,32.04056072300011],[-4.094971507999958,32.12416903400015],[-3.956386461999841,32.12178907700013],[-3.814902450999966,32.15488787100014],[-3.834625571999879,32.236515371000166],[-4.059298462999948,32.21929693000004]]],[[[-1.550032581999915,32.31355495100013],[-1.520109522999974,32.246246928],[-1.434798512999976,32.31139594100006],[-1.475095517999875,32.40400188900014],[-1.56287550199994,32.366272093000134],[-1.550032581999915,32.31355495100013]]],[[[22.134265493000044,32.92914354699997],[21.928199587999984,32.89223785900015],[21.707979499000146,32.936635292000176],[21.631389523000053,32.92328476400007],[21.44054951300012,32.79443982400005],[21.367719492000163,32.77323059200006],[21.07980950000018,32.76253092500019],[20.90007048200016,32.68013229000002],[20.575710443000162,32.55064630300018],[20.37336945600009,32.41956239000001],[20.100530461000062,32.18616008099997],[20.034620538000127,32.062120990000096],[19.953710529999967,31.985694629000136],[19.942926541000077,31.870914356000185],[20.07958458700017,31.741506655000023],[20.156591479000156,31.696468007000135],[20.2739185100001,31.71117439200009],[20.492391474999977,31.831707668000035],[20.82407947700017,32.08924600200004],[20.92455854800005,32.15465099900007],[21.15275552700018,32.256469832000164],[21.371040570000105,32.32864153900016],[21.852338503000055,32.41912736900019],[22.151370443000133,32.437604939000096],[22.233213525000167,32.47296584200012],[22.28950454200003,32.57712339400018],[22.306909564000023,32.75225018500004],[22.134265493000044,32.92914354699997]]],[[[-0.306928446999962,32.87704817400004],[-0.207078521999847,32.87874618000018],[-0.11774855699997,32.998134656000104],[-0.202393540999878,33.05677981500003],[-0.306928446999962,32.87704817400004]]],[[[-0.608845437999889,32.88036707300006],[-0.662006484999949,32.799139558000036],[-0.947724441999981,32.57687545700003],[-0.856384495999976,32.524856193],[-0.684979437999914,32.57955632500011],[-0.540671563999979,32.68137130300016],[-0.384357450999971,32.91818487900008],[-0.311984578999898,33.12548761700009],[-0.381926531999909,33.179659019000155],[-0.44966052299992,33.14057839500009],[-0.608845437999889,32.88036707300006]]],[[[-3.160993470999927,32.83805958400012],[-3.085283426999865,32.83836854100019],[-2.853400422999925,32.98436402800007],[-2.717325420999941,33.16954625300008],[-2.769234547999872,33.204156472000136],[-2.954305460999876,33.03609327800001],[-3.132301544999848,32.897654748000036],[-3.160993470999927,32.83805958400012]]],[[[0.069895433000056,33.242306202000066],[0.164011466000147,33.23689635400012],[0.29338647700007,33.368080514999974],[0.161807528000054,33.36400255100011],[0.069895433000056,33.242306202000066]]],[[[10.91475045900006,33.88051671500017],[10.745180534000099,33.8851175420001],[10.729840478000028,33.753121510000085],[10.834779559000026,33.73712280400008],[10.892589545000021,33.667223934000106],[11.0660205100001,33.780639466000025],[10.950149583000155,33.88850869200019],[10.91475045900006,33.88051671500017]]],[[[1.109524510000028,33.76423993700013],[1.074808512000175,33.69992274400005],[0.935463562000166,33.58808703300019],[0.899159527999984,33.506309330000136],[0.937315460000093,33.42856064000006],[1.07346254600003,33.51134836200015],[1.175865429999988,33.537867531000074],[1.3207265100001,33.61724516000004],[1.318819460000043,33.74826151500008],[1.245607559000064,33.79418914700017],[1.273360543000081,33.887497667000105],[1.213345446000119,33.91558475400012],[1.151057511000033,33.86167637600016],[1.109524510000028,33.76423993700013]]],[[[10.729156515000057,33.60198255199998],[10.661049528000035,33.62571389900006],[10.466380497000102,33.589784033000115],[10.313329460000148,33.65729523400017],[10.090029524000101,33.69035211900018],[9.97415558,33.85618740300015],[9.909702432000131,33.90996586099999],[9.81078055200004,33.9356952870001],[9.892167491000123,33.715631436000024],[9.908624519,33.45712784200009],[10.005359561000034,33.261424820000116],[9.987594453000042,33.14994014300004],[10.027039521000063,33.06982943300011],[10.127779436000026,32.966114613000116],[10.168290516000127,32.88969780700012],[10.256400579000115,32.81844894800008],[10.45761051200003,32.79657989200018],[10.706910441000048,32.86194683500008],[10.828499502000057,32.87710517100004],[10.989760446000105,32.84633704900011],[11.111120513000174,32.77896029300007],[11.40276849900016,32.720700199000134],[11.397418913000024,32.770762322999985],[11.438834948000078,32.987960987000065],[11.336265079000043,33.01176877300014],[11.343898198000034,33.04933240100007],[11.32228378900004,33.06750706000008],[11.361008517000073,33.121650885000065],[11.53233947900003,33.16757047100003],[11.204030557000067,33.20663516900015],[11.131850469000142,33.28427405600007],[11.17967056700013,33.33155167800015],[11.100330489000044,33.43897029300007],[11.10746952400018,33.57319440300006],[11.01570059200003,33.638454560000014],[10.923239483000089,33.622303135000095],[10.930879588000096,33.534544609000136],[10.782070464000071,33.47868827700012],[10.70092945000016,33.49970673700011],[10.729156515000057,33.60198255199998]]],[[[2.175918513,34.31480457700013],[2.04826849799997,34.29144723000013],[1.763826434000123,34.00536415700009],[1.865406551000149,33.959055651000085],[2.012655468000162,34.01853279800014],[2.045645465000121,33.95206380300016],[2.20505350600007,33.966875464000054],[2.42034755100002,34.04025315900003],[2.426438512000118,34.094320793],[2.300689512000076,34.15012029600007],[2.438754545000108,34.21935934200019],[2.435517454000092,34.30252508900003],[2.175918513,34.31480457700013]]],[[[9.443804570000111,34.31903458800008],[9.261296507000054,34.29104724600006],[9.02405344300007,34.30775489299998],[9.035677466000038,34.2330961080001],[9.201424572,34.239927862000116],[9.523260486000027,34.22284638200006],[9.588135578,34.23512905500013],[9.610548452000103,34.32507341400003],[9.443804570000111,34.31903458800008]]],[[[8.622657510000181,34.47909926700015],[8.602495513000065,34.415760913000156],[8.521091475000105,34.342013911000095],[8.360042425000188,34.33662418000006],[8.14028451400003,34.42274186400016],[8.158826458000135,34.33041318900018],[8.341255563000061,34.27317585500009],[8.606236524000053,34.26032807300004],[8.6793154880001,34.299454295000146],[8.746285553000178,34.50084963500018],[8.659216522000122,34.583496542000034],[8.622657510000181,34.47909926700015]]],[[[3.783265460000109,34.37665397000012],[3.858114514000079,34.310516898000174],[3.959863443000074,34.39440348800002],[4.00579057300007,34.516020377000075],[3.890500512000074,34.55761825400009],[3.783265460000109,34.37665397000012]]],[[[-0.374444508999829,34.064952616000085],[-0.068888431999824,34.1799474660001],[0.029166425000028,34.14856025600011],[0.031666579000103,34.092729740000095],[0.248423433000028,34.10697059300003],[0.38576644900013,34.085242018000145],[0.576666473000103,34.083842073000085],[0.730622421000021,34.10149955800006],[0.840905468000187,34.169708804000095],[0.944058533000145,34.28939953100007],[1.064444456000103,34.36716716400019],[1.081076499000176,34.56750185900012],[0.990555465000114,34.54132668400001],[0.792267463000087,34.5806084730001],[0.570705430999965,34.409162175],[0.410674448000179,34.33598329900008],[0.162850572000025,34.26731606600009],[-0.046155536999947,34.23323692399998],[-0.17853445399993,34.19277915400005],[-0.341430539999919,34.11577008299997],[-0.374444508999829,34.064952616000085]]],[[[4.01096354800012,34.847699494000096],[4.286451560000046,34.83577087300017],[4.257485547000158,34.917208773000084],[4.143484455000078,34.977228396999976],[4.013852455000119,34.903320127000086],[4.01096354800012,34.847699494000096]]],[[[2.695476482000174,34.878074841000114],[2.807777556000076,34.88048966700006],[2.892777430000024,34.9146527960001],[2.885437565000132,35.04205755700008],[2.546717481999963,34.951117092],[2.578821512000104,34.87067110600009],[2.695476482000174,34.878074841000114]]],[[[7.289446575000056,34.9372393430001],[7.407256571000119,34.93936817900004],[7.625920476000033,34.87448990100012],[7.716522479000162,34.928618388000075],[7.685883438000189,35.04445662500018],[7.550106497000058,35.04111476000014],[7.322879472000068,35.003838760000065],[7.289446575000056,34.9372393430001]]],[[[3.881030470000098,35.094504298000174],[3.620887543000151,35.046466438000095],[3.550162553000177,35.07039593300004],[3.478374570000085,34.97638936800013],[3.104830528000093,34.77897224700013],[3.044152422000082,34.71574520400003],[2.88201657500008,34.63758814800008],[2.86755142200019,34.55516922900006],[2.66271950100014,34.5815894910001],[2.510513527,34.5244389930001],[2.493454510000106,34.466911644000106],[2.657129442000041,34.46385962599999],[2.703095464000114,34.427990612000144],[2.709125573000165,34.33679517000019],[2.790819457000168,34.36297554200007],[3.05597945500017,34.58207765300017],[3.366133510000054,34.742103272000065],[3.644678570000167,34.821752307000054],[3.804929495000181,34.881340598],[3.884433522999984,34.937400443000115],[4.009188429000062,35.087954344000025],[3.881030470000098,35.094504298000174]]],[[[7.799746563000099,35.05564546],[7.867643500000099,35.063217168000165],[8.097226510000041,35.145573893000176],[8.013021575000039,35.199680587000046],[7.838563492000048,35.14304524100004],[7.799746563000099,35.05564546]]],[[[3.625173546000099,35.308983957000066],[3.559734519000074,35.33602917400003],[3.340815469000177,35.22868985100007],[3.424354545000028,35.18165228700019],[3.498332552000136,35.25519829000001],[3.625173546000099,35.308983957000066]]],[[[4.18351357500012,35.42256729500019],[4.251193586999989,35.38689710000011],[4.514721461000136,35.38297219000009],[4.555276462000052,35.34686311899998],[4.763054454000098,35.379638204000116],[4.917141495000124,35.352520065000135],[4.936110580000161,35.31075388000005],[5.098888481000017,35.34436112100008],[5.038173494000091,35.46039331500015],[4.904443582000169,35.46574901600019],[4.878333451000117,35.52352480400003],[4.638196451000169,35.570631603000095],[4.541419499000085,35.566603763000046],[4.246848576000104,35.508044938000126],[4.18351357500012,35.42256729500019]]],[[[10.68900250500019,34.64827289500016],[10.924329466000131,34.886520782],[10.92658051,34.959619695000185],[11.009039494000092,35.01765532200017],[11.029509442,35.11377580200008],[11.088129456000104,35.16306374000004],[11.122509508000064,35.257139204000055],[11.048809445000074,35.325600410000106],[11.062809570000184,35.49610525200006],[11.049880485000017,35.63183307500003],[10.838379586000087,35.70127060500005],[10.807390517000101,35.78882746300019],[10.728750494999986,35.77113879700016],[10.655289484000093,35.8159868410001],[10.48948051900004,36.046851276000154],[10.471380469999986,36.13280937000019],[10.487890472,36.26327637500003],[10.546460530000047,36.37160409200004],[10.818920494999986,36.46360101100015],[10.919810446000156,36.65125707200019],[11.038490484000079,36.79708592600002],[11.12226945000009,36.840905175000046],[11.098059497000065,36.96126360500011],[11.034640508,37.07847915600007],[10.917260504000183,37.02431915400007],[10.757379556000103,36.905642636000096],[10.585709462000182,36.864864677000014],[10.548850545,36.76991464600002],[10.435629474000109,36.72194568400016],[10.360830543000134,36.72557739500019],[10.28520951600018,36.794243958000095],[10.355190528000037,36.87771212300004],[10.218740520000097,36.972673386999986],[10.191280567000092,37.103819661000045],[10.226840456000104,37.18648601400014],[10.066929502,37.267856357000085],[10.002440480000132,37.24910687700003],[9.868268505000174,37.136778143000186],[9.787354474000097,37.1778162760001],[9.793338481999967,37.23881490600013],[9.877618518000077,37.271796354],[9.865051531000063,37.33310494700004],[9.655833528000187,37.33471511000016],[9.341755568999986,37.2348480870001],[9.19556746600017,37.23160596600019],[9.151994478000063,37.184036989000106],[9.02493454800009,37.13914703600017],[8.886760551000066,37.01075052900018],[8.507755532000033,36.907164622000096],[8.283863498000073,36.91873433100017],[8.236195447000114,36.95348167800006],[8.03523948600008,36.87177253900012],[7.852204537000148,36.84450587300006],[7.764151470000058,36.88037421600012],[7.755253577000019,36.95947054800013],[7.624822447000042,36.96711132300004],[7.506800556000087,37.04280896200015],[7.276988552000034,37.070251313000085],[7.182830442000068,36.92966332700007],[6.917277500000068,36.88401430900012],[6.884019450000039,36.91022753700008],[6.651380565000125,36.92211425000016],[6.373477559000037,36.90490687300007],[6.314178444000163,36.81700250200004],[6.332420483000021,36.73934416900005],[6.261025443000051,36.61277877200007],[6.122698560000174,36.53300065500002],[5.743818431000022,36.376529131000154],[5.532123575000071,36.31779545900008],[5.372816453000041,36.30472673100007],[5.10504348000012,36.33674593600017],[4.995347501000026,36.333632897000086],[4.733812508000028,36.4558573060001],[4.656804443000055,36.60035528200012],[4.699466487000109,36.73081524700012],[4.882434548000049,36.85687672400019],[4.721247532000064,36.885353066000164],[4.156930536000175,36.90958364000005],[3.938889574000086,36.897884012000134],[3.879617449000136,36.92138150400007],[3.716978520000055,36.88342204300017],[3.634641576000149,36.82569637900019],[3.490293469000108,36.77206644800009],[3.222913439000138,36.772676483],[3.143027532000076,36.738867071000186],[3.024406503000137,36.813073568],[2.904886430000033,36.804055982000136],[2.818614518000174,36.70992570000004],[2.612056428000187,36.60371894000008],[2.423908518000189,36.595880184000066],[2.321571515000073,36.63957722500004],[2.102200513000071,36.582609452000156],[1.649618477000104,36.557039954000174],[1.511687555000037,36.53028072800015],[1.352905475000057,36.553592142000184],[1.292740509000055,36.51111198600006],[1.178462479000018,36.51379017100004],[0.939580418000105,36.44774328900007],[0.901283502000069,36.39163482900017],[0.634112517,36.30945647100003],[0.339333555000167,36.196109],[0.127453460000083,36.04276141100007],[0.036420459000169,35.8731943360001],[-0.107936532999929,35.792897380000056],[-0.277515509999944,35.824825725000096],[-0.337568493999925,35.910264476000066],[-0.47975155599994,35.87399531000011],[-0.511827422999943,35.786847322000085],[-0.649079578999874,35.71611998499998],[-0.828376534999904,35.771496704000015],[-0.946042529999886,35.727720706000184],[-1.18004548499988,35.58681320200003],[-1.258502445999909,35.397368779000146],[-1.382006436999916,35.31145997200019],[-1.555642422999824,35.268900020000046],[-1.764070514999901,35.129224488000034],[-2.008477423999921,35.07461488000013],[-2.20625949399988,35.08896536900011],[-2.426218570999879,35.15986352900018],[-2.53341053999992,35.09939430100002],[-2.631493558999978,35.09711324900013],[-2.739527573999965,35.131421553],[-2.813015574999895,35.114164723000044],[-2.897480515999916,35.15255484500011],[-2.967689515999894,35.37745639499997],[-3.09676043199994,35.28103064600009],[-3.338069556999926,35.19365282500013],[-3.598858560999872,35.23908173500013],[-3.699511471999926,35.29509145600014],[-3.796269479999921,35.21065149300006],[-3.884491524999873,35.212051438000174],[-3.920814502999917,35.26891896300009],[-4.109464488999947,35.21255032900012],[-4.276884455999948,35.18788205300012],[-4.359648540999956,35.15116277900006],[-4.713944547999972,35.217750126000055],[-4.910295490999886,35.31436983300017],[-5.056753491999928,35.41091745500012],[-5.170977541999946,35.536063293000154],[-5.234484539999869,35.55541509600005],[-5.274114513999905,35.670330151000144],[-5.334815585999877,35.74500854900015],[-5.356255488999864,35.92209435900003],[-5.453889572999969,35.91912632700013],[-5.587495433999948,35.839595309],[-5.718348508999895,35.839168167000025],[-5.777853483999934,35.79063946300005],[-5.89860351599998,35.81096675100008],[-6.019570472999931,35.5047340860001],[-6.079829482999912,35.39839891500014],[-6.149172465999925,35.21139144699998],[-6.378550454999981,34.720746015000145],[-6.562470532999953,34.41468199400015],[-6.625401526999951,34.34008406200019],[-6.725722513999926,34.163948927000035],[-6.831129472999919,34.04217127300012],[-6.9632624649999,33.92681432500018],[-7.127295471999957,33.83225807500014],[-7.217373438999914,33.80967991000011],[-7.375998441999911,33.71545139300014],[-7.585505452999939,33.612954463],[-7.652565539999955,33.62023615800007],[-7.77923252599993,33.55189816600006],[-8.121005465999929,33.42558892000005],[-8.299647459999903,33.378170314000045],[-8.452890442999944,33.260844792000114],[-8.515005542999916,33.26282476500006],[-8.60639343299988,33.19129779400009],[-8.70684752499983,33.03213048200007],[-8.904625571999816,32.84784713200008],[-9.113357591999943,32.67197267500018],[-9.274614512999904,32.55277832400009],[-9.23393445399995,32.458768407000036],[-9.285012430999927,32.378520904000084],[-9.242701589999967,32.30599397200007],[-9.285875431999955,32.149856215],[-9.24612542999995,32.097237979000056],[-9.236722442999962,31.848326132000125],[-9.151387459999967,31.703738805000057],[-9.07440655299996,31.67988173000009],[-8.856417557999976,31.899347280000143],[-8.651350440999863,32.309801032000166],[-8.45464159099987,32.506370910999976],[-8.204907478999814,32.68299320200015],[-8.00449550299993,32.762843738000186],[-7.823588551999933,32.87960012800011],[-7.660561540999936,32.93002163500017],[-7.368443497999976,32.983299861000035],[-7.018387559999894,33.001025575000085],[-6.628778427999862,32.93022363900019],[-6.49428458899996,32.879127220999976],[-6.379323433999957,32.80841228900016],[-6.233921552999902,32.67519250000004],[-6.211565508999968,32.60863147100008],[-6.257025430999931,32.50121704700007],[-6.386945433999927,32.3543897400001],[-6.686556562999897,32.232438580000064],[-6.97803758099991,32.17669540400016],[-7.077937461999909,32.121468217000086],[-7.015337552999881,31.992982359000052],[-7.029196526999954,31.94151998800004],[-7.134677581999881,31.832474445000173],[-7.435499560999972,31.694347218000075],[-7.530050446999894,31.5862345810001],[-7.860608567999918,31.35285574200003],[-8.024494556999969,31.279291298000146],[-8.295157441999947,31.212132472],[-8.75037558699995,31.156061563000094],[-8.909525464999945,31.185517248000053],[-8.98263544199989,31.14311487600014],[-8.94264253199998,30.877381220000075],[-8.875218502999928,30.683265897000126],[-8.788840475999962,30.636510636000025],[-8.558388429999866,30.663189731000045],[-8.390332443999966,30.765956055000117],[-8.242093456999953,30.800168972000165],[-8.093730585999936,30.771131880000155],[-8.024453484999981,30.690206784000168],[-7.961818539999967,30.432168049999973],[-7.974836473999972,30.263109254000085],[-7.914934532999951,30.153448312000023],[-7.648404427999935,30.320083062000037],[-7.544474527999967,30.402899115000082],[-7.482326571999977,30.503205518000073],[-7.36741855799994,30.808667719000027],[-7.246489487999895,31.030947744000116],[-7.131897471999878,31.12196347800011],[-6.973086558999967,31.157273419000035],[-6.447093467999935,31.246409260000178],[-6.148935424999934,31.406043947],[-5.83902545199993,31.463311792000013],[-5.610643567999887,31.533549626000024],[-5.343661510999937,31.678325546000167],[-5.129844525999886,31.758523092000132],[-4.969982520999963,31.834389374000068],[-4.688588452999966,32.000424148000036],[-4.602529440999888,32.07919140600018],[-4.561826583999959,32.21969674700017],[-4.662961453999969,32.32933220800004],[-4.540472511999951,32.42487919900003],[-4.385811477999937,32.465150220000055],[-4.216607507999925,32.45934022000006],[-3.945194441999888,32.417570682000076],[-3.835417493999955,32.50139994000017],[-3.768088515999978,32.5833374020001],[-3.810221492999972,32.68799418000003],[-3.871503430999951,32.71341029000013],[-4.100601464999897,32.69297185700003],[-4.285142473999883,32.64072343100008],[-4.439328421999846,32.62225307000017],[-4.960094557999923,32.64573245700012],[-5.063053497999931,32.61365524900009],[-5.235592459999907,32.59544506100008],[-5.275493503999883,32.67945318900007],[-4.997014493999927,32.83298953800005],[-4.709212460999936,32.966904523000096],[-4.410648565999963,33.17133931000018],[-4.313816461999977,33.20602546900017],[-4.075856577999957,33.25210582000017],[-3.836972504999949,33.41083040000012],[-3.752538575999893,33.49456779200011],[-3.616374558999894,33.72432129000015],[-3.532460476999972,33.78934021600014],[-3.417938532999926,33.79206014400012],[-3.213201495999954,33.74835237500014],[-2.734783583999899,33.91214783800018],[-2.63640350999998,33.97287623600005],[-2.569644500999971,34.168518573000085],[-2.519866557999819,34.22420726700011],[-2.406975564999868,34.26049638200004],[-2.148118422999914,34.213786550000066],[-1.955855500999917,34.23737590800016],[-1.937669452999955,34.318225567000184],[-1.794963527999926,34.3462437550001],[-1.649888541999928,34.43199263600013],[-1.368492461999892,34.511351489000106],[-1.092851563999943,34.60799785000012],[-0.934805582999957,34.642435905000184],[-0.762454541999887,34.62815850700014],[-0.670252433999906,34.59108736100012],[-0.482103517999917,34.58897847400016],[-0.383598553999889,34.526018143000044],[-0.248411530999931,34.539418627000146],[-0.206334544999947,34.654936676000034],[-0.116819506999946,34.69361664500008],[0.170064541000102,34.7049154500001],[0.233874461000084,34.63963601500018],[0.372391446000051,34.725834669],[0.547867427000028,34.87160887300013],[0.70599152799997,34.787532182000064],[0.985190544000034,34.7597428200001],[1.376271538000083,34.769183525000074],[1.422027510000021,34.80105068300014],[1.52170543800014,35.00375846200012],[1.67304053200013,35.05886411100016],[1.896924519000095,35.06253404300003],[1.92013350600007,35.130044406000025],[2.10283351400011,35.15027396200014],[2.125468509000029,35.22258313200007],[1.907189500000015,35.24859150700007],[1.892042563000075,35.330868268000074],[2.052534551000065,35.41837517000016],[2.415293431000123,35.55359203200004],[2.755451514000072,35.715770292000116],[2.837167526000144,35.79263720500012],[2.862071501000059,35.88606525100005],[2.926397579000081,35.95129473000014],[3.221666547000154,36.010383292000085],[3.269867520000105,35.96365435000013],[3.219122472000038,35.87120732200003],[3.337614420000079,35.87065461900005],[3.638617448000105,35.99495354900017],[3.774513580000018,36.029093712000076],[3.944535457000143,36.01558208400019],[4.175149441000144,35.872695277000105],[4.302775484000108,35.907526779000136],[4.642156565000107,35.84414618000005],[5.056918447000044,35.67549122400004],[5.425546503000021,35.61241270800019],[5.537309458999971,35.61847031000008],[5.668467468000188,35.56224265900016],[5.690676494000115,35.4893955390001],[5.645412540000052,35.41199738],[5.498989577000032,35.27902066500013],[5.489183588000174,35.234831774000156],[5.79682642500012,35.10818289400004],[6.048878468000112,34.988618062000114],[6.217216588000042,34.96062686400012],[6.785243582000135,35.006756501000154],[6.970586572,35.28128964600006],[6.936264523000148,35.361758767000026],[6.719399542000076,35.47296600200008],[6.521759461000158,35.48293376200007],[6.479581557000188,35.530112477000046],[6.587791424000045,35.735140535000085],[6.704496518000155,35.78741947100008],[6.962562576000096,35.71222910500012],[7.026388590000181,35.64518796100015],[7.212499530000173,35.606576892000135],[7.381635440000025,35.52628278600014],[7.663027497000087,35.5147740970001],[7.850914562000071,35.451894401],[7.946835553000085,35.50641231100013],[8.008676564000154,35.46506622600015],[8.148033584000075,35.30971988800013],[8.285146432000147,35.28947960400018],[8.344540431000041,35.24054957400017],[8.337908501000015,35.15430180100009],[8.53253847200017,35.07017481800011],[8.72077858400013,35.09141439400014],[8.819485552000174,35.0593142190001],[9.001811560000021,35.13143345500009],[9.068161531999976,35.13563312400004],[9.166345469000078,34.98142806600009],[8.960416525000028,34.87194901100003],[8.904371432000119,34.772872401000086],[8.988832518000095,34.715405234000116],[9.002009540000074,34.58789855000015],[9.153940588000125,34.574436878000085],[9.260029498000108,34.4560929540001],[9.379144557000075,34.47172939500001],[9.607853502000069,34.46199079700017],[9.727417496000157,34.561978017000115],[9.840523568000037,34.80400379500003],[9.924569582000117,34.922068601000035],[10.22776045400019,35.12264469400009],[10.359530510000127,35.2414997460001],[10.45014944500008,35.267752034000125],[10.517149517,35.21823124800005],[10.521209543000055,35.06931600900003],[10.612819554000055,34.78458342800019],[10.68900250500019,34.64827289500016]],[[8.805689442000187,36.96439139600017],[8.913399579999975,36.952424888],[9.033078573000068,36.85668561600016],[9.248498514000119,36.820782405000045],[9.332273457000042,36.76094668000019],[9.32030544100013,36.68914025700019],[9.200627453000095,36.629300676000184],[8.793722431000049,36.56946377800017],[8.482558525000059,36.40191858600008],[8.267138584000179,36.36601520700009],[8.231234534000066,36.46175498100018],[8.36288053800007,36.581430454000156],[8.554366457000071,36.72504363600018],[8.697978466000109,36.80881572900006],[8.805689442000187,36.96439139600017]],[[7.67518243000012,36.84142401500014],[7.690113449000137,36.714079771000115],[7.630037499000025,36.68188437800018],[7.461853438000162,36.65737183800002],[7.312273514000083,36.656356957000185],[7.236805540000091,36.71680355500007],[7.281402462000187,36.841721069000016],[7.477807553000105,36.8636095710001],[7.67518243000012,36.84142401500014]],[[4.326506496000036,36.47356089200008],[4.222198572000025,36.400335412000175],[3.931473434,36.36438341799999],[3.989445526000111,36.44972343000006],[4.23514844500005,36.481453627000064],[4.326506496000036,36.47356089200008]],[[-4.883793149999974,35.07690161900007],[-4.519269041999962,34.980053086000055],[-4.30099606899995,34.98248040100003],[-4.220898601999977,34.910607761000165],[-4.259979057999828,34.80587831100007],[-4.316853120999951,34.78025500100006],[-4.636521137999978,34.77218741900009],[-4.912384994999854,34.85003618900009],[-5.091168139999979,34.927094378000106],[-5.29398303999983,35.08052561799997],[-5.338226076999888,35.16900515600008],[-5.498064109999973,35.268855751000046],[-5.689707105999844,35.470702038000184],[-5.813657013999887,35.549459071000115],[-5.876015020999887,35.61869359100018],[-5.789107089999959,35.694066515000145],[-5.580321089999927,35.74027259400009],[-5.496016074999886,35.71067140000008],[-5.409673084999895,35.491480608000074],[-5.164026994999972,35.26031509500018],[-4.98927805999989,35.16713934400008],[-4.883793149999974,35.07690161900007]],[[-4.329275540999902,33.72065923700012],[-4.294663477999904,33.804106783000066],[-4.197074487999885,33.82960721500018],[-4.159570499999916,33.736672695000095],[-4.006950459999928,33.72053317300015],[-4.018705576999935,33.59847774300016],[-3.871767460999934,33.66242881400018],[-3.773405491999881,33.643798358000026],[-3.790862481999966,33.57471253300008],[-3.897840543999962,33.482255279000185],[-4.109221581999918,33.43098669800008],[-4.040673538999897,33.362484756000185],[-4.116771496999945,33.305818397],[-4.17730157799997,33.37271553900018],[-4.263238549999869,33.34651605700009],[-4.307312440999965,33.44253746300018],[-4.420509539999898,33.431806616000074],[-4.457904562999943,33.52529484300004],[-4.329275540999902,33.72065923700012]],[[-4.647844523999936,33.30902330099997],[-4.96300944799998,33.080831016000104],[-5.231160444999944,32.91831412800002],[-5.435358525999959,32.866607508000186],[-5.550407523999922,32.97156234700003],[-5.41899755399993,33.14415730000019],[-5.418589522999923,33.26583470700007],[-5.268836428999919,33.37590032700007],[-5.17817843499995,33.475987292000184],[-5.100933496999914,33.51727621200018],[-4.944332555999893,33.523127954000074],[-4.865108483999961,33.426370784000085],[-4.742525496999974,33.44276243400009],[-4.678340569999875,33.41067030600004],[-4.647844523999936,33.30902330099997]],[[-5.441676469999948,32.291140569000106],[-5.258260478999887,32.420225566],[-5.030117479999888,32.50211005400013],[-4.96744850399989,32.57320569300015],[-4.770869572999914,32.606644625],[-4.623998511999901,32.58870031099997],[-4.651724506999813,32.49449224600011],[-4.8499385799999,32.38803838700005],[-5.048108563999961,32.30046744800006],[-5.130633429999875,32.1942767810001],[-5.363559478999946,32.096566924],[-5.401841474999912,32.061929883],[-5.429615581999883,31.93286030800016],[-5.50628652599994,31.916730677000032],[-5.537174509999886,31.812410348000128],[-5.656013468999902,31.690473269999984],[-5.744797436999818,31.720917181000175],[-5.75336843599996,31.86564431800008],[-5.821709444999897,31.821703867000167],[-5.957247501999973,31.672399875000053],[-5.929573474999927,31.591458686000067],[-6.024512442999935,31.515813183000034],[-6.130642424999905,31.545974959000034],[-6.289886514999978,31.466483839000034],[-6.379469445999973,31.464999907000163],[-6.386865469999975,31.391195238000023],[-6.492197494999914,31.434051741000133],[-6.597471515999871,31.374952953000047],[-6.607514544999958,31.313753996],[-6.742984540999885,31.332493417000023],[-6.742752529999962,31.430261947000076],[-6.808544434999874,31.457803037000133],[-6.795005481999908,31.5541977740001],[-6.685210428999824,31.609328065000057],[-6.619503516999941,31.534333334],[-6.488954535999937,31.613981698000032],[-6.473243496999942,31.701996711000163],[-6.379846463999968,31.761376795000103],[-6.244500520999907,31.79775073400009],[-6.22735148199996,31.855119833000117],[-6.055961510999907,31.81390098500009],[-6.02822042899993,31.892679476000183],[-5.901650505999896,31.88161385500007],[-5.836045516999945,31.95608555600012],[-5.882047580999938,32.067217858000106],[-5.944474486999979,32.087343310000165],[-5.884436423999887,32.19436881399997],[-5.630147585999907,32.26839040700014],[-5.502517519999913,32.27650409000012],[-5.441676469999948,32.291140569000106]],[[-7.414386552999929,31.282923176999986],[-7.617966552999917,31.132619224000166],[-7.700619493999966,31.050434161000112],[-7.834802531999969,31.050009030000012],[-7.902281546999973,31.001861702000156],[-8.059111481999935,31.013967517000026],[-8.004296516999887,31.101082313000177],[-7.842771542999969,31.1545144320001],[-7.755366564999918,31.222231157000067],[-7.71087844099992,31.177339695000114],[-7.622984462999966,31.227733876],[-7.610122431999969,31.287132066000026],[-7.414386552999929,31.282923176999986]],[[-8.383689450999952,31.06965235600012],[-8.385476471999937,30.962848301000065],[-8.508936541999958,30.899509444000103],[-8.575987575999932,30.918465789000095],[-8.636585550999882,30.85875679900016],[-8.744705563999958,30.853638976000127],[-8.766268512999943,30.89352057400015],[-8.49947756399996,30.950481642000113],[-8.42846155399991,31.07748507700012],[-8.383689450999952,31.06965235600012]],[[10.119127860000049,35.86655903500008],[10.170815480000158,35.928327142000114],[10.27386159200006,35.96212448500012],[10.331334918000096,35.90227971100012],[10.290348460000132,35.838470123000036],[10.146908448000033,35.79725311900012],[10.119127860000049,35.86655903500008]],[[5.000902524000026,35.83458729000017],[5.257853454000099,35.78839646500006],[5.50707057000011,35.767888798000115],[5.532038583000144,35.707301217000065],[5.416012423000041,35.68878190500004],[5.179214438000088,35.69827943900003],[4.891407543000071,35.80428805100007],[5.000902524000026,35.83458729000017]],[[6.018144543000119,35.636932960000024],[6.064682546000142,35.591413191000015],[5.913184508000029,35.480724795000185],[5.828606578000119,35.532584636000024],[6.018144543000119,35.636932960000024]],[[6.469099484000026,35.29506027500014],[6.214625574000081,35.33511739000011],[6.331796534000034,35.405336449000174],[6.586972512000102,35.40873564600014],[6.805170551000174,35.343659053000124],[6.700610500000153,35.273420883000085],[6.469099484000026,35.29506027500014]],[[10.268998347000093,35.62373731400015],[10.409119526000097,35.687861907000126],[10.561943581000094,35.516581906000056],[10.60052849699997,35.5007579980001],[10.539443535999965,35.41741846000002],[10.476623518,35.42082017100006],[10.305919522000067,35.51053620700014],[10.268998347000093,35.62373731400015]]]]},"properties":{"objectid":432,"eco_name":"Mediterranean woodlands and forests","biome_num":12,"biome_name":"Mediterranean Forests, Woodlands & Scrub","realm":"Palearctic","eco_biome_":"PA12","nnh":4,"eco_id":798,"shape_leng":151.091087689,"shape_area":35.2182942066,"nnh_name":"Nature Imperiled","color":"#CD6667","color_bio":"#FE0000","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":359096.0148258987,"percentage":10.870517810442273}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-99.14271566899998,20.960382424999978],[-99.12518357699997,20.876460295000015],[-98.94464861499989,20.68751359000015],[-98.95857967299997,20.574021280000125],[-98.86141966899999,20.51483733200007],[-98.8678056729999,20.389758549000135],[-98.82825465699995,20.371760424],[-98.74501766499998,20.48296732400013],[-98.69675466599995,20.315727736000156],[-98.59137754699998,20.247265692000042],[-98.52309453999999,20.234751343000084],[-98.42180661599991,20.129664238000146],[-98.40756257799995,20.052030883000157],[-98.33328265499995,20.055003609000096],[-98.2666936309999,20.21843915400018],[-98.39675159899997,20.30813725200005],[-98.51623562899994,20.308991033000098],[-98.5467455889999,20.361610274000043],[-98.53749867299996,20.455318778000105],[-98.57026654999993,20.522799972000087],[-98.65790555099994,20.568078342999968],[-98.709472528,20.64059722800016],[-98.79502057899992,20.624798346000148],[-98.81358364399995,20.694860160000133],[-98.88603262399988,20.695888285000024],[-98.94091062099994,20.809632890000046],[-99.01412151599999,20.827778034],[-99.04802664999994,20.94841306700016],[-99.14271566899998,20.960382424999978]]],[[[-99.450652543,20.749173384000187],[-99.44510657299992,20.85310931900011],[-99.39286753499988,20.877636947000042],[-99.50680559399996,21.046486866000123],[-99.61775164999989,21.03310934900003],[-99.83065064999994,21.12548144200008],[-99.90837067399991,21.12321531100008],[-99.99377455599989,21.084547748000034],[-99.96945161399987,20.98415132300005],[-100.01911958699998,20.940135770000154],[-99.76860864099996,20.749560293000172],[-99.69815052999996,20.750983037000083],[-99.7163236699999,20.787621174000094],[-99.69333663499998,20.94134460800018],[-99.56640662599995,20.9919538690001],[-99.4685515939999,20.942998358000068],[-99.52115658599996,20.710637584000096],[-99.450652543,20.749173384000187]]],[[[-99.31028751599996,21.362515294000104],[-99.3539656129999,21.238259950000042],[-99.28282957399995,21.19272459000007],[-99.23224663299999,21.308697273000064],[-99.31028751599996,21.362515294000104]]],[[[-104.09886159599995,23.102660421000166],[-104.20934262299988,22.87413034500014],[-104.17491965599993,22.79952034300004],[-104.1747436359999,22.650429084],[-104.13576460099995,22.59884165500017],[-104.02148455899999,22.573729138000033],[-104.01928766299994,22.699287365000032],[-104.04282354399999,22.773614562000034],[-104.10467561899998,22.808606661000113],[-104.09879252899992,22.884154934000094],[-103.99488056599995,22.905920557],[-103.96925356799983,22.952858209],[-104.00230357999988,23.042637445000025],[-104.09886159599995,23.102660421000166]]],[[[-102.43202157699989,25.435111060000054],[-102.73017861299985,25.510758742000178],[-102.99525462499992,25.542270172000144],[-103.16925857699988,25.64885294400011],[-103.32851456899994,25.56667006000015],[-103.45696254199993,25.480236880000064],[-103.60740663999991,25.203480183000067],[-103.64085361899993,25.06674468800003],[-103.52479560799998,24.952204137000024],[-103.49269057199996,24.87221395800003],[-103.49333966599994,24.713839741000015],[-103.5398555409999,24.62038219200008],[-103.66903659499997,24.52443002000018],[-103.71120460799995,24.381896762000167],[-103.77848061299989,24.283312672000136],[-103.8742445279999,24.200829716000044],[-103.70394152199992,24.12841946000009],[-103.66565667599991,24.049411305000035],[-103.7641445409999,23.916431908000106],[-103.757125536,23.724519685000132],[-103.68513454299995,23.672736455000177],[-103.69896652699998,23.58318084900003],[-103.78672052699983,23.53455022000003],[-103.84706855399997,23.57677506300007],[-103.90573164999995,23.815317155],[-103.99103561999988,23.97842094400005],[-103.96685064399998,24.061191903000065],[-104.00016066199993,24.102054854000073],[-104.00876652999995,24.218064082000183],[-104.09892261599992,24.19188823700017],[-104.18826263999983,24.379655944000035],[-104.18155661399999,24.474685268000144],[-104.13712364299994,24.521135932000163],[-104.136993556,24.616996406000055],[-104.06756558099988,24.67238553100009],[-104.1509246139999,24.718512485000133],[-104.20259066499989,24.6216731720001],[-104.27490251699987,24.565111754000043],[-104.3865055469999,24.700492231],[-104.45030959899992,24.788427951000074],[-104.44483152299989,24.874233997000147],[-104.64053353899999,24.82675118600008],[-104.67726857099984,24.745723160000125],[-104.76214556699995,24.758503383000175],[-104.79190065299997,24.886875416000066],[-104.86305261699988,24.958801868000137],[-104.97298462999987,25.025122671000133],[-105.07717856,25.04435561800011],[-105.17112762499994,25.141665994000107],[-105.27612252899996,25.116291291000152],[-105.27387953199985,24.996567036000044],[-105.16650366399989,24.946839383000054],[-105.12870060999995,24.797102718000076],[-105.00179256099995,24.813975824000124],[-104.85973355099998,24.621534033000046],[-104.787055577,24.570724612000106],[-104.77918966399994,24.29548705100018],[-104.717185541,24.240324741],[-104.73231454099988,24.126010501000167],[-104.70291166299995,24.087561538000102],[-104.76561751899999,23.997951952000108],[-104.62935660699998,23.95408827900019],[-104.58206155,23.865919710000128],[-104.50617263699996,23.889405300000192],[-104.47881360199989,23.783574720000104],[-104.42403467999992,23.808267303000093],[-104.41494752299997,23.996788041000173],[-104.36647765899994,23.980984633000162],[-104.3703616659999,23.802247924000028],[-104.46214266699997,23.724962753000057],[-104.48252058299994,23.481861912000113],[-104.36988859099984,23.43067564100005],[-104.31229351699983,23.592153341000085],[-104.18967465499998,23.674258106000025],[-104.1147996169999,23.670993355000178],[-103.99218762899989,23.570953496000072],[-103.99287460899995,23.47874417900016],[-103.90342763199993,23.347169757000017],[-103.82522564899995,23.370926585000177],[-103.93119067499998,23.51515919000019],[-103.82565262299994,23.52299979000003],[-103.69963858799997,23.426839747000088],[-103.53775755099997,23.429582808000134],[-103.56137859199993,23.565727715000094],[-103.42752060399988,23.62241670500009],[-103.31851965299995,23.480420225000103],[-103.1692805369999,23.453739453000026],[-103.07443963799989,23.404337857000087],[-103.10905455099993,23.354658652000182],[-103.20821363899995,23.416071516000045],[-103.33278665799992,23.34790082700016],[-103.36168662199998,23.211135994000188],[-103.42571262699994,23.160566464000055],[-103.28413356599992,23.07920953200005],[-103.27687064599985,22.962328586000126],[-103.45188159999998,22.87133632200016],[-103.42790265099995,23.022445775],[-103.48265056099996,23.025188501000116],[-103.5090485259999,22.92207483100009],[-103.59622953999997,22.81789330700002],[-103.65138262999989,22.687758224999982],[-103.77076758599998,22.62870922600007],[-103.85126453399994,22.696910760000094],[-103.96419559199984,22.580175659000076],[-103.90975965699994,22.551986146000104],[-103.86991862699995,22.456410153000036],[-103.70313266799997,22.476154229000088],[-103.59935766599989,22.55186611700003],[-103.61863654599995,22.611869982000144],[-103.55030056599986,22.701993211000058],[-103.44338251799996,22.777234371000134],[-103.33290853099999,22.78428589800012],[-103.256050669,22.871876451000162],[-103.20146151299991,22.78484296000005],[-103.06861153299997,22.84089593100009],[-103.00848361499999,22.791019584000026],[-102.9016495539999,22.848796546000187],[-102.84169765599995,22.808330729000033],[-102.79446462599986,22.801908012000183],[-102.72679852699997,22.85516846900009],[-102.67779557399996,22.795385550000162],[-102.60688752299995,22.843794058000185],[-102.57532462799992,23.00726648400007],[-102.31109652999993,22.97033028600015],[-102.28742251499995,23.00541559200019],[-102.13205756899993,22.985519636000163],[-102.16077463999994,22.882134895000036],[-102.0808565459999,22.843367922000084],[-101.97076460599999,22.731423917000143],[-102.00055657199994,22.689552958000093],[-101.90883659099995,22.62139148900002],[-101.8958666019999,22.547006457000123],[-101.81336956399991,22.518751061000103],[-101.62430551099999,22.590538206000133],[-101.59047665299988,22.50536583200011],[-101.58979067799999,22.38931771200015],[-101.5148616599999,22.42704281500005],[-101.54493760499997,22.543190679000077],[-101.48046853199992,22.585153504000118],[-101.46503459899992,22.776483520000113],[-101.35190555999992,22.71933453100013],[-101.42857365499992,22.626119218000156],[-101.33834062299997,22.590391355000122],[-101.28286751199994,22.655065785000033],[-101.22083254299991,22.60122563600015],[-101.14665957299997,22.59632591100018],[-101.09484063599996,22.6733259290001],[-100.97588365999991,22.546276561000127],[-100.90573165699993,22.552059236000105],[-100.80616755499983,22.454532272000165],[-100.76232953099998,22.516275215000064],[-100.70433765699983,22.58947739300004],[-100.61232766199998,22.55866182900013],[-100.53378252399995,22.582738678000112],[-100.53777365099995,22.44890583600005],[-100.50314364999997,22.50194601600009],[-100.48738852199989,22.70615918500016],[-100.43321963499994,22.745414152000137],[-100.40357166999996,22.84678991800007],[-100.24769559499993,22.741861231000087],[-100.42160063999995,22.49252844500012],[-100.41997555699999,22.325056175000043],[-100.49457566899991,22.174164148000045],[-100.50405861899992,22.038797418000172],[-100.47293862399988,21.972689012000103],[-100.19049061499999,21.947021613000118],[-100.10865054999994,21.849944589000074],[-100.11524157599996,21.760185470000067],[-100.02572653799996,21.684200836000116],[-99.89568365699995,21.68396077800014],[-99.90699754999997,21.56385330200004],[-99.88617656699995,21.478268036000145],[-100.00267764599988,21.48142080500014],[-100.03540763599995,21.65288336300017],[-100.13829750999997,21.678424028000165],[-100.22820264099994,21.64316806700009],[-100.33213052899998,21.65683006600011],[-100.35691866699995,21.637456303000192],[-100.29515862499994,21.563249301999974],[-100.21076157699997,21.515188978000026],[-100.18785852999997,21.478273903000172],[-100.03372153299995,21.383518164000122],[-99.92586554899998,21.455335316000173],[-99.85089864599996,21.467549426000062],[-99.66143058599994,21.562776228000132],[-99.6715165299999,21.605401055000016],[-99.58988953299996,21.69569996900003],[-99.58756254899998,21.823226100000113],[-99.61878161799996,21.956393083000137],[-99.53948261199997,22.04780612000002],[-99.58045955699998,22.152727599000116],[-99.57978866899998,22.257169799999986],[-99.6281586209999,22.289830054000163],[-99.58501461799989,22.415317370000025],[-99.62908163599997,22.461419179000018],[-99.57611052299995,22.518883998000035],[-99.64923055799989,22.64309257200017],[-99.66873960499998,22.94110896000018],[-99.62481658899998,22.967406511000092],[-99.67562852399988,23.18987596800008],[-99.72178665899992,23.28363224900005],[-99.69452652999996,23.39498952000008],[-99.75324259999996,23.42328900500013],[-99.83331257499998,23.32619404400009],[-99.8441086329999,23.47324732700008],[-99.80903657099998,23.52787252500002],[-99.84499359499995,23.633265235000124],[-99.90525059399994,23.640117944000053],[-99.92774158699996,23.76863230099997],[-100.00588254999997,23.916440961000035],[-99.982673563,23.985258565000095],[-100.02116359799999,24.081792776999976],[-99.95621457699991,24.11680013100016],[-99.84126264199989,24.06621568000014],[-99.77226264699993,24.14343061000011],[-99.82405861799992,24.19733412700009],[-99.91591656599996,24.143190553000068],[-99.98808257299999,24.17514505000014],[-100.01329064399988,24.32686856200013],[-100.14753755199996,24.436795210000184],[-100.15615867499997,24.578504192000025],[-100.21829254999994,24.654493520000187],[-100.25649256999992,24.775481599000045],[-100.39925364799996,24.953397217000145],[-100.54016852799992,25.060851874000093],[-100.60107462199989,25.13317244400008],[-100.74405664699992,25.146137739000153],[-100.78829163799992,25.12084015000005],[-100.90061165499998,25.14491180200008],[-100.92318764099997,25.075417275000063],[-100.79225158399993,24.977805822000107],[-100.84450554199998,24.896849880000048],[-100.99290462299996,24.98268274800006],[-100.94045251699993,25.045782721000137],[-101.11409755599988,25.13415731700013],[-101.12506058199995,25.133743419000155],[-101.36825563599996,25.109406731000036],[-101.49022657599994,25.06676161900009],[-101.65679158899991,25.10846779000002],[-101.74343062799989,25.17711440400018],[-101.77439857499996,25.195852316000128],[-101.85739165399997,25.192215743000077],[-102.13446753399995,25.318167585000026],[-102.19657860999996,25.333202036999978],[-102.2962416179999,25.348721298000044],[-102.31502563099997,25.402099605000103],[-102.43202157699989,25.435111060000054]],[[-101.47040555499996,25.047632607000082],[-101.19228361299997,25.011657143000093],[-101.24974860099996,24.972488007000038],[-101.41760258199997,25.007585383],[-101.47040555499996,25.047632607000082]],[[-101.31014255999997,24.818025625000132],[-101.33560963199994,24.90727914700011],[-101.20626865099996,24.86425534100016],[-101.31014255999997,24.818025625000132]],[[-101.57915454599993,24.757569639000167],[-101.54487658499983,24.70312817200005],[-101.44844865599993,24.664262125000107],[-101.40125267399998,24.520232195000062],[-101.4871366719999,24.454363176000186],[-101.5371015319999,24.56706071400015],[-101.61390658699997,24.57268966500004],[-101.57915454599993,24.757569639000167]],[[-101.09970063099996,24.509433621000085],[-101.1527325969999,24.631796500000178],[-101.03891758399999,24.64041427000018],[-100.95184352399991,24.57138058000004],[-100.98727466699995,24.489656521000086],[-101.09970063099996,24.509433621000085]],[[-100.22367859299999,23.753501122000102],[-100.29486056499996,23.785100561000093],[-100.20896164699997,23.9038585510001],[-100.14248661699992,23.751725332000092],[-100.22367859299999,23.753501122000102]],[[-100.06915267599993,23.713790346000167],[-100.03258561699994,23.541277033000142],[-100.03656752399996,23.462704066000185],[-100.10755956199995,23.436778337000135],[-100.20082851899991,23.508948703000158],[-100.13380464199997,23.651668374000053],[-100.06915267599993,23.713790346000167]],[[-100.79336553899998,23.465480991],[-100.89695764799995,23.41726241599997],[-100.92612465999997,23.555865232000087],[-100.89089954399992,23.66866637100003],[-100.90083360799997,23.745616768000048],[-100.79437254099992,23.737566118000018],[-100.69805860599996,23.59027663300003],[-100.7600476419999,23.568085712000084],[-100.79336553899998,23.465480991]],[[-101.13333167699994,23.354965597000103],[-101.04422751999994,23.300755303000187],[-101.12760951899998,23.203087188000154],[-101.13333167699994,23.354965597000103]],[[-100.02791555599998,23.335209619000068],[-99.92543756999999,23.287594039000112],[-99.9941255899999,23.222602270000152],[-100.02791555599998,23.335209619000068]],[[-99.95706953099995,23.2252781090001],[-99.8738935589999,23.236671463000107],[-99.85548354699989,23.129421156000035],[-99.88043261699988,23.031228166000062],[-99.93939159399991,23.011271357000055],[-99.96170757299996,23.107715211000084],[-99.92445353399995,23.14443331200016],[-99.95706953099995,23.2252781090001]],[[-102.91307056699998,23.061979691999966],[-102.96086853799989,22.909504659000106],[-103.04401366499997,22.95133035599997],[-103.11048852699992,23.06412445300009],[-103.0463636149999,23.118658624000034],[-102.91757164899997,23.13184604000014],[-102.91307056699998,23.061979691999966]]]]},"properties":{"objectid":435,"eco_name":"Meseta Central matorral","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Nearctic","eco_biome_":"NE13","nnh":4,"eco_id":432,"shape_leng":64.3791643829,"shape_area":11.06914898,"nnh_name":"Nature Imperiled","color":"#A57024","color_bio":"#CC6767","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":125544.31347389928,"percentage":0.4758678763165515}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[35.27962856300019,31.47961945500009],[35.1881214820001,31.380142693000096],[35.052486530000124,31.343213871000103],[34.914535491000095,31.40079503100003],[34.90927852900012,31.511409164000042],[34.738334475000045,31.49965455000006],[34.68021754400013,31.55462072400013],[34.51485851900003,31.552412764000053],[34.41976951600009,31.403374981000184],[34.319904504000135,31.333006222000108],[34.333129471,31.305226248000167],[34.549541494000096,31.250463083000113],[34.594287613,31.176044859000115],[34.91816351400013,31.021018207000054],[34.90129057500019,30.950573507000172],[34.68594758000012,30.806971557000168],[34.64738445500018,30.636510636000025],[34.52247247300011,30.57986489600006],[34.52178357700012,30.525976732000174],[34.537035632000084,30.50958589200002],[34.545269383,30.406949772000132],[34.591413833000104,30.378964854000117],[34.68354046500019,30.419424708000065],[34.70148846700016,30.521922978000134],[34.811016472,30.532665561000158],[34.89327948800019,30.599977105000107],[34.90712354200008,30.65808196600011],[34.74280957300016,30.78302445900016],[34.81758855500016,30.85862084400003],[34.90539552900003,30.823259942000107],[35.05105255400014,30.95700225900009],[35.08473255000007,31.032540809000068],[35.24240855400018,31.1473437140001],[35.28652955100006,31.27421018800004],[35.27962856300019,31.47961945500009]]],[[[36.354255606000095,33.59101198200017],[36.23324254900018,33.50774732900015],[36.21307753400015,33.45672785800002],[36.44348951500001,33.429140835],[36.466560536000145,33.348492007000175],[36.621993542999974,33.31270429799997],[36.639450532000126,33.44043545000011],[36.52024059100012,33.565824866000014],[36.41495148200016,33.60601156500019],[36.354255606000095,33.59101198200017]]],[[[37.273807550000186,33.92800455500003],[37.34215560000007,33.994397610000135],[37.57567559000017,34.14300640700003],[37.63671160300004,34.199145880000174],[37.74623458000002,34.20882764900017],[37.86031747900017,34.339824055000065],[37.835025589000054,34.38503486700017],[37.50027048100014,34.19021999100016],[37.30651859700015,34.02404457000017],[37.11502848700002,33.899998102000154],[37.139083544000016,33.85419938300015],[37.273807550000186,33.92800455500003]]],[[[38.766086556000175,34.87118206700018],[38.840827484000044,34.97166231000017],[38.59563452000009,34.98761491600004],[38.44388552700008,34.93424549500003],[38.49819556600016,34.77952847000006],[38.67303452300018,34.81050362600007],[38.766086556000175,34.87118206700018]]],[[[37.80678947100006,34.88123364500018],[37.91632854100004,34.94267115100013],[37.9454264850001,34.99404702100014],[37.85664754600003,35.042621659000076],[37.73219656800006,34.93034656800012],[37.62495849900017,34.86543711000007],[37.63739355500019,34.827261229000044],[37.80678947100006,34.88123364500018]]],[[[38.16513846400005,34.88539559500009],[38.186508461000074,34.96235471000011],[38.09558157500015,35.08522653700004],[38.01034952200007,35.01010658000013],[38.080829593000146,34.853696578000154],[38.16513846400005,34.88539559500009]]],[[[40.71643858300013,35.466427950000025],[40.80437061500004,35.624200346000066],[40.609210572000165,35.59623513200012],[40.53898246099999,35.556762068000126],[40.54212550699998,35.43188294200013],[40.61527253200006,35.41524737900011],[40.71643858300013,35.466427950000025]]],[[[39.47152345400019,35.29080746500017],[39.61828253200008,35.4030937870001],[39.833286563,35.52006877800005],[39.90662754500005,35.61248948700006],[39.84781659200007,35.661823525000045],[39.753528563000145,35.59827981400019],[39.473918499000035,35.56696552600005],[39.39101058000006,35.51813490500018],[39.30766261100007,35.41871514000002],[39.23916251300017,35.41724244000005],[39.157710531000134,35.34839985700012],[39.27107945900008,35.27401868099997],[39.38747459000007,35.26115313000014],[39.47152345400019,35.29080746500017]]],[[[45.770076604999986,34.499781613000096],[45.7143366140001,34.54478271000016],[45.49341160600011,34.80428576200018],[45.31828649200014,34.91580581000011],[45.17169153100019,34.98352219999998],[45.09349860000009,35.06185510900019],[44.78865850500006,35.24787753600003],[44.76898148400011,35.239374598000154],[44.31307552100003,35.49017337900017],[43.954311624000184,35.63276011400012],[43.44662846500006,35.689540634000025],[42.73101862000004,35.66888427200013],[42.31426251400012,35.629697031000035],[41.771621455,35.51140993700011],[41.239730522000116,35.34456714800018],[41.206069469000056,35.228530092000085],[41.050262462000035,35.27583470400009],[40.97043958600011,35.250857303000146],[40.947250548000056,35.35742163499998],[40.97394959200011,35.52532976300006],[40.88205359099999,35.50306307000005],[40.84244155400012,35.42707994400007],[40.75513850100015,35.354782006000164],[40.744098528000166,35.23673882500009],[40.59429950200007,35.145485883],[40.618720512000095,35.06888903500004],[40.56284356000015,34.98326320000007],[40.353885564000166,35.051799340000116],[40.168117611000184,35.027806142000145],[40.04719155800012,34.96520858000014],[39.854122465000046,35.02154620100009],[39.62892151400018,34.98207229900004],[39.38958750000006,35.02342710000005],[39.40836749000016,34.91456595900013],[39.615467553000144,34.89118246100014],[39.57950550100003,34.810697583000035],[39.20062654500009,34.59664221600008],[38.97783254100017,34.521204249000164],[38.83581946400011,34.493731891000095],[38.7567864990001,34.52961599200006],[38.64122754700014,34.49153801100016],[38.54060347000012,34.505724550000025],[38.497852579000096,34.56624306400016],[38.395774576000065,34.549981502000094],[38.252841502000024,34.35854252100006],[38.10207755000005,34.32512638800017],[38.026996485000154,34.23978671100008],[37.932273603000056,34.246652495000035],[37.85859248300011,34.1915129840001],[37.917007475000105,34.10148866100013],[37.808784532,34.06813740400014],[37.617954581000106,34.10738935300009],[37.39382550700003,33.944175091000034],[37.20812947100006,33.84291667100007],[37.14379853200006,33.77573772900007],[37.037799475000156,33.572523683000156],[36.84952952500004,33.62084619300015],[36.76150546000008,33.527941681000016],[36.80786861600012,33.34256432500018],[36.80929957400019,33.20605229100005],[36.93556959300008,33.08515993400016],[36.98505752300008,32.97076439000017],[37.14597346800008,32.90378845700013],[37.119106618000046,32.85468006000008],[37.16930751300009,32.77030866000001],[37.097164472000145,32.65188527700013],[37.18273548900004,32.626468999],[37.22771154200018,32.540355779000095],[37.228668325,32.344215195000174],[37.24538979400006,32.300739376000024],[37.47112962300008,32.14021327500012],[37.60991781500019,32.078343841000105],[37.8155918810001,32.07165525300019],[37.88749419700008,32.0900488690001],[38.05303673900005,32.23719779400005],[38.22359572100004,32.30910011000003],[38.36405605900018,32.3141165510001],[38.62491097300011,32.26896858500004],[38.85232294900004,32.24221423500006],[39.03960340000009,32.25391926300006],[39.28833360700003,32.33022136000005],[40.03479355000019,32.516135493000036],[40.683444562000034,32.66183392500011],[41.024463467000146,32.67228146499997],[41.46731562200017,32.701394832000176],[41.79326654700003,32.75258596400005],[42.01005961100009,32.81242923300016],[42.213363511000125,32.91560207900011],[42.22441857100017,32.97630030100015],[42.49838258500017,33.160685743000045],[42.72841654200005,33.28758490700005],[42.77475757000002,33.26995055600014],[42.97459756400019,33.3855931600001],[43.15656248000016,33.36464745500018],[43.26181755900018,33.408045260999984],[43.53923458200012,33.5882471270001],[43.68156449500009,33.65524200300018],[43.96729251000005,33.74292056600018],[44.19256956900017,33.77545861100009],[44.40914956500018,33.77908277900008],[44.62940552900005,33.72472529800018],[45.037429535000115,33.58204435100009],[45.571479479,33.43649444700003],[45.71452353000012,33.36883136500012],[45.826705581,33.280929006000065],[46.02602757400001,33.174429382000085],[46.13566555,33.14147928200009],[45.94863846800007,33.305399301000136],[45.70314459400009,33.62871981700005],[45.770076604999986,34.499781613000096]]],[[[40.55437046200018,36.363200396000025],[40.698932475000106,36.33811587399998],[40.864356542999985,36.40407424400007],[40.918949555000154,36.486221589000024],[40.879871614000024,36.54532138200011],[40.70754253400008,36.56920092200005],[40.60573157900018,36.61056293200005],[40.48549250800011,36.61894768500002],[40.220371569000065,36.548217330000114],[40.221595494000155,36.420809049000184],[40.44023861199997,36.41680719300018],[40.55437046200018,36.363200396000025]]]]},"properties":{"objectid":437,"eco_name":"Mesopotamian shrub desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Palearctic","eco_biome_":"PA13","nnh":3,"eco_id":830,"shape_leng":40.007765008,"shape_area":19.9401437688,"nnh_name":"Nature Could Recover","color":"#E67938","color_bio":"#CC6767","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":204975.28960936033,"percentage":0.776946028575442}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-67.87778481199996,60.389217701],[-67.84160423099996,60.485933003000184],[-68.00298663999996,60.58607412500004],[-68.24404811199997,60.58063016900013],[-68.4403104729999,60.26615271100019],[-68.32458918399982,60.20035802900014],[-68.00520809999989,60.29470165200007],[-67.87778481199996,60.389217701]]],[[[-78.257405453,60.80711628500018],[-78.37886732199996,60.82052370100013],[-78.60268419999994,60.77970092700019],[-78.61808446899994,60.708350071000154],[-78.31982462299999,60.764510726000026],[-78.257405453,60.80711628500018]]],[[[-64.75882891499992,61.60607210000006],[-64.73322901199998,61.65032909000013],[-65.00358206699997,61.68804941400009],[-65.39153812199987,61.65246528400013],[-65.46887896499993,61.610814550999976],[-65.3116681709999,61.521882923000135],[-65.16758830399988,61.494956188],[-64.93696351199998,61.34112814700012],[-64.82300111599994,61.30864098000018],[-64.6840906999999,61.42356907100009],[-64.62436439599998,61.601553150000086],[-64.75882891499992,61.60607210000006]]],[[[-65.65921193599996,61.79771003700006],[-65.79898047899991,61.85633405400006],[-65.93589206899992,61.781121702000064],[-65.66049580899994,61.740634979000106],[-65.65921193599996,61.79771003700006]]],[[[-64.99957756999993,61.86165123800015],[-65.17617021699994,61.93101840300011],[-65.22865687699988,61.865636652000035],[-65.12044326899996,61.772052642000176],[-64.91852817499989,61.707887773000095],[-64.79315707299986,61.736847060000116],[-64.87520051199982,61.82375052200007],[-64.99957756999993,61.86165123800015]]],[[[-64.73563104999988,62.558172309000156],[-64.93197703799996,62.46956053400004],[-64.91343192099993,62.420306128],[-64.5429585689999,62.363338837000185],[-64.35035600999998,62.46326525600017],[-64.36319441699993,62.527892404000056],[-64.73563104999988,62.558172309000156]]],[[[-72.13582340899995,61.59653177400014],[-71.98139961699997,61.66349860100007],[-72.00865288699998,61.72805997700004],[-72.2539131389999,61.88830345800005],[-72.59085370499992,61.947797567000066],[-72.60030772899984,62.1134287160001],[-72.71280760699983,62.14691393100003],[-72.85820579599994,62.11421491000016],[-73.18598916899998,62.27163938500007],[-73.18689629999994,62.315127957000186],[-73.37950876199994,62.37179254199998],[-73.53906291499999,62.380405223000025],[-73.65580497599996,62.4740927310001],[-73.85070679599994,62.45988648000019],[-73.97657006599991,62.364562896999985],[-74.34937087499998,62.25863626300014],[-74.70742537499996,62.24681659200013],[-74.91758142599997,62.258731811000075],[-75.30897013999999,62.317403486000046],[-75.55590644499995,62.27708080800011],[-75.93392716199997,62.35433019800007],[-76.56651495499989,62.45752232500007],[-76.77101717099998,62.516601779000155],[-77.0806786199999,62.52718171200007],[-77.52968138299991,62.571849685000075],[-77.60308702099991,62.524509804000104],[-77.96810229999988,62.38977741400004],[-78.09891257699991,62.36469218400015],[-78.18621586699999,62.261770342000034],[-78.18900574799994,62.13759766600003],[-78.09175398399992,61.911251775000096],[-78.10362614999991,61.87009145300016],[-77.95701575599998,61.68265588200006],[-77.80656320899999,61.68929359599997],[-77.63679147399995,61.562585177000074],[-77.60772185099995,61.46439399500002],[-77.80285345599992,61.41274502500016],[-77.71534723499997,61.20196997],[-77.83393930499989,61.14721307500008],[-77.8422329949999,61.08538198500008],[-78.20642539099993,60.852889104000155],[-77.89263210699988,60.7703907770001],[-77.7196198289999,60.78185443900003],[-77.68511639199994,60.73404389500013],[-77.54200100799989,60.74005656700007],[-77.18717057499993,60.84621575200009],[-76.95176754599999,61.01780327700004],[-76.78955115499997,61.10017139900003],[-76.41876281699996,61.16261649900002],[-75.89055127099988,61.14780998700007],[-75.66549841499994,61.17033983800019],[-74.86212883499996,61.35873389200009],[-74.25375559999998,61.36145685400015],[-73.87648864799996,61.39252864500003],[-73.58799828099995,61.45910872700006],[-73.36164136299988,61.485735014],[-72.82015884099997,61.48573915700007],[-72.54941630699989,61.54787029400018],[-72.46051006099992,61.675159518999976],[-72.26828073099995,61.56732107000016],[-72.13582340899995,61.59653177400014]]],[[[-74.35509434699992,62.67561566100005],[-74.16882193499998,62.60056723400004],[-74.02915343999996,62.66804753900004],[-74.35509434699992,62.67561566100005]]],[[[-70.23923051799994,62.54567851500008],[-70.1778531949999,62.59016123400005],[-70.34477710699991,62.71610207300006],[-70.77514854699996,62.83946869400006],[-70.86681985799993,62.73329759900014],[-70.71612415299984,62.56467845200012],[-70.36790909099994,62.52198899900003],[-70.23923051799994,62.54567851500008]]],[[[-78.43660475999985,63.47580897100016],[-78.52134202299993,63.40288536800011],[-78.01333189399986,63.11652509700002],[-77.90174584699997,63.09416459900018],[-77.52650690299998,63.19746862],[-77.50217498199999,63.274207093000086],[-77.67090438399998,63.42847961300009],[-78.17019586399988,63.489140624000186],[-78.43660475999985,63.47580897100016]]],[[[-64.07223223699998,63.33228567000003],[-64.21181450699999,63.440041250000036],[-64.35024635199994,63.66973576200019],[-64.4815934689999,63.602860129000135],[-64.38957776899997,63.45873481899997],[-64.24228846999995,63.32696472900005],[-64.07223223699998,63.33228567000003]]],[[[-77.3789445839999,63.69386113900015],[-77.39922340399994,63.59049352600016],[-77.04099299699999,63.42266984000014],[-76.72276650399994,63.363657166999985],[-76.65754400399999,63.517518005000056],[-76.81720394799999,63.616900435000105],[-77.0377005929999,63.678544653000074],[-77.3789445839999,63.69386113900015]]],[[[-64.58383783499994,63.77909571000009],[-64.53586056399996,63.90115031900007],[-64.6163986979999,63.91164729400003],[-64.89820544799989,63.82693309899997],[-64.87589417999993,63.77675206000015],[-64.6661050269999,63.77436030600012],[-64.45594581499995,63.65812405900016],[-64.36308357799993,63.724393571000064],[-64.42259341499994,63.77910579000019],[-64.58383783499994,63.77909571000009]]],[[[-77.52338042999997,64.02504736900016],[-77.93064080199997,64.02130601800013],[-77.99778772699989,63.959595919000094],[-77.75494992399996,63.925847708000106],[-77.52338042999997,64.02504736900016]]],[[[-65.3541695269999,64.68294373800018],[-65.49772693399984,64.66478210100018],[-65.62429295999988,64.58367643700018],[-65.63314489899983,64.51082464000001],[-65.46433005299997,64.50281231400004],[-65.26426391399991,64.60439994700016],[-65.3541695269999,64.68294373800018]]],[[[-80.5003338269999,63.704204078000146],[-80.18795326099996,63.71893430500006],[-80.15220991199999,63.77654833000014],[-80.60715044299997,63.85396011400002],[-80.55080215299984,63.98191123300012],[-80.86290594299999,64.10901106100005],[-81.04840426999993,64.000714609],[-81.29933519899998,64.07570523700014],[-81.46681228999984,64.02717710300016],[-81.7077978499999,64.00029717100011],[-81.97573497699995,64.00022212900012],[-81.89348058999991,64.06808285400012],[-81.71943921499997,64.08371452500006],[-81.57735889599996,64.18091190100012],[-81.72654088599995,64.27143668500014],[-81.73098107599998,64.46645259500013],[-81.8158300799999,64.54567858200011],[-82.35294337999994,64.76607060900017],[-82.52555652499996,64.74587420300008],[-82.76114137399992,64.80193375100009],[-82.83131575699997,64.85642150900003],[-83.15289997599984,64.93755853600004],[-83.29232966199993,65.00561142900017],[-83.37900178899997,65.13398013800014],[-83.48374072899998,65.15805518300004],[-83.85515488899995,65.16572120900014],[-84.20776781599994,65.26091391200015],[-84.1477647769999,65.3292535380001],[-84.41075455899994,65.40883126000017],[-84.53507738599995,65.48107441600013],[-84.7046965049999,65.35880234900009],[-84.73359962399996,65.25773625400012],[-84.62699855799997,65.25689132600002],[-84.69859240699998,65.04769308300018],[-84.58520501499999,65.01733503600019],[-84.75121419799996,64.90273947200018],[-84.75591978199992,64.54433453300004],[-84.62682354499998,64.38076165400008],[-84.51499862899988,64.35692753800015],[-84.43079261199995,64.2679235710001],[-84.1371847399999,64.08490529699998],[-84.02544279299991,64.17686611200008],[-83.72131276099998,64.20716171400016],[-83.55119330799988,64.31748977700016],[-83.6025012149999,64.43754551800009],[-83.042662437,64.39471633400007],[-82.77300198699993,64.28080988200003],[-82.69000891699983,64.19451282900013],[-82.19240459499997,64.13483489200019],[-82.13158489499989,64.08253333100004],[-82.33208527599999,63.98923721500017],[-82.41974547199999,63.91548607900012],[-82.34376218599988,63.851359000000116],[-82.48671359499997,63.79236437000014],[-82.53941829199988,63.72168166400013],[-82.47653301199995,63.664006463000135],[-82.30196699099986,63.64649275200014],[-82.07530567199996,63.68011120900002],[-82.01795750899998,63.65118242900007],[-81.92279142499996,63.70655807400004],[-81.92207283399989,63.866788168000085],[-81.72308275599983,63.94722509200017],[-81.39429499999989,64.00828623800004],[-81.26733560199989,63.990991024000095],[-80.83181808999984,63.738027122],[-80.5003338269999,63.704204078000146]]],[[[-84.83687988399998,65.97543457500012],[-84.9316016539999,66.025774846],[-85.15242529799997,65.99585077000017],[-85.10408128999995,65.90583445700014],[-85.10803997799985,65.76229868100017],[-84.89146894899994,65.68110509000007],[-84.71239533799991,65.54453143400002],[-84.55313078899997,65.62382874200017],[-84.72293768899993,65.87741814100019],[-84.83687988399998,65.97543457500012]]],[[[-84.18856139399992,66.08747711300015],[-84.37520050699993,66.14451360300012],[-84.44337983799994,66.07719523000003],[-84.3705017069999,65.99888908700012],[-84.15320865199993,65.97231812300004],[-84.06628262699996,65.80594522500013],[-83.7978545499999,65.6462276470001],[-83.44141642799997,65.65528327900006],[-83.31056247399994,65.61902405000018],[-83.17264580299997,65.71057146600009],[-83.4488216439999,65.72783520600012],[-83.71064464999995,65.78734829000018],[-83.64425912799993,65.90850713100014],[-83.96359833399987,66.03490059100005],[-84.18856139399992,66.08747711300015]]],[[[-63.600417142999845,65.64808386400011],[-63.93991618199988,65.64605632500013],[-64.10037489699988,65.69984095500013],[-64.23479868999993,65.91360640500017],[-64.53219101899992,66.01758677100014],[-64.75734968999984,66.1721207870001],[-64.75993937799996,66.08167527700004],[-64.84615547699985,66.02168447200017],[-65.34252025899997,65.89851258700008],[-65.49657310399994,65.7396837730002],[-65.4521993589999,65.66737565500017],[-65.29536333199997,65.62749504900017],[-65.28751112099997,65.53918853100004],[-65.10864876799991,65.5305762210001],[-65.15619254799998,65.42591947700015],[-64.9699006429999,65.39834927300018],[-64.88639833699995,65.25876625600011],[-64.7176639199999,65.2157875420001],[-64.7055984559999,65.15490456700013],[-64.55687941099995,65.07443697200006],[-64.44857134899996,65.17971238500013],[-64.2383718509999,65.11307176400015],[-64.05471620899993,65.11625030500016],[-63.89379874699989,65.07719118300014],[-63.83145622699993,64.97150551100015],[-63.668097967999984,64.949965394],[-63.45103184799996,64.98048497900004],[-63.35695438199997,65.1771377930001],[-63.478233081999974,65.349190836],[-63.44247370599993,65.41877001600005],[-63.52143997399992,65.49865298500004],[-63.37037668399995,65.52508611300004],[-63.36759015499996,65.623309668],[-63.600417142999845,65.64808386400011]]],[[[-65.50956116599997,66.234763208],[-65.62552211799988,66.16274147600006],[-65.8809899989999,66.09393525600007],[-65.94405543399984,65.96152001799999],[-65.42111229199992,65.96946205300014],[-64.93180003699996,66.06757365300018],[-64.83562479899985,66.16710645600011],[-65.05582349599996,66.16739816800009],[-65.50956116599997,66.234763208]]],[[[-65.57233432999993,66.24447707000013],[-65.56852541099994,66.34845709100011],[-65.83165031899995,66.47396761500016],[-65.85141575899996,66.61978980000009],[-65.96572786099995,66.67547390200008],[-66.37238371799998,66.58700401500016],[-66.72682402999988,66.58758627200007],[-66.81110644199993,66.45487952800005],[-66.70691930599992,66.38820380600015],[-66.52545871199993,66.34340968100014],[-66.53488654599988,66.23647167700005],[-66.27988153599989,66.23841424500006],[-66.13547290599996,66.12746615300017],[-65.97939473899993,66.10336973800014],[-65.68948850999993,66.1771451680001],[-65.57233432999993,66.24447707000013]]],[[[-74.26095042099996,68.06802901100014],[-74.2106587049999,68.14732069600007],[-74.31753026699994,68.18072778000015],[-74.48328744299988,68.06515371100011],[-74.72108320899997,68.07609078900015],[-74.77331979699994,67.97336999700013],[-74.59329056899998,67.82767680900014],[-74.28247598399997,67.76473061000013],[-73.98957319699986,67.78716009700014],[-73.49136521799988,67.75998737200007],[-73.35048932599994,67.82643604300017],[-73.43571113899998,67.98650043100014],[-73.57483172699983,68.01685650800016],[-73.8020094979999,67.99631470800011],[-74.08316957299985,68.06491012400011],[-74.26095042099996,68.06802901100014]]],[[[-86.40641473199992,68.16986965600006],[-86.43219749999997,68.24051501700006],[-86.62689517299998,68.3042858020001],[-86.85012566099988,68.18411876000005],[-86.95136173599997,68.07895740300017],[-86.8139237499999,67.97143662500008],[-86.9210974319999,67.93073212900015],[-86.77508572299996,67.77579881800006],[-86.52796283299995,67.73976494600004],[-86.42114932499987,67.79582974699997],[-86.33822793699994,67.95250256600008],[-86.40641473199992,68.16986965600006]]],[[[-75.59004744399994,68.3046733270001],[-75.94993475199988,68.33839649200019],[-76.06209647099996,68.29421817200006],[-76.27085311299999,68.33204769600013],[-76.61703799699995,68.26993698500013],[-76.95703314499991,68.09077374900016],[-77.20557096699997,67.86044674100015],[-77.2911320099999,67.72952817900011],[-77.20527905799997,67.53366439700011],[-77.22458138499991,67.44859566000008],[-76.99464944999994,67.24453562800016],[-76.68930772499994,67.21206680000006],[-76.21636440499998,67.25232645700004],[-75.91470354999996,67.24483967600008],[-75.56142187899997,67.30823334300015],[-75.18975189799994,67.4403647900001],[-75.04191351899993,67.61064774800019],[-75.05489170499999,67.82815098200007],[-75.14279649899999,67.97433300300008],[-75.04223730599995,68.04099415900004],[-75.01808912799999,68.1665926870001],[-75.12921827599996,68.2353087800002],[-75.59004744399994,68.3046733270001]]],[[[-79.02961368699988,68.18313258799998],[-78.82011529599998,68.27889461300003],[-78.95109595899999,68.35862889800018],[-79.15212823299993,68.36626209300016],[-79.20217539499998,68.24332951400015],[-79.02961368699988,68.18313258799998]]],[[[-74.06560604099997,68.34110889800007],[-74.2574518159999,68.4546589900001],[-74.37071552099997,68.38136869400012],[-74.1968551359999,68.25378887000016],[-74.06560604099997,68.34110889800007]]],[[[-110.70165329799988,68.4836491100001],[-110.787552985,68.55560179500014],[-111.0355558949999,68.51174907900014],[-110.92838213299996,68.46303235200014],[-110.70165329799988,68.4836491100001]]],[[[-78.4825846199999,68.57218568300004],[-78.70967165499991,68.61425523700012],[-78.94839085799998,68.53025341100016],[-78.80276080899995,68.44625720300007],[-78.6526579589999,68.49325271700008],[-78.65815226399991,68.5708199020001],[-78.4825846199999,68.57218568300004]]],[[[-74.50867497699988,68.56841770700004],[-74.79905812399994,68.67523425299999],[-74.82276298599999,68.56670641300019],[-74.50867497699988,68.56841770700004]]],[[[-74.81599297199995,68.32609105300014],[-74.81514694199996,68.51081677399998],[-74.94918569499993,68.5806301290001],[-75.00139722299991,68.67625691500007],[-75.2597082769999,68.73122139000009],[-75.3849768689999,68.63662321200019],[-75.41121619399996,68.54224324300009],[-75.24219154199989,68.44333787400006],[-74.81599297199995,68.32609105300014]]],[[[-101.67376530599995,68.67778886600007],[-101.71678818799995,68.78711698799998],[-102.00314131099992,68.83085622000004],[-102.09871105899998,68.76542632800016],[-102.33458978199991,68.69728308200013],[-101.81076358699994,68.56736925100017],[-101.81050360699993,68.66192953800004],[-101.67376530599995,68.67778886600007]]],[[[-89.92801950199998,68.666087618],[-89.77550413499995,68.76436154900006],[-90.02313097099994,68.77056379800013],[-89.92801950199998,68.666087618]]],[[[-105.49187567699988,68.69369470600003],[-105.43515768499998,68.73596476500006],[-105.77071357099999,68.88156621000002],[-106.23183760599989,68.91174559200005],[-106.58135429299995,68.85126390000016],[-107.28352661199989,68.70368418600003],[-107.95653655999985,68.63559421400015],[-108.3583712439999,68.60498936600004],[-108.58705481799996,68.40313619000017],[-108.73218846999993,68.34070844500008],[-108.71073812499998,68.23074866700006],[-108.46909717099993,68.30684011900013],[-108.4230867949999,68.18791628200006],[-107.87332871599989,68.16989585200008],[-107.71108614499991,68.2002906990001],[-107.88707224399991,68.27528678300013],[-107.80966274099995,68.34461715700019],[-107.47444394399986,68.3363387890002],[-107.60355915099996,68.55097756700013],[-107.435602529,68.63184738600006],[-107.04357634999997,68.68220162300008],[-106.34026121399995,68.84055048700003],[-105.91941727599993,68.85291087000019],[-105.67159537899983,68.78728737000006],[-105.49187567699988,68.69369470600003]]],[[[-114.27417014199989,68.22769554600018],[-113.99125689799996,68.24384453300007],[-114.04152004799994,68.29641350400016],[-113.88869045299992,68.40491196900007],[-114.03945820199993,68.43563790000013],[-114.18809208099998,68.56742284700016],[-114.41750230399992,68.62411919600015],[-114.53769664199996,68.72645077900017],[-114.75483795799994,68.74765120200004],[-114.81239137299997,68.81616032500011],[-115.08797122799996,68.85765160200003],[-115.60187799899995,68.98282035200003],[-116.123131431,68.89699450400008],[-115.937261235,68.88064226500006],[-115.42131836599992,68.71220390100018],[-115.28088906,68.64055294300016],[-115.80980374899997,68.6652896440001],[-115.97975583999988,68.64492448200014],[-116.00850693599995,68.52619305600018],[-115.84743039099999,68.47963212100018],[-115.67668833399989,68.53877915400011],[-115.39962762399995,68.52461253700005],[-115.1776412239999,68.408643756],[-114.89129991899989,68.29903093000019],[-114.68447551599996,68.27019187000019],[-114.51982424,68.31237341900004],[-114.27417014199989,68.22769554600018]]],[[[-100.21706281699994,68.81909921300007],[-100.1761324019999,68.93181215200019],[-100.37651354099995,69.05896430700005],[-100.59891255999997,69.01019889100019],[-100.6159354749999,68.78864145900013],[-100.40035184499999,68.74299951700004],[-100.21706281699994,68.81909921300007]]],[[[-99.99993608999989,68.96086873800004],[-100.05075479899995,69.1253492420002],[-100.24216780299997,69.05632584000017],[-100.2187112069999,69.00497342100005],[-99.99993608999989,68.96086873800004]]],[[[-90.46293480399999,69.30040656700004],[-90.69774230599995,69.37760020200005],[-90.78035216699993,69.28857540500007],[-90.54862423899988,69.20896719500013],[-90.46293480399999,69.30040656700004]]],[[[-78.30857544099996,69.24254495000008],[-78.21042434299994,69.30057466300008],[-78.30645890199997,69.3848478180002],[-78.47657823599997,69.39888772000012],[-78.71029216099993,69.34450955200003],[-78.96278469999999,69.1086653820002],[-79.18648257699988,69.09576213400015],[-79.38421998299998,68.92556537400009],[-79.23454925299995,68.84201194200006],[-78.8248517909999,68.91656108100017],[-78.54977640599998,69.08999645500012],[-78.46862487899995,69.22621471500008],[-78.30857544099996,69.24254495000008]]],[[[-90.27311057099996,69.25729507800014],[-90.14449262199997,69.35806771000006],[-90.18242558499998,69.444475706],[-90.35249891999996,69.43292258300005],[-90.49375962799996,69.34691365100008],[-90.27311057099996,69.25729507800014]]],[[[-76.94174187799996,69.40459465900011],[-77.11479739899994,69.45398586900006],[-77.33995844299994,69.41469676000008],[-77.36840010899988,69.28694859000018],[-77.27305170199998,69.15851195900007],[-76.95434045499997,69.15584067100019],[-76.91650265899983,69.22219764200014],[-76.68859180599992,69.3200304390001],[-76.63757627499996,69.39455952400016],[-76.94174187799996,69.40459465900011]]],[[[-96.61650766399998,69.56755638300018],[-96.55095475199994,69.49365426600014],[-96.13327543699995,69.35932156600006],[-96.06163890299996,69.46435642200004],[-96.15350677799995,69.59128728500008],[-96.61650766399998,69.56755638300018]]],[[[-95.64525577799992,69.61645603200003],[-95.8840557339999,69.61408606400005],[-95.95144319699995,69.51473137400006],[-95.86420277199994,69.36521523400012],[-95.5486588149999,69.33179069700009],[-95.37593100599992,69.42249949900008],[-95.34590926799996,69.54107838000004],[-95.64525577799992,69.61645603200003]]],[[[-77.9381618349999,69.64773586600018],[-78.17297871599993,69.75861114300011],[-78.3047210179999,69.66765661600016],[-78.56366693599983,69.63693494400019],[-78.86029841399994,69.48747105200016],[-78.80992488499987,69.46315015000005],[-78.07139924899997,69.5856894640001],[-77.9381618349999,69.64773586600018]]],[[[-79.35352338099995,69.7387455550001],[-79.44171945699998,69.80533134900008],[-79.66369112799998,69.82100702800005],[-79.96407673699991,69.73326080600009],[-80.19466967599993,69.80990271400003],[-80.40633705299985,69.80722344100013],[-80.71156108799988,69.74922671800005],[-80.68867764899994,69.6762450110001],[-80.4673175669999,69.67705075300017],[-80.00322475199994,69.50016122300019],[-79.92252964699998,69.61542257000013],[-79.64215265299998,69.6171670510002],[-79.36456699499996,69.69164478300013],[-79.35352338099995,69.7387455550001]]],[[[-91.4116553799999,69.85578185700012],[-91.73713408299994,69.79972744800011],[-91.52021798699991,69.73161026600013],[-91.4116553799999,69.85578185700012]]],[[[-97.70184652199998,69.85716811100008],[-97.95830408699993,69.91323836700019],[-98.07629220499996,69.823905797],[-98.21258834899999,69.80018724300004],[-98.36544113599996,69.5819549690001],[-98.53967989199998,69.60049654099998],[-98.59304652999998,69.45305437800016],[-98.40192659599995,69.37678734700006],[-98.67955770599991,69.28407785100006],[-98.73515073599992,69.19267888000007],[-99.03900597199998,69.148399209],[-99.42268884299995,69.15935226900012],[-99.55081463199991,69.02420109700006],[-99.38876723699991,68.89849406800016],[-99.16874164199999,68.86583104300007],[-98.98892729599999,68.9690589270001],[-98.80392912699995,68.9169749450001],[-98.84074775899995,68.8524044770001],[-98.68009144799993,68.79885276100015],[-98.28491495899993,68.77796874000018],[-98.10974877199999,68.69058396400004],[-97.72832700699996,68.6712289890001],[-97.59613589899999,68.59393369300005],[-97.1320171569999,68.52140332700009],[-96.97661844799995,68.54867635200009],[-96.55270037999998,68.46028317300011],[-96.26579041899998,68.48693741200003],[-95.76101324899997,68.73810199899998],[-95.58742291199997,68.77487196600009],[-95.38973070999998,68.76728603999999],[-95.15908985999988,68.868848743],[-95.30917416299991,68.91389319800015],[-95.51834681999998,68.84701920700002],[-95.8179034289999,68.90352741200007],[-95.81710412599995,68.98166814500019],[-95.94111496999989,69.07520490400009],[-95.9110573239999,69.13483680800005],[-96.27292564499999,69.35594580500009],[-96.85218939199996,69.5030979600001],[-97.08353161199983,69.59650401900007],[-97.08308755899986,69.64893511700018],[-97.31579977699982,69.70731415300003],[-97.43938384199998,69.78396756000018],[-97.70184652199998,69.85716811100008]]],[[[-86.96343964399989,70.12072650500005],[-87.35823799799988,70.10705053400011],[-87.22684511999995,70.03041187300016],[-86.73468539999993,69.98092786600006],[-86.44057067299991,70.0203581780001],[-86.55662008999997,70.1119054580002],[-86.96343964399989,70.12072650500005]]],[[[-124.51395155299997,69.41914410200019],[-124.04684029999999,69.67411533900014],[-124.4987745709999,69.72341306600009],[-124.34818149699998,70.05408417600012],[-124.55362380899993,70.20003521000012],[-124.71879199099988,70.17758070500003],[-124.70451884099998,70.06639177900018],[-124.97194884699996,70.0392833140001],[-124.79091395499995,69.96312335500016],[-124.954746592,69.90733663200012],[-125.05527807199991,69.7313968860002],[-125.38258803499997,69.68581581200004],[-125.45688596599996,69.59975955300013],[-125.25724789599991,69.58108468800015],[-125.31753230699996,69.49592887900013],[-125.15488580699991,69.3843834170001],[-124.56533997599996,69.30506195599997],[-124.51395155299997,69.41914410200019]]],[[[-100.60604614299984,70.7126435030001],[-100.66146734999984,70.59412275900019],[-100.4868691069999,70.51894579900011],[-100.27001201799999,70.49034423400019],[-100.32893051499997,70.6289292100002],[-100.60604614299984,70.7126435030001]]],[[[-91.62812189699997,63.618032852000056],[-91.54334487899996,63.725682101000075],[-91.39009579499998,63.65203718100014],[-91.06161717399988,63.61395494700008],[-90.91706104699989,63.540668572000016],[-90.74634088999994,63.56207128900013],[-90.5761381719999,63.63373253200001],[-90.29322079599996,63.61290828400007],[-90.19438640499993,63.66148592100012],[-90.08495385899988,63.78065019200005],[-89.97556382,63.803369696000175],[-90.1935340039999,63.958769640000014],[-89.8351360339999,64.02310855300016],[-89.97155724599986,64.158859867],[-89.79872139999992,64.13725224199999],[-89.71094528899994,64.0325008530001],[-89.55633500699992,64.06974857000012],[-89.25235416399988,64.00992657800009],[-89.08833278099996,64.02077468900012],[-88.86463291899997,63.99132680400015],[-88.56983459899993,64.01146784200006],[-88.25736497499997,64.13003035500009],[-88.11114047199999,64.14076010999997],[-88.04842693499995,64.24622136200009],[-87.84477603699997,64.38036365800019],[-87.80009491499999,64.511891494],[-87.55280770999997,64.57090927800016],[-87.49181608099997,64.68923783800011],[-87.31809261099994,64.7468764800002],[-87.23707332599997,64.87635794200014],[-86.90079560899994,65.14162645300013],[-87.00528468899995,65.23819796200019],[-87.55612166399999,65.29327961100017],[-88.30786964499998,65.28091063200003],[-88.65543251699984,65.31546151700019],[-89.04118353899997,65.32553500300003],[-89.15859191899995,65.4430199580001],[-89.34223417899995,65.49904120900015],[-89.43810480899992,65.60462797700018],[-89.62523141899993,65.69086917700014],[-90.00727427399994,65.81500515300013],[-90.60758622899993,65.91251990700016],[-90.21021480099995,65.93463044400005],[-89.73255165699999,65.82668109000014],[-89.67423802699994,65.94873975100012],[-89.13320490699994,65.77140538000003],[-89.01820634799998,65.70494495200012],[-88.75218433299995,65.67888942200005],[-88.7423079209999,65.63204603800006],[-88.41805129099998,65.54354678100003],[-88.05098459999994,65.35750093000013],[-87.84103343799995,65.32148751500011],[-87.33620061699992,65.32072473700009],[-87.09340658899998,65.39555372500013],[-87.06440292499997,65.4828770740001],[-86.79714333299995,65.56418987500007],[-86.43094227299986,65.74075236300013],[-86.41231196299998,65.8685471600001],[-86.17491866399996,65.97875545400018],[-85.98448024399994,66.02223996600009],[-85.93133204099996,66.20103356600004],[-86.32067454499997,66.28936023200015],[-86.62984981099993,66.32560671400017],[-86.77091294799999,66.45026009300005],[-86.73675829999996,66.521383416],[-86.51208091399991,66.55003736900005],[-86.04372695399996,66.49432571300008],[-85.76940276199997,66.51193842000015],[-85.42756268499994,66.58630280800014],[-85.29673579199994,66.47706701100009],[-85.24020447199996,66.27654130200017],[-85.07740210599997,66.29420623900006],[-84.61590420999994,66.22570039000016],[-84.44611436399998,66.1623230720001],[-84.35773367199988,66.221459901],[-84.60868605799993,66.33282029600014],[-84.43253574699992,66.38346154600015],[-84.30495480999991,66.27151304100005],[-83.88156465399999,66.20082672200016],[-83.65925649999997,66.21957467400011],[-83.80515204299991,66.31441567500013],[-83.88029573599982,66.45489512300003],[-84.15105618299992,66.60093194400014],[-84.15122114999991,66.6942528840001],[-84.33702913999997,66.70633628600012],[-84.41447398999986,66.78497401900012],[-84.55539734299998,66.82656924100019],[-84.59572609499992,66.94041341400015],[-84.72086278599994,66.95474986100015],[-85.07522606899988,66.84269661100018],[-85.16897546799993,66.8800578850001],[-85.00611096199998,66.96252405900003],[-84.59114148999993,66.97814241900016],[-84.40694484299996,66.90838566100018],[-84.42869651599989,66.80657909700017],[-84.23061314699987,66.78461577300016],[-84.27102671199998,66.71716370399997],[-83.98012372599999,66.69090473300008],[-83.93403637799986,66.58412978600006],[-83.64756755599996,66.5258617520002],[-83.4905669829999,66.40907742700017],[-83.33611032899984,66.3494443350001],[-82.9929563579999,66.48563087999997],[-82.98694134299996,66.54917375500014],[-82.5668968459999,66.57046142800016],[-82.52728413699998,66.63635041400005],[-82.15435428699993,66.75851512500009],[-81.96105881399995,66.92072651400014],[-81.80202588799995,67.00034061700012],[-81.68457634799995,66.97267723400012],[-81.46328380699993,67.01465592900007],[-81.35296973899995,67.16403880400009],[-81.33974743099998,67.26909271900013],[-81.1912140739999,67.46483607700009],[-81.37271034899993,67.601556],[-82.07585178699992,67.91046792300017],[-82.15921695299994,68.00445047800002],[-82.09693473899995,68.10459233400019],[-82.31529589399992,68.16716448000005],[-82.19843897699997,68.25177404200008],[-82.35617747899994,68.27325943000017],[-82.34286526799991,68.36556646600008],[-82.47930880099995,68.46839873800002],[-82.21463881099999,68.45792294800015],[-82.04628347899995,68.5090093290001],[-81.9220212649999,68.42275154300017],[-81.75697237399999,68.51416139700007],[-81.53692529999995,68.54017543900005],[-81.21131915499996,68.65070302000004],[-81.19825791099998,68.78166768200015],[-81.29562910299995,68.85964393800003],[-81.53497589099987,68.85780069000009],[-81.72981615999998,68.94440403400006],[-81.54264149099998,68.99209352500014],[-81.45758350099999,69.06087953399998],[-81.28305532999991,69.09463773700014],[-81.3006201629999,69.1933417090001],[-81.61905621099999,69.25670800500018],[-81.98053912099988,69.27267283300017],[-82.14322171899994,69.31803529100006],[-82.1919580579999,69.39673461600017],[-82.43949772499997,69.49664760600018],[-82.60810897299984,69.61867926800016],[-82.53158166499992,69.6921084870001],[-83.26054300899995,69.70887010600012],[-83.54150987199989,69.68896579900013],[-83.9348712069999,69.7511440290001],[-84.08666299899994,69.82011317600018],[-84.53113582499998,69.86933835100018],[-84.84046796199993,69.8397801800001],[-85.06384237999998,69.78334698300006],[-85.36075131399997,69.85820401400008],[-85.56246898699993,69.82371203700018],[-85.39494285599994,69.72905737100018],[-85.51692023599986,69.65016680400004],[-85.38585692399994,69.58894621400009],[-85.507209016,69.52463936400005],[-85.41390758299997,69.3304556550001],[-85.4771657679999,69.31262363600018],[-85.29215604599989,69.1567172390001],[-84.97287747099995,69.14676834000016],[-84.91591529099998,69.09455773800016],[-85.05254943499989,68.96669805200008],[-84.77348919999997,68.74277718000019],[-85.51159356799991,68.78867041600012],[-85.63522140899988,68.72406470700008],[-85.71495478399993,68.56615785400004],[-85.68541700099996,68.40664727200004],[-85.87860958699997,68.18745553800011],[-85.87197161199998,68.04651606500005],[-86.10133212499994,67.96561861600014],[-86.39166823899996,67.78729224500006],[-86.50139176399995,67.67377804600005],[-86.42222489499994,67.59634104600002],[-86.51772011899993,67.44552240600018],[-86.65982796899993,67.37881555400014],[-86.84337961799991,67.41525411700013],[-86.95634729999989,67.3478289430002],[-86.96041577199998,67.25755533100016],[-87.22483093899984,67.19069540800012],[-87.34031432399996,67.24040917600013],[-87.4667168019999,67.37302952300018],[-87.54204081499995,67.3831099090001],[-87.94377696099997,67.62920119199998],[-88.11649479599998,67.68185706800006],[-88.29539424599989,67.89244036900016],[-88.34965124699994,68.03400351500005],[-88.25542301699988,68.12393559900005],[-88.36511641099992,68.25872801800006],[-88.22224674199998,68.35846108800013],[-88.09971316799994,68.24984200500018],[-87.82310477099986,68.25964456700012],[-87.76621555999998,68.38768230900018],[-87.9262437779999,68.59697805100006],[-87.92293185999989,68.73642595600012],[-88.05225977499992,68.84481985000002],[-88.29069882599998,68.95374455500007],[-88.64591267399999,69.05275328400018],[-88.86647555999991,69.16081406400002],[-88.92256460099992,69.23231913700016],[-89.09421115699996,69.28276074900015],[-89.37028113599996,69.23202851999997],[-89.46628272899989,69.12489083000014],[-89.6285854869999,69.0629028530002],[-89.74446619399993,68.96109089500004],[-89.66875133899993,68.81842834900016],[-89.72924607999988,68.69770412200012],[-89.92811744099998,68.62909953100018],[-89.82812130199994,68.54169336100006],[-89.97441397899996,68.39057888700006],[-90.14497519399998,68.31596896000008],[-90.59310050699997,68.45935403300012],[-90.46314965,68.53247855000012],[-90.533948319,68.63579330800007],[-90.42736280399998,68.88735643200005],[-90.59130074199993,69.0054950660001],[-90.63159634399995,69.08621883300003],[-91.12520108999996,69.264364],[-90.80165469599996,69.26484399700007],[-90.81604300099991,69.34638067800012],[-90.42733289199998,69.5029383280002],[-90.67450612699992,69.55254182000016],[-90.7514918359999,69.5009696030001],[-91.13014697199992,69.54974151400012],[-91.25878439399986,69.66157946700014],[-91.46099202999989,69.66925033800004],[-91.55465176199988,69.59760413100014],[-91.804185868,69.50041556600019],[-92.08784678999984,69.56316474000016],[-92.52991076899997,69.71973501200006],[-92.7369823869999,69.73880690500005],[-92.21576208,69.90149082500005],[-91.95269881999997,70.03759767000008],[-92.14583122599998,70.1048154660001],[-92.49379684099995,70.09817402300013],[-92.40168190599996,70.19011914400016],[-92.2232175989999,70.21027192700006],[-91.93209040199997,70.13018568800015],[-91.52090200299995,70.15536771600006],[-91.67348701499998,70.26433757200016],[-91.72647142899996,70.3783611560001],[-91.99511905999987,70.29702144200013],[-91.99738020899997,70.41273838400019],[-92.23022720199998,70.50844684000015],[-92.19921959899995,70.6283957340001],[-92.60290343599996,70.69374145000012],[-92.67305157299995,70.78543595000014],[-92.94519222699995,70.84529546700003],[-92.84129102399999,71.04914549500012],[-92.83714592499996,71.17276002600005],[-92.96681215199993,71.34456881099999],[-93.11744397099989,71.3874245360002],[-93.18336016799998,71.46934349100007],[-93.63132559199994,71.59536723800005],[-93.90754448099989,71.7518485390001],[-94.22534913699985,71.77823892500015],[-94.45358279999988,71.83174722100006],[-94.3663864589999,71.93970689500009],[-94.48096183899986,71.99996053000007],[-95.15590019099994,71.96104518600004],[-95.25400165799982,71.74270671800019],[-95.47517090699995,71.73744968300014],[-95.89521226799991,71.61102583100006],[-95.81898376699996,71.51870176300014],[-95.50734948099995,71.50016223800014],[-95.44895838999997,71.36829728800018],[-95.52948850199994,71.30703268700006],[-95.78620286299997,71.3414636230001],[-95.89754310099994,71.41864668700009],[-96.17966362599992,71.3999013340001],[-96.26249421599994,71.30503185700002],[-96.47199250799991,71.27825394100006],[-96.38815273999995,71.18209057000007],[-96.53346307699996,71.14183569700009],[-96.40720946999994,71.08094130700016],[-96.59717401199993,70.84114387200015],[-96.36122197099996,70.68810594600012],[-96.1663234859999,70.62472730200017],[-96.13526662199996,70.54126066000003],[-96.52374666799994,70.34273916100017],[-96.54872312799995,70.25008738100018],[-96.45453949599994,70.08683649400007],[-96.22010706299994,69.96570679900003],[-96.18239062599997,69.86970552700018],[-95.91795402099996,69.7986861600001],[-95.69552189799998,69.79753959800013],[-95.39063550499998,69.69105031700013],[-94.91156645599995,69.58658095500004],[-94.70932318599989,69.60925930100012],[-94.61759661699989,69.68461468200013],[-94.27661385,69.44721980800006],[-93.88938056799998,69.44322028400006],[-93.81335647799989,69.49829534899999],[-93.55641748599999,69.5369824030002],[-93.43843845999999,69.4781907630001],[-93.5316047199999,69.37641909700011],[-93.46576628799988,69.32390220899998],[-93.812118936,69.17734428500006],[-93.85266711499997,69.27050626000005],[-93.64790708099997,69.36185687200003],[-94.19488476099997,69.34235252700017],[-94.30194828299983,69.17315579600017],[-94.07119439299998,69.13990335000005],[-94.13556497899998,69.06189456200013],[-94.58220822499999,68.96370112700004],[-94.51860881099992,68.89683235200016],[-94.59056498899997,68.77383146000017],[-94.40858257699989,68.73096397000012],[-94.07214975699998,68.76644824500005],[-93.90411664599998,68.83934679599997],[-94.05116152899996,68.90500815500013],[-93.83334210599998,69.01547656600019],[-93.63912036099998,68.98013757600006],[-93.56791286599997,68.84501936600003],[-93.73254649399985,68.62470921900018],[-93.470060215,68.58277467300007],[-93.78731733399997,68.49552460200005],[-93.98016701499989,68.46750260500005],[-94.18597171099992,68.37715655400012],[-94.15618199099998,68.29107578000009],[-93.40966073999994,68.4058340040001],[-93.45722189799994,68.2115144390001],[-93.75403643399989,68.10673369300014],[-93.57801068799989,67.87928301200014],[-93.71089893599998,67.81132307900009],[-94.0191493989999,67.72816156400006],[-94.14019798499999,67.6288897300002],[-94.41196425499999,67.6085392390001],[-94.5531458129999,67.47070364300009],[-94.9195096499999,67.42546693000003],[-95.10164579699995,67.31127753800007],[-95.21890534799991,67.3192646600001],[-95.14491688399994,67.29807744900006],[-95.35135555199992,67.1571433680001],[-95.21381739399993,67.096791393],[-95.26300602099991,66.99103346300006],[-95.41782330599989,66.83872138400017],[-95.47930889699995,66.70048922300015],[-95.73260790199998,66.75747903500013],[-95.79293057699994,66.61362415000008],[-96.08633472299988,66.51014266600004],[-96.03948206699988,66.48319307300017],[-96.63081413599986,66.32886072100018],[-96.74705455499998,66.32398523300003],[-96.838172537,66.24272592500012],[-97.13995343999994,66.18185350099998],[-97.45806209699998,65.86317031800019],[-97.57430215099998,65.79034839000008],[-97.4534753399999,65.71084410300017],[-96.53283603899996,65.6823924860002],[-96.27615430499998,65.6412749210001],[-96.21382943399993,65.52073228100005],[-96.10157028999998,65.41998158600006],[-96.30490067699998,65.32870375200008],[-96.72523496599996,65.20135290000019],[-96.66117081699997,65.12891265800005],[-96.97795144699995,65.0069742770001],[-96.73718977599992,64.93057893500014],[-96.68065622099982,64.77529702300006],[-96.30836492799995,64.58760000900008],[-96.40785940099994,64.48027682200006],[-96.39091486599995,64.42765764500007],[-96.22067228599991,64.32668129600012],[-96.0525437309999,64.3200449740001],[-96.17967221899994,64.21426415700012],[-95.84030167299989,64.04218474200013],[-95.53152465999995,64.04328845300006],[-94.90805797899998,64.11856716900002],[-94.74233234399992,64.04323465200014],[-94.52880065299996,64.01876787000009],[-94.19976014999992,63.91893658000009],[-93.96453882699996,63.9151060050001],[-93.76341994299992,63.80747959300015],[-93.89160120699995,63.692629393000175],[-93.82815555899992,63.59876463500018],[-93.69267263599988,63.514197024],[-93.3270418919999,63.49733248300004],[-93.17821496499994,63.53659633500013],[-92.87995166199994,63.493481833000146],[-92.74157716499991,63.392416506000075],[-92.4317934959999,63.34340813100005],[-92.211700109,63.41696266200012],[-92.10354618799994,63.56041179600004],[-92.23122416399997,63.58037406400007],[-91.92186653999994,63.70205493800012],[-91.7165725729999,63.682630521000135],[-91.62812189699997,63.618032852000056]]],[[[-86.52137165799991,71.04330307800018],[-86.28597457799992,71.07154942200015],[-85.96690787299991,71.17943318800008],[-85.67917602099999,71.22011662900013],[-85.36882500999997,71.20748212600006],[-85.1647760059999,71.285575306],[-84.83042824899997,71.27888632600008],[-84.9019571899999,71.42881276900016],[-85.17288078499996,71.45809907100016],[-85.43873478699999,71.52092204700017],[-85.91113977499998,71.73464402400009],[-86.09104834999994,71.79462734700007],[-86.38773247499995,72.01555368500016],[-86.45925203699983,71.9704439410001],[-86.31093457699995,71.85251179900001],[-86.2707149929999,71.66721053400016],[-85.72746828299995,71.57536033400004],[-85.60802514599993,71.49455852200015],[-85.74516933699994,71.44976329600013],[-85.60032819799994,71.37498824300019],[-85.77358800499997,71.25388784100016],[-86.26884465099994,71.25577531800013],[-86.5291058069999,71.19819807300007],[-86.52137165799991,71.04330307800018]]],[[[-66.8624654969999,66.5990970950001],[-67.41405807099983,66.7377979850001],[-67.90697474599995,66.90960627400005],[-67.74817378899996,66.96023682800006],[-67.84403539499988,67.03432815700006],[-68.47791411699995,67.03497109000006],[-69.05344112699993,67.12142373900008],[-69.15185624199995,67.12027624000007],[-69.42910248999993,67.20429072900015],[-69.46056470799988,67.32815559400018],[-69.56300100899989,67.35406977800005],[-69.78134778899982,67.28241197000006],[-70.22637564199994,67.3666496890001],[-70.19351788199998,67.51732998900007],[-70.58067542899988,67.63118420300003],[-70.77669601999992,67.72414443200006],[-71.23655046199997,67.77829555000005],[-71.44694063599997,67.91289920800017],[-71.66873375899985,67.97366282400014],[-71.87183311299992,67.97934049000008],[-72.07175605199996,68.09714347900018],[-72.17691730999996,68.25463813300013],[-72.08109393399991,68.3324520650001],[-72.01224183899996,68.52612464400005],[-72.3026187239999,68.4493433880001],[-72.56709563099997,68.70371029700016],[-72.88166998899999,68.72189314100018],[-73.02994946399991,68.78557826500014],[-73.20193294699993,68.92035105100001],[-73.59061506099994,68.99882459200012],[-73.81195952699994,69.15860571200011],[-74.14188249399996,69.15606864100005],[-74.21203239299996,69.24418918200007],[-73.90779822999991,69.28970989800001],[-73.84334555199996,69.34803487500011],[-74.08142253999989,69.36734937700004],[-74.24133244899997,69.30252207900008],[-74.4779418309999,69.30760380300006],[-74.69737251699996,69.27202547500008],[-74.8162339299999,69.332340848],[-74.98025789299993,69.49672389800008],[-74.86784480199992,69.66052775000003],[-75.26215639399993,69.59138052300017],[-75.20343390199992,69.68944942900004],[-75.01578208699988,69.738062706],[-74.8073812909999,69.854705271],[-75.16319683499995,70.12786490800016],[-75.42798428999993,70.2031501240001],[-75.70617861599999,70.15086997900016],[-75.76355946999996,70.08022132400004],[-76.01165203199997,70.00932883600007],[-76.2527987979999,70.04504497200008],[-76.6048065999999,70.01614111600009],[-76.79427753799996,70.03200083500019],[-76.86688773499992,70.09301286000004],[-76.28044695999995,70.27273029300011],[-76.21295447099999,70.3392991290001],[-76.46143049699998,70.43153772700003],[-75.92123332699992,70.51718236800014],[-76.22100679699986,70.53832392000004],[-76.33192774299994,70.49862327400001],[-76.75914344899996,70.4705776030001],[-76.64644571199995,70.57151140000008],[-76.46786577899996,70.62599855800016],[-76.66695003199993,70.68748085900017],[-76.71616486499988,70.76087128200015],[-76.48130941199997,70.7983911840002],[-76.58529818699998,70.91425911600015],[-77.03443424099999,71.06637231300016],[-77.608679839,71.114220176],[-77.91442725399997,71.11626661400004],[-78.38242281299989,71.16673469000011],[-78.52707865099995,71.24515364300015],[-78.84840330499998,71.27397270400013],[-78.90276497899998,71.35429225000013],[-79.25930227199996,71.3145720980001],[-79.59197171099999,71.31100573100014],[-79.9937833759999,71.35019446800015],[-80.87927119799991,71.48302670300018],[-81.05513818599997,71.63000267700005],[-81.13559133299992,71.78474925300003],[-81.67707736999995,71.87495411000003],[-81.70878630999988,72.04735614900005],[-81.66563427399996,72.13891467000008],[-81.8713223009999,72.20176706200004],[-82.65297712099994,72.05599826399998],[-83.04253955399992,72.06531023300016],[-83.42557453399996,72.12781790200012],[-83.72663156399994,72.20888320700004],[-84.17774129299994,72.41903991700008],[-84.55441165799988,72.46069569800017],[-84.77076013299995,72.51612018900005],[-85.56757849099995,72.51727013200008],[-85.51459176599985,72.46414565500004],[-85.1211227359999,72.38451975600003],[-84.77355929099997,72.46857468300004],[-84.7919897239999,72.34205244800006],[-84.97030328199986,72.25110344500018],[-85.47305385399989,72.26906463900019],[-85.42130665499985,72.14307456199998],[-85.76781100899996,71.96636340100014],[-85.53710276099997,71.90444610999998],[-85.51152034699999,71.79876510600002],[-85.31782379299995,71.69949780800016],[-84.96741986099994,71.65865958800015],[-84.60771346699994,71.68121401000008],[-84.64418788599988,71.594470999],[-84.53102088699995,71.55188005900015],[-84.56193923699993,71.4461423890001],[-84.73856556099997,71.41515662600005],[-84.79504913899996,71.18494734800015],[-84.76271975299983,70.94040815800014],[-84.92941033599999,70.92935472500011],[-84.92679500599985,71.07471944900016],[-84.82949272299999,71.16200940200014],[-85.04299074699992,71.1988130800001],[-85.7393379969999,71.13380309300004],[-86.23938546199992,71.00012073900012],[-86.74960770499996,70.97431806100019],[-86.69822976099994,71.03048411200018],[-87.27310302499995,71.0593527420001],[-87.69802967099997,71.1636075190001],[-87.80977468199995,71.2895212950001],[-88.42222562099988,71.26690065600013],[-88.59957110099992,71.32359370300003],[-89.00559945399993,71.35595164900019],[-89.49829140699995,71.42104867700004],[-89.72080936299994,71.53435750900019],[-89.60584296299987,71.63754310900009],[-89.67035586999992,71.77054979500008],[-89.59676323499991,71.86888098100013],[-89.84421451299994,71.9553568820001],[-89.83110780999993,72.03773514700015],[-89.66708879699996,72.11511011200008],[-89.95804245999994,72.03041953900004],[-90.0888453629999,71.92069132700004],[-89.80206828899998,71.7710781290001],[-90.02036187399995,71.60353729000013],[-89.88520274699988,71.36642590400004],[-89.64541893999996,71.31769463700005],[-89.12677202699996,71.29911007200008],[-88.67173575599998,71.25474143100013],[-88.07003302499993,71.22672415500011],[-87.39135524999989,71.07761040800017],[-87.2714527149999,71.01423260400003],[-87.35529622399991,70.95712527800009],[-87.97580225399986,70.94084070900016],[-88.30904299599996,70.96231876100018],[-88.35003231499985,71.01353254800006],[-88.65130894099997,71.05425716400003],[-89.34222950499992,71.01913433300018],[-89.19432296799994,70.94853075700013],[-89.41722626299992,70.91175315200013],[-89.31956976599997,70.80597526100001],[-89.06742320899997,70.71388518600008],[-88.87110853599995,70.54645949400015],[-88.66431936399988,70.46880275300015],[-88.23203897199988,70.42002418200013],[-87.86848137399994,70.33212602400016],[-87.49596617199995,70.33813458900005],[-86.99172484699989,70.29223713600004],[-86.69393411599998,70.33554881600003],[-86.26519867699989,70.12706427800015],[-85.83371334999998,70.0177570510001],[-85.34091698499986,70.0433848580002],[-85.30030715499993,70.11480411600007],[-84.93340333499992,70.07545941900008],[-84.64182684799994,70.01151229300012],[-83.56631370299988,69.96684813600007],[-83.08280700099994,70.0186104120001],[-82.62884284999996,69.89030347300007],[-82.19099504699989,69.8010946350002],[-82.03662944299998,69.88101433000003],[-81.84228130099984,69.88421384100013],[-81.58791919799984,69.9725604510001],[-81.14592372899989,69.83466883500006],[-80.87947924399992,69.7301780520001],[-80.73753462699995,69.77573688200005],[-81.11628780999996,69.94550703000016],[-81.36946728399994,70.09967539600007],[-80.54309617699994,70.0581984210001],[-80.30458562199993,69.99200319700014],[-80.1931736389999,70.02589746300004],[-79.89491942299998,69.98907051800006],[-79.69806378499993,69.86508765400009],[-79.39396867599993,69.90117630100013],[-78.80798749699989,69.90001533300017],[-78.65901106399991,69.97462973100005],[-78.74477093299998,70.17229633300013],[-78.93582510099998,70.32267719300006],[-79.22107668999996,70.31915168300003],[-79.34686667799997,70.376686425],[-79.56627389599993,70.39552416800018],[-79.4025452919999,70.49591875800007],[-79.15538326199993,70.42333839900016],[-79.05767047699999,70.47509330900016],[-78.78112751499998,70.44757279600009],[-78.40311108699996,70.2340169220002],[-77.86836554099995,70.266107821],[-77.64384866799998,70.17395332100011],[-77.68969270899998,70.00989580100014],[-77.68140603899991,69.82863342700006],[-77.49083793899996,69.78617537200006],[-77.30816934199993,69.83691214400017],[-76.89658427799998,69.81622762400002],[-76.94927404499998,69.71624423300017],[-77.1829955369999,69.64049992500003],[-76.72235522999995,69.56320137200015],[-76.32363230399994,69.40979663799999],[-76.18097329999995,69.42375236900017],[-75.73009078299998,69.30105308800012],[-75.59895226299989,69.24134163400015],[-75.59232726499994,69.08717538500014],[-75.75539260299996,69.08870831400003],[-75.95054045799998,69.01983430600012],[-76.35896876599992,69.05942422300012],[-76.59177763899999,69.03418067100012],[-76.63957722399988,68.93964548200012],[-76.50202055899996,68.86432160900006],[-76.65043531799995,68.75945020200004],[-76.56721576699994,68.67532860800009],[-76.40256927399992,68.68082574900006],[-76.05652074899996,68.76059329700018],[-75.94729582099995,68.8223798250001],[-75.31441409899986,68.93737187900007],[-75.13860970399998,68.88739288300013],[-74.71535683599996,68.938724111],[-74.69591989799994,68.85984859700017],[-74.89658569899996,68.80678248700008],[-74.52089041899995,68.66854688300003],[-74.37425461599997,68.54815466700018],[-73.98802131699995,68.49817544800015],[-73.88408884299997,68.5587994920001],[-74.15747114799996,68.73343742600014],[-73.90266752299993,68.71183899300019],[-73.7171863179999,68.65545086600014],[-73.72123932699998,68.53534794000007],[-73.90435239399989,68.4370791130001],[-73.85791677199995,68.34135200100019],[-73.65360579599991,68.2700394150001],[-73.27949320199997,68.28188346400015],[-73.10751249799989,68.22176153800018],[-72.90133386399992,68.05540966100017],[-72.92120403399997,67.95480680000014],[-72.83604547999994,67.85129571100003],[-72.72388491999993,67.85454763000007],[-72.57288376599996,67.76270866300013],[-72.64671698299998,67.67068374100012],[-72.48053018899998,67.5946608070002],[-72.36222800799993,67.3148720710002],[-72.1782681759999,67.27206157100011],[-72.33089668399998,67.1090480960001],[-72.63300716099991,67.07993881500005],[-72.81888355099994,67.00951799200016],[-72.85643093599998,66.92925727100015],[-73.06912556199995,66.72283826000017],[-73.28191394799995,66.66881298900006],[-73.53230914399984,66.50349154400004],[-73.70940975799994,66.45432274000018],[-73.98157309599998,66.32690128500008],[-74.35929603899996,66.21660309400005],[-74.45713395699988,66.1561646990001],[-74.41667085999995,66.07849765600014],[-73.99501686199994,65.83190340100015],[-73.72606104999994,65.76947342700015],[-73.51243527699995,65.49649234700013],[-73.68074606599993,65.44935579900005],[-73.74915639899996,65.50684166100007],[-74.13358399899994,65.53320271300015],[-74.30570149699992,65.46972085400006],[-74.34690562799989,65.40826320800005],[-74.52798433499999,65.32704721700009],[-74.75909106099994,65.38541299300005],[-75.05746693099991,65.37921231700005],[-75.15147321899991,65.25590625900014],[-75.27245163699996,65.25013571400007],[-75.90548695099994,65.32497954800016],[-76.00735879299998,65.25261048300013],[-76.65071494999995,65.39569761600006],[-77.10939089999988,65.41076680400005],[-77.26821800699997,65.47072745900016],[-77.43242945299988,65.45865396900018],[-77.51060337799998,65.30845142100014],[-77.32577638999999,65.17411061100012],[-77.64102051999998,65.13206967000013],[-77.93765655999994,65.04581340200014],[-78.14293663199999,64.94879529600018],[-78.06777374799998,64.85420234600019],[-78.17737913099995,64.75755613300015],[-78.19018197599996,64.56751190400007],[-77.97627226299994,64.47588308300004],[-78.02122696999993,64.42348595900006],[-77.6796325769999,64.31891216400015],[-77.14775833699997,64.28886912800004],[-76.8017429119999,64.20429696000008],[-76.69062757899997,64.30248092600004],[-76.30117560099995,64.27050727800008],[-76.32479229099994,64.35414067400012],[-76.13133934499996,64.36200289400017],[-75.79141660699997,64.40989091699998],[-75.79651052899999,64.6060313050001],[-75.30029396199996,64.48841010300004],[-74.72463158399995,64.37438709100013],[-74.61812855499994,64.4978594530001],[-74.47826577499995,64.5688444810001],[-74.15319664699996,64.57706436900003],[-74.02598170099998,64.43268622800002],[-73.93968177699998,64.48396915800004],[-73.46052537199995,64.61619642700009],[-73.38519258199995,64.56505602500016],[-73.68672383199998,64.55119246599997],[-73.61308448599993,64.49398904600008],[-73.64287858699998,64.31738093900003],[-73.37419338399997,64.36037658900017],[-73.37994178299988,64.27266970500006],[-73.2117512289999,64.28833545600008],[-72.88335216299998,64.12621624600013],[-72.95132736499988,64.05673808800009],[-72.72990423799996,63.99797962500003],[-72.60607591699994,63.87161086300006],[-72.37082594299989,63.81973596500012],[-72.26732837999992,63.73524607300004],[-72.14452328399994,63.74287879200017],[-71.86223935499999,63.66053709800008],[-71.82011894799996,63.75851430700004],[-71.52570253999994,63.61270410900016],[-71.26113891599988,63.53146194600015],[-71.4288480649999,63.50606836000014],[-71.61350891199993,63.41029825500016],[-71.76566040199998,63.3717199030001],[-71.74233795399982,63.240091222000046],[-71.60320118599998,63.128624335000154],[-71.39515195099995,63.04969499100008],[-70.80395729499992,62.89442581100002],[-70.51068326899997,62.87554224500008],[-70.15999223599994,62.738135762000184],[-69.94405295199988,62.784467366000115],[-69.74916541299996,62.729194746000076],[-69.52942988799998,62.76865645900011],[-69.57429835899984,62.64928882100014],[-69.2194062829999,62.44800310600016],[-69.05060249799988,62.39375152200006],[-68.8460058949999,62.37887158900014],[-68.60656667099988,62.26286260600017],[-67.8376650429999,62.1871028970001],[-67.6960658239999,62.15211392100019],[-67.54591930999993,62.17679546900007],[-67.23754724799994,62.07040904500019],[-66.87829921499991,62.034414254000126],[-66.61929484199993,61.97326694200018],[-66.56204976299995,61.934059738000144],[-66.27018541199993,61.859371859000134],[-65.94787737499996,61.87130494400009],[-65.94201349999997,61.92251612900009],[-66.07863157699995,62.057909306000056],[-66.03767568099994,62.15299152600005],[-66.21348485999994,62.34837471500015],[-66.53453100099995,62.55922319700005],[-66.83141244099988,62.66586493300008],[-66.92293475099996,62.610402204000025],[-66.6535022299999,62.42161314700007],[-66.6894456249999,62.3510661250001],[-66.43551794499996,62.2975077370001],[-66.19653569699994,62.130472996000094],[-66.31853418699995,62.11907856800002],[-66.82477732699994,62.242880676000084],[-66.88144903199986,62.29821971600012],[-67.15820107399992,62.34775303000015],[-66.92015889799995,62.42732265300015],[-67.05715876199991,62.49544718600015],[-67.14839229199998,62.443861831000106],[-67.49627663599995,62.39891985700018],[-67.58998009499993,62.460949870000036],[-67.73589557699995,62.45596278100015],[-67.76966196999996,62.536094394000145],[-68.02341414799992,62.57526885600009],[-68.05962947899997,62.67086561000008],[-68.28591986799995,62.59285207200014],[-68.29019892499997,62.72542072200008],[-68.4375927399999,62.764635659000135],[-68.45934647599995,62.851060903000075],[-68.71736161499996,62.86092116900005],[-69.03776587799996,62.93338764900005],[-69.04550800599998,63.0317239420001],[-69.15147290999994,63.07813127600008],[-69.09909615099991,63.229518784000106],[-69.18244795899994,63.23746298999998],[-69.26793529599996,63.12107566800006],[-69.23740328299988,63.01786847800014],[-69.4367601319999,63.06420024900018],[-69.56415691499996,63.25287808100012],[-69.48443476199998,63.30332777300009],[-69.59476429399996,63.391822248000096],[-69.84527446599986,63.39432314500016],[-69.97381464499983,63.452420576000065],[-70.04883584599997,63.61379255600008],[-70.39122892199993,63.75839546499998],[-70.54734813799996,63.78115921699998],[-70.63552511599994,63.649797672000034],[-70.7266481979999,63.58745471300017],[-70.79516429099988,63.456100053000114],[-70.76572981899994,63.39652775000002],[-70.89684437099993,63.345903361000126],[-71.19907205399988,63.393999018000045],[-71.18438564699994,63.47329213900008],[-71.07290802899996,63.638975746000085],[-71.27270503199992,63.700333773000125],[-71.4062788299999,63.78951451800003],[-71.78108266799995,63.90795959500019],[-71.72502933099997,63.97805340000002],[-71.92717540999996,64.04650240200016],[-72.16458030199988,64.09266154100015],[-72.36423411699991,64.25138876500012],[-72.5304032119999,64.28565198400014],[-72.71279528799994,64.24819429500013],[-72.81980000299995,64.31546141000007],[-72.83130738999995,64.42275184900006],[-73.01206964799997,64.50096233500017],[-73.06534899299993,64.57537461500004],[-72.94198604999997,64.7887125040001],[-72.30781535499989,64.60104966400013],[-72.27343480699989,64.51751968000008],[-72.05654195199992,64.45911223500013],[-71.70298742099999,64.44277340700006],[-71.28928092799998,64.32702315200015],[-70.80227765199993,64.14030878100004],[-70.58541096399995,64.02433670800008],[-70.47522743799993,64.01024801300008],[-70.15067893299994,63.87809697900008],[-70.0865773619999,63.96168154700018],[-69.82795490399991,63.881372099000146],[-69.75175619899994,63.76822176200005],[-69.64176215399988,63.77905230300013],[-69.36617260199995,63.68898157400008],[-69.00861534299997,63.53428266600014],[-68.50898719299994,63.37557490700004],[-68.54311311399994,63.33118477500017],[-68.36773094999995,63.27379649800014],[-68.21308133999992,63.149582714000076],[-68.04988332999994,63.10240770799999],[-68.02751318499998,63.02615174500011],[-67.85447797499995,63.019000163000044],[-67.84809241499983,62.91601418900012],[-67.62264960399995,62.94849228600003],[-67.45643512099986,63.00415497500012],[-67.60987513899994,63.092610201000184],[-67.76735756299996,63.09335026000019],[-67.87178725399997,63.143765446000145],[-68.09121962799998,63.16398412700016],[-68.42040368799991,63.40691307600008],[-68.74179073999989,63.55035126800004],[-68.80927704099986,63.63852395800018],[-68.96387859299995,63.74033928800003],[-68.43781672599988,63.72244947100012],[-68.38097967899989,63.66089092000004],[-68.08018314499998,63.60477577100016],[-67.82087570399995,63.469193217000054],[-67.77658076999995,63.408257568000124],[-67.61916418499993,63.421679414000096],[-67.78972471299994,63.585279992000096],[-67.63930090099996,63.64907048100014],[-67.49430609699982,63.48522151100019],[-67.10673814299997,63.28298378700009],[-67.00600946099996,63.24709110200013],[-66.68388792099995,63.05456456200005],[-66.51395930499996,63.09307096900011],[-66.35234477299997,63.00312232800002],[-65.86745139399989,62.974281401000155],[-65.71934275799998,62.927333724000164],[-65.58150485099998,62.818764277000184],[-65.3399355499999,62.818704974000184],[-65.30169852299991,62.67303826600005],[-65.19669968999995,62.56584934300014],[-64.96662189799997,62.61035557800011],[-64.94274239499993,62.72024260500018],[-65.1790723979999,62.90169895800011],[-65.06665801999998,62.944477357000096],[-64.83954382999991,62.865566847000196],[-64.59790176199988,62.89870305300008],[-64.7642088589999,62.95736759800002],[-64.75417794899994,63.12907813400011],[-64.8761030799999,63.23276083000013],[-65.0641957819999,63.560460737000085],[-64.85341530999995,63.550531388000195],[-64.76496150799994,63.36293682799999],[-64.62285288699996,63.23944962400003],[-64.5077212459999,63.25415647700004],[-64.45624738499993,63.44372135200007],[-64.51464738099992,63.59990534100007],[-64.4996726949999,63.67984648900017],[-64.65096868499995,63.74716997000013],[-64.88483908099983,63.768283015000065],[-64.95539135499996,63.80637299800014],[-64.78696949799985,63.9198321560001],[-64.62408084199996,63.96237802100006],[-64.6923270239999,64.01192949000006],[-65.06658763299993,64.00262626799997],[-65.0270887509999,64.05877380900006],[-65.25120441799993,64.17185022700016],[-65.31080737899998,64.28059191800014],[-65.05085214299993,64.40893723500017],[-65.06821650599994,64.47635958700005],[-65.20990164799997,64.53555830400012],[-65.69951120899992,64.48544955200015],[-65.70423495399996,64.57796726000004],[-65.56453600699996,64.64487978100016],[-65.53496711199995,64.71667379600018],[-65.68898325599997,64.84071062700002],[-65.95646190899998,64.86697180800013],[-65.87128037199989,64.75477718700012],[-66.34656575899993,64.7530438020001],[-66.3701567949999,64.64850321500006],[-66.36731793799993,64.46928514900003],[-65.95419963099994,64.28465375700006],[-65.87649768599994,64.07592526900004],[-65.67471047299995,64.09696498900001],[-65.41100913099984,64.03108416700013],[-65.28026395099994,63.927581788000055],[-65.54880634299997,63.89305932100012],[-65.33849241699994,63.837723773],[-65.47238389099994,63.787741757],[-65.26710285399997,63.659520943000075],[-65.13027253299992,63.62090981000006],[-65.20062093999991,63.50957537700015],[-65.52450564599997,63.56364899100009],[-65.47244145699989,63.429030651],[-65.6134042619999,63.347366875000034],[-65.7715687679999,63.40981681400001],[-65.81046437299995,63.31221397600018],[-65.66425246199998,63.296086861000106],[-65.64788879899999,63.16898244200013],[-65.94484532199982,63.17433308500006],[-65.90367223399994,63.25269275400012],[-66.03137259899995,63.334106841000164],[-66.50620855099993,63.30407771600005],[-66.72428024599992,63.31773468000006],[-67.09756451999982,63.52680274700003],[-67.26846770399999,63.56172015100003],[-67.47433677999999,63.80712065199998],[-67.71369332699993,63.85489906800012],[-67.89968805299992,63.93509943300006],[-68.14137268499991,63.9990586290001],[-68.12201729699996,64.10079858900014],[-68.33636119499994,64.09748391500017],[-68.4704295109999,64.19415811300007],[-68.69512766799988,64.27112764400005],[-68.88693056799997,64.27069150000005],[-69.45420244499991,64.30763674500008],[-69.53763395499988,64.51111033400002],[-69.67339542899992,64.56223657900011],[-70.01764888499997,64.60168968500005],[-70.13414063499994,64.662161874],[-70.26585574799998,64.88757115600015],[-70.20106066199997,64.9483849390001],[-70.4670614609999,65.21402755000014],[-70.64988209899997,65.29114242400016],[-70.70739789699991,65.36788313100004],[-70.6359918689999,65.47130176000013],[-70.72667530999996,65.57497655400005],[-70.87937976299997,65.61733084200006],[-70.7838020989999,65.679707839],[-70.52234058799996,65.6942904620002],[-70.42484663699997,65.74573954800007],[-70.16474761699993,65.80755877600018],[-70.12731511599992,65.84659938200008],[-69.88055970599993,65.86303334400003],[-69.71578806299993,65.92199111999997],[-69.51972705399999,65.83648000000017],[-69.38352226999984,65.91498688600007],[-69.21490048799996,65.93558302600019],[-69.23800794399989,65.99696291900005],[-69.01596171799997,66.03627588200004],[-68.86942419299999,66.14023349200005],[-68.62028775599998,66.17144289400005],[-68.47797854199996,66.15261275900019],[-68.4671276759999,66.03677757100007],[-68.28554706799991,65.84006270300006],[-68.37119518499998,65.73560138200003],[-68.12753107099996,65.58603877800016],[-68.14954881799997,65.46818720300013],[-68.07610848799999,65.3843546490001],[-68.34592277699988,65.30060684900013],[-68.26068687599991,65.1932536440001],[-68.09013921099995,65.14986600100013],[-68.22247519199993,65.054197654],[-67.98686463399997,64.91965139000007],[-67.86338050199998,65.02458255000016],[-67.3142829109999,65.01361994600012],[-67.22828924499998,64.8820910770001],[-66.97967872999988,64.78806963900013],[-66.89641098699997,64.69674498800009],[-66.56987189799992,64.73762401300013],[-66.4073958319999,64.67472828200005],[-66.43678227499987,64.7226714900001],[-66.19750444899995,64.78850937200019],[-66.11649741699995,64.86050929400011],[-66.46255082799996,64.92555539100016],[-66.44693981199998,64.97009376800014],[-66.66571881799996,65.03466564400009],[-66.74637191199992,65.00519988300005],[-66.91402944899994,65.21168123500007],[-67.11873463499995,65.21008596500008],[-67.16584974599988,65.32535947000014],[-67.0464755839999,65.46057734400011],[-67.40646019799993,65.48112771500018],[-67.25851205599997,65.55329167100018],[-67.24562012099994,65.62559518100005],[-67.40177998999991,65.67694419700013],[-67.84033611899997,65.639057342],[-68.00635881099998,65.77463802700004],[-68.13343970099999,65.80124171000011],[-68.13289809799994,65.93376726600019],[-67.79318450999995,65.87638493300011],[-67.67439877099997,65.91775292000017],[-67.46934955699999,65.89145454099997],[-67.18956722499985,65.93725836300013],[-67.13089172099995,66.01865115400017],[-67.26290091699991,66.10453150800015],[-67.37780382399995,66.12101512200013],[-67.69793522599997,66.23247254900014],[-67.68555962199997,66.28560887000009],[-67.85453198199991,66.4474850850001],[-67.67080847999989,66.44142775500006],[-67.4915226999999,66.38293761400013],[-67.40573297199995,66.2918888860001],[-67.26854224099992,66.2634170500001],[-67.10518903799988,66.30288869300011],[-67.13909404299989,66.48229245100009],[-66.87536274499996,66.55493464500006],[-66.8624654969999,66.5990970950001]]],[[[-89.65146432199992,72.11571172000015],[-89.21047942999985,72.13524806200007],[-89.3740389539999,72.25529536599998],[-89.41558024199998,72.4070748910001],[-89.2263328009999,72.472787794],[-89.43414283299995,72.5338969070001],[-89.33283274399986,72.64405519600007],[-89.31749831899992,72.76584877700009],[-89.53229443999999,72.78618007300014],[-89.52460552999997,72.63105264000012],[-89.73085395799995,72.61534795600016],[-89.79331086999997,72.46035772900018],[-89.95642494599997,72.32281566500012],[-89.87692534999996,72.20361119600005],[-89.56930256099997,72.16033553000017],[-89.65146432199992,72.11571172000015]]],[[[-98.341651631,73.03921669600004],[-99.02982198099994,72.98011780100006],[-99.26836705299996,73.01705952800012],[-99.59712044099996,72.95446896400017],[-99.8107574089999,72.9733752510001],[-100.12535887899998,73.04755251500006],[-100.07428173099993,72.88392496300014],[-100.32305138099997,72.8762329450002],[-100.30093898299992,72.79866311000012],[-100.42791219699996,72.73451447100007],[-100.79302062099998,72.73077836800013],[-100.84400541599996,72.68981386700011],[-101.26568468799991,72.71266062700005],[-101.43638554199998,72.79516169800013],[-101.52032204299996,72.91923660100014],[-101.73674762699983,72.93326627900007],[-101.75478117499995,73.00174947400012],[-102.11985694499998,73.08838408300005],[-102.49672821699983,73.02604288300012],[-102.73532300499988,72.76800816300005],[-102.66656035299991,72.69089904499998],[-102.36285022499999,72.58652722800008],[-101.92695344199996,72.47400479300006],[-101.80937480999995,72.31546958400008],[-101.45879427499989,72.26587851800008],[-101.17512410999996,72.33005381200007],[-100.90564205699997,72.18412548200018],[-100.61373863999995,72.18229916500013],[-100.42985465899989,72.05566988700008],[-100.05258467699991,71.88350653500004],[-99.82335529099998,71.84108307900016],[-99.59430830399998,71.71065955300003],[-99.52762416599995,71.62601818600018],[-99.34323830399995,71.5874505600001],[-99.35095065799993,71.52081194000004],[-99.21366072199993,71.3664471960002],[-98.942171939,71.39996112600011],[-98.7029847039999,71.29412266800006],[-98.43168009199997,71.33780339700013],[-98.11826241599994,71.47477551700013],[-98.03362082999996,71.55412400400013],[-98.16974530799996,71.6549498650001],[-97.95751680399997,71.67838506600015],[-97.45498568499988,71.62660043300014],[-97.14803662199995,71.68817756200019],[-96.91480255399995,71.81847629400005],[-96.7216276289999,71.80602068500002],[-96.51512576899984,71.84786793300003],[-96.45148786099998,72.031492657],[-96.72890494299992,72.02975814100006],[-97.34837538099998,72.00429287400004],[-97.90367491699999,72.07146828700007],[-98.13843022799989,72.2695887700001],[-98.02510037299999,72.38985458500008],[-98.28061805399994,72.5220826060002],[-98.30130569799996,72.6113209190001],[-98.43236864299996,72.64736316000017],[-98.80819379899992,72.63188455700015],[-98.8985502409999,72.72407594100008],[-98.43541527699995,72.84019747400015],[-98.407867636,72.87427556200015],[-98.42987026099996,73.02100570400017],[-98.341651631,73.03921669600004]]],[[[-113.93018846799998,73.14706740600013],[-114.12246703899996,73.29409485400004],[-114.49608324899992,73.37336453600017],[-114.67724241599996,73.36967869500012],[-115.41341487199986,73.21758721000015],[-116.52419308299994,73.0544797340001],[-116.80502951199992,72.97644136300016],[-117.32086875499994,72.91562272200014],[-117.606180124,72.77736721100013],[-118.10721627899994,72.64325892200009],[-118.52722796799998,72.47127399700008],[-118.44775720399991,72.35591738800008],[-118.09452868199998,72.32711871200007],[-118.0795544099999,72.24090584400011],[-118.42946793599992,72.18463070800004],[-118.64405329499994,72.12231534000011],[-118.73319820899997,72.04322887600006],[-119.0402703879999,71.91801682600004],[-119.12256593199993,71.78969874200004],[-119.06768974999989,71.66698696000014],[-118.47888100399985,71.65889860100015],[-118.31448522299996,71.58209698200017],[-118.03222042199991,71.67347252400009],[-117.96946913399995,71.55313195100018],[-118.30444925999984,71.47011361200009],[-118.24698863799995,71.39971222900004],[-118.00537207099995,71.37570834200017],[-117.50371344999996,71.38484201600005],[-116.88580755299989,71.43308481300011],[-116.29065412699987,71.50824119900011],[-115.78721566099995,71.49526143300011],[-116.11368161299987,71.42868033600013],[-116.14883597999994,71.37644838000011],[-116.75279300099999,71.29787225500007],[-116.84321121,71.25103975800016],[-117.81012045399996,71.16463769400019],[-118.40649313999995,70.99828253900006],[-118.19644434399999,70.84803028300018],[-117.76318254799992,70.72449405600014],[-117.67947938799995,70.6311182280001],[-117.39423046699994,70.57572114800007],[-117.23494395299991,70.61407820300019],[-116.70868316599996,70.6024257000002],[-116.12423391999988,70.63391176700003],[-116.024254843,70.57017787100017],[-115.71934440999996,70.60427273600004],[-115.08123865599998,70.59793600100005],[-114.4903289269999,70.64542111300005],[-114.331792899,70.68306207900014],[-113.95278972699992,70.71402454800005],[-113.50511120399989,70.66004168600011],[-113.19439433899998,70.64160719500012],[-112.9133427409999,70.56289242600019],[-112.66477064899988,70.56207461399998],[-112.08000051199991,70.48895597100017],[-111.99393686099995,70.38321164500007],[-111.5109859449999,70.35357632900013],[-111.65579084899997,70.27208001200006],[-112.17721973,70.27772152000017],[-112.53090706399996,70.20143114700011],[-113.31024236899992,70.2843094540001],[-113.63266168999996,70.26789171600007],[-113.97918844499998,70.28274434000014],[-114.19334226399997,70.32034016400007],[-114.46566318899988,70.32356353900019],[-116.11880234599988,70.21680652000009],[-116.94235354699998,70.12879393500003],[-117.31036598599985,70.05641020600001],[-117.40432878899998,69.98691867100007],[-117.22196234299997,69.75477623199998],[-116.83453662199992,69.64645365200016],[-116.85391266999994,69.57538153500013],[-116.56668728099999,69.55162004200008],[-116.57954903499996,69.44752294000006],[-116.49245522399991,69.40439003700004],[-115.94406673999998,69.29891451600008],[-115.47073691999992,69.257685359],[-115.1403097729999,69.25010877400007],[-115.01907368999997,69.2871528840002],[-114.65415508299998,69.26691853000005],[-114.38023579299988,69.29251911400013],[-113.62184939799982,69.19990330700017],[-113.5658883019999,68.9517868280002],[-113.66455553299988,68.89666387500017],[-113.5636694189999,68.7641526600001],[-113.42457875499997,68.69403184000004],[-113.36642836399994,68.60617665200004],[-113.07288850699996,68.54279230300006],[-113.19152760399987,68.458156717],[-112.33481773799991,68.50140039600018],[-112.09651095999999,68.53538426600005],[-111.67718997499992,68.5486657780001],[-111.18946734999997,68.52064385900013],[-111.09782427399995,68.58496707000006],[-110.915936021,68.55318480200009],[-110.59088632699996,68.62121562700014],[-110.40296906299994,68.60698969800018],[-110.1623176089999,68.64085290100013],[-110.02674810399998,68.62018209399997],[-109.70727411499996,68.63450495500012],[-109.39985588299999,68.69606717400006],[-108.92578422899999,68.74960750500003],[-108.52345478399997,68.8923400220001],[-108.53647185299997,68.94396743100009],[-108.09935307599994,68.93917956000013],[-107.51291318999995,68.97870626200012],[-107.29117236599996,69.03395641500003],[-107.106844019,69.16204124800015],[-106.90896557799988,69.24551340500011],[-106.97628931899999,69.34003671500005],[-106.75310145199995,69.37828271300015],[-106.62363998499995,69.49141157400004],[-106.46905942199987,69.47297326800015],[-106.32679398599998,69.38680062200012],[-106.25472140799997,69.28399711900016],[-106.39110016099988,69.17587269700016],[-106.14706237499996,69.14917786500013],[-105.84405983099992,69.18049750000011],[-105.57984289199999,69.15769859400018],[-105.07860575499996,69.0618095530001],[-105.02564795399985,69.00100947800007],[-105.24498996199998,68.96510442100015],[-105.12502318199995,68.89622242500008],[-104.64230865499997,68.85999278800011],[-104.43617892899994,68.94468998300016],[-104.10421918499986,68.85749619400013],[-103.94483921899985,68.8807339670002],[-103.60832234299988,68.82193307100005],[-103.13473950399998,68.8529389090001],[-102.99265164199994,68.80734334800002],[-102.7890883199999,68.84144820000012],[-102.71326635399993,68.91097062500018],[-102.47981908799989,68.88026990500015],[-102.37081685599992,68.93406271700019],[-101.80700786399996,69.00317477900006],[-101.72370653699994,69.16743239000016],[-101.89690196699996,69.25182504200018],[-102.03989550699998,69.26161892400012],[-102.07225632899991,69.34156483800012],[-101.91485760699999,69.41400676100011],[-101.97246697499997,69.46728972500017],[-102.28503751599993,69.51267406700009],[-102.57562432799995,69.4280344460002],[-102.9694604209999,69.41571525000018],[-102.99812060099998,69.50343810400017],[-103.18288107399991,69.57776929800008],[-103.48719159299998,69.64456020000017],[-103.31022405799996,69.70865971400008],[-102.92270125199985,69.56145965500019],[-102.58543972399985,69.54864394000003],[-102.48945723699995,69.57416383700013],[-102.51361966099995,69.70150203200012],[-102.21730459999992,69.8551807450001],[-101.98752205599999,69.81812169000011],[-101.64658887999997,69.69340776300015],[-101.4263117289999,69.79751570100018],[-101.25613363199994,69.67121776100004],[-101.05098956699999,69.66230440000015],[-100.89950461399997,69.70169533600011],[-100.84674439499986,69.88967930500013],[-101.00822679499993,70.21041642200004],[-101.41111337399997,70.14404085600006],[-101.60268072999997,70.17068703400014],[-101.67058636199988,70.32003653600015],[-101.87731514799998,70.27120667800011],[-102.26422138799995,70.39681496400004],[-102.83900898799999,70.54419170800008],[-102.8090854649999,70.60399286900008],[-103.01351776099995,70.68822411800016],[-103.28787481099994,70.6126749460002],[-103.53707663699993,70.61060168800003],[-103.8252005189999,70.75886267000004],[-103.98618260899997,70.76849040500002],[-104.08130408599993,70.91598631100015],[-104.39294923199998,70.99499616000003],[-104.63466394699998,71.13302478000003],[-104.43557638699991,71.26772382400003],[-104.50646847899992,71.34541304700002],[-104.35547383499988,71.3748831870002],[-104.38965604999999,71.54095584700008],[-104.33728144699984,71.59645423800009],[-104.51893351199993,71.74091135800012],[-104.84132028099987,71.90273070900008],[-104.88196932299991,72.0457331180001],[-105.09717759099993,72.33982190900014],[-105.21854718299994,72.3969876760001],[-105.21856384999995,72.53798902199998],[-105.41699315599993,72.69905881500011],[-105.29163546199993,72.72982964400018],[-105.4889712289999,72.87679033500012],[-105.76160964399998,72.97087714900005],[-105.8096530819999,73.03179439000019],[-106.06772519999993,73.06068790900014],[-106.70666069699996,73.27426713700004],[-106.99981540999988,73.28845138700018],[-107.19414741799994,73.20178042400005],[-107.59100694299997,73.31732074000007],[-108.02833023799985,73.342470956],[-108.03301463999992,73.23652229100003],[-108.24951399499992,73.11976868300013],[-108.000935455,72.76760425900005],[-107.987798608,72.62893723899998],[-107.84206178599987,72.58541916900015],[-107.81643198999996,72.36692582100011],[-107.72001576899999,72.29224870800005],[-107.74491242699997,72.13741298800016],[-107.59324918099992,72.08826657800006],[-107.57509472899983,72.00855738700005],[-107.27800278199999,71.90986339900013],[-107.48571190899992,71.86818781900018],[-107.64476229699994,71.73531667800012],[-108.0333235889999,71.71839755100012],[-108.30987110399997,71.80286518400015],[-108.19969826399995,71.96400899100018],[-108.38284755099994,71.99714943600003],[-108.36364487299988,72.07089025200008],[-108.63830262499988,72.3361063480001],[-108.5452251029999,72.49780500500003],[-108.65000578899998,72.6182411320001],[-108.99185193699998,72.57533583000014],[-109.05790920399994,72.73564870600006],[-109.33100024899994,72.76948203900014],[-109.59831850799992,72.84607679800007],[-109.63929672199993,72.9312389860001],[-110.25795272599993,72.99709004400006],[-110.6642297329999,72.99530557500009],[-110.70044805599991,72.93479128300015],[-110.53320354099998,72.85621387300006],[-110.16052566399998,72.8117074610002],[-110.19105012899996,72.709062179],[-109.90040852999994,72.59116029800009],[-109.77231158799998,72.49516459600017],[-110.00987817999993,72.43564762200015],[-110.29669609899997,72.55020482100008],[-110.47911717999995,72.51541257500014],[-110.72371665999998,72.55776269900014],[-111.04824897899994,72.40172705700007],[-111.41943303299996,72.50906034700017],[-111.17655871299996,72.624232458],[-111.1854550239999,72.72295325300007],[-112.014175121,72.88801566300003],[-112.35771106399989,72.91264596500014],[-112.47905703499998,72.95123199900013],[-113.035841012,73.00859979800003],[-113.3613312089999,72.90901853200012],[-113.56163743399992,72.75338241100019],[-113.80101027599994,72.64049619700018],[-114.02174405899996,72.65110901700007],[-114.34333498399991,72.5587382220001],[-114.54638878599997,72.61845287199998],[-114.31151138899992,72.69707551100015],[-114.20018461599989,72.79901965700003],[-113.97797991899989,72.80481160699998],[-114.01921595399995,72.96148429200008],[-113.93018846799998,73.14706740600013]]],[[[-92.76533945199998,72.74791676500018],[-92.84882394999994,72.82609897900005],[-93.20057701499996,72.911358479],[-93.36837784299996,73.04755185200014],[-93.61060340899985,73.06732296600012],[-93.73506150899993,72.98830474600004],[-94.03061638799994,72.99171021600006],[-94.21627049199998,73.05224295300002],[-94.22585236499992,73.23654690500013],[-94.29579943199991,73.3395692200001],[-94.45517709299997,73.3854547580001],[-94.76075042199983,73.55640727300005],[-95.48456539299991,73.69865310300008],[-95.58111110499988,73.74850385500008],[-95.69144390099996,73.64057815000012],[-95.60564629999999,73.61061808700003],[-95.66666625599987,73.47190338700011],[-95.57260997199984,73.18024826100009],[-95.65613552699995,73.07775154300015],[-95.65395582599996,72.80046275000012],[-95.60453297599997,72.71765712600018],[-95.31302849699989,72.62107936100017],[-95.30586207699997,72.54533569000017],[-95.11943807599994,72.46605021000016],[-95.188716232,72.41989948200006],[-95.196892672,72.00012326500013],[-95.12129818199998,71.9776278],[-94.47652848699994,72.02134066999997],[-94.07822630099997,71.98999790900007],[-94.00596342199992,72.15924877200013],[-93.81276434199992,72.3090605660002],[-93.6127915919999,72.3453031620001],[-93.4429371629999,72.47028393600016],[-93.50349655599996,72.54520283200003],[-93.85506727999996,72.70192421600018],[-94.29211400099996,72.770663345],[-93.63031495699994,72.78221195900005],[-93.33292260599984,72.80457861600019],[-92.76533945199998,72.74791676500018]]],[[[-105.07219257999992,73.74779813500015],[-105.53033824999994,73.76592615400017],[-105.66859147499997,73.73349507900008],[-106.26194784399996,73.72847008900015],[-106.62377107999998,73.68630764400012],[-107.0022864309999,73.4647949190001],[-106.74753519899991,73.4560638440002],[-106.41936048499986,73.39582401200005],[-106.16043413099993,73.28179417700005],[-105.72708085799997,73.04434758200006],[-105.50213422499996,72.97602759900019],[-105.23428243299998,72.93824469400016],[-104.99330230399988,73.0042795870001],[-104.51639097999998,73.34778353300004],[-104.44385702399984,73.53516506200009],[-104.51242751399997,73.5957026210001],[-105.07219257999992,73.74779813500015]]],[[[-121.02245732799992,74.47636125500014],[-121.11365218299989,74.52362928800005],[-121.46149089399995,74.55560464400014],[-121.76200264499994,74.54742450200013],[-122.29094713899991,74.47601857600011],[-123.18384838699995,74.45186860500007],[-124.029000651,74.40697024700006],[-124.70675534599997,74.35236225600005],[-124.50733869599992,74.25100892900014],[-124.36694990299998,74.02940694300008],[-124.10049187599992,73.85468768700008],[-123.81177861199996,73.81963633300018],[-123.86278723099991,73.70507346400012],[-124.04949958399993,73.66423334500007],[-124.07900312699991,73.52348113000005],[-124.28879584699996,73.49277507200014],[-124.51530941899995,73.3287996160002],[-124.5576760109999,73.23918104400019],[-124.81479528099999,73.10884622600014],[-124.79570565799992,73.03013076200006],[-124.54878845699989,72.99616072400005],[-124.455340278,72.93742907600017],[-124.72249150699997,72.88866629300009],[-125.0484798359999,72.88799193100004],[-124.95339936999994,72.67884775700014],[-125.0559028799999,72.56471386600003],[-125.31597430999989,72.48014502199999],[-125.5217314059999,72.28629963800006],[-125.63026131899994,72.26205776400013],[-125.72682836599989,72.11591036100015],[-125.74020721799991,71.953007264],[-125.24856136299996,71.98162494500008],[-125.06296861399994,71.90211306900017],[-124.59456059099989,71.7856976290002],[-124.05369621999989,71.697142401],[-123.88978648699998,71.62306857400017],[-123.80679727699993,71.52823260800011],[-123.61558668799995,71.4889869380001],[-123.42268480999991,71.21897048200009],[-123.08579716299994,71.08036387500016],[-122.78679003399992,71.08150388700017],[-122.49507227799995,71.20849530900011],[-122.02829363899997,71.30105894200005],[-121.90178011999996,71.3931042320001],[-121.5595878449999,71.46055765200009],[-121.32075902799994,71.3800897960001],[-120.72581211199991,71.47122060700013],[-120.49178980999994,71.54894973400008],[-120.37580769999994,71.70239591600011],[-120.44702936399995,71.74023729100003],[-120.44085348899995,71.93564965000002],[-120.15855589599994,72.09340524200013],[-120.1217953979999,72.1630366070001],[-120.25216604199983,72.24080663500013],[-119.77904432999992,72.21983362500015],[-119.31350341699994,72.38742319700015],[-119.15032404899989,72.6230687060002],[-118.35189786299992,72.82560100100005],[-117.93489841599995,72.90494120900019],[-117.46695469599985,73.03129654000003],[-117.22136941999986,73.05460179400006],[-116.64047319399998,73.215205605],[-115.89170476099997,73.32281569300011],[-115.45573218899983,73.42042364600007],[-115.3358682299999,73.54809548700013],[-115.89711884699994,73.73051092600019],[-116.60592846099996,73.99893220100012],[-117.38938279599995,74.226068156],[-118.06624420499998,74.28049407200018],[-118.81525003899998,74.18730097400015],[-118.76572101999989,74.12115704400014],[-118.92700455099992,74.00939606700013],[-119.067581411,74.20154905099997],[-120.07524344799998,74.27482152700003],[-120.91397093699999,74.43229283900007],[-121.02245732799992,74.47636125500014]]]]},"properties":{"objectid":439,"eco_name":"Canadian Middle Arctic Tundra","biome_num":11,"biome_name":"Tundra","realm":"Nearctic","eco_biome_":"NE11","nnh":2,"eco_id":414,"shape_leng":747.747576894,"shape_area":218.913626425,"nnh_name":"Nature Could Reach Half Protected","color":"#6DB5DE","color_bio":"#9ED7C2","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":981098.7454732696,"percentage":11.48134455306741}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-78.99626549899995,33.57852898800013],[-78.79597528299996,33.75521572200017],[-78.54033884799992,33.87651575700011],[-78.17164782999993,33.92948850800019],[-78.02294778499993,33.91581578300014],[-77.88062956599993,34.05692491000019],[-77.84267501499988,34.18144312000004],[-77.70063861699998,34.344070434000116],[-77.60649313599998,34.40581590500011],[-77.28182031799997,34.565015951000134],[-77.11816572899994,34.686706892000075],[-77.09104753799994,34.67286143600006],[-76.90287475599996,34.726679635000096],[-76.71894742699999,34.71812509400007],[-76.72644743199999,34.78377056300013],[-76.51560190999993,34.71807964600009],[-76.41417461299994,34.85017058800008],[-76.31449276699993,34.903234239000085],[-76.50862010199995,34.984297886000036],[-76.62959286699993,34.98940697500012],[-76.76144744899989,34.91616149900017],[-76.81972928799996,34.97111605500015],[-76.71183834699991,35.00467970300008],[-76.59704740699982,35.07337063100016],[-76.48222919799991,35.2474252180001],[-76.50086556999997,35.30546159300013],[-76.71878382199992,35.374861602000124],[-76.70991109499988,35.42888888599998],[-76.49382011699998,35.379534337000166],[-76.43049282599992,35.40668889099999],[-76.20214729899993,35.338134338000145],[-76.1125563629999,35.35433434400011],[-76.01308360799999,35.42371618100003],[-75.91880176799992,35.562643487000116],[-75.81792900999989,35.5718344010001],[-75.73045625899994,35.626543507000065],[-75.72589262899999,35.806043546000126],[-75.78421992699992,35.93441630000018],[-75.85758358599998,35.94557993600017],[-75.98601089499994,35.88888901100012],[-76.00488361799995,35.67705260000008],[-76.05969272699997,35.708461696000086],[-76.06534727999991,35.83739808800004],[-76.01256545099989,35.924807199000156],[-76.06234728799996,35.99089812099999],[-76.27224735099998,35.97205265500003],[-76.39876557299988,35.98274356200005],[-76.52344742699984,35.945416278000096],[-76.66357474199998,35.93244354300009],[-76.67433838799991,36.04397993100014],[-76.57997472099993,36.01082538100013],[-76.4603292299999,36.02510720600014],[-76.41188376299993,36.07987085600013],[-76.23957461999998,36.099834502000135],[-76.07185638799996,36.14069815300019],[-76.02150182999998,36.19010725600009],[-75.90591997699988,36.206407263000074],[-75.89911089099996,36.326552744000026],[-75.99572910699999,36.410625486000185],[-76.04557457999994,36.503807323000046],[-75.9838472919999,36.55056188000009],[-75.99292002599998,36.635252808000075],[-75.93649273899996,36.71537100800009],[-75.9901927659999,36.911707412000055],[-76.09498370899996,36.9085710440001],[-76.26593830999997,36.963934686000016],[-76.35191105899992,36.884689212000126],[-76.65659297999991,37.04073468900003],[-76.67193844399998,37.14143470900018],[-76.76505124199997,37.1699288260001],[-76.82944708299993,37.13788541800005],[-76.97901818999998,36.91672917200009],[-77.09699888299997,36.82103921000004],[-77.12638872399992,36.69573727700015],[-77.17948515199998,36.62525979600014],[-77.07392084499998,36.533228711000106],[-77.07141556399989,36.37186524900011],[-77.41570052599997,36.39294058300004],[-77.53821741299993,36.38626192700008],[-77.3132494269999,36.241118715000084],[-77.27051549499993,36.155807807000144],[-77.38859391599988,36.078482106000024],[-77.42608467399992,36.013421268000116],[-77.4026819909999,35.854318929000044],[-77.44977953699998,35.768182543000194],[-77.44070117599995,35.70364961900009],[-77.49698161899994,35.632397401],[-77.4073062359999,35.478439742000035],[-77.42244211899998,35.351973894000025],[-77.5077975449999,35.21173957100001],[-77.63029769199989,35.162904296000136],[-77.6120352179999,35.09219446500009],[-77.67529154699997,35.05075332300015],[-77.72047965799999,34.95084362200015],[-77.8539646829999,34.95944660100008],[-77.968886162,34.91757362300012],[-78.23541810299992,34.72642194600019],[-78.42913559199991,34.748625178],[-78.55364681099996,34.86688248300004],[-78.7711040879999,35.01634925300016],[-78.79512406299995,34.86055601800018],[-78.75611687099996,34.75984854200016],[-78.60849384499988,34.64701846100007],[-78.46994681299998,34.568460434000144],[-78.43527936899994,34.50183599900009],[-78.49738847999998,34.41328385800011],[-78.64534095499994,34.32295002],[-78.73507091799996,34.19438440000016],[-78.85038030399988,34.11528548600012],[-79.0651761229999,34.14949878900006],[-79.15808145699998,34.21852856400017],[-79.27539272399991,34.12067097500011],[-79.34035975699999,34.02195512700001],[-79.4511554049999,34.054864247000125],[-79.51751294899998,34.01426103500006],[-79.65964219499989,34.042750986000044],[-79.82393437199994,34.147232585000154],[-79.96607035599993,34.096479331000126],[-80.13142139799999,34.08975369300015],[-80.15468251899995,33.94828530800004],[-80.19216121699998,33.90213649100002],[-80.1158048499999,33.7989085480001],[-80.17837601399998,33.69992279000007],[-80.1255334999999,33.67780023900008],[-80.1815087839999,33.52063464700012],[-80.16809257499989,33.39093882600008],[-80.33180231799997,33.37991371100014],[-80.45339660499997,33.42855730500003],[-80.52813751199994,33.40540575900013],[-80.69626099699997,33.44991514200018],[-80.80796236299989,33.451058227000146],[-80.95671958499992,33.393809573000055],[-81.11072488899987,33.25044370400013],[-81.14803664499993,33.17586274700011],[-81.14139486999989,33.046009542000036],[-81.21507399399997,32.98501951500003],[-81.43150402999999,32.88669592100007],[-81.37303031799996,32.722711785000115],[-81.28755992599986,32.597098440000025],[-81.13849701799995,32.49503406600019],[-81.10905892399995,32.25258794700005],[-81.00633626199988,32.17709823300004],[-80.87292250299998,32.27555233100014],[-80.89462599499996,32.36456577000007],[-80.88784082299998,32.59794602700009],[-80.69331108599988,32.55122160800005],[-80.6429663369999,32.66061682500015],[-80.56451962299991,32.67827499400005],[-80.59251113899984,32.75152073200019],[-80.39332622699999,32.69005208100003],[-80.21332639499997,32.73660926100018],[-80.16168885599996,32.82936660000013],[-79.96598553499996,32.9445906200001],[-79.9778595439999,33.026410906000024],[-79.93576385099988,33.11083000900004],[-79.8543245649999,33.02411245000013],[-79.87479397499999,32.92222032700005],[-79.7584535279999,32.96815951100018],[-79.69651745099998,32.96072446200009],[-79.55163836799994,33.06507186800019],[-79.45281296099995,33.2306607750001],[-79.37072668499997,33.230458755000086],[-79.33089045999992,33.330227447000084],[-79.42786417099995,33.36789044600016],[-79.19123416299993,33.48495336800005],[-79.11302240299995,33.556732997000154],[-78.99626549899995,33.57852898800013]]],[[[-76.49419807299995,37.2256247950001],[-76.6291725079999,37.205683218000104],[-76.62544751999997,37.127061981000054],[-76.4653565559999,37.028389238000045],[-76.42987472299995,36.97028922800018],[-76.29460195799999,37.03024379000004],[-76.27020195299991,37.08751653000019],[-76.37444744299995,37.15002563100006],[-76.4224020069999,37.220689280000045],[-76.49419807299995,37.2256247950001]]],[[[-76.49646220399995,37.24915598400008],[-76.39479291099991,37.2655802000001],[-76.41362019399998,37.33926203300007],[-76.49861861999995,37.4021380640001],[-76.49646220399995,37.24915598400008]]],[[[-76.49123566399993,37.41571928700017],[-76.38579291499997,37.38481658899997],[-76.29674742799995,37.32328021500018],[-76.24872014399995,37.37474386400015],[-76.27933834099997,37.47334388400003],[-76.43221111999998,37.512646792],[-76.49123566399993,37.41571928700017]]],[[[-76.41790160899995,37.63955896300013],[-76.35842928199997,37.6190530020001],[-76.32641109699995,37.73188030000006],[-76.23674744199991,37.88865306300005],[-76.41887477499989,37.96811670900007],[-76.53568390899994,38.07336218100011],[-76.70060214699998,38.16016219300013],[-76.72725429499991,38.10214647700013],[-76.59775096199996,38.068696110000076],[-76.56335238099996,37.99353312100004],[-76.3498820129999,37.90760232200006],[-76.32572675199998,37.863272649000066],[-76.40526891199994,37.66097500500018],[-76.40981018099995,37.65401387999998],[-76.41037616999989,37.652984059000175],[-76.41084308199999,37.65219846100018],[-76.41790160899995,37.63955896300013]]],[[[-76.55774177199999,38.38485341700016],[-76.58331603399995,38.38844826800016],[-76.56271120699995,38.38545995200019],[-76.56148822699998,38.38536514400016],[-76.55774177199999,38.38485341700016]]],[[[-76.85988262099994,38.30804976600007],[-76.98610998799995,38.379197647000126],[-77.02189517699998,38.45718110900003],[-77.15134644499994,38.441420951000055],[-77.20384105499988,38.357548701000155],[-77.11768228199998,38.34319217100011],[-77.02700253899997,38.26970420200007],[-76.97723860799994,38.35475313200004],[-76.85988262099994,38.30804976600007]]],[[[-76.6017244059999,38.45769156900019],[-76.63256856199996,38.56415633000006],[-76.69275047199994,38.54435264300014],[-76.6017244059999,38.45769156900019]]],[[[-76.55396103899989,38.75307110100016],[-76.49006575799996,38.84272597600011],[-76.55016530699999,38.87584812800009],[-76.55396103899989,38.75307110100016]]],[[[-76.40931863999998,39.03041113800015],[-76.41083807099994,39.030551893000165],[-76.46227323799997,39.011083678000034],[-76.40298774399992,39.029752807000136],[-76.40931863999998,39.03041113800015]]],[[[-76.08568351399998,39.53960794900007],[-76.08572491499996,39.53991234500006],[-76.34739301899987,39.39960599500006],[-76.28859299499999,39.31693517000019],[-76.06046565899993,39.44944429599997],[-76.0856333989999,39.53923948400006],[-76.08568351399998,39.53960794900007]]],[[[-75.84299109599988,39.580578743000046],[-75.89408379199995,39.50424431300013],[-76.04984746999997,39.37064428000019],[-76.18558387299993,39.31934426600003],[-76.27852025499993,39.145807864000176],[-76.13660202599993,39.098653314000046],[-76.16444748299995,39.000116929000114],[-76.2351747749999,38.94199873300016],[-76.16116565699997,38.87941690500003],[-76.22602021899996,38.82018961700015],[-76.30171115199994,38.826198707000174],[-76.33842025099995,38.76050778300015],[-76.15561109599997,38.65808958700012],[-76.25992930899997,38.61436230200013],[-76.21260201499996,38.51459864700013],[-76.33223841399996,38.47473499800003],[-76.28392021299999,38.415671352000174],[-76.09974742199995,38.292062241],[-76.00439284599997,38.29619861000003],[-75.86140188899998,38.23273496500002],[-75.84426551199994,38.07228038700009],[-75.89895643299997,37.97452581900012],[-75.82432004299994,37.938471269],[-75.71315637399994,37.97663491700001],[-75.68067454099992,37.888743991000126],[-75.73255636999988,37.7850621500001],[-75.8121563919999,37.749507594000136],[-75.89313823099997,37.645543933000056],[-76.01531097899993,37.330025681],[-76.01327460799996,37.20578929100009],[-75.94070185399988,37.13485291500001],[-75.89485639799994,37.359871146000046],[-75.75312908899997,37.50715300000019],[-75.60889269099988,37.707062138000026],[-75.53344721699989,37.78295306500013],[-75.50013811999992,37.86993490200001],[-75.22407441899992,38.2433986260001],[-75.15185621399996,38.246862266000164],[-75.04938346599988,38.44419867300002],[-75.06250165999995,38.58196233800004],[-75.12751986399996,38.63379871000018],[-75.07768348799993,38.69414417799999],[-75.09660168199991,38.79053510700004],[-75.18294716399993,38.801871469000105],[-75.3016835709999,38.91148057900017],[-75.34171086299995,39.021116963000054],[-75.40238361099995,39.06746242500003],[-75.39473816299994,39.204189725],[-75.4370200009999,39.3114170180001],[-75.49462002099995,39.346726114000035],[-75.46571092699998,39.439098861000105],[-75.29049268099999,39.29191701900004],[-75.10208352599989,39.21360791899997],[-74.90161982399991,39.174717009000176],[-74.83565676599994,39.122802237000144],[-74.77893226699996,39.21323173900015],[-75.01537559199988,39.38525462400003],[-75.04929506799994,39.29528831800019],[-75.1515966099999,39.311613407000095],[-75.25409144299994,39.38688830600006],[-75.38276751899997,39.426832038999976],[-75.41531938299994,39.51000737800007],[-75.42505217399997,39.69115973700008],[-75.33266802299994,39.780807939000056],[-75.20584781399998,39.81174211100017],[-75.10613744999995,39.87212216400013],[-75.09463294499983,39.95672517200012],[-74.81465038999988,40.07277505900015],[-74.70134288099996,40.159054403000084],[-74.78287653599989,40.22460114900008],[-74.95669889199996,40.07910066800014],[-75.14438499999989,40.002912341000126],[-75.23870081399997,39.92022033000006],[-75.5364883719999,39.76378644100015],[-75.70958220699998,39.68764801400005],[-75.84299109599988,39.580578743000046]]]]},"properties":{"objectid":440,"eco_name":"Mid-Atlantic US coastal savannas","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Nearctic","eco_biome_":"NE08","nnh":4,"eco_id":393,"shape_leng":169.834436683,"shape_area":7.82104951821,"nnh_name":"Nature Imperiled","color":"#FBB04B","color_bio":"#FEFF73","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":78645.59422456461,"percentage":0.7422688457222121}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-83.52381156299998,13.711197065000079],[-83.60997065499993,13.66435530200016],[-83.5306625959999,13.541028505000043],[-83.52381156299998,13.711197065000079]]],[[[-83.55552650599998,13.936330123000118],[-83.66827349699997,13.919065414000045],[-83.70689361899991,13.850583756000105],[-83.78955862999999,13.782056333000128],[-83.75145751599996,13.736245544000042],[-83.62264258399983,13.732556836000015],[-83.58186361899993,13.800179349000075],[-83.55552650599998,13.936330123000118]]],[[[-83.96789552299998,13.8988258],[-83.96735354899988,13.991855538000038],[-84.03543052799995,14.000424860000123],[-84.05261963199996,13.873488480000049],[-84.11133553499997,13.868112663000147],[-84.25090763399993,13.936413271000049],[-84.32827762899984,13.90178159400017],[-84.18984965999994,13.686625851000088],[-84.20822865899999,13.451374495000096],[-84.28339354399992,13.263245863000122],[-84.22190859599988,13.195530479000126],[-84.14252459699998,13.221526784],[-84.0764155199999,13.18903383300011],[-84.01105461299994,13.225647494999976],[-83.94229165799999,13.203789168000185],[-83.89347863899997,13.133402806],[-83.85526252499989,12.99921390100019],[-83.72394559499992,12.97158647700013],[-83.59568755599997,12.8937318400001],[-83.5501865629999,13.046376523000163],[-83.57122765399993,13.224519626000188],[-83.60920756599995,13.344614697000054],[-83.54615050899992,13.493950538999968],[-83.67843655499985,13.548000069000068],[-83.63032560399995,13.594479901000057],[-83.67065462799997,13.69778618700019],[-83.77540561899991,13.677080371999978],[-83.80283355299991,13.730211915000098],[-83.8923034959999,13.760687844000017],[-83.96789552299998,13.8988258]]],[[[-84.45315558199991,15.491793759000188],[-84.64995562699988,15.432453573000032],[-84.67388964899993,15.365978878000135],[-84.51242049899997,15.39272419000008],[-84.45315558199991,15.491793759000188]]],[[[-84.2538754979999,15.179020192000166],[-84.18253359999989,15.230922781000174],[-84.14800250599995,15.364521936000187],[-84.24954959799993,15.44482308300013],[-84.32247953199999,15.585621789000186],[-84.39169359999988,15.439361435000137],[-84.44905850699996,15.419368416000168],[-84.56829057699997,15.24780644800012],[-84.58280954199995,15.120872750999979],[-84.44265758299997,15.117693998000163],[-84.38800053399996,15.166257739000116],[-84.2538754979999,15.179020192000166]]],[[[-84.48004958799999,15.74201502700015],[-84.53447764399988,15.740273100000024],[-84.58997355499991,15.494312689000083],[-84.49256159099997,15.511024695000117],[-84.4112626619999,15.602143862000048],[-84.40074152899996,15.723758068000109],[-84.48004958799999,15.74201502700015]]],[[[-84.11525759499995,15.655967415000191],[-84.19517552099995,15.615558930000134],[-84.22566251499995,15.547180369999978],[-84.13285858599988,15.51604227000007],[-84.0747225429999,15.565244042000131],[-84.06099650599992,15.43141187000009],[-84.11619552999991,15.435146511000085],[-84.1438216119999,15.228303771000185],[-84.22107660799998,15.106622845000118],[-84.16499362899992,15.088737875000163],[-84.1235196369999,15.014356698000142],[-84.17884053299997,14.959812302000103],[-84.43830854899994,14.857878971000162],[-84.5698546399999,14.910904232000178],[-84.6498795199999,14.868295162000038],[-84.70918265799992,14.79514092900007],[-84.59369662899996,14.772665526000026],[-84.54756162799993,14.706927600000029],[-84.4173355179999,14.63795208100015],[-84.19252063699997,14.705960832000187],[-84.18370857499997,14.597656752000034],[-84.13954164499995,14.509987409000132],[-84.02463564299995,14.419068570000036],[-83.89112852099987,14.390631455],[-83.82697259599996,14.32291774700019],[-83.66105651099997,14.011438178000049],[-83.54293051699995,14.00690742400019],[-83.50888054399996,13.917375622000066],[-83.45771053399989,13.915898563000155],[-83.41541259999991,13.997090371000183],[-83.32263163799996,14.098370584000065],[-83.35754360499999,14.156483827000045],[-83.33113859899998,14.250810413000067],[-83.26123855499998,14.20388751300004],[-83.29141256899999,14.495603393000124],[-83.35438563999998,14.49322175900005],[-83.39160162499996,14.746177203000116],[-83.45713754699989,14.757885381000051],[-83.50232656599997,14.866084184000044],[-83.64833060199993,14.864544261000106],[-83.82424965099989,14.788068279000186],[-83.82632450699998,14.8458777620001],[-83.71302062199999,14.96095106700011],[-83.61043551499995,15.102592993000087],[-83.65659365,15.184943516000146],[-83.74927553899983,15.127038311000149],[-83.86325852599998,15.02060222200015],[-83.87602952899988,15.0896977700001],[-83.75870551499997,15.20002859400006],[-83.63229350699999,15.276936579000107],[-83.60580451399994,15.323215749000099],[-83.89132650199991,15.462296669000125],[-84.11525759499995,15.655967415000191]]]]},"properties":{"objectid":445,"eco_name":"Miskito pine forests","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Neotropic","eco_biome_":"NO07","nnh":3,"eco_id":573,"shape_leng":19.9591953876,"shape_area":1.58025988017,"nnh_name":"Nature Could Recover","color":"#FBA769","color_bio":"#FEAA01","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":18965.070421638215,"percentage":0.08846054610649742}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[147.0357378880002,-25.650833866999903],[146.93316621500003,-25.59457021299994],[146.72220296600005,-25.632063052999968],[146.5781617240002,-25.80460605399992],[146.58013237600017,-25.848994626999968],[146.5239282990001,-25.987385825999922],[146.54634753100015,-26.029283429999964],[146.42136475100006,-26.133866544999876],[146.70299134100014,-26.123472696999897],[146.79500759200005,-26.053972407999936],[146.91800065600012,-25.915971697999964],[146.8937577900001,-25.837931770999944],[146.9907359990001,-25.78844387999993],[147.0357378880002,-25.650833866999903]]],[[[142.17051014800018,-20.066133682999975],[142.10299953400022,-20.0684780549999],[142.0859350720001,-20.242182106999905],[142.17051956400007,-20.247598376999974],[142.25921109100022,-20.33712799199992],[142.33225600700007,-20.485328119999963],[142.5096038470001,-20.544811249999952],[142.5892462610002,-20.61657995099995],[142.84909910300019,-20.63171206699991],[142.91440226700013,-20.58002179899995],[142.87107873300033,-20.452453385999945],[142.70378531000006,-20.40676737899986],[142.58864147200018,-20.245993590999888],[142.50974393800004,-20.27617800199988],[142.44340181500013,-20.160466741999926],[142.31618106900032,-20.131624082999906],[142.2313413530003,-20.070344451999972],[142.17051014800018,-20.066133682999975]]],[[[134.3132934040001,-17.645765352999945],[134.24029540900005,-17.455333708999945],[134.1318511840002,-17.35954280499982],[133.95249941100008,-17.304367082999875],[133.91044639700021,-17.34748644399997],[133.89750691700033,-17.4563465789999],[133.7552184110001,-17.519859443999962],[133.65498358900015,-17.525028227999883],[133.54681395600005,-17.46687508699989],[133.50198368100007,-17.3150214879999],[133.446685752,-17.22390366299993],[133.37315366200005,-16.94294545299988],[133.39166258100022,-16.775932343999955],[133.32862848900015,-16.77082642399995],[133.2838897460001,-16.834047263999935],[133.18658439900014,-16.88705827599989],[133.03669736300003,-16.91332816599993],[133.0233612520003,-16.984155750999946],[133.11529547500004,-17.034976905999883],[133.08091726600014,-17.10830112399998],[133.20452871400005,-17.161676412999896],[133.18855263800015,-17.257826062999925],[133.21475212000007,-17.346448930999827],[133.3938598130003,-17.48329925899992],[133.42544550600007,-17.637704810999935],[133.29330446800031,-17.77680970299997],[133.24821469000028,-17.91343120399989],[133.25869743300018,-17.979246075999924],[133.3796080630001,-18.068218300999945],[133.48309321900012,-18.055492392999952],[133.60339347900015,-17.987216929999875],[133.78062429500005,-17.975128214999927],[133.8687286590001,-18.06635483699995],[133.91796865300012,-18.201393164999956],[133.96942130000002,-18.27998742099993],[134.06852724700002,-18.353185743999973],[134.11462402700022,-18.442249331999903],[134.24888602200008,-18.55721668999996],[134.3923949340001,-18.649309161999952],[134.49038692500028,-18.78350443799991],[134.53320319600004,-18.884717930999898],[134.58677680100016,-18.93339348699982],[134.63162233000014,-19.04855915999991],[134.70930480200002,-19.112794880999957],[134.84553520400027,-19.125892610999927],[134.8722228490003,-19.010286383999926],[134.94007871300005,-18.988811445999886],[135.03880311600005,-19.09203726599992],[135.09506228200019,-18.992780779999975],[135.27185053500023,-19.01595305399985],[135.29646298700004,-19.136758742999973],[135.2585603570003,-19.245778971999982],[135.18373108300023,-19.30571360299996],[135.3435821920001,-19.37161262899997],[135.5801391130002,-19.381002372999944],[135.67622371900018,-19.41023258399997],[135.89428714500002,-19.41272351799995],[135.96824637600014,-19.376476311999852],[136.0322571270001,-19.390796626999872],[136.25245659600023,-19.529117642999893],[136.25637815400012,-19.698801057999958],[136.33242799900006,-19.76705740999995],[136.6408386190002,-19.849849825999968],[136.8264769870001,-19.886405988999968],[137.00714119800023,-20.14727026099996],[137.1286772860002,-20.429090465999934],[137.2357787300001,-20.47077182699985],[137.37347412100019,-20.582792274999974],[137.53405763900014,-20.672393813999918],[137.71267700300018,-20.941650383999956],[137.76545717700003,-21.117130220999968],[137.6384584350002,-21.04702750299998],[137.41967768600023,-21.001092996999944],[137.1058044130001,-20.982330441999977],[137.00846855700001,-21.089910492999877],[136.8944243830001,-21.248132660999943],[136.90599073800013,-21.326324417999956],[136.85638428800007,-21.407400220999875],[136.73582452500023,-21.458665784999937],[136.72026067200022,-21.499685309999904],[136.58563238700026,-21.53625672699991],[136.6678618740001,-21.65473559999998],[136.73899841700006,-21.70904161499982],[136.86941529800004,-21.75728030599987],[136.9053191810001,-21.799514703999932],[137.28866569000013,-22.049617786999875],[137.50895685800003,-22.224180307999973],[137.64463807700008,-22.42016412499993],[137.63932797400014,-22.560737692999965],[137.75665282600016,-22.611930837999978],[137.89785772000005,-22.58022880399983],[137.968098477,-22.479625305999946],[138.10893485600002,-22.473171],[138.24604842700012,-22.56521463999991],[138.40001696800005,-22.631205116999922],[138.48974655400002,-22.74180344499996],[138.4031355310001,-22.870460519999938],[138.44767067200019,-22.937416688999974],[138.57802268900014,-22.83020040399998],[138.63399333200016,-22.814237456999933],[138.71015953900007,-22.905653569999913],[138.71165503300017,-23.10458816299996],[138.83125544100005,-23.184153306999917],[138.89213049800014,-23.135678836999887],[138.93157990200007,-23.03404631999996],[139.03328030400007,-23.036806328999887],[139.0573420400002,-22.991390885999976],[139.23819898500005,-22.99718832799988],[139.2439127580002,-23.05448406299996],[139.36528194200002,-23.04815728799997],[139.44703556700006,-23.008820409999885],[139.62066630800018,-23.084545491999847],[139.62515674000008,-23.240275200999974],[139.65090267500022,-23.306103488999895],[139.7388965570001,-23.362343791999876],[139.94024265200005,-23.310817940999982],[140.02587128900007,-23.351041769999938],[139.92382087900012,-23.42356348499993],[139.89989322200006,-23.50397841599988],[139.95042630800015,-23.66308261899991],[139.91080876900003,-23.786231646999966],[139.97453071400003,-23.845562644999973],[139.9919560290001,-24.041320887999916],[139.93880591900017,-24.092989836999948],[139.94000320500004,-24.21136687099994],[139.99444801100003,-24.271217905999833],[139.8409404560001,-24.367780586999856],[139.88115939600004,-24.446401878999893],[140.03022227400015,-24.485727195999857],[140.06793629000003,-24.555746219999946],[140.14799921300005,-24.501385617999915],[140.22483132200023,-24.585276272999977],[140.40125455800012,-24.67138813799994],[140.49826214700022,-24.56535619899995],[140.5469301610002,-24.59837828399992],[140.64422062200003,-24.56838866299995],[140.69915422400004,-24.487946590999968],[140.8768167850002,-24.37787701999997],[140.89558178700008,-24.27972640699994],[140.85663155200007,-24.236564228999953],[140.84214161900013,-24.052032387999873],[140.79881907200001,-23.96905072699991],[140.82678749800004,-23.86749922599995],[140.9012844890001,-23.71318318999988],[141.04168112600019,-23.691719073999934],[141.09865943500006,-23.640633673999957],[141.12289612400002,-23.560766457999932],[141.29449127800012,-23.455921539999963],[141.43859090500018,-23.387404879999906],[141.49759957700007,-23.321144099999913],[141.57668028800015,-23.050166595999883],[141.6312508850001,-23.009606826999857],[141.74361028400006,-23.024075723999943],[141.82409966400007,-23.08922536599988],[141.99822887000005,-23.13442571199994],[142.03829264700005,-23.174964336999892],[142.1568172640001,-23.141255248999983],[142.244893487,-23.22192968899998],[142.37093441000013,-23.078501012999936],[142.37938248600017,-23.00663104499995],[142.45658923300005,-22.943555738999976],[142.45888191300003,-22.85400106499992],[142.53619275900007,-22.759430942999927],[142.55883034900012,-22.664232418999973],[142.62776357000007,-22.629934892999927],[142.59271441600004,-22.561475168999948],[142.72576316800007,-22.54854051199993],[142.8634343320001,-22.622656989999825],[142.94910383700017,-22.63016330399995],[142.9846586130002,-22.542414918999953],[143.07249305300002,-22.571270113999958],[143.15577919700013,-22.548680111999943],[143.2156304770001,-22.582259783999916],[143.29190737000033,-22.705775514999914],[143.2683627670001,-22.790214618999926],[143.3375941280002,-22.927112452999893],[143.20147572800022,-23.012669156999834],[143.17231689300013,-23.146051651999983],[143.09028974800003,-23.347444107999877],[143.1272830050001,-23.642871464999928],[143.23004725900012,-23.750040739999918],[143.18997380100018,-23.910548603999928],[143.13336963600023,-24.0496860209999],[143.16838600500012,-24.139616040999954],[143.22272221900016,-24.14235165499997],[143.3203318430002,-24.33192859099995],[143.42103557300015,-24.514402398999948],[143.49207803100023,-24.59092272099997],[143.60832252900025,-24.604794125999888],[143.6413197290002,-24.73812800199994],[143.58765775700022,-24.865621760999943],[143.57112059300005,-24.980416691999835],[143.65081576900002,-25.021355960999983],[143.61435619500014,-25.110972267999955],[143.4985049820001,-25.173738961999902],[143.55885784200018,-25.24832687399993],[143.5451566180002,-25.311110223999947],[143.68940053300025,-25.298984394999934],[143.78658237100012,-25.452099202999932],[143.842181653,-25.487812279999957],[143.8667172160001,-25.57130042499989],[143.74086644400006,-25.572435295999924],[143.79011793900008,-25.650870409999925],[143.7579689700001,-25.695654523999906],[143.82064679100006,-25.858268833999944],[143.88272559600023,-25.938449525999943],[143.8652995670002,-26.005790108999918],[143.92682710500014,-26.144571681999935],[144.00821171000018,-26.12836993299993],[143.98024801600002,-26.00304680399995],[144.00851829900023,-25.863192079999976],[143.94732263900005,-25.737759292999954],[143.86787356300033,-25.47767701299989],[143.85894317100008,-25.324105403999965],[143.90020480600015,-25.320409393999967],[143.97158197600004,-25.158532733999948],[143.98328272800006,-25.080521570999906],[144.04803559800007,-25.07518353599994],[144.11399838000023,-25.136894112999926],[144.23713558300005,-24.922807805999923],[144.21578398400004,-24.876668862999963],[144.37795404800022,-24.836739361999832],[144.44796990600014,-24.89182401599993],[144.5057806000002,-24.87169067799988],[144.59936045300014,-24.77899169799997],[144.61783593000018,-24.67594475699991],[144.72469718000013,-24.655424589999825],[144.8275186420001,-24.782033765999984],[144.809664042,-24.838549715999875],[144.91466949600022,-24.93595329199991],[144.95581298800005,-25.024446551999915],[145.20143372100017,-24.992473392999898],[145.13173562300005,-25.06837652799993],[145.0214944080002,-25.12390603199998],[145.08815454000023,-25.2533548159999],[145.01909349900018,-25.414953372999832],[145.08627371700015,-25.459847264999894],[145.1092832520003,-25.535958609999966],[145.17611491800005,-25.590066441999966],[145.33077441700016,-25.445676705999915],[145.41560076100018,-25.49375708899987],[145.53614121800013,-25.38304851299995],[145.4655282550001,-25.274201294999898],[145.5573864470001,-25.240614518999962],[145.60558588300012,-25.13070296799998],[145.7121432570001,-24.99723193699998],[145.75936490300012,-24.812924103999933],[145.86914257000024,-24.75453876599994],[145.8229028390001,-24.89490095699989],[145.82308541200007,-24.98297645299988],[145.71879000500007,-25.19214643999993],[145.7781885820002,-25.23822837299997],[145.78982832400015,-25.3535013959999],[145.82533817000012,-25.37398735499994],[145.73054663400023,-25.491966240999943],[145.76148250800009,-25.617443523999953],[145.9206132800001,-25.64846869199988],[146.12934420300007,-25.85821237599987],[146.14236950600014,-26.045009396999887],[146.27074745100003,-25.962434004999977],[146.4074551210001,-25.99568815999993],[146.4169129070002,-25.826907653999967],[146.4854222170003,-25.713190921999853],[146.47506779000003,-25.551912057999914],[146.54413617500018,-25.48609223299991],[146.54616627400003,-25.34658090099998],[146.48036658300032,-25.282008806999954],[146.50395617700008,-25.16308614499991],[146.47744433100013,-24.995560981999915],[146.43007953400001,-24.856161125999904],[146.2158159620002,-24.85371704599993],[146.18250954600012,-24.728094081999927],[146.25668208100012,-24.69983059699996],[146.23503820100007,-24.609136943999943],[146.1576844210001,-24.538872296999898],[145.9603192640002,-24.584915784999964],[145.96486270100002,-24.50281175399988],[146.05161584500024,-24.43979656099998],[146.09432273300013,-24.270980911999857],[146.02225201600015,-24.198766426999953],[146.00561153400008,-24.136976133999895],[146.04469074400004,-23.932015238999895],[146.1154494320001,-23.91354336099988],[146.16425843900015,-24.00097243099998],[146.2447500310003,-24.000918733999868],[146.29548048100003,-23.94689135599998],[146.33836897700007,-23.792600652999965],[146.28929911400007,-23.75822736599997],[146.2320173730002,-23.59894849699998],[146.29187115900004,-23.611435927999935],[146.4176936580002,-23.742489767999814],[146.52099456500014,-23.75016448699995],[146.58002883000017,-23.707687370999963],[146.65441304600017,-23.58032421599995],[146.59416266000005,-23.512126970999816],[146.57686950700008,-23.38439306899994],[146.6669871800001,-23.300606506999827],[146.6645558130001,-23.223051276999968],[146.6065559540001,-23.181672176999882],[146.61089257600008,-23.023701909999886],[146.55235290700023,-22.81203699499997],[146.4906275940001,-22.780381256999874],[146.5210059460003,-22.68824367699989],[146.45442693100006,-22.57998893599995],[146.50289042300005,-22.50121341499994],[146.5211532950001,-22.369163388999937],[146.48553852800023,-22.24158486899995],[146.42443325500017,-22.121676410999953],[146.35574428900009,-22.071806787999947],[146.38585415900002,-21.99946233299994],[146.4677185930001,-21.968715619999955],[146.42131878200007,-21.907797319999872],[146.53320780800004,-21.839974009999935],[146.4560066570001,-21.752128679999885],[146.45073235500013,-21.54559778299989],[146.34046631400008,-21.526590169999906],[146.3184560310002,-21.466083396999863],[146.363912077,-21.356889683999952],[146.31382283200026,-21.233932737999908],[146.32047197400027,-21.16989619599991],[146.25276387300005,-21.13249962599997],[146.15959028500004,-21.13187387399995],[146.18846756200014,-21.034205129999975],[146.3290288310003,-20.97948974999997],[146.3969571130001,-21.03031472399988],[146.49744397000018,-21.00268161599996],[146.5119542990002,-20.889839150999933],[146.4484736400002,-20.78527183999995],[146.53023723600006,-20.693076578999978],[146.39715399600004,-20.494644522999863],[146.38916333300006,-20.39017129599989],[146.31690045900007,-20.432205245999967],[146.17260080200003,-20.3637934759999],[146.08812771700002,-20.36354311899987],[146.0320313520001,-20.276990667999883],[146.10226263500022,-20.21926129899998],[146.13210801500009,-20.139915164999877],[146.25682492300018,-19.972037389999855],[146.26461247200018,-19.91463080699998],[146.1127403050001,-19.899687662999952],[145.91879711400009,-19.836449432999927],[145.7405858010003,-19.925130195999884],[145.6607740400002,-19.936678160999975],[145.59436596000012,-19.998669059999884],[145.62318264300018,-20.06034903399984],[145.80187312300006,-20.16779354499988],[145.69811302200003,-20.213942998999926],[145.6158945520001,-20.35669442899996],[145.54766197800018,-20.423676324999917],[145.50565021600005,-20.34280390699996],[145.41929069200023,-20.368719848999945],[145.46980782200023,-20.43467487399994],[145.2380406100002,-20.560140894999904],[145.1372535280002,-20.44977425299993],[144.85108937300015,-20.350013830999956],[144.76577355700033,-20.30217993499997],[144.67134701200018,-20.42723291699997],[144.65976892100002,-20.567347409999968],[144.58600108200017,-20.62960547699987],[144.45485619600004,-20.619275270999935],[144.29819678400008,-20.68060136899993],[144.19394910900007,-20.685173628999962],[144.0548044100001,-20.75083550499994],[144.0584003570001,-20.594832500999928],[143.89904808300014,-20.621138404999897],[143.71744538300004,-20.630232598999953],[143.6484168310002,-20.59816637399996],[143.66972252200003,-20.520054320999975],[143.55000653700006,-20.56445105699993],[143.45821883100018,-20.640943407999885],[143.39359242500018,-20.643453418999968],[143.31776646000014,-20.732997627999907],[143.22738848800032,-20.71942667899998],[143.27271389100008,-20.641756974999964],[143.50180339400015,-20.535959957999978],[143.45035678200009,-20.50446552799997],[143.61534358000006,-20.429534141999852],[143.5202169590002,-20.31745790399998],[143.54529520100004,-20.305429541999956],[143.36297153200007,-20.271256952999863],[143.10366158400006,-20.367267005999906],[142.94517399600022,-20.327997143999937],[142.91109733400015,-20.537758012999973],[142.98751871800016,-20.651716025999917],[142.8513741700001,-20.676716724999835],[142.76636597000015,-20.793821355999967],[142.61753959400005,-20.752761310999915],[142.44231036200017,-20.786933846999943],[142.4401301370001,-20.83640107399998],[142.35288759300022,-20.874279291999926],[142.1982562830002,-20.76098380399992],[142.15835755800003,-20.696412085999896],[142.11662862300034,-20.547738991999893],[142.00617571500004,-20.503375318999872],[141.96642398100028,-20.351885586999913],[141.84823711100012,-20.262044518999858],[141.7587726050001,-20.15673679699995],[141.6276484140002,-20.0773274849999],[141.5420974000001,-20.207338976999836],[141.40099439800008,-20.20159482899993],[141.3462191560002,-20.138025530999982],[141.2537679410001,-20.154548096999974],[141.38542766400008,-20.417560424999976],[141.49774075800008,-20.50627458199989],[141.43328076300008,-20.59479497799998],[141.47493790200008,-20.669306029999973],[141.48293123700023,-20.896607985999935],[141.38779166100005,-21.050578981999934],[141.37013823900008,-21.13178484799988],[141.30638092900006,-21.245123770999953],[141.1868086940001,-21.394531522999955],[141.14275140100017,-21.484353676999945],[141.0147065330002,-21.557206975999975],[140.94488158000001,-21.551993189999962],[140.95632480600023,-21.44870843899986],[140.93703730800007,-21.347415123999838],[140.92420288300013,-21.099468027999933],[140.8847742920002,-21.071888229999956],[140.98721955300005,-20.952058575999956],[140.86028287600004,-20.922703691999914],[140.7825392430001,-20.795047756999907],[140.8402163710001,-20.746089655999924],[140.53394376100005,-20.525790411999935],[140.3940225350001,-20.56643149899992],[140.29214085700005,-20.54106719899994],[140.3280892790001,-20.391102400999955],[140.29735811000023,-20.34476760099983],[140.32277777800005,-20.206032713999946],[140.2146692340001,-19.997402895999926],[140.2065205780002,-19.858405441999878],[140.24572007800032,-19.82207055799995],[140.2593147010001,-19.677583535999815],[140.24043893600003,-19.510422217999974],[140.20136153400006,-19.493498575999922],[140.1818928030001,-19.754110279999907],[140.1287024950002,-20.03096126999992],[140.1450754330001,-20.12643505999995],[140.0468113080001,-20.28456831999989],[140.0147666800001,-20.059991940999964],[140.11324481200006,-19.889844709999977],[140.1200802430002,-19.773876442999892],[140.03647838200015,-19.750243344999888],[139.96435008200024,-19.568386330999942],[139.87430902100016,-19.54887866099989],[139.85184796500016,-19.46005953899993],[139.7671779220002,-19.43168840499993],[139.747143477,-19.32937090699994],[139.6913124780002,-19.32959059799998],[139.65759094700013,-19.24622292399988],[139.64007358100002,-19.10019328599992],[139.54301345000022,-18.95609041399996],[139.5474227510001,-18.87617644699992],[139.39343390800002,-18.87414239599991],[139.3347498080003,-18.8997699169999],[139.26344740200022,-19.00632234899996],[139.20029235100014,-18.998372984999946],[139.19429523400015,-18.91033181699993],[139.02806883900007,-18.910357692999924],[139.1319178330001,-18.80863060999991],[138.993827817,-18.754085215999908],[138.92711660900022,-18.62326077599994],[138.86089526100022,-18.59076419299987],[138.84328657600008,-18.515632178999965],[138.9097515510001,-18.464976129999968],[138.7452333780003,-18.358715701999927],[138.64634292900007,-18.396815310999898],[138.5997896780002,-18.507519610999907],[138.60389485300016,-18.618195070999946],[138.46622978300002,-18.68713901599989],[138.32841154200014,-18.683342651999908],[138.1463881620001,-18.62823906199992],[137.98674025800028,-18.612030146999928],[137.9363403760002,-18.697231186999943],[137.80236822700022,-18.740106465999872],[137.7505492900002,-18.788774476999947],[137.61486807100016,-18.836465829999952],[137.47264092000012,-18.823913594999965],[137.37808215600012,-18.757131619999825],[137.22105407300012,-18.700372723999976],[137.11193845700018,-18.709077832999924],[136.99475073300005,-18.66247176899992],[136.95576482500007,-18.689760228999944],[137.08410651500003,-18.82703216599998],[137.09257508800022,-18.899999649999927],[137.03594963200032,-18.978588039999977],[136.71238704600012,-18.986412042999973],[136.62545782600023,-18.943517652999958],[136.720871041,-18.81344996199988],[136.66508478100002,-18.55732917599994],[136.61100759200008,-18.520534463999923],[136.49687188600012,-18.36499970199992],[136.53646850000018,-18.23807153699994],[136.5261383080001,-18.176183753999908],[136.38316349100023,-18.08085821399993],[136.35462948100007,-18.034744334999914],[136.45216365300007,-17.911394067999936],[136.45550535000007,-17.83377831599995],[136.23995968100007,-17.659669925999935],[136.26640324400023,-17.577297106999936],[136.2215728020003,-17.51588625599993],[136.05970769100009,-17.50258836599994],[135.94934082500004,-17.537260107999884],[135.83843986400007,-17.53420456999993],[135.76457216300003,-17.743003812999916],[135.55065912100008,-17.80260668699998],[135.1988067750001,-17.779705147999948],[135.1088257020001,-17.904411103999905],[135.05601501800004,-17.86913485899987],[134.9348908180002,-17.88515099899996],[134.83204654200017,-17.821048718999975],[134.72912599100005,-17.80498697999991],[134.70684806600002,-17.741378728999848],[134.5670318860001,-17.84023472699988],[134.4691771890001,-17.854093364999926],[134.3223418360002,-17.785614054999883],[134.3132934040001,-17.645765352999945]]]]},"properties":{"objectid":447,"eco_name":"Mitchell Grass Downs","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Australasia","eco_biome_":"AU07","nnh":2,"eco_id":187,"shape_leng":150.378334881,"shape_area":41.1760169523,"nnh_name":"Nature Could Reach Half Protected","color":"#D7FC61","color_bio":"#FEAA01","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":474197.2853604063,"percentage":2.2118426081529243}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-113.52364084699997,37.217866718000096],[-113.63149805199993,37.27742150300014],[-113.67013451699984,37.22031143800018],[-113.78955950999995,37.2223443150001],[-113.89265077099986,37.282321319000175],[-113.93392603199993,37.346343197000124],[-114.02605365799991,37.30802261400015],[-114.16177489999995,37.31689257100015],[-114.27330528699991,37.28768023200013],[-114.41164414199983,37.38670895400014],[-114.55925778499983,37.46522963200016],[-114.619097523,37.31924217600016],[-114.80338266299992,37.231251881000105],[-114.90100342199992,37.29210778700008],[-114.98880869999994,37.182239073000176],[-115.20514995399992,37.12468285700004],[-115.35450182399995,37.135282352000104],[-115.40495807999991,37.0338153080001],[-115.51890208999987,37.15876210100015],[-115.617552,37.19168126500017],[-115.88280138999994,37.17369421400008],[-116.03375341699996,37.23303139600017],[-116.14704951899995,37.22704876600005],[-116.19823361099998,37.07995232500019],[-116.25223712199994,37.138044388000026],[-116.32948529299995,37.09954663300016],[-116.38446191499992,37.01219761500016],[-116.51734924199997,37.04629652600005],[-116.54517371299994,37.13157283200013],[-116.68840915399994,37.06197135100018],[-116.77946427799992,37.05256486900009],[-116.85184719399984,36.978194976000054],[-117.04841896299996,36.95349578300005],[-117.13353238099995,37.15532865000017],[-117.22160245499987,37.03392738900004],[-117.27622029799983,37.029889572],[-117.4492907959999,37.14756907300006],[-117.49568460999996,37.24881572800018],[-117.59153976299996,37.272393363000106],[-117.70860173799991,37.34123609500011],[-117.836651309,37.32757653000016],[-117.88541548799992,37.37364726700008],[-117.96455511599999,37.29981202100015],[-117.88649121799995,37.18546729500014],[-117.87859478299993,37.12136995499998],[-117.6965185439999,37.00185840800009],[-117.72535330799997,36.898677726000074],[-117.85355500299988,36.96220548600013],[-117.9462843579999,36.922874745000115],[-117.90236123199998,36.76209806800006],[-117.83145949299995,36.647173358000146],[-117.68962258199997,36.508065642000076],[-117.74645889499999,36.46353613500008],[-117.82328882699989,36.48103491900008],[-117.99192159499995,36.60798876600006],[-118.07296825199995,36.785497706000115],[-118.17073580399995,36.80858372200015],[-118.09613977999987,36.67156479300013],[-118.05529904999986,36.547942440999975],[-118.075674957,36.501220403000104],[-118.0331327699999,36.34524565200019],[-117.99269143599997,36.04049711900012],[-117.91174013199998,35.92775728600009],[-117.87737119199994,35.65733671300006],[-117.96282371599989,35.58031396400014],[-118.06511796399997,35.55631290200006],[-118.05136491999997,35.36320288600007],[-118.02275709799994,35.288420513],[-118.117814034,35.186668784000176],[-118.25983908899997,35.10643160300003],[-118.36602567799991,34.97824377500018],[-118.52109078499996,34.962210750000054],[-118.74442004599996,34.81712873100014],[-118.68405316399992,34.77572967400016],[-118.5327745489999,34.749373569000056],[-118.19337414999995,34.60342644800005],[-118.20628002799992,34.568882094],[-117.87290051399998,34.41034755200013],[-117.71805214699998,34.42784066400014],[-117.52577084199999,34.32102090500018],[-117.28511564099989,34.30409666700018],[-117.1765178629999,34.41538384600011],[-117.03635744199994,34.39590978000018],[-116.88303454399994,34.34545419300014],[-116.76627838499996,34.33346320200019],[-116.57481402699995,34.269887437000136],[-116.5382402269999,34.15686470700007],[-116.65954063799995,34.006295542000146],[-116.64692662199997,33.96444397300007],[-116.60762978899999,34.01352819700003],[-116.49475897199994,33.98097305200014],[-116.2395776379999,33.848536731000024],[-116.08432865099991,33.73031686200005],[-115.93068426699989,33.680934296000146],[-115.79795419899995,33.701903912000034],[-115.7530138539999,33.680459831],[-115.48392912099996,33.742111378],[-115.49344327199998,33.85926176600003],[-115.2983756029999,34.00404465500014],[-115.41206329899995,34.09391586700008],[-115.38500826599994,34.18195997300006],[-115.29757955599985,34.332276386000046],[-115.17215792499996,34.28752625900012],[-115.04200534599983,34.38576967500006],[-114.98649117299993,34.39516855400012],[-114.96363980399997,34.269447144000026],[-114.87949155999996,34.23330921600012],[-114.80407170399985,34.12904364700012],[-114.7330151139999,34.32932768300003],[-114.76820887099996,34.496616282000105],[-114.67338455699996,34.562444287000176],[-114.61432099499996,34.6723377620001],[-114.45610644399989,34.74895428600007],[-114.27277936299993,34.75941291300006],[-114.21089127199991,34.803374112000085],[-114.09858972899997,34.80639009700013],[-114.08887893399987,34.67934508300016],[-113.99650223999998,34.47646256000007],[-113.88020397699995,34.44744599000012],[-113.75502153699995,34.53618978600008],[-113.72221301999991,34.62879997100009],[-113.76090154599996,34.68173578300008],[-113.863873088,34.72743827300019],[-113.94211947199994,34.85492615900006],[-114.00419341099996,34.895785989000046],[-114.00109842999996,35.08918540700017],[-113.93554837299996,35.18116625],[-113.78994901599992,35.187713234000114],[-113.80253162399998,35.35308103900002],[-113.650399054,35.37000846800004],[-113.737380638,35.47600904200016],[-113.74527701699998,35.557404345000066],[-113.81874380099998,35.58556220000008],[-113.88200469399999,35.67290334300003],[-113.86176631299992,35.73379288000007],[-114.041197464,35.780368913000075],[-113.94516250299989,36.054233500000066],[-113.81110972399989,36.015381159000185],[-113.74251350199995,35.86670939800018],[-113.60517969799997,35.69625448600004],[-113.56632779199998,35.76100264500013],[-113.4048617009999,35.70424171000013],[-113.41080417399996,35.616150491999974],[-113.23027521799997,35.718578535],[-113.28455153999994,35.77575312000016],[-113.26773892499989,35.8946033360001],[-113.20967564699998,36.072537432],[-113.13405933599995,36.13728891000005],[-113.25774423099995,36.22763033300015],[-113.44939840599994,36.188718285],[-113.39436041699992,36.11126751400019],[-113.44745798699995,35.975002642000106],[-113.5555936319999,36.073771678000185],[-113.70608863899992,36.01294179800004],[-113.81623788299993,36.07447146200013],[-113.83148833299992,36.189327972000115],[-113.784477531,36.237359174000176],[-113.81467099099996,36.307053511],[-113.74794112799998,36.550951521000115],[-114.01331111499996,36.63768606400015],[-114.08760667899992,36.53667634700008],[-114.1714515939999,36.58512675800006],[-114.13904030299994,36.63810059700006],[-114.0168413529999,36.66808302600009],[-113.917597393,36.74392929900017],[-113.8607535829999,36.87306311200007],[-113.69506990999992,36.95531532200005],[-113.57186748099991,36.886352971],[-113.43761438699994,36.93963968300005],[-113.35921721899996,36.912929597000016],[-113.30107858199995,37.00016822400005],[-113.30448456199991,37.12205804399997],[-113.26886087499992,37.213912515000175],[-113.28305529699992,37.313329433000035],[-113.4286493649999,37.22247807600007],[-113.52364084699997,37.217866718000096]],[[-115.7311906459999,36.36126896800005],[-115.62969697499994,36.32901973000003],[-115.58752294899989,36.250227267000184],[-115.71033474199993,36.21434354200011],[-115.77320331699997,36.300151493000044],[-115.7311906459999,36.36126896800005]]]},"properties":{"objectid":449,"eco_name":"Mojave desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Nearctic","eco_biome_":"NE13","nnh":2,"eco_id":433,"shape_leng":39.4664674301,"shape_area":12.6825277192,"nnh_name":"Nature Could Reach Half Protected","color":"#FA5D4E","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":127612.63890942812,"percentage":0.4837077346526381}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[125.25059461400019,46.284852153000145],[125.2794266850002,46.22579695100012],[125.46890262300008,46.1757898460001],[125.6326146040002,46.163804731000084],[125.83398463100002,46.211873939999975],[125.90071866200003,46.291730175000055],[125.91937258700011,46.459955810000054],[126.04697465800007,46.68560385200004],[125.96599558300022,46.74360997500003],[125.8460996660001,46.624350413000116],[125.70575760500014,46.60583428600012],[125.76997354500008,46.73294802700019],[126.00759865600014,46.871154714000056],[126.24320959600004,47.07401353500012],[126.45426156000008,47.48479133100011],[126.40998868200029,47.572994769000104],[126.28417966800009,47.4582520460001],[126.16342963600016,47.258333765000145],[126.01078059400015,47.139623049000136],[125.8302615570002,46.95874811700014],[125.75372354900026,46.92937876600007],[125.66025560600019,46.9794053170001],[125.50038169900006,47.13640791900002],[125.36930063600016,47.23082553200004],[125.26013959000022,47.17001113600014],[125.15273254200008,47.17199915600014],[125.15641756100001,47.28864205600007],[125.40247369400004,47.45585985100013],[125.69963060200007,47.582275715000094],[125.78495066500011,47.65943230700003],[125.63321659200005,47.71045479600002],[125.46232567900006,47.65380939100004],[125.3684926200001,47.591312915000174],[125.0423816010001,47.45291109800013],[124.85507154600009,47.424681686000156],[124.85302753500002,47.37105426900007],[124.98118566100004,47.289606813000034],[124.84934268300015,47.05279659100006],[124.71929963400032,46.9959191750001],[124.53350854700022,47.086121697000124],[124.49257669700012,47.2035204770001],[124.51415255400002,47.304128963000096],[124.5983655350002,47.42301469299997],[124.65570864900008,47.610557933],[124.71989458200017,47.68005849500008],[124.9535295720002,47.79403142300009],[125.42145568700005,47.888259102],[125.59875456500004,47.94169155600008],[125.70359054800008,48.01385102500012],[125.6682056730001,48.09801170300011],[125.47909568800003,48.118786921000094],[125.20227864200001,48.03129628000016],[124.99005153500002,47.99520095500014],[124.86347960100011,48.02734002200003],[124.88301865500011,48.080997613000136],[125.04412067800001,48.18457949700013],[125.17210362300011,48.18927554200013],[125.5155405390002,48.344816843000046],[125.77479565400006,48.39113524000004],[125.87905161000003,48.339399619000176],[125.98894456300002,48.21912567800007],[126.22257955300006,48.150788189000025],[126.36956762500006,48.03847118900006],[126.40595262800014,47.79759825800011],[126.60785658300006,47.71629480300015],[126.70293469,47.6250011250001],[126.99680354500015,47.451675102000195],[127.19647254900019,47.40029873000009],[127.22747754400007,47.62532902500004],[127.17419462300006,47.73864900400014],[127.002624609,47.80982846100011],[126.90872164500024,47.873335794000184],[126.72221357,47.95083939700015],[126.86550153400015,48.08037265900009],[126.87455767800031,48.1395271020001],[126.77958669200007,48.168077373000074],[126.57285258200011,48.311129638000125],[126.64361562600004,48.388919232000035],[126.91777762100014,48.49123813000017],[126.93357063500014,48.52832453100012],[126.79073361700023,48.63397355900014],[126.82308960700004,48.66852376400004],[126.74467455600018,48.884822799000176],[126.67077668000002,48.91459314000019],[126.51634966900008,48.8797608000001],[126.29073364600004,48.79697391600013],[126.20471956100005,48.82107524000014],[126.00228855300031,48.68975294600011],[125.88919069500002,48.66148967100008],[125.95447566300004,48.831252380000194],[125.85239363700009,48.880386928000064],[125.71929169700013,48.854663538000125],[125.61429561900013,48.89453189300008],[125.60530066300021,49.19631913200004],[125.61746967800013,49.33864384800006],[125.4752805810001,49.43723212800006],[125.29326654800002,49.41598786000003],[125.09561154800019,49.268635175000156],[125.03971867000018,49.13775561300014],[124.75289162000013,48.97850196700011],[124.55370357000004,48.8057631800001],[124.46989459600002,48.790717161000146],[124.24713864600005,48.80951207000015],[124.13145463600006,48.791492151000114],[123.96450757600007,48.69942298000012],[123.856925681,48.5337836650001],[123.79252668100014,48.474510031000136],[123.60712468200006,48.37254216700006],[123.32057959900021,48.28448742400019],[123.20596361000014,48.19977756300017],[123.11877455100012,48.065056575000085],[123.03757469600009,48.01495408400018],[122.670516571,47.8793020330001],[122.41555768400019,47.62418120800004],[122.29682953400004,47.474598266000044],[122.22339668600023,47.26192373400005],[122.06084459400006,46.913002874000085],[122.01545759400017,46.655409723000105],[121.86633264000022,46.51839695400008],[121.62489359500012,46.42586359300003],[121.34751864900022,46.37900741300018],[121.19773068600023,46.37999949500005],[120.6012266790002,46.50436581600013],[120.46612565500016,46.573485168000104],[120.13462054600006,46.60553622500004],[120.13752755700023,46.69370982300006],[120.06560563100015,46.83790236300007],[120.07811763300015,47.12151478600015],[120.21321061100002,47.30606719500008],[120.24311053600013,47.381175585000165],[120.45694763800009,47.61754709900009],[120.5794675940001,47.89017017600008],[120.93682869500003,48.12543192600003],[121.10844464200022,48.45288874400006],[121.26200865200019,48.64267866900008],[121.47150459900001,48.781702758999984],[121.72138254400011,48.829063529000166],[121.89002962100005,48.90064716200004],[122.01594558800002,48.88734491400004],[122.1624066060001,48.95066952200017],[122.23284962900027,49.07805902800004],[122.18452460400033,49.26801709400007],[122.08581562400013,49.45389820200006],[122.1742475530001,49.57991860700008],[122.24471253700005,49.79322731500014],[122.18960554600005,49.90544574300014],[122.10047959600001,49.90309981600012],[121.84108768800013,49.82180776000013],[121.7628855380002,49.81977062300007],[121.53104360400005,49.966409672000054],[121.53025067600015,50.162650980000194],[121.47961459300006,50.26403965500003],[121.38369762500008,50.278634560000114],[121.30203257500023,50.368246995000106],[121.31787856300002,50.55092755800001],[121.30341357700013,50.70680698500007],[121.16832764100002,50.84744509400019],[121.05993655700001,50.896880721],[120.83860754200009,50.90900380300019],[120.6465756250002,50.95132453500008],[120.52455154300014,51.002515332000144],[120.37477162700009,51.167312098000195],[120.35090667200018,51.25338452100016],[120.38463561800006,51.51222758200004],[120.30760961600026,51.635024811000164],[120.14021261600021,51.543154123000136],[120.05098759200007,51.549547168],[119.92082267100011,51.33429184700009],[119.75861356600024,51.21040379800013],[119.74664253100002,51.07151650000014],[119.51914963200022,50.89762486600006],[119.50221265600021,50.740120188000105],[119.29193166000005,50.59511426900008],[119.26470958500033,50.47622334300007],[119.20110368100006,50.407329631000096],[119.22747767400006,50.350115765000055],[119.35942056500005,50.33983167300016],[119.31387363800002,50.08649401400004],[119.17414865300032,49.99928081400009],[118.91137665900021,49.98288480600007],[118.58332858200004,49.92483207900011],[118.23719755500008,49.72870845300014],[118.17221064800015,49.666772894000076],[117.88581861800003,49.540382176000094],[117.7974545830001,49.44723006300018],[117.51277162300005,49.29580042000009],[117.43402867200007,49.23522977100015],[117.28865864300008,49.25945682300011],[117.08271762900029,49.33820078100007],[116.90100852900002,49.47145728300012],[116.79197656500003,49.628945197000064],[116.71323361300017,49.78642925600019],[116.67083761200001,50.06506282800012],[116.60420952800007,50.174091440000154],[116.37403861100006,50.264947582000104],[116.15598256200019,50.2770637910001],[115.9379276860002,50.21043470200004],[115.79861458700009,50.131690577000086],[115.30193368200003,50.09534731500008],[115.17452959200023,50.00895503900017],[114.82467666500031,49.857235048000064],[114.5356066170001,49.6943572350001],[114.11454757800004,49.58577772500013],[113.61885858700009,49.500895701000104],[113.37617466200004,49.426282848000085],[113.26976053400017,49.359815027000195],[113.2156675870001,49.26597593200012],[113.27495563800028,49.16093375400004],[113.45310963700001,49.17285902300006],[113.69084958000008,49.33442490100015],[113.78581268800019,49.37370819900008],[114.04629558400006,49.378805234000026],[114.2575606160002,49.42968590100003],[114.42111954200016,49.400041624000096],[114.44129964500019,49.342161062000116],[114.26454961400009,49.25342202100012],[114.31904556400002,49.18321603800018],[114.4653855470001,49.241642765000165],[114.86473059500008,49.47359047800012],[115.02204852400007,49.483901560000106],[115.05351268000004,49.41327162000016],[115.01708962300006,49.320103749],[114.85176060600008,49.14832569500004],[114.5170975310001,49.00214932700004],[114.09668758600014,48.8790897450001],[113.75972753500025,48.83591037100001],[113.53663664300029,48.87979885400006],[113.37999764800031,48.96984178400004],[113.27494859700016,48.98045092700005],[113.1881566720001,48.919152225],[113.00813267,48.848644661000094],[112.9846955270001,48.714117294000175],[112.87509158200021,48.62859858000013],[112.87098662900007,48.51117716900012],[112.80191756700003,48.43888861800019],[112.60115858100005,48.34638492900012],[112.22186254200028,48.21380367300003],[112.09370458300032,48.21443365599998],[111.7590336290001,48.097218775000044],[111.64504963700006,48.14594412000008],[111.45819052800005,48.05723625899998],[111.54472362000001,47.984885850000126],[111.49336267000018,47.911528271],[111.29129057500018,47.83601956100006],[111.20705462700016,47.840292823000084],[111.098579556,47.92124122100006],[110.89675154200006,47.855135665000034],[110.68493665800014,47.82723868000011],[110.5955356130001,47.83879380400015],[110.23753363200007,47.73631481100017],[110.10478959900007,47.73729884700009],[110.08770761600005,47.784914427],[110.15971352800011,47.89520518600011],[110.05099454400016,47.933432531000165],[109.90626556300009,47.78489112500006],[109.76854653500016,47.69617270400016],[109.54216759100007,47.69724458100012],[109.48968464000018,47.639024385000084],[109.50111353200009,47.536777571000016],[109.44039167300008,47.45152590400011],[109.34235358100011,47.422152865999976],[109.01900456600009,47.425746691000086],[108.80659456700005,47.46418693700008],[108.59133153500005,47.54119164900004],[108.53143361700012,47.632081319000065],[108.61054956300018,47.77501104100003],[108.70602463699998,47.88262109900012],[108.64154064400014,47.92560517500016],[108.55238368099998,47.858602923000035],[108.39321167400004,47.82345039500012],[108.31219454500018,47.71045060500012],[108.05001867200008,47.5182805550001],[107.90795865600012,47.466099184000086],[107.6504436240001,47.52087827399998],[107.39038854000006,47.40099677500007],[107.19546453200007,47.26808376200012],[107.04550960200004,47.21592552599998],[106.77008864500004,47.17808726800007],[106.49675763200014,47.22124652499997],[106.431686571,47.25838288300008],[106.45053059800017,47.384436648000076],[106.35265360500011,47.421416767000096],[106.30990556400013,47.34913123400008],[106.15043667100014,47.22976572400012],[105.96932251800007,47.19468829800019],[105.87823453200019,47.26051959800009],[105.97811161400006,47.39311158300006],[106.36645457700018,47.623608221000154],[106.43975063200014,47.77203228000002],[106.60842855500005,47.86236472100006],[106.72402958400005,47.881991115],[106.85109756000014,47.95496362900013],[106.58689159,48.07938057700011],[106.47216060200014,48.11144672100011],[106.19399256000014,48.03983727200006],[105.85774966400004,47.99848884100004],[105.63063864500009,47.99639504099997],[105.42986255900013,47.91407720800015],[105.26079554799998,47.88599716200008],[105.00984153500008,47.903407213000094],[104.83618157700016,47.96476676800006],[104.5708995380001,48.101601673000175],[104.44175754400015,48.135522061000074],[104.27608453300019,48.184552507000035],[104.08264965400019,48.16447919000018],[103.78076954300013,48.05122039900016],[103.5685955780001,48.03350826500014],[103.18435656400015,48.136849084],[103.05730451300002,48.139710163000075],[102.76708262400001,48.07233039000005],[102.64115157000003,47.960006517000124],[102.32022861299998,47.85377762900009],[102.151519678,47.87306505900011],[101.99762760000004,47.839666527000134],[101.94578552900003,47.66662750100011],[102.0081255990001,47.46577396600003],[101.99230157100016,47.37656738200013],[102.0595775760001,47.28858103599998],[102.17818452300014,47.25178766600004],[102.4721675400001,47.246969748000026],[102.76776859900002,47.18887528000005],[103.06491058699999,47.21315547400013],[103.26464865800017,47.165933173000155],[103.4399415790001,47.071034606000126],[103.51320662100011,47.115128781000124],[103.45793165700019,47.184805363],[103.57490564300019,47.23473954600007],[103.76494551600013,47.173307404000184],[103.88700061100013,47.18405333900017],[104.06606253799998,47.056382537000104],[104.20307966500008,47.05741669600013],[104.27664159500006,47.281298000000106],[104.7727355990001,46.98080123900013],[104.88539156300004,46.83416738700009],[104.76943162000003,46.70029766400006],[104.67530066800003,46.6617117400001],[104.38964054600007,46.603125255],[103.9141465780001,46.569571155],[103.34910555300007,46.41224065300014],[103.36865952700003,46.32750832900007],[103.46706357300013,46.19126284000009],[103.61087758600013,46.107998522],[103.85309564500005,45.92633518800011],[103.94393167100009,45.82793080600004],[104.102889603,45.71438971300017],[104.2391355950001,45.57057117400012],[104.25943757100003,45.49489935200012],[104.347076571,45.53836035900014],[104.6404346330001,45.58552532800019],[104.7786946290002,45.543086243000175],[104.9537585560002,45.387865969000075],[105.10201263000016,45.38182814900017],[105.1565325520001,45.41699911800015],[105.18582965000013,45.56010016600004],[105.2779615190002,45.658286618000034],[105.77677159400014,45.708408387000134],[105.84479560000011,45.733722573000136],[105.91256764600013,45.85467980600009],[105.95674161699998,46.00198421100009],[106.09592462800003,46.07795861900007],[106.35173763100016,46.091320379000194],[106.9377666060002,45.900246011000036],[107.44017754800007,45.818721777000064],[107.77336155200004,45.8347627280001],[108.06356852100004,45.802650651000135],[108.21128062200006,45.82108664700013],[108.59495553500005,45.94120418099999],[109.15283154100013,46.090588471000046],[109.42992368200004,46.11628068100009],[109.67687265400014,46.16055758099998],[109.85482766700005,46.22215803200004],[110.06481965500018,46.33205618200003],[110.27175861900008,46.35848834600017],[110.649749596,46.35383421000006],[110.81587254599998,46.40923171700018],[110.98316963400015,46.40650340800016],[111.02151466200007,46.138359619000084],[111.34525259700013,46.02491843900003],[111.38591756800008,45.94031905200006],[111.33629552700012,45.868041901000026],[111.197799665,45.78017776200011],[111.17668162700011,45.71945154400004],[111.241714635,45.658401450000156],[111.34117161600005,45.6615755090001],[111.7485426720001,45.76155468200005],[112.1202545970001,45.95759197500007],[112.23055256400005,45.90438885000009],[112.16196462300013,45.80579772000016],[111.9754255360001,45.668537518000164],[111.92581154200019,45.568595224000035],[112.07913968500009,45.50955930100008],[112.22732553100013,45.51570105700006],[112.49346956500005,45.655528301000174],[112.67774956200014,45.78536565800016],[112.76609063100011,45.790622620000136],[112.80730461600001,45.669368499000086],[112.71884955400014,45.534191200000066],[112.72431153700006,45.463138309000044],[112.80249055400009,45.40171421400004],[113.07052655100017,45.2565260720001],[113.26596856100002,45.19510180900005],[113.67361454300021,45.10575373900019],[113.82996352500004,45.061083727000096],[114.04215961800003,44.97173582400018],[114.11517353800002,44.868182943000136],[114.10105154000007,44.64579697000016],[114.00344863600003,44.46502194900012],[113.99842066800022,44.392814200000146],[114.05354257800002,44.23978730200014],[114.02391053800034,44.08521662600015],[113.96052558100007,44.03175399700001],[113.74052459400014,43.91635933000009],[113.68862954900021,43.70570098100018],[113.63694757300004,43.6246810020001],[113.51895166600013,43.52511455300004],[113.52883962900012,43.492254475000095],[113.28672768500007,43.27928439700014],[113.30438265600003,43.191451775000075],[113.39370759200017,42.980568958000106],[113.42525456100009,42.84155056700018],[113.3913195880001,42.78453200000018],[113.27466562400014,42.71919825000009],[113.16339166800014,42.70775846100008],[113.09298653100007,42.552211460000194],[113.21205867400022,42.37813542500004],[113.12969155600013,42.26011739000012],[112.8514785870002,42.04824668200018],[112.74767257200006,41.99150404700009],[112.46524853500023,41.90598684200006],[112.2823716690001,41.870613031000175],[112.07614868700011,41.87124620000009],[111.88455967000004,41.83464444000015],[111.81005058599999,41.79331294000002],[111.7402645360001,41.68041390100012],[111.57257852800012,41.597864393000066],[111.23927265100014,41.57774564600015],[111.05481764000007,41.58605848200017],[110.89433252500004,41.53247699800005],[110.5902405980001,41.39219344300011],[110.40567058700015,41.33636192100016],[109.82106066700004,41.23403363600005],[109.6120076200001,41.13780067000005],[109.4788815400002,41.12933695900006],[109.36205256200014,41.15144976100004],[109.17716253000003,41.006466138000064],[109.07307454699998,40.95950468100011],[108.91356659400014,40.96425755500013],[108.95719859100006,40.87326260900005],[108.83644068000012,40.768267704000095],[108.79934656700004,40.64478701500008],[108.92501057400005,40.607251344000076],[109.47370152400003,40.50205041300012],[109.68781254700014,40.48184080600015],[110.00051168300018,40.48606377600015],[110.27455163700006,40.42418555000012],[110.73638159400019,40.24445055600006],[110.95104967800012,40.23000065700006],[111.36915560500006,40.13376886500015],[111.72862961700014,40.152895698000066],[112.05133054200019,40.2214330110001],[112.15288568100016,40.159830549],[111.75686657200009,39.83817568500007],[111.68791167200004,39.508918267000126],[111.58204655800012,39.376325108000174],[111.46145662000009,39.29773940100006],[111.57998662200004,39.25353609400008],[111.68183864800011,39.15894430500009],[111.56931260400006,38.98057120200019],[111.34589364500005,38.70533749700007],[111.42055561500018,38.66748113500006],[111.73514554100012,38.78360234500019],[111.8530425410001,38.736800815000095],[112.04972859300005,38.75603074500009],[112.18618061200004,38.73378718600003],[112.37230664000026,38.888089474000026],[112.43985757100006,39.00828462400011],[112.567321676,39.17250521800008],[112.67705554100019,39.232917450000116],[113.04728655100018,39.70890159200013],[113.12493868100023,39.84102469400017],[113.33216061800033,39.93134473000015],[113.66081956800019,39.84722378200007],[113.95919755200009,39.89423921800011],[114.08052861800002,39.94635554500002],[114.14009059000023,40.02030958000012],[114.2021406450001,40.21694684900018],[114.4248355750002,40.1819405010001],[114.67400357300005,40.31761568500008],[114.74076861700007,40.21101212600007],[114.88329366100015,40.27892834100004],[114.98542061300009,40.28436316700015],[115.08769961300004,40.38863706000012],[114.99608658500006,40.48438488100004],[114.86627957100018,40.493780659000095],[114.82052661700016,40.57459360500002],[114.69893655000021,40.64351698900015],[114.65490758600004,40.71363831500008],[115.05007157300031,40.868696483000065],[115.12966160000008,40.94829673500004],[115.42661264800006,41.175993315000085],[115.73724363300005,41.36614248800015],[115.96718555700011,41.45777462700005],[116.0723876620001,41.535613003000094],[116.29919458600011,41.65248690900012],[116.40502164600002,41.74081523700016],[116.56043269200029,41.80920452600003],[116.82334868700002,41.96498454400012],[116.98821267600022,42.130087249000155],[117.04489864900006,42.22905858300004],[117.29496753400008,42.48363089600002],[117.32935362100011,42.53468624200019],[117.31970957100009,42.70194443800017],[117.27822166500016,42.765328893000174],[117.29048958600015,42.89612631300014],[117.2713925930002,43.05894042300008],[117.13809166600015,43.12215824599997],[117.09749559500005,43.17436878500007],[117.14981861900003,43.41037602199998],[117.17191365200006,43.65026592300018],[117.10235559000023,43.78318446800006],[117.24041760500006,43.91037414900018],[117.35998562200018,43.94385616400018],[117.47407556200005,43.82586746500016],[117.4587405340003,43.76741877800015],[117.59777853900005,43.709679870000116],[117.72245767200013,43.59996629000011],[117.92682657700027,43.56421043199998],[118.14713266400008,43.43889477700003],[118.17044860400017,43.35418206600008],[117.98465768500012,43.35504825200019],[117.62898268800006,43.29005749000004],[117.55998956600001,43.20188875300016],[117.80705253300005,43.13371605200007],[117.91901363700003,42.982708858000024],[118.11357169100017,42.862950572000045],[118.37186456400002,42.78951403600013],[118.51164269100002,42.78714883100008],[118.93766063100031,42.68590734200018],[119.12757058500006,42.51755061400013],[119.28649163700015,42.51362956000003],[119.36820262000003,42.558001176000175],[119.42382861800002,42.690363498000124],[119.530464531,42.72772415500003],[119.57369956100024,42.84653260300013],[119.66899056900013,42.8768553110001],[119.82814765500018,42.60975909300009],[119.71440154100026,42.52409654600012],[119.67736057000013,42.3994371930001],[119.58117655400008,42.33348184100004],[119.41220057100008,42.339809843000126],[119.32560763200001,42.27172213500006],[119.309913692,42.104616489000136],[119.31420153800002,41.80619072899998],[119.4594426540001,41.86123736899998],[119.63508560300022,41.98283330300012],[119.7236405770002,41.942973498000185],[119.91738156400004,41.962851517000104],[120.14003760200012,42.11529721300013],[120.17934453700002,42.304005035000046],[120.1773836750001,42.40214136300017],[120.25678259400001,42.50029361700018],[120.25822461600012,42.582040978000066],[120.18982661000018,42.65494777700019],[120.277175596,42.713400320000176],[120.54178658,42.786863008000125],[120.71500363900032,42.93030620500002],[120.75299059100007,43.05645351300018],[120.70429961300022,43.26536440299998],[120.77961755100023,43.43622380000011],[120.76894353300008,43.51387240900016],[120.84937258700006,43.55322829500005],[121.34934959200007,43.58519519700019],[121.41102564700009,43.660397968000154],[121.19493062800018,43.79276364200018],[121.29576056400003,43.943451150000044],[121.65814158700005,44.141311507000125],[121.95858755400025,44.248283535000155],[122.14961967700003,44.25564938400004],[122.36029864600005,44.22581047900019],[122.68589065800029,44.29489546600007],[122.92209654500016,44.41838805700007],[122.99139359500009,44.36917119800006],[122.98360462700009,44.25081654600001],[123.11429559700014,44.18591664300004],[123.22713462200022,44.26742528700015],[123.23652654400007,44.419750116000046],[123.28100561600024,44.454200241000194],[123.45477269500009,44.367732361000094],[123.54782053800022,44.27168631100011],[123.80208557100002,44.055572684000026],[123.76130660600006,43.99767284400019],[123.65157357900011,43.988914928000156],[123.57541661300013,43.93429207700012],[123.69842556800006,43.792817621000154],[123.68926968000005,43.658265947000075],[123.55069754200008,43.66568879300013],[123.70105765300013,43.55404033400015],[123.94067363400006,43.47260058900014],[123.97713457800023,43.52475161700005],[123.9994586040001,43.72266478000017],[124.0916746260001,43.828114486000175],[124.13912960900018,44.01447705100014],[123.9913326840001,44.11022185500008],[123.87236766100011,44.360122263000164],[123.93624866000005,44.394630055],[124.0494616850001,44.35387439200019],[124.1575545410002,44.26721557200011],[124.25445554400028,44.26530449800009],[124.23957867200022,44.37382131000004],[124.36309054200024,44.41296328900006],[124.40854660900015,44.644987781000054],[124.52151454700015,44.834582910000165],[124.46033453300015,45.03071173300009],[124.30476356000008,45.05297792400006],[124.02210265000008,44.999190748],[123.93135865800002,44.948778797000045],[123.82294460700018,44.77460368700014],[123.68247262700004,44.78563980400014],[123.6448516280002,44.8573069200001],[123.66732753400004,45.06680990800004],[123.88026458800005,45.24150804900012],[123.99550653600011,45.28466680399998],[124.30541265400018,45.16696895700005],[124.51564067700008,45.14571697700012],[124.57593556200015,45.164366712000174],[124.51263459100005,45.37747911500003],[124.41762555100013,45.47138928700008],[124.30363468500002,45.46948927799997],[124.20729057500023,45.51560215000012],[124.02375757300001,45.68382242100017],[123.83291655800008,46.03309716500013],[123.78578964200005,46.19773987100018],[123.69620553700008,46.24746484200011],[123.42765053300002,46.28132823300007],[123.35343163000005,46.19552788700014],[123.23348257200018,46.28337224400019],[123.15460165500008,46.444162628000186],[123.09185757700004,46.497690971000054],[122.8321376020001,46.6257203510001],[122.86415060500008,46.76777215200019],[122.92874859100004,46.82671738300007],[123.11758465600019,46.928932849000034],[123.05374858400023,46.991925198000104],[122.84132366500012,47.06091060800003],[122.87363456000003,47.17481011100011],[123.12920365000002,47.47644412900013],[123.16577154700008,47.56400366900016],[123.32836957200016,47.61951517000011],[123.32330355000022,47.725449686000104],[123.55921154400005,47.763494138000056],[123.71279868800002,47.891970944000036],[123.75549358800015,47.803022523000095],[123.94103958800008,47.64662241200017],[124.07837656900017,47.596017007],[123.82015963600008,47.29201409600017],[123.71200559200008,47.08809362300019],[123.72904164300007,46.93839283200015],[123.93493655700001,46.76071123700012],[124.167350639,46.772052120000126],[124.24998463700013,46.90572369400019],[124.3378755980001,46.958923969000125],[124.87007867300008,46.649352456000145],[124.90287069000033,46.57500732200015],[125.19525863000001,46.53398410900019],[125.29557056500016,46.462690825000095],[125.28781864600012,46.327806389000045],[125.25059461400019,46.284852153000145]]]},"properties":{"objectid":450,"eco_name":"Mongolian-Manchurian grassland","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Palearctic","eco_biome_":"PA08","nnh":3,"eco_id":734,"shape_leng":134.47724008,"shape_area":103.136131987,"nnh_name":"Nature Could Recover","color":"#F6FC38","color_bio":"#FEFF73","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":889316.8402352862,"percentage":8.393504950803557}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-106.82117076499992,44.29424911899997],[-106.61455276599992,44.34968342200017],[-106.54606109299993,44.40991670700009],[-106.48035026999997,44.54973687500012],[-106.37868732499993,44.65347207600013],[-106.338031076,44.78262077300019],[-106.20727068799994,44.90355444400018],[-105.9889646879999,44.98699386100009],[-105.93240741799997,45.11666809100018],[-105.90751289199994,45.27171373500005],[-105.80529823699999,45.34547699400014],[-105.89330617299998,45.38890823700012],[-105.98965990799996,45.291040282000154],[-105.9929161209999,45.1523647300001],[-106.26308653499996,45.205805782000084],[-106.32297327999987,45.24112336900009],[-106.46670728799995,45.201224228000115],[-106.54403691299996,45.1321145010001],[-106.69423121799997,45.07716456300011],[-106.77462896799994,45.08382022200004],[-106.81470325699985,45.22108171700006],[-107.08633717699996,45.25643060400017],[-107.14371106499993,45.096450379000146],[-107.29728134499993,44.88261199700014],[-107.48209125299996,45.011642375000065],[-107.37860953599994,45.065886127000056],[-107.38743299699985,45.204079094000065],[-107.45585706499992,45.26916279699998],[-107.5668196549999,45.197193524],[-107.65120180199995,45.36307297200011],[-107.89986830399994,45.28686181800009],[-108.01020938299996,45.38141239700008],[-108.04974613199988,45.468266971],[-108.19277308799991,45.42199247899998],[-108.20417157499998,45.488165771000126],[-108.08043487999998,45.578172044000155],[-108.1583000629999,45.643699016000085],[-108.13499814099993,45.76807105600005],[-108.3121988129999,45.82278507500018],[-108.71208370399984,45.64453267300007],[-108.81536942699995,45.53911204000008],[-108.88469242699989,45.31658363900016],[-108.86321537299995,45.247650021000084],[-108.76219907299992,45.20923674300002],[-108.65156370499994,45.231718902000125],[-108.69507673599998,45.346477964000144],[-108.56227040399989,45.334796294000114],[-108.40929732399985,45.36087180000004],[-108.36081367699984,45.23299467900006],[-108.26784007599997,45.13671865800012],[-108.27529166599999,45.03031439000017],[-108.1095108259999,44.99065996400009],[-108.02364109599989,44.91722111200011],[-108.01651414799989,44.998411451000095],[-108.1114257669999,45.2122118800001],[-107.96167037299989,45.24961281500015],[-107.73498260399992,45.00394877600007],[-107.59644476399984,44.94330242500007],[-107.47179828499998,44.933659462000094],[-107.31151099499994,44.82529392100014],[-107.18758146099998,44.69611292900015],[-106.89408628199993,44.57597244700003],[-106.9221006809999,44.457628964000094],[-106.82117076499992,44.29424911899997]]],[[[-113.41003345099989,46.30687023800016],[-113.54224691699994,46.33868152800005],[-113.50874854199992,46.24053206000008],[-113.55806560099995,46.183461925000074],[-113.42439815699998,46.14107671300019],[-113.31786089899992,46.245553278000045],[-113.28122563599999,46.346605898000064],[-113.38344489499997,46.39747530000011],[-113.41003345099989,46.30687023800016]]],[[[-109.55495353999987,46.743696961000126],[-109.63436751299997,46.81102404000006],[-109.58972825899997,46.892694185000096],[-109.71474108699994,46.801659043000086],[-109.55495353999987,46.743696961000126]]],[[[-108.89620824699989,46.935712040000055],[-108.86503167599994,47.01957732100004],[-109.13011592099991,47.04108581500009],[-109.15440783499997,47.13935360200014],[-109.00830971899995,47.25216194100017],[-109.1725549389999,47.28959929600006],[-109.42795091399995,47.25803669400017],[-109.42836759599993,47.32256364800014],[-109.53493974399993,47.32965389800006],[-109.5323975849999,47.23393376400003],[-109.62200115799993,47.20814798700013],[-109.54388269699984,47.12477723900014],[-109.51283435199997,47.13055085900004],[-109.42881862499996,47.16752145200019],[-109.40508269999998,47.03702463900015],[-109.30404252399995,46.92261417100019],[-109.04940855199999,46.9666550930001],[-108.89620824699989,46.935712040000055]],[[-109.2827854279999,47.23751962000006],[-109.14756637999994,47.21153552700014],[-109.2151925359999,47.13213994200015],[-109.17300633299988,47.0219337370001],[-109.37942925699997,47.14465940800005],[-109.2827854279999,47.23751962000006]]],[[[-110.43763050099994,47.60838608900008],[-110.56805789499998,47.61253729300017],[-110.79188578299994,47.57839835700008],[-110.91646842299991,47.43136705800015],[-110.727082151,47.297757607000165],[-110.41288239399995,47.38962681100003],[-110.36451028599993,47.445088633000125],[-110.21364557399988,47.443290589000014],[-110.22496843699997,47.52342430000016],[-110.41906217199994,47.55332537900017],[-110.43763050099994,47.60838608900008]],[[-110.52935431699996,47.570553818000064],[-110.44577264799995,47.49390475600018],[-110.505614101,47.380563123000115],[-110.6615009059999,47.41037835100019],[-110.673220932,47.50730511100005],[-110.52935431699996,47.570553818000064]]],[[[-108.45554951699995,48.04822668500009],[-108.5287625389999,48.0787592260001],[-108.69429057299993,48.033118871000056],[-108.80966741499998,48.04274393400004],[-108.94231585699993,47.94675234200008],[-108.8722413619999,47.85820601900008],[-108.671610849,47.823200139],[-108.51049786399983,47.86909564000018],[-108.33753442699998,47.96484512600017],[-108.45554951699995,48.04822668500009]],[[-108.64530864199992,48.03306332900013],[-108.39997229199992,47.96698871100017],[-108.56708149699989,47.87915596700009],[-108.71287665299997,47.92531414900009],[-108.64530864199992,48.03306332900013]]],[[[-109.75547743499993,48.27894751100001],[-109.87328212199992,48.244761661000155],[-109.91065509899988,48.08218556500003],[-109.82232578999998,48.034426573000076],[-109.59971900999989,48.0041034730001],[-109.40434486799995,48.007154302000174],[-109.28910651899997,47.943413129000135],[-109.25470898599997,48.032626614000094],[-109.31615529199996,48.07883441500019],[-109.25689617199993,48.150966339000036],[-109.31786642699996,48.19943408000006],[-109.47896780699995,48.19846042100005],[-109.78249746899996,48.063607246000174],[-109.84235450099999,48.257216663000065],[-109.75547743499993,48.27894751100001]]],[[[-109.28098574699993,48.31654032500006],[-109.45215464699999,48.30253371500004],[-109.41416876399984,48.247690222000074],[-109.10767800799994,48.12425036700006],[-109.01513154099996,48.241736379000145],[-109.28098574699993,48.31654032500006]],[[-109.1071461389999,48.252535277000106],[-109.11421373299999,48.14893888600005],[-109.24707389499997,48.204775178000034],[-109.1071461389999,48.252535277000106]]],[[[-109.55657538799994,48.378049154000166],[-109.70126699699995,48.339991889000146],[-109.66142172099995,48.265620232000174],[-109.54251568899997,48.24808048600005],[-109.42874311099985,48.36953172800014],[-109.55657538799994,48.378049154000166]]],[[[-114.16607698799993,44.0190836810001],[-114.2056731859999,43.94148514000011],[-113.9340384969999,43.881098558000076],[-113.9390750849999,43.759861611000076],[-113.76744101299994,43.76783457099998],[-113.78074248899998,43.6803408830001],[-113.70733504299994,43.586180567000156],[-113.55788485299996,43.51484613400015],[-113.276442681,43.57772952900012],[-113.09548720599997,43.631532766000134],[-112.83836000799988,43.809972875000085],[-112.69635791499996,44.01799191499998],[-112.41473723699983,44.21705723800011],[-112.38504853699999,44.29356125000004],[-112.21460526499993,44.32476773400009],[-112.18131328099986,44.36176809400018],[-111.9965189859999,44.34876405400013],[-111.94087803699995,44.39095194000009],[-112.15492184099998,44.39888620500011],[-112.12481049999997,44.55726234500003],[-111.89018709699997,44.607888886000126],[-111.77607314999995,44.578645353000184],[-111.45170641799996,44.62428500500005],[-111.42473686199997,44.80590399700003],[-111.50223857699984,44.85743886700004],[-111.52289966199987,44.95050702600014],[-111.5835845009999,45.018745882000076],[-111.55590517599995,45.17789540100017],[-111.61611145799992,45.257668027000136],[-111.58051641299988,45.32956152200006],[-111.63757202799985,45.46279924100003],[-111.58242792099998,45.55059079000017],[-111.45139037199993,45.46536096400018],[-111.30160855199995,45.479470167000045],[-111.06629133799993,45.585382417000176],[-110.86019018699989,45.65735222500007],[-110.64139257999994,45.617251675000034],[-110.75705175499996,45.52292302800009],[-110.74668901099983,45.48066789100005],[-110.88898557099998,45.308681233000186],[-110.98240971799993,45.23983358800007],[-110.9562569439999,45.151776698000106],[-110.69444543899994,45.31680366400019],[-110.61020890099996,45.3470023910001],[-110.58890455399984,45.43461186500019],[-110.46840664199993,45.640786559000105],[-110.24836938399994,45.540922473000194],[-110.08747706299994,45.59724260600012],[-110.00724787899992,45.67645969400019],[-109.89413408499985,45.649692211000115],[-109.7540397539999,45.69005563300004],[-109.77212975499992,45.570484611000154],[-109.71168280199993,45.519786600000145],[-109.77424795599995,45.35951846400019],[-109.58824946399994,45.276725520000184],[-109.3032252939999,45.18657033400018],[-109.21670122999996,45.11384163300005],[-109.04914017899983,45.087474849000046],[-109.00853735099997,45.17437574100006],[-109.07226439599998,45.21038277800011],[-108.92309641299983,45.26830070200015],[-108.99145472499998,45.42453350500011],[-109.14967132499993,45.29260097900004],[-109.19375932499997,45.19090950200018],[-109.28450994199994,45.16817338900006],[-109.29455944799992,45.26512865500018],[-109.06922281599998,45.47466712700003],[-108.8653595369999,45.53351540900019],[-108.99633327499998,45.602166100000034],[-109.06954040199986,45.52082029600007],[-109.3580676769999,45.54669091000005],[-109.41276137699998,45.65476167700018],[-109.52025872199988,45.694099304000076],[-109.575971026,45.663879544000054],[-109.80150312599989,45.76883118000006],[-110.23576692599994,45.76838297800015],[-110.08162362199994,45.82346815000011],[-110.11029419999994,45.927475536000145],[-109.97708090499992,46.001878020000106],[-110.06838124499996,46.13156307000003],[-110.03628563299998,46.170980858000064],[-110.1356853929999,46.309549818],[-110.26302392399992,46.334547586000156],[-110.31406285499997,46.44306226000009],[-110.54526854699998,46.38737715200017],[-110.39173440099995,46.27216041800011],[-110.24201551099986,46.266928582000105],[-110.24222122799983,46.158318370000075],[-110.1571607539999,46.11162245500009],[-110.136608202,45.96030743200009],[-110.27514929599982,45.92616656300015],[-110.48207455399984,45.98555945400011],[-110.45942830499996,46.158725937000156],[-110.57701237199996,46.17934812700008],[-110.5949877939999,46.30216984000009],[-110.54935993299995,46.38827050000003],[-110.55567301799994,46.4532527610001],[-110.40948241999985,46.44323355300014],[-110.42901803399991,46.53589448000008],[-110.28268228199994,46.49157755700014],[-110.13227860699993,46.53908039900017],[-110.11042309699997,46.63562067400011],[-109.8309190949999,46.715532593000034],[-110.03424402999991,46.853585087],[-110.0437097809999,46.897043479000104],[-110.22808215099997,46.988875090000136],[-110.28979701799994,47.058069347000014],[-110.44144109599983,47.1557267230001],[-110.60080929299994,47.176913981999974],[-110.71885567499993,47.23450192500019],[-111.0264293599999,47.251926280000134],[-111.09026934799994,47.28192975800016],[-111.26809478699982,47.181458126999985],[-111.35459716499992,47.20583195600011],[-111.48915886699996,47.115874438000105],[-111.6476612109999,47.19790497900016],[-111.7986572609999,47.18671472400018],[-111.70268008799991,47.297788437],[-111.83661364599993,47.40564779300013],[-111.72272725699997,47.43374222800003],[-111.85134162999987,47.50759586800007],[-112.04000684,47.53104107900003],[-112.05854853699998,47.58219496100003],[-111.73959412499994,47.58583585300016],[-111.82500214599992,47.67682325200019],[-111.94362824199993,47.67338101100006],[-112.05103710199995,47.62854897200009],[-112.20256022099994,47.81431365500015],[-112.18171637899997,47.86091554300009],[-112.24574296199995,47.950508937000166],[-112.08467595799988,47.94638122600014],[-112.00673240599997,48.05851735700014],[-112.14061226399986,48.09373590900003],[-112.14570832899989,48.15426383100004],[-112.04405249699988,48.18103159400016],[-112.4456416839999,48.34690595500007],[-112.49292143499986,48.42116767800019],[-112.38209014399996,48.55293377200019],[-112.46901335599995,48.60454363400004],[-112.69410344899995,48.60295418100003],[-112.66947097099995,48.66884063400016],[-112.56108374899998,48.69064084900009],[-112.57162361899992,48.77536309400011],[-112.46834330999991,48.8035186890001],[-112.38644428299989,48.75010754200014],[-112.23188915999998,48.761382676000096],[-112.43513083499994,48.97310440500007],[-112.57067109399998,48.9414025960001],[-112.7277065429999,49.000474120000035],[-112.58215362099997,49.169180876000155],[-112.43129763599995,49.228260553000155],[-112.46090654199992,49.315861500000096],[-112.65706654499996,49.383260383000106],[-112.81358366799998,49.37748525200004],[-113.00283061299996,49.451888221000104],[-113.20334652399998,49.57554677400009],[-113.2608485589999,49.44032890600016],[-113.36678357799997,49.37486842200008],[-113.44042966199993,49.38664047000009],[-113.37113965299994,49.554252382000186],[-113.3752365599999,49.66434968600015],[-113.44213068499988,49.68173777599998],[-113.71697966099998,49.552406351000116],[-113.78314958899989,49.58215758100005],[-113.66329155899996,49.69500498800011],[-113.62560266699995,49.811255447],[-113.72068764699992,49.98783281100009],[-113.72412016199996,50.15384882400019],[-113.55143825,50.240674434000084],[-113.50758438399998,50.570520128000055],[-113.40379354899989,50.69306151100017],[-113.28887140799986,50.74409810800012],[-113.37027761299993,50.80163225000001],[-113.39330202599996,50.92083286000002],[-113.23963803499998,51.083376226000155],[-113.258841997,51.184021373000064],[-113.1180492929999,51.26963684000009],[-113.11216652899998,51.4049951180001],[-113.23453444699987,51.49514020000004],[-113.34674060299989,51.532435010000086],[-113.54360166999993,51.68884383800014],[-113.6542816839999,51.727594549000116],[-113.86628767499985,51.69135790600012],[-114.05812865199994,51.541704053000046],[-114.09697759999989,51.29466807700004],[-114.14082367099996,51.23861409900019],[-114.08109255199997,51.09311884400012],[-114.09441357599997,50.99892134000015],[-114.01679262599998,50.83590874600014],[-113.92511757199998,50.80855725400011],[-113.89167059299996,50.65526515300013],[-114.16902961299996,50.57057775599998],[-114.25129665199995,50.50477294300009],[-114.22337368299992,50.42903171900002],[-113.90918759699997,50.22981818800014],[-113.95587141099992,50.1232667860001],[-113.91542131799997,50.061440724000136],[-113.95377188799995,49.96909124400008],[-113.8546821,49.805513810000036],[-113.97952321499997,49.74281103200019],[-114.15199994499994,49.9834454920001],[-114.19415485399998,49.63484747300009],[-114.11116027599991,49.51694459600009],[-113.92150112099995,49.36240787400004],[-113.87293396999996,49.25243912700017],[-113.66575705099984,49.11949243700019],[-113.45272211699995,49.07111486600013],[-113.44045780499994,48.97152243200003],[-113.32299420199996,48.90288763700005],[-113.3753181059999,48.83006315300014],[-113.32531546999996,48.77176528600012],[-113.31646959899984,48.663320264000106],[-113.23339403799991,48.55301017099998],[-113.26231642099998,48.502645139000094],[-113.09880610499988,48.32809650600012],[-112.96289262199991,48.31799897800005],[-112.83281662699989,48.18050954500018],[-112.70531131899992,48.10977814200015],[-112.6401901349999,47.943494433000126],[-112.61323640599994,47.79813727400011],[-112.7120685839999,47.61285144700008],[-112.59570043099995,47.522656807000146],[-112.68898161499999,47.450952443000176],[-112.66515347199993,47.40269650900018],[-112.51515306399989,47.34641368100006],[-112.37493214699998,47.236452733000135],[-112.43903021199998,47.160689793000074],[-112.3392444459999,47.032983942000044],[-112.48553230399989,46.924183393000135],[-112.53087535799995,46.77041503900011],[-112.30270116899999,46.680124484000146],[-112.30954590099998,46.460998760000166],[-112.218681732,46.47376876000004],[-112.02554546399995,46.382563884000035],[-111.96062213399995,46.40955670400018],[-111.94661536599989,46.512062690000164],[-111.80784674499989,46.52689527500007],[-111.75513191099998,46.49440818200014],[-111.687056983,46.34502241400014],[-111.93158078999994,46.21565666000015],[-112.04659422899988,46.277870206000046],[-112.1558312869999,46.27881781200011],[-112.13707576799999,46.201852102000146],[-112.04116666999994,46.17315317700013],[-111.9692644129999,46.024047729000074],[-112.19947616799993,45.959232727000085],[-112.27316504899983,45.917475250000166],[-112.30621932399998,45.813801861000115],[-112.36412460899999,45.78709291600012],[-112.37363038099988,45.66220333600012],[-112.70670835099997,45.75211933000003],[-112.62718270299996,45.915222310000104],[-112.557824096,45.87242717800018],[-112.457295236,45.945014892000074],[-112.4950722779999,46.058217552000144],[-112.693777706,46.04652907600007],[-112.7503799999999,46.08976973600005],[-112.65226675899993,46.21182810700003],[-112.65254124799998,46.27143187900015],[-112.56534084499992,46.41790425200003],[-112.5240349469999,46.56776077800009],[-112.39166441599991,46.54737126900011],[-112.48708335999999,46.66686918500005],[-112.5519134999999,46.68567720200008],[-112.65862151099992,46.803064210000116],[-112.75729094699983,46.7820406190001],[-112.86345487499995,46.82739189300014],[-113.12138860999988,46.836028541000076],[-113.07426399199989,46.74735685700006],[-112.91320210199996,46.816265522000094],[-112.80385333799995,46.79232848300012],[-112.67045204199991,46.61321812500006],[-112.76843707899997,46.572634260000086],[-112.89738515899984,46.6539806080001],[-112.9816702949999,46.64612714400005],[-113.10634457199995,46.70626919700004],[-113.27456089599991,46.735994261000144],[-113.47558263499997,46.703007617000026],[-113.68764654299997,46.73170236900012],[-113.71975294399994,46.78798828400011],[-114.00241272499989,46.93143812500017],[-114.05565294399992,47.00211896000013],[-114.15690513499999,47.00857506400018],[-114.50679996099996,47.16371461000017],[-114.47900713599995,47.07518357600003],[-114.3826188139999,47.022263697000085],[-114.25122486199996,47.00025803500006],[-114.10087991999995,46.821213051000086],[-114.10013104599994,46.66972565200007],[-114.15832738299997,46.50426435500003],[-114.22808704,46.40755894299997],[-114.23643707599996,46.105337986000166],[-114.20991298899997,45.99413854100004],[-114.12796993799998,45.974090185000136],[-114.15532094499991,46.12146960700005],[-114.01615330499993,46.19981173899998],[-113.96018177799988,46.41178177800009],[-113.89336160599998,46.558785939000074],[-113.91002465599996,46.62265716900015],[-114.04498465399996,46.760590945000104],[-113.98103406399991,46.85202447400013],[-113.89964905599999,46.87010136800012],[-113.72962921599998,46.77357492800019],[-113.6722833209999,46.713872526000046],[-113.32642755299997,46.690615044000026],[-113.32232556899993,46.61913223099998],[-113.40327218399995,46.59014455100015],[-113.2919600439999,46.483133883000164],[-113.1586471839999,46.48781796800017],[-113.07019133299997,46.56068369399998],[-112.87927748099997,46.46149401200012],[-112.86938385699989,46.38432006600004],[-112.9286985469999,46.255041861999985],[-112.91520965799998,46.11408803800009],[-113.16544150499993,45.93787541400019],[-113.32984223499989,45.878387554000085],[-113.41513387199996,45.82030624500004],[-113.63670190599993,45.74806037200011],[-113.680406254,45.60898418700003],[-113.65065462299992,45.49663710200019],[-113.6025507899999,45.47852986300006],[-113.50250992199994,45.28689664500001],[-113.326442521,45.204968437],[-113.18732250099993,45.309382779000146],[-113.16246704499997,45.1942121780001],[-113.30134454199992,45.09320119700004],[-113.43083787899997,44.93287394000009],[-113.3454333979999,44.89903094100009],[-113.32277551599998,44.820660654],[-113.40662487099996,44.75554894900006],[-113.51130880499994,44.85833029500009],[-113.54035746099993,45.011114412000154],[-113.66406446499997,45.12662542099997],[-113.69441429599988,45.19363115300007],[-113.87541624599993,45.389269148000096],[-113.97326376299986,45.10821791600006],[-113.95445115299992,44.98010110800004],[-114.05945345899994,44.93335116000014],[-114.04931544999994,44.83252313100019],[-114.13961105799984,44.755854296],[-114.27866968599994,44.75282405200011],[-114.25938902599995,44.67407724000009],[-114.343222304,44.54755203200011],[-114.27230509099996,44.43917011400015],[-114.33871714699984,44.28199201600006],[-114.25676563099995,44.09113104600016],[-114.16607698799993,44.0190836810001],[-114.18006497199991,44.11750501300014],[-114.09903262499995,44.13771559600002],[-114.08102304699992,44.03366708900006],[-114.16607698799993,44.0190836810001]],[[-113.58074673099998,43.96897243300009],[-113.81725660599994,44.09519086200015],[-114.01956627999988,44.3675189760001],[-113.92981610799995,44.440225532000056],[-113.85208450399989,44.424999026000194],[-113.79743786199998,44.250894078000044],[-113.69134116999999,44.14094012300012],[-113.55797312199996,44.12889112300007],[-113.47140435699993,44.06749183400018],[-113.4552303459999,43.96901988500008],[-113.32910128899994,44.06007395400013],[-113.26093705299996,43.984880424000096],[-113.20911279299986,43.76294784000004],[-113.29859154299993,43.774386679000145],[-113.30981620199992,43.83881987400008],[-113.39953530399998,43.94376737200014],[-113.48894805699996,43.92648558100012],[-113.58074673099998,43.96897243300009]],[[-113.6322767819999,44.46879464699998],[-113.779441809,44.60100051700016],[-113.85574057399998,44.639032832000055],[-113.93361583099994,44.82506120900007],[-113.92584408199997,44.99561353400014],[-113.85501590099989,45.07811877600011],[-113.73651420299996,45.014996675000134],[-113.84594905499995,44.87222912300007],[-113.74055634899992,44.771530996000195],[-113.64175607599998,44.76567863600019],[-113.537665947,44.640979703000085],[-113.26933159499998,44.47013585800005],[-113.16966593799998,44.28570437900015],[-113.05127896499994,44.24803055000007],[-113.02427533099996,44.14194552900017],[-112.95038834899998,44.111027542000045],[-112.91509326799996,44.009826381000096],[-112.92278240799988,43.881793654000035],[-113.08959515599997,44.024834621000025],[-113.17906423099998,44.18370064600009],[-113.24886613199988,44.2384675510001],[-113.35467492099991,44.37854286100014],[-113.42538644299992,44.317658059999985],[-113.60223973499984,44.39457165200008],[-113.6322767819999,44.46879464699998]],[[-113.18446741899993,44.64124653900012],[-113.26695277999988,44.70777912400007],[-113.17167259999991,44.79299616500015],[-113.16338014099983,44.92847866000005],[-113.09177275199994,44.90581583000005],[-113.01349783299997,44.656932156000096],[-113.04542333999996,44.60809832800004],[-112.96754953299995,44.454870762000155],[-112.821790347,44.46695227100014],[-112.67549631499992,44.335183285000085],[-112.83980096099992,44.273966684000015],[-112.98915763899998,44.375184291000096],[-113.18446741899993,44.64124653900012]],[[-112.46099946299995,44.92060753200019],[-112.47598134799995,44.94668794200015],[-112.71959288799997,44.99688296300013],[-112.63680751399988,45.063594710000075],[-112.46099946299995,44.92060753200019]],[[-112.2395432799999,45.233175414000186],[-112.34657299899999,45.24921821300018],[-112.24350771999991,45.38785786],[-112.16118998899998,45.313011981000045],[-112.2395432799999,45.233175414000186]],[[-113.07012346599998,45.243665081000074],[-113.10597632199995,45.32563081000012],[-113.30680441499993,45.32856736200006],[-113.39386815599988,45.42816057900018],[-113.36666482099997,45.707849625999984],[-113.21032114399992,45.871893730000124],[-112.96640021699989,45.98499686500003],[-112.92165386599993,46.076266996000186],[-112.78496474699995,46.013899724000055],[-112.71270136599998,45.890291006000155],[-112.77966455299998,45.78621217600005],[-112.71662178399998,45.65408278500013],[-112.79186304699994,45.60895234500009],[-112.76217127599995,45.51291791100016],[-112.776883296,45.348704325000085],[-113.01909552499995,45.30612773700011],[-113.07012346599998,45.243665081000074]],[[-112.17861923499999,45.652357118000054],[-112.1211835599999,45.713792360000184],[-111.97296522299996,45.716946545000155],[-111.92578788899988,45.647324863000165],[-111.81975544399995,45.584788087],[-111.84555610499996,45.40726837400007],[-112.01545885099989,45.39966982900006],[-112.05307888899995,45.45463689500008],[-112.2229391439999,45.564660165000134],[-112.17861923499999,45.652357118000054]],[[-110.97416648899991,45.71123153800005],[-110.99118998199998,45.825585483000054],[-111.06235021799989,45.91094558800006],[-111.11250477799996,46.040552352000134],[-110.99566255799994,46.05640311200011],[-111.04624085299997,46.16773793300007],[-111.25836521399992,46.132670413000085],[-111.32149307099996,46.24306174800017],[-111.22821494599998,46.29805349300011],[-111.47734043799989,46.533604536000155],[-111.5201168879999,46.610486574000106],[-111.64836402599997,46.6591398380001],[-111.66104488399998,46.56785322100018],[-111.73074418599998,46.54552091100015],[-111.80822034399989,46.68964678500015],[-111.81001787899993,46.805951411000194],[-111.89107225999993,46.85896083900019],[-111.78553107699992,46.935206808000146],[-111.66744720499992,46.87029213500017],[-111.67425307799994,46.82001778300014],[-111.46332706299995,46.74687974100004],[-111.32994032499988,46.6778349600001],[-111.19796050799988,46.51347172700014],[-111.02761634499996,46.41688870400003],[-111.11643078299988,46.251377091999984],[-111.10713094999994,46.199877007000055],[-110.89299849899999,46.19858097500014],[-110.84260800699997,46.08901841300019],[-110.9679061679999,45.98237437400019],[-110.78588575099997,45.849575910000056],[-110.69522446999991,45.74588391300006],[-110.80541891199994,45.69635558700014],[-110.89237017599999,45.760568567000064],[-110.97416648899991,45.71123153800005]],[[-112.03201664299996,45.26103949900005],[-111.90712067099997,45.25637977200006],[-111.8884311299999,45.19408055700012],[-111.72996173699994,45.04536002000003],[-111.67451524799998,44.94503409700019],[-111.61095830599999,44.92074381499998],[-111.54406459999984,44.76984724200014],[-111.79906480399995,44.75127188100004],[-111.98167479599994,44.816425803000186],[-111.97064937899995,44.942283638000106],[-111.90723797699991,45.05755717000005],[-112.00447940199996,45.06464531900008],[-112.06806963599996,45.156068189000166],[-112.03201664299996,45.26103949900005]],[[-112.78749138199998,44.73273271900018],[-112.65761035199995,44.56172254500012],[-112.35740101399983,44.47415775100018],[-112.27205414499991,44.480528233000086],[-112.204370569,44.4294842270001],[-112.27815261599994,44.37230934400014],[-112.51863633199997,44.40196010300008],[-112.68572396299999,44.47260704700011],[-112.67731773499992,44.56303508900015],[-112.7823936929999,44.63525363400015],[-112.78749138199998,44.73273271900018]],[[-112.14769685099992,44.87456132400007],[-112.06503474499993,44.96206534300018],[-112.02942967899997,44.832854512000154],[-112.10599487899998,44.753756721000116],[-112.221926882,44.736459373000116],[-112.34900545,44.795973879000144],[-112.14769685099992,44.87456132400007]],[[-113.56846060499993,43.779132260000154],[-113.70763695399995,43.787688961000185],[-113.81588613599996,43.82426683600016],[-113.79205902099989,43.8826083620001],[-113.69009720999998,43.933001309000076],[-113.66689509199995,43.80974957600017],[-113.56846060499993,43.779132260000154]]]]},"properties":{"objectid":451,"eco_name":"Montana Valley and Foothill grasslands","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Nearctic","eco_biome_":"NE08","nnh":3,"eco_id":394,"shape_leng":140.881939791,"shape_area":11.7751505856,"nnh_name":"Nature Could Recover","color":"#C66E02","color_bio":"#FEFF73","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":100042.43135704909,"percentage":0.9442153852204753}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-89.17785654199997,15.274538014000143],[-89.36193855899995,15.239322286000117],[-89.37261961799999,15.193557933000136],[-89.53915361699995,15.16894162400007],[-89.67340857199997,15.083761036000055],[-89.78227256299988,15.11349918999997],[-89.8455356479999,15.061330560000101],[-89.955657595,15.061831463000033],[-90.03144860699996,15.030894696000132],[-90.04753163599992,14.974866367],[-90.1434175899999,14.960876133000113],[-90.06665762999995,14.854522019000058],[-89.82314255499995,14.82589094600013],[-89.69187960499983,14.768171820000191],[-89.59780866699998,14.837347164000164],[-89.48953258299997,14.783101834000036],[-89.51672364399985,14.94616119900013],[-89.45088966199984,14.970609366000133],[-89.35458360599989,15.114346265],[-89.3562925089999,15.157123476000095],[-89.17785654199997,15.274538014000143]]]},"properties":{"objectid":453,"eco_name":"Motagua Valley thornscrub","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Neotropic","eco_biome_":"NO13","nnh":4,"eco_id":605,"shape_leng":4.73666644974,"shape_area":0.195641324489,"nnh_name":"Nature Imperiled","color":"#B69248","color_bio":"#CC6767","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":2342.0095501066326,"percentage":0.008877240872833541}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[35.72416666700019,-15.743333332999953],[35.641666667000095,-15.8225],[35.4925,-15.9025],[35.48500000000013,-15.984166665999965],[35.54833333300019,-16.0425],[35.67083333300019,-16.03083333299992],[35.78416666700002,-16.045],[35.77833333400014,-15.949999999999875],[35.72416666700019,-15.743333332999953]]]},"properties":{"objectid":455,"eco_name":"Mulanje Montane forest-grassland","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Afrotropic","eco_biome_":"AF10","nnh":1,"eco_id":84,"shape_leng":5.649999973,"shape_area":0.0792805555019,"nnh_name":"Half Protected","color":"#C98D68","color_bio":"#D6C39D","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":945.8359214512658,"percentage":0.019368768356042308}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[143.80605325200008,-35.71675154699989],[143.63933461800002,-35.749447080999914],[143.54655801,-35.878943222999965],[143.57188418500016,-35.96359417199983],[143.4114560600002,-36.073410913999965],[143.46206046800035,-36.158323646999975],[143.64500327700011,-36.122423513999934],[143.66857058400012,-36.061026863999984],[143.7569598770001,-36.01491322199996],[143.7922075260002,-35.94568658099996],[143.80605325200008,-35.71675154699989]]],[[[137.6281900030002,-35.56336999599989],[137.5113800030001,-35.59566999599997],[137.3289200040001,-35.57849999599995],[137.07054000400012,-35.66911999499996],[136.7836700040001,-35.699999994999985],[136.58696000400005,-35.748349994999955],[136.53864000400006,-35.898919994999915],[136.75663000400004,-36.049319994999905],[136.8563900040001,-36.01736999499991],[136.91393000400012,-36.04280999499997],[137.17702000400027,-36.00954999499993],[137.20860000400023,-35.973589994999884],[137.368450004,-35.9970899949999],[137.45668000400008,-36.066759994999984],[137.6165700040002,-35.98944999599996],[137.5980600040001,-35.938529995999886],[137.74352000400017,-35.85266999599992],[137.93752000300003,-35.86461999599993],[138.04293000300015,-35.90378999599983],[138.11952000300005,-35.82005999599994],[138.06404000300006,-35.755439995999836],[137.97344000300018,-35.71988999599995],[137.8220800030001,-35.79978999599996],[137.78069000300013,-35.72427999599995],[137.58994000300015,-35.733959995999896],[137.63942000300017,-35.657499995999956],[137.6281900030002,-35.56336999599989]]],[[[143.46134783900027,-34.95253309799983],[143.34640253200018,-34.89301264199986],[143.3326235740002,-34.97188528599992],[143.4031802500001,-35.18247861499992],[143.4917269550001,-35.120196328999896],[143.46134783900027,-34.95253309799983]]],[[[143.60630707200005,-34.715350456999886],[143.55250486700004,-34.66057887799991],[143.43911590400012,-34.719191955999975],[143.2740607200002,-34.74000173299993],[143.47686633600006,-34.88406692899997],[143.50456129400004,-34.95968903199986],[143.7667836930001,-34.99305230099998],[143.73411477200023,-34.838347558999885],[143.57556065400001,-34.76819922499993],[143.60630707200005,-34.715350456999886]]],[[[143.5836322570002,-34.398864067999966],[143.41723457100022,-34.43575232799998],[143.29266235500018,-34.4041438349999],[143.36889473300005,-34.51756623899996],[143.33991803800006,-34.62293223099988],[143.41723478300003,-34.68862877299989],[143.6057274030003,-34.61171632899993],[143.64106648200016,-34.438636001999896],[143.5836322570002,-34.398864067999966]]],[[[145.83786058700002,-33.35883427099992],[145.68684371800032,-33.36073462599995],[145.57063241000003,-33.498861684999895],[145.53242440400004,-33.617407319999984],[145.43841491600017,-33.65266281699991],[145.4048456720002,-33.70806371499992],[145.4476472050003,-33.83410513399991],[145.59286593000002,-33.985075655999935],[145.534119636,-34.02033113899995],[145.581116919,-34.08580674399997],[145.72046063300013,-34.152960468999936],[145.77922372600005,-34.15295949399996],[145.85141133200023,-33.89611259499998],[145.8878189210002,-33.83744239099997],[145.8979347940001,-33.68773018199988],[145.84332328100004,-33.523858351999934],[145.87365787900012,-33.434842021999884],[145.83786058700002,-33.35883427099992]]],[[[142.20171523500005,-32.95301990899992],[142.07419722800012,-32.997316742999885],[142.153955407,-33.10365120699993],[142.06254024800012,-33.161024548999876],[142.01116387900015,-33.235972222999976],[142.07039887800022,-33.29580926899996],[142.03231329800008,-33.355646741999976],[141.9507242210002,-33.32421778299994],[141.90841102700017,-33.24685208099993],[141.79303927700005,-33.27914767999994],[141.89148975500007,-33.34839580099998],[141.87482794900006,-33.47370455999993],[141.7927509990002,-33.51309925499993],[141.7330146590001,-33.683810782999956],[141.80129826900009,-33.80462125899987],[141.72643910700015,-33.87027980899995],[141.85382004000007,-34.004219906999936],[142.00623922400007,-33.77680772899993],[142.10076752400028,-33.79104373399991],[142.1611304940002,-33.73132080499988],[142.27993536500003,-33.718987485999946],[142.38444265600015,-33.6670578159999],[142.4285857750001,-33.554104620999965],[142.53374866100035,-33.421028726999964],[142.41625534700006,-33.324956141999905],[142.37600225500012,-33.25679520299991],[142.18834889000016,-33.1349240319999],[142.20171523500005,-32.95301990899992]]],[[[142.23349893300008,-32.753347093999935],[142.1228420010002,-32.795660032999876],[142.19770192100032,-32.846647157999826],[142.23349893300008,-32.753347093999935]]],[[[141.94136803800006,-32.468218100999934],[141.82859024200002,-32.47343310699995],[141.82611845300005,-32.63571394999991],[141.700309585,-32.65767919099994],[141.61371567800006,-32.72385271499991],[141.52501618300016,-32.66894398599993],[141.43614922600023,-32.68181088199998],[141.3781661690001,-32.80986676899994],[141.1860887370001,-32.78147369699991],[141.15648641100006,-32.672144510999885],[140.76559828600023,-32.583583198999975],[140.60221857800002,-32.593040601999974],[140.5254221470002,-32.590681847999974],[140.3861273800003,-32.71129737099989],[140.34781280400023,-32.7993884899999],[140.11117169500005,-32.88338009399996],[140.03867704000015,-32.83986767999994],[139.98570108900014,-32.91027878299997],[139.87757242600026,-32.93604353799992],[139.81215278000002,-32.992695309999874],[139.75054898300004,-32.945765811999934],[139.63514781600009,-33.02538484299993],[139.637103098,-33.11954478799993],[139.51031034400012,-33.1188049239999],[139.36320520200002,-33.14673629799995],[139.2302245730001,-33.2897338059999],[139.3209227540001,-33.30073520899998],[139.32432588100016,-33.39743448199994],[139.17503392400022,-33.39204045999992],[139.1537320220002,-33.48523693499993],[139.20112594600027,-33.62614045199996],[139.08102437900004,-33.66713697399996],[139.15241971200032,-33.8979377849999],[139.11332665100008,-33.98633928299995],[139.25863662100016,-34.261939910999956],[139.1656497810003,-34.39324192799984],[139.12763946400014,-34.52604283999989],[139.04113797200023,-34.54374324299994],[139.0429383070001,-34.60764301399996],[138.96473712600016,-34.65024551199997],[138.97784393400013,-34.71314617699994],[139.05804438600023,-34.80204407999997],[138.88446012400016,-34.95294600599988],[138.94155856200007,-35.02664592399998],[138.9194642570003,-35.119648269999914],[138.8305512600001,-35.222351241999945],[138.6762540860002,-35.164451772999826],[138.5968629460001,-35.26774970599996],[138.4139711260002,-35.41325389199994],[138.33288000300013,-35.40207999599994],[138.2890800030002,-35.47286999599993],[138.12311000300008,-35.56110999599986],[138.09522000300012,-35.62419999599996],[138.16254000300023,-35.66078999599995],[138.283620003,-35.638929995999945],[138.52300000300033,-35.642629995999926],[138.6312600030002,-35.54393999599995],[138.71080000300014,-35.51334999599993],[138.95140000300034,-35.591299995999975],[139.15315000300006,-35.71312999599991],[139.4134000030001,-35.92713999599994],[139.53271000300015,-36.054789995999954],[139.67837743600023,-36.26157055999994],[139.71524033600008,-36.24711971999983],[139.58575453600008,-36.02464310199997],[139.469756941,-35.89974582999997],[139.3270565900001,-35.788547810999944],[139.34895345100006,-35.705146520999904],[139.45635960000004,-35.63574237599988],[139.42056299400008,-35.53584312599986],[139.46246322200022,-35.480842544999916],[139.54235801900006,-35.507644386999914],[139.70135461100017,-35.47734068499983],[139.84248339300018,-35.53424835599998],[139.92694078600027,-35.542240025999945],[139.99964877200023,-35.6014401299999],[140.03303558800008,-35.694839529999854],[140.22184789900018,-35.79473492599993],[140.48664877400006,-35.86523411799993],[140.43304408500023,-35.94883349199995],[140.4601136020001,-36.044815308999944],[140.65031396100017,-36.163170098999956],[140.73245208400022,-36.28963064399994],[140.64616395900032,-36.37063579599993],[140.57995571200024,-36.3258360879999],[140.36675990900005,-36.370639552999876],[140.34205604400017,-36.40213757599997],[140.51675396300004,-36.52193448499992],[140.6891628950002,-36.738033507999944],[140.77265929400005,-36.89693471299995],[140.78955108100013,-36.998134293999954],[140.8939263300001,-37.1592685679999],[141.07728702800011,-37.20952114599993],[141.15911813600007,-37.28391215399995],[141.1349866610002,-37.2583846039999],[141.0966920610001,-37.084883436999974],[141.2560566110002,-37.10227446299996],[141.31940615300005,-37.171479612999974],[141.39437112000007,-37.119845378999855],[141.69037580300017,-37.09546213799996],[141.79144232000021,-37.159367045999886],[141.89557683600003,-37.11933119599996],[141.94914990300015,-36.9908343379999],[142.03472100300007,-37.022399045999975],[142.11285592800004,-36.97343926299993],[142.150670095,-37.053855145999876],[142.25977987800024,-37.034545971999876],[142.33878415300023,-36.969590037999865],[142.35057616900008,-36.887599929999965],[142.45990218500003,-36.88009182999991],[142.54880495300017,-37.05420796299995],[142.5365736860001,-37.093705437999915],[142.64630951100003,-37.247354578999875],[142.75223304400015,-37.261123962999875],[142.68769639400023,-37.15383221299987],[142.70989177700005,-37.05911419599988],[142.65051624400007,-37.00321562999994],[142.68002213500006,-36.94234092999989],[142.79633891100002,-36.97783942999996],[142.96599176100005,-36.969058696999866],[143.0620817360002,-36.94272471299996],[143.0336966860001,-36.882204137999906],[142.9222259520002,-36.86872327999998],[142.96856044400022,-36.77568568799995],[142.95763526000007,-36.673000471999956],[143.15902960200003,-36.665282329999854],[143.29561703500008,-36.46575860499985],[143.27596812700006,-36.38393085499996],[143.38297473600016,-36.376801238999974],[143.4029162270001,-36.27203265599985],[143.3495829100001,-36.1278386059999],[143.35283412700005,-35.99203992199995],[143.32386176800014,-35.9377058309999],[143.36572309300016,-35.83841631399997],[143.45979507700008,-35.84303071399995],[143.52026252700023,-35.73570017299983],[143.60013224400018,-35.66421171499991],[143.67256069300015,-35.44995701399995],[143.5703728100001,-35.4212088299999],[143.52167744400015,-35.31032458899995],[143.45364606800013,-35.27997222299996],[143.2883456180001,-35.03157597299986],[143.2539627010001,-34.89804994799994],[143.34311457700005,-34.86309348999987],[143.20985426000016,-34.801449564999984],[143.1611777840003,-34.715913247999936],[142.99900374300012,-34.71854219799985],[142.87425730200016,-34.69562941499993],[142.77462308500003,-34.591846964999945],[142.7055657840001,-34.629463088999955],[142.7122130350001,-34.739136664999876],[142.6029595440002,-34.7955031059999],[142.48835996900027,-34.76239955599988],[142.36096365900005,-34.77274215599988],[142.3263509850002,-34.71233189799989],[142.37046549300032,-34.65239648099998],[142.3752677020002,-34.508383789999925],[142.2933200010001,-34.35618177299989],[142.20921781000004,-34.27456591399988],[142.2152301020003,-34.20827489799996],[142.09015213400005,-34.20454694799997],[142.02542692600002,-34.13195673099989],[141.85774446000028,-34.23691858999996],[141.63471056900016,-34.24779703899998],[141.53260258500006,-34.22069693999998],[141.47879686800013,-34.26749024699984],[141.36313091800002,-34.244528913999886],[141.21699020200015,-34.24527197199984],[141.0990407600001,-34.189648597999906],[140.92965662000006,-33.97862595099997],[140.81951941900013,-34.07672491999995],[140.80668612500017,-34.13827512099988],[140.84170540700006,-34.25462330599987],[140.70541363400002,-34.283424267999976],[140.61572233800018,-34.373028156999965],[140.66943326600017,-34.45322407799989],[140.5580750590002,-34.495765879999965],[140.386322,-34.365726666999876],[140.31492615700006,-34.19682687199992],[140.1817323070003,-34.16553123799997],[139.94830299600017,-34.198990075999916],[139.83383174100004,-34.074432681999895],[139.92262238000023,-34.06653234599992],[139.95602413000006,-34.132732191999935],[140.10893250900006,-34.16593171299991],[140.1601260110001,-34.14723229299989],[140.3708343940001,-34.18202613799991],[140.48251363100007,-34.176628249999965],[140.5593107330003,-34.243026509999936],[140.65310655100006,-34.23172345399996],[140.64622587200006,-34.06432193099988],[140.72430663900013,-33.977034474999925],[140.86357556000019,-33.95175700999994],[140.9662400850002,-33.88974085499996],[141.05066879900016,-33.9558069119999],[141.0505316340001,-34.03255836099987],[141.16988745800018,-34.0650283789999],[141.25318562300026,-33.91054171099995],[141.38256556900035,-33.90015487899984],[141.36536908900007,-33.991176521999876],[141.53075979400012,-34.04891610699991],[141.60708460600006,-34.10196239099997],[141.77041530100007,-34.06189751799997],[141.7517382860001,-33.96741618199991],[141.67008828700023,-33.89878285799989],[141.7434521580003,-33.762702108999974],[141.68047860700017,-33.730632173999936],[141.7091338790001,-33.6017682719999],[141.74876075900033,-33.578101665999895],[141.7343246700001,-33.442188226999974],[141.69256065000002,-33.369838417999915],[141.681908313,-33.11542438699996],[141.76801434300035,-33.169616152999936],[141.97350438800004,-33.075007083999935],[142.04918792700016,-32.98940513799994],[142.12548190400003,-32.8330326329999],[142.06958877300008,-32.80613898699988],[142.06496493500015,-32.72429871299994],[141.94136803800006,-32.468218100999934]]],[[[144.95670128900008,-30.81089906699998],[144.7844293940002,-30.842282986999976],[144.617452629,-31.06092512099991],[144.52229871100008,-31.1110678149999],[144.4404507060001,-31.20948358399994],[144.33911682300015,-31.18207335099987],[144.32250017700017,-31.355675247999955],[144.2352810110001,-31.435416068999928],[144.14806180400024,-31.42794095399995],[144.11400476900008,-31.555857600999957],[144.16135281000004,-31.628953056999933],[144.07331011200017,-31.722813391999978],[143.90053456300018,-31.627291615999923],[143.80585384100016,-31.620646157999943],[143.72623345900013,-31.570080428999972],[143.59841112400022,-31.62139377199992],[143.57228797300002,-31.711891823999963],[143.40901881700006,-31.669907278999915],[143.36423452400015,-31.766935909999916],[143.2886674140001,-31.826646149999874],[143.31479631700017,-31.91527773499996],[143.23996779900028,-32.07882841499992],[143.26111657100012,-32.1495224169999],[143.37062903600008,-32.15839914199995],[143.40245914300021,-32.24131907499992],[143.3685393420002,-32.369805446999976],[143.16375102200004,-32.35355510699992],[143.0615629780001,-32.39459357299995],[142.9627316750001,-32.381192671999884],[142.60665244400002,-32.43304956099996],[142.5399106100001,-32.495766989999936],[142.549569721,-32.62361273699997],[142.43699040000013,-32.728143028999966],[142.416086016,-32.79246624599995],[142.43377129700002,-32.90905885899991],[142.39035992000015,-32.93317924999991],[142.38553836000006,-33.05620325199993],[142.32039852700007,-33.09319070499987],[142.32764685100005,-33.18002856199996],[142.39840204800032,-33.204953469999964],[142.52544745300008,-33.302246785999955],[142.62595760700015,-33.43170210699998],[142.5262418660002,-33.55150653599998],[142.2729622920001,-33.748505645999956],[142.1451248430002,-33.82649722699995],[142.03898481900012,-33.80559324799998],[142.06632874000024,-33.90931783199994],[141.9955585340001,-33.92138009099989],[141.94084141500014,-34.050484145999974],[142.11521891800032,-34.14148035299996],[142.16752566900004,-34.06519347899996],[142.29176294500007,-34.15782587299998],[142.25035047100016,-34.20686809099993],[142.26724095500003,-34.29023528699997],[142.40508811100028,-34.34363200599989],[142.41653211400012,-34.447708856999895],[142.47646876000022,-34.524536913999896],[142.5554767970001,-34.70544239499998],[142.66826980100006,-34.6945436019999],[142.6361216910002,-34.56867282899998],[142.69497582100007,-34.52780524899998],[142.79007471500006,-34.54676729799996],[142.9006637220001,-34.51945105099992],[142.94958173100008,-34.649899707999964],[143.19656135100013,-34.60674682199988],[143.29121184400003,-34.63064208399982],[143.33154148300025,-34.5443720909999],[143.25273027200012,-34.45686281099995],[143.23318368200023,-34.38890406799993],[143.2896562830001,-34.33739039599993],[143.27506879100008,-34.27470738899996],[143.3926833390001,-34.190612373999954],[143.39010423900004,-34.03886749399993],[143.47924552700022,-33.815009707999934],[143.61390453600018,-33.820819522999955],[143.805585134,-33.731048281999904],[143.8419619650001,-33.63689411899992],[143.92686216200013,-33.69443101799993],[144.05230480300008,-33.65513568599988],[144.00536854100005,-33.59638938499995],[144.01038867600005,-33.513240488999884],[144.14097327100023,-33.40863766299998],[144.22846712500007,-33.39546944999995],[144.2786836460001,-33.2907332499999],[144.4267702100002,-33.28696001899988],[144.50504811300004,-33.32091831699995],[144.54465991300003,-33.25112084699998],[144.50127915100018,-33.20490211999993],[144.3678865170001,-33.22159149699996],[144.28716742500012,-33.14265041899989],[144.16828615200006,-33.14987173799983],[144.11739811300004,-33.25733172899993],[144.00686340100026,-33.17973709199998],[144.0013700610001,-33.10114676199993],[143.8551752440003,-33.022861840999894],[143.98533269200004,-32.994564251999975],[143.9853328680001,-33.070022779999874],[144.1047939660001,-33.015747167999905],[144.28019409,-33.09669852399992],[144.36907647600003,-33.046699228999955],[144.437817321,-32.955421204999936],[144.5303925940002,-32.96966141299998],[144.6087162050003,-32.90700115299995],[144.63149751100002,-32.824401576999946],[144.75681819300007,-32.84576378899993],[144.81663272900005,-32.81158412499991],[144.87217498600012,-32.90842373199996],[145.00707813600002,-32.915888762999884],[145.1186816170001,-33.03996134799996],[145.2356709080001,-33.07978282499994],[145.32812407500012,-33.08136203899994],[145.38885410800003,-33.13298240499995],[145.49969445600004,-33.15423766999993],[145.79197747600017,-33.25264066499989],[145.88830675600013,-33.25821351999997],[145.93750101700005,-33.30667534799994],[146.06843689100003,-33.36392559799998],[146.07098573400003,-33.20189258399995],[146.1303272370002,-33.13921328299989],[146.22337543000003,-33.15782126099998],[146.24873546200013,-33.06647866299994],[146.1438616590001,-32.97006195499989],[146.12590170600004,-32.722713645999875],[146.04913500300017,-32.71294822799996],[146.04576291800015,-32.9260826819999],[146.00177197400023,-33.00220106199998],[145.82585306800013,-32.96160174299996],[145.7649706960001,-32.787377320999894],[145.5818641760003,-32.733293567999965],[145.58845606300008,-32.822694499999955],[145.67073205500014,-32.873463866999884],[145.6429911800002,-32.93316767899995],[145.439437665,-32.982530537999935],[145.40512036000018,-33.05539524999995],[145.28854299700004,-32.99728240299987],[145.32577443200012,-32.914465492999966],[145.2906029510001,-32.83794312899994],[145.13171235200002,-32.846480559999975],[145.10781681100002,-32.727856333999966],[145.18345517800003,-32.67292463399997],[145.32334855400006,-32.79926605399993],[145.49052454500008,-32.72193779899993],[145.56196645500006,-32.65492123699994],[145.53176900300014,-32.61146827099998],[145.53544515400006,-32.30436644399998],[145.4470805650003,-32.20126343399994],[145.53544461100012,-32.153392315999895],[145.52882185100032,-32.07680109199998],[145.38447281000003,-31.998736163999922],[145.31304557800013,-31.914044241999875],[145.15314936700008,-32.136118258999886],[145.0420197750003,-32.215259028999924],[144.98753030600017,-32.15118757699992],[144.8605919150002,-32.1318321629999],[144.77570654400006,-32.06763468199995],[144.6867632320001,-32.13728005699994],[144.58829753900034,-32.10868106299995],[144.49900331600008,-32.19246382499989],[144.41962691100002,-32.18033716899998],[144.37066072100026,-32.104726061999884],[144.47034641900018,-32.06458368099993],[144.43665460300008,-32.014305957999966],[144.30167532100018,-32.07119832399991],[144.23677859800011,-31.938116242999968],[144.33158176000006,-31.952276939999933],[144.535576901,-31.877536858999918],[144.62477897100007,-31.72605245799997],[144.58710418600015,-31.590716276999956],[144.64937489200008,-31.534582739999905],[144.60471176900012,-31.431707759999938],[144.84776993600008,-31.457305824999935],[145.06941885100002,-31.221363348999944],[145.07015104900017,-31.101852310999902],[145.12793598200017,-30.90924152899987],[144.95670128900008,-30.81089906699998]]]]},"properties":{"objectid":456,"eco_name":"Murray-Darling woodlands and mallee","biome_num":12,"biome_name":"Mediterranean Forests, Woodlands & Scrub","realm":"Australasia","eco_biome_":"AU12","nnh":3,"eco_id":203,"shape_leng":95.509732227,"shape_area":20.3606185419,"nnh_name":"Nature Could Recover","color":"#CD8966","color_bio":"#FE0000","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":208217.0885355191,"percentage":6.303126394931391}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[25.313667297000165,-28.818288802999916],[25.23795318600014,-28.726585387999876],[25.13643073999998,-28.811082839999926],[25.03898429900005,-28.843221663999884],[25.025676727000132,-28.905277251999905],[25.126773834000176,-28.925821303999953],[25.108505249000018,-29.057546615999968],[24.90668869000001,-29.008197783999947],[24.865386963000162,-29.05221939099988],[24.727426529000127,-29.01333427399993],[24.520572662000063,-29.03634262099996],[24.524362564000114,-29.125570296999967],[24.57332420300014,-29.178983687999903],[24.542505264000056,-29.27418136599988],[24.47261810300006,-29.303806304999966],[24.38981819200012,-29.24075698899992],[24.312334061,-29.259748458999923],[24.261438370000178,-29.214170455999977],[24.295623779000096,-29.123773574999973],[24.142555237000067,-29.065660476999938],[24.0491199490001,-29.10288238499993],[23.94422531100014,-29.10245895399987],[23.97059822099999,-29.29417228699998],[24.014854431000174,-29.368373870999903],[24.155513763000044,-29.366003035999938],[24.166194916000165,-29.44872283899997],[24.008563994999975,-29.464813231999926],[24.09360885600006,-29.55700492899996],[23.89790916400017,-29.503658294999923],[23.848812103000114,-29.355068206999874],[23.784172058000138,-29.279674529999966],[23.74102020300012,-29.05115127599987],[23.589281082000184,-29.04414558399992],[23.55859756500007,-29.10607719399991],[23.436258316000192,-29.198020934999874],[23.40213012700019,-29.120443343999852],[23.31522560100018,-29.099843978999957],[23.236064911000028,-28.94198226899988],[23.16017913800016,-29.091325759999904],[23.096473694000167,-29.166311263999944],[23.048458099000072,-29.284481048999965],[22.98367118800013,-29.2121620179999],[22.991308212000035,-29.12892150899995],[22.939052582000045,-29.07708167999988],[22.824632645000065,-29.075618743999883],[22.722980499000187,-29.111581801999932],[22.597534180000082,-29.09487914999994],[22.589517593000153,-29.191738128999873],[22.489883423000094,-29.233322143999942],[22.44397735600012,-29.148096084999963],[22.386854172000085,-29.12234878499993],[22.292608261000055,-29.19066047699988],[22.313524246000043,-29.27251052899993],[22.384601593000127,-29.25931739799995],[22.405351639000116,-29.341302871999915],[22.51594734200006,-29.400253295999903],[22.60161018400015,-29.360525130999918],[22.676879883000026,-29.398677825999926],[22.72131347700008,-29.502674102999947],[22.640623092999988,-29.559926986999983],[22.729879379000067,-29.690643310999974],[22.86866569500006,-29.759092330999977],[22.904159546000074,-29.88190841699992],[22.975139618000185,-29.87329292299995],[23.04348754900019,-30.21031951899994],[22.881961823000097,-30.20894241299993],[22.78609848000019,-30.110971450999955],[22.67593002300009,-30.146589278999897],[22.602743149,-30.115837096999826],[22.579051971000183,-30.31824684099996],[22.489440918000184,-30.379625319999946],[22.466627120999988,-30.45542716999995],[22.269552231000034,-30.441080092999982],[22.24980163600003,-30.416301726999905],[22.02384567300004,-30.306367873999932],[22.017532349000078,-30.404823302999887],[22.095241547000114,-30.43264198299994],[22.045824051000068,-30.501735686999893],[22.092836380000108,-30.562101363999943],[22.00491333000008,-30.62748718299997],[22.043642044000137,-30.806777953999926],[21.924524307000127,-30.817594527999972],[21.871980667000116,-30.92093276999998],[21.778959274000158,-30.93729019199992],[21.579814911000085,-30.828771590999906],[21.604721069000107,-30.777999877999946],[21.76333236700009,-30.772523879999937],[21.657617569000024,-30.63348007199994],[21.57525444000015,-30.60846328699995],[21.3834781650001,-30.855901717999984],[21.214536667000118,-30.973285674999943],[21.171316147000027,-30.951286315999937],[21.064182281000114,-31.058618545999934],[21.007970810000074,-31.072179793999965],[20.86222076400003,-30.982383727999945],[20.818735123000124,-31.02611160299989],[20.81247711200001,-31.185714721999886],[20.752386092999984,-31.22529220599995],[20.652979307000123,-31.126287582999907],[20.470706940000184,-31.09726524399997],[20.34263229400011,-31.209890365999854],[20.254667282000128,-31.20967674299993],[20.048122406000118,-31.294460296999944],[19.995412827000166,-31.35982131999998],[20.07572174100011,-31.46186065699993],[20.188970566000023,-31.447832107999943],[20.286626816000023,-31.514848708999978],[20.286012650000146,-31.59700393699984],[20.327661514000056,-31.811616897999897],[20.450635910000074,-31.853086471999973],[20.54780006400017,-31.95739173899989],[20.572423935000188,-32.05395126299993],[20.638376236000056,-32.12633514399994],[20.83114814800018,-32.14698409999994],[20.966943741000023,-32.140632628999924],[21.200809479000156,-32.18648529099994],[21.39667701700006,-32.14003372199994],[21.423618317000034,-32.10475921599988],[21.605815887000063,-32.109462737999934],[21.65358734100016,-32.08276367199994],[21.79346847500011,-32.13875198399995],[21.72465133700007,-32.2565307619999],[21.679359436000084,-32.19899368299991],[21.550024033000057,-32.21396636999992],[21.528648376000035,-32.289726256999984],[21.531976700000087,-32.29126739499998],[21.4155502320001,-32.384529113999974],[21.27985191300013,-32.41651153599997],[21.224342346000128,-32.467529296999885],[21.237623215000042,-32.473957061999954],[21.21544838000017,-32.48826217699991],[21.13637733500019,-32.559719085999916],[21.175184250000086,-32.71917724599996],[21.071832657000186,-32.74569320699993],[20.962263107000183,-32.85503387499989],[21.029846191000047,-32.95995712299998],[21.119991302000017,-33.16100311299988],[21.193122863999974,-33.20498657199994],[21.50475502,-33.168289184999935],[21.66783905000011,-33.20719909699989],[21.75218963599997,-33.25495529199992],[21.76122093200013,-33.254329680999945],[21.87367820700001,-33.249919890999934],[21.90445137000006,-33.25024032599998],[21.96972656200012,-33.24791717499994],[21.984117508000168,-33.24660873399995],[22.030044556000178,-33.23942184399988],[22.042398453000146,-33.237930297999924],[22.082466125000167,-33.235580443999936],[22.094491959000038,-33.23376846299993],[21.974916458000052,-33.117179870999905],[22.058000565000043,-33.0730018619999],[22.3299465180001,-33.091152190999935],[22.419692993000126,-33.140213012999936],[22.514999390000128,-33.17100143399989],[22.72800064100005,-33.16299819899996],[22.781999588000133,-33.05599975599995],[22.971000671000127,-33.077999114999955],[22.995000839000113,-33.11299896199995],[23.164449692,-33.10612106299993],[23.319200516000024,-33.13007354699994],[23.44812202500009,-33.08309555099993],[23.44884109500009,-33.07607650799986],[23.668531418000157,-33.03549575799997],[23.760618210000132,-33.038249968999935],[24.10127449000015,-33.1196327209999],[24.148872375000167,-33.12538528399995],[24.17358207700005,-33.12770843499993],[24.20794677700013,-33.12941360499997],[24.227460861000054,-33.13163757299998],[24.249271393000072,-33.13399505599989],[24.280012130999978,-33.1402664179999],[24.280303955000136,-33.14144515999993],[24.2354640960001,-33.20820999099993],[24.237325668000096,-33.20304870599995],[24.26026916500018,-33.15716552699996],[24.460987091000106,-33.19628524799998],[24.501014709000174,-33.24581909199992],[24.50149917600004,-33.24544525099998],[24.612560272000167,-33.27236556999992],[24.609500885000102,-33.274936675999925],[24.50060081500004,-33.26870346099997],[24.439147949000073,-33.287723540999934],[24.480827332000104,-33.29525375399993],[24.490610123000124,-33.296627044999866],[24.50666236900014,-33.29693603499993],[24.49816513100012,-33.301841735999915],[24.617908478,-33.27744674699994],[24.617046356000117,-33.27310180699993],[24.73090934800007,-33.294841765999934],[24.7473888400001,-33.29702758799988],[24.83194351200018,-33.314559936999956],[24.834619522000082,-33.315895080999894],[24.84134864800012,-33.25196838399995],[24.570779800000025,-33.20522308299991],[24.453468323000095,-33.163822173999904],[24.343069077,-33.044342040999936],[24.447792053000114,-33.008819579999965],[24.501258850000056,-32.86373138399995],[24.7246456150001,-32.84052276599988],[24.772306442000115,-32.77899932899993],[25.09358978300014,-32.85869216899988],[25.141975403,-32.76839065599995],[25.19252586400006,-32.76493072499994],[25.247371674000135,-32.86028671299994],[25.365430832000072,-32.88137817399996],[25.345390320000092,-32.76502990699987],[25.370929718000127,-32.67047119099993],[25.296495438000193,-32.577808379999965],[25.16677665700007,-32.35554885899995],[24.856891632000043,-32.335357665999936],[24.70979881300019,-32.28734207199983],[24.734994888000074,-32.21139144899996],[24.639039993000097,-32.113220214999956],[24.509071350000056,-32.04661560099987],[24.567455292000147,-31.93611907999997],[24.672927856000058,-31.893291472999977],[24.74662208600006,-31.829912185999945],[24.773849487000177,-31.719572066999945],[24.91647911100017,-31.606994628999928],[24.953153610000186,-31.710853576999966],[24.86871910100018,-31.759523391999892],[24.95812797500008,-31.87842559799992],[24.92877578700012,-31.95834350599995],[25.004936218000125,-32.03449630699998],[24.992900848000147,-32.083099364999896],[25.060819626000068,-32.17147064199992],[25.213876724000045,-32.12009048499988],[25.267490387000066,-32.18900680499996],[25.34222602800014,-32.21533966099997],[25.46768760700013,-32.20686340299994],[25.432321548000175,-32.134727477999945],[25.500017166000134,-32.03821182299998],[25.560218811000084,-32.003284453999925],[25.682846069000107,-32.06049728399995],[25.790735245000178,-31.990304946999913],[25.90359306300013,-32.05258941699998],[26.125005722000026,-31.882112502999973],[26.091320038000163,-31.82252693199996],[26.08742904700017,-31.80285263099995],[26.015752792000114,-31.763433455999973],[25.979175568000073,-31.634893416999887],[26.064872742000034,-31.597082137999905],[26.103754044000084,-31.485359191999976],[26.082683563000103,-31.395952224999974],[26.118614197000113,-31.32607078599989],[26.19085693400018,-31.32415008499987],[26.32900619500009,-31.237819671999944],[26.33058548000014,-31.167810439999982],[26.273824692000062,-31.10792922999991],[26.332511902000192,-31.068984984999872],[26.335884094000107,-30.986297606999926],[26.42241287200011,-30.941190719999895],[26.422283173000153,-30.750101088999884],[26.608350754000185,-30.72285461399997],[26.70408248900003,-30.758699416999946],[26.791406631000086,-30.717168807999883],[26.747512817000086,-30.658226012999933],[26.39990043600011,-30.556776046999914],[26.270053864000147,-30.662437438999973],[26.193569183000136,-30.55057144199992],[26.04552459700011,-30.60231018099995],[25.95167160000011,-30.548225402999947],[25.770832062000125,-30.68219375599989],[25.682365417000142,-30.678874968999935],[25.60327148400006,-30.595876693999912],[25.306772232000128,-30.667648314999894],[25.191373825000028,-30.608020781999926],[25.168582916,-30.498405456999876],[25.09562492400005,-30.433584212999904],[25.00975608800013,-30.448160171999973],[24.837583542000175,-30.385429381999984],[24.827348709000034,-30.507591247999983],[24.93141365100007,-30.584436416999893],[24.805030823000152,-30.66547203099998],[24.601474762000123,-30.644702910999968],[24.662231445000145,-30.59566116299993],[24.701265335000016,-30.415109633999975],[24.576560974000188,-30.46014785799997],[24.52031517000006,-30.438447951999876],[24.348680496000043,-30.564474105999977],[24.337579727000048,-30.641822814999955],[24.19510841400006,-30.583570479999935],[24.230070114,-30.489250182999967],[24.25162506100014,-30.31321906999989],[24.324001312000178,-30.375751494999975],[24.372367859000178,-30.50040435799997],[24.500061035000158,-30.461999892999927],[24.523841858000026,-30.383644103999984],[24.622146606000058,-30.376035689999924],[24.78142929100011,-30.415233611999895],[24.822824478000086,-30.329048156999875],[24.77401733400012,-30.194585799999913],[24.61810493500019,-30.092117309999935],[24.606683731000032,-29.99358749399994],[24.546430588000135,-29.96342849699994],[24.468561172000022,-29.995180129999937],[24.415569305000133,-29.835914611999954],[24.45064353900017,-29.781549453999958],[24.59302902200011,-29.89735031099997],[24.74610328700004,-29.894411086999924],[24.753921509000122,-29.752853393999885],[24.943798065000124,-29.775249480999946],[25.070579529000156,-29.761693953999952],[25.121675491000133,-29.72002220199994],[25.22484016400017,-29.757553100999928],[25.265806198000064,-29.611673354999937],[25.192947388000107,-29.58983230599989],[25.1458911900001,-29.50679206799998],[25.212678909000147,-29.458559035999826],[25.41880226100011,-29.50591278099995],[25.560516356999983,-29.498643874999914],[25.487461090000068,-29.23287582399996],[25.52524757400016,-29.18123245199996],[25.50257682800003,-29.013711928999896],[25.461093903000062,-28.91628456099994],[25.313667297000165,-28.818288802999916]],[[25.681053162000183,-30.880989074999945],[25.743625641000165,-31.034896850999928],[25.673809052000138,-31.02895164499995],[25.58878898600011,-31.087244033999923],[25.594022751000182,-31.1556892399999],[25.658512115,-31.21142196699992],[25.762809753000113,-31.22033119199989],[25.816274643000156,-31.33271598799996],[25.866767883000023,-31.328817367999875],[25.900615692000088,-31.438800811999954],[25.774583817000178,-31.40679550199991],[25.712165833000086,-31.35119438199996],[25.67922592200017,-31.25762748699998],[25.62290382400016,-31.257455825999898],[25.520816803000116,-31.321296691999976],[25.395500183000138,-31.282814025999983],[25.461879730000135,-31.228141784999877],[25.39164352400013,-31.024667739999984],[25.498062134,-31.07025527999997],[25.681348801000013,-30.964017867999928],[25.681053162000183,-30.880989074999945]]]},"properties":{"objectid":460,"eco_name":"Nama Karoo shrublands","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Afrotropic","eco_biome_":"AF13","nnh":3,"eco_id":101,"shape_leng":112.685077038,"shape_area":15.3261767424,"nnh_name":"Nature Could Recover","color":"#BA8D4A","color_bio":"#CC6767","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":162242.17311001048,"percentage":0.6149688204149057}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[18.487472534000062,-31.769893645999957],[18.488777161000144,-31.67695808399992],[18.383943558,-31.65703010599998],[18.2419528960001,-31.572242736999954],[18.199235916000134,-31.61915588399995],[18.23336792000015,-31.816137313999832],[18.280187607000073,-31.905643462999876],[18.316659927000103,-31.86650848399995],[18.313945769999975,-31.720170974999917],[18.393541336000112,-31.671115874999884],[18.487472534000062,-31.769893645999957]]],[[[18.884881973,-31.451032638999948],[18.708093643000097,-31.494398116999946],[18.60027885400001,-31.54274368299997],[18.52500343300005,-31.537420272999952],[18.443830490000096,-31.61163520799994],[18.558725357000128,-31.662958144999948],[18.74425315899998,-31.527378081999984],[18.884881973,-31.451032638999948]]],[[[16.733454528000152,-27.530636097999945],[16.557291873000054,-27.48347571499994],[16.444829777000166,-27.346131354999898],[16.19097565500016,-27.329082196999934],[16.082316496999965,-27.215794214999903],[16.083566850000125,-27.337551159999975],[16.262145324000073,-27.512008579999872],[16.33334959300015,-27.51825687099995],[16.410886092000112,-27.58544329399996],[16.540449102000082,-27.604733639999893],[16.683152318000168,-27.589266539999926],[16.678109951000124,-27.711050039999975],[16.404824015000088,-27.62497747699996],[16.324931450000065,-27.63718496599995],[16.160138178000125,-27.499393126999962],[15.87526126400013,-27.309859410999877],[15.863077511000029,-27.218085518999885],[15.759535275000133,-27.18567879099993],[15.807657144000132,-27.09670717599988],[15.797507902000063,-27.013195414999927],[15.671842834000188,-26.760458134999908],[15.704142752000166,-26.728404377999937],[15.633169985000052,-26.614310202999945],[15.540459963000046,-26.557673733999934],[15.361843631,-26.577805162999937],[15.258454166000035,-26.62604884999996],[15.1757502640001,-26.601305850999893],[15.084186198000054,-26.638056848999838],[15.133615816000031,-26.890890541999966],[15.228032651000092,-26.916889366999953],[15.24263132100009,-27.052306143999886],[15.278765135000015,-27.16142573999997],[15.289717368000026,-27.297195671999873],[15.419779392000066,-27.464833078999845],[15.524186733000079,-27.624331345999963],[15.553271042000176,-27.731901225999877],[15.639923011000121,-27.822381635999932],[15.685722329999976,-27.93272909799998],[15.751389865000078,-28.014361380999958],[15.923889755000118,-28.172273086999894],[16.069847865000042,-28.28351191199988],[16.345947713000157,-28.54459802499997],[16.573213577000047,-28.72876739499992],[16.60634231600011,-28.867406844999948],[16.690847397000084,-28.925083159999815],[16.749099731000115,-29.04042243999993],[16.817325591999975,-29.089256286999955],[16.88108062700013,-29.295202254999936],[16.937065125000117,-29.35871124299996],[17.000883102000103,-29.52173805199982],[17.073299408000025,-29.514003753999873],[17.08841514600016,-29.650758742999926],[17.23890304600002,-29.58210945099995],[17.464078903000143,-29.519397735999974],[17.413272858000084,-29.40485382099996],[17.437738419000084,-29.2984580989999],[17.62621879600016,-29.236423491999858],[17.549856186,-29.119201659999874],[17.633323669000106,-29.112230300999954],[17.69149971000013,-29.160551070999873],[17.668256760000077,-29.30595779399988],[17.629068375000088,-29.351549148999936],[17.629583359000094,-29.450088500999982],[17.562044144000026,-29.53559875499991],[17.5472068790001,-29.63725089999997],[17.438756942999987,-29.55329894999994],[17.240165710000042,-29.584863662999908],[17.056226730000162,-29.676937102999943],[17.118570328000146,-29.920249938999916],[17.158138275000113,-29.976778029999934],[17.277925491000133,-30.337814330999947],[17.432573747000163,-30.619911529999968],[17.576599121000186,-30.82793235799994],[17.590713501000096,-30.78314590499997],[17.579801559000146,-30.86410713199996],[17.683376312000178,-30.999006270999928],[17.74572372400013,-31.134984969999948],[17.84906959500006,-31.242959975999895],[17.887586594000084,-31.219169616999977],[17.907415390000097,-31.160497664999923],[17.822576523,-31.11182212799997],[17.79200935400013,-31.036989211999924],[18.002420425000025,-31.122730254999908],[17.88848304700008,-31.222419738999918],[17.88044548000005,-31.31709670999993],[18.11787,-31.58626],[18.213769912999965,-31.557022094999923],[18.29283142100013,-31.529056548999904],[18.39566421500018,-31.567062377999946],[18.438459396000155,-31.392108916999916],[18.416751862000126,-31.305709838999917],[18.524181366000164,-31.177289962999964],[18.36432647700002,-31.074171065999963],[18.288038254000128,-30.958648681999932],[18.346927643000186,-30.896350860999917],[18.443502426000123,-30.908777236999924],[18.509016037000094,-31.005340575999924],[18.578416824000044,-31.000310897999952],[18.66253280600006,-30.91874885599998],[18.715620041000022,-30.778144835999967],[18.783584595000036,-30.68672180199991],[18.923332214000027,-30.68299102799989],[18.931669235000186,-30.622093200999984],[19.172006607000185,-30.623937606999903],[19.30564308200013,-30.749650954999936],[19.306201935000104,-30.555912017999958],[19.053506851000066,-30.451684951999937],[18.98081970200019,-30.513401030999944],[18.91925430300006,-30.485927581999874],[18.848102570000037,-30.548818587999904],[18.747501372999977,-30.530008315999908],[18.74630737300015,-30.468082427999946],[18.680671692000033,-30.374532699999918],[18.618190765000122,-30.403772353999898],[18.51021003700015,-30.344402312999932],[18.540430068999967,-30.22169876099997],[18.517988205000165,-30.13985443099989],[18.56988525400004,-30.04878425599992],[18.381664276000095,-29.972570418999965],[18.297143936000168,-29.94771194499998],[18.33974838300003,-29.906921386999954],[18.46095085100012,-29.962093352999943],[18.474634171,-29.90462303199996],[18.36242866500004,-29.77983093299997],[18.463417053000057,-29.692045211999982],[18.33974838300003,-29.632534026999963],[18.22149276700003,-29.65262794499995],[18.203683852999973,-29.69586753799996],[18.13286972000003,-29.64540290799988],[18.055189133,-29.639932631999898],[18.053588867000144,-29.639217376999966],[18.057693481000115,-29.530395507999913],[18.01166343700004,-29.5935230259999],[17.947452545000147,-29.538179397999954],[18.02101707500003,-29.496221541999944],[18.08024978600008,-29.330240249999974],[18.119989395,-29.323404311999923],[18.08653068500007,-29.30192375199988],[18.020885468000074,-29.317434310999886],[17.888750076000065,-29.176557540999966],[17.961690903000147,-29.119529723999904],[17.937946320000094,-29.04242134099991],[17.833906174000163,-28.94904136699995],[17.655681610000045,-28.92299842799997],[17.639225006000174,-28.97584915199991],[17.54957199100005,-28.987670897999976],[17.417306900000085,-28.913064956999904],[17.415576935,-28.847602843999937],[17.320646286,-28.797243117999926],[17.249732971000014,-28.63282775899995],[17.23082542400016,-28.448263167999983],[17.18373489400011,-28.404680251999935],[17.175050735000013,-28.4325695039999],[17.16803169300016,-28.410615920999874],[17.10829925500002,-28.35819244399994],[17.054279327000074,-28.30198478699998],[17.064273834000062,-28.28768730199988],[17.078182220000087,-28.248836516999916],[17.047670364000112,-28.175823211999898],[16.986179352000136,-28.23352813699995],[16.91001892100013,-28.200849532999882],[16.91153144800012,-28.092170714999952],[17.080961227000103,-28.033761977999973],[17.191585541000165,-28.110885619999976],[17.18039703400018,-28.20472526599997],[17.214561462000063,-28.247920989999955],[17.41883141000011,-28.235083561999943],[17.57111400400015,-27.951015492999886],[17.51437933500017,-28.000026079999884],[17.274796021000043,-27.914739701999963],[17.072383737000052,-27.908691130999955],[16.974203842000122,-27.873422524999967],[16.783307470000125,-27.757538886999953],[16.754727456000126,-27.715562521999914],[16.804823686000134,-27.639782367999942],[16.733454528000152,-27.530636097999945]],[[18.117742538000186,-30.13272285499994],[18.1774368290001,-30.106416701999933],[18.158910751000064,-30.11898422199988],[18.170717239000112,-30.124620437999965],[18.117742538000186,-30.13272285499994]],[[18.136363983000024,-30.154138564999982],[18.183460236000087,-30.15506172199997],[18.146512985000072,-30.156377791999944],[18.160480499000073,-30.175245284999903],[18.136363983000024,-30.154138564999982]],[[18.25763511700012,-30.25716972399988],[18.414495468000155,-30.387556075999953],[18.304107666000107,-30.434200286999896],[18.26040267900015,-30.342044829999907],[18.260658264000085,-30.355945586999894],[18.27797317500017,-30.422880172999953],[18.292968750000057,-30.457950591999975],[18.255561828999987,-30.478101729999935],[18.252389908,-30.49215888999987],[18.17667007400013,-30.43904304499995],[18.196411133000083,-30.512430190999964],[18.105392456000118,-30.477073668999935],[18.026847839000027,-30.376268386999982],[18.036138535000077,-30.38955879199989],[18.069252014000142,-30.41371345499988],[18.08107566800004,-30.401329040999883],[18.038120270000036,-30.268815993999908],[18.057542801000068,-30.219058989999894],[18.03232383700015,-30.201755523999964],[18.030349731000058,-30.259105681999927],[17.990377426,-30.24660873399995],[18.004266739,-30.273433684999873],[17.96018600500014,-30.226766585999826],[17.982654572000172,-30.22839355499997],[17.95263481100011,-30.142498015999877],[17.996311188000163,-30.1526813509999],[18.022348404000127,-30.166467666999836],[18.024024963000045,-30.160673140999904],[18.057601929000157,-30.219058989999894],[18.133743286000026,-30.255420684999933],[18.105617522999978,-30.252569198999936],[18.168392181000115,-30.321830749999947],[18.146087646000183,-30.24794959999997],[18.286359787000038,-30.277397155999836],[18.25763511700012,-30.25716972399988]],[[18.075117111000054,-30.130308150999895],[18.06451225300009,-30.127332686999978],[18.025686264000115,-30.10253333999998],[18.115697861000058,-30.124933242999873],[18.075117111000054,-30.130308150999895]]],[[[16.11372029400013,-26.432704282999907],[16.10988017400001,-26.554494855999906],[16.20263346700017,-26.75153764099997],[16.27667378100017,-26.756978914999877],[16.29789976400002,-26.668293786999925],[16.177299670000025,-26.591250185999854],[16.11372029400013,-26.432704282999907]]]]},"properties":{"objectid":461,"eco_name":"Namaqualand-Richtersveld steppe","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Afrotropic","eco_biome_":"AF13","nnh":2,"eco_id":102,"shape_leng":73.8131802293,"shape_area":4.89946619404,"nnh_name":"Nature Could Reach Half Protected","color":"#DFB44C","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":53037.11550917112,"percentage":0.20103387262181355}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[13.770469533000153,-20.39568253199991],[13.616352391000191,-20.36069281099998],[13.59757284900013,-20.26303919399993],[13.522454682000046,-20.244259652999972],[13.488651507000156,-20.311866002999977],[13.578793308,-20.41327552799993],[13.706494192000093,-20.428299161999973],[13.717761917000075,-20.503417328999888],[13.544990133000113,-20.450834611999937],[13.56752558300002,-20.582291403999932],[13.390997890000108,-20.612338670999918],[13.347695676000171,-20.657515899999908],[13.413978815,-20.87771686399998],[13.55182886100016,-21.055349530999933],[13.573749617000033,-21.134528143999944],[13.689047863000155,-21.261459063999894],[13.806253111000046,-21.42023223399997],[13.876486127000021,-21.581953257999885],[13.974493871000107,-21.70995354699994],[13.95011460000012,-21.770934686999965],[14.05324311400011,-21.849056015999963],[14.29500752500013,-22.14099625399996],[14.394601540000167,-22.27819330799997],[14.512660324000024,-22.565533694999942],[14.536553445000152,-22.908060872999897],[14.433229934999986,-22.96709570899992],[14.406686238000134,-23.015896560999977],[14.497881,-23.309001412999976],[14.493180274999986,-23.39867970599994],[14.44354957100012,-23.443757948999917],[14.512363488000176,-23.61459944199987],[14.500734988999966,-23.759925409999937],[14.509752878000143,-23.91357203799987],[14.450178057000016,-24.027189937999935],[14.499861918000136,-24.215282805999948],[14.6147189940001,-24.470397143999946],[14.593924158000107,-24.55085019899991],[14.733247284000129,-24.707946488999823],[14.797892300000058,-24.836832677999894],[14.797777915000097,-24.92702229799994],[14.880653611000184,-25.07606065899995],[14.850310117000106,-25.130537346999972],[14.81658000300007,-25.373483881999903],[14.885278728000173,-25.52772180799991],[14.83081421999998,-25.74308872799992],[14.912235103000057,-25.84256404399997],[14.908049924000068,-25.889739689999942],[14.984184481000057,-26.06034370699996],[14.956644422000181,-26.302093584999966],[15.120959990000188,-26.428609044999916],[15.141952848000074,-26.575647090999894],[15.1757502640001,-26.601305850999893],[15.258454166000035,-26.62604884999996],[15.361843631,-26.577805162999937],[15.540459963000046,-26.557673733999934],[15.633169985000052,-26.614310202999945],[15.704142752000166,-26.728404377999937],[15.671842834000188,-26.760458134999908],[15.797507902000063,-27.013195414999927],[15.807657144000132,-27.09670717599988],[15.759535275000133,-27.18567879099993],[15.863077511000029,-27.218085518999885],[15.87526126400013,-27.309859410999877],[16.160138178000125,-27.499393126999962],[16.324931450000065,-27.63718496599995],[16.404824015000088,-27.62497747699996],[16.678109951000124,-27.711050039999975],[16.683152318000168,-27.589266539999926],[16.540449102000082,-27.604733639999893],[16.410886092000112,-27.58544329399996],[16.33334959300015,-27.51825687099995],[16.262145324000073,-27.512008579999872],[16.083566850000125,-27.337551159999975],[16.082316496999965,-27.215794214999903],[16.19097565500016,-27.329082196999934],[16.444829777000166,-27.346131354999898],[16.557291873000054,-27.48347571499994],[16.733454528000152,-27.530636097999945],[16.79603344800006,-27.492548736999936],[16.70722822,-27.363732690999882],[16.73121334500007,-27.298304387999963],[16.566821659000027,-27.3032567759999],[16.430778951000036,-27.28048476099991],[16.43693302100013,-27.144282973999907],[16.492899083000168,-27.028478208999957],[16.37660682400019,-26.883133983999983],[16.40454908800018,-26.825814826999874],[16.3657831700001,-26.74743837099993],[16.46831179700007,-26.5959504999999],[16.578350194000052,-26.519789739999965],[16.627997121000135,-26.375083469999936],[16.640671037,-26.23729155599989],[16.602300826000032,-26.132993673999977],[16.55685252799998,-26.106091882999976],[16.488019234999967,-26.17657307899998],[16.24390279300013,-25.99416703599985],[16.136779130000036,-25.95334695599996],[15.989407045000178,-25.733425830999977],[15.927677678000123,-25.533279268999934],[15.95219542700005,-25.402902886999925],[16.01042082200007,-25.255737197999963],[16.025332591000108,-25.14730270399997],[15.995537370000136,-25.08190975999986],[15.82035775900016,-24.89686209099989],[15.75605666600012,-24.733896409999943],[15.660653641000124,-24.61062106499992],[15.599247840000032,-24.48271279799991],[15.587732588000108,-24.400704662999942],[15.600631963000069,-24.22132877499996],[15.68609298400014,-23.98871842099993],[15.701350606000062,-23.86954491599994],[15.675940796000134,-23.73725169599993],[15.54735877100012,-23.771996569999942],[15.388906387000077,-23.748522141999956],[15.394774994000102,-23.701573287999906],[15.541490164000095,-23.683967467999935],[15.61191344600013,-23.60767557899993],[15.72341697500002,-23.584201151999935],[15.647125086000187,-23.431617374999917],[15.54735877100012,-23.425748768999938],[15.53562155700007,-23.161661462999973],[15.629519266000045,-23.10297539499993],[15.577030447000027,-23.011049537999952],[15.493367588000126,-22.97386604499991],[15.549706214000082,-22.82362971099991],[15.634214151000094,-22.80954505499983],[15.615434609999966,-22.527851928999837],[15.709332318000065,-22.424564448999945],[15.57787552600007,-22.396395136999956],[15.526231786000096,-22.32127696999993],[15.329046598000048,-22.377615594999895],[15.258623317000058,-22.33536162599995],[15.343131254000127,-22.269633229999954],[15.259607728000049,-22.2114204369999],[15.169420493000132,-22.203904833999957],[15.0142943460001,-22.035681145999888],[14.648921122000104,-21.732820154999956],[14.320208788000116,-21.30944849699995],[14.314951344000178,-21.186992647999887],[14.412604961,-21.145677655999975],[14.412604961,-21.04051222299995],[14.506502669999975,-21.02924449799997],[14.570404917000076,-20.98607313699995],[14.450164045000122,-20.803889996999942],[14.491479036000044,-20.676189112999964],[14.371289969000031,-20.664921387999982],[14.3074395270001,-20.58604731199989],[14.311195436000048,-20.49966141999994],[14.405093144000148,-20.469614153999885],[14.375045878000037,-20.390740077999965],[14.168828624000128,-20.349425085999883],[14.097108660000117,-20.259283285999913],[14.037014126000088,-20.402007802999947],[13.995699134000063,-20.443322794999972],[13.78536826700008,-20.537220503999833],[13.770469533000153,-20.39568253199991]],[[16.11372029400013,-26.432704282999907],[16.177299670000025,-26.591250185999854],[16.29789976400002,-26.668293786999925],[16.27667378100017,-26.756978914999877],[16.20263346700017,-26.75153764099997],[16.10988017400001,-26.554494855999906],[16.11372029400013,-26.432704282999907]]]},"properties":{"objectid":462,"eco_name":"Namib Desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Afrotropic","eco_biome_":"AF13","nnh":1,"eco_id":103,"shape_leng":36.3154610517,"shape_area":7.03411922953,"nnh_name":"Half Protected","color":"#E89B49","color_bio":"#CC6767","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":79587.21018230244,"percentage":0.3016703476520671}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[18.01410947500011,-27.742149854999923],[18.03694561200018,-27.635199294999893],[17.936861406,-27.646888222999905],[17.94558435600004,-27.70663015199989],[18.01410947500011,-27.742149854999923]]],[[[16.234280233000106,-23.45872693599989],[16.110745023000106,-23.45509180299996],[15.999241494000046,-23.331851059999963],[15.98750428,-23.16753006999994],[15.858394931000191,-23.061895146999973],[15.782103043000063,-22.950391617999912],[15.805577470000173,-22.791939234999973],[15.74689140200013,-22.791939234999973],[15.77036582900007,-22.674567098999944],[15.852526324,-22.69804152599994],[15.864263538000046,-22.59827520999994],[15.969898460000081,-22.586537996999937],[16.016911072000084,-22.539525384999877],[15.971306926000125,-22.32127696999993],[15.723830970000108,-22.323766966999983],[15.603227908,-22.22362335199989],[15.663322441000162,-21.964465675999918],[15.580692457000168,-21.926906592999842],[15.56191291600004,-22.020804301999874],[15.463917283000114,-22.077043690999915],[15.400408857000059,-22.020804301999874],[15.368803878999984,-21.854413386999965],[15.220125256000188,-21.806717525999943],[15.331263350000143,-21.656773544999965],[15.272707973000138,-21.34849670699998],[15.03232983900017,-21.160701289999963],[15.017306205000182,-20.886519979999946],[15.06237710500011,-20.84144907999996],[15.009794388000103,-20.751307279999878],[14.885849413000017,-20.751307279999878],[14.810731246000103,-20.781354545999932],[14.867069871000183,-20.863984529999982],[14.758148529000152,-20.94285860499997],[14.641715370000043,-20.961638146999974],[14.570353112000134,-20.909055429999967],[14.525282212000036,-20.815157721999924],[14.570353112000134,-20.751307279999878],[14.570353112000134,-20.616094578999935],[14.698053996,-20.578535495999915],[14.795707613000047,-20.510929144999977],[14.713077629000054,-20.420787344999894],[14.649227187000122,-20.390740077999965],[14.495234945,-20.37196053699995],[14.408849053000097,-20.150361943999883],[14.266124535000074,-20.041440601999966],[14.179738643000178,-20.056464234999908],[14.202274094000074,-19.943786984999917],[14.303683619000026,-19.88744835999995],[14.314951344000178,-19.80857428399986],[14.258612719000098,-19.733456116999946],[14.175982735000105,-19.72970020899993],[14.1083763850001,-19.6696056749999],[14.052037760000019,-19.49307798299992],[13.800391900000136,-19.515613432999885],[13.78536826700008,-19.45927480799992],[13.687714650000032,-19.45551889999996],[13.650155566000137,-19.38040073299993],[13.439824699000155,-19.36913300799995],[13.368462440000144,-19.33157392399994],[13.34633061900007,-19.19782725999994],[13.35473511500004,-19.096973317999982],[13.476600295000082,-19.02973735599994],[13.392555343000083,-18.983512632999975],[13.353702984000165,-18.865938168999946],[13.23286993400012,-18.996119375999967],[13.106802507000111,-18.97510813799994],[13.098398012000075,-18.886860937999927],[13.211858697000025,-18.84063621499996],[13.102600259000042,-18.78600699599997],[12.867274394000162,-18.57589461699996],[12.833656414000188,-18.500254159999884],[12.774824947000127,-18.470838426999876],[12.787431690000062,-18.344771],[12.636657072000048,-18.219361754999966],[12.623544034000076,-18.327962008999975],[12.539499082000077,-18.327962008999975],[12.652959767000084,-18.445624941999938],[12.627746282000146,-18.504456407999953],[12.732802471000014,-18.546478883999953],[12.749611462000189,-18.693557548999934],[12.926105860000177,-18.80281598699986],[12.854667651000057,-18.82382722499989],[12.741206967000153,-18.764995757999827],[12.720195729000011,-18.80701823399994],[12.831367546000024,-18.99354217299998],[12.92526525500017,-19.087439880999966],[12.955312522000156,-18.940959455999916],[13.019162964000088,-19.06490443099983],[13.08676931400015,-19.098707606999938],[13.01540705500014,-19.16255804799988],[13.124328398000046,-19.30152665699984],[13.199446564000084,-19.324062106999975],[13.210714290000112,-19.436739357999954],[13.278320640000175,-19.538148882999906],[13.37221834900015,-19.53063706699993],[13.556464985000048,-19.58131421199988],[13.6238642080001,-19.680873399999882],[13.650155566000137,-19.789794742999902],[13.807903717000045,-19.872424725999963],[13.871754158999977,-19.872424725999963],[13.864242342000068,-19.958810617999973],[13.807903717000045,-20.07524377699997],[13.856730525000046,-20.36069281099998],[13.770469533000153,-20.39568253199991],[13.78536826700008,-20.537220503999833],[13.995699134000063,-20.443322794999972],[14.037014126000088,-20.402007802999947],[14.097108660000117,-20.259283285999913],[14.168828624000128,-20.349425085999883],[14.375045878000037,-20.390740077999965],[14.405093144000148,-20.469614153999885],[14.311195436000048,-20.49966141999994],[14.3074395270001,-20.58604731199989],[14.371289969000031,-20.664921387999982],[14.491479036000044,-20.676189112999964],[14.450164045000122,-20.803889996999942],[14.570404917000076,-20.98607313699995],[14.506502669999975,-21.02924449799997],[14.412604961,-21.04051222299995],[14.412604961,-21.145677655999975],[14.314951344000178,-21.186992647999887],[14.320208788000116,-21.30944849699995],[14.648921122000104,-21.732820154999956],[15.0142943460001,-22.035681145999888],[15.169420493000132,-22.203904833999957],[15.259607728000049,-22.2114204369999],[15.343131254000127,-22.269633229999954],[15.258623317000058,-22.33536162599995],[15.329046598000048,-22.377615594999895],[15.526231786000096,-22.32127696999993],[15.57787552600007,-22.396395136999956],[15.709332318000065,-22.424564448999945],[15.615434609999966,-22.527851928999837],[15.634214151000094,-22.80954505499983],[15.549706214000082,-22.82362971099991],[15.493367588000126,-22.97386604499991],[15.577030447000027,-23.011049537999952],[15.629519266000045,-23.10297539499993],[15.53562155700007,-23.161661462999973],[15.54735877100012,-23.425748768999938],[15.647125086000187,-23.431617374999917],[15.72341697500002,-23.584201151999935],[15.61191344600013,-23.60767557899993],[15.541490164000095,-23.683967467999935],[15.394774994000102,-23.701573287999906],[15.388906387000077,-23.748522141999956],[15.54735877100012,-23.771996569999942],[15.675940796000134,-23.73725169599993],[15.701350606000062,-23.86954491599994],[15.68609298400014,-23.98871842099993],[15.600631963000069,-24.22132877499996],[15.587732588000108,-24.400704662999942],[15.599247840000032,-24.48271279799991],[15.660653641000124,-24.61062106499992],[15.75605666600012,-24.733896409999943],[15.82035775900016,-24.89686209099989],[15.995537370000136,-25.08190975999986],[16.025332591000108,-25.14730270399997],[16.01042082200007,-25.255737197999963],[15.95219542700005,-25.402902886999925],[15.927677678000123,-25.533279268999934],[15.989407045000178,-25.733425830999977],[16.136779130000036,-25.95334695599996],[16.24390279300013,-25.99416703599985],[16.488019234999967,-26.17657307899998],[16.55685252799998,-26.106091882999976],[16.602300826000032,-26.132993673999977],[16.640671037,-26.23729155599989],[16.627997121000135,-26.375083469999936],[16.578350194000052,-26.519789739999965],[16.46831179700007,-26.5959504999999],[16.3657831700001,-26.74743837099993],[16.40454908800018,-26.825814826999874],[16.37660682400019,-26.883133983999983],[16.492899083000168,-27.028478208999957],[16.43693302100013,-27.144282973999907],[16.430778951000036,-27.28048476099991],[16.566821659000027,-27.3032567759999],[16.73121334500007,-27.298304387999963],[16.70722822,-27.363732690999882],[16.79603344800006,-27.492548736999936],[16.733454528000152,-27.530636097999945],[16.804823686000134,-27.639782367999942],[16.754727456000126,-27.715562521999914],[16.783307470000125,-27.757538886999953],[16.974203842000122,-27.873422524999967],[17.072383737000052,-27.908691130999955],[17.274796021000043,-27.914739701999963],[17.51437933500017,-28.000026079999884],[17.57111400400015,-27.951015492999886],[17.64445950700008,-27.880987010999945],[17.682552332000057,-27.772405680999896],[17.600055989000168,-27.7303266429999],[17.602055530000143,-27.58735851299997],[17.726947865000113,-27.41311321099994],[17.660460361000105,-27.36758217599987],[17.56717229100002,-27.398709991999965],[17.55699080500017,-27.49210624299991],[17.50375011400007,-27.512638367999955],[17.377689572,-27.46241704199997],[17.305500233000146,-27.397171216999936],[17.21749863500014,-27.391260573999887],[17.158213701000136,-27.43720041499995],[17.167769684000064,-27.642219949999912],[17.148093617000143,-27.714530378999882],[17.055314606000024,-27.686796707999974],[17.093374693999976,-27.59344230699992],[17.07090501000016,-27.425309778999917],[16.99341959800006,-27.347972907999917],[17.05668561500005,-27.201976721999927],[17.02391233600008,-27.027453734999938],[16.87800353000017,-26.925493647999872],[16.739999221000176,-26.89457667499994],[16.67400364499997,-26.816756022999982],[16.79489821499999,-26.563844901999914],[16.754466080000157,-26.438135613999975],[16.794281551000154,-26.413121018999902],[16.802513176000105,-26.295920590999913],[16.75961848200012,-26.123865158999877],[16.792270685000062,-25.99649492899988],[16.713906324000106,-25.86976560399995],[16.742854836000106,-25.721541018999915],[16.667689176000067,-25.504386990999933],[16.519719653000095,-25.409086011999932],[16.46567959200013,-25.28416577099989],[16.447935969000127,-25.16446040199986],[16.397195062000094,-25.052559481999936],[16.342949547000046,-24.867883434999897],[16.233177722000107,-24.628764265999905],[16.212537515,-24.501232413999958],[16.254693256000053,-24.33823748899988],[16.269722832000127,-24.204725644999883],[16.172019778000163,-23.990433589999896],[16.15503194000007,-23.770793789999914],[16.167266167000037,-23.691784303999896],[16.249412819000042,-23.50255314599991],[16.234280233000106,-23.45872693599989]],[[17.54776914100006,-27.596926937999967],[17.515625995000107,-27.746229398999958],[17.447397700000067,-27.828319345999944],[17.431579738000096,-27.637891437999883],[17.509998742,-27.550130099999876],[17.54776914100006,-27.596926937999967]]],[[[13.96703628600011,-13.23282826299993],[13.900245896000115,-13.065957204999847],[13.881696170000055,-12.897714966999843],[13.88883068000007,-12.771111023999936],[13.92738029800006,-12.594773963999955],[14.045855816000142,-12.37664681299998],[14.093246023000177,-12.148409839999943],[14.07284130500011,-12.071456964999982],[14.002443139000036,-12.020189749999872],[13.759791925000059,-11.960567032999961],[13.654399486999978,-12.236122165999973],[13.583129505000045,-12.33684548499997],[13.485710500000039,-12.421119653999938],[13.466999578000184,-12.512792528999967],[13.344929563000164,-12.606806972999891],[13.299779436,-12.577558991999922],[13.19486047100014,-12.59365794599995],[13.138435007999988,-12.663947663999977],[13.01338958499997,-12.765985181999952],[12.93585044300005,-12.8594299909999],[12.97657056700001,-12.959373289999974],[12.872819537000055,-13.102322457999946],[12.654129480000165,-13.26484286699997],[12.650059563000127,-13.33178812199992],[12.52923945800012,-13.441281090999837],[12.55508053,-13.54795371699987],[12.514539444000093,-13.87573206399992],[12.425760504000095,-13.874722044999942],[12.424920470000075,-13.942547734999891],[12.364780482000128,-14.05781985799996],[12.372949988000187,-14.151257794999879],[12.339050554000039,-14.21556945499998],[12.371689517999982,-14.287254005999955],[12.3459394730001,-14.445434432999832],[12.303609521000112,-14.571886338999946],[12.289159455,-14.750223734999963],[12.211970507999979,-14.843807515999913],[12.168359466000084,-15.022346914999957],[12.13691945000005,-15.057043802999942],[12.146704565000107,-15.19113742099995],[12.294404925000038,-15.369838394999874],[12.387357035000036,-15.597230101999969],[12.409053817000029,-15.722568434999971],[12.400522998000042,-15.917768584999976],[12.419810067000071,-16.10493973399997],[12.479525798000111,-16.20896633199993],[12.439838945000133,-16.33571901499994],[12.455046057000175,-16.539916694999874],[12.406457481000189,-16.63802562199993],[12.403861145000121,-16.74425366299988],[12.366541978000043,-16.952885595999874],[12.333884449000095,-17.03022186599992],[12.148690057000067,-17.302613597999937],[12.186510285000054,-17.449692263999964],[12.19491478000009,-17.575759690999973],[12.152892304000034,-17.72704060399991],[12.29997097000006,-17.676613632999874],[12.358802436000076,-17.77326532799998],[12.236937256000033,-17.83209679399988],[12.236937256000033,-18.016995687999895],[12.298713363000047,-18.11389276899996],[12.26635298900004,-18.185085590999904],[12.308375465000097,-18.273332790999973],[12.442847388000075,-18.306950770999947],[12.428867633000038,-18.184627920999958],[12.560510320000049,-18.19349008699993],[12.594128301000126,-18.15554055799987],[12.51176424800019,-18.098519290999832],[12.484869864000188,-17.99430355099986],[12.50840245,-17.947238377999952],[12.434442893000039,-17.799319262999916],[12.622703585000124,-17.81612825299993],[12.683215949999976,-17.621143964999874],[12.54538222900004,-17.422797878999972],[12.548744027000055,-17.385818099999938],[12.473862374000134,-17.253677018999838],[12.612896082000134,-17.20937067899996],[12.808094205000032,-17.115066245999913],[12.984609022000143,-16.982998961999954],[13.16969231100012,-16.96379184499989],[13.221246306000069,-16.823558452999976],[13.235100172000045,-16.612549994999938],[13.167618439000137,-16.460034307999933],[13.184153698000046,-16.376871231999814],[13.266829994000148,-16.264072898999927],[13.257892016000085,-16.181255673999942],[13.13186652700017,-16.052025830999867],[13.106393290000085,-15.887899095999956],[13.074216569000043,-15.820404962999874],[13.096114615000033,-15.627256249999846],[13.039358455000183,-15.278354543999967],[12.918695753000122,-14.912461926999981],[12.932549619000156,-14.75261924799986],[12.983496092999985,-14.460712446999878],[13.067066187000137,-14.19138558799989],[13.130525830000181,-14.102549802999874],[13.39821826900004,-13.85839891899991],[13.403581056000121,-13.798948396999947],[13.321798558000069,-13.675225469999873],[13.328948940000146,-13.541444777999914],[13.427713597000093,-13.502338774999885],[13.45631512600005,-13.56924958199994],[13.55597358000017,-13.497558712999819],[13.599769672000093,-13.395851119999975],[13.599304387000075,-13.277195579999955],[13.678413051,-13.192948117999947],[13.87855120800009,-13.18504842599998],[13.96703628600011,-13.23282826299993]]]]},"properties":{"objectid":463,"eco_name":"Namibian savanna woodlands","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Afrotropic","eco_biome_":"AF13","nnh":3,"eco_id":104,"shape_leng":64.4175800141,"shape_area":8.86762041887,"nnh_name":"Nature Could Recover","color":"#FCD135","color_bio":"#CC6767","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":103328.41018899981,"percentage":0.3916598829466495}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[141.3925669030001,-37.249453320999976],[141.3407684110001,-37.25094792899989],[141.2270616950001,-37.34997762099994],[141.3825953700001,-37.37501500399998],[141.3925669030001,-37.249453320999976]]],[[[141.31940615300005,-37.171479612999974],[141.2560566110002,-37.10227446299996],[141.0966920610001,-37.084883436999974],[141.1349866610002,-37.2583846039999],[141.31940615300005,-37.171479612999974]]],[[[141.15911813600007,-37.28391215399995],[141.07728702800011,-37.20952114599993],[140.8939263300001,-37.1592685679999],[140.78955108100013,-36.998134293999954],[140.77265929400005,-36.89693471299995],[140.6891628950002,-36.738033507999944],[140.51675396300004,-36.52193448499992],[140.34205604400017,-36.40213757599997],[140.36675990900005,-36.370639552999876],[140.57995571200024,-36.3258360879999],[140.64616395900032,-36.37063579599993],[140.73245208400022,-36.28963064399994],[140.65031396100017,-36.163170098999956],[140.4601136020001,-36.044815308999944],[140.43304408500023,-35.94883349199995],[140.48664877400006,-35.86523411799993],[140.22184789900018,-35.79473492599993],[140.03303558800008,-35.694839529999854],[139.99964877200023,-35.6014401299999],[139.92694078600027,-35.542240025999945],[139.84248339300018,-35.53424835599998],[139.70135461100017,-35.47734068499983],[139.54235801900006,-35.507644386999914],[139.46246322200022,-35.480842544999916],[139.42056299400008,-35.53584312599986],[139.45635960000004,-35.63574237599988],[139.34895345100006,-35.705146520999904],[139.3270565900001,-35.788547810999944],[139.469756941,-35.89974582999997],[139.58575453600008,-36.02464310199997],[139.71524033600008,-36.24711971999983],[139.67837743600023,-36.26157055999994],[139.80584000300018,-36.51438999599998],[139.86222000300017,-36.69471999599989],[139.85056000300017,-36.82344999599991],[139.6763300030002,-36.96742999599991],[139.74228000300013,-37.02493999599989],[139.79558000300017,-37.1392399959999],[139.75723000400012,-37.19464999599995],[139.82794000400008,-37.30417999599996],[139.97342000400022,-37.45960999499994],[140.11559000400018,-37.5259299949999],[140.112640004,-37.57857999499987],[140.28020000400022,-37.72816999499997],[140.37578000400003,-37.89910999499989],[140.57128000400007,-38.02193999499991],[140.66202000400017,-38.06008999499994],[140.84584000400014,-38.04131999499998],[140.98787000400011,-38.05808999499993],[141.23958000400012,-38.17785999499989],[141.38489000400023,-38.30779999499998],[141.4069100040001,-38.369369994999886],[141.5794700040002,-38.388329994999935],[141.50755621200005,-38.26481157899997],[141.3833376870001,-38.20524229499995],[141.53568023700018,-38.14838850399991],[141.51723339500006,-38.06559239599994],[141.32397168700015,-38.08003822099988],[141.32221587800007,-37.971890336999934],[141.38565156100003,-37.9436446869999],[141.50228033700012,-37.996519737999904],[141.54696185300008,-37.94387766999995],[141.67530459500017,-37.943687286999875],[141.66185110400022,-37.87066713699994],[141.4349887200001,-37.85629665399989],[141.47742956100012,-37.75819550499995],[141.3176697780002,-37.68675176299996],[141.30163009500006,-37.58043004599989],[141.22744824400002,-37.37829059599994],[141.15911813600007,-37.28391215399995]],[[140.39517180400026,-37.54804214799992],[140.50798009300013,-37.52934261699994],[140.611175752,-37.62054062199991],[140.63157661700006,-37.70114128899996],[140.72846991200004,-37.71223827599994],[140.9293666870002,-37.78093746099995],[140.80906662900009,-37.95333836599997],[140.72407505900014,-37.95974336899985],[140.67617768000002,-37.884341923999955],[140.52174356600017,-37.76340125599984],[140.39517180400026,-37.54804214799992]]]]},"properties":{"objectid":466,"eco_name":"Naracoorte woodlands","biome_num":12,"biome_name":"Mediterranean Forests, Woodlands & Scrub","realm":"Australasia","eco_biome_":"AU12","nnh":3,"eco_id":204,"shape_leng":18.3443724356,"shape_area":2.48580005863,"nnh_name":"Nature Could Recover","color":"#B3493B","color_bio":"#FE0000","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":24628.47373146684,"percentage":0.7455506362879613}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-101.14276935699996,40.70710304600016],[-101.04017556399998,40.72693371800011],[-100.79796242599997,40.48629632400019],[-100.76706836699992,40.60718359500004],[-100.80129701499999,40.72667586800014],[-100.70138860599997,40.81589081300007],[-100.67473365299998,40.96323319200019],[-100.81787848499988,41.091338791000055],[-100.99208466599998,41.13596263599999],[-101.14677626699995,41.13755763400019],[-101.24626682199982,41.09969558800009],[-101.29968976299995,40.904266704],[-101.16713576999996,40.816155674000015],[-101.14276935699996,40.70710304600016]]],[[[-98.93359994399992,42.81966145900009],[-98.96785959099998,42.88111174900018],[-99.07155213899989,42.80796475000011],[-98.91382268399991,42.76455405300004],[-98.85412048799992,42.776847552000106],[-98.71397463099999,42.732610084999976],[-98.30046684399991,42.69392551600015],[-98.31857796199989,42.762553],[-98.57627678999995,42.7630500730001],[-98.84706142199991,42.82536439800003],[-98.93359994399992,42.81966145900009]]],[[[-98.03354590699996,42.11874322500017],[-98.25969937499991,42.21782492400007],[-98.53429194399996,42.41622625400004],[-98.68738690899994,42.460410771],[-98.83505075699992,42.474732686000095],[-99.131798458,42.59281494500004],[-99.11469670999992,42.700339801000155],[-99.15595826299995,42.77424558700005],[-99.24814953099997,42.79185677900006],[-99.34504370899992,42.73484702900015],[-99.51362281699994,42.67747108800006],[-99.71086797099997,42.711161096000126],[-99.83163322799993,42.70467842200003],[-100.01234105299994,42.77750066800019],[-100.12959810899997,42.76348480200011],[-100.14739472299988,42.817417614000135],[-100.35305825899997,42.89700624300008],[-100.50831073199993,42.86800958300006],[-100.67188043999988,42.89607205400017],[-100.82491117899991,42.96537179100005],[-100.93894900999999,43.064458134000176],[-101.09057597299994,43.12565399600004],[-101.1639499989999,43.110264624000195],[-101.33857128299996,43.15714335900003],[-101.37701713199993,43.06560964300013],[-101.69820290399997,43.077949638],[-101.89824521399999,43.121694081000044],[-102.04316372099993,43.08092557700013],[-102.16995747699991,43.082186444000115],[-102.14970050699992,43.015379904000156],[-102.29972257399999,42.99194748400009],[-102.15318931199994,42.943971239000064],[-101.98205467599996,42.75034203300004],[-102.34911976099988,42.66444010500004],[-102.44636790299995,42.623629490000155],[-102.5317088079999,42.491287047000185],[-102.69830105299991,42.407544236000035],[-102.72681296699989,42.30137879700004],[-102.77640728599988,42.27248828000012],[-102.74975368299988,42.06811374700004],[-103.01091011599993,42.0491120050001],[-103.1014189959999,42.08512632500009],[-103.18717478999997,42.06018961700005],[-103.37699903799995,42.13340920500019],[-103.42512737399994,42.09607024000013],[-103.38179765699994,42.00002267500008],[-103.24649254699989,41.90321051000018],[-102.79536043999991,41.688060742],[-102.70337763999993,41.59987291500016],[-102.55258952399998,41.55823978400002],[-102.37542389299983,41.46641313000009],[-102.26225429199991,41.37320480400007],[-102.18319223599991,41.37694735600013],[-101.95443561199994,41.29708385900011],[-101.73832268199993,41.25376577500015],[-101.59829546599997,41.248434047000046],[-101.36897667699992,41.18284513600008],[-101.07418238599996,41.21766000900004],[-100.83402407099993,41.22817174600016],[-100.63969464699994,41.1183922190001],[-100.47387234799999,41.0870087510001],[-100.35398008999994,41.01174440600016],[-100.16454417399996,40.948892625000155],[-100.24313452699994,41.07685176500007],[-100.20047219399993,41.253848539000046],[-100.2898006499999,41.36268052100013],[-100.49527387899997,41.408288196000115],[-100.32121186699999,41.48508599400003],[-100.06485339299991,41.50415211600017],[-99.80983543299993,41.59366191200007],[-99.48190665299995,41.805151956000145],[-99.29546229199997,41.76498030300013],[-99.14318431799995,41.80551039800014],[-98.86179820299998,41.75917469600017],[-98.71324928599995,41.63411809400009],[-98.66801415899994,41.55781192600017],[-98.53323904499996,41.536198132000095],[-98.51312160699996,41.638579113000105],[-98.42418699599995,41.642864455000165],[-98.4403192019999,41.77018006500015],[-98.28426363099987,41.78565319000006],[-98.14330184099992,41.75093018400014],[-98.0894753529999,41.77937409600014],[-98.1704771879999,41.90687707800015],[-98.1348942439999,41.979600557000026],[-98.04112529299994,42.02538264900011],[-98.03354590699996,42.11874322500017]]]]},"properties":{"objectid":468,"eco_name":"Nebraska Sand Hills mixed grasslands","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Nearctic","eco_biome_":"NE08","nnh":2,"eco_id":395,"shape_leng":22.4358853826,"shape_area":6.43184011604,"nnh_name":"Nature Could Reach Half Protected","color":"#FCDF6A","color_bio":"#FEFF73","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":59164.276778666055,"percentage":0.5584012666633653}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[124.30476356000008,45.05297792400006],[124.30541265400018,45.16696895700005],[123.99550653600011,45.28466680399998],[123.88026458800005,45.24150804900012],[123.66732753400004,45.06680990800004],[123.6448516280002,44.8573069200001],[123.68247262700004,44.78563980400014],[123.82294460700018,44.77460368700014],[123.93135865800002,44.948778797000045],[124.02210265000008,44.999190748],[124.30476356000008,45.05297792400006]]],[[[125.25059461400019,46.284852153000145],[125.28781864600012,46.327806389000045],[125.29557056500016,46.462690825000095],[125.19525863000001,46.53398410900019],[124.90287069000033,46.57500732200015],[124.87007867300008,46.649352456000145],[124.3378755980001,46.958923969000125],[124.24998463700013,46.90572369400019],[124.167350639,46.772052120000126],[123.93493655700001,46.76071123700012],[123.72904164300007,46.93839283200015],[123.71200559200008,47.08809362300019],[123.82015963600008,47.29201409600017],[124.07837656900017,47.596017007],[123.94103958800008,47.64662241200017],[123.75549358800015,47.803022523000095],[123.71279868800002,47.891970944000036],[123.55921154400005,47.763494138000056],[123.32330355000022,47.725449686000104],[123.32836957200016,47.61951517000011],[123.16577154700008,47.56400366900016],[123.12920365000002,47.47644412900013],[122.87363456000003,47.17481011100011],[122.84132366500012,47.06091060800003],[123.05374858400023,46.991925198000104],[123.11758465600019,46.928932849000034],[122.92874859100004,46.82671738300007],[122.86415060500008,46.76777215200019],[122.8321376020001,46.6257203510001],[123.09185757700004,46.497690971000054],[123.15460165500008,46.444162628000186],[123.23348257200018,46.28337224400019],[123.35343163000005,46.19552788700014],[123.42765053300002,46.28132823300007],[123.69620553700008,46.24746484200011],[123.78578964200005,46.19773987100018],[123.83291655800008,46.03309716500013],[124.02375757300001,45.68382242100017],[124.20729057500023,45.51560215000012],[124.30363468500002,45.46948927799997],[124.41762555100013,45.47138928700008],[124.50369260900004,45.66169352600019],[124.57570656800021,45.74928273800003],[124.95505558100024,45.91238099500009],[124.92752069400012,46.00710337400011],[125.0286946240002,46.17279180700007],[125.25059461400019,46.284852153000145]]]]},"properties":{"objectid":471,"eco_name":"Nenjiang River grassland","biome_num":9,"biome_name":"Flooded Grasslands & Savannas","realm":"Palearctic","eco_biome_":"PA09","nnh":4,"eco_id":743,"shape_leng":11.1612772501,"shape_area":2.72628876162,"nnh_name":"Nature Imperiled","color":"#5998A9","color_bio":"#BEE7FF","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":23252.1192783631,"percentage":2.0107977343439822}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[32.28268058800006,31.19583017400015],[32.26404158200012,31.110833987000035],[32.15367857200016,31.12072362700013],[32.05068945700009,31.091484531000106],[32.02902961300009,31.21876021100013],[31.868589593000138,31.233340699000053],[31.79549051200013,31.286057841],[31.871530467000127,31.45860317400019],[31.85244956800011,31.508791495000082],[31.585830448000138,31.44065349600004],[31.49836947900019,31.45592314400011],[31.269880474000104,31.560647648000156],[31.112760525999988,31.59954739000017],[31.093160451000188,31.510221280000167],[31.025089507000075,31.512731325000118],[30.979879532000155,31.44321249100011],[30.895759590000125,31.409604747000117],[30.817810573000145,31.425454255000034],[30.623247489000164,31.384167682000168],[30.587902512000028,31.330519311000103],[30.323244590000172,31.09107281200005],[30.110202595000032,30.97073483400004],[30.119594517000166,30.89717357500018],[30.082624457000122,30.815842460000113],[30.178745608000042,30.778875585000037],[30.28965361000013,30.823237143000085],[30.437530499000047,30.808450460000074],[30.51886144600013,30.741907033000132],[30.60758758000003,30.741907033000132],[30.76285948600014,30.601430024000024],[30.82813054000019,30.3625357250001],[31.036010456000156,30.018079402000183],[31.093261537000046,29.868819834000135],[31.121974584000156,29.707354875000192],[31.11068550200008,29.59879917000012],[31.05274056700017,29.40310453000012],[30.998243612000124,29.28316938600011],[30.798909960000117,28.958384936000186],[30.704698466000025,28.754096113000116],[30.667577531,28.63636406900008],[30.61238253099998,28.368609871000046],[30.60296244500006,28.22842874300011],[30.635776591000138,27.905840973000068],[30.687206122000077,27.653847106000114],[30.78033659300013,27.38248918800008],[31.005721789000063,27.08526900900017],[31.185312603000057,26.886898936000023],[31.364534457000104,26.72209814700011],[31.43159253300007,26.641951730000187],[31.694143580000116,26.261188858000082],[31.81978445300018,26.132942889000162],[32.09628650700017,25.93292687500019],[32.20586061300003,25.88913008900016],[32.487010601,25.860357195000176],[32.44490059000009,25.754111208000097],[32.35258851100019,25.644022453],[32.32702655600002,25.529256597000142],[32.338195609000024,25.3272681520001],[32.38985059700008,25.183664023],[32.680084555000064,24.846022355],[32.727084350000155,24.731205188000047],[32.75418057999997,24.41104935600015],[32.741825487000085,24.240925723000032],[32.68737748200016,23.87530006500009],[32.67174959100004,23.659639061000064],[32.705875504000176,23.56922749500012],[32.840381581000145,23.54298392300018],[32.91912050900004,23.621716816],[32.97653151600019,23.73161530200008],[33.04243054199998,24.09261632800019],[33.07578649300007,24.52103518100006],[33.056846577000044,24.741370270000175],[32.9918214490001,25.062235727000086],[32.90600953600017,25.200344345000133],[32.69894752600004,25.354062079000073],[32.670692465000116,25.46317568300003],[32.684635594000156,25.52489901300015],[32.78305456000004,25.615670666000142],[32.89614856200012,25.78237481800005],[32.905006557000036,25.96067768000006],[32.852384014000165,26.164703997000117],[32.76624093600009,26.243015886000137],[32.35992232400014,26.186309153000025],[32.21205551000003,26.235469994000027],[32.070106471000145,26.35288671100011],[31.883068492000064,26.564045292],[31.595989482000107,26.85890203800011],[31.52906451100006,26.946759303000135],[31.432350592000148,27.137121042000047],[31.25197455,27.293297021000114],[31.15810947199998,27.42154366000011],[31.008460481000157,27.745750645999976],[30.940879543000108,28.038226428000087],[30.91793056200015,28.210903189000078],[30.923658587000034,28.367064919000086],[31.004266512000186,28.62193143700017],[31.08692548900018,28.76371099400012],[31.30157446200019,29.065499910000142],[31.339918484000066,29.19340590800016],[31.407924552999987,29.55867785000015],[31.388719601000105,29.815129889000048],[31.32231749300007,29.984055748],[31.24060047500012,30.118325455000104],[31.341064458000176,30.146254627000133],[31.472469566000143,30.283910456000115],[31.735277602000053,30.455981205000057],[31.87919655600018,30.490396126000178],[32.06691749200013,30.496653887000036],[32.36101148500006,30.54983773300006],[32.45859946900009,30.64749126400011],[32.589138559,30.734514195000088],[32.70004656100008,30.838024496000116],[32.76594913900004,30.969370466000157],[32.695716470000036,31.043768368000087],[32.55334045600006,31.064226582000117],[32.40578057100004,31.204270918000077],[32.31726851200017,31.097065538000095],[32.28268058800006,31.19583017400015]]]},"properties":{"objectid":483,"eco_name":"Nile Delta flooded savanna","biome_num":9,"biome_name":"Flooded Grasslands & Savannas","realm":"Palearctic","eco_biome_":"PA09","nnh":4,"eco_id":744,"shape_leng":30.9934723364,"shape_area":4.68715792502,"nnh_name":"Nature Imperiled","color":"#97DBE8","color_bio":"#BEE7FF","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":50939.73871046689,"percentage":4.405168834756299}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-57.810085109999875,-63.99896868899992],[-57.76669415899988,-63.89911637899996],[-57.80334337499994,-63.79803075399997],[-57.94680708099986,-63.80430611999998],[-58.11257218799989,-63.85935077099998],[-57.959940019999976,-63.94978869199997],[-57.97591827999997,-63.99896852199993],[-57.92779876099996,-63.99896952799992],[-57.911364858999946,-63.998967850999975],[-57.900074933999974,-63.99896567299987],[-57.8708222489999,-63.99896835499999],[-57.810085109999875,-63.99896868899992]]]},"properties":{"objectid":485,"eco_name":"Northeast Antarctic Peninsula tundra","biome_num":11,"biome_name":"Tundra","realm":"Antarctica","eco_biome_":"AN11","nnh":1,"eco_id":126,"shape_leng":46.3499938021,"shape_area":0.210329290822,"nnh_name":"Half Protected","color":"#4CA68D","color_bio":"#9ED7C2","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":1137.3960700775021,"percentage":0.013310419806484607}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-62.51487412099988,-62.94601296399986],[-62.65588817099996,-63.04948049599983],[-62.670402357999876,-63.087868004999905],[-62.663300758999924,-63.085805],[-62.652477882999904,-63.081805214999974],[-62.64856060499994,-63.08074470299982],[-62.64294331499997,-63.03571594899995],[-62.642086294999956,-63.034829784999886],[-62.636693202999936,-63.030709259999924],[-62.631708592999985,-63.02655405099995],[-62.61965707199988,-63.01356502299984],[-62.616524408999965,-63.01119129699998],[-62.60890313699997,-63.00574017199989],[-62.58979330799997,-62.99535202399994],[-62.57689933199998,-62.98904816099997],[-62.516356535999876,-62.95452913999998],[-62.51487412099988,-62.94601296399986]]],[[[-62.49682257499995,-62.92383804499997],[-62.48178271499995,-62.916481431999955],[-62.48238087399989,-62.91670751399994],[-62.491431646999956,-62.92057805899998],[-62.49682257499995,-62.92383804499997]]],[[[-62.44543679899988,-62.906284924999966],[-62.47590370099982,-62.91437711899994],[-62.47393940699993,-62.91385539099991],[-62.454768893999926,-62.90876358599991],[-62.44543679899988,-62.906284924999966]]],[[[-60.62213238999993,-62.9086046569999],[-60.74748669499991,-62.945588528999906],[-60.74557310299997,-62.95706892599998],[-60.74473453899992,-62.962099803999934],[-60.743629107999936,-62.96873172099998],[-60.73142247499993,-62.98012800899994],[-60.56385907099997,-62.998772449999876],[-60.6463512279999,-62.92137110799996],[-60.62213238999993,-62.9086046569999]]],[[[-62.355025299999966,-62.889509449999935],[-62.396589087999985,-62.896308906999934],[-62.378227163999895,-62.893313366999905],[-62.36280862799998,-62.890798006999944],[-62.355025299999966,-62.889509449999935]]],[[[-61.210188677999895,-62.72107539299998],[-61.3190739989999,-62.709708095999986],[-61.32090656199989,-62.7110263429999],[-61.22304676699986,-62.73282563699996],[-61.210188677999895,-62.72107539299998]]],[[[-60.35283215199985,-62.65104249399997],[-60.34726412999993,-62.639577850999956],[-60.34777851799993,-62.63520892299994],[-60.36455389299988,-62.65667514099988],[-60.35283215199985,-62.65104249399997]]],[[[-61.217028438999876,-62.62268307299996],[-61.29372995299991,-62.611848462999944],[-61.29563157899997,-62.619301321999956],[-61.29066007799992,-62.62343790999989],[-61.217028438999876,-62.62268307299996]]],[[[-60.985675865999895,-62.64566511199985],[-61.17167964399994,-62.57561726999995],[-61.12622266999995,-62.621953403999896],[-61.13901784299992,-62.63365219699995],[-61.1449162209999,-62.63759045799992],[-61.15028355399983,-62.64907557199996],[-60.79871444999998,-62.667259576999925],[-60.81288052299993,-62.66628775399988],[-60.985675865999895,-62.64566511199985]]],[[[-59.626004439999974,-62.546252953999954],[-59.66985512999997,-62.55554060399999],[-59.648817632999965,-62.55199173699998],[-59.6396181639999,-62.5502308099999],[-59.626004439999974,-62.546252953999954]]],[[[-59.77317277799989,-62.531720433999965],[-59.79004181399995,-62.52874940099997],[-59.79159148499991,-62.528650675999984],[-59.75705786299994,-62.5366644849999],[-59.77317277799989,-62.531720433999965]]],[[[-60.808847771999865,-62.481600912999966],[-60.804677692999974,-62.457913901999916],[-60.805110792999926,-62.45884525699989],[-60.80877993599995,-62.48053621199995],[-60.808847771999865,-62.481600912999966]]],[[[-59.97925759999998,-62.45116869299994],[-59.97355810899995,-62.444214029999955],[-59.97401330099996,-62.44460880699995],[-59.976610585999936,-62.446861368999976],[-59.97925759999998,-62.45116869299994]]],[[[-55.50986302499996,-61.472268305999876],[-55.55337126399996,-61.47865811699984],[-55.46503516699988,-61.49394967699993],[-55.45573361099997,-61.495241144999966],[-55.50986302499996,-61.472268305999876]]],[[[-55.13697276499994,-61.21877254999998],[-55.17012641699995,-61.240640133999875],[-55.17220527799992,-61.24238243399998],[-55.17818606099996,-61.248454494999976],[-55.13697276499994,-61.21877254999998]]],[[[-55.37890008299996,-61.16431861499996],[-55.38149013199995,-61.16748122199982],[-55.385974071999954,-61.171458517999895],[-55.39310511399998,-61.17502692799985],[-55.36386324599988,-61.23287623199991],[-55.357455882999886,-61.235921523999934],[-55.37890008299996,-61.16431861499996]]],[[[-54.010013012999934,-61.19547347299988],[-54.00694407599997,-61.180060526999966],[-54.00671711299998,-61.178644562999864],[-54.01015190499999,-61.19616823599989],[-54.010013012999934,-61.19547347299988]]],[[[-54.65602591399983,-61.10109755399998],[-54.860466480999946,-61.09833193999992],[-54.8612086309999,-61.09836294999991],[-54.66239992599998,-61.10627755199994],[-54.65602591399983,-61.10109755399998]]],[[[-55.34994861699994,-61.06157660299982],[-55.37110621799991,-61.05787548399991],[-55.476494996999975,-61.10733962299997],[-55.477568137999924,-61.108054222999954],[-55.34994861699994,-61.06157660299982]]]]},"properties":{"objectid":486,"eco_name":"Northwest Antarctic Peninsula tundra","biome_num":11,"biome_name":"Tundra","realm":"Antarctica","eco_biome_":"AN11","nnh":1,"eco_id":127,"shape_leng":373.229207147,"shape_area":0.981716075905,"nnh_name":"Half Protected","color":"#6FC1DB","color_bio":"#9ED7C2","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":5059.015510211493,"percentage":0.05920331713810432}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[42.12740225800013,28.70897773700017],[42.28757151400009,28.732360110000116],[42.527150907000134,28.71725150000009],[42.686151044999974,28.741982856000163],[42.84757935200014,28.740364077000095],[42.84182369100006,28.8007085860001],[42.61168718000005,28.797471026000096],[42.42273961800015,28.758890111000085],[42.233881988000064,28.79837034900015],[42.24368459800007,28.826698993000036],[42.06651815500004,28.873014078000097],[42.0121991040001,28.81132058600008],[42.05302832500013,28.730741331000047],[42.12740225800013,28.70897773700017]]],[[[45.571479479,33.43649444700003],[45.037429535000115,33.58204435100009],[44.62940552900005,33.72472529800018],[44.40914956500018,33.77908277900008],[44.19256956900017,33.77545861100009],[43.96729251000005,33.74292056600018],[43.68156449500009,33.65524200300018],[43.53923458200012,33.5882471270001],[43.26181755900018,33.408045260999984],[43.15656248000016,33.36464745500018],[42.97459756400019,33.3855931600001],[42.77475757000002,33.26995055600014],[42.72841654200005,33.28758490700005],[42.49838258500017,33.160685743000045],[42.22441857100017,32.97630030100015],[42.213363511000125,32.91560207900011],[42.01005961100009,32.81242923300016],[41.79326654700003,32.75258596400005],[41.46731562200017,32.701394832000176],[41.024463467000146,32.67228146499997],[40.683444562000034,32.66183392500011],[40.03479355000019,32.516135493000036],[39.28833360700003,32.33022136000005],[39.03960340000009,32.25391926300006],[38.85232294900004,32.24221423500006],[38.62491097300011,32.26896858500004],[38.36405605900018,32.3141165510001],[38.22359572100004,32.30910011000003],[38.05303673900005,32.23719779400005],[37.88749419700008,32.0900488690001],[37.8155918810001,32.07165525300019],[37.60991781500019,32.078343841000105],[37.47112962300008,32.14021327500012],[37.24538979400006,32.300739376000024],[37.228668325,32.344215195000174],[37.16178245000003,32.240542088000154],[36.99958420200005,32.120147513],[36.80059872300018,32.09506530900006],[36.698597763000066,31.99139220300009],[36.683548441000084,31.772340961000054],[36.71531923200007,31.556634013000178],[36.75879505100005,31.40614079300002],[36.743745729000125,31.310828421000167],[36.67351556000011,31.183745258000158],[36.5464323970001,31.090105033000157],[36.42436567400017,31.075055711],[36.314003980000166,31.10181006100015],[36.24210166400013,31.238926105000132],[36.112406698000086,31.256793684000115],[36.04960400600015,31.12374736400011],[35.974240819000045,30.753856206000023],[35.86092624200006,30.629030306000175],[35.82450369800006,30.538648441000134],[35.74464390100019,30.097351113],[35.65597074600015,29.94716433100018],[35.671651363000024,29.716722977000074],[35.69599057800008,29.52430310400007],[35.76146122200015,29.490128866000077],[35.73843857800006,29.378612933000056],[35.75453644300018,29.283014998999988],[35.82971976600015,29.163495099000045],[35.82648220600015,29.061062318000154],[35.95148797100006,28.899364214000173],[35.929724377000184,28.820493671000122],[35.97945688600004,28.7434217710001],[35.94816047900008,28.656097601000056],[36.020376039999974,28.52479658200008],[36.165886347000026,28.43882139400006],[36.17694800800018,28.263093867],[36.226320788000066,28.161200679000103],[36.25905611100006,27.99473616800003],[36.31805163700017,28.042130440000165],[36.41355963800015,27.97746918500019],[36.43298499400015,27.876655183000025],[36.559969267000156,27.65623135000004],[36.81052038900003,27.670350706000136],[36.91520147500006,27.61612158700018],[36.93993283200007,27.555597213000112],[37.07393181700019,27.547683179000046],[37.12627235999997,27.505684839000025],[37.21962198799997,27.58365606100017],[37.29633415800009,27.581677552000144],[37.34525727800002,27.50397612800009],[37.41297622800016,27.520163924000144],[37.42664592300008,27.421868025000038],[37.532675992000065,27.32564056600006],[37.5744045350001,27.420788838000192],[37.72558057100008,27.317816464000146],[37.77720165700015,27.33463378600004],[37.88467064100007,27.464405958000043],[38.017140777000066,27.439314872000068],[38.03314871100008,27.50829287300013],[38.17856908600015,27.52879741600003],[38.25761949500003,27.486799077000057],[38.271738849000144,27.574213179000083],[38.509159871000065,27.52439073800008],[38.494590853000034,27.452714771000046],[38.567076210000096,27.35396921000006],[38.65296146500003,27.30216826000003],[38.77724777200012,27.294164293999984],[38.80359790800003,27.37267510900017],[38.986250215000155,27.36197317699998],[38.84676536600017,27.498310399],[38.91916079200013,27.69184450300014],[38.80512675500012,27.790410199000064],[38.98076435100006,27.886277929000073],[39.04596519900019,27.848596336000014],[39.16539516700004,27.85417213200003],[39.323136254000076,27.923599794000154],[39.311624932000086,27.992128134000097],[39.58357991800011,28.24061081600007],[39.676210089000165,28.366066241000055],[39.724143954000056,28.475243937000187],[39.74662700500005,28.601868481000167],[39.42457978100015,28.638021228000184],[39.23815032000016,28.72048905900016],[39.11053652200019,28.81392862000007],[39.014488928000105,28.91204465500016],[38.863312892000124,29.021042487000102],[38.67625390600017,29.100092895000046],[38.63299651700015,29.147127438000155],[38.47903258100007,29.234271744000125],[38.48352919200005,29.28715188100017],[38.63416563400017,29.303339677000167],[38.817357535000156,29.256484999000122],[38.98157374100009,29.264129236000144],[39.11503313200012,29.152703235000104],[39.30604913500014,29.175815811000177],[39.41990330600004,29.21466652400011],[39.53195883300009,29.177704388000052],[39.60120663000015,29.07805950600016],[39.866236836999974,29.148566353000092],[40.226235452000026,29.227436897000075],[40.20123430000018,29.29722428700012],[40.096912942000074,29.29137869400006],[40.01336592400003,29.32384422000007],[40.0638178910001,29.38239008500011],[39.767401344,29.47537998500019],[39.80580239600016,29.53014869700013],[39.72792110700004,29.626196292000145],[39.655885410999986,29.62826473300015],[39.63448154600013,29.702818530000116],[39.93350612600011,29.677997242],[40.08333317900008,29.71576876800009],[40.22317775700009,29.702009140000087],[40.31562806400018,29.72422239500014],[40.45457332000018,29.702728598000135],[40.49953942200011,29.626376156000106],[40.70971098400014,29.591752258000042],[40.87617549500004,29.546876087000044],[40.94902058100007,29.44408357800006],[40.954236649000165,29.34228032200008],[41.217558144,29.205493439000122],[41.51649279200018,29.13876374300014],[41.58996740300017,29.087682251000103],[41.71200540500013,29.104229776000125],[41.842676898000036,29.066008589000035],[41.88701347500006,28.983900487000085],[42.012289036000084,29.003595639000025],[42.06705774900007,28.963845605000188],[42.247012090000055,29.06070258900013],[42.51590938200019,29.07212397900014],[42.804052165000144,28.991634656000087],[42.68525172300019,28.917530520000128],[42.928248540000084,28.82346143400008],[43.083291661000146,28.83398350200008],[43.10577471200014,28.914292960000125],[43.269451324000045,28.88947167200007],[43.36262108800008,28.768063196000128],[43.295261867000136,28.749267365000094],[43.5241393280001,28.654478821000055],[43.569465159,28.70016438100015],[43.778017940000154,28.613739532000125],[43.96480713000011,28.607084549000092],[44.087744454000074,28.452850818000172],[44.221743439000136,28.40482702100013],[44.413299035000136,28.31138746100015],[44.44576456000004,28.213451290000137],[44.61097001999997,28.0798120340001],[44.78705727700009,27.85183389500014],[44.79119415800017,27.786273318000156],[44.89020951600003,27.63248924800007],[44.96674182200013,27.61216457000006],[45.17601406199998,27.704524944000127],[45.23204182500007,27.842121217000113],[45.38348765800009,27.935920506000116],[45.43816643800005,28.067401389000054],[45.506424982,28.121540577000076],[45.551750813000126,28.23404576500019],[45.485111049000125,28.29169230800011],[45.58871294900007,28.45024278400001],[45.67828542500018,28.444307259000027],[45.64896752600009,28.533520006000117],[45.66533518700015,28.60267787099997],[45.748792273,28.73101112700016],[45.82550444200018,29.00368557200011],[45.81968831900008,29.155858040999988],[45.910756119000155,29.231377681000026],[46.03514140800007,29.251368174000163],[46.05735306700012,29.315781984000182],[46.04846840300007,29.564552562000188],[46.021814413000016,29.684495519000052],[46.0462472370001,29.746688163000158],[46.3349988010001,29.857746457000076],[46.40163377700003,29.899948608000045],[46.44605709400008,30.013228068000046],[46.523797900000034,30.31308546000014],[46.617086866000136,30.350845280000158],[46.810328297000126,30.357508778000124],[46.810328297000126,30.43080725100009],[46.743693321000194,30.570740701000148],[46.5104709040001,30.659587336000186],[46.461605255000165,30.74177047300003],[46.38164328400006,30.759539800000084],[46.39075926400005,30.828694889000076],[46.26757457800011,30.959449440000128],[46.307136490000175,31.045126403999973],[46.53536247100004,31.108073994],[46.76453057700013,31.144758902000092],[46.901164484000105,31.22596395400012],[47.075523493,31.37570279800019],[47.028266490000135,31.436456676999967],[46.8532255290001,31.56375632800018],[46.71000646400012,31.69105732100013],[46.37583557500011,31.882006966000176],[46.18487955900014,31.97748170500006],[45.89844562000019,32.00930863000008],[45.840518622000104,31.996928223000054],[45.832530501000065,31.911272046000022],[45.75876656800011,31.851834797000095],[45.70089355000016,31.944166993000124],[45.6425365610001,32.234406483999976],[45.56426953400006,32.34346895800013],[45.53244361500015,32.45485841600009],[45.4261704700001,32.47747882600015],[45.25724746100019,32.58227239700017],[45.19063161500003,32.65791588800005],[45.132442599000115,32.80806544600017],[45.108119489000046,32.94789319300003],[45.13442257200006,33.077306258000135],[45.23384854000011,33.13302965300005],[45.28800150200004,32.952912948000176],[45.35369852400004,32.825211970000055],[45.51729550400006,32.61214449400006],[45.80296752900006,32.69354383800004],[46.057575549000035,32.74128330299999],[46.06120659000004,32.78486920000006],[45.97843948700012,32.86287655500013],[45.890258512000116,32.986820763000026],[45.70019148199998,33.178839101000165],[45.571479479,33.43649444700003]],[[44.40098156800019,32.51547550200007],[44.32052250600003,32.60586577800018],[44.213447549000136,32.66502977700003],[44.214717575000066,32.72220307400005],[44.307197459,32.74855007800005],[44.42048659200003,32.65512002100007],[44.471633468000164,32.57294669200013],[44.40098156800019,32.51547550200007]],[[45.37850560400017,31.59423158700008],[45.26357646800005,31.71486729100019],[45.31032552800008,31.861568534000185],[45.40609748900005,31.841435370000056],[45.514457559,31.706473820000156],[45.54404450400011,31.589774594000176],[45.46727750300005,31.533614502000034],[45.37850560400017,31.59423158700008]],[[45.54460156600004,31.089131731000123],[45.63563959499999,31.131456319000165],[45.760681498000054,31.07101625900009],[45.68472653500004,30.85746196200006],[45.61118656600013,30.850158139000143],[45.52980851200016,31.022320922000063],[45.54460156600004,31.089131731000123]]]]},"properties":{"objectid":487,"eco_name":"North Arabian desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Palearctic","eco_biome_":"PA13","nnh":2,"eco_id":831,"shape_leng":64.1537546196,"shape_area":43.9753958262,"nnh_name":"Nature Could Reach Half Protected","color":"#E3C35C","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":469108.17581242323,"percentage":1.7781252309209503}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[40.90000752900016,26.841175780000185],[40.80710756200011,26.74593757500014],[40.70125735700009,26.681995777000054],[40.77662054500013,26.57920326800007],[40.77131454500005,26.473353063000047],[40.8291409520001,26.43306343500018],[40.95018969800009,26.582260963000067],[40.90000752900016,26.841175780000185]]],[[[40.52490030400003,26.823099407000143],[40.67418776400007,26.818602796000107],[40.77698027300005,26.915639645000113],[40.916285258000016,26.958447375000162],[40.911159123000175,27.03650852800007],[40.7531482390001,27.104137546000175],[40.66879183100008,27.028324697000187],[40.60062321900011,27.03354076500011],[40.502866914000094,26.971757341000114],[40.53587203300003,26.89279686500015],[40.52490030400003,26.823099407000143]]],[[[42.27740917500006,27.280584531000045],[42.14946885400019,27.181683315000043],[41.97865439100008,26.972117070000138],[42.019753409000145,26.889829102000192],[42.122905647000096,26.995769239000026],[42.16139663100006,27.086330969000073],[42.25393687000013,27.07949612200008],[42.22650754700004,26.983538461000023],[42.32057663300003,26.969688900000108],[42.48443311000017,27.061060020000184],[42.44944948300008,27.14038022400007],[42.48524249999997,27.20198378499998],[42.27740917500006,27.280584531000045]]],[[[40.80719749400009,27.371236194000176],[40.87446678300006,27.384815956000068],[41.04515810800007,27.46764351700017],[41.01530061600005,27.53023633100014],[40.831029528000045,27.4608986020001],[40.80719749400009,27.371236194000176]]],[[[40.58227705000013,27.190382530000136],[40.78840166300006,27.162143818000118],[40.869880241000146,27.123113241000055],[40.9603520390001,27.01465500200004],[40.973662005,26.911862492000125],[41.05469092100003,26.932367035000027],[41.12726621000007,26.90799540800009],[41.2106333640001,27.049548698000024],[41.282129467,27.07104249500003],[41.245886788000064,27.15755727500016],[41.380785095000135,27.227704395000046],[41.44625574000008,27.212236056000165],[41.291482416,26.98470757800004],[41.44922350300004,26.958807103000083],[41.51937062200011,27.007550358000174],[41.60345723400019,27.119156224000108],[41.637271743000156,27.06897405400008],[41.51946055500014,26.875080221000132],[41.364147638000134,26.845312661000037],[41.33590892500018,26.793331847000047],[41.431596791000175,26.671743506000098],[41.68970221700005,26.66598784500019],[41.75706143900004,26.757358965000094],[41.88044842400012,26.773366897000187],[41.979823510000074,26.986955883000178],[41.873523644000045,27.137772190000135],[41.95572167900008,27.261428972000033],[42.05824439200012,27.22248832700012],[42.09709510500011,27.265925582000136],[42.05977323999997,27.37177578700016],[42.092688427000155,27.431940432000033],[42.02523927300018,27.479244771000083],[41.95698073000011,27.45550266900017],[41.87703100000016,27.52708870400005],[41.81911466100013,27.357296702000042],[41.7430320150001,27.259180668],[41.70912757400015,27.17284575000008],[41.5018338430001,27.263137684000014],[41.400210451000135,27.253964599000028],[41.376648214000056,27.299560227000143],[41.54985763999997,27.406129889000113],[41.634573777000185,27.496601687],[41.65939506500007,27.671609757000112],[41.5002150630001,27.664774909000187],[41.42026533300003,27.58383592500013],[41.38887899400004,27.46350663600009],[41.33276129800004,27.431670635000046],[41.280061026000055,27.421688159999974],[41.26495241600014,27.321143956000128],[41.20020122800008,27.235528497000132],[41.08787590500009,27.142268801000114],[40.878783529000145,27.145686224000144],[40.71213915400011,27.22653527600005],[40.58227705000013,27.190382530000136]]]]},"properties":{"objectid":488,"eco_name":"North Arabian highland shrublands","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Palearctic","eco_biome_":"PA13","nnh":2,"eco_id":832,"shape_leng":15.9236208658,"shape_area":0.73517055642,"nnh_name":"Nature Could Reach Half Protected","color":"#C8853E","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":8111.853238759129,"percentage":0.03074747287954526}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-16.811775981999972,20.968585711000173],[-16.844406886999877,21.01871909199997],[-16.83504027099991,21.00086341200017],[-16.832230300999868,20.995506736000152],[-16.811775981999972,20.968585711000173]]],[[[26.611740544000156,28.86731715500008],[26.631400032000045,28.9315600380001],[26.836629985000172,28.988699990999976],[26.606070055000032,29.04434007900005],[26.53692008300004,29.039899975000026],[26.44649358600003,28.966465330000176],[26.611740544000156,28.86731715500008]]],[[[32.57144955800004,29.990607211000054],[32.663929933000134,30.486820011000134],[32.743879962,30.726660064999976],[32.76594913900004,30.969370466000157],[32.70004656100008,30.838024496000116],[32.589138559,30.734514195000088],[32.45859946900009,30.64749126400011],[32.36101148500006,30.54983773300006],[32.06691749200013,30.496653887000036],[31.87919655600018,30.490396126000178],[31.735277602000053,30.455981205000057],[31.472469566000143,30.283910456000115],[31.341064458000176,30.146254627000133],[31.24060047500012,30.118325455000104],[31.32231749300007,29.984055748],[31.388719601000105,29.815129889000048],[31.407924552999987,29.55867785000015],[31.339918484000066,29.19340590800016],[31.30157446200019,29.065499910000142],[31.08692548900018,28.76371099400012],[31.004266512000186,28.62193143700017],[30.923658587000034,28.367064919000086],[30.91793056200015,28.210903189000078],[30.940879543000108,28.038226428000087],[31.008460481000157,27.745750645999976],[31.15810947199998,27.42154366000011],[31.25197455,27.293297021000114],[31.432350592000148,27.137121042000047],[31.52906451100006,26.946759303000135],[31.595989482000107,26.85890203800011],[31.883068492000064,26.564045292],[32.070106471000145,26.35288671100011],[32.21205551000003,26.235469994000027],[32.35992232400014,26.186309153000025],[32.76624093600009,26.243015886000137],[32.852384014000165,26.164703997000117],[32.905006557000036,25.96067768000006],[32.89614856200012,25.78237481800005],[32.78305456000004,25.615670666000142],[32.684635594000156,25.52489901300015],[32.670692465000116,25.46317568300003],[32.69894752600004,25.354062079000073],[32.90600953600017,25.200344345000133],[32.9758285580001,25.2952813820001],[33.0738817940001,25.52815781600009],[33.12823152100009,25.811900170000172],[33.169375233000096,25.933221741000068],[33.294625816000064,25.93862326900006],[33.466752862000135,25.829973915000153],[34.35093664200019,24.945790135000095],[34.11857002900001,25.375100018000182],[34.04370011200007,25.48974991900019],[33.880300072000125,25.788549798000076],[33.75143004600011,26.107989953000185],[33.50846000500019,26.63633007800007],[33.423409973000105,26.78159002700005],[33.21946003800019,27.05739993800006],[33.155390002,27.174870031000125],[32.971689932000174,27.579069962000062],[32.863880167,27.77485996300004],[32.66233994500004,28.04371004400008],[32.43351997300016,28.29408014100005],[32.36376994900007,28.419069983000156],[32.359939930000166,28.538880262000077],[32.41643001800003,28.970290063000164],[32.3854899320001,29.115510056000176],[32.242159866000065,29.44488002600019],[32.29200977600016,29.579039981000108],[32.36186470100017,29.553449580000063],[32.35300861200005,29.688116731000036],[32.48981853800012,29.86208933400013],[32.45051948200012,29.92320799300012],[32.57144955800004,29.990607211000054]]],[[[11.601120191000064,33.00439171900007],[11.654161557000066,32.973683471000186],[11.754377332,33.01433959600013],[11.65415993500011,32.97564007400018],[11.601120191000064,33.00439171900007]]],[[[9.65771592800013,34.04841548200011],[9.277276438000172,34.11638011800011],[9.101101573000108,34.128468834000046],[8.927145566000092,34.113481321000165],[8.404247577000035,34.16997953900017],[8.187101467000048,34.221156422000035],[7.788749506000102,34.37981310900011],[7.530343478000077,34.45693181500013],[7.378052510999964,34.552968477000036],[7.184670438000126,34.70233650600005],[6.995542516000057,34.77412348300004],[6.746160444000054,34.803171807000126],[6.4295095760001,34.758712852000144],[5.869099553000069,34.72861578400017],[5.654736570000068,34.69485649600006],[5.45306244700015,34.587399491000156],[5.287847424000063,34.51669931100008],[5.084853487000146,34.40502335900004],[4.452857484000162,33.97556498300003],[4.268428456000038,33.85729750200005],[3.779655542000057,33.60152557100014],[3.335470497000017,33.45425989000012],[3.076121504000071,33.389182794000135],[2.711448534000112,33.35585081500011],[2.452218564000077,33.32075293600019],[2.093610571000056,33.20362623300008],[1.461266551000108,33.03468260400018],[0.774853557000085,32.8245179490001],[0.465192525000077,32.7146422620001],[0.109842578000098,32.56634694899998],[-0.061193508999963,32.4759985820001],[-0.345391491999976,32.37212417000018],[-0.556839583999931,32.24859704600016],[-0.706504500999927,32.18014824500011],[-1.187412507999966,32.09811170900019],[-1.342844508999917,32.049014543000055],[-1.463042508999933,31.96011540800015],[-1.676035553999895,31.87381818200015],[-2.060321506999969,31.81903004000003],[-2.1802605069999,31.85187871800008],[-2.253921509999941,31.94410597200016],[-2.169634432999885,32.047324416000095],[-2.172728528999926,32.104649761000076],[-2.400829450999936,32.095892013000025],[-2.468173516999911,32.14062857699997],[-2.281065464999926,32.232968484000025],[-2.400814530999924,32.27057640800007],[-2.570516554999926,32.195989539000095],[-2.837061578999965,32.222397898999986],[-2.976933581999958,32.121750017000124],[-3.148602502999893,32.07160058700009],[-3.496732446999943,32.031413888000145],[-4.038622486999941,31.921416496000063],[-4.455575566999869,31.91152802900018],[-4.758570470999871,31.79524069000007],[-4.918560550999928,31.71233461500003],[-5.331000478999954,31.563728333000086],[-5.344182529999955,31.52194001900017],[-5.07018850899982,31.445562609000092],[-5.031901483999889,31.37828492800014],[-5.185692475999929,31.208870739000076],[-5.312104483999974,31.018737323000153],[-5.414214504999961,30.93434999800013],[-5.718324536999944,30.856053802000076],[-5.659211499999913,30.761876415000074],[-5.792745443999934,30.72412767500009],[-6.072030457999972,30.69214970900009],[-6.188567577999947,30.78738640199998],[-6.444241440999974,30.785215489000052],[-6.502750477999939,30.820645291000176],[-6.473543568999958,30.904331050000053],[-6.371013446999939,31.055185860999984],[-6.375764477999951,31.122354746000156],[-6.634693536999976,31.036847431000012],[-6.929509546999952,31.027497921000077],[-7.097743563999927,30.944019697000044],[-7.101632431999974,30.831074725000178],[-6.926692556999967,30.7855765810001],[-6.882206443999962,30.745646703000148],[-6.967198438999958,30.636678777000157],[-7.174567561999936,30.533214408],[-7.29799544499997,30.424447479000037],[-7.549685557999965,30.101940176000028],[-7.699066494999954,29.941517254000075],[-7.787343525999916,29.87713954400016],[-7.898579427999948,29.86659008100014],[-7.995098551999945,29.897708902000147],[-8.040434589999848,29.767512632000035],[-8.128565439999875,29.675677316000076],[-8.261489515999926,29.575640977999967],[-8.312313521999954,29.50706276],[-8.488694580999947,29.407377624],[-8.62833943499993,29.35121971100017],[-8.934388535999915,29.174096686000155],[-8.973471506999886,29.04899057800003],[-9.101002498999947,28.97666347100011],[-9.445997442999953,28.74426347000019],[-9.565264548999892,28.680645160000097],[-9.68228748499996,28.530602220000105],[-9.679520450999973,28.440734807000183],[-9.500227518999907,28.477564554000082],[-9.43693258299993,28.432165317000056],[-9.59437858699988,28.342270076000148],[-10.029820468999901,28.244874037000102],[-10.21296052799994,28.23562326600006],[-10.351289589999908,28.183255482000163],[-10.555870556999935,28.160637251000026],[-10.954790474999982,28.078660897000134],[-11.18459946199988,27.994403156000033],[-11.444410464999976,27.91657752100008],[-12.112959444999944,27.810120980000136],[-12.419930555999883,27.740704069000174],[-12.675539542999957,27.66640805300011],[-12.819749516999877,27.549113041000055],[-13.02814056099993,27.349130722000098],[-13.185708116999933,27.15617484700016],[-13.218430017999822,27.037730059000125],[-13.395440097999881,26.70152998600014],[-13.498929980999947,26.56990999900006],[-13.763329924999937,26.336100037000108],[-14.055040070999894,26.033289896000042],[-14.396330113999966,25.612899825000113],[-14.463219988999981,25.48320989700011],[-14.499840062999908,25.361130017000107],[-14.493400020999957,25.096899932000042],[-14.419620019999911,24.919320077000066],[-14.58462007999998,24.859039927000083],[-14.744760053999926,24.724869939000143],[-14.870409970999901,24.51351994900017],[-15.098200049999946,24.194320060000052],[-15.24615979399988,24.010050037000042],[-15.464679957999863,23.78044008800009],[-15.582560001999923,23.633909978000077],[-15.803580000999887,23.226840042000106],[-15.92251000399989,22.967489934000128],[-16.20345001599992,22.47423006100007],[-16.2760399469999,22.201310223000178],[-16.34139,22.03485993300012],[-16.441040007999902,21.64635992800015],[-16.464809919999936,21.471380063000026],[-16.454079918999867,21.313570066000125],[-16.378608961999873,21.09402448000003],[-16.312372324999956,21.121666908000122],[-15.882951035999895,21.157555319000096],[-15.658801686999936,21.345803151000155],[-15.41794574599993,21.686637029000167],[-14.868067088999965,22.595527372000106],[-14.599944437999966,23.090872609000087],[-14.490877596999951,23.38626197100018],[-14.341846576999956,23.752573696000127],[-14.174445183999978,24.21151424200019],[-14.078137873999935,24.427803769000093],[-13.896475160999898,24.75176682700004],[-13.762539457999935,24.93322720200007],[-13.63363092499992,25.07177586400013],[-13.440069879999896,25.227439384000093],[-13.03144119399991,25.45778152800017],[-12.62020159199983,25.643587165000042],[-12.214731240999868,25.79816443100009],[-11.974880196999948,25.84275660800006],[-10.157155140999976,25.90334744300003],[-8.101504912999872,25.90334744300003],[-8.19441306799996,25.999984808000193],[-8.231715794999957,26.121540625000137],[-8.240311572999929,26.247157534000166],[-8.224786521999874,26.433714206000104],[-8.153932379999958,26.715809898000032],[-8.053043233999915,27.05845228300018],[-7.969286205999936,27.25832700700016],[-7.894099523999955,27.379129830000124],[-7.529274415999964,27.75121859600017],[-7.317490579999969,27.98902374300019],[-7.179353896999942,28.071458608000114],[-6.721927248999862,28.271582766000108],[-6.180996106999942,28.46032528500018],[-6.072356097999887,28.589290418000132],[-5.868841378999889,28.892326876000027],[-5.210293094999884,29.776295016000176],[-5.118787892999876,29.859581973000047],[-4.996287434999942,29.90118135300014],[-4.801350268999954,29.92959731000019],[-4.148801439999886,29.99695521400008],[-3.954371445999925,29.992460290000167],[-3.151534626999933,29.820423828000116],[-3.044476067999938,29.791020795000065],[-2.718340155999954,29.629073081000058],[-2.212008572999935,29.301022283000123],[-1.944678066999927,29.16099501800005],[-1.832673346999968,29.121222073000183],[-1.658798194999918,29.088943226000083],[-1.461924866999937,29.090539354000157],[-1.309375307999915,29.114493897000045],[-1.098493472999905,29.175480534000087],[-0.82726435099994,29.293061802000068],[-0.585641308999925,29.42646843800003],[-0.16696157899986,29.698638597000183],[0.381748254000115,30.076328590000116],[0.897112847000017,30.41859865700019],[1.802991640000016,31.038410463000048],[2.546313063000184,31.335739032000106],[2.776605574000143,31.412493141000027],[3.138283647000037,31.440451808000034],[4.58885586700012,31.44715237100013],[5.069974705999982,31.457970589000126],[6.06399454100017,31.468678164000153],[6.643988161000038,31.468678164000153],[7.313285927000095,31.449642476000065],[7.547067971,31.41395056100015],[7.623210723000057,31.378853511000045],[7.858873235000146,31.135204001999966],[8.05159146300008,31.007943171000193],[8.243054116000167,30.97021134900018],[8.596571201000188,30.947384667000108],[8.743206238000027,30.91214160000004],[8.929918085999986,30.819394455000065],[9.285758358000123,30.57450276900005],[9.908107700000187,29.85264771700008],[10.250422217,29.541988479999986],[10.633654627000112,29.106792353000174],[10.829937396,28.783429227000113],[10.831201179000061,28.663782153000113],[10.734334328000102,28.437759501000187],[10.65314102100001,28.317593406000128],[10.390074705000075,28.048031625000192],[10.279311012999983,27.956181435000076],[9.377393285000096,27.520888436],[9.278093061000163,27.443718133000118],[9.116530707000038,27.275302662000115],[8.880369203000043,27.09267903000017],[8.721540180000034,27.01891573900008],[8.318816405000064,26.989172476000135],[7.907596568000031,26.973854684000173],[5.984768030000112,26.943700903000035],[5.20477728600008,26.837950694000142],[5.011206194000067,26.83587317700011],[4.208021156000086,26.878359408999984],[3.493012381000028,27.008361004000108],[3.539285110000151,26.927818835000096],[3.570480648000057,26.781559511000182],[3.571842551000032,26.657731736000187],[3.539440158000048,26.378869869000084],[3.459144956000102,25.879164174000095],[3.444219573,25.68354234600008],[3.459574945999975,25.450661421000177],[3.498667973000067,25.31280766700013],[3.558013179000113,25.18833866800003],[3.734308403000114,24.992455085000074],[3.734600059000115,25.028780029000018],[3.862970189000123,25.165190047000067],[3.917860079000093,25.379050082000163],[3.997239979000142,25.51126994400005],[4.022719926000093,25.630240080000192],[4.070259926000176,25.686630012000137],[4.237890077999964,25.80037992400014],[4.339459935000036,25.926790071000084],[4.543680061000089,26.089160042000174],[4.65066006800015,26.242400031999978],[4.773869997000133,26.37513000100006],[4.91007002200007,26.42434993600017],[4.972039964000032,26.376690066000094],[4.981940031000022,26.268509954000137],[4.945479959000068,26.124909873000036],[4.854129997000143,25.926979821000145],[4.887990077999973,25.700490001000162],[4.863039952000122,25.483019972000136],[4.704150072000118,25.324469987000157],[4.744290017000139,25.18066977100011],[4.688239979000116,25.055949943000087],[4.617469919000143,25.016260081000098],[4.431860033000021,25.0546100790001],[4.331480070000168,24.991669916000035],[4.269800033000138,24.90762988600011],[4.251829979000092,24.817480027999977],[4.324530098000139,24.586549929000057],[4.303680005000103,24.495999977000054],[4.221863515000109,24.441966832000162],[4.728027538000106,23.823321915000122],[5.01742002400016,23.24611000400006],[5.067909943000132,23.302829974000133],[5.110810057000037,23.485489942000072],[5.219260007000116,23.620170035000058],[5.235890022000035,23.684020046000057],[5.184409990000063,23.76342001300003],[5.092979939000031,23.80052995000017],[5.039699927000186,23.88339997500003],[5.024519965000081,23.970320043000072],[4.962469934000126,24.085339938000118],[4.705079985000054,24.29348002800009],[4.653769989000125,24.362529845000097],[4.704689925000139,24.4493999230001],[4.799629991000074,24.47393006600015],[4.853510055000186,24.43186974300005],[4.846479993000116,24.28142002000004],[4.965409996,24.318660037000143],[4.978220025000098,24.40132006900012],[4.926629981000076,24.549570070000186],[5.027310058000069,24.64738999800005],[5.047650045000182,24.720719916000064],[5.190860066000141,24.670870005999973],[5.208660261000091,24.80722],[5.271499917000085,24.96153001700003],[5.270079964000104,25.08907003600018],[5.404559922999965,25.15279982499999],[5.563890029000163,25.056630084000176],[5.629689989000099,24.95332995000018],[5.751390018000052,24.58723007000009],[5.834620003000055,24.572639951000042],[5.902319922000117,24.620329745000106],[5.884660015000065,24.825080041999968],[5.813779943000043,24.95496992900007],[5.711070004000135,25.051889867000114],[5.658430001000056,25.14524997700005],[5.691430048000143,25.40211996300019],[5.557219928000109,25.603880034000156],[5.545599970000183,25.69079006800007],[5.589650199000118,25.723459902000116],[5.675560264000126,25.677600012000084],[5.779889939000157,25.56970998200012],[5.857599938000078,25.59148998800009],[5.877170014000171,25.68085004500017],[5.812960218000171,25.87623995300015],[5.923920037000187,25.88115003000007],[5.989830009000173,25.749299985000164],[6.119670082000084,25.545510053000044],[6.208150038000042,25.486319994000155],[6.305910120000078,25.457060019000096],[6.401540008000097,25.478899873000046],[6.44627002500016,25.551849940000125],[6.425520088000042,25.685950047000063],[6.339060136000057,25.82373002800017],[6.193490039000039,25.90804992900013],[5.883670079000012,26.028539997000053],[5.47770994900003,26.17187006400019],[5.392740006000167,26.25946992100006],[5.365529960000117,26.435010057000113],[5.397480048000148,26.57866998500009],[5.449750057000188,26.643029926000054],[5.594170039000176,26.70252995500016],[5.782979969000166,26.73120994500016],[6.023499989000186,26.666850004000025],[6.043309980000174,26.60198999000005],[6.023059939,26.46758976899997],[6.083690192000063,26.34706977800016],[6.290719949000106,26.22455002400011],[6.367080051000016,26.079509923000103],[6.440920075000179,25.989570057000094],[6.55358007000018,25.967539750000128],[6.558340002000023,26.03536992400018],[6.504889955000067,26.126980044000163],[6.598610026000074,26.150169794000078],[6.73887012900019,26.08231004800001],[6.979930001000128,26.067409958000155],[7.062490054000079,25.952000003000023],[7.137679976000186,25.96986004500019],[7.134150071000079,26.092429788000175],[7.059479937000162,26.228259996000133],[7.111940048000122,26.29000005600011],[7.226439980000066,26.13736997400008],[7.377850067000111,26.08331001800019],[7.512949968000157,26.144670050000116],[7.566329960000076,26.300980005000042],[7.708799993000127,26.344189915000186],[7.874879936000184,26.263299939000092],[8.016079985000147,26.217399916000033],[8.149019945000077,26.206369977],[8.667659961000027,26.259579757000097],[8.810639924000156,26.258799989000067],[9.073920029000135,26.231450006000102],[9.165820054,26.197250031000067],[9.208430087000124,26.119879926000124],[9.274970035000024,25.795370043000162],[9.311300029000051,25.685999861000084],[9.40005,25.60980997000013],[9.663219741000148,25.461470023000118],[9.790620000000104,25.289139963000082],[9.906509962000143,25.097809956000162],[10.058092951000106,25.38334106100018],[10.084673283000086,25.861787038000102],[10.046450618000051,26.194895795000093],[10.046016873000099,26.36820761900003],[10.080713140000057,26.491351134000013],[10.13089860100007,26.550777852000067],[10.281180784000071,26.593313999000088],[10.451139566,26.5797924310001],[10.859645699000055,26.51908480500009],[10.979956601000083,26.522371650000025],[11.135924249000027,26.582405526],[11.239220282000133,26.683215698000026],[11.338245106000045,26.831860151000058],[11.50663562700015,27.125020091000067],[11.588202239000054,27.234217435000176],[11.878595365000137,27.503118353000104],[12.04640558300008,27.628829770000152],[12.296584800000062,27.770049244000177],[12.568557639,27.868883058000108],[12.738700035000022,27.911474098000156],[12.949784164000164,27.937102103000086],[13.152995199000088,27.92032184599998],[13.282760714000176,27.87240646500004],[13.631418649000125,27.63506754200006],[13.717646136000155,27.591539260000047],[15.778163151000058,27.398365790000128],[16.558172723999974,27.138362599],[16.752678872000047,26.957433063999986],[16.91760112999998,26.749878893000073],[17.041039305000083,26.618246923000186],[17.11118377600002,26.57216750400005],[17.220501033000062,26.56405215900014],[17.315348642000117,26.633076325000047],[17.44912919500007,26.79870478099997],[17.568768816000045,26.9207862720001],[17.64274526500003,26.959691858000042],[17.793152656000075,26.98863715400006],[18.258344506000128,26.983082744000058],[18.374796074000074,27.01017767800016],[18.52451397300007,27.09637079400005],[18.86923498400006,27.41827197800012],[19.02495002700016,27.523435592999988],[19.14349474,27.56460021400011],[19.301755815000092,27.58559242300015],[19.643331665000176,27.560325545000183],[20.09006739800003,27.492808713999977],[20.306965813000033,27.486689285000182],[20.517244339,27.530561447000025],[20.67982092200009,27.61349005800014],[20.821991400000115,27.712593491000064],[20.98127761900014,27.853159364000078],[21.11639193900004,27.996183557000165],[21.283293832000084,28.201098447999982],[21.569694638000044,28.612031020000188],[21.809622736999984,29.061157327000103],[21.897728324000184,29.186540521000097],[22.049360837000165,29.321580323000035],[22.15982024000016,29.36557620100018],[22.333025800000144,29.395434504000036],[22.520712990000163,29.404897724000193],[23.521770946000117,29.418250069000123],[25.268279619000168,29.348389722000036],[25.570297419000156,29.27823473100011],[25.608831985000165,29.25757575800003],[26.00422745800006,29.31723612700017],[26.081935221000037,29.302477097000065],[26.110722151000118,29.220468507000135],[26.04019431500012,29.142545803000075],[26.204409794000128,29.107217914000103],[26.32209282900004,29.041105785000184],[26.329789995000112,29.12275996600016],[26.482479924000188,29.193280078000043],[26.587939998000024,29.30287996600009],[26.579360081000175,29.389879947000054],[26.49158015600017,29.592020045000083],[26.54605992000012,29.671459968000192],[26.66982994400007,29.76731005700009],[26.740909975000136,29.85396996700007],[26.923390050000023,29.9179500570001],[27.03638994,30.07971997500016],[27.155550001000165,30.17361008200004],[27.278609961000086,30.185970028000042],[27.40340019600012,30.258919919000164],[27.826110034000067,30.375550045000125],[27.933890053000084,30.35805999700017],[27.983050141000092,30.398610069000085],[28.094720024000083,30.389720004000026],[28.18138996800019,30.344439924000085],[28.291659964000075,30.388610022000023],[28.40915998100013,30.389160085000185],[28.493709940000087,30.353510057000108],[28.634539995000182,30.34636998300016],[29.0786499890001,30.25264005400004],[29.125529738000182,30.180359919000125],[29.010809957000106,30.146380145000023],[28.75668025000016,30.205780019000144],[28.573800081000172,30.158420087000025],[28.289540155999987,30.17255008900014],[28.237570084000026,30.093980233000025],[28.310000189000107,29.95953002100015],[28.186680072,29.858059967000088],[28.100059942000087,29.83987006400008],[28.030760001000033,29.76712998900007],[27.94771026,29.858920001000172],[27.880469929000185,29.7035000030001],[27.905670003000125,29.625289931000054],[27.80486002400005,29.573889988000076],[27.573007962000133,29.567379358000153],[27.40019369800018,29.547599777000016],[27.497779990000083,29.44277007500017],[27.588900071000126,29.3830500200001],[27.75661999200014,29.461670043000026],[27.850390053000012,29.40537005600015],[27.873729948000175,29.318539935000047],[27.721000239000034,29.18142002800016],[27.64594004500003,29.092519912000057],[27.521789994000187,29.00311021800013],[27.349579979000055,28.943589946000145],[27.163730001000147,28.942259939000166],[26.958789954000167,28.911299963000033],[26.718071970000153,28.803518300000064],[26.937477564000176,28.72450913700004],[27.06406489000011,28.660739582000133],[27.479042889000084,28.362831063999977],[27.55211654600015,28.293695280000065],[27.691318148,28.061692611000183],[27.751582168000027,27.985456360000114],[27.831090933000155,27.95079243500004],[27.959230559000105,27.935967870000127],[28.09633372500008,27.95000056300006],[28.254317695000054,27.995660236000106],[28.429216566000093,28.09354508700011],[28.497866953000084,28.163152391000153],[28.593310060000192,28.427208636000046],[28.679606414000148,28.5214728090001],[28.789539426000033,28.555775407000056],[29.01249614500017,28.540724095000144],[29.544205622000106,28.40690119700014],[29.765999744000112,28.377458239000134],[29.891455395000094,28.38902211800007],[30.015146255000047,28.44468498200007],[30.075047359000052,28.51002483500008],[30.28892344899998,28.8655051450001],[30.37065961600001,28.937737673000072],[30.468908719000126,28.970700734000104],[30.626904886000148,28.98711636300004],[30.798909960000117,28.958384936000186],[30.998243612000124,29.28316938600011],[31.05274056700017,29.40310453000012],[31.11068550200008,29.59879917000012],[31.121974584000156,29.707354875000192],[31.093261537000046,29.868819834000135],[31.036010456000156,30.018079402000183],[30.82813054000019,30.3625357250001],[30.76285948600014,30.601430024000024],[30.60758758000003,30.741907033000132],[30.51886144600013,30.741907033000132],[30.437530499000047,30.808450460000074],[30.28965361000013,30.823237143000085],[30.178745608000042,30.778875585000037],[30.082624457000122,30.815842460000113],[30.119594517000166,30.89717357500018],[30.110202595000032,30.97073483400004],[29.934379603000025,30.880143225000097],[29.62202848300018,30.76880908700008],[29.229278484000133,30.779865655000094],[29.10902952200007,30.81632928100015],[28.99999956900001,30.83046385200015],[28.710399450000125,31.001296762000095],[28.424119570000073,31.087475970000128],[28.319919605000166,31.06529644800014],[28.157089569000163,31.091715537000027],[27.951160457000128,31.09037476700007],[27.90103952600009,31.11048312100013],[27.87018959599999,31.231570944000055],[27.73027953800016,31.183881435000103],[27.44342952100004,31.214399442],[27.392000510000173,31.25406009300019],[27.344499595000173,31.368106112000135],[27.25869958400017,31.35291659500018],[27.08426044400011,31.380205724000064],[26.97759050000019,31.438703697000108],[26.832359443000144,31.439083733000132],[26.739910571000053,31.478501309000137],[26.515720477000116,31.48922193100003],[26.337810559000104,31.52160977200009],[26.08893944800019,31.592148684000108],[25.915769496000166,31.62185649600002],[25.823640478000073,31.610496838000188],[25.506090567000058,31.513589129000025],[25.385139536000054,31.497739621000107],[25.190450556000144,31.522260040000106],[25.11146955900017,31.747363259000053],[25.036260586000026,31.83790021800013],[25.001579456000172,31.956625351000127],[24.667699586000026,32.02533332000007],[24.599090523000086,31.993634303000192],[24.289140484000086,31.992005196000093],[24.08577958700016,32.02033250900013],[24.00573945200017,32.097150807000105],[23.669330595000076,32.18641891400017],[23.426849512000103,32.178828263000185],[23.37138947600016,32.21040909500016],[23.260309477000135,32.20822728500008],[23.170919497000057,32.30583823600017],[22.99945258000014,32.29422259500018],[22.851409562000185,32.2341434600001],[22.648586448000117,32.17984314400019],[22.592840589000105,32.186506924000184],[22.14583251900018,32.17111858800007],[22.027221548000057,32.217512087000046],[21.98685044700005,32.17995730500013],[21.561239532000172,32.15894990900017],[21.39232054500019,32.11945019000018],[21.0585305300001,31.98376444400003],[20.880340488000172,31.885027637000064],[20.775770546000103,31.789210916000116],[20.596679450000067,31.580147978000184],[20.510520526000107,31.458832],[20.464603455000145,31.337246290999985],[20.129329505999976,30.982245367000075],[20.055870507000066,30.845964338000158],[19.90522054900009,30.65331903400005],[19.772710539000173,30.52336466600019],[19.608100522000086,30.409799768000028],[19.579160492000085,30.418388704000108],[19.376480541000035,30.312832548000188],[19.183700456000054,30.26421516200014],[18.95350053800007,30.282023522000088],[18.791009465000116,30.3800599380001],[18.673259484000084,30.40536004200004],[18.51576955800016,30.532874438000135],[18.408819491000088,30.592313363000187],[18.180049525000072,30.785656377000123],[17.90440946500013,30.855113856000116],[17.847019580000165,30.924590613000078],[17.731199448000098,30.938901036000118],[17.457550593000178,31.028778005000106],[17.390069567000182,31.079234045000078],[17.302219510000043,31.08475587500004],[17.017309568000144,31.163582310000038],[16.75168051900016,31.21882123100005],[16.363800573000105,31.221540990999983],[16.165670486000124,31.25152523800017],[15.909848431000114,31.23885666200016],[15.148359568000103,31.285859860000073],[14.907729544,31.357156497000176],[14.749609467000084,31.48240207900011],[14.647620480000114,31.640965894000033],[14.448120456000026,31.827419821999968],[14.144579555000064,31.893787396],[13.868229548000102,31.90914706600006],[13.646989549000068,31.894377482000152],[13.324819532999982,31.84895008100017],[12.68764954900007,31.78491200600007],[12.46067046100012,31.78228226699997],[12.079719499000134,31.8327483650001],[11.443240519000028,31.821589873000164],[11.169879499000047,31.80769150400016],[11.028490538000085,31.816198968000094],[10.93490055400008,31.846787886000072],[10.958760480000024,31.92300738100016],[11.110750536000012,31.97531481500016],[11.565580431000058,32.08551219999998],[11.795599468000148,32.11970215000002],[12.020850543000051,32.177657311000075],[12.174019430000158,32.24919601700003],[12.231789518000085,32.341092018000154],[12.169289522000156,32.415781648],[11.89570956700004,32.59666496300014],[11.802650492,32.75432906500009],[11.66444797600002,32.770841406000045],[11.434610055,32.71726001300004],[11.397418913000024,32.770762322999985],[11.40276849900016,32.720700199000134],[11.111120513000174,32.77896029300007],[10.989760446000105,32.84633704900011],[10.828499502000057,32.87710517100004],[10.706910441000048,32.86194683500008],[10.45761051200003,32.79657989200018],[10.256400579000115,32.81844894800008],[10.168290516000127,32.88969780700012],[10.127779436000026,32.966114613000116],[10.027039521000063,33.06982943300011],[9.987594453000042,33.14994014300004],[10.005359561000034,33.261424820000116],[9.908624519,33.45712784200009],[9.892167491000123,33.715631436000024],[9.81078055200004,33.9356952870001],[9.909702432000131,33.90996586099999],[9.97415558,33.85618740300015],[10.090029524000101,33.69035211900018],[10.313329460000148,33.65729523400017],[10.466380497000102,33.589784033000115],[10.661049528000035,33.62571389900006],[10.729156515000057,33.60198255199998],[10.716790525000022,33.71370141900013],[10.492670504000102,33.63607376400006],[10.386219496000024,33.683382399000095],[10.185379540000099,33.82862737000005],[10.04881956200012,34.00882403900016],[10.036227428000075,34.07958104800019],[9.975529541000128,34.14484942000007],[9.974712473000181,34.28451657000005],[10.04012954000018,34.49774095499998],[10.232279473000062,34.68808576200013],[10.202850444000035,34.75062230300017],[10.095620589000077,34.68824585600004],[10.031229467000173,34.7779345670001],[9.969043457000112,34.797603038000034],[9.990845458000024,34.61617657600004],[9.874452506000125,34.48162037600014],[9.704906554000104,34.444432217999974],[9.63502645900013,34.407762062000074],[9.768398464000029,34.31452562700014],[9.792697434000047,34.160389971000086],[9.662645545000089,34.04955901700015],[9.83708997600013,34.00325995400016],[9.825890001000062,33.95554006100019],[9.3911400450001,33.86900002100015],[9.359449938000068,33.823819920000176],[9.193189927,33.784810023000034],[8.999550009000018,33.79426986400017],[8.92538998100008,33.74907004800008],[9.000479923000057,33.66614000100003],[9.068920006000042,33.63775995000009],[9.100600080000106,33.56907977500015],[9.032369988000141,33.49056994100016],[8.934700029000169,33.472110023000084],[8.885000087000037,33.424489934000064],[8.750569942000027,33.38337994200015],[8.675309965000054,33.38877002600009],[8.6088300400001,33.34076005200018],[8.513349945000073,33.338100038000164],[8.266889780000042,33.392270007000036],[8.109879793000061,33.562310047000096],[7.82960003200003,33.65658000500002],[7.719760052000026,33.757389984000156],[7.699379932000113,33.84930004200004],[7.791549795000094,33.90470003800016],[8.100939915000083,33.91273992600014],[8.177160081000125,33.99433996700009],[8.337980020000032,34.056159939000054],[8.532539994000103,34.07353997500013],[8.722049955000045,34.04441007800017],[8.95061997900001,34.029419866000126],[9.159190085999967,33.9621497870001],[9.398150040000075,33.96728006500007],[9.523550009000076,33.99188008800019],[9.65771592800013,34.04841548200011]],[[5.958780087000093,33.85402001700004],[5.901940071000183,33.95097005500003],[5.830920063000178,34.162260023000044],[5.838919995000026,34.23301001600004],[5.957130076000055,34.38780003900018],[5.946369975000152,34.56958008300012],[5.980900164000047,34.63049989000018],[6.122929971000076,34.65930995800005],[6.302139948000104,34.585940083000025],[6.473699921000048,34.561450073000174],[6.564589943000101,34.520480017000125],[6.9123399180001,34.41189998900006],[7.015730174000055,34.20604991800013],[7.088250049000123,34.16560000200013],[7.19925000000012,34.15260990399997],[7.451389977000076,34.165519912000036],[7.697550029000126,34.21061992400007],[7.865290016000017,34.22608996700012],[8.090109935000157,34.19356992600012],[8.134509915000137,34.071870073000184],[8.117670084999986,34.00986985600008],[8.022470038000108,33.958269955000105],[7.884319887000117,33.94642997200003],[7.562750066000035,34.00570997600016],[7.197379964000106,34.00342998999997],[7.117310065000083,33.992099937000035],[7.015289948000088,33.84398001500011],[6.925020221000068,33.80720997200007],[6.733470012000055,33.81604001300013],[6.67606004400011,33.89686996600011],[6.465990070000146,33.84377002300016],[6.321569912000143,33.84713006800007],[6.229590150000149,33.810549950000166],[5.958780087000093,33.85402001700004]],[[5.85158005500017,33.40497002300009],[5.89106995800006,33.48498975600006],[5.941080047000185,33.702010054000084],[6.027410096000153,33.718659959000036],[6.003330037000012,33.585000077000075],[6.02306997200003,33.540239784000164],[5.938790027000039,33.42553003600011],[5.85158005500017,33.40497002300009]],[[5.892740212000092,33.07015998000003],[5.902300032000028,33.28350005200019],[6.00707010900004,33.35061998600008],[6.066929923000032,33.30909001100002],[6.087520035000125,33.182589918000076],[5.968060036000054,33.08001973900019],[5.892740212000092,33.07015998000003]],[[-7.838619998999832,27.664909971000156],[-7.881990086999963,27.73260003300004],[-7.791909931999953,27.802350057000126],[-7.639779922999878,27.797570059000066],[-7.555560001999879,27.732220182000106],[-7.689440084999887,27.665549980000094],[-7.838619998999832,27.664909971000156]],[[19.1666299850001,29.920999955000184],[19.086729946000162,29.950739936],[19.044910066000114,30.04552],[18.809559928999988,30.150249944000052],[18.811849949000134,30.23255001600012],[18.914889925000068,30.21118999300012],[19.15500017000005,30.120800043000088],[19.32995996900013,30.091289944000096],[19.21394996100014,30.021029990000045],[19.357850155999984,29.94340008000006],[19.337179956,29.90850007300014],[19.1666299850001,29.920999955000184]],[[19.18983997800018,29.185959935000028],[19.05840023600001,29.25148002400016],[19.132999962000156,29.307050231000062],[19.518010020000077,29.302569995000113],[19.633629967000047,29.212479984000026],[19.553490013000157,29.1182100260001],[19.42146007600013,29.153609930000073],[19.18983997800018,29.185959935000028]]],[[[10.60052849699997,35.5007579980001],[10.53943991900013,35.41944003900005],[10.47661980099997,35.42284004100003],[10.305930071000148,35.51256005800019],[10.268998347000093,35.62373731400015],[10.305919522000067,35.51053620700014],[10.476623518,35.42082017100006],[10.539443535999965,35.41741846000002],[10.60052849699997,35.5007579980001]]],[[[10.119127860000049,35.86655903500008],[10.146908448000033,35.79725311900012],[10.290348460000132,35.838470123000036],[10.331334918000096,35.90227971100012],[10.290350015000172,35.84050004200003],[10.146909936000156,35.79929007100009],[10.119127860000049,35.86655903500008]]]]},"properties":{"objectid":490,"eco_name":"North Saharan Xeric Steppe and Woodland","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Palearctic","eco_biome_":"PA13","nnh":2,"eco_id":833,"shape_leng":212.32000062,"shape_area":148.952263436,"nnh_name":"Nature Could Reach Half Protected","color":"#C95F51","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":1604169.349114605,"percentage":6.080503690626954}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[45.174910000000125,9.91304],[45.06637,9.99353],[44.97856,9.99366],[44.86745000000019,9.82339],[44.87171,9.73328],[44.92213,9.687610000000177],[45.06926,9.71888],[45.06065000000018,9.83613000000014],[45.18901,9.800120000000106],[45.174910000000125,9.91304]]],[[[51.01898950200007,10.40694756500011],[51.04701959200008,10.39506957000009],[51.24478959200019,10.420976692000124],[51.28926061700008,10.367610455000147],[51.36029858800009,10.368041453000103],[51.413028470000086,10.438915473000122],[51.19924,10.53119],[51.22835150600008,10.430046077999975],[51.01898950200007,10.40694756500011]]],[[[51.01898950200007,10.40694756500011],[51.10820061200013,10.493522734000123],[51.062219693000145,10.606355890000145],[51.065077429000155,10.68260366200019],[51.12953275400014,10.74837906300013],[51.116599614000165,10.939081573000067],[51.132308474000126,11.03804368700014],[51.17847851200003,11.130617449000056],[51.086368604000086,11.186104307000107],[51.083980600000075,11.33804289799997],[51.119819606000135,11.490912551],[51.225429575000135,11.641041993000101],[51.2846105050001,11.810751560000085],[51.14027061200011,11.873026083000127],[51.05435157800008,11.871696378000138],[50.80575958500003,11.978520046000142],[50.58153160500012,11.911253597000098],[50.539310617000126,11.859237182000072],[50.49285861300018,11.73069684100011],[50.43152956800003,11.669550186000151],[50.26052047100018,11.579767263000065],[50.064010606000124,11.50281150100011],[49.93952962100008,11.508571042000142],[49.86138161700006,11.46733492800007],[49.692150489000085,11.476494504000186],[49.54692060500008,11.438657085000045],[49.50939951900011,11.38006020500012],[49.42203158900014,11.332713349000187],[49.29597849400005,11.331984291000083],[49.20678264000003,11.264517340000111],[49.08928869500011,11.269273233000092],[48.95531850300017,11.237580927000124],[48.87960057999999,11.245709194000028],[48.66204861800003,11.321724171000085],[48.360099609000144,11.268987583000069],[48.241611516000034,11.203692389000139],[48.15349960900005,11.128367411000056],[47.97175949600012,11.11160846600012],[47.80221957900011,11.121228041000165],[47.674388513999986,11.08942005900002],[47.54197618200004,11.143217897000113],[47.490400000000136,11.09294],[47.38829,11.07462],[47.18618000000015,10.97071],[47.023135168000124,10.862037239000074],[46.88524000000018,10.83436],[46.82469,10.710700000000145],[46.76537000000019,10.67822],[46.721270000000175,10.54584],[46.669660000000135,10.52746000000019],[46.523800000000165,10.611270000000104],[46.45570000000015,10.57771],[46.337260000000185,10.65062],[46.24935000000016,10.57692],[46.15947000000017,10.66933],[46.07706,10.60866],[45.95525000000015,10.62078],[45.8743,10.803270000000111],[45.78208000000012,10.790380000000141],[45.72041,10.650440000000117],[45.717,10.5701],[45.49059,10.363090000000113],[45.42032000000012,10.349080000000185],[45.25140000000016,10.42423],[45.20201,10.42756],[45.04819,10.329000000000178],[45.00202000000013,10.27370000000019],[44.98430000000019,10.16517],[45.11921,10.09984],[45.22126,10.08124],[45.47703,10.09932],[45.60220000000015,10.134960000000149],[45.692310000000134,10.199960000000146],[45.83195,10.37128],[46.008690000000115,10.384050000000116],[46.14828000000011,10.51737],[46.228310000000135,10.45537],[46.42586000000017,10.44097],[46.52351000000016,10.41585],[46.67488,10.34725],[46.76166000000018,10.39380000000017],[46.869590525000035,10.389969014000087],[46.87018949600014,10.327317138000012],[46.96903735000012,10.342136881999977],[46.99194000000011,10.248],[47.15865000000014,10.152230000000145],[47.34857,10.187770000000171],[47.28938,10.23888],[47.266031076000104,10.39204982400014],[47.42791000000011,10.39826],[47.49692149600003,10.439589546000036],[48.074382490000175,10.737923441000135],[48.39198654800015,10.651310720000026],[48.738464586000134,10.77641800200007],[49.04644353600003,10.959268214000133],[49.1849,10.953680000000134],[49.28105387700003,10.997450966000144],[49.681652491000136,11.055505370000105],[49.71067,10.96702],[49.78635,10.93109],[49.7676,10.867070000000183],[49.835610000000145,10.83874],[49.95089000000013,10.85703],[49.93131000000011,10.99058],[49.96739680400003,11.023050706000106],[50.172492550000186,10.90152628800007],[50.386840613,10.919386950999979],[50.39413596000014,10.758818789000088],[50.309520000000134,10.66328],[50.1819,10.466970000000117],[50.12572,10.32376],[50.15959,10.21624],[50.26400028000006,10.128607960000181],[50.10902762900008,9.880677536000064],[49.97018056500008,9.533586278000143],[49.93547060100019,8.978235571000027],[49.779266626000094,8.474949391],[49.58976755300017,7.906489220000026],[49.49177153800002,7.69287876500016],[49.50043859400006,7.536927924000111],[49.569755592000035,7.469782677000126],[49.705898068000124,7.491642680000041],[49.780281507000154,7.669517395000071],[49.83626960300006,7.764547557000014],[49.809570559000065,7.817692511000075],[49.83533049400006,7.934154362000072],[49.984401469000034,8.09524481900013],[50.129219466,8.197920283000087],[50.156879579000076,8.309346286000164],[50.33201961400016,8.550229946000059],[50.338539561,8.64957980600019],[50.379520529000104,8.695576841000104],[50.44340152799998,8.892528766999988],[50.64088855500006,9.076329655],[50.655040560000145,9.202781561000108],[50.810081629000024,9.38393376700003],[50.84656151600012,9.465051982000091],[50.79864150500009,9.559913333],[50.85145151800003,9.853899534999982],[50.89825053400011,9.991268702000013],[50.88206859900015,10.094969608000156],[50.909768168000085,10.316464673000155],[50.89926528900014,10.395778656000118],[50.9573117760001,10.438003818000084],[51.01898950200007,10.40694756500011]]]]},"properties":{"objectid":491,"eco_name":"Somali montane xeric woodlands","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Afrotropic","eco_biome_":"AF13","nnh":4,"eco_id":106,"shape_leng":28.6774241622,"shape_area":5.25153858346,"nnh_name":"Nature Imperiled","color":"#E8914E","color_bio":"#CC6767","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":64009.95098957763,"percentage":0.24262571993648724}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[90.8711925950002,38.75543965300005],[90.85181464100003,38.739699780000024],[90.45931961900004,38.71053746300004],[90.31523151800008,38.711548320000134],[89.91732061400012,38.666169199000194],[89.7102356370001,38.676452956000105],[89.46538566100014,38.707092500000044],[89.15949263000005,38.768367398000066],[88.92399551700004,38.80105883200008],[88.6182255330001,38.78917614300002],[88.45819052600018,38.74657780200016],[88.32115160500013,38.590300402000025],[88.27085163700008,38.440731710000136],[88.19917261800015,38.440117987000065],[88.02319355500009,38.52602746600007],[87.93839249900009,38.489773052000146],[87.8864055890001,38.36839521500019],[87.8895726070001,38.29197623099998],[87.77450550499998,38.23745748200008],[87.68080856800015,38.11336441200007],[87.51966865900005,38.08607008500013],[87.43154166400006,38.194650097000135],[87.29177057800018,38.27234665200007],[87.2091976000001,38.28535452700015],[86.98464959900008,38.19013007200016],[86.85144053800019,38.061431313000014],[86.53864266300008,37.992833817000076],[86.4607845060001,37.90975004600011],[86.40857664800012,37.787407452000025],[86.19968453400008,37.64668200300008],[85.91211635500008,37.500826829000175],[85.47188555700012,37.40448858700017],[85.2034685180002,37.31024749700009],[85.01065054700013,37.201595736000115],[84.9355396420001,37.17791903800003],[84.72686763600012,37.18773391200017],[84.556396657,37.130007074000105],[84.27795452700008,36.96301056100003],[83.94152052300018,36.940932125000074],[83.90978965500017,36.92177830300017],[83.78628549700005,36.72066459400003],[83.61543263800019,36.65163895100005],[83.49214959400007,36.707949750000125],[83.22268649500006,36.614297740000154],[83.14855962500019,36.52510087900009],[83.0093005060001,36.46351316900018],[82.72764559300015,36.40390224700019],[82.7071305500001,36.28304811100014],[82.63478852200012,36.24835776100008],[82.15083352600016,36.28534391500017],[81.86233562700016,36.226473282000086],[81.58922556100015,36.26247171300008],[81.13422350200005,36.2537627480001],[80.82657664200008,36.34569562900003],[80.63704655600014,36.46387225000012],[80.47158057900009,36.52486769500018],[80.32084663400019,36.50991823500016],[80.19334464400004,36.52534060200014],[80.02619960300012,36.502716336000105],[79.85322562000005,36.578451525000105],[79.61236559700006,36.76831655200016],[79.24906155899998,36.903284639000105],[78.95929749000004,37.10703546200011],[78.84893749700007,37.10614245400012],[78.70064553600008,37.182538138000155],[78.4341816490001,37.211098467000056],[78.20854165300011,37.1925558530001],[77.83690650600005,37.372045257000025],[77.39866657800013,37.47434538000016],[77.0340495980002,37.55015701200017],[76.92781853100007,37.66556877800019],[76.7750855020002,37.78016045800007],[76.73793757800019,37.872744781999984],[76.58529658300006,37.92817883400011],[76.53543063000018,37.98403265100018],[76.34591663700002,37.98203775800005],[76.26811949900008,37.946130356000026],[76.20428460100015,37.86035498799998],[76.17835250100018,37.714731657000186],[76.23619853000008,37.54916174500016],[76.2401886510001,37.40353858200018],[76.13246962800014,37.26789038700002],[76.01078048700003,37.26988528000015],[76.00479849100014,37.08835890600005],[75.85198264900004,36.837670096000124],[76.03374455500011,36.670646593000185],[75.87163553000016,36.71240188200011],[75.79978954400013,36.763486564000175],[75.76995063900017,36.718402486000116],[75.90293154500011,36.622716691000164],[76.32550854700008,36.410097312000175],[76.5374065790001,36.37478200700019],[76.69633450500004,36.32180821100013],[76.8199385750001,36.251176763000046],[77.03183761400015,36.074598896000055],[77.24374352600012,35.986305772000094],[77.47330457600003,35.91567449200005],[77.68520361399999,35.82738539100018],[78.00305158600008,35.615487358],[78.1963116180001,35.37450730600011],[78.28331761800013,35.296739338000066],[78.60343959900013,35.40359368400016],[79.00695749400012,35.46730503300006],[79.283286546,35.399180779000176],[79.47753162100008,35.257914195000126],[79.6011355230001,35.03718985000012],[79.86618756300004,34.798204859],[79.96675849900015,34.786113125000156],[80.06847356500009,34.69678668000006],[80.24932854800016,34.67383401200004],[80.2062685320002,34.583328568000184],[80.07942150400004,34.59656225200001],[79.96560665800013,34.55912532000008],[79.92456852400016,34.46479370500009],[79.99076058200006,34.432865694999975],[80.12807459600003,34.451804940000045],[80.26259659800013,34.5107483270001],[80.34154557700015,34.46185668600003],[80.42099763700008,34.42068578400006],[80.54465451400011,34.429791716000125],[80.56653563900005,34.429280587],[80.6271134980002,34.51349138900008],[80.59639751100008,34.526915007000184],[80.75249453200018,34.604042095000125],[80.84005759200011,34.60487793800007],[81.05354349300018,34.43807638900017],[81.16645862500008,34.509318375000134],[81.1996995770001,34.493555871000126],[81.2552186210001,34.49684492900013],[81.33747057200003,34.59113346100003],[81.48409252300019,34.64208101600002],[81.62588465300018,34.47935038900016],[81.79151960900009,34.336959288000116],[81.80399355700013,34.251672417000066],[81.93992656900014,34.22965902500016],[82.09226263000005,34.07971817599997],[82.17768059400015,34.08347595100014],[82.246475567,33.98568881300014],[82.32875065300016,34.05462594300013],[82.24392663100014,34.108637419000104],[82.17251549800017,34.24210162500009],[82.05148349800015,34.33102724700018],[82.03880352300007,34.39384659400014],[82.12210052900014,34.46283368100012],[82.20027954600005,34.38122797400007],[82.42678053100013,34.242540837000035],[82.42376757199997,34.357386489000135],[82.52989956500005,34.45510087200006],[82.58648663200006,34.37783313600016],[82.71925363100019,34.30054109200006],[82.83724249700009,34.33330125800012],[82.77489454900012,34.43293459400007],[82.84337654200004,34.52955782100014],[83.05310064399998,34.46338671900003],[82.9878616100001,34.41906103600007],[83.12468762900016,34.330543444],[83.39371453500019,34.37882504999999],[83.47185549800008,34.44839518200018],[83.43166360200013,34.53957956000005],[83.48770165400009,34.57168694300003],[83.86080162200011,34.48039242700003],[83.88182058500007,34.43794345200013],[83.81420159300006,34.36215847400018],[83.90563960700018,34.34474506999999],[84.05283353900018,34.36429133300015],[84.18740851500007,34.59764117100002],[84.2623675390002,34.633052365000026],[84.41091162800012,34.55278927200004],[84.54634055200012,34.545274560000166],[84.75551564000011,34.78369427600012],[84.86811863000008,34.81487864400003],[85.08705863500006,34.83106812200015],[85.24549051900016,34.68825692000007],[85.11872060400015,34.623996557000055],[85.02973966100018,34.63373515500007],[84.9622805950001,34.54644148900019],[84.98153650900014,34.488711969000065],[85.12643463700005,34.41959479500008],[85.2792585250001,34.41935507300013],[85.4110106440001,34.30148724100013],[85.63376659400006,34.25610929400011],[85.7709426420002,34.18368931500015],[85.94738757100009,34.21853540100011],[86.123428661,34.29879028000016],[86.25668365500007,34.29626112500006],[86.3087465050001,34.22638924500018],[86.39503451000019,34.199473948000104],[86.48114750100012,34.229730942000174],[86.64195263800002,34.11408431500013],[86.72817258200007,34.20024089200018],[86.89963564300018,34.23014718700006],[86.83573151000013,34.369646363000015],[87.01605960800003,34.42417265500018],[87.31905350600016,34.41584489900015],[87.3853835290002,34.452668109000115],[87.36711165000014,34.53504796800013],[87.4589845180002,34.58317668800004],[87.51699851900008,34.65275084300009],[87.56615452600005,34.77245665800007],[87.6490096390001,34.77697634800012],[87.67877964400009,34.670427104000055],[87.60369857900008,34.554490295],[87.82089950700015,34.57440687100018],[87.92604863800005,34.50270773500006],[88.15836364600011,34.56552205300011],[88.1310956390002,34.647345857000175],[88.02154550500018,34.60973374300016],[87.89610261300004,34.65556951000019],[87.92263753900016,34.730354526000156],[88.1301116030001,34.797899758000085],[88.23625952200007,34.81237664600013],[88.55342051300005,34.770068486000184],[89.25335653500008,34.999680833000184],[89.89523362800014,35.100073067000096],[90.05115563500016,35.14511992900009],[90.07118955700003,35.0960532740001],[89.9853516600001,35.02637518300014],[89.53347051900016,34.83196012400009],[89.47269451300019,34.72454486100003],[89.63419350300006,34.690087696000035],[89.86041252000012,34.696355515],[90.06050866600015,34.724548717000175],[90.16534464900008,34.769122505000155],[90.2659605120001,34.93904430200013],[90.38249159800006,35.07143696500003],[90.53285254700018,35.12679859800005],[90.88862661900015,35.14622315600019],[91.01898952100004,35.123353636000104],[91.54676862700012,35.067157166000186],[91.6915205750002,35.08167177200016],[91.9324416180001,35.15216575700009],[91.98938759800006,35.200366562000056],[92.03558361900002,35.30377711900019],[92.18846852700017,35.373859217000074],[92.23274257800017,35.454804430000024],[92.20999861900009,35.58917824000014],[92.13885453400019,35.714476293000075],[92.16547361400012,35.80268895100011],[92.2446596330002,35.807342919000064],[92.48661064400005,35.74694225400003],[92.65643353500019,35.72609176700013],[92.783180651,35.79045237899999],[92.99122652900002,35.818012579000026],[93.52050063200011,35.82944130400017],[93.7891696310001,35.85275992600009],[93.86538661200018,35.92746112400005],[93.8534856500001,36.002056374000176],[93.68555455500018,36.160484906000136],[93.57221261600006,36.19121899800007],[93.45451359700002,36.187572199000044],[93.53353164200007,36.32836202100003],[93.30374863900016,36.29844784700009],[93.1706235650002,36.26144945600015],[93.07515754300005,36.32185012100018],[92.70270566400006,36.38924280100014],[92.60936764000013,36.388411820000044],[92.23078959500009,36.435887757000046],[91.88272050400019,36.585062332000064],[91.79920959100008,36.654835138000124],[91.72602065600006,36.828942187000166],[91.60625465900006,36.92145442600008],[91.41487150200004,37.0075464630001],[91.1129305390001,37.06416353600008],[91.05949355900003,37.03862404500018],[91.07998664200005,36.93605704300012],[90.90578454200005,36.979490053],[90.85804759200016,36.86748854800015],[90.79229759600008,36.88589001100007],[90.70196565800018,36.972875391],[90.55601459500008,37.04200379600013],[90.40077252800006,37.069064268000034],[90.03530864100009,37.10744366100005],[89.68309050800008,37.118704413000046],[89.29798866100009,37.14712677600011],[89.10250859700005,37.230160088000105],[89.0431826590002,37.35553156700007],[88.91711464500008,37.41208342900006],[88.65113858400014,37.741960102000064],[88.54985066000017,37.748651208000126],[88.4260405620002,37.71449880800003],[88.28140260900017,37.7470029910001],[88.3135525720001,37.80304422800009],[88.41566460500007,37.82097261600006],[88.64282960300017,37.896521559000064],[88.80892154100007,38.003304323000066],[89.0428926460001,38.009957375000056],[89.18606561000013,38.03586181400016],[89.34811361500016,38.10873642800016],[89.50697364700017,38.225933371],[89.87111654600005,38.37427713200003],[90.36550852100004,38.52806024500018],[90.68724066600004,38.60399023000008],[90.87126166200017,38.68309896700015],[90.8711925950002,38.75543965300005]],[[79.04029064700006,36.25731868600013],[79.08193965300018,36.20179695900015],[79.38011965600015,36.189578324000024],[79.4682764910001,36.24160613800018],[79.48561864800013,36.10864803100009],[79.6941835340001,36.15618482200017],[79.69914260300015,36.09174139700008],[79.6168445510001,35.99556744000006],[79.70112659900019,35.878573171000085],[79.76259662700016,35.855769868000095],[79.90239755200014,35.93509083500015],[79.99658952500016,35.87461054200003],[79.97527350700017,35.811153835000084],[79.81266760200015,35.75166512200019],[79.77400255400005,35.67532308300008],[79.83249650300007,35.634675043000186],[79.9177625870002,35.69118885200015],[80.08929454700012,35.684245954000176],[80.12399260900008,35.65152769800005],[80.0555805210002,35.49190156000009],[80.06847356500009,35.40663363200014],[79.89842955900019,35.50479108300016],[79.72591356300006,35.56229680600012],[79.68823255000012,35.62971630900006],[79.5191875000001,35.74472658200017],[79.51026161100009,35.800247973000126],[79.27825153700007,36.01936316000001],[79.16224650000004,36.05307232500019],[79.25148057600006,36.154205854],[79.1067195760001,36.167094539000175],[79.04029064700006,36.25731868600013]],[[80.5116725630001,35.788350365000156],[80.45565060400014,35.639629921000164],[80.55678564200002,35.599969941000154],[80.59991455700009,35.72291385300008],[80.7198865810002,35.731836891000114],[80.73574849500005,35.67532308300008],[80.90033755800005,35.68028198400009],[80.98907458700006,35.559320894999985],[81.03964260900005,35.59898205000019],[81.16654965300017,35.54742328700007],[81.33213063000017,35.548415033000026],[81.39459257200014,35.511730125000156],[81.43276962700008,35.41754033200016],[81.54976657800012,35.455216317000065],[81.57653854400013,35.57419458300018],[81.76491561600005,35.58410836200005],[81.80458062600013,35.503799169000104],[81.70146159100017,35.45819239500014],[81.77880057400012,35.38283824700011],[81.91017165100004,35.38085525700018],[81.9627224960002,35.444310622000046],[82.18183852100003,35.60691166500004],[82.2532275260001,35.59898205000019],[82.29982755500015,35.71993894700012],[82.41384859500005,35.74571832900011],[82.48325360400014,35.70804117100016],[82.41682450600018,35.5662597700001],[82.17639162500018,35.410601457999974],[82.1000445570001,35.37589920500011],[81.997917605,35.20635945500004],[81.80606858100009,35.131006481000156],[81.68212856400004,35.201400554000145],[81.6969985630002,35.37589920500011],[81.557197638,35.332276260000185],[81.56215654000016,35.26584498400007],[81.49473552799998,35.14389617200004],[81.34848757800012,35.096304228000065],[81.28007465200017,35.286668481],[81.15019253600008,35.182564238000055],[81.05500764400011,35.171658376000096],[80.90132863400015,35.05367236000018],[80.81952662300017,35.14290425700011],[80.69757864900004,35.16769138900003],[80.55579356000004,35.28964036900004],[80.45366660800016,35.328308603000096],[80.42689564700015,35.37589920500011],[80.2608186290002,35.44629461900013],[80.2231446560001,35.52164474299997],[80.12895151100003,35.54147632600012],[80.15373964800011,35.68028198400009],[80.27470358700009,35.79529309500015],[80.27767949800005,35.859736855000165],[80.469032648,35.88254032500009],[80.5116725630001,35.788350365000156]],[[77.85678050200005,36.80770563000016],[77.83314554600008,36.68542137400004],[77.75196849100013,36.64740122900008],[77.71572849400019,36.452023256000075],[77.56145453700015,36.441384609000124],[77.29812665500003,36.51452995800008],[77.21300457200016,36.62092380200005],[77.35265361700004,36.639542356000106],[77.49096658700006,36.598314289000086],[77.5772705170001,36.716250517000105],[77.69133749100013,36.77482459700013],[77.85678050200005,36.80770563000016]]]},"properties":{"objectid":492,"eco_name":"North Tibetan Plateau-Kunlun Mountains alpine desert","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Palearctic","eco_biome_":"PA10","nnh":1,"eco_id":759,"shape_leng":81.1161664822,"shape_area":37.4887489495,"nnh_name":"Half Protected","color":"#EC8751","color_bio":"#D6C39D","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":375267.0026433249,"percentage":7.684694016180252}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[162.43609483700016,-74.91594238599998],[162.43162007200021,-75.0337747239999],[162.7761414050002,-74.98893789399995],[162.43609483700016,-74.91594238599998]]],[[[162.4957604320001,-74.33741951299999],[162.44786034900017,-74.40618919999997],[162.63238047900018,-74.58876355099994],[162.39030934200002,-74.67858338999991],[162.5244817040001,-74.73157061799998],[162.7934284160001,-74.69266381999995],[162.66669801600005,-74.52050968599997],[162.70380220200002,-74.38834009699991],[162.4957604320001,-74.33741951299999]]],[[[161.4331108780001,-71.95501950399995],[161.62769851200017,-71.98083225599999],[161.65945923200013,-71.86347818899992],[161.35687592800002,-71.89016634699993],[161.4331108780001,-71.95501950399995]]],[[[161.7118734730002,-71.44213802199988],[161.66259674700007,-71.57508712899994],[161.87653803800004,-71.56391019199992],[161.7118734730002,-71.44213802199988]]]]},"properties":{"objectid":493,"eco_name":"North Victoria Land tundra","biome_num":11,"biome_name":"Tundra","realm":"Antarctica","eco_biome_":"AN11","nnh":1,"eco_id":125,"shape_leng":571.287180445,"shape_area":2.58311322183,"nnh_name":"Half Protected","color":"#65D6C4","color_bio":"#9ED7C2","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":9470.275158102333,"percentage":0.11082624720927263}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[161.49330158900023,69.40626067000017],[161.64300573300022,69.51968592500009],[161.45060769500014,69.60780336500011],[161.49330158900023,69.40626067000017]]],[[[137.9533077000002,71.52592127400004],[137.92340056700004,71.59632171700002],[137.4626005780001,71.60898761100015],[137.12780758300028,71.5783916530001],[137.08610560300008,71.52804290200004],[137.36920170100018,71.43765933100008],[137.43649262600013,71.50013200200016],[137.83369458900006,71.4491567870001],[137.9533077000002,71.52592127400004]]],[[[153.37120069200012,69.5976175080001],[154.23599265600024,69.25715113900003],[154.84550470700003,69.05066580400012],[155.65460160700002,68.92124838000012],[156.8791046230001,68.92832907700006],[158.81889360800005,68.89040113300018],[159.17990066900006,68.81536180900008],[159.71620165700006,68.73707215100006],[159.9821016100001,68.6739891100001],[160.60879572400006,68.58892435899998],[160.92709363600022,68.60511517900011],[161.11610370800008,68.68171856600014],[161.27059961800012,68.81211147500011],[161.80900563700015,68.94101760200016],[161.85249363300022,69.18121897500004],[161.79119861900006,69.43100522200012],[161.4436036090001,69.28137584500013],[161.35760461200016,69.39792905900015],[161.4060055760002,69.49800998800009],[161.1483006100001,69.46338585500013],[161.20899967100002,69.34314728600009],[161.03590364700005,69.33227444900012],[160.97219866800015,69.49151652800003],[161.03169257900015,69.58101429900006],[160.90409872200007,69.63749776500015],[160.53680473100007,69.68587140500011],[160.3020016390002,69.68482634900016],[159.90919464300032,69.78131311900017],[159.72959862100004,69.7342903070001],[159.70350659400026,69.97750631500003],[159.83549458000016,70.07487854900018],[159.74630760900004,70.14190661700013],[159.9897006430001,70.18680009100012],[160.0659027040001,70.34220476700017],[159.83419773100002,70.58278902500018],[159.6145016790001,70.70767401800003],[159.08999671100003,70.8699148070001],[158.21270766400016,71.00948774400001],[157.7324987080002,71.0521006690002],[157.45599363600013,71.05338930300007],[156.21719360800012,71.09262197400017],[155.75399756800005,71.07931603800006],[155.52110270000014,71.00875499800014],[155.37370257400028,71.0614007260001],[154.6257935670002,70.99550186800013],[153.69529770700024,70.86166751700017],[153.4445036200002,70.8701127870001],[153.1246035920003,70.82502116600017],[152.63119464600004,70.81734568900009],[152.27389557100014,70.83940283500004],[152.0791016500001,70.922476883],[152.00689658300018,71.05669395200005],[151.50770563400022,71.31030201200008],[151.01269557700004,71.35968969400011],[150.7068935750001,71.3058684880001],[150.580993701,71.37498733800004],[150.54739366800004,71.50726634300008],[149.98249865600008,71.50010199500008],[149.99940461900007,71.62226320500008],[149.81239363100008,71.66276254900009],[149.50720266800033,71.64532869400011],[149.22450269900025,71.68375200800011],[148.97329655800013,71.67408515900007],[148.89610258200014,71.82520953300019],[149.21119659600004,71.79793297600008],[149.33369459000005,71.87375131300007],[149.63439955800027,71.74392887600004],[149.8054046320001,71.76684902300013],[150.0776827100002,71.86721979900017],[149.89819364100015,72.05531859100017],[149.61369357500007,72.12736809],[149.08419768700003,72.21003008399998],[147.7433925790001,72.31432191400012],[147.34480257200005,72.3170911270002],[147.00819355500016,72.25976863300019],[146.6690065990001,72.09207943900014],[146.54190056900006,71.97108515800011],[146.19979855500003,71.78699945300008],[145.464004584,71.67283407600002],[145.3632966880001,71.62572744500017],[144.92010456300022,71.68841419000006],[145.05949360100033,71.78570243800016],[145.39559970400023,71.8746438180001],[145.76339761600013,71.89516104100011],[145.84120162600016,72.00492323700007],[145.65220664100013,72.05731734000005],[145.78010559900008,72.18161610300012],[145.9568936830002,72.11344289900006],[146.2622987190001,72.14612880100003],[146.26690658700022,72.07995619000008],[145.99670370000013,71.99730073400008],[145.99870261600006,71.86721175200012],[146.19889867400002,71.91201470100015],[146.82910162000007,72.23182822900014],[146.82330369000022,72.28008686900017],[146.44410655800016,72.29955836500011],[145.79820263100032,72.30211417500004],[145.04139656900009,72.27060224200011],[144.7079926240001,72.22485348000009],[144.5171967030002,72.25325220600007],[144.85079963400005,72.42207848800007],[145.33459470400032,72.40382085900012],[145.45899958200005,72.33658559000014],[145.7395936820002,72.35377553200016],[146.82220465500006,72.31823626300007],[146.5809015650001,72.40821515500011],[145.47540263100018,72.56698449500004],[144.2409975700001,72.66453224600019],[142.88119471100015,72.71392847800007],[142.10600260900026,72.74896483300006],[141.6607966480002,72.79338556700014],[141.1324006330001,72.90720074799998],[140.67840557600005,72.88494394600019],[140.74110355300024,72.80595221900006],[141.06669657100008,72.627825545],[140.93099959300014,72.5301022770002],[140.67880271100012,72.48764978100019],[140.00799564600015,72.45605403000013],[139.53750567400016,72.45838906000006],[139.2248995780002,72.35051061400003],[139.1309966130001,72.20696968300018],[139.25100669200003,72.13452405600003],[139.50570657800006,72.13778931000002],[139.69900466500007,72.235368074],[140.1965026370001,72.19080149500019],[139.89930767600003,72.14958499500017],[139.6302946840001,72.04224885700006],[139.65400658500016,71.96858215400016],[139.40640265000013,71.94756956100014],[139.74560569900007,71.85803356800011],[139.76499957900035,71.68577439400013],[139.98219262800023,71.52622654300012],[139.93530258500016,71.47154367700006],[139.56249967200017,71.49169327000004],[139.2158965760001,71.41165665500012],[139.04580663800016,71.60241821100016],[138.75860558600004,71.64524453900015],[138.54130558500003,71.57553057400008],[138.42170756100006,71.62168351200017],[138.15969865500017,71.56922118000011],[138.10879569200006,71.4772656670001],[137.9400936300001,71.39728990600008],[138.27459761600016,71.35391422700019],[138.02879361200007,71.29440891700006],[137.8482967030002,71.2082987760001],[138.04550159400003,71.16310673900006],[137.8065945550003,71.11130808600012],[137.6815945620001,71.20877872400007],[137.48260466000033,71.27949315300009],[137.4954987100001,71.34837513000008],[137.1873016620001,71.37684946100018],[137.0740966830001,71.44619697000013],[136.5484926800001,71.55370108100004],[136.43229670300013,71.60176190800013],[135.98680156700016,71.66225846200001],[135.70970154700024,71.6602905580001],[135.26170357400008,71.56163673100008],[134.85079954600008,71.50167410500012],[134.8065037020002,71.38187692700012],[134.52999863000014,71.39125443300009],[134.08830267500002,71.3688993940001],[133.67129561500008,71.41116866100009],[133.20829755600016,71.54936780400004],[133.0066066700001,71.69409896500008],[132.77659567900002,71.76173002700006],[132.73809860400002,71.93060861200001],[132.47250358500003,71.87772668200006],[132.28959654300002,71.74223556400011],[132.21650668300003,71.56438381600009],[131.98019367500012,71.32936095100007],[131.98730454600002,71.24745534000004],[131.80960065500005,71.18862846100018],[131.67869561100008,70.98504929900008],[131.33459468100023,70.78964886400018],[131.05380260100014,70.76869662000013],[130.941894638,70.89539143400009],[130.65789765300008,70.88992810900004],[130.30340567700011,70.94315403300004],[130.26585357800002,70.87340871900017],[130.39259365300006,70.82646335600015],[130.53550761700012,70.6875388430002],[130.85729960900005,70.62894162800012],[131.45329265600026,70.5473790050001],[131.64050263100012,70.49426674000017],[131.87629663200005,70.36219510300003],[132.1976926630001,70.26179348199997],[132.80160560200034,70.27747350800007],[132.950302576,70.38694569000006],[133.30650362200015,70.341579142],[133.8569026350002,70.32521314000019],[134.33889760800002,70.4002065310001],[135.1237025790001,70.28484354800008],[135.78089860600005,70.33350669800018],[136.28509556400002,70.34103666500016],[137.2048035780001,70.2238050200001],[138.00489764400004,70.30543687800008],[139.23500060900005,70.2256513860001],[139.6103975540002,70.18731088400017],[141.72970561600016,70.11732987100004],[142.1284946080001,69.9450113530001],[142.08819559100004,69.72861374700005],[142.50430260200017,69.71636828900012],[142.80859368300003,69.80997855700019],[143.09919761900017,69.98058096500006],[143.44590766800002,70.10085825800007],[144.1524965750001,70.09253335200015],[144.60710166700028,69.97825414900012],[144.16679358700003,69.84321330700004],[143.77699267600008,69.80043307900013],[143.87019357300005,69.66911648400014],[144.36379966000004,69.59386358900008],[145.09410063500002,69.65123956000019],[145.24760463100006,69.4947896610002],[145.56480367500012,69.47878274100009],[145.89549255400016,69.55762091000014],[146.28239466800028,69.5207854630001],[146.4398036240001,69.39341305700003],[146.8666996530003,69.38011315600016],[147.61059557200008,69.62513781100012],[147.96760563900023,69.65670271700003],[148.59849556600022,69.57665805600016],[148.50199857100006,69.67055062700007],[149.0458065580001,69.83814711700012],[149.6938016030001,69.96413148000016],[149.69909661900022,70.17105988300017],[148.88740568700007,70.39947412000015],[148.9183955950001,70.53198916000008],[149.19590766900023,70.62440148600018],[149.69810470400012,70.60294699900004],[150.36239668300027,70.41376509800006],[150.66259756300008,70.25095970400014],[151.97219868900004,70.12532671000008],[152.70230067800014,70.07068944200006],[153.1573025690002,69.99928115900013],[153.46609456500005,69.88390359100003],[153.2451936970001,69.784365138],[153.36129764100008,69.7216936480001],[153.37120069200012,69.5976175080001]]]]},"properties":{"objectid":498,"eco_name":"Northeast Siberian coastal tundra","biome_num":11,"biome_name":"Tundra","realm":"Palearctic","eco_biome_":"PA11","nnh":2,"eco_id":775,"shape_leng":101.254077222,"shape_area":54.5830794736,"nnh_name":"Nature Could Reach Half Protected","color":"#7BF5CC","color_bio":"#9ED7C2","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":223095.03250833682,"percentage":2.6107779141745695}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[1.544713427000033,39.11363408300008],[1.35663156600009,39.072126563000154],[1.232866563000186,38.97159519000019],[1.21540756100012,38.89373837300019],[1.347099498000091,38.87216268400016],[1.495900575000121,38.93008901100012],[1.614719584999989,39.043070025000134],[1.544713427000033,39.11363408300008]]],[[[3.182735457000035,39.95727615900017],[3.016078579000123,39.9259196270001],[2.773461541000131,39.848299683],[2.361061511000059,39.59118530600017],[2.402994496000133,39.51728726200008],[2.491853567000078,39.506229352000105],[2.64957449800005,39.55473978500015],[2.790923560000181,39.35797661900017],[2.96827055000017,39.35173947700014],[3.075545500000032,39.26233172800005],[3.230701568000143,39.349565547000054],[3.300415534000081,39.49823737500009],[3.455619547000026,39.655519262000155],[3.474406577000138,39.739460167000175],[3.340085573000181,39.76448065100004],[3.25263851800014,39.72581929000012],[3.178652464000152,39.75268882200004],[3.085909555000171,39.887693119000176],[3.182735457000035,39.95727615900017]]],[[[4.103564467000069,40.07162493200008],[4.045746435000069,40.050037173000135],[3.834038503000102,40.04814504200016],[3.841991420999989,39.913068828],[3.96752450200006,39.928838541000175],[4.202981551000107,39.81839690800007],[4.319059510000102,39.86342449200009],[4.180763472000024,40.04652817300007],[4.103564467000069,40.07162493200008]]],[[[7.801887469000121,44.05007583200012],[7.714006567000183,44.05419587300008],[7.560219431000178,44.14174267200019],[7.500000485000101,44.04590298500011],[7.295047530000147,44.055026687000066],[7.267436535000058,44.11828977199997],[7.173152529000049,44.11384987800017],[6.929491442000085,44.272899508000194],[6.891857535000099,44.24778330300012],[7.049659435000137,44.11759155900006],[6.928048581000155,44.05417692900011],[6.880774480000127,44.14883057700018],[6.733792443000027,44.16883063600005],[6.777178515000116,44.07233095800018],[6.678411532000155,44.04692088400003],[6.581944544000123,44.133411731000194],[6.497649587000126,44.114551778000134],[6.520177461000173,44.23371846900011],[6.439337525000155,44.31459427900006],[6.379632558000083,44.47995715900004],[6.405092589000162,44.55720109100008],[6.113140508000185,44.61313587800015],[6.044477466000103,44.59532886000011],[5.857574436000107,44.75624799000008],[5.805426425000064,44.553587988],[5.717387440000095,44.626093965000166],[5.578752437999981,44.60911105600019],[5.517454574000055,44.687309016000086],[5.260334497000088,44.86616072500016],[5.193428470000015,44.80100584400003],[5.045093426000108,44.780123674000095],[5.076648442000078,44.88673695600011],[5.154706424000153,44.92133979900012],[5.024713499000086,45.069235966],[4.853586552000024,45.10280180000012],[4.767988545000037,45.3842040830001],[4.880701506000037,45.51824932300002],[4.733163581000042,45.498149351000166],[4.684426502000122,45.43014093600016],[4.746318475000123,45.24481487700018],[4.742618536000123,45.120528687000046],[4.674927459000116,45.03756997400012],[4.682501514000023,44.943785698],[4.529886504,44.90267866500011],[4.515326467000136,44.732210703000135],[4.340212584000085,44.67973294900003],[4.229176507000147,44.54728312000009],[3.983983543000022,44.360008269000105],[3.969202559000053,44.282199397000056],[3.822397547999969,44.205406412000116],[3.714900478000061,44.18516545700004],[3.765136577000021,44.055847946000085],[3.651344530000131,44.084056906000114],[3.604943487000014,43.998062938000146],[3.403357542000094,43.991444084000136],[3.365823547000048,44.01646507100014],[3.447178467000072,44.16398673400016],[3.579808507000109,44.2800065240001],[3.551527462000024,44.395286359000124],[3.606755487000044,44.47117896000003],[3.800829570000133,44.55605997900017],[3.708476420000181,44.58985480700005],[3.578521549000016,44.55828403300018],[3.378966539000032,44.544856056000185],[3.251466560000154,44.56097713800017],[3.195507466000151,44.45068302700014],[3.018343537000135,44.44725717600011],[2.776809441000069,44.49815695300009],[2.508591557000159,44.49787817100014],[2.419214485000055,44.45855313100009],[2.403020480000123,44.39411523900003],[2.581949470000097,44.35408025200019],[2.628515469000149,44.30260027900016],[2.583497440000087,44.23992929200017],[2.607534559000044,44.128715518000035],[2.710126540000147,44.05221589900003],[2.558278473000087,44.023441832000174],[2.447745477000126,43.93733303100004],[2.606712462000132,43.93106102100012],[2.524131438000097,43.81200145100007],[2.626155460000177,43.75126366600017],[2.524878433000026,43.657944920000034],[2.507008550000023,43.54282551500012],[2.688631484000098,43.52914256100007],[2.689624572000014,43.46454474199999],[2.573518449000176,43.38725906800005],[2.317910468000093,43.39270998700016],[2.23833955200007,43.37390401400012],[1.972873446000165,43.39283990700005],[2.180246425000178,43.28188228400006],[2.336185531000069,43.25740746200006],[2.332680555000138,43.21477760500005],[2.169331511000166,43.15575392000005],[2.129896500000029,43.052108502000124],[2.19742044200018,42.97125297500014],[2.168332556000053,42.836098475000085],[2.435290472000133,42.7854519980001],[2.323986509000065,42.691484326000136],[2.33926956900018,42.619323012000166],[2.247714543000143,42.59426816300004],[2.263164570000129,42.53036034200005],[2.531929457000047,42.57739908000002],[2.629541581000126,42.52416158900007],[2.499998430000119,42.42227218000005],[2.605993463000061,42.390835181000114],[2.499997424000071,42.28744993800012],[2.381501453000169,42.293850862000056],[2.185362570999985,42.24920733700009],[1.870388419000051,42.255158153000025],[1.720857446000025,42.17630875100019],[1.445535563000078,42.078153480000026],[1.473405559000128,41.98471034700003],[1.600286451000045,42.02234911500011],[1.738944419000063,42.02022095000018],[1.98346750200011,41.95143838200016],[2.038009551000187,41.826954379000085],[1.966358528000058,41.70762742599999],[1.818881456000099,41.644774049000034],[1.697194495000133,41.52971214400009],[1.510623556000155,41.40850529700009],[1.44189144700016,41.39890315700012],[1.21045050400005,41.44879190900008],[1.078789580000091,41.41001521300012],[0.934653535000052,41.33109791900017],[0.811772487000155,41.29641125600017],[0.539423498000133,41.28091244700005],[0.211420516000032,41.082374329000174],[0.232938537999985,40.922245948000125],[0.296292482000069,40.86719645800008],[0.177868428000181,40.6654128670001],[0.056997528000181,40.62973797900014],[0.086059431000024,40.47818193700016],[0.013429569000039,40.454264177000084],[-0.10597751499995,40.29185189400005],[-0.17532150299985,40.291656931000034],[-0.236433455999872,40.226971773000116],[-0.216070459999969,40.166082611000036],[-0.404658420999965,40.127810170000146],[-0.580550479999886,40.06996095699998],[-0.48429052399996,39.94767150400014],[-0.584853580999948,39.921517618999985],[-0.534087578999959,39.80937512999998],[-0.58354550099989,39.73482111900006],[-0.580529524999861,39.652307317000066],[-0.696342448999872,39.64362433600007],[-0.781946490999928,39.67143398200017],[-0.832078485999887,39.60822085300009],[-0.926834559999918,39.681416996000166],[-1.023463486999901,39.6724250580001],[-0.982472459999883,39.52480599700016],[-0.883984426999916,39.577170428000045],[-0.818047514999819,39.536956068000165],[-0.881300541999963,39.41253778000009],[-0.999998516999881,39.393667098000094],[-1.000003545999959,39.32540387300003],[-1.075845520999962,39.30195533099999],[-1.146510495999962,39.35865940899998],[-1.287762496999903,39.417694494000045],[-1.434269446999906,39.40908158600007],[-1.447983581999893,39.34628051100003],[-1.185515514999963,39.27450862100011],[-1.243318460999944,39.184006195000165],[-1.140488433999963,39.17226130500006],[-1.049471526999866,39.10399808000011],[-0.874831556999936,39.19903578599997],[-0.875251489999869,39.11005920100007],[-0.812081443999944,39.01866041500017],[-0.787809463999906,38.91926613000015],[-0.85719552899991,38.81694270600019],[-0.634112516999892,38.88416054000004],[-0.649976442999957,38.80124206000016],[-0.55980342499987,38.775107454000135],[-0.341189475999954,38.82501464600017],[-0.239740451999921,38.80658183500009],[-0.178870567999866,38.73986792100004],[-0.276678493999896,38.64971652900016],[-0.381196467999928,38.665891088000194],[-0.42027457699993,38.60302228800015],[-0.631185556999924,38.59398123100016],[-0.500000557999954,38.497916910000185],[-0.34362441899998,38.49820675600017],[-0.287413531999846,38.54378402500015],[-0.071383555999944,38.576414606000014],[-0.002876417999971,38.63259263600003],[0.15447151900014,38.68110390700008],[0.195776532000082,38.76811158200019],[0.121916542000065,38.845064159],[-0.067169470999886,38.888127695000094],[-0.151797523999903,38.96084238200012],[-0.227397428999893,39.07777563100018],[-0.256078457999934,39.212051708000104],[-0.336967511999944,39.383195251000075],[-0.326708564999933,39.49476944700007],[-0.20516158099997,39.706917596000096],[-0.081159537999952,39.850782570000035],[-0.006018457999915,39.89514295499998],[0.057873437000069,40.047565014000156],[0.148244435000038,40.090773557000034],[0.200653458000033,40.18660134200019],[0.389042432000053,40.34091536500017],[0.510612550000189,40.53420423100005],[0.594664431000126,40.62183434700006],[0.78163753400014,40.66169364900003],[0.896928433000085,40.717441185000155],[0.701885569000183,40.8021381370001],[0.991142533000186,41.03821175800016],[1.218282554000041,41.105907193],[1.397282455000095,41.12633774700009],[1.538251482000135,41.18683530600015],[2.116150514000083,41.28528344200015],[2.268528485000104,41.43764079300007],[2.344073573000117,41.48703350400007],[2.748580532000176,41.63390205000013],[3.046913421,41.76748796100014],[3.207499455000175,41.897461105000104],[3.236852544000158,41.96180629400004],[3.223955477000175,42.07382053900011],[3.13455057800013,42.134466123000095],[3.134682509000129,42.2336092860001],[3.25952944800008,42.23684436500014],[3.312187581000046,42.318325852000044],[3.174879434000104,42.36211442299998],[3.180805440000142,42.44855883400004],[3.054264518000139,42.59173515100008],[3.050632472000188,42.94424497500012],[3.09291347400017,43.06082132199998],[3.243980515000089,43.21578879800012],[3.357418510000173,43.276515352000104],[3.539242441999988,43.28229450600003],[3.675101526000049,43.39750510600015],[3.802488517000029,43.43938679400014],[3.972998556000164,43.53750837100017],[4.134392437000088,43.53648527600018],[4.182733555000027,43.462198815000136],[4.428556502000163,43.43905487100011],[4.559523572000103,43.44262589700003],[4.608590563000178,43.34264203000009],[4.83842553300002,43.33942304400017],[4.849491489000059,43.403128021999976],[4.964725559000158,43.42161380700014],[5.034814531000052,43.332545357000186],[5.258016566000094,43.33159116100012],[5.342732461000082,43.34966505900019],[5.347624475000032,43.21667376000016],[5.698131526000054,43.176506003000156],[5.865710581000144,43.05527837000005],[5.945281497000167,43.10730333400011],[6.032539456,43.076648367000075],[6.191276442000117,43.11558113400008],[6.644976456000052,43.16490092300006],[6.704877559000124,43.20713766800003],[6.632557493000036,43.27913955800011],[6.749698445000149,43.41571278000015],[6.924738568000123,43.439222844000085],[6.993484423000041,43.54280238100017],[7.051126436000118,43.54108241400007],[6.987840552000137,43.70851294200003],[7.151919492000104,43.74989054200006],[7.145458554000015,43.91529114100007],[7.319744472000025,43.91074814900003],[7.397967578000078,43.96341013800003],[7.59823957600014,43.93339621900009],[7.801887469000121,44.05007583200012]]]]},"properties":{"objectid":503,"eco_name":"Northeast Spain and Southern France Mediterranean forests","biome_num":12,"biome_name":"Mediterranean Forests, Woodlands & Scrub","realm":"Palearctic","eco_biome_":"PA12","nnh":3,"eco_id":799,"shape_leng":60.0531729282,"shape_area":9.9848557944,"nnh_name":"Nature Could Recover","color":"#D49E54","color_bio":"#FE0000","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":90901.84329538507,"percentage":2.751771297221449}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[36.36083333300019,-3.82666666699987],[36.455,-4.02583333299998],[36.5750000000001,-4.025833333999913],[36.65916666600003,-3.976666666999961],[36.605833333000135,-3.891666665999878],[36.49000000000012,-3.874166665999951],[36.41583333300002,-3.91583333299991],[36.36083333300019,-3.82666666699987]]],[[[37.17083333400018,-3.648333332999925],[37.06416666700005,-3.71],[37.12416666700011,-3.819166666999877],[37.18833333400005,-3.776666666999972],[37.17083333400018,-3.648333332999925]]],[[[39.80666666700017,-3.615833332999898],[39.80666666700017,-3.61],[39.805,-3.611666666999952],[39.80666666700017,-3.615833332999898]]],[[[36.94333333300017,-3.608333332999905],[36.815,-3.735],[36.88000000000011,-3.793333332999907],[36.94333333300017,-3.608333332999905]]],[[[37.345,-3.426666666999836],[37.356666667000184,-3.615],[37.43833333400016,-3.704166666999811],[37.48416666700018,-3.583333332999871],[37.41250000000019,-3.534166665999919],[37.345,-3.426666666999836]]],[[[37.56083333300006,-3.306666666999945],[37.62000000000012,-3.391666666999924],[37.67083333300013,-3.325],[37.61500000000018,-3.285],[37.56083333300006,-3.306666666999945]]],[[[37.482500000000186,-2.9],[37.43250000000012,-2.8575],[37.316666666,-2.880833332999941],[37.47833333300014,-2.920833332999905],[37.538333333000026,-2.983333332999962],[37.482500000000186,-2.9]]],[[[37.28833333300008,-2.7175],[37.3250000000001,-2.8175],[37.40083333400014,-2.741666666999834],[37.28833333300008,-2.7175]]],[[[34.51916666600005,2.108333333000132],[34.476666666000085,2.000833333000116],[34.537500000000136,2.000833333000116],[34.51916666600005,2.108333333000132]]],[[[38.0925,2.590833332999978],[37.980833333000135,2.531666666000092],[38.00000000000017,2.443333333000055],[37.86750000000018,2.3525],[37.811666667,2.2525],[37.71333333300015,2.196666667000045],[37.8425,2.14],[37.779166666000094,2.063333334000163],[37.79583333300019,1.910833334000074],[37.88833333400015,1.998333333000062],[37.9875,1.963333333000151],[38.15583333300009,1.974166667000134],[38.15500000000014,2.024166666000099],[38.270833333000155,2.006666667000161],[38.275,2.056666667000059],[38.2275,2.194166666000058],[38.27250000000015,2.245000000000175],[38.34750000000014,2.260833334000154],[38.34416666700014,2.376666667000165],[38.316666667000106,2.464166667000086],[38.21916666600015,2.5775],[38.0925,2.590833332999978]],[[38.0025,2.312500000000114],[38.035833334000074,2.264166667000154],[37.96083333299998,2.220833333000144],[37.91666666700013,2.2725],[38.0025,2.312500000000114]]],[[[36.98666666700018,2.902500000000146],[36.910833334000074,2.884166667000159],[36.84833333400013,2.76083333400004],[36.89166666700004,2.539166666000142],[36.99250000000012,2.536666666999963],[37.0325,2.615833333000126],[36.98666666700018,2.902500000000146]]],[[[37.800833333000185,3.809166667000113],[37.75250000000011,3.71],[37.74833333300006,3.621666667000113],[37.610000000000184,3.55166666700012],[37.575,3.495833333],[37.61166666700012,3.296666667000181],[37.71,3.1675],[37.77000000000015,3.189166667000165],[37.871666666000124,3.344166666000035],[37.885833333000164,3.460833333000096],[37.85583333300008,3.536666667000134],[37.98333333300002,3.596666667000022],[37.92666666700012,3.726666667000075],[37.85666666700007,3.719166666000092],[37.800833333000185,3.809166667000113]],[[37.82333333300005,3.481666666000024],[37.83666666600004,3.42],[37.725,3.310000000000173],[37.68333333400011,3.35333333300008],[37.745,3.446666667000159],[37.82333333300005,3.481666666000024]]],[[[33.90666666700008,4.056666667000172],[33.87083333300012,4.101666667000075],[33.80120129500017,4.037500000000136],[33.615,3.8525],[33.77833333300009,3.894166667000093],[33.82000000000011,3.95666666600016],[33.93333333400017,3.975833333000139],[33.90666666700008,4.056666667000172]]],[[[36.05250000000018,-1.745833332999894],[36.0191666660001,-2.114999999999895],[36.00250000000011,-2.145],[36.108333334000065,-2.191666665999946],[36.12416666700011,-2.307499999999891],[36.084166667000034,-2.443333332999941],[36.011666667000156,-2.586666666999918],[35.92916666700006,-2.574999999999875],[35.92166666700018,-2.665833332999966],[36.00333333300006,-2.81166666699994],[36.047500000000184,-2.83083333299993],[36.03833333300014,-3.045833332999962],[35.88000000000011,-3.335],[35.89583333300004,-3.442499999999825],[35.90166666700003,-3.476666666999961],[35.9475,-3.610833333999892],[36.054166666000015,-3.749166666999884],[36.15666666700014,-3.706666665999876],[36.24000000000018,-3.71],[36.32083333300011,-3.813333332999946],[36.36416666700012,-3.791666666999959],[36.365,-3.604166666999959],[36.44416666600017,-3.65083333299998],[36.5750000000001,-3.64666666699992],[36.60166666700019,-3.59],[36.595,-3.434166666999886],[36.639166666999984,-3.305],[36.630000000000166,-3.251666665999949],[36.630833333000055,-3.249999999999829],[36.64583333300004,-3.18666666699994],[36.73750000000018,-3.13],[36.86083333300007,-3.263333332999935],[36.965,-3.26749999999987],[36.977500000000134,-3.340833332999978],[37.01083333300011,-3.259166666999931],[37.115,-3.214166666999972],[37.05416666700012,-3.145833332999928],[37.09500000000014,-2.991666666999947],[37.14416666700009,-2.888333332999878],[37.22583333300014,-2.8625],[37.30833333300018,-2.877499999999884],[37.215833334000024,-2.76749999999987],[37.150833334000026,-2.734166666999954],[37.182500000000175,-2.6675],[37.298333333000016,-2.7075],[37.350833333000026,-2.6675],[37.36666666600007,-2.589999999999861],[37.53083333300009,-2.644166666999979],[37.58250000000015,-2.614166666999949],[37.63666666600017,-2.724166666999963],[37.74083333400006,-2.79],[37.73083333300019,-2.84],[37.81083333400011,-2.874166665999951],[37.779166666000094,-2.960833332999925],[37.80666666700006,-3.05],[37.76666666600005,-3.1075],[37.745,-3.255833333999931],[37.698333333000164,-3.3875],[37.755000000000166,-3.501666666999938],[37.725,-3.546666666999897],[37.7675,-3.7],[37.7016666670001,-3.765833333999979],[37.67750000000012,-3.930833333999942],[37.70666666700009,-3.909166666999965],[37.80250000000018,-4.02583333299998],[37.80166666700006,-4.078333333999979],[37.95750000000015,-4.141666666999924],[37.9533333330001,-4.181666666999945],[38.05750000000012,-4.230833332999964],[38.03250000000014,-4.291666666999959],[38.05750000000012,-4.445833332999939],[38.086666665999985,-4.485],[38.105,-4.465833332999978],[38.11583333300018,-4.47],[38.15500000000014,-4.576666666999927],[38.099166667000134,-4.665],[38.211666667000145,-4.822499999999877],[38.31833333300017,-4.935833333999938],[38.303333334000115,-4.823333332999937],[38.20833333300004,-4.70166666699987],[38.24166666700006,-4.524166666999918],[38.27,-4.485],[38.30000000000018,-4.464166666999972],[38.374166667000054,-4.511666666999872],[38.35,-4.61],[38.44416666600017,-4.634999999999877],[38.49583333300018,-4.6975],[38.476666667000075,-4.752499999999884],[38.57083333300017,-4.820833332999939],[38.58,-4.886666665999883],[38.5816666660001,-4.91],[38.54416666600008,-4.961666666999974],[38.57583333300016,-5.051666666999949],[38.65,-4.961666666999974],[38.62000000000012,-4.8725],[38.7016666670001,-4.8625],[38.6875,-4.965],[38.76000000000016,-5.055833332999896],[38.83583333400003,-5.005833333999931],[38.87833333300006,-4.909166666999909],[38.7616666670001,-4.8475],[38.87083333400011,-4.765],[38.93333333300012,-4.6775],[39.01583333400009,-4.474166666999963],[39.028333334000024,-4.342499999999859],[39.08666666700009,-4.21],[39.165,-4.181666666999945],[39.28416666700008,-4.185833332999891],[39.361666666000076,-4.150833333999969],[39.38000000000011,-4.04],[39.433333333,-3.895833332999928],[39.42666666700018,-3.68666666699994],[39.47083333300003,-3.6],[39.47583333400013,-3.524166666999974],[39.561666667000054,-3.396666666999977],[39.6875,-3.278333333999967],[39.58666666600004,-3.255833332999941],[39.62000000000012,-3.184999999999889],[39.575,-3.128333332999944],[39.484166667000125,-3.100833332999855],[39.483333333000076,-3.04833333299996],[39.6625,-3.024166666999974],[39.705,-2.895833333999974],[39.788333334000185,-2.989166666999949],[39.910833333000085,-2.85],[39.8908333330001,-2.774166665999928],[40.15666666600015,-2.638333332999935],[40.14333333300016,-2.595],[40.05333333300018,-2.535833332999914],[40.1375,-2.45],[40.064166667,-2.326666666999927],[40.08083333400015,-2.26416666699987],[39.99833333400005,-2.069166666999877],[40.115833333000126,-1.904166666999913],[40.056666667000115,-1.770833332999928],[40.0575,-1.676666666999893],[40.01166666700004,-1.61083333299996],[39.978333333000194,-1.354166666999959],[39.880833334000044,-1.181666666999888],[39.99083333300007,-1.242499999999893],[40.030833333000146,-1.471666666999965],[40.09333333300009,-1.6725],[40.108333333000076,-1.859166666999954],[40.32,-1.755833332999941],[40.4516666670001,-1.797499999999843],[40.65333333400014,-1.741666665999958],[40.69833333400004,-1.656666666999968],[40.705,-1.5775],[40.81666666600006,-1.384166666999874],[40.915833334000126,-1.420833333999951],[40.93,-1.5775],[41.050000000000125,-1.53],[40.935,-1.409166666999909],[40.8175,-1.3475],[40.86416666700012,-1.2975],[40.97833333300014,-1.300833332999957],[41.01916666700009,-1.266666665999878],[41.12666666700011,-1.385],[41.17250000000013,-1.4625],[41.29802030600007,-1.352124554999932],[41.37701841100005,-1.21506760099993],[41.27137034200001,-1.013289307999912],[41.30277922800019,-0.940001908999932],[41.53786997500015,-0.902882316999978],[41.552146741000115,-0.826739564999912],[41.47410042000001,-0.683020119999981],[41.48457004900007,-0.608780936999949],[41.55500209400003,-0.51455428099996],[41.567375292000065,-0.383208032999903],[41.60163953000006,-0.315631340999914],[41.698721539000076,-0.222356468999976],[41.71395008900009,-0.112901262999912],[41.774864291000085,-0.02724066699983],[41.858621319000065,0.034625319000156],[41.98806399700004,0.041287810000142],[42.13654236399998,0.261150007000026],[42.187938722000126,0.282089264000149],[42.004742858999975,0.339886059000037],[41.598232834999976,0.429195080000113],[41.391898201000174,0.459991294000019],[41.14552849000012,0.453832051000177],[40.98833333300013,0.464166667000086],[40.780833332999975,0.359166667000181],[40.5825,0.315],[40.51083333300011,0.255833333000112],[40.384166666000056,0.198333334000097],[40.29583333400018,0.225],[40.1375,0.3475],[39.80583333300012,0.508333333000166],[39.66583333400018,0.637500000000102],[39.59,0.755833333],[39.5158333330001,0.930833333000123],[39.375000000000114,1.114166667000177],[39.369166666000126,1.173333333000187],[39.051666666000074,1.27916666700014],[38.9075,1.310833333000119],[38.5741666670001,1.679166667000118],[38.5125000000001,1.7125],[38.38083333300011,1.692500000000109],[38.330833333000044,1.71666666700014],[38.203333333000046,1.697500000000105],[38.080000000000155,1.77],[37.929166667000175,1.785833333000085],[37.87333333400005,1.82333333400004],[37.829166667000095,1.748333333000119],[37.773333334000085,1.758333334000156],[37.56583333300006,1.711666667000145],[37.30270210600008,1.828830274999973],[37.10916666600008,1.939166667000052],[37.04,1.954166666999981],[36.97083333299997,1.808333333000121],[36.98916666600019,1.723333333000141],[36.98666666700018,1.473333334000131],[36.92500000000018,1.363333333000128],[36.8725,1.474166667000077],[36.78000000000014,1.568333333000169],[36.73083333300019,1.692500000000109],[36.67750000000012,1.745833333000178],[36.688333334000106,1.930000000000177],[36.774166666000156,1.983333333000076],[36.773333334000085,2.225],[36.7775,2.292500000000132],[36.71083333400014,2.505000000000109],[36.641666667000095,2.394166667000036],[36.55333333300018,2.39333333400009],[36.517500000000155,2.550833334000174],[36.43833333400016,2.649166667000145],[36.44250000000011,2.701666666000051],[36.3925,2.8325],[36.33583333400014,2.866666667000118],[36.37916666700005,2.6425],[36.30333333300007,2.663333333000082],[36.23166666700013,2.839166667000086],[36.15916666600015,2.958333333000098],[36.14166666699998,2.975833332999969],[36.19083333300006,2.85],[36.11416666700018,2.836666666000099],[35.96333333300015,2.870000000000118],[35.93583333300012,2.956666667000093],[35.86333333400012,2.958333333000098],[35.868333334000056,2.834166666000158],[35.736666667000065,2.939166666000119],[35.71916666600009,2.98250000000013],[35.54000000000019,2.987500000000125],[35.5875,3.0875],[35.67083333300019,3.084166666000101],[35.756666666000115,3.133333333000053],[35.88416666700016,3.1425],[35.82333333399998,3.301666667000177],[35.765,3.523333334000142],[35.8025,3.648333333000096],[35.790000000000134,3.761666667000156],[35.73166666700007,3.8241666670001],[35.73750000000018,3.920833333000076],[35.835,4.189166667000109],[35.81666666700005,4.303333333000182],[35.8366666660001,4.385833333000107],[35.83083333400009,4.605000000000189],[35.784491373000094,4.659448388000044],[35.529307879000044,4.781292759000053],[35.50861732600009,4.923827683000013],[35.577585838000175,5.084754211000131],[35.62356484600008,5.119238467000173],[35.736213415000066,5.13303216900016],[35.83,5.11833333400017],[35.83250000000015,5.12],[35.864166667,5.175833333000185],[35.82916666600005,5.233333333000132],[35.86166666700012,5.315000000000111],[35.67916666700012,5.383333333000166],[35.545833334,5.417500000000132],[35.470833333000144,5.406666667000025],[35.35083333400013,5.335],[35.294166666000024,5.3675],[35.30333333400017,5.503333333000057],[35.138333333000105,5.6125],[35.13000000000011,5.691666667000106],[35.015251602000035,5.872454954000148],[34.809379487,5.866905631000066],[34.57337299600016,5.725652961000151],[34.51014569000006,5.706026234000092],[34.35622060800006,5.739460973000064],[34.21828046600007,5.81155539800011],[34.07645045000015,5.906632667000167],[33.78030112100015,5.759158278000143],[33.57157211900011,5.626520024000115],[33.412892130000046,5.456877680000048],[33.34178207500008,5.302473971000097],[33.15344305800005,5.036352568000041],[33.23827110200017,4.809928194000122],[33.34925202800008,4.788591724000071],[33.42916207500019,4.693478916000061],[33.65202011600013,4.707934680999983],[33.781312147000165,4.675091200000111],[33.86414010200008,4.520425472000056],[34.01822010200016,4.35698087500009],[34.05703995400012,4.274166666000042],[34.00250000000011,4.221666667000136],[34.065,4.146666667000147],[34.03166666700014,4.086666667000088],[34.03833333400007,3.995833333000121],[34.09333333300003,3.979166667000072],[34.08333333300004,3.898333333000039],[34.09,3.865833334000115],[34.0925,3.865833333000069],[34.175833334,3.863333333000128],[34.18000000000018,3.865000000000123],[34.19833333400004,3.866666667000061],[34.11666666700012,3.84],[34.11166666600019,3.785833333000085],[34.21416666600004,3.774166667000031],[34.24833333300006,3.7275],[34.25000000000017,3.725833333000026],[34.25083333400005,3.724166666000031],[34.361666667000065,3.690000000000168],[34.40583333300009,3.6325],[34.36583333300001,3.500833333000173],[34.365833334000115,3.5],[34.364166666000074,3.496666667000056],[34.36333333300013,3.491666666000128],[34.36333333300013,3.489166667000177],[34.36416666700018,3.486666667000065],[34.364166666000074,3.485000000000127],[34.3425,3.448333334000154],[34.20583333400015,3.408333333000144],[34.12166666600018,3.331666667000093],[34.10500000000019,3.224166667000077],[34.14083333400009,3.15166666600004],[34.0875,2.83083333400009],[34.25250000000011,2.755833333000169],[34.3375,2.65],[34.364166666000074,2.51],[34.27416666700003,2.421666665999965],[34.399166666000156,2.40166666600004],[34.425000000000125,2.469166667000025],[34.54750000000013,2.351666666000142],[34.705,2.290833332999966],[34.745833333,2.189166666000062],[34.870000000000175,2.023333333000153],[34.860000000000184,1.896666666000158],[34.8250000000001,1.879166667000163],[34.831666667000036,1.757500000000164],[34.8125,1.730000000000132],[34.74500000000012,1.684166666000181],[34.77166666699998,1.634166666000112],[34.719166667000025,1.574166666999986],[34.7225,1.5575],[34.7975,1.541666666000083],[34.86083333300013,1.469166666000149],[34.91166666700019,1.379166667000106],[34.98916666600019,1.4675],[35.049166666000076,1.476666666000028],[35.06,1.38666666600011],[35.040000000000134,1.25416666700005],[35.057500000000175,1.250000000000171],[35.100833334000185,1.308333333000064],[35.300833333000185,1.250833333000116],[35.375,1.308333333000064],[35.3908333330001,1.458333334000145],[35.44083333300017,1.41583333300008],[35.45250000000016,1.315833333000114],[35.530833333000146,1.358333334],[35.61416666700006,1.209166667000147],[35.598333333000085,1.001666667000165],[35.51583333400009,0.542500000000132],[35.604166666000026,0.374166666000065],[35.60333333300008,0.2175],[35.72000000000014,0.220833334000133],[35.77666666600004,0.170000000000186],[35.73916666700012,0.086666667000031],[35.84083333400008,-0.015],[35.85666666700013,-0.083333332999871],[35.7925,-0.1075],[35.800833334000174,-0.204166665999878],[35.88000000000011,-0.269166666999979],[35.985,-0.16],[36.10416666600008,-0.16083333399996],[36.1725,0.000833333000173],[36.26416666600005,0.069166666000058],[36.29083333300014,0.140833334000092],[36.191666666000174,0.326666667000154],[36.2675,0.401666666000096],[36.285,0.485000000000184],[36.42750000000018,0.234166666000021],[36.50416666700016,0.189166667000052],[36.53,0.095833334000019],[36.60750000000013,-0.006666666999877],[36.61083333300013,-0.096666666999965],[36.80916666700011,-0.066666666999936],[36.87833333400005,-0.295833333999894],[36.98833333300007,-0.341666665999981],[37.04,-0.320833332999939],[36.99666666700017,-0.11083333299996],[37.06416666700005,-0.024166665999928],[37.07416666700004,0.22],[37.16000000000014,0.195833333000053],[37.215,0.311666667],[37.1425,0.398333333000039],[37.131666667,0.475833333000139],[37.04,0.493333334000113],[37.00000000000017,0.545],[36.86666666700012,0.583333333000155],[36.90833333300003,0.665000000000134],[36.95833333400003,0.674166667000122],[37.009166667000045,0.5825],[37.11,0.533333334000019],[37.1675,0.438333334000049],[37.285,0.4025],[37.275,0.258333333],[37.330833333000044,0.194166666000115],[37.44083333300017,0.1400000000001],[37.58083333400009,0.164166667000075],[37.60916666700007,0.145833333000041],[37.75416666700005,0.176666667000177],[37.80083333400012,0.265833333000103],[37.85833333300013,0.29],[37.9325,0.41583333300008],[38.00833333400004,0.458333333000098],[38.03250000000014,0.358333333000132],[37.990833333000126,0.274166666000099],[38.00083333300006,0.208333334000031],[37.916666666000026,0.083333334000145],[37.78583333300003,0.038333333000026],[37.79666666700007,-0.03],[37.708333333000155,-0.130833332999941],[37.715833333000035,-0.366666665999958],[37.60833333300019,-0.470833332999916],[37.59416666700008,-0.51416666699987],[37.348333333000085,-0.550833333999947],[37.250000000000114,-0.639166666999927],[37.17416666700018,-0.65],[37.16166666600003,-0.839166666999915],[37.11083333400012,-0.890833332999932],[37.12333333300006,-0.9825],[37.06333333400016,-1.008333332999939],[36.974166667000134,-1.091666666999856],[36.870833333000064,-1.214166666999915],[36.882500000000164,-1.26416666599988],[36.965,-1.161666666999963],[37.228333333000194,-1.111666666999895],[37.24666666600018,-1.327499999999873],[37.153333333000035,-1.404166666999913],[37.135833333000164,-1.479166666999845],[37.22500000000019,-1.507499999999879],[37.298333333000016,-1.7575],[37.29083333400007,-1.901666666999915],[37.25083333300006,-1.975833333999901],[37.12833333300006,-1.965833332999921],[37.11666666700006,-1.834166666999977],[37.01833333400009,-1.807499999999891],[36.868333334000056,-1.8275],[36.79500000000013,-1.781666666999911],[36.74833333300006,-1.9],[36.666666667000186,-1.911666666999963],[36.62833333300017,-1.734166666999954],[36.64083333400015,-1.707499999999868],[36.64083333400015,-1.625833332999889],[36.48500000000013,-1.45833333399986],[36.4725,-1.399166665999928],[36.44583333300017,-1.373333333999881],[36.365,-1.44],[36.3125,-1.385833332999937],[36.196666667000045,-1.52583333299998],[36.05083333400012,-1.431666665999956],[36.075,-1.534166666999965],[36.075,-1.684166666999886],[36.05250000000018,-1.745833332999894]],[[36.9533333330001,-3.035],[37.05666666600007,-3.064999999999884],[37.020833334000145,-3.204166666999924],[36.924166667000065,-3.169166666999899],[36.94000000000011,-3.039166665999915],[36.9533333330001,-3.035]],[[36.268888398000115,-3.077162264999913],[36.15337174600012,-3.185356559999889],[36.12239373200009,-3.074140710999927],[36.268888398000115,-3.077162264999913]],[[36.23416666700007,-3.648333332999925],[36.101666667000075,-3.679166666999947],[36.100000000000136,-3.621666665999896],[36.23416666700007,-3.648333332999925]],[[37.818333333000055,-3.82],[37.885,-3.805],[37.9275,-3.869166666999945],[38.03250000000014,-3.843333333999965],[37.895,-4.001666666999824],[37.83166666700015,-3.928333332999955],[37.818333333000055,-3.82]],[[38.724166667000134,-4.401666666999972],[38.78,-4.525833333999969],[38.675833334,-4.554999999999893],[38.724166667000134,-4.401666666999972]],[[38.63750000000016,-4.685],[38.652500000000146,-4.689166666999824],[38.66916666600014,-4.706666666999979],[38.684166667000056,-4.724166666999906],[38.62333333300012,-4.778333332999921],[38.565,-4.724166666999906],[38.63750000000016,-4.685]],[[37.475000000000136,-1.724166665999974],[37.425,-1.699999999999875],[37.41666666600014,-1.605833333999954],[37.482500000000186,-1.584166666999863],[37.475000000000136,-1.724166665999974]],[[37.30083333300013,-1.52583333299998],[37.24916666700017,-1.431666666999945],[37.33166666700009,-1.430833333999942],[37.30083333300013,-1.52583333299998]],[[38.21083333300015,-0.784166666999965],[38.182500000000175,-0.791666666999845],[38.156666666000035,-0.9675],[38.17083333300002,-1.1675],[38.1408333330001,-1.191666666999879],[38.150833333000094,-1.307499999999891],[38.197500000000105,-1.441666666999936],[38.116666667,-1.4075],[38.10083333400013,-1.317499999999882],[38.06666666700016,-1.225833333999958],[38.090833333000035,-1.125833332999946],[38.0825,-1],[38.125,-0.9675],[38.04250000000013,-0.781666666999968],[38.06666666700016,-0.7],[38.13250000000011,-0.71],[38.23083333300008,-0.684166666999829],[38.21083333300015,-0.784166666999965]],[[38.2925,-0.89],[38.33250000000015,-1.06],[38.29083333400001,-1.155833332999919],[38.24083333400017,-1.1075],[38.25833333400004,-0.965833332999921],[38.2925,-0.89]],[[38.26666666700004,-1.441666665999946],[38.2125,-1.415833332999966],[38.22,-1.289166666999904],[38.30833333300018,-1.2575],[38.358333333000076,-1.284166666999852],[38.48166666700007,-1.290833333999899],[38.510833333000164,-1.239999999999895],[38.616666666000185,-1.244166666999945],[38.5225,-1.395833333999917],[38.40083333300004,-1.475833332999912],[38.32333333300011,-1.481666666999899],[38.26666666700004,-1.441666665999946]],[[35.846666667000136,0.700833334000038],[35.808333334000054,0.539166666000028],[35.8241666670001,0.430000000000121],[35.7641666670001,0.418333334000067],[35.70583333400003,0.543333333000078],[35.79083333300008,0.685833333000176],[35.846666667000136,0.700833334000038]],[[36.902500000000146,0.876666666],[36.889166667000154,0.959166666000101],[36.825833334000095,1.038333333000139],[36.68666666700017,1.074166666],[36.6175,1.116666667000118],[36.60416666700007,1.2675],[36.709166667000034,1.294166666000024],[36.75,1.23],[36.874166666000065,1.1775],[36.930833333000066,1.0825],[36.95083333300005,0.919166666000024],[36.902500000000146,0.876666666]],[[37.20916666700009,1.324166667000043],[37.3325,1.3475],[37.35,1.200000000000102],[37.235833334000176,1.217500000000143],[37.20916666700009,1.324166667000043]],[[37.25916666700016,1.585],[37.208333334000145,1.622500000000116],[37.196666667000045,1.698333333000051],[37.24333333300018,1.746666667000056],[37.3075,1.641666667000095],[37.25916666700016,1.585]],[[35.41333333299997,1.545000000000186],[35.36,1.62166666700017],[35.30250000000012,1.64666666700009],[35.357500000000186,1.734166667000181],[35.419166667000184,1.752500000000168],[35.4625,1.677500000000123],[35.41333333299997,1.545000000000186]],[[36.471666667000136,2.285],[36.58666666700003,2.210833332999982],[36.55500000000012,2.151666666999972],[36.49916666700017,1.815833333000057],[36.50833333300011,1.762500000000102],[36.46666666700014,1.650000000000148],[36.34,1.650000000000148],[36.28083333300003,1.69166666600006],[36.313333333,1.819166667000161],[36.47416666700019,1.91916666700007],[36.39666666700015,2.051666666000131],[36.386666667000156,2.141666666000106],[36.471666667000136,2.285]],[[35.229166666000026,1.86083333300013],[35.17833333300018,1.924166667000065],[35.106666666000024,1.951666666],[35.13750000000016,2.115833334000115],[35.10333333400007,2.230000000000189],[34.983333333000076,2.335833334000142],[34.98083333300019,2.445833333000166],[35.19000000000011,2.445833333000166],[35.2475,2.255833333000055],[35.287500000000136,2.175000000000125],[35.309166667000056,2.034166667000022],[35.229166666000026,1.86083333300013]],[[34.746666667000056,2.465],[34.6991666670001,2.570833334000156],[34.80083333300007,2.55166666700012],[34.746666667000056,2.465]],[[35.6475,3.27916666700014],[35.7625000000001,3.160833334000188],[35.665,3.141666666000106],[35.6475,3.27916666700014]],[[34.9320466960001,4.750948615000084],[35.051019746000065,4.736671849000061],[35.26279177600003,4.736671849000061],[35.40080051400014,4.636734487000183],[35.41833333400007,4.539166667000188],[35.36583333300018,4.4575],[35.36666666700006,4.36833333300001],[35.41666666700007,4.293333333000021],[35.420833333000076,4.181666667000059],[35.34083333400014,4.144166667000036],[35.32416666700004,4.021666666000158],[35.3425,3.9475],[35.31916666700005,3.8],[35.25583333400016,3.805833334000113],[35.23000000000019,3.940000000000111],[35.131666666000115,4.080000000000155],[35.110833334000176,4.255000000000109],[35.04500000000013,4.416666667000015],[34.995833334000054,4.386666666],[34.8925,4.427500000000123],[34.780833333000146,4.3275],[34.756666666000115,4.4],[34.83,4.535833334000188],[34.803555802000176,4.705738856000153],[34.86542178800005,4.755707536999978],[34.9320466960001,4.750948615000084]],[[34.675,4.158333332999973],[34.79000000000019,4.105833334000124],[34.629166666000174,4.060000000000173],[34.675,4.158333332999973]]]]},"properties":{"objectid":505,"eco_name":"Northern Acacia-Commiphora bushlands and thickets","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Afrotropic","eco_biome_":"AF07","nnh":3,"eco_id":51,"shape_leng":222.604467038,"shape_area":29.6675167432,"nnh_name":"Nature Could Recover","color":"#DBDB00","color_bio":"#FEAA01","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":367261.97512979596,"percentage":1.7130542709224637}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-79.59235363599998,-3.478661607999925],[-79.55561860399985,-3.533843531999935],[-79.44226861899995,-3.569260760999896],[-79.37933360099998,-3.684861455999965],[-79.29631051499996,-3.730730917999949],[-79.42426261399993,-3.496553282999969],[-79.48365057699988,-3.513878173999899],[-79.59235363599998,-3.478661607999925]]],[[[-78.78675852699996,-3.149317185999962],[-78.95208754399994,-3.214966095999955],[-78.97397654899999,-3.372805378999942],[-78.85810059299996,-3.36386021199985],[-78.83496855199996,-3.28667093099989],[-78.77609255599992,-3.258266001999971],[-78.78675852699996,-3.149317185999962]]],[[[-78.56164558599994,-2.64459987999993],[-78.63089754099997,-2.779790757999933],[-78.59901462499994,-2.849195430999828],[-78.70350661499998,-2.922887950999893],[-78.70657355299994,-3.013710229999958],[-78.76254253799993,-3.095255083999973],[-78.69752461799993,-3.156299478999927],[-78.64362361699995,-3.075562640999976],[-78.55571756899997,-2.826897053999971],[-78.60409556699994,-2.794089614999905],[-78.56164558599994,-2.64459987999993]]],[[[-78.99256157499991,-2.524355611999965],[-79.18286849599991,-2.588743714999907],[-79.34795359999998,-2.799944205999907],[-79.32417263199994,-2.917445412999882],[-79.3897786259999,-3.112874849999969],[-79.33013954099988,-3.162596299999905],[-79.26332856399995,-3.091640471999938],[-79.17093652199998,-3.079676310999901],[-79.14484365699991,-2.965335919999973],[-78.95882458299997,-2.707692141999928],[-78.94274155499994,-2.592008633999967],[-78.99256157499991,-2.524355611999965]]],[[[-78.66852557999988,-1.973420826999927],[-78.77607763599985,-2.17418567999988],[-78.70106463099995,-2.264094164999904],[-78.83043662499989,-2.313833551999892],[-78.92181361899992,-2.373719902999937],[-78.9577946149999,-2.436714096999935],[-78.88724564399996,-2.505510075999894],[-78.74987060999996,-2.510061616999906],[-78.67734552199994,-2.443118708999975],[-78.58100157999996,-2.44508962999987],[-78.52674853799988,-2.385619020999968],[-78.45101955099989,-2.527946250999889],[-78.39330260399993,-2.552620729999887],[-78.35329460699995,-2.408401368999876],[-78.51079559699997,-2.363664804999928],[-78.47171765499996,-2.249403202999929],[-78.60010561299993,-2.136079536999887],[-78.66395559899996,-2.027231638999922],[-78.66852557999988,-1.973420826999927]]],[[[-78.43663754699998,-1.542542890999812],[-78.46646153199998,-1.54600461699988],[-78.54700457999996,-1.740240135999954],[-78.5282364929999,-1.784275804999879],[-78.61581464099987,-1.990961467999966],[-78.56277462799989,-2.081817609999916],[-78.48535149099996,-2.127679193999938],[-78.35595653199994,-2.047892359999935],[-78.43072562299994,-2.016004582999926],[-78.36805765299988,-1.871891503999962],[-78.40075663099992,-1.799986676999879],[-78.3798146129999,-1.720466722999902],[-78.39830760599995,-1.603895404999946],[-78.43663754699998,-1.542542890999812]]],[[[-78.92272959299993,-0.697013210999955],[-78.98162050999997,-0.832391172999905],[-78.96199763599998,-1.091038599999933],[-78.89033554899999,-1.105462513999953],[-78.94645658199988,-1.269212380999932],[-79.00429556899991,-1.344279867999944],[-79.06694057299995,-1.360758521999912],[-78.9881205079999,-1.500737980999929],[-78.90444949999994,-1.59988784899997],[-78.95265952499994,-1.727816981999922],[-78.86017662299997,-1.978634369999952],[-78.89652256699998,-2.057928347999962],[-78.76378658099992,-2.049828243999968],[-78.72920251299996,-1.905347870999947],[-78.7442096399999,-1.798024808999912],[-78.80972259499998,-1.612904776999926],[-78.72206163399994,-1.518753875999948],[-78.63175165599989,-1.565304283999978],[-78.5467836329999,-1.50216491599997],[-78.71685764599994,-1.326192222999907],[-78.70221764599995,-1.211696598999936],[-78.63330063199999,-1.158307731999969],[-78.71583555599994,-1.089388035999946],[-78.76133755599989,-0.959151700999882],[-78.70858755699993,-0.84637788699996],[-78.80140657399994,-0.719015705999936],[-78.85646058999998,-0.835868824999977],[-78.94606749399986,-0.821532919999811],[-78.92272959299993,-0.697013210999955]]],[[[-78.65614349799989,-0.484923231999915],[-78.76338961399995,-0.629079225999931],[-78.71874256799987,-0.72663988599993],[-78.64224965499989,-0.661303787999941],[-78.68000761399998,-0.594765725999935],[-78.63916058799998,-0.556152812999869],[-78.65614349799989,-0.484923231999915]]],[[[-78.63092050699998,-0.277554779999832],[-78.66162861499998,-0.368303800999968],[-78.60310365299995,-0.406955774999972],[-78.58145856099992,-0.303268781999975],[-78.63092050699998,-0.277554779999832]]],[[[-78.58622752899998,-0.098791080999945],[-78.63812257299998,-0.154076940999857],[-78.61995664199992,-0.214995271999953],[-78.5394285129999,-0.218345182999826],[-78.51468664399994,-0.157306487999904],[-78.58622752899998,-0.098791080999945]]],[[[-78.0570905539999,0.312506058999986],[-78.0378954919999,0.15404617900009],[-78.07755262299997,0.016190358000131],[-78.06207258899991,-0.064525692999894],[-78.12300164899989,-0.099566909999851],[-78.20990756799995,-0.099213025999973],[-78.2780985419999,-0.315792853999881],[-78.32414251499995,-0.374272218999977],[-78.32570657799994,-0.448092981999935],[-78.44817355999993,-0.551039013999969],[-78.52474962199989,-0.546046584999829],[-78.56700849499998,-0.62022408099989],[-78.50334961699991,-0.643511186999945],[-78.47824849899996,-0.772911511999951],[-78.51418255599998,-0.86455069099992],[-78.52438349999989,-0.983787622999898],[-78.4557955599999,-1.018043119999959],[-78.46897157599994,-1.183225788999948],[-78.41387950599983,-1.235654928999907],[-78.25807149299993,-1.253334541999891],[-78.326354499,-1.09023980499984],[-78.28688059699994,-1.056959457999938],[-78.33934762299992,-0.920079458999908],[-78.20461255199996,-0.942754853999929],[-78.15646354799992,-0.910044308999886],[-78.25082349299993,-0.838352717999953],[-78.12870050499998,-0.795005034999917],[-78.17005161899993,-0.738046314999906],[-78.13108850899994,-0.664113737999912],[-78.07254762099996,-0.678145545999882],[-78.03816253999997,-0.589298210999914],[-77.9679106239999,-0.550134103999881],[-78.10890161199995,-0.449328641999898],[-77.9550246209999,-0.320345568999812],[-78.03498060199996,-0.204566172999876],[-77.96311952799988,-0.123700252999924],[-77.91474957699995,-0.18364862999988],[-77.86566163099997,-0.143018695999899],[-77.92111160899992,-0.035248877999948],[-77.91285660799991,0.015790542000047],[-77.97339657999999,0.113393278000103],[-77.9412845029999,0.174466674000087],[-78.0570905539999,0.312506058999986]]],[[[-78.24755052799992,0.591394273000105],[-78.39078551899996,0.550679514000137],[-78.3996735209999,0.492058830000133],[-78.32215851899991,0.39937476200015],[-78.25856753399995,0.474553057999969],[-78.28503456699997,0.537357317000158],[-78.24755052799992,0.591394273000105]]],[[[-77.95687853099997,0.857484328000055],[-78.04302253499986,0.751108253000041],[-78.04675264899993,0.673116321000123],[-77.95619959699997,0.70210312100005],[-77.87683856399997,0.636470975000123],[-77.78383665399997,0.677158074000147],[-77.87086461399997,0.823097905000168],[-77.95687853099997,0.857484328000055]]],[[[-77.10646052399989,1.011700953000172],[-77.19724257099989,1.009975957000051],[-77.25984164099998,0.892999793000058],[-77.14938357999989,0.909323382000025],[-77.10646052399989,1.011700953000172]]],[[[-77.30863152599983,1.017326551000053],[-77.40872150899992,0.990344367000034],[-77.3904115759999,0.849707933000104],[-77.30863152599983,1.017326551000053]]],[[[-77.36513561199996,1.244001376000142],[-77.43637860399997,1.236483983000142],[-77.46885663499995,1.180881119000162],[-77.3996655329999,1.140418320000038],[-77.3375856369999,1.197971987000074],[-77.36513561199996,1.244001376000142]]],[[[-76.27777058999999,2.740311743000177],[-76.31986249699997,2.712633860000096],[-76.28081556799998,2.600099266000086],[-76.28263863199999,2.486350638000147],[-76.37269564399998,2.43820146500002],[-76.44216955099989,2.328294430000085],[-76.42533164899999,2.256211739000094],[-76.36559265199998,2.254745912000089],[-76.32854463999996,2.39784427800015],[-76.23976150899989,2.427429211000117],[-76.20403264099997,2.560569205000093],[-76.27777058999999,2.740311743000177]]],[[[-76.06025651499988,3.422660018000101],[-76.11318152799993,3.375086514000088],[-76.09190356399995,3.253529640000124],[-76.16660358799999,3.088230965000037],[-76.15515156099997,3.003058256000088],[-76.08877560499991,2.988922344],[-76.06687151299991,2.872514808000176],[-76.01779949299998,2.883382113000096],[-75.97526552499994,3.030664054000169],[-76.00892657799989,3.160084663000134],[-75.98622151099994,3.348869598000135],[-76.06025651499988,3.422660018000101]]],[[[-75.76607551799992,4.093323081000165],[-76.00828552999997,3.736781562000033],[-75.99773355199989,3.63304126100013],[-75.91474164599998,3.733447074000026],[-75.81431554999995,3.730132199000082],[-75.76358055999992,3.759923829000172],[-75.80979954799994,3.848391296999978],[-75.8634415489999,3.847453530000109],[-75.76607551799992,4.093323081000165]]],[[[-74.17729951599995,4.481650620000096],[-74.23181960499988,4.477143671000135],[-74.26110060999991,4.36671595200005],[-74.23480959699992,4.280535402999988],[-74.33341950299996,4.158910300000059],[-74.31533856499988,4.007748543000105],[-74.38037157199989,3.92157386100007],[-74.49497263999996,3.819344650000176],[-74.55409959099995,3.661553143000049],[-74.55189548599992,3.541670302000171],[-74.4424816419999,3.697834714000066],[-74.40325953199988,3.683639626000058],[-74.29695151899989,3.768909230000133],[-74.23800662299993,3.686117316000093],[-74.16049161999996,3.834827534000112],[-74.06955752599998,3.924132855999972],[-74.06968660799998,4.061367577999988],[-74.15027659499987,4.07377380000014],[-74.20777158899995,4.144700292000039],[-74.12052150899996,4.222697757],[-74.11154164099997,4.338269952000076],[-74.2156825969999,4.346077360000038],[-74.17729951599995,4.481650620000096]]],[[[-73.80851756799996,4.746393032000185],[-73.81694758399988,4.599357687000065],[-73.77727553299997,4.50397179600003],[-73.70863361299996,4.592076328000019],[-73.73021651099987,4.680431813000098],[-73.80851756799996,4.746393032000185]]],[[[-75.32507358399994,5.003066857000135],[-75.41199459099988,4.968975645000114],[-75.4247665989999,4.838899069000092],[-75.53145565399996,4.785928961000138],[-75.44032257299995,4.646586191000154],[-75.39417265299994,4.618039272999965],[-75.27375051999985,4.643477678000067],[-75.25801064699994,4.688568126000177],[-75.29279353399994,4.817812547000131],[-75.25830853999997,4.952265650000129],[-75.32507358399994,5.003066857000135]]],[[[-73.93390664899988,5.241134533000093],[-73.98712150799997,5.304599957000164],[-74.03594257399999,5.208814920000179],[-73.94873054799996,5.191099264000059],[-73.93390664899988,5.241134533000093]]],[[[-73.07470658799997,5.617265900000177],[-73.18559262899993,5.542543245000161],[-73.23532849499998,5.453559787000074],[-73.10674255699996,5.463837174000162],[-72.97442650399995,5.348177471000156],[-72.90554050299988,5.453954910000164],[-72.99548352099987,5.456886565000161],[-73.07731654499992,5.548034900000061],[-73.07470658799997,5.617265900000177]]],[[[-72.71665951199992,6.290579489000038],[-72.79265554499995,6.224955390000162],[-72.85721564599999,6.23814029100015],[-72.99288161099997,6.069056852000074],[-72.93961360999998,6.022433186000114],[-72.81911453199996,6.029638605000059],[-72.75528751199994,6.11160557200003],[-72.71665951199992,6.290579489000038]]],[[[-72.9426036019999,7.454214968000144],[-72.95443750899994,7.349475544000086],[-72.91515353999995,7.317284845000188],[-72.92609359999989,7.193177860000048],[-72.97418258999994,7.100880533000122],[-72.82224248999995,7.015773538000133],[-72.78159361299993,6.920297626000036],[-72.6640095919999,6.883135285000151],[-72.63034853999994,6.697659860000101],[-72.55205552899997,6.717219367000098],[-72.42684162999996,6.366647943000146],[-72.47807349899989,6.395183797000072],[-72.51348150799998,6.298005855000042],[-72.56659662199996,6.299513760000025],[-72.63007361299992,6.235983460000114],[-72.57245657899989,6.132429907000017],[-72.64160962699998,6.051084040000148],[-72.66848753999994,5.949888317000159],[-72.72665358999996,5.981567049000034],[-72.76406051499998,5.884771323],[-72.81697848699997,5.840667425],[-72.77343751799992,5.759055348000118],[-72.87977553799993,5.757122481000181],[-72.99013553099996,5.541512271000101],[-72.95697756099986,5.485871521000149],[-72.78972657299988,5.43693813800013],[-72.82286057199997,5.563768906000178],[-72.76082660899993,5.580357363000189],[-72.69365655199994,5.716366650000168],[-72.66818260699995,5.845172195000089],[-72.61939255399983,5.850381547000154],[-72.57504256299995,5.934153641000137],[-72.43745462799995,6.070232665000105],[-72.41804448799996,6.187302204000105],[-72.36874364199991,6.283604907000097],[-72.20922060199996,6.294585200000085],[-72.23610656199997,6.406858111000076],[-72.15698960999998,6.44358727600013],[-72.0971376249999,6.410442884000076],[-72.0799485199999,6.516603878000183],[-72.14801057999989,6.601424715000178],[-72.22680650499984,6.552267368000116],[-72.34284255499995,6.763422932000026],[-72.4461285569999,6.667634877000125],[-72.48090356499995,6.709705996000082],[-72.44190256899998,6.781443688000138],[-72.5082396329999,6.919354829000099],[-72.62442756299987,6.907449677000045],[-72.62771561599988,7.03839595900007],[-72.57317356699997,7.120583034999981],[-72.62113950999986,7.149678129],[-72.66001159199999,7.056171797],[-72.76287061999994,7.078363221000075],[-72.81185949099995,7.323046565000141],[-72.9426036019999,7.454214968000144]]],[[[-72.37042957799997,7.438137137000069],[-72.45253752799994,7.46377821700014],[-72.4293214999999,7.353859279000176],[-72.36431162699995,7.350737522999964],[-72.23088061299995,7.411733136000066],[-72.31230158199992,7.483612817000107],[-72.37042957799997,7.438137137000069]]]]},"properties":{"objectid":507,"eco_name":"Northern Andean páramo","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Neotropic","eco_biome_":"NO10","nnh":1,"eco_id":593,"shape_leng":125.905244163,"shape_area":2.4272230418,"nnh_name":"Half Protected","color":"#BF9B77","color_bio":"#D6C39D","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":30009.57799202435,"percentage":0.6145342457476688}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[29.42610149700016,7.696167321000132],[29.175714602000085,7.555316646000108],[29.01021744500008,7.482915778000063],[28.9067805680001,7.41568755000003],[28.803291557000023,7.317518700000107],[28.495298524000077,7.150572814000043],[27.84957547800002,7.027586825000128],[27.111608581999974,6.996840160000147],[26.465887548000126,6.81236134400018],[25.72791847300016,6.781614678999972],[24.959203571000103,6.81236134400018],[24.467224578000128,6.72012202000019],[23.483268605000035,6.589450664000026],[23.091617473000042,6.625990899999977],[22.827573441000027,6.602695580000045],[22.633424591,6.618225570000163],[22.097570527000073,6.633756398000173],[21.71703547499999,6.618225570000163],[21.196712574000173,6.657052892000024],[20.948200544000088,6.688114381000162],[19.98521659500011,6.680349051000121],[19.38723351700014,6.625990899999977],[19.084360486000037,6.618225570000163],[18.657230434999974,6.532805930000109],[18.47861056900001,6.486213109000118],[18.191268535000177,6.439620624000042],[18.020416513999976,6.377497143000085],[17.872863502000143,6.416324298000177],[17.407802489000176,6.227065282000126],[17.001308515000062,6.19011399700014],[16.653938475000132,6.212285305000137],[16.39525953200001,6.345310467000047],[16.24005149500016,6.581799327000112],[16.09962444200005,6.847850824999966],[15.900073455999973,7.158242423000047],[15.744865587000106,7.232145831000082],[15.545312588000172,7.209974523000085],[15.419668530000138,7.143462445000182],[15.168380582000168,7.054778725000062],[14.857965514000114,6.980875149000155],[14.747102440000049,6.995656300000064],[14.754493434000153,7.069559708000099],[14.894919481000159,7.269097283000178],[14.998391562000052,7.468635865000067],[14.998391562000052,7.646003139000129],[14.739711445000182,7.675563932000045],[14.954045594000092,7.985956536],[14.924482454000099,8.11159154100011],[14.739711445000182,8.11159154100011],[14.554941442000029,8.037688972000069],[14.488423496000166,8.16332364200008],[14.118881478,8.458936436000158],[13.99323758800017,8.525448682000103],[13.904547497000124,8.518058525000129],[13.764121449000186,8.673255330000131],[13.59413242900007,8.887573889],[13.416751577000127,8.99103876100014],[13.246763563000115,9.020599386000015],[13.150682477000032,8.99103876100014],[12.921565499999986,8.954087308000112],[12.83421450200018,8.924971259000074],[12.855784492,8.792490753000095],[12.736438428000042,8.61680136800004],[12.617094544000054,8.537244031],[12.554106553000167,8.547188321000021],[12.502189548000047,8.622050786000102],[12.408993513000041,8.486562518000142],[12.269004498000129,8.444426523000175],[12.312101562000123,8.348294642999974],[12.237273462000132,8.317370617000165],[12.261374452000098,8.203396012000098],[12.195096564000039,8.094948602000045],[12.237273462000132,7.992525936],[12.134843588000024,7.847930395000162],[12.014337469000111,7.709358592000058],[12.014337469000111,7.629392218000021],[12.00934353100007,7.423506189000136],[12.095008593000045,7.342605904000152],[12.171155501000044,7.490130250000107],[12.175915584,7.580548857],[12.247303583000019,7.647172917000091],[12.318691582000042,7.54247758200006],[12.32820956800009,7.447301574000107],[12.418634546000078,7.404471558000182],[12.551892557000144,7.428264931000058],[12.589965508000034,7.471095786000149],[12.589965508000034,7.566271960999984],[12.537614488000145,7.675726038000164],[12.556651466000176,7.74710884000018],[12.632799548000094,7.832767532000105],[12.670872498999984,7.77566179300004],[12.751778484000056,7.77566179300004],[12.837444552000079,7.889874444000043],[12.927868524000132,7.904150502000164],[13.004015432000188,7.813732062000042],[12.970702564000078,7.599584494],[12.918350538000084,7.580548857],[12.827925560000153,7.342605904000152],[12.756538567,7.304534629000045],[12.708946456000149,7.347364644999971],[12.609003493000046,7.361641708999969],[12.628039464999972,7.271223102000135],[12.490022545000102,7.18080483000017],[12.417913534000093,7.037181085999975],[12.294719506000092,6.996120154000039],[12.137305521000087,7.078243192],[12.051753447000067,7.006385471000044],[11.993579518000047,7.119304124000166],[11.94224958100017,7.033759426000017],[11.791678580999985,6.941371072000152],[11.784834590000116,6.859248034000188],[11.719815496000138,6.766859680000152],[11.863541499000121,6.691580131000023],[11.843008518000033,6.629987895000056],[11.675329551,6.592347450000034],[11.644530583000062,6.537598367000044],[11.558979514000043,6.486271280000096],[11.381032548000178,6.434944863000112],[11.162021464000077,6.482850457000097],[11.062782581000135,6.424679546000164],[10.982436507000102,6.422325740000076],[10.905701524,6.326247840000121],[10.896250593000048,6.253794166000091],[10.962409458000138,6.231742720000057],[10.978160562000085,6.06163518000011],[10.877347557000121,6.036433982000176],[10.741882591000149,6.112037575000159],[10.622167556000136,6.008082194000053],[10.590663502000098,6.058485596000082],[10.442594500000155,6.039583901000128],[10.389889428000117,5.969788128000062],[10.445929492000062,5.901645938000115],[10.385889584000097,5.781271917000083],[10.470949473000132,5.771821489000104],[10.245300591999978,5.554680408000081],[10.111430534000021,5.52551054700001],[10.073956554,5.433858124000039],[10.272370452000132,5.471328416000063],[10.382109513000046,5.408438158000138],[10.402370585000085,5.508861907999972],[10.488630427000032,5.494039015],[10.473420458000021,5.38764768600015],[10.505450560000043,5.259389144000124],[10.62656956300009,5.016606983000088],[10.710000513000125,4.926168763000135],[10.789669497000034,4.880636923000111],[10.855669441000032,4.711798571000145],[10.829279522000093,4.601581573000033],[10.846128488000147,4.540132332000098],[11.1648404660001,4.212863270000128],[11.292160570000078,4.269700117000184],[11.473779480000076,4.394302975000073],[11.576270542000032,4.606263369000146],[11.519120547,4.685480401],[11.371470473000102,4.659060307000175],[11.30930055600004,4.693005003000167],[11.272939525000027,4.770177186000069],[11.268950577000055,4.874849554000036],[11.202850553000133,4.915956419000167],[11.146690461,4.81722983700007],[11.09148054100018,4.774539799000138],[11.046759567000095,4.886760407000111],[11.057169555000087,5.351049279000051],[11.05521958899999,5.599841935000143],[11.164449534000084,5.652606183000103],[11.231829475000097,5.80336426700012],[11.248029514000166,5.89060780900013],[11.221329464000064,6.066232989000127],[11.331080428000178,6.113106435000134],[11.506030529000157,6.122372965000125],[11.580369460999975,6.160995098000171],[11.66646049100018,6.122617884000078],[11.771129507000069,5.817535048000138],[11.863869566,5.649560534999978],[11.876970481000171,5.56426679100008],[11.678540490000046,5.61965356900015],[11.681050535000168,5.418130321000149],[11.539059586000178,5.341664230000106],[11.55329943400011,5.217578032000119],[11.63619947400008,5.051225585000054],[11.65589946100016,4.952954811000041],[11.709620587000074,4.916361265000091],[11.801469482000186,4.976843905000067],[11.825559575000057,5.045620941000152],[11.78913953500006,5.176503354000147],[11.803999476000058,5.221950033000098],[11.929320495000127,5.22833955700014],[11.975020476000111,5.169556600000021],[11.994250573000045,5.034581807000166],[11.96370054800019,4.821794287000046],[11.874230437000108,4.660164203000022],[11.692520499000068,4.566058230000067],[11.63395949400018,4.45504042500005],[11.591910503000122,4.321191489],[11.628609493000113,4.223146524000128],[11.854869582,4.235109679000061],[11.949729592000097,4.371306721000053],[12.045269542000142,4.375674363000087],[12.031800494000038,4.267965231000176],[12.13815058400013,4.336015220000036],[12.254619476000073,4.50559486800006],[12.410619435000115,4.841859892],[12.48075953600005,4.896909718000131],[12.612680466000086,4.942173504000152],[12.853110496999989,4.924742666000157],[12.938839429000097,4.948279888000059],[12.977149588000088,5.003901862000021],[12.962280595000038,5.070779056000106],[12.894459431000143,5.073184662000017],[12.67115949600003,5.029934879999985],[12.457839557,5.044072971000162],[12.406149533000075,5.155308706000085],[12.432749503000082,5.34759275000016],[12.479940456000179,5.388883513],[12.672069435000083,5.401279678000094],[12.902029463000133,5.503622045000157],[13.027070527000092,5.617410907000021],[12.991220457000168,5.885198129000173],[13.065010542000152,5.907451412000114],[13.161100512000075,5.721601316000033],[13.36217952000004,5.672517729000049],[13.478090512,5.615699993000021],[13.42691044300011,5.502136101000133],[13.485959443000127,5.443149631000097],[13.5938395660001,5.566189600000087],[13.674010458000168,5.576081922000185],[13.630209482,5.459026297000094],[13.61268946000007,5.324103304000118],[13.793180502000155,5.156992630000161],[13.733699499000181,5.097385061000182],[13.618740523999975,5.110208031000127],[13.683970506000037,4.8999025600001],[13.598850434999974,4.685974430000158],[13.630709546,4.475045010000088],[13.711299534000148,4.437186636000092],[13.854399576000162,4.493140533000144],[13.918979457000148,4.456207521000124],[13.805569458000093,4.312686037000049],[13.874380524000117,4.237889453000037],[14.04603955400006,4.190236992000109],[14.107330545000082,4.204552110000122],[14.167010533999985,4.330152582000096],[14.17463052200003,4.399956569000153],[14.253729537000027,4.37659838400009],[14.465720441000087,4.358631439000021],[14.546339430000046,4.217772886000091],[14.651599538000028,4.16648368500006],[14.749930494000068,4.175022329000058],[14.849599537000074,4.282652169000187],[14.940250489999983,4.3240832460001],[14.912449561000017,4.173270344000173],[15.005330436000065,4.122928131000094],[15.061920520000058,4.127230562000022],[15.10414050200012,4.207246724000129],[15.371259519000148,4.2224065690001],[15.58176950900014,4.371309571000097],[15.657259443000157,4.468624472000158],[15.725959533000093,4.501079201000096],[15.912159488999976,4.484443303000148],[15.940380518999973,4.363527141000077],[16.02345054400007,4.298149134000141],[16.230239472000164,4.292560584000114],[16.44621043899997,4.198796424000136],[16.544570564000026,4.18979409300016],[16.76481043500013,4.135120111999981],[17.086240496000187,3.970701369000096],[17.206729516000053,3.921242944000142],[17.281480502000022,3.921743846000027],[17.48648056400009,4.070319786000141],[17.603860569,4.122555974000136],[17.712930587000074,4.13545522000004],[17.80258945800017,4.104053593],[17.967630473000042,3.936811994000152],[18.00201957800016,3.848882477000132],[18.05201947400002,3.828566755000168],[18.132589513000028,3.88834145900006],[18.290309438000065,4.121480073000043],[18.415599445000055,4.252300459000082],[18.610439466000173,4.412065737000034],[18.856391495000082,4.522670481000091],[19.105785469000182,4.891700365000133],[19.437984600000107,5.138061096000115],[19.573326520000023,5.15649876800012],[19.84228553200012,5.097490002000029],[19.959716498999967,5.024512291000121],[20.01362253000019,4.950769816000161],[20.268388465000044,4.845098492000091],[20.47071050900007,4.595659926000053],[20.509023518000106,4.42092708500013],[20.638454520000153,4.379639171000065],[20.865612478000173,4.410232782000151],[20.989225601000157,4.467426531000115],[21.161083450000092,4.408486832000108],[21.252687594000065,4.418611165000186],[21.385934541000097,4.386120561000041],[21.444065554000133,4.506258715000172],[21.495367496000085,4.730813924000074],[21.549867468000173,4.906658039000149],[21.667264571999965,5.104387470000177],[21.7797054560001,5.250253876000102],[21.94778457600006,5.40738807300005],[22.07029950200007,5.469731496000065],[22.161958463000076,5.471294553000178],[22.388483587000167,5.432489359000044],[22.47649943800019,5.457954587000074],[22.68036257900002,5.565245797000046],[22.77047558100014,5.581108549000021],[22.90803149700008,5.567481586000042],[23.03304657800004,5.615639978000161],[23.149997596000105,5.758167369000091],[23.19060557000006,5.780348735000075],[23.322784496000054,5.745561322000071],[23.503351477000137,5.77883999200003],[23.677410582000107,5.730547657000159],[23.826185507000105,5.627168951000044],[23.958526539000047,5.644447909000121],[24.037652543000036,5.480297891000134],[24.04037448200006,5.38888569300002],[24.001718486000186,5.305591703000175],[23.88883051100015,5.160256375000074],[23.659177595000074,4.933941134000065],[23.583864519000088,4.88109289900018],[23.406515517000116,4.831577644000163],[23.30549849700003,4.740546487000017],[23.128822562000096,4.688328069000079],[23.050895505000085,4.640490871000111],[23.00972359700006,4.510440279000136],[23.024896518,4.328392885000085],[23.140945476000013,4.261303797000039],[23.27747947100005,4.239779405000093],[23.415620444000012,4.242043357000171],[23.5959644670001,4.208788659000049],[23.698547562000158,4.117417532000047],[23.82792458500012,4.070891934999963],[23.920009514000185,4.073260828000116],[24.053468524000095,4.037774365000189],[24.374511509000115,4.016878950000148],[24.601058594000108,3.975066162000189],[24.73870855500013,3.975969898000187],[24.964305467000145,4.022617369000045],[25.005208484000093,4.045047677000184],[25.04287960700009,4.222339682000154],[25.11817156100011,4.265819296000188],[25.24714658800019,4.220531873000027],[25.308811579000064,4.150756049000108],[25.392614517000084,4.146362423000028],[25.37965358100007,3.964955910000128],[25.40700758600019,3.736404544000095],[25.436204605000057,3.649147256000049],[25.54348156599997,3.499955246000127],[25.707834594000076,3.417753419000121],[25.841098473000102,3.449653937000051],[26.096708466000166,3.55481832300012],[26.24833156300008,3.657458416000111],[26.383157493000112,3.652150827000128],[26.44939648900015,3.482671427000071],[26.45375457600005,3.29848329500004],[26.505798483000035,3.223474817000181],[26.673086518000048,3.147367639000095],[26.893573487000083,3.081111544000123],[26.984634484000026,3.069849116000114],[27.064115545000163,3.110480057000132],[27.1604725630001,3.319012588000135],[27.217651560000093,3.681006702000161],[27.26297955100017,3.687231439000129],[27.39371846500012,3.55880173900016],[27.54827858100009,3.458604301000037],[27.776750486000083,3.436261835000096],[27.862142466000137,3.40248561500016],[27.904697556000087,3.323830505999979],[27.876865446000124,3.188610291000145],[27.809301607000123,2.969662575000143],[27.83567459500017,2.883495269000036],[27.970968571000185,2.871235059000071],[28.057596546000127,2.90034792300014],[28.236272570000096,3.043240262000154],[28.30692447000007,3.212188585000035],[28.283662510000056,3.394793207000021],[28.35111654600007,3.513624286999971],[28.470371582000155,3.581476127999963],[28.539775585000143,3.701339355000187],[28.62165655299998,3.664801969000109],[28.69969944800016,3.55080842100017],[28.750156493000077,3.326462088000142],[28.72325846300015,3.144440679000184],[28.734806546000073,3.053337605000081],[28.699663573000123,2.919994434000103],[28.783346483000173,2.823726432000171],[28.85936749500013,2.936474094000062],[28.945600515000137,2.967432821000045],[29.045808514000157,3.117060857000183],[29.180370582000023,3.147441400000048],[29.31805960300005,3.154080873000055],[29.369401610000068,3.088561883000068],[29.212200524000025,2.993959030000042],[29.150403602000154,2.87465487500009],[29.238922534000153,2.858015121000165],[29.294580551000024,2.92937965100009],[29.37486258700011,2.974367337000047],[29.46585049300006,2.983874762000028],[29.640960521000068,2.929101874000082],[29.737520548000077,2.774094333000107],[29.947729460000176,2.471471920999988],[30.010251584000173,2.348290131000113],[30.11326249200016,2.195533298000157],[30.14347657100012,2.108486898000137],[30.149055566000186,1.925022628000136],[30.099960580000186,1.796015247000014],[30.037778592999985,1.729593191000106],[29.880220606000023,1.634072352000146],[29.877553484000146,1.578748606000147],[30.05411559300012,1.543635975000029],[30.058002449000185,1.454935826000053],[29.960651505000044,1.299013316000128],[29.84826057700019,1.153203404000067],[29.91227755800014,0.733197700000062],[29.860112246000142,0.607951195999988],[29.979988412000125,0.646320715000115],[30.147189458000128,0.787881273000096],[30.159522476000063,0.820808974000045],[30.17333333300013,0.918333334000181],[30.15836149000006,1.118066969000154],[30.24023256800018,1.291034917000161],[30.355983465000122,1.466225746000021],[30.46650556400016,1.601756594999983],[30.39283953200004,1.723974634],[30.302564591000134,1.821186438000041],[30.316451560000132,1.890623297000047],[30.302564591000134,2.036440250000112],[30.32537661100008,2.09346686300006],[30.308885551,2.25336122200008],[30.416093446000104,2.297809616000166],[30.562522445000127,2.439000093000175],[30.609590519000108,2.577575919000139],[30.784784533000106,2.663858560000108],[30.87,2.800833333000071],[30.875833333000173,2.89416666700015],[30.768333333000157,3.033333334000019],[30.829166667000038,3.255833333000055],[30.935833333,3.401666665999983],[30.93333333300012,3.484166667000181],[30.874166666,3.54],[30.98000000000019,3.700833333000105],[31.07788460000006,3.745758078000051],[30.973926537000068,3.913904420000108],[31.25597556800011,4.138261817000171],[31.479839605000052,4.409233827000037],[31.669931447000067,4.789387670000053],[31.591329479000137,4.789467633000186],[31.561889553000185,4.859552581000116],[31.579980550000187,5.065863237000087],[31.64357958100004,5.414999512000179],[31.643459552000138,5.507591714000057],[31.603719608000063,5.720678301000135],[31.509849501000076,5.884256171],[31.309949491999987,6.056592627000043],[31.274139487000127,6.320156375000124],[31.203029600000036,6.490819971000121],[30.976350583999988,6.750458977],[30.81174056600014,6.906437478000043],[30.682449542000143,6.92671330200011],[30.45756358300008,6.861232030000053],[30.228450462000183,6.854664474],[30.07442460900006,6.92335450600018],[29.81780660800007,7.130359351000095],[29.592176503000076,7.357152026000051],[29.51561552900006,7.46206143500001],[29.439439451000112,7.624516465000113],[29.42610149700016,7.696167321000132]],[[14.681030579000037,7.320764676000067],[14.66425956400019,7.272329178000177],[14.55922057100014,7.30143902400016],[14.475299448000158,7.250629604000096],[14.502070576000108,7.125179838000122],[14.437439564000044,7.036491088000105],[14.334759574000032,7.161802217000059],[14.292670518000136,7.147497996000027],[14.268739513000071,7.008940275000043],[14.192879434000076,7.008853104000025],[14.164580452,7.067545872000096],[14.172470506000025,7.194720801000074],[14.294099464000055,7.293133732000058],[14.429140474000121,7.337470312000107],[14.518750563000083,7.424215969000045],[14.593009531000064,7.45884144300004],[14.644639540000071,7.423896115000048],[14.681030579000037,7.320764676000067]],[[14.273859515000083,7.465570099999979],[14.279840506000141,7.403959423000174],[14.146349478000047,7.343539815000042],[13.98954049800011,7.413466010000093],[14.028530597000042,7.462308366000116],[14.221269443000097,7.480664902000171],[14.273859515000083,7.465570099999979]],[[13.220449583000118,8.384757766000064],[13.326534471000116,8.427851980000014],[13.435933562000173,8.348294642999974],[13.402782464000097,8.2422173],[13.120996458000036,8.348294642999974],[13.13388447200009,8.470365664000099],[13.220449583000118,8.384757766000064]],[[10.83639357800007,6.014382703000081],[10.871047551,5.957679799000175],[10.937205578000032,5.963980308000032],[11.00966444800008,5.860024927000097],[10.842694590000065,5.756070720000082],[10.76393454000015,5.740319783000075],[10.694625588000122,5.626913974],[10.609565532000147,5.718268336000108],[10.707227444000068,5.856875175000084],[10.67572456400012,5.970280817000059],[10.726129474000118,6.055334671000026],[10.83639357800007,6.014382703000081]]]},"properties":{"objectid":511,"eco_name":"Northern Congolian Forest-Savanna","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Afrotropic","eco_biome_":"AF07","nnh":3,"eco_id":52,"shape_leng":90.492054891,"shape_area":57.3826633606,"nnh_name":"Nature Could Recover","color":"#ADFC62","color_bio":"#FEAA01","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":707658.064558108,"percentage":3.3007954864250824}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-108.64530864199992,48.03306332900013],[-108.71287665299997,47.92531414900009],[-108.56708149699989,47.87915596700009],[-108.39997229199992,47.96698871100017],[-108.64530864199992,48.03306332900013]]],[[[-109.1071461389999,48.252535277000106],[-109.24707389499997,48.204775178000034],[-109.11421373299999,48.14893888600005],[-109.1071461389999,48.252535277000106]]],[[[-108.56868839099997,52.43896906400005],[-108.528838684,52.51892406000019],[-108.56635155899988,52.57831474800008],[-108.82244877299996,52.53005338100007],[-108.88487889999988,52.587740515000064],[-109.03502695699996,52.60633774200005],[-109.074226566,52.657803612000066],[-109.26734031499996,52.621714115000145],[-109.29593669399992,52.53163375500014],[-109.44535724999997,52.492365708000136],[-109.75206642799998,52.53386140600014],[-109.83329616399993,52.43458739600004],[-109.78251698999998,52.2821964580001],[-109.89832478499994,52.3121887640001],[-109.97650015699992,52.16963020500003],[-109.97914817999992,52.17011449000006],[-109.979148222,52.17011449800003],[-109.97911074699994,52.169174357000145],[-110.05564021799984,52.094732773000146],[-110.16394196899995,52.11452188100009],[-110.30613801399994,52.077677971000185],[-110.49079119299995,52.10783742400008],[-110.5123673039999,52.121976523000114],[-110.61364091699988,52.17607644300011],[-110.79591395699998,52.198530514000026],[-110.72608266799989,52.34771092600005],[-110.79560808199989,52.36724009900007],[-111.07718729199996,52.337678648000065],[-111.19664083499993,52.25293894200013],[-111.30151309499996,52.24862103300018],[-111.63854127899992,52.3455698570001],[-111.81867259199998,52.43562117700003],[-111.98351154599993,52.4147096640001],[-112.2693328549999,52.29133639800017],[-112.54340199899997,52.124064194000084],[-112.58071218499998,51.934437164000144],[-112.90334410299994,51.78847666900015],[-113.05818696299997,51.808238111000094],[-113.21520854699992,51.77603173700004],[-113.22519917799991,51.72234261400018],[-113.16254969099987,51.57894137300019],[-113.23453444699987,51.49514020000004],[-113.11216652899998,51.4049951180001],[-113.1180492929999,51.26963684000009],[-113.258841997,51.184021373000064],[-113.23963803499998,51.083376226000155],[-113.39330202599996,50.92083286000002],[-113.37027761299993,50.80163225000001],[-113.28887140799986,50.74409810800012],[-113.40379354899989,50.69306151100017],[-113.50758438399998,50.570520128000055],[-113.55143825,50.240674434000084],[-113.72412016199996,50.15384882400019],[-113.72068764699992,49.98783281100009],[-113.62560266699995,49.811255447],[-113.66329155899996,49.69500498800011],[-113.78314958899989,49.58215758100005],[-113.71697966099998,49.552406351000116],[-113.44213068499988,49.68173777599998],[-113.3752365599999,49.66434968600015],[-113.37113965299994,49.554252382000186],[-113.44042966199993,49.38664047000009],[-113.36678357799997,49.37486842200008],[-113.2608485589999,49.44032890600016],[-113.20334652399998,49.57554677400009],[-113.00283061299996,49.451888221000104],[-112.81358366799998,49.37748525200004],[-112.65706654499996,49.383260383000106],[-112.46090654199992,49.315861500000096],[-112.43129763599995,49.228260553000155],[-112.58215362099997,49.169180876000155],[-112.7277065429999,49.000474120000035],[-112.57067109399998,48.9414025960001],[-112.43513083499994,48.97310440500007],[-112.23188915999998,48.761382676000096],[-112.38644428299989,48.75010754200014],[-112.46834330999991,48.8035186890001],[-112.57162361899992,48.77536309400011],[-112.56108374899998,48.69064084900009],[-112.66947097099995,48.66884063400016],[-112.69410344899995,48.60295418100003],[-112.46901335599995,48.60454363400004],[-112.38209014399996,48.55293377200019],[-112.49292143499986,48.42116767800019],[-112.4456416839999,48.34690595500007],[-112.04405249699988,48.18103159400016],[-112.14570832899989,48.15426383100004],[-112.14061226399986,48.09373590900003],[-112.00673240599997,48.05851735700014],[-112.08467595799988,47.94638122600014],[-112.24574296199995,47.950508937000166],[-112.18171637899997,47.86091554300009],[-112.20256022099994,47.81431365500015],[-112.05103710199995,47.62854897200009],[-111.94362824199993,47.67338101100006],[-111.82500214599992,47.67682325200019],[-111.73959412499994,47.58583585300016],[-112.05854853699998,47.58219496100003],[-112.04000684,47.53104107900003],[-111.85134162999987,47.50759586800007],[-111.72272725699997,47.43374222800003],[-111.83661364599993,47.40564779300013],[-111.70268008799991,47.297788437],[-111.7986572609999,47.18671472400018],[-111.6476612109999,47.19790497900016],[-111.48915886699996,47.115874438000105],[-111.35459716499992,47.20583195600011],[-111.26809478699982,47.181458126999985],[-111.09026934799994,47.28192975800016],[-111.0264293599999,47.251926280000134],[-110.71885567499993,47.23450192500019],[-110.60080929299994,47.176913981999974],[-110.44144109599983,47.1557267230001],[-110.28979701799994,47.058069347000014],[-110.22808215099997,46.988875090000136],[-110.0437097809999,46.897043479000104],[-110.03424402999991,46.853585087],[-109.8309190949999,46.715532593000034],[-110.11042309699997,46.63562067400011],[-110.13227860699993,46.53908039900017],[-110.28268228199994,46.49157755700014],[-110.42901803399991,46.53589448000008],[-110.40948241999985,46.44323355300014],[-110.55567301799994,46.4532527610001],[-110.54935993299995,46.38827050000003],[-110.54526854699998,46.38737715200017],[-110.31406285499997,46.44306226000009],[-110.26302392399992,46.334547586000156],[-110.1356853929999,46.309549818],[-110.03628563299998,46.170980858000064],[-110.06838124499996,46.13156307000003],[-109.97708090499992,46.001878020000106],[-110.11029419999994,45.927475536000145],[-110.08162362199994,45.82346815000011],[-110.23576692599994,45.76838297800015],[-109.80150312599989,45.76883118000006],[-109.575971026,45.663879544000054],[-109.52025872199988,45.694099304000076],[-109.41276137699998,45.65476167700018],[-109.3580676769999,45.54669091000005],[-109.06954040199986,45.52082029600007],[-108.99633327499998,45.602166100000034],[-108.8653595369999,45.53351540900019],[-109.06922281599998,45.47466712700003],[-109.29455944799992,45.26512865500018],[-109.28450994199994,45.16817338900006],[-109.19375932499997,45.19090950200018],[-109.14967132499993,45.29260097900004],[-108.99145472499998,45.42453350500011],[-108.92309641299983,45.26830070200015],[-109.07226439599998,45.21038277800011],[-108.9475754469999,45.19858096000007],[-108.86321537299995,45.247650021000084],[-108.88469242699989,45.31658363900016],[-108.81536942699995,45.53911204000008],[-108.71208370399984,45.64453267300007],[-108.3121988129999,45.82278507500018],[-108.13499814099993,45.76807105600005],[-108.1583000629999,45.643699016000085],[-108.08043487999998,45.578172044000155],[-108.20417157499998,45.488165771000126],[-108.19277308799991,45.42199247899998],[-108.04974613199988,45.468266971],[-108.01020938299996,45.38141239700008],[-107.89986830399994,45.28686181800009],[-107.65120180199995,45.36307297200011],[-107.5668196549999,45.197193524],[-107.45585706499992,45.26916279699998],[-107.38743299699985,45.204079094000065],[-107.37860953599994,45.065886127000056],[-107.48209125299996,45.011642375000065],[-107.29728134499993,44.88261199700014],[-107.14371106499993,45.096450379000146],[-107.08633717699996,45.25643060400017],[-106.81470325699985,45.22108171700006],[-106.77462896799994,45.08382022200004],[-106.69423121799997,45.07716456300011],[-106.54403691299996,45.1321145010001],[-106.46670728799995,45.201224228000115],[-106.32297327999987,45.24112336900009],[-106.26308653499996,45.205805782000084],[-105.9929161209999,45.1523647300001],[-105.98965990799996,45.291040282000154],[-105.89330617299998,45.38890823700012],[-105.80529823699999,45.34547699400014],[-105.90751289199994,45.27171373500005],[-105.93240741799997,45.11666809100018],[-105.9889646879999,44.98699386100009],[-106.20727068799994,44.90355444400018],[-106.338031076,44.78262077300019],[-106.37868732499993,44.65347207600013],[-106.48035026999997,44.54973687500012],[-106.54606109299993,44.40991670700009],[-106.61455276599992,44.34968342200017],[-106.82117076499992,44.29424911899997],[-106.82758326499999,44.17334547400003],[-106.79790103299996,44.08114100500018],[-106.82932075799994,44.00438265900016],[-106.81244869999989,43.905840969999986],[-106.817900652,43.850308814000186],[-106.667692521,43.726673793000145],[-106.69169972799995,43.66096161200011],[-106.80901871799989,43.62177000700018],[-106.75574362999998,43.51409353500014],[-106.82519777099998,43.37531588500019],[-106.9069736329999,43.32912618600017],[-106.72851422999997,43.20269602500014],[-106.67425564299998,43.062263393000194],[-106.57775192599996,42.9997314470001],[-106.536478188,42.85721220500017],[-106.40252673999993,42.76913401300004],[-106.20810754099995,42.773517324000125],[-106.14423362199994,42.68186209300006],[-105.91211458199996,42.777892352000094],[-105.75437706999992,42.77892180900005],[-105.47980028499995,42.73296073200015],[-105.40794342499998,42.64295704300014],[-105.41387815499996,42.57592360200016],[-105.50204230999998,42.567962195],[-105.4653037359999,42.47239645500014],[-105.35120091599998,42.598765264000065],[-105.23497204299991,42.61642483500009],[-105.14129963299996,42.52662466300012],[-105.15312495999996,42.47214978699998],[-105.03962558399996,42.35334130700011],[-104.94673086099993,42.37309129900018],[-104.96071113999989,42.58438780400007],[-105.0591382209999,42.60593799500015],[-105.13534343599997,42.66692023000019],[-105.06229974799993,42.77019575100019],[-104.99199823299983,42.807918956000094],[-104.68410001399991,42.879118936000054],[-104.53770816699995,42.85896101200018],[-104.41045787799993,42.90495757600013],[-104.33458945099994,42.87910651600009],[-104.2216628459999,42.89719626100003],[-104.04511292899997,42.869457575000126],[-103.9648393949999,42.81011645600017],[-103.80131209099994,42.765308133000076],[-103.63624442199995,42.826380824000125],[-103.49674077999987,42.77311135100018],[-103.37353772299997,42.63640083000007],[-103.30818578999998,42.69056813400016],[-103.19916092799997,42.70847205600006],[-103.04225932499997,42.780177538000146],[-102.99472684499995,42.842174194000165],[-102.81521419999984,42.86140018700013],[-102.86646738999985,42.95896749100007],[-102.80404010999996,43.045974140000055],[-102.78792489799991,43.24022403700019],[-102.67735641399997,43.27294497000008],[-102.55942608599997,43.34586206000006],[-102.4857155439999,43.338993095000035],[-102.39527595899989,43.4909593320001],[-102.30353118699998,43.5045728180001],[-102.23003791099995,43.43606052000007],[-102.08061065099997,43.52139176900005],[-101.96403632899995,43.425646125000185],[-101.94599498399992,43.37057062100013],[-101.68174287499994,43.36770461000003],[-101.57794822199997,43.31960397600011],[-101.63723298799988,43.24765857400007],[-101.77485013999996,43.23781421700011],[-101.96279819699998,43.318228500000146],[-102.00255661899996,43.277182484000036],[-102.17575707599997,43.259933713000066],[-102.29546224599989,43.2019783770001],[-102.31666205499994,43.143459353000026],[-102.41533637799995,43.09049324700004],[-102.47075117099996,43.00482521000015],[-102.29972257399999,42.99194748400009],[-102.14970050699992,43.015379904000156],[-102.16995747699991,43.082186444000115],[-102.04316372099993,43.08092557700013],[-101.89824521399999,43.121694081000044],[-101.69820290399997,43.077949638],[-101.37701713199993,43.06560964300013],[-101.33857128299996,43.15714335900003],[-101.1639499989999,43.110264624000195],[-101.09057597299994,43.12565399600004],[-100.93894900999999,43.064458134000176],[-100.82491117899991,42.96537179100005],[-100.67188043999988,42.89607205400017],[-100.50831073199993,42.86800958300006],[-100.35305825899997,42.89700624300008],[-100.14739472299988,42.817417614000135],[-100.12959810899997,42.76348480200011],[-100.01234105299994,42.77750066800019],[-99.83163322799993,42.70467842200003],[-99.71086797099997,42.711161096000126],[-99.51362281699994,42.67747108800006],[-99.34504370899992,42.73484702900015],[-99.24814953099997,42.79185677900006],[-99.15595826299995,42.77424558700005],[-99.11469670999992,42.700339801000155],[-99.131798458,42.59281494500004],[-98.83505075699992,42.474732686000095],[-98.68738690899994,42.460410771],[-98.53429194399996,42.41622625400004],[-98.25969937499991,42.21782492400007],[-98.03354590699996,42.11874322500017],[-98.05822855099984,42.17355796100014],[-98.05307107699997,42.346773824000024],[-97.98414705699997,42.58500288500011],[-97.97200494299994,42.69209618400009],[-97.84215763299994,42.86814251800013],[-97.97500902799999,42.908758020000164],[-97.8923111499999,43.02619739400012],[-97.86568520399999,43.12934943900018],[-98.14980950899997,43.41147343900013],[-98.2018616289999,43.523598079000124],[-98.28505624399997,43.58253107000007],[-98.48873375199997,43.666908350000085],[-98.57751544099995,43.76238114100016],[-98.54209398799998,43.98593062000015],[-98.60515160299997,44.13176019600007],[-98.82716049699991,44.49051856400001],[-99.00491411999997,44.34897130400009],[-99.10403459699995,44.455013829],[-99.40831249399997,44.49719724800019],[-99.58993008599992,44.55018201000013],[-99.62261981699999,44.6527160120001],[-99.37631332499996,44.74625202500016],[-99.19635974399995,44.79333243700006],[-99.13638221499997,44.934420876],[-99.21708605199996,45.03055551700015],[-99.08133479199984,45.06695658100017],[-99.04083952299999,45.11914245999998],[-99.01718169799989,45.29806713100004],[-99.02393905799988,45.42736216900005],[-98.96035073499996,45.55177176300009],[-98.96953294899993,45.64900843800012],[-98.9203696319999,45.82392838599998],[-98.80055200299995,46.001720214000045],[-98.84253209599996,46.05342944700004],[-98.80810195899994,46.183167093],[-98.8746694159999,46.65863613500005],[-98.95549022399996,46.78522341600012],[-99.00376325099995,46.98189276800014],[-98.9820359069999,47.05546147300009],[-99.02857026599992,47.140743576000034],[-99.19669015399984,47.31408643000003],[-99.57240807799991,47.417672267000114],[-99.70114259399998,47.477789861000076],[-99.90707516599991,47.49371251600007],[-99.95015990399997,47.58065217300009],[-100.04462113499994,47.553088516],[-100.09561100399992,47.62969441800004],[-100.18424370799994,47.59258431000012],[-100.37366425699992,47.583992750000164],[-100.40972510199998,47.682347924000055],[-101.03960201699994,47.94090001000012],[-101.18192012099996,47.9218656700001],[-101.22473639999998,47.99470091800009],[-101.37909683599997,48.067197262000036],[-101.61335271599995,48.21135084600019],[-101.74692049699996,48.2577734890001],[-101.88137477399988,48.36458954200009],[-101.97117485999996,48.47248648600009],[-102.09307335899996,48.50980587900017],[-102.28133535899997,48.65182352000011],[-102.41598957399998,48.726867544000186],[-102.6264001319999,48.78283686100002],[-103.07837613999999,48.847828102000165],[-103.35204860599998,48.78723846999998],[-103.36055889799991,48.909831581000105],[-103.45369163399994,48.94846187700006],[-103.57001448499994,48.90301158900019],[-103.66981047099995,48.999438956],[-103.53765676999996,48.99918889500003],[-103.32917303799996,49.07165344500004],[-103.27272458099998,49.127342197000075],[-103.29929293799995,49.19187453100011],[-103.68850797799996,49.38882245400015],[-103.7002798119999,49.47688063500016],[-103.87684665599994,49.66235815600004],[-103.88596388199994,49.728749801],[-103.88722324299988,49.73248103300017],[-103.89354701699989,49.87238395100019],[-103.89452308199992,49.873121714000035],[-103.88536075299999,50.006697932],[-104.06345373599993,50.08803943900011],[-104.12019360499988,50.28736785000012],[-104.18338029899996,50.32001158100019],[-104.20762593999996,50.421052895000116],[-104.58386187199989,50.59599535800004],[-104.69574742199995,50.722604092000154],[-104.52343034299997,50.829159829000105],[-104.38067592699991,50.859677067],[-104.2563923909999,51.016119490999984],[-104.44129191699994,51.049344565000126],[-104.52857262799989,51.0924657060001],[-104.70848060399987,51.377078799],[-104.60566796099982,51.49447751200006],[-104.55642741799988,51.630837767000116],[-104.44946975699997,51.74087392600012],[-104.65438022299992,51.81232328700003],[-104.73419930799986,51.737356553000154],[-104.85936709699996,51.71795109600009],[-105.18830949699998,51.74033060099998],[-105.26619670099984,51.71791775100007],[-105.38538349299995,51.85765781600003],[-105.45163801499996,52.02676594700017],[-105.39952110599995,52.14321103500009],[-105.30281056399997,52.2365953150001],[-105.31128659099988,52.28635249000007],[-105.47216021499986,52.284651829000154],[-105.64470631399996,52.352926275000186],[-105.78980179699983,52.38060668500003],[-106.06678722199996,52.30143937200012],[-106.17196598399994,52.365707062000126],[-106.24764235499993,52.35806878500006],[-106.35566757699996,52.27709585100007],[-106.44104803999988,52.35190882800009],[-106.55323099199995,52.298139375000176],[-106.6437307359999,52.309219371000154],[-106.64627189299989,52.31020513100003],[-106.73873213899998,52.34549816600014],[-106.91655751699983,52.34296355900011],[-107.14015129799992,52.38482468500018],[-107.24617776999997,52.34255842600004],[-107.44827355199999,52.34551775000011],[-107.58468564699996,52.41376306300003],[-107.7785044009999,52.24880756100015],[-107.96436408499994,52.30101189800007],[-108.0259403899999,52.377903002000096],[-108.16782333099997,52.381049611000094],[-108.33595178999997,52.43259864800018],[-108.55728091499998,52.409582544000045],[-108.55908990899991,52.41166297600006],[-108.56797714499993,52.437583311000026],[-108.56868839099997,52.43896906400005]],[[-108.77848096199983,49.51763497400003],[-108.90033658999994,49.44386992900013],[-109.19844731899997,49.39452755700012],[-109.4550177029999,49.429864149000196],[-109.63803839499991,49.41566463600009],[-109.75768198599991,49.3803619250001],[-109.9561223689999,49.39207298700006],[-110.00028071999998,49.42257909600005],[-110.1889810859999,49.338631550000116],[-110.4409473529999,49.33357087900015],[-110.56784782099993,49.36258020500003],[-110.6070928279999,49.47456670900016],[-110.72667821199997,49.51545066400013],[-110.7611622849999,49.634994525000195],[-110.85384392399999,49.61421541900006],[-110.88893152899993,49.72365462000005],[-110.72775348599993,49.83650220500016],[-110.47754557999991,49.90294911900014],[-110.21478211999994,49.93345107000016],[-109.96125772199997,49.91692469100008],[-109.95982375499989,49.91622768500014],[-109.52120270599994,49.83440547500004],[-109.22647906099996,49.910691150000105],[-109.09903050299988,49.855556819000185],[-108.93256330299994,49.86535855600005],[-108.83262779399996,49.92665608300007],[-108.56144644999995,49.89487534000011],[-108.53817694799994,49.80707508600011],[-108.64482048799994,49.62030703100015],[-108.77806055099995,49.520141995000074],[-108.77686150399995,49.51859920300012],[-108.77686149199997,49.51859918200006],[-108.77848096199983,49.51763497400003]],[[-109.55657538799994,48.378049154000166],[-109.42874311099985,48.36953172800014],[-109.54251568899997,48.24808048600005],[-109.66142172099995,48.265620232000174],[-109.70126699699995,48.339991889000146],[-109.55657538799994,48.378049154000166]],[[-109.28098574699993,48.31654032500006],[-109.01513154099996,48.241736379000145],[-109.10767800799994,48.12425036700006],[-109.41416876399984,48.247690222000074],[-109.45215464699999,48.30253371500004],[-109.28098574699993,48.31654032500006]],[[-109.75547743499993,48.27894751100001],[-109.84235450099999,48.257216663000065],[-109.78249746899996,48.063607246000174],[-109.47896780699995,48.19846042100005],[-109.31786642699996,48.19943408000006],[-109.25689617199993,48.150966339000036],[-109.31615529199996,48.07883441500019],[-109.25470898599997,48.032626614000094],[-109.28910651899997,47.943413129000135],[-109.40434486799995,48.007154302000174],[-109.59971900999989,48.0041034730001],[-109.82232578999998,48.034426573000076],[-109.91065509899988,48.08218556500003],[-109.87328212199992,48.244761661000155],[-109.75547743499993,48.27894751100001]],[[-108.45554951699995,48.04822668500009],[-108.33753442699998,47.96484512600017],[-108.51049786399983,47.86909564000018],[-108.671610849,47.823200139],[-108.8722413619999,47.85820601900008],[-108.94231585699993,47.94675234200008],[-108.80966741499998,48.04274393400004],[-108.69429057299993,48.033118871000056],[-108.5287625389999,48.0787592260001],[-108.45554951699995,48.04822668500009]],[[-110.43763050099994,47.60838608900008],[-110.41906217199994,47.55332537900017],[-110.22496843699997,47.52342430000016],[-110.21364557399988,47.443290589000014],[-110.36451028599993,47.445088633000125],[-110.41288239399995,47.38962681100003],[-110.727082151,47.297757607000165],[-110.91646842299991,47.43136705800015],[-110.79188578299994,47.57839835700008],[-110.56805789499998,47.61253729300017],[-110.43763050099994,47.60838608900008]],[[-109.54388269699984,47.12477723900014],[-109.62200115799993,47.20814798700013],[-109.5323975849999,47.23393376400003],[-109.53493974399993,47.32965389800006],[-109.42836759599993,47.32256364800014],[-109.42795091399995,47.25803669400017],[-109.1725549389999,47.28959929600006],[-109.00830971899995,47.25216194100017],[-109.15440783499997,47.13935360200014],[-109.13011592099991,47.04108581500009],[-108.86503167599994,47.01957732100004],[-108.89620824699989,46.935712040000055],[-108.98738161199987,46.84319527600019],[-108.87253784299998,46.78219728200003],[-109.04443736399992,46.71955741600004],[-109.08156880999996,46.665547384000035],[-109.26818340799991,46.65088441700016],[-109.36716197699997,46.68316644300006],[-109.52227251199997,46.680113760000154],[-109.55495353999987,46.743696961000126],[-109.71474108699994,46.801659043000086],[-109.58972825899997,46.892694185000096],[-109.40508269999998,47.03702463900015],[-109.42881862499996,47.16752145200019],[-109.51283435199997,47.13055085900004],[-109.54388269699984,47.12477723900014]],[[-104.57343370299992,44.93163108200014],[-104.4131409549999,44.970855872000186],[-104.21300050799994,44.84235415000012],[-104.02781160199993,44.640708525000036],[-103.7406286339999,44.64606463600012],[-103.66135453599992,44.61851007200016],[-103.60003251999996,44.50906294400016],[-103.45622722099984,44.39976157500007],[-103.24180880099993,44.1571610740001],[-103.21693524299991,43.98724235200012],[-103.23008146299998,43.81317438000019],[-103.34835771599995,43.5575639110001],[-103.34388424399992,43.50169562600007],[-103.42952842699992,43.35796235400005],[-103.60357175399997,43.31657017300017],[-103.74071280899994,43.2565795700001],[-103.81201948899997,43.41532692200019],[-103.9053282779999,43.40276063800013],[-104.03500823199994,43.557789316000026],[-104.12142479,43.705373510000186],[-104.16996599699996,43.8434692190001],[-104.30445212199993,43.89607960100017],[-104.30929785999996,43.96136845799998],[-104.42104737899996,44.03469241200008],[-104.50708909999997,44.168131055000174],[-104.68411721099994,44.17049123900006],[-104.71182849999985,44.24467797000017],[-104.89653858199995,44.45283630300014],[-104.91272194199996,44.57655540400003],[-104.88300970099993,44.66905002800013],[-104.90658123999998,44.74890948900014],[-104.85143403499984,44.80886513900009],[-104.57343370299992,44.93163108200014]],[[-98.93359994399992,42.81966145900009],[-98.84706142199991,42.82536439800003],[-98.57627678999995,42.7630500730001],[-98.31857796199989,42.762553],[-98.30046684399991,42.69392551600015],[-98.71397463099999,42.732610084999976],[-98.85412048799992,42.776847552000106],[-98.91382268399991,42.76455405300004],[-99.07155213899989,42.80796475000011],[-98.96785959099998,42.88111174900018],[-98.93359994399992,42.81966145900009]]]]},"properties":{"objectid":518,"eco_name":"Northern Shortgrass prairie","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Nearctic","eco_biome_":"NE08","nnh":3,"eco_id":396,"shape_leng":112.480036741,"shape_area":86.1689626613,"nnh_name":"Nature Could Recover","color":"#FCBA26","color_bio":"#FEFF73","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":718937.8845763287,"percentage":6.78544296081825}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-95.98812921899997,45.969841695000184],[-96.02354777099998,46.00105700800003],[-96.056285028,46.15471676900006],[-96.13933618399994,46.29087104700005],[-96.23976181599994,46.39387957200012],[-96.29368127399994,46.509130239000115],[-96.27659611899992,46.615173248000076],[-96.3115003179999,46.69958194400016],[-96.27240709899996,46.888117624000074],[-96.16185779699998,46.91078017600006],[-95.96284132999995,46.855050104000156],[-95.88809231999994,46.969847589000096],[-95.88079756399998,47.15600632600007],[-95.82324122399996,47.30127226400009],[-95.8222316049999,47.42028778200006],[-95.70858832099998,47.58233158900009],[-95.59733160499991,47.673038604000055],[-95.47259649299991,47.701618849],[-95.45356575699998,47.847863005000136],[-95.62666160999993,48.03885066500004],[-95.60840988699994,48.15404489100001],[-95.65966623399993,48.215717514000175],[-95.49736934599997,48.331993650000186],[-95.49720557599994,48.37902473900016],[-95.60084942099985,48.46043273300012],[-95.57230789299996,48.52001304200013],[-95.71020756399997,48.59410577700015],[-95.63748065599998,48.66683106500005],[-95.72873944399993,48.80477805900006],[-95.60901643699987,48.86154238300003],[-95.79023989399997,48.905214152999974],[-96.00424810499999,48.894296506000046],[-96.0815325669999,48.824368793000076],[-96.31326547999993,48.775551067000094],[-96.4621163729999,48.707528164000166],[-96.55729794599995,48.74718738200011],[-96.57268360699993,48.84151685],[-96.50972623899992,48.90556837000008],[-96.64096368699995,48.99999043600019],[-96.45466337099998,49.02413125700019],[-96.41543055299996,49.055876449000095],[-96.46096990799998,49.25230791600006],[-96.426805173,49.52291240400007],[-96.46826389899996,49.64131885500018],[-96.3176016779999,49.83284899300003],[-96.30054111199996,49.924339119000194],[-96.463599822,49.95603011000014],[-96.57222714199992,49.94098863300019],[-96.81703958999992,50.07717661100014],[-96.8849567289999,50.043828831000155],[-97.065856909,50.249583499000096],[-97.10871108799995,50.51669255800016],[-97.2552796679999,50.385448109000095],[-97.25804135799996,50.31419857700007],[-97.40904975399991,50.244571300000075],[-97.52404013299991,50.47386789300003],[-97.60829145699995,50.56461987100005],[-97.66412351399993,50.76612920300016],[-97.789344842,50.82367447700011],[-98.08302366299995,50.761807590000046],[-98.28422686099992,50.780796875000135],[-98.68081373599995,50.939665479000155],[-98.8877601129999,51.05698265300009],[-99.09241713699993,51.274989523000045],[-99.30807813199993,51.415043518000175],[-99.77810796499989,51.55972775800018],[-99.95745613499997,51.572381993000135],[-100.17872418999991,51.54773907000015],[-100.34883442199998,51.574115632000144],[-100.45523913999995,51.63899775300007],[-100.59161366099994,51.77606056100012],[-100.5959705539999,51.595582653000065],[-100.57237938299994,51.51674922400002],[-100.62802846599993,51.34513670000007],[-100.74485059499989,51.29639613400013],[-101.11707311399994,51.29081781000008],[-101.13626042899989,51.19978223000004],[-100.96698722399987,51.1829494160001],[-100.92051729299993,51.08477530200008],[-100.81133264599998,51.049351265000155],[-100.5285040259999,51.01312752100006],[-100.40630369799993,51.0314957760001],[-100.18757605599995,51.02508190200018],[-100.09224637799997,51.045278512000095],[-99.88146997799998,51.008722054000145],[-99.60497278099996,50.80033335600001],[-99.49908502899996,50.603062010000144],[-99.47739395799994,50.41860931400004],[-99.36486856399989,50.23187443700016],[-99.22316734399999,50.19924922900009],[-99.13142397799999,50.03440186100016],[-98.92548384799994,49.89361216000003],[-98.73004134299993,49.84046556700014],[-98.49501072699991,49.743921231000115],[-98.47096215999989,49.58198366400018],[-98.3794707269999,49.53239308000002],[-98.20265962199994,49.35526939100015],[-98.19236781899997,49.259835749],[-98.04496583499991,49.00265659100006],[-98.0137232049999,48.877039732000014],[-97.8896503869999,48.66768436500013],[-97.91058625699998,48.55178974199998],[-97.88984690999996,48.310007566000195],[-97.83647212799997,48.13374649200017],[-97.71827834199996,47.999636740000085],[-97.63789915999996,47.67520390400017],[-97.64067509899996,47.534258836000106],[-97.58903981399993,47.419579383000155],[-97.47214387799994,47.37992658700017],[-97.4236269889999,47.32260218200008],[-97.42304034099993,47.08930456300004],[-97.47237288999997,46.78288368800014],[-97.54385312099998,46.63798951900009],[-97.45156608299993,46.55427231300018],[-97.49366340899991,46.43024165300005],[-97.62122880199996,46.347815708000155],[-97.43595784299993,46.252216273000045],[-97.37190438799996,46.181378003000134],[-97.11681246599989,46.09812127900017],[-97.01214351799996,46.09788978600011],[-96.91705025599992,46.0242292640001],[-96.86562590799997,45.925190700000144],[-96.70421371899994,45.86494596400007],[-96.51867589699992,45.67989859400012],[-96.42104765199997,45.633403250000185],[-96.27641473399984,45.66593733200017],[-96.17572821199991,45.75278029700013],[-96.13960275699998,45.87840927400009],[-95.98812921899997,45.969841695000184]]]},"properties":{"objectid":520,"eco_name":"Northern Tallgrass prairie","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Nearctic","eco_biome_":"NE08","nnh":4,"eco_id":397,"shape_leng":25.1038522376,"shape_area":10.1612193165,"nnh_name":"Nature Imperiled","color":"#FCCA4D","color_bio":"#FEFF73","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":82847.29097464177,"percentage":0.7819250861957616}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-7.312727477999942,39.17880706800014],[-7.216334585999959,39.25420295800018],[-7.249400522999963,39.40334769300006],[-7.378195506999873,39.414822687000026],[-7.510737535999965,39.31629391800004],[-7.538668551999933,39.25636582400011],[-7.333863452999935,39.15857449500004],[-7.312727477999942,39.17880706800014]]],[[[-5.185223424999947,39.63795666100003],[-5.281009466999933,39.649606500000175],[-5.475978569999938,39.52529818200014],[-5.591705495999975,39.48525967500012],[-5.590913573999956,39.39125210400016],[-5.413815525999894,39.397023883000145],[-5.207396575999951,39.465949949000105],[-5.185223424999947,39.63795666100003]]],[[[-4.859638453999935,39.67795309100018],[-4.84832154299994,39.622655832000135],[-4.492098536999947,39.56241844600015],[-4.424637459999872,39.51276740500009],[-4.23483546499989,39.48665257900012],[-4.233397465999928,39.58117127800011],[-4.488792546999889,39.68346084000012],[-4.616053473999955,39.70031466800003],[-4.859638453999935,39.67795309100018]]],[[[-7.334523443999899,39.93126074300005],[-7.103527579999934,40.09326449100007],[-6.950130537999939,40.13023589300002],[-6.761552467999934,40.081321788000025],[-6.644723489999933,40.0834234670001],[-6.34613947899993,40.166529534000176],[-6.122427488999904,40.284722248000094],[-6.117342522999934,40.374477007999985],[-6.052010449999955,40.44316737500009],[-5.942012554999963,40.41490862699999],[-5.937808527999891,40.32565359500006],[-5.878108421999968,40.18947415500014],[-5.937907433999897,40.048095924000165],[-5.849833579999881,39.98672178500004],[-5.77491344799995,39.98625692400003],[-5.520971452999959,40.07441258500006],[-5.133361571999956,40.13857186299998],[-4.851578582999878,40.24685767000011],[-4.543902553999885,40.28138826200012],[-4.553478542999869,40.37800612400014],[-4.745330583999873,40.41464962599997],[-4.835840553999958,40.513239583000086],[-4.946640428999956,40.54491211300018],[-5.054935456999942,40.63041708100019],[-5.174048503999927,40.61970215800011],[-5.294540540999947,40.50135270300012],[-5.441204568999979,40.40691681700008],[-5.637128537999956,40.45087319400005],[-5.682353431999957,40.49039286200019],[-5.685950441999978,40.58363047000017],[-5.790125427999953,40.61877931100008],[-5.986355504999892,40.5809298210001],[-6.176994516999969,40.622082284000044],[-6.291074565999963,40.70419643600019],[-6.382090467999944,40.803263324],[-6.419220454999959,40.88826923300002],[-6.359828467999876,40.95409047500016],[-6.168136520999951,40.943993634000094],[-6.067053450999936,41.03305068500009],[-6.084473560999925,41.09214712600004],[-6.182295567999972,41.18676640700005],[-6.289607564999869,41.22993672900009],[-6.365088447999881,41.21378211900014],[-6.52969846499991,41.08161140900006],[-6.551110538999978,40.96672954600007],[-6.632122471999878,40.83565787100008],[-6.364645547999942,40.57537563700009],[-6.342266536999944,40.464799894000066],[-6.441799457999878,40.41637344800017],[-6.718347444999949,40.387217836000104],[-6.758352424999941,40.438529165000034],[-6.738120521999974,40.582589606000056],[-6.875191461999918,40.68260146900013],[-7.065282464999939,40.654304834000015],[-7.19911647999993,40.71593814200003],[-7.174482569999896,40.89222917900014],[-7.383052483999961,41.02748091000012],[-7.453380507999896,41.00043116700016],[-7.634626422999929,41.036052747000156],[-7.659528554999952,40.97878322600019],[-7.530233506999934,40.79577929000004],[-7.549707517999877,40.61952613800014],[-7.598129437999944,40.57458974999997],[-7.888308578999954,40.415225630000066],[-8.012021446999938,40.147196674000156],[-7.933645454999919,40.07956259400015],[-7.857878581999898,40.06891992400011],[-7.69038854299987,40.15275773100012],[-7.61575155099996,40.15915982900009],[-7.530216575999873,40.101024290000055],[-7.588746567999976,39.989475911],[-7.517438531999971,39.892290258000116],[-7.334523443999899,39.93126074300005]]],[[[-3.096789432999913,42.598441177000154],[-3.334729535999884,42.6736736200001],[-3.61314350299989,42.80355171200006],[-3.726609493999888,42.77138297400006],[-3.842535573999953,42.788602923000155],[-3.95593752699989,42.75192807299999],[-4.120966471999964,42.76590489700004],[-4.312926471999958,42.878285264],[-4.537799522999933,42.80401389000008],[-4.744014457999981,42.82808051400008],[-5.033184585999891,42.810917729000096],[-5.238415484999962,42.84276359600011],[-5.519038585999965,42.78931991100012],[-5.726840550999952,42.79137582400017],[-5.887896472999955,42.82296068000011],[-6.094121466999979,42.735529048000046],[-6.301317586999971,42.712259208000035],[-6.518130432999953,42.793633909],[-6.642783581999936,42.792333038000095],[-6.786952484999915,42.73314406100013],[-6.91041557199992,42.61466099800009],[-6.99864448999989,42.48015961500016],[-7.185896542999899,42.50292855200013],[-7.280427478999968,42.63612990200005],[-7.383672576999913,42.68208536200012],[-7.464998495999907,42.67058773800005],[-7.628357429999824,42.53553633500013],[-7.784537431999922,42.447688960000164],[-7.656288445999962,42.335228630000074],[-7.527683564999961,42.32872092000002],[-7.330931462999956,42.35298569200006],[-7.243357505999938,42.29169486900008],[-7.312588505999884,42.21314352800016],[-7.258820440999898,42.1001953710001],[-7.347953431999883,42.0176949800001],[-7.666434572999947,42.079328455000166],[-7.747902480999926,42.07935963600016],[-7.893754468999816,42.024626814000044],[-7.942842581999912,41.97745832400011],[-7.907491569999934,41.893665109000096],[-7.631234434999897,41.87442797000011],[-7.512499578999893,41.72836425500009],[-7.521252465999964,41.6682417020001],[-7.666335497999967,41.52820122200012],[-7.660426423999979,41.39587812800005],[-7.759592552999948,41.30054604900005],[-7.723266557999978,41.197806044000174],[-7.642137446999925,41.196547250000094],[-7.437991500999942,41.33659879400011],[-7.436553501999867,41.48661759400011],[-7.285185549999937,41.51626505600018],[-7.175805568999976,41.598051309000084],[-7.019799575999969,41.56671774300014],[-6.957279462999963,41.48996348200018],[-6.881994548999899,41.465781692000064],[-6.564459557999953,41.518844],[-6.48332457999993,41.50936406800008],[-6.445916480999927,41.44113587900006],[-6.709938551999926,41.30160619200012],[-6.784277483999915,41.201979226000105],[-6.716239563999977,41.17383832700011],[-6.52608351799995,41.32844689000012],[-6.431600525999954,41.31295512100007],[-6.360488458999953,41.37111748300009],[-6.268797478999943,41.53645203200011],[-6.132963540999924,41.64824901800006],[-6.197782474999883,41.722749218000104],[-6.158926485999871,41.76902084400007],[-5.999437476999901,41.74559912400014],[-5.896575430999917,41.78492097900016],[-5.927994491999868,41.83617447300003],[-6.191074437999873,41.91866664900016],[-6.212249471999883,41.97562319000019],[-6.081349457999977,42.090074390000154],[-6.050118485999974,42.17059883100012],[-6.135029512999893,42.23722943000013],[-6.121392490999824,42.35351542800004],[-6.068789510999864,42.40000129500004],[-5.918579435999959,42.39386725100019],[-5.879573578999896,42.59896689000004],[-5.762577464999936,42.56412834800017],[-5.804546492999975,42.41654901600009],[-5.699764488999961,42.383518283000114],[-5.652347559999896,42.514361468],[-5.639001557999848,42.69259828100019],[-5.576995422999971,42.69381935600006],[-5.556428579999931,42.57424413100006],[-5.375404448999916,42.53899621700003],[-5.331072562999964,42.48936361500017],[-5.397463438999978,42.41757227900007],[-5.145663523999929,42.18610585500011],[-5.00505458299989,42.12649325700011],[-4.655185562999918,42.20892458100019],[-4.537364501999832,42.18681479600002],[-4.46312045399992,42.11479044300012],[-4.455504488999964,42.02573305699997],[-4.603281464999952,41.813801496999986],[-4.628472436999971,41.66759277500017],[-4.508599486999856,41.60923645600013],[-4.107416454999964,41.666039776],[-3.860185514999898,41.77149283500006],[-3.917066450999869,41.820118434000165],[-4.062628425999947,41.76573312600016],[-4.181309468999871,41.77592585600007],[-4.154963470999917,41.87680407200003],[-3.980703535999851,41.95576864100008],[-3.863589572999899,41.982776139],[-3.834868478999908,42.06692759700013],[-3.770649521999871,42.10044733100017],[-3.605190585999935,42.10791242099998],[-3.514733421999892,42.04896065200012],[-3.413436445999935,42.03572395100008],[-3.336416477999933,41.930129573000045],[-3.223960506999958,41.84311334800009],[-2.98515857599989,41.8130575190001],[-2.947720469999922,41.870777316000044],[-2.742503484999872,41.876373075000174],[-2.587657546999935,41.91181880200014],[-2.527958446999833,41.965922311000156],[-2.434678425999891,41.937938657000075],[-2.291026518999956,41.99576808900014],[-2.068160430999853,41.948768411000174],[-1.990663532999918,41.99763809100011],[-2.089540485999862,42.094648563000135],[-2.055959564999853,42.17113678200013],[-2.188418444999968,42.30359281300008],[-2.269176573999971,42.30183093700015],[-2.568354525999894,42.38454825100007],[-2.707686567999929,42.389881488000185],[-2.807799515999875,42.33530876100002],[-2.90105657099997,42.503115468000146],[-3.096789432999913,42.598441177000154]]]]},"properties":{"objectid":526,"eco_name":"Northwest Iberian montane forests","biome_num":12,"biome_name":"Mediterranean Forests, Woodlands & Scrub","realm":"Palearctic","eco_biome_":"PA12","nnh":3,"eco_id":800,"shape_leng":36.741331133,"shape_area":6.20416235859,"nnh_name":"Nature Could Recover","color":"#D49E54","color_bio":"#FE0000","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":57451.93643947618,"percentage":1.7391791401876644}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[59.225799589000076,65.88171329700009],[59.521598629000096,65.96241375800008],[59.54643655500013,66.02088859700012],[59.405605493999985,66.08844975400007],[59.128726589000166,66.06964210400014],[58.9939304990001,65.96667075900012],[59.01381656400014,65.90655574900018],[59.225799589000076,65.88171329700009]]],[[[56.29811848900016,66.37763362800007],[56.178523483,66.40873300300007],[55.69891752100017,66.36588387600005],[55.5042194880001,66.3286201140001],[55.179359552,66.17198832700018],[55.24458651700007,66.08291853600014],[55.51843251400015,66.120250527],[55.75624856500019,66.18377579800017],[56.00370447500012,66.28688494200014],[56.43984557599998,65.99722832800006],[56.483482602000095,65.73143013200001],[56.692054528000085,65.39335444900007],[56.71977649900009,65.12815187000018],[56.97555547200011,65.0290177600001],[57.16776659300007,65.05193002800019],[57.20891553500002,65.13892513000019],[57.02008852300003,65.29792195500005],[57.00043463700007,65.6233620860001],[56.79471255800007,65.74412569700019],[56.7565874710001,65.80065442600016],[56.84257858900003,65.9992886],[56.76295453200015,66.11369621400013],[56.53292459900007,66.26317153200006],[56.29811848900016,66.37763362800007]]],[[[58.02002358900012,66.08304091200017],[58.28458059300016,66.13044409500003],[58.75571848700014,66.34159077400017],[58.70140861500016,66.42527385100016],[58.56240061800003,66.41669866100011],[58.32295663400009,66.34828908800017],[57.93006162800003,66.13615150000004],[58.02002358900012,66.08304091200017]]],[[[42.54294245900007,66.40649000600001],[42.56243859800014,66.46990832400013],[42.20544060100008,66.52491104300015],[41.999999483000124,66.39166560500013],[42.131038469000146,66.19610608000005],[42.264385497000035,66.12229554400005],[42.66130046400008,66.02815185100013],[42.83271457500007,65.93347406400011],[42.95409056800003,65.96567901200007],[43.19340547100006,65.95373815300013],[43.43383047300006,65.88436851600017],[43.70916358700015,65.86943716200017],[44.09801449300011,65.92839194800007],[43.893634524000106,66.13094801500017],[43.69428654700005,66.25053698600004],[43.157932586000186,66.41821662400008],[42.54294245900007,66.40649000600001]]],[[[55.211093604999974,66.41884157900017],[55.290489507000075,66.46832112700014],[55.22129052600019,66.54532902400013],[55.00374258700009,66.55152442400004],[54.591133512,66.49410956000003],[54.32557252400005,66.40387971400008],[54.116706561000115,66.41606448600015],[53.83941258400006,66.38267685200009],[53.76539652300005,66.33198427500014],[53.87399262800005,66.25910446500006],[54.175029519000134,66.1770084170002],[54.38794360600019,66.1804035900002],[54.4987144800001,66.28298584800012],[54.8465495480001,66.32273786200011],[55.211093604999974,66.41884157900017]]],[[[60.004257616000075,66.24342577900012],[60.301551484000186,66.37271227700006],[60.50076652400014,66.496246611],[60.394935608000196,66.5593598270001],[60.2551195960001,66.53882768500017],[59.95096547500003,66.41227335200017],[59.82590463000014,66.30527299300019],[60.004257616000075,66.24342577900012]]],[[[57.054840564000074,66.17796261300009],[57.17747149600007,66.20626075600018],[57.40554459000015,66.32350094999998],[57.589416556000174,66.36604413800018],[58.158275538,66.41852960400018],[58.4909665190001,66.52932931200019],[58.453727567000044,66.61118144600016],[58.1673355370001,66.60314688900019],[57.63440658900004,66.50638603099998],[57.13050450700007,66.47597363700004],[56.80957048700009,66.35851366900016],[56.803871631,66.24109058100015],[57.054840564000074,66.17796261300009]]],[[[42.628547506000075,66.68708226200005],[42.59599655300002,66.7349368940001],[42.328277559000014,66.86763365300004],[42.281421547000036,66.81533208600007],[42.51886762100008,66.66744362999998],[42.628547506000075,66.68708226200005]]],[[[51.54597853100006,68.52053087900003],[51.45315549100013,68.56606506500009],[50.873947541,68.4715319500001],[50.93000453600007,68.40315422800006],[51.274814575000164,68.45421292600014],[51.54597853100006,68.52053087900003]]],[[[58.72969049800014,69.38494331100003],[58.739250561,69.33026061300012],[59.093849490000196,69.16040486500003],[59.28709762100004,69.14392503800008],[59.2519496180002,69.2436614720001],[58.881126510000115,69.36721960900013],[58.72969049800014,69.38494331100003]]],[[[49.187702577000096,68.73425734100005],[49.31143958500007,68.7756104660001],[49.729545512000016,68.83719113500007],[49.974727579000046,68.94355078100006],[50.08120758900003,69.05665517700015],[50.36864853000003,69.11976152000011],[50.140853548,69.31457337800003],[49.28838750700004,69.51896893700012],[49.06806147100019,69.5238524020001],[48.665718551,69.4689933480002],[48.29937758200015,69.30700485500006],[48.183540518000086,69.19399986900004],[48.14006459200016,69.00086623500005],[48.16992562500002,68.80526815400009],[48.41611855000019,68.74979906500005],[48.9456824990001,68.7079648190001],[49.187702577000096,68.73425734100005]]],[[[67.16505463300001,68.73637846500003],[67.07386757300009,68.85319772000008],[66.52932751000003,68.94816719800019],[66.41328458600003,69.06422386700007],[66.06514760200008,69.09738368200004],[65.55695348300014,69.17478770800017],[64.9375605090001,69.30925556400007],[64.761283553,69.39561716200006],[64.74986254000015,69.48395638700003],[64.30644259500019,69.55322694900008],[64.14893355800018,69.63696367100016],[63.82945262400017,69.61769183100006],[63.07527160700016,69.73019306499998],[62.72150449800006,69.69397385600018],[62.76498461500006,69.76436692300013],[62.3497545190001,69.87279421600005],[61.955539531000056,69.88848916200016],[61.46075058900004,69.86085352500015],[61.230968593000114,69.82524518800011],[60.99618964000007,69.86910902900001],[60.76308455400016,69.85501703800014],[60.12747159200012,70.01490033200008],[60.02827059500015,70.09134362500004],[59.82843361800013,70.1226416510001],[59.54576851700011,70.21311591400013],[59.341098535000185,70.34095301300016],[59.06084054900009,70.46785234499998],[58.71136061700008,70.43717340600011],[58.64606458500003,70.37996406700012],[58.42375958100013,70.34575215600017],[58.55467954400018,70.27806862300002],[58.40165348500017,70.20730122000003],[58.60405348000012,70.02612370100013],[58.900825492000195,69.90015476000008],[59.366317502000015,69.89109107300004],[59.496990535000066,69.84665474800016],[59.538108631000114,69.71414004400003],[60.12294754400011,69.609596254],[60.21623661800004,69.45712943500007],[60.51037956100015,69.2132271160001],[60.92013560400005,69.0700375560001],[60.945854635000046,68.97967795700015],[60.86780151500005,68.88724266400004],[60.547595546000196,68.75812380400009],[60.19747557100004,68.69216275200012],[59.8117635210001,68.70902462700019],[59.71804060000005,68.65658609900015],[59.875122495000085,68.52652008400008],[59.867511559000036,68.46741962000004],[59.544555488000185,68.49282718100005],[59.36394156800009,68.53264708800003],[59.161193556,68.62765327800014],[59.186809490000144,68.68417563700012],[59.465141482000035,68.7670651150001],[58.94406555100005,68.93248733900003],[59.235988631000055,68.94882987100004],[59.26548354200003,69.01073860800017],[58.97491061900007,69.02953033199998],[58.44765454300011,68.97358146400012],[58.27674854300011,68.90251750900012],[58.07634360800006,68.8870976570002],[57.54194648600003,68.68512161800015],[57.226604536000195,68.71025374900012],[56.93463150000014,68.65843213000005],[56.62806355900017,68.68099353100013],[56.228969632000144,68.60371121000003],[56.050319592000164,68.6377170940001],[55.29591360400008,68.5564516930001],[54.97212956900012,68.4468576380001],[54.84130851200007,68.33086131800019],[54.88291963200004,68.26918978900017],[54.67869154400012,68.23585512800008],[54.41950951900009,68.29735834800016],[54.195583622000015,68.25074071799997],[53.4577555300001,68.25535679900008],[53.568786579000175,68.33519543300008],[54.162155587000086,68.36675212500018],[54.12247850700004,68.46145321400019],[53.97431160400009,68.60025518400005],[54.061820517000115,68.66413936800012],[54.13953048300016,68.84588132500005],[53.90680358800006,68.83438252700006],[53.622726472000124,68.9035166320001],[53.19303155900019,68.87930718100012],[52.9494135540001,68.81696375900015],[52.69234460700011,68.71643422900007],[52.272468590000074,68.64329441300015],[52.615463611999985,68.5222017280002],[52.67816946800008,68.45967507700004],[52.40166456300011,68.36798812000006],[52.316627473000096,68.41823796500012],[52.41986050100019,68.50590479400017],[52.22373151100015,68.58015772700008],[51.44820363000014,68.42733233000018],[50.97125255200018,68.38914538500012],[50.49412947700017,68.28709672000019],[50.046199565000165,68.13055629600012],[49.7264324730001,67.99338695300008],[49.386753500000054,67.90450022300001],[49.013183474000016,67.86578622300016],[48.764038610000114,67.89236171800013],[48.68029048900007,67.83730451600013],[48.72203857000011,67.75771868100003],[47.80363058800003,67.68634157900016],[47.73381050800003,67.61112657000018],[47.784164624000084,67.515563654],[47.57551558400007,67.30007498100014],[47.63332355900019,67.13995582000018],[47.35868849000019,66.98475063400008],[47.21769347900016,67.03940366000018],[46.83225652200019,66.96032811500004],[46.28067750400015,66.91592330600008],[46.18974257200006,66.9741069580001],[45.728572606000114,66.97898237500004],[45.53614858400016,67.10774316000015],[45.110149586000034,67.26724474300016],[44.9138105450001,67.29779409800017],[44.83880257000004,67.40622876800006],[44.99048651900006,67.53598850800012],[45.240650622000146,67.61391858200011],[45.250148492000164,67.72365026800003],[45.97204962600017,67.81612445300016],[46.42840553000008,67.81492634400007],[46.587062552000134,67.83204034600016],[46.45573455800019,68.11249648000012],[46.314407624000125,68.226561441],[45.86969351300007,68.39198349800017],[45.802772565000055,68.47878833100003],[45.59866752300019,68.52771769100013],[45.223514492,68.56515026500006],[44.567741544000114,68.54831906800018],[44.016361512000174,68.56649338100016],[43.76447258100018,68.63005653800008],[43.41548952800014,68.68267946700018],[43.37105957300008,68.61075351800002],[43.796703513000125,68.4772244350001],[44.141193532000045,68.31922556000006],[44.19559459800007,68.2297128690002],[44.177192465000076,68.10485905700011],[44.264976472000114,68.03869365400004],[44.15948854400011,67.9634323780001],[44.17453758100015,67.87866568800007],[44.053409524000074,67.78336981900003],[44.09505853100012,67.66216230300006],[43.93803748900007,67.53833896100019],[43.7565956040001,67.31276367400011],[43.79433059700011,67.20326098200013],[44.01235161000005,67.18109604500017],[44.18104545800014,67.11534269700019],[44.43985348300009,66.855067169],[44.34698853300006,66.74004817900015],[44.4802664930001,66.63396379400007],[44.29056558400015,66.482031909],[44.72083650300016,66.54482493600017],[44.99956847900006,66.53933194000007],[45.13834345900017,66.45943278900012],[45.44370256200017,66.40069073500007],[45.787406525,66.4527876160002],[46.18048056900017,66.48055183200006],[46.47534955300017,66.59246583000004],[46.712947507000194,66.56485299100018],[46.76668958800013,66.38811721000008],[46.90879855300017,66.32783405900017],[47.087432501000194,66.49512477700011],[47.40039047000005,66.55382844100018],[47.708473524000055,66.46818399900019],[47.83026559400008,66.54235294500018],[48.05875359300012,66.61472950600006],[48.979255541999976,66.85832521400005],[49.210418541000195,66.93264687900012],[49.57346357800003,67.14212304500018],[49.75205947100005,67.08875328800008],[49.96734949300014,67.09580263599997],[50.49135959300014,67.26100307500013],[51.012065547000134,67.13972783200012],[50.881790487000046,67.0994729040001],[50.95379656800003,66.98965706400014],[51.13037862500005,66.95132511200006],[51.71561450500013,66.98404169200006],[51.928047471000184,66.96607374200016],[52.06622649700017,66.86298773200014],[52.09261356700017,66.72790129200007],[52.14399362700016,66.07737156000019],[52.34900257400017,65.9825638530001],[52.59025151700018,66.04508212200005],[52.66079747000015,66.15998678300014],[52.594554619000064,66.35222623500005],[52.83464853600009,66.29576657400014],[53.205158496000195,66.12514857600019],[53.33897356900019,66.10364077999998],[53.513812525000105,66.16421344200018],[53.473781562000056,66.34150678700007],[53.65324749700011,66.5342124410002],[53.56023754000006,66.67102957600002],[53.09932758100018,66.76168639700012],[52.81526957600016,66.78974867300008],[52.41328858600008,66.78211929800005],[52.37698756999998,66.94393160300018],[52.751697534000186,66.85414381800007],[52.970127584000124,66.86033938600008],[53.442268623000075,66.9823096560001],[53.46923052400007,66.87257797000018],[53.556636507000064,66.8283478410001],[53.8316425590001,66.91800503600001],[54.04236947300012,67.17140656500015],[54.498401500000114,67.32137054800012],[54.79759956900017,67.33144073400018],[54.90994255300012,67.29430689100019],[54.960750632000156,67.15039330100018],[54.767032612000094,66.9156022790001],[54.81966761100017,66.80001114000004],[54.99509447500009,66.70488223900014],[55.178298571000084,66.65481545500006],[55.455512584000076,66.66218583000017],[55.461677474,66.748723616],[55.254119591000176,66.8710517930001],[55.747211532,66.88679250500007],[55.97986248700005,66.81330986800009],[56.30511855200018,66.65250473200012],[56.501277550000054,66.61366869200003],[56.86058861700019,66.5879942520001],[57.34915550400012,66.64344825300014],[57.666625619000115,66.71804383900007],[57.94430952200008,66.75560599700009],[58.38092453600018,66.78745957600017],[58.653140588000156,66.75990105200009],[58.80730859800002,66.69373598400011],[58.94704447900017,66.69020351500012],[59.275299589000156,66.75981019200003],[59.783851616,66.73865996800009],[59.9204905520001,66.75585678300001],[60.12477463100004,66.8400141090001],[60.24571258600014,66.94830410700013],[60.37472147500017,67.15201955800018],[60.64368853400015,67.17659479500009],[60.80064352699998,67.11366447200015],[60.862148592000096,66.93437908300007],[61.1492535860001,66.7812874780002],[61.12086458300013,66.66987756700001],[60.772792475000074,66.56182393900002],[60.79856163000011,66.46388810600007],[61.0153235140001,66.47670671800006],[61.66522259100009,66.66614627900003],[62.215896531000055,66.77994436100016],[62.41177356200012,66.7730779060002],[62.54663452900013,66.69744397100004],[61.96754861900018,66.56573141400014],[61.71244053400011,66.42453406400017],[61.77634449900012,66.19048316400017],[61.64694953900005,66.08415369300013],[60.803672579000136,65.8115802370001],[60.47578862000006,65.75578442200003],[60.356738605000146,65.68068374300015],[60.323036481000145,65.59399424400004],[60.393398535000074,65.38902117200007],[60.07432563200018,65.35122348300007],[59.881298616000095,65.38566405200015],[59.61761852700005,65.56098061000017],[59.280456639000136,65.46049667800014],[59.06774857900001,65.307664241],[58.93899550500015,65.10788677500005],[58.670188541000186,64.93460718800009],[58.67144750200015,64.84687330400004],[58.89350859300009,64.56467071700007],[58.88418154600009,64.47869166900011],[58.74269854100004,64.24897488300007],[58.77252152000017,64.1613546580001],[58.8721996160001,64.12146618700012],[59.069404508,64.1849758670001],[59.095878581000136,64.30277278800003],[59.351604580000185,64.43787163299999],[59.49917552900001,64.57063695600016],[59.38331549900005,64.70991065900006],[59.37891751400019,64.79875196000017],[59.53250851400014,64.89503119400007],[59.74271357000009,64.97434327600018],[59.93393361600005,65.00505289300014],[60.18823653500016,64.90755996000001],[60.43972062000006,64.95349111300015],[60.8563385920001,64.94563307800001],[61.186923535,64.98808507100006],[61.380054487000166,65.0719426600001],[61.368137600000125,65.36747431700013],[61.48084251400002,65.47477139500006],[61.68702660399998,65.55572364800008],[62.33591851200009,65.70375677500016],[62.38224059700019,65.62183574200009],[62.864795480000055,65.72837794499998],[63.06757349900005,65.82566468400006],[63.37593852100008,66.05240690000016],[63.77465459100006,66.3135972290001],[64.1818544890001,66.48874614800019],[64.98171956000016,66.68071201500015],[65.40500650900015,66.74330622400015],[66.31932060200018,66.84853682800014],[66.58583059000011,66.88640274600004],[66.9182126130001,66.97020903700013],[67.11669155500005,67.08520522900005],[67.26255762500011,67.26184227100009],[67.1399305490001,67.4538155140001],[66.93395248700017,67.57810488900009],[67.09899853000013,67.81575045200003],[67.13745151700016,67.99174695],[67.04427358700019,68.13668246100013],[67.29310664400009,68.22223520600011],[67.84828954500017,68.18565037800016],[68.15505261700002,68.32553612800012],[68.07746150700007,68.44586522100019],[67.86705059200006,68.46338339900012],[67.66199453900003,68.53216613400002],[67.16505463300001,68.73637846500003]],[[53.17669254700013,67.4687091510001],[53.32539756799997,67.48005439200006],[53.63603961700005,67.56238815000006],[53.78155549100012,67.55840473500007],[53.88640253900002,67.45305209100013],[53.74791757300011,67.38382729300008],[53.82922756600004,67.28186295000006],[53.567699613000116,67.17928756600003],[53.4550366090001,67.21537685600003],[53.173984522000126,67.15265272700009],[52.96685059500015,67.18314089400019],[52.65746650200009,67.39201389800007],[52.87624356300006,67.46455072100008],[53.17669254700013,67.4687091510001]]],[[[53.002933515000166,71.33441222100004],[52.68959450400001,71.42977782700007],[52.28879955500014,71.40478265700017],[52.17556356300014,71.32055659999997],[52.276359469000056,71.25950281700005],[52.55543862400003,71.24412772400007],[52.953704586000015,70.97953316900004],[53.16297153900007,70.97057593200009],[53.129913481000074,71.08361930700005],[53.2512546050001,71.12594959500018],[53.28144052100015,71.24222855300007],[53.078472567000176,71.2655830490001],[53.002933515000166,71.33441222100004]]],[[[55.73777753300004,73.31877113799999],[55.31450248600015,73.35239497500004],[54.95882061500009,73.433913007],[54.55120447300004,73.41169492800014],[54.39694258500003,73.31461304300012],[54.173168568999984,73.28847223400004],[53.89324954799997,73.32248650000014],[53.36404451200019,73.22031512400008],[53.13683659700001,73.12193555300018],[53.12119261300006,72.933142068],[52.58592662300009,72.87298012000008],[52.40117254500012,72.7635453210001],[52.659431555000026,72.68258451900005],[52.80694953100004,72.55850016500005],[52.67719649600008,72.48687076700003],[52.700084624000056,72.39271902800004],[52.53105147600019,72.32624014200019],[52.35907359800018,72.16064893900005],[52.06276359800012,72.14472567000018],[51.79676859400013,72.17768649900006],[51.639591481000195,72.1488527520001],[51.451702572000045,72.04134025899998],[51.39161656300013,71.90010535800019],[51.41282646600007,71.72419854700013],[51.503536596000174,71.59260669000008],[51.83489954800007,71.47609873900018],[52.19187156100014,71.52989664300003],[52.61009248800002,71.52988088500018],[52.61457848300006,71.49023666300002],[53.0043755370001,71.46431763900006],[53.440578496000114,71.31260602900005],[53.44648354700013,71.25388627100006],[53.73011759500014,71.19123070700005],[54.10834460600006,71.16326683400007],[53.49068048400011,71.07327268600005],[53.659439544000065,70.99985811100004],[53.63814163100011,70.93379144700003],[53.43366258800006,70.8914839580001],[53.54861854600006,70.81600927900018],[53.839542503000075,70.8199620170002],[54.042850594000015,70.76145616500014],[54.46430559400005,70.72864051100015],[54.62628151500019,70.66648769300014],[54.804790572000115,70.69555730700017],[55.19405755500014,70.59338660100002],[55.35963853200013,70.6376933410001],[55.437480596000114,70.73189051000003],[55.631862631000104,70.66889095200014],[55.818160487000114,70.67151599700014],[56.30324150900003,70.60783750500002],[56.237968611000156,70.72091189300016],[56.431320510000035,70.7276646900001],[56.775344494000194,70.61864110700009],[57.13179062700004,70.67221789700017],[57.29943455800003,70.62514965500003],[57.61674860199997,70.74750180500018],[57.44815047500009,70.83072739800019],[56.895194478000064,70.92934300300004],[56.278629559000194,71.19974504400011],[55.89217755400006,71.48283611300019],[55.52097357200006,71.87159951100017],[55.38797355500003,71.97538826000016],[55.371105478000175,72.09528367300004],[55.49534959100009,72.19198451700004],[55.476436497,72.41759266100007],[55.40342760600004,72.49967429200007],[55.813133524000136,72.77341819800017],[56.14590061300015,72.8291467900001],[56.20331547600006,72.97791400400007],[56.36035160600011,73.05862972000011],[56.04098852200008,73.12534581400018],[56.40222960600016,73.15416363500009],[56.42251951100002,73.23533113600013],[55.73777753300004,73.31877113799999]]],[[[55.082527616,73.68787344100008],[54.36684048899997,73.5887081510001],[54.27841157800009,73.51738335100009],[54.5813716130001,73.44420564800015],[54.880573536999975,73.46125879800019],[55.082527616,73.68787344100008]]],[[[55.06663552700002,73.74888196199998],[55.096725554000045,73.8413707310001],[54.77509348900014,73.99694438700016],[54.24040551400009,73.93157140900018],[54.05677461200014,73.80507574900014],[53.79993046700014,73.7998110760002],[53.70052361000012,73.7338429830001],[54.072830482000086,73.64367331900013],[54.337593514000105,73.62790243300014],[54.54984660400004,73.70546035100006],[55.06663552700002,73.74888196199998]]]]},"properties":{"objectid":527,"eco_name":"Northwest Russian-Novaya Zemlya tundra","biome_num":11,"biome_name":"Tundra","realm":"Palearctic","eco_biome_":"PA11","nnh":2,"eco_id":776,"shape_leng":165.358116615,"shape_area":62.3079373592,"nnh_name":"Nature Could Reach Half Protected","color":"#5DB3C8","color_bio":"#9ED7C2","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":284899.1154573242,"percentage":3.3340424931965145}}, + {"type":"Feature","geometry":null,"properties":{"objectid":530,"eco_name":"Northwest Hawai'i scrub","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Oceania","eco_biome_":"NO07","nnh":4,"eco_id":641,"shape_leng":0.431909700448,"shape_area":0.00133356825695,"nnh_name":"Nature Imperiled","color":"#4AFB48","color_bio":"#FEAA01","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":14.798105015571439,"percentage":0.00006902418087122884}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[76.56857250700006,33.48662208300004],[76.4505846470002,33.51992807800019],[76.22887459100008,33.535662587000104],[76.26412954600005,33.45682307600009],[76.36381552000012,33.37532030000011],[76.32765951100004,33.23851439600003],[76.37641150900004,33.1352003990001],[76.36071756900003,33.04664106500013],[76.39270760500017,32.936643338000124],[76.34619156300005,32.81756717200011],[76.37162762200012,32.75777000400018],[76.49063857700014,32.63127501500014],[76.5120085750001,32.53371703800019],[76.6902465610001,32.50521890200014],[76.88906848900007,32.37775798300015],[77.00755356400009,32.263004364000096],[77.15847056900003,32.194166643000074],[77.2179566010002,32.09332094800004],[77.2373806550001,31.97699488400019],[77.36477653100013,31.826389854000013],[77.41264356900012,31.692365233000146],[77.57106757400015,31.770109732000094],[77.62322949800006,31.838690464000138],[77.7027965580001,31.751044088000185],[77.61701951400016,31.731546775000027],[77.61977364000012,31.644738757000027],[77.83680760000004,31.717217409000114],[77.96080763200013,31.69172435300004],[78.04308355500007,31.613904752000053],[78.18704961500015,31.571750149000138],[78.23648054800009,31.639434018000088],[78.36296061800005,31.65258455300011],[78.42902359300018,31.717741278],[78.53648361500012,31.755326067],[78.74507850800018,31.908434101000125],[78.76956154400011,31.976250906000075],[78.70640558000008,32.19715646800006],[78.65856955600003,32.300814123000066],[78.65856955600003,32.42815618700013],[78.61824757200014,32.57387272400018],[78.4205325580001,32.56415692500019],[78.39409653799999,32.52216610500005],[78.2447665630001,32.533697927000105],[78.32832357600017,32.62373314600006],[78.24681057300012,32.77989135500002],[78.0413436400001,32.663263878],[77.96742263000016,32.809969312000135],[77.76175654200006,33.020022991000076],[77.70446757500008,33.03219150200016],[77.55850963900019,32.956135789000086],[77.40321359200016,32.91518600100011],[77.301315634,32.915182984000126],[77.06292760100007,32.999892509000176],[77.00984953500006,33.040102175000186],[76.84040852400011,33.007049313000095],[76.723129605,33.01246201100008],[76.6464465900001,33.05125295600004],[76.65366357700015,33.21273099100006],[76.56796264000013,33.29302073900004],[76.60494963200017,33.337224382000045],[76.60361456200019,33.45860791900009],[76.56857250700006,33.48662208300004]],[[77.65058149300017,32.38191574200016],[77.7030335990001,32.41688772400005],[77.83151258400017,32.362152388000084],[77.94783060200007,32.22455657400019],[77.86192363800018,32.17134339100011],[77.81098949400007,32.07860048200013],[77.85964158100006,32.01930237300013],[77.74180560100018,31.93492225600005],[77.71900162700001,32.01246257200006],[77.59660354500016,32.08239932800018],[77.52970154100012,32.07327864400014],[77.41567262100011,32.246602153000026],[77.52590152100015,32.23291836100009],[77.58064255700009,32.183505197000045],[77.64525563100005,32.310457838000104],[77.65058149300017,32.38191574200016]]],[[[74.55986064100011,35.461488327000154],[74.48034655500004,35.377727130000096],[74.35118863500003,35.35376796300005],[74.26687658000003,35.37393934800002],[74.05589250899999,35.25704029800005],[74.03624750800003,35.350448897000035],[73.90637964100017,35.41463751200018],[73.8391795760001,35.318958590000136],[73.72685955900016,35.36243770100009],[73.74771155500008,35.46162528700012],[73.55914253800017,35.48055363700007],[73.43855260000015,35.51200488400008],[73.25621753900015,35.39389699500015],[73.25797254200018,35.32357852700005],[73.3529586160002,35.26275122300012],[73.282020558,35.22476108500007],[73.22802752200016,35.14090517300008],[73.07095350700007,35.066546963000064],[72.98603862500005,34.959436802000084],[73.19022363000005,34.90250037700014],[73.21642261000011,34.82609011000005],[73.17063160200013,34.75857186800005],[73.22190051900009,34.70958433800007],[73.49593360000017,34.75142327800006],[73.57956655400005,34.79704195400018],[73.69747160100007,34.78011235300016],[73.72324360599998,34.737484508000136],[73.60540058500015,34.61271669400014],[73.69362648600014,34.57849975400018],[73.77837356200013,34.466911644000106],[73.83058963400009,34.49650093600019],[73.77281954600016,34.579197631000056],[74.00483649300014,34.70607517000013],[74.13987750300004,34.68851675900015],[74.31508660500003,34.800012835000075],[74.41407051100009,34.67897597400008],[74.53946663200003,34.709405133000075],[74.6099316160001,34.56995876200011],[74.71366152400014,34.588097368000035],[74.87671653000012,34.51195046000004],[75.03182264300011,34.476409347000185],[75.10556763300019,34.36191456100016],[75.19049860800004,34.40258238100006],[75.34980757400001,34.34936467200015],[75.14705654500017,34.23934783400006],[75.23338361000009,34.02171389800009],[75.28883358700017,34.05200207200005],[75.27240757200008,34.16621070000019],[75.3455965060001,34.19475510400014],[75.44994349000001,34.16640884800006],[75.36560058900017,34.05844088300012],[75.33969162300014,33.95375677900006],[75.45433057800011,33.99381372700003],[75.56743665000016,33.95556475600017],[75.52718356600013,33.87629793600007],[75.62375650100012,33.811689723000086],[75.86099252499997,33.74797150100005],[75.81783259600019,33.669691901000135],[75.97090961800006,33.686022196000124],[76.08784454300013,33.77015672200008],[76.12622863100006,33.84764255600004],[76.10952752100008,33.92824126000016],[75.89310460200016,33.87560005800009],[75.88696251000016,33.98073795800008],[75.97818762400004,34.01348605400017],[75.90454858200007,34.00663116599998],[75.7215575530002,34.153470207000055],[75.69029255200013,34.2253792250001],[75.54859161700011,34.25789816000014],[75.35994749800005,34.497648754000124],[75.36583762900005,34.549302400000045],[74.92999257700006,34.52931793100004],[74.75390656100012,34.63644703600016],[74.71420249200014,34.687730704000046],[74.92852758800007,34.67403618300017],[75.02897665100016,34.63617630000016],[75.11524152300018,34.653349814000194],[75.07877353800018,34.718244017000075],[74.85919164700005,34.911068024000144],[74.63279761600006,34.97318832000013],[74.39498156500002,35.0221751790001],[74.36685960900007,35.07600392900008],[74.54247255000018,35.32982757100018],[74.55986064100011,35.461488327000154]]],[[[73.6085355840001,35.82475665800018],[73.34765655900003,35.784497372000146],[73.45245365100004,35.71645995500006],[73.50804863500008,35.64643183600009],[73.60133351800016,35.72127016100018],[73.6085355840001,35.82475665800018]]],[[[74.54116849400015,35.55479299100017],[74.4544825160001,35.62574110800006],[74.23988349900009,35.68029003100014],[73.96704064800008,35.80755699300005],[73.65119963900008,35.82528354500016],[73.64631651000008,35.69882862100013],[73.69130654300011,35.61871053500016],[73.77002753400006,35.62075152800003],[73.96634662600002,35.71681903500013],[73.99458358200013,35.57793257600008],[74.08482348700011,35.6346710200001],[74.30713653700002,35.543654280000055],[74.40622756400018,35.46762622700015],[74.54116849400015,35.55479299100017]]],[[[73.338668644,35.781148633999976],[73.10648355600006,35.774888861000136],[73.04016862000014,35.79057827500014],[72.87993663900005,35.771046932000104],[72.67106648400011,35.79337816600008],[72.4420925030002,35.780446733000076],[72.2846525330001,35.749338305000094],[72.21708651500006,35.76241809700019],[72.22530363000004,35.88668702100017],[72.19081159500013,35.94082372200012],[72.09599248900008,35.955399684000156],[72.01139058700016,36.05116125100017],[71.85975659400003,35.9618272620001],[71.8192515500001,36.055594272],[71.59197959800002,36.04276141100007],[71.4008336490001,36.08867462600011],[71.2555466,36.20614180300015],[71.20923658499999,36.14352127500018],[71.18873562400006,36.0340336700001],[71.24901558900012,35.91827237900014],[71.26323649400018,35.584078355000145],[71.21171561700015,35.49891335700016],[71.2707595870001,35.52299875600005],[71.40605155100013,35.44476073100009],[71.47831763800019,35.44104570400009],[71.57648464400017,35.35669291200003],[71.5502625310001,35.29269523700003],[71.60415649200019,35.24721033700018],[71.67751356700006,35.19073106100012],[71.74359850400003,35.20175158800009],[71.82013651100004,35.27839084900006],[71.92307248500009,35.29466029100013],[71.92192852300013,35.41666626800014],[72.01969152100008,35.464234071000135],[72.07737762300013,35.382178089000035],[72.08934061100018,35.21204339100012],[72.16539749700007,35.146314183000186],[72.25154854200014,35.12075273100015],[72.4075015620001,35.224780196000154],[72.52021754000003,35.2564604370001],[72.57805652800016,35.34149920400017],[72.53662159600003,35.53923332900007],[72.62481665100012,35.51773475300013],[72.62563355200012,35.37121942100015],[72.67439259100007,35.35077679700015],[72.59430652400016,35.21062031200006],[72.66230756300007,35.12154549100018],[72.80626658300014,35.10262518900004],[72.87239862500019,35.125833673000045],[72.88308756400005,35.21841028500006],[73.08860059800014,35.193710828],[73.15541056900008,35.247500518000095],[73.12978357000003,35.312589014000025],[73.0203935310002,35.35918770200004],[73.01364157300003,35.41961518900018],[72.81862653700011,35.464425178000056],[72.88617663000002,35.64184978500015],[73.00060251700012,35.66741241],[72.89438653700012,35.516804027000035],[73.12304653200005,35.46427614800018],[73.23676263900018,35.48157572600013],[73.24675755600003,35.54929194800019],[73.31878660200005,35.64990261400004],[73.338668644,35.781148633999976]]]]},"properties":{"objectid":531,"eco_name":"Northwestern Himalayan alpine shrub and meadows","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Palearctic","eco_biome_":"PA10","nnh":3,"eco_id":760,"shape_leng":48.2394257672,"shape_area":4.82159558126,"nnh_name":"Nature Could Recover","color":"#F9D6AE","color_bio":"#D6C39D","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":49514.700675563894,"percentage":1.0139589180882924}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[70.25509655000013,22.967576328000177],[70.21690357000017,23.067674189000172],[70.31237059800003,23.214286584000092],[70.5831905600001,23.178338613000165],[70.78999356900005,23.27486444300007],[70.92571250800012,23.40238722100014],[71.03491948600015,23.431075625000062],[71.05902064300005,23.469333649000077],[70.99372058800003,23.633006234000106],[70.9356236050001,23.711112496000112],[70.76024653000013,23.709931486000073],[70.72000149300015,23.736440093000056],[70.74726849400014,23.82471578300016],[70.8331065590001,23.786837627000125],[70.84726761700011,23.87997280900015],[70.60234857300009,23.920383808000054],[70.56276654400006,23.847032600000034],[70.62454955300007,23.804817647000107],[70.61844652100012,23.720480949000148],[70.54415151100005,23.732298427000046],[70.52471957699998,23.664265704000172],[70.33464852300006,23.56717979600012],[70.28437051500009,23.51285148400018],[70.26859258800016,23.421027232000085],[70.18444062700007,23.45268534500019],[70.07330363200015,23.451334685000177],[70.0132065590002,23.553819376999968],[69.94206264100018,23.561299052000038],[69.85140263500017,23.474534452000114],[69.64010659100018,23.45184447300005],[69.42899360700005,23.522301913000092],[69.324226523,23.524710703999972],[69.18193064100012,23.57339950300019],[69.21761357600013,23.63096540800018],[69.45117949900003,23.599226997000017],[69.66953260300005,23.525210767999965],[69.84795348200015,23.55963993800009],[69.94450361899999,23.746350520000135],[69.93283064600007,23.884912600000064],[69.8234635730002,23.94434046100008],[69.7255406480001,23.943470755000078],[69.66562663600007,23.873644137000042],[69.69837154700019,23.792288379000126],[69.57362351400008,23.820115794000117],[69.51061255700006,23.778117933000033],[69.40614353299998,23.762268760000097],[69.34806851100006,23.803195749000054],[69.22207660400011,23.81747599800002],[69.04718048300015,23.706881647000046],[68.85624659600012,23.820616864000044],[68.68229662300013,23.79432702500003],[68.5512775860002,23.716092185000093],[68.45641355300006,23.615797349000104],[68.4470905300002,23.476863280000032],[68.49594864300019,23.472404611000172],[68.5113374820001,23.319622297000024],[68.58930963400019,23.208806999000103],[68.71558350800012,23.139941450000094],[68.74433863300015,23.086743186999968],[69.19609052499999,22.833036389000142],[69.36078654000016,22.82054819100017],[69.45098855900005,22.774468511000066],[69.544479637,22.78875982300002],[69.6905664860002,22.741201407],[69.73876159100018,22.801530994000075],[69.8423305660001,22.857148274000053],[70.19821159100013,22.944530788000122],[70.25509655000013,22.967576328000177]]],[[[74.8834225560002,32.02642430800012],[74.80323054100006,31.949255646000097],[74.73416164700018,31.93591417100015],[74.51088752800007,32.03073495400008],[74.40618850400017,32.11995008700006],[74.30034652500007,32.24571719100015],[74.19773861900018,32.33312317500008],[74.05024763300014,32.41144066100014],[73.86150360200014,32.56729695400003],[73.74114249000019,32.61421633300017],[73.36640955900015,32.69406284600018],[73.14376056200007,32.651534243000185],[73.01509851500015,32.606575726000074],[72.58827255900019,32.5620669810001],[72.15239750100017,32.39581226700005],[71.93894948600007,32.41879963700006],[71.89830060800011,32.449861461000125],[71.89054164800007,32.55184743000012],[72.02362850100019,32.80631044300014],[72.04772949000011,32.93055573000004],[72.03791059399998,33.09962156700004],[72.0110476000001,33.189195948000076],[72.00116751500019,33.36400255100011],[71.90714251100007,33.46193067300004],[71.78585855100016,33.47409935200011],[71.57270055000004,33.4668976210001],[71.31305651500003,33.40989213000012],[71.08155052800004,33.38989173500005],[70.91072851500019,33.35092208800006],[70.88667262000007,33.2584266130001],[71.08889056100008,33.25175512100003],[71.03856662000015,33.199018366000075],[70.85399660900015,33.197896532000186],[70.79077962400015,33.104981458000054],[70.64894860200013,33.07605936600015],[70.61148048900003,33.174856188000035],[70.73806751200004,33.25336478200006],[70.75917850800005,33.315461944000106],[70.62304651000017,33.37004154500005],[70.52134653200005,33.30987339400008],[70.46781953000004,33.20699827300018],[70.25393649500012,33.01303399200009],[70.22902648500019,32.84744714800007],[70.37362655200008,32.784300236000036],[70.41573354600007,32.73938061100017],[70.39256261300017,32.65687401800017],[70.44341260200014,32.59761496800013],[70.57613350100019,32.55242745700008],[70.57196853300019,32.452500587000145],[70.40335062499997,32.456239251000056],[70.33582249200015,32.40400188900014],[70.33524363800018,32.236226363000014],[70.16542862699998,32.148880058000145],[70.14821655600008,32.05500324500014],[70.19023855700004,31.97981556200017],[70.21427953200009,31.85001978000014],[70.23043062100004,31.576108069000156],[70.35439259900016,31.36122641300011],[70.37171950200019,31.183654621000187],[70.47193152400007,30.94644357600015],[70.53810162100001,30.514843119999966],[70.5217976460001,30.311512398000048],[70.35545358000013,30.03023500600017],[70.30886863900008,29.928894611000032],[70.14865157700007,29.808452362000082],[70.05496251900007,29.58696945500003],[70.0502475310002,29.43704620900013],[70.02192658800004,29.328268719000107],[69.89758256300013,29.078809199000148],[69.82289159200002,28.999462414999982],[69.44249752400015,28.830718275000038],[69.25659948400016,28.772901584000067],[69.13741250900011,28.780160144000092],[68.91091152400014,28.753792353],[68.70803862200006,28.758421008000084],[68.58457151100009,28.79954044500016],[68.49691055000011,28.95289423700001],[68.6112675380001,28.989222914000038],[68.73544358900011,28.95728518100009],[69.05061354300011,28.950394251000148],[69.10839855100005,29.023801450000065],[69.01415259900011,29.081109360000085],[68.82685059100015,29.078719345000138],[68.54666854500016,29.16202691300009],[68.46237157700006,29.107189149000135],[68.43409757400002,29.190914807000183],[68.26094052999997,29.31374103700017],[68.312728622,29.450204958000086],[68.20060759100005,29.52828272200003],[68.14727052300009,29.527644021000185],[68.04189256600006,29.619346233000158],[67.91847256200015,29.667016463000152],[67.75644651800002,29.597160173000134],[67.73078163300005,29.498933991000058],[67.79222148600013,29.43546554900007],[67.69936357800015,29.299751808000053],[67.58203855800008,29.214583960000027],[67.59290351700008,29.162587997000117],[67.44290952700004,29.015552819000106],[67.439437575,28.87348760700013],[67.35652948800004,28.786972787000025],[67.30966157400013,28.64431665100011],[67.31513260999998,28.510112155000172],[67.3850175660001,28.413336880000145],[67.36959050500008,28.22623369000013],[67.48947954900018,28.018991134000146],[67.51776863900011,27.9394855970001],[67.49545249300019,27.742782781000187],[67.37230657700007,27.59244127800008],[67.40167257500013,27.497254206000093],[67.3935625810002,27.358718278000083],[67.35366857700018,27.270805022000104],[67.38345350200018,27.206894853999984],[67.33120759100018,26.94192059800008],[67.3014525050001,26.86481278900004],[67.29469250000005,26.733038541999974],[67.33370958900008,26.50190890300007],[67.41219354000015,26.49340747399998],[67.67323249200007,26.164664202000097],[67.72222857100007,26.06648780800009],[67.81249948900006,26.096159578000027],[67.80925753700006,26.251330398000107],[67.87426757800012,26.273788199000137],[67.90994263400012,26.157943592000038],[67.91638161200018,26.02881048300003],[67.96196759900016,25.88925598500009],[67.9133076330001,25.720484688000113],[67.91237657100015,25.64409621400017],[67.96018258800012,25.481285959000104],[67.949096516,25.356672875000072],[67.91349756700004,25.24299817400015],[67.81519360100009,25.325283485000114],[67.74453751000004,25.34677233800005],[67.73739663100008,25.58457095500006],[67.6184616160001,25.745133519000035],[67.60025763099998,25.823819976000152],[67.54447958600014,25.870535843000027],[67.42505657600003,26.09229769900014],[67.37019349900004,26.035760086000153],[67.39124263700012,25.88243713999998],[67.35878757300009,25.832328614],[67.26097864200017,25.89694654900012],[67.23013256800004,25.761461801000166],[67.18093163400016,25.745582454000157],[67.1995315800001,25.641497489000187],[67.14116654400016,25.446117505000075],[67.07858256100013,25.427546560000167],[67.05120056000015,25.569661728000085],[66.95157661100018,25.698535669000137],[66.85353064000014,25.658677540000156],[66.73226947900008,26.061038900000085],[66.58912652200019,26.39132410700006],[66.48705254300012,26.497161225000184],[66.41668663300004,26.774845966000044],[66.35044864300005,26.785513447000085],[66.34500158000014,26.623933488000034],[66.37150549300009,26.485536867000064],[66.24912249800008,26.355445706000012],[66.21652963500014,26.287362691000112],[66.27339162800013,26.133530796],[66.30118551600015,25.88664317900009],[66.21984853300012,25.716766979000113],[66.33780655400005,25.70667433000017],[66.37081163900001,25.645487274000175],[66.53740649100018,25.645327180000038],[66.56297263700003,25.449018481000167],[66.5590596290001,25.350722059000134],[66.66368858000016,25.28517507300012],[66.73705252800016,25.19665932500004],[66.70426956400019,25.08434467300009],[66.6902085860001,24.891673887000024],[66.81519349100006,24.835623597999984],[66.95350662800007,24.94865121500004],[67.09002654099999,24.980338665000147],[67.30194854600018,24.843065387000138],[67.30864753100013,24.75451979999997],[67.4930266020001,24.768048862000114],[67.5203324960001,24.56330009000004],[67.4619905940001,24.44127600799999],[67.51381657200005,24.42433467300009],[67.54437263199998,24.301614725000036],[67.44153556500004,24.060175681000032],[67.67512562799999,24.08040791900015],[67.79825561800004,23.979130723000083],[67.9026875940001,23.96313067600005],[67.95162952700008,23.988846523000177],[67.91858655600015,24.128800334000175],[68.05721250600004,24.081233704],[68.19553352200006,24.13887990800015],[68.22994961600011,24.073953015000086],[68.40165759700011,24.1424398690001],[68.46877250100016,24.124240746000055],[68.5238494840001,24.165948426],[68.61981154700015,24.158276973000056],[68.68578349500012,24.19261712700012],[68.73454253500017,24.313993120000077],[68.82937656100006,24.30237177900017],[68.844512602,24.215777164000144],[68.93930857400017,24.286763669000152],[68.97487650900007,24.230295291000118],[69.1028515750001,24.26452463600009],[69.19496148200011,24.23216831100018],[69.24397248200006,24.253401348000068],[69.17680359800016,24.307140747],[69.194099488,24.454554284000153],[69.23636657500003,24.522669820000033],[69.31952662200007,24.572389425999972],[69.31086761300014,24.648204913000086],[69.368698554,24.743480163000072],[69.46909363800012,24.841845317000093],[69.64756061700018,25.050577505000035],[69.69052860000005,25.14425181100006],[69.73005648200018,25.318283590000135],[69.81971753300007,25.48924256400005],[69.74694048500015,25.532543644000043],[69.57821662900005,25.484365973000024],[69.50499752000007,25.660037588000023],[69.48570254700007,25.782152027000166],[69.32585948500014,25.886067174000175],[69.32261652700004,26.01482008000005],[69.11184653100003,26.235491116000162],[69.0558926330001,26.26713263300013],[68.9317935270002,26.268299729000034],[68.91251364100009,26.140514430000167],[68.78523259700012,26.168612246000123],[68.75592057900013,26.25082731700013],[68.52271256300008,26.371834841000123],[68.39775062400003,26.507948735000127],[68.36019148400015,26.588454065000178],[68.41240654900008,26.694019274000084],[68.35431660800003,26.7567566460001],[68.47132864700006,26.950197057000025],[68.62796764200004,27.097741687000052],[68.73428353400016,27.12007158000017],[68.83010059000003,27.090169811000123],[68.95770249300017,27.140691732999983],[69.01625058900015,27.108552163000127],[69.03775754700013,27.313932093000176],[69.31741354400003,27.716255064000052],[69.40321355500004,27.76900372199998],[69.59596262700006,27.788501872000154],[69.76162759100015,27.93395588800007],[69.83213750200014,27.965975597000067],[69.87640350600009,28.079018637000047],[70.00845351700019,28.04746110700006],[70.10031850600018,28.151327639000158],[70.158920582,28.12374899800011],[70.25295262700007,28.14487709400015],[70.36354060800011,28.21851697500017],[70.3827135410001,28.30143176700011],[70.45255256400003,28.33747898000007],[70.54826350500008,28.472754683000062],[70.68348657000018,28.495462600000167],[70.78948964900007,28.655936316000123],[70.77529154400014,28.707665231000135],[70.92323263800012,28.74472162500018],[70.89552357500014,28.864740923000113],[71.03845949900006,29.058851217000097],[71.15030660900004,29.069861685000035],[71.32187662400014,29.002462466000168],[71.44096351900009,29.023391575000176],[71.43055755400019,29.1754966310001],[71.5007176040001,29.22269361900004],[71.55711356300009,29.30973046400004],[71.78746754100007,29.42194688100011],[72.01606752200013,29.48108372200005],[72.31128653399998,29.6054897730001],[72.49471258300014,29.72731520400015],[72.66207857000006,29.7243744970001],[72.79399849400016,29.77597332500011],[72.85665154400016,29.84819968200003],[73.05123155900003,29.83182027000015],[73.15055057400019,29.777743416000078],[73.2567216270001,29.782742047000056],[73.33730356800004,29.744026707000046],[73.39813958900004,29.94048711800008],[73.56462061400009,30.004754690000084],[73.80752548600009,30.066875657000026],[74.061561526,29.932255419000114],[74.24504859500007,29.857042255000067],[74.30935656800011,29.786290107000184],[74.35362961300018,29.614579444000185],[74.52474264600016,29.416765020000128],[74.61406758200019,29.398366743000054],[74.70947258400008,29.470615228000042],[74.79968264900015,29.47216504200003],[74.87718960500007,29.43505751800018],[75.0245436300001,29.221894824000117],[75.15136752500018,29.134507280000093],[75.23444358500012,29.12157752400003],[75.49405660800011,29.01683173000015],[75.62991351200014,28.930997018000028],[75.83025357100018,28.674406510000154],[76.01587651700015,28.64927655800011],[76.08222950600015,28.621929593],[76.09573359100006,28.48811385],[76.00464661000012,28.379597373000024],[75.80726653700003,28.27133268800003],[75.70253750600006,28.178626827000073],[75.47161858800001,28.015802491000045],[75.37357362300008,27.97947498700006],[75.10346260200015,27.949138365000124],[74.91842655700003,27.80897098300011],[74.85320261000004,27.67623684000006],[74.88552859300012,27.407489052000017],[74.8190076300001,27.178818999000043],[74.75997153900016,27.110431218000087],[74.57726264500008,26.993406271000083],[74.43611961000005,26.812115261000088],[74.38339961800017,26.715129432000026],[74.2575076240002,26.585065261000068],[74.16826650600018,26.534606539000094],[74.07362358700016,26.520840269000075],[73.96015960800008,26.552536771],[73.94953152300008,26.593885035000085],[74.065887594,26.833953136000105],[74.17218052000015,26.955117737000023],[74.21688053900004,27.10230932200011],[74.19444251900012,27.23564645800019],[74.10735353900014,27.379910244000087],[73.92945854100014,27.519003401000134],[73.67421751900014,27.519774536000057],[73.61258655800009,27.503354052000134],[73.57615662800015,27.360040104000177],[73.58315249900016,27.181297024000173],[73.5633924980001,27.06328301299999],[73.43636358200018,26.79802494600017],[73.32879660700007,26.659440906000043],[73.12481662200008,26.517538302000162],[72.80732756400005,26.36366416200002],[72.60162359000003,26.24411877700004],[72.42539256700007,26.065778699000134],[72.24308751400014,25.932651948000057],[72.067413552,25.732454213999972],[72.122962604,25.693404939000118],[72.25285360400011,25.679115805000038],[72.2623295140001,25.644787218000147],[72.14644651700019,25.523924030000046],[72.0298916270001,25.286093227000038],[71.94072762300016,25.189156852000053],[71.91148349800017,25.067015758000082],[71.95948749600012,24.99911781600008],[72.04174062100009,24.958038779000162],[71.7030865860001,24.552010504000123],[71.60521663500009,24.556100370000138],[71.30792964000011,24.712761661000172],[71.13120257500015,24.75412065400019],[71.08521258100006,24.69305278900015],[71.14369949000002,24.708132838999973],[71.25254051500008,24.651935531000163],[71.3412785500002,24.655494487000112],[71.2866285410002,24.52490091500016],[71.36379955100006,24.47292439800009],[71.34472653000017,24.37655816000006],[71.36596660800006,24.294752294000034],[71.29493752200017,24.269843457000093],[71.34517663800011,24.093062245000056],[71.29680651899997,23.922271580000086],[71.12242152600004,23.904541676000065],[71.078773603,23.85096522100008],[71.07852164300016,23.69115233500014],[71.17590360000008,23.75625893500012],[71.29374662100014,23.725330718],[71.26364854800016,23.636226226000076],[71.43035152700008,23.63725602700009],[71.45809160300007,23.546369708999976],[71.51943255000015,23.506572768000126],[71.53607951200013,23.410557564000158],[71.65936255600008,23.301600367000106],[71.68441053200007,23.10491330900004],[71.58766962300001,23.143130429000053],[71.43279250400019,23.124502320000033],[71.33461761900014,23.15065100800018],[71.236007546,23.129131142000062],[71.06340052200017,23.162169419000065],[70.94609059100003,23.117844574000173],[70.84636656200007,23.140491470000143],[70.69326758000017,23.111571893000132],[70.60463750400004,23.07104606100006],[70.60028863700018,22.976210191],[70.38059258400017,22.691543828000135],[70.19077248400004,22.589048239000192],[70.1396334870002,22.55130218200003],[69.97399853100006,22.547931484000173],[69.93895748200003,22.45640613000012],[69.83661662300011,22.387289962000068],[69.71508757600009,22.374511583000128],[69.6194765480002,22.302625364000107],[69.53093749900006,22.331092822000073],[69.46057158900015,22.271524145000114],[69.33766154000006,22.278136796000013],[69.25438649400019,22.220029923000027],[69.15775253800001,22.197761050000054],[69.18972061400007,22.418488244000173],[69.04653960200011,22.407664860000125],[68.93640156200013,22.327213174000065],[68.99414063800015,22.18930035700015],[69.25892663600013,21.90940648100019],[69.62455749000014,21.606482824000125],[69.72290051600015,21.514077035000128],[70.02208752100012,21.17714447600008],[70.25444058300013,20.97243677500012],[70.44180260600018,20.848953739000024],[70.826927588,20.69027542700013],[70.91358154700015,20.740750913000113],[70.98790757000006,20.724140663000128],[71.140167524,20.7567088830001],[71.32478363500007,20.846274883000035],[71.47551758000014,20.88979154500015],[71.5008086310001,20.936818883000058],[71.75633949900009,21.02150410100012],[71.80843353100005,21.07024134800008],[71.99933657200012,21.139386684000044],[72.10504963800008,21.204803918000152],[72.0822905920001,21.253352404],[72.20987656900019,21.42648279400015],[72.26711256300013,21.58127425000015],[72.2040325390002,21.749045251000155],[72.13820660300019,21.783112323000125],[72.14858256100018,21.946584580000092],[72.24320251300014,22.02249042500017],[72.28463761400002,22.18239098600003],[72.27377349400018,22.253308090000075],[72.3237225960001,22.429706583000154],[72.37976064800006,22.509065605000046],[72.38421663500009,22.621688544],[72.5160906270001,23.03948668700008],[72.55605352900011,23.22037654000019],[72.54392256800014,23.376008365000132],[72.63601655000019,23.669164591000026],[72.64082357200016,23.749289383000075],[72.59181961300004,23.92643151900012],[72.58998162900019,24.022135587000093],[72.4707866080002,24.26005406400003],[72.59169757300003,24.406376613000134],[72.54303760700003,24.551959710000176],[72.55090352000008,24.62113522200019],[72.61296061700006,24.718352391],[72.69097149300012,24.77386875300016],[72.76278663300008,24.900363742000025],[72.83493051200008,24.921001664000187],[72.91867058700018,25.03736494300017],[73.36971253200016,25.186860042000035],[73.46101358600015,25.240625256999977],[73.55103254300013,25.34018265400016],[73.72630350300017,25.64373830700015],[73.7617185530001,25.67656569500008],[73.9019166130002,25.96097456700005],[74.17302658900007,26.11592662000004],[74.30409256500008,26.267149564000192],[74.39752161700005,26.32229812900016],[74.56979353200018,26.535396618000163],[74.64571362500016,26.608965252000075],[74.74552952000005,26.778194537000104],[74.84008761300015,27.001195909000103],[74.97471656900007,27.109350959000153],[75.10964157300009,27.119091736000087],[75.28494254000015,27.164438670000095],[75.52017260600019,27.289555339000117],[75.67331651600006,27.51433468099998],[75.685836564,27.69876488200009],[75.78874152500009,27.809260997000138],[75.93430350000011,27.880009121000057],[76.01846350700015,27.875489264000123],[76.21190660100018,27.809492002000184],[76.34932756800009,27.815121959000123],[76.48876958000011,27.876709333000065],[76.56918354800007,27.887647885000092],[76.72247363700012,27.76159194000013],[76.87600764000001,27.790550745000132],[76.93893461100004,27.91081881800011],[76.9711155870001,28.127261686000168],[77.05593860300019,28.255958434000036],[77.04984261200002,28.343702878000045],[77.13754263300007,28.40690729],[77.16952562900008,28.643220633000055],[77.09252963400007,28.86458988100003],[77.08290050300013,29.162958142000093],[77.06365163000004,29.403573581000103],[77.08315263100019,29.56400253700008],[77.14267755499998,29.791402733000098],[77.31188957200004,30.07401234500003],[77.47161059300015,30.26719308500003],[77.59942657000005,30.380927967000105],[77.63153864700018,30.488906159000067],[77.80381056200008,30.570133003000137],[77.58270249400005,30.703258245000143],[77.46504957400003,30.74428699100008],[77.47617353300018,30.832794692000107],[77.33145159300011,30.8834518970001],[77.28098264500011,30.830274756000165],[77.37201665200013,30.770306095000137],[77.1392515350002,30.720928806000188],[76.92169152700012,30.824445143000162],[76.60572864600016,31.16208329000017],[76.44840250200008,31.259569686000134],[76.30101763100015,31.382084612000142],[76.36080155600018,31.430612981000024],[76.42091354800004,31.55313696000013],[76.39288362500014,31.593398594000178],[76.24447649800004,31.62224960700013],[76.10807057900013,31.73345382600013],[75.99896954700017,31.913738002000173],[75.88426957300004,31.9895714270001],[75.66929655500007,32.027083964000155],[75.57604955800014,32.07595263900015],[75.49928255700002,32.174349477000135],[75.49421653500008,32.28645575600018],[75.53473649900019,32.36902303400012],[75.46920761800004,32.55275519000014],[75.403297528,32.621483108000064],[75.27731350000005,32.63746153000011],[75.12293963000019,32.77424932800011],[75.08822664900015,32.88855703000013],[74.9877475780001,33.03924017999998],[75.03265362500008,33.135078358000044],[74.7855836170001,33.163958709000156],[74.60238656200005,33.06398171400002],[74.37713649300002,33.055322705000094],[74.3164365940001,32.932863435000115],[74.40741762700014,32.905566426000064],[74.46891749400004,32.776351510000154],[74.61488364400003,32.75698093200003],[74.65477764800005,32.69484085400006],[74.64243361900003,32.60031595300006],[74.70591765100005,32.47866872100013],[74.82076263300007,32.49589906400013],[74.97537253700011,32.441861773000085],[75.03090650100012,32.4893072000001],[75.10069255000013,32.47176085900003],[75.3257215050001,32.334974067000076],[75.38169049000015,32.25851468100012],[75.24182854500009,32.08551924000005],[74.99459861100019,32.02919419200015],[74.8834225560002,32.02642430800012]],[[71.91483357700014,32.24247825600014],[71.99817651700016,32.273815175000095],[72.0659715290002,32.24301620700015],[72.18846851800015,32.239918088000024],[72.25763648600008,32.27299425100006],[72.29683663600008,32.15520789200008],[72.23020151100019,31.992354219000106],[72.2550815140001,31.90145717300004],[72.21056355000007,31.807849251000107],[72.23961656800003,31.767819796000026],[72.14660661100015,31.704464678000193],[72.1057666260001,31.56267958899997],[72.10085248400009,31.441162612000085],[72.03074658100013,31.17104203600013],[71.94657852700004,31.017578274000073],[71.98258953000004,31.001327775000107],[71.97973649800008,30.868483327000092],[71.7909165260001,30.826803978000044],[71.82710254400007,30.76512607899997],[71.72118361800011,30.72892832700012],[71.58146651200008,30.583093773000144],[71.51670859900008,30.45230121400016],[71.40993455199998,30.35278203900009],[71.33428150500004,30.18983683600004],[71.2395626460002,30.056571784000027],[71.070426569,29.967376264],[71.0428085330002,29.866842040999984],[70.98844954400016,29.84814084100003],[70.95831257900016,29.98593463600008],[70.99696354600007,30.02033329600016],[70.99427060800002,30.13672909700017],[71.04711163500008,30.162588107000147],[71.06300355500014,30.325469943000144],[70.9664225730001,30.538274227000045],[70.91606862500004,30.784607466000125],[70.91763252100014,30.983069308000097],[70.9434125730001,31.22055326800006],[70.99593357800012,31.48916107800011],[71.05941056900019,31.591946680000092],[71.04763064200012,31.737493568000104],[71.11653156300002,31.963686266000025],[71.19734149100009,32.04612261900007],[71.24740559300011,32.15094318000018],[71.32357764700009,32.14667913800014],[71.24684149100017,31.999383115000114],[71.41866262700017,32.068220669000084],[71.48091854299997,32.21351794300017],[71.53500361100004,32.095311818000084],[71.68814852600008,32.22526685600013],[71.74871850500011,32.152660129000026],[71.67907763000005,32.05576231100008],[71.709876598,32.012714700000174],[71.93092364600017,31.98258544600003],[72.00346348599999,32.04000466800005],[71.97180151700013,32.132259582000074],[71.84866364800007,32.13787864300019],[71.8290865400001,32.25976576400018],[71.91483357700014,32.24247825600014]],[[68.6488265110001,24.32576080900003],[68.68430358600017,24.254263343000105],[68.59925057100014,24.201777877000097],[68.57428758700007,24.297139963000177],[68.6488265110001,24.32576080900003]],[[67.87629650100007,24.170498458000054],[67.89472948000014,24.119851814000185],[67.78646060400007,24.07292304700013],[67.78943651500003,24.148840458000052],[67.87629650100007,24.170498458000054]],[[67.86034356000005,24.083867633000068],[67.91658763900006,23.98438550600008],[67.78844460099998,23.990820293000013],[67.7491606320001,24.045134523000172],[67.86034356000005,24.083867633000068]],[[70.47041356200009,21.669618504000084],[70.6195375100001,21.69320735900004],[70.85620155200007,21.522247547000063],[70.92696359000007,21.37061573300008],[70.84400152400013,21.254231163000156],[70.90450260400007,21.217414156000075],[71.03997762900008,21.266109661000144],[71.16076655400013,21.23443227000007],[71.2329716210001,21.16509699900007],[71.2641826430002,21.045422867000127],[71.21280660600007,20.964327283999978],[71.10616264600003,20.88355188800017],[70.78045664000007,20.830325630000118],[70.68180063400013,20.85332356000015],[70.59828955299997,20.969907955000167],[70.58766163500013,21.0695915820001],[70.64172356900019,21.237001323000072],[70.6080325100001,21.35240688600004],[70.41548963200012,21.47102037200017],[70.4143066100001,21.587763016000054],[70.47041356200009,21.669618504000084]]]]},"properties":{"objectid":532,"eco_name":"Aravalli west thorn scrub forests","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Indomalayan","eco_biome_":"IN13","nnh":4,"eco_id":314,"shape_leng":121.583472918,"shape_area":44.7386078271,"nnh_name":"Nature Imperiled","color":"#E67938","color_bio":"#CC6767","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":489383.0424600518,"percentage":1.854975846191662}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[142.0554045800002,73.88820394500016],[141.3627016380002,73.85460139800011],[141.15229759500005,73.89293418800014],[140.8759006500003,73.77808183000019],[140.81860363600003,73.62802430600004],[140.56039458200019,73.49282286600004],[140.3105925770002,73.44792905700012],[139.85060161,73.465790223],[139.89999365000017,73.37811568300009],[140.24070762100007,73.36648813900007],[140.51359556700004,73.42829009100018],[140.7740935510003,73.419157337],[141.33720355300022,73.33292398100014],[141.9049076760001,73.29704088600005],[142.4456026250001,73.23813069100004],[142.7333986240002,73.26421668300014],[143.13630665200003,73.19747158800004],[143.45829763000006,73.26001315800005],[143.45230071400022,73.37776481600008],[143.58369459000005,73.42934989800005],[143.47189358000003,73.52205358000009],[143.23039267700028,73.61968515000018],[142.8798976950003,73.69175761500014],[142.59609969700023,73.79221992200007],[142.0554045800002,73.88820394500016]]],[[[136.32130454700018,73.89858057300006],[136.35769659100004,73.93798105000019],[136.16110257300022,74.08067524100011],[135.58819563400004,74.23511080100008],[135.42840554700024,74.17847428099998],[135.67149364700015,74.1128800210002],[135.77810659400018,74.00793121800012],[136.13380455800007,73.88487632900018],[136.32130454700018,73.89858057300006]]],[[[140.69470267800023,73.94130028400019],[141.0498046890001,73.97523760400009],[141.07690455500006,74.17523216100017],[140.93060262600022,74.23482849900017],[140.6654055800003,74.2650279930001],[140.1867975670002,74.24475535400006],[139.97070254800008,74.14761932200014],[140.00100664800004,74.08981587400012],[140.25610366900014,73.95385117799998],[140.482406673,73.90933002900005],[140.69470267800023,73.94130028400019]]],[[[147.00900257600006,75.28163416100006],[146.66709871000012,75.38556104300005],[146.74600259400006,75.48944853100011],[146.4033966600001,75.5369529670001],[146.24909956900012,75.35190468500008],[146.2100985730001,75.17991926300016],[147.1336976350002,74.98138248700019],[147.56370569700005,74.94272917300015],[148.02760363700008,74.80986276400017],[148.4100036630001,74.76627301200006],[149.15669260000016,74.71281021600004],[149.43530270300005,74.70674507000018],[149.85240162800005,74.79618986800006],[150.3903045650003,74.83024989900008],[150.75309764200006,74.90481698600007],[150.70030171100007,75.02118043399997],[150.88989264900022,75.09643316000012],[150.28149472100006,75.14155713600013],[150.14419562700004,75.19087625500009],[149.7203977170002,75.18836570700006],[149.37809772200012,75.24226335600008],[148.89237967600025,75.17137391300014],[148.5275876830001,75.2058994750002],[148.54289270300012,75.33083945300012],[148.296905637,75.3696746550001],[147.94659455500016,75.3604731690001],[147.46760566800003,75.39896555100017],[147.18020663700008,75.27544546700017],[147.00900257600006,75.28163416100006]]],[[[135.6979975600001,75.36887351200016],[136.00819369200008,75.42435064700015],[135.92219570100008,75.50485379800011],[136.13659657000017,75.62152201200001],[135.58670063800014,75.78102560600018],[135.46929967900007,75.67042270500019],[135.58859260100007,75.53969200500006],[135.41259761300023,75.43810015400015],[135.6979975600001,75.36887351200016]]],[[[139.37368757900003,76.05129957100007],[139.1528016320001,76.11471185400012],[139.15220668400013,76.21327431800012],[138.80360366600019,76.21542628800017],[138.66909758900022,76.1691813160001],[138.26789863200008,76.12859060900013],[138.27270464700007,76.01707911000011],[137.67050161600014,76.00033894100011],[137.47470069300016,75.92610008900004],[137.87649560400007,75.741876251],[137.37089568400006,75.7608676320001],[137.1708986120001,75.71721669200008],[137.5554046750001,75.58711932800014],[137.2908936030002,75.52905620800016],[137.1920015620003,75.35577293300003],[136.93020656300007,75.31026908900003],[137.11149556200007,75.17069464300005],[137.72309856200013,74.953976178],[138.04119866100007,74.77595561900017],[138.3990936890002,74.71728129000013],[139.15899669600003,74.64024975600006],[139.42239364500028,74.65254148200012],[139.59269765700003,74.78902501700009],[139.56869456900017,74.97916932900006],[139.83149757600006,74.97012072900009],[139.9929965660001,74.83652123900009],[140.28030356400006,74.81300564200018],[140.4396976910001,74.85733585200006],[141.5379026930002,74.93184963000016],[141.9463045550002,75.01997444500012],[141.9974056660002,74.93481732700013],[142.23359663400015,74.8397868290001],[142.64460761500015,74.82408433900014],[142.925506648,74.87426662600006],[143.53590366000003,74.90615155300009],[143.73089556200011,74.94685742800004],[142.68339571,75.12357275700009],[142.48109462100012,75.20766218900002],[142.28529369800003,75.34836433599997],[142.1266175650003,75.54723856800018],[142.17260755900008,75.63147183400014],[142.65020756400008,75.73088154099997],[143.09820570500017,75.70227762500014],[143.0229036920001,75.5786963540001],[142.80020155400018,75.5596359060001],[142.51210062200005,75.40162177600013],[142.91690061300005,75.16142543200004],[143.3813936680001,75.05913872000008],[143.6723935660001,75.06252618300016],[144.03320264600006,74.99645164000009],[144.49670362000006,75.03065584000007],[144.9313966630002,75.26236114800014],[144.76570169200033,75.33371545200015],[144.84899869900005,75.40793133699998],[145.3856046200001,75.4781646450001],[145.28340156000013,75.55938528700005],[144.73501571200018,75.63188422300004],[144.5668946830001,75.70311648600017],[144.29190070000016,75.72222169400015],[143.68420366700002,75.85724778400004],[143.31739767000033,75.80290036200017],[142.49400359000015,75.89409982700016],[141.7803956780001,76.1112244790001],[141.65220670600002,75.99768388899997],[141.13200366700028,76.04403614900002],[141.00070165600005,76.0019573190001],[141.04989655500003,75.80054303500009],[141.1855926940002,75.714096444],[141.00399758800006,75.60759866500007],[140.5279997,75.65453749000005],[140.60389666000015,75.75880702500007],[140.4559015860001,75.81110993300007],[139.9976956290003,75.85300553500014],[140.05129957600002,75.93057988100014],[139.37368757900003,76.05129957100007]]],[[[149.2931975930003,76.66195072200003],[149.48269666600004,76.78893555000019],[148.78971862900016,76.75394445700005],[148.4870906850001,76.6424026150001],[149.2931975930003,76.66195072200003]]]]},"properties":{"objectid":533,"eco_name":"Novosibirsk Islands Arctic desert","biome_num":11,"biome_name":"Tundra","realm":"Palearctic","eco_biome_":"PA11","nnh":1,"eco_id":777,"shape_leng":59.2036863126,"shape_area":11.6083709112,"nnh_name":"Half Protected","color":"#77C2FB","color_bio":"#9ED7C2","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":37031.73490353282,"percentage":0.43336525480950877}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[133.01412961200015,-31.766668328999913],[132.85408007800015,-31.710697062999884],[132.85697927500019,-31.648197429999982],[132.9732664190003,-31.566495690999943],[132.84207144900017,-31.5206963629999],[132.86927811300006,-31.41749540799998],[132.7623752610001,-31.345996747999948],[132.7211762520002,-31.251796929999955],[132.74357634000012,-31.156396936999954],[132.6395724260002,-31.142497903999924],[132.57017495200012,-31.046998886999972],[132.36036698500004,-30.99760028299994],[132.32476811800007,-31.04119872699988],[132.2153622630002,-30.929937364999944],[132.1458739220003,-30.902799589999972],[132.10006699300004,-30.80279907299996],[132.0300752400001,-30.74260126699994],[132.07788067400008,-30.680801520999978],[132.01826512900016,-30.55850241099995],[131.82806377800034,-30.477600028999973],[131.7229614260001,-30.392102869999974],[131.65287746700017,-30.375203851999913],[131.47216799700016,-30.274603162999938],[131.30686984600015,-30.207708486999934],[130.91267422900034,-30.13071039199997],[130.60757433400022,-30.13261381999996],[130.5008695570001,-30.12021440599989],[130.44667090300015,-30.075616924999906],[130.41157514800022,-29.953914845999975],[130.42688007200002,-29.851913259999947],[130.32698040700006,-29.84631907699992],[130.271270694,-29.890214828999945],[130.1113736640002,-29.93731876499993],[129.97247286200002,-29.856218250999973],[129.98147579500016,-29.796319826999934],[129.88636742600022,-29.765819825999984],[129.83187852000003,-29.707721832999937],[129.92607122500021,-29.56371892699991],[129.77098112800002,-29.526218551999875],[129.6331790800001,-29.54532061699996],[129.51947040800007,-29.511421439999936],[129.40847791400006,-29.530023891999974],[129.06193625700007,-29.337005154999872],[128.99971329400012,-29.316466826999942],[128.90348820600002,-29.342410996999945],[128.76281740700017,-29.447694741999896],[128.62716686600004,-29.39232070399993],[128.51387002200022,-29.384727537999936],[128.41255192300014,-29.449720312999943],[128.33596798300005,-29.36356356799996],[128.22167972700004,-29.316850718999945],[128.21545415300022,-29.254085518999887],[128.0903473740001,-29.18279072699994],[128.01976018200003,-29.1149006629999],[127.91516878300001,-29.06559763799993],[127.73646543400002,-29.09032827599998],[127.53632352300019,-29.059808759999953],[127.50388337800007,-29.007947913999942],[127.41577918200016,-29.052326235999942],[127.2432100450003,-28.975738438999826],[127.12715907500012,-29.012592493999932],[127.06200402600018,-28.93452260999993],[126.82373032400005,-28.940662352999937],[126.74160762200006,-28.917684538999936],[126.49240106700017,-28.893392610999967],[125.86953731500034,-28.961219808999886],[125.65819550600008,-29.063527977999968],[125.45706939300032,-29.140886071999944],[125.46217346900005,-29.195301050999888],[125.36938479500009,-29.30632405299997],[125.25002297300023,-29.344015123999895],[125.19268807400022,-29.440656456999932],[125.1021118860001,-29.461236877999966],[125.04681395700004,-29.55525014799997],[125.19113926500006,-29.65954968999995],[125.08691398700023,-29.68453983199987],[125.07366940600014,-29.743097315999933],[124.90791324800011,-29.790348115999905],[124.91494750800018,-29.89438630999996],[124.85481238300008,-30.01170730499996],[124.97776031800004,-30.008802473999936],[124.96945955100011,-30.063087533999976],[124.87448118900033,-30.166192989999956],[124.87271126600001,-30.26655571899994],[124.93494421500031,-30.365713130999893],[124.8345717630001,-30.432323444999952],[124.72367097000017,-30.331075753999983],[124.63134765900008,-30.345764200999895],[124.63452155100015,-30.428951237999968],[124.5580826160002,-30.48454303699998],[124.52125555200007,-30.583103153999957],[124.52908324400028,-30.707769378999956],[124.4455185190003,-30.75307088299985],[124.37916569700008,-30.71764393199993],[124.2527999570002,-30.80699535499997],[124.14590454000017,-30.970808085999977],[124.27675627500025,-31.15129091299997],[124.23013311100021,-31.243341476999944],[124.13694763800004,-31.23760993199994],[123.9926833500001,-31.378759336999906],[124.04493714000012,-31.449434203999942],[124.06889345800005,-31.564859379999916],[123.93889617500008,-31.675264299999867],[123.93827826100016,-31.725570638999955],[123.8217010750003,-31.74355132999989],[123.74591827700021,-31.815975163999894],[123.78411109000001,-31.8701190729999],[123.89556877600012,-31.89827338399988],[123.94209286500029,-31.980886427999906],[123.83213050900008,-32.054054239999914],[123.92553709800029,-32.08057022299988],[123.92029572500019,-32.14929964999993],[123.81340785200007,-32.211418100999936],[123.80481724000003,-32.27743531199991],[123.71234892200005,-32.267807019999964],[123.68904874000009,-32.33172607199998],[123.71459963100006,-32.422981192999885],[123.79454806700005,-32.52151867999987],[123.98731993800004,-32.50738528199997],[124.23799902600024,-32.556064525999886],[124.42271421100031,-32.5677643219999],[124.56400292400008,-32.45378116799992],[124.64624029000015,-32.47121804099993],[124.8295059090002,-32.42313005699998],[124.95584868300011,-32.318046638999874],[125.07144166600017,-32.28804009599992],[125.2471008760001,-32.30225379199993],[125.2929230640002,-32.227157638999984],[125.35961920800003,-32.2499656359999],[125.51330559400003,-32.19358442999982],[125.64908605500011,-32.19348535499995],[125.68963619500005,-32.088234131999855],[125.87519074400018,-32.10292056799989],[125.96624000400004,-32.017471255999965],[126.04159549400003,-32.03070443699994],[126.2193604050002,-31.960933474999933],[126.5677719800002,-31.936378521999984],[126.5962067480001,-31.92329017999998],[126.90020748100028,-31.774185174999957],[127.05899056700014,-31.77646438299996],[127.12101748900022,-31.747667348999926],[127.29277039600015,-31.76690096599998],[127.43199162800022,-31.7595996579999],[127.67472098200005,-31.6944923879999],[127.8238219650002,-31.697681365999983],[127.89526360800005,-31.66168209799997],[128.00163264200012,-31.689863229999958],[128.29635628200003,-31.64830977699995],[128.34515387900012,-31.698743855999965],[128.47508243100015,-31.651792457999875],[128.70007316400017,-31.623699167999973],[128.99732042900007,-31.560631549999982],[129.31591788000003,-31.548740242999884],[129.43765078700005,-31.63658566999993],[129.84236000400006,-31.608099994999975],[129.93724000400005,-31.588589994999893],[130.27439000400022,-31.573609994999913],[130.56106000400007,-31.58568999499994],[130.79251000400006,-31.607279994999942],[131.0263700040001,-31.537689995999983],[131.13043000400023,-31.464679995999973],[131.20824000400023,-31.479429995999965],[131.4221500040003,-31.563929995999956],[131.7277400040001,-31.703699995999955],[132.09202759700008,-31.933260996999934],[132.12979161600015,-31.83550675999993],[132.1130829750001,-31.759505975999957],[132.19587731500008,-31.75330566899987],[132.279281566,-31.864204666999967],[132.35237141000027,-31.829402919999893],[132.48156752400007,-31.85290150999998],[132.6560672600002,-31.809299558999953],[132.85276778000014,-31.829498433999902],[132.90617409000015,-31.78209878799987],[133.01412961200015,-31.766668328999913]]]},"properties":{"objectid":535,"eco_name":"Nullarbor Plains xeric shrublands","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Australasia","eco_biome_":"AU13","nnh":2,"eco_id":212,"shape_leng":30.0050847229,"shape_area":18.5736107299,"nnh_name":"Nature Could Reach Half Protected","color":"#F05D6F","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":197864.16012380333,"percentage":0.7499917365580059}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[32.852985972000056,-19.530539510999972],[32.79181981400012,-19.449798615999953],[32.74306538900004,-19.03447634999992],[32.63914333700012,-19.081056648999834],[32.52479195700005,-19.348950412999898],[32.555144014000064,-19.69197169399996],[32.551171313000054,-19.782746399999894],[32.5054339190001,-19.94420834699997],[32.61334446400008,-20.07837554999992],[32.75406730300011,-20.108516669999972],[32.87290475200018,-20.026993705999928],[32.94698811200004,-19.91453763399994],[32.93902691700009,-19.82456483899989],[32.995707006000146,-19.718934932999957],[32.862435943000094,-19.569501653999964],[32.852985972000056,-19.530539510999972]]],[[[34.00106085400006,-18.32770315599987],[33.84840806500006,-18.36624449999988],[33.89067822700002,-18.436941661999867],[33.99012605400003,-18.407632217999947],[34.00106085400006,-18.32770315599987]]],[[[32.87277447000008,-17.786935494999966],[32.81062105900014,-17.830709103999936],[32.872296635000055,-18.120714953999823],[32.9115852970001,-18.225552869999945],[32.98318868000018,-18.220741402999977],[33.01699217600003,-18.060081366999952],[32.99460526300004,-17.87491343299996],[32.927472156000135,-17.794573493999906],[32.87277447000008,-17.786935494999966]]],[[[32.65000707400003,-17.779277651999905],[32.58934638700015,-17.839921160999893],[32.59432213399998,-17.896154157999888],[32.50135067500008,-18.13432760099994],[32.48793589700006,-18.321901268999966],[32.4536348260001,-18.47693800499991],[32.46259511900013,-18.646037950999983],[32.44569337000013,-18.726367968999966],[32.468084232000024,-18.979416454999978],[32.54317063800005,-19.01396808599992],[32.636647568000114,-18.917179045999887],[32.75348682200013,-18.677401780999958],[32.75248377700018,-18.530394076999926],[32.70523786700011,-18.403463917999943],[32.75346313400013,-18.270118468999954],[32.751464940000176,-18.111864166999965],[32.72608862900012,-17.825075882999954],[32.65000707400003,-17.779277651999905]]]]},"properties":{"objectid":536,"eco_name":"Nyanga-Chimanimani Montane forest-grassland","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Afrotropic","eco_biome_":"AF10","nnh":4,"eco_id":85,"shape_leng":7.44537930902,"shape_area":0.66102747368,"nnh_name":"Nature Imperiled","color":"#B54B01","color_bio":"#D6C39D","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":7746.3514264259875,"percentage":0.15862929603342785}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-139.98666590499994,64.43447251900017],[-139.72378860599997,64.34002024600011],[-139.59709781599997,64.32362592200008],[-139.2144736319999,64.37204616999998],[-139.00182081299994,64.35450300100018],[-138.8246740149999,64.28564184800018],[-138.60104633799995,64.24185865200008],[-137.86516771199985,64.15553928500009],[-137.21039615099994,64.23543375200012],[-136.90802541699998,64.08379963699997],[-136.55689598399988,64.1375917370001],[-136.29213889999988,64.22594337000004],[-136.05265037699996,64.2455414580001],[-135.54324226499995,64.21215213700015],[-135.030810982,64.14563400400004],[-134.767373164,64.16218714500013],[-134.49090240199985,64.12288614500017],[-134.27769994299996,64.05653690500009],[-133.97600076999993,64.01256104600009],[-133.471762448,63.9762041890001],[-133.14558600499998,63.96836048600005],[-132.94218871099991,63.93425089300001],[-132.50964046399997,63.787949065000134],[-132.34453777099992,63.70415372100018],[-132.31979050699994,63.59782946900009],[-132.41775116999997,63.497934743000144],[-132.01602087899994,63.37436057000019],[-132.2905257129999,63.18726881300012],[-132.57306904299998,63.19798296200014],[-132.63440757699993,63.086327654],[-132.2585442929999,62.88907576200012],[-131.86882042599996,62.72967479500005],[-131.604977309,62.642069729000184],[-131.3226742209999,62.618012423000096],[-131.0459747559999,62.63017553499998],[-130.85842312799997,62.55790102600014],[-130.7454188829999,62.46434610900013],[-130.6846120439999,62.335270780000144],[-130.74350767699997,62.22923633400006],[-130.53725528799993,62.23310686700012],[-130.46082188499997,62.11994162700012],[-130.56489335799995,62.00501796000003],[-130.43520933199989,61.930934524],[-130.24184107599984,61.87900611500004],[-129.957662595,61.88867557300017],[-129.49231113899998,61.849025633999986],[-129.338164749,61.779366806000155],[-129.43661569499994,61.710477247000085],[-129.25052742499986,61.67508666100019],[-129.35182779599984,61.50001155700005],[-129.06392840499996,61.34175075900009],[-129.01920281899993,61.12100307900005],[-128.90839207099992,60.931927996000184],[-128.9152167719999,60.80679507700006],[-128.74067390599993,60.84689201500015],[-128.62408054499997,60.915759027000036],[-128.45961594,60.95345118500012],[-128.3357105999999,60.844324738000125],[-128.2615585819999,60.70421679700013],[-128.06818000899995,60.70085236500012],[-127.89999230599994,60.79102123299998],[-127.86621416199995,61.012882975000025],[-127.66434264699996,61.05952287399998],[-127.53247225199993,61.12067813100015],[-127.49740093099996,61.33627954600013],[-127.26329364999998,61.289517767],[-126.87464526899998,61.165780852000125],[-126.7397519939999,60.88644134100008],[-126.60696266399998,60.81823401800017],[-126.43440758399998,60.87626916100004],[-126.43737609099986,61.09291546800017],[-126.34889804699998,61.20014144600003],[-126.1374305679999,61.221480424000106],[-125.9132077129999,61.064555504000054],[-125.77848143399996,60.88664544300008],[-125.70287006799998,60.89701331800006],[-125.35049978099988,61.11603827700014],[-125.16805536499987,61.31248212300011],[-125.116438658,61.20123887200009],[-125.01578652799998,61.15685443200016],[-124.87550375899991,61.16822154099998],[-124.59633188599997,61.271305578000124],[-124.177802623,61.309434524000096],[-124.07013897699994,61.37392808700008],[-124.0905825399999,61.48464258700011],[-124.35996585799995,61.58699040200008],[-124.3578237449999,61.90613210400011],[-124.12597913499997,62.07789697900017],[-123.92019092199996,62.139781975000176],[-123.73574900199998,62.23954176400008],[-123.55384308699996,62.29161261000007],[-123.54190931399995,62.42284435000005],[-123.62213973299998,62.57796533600009],[-123.72534270499995,62.66622753100006],[-123.81800930999998,62.86241113000011],[-124.2214800839999,63.2057770350001],[-124.2658933759999,63.43457454800017],[-124.36012414599998,63.51990874600011],[-124.53149958899996,63.60445670800016],[-124.51857827599997,63.72755914000004],[-124.7249616179999,63.75460923900005],[-124.84845324099996,63.86486970500005],[-124.7411825399999,63.982075572000156],[-124.78007723399992,64.05922251300007],[-125.13123413699998,64.14962073300012],[-125.32037657899991,64.11810037400005],[-125.4638125159999,64.1582179630002],[-125.93831404099996,64.23167934700007],[-126.31385244199998,64.52717834300017],[-126.1793209299999,64.64590467800014],[-125.92547324599991,64.65103014400017],[-125.75459101299998,64.5601935110002],[-125.51450214799985,64.56729682600019],[-125.755890938,64.72921008500015],[-126.04191773899998,64.74846854499998],[-126.22599941899995,64.82160409300013],[-126.58732442599995,64.82465939200006],[-126.79073778499998,64.92590615900019],[-127.00066207299989,64.98813483599997],[-126.92943089699997,65.05268983600013],[-127.19158984699993,65.12247470400013],[-127.56617362999998,65.2596410340002],[-127.6877586469999,65.32233195800012],[-128.12584555199993,65.45360825900013],[-128.94335689499997,65.5223448590001],[-129.08032135899998,65.60613178000017],[-128.9295687429999,65.67926080200004],[-128.92205495699983,65.78821233100018],[-129.23901551999995,65.77081472700007],[-129.50242084799999,65.85693030400012],[-129.65671981699995,65.9641853220001],[-130.1331058039999,66.13763749400005],[-130.36654105299993,66.20611088600003],[-131.019390913,66.24584799600007],[-131.08273320699993,66.28771976000013],[-131.4922611329999,66.33773803700018],[-131.62274747299995,66.30929825400011],[-132.0426474809999,66.3577344840001],[-132.4967252369999,66.28335897100015],[-132.1204188519999,66.18888666700019],[-131.6961476709999,66.16913394100004],[-131.34092870799992,66.11637316100018],[-131.11581203499998,66.05760848500006],[-130.87922290899996,65.95495400300001],[-131.05096838299988,65.86039354200011],[-131.287431616,65.8571718070001],[-131.61817558799993,65.90000633400012],[-132.09099123099998,65.98295618200012],[-132.41653422199994,66.07741501100014],[-132.96533371799995,66.16408791200007],[-133.14123493999995,66.05001664100018],[-133.31503549999996,66.01721239500006],[-133.5632964009999,65.92546974300012],[-133.86123673899993,65.98475020800004],[-134.07042168799995,65.98918254500006],[-133.97570571999995,66.1983867720001],[-133.87003682699992,66.3422136280002],[-133.94497605999987,66.48465701600009],[-134.1844585789999,66.55327239400009],[-134.36079331899998,66.6645036700001],[-134.61732711699995,66.71280874700017],[-135.04556725999993,66.93161998100004],[-135.0517423369999,66.96501877200012],[-134.81151087299997,67.06836029900006],[-134.939900293,67.1606245980002],[-134.84972645899995,67.25776331500009],[-134.84660068699986,67.4913761890001],[-135.24334187099998,67.62079227900011],[-135.34769235099992,67.73114315300012],[-135.32882889599995,67.97345145000003],[-135.37487790799997,68.15338885700004],[-135.31781633699995,68.22680989300017],[-135.45685008699996,68.318054017],[-135.55998314099998,68.4686894940001],[-135.74938456299992,68.55665366400007],[-135.72328568199993,68.62632935900012],[-136.0289606199999,68.65251917900014],[-135.89706428799997,68.53748372000018],[-135.84873888899983,68.42761258500019],[-135.6667596459999,68.35083593799999],[-135.60879820899999,68.15740409900008],[-135.60191071799994,67.96998517600014],[-135.69716969899991,67.84681568100007],[-135.949128154,67.70332441100004],[-136.037687582,67.47154035500006],[-136.00778166299995,67.33187869600005],[-135.78817002899996,67.21213214700003],[-135.87540491699997,67.00085942500004],[-135.844850905,66.73015778000007],[-135.674837014,66.56537035600013],[-135.46871387799996,66.3026399310001],[-135.32668418899988,66.19750711600011],[-135.1201899849999,66.09945547400008],[-134.99511308799998,65.94978850900003],[-135.32498700399998,65.84936097600013],[-135.60689774099984,65.92197164900006],[-135.68801880899997,65.88773262900008],[-136.096055456,65.96297443000009],[-136.32632256999995,66.34501593300018],[-136.21606288699996,66.56604617300013],[-136.340016005,66.7833260290002],[-136.60941143099996,66.92379968700016],[-136.652436729,66.97953884300006],[-136.51778429299992,67.09411216000012],[-136.62025020299996,67.17973829000005],[-136.8649227209999,67.10721149300008],[-136.98687293599988,66.96598620700013],[-137.19466114499988,66.9861539050001],[-137.27773708299992,67.07093600600007],[-137.4022032619999,67.08200550600009],[-137.49448968599995,66.96827672500012],[-137.65455611,66.97619682000004],[-137.72911240599996,67.06617071700003],[-137.77903418499994,67.26052036600004],[-137.86915785299993,67.31358405900005],[-137.79656972499993,67.42060823400004],[-138.14168475299994,67.42579159000007],[-138.5312003449999,67.49116320600012],[-138.70475764799994,67.45371889600011],[-138.942204141,67.13480440500018],[-139.0607882509999,67.17858769400004],[-138.9978529309999,67.29052114300015],[-139.37069421999985,67.2182300230001],[-139.5395854759999,67.12928892800011],[-139.661594423,67.27576522100014],[-140.29208425299998,67.26638753500015],[-140.45227261199994,67.23960938200003],[-141.0016386009999,67.22077215100012],[-141.1804228879999,67.1949182080001],[-141.51499524199988,67.09369835200016],[-141.7260373109999,66.96392718100009],[-141.6726254479999,66.84596299100008],[-141.49920989799995,66.64716779300005],[-141.28215356699997,66.2567369250001],[-141.35146173099992,66.0723263500002],[-141.61460071,65.90843934600014],[-141.95582105999995,65.78387285900016],[-142.38117795699998,65.73507397300017],[-143.07569747399998,65.74288819400005],[-143.24543039999998,65.63988258000012],[-143.28350890699988,65.5201421340002],[-143.20318519499995,65.43018542300013],[-142.468407663,65.37527402800004],[-142.27012777599987,65.29258176600007],[-142.1419753319999,65.17789821400004],[-142.16230060799995,65.07451357399998],[-141.8107111449999,64.99534150800014],[-141.15810088699993,64.77539115400015],[-140.99929686699988,64.70496860200012],[-140.6652333419999,64.65410418100004],[-139.98666590499994,64.43447251900017]]]},"properties":{"objectid":539,"eco_name":"Ogilvie-MacKenzie alpine tundra","biome_num":11,"biome_name":"Tundra","realm":"Nearctic","eco_biome_":"NE11","nnh":2,"eco_id":419,"shape_leng":68.6277276401,"shape_area":56.4517645489,"nnh_name":"Nature Could Reach Half Protected","color":"#74D0E7","color_bio":"#9ED7C2","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":301710.33475156256,"percentage":3.530776412146963}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[108.79934656700004,40.64478701500008],[108.65489955300012,40.550004957000056],[108.25919359200009,40.58053671000016],[108.01449566300016,40.629830180000056],[107.89991756100017,40.632397221000076],[107.55318454600013,40.55053888400005],[107.26467860000008,40.348945228000105],[107.10723863000015,40.325332736000064],[106.97341165500012,40.22299388900012],[106.8946836240001,40.20724999300006],[106.78447752300008,40.097037354000065],[106.72149657300014,40.097037354000065],[106.69788357800013,40.00257581900013],[106.74511761400015,39.7979003050001],[106.737243654,39.49088661400003],[106.737243654,39.40429367500013],[106.80021655799999,39.27834267200018],[106.79235064400007,39.018561676000104],[106.80809051700004,38.98707187100007],[106.67426253700017,38.83750334700005],[106.57192251600014,38.67218891400012],[106.48532857200007,38.475388198000076],[106.40660858700005,38.35730612500015],[106.20980066200019,38.184121253000114],[106.14682759100009,37.971574126000064],[106.02873965100014,37.884982696000066],[106.00512665600013,37.751157062000175],[105.94214654400008,37.67243556800008],[105.77683261500016,37.546484062],[105.61151164400019,37.51499459300004],[105.23365058700011,37.49925086400009],[105.09159057200009,37.44557600600007],[104.89514156000001,37.389043086000186],[104.77706166700011,37.373296172000096],[104.68259460000007,37.27096134900012],[104.43067951700004,37.2316019430001],[104.3362196600001,37.15287977900016],[104.29685254300006,36.98756501100007],[104.39919256300004,36.885231025999985],[104.50940654300007,36.83799799600007],[104.62748761000006,36.72779038600004],[104.796348593,36.47378586200006],[104.89868962000014,36.711127665000106],[105.0134735810002,36.811825671000065],[105.06521557200006,36.79763192299998],[105.1412965990001,36.69263031300011],[105.08272553600005,36.61868063700018],[105.0834046380001,36.53497660500011],[105.16590854900005,36.48416567600003],[105.23400866200018,36.33634192800014],[105.2182696270001,36.25504886699997],[105.14820060500006,36.14741198600012],[105.03928364000012,36.09456442200019],[104.74402657400015,36.04638541000014],[104.58239766500009,35.984241980000036],[104.51292459600006,35.840355045000024],[104.58776057400019,35.662731452000116],[104.7999035260001,35.5169937930001],[104.87123067200014,35.44910943000008],[104.91606865800014,35.19252797400003],[104.94320657800006,35.06457101299998],[105.05442051900013,34.914749020000045],[105.15808052200009,34.9406923520001],[105.21260061100014,35.08895061700014],[105.32180054900016,35.105234978000055],[105.38486464700003,35.17209725200013],[105.59241465100007,35.26238811900009],[105.64367652700008,35.372501349000174],[105.7982636320001,35.3769943850001],[105.97206859800013,35.46676708200005],[106.04452562400002,35.46543218000005],[106.12339765700006,35.30789313600013],[106.26493866500005,35.21905820600011],[106.33657057700009,35.14061901500003],[106.54273957900006,35.24203367300015],[106.578796683,35.367770603000054],[106.692321682,35.468906982000135],[106.77176653400005,35.50752626600007],[107.12344353200018,35.52915543200015],[107.29606664800008,35.6641654280001],[107.3226166620002,35.71540702000004],[107.48455067300006,35.834747216000096],[107.58112360900014,35.881381276000184],[107.84245257400016,35.93128696000008],[107.97346457100019,35.985542684000166],[108.13159956800013,36.199859063000076],[108.18248761100006,36.49777252200016],[107.98310862100004,36.42773199800018],[107.7736896200002,36.64610723000004],[107.77037860000013,36.69390117800003],[107.84642760800006,36.79582713200017],[108.05192555500003,36.854690891000075],[108.1653055480001,37.05993637500018],[108.21459952000004,37.099154629000054],[108.38450656500004,37.14999556600014],[108.63246153400013,37.10896162400013],[108.94338957399998,37.19733186100018],[109.04932358600013,37.19545096200005],[109.19885254800005,37.10500955600003],[109.23918961900006,36.98012322200009],[109.31700167600007,36.88789697400017],[109.45407865000004,36.79081123300017],[109.68757668000012,36.59801321100002],[109.79367062000011,36.60240314900017],[109.88121054600009,36.64185442000007],[110.063102539,36.811917536000124],[110.16339167500007,36.86912536600005],[110.21720165000016,36.98570389300011],[110.357971523,37.00219478500014],[110.36501366200014,37.118731402000094],[110.30719764100007,37.362039444],[110.24492663800015,37.417526302000056],[110.23683961000017,37.61054678000011],[110.12454960000014,37.69794304100003],[110.15653259600003,37.7883695270001],[110.36377766700008,37.8139769120001],[110.32972752600017,37.87285592600011],[110.40861565199998,37.92693579700017],[110.45365161800004,38.0560494610001],[110.47714961300011,38.22527053100009],[110.60965761200015,38.28647937900013],[110.67633866900007,38.357382400000176],[110.69955452900018,38.473919186000046],[110.75971262200005,38.51522051100005],[110.86641659600014,38.50616084700005],[111.03462261800013,38.65374118400018],[111.1090465420001,38.58134651800009],[111.15006254700012,38.34873847900019],[111.0041736780002,38.20282094400005],[110.8621825620001,38.11910534499998],[110.84212466700006,37.997918615000174],[110.92488858500013,37.82159069700009],[111.16268954900005,37.54834501200014],[111.21237965000012,37.527616398000134],[111.31905361700012,37.582524234000175],[111.308181618,37.7166656980001],[111.34780857400011,37.89468240200006],[111.43470762000004,38.09842970400018],[111.43564555500012,38.16996539200011],[111.52987658700005,38.43381982500017],[111.8530425410001,38.736800815000095],[111.73514554100012,38.78360234500019],[111.42055561500018,38.66748113500006],[111.34589364500005,38.70533749700007],[111.56931260400006,38.98057120200019],[111.68183864800011,39.15894430500009],[111.57998662200004,39.25353609400008],[111.46145662000009,39.29773940100006],[111.58204655800012,39.376325108000174],[111.68791167200004,39.508918267000126],[111.75686657200009,39.83817568500007],[112.15288568100016,40.159830549],[112.05133054200019,40.2214330110001],[111.72862961700014,40.152895698000066],[111.36915560500006,40.13376886500015],[110.95104967800012,40.23000065700006],[110.73638159400019,40.24445055600006],[110.27455163700006,40.42418555000012],[110.00051168300018,40.48606377600015],[109.68781254700014,40.48184080600015],[109.47370152400003,40.50205041300012],[108.92501057400005,40.607251344000076],[108.79934656700004,40.64478701500008]]]},"properties":{"objectid":542,"eco_name":"Ordos Plateau steppe","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Palearctic","eco_biome_":"PA10","nnh":4,"eco_id":761,"shape_leng":30.9031022471,"shape_area":22.1587103696,"nnh_name":"Nature Imperiled","color":"#F7A86D","color_bio":"#D6C39D","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":215952.1311265446,"percentage":4.422254123490943}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-61.34782053699996,9.568256512000119],[-61.457046625999965,9.66924754900009],[-61.49486158299999,9.589931107000154],[-61.58533048099986,9.56440502700002],[-61.616653485999905,9.51340667800008],[-61.58029949499996,9.45106996100003],[-61.592376476999846,9.364148117000013],[-61.79321659999988,9.180988948000106],[-61.788864547999935,9.124244301000033],[-61.72434954199997,9.087090845000091],[-61.67212257399996,9.121046270000022],[-61.53979461899996,9.286027606],[-61.3994445109999,9.436527024000156],[-61.34782053699996,9.568256512000119]]],[[[-61.62503857399986,9.750809669000034],[-61.682544631999974,9.7487198930001],[-61.73363451199987,9.63460313100012],[-61.58910753399982,9.638789724000048],[-61.62503857399986,9.750809669000034]]],[[[-62.16754954599992,8.663468954999985],[-62.016731614999856,8.818858041000055],[-61.99747050499991,8.869095145000188],[-62.09077852099995,9.073386768000148],[-62.322158611999896,9.160939435000046],[-62.35928356999989,9.199684615000024],[-62.38019557999996,9.39498379700018],[-62.26052848899991,9.405976999000075],[-62.15159258199992,9.3747463630001],[-62.107509637999954,9.414859468999964],[-62.17628851799992,9.473345540000082],[-62.19087554399994,9.549250881000091],[-62.25242251799989,9.568602517000045],[-62.43202960499991,9.550958778000108],[-62.51727255399999,9.665323812000054],[-62.57260551999997,9.695102535000046],[-62.72238158099992,9.855994340000052],[-62.84079758799987,9.898018353000168],[-62.89183851699988,9.867461454000079],[-62.9058684819999,9.700183477],[-62.87585053999999,9.615592304000188],[-62.74518555399982,9.542591459000107],[-62.6965785619999,9.439812730000028],[-62.620136610999964,9.351664110000115],[-62.59031648199982,9.172623641000087],[-62.46248256799993,9.133907462000082],[-62.36506255699993,9.074711612000158],[-62.33147861799995,8.993563558000062],[-62.13786352699998,8.87871254100014],[-62.122764533999884,8.776803015000098],[-62.16754954599992,8.663468954999985]]],[[[-62.59637860899994,9.873936139000136],[-62.49501759499998,9.980487563000167],[-62.567039600999976,10.078596734000087],[-62.61751558999998,9.993403740000133],[-62.725036631999956,9.890292082000087],[-62.59637860899994,9.873936139000136]]],[[[-62.91887652499997,10.33617748000006],[-62.84580963099995,10.197939445000031],[-62.68852958799988,10.188115016000097],[-62.731670572999974,10.303691067000159],[-62.82491656399992,10.338566322000133],[-62.91887652499997,10.33617748000006]]]]},"properties":{"objectid":544,"eco_name":"Orinoco wetlands","biome_num":9,"biome_name":"Flooded Grasslands & Savannas","realm":"Neotropic","eco_biome_":"NO09","nnh":1,"eco_id":583,"shape_leng":8.62064837338,"shape_area":0.493082045994,"nnh_name":"Half Protected","color":"#68ADE8","color_bio":"#BEE7FF","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":6026.614835084621,"percentage":0.5211698474051992}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-130.9759642589999,55.68850473600003],[-131.04871362799997,55.765299085000095],[-131.3550895049999,55.764114589000144],[-131.40596911499995,55.62970966000006],[-131.07262348599994,55.509978333000106],[-130.98858284299985,55.51625062800008],[-130.94850059099997,55.62382292300015],[-130.9759642589999,55.68850473600003]]],[[[-130.047117378,56.61881568000018],[-130.04267869999995,56.55466184900007],[-129.8740535839999,56.522250874000065],[-129.91130058199985,56.436852356000145],[-130.1010586559999,56.4065397060001],[-130.07777356099984,56.3242542270001],[-130.12826564299985,56.25499322000002],[-130.03857458499994,56.114799351000045],[-130.29087858799994,56.058259726000074],[-130.40844768799997,56.09474849800006],[-130.65449348199996,56.041638952000085],[-130.62545506499998,55.98960685600014],[-130.76319913199995,55.88398473600006],[-130.923792043,55.80950976100007],[-130.79718987499996,55.771032236999986],[-130.527308383,55.75008199800004],[-130.46818126899996,55.68602638600015],[-130.70955721399991,55.62304158000006],[-130.63134765799992,55.5165521990001],[-130.63158145699992,55.372891689000085],[-130.48615200799998,55.38106785500014],[-130.15508464799984,55.35718944200016],[-130.4185180689999,55.2117715330001],[-130.52126939299995,55.010513028000105],[-130.65705187199995,54.926960635000114],[-130.6213137179999,54.887757657000066],[-130.14187161499996,55.16051521300005],[-130.11602152199998,55.04679474500011],[-130.00961334699997,55.011564059000136],[-129.70076978599997,54.989543647000175],[-129.37821818599997,55.16511076200004],[-129.2274801439999,55.226752276000184],[-129.10735876799993,55.349221999000065],[-129.0401916849999,55.48027894700016],[-129.08508451499983,55.56245307500012],[-129.26399049699995,55.59549592500008],[-129.1809564589999,55.72530157200015],[-129.38787672899997,55.81512092000008],[-129.45783989199992,56.036421646000065],[-129.38182057999995,56.12909583400017],[-129.4228794249999,56.39551809800014],[-129.58880667799997,56.498370181999974],[-129.7634558929999,56.49837868500009],[-129.81239253899992,56.57817646900003],[-130.047117378,56.61881568000018]]],[[[-132.54461661799996,57.07350651800016],[-132.71912488199996,57.09652601200003],[-132.7471410569999,56.84961710900012],[-132.58078192199991,56.785050266000155],[-132.50338754499995,56.84090233400019],[-132.600204562,56.97929560200015],[-132.54461661799996,57.07350651800016]]],[[[-135.21095645499997,57.40494956000015],[-135.32482410199998,57.44252304500009],[-135.429845275,57.423046009000075],[-135.30249519299997,57.19075494800012],[-135.30813556899994,57.12692727900003],[-135.08179677599998,57.02646781300007],[-135.26633526299992,56.981675391000124],[-135.2282735949999,56.862555423],[-134.91521056599998,56.828840424000134],[-134.80315243899992,56.737524189000055],[-134.88143859099995,56.57644651000015],[-134.84751321399995,56.43176199800013],[-134.64426491899997,56.23804056900008],[-134.639046851,56.479504202999976],[-134.61048328399988,56.632458750000126],[-134.69271069199993,56.89249509900014],[-134.85803816999993,57.267722342000184],[-134.93789272199996,57.267676876000166],[-134.9670193299999,57.37773672300017],[-135.21095645499997,57.40494956000015]]],[[[-132.89842261899997,57.61113620500004],[-132.968674599,57.565725427000075],[-132.91525881799998,57.488032656000144],[-132.98402664199995,57.33160850500019],[-132.83290061099996,57.27449366000019],[-132.75314361699998,57.423676281000155],[-132.89985659499996,57.55836558600015],[-132.89842261899997,57.61113620500004]]],[[[-132.47193864399998,57.99132877200009],[-132.45371957199984,57.943269957000155],[-132.52896156999998,57.79254607100012],[-132.44190963799986,57.67069331500005],[-132.45870965399996,57.58866264600016],[-132.19924968499998,57.4834841780002],[-132.2018735559999,57.38234612200006],[-132.111892652,57.32175535599998],[-132.078460593,57.22622831400014],[-132.13555862099997,57.155722930000024],[-131.95404062799986,57.09535411600007],[-131.88623069599993,56.91567980700012],[-131.938720688,56.85538291000012],[-132.18243357599994,56.82734410300003],[-132.05027888599994,56.709550776000185],[-132.28286483199986,56.59256628300011],[-132.16395332399998,56.46439395200002],[-132.05094219699993,56.406865212000014],[-131.9119040889999,56.394195008999986],[-131.82679170299997,56.30445743100006],[-131.73852661199993,56.34524497300015],[-131.61230586399995,56.25802698300015],[-131.35258743799994,56.34549701800012],[-131.23584342499998,56.219361463000155],[-131.52920779899995,56.15701012800014],[-131.53150849899987,56.08564890700006],[-131.37376385199997,56.072985120000055],[-130.98121167099993,56.20880287300014],[-130.88246552599992,56.299256434000085],[-130.79295713699997,56.29697837400005],[-130.940907074,56.13137172400013],[-131.03414250799995,55.88232417100005],[-130.92266218899994,55.90702427700006],[-130.76203574,56.0448400520001],[-130.56663565899993,56.058064763000175],[-130.5352016779999,56.128581715000166],[-130.39353963499997,56.18136725300013],[-130.32534765599996,56.35947314000009],[-130.41838057899997,56.44340264600015],[-130.15660066699996,56.48108164700011],[-130.33363366999998,56.60996045000002],[-130.57382364899996,56.6147755450001],[-130.655276787,56.568492825000135],[-130.7858868389999,56.57756614500016],[-130.84578087999995,56.72312149300012],[-131.09841840799993,56.897258608000186],[-130.99909969099997,57.11609344800007],[-131.02386359999997,57.18906754100004],[-131.16491662399994,57.33487795700012],[-131.51507598599994,57.41015391400015],[-131.627751097,57.4823965130002],[-131.638871436,57.56008721500007],[-131.7244407249999,57.595356760000186],[-131.99359004599995,57.55201192099997],[-132.0982208179999,57.63768567000005],[-132.36843698899992,57.762649383],[-132.40711738,57.84445929000009],[-132.37026967899993,57.927438553000115],[-132.47193864399998,57.99132877200009]]],[[[-135.821462474,58.229312527000104],[-135.86548545899996,58.16455924600018],[-136.17057680599999,58.19542906300006],[-136.31517592299997,58.06949175000011],[-135.78656933299987,57.824736699000084],[-135.433006853,57.685204567000085],[-135.12466480799998,57.625276639000106],[-135.53312220099997,57.81578171200016],[-135.70302977599994,57.94116948400017],[-135.8229824249999,58.077999157000136],[-135.72280665099998,58.1390379180001],[-135.821462474,58.229312527000104]]],[[[-136.62415732299996,58.76249477400006],[-136.62042265299993,58.70550263000007],[-136.4969935869999,58.606494796000106],[-136.34942089399993,58.68978572600008],[-136.48673003099998,58.74856752200009],[-136.62415732299996,58.76249477400006]]],[[[-137.16755658,58.918034],[-137.0526735449999,58.8352752780001],[-136.90690654899993,58.88164782300015],[-136.837615702,58.78597929400007],[-136.66160562599993,58.75751334500012],[-136.48924820499997,58.79664180300006],[-136.74265740099992,58.87813111600008],[-137.03226651799986,58.87998561500012],[-137.16755658,58.918034]]],[[[-137.956848552,58.99915305300004],[-138.065441239,58.99833202300016],[-137.84961002199992,58.84261458000003],[-137.7634126659999,58.84978653200017],[-137.78236364699984,58.95824249200001],[-137.956848552,58.99915305300004]]],[[[-134.98785355399997,59.205260029000044],[-134.95245359199993,59.09743036500009],[-135.05863956399992,59.047181693000084],[-135.05777509299998,58.95953019600017],[-134.94167796199997,58.958428194000135],[-134.89140952399993,58.86181744500004],[-134.77565737199996,58.82929260500009],[-134.89653362699988,58.71921857500007],[-134.848378686,58.603044563000196],[-134.74567752299998,58.5327720360001],[-134.63590235099986,58.34097690400017],[-134.51712052899995,58.35684055900009],[-134.2704923529999,58.25473215700015],[-134.1425668739999,58.27032805500005],[-134.036387511,58.20203768000016],[-133.87426952999994,57.97844952200006],[-133.65361427399995,58.019690304000164],[-133.51500763099995,57.914347638000095],[-133.44145100099996,57.812270690000105],[-133.1406293299999,57.694717596000146],[-133.05828189299996,57.615817447000154],[-132.93531757699992,57.66898810100014],[-132.956237634,57.72308590900019],[-133.13046269999995,57.71854962300017],[-133.17150854499994,57.77418953500006],[-133.06677264099994,57.877639822000106],[-133.30444368599996,57.950395412000034],[-133.07839968199988,58.13544151600007],[-132.81433067199998,57.952501449000124],[-132.60519363799995,58.015030280000076],[-132.5662685829999,58.10575030000007],[-132.37480160699994,58.16113020500006],[-132.36111462899999,58.08169876400012],[-132.268079721,57.974047329000086],[-132.16846928999996,57.98042579300011],[-132.01101700499999,58.11098199800006],[-132.20890513999996,58.09842898000005],[-132.2156031629999,58.225165429000185],[-132.48524306199988,58.29958362899998],[-132.59324637999998,58.41759728900007],[-133.0604518419999,58.38728677800009],[-133.16191108199996,58.429577459000086],[-133.06062618899995,58.63842447800005],[-133.2561961309999,58.686323218000155],[-133.52549760699986,58.861078967000026],[-133.7525786189999,58.78143244700016],[-133.7332606789999,58.716096182000115],[-133.87304668399992,58.597451013000125],[-134.0394286359999,58.53483467600006],[-133.99699357499998,58.42481096500006],[-134.27056866899994,58.36105385100018],[-134.3625635759999,58.437579453000126],[-134.49388167999996,58.451640934000125],[-134.6684727,58.55849762700012],[-134.762252618,58.68344498100009],[-134.57528655599992,58.75003618500017],[-134.61611966799995,58.816773568000144],[-134.52365067999995,58.89729331500007],[-134.85374461199996,58.959909485000196],[-134.83297760799996,59.063406208],[-134.93342566599995,59.09814047900005],[-134.98785355399997,59.205260029000044]]],[[[-137.20581891299992,59.209432966000065],[-137.03750565299998,59.07241239500007],[-136.91655582199985,59.103174859000035],[-137.14866324399998,59.22713680200013],[-137.20581891299992,59.209432966000065]]],[[[-136.840419603,59.376465357000086],[-136.7530826989999,59.3642967510001],[-136.685653641,59.456719136],[-136.81751847599998,59.509749006000106],[-136.840419603,59.376465357000086]]],[[[-149.97254967199996,59.83571225300011],[-150.0402675709999,59.72410486500007],[-150.25108566699996,59.68805622600013],[-150.25352075499998,59.6284438130001],[-149.97182205399997,59.719592631000125],[-150.0321857319999,59.788438072000076],[-149.97254967199996,59.83571225300011]]],[[[-135.62866760899993,59.85822049100011],[-135.82562326399994,59.864298648000045],[-136.03232054699998,59.76311309600004],[-136.49865558899995,59.75101763900017],[-136.44186298099999,59.577439174000176],[-136.56678769299987,59.4995828480001],[-136.41165157299997,59.36960702200008],[-136.46774259899996,59.27355778700007],[-136.26756263399994,59.25433389300002],[-136.04952955099992,59.167119687000195],[-135.96827655499993,59.177469158],[-135.78999364199996,59.09355809300018],[-135.61379966699997,59.11927813099999],[-135.42486093199994,58.94549442500016],[-135.36597554099995,59.028531325000074],[-135.33412108,59.17927678199999],[-135.1857391719999,59.04804044400015],[-135.08584554599997,59.078405624000084],[-135.031509691,59.20773235500013],[-135.0349115699999,59.35796472600009],[-135.21658362199997,59.36127172200014],[-135.23248258299998,59.43390225400003],[-135.01470999699995,59.56758733900011],[-135.24635774999996,59.70507678400014],[-135.62866760899993,59.85822049100011]]],[[[-145.510207646,60.855854075000025],[-145.65080912199994,60.76138875600003],[-145.41502514199993,60.76922572899997],[-145.510207646,60.855854075000025]]],[[[-148.40858460699997,60.884366125000156],[-148.492629615,60.88881021000003],[-148.7112276379999,60.804674007000074],[-148.60845000999993,60.75875642300008],[-148.42654112399995,60.826501617000076],[-148.40858460699997,60.884366125000156]]],[[[-147.81971768699998,61.255650070000115],[-148.013748687,61.13779816400012],[-148.396118705,61.10307881300008],[-148.46469155799997,60.974816751000105],[-148.35055568499996,60.97742201400007],[-148.3367774879999,61.05701099300012],[-147.97498661599994,61.110374686],[-147.82825031299996,61.198247431000084],[-147.81971768699998,61.255650070000115]]],[[[-147.52076755399997,61.29062423200003],[-147.7086412619999,61.256920174000186],[-147.93452295699996,61.07884742100009],[-147.87930493599998,61.03042456100019],[-147.8637174859999,60.90601774100014],[-147.56932179399996,61.09719694500012],[-147.35745272,61.02048041500018],[-147.13672337799994,61.02707694500009],[-147.12693763099992,61.06769662000005],[-147.31462067999996,61.124014795],[-147.63430764099996,61.14868173000019],[-147.69613658199998,61.22889302400006],[-147.52076755399997,61.29062423200003]]],[[[-142.181179048,61.12135312100003],[-142.21042259499995,61.07664493800007],[-142.62529221299985,61.00583454900004],[-142.76229410599996,61.070857704000105],[-143.1539185719999,61.15456728400011],[-143.45751963599997,61.29725277699998],[-143.73153409099984,61.25545203700011],[-143.81104425099988,61.32295986800011],[-143.968551957,61.337587687999985],[-144.25034535199993,61.475218740000116],[-144.53703562399994,61.64367460400007],[-145.04530283999998,61.5963058480001],[-145.26355816599997,61.63662047700018],[-145.48432617599994,61.728834228000096],[-145.669207601,61.88024172500013],[-145.91951811299998,61.79464879700009],[-146.07953218399996,61.82253306700011],[-146.13763067399998,61.888383423000164],[-146.3374080849999,61.9163676710001],[-146.44622945199993,61.84681676800005],[-146.68457671999994,61.89027100800013],[-146.76064240199992,61.96379545600007],[-146.94076708799994,61.91513442000013],[-147.03587935799996,61.939028250000035],[-147.25981110999996,61.8614102140001],[-147.65567208999994,61.81216439800011],[-148.65722560899994,61.795003785000176],[-148.70684989699998,61.78156624600007],[-148.72718842199998,61.72660334200009],[-148.91741407499998,61.625754552000046],[-148.9155044219999,61.57880139500014],[-148.65890066999998,61.505343758000095],[-148.71784064499997,61.455296237000084],[-149.08364288899995,61.509241183000086],[-149.47027685599994,61.428821851],[-149.80342734399997,61.05672620300015],[-149.457286471,60.909138093000024],[-149.85371378099993,60.967392570000186],[-149.93841132299994,60.90222027200008],[-150.05013528999993,60.66007329300004],[-150.15982926399994,60.550992727000164],[-150.09786870799996,60.439894640000034],[-150.36260899199996,60.35114141200006],[-150.70879696999992,60.296536149000076],[-150.712618232,60.11100049700002],[-150.84217567699994,59.83954192600015],[-151.0458360519999,59.69129916100013],[-151.1688484329999,59.51457544900006],[-151.37873885699995,59.51651648700005],[-151.40711321399993,59.39667635300009],[-151.25383962399997,59.35140843900007],[-151.04002972299992,59.35156596000019],[-150.8774672479999,59.31811978700017],[-150.74185822099994,59.417147074000184],[-150.60118550099992,59.42565618800006],[-150.62643101599994,59.526647085000036],[-150.45616570899998,59.62744015400011],[-150.59532155899996,59.682381427],[-150.36099271499998,59.804662833],[-150.520431601,59.88620902800017],[-150.34057657799997,59.9177841610001],[-150.26164268699992,60.0401638030001],[-150.28492761399997,60.08882259500018],[-150.0969845569999,60.19036231100017],[-149.94741871499994,60.198220681000066],[-149.800735577,60.271751429000176],[-149.67204268499992,60.20440803400015],[-149.61270166099996,59.99814699800004],[-149.44835351299992,59.971366855000156],[-149.50825432599993,60.141744486000164],[-149.34916555399994,60.203972981000106],[-149.23046565099997,60.02476166900004],[-149.12558306599996,60.06077532000012],[-148.85432320599992,59.95484639800003],[-148.62076097799996,59.96722618900003],[-148.68809459099998,60.034480537000036],[-148.80514568999996,60.001085191000016],[-148.96006756799997,60.10480621400012],[-149.02981556399993,60.205362062],[-148.89303564399998,60.32337037400015],[-148.6925966789999,60.40630142700007],[-148.45597713899994,60.545220096000094],[-148.66584767899994,60.52619818200009],[-148.9119266099999,60.472779307],[-148.91075163499994,60.389782875000094],[-149.14797961199997,60.424681264000014],[-148.98025471099996,60.552280318000044],[-149.0458526589999,60.6170638800001],[-149.01672370199992,60.6923875170001],[-148.80824263499997,60.74794377699999],[-148.77847262999998,60.81178839900019],[-148.65232867499995,60.86124833300016],[-148.73391761799996,60.90960118600009],[-148.77850364299996,61.051765807000095],[-148.67063860699994,61.1290550010001],[-148.51316862999997,61.16425815600007],[-148.33195456599992,61.28559324600013],[-148.40724165799998,61.34128244300007],[-148.57925457199994,61.319072411000036],[-148.54913369999997,61.416453362000084],[-148.33883661099995,61.38221211400008],[-148.10494966099995,61.43323108300018],[-148.20079068899994,61.49777475500008],[-147.88569667599992,61.602916006999976],[-147.791992698,61.58736640300003],[-147.634231701,61.66713563500008],[-147.4930117199999,61.58962566100007],[-147.32693470199993,61.64346480500018],[-147.17007459199993,61.633324378000054],[-147.00096164899992,61.715038714000116],[-146.84474158099997,61.57641108800016],[-146.615280612,61.53566447700018],[-146.5384066569999,61.70847736100018],[-146.42741366299998,61.71151764400014],[-146.52522259399993,61.546838057000116],[-146.30654863099994,61.44732357600009],[-146.12965359299994,61.334404086],[-145.93720962199998,61.354374808000046],[-145.7782895759999,61.3014819820001],[-145.90023771799997,61.186723333000145],[-146.0602266239999,61.198068575000036],[-146.34562657199993,61.29422560000006],[-146.45381162899997,61.186777313000164],[-146.82022065899997,61.176625655000066],[-146.93933276399994,61.03297599400014],[-146.66100485899995,61.093125403000045],[-146.59124116299995,61.129947637999976],[-146.31985025399996,61.136311318000196],[-146.18342145399993,61.051867777000155],[-146.376402122,60.991166852000106],[-146.34343092499998,60.92255133499998],[-146.17206275699996,60.891174605],[-145.79029983999993,60.76373201299998],[-145.6720735959999,60.80385408900008],[-145.84300256199998,60.89096955600019],[-145.74761968899998,60.98662333200008],[-145.57325766299996,61.00265690700019],[-145.476196565,60.95637505500014],[-145.30342056199996,61.02947497400004],[-145.27394057099997,60.89277736500014],[-145.02630662899995,60.9361111340001],[-144.872543633,60.922175548999974],[-144.88580363599996,60.85603696900006],[-144.64739967799997,60.764595434000114],[-144.89543159299996,60.69791186200007],[-144.83010008299996,60.618635544000085],[-144.57306305199995,60.48367712100003],[-144.30647008899996,60.45995758700013],[-144.15535112799992,60.41065666100002],[-143.89773753999998,60.39151816200001],[-143.8858960209999,60.242024884000045],[-143.82907577399993,60.113057309000055],[-143.63807653499998,60.074325285999976],[-143.39624338099992,60.1164778750001],[-143.34436456699996,60.051463418000196],[-142.80949490499995,60.09351193600014],[-142.4570667399999,60.07161570600016],[-142.41734224099997,60.099775768000086],[-142.13540737899996,60.08945735400005],[-141.76214619299992,60.04085945300011],[-141.39121204299988,60.01359961200012],[-141.47108576099998,60.113157604000094],[-141.39684941199994,60.139784888],[-141.1099368369999,59.891681017],[-140.92852508699997,59.859825349],[-140.78982244399998,59.725512725000044],[-140.31561270199995,59.69514871500019],[-139.79516730499995,59.83836697200013],[-139.64777642399997,59.90086699400007],[-139.58666992799994,59.78889255900009],[-139.329416628,59.68883814300011],[-139.04183592699997,59.55132234700011],[-138.90219896199994,59.422892237999974],[-138.50481113799992,59.27244070400013],[-138.29711244399988,59.16813253400005],[-138.12301005299986,59.04052636500006],[-138.0344086489999,59.07598375700019],[-138.14564555599992,59.18196336699998],[-138.05209362599987,59.39097400200018],[-137.73009127999995,59.311486479],[-138.6164025089999,59.77392957300003],[-138.6894970279999,59.9068520830001],[-139.04723962699995,59.996310935000054],[-139.18936287099996,60.088441698000054],[-139.08054708599997,60.28989672600005],[-139.090358499,60.35899433999998],[-139.41591362499997,60.349700075000044],[-139.61171043099995,60.50112475200007],[-139.89151341999997,60.674880894000125],[-140.60029515899993,60.82292499800013],[-140.93948389899998,60.862904604000164],[-141.23453484399994,60.851699142000086],[-141.991795831,61.07843041800015],[-142.181179048,61.12135312100003]]]]},"properties":{"objectid":548,"eco_name":"Pacific Coastal Mountain icefields and tundra","biome_num":11,"biome_name":"Tundra","realm":"Nearctic","eco_biome_":"NE11","nnh":1,"eco_id":420,"shape_leng":224.746133432,"shape_area":16.8513407952,"nnh_name":"Half Protected","color":"#4C82B6","color_bio":"#9ED7C2","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":106319.66209578677,"percentage":1.2442097993903585}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-116.34900558399994,46.483375],[-116.31615200499988,46.35572195000009],[-116.51907373999984,46.29077802500018],[-116.52158398499995,46.18787352000015],[-116.62482584799983,46.138526374000094],[-116.53989016099985,46.01249631700017],[-116.26913966199993,45.861724277000064],[-116.07748498499996,45.91591391700001],[-115.9671932579999,45.99941609700005],[-116.06023022499994,46.081585354000026],[-116.00688293399998,46.132425720000185],[-116.1256466989999,46.20378426200017],[-116.12839268999988,46.271710531999986],[-116.244163314,46.438583729000186],[-116.34900558399994,46.483375]]],[[[-119.59967673299991,49.37327827200011],[-119.75508961699995,49.370077386000105],[-119.6595343699999,49.25762157400004],[-119.61919594299997,49.15778192200003],[-119.62605289299995,49.03836092500018],[-119.50000542599997,48.914399446000175],[-119.60907429199995,48.83716651300006],[-119.52033334299989,48.65086087500009],[-119.56332200599991,48.51975279400011],[-119.68485725,48.51234778700018],[-119.63683117799991,48.43420967200012],[-119.65196624099997,48.36239086800009],[-119.79205266299994,48.30792536500013],[-119.770968,48.22477792800004],[-119.89789062499995,48.15830990200004],[-120.05732608199992,48.21536459800012],[-119.98121358999998,48.32667695200007],[-119.99790137899998,48.41514703500019],[-120.08789933699995,48.46357243099999],[-120.16621059,48.565740135000055],[-120.30624555599991,48.530428186],[-120.25963030299994,48.46253016400004],[-120.249801973,48.28056909000003],[-120.16040432799991,48.25680565700014],[-120.02590337899989,48.09474976400014],[-119.88407299099993,47.956904317000124],[-119.97192037199994,47.8896460790001],[-120.18381666699997,47.94953329900005],[-120.14072049599991,47.804069637000055],[-120.23456519699994,47.759223144000146],[-120.27289477999994,47.599121739000054],[-120.37052819299998,47.53999749300016],[-120.50334751199983,47.518068327000094],[-120.41610282499994,47.44143879200004],[-120.36063416699983,47.334891264000134],[-120.25631119499997,47.28850647900015],[-120.21980510599997,47.19080707500012],[-120.23817865299998,47.10788127899997],[-120.51032137099997,47.171584721000045],[-120.64416739399991,47.18197602300006],[-120.79241257499996,47.15363091900008],[-120.74709011299996,46.928721785000164],[-120.79984095999998,46.880278824000015],[-120.74629809299995,46.80619288300005],[-120.9074056469999,46.76331061999997],[-120.95694112599989,46.65159857700007],[-120.87688181899989,46.60468697600004],[-120.934758193,46.55363796300014],[-120.905354209,46.48528955000006],[-120.97999295399995,46.433585105000134],[-120.88647485099995,46.29677226299998],[-120.74667719599995,46.14384481600018],[-120.6205725989999,46.03950116900006],[-120.48302669199995,46.01409597100019],[-120.38409687699993,46.02839091700008],[-120.41440717699999,45.83910909100007],[-120.50465328799987,45.85196776900017],[-120.57157233799995,45.793649332000086],[-120.67175793899997,45.842219756000134],[-120.82692542299998,45.84201096100003],[-120.89994334299996,45.88934818700005],[-121.0532533889999,45.812240724],[-121.09193686699996,45.718645383000194],[-121.2016216109999,45.697359479000056],[-121.28187006199994,45.61471613300006],[-121.19525145799997,45.560587751000185],[-121.14552520899991,45.45318435200005],[-121.32412497899998,45.21564466300015],[-121.37045691699996,45.10278686500004],[-121.27054909299989,45.07796015100007],[-120.97884080999995,44.91376094599997],[-121.06821176299997,44.80970050999997],[-120.9630542679999,44.80117086900009],[-120.92695535899992,44.865512659],[-120.64138478599989,44.965999298000156],[-120.54875472099991,44.96900802900012],[-120.4813662819999,45.06700821100003],[-120.28702279199996,45.033071001999986],[-120.07752557799995,45.02261444600009],[-119.85250005499995,45.05400027500019],[-119.52382125199983,45.131533996000144],[-119.39701566199994,45.229580722000094],[-119.30649675199993,45.258069626000065],[-119.10962062699997,45.223572669000134],[-118.94522257799997,45.292694220000044],[-118.92260259999995,45.329078573000174],[-118.61444419999992,45.37199327299999],[-118.56159412099998,45.480085891000044],[-118.59946707599983,45.59019640800011],[-118.42945074199991,45.646977743000036],[-118.35033973799995,45.810718241000075],[-118.18270126399989,45.83838162100011],[-118.15397496599985,45.892888524000114],[-118.15238609199992,46.080965452999976],[-118.04522865399991,46.11110557400008],[-117.96084687799993,46.21021443600017],[-117.82009644699997,46.23593898200005],[-117.79369778699987,46.309991761000106],[-117.61805242999998,46.310508399000184],[-117.49107076399991,46.27522586300017],[-117.25363435299994,46.17297704200007],[-117.10861051199993,46.08350572400013],[-116.98723883499997,46.121089117],[-116.95456317499998,46.174565143999985],[-116.74281400899997,46.23224236900012],[-116.72055771299995,46.30152979100018],[-116.62537860899982,46.37892005100008],[-116.83270438099993,46.62292627000011],[-116.88805945799999,46.64079681300018],[-116.93409793199999,46.746280463000176],[-117.0270495609999,46.80195180900017],[-117.00288493599999,46.87444722600014],[-116.86089321099985,46.91231004400015],[-116.88384052799995,47.033667444000116],[-116.96693146699988,47.011862513000096],[-117.0182578919999,47.12396083600004],[-116.94729330699994,47.14310011400016],[-116.853913004,47.05355240100005],[-116.77534508199989,47.110427770000115],[-116.8720258009999,47.18518012700014],[-116.87002636299997,47.245307056000115],[-116.94811956099983,47.31205879500004],[-117.0289076009999,47.48186026400015],[-117.1067180249999,47.53973945800004],[-117.28213251499989,47.50785243000013],[-117.36604297099996,47.53970865000019],[-117.55504583299995,47.76105538200005],[-117.69156180399995,47.866497355000035],[-118.05458629799995,47.817473323000115],[-118.22112280399995,47.951729248000106],[-118.34452216199992,47.91070179500019],[-118.39039971299997,47.849752157000125],[-118.66514243699993,47.95099791000018],[-118.78835084999992,47.932133011000076],[-118.86983694599996,48.01765896300009],[-118.83365701899993,48.219675706000146],[-119.28118280999996,48.127407162000054],[-119.29802981599988,48.22998681300015],[-119.42572058199994,48.34529056800005],[-119.36826364599989,48.39376242700007],[-119.49165565799996,48.506749461000084],[-119.337240926,48.49540891400011],[-119.28279240899991,48.634187515000065],[-119.2179697339999,48.66979851399998],[-119.34793688699989,48.786463646000186],[-119.40686915099997,48.88356413600002],[-119.32801259399997,48.94529809900013],[-119.35556709199989,49.155161023000176],[-119.457589236,49.209332744000164],[-119.44671722699991,49.28257393400014],[-119.59967673299991,49.37327827200011]]]]},"properties":{"objectid":551,"eco_name":"Palouse prairie","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Nearctic","eco_biome_":"NE08","nnh":3,"eco_id":398,"shape_leng":38.3848601494,"shape_area":9.86697157267,"nnh_name":"Nature Could Recover","color":"#FDA65F","color_bio":"#FEFF73","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":83891.5471519491,"percentage":0.7917809317140105}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[75.79978954400013,36.763486564000175],[75.66407764700011,36.86960229700014],[75.62232252500013,36.80696567500013],[75.69914250000016,36.74788197500004],[75.76995063900017,36.718402486000116],[75.79978954400013,36.763486564000175]]],[[[71.24623849700004,38.67427902600019],[71.21425650700007,38.61202009300007],[71.29292251300018,38.50327680100003],[71.38247661000008,38.60177405400003],[71.52238448800011,38.60873204000006],[71.53291350000018,38.68631074500013],[71.34974661900014,38.70501362100009],[71.33197748800012,38.7381739380001],[71.24623849700004,38.67427902600019]]],[[[71.34595464600017,38.79920794000009],[71.45023356900003,38.76003176300003],[71.74379749000019,38.68380371800009],[71.9316936080001,38.768405452000025],[71.87487754800009,38.8387314630001],[71.59678662000005,38.873944677000054],[71.58381663000017,38.959610577000035],[71.35829163400007,38.906571403000044],[71.34595464600017,38.79920794000009]]],[[[71.48688562000012,39.136277627000084],[71.19731148400018,39.059904910000114],[71.10151655700008,39.116163071000074],[70.86872864200006,39.140183594000064],[70.71695752100015,39.08743460100004],[70.60121148400009,39.12527604400009],[70.46334057600018,39.07069258700017],[70.19991261400014,39.03643323400013],[70.20319362700008,38.95354040300015],[70.36356357400001,38.95910632199997],[70.45909162200013,38.858877032000066],[70.68231159500004,38.84109717200016],[70.85439257000013,38.953529674000094],[70.97102356700009,38.98944395000012],[71.1268235340001,38.98833401800016],[71.21339451200004,38.94961951600004],[71.35450754000016,38.94910855500012],[71.35484348700015,39.05951599000008],[71.46368451199999,39.062948715000175],[71.48688562000012,39.136277627000084]]],[[[73.4641795980001,39.926549778000094],[73.35825363200007,39.96952094600016],[73.28943653000005,40.094088600000134],[73.13881658000008,40.12057826400007],[73.07009151200009,40.05938282700015],[73.03093762999998,39.941396476000136],[72.85256955699998,39.936131467000166],[72.75306664300012,40.01927257100016],[72.67608657400018,40.03310036400006],[72.48578652600014,39.98777086400008],[72.34322359600014,40.07326476800006],[72.23200948800013,40.056942017000154],[72.16246064600017,40.00671061200006],[72.17862648700003,39.92734253900005],[72.24643759300011,39.860563581000065],[72.23515353900012,39.802165352000145],[71.9692765530001,39.769023810000135],[71.91256761400018,39.839193751000096],[71.97458648900016,39.957311195000045],[71.83683058000008,39.99370290400009],[71.66929662000007,39.94845722300005],[71.62441253399999,39.910531794000065],[71.4526064850001,39.89107706100003],[71.3600235030001,39.83310178400012],[71.13957961700015,39.81349500300007],[70.95127060700014,39.69213963000004],[70.88343854700008,39.7786445590001],[70.73210160800005,39.735386059000064],[70.61287657900004,39.76590674800019],[70.44445061700014,39.70010478500012],[70.12859351500015,39.677526117000184],[70.0074465150002,39.65404622700004],[69.96697952500017,39.59065523400005],[70.05845659900012,39.542658948],[70.21025051900006,39.53896588100008],[70.39082353499998,39.504356500000085],[70.39389751400006,39.434998263000125],[70.23709859300016,39.41900743600013],[70.0500026110002,39.44702914400017],[69.86797349000017,39.40441990700015],[69.58336663800014,39.393460903],[69.28106659500014,39.268263936000096],[69.40249656700007,39.229682371000024],[69.27863349600017,39.14745858300006],[68.9084775870001,39.17507628300007],[68.79530362200006,39.153622467000105],[68.59529850299998,39.170033395000075],[68.33595252800012,39.027335517000154],[68.23406948900003,39.04815499100005],[68.24929052300018,39.11684200500014],[68.38155360200017,39.22683755300005],[68.33821061300017,39.31405527900017],[68.15778360900003,39.22735253700017],[68.03658263000017,39.13513668200011],[67.9127505720001,39.099252414000034],[67.83601357800012,38.986445911000146],[67.99275952600016,39.01475847100011],[68.16069062100007,38.970340419000024],[68.21172350300014,38.859646994],[68.35452263500014,38.858946099000036],[68.43814050100013,38.914918102000115],[68.58345051600014,38.910237144000064],[68.65573152200005,38.936126664000085],[68.68196855600007,39.025523517000124],[68.80058254400018,39.08167455700004],[68.88955661400018,39.063772823000136],[68.93328852300004,38.94607581500003],[68.99054748300011,38.88879556500012],[69.06822157400018,38.92713606700005],[69.09203355500011,39.0110355650001],[69.21233364700015,39.034148160000086],[69.29060352400006,39.096143230000166],[69.39909351400013,39.08078154900005],[69.45480349900004,38.943130582000094],[69.51828753000012,38.937824837000164],[69.72499850600019,39.05070409500007],[69.78595757400018,38.99350682600004],[69.90209152400007,39.0340453980001],[69.95113353700003,39.150254618000076],[70.0357976320002,39.177699987000096],[70.0607606160001,39.250846173000184],[70.16211660100004,39.29539028900018],[70.25919362500008,39.282339666000155],[70.31659658600012,39.19428274400019],[70.42430856800007,39.16634418400014],[70.51101650600015,39.218212407000124],[70.6134266000002,39.22191653800007],[70.79067954400006,39.32237096500006],[70.95684054900005,39.30774521500018],[71.06268353400003,39.32879083200004],[71.16678660400015,39.415360637000106],[71.33223749400014,39.46160896100008],[71.44856255200006,39.46893675600006],[71.55016362400016,39.414788656000155],[71.65173351500005,39.41809950800018],[71.79061863400011,39.5014984390001],[71.88745861700016,39.51835612200006],[71.989517508,39.47403697700008],[71.99954964000017,39.31891896200017],[71.91322358100018,39.28278256600004],[71.67458358900012,39.24310230100019],[71.61633254700018,39.13986675800015],[71.50000748900004,39.136162626999976],[71.51101661600012,39.047217223000075],[71.66414661100004,39.087060600000086],[71.91870149000016,39.028285354000104],[72.03211249600008,39.117669969000076],[72.08090958900016,39.069131709000146],[72.18137357200004,39.11624722500011],[72.21182251200014,39.01976364100017],[72.452354635,38.91685499200014],[72.46015952800019,39.00043497200005],[72.6221775250001,38.9126861690001],[72.580215539,38.83785035800008],[72.70333060900009,38.83868636900007],[72.69915055400014,38.76045152800003],[72.50691965100015,38.73034306200003],[72.53706348900005,38.58466156100019],[72.61476859300006,38.55026910300006],[72.50446358600004,38.39932058200003],[72.29840053100008,38.414720150000164],[72.27550452400004,38.34331756700004],[72.06757364600014,38.41911025600018],[72.03269151800004,38.469471412000075],[71.90007757200004,38.46466858200006],[71.90605152200015,38.527728322000144],[72.01416063900018,38.53068143400003],[72.21582755300017,38.57446564600008],[72.12729655000015,38.7318801350001],[71.95081356700018,38.71500032300003],[71.90303755700006,38.66766821900006],[71.62139152900005,38.61462183600008],[71.48358164100006,38.49471284300017],[71.53031158900012,38.453072722],[71.52996860200005,38.35061552200017],[71.44370255700005,38.31673687600011],[71.4085926090001,38.094328942000175],[71.49195851500002,38.028485069000055],[71.61476161100006,38.03543098500012],[71.75846062400018,38.08912193600014],[71.86196857900018,38.05046074300003],[71.80269662100017,37.985863762000065],[71.64095254400002,37.95537324800006],[71.58838661100003,37.90659224800015],[71.59200256400015,37.716631835000044],[71.70596359100017,37.68688144300012],[71.8448565880002,37.74292117100009],[71.9056926090002,37.6771465330001],[71.85545349300008,37.60319199500009],[71.69373355600015,37.49402508300017],[71.74507858000015,37.28184424400007],[71.64864361100018,37.25631648800015],[71.59224664500005,37.323168200000055],[71.51721151300012,37.29395575900003],[71.51654850400007,37.13654881400009],[71.58561656000006,36.966382601000134],[71.56139353000009,36.76538674200003],[71.69525151800019,36.66979281200014],[71.8694836250001,36.693760194000106],[72.07106051800014,36.87411846599997],[72.24081450900007,36.94838179300007],[72.68641659900004,37.02264813800019],[72.78491251100002,36.99638478500009],[72.97287752800008,36.94838179300007],[73.25933862500011,36.9908188660001],[73.45030956000016,36.958993450000094],[73.60945155900015,36.9908188660001],[73.75798760000004,37.043868937000184],[73.86408254600019,37.033257112000115],[74.11871353300006,37.224228383000025],[74.24602558999999,37.25605363100016],[74.41577958100015,37.340928950000034],[74.68426551900018,37.397674770000094],[74.83735662200007,37.31908235800006],[74.88600150000008,37.240615842000125],[75.02609260600019,37.14542172900019],[75.10752061600004,36.99359294100003],[75.38220262400006,36.920885295000176],[75.42454565200006,36.82864043900008],[75.53881060600008,36.80573772700012],[75.70460549000006,36.926093307000144],[75.73162857800008,36.87696814600008],[75.85198264900004,36.837670096000124],[76.00479849100014,37.08835890600005],[76.01078048700003,37.26988528000015],[76.13246962800014,37.26789038700002],[76.2401886510001,37.40353858200018],[76.23619853000008,37.54916174500016],[76.17835250100018,37.714731657000186],[76.20428460100015,37.86035498799998],[76.26811949900008,37.946130356000026],[76.34591663700002,37.98203775800005],[76.53543063000018,37.98403265100018],[76.58529658300006,37.92817883400011],[76.73793757800019,37.872744781999984],[76.62652548900019,37.947797348999984],[76.64453853400016,38.059600538000154],[76.73338352200011,38.32321474600019],[76.64879654100014,38.41621933700014],[76.35944352000007,38.62213285900009],[76.28955051700012,38.65320725600003],[76.01798255400007,38.69696062300005],[75.92567449800009,38.61192889800003],[75.70171356500015,38.561319972000035],[75.47344249000014,38.55537284400003],[75.14583563700006,38.59919226100004],[75.00730155300016,38.68791269400009],[75.01750953700014,38.743327971000156],[75.25795750600014,38.68072605000003],[75.40752452200019,38.70836655000011],[75.48235362700018,38.79413118900004],[75.39861254700008,38.895554564000065],[75.22850752100015,39.01626570500008],[74.80247449300003,39.237972073000094],[74.41422255900011,39.31253714900015],[74.25636248800015,39.385983910000164],[74.09812958999999,39.37912902200003],[73.86015361200015,39.49614659300016],[73.68130458600007,39.67149097900017],[73.5515515510001,39.85735163500004],[73.4641795980001,39.926549778000094]],[[73.09456650099997,39.49555147800004],[73.19121554500015,39.342668749000154],[73.19487759800018,39.21918152300003],[73.03598755900015,39.22957223300017],[73.01654858500007,39.173130173000175],[72.90885956900019,39.13248565400016],[72.87567863200007,39.013346791000174],[72.73116255100001,39.03008142800002],[72.67225654700007,39.286036588000115],[72.4843134910002,39.340909723000095],[72.62162750500005,39.408650756000156],[72.75763662500009,39.377778195000076],[72.90900457600003,39.43567334100004],[72.95424656900013,39.41927766800012],[73.09456650099997,39.49555147800004]],[[72.31046259300012,38.16084051700011],[72.4178775200001,38.149148936000074],[72.56694748899997,38.058643324],[72.5598755100001,37.98643591100006],[72.48854048400011,37.93201674],[72.520500514,37.81827967800018],[72.39647651000007,37.77744069900018],[72.09585552900012,37.77494557400007],[71.99304964200007,37.80539803400012],[72.07572152700004,37.92251803200014],[72.06882456100016,38.030582892000155],[72.15661661500002,38.00616137900005],[72.29656958800018,37.908522097],[72.38399451500015,38.00002767000012],[72.49319462000005,38.03048013000017],[72.31046259300012,38.16084051700011]]]]},"properties":{"objectid":552,"eco_name":"Pamir alpine desert and tundra","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Palearctic","eco_biome_":"PA10","nnh":3,"eco_id":762,"shape_leng":81.1587368903,"shape_area":12.171248359,"nnh_name":"Nature Could Recover","color":"#D69F45","color_bio":"#D6C39D","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":118222.46400085092,"percentage":2.4209521628228994}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-57.74835956899989,-18.675311917999977],[-57.86388063499993,-18.763212601999896],[-58.0133135399999,-18.78093144199994],[-58.07453948699998,-18.832037414999945],[-58.036037549999946,-18.91992133399998],[-57.914329633999955,-18.928051947999904],[-57.821762576999845,-18.896507828999916],[-57.74835956899989,-18.675311917999977]]],[[[-57.85715449299994,-18.191116695999938],[-57.994350489999874,-18.291334753999877],[-57.93222449399997,-18.358367683999916],[-57.93601663499993,-18.472730035999973],[-57.87039957599984,-18.516947088999927],[-57.83199352799994,-18.427270447999888],[-57.822425585999895,-18.319096120999973],[-57.85715449299994,-18.191116695999938]]],[[[-58.457916506999936,-18.227808644999982],[-58.570987542999944,-18.180735373999937],[-58.62873852099989,-18.20522276899993],[-58.65173360099993,-18.285489214999927],[-58.578903579999974,-18.335191050999924],[-58.51357653499991,-18.316536119999967],[-58.457916506999936,-18.227808644999982]]],[[[-58.316413552999904,-18.050933220999923],[-58.25006458699994,-18.096127437999883],[-58.25058359399998,-18.21842124899996],[-58.13863355399991,-18.099339382999915],[-58.21330256499988,-18.03962703999997],[-58.316413552999904,-18.050933220999923]]],[[[-58.47758447499996,-17.935664114999952],[-58.56967158399988,-17.918188349999866],[-58.66436747599988,-17.959452626999905],[-58.626605493999875,-18.042852730999982],[-58.47758447499996,-17.935664114999952]]],[[[-58.810409566999965,-17.776105032999965],[-58.89556148899993,-17.781736665999972],[-58.918289521999895,-17.99879744799989],[-58.84534450099994,-18.151790147999975],[-58.829288629999894,-18.283318301999884],[-58.74119549799997,-18.213418593999847],[-58.70036355999997,-18.10438512099995],[-58.80148350999997,-17.99852436599997],[-58.76780351499991,-17.89747549399982],[-58.810409566999965,-17.776105032999965]]],[[[-54.91512256899995,-17.834222299999908],[-54.86006553499993,-17.780342587999826],[-54.90798152299993,-17.71708536999995],[-55.12071657199988,-17.640336138999885],[-55.22476951899995,-17.636730243999978],[-55.24518163199991,-17.69369902199992],[-55.04272061599988,-17.73995924899998],[-54.91512256899995,-17.834222299999908]]],[[[-57.87012448199988,-17.71378273299996],[-57.97918360399996,-17.67946872999994],[-58.031799491999834,-17.72672891799988],[-58.21878852099991,-17.704919205999943],[-58.27903747299996,-17.734254525999972],[-58.246707633999904,-17.808353902999954],[-58.11140862999997,-17.843908761999955],[-58.086376578999875,-17.894904763999932],[-58.201587513999925,-17.92936947399994],[-58.1603924719999,-17.97854760799987],[-57.92967656299999,-17.973526009999944],[-57.871185630999946,-18.03194351699989],[-57.739826623999875,-18.06993717499995],[-57.66033148099996,-18.005608079999945],[-57.75564159899989,-17.813755535999974],[-57.87012448199988,-17.71378273299996]]],[[[-55.21975361999989,-17.31270615099993],[-55.554302532999884,-17.35732251899998],[-55.61444855599996,-17.405140437999933],[-55.587837521999916,-17.474674191999952],[-55.51110857499998,-17.477543149999974],[-55.28167358899998,-17.52853814599996],[-55.24961850899996,-17.406426556999975],[-55.20643661999992,-17.39769714099998],[-55.08501452599995,-17.520522531999973],[-54.99902759899993,-17.56919657899988],[-54.998294517999966,-17.330358103999913],[-55.04727148699993,-17.26707423199997],[-55.176864594999984,-17.28032736199998],[-55.21975361999989,-17.31270615099993]]],[[[-57.74624263599998,-21.645056593999925],[-57.679107613999975,-21.62502283899994],[-57.58130253899998,-21.461066777999918],[-57.61555853899989,-21.382130874999973],[-57.695312514999955,-21.45911882399986],[-57.74108860299987,-21.424752684999874],[-57.721916507999936,-21.3413812469999],[-57.748149518999924,-21.17401341599998],[-57.713519517999885,-21.080432651999956],[-57.589153531999955,-21.024738760999924],[-57.49642554299999,-21.050853250999978],[-57.43387961399998,-21.156510325999932],[-57.35979063099995,-21.13242576499988],[-57.25525253999996,-21.016873182999973],[-57.20551650599998,-20.912908078999976],[-57.20810651399995,-20.826553689999855],[-57.15650550599992,-20.715188035999915],[-57.1337275169999,-20.579266590999907],[-56.954910508999944,-20.41017024399997],[-56.95376252299991,-20.267135244999963],[-57.087066634999985,-20.303857200999914],[-57.1537165119999,-20.27548881799987],[-57.13480358499993,-20.134829752999963],[-57.163635487999954,-19.985891212999945],[-56.94039556699988,-19.783628847999978],[-56.85010151499995,-19.796498086999975],[-56.76966055799994,-19.885011989999896],[-56.69887555299994,-20.094100073999982],[-56.592132518999904,-20.079621006999957],[-56.46894452599997,-20.09811701699988],[-56.36974352799996,-20.084714688999952],[-56.32135362799994,-20.21810295599994],[-56.22837451699996,-20.204651844999887],[-56.15125262599997,-20.063543007999954],[-56.06566953899983,-20.087877348999882],[-55.95221360599993,-20.314186722999978],[-55.86917861699993,-20.312437754999962],[-55.87613257899994,-20.226169698999854],[-55.9357225469999,-20.160361365999904],[-55.94515654599985,-20.072924200999978],[-55.90145849999993,-20.03597341899996],[-55.79377350699997,-20.147525989999906],[-55.77035849299989,-20.241945781999902],[-55.68999062599994,-20.22712255399989],[-55.64564147399989,-20.126251210999897],[-55.51816161099998,-20.05418947399994],[-55.44383961099999,-19.95298721399996],[-55.382801585999914,-19.792762439999933],[-55.24634151999987,-19.556052967999904],[-55.11884656999996,-19.435230012999966],[-55.100040596999975,-19.33805374799988],[-55.13411755899995,-19.210734314999968],[-55.23466854599985,-19.053383528999973],[-55.27210648399995,-18.944989929999906],[-55.12707156399989,-18.867746501999818],[-55.1077765899999,-18.71263167199993],[-55.049484476999964,-18.59253861299993],[-55.05074662399994,-18.492047639999953],[-55.09733156499988,-18.447649369999965],[-55.234569471999976,-18.412497511999902],[-55.33602151399998,-18.347325364999847],[-55.29835860499992,-18.267721088999906],[-55.05899458399989,-18.229650484999866],[-54.913570575999984,-18.328428531999975],[-54.81706955699991,-18.295297382999934],[-54.79908752499995,-18.247773500999926],[-54.81280149199989,-18.064688426999908],[-54.88624154799999,-17.955652104999956],[-55.01704449999994,-17.91110664799993],[-55.1755595329999,-17.82302307099991],[-55.28690356099992,-17.72960089299994],[-55.46753659199993,-17.62967469299997],[-55.741050497999936,-17.498411741999973],[-56.03816951999988,-17.29124462299984],[-56.162025550999886,-17.248250153999948],[-56.07588556999991,-17.19333862999997],[-55.92950853899998,-17.27751053999998],[-55.73859761799997,-17.34822111299991],[-55.530349568999895,-17.27552168199992],[-55.437076587999854,-17.210816573999978],[-55.36134760199991,-17.246745433999877],[-55.281478625999966,-17.20574870799993],[-55.053596470999935,-17.15246310499998],[-54.99767660399988,-17.080884501999947],[-55.031326591999914,-16.850723977999962],[-54.952457576999905,-16.749324071999922],[-54.97610057899993,-16.63019258499986],[-55.17645254099989,-16.663145534999956],[-55.453540489999966,-16.79358756199997],[-55.61127047399998,-16.79853204699998],[-55.798896526999954,-16.765749249999942],[-56.18092355699997,-16.77183484699998],[-56.276107611999976,-16.720329895999896],[-56.23835753099996,-16.64090381899996],[-56.11782056699997,-16.614200584999878],[-55.99431959399993,-16.66544653499983],[-55.83472061299983,-16.595748829999934],[-55.77980456299997,-16.68756386299998],[-55.623138577999896,-16.71113545099996],[-55.494201604999944,-16.666260249999937],[-55.41883454899994,-16.440919320999967],[-55.409728617999974,-16.366347203999908],[-55.44696052899991,-16.204711421999946],[-55.521171551999885,-16.152172646999873],[-55.70145757299997,-16.33577421299998],[-55.76274856299989,-16.359904705999952],[-55.83198157499993,-16.313129662999927],[-55.75069857199992,-16.1777200169999],[-55.61383449799996,-16.0926693479999],[-55.624511533999964,-15.99462253899992],[-55.84543654099997,-16.160696203999976],[-55.927577515999985,-16.184929626999917],[-56.024791499999935,-16.16429287899996],[-56.18049255999995,-16.22081741599993],[-56.32484049999988,-16.113992071999974],[-56.39373354099996,-16.091862505999927],[-56.48692655799994,-16.12539145999989],[-56.6155015999999,-16.235869469999955],[-56.74941658499989,-16.25405736199997],[-56.91791546999991,-16.206029391999834],[-57.08987859599995,-16.26074192999988],[-57.23863558499994,-16.205340399999955],[-57.34062155299989,-16.21485385999989],[-57.390994611999986,-16.185308488999908],[-57.34431059699995,-16.100175845999956],[-57.44254247899988,-16.067083923999917],[-57.62430153499997,-16.09772497699987],[-57.663757499999974,-16.202895398999942],[-57.80528660599998,-16.30788996799987],[-57.833389617999956,-16.2404602389999],[-57.86850761299996,-16.039434707999817],[-57.94787250199988,-15.892684011999961],[-58.088878576999946,-15.879307834999906],[-58.21187562999995,-15.965187641999933],[-58.208423626999945,-16.01956691499987],[-58.07261651099992,-16.138209401999973],[-58.07659154499993,-16.218572574999826],[-58.18134655899985,-16.29859426899992],[-58.14241747999989,-16.396828330999938],[-58.04695548199999,-16.52005957399996],[-58.00434155099998,-16.650199349999923],[-57.951614518999975,-16.71653926399989],[-57.86920549099989,-16.75693366699994],[-57.86828247499989,-16.864498127999923],[-58.00747252699989,-16.838118601999895],[-58.05755657799989,-16.722135021999975],[-58.177570511999875,-16.566893625999967],[-58.30445056499997,-16.59356785899996],[-58.3368456149999,-16.67024098299993],[-58.33245048099997,-16.771890837999877],[-58.37091453099998,-16.822527758999968],[-58.47170658199991,-16.79349133799991],[-58.462051634999966,-16.67167914999993],[-58.338542615999984,-16.49343931999988],[-58.30578647299984,-16.26074595299997],[-58.5830536279999,-16.131146977999947],[-58.78649549399984,-16.138892358999897],[-58.93657263199998,-16.10886335299989],[-58.968490583999824,-16.141456215999938],[-59.14800647499993,-16.190405188999932],[-59.267223624999986,-16.279495767999947],[-59.248527622999916,-16.362787242999957],[-59.32466162299994,-16.454390715999978],[-59.58874555199992,-16.393606326999816],[-59.70984661899996,-16.397356054999932],[-59.861728548999906,-16.429941206999956],[-60.100761483999975,-16.42361152899997],[-60.09617960099996,-16.48265499599995],[-59.97108455699993,-16.566281578999963],[-59.74770348499993,-16.685312315999965],[-59.68478355499997,-16.768922805999978],[-59.62183747399996,-16.70157521999988],[-59.52775949499994,-16.761528290999934],[-59.37703359799997,-16.711675412999966],[-59.32067150199987,-16.61914624299982],[-59.24293555199995,-16.642223800999943],[-59.23108655899995,-16.718505154999832],[-59.31443050399997,-16.726200580999887],[-59.33733355199996,-16.82615527899992],[-59.44631153599994,-16.80945953399987],[-59.58020757799994,-16.845406163999883],[-59.61190055999998,-16.909825112999954],[-59.562126471999875,-16.94755977099993],[-59.45431558299998,-16.945953797999948],[-59.43718347599997,-17.076783906999935],[-59.51627360599991,-17.150439378999977],[-59.56225152999991,-17.23393620999991],[-59.539318474999845,-17.298410144999934],[-59.42644860499996,-17.30126904399998],[-59.431152528999974,-17.37280171499998],[-59.334361495999985,-17.397506200999885],[-59.29119855099992,-17.24735328999992],[-59.15094349399993,-17.266645245999825],[-59.078304579999894,-17.196830362999947],[-58.82234556399993,-17.131220512999903],[-58.78025047299997,-17.140670772999954],[-58.61186256399998,-17.02440002999998],[-58.54930858899991,-17.02821295799987],[-58.540264514999876,-17.11936330499998],[-58.62680850399988,-17.135368045999883],[-58.65957654799996,-17.200483028999827],[-58.744529483999884,-17.249642052999945],[-58.777797592999946,-17.36312430399994],[-58.90908451599989,-17.496815995999896],[-58.88892352399995,-17.583415807999927],[-58.898345621999965,-17.723372132999884],[-58.76161549099987,-17.678431720999868],[-58.736644627999965,-17.637535408999952],[-58.58808863699994,-17.663694825999983],[-58.530727585999955,-17.632644736999964],[-58.41897552599994,-17.62687295799998],[-58.16377658099998,-17.474907376999965],[-58.09371560499994,-17.469353695999814],[-57.97864548599995,-17.561325971999963],[-57.91242560099994,-17.501901630999953],[-57.782424628999934,-17.500599586999954],[-57.60902048699995,-17.368525770999952],[-57.58199354299995,-17.47021753499996],[-57.616805598999974,-17.567098588999954],[-57.548820484999965,-17.613286898999945],[-57.43357451299994,-17.463253848999955],[-57.38536063199996,-17.49755779399993],[-57.38665060699992,-17.579123769999967],[-57.43389553999987,-17.804887314999917],[-57.440299480999954,-17.995200773999954],[-57.40825647099996,-18.200903238999956],[-57.408527541999945,-18.449135312999886],[-57.49962659199997,-18.63107240099987],[-57.76041056599996,-18.818465268999887],[-57.78434358199996,-18.890488113999936],[-57.62758656999989,-19.009069076999936],[-57.515388592999955,-19.050646501999893],[-57.411819617999925,-19.0578732109999],[-57.478168584999935,-19.165349996999964],[-57.39349761599988,-19.335660043999894],[-57.389816619999976,-19.38057715499997],[-57.47743952699989,-19.42655776099997],[-57.52492552299998,-19.40756688299996],[-57.550853598999936,-19.27278470599998],[-57.59938850699996,-19.198229017999893],[-57.80059860699993,-19.233152049999944],[-57.94363058799985,-19.222503680999864],[-58.05924251399995,-19.241061549999927],[-58.1061176369999,-19.15657833599994],[-58.286998604999894,-19.134736604999887],[-58.37855161899995,-19.155947345999948],[-58.51228756599994,-18.99118729299994],[-58.715171532999875,-18.873772921999887],[-58.825687596999956,-18.75587005499989],[-58.98548153999985,-18.629935646999968],[-59.10432854499999,-18.623451071999966],[-59.04307158499995,-18.659478838999917],[-59.00073962099992,-18.75637497999992],[-59.065448584999956,-18.82789289899995],[-58.88558953799998,-18.885516471999892],[-58.81034854599989,-18.97367632299995],[-58.83924850999995,-19.018053638999902],[-58.774475508999956,-19.081713858999933],[-58.79761861499992,-19.1557485269999],[-58.76173350799996,-19.222574590999955],[-58.67721559299997,-19.156492336999975],[-58.616619629999946,-19.203498720999903],[-58.63241163799995,-19.295032455999944],[-58.56713857299991,-19.45204913999993],[-58.579067529999975,-19.63215981099995],[-58.54998752299997,-19.681648913999936],[-58.458717481999884,-19.696799874999954],[-58.24259161699996,-19.81837300999996],[-58.23229562199998,-20.101252686999885],[-58.14702953899996,-20.10127565399995],[-58.13239255699989,-20.1663309569999],[-58.0269205539999,-20.38072981499994],[-58.00138458299995,-20.733069987999954],[-58.043907486999956,-20.99159252499993],[-58.06821450299992,-21.248666500999946],[-58.039565492999884,-21.445667544999935],[-57.990444522999894,-21.502770266999903],[-57.89878053299992,-21.51715847399987],[-57.80849050399996,-21.623744933999888],[-57.74624263599998,-21.645056593999925]]],[[[-60.05122762199994,-15.468817034999972],[-60.18867457299996,-15.452573073999929],[-60.35352749799989,-15.270628777999946],[-60.375041496999984,-15.146559846999935],[-60.482006482999964,-15.120033637999825],[-60.55908948299992,-15.071199663999948],[-60.68803751899998,-15.167226434999975],[-60.64177360499997,-15.302049850999936],[-60.527141522999955,-15.376748198999962],[-60.44492360299995,-15.514836197999955],[-60.57308156099998,-15.704819241999814],[-60.65716948499988,-15.707683002999886],[-60.778877568999974,-15.657547989999955],[-60.885677599999894,-15.645677873999944],[-61.05463061599994,-15.717386396999927],[-60.974204578999945,-15.855829285999903],[-60.87751060799991,-15.85946434999994],[-60.82935355699993,-15.78010231099995],[-60.65703151799994,-15.894221922999975],[-60.650176629999976,-15.978476813999919],[-60.483821500999966,-16.12509943499998],[-60.47246150699988,-16.17236431599997],[-60.32995255699984,-16.213064658999826],[-60.233970545999966,-16.295807453999828],[-60.155124496999974,-16.2470286329999],[-60.057079530999886,-16.30903677999993],[-59.95521962599997,-16.34200263699995],[-59.82599247199994,-16.25332226899991],[-60.153758581999966,-16.23796930499998],[-60.12256650299997,-16.194440907999876],[-59.99188659699996,-16.23495047899985],[-59.895980525999846,-16.017583253999874],[-59.822227488999886,-15.998302529999933],[-59.798534530999916,-16.1709725849999],[-59.659122525999976,-16.20666406999993],[-59.612094516999946,-16.169335598999908],[-59.54871358299994,-15.976229792999902],[-59.58712063699994,-15.900267789999873],[-59.67832948999995,-15.840329302999976],[-59.806693474999975,-15.716204380999898],[-59.951827637999884,-15.676875820999953],[-59.97812250599998,-15.525431426999887],[-60.05122762199994,-15.468817034999972]]],[[[-61.012245510999946,-15.065963153999917],[-61.093402617999914,-15.00960172899994],[-61.069702618999884,-15.093939432999946],[-60.967441555999926,-15.213960574999874],[-60.945556574999955,-15.362384968999834],[-60.85781447699998,-15.450699215999919],[-60.76979057999989,-15.44470481399992],[-60.76838258799984,-15.359372177999944],[-60.82249447799995,-15.315443125999934],[-60.82692749899991,-15.211142746999883],[-60.91846458699996,-15.157045272999937],[-61.012245510999946,-15.065963153999917]]]]},"properties":{"objectid":555,"eco_name":"Pantanal","biome_num":9,"biome_name":"Flooded Grasslands & Savannas","realm":"Neotropic","eco_biome_":"NO09","nnh":2,"eco_id":584,"shape_leng":63.887652103,"shape_area":14.5552400441,"nnh_name":"Nature Could Reach Half Protected","color":"#29A26C","color_bio":"#BEE7FF","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":171428.94379544706,"percentage":14.824839304244858}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-69.25038949899994,10.095597413000121],[-69.4101715409999,10.105036777000066],[-69.45330850199991,10.155537240000058],[-69.48466453199995,10.30762972399998],[-69.47415161299983,10.403112844000134],[-69.60698650599994,10.42473647800017],[-69.62649555399997,10.490996931000097],[-69.61344962399994,10.602396113000168],[-69.73583949199997,10.739045442000133],[-69.87895160399984,10.726298244000077],[-69.89589662699996,10.82805019],[-69.80847957999993,10.893771855000125],[-69.78425554399996,11.011249424000141],[-69.81269852699995,11.051817668000183],[-70.11622651999994,11.136474890000045],[-70.14703353399995,11.227241682000056],[-70.03847464499995,11.268456841000045],[-69.93129759599992,11.26798896300005],[-69.66558858199988,11.318110229000183],[-69.56153161299983,11.424105933000078],[-69.66087359399995,11.502980648000118],[-69.75629452099992,11.672188977000076],[-69.79342651999991,11.799280087000113],[-69.81800058399989,11.987491364999983],[-69.92456055699995,12.161223407000023],[-70.01847056199995,12.200264803000039],[-70.20692457899992,12.067513729999973],[-70.28887964399996,11.906059834000132],[-70.27382658399995,11.831215138],[-70.20505558299993,11.738020277000146],[-70.23075852099993,11.621210577000056],[-70.17897763799994,11.611409283000171],[-69.96688849799989,11.659544709000158],[-69.92114258499993,11.649336556000094],[-69.8425065859999,11.719606744999965],[-69.80509161499992,11.69339435400019],[-69.72975154799985,11.48764377700013],[-69.8152925579999,11.41878325700003],[-69.93359356599984,11.481383166000171],[-69.99203454199994,11.411036870000089],[-70.08444955099998,11.360517295000136],[-70.1554105759999,11.394680927000138],[-70.51138262799992,11.243295541000066],[-70.7118075119999,11.225920861000077],[-70.83500656899997,11.19690673600013],[-71.16171253499988,11.02185772900009],[-71.29837762299991,10.97147628800019],[-71.31859561099998,10.86724648400002],[-71.43741663299994,10.797321295000074],[-71.58327448899996,10.80261899300018],[-71.52291154199992,10.724160691],[-71.42715450099996,10.72110582200014],[-71.25312054199998,10.75542535700015],[-71.14493548599995,10.815394187000095],[-70.85253161999998,10.913086274000136],[-70.50252563899994,11.055672505000189],[-70.48249054299993,11.10093830300002],[-70.33085654999991,11.00250223800009],[-70.17536151699989,10.96643557900012],[-70.14450856999991,10.894046613000171],[-70.10331755099998,10.602360909000083],[-70.03535456499992,10.501635914000076],[-70.04300657199997,10.453901478000091],[-70.21707958999986,10.421540794000066],[-70.1593856099999,10.236378685000147],[-70.16476461199983,10.12740237700018],[-70.11926261299988,10.020666886000072],[-69.89218864099996,9.970537405000073],[-69.84078963699994,9.874953031000075],[-69.84631364699993,9.743336364000129],[-69.89212057999998,9.67688212100012],[-69.76790664199996,9.65121891299998],[-69.68015264199994,9.784329571000058],[-69.5040966329999,9.930179212000098],[-69.42772659899998,9.956662171000062],[-69.29917955199988,9.936447702000066],[-69.29328958899998,9.976318907000064],[-69.25222060999982,9.97764492400006],[-69.25038949899994,10.095597413000121]]]},"properties":{"objectid":558,"eco_name":"Paraguaná xeric scrub","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Neotropic","eco_biome_":"NO13","nnh":3,"eco_id":606,"shape_leng":16.3706018937,"shape_area":1.31540395908,"nnh_name":"Nature Could Recover","color":"#CC9753","color_bio":"#CC6767","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":16008.800773055784,"percentage":0.060680359113458565}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-59.56915654199997,-30.538695920999942],[-59.60620455399987,-30.364607311999976],[-59.54363247299983,-30.31263012499994],[-59.57252154099996,-30.228206254999918],[-59.53862763899997,-30.11684043299988],[-59.54235054499998,-29.933407175999832],[-59.501136558999974,-29.914680159999932],[-59.49033362699993,-29.723386353999842],[-59.46008249999994,-29.663470498999914],[-59.4192654819999,-29.409898313999975],[-59.29792754299996,-29.184496866999893],[-59.207054635999896,-29.07978024199997],[-59.04803853299995,-28.720068519999984],[-58.966022616999965,-28.20705044799996],[-58.86828962599992,-28.09950861799996],[-58.80121260699991,-28.078122694999877],[-58.73073555399998,-27.968380280999952],[-58.73506547699992,-27.643444906999946],[-58.76805161899995,-27.46770556699994],[-58.65185547399989,-27.40799691199993],[-58.56514351199996,-27.328360449999877],[-58.662151636999965,-27.186988420999967],[-58.63216353399997,-27.114231656999834],[-58.557334595999976,-27.051055575999897],[-58.47703160499998,-27.06592088199983],[-58.47875961799997,-26.921001127999943],[-58.414199517999975,-26.90888475199995],[-58.24313761399992,-26.73354153999992],[-58.24864955399988,-26.640333770999916],[-58.18763751299997,-26.640352545999974],[-58.221626632999914,-26.398136498999975],[-58.11784760799992,-26.23910866199998],[-58.110691473999964,-26.1332914919999],[-57.95119458499988,-26.06505374799997],[-57.85644555199991,-25.993891892999898],[-57.86787461199998,-25.854437307999888],[-57.83348450099999,-25.777402923999944],[-57.744022604999884,-25.729178314999956],[-57.662879578999934,-25.597340197999984],[-57.57024747899993,-25.55405940199995],[-57.60498862399993,-25.43955656999998],[-57.682468589999985,-25.583806105999884],[-57.836898617999964,-25.685431317999928],[-57.97609353199988,-25.98266030999997],[-58.16802955899993,-26.093012256999884],[-58.339000602999874,-26.420937622999872],[-58.331706502999964,-26.58956475099984],[-58.37007851999982,-26.728531843999917],[-58.53169250999986,-26.85148313199994],[-58.74206553999994,-27.04829759499995],[-58.78921558899992,-27.142446316999838],[-58.82247548399994,-27.32878624999995],[-58.95747760199998,-27.45006719199995],[-58.95697049699993,-27.687123004999876],[-59.087486619999936,-27.9082178299999],[-59.08850451799998,-27.97619104099988],[-59.14728948699985,-28.064949024999976],[-59.35948155699998,-28.562952761999952],[-59.44158950699995,-28.696908315999906],[-59.44640759299989,-28.771051445999888],[-59.62610252099989,-29.106398148999915],[-59.69000648699995,-29.171441549999884],[-59.812171551999825,-29.443115795999972],[-59.894641599999886,-29.724839272999873],[-59.95432259499995,-30.071111283999983],[-59.99734858099998,-30.17567737099995],[-60.10849747799995,-30.45153921499991],[-60.28054861399988,-31.104708072999927],[-60.34019457199986,-31.220704895999972],[-60.44432060899993,-31.268219390999946],[-60.56169156099992,-31.37707952599993],[-60.84720650799994,-31.825777555999878],[-60.8395115859999,-32.08806406999997],[-60.72694363199997,-32.13629136199995],[-60.7176854839999,-32.24784191999987],[-60.7611086039999,-32.32110427999993],[-60.75737362799987,-32.43407272099995],[-60.80363050199992,-32.508640646999936],[-60.79544054499996,-32.57737141499996],[-60.723071527999934,-32.683892998999966],[-60.685729478999974,-32.89000667999994],[-60.50665263199994,-33.132961172999956],[-60.25412349099997,-33.27271616499996],[-59.97742060599995,-33.495994643999836],[-59.84858354499994,-33.53766527499994],[-59.80777356699991,-33.591553703999864],[-59.678047521999986,-33.63494463799992],[-59.58985162799996,-33.692256067999836],[-59.4724764849999,-33.66348183299988],[-59.45325460199996,-33.72908480999996],[-59.37713954499998,-33.755940091999946],[-59.254436528999975,-33.933428903999925],[-59.15761951199994,-33.979787701999896],[-58.9773904889999,-34.121816871999954],[-58.787425549999966,-34.23594184799987],[-58.55087248399997,-34.29864887699989],[-58.436965604999955,-34.2618008579999],[-58.38360959399995,-34.20366967699988],[-58.37765458699988,-34.05355079699996],[-58.41252548399996,-34.01555663499994],[-58.45798456799997,-33.838758827999925],[-58.554973581999946,-33.72344295099998],[-58.52318554899995,-33.45239768299996],[-58.41423455399996,-33.30173314099994],[-58.43390252199998,-33.25682072399991],[-58.41324649499984,-33.07431517599997],[-58.240055587999905,-33.08519069499988],[-58.28657950999997,-33.00764819999995],[-58.4052845249999,-32.994815338999956],[-58.55928456199996,-33.010855954999954],[-58.58815753599998,-33.069673277999925],[-58.63869856899993,-33.40161843699997],[-58.76474747299994,-33.54255225999998],[-58.99538459099989,-33.48913271499998],[-59.387767630999974,-33.45594574199998],[-59.41644647999982,-33.39667043199995],[-59.80855962199985,-33.140228115999946],[-59.95031755399992,-32.9134200179999],[-60.20200749899982,-32.61042042099996],[-60.433170497999924,-32.428792960999886],[-60.603919588999986,-32.08417721399991],[-60.65138647399988,-32.03298172299998],[-60.64209362599996,-31.841504855999972],[-60.61041656999993,-31.761055683999928],[-60.31719949099988,-31.633996928999977],[-60.17087560199985,-31.460763776999954],[-60.09293748099992,-31.392675062999956],[-60.06859961899988,-31.324219556999935],[-59.990058503999876,-31.25516792899998],[-59.87448463199985,-31.106502805999924],[-59.78662149999991,-30.928794220999976],[-59.673740564999946,-30.796935819999874],[-59.57757163699989,-30.62682392199997],[-59.56915654199997,-30.538695920999942]]]},"properties":{"objectid":559,"eco_name":"Paraná flooded savanna","biome_num":9,"biome_name":"Flooded Grasslands & Savannas","realm":"Neotropic","eco_biome_":"NO09","nnh":1,"eco_id":585,"shape_leng":26.8105072644,"shape_area":3.50975852853,"nnh_name":"Half Protected","color":"#3688D1","color_bio":"#BEE7FF","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":37206.6337063206,"percentage":3.2175568112130697}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[70.61353254700015,38.06829441499997],[70.59297961700014,38.17879623000016],[70.52063759000004,38.19776313600005],[70.46415764400012,38.109110596],[70.33331261500001,37.99918059400005],[70.15914957500007,37.91602909700015],[70.23414648600004,37.82298259600009],[70.28637664000007,37.70026700700009],[70.13499460700007,37.52697535000004],[69.95864053700012,37.563004458000194],[69.91804463300014,37.60986767800006],[69.65914960400005,37.56903557200002],[69.51220662700013,37.57487222700007],[69.38114953600012,37.444220820000055],[69.4119265430001,37.29459680700012],[69.40998864699998,37.17320723500018],[69.31153162800007,37.11488930600018],[69.22755451300009,37.03218104400008],[68.98829660700005,36.8992569670001],[68.89472154300006,36.81808946700016],[68.75248751900011,36.734007243000065],[68.65363353200001,36.705847737000056],[68.49202758900014,36.72071756800017],[68.4057925570001,36.76502849900015],[68.32373858700015,36.68787425400018],[68.32173950300012,36.58747648800016],[68.19728852500003,36.57764267200008],[68.09211760000005,36.67366843700006],[68.00228153500007,36.61604067300004],[67.8735655100001,36.61164989700018],[67.82488257800014,36.569689754000024],[67.70006564600016,36.63574351000017],[67.53927660300013,36.614861842000096],[67.30703753500018,36.561942026000054],[67.17546864500014,36.55162725600013],[67.04273249100004,36.57990461200018],[66.9757996410001,36.496612467000034],[66.78590360100009,36.595510207000075],[66.41751057400006,36.61238599600006],[66.192443566,36.429601833000106],[66.0063475450001,36.34984970000011],[65.43920148900008,36.19920309600002],[65.21766661500004,36.101728267000055],[65.0758744850001,36.02197613500016],[64.730270512,35.747270490000176],[64.36694350700014,35.614350436999985],[64.1631246230001,35.57890135600013],[64.06565063300008,35.49028854700009],[64.01248153900019,35.39281405300005],[63.782077605000154,35.295339225000134],[63.321269569000094,35.25102829400015],[63.02883955100009,35.20672239200013],[62.851604544000054,35.1535539680001],[62.76298854900011,35.07380200300014],[62.64035761700012,34.92297267300006],[62.48827753900014,34.69276169000011],[62.41812151300019,34.65183889200006],[62.364215482000134,34.52469112099999],[62.49457151000013,34.451012180000134],[62.664600596000014,34.451012180000134],[62.69293947500012,34.485019237000074],[63.03300049600017,34.541692805000025],[63.52608858200017,34.46801772000015],[63.860481592000156,34.50202058700006],[63.944045478000135,34.46859774799998],[64.12482452200004,34.48887910400015],[64.3216855880001,34.47925533800003],[64.4847794870002,34.49599399900006],[64.67703251800009,34.58202065600017],[64.90382351700003,34.664648452000165],[65.03034951900008,34.73048075800011],[65.18907158400009,34.78273320700009],[65.28029653100009,34.77954054000003],[65.42749750300015,34.81458544499998],[65.55744164500004,34.89640438700002],[65.59589362600019,34.97777322100012],[65.52069052000007,35.019963363000045],[65.40213755200017,35.020554287000095],[65.45322458100003,35.10134409900007],[65.58857756500015,35.212173311000015],[65.33870649300019,35.15663280900003],[65.08477053400009,35.19248572900017],[65.00550857500014,35.253020337000066],[65.05621355700009,35.32232761200004],[65.16390961400009,35.32243758300018],[65.28948963400018,35.2793517500001],[65.3207246290001,35.317269804000034],[65.432472497,35.29903128600017],[65.53229560000017,35.36306366100018],[65.86641653300012,35.36127060500013],[66.01122262800016,35.48276578800005],[66.10251664100014,35.47030709500012],[66.24215663400014,35.59002112400003],[66.45891550000005,35.5645507000001],[66.37556451300003,35.38132011700009],[66.27088963000006,35.29834128700003],[66.1302946030001,35.230129024000064],[66.12213850900008,35.16512350900018],[66.28348561900015,35.03565277700005],[66.3969425570001,34.90151617400011],[66.4779965670001,34.92847371600004],[66.45874048600012,34.997353849000035],[66.35112757800005,35.11326500900003],[66.44077253500018,35.24536045100007],[66.55165857600014,35.321594698000126],[66.60023455500004,35.39362273900019],[66.79404460800004,35.45253947200018],[66.86628756100009,35.52186988100016],[66.97097753200018,35.53180243700007],[67.00580551299998,35.42386816600009],[66.99166155500018,35.30546691100005],[67.07788049300012,35.33420242200003],[67.07660661100005,35.402868649000084],[67.12883760300014,35.51811193900005],[67.18823948000016,35.57511759800008],[67.17649056600004,35.655964574000166],[67.2371215660001,35.70302544000003],[67.33532763200009,35.678146108000135],[67.41711455500007,35.553328002],[67.51970653500007,35.58030549300008],[67.53027360100009,35.50134327100017],[67.81607051500015,35.491463354000075],[68.01441953700004,35.513446907000116],[68.12510659200007,35.57677637600017],[68.25032853700009,35.69694872800011],[68.38023362000018,35.67707389500015],[68.26918748400004,35.529212429000154],[68.32816356100017,35.473038925000026],[68.53234856700016,35.476795862000074],[68.75035063700005,35.394060778000096],[68.91873150400005,35.44415857500019],[69.09925858800011,35.53798627000003],[69.34095764000011,35.56446369600019],[69.45558150700009,35.676624122000135],[69.41014857400017,35.73944346800005],[69.37342863000003,35.87732929600014],[69.44420659400015,35.92937203000008],[69.54656254000014,35.9291212440001],[69.5484695900002,35.986541639000166],[69.46741457500002,36.11999964300014],[69.68933049100013,36.25672675599998],[69.69600650900009,36.377489864000154],[69.76716652000005,36.44101848800011],[69.87688462699998,36.46847592600017],[69.88098153400011,36.551825069000074],[70.03742958900011,36.622544527000116],[70.14743050100014,36.61851283200002],[70.18019049900016,36.70236589400014],[70.27659663500009,36.750410963000036],[70.31452156199998,36.83604098900008],[70.42124950900018,36.800278761000186],[70.38976255400007,36.64776315900019],[70.42424050700004,36.54267052200015],[70.34153760900006,36.41247726900019],[70.43394457100004,36.29005504700007],[70.50612650400018,36.460828110000136],[70.57829251100009,36.57455259900013],[70.57456960500008,36.663105898000026],[70.46270757500014,36.711409632000084],[70.49975558700004,36.80414684100009],[70.50423454100007,37.059398424000165],[70.62831855900004,36.984700915000076],[70.81069955200002,36.94688277400013],[70.88035551500008,36.89142893999997],[70.85282163300013,36.715506539000046],[70.91999051800008,36.54033247400014],[71.03628556900014,36.48516161300006],[71.05282557800007,36.39460973400003],[71.2555466,36.20614180300015],[71.35720064600002,36.342093925000086],[71.42952758600006,36.367026064000186],[71.43847660800009,36.469323002000124],[71.48538257700005,36.511161942000115],[71.66107950500009,36.51299707600009],[71.86911750400009,36.58117866099997],[71.87159754100003,36.58280340900012],[72.091674635,36.7295182310001],[72.1089175510001,36.743964106000135],[72.23345151000007,36.815094613000156],[72.24775656899999,36.82006541700002],[72.31745963800006,36.84428811100014],[72.32449356300003,36.8467339500001],[72.35530862400014,36.85744082600013],[72.36052652700016,36.859252658000116],[72.38416248800013,36.863006577000135],[72.44322154500003,36.868015603000174],[72.51930961300013,36.87587346900017],[72.59452059800014,36.8912619730001],[72.61612662900018,36.89948193800018],[72.64102155200004,36.91427566100003],[72.6718676270001,36.92846119400019],[72.68256360599997,36.93338221000005],[72.73641951300016,36.9581547570001],[72.74584161000018,36.96248853600008],[72.78491251100002,36.99638478500009],[72.68641659900004,37.02264813800019],[72.24081450900007,36.94838179300007],[72.07106051800014,36.87411846599997],[71.8694836250001,36.693760194000106],[71.69525151800019,36.66979281200014],[71.56139353000009,36.76538674200003],[71.47884351900007,36.745173112000145],[71.40795156100017,36.66605364500009],[71.32764454700015,36.73511013400014],[71.28885661900017,36.90436456400005],[71.24543752200009,36.99453473100016],[71.1434175230001,37.06499032700003],[71.06137059300016,37.23562291000019],[70.92689552900003,37.27810625100011],[70.8408665250002,37.174901218000116],[70.83386964700003,37.07130726500009],[70.71088449700005,37.07875827400011],[70.53295848500011,37.19708375700009],[70.57000750300011,37.28982079900004],[70.74038661700018,37.21825024200018],[70.78183764200014,37.28979800000019],[70.76851661900008,37.38343123400006],[70.70066863300013,37.45332658400008],[70.69654859200006,37.60343976400003],[70.45225550900005,37.735906356999976],[70.47150455000013,37.8274387510001],[70.57711753600012,37.77155056800018],[70.64381451900016,37.827613765000194],[70.60734552900004,37.919684110000105],[70.61353254700015,38.06829441499997]],[[64.94999657100004,34.85825851300007],[65.03833059900018,34.79690398800011],[64.91999857800016,34.737354421000134],[64.79114559200019,34.74870720600006],[64.76760853700006,34.80870671300016],[64.94999657100004,34.85825851300007]],[[64.13227854900015,34.719979071000125],[64.09406260200012,34.66583834700009],[63.963272558000085,34.605445896],[63.83704361100007,34.59549322400005],[63.78636159500002,34.700925329000086],[63.84136163200003,34.77911624800009],[64.03241756000006,34.80203874100016],[64.13227854900015,34.719979071000125]],[[63.65876757100011,34.71666017300015],[63.58374048500019,34.59701219300007],[63.531379574000084,34.58488156699997],[63.300472558000195,34.652365779000036],[63.30873862400006,34.68729970700019],[63.65876757100011,34.71666017300015]],[[62.99419060800017,34.60304297200014],[62.81349957400005,34.598007292000034],[62.82054154600007,34.642881990000035],[62.98492055800017,34.67832805300003],[62.99419060800017,34.60304297200014]]]},"properties":{"objectid":560,"eco_name":"Paropamisus xeric woodlands","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Palearctic","eco_biome_":"PA13","nnh":4,"eco_id":834,"shape_leng":39.3361008727,"shape_area":9.25652562138,"nnh_name":"Nature Imperiled","color":"#E6644C","color_bio":"#CC6767","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":92803.49172146046,"percentage":0.35176583708375925}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-69.37591553999982,-52.48621437099996],[-69.55979957599993,-52.509415813999965],[-69.61596654199991,-52.56097172699998],[-69.58637959699996,-52.62997004599998],[-69.69393148499995,-52.74709540799995],[-69.90105451499988,-52.838211221999984],[-70.03049456999997,-52.82458392399997],[-70.13375056499984,-52.73108815199987],[-70.34701551799992,-52.74324928799996],[-70.26989748299991,-52.866275677999965],[-70.09574852399993,-52.92813294999985],[-70.14414261599984,-53.01469386999992],[-70.02061448499995,-53.08180324199998],[-69.88745856499992,-53.20029368099989],[-69.75115155299989,-53.36764022199998],[-69.58958450199992,-53.34334074999998],[-69.3787915389999,-53.351474045999964],[-69.31545251399984,-53.48200391499989],[-69.45397955799996,-53.54572230499991],[-69.34700048899987,-53.685061219999966],[-69.14149449599995,-53.791398736999895],[-68.92816952699997,-53.86233444899989],[-68.76696055099995,-53.946393370999886],[-68.59477262299998,-54.00014735399998],[-68.14168549299995,-54.05389379299987],[-68.04579149199992,-54.080585293999945],[-67.83434256099991,-54.01846583599996],[-67.66938754499995,-53.94104102199998],[-67.53593457099998,-53.932758863999936],[-67.55749550799987,-53.838773756999956],[-67.79193163999992,-53.72330817899996],[-68.0219345839999,-53.54750027399996],[-68.0672075899999,-53.40203519499994],[-68.13198863699995,-53.32340422599998],[-68.44380951699986,-53.29594175799991],[-68.52021760599985,-53.257236810999984],[-68.52681751599994,-53.1453306919999],[-68.37446552899996,-53.028766246999965],[-68.25185354099995,-52.99937359499995],[-68.58948548599994,-52.68766117699994],[-68.77886955899999,-52.539048188999914],[-68.81185150999988,-52.60887061599988],[-69.12790659199993,-52.70261449199995],[-69.21479055099991,-52.67448096899989],[-69.37591553999982,-52.48621437099996]]],[[[-73.10851264699994,-52.26105080299993],[-73.20076756199995,-52.24491463399983],[-73.4055406409999,-52.26847817499993],[-73.47708152599995,-52.39475154699994],[-73.32053355899995,-52.41773874799986],[-73.27072158399983,-52.382441212999936],[-73.10660559699988,-52.379686248999974],[-72.93240349699988,-52.29586470299989],[-72.97522764599995,-52.245078583999884],[-73.10851264699994,-52.26105080299993]]],[[[-72.06769551899998,-52.34721542699998],[-72.04232752099995,-52.282219299999895],[-72.15007755699997,-52.18652964899991],[-72.24706254699993,-52.20136192899997],[-72.36286155699997,-52.278492201999825],[-72.34187360699997,-52.372702111999956],[-72.25017558599984,-52.39460234899991],[-72.06769551899998,-52.34721542699998]]],[[[-60.8804895369999,-51.769801035999876],[-61.02174354899995,-51.78298409299998],[-61.136630606999915,-51.83456012299996],[-61.098407619999875,-51.93035689499993],[-60.99588755699989,-51.98826880499996],[-60.880783573999906,-51.923688754999944],[-60.8804895369999,-51.769801035999876]]],[[[-73.24902351899988,-51.364740870999924],[-73.39566759799993,-51.38075634099988],[-73.32468461199994,-51.47054781399993],[-73.12992857699999,-51.43834320099995],[-73.14064064999991,-51.365049995999925],[-73.24902351899988,-51.364740870999924]]],[[[-59.38389954999991,-51.34019748499992],[-59.39259359499994,-51.424103017999926],[-59.52664956399991,-51.46746176499994],[-59.58679960999996,-51.43880940199995],[-59.73131552299998,-51.462834786999906],[-59.88934758999994,-51.38611137099997],[-60.069248545999926,-51.424851186999945],[-60.082538555999975,-51.48821418399996],[-60.242088585999966,-51.495961241999964],[-60.52927052699988,-51.370605017999935],[-60.5945476149999,-51.439194298999894],[-60.41361249999994,-51.45961060399992],[-60.50875850099993,-51.530015740999886],[-60.225524604999976,-51.61448219099998],[-60.28418350999982,-51.68468951499989],[-60.3854295239999,-51.67741117299988],[-60.63397558499992,-51.731405381999934],[-60.53453855299995,-51.77990625899997],[-60.373378526999886,-51.719213064999906],[-60.2807345249999,-51.75803569399994],[-60.56435348499991,-51.98818481799992],[-60.692314636999924,-51.96536458399987],[-60.734878611999875,-52.016452450999964],[-60.94139847999992,-52.04664205499995],[-60.833755564999876,-52.128506426999934],[-60.71351649299993,-52.11472003999984],[-60.68609660599998,-52.21287816099988],[-60.613037590999966,-52.25838099899988],[-60.462207589999934,-52.17483722899988],[-60.36188157299995,-52.17402116699998],[-60.25721758599991,-52.09058770299998],[-60.26738751699992,-51.99650083899991],[-59.987594559999934,-52.005377274999944],[-59.854206628999975,-51.96409858099992],[-59.744461531999946,-51.820446003999905],[-59.62722351699995,-51.75851681499995],[-59.53398557299994,-51.635002430999975],[-59.43489052299998,-51.63754667399991],[-59.27423860799996,-51.47902409799997],[-59.24287453199997,-51.39352365599996],[-59.38389954999991,-51.34019748499992]]],[[[-60.26418663599986,-51.26928457199995],[-60.136737618999916,-51.40949570799995],[-60.07928051099998,-51.38317016099995],[-60.26418663599986,-51.26928457199995]]],[[[-59.74098957999996,-51.26633648899991],[-59.47782162499993,-51.346819858999936],[-59.49288960499996,-51.279267586999936],[-59.74098957999996,-51.26633648899991]]],[[[-58.86741254299994,-51.29189073299989],[-58.86942654699993,-51.390617481999925],[-59.00095352799997,-51.3913805709999],[-59.02795448799998,-51.492101207999895],[-59.16030457099998,-51.59701078399996],[-59.011615475999974,-51.669625055999916],[-59.04010757699996,-51.705498930999966],[-59.20769451099983,-51.72048711499991],[-59.385425558999884,-51.845230285999946],[-59.5027995289999,-51.84483717499995],[-59.59081252999988,-51.904278278999925],[-59.58235954799994,-52.07857140599998],[-59.64233357399996,-52.160707183999875],[-59.58008553799988,-52.25993701599987],[-59.420413634999875,-52.23741836199997],[-59.30429862699998,-52.17367030099996],[-59.04085960099991,-52.24388868899996],[-59.13272056599993,-51.99359801899993],[-58.97895052899992,-52.08985981799998],[-58.634159599999975,-52.04394894899997],[-58.633178581999914,-51.90631943999995],[-58.38478054599989,-51.90124218599988],[-58.237533473999974,-51.84564921299989],[-58.225921519999986,-51.79332652399995],[-57.8190454999999,-51.72331818599997],[-57.77691654599988,-51.62365350199997],[-58.14336362999995,-51.559496234999926],[-57.991966508999894,-51.505456261999825],[-57.81890853899995,-51.55163820099989],[-57.850532621999946,-51.416244983999945],[-57.93923562099991,-51.36579112299995],[-58.267456532999915,-51.397460635999835],[-58.413536508999925,-51.32188621199998],[-58.526134637999974,-51.30238202599992],[-58.711982553999974,-51.33110647299992],[-58.86741254299994,-51.29189073299989]]],[[[-72.5423206189999,-46.003826971999956],[-72.56677264199988,-45.94226071999998],[-72.82234156399983,-45.89431371899997],[-72.96504262799988,-45.78202052399996],[-73.11077156999988,-45.796833693999986],[-73.06642157899995,-45.90989668299994],[-73.08593749999983,-46.04274012499991],[-73.16848751099997,-46.09384224199994],[-73.24351459699989,-46.21683258999991],[-73.40476950599998,-46.31473288399985],[-73.46653759499992,-46.436487402999944],[-73.2362055779999,-46.386907272999906],[-73.19580849199991,-46.413274392999824],[-73.24156161399986,-46.78842910099985],[-73.23768649199997,-46.971325916999945],[-73.28364564099996,-47.2558154219999],[-73.3785475599999,-47.40449831499984],[-73.53981051599993,-47.391093303999924],[-73.63288149299996,-47.44269179799994],[-73.57906363899997,-47.58460663899996],[-73.62141454599993,-47.70433156399997],[-73.5270006209999,-47.72259656999984],[-73.26503764799992,-47.58205870799998],[-73.32550050699996,-47.51844827699989],[-73.18083958699992,-47.383296289999976],[-72.97752361699997,-47.30031863399984],[-72.90600553099995,-47.242060383999956],[-72.90387753299996,-47.14770278499992],[-73.04780553999996,-47.11407274499993],[-73.11330458099997,-47.03656830399984],[-73.05575560699992,-46.759085734999985],[-73.12194062399988,-46.62878318199995],[-73.07948259599988,-46.51535692099992],[-72.95992262599998,-46.34732608199994],[-72.8283465269999,-46.314153190999946],[-72.56066156399999,-46.29115794299997],[-72.6343155269999,-46.21269779699992],[-72.79666863299997,-46.18930172599988],[-72.88278162399996,-46.1132553999999],[-72.79226662499991,-46.02506721799995],[-72.61136654699993,-46.06722332899989],[-72.5423206189999,-46.003826971999956]]],[[[-64.5607295879999,-42.493392376999964],[-64.34578657799989,-42.53589516399995],[-64.27709151699992,-42.57697202199995],[-64.26129950799998,-42.74757895499994],[-64.15083356799988,-42.87118235499997],[-64.08871461299992,-42.8734441279999],[-63.78187560099991,-42.81676653699998],[-63.63584859799994,-42.76583289599995],[-63.64360051699998,-42.70196329699991],[-63.58766958599989,-42.59919965499989],[-63.602233477999846,-42.341000324999925],[-63.748405487999946,-42.08099217899996],[-63.92899359199993,-42.09630809599997],[-64.07243360399985,-42.17773945799996],[-64.19017755099998,-42.207383567999955],[-64.05946361499997,-42.279449829999976],[-64.05645752899994,-42.37947828899996],[-64.12579363799995,-42.43092272299998],[-64.28409560299991,-42.41636687799996],[-64.47688256099997,-42.44127286499997],[-64.57154861399988,-42.427539786999944],[-64.5607295879999,-42.493392376999964]]],[[[-68.78371463499991,-37.85668480399988],[-68.71988660899996,-37.84146108799996],[-68.71592750099995,-37.69226404999995],[-68.82424163899998,-37.61566937999993],[-69.05559557799995,-37.619457497999974],[-69.18060261199997,-37.663916452999956],[-69.20373549099997,-37.88659948099996],[-69.15122957299997,-37.927427730999966],[-69.03273058499997,-37.905463121999844],[-68.94654852699989,-37.936319589999925],[-68.78371463499991,-37.85668480399988]]],[[[-65.34719048799997,-43.73327752599994],[-65.46305856499998,-43.72818451399996],[-65.83953861999998,-43.87021720499996],[-65.87904353499988,-43.91203401699994],[-66.14839163499994,-44.02059575599992],[-66.19814258899999,-44.06348075799997],[-66.60614748499995,-44.15035231199994],[-66.74108858199992,-44.205638338999904],[-67.06332364199983,-44.22815330499998],[-67.15509760299994,-44.16878931299988],[-67.37497755399988,-43.92768906499998],[-67.52924363199998,-43.56771599499996],[-67.49379756999991,-43.2614702539999],[-67.26213048299985,-43.11387985899995],[-67.09137753599992,-43.03924923699998],[-67.03314962799988,-42.963402903999906],[-67.01966063199995,-42.63767845799998],[-67.11916354499994,-42.41592783399989],[-67.25833163699986,-42.36673746099996],[-67.4455716189999,-42.38959507899989],[-67.60805548299999,-42.383846098999925],[-67.66043852199988,-42.416527139999914],[-67.76248953499999,-42.3791922989999],[-67.87808955799994,-42.260376976999964],[-67.79827858499988,-42.05276360599987],[-67.35880249299993,-41.72217312999993],[-67.04661549099984,-41.73021824799997],[-66.79872858399995,-41.78831958899997],[-66.65891257099992,-41.84292232399997],[-66.41564157799996,-41.74855902599995],[-66.35131851699998,-41.64610467599988],[-66.27667951299998,-41.685704641999905],[-66.15246557599994,-41.68832532799996],[-66.12349654499997,-41.534354795999946],[-66.20391051199994,-41.33605673599993],[-66.18399058399996,-41.01133778399998],[-66.22303751199996,-40.90380986799994],[-66.33125257599988,-40.829523741999935],[-66.51709764199995,-40.87540611299994],[-66.61067957999995,-40.95971732999993],[-66.86422762499996,-40.95809643799993],[-66.94080351899987,-40.91571183499991],[-67.19101757799996,-40.91339993899993],[-67.40097855299996,-41.16653324699996],[-67.49236258799993,-41.22508084099991],[-67.62097953999995,-41.18274904499998],[-67.59377255199996,-40.77600730199998],[-67.49008958299999,-40.63411391899996],[-67.5436625179999,-40.5784845689999],[-67.53512554899993,-40.41024753399995],[-67.57628656099996,-40.36670706799987],[-67.73007151799999,-40.337047199999915],[-68.46835357399993,-40.04425391099994],[-68.87551860299993,-40.08500253299991],[-68.94445053599998,-39.953138096999965],[-69.24982455899982,-40.046447957999874],[-69.73249058699997,-40.010399403999884],[-69.94358060399998,-40.036823185999936],[-70.15402957399988,-39.97335474499988],[-70.14233363299991,-39.85679549599985],[-69.98896056299998,-39.61508755999995],[-69.74546057599997,-39.50740809899992],[-69.6376416409999,-39.39025993799993],[-69.71028860199993,-39.280520373999934],[-69.85360757899986,-39.23287914499991],[-69.98522960999998,-39.22605912599988],[-70.0543824909999,-38.98730497199989],[-70.0839766439999,-38.703346375999956],[-69.94170356099994,-38.58169428299993],[-69.96905555499995,-38.498393755999984],[-70.04671455799996,-38.50170175799997],[-70.16489453199983,-38.57514851999997],[-70.17544550399992,-38.494788866999954],[-69.96952058299996,-38.34078849499997],[-69.87427550799998,-38.23175938099985],[-69.86010757699995,-38.13551602199993],[-69.93572961099983,-37.8261724969999],[-70.12829562199994,-37.60825340799994],[-70.12416049399985,-37.560643358999926],[-69.8408126039999,-37.65021086799982],[-69.76399262899986,-37.82343362599988],[-69.74877964199993,-37.99824223999997],[-69.64711754999996,-38.229493249999905],[-69.54875155799994,-38.292213354999944],[-69.49443062199987,-38.265190601999905],[-69.48165157299997,-38.09243672699989],[-69.65012363599993,-37.68135030899998],[-69.5855865019999,-37.55796165299989],[-69.28450753299995,-37.430592096999874],[-69.37940962099998,-37.34312961899991],[-69.54975855899994,-37.371572098999934],[-69.5890654939999,-37.25455435999987],[-69.65836354899994,-37.23571368599994],[-69.80326855099997,-37.325471966999885],[-69.84329951399997,-37.14268277499991],[-69.88319351799998,-37.07690394499991],[-69.87000258199987,-36.90539863899994],[-69.69222258299993,-36.9803209509999],[-69.40488457099997,-37.14535760799998],[-69.16305559999995,-37.24880554799995],[-69.0144045589999,-37.22999203099994],[-68.74253048899993,-37.10522337899988],[-68.58193959399989,-36.987000657999886],[-68.48117050999991,-36.818337319999955],[-68.45839654299994,-36.71010951499994],[-68.36462349899989,-36.603307807999954],[-68.30937954799998,-36.58885824499998],[-68.3345336399999,-36.440240563999964],[-68.28356948899983,-36.36596617199996],[-68.26196261899997,-35.82040435499994],[-68.30490159999994,-35.63082179799983],[-68.46259352999994,-35.42817872799992],[-68.76844750099997,-35.280584476999934],[-69.06649758399993,-35.30325500999993],[-69.12155964799996,-35.18119086299998],[-69.11192364399983,-35.08109953999991],[-69.15124549899991,-35.045440240999824],[-69.12245952899991,-34.74634593999997],[-69.08818860899999,-34.719738761999906],[-69.05621349199998,-34.40038120999998],[-69.08670853199993,-34.36735818799997],[-69.10378263699994,-34.087366913999915],[-69.13361349499996,-34.00059208799996],[-69.09255960399992,-33.377960179999945],[-69.25746164599997,-33.37015109599997],[-69.27615362599994,-33.63966750499998],[-69.32093059099986,-33.68984107399996],[-69.33209260399997,-33.793475092999984],[-69.26977549999998,-33.92297331799995],[-69.27467354899994,-34.0506707749999],[-69.23992150799995,-34.08026794499989],[-69.2584606019999,-34.26374998499989],[-69.3870084859999,-34.419133873999954],[-69.31623856899995,-34.452133761999846],[-69.34805258599994,-34.52652181199994],[-69.3156895539999,-34.65641650099997],[-69.27777854199991,-34.68492268299991],[-69.34439857899997,-35.009206279999944],[-69.39328753799992,-35.03293276499994],[-69.63047058699988,-34.912593780999885],[-69.74319461199997,-34.9043919209999],[-69.60816148099991,-35.06494476199998],[-69.41255954499997,-35.216335176999905],[-69.41706850599991,-35.323704506999945],[-69.58693649099996,-35.30922460199997],[-69.76126850999998,-35.266897834999895],[-69.84901463099999,-35.36683627199983],[-69.71090651499998,-35.439237642999956],[-69.46820062999996,-35.49662803099989],[-69.47871354799997,-35.638451844999906],[-69.52245350399988,-35.66823207599987],[-69.54782854199988,-35.84424198499988],[-69.66071349999993,-36.00207908899995],[-69.79551663099994,-36.02415383699997],[-70.02513149299995,-36.001129251999885],[-70.08616649999993,-36.07309560199997],[-69.9345014939999,-36.15818365399997],[-69.89565254599995,-36.23587584999996],[-70.13814553199995,-36.417565838999906],[-70.27447551099988,-36.60975080899988],[-70.29996454299999,-36.70462355999996],[-70.38996858099995,-36.729171303999976],[-70.38179052599997,-36.941904844999954],[-70.47179456399994,-36.941904844999954],[-70.46360762399996,-37.081001019999974],[-70.50452455499993,-37.25282634699988],[-70.60270664799992,-37.277370067999925],[-70.63053154899995,-37.002453533999926],[-70.56507156799995,-36.85190265099982],[-70.6043474899999,-36.72753415099987],[-70.5323405709999,-36.675171227999954],[-70.55197853199996,-36.583528359999946],[-70.63706960199983,-36.590075129999946],[-70.70907551399989,-36.675171227999954],[-70.78762853199999,-36.62935038099994],[-70.83999648299994,-36.70135076199989],[-70.96436364199997,-36.94354065699997],[-70.83999648299994,-37.07445508899991],[-70.90544858599998,-37.2970075259999],[-71.06255361499996,-37.36246616699998],[-70.87271859499992,-37.40173756199988],[-70.93817857699992,-37.55228961899991],[-70.91199451699998,-37.68975014899996],[-70.85308851299988,-37.715933538999934],[-70.91199451699998,-37.82720933799993],[-70.91199451699998,-38.0235788899999],[-70.83999648299994,-38.206856578999975],[-70.75489854099993,-38.5799624149999],[-70.63706960199983,-38.75015259999998],[-70.63706960199983,-39.005435698999975],[-70.57489063199995,-39.19853278799991],[-70.6468884979999,-39.30326315899998],[-70.82363148799993,-39.453815886999905],[-70.93490561099992,-39.48654135199985],[-70.96763660799996,-39.552000662999944],[-71.15091664399995,-39.64364034499994],[-71.22292356299994,-39.78764714199997],[-71.22946949399994,-40.02983904899992],[-71.07237251199996,-40.21966367499988],[-71.15091664399995,-40.625500004999935],[-71.14109757999995,-41.054245248999905],[-71.24583448899995,-41.17861425199982],[-71.15418960999995,-41.302984092999964],[-71.00363956399991,-41.610632126999974],[-70.94472450799992,-41.695726548999914],[-71.14764351099996,-41.78736975199996],[-71.22619652799995,-42.140836788999934],[-71.29820260899993,-42.232480326999905],[-71.38329350999999,-42.22593422799997],[-71.40293163899997,-42.369942197999876],[-71.4484866119999,-42.44152080099997],[-71.29165650999983,-42.46812747699988],[-71.23274262699994,-42.38303003699991],[-71.15418960999995,-42.38303003699991],[-71.17382857599995,-42.54667613499987],[-71.33093259899994,-42.62522362099992],[-71.1181864859999,-42.674318438999876],[-71.19019357199988,-42.76595895999998],[-71.19673950299989,-42.89687422999998],[-71.27529151499988,-42.89687422999998],[-71.32765963399987,-42.78559675399998],[-71.44548052699986,-42.92960388499989],[-71.32765963399987,-43.027790336999885],[-71.32111353499994,-43.12597578399988],[-71.20328560199982,-43.145613744999935],[-71.0789186099999,-43.32234801699991],[-71.1050946229999,-43.59072700199988],[-71.31456760399993,-43.695458713999926],[-71.30147557399994,-43.80019143299995],[-71.20328560199982,-43.89837704699994],[-71.28838354399988,-44.02929382499991],[-71.24910762199994,-44.17330129199996],[-71.38656664399997,-44.23221232499998],[-71.34074361699993,-44.31076400099994],[-71.22292356299994,-44.36967419599995],[-71.30147557399994,-44.487498776999985],[-71.42911553099992,-44.54968595999998],[-71.18692060599989,-44.595503622999956],[-71.0821915759999,-44.66096460999984],[-71.06255361499996,-44.751929549999886],[-71.31784056999993,-44.844245651999984],[-71.41602350099998,-45.047164486999975],[-71.46839162099997,-44.994799720999936],[-71.6123965729999,-45.07989464599996],[-71.67131062399989,-45.28281381599987],[-71.57312048399996,-45.335181935999856],[-71.56657455199996,-45.40718382499995],[-71.69766248899987,-45.422004035999976],[-71.70927460999991,-45.54333795199989],[-71.58359551599989,-45.569522178999875],[-71.45791658899998,-45.66378036799989],[-71.46466049999998,-45.72734453099997],[-71.62025460699994,-45.86277379099994],[-71.75777464899994,-45.877342879999844],[-71.77854148499995,-46.03951325999998],[-71.94698353999996,-46.159112456999935],[-72.26559459999993,-46.27308387699992],[-71.98269665099997,-46.412725545999876],[-71.85897053899998,-46.38799440499997],[-71.81842056799996,-46.518030747999944],[-71.87755556599984,-46.59744106699998],[-72.35589552499994,-46.740050767999946],[-72.40692857499994,-46.85707822899991],[-72.29451753099983,-46.96231201799998],[-72.18057259799997,-46.97188297799994],[-71.83382449499993,-47.0915846019999],[-71.81042456799997,-47.17101101399987],[-72.17773448499997,-47.78520418999989],[-72.22189353599993,-48.0662041409999],[-72.20583364199996,-48.234807799999885],[-72.15364858299995,-48.38333797399997],[-72.06533852799998,-48.45960960499991],[-72.09343751699993,-48.535881235999966],[-72.31021163799994,-48.491722016999915],[-72.40253461399988,-48.56799465399996],[-72.44567861699988,-48.83885937599996],[-72.44329849099995,-48.953061465999895],[-72.63243865099997,-49.23856367299993],[-72.65623453899991,-49.33611058499997],[-72.76805164199999,-49.44079468899997],[-72.79660761299982,-49.58354637899993],[-72.86560056699989,-49.68823064999992],[-72.91199456799995,-49.90473638299994],[-72.7882765039999,-50.35677962999989],[-72.55536654899998,-50.62180635599998],[-72.41831958199998,-50.8373815299999],[-72.25653057799985,-51.19901740199998],[-72.02813762999995,-51.32273730999998],[-71.99006652299994,-51.48452111699993],[-71.70456649499994,-51.60824102599997],[-71.30487057999989,-51.74147640599995],[-71.24777255299989,-51.817610740999896],[-71.41906764099997,-51.83664319399992],[-71.83779952799995,-51.69389049799986],[-72.09474961999996,-51.570174444999964],[-72.18911761299995,-51.638744614999894],[-72.08989750399996,-51.685624431999884],[-72.08007860799995,-51.756097797999985],[-71.99351450199987,-51.82907785499992],[-71.89286058599998,-51.810622580999905],[-71.67644453899993,-51.89450514799995],[-71.60940557499998,-52.11263328199993],[-71.55794555099999,-52.17052608099988],[-71.36669952099999,-52.24766171899984],[-70.77498660999998,-52.53734733299996],[-70.56011149299997,-52.666934908999906],[-70.55100254299992,-52.723915924999915],[-70.32417248499985,-52.63783629399995],[-69.92841354999996,-52.527265076999925],[-69.85199758299996,-52.48794925699997],[-69.70076759799997,-52.54693740399995],[-69.55024755999983,-52.46725869699998],[-69.44712852499993,-52.26159679999995],[-69.20446756699994,-52.194570575999876],[-68.99999958799998,-52.28052112599994],[-68.72460964399994,-52.30588577099991],[-68.59252157899988,-52.34354532699996],[-68.36820257099998,-52.307571706999965],[-68.62894463599997,-52.07041531199991],[-68.75740048799997,-51.92886491599995],[-68.84633650399991,-51.78677221099997],[-69.00440964199998,-51.61043926399992],[-69.09169760899982,-51.65650201299991],[-69.19781451499989,-51.62622037599988],[-68.9409334899999,-51.547499049999885],[-69.11328855299996,-51.172381892999965],[-69.16187257899992,-50.99059014699992],[-69.12796761299984,-50.898913583999956],[-69.14242555699997,-50.737809213999924],[-69.0772626299999,-50.56172755599994],[-68.87493857499999,-50.34024733199982],[-68.38013454599997,-50.17949315699997],[-68.36395261099989,-50.137325646999955],[-68.49449957999991,-50.07997783799988],[-68.50725549499998,-49.945115195999904],[-68.33169552699991,-50.124587332999965],[-68.13983158399998,-50.10695616699991],[-67.99597951799996,-50.05509833799988],[-67.77747352799992,-49.89636235899985],[-67.71281452099998,-49.75208164199995],[-67.69471748899991,-49.57195336899997],[-67.58488454999997,-49.25927367899993],[-67.62637362899994,-49.11308205599988],[-67.56449858799994,-49.03164113699995],[-67.40019953899997,-48.89110981299996],[-67.22180950499995,-48.81204885299985],[-67.11443363799998,-48.66634555899998],[-66.85630756499995,-48.571682523999925],[-66.68132058299989,-48.447212434999926],[-66.48875457199995,-48.41487823799997],[-66.07432561799993,-48.10736967899987],[-65.95225560399984,-48.09838159699996],[-65.95166048899989,-47.96078829699985],[-65.84757954699995,-47.88888799699998],[-65.88330858299997,-47.79484823999991],[-65.73921964399995,-47.5103071019999],[-65.71581250899999,-47.33503999699997],[-65.75169359199998,-47.198702139999966],[-65.8631826269999,-47.10959764699993],[-65.97236663899992,-47.07450949199995],[-66.19187963099995,-47.09455263399997],[-66.50030550499991,-47.049062368999955],[-66.73990656599995,-47.03458531299998],[-67.04499862199998,-46.79549420699982],[-67.12089558199995,-46.699824672999966],[-67.33976752599989,-46.61882313399997],[-67.42070754199995,-46.55407997299989],[-67.55683853399995,-46.360704101999886],[-67.60772657699994,-46.25333192199997],[-67.61574554399988,-46.064969099999985],[-67.5451275069999,-45.927097688999936],[-67.36695858699994,-45.774635396999884],[-67.34336051299994,-45.62965428799998],[-67.2065886399999,-45.5268819289999],[-67.05215458799995,-45.33566171599995],[-66.84672553999991,-45.231452865999984],[-66.5491485309999,-45.21590778899997],[-66.58834063399996,-45.139369612999985],[-66.35326362199999,-45.0402257799999],[-66.28469060099991,-45.05461767599991],[-66.19528955699991,-44.98504955599992],[-66.0052795229999,-45.005248768999934],[-65.9351885399999,-45.04733145499995],[-65.75264761999995,-45.02331847599987],[-65.64631664099994,-45.04863668499985],[-65.57592759699997,-44.899790512999914],[-65.72367054299986,-44.8498296759999],[-65.63782459899994,-44.668376726999895],[-65.45707656799993,-44.57521773999997],[-65.40155048299988,-44.58436189399998],[-65.33264151599991,-44.46054006199989],[-65.21665156599988,-44.36999505499995],[-65.30622862999996,-44.222812355999906],[-65.23773154999992,-44.14541654399994],[-65.23549659899993,-44.03656059999997],[-65.3014675419999,-43.93180910599989],[-65.34719048799997,-43.73327752599994]]]]},"properties":{"objectid":561,"eco_name":"Patagonian steppe","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Neotropic","eco_biome_":"NO08","nnh":2,"eco_id":578,"shape_leng":156.277392371,"shape_area":66.7723617552,"nnh_name":"Nature Could Reach Half Protected","color":"#E69800","color_bio":"#FEFF73","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":576570.7282692504,"percentage":5.441760510164178}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[119.54338637900003,-20.064235464999967],[119.46938000300008,-20.011519996999937],[119.17937000300014,-19.95311999699993],[119.10126000300022,-19.961489996999887],[119.06858000300008,-20.016429996999932],[118.99327000300002,-20.03752999699998],[118.97013000300012,-20.109689996999975],[118.89331000300001,-20.174999995999826],[118.81823000300005,-20.280699995999953],[118.67004000300028,-20.32922999599998],[118.53414000300006,-20.312669995999954],[118.48468000300011,-20.346189995999907],[118.329010003,-20.34041999599998],[118.20430000300018,-20.37586999599995],[118.1804700030001,-20.336339995999936],[117.9898200030002,-20.47313999599993],[117.7925500040003,-20.653489995999962],[117.70283000400002,-20.689199995999843],[117.63685000400017,-20.662869995999813],[117.5219700040002,-20.715029995999885],[117.33160000400005,-20.735649995999893],[117.21172000400031,-20.697129995999944],[117.0909100040002,-20.628039995999927],[116.98767000400005,-20.658919995999838],[116.898260004,-20.724219994999885],[116.82986000400024,-20.708829994999917],[116.7705200040001,-20.5886999949999],[116.69114000400009,-20.681649994999873],[116.52778000400008,-20.75281999499998],[116.46071000400002,-20.822699994999937],[116.34491000400021,-20.83861999499993],[116.30145000400034,-20.87760999499983],[116.19108000400001,-20.887679994999928],[116.1881200040001,-20.968549994999933],[115.9910300050002,-21.039619994999953],[115.88244000500003,-21.117809994999902],[115.81818000500016,-21.252519994999943],[115.70208000500031,-21.27829999499994],[115.5510000050001,-21.41036999499994],[115.46136000500007,-21.52939999499995],[115.41131000500002,-21.52487999499988],[115.3030300050001,-21.5928199949999],[115.23000714900024,-21.59291172299993],[115.22259528600011,-21.76353453799993],[115.26839450800003,-21.799133317999974],[115.33665471600034,-21.98015208499993],[115.35653692500023,-22.11950491399989],[115.28762812600019,-22.13696290999991],[115.23094181800002,-22.277030881999963],[115.2281570140002,-22.391586351999877],[115.33125308300009,-22.508344586999954],[115.51264953700013,-22.47904011299994],[115.48819734700021,-22.558053966999978],[115.39159406800002,-22.60160449199992],[115.26349645900007,-22.586549755999954],[115.2538071470002,-22.714168757999914],[115.32463070900019,-22.705160055999954],[115.39310448700019,-22.81151768999996],[115.57382200800009,-22.93145182899991],[115.71401973200011,-22.954387732999976],[116.0562665860001,-22.885643050999818],[116.15451053700019,-22.799619746999895],[116.13755042600008,-22.754602387999967],[116.30420680200018,-22.753889088999927],[116.50784296000006,-22.847999588999926],[116.65207673900011,-22.802831691999927],[116.8314742770001,-22.887111728999912],[117.0650710450002,-22.963516295999966],[117.16155245000004,-22.969745558999875],[117.1403122050001,-23.035268740999925],[117.32961279500023,-23.119981786999972],[117.35326384300026,-23.17128188299995],[117.49378209100018,-23.196249058999854],[117.57073215400021,-23.2664890719999],[117.68872068400003,-23.306066573999942],[117.77337656500026,-23.399692600999913],[117.95260613000016,-23.49325559499988],[118.23328404900008,-23.47098353799987],[118.36749273600014,-23.44821744999996],[118.41185764700015,-23.518108440999924],[118.52403265700002,-23.484930017999886],[118.57159425800023,-23.570989532999874],[118.75511167000002,-23.536365734999833],[118.9012603770002,-23.52921479799994],[118.94978338200019,-23.475217739999948],[119.23471830200015,-23.578851758999974],[119.32942961700007,-23.53930476599993],[119.31685642700006,-23.472604764999915],[119.50395207300016,-23.448358601999928],[119.62064358700002,-23.487295056999926],[119.71102145900022,-23.465957580999884],[119.82530217100009,-23.344554933999916],[119.90508263400011,-23.320230482999932],[120.08296204200008,-23.408803897999974],[120.29898832900005,-23.39267929499988],[120.41641996700025,-23.40092272999982],[120.45803829500016,-23.362104459999898],[120.64488986000003,-23.38300892599989],[120.71100614500017,-23.410898200999895],[120.75704961600013,-23.298526718999938],[120.81214135000016,-23.362972321999962],[120.89686579500017,-23.368804953999813],[120.838073785,-23.287691096999936],[120.90269473900003,-23.23893742199988],[120.95266731000004,-23.143068230999972],[121.09854125900029,-23.07314103099992],[121.20756534500015,-23.102706852999972],[121.26654812700019,-23.076482726999927],[121.30738073600014,-22.91119193199995],[121.24612427800002,-22.851278255999944],[121.15075682800011,-22.8275606549999],[121.23247535400014,-22.678447937999863],[121.23974615300017,-22.61402697699998],[121.19100186600019,-22.469606450999947],[121.20717625600003,-22.428249301999983],[121.40242028600017,-22.41602127999988],[121.40473939000003,-22.309953658999973],[121.35562127000014,-22.1995257719999],[121.39997109300009,-21.998794613999905],[121.38182075200018,-21.812002224999958],[121.31076048600005,-21.674232402999962],[121.3430710460002,-21.595108074999928],[121.32646180200027,-21.47880547999989],[121.25736994200008,-21.312080372999844],[121.20300290700004,-21.287605215999974],[121.11409002400012,-21.119302802999982],[121.13660431800008,-21.062393200999907],[121.09805292800013,-20.975177821999978],[121.17671960400014,-20.90254209299991],[121.09581764300003,-20.78218835699988],[120.75218961900009,-20.68536379699998],[120.61782067000013,-20.634298392999938],[120.63150781500008,-20.578762080999923],[120.46987907400012,-20.528896293999935],[120.38698573900024,-20.584010995999904],[120.30144506400006,-20.47828871099989],[120.18711104300007,-20.521682660999943],[120.03927606400009,-20.40504462299998],[119.98385626100003,-20.420789691999914],[119.80202478600017,-20.363697029999912],[119.62039950500014,-20.33016204099988],[119.41519157300024,-20.317861597999922],[119.39915464400019,-20.25716019099991],[119.37258149700006,-20.136926649999964],[119.47065730800023,-20.07426085999998],[119.54338637900003,-20.064235464999967]]]},"properties":{"objectid":570,"eco_name":"Pilbara shrublands","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Australasia","eco_biome_":"AU13","nnh":2,"eco_id":213,"shape_leng":36.1124827447,"shape_area":15.5796160536,"nnh_name":"Nature Could Reach Half Protected","color":"#E34661","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":179097.8123342628,"percentage":0.6788590677678494}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[22.38439556500009,37.073562164000066],[22.300910469000087,37.106230464000134],[22.253723539000077,37.0263752350001],[22.300910469000087,36.91385539300006],[22.417062524000187,36.866668631000096],[22.424322594000103,36.95378275600012],[22.38439556500009,37.073562164000066]]],[[[22.631219480000084,37.218750306000175],[22.725595519000024,37.05541249400005],[22.801820547000148,37.09533969000017],[22.736484448999988,37.27682432200004],[22.66751848500013,37.316752356000165],[22.631219480000084,37.218750306000175]]],[[[22.068603507000148,37.6797243040001],[22.144830547000083,37.567200606000085],[22.213794499000187,37.52001451400014],[22.3480965600001,37.59623803300008],[22.333578601000113,37.65431590500003],[22.24283444100007,37.73053959200013],[22.137569471000063,37.741426175000186],[22.068603507000148,37.6797243040001]]],[[[22.12668054100004,37.90839603300009],[22.231945510000173,37.814023012],[22.540475488000027,37.741426175000186],[22.58403355600018,37.759576013000185],[22.580402516000106,37.90476516100006],[22.38439556500009,37.962839344000145],[22.260982602000183,38.04995363800009],[22.144830547000083,38.028175945000044],[22.12668054100004,37.90839603300009]]],[[[21.836297552000076,38.07536304200016],[21.767332594000038,37.94832037900011],[21.86170745900006,37.90113747300006],[21.966970584000023,37.973729951],[21.927043556000115,38.08625012800019],[21.836297552000076,38.07536304200016]]],[[[22.47876556900019,40.43812431900011],[22.375253591000103,40.49100373500005],[22.208061445000112,40.463839160000134],[22.180206537000174,40.54900901900004],[22.089048478000052,40.62654916800017],[22.036685555000133,40.722781966000184],[22.077402494000125,40.86445859300011],[21.828659459,40.82632294500007],[21.632734484000025,40.72322402700007],[21.46727353500006,40.71770001800013],[21.357833540000172,40.801821133000146],[21.332822444000044,40.988015390000044],[21.140260456000078,41.080894253000054],[21.12446056800019,41.161375611000096],[20.974332468000057,41.35406567400008],[20.62845457400016,41.551096726000026],[20.518333466000172,41.63936822400012],[20.464818534000074,41.71886252900015],[20.407773480000117,41.89470681200004],[20.494113453000182,42.21961368700016],[20.466472451000016,42.319397897000044],[20.389574525000057,42.396297165000135],[20.224065464000148,42.45802300900016],[20.192884449000076,42.38858028200019],[20.095458571000165,42.367569533000164],[20.017137565000155,42.273965132000114],[19.88341553099997,42.23193843700011],[19.835657459000174,42.117319264],[19.719123523000178,42.096075498000175],[19.79839151700014,41.92700966100017],[19.95333250600015,41.79290088600004],[19.98070746700006,41.67310085800017],[19.945983589000036,41.6239453550001],[19.796239547000084,41.52487109200007],[19.875740558000075,41.3504037890001],[19.813703578000116,41.236737805000075],[19.882122539000136,41.13952181000013],[20.03458047300012,41.115065931],[20.103097502000082,41.01131506900009],[19.97271347800006,40.94562978200008],[19.97849648800019,40.88543531100004],[20.197690465,40.56696892300016],[20.14526551600011,40.494913557000075],[20.166650601000185,40.42681428200018],[20.256559588000187,40.32679051700012],[20.468669516000034,40.26281430000017],[20.509122592000097,40.181394336000096],[20.672840440000016,40.108119236],[20.719684550000125,39.977059127000075],[20.86733646800019,39.870424219000085],[21.021202562000155,39.706989512],[21.03350451400013,39.553805705000116],[21.082620455000153,39.429722525000045],[21.16743659800011,39.33232279900017],[21.160539465000113,39.26889392000015],[21.391386466000085,38.91913704900003],[21.38946550200012,38.72156938800009],[21.43545549600003,38.675022836000096],[21.72555953500006,38.59650619600012],[22.111850440000012,38.59534329100006],[22.29713660100009,38.541945035000026],[22.35055145200016,38.608011196000064],[22.45357560300016,38.66239616900015],[22.389511544000186,38.707691304000036],[22.35020259700019,38.80652902900016],[22.276494488000026,38.85261323600014],[22.126228589000164,38.846281379000175],[22.03383051100019,38.95514352600003],[22.09064858300019,38.99552485300012],[22.057083587000022,39.09841724100011],[21.880723483000168,39.19706000400009],[21.7566545520001,39.37211018400012],[21.60773244000012,39.41816455100013],[21.632207597000047,39.48990945200018],[21.607883481999977,39.58458237800011],[21.64661944100004,39.72732635600016],[21.83967059700018,39.657849096],[21.965471565000087,39.69043475100011],[22.026882584000077,39.756180052000104],[22.00606948000012,39.89774117700006],[22.027360520000173,39.98436395500016],[21.98841048700018,40.10402232900003],[22.076396498000065,40.16063571500018],[22.23975157700005,40.1926782220001],[22.46244449500017,40.35098622100014],[22.47876556900019,40.43812431900011]]]]},"properties":{"objectid":571,"eco_name":"Pindus Mountains mixed forests","biome_num":12,"biome_name":"Mediterranean Forests, Woodlands & Scrub","realm":"Palearctic","eco_biome_":"PA12","nnh":3,"eco_id":801,"shape_leng":18.2885946055,"shape_area":4.19474565374,"nnh_name":"Nature Could Recover","color":"#D49E54","color_bio":"#FE0000","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":39627.53613029486,"percentage":1.199600718201139}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[57.687030525000125,51.578272956000035],[57.567024637000145,51.51057567700002],[57.36771756400009,51.502908414000046],[57.215160556000114,51.53267506700013],[56.966060619000075,51.63003154300003],[56.711563575000014,51.78849242900003],[56.5708615960001,51.92590082300006],[56.46678149200005,52.06099329800003],[56.22683358800015,52.16786340200014],[56.101295477000065,52.392469741000184],[56.016662562000135,52.499508824000145],[55.81929757600017,52.587622408000186],[55.619293631,52.608820911000066],[55.51663962500004,52.708378643],[55.50890363100018,52.76828209300004],[55.603767497000035,52.904820782000115],[55.848926598000105,52.959280018000015],[55.860248538000064,53.166522239000074],[55.92060461100016,53.550967616000094],[55.71598458400018,53.63284037000011],[55.617507616000125,53.73706766000009],[55.61177858500014,53.88325090100005],[55.741336489,54.078640608000114],[55.710823511000115,54.193446195000035],[55.57669059700004,54.28390252100007],[54.993579530000034,54.538951597000164],[54.92702856000011,54.585468645],[54.868946497000024,54.72931735900016],[54.74764258800019,54.858291379000036],[54.54321651900011,54.84281503300008],[54.448337566000134,54.70867960400011],[54.50135763000014,54.59407484800005],[54.69005556000013,54.38161757500018],[54.7240674790001,54.26485883700002],[54.70126350600003,54.05732710500013],[54.72753557600009,53.939789185000166],[54.81188954099997,53.83203277900009],[55.08922559500007,53.58046001300005],[55.24328262800009,53.361739446000115],[55.258830556000134,53.1545428230001],[55.20605859600005,53.00921202100005],[55.04603549100017,52.94489868400012],[54.90230161000005,52.96926001500003],[54.73526754600016,53.03824257500008],[54.558704600000056,53.18229949500005],[54.54615052000014,53.270234377],[54.676731518999986,53.3985063290001],[54.651252545000034,53.456033510000054],[54.47470049500009,53.510328629000185],[54.27014148900014,53.48550193500017],[53.82934155900017,53.40391919500013],[53.62664450900007,53.42336386900013],[53.53998552100012,53.45611347400012],[53.26073856100004,53.63098612600004],[53.03179559300008,53.69812684700014],[52.72130156800017,53.707652041000074],[52.517070629000045,53.688959559000125],[52.016235486000085,53.60786481300016],[51.77920146600019,53.550059353000165],[51.2081375410001,53.2967848940001],[51.01916853900002,53.24920284100017],[50.57443246800011,53.20046995300015],[50.43313554100013,53.164450233000025],[50.38149262400009,53.114149091000115],[50.17588051500013,53.15732092100012],[49.992946484000186,53.225341574000026],[49.63526553000014,53.21587035900018],[49.46024351200015,53.24488901100011],[49.152282499000194,53.211147156000095],[49.02219050000008,53.163657305000186],[48.78861954700011,53.033908461000124],[48.64458056400014,52.91125188100017],[48.547573614000044,52.91306404800008],[48.422496508000165,52.73788931200005],[48.253379541000186,52.61197971500013],[48.18938454800008,52.51336394200007],[48.04681357200013,52.523866132000194],[48.041999510000096,52.456927750000034],[47.93664552399997,52.39671567800019],[47.688938492000034,52.36139115300017],[47.487255485000105,52.27555442900007],[47.40058157700014,52.180357467000135],[47.293281482000054,51.963888447000045],[47.07326155200019,51.93950414900007],[46.985038501000076,51.967969595000056],[46.937530544000026,52.05035733300008],[46.96537355000004,52.10760908500009],[47.11183959700014,52.227015498000185],[47.33797060400019,52.34166451100009],[47.46939448800009,52.467144116000156],[47.60409955100016,52.53672531200016],[47.30767052700003,52.52229402200015],[47.16698061700009,52.49644859100016],[47.07868548200008,52.52394626299997],[46.97281651200018,52.66117092600018],[46.81872947200003,52.64332551900003],[46.70947253700007,52.58273542300003],[46.690906622,52.526307277000114],[46.78417960200005,52.41902411300009],[46.745876484000064,52.368082258000186],[46.38760359899999,52.263187099000106],[46.38095859400005,52.145719084],[46.23690050000016,52.074756551000064],[46.039184480000074,52.08485473200005],[45.76106656200017,52.14723402900006],[45.78380146899997,52.20512314100006],[45.69289352600015,52.276748515000065],[45.548347606,52.29475066400005],[45.15833647700009,52.23314267000018],[44.81206849000017,52.23242149100008],[44.72750849800019,52.198095921],[44.63145456900014,52.09273204500016],[44.49948150400019,52.05440931300012],[43.74093250900006,51.90296659500012],[43.64072048600008,51.901272612000014],[43.369255620000104,51.624129678000145],[43.14628257900006,51.51070559600004],[42.90190550900013,51.508130675000075],[42.79177048600013,51.56671045600012],[42.65848548500014,51.591151080000145],[42.49222557400009,51.443871485000045],[42.19419460100005,51.114661006000176],[41.957832475000146,50.955726711000125],[41.664775491000114,50.869143327000074],[41.33841754100007,50.88246451800012],[40.80558347600015,51.02899275900006],[40.48588159600013,51.06229623900009],[40.2327885200001,51.05563530800009],[39.95970946700004,50.942405352000094],[39.77987657300008,50.9823690930001],[39.540103515000055,50.86248306700003],[39.44019659300017,50.78255592000011],[39.287006584000096,50.75591370600017],[39.16712156400013,50.76923472900006],[39.040573601000176,50.82917975400005],[38.880722493000064,50.749253613000064],[38.78081557200011,50.73593225399998],[38.67424755200011,50.636023824000176],[38.57434448599997,50.616042373000084],[38.228000558000076,50.60272118199998],[38.08147449699999,50.57607879900013],[37.61524152600009,50.39624724600003],[37.48869758700005,50.32298136500009],[36.902580601000125,50.2497151500001],[36.88259848000013,50.03657743300005],[36.915901457000075,49.836764931],[36.86261753100007,49.783480167000164],[36.582878553000114,49.71021411900006],[36.47631455700014,49.58366464800014],[36.54024551100014,49.39045943200006],[36.38428846800008,49.364774096000076],[36.265869610000095,49.442530162000025],[36.19485846200013,49.57623375500003],[36.10241646300017,49.679490756000064],[35.93865553300003,49.58800194700012],[36.007320587000095,49.51922608500013],[35.82781961500001,49.450926314000185],[35.70684058900014,49.35001088200016],[35.48048058800015,49.25876699300005],[35.350200499000096,49.25187002800004],[35.1593516050001,49.15637886000013],[34.77941150000015,49.17011210600009],[34.48295247000004,49.049737583000194],[34.415657522,48.87993279700004],[34.202892465000104,48.70805214900008],[33.81056558400002,48.87678874500017],[33.651428614000054,48.886299020000195],[33.53772759500009,48.84243752599997],[33.331893533000084,48.81725225399998],[33.045516590999966,48.73467542100008],[32.93286548900011,48.796581140000114],[32.618698514000016,48.69285408200017],[32.80634351000015,48.63427145200018],[32.72006958600008,48.59300315200011],[32.53404246500003,48.62873637900003],[32.45029451200014,48.55244865400016],[32.3500325330001,48.531464392000146],[32.21479756600007,48.564106708],[31.86505360300015,48.459182882000164],[31.440696453000157,48.4008892600001],[31.186548599,48.28197737900007],[31.09328249200007,48.38690103700009],[30.902088598000148,48.38457019800006],[30.706230510000125,48.477837143000045],[30.689908598000045,48.36591593700018],[30.612964570000088,48.198037648000195],[30.489387490000183,48.1793832190001],[30.30285846000004,48.26099211100012],[30.151300575,48.13974503200018],[30.316846515000066,48.11176389200011],[30.34715849500003,48.04181741300005],[30.232908461000193,48.02083197700006],[30.111663561000114,47.955542483000045],[30.165290474000187,47.86694174300004],[30.291198562000034,47.834299595000175],[30.237571480999975,47.76434909200009],[30.141975540000033,47.792330232000154],[30.072025540000084,47.74569499900019],[29.92300049900018,47.73876383600003],[29.750791448000143,47.65290146400014],[29.655258539000044,47.66244224900004],[29.656263529000057,47.772734013000104],[29.438354498000137,47.75283202200018],[29.48867056000006,47.92486538800017],[29.30956454400018,47.92762320200006],[29.19135255200007,48.01439702200008],[29.023813562000157,48.08772375500013],[28.795087517000127,48.11879077700007],[28.883840473000134,48.16956817800002],[28.707660579000105,48.31122435400016],[28.687305463000087,48.373614212000064],[28.50506947600013,48.37537692600006],[28.39307249799998,48.323816655000144],[28.34787358799997,48.38343730000014],[28.081094541000027,48.39512938400014],[28.179176554000037,48.325872568000136],[28.214742478000062,48.147550092000074],[28.29113045000014,48.07435244100009],[28.464853608000112,48.03143324100006],[28.776296464000154,48.037682116999974],[28.876886511000123,48.00390187400018],[29.036201512,47.875299842000175],[28.97251849400004,47.695309535000035],[29.03226050899997,47.52596642500009],[29.117303466000067,47.46678499199999],[29.070531608000124,47.337138239000126],[29.192169452000144,47.20687357300005],[29.364419574000124,47.101334851000104],[29.492204538000067,46.87737676800009],[29.506551506000164,46.79193835300015],[29.704727525000067,46.56481409000014],[29.35211745500004,46.547141013999976],[29.149919463000174,46.46920574300003],[29.072637478000104,46.46334293700005],[28.8913895500001,46.52004098000003],[28.650289469000143,46.540167103000044],[28.581594576000043,46.50349292400006],[28.551156532999983,46.35079023800006],[28.57366160800018,46.1509986910001],[28.565967523000154,46.025128154000015],[28.523399525,45.90996197800007],[28.411270448000096,45.716373710000084],[28.290403571000127,45.57723914600007],[28.164337568000064,45.55950521800003],[28.006826520000118,45.395937909000054],[27.74493445800016,45.39979090300017],[27.498138539000024,45.288306896999984],[27.376417547000187,45.16673174900018],[27.305990448999978,45.132304758000146],[27.09823257400012,45.091280707000124],[26.790918475000012,45.13022587900019],[26.79421457500007,44.993414779000034],[26.829172475000064,44.96629664000005],[27.070072563999986,44.926005669000176],[26.97039949800012,44.88334966100007],[26.92641646600015,44.81914495300009],[27.001964571000144,44.72649692800013],[26.91031449500008,44.62126096000003],[26.78272851800017,44.631831881000096],[26.807989562000046,44.51709318100012],[26.93628146400016,44.43814403500005],[27.110626558000092,44.39209335600003],[27.18628647800017,44.34603815100013],[27.171009454,44.2538984040001],[27.250968451000062,44.200092453000025],[27.487289506000025,44.11740464300004],[27.684961605000126,44.12223479800008],[27.75549548800018,44.066394894000155],[27.81133254200006,43.94590000700009],[27.93476646,43.81364950000011],[28.055261515000097,43.740178599000046],[28.357965567,43.719605888000046],[28.522542559000158,43.657892114000106],[28.583576561000143,43.601179151],[28.606037547000142,43.83906225700014],[28.677923598000177,43.98012616800003],[28.65681645700016,44.05459971300007],[28.644151569000144,44.30284838300008],[28.80310447300019,44.463038958000084],[28.760656503000064,44.498160977000055],[28.776885544000038,44.633796096000026],[28.825715495000168,44.76129875700008],[28.932447465000052,44.790316906000044],[28.95112452400008,44.84348583200011],[28.87994758200017,44.902773884000055],[28.878568591000032,44.978602950000095],[29.010087525000188,45.035380789000044],[29.05037849500019,44.86822082900011],[29.13336151600015,44.81360887400007],[28.985263513000064,44.76409898300017],[29.013345571000116,44.707210001000135],[29.17037750900016,44.79335283100016],[29.542242488000056,44.833624859],[29.581804568000166,44.859072820000165],[29.691818556000158,45.117499971000086],[29.636194570000157,45.24504387100012],[29.774299500999973,45.35136009800016],[29.760969593000027,45.40145102200012],[29.609685460000094,45.580261325000095],[29.612276474000055,45.69519465200011],[29.681922546000067,45.702800558000035],[29.735813490000055,45.61763723700017],[29.94495052400009,45.724525613000026],[29.99476853300007,45.806621661000065],[30.213470492000113,45.84603487900006],[30.319944467000028,45.92629294300008],[30.65165845300004,46.24702210900017],[30.68388351800013,46.32423938700015],[30.79361151500018,46.44618082300008],[30.74943553300011,46.50646782900009],[31.015270610000073,46.601462453000124],[31.196105477000117,46.622290309000164],[31.34527753800006,46.600081283000065],[31.42360659000019,46.62507544700003],[31.578880509000044,46.60507823800009],[31.653045600000155,46.65090864100017],[31.814714575000096,46.61368444100009],[31.989433503000043,46.65590542799998],[32.13248459500011,46.5617431280001],[32.2558284910001,46.59534316000014],[32.375259546999985,46.555350083],[32.35665859500017,46.45673984200005],[32.1099925960001,46.507024891000185],[31.870828567000103,46.51369303000007],[31.76666246500008,46.55063526200007],[31.59694250400014,46.538695073999975],[31.614997459000165,46.491735963999986],[31.778331583000124,46.491178903],[32.06137051600018,46.38673955100012],[31.788326500000153,46.28313201900011],[32.066375518000086,46.25340794600015],[32.230819574000066,46.184506858000134],[32.26054347900015,46.12785072500009],[32.52720652000005,46.072018532000186],[32.634437549000154,46.10701465400018],[32.81499044900016,46.126736770000036],[32.910537607000094,46.10924239700017],[33.230537549000076,46.15728461599997],[33.435264528000175,46.04257625900016],[33.58721150100007,46.15646067500012],[33.64833049500015,46.088688629000046],[33.627212458000145,45.99451124100011],[33.687202577000164,45.902568972000154],[33.55165848500002,45.83868797300005],[32.93720245300011,45.65784053300018],[32.71914657100018,45.52979623300013],[32.536384537000174,45.46173400500004],[32.48053759200013,45.39367999200016],[32.50888049500014,45.33700910700014],[32.65442654400016,45.30840603000007],[32.72748555900006,45.353678867999974],[32.93221253800016,45.34145704800005],[33.25804159000012,45.155352981000135],[33.40470846800008,45.18118583900008],[33.566375599000025,45.08729092100009],[33.62220745600007,44.91868877100012],[33.78321057200009,45.01433483600016],[34.03776159600005,45.077757680000104],[34.35287857600008,45.19510180900005],[34.55714756800006,45.24711889500003],[34.69754059100018,45.25636597800013],[34.90606658400003,45.16813571800009],[35.192047565000166,45.098296863000144],[35.34305559799998,45.02579792600005],[35.51526649200008,45.113955934000046],[35.641929455000025,45.10924094600017],[35.78887947200013,45.048403919000066],[35.83525050800017,44.98689969300011],[35.98688550700018,44.99100079100015],[36.02970848200016,45.03480092900003],[36.23332955300009,45.00396273300004],[36.456092545000104,45.08257576500006],[36.40554061600011,45.14256571700014],[36.43276956400007,45.27312794000005],[36.50638547200015,45.34090015400017],[36.625541602,45.33146196300004],[36.586372466000114,45.423122098000135],[36.39054857600007,45.43312405500018],[36.31166045000009,45.46368715700015],[36.13970956200018,45.45840018700005],[36.00860553200005,45.356456128000104],[35.863044563000074,45.402286195000045],[35.721099548000154,45.33589515200009],[35.50305154500006,45.2845109000001],[35.311660509000035,45.38090111000014],[35.05387859700011,45.651729455000066],[34.86997947300017,45.932010909000155],[34.843040539000185,45.90784102100014],[35.00943757800019,45.66146436500014],[35.38248457300017,45.304789909000135],[35.33859256900013,45.28396892600017],[35.04943048800004,45.37284392200013],[35.083320534000165,45.52784324900017],[34.95165257000008,45.66646132000017],[34.71776545199998,45.727840656000126],[34.7305374610001,45.81061966100009],[34.60166150900017,45.873401960000194],[34.370536564000076,45.90173011100012],[34.41193361000012,45.95368600800009],[34.27582558400002,46.00951820100016],[34.165267610000114,45.98757605400016],[34.006652498000165,46.09645563600009],[33.929153589000066,46.048680464000086],[33.69860045700017,46.17312389800014],[33.73998258300003,46.235624062000056],[33.973037546000114,46.20312977100008],[34.03942858900018,46.12923172700016],[34.13777161500019,46.12368475100004],[34.152488561000155,46.27840194300006],[34.46943648300004,46.13896663700001],[34.404159562000075,46.01952032600019],[34.57110544800014,45.98479125100005],[34.63027145899997,46.0686843790001],[34.621093610000116,46.15951286100005],[34.771282563,46.13547657999999],[34.88360559800003,46.22201285699998],[35.029708541000105,46.246464881000065],[35.119712579000065,46.29729223900006],[35.216659515000174,46.402845545000105],[35.307487494000156,46.32951931500003],[35.51110051900008,46.45257386800017],[35.653312582000126,46.50173808900007],[35.72554748800013,46.56840422600004],[35.907203615000014,46.64895548900006],[36.2130505450001,46.658675647000166],[36.254432503000146,46.61701842700006],[36.37554161700018,46.706740665000154],[36.61360158100018,46.77313221200012],[36.74694056200019,46.760916929000075],[36.80248257300008,46.715903762000096],[36.92027245200018,46.82563025100018],[37.23915860600016,46.93201487500011],[37.37998949900009,46.93119093300015],[37.56359860900005,47.08619076400004],[37.74137860800005,47.06646848100007],[37.835815499000034,47.090630825000176],[38.219985615000155,47.10090787700017],[38.44999660500014,47.13230296600011],[38.55165853,47.10897193800008],[38.75387546400003,47.15618317500008],[38.844993457000044,47.15618317500008],[38.97081755900007,47.25647180900006],[39.063880489000155,47.273691758000155],[39.25638548000012,47.25924186000003],[39.2447125060001,47.14063390700011],[39.29387655900018,47.06202054],[39.26970650300018,47.00563128600015],[39.06970960000007,47.0245143730001],[38.93915559000004,46.94451212500013],[38.69776147199997,46.85868864400015],[38.41442850200019,46.82813241600019],[38.3647156020001,46.74702392400013],[38.492492519000166,46.73535111800015],[38.59110259300019,46.6567375840001],[38.466384567000034,46.637572530000114],[38.3024824850001,46.675078697],[38.11749254100016,46.67729872700005],[38.01610554300004,46.6167362920001],[37.809432453000056,46.63230064800001],[37.766929499000184,46.59479448100012],[37.82720946400002,46.473951912000075],[37.99193548699998,46.34256524500012],[38.073043476000066,46.39340735500008],[38.272758580000016,46.26479090599997],[38.308593563000045,46.20840182000012],[38.557487473000094,46.10701465400018],[38.56304148900011,46.032292167000094],[38.44553357700016,46.02534926900012],[38.252212524000186,46.13423672900018],[37.91276556100013,45.98534831200004],[37.8480374880001,45.77506681300008],[37.59136953100011,45.62533936800014],[37.65664645100014,45.50702226700014],[37.72998056100016,45.44839806200014],[37.70109551600018,45.330622935000065],[37.60499548800016,45.31118312200016],[37.51415258900016,45.35979011400008],[37.426101534000054,45.31840111399998],[37.16498546800017,45.324511857000175],[37.24720758000018,45.2659030750001],[37.11582158300013,45.23228778800012],[37.089431495999975,45.34034292500013],[36.83665458600012,45.43396325100014],[36.75694251900006,45.34285313700019],[36.79387653700013,45.287578006],[36.75027454700012,45.20729379100004],[36.58415947600014,45.199793831000136],[36.629432482000084,45.123118696000176],[36.82193747300005,45.10423577600011],[37.19638055700017,44.98145564700013],[37.30470257400009,44.907572690999984],[37.33551746800009,44.80522495900016],[37.438053457000194,44.89426373700019],[37.44166957800013,44.953692772000124],[37.31270561600019,45.06080578299998],[37.39845650800015,45.13905688400013],[37.7790525800001,45.05831769900004],[37.88839752500007,44.95623265600011],[38.061027515000035,44.924265921000085],[38.34234949900002,44.95623265600011],[38.45743554400008,44.89868887900019],[38.566127539000036,44.95623265600011],[38.853843574000166,44.937052849999986],[38.94335559400008,44.95623265600011],[39.21189148800016,44.91787287600005],[39.339763456000185,44.91787287600005],[39.403701619,44.975413636000155],[39.672237513000084,44.975413636000155],[39.870441528000185,44.91787287600005],[40.05585861400016,44.89229482800005],[40.29242358200014,44.81557392700006],[40.407508454000094,44.758028977000095],[40.78473651000007,44.42555927799998],[41.129997495,44.23374948200012],[41.32180745900013,44.18259858300013],[41.53279857000018,44.18899162800017],[41.57115952300012,44.169811654],[41.59034352000015,43.997180825999976],[41.77575658300003,44.19538450500005],[41.86526860400005,44.10587365800012],[41.967571576000125,44.1250538000001],[41.99728760199997,44.064769811000076],[42.19310746800005,44.06978990100015],[42.31361358700019,44.02460104900007],[42.41403549300003,43.878991130000145],[42.51445756600015,43.828778333000116],[42.639987463000125,43.80869344900009],[42.92116946900006,43.81371337100012],[43.202350470000056,43.7132926380001],[43.46344759200019,43.547597500000165],[43.51365653400012,43.48734469200019],[43.94547257199997,43.331690067000125],[44.01576656500009,43.28650155100007],[44.146316551000155,43.110763048000194],[44.25677846800005,43.150931978000074],[44.33711649500003,43.27646154000007],[44.47770649300003,43.28650155100007],[44.55804452000018,43.2513537160001],[44.703655613000194,43.105743127000096],[44.854289477000066,43.11578732900017],[45.00994460400017,43.20616469700008],[45.20074454900009,43.090679170000044],[45.39656860600007,43.02038568000012],[45.61247654099998,43.00532172400017],[45.707874502000095,43.03042653000011],[45.84374951100017,43.18208281900007],[46.07846057000012,43.34771207500006],[46.4530144630001,43.315814240000066],[46.825321503000055,43.23916173500004],[46.90492259399997,43.02230463300015],[46.80028962000006,42.889432357000146],[46.645523477000154,42.81592289800011],[46.203548572000045,42.72485922000004],[46.176837626000065,42.642412809000064],[46.29074450500008,42.61485177000003],[46.533622555000136,42.654070527000044],[46.694599520000054,42.744233989000065],[46.78832646500007,42.687200335000114],[46.7124295050001,42.566825141000095],[46.755813565000096,42.45001980000012],[46.70930858700018,42.401619338000046],[46.74694450600015,42.32117184300006],[47.007675507000044,42.23375831600015],[47.15110747200009,42.28443195000017],[47.18652352800018,42.38133228300006],[47.26787962100019,42.39914332400019],[47.37475257500017,42.3548625680001],[47.44238246300006,42.4951355610001],[47.57769353800012,42.470832736000034],[47.74526555200009,42.23108448900018],[47.86801148400019,42.01067211900016],[47.99663547600011,41.89473296300014],[48.11217850300005,41.86790115000008],[48.250064498000086,41.924056716000166],[48.321964464000075,42.04327286000006],[48.14179662800012,42.29506405900014],[47.9857026250001,42.41646201200018],[47.877193523000074,42.56976216000004],[47.73361252800015,42.687174351000124],[47.623512541000025,43.02899557100011],[47.544258462000016,43.103164350000156],[47.552757543999974,43.20835086500017],[47.629039568,43.343234295000116],[47.564151568,43.530210583000155],[47.695583498000076,43.91416628900009],[47.57083546500019,43.90718919300008],[47.51801254300011,43.701317749000054],[47.210491580000166,44.21889155300005],[47.11828947099997,44.25909753100012],[46.96381351000008,44.44403819000007],[46.76745653199998,44.502127964000124],[46.67230952500006,44.49782100700003],[46.74495648600015,44.68973088300004],[46.594314575000055,44.788863987000184],[46.21156351600007,44.74300692999998],[45.99774954700018,44.766775996000035],[45.80065546400016,44.82628566400018],[45.75780147600017,44.878298726000025],[45.82545852200013,45.01970595900002],[45.81602452200008,45.13693173700011],[45.71919258600008,45.235496045000104],[45.367683562000025,45.45855709600016],[45.17390452100017,45.619304230000125],[44.959739519000095,45.94487394600014],[44.76982855900013,46.27773005000017],[44.65816451000006,46.503397035000035],[44.59326561299997,46.76683405],[44.58537254200019,46.91506985100017],[44.64353959700014,47.20924950700015],[44.619808585000044,47.47567316200019],[44.699172468000086,47.58178386500009],[44.83527747700015,47.661725261000015],[45.086212547,47.73437674800016],[45.48250155400018,47.67179242900005],[45.86803456700011,47.763849028000095],[46.19895160100009,47.89864226900016],[46.32468450800013,48.02437601300005],[46.32468450800013,48.11368686800006],[46.391742583000166,48.21108056000003],[46.486625559,48.27623929600003],[46.568492614000036,48.255186134000155],[46.695857476000185,48.13205782100016],[46.832153592,48.118614924000155],[46.95646660400007,48.157548362000114],[46.99382357300004,48.21324376100006],[46.91348252900008,48.41329146000004],[46.970794462000015,48.494686110000146],[46.83148957800012,48.61338911400003],[46.83745548200011,48.66968784300019],[46.94796349900008,48.765032830000166],[46.969619487000045,48.883502985000064],[47.04780956800016,48.916466160000084],[47.23230749400011,48.90559801700016],[47.38499861300011,48.84765241100007],[47.454360538000174,48.88676488600004],[47.43613861600005,48.97287486000016],[47.233093549000046,49.17250011000016],[47.25042749300019,49.257908015000055],[47.33967548300012,49.27405625500012],[47.743190528000184,49.12116145600015],[47.880050579000056,49.10611241900011],[48.165031599000145,49.207332450000024],[48.47992360800015,49.14839878600014],[49.228706511999974,49.20590232900008],[49.41565346400006,49.20965541000004],[49.84173561000017,49.084376133000035],[50.515712542000074,48.955189547000145],[50.703414535000036,48.948349746000076],[50.7940675000001,48.970913830000086],[50.84632447600006,49.110640323000155],[50.96239455600005,49.15595171900003],[51.05109755600017,49.14023481200019],[51.51826862900009,48.93994957100006],[51.68324661200012,48.98345701300008],[51.66884247900015,49.15824500700006],[51.69052562400003,49.29479727400002],[51.77531461000012,49.24645984400007],[51.88360561400003,49.11592042000012],[51.87452348700003,48.848525638000126],[52.010002535000126,48.87812800500012],[52.01906152800012,48.99650713300019],[52.09153347500012,49.07482378100019],[52.01510661100019,49.22779049600007],[51.89585157500011,49.306607376000045],[51.82182361200017,49.42454393900016],[51.67754758799998,49.52108385000008],[51.63697850699998,49.6354192120001],[51.50625250000019,49.69929300200016],[51.481838531000164,49.83778383600003],[51.37026953200018,49.970685616000026],[51.402584619000095,50.030954350000115],[51.35678858200015,50.10357230900007],[51.17990159100009,50.23282008300009],[51.15110355100012,50.366396774],[51.208122621000086,50.44888710700013],[51.18785048500018,50.64887914900004],[51.24875255600017,50.69616364400002],[51.24496862899997,50.811719579000055],[51.370952490000036,50.95101943400016],[51.427787493000096,51.12543745100015],[51.65495651500015,51.24437414300019],[51.82489356700006,51.268933790000176],[51.96694553600014,51.346651969000106],[52.24050152000012,51.40685985100015],[52.49069563000012,51.36915939100004],[52.68145349700012,51.44495040400005],[53.21020557500009,51.46931190200013],[53.364440473,51.50069156900008],[53.641342512000165,51.38630658600016],[54.20657749399999,51.41631312900017],[54.416061539000054,51.38630658600016],[54.70550558700012,51.284520777000125],[54.81846950200003,51.29393600100008],[55.02557358900003,51.26569150200015],[55.1761935400001,51.19038026900006],[55.26091362600016,51.11506903700007],[55.58098263400018,51.09624395300017],[55.910461502000146,51.00210327800016],[56.12697561700014,50.99269224500017],[56.43762956800015,50.870310423000035],[56.610130477000155,50.689792727000054],[56.764369565000095,50.59950119000001],[56.843028530000026,50.50493002000019],[57.0410156210001,50.39782622900003],[57.12815053400004,50.30802721200007],[57.21892151600008,50.26694666600014],[57.37388949500013,50.36121692600011],[57.38360948500008,50.45649737200017],[57.54169050300004,50.61731960700007],[57.66088854200012,50.64103972300012],[57.760108483000124,50.60679126600013],[57.870170583,50.48244958800018],[58.01147052700014,50.50317904100018],[58.09576062200006,50.43607000300011],[58.20198062600008,50.44551909000006],[58.4973716340001,50.668292140000176],[58.51566647900012,50.76755264900015],[58.589580616000035,50.83126668000011],[58.562229628000125,50.946594627000025],[58.60179154000019,51.0063985000001],[58.53787651100015,51.074938664000115],[58.356338569000116,51.086698809000154],[58.32419950300016,51.150649881000106],[58.19442752500015,51.089445894000164],[57.89241447800009,51.55408730900007],[57.687030525000125,51.578272956000035]],[[40.27555449900012,50.83159458000006],[40.392997535,50.80223629400007],[40.392997535,50.68479141300014],[40.246196548000114,50.58202995100015],[40.09939153700009,50.52330516400019],[39.93791149000009,50.61138857200001],[39.981952524000064,50.699470808000115],[40.27555449900012,50.83159458000006]],[[37.75056048000005,50.097575225000185],[37.633117611000046,50.20033752600017],[37.633117611000046,50.27374053400018],[37.70652045200018,50.34714052500004],[37.91204052700016,50.376501997000105],[38.16160549200009,50.33246129800011],[38.235004477000075,50.27374053400018],[38.17628455100004,50.14161693000011],[37.95608156100013,50.08289616600007],[37.75056048000005,50.097575225000185]]]},"properties":{"objectid":574,"eco_name":"Pontic steppe","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Palearctic","eco_biome_":"PA08","nnh":4,"eco_id":735,"shape_leng":166.417995651,"shape_area":121.548819634,"nnh_name":"Nature Imperiled","color":"#FFAA01","color_bio":"#FEFF73","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":996293.8839336192,"percentage":9.403170241372806}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[64.71396509500016,-73.53751439599995],[64.29638605900016,-73.57046132299996],[64.3328911050001,-73.66165814199985],[64.71396509500016,-73.53751439599995]]],[[[66.880354656,-73.54928158699994],[66.5825606050002,-73.6567478529999],[67.01581213300017,-73.65635608299993],[66.880354656,-73.54928158699994]]],[[[61.419712232999984,-73.42308762499994],[61.2473891210002,-73.44585087199988],[61.322612372000094,-73.54634540399991],[61.530063385,-73.51581531599999],[61.97360755500006,-73.5315372579999],[62.19048452300012,-73.4948219929999],[62.30307800500003,-73.38521733399995],[61.818566928000166,-73.37175632699996],[61.419712232999984,-73.42308762499994]]],[[[68.21276463700013,-73.22836738899991],[68.24457179300003,-73.32127512299996],[68.51811095400012,-73.26642074199998],[68.21276463700013,-73.22836738899991]]],[[[68.20211006000011,-72.65569156499993],[68.01667764700017,-72.69047597399987],[68.01084652100019,-72.77717187799993],[68.33741750200016,-72.7768206749999],[68.20211006000011,-72.65569156499993]]],[[[68.85307020900012,-72.19523672999998],[68.77680424699997,-72.11515582799996],[68.49018596200006,-72.23591747499995],[68.56246381000011,-72.28916739099998],[68.85307020900012,-72.19523672999998]]],[[[67.93772210000003,-71.38016187099993],[67.69889761200011,-71.41372687999996],[67.36088298300007,-71.52270641699982],[67.70734305300016,-71.56159695399992],[68.02822741000006,-71.41189895399998],[67.93772210000003,-71.38016187099993]]],[[[68.29188950100018,-70.45677702299992],[68.07176219400003,-70.50940013999997],[67.94488242800003,-70.58692791399994],[68.00850880900003,-70.66155387099997],[67.54719767600017,-70.72454104899992],[67.63558924000012,-70.80650620299997],[67.88240537300015,-70.80926217399991],[67.77098871300007,-70.94543496199992],[68.0740526350001,-70.88002440799994],[68.2696398970001,-70.86931702499999],[68.14476927000015,-70.76369058699999],[68.16152822200019,-70.62295116799999],[68.24385799000004,-70.59148029499994],[68.29188950100018,-70.45677702299992]]],[[[68.90752427000001,-70.30811217699988],[68.64410391600006,-70.37560596899993],[68.67070322600017,-70.4472048849999],[68.85792199200017,-70.45342040499992],[68.90752427000001,-70.30811217699988]]]]},"properties":{"objectid":575,"eco_name":"Prince Charles Mountains tundra","biome_num":11,"biome_name":"Tundra","realm":"Antarctica","eco_biome_":"AN11","nnh":1,"eco_id":128,"shape_leng":149.91494674,"shape_area":1.59079151537,"nnh_name":"Half Protected","color":"#55C7AE","color_bio":"#9ED7C2","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":5999.214350165622,"percentage":0.07020602902588721}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[94.70117953800008,39.48071266000005],[94.40399161700009,39.44006428500006],[94.03222655000013,39.43208739500017],[93.77932760000016,39.47298471300007],[93.59118656300012,39.521838133000074],[93.42417161000014,39.448910043000126],[93.35620862400009,39.38191717900003],[92.93479955700002,39.22896521500002],[92.77143861100018,39.156670462000136],[92.41506959200007,39.039713241000186],[92.04526555500019,38.84806605400013],[91.71990153200005,38.77233052900016],[91.63654350400003,38.727656997000054],[91.2015076420002,38.73452395500016],[90.8711925950002,38.75543965300005],[90.87126166200017,38.68309896700015],[90.68724066600004,38.60399023000008],[90.36550852100004,38.52806024500018],[89.87111654600005,38.37427713200003],[89.50697364700017,38.225933371],[89.34811361500016,38.10873642800016],[89.18606561000013,38.03586181400016],[89.0428926460001,38.009957375000056],[88.80892154100007,38.003304323000066],[88.64282960300017,37.896521559000064],[88.41566460500007,37.82097261600006],[88.3135525720001,37.80304422800009],[88.28140260900017,37.7470029910001],[88.4260405620002,37.71449880800003],[88.54985066000017,37.748651208000126],[88.65113858400014,37.741960102000064],[88.91711464500008,37.41208342900006],[89.0431826590002,37.35553156700007],[89.10250859700005,37.230160088000105],[89.29798866100009,37.14712677600011],[89.68309050800008,37.118704413000046],[90.03530864100009,37.10744366100005],[90.40077252800006,37.069064268000034],[90.55601459500008,37.04200379600013],[90.70196565800018,36.972875391],[90.79229759600008,36.88589001100007],[90.85804759200016,36.86748854800015],[90.90578454200005,36.979490053],[91.07998664200005,36.93605704300012],[91.05949355900003,37.03862404500018],[91.1129305390001,37.06416353600008],[91.41487150200004,37.0075464630001],[91.60625465900006,36.92145442600008],[91.72602065600006,36.828942187000166],[91.79920959100008,36.654835138000124],[91.88272050400019,36.585062332000064],[92.23078959500009,36.435887757000046],[92.60936764000013,36.388411820000044],[92.70270566400006,36.38924280100014],[93.07515754300005,36.32185012100018],[93.1706235650002,36.26144945600015],[93.30374863900016,36.29844784700009],[93.53353164200007,36.32836202100003],[93.45451359700002,36.187572199000044],[93.57221261600006,36.19121899800007],[93.68555455500018,36.160484906000136],[93.805419626,36.24178500800008],[93.89347856000018,36.24492084500008],[94.14411959400019,36.147446185000035],[94.33969152300011,36.128670721000105],[94.38007352100016,36.21044775400014],[94.33551767000017,36.50508925300011],[95.13373553100013,36.112812999000084],[95.87634264800016,36.26645060200002],[96.29341860700015,36.55070826400015],[96.69577762000017,36.85540368800014],[97.88407165300003,36.711112745000094],[97.89931464600011,36.804192774000114],[98.53949759000011,36.85540368800014],[99.10176051700012,36.96352956900017],[99.0434955610001,37.01283745500018],[98.73680859600006,37.181630042000165],[98.52856457000019,37.343888936000155],[98.26335159800004,37.455966716000034],[98.01416063400006,37.53143117000013],[97.88605464300014,37.63529619299999],[97.73811354900016,37.71919451800005],[97.48287956800016,37.89675843100014],[97.32762861600014,37.96009611500011],[97.16912867100001,38.078769280000074],[97.05928751800019,38.193765136000025],[96.8461226440001,38.32605285799997],[96.77664152800008,38.33742760400003],[96.65366358600016,38.28854350600011],[96.58145164600006,38.213303687000064],[96.48636666600004,38.198579030000076],[96.26768465600014,38.262874766000095],[96.01489265800012,38.295135202000154],[95.91799165499998,38.35356746100007],[95.86746956600018,38.47696315800016],[95.86301458400015,38.66314031500008],[95.888435555,38.73462302900003],[95.7766645530001,38.84295124900018],[95.77189659100014,38.9526366660001],[95.69081860900013,39.05755110400003],[95.6049805450001,39.11478223600011],[95.04700462600005,39.324613962000114],[94.94660954200009,39.377210237000156],[94.74015756700004,39.395424951000166],[94.70117953800008,39.48071266000005]]]},"properties":{"objectid":582,"eco_name":"Qaidam Basin semi-desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Palearctic","eco_biome_":"PA13","nnh":2,"eco_id":835,"shape_leng":25.6236934965,"shape_area":19.6333984162,"nnh_name":"Nature Could Reach Half Protected","color":"#CE6C47","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":192470.0733444967,"percentage":0.7295457876391847}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[101.4311755650001,38.26880663900016],[101.19532054500007,38.28826153900013],[101.10263060900013,38.31392206500004],[100.96056355300016,38.39945770999998],[100.76683765400008,38.437367047],[100.27960164500013,38.61550679700008],[99.97543361000015,38.7370831180001],[99.75611155800004,38.84867625600003],[99.38948862200004,39.0818696880001],[99.03603365499998,39.24387310100019],[98.77479554900015,39.332395721000125],[98.69230655800015,39.39532202100003],[98.48214760200011,39.41901045300011],[98.34158358900004,39.49132565800011],[98.09011861400012,39.477786873000184],[97.80030056500016,39.588267062000114],[97.62814365000014,39.6037009960001],[97.2229235580001,39.571425304],[96.98000359900004,39.56976954300006],[96.86002352800011,39.60904881800013],[96.68690453800019,39.73456614100007],[96.44329055600014,39.83097697100004],[96.07133455000013,39.91246197800007],[95.90388457600011,39.92849857100009],[95.7735136280001,39.8738314630001],[95.57197562700003,39.73775914400005],[95.19133764600008,39.54878880100017],[94.94660954200009,39.377210237000156],[95.04700462600005,39.324613962000114],[95.6049805450001,39.11478223600011],[95.69081860900013,39.05755110400003],[95.77189659100014,38.9526366660001],[95.7766645530001,38.84295124900018],[95.888435555,38.73462302900003],[95.86301458400015,38.66314031500008],[95.86746956600018,38.47696315800016],[95.91799165499998,38.35356746100007],[96.01489265800012,38.295135202000154],[96.26768465600014,38.262874766000095],[96.48636666600004,38.198579030000076],[96.58145164600006,38.213303687000064],[96.65366358600016,38.28854350600011],[96.77664152800008,38.33742760400003],[96.8461226440001,38.32605285799997],[97.05928751800019,38.193765136000025],[97.16912867100001,38.078769280000074],[97.32762861600014,37.96009611500011],[97.48287956800016,37.89675843100014],[97.73811354900016,37.71919451800005],[97.88605464300014,37.63529619299999],[98.01416063400006,37.53143117000013],[98.26335159800004,37.455966716000034],[98.52856457000019,37.343888936000155],[98.73680859600006,37.181630042000165],[99.0434955610001,37.01283745500018],[99.10176051700012,36.96352956900017],[99.1965256430002,36.88135121000016],[99.29108457500007,36.91745642600006],[99.10896258300005,37.11120160400003],[98.94094867500013,37.324556076000135],[98.65222966100004,37.48637307500013],[98.61988054400018,37.621105631000034],[98.38775664300005,37.86317415700012],[98.33312960100011,38.09639675700009],[98.36540261100015,38.26784473100014],[98.43994153400013,38.30805104500007],[98.56308761800011,38.189080155000056],[98.66979963900019,37.99294378800005],[98.84365858300004,37.94754958000004],[98.83169559600009,37.68953213599997],[98.89396659900018,37.63166833800011],[99.25647754100015,37.71543372600013],[99.5753705680001,37.58706018500004],[99.66964753299999,37.56797542900017],[99.7441105170002,37.616005578000056],[99.70568854300006,37.68242931100019],[99.79185467600018,37.73768449400012],[99.7388225420001,37.799111271000186],[99.48733560700009,37.913226021000185],[99.2288055260002,38.010407316000055],[99.155853632,38.09345571500012],[99.18865956300004,38.18888619800009],[99.50409656300013,38.07597307700013],[99.6704255410001,38.034393976],[99.91653464700016,37.944601497000065],[100.08427463500016,37.86386784300015],[100.5061876220002,37.72753367300004],[100.69499954700012,37.62603754300011],[100.82968164400006,37.90436819400014],[101.09229253799998,38.103945667000175],[101.4311755650001,38.26880663900016]],[[100.39069354600008,38.494704964000164],[100.53133366700001,38.36160134800019],[100.38335451900008,38.33781669100017],[100.22518951500007,38.40629734300006],[100.23506959900004,38.51962939200007],[100.39069354600008,38.494704964000164]],[[99.65890461500004,38.722347061],[99.78980261800007,38.650346513000045],[99.80546554500006,38.546496241],[99.69579353900008,38.50994862900012],[99.59623765100014,38.53861524100006],[99.43984257000005,38.657124287000045],[99.43795764700019,38.708023562000164],[99.65890461500004,38.722347061]]]},"properties":{"objectid":584,"eco_name":"Qilian Mountains subalpine meadows","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Palearctic","eco_biome_":"PA10","nnh":2,"eco_id":763,"shape_leng":21.9362819033,"shape_area":7.58476006515,"nnh_name":"Nature Could Reach Half Protected","color":"#A93800","color_bio":"#D6C39D","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":73393.11117203053,"percentage":1.502939502487023}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[67.86034356000005,24.083867633000068],[67.7491606320001,24.045134523000172],[67.78844460099998,23.990820293000013],[67.91658763900006,23.98438550600008],[67.86034356000005,24.083867633000068]]],[[[67.87629650100007,24.170498458000054],[67.78943651500003,24.148840458000052],[67.78646060400007,24.07292304700013],[67.89472948000014,24.119851814000185],[67.87629650100007,24.170498458000054]]],[[[68.6488265110001,24.32576080900003],[68.57428758700007,24.297139963000177],[68.59925057100014,24.201777877000097],[68.68430358600017,24.254263343000105],[68.6488265110001,24.32576080900003]]],[[[70.43192252100005,23.04330565000015],[70.45133249400016,22.974018994000176],[70.37622058400012,22.906662691000122],[70.25428048800012,22.73514145900009],[70.19077248400004,22.589048239000192],[70.38059258400017,22.691543828000135],[70.60028863700018,22.976210191],[70.60463750400004,23.07104606100006],[70.69326758000017,23.111571893000132],[70.84636656200007,23.140491470000143],[70.94609059100003,23.117844574000173],[71.06340052200017,23.162169419000065],[71.236007546,23.129131142000062],[71.33461761900014,23.15065100800018],[71.43279250400019,23.124502320000033],[71.58766962300001,23.143130429000053],[71.68441053200007,23.10491330900004],[71.65936255600008,23.301600367000106],[71.53607951200013,23.410557564000158],[71.51943255000015,23.506572768000126],[71.45809160300007,23.546369708999976],[71.43035152700008,23.63725602700009],[71.26364854800016,23.636226226000076],[71.29374662100014,23.725330718],[71.17590360000008,23.75625893500012],[71.07852164300016,23.69115233500014],[71.078773603,23.85096522100008],[71.12242152600004,23.904541676000065],[71.29680651899997,23.922271580000086],[71.34517663800011,24.093062245000056],[71.29493752200017,24.269843457000093],[71.36596660800006,24.294752294000034],[71.34472653000017,24.37655816000006],[71.36379955100006,24.47292439800009],[71.2866285410002,24.52490091500016],[71.3412785500002,24.655494487000112],[71.25254051500008,24.651935531000163],[71.14369949000002,24.708132838999973],[71.08521258100006,24.69305278900015],[70.98706049500004,24.591746593000153],[71.00018353800004,24.44264494000015],[71.09739651600017,24.433696421000036],[71.04255657300013,24.354720284999985],[70.97846250700007,24.35975009700013],[70.87212364800013,24.30171195600019],[70.80322256000011,24.219867868],[70.65617363500013,24.221805931000063],[70.57274654100007,24.257244115000162],[70.55481748300002,24.413807170000098],[70.38379648300014,24.35559015900003],[70.11321255500008,24.28596353300003],[70.03440053700012,24.172751178000112],[69.73342852200011,24.172169307000047],[69.58958450200015,24.285315612000147],[69.50523355400003,24.260854704000053],[69.29591362700006,24.27154330700006],[69.24397248200006,24.253401348000068],[69.19496148200011,24.23216831100018],[69.1028515750001,24.26452463600009],[68.97487650900007,24.230295291000118],[68.93930857400017,24.286763669000152],[68.844512602,24.215777164000144],[68.82937656100006,24.30237177900017],[68.73454253500017,24.313993120000077],[68.68578349500012,24.19261712700012],[68.61981154700015,24.158276973000056],[68.5238494840001,24.165948426],[68.46877250100016,24.124240746000055],[68.40165759700011,24.1424398690001],[68.22994961600011,24.073953015000086],[68.19553352200006,24.13887990800015],[68.05721250600004,24.081233704],[67.91858655600015,24.128800334000175],[67.95162952700008,23.988846523000177],[67.9026875940001,23.96313067600005],[67.79825561800004,23.979130723000083],[67.67512562799999,24.08040791900015],[67.44153556500004,24.060175681000032],[67.50897250300011,23.88530369900019],[67.63331552200009,23.836051971000188],[67.65757761100014,23.79557710199998],[67.93605058600008,23.83824585100018],[67.9934086200002,23.78874853300016],[68.13292657200014,23.866274600000168],[68.19410658700019,23.848285359000045],[68.18462363700019,23.71945081300015],[68.3152695120001,23.567810618000067],[68.36744652400017,23.59463824000005],[68.41696949000004,23.694273085000077],[68.66903662000016,23.84027477400008],[68.68229662300013,23.79432702500003],[68.85624659600012,23.820616864000044],[69.04718048300015,23.706881647000046],[69.22207660400011,23.81747599800002],[69.34806851100006,23.803195749000054],[69.40614353299998,23.762268760000097],[69.51061255700006,23.778117933000033],[69.57362351400008,23.820115794000117],[69.69837154700019,23.792288379000126],[69.66562663600007,23.873644137000042],[69.7255406480001,23.943470755000078],[69.8234635730002,23.94434046100008],[69.93283064600007,23.884912600000064],[69.94450361899999,23.746350520000135],[69.84795348200015,23.55963993800009],[69.66953260300005,23.525210767999965],[69.45117949900003,23.599226997000017],[69.21761357600013,23.63096540800018],[69.18193064100012,23.57339950300019],[69.324226523,23.524710703999972],[69.42899360700005,23.522301913000092],[69.64010659100018,23.45184447300005],[69.85140263500017,23.474534452000114],[69.94206264100018,23.561299052000038],[70.0132065590002,23.553819376999968],[70.07330363200015,23.451334685000177],[70.18444062700007,23.45268534500019],[70.26859258800016,23.421027232000085],[70.28437051500009,23.51285148400018],[70.33464852300006,23.56717979600012],[70.52471957699998,23.664265704000172],[70.54415151100005,23.732298427000046],[70.61844652100012,23.720480949000148],[70.62454955300007,23.804817647000107],[70.56276654400006,23.847032600000034],[70.60234857300009,23.920383808000054],[70.84726761700011,23.87997280900015],[70.8331065590001,23.786837627000125],[70.74726849400014,23.82471578300016],[70.72000149300015,23.736440093000056],[70.76024653000013,23.709931486000073],[70.9356236050001,23.711112496000112],[70.99372058800003,23.633006234000106],[71.05902064300005,23.469333649000077],[71.03491948600015,23.431075625000062],[70.92571250800012,23.40238722100014],[70.78999356900005,23.27486444300007],[70.5831905600001,23.178338613000165],[70.31237059800003,23.214286584000092],[70.21690357000017,23.067674189000172],[70.25509655000013,22.967576328000177],[70.28984054500006,22.94507075000007],[70.43192252100005,23.04330565000015]]]]},"properties":{"objectid":589,"eco_name":"Rann of Kutch seasonal salt marsh","biome_num":9,"biome_name":"Flooded Grasslands & Savannas","realm":"Indomalayan","eco_biome_":"IN09","nnh":1,"eco_id":312,"shape_leng":25.4589208037,"shape_area":2.46733001013,"nnh_name":"Half Protected","color":"#72C5F7","color_bio":"#BEE7FF","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":27965.058787302616,"percentage":2.4183635124661635}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[44.99920734800014,14.483321748000094],[45.0199816870001,14.390871442000105],[45.085114728000065,14.365076757],[45.09712640300012,14.47318182700019],[45.17987349300006,14.551925024000184],[45.2732976260001,14.533240198000158],[45.328017476000014,14.451827739000123],[45.2999902360001,14.156874402000142],[45.350706194000054,13.956679830000098],[45.38941047800006,14.09948529200011],[45.46948830700018,14.188905534000071],[45.50952722200003,14.270317993000106],[45.51219648300014,14.390434737000078],[45.57092022400019,14.433142912000164],[45.68302918400019,14.421131237999987],[45.70705253200015,14.334380257000191],[45.8057739730001,14.34127655900005],[45.822953553000104,14.219961004000083],[45.9001715550001,14.142021339000166],[46.136877206000065,14.137691357000165],[46.176568702000054,14.170166218000134],[46.34327298700009,14.142021339000166],[46.41190685700019,14.068284007000159],[46.46199244100006,14.089273237999976],[46.799727672000074,14.082857178000097],[47.05171259300005,14.020753246000027],[47.17573759400017,13.955566283999985],[47.269187277000185,13.953887658000042],[47.50226570100017,14.06376225400004],[47.60580749200017,14.07588400300017],[47.52783114400012,14.161364455000125],[47.41172866800008,14.20363259200019],[47.33510643000017,14.178361642000027],[47.197330293,14.179440829000043],[47.258484192000026,14.08788984400013],[47.1917544960001,14.053625674000159],[47.06063334200019,14.12907879400018],[47.0329342230001,14.26046974500008],[46.85199062700008,14.45148574700005],[46.72374730300004,14.39698683100005],[46.705491066000036,14.316497508],[46.54658086000018,14.376392357000157],[46.47868204600013,14.370906492000188],[46.479941096,14.595287343000052],[46.41608923100006,14.598704766000083],[46.36257956900005,14.65617144500004],[46.241261025000085,14.584585410000159],[46.159242855000116,14.576941173000137],[46.134511498999984,14.493304223000166],[45.97218386900016,14.524420765000059],[46.1247088880001,14.627033411000184],[46.332632145,14.706353615000069],[46.258348144000195,14.77874904000015],[46.31356651800019,14.833697617000098],[46.12740685400007,14.90861114300003],[45.98837166600009,14.852133719000165],[45.82658363000013,14.859867889000043],[45.78629400200009,14.97606029700006],[45.715967018000185,14.948630975000185],[45.67001166200009,15.000791653000135],[45.57621237200004,14.99557558500004],[45.49608277800013,15.112217655000109],[45.553279660000044,15.146391892000167],[45.51964501600014,15.280750606000083],[45.36115946600006,15.447327970000174],[45.44272085699998,15.493165020000049],[45.43627786200011,15.579505390000122],[45.25623060000015,15.61451753200015],[45.12773970600006,15.543133701000102],[44.98556691100015,15.557707900000082],[45.007558013000164,15.724960502000101],[45.081321304000085,15.81728358900017],[45.00327498300015,15.859400049000044],[44.943788458000085,15.810859045000086],[44.79935517500013,15.842505876000132],[44.71298074100014,15.79705817100006],[44.801496690000135,16.065699318000043],[44.402699026000164,16.249155762000157],[44.39032582800013,16.29960033500015],[44.44267397000016,16.37193595000008],[44.65837675000006,16.32335759],[44.747999061000144,16.279777829000125],[44.88402829600017,16.306253318000017],[44.93180590300011,16.225000955999974],[45.0045374180001,16.215567161000024],[45.09248473100013,16.14192269800003],[45.167650774000094,16.238390858000116],[45.3006368500001,16.23047864300014],[45.39497479800019,16.11088246999998],[45.48231348000007,16.113012681000157],[45.44640419600006,16.23686927800003],[45.369412257000135,16.2642577150001],[45.21147227300008,16.40150421400017],[45.30763611700007,16.546054297000126],[45.32855311700001,16.613386451000054],[45.31295689100011,16.71533956100012],[45.20528628100004,16.693924412000058],[45.22521426700007,16.835502342000098],[45.06519551400004,16.766200540000114],[45.04913415200019,16.81825125],[45.09077472000013,16.901532385000166],[45.02745707400004,16.979111943000078],[44.86419630600005,16.999277875000075],[44.82181215700018,17.0818451720001],[44.54200283100005,17.1270886960001],[44.52368098100004,17.184433706],[44.5757911770001,17.34671294600014],[44.56127646500016,17.37431469400002],[44.41755702000012,17.39406422100012],[44.363305309000054,17.457119937000073],[44.38116713000011,17.564386039000055],[44.35832430400018,17.631486840000093],[44.38017701400008,17.718521944000088],[44.31842055900012,17.922958778000066],[44.198181201000125,17.96792488000017],[44.28334699900017,18.152106035000145],[44.38550998300019,18.111456679000128],[44.42265198400014,18.06145437300006],[44.50970635800013,18.051471898000045],[44.442616933000124,18.195723154000063],[44.52823239200012,18.265600478000067],[44.56654351100019,18.359849428000075],[44.55826974800016,18.42127312300005],[44.63534164800018,18.492679295000016],[44.58821717200016,18.584050414000046],[44.519688833000146,18.49978393900011],[44.35691154200015,18.481257905000064],[44.289822118000075,18.401308174000064],[44.15996001400009,18.56399553200015],[44.12569584400012,18.755371263000143],[44.079021030000035,18.838378687999978],[44.14332255600016,18.947286588000168],[44.22552059200012,18.76868123000014],[44.33056140600007,18.678838956999982],[44.44783300200015,18.700152890000027],[44.54684835800015,18.962035470000103],[44.50116279800005,18.998637877000192],[44.49657625600014,19.138752252000188],[44.5194190360001,19.338221881000152],[44.45089069599999,19.418891069000097],[44.33820564400014,19.432650696],[44.28037923599999,19.403692526000157],[44.28946238900005,19.33210649200015],[44.41896476300013,19.19810750700009],[44.415907068000195,19.093066692000036],[44.34126333900008,19.047381132000112],[44.26940750700004,19.114470556000185],[44.23613259100017,19.44991768000017],[44.14089438700006,19.44515127300002],[44.131361573,19.499919985000133],[44.181363879000116,19.607029241000134],[44.150427200000195,19.702177513000095],[44.28127855800017,19.792559379000068],[44.35745113500013,19.897240465000095],[44.34791832200017,19.942476364000015],[44.195033574000036,19.95335816100004],[44.14404201399998,19.942116635000048],[44.07380496200011,19.733743717000152],[44.01004302900009,19.716476734000082],[43.94816967200006,19.530856664000055],[43.90536194300006,19.566559749000135],[43.87676350200019,19.70694392000007],[43.77496024600009,19.716117005000115],[43.85275160300006,19.562692664000167],[43.73817797500004,19.547494122000103],[43.64599746600004,19.84013351500016],[43.56272024400016,19.921072499],[43.50561329400006,19.89490222800015],[43.4315091580001,20.021167044000038],[43.35956339300009,19.952009178000083],[43.280153256000176,19.928087211000104],[43.247597798000186,19.866393719000087],[43.232758985000146,19.732124938000027],[43.29166457900004,19.721782733999987],[43.2654943070001,19.600823919000106],[43.18932173000013,19.408099204000052],[43.13104566100003,19.34056011900003],[43.05802071099998,19.39245100100004],[43.059549559,19.515478257000098],[43.182576814000186,19.65226514000011],[42.972944846000075,19.810186091000105],[42.83633782700019,19.728527649000057],[42.861878573000126,19.89346331300004],[42.89128640400014,19.948232025000095],[42.90207826800008,20.142395655000087],[42.79236097900019,20.163439791000087],[42.7649316560001,19.881322466000086],[42.69568385900004,19.868552092000073],[42.731117147000134,19.72448070000013],[42.658811655000136,19.721692802],[42.60233423000011,19.773493752000036],[42.57913172200006,19.57087649500005],[42.74100969000017,19.43561845900018],[42.773025555000174,19.301979203000087],[42.863947014000075,19.284802152000054],[42.88723945500004,19.15053337000012],[42.86214836900007,18.95223285900005],[42.873839556000064,18.82057211200015],[42.831661352000026,18.553203667000105],[42.92662976000008,18.43503275100005],[43.12915708500009,18.44510515700017],[43.16180247500006,18.333679156000073],[43.209106815000155,18.358230648000074],[43.35335807100006,18.169912611000143],[43.449315733,18.093380304999982],[43.44788022400019,18.044774076000067],[43.54908753200016,17.941756437000095],[43.7118372760001,17.854390295000087],[43.80106706400011,17.743745358000012],[43.848180392000074,17.63809728900003],[43.93241331100012,17.65023254],[44.07303945700005,17.570996489000095],[44.07303945700005,17.52888002900005],[43.9202780600001,17.461779229000115],[43.88815533700017,17.38754004500015],[44.04662744000012,17.303307126000163],[44.1208666230001,17.237634002],[44.22865620700014,17.192662189000032],[44.26220660700017,17.07916189900004],[44.21081024900002,17.01134726000015],[44.18145668200003,16.881658086000016],[43.996815776000176,16.74031228800004],[43.92267207600014,16.561963274999982],[44.02335299500004,16.37162824799998],[44.00466843200013,16.22584814400011],[44.06670031800002,16.164964042000065],[44.156632523000155,16.15165407600017],[44.21832601500017,16.02916641300004],[44.14997753900019,16.02835702300007],[44.14503126800014,15.929161801000078],[44.24413655800015,15.947507971000164],[44.30753876200009,16.019183938000026],[44.387488492000045,15.850021461000154],[44.53164981600008,15.850021461000154],[44.49333869700007,15.935007395000014],[44.68336544500005,15.829966580000189],[44.69082981800011,15.71413390000015],[44.75786546300009,15.545052685000087],[44.78750693800009,15.384172641000134],[44.74748710700004,15.342534031000184],[44.78247073400013,15.26582186000013],[44.80162629400019,15.199991486000158],[44.90163090600015,15.188300300000037],[44.991653042,15.128315519000125],[44.929959550000035,15.07912260300003],[44.85585541300014,15.032537721000097],[44.734177141000146,15.131643011000108],[44.74919581900019,15.06833073900009],[44.8183536840001,14.989999789000024],[44.83750924400016,14.98163609400018],[44.85081921000011,14.934961279000163],[44.74829649700007,14.969135517000154],[44.705039106000186,14.867512126000065],[44.72248595400009,14.830819787],[44.79829880200003,14.770835006000084],[44.80162629400019,14.674157886000103],[44.89245782100011,14.595017546000179],[44.93670446500005,14.59420815599998],[44.99920734800014,14.483321748000094]]],[[[42.82725467400013,20.82471129100003],[42.89704206500005,20.577307797000174],[42.96997708300006,20.62335308500019],[42.94488599800013,20.832355529000154],[42.892363065000154,20.868323534000126],[42.82725467400013,20.82471129100003]]],[[[41.389688383000134,23.97647533500009],[41.32116004400012,23.947966825000094],[41.331142518000036,23.763785670000175],[41.39679302900015,23.868017095000027],[41.389688383000134,23.97647533500009]]],[[[41.08553766700004,24.11497092900015],[40.976449903000116,24.079897369000037],[40.88589260000015,23.981336865000173],[40.84442942700002,23.87539153600011],[40.71465725600012,23.872243909000133],[40.87995264799997,23.778084891000162],[41.078433024000105,23.875121739000065],[41.03418637900012,23.981961199000125],[41.11125827800004,24.030794386000025],[41.08553766700004,24.11497092900015]]],[[[40.003563314000075,24.724891141000114],[39.93341619400013,24.617152359999977],[40.08279358600015,24.661848665000093],[40.09169687400015,24.74188832700014],[40.003563314000075,24.724891141000114]]],[[[38.04169227000011,26.574976454000137],[37.94969162500007,26.512473572000147],[37.820818776000124,26.54188140300016],[37.838895149000166,26.613737233999984],[37.74977233400017,26.643774591000067],[37.77585267300009,26.705378151000104],[37.70651494400005,26.885782153000093],[37.625396095000156,27.151351953000074],[37.65003751900008,27.360084600000164],[37.532675992000065,27.32564056600006],[37.42664592300008,27.421868025000038],[37.41297622800016,27.520163924000144],[37.34525727800002,27.50397612800009],[37.29633415800009,27.581677552000144],[37.21962198799997,27.58365606100017],[37.12627235999997,27.505684839000025],[37.07393181700019,27.547683179000046],[36.93993283200007,27.555597213000112],[36.91520147500006,27.61612158700018],[36.81052038900003,27.670350706000136],[36.559969267000156,27.65623135000004],[36.43298499400015,27.876655183000025],[36.41355963800015,27.97746918500019],[36.31805163700017,28.042130440000165],[36.25905611100006,27.99473616800003],[36.226320788000066,28.161200679000103],[36.17694800800018,28.263093867],[36.165886347000026,28.43882139400006],[36.020376039999974,28.52479658200008],[35.94816047900008,28.656097601000056],[35.97945688600004,28.7434217710001],[35.929724377000184,28.820493671000122],[35.95148797100006,28.899364214000173],[35.82648220600015,29.061062318000154],[35.82971976600015,29.163495099000045],[35.75453644300018,29.283014998999988],[35.73843857800006,29.378612933000056],[35.76146122200015,29.490128866000077],[35.69599057800008,29.52430310400007],[35.671651363000024,29.716722977000074],[35.601921491000155,29.77935083600005],[35.54445481300013,29.886729889000094],[35.3941780990001,29.805161379000026],[35.32564975899999,29.814963989000148],[35.20127352000014,29.729438463000065],[35.21988948600017,29.68851931],[35.15315979000019,29.576193986000078],[35.07896572200008,29.547685477000186],[35.09560318000018,29.717297615000064],[35.2147633510001,29.9353832110001],[35.21413382500009,30.008767890000115],[35.25847040200006,30.172174706000078],[35.325469895000026,30.33944860700018],[35.48896664200009,30.60780630500011],[35.432938879000176,30.728315458999987],[35.490675354000075,30.85449034200019],[35.48716799800013,30.87544454600004],[35.53420254100001,30.943972886000154],[35.64113193300011,30.915014716000087],[35.718833357000165,30.887405529000034],[35.72225078100013,30.923738140000182],[35.64717623200005,30.952896835000047],[35.537106154000014,30.984855304000064],[35.612353627000175,31.408202926000058],[35.77108396799997,31.384550756000067],[35.88709651200003,31.36692404400003],[35.8725274950001,31.405594892000067],[35.78943013800006,31.41296933300015],[35.645448679000026,31.42511018100015],[35.77836847700007,31.501372690000096],[35.788710680000065,31.532039572000144],[35.64706745800015,31.44777309699998],[35.60794694900005,31.47079574100013],[35.61289322000016,31.618104692000145],[35.617120034000095,31.638249506000136],[35.62701257700019,31.756960016000107],[35.59391752500011,31.8638894070001],[35.65147413600005,31.87576045800006],[35.69491139100006,31.895005950000098],[35.692483222000135,31.89878310199998],[35.64535874500007,31.905797814000096],[35.592748407000045,31.90687700100011],[35.60506911900018,32.09861246100007],[35.647876849000056,32.09186754600006],[35.67449678100007,32.08035622299997],[35.68079203500014,32.10805534200006],[35.686997357000166,32.15428049600007],[35.679532984000105,32.18665608900017],[35.638973560000125,32.20185463200016],[35.66163647500002,32.35069243099997],[35.558955081000136,32.4263314050001],[35.56991670200017,32.19547743500016],[35.54325023400003,32.086531003000175],[35.521620846000076,32.02270026000019],[35.54060921000013,31.817178675000036],[35.58015789800004,31.748686254000177],[35.52970593200007,31.596161234000135],[35.55497688100013,31.454967673],[35.51810467700017,31.351545638000175],[35.41917925200005,31.30433123],[35.40384307199997,31.229404824000085],[35.459216740000045,31.120147652000128],[35.414632852000125,30.973149056000125],[35.414862506000134,30.971941802000117],[35.35910982600012,30.913982338000153],[35.33437318300008,30.813031597000133],[35.20918755399998,30.591438645000096],[35.160714096000106,30.41948827000016],[35.186164340000175,30.343294090000143],[35.14137867300019,30.233688334000135],[35.17977972300014,30.150501045000112],[35.10201053500015,30.036106054000072],[35.075458366000134,29.85624287200011],[35.020639857000106,29.721794073000126],[34.9182164880001,29.649973371999977],[34.83175642499998,29.486577372000056],[34.72646527500012,29.406270563000135],[34.53729812500006,29.304548605000036],[34.414161018000186,29.152857966],[34.37311531600011,28.804861794000033],[34.326715826000054,28.685293878000152],[34.146471655000084,28.503265111000132],[34.06794944200004,28.47292698300015],[33.896628249000116,28.467573196000103],[33.469707442000185,28.69552715300017],[33.26848001400015,28.831899997000107],[33.17392486400007,28.82306977000019],[33.224998452000136,28.75624506600019],[33.196388501,28.669582725000055],[33.22027558400015,28.583752204],[33.347496614000136,28.465981938000027],[33.4313885680001,28.361539065000102],[33.56555149000013,28.29209902100007],[33.62749459300011,28.18765715400002],[33.805549518000134,27.98711157100007],[33.92166150800006,27.931004117000043],[34.049438593000104,27.81295205200007],[34.16165953600006,27.78267510900008],[34.25499756000016,27.78739613199997],[34.288604466000095,27.857115964000116],[34.43027455499998,27.97127513900017],[34.45304852100014,28.164327300000082],[34.406105505000085,28.308208201000127],[34.46083061600001,28.439036131000137],[34.62638845800012,28.729025170000057],[34.64332560300005,28.96290591800016],[34.680271523000044,28.979013421000047],[34.69888353900012,29.165675890000102],[34.73749561400018,29.205118445000153],[34.74777249800019,29.310667393000017],[34.869438505000176,29.478438896000057],[34.97867082100015,29.544308688000115],[34.97629302300004,29.40143258400019],[34.93004075800019,29.231026060000147],[34.929413564000185,29.230493734000163],[34.93004075800019,29.231026060000147],[34.85395268100012,29.043920337000145],[34.83055509999997,28.788857214000075],[34.77973859000008,28.669366427000114],[34.80713644900004,28.519897726000124],[34.77828504800004,28.477511756000126],[34.652619148000156,28.17178445000019],[34.76128843000009,28.095423567000125],[34.86261584200008,28.116632857000127],[34.93038725300016,28.078457280000066],[34.991167604000054,28.112390871000116],[35.2208787400001,28.05229277900014],[35.246329554000056,27.966587388000164],[35.429322237000065,27.773743246000095],[35.539644307000174,27.530643768000175],[35.65021508500007,27.384186431000103],[35.76757661300013,27.30369710800005],[35.8164318260001,27.195109400000092],[35.80389396900017,27.112210154000024],[36.019683838000105,26.928017171000192],[36.11316681000011,26.72850036600005],[36.21076251699998,26.662660353000035],[36.45151102900007,26.24312661900018],[36.497587585000076,26.11425476100004],[36.557898182000145,26.068925520000164],[36.68472239300007,26.045833333000076],[36.70972239200006,25.9625],[36.67097632200017,25.844406113000048],[36.77916666700003,25.73333333300019],[36.81250000000017,25.766666667000038],[36.92464435700015,25.655779391000067],[37.00972239200007,25.504166667],[37.081127421000076,25.44779459600005],[37.092129517000046,25.350462850000042],[37.25175120000006,25.176751709000087],[37.242548551000084,25.068157306000046],[37.28632812500007,24.987500000000182],[37.27032826700014,24.86300455700001],[37.2200002030001,24.803333537000015],[37.22544677100012,24.70967284900007],[37.29417578600004,24.67758680100019],[37.45767253400015,24.43971612000007],[37.42583313000006,24.38750000000016],[37.49677882300011,24.288965148000102],[37.576161803,24.248443451000128],[37.68412182500009,24.303648694000174],[37.74830560800018,24.26829657400009],[37.855091154000036,24.154102859000034],[37.93517367600009,24.16247617000016],[38.03761189800019,24.0707214360001],[38.07916666700004,24.075000000000102],[38.22164661200014,23.960107673000095],[38.4,23.92083333300002],[38.4328704830001,23.81712951700007],[38.56250000000017,23.593750000000114],[38.66807007500012,23.51251509000008],[38.698647025000184,23.37914563100003],[38.81955108600016,23.177884928000026],[38.8198130290001,22.988520304000076],[38.91934065500004,22.98605196500006],[39.02501099500017,22.862485116000187],[39.020874114000094,22.786132673999987],[39.11799612900006,22.407623382000054],[39.112068190000116,22.355836673000056],[39.08781946100004,22.248389317000147],[39.04381997899998,22.21194947600003],[39.05235038600017,22.070811918000175],[38.97378485700011,21.97508741100006],[39.10310767400017,21.71719594300015],[39.14821811600012,21.533916657000134],[39.177715879000175,21.511973199000124],[39.16818306500011,21.35684014600008],[39.10610712700009,21.321647300000166],[39.19790723100016,21.183693631000097],[39.19840028600015,21.10511990500015],[39.251943970000184,21.05416666700006],[39.28210875000002,20.963798812000164],[39.42297533700008,20.825316924000163],[39.53753463000004,20.63648318700018],[39.685745239000084,20.477412924000134],[39.687088013000164,20.43791097100012],[39.78071131100006,20.362819490000106],[39.99455323100017,20.269649725000136],[40.07166646300004,20.31166585300008],[40.177166748000104,20.218833415000063],[40.244167074000075,20.194167074000063],[40.27084182600004,20.12009246800011],[40.37795108200004,20.078004197000155],[40.55241955900016,19.95245884000019],[40.54449971500014,19.905499268000142],[40.628772,19.787703040000167],[40.73732017100019,19.79408822700009],[40.80360209100007,19.704166667000038],[40.80515909900009,19.614382127000113],[40.80543182600019,19.61465485500014],[40.80515909900009,19.614382127000113],[40.862505800000065,19.54578541000012],[40.96071472200015,19.49083667300016],[40.95888657300014,19.35317532400012],[41.04972229000009,19.24972127300009],[41.07916666700015,19.115832520000083],[41.15037878700008,19.09747337000016],[41.13250020300012,18.9625],[41.19084827900008,18.863739571000053],[41.24336868700016,18.84584306100004],[41.21791787300003,18.707077670000103],[41.296412171000156,18.586932374000128],[41.354165164000165,18.582521566000025],[41.42070455300012,18.480654853999965],[41.4356437400001,18.456436615000143],[41.436522735000096,18.457432810000057],[41.436558229000184,18.45747303600001],[41.436832281000136,18.459329223000054],[41.43720025900018,18.459930135000036],[41.43553132500011,18.472590687000036],[41.43488637100006,18.473663468999973],[41.43405542100004,18.474382128],[41.43212678000009,18.476139801000045],[41.43197824600003,18.477654855000026],[41.43185424400008,18.478919666000138],[41.43214243800014,18.48114289500012],[41.43272727700014,18.481803197000033],[41.48717489300009,18.55608149800014],[41.410552655000174,18.62757760100004],[41.40452719700005,18.70473943200011],[41.50093452100015,18.744849195000143],[41.575308454000094,18.828216349000172],[41.526834995000115,18.88559309600015],[41.40461712900003,18.876330079000127],[41.38357299300003,18.94234031700006],[41.423592825000185,19.00592238500019],[41.30245414500018,19.077598352000052],[41.27097787300016,19.166901032000055],[41.285726755000155,19.239386389000117],[41.34786990800012,19.28606120300003],[41.34427262000003,19.359445882000045],[41.13769834600009,19.49947032400013],[41.215219906000186,19.538950562000025],[41.13221248200006,19.643361852000112],[40.99371688700006,19.67232002200018],[41.05244261600012,19.749391921000097],[40.941106547,19.946343449000153],[40.77095481600003,20.001741687000106],[40.80207135900008,20.15930291],[40.69523189900019,20.254720979000012],[40.62751294900005,20.206966978000082],[40.7007177640001,20.14842111300004],[40.68102261100006,20.09967785800012],[40.56474027100012,20.131513858000062],[40.54135789700007,20.220097080000073],[40.488297897000166,20.285657657000172],[40.39216037000011,20.225762809000173],[40.31293009800004,20.217668910000043],[40.24449169000013,20.290244199000085],[40.104467247000116,20.316684268000074],[40.008329721000166,20.43890213400016],[40.03647850100003,20.469479083000124],[39.91309151600012,20.59889152600016],[39.83655921000019,20.620655119000105],[39.81272717600007,20.838740715000142],[39.687541547000194,20.890811462000045],[39.606422698000074,20.95933980200016],[39.668385987000136,21.010241429000132],[39.698153547000175,21.09306899],[39.65444649600005,21.150625601000115],[39.71721917399998,21.392183502000137],[39.68547310600019,21.44326499500005],[39.75094375100019,21.62834547200015],[39.839437040000064,21.604513438000026],[39.807870837000166,21.75128279500018],[39.98593660199998,21.780870491000087],[40.13729250200009,21.863248390000138],[40.56743823700009,21.882403950000025],[40.60233193200014,21.771337677000076],[40.579129423000154,21.59273231900005],[40.51482789700003,21.512692657000173],[40.512489660000085,21.43750933399997],[40.55907454200019,21.350724756000147],[40.61249427100017,21.33633560300018],[40.70206674700012,21.204135263000182],[40.78624329000007,21.169511364000186],[40.862505800000065,21.186868280000112],[41.02753139500015,21.095856888000128],[41.07582498900007,20.893689292000147],[41.130413838000095,20.855378173000076],[41.12744607500014,20.762478206000083],[41.207575669000164,20.69583844200008],[41.220795703000135,20.640710001000116],[41.339236417000166,20.55032813500003],[41.57099170800018,20.552666372000147],[41.62540069200014,20.5025741340001],[41.683586828000045,20.354905455000164],[41.78179279600005,20.44411820100015],[41.928112492000025,20.36938453900018],[41.97172961200005,20.478202507000162],[41.9801832390001,20.478472304000036],[41.98198188300006,20.476943456000186],[42.13531629200014,20.522089423000182],[42.20915063200016,20.43818267600011],[42.24170609000015,20.23133860500019],[42.43739856700006,20.214521283000124],[42.54441789100008,20.117304570000158],[42.61204690800014,20.18916040100015],[42.60782009500008,20.339796844000148],[42.57544450100005,20.389079692000053],[42.45088839800002,20.434855184000128],[42.618701892000104,20.518761930999972],[42.67868667200014,20.580545356000073],[42.588035010000056,20.764906375000123],[42.513481212000045,20.7818136300001],[42.500351110000054,20.883257157000173],[42.59540945100014,21.02840773500003],[42.66456731599999,21.000258955000163],[42.73557889600005,21.016885003000027],[42.795238809000125,20.928313191000086],[42.91628755700009,20.98308190400013],[42.900819217000105,21.078499973000135],[42.80108440300006,21.212049297000192],[42.73120708000016,21.369790384000055],[42.73624328300008,21.437059673000192],[42.60925901000002,21.456934690000026],[42.57868206100005,21.667106252000053],[42.615644197000165,21.711982422000176],[42.53326629700007,21.891487102000156],[42.34701670100014,22.04104435900001],[42.32938998900005,22.180169479000142],[42.24872080200004,22.17513327600011],[42.18118171600008,22.10849351200011],[42.28647341700008,21.945300246000045],[42.276869582000074,21.860190695000142],[42.216165344000046,21.77376584700005],[42.168411343000116,21.78698588100019],[42.110584936000066,21.67412096400011],[42.152043682000055,21.569619742000043],[42.125423749000106,21.520336893999968],[42.03225398500007,21.56863048800011],[41.9556317470001,21.541740759],[41.96651354400012,21.442905266000082],[41.901042899000174,21.22922634800011],[41.799779236,21.146758516000034],[41.68403648900005,21.290470179000124],[41.741053507000174,21.34200133200011],[41.732240151000155,21.525283165000076],[41.79222493100019,21.58976455600009],[41.84429567800004,21.853715577000173],[41.81156035500004,21.97197642600014],[41.765335202000074,22.03933564700003],[41.67099631900004,22.1092129700001],[41.63385431900019,22.263536633],[41.553454928000065,22.198155920000033],[41.594823742000074,21.99463934100004],[41.4639723840001,21.880785170000024],[41.384562248000066,21.861809475000143],[41.34670079,21.79984618600014],[41.36082014600015,21.627626014000157],[41.39571384100003,21.45162869000012],[41.35668326400014,21.380402384000035],[41.25308511000003,21.401028856000153],[41.11203466100005,21.479390217000173],[41.049345573000096,21.575662745000102],[40.92844518800001,21.620440665000103],[40.86799499500012,21.75253552999999],[40.77843915500017,21.87119701900008],[40.70759876900007,22.081696144000148],[40.792088884,22.167309174000025],[40.74676305300011,22.37829012600008],[40.83777444400016,22.47038070400015],[40.72050284900013,22.554647179000085],[40.76726759500002,22.641701553000075],[40.80440959600003,22.782265589000076],[40.78300573100017,22.832267895000143],[40.686058815000024,22.853401963000124],[40.77698027300005,23.016089321000038],[40.675536747000024,23.10386315300002],[40.58020861,23.12886430599997],[40.510870880000084,23.09603905100016],[40.45628203200016,23.1385769850001],[40.52202247300005,23.235074239000085],[40.29134636900005,23.318711190000045],[40.33946009800013,23.37446915600009],[40.30762409800013,23.45783631000012],[40.34908284400012,23.490032039000084],[40.442882133000126,23.45450881900007],[40.543606202000035,23.479330107000123],[40.63623637400019,23.46521075100003],[40.730305459000135,23.350457258000176],[40.88756183400005,23.384088040000165],[40.83705498600017,23.18911888300005],[40.95783393700009,23.196043662000022],[41.08337929500016,23.22904878200012],[41.158292821000146,23.211871730000098],[41.19588448200017,23.114744950000045],[41.13589970200013,23.035604609000075],[41.23464526300012,22.962040066000043],[41.16656658400018,22.89108355700006],[41.211802483000156,22.811313691000066],[41.077084040000045,22.80214060600008],[41.02735153100019,22.673357689000056],[41.047046684,22.526048738000043],[41.10478315900008,22.468402195000124],[41.29292133100017,22.436656127000163],[41.28698580600013,22.35301917600009],[41.39625343400019,22.259129955000105],[41.51559347,22.332334769000056],[41.42044519700016,22.419209279000086],[41.47881119800007,22.561571959],[41.55876092900007,22.653033011000105],[41.64698442100013,22.56822694200008],[41.70723899800004,22.62650301100018],[41.69689679400017,22.69395216400011],[41.77639686300006,22.810234505000153],[41.75580238800006,23.006916236],[41.87775045800004,23.09729810200014],[41.81542744000018,23.24118962900019],[41.66371181100004,23.309987766000177],[41.52782425000004,23.473844243000087],[41.469642232000126,23.517392500000028],[41.44823425000004,23.609551939000085],[41.466760283000156,23.70667872000007],[41.351107469000056,23.71234444900017],[41.34706051800015,23.58491051500016],[41.16269949900004,23.539404820000073],[40.96224061500004,23.602537227000028],[40.86133668100007,23.652539533000095],[40.86133668100007,23.71603167000012],[40.78129701900019,23.78995594200012],[40.51069101600012,23.89346790900015],[40.45790081100006,23.767832619000103],[40.36859813200016,23.80641353500016],[40.45178542200006,23.903630248000127],[40.38739396300019,24.022340758000098],[40.28496118200013,24.090419437000037],[40.171556672000065,24.038348691000067],[40.11247121400004,24.05165865700019],[40.052306569000166,24.138623099000142],[40.0820741280001,24.195550184000012],[39.98359836400016,24.41237673100011],[40.060400467000136,24.435129578000044],[40.134234807000155,24.352032221000172],[40.23037233399998,24.315789542],[40.274888775000136,24.38305883100014],[40.429032574000075,24.381619916000034],[40.59333871200016,24.449698595000143],[40.57355362700014,24.591881410000042],[40.45520284500009,24.609957783000084],[40.331546064000065,24.545296528000108],[40.27875586000005,24.606630292000148],[40.147814570000094,24.575154020000127],[40.06372795900012,24.495833817000175],[39.89582453300011,24.520834970000124],[39.83745853200014,24.678396192000093],[39.793841413,24.694404123000083],[40.037557687000174,24.93326405900001],[40.16400236700002,24.871210838000025],[40.13846162200019,24.76356198900004],[40.19556857100008,24.73217564900017],[40.26652508100017,24.77120622600006],[40.28909806300004,24.856551888000183],[40.46599471000013,24.798725481000133],[40.56572952500011,24.66031981800012],[40.60296145800004,24.741438666000136],[40.55295915200014,24.806459650000136],[40.35951497999997,24.932184872000164],[40.21346507900006,25.0559315860001],[40.2542043680001,25.07490728100015],[40.354478776,25.01150507700015],[40.52840765999997,24.944325720000165],[40.60053328800018,24.93901972000009],[40.546573965,25.209985452000126],[40.46185782800018,25.358373590000042],[40.415902472000084,25.50433355800004],[40.495582405000164,25.516204609000056],[40.500888404000136,25.59759325400006],[40.62076803400004,25.66675112000007],[40.65278389900004,25.740405595000027],[40.757914646000074,25.793465596000033],[40.88390966500009,25.957771734000175],[40.76870651100006,25.953095259],[40.621577424,25.983492344000013],[40.420848743000136,26.087364041000114],[40.31239050400018,26.175587533],[40.43613721800011,26.204455771000084],[40.515727218999984,26.322177027000123],[40.515637287,26.496195843000066],[40.463836336999975,26.617604319000122],[40.40007440400018,26.660052319999977],[40.38802348800016,26.773187033],[40.52490030400003,26.823099407000143],[40.53587203300003,26.89279686500015],[40.41446355700015,26.870133950000024],[40.275338436000084,26.924902662000136],[40.239815215000135,26.850528729000132],[40.12623084100011,26.819142390000025],[39.94474765200016,26.700611744000184],[39.88260449900014,26.704658693000113],[39.7637141240001,26.634511573000168],[39.740151887000025,26.486932826000043],[39.86416839700007,26.268217704000108],[39.91902704100016,26.26686872100015],[40.0004156870001,26.18709885600009],[40.089628434000076,26.156971567000028],[40.039356331000135,26.083496956000033],[39.90337883800015,26.070546718000173],[39.79186290400003,26.03619261600005],[39.68061676700012,26.172619771000143],[39.634121817000164,26.276041805999967],[39.45974327300013,26.29177994200012],[39.37871435600016,26.34852716300003],[39.1151230640001,26.35590160400011],[38.95099679100019,26.318399874000136],[38.879950349000126,26.246454111000162],[38.74721041500004,26.28935177200009],[38.64621655000019,26.274153230000024],[38.50556258200004,26.327303163000067],[38.50889007300009,26.42595879100014],[38.4585280390001,26.436750656000186],[38.36778644400016,26.365524349000054],[38.30420437600003,26.43962848600006],[38.315266037000185,26.51750977500018],[38.21157420500015,26.570839573000057],[38.09789989800004,26.539633098000024],[38.04169227000011,26.574976454000137]],[[39.494187307,23.63419336300018],[39.526652833000014,23.656676414000174],[39.602465681000126,23.66252200800011],[39.57413703700013,23.550016820000053],[39.47916862900013,23.57915485400008],[39.494187307,23.63419336300018]],[[37.27421083600012,26.52002787700019],[37.249209683000174,26.387467807],[37.18580747800013,26.449161300000128],[37.27421083600012,26.52002787700019]],[[35.354158268000106,28.757541128000128],[35.49580149000019,28.58001495600007],[35.350021386000094,28.511666480000088],[35.31413843800016,28.631636041000036],[35.23913497800004,28.64251783800006],[35.292464775000155,28.730021873],[35.354158268000106,28.757541128000128]],[[38.91916079100008,24.45581398500019],[38.98580055400015,24.42748534000009],[38.98499116400012,24.426675950000117],[38.97752679100006,24.375864255000124],[38.964126893000184,24.30751577900014],[38.91916079100008,24.45581398500019]],[[42.26113144600015,20.408774845000096],[42.245483242000034,20.456348981000133],[42.31742900600011,20.521280033000153],[42.332987278000076,20.406166811000105],[42.26113144600015,20.408774845000096]],[[42.685611452000046,21.052509566000026],[42.597927552000044,21.080298617000096],[42.576703552000026,21.142082041000037],[42.70602606199998,21.23165451699998],[42.634350095000116,21.31088479000016],[42.67769741800015,21.355850892000092],[42.75404986000018,21.102691736000054],[42.685611452000046,21.052509566000026]]],[[[35.69167383200016,32.598995247],[35.66829145800011,32.66410616400009],[35.57251366100019,32.60744887500016],[35.57722873200015,32.592607042],[35.69167383200016,32.598995247]]]]},"properties":{"objectid":592,"eco_name":"Red Sea-Arabian Desert shrublands","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Palearctic","eco_biome_":"PA13","nnh":2,"eco_id":837,"shape_leng":200.509957364,"shape_area":27.7602682447,"nnh_name":"Nature Could Reach Half Protected","color":"#CC8245","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":315393.20857172454,"percentage":1.195478251580806}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[36.18402475400006,22.651737095000158],[35.95196951500009,22.68181445000016],[35.843669459000125,22.760920338000062],[35.66979944999997,22.94609066000004],[35.660430494000025,23.063134383000033],[35.57592045800004,23.211976867000033],[35.53480957000011,23.422326092000105],[35.48738057100019,23.491333630000042],[35.5169904820001,23.75892907400015],[35.474838562000116,23.802535758000033],[35.51034145400007,23.977069111],[35.694381561000114,23.91004221600008],[35.72216052900012,23.991247267000176],[35.60792960500004,24.01915581999998],[35.584579467000026,24.086373487000117],[35.51169949000018,24.110292253000125],[35.31444950300005,24.360719045000053],[35.22851957300003,24.407417478000013],[35.13835946400002,24.51782122400016],[35.165821596000114,24.566278683],[35.10268055100016,24.63910535200006],[35.076778459000025,24.744811041000048],[34.997619598000085,24.82397644100007],[34.94787954000003,25.000728650000156],[34.81314849300014,25.198488424000118],[34.70117951000009,25.396720099000163],[34.63853048300018,25.577041324000106],[34.573390523000114,25.691444076000153],[34.41881146400004,25.867877941000188],[34.30651860400013,26.085846987000025],[34.223659468000164,26.20295240000013],[34.18103045000015,26.32819697700012],[34.113391509,26.403362532000017],[34.017700517000094,26.610964001000127],[33.9353595500001,26.674180147000186],[33.95148851100015,26.845482779000122],[33.90695948200005,27.049903819],[33.83275952300005,27.108792053000116],[33.838058562000185,27.25748466900012],[33.728050609000036,27.3090135920001],[33.62631945000015,27.492654385000094],[33.50212059900019,27.658218598000133],[33.546798490000185,27.700416619000066],[33.47257958700004,27.811041984000155],[33.58399955600015,27.805221422000102],[33.56515150500019,27.88123908200015],[33.48814059100005,27.982873681000058],[33.334308527000076,28.085389554000074],[33.12800960600009,28.29025097900012],[33.11272051200001,28.35041745300009],[32.92744860000016,28.550050583000143],[32.86613045200011,28.56938076],[32.813381459000084,28.761363056000164],[32.67819946500009,28.881646049000096],[32.62009845900013,28.9790241500001],[32.6667405660001,29.09501879300018],[32.59061846800017,29.345689834000098],[32.36186470100017,29.553449580000063],[32.29200977600016,29.579039981000108],[32.242159866000065,29.44488002600019],[32.3854899320001,29.115510056000176],[32.41643001800003,28.970290063000164],[32.359939930000166,28.538880262000077],[32.36376994900007,28.419069983000156],[32.43351997300016,28.29408014100005],[32.66233994500004,28.04371004400008],[32.863880167,27.77485996300004],[32.971689932000174,27.579069962000062],[33.155390002,27.174870031000125],[33.21946003800019,27.05739993800006],[33.423409973000105,26.78159002700005],[33.50846000500019,26.63633007800007],[33.75143004600011,26.107989953000185],[33.880300072000125,25.788549798000076],[34.04370011200007,25.48974991900019],[34.11857002900001,25.375100018000182],[34.35093664200019,24.945790135000095],[34.400869971000134,24.84453993],[34.61990992200003,24.463539959000173],[34.71286993900003,24.283369968999978],[34.96959998900013,23.948920063000116],[35.04350003600018,23.783159948000048],[35.16110020800011,23.447879932000035],[35.25369991200006,23.221200010000132],[35.37221996400007,22.967160073000116],[35.444640211000035,22.892769987000122],[35.56107002700014,22.72483004000003],[35.775410067999985,22.475650015000156],[35.98581007900003,22.19634997999998],[36.111189982000155,21.989829977000056],[36.16984001100013,21.79830001099998],[36.22881004400011,21.553120039000078],[36.30040000499997,21.395510001000105],[36.64473008800013,21.06784003100006],[36.717760068000075,20.979340008000122],[36.83993975100009,20.775920069000165],[36.847849913000175,20.663190018000023],[36.82337996900003,20.570890076000182],[36.69680999500008,20.38517000100012],[36.66608007800005,20.30446995],[36.654800100000045,20.09464894200005],[36.74468674700017,19.90629060000009],[36.814167008000084,19.865363871000113],[37.03299000200002,19.842719940000165],[37.259164537000174,19.741532639000127],[37.26335950700013,19.844221710000113],[37.17977952700005,20.036440711000182],[37.21078854600006,20.153792887],[37.186920574,20.37141156900003],[37.23279154500011,20.56224085000008],[37.17560953100019,20.687032804000125],[37.16740046200016,20.87374221200014],[37.087390503000165,21.05447213800005],[37.155940557000065,21.217353304000028],[37.24029150400008,21.021304276000023],[37.31312957200009,21.0686015120001],[37.02220947100005,21.400584222000134],[36.91374948700019,21.59012386300003],[36.86275851500005,21.97506209600016],[36.88058045300005,22.061227391000045],[36.64751861700006,22.21709910600009],[36.572151561000055,22.290806210000085],[36.434440580000114,22.359232380000094],[36.42444951900012,22.421889118000024],[36.29520057200011,22.504923771],[36.25345246900008,22.600215963000153],[36.253577056000154,22.607499285000074],[36.18348171700018,22.64870638100001],[36.18402475400006,22.651737095000158]],[[36.39863991700014,21.757260076000136],[36.226150030000156,21.979849997000088],[36.308139955,22.00974998100014],[36.35809002100001,21.960800060000167],[36.410219918,21.81755008300007],[36.39863991700014,21.757260076000136]],[[36.55223001100018,21.812310144000037],[36.46252002700004,21.82048996800006],[36.45080994600005,21.921870076000175],[36.51877002400005,21.944800021000162],[36.55223001100018,21.812310144000037]],[[36.38420980000018,21.534850047000077],[36.31800006500015,21.602969950000045],[36.390230035000116,21.641279992000136],[36.445599931,21.589930039000023],[36.38420980000018,21.534850047000077]]]},"properties":{"objectid":593,"eco_name":"Red Sea coastal desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Palearctic","eco_biome_":"PA13","nnh":2,"eco_id":836,"shape_leng":36.8328476402,"shape_area":5.25270199575,"nnh_name":"Nature Could Reach Half Protected","color":"#DE6C51","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":59085.301895140474,"percentage":0.2239591452320802}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[66.5662385620002,30.97583170200005],[66.42881759400018,30.952438648000054],[66.40816458500012,31.025794047000147],[66.43051157700012,31.13421631200015],[66.48286460900016,31.238078486000063],[66.62623555400012,31.420808334000128],[66.77649659100018,31.512592186000063],[66.95965559299998,31.585112746999982],[66.99384353200014,31.671924789000172],[66.8105465640001,31.61515063800016],[66.7560345220001,31.678787555999975],[67.04155751600007,31.83842542800005],[67.07854450700017,31.90251027500011],[66.93994856500012,31.934689240000125],[66.89914663400003,31.916179818000046],[66.6510315700001,31.68601929400006],[66.59961664100013,31.782808316000114],[66.36381560000018,31.729650956000114],[66.11141151700019,31.651022669000156],[66.03746049900013,31.69759084700013],[66.43499757100005,31.880547845000137],[66.52582555100014,31.90100119700014],[66.60107458900012,31.96050818400016],[66.32743059600006,31.93773690000006],[66.00907853700011,31.82601283600013],[65.80371855600004,31.77347841900007],[65.74813061300011,31.831312545000117],[65.94851660400002,31.968016189000082],[65.84441353500017,31.982470446000093],[65.66917459300015,31.947723770000152],[65.48228463900017,31.87638421800017],[65.44428259900019,31.83514827200014],[65.28727748200009,31.754367177000063],[65.22105458000016,31.752761037000084],[65.17411055800017,31.85701179600011],[65.0902256440001,31.83845728000017],[64.94803654700002,31.856071682000106],[64.90657848100011,31.944939804000057],[64.92166154800009,32.084886239000184],[64.97287749100013,32.222981614000105],[65.06885547900004,32.31826172500001],[65.18770550200009,32.37355093800011],[65.25047254600008,32.505260812000074],[65.35202064400005,32.54075884200017],[65.52911349400011,32.53123398300016],[65.67338549400012,32.569615891000126],[65.7773286370001,32.64395029700012],[65.8154605970002,32.74248945900018],[65.78472851700008,32.77335632000012],[65.6443405230001,32.71804514700017],[65.53985557400006,32.721017202000155],[65.49121052800018,32.78075318200018],[65.50079355800011,32.84871717400017],[65.6319195480001,32.97931326000014],[65.57931556200003,33.100369400000034],[65.51191751700009,33.04998594800003],[65.39961962800004,32.89774678100014],[65.138099555,32.64519853000007],[65.08124560800013,32.611282332000144],[64.67686454500017,32.55676827800016],[64.58782962200019,32.62380221300015],[64.50160951100008,32.59506703700009],[64.48017162000008,32.47760455499997],[64.44167353800009,32.45495346700005],[64.28180650500019,32.52866694100004],[64.08558648700006,32.34354489800006],[64.00162563300006,32.36938496500011],[63.90965251800003,32.314481822000175],[63.79318262000015,32.371071068000106],[63.65396457300005,32.364537207000126],[63.55914362300018,32.39107448000016],[63.509624512000016,32.45791328500019],[63.60069254900003,32.50559994400004],[63.78721654900011,32.65282321199999],[63.676132528000096,32.65105312100019],[63.22006663800016,32.40399099300015],[63.16743063300004,32.51072246000007],[63.06784456999998,32.47392389300012],[62.77596256200019,32.49718501600012],[62.72156551900002,32.53075302900015],[62.50310562900006,32.51170666300004],[62.37910056800018,32.54200556700005],[62.24184053300013,32.53417100200005],[62.0624694820001,32.562166056000024],[62.12832257400015,32.63965943300019],[62.23730458300014,32.65847311700003],[62.40673855300014,32.72577007700005],[62.49020755600003,32.71851419900008],[62.593883485000106,32.75129716300006],[62.65167955700002,32.80676038399997],[62.832286604000046,32.856193831000155],[63.05910459199998,32.9531449590001],[63.02344847900008,33.00946011600013],[62.80321162600006,32.99029573300015],[62.56839361400006,33.06038068100008],[62.490039583000055,33.12813562800005],[62.41410859300015,33.00126647100012],[62.29231249900016,32.984448014000066],[62.01126862600012,33.08005619300019],[61.94808148100009,33.08295599600007],[61.753154623,32.91654102000007],[61.73665652300008,32.861000685000135],[61.63492553200018,32.739551602000176],[61.55619062700015,32.79582485000003],[61.580047535,32.87907408000012],[61.66586648900005,32.96937249100017],[61.67691450799998,33.054620972],[61.497672538000074,32.97950000900005],[61.43556950800013,32.99303778900003],[61.254226530000096,32.88531407200003],[61.20190048800009,32.77190340100009],[60.984939618,32.62405417300005],[60.88005853900006,32.6200452760001],[60.61119860100018,32.49276406500019],[60.473827590000155,32.406412860000046],[60.478774589000125,32.31720962900005],[60.41204055800006,32.27779305900009],[60.35822253700019,32.114045371000145],[60.31623054300013,31.680545409000047],[60.25513451600011,31.62189454999998],[60.173385479000046,31.72305121300019],[60.158981513000015,31.84466022300012],[60.08366055800002,31.86013556300003],[60.06042055800003,31.600348197000073],[60.00913253100009,31.616300803000172],[60.033893511000144,31.43772586400013],[60.099170599,31.197209164000185],[60.04437256600005,31.089865651000082],[60.03164263400015,30.84891108000005],[60.00289958000013,30.617375421000133],[59.97487653000019,30.5174411750001],[59.9764675830001,30.33395360300011],[60.04074856600005,30.20880927400009],[60.024204534000035,30.194147816000054],[60.095996540000044,30.163953854000056],[60.12195261200003,30.07983508500007],[60.115199480000115,29.827485485000068],[60.151035637,29.76140792400014],[60.2431485620001,29.77603635700018],[60.40124852300016,29.688587626000185],[60.4690165450001,29.7094298990001],[60.433490519000145,29.80563336000006],[60.45380355900005,29.87245271900008],[60.54867563800019,29.885249371000157],[60.71351951100013,29.778729295000062],[60.758975578,29.63380266900009],[60.752433502000144,29.438942195000152],[60.78468656300009,29.314079163000088],[60.83277555300009,29.27349784300003],[60.96736964000007,29.4491897420001],[61.051471477000064,29.035197150000045],[61.12898647900016,28.94746444000009],[61.294013580000126,28.621763464000026],[61.315528585000095,28.500255372000083],[61.3019296170001,28.295711789000052],[61.33527752200018,28.11215045600005],[61.41833162100016,27.924383084000112],[61.45716062000008,27.965090468000085],[61.46631952600012,28.249473690000116],[61.53216960100002,28.339211016000036],[61.58034861300007,28.271891761],[61.60138350200009,27.97766701000012],[61.66661063400011,27.83479495600011],[61.72031063800006,27.81045491500015],[61.84205660900011,27.840516778000165],[62.068996637000055,27.745756848000156],[62.12162359000013,27.682446322000146],[62.276313625000114,27.428124460000163],[62.312087588000054,27.284314470000027],[62.479373611000085,27.201226005000024],[62.60277953400015,27.21704651200008],[62.854865607000136,27.365697051000097],[62.94614453300005,27.369665882000106],[63.10092157200012,27.43316298900004],[63.251731624,27.409351176000087],[63.331104559000096,27.44109880800005],[63.7240066060001,27.47284727700014],[63.79941154800002,27.38648098500005],[63.912696490000144,27.260234604000175],[64.02497057400012,27.181454940000094],[64.07422649300014,27.292937102000053],[64.21673561100016,27.45336807000018],[64.44943249800008,27.496808289000057],[64.58943961799997,27.557918901000164],[64.79412854400005,27.54952124000016],[64.92278254300004,27.603002811000067],[64.99992354500006,27.664787161000163],[65.00560748200007,27.771704706000037],[65.07312052700013,27.848070550000045],[65.37483953700007,28.02206209600007],[65.43285353900012,28.070620137000105],[65.46943652300007,28.18758540500005],[65.55782352400007,28.303091552000183],[65.58400758400012,28.400296649999973],[65.423019555,28.413485910000077],[65.18814856900002,28.35894922500006],[65.21737660100007,28.44763546000013],[65.32498950899998,28.585770063000098],[65.308776561,28.730104089000065],[65.01763148900011,28.66524592800016],[64.87944056000009,28.540021803000116],[64.68303664300015,28.536381040000038],[64.56649063800012,28.468304731000103],[64.35178349400013,28.37333776800017],[64.09587862500001,28.381987389000017],[63.911369635000085,28.42004676100015],[63.864730545999976,28.4805644380001],[63.90761957100011,28.57456060900006],[64.05189559399997,28.671922449000192],[64.26544150900008,28.75200147600009],[64.36925557100011,28.84791039700019],[64.50303661300018,28.804961356999968],[64.712531555,28.884187106000127],[64.91092650900015,28.975303423000184],[65.00164049400013,28.963513773000102],[65.34652748000008,29.08784991900012],[65.31810763100009,29.217209005000086],[65.4446795660001,29.29496373],[65.49632248300009,29.358850428000153],[65.6931225290001,29.428145632999986],[65.8062205540001,29.495604028000116],[65.89100652300004,29.65452809800007],[65.9131245210001,29.81858574800009],[66.0226436420001,30.086294850000115],[66.13825255000012,30.335753700000055],[66.25386062000007,30.536536324000053],[66.34255959600006,30.49403688900003],[66.4413684880002,30.59115347500017],[66.39659856400016,30.68418891300007],[66.52007254800009,30.820424344000116],[66.5662385620002,30.97583170200005]],[[66.14120448900002,31.277779370000133],[66.03004452700009,31.320404701000086],[66.06064551400004,31.39265016800016],[66.20539058900005,31.48549500100006],[66.32170055900013,31.5176959260001],[66.4085766390001,31.43905674299998],[66.38275953900006,31.357106540000018],[66.29222157400011,31.305161372000157],[66.14120448900002,31.277779370000133]]]},"properties":{"objectid":595,"eco_name":"Registan-North Pakistan sandy desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Palearctic","eco_biome_":"PA13","nnh":3,"eco_id":838,"shape_leng":40.0703296877,"shape_area":25.9865051733,"nnh_name":"Nature Could Recover","color":"#F6CE5C","color_bio":"#CC6767","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":277915.731641266,"percentage":1.0534222168380802}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[24.892896652,-33.981910705999894],[24.880788803000144,-33.97872924799998],[24.875875473000065,-33.97913742099985],[24.884754181000176,-33.985382079999965],[24.892896652,-33.981910705999894]]],[[[21.940231323000148,-34.050651549999884],[21.74969291700006,-33.96952056899994],[21.7973728180001,-34.071136474999946],[21.79596138000005,-34.14345169099994],[21.881441116000076,-34.17904663099995],[21.940231323000148,-34.050651549999884]]],[[[19.167972565000184,-34.07712554899996],[19.285615921000158,-34.087318419999974],[19.303066254000044,-33.96437072799989],[19.167972565000184,-34.07712554899996]]],[[[21.650623322000115,-33.91616821299988],[21.495594025000116,-33.88048553499988],[21.353994370000123,-33.92144775399993],[21.650623322000115,-33.91616821299988]]],[[[21.24684333800002,-33.92138671899994],[21.08564758300014,-33.87449645999993],[20.94327163700018,-33.87715530399993],[21.051443100000085,-33.91545867899998],[21.24684333800002,-33.92138671899994]]],[[[24.799270630000024,-33.86732482899998],[24.780401230000052,-33.86438369799998],[24.840824127000133,-33.92236328099989],[24.8412666320001,-33.905826568999885],[24.836753844999976,-33.90590667699996],[24.827974319000077,-33.89627838099989],[24.821527481000146,-33.89009475699993],[24.81456565899998,-33.88309097299998],[24.799270630000024,-33.86732482899998]]],[[[21.63329315200008,-33.985713958999895],[21.50247383100003,-33.99037933299991],[21.44201088000011,-34.112869262999936],[21.27546882600012,-34.08455657999991],[21.133962631000088,-34.03551864599996],[21.055694580000136,-34.07222366299982],[20.81480217,-34.04996871899988],[20.766597748000038,-34.00402069099988],[20.620729446000098,-34.00278091399997],[20.519330978000085,-34.033863067999846],[20.23266601600011,-33.956340789999956],[20.168504715000154,-33.87217712399996],[20.088138580000134,-33.826858520999906],[20.017101288000106,-33.877376555999945],[20.024538040000095,-33.8668174739999],[20.051275253000142,-33.89285278299997],[20.013376236000056,-33.898391723999964],[20.015420914000174,-33.896717071999944],[20.016036987000064,-33.89508056599993],[20.011089325000114,-33.89192199699988],[20.009622574,-33.88745880099998],[19.896327972000165,-33.88200759899996],[19.82582473800005,-33.92343902599998],[19.821779251000123,-33.92950820899989],[19.81643104600016,-33.94168472299992],[19.809682846000157,-33.9469604489999],[19.807373047000056,-33.956008910999856],[19.81804466200009,-33.97377777099996],[19.810480118000044,-33.957233428999984],[19.82552528400015,-33.94723129299996],[19.835510254000155,-33.9725570679999],[19.994974136000167,-34.04531097399996],[20.021062851000067,-34.12154388399995],[19.7076969150001,-34.11915969799992],[19.58399772600012,-34.04954528799993],[19.378688812000064,-34.06895828199998],[19.227891922000026,-34.14578628499993],[19.194906235000076,-34.28451156599988],[19.35713386500015,-34.291389464999895],[19.525606155,-34.3786010739999],[19.76139068600014,-34.398029326999904],[19.89287376400017,-34.452430724999886],[19.936048508000056,-34.50093078599991],[20.061759949000077,-34.54511642499995],[20.048618317000034,-34.64038085899995],[20.210697174000188,-34.634471892999954],[20.078653336000116,-34.509494780999944],[20.182771683,-34.48376846299993],[20.253051758000026,-34.41186141999998],[20.42304992700008,-34.38059997599993],[20.527843475000168,-34.337020873999904],[20.6871623990001,-34.350528716999975],[20.93350791900002,-34.27900695799997],[21.082666397000025,-34.21102142299992],[21.16002655,-34.212158202999944],[21.33474922200014,-34.166858672999865],[21.527759552000077,-34.202831267999954],[21.64499855000014,-34.20027542099996],[21.679683685000043,-34.13642120399987],[21.613548279000042,-34.06015777599998],[21.63329315200008,-33.985713958999895]],[[19.587980270000116,-34.151393889999895],[19.583246231000032,-34.22888183599997],[19.43087768600003,-34.22402572599998],[19.4801712040001,-34.16359710699993],[19.587980270000116,-34.151393889999895]]],[[[24.86187553400015,-34.03425979599996],[24.61787414600019,-33.98593521099997],[24.585319519000052,-34.018672942999956],[24.68908500700013,-34.09460449199992],[24.806438446000186,-34.131961822999926],[24.883157730000164,-34.08523559599996],[24.86187553400015,-34.03425979599996]]],[[[22.69707679700008,-33.74362564099988],[22.668048859000123,-33.7340164179999],[22.661705017000145,-33.73928451499995],[22.657447815000126,-33.75077056899988],[22.69707679700008,-33.74362564099988]]],[[[22.02967834499998,-33.73684692399996],[22.028450012000064,-33.725040435999915],[21.942792892000057,-33.76021194499998],[21.74225044300016,-33.74095916699997],[21.873550415000125,-33.766708373999904],[21.863002777000133,-33.81042480499991],[22.02967834499998,-33.73684692399996]]],[[[22.614183426000068,-33.72750854499992],[22.496156693000103,-33.703022002999944],[22.42610549900013,-33.77519607499988],[22.347290039000086,-33.79757308999996],[22.633857727000134,-33.76929092399996],[22.647777557000097,-33.75068664599996],[22.651163101000066,-33.738937377999946],[22.614183426000068,-33.72750854499992]]],[[[24.230182648000095,-33.67849731399997],[24.2268943790001,-33.67734527599998],[24.242624283000055,-33.68289565999993],[24.236047745000178,-33.68054962199989],[24.230182648000095,-33.67849731399997]]],[[[21.502559662000124,-33.728500365999935],[21.40810203600006,-33.71520233199993],[21.33304786700012,-33.655792235999854],[21.416349411000056,-33.734176635999916],[21.502559662000124,-33.728500365999935]]],[[[20.335912704000123,-33.65732574499998],[20.310825348000037,-33.608882903999984],[20.199056625000082,-33.73662185699993],[20.128797531000146,-33.72749328599991],[20.176692963000107,-33.81724548299991],[20.245164870999986,-33.88346862799989],[20.391204834000177,-33.93310546899994],[20.476699828999983,-33.89953613299997],[20.53278923000005,-33.93957138099995],[20.66874694800009,-33.93301773099995],[20.767572403000088,-33.89655303999996],[20.870609283000135,-33.80113983199993],[20.77602767899998,-33.81748199499992],[20.55946922300018,-33.7567863459999],[20.471195221000187,-33.72077941899988],[20.49154281600005,-33.706321715999934],[20.41114425699999,-33.67787933299991],[20.382501602000048,-33.67013549799992],[20.367595673000153,-33.665981292999845],[20.34824180600009,-33.660217284999874],[20.339183807000154,-33.657939910999914],[20.335912704000123,-33.65732574499998]],[[20.483644485000127,-33.74792480499997],[20.472345352000048,-33.848407744999975],[20.350103378000085,-33.78934478799994],[20.483644485000127,-33.74792480499997]]],[[[23.85732078600006,-33.58700942999991],[23.85606765700004,-33.58581542999997],[23.865892410000185,-33.58809280399993],[23.867456436000055,-33.586170196999944],[23.85732078600006,-33.58700942999991]]],[[[19.426073074000044,-33.803829192999956],[19.371351242000117,-33.82860183699995],[19.400917053000114,-33.92023467999991],[19.409496307000097,-33.86807632399996],[19.457935333000137,-33.86964797999997],[19.42473411600014,-33.91947555499996],[19.427497863999974,-33.91891860999982],[19.46070480300017,-33.922744750999925],[19.498630524000134,-33.92229461699998],[19.472663879000038,-33.86904907199988],[19.563508987000148,-33.869850158999895],[19.566497803000175,-33.868961333999835],[19.601074219,-33.86543273899997],[19.60234642,-33.86372756999987],[19.608978271000126,-33.86133956899988],[19.6120224,-33.85768890399993],[19.613922119000108,-33.85591506999998],[19.62467575100004,-33.84537506099997],[19.62446594200003,-33.829601287999935],[19.62431144700014,-33.82829284699994],[19.621912003000034,-33.82578659099988],[19.62249565100018,-33.82484817499994],[19.627784729000098,-33.827583312999934],[19.62766075100012,-33.82876205399987],[19.630865097000026,-33.84561157199994],[19.635656357000187,-33.84696960399992],[19.629724502999977,-33.92558669999988],[19.51104545600009,-33.92110824599996],[19.58866119400011,-33.98754882799983],[19.71590995800011,-33.93676376299993],[19.744827271000077,-33.85399627699991],[19.775678635000077,-33.846115111999836],[19.778207779000127,-33.84217452999991],[19.819160461000138,-33.83156204199997],[19.81801986700009,-33.82749557499989],[19.808595657000126,-33.82431411699997],[19.987979889000144,-33.865173339999956],[20.078893661,-33.82268142699991],[20.046831131000147,-33.772857665999936],[19.881071090999967,-33.76791000399993],[19.78285217300015,-33.70026779199998],[19.567094803000145,-33.58819580099993],[19.464542389000087,-33.583786010999916],[19.413770676000183,-33.654754638999975],[19.50519752499997,-33.723789214999954],[19.509693146000075,-33.72186660799997],[19.51361846900005,-33.7194862369999],[19.69178390500008,-33.67655944799998],[19.73718452500009,-33.77932739299996],[19.687379837000037,-33.797420501999966],[19.67958259600016,-33.78631591799996],[19.69171714800018,-33.78564071699998],[19.642284393000068,-33.76941680899989],[19.613218307000125,-33.76122283899997],[19.53810882600004,-33.75908660899995],[19.468332291000138,-33.775554656999816],[19.426073074000044,-33.803829192999956]],[[19.77286529500003,-33.786201476999906],[19.772586823000097,-33.78498840299994],[19.7149086,-33.838130950999926],[19.704856873000097,-33.823017119999975],[19.77286529500003,-33.786201476999906]]],[[[19.97028732300015,-33.635761260999914],[19.841762543000073,-33.625267028999815],[19.69198417700011,-33.58248519899996],[19.72158241300002,-33.59280395499991],[19.831340790000127,-33.68700027499989],[19.92591667199997,-33.67176055899989],[19.97028732300015,-33.635761260999914]]],[[[20.736322403000145,-33.55089569099994],[20.45893859900019,-33.52854537999997],[20.54500007600018,-33.562980651999965],[20.736322403000145,-33.55089569099994]]],[[[23.867923737000126,-33.57634353599991],[23.829004288000192,-33.5260620119999],[23.722484588999976,-33.5511054989999],[23.867923737000126,-33.57634353599991]]],[[[22.24868774400005,-33.45969390899995],[22.046663284000147,-33.48831939699983],[22.197435379000183,-33.479648589999954],[22.20895385700004,-33.47620773299991],[22.24868774400005,-33.45969390899995]]],[[[23.021074295000062,-33.6704521179999],[23.18855285600017,-33.57164001499996],[23.412158966000163,-33.51306915299995],[23.328634262000037,-33.4583969119999],[23.27847671500018,-33.50800704999995],[23.12818527200011,-33.48753356899982],[23.084615707000182,-33.50732803299991],[23.050306320000118,-33.54172515899995],[23.046264648000033,-33.58098220799985],[23.05743598900017,-33.62929153399989],[22.83603477500003,-33.69099426299988],[22.563642502000164,-33.69082260099998],[22.69296455400007,-33.733070373999965],[22.832805634000124,-33.72243118299997],[23.021074295000062,-33.6704521179999]]],[[[20.128400803000147,-33.48220825199991],[20.158109665000154,-33.45760345499997],[20.190027237000095,-33.44690704299995],[20.180768967000063,-33.44243240399982],[20.128400803000147,-33.48220825199991]]],[[[20.125602722,-33.48181533799993],[20.15860366800007,-33.440696715999934],[20.151306152000075,-33.44252777099996],[20.133132935,-33.444942473999845],[20.118236541999977,-33.45592880199996],[20.121360779000156,-33.48018646199995],[20.125602722,-33.48181533799993]]],[[[21.41609191900011,-33.50993728599997],[21.417427063000048,-33.45413207999991],[21.20531463600014,-33.47527313199987],[21.113910675000056,-33.45953750599995],[21.15715026900017,-33.490093230999946],[21.15791320800014,-33.49366378799988],[21.157131194999977,-33.4980888369999],[21.166147232000185,-33.50081253099995],[21.191490172999977,-33.507404326999904],[21.31836319000007,-33.52822112999996],[21.41609191900011,-33.50993728599997]]],[[[22.642753601000095,-33.47464370699993],[22.4065418240001,-33.43157195999987],[22.273843765000038,-33.43687820399998],[22.271440506000033,-33.438644408999835],[22.26362228400012,-33.456951140999934],[22.25762176500018,-33.46854400599989],[22.322053909000147,-33.5116958619999],[22.444400787000063,-33.54417800899995],[22.457508087000065,-33.53279113799988],[22.467771530000107,-33.52577590899995],[22.471321106000175,-33.52440643299997],[22.48220443700012,-33.52203750599989],[22.484514236,-33.520404815999825],[22.484535217000087,-33.517101287999935],[22.49748611500013,-33.494319915999824],[22.544012070000065,-33.486648559999935],[22.55028343200007,-33.48572540299995],[22.59069824200003,-33.48758315999993],[22.598936081000147,-33.48720550499996],[22.60693740800002,-33.486244201999966],[22.613920212000153,-33.484069823999846],[22.642753601000095,-33.47464370699993]]],[[[21.613756180000053,-33.42699050899995],[21.614963531000058,-33.42504882799989],[21.561912537000126,-33.453716277999945],[21.613756180000053,-33.42699050899995]]],[[[20.59092521700012,-33.44076919599996],[20.713603973000147,-33.45484161399992],[20.744588852000106,-33.41492080699987],[20.59092521700012,-33.44076919599996]]],[[[20.155744553000034,-33.38740920999987],[20.121870040999966,-33.382392882999966],[20.16276931800013,-33.42663192699996],[20.155744553000034,-33.38740920999987]]],[[[20.113155365000125,-33.38054656999998],[20.098608017000117,-33.37988281299994],[20.10128402700002,-33.381122588999915],[20.10698509200006,-33.38191604599996],[20.113155365000125,-33.38054656999998]]],[[[22.298444748000065,-33.412212371999885],[22.19179916400003,-33.35835647599998],[21.99405479400008,-33.38727188099989],[21.85333633400012,-33.432014464999895],[21.681882858000165,-33.438774108999894],[21.760358810000184,-33.44584655799997],[21.821697235000045,-33.49881744399988],[21.93160438500007,-33.481880187999934],[21.975532532000045,-33.41795730599995],[22.18795585600003,-33.40143203699989],[22.261775970000087,-33.41794204699994],[22.298444748000065,-33.412212371999885]]],[[[20.155744553000034,-33.38740920999987],[20.163961411000116,-33.370552062999934],[20.130292892000114,-33.37963104199997],[20.155744553000034,-33.38740920999987]]],[[[21.75631523100003,-33.36164855999988],[21.751682281,-33.34857559199992],[21.74386596700009,-33.353107451999904],[21.75631523100003,-33.36164855999988]]],[[[20.149749756000062,-33.358337401999904],[20.279531479000127,-33.35449600199996],[20.26901817300012,-33.35182189899996],[20.146749496000155,-33.356063842999845],[20.149749756000062,-33.358337401999904]]],[[[20.85010910000011,-33.32394027699996],[20.638706207000098,-33.33163070699993],[20.58289909400014,-33.42250060999993],[20.600009918000126,-33.438728332999915],[20.74259758000005,-33.406276702999946],[20.661436081000147,-33.33456420899995],[20.85010910000011,-33.32394027699996]]],[[[20.918243408000137,-33.313533782999855],[20.90144920300014,-33.34212112399996],[20.914567947000023,-33.3374938959999],[20.92271041900017,-33.32529449499992],[20.918243408000137,-33.313533782999855]]],[[[21.498758316000192,-33.32812118499987],[21.49805831900005,-33.30262756299993],[21.252571106,-33.34820175199991],[21.01371002200017,-33.36808395399987],[21.286426544000108,-33.38030624399988],[21.508626938000134,-33.34086227399996],[21.498758316000192,-33.32812118499987]]],[[[22.984071732000075,-33.28049850499997],[22.939804077000133,-33.28049850499997],[22.89963913000014,-33.281730651999965],[23.08695411700006,-33.28967285199991],[23.08231544500012,-33.28621673599997],[23.06766700700007,-33.2823829649999],[23.001083374000018,-33.280845641999974],[22.984071732000075,-33.28049850499997]]],[[[21.61737632800009,-33.274169921999885],[21.604835510000044,-33.274738311999954],[21.53863716100011,-33.28364944499998],[21.52472305300006,-33.28511810299989],[21.28166008000005,-33.335266112999875],[21.170175552000046,-33.32840347299998],[21.012434006000092,-33.35421371499996],[21.00111961400006,-33.36275863599997],[21.175699234000035,-33.3365707399999],[21.253408432000015,-33.34577941899994],[21.500654221000104,-33.29974365199996],[21.61737632800009,-33.274169921999885]],[[21.49814224199997,-33.28274536099997],[21.52314186100017,-33.274475097999925],[21.49616432200014,-33.28579330399998],[21.496047974000078,-33.28455734299996],[21.49814224199997,-33.28274536099997]]],[[[23.637580872000058,-33.31276321399997],[23.469444275,-33.31416320799997],[23.423564911000028,-33.2741088869999],[23.26101875300003,-33.29569625899995],[23.24918746900005,-33.36755752599993],[23.317108154000096,-33.40645599399994],[23.305482864000112,-33.41811752299998],[23.407236099000045,-33.39937210099998],[23.563837051000178,-33.42215347299998],[23.696794510000075,-33.47175598099989],[23.665708542000175,-33.454513549999945],[23.751535415999967,-33.390579223999964],[23.748241425,-33.3746032709999],[23.735307693000152,-33.36491393999995],[23.73521232600018,-33.36326217699991],[23.730663300000174,-33.34618377699991],[23.72361564600004,-33.330223082999964],[23.747198105000052,-33.31517791699997],[23.637580872000058,-33.31276321399997]]],[[[22.491939545000037,-33.26835632299992],[22.324373245000174,-33.23751449599996],[22.121559143000184,-33.25371169999988],[22.12146186800004,-33.254226684999935],[22.09833717300006,-33.26586914099994],[22.16839790300014,-33.27338409399988],[22.168607711999982,-33.276451110999915],[22.128234863000046,-33.28697967499994],[22.104618073000154,-33.28346252399996],[22.0241661070001,-33.28862762499995],[22.397397995000176,-33.29932022099996],[22.519594193000046,-33.39069747899998],[22.725576401000012,-33.383041381999874],[22.956052780000107,-33.41547775299995],[22.861640930000135,-33.40334320099993],[22.770185471000104,-33.370143889999895],[22.559194565000155,-33.36430358899992],[22.36598587000003,-33.28720092799995],[22.491939545000037,-33.26835632299992]]],[[[23.347698212000182,-33.25558853099983],[23.467905045,-33.237033843999825],[23.46594619800004,-33.23509597799989],[23.347698212000182,-33.25558853099983]]],[[[19.298065185999974,-33.35313796999998],[19.399330139000085,-33.41696166999998],[19.48541068999998,-33.41297149699989],[19.524707794,-33.3085708619999],[19.32185173000005,-33.241413115999876],[19.298065185999974,-33.35313796999998]]],[[[19.177251816000137,-33.215602874999945],[19.078386307000187,-33.29583740199996],[19.151977539000143,-33.43774032599998],[19.2340755460001,-33.39138793899991],[19.177251816000137,-33.215602874999945]]],[[[23.54040145900018,-33.173820495999905],[23.382722855000054,-33.20416259799998],[23.426118851000126,-33.21022415199997],[23.426177979000045,-33.209693908999895],[23.47731781000016,-33.204387664999956],[23.476837158000023,-33.20311355599989],[23.488348007000013,-33.20393753099995],[23.486246109000035,-33.19363021899994],[23.517559052000138,-33.18848800699993],[23.54040145900018,-33.173820495999905]]],[[[20.083356857000183,-33.15266036999998],[20.031904221,-33.15481948899992],[20.02206230200005,-33.172443389999955],[20.023082733000024,-33.17675399799998],[19.931913376000182,-33.22156524699989],[19.90770530700013,-33.231685637999874],[19.841878891000135,-33.28488922099996],[19.72104072600007,-33.22148132299998],[19.706693649000044,-33.221279143999936],[19.703447342000118,-33.22156143199993],[19.69677162200003,-33.221939086999896],[19.5039043430001,-33.230300902999886],[19.596448898,-33.3414916989999],[19.709499359000176,-33.28489303599986],[19.772968292000087,-33.393249511999954],[19.72417068500016,-33.417026519999865],[19.73802948000008,-33.48151016199989],[19.925344467000173,-33.60967636099991],[20.012832642000035,-33.58437728899992],[20.104412079000042,-33.600090026999965],[20.220380783000167,-33.57684707599992],[20.306655884000065,-33.520202636999954],[20.301954269000134,-33.51895523099995],[20.310039520000032,-33.51758956899994],[20.314769745000035,-33.51479339599996],[20.28275108300005,-33.49461364699988],[20.31930160500019,-33.47883605999988],[20.317752838,-33.47619628899997],[20.234567642000115,-33.47930908199993],[20.202384949000134,-33.479881286999955],[20.142436981000117,-33.487613677999946],[20.103713989000028,-33.50759506199989],[20.105136871000127,-33.51107788099995],[20.104120255000055,-33.51173019399988],[20.097528458000056,-33.50942993199993],[20.05707740800017,-33.52446365399993],[20.056116104000182,-33.5240707399999],[20.046979904000125,-33.52744293199987],[20.04699707000009,-33.52738571199984],[19.984951019000164,-33.49416732799989],[19.981624603000057,-33.48640060399998],[19.990564346000156,-33.474109649999946],[19.96754455600012,-33.45662689199992],[20.017316818000154,-33.37627792399991],[20.032913208000082,-33.37374114999989],[20.09727287300018,-33.37921523999995],[20.11631393400006,-33.37821960399998],[20.12806510900009,-33.36684036299994],[20.127796173000036,-33.3600730899999],[20.11807632400007,-33.35891342199989],[20.11168479900016,-33.353610991999915],[20.06112289400005,-33.31266403199993],[20.069574356000146,-33.31140899699989],[20.077606201000094,-33.30249023399995],[20.10174179100011,-33.28594970699987],[20.275075912000148,-33.26364135699998],[20.302440643000068,-33.31336975099998],[20.484617233000165,-33.315017699999885],[20.492452621000098,-33.371452331999876],[20.386703491000162,-33.439334868999936],[20.373550415000068,-33.446037291999914],[20.394849777000047,-33.44406890899995],[20.391248702999974,-33.446399688999975],[20.390686035000158,-33.4469604489999],[20.378231049000078,-33.449626922999926],[20.329183578000084,-33.476348876999964],[20.330846786,-33.47880172699996],[20.33397293100012,-33.48022842399996],[20.343255997000085,-33.48299789399988],[20.36082267800009,-33.487312316999976],[20.362716675,-33.489013671999885],[20.366044998000177,-33.49391555799991],[20.578697205000026,-33.44971084599996],[20.56946754500018,-33.41636657699996],[20.601264954000044,-33.40475082399996],[20.58207511900008,-33.42125320399998],[20.541706084999987,-33.33681106599988],[20.45251274100019,-33.2762794489999],[20.71726989700005,-33.256114959999934],[20.78550148000005,-33.26464462299987],[20.783031464000146,-33.25929260299995],[20.786066055000106,-33.256881713999974],[20.80148506200004,-33.25472640999982],[20.805315018000044,-33.25333785999993],[20.596204758000056,-33.25459670999993],[20.46529006999998,-33.20972824099988],[20.227626800999985,-33.188858031999985],[20.083356857000183,-33.15266036999998]]],[[[23.540307999000106,-33.169940947999976],[23.59218025200005,-33.12965011599994],[23.573228836,-33.124851226999965],[23.45914650000003,-33.13148498499993],[23.441492081000035,-33.13287353499993],[23.503786087000037,-33.16166686999992],[23.52957534800015,-33.1677780149999],[23.540307999000106,-33.169940947999976]]],[[[23.79335212700005,-33.12023925799991],[23.750398636000057,-33.10547637899998],[23.666730881000092,-33.114112853999984],[23.665847778000114,-33.116619109999874],[23.79335212700005,-33.12023925799991]]],[[[23.796806334999985,-33.09440994299996],[23.648973465000097,-33.09937667799994],[23.659788132000074,-33.100406646999886],[23.71754264800012,-33.09647369399988],[23.796806334999985,-33.09440994299996]]],[[[18.928173065000124,-32.6062431339999],[18.790937424000106,-32.49096298199993],[18.786609650000116,-32.69702148399995],[18.74518013000005,-32.93801879899996],[18.59097290000011,-32.899085998999965],[18.494426727000018,-32.94817733799988],[18.496433258000025,-33.02252578699989],[18.40693664600019,-33.09579086299988],[18.359163284000147,-33.198799132999966],[18.232305527000108,-33.29109954799992],[18.271869659000174,-33.37261199999989],[18.451038361000087,-33.50860214199997],[18.533849716000077,-33.50791549699994],[18.52707290600017,-33.3995590209999],[18.62483024600016,-33.43966674799998],[18.63870430000003,-33.566249846999824],[18.53644943200004,-33.67099761999992],[18.55032157900007,-33.791477202999886],[18.632543564000116,-33.88981628399989],[18.718528748000097,-33.78367614699988],[18.790176391999978,-33.82848739599996],[18.71030998200007,-33.913600921999944],[18.747413635000044,-34.03956222499994],[18.875911713000164,-33.95158004799987],[18.851707458000078,-33.76792144799998],[18.960868835000156,-33.79265594499998],[18.980243683000083,-33.67157363899997],[19.053377151000177,-33.65601730299983],[19.065870285000187,-33.525913238999976],[19.02619171100008,-33.44196319599996],[19.022327423000092,-33.26913833599997],[18.965219498000124,-33.21561813399995],[19.027490616000136,-33.05262374899996],[19.030469894000078,-32.80984115599995],[18.928173065000124,-32.6062431339999]],[[18.80272483800013,-33.53532409699994],[18.85865020800003,-33.63719558699995],[18.79368400600015,-33.6780700679999],[18.679250717000116,-33.67340850799991],[18.683815002000017,-33.60621643099989],[18.80272483800013,-33.53532409699994]]],[[[21.423618317000034,-32.10475921599988],[21.39667701700006,-32.14003372199994],[21.382780075000028,-32.21820449799992],[21.459085464000168,-32.27384185799997],[21.343133926,-32.35902023299997],[21.195178986000144,-32.27476501499996],[21.103956223000125,-32.2734031679999],[21.04902839700003,-32.33573913599997],[21.135583878000034,-32.371158599999944],[21.168451309000147,-32.45848083499993],[21.224342346000128,-32.467529296999885],[21.27985191300013,-32.41651153599997],[21.4155502320001,-32.384529113999974],[21.531976700000087,-32.29126739499998],[21.528648376000035,-32.289726256999984],[21.550024033000057,-32.21396636999992],[21.524324417000116,-32.13983535799997],[21.423618317000034,-32.10475921599988]]],[[[21.679359436000084,-32.19899368299991],[21.72465133700007,-32.2565307619999],[21.79346847500011,-32.13875198399995],[21.65358734100016,-32.08276367199994],[21.679359436000084,-32.19899368299991]]],[[[21.13637733500019,-32.559719085999916],[21.027032852000048,-32.48494720499997],[21.01212501499998,-32.56552886999998],[20.88950729400017,-32.58679580699993],[20.821418762000178,-32.511199950999924],[20.807518005000134,-32.42715835599995],[20.855806351000126,-32.35991668699995],[20.76759338400018,-32.25504302999991],[20.663455963000104,-32.337039947999926],[20.558116913000163,-32.330196380999894],[20.48040962200008,-32.261466979999966],[20.422035216999973,-32.26576614399994],[20.372470856000177,-32.18447494499998],[20.291774750000172,-32.17390441899994],[20.28309822100016,-32.077007293999884],[20.16970443700012,-32.08549880999993],[20.184812546000046,-32.208587645999955],[20.239837646000012,-32.22241592399996],[20.25284576400003,-32.31094741799984],[20.342506409000066,-32.335716247999926],[20.394300461000057,-32.51247405999993],[20.538885117000177,-32.53256988499987],[20.694234848000065,-32.686393737999936],[20.616758347000086,-32.75159454299995],[20.594808578000027,-32.85573959399994],[20.428194046000044,-32.9094924929999],[20.38249397300001,-33.00874710099998],[20.534288406000087,-33.05496215799997],[20.700927734000174,-32.96509551999992],[20.6536636350001,-32.88628387499995],[20.719886780000138,-32.83242416399992],[20.94455337500017,-32.808521270999904],[21.071832657000186,-32.74569320699993],[21.175184250000086,-32.71917724599996],[21.13637733500019,-32.559719085999916]]],[[[18.680019379000157,-31.84319305399987],[18.646537781000063,-31.802591323999934],[18.64900970499997,-31.81246566799996],[18.672180176000154,-31.837404250999896],[18.680019379000157,-31.84319305399987]]],[[[18.906234741000162,-31.778650283999923],[18.827421188000187,-31.683383941999978],[18.76262092600018,-31.749979018999966],[18.840303420999987,-31.7090129849999],[18.906234741000162,-31.778650283999923]]],[[[18.99998855600012,-31.7612590789999],[18.977378844999976,-31.673156737999932],[19.057659149000074,-31.672698974999946],[19.116348267000035,-31.49926185599992],[18.98137092600018,-31.353981017999956],[19.028488159000176,-31.475049972999898],[18.96740531900008,-31.54257583599997],[18.968736649000107,-31.676143645999957],[18.9439868930001,-31.752561568999965],[18.99393081700009,-31.766981124999973],[18.99998855600012,-31.7612590789999]]],[[[19.19138526900008,-31.57276534999994],[19.21949768100012,-31.435897826999906],[19.162212372000113,-31.33353805499985],[19.111104965000152,-31.32670974699994],[19.19138526900008,-31.57276534999994]]],[[[19.899904251,-31.214246749999973],[19.861879349000105,-31.266113280999946],[19.757253647000084,-31.26238059999997],[19.75813674900013,-31.351085662999935],[19.71991539000004,-31.417367934999902],[19.944129944000053,-31.44419288599994],[19.851665497000056,-31.34125900299989],[19.93358802800003,-31.269027709999932],[19.899904251,-31.214246749999973]]],[[[19.71710777300018,-31.20516776999989],[19.638288498000065,-31.185636519999832],[19.529943466000134,-31.251785277999943],[19.518875122000054,-31.307529448999958],[19.605848312000035,-31.363735198999905],[19.71710777300018,-31.20516776999989]]],[[[19.64632988,-31.118104934999963],[19.595285416000024,-31.15272140499991],[19.5012569430001,-31.141605376999962],[19.50201797500017,-31.222633361999954],[19.598888397000167,-31.20551490799994],[19.64632988,-31.118104934999963]]],[[[18.27797317500017,-30.422880172999953],[18.252389908,-30.49215888999987],[18.255561828999987,-30.478101729999935],[18.292968750000057,-30.457950591999975],[18.27797317500017,-30.422880172999953]]],[[[18.133743286000026,-30.255420684999933],[18.057601929000157,-30.219058989999894],[18.057542801000068,-30.219058989999894],[18.038120270000036,-30.268815993999908],[18.08107566800004,-30.401329040999883],[18.069252014000142,-30.41371345499988],[18.196411133000083,-30.512430190999964],[18.17667007400013,-30.43904304499995],[18.260658264000085,-30.355945586999894],[18.26040267900015,-30.342044829999907],[18.306255341000053,-30.425895690999937],[18.414495468000155,-30.387556075999953],[18.25763511700012,-30.25716972399988],[18.286359787000038,-30.277397155999836],[18.146087646000183,-30.24794959999997],[18.168392181000115,-30.321830749999947],[18.105617522999978,-30.252569198999936],[18.133743286000026,-30.255420684999933]]],[[[18.183460236000087,-30.15506172199997],[18.136363983000024,-30.154138564999982],[18.160480499000073,-30.175245284999903],[18.146512985000072,-30.156377791999944],[18.183460236000087,-30.15506172199997]]],[[[17.996311188000163,-30.1526813509999],[17.95263481100011,-30.142498015999877],[17.982654572000172,-30.22839355499997],[17.96018600500014,-30.226766585999826],[18.004266739,-30.273433684999873],[17.990377426,-30.24660873399995],[18.030349731000058,-30.259105681999927],[18.03232383700015,-30.201755523999964],[17.996311188000163,-30.1526813509999]]],[[[18.115697861000058,-30.124933242999873],[18.025686264000115,-30.10253333999998],[18.06451225300009,-30.127332686999978],[18.075117111000054,-30.130308150999895],[18.115697861000058,-30.124933242999873]]],[[[18.1774368290001,-30.106416701999933],[18.117742538000186,-30.13272285499994],[18.170717239000112,-30.124620437999965],[18.158910751000064,-30.11898422199988],[18.1774368290001,-30.106416701999933]]]]},"properties":{"objectid":596,"eco_name":"Renosterveld shrubland","biome_num":12,"biome_name":"Mediterranean Forests, Woodlands & Scrub","realm":"Afrotropic","eco_biome_":"AF12","nnh":3,"eco_id":90,"shape_leng":221.153033382,"shape_area":2.74752805379,"nnh_name":"Nature Could Recover","color":"#B54B01","color_bio":"#FE0000","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":28439.85532896998,"percentage":0.8609283899456767}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[30.002056041000174,0.441948668000066],[29.9273621910001,0.481227254000146],[29.86341455400003,0.467108225000118],[29.84472829900011,0.243956534000176],[29.923095019000186,0.224540132000016],[29.981666667000127,0.314166667000109],[29.941369279000128,0.354553881000072],[30.002056041000174,0.441948668000066]]]},"properties":{"objectid":600,"eco_name":"Rwenzori-Virunga montane moorlands","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Afrotropic","eco_biome_":"AF10","nnh":1,"eco_id":86,"shape_leng":2.33562550522,"shape_area":0.0419427631872,"nnh_name":"Half Protected","color":"#E600AA","color_bio":"#D6C39D","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":519.6923461075892,"percentage":0.010642227092328402}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-15.749609814999872,19.08590994700006],[-15.827089931999922,19.039420081000173],[-15.920059981999941,19.07815996400018],[-16.016900006999947,19.05879002300003],[-16.059520073999977,18.996810048000043],[-16.016900006999947,18.892220040000097],[-16.059520073999977,18.84186002299998],[-16.09277992699998,18.666109894999977],[-16.04789008299997,18.57068999900008],[-16.005279872999836,18.318899949000183],[-15.916179973999931,18.28404007500012],[-15.823209923999968,18.454480033000095],[-15.896810032999952,18.671399999000187],[-15.830960082999923,18.729520031999982],[-15.683760040999971,18.776000040000156],[-15.571420049999972,18.84961000600009],[-15.52106003299997,18.97743993100005],[-15.517340027999921,19.081139982000025],[-15.625650041999904,19.113020014000085],[-15.749609814999872,19.08590994700006]]],[[[-11.99760991799991,21.291830016000063],[-12.185559990999934,21.136940014000118],[-12.27784004199998,21.01245006800019],[-12.289289964999966,20.902939950000075],[-12.239049993999913,20.885230052999987],[-12.145110073999945,20.99802998500013],[-11.968860048999943,21.164240007000046],[-11.941739948999896,21.26501002900011],[-11.993290035999962,21.29327003500015],[-11.99760991799991,21.291830016000063]]],[[[-12.831110050999882,22.65499992700012],[-12.860229913999945,22.7555802],[-12.773079963999976,22.944919949999985],[-12.869520247999958,23.001749933000042],[-12.936190097999884,22.849910005000027],[-12.96629004099998,22.66980003800012],[-12.931479979999892,22.60220995500015],[-12.831110050999882,22.65499992700012]]],[[[-11.625730069999975,24.16440001000018],[-12.004909994999934,24.283970022000176],[-12.082840018999832,24.227790081000137],[-12.05789006799995,24.16463006800018],[-11.896479934999888,24.151269977000084],[-11.622060053999974,24.073480065000183],[-11.50209998199989,23.953939977000175],[-11.389489975999936,23.91276996200014],[-11.315530082999942,23.95252019999998],[-11.372310074999916,24.02778000100011],[-11.625730069999975,24.16440001000018]]],[[[-12.75527994499987,24.15082992700013],[-12.699719945999846,24.23361000500006],[-12.711399926999889,24.301109966000126],[-12.829169958999955,24.404720071000042],[-12.877499936999925,24.361940002000097],[-12.848330259999955,24.284999738000124],[-12.75527994499987,24.15082992700013]]],[[[-11.709719933999907,24.438889947],[-11.782169927999973,24.415949969000167],[-11.781950078999898,24.33749998200011],[-11.58834008499997,24.275279916000045],[-11.370830099999921,24.246669982000185],[-11.327219920999937,24.290550000000167],[-11.402780011999937,24.360279958000035],[-11.474720075999869,24.354999887000076],[-11.65470999799993,24.457219962000124],[-11.709719933999907,24.438889947]]],[[[-9.825010076999888,25.10416005200011],[-9.890450076999912,25.151609930000063],[-9.926390008999874,25.05417002900009],[-9.769170030999874,24.970279969000103],[-9.720830019999937,25.010560026000178],[-9.825010076999888,25.10416005200011]]],[[[0.95522999700006,26.104809977000173],[0.889970066000103,26.136550073000024],[0.822059978000027,26.247049952000168],[0.669630032000043,26.194970044000115],[0.551059990000169,26.087179993000177],[0.706650023,26.093360054000186],[0.74348977,25.973580051000113],[0.835759965000136,25.79447005300011],[0.924829940000166,25.667200048000097],[1.002670018000174,25.650140017000126],[1.076410063000083,25.712560042000064],[1.096389913000166,25.86249983400006],[1.056669951000174,25.90305008200005],[1.009779993,26.06215998700003],[0.95522999700006,26.104809977000173]]],[[[1.525539970000125,25.981980076000127],[1.558930077000184,26.101260006000132],[1.573869948000038,26.406609939000077],[1.517399926000053,26.462690077000104],[1.449059822000095,26.441760071000147],[0.9919099170001,26.394890002000125],[0.975359816000037,26.31630993600004],[1.05197989900006,26.29187977300012],[1.305849977000094,26.264979874000062],[1.411009938000063,26.221649919000072],[1.470640046000028,26.151370074000056],[1.525539970000125,25.981980076000127]]],[[[-7.838619998999832,27.664909971000156],[-7.689440084999887,27.665549980000094],[-7.555560001999879,27.732220182000106],[-7.639779922999878,27.797570059000066],[-7.791909931999953,27.802350057000126],[-7.881990086999963,27.73260003300004],[-7.838619998999832,27.664909971000156]]],[[[-7.232560017999958,27.781670000000133],[-7.113700071999972,27.853209971000126],[-7.070130200999927,27.916980069000147],[-7.162739937999902,27.94320000300013],[-7.453889988999947,27.81872994800017],[-7.45906004699998,27.76305007900004],[-7.232560017999958,27.781670000000133]]],[[[19.18983997800018,29.185959935000028],[19.42146007600013,29.153609930000073],[19.553490013000157,29.1182100260001],[19.633629967000047,29.212479984000026],[19.518010020000077,29.302569995000113],[19.132999962000156,29.307050231000062],[19.05840023600001,29.25148002400016],[19.18983997800018,29.185959935000028]]],[[[25.608831985000165,29.25757575800003],[25.30590510800016,29.23138687100004],[25.307336025000154,29.201408947000175],[25.574178617000143,29.097674395000126],[25.843243434000044,29.111436081000136],[26.013837658000114,29.09176828200009],[26.04019431500012,29.142545803000075],[26.110722151000118,29.220468507000135],[26.081935221000037,29.302477097000065],[26.00422745800006,29.31723612700017],[25.608831985000165,29.25757575800003]]],[[[0.185649931,29.082640087000186],[0.155229985000176,29.14314994300014],[0.289040011000168,29.33004002300015],[0.212739932000147,29.365850053000088],[0.106020082000043,29.191799926000158],[-0.022020009999949,29.030740072000015],[-0.136290059999965,29.006510220000052],[-0.139680028999976,28.839099917000055],[-0.00344004599998,28.845310254000083],[0.125639972000158,28.958330034000085],[0.185649931,29.082640087000186]]],[[[19.1666299850001,29.920999955000184],[19.337179956,29.90850007300014],[19.357850155999984,29.94340008000006],[19.21394996100014,30.021029990000045],[19.32995996900013,30.091289944000096],[19.15500017000005,30.120800043000088],[18.914889925000068,30.21118999300012],[18.811849949000134,30.23255001600012],[18.809559928999988,30.150249944000052],[19.044910066000114,30.04552],[19.086729946000162,29.950739936],[19.1666299850001,29.920999955000184]]],[[[26.718071970000153,28.803518300000064],[26.958789954000167,28.911299963000033],[27.163730001000147,28.942259939000166],[27.349579979000055,28.943589946000145],[27.521789994000187,29.00311021800013],[27.64594004500003,29.092519912000057],[27.721000239000034,29.18142002800016],[27.873729948000175,29.318539935000047],[27.850390053000012,29.40537005600015],[27.75661999200014,29.461670043000026],[27.588900071000126,29.3830500200001],[27.497779990000083,29.44277007500017],[27.40019369800018,29.547599777000016],[27.573007962000133,29.567379358000153],[27.80486002400005,29.573889988000076],[27.905670003000125,29.625289931000054],[27.880469929000185,29.7035000030001],[27.94771026,29.858920001000172],[28.030760001000033,29.76712998900007],[28.100059942000087,29.83987006400008],[28.186680072,29.858059967000088],[28.310000189000107,29.95953002100015],[28.237570084000026,30.093980233000025],[28.289540155999987,30.17255008900014],[28.573800081000172,30.158420087000025],[28.75668025000016,30.205780019000144],[29.010809957000106,30.146380145000023],[29.125529738000182,30.180359919000125],[29.0786499890001,30.25264005400004],[28.634539995000182,30.34636998300016],[28.493709940000087,30.353510057000108],[28.40915998100013,30.389160085000185],[28.291659964000075,30.388610022000023],[28.18138996800019,30.344439924000085],[28.094720024000083,30.389720004000026],[27.983050141000092,30.398610069000085],[27.933890053000084,30.35805999700017],[27.826110034000067,30.375550045000125],[27.40340019600012,30.258919919000164],[27.278609961000086,30.185970028000042],[27.155550001000165,30.17361008200004],[27.03638994,30.07971997500016],[26.923390050000023,29.9179500570001],[26.740909975000136,29.85396996700007],[26.66982994400007,29.76731005700009],[26.54605992000012,29.671459968000192],[26.49158015600017,29.592020045000083],[26.579360081000175,29.389879947000054],[26.587939998000024,29.30287996600009],[26.482479924000188,29.193280078000043],[26.329789995000112,29.12275996600016],[26.32209282900004,29.041105785000184],[26.366750140000136,28.938630232000094],[26.44649358600003,28.966465330000176],[26.53692008300004,29.039899975000026],[26.606070055000032,29.04434007900005],[26.836629985000172,28.988699990999976],[26.631400032000045,28.9315600380001],[26.611740544000156,28.86731715500008],[26.648269962000143,28.777530069000136],[26.718071970000153,28.803518300000064]]],[[[11.72977252600009,33.08821178500017],[11.53233947900003,33.16757047100003],[11.361008517000073,33.121650885000065],[11.32228378900004,33.06750706000008],[11.343898198000034,33.04933240100007],[11.336265079000043,33.01176877300014],[11.438834948000078,32.987960987000065],[11.397418913000024,32.770762322999985],[11.434610055,32.71726001300004],[11.66444797600002,32.770841406000045],[11.587155450000068,32.781047220000175],[11.570538099000146,32.88288919400014],[11.601115509000067,32.944924430000185],[11.601120191000064,33.00439171900007],[11.65415993500011,32.97564007400018],[11.754377332,33.01433959600013],[11.72977252600009,33.08821178500017]]],[[[5.892740212000092,33.07015998000003],[5.968060036000054,33.08001973900019],[6.087520035000125,33.182589918000076],[6.066929923000032,33.30909001100002],[6.00707010900004,33.35061998600008],[5.902300032000028,33.28350005200019],[5.892740212000092,33.07015998000003]]],[[[5.85158005500017,33.40497002300009],[5.938790027000039,33.42553003600011],[6.02306997200003,33.540239784000164],[6.003330037000012,33.585000077000075],[6.027410096000153,33.718659959000036],[5.941080047000185,33.702010054000084],[5.89106995800006,33.48498975600006],[5.85158005500017,33.40497002300009]]],[[[9.65771592800013,34.04841548200011],[9.523550009000076,33.99188008800019],[9.398150040000075,33.96728006500007],[9.159190085999967,33.9621497870001],[8.95061997900001,34.029419866000126],[8.722049955000045,34.04441007800017],[8.532539994000103,34.07353997500013],[8.337980020000032,34.056159939000054],[8.177160081000125,33.99433996700009],[8.100939915000083,33.91273992600014],[7.791549795000094,33.90470003800016],[7.699379932000113,33.84930004200004],[7.719760052000026,33.757389984000156],[7.82960003200003,33.65658000500002],[8.109879793000061,33.562310047000096],[8.266889780000042,33.392270007000036],[8.513349945000073,33.338100038000164],[8.6088300400001,33.34076005200018],[8.675309965000054,33.38877002600009],[8.750569942000027,33.38337994200015],[8.885000087000037,33.424489934000064],[8.934700029000169,33.472110023000084],[9.032369988000141,33.49056994100016],[9.100600080000106,33.56907977500015],[9.068920006000042,33.63775995000009],[9.000479923000057,33.66614000100003],[8.92538998100008,33.74907004800008],[8.999550009000018,33.79426986400017],[9.193189927,33.784810023000034],[9.359449938000068,33.823819920000176],[9.3911400450001,33.86900002100015],[9.825890001000062,33.95554006100019],[9.83708997600013,34.00325995400016],[9.662645545000089,34.04955901700015],[9.65771592800013,34.04841548200011]]],[[[5.958780087000093,33.85402001700004],[6.229590150000149,33.810549950000166],[6.321569912000143,33.84713006800007],[6.465990070000146,33.84377002300016],[6.67606004400011,33.89686996600011],[6.733470012000055,33.81604001300013],[6.925020221000068,33.80720997200007],[7.015289948000088,33.84398001500011],[7.117310065000083,33.992099937000035],[7.197379964000106,34.00342998999997],[7.562750066000035,34.00570997600016],[7.884319887000117,33.94642997200003],[8.022470038000108,33.958269955000105],[8.117670084999986,34.00986985600008],[8.134509915000137,34.071870073000184],[8.090109935000157,34.19356992600012],[7.865290016000017,34.22608996700012],[7.697550029000126,34.21061992400007],[7.451389977000076,34.165519912000036],[7.19925000000012,34.15260990399997],[7.088250049000123,34.16560000200013],[7.015730174000055,34.20604991800013],[6.9123399180001,34.41189998900006],[6.564589943000101,34.520480017000125],[6.473699921000048,34.561450073000174],[6.302139948000104,34.585940083000025],[6.122929971000076,34.65930995800005],[5.980900164000047,34.63049989000018],[5.946369975000152,34.56958008300012],[5.957130076000055,34.38780003900018],[5.838919995000026,34.23301001600004],[5.830920063000178,34.162260023000044],[5.901940071000183,33.95097005500003],[5.958780087000093,33.85402001700004]]],[[[10.60052849699997,35.5007579980001],[10.561943581000094,35.516581906000056],[10.409119526000097,35.687861907000126],[10.268998347000093,35.62373731400015],[10.305930071000148,35.51256005800019],[10.47661980099997,35.42284004100003],[10.53943991900013,35.41944003900005],[10.60052849699997,35.5007579980001]]],[[[10.331334918000096,35.90227971100012],[10.27386159200006,35.96212448500012],[10.170815480000158,35.928327142000114],[10.119127860000049,35.86655903500008],[10.146909936000156,35.79929007100009],[10.290350015000172,35.84050004200003],[10.331334918000096,35.90227971100012]]]]},"properties":{"objectid":601,"eco_name":"Saharan halophytics","biome_num":9,"biome_name":"Flooded Grasslands & Savannas","realm":"Palearctic","eco_biome_":"PA09","nnh":2,"eco_id":745,"shape_leng":46.960438725,"shape_area":5.06288817821,"nnh_name":"Nature Could Reach Half Protected","color":"#3881AC","color_bio":"#BEE7FF","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":54025.27507275583,"percentage":4.6719999761353135}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[16.35106058300005,10.694248528000173],[16.32169944700007,10.718585887000074],[16.197969479999983,10.66187996500014],[16.073799463000114,10.55710818700004],[16.038160449000088,10.369811375000154],[15.975150498000176,10.237590541000031],[15.825710552000146,10.087100007000117],[15.758469583000021,9.98429931700008],[15.755370458000016,9.818501919000028],[15.806759570999986,9.691428914000142],[15.902239507000047,9.622569736],[16.182460444000185,9.290825239000071],[16.348119541000074,9.180024191000143],[16.497789486000045,9.02060039200012],[16.838649470000064,8.805815967000058],[16.966360505000182,8.760394937000171],[17.195850476000146,8.767055700000128],[17.351320531000056,8.827928266000072],[17.379480541000135,8.894812333000118],[17.353160527000057,9.060588776000145],[17.256130442000085,9.284158944000126],[17.113729451000097,9.699414521000165],[17.11491951300013,9.97260706500009],[17.05837050000008,10.148165859000073],[16.937070447,10.367680360000122],[16.822299562000126,10.481412393000028],[16.689540441000133,10.533419755000125],[16.538059502000067,10.570387301000096],[16.402879520000056,10.681188685000052],[16.35106058300005,10.694248528000173]]],[[[39.04250000000013,13.768333333000157],[39.0875,13.701666667000097],[39.20833333300004,13.77166666700009],[39.28583333400019,13.863333333000128],[39.3075,14.00500000000011],[39.2,14.029166667000084],[39.126666667000165,14.073333333000164],[39.070000000000164,13.953333333000103],[38.9875,13.90583333300009],[38.9075,13.939166667000165],[38.97,14.035833333000141],[38.9075,14.061666667000111],[38.87666666700005,13.974166667000077],[38.79250000000019,13.852500000000191],[38.755000000000166,13.886666666999986],[38.58833333400014,13.759166667000045],[38.57166666600011,13.845833334000133],[38.60500000000013,13.961666666000099],[38.49583333300018,13.994166667],[38.518333333000044,13.875],[38.43333333400017,13.872500000000173],[38.362500000000125,13.981666666000024],[38.26583333400009,14.03],[38.197500000000105,14.122500000000116],[38.26583333300016,14.14666666700009],[38.246666667000056,14.230833334000124],[38.40583333300003,14.256666666000115],[38.48,14.175],[38.553333333000126,14.226666666000028],[38.68000000000018,14.2025000000001],[38.78916666700013,14.230833333000078],[38.81750000000011,14.286666667000134],[38.8975,14.310000000000116],[38.881666667,14.3875],[39.00916666700016,14.3825],[39.14500000000015,14.520000000000152],[39.17833333300007,14.585833333000096],[39.07833333300016,14.638333333000105],[38.89833333300004,14.506666666000058],[38.69916666600011,14.47083333300003],[38.52,14.418333333000078],[38.44000000000017,14.425833333000128],[38.39155948500013,14.497220262000042],[38.41875859300012,14.644500862000143],[38.27046948200018,14.748633939000172],[38.28237949600009,14.812849711000183],[38.36640958400011,14.942317426000159],[38.214420534,14.923162598000147],[38.157150510000065,14.961951028000158],[38.213409509000144,15.06856431000017],[38.401908452999976,15.08122333100016],[38.5028605980001,15.195625078000035],[38.4514505300001,15.316037320000078],[38.447910517000025,15.583801072000085],[38.39944853200012,15.75824892999998],[38.402828619000104,15.812956271000076],[38.34421145500011,16.01792347500009],[38.33686052600018,16.194282070999975],[38.35272948000011,16.22963911800008],[38.24029161300018,16.332493452000108],[38.17247061700016,16.539759310000022],[38.15703953400015,16.83143210600008],[38.014869547000046,17.06888656200016],[37.90219849600004,17.11524351600002],[37.86729859800005,17.234197139000116],[37.85807045800016,17.4778124610001],[37.75308946800004,17.596135094000033],[37.744628607000095,17.735335540000165],[37.97098156699997,17.895307012000103],[38.16141298200017,17.792106526],[38.276569496000036,18.017718338],[38.391590498000085,18.181384720000153],[38.3311615020001,18.167850293000015],[38.10504155900003,18.26754347600007],[38.07302855600011,18.344587751],[38.10737960700004,18.412865729000032],[38.01937850799999,18.462792703000105],[37.91875057600015,18.577235018000124],[37.79978957700018,18.615823624000143],[37.73852155200012,18.707577133000143],[37.673919542000135,18.736015421],[37.54032156100004,18.71731740700011],[37.42153959900003,18.8466387740001],[37.39010391700015,19.02169811500005],[36.803194779000194,19.049324908000187],[36.43796410800019,19.110112892000018],[36.21715180600012,19.08474149200009],[36.12845441900015,19.034318436000035],[35.83408213100006,18.758248498000057],[35.761585229,18.70754119200012],[35.59583892300009,18.641602242000033],[35.41237198400012,18.601350871000022],[35.16329891500004,18.58702590900009],[34.90135538200013,18.62878820600008],[34.774635352000075,18.683646446000125],[34.6771973970001,18.757486456000095],[34.55639016900017,18.900581548000048],[34.36502599700003,19.218361186000152],[34.257233324000026,19.541739205000113],[34.1746416310001,19.848353561000124],[34.13213588100018,19.94329459000005],[34.02543705700003,20.107558518000076],[33.86977928700014,20.301222874000132],[33.74797311200007,20.413529996000136],[33.57506128900019,20.506949187000146],[32.950132152000094,20.444456274000174],[32.762020199000176,20.318200177000165],[32.62684672300003,20.18243019900018],[32.51132928100009,19.990770789000123],[32.4913881920001,19.838223190000065],[32.60590672500007,19.55192685900016],[32.721855491000156,19.40614996300019],[33.07474133600016,19.135696826000185],[33.30911746000004,18.88133229100015],[33.408366160000185,18.746037620000152],[33.45041601100013,18.627760390000105],[33.406881667,18.495278897],[33.31606488800003,18.39756304100007],[33.10052399500012,18.2434683460001],[32.70884801700004,18.009818188000054],[32.45812548200007,17.893416646],[32.25385977500008,17.825095177000037],[31.97440455600008,17.776941669],[31.694886601000064,17.80120837100003],[31.519262417000164,17.843522421999978],[31.111294907000172,17.95943874700015],[30.96602584400017,17.989493336000066],[30.323129666000057,18.00118235700006],[29.574059723000175,18.01480181100004],[25.67917969300015,17.939659431000166],[25.59525769100003,17.931420187000185],[25.479872306000118,17.854573450999965],[25.27541456200015,17.669910557000037],[25.051452351000137,17.52346273800009],[24.94547319100019,17.49815869100013],[24.764099793000128,17.500318084000185],[24.546341622000057,17.529486013000053],[23.833374260000085,17.51992273100018],[23.80443998000004,17.49086998900009],[23.795490069000152,17.312269922000098],[23.67896995500007,17.124309817000096],[23.760349970000107,17.053740067000035],[23.657220048,16.992330045000017],[23.455790015000048,16.94310007700011],[23.488410035000186,16.848210000999984],[23.388010006000115,16.81136004500013],[23.396439954000186,16.711949952000055],[23.165179817000137,16.540560015000096],[23.15901999800019,16.442310070000133],[23.284770071000025,16.42459999700003],[23.352829951000103,16.388820066000108],[23.45167994800005,16.278199966000045],[23.340679997000052,16.226309984000125],[23.236759921000157,16.237920084999985],[23.13507001800008,16.329679998000188],[23.04052001200006,16.355570070000056],[22.988150024,16.313469967],[23.01906001000009,16.200590122000108],[23.104900019000013,16.13008004400018],[23.113310077000108,15.979989929999988],[22.757640084000116,16.066390035000097],[22.750429954000026,16.162440083000092],[22.689790019000043,16.159250073000067],[22.58384993800007,16.22670004400004],[22.545420027000148,16.332739929000127],[22.634290044000124,16.39144998100005],[22.56757002700016,16.44663998500016],[22.454480015000172,16.442630074000135],[22.36729996600002,16.383550028000172],[22.357179874000053,16.46913991300005],[22.404539806000173,16.532889945000022],[22.47780002000013,16.548950007000087],[22.47037004100008,16.644129987000042],[22.60045002900017,16.654570084000113],[22.56014990600005,16.71320004600011],[22.553629950000072,16.848530004999986],[22.422770018000108,16.79699998400008],[22.25662001900008,16.908219960000054],[22.253309963000106,17.002160056000093],[22.202889924000033,17.047199870000043],[22.023299920000113,17.014850040000056],[22.017789967000112,17.132250077000037],[21.86596992900013,17.21823002200017],[21.88738997500019,17.275849983],[21.963299994000067,17.311129841000024],[21.942233299000065,17.42278360800009],[21.303230958000142,17.388242941000044],[20.902986665000128,17.326666896000063],[20.754724825000096,17.292441867000093],[20.368814064000105,17.133307226],[20.18322329199998,17.067595913],[20.01665593900009,17.027057694000064],[19.825536312,17.02022168600007],[19.687954816000058,17.069467518000067],[19.561669031000122,17.224645855000176],[19.400113620000127,17.625288020000028],[19.28704417600011,17.80953089000002],[19.072697022000057,18.089579415000117],[18.961889419000045,18.19895534000017],[18.844213935000084,18.28453312500011],[18.70963093900008,18.335136410000075],[18.528660852000087,18.341809764000118],[18.235006502000033,18.26267819500015],[18.006332680000128,18.162160222000068],[17.571580271000073,17.951893242000097],[17.262423725000076,17.841213270000083],[15.357780102000163,17.480875288000107],[15.046805075000066,17.39266012900015],[14.72152487500017,17.237600797000027],[14.14512187500003,16.922013634000052],[13.999065006000023,16.81768729900017],[13.730424694000021,16.679454905],[13.534812816000112,16.640332529999966],[13.36205531700017,16.62733256300004],[11.1436998960001,16.732968535],[10.950896923000187,16.766355047],[10.48990496099998,16.922165825000093],[10.209723609000037,17.037153095000065],[9.938251551000178,17.17440222700003],[9.675913729000115,17.34485948700012],[9.527779786000053,17.471801009000103],[9.28628433200015,17.73617955000003],[9.240020039000171,17.725090078000107],[9.190759971000034,17.56022995300009],[9.097909966999964,17.591259984999965],[8.99766993999998,17.55032002900009],[8.923440032000087,17.390590006000025],[8.821399849000045,17.444090043000188],[8.685599916000172,17.396579966],[8.609190001000115,17.459020056000156],[8.62818994800017,17.305329983000092],[8.53455999900018,17.309010032],[8.526809840000112,17.414149927000096],[8.478079944000115,17.45785005200014],[8.392449751000129,17.619640036000078],[8.305330076000189,17.665790007],[8.311929945000145,17.84628000099997],[8.444230072000153,17.86108979300019],[8.490559936000125,17.99868002500017],[8.36940996900006,18.126729974000057],[8.38319004400006,18.29707998600003],[8.432179921000113,18.350910060000103],[8.641737678000084,18.437589981000087],[7.471696100999964,18.650324813000054],[7.130356503000087,18.757264011000075],[5.638038706000145,19.53326926600016],[4.655243265000024,20.17422281400013],[4.431843605999973,20.28816759700004],[3.834994502000086,20.48064247400015],[3.484791434000101,20.532064960000127],[2.473387475000038,20.56860993300012],[1.71635588100014,20.55713975700013],[1.023262277000185,20.51890980900015],[0.757011086000034,20.4758983750001],[0.612250456000083,20.43259997000007],[0.429524624000067,20.340720668000017],[0.296524603000023,20.24464512300017],[0.080441619000112,20.02355043900019],[-0.11100375999996,19.780949579000094],[-0.336269014999971,19.461552733000133],[-0.533364931999927,19.204208947999973],[-0.642117344999917,19.08144794800006],[-0.83111586099983,18.908484326000064],[-1.081015449999825,18.730832111000097],[-1.282597303999921,18.599304406000044],[-1.698551936999877,18.359252245000107],[-2.063668683999822,18.18414034100016],[-2.233278345999963,18.114773996000054],[-2.529948067999953,18.013166295000076],[-2.965631658999826,17.90816789600018],[-3.298919282999975,17.857814545999986],[-3.523834067999871,17.836658425000053],[-3.94004165799987,17.822315545000095],[-4.261157405999882,17.83191930099997],[-4.785843111999952,17.884864104000087],[-5.081222493999974,17.935129490000065],[-5.322840329999963,17.98767518699998],[-5.613202772999955,18.065319732000034],[-5.84450412599989,18.139489267000158],[-6.17029463099982,18.271939890000056],[-6.517301674999942,18.459077094000065],[-7.023777252999821,18.763711039000043],[-7.362120838999886,18.948262086000057],[-9.507147163999946,19.79327245600018],[-11.13216710699993,20.183277243000134],[-12.094278595999981,20.744508944000074],[-12.07300014999987,20.638939923000066],[-12.160390014999962,20.56615003400003],[-12.024360024999964,20.55484004700014],[-12.059779994999928,20.42843007600004],[-12.142739964999919,20.380550005000146],[-12.133840043999953,20.249940021000043],[-12.186399957999981,20.143600022000157],[-12.083860053999956,20.13177975300016],[-11.974960020999902,20.0881199370001],[-11.972480075999954,20.030969950000042],[-12.08929995099993,19.903699945000028],[-12.211479986999962,19.831330040000125],[-12.283709955999939,19.836380053000084],[-12.346730032999915,19.88914995900018],[-12.398100051999904,19.788460025000177],[-12.37170004899997,19.71683996500002],[-12.26318004299992,19.668619998999986],[-12.165470127999924,19.685950045000027],[-12.173190010999974,19.586209915000097],[-12.24384002599993,19.563880021999978],[-12.29611003499997,19.642990082999972],[-12.345180000999903,19.593040017000135],[-12.430020040999977,19.6584199940001],[-12.447380009999904,19.718489800000043],[-12.527290082999912,19.803440028000182],[-12.61252000699983,19.789900044000035],[-12.689849978999973,19.81653996200015],[-12.680050066999854,19.87808006300014],[-12.409159914999918,20.072900018000155],[-12.458879922999927,20.120159971000078],[-12.734669942999972,19.999999941000056],[-12.874550017999923,19.951929944000085],[-12.860660106999887,20.024950067000134],[-12.947240103999945,20.05348008700014],[-13.097180071999958,20.034359918000064],[-13.183259996999936,20.157769982000048],[-13.165480043999935,20.304849978],[-13.10277997199995,20.331440082000086],[-13.059310080999978,20.430689996000126],[-12.918989954999972,20.511419970000134],[-12.845030061999921,20.581269973000076],[-12.874870022999971,20.640709980000054],[-12.849060214999952,20.73007003600003],[-12.873369979999893,20.787740161999977],[-12.976120051999942,20.82390997699997],[-13.025140027999896,20.740459967000163],[-13.090960054999925,20.76108000200003],[-13.161980062999874,20.584879967000177],[-13.12528993299992,20.409489799000085],[-13.165590055999871,20.350120025000138],[-13.22757003099997,20.355419986000186],[-13.219359931999918,20.568779948000042],[-13.155960003999951,20.728569994000054],[-13.16612005299993,20.91105024600006],[-13.106031534999943,21.010519355000042],[-13.254815509999958,20.980762560000073],[-13.494200896999814,20.879722063000088],[-13.60780725099994,20.78714466300005],[-13.69109313399997,20.691950270000063],[-13.846641367999837,20.437292639000134],[-13.960154299999886,20.18395001900018],[-14.180348454999887,19.636633671000027],[-14.295088731999897,19.414893242000176],[-14.466302460999941,19.202763586000117],[-14.603906165999945,19.114996019000046],[-14.745787480999923,19.08555111900006],[-15.5843800479999,19.171319939000057],[-15.504469975999882,19.09253991500009],[-15.472279971999967,18.987500000000125],[-15.477379974999963,18.892569966999986],[-15.682839984999873,18.393340025000043],[-15.73562846499982,18.13765484700008],[-15.736649992999958,17.942089958000054],[-15.777196450999952,17.89526498900011],[-15.78607901199996,17.885006987000054],[-15.88117981199997,17.775180079999984],[-16.069328768999924,17.590229972000145],[-16.10017949199994,17.45648353500013],[-16.175550460999887,17.25416946400003],[-16.353279439999937,16.84428156400014],[-16.4361804859999,16.623834157000147],[-16.448190579999903,16.486513773000127],[-16.5102295719999,16.30696519200012],[-16.50613048599996,15.999634498000034],[-16.53722000099998,15.775830269000096],[-16.596147431999896,15.672180363000166],[-16.199720458999877,15.530043569000043],[-15.914239541999962,15.404302448000067],[-15.0692905599999,15.106191680000052],[-14.902819592999833,15.056124895000039],[-14.649040542999842,14.998247854000056],[-14.317890490999957,14.945462148000104],[-13.730389485999979,14.89293460500005],[-13.415289437999888,14.876535747],[-13.179479510999954,14.87482567100011],[-12.92527046899994,14.902124021000134],[-12.720950514999913,14.880235351000067],[-12.193539540999893,14.899725120000141],[-11.890720489999978,14.904314715],[-11.444549436999921,14.952260710000019],[-11.168180486999916,14.99936767600019],[-10.050439447999906,15.103122059000157],[-9.796695433999957,15.110630568000147],[-8.918510529999878,15.203435503000094],[-8.169492428999945,15.232962433000182],[-7.615109496999935,15.18756654800012],[-6.932553518999953,15.087253105000059],[-6.164248491999956,14.925993334000054],[-5.942504572999951,14.919022776000077],[-5.537127570999928,14.920613828000114],[-5.215247568999928,14.873846663999984],[-4.852262546999896,14.791732176000039],[-4.814211555999975,14.85227818300001],[-4.724433493999868,15.267500233000021],[-4.651059486999941,15.43535941100015],[-4.519555472999969,15.486557248999986],[-4.528307520999874,15.546093572000132],[-4.631530490999978,15.572670743000117],[-4.659661498999981,15.668044564000184],[-4.789558534999969,15.623957597000071],[-4.917558577999898,15.6144580510001],[-4.926146508999921,15.662106153000082],[-4.868333504999896,15.787227013000177],[-4.576787442999944,15.910269328000027],[-4.514319464999971,16.03284125099998],[-4.458703525999965,16.05343022300019],[-4.385224577999963,16.000893292000114],[-4.348847452999962,16.096866251000165],[-4.113107431999936,16.129514435000033],[-4.049637481999923,16.231249784000113],[-3.789771492999932,16.32197315800005],[-3.68010954499988,16.315284566000173],[-3.611710532999837,16.350701460000096],[-3.539902432999952,16.46345532500004],[-3.247840548999932,16.650972581000076],[-3.142115580999871,16.694359658],[-2.929841535999969,16.743657822000102],[-2.684607499999913,16.82956126500011],[-2.439606481999874,16.880248143000188],[-2.201596473999814,16.95459361200011],[-1.837839476999932,17.04127908700019],[-1.641101457999923,17.104503448000116],[-1.285361583999929,17.182360432000053],[-1.151847421999946,17.167070332000094],[-0.567629440999895,17.04534883700012],[-0.448174579999829,17.064386653000042],[-0.356382513999904,17.106134231000112],[-0.287210522999942,17.047088752000093],[-0.234954552999966,16.94258536300015],[-0.185972554999978,16.76971598500012],[-0.253659440999968,16.691710977000128],[-0.335631435999971,16.704590274000054],[-0.434930501999929,16.861440325000103],[-0.552444448999836,16.886428790000082],[-0.676550427999928,16.87661844300004],[-0.955042513999899,16.95064389200013],[-1.114696479999964,16.952623697000092],[-1.46343344099995,16.918485882000027],[-1.733755517999953,16.85198101200018],[-2.015875459999904,16.7978231890001],[-2.187364504999891,16.715209475],[-2.489353579999886,16.61971462000008],[-2.958801513999845,16.548658879000186],[-3.037802459999966,16.45903437400011],[-3.015161430999967,16.39413866199999],[-3.062077457999919,16.288965055000176],[-3.052839426999867,16.176932202000046],[-2.974945561999959,16.16635306699999],[-2.675715473999958,16.20049071400007],[-2.478275553999879,16.179771991000052],[-2.34292156399988,16.218370655],[-2.188184422999939,16.29742574800008],[-2.11589050799995,16.270077275000062],[-2.165170565999972,16.17094383500006],[-2.322371483999973,16.09171758300016],[-2.391753525999945,16.03741106500007],[-2.53290343499998,15.828794379000101],[-2.61110055599994,15.765219488000128],[-2.706180506999942,15.751409464000062],[-2.93343049899994,15.796401509000077],[-3.078525433999971,15.761369512000101],[-3.131350534999854,15.667074778000028],[-3.323374571999977,15.64136647500004],[-3.571110437999835,15.750349488999973],[-3.621715507999966,15.683893737000119],[-3.49599550999983,15.612969090000092],[-3.473192541999936,15.54746250500017],[-3.61792554699997,15.538843729000064],[-3.641549437999913,15.50767478400013],[-3.649341422999896,15.346175122999966],[-3.699598475999949,15.258741815000121],[-3.801945536999938,15.273839969],[-3.838179498999978,15.235503323000046],[-3.781003519999899,15.092101533000118],[-3.879904444999966,14.928543277000074],[-4.010570436999956,14.678758371000185],[-3.904085017999932,14.69453125800004],[-3.490576355999963,14.997588095000083],[-3.273836032999895,15.131490981000127],[-3.068035540999972,15.19522478700003],[-2.978529736999974,15.171219717000156],[-2.892715880999958,15.109954624000181],[-2.777680803999885,14.97342675900012],[-2.560323549999964,14.640971567000065],[-2.440082335999932,14.493202224000129],[-2.355937485999902,14.416596747000085],[-2.143431429999964,14.258155978000048],[-1.826374542999929,14.108155785000122],[-1.550992477999955,14.032581864000178],[-1.272511455999961,13.997553052000171],[-0.765680568999926,13.97271495900003],[-0.553004527999974,13.940817794000054],[-0.117419482999935,13.893470937000075],[0.031171544000131,13.906970160000128],[0.241644485000108,13.950906252000095],[0.444404567000106,13.974854523000147],[0.848398554000028,13.990524491000087],[1.135959524000043,13.987383960000045],[1.41098753700004,14.007252423000068],[1.720023446000141,14.08209745400012],[2.01728144000009,14.087068258000158],[2.360204545000045,14.159883360000038],[2.592624495000052,14.155892736000055],[3.125662575000092,14.168061918000149],[3.338589570000124,14.15687375400006],[3.538718573000097,14.12981445500003],[4.050700475000156,14.106706889000122],[4.272690486999977,14.081157507000057],[4.502114576000054,14.017862907000108],[4.673760531000028,13.98713401100008],[4.933565499000167,13.985914947000083],[5.148142555,14.023152391000053],[5.328052564000075,14.094916904000115],[5.502451469999983,14.139363958000104],[5.995334534999984,14.184220718000063],[6.227567568000097,14.182371000000103],[6.431363485000077,14.19849979300011],[6.79441958700005,14.211169040000073],[7.129064557000106,14.24907770600015],[7.306907588000172,14.278334739000172],[7.64656745000002,14.219088598000042],[8.037178556000129,14.159372566000059],[8.218784558000038,14.146343401000024],[8.372079509000116,14.112075497999967],[8.607858589999978,14.002793921000091],[8.778465524000069,13.97136580800003],[8.990699503000144,13.888620330000094],[9.488298562000068,13.58941136400017],[9.694548533000045,13.406392341000071],[9.85505845800003,13.279231829000139],[10.134380521000082,13.102943808000134],[10.294469507000144,13.038248089000149],[10.598139489,12.946314201],[10.718729427000085,12.926945635000095],[11.214899539000157,12.878527906000102],[11.832821488000036,12.847280003000037],[12.606348037999965,12.731577780000066],[13.033690455000169,12.553817308000134],[13.181973475,12.465501848000088],[13.24826242500012,12.389086951000024],[13.507836433000136,12.02095729299998],[13.77953002400011,11.453981525000017],[13.85493350300004,11.108053868000184],[13.873999483000148,10.973718112000029],[13.910880527000074,10.959670042000141],[14.0704495,11.085940396000183],[14.152700446000097,11.023545844000068],[14.147878505,10.912036524000143],[14.259460579000063,10.809044727000185],[14.247326433000126,10.493603536000023],[14.307991463000121,10.23882435700017],[14.489990577000071,10.081104431000028],[14.744788531000154,9.996177480000142],[15.00341953000003,10.009025596000015],[15.245400549000067,10.007115696000085],[15.432900538000183,9.957405310000183],[15.592439504000026,9.977040756000179],[15.73383952800009,10.084630363000088],[15.758609561000071,10.234770868000055],[15.683219539000106,10.416747016000102],[15.657640485000059,10.566356444000121],[15.639089489000071,10.81838887300006],[15.57283959700004,10.981222765000041],[15.703309452000155,11.221544167000161],[15.970239541000183,11.452059245000157],[16.151216565000084,11.522109324000098],[16.19507956700005,11.437976977000062],[16.27882953200009,11.405519398000138],[16.440650555000047,11.284776742000076],[16.589040584000145,11.216931438000131],[16.79487045400009,11.078971011000021],[16.92584054100007,10.88241538200009],[17.024200499000187,10.675898866000182],[17.267509546000156,10.516890977000116],[17.428800497000054,10.373391118000143],[17.54334054500015,10.340453424000145],[17.522880487000123,10.277636592000135],[17.586509526000157,10.20395295700007],[17.814559486000064,10.204311703000087],[17.950080444000037,10.28940696300009],[18.008735494000177,10.454650485000172],[17.95138953000003,10.610923358000036],[17.853010461000167,10.77109331400004],[17.705730532000075,10.925051608],[17.535588492000045,11.046217814000101],[17.44156043600009,11.188614351000126],[17.293750250000073,11.36263267400011],[17.303299593000133,11.498791067000127],[17.368085110000095,11.52251654100013],[17.935815451000053,11.48845564800007],[18.615272472000186,11.391398238000022],[19.464597478000087,11.245809441000063],[19.83810506800006,11.105753993000064],[19.937695401000155,11.008632011000032],[19.94408426500013,10.875340508000022],[19.763219542000115,10.680818708000118],[19.79444146100019,10.642553308000174],[19.737451560000068,10.511513483000158],[19.7409494960001,10.258388222000178],[19.675090536000084,10.084220152000114],[19.5628504820001,9.963914864],[19.55446053200012,9.849887620000118],[19.626640453000107,9.836007692000123],[19.86352946600016,9.940011352000056],[19.99773949400003,9.965196624000043],[20.104759466000075,9.943067058999986],[20.342390445000092,9.954554290000033],[20.44791944399998,9.924925435000148],[20.659389497000063,9.94404606500018],[20.901100451000048,10.079960637000056],[21.064039452000088,10.25212844900011],[21.05091054100012,10.374051109000106],[20.98188054000019,10.414128174000098],[20.769329556000116,10.421296713],[20.723459591000108,10.490111802000115],[20.739780498000187,10.542519317000028],[20.88665055200005,10.604813957000033],[21.085208451000085,10.647926779000102],[21.26904152500009,10.640423466000186],[21.59263244100015,10.38135761400008],[21.89975560000005,10.158011243000033],[22.159835494000163,10.08609216700006],[22.767774597000084,10.1057028030001],[23.100557685000126,10.132914535000111],[23.46230930200005,10.277604111000187],[23.760044732000097,10.258786288000067],[24.41509249300009,10.04687391200008],[25.02303159600001,9.948825929000066],[25.3445272780001,9.955682890000162],[25.580298110000115,10.022586673000035],[25.739726785000187,10.089374361000182],[25.85606662900011,10.106609894000087],[26.140452914000093,10.095837686000039],[26.393329211000037,10.030143126000098],[26.786785381000186,9.858849115000055],[26.89193474700005,9.825551814999983],[27.02808283500002,9.810277428000177],[27.324624593000067,9.810277428000177],[27.762649443000157,9.732065219000049],[28.176609513000187,9.670742377000124],[28.547920448000013,9.599248431000149],[28.860439540000073,9.490954074000058],[29.115533543000083,9.377667288000112],[29.256530566000094,9.337812009],[29.370910520000052,9.338374938000129],[29.55087048400003,9.416140559000098],[29.668840575000104,9.521721023000111],[29.838609486000053,9.57551524000013],[29.933404452000104,9.584565516000055],[30.008829511000158,9.532023388000141],[30.192174590000036,9.484018720000165],[30.711332575000142,9.46286698700004],[31.076854464000064,9.406415037000102],[31.286403553000014,9.394021052000028],[31.631074452000178,9.33375718000002],[31.720878498000047,9.329583663000108],[31.88156545000004,9.381981957000164],[32.04360959900015,9.48098095100005],[32.212978525000096,9.541336689000047],[32.585391513000104,9.615711326999985],[32.819339483000135,9.703369271000156],[32.95508960200016,9.76708749300019],[33.2274585400001,9.799292441000148],[33.35739849100008,9.852871578000133],[33.53252058900017,9.96042396900009],[33.60100945500005,9.957414195000126],[33.64075057300005,9.849797766000165],[33.545238450000056,9.69386167800019],[33.45952946700015,9.504437204000112],[33.396560587000124,9.439465719],[33.23423044700007,9.343522600000085],[33.19200158100011,9.291280377000078],[33.19638045500005,9.207730236000032],[33.32883045100016,9.05537288500011],[33.37041055800012,8.97870747200011],[33.51842155700018,8.815930241999979],[33.54925153800008,8.760740942000098],[33.542308472000116,8.661430979000158],[33.48537053900003,8.6342561780001],[33.518089466000106,8.485268855000129],[33.56750000000011,8.451762919000032],[33.627948557000025,8.506246244000067],[33.644599542000094,8.649314938000146],[33.64170057700011,8.907908554000073],[33.60440060500014,9.092401283000186],[33.60718155300003,9.230605624000077],[33.69248954600016,9.65225458100008],[33.71590053699998,9.92430048100016],[33.713409603000116,10.17416400899998],[33.65298060700013,10.53491978000011],[33.53102156900013,10.875424874000089],[33.476589490000094,11.147317050000083],[33.47237054300018,11.300406476000092],[33.54584161200006,11.637733153000056],[33.62245958300008,11.82197057000019],[33.81485745400005,12.08793238100003],[33.935913593,12.111079845000177],[34.12324158600012,12.204737555000065],[34.21690348700008,12.27498175900007],[34.45106553100004,12.368638463000082],[34.755474461000176,12.392052639000042],[35.481372590000035,13.188145016000021],[35.621868543000176,13.492533663000188],[35.66870158900019,13.77350712700013],[35.809196535000126,14.218382506000069],[35.97311051900016,14.569600510000043],[35.996524528000066,14.733502927000018],[36.09018760200007,15.014476560000105],[36.300933458000145,15.201791644000082],[36.441429578000054,15.272036184000058],[36.58192854800012,15.24862150500013],[36.816085563000115,15.037892077000095],[36.909751487000165,14.850574143000074],[36.97999954700009,14.546185160999983],[36.99852343600003,14.268333333000044],[37.1697794910001,13.846370667000087],[37.22801368900002,13.763333334000095],[37.30416666700006,13.80916666600018],[37.36083333300013,13.722500000000139],[37.42,13.7025],[37.42833333300007,13.60833333300019],[37.49250000000018,13.54916666700018],[37.47166666700008,13.35750000000013],[37.585,13.284166667000079],[37.64583333300004,13.293333334000124],[37.77500000000015,13.19],[37.86166666600019,13.238333333000128],[38.023333333000096,13.280833333000146],[38.09,13.417500000000132],[38.186666667000054,13.425],[38.21583333300009,13.504166666000174],[38.310000000000116,13.515833333000103],[38.33166666600016,13.600833333000082],[38.41083333300003,13.620833334000167],[38.50750000000011,13.56666666700005],[38.5175,13.482500000000186],[38.60583333300008,13.284166666000147],[38.6275,13.193333333000055],[38.52,13.141666667000152],[38.54333333400007,13.064166667000052],[38.42666666700018,13.042500000000132],[38.40083333400014,12.933333333000121],[38.41916666700013,12.885],[38.31583333400016,12.8308333330001],[38.24000000000012,12.87],[38.058333333000064,12.923333334000063],[37.913333333000026,12.7775],[37.959166666000044,12.670833334000065],[37.88666666700004,12.535],[37.81416666700011,12.468333332999975],[37.840000000000146,12.35750000000013],[37.8975,12.343333334000022],[37.96,12.422500000000127],[38.21833333300003,12.444166667000047],[38.15166666700014,12.36],[38.23666666700012,12.315000000000111],[38.365833333000126,12.3875],[38.351666666000085,12.293333334000124],[38.390833333000046,12.163333332999969],[38.370833334,12.072500000000105],[38.52333333300004,12.05],[38.5925,11.9425],[38.72166666700019,11.991666666000071],[38.73833333300007,12.043333334000181],[38.68083333400017,12.130833333000169],[38.58083333300016,12.119166667000115],[38.518333333000044,12.203333334000149],[38.63166666700005,12.249166666000065],[38.65333333300009,12.325000000000102],[38.554166667000175,12.325000000000102],[38.525833333000094,12.525],[38.71916666700014,12.5225],[38.65,12.610000000000184],[38.755000000000166,12.634166667000159],[38.871666666000124,12.700833334000151],[38.91666666700013,12.76833333400009],[38.76833333300016,12.89583333400003],[38.80333333300007,12.955833332999987],[38.9,12.9],[38.913333333000026,12.8],[38.991666666000185,12.786666665999974],[39.09666666700002,12.66166666700019],[39.16333333300014,12.614166667],[39.138333334000095,12.5375],[39.225000000000136,12.494166667000115],[39.2025000000001,12.649166667000145],[39.1475,12.680833333000123],[39.15000000000015,12.760000000000161],[39.21000000000015,12.916666666000026],[39.2975,12.945833333000053],[39.23333333300013,13.047500000000127],[39.33750000000015,13.135833333000107],[39.21916666600009,13.175833333000014],[39.091666667000084,13.171666665999965],[39.08916666700014,13.243333333000123],[39.14666666700009,13.275],[39.066666667000106,13.432500000000118],[39.09333333400019,13.511666667000156],[38.9616666660001,13.585],[38.9725,13.628333334000047],[38.881666667,13.716666667000027],[39.0025,13.804166667000118],[39.04250000000013,13.768333333000157]],[[22.527620008000042,15.826840062000144],[22.57891997100012,15.774620042000095],[22.55716003000009,15.623020030000191],[22.456949927000096,15.419640047000144],[22.375759837000032,15.401329922000116],[22.305529983000042,15.338599925999972],[22.34323997200005,15.270879940000157],[22.387990056999968,15.086380036000037],[22.323629940000046,15.07305004400007],[22.27964976700008,15.13267997600019],[22.209709993000047,15.092189927000163],[22.275999993000084,15.005490060000113],[22.211800054000093,14.894019959000161],[22.124349991000145,14.829250068000078],[22.00773993100006,14.80657007100018],[21.871699907000107,14.845440032999988],[21.803679983000166,14.958800060000044],[21.87197995500003,15.10576001000004],[21.854619986000102,15.199640083000133],[21.87180006300008,15.343050063000021],[21.990429951000124,15.424840029000165],[22.04728,15.403280047000123],[22.083499981000102,15.530130069000109],[22.133770051000113,15.56147007200019],[22.177480033,15.66267996800002],[22.279990014000077,15.589760001000116],[22.358080040000118,15.614029986000105],[22.362330042000053,15.674860022000075],[22.527620008000042,15.826840062000144]],[[37.1562885730001,18.568945316000054],[37.07123958100016,18.535798241000066],[37.020099577999986,18.683879481000133],[36.95468150600004,18.76217383300002],[36.94324859000017,18.870147330000066],[37.01152053200019,18.94883278100008],[37.120510587000126,18.918395576000137],[37.16971956700013,18.873577372],[37.21002948100005,18.752404389000162],[37.1562885730001,18.568945316000054]],[[11.331450033000124,15.944130087000076],[11.233760007000171,15.961459957000102],[11.24175993900019,16.099910046000048],[11.297680074000084,16.10790997700019],[11.304119940000021,16.33900993600014],[11.427590026000132,16.430190039000138],[11.524409985000148,16.392709931000184],[11.537529985000162,16.31133994900017],[11.44044001200001,16.243230079000057],[11.459929999000167,16.027770022000084],[11.40581002,15.965040026999986],[11.331450033000124,15.944130087000076]],[[2.200730032000081,18.58411997000013],[2.106489998000143,18.6378400320001],[2.091150034000123,18.713449937000064],[2.158020019000048,18.75503993500007],[2.12287006400004,18.920170074000055],[2.071729927000092,18.961850018000064],[1.966640022000092,18.95347006000003],[1.908139962000178,18.896869959000185],[1.837840052000047,18.989179758000034],[1.845529835999969,19.28880006600008],[1.873060063000139,19.391009932000088],[1.788270013000101,19.407849938000027],[1.751990009000167,19.3492500750001],[1.689150001000144,19.13724001000014],[1.652019997000025,19.308679937000136],[1.737280021000174,19.428309971000147],[1.620089975000099,19.481639797000184],[1.505380051000031,19.677109970000174],[1.51092978500003,19.74752992600014],[1.660050028000171,19.809020037000096],[1.640309917000138,19.882889984000144],[1.463329761000125,19.90142999200009],[1.354229945000043,19.96859991500014],[1.417260055000156,20.065229948000024],[1.522900022000044,20.04730002600013],[1.530479794000144,20.15450991600011],[1.467180022000093,20.24735006300017],[1.407810071000029,20.18528999900019],[1.293669924000142,20.16204005000003],[1.18510996100008,20.234409955000103],[1.062430029000154,20.190549828000087],[1.071560009000052,20.29346993500019],[1.192329948000179,20.266079820000073],[1.270309962000169,20.368039914],[1.351829913000074,20.402070030000175],[1.457030006000139,20.38232006100003],[1.589090043,20.446819938000147],[1.693310057000076,20.443200087000037],[1.851750030000062,20.523720069000092],[1.948850036000181,20.530649975000074],[2.066739937000023,20.495980026000154],[2.219320029000187,20.523720069000092],[2.344150045000049,20.4543699620001],[2.413499975999969,20.461300044000097],[2.489790022000136,20.385019856000042],[2.683969968000042,20.287920025000176],[2.67704006200006,20.24629992800004],[2.739450054000031,20.128420060000053],[2.829609945000186,20.066000036000162],[2.905899991000183,19.941170019000026],[2.885090031000175,19.830199992000075],[2.799320077000061,19.821870023000145],[2.739820048000126,19.749690043000044],[2.676319965000118,19.746519923000164],[2.577879742000164,19.486560083000143],[2.492190054000162,19.444719961000033],[2.517979971000159,19.28503992700007],[2.491479813000069,19.097329946],[2.42883008299998,18.900309917000016],[2.43039982900001,18.781430080000177],[2.319219985000188,18.64180998600017],[2.200730032000081,18.58411997000013]],[[1.387759989000017,19.11691991300006],[1.341240024000058,19.097439959000155],[1.265759846000094,19.172630056000173],[1.163310064000143,19.176250083000127],[1.146939855000085,19.2460300300001],[1.23703990000007,19.28774993100012],[1.199160051000149,19.37136997600004],[1.244900071000188,19.40166002000018],[1.317009995000149,19.32223998700016],[1.372380068000155,19.332109955000192],[1.453389913000137,19.266440073000183],[1.455259950000084,19.207019957000114],[1.387759989000017,19.11691991300006]],[[1.115729931000033,19.43769007500015],[1.117439965000131,19.51039001800018],[1.184650021000039,19.653629962000082],[1.331730017000041,19.60719008600006],[1.327480015000106,19.49936975999998],[1.115729931000033,19.43769007500015]],[[1.162770035000165,19.698220044000152],[1.128290011999979,19.734619917000146],[1.229819737000128,19.84235997900015],[1.381990054000028,19.793950088000088],[1.358689939000158,19.733579991000113],[1.272439803000111,19.69892993300016],[1.162770035000165,19.698220044000152]],[[13.700549940000144,14.334720035000089],[13.836099924000052,14.339689959000054],[13.882780067000112,14.305000120000102],[13.884440111000174,14.230279996000036],[14.042779929000062,14.258330010000066],[14.12443999200002,14.124719942000127],[14.22110998100004,14.084440061000066],[14.246670017000156,14.01861000100007],[14.17805004100012,13.972499987],[14.16027994500007,13.884999933000131],[14.187780073000113,13.796390074000158],[14.14278021600012,13.746109970000191],[14.09971992400017,13.629440064000107],[14.20111006500008,13.522500189000027],[14.256940078000184,13.537220035000075],[14.365550030000179,13.500000085000124],[14.483609966000131,13.54583005100011],[14.661110085000075,13.505279979000022],[14.742219910000188,13.54861011100013],[14.841939973000137,13.543049992000078],[14.975560075000033,13.447780065000075],[15.15416999900009,13.408890037000162],[15.281109967000077,13.427220053000156],[15.283609978000072,13.344169960000102],[15.334169954000117,13.296939930000065],[15.280550047000077,13.18972018400018],[15.32750002900002,13.086669998000104],[15.274719914000059,13.04556000700012],[15.212500024000065,13.066670082000144],[15.200280014000043,12.966389922000133],[15.141390070000057,12.931110064000109],[15.054999998000142,12.948890017000167],[14.936109952000095,12.891669974000024],[14.787499990000128,12.890000073000124],[14.832219975000044,12.708899994000035],[14.813049992000117,12.686109985000087],[14.87000002000002,12.4497199220001],[14.902219947000049,12.378890015000081],[14.888689997000029,12.157809817000043],[14.968889974000149,12.090000061000069],[14.916669954000099,12.030549845],[14.79582995900006,12.105280001999972],[14.615830005000134,12.176389781000069],[14.552780005000159,12.232219970000187],[14.493329965000157,12.384719973000188],[14.59333007600003,12.373609944000066],[14.607689961,12.579470048000076],[14.66244994900012,12.71303998400009],[14.522219946000178,12.778330014000119],[14.456130257000098,12.660869954000077],[14.341739985,12.550269920000062],[14.313799984000127,12.430359838000129],[14.186049972000035,12.358909988999983],[14.006449935999967,12.387749980000137],[13.734230128000092,12.409849991000044],[13.64768005400009,12.494010066000044],[13.623639951000087,12.609449945000051],[13.678330059000075,12.766099970000027],[13.642349993999972,12.87373001900005],[13.636879997000108,13.053060042000084],[13.585289953000142,13.102520068000047],[13.488050011000098,13.327499989000103],[13.383890019000034,13.419439970000099],[13.354719990000149,13.647500064000155],[13.171829964000153,13.763620084000024],[13.051559921000035,13.874360054000022],[12.98320996000001,14.033230044000163],[12.987000022000075,14.142160176000175],[13.210380097000098,14.364589919000082],[13.34817996900017,14.43114007600019],[13.443720086000155,14.450840055000072],[13.613250021,14.430249944000082],[13.700549940000144,14.334720035000089]],[[24.58826991800015,12.770310016000053],[24.510660074000043,12.707060057000149],[24.41898993100017,12.76933997000009],[24.26208995700017,12.813349890000097],[24.190930013000127,12.93652003800014],[24.213159927,13.006139983000025],[24.30816001500017,13.11580992800009],[24.354700047000108,13.289280069000029],[24.45409993000004,13.35013017200015],[24.560790032,13.20675997300009],[24.580720069000165,13.150210038000125],[24.527209999000092,13.068709977000083],[24.565200037000125,13.018719954000062],[24.55708991700004,12.932540051000046],[24.620639990000086,12.83683007400009],[24.58826991800015,12.770310016000053]]]]},"properties":{"objectid":602,"eco_name":"Sahelian Acacia savanna","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Afrotropic","eco_biome_":"AF07","nnh":3,"eco_id":53,"shape_leng":343.977839942,"shape_area":308.965866862,"nnh_name":"Nature Could Recover","color":"#FCC369","color_bio":"#FEAA01","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":3689917.7690503253,"percentage":17.211227466144297}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-110.03192856399988,24.170256221000045],[-110.01049067399998,24.112055303000147],[-110.09553564299995,24.03412405500012],[-110.02891560599994,23.939468899000076],[-110.01715864499988,23.81299218200013],[-109.90505253399988,23.802021612000146],[-109.87812064099995,23.956090883000115],[-109.8222426829999,23.960990776000074],[-109.83393057699993,24.058777914000075],[-109.97187055199987,24.035934211000097],[-110.03192856399988,24.170256221000045]]],[[[-110.29511261299996,23.521998823000047],[-110.2325816039999,23.403812144000028],[-110.14614054499998,23.294480443000054],[-110.10028868499995,23.0316579900001],[-110.06031756799996,22.95296616800016],[-109.96658358299993,22.87166858000012],[-109.89345566799994,22.867628838000144],[-109.7068785269999,22.98826035100018],[-109.63585664899989,23.080460615000106],[-109.52126362799999,23.120655529000146],[-109.43189259099995,23.226708229000167],[-109.40752455399996,23.471236509000164],[-109.47318268399982,23.57665302300012],[-109.67755158899996,23.665345628000182],[-109.7269595549999,23.61122736700014],[-109.68183859699985,23.49750422000011],[-109.67065462299996,23.39710628600011],[-109.76213857,23.270012997000094],[-109.77526865399994,23.196114618000024],[-109.73339065399989,23.007462453000187],[-109.9053266219999,22.98299668300001],[-110.0054325299999,23.029575254000065],[-110.06666568599991,23.154581953000047],[-110.01927960199987,23.21548268200013],[-110.02013354999991,23.34621287900012],[-110.12619764999994,23.481946066000148],[-110.17714654599985,23.622100875000115],[-110.14390559399999,23.696918246000166],[-110.21498865899997,23.742400632],[-110.24001366999994,23.84614965000003],[-110.20295761099999,23.878037092000113],[-110.22850062299995,24.02404263700015],[-110.21333356899999,24.114771039000175],[-110.28974953599993,24.14442856000005],[-110.27239262599988,24.20246670100005],[-110.17926766999994,24.23415130100011],[-110.24119568599997,24.349952491000067],[-110.33187865799988,24.316354135000097],[-110.30080459599998,24.19288233000009],[-110.29759265099995,23.8717791630001],[-110.27548253099997,23.682863806000114],[-110.29511261299996,23.521998823000047]],[[-109.67179053899997,23.078215774000114],[-109.66481059299997,23.185809068000026],[-109.56131755799998,23.162985481000135],[-109.56907668599996,23.114487957],[-109.67179053899997,23.078215774000114]],[[-109.55197860899995,23.193653859000108],[-109.63386561199991,23.26096423000007],[-109.58121451999995,23.318544216000078],[-109.64572164599997,23.35938219000019],[-109.60112757499991,23.470800650000058],[-109.50373052999987,23.497519307000175],[-109.49191254999994,23.388206717000116],[-109.44270356899995,23.31375144400016],[-109.46671252499993,23.240553457000146],[-109.55197860899995,23.193653859000108]]]]},"properties":{"objectid":606,"eco_name":"San Lucan xeric scrub","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Neotropic","eco_biome_":"NO13","nnh":3,"eco_id":607,"shape_leng":11.3540165811,"shape_area":0.342120365015,"nnh_name":"Nature Could Recover","color":"#A85E1F","color_bio":"#CC6767","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":3884.9185881988733,"percentage":0.014725541182024468}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-121.84082209399992,36.63113216000005],[-121.96946755999994,36.56915032800015],[-121.90163116699995,36.38776849800007],[-121.89910388599992,36.30769576400013],[-121.83350387099989,36.247404854000024],[-121.71665839399998,36.194968494000136],[-121.63326746299998,36.1209866750001],[-121.57354017199998,36.023550305000185],[-121.50463106799998,36.00157758000017],[-121.462467415,35.886013936000154],[-121.33203101999999,35.78255030000014],[-121.29848555199999,35.6984866570001],[-121.17440066499995,35.68795762800016],[-121.01244368699997,35.582262332000084],[-120.83663963799995,35.532538535000185],[-120.76777660399995,35.62169046900016],[-120.78131069499995,35.690718795000066],[-120.87149762699994,35.85055079200009],[-121.02036257399999,36.019428204000064],[-121.1493456469999,36.135056391000035],[-121.25795767799991,36.20330670800013],[-121.48783858099995,36.42085095800019],[-121.62010953999993,36.512592062000124],[-121.84082209399992,36.63113216000005]]]},"properties":{"objectid":607,"eco_name":"Santa Lucia Montane Chaparral & Woodlands","biome_num":12,"biome_name":"Mediterranean Forests, Woodlands & Scrub","realm":"Nearctic","eco_biome_":"NE12","nnh":3,"eco_id":425,"shape_leng":4.08900423943,"shape_area":0.470978296093,"nnh_name":"Nature Could Recover","color":"#B54B01","color_bio":"#FE0000","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":4717.601853041083,"percentage":0.14281076048956462}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-73.57250949399997,10.996806567000021],[-73.63573452499998,10.93479875600002],[-73.73855549899997,10.929349178000166],[-73.82891861799999,10.88731225700019],[-73.87834955099993,10.94524713400017],[-73.94641161099992,10.879724791000172],[-73.83267957799995,10.81696612900015],[-73.8023456379999,10.708681495],[-73.69018554699988,10.627943315000095],[-73.56718463899995,10.63818751000008],[-73.44345852699985,10.929062182],[-73.5302584989999,10.911245440000073],[-73.57250949399997,10.996806567000021]]]},"properties":{"objectid":609,"eco_name":"Santa Marta páramo","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Neotropic","eco_biome_":"NO10","nnh":1,"eco_id":594,"shape_leng":2.5636124634,"shape_area":0.102402476544,"nnh_name":"Half Protected","color":"#F1873D","color_bio":"#D6C39D","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":1246.4186344124612,"percentage":0.025524082197626113}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[96.73206355000008,50.75086360900008],[96.52677950900005,50.884654709000074],[96.37486254300006,51.057493409000074],[96.18943053700013,51.030888745000084],[95.96930667200007,51.05075603500006],[96.02864065600005,50.931156335000026],[95.86789654000017,50.9155841000001],[95.88983952400008,50.86480636300007],[96.03923052000016,50.8064133310001],[96.42283653300018,50.40435757500006],[96.56925966500017,50.31948728500015],[96.7848205890001,50.30561708000016],[96.93717961700008,50.36365773600005],[96.98284959000006,50.430667699000026],[96.99871854400016,50.58342989600004],[96.73206355000008,50.75086360900008]]],[[[100.28694955700007,50.096824207000054],[100.36492958700006,50.27021544100012],[100.34484051200013,50.38209809000011],[100.2504116670001,50.41950266900011],[100.13673361400004,50.533922185000165],[100.15968360000016,50.62339648700015],[100.36930862899999,50.898852648],[100.39771255200014,51.04528617300008],[100.32274665400013,51.09060879900005],[99.99681064900005,51.000138225],[99.6160885130002,50.78458501100005],[99.41026266600011,50.643637945000194],[99.23789251500006,50.56019358400005],[99.09107962500013,50.615755544000024],[98.95211052000002,50.89958489100013],[98.93772164200004,50.99459124900005],[99.01643358000018,51.0721345820001],[99.08856153400006,51.214584691000084],[98.97110760100009,51.36261312500005],[98.71072361100016,51.443489606000185],[98.58155865000003,51.384143384000026],[98.67659753000015,51.25773355500013],[98.48204752200019,51.220352782000134],[98.32829257200018,51.29649214600005],[98.20644367200009,51.22568199600016],[98.1380696380001,51.10731812300003],[98.11161752500004,50.97951187000001],[98.17501857600018,50.89346660400008],[98.33452552300014,50.81062540500011],[98.26576961000012,50.66704122400006],[98.12220755700014,50.598448423000036],[98.30247463400008,50.54205833100008],[98.32613356200005,50.482296702000156],[98.46593465400014,50.47948138900017],[98.62604560100016,50.39185630200018],[98.94231459000008,50.328497328000026],[99.27220953500012,50.23206822600014],[99.71115153200009,50.145328939000194],[99.88001251600014,50.12203546300009],[100.28694955700007,50.096824207000054]]],[[[87.5241165990002,51.10589906700005],[87.74259157600005,51.267751606000104],[87.73889163700011,51.4791651650001],[87.69905865300012,51.54919630100005],[87.57137259600017,51.52794482400003],[87.32913961700007,51.43758438700013],[87.19220765000011,51.48904541700011],[86.980087664,51.65831828700016],[86.82237964100005,51.6284976550001],[86.69275652599998,51.54602626600018],[86.63804650300006,51.457424855000056],[86.64571359799999,51.30914127600005],[87.01526651200015,51.29350818900019],[87.5241165990002,51.10589906700005]]],[[[100.85764367300004,51.91045079600008],[99.7846906630001,52.027968767],[99.4321516710001,52.07395155300003],[99.12559563200006,52.13526266000014],[99.00807967300005,52.21190527400017],[98.8292546180001,52.23234052200007],[98.70663458300004,52.18124963600013],[98.6146626420001,52.06373250400014],[98.26212364900016,51.74694970500019],[98.22125265100016,51.61921637400019],[98.34751160600018,51.56211750800003],[98.67961853600019,51.65202716600015],[98.80814362200005,51.667965355000035],[98.93144259100018,51.76350614300014],[98.93300665400017,51.84586353900016],[99.04000064200005,51.89590132100017],[99.27441364100008,51.7985527240001],[99.4722215270001,51.835552457],[99.58193158700004,51.778509247000045],[99.66207867400004,51.69207087000012],[99.86898763100004,51.54969234200013],[100.07376859000016,51.28788879300009],[100.2296376230002,51.23083586000013],[100.34435251800005,51.32686447500015],[100.44196363600003,51.34705983300012],[101.0664675590001,51.280934999000124],[101.18296059000016,51.223663969000086],[101.24950351400014,51.07229853200016],[101.35460654500014,51.085649730000114],[101.46249354100001,51.255372541000156],[101.55689254600009,51.30067622500013],[101.838828589,51.24781139400011],[101.96659058600011,51.25033736400019],[102.0673826370001,51.28967782700016],[102.04979656600011,51.389068591000125],[101.88349960600016,51.586238111000114],[101.9088895650001,51.679321493000145],[102.16437567300011,51.732129494000105],[102.61028252900007,51.69625193100012],[102.93129751900017,51.7623430700001],[103.139999532,51.759679972000015],[103.45279656800011,51.83834849200019],[103.5115966250001,51.90933365600017],[103.49389656000011,52.03144373700013],[103.4142986550001,52.079174820000105],[103.13710056700006,52.09456701100015],[102.78924555000009,52.062320489000115],[102.33174166000003,51.97818177099998],[101.65419755700009,51.95634238700006],[101.37300163700019,51.96361352000014],[100.85764367300004,51.91045079600008]]],[[[90.13629951100012,50.68738158900004],[90.08511357500015,50.796304085000145],[89.93623353999999,50.9165760140001],[89.81993061000014,50.954414775000146],[89.80416056200005,51.08986884500007],[89.64240257100016,51.20232062600007],[89.44336656900009,51.238660032000155],[89.35491150600018,51.30086314100015],[89.30686962200008,51.41126303200019],[89.32893364100005,51.50596361800007],[89.40399157300004,51.538846998],[90.01055855800013,51.629855691000046],[90.11506664100011,51.73140831500001],[90.26515165800015,51.973241813000186],[90.41206362200006,52.096015907000094],[90.58686854900014,52.15066692200014],[90.80320764900011,52.18603771500011],[91.26152760100018,52.22042346700016],[91.4021226270001,52.27109944800014],[91.440086614,52.43595052900014],[91.18379953000016,52.37344215000013],[90.9917905800001,52.3592509180001],[90.39070854500017,52.352986786000145],[90.29566161800017,52.37130107700017],[90.06730655700011,52.29694068800006],[90.00089254700015,52.24695872800004],[89.94783057400014,52.07599673700014],[89.86459358100012,51.97633171700005],[89.75566857000007,51.92983394800012],[89.45497852200015,51.90652152800004],[89.3624575660001,51.86844287700018],[89.24906952700007,51.72474034400017],[89.13854256600018,51.68842373700011],[88.97879757300007,51.684166736],[88.63627663200003,51.78427029700009],[88.47643256400016,51.78702056700013],[88.33154265100012,51.690437908000035],[88.35523963200012,51.48862632200019],[88.23454257300006,51.45015355400017],[88.1513365940001,51.62723550800007],[88.06271355799998,51.71473821900008],[87.95770256000003,51.688587854000104],[87.93666063100011,51.59361200600017],[88.01261157000005,51.44912358600004],[88.09764866000006,51.346632859000124],[88.2638936510001,51.27118064300004],[88.6957626630001,51.15578782000006],[89.16211650100018,51.13441731900008],[89.258186523,51.10291594800003],[89.36437266300004,50.89403456200017],[89.46846751900006,50.803731290000144],[89.64524856300011,50.742314403000194],[89.6662215930001,50.5960113000001],[89.34599265800011,50.59197122300003],[89.10729265200007,50.49857469300008],[88.92742958200006,50.484780595000075],[88.70359756300013,50.57000979900016],[88.59010357700015,50.64367197500013],[88.42991652200004,50.701641721000044],[88.09530658800008,50.77415188900011],[87.96793351100001,50.82364468000003],[87.59864060300009,50.90579588100013],[87.76466364200007,50.544320606000156],[87.81522361700019,50.554838554000185],[88.27675652000005,50.481198673000165],[88.53726154500015,50.45995021300013],[88.63519251600002,50.38458634200009],[88.80406154600001,50.3051850760001],[89.226020634,50.25779429900018],[89.38411757700004,50.169094317000145],[89.58647951900014,49.95452245700017],[89.73609950800005,49.74676759900012],[89.65328965800006,49.684206079000035],[89.85115051700018,49.60625907399998],[90.01620460800007,49.567016679000176],[90.14050253200014,49.44015808300014],[90.183257615,49.516136012000175],[90.16506150900011,49.89887667800008],[90.1154636080002,49.97963463900015],[89.96729251500005,50.09993741300008],[89.789649644,50.18242355500007],[89.69271863300008,50.25729138400004],[89.6280666670001,50.429427848000046],[89.73191861500004,50.457470176000186],[89.94873850100004,50.39531635200012],[90.05658761100017,50.43077867500017],[90.07962057800017,50.540349428000184],[89.97113058800011,50.604720433000125],[89.99096653000015,50.68070255300006],[90.13629951100012,50.68738158900004]]],[[[101.18460059300008,53.04820279100011],[101.27539856500016,53.07625215900015],[101.06539953600009,53.22683757599998],[100.90830255400016,53.222618461000025],[100.76660161900014,53.126314417],[100.76419852800018,53.038322371000106],[100.6855016770001,52.98475128100017],[100.59760267000019,53.125547473000154],[100.51270254000008,53.20394509000016],[100.40119959100008,53.168986351],[100.34429954400014,53.004801799],[100.61569953400004,52.897900515000174],[100.6216966180001,52.82812804400004],[100.51909659100005,52.778498124000066],[100.35739861500008,52.82860530900018],[100.14820056100012,52.85343971500009],[100.07080055800009,52.79939957400018],[100.10839859000004,52.73294616900006],[100.7455975760002,52.59489337300005],[101.02410156400009,52.29956874900017],[101.59329967800011,52.322778239000115],[102.16159858100002,52.36512512300004],[102.32199853600014,52.422381065000195],[102.3164976610002,52.50231257100006],[102.14320365600008,52.527303215000074],[101.86669959000011,52.53186515000016],[101.56860357400006,52.576715037000156],[101.24060059100009,52.59208560400015],[101.10079966600006,52.65021460500003],[101.0286026460002,52.77280999700008],[101.00980354600011,52.89788173900001],[101.04340357900008,52.97791131300016],[101.18460059300008,53.04820279100011]]],[[[96.09835059800008,54.48814620000019],[95.97181654900015,54.53261940400017],[95.70793160600005,54.43028391000007],[95.54546366800014,54.43666605900012],[95.45677156500011,54.48166112100017],[95.2835695940002,54.483625336000046],[95.17986265300004,54.44362421200003],[95.22048152300016,54.32414822900006],[95.29042850500008,54.2785501730001],[95.60109754400008,54.19998843800016],[95.82576758600015,54.12567666400008],[96.33589155500005,54.083408570000074],[96.76719663199998,54.029936386000145],[96.91108658500008,53.95562478000011],[96.90738664500003,53.85297228200005],[96.477363663,53.804349197000136],[96.24675755800007,53.72220922800011],[96.11196163500011,53.64926672100006],[95.78836066100013,53.66646806300008],[95.0963975050002,53.78802979900007],[94.947776638,53.72415852300003],[95.12999753700012,53.488375251000036],[95.11987253300009,53.36334139600012],[95.43067953800016,53.41754163200005],[95.8430175430002,53.42592286400003],[96.06123351900004,53.36936161400013],[96.27001164000012,53.33780894500006],[96.43242660400011,53.56148489300017],[96.63887053300016,53.64639860199998],[96.83039852900004,53.657407896000166],[96.96070057800011,53.601074466000114],[97.0487135790001,53.39728525400005],[97.19389350700004,53.3519312790001],[97.36425753300011,53.401981131000184],[97.47598260300015,53.49134211000012],[97.68791164900011,53.706205828000066],[97.90615059100008,53.70091869100003],[98.37867753400013,53.57924698400012],[98.92382863800015,53.396861968],[99.04067253600005,53.26476719700008],[99.0440365290001,53.12183512800004],[98.66658752600006,52.76646992600013],[98.58139755000019,52.63067521500017],[98.63001258900016,52.47677207300012],[98.96434759600004,52.388769466000156],[99.19529752700004,52.50551294900015],[99.1990506080001,52.622844171000054],[99.42186757800016,52.67310709100019],[99.46970360300014,52.71315884200004],[99.30589254800003,52.85702884600016],[99.29116051500012,52.99273169100019],[99.3861765960001,53.058223859000066],[99.55867767300015,53.07914425100017],[99.69532767300012,53.13676648300009],[99.68533359400016,53.235786599000164],[99.5857775390001,53.32818048500013],[99.24783362000005,53.396029980000094],[99.14907853900013,53.56125556400008],[99.0097426420001,53.60921580800016],[98.81957251400013,53.62039307599997],[98.42646762500004,53.714969107000115],[98.27352857000011,53.791241744],[97.85578155600012,53.90195444800008],[97.65940060500009,53.940342391000115],[97.52596255000003,54.01580718000014],[97.58586851500019,54.06409817399998],[98.00614166700018,54.02767444600005],[98.04064962700005,54.11945829700011],[97.82156361000006,54.27517008600012],[97.23001867100015,54.264641745000176],[96.92402656700017,54.32214227200012],[96.77388757000011,54.381713799000124],[96.34008066200016,54.37656362200005],[96.18715652700007,54.4170534110001],[96.09835059800008,54.48814620000019]]]]},"properties":{"objectid":612,"eco_name":"Sayan alpine meadows and tundra","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Palearctic","eco_biome_":"PA10","nnh":2,"eco_id":764,"shape_leng":68.939166447,"shape_area":10.6080339909,"nnh_name":"Nature Could Reach Half Protected","color":"#B36942","color_bio":"#D6C39D","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":81084.8099194351,"percentage":1.6604496244057914}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[96.73206355000008,50.75086360900008],[96.90000151800012,50.804052317000185],[97.05837254900007,50.906115734000196],[96.99812359700007,51.00422725200002],[96.85188252000012,51.05665806800016],[96.85520963300013,51.2036595510001],[96.98635859000012,51.253800431000116],[97.32669051400018,51.28493299900015],[97.90161866400018,51.27801290000019],[98.15790557999998,51.31345225700011],[98.23369558700011,51.39015572300019],[98.23675565200006,51.46674100500013],[97.98541254999998,51.56243769700018],[97.74379765300006,51.53603604300008],[97.58313752400011,51.44626250699997],[97.11411254100005,51.38427347100003],[96.91192661900016,51.3893845880001],[96.64341754700013,51.42366422499998],[96.10636855900009,51.24186024200009],[95.74949662500006,51.25759257200008],[95.55754852800015,51.170898212000054],[95.42598751700018,51.151889899000196],[95.06136366400005,51.18331918700005],[94.10738355600017,51.416202990000045],[93.753379575,51.469303856000124],[93.35933658300019,51.49712557200013],[92.789390636,51.46152176200019],[92.22717263600009,51.353221035000104],[91.69354262500019,51.206730680000135],[91.382606539,51.084787568000195],[91.10887956500011,51.03125872200019],[90.64691952100014,50.90999588500017],[90.81224853800006,50.860381053000026],[91.05956262600017,50.88707674400018],[91.48085753200013,50.962707662000184],[91.74420150700007,51.05523834200011],[91.94621258200016,51.15409065200009],[92.22387653600003,51.253445541000076],[92.50978861800002,51.308363268000164],[93.11785160500011,51.35146200800011],[94.2183225710001,51.156428700000106],[94.53433959900019,51.11119006000018],[95.06011157500012,50.981038047000084],[95.34275857100016,50.87709356200003],[95.68151855200006,50.656402075000074],[95.80738054000005,50.54982550500006],[96.67147060400004,50.18925547600003],[96.90220662900009,50.171829332000016],[97.19963058400003,50.199024584000085],[97.59120158500002,50.30002014800016],[97.64069353800005,50.4513292580001],[97.58825652000019,50.546258335000175],[97.45205662800015,50.62176067500013],[97.31289658300005,50.63450871100014],[96.99871854400016,50.58342989600004],[96.98284959000006,50.430667699000026],[96.93717961700008,50.36365773600005],[96.7848205890001,50.30561708000016],[96.56925966500017,50.31948728500015],[96.42283653300018,50.40435757500006],[96.03923052000016,50.8064133310001],[95.88983952400008,50.86480636300007],[95.86789654000017,50.9155841000001],[96.02864065600005,50.931156335000026],[95.96930667200007,51.05075603500006],[96.18943053700013,51.030888745000084],[96.37486254300006,51.057493409000074],[96.52677950900005,50.884654709000074],[96.73206355000008,50.75086360900008]]],[[[95.835037635,51.664246137000134],[95.75348657900014,51.79410059300005],[95.58954661100012,51.90669352500015],[95.09515363000008,52.018763761000116],[93.83088653000004,51.969713869000145],[92.78070061400007,51.880921016000116],[92.06539151100009,51.801504831000045],[91.68028262200005,51.733438412000055],[90.39098363900001,51.38076363300007],[90.20916758600004,51.26585159600006],[90.17594155400013,51.18532933500012],[90.27850352700005,51.068056451000075],[90.60449954699999,51.11719016100005],[91.24474351000015,51.24818522700019],[91.44167364300012,51.35123284700006],[91.64969655400012,51.39937179400005],[92.11071061700005,51.42678531100012],[92.29560064900016,51.53466191400014],[92.57584354700003,51.59344420100007],[92.72051955500007,51.52149394400004],[92.78649150300004,51.57649062799999],[92.9417265290001,51.620826537000084],[93.15220651200019,51.61849536200003],[94.3126675970002,51.49902139100004],[94.73995958700004,51.42852438800003],[95.21569059500007,51.38372361900019],[95.66549654400012,51.39474464800003],[95.80650362500006,51.52012484400012],[95.835037635,51.664246137000134]]]]},"properties":{"objectid":613,"eco_name":"Sayan Intermontane steppe","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Palearctic","eco_biome_":"PA08","nnh":2,"eco_id":736,"shape_leng":33.0018529914,"shape_area":4.39232356453,"nnh_name":"Nature Could Reach Half Protected","color":"#FCFA58","color_bio":"#FEFF73","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":34011.81656287174,"percentage":0.3210085964758718}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[11.448782466000182,62.49832069400003],[11.27005145600009,62.443951311000035],[11.276626556,62.31040747700001],[11.118624496000109,62.35606839700006],[11.0359745720001,62.26175354600008],[11.132640547000108,62.05285590000011],[11.230675454000107,61.95975793300005],[11.289435445000152,61.79968202300017],[11.464317485000095,61.5806722800001],[11.414645488000076,61.53941839700008],[11.497349559999975,61.45375501100011],[11.63160954400007,61.49372763700006],[11.688174482000136,61.60125287000011],[11.824949540000148,61.603664176000166],[11.613389465000068,61.73058027200011],[11.610255472000176,61.88731750300008],[11.499758519000068,61.94708131100009],[11.602988529000129,62.04263919800013],[11.581057447000092,62.11937853900008],[11.883135537999976,62.23982145900004],[11.924391433000153,62.334906606000175],[11.813046567000185,62.42094030500016],[11.539409447000082,62.49830560600003],[11.448782466000182,62.49832069400003]]],[[[12.142806564000068,63.303996604000076],[12.337270573000126,63.36411949300009],[12.244197585000052,63.41013765000008],[12.049660485000118,63.37486593100016],[11.99922255100006,63.30352386500016],[11.759524595000187,63.30971105000003],[11.575198497000088,63.38534163300005],[11.286647457000015,63.363745492000135],[11.182855523000057,63.3043779800002],[11.323919433000185,63.11731653300012],[11.477324522000117,63.062561247000076],[11.728974569000059,63.07023337100003],[11.787398446000168,62.921213023000064],[11.663116447000107,62.90226506000005],[11.49772255400012,62.96747190800011],[11.0657745850001,63.042819351],[11.122650492,62.97658924000007],[11.281925428000022,62.94034086100015],[11.298823512000183,62.847853768],[11.173013492000052,62.78459185700018],[11.09338843,62.88070311700005],[10.869495558000153,62.91528467000012],[10.543400464000172,62.88668461100008],[10.237391427999967,62.92941538600007],[10.05083457100011,62.83676015100008],[9.879366481000034,62.57416803300009],[9.801581581000164,62.643792982000036],[9.932456450000018,62.77931561600019],[9.675845489000153,62.785251009000035],[9.582109493000132,62.85270202800007],[9.598238454000182,62.97374743900002],[9.530825489000051,63.039581086000055],[9.365023565000172,62.99841839800001],[9.141118454999969,62.99842644400013],[8.968960534000075,62.95508529900013],[8.807229533000168,62.969982121000044],[8.737737521000042,63.057773672],[8.499999589000026,63.04682539700019],[8.39971145900006,62.93926160700005],[8.297114449000162,62.941832840000075],[7.946169527000052,63.07280058000009],[7.865093557000023,63.024466671000084],[7.974266505000116,62.96786116400017],[7.76291547500017,62.93409634300002],[7.688407564000102,62.95848868700017],[7.413796467000168,62.882256116000065],[7.28089351300008,63.011770937],[7.062584498000092,62.97877557500004],[6.895070486000122,62.90981866400011],[6.97084557300002,62.82701686000007],[6.976948437000146,62.71901000200006],[7.344960590000085,62.74850239900019],[7.503466570000114,62.65780853000007],[7.343588472000079,62.59677084100008],[7.076336519000108,62.58669545800018],[7.022584547000122,62.647440115999984],[6.706997510000122,62.642827722000106],[6.234914474000107,62.579477969000095],[6.397894546000146,62.38696895400017],[6.213774475999969,62.353821377000145],[5.96975246300002,62.265762611000014],[5.982859581000071,62.19976585200004],[5.67759854600007,62.16513853400005],[5.447085479000123,62.189450411000166],[5.391520502000162,62.12639905300006],[5.533352530000059,62.09764946100006],[5.500589514000126,62.02695280100011],[5.289268492000019,62.11655937000012],[5.290584451000143,62.1655423740001],[5.091402435000077,62.19439875200004],[5.082582494000121,62.09905359700008],[5.28479456700012,62.06997258400003],[5.271386539000105,61.90280541599998],[5.390510483000185,61.93227166100007],[5.641638505000174,61.90184451400006],[5.913614499000175,61.91083175900019],[5.90149946400004,61.850164214000074],[5.764507482000056,61.83101458300007],[5.680932532000043,61.876967361000084],[5.392817518000186,61.90340438700008],[5.268463435000172,61.81553672800004],[5.114633551000168,61.79850704800003],[4.968958588000021,61.734845655000186],[4.982562584000107,61.625653093000096],[5.174035428000025,61.63819258800015],[5.325861534000126,61.59647283800007],[5.2139205470001,61.50269610600003],[4.935580508000157,61.39921078200001],[5.05686245600009,61.31287332300013],[4.965671541000063,61.24729951600017],[5.083524452000063,61.15704418800004],[5.390698573000066,61.06596039300018],[5.587206425000034,61.14646572300006],[6.165252476000035,61.16879746000012],[6.359054483000023,61.10643207700002],[5.903221442000074,61.112578359],[5.616889427000046,61.01932063400005],[5.606545488000108,60.92323200400011],[5.851448438000034,60.82213082900006],[6.12769752700018,60.901872903000026],[6.293661557000121,60.869392693000066],[6.324198506000187,60.77132861700005],[5.999999567000145,60.74603974500002],[5.999999567000145,60.466239914000084],[5.930961518000061,60.39904940500014],[6.108518559000117,60.35416766600014],[6.547910496000043,60.427302453000095],[6.22920958300017,60.26895925000014],[6.089614517000086,60.17137562400012],[6.139495558000135,60.10440622900012],[6.017466447000118,60.04102278],[5.999999567000145,59.964294839000104],[5.822327527000084,59.93380667200006],[5.812720525000145,59.823668631000146],[5.949592478000056,59.73609433900015],[5.718565433000094,59.66080473200009],[5.527230555000074,59.727271045],[5.234876478000047,59.528864859],[5.346807575000128,59.30624268400004],[5.900555494000116,59.3299217280001],[6.130759436000119,59.30429372400005],[6.154055427,59.24004744200005],[5.915930587000105,59.075750572000175],[6.073097474000065,58.920350086999974],[6.195175535000033,58.92874657500016],[6.295291502000111,58.85844302700008],[6.257962528,58.67839387900017],[6.382191553000155,58.57221226500013],[6.613398474000121,58.53911883500007],[6.707981546000042,58.43453849900004],[6.828020457000036,58.40838042300004],[6.752150487000165,58.30105099100007],[6.773823574000062,58.242878069000085],[6.913276483000061,58.168775339000035],[7.112829481000063,58.24827199100014],[7.156557535000104,58.44480079800013],[7.209999542999981,58.499230531000194],[7.348187455000016,58.514498167000056],[7.340867539000101,58.72132213100008],[7.400127427000029,58.72971543400007],[7.472632566000073,58.56473476899998],[7.69393844700005,58.5838745100001],[7.720359546999987,58.755510238000056],[7.852445433000184,58.74477201400009],[7.858892457000138,58.6362362590001],[7.99164152000003,58.61733372600008],[8.09968156900004,58.653776900000196],[8.15151542600006,58.75237926200015],[8.327238506000128,58.849935563000145],[8.062455526000065,59.10498748900011],[7.955987586000163,59.22694384500005],[7.985543517000053,59.32215053000016],[7.86260145000017,59.385423673],[7.783907449000139,59.62193617100007],[7.906880529000034,59.61541991200016],[8.082485424000026,59.71181749800007],[8.08415543500007,59.54859166800003],[8.284443526000075,59.49821274200002],[8.457189521000146,59.5175804700001],[8.445208429000047,59.61126181700007],[8.501490562000185,59.67150590799997],[8.710129543000164,59.66161760900013],[8.825636528000189,59.68982874800008],[8.934542427999986,59.779533888000174],[8.755239437000114,59.94285493600012],[9.029362539999966,60.070239916],[8.86303155100012,60.28203971300019],[8.958074454000155,60.30581481300004],[9.112016488,60.26407209700017],[9.26079845400011,60.13468417800004],[9.527562581000097,60.157657298000174],[9.576462437000089,60.30276665000014],[9.528781478000155,60.36368582000006],[9.157134428000063,60.446593068000084],[9.02708450700004,60.58538145900013],[8.870404440000073,60.66657662000017],[8.10745243200006,60.49473285300013],[8.036746552000068,60.53811574000008],[8.206648568000105,60.59401498700004],[8.460664491000045,60.618062667],[8.615448571000115,60.66655382100015],[8.982768545999988,60.72601185700006],[9.116212468000072,60.7130145430001],[9.282960541000023,60.60870159000007],[9.38400656400006,60.61750963000003],[9.411740437,60.730193254000085],[9.133756462000065,60.85464104700003],[9.09602851,60.96464648500006],[9.156656492000138,61.0570988770001],[8.969088441999986,61.165745442],[8.961161509000078,61.24000541600009],[9.190976530000114,61.19478856799998],[9.342757542000015,61.05817394000013],[9.53548850900006,61.08283400200003],[9.841434512999967,61.0504148120001],[9.961254489999988,61.11787354300009],[10.205255546999979,61.038749382],[10.267333431,61.07581466099998],[9.936825433000138,61.2478106440002],[9.610209488000123,61.332596109000065],[9.715987430000155,61.369492577000074],[10.021207561000153,61.26586224600004],[10.134807495000018,61.27629570400018],[10.18396953600012,61.39471255000018],[10.067596533000028,61.5039399800001],[9.910678589000156,61.504733076000036],[9.679027427000165,61.545670794000046],[9.43640754,61.5148005800001],[9.418178577000162,61.55644003100019],[9.64250144,61.641465721000145],[9.30935951300006,61.70872127400003],[9.324921522000068,61.74533191800015],[9.141768556000045,61.82644024300009],[8.563397455000029,61.824071349],[8.208914532,61.8814805130001],[8.850413434000131,61.875743436000164],[9.139330428000108,61.896351183000036],[9.090532496000037,62.019735647000175],[8.88729347200018,62.090561388000026],[8.704363464000096,62.11606735200013],[8.144165503000067,62.25378805600019],[8.23198655800013,62.29560604200009],[8.48444244100017,62.24837083200015],[8.620367574000056,62.196469751999985],[9.166015558000026,62.08158889599997],[9.327244483000186,62.01622111500018],[9.616307490000054,61.778186297000104],[9.854345494000029,61.65258616],[10.207515476000026,61.60221393900014],[10.37013747300017,61.4855834440001],[10.409384561000081,61.37727902900002],[10.539995568000165,61.294161563000046],[10.677688444000069,61.10563093500019],[10.758363591999967,61.060326078],[11.011280479000163,61.071045526000034],[11.18371047700009,60.95103896800009],[11.300520512000105,60.99608348400017],[11.192831497000157,61.10610400900009],[11.258324503000097,61.172242758000095],[11.229366536000157,61.259441876000096],[10.952196444000151,61.44579354400014],[10.97435149000006,61.51781052100017],[10.747901468000123,61.7293293570001],[10.601588474000039,61.75136705600016],[10.564232511000114,61.81188674400005],[10.814105427000072,61.79804604300017],[10.874421435000102,61.889495959000044],[10.791569507000077,62.00564265100013],[10.53315459400011,62.13682412900005],[10.37924558400016,62.16894995300004],[10.176481479000074,62.07637384400016],[10.033603557000106,62.129072881000184],[10.377471471000149,62.21399849100004],[10.588256555000157,62.184998280000116],[10.706004525000026,62.288033830000074],[11.074071495,62.43854498400009],[11.087782445000073,62.524875904000055],[11.270161594000115,62.50151771900016],[11.46295743700017,62.589354533000176],[11.707567524000126,62.49843468800003],[11.90181544800015,62.54711661400012],[12.023120530000028,62.399725373000024],[12.10160347500016,62.375314420999985],[12.39910957300009,62.36853111400018],[12.621046443000125,62.283059506000086],[12.623826553000129,62.37225821100009],[12.411002488000065,62.449566516],[12.701683537000065,62.521964534],[12.930016471000158,62.47820094100001],[12.939073452000173,62.57918795500012],[13.083410496000056,62.65608437300017],[13.016957594000075,62.71860230600009],[12.815842544000134,62.81260434500018],[12.857416448000038,62.8587483980001],[13.177569443000152,62.92570706400005],[13.325267462,62.98175567700008],[13.522871500000065,62.98991495700017],[13.486515498000074,62.90133416600008],[13.771763566,62.86831650800008],[13.877929590000178,62.95571142800014],[13.804350561000035,63.015165943000056],[13.646774469000036,62.99744542600018],[13.548103543000138,63.122168816000055],[13.313461551000103,63.094743564],[12.999999495,62.99900647200019],[13.000000501000102,63.15956937100009],[12.834988487000032,63.0589491500001],[12.773432461000027,63.1517800690001],[12.473514554000133,63.16297275900018],[12.294670556000085,63.12289385100013],[12.065461546,63.18492362300003],[12.142806564000068,63.303996604000076]]],[[[16.407447490000038,68.42863739200016],[16.384538574999965,68.53559953000007],[16.133319525000047,68.51009289500007],[16.064722532000076,68.42517348700017],[16.407447490000038,68.42863739200016]]],[[[17.44781450900018,68.84970380800019],[17.351762593000046,68.90831560700002],[17.09886146300005,68.86032418200017],[17.24701143400017,68.78636930900007],[17.44781450900018,68.84970380800019]]],[[[15.863604465000094,68.94291794700013],[15.603464556000063,68.93851443000017],[15.554920596000045,68.84150211500008],[15.447238454000058,68.80397113800007],[15.434196548000102,68.66015628700018],[15.169560586000102,68.56093081400007],[15.220946514000104,68.36627921800005],[15.615935487000115,68.31431208900005],[15.664903571000082,68.3695441370001],[16.03894449200004,68.48833280400004],[16.19925157600005,68.55977880600017],[16.46245054400015,68.57303947899999],[16.534891478000134,68.65882138500018],[16.451400513000067,68.83218563000008],[16.165546434000134,68.85940133400004],[15.960355433000188,68.75476618100015],[15.853363456000181,68.78211884600017],[15.863604465000094,68.94291794700013]]],[[[17.756422438000186,69.52916937800006],[17.335580491000144,69.53188595300003],[17.27595347500005,69.39821924000006],[17.07721352200008,69.33192375000016],[17.13301453300005,69.23395707200007],[17.04845655300005,69.16156492100009],[16.7866035510001,69.10927039400013],[16.763494476,69.06521544700018],[17.15727058800013,69.06524679500012],[17.3671955210001,69.13066436400015],[17.84249352000012,69.13897284200016],[17.9140515040001,69.17100361400009],[17.88509152500012,69.28843391000015],[18.015319479000027,69.32957346500012],[18.038621505000037,69.47689798600015],[17.756422438000186,69.52916937800006]]],[[[18.773599582000145,69.8743430240001],[18.69248153500007,69.76476372200017],[18.357780573000014,69.79661746900013],[18.214002435000054,69.63887172700015],[17.971353547000092,69.55505822700007],[18.248235469000065,69.50248139800004],[18.74581944,69.55819406500018],[18.7387504780001,69.6606472410001],[18.918750508000187,69.69579809300006],[19.006935506000104,69.77214952000003],[18.773599582000145,69.8743430240001]]],[[[19.500001463000103,69.8389254600001],[19.703189525000028,69.85774115600015],[19.848669525000105,69.97080783400014],[19.746200591,70.01054308400018],[19.43153958700003,69.87048315800013],[19.500001463000103,69.8389254600001]]],[[[19.167295563000096,70.06980431300008],[19.053962509000087,70.07882290500004],[18.768159559000082,69.99957921900011],[18.6671945060001,69.916414814],[18.94161248400019,69.84963770000002],[19.06927456900013,69.77527747800002],[19.34919543500007,69.82279616400012],[19.45377157900009,69.93600784800003],[19.609790481000175,70.00652966100017],[19.438409562000118,70.05266063900001],[19.167295563000096,70.06980431300008]]],[[[20.649446548000128,70.22903163900008],[20.34993549900014,70.17088386299997],[20.280410462000077,70.08086775400005],[20.474206601000105,70.03023619800013],[20.666221586000063,70.04395469100018],[20.73327245300004,70.19840483600007],[20.649446548000128,70.22903163900008]]],[[[19.61158554900004,70.22286591200003],[19.546398483000132,70.19990117300017],[19.693147502000045,70.06260224600004],[19.840375463999976,70.04759394600012],[20.048957449000056,70.09621099600014],[19.783588573000145,70.20223469500013],[19.61158554900004,70.22286591200003]]],[[[22.737138573000152,70.34379883700007],[22.491338592000147,70.38851796700004],[22.40383152300012,70.29930970700019],[22.657218467000177,70.2584061870001],[22.737138573000152,70.34379883700007]]],[[[23.41166150300012,70.64484964200011],[23.31834057800006,70.5389625680001],[22.991966535000017,70.5151500840002],[22.78704844800012,70.41816727300005],[22.892265473000123,70.35413741200011],[23.147441451000077,70.28321058500006],[23.525861581000072,70.42366865200006],[23.586759461000156,70.50340737300019],[23.41166150300012,70.64484964200011]]],[[[23.432649453000124,70.81356058900008],[23.126407568000104,70.83043839000004],[22.993783564000182,70.70503405400012],[22.29877844800012,70.69912095700016],[21.925615447000155,70.67228595799997],[21.955059565000113,70.5942108770002],[22.18201652500005,70.61770987800003],[22.115205548000176,70.48074706500006],[22.87100058500016,70.53481989600004],[23.026510537000092,70.58685525400011],[23.2652145670001,70.74679252800001],[23.432649453000124,70.81356058900008]]],[[[28.539346599,70.77773130600019],[28.373525564000033,70.56436275200014],[28.01743348300016,70.46892137300017],[27.84827058400009,70.52465667100012],[28.13486260600007,70.60389314899999],[28.264036451000038,70.68397569600018],[28.25531759500018,70.75394111800017],[27.97902156800012,70.74502947800016],[27.669408481000062,70.81890958500014],[28.15054145800002,70.82080875600019],[28.416646600000092,70.92631495700016],[28.451385566000113,71.01186032500016],[28.217885524000053,71.03583357400015],[28.12350445600015,71.1241947600002],[27.819564577,71.06063814100014],[27.452465548000134,71.11986047700015],[27.42058548300014,71.02371686300006],[27.1498184940001,71.03348345600017],[27.045680555,70.94819725600013],[27.398261457000103,70.90150972000009],[27.231246504000126,70.78504099600013],[27.017652477000183,70.73381365400013],[27.046545568000056,70.62521050800018],[26.922000545000117,70.61202678000018],[26.957141506000028,70.48422605800005],[26.43562653100014,70.4516164310001],[26.521404581000013,70.55475642100015],[26.646055551000188,70.91668582600005],[26.436782563000065,70.95233976000009],[26.076328539000087,70.77689143900005],[25.92741045100007,70.61345270900011],[25.601900582000155,70.49354991900009],[25.319833446000132,70.34840737500019],[25.45130946500018,70.31282250800012],[25.253019452000103,70.21975270500008],[25.22810759800018,70.14333271400011],[25.093126602000098,70.08378197500019],[24.881271485000127,70.1086406880001],[24.89349950800016,70.22433157100005],[25.064025472000083,70.346897124],[25.166982569000027,70.52892976499999],[25.321252502000107,70.67647556900016],[25.59473958600006,70.7229725000002],[25.793081567000172,70.87009803500013],[25.280960526,70.94371796700017],[24.76599148200006,70.95340057400011],[24.491786572000024,70.9895128300002],[24.538343518000147,70.87641514000012],[24.20779746600016,70.78980912600014],[24.54447555100012,70.71756969300003],[23.99422456100018,70.69656430800012],[23.69557953000009,70.75804607100008],[23.56375549500018,70.71940113900018],[23.581684553,70.62984167700012],[23.709188556000072,70.51943021900007],[23.689832562000106,70.4542185090001],[23.45724246000003,70.36493430900003],[23.151723598000103,70.20338016600016],[23.306983602000116,70.12984388500018],[22.920171511000035,70.03665271200009],[22.86194745900019,70.21402350700015],[22.56080059700014,70.21778480200004],[22.405719462000093,70.25942157100013],[22.084465589000047,70.28456862100018],[21.90206950800018,70.33082868000014],[21.747432447000108,70.23532594600016],[21.433279554000137,70.30024881500009],[21.205423550999967,70.2428032740001],[21.19703443900005,70.17072410300011],[21.7462215970001,70.04648015800018],[21.82151455700017,69.99081309000013],[21.801321546000167,69.83910935900013],[21.355419552000114,70.00657559400014],[21.144767573000024,69.98786735300007],[21.13577245000016,69.89491338800019],[20.96370656200014,69.83027382700004],[20.822769554000047,69.91626125700003],[20.696992557999977,69.7999910170002],[20.39677457900018,69.74951888400005],[20.409851522000054,69.57397232700009],[20.227298532000134,69.36358756300018],[20.203763489000153,69.67008526400019],[20.328165517000116,69.88626896400012],[20.200666543000068,69.96234630200007],[19.904731549000132,69.83851307000009],[19.725864585000124,69.67368663200011],[19.607358556000122,69.80729249300015],[19.104629437000085,69.72606464300003],[18.914703558000042,69.58949896400003],[18.43175858000012,69.48683238500013],[18.437509572000067,69.42802897600006],[18.636955449000027,69.28799101100003],[18.507984446000137,69.25863909400016],[18.336439577000135,69.35986415400004],[18.342323506000184,69.43584208300001],[18.107746557000098,69.44432557500011],[18.128847496000105,69.35717926300003],[17.978214470000125,69.27415030900005],[17.9721714530001,69.1412160070002],[17.78382455600007,69.10701968600011],[17.49548943400015,69.00030112700017],[17.48335646099997,68.81786498100007],[17.2561435180001,68.76940031400017],[17.200553562000096,68.71927955000007],[16.98577349600015,68.70865213500014],[16.57818249900015,68.63104862000006],[16.42486944300009,68.51159577100009],[16.65200057900006,68.44324822300018],[16.86314357000009,68.46939573800012],[17.047239501000035,68.44552240100006],[17.449600525000164,68.48039028000011],[17.41949457300018,68.40767844400011],[16.952417544000184,68.35108048100005],[16.700584436999975,68.40887672000014],[16.46450243400011,68.40873841900014],[16.120195477000095,68.28561664300003],[16.221242505000134,68.21055468900005],[16.415166552000073,68.19886578900014],[16.201324588000148,67.99736232200013],[16.062093465000032,68.04977184800003],[16.101076523000188,68.1854751960002],[16.021402510000087,68.2466436430002],[15.834658568000123,68.18491042300013],[15.637593487000117,68.18266692300011],[15.494866439000077,68.06452802100017],[15.904240435000077,68.03621311400013],[15.87415057600009,67.96905579700007],[15.668855471000029,67.98279742400007],[15.181301453000174,67.91940894599998],[14.763738505999981,67.82902604600014],[14.763351597000053,67.74628895000018],[14.910635550000109,67.67244790400014],[15.330763527000045,67.74325168400003],[15.129591481000034,67.61674177500004],[15.206215487000065,67.56057916800012],[15.556058524000036,67.52388017800018],[15.686219589000189,67.45261002900014],[15.678812502000085,67.34361846600007],[15.562044544000116,67.26740450200015],[15.68323546400012,67.20646538400007],[15.381705550000163,67.18252985300018],[15.047109530000114,67.24283597000004],[14.754594520000182,67.24570543100003],[14.536172516000136,67.18074501100011],[14.318735554000114,67.16695828900015],[14.233779433999985,67.07119605100019],[13.54796557700007,66.93065567400015],[13.735564473000125,66.83491690600016],[13.510821508000106,66.80083508200016],[13.509233473000108,66.71696793800015],[13.258444583000085,66.73216667500009],[13.195012519000102,66.51270330400018],[12.985191522000036,66.52897023100007],[13.126639491000049,66.39590751800017],[12.990709496000079,66.34521494100011],[13.295470467000087,66.23710029200015],[13.672954506000053,66.24242665700001],[14.000000442000157,66.30528791300003],[13.999999437000156,66.4183234090001],[14.346398517000182,66.39611337800017],[14.465507541000079,66.42985204700005],[14.742016468000031,66.43704640200019],[14.776134502000161,66.39319044000007],[14.443533543000058,66.29786439700007],[14.195406578000075,66.2831306870001],[13.902541539000026,66.21521832800005],[13.76890047500018,66.0848638080002],[13.626030432000107,66.1049837290002],[13.446839592000117,65.95812557600016],[13.380393563000098,65.8394064790001],[13.277254580000033,65.8028746240002],[13.334077513000011,65.64332878500005],[13.531616507000024,65.54974232200004],[13.718358437000063,65.54487428000016],[14.00391244399998,65.59726067200012],[14.270977482000092,65.5141643280001],[13.959280486000182,65.42845148900005],[13.967782586000055,65.51681166800012],[13.80263059500004,65.50815215600005],[13.722677464000071,65.44223083500009],[13.551412551000169,65.4916793700001],[13.380167587000074,65.410392678],[13.247360522000179,65.59338437700012],[13.18604555900015,65.76885432300008],[13.10654052500007,65.87485438600004],[12.839683526000101,65.9592474100001],[12.359048434000158,65.62461300100011],[12.420678556999974,65.54605679900004],[12.67216247400006,65.43981181800001],[12.351341442000034,65.453530478],[12.144325532000153,65.36091296300009],[12.117238574,65.20991951500014],[12.361084566000045,65.26600618200013],[12.36959957400012,65.07366732000014],[12.140944440000169,65.176585021],[11.983086549000063,65.15552012500007],[11.543013498000107,64.94372468700016],[11.284056443000054,64.86464998000008],[11.242652523000174,64.80149904500018],[11.583631530000162,64.81000567100006],[11.66677850100001,64.86062180500011],[12.063297507000073,64.95662745300012],[12.406241567000052,64.91399139400016],[12.464467463000062,64.85628769000004],[12.298318528000152,64.67227373500009],[12.53777944400008,64.64630995100015],[12.767711477000034,64.74496210200004],[12.819351544000028,64.82327388800013],[13.047233531000188,64.92073681400012],[13.261857526000085,65.04578089600011],[13.313635560000023,64.98555189200016],[13.100298522000116,64.8689842620002],[12.978106467000089,64.74645022500016],[13.14948855900019,64.7027312240001],[13.345324518000098,64.77210857200015],[13.49153257000006,64.75975599300011],[13.68053157900016,64.66920662900014],[13.9808035370001,64.7517985500001],[14.122329458000024,64.87051027100006],[14.151018533000126,64.95455947000016],[14.913303510000105,64.7822332400001],[15.140861451999967,64.895939457],[14.902996451000035,65.03171924700007],[14.661944482000138,65.07404903200012],[14.625997517000087,65.12942558400005],[14.905971524000051,65.13688782500009],[15.22660245500009,64.97855434400009],[15.453640551000149,64.95297227300006],[15.499999517000049,65.05833916600005],[15.634641548000047,65.12677070000012],[15.618449555000154,65.24590906000014],[15.912106516000165,65.25336359],[15.999999488000014,65.4140614370001],[15.826719565000019,65.45263043000017],[15.426598520000084,65.45775780800005],[15.392195501000117,65.54504191799998],[15.572070473000167,65.59262128900008],[15.726412491000076,65.5325522120001],[15.901336441000126,65.55719634800005],[15.82231454000015,65.657459501],[15.887774521000154,65.68967199300005],[16.582101541000043,65.55979088300006],[16.60692957700013,65.6096662240002],[16.373517545000084,65.64480903000003],[16.365343513000028,65.7167193890001],[16.63132259200006,65.72434155600007],[16.52074249000009,65.8714132790002],[16.67441144100019,65.90653278300005],[17.283182532000183,65.76919714299999],[17.364841547000026,65.85916765400009],[17.188079446000017,65.950427134],[17.125232439000058,66.17830560000016],[16.904546484000036,66.25423726100007],[17.100536503000058,66.28292482800003],[17.312553558000104,66.37404734700004],[17.764732592000144,66.39306823200008],[17.921174445000133,66.44731591000004],[18.143600484000046,66.42702114300016],[18.412347434000026,66.46720717200009],[18.809005579000143,66.46536885300014],[18.86985953700014,66.5255452180001],[18.587207513000067,66.68408422300007],[18.36141345800013,66.71158960600013],[18.05459959200016,66.71125365900014],[17.828206566000176,66.78579643900014],[17.654891439000096,67.03487843800008],[17.910181579000096,67.05110027000006],[17.941995596000083,66.95842827200016],[18.21504950300016,66.95092093700009],[18.291561527000056,67.03590840600003],[18.256313444000114,67.14995124000012],[18.52773656900007,67.15547558500009],[18.708202465,67.04321759300018],[18.721755499000153,66.96975088300002],[18.948028496000063,66.94168055900008],[19.417020454000124,66.97324513000007],[19.401252586000055,67.03690836700008],[19.138698521000094,67.084693765],[18.982353563,67.23921213800003],[19.537008572000104,67.22128995300017],[19.752744510000127,67.25089349400002],[19.769371524000064,67.39841566100012],[19.900598600000023,67.39197618000014],[20.075424481000027,67.3127477490001],[20.530706496,67.32960979100017],[20.25880845300003,67.41907772200005],[20.236879550000083,67.49093393400017],[20.386793577000162,67.56756012000005],[20.33011850000014,67.68636488000004],[20.039590504000103,67.73825422500016],[20.069395546000067,67.78067537300007],[20.422422533000088,67.75645921600005],[20.344171599,67.93800285700007],[20.48163447600018,68.05393731900017],[20.627517478000073,68.07077605900008],[20.94617849300016,68.03167414600011],[20.970979538999984,68.13298252200013],[21.188726464000013,68.20208544600018],[21.182201488000146,68.25238927000015],[21.005817579,68.33064037100013],[21.037231443000053,68.41169153100003],[21.320764573000076,68.34631201600013],[21.42570650400006,68.3817748420002],[21.259325558000057,68.49870255900015],[21.58853955800015,68.49863332500013],[21.605220551,68.55974779300016],[21.35863853799998,68.64932133600013],[21.094106512000053,68.83535985700007],[21.18182145200018,68.90070115100008],[21.65768254800014,68.87859036100014],[21.76742546500003,68.92957295100013],[21.609268507000138,68.992419288],[21.328659488000028,68.9987137620002],[21.314374546000067,69.04957448000005],[21.697128455000097,69.02091742400006],[21.769552457000145,69.06569690300006],[21.282825565000167,69.148747147],[21.51791146200003,69.222100367],[21.62641754599997,69.1708046280001],[22.025459505000185,69.07978135000002],[22.25471645900012,69.10531095100004],[22.387413554000148,69.053137962],[22.48449359400007,68.94098658899998],[22.68441958700015,68.8988475770002],[22.839687471000104,69.04469151800015],[23.175909580000166,69.15701757100004],[23.298372538000137,69.24892715100009],[23.35937150300009,69.38652262900013],[23.609830481000188,69.5430484690001],[23.725360599999988,69.54307143500006],[23.766426561000117,69.42211554300007],[24.00841344700018,69.495606394],[23.914089544000092,69.63885596900008],[23.966163458000153,69.72463066700004],[24.19196656600019,69.76873138000019],[24.376598603000105,69.71402521200014],[24.399555462000023,69.65579495700007],[24.30282544900018,69.45346654300005],[24.480476535000093,69.44473092400017],[24.793893497000056,69.5231422870001],[24.994382586000143,69.64961447700011],[25.329357468000126,69.74274379200006],[25.667913601000066,69.70263437300008],[25.834203520000074,69.65256742200006],[26.01066554800019,69.67420480200013],[26.26980046700004,69.63066232300014],[26.524435477000168,69.62427598400012],[27.092372450000028,69.67137456800009],[27.29519656900004,69.7312151540001],[27.37077552000011,69.91346170200012],[27.685386568000013,69.93867781900008],[27.696281533000104,69.76197070400019],[27.895156603000146,69.76646474500018],[27.94772354100013,69.90814321700014],[28.261640568000132,69.98403732700007],[28.24698246300011,69.72026671200018],[28.364231542000027,69.61954439900006],[28.50822844800001,69.62263514200009],[28.674419460000138,69.72336466400014],[29.184293480000065,69.64274014300008],[29.25683550000008,69.59451134300002],[29.169614589000105,69.48883834200012],[29.387994515,69.41401326],[29.76471161000012,69.5041673340001],[30.06177346700008,69.51868713800013],[30.11575560600005,69.62677127600017],[30.093914545000075,69.69767446600014],[29.622869524000066,69.72813279300004],[29.696557517000144,69.89785040700008],[29.4168894500001,70.01451141200005],[29.12131655400009,70.01579250200018],[29.02942457600011,70.05884095100015],[28.559530557000073,70.13147617700008],[28.67775160200017,70.18786107200003],[28.98934751100012,70.13214807000014],[29.892797484000027,70.07443565000005],[30.253915522000057,70.14079266200008],[30.244106516000045,70.19388833100004],[30.474298555000075,70.26039739200013],[30.77978355500005,70.29065740300018],[30.317878495000173,70.29467803500012],[30.102754603000164,70.22481906300004],[29.962270553000053,70.2987836580001],[29.694463549999966,70.329829222],[29.57603647800005,70.42015059900001],[28.989156572000013,70.47656583700012],[28.797735528000146,70.55767835200004],[28.845893585000113,70.63484734900004],[28.726213587000075,70.73865101800016],[28.539346599,70.77773130600019]]],[[[25.595321458000058,71.1766881050001],[25.590818532000185,71.1282918340001],[25.28688653200004,71.11474131400018],[25.48143151100004,70.95314861400004],[25.8954044890001,71.03009599400002],[25.960245551000128,71.12639970300012],[25.595321458000058,71.1766881050001]]]]},"properties":{"objectid":617,"eco_name":"Scandinavian Montane Birch forest and grasslands","biome_num":11,"biome_name":"Tundra","realm":"Palearctic","eco_biome_":"PA11","nnh":2,"eco_id":780,"shape_leng":344.908355936,"shape_area":47.9862591901,"nnh_name":"Nature Could Reach Half Protected","color":"#62C8CA","color_bio":"#9ED7C2","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":243811.22439361355,"percentage":2.8532099200860492}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-62.239969431999896,-63.307211450999944],[-61.97111562199996,-63.304954738999925],[-62.02528350299991,-63.22689440999994],[-62.256721892999906,-63.27514444699989],[-62.24913161599983,-63.28212687899992],[-62.23910054299995,-63.30563457799997],[-62.239969431999896,-63.307211450999944]]],[[[-60.6463512279999,-62.92137110799996],[-60.56385907099997,-62.998772449999876],[-60.57795780599986,-62.981985705999875],[-60.57868701999996,-62.98182660999987],[-60.6463512279999,-62.92137110799996]]],[[[-60.50987712999995,-62.97050700199986],[-60.515556559999936,-62.878544022999904],[-60.70305654899994,-62.89604677799991],[-60.74748669499991,-62.945588528999906],[-60.62213238999993,-62.9086046569999],[-60.51389969299987,-62.96929646499996],[-60.50987712999995,-62.97050700199986]]],[[[-62.64856060499994,-63.08074470299982],[-62.35556049599995,-62.984108560999914],[-62.355025299999966,-62.889509449999935],[-62.36280862799998,-62.890798006999944],[-62.378227163999895,-62.893313366999905],[-62.396589087999985,-62.896308906999934],[-62.44543679899988,-62.906284924999966],[-62.454768893999926,-62.90876358599991],[-62.47393940699993,-62.91385539099991],[-62.47590370099982,-62.91437711899994],[-62.48178271499995,-62.916481431999955],[-62.49682257499995,-62.92383804499997],[-62.51487412099988,-62.94601296399986],[-62.516356535999876,-62.95452913999998],[-62.520886871999835,-62.96307280799982],[-62.523984104999954,-62.96762702799998],[-62.57689933199998,-62.98904816099997],[-62.58979330799997,-62.99535202399994],[-62.60890313699997,-63.00574017199989],[-62.616524408999965,-63.01119129699998],[-62.61965707199988,-63.01356502299984],[-62.631708592999985,-63.02655405099995],[-62.636693202999936,-63.030709259999924],[-62.642086294999956,-63.034829784999886],[-62.64294331499997,-63.03571594899995],[-62.64856060499994,-63.08074470299982]]],[[[-61.32090656199989,-62.7110263429999],[-61.43666854299988,-62.731870607999895],[-61.41389457699984,-62.812707022999916],[-61.25083483399993,-62.77095867199995],[-61.242406909999886,-62.76787408399997],[-61.22304676699986,-62.73282563699996],[-61.32090656199989,-62.7110263429999]]],[[[-60.14033729299996,-62.461375792999945],[-60.323615502999985,-62.5343671519999],[-60.56166859399997,-62.545475352999915],[-60.804677692999974,-62.457913901999916],[-60.808847771999865,-62.481600912999966],[-60.8147276389999,-62.54381255099992],[-60.946945623999966,-62.600203983999904],[-61.17167964399994,-62.57561726999995],[-60.985675865999895,-62.64566511199985],[-60.81288052299993,-62.66628775399988],[-60.79871444999998,-62.667259576999925],[-60.69306163199991,-62.62103267799995],[-60.34777851799993,-62.63520892299994],[-60.34726412999993,-62.639577850999956],[-60.35283215199985,-62.65104249399997],[-60.36455389299988,-62.65667514099988],[-60.37147672599991,-62.660001769999894],[-60.40222331799998,-62.68854541399986],[-60.39662772899993,-62.69278978199992],[-60.37771393699995,-62.69716474899991],[-60.36298970299998,-62.697203156999876],[-60.32943294699993,-62.68856297599996],[-60.29651840299988,-62.70169301399994],[-60.330794979999894,-62.730386246999956],[-60.326083533999906,-62.73682288799995],[-60.29012136899996,-62.756740063999985],[-60.158682884999905,-62.731963677999886],[-60.14804525499994,-62.72719289099996],[-60.11786608999989,-62.71403175099988],[-60.10553038799986,-62.712196682999945],[-60.060405826999954,-62.705555921999974],[-60.00995678299995,-62.690861599999835],[-59.83315126899993,-62.62395897399995],[-59.82678086999988,-62.62046749799998],[-59.820349361999945,-62.61537353499995],[-59.81805759799994,-62.609591051999985],[-59.9586184879999,-62.61436453899995],[-60.12735123099992,-62.45955319999996],[-60.14033729299996,-62.461375792999945]]],[[[-59.647698687999934,-62.48449526599995],[-59.74750550399989,-62.433807447999925],[-59.97355810899995,-62.444214029999955],[-59.97925759999998,-62.45116869299994],[-59.79159148499991,-62.528650675999984],[-59.79004181399995,-62.52874940099997],[-59.77317277799989,-62.531720433999965],[-59.75705786299994,-62.5366644849999],[-59.73200405099993,-62.54506715299988],[-59.71291411499993,-62.55051022699996],[-59.66985512999997,-62.55554060399999],[-59.626004439999974,-62.546252953999954],[-59.583528310999895,-62.52181631399998],[-59.58081259099998,-62.52249558799997],[-59.61680366599995,-62.47477934799997],[-59.619753984999875,-62.47502084399997],[-59.64160033299993,-62.48107018899998],[-59.647698687999934,-62.48449526599995]]],[[[-59.378985359999945,-62.43934011899995],[-59.335555581999984,-62.36380464299987],[-59.61818108599988,-62.328046559999905],[-59.62447999099993,-62.332147307999946],[-59.64301052399992,-62.34224569999998],[-59.648008929999946,-62.343690692999985],[-59.67537676799998,-62.36009250699993],[-59.677361067999925,-62.36448877299989],[-59.49166852899998,-62.45547550599997],[-59.38214282399997,-62.439444627999876],[-59.378985359999945,-62.43934011899995]]],[[[-59.01611926099997,-62.23629711999996],[-59.208892619999915,-62.28407131499989],[-59.208892619999915,-62.2860927399999],[-59.03472857399987,-62.34601991999995],[-58.82891032099997,-62.31217340899991],[-58.82823566199994,-62.3118910419999],[-58.97543930799992,-62.2440550959999],[-59.01611926099997,-62.23629711999996]]],[[[-57.63766982699991,-61.93494304199993],[-57.68694249099997,-61.89097849599989],[-57.6904942619999,-61.893910089999906],[-57.752311325999926,-61.912698923999926],[-57.76266029899983,-61.919365024999934],[-57.984375522999926,-61.90431404799983],[-58.00535437499997,-61.906499086999986],[-58.02318533899995,-61.91027361799996],[-58.029159947999915,-61.91217576299988],[-58.22611262799984,-61.950449410999965],[-58.355055937999964,-61.93206883099998],[-58.35770012399996,-61.931709792999925],[-58.391446214999974,-61.934917208999934],[-58.393025835999936,-61.93526048599989],[-58.475585758999955,-61.96546262399994],[-58.476398548999896,-61.96581089599988],[-58.49194572099992,-61.97043392599994],[-58.49336967299996,-61.9707068269999],[-58.53981525899985,-61.98446068699997],[-58.54104649599992,-61.9853359089999],[-58.65553336499994,-62.006505828999934],[-58.658296127999904,-62.00852207599996],[-58.76618026699998,-62.06681560699991],[-58.76713884499998,-62.06722802999997],[-58.78805737199991,-62.0779715569999],[-58.79527983399993,-62.082064741999886],[-58.90313105499996,-62.14263708899995],[-58.95329761099998,-62.21796254499998],[-58.93026815199988,-62.216460665999875],[-58.916258925999955,-62.21367395699997],[-58.75784121299995,-62.213770844999885],[-58.71478478799992,-62.235478891999946],[-58.509198312999956,-62.23190888299996],[-58.500191715999904,-62.230051866999986],[-58.473030585999936,-62.223295445999895],[-58.429261126999904,-62.20767737099993],[-58.544801041999904,-62.16425212699994],[-58.54712597399998,-62.16416107799989],[-58.52148424799998,-62.1234386779999],[-58.51909222199993,-62.12268326799983],[-58.415280759999916,-62.088378354999975],[-58.41379400299991,-62.06226026499996],[-58.30738526199997,-62.06834086999993],[-58.29445443599997,-62.07138827099993],[-58.285567845999935,-62.09351481999994],[-58.313095072999886,-62.09382933599994],[-58.36253833999996,-62.104048345999956],[-58.36961423699995,-62.11778699099989],[-58.18742501099996,-62.160037717999955],[-58.17436704799985,-62.15146211699988],[-58.141149037999924,-62.141788301999895],[-58.12506288399999,-62.140283469999986],[-58.08389251799997,-62.06212586499993],[-57.9263915279999,-62.06823711099997],[-57.735839519999956,-61.996563121999884],[-57.633946041999934,-62.013711239999964],[-57.630039889999864,-62.0139852559999],[-57.639095082999916,-61.93634233299997],[-57.63766982699991,-61.93494304199993]]],[[[-54.02129313199998,-61.13909271099982],[-54.12472552699995,-61.1529166869999],[-54.192517672999884,-61.252190561999896],[-54.1820730579999,-61.255104338999956],[-54.05944860599993,-61.26931517099996],[-54.01015190499999,-61.19616823599989],[-54.00671711299998,-61.178644562999864],[-54.02152225599991,-61.140238957999884],[-54.02129313199998,-61.13909271099982]]],[[[-55.34994861699994,-61.06157660299982],[-55.477568137999924,-61.108054222999954],[-55.37890008299996,-61.16431861499996],[-55.357455882999886,-61.235921523999934],[-55.26302677399991,-61.27437584199993],[-55.242512885999986,-61.277700303999836],[-55.22934140899997,-61.27718464599997],[-55.215869064999936,-61.27532536799998],[-55.20986539099994,-61.273129586999914],[-55.201097171999834,-61.2691103869999],[-55.17818606099996,-61.248454494999976],[-55.17220527799992,-61.24238243399998],[-55.17012641699995,-61.240640133999875],[-55.13697276499994,-61.21877254999998],[-55.01844095599995,-61.15724974699998],[-55.01082813499994,-61.15600290099991],[-54.977634878999936,-61.15150245099994],[-54.97447680199997,-61.151390481999954],[-54.824224579999964,-61.14556824699986],[-54.8203855189999,-61.145068042999924],[-54.66239992599998,-61.10627755199994],[-54.8612086309999,-61.09836294999991],[-54.88044691999988,-61.097377835999964],[-54.88639488999996,-61.096550176999926],[-55.09362968799991,-61.09586936099993],[-55.09615621699999,-61.095184093999876],[-55.11031205599994,-61.09134462299994],[-55.11376022999991,-61.09040937899988],[-55.27466409199991,-61.077066988999945],[-55.280346615999974,-61.07730428499997],[-55.34994861699994,-61.06157660299982]]],[[[-44.81072973299996,-60.71606769699997],[-44.76120920599993,-60.74912897999991],[-44.73740420199994,-60.7449767949999],[-44.69671023699988,-60.77322998799997],[-44.70812519699996,-60.74704060599987],[-44.70409068399994,-60.74368384799993],[-44.7419025989999,-60.73242168099989],[-44.771925633999956,-60.731855681999946],[-44.81072973299996,-60.71606769699997]]],[[[-44.532233076999944,-60.67792494199995],[-44.54996758999994,-60.69471596999995],[-44.56410019699996,-60.68991676599995],[-44.595341462999954,-60.71863972199998],[-44.61042332299991,-60.71225247999996],[-44.6152073319999,-60.70797286599998],[-44.64945918899991,-60.685005375999935],[-44.729195637999965,-60.730159796999885],[-44.69797098299995,-60.741914633999954],[-44.64847009699997,-60.7424618899999],[-44.63968491399987,-60.74294468299996],[-44.60229888299989,-60.74466877599991],[-44.6012012459999,-60.7439698689999],[-44.56956297299996,-60.745793438999954],[-44.56273906699988,-60.74425448199992],[-44.507861996999964,-60.72868925599988],[-44.50651443599986,-60.72754500899998],[-44.44896768899986,-60.72165336899997],[-44.44504621699991,-60.72110881899994],[-44.42618338799991,-60.721170573999984],[-44.42214470199997,-60.71864394499988],[-44.438051704999964,-60.71006350399995],[-44.44845632199991,-60.70711217299993],[-44.484295940999914,-60.692130249999934],[-44.49072519199996,-60.6893443269999],[-44.49516109399991,-60.68810843799997],[-44.500038708999966,-60.6860186319999],[-44.52243910399994,-60.68442551999982],[-44.528489993999926,-60.685265852999976],[-44.53205437999998,-60.681708931999935],[-44.532233076999944,-60.67792494199995]]],[[[-45.02305557699998,-60.647099179999884],[-45.03584098999994,-60.63057393899993],[-45.050975501999915,-60.695187887999964],[-45.04572219699992,-60.69870072099985],[-45.02348912799994,-60.723797779999984],[-45.02088954599998,-60.72399234699992],[-45.015934322999954,-60.72421556599994],[-45.007395330999884,-60.723606531999906],[-44.99472859999997,-60.70872362799986],[-44.999403148999875,-60.69952944599993],[-45.01989425199997,-60.67027334399984],[-45.02257223199996,-60.66460140399994],[-45.02305557699998,-60.647099179999884]]],[[[-45.6981735469999,-60.517414548999966],[-45.90637572899993,-60.52552619599993],[-45.91971446599996,-60.52280801699993],[-46.01697416899992,-60.60533283099994],[-46.02004860999995,-60.612575174999904],[-45.819570840999916,-60.585193010999944],[-45.809644023999965,-60.582330163999984],[-45.74113396199988,-60.62228792599984],[-45.7411386579999,-60.622394016999976],[-45.683237771999984,-60.63906750099994],[-45.65336276799991,-60.63903222499988],[-45.61347176399988,-60.64168599599998],[-45.60128198199993,-60.64598599799996],[-45.58593879799997,-60.64709050099998],[-45.57154160099998,-60.655802979999976],[-45.474016838999944,-60.660465742999975],[-45.376424672999974,-60.670107531999975],[-45.361620148999975,-60.67429320799988],[-45.343701721999935,-60.686626898999975],[-45.279851710999935,-60.70156745999998],[-45.26869684999997,-60.70196193499993],[-45.255608521999875,-60.70667588299989],[-45.22377753699982,-60.72369267599993],[-45.15897335299991,-60.752650438999865],[-45.15145286599994,-60.75304877999997],[-45.15298888399991,-60.75025216999995],[-45.16352325499997,-60.7360338229999],[-45.16445686099996,-60.73229906099988],[-45.16887197999995,-60.72647777099996],[-45.16793070899996,-60.70188158899998],[-45.167457190999926,-60.69698429299996],[-45.16724293899989,-60.682484840999905],[-45.18903145199994,-60.666209925999965],[-45.21614825699987,-60.65264227499995],[-45.22424271299991,-60.648906844999885],[-45.21958695699993,-60.63710755999989],[-45.22658174899993,-60.634695925999836],[-45.23179767899995,-60.63440316999993],[-45.25072191899994,-60.62867911599983],[-45.23864356099989,-60.627025255999854],[-45.22846430699991,-60.62536175799988],[-45.38211332399993,-60.606478866999964],[-45.386007021999944,-60.60270509599985],[-45.39185911499993,-60.58734849399997],[-45.393989482999984,-60.58264988999997],[-45.42361449299989,-60.54845389499985],[-45.68092755599997,-60.52264110599998],[-45.6981735469999,-60.517414548999966]]],[[[-26.354446456999938,-58.38615169999986],[-26.420001489999947,-58.454764953999984],[-26.243614562999937,-58.49282214699997],[-26.24694854899991,-58.399480937999954],[-26.354446456999938,-58.38615169999986]]],[[[-37.686950551999985,-54.00019244799989],[-37.65500661599998,-54.17964078099993],[-37.46472953499995,-54.12907963299995],[-37.282226500999855,-54.264084767999975],[-37.14611847499998,-54.25936156499989],[-37.08083350699991,-54.31991813399998],[-36.92000557199998,-54.33547427599996],[-36.8088915429999,-54.44769823599995],[-36.48694649799995,-54.55854069099996],[-36.34750347999989,-54.64742490699996],[-36.251113604999944,-54.78604733699996],[-36.076393503999896,-54.88826816699998],[-35.979728534999936,-54.807158165999965],[-35.822227544999976,-54.78715357999994],[-35.914451613999915,-54.714931581999906],[-35.90888955099996,-54.577706415999955],[-36.068611576999956,-54.56881690499995],[-36.06139358499996,-54.46464359499993],[-36.28222655899998,-54.267700720999926],[-36.391113515999905,-54.34491967499997],[-36.50111359099992,-54.28324998999989],[-36.67750554599991,-54.24825336399988],[-36.65639454999996,-54.105747934999954],[-37.16278052499996,-54.02936130399996],[-37.23194849299995,-54.07380332799988],[-37.49500245399997,-54.008524730999966],[-37.686950551999985,-54.00019244799989]]]]},"properties":{"objectid":618,"eco_name":"Scotia Sea Islands tundra","biome_num":11,"biome_name":"Tundra","realm":"Antarctica","eco_biome_":"AN11","nnh":1,"eco_id":129,"shape_leng":50.8532189203,"shape_area":1.26952119588,"nnh_name":"Half Protected","color":"#71E0D9","color_bio":"#9ED7C2","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":8130.0789981539365,"percentage":0.09514255180953714}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-78.37728160199993,-7.861028375999922],[-78.39284562299997,-7.761111395999933],[-78.50418864499989,-7.645648835999907],[-78.65105450899989,-7.599509307999881],[-78.69393163199993,-7.546305009999912],[-78.68842354799983,-7.465861035999978],[-78.84907563099995,-7.457454321999933],[-78.96028152499997,-7.565039736999893],[-79.01742565299998,-7.532635131999939],[-79.1063236149999,-7.395103020999954],[-79.26686857699991,-7.365605091999896],[-79.31137849499999,-7.327098795999916],[-79.33970664499992,-7.21774697799998],[-79.28132652199997,-7.128269323999916],[-79.3202596239999,-7.028551665999885],[-79.34066754699995,-6.880320389999952],[-79.3767855029999,-6.791902710999977],[-79.55123855699998,-6.648650117999921],[-79.655235512,-6.475522745999967],[-79.80490160099998,-6.32459283299994],[-80.11513562,-6.156944039999814],[-80.44163555899996,-6.059648081999967],[-80.5461345899999,-5.971090591999882],[-80.61563163199997,-5.865771307999978],[-80.71204363499993,-5.552901348999967],[-80.84532159499997,-5.262650626999971],[-80.91525265099995,-5.155383555999947],[-81.0613636409999,-5.041642973999956],[-81.16802956099991,-5.08743347799998],[-81.19141356299997,-5.215220285999976],[-81.1098785989999,-5.309583081999961],[-81.04186263999992,-5.33765508099998],[-80.92247751699995,-5.460987074999878],[-80.88745859599993,-5.464223998999898],[-80.81726049199989,-5.574631600999965],[-80.85331759499996,-5.765087719999883],[-80.92584955599995,-5.843011926999907],[-81.06128652699982,-5.787358268999867],[-81.14356261799992,-5.889826699999958],[-81.14456961999986,-5.980172886999981],[-81.09441365299995,-6.076448935999963],[-80.9324496349999,-6.177013501999909],[-80.77305550799997,-6.305112283999961],[-80.69141359199983,-6.337319914999853],[-80.29786664099998,-6.529672019999964],[-80.08250453499994,-6.663263127999926],[-79.98343664199996,-6.742305312999918],[-79.92534653299998,-6.871322081999949],[-79.73634350099996,-7.049513966999939],[-79.67762759799996,-7.119910051999966],[-79.67934454699991,-7.181458533999887],[-79.61325860499994,-7.250019484999939],[-79.56084455299998,-7.391106193999974],[-79.56648255599998,-7.464109049999934],[-79.43959864699991,-7.651881283999842],[-79.4578556059999,-7.710614284999963],[-79.38253062699994,-7.794508250999968],[-79.29575362099996,-7.930953229999943],[-79.15300763099992,-8.048978975999887],[-79.12782252599999,-8.09456244799992],[-78.99102064599998,-8.220614368999975],[-78.90911050899996,-8.377418152999951],[-78.92646054599999,-8.455100792999929],[-78.79739365399996,-8.556874531999938],[-78.74354562499997,-8.6646166889999],[-78.75230454699988,-8.798750105999943],[-78.65437357499991,-8.91552074699996],[-78.64958951999995,-9.040876969999943],[-78.50651562899986,-9.185261622999917],[-78.51139859099993,-9.312835697999958],[-78.44409157299998,-9.334948834999977],[-78.36951459499988,-9.63312196499993],[-78.23609162799994,-9.814363018999927],[-78.25533262199997,-9.860641685999951],[-78.17768049199992,-10.07145510099997],[-78.06101965399989,-10.34269097299989],[-77.86278563299993,-10.66800537599994],[-77.77527655199992,-10.767006213999878],[-77.67069252799996,-10.948512638999944],[-77.65859962099984,-11.036527483999976],[-77.60726951699996,-11.169954306999955],[-77.66385658299993,-11.255832436999981],[-77.63101963899993,-11.31639118499993],[-77.3645475379999,-11.467001747999916],[-77.29895763699994,-11.524978030999932],[-77.17622360799993,-11.737736214999927],[-77.18864458199994,-11.856204189999914],[-77.15090154299997,-11.907528594999974],[-77.14168563999988,-12.079983737999953],[-77.0334776169999,-12.158627447999947],[-77.04244256499993,-12.214281608999954],[-76.84752660399988,-12.32071132699997],[-76.78406553799994,-12.401336853999965],[-76.81057749799999,-12.511459638999895],[-76.74540752999997,-12.53868573699998],[-76.67862656099999,-12.628736545999914],[-76.64122064099996,-12.750869256999977],[-76.51986660899996,-12.869860095999854],[-76.49170659899994,-13.047619139999824],[-76.28603363799988,-13.282062480999912],[-76.1876445119999,-13.442460926999956],[-76.19352760199996,-13.623045678999915],[-76.26146661499996,-13.871074407999856],[-76.37017855799996,-13.80887632799994],[-76.39612557799995,-13.901492501999826],[-76.28559861699995,-13.916086401999962],[-76.26461049999995,-14.05897404599989],[-76.28367664699982,-14.13688567999992],[-76.13488763999999,-14.243508685999927],[-76.06737559999988,-14.392657946999975],[-75.97048951699992,-14.509867295999982],[-75.92098951699984,-14.661444291999942],[-75.85501052799998,-14.720154494999917],[-75.65073348899989,-14.848371294999936],[-75.52396357399994,-14.90702349399993],[-75.50815563999998,-14.97527884099992],[-75.44815059999996,-15.011355557999934],[-75.37297850799996,-15.143230051999922],[-75.22991953699994,-15.2191873619999],[-75.24499556299997,-15.28260919999991],[-75.18980458599987,-15.367782746999978],[-75.05079658899996,-15.466373374999932],[-75.01222256799997,-15.466083192999974],[-74.65360250499998,-15.657024288999935],[-74.47146559299995,-15.728533657999947],[-74.43728653899996,-15.807163620999916],[-74.35558360199991,-15.85276854999995],[-74.2849955719999,-15.845134144999975],[-74.05188763599989,-15.963886434999836],[-73.99999963199986,-16.034941001999982],[-73.85572863799996,-16.136981620999904],[-73.33990463999993,-16.32337285199992],[-73.30790756299996,-16.37270588399997],[-73.21104461299996,-16.399048025999946],[-73.04996454999997,-16.499593648999905],[-72.92754350199993,-16.517507787999932],[-72.77449749299996,-16.626543942999945],[-72.44997350399996,-16.703706904999933],[-72.37428257099998,-16.752505004999932],[-72.13259156599992,-16.969271581999976],[-72.10420256299994,-17.020845264999934],[-71.94582348499989,-17.063622642999974],[-71.80450459699989,-17.184216100999947],[-71.68853761399998,-17.21031449799989],[-71.47614253399996,-17.29155961499987],[-71.39250153399996,-17.393125147999967],[-71.34301762699988,-17.64290904799998],[-71.37048361499996,-17.678503972999977],[-71.18147253699993,-17.785187495999935],[-71.09345249499995,-17.866719273999934],[-71.00227364899996,-17.876362820999816],[-70.92483559299995,-17.922283077999907],[-70.88602453099998,-18.002772146999973],[-70.81260660299995,-18.03526308599993],[-70.68231964099988,-18.15553384099985],[-70.59595452199994,-18.197981307999953],[-70.38628356099991,-18.337382918999936],[-70.31594849699991,-18.422723936999944],[-70.12089557499996,-18.40865172699995],[-69.90974453699994,-18.479706460999978],[-69.62741856899999,-18.39400250699987],[-69.71045657499997,-18.312588410999922],[-69.7502895579999,-18.167543096999964],[-69.83461753899996,-17.847544663999884],[-69.8955685599999,-17.715023589999873],[-69.94609852799994,-17.4794538889999],[-69.93443259499998,-17.40644348899997],[-69.97397656999982,-17.340157553999916],[-70.05184964699993,-17.30833163599982],[-70.06039449499997,-17.216529343999923],[-70.22953761299988,-17.114505320999967],[-70.32166260799994,-17.122926116999906],[-70.4590684879999,-17.17183904799998],[-70.54760753699998,-17.12048396499989],[-70.67820764699991,-16.88756143699993],[-70.6547245719999,-16.70955479199995],[-70.69313849899993,-16.554775405999976],[-70.51375554499998,-16.607756073999838],[-70.50607252499998,-16.554117257999962],[-70.66734352699996,-16.4367848629999],[-70.62719756399997,-16.25407211399994],[-70.53963450299989,-16.187500356999976],[-70.53334053199995,-16.13489687399982],[-70.64908556299997,-15.98519809399994],[-70.68110661199995,-16.094784269999934],[-70.75668355099992,-16.225489991999837],[-70.76727257699997,-16.318042128999934],[-70.84696955599992,-16.374612598999875],[-70.90344950199994,-16.53290165599998],[-71.03391248399993,-16.578752677999944],[-71.11078660599992,-16.658278833999873],[-71.18581352499996,-16.563143729999865],[-71.3204724869999,-16.467153838999877],[-71.37053658899998,-16.375053486999946],[-71.37069651599995,-16.270505337999907],[-71.21338663299997,-16.134669891999977],[-71.34240759299996,-16.012868432999937],[-71.43295259899998,-16.04318460399992],[-71.49523952699997,-16.15470347899992],[-71.58719654899994,-16.111325285999953],[-71.58240562099991,-15.926856862999955],[-71.63715352999998,-15.880471745999841],[-71.69709050799997,-15.932403503999865],[-71.81899254899986,-15.84792280499994],[-72.00036654099995,-15.811890343999949],[-72.14141854799993,-15.869197750999945],[-72.21668250699997,-15.845361126999933],[-71.9850155879999,-15.675475874999961],[-71.71554561499988,-15.677499769999883],[-71.59224664499999,-15.65062369999987],[-71.49559056099997,-15.598822699999914],[-71.34280355399994,-15.463454628999898],[-71.42945063999986,-15.348321979999923],[-71.50072464499993,-15.3480328039999],[-71.63115661399996,-15.504381952999893],[-71.70444462199998,-15.515324359999966],[-71.94091755699998,-15.487188154999956],[-72.10111953099994,-15.488403027999937],[-72.2139666029999,-15.460862775999942],[-72.33149764899997,-15.201756355999976],[-72.42698663699997,-15.213283651999916],[-72.43473855699995,-15.28366615799996],[-72.3881226019999,-15.583344844999942],[-72.52568052999993,-15.571014562999892],[-72.62166555899995,-15.662248728999941],[-72.72148161999996,-15.69710973499997],[-72.78289062799996,-15.681111531999932],[-72.85959660899988,-15.590911524999967],[-72.81362153499998,-15.443615669999872],[-72.98294855199993,-15.375203078999903],[-72.95807659599984,-15.314276029999917],[-72.86024453099986,-15.240383853999901],[-72.64923849999997,-15.121943538999915],[-72.51391552299992,-15.019496229999902],[-72.45442161199986,-14.887520816999938],[-72.52160658899993,-14.870241858999975],[-72.66535958199995,-14.945899934999943],[-72.73238362699988,-14.927437954999903],[-72.8116455849999,-14.961794872999974],[-73.09944158399992,-15.162445732999913],[-73.16790060999989,-15.179091857999936],[-73.20928156399992,-15.060914565999951],[-73.28029656799998,-15.06597807399993],[-73.27081261199999,-14.959538967999947],[-73.30984461999992,-14.871229749999884],[-73.20614656399988,-14.79206585999998],[-73.06567357799997,-14.739348382999879],[-73.08930149299988,-14.678335167999933],[-73.40317560399996,-14.740291178999883],[-73.52675653999995,-14.66760817599993],[-73.58913449599993,-14.669938847999958],[-73.71226448599998,-14.745193921999942],[-73.71003758199993,-14.806776937999928],[-73.61525753599989,-14.88539969299984],[-73.63415554199997,-14.961376783999924],[-73.69862360899992,-14.960021094999945],[-73.80113964999998,-14.846696422999912],[-73.89851355999997,-14.847450458999958],[-73.9696045039999,-14.930764899999929],[-74.05309261899993,-14.742867105999949],[-73.95084362599988,-14.708388481999918],[-73.97820249299997,-14.593915824999954],[-74.19141363499995,-14.522683393999841],[-74.24045564699998,-14.477110315999937],[-74.28650649399998,-14.347823817999938],[-74.32296760499997,-14.336099714999875],[-74.40448764899998,-14.453740060999962],[-74.3360445479999,-14.637921821999953],[-74.33525849299997,-14.730948877999879],[-74.39111365199989,-14.727901217999886],[-74.49157763399995,-14.492648519999932],[-74.51406862799996,-14.377689879999934],[-74.49332459099998,-14.290824696999948],[-74.51851656799994,-14.179069954999818],[-74.5817716059999,-14.152963678999981],[-74.6630405279999,-14.239924080999913],[-74.71814751799991,-14.154390614999954],[-74.6860885829999,-14.009521319999976],[-74.75274650599988,-13.845098219999954],[-74.87142956099996,-13.754035211999962],[-74.91182765199994,-13.812256413999933],[-75.00106055499987,-13.748210459999939],[-75.03233360399997,-13.823985378999964],[-75.09626053499994,-13.855557325999825],[-75.14579054199999,-13.78984689299989],[-75.12076553199995,-13.735145251999938],[-75.29536459899992,-13.544242041999894],[-75.20095855299991,-13.489909539999928],[-75.20716048999998,-13.40134266299998],[-75.31034054499997,-13.371540638999875],[-75.30663255899992,-13.257727133999936],[-75.25513464899996,-13.089532511999948],[-75.32576760599983,-13.025966839999853],[-75.37426764399993,-13.07348854299994],[-75.39908562099993,-13.160995612999955],[-75.47226751499994,-13.229303261999917],[-75.52403264099996,-13.162524471999973],[-75.46740751999994,-13.098718742999893],[-75.47395361899993,-13.045218395999939],[-75.3991315539999,-12.98483549999986],[-75.48818961099994,-12.92120763499986],[-75.59854859799998,-12.930641298999944],[-75.6461566349999,-13.04694221799997],[-75.7279816119999,-13.093151314999943],[-75.78653758699994,-13.057545492999907],[-75.80641962899989,-12.981811812999979],[-75.72861461299988,-12.877811671999893],[-75.7034756089999,-12.78367300899987],[-75.74350757899998,-12.598304537999923],[-75.80029262599999,-12.520117809999874],[-75.73715258699997,-12.388925937999886],[-75.79609664499992,-12.11887425999987],[-75.84718350699995,-12.07388020399992],[-75.92425560899989,-12.091519918999893],[-75.92436256199994,-12.213264715999856],[-76.03226464599999,-12.32906573799994],[-76.10077664599999,-12.339215216999946],[-76.06705457399994,-12.215297494999902],[-76.22509753699995,-12.072244223999917],[-76.38693951499988,-12.15851848299991],[-76.38886249099994,-11.948127683999871],[-76.26423649899994,-11.814252093999869],[-76.25956761099997,-11.742496967999955],[-76.41826654299996,-11.750574272999927],[-76.43113762599995,-11.666534125999931],[-76.52658051299989,-11.584138676999828],[-76.60029549599989,-11.644757606999917],[-76.6214525929999,-11.564781006999908],[-76.53510256199996,-11.48466560299994],[-76.57286052099994,-11.41264057899997],[-76.53809355999994,-11.332655261999946],[-76.58198556399998,-11.303013331999978],[-76.60533855199998,-11.200402408999935],[-76.77085163599986,-11.142192269999953],[-76.75429553299995,-11.039787541999885],[-76.64067062099991,-10.974497041999882],[-76.64044162699997,-10.894641476999936],[-76.73724355699989,-10.832804823999936],[-76.74712364099992,-10.729903048999972],[-76.84069853799997,-10.613266183999883],[-76.91413155299995,-10.737207374999912],[-77.17961157299993,-10.889070025999956],[-77.07155660299992,-10.720316665999917],[-76.97141264099997,-10.645188829999825],[-77.02690151099989,-10.561174666999875],[-76.99309561899992,-10.488936910999882],[-77.0817875539999,-10.426702117999866],[-77.07837662299994,-10.205598743999929],[-77.1365205439999,-10.166496326999948],[-77.0874175109999,-10.039925230999927],[-77.17244755999997,-10.034262751999847],[-77.27020251199997,-10.197412138999823],[-77.36414352999998,-10.250618280999959],[-77.38970950799984,-10.159502802999953],[-77.45303361299995,-10.113459163999948],[-77.50208249899998,-9.961873785999956],[-77.60153160099992,-9.934133542999973],[-77.62773158599992,-9.752228473999935],[-77.731925516,-9.70867459599998],[-77.67097449499994,-9.567193602999964],[-77.68142656099991,-9.487028074999955],[-77.72837862999995,-9.431940027999929],[-77.81497156899991,-9.398430351999934],[-77.89985661099996,-9.311251685999935],[-77.95611560999993,-9.217706460999977],[-77.96700252899984,-8.96388835099998],[-78.08901252899994,-8.893101502999968],[-78.08870658899997,-8.818040720999875],[-78.03667458399997,-8.789543926999897],[-77.94700649299995,-8.811210140999947],[-77.81318655899992,-9.078924104999885],[-77.8204955779999,-9.133533377999925],[-77.74127955199998,-9.201344482999957],[-77.73973057699999,-9.281074654999884],[-77.65098549999993,-9.318014037999887],[-77.6562345829999,-9.374986168999953],[-77.59394849299997,-9.41963388499994],[-77.60018949099998,-9.515835334999963],[-77.47397663699991,-9.762508877999949],[-77.41619162799992,-9.744195089999891],[-77.45367449399993,-9.449151762999918],[-77.50968153199989,-9.283472717999928],[-77.6810755269999,-9.065097987999877],[-77.83553355099991,-8.729990001999909],[-77.82256356099998,-8.64862871199989],[-77.74143260599999,-8.586054283999943],[-77.85752062399996,-8.47859811799998],[-77.98151361499993,-8.516819092999981],[-77.99779562899994,-8.429681497999866],[-77.91980755199995,-8.283790114999874],[-77.82476062599994,-8.234463619999872],[-77.85808556399991,-8.199778969999954],[-77.86757656099996,-8.07668669799989],[-77.94107059699996,-8.090070920999949],[-78.01490761999992,-8.011182627999972],[-78.08851665599997,-8.052775642999961],[-78.11620358999988,-7.988161059999868],[-78.20502460699993,-8.020677982999871],[-78.27303352499996,-8.100921126999879],[-78.23486351199995,-8.199376134999909],[-78.24013556099999,-8.324858087999871],[-78.31439251799998,-8.373833379999894],[-78.40926359199989,-8.243652867999913],[-78.33964551599996,-8.173325850999959],[-78.35543065099995,-8.084669119999887],[-78.43148049699988,-8.042305136999971],[-78.36495953399998,-7.991434025999979],[-78.49755051299996,-7.892467050999869],[-78.37728160199993,-7.861028375999922]]]},"properties":{"objectid":619,"eco_name":"Sechura desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Neotropic","eco_biome_":"NO13","nnh":3,"eco_id":608,"shape_leng":64.1477540859,"shape_area":15.3932404431,"nnh_name":"Nature Could Recover","color":"#F15C56","color_bio":"#CC6767","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":185316.6612330403,"percentage":0.7024312259700608}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[93.11357163800005,49.70252824900007],[93.05187261600014,49.68357609500015],[92.77687058700019,49.691934194000055],[92.74378956200013,49.62823625600015],[92.8154065550001,49.58563674200008],[93.29500564400018,49.57521451600013],[93.72572365300005,49.42225467300011],[94.0582196700002,49.36196699599998],[94.11228965100014,49.278321302000165],[94.34502459300012,49.20703137200019],[94.55530558900011,49.19932924100016],[94.73681654000012,49.22533057499999],[94.88969457600001,49.20505123100003],[94.9676516400001,49.25379987700012],[95.16655755500017,49.22526167600006],[95.35176056700016,49.226253590000056],[95.55964651800019,49.29695645200019],[95.60685758800008,49.466109294000034],[95.70388063200005,49.54212527700014],[95.61895753600004,49.66472771000019],[95.43189256700009,49.73258843600013],[95.32151061400009,49.79642048400012],[95.17768855500009,49.77049911400013],[94.93331953200004,49.62729010700008],[94.77729761200004,49.60489701400013],[94.51695251400014,49.62239105200018],[94.25885058100016,49.67727793300003],[94.09244566300009,49.69268219500003],[93.89405858800018,49.75472487500019],[93.51659366000013,49.82439374500012],[93.37653356600009,49.828196615000195],[93.11357163800005,49.70252824900007]]],[[[107.38425466300015,51.58024471500005],[107.4639665630001,51.731427426000096],[107.65235168100014,51.82562224800006],[108.4597016240001,52.094741858000134],[108.66153751800016,52.121655646000136],[108.86338062000016,52.18893265700018],[109.10558359100003,52.24275872400017],[109.37470253000015,52.22930442900014],[109.536170675,52.18893265700018],[109.67073056300006,52.1081971590001],[109.80529062000005,52.08128387400018],[110.07440168000011,52.121655646000136],[110.45116454000015,52.28312747900014],[110.61264056300013,52.39077642900003],[110.82793460800008,52.49842454100002],[110.74719257300006,52.60607365900012],[110.63954965800019,52.64644258100003],[110.3300626350001,52.60607365900012],[110.07440168000011,52.619529128000124],[109.80529062000005,52.727178078],[109.3208766300001,52.727178078],[108.89028954600013,52.70026864900012],[108.68845365300012,52.673355196000045],[108.50006853500008,52.59261936300015],[108.19058251800004,52.53879329500006],[107.8676455580001,52.43114417800007],[107.55815853500019,52.24275872400017],[107.00646954600018,51.91981287900012],[106.57588162400015,51.556498448000184],[106.41441364700012,51.48921741400005],[106.18566161900014,51.421936045000166],[105.99728354200005,51.34120071500013],[105.51961564300007,51.068834459000186],[105.38233951500018,50.95441846300008],[105.25254859400013,50.72146291000007],[105.2435226250002,50.63598577000005],[105.12442064300012,50.28480364],[104.98693060800002,50.141585749000114],[104.84649651400014,50.045408439000084],[104.61501366200002,49.77707220200011],[104.41570256500006,49.66238161500013],[104.25069457500013,49.64511657100013],[104.151130641,49.7222423180001],[104.06570463100013,49.66870659900013],[103.81716158800003,49.669213872000114],[103.7479936200001,49.69137713300006],[103.78843663800006,49.81853848300011],[103.73038458200011,49.89007651800006],[103.5231016250001,50.013323016000186],[103.36483754700004,50.06961688400003],[102.93838458500016,50.09570220500012],[102.58744066900016,50.00240089400012],[102.33988954100016,49.99525582400008],[101.9545136050001,50.02737226000016],[101.76554862700004,50.076616947],[101.53133360900017,50.06586682100016],[101.25184659100012,50.091495160000136],[100.99201161600007,50.078700017000074],[100.79747753300006,50.094680283000116],[100.28694955700007,50.096824207000054],[99.88001251600014,50.12203546300009],[99.71115153200009,50.145328939000194],[99.27220953500012,50.23206822600014],[98.94231459000008,50.328497328000026],[98.62604560100016,50.39185630200018],[98.46593465400014,50.47948138900017],[98.32613356200005,50.482296702000156],[98.15591454200012,50.46593925000013],[98.00688162199998,50.391418432000194],[97.91921261400017,50.25552950800011],[97.68250263900018,50.08457103800009],[97.41511556900014,49.773345104999976],[97.2836155780002,49.79964332600014],[97.12142156000004,49.9837506560001],[97.007453661,50.01005424200008],[96.6085585530002,49.99251695300006],[96.31925163300014,50.01443713900011],[96.15706666800008,50.062654875000135],[96.09924360600007,50.12550355900015],[96.10526265000016,49.929566011000134],[96.03568262800007,49.67622499900011],[95.98220860000015,49.552536271],[95.75088466900013,49.295853394],[95.73443551900016,49.113215244000116],[95.61575363700007,48.90838734700003],[95.6045306040001,48.846301584000116],[95.75234965800013,48.48236488000015],[95.91919663700003,48.2404348230001],[96.06281266900015,48.1120198750001],[96.29782866200009,47.970641811000064],[96.35732257199999,47.70630776600012],[96.51557961000003,47.597085029000084],[96.753936629,47.50334517700014],[96.81598651700006,47.41111674900003],[96.93931566100008,47.140264097000056],[97.04972058100009,47.03529031500017],[97.14984157700007,46.975667156000156],[97.49111160300009,46.91113270400007],[97.69068857300016,46.80271127700013],[97.96461453400008,46.68364282200014],[98.08370159700007,46.686900868000066],[98.26786760000016,46.80935645000011],[98.4825896640001,46.7944101760001],[98.67315659100012,46.85469047700019],[99.05282562500008,47.05038159700007],[99.3438496620002,47.042855486000065],[99.65536460200013,47.011586293000164],[99.73019354000019,46.909202854000114],[99.93353264400014,46.82765548599997],[100.26726566300016,46.75627117500011],[100.46134159000007,46.670260611000174],[100.78847453100019,46.4341185940001],[100.928871577,46.35325435000004],[101.27572663300009,46.20778776200012],[101.49460561800004,45.99850136200013],[101.58770760700003,45.96318907500006],[101.70646660300014,45.98214810200011],[101.81732967700003,45.89011799000002],[102.06291960800007,45.848438976000125],[102.24060053300002,45.88834789900005],[102.50904053800008,46.02225534100012],[102.93005364400017,46.18929393100018],[102.98482552600018,46.264017089],[102.9486235830002,46.40914756300015],[103.22539553500013,46.38772760900014],[103.34910555300007,46.41224065300014],[103.9141465780001,46.569571155],[104.38964054600007,46.603125255],[104.67530066800003,46.6617117400001],[104.76943162000003,46.70029766400006],[104.88539156300004,46.83416738700009],[104.7727355990001,46.98080123900013],[104.27664159500006,47.281298000000106],[104.20307966500008,47.05741669600013],[104.06606253799998,47.056382537000104],[103.88700061100013,47.18405333900017],[103.76494551600013,47.173307404000184],[103.57490564300019,47.23473954600007],[103.45793165700019,47.184805363],[103.51320662100011,47.115128781000124],[103.4399415790001,47.071034606000126],[103.26464865800017,47.165933173000155],[103.06491058699999,47.21315547400013],[102.76776859900002,47.18887528000005],[102.4721675400001,47.246969748000026],[102.17818452300014,47.25178766600004],[102.0595775760001,47.28858103599998],[101.99230157100016,47.37656738200013],[102.0081255990001,47.46577396600003],[101.94578552900003,47.66662750100011],[101.99762760000004,47.839666527000134],[102.151519678,47.87306505900011],[102.32022861299998,47.85377762900009],[102.64115157000003,47.960006517000124],[102.76708262400001,48.07233039000005],[103.05730451300002,48.139710163000075],[103.18435656400015,48.136849084],[103.5685955780001,48.03350826500014],[103.78076954300013,48.05122039900016],[104.08264965400019,48.16447919000018],[104.27608453300019,48.184552507000035],[104.44175754400015,48.135522061000074],[104.45675662400004,48.26338413899998],[104.54001658300018,48.41477539200008],[104.71411156200014,48.558594769000024],[104.79737856200006,48.77810591700012],[104.88481857600016,48.82992535700009],[104.88766456700017,49.00306831900019],[104.97011567200019,49.07612079600011],[105.24860356700009,49.22117264800016],[105.57865156600019,49.4696343870001],[105.85608652700006,49.65070042700012],[106.11072556000005,49.903469793000056],[106.34946462700003,50.51484815800018],[106.39768957100011,50.82186754900016],[106.53878768000015,51.00106945400006],[106.61009957100009,51.01253656800009],[106.72859956500008,51.14060953400008],[106.92320254700013,51.266309583000066],[107.03359958800013,51.4466026450001],[107.38425466300015,51.58024471500005]],[[97.94947061400012,48.254544919000125],[97.9894715710002,48.36560396200019],[97.8697355810001,48.483811093000156],[97.9488295660002,48.52906850900007],[98.07991767000004,48.488185944000065],[98.31066861500011,48.5279354430001],[98.74329367500013,48.52438838900008],[98.85923752400004,48.500591160000056],[99.15989655900012,48.49664328400007],[99.42991655200018,48.45799282000013],[99.78497363600019,48.489468207000186],[99.92594953600013,48.54438057000016],[99.9981076640002,48.45690183099998],[99.9456636050001,48.34969192500017],[99.87685354400008,48.265177195000035],[99.64369162900005,48.23477385300015],[99.1587145430002,48.25558695700005],[98.94140666200008,48.214944785000114],[98.93630258600018,48.132606835000104],[99.34977751100013,48.107368925],[99.55165866700008,48.064068516000134],[99.60578162200011,47.99845883300003],[99.46097552700007,47.93920850100005],[99.36585953400004,47.869754040000146],[99.37248257800019,47.80271339900008],[99.47044355700007,47.768633083000054],[99.69581566700015,47.85466979900002],[99.81747463300019,47.85346079300018],[100.01200066900014,47.77160815600013],[100.131706651,47.78430741000017],[100.21932955900013,47.87951912400001],[100.34326957600018,47.933268246000125],[100.44429766100018,47.92884025400008],[100.48971567400008,47.778837212000155],[100.60283666600014,47.72767089000007],[100.62601464000016,47.657231220000085],[100.5448075760001,47.591447026000026],[100.32108251100016,47.5213744830001],[100.40745567600015,47.40768368900018],[100.57803360800017,47.42158859600005],[100.75959066000013,47.345195260000025],[100.97490666600004,47.30100083700006],[101.1397015880001,47.324473184],[101.27728265000019,47.280862980000165],[101.40639463600013,47.15514197500005],[101.59601558200012,47.12414284800013],[101.69840958200007,47.034649603000105],[101.68258656100011,46.913986910000176],[101.71631651200005,46.8474384540001],[101.63530759700012,46.685187775000145],[101.85889453000004,46.58991923100018],[102.06890864600018,46.55985904400018],[102.16546666200009,46.51209091300012],[102.15676155200009,46.427698559000135],[101.94936359600007,46.35194543200009],[101.70533756000003,46.11787558900005],[101.5757905530001,46.10813246499998],[101.45222453600007,46.22199777000009],[101.5649415200001,46.36376743600016],[101.3139725870002,46.35751554200016],[101.11602053200005,46.47174294500019],[100.97055059100012,46.50439699600008],[100.82682760500006,46.61960826700016],[100.70940351200005,46.66187552300005],[100.59413960300009,46.82341742800014],[100.36406658600015,46.92141377900015],[100.15402263100009,47.08237968000003],[100.05928063800008,47.18055121200018],[99.76645667100007,47.22760939600005],[99.55771660400012,47.335665204],[99.15179461100018,47.3029890250001],[98.98706858800006,47.247358668],[98.70041655200009,47.09191292100019],[98.58773058100007,47.048894479000126],[98.34116365500012,47.11813503500019],[98.12163557600019,46.99036834300017],[98.07170860200011,46.99828840400011],[97.79322858600005,47.18448031300011],[97.65259567300012,47.19843836100006],[97.53392753800006,47.397353496000164],[97.36578354199997,47.4413299900001],[97.14849862800008,47.4413299900001],[97.07607261400005,47.503410388000134],[97.08641856500014,47.606881127000065],[97.13815251000005,47.66896538100008],[97.31404859200006,47.79312735100012],[97.32440158400016,47.989722711000184],[97.28301258400006,48.10353873000008],[97.15884357300007,48.28978931300003],[97.11746262000008,48.40360616999999],[97.18988762800018,48.48638199100009],[97.56237756100006,48.310480544000086],[97.68069466300017,48.275888094000095],[97.79618857100007,48.197049422000134],[97.94947061400012,48.254544919000125]],[[96.66651153500015,48.04015729300016],[96.50524153800012,48.06275238900008],[96.2959135640001,48.12850288800013],[96.20318557500008,48.21935081600009],[96.25442465200013,48.317598456000155],[96.4055406440001,48.36452001500015],[96.56789358200007,48.30281328199999],[96.66944855400004,48.30243928100009],[96.79666153600004,48.223847875000104],[96.79643254300004,48.114738965000186],[96.66651153500015,48.04015729300016]]]]},"properties":{"objectid":620,"eco_name":"Selenge-Orkhon forest steppe","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Palearctic","eco_biome_":"PA08","nnh":2,"eco_id":737,"shape_leng":70.5305558147,"shape_area":28.0903325303,"nnh_name":"Nature Could Reach Half Protected","color":"#C4FC41","color_bio":"#FEFF73","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":228158.89997552813,"percentage":2.1533977204432833}}, + {"type":"Feature","geometry":null,"properties":{"objectid":622,"eco_name":"Serengeti volcanic grasslands","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Afrotropic","eco_biome_":"AF07","nnh":1,"eco_id":54,"shape_leng":0.934999975,"shape_area":0.0101604166754,"nnh_name":"Half Protected","color":"#D9FB4C","color_bio":"#FEAA01","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":125.7563299932223,"percentage":0.0005865769744180263}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[135.27955034200022,-29.089016727999933],[135.24361665600009,-29.137383907999947],[135.3719075250001,-29.21876931399993],[135.42230368000014,-29.16884753199986],[135.37288002800017,-29.098064684999883],[135.27955034200022,-29.089016727999933]]],[[[143.3203318430002,-24.33192859099995],[143.22272221900016,-24.14235165499997],[143.16838600500012,-24.139616040999954],[143.13336963600023,-24.0496860209999],[143.18997380100018,-23.910548603999928],[143.23004725900012,-23.750040739999918],[143.1272830050001,-23.642871464999928],[143.09028974800003,-23.347444107999877],[143.17231689300013,-23.146051651999983],[143.20147572800022,-23.012669156999834],[143.3375941280002,-22.927112452999893],[143.2683627670001,-22.790214618999926],[143.29190737000033,-22.705775514999914],[143.2156304770001,-22.582259783999916],[143.15577919700013,-22.548680111999943],[143.07249305300002,-22.571270113999958],[142.9846586130002,-22.542414918999953],[142.94910383700017,-22.63016330399995],[142.8634343320001,-22.622656989999825],[142.72576316800007,-22.54854051199993],[142.59271441600004,-22.561475168999948],[142.62776357000007,-22.629934892999927],[142.55883034900012,-22.664232418999973],[142.53619275900007,-22.759430942999927],[142.45888191300003,-22.85400106499992],[142.45658923300005,-22.943555738999976],[142.37938248600017,-23.00663104499995],[142.37093441000013,-23.078501012999936],[142.244893487,-23.22192968899998],[142.1568172640001,-23.141255248999983],[142.03829264700005,-23.174964336999892],[141.99822887000005,-23.13442571199994],[141.82409966400007,-23.08922536599988],[141.74361028400006,-23.024075723999943],[141.6312508850001,-23.009606826999857],[141.57668028800015,-23.050166595999883],[141.49759957700007,-23.321144099999913],[141.43859090500018,-23.387404879999906],[141.29449127800012,-23.455921539999963],[141.12289612400002,-23.560766457999932],[141.09865943500006,-23.640633673999957],[141.04168112600019,-23.691719073999934],[140.9012844890001,-23.71318318999988],[140.82678749800004,-23.86749922599995],[140.79881907200001,-23.96905072699991],[140.84214161900013,-24.052032387999873],[140.85663155200007,-24.236564228999953],[140.89558178700008,-24.27972640699994],[140.8768167850002,-24.37787701999997],[140.69915422400004,-24.487946590999968],[140.64422062200003,-24.56838866299995],[140.5469301610002,-24.59837828399992],[140.49826214700022,-24.56535619899995],[140.40125455800012,-24.67138813799994],[140.22483132200023,-24.585276272999977],[140.14799921300005,-24.501385617999915],[140.06793629000003,-24.555746219999946],[140.03022227400015,-24.485727195999857],[139.88115939600004,-24.446401878999893],[139.8409404560001,-24.367780586999856],[139.99444801100003,-24.271217905999833],[139.94000320500004,-24.21136687099994],[139.93880591900017,-24.092989836999948],[139.9919560290001,-24.041320887999916],[139.97453071400003,-23.845562644999973],[139.91080876900003,-23.786231646999966],[139.95042630800015,-23.66308261899991],[139.89989322200006,-23.50397841599988],[139.92382087900012,-23.42356348499993],[140.02587128900007,-23.351041769999938],[139.94024265200005,-23.310817940999982],[139.7388965570001,-23.362343791999876],[139.65090267500022,-23.306103488999895],[139.62515674000008,-23.240275200999974],[139.62066630800018,-23.084545491999847],[139.44703556700006,-23.008820409999885],[139.36528194200002,-23.04815728799997],[139.2439127580002,-23.05448406299996],[139.23819898500005,-22.99718832799988],[139.0573420400002,-22.991390885999976],[139.03328030400007,-23.036806328999887],[138.93157990200007,-23.03404631999996],[138.89213049800014,-23.135678836999887],[138.83125544100005,-23.184153306999917],[138.71165503300017,-23.10458816299996],[138.71015953900007,-22.905653569999913],[138.63399333200016,-22.814237456999933],[138.57802268900014,-22.83020040399998],[138.44767067200019,-22.937416688999974],[138.4031355310001,-22.870460519999938],[138.48974655400002,-22.74180344499996],[138.40001696800005,-22.631205116999922],[138.24604842700012,-22.56521463999991],[138.10893485600002,-22.473171],[137.968098477,-22.479625305999946],[137.89785772000005,-22.58022880399983],[137.75665282600016,-22.611930837999978],[137.63932797400014,-22.560737692999965],[137.64463807700008,-22.42016412499993],[137.50895685800003,-22.224180307999973],[137.28866569000013,-22.049617786999875],[136.9053191810001,-21.799514703999932],[136.86941529800004,-21.75728030599987],[136.73899841700006,-21.70904161499982],[136.6678618740001,-21.65473559999998],[136.58563238700026,-21.53625672699991],[136.48344424700008,-21.656778267999982],[136.15728763100003,-21.837118100999874],[135.9647521290001,-21.968420110999944],[135.78422538100028,-22.154865320999875],[135.72991936500011,-22.252164799999946],[135.7315826700002,-22.38088032299993],[135.80221546000007,-22.488317378999966],[136.02500912900007,-22.655254379999974],[136.1999054170002,-22.758237794999957],[136.00704956000015,-22.936164812999948],[135.9492948940001,-23.11601832599996],[135.98548895800002,-23.233633023999914],[135.95527655600006,-23.2874813869999],[135.87922671000013,-23.276710474999902],[135.6999359570001,-23.322370556999886],[135.61517329000014,-23.402357047999942],[135.58212277600023,-23.54579756199996],[135.57760627200014,-23.69474029299988],[135.5023956220001,-23.768478409999943],[135.42126466700006,-23.925169037999922],[135.32151800700012,-24.00530807799987],[135.17367548400034,-24.000347164999937],[135.03378319600017,-23.93434722199993],[134.82948285600014,-23.867116981999914],[134.67959598700008,-23.76094056499994],[134.45211784000003,-23.726932500999908],[134.37669378700002,-23.781656269999928],[134.23300164700004,-23.778303173999973],[134.19857784100031,-23.745365143999948],[134.0423737000001,-23.76100728399996],[134.05531317900022,-23.969444261999968],[134.10275273900015,-24.031055439999932],[134.22644046100015,-24.0640201249999],[134.2648010790001,-24.108932540999945],[134.34794620700006,-24.382150733999936],[134.31423955700006,-24.564016407999873],[134.34750364200022,-24.655549975999975],[134.48863226100002,-24.778221140999904],[134.608169599,-24.92086604499991],[134.63627630100018,-25.025630949999936],[134.6567078600002,-25.222360419999973],[134.57200621400023,-25.285024701999816],[134.44905090300017,-25.314653388999943],[134.42254631900005,-25.47090513899991],[134.49890143300013,-25.517511369999966],[134.6658785000002,-25.51259236699991],[134.77471918900017,-25.557413085999883],[134.9004363370001,-25.66292196799992],[135.07646372300007,-25.860402244999875],[135.26317740700006,-25.837828006999928],[135.25214208600016,-25.973010684999963],[135.37457722100032,-26.091575577999947],[135.52909629200008,-26.01831208899995],[135.65319870700023,-26.001782736999814],[135.72188146200006,-26.04201336899996],[135.79408341500005,-25.981809451999936],[135.87148090200014,-25.979495939999936],[135.97699993800018,-26.18658009399985],[135.8710857760001,-26.173868188999904],[135.91458163100015,-26.26699971599993],[135.8992033950002,-26.31940522399998],[135.94334184700017,-26.41544050599998],[135.91457120100017,-26.521572127999832],[135.94593114300005,-26.68167811799998],[136.04118297300022,-26.706284200999903],[136.08062087200005,-26.850139838999837],[136.21573275900005,-26.90899011599987],[136.27338869400035,-27.00661781399998],[136.45575450100023,-27.053479122999875],[136.54680028000007,-27.10716060699997],[136.62785615100017,-27.090354537999872],[136.73657831000014,-27.437467011999956],[136.84454268700006,-27.546400016999883],[136.9054286370001,-27.746970060999956],[136.87260590800008,-27.84205406299992],[136.8025801030002,-27.940205750999894],[136.80723848100013,-28.07425693899995],[136.7550886050002,-28.153971456999955],[136.6771402500002,-28.197927083999957],[136.41182280100008,-28.240624913999966],[136.53935888600006,-28.350311116999933],[136.64969783200002,-28.340114523999944],[136.7299271730002,-28.409027081999966],[136.75190047600006,-28.499740308999947],[136.70139633100018,-28.53925591999996],[136.6022758470001,-28.524647753999886],[136.5517865180002,-28.590066351999894],[136.44910373200014,-28.65720866399994],[136.4691674510001,-28.713708505999875],[136.3679026770002,-28.841160425999874],[136.2888119700002,-28.85592268099998],[136.2013075990002,-28.799715615999958],[136.03732824800022,-28.81158632599994],[135.96011128600026,-28.71960773299992],[135.9381607930003,-28.542848732999914],[135.85144252400016,-28.490931690999957],[135.76467144900016,-28.49059120399994],[135.762956765,-28.420001543999945],[135.85421012600023,-28.310452948999966],[135.78940185200008,-28.10788786899991],[135.72656728000015,-28.110100516999864],[135.61606142000005,-28.266353368999944],[135.68379030100004,-28.36013410799984],[135.6270840120003,-28.416772619999904],[135.62128550400018,-28.555888809999942],[135.67371800700016,-28.63274337099989],[135.67430873500018,-28.734911651999937],[135.7159517890001,-28.799669233999964],[135.63684418000003,-28.869012527999928],[135.59687976500004,-28.96820952899992],[135.4440556950002,-28.97144849299997],[135.33863010000016,-28.92390003099996],[135.28692236000018,-28.98775526199995],[135.46574220500008,-29.08474810399997],[135.52313050200007,-29.07140778099989],[135.53104006400008,-29.219576287999928],[135.60627589600006,-29.21541982799988],[135.70015757700003,-29.301174936999928],[135.92626874000018,-29.2186788759999],[135.97106885100015,-29.277523188999965],[136.04607896000005,-29.19856252799991],[136.15760338600012,-29.239648003999946],[136.33173885600013,-29.244822728999964],[136.38906950500018,-29.141578992999882],[136.51900389200023,-29.16132140299993],[136.56715018700015,-29.125011626999935],[136.75025313300011,-29.267221502999973],[136.85083727000017,-29.30114910799989],[137.01370778200032,-29.314076076999868],[137.16776989000005,-29.473558854999965],[137.2406308520001,-29.50671537799991],[137.29829006100022,-29.450343530999874],[137.4055358600002,-29.430575422999937],[137.4948582180001,-29.35484737799993],[137.65100395200022,-29.301336404999972],[137.76368033800009,-29.214181414999928],[137.86735806700005,-29.059543802999883],[137.9382611750002,-29.07277927699988],[137.9730209410002,-29.14124443499992],[138.10270744000013,-29.079777028999956],[138.18339119200004,-29.070388060999903],[138.19444396200004,-29.201960660999873],[138.29473022000002,-29.183496550999905],[138.40572685500013,-29.121384967999973],[138.43299768500003,-29.011041709999972],[138.41817833700009,-28.94467886299998],[138.44678466400023,-28.754246633999912],[138.5075145820001,-28.76602410499987],[138.7009228830002,-28.625984450999965],[138.8326361290001,-28.57637069999987],[138.90436731500017,-28.74668894799987],[138.88866194900004,-28.835828808999963],[138.9461296410002,-28.93007336499994],[139.00935590500023,-28.95336225799997],[138.95838094400006,-29.02976459899992],[139.01543882500005,-29.076100478999876],[139.15900909400023,-28.98514866599993],[139.20898059600006,-29.06099362499998],[139.3623293710001,-29.127225138999904],[139.4560058310003,-29.212724436999906],[139.63182468200011,-29.332607030999952],[139.80807870600006,-29.488074433999884],[139.86920043700025,-29.48613994799996],[139.9547826690001,-29.543053497999892],[139.9779143820001,-29.62376748299988],[139.96478517800017,-29.723388625999917],[140.03385714,-29.802841592999982],[140.10938106700007,-29.80617419099991],[140.1429216500003,-29.886847629999863],[140.1112900070001,-30.072679995999977],[140.04188343500016,-30.12514053699988],[139.9053855960001,-30.32368004499989],[139.8245187660001,-30.495130144999962],[139.63958500900014,-30.61212285199997],[139.5099327680001,-30.835317158999885],[139.59624299900008,-31.025450380999814],[139.80247092900015,-31.224117823999848],[139.93491398800006,-31.175192964999837],[140.00726669800008,-31.226383339999984],[140.10040508600002,-31.18938000199995],[140.24041771400005,-31.311695940999982],[140.3167532760002,-31.283345232999977],[140.380784682,-31.373352533999935],[140.49196521400006,-31.35748305999988],[140.60737889400014,-31.285007758999882],[140.77916728700018,-31.21795907699982],[140.9356112700002,-31.120554956999968],[140.96244191400012,-31.24433434599996],[141.02884002100006,-31.298271429999886],[141.1038158890002,-31.181560226999977],[141.12621678100004,-30.98069938799989],[141.35436108500016,-30.881796674999975],[141.43231781600025,-30.757749908999926],[141.4528100880001,-30.66896244999998],[141.4277546740002,-30.588143927999965],[141.52565551600003,-30.587005356999896],[141.5791527780001,-30.50618666099996],[141.6895656600002,-30.443581723999955],[141.83754640200016,-30.56310240199997],[141.89478229400004,-30.50361556599995],[141.97196066800018,-30.359623149999948],[142.02193334100002,-30.309793086999946],[142.15846934900014,-30.288979614999903],[142.27603855400014,-30.303317025999945],[142.43277650100026,-30.240116514999954],[142.54650019400003,-30.289593406999984],[142.60941998200008,-30.38617874499994],[142.70790735500032,-30.32070278599997],[142.85373578500014,-30.445193209999957],[142.82930695200014,-30.536174537999955],[142.8823928190002,-30.636841619999927],[142.96746056200016,-30.60988508699984],[142.98853235900003,-30.525222927999835],[142.87438075100022,-30.403494380999973],[142.82137137100017,-30.267552467999906],[142.68048691400008,-30.21623834199994],[142.66277121600012,-30.162126642999908],[142.74802149300012,-30.053706485999953],[142.7301228230001,-29.894440196999938],[142.81590747500002,-29.888651508999885],[142.85231472700002,-29.840284639999936],[143.05002263300014,-29.847095816999968],[143.06268688600017,-29.75535190399995],[143.22064470500004,-29.582078191999926],[143.3165146760001,-29.365530529999944],[143.33657914600008,-29.19560830899991],[143.51835725500018,-29.187990122999906],[143.6118940670002,-29.13971473999993],[143.68867363000004,-29.149682445999872],[143.70319833300005,-28.901154103999943],[143.79530212900022,-28.79459258099996],[143.7914142630002,-28.66726636599998],[143.72879525700023,-28.64218281199993],[143.6313063470002,-28.685327247999965],[143.50604711000005,-28.543138772999953],[143.51008267400005,-28.463250127999856],[143.39171890500006,-28.45133364499992],[143.33313005500008,-28.581948047999845],[143.23774024800014,-28.56853525899993],[143.30762220000008,-28.39810886099997],[143.35053179600004,-28.22344118799998],[143.4153674910001,-28.215976809999916],[143.52344057300013,-28.149667790999956],[143.55562148700017,-28.063049833999912],[143.73219803000006,-28.080738528999973],[143.80782653600022,-27.99856298799989],[143.70149123600015,-27.958566622999967],[143.53367333000006,-27.818761967999933],[143.419085794,-27.635455393999962],[143.46190833700007,-27.45966932099998],[143.541978706,-27.338385855999945],[143.46674318400005,-27.251996951999956],[143.3219046910001,-27.206662357999903],[143.25834470200016,-27.08274525099995],[143.0285272210001,-27.064100120999967],[143.12015126100016,-26.91929833499995],[143.0538716970001,-26.794145280999828],[143.06857585700004,-26.727638703999958],[142.92337673500015,-26.544551012999875],[142.8584255000003,-26.427369669999962],[142.83771964000005,-26.316448531999924],[142.75138762900008,-26.201276417999907],[142.60146784300014,-26.09263859399988],[142.51306718900014,-26.179772539999874],[142.39162714700012,-26.193832424999925],[142.28024040100001,-26.168153347999862],[142.32918205600004,-26.01988652499989],[142.3100965540001,-25.984845502999974],[142.40051477800012,-25.866406306999977],[142.46070100500003,-25.915376232999904],[142.58662624400006,-25.89903974899994],[142.59182355200005,-25.954406735999953],[142.67401040200014,-25.993943255999966],[142.6870941530001,-25.8864791499999],[142.7423955920001,-25.81413180699991],[142.7931388170001,-25.864133485999957],[142.87129991300003,-25.798565891999942],[142.86446070600016,-25.593464771999948],[143.0023020010002,-25.540171390999888],[143.1283614450001,-25.427552869999943],[143.1715353950001,-25.43503302199997],[143.31989897300014,-25.197918865999952],[143.4985049820001,-25.173738961999902],[143.61435619500014,-25.110972267999955],[143.65081576900002,-25.021355960999983],[143.4695070240001,-25.108208440999874],[143.35542656300015,-25.13265386799992],[143.3320751030002,-25.077506894999885],[143.24453230900008,-25.052240249999898],[143.30470357600007,-24.96753998199995],[143.39224089200002,-24.9242631489999],[143.30235474300014,-24.792652958999952],[143.13616047300013,-24.798636594999948],[143.11486811200007,-24.72593738099988],[143.21130332000007,-24.61530279699997],[143.2186006950002,-24.4979684569999],[143.27112258400007,-24.450379951999878],[143.3203318430002,-24.33192859099995]],[[136.75490256900002,-28.64409676999992],[136.78209384900015,-28.58453589899989],[136.87423070800003,-28.58692351199994],[136.86147548200006,-28.71333759999993],[136.8928684120001,-28.86470017099998],[136.84001217900004,-28.881036724999944],[136.69912007900007,-29.01741660899995],[136.55310592800015,-29.065705349999973],[136.4942597270001,-28.99212454799988],[136.39622726400012,-29.054032593999978],[136.3483864640002,-28.963608208999972],[136.42220095500022,-28.944606450999913],[136.60696275300018,-28.845818259999874],[136.75490256900002,-28.64409676999992]]]]},"properties":{"objectid":634,"eco_name":"Simpson desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Australasia","eco_biome_":"AU13","nnh":2,"eco_id":214,"shape_leng":107.610390958,"shape_area":52.815132262,"nnh_name":"Nature Could Reach Half Protected","color":"#E8805D","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":586326.4273871564,"percentage":2.2224336898142663}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-113.55788485299996,43.51484613400015],[-113.67267446999995,43.391867535000074],[-113.84131178499996,43.38595066900007],[-113.95056237499995,43.33867460100015],[-114.06113798499996,43.330413367000176],[-114.17738693899992,43.37055398000007],[-114.38179428799998,43.347111050000194],[-114.79283645899989,43.421634864000055],[-114.89303631799993,43.4151969720001],[-115.0519660409999,43.33783532000007],[-115.24230829499999,43.34743367200002],[-115.31451153999996,43.29723910800004],[-115.44832995299993,43.32863820700004],[-115.6498411469999,43.26125589000014],[-115.73579069299996,43.30709358900015],[-115.92562873299994,43.461975720000055],[-116.06099405499992,43.51210015500004],[-116.10224620199995,43.614808600000174],[-116.28043594799993,43.78631365400014],[-116.38018681899996,43.82114122799999],[-116.40422743699986,43.90761627799998],[-116.28345682999998,43.91187245800006],[-116.291549912,44.01079150200013],[-116.23557929999993,44.09462048500012],[-116.26012443499997,44.182799145],[-116.20428889099998,44.33105941400004],[-116.31973209999995,44.38815712400009],[-116.29749305899986,44.52116483700007],[-116.3426537759999,44.606307112000195],[-116.323425139,44.68547095800011],[-116.47300368999987,44.725551864000124],[-116.63445298099987,44.61663819500012],[-116.73490130399995,44.60786617700012],[-116.80010317099999,44.517066736000174],[-116.77246761699985,44.41837664700017],[-116.90348643399989,44.3955897080001],[-116.996835697,44.32172661000004],[-117.06564892699993,44.36064180700015],[-117.18364831199995,44.3287273950001],[-117.30919905099995,44.357988126000066],[-117.29374720399989,44.27581161500018],[-117.38677251199988,44.23763109700019],[-117.57087279899997,44.27478516400009],[-117.57905329999994,44.1902518230001],[-117.44995174799999,44.071471046000056],[-117.76542925699994,44.07214993500003],[-117.83013561999991,43.972581804000185],[-117.820167175,43.85448079100013],[-117.98361600099992,43.89182030899997],[-118.05492720399991,43.81034880100009],[-118.21295357199995,43.816080245000194],[-118.35510897899997,43.91963985400008],[-118.41888913699995,43.86774375600015],[-118.49677539499993,43.926272919999974],[-118.65826940199997,43.94513369800018],[-118.65731568499996,43.87523143300018],[-118.56816850899992,43.7396412600001],[-118.61104837099998,43.65795169500018],[-118.69335123899998,43.633016322000174],[-118.80092863099992,43.655063389000134],[-118.9565358719999,43.62207750700003],[-119.1116142379999,43.63703368200004],[-119.09334342699992,43.53911098700007],[-119.28976821099997,43.537484483000185],[-119.37701873299989,43.571222845000136],[-119.42344672399997,43.63981999100008],[-119.59637425499994,43.62065787900019],[-119.67091790699993,43.686630459000014],[-119.87277055399994,43.64387962700005],[-119.96753041799991,43.83539157500019],[-120.11272676599998,43.84394037400011],[-120.12951575899984,43.753554854000015],[-120.22766920899994,43.69933967600008],[-120.32044351699994,43.760570778000044],[-120.33568966199994,43.87603671200009],[-120.4420693749999,43.905098318],[-120.56528832299995,43.883694315000184],[-120.713533483,43.96085621600008],[-120.76042924799998,43.92329602900014],[-120.92241084099993,43.93999300600012],[-121.09045881399999,43.86926288899997],[-121.00790265799986,43.81968949100008],[-120.79935570399994,43.75606301300019],[-120.80359060499995,43.657386345000134],[-120.76243112199995,43.56885127400011],[-120.83884674799992,43.533039060000135],[-120.97647494199992,43.54608984400011],[-121.16032500199992,43.42718248600005],[-121.19579448599995,43.36849539600007],[-121.18234819299994,43.23611889300014],[-121.26383538199997,43.111590282000066],[-121.21160734999995,43.04615889900015],[-120.98080698499996,43.06642783700016],[-120.78314322099993,42.99211158700007],[-120.81997630799992,42.908422221000194],[-120.79817981999992,42.79227401100013],[-120.67198102999998,42.698938107000174],[-120.52969576899994,42.676658545000066],[-120.47373987699996,42.50166524200006],[-120.42767337099991,42.45463377500005],[-120.30020479099989,42.46143934800011],[-120.17117643999995,42.43182699200014],[-120.09093920599992,42.30419392100009],[-120.15739269099998,42.23337551200012],[-120.15940217699995,42.10107265400012],[-120.07351513899994,42.030890333],[-120.11556217099997,41.93672594000003],[-120.18224397099993,41.88632048700009],[-120.17652477699994,41.79170357600009],[-120.22600469599996,41.69640640100016],[-120.18904888799989,41.58494344400009],[-120.199195466,41.49702473500008],[-120.15829878799997,41.42477204300002],[-120.11425472499997,41.21445342200019],[-120.0586335289999,41.15990449900005],[-120.10756339599999,41.03663299500005],[-120.20020845899995,40.99603181700013],[-120.22138658899996,40.92427810100014],[-120.47164826999989,40.891197249000186],[-120.46716123399989,40.97987136300003],[-120.537862008,41.051822690000165],[-120.60429644999994,40.93132750000012],[-120.7619613729999,40.91054485500018],[-120.75329949399998,40.84161955400015],[-120.56119481099984,40.808760924000126],[-120.50654913299996,40.83154373600013],[-120.32087060299995,40.77923759300012],[-120.21150559299997,40.787427778],[-120.15430852299994,40.72812016600005],[-120.16110492099989,40.652980514000035],[-120.26348413799997,40.67070692600004],[-120.32559707899986,40.59280248600004],[-120.46079101999987,40.57273790600004],[-120.52683373299993,40.41508427000008],[-120.35904323999989,40.38408281000005],[-120.27653681699991,40.40516662600015],[-120.1898145589999,40.32166786500011],[-120.00448575599995,40.25981643600011],[-119.92936101699996,40.26360715200008],[-119.89566654099997,40.39182701600009],[-119.91952421899998,40.515743579000116],[-119.85396892499989,40.54458885400015],[-119.8372682129999,40.688988958000095],[-119.67095223699994,40.655879090999974],[-119.49221321399989,40.79645289200016],[-119.37176400599998,40.676499657000136],[-119.30383935299989,40.74657364900003],[-119.35810172599992,40.78648846100003],[-119.41088429299998,40.90815549500019],[-119.33494189699991,40.982016620000024],[-119.250270904,40.92585856500017],[-119.16177502899995,41.03291041400013],[-119.15713308999983,41.14852010000004],[-119.19015428599988,41.31411510800001],[-119.25861948799991,41.339252625000086],[-119.20434024499991,41.41834663700007],[-119.11751582899996,41.27157394000017],[-119.00648144099989,41.153978781000035],[-118.87756794599994,41.284574239000165],[-118.8874934829999,41.39537371400007],[-118.78942471299996,41.497932733000084],[-118.70774631799992,41.51952199200019],[-118.60971785999993,41.473544194],[-118.56023246799992,41.55369744700016],[-118.59654308199993,41.655477586000075],[-118.58530449199998,41.82870844700011],[-118.47321015299997,41.754017268000155],[-118.43103119399996,41.67586559200015],[-118.26599093499993,41.55471630400018],[-118.2690325559999,41.66695553000011],[-118.3271535159999,41.880879870000115],[-118.23803032899991,41.90603572400016],[-118.05983533199992,41.58816801800009],[-117.99481528199993,41.544569028000126],[-117.97170933799993,41.71287708800003],[-117.87437506799995,41.81073313100012],[-117.70266588899995,41.762259167000025],[-117.76922960599995,41.5648956980001],[-117.76393367599991,41.39071503700018],[-117.68470337699995,41.31732368200011],[-117.61989843799995,41.33864298400016],[-117.58489910299994,41.541899619000105],[-117.50092206899996,41.57827018200004],[-117.383549282,41.54463423600015],[-117.32782329899999,41.45452244100011],[-117.20885740499995,41.514886454000134],[-117.11172181399996,41.516720073000045],[-117.05872038399997,41.44062964400018],[-117.10336317699989,41.31797638100005],[-116.98699343399988,41.16544788300007],[-116.73314598099995,41.25784317100016],[-116.65053379699998,41.34339535400011],[-116.50596501999996,41.36187933400004],[-116.38247522199998,41.31233874600014],[-116.39413923899997,41.241896323],[-116.30002870299995,41.22255440000009],[-116.34579939399993,41.093206726000176],[-116.27118373899992,40.97061154400012],[-116.16987279699998,41.12741322400018],[-116.17635185299997,41.17284556300001],[-115.96339855099995,41.28439483300008],[-115.9291813609999,41.340302314000155],[-115.9454494499999,41.48998696000018],[-115.89503316799994,41.61741341100003],[-115.78165447499998,41.61148019300009],[-115.59776242699996,41.503540367000085],[-115.48112494399993,41.60779803500003],[-115.3923715219999,41.517475196000134],[-115.34068539599997,41.55347620000009],[-115.2726077339999,41.681561006000095],[-115.14438617999986,41.62367699800018],[-115.11997803399993,41.49746036700009],[-115.01909522399995,41.36705423700016],[-114.94896829599992,41.1754590810001],[-114.79349611199996,41.23879131100017],[-114.69960636199994,41.184819237000056],[-114.62396405099997,41.20464287800007],[-114.53088824899999,41.16721574600007],[-114.44190968699996,41.088388081000176],[-114.25326530299998,41.15435884300007],[-114.25708581299995,41.25052062100019],[-114.18293683599995,41.44740950900007],[-114.10342961099997,41.46660176000006],[-114.0379174869999,41.41734623600013],[-113.95180370499997,41.4693952020001],[-113.97879725599995,41.62962698300015],[-113.88235662099999,41.724520416000075],[-113.84443368199999,41.62318552600004],[-113.85160450099988,41.49467940000011],[-113.68269734299986,41.45496964400007],[-113.68790573499996,41.63995123300015],[-113.58093841499993,41.800363527000115],[-113.24407850399996,41.81349897900003],[-113.17247901799993,41.84601616900005],[-113.1358481339999,41.96316391700003],[-112.91927332099988,42.10695124300008],[-112.83273346499993,42.056213087],[-112.7109060649999,42.11573644800018],[-112.62006130099996,42.09334013900008],[-112.6324472789999,42.01948614000014],[-112.39764504599992,41.992855819000056],[-112.4404937079999,42.0761660500001],[-112.37592378999994,42.192168240000115],[-112.38379541499995,42.27800049000007],[-112.2332132009999,42.22220920600006],[-112.20727530199997,42.074561863000156],[-112.15191921899998,41.90953501600018],[-112.07814485399996,42.07518269400009],[-111.99899496599994,42.060809463],[-111.99152277299987,42.15656046600003],[-112.03518611599992,42.33968930900011],[-111.85854739699994,42.27945730000016],[-111.80077426499992,42.16566833600007],[-111.80449479099991,42.066114262999974],[-111.73424774699998,42.03614508000004],[-111.73861013299995,42.15799665600019],[-111.65300384199992,42.44197691900018],[-111.70379121199994,42.63325267500011],[-111.54136011899999,42.596349879000115],[-111.49101383699997,42.630076646000134],[-111.53944953599989,42.72042729200018],[-111.47732897999998,42.993158883000035],[-111.57064243199994,43.03152863300005],[-111.72039104399994,43.21268909800017],[-111.6986071369999,43.417530720000116],[-111.63636167499999,43.54905086100007],[-111.43280920199999,43.498572852000166],[-111.48954452499999,43.6002733900001],[-111.64333345399996,43.6048405410001],[-111.66072997899988,43.65906681000018],[-111.46549667599993,43.72358208600002],[-111.37277086799998,43.814733297000146],[-111.29144760999998,43.781619318000025],[-111.16404042399995,43.57659712800012],[-111.10193256399998,43.569012520000115],[-111.00960423299989,43.761782033000145],[-111.09646227399998,43.86656622900017],[-111.17656244799997,44.043234514],[-111.27913206499983,44.105819767000185],[-111.50780121399993,44.14015260200006],[-111.67928680099999,44.308807221000166],[-111.688053089,44.391321742000116],[-111.46548373699994,44.426050978000035],[-111.60468674699985,44.496710271000154],[-111.77855905099983,44.44617793400016],[-111.8903763749999,44.48032813000009],[-111.94087803699995,44.39095194000009],[-111.9965189859999,44.34876405400013],[-112.18131328099986,44.36176809400018],[-112.21460526499993,44.32476773400009],[-112.38504853699999,44.29356125000004],[-112.41473723699983,44.21705723800011],[-112.69635791499996,44.01799191499998],[-112.83836000799988,43.809972875000085],[-113.09548720599997,43.631532766000134],[-113.276442681,43.57772952900012],[-113.55788485299996,43.51484613400015]],[[-118.59213160299987,42.78055917699999],[-118.52174741799996,42.740972248000105],[-118.53397497299994,42.63875725600019],[-118.63469278599996,42.59938877400015],[-118.73708380899984,42.71878275200015],[-118.67071259999994,42.779064931],[-118.59213160299987,42.78055917699999]],[[-115.43097767199993,41.823702388000015],[-115.30977795299998,41.828125125000156],[-115.29009181999999,41.73757007200015],[-115.42963568199991,41.75287853000009],[-115.43097767199993,41.823702388000015]]]},"properties":{"objectid":637,"eco_name":"Snake-Columbia shrub steppe","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Nearctic","eco_biome_":"NE13","nnh":2,"eco_id":434,"shape_leng":53.6537018765,"shape_area":21.2168209749,"nnh_name":"Nature Could Reach Half Protected","color":"#C4694E","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":193296.23994005242,"percentage":0.7326773205014239}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[53.56176354900009,12.704379619],[53.516441593000025,12.711706072000027],[53.39641961199999,12.655039042999988],[53.39615256500019,12.570688598],[53.305702610000026,12.53034331300006],[53.4649616210001,12.441453564000028],[53.54557759200014,12.339836231000106],[53.751701499000035,12.299508213000081],[54.03221546800006,12.349309795000067],[54.13417847000011,12.34854184400001],[54.26068150599997,12.44018454500008],[54.40362950000002,12.465508621000026],[54.466365531000065,12.543698367000161],[54.085849590000066,12.70126389700016],[53.845870505000164,12.60307342200008],[53.76974455100009,12.615519710000171],[53.646049620999975,12.702671889000158],[53.56176354900009,12.704379619]]]},"properties":{"objectid":639,"eco_name":"Socotra Island xeric shrublands","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Afrotropic","eco_biome_":"AF07","nnh":4,"eco_id":105,"shape_leng":4.1504572991,"shape_area":0.316264484732,"nnh_name":"Nature Imperiled","color":"#A80000","color_bio":"#CC6767","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":3826.3642442074934,"percentage":0.014503594599552777}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[46.54083333400018,7.021666667000034],[46.63333333300011,7.125000000000171],[46.59166666699997,7.225],[46.66666666600008,7.225],[46.58333333300004,7.416666667000129],[46.5,7.516666667000095],[46.625000000000114,7.616666667000061],[46.616666666000185,7.766666666000162],[46.58333333300004,7.875000000000171],[46.49166666700006,7.975000000000136],[46.45000000000016,7.975000000000136],[46.316666667000106,8.1],[46.24166666700012,8.133333333000166],[46.09083333400014,8.307500000000175],[45.514166666,8.4975],[44.87333333300012,8.70916666700009],[44.27166666600016,8.911666666000144],[44.00666666700016,8.99583333400011],[43.6475,9.358333334000065],[43.48500000000013,9.40583333300009],[43.39833333300004,9.553333333000012],[43.29916666700012,9.610833333000187],[43.25666666600006,9.84333333300009],[43.201666666000165,9.87177626100015],[43.00843865100006,9.745173154000042],[42.8725,9.6991666670001],[42.92169189500015,9.640000000000157],[42.94916666600011,9.52250000000015],[42.90083333400014,9.476666667000131],[42.70916666700009,9.478333333000023],[42.71666666600004,9.355833334000124],[42.608333333000076,9.430833333000066],[42.55166666700018,9.431666666000183],[42.41416666700002,9.361666666000133],[42.305,9.35333333400007],[42.20333333300016,9.388333333000048],[42.1400000000001,9.31],[42.14416666700015,9.1725],[42.040000000000134,9.259166666000112],[41.958333332999985,9.275],[41.91416666700013,9.160833333000141],[41.9025,9.011666667000156],[41.75416666700016,8.965833333000091],[41.660833333000085,8.970833334000133],[41.516666667000095,8.945000000000164],[41.594166667000025,9.110000000000127],[41.65000000000015,9.289166666000028],[41.50583333300011,9.039166666000085],[41.459166666000044,9.158333333000087],[41.33583333300015,8.98916666700012],[41.31,9.071666667000045],[41.16666666600008,8.998333333000062],[41.099166665999974,8.93833333300006],[40.9625,8.96000000000015],[40.99000000000012,8.834166667000147],[40.78,8.7475],[40.735000000000184,8.908333333000087],[40.49833333300006,8.818333333000169],[40.36916666700017,8.69833333300005],[40.31333333400005,8.581666667000093],[40.22416666700019,8.5275],[40.14416666699998,8.355833333000078],[40.045000000000186,8.306666666000126],[40.0425,8.160833334000074],[40.1325,8.08083333400009],[39.98916666700018,8.081666667000036],[39.97416666700002,7.9725],[40.05416666700006,7.903333334000081],[40.00500000000011,7.855833332999964],[40.0775,7.808333333000178],[40.14416666699998,7.835833333000039],[40.18333333400017,7.716666666000094],[40.17083333300019,7.62083333400011],[40.1,7.498333333],[39.99166666700012,7.494166666000126],[39.92000000000013,7.540833333000023],[39.81750000000011,7.55],[39.6975,7.655],[39.62000000000012,7.661666667000134],[39.705,7.528333334000024],[39.585833333000096,7.519166666999979],[39.57833333400015,7.453333333000103],[39.69833333400004,7.420000000000186],[39.77166666700009,7.3575],[39.86083333300019,7.390833332999989],[39.93416666700011,7.458333333000098],[40.18,7.41],[40.278333333000035,7.485],[40.32250000000016,7.449166666000053],[40.42500000000018,7.436666666],[40.600000000000136,7.5325],[40.74166666700012,7.425000000000182],[40.73916666600013,7.358333334000065],[40.795000000000186,7.318333333999988],[40.80000000000018,7.243333333000066],[40.74666666700011,7.1225],[40.64166666699998,7.07666666700004],[40.59500000000014,7.102500000000134],[40.497500000000116,7.085833332999982],[40.47333333400019,6.966666666000037],[40.540833333000194,6.909166667000022],[40.41916666600014,6.88],[40.48,6.73583333300013],[40.40166666700003,6.72],[40.299166666000076,6.880833333000112],[40.20666666700015,6.89333333400009],[40.060833334000165,6.868333333000066],[39.98416666700018,6.695833333000053],[39.995833333000064,6.641666666999981],[39.910833333000085,6.515000000000157],[39.79,6.525833333000094],[39.59166666700014,6.454166666999981],[39.53666666700008,6.322500000000161],[39.3975,6.1625],[39.29500000000013,6.186666667000168],[39.28916666700002,6.075000000000102],[39.215000000000146,6.118333333000066],[39.108333333000076,6.232500000000186],[39.171666666000135,6.354166667000072],[39.185833333000176,6.450000000000102],[39.12583333400005,6.33],[39.06333333300017,6.310000000000116],[39.0725,6.19583333300011],[39.231666666000194,6.081666667000093],[39.20083333400004,6.0475],[39.12,6.151666666000153],[38.96916666700008,6.167500000000189],[38.929166667000175,6.294166667000184],[38.7691666660001,6.415],[38.776666667000086,6.4425],[38.75000000000017,6.440000000000168],[38.886666666999986,6.29500000000013],[38.932500000000175,6.187500000000114],[38.893333333000044,6.150833333000037],[38.91583333300008,6.028333333000091],[39.024166667000145,5.938333333000116],[39.0725,6.02250000000015],[39.14333333300016,5.983333333000189],[39.275,5.991666667000118],[39.370000000000175,5.943333333000112],[39.34083333300015,5.900833333000094],[39.3575,5.794166666000024],[39.265,5.688333333000173],[39.21333333400008,5.675833334000174],[39.15416666700003,5.5975],[39.16250000000019,5.53416666600009],[39.12416666600018,5.422500000000127],[39.023333333000096,5.531666666000035],[38.99666666700011,5.643333333000101],[38.93083333400011,5.661666666000087],[38.7675,5.56666666700005],[38.75083333300012,5.618333333000123],[38.606666666000194,5.671666666000021],[38.445000000000164,5.629166667000163],[38.330833333000044,5.437500000000114],[38.28416666600015,5.4425],[38.25500000000011,5.4575],[38.215,5.5275],[38.111666667,5.492500000000121],[38.116666667,5.680000000000121],[38.197500000000105,5.6975],[38.192500000000166,5.815833333000114],[38.190833334000104,5.819166666000172],[38.158333333000144,5.995833333000064],[38.0975,6.017500000000155],[38.06916666700005,6.172500000000127],[38.17000000000013,6.241666666000128],[38.22083333300009,6.322500000000161],[38.289166667000075,6.280833334000022],[38.345833334000076,6.386666667000043],[38.338333334000026,6.531666667000081],[38.29583333300013,6.547500000000184],[38.34583333299997,6.664166666000142],[38.46916666600009,6.7575],[38.40416666700014,6.834166666999977],[38.35083333300014,6.834166666999977],[38.2875,6.759166667000159],[38.24083333400017,6.792500000000132],[38.218333334000135,6.940833333000171],[38.23083333400018,7.030833333000146],[38.14166666600005,7.230833333000021],[38.11333333300007,7.33416666700009],[38.035,7.3241666670001],[37.999166667000054,7.115833333000126],[37.94583333300005,7.013333333000105],[37.935000000000116,6.9125],[37.91083333400019,6.875833333000116],[37.9275,6.710833334000085],[37.83583333400003,6.6675],[37.77166666700009,6.5925],[37.737500000000125,6.460833333000039],[37.77500000000015,6.310833333000062],[37.72666666700002,6.198333333000051],[37.62833333300017,6.16],[37.564166667000165,6.10333333300008],[37.560000000000116,6.018333333000101],[37.415,5.865],[37.40916666600009,5.759166666000112],[37.43833333300006,5.588333333000037],[37.41416666700013,5.406666666000149],[37.47833333400007,5.385833334000154],[37.44,5.247500000000173],[37.31000000000017,5.205833334000033],[37.135,5.3575],[37.108333334,5.455833333000101],[37.00416666600012,5.406666667000025],[36.987500000000125,5.49],[36.925833334000174,5.546666667000068],[36.96666666700003,5.624166666000065],[36.88666666700004,5.645],[36.828333333000046,5.605000000000132],[36.79250000000019,5.45333333300016],[36.875000000000114,5.419166667000127],[36.91500000000019,5.345],[36.826666666999984,5.085833333000039],[36.77000000000015,5.068333333000169],[36.71416666700003,4.984166667000068],[36.74333333400017,4.7725],[36.65583333300003,4.710833333000039],[36.68250000000012,4.631666667000047],[36.64416666700015,4.580833333000157],[36.670833334000065,4.5225],[36.63666666600017,4.447500000000105],[36.675,4.431666667000172],[36.853333333000194,4.445000000000164],[37.04,4.375000000000171],[37.195,4.260833334000097],[37.985000000000184,3.735833334000063],[38.03583333300003,3.64416666700015],[38.083333333000155,3.653333333000091],[38.12666666600006,3.568333333000112],[38.204166667000095,3.61500000000018],[38.229166667000186,3.524166667000088],[38.32916666700015,3.450833333000105],[38.34583333299997,3.405833333000032],[38.439166666000176,3.39333333400009],[38.57250000000016,3.185000000000116],[38.5741666670001,3.116666667000061],[38.639166667000154,3.101666667000075],[38.66583333300014,3.020833333000041],[38.72250000000014,2.980833332999964],[38.80916666700011,3.064166666000176],[38.7625,3.161666667000134],[38.684166666000124,3.041666667000072],[38.60500000000013,3.296666667000181],[38.73166666600008,3.378333333000057],[38.75083333300012,3.27],[38.903333333000035,3.143333333000044],[38.900833334000026,2.955833333000044],[38.9458333340001,2.8775],[38.9125,2.791666667000072],[38.968333334000135,2.741666667000061],[38.99166666700012,3.045],[39.06333333300017,3.0975],[39.12166666600007,2.977500000000134],[39.09333333300009,2.923333333000187],[39.11416666700012,2.839166666000153],[39.09,2.74583333400011],[39.0975,2.653333333000148],[39.066666666,2.564166667000165],[39.09333333300009,2.465833333000091],[39.1525,2.505000000000109],[39.17416666700012,2.609166667000068],[39.288333333000026,2.69583333300011],[39.27,2.81666666700005],[39.325833333,2.900833333000151],[39.406666667000025,2.885833334000097],[39.370000000000175,2.6475],[39.36833333300018,2.523333333000096],[39.412500000000136,2.444166667000104],[39.42083333300013,2.325833333000105],[39.47916666700013,2.13666666600011],[39.35333333300002,2.100833333000082],[39.30166666700012,2.155],[39.28916666700002,2.2525],[39.09416666700014,2.195833334000099],[39.06416666700005,2.150833333000151],[39.0841666660001,1.993333333000066],[39.03333333300009,1.949166667000043],[38.895,2.132500000000164],[38.8275000000001,2.29],[38.76083333399998,2.299166667000065],[38.71,2.256666667000104],[38.70833333400003,2.165833334000183],[38.73916666600019,2.056666667000059],[38.75583333300011,1.90416666700014],[38.68333333300018,1.915833333000137],[38.545833333000076,1.854166667000072],[38.48750000000018,1.820833333],[38.38916666600011,1.755],[38.38083333300011,1.692500000000109],[38.5125000000001,1.7125],[38.5741666670001,1.679166667000118],[38.9075,1.310833333000119],[39.051666666000074,1.27916666700014],[39.369166666000126,1.173333333000187],[39.375000000000114,1.114166667000177],[39.5158333330001,0.930833333000123],[39.59,0.755833333],[39.66583333400018,0.637500000000102],[39.80583333300012,0.508333333000166],[40.1375,0.3475],[40.29583333400018,0.225],[40.384166666000056,0.198333334000097],[40.51083333300011,0.255833333000112],[40.5825,0.315],[40.780833332999975,0.359166667000181],[40.98833333300013,0.464166667000086],[41.14552849000012,0.453832051000177],[41.391898201000174,0.459991294000019],[41.598232834999976,0.429195080000113],[42.004742858999975,0.339886059000037],[42.187938722000126,0.282089264000149],[42.33260995100005,0.287799970000151],[42.35259742300019,0.347762388000092],[42.4925097310001,0.536215699000024],[42.52106326300003,0.690404772000136],[42.64193988200009,0.803667116000156],[42.724745125000084,0.815088529000093],[42.76091293200011,0.875050947000034],[42.75520222600011,0.953097268000079],[42.68857731700018,1.113948832000176],[42.77138256000006,1.144405932000097],[42.87798241400003,1.084443515000089],[42.90939129900005,1.224355822000064],[42.905163669000046,1.427637936000053],[42.98796891200004,1.476178940000182],[43.10146920200003,1.477606617000106],[43.13430576400003,1.533999843000174],[43.16571464900005,1.709604065000178],[43.23781231800018,1.809541427000113],[43.40913351000006,1.773849512000027],[43.49550794400005,1.780987895000123],[43.63827560500005,1.890205155000103],[43.67539519700017,2.097932101000026],[43.76533882300009,2.130054825000059],[43.93309082300004,2.112208867000163],[44.0701477770001,2.000136254000097],[44.22590084800015,2.009130236000146],[44.406796382000095,2.151286430000084],[44.499595361000104,2.154855622000127],[44.733377405000056,2.131655877000014],[44.90826778900015,2.267285153999978],[45.090754861000164,2.263119767000035],[45.19184604900016,2.34986315600014],[45.23438028000004,2.353676708000023],[45.43846788900004,2.573778861000051],[45.39544481600018,2.815050285000041],[45.43256440700003,3.074887427000021],[45.47502787200011,3.207485231000078],[45.53596117700005,3.268418536000127],[45.61530701300006,3.224793470000122],[45.693829226000105,3.064893691000179],[45.71297054700017,2.760292083000138],[45.740096402,2.636084219000054],[45.81861861500005,2.67891451700018],[45.852882854000086,2.887355301000184],[46.02563172300006,3.031550638000169],[46.01706566300004,3.140054060000068],[46.17125473600004,3.284249397],[46.145556557000134,3.435583117000078],[46.16982705999999,3.501256240000089],[46.331154516000026,3.558363304000068],[46.481060559000184,3.535520479000184],[46.58528095100007,3.552652598000066],[46.678079931000184,3.709697024000093],[46.78658335200004,3.738250557000185],[46.86796091900004,3.902433366000082],[46.96932595800001,3.932414575000166],[47.02928837500008,4.035207290000187],[47.16348997600005,4.212239189000115],[47.34623258100015,4.376421998000069],[47.598622009999985,4.496870314000091],[47.68190314500015,4.60870498200012],[47.71402586900018,4.769318600000076],[47.80135208799999,4.923745619000158],[47.99072265600006,5.020690918000071],[48.10687255900018,5.144897461000085],[48.159912109000174,5.106079102000024],[48.22063981000014,5.306633560000137],[48.457713721,5.791557470000157],[48.570862633000104,5.963974860000121],[48.65865194700012,6.195503062000057],[48.69427490200013,6.24890136700003],[48.89007568400001,6.429687500000057],[49.05773776600017,6.537551169000096],[48.562423287000115,6.553770188999977],[47.5749469700001,6.553770188999977],[47.19423320900012,6.541872884000156],[46.718341008000095,6.541872884000156],[46.59916666700008,6.5775000000001],[46.52415078700017,6.638349481000148],[46.484166667000125,6.763333334000038],[46.54333333400007,6.877500000000111],[46.51583333300016,6.935833333000176],[46.54083333400018,7.021666667000034]],[[40.6525,8.820000000000107],[40.71666666700003,8.814166667],[40.73666666700012,8.730833334000181],[40.636666666999986,8.666666667000072],[40.5875,8.71],[40.6525,8.820000000000107]],[[43.069166667000104,9.457500000000152],[43.15750000000014,9.425000000000125],[43.16416666600014,9.351666667000075],[43.08,9.3275000000001],[43.025833334000026,9.435000000000116],[43.069166667000104,9.457500000000152]],[[38.049166667000065,5.619079590000183],[38.09583333400013,5.528333334000081],[38.02583333300004,5.370000000000175],[37.9533333330001,5.320833334000099],[37.911666667000134,5.42],[37.97833333300002,5.560833334000108],[38.049166667000065,5.619079590000183]],[[37.882500000000164,6.039166665999971],[37.905,5.755000000000166],[37.87333333300012,5.590833333000091],[37.89166666700004,5.4475],[37.77833333400008,5.48],[37.80250000000018,5.723333334000188],[37.751666667000165,5.849166666999963],[37.878333333000114,5.985833333000073],[37.882500000000164,6.039166665999971]],[[38.04250000000013,4.970092773000147],[38.12083333300018,4.914166667000018],[38.16000000000014,4.83166666700015],[38.1458333330001,4.745833333000121],[38.07500000000016,4.780833334000135],[38.058333333000064,4.855833334000124],[37.98416666700007,4.9025],[38.04250000000013,4.970092773000147]],[[43.98787665800006,3.762852860000123],[44.142533682909914,3.732682457863177],[44.25639933037883,3.674411392339437],[44.31560677641346,3.54657697449619],[44.314640216761404,3.415563673370286],[44.279745362988535,3.265700977072015],[44.364351202420664,3.124955703828334],[44.35166820565371,2.979456335358407],[44.28484554481844,2.921904824651619],[44.05988968949055,2.893185829174058],[43.932077402425534,2.958526607843737],[43.8081415398085,2.972364510584214],[43.73799938530891,3.050377843024478],[43.711536407278174,3.154861273625272],[43.72630471549809,3.255410284344919],[43.582024902275634,3.412820379467519],[43.59893986388056,3.513450013083968],[43.69694807350339,3.634392725170585],[43.90436875975439,3.739904366463236],[43.98787665800006,3.762852860000123]],[[43.423960739,3.005210511000087],[43.354613276416615,2.871550428293801],[43.24354911995084,2.768197267512278],[43.1670902628091,2.735446732977778],[43.06775225835372,2.800799268320077],[43.064720811068696,2.899263748106137],[43.155886092368405,3.041915725475576],[43.35075527936323,3.15525566403835],[43.44267238077771,3.097019910987569],[43.423960739,3.005210511000087]],[[39.49916666700011,2.736666667000065],[39.52166666700015,2.660833334000131],[39.52500000000015,2.500000000000114],[39.565,2.431666666000126],[39.55,2.275],[39.4625,2.2650000000001],[39.43666666700017,2.355833334000124],[39.446666666000056,2.434166667000113],[39.41666666600008,2.516666667000038],[39.41166666700019,2.667500000000132],[39.49916666700011,2.736666667000065]]]},"properties":{"objectid":642,"eco_name":"Somali Acacia-Commiphora bushlands and thickets","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Afrotropic","eco_biome_":"AF07","nnh":4,"eco_id":55,"shape_leng":184.190579607,"shape_area":61.3195214101,"nnh_name":"Nature Imperiled","color":"#FCD135","color_bio":"#FEAA01","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":756427.9051341016,"percentage":3.5282772007010763}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-112.28484365899988,29.225886454000147],[-112.47430467899994,29.16355694500004],[-112.50495159899992,29.012094949000186],[-112.48225357299987,28.95828799200018],[-112.53489661899994,28.84934856400008],[-112.35777258699994,28.759339161000128],[-112.27490255499998,28.767629702000136],[-112.19352768599998,29.020568550000064],[-112.2710116749999,29.13584000300017],[-112.28484365899988,29.225886454000147]]],[[[-109.50654567599992,29.72256333500019],[-109.42755864399999,29.804218495000157],[-109.42869556499988,29.855722273000083],[-109.57176157699996,29.859579121000024],[-109.50654567599992,29.72256333500019]]],[[[-110.41175598099994,33.485525098000096],[-110.48986243099984,33.532772240000156],[-110.59502166899989,33.50490945500019],[-110.59331653899994,33.40912897300012],[-110.70662568699998,33.41794814000019],[-110.70640031699992,33.33148386300013],[-110.56869572999994,33.32060813300018],[-110.58546130799994,33.20614300200003],[-110.7094295419999,33.137931700000024],[-110.80525832499995,33.181965232000096],[-110.89037662699997,33.166603619000114],[-110.74579907599991,33.05901383900016],[-110.78526553699999,33.03224306700008],[-110.96860629599996,33.17250428400013],[-111.16498362999994,33.17120565700003],[-111.15801598199994,33.24185699000003],[-111.08337663399993,33.29992238100016],[-111.34557168299995,33.41378289200003],[-111.37241430899985,33.502242553000144],[-111.23182103099992,33.53387907000007],[-111.1545020239999,33.59739097100015],[-111.00333455799995,33.566268811999976],[-110.78200392599996,33.65112515599998],[-110.80178585699997,33.75979174000008],[-110.90709138699998,33.68599745400019],[-111.02112732199998,33.764943260000166],[-111.15359259399997,33.78444463400007],[-111.2846710469999,33.981857219],[-111.34275803499992,33.88019859000008],[-111.32564494899992,33.79467237600005],[-111.21886935099997,33.681549842000095],[-111.25830728799991,33.62234888700016],[-111.35583969499999,33.628330415000164],[-111.45553320799996,33.72521190500004],[-111.47310015499994,33.82595122500004],[-111.543426706,33.85659080800019],[-111.60589166999995,33.938075311000034],[-111.61987336099997,34.05797607900007],[-111.734069923,34.108082768000145],[-111.79341217399997,34.001799517000165],[-111.71135924599997,33.915264471],[-111.90722787199996,33.876957495000056],[-112.04050678099998,33.94497912600008],[-112.10365335299997,34.174198587000035],[-112.1764522759999,34.20466863200005],[-112.22162552099991,34.073876433000066],[-112.3250619939999,34.0875976750001],[-112.47714106499996,34.058138618999976],[-112.51475644299995,33.953060473000164],[-112.60570463199991,34.01493635600008],[-112.59937995299993,34.125984012000174],[-112.95574823699997,34.20387634500014],[-113.02583772499992,34.29426505300012],[-112.93709178699999,34.56003502000004],[-113.07404447999994,34.583012868000026],[-113.16077559399997,34.568009018000055],[-113.21813369299991,34.61039389600012],[-113.43573947399989,34.64996096300018],[-113.44417397599995,34.725785267],[-113.61962521099991,35.00238024300006],[-113.58942916299992,35.09897696200005],[-113.66270522999991,35.141013800999986],[-113.71006287599994,35.033759996000185],[-113.79466499399996,34.95414743600014],[-113.74922290799998,34.90520814200005],[-113.76544753399992,34.726303499000096],[-113.72221301999991,34.62879997100009],[-113.75502153699995,34.53618978600008],[-113.88020397699995,34.44744599000012],[-113.99650223999998,34.47646256000007],[-114.08887893399987,34.67934508300016],[-114.09858972899997,34.80639009700013],[-114.21089127199991,34.803374112000085],[-114.27277936299993,34.75941291300006],[-114.45610644399989,34.74895428600007],[-114.61432099499996,34.6723377620001],[-114.67338455699996,34.562444287000176],[-114.76820887099996,34.496616282000105],[-114.7330151139999,34.32932768300003],[-114.80407170399985,34.12904364700012],[-114.87949155999996,34.23330921600012],[-114.96363980399997,34.269447144000026],[-114.98649117299993,34.39516855400012],[-115.04200534599983,34.38576967500006],[-115.17215792499996,34.28752625900012],[-115.29757955599985,34.332276386000046],[-115.38500826599994,34.18195997300006],[-115.41206329899995,34.09391586700008],[-115.2983756029999,34.00404465500014],[-115.49344327199998,33.85926176600003],[-115.48392912099996,33.742111378],[-115.7530138539999,33.680459831],[-115.79795419899995,33.701903912000034],[-115.93068426699989,33.680934296000146],[-116.08432865099991,33.73031686200005],[-116.2395776379999,33.848536731000024],[-116.49475897199994,33.98097305200014],[-116.60762978899999,34.01352819700003],[-116.64692662199997,33.96444397300007],[-116.76672166599997,33.93335123000003],[-116.76509846799996,33.89922425800006],[-116.58330515099993,33.819750326000076],[-116.58320415399993,33.75245637400013],[-116.52462321399997,33.651005876000056],[-116.4010570769999,33.57052506100018],[-116.44949901099994,33.484124422000036],[-116.5549988269999,33.51509517300008],[-116.57784325599994,33.416376952000064],[-116.47430612299996,33.2668264400001],[-116.5718529959999,33.15813678800009],[-116.49110058199994,33.003522788000055],[-116.3445579729999,32.840101526000126],[-116.25004726599991,32.73288871300019],[-116.20071825399998,32.61097607600004],[-116.07868163299997,32.60958566700003],[-116.01107068699997,32.52946406000018],[-115.90464767399999,32.48878534300013],[-115.85279068299997,32.42457024200013],[-115.87153664199997,32.25297172899997],[-115.77711466999995,32.09185998200013],[-115.78961963199998,32.007393868000065],[-115.74462859299996,31.859332745000188],[-115.68372367299997,31.82609967200017],[-115.67708554099994,31.745519240000135],[-115.64707162199988,31.65199145000014],[-115.56580353799995,31.595574536000072],[-115.50940657299998,31.500293587000044],[-115.51533459099994,31.430732843000158],[-115.55961568199984,31.34544580400012],[-115.69355765699999,31.37947465500008],[-115.73431365499994,31.328123428000026],[-115.58123763999998,31.25561409800008],[-115.47854658499995,31.274654429000122],[-115.39902461999998,31.097473401000173],[-115.29991967899991,31.047596216000045],[-115.26219960599991,30.98836616800014],[-115.29271660599983,30.847183234000113],[-115.19845556699988,30.732288296000036],[-115.24959556999988,30.635747882000146],[-115.13149254299998,30.548496964000094],[-115.10639159299996,30.461407146000056],[-115.01995857999998,30.470846845000096],[-114.95395662499999,30.387415896000164],[-114.81314065099997,30.28522641400008],[-114.82672855499999,30.175343352000084],[-114.76079566599986,30.165532837000057],[-114.53958852399995,29.94685015600004],[-114.5265045409999,29.970294172000024],[-114.66426866299997,30.19876875900019],[-114.63649757399997,30.257843407000053],[-114.627372531,30.47382963000007],[-114.69412265499994,30.620236332000104],[-114.69160456399999,30.809058483],[-114.71726257499995,30.934897001000024],[-114.83280157899992,31.01195753700017],[-114.8879315349999,31.162602130000096],[-114.878768606,31.34722695900018],[-114.8412245529999,31.579612039000153],[-114.77594763199988,31.643832840000073],[-114.8187786549999,31.719052375000047],[-114.81055466699996,31.82105695200005],[-114.68266258199998,31.757842146000087],[-114.59783956599989,31.75741517200015],[-114.48590863699991,31.6694549770001],[-114.16997559499998,31.495769706000146],[-114.02593258899992,31.489475902000038],[-113.95829767099997,31.57464006200007],[-113.8944545579999,31.59995525400018],[-113.686859627,31.51706996600018],[-113.62993661399997,31.458217103000095],[-113.61099267399993,31.331774250000137],[-113.54463163799988,31.296401445000186],[-113.25623365099989,31.240661621000015],[-113.12360361199995,31.22847785400012],[-113.03459165599992,31.16150108300002],[-113.06564358999992,31.0007557940001],[-113.12696056399994,30.809930536000138],[-113.07532468799991,30.659483924000142],[-112.98670953099986,30.53139855200004],[-112.85089855899997,30.380302007000182],[-112.84724455299994,30.291217296000184],[-112.75522667799999,30.184253147000163],[-112.74613952199996,29.91602118100019],[-112.68115965599992,29.903390491000152],[-112.65207663099994,29.834651340999983],[-112.47731763699994,29.586206702000027],[-112.38859552799994,29.49758014600002],[-112.41770168599999,29.373013833000073],[-112.35437758099994,29.31591396099998],[-112.30532852799996,29.36632708600007],[-112.23078155699989,29.303649393000057],[-112.14615652199996,28.993914601000142],[-112.02903752999993,28.860484090000057],[-111.90317554199987,28.784009114000014],[-111.91815953499992,28.716705784000055],[-111.76261856899993,28.591348722000077],[-111.68669864299994,28.44866358500019],[-111.46260862899999,28.36672109300008],[-111.45558962299992,28.315102987000046],[-111.32796458599984,28.186785436000036],[-111.27858763299997,28.09174437700017],[-111.17005154199995,27.99286222700016],[-111.05581659499984,27.936736836000136],[-110.98241459199988,27.957560836000084],[-110.94771552499992,27.870087630000114],[-110.87392460199993,27.85337830600008],[-110.80247457699994,27.920353400000124],[-110.5762785259999,27.883531867000045],[-110.44666261899994,27.830664018999983],[-110.41091162299995,27.73430113400019],[-110.27651953999987,27.618063080000127],[-110.16415358999996,27.57149322600003],[-109.96310458999994,27.61391839600003],[-109.94356553499995,27.702045726000165],[-109.97501359799998,27.74766758700008],[-109.94062063699988,27.939153674000124],[-109.977531522,27.984029713000155],[-110.08257252599998,27.99096037400011],[-110.18730155699996,28.258775256000035],[-110.14126562999996,28.29001712400003],[-110.07214359499994,28.47226953900008],[-110.18462353899997,28.45217442900008],[-110.342834644,28.50306230400014],[-110.35902361899991,28.45951814900019],[-110.56623063599989,28.525364537000087],[-110.63738259999991,28.734712124000055],[-110.57694958099995,28.90972508900012],[-110.64041852599985,28.991583761000015],[-110.61528052799986,29.084136066000042],[-110.51305366299994,29.05144748099997],[-110.50962060299992,28.967092846000014],[-110.35773464999994,28.932719164000048],[-110.32176957999991,29.112034057000074],[-110.20999857699985,29.171649840000043],[-110.25387566099994,29.27761352500005],[-110.33365662699998,29.342168932000106],[-110.3015445499999,29.453069893000077],[-110.41136156399989,29.69061168800016],[-110.53121959399994,29.732238231000053],[-110.55200168499994,29.838166209000065],[-110.59581758099995,29.874484660000064],[-110.6756436419999,30.04090533600015],[-110.64649959699994,30.100079393000158],[-110.55442053399997,30.141062709000096],[-110.505241561,30.241572121000047],[-110.54280053399998,30.34668806100018],[-110.50393666699995,30.42280529700008],[-110.55176564999994,30.51640299200011],[-110.63910658999998,30.535867448000147],[-110.63385767499994,30.620691302000125],[-110.70169057299995,30.558542675000183],[-110.73148354499989,30.46411684800006],[-110.80349767199993,30.391215580000164],[-110.84152267899998,30.472226674000126],[-110.927116663,30.51809311900007],[-110.95246856699998,30.623163125000076],[-110.8448486179999,30.83636454400005],[-110.89838366599997,30.938094027000034],[-110.89974958099992,30.794969007000077],[-110.97611961599995,30.745395749000124],[-111.05561056799985,30.74403385700009],[-111.08306867699997,30.815108205000172],[-111.09785452199998,31.0152182650001],[-111.14585868699999,31.05995969100013],[-111.21834555299989,31.08167988400004],[-111.19810459799999,31.154371604000175],[-111.17274464699994,31.182948530000147],[-111.1969376699999,31.258220032000054],[-111.29981262299987,31.26717441900007],[-111.26325260599992,31.3472630010001],[-111.3426515249999,31.371978048000187],[-111.44325263499996,31.27990921200012],[-111.54727155099988,31.339706212000067],[-111.53428664199993,31.466757927000174],[-111.66204736399999,31.52799827000007],[-111.68633110199988,31.70421678500003],[-111.65776835099996,31.761656665000146],[-111.72089470899994,31.91450954200002],[-111.70000270899999,32.009072029000095],[-111.61991971799989,32.04960917900007],[-111.47088589999998,32.007523420000155],[-111.45193879599992,31.81638039800015],[-111.40388973699999,31.751781411000024],[-111.31870489799991,31.942367744000023],[-111.23170361599989,32.00424027800011],[-111.09297468799997,31.99193726599998],[-111.0523190479999,31.917007377],[-111.07874907999997,31.73223285],[-111.000323257,31.711673390000158],[-110.94099558799991,31.797185109999987],[-110.79784860199999,31.93774888300004],[-110.66041444299998,32.01584985500011],[-110.62467319899991,32.149804838000136],[-110.70483679799997,32.173177886000076],[-110.64205917599998,32.25932952600016],[-110.70494175799996,32.310075962000155],[-110.89317394999995,32.33940267300005],[-110.95216470399998,32.371274816000096],[-110.86433655099995,32.447054728000126],[-110.89472214899996,32.48508259100004],[-111.04954215999999,32.46516534700015],[-111.08647267299995,32.562969361000114],[-111.00460769499995,32.68091786500014],[-111.03691795199995,32.81786607300006],[-110.97266687699994,32.97951880400012],[-110.8621022939999,32.952671156000065],[-110.81092470799996,32.85329422900003],[-110.73921471099993,32.79027949400006],[-110.71877667799998,32.69505306800005],[-110.60473262099993,32.54124631200017],[-110.53455378199993,32.38814984700019],[-110.36223245599996,32.25629582100004],[-110.34834230699988,32.31327070599997],[-110.41924049499994,32.39047313100008],[-110.45015605799989,32.58036207200013],[-110.51682274099988,32.65963770800005],[-110.57502631999995,32.8239865380001],[-110.56522979299996,32.877134791000174],[-110.6776765859999,32.95481494100005],[-110.62231535299998,33.137698052000076],[-110.51686685699997,33.09879690200012],[-110.2764418239999,33.15664517200014],[-110.1635306689999,33.126946113000145],[-110.1275497119999,33.00648124000003],[-110.01621279699998,32.9969550350001],[-110.10479162099995,33.1291398350001],[-110.00036148099997,33.10847696700017],[-109.97110323499999,33.15691338100004],[-110.23629702399995,33.325782654000136],[-110.36726414499998,33.3447613080001],[-110.3118171619999,33.43943247200008],[-110.41175598099994,33.485525098000096]],[[-110.76542656499993,30.08247890500013],[-110.71947462499998,30.09179555800017],[-110.64347054399997,29.954612637000082],[-110.63045462199995,29.840284986000086],[-110.59399468399982,29.80970210400011],[-110.58975964399997,29.69152263300009],[-110.55541965699996,29.61073064200002],[-110.60190552499995,29.565612366000153],[-110.72776063899988,29.630053108000084],[-110.70595562099999,29.761974038000062],[-110.76097057799996,29.819968929000026],[-110.81249966899998,30.042334450000112],[-110.76542656499993,30.08247890500013]],[[-110.58196262999985,29.566997391000086],[-110.52628365899994,29.40201572100017],[-110.4765085649999,29.362560091000034],[-110.51385463799988,29.131448221000028],[-110.58510567599996,29.143865843000015],[-110.54842361799984,29.26945592200019],[-110.6334226539999,29.314020154000048],[-110.65835563099989,29.539965418000122],[-110.58196262999985,29.566997391000086]],[[-110.39900965599992,28.375986617000024],[-110.3523326809999,28.330868508000037],[-110.38668054699997,28.203422676000116],[-110.2944336789999,28.070782076000057],[-110.48445159199997,28.065838262000113],[-110.48912852599994,28.22727874600008],[-110.44122360199987,28.236916258000065],[-110.39900965599992,28.375986617000024]]]]},"properties":{"objectid":644,"eco_name":"Sonoran desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Nearctic","eco_biome_":"NE13","nnh":2,"eco_id":435,"shape_leng":72.1436323485,"shape_area":21.4162241494,"nnh_name":"Nature Could Reach Half Protected","color":"#FA5870","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":225154.16409335873,"percentage":0.8534327915474258}}, + {"type":"Feature","geometry":null,"properties":{"objectid":646,"eco_name":"South Antarctic Peninsula tundra","biome_num":11,"biome_name":"Tundra","realm":"Antarctica","eco_biome_":"AN11","nnh":1,"eco_id":130,"shape_leng":219.081011465,"shape_area":0.878434307311,"nnh_name":"Half Protected","color":"#63EBDF","color_bio":"#9ED7C2","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":2973.186337540047,"percentage":0.034793823679086455}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[15.40178054300003,38.02691698300015],[15.406645567000055,38.10033658700013],[15.046588511000039,38.004441580000105],[14.895652563000056,38.02887801300005],[14.65574153900019,37.936883775000126],[14.433374509000032,37.904578244000106],[14.023583430000087,37.9225597730001],[13.967252514000052,37.85196637900003],[13.801396443000044,37.803380007000044],[13.824826545000121,37.710130998000125],[14.046361587000149,37.67179770500019],[14.19375852800016,37.70818991700003],[14.295196488000045,37.63827914500007],[14.303916517000062,37.488681116],[14.425366439000072,37.468612326000084],[14.410432569000022,37.61607045400007],[14.50607645499997,37.708734741000114],[14.700792592000141,37.79482728],[14.811066587000084,37.76879677700015],[15.008187492000047,37.67946144700011],[15.104784568000127,37.72359250300008],[15.108718530000033,37.82209780200003],[15.150510532000055,37.90206836700003],[15.318939512000043,37.92703084800013],[15.40178054300003,38.02691698300015]]],[[[15.960520556000063,38.03403103900007],[16.06629548000018,38.11800631000011],[16.207565585000054,38.35434530200001],[16.42643954100015,38.549547924000194],[16.47127350300019,38.693596798000044],[16.372814471000027,38.768401428],[16.076753581000105,38.360163348000015],[15.864647509000065,38.195366917000115],[15.8245404380001,38.11350958600019],[15.882848477000039,38.039932905000114],[15.960520556000063,38.03403103900007]]],[[[16.70399050700007,38.973194289000105],[16.83783944300012,39.11150524700014],[16.819992527000124,39.24089014900011],[16.73522147799997,39.40596888200014],[16.637065536000023,39.49519759400005],[16.543371449000063,39.52196805200009],[16.369367497999974,39.450585250000074],[16.338134515000093,39.272120785000084],[16.373828514000138,39.09811918000008],[16.463062591000096,39.01780965100011],[16.56567954899998,38.973194289000105],[16.70399050700007,38.973194289000105]]],[[[15.303997596000102,40.51981133000015],[15.364664470000093,40.40252268800009],[15.364664470000093,40.32567957900005],[15.445552518,40.26905932000017],[15.522397470999977,40.313545769000086],[15.457686496000179,40.47532102600013],[15.380842549000079,40.540033175000076],[15.303997596000102,40.51981133000015]]],[[[14.899552494999966,40.84336268400017],[14.915730574000179,40.77056451300018],[15.07750750800011,40.73820802000006],[15.15030852800004,40.81100702900011],[15.04515252300007,40.867628629000194],[14.899552494999966,40.84336268400017]]],[[[16.19739548700005,40.07772360500013],[16.10479758500003,40.281190281000136],[16.20186455000004,40.40656561600008],[16.20186455000004,40.55621091800003],[16.056264522000106,40.65731879900011],[15.886397542000168,40.84336268400017],[15.688220517000047,40.952561783000135],[15.615420503000166,40.952561783000135],[15.47386356900006,40.887849131999985],[15.348485552999989,40.87976243900016],[15.287819517000116,40.81505112900004],[15.332308480000108,40.71798701400007],[15.506219559999977,40.71394308100008],[15.587108446000173,40.64923093300007],[15.587108446000173,40.52385526299997],[15.684175578000122,40.349945357000024],[15.627034467999977,40.292804917000126],[15.712486462000072,40.13559209700003],[15.874264570000093,39.99808177800003],[15.906620560000079,39.86461857800015],[16.01986543700002,39.59364522700008],[16.116931563000037,39.553198688000066],[16.120975496000028,39.755420820000154],[16.16546445900019,39.82821882200005],[16.359598557000027,39.91315281500016],[16.355554456,40.03448136600008],[16.19739548700005,40.07772360500013]]]]},"properties":{"objectid":647,"eco_name":"South Apennine mixed montane forests","biome_num":12,"biome_name":"Mediterranean Forests, Woodlands & Scrub","realm":"Palearctic","eco_biome_":"PA12","nnh":3,"eco_id":802,"shape_leng":13.7688094105,"shape_area":1.36822309513,"nnh_name":"Nature Could Recover","color":"#720000","color_bio":"#FE0000","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":13112.272844594047,"percentage":0.39693338162397807}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[62.71958956900016,26.316187386000024],[62.751190517,26.23571005100007],[62.84656953500007,26.20594138700011],[62.937759612000036,26.213371944000187],[63.0110814840001,26.179783479000093],[63.11388049700008,26.197331663000057],[63.24686861100008,26.183412340000075],[63.31187848500002,26.229761247000113],[63.20653958700012,26.30502788800004],[63.10776858100007,26.31095758100014],[63.02450962800003,26.271599517000027],[62.787158605000116,26.281158071000107],[62.71958956900016,26.316187386000024]]],[[[64.93479951000018,26.31111767600015],[64.82290663500004,26.338366405000045],[64.597412485,26.27742913000003],[64.51364860600006,26.277837161000093],[64.33960760600007,26.117915310000114],[64.61560054400007,26.166444183000067],[64.84410849100016,26.259008892000054],[64.93479951000018,26.31111767600015]]],[[[64.33533451200003,26.63942592700016],[64.20340754700015,26.62736235600005],[63.73954061900014,26.54539622800013],[63.59175157300007,26.44071782400016],[63.52116354300006,26.296096299000112],[63.670619582000086,26.32919995500015],[63.86785163200011,26.268718489000037],[64.01897449600011,26.239854902000104],[64.09741251400004,26.176737830000093],[64.15518964300009,26.321273189000124],[64.2489925270001,26.349803847000146],[64.27680954900006,26.400146731000177],[64.61154152400013,26.48416894000013],[64.68350955000011,26.551733953000053],[64.65009358400016,26.592043866000097],[64.54859963300015,26.586572160000173],[64.46307354300012,26.62422165700019],[64.33533451200003,26.63942592700016]]],[[[56.23220856700016,26.99437203400015],[56.15554851900009,26.996870176000073],[55.99943557200015,26.95576498800017],[55.88333162800018,26.89993145400007],[55.781104596000034,26.946873130000085],[55.76998851600007,26.791050197000118],[55.67582655100006,26.770497100000114],[55.56276657900008,26.709384811000177],[55.27499354700012,26.64911138400015],[55.32749158600018,26.544395094000038],[55.50138858399998,26.590504949000035],[55.67499556900009,26.679665097000168],[55.77721354900001,26.686886609999988],[55.87832662600016,26.73465977],[55.951660568000136,26.687443838000092],[56.09027059200008,26.786884223000186],[56.23220856700016,26.99437203400015]]],[[[49.24338154900016,31.247119207000026],[49.11918655400018,31.41480169500005],[48.98718247500011,31.622524534000092],[48.731708604000175,31.91989065400014],[48.23246350700009,32.20972630500012],[47.95576062200007,32.205270318000146],[47.68506957400001,32.350594582000156],[47.531566584000075,32.48529428000006],[46.939208601000075,32.638923502000125],[46.44161256000001,32.87855926400016],[46.13566555,33.14147928200009],[46.02602757400001,33.174429382000085],[45.826705581,33.280929006000065],[45.71452353000012,33.36883136500012],[45.571479479,33.43649444700003],[45.70019148199998,33.178839101000165],[45.890258512000116,32.986820763000026],[45.97843948700012,32.86287655500013],[46.06120659000004,32.78486920000006],[46.207275502000186,32.75039610800002],[46.34677551600004,32.6766155790001],[46.53521360800005,32.506141750000154],[46.63402954100019,32.46337225100012],[46.94568261500018,32.245181923000075],[47.16080449600008,32.21385003400019],[47.344600522,32.24881011399998],[47.54820248200002,32.19633269400015],[47.67402256000008,32.141803553000045],[47.73856757400017,32.03187908300015],[47.903964484000085,31.8100753170001],[47.9945985060001,31.631168288000083],[48.139587494000125,31.46392601700012],[48.17673458000007,31.346576858000105],[48.23579447600008,31.22020709500015],[48.3615956110001,31.071493357000122],[48.46199756700008,30.667791731000136],[48.40525862100003,30.58042681900008],[48.21590053100016,30.563868201000105],[48.03317252700009,30.592160310000054],[47.947097590000055,30.593427318000067],[47.76513653000006,30.52987254300018],[47.703113464000126,30.540220170000055],[47.64207862500018,30.367485406000128],[47.861225495000156,30.113917748],[47.93683646400018,30.100353145999975],[47.96638451700011,30.004804814000124],[48.09387946700019,30.043694330000164],[48.189712616000065,30.02758515100004],[48.38388057700013,29.937863247000166],[48.52471147000006,29.920644136000135],[48.64693453800004,29.963420341000187],[48.689155526000036,30.0300837960001],[48.908332571000074,30.031193728000062],[48.94332852500003,30.160915079000063],[48.85999262600018,30.31284931200014],[48.918876502000046,30.408681958000102],[49.02999857800006,30.419790494000097],[48.97277046300013,30.508120330999986],[49.10026558100009,30.51423124100006],[49.26249647900005,30.417566607000083],[49.18444050800008,30.36396064800016],[49.05305451100003,30.40423804000011],[48.995544597000105,30.386458850000054],[49.00665246300014,30.293685096000104],[49.15470855700005,30.22313059300012],[49.20999156700003,30.22313059300012],[49.277770486000065,30.14730152700008],[49.35304249100011,30.169799561000104],[49.479713500000116,30.153690381000047],[49.496665564000125,30.06785935700003],[49.581657559000064,30.007306645000085],[49.839721606000126,30.165633755000044],[50.00638552500004,30.21702387400012],[50.077499603000035,30.182025405000047],[50.143051618000186,30.05480588400013],[50.13138551700007,29.956477778000135],[50.23638159500007,29.862590236000187],[50.38721461400013,29.659545840000135],[50.44749457900019,29.634544802000107],[50.66860952000019,29.406774462000044],[50.69082659300017,29.275115718000052],[50.63055450700017,29.191782837000062],[50.67472059800008,29.116509993000022],[50.80971550800007,29.137897927999973],[50.92527747700018,29.0606771300001],[50.89416452299997,28.965125781000097],[50.80499247300014,28.917905659000155],[50.876106551000134,28.830133219000118],[51.004165603,28.801798195000117],[51.07083157300019,28.697360519000142],[51.0874555690001,28.494388878000166],[51.14916247000019,28.382649223999977],[51.283332600000165,28.23376751300009],[51.26388557900003,28.11599322300009],[51.60638456000004,27.8401719470001],[51.792221579000056,27.849338564000163],[52.042770580000195,27.819893776000185],[52.224159491000194,27.684619247000057],[52.49971757500009,27.60684859600002],[52.59887649600017,27.477406362000124],[52.66304750799998,27.449075362000087],[52.60305051600005,27.349080598000057],[52.75638553200008,27.28741929500012],[53.03027360700008,27.098813733000156],[53.109992547000104,27.082426274000056],[53.44387861900009,26.969928225000103],[53.48193363300015,26.856881329000146],[53.71332562600014,26.699940250000054],[53.93138150800007,26.70827488000009],[54.02526854600012,26.743551293000053],[54.12582355700005,26.70438383200019],[54.3319395850001,26.696609450000153],[54.42110459500009,26.58522535600008],[54.543884557000126,26.58328025100019],[54.64332561200007,26.494394527000054],[54.852775626000096,26.51745230400013],[55.0963825660001,26.696052221000116],[55.21665952400019,26.733549670000173],[55.281379552000146,26.785495510000146],[55.48165859,26.75883250800007],[55.602775582000106,26.801882801000033],[55.59554250300005,26.92854408700009],[55.66526753200014,26.991038383000102],[55.946380472000044,27.022152846000097],[56.13276650600011,27.15853395500011],[56.32166258500007,27.197697223999967],[56.54222147100012,27.15436429300007],[56.701103631000194,27.150199493000116],[56.797775473000115,27.12408852400017],[57.02555050700005,26.84104690800018],[57.08776853600017,26.63799899200012],[57.074165545000085,26.45189626600012],[57.126098476000095,26.34607021200003],[57.126098476000095,26.26163175700009],[57.214713633000144,26.165242385000113],[57.165542539000114,26.081914198000163],[57.198043536000114,25.99330624900017],[57.27137747800009,25.917756636000092],[57.31054661400003,25.77609626900005],[57.53110449400003,25.736096989000032],[57.762214519999986,25.735262151000086],[57.77748852700017,25.654157850000104],[57.933326547000036,25.69859668900017],[57.97776756500008,25.681931454],[58.05804457200014,25.565549902000043],[58.18221257700003,25.538608118000184],[58.38999157500018,25.60165847000019],[58.54888161400004,25.591660872000034],[58.63526953200011,25.56582901900009],[58.81832862100009,25.558329395000044],[58.919990545000076,25.51305454500016],[59.00499762800001,25.40583659300006],[59.119987617000106,25.390002172000038],[59.34054549700005,25.454166143000066],[59.47804257200005,25.47555424600006],[59.626937527,25.389724228000148],[59.84443651500004,25.406946357000038],[59.88888558000008,25.345837421000056],[60.0711054730001,25.377501904000155],[60.18249560200002,25.31945269800002],[60.2019345760001,25.365558363000048],[60.38665747300013,25.31473083700007],[60.39527155500019,25.373893998000028],[60.5191575930001,25.441665876000116],[60.5980455510001,25.40777733800013],[60.634437595000065,25.26250923300006],[60.966102631000126,25.215564540000116],[61.19110157900002,25.166677761000017],[61.21110549400004,25.125846660000036],[61.389160587000106,25.08057281600003],[61.499435587,25.116406290000157],[61.52416253700011,25.20612014700015],[61.638755558000184,25.20121824300014],[61.79175949000006,25.141280091000056],[61.731891579000035,25.055395255000064],[61.83509460000005,25.03878483800014],[61.86988050399998,25.0993041910001],[62.10042961200014,25.095884374000036],[62.07782361900013,25.17468951899997],[62.21361950300013,25.213508627000067],[62.373210605,25.179250280000133],[62.492237486000136,25.24790611400016],[62.61951853000011,25.259620494000046],[62.84321560000012,25.241938199000117],[63.01044848200013,25.20676790100009],[63.15279063300005,25.25240686100011],[63.49148154699998,25.19410753900013],[63.50534052100005,25.314474686000096],[63.68193062500012,25.37642097400004],[63.877639515000055,25.341931454000076],[64.22200062000013,25.31155309000013],[64.40455662700009,25.232477712000104],[64.53044862200011,25.26649616900005],[64.59381849200008,25.23691643300009],[64.747970577,25.313064012000098],[65.23110951100017,25.31621275700013],[65.27230857700016,25.38395848400006],[65.49591059600004,25.372529927000073],[65.53942859900013,25.407940450000126],[65.56097461700011,25.595217481000077],[65.51465655500004,25.77850321600016],[65.43047358100017,25.74835552200011],[65.35475951400014,25.797349255000142],[65.2904666290001,25.791354350000177],[65.19864656800007,25.860101212000018],[65.26402256300008,25.997742958000174],[65.11976648800004,26.01109516200006],[64.94586949000006,25.929835126000057],[64.94626662500013,25.88582493700011],[64.79295356900008,25.883175250000136],[64.728446609,25.801457058000096],[64.5825805390001,25.78465570100002],[64.4916685730002,25.74404873300017],[64.308402619,25.772089217000143],[64.19280259500005,25.706901311000024],[63.978946550000046,25.748788364],[63.82763660100011,25.732283055000153],[63.652759591,25.684067331000108],[63.586536521000085,25.621688537000068],[63.50373857200009,25.65918866900006],[63.54058860400016,25.786403831000086],[63.69699055800015,25.898860641000056],[63.559940574000166,25.94481425700019],[63.42568260200005,25.888887852000096],[63.20063051300008,25.925887417000183],[63.07994049500007,25.970950037000136],[62.89102949600016,25.967488311000068],[62.88878247500014,26.02809852400003],[63.227729541000144,26.075626262000185],[63.19533164100005,26.13512654200008],[63.07693860000012,26.171816815000113],[62.96453459600008,26.16693821200016],[62.72209961300018,26.185640250000176],[62.48643150900017,26.228714347000164],[62.36297261300007,26.221689809000168],[62.39836151100019,26.321489107000048],[62.28788752400004,26.360153486000172],[62.273879520000094,26.428288300000077],[62.310272570000166,26.501065013000073],[62.44609862900006,26.567171239000118],[62.61415863800016,26.578836669000054],[62.74748957200012,26.61272403300012],[62.772766542000056,26.64800363100005],[62.991378479000105,26.64911138400015],[63.1763835110001,26.629390441999988],[63.19411056600018,26.704193060000023],[63.45513962700005,26.737358575000144],[63.628868484000066,26.688968507000027],[63.69171850900011,26.65080134300007],[63.94588061200011,26.746778158000154],[63.98999054500018,26.82994440699997],[63.980403492000164,26.908944850000125],[64.14582856600015,26.985167698000055],[64.34178958300004,27.018488949000073],[64.58576163900005,27.131676158],[64.74948149800008,27.22723689500009],[64.87424461900014,27.258934738000107],[65.05505350200013,27.367314925000187],[65.13407858800014,27.46473778600017],[65.06695563700004,27.539876687],[64.9824145880001,27.544478184000184],[64.62985262900003,27.343726071000106],[64.50646263200008,27.234971547000043],[64.24958060200004,27.136232057000143],[64.09208648500015,27.106316374000187],[64.02497057400012,27.181454940000094],[63.912696490000144,27.260234604000175],[63.79941154800002,27.38648098500005],[63.77559654900017,27.322043763000067],[63.60891352000016,27.22680103600004],[63.45413564300014,27.19902122900004],[63.37873053300018,27.20695771800007],[63.27360554100005,27.172748489000128],[62.99514748600012,26.979736896000134],[62.792636514000094,26.91962037700017],[62.697723530000076,26.938292575000048],[62.57051859400019,27.039585026000054],[62.42437759800009,27.054101644000184],[62.294811479000145,27.188422816000184],[62.13407859500006,27.300066749000166],[62.07266958700018,27.308425350000107],[61.946048534,27.387054978000037],[61.733928549000154,27.63141377500017],[61.73082355700012,27.519585273000132],[61.67965656400003,27.469553692000034],[61.53952053000012,27.590226276000124],[61.147823633000144,27.861088986000027],[61.05786854500019,27.96392571800004],[60.948512537000056,28.03042790600017],[60.792613496,28.23468331900017],[60.731716623000125,28.39472184700014],[60.67765049700006,28.459261998000045],[60.59489060300018,28.436424162000094],[60.50612658300014,28.3700837450001],[60.39372660300006,28.532061174000034],[60.33721162100005,28.54870562200017],[60.24105057200006,28.498891469000114],[60.26100553600003,28.396404598000174],[60.17648661500016,28.332938168000055],[60.131763630000194,28.398549694000053],[60.131114535,28.51905480800019],[59.978172630000074,28.81141877600004],[59.971870612000146,28.960303002000103],[60.03167348000005,28.96223083900003],[60.21909752900007,28.772386432000076],[60.29155757300009,28.74651250300002],[60.35978660000018,28.78460104400017],[60.38051253200018,28.880483311000035],[60.335449577000134,28.93238925200012],[60.219436493000046,29.226254419000156],[60.16372650900007,29.26208605000005],[60.014526621000186,29.23897999200011],[59.932109546000106,29.312212345000148],[59.862495493000154,29.33248230200013],[59.791938476000155,29.54545405600004],[59.75018352200016,29.75037046700004],[59.797401633,29.779048478000107],[59.91960559000012,29.75704514400013],[59.90025747600009,29.976042984000173],[59.922595583000145,30.096542565000107],[60.024204534000035,30.194147816000054],[60.04074856600005,30.20880927400009],[59.93667952700014,30.21960801500012],[59.805477597000106,30.166627849000065],[59.57914357900006,29.98945335900015],[59.52834656400006,29.868089100000077],[59.48670962800003,29.534559594000143],[59.424838609000176,29.1945766930001],[59.31520851200003,29.136946917000103],[59.19464858100008,29.127948441],[59.10268049600012,29.215279826000085],[58.87965347500017,29.584116758000164],[58.76134157000007,29.829073520000065],[58.73045358600001,29.92300397700012],[59.03247451300018,29.871237845999985],[58.99514051000017,30.206718324000065],[58.90320947200007,30.30049187200018],[58.555915540000115,30.243346067000118],[58.39463062400006,30.276244702000156],[58.11324359600013,30.252201548000187],[57.87847855800004,30.26184828100014],[57.62865056900006,30.309026493000147],[57.61601652600018,30.217385805000106],[57.655277528000056,30.143944742000087],[57.82731659400014,30.034710774000132],[57.984458503000155,29.843784766000113],[57.95944556300003,29.629590092000115],[58.211078511000096,29.282889430000182],[58.29456360800003,29.06689968800015],[58.080215545000044,29.130778339000017],[57.94958458900004,29.273783666000156],[57.7045134980001,29.4045375],[57.577938546000155,29.37433180300002],[57.60823057600004,29.299633791000133],[57.884891552000056,29.088552826000125],[58.19894755000013,28.80700318900017],[58.20146547400009,28.766107883000075],[58.352672493,28.65343415000018],[58.334266504000084,28.621151417000135],[58.580234626,28.43355403100003],[58.63796951100011,28.278082467000104],[58.509239571000194,28.287205330000063],[58.28861648000003,28.400092467000036],[58.13540652100011,28.499530505000052],[58.02265550700008,28.549684461000084],[57.89689259300013,28.658759173000135],[57.82831554900008,28.778766234000045],[57.64056360000012,28.85281632500005],[57.46860148000019,28.892300789000103],[57.26602563300003,28.985097006000046],[57.05245960100018,29.136613150000073],[56.87610251400014,29.1045092870001],[56.75713749100015,28.929614172000186],[56.903560623000146,28.831045002000167],[57.13890049200012,28.784295943000075],[57.471584600000085,28.668577567000057],[57.50809851700012,28.559660937000046],[57.467651475000196,28.49439172800004],[57.278469573999985,28.339734885000098],[57.25676748500018,28.198391858000036],[57.147571571000185,28.136010549000105],[56.89897555400012,28.04470329300011],[56.770397495000054,27.983771718000185],[56.62322653000007,27.975430048000135],[56.551094553000155,28.0282610160001],[56.330181616000175,27.96123781],[56.34291858800009,28.034022736000054],[56.516864537000174,28.089936401000102],[56.63793962000011,28.18926731800002],[56.656974587000036,28.351247597000167],[56.525577525000074,28.358716376000075],[56.39770857500008,28.420355718000053],[56.09906052600013,28.474466435000124],[56.03179960900019,28.43402911700008],[56.17282060400004,28.23075053000008],[55.84387951900004,28.141326352000192],[55.82814048400013,28.261932216000105],[55.711269596000136,28.322995554000045],[55.65734847800019,28.267164032000096],[55.45860651200013,28.1273126480001],[55.06527346800004,28.213108133000105],[54.793067474000054,28.169513016000167],[54.601070594000134,28.30259852800009],[54.42016548600009,28.483206078000023],[54.26488855100018,28.388149932000033],[54.12676652100009,28.266759019000062],[53.995239540000114,28.25007467300003],[53.80162059400004,28.402457337000158],[53.67046761400019,28.52966529100013],[53.558158493000064,28.606414020000102],[53.499507467000115,28.60972705100005],[53.41405161700004,28.421879548000163],[53.3369976190001,28.459323018000134],[53.23706454600011,28.463862993000134],[53.26429751700016,28.542405784000096],[53.079257616,28.608199030000037],[52.95085960000017,28.568899806],[52.898803623000106,28.489582024000185],[52.922904612000195,28.4467786620001],[52.76510958500012,28.386439018000033],[52.56260246900007,28.46001519600003],[52.523185563000084,28.533627249000176],[52.41608462200014,28.60275716300015],[52.230606515000034,28.490758843000094],[52.16103353400007,28.51578569800006],[52.024467520000144,28.652118191000113],[51.864578526000116,28.851056293000056],[51.5709954940001,28.90941814400003],[51.408203512,29.035543994000136],[51.23962047200007,29.217103896000026],[51.039447548000055,29.39860780600003],[50.94904754900011,29.784327233000113],[50.84638247900011,30.064443564000157],[50.792869559,30.071754259999977],[50.27269350900019,30.42777224499997],[49.60490761699998,30.89361244000014],[49.55411546300013,30.943117972000152],[49.40896956600005,30.82542314300008],[49.20521958200004,30.737116273000083],[48.766220587000134,30.56258644100012],[48.64350147800019,30.529643717000056],[48.530544604000056,30.533889318999968],[48.470813486000054,30.574886883000033],[48.52016059900018,30.701982352000186],[48.72268649100016,30.85132624100015],[48.7851755910001,30.92361345100005],[48.808559592,31.070148565000068],[48.92424762600018,31.273260351000033],[49.02650449800018,31.399660122],[49.24338154900016,31.247119207000026]],[[55.960174570000106,27.88081998600012],[55.9851075470001,27.947843193000097],[56.11038548300007,27.89331254300015],[56.24673055000011,27.869065541000168],[56.345802634000165,27.82714144000016],[56.51865357000014,27.80984806500004],[56.545627541000044,27.721446815000036],[56.45938848600014,27.663496348000024],[56.313610593000135,27.652076675000046],[56.19179957900013,27.696272774000136],[56.17464450600016,27.65632261200011],[56.04420063500004,27.578174776000083],[55.88644449999998,27.609367693000024],[55.80073954000011,27.661508328000025],[56.0622515660001,27.789375937000102],[55.960174570000106,27.88081998600012]],[[61.60704061600012,27.095061658000134],[61.401607545,27.077818406000176],[61.211322585000175,27.13685600600013],[61.063911562000044,27.28543948900011],[61.10253554000013,27.425053498000068],[61.080959515000075,27.481565966000062],[60.941459501000054,27.548366046000126],[60.91758348200011,27.646398941000143],[61.01060852500018,27.651529672000038],[61.23084655200006,27.520254484000134],[61.57712962699998,27.230744721000065],[61.656726527000046,27.129272394999987],[61.60704061600012,27.095061658000134]],[[58.47248459000008,26.717353319000097],[58.639747480000096,26.726828055000112],[58.87637363600015,26.586875082000176],[58.84206047100014,26.514374302000192],[58.582023492000076,26.5858853470001],[58.42726154000002,26.612919164000175],[58.24208853500011,26.612465200000088],[58.11069851500014,26.664191601000084],[58.01325252000004,26.661278051000068],[57.97450247900008,26.596344956000166],[57.885890507000056,26.535215401000187],[57.791137618,26.616095905],[57.73013647300019,26.80059383200006],[57.830501550000065,26.858191085000158],[58.17166160500011,26.941529499000126],[58.30012852100015,26.927644038000096],[58.47248459000008,26.717353319000097]],[[61.62244454300003,26.76310040500016],[61.74997352300005,26.672452302000124],[61.46157855400003,26.63224313900008],[61.21805560000007,26.74078526500017],[61.05295960000018,26.746780002000094],[60.964351484000076,26.811827258000108],[60.95918655500003,26.859429260000184],[61.115844493000054,26.89983439200006],[61.2789766140001,26.88773293500003],[61.62244454300003,26.76310040500016]],[[60.406814609000094,26.414360092000152],[60.269393474000196,26.387396180000053],[59.888637475999985,26.381703526000138],[59.83039850300008,26.44555870900001],[60.181976594000105,26.567539205000173],[60.31805763100016,26.558592529000123],[60.406814609000094,26.414360092000152]]]]},"properties":{"objectid":652,"eco_name":"South Iran Nubo-Sindian desert and semi-desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Palearctic","eco_biome_":"PA13","nnh":3,"eco_id":841,"shape_leng":105.36696993,"shape_area":32.1170659353,"nnh_name":"Nature Could Recover","color":"#B78139","color_bio":"#CC6767","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":352233.6682506024,"percentage":1.335119712231733}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[171.62023973400005,-43.46487238999998],[171.53192163200004,-43.38591569999983],[171.34747265600004,-43.30702925099996],[171.14413472500007,-43.335638865999954],[171.25904860600008,-43.493902273999936],[171.2673186950002,-43.546785041999954],[171.40595973200016,-43.664124812999944],[171.5754396350003,-43.573122154999965],[171.62023973400005,-43.46487238999998]]],[[[173.78132672100003,-42.10241129399998],[173.73789974500005,-42.06411236699989],[173.83474760800004,-41.94231744699988],[173.80964665700003,-41.90629973799997],[173.61517359500021,-41.89412669999996],[173.51809674000003,-41.9319074579999],[173.2534026070001,-41.90949558999989],[172.97535660600022,-42.0741022549999],[172.90538062300016,-42.04169379399991],[172.94618272200023,-41.82349038999996],[172.92643764000002,-41.78264671699998],[172.7371977350001,-41.897147872999824],[172.5368957300003,-41.98917697899998],[172.40727261500012,-42.072252535999894],[172.3407135980001,-42.20202032299994],[172.2387846260001,-42.338673507999886],[171.86624171900007,-42.54802629199992],[171.3735967010001,-42.75888597499994],[170.86282363700013,-43.02404848799989],[170.76887474000011,-43.086578155999916],[170.31768762100023,-43.311736024999846],[169.95657360600012,-43.47868526399998],[169.80705269100008,-43.56072800299995],[169.84719865500017,-43.65967268199989],[169.9815976110002,-43.70094450199997],[169.8016817350001,-43.7563985029999],[169.69033770700003,-43.81853221099993],[169.4643557300002,-43.852128051999955],[169.4144596010001,-43.96321877899993],[169.27021760900004,-43.935234789999924],[169.1787566280001,-43.95095488099997],[169.0878146550001,-43.901929129999985],[168.7915956820002,-44.035476651999886],[168.7110896810002,-44.04672265199997],[168.39884970600008,-44.37711699099992],[168.2169037330001,-44.41541591799995],[168.12145967200013,-44.54404393399989],[168.10266074000003,-44.61459290399995],[168.13107271,-44.770941717999904],[168.00164757500022,-44.96058143899995],[167.98614457400015,-45.064536484999905],[167.89039558000002,-45.15221672399997],[167.80563358400002,-45.17310677399996],[167.7814026750002,-45.30126875499997],[167.70939659500027,-45.45688582899993],[167.60491969200018,-45.56336215099998],[167.6840976640002,-45.62394319399988],[167.96012865600017,-45.53071916399995],[168.11979670300013,-45.56869806999998],[168.2205506990001,-45.652187357999935],[168.47581468800013,-45.58793621499996],[168.5510556800001,-45.509357045999934],[168.6478886220001,-45.506740047999926],[168.69441271100004,-45.44376697699994],[168.87622071700002,-45.33783296399997],[168.99743661600007,-45.17212256999994],[169.0385746620001,-45.05045974899997],[168.9467006210001,-44.988730551999936],[168.97567769800003,-44.913603553999906],[169.10385158300005,-44.76324360999996],[169.14660666500004,-44.61836576599984],[169.28724661800015,-44.6104918069999],[169.35476670400033,-44.55660974799997],[169.49035672900004,-44.53932492199988],[169.5681307320002,-44.46969192599994],[169.64456161900023,-44.46499990499996],[169.6813357100001,-44.55275675499996],[169.8021846490003,-44.51238598799995],[169.84992964600008,-44.37788007899991],[169.80824258600035,-44.337871243999984],[170.01820356100006,-44.21614438399996],[169.99290463000023,-44.177841265999916],[170.09217871800013,-44.103843477999874],[170.11868263100007,-43.90008209399991],[170.20532267700003,-43.8580520459999],[170.42298863200028,-43.888852019999945],[170.61500562900005,-43.69368476799997],[170.6256866880001,-43.84963326199994],[170.52755773600006,-44.03926879299996],[170.65351863000012,-44.087055530999976],[170.75152571000012,-43.95651694499992],[170.82762165600002,-43.91854206199997],[170.89540074200022,-43.744908589999966],[170.8518527320001,-43.69858650499998],[170.86561564900035,-43.61268004399989],[170.81826761900015,-43.53210631799993],[170.98185772700003,-43.530782311999985],[171.0566707390002,-43.58459999799993],[171.13012672100012,-43.542154207999886],[171.15184071200008,-43.41862373099991],[171.11489864700013,-43.32772316399996],[171.231628719,-43.281478359999824],[171.35580460300014,-43.27953208199989],[171.42498765800008,-43.2436972669999],[171.50332660200002,-43.35703182999998],[171.6419217060003,-43.45454957399994],[171.8883816780001,-43.264125305999926],[172.09089667400008,-43.21419866699989],[172.15858473300023,-43.11169000299998],[172.33377070000017,-43.04047433599982],[172.3824916860001,-42.96189164699996],[172.36817958600022,-42.89479115899985],[172.43756062200032,-42.858159391999834],[172.47702061100006,-42.758515829999965],[172.6528627140001,-42.708242012999904],[172.709808693,-42.578546813999935],[173.08874464600012,-42.542949205999946],[173.18284559000017,-42.41100312999998],[173.2390896700001,-42.37494334399997],[173.47177163700007,-42.30627460299996],[173.6477966330001,-42.218465449999826],[173.78132672100003,-42.10241129399998]]]]},"properties":{"objectid":653,"eco_name":"New Zealand South Island montane grasslands","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Australasia","eco_biome_":"AU10","nnh":3,"eco_id":194,"shape_leng":23.0746701953,"shape_area":4.46777876334,"nnh_name":"Nature Could Recover","color":"#B47228","color_bio":"#D6C39D","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":40019.12849634842,"percentage":0.8195091897832962}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-45.15897335299991,-60.752650438999865],[-45.15259408999992,-60.757448935999946],[-45.14835480799991,-60.75868937799993],[-45.15145286599994,-60.75304877999997],[-45.15897335299991,-60.752650438999865]]],[[[-44.729195637999965,-60.730159796999885],[-44.7419025989999,-60.73242168099989],[-44.70409068399994,-60.74368384799993],[-44.70812519699996,-60.74704060599987],[-44.69671023699988,-60.77322998799997],[-44.69797098299995,-60.741914633999954],[-44.729195637999965,-60.730159796999885]]],[[[-44.97158707599988,-60.743068397999934],[-44.96486310799992,-60.739284893999866],[-44.967530128999954,-60.722786471999825],[-44.97451507699998,-60.721596431999956],[-44.980265120999945,-60.729253709999966],[-44.97727402399988,-60.735640656999976],[-44.97158707599988,-60.743068397999934]]],[[[-45.597242757999936,-60.69114484199997],[-45.615437061999955,-60.67503283999997],[-45.62942329499998,-60.67524124199991],[-45.64107394799993,-60.68535132099993],[-45.642454278999935,-60.69159635499983],[-45.66938482799998,-60.71912600799993],[-45.63689103099995,-60.724902433999944],[-45.60420916599992,-60.732138628999905],[-45.60232230399993,-60.73230200299986],[-45.59325082899994,-60.72986307999986],[-45.59248741299996,-60.72724567299991],[-45.59230421799998,-60.72661757899982],[-45.59304795299994,-60.72351695699996],[-45.597600675999956,-60.71468797799997],[-45.59627839299998,-60.70959976199998],[-45.597525886999904,-60.69419177899988],[-45.597242757999936,-60.69114484199997]]],[[[-44.52243910399994,-60.68442551999982],[-44.532233076999944,-60.67792494199995],[-44.53205437999998,-60.681708931999935],[-44.528489993999926,-60.685265852999976],[-44.52243910399994,-60.68442551999982]]],[[[-45.376424672999974,-60.670107531999975],[-45.474016838999944,-60.660465742999975],[-45.45813299699995,-60.66348955099994],[-45.39590123199997,-60.66739409799982],[-45.376424672999974,-60.670107531999975]]],[[[-45.57154160099998,-60.655802979999976],[-45.58593879799997,-60.64709050099998],[-45.60128198199993,-60.64598599799996],[-45.61347176399988,-60.64168599599998],[-45.61279909399991,-60.64444542499996],[-45.60767528399998,-60.64645305199997],[-45.57154160099998,-60.655802979999976]]],[[[-45.21958695699993,-60.63710755999989],[-45.22846430699991,-60.62536175799988],[-45.23864356099989,-60.627025255999854],[-45.2424876959999,-60.634031286999914],[-45.24415244099998,-60.633973373999936],[-45.25072191899994,-60.62867911599983],[-45.23179767899995,-60.63440316999993],[-45.22658174899993,-60.634695925999836],[-45.21958695699993,-60.63710755999989]]],[[[-45.65336276799991,-60.63903222499988],[-45.683237771999984,-60.63906750099994],[-45.65771966799991,-60.64180405299999],[-45.656891733999885,-60.641508574999875],[-45.65336276799991,-60.63903222499988]]]]},"properties":{"objectid":655,"eco_name":"South Orkney Islands tundra","biome_num":11,"biome_name":"Tundra","realm":"Antarctica","eco_biome_":"AN11","nnh":1,"eco_id":131,"shape_leng":8.46090601895,"shape_area":0.0243705548262,"nnh_name":"Half Protected","color":"#60C4E8","color_bio":"#9ED7C2","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":147.9331772811234,"percentage":0.0017311935083305608}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[3.493012381000028,27.008361004000108],[3.364730056000099,27.1153238120001],[3.225086355000144,27.173248395000087],[3.099356165000074,27.201024185],[2.887070755000082,27.218701894000105],[2.634072711000044,27.211589993000075],[2.124898794000046,27.15097726600004],[1.351524079000171,27.02959426900003],[0.997523321000187,26.995470978000128],[0.372722211000166,26.95443368400015],[0.107764008000061,26.9241498990001],[-0.130285415999879,26.880490037000072],[-0.393620505999877,26.803897356],[-0.63017889799994,26.696513533000086],[-0.894955949999883,26.521153284000093],[-1.192919340999879,26.294285477000187],[-1.382047447999867,26.163350634000153],[-2.366686143999914,25.60949136800008],[-2.505316084999833,25.55473507900001],[-2.857487491999962,25.460094095000102],[-3.146219121999934,25.41744804500013],[-3.376446292999901,25.40070042800005],[-3.787034419999941,25.398454794000088],[-4.365344016999927,25.434841972000186],[-4.961023092999937,25.487728663999974],[-5.388162117999968,25.51565448800011],[-6.180731599999888,25.51842340600001],[-6.454192975999945,25.537208400000168],[-6.761389964999978,25.595222328000034],[-6.896987914999954,25.64313316300013],[-7.299359844999969,25.87508905700014],[-7.453369189999933,25.91785073700015],[-7.569661190999909,25.91952586100018],[-7.920789055999876,25.881297897000138],[-8.101504912999872,25.90334744300003],[-10.157155140999976,25.90334744300003],[-11.974880196999948,25.84275660800006],[-12.214731240999868,25.79816443100009],[-12.62020159199983,25.643587165000042],[-13.03144119399991,25.45778152800017],[-13.440069879999896,25.227439384000093],[-13.63363092499992,25.07177586400013],[-13.762539457999935,24.93322720200007],[-13.896475160999898,24.75176682700004],[-14.078137873999935,24.427803769000093],[-14.174445183999978,24.21151424200019],[-14.341846576999956,23.752573696000127],[-14.490877596999951,23.38626197100018],[-14.599944437999966,23.090872609000087],[-14.868067088999965,22.595527372000106],[-15.41794574599993,21.686637029000167],[-15.658801686999936,21.345803151000155],[-15.882951035999895,21.157555319000096],[-16.312372324999956,21.121666908000122],[-16.378608961999873,21.09402448000003],[-16.24058001999998,20.835369933000152],[-16.223999995999918,20.775870080000175],[-16.133959973999936,20.63855003900011],[-15.939859939999963,20.38940997000003],[-15.882640072999834,20.253569905000177],[-15.83892991499988,20.007079992000115],[-15.831320043999881,19.804980027000113],[-15.857009981999965,19.36495],[-15.829699955999956,19.28004008],[-15.5843800479999,19.171319939000057],[-14.745787480999923,19.08555111900006],[-14.603906165999945,19.114996019000046],[-14.466302460999941,19.202763586000117],[-14.295088731999897,19.414893242000176],[-14.180348454999887,19.636633671000027],[-13.960154299999886,20.18395001900018],[-13.846641367999837,20.437292639000134],[-13.69109313399997,20.691950270000063],[-13.60780725099994,20.78714466300005],[-13.494200896999814,20.879722063000088],[-13.254815509999958,20.980762560000073],[-13.106031534999943,21.010519355000042],[-13.05708008399995,21.188690060000056],[-13.004600082999957,21.234559983000054],[-12.886410067999975,21.20698011899998],[-12.847019966999937,21.23849015700017],[-12.697319913999934,21.218800036000175],[-12.65397992599992,21.270010053000078],[-12.551550034999934,21.250310074000026],[-12.516100140999981,21.285770000000127],[-12.401849980999941,21.28182996900017],[-12.291550061999885,21.329099955000117],[-12.208820148999905,21.289710031000084],[-12.130029915999899,21.305469979000065],[-11.99760991799991,21.291830016000063],[-11.993290035999962,21.29327003500015],[-11.875449948999972,21.28044997300003],[-11.911309968999944,21.19919000300007],[-11.910389912999904,21.017270023000094],[-11.999999917999958,20.943139918000043],[-12.021270169999923,20.808480067000175],[-12.094278595999981,20.744508944000074],[-11.13216710699993,20.183277243000134],[-9.507147163999946,19.79327245600018],[-7.362120838999886,18.948262086000057],[-7.023777252999821,18.763711039000043],[-6.517301674999942,18.459077094000065],[-6.17029463099982,18.271939890000056],[-5.84450412599989,18.139489267000158],[-5.613202772999955,18.065319732000034],[-5.322840329999963,17.98767518699998],[-5.081222493999974,17.935129490000065],[-4.785843111999952,17.884864104000087],[-4.261157405999882,17.83191930099997],[-3.94004165799987,17.822315545000095],[-3.523834067999871,17.836658425000053],[-3.298919282999975,17.857814545999986],[-2.965631658999826,17.90816789600018],[-2.529948067999953,18.013166295000076],[-2.233278345999963,18.114773996000054],[-2.063668683999822,18.18414034100016],[-1.698551936999877,18.359252245000107],[-1.282597303999921,18.599304406000044],[-1.081015449999825,18.730832111000097],[-0.83111586099983,18.908484326000064],[-0.642117344999917,19.08144794800006],[-0.533364931999927,19.204208947999973],[-0.336269014999971,19.461552733000133],[-0.11100375999996,19.780949579000094],[0.080441619000112,20.02355043900019],[0.296524603000023,20.24464512300017],[0.429524624000067,20.340720668000017],[0.612250456000083,20.43259997000007],[0.757011086000034,20.4758983750001],[1.023262277000185,20.51890980900015],[1.71635588100014,20.55713975700013],[2.473387475000038,20.56860993300012],[3.484791434000101,20.532064960000127],[3.834994502000086,20.48064247400015],[4.431843605999973,20.28816759700004],[4.655243265000024,20.17422281400013],[5.638038706000145,19.53326926600016],[7.130356503000087,18.757264011000075],[7.471696100999964,18.650324813000054],[8.641737678000084,18.437589981000087],[8.615100047000055,18.521780035000177],[8.683510030999969,18.540420021000045],[8.628309993000073,18.663450056999977],[8.569369884000082,18.690120074],[8.422139743000173,18.694599959000016],[8.335509932000093,18.645750017000125],[8.220640005,18.63066000200007],[8.173999995000145,18.732120023000107],[8.282729993000146,18.731010041000104],[8.315979988000151,18.7919400560001],[8.420279916000027,18.820169963000183],[8.549140085000033,18.80329],[8.572619916000065,18.92097008500008],[8.49666994100005,18.98570002000008],[8.40722997100005,19.119169800000122],[8.414189977000035,19.23524000600014],[8.461179739000045,19.298749946000157],[8.578170002000093,19.381149998000126],[8.747470054000189,19.403110073000164],[8.876850011000045,19.2950799300001],[8.981839936000085,19.27729997700004],[8.986969862000024,19.188390004000098],[8.929830084000173,19.104730002000167],[9.038010020000172,19.0684999880001],[9.082200009000076,19.110769951000123],[9.225329941000098,19.042909853000083],[9.234980059000065,18.915819917000135],[9.31938004900013,18.896780013000182],[9.37663001499999,18.939209802000164],[9.418610073000139,19.04249004600007],[9.502640069000165,18.988480079000112],[9.544110021,18.871369947000062],[9.601170062000051,18.79024005600013],[9.567949990000159,18.731149977000143],[9.647359989999984,18.69826997500013],[9.701880062000157,18.60384001500006],[9.680350004000047,18.430940002000057],[9.736400042000128,18.346579969],[9.691689914000051,18.30013006000013],[9.533729948000143,18.32779001299997],[9.501260073000026,18.251480077000167],[9.401440030000117,18.373179930000106],[9.355739966000044,18.247530013000187],[9.198700056,18.102060072000086],[9.157809913000108,18.098110008000106],[9.110099877000152,18.205590088000065],[9.066330048000168,18.20530000700012],[9.025640041000088,18.109299949000047],[9.126649979000092,18.043749937000143],[9.081282236999982,17.97534866000018],[9.10572019600005,17.946837708000146],[9.177849962999971,17.933269949000135],[9.312919940000029,17.796179966000068],[9.28628433200015,17.73617955000003],[9.527779786000053,17.471801009000103],[9.675913729000115,17.34485948700012],[9.938251551000178,17.17440222700003],[10.209723609000037,17.037153095000065],[10.48990496099998,16.922165825000093],[10.950896923000187,16.766355047],[11.1436998960001,16.732968535],[13.36205531700017,16.62733256300004],[13.534812816000112,16.640332529999966],[13.730424694000021,16.679454905],[13.999065006000023,16.81768729900017],[14.14512187500003,16.922013634000052],[14.72152487500017,17.237600797000027],[15.046805075000066,17.39266012900015],[15.357780102000163,17.480875288000107],[17.262423725000076,17.841213270000083],[17.571580271000073,17.951893242000097],[18.006332680000128,18.162160222000068],[18.235006502000033,18.26267819500015],[18.528660852000087,18.341809764000118],[18.70963093900008,18.335136410000075],[18.844213935000084,18.28453312500011],[18.961889419000045,18.19895534000017],[19.072697022000057,18.089579415000117],[19.28704417600011,17.80953089000002],[19.400113620000127,17.625288020000028],[19.561669031000122,17.224645855000176],[19.687954816000058,17.069467518000067],[19.825536312,17.02022168600007],[20.01665593900009,17.027057694000064],[20.18322329199998,17.067595913],[20.368814064000105,17.133307226],[20.754724825000096,17.292441867000093],[20.902986665000128,17.326666896000063],[21.303230958000142,17.388242941000044],[21.942233299000065,17.42278360800009],[22.04315990100008,17.408749986000146],[22.147050054000147,17.544339751],[22.346670073000098,17.46773005200015],[22.451379951000035,17.533800027000154],[22.61172005900005,17.572659955000063],[22.66454998800009,17.475999999000067],[22.603650072000164,17.395609920000027],[22.76502993000014,17.382640063999986],[22.830749977000096,17.42932003100009],[22.833110053000155,17.517880077000086],[22.96669987900009,17.572530052000047],[22.902829801999985,17.76833994400016],[22.98385003200019,17.798480019000067],[23.004470067000057,17.70351003000019],[23.187059979000026,17.487929928000142],[23.24235999600012,17.49548998500012],[23.323019913999985,17.649710055000014],[23.440149937000058,17.654669946000183],[23.464799949000167,17.60292007600009],[23.607729922000033,17.75372993500008],[23.730690078000066,17.856650042000126],[23.859829943000136,17.828049965000105],[24.007609970000033,17.851109989000122],[24.06734973900012,17.74347008300009],[23.96439002800014,17.582709815000044],[23.875580034000052,17.56477003600014],[23.833374260000085,17.51992273100018],[24.546341622000057,17.529486013000053],[24.764099793000128,17.500318084000185],[24.94547319100019,17.49815869100013],[25.051452351000137,17.52346273800009],[25.27541456200015,17.669910557000037],[25.479872306000118,17.854573450999965],[25.59525769100003,17.931420187000185],[25.67917969300015,17.939659431000166],[29.574059723000175,18.01480181100004],[30.323129666000057,18.00118235700006],[30.96602584400017,17.989493336000066],[31.111294907000172,17.95943874700015],[31.519262417000164,17.843522421999978],[31.694886601000064,17.80120837100003],[31.97440455600008,17.776941669],[32.25385977500008,17.825095177000037],[32.45812548200007,17.893416646],[32.70884801700004,18.009818188000054],[33.10052399500012,18.2434683460001],[33.31606488800003,18.39756304100007],[33.406881667,18.495278897],[33.45041601100013,18.627760390000105],[33.408366160000185,18.746037620000152],[33.30911746000004,18.88133229100015],[33.07474133600016,19.135696826000185],[32.721855491000156,19.40614996300019],[32.60590672500007,19.55192685900016],[32.4913881920001,19.838223190000065],[32.51132928100009,19.990770789000123],[32.62684672300003,20.18243019900018],[32.762020199000176,20.318200177000165],[32.950132152000094,20.444456274000174],[33.57506128900019,20.506949187000146],[33.74797311200007,20.413529996000136],[33.86977928700014,20.301222874000132],[34.02543705700003,20.107558518000076],[34.13213588100018,19.94329459000005],[34.1746416310001,19.848353561000124],[34.257233324000026,19.541739205000113],[34.36502599700003,19.218361186000152],[34.55639016900017,18.900581548000048],[34.6771973970001,18.757486456000095],[34.774635352000075,18.683646446000125],[34.90135538200013,18.62878820600008],[35.16329891500004,18.58702590900009],[35.41237198400012,18.601350871000022],[35.59583892300009,18.641602242000033],[35.761585229,18.70754119200012],[35.83408213100006,18.758248498000057],[36.12845441900015,19.034318436000035],[36.21715180600012,19.08474149200009],[36.43796410800019,19.110112892000018],[36.803194779000194,19.049324908000187],[37.39010391700015,19.02169811500005],[37.33684951999999,19.138272678000135],[37.29183953799998,19.477472710000086],[37.24457951800014,19.548067781000043],[37.233890580000036,19.671721640000044],[37.259164537000174,19.741532639000127],[37.03299000200002,19.842719940000165],[36.814167008000084,19.865363871000113],[36.74468674700017,19.90629060000009],[36.654800100000045,20.09464894200005],[36.66608007800005,20.30446995],[36.69680999500008,20.38517000100012],[36.82337996900003,20.570890076000182],[36.847849913000175,20.663190018000023],[36.83993975100009,20.775920069000165],[36.717760068000075,20.979340008000122],[36.64473008800013,21.06784003100006],[36.30040000499997,21.395510001000105],[36.22881004400011,21.553120039000078],[36.16984001100013,21.79830001099998],[36.111189982000155,21.989829977000056],[35.98581007900003,22.19634997999998],[35.775410067999985,22.475650015000156],[35.56107002700014,22.72483004000003],[35.444640211000035,22.892769987000122],[35.37221996400007,22.967160073000116],[35.25369991200006,23.221200010000132],[35.16110020800011,23.447879932000035],[35.04350003600018,23.783159948000048],[34.96959998900013,23.948920063000116],[34.71286993900003,24.283369968999978],[34.61990992200003,24.463539959000173],[34.400869971000134,24.84453993],[34.35093664200019,24.945790135000095],[33.466752862000135,25.829973915000153],[33.294625816000064,25.93862326900006],[33.169375233000096,25.933221741000068],[33.12823152100009,25.811900170000172],[33.0738817940001,25.52815781600009],[32.9758285580001,25.2952813820001],[32.90600953600017,25.200344345000133],[32.9918214490001,25.062235727000086],[33.056846577000044,24.741370270000175],[33.07578649300007,24.52103518100006],[33.04243054199998,24.09261632800019],[32.97653151600019,23.73161530200008],[32.91912050900004,23.621716816],[32.840381581000145,23.54298392300018],[32.705875504000176,23.56922749500012],[32.67174959100004,23.659639061000064],[32.68737748200016,23.87530006500009],[32.741825487000085,24.240925723000032],[32.75418057999997,24.41104935600015],[32.727084350000155,24.731205188000047],[32.67837056000013,24.603331488000094],[32.163979895000125,23.63884899100009],[32.04821790000017,23.551475735000054],[31.89491146400013,23.48609630400017],[31.58388942900001,23.418706480000083],[31.208263328000157,23.368171098000175],[31.051819442000067,23.336518617000024],[30.873553687000026,23.27558437800002],[30.705809436000095,23.156885572000135],[30.58633141000007,22.959558183000127],[30.524934411000174,22.80258496300013],[30.468540232000123,22.55608952000017],[30.479655954000066,22.380721998000183],[30.5157094220001,22.24606362500009],[30.618061792000162,22.00243957900011],[30.73814944300011,21.761111334000077],[30.75781308200004,21.549500564000027],[30.699996663000093,21.397952268000154],[30.547226800000146,21.348716245000162],[29.96808438900007,21.264595001000032],[29.73513325100015,21.248417839000183],[28.919804269000053,21.264595001000032],[28.266246910000064,21.290478461000077],[27.57386436200011,21.348716245000162],[27.253519551000124,21.367520165000087],[26.963446309000062,21.363434626000185],[26.65426360500004,21.376258481000093],[26.388813853000045,21.367590179],[25.952695843000186,21.30458231300014],[25.56260141100006,21.229529752000133],[24.788329518000182,21.09258485500004],[24.3013966150001,21.04471645300015],[24.007265135000182,21.02555252700006],[23.51037884700014,21.0079051190001],[23.06935123500017,21.00591837400009],[22.702152391000084,21.01277587100003],[22.255986637000092,21.03031091200006],[20.848225374000037,21.15828920900009],[19.548571412000058,21.02799262100018],[18.94618989800017,20.999179923000042],[18.9341198570001,20.852319952000073],[18.970659842000146,20.765099946000078],[19.15072985200004,20.637590202000183],[19.19763987800019,20.538069921000044],[19.150969944000167,20.260730045],[19.087659961999975,20.032499915000074],[18.975889923000068,19.67970996100013],[18.923620090000043,19.57590007300007],[18.858609932000093,19.514960024000118],[18.67122998800005,19.416369833000033],[18.545019800000034,19.378660019000108],[18.357549910000046,19.375310007],[18.210969811000098,19.463880086000074],[18.09711992000007,19.59523973900008],[17.93146981700005,19.66193000800007],[17.838109883000072,19.667620029000034],[17.57978984500005,19.76096007300015],[17.477789794000103,19.843999957000108],[17.297839830000044,20.078920077000078],[17.086769887,20.244599926999967],[16.962769629000093,20.359260038000116],[16.847909912000148,20.387749925000037],[16.552709818000096,20.424199964000138],[16.43689994500005,20.496880017000137],[16.375769794000178,20.592330012000104],[16.304639950000137,20.78390996800016],[16.237689875000115,20.894179964000045],[16.099209863000112,21.01102008200013],[16.01065985000014,21.129699961000142],[15.920809930000132,21.35348998600017],[15.93967979900009,21.61975996700005],[15.856719652000038,21.822979947000135],[15.638941773000113,22.1909368580001],[15.652333592000161,22.27264807800009],[15.822659612000109,22.20174006400009],[16.28313981500014,21.845779989000107],[16.432612799000026,21.75679103400006],[16.554827032000105,21.74516840900003],[16.627622696000174,21.778938228000186],[16.628581456000063,21.85881036899997],[16.523555338000108,21.99371387900004],[16.517059614000175,22.093769944000087],[16.211103827000045,22.521555462000094],[15.980830678000132,22.770408809000116],[15.771593620000147,22.9373222210001],[15.578104622000183,23.011653074000094],[15.32178599200006,23.012522049000154],[14.909081282000159,22.95472801699998],[14.537897454000017,22.88635088900014],[14.11781597200013,22.76957313200012],[13.74631063400011,22.633390790000135],[13.300103897000156,22.42494775400013],[12.967385694000086,22.231528136000065],[12.824238630000082,22.134798204000163],[12.546704838000153,21.91143721500015],[12.402315117000114,21.7803216100001],[12.179454267000153,21.635557435000123],[11.918194530000164,21.53126587700018],[11.701519873000052,21.475086368000177],[11.37547431900009,21.433906199000035],[11.17633317900004,21.435079125000073],[10.965510894999966,21.462441446000184],[10.673424566000108,21.559495535000167],[10.55622397500008,21.63561347600006],[10.454847224,21.742349054000044],[10.23129513400005,22.026487644000042],[10.044864459000166,22.146802508000064],[9.818893163999974,22.210033068000087],[9.334165256000176,22.29000638400015],[9.160646287000134,22.35114875500011],[9.072474235000072,22.405057545000147],[8.520610065000028,23.01656993400013],[8.512779992000105,22.976390032000097],[8.592900057000179,22.8635800670001],[8.607429977000152,22.790060048000043],[8.559149988,22.737499958000114],[8.449019927999984,22.805069974000162],[8.442160078000143,22.900070062999987],[8.355900085000087,22.911999992000062],[8.319219988000157,22.811790065000082],[8.248509951000074,22.79494002500013],[8.196399768000163,22.690150058000086],[8.247239966999985,22.560889972000155],[8.155399965000015,22.545340016000182],[8.102589926000064,22.664490044000104],[8.052850028000023,22.619379999000046],[8.037869849,22.536939991000168],[8.067639930000041,22.320369952000135],[8.007750016000045,22.220929936000175],[7.932500072000153,22.219179946000168],[7.93289999000018,22.316279952000116],[7.989370011000119,22.52905024800009],[7.965590066000118,22.596720068000025],[7.971640048000097,22.76013999800017],[7.879769771000042,22.74449992000018],[7.829069860000061,22.645110069000168],[7.718409979000171,22.535040031000165],[7.634180024000045,22.59402995500011],[7.685249929000065,22.701660004000132],[7.834669935000079,22.845400021000103],[7.768379935000041,22.910360014000105],[7.679419972000062,22.791240086000187],[7.588660029000039,22.747470080000085],[7.542699983000091,22.83943012800006],[7.570519939000121,22.906440049000025],[7.636840038000059,22.94146995900013],[7.676470053000173,23.04522],[7.574470003000101,23.038619955000115],[7.548439994000091,23.11343002500007],[7.440979805000097,23.059640260000037],[7.423189819000072,23.19526998100008],[7.357049964000112,23.2538200300001],[7.236330014000146,23.18436994400014],[7.267119955000169,23.118690030000153],[7.376030021000133,23.0247099770001],[7.38655003000008,22.881489923000117],[7.336069968000061,22.818279921000055],[7.187160068000026,22.79108994100011],[7.18205003300011,22.852069946000142],[7.232350027000109,22.994849950000116],[7.146930000999987,23.07793999900008],[7.007820013000071,23.02777994100012],[6.913130072000115,22.953240062000077],[6.891240053,22.75028006300016],[6.803399929000022,22.665629949000163],[6.744119924000188,22.656680038000104],[6.622589930000174,22.741969985000026],[6.533230050000043,22.691329920000044],[6.491669975000093,22.525530201000038],[6.306520029000183,22.471429936000106],[6.328269936000083,22.347030113000073],[6.476729929000101,22.254010249000146],[6.437049924000121,22.16344991200009],[6.272609958000146,22.25776000200017],[6.234340049000139,22.321670036000057],[6.136020047999978,22.302080070000102],[6.040140036000082,22.403680027000178],[5.972599943000091,22.266559944000164],[5.927410161000125,22.233560073000092],[5.707229952000034,22.26532006000008],[5.625579922000099,22.259220088000177],[5.573240033000161,22.31576016500003],[5.406809986000098,22.24902008300012],[5.342689961000133,22.32068010000006],[5.19117003700012,22.379620033000037],[5.093299943000034,22.49063001800016],[4.970389953000051,22.387729977000163],[4.906100068000057,22.41490006700002],[4.747490060000189,22.343469933000165],[4.820429918000059,22.48965011500013],[4.783030076000159,22.554509952000046],[4.670269925000071,22.559160048000024],[4.615120053000055,22.61388007900007],[4.604330029000039,22.748540106000178],[4.72259995700017,22.876229918000035],[4.780189993000135,23.04451996800009],[5.01742002400016,23.24611000400006],[4.728027538000106,23.823321915000122],[4.221863515000109,24.441966832000162],[4.07483996600007,24.431640037000022],[4.021900025000036,24.497689945000104],[3.933850085000131,24.504670017000137],[3.830940011000052,24.451830055000073],[3.69940997100008,24.353639957000155],[3.556529987000147,24.344349975000114],[3.52612975500017,24.41102000100011],[3.560499942000092,24.511540076000188],[3.734939953000151,24.63428988800007],[3.819349976000069,24.719550088000062],[3.832750025000109,24.78997004400003],[3.733830148000095,24.932889808000084],[3.734308403000114,24.992455085000074],[3.558013179000113,25.18833866800003],[3.498667973000067,25.31280766700013],[3.459574945999975,25.450661421000177],[3.444219573,25.68354234600008],[3.459144956000102,25.879164174000095],[3.539440158000048,26.378869869000084],[3.571842551000032,26.657731736000187],[3.570480648000057,26.781559511000182],[3.539285110000151,26.927818835000096],[3.493012381000028,27.008361004000108]],[[1.525539970000125,25.981980076000127],[1.470640046000028,26.151370074000056],[1.411009938000063,26.221649919000072],[1.305849977000094,26.264979874000062],[1.05197989900006,26.29187977300012],[0.975359816000037,26.31630993600004],[0.9919099170001,26.394890002000125],[1.449059822000095,26.441760071000147],[1.517399926000053,26.462690077000104],[1.573869948000038,26.406609939000077],[1.558930077000184,26.101260006000132],[1.525539970000125,25.981980076000127]],[[0.95522999700006,26.104809977000173],[1.009779993,26.06215998700003],[1.056669951000174,25.90305008200005],[1.096389913000166,25.86249983400006],[1.076410063000083,25.712560042000064],[1.002670018000174,25.650140017000126],[0.924829940000166,25.667200048000097],[0.835759965000136,25.79447005300011],[0.74348977,25.973580051000113],[0.706650023,26.093360054000186],[0.551059990000169,26.087179993000177],[0.669630032000043,26.194970044000115],[0.822059978000027,26.247049952000168],[0.889970066000103,26.136550073000024],[0.95522999700006,26.104809977000173]],[[-9.825010076999888,25.10416005200011],[-9.720830019999937,25.010560026000178],[-9.769170030999874,24.970279969000103],[-9.926390008999874,25.05417002900009],[-9.890450076999912,25.151609930000063],[-9.825010076999888,25.10416005200011]],[[-11.709719933999907,24.438889947],[-11.65470999799993,24.457219962000124],[-11.474720075999869,24.354999887000076],[-11.402780011999937,24.360279958000035],[-11.327219920999937,24.290550000000167],[-11.370830099999921,24.246669982000185],[-11.58834008499997,24.275279916000045],[-11.781950078999898,24.33749998200011],[-11.782169927999973,24.415949969000167],[-11.709719933999907,24.438889947]],[[-11.625730069999975,24.16440001000018],[-11.372310074999916,24.02778000100011],[-11.315530082999942,23.95252019999998],[-11.389489975999936,23.91276996200014],[-11.50209998199989,23.953939977000175],[-11.622060053999974,24.073480065000183],[-11.896479934999888,24.151269977000084],[-12.05789006799995,24.16463006800018],[-12.082840018999832,24.227790081000137],[-12.004909994999934,24.283970022000176],[-11.625730069999975,24.16440001000018]],[[-12.75527994499987,24.15082992700013],[-12.848330259999955,24.284999738000124],[-12.877499936999925,24.361940002000097],[-12.829169958999955,24.404720071000042],[-12.711399926999889,24.301109966000126],[-12.699719945999846,24.23361000500006],[-12.75527994499987,24.15082992700013]],[[-12.831110050999882,22.65499992700012],[-12.931479979999892,22.60220995500015],[-12.96629004099998,22.66980003800012],[-12.936190097999884,22.849910005000027],[-12.869520247999958,23.001749933000042],[-12.773079963999976,22.944919949999985],[-12.860229913999945,22.7555802],[-12.831110050999882,22.65499992700012]]]},"properties":{"objectid":656,"eco_name":"South Sahara desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Palearctic","eco_biome_":"PA13","nnh":2,"eco_id":842,"shape_leng":174.069849621,"shape_area":253.97401953,"nnh_name":"Nature Could Reach Half Protected","color":"#DF8245","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":2929593.5741784885,"percentage":11.104441404307547}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[103.54180165100013,54.06653630200009],[103.31849651900018,54.17378074100003],[103.23329967000018,54.34146373200002],[103.15010056300008,54.38683279500003],[102.92252367800012,54.27971039600004],[102.81510154200015,54.168817481000076],[102.81020366000007,54.06618526800003],[102.73339860500005,53.988065427000095],[102.23750258200016,53.967725063000046],[102.13359866600013,53.915813589000095],[102.04830156900016,53.804570144000024],[102.06249967500003,53.69763868399997],[102.22250366900016,53.61935489400008],[102.55319958900014,53.57558409300003],[102.77330065500018,53.50532346000017],[102.79900359400011,53.27658970400017],[102.65589852300013,53.08684638200015],[102.71269966300014,52.99289262300016],[102.98840359300004,52.91650096400002],[103.08979763100001,52.86104981300008],[103.11139662300013,52.742398441000034],[103.09130067400014,52.61810604800013],[103.42330165700014,52.541795526000044],[103.56839759800005,52.491383407000114],[103.86840066500002,52.34134046700012],[104.12709754500014,52.37301014700017],[104.49859657000013,52.51228401800006],[104.63320155300005,52.61574503400004],[104.85839864900004,52.72857802400006],[105.24610156900002,52.81325804500011],[105.41059859900014,52.89556967500005],[105.42939753100018,53.01235087600014],[105.1818006370001,53.07135411000013],[105.07530252200013,53.11807433600006],[105.08989759500008,53.227935606000074],[104.99939751600004,53.325128467000184],[104.84480253200013,53.34108995700012],[103.99539957400003,53.285157853000044],[103.84809852200004,53.31411950800015],[103.81569659900003,53.37446954600017],[103.89630167400009,53.43698194700016],[104.15440360700012,53.56101584200013],[104.38200362600003,53.6343972250001],[104.41100367000018,53.73234965400013],[104.14859763000015,53.84454913999997],[104.0059966460002,53.92497283000006],[103.80729659100012,53.99282651600009],[103.64050258500004,54.1178374050001],[103.54180165100013,54.06653630200009]]],[[[102.0257036230002,54.05112784900018],[102.17410253700007,54.098167928000066],[102.31079863700012,54.277512324999975],[102.27680163800011,54.35931333000008],[102.13719953200018,54.47739607300002],[101.99009662800006,54.52928826800007],[101.84729766400005,54.500177415999985],[101.65850065900014,54.38776368900011],[101.38809962400018,54.342913634000126],[101.40509762099998,54.269161938000195],[101.63349962100011,54.09845811000008],[101.78379854400009,54.039496617000054],[102.0257036230002,54.05112784900018]]],[[[99.84825851400007,54.98705970800006],[99.53542359100004,55.05173933500015],[99.38928963500018,55.11115210800017],[99.21550763700014,55.09358062200005],[99.11916352700013,55.03892206400002],[99.22411367200016,54.92135799200008],[99.67920659100008,54.83452600200002],[99.87587755500005,54.73394048100005],[100.09580260200016,54.53007817900016],[100.24349961500013,54.48064607300017],[100.56240052100014,54.472455947000014],[100.68070253500002,54.55857899700004],[100.60929861000011,54.64771131700013],[100.48269666800002,54.708312645000035],[100.42990157400016,54.79338292700015],[100.5941005430002,54.842266019000135],[100.81939654500019,54.86416675800007],[100.80339867700008,54.952467761000094],[100.50980357500015,55.00481023200007],[100.04799658400009,54.98142958400018],[99.84825851400007,54.98705970800006]]],[[[93.62882952200016,57.0154988860001],[93.47093156600016,57.01326678600003],[93.26098651600006,56.95960416500003],[93.15637952600014,56.86649228500016],[92.99199665800006,56.601621462000196],[92.90621156700007,56.51656274700008],[92.68222062800015,56.44993399200018],[92.40511356700006,56.4166678950001],[92.16426863200007,56.340665658000034],[91.96534762900006,56.04268715600011],[92.00385258300008,55.94976269500006],[91.83394654400013,55.79524013100013],[91.68910256400005,55.792646267000066],[91.22382362100018,55.857208044000174],[91.06888564899998,55.83825656100004],[90.64039655600016,55.72454431000017],[90.49159262900008,55.73606573800009],[90.2025225810001,55.81554696800015],[90.02227763200005,55.957266678],[89.99180555800012,56.134830759000124],[89.84888455300012,56.39140316200019],[89.62559551400017,56.516661653000085],[89.1800306400001,56.62253079000004],[89.02423050599998,56.618402870000125],[88.7423325170002,56.53018216600009],[88.44477059600001,56.464388417],[88.12801361300006,56.266147689000036],[87.8219375220001,56.214258009000105],[87.66555752700009,56.21055086100017],[87.35253853800015,56.244017789000054],[86.42217259800009,56.3654663690001],[86.14430261700016,56.4532180220001],[85.70530664000012,56.72828509500016],[85.57397462300008,56.73439214900009],[85.17354562700018,56.573060462000115],[84.86195357300011,56.539573418000145],[84.58020059100011,56.45359990200012],[84.52661860400008,56.2845121040001],[84.28534652700012,56.167233856000166],[84.21588854500015,56.085253478000084],[84.17351551000013,55.82047485600003],[83.9008174980001,55.59910175200008],[83.86640157199997,55.42266805500009],[84.07286863400009,55.18099264000011],[84.29724162100018,55.05901868200016],[84.72187755400006,54.946344613000065],[84.84661854500013,54.7863216770001],[85.11121360400017,54.69130324900004],[85.39194449600012,54.61973353000013],[85.67014355100014,54.403137273000084],[85.77667955200008,54.33907153700011],[86.20973158600003,54.26215399700004],[86.28820061600004,54.18556502700005],[86.45750449900004,53.93382730500019],[86.68288465600017,53.69877493500013],[86.90743265700013,53.563014926000164],[87.03388255100009,53.542617229000086],[87.0752105310001,53.612358855000025],[87.07553055200003,53.80922813500007],[86.95311755000012,53.97411894600015],[86.8875045150001,54.148702087000174],[86.73532050100005,54.402721363000126],[86.73180362200009,54.492899409000074],[86.59944951500006,54.65352835800013],[86.53544664400005,54.82985979600011],[86.4677126520001,54.91101589700014],[86.25842256400017,55.04181415500011],[86.08126064700014,55.18963287400004],[85.83403054500002,55.29917177600004],[85.72445660700004,55.37485684100011],[85.82769751400014,55.49387517200006],[85.65827963700013,55.72582221500011],[85.62461053800013,56.0021861350001],[85.70861061900007,56.08281937300006],[85.89930763400014,56.13793977500012],[86.19783062400018,56.1863953890001],[86.64562961100006,56.089647439000146],[86.86968257700005,56.00911729900014],[87.13539863100004,55.88773778500018],[87.34546655900004,55.816404939000165],[87.6626436430002,55.584396374000164],[88.15850060600008,55.40235065700017],[88.54577655200006,55.345739283],[88.994239553,55.37454771600005],[89.36975853900014,55.32903364700013],[89.59026361300005,54.95926917300005],[89.75930765700014,54.8494372400001],[89.94877655500017,54.755818757000156],[90.38115652800008,54.69344331600013],[90.69663962900012,54.67273968000006],[90.79218259700008,54.59858095900012],[90.70787054100015,54.38232366600005],[90.52541360800006,54.14346909700009],[90.36225852100006,54.04988799800003],[90.25916262100014,53.90520444700013],[90.20554358600003,53.76799822400011],[90.20233164100011,53.59030539700018],[90.25921660000006,53.39169301600009],[90.25218954800005,53.247059756000056],[90.20767963100008,53.16973720200008],[90.0771175750001,53.09626462400013],[89.88858057600015,53.03252427300015],[89.78527060200008,52.953512598000145],[89.76616656800019,52.885300502000064],[90.20482659800001,52.62542613200009],[90.34310151400013,52.70772284300011],[90.4585035570002,52.73911826700004],[90.80590863400005,52.75499878800014],[91.20485654700008,52.830871105000085],[91.4048236120002,52.91302180300005],[91.44870756900019,53.10480595100012],[91.5456995990001,53.06641415200016],[91.75826265300014,53.05859400400004],[92.23634361100011,53.11496498500014],[92.55684663400007,53.031185516000164],[92.6319575390001,52.981211435000034],[92.96007552100008,53.01020795900007],[93.00947560900005,53.18764748500007],[92.91117851600006,53.353576311000154],[92.951347613,53.441171223000026],[93.0644075850002,53.500921452000114],[93.12957755300005,53.58173423000005],[93.03329463100016,53.74518972400011],[93.06776453700013,54.01598604999998],[93.04279350600018,54.10234094200018],[92.93097657100009,54.26914685100007],[92.90603655300015,54.449601515000154],[92.84384165800014,54.528438176000066],[92.55652661300013,54.73886535200012],[92.44578557900019,54.80229406400019],[92.37420664000018,54.975714467000046],[92.25283852600006,55.02803481000018],[91.85122650800014,55.14080359400003],[91.83362551800008,55.200520295],[92.01365656000007,55.256086782000125],[91.96064756100003,55.32478754200008],[92.19177250600006,55.40547861500016],[92.22691363500007,55.483685795000156],[92.36818659000016,55.61919853900014],[92.38053866500013,55.685023301],[92.30107855800014,55.761845288000075],[92.64612563800006,55.92471103100007],[92.78336354500004,55.96792108300002],[93.10014366100006,55.97347225000004],[93.25099160000013,55.95116649700003],[93.51777651400016,55.85643690900008],[93.9645386590002,55.60510319500008],[94.34445965200018,55.45175610900009],[94.48497052500011,55.414190932999986],[94.9480056320001,55.3866292240001],[95.41149855900005,55.4182811340001],[95.69051350800004,55.344743010000116],[95.9406735880001,55.24716055800019],[96.15740160899998,55.366975840000066],[96.18259459199999,55.545443323000086],[96.17121867300017,55.72320940800006],[96.25690452200013,55.79473319300013],[96.28609466800003,55.96269882200005],[96.19274859700005,56.127238431000194],[96.31835963100019,56.28177692100002],[96.45460562300013,56.327623417000154],[96.52403259200008,56.40748652600007],[96.53172265300014,56.497008269],[96.1232076340001,56.6189297570001],[96.08319058500007,56.885214942],[95.80901367000018,56.97235639200011],[95.65881365300004,56.96554727000017],[95.59944966200015,56.88324972100003],[95.5751726530001,56.703496454],[95.50726364700006,56.62107401500003],[95.35739153000003,56.61208559800019],[95.22359456200007,56.65825613800013],[95.003776636,56.89926519100004],[94.87493856999998,56.94668647900005],[94.73015561000017,56.92816616100015],[94.72058850500008,56.748610539000026],[94.79450264200017,56.48232870700008],[94.74433862800004,56.30773684899998],[94.64102161300019,56.238943720000066],[94.3267595870002,56.227595293000036],[94.03814652100016,56.299542365000036],[93.88772555700012,56.45553695900003],[93.86328862100004,56.54444967400002],[93.89147159700008,56.81448056400018],[93.77875561900015,56.97751444800019],[93.62882952200016,57.0154988860001]]]]},"properties":{"objectid":657,"eco_name":"South Siberian forest steppe","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Palearctic","eco_biome_":"PA08","nnh":3,"eco_id":738,"shape_leng":61.3466178344,"shape_area":22.7852486452,"nnh_name":"Nature Could Recover","color":"#FCD538","color_bio":"#FEFF73","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":162232.33246935555,"percentage":1.5311729455181358}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[159.79556915900014,-79.70813346599994],[159.35017291700012,-79.78186205699996],[158.9601666650002,-79.79376754899994],[158.63391268800012,-79.7188219059999],[158.33098623000012,-79.74963111199992],[159.15875213400022,-79.90675464299994],[159.50710282500017,-79.87736935499998],[159.79556915900014,-79.70813346599994]]],[[[164.2284456740001,-78.34529649299998],[163.49044714100023,-78.4357240199999],[163.78014695100012,-78.50792224199989],[164.13932857600003,-78.4779946459999],[164.32923257000004,-78.41109462699995],[164.2284456740001,-78.34529649299998]]],[[[165.38853841300022,-78.24715459399994],[164.76084023400006,-78.29642947499997],[164.82552022400023,-78.37364678299991],[165.48182148800015,-78.39519079699994],[165.70919478200005,-78.29696574899992],[165.38853841300022,-78.24715459399994]]],[[[166.14625739600024,-78.12100723599997],[166.17960514600009,-78.24879962699998],[166.7176799560001,-78.24135448199985],[166.57123379900008,-78.16012006199986],[166.14625739600024,-78.12100723599997]]],[[[165.45787622700016,-78.03278331299998],[165.14083815900017,-78.16528348399987],[165.57955837400004,-78.13572368499996],[165.45787622700016,-78.03278331299998]]],[[[162.1739312640002,-77.93798344699997],[161.82577872100012,-77.95021281699997],[162.06149502900018,-78.05496602799997],[162.30955202300015,-78.00487625699992],[162.1739312640002,-77.93798344699997]]],[[[164.36507477400016,-77.85250845299987],[163.84712609400003,-77.86323846699992],[163.69306347100007,-77.91976336199997],[163.78222650400016,-78.01949379899997],[163.50166431200012,-78.14899291299997],[162.9663505010002,-78.11718173399993],[162.92867316000013,-78.04479039299991],[162.58803047000015,-78.05273409399996],[162.77478773000018,-78.15166355699995],[163.21648637200008,-78.22034590399994],[162.65911238800015,-78.23804916099994],[162.59467112100026,-78.30629061999991],[162.8213594460001,-78.3919114599999],[163.52548267400016,-78.34585204499996],[163.4471265970002,-78.24379546099993],[164.1922301410001,-78.14305936199992],[164.50757104000013,-78.01218242999994],[164.56139126200026,-77.90801511399991],[164.36507477400016,-77.85250845299987]]],[[[160.6479388040001,-77.7321687509999],[160.26824011700012,-77.74805313399997],[160.00789290700004,-77.84722801899994],[160.44276817500008,-77.94051612399994],[160.75829917500027,-77.92720431499993],[161.1482415600002,-77.83227737999988],[160.66265206900005,-77.77565709999999],[160.6479388040001,-77.7321687509999]]],[[[163.9213445250001,-77.70236554099995],[163.45188282900006,-77.72230559399998],[163.18246706600007,-77.77318980099994],[163.75774932600007,-77.82587511299994],[163.9213445250001,-77.70236554099995]]],[[[161.7165859490002,-77.16588295799994],[161.36982731800015,-77.19826377099992],[161.44506330800016,-77.25031189099991],[161.0081557640002,-77.31408830799995],[160.83244803700006,-77.26429190399995],[160.8390110710002,-77.17237072099994],[160.4233052210003,-77.22094554499989],[160.34988776700015,-77.41628637899993],[160.5111541370003,-77.44592832099994],[160.4017390790001,-77.60455623699988],[160.58173515600015,-77.65298186299998],[161.18841888600002,-77.71494795699988],[161.83239137300006,-77.8248268719999],[162.65418818800003,-77.80322971599998],[163.24071896500004,-77.68340751299996],[163.6073231030001,-77.65837360799998],[163.69552054300016,-77.60351838799988],[163.25615307300006,-77.53044006599998],[162.96245274900002,-77.57196101299996],[162.81995413300024,-77.49881446299997],[162.78280384800019,-77.37026770099999],[162.0121822640001,-77.27022947999995],[162.05283115400005,-77.22758569199988],[161.7165859490002,-77.16588295799994]]],[[[160.61899893200018,-76.56857254399995],[160.3224323300002,-76.63960853099996],[160.7016552580002,-76.83232767199996],[160.69837625800017,-76.94113051799997],[161.0361717840001,-77.00238096399994],[161.1210779810002,-76.91723102099996],[161.46351289100016,-76.83320760399994],[161.17242218700028,-76.71279514799994],[160.63853128900007,-76.63660076699989],[160.61899893200018,-76.56857254399995]],[[161.11976436800012,-76.77047138099994],[161.2527387880001,-76.86230388399997],[160.8704249440001,-76.8457244729999],[161.11976436800012,-76.77047138099994]]],[[[159.11547182800007,-75.61772454699997],[158.91688752800007,-75.67425631499998],[159.18054324900027,-75.75285127299998],[159.35941078500014,-75.63602442799993],[159.11547182800007,-75.61772454699997]]]]},"properties":{"objectid":659,"eco_name":"South Victoria Land tundra","biome_num":11,"biome_name":"Tundra","realm":"Antarctica","eco_biome_":"AN11","nnh":1,"eco_id":132,"shape_leng":335.992370735,"shape_area":3.92397958053,"nnh_name":"Half Protected","color":"#5DA9DB","color_bio":"#9ED7C2","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":10305.309022730355,"percentage":0.12059826206252673}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[148.34126281700003,-32.27128543999993],[148.27390999800002,-32.13302919599994],[148.2741843340002,-32.06149970599995],[148.22639326700005,-31.953438665999954],[148.39396519700017,-31.767478818999905],[148.43197476900002,-31.692657052999834],[148.5079486840001,-31.68123946099996],[148.55946261600002,-31.740407374999904],[148.66694593800003,-31.739720565999846],[148.67341580900006,-31.68795698499997],[148.56088169200018,-31.49282164499988],[148.59281843100007,-31.394510881999906],[148.70663434900007,-31.413122565999913],[148.74490353900012,-31.278388878999976],[148.7176510810001,-31.257549267999934],[148.79412828900013,-31.102461980999976],[148.81120285400004,-31.015017501999978],[148.8925780830001,-30.932615720999934],[148.8822326170001,-30.88845124799991],[148.73432875100002,-30.70885336799995],[148.51438803200017,-30.561673500999973],[148.45895259400015,-30.475270557999977],[148.54981865100012,-30.400685259999932],[148.89901623300022,-30.35189574499998],[149.08790480200025,-30.306447040999956],[149.25030410900013,-30.308168636999937],[149.49291840100022,-30.22017034399994],[149.70740413700014,-30.26166696699994],[149.67162940900005,-30.16529344199995],[149.60426147200008,-30.08727337099998],[149.54572823400008,-29.963316612999904],[149.4496887580001,-29.846110223999972],[149.48911718800002,-29.74409342799993],[149.6345638260002,-29.67053403099993],[149.64396293400023,-29.565564584999947],[149.73435589300004,-29.46232519299997],[149.90353035500016,-29.421778212999982],[149.78847843000005,-29.264731134999977],[149.7143657680001,-29.095513073999882],[149.65545113800022,-29.00863895699996],[149.66308034300005,-28.959740136999926],[149.79392448200008,-28.927108801999907],[149.88006033300007,-28.853753750999942],[149.87830527200015,-28.800393568999937],[150.1430608720001,-28.755671495999934],[150.26003486000002,-28.721332987999972],[150.43040963200008,-28.76371363399994],[150.54015622100007,-28.74922563499996],[150.73429540300003,-28.798122627999874],[150.67989692800006,-28.716411434999884],[150.74724909200006,-28.66137644299988],[150.68377845500004,-28.59784939499997],[150.56192399700012,-28.653923896999913],[150.4807509730001,-28.645268770999905],[150.39400862000014,-28.59131387099984],[150.28724864100013,-28.41615891799995],[150.1808164680001,-28.353372829999955],[150.16070120100005,-28.30110394499991],[150.0423360210001,-28.382137526999884],[149.90174328900002,-28.37009770399993],[149.94147498600023,-28.22549964399991],[149.6997972570001,-28.329283985999894],[149.55082951600014,-28.426224078999894],[149.4704780930001,-28.50272016499997],[149.37728323000022,-28.524222934999898],[149.3072349470002,-28.638009884999974],[149.2219653860002,-28.646321526999884],[149.16667427800007,-28.77539184199992],[149.01033352600018,-28.893712026999935],[148.94178097100007,-28.89146412799994],[148.89905070500004,-28.968019980999884],[148.77573089800012,-28.991685987999915],[148.82798049100006,-29.066599802999917],[148.77321666600017,-29.117827580999972],[148.63013489000002,-29.146091095999907],[148.60010555600002,-29.269741023999984],[148.66899954500002,-29.340398874999835],[148.6672296900001,-29.419887852999977],[148.49411893500007,-29.541772069999922],[148.47292341000002,-29.373961190999978],[148.57714093200002,-29.252077148999888],[148.55417647800016,-29.186719787999948],[148.74170630300023,-28.98008916299989],[148.84061624700007,-28.802682270999924],[148.90838280900005,-28.755326976999868],[148.87845494800013,-28.615771961999883],[148.8991813240001,-28.527734221999935],[148.77174699900002,-28.306885452999836],[148.8207494080002,-28.251278332999902],[148.84060566300002,-28.132775606999928],[148.66399770400005,-27.87701329899994],[148.6293458890001,-27.85663498799994],[148.67448807300002,-27.96026518799988],[148.5874001740002,-28.014348430999917],[148.47488442000008,-28.132109518999926],[148.36094863000017,-28.30469016199993],[148.1750699470001,-28.47620997699994],[147.84590816800016,-28.586115153999913],[147.6257313870001,-28.697313902999895],[147.48609914700012,-28.80224880999998],[147.24658171400006,-28.731458849999967],[147.212698756,-28.808471431999976],[147.11467145400002,-28.82030340599988],[147.06446268900004,-28.77374426199998],[146.94481219000022,-28.92637767399998],[146.97188300100015,-29.0989159639999],[146.7594187850001,-29.23600389799998],[146.73775097200007,-29.332214460999978],[146.58046340600004,-29.47102641799995],[146.56253436700013,-29.580483467999954],[146.42705201,-29.69128197499998],[146.36897752100003,-29.784425843999884],[146.26486673800002,-29.82387428599992],[146.22263456300016,-29.89272923799996],[146.09612005600002,-29.947129792999874],[146.02039036200006,-29.895734852999965],[146.01268534500002,-30.037159057999872],[145.89693211500014,-30.06209026499988],[145.76158635900003,-30.02647467199995],[145.73843905400008,-30.083460570999875],[145.63515250500006,-30.111954773999855],[145.5158291910002,-30.20633857099989],[145.48970650700005,-30.267887269999903],[145.35787018800022,-30.247244245999866],[145.2509060120001,-30.289469382999926],[145.16144387600025,-30.361270081999976],[145.08780078000007,-30.352920645999973],[145.04656031000002,-30.44740258199988],[144.8782403160002,-30.563560953999968],[144.6812339930001,-30.66043463999989],[144.61469037800032,-30.66043483699991],[144.60761022700012,-30.746812992999878],[144.47025089800002,-30.874252451999894],[144.32724539700007,-30.906820453999956],[144.22528600400005,-30.97195878699995],[144.1063435100001,-30.88841301499997],[144.11851990600007,-31.027300855999954],[144.00014246600006,-31.168785036999964],[143.9619041740001,-31.266489343999865],[143.7863215740001,-31.331625568999982],[143.6418979880002,-31.444906814999968],[143.53946591700003,-31.469288576999816],[143.47197650400017,-31.433579139999893],[143.33319781900002,-31.542610832999912],[143.28223376600022,-31.54827565499994],[143.2836374300001,-31.65589217099989],[143.1561964550002,-31.75359587999992],[143.11797320800008,-31.820148926999934],[143.00206752400004,-31.85247451299989],[142.92754386900015,-31.93866740999988],[142.93718754400004,-32.01834289499993],[142.82263976500008,-32.05747023599997],[142.76242870500005,-32.12709575899987],[142.65064280200022,-32.14211833799993],[142.59481100500022,-32.19164439399998],[142.4030079810001,-32.165528991999906],[142.37389423600007,-32.24207465599994],[142.18148092800016,-32.326719195999885],[141.98427585700017,-32.47800661899993],[141.94136803800006,-32.468218100999934],[142.06496493500015,-32.72429871299994],[142.06958877300008,-32.80613898699988],[142.12548190400003,-32.8330326329999],[142.04918792700016,-32.98940513799994],[141.97350438800004,-33.075007083999935],[141.76801434300035,-33.169616152999936],[141.681908313,-33.11542438699996],[141.69256065000002,-33.369838417999915],[141.7343246700001,-33.442188226999974],[141.74876075900033,-33.578101665999895],[141.7091338790001,-33.6017682719999],[141.68047860700017,-33.730632173999936],[141.7434521580003,-33.762702108999974],[141.67008828700023,-33.89878285799989],[141.7517382860001,-33.96741618199991],[141.77041530100007,-34.06189751799997],[141.60708460600006,-34.10196239099997],[141.53075979400012,-34.04891610699991],[141.36536908900007,-33.991176521999876],[141.38256556900035,-33.90015487899984],[141.25318562300026,-33.91054171099995],[141.16988745800018,-34.0650283789999],[141.0505316340001,-34.03255836099987],[141.05066879900016,-33.9558069119999],[140.9662400850002,-33.88974085499996],[140.86357556000019,-33.95175700999994],[140.72430663900013,-33.977034474999925],[140.64622587200006,-34.06432193099988],[140.65310655100006,-34.23172345399996],[140.5593107330003,-34.243026509999936],[140.48251363100007,-34.176628249999965],[140.3708343940001,-34.18202613799991],[140.1601260110001,-34.14723229299989],[140.10893250900006,-34.16593171299991],[139.95602413000006,-34.132732191999935],[139.92262238000023,-34.06653234599992],[139.83383174100004,-34.074432681999895],[139.94830299600017,-34.198990075999916],[140.1817323070003,-34.16553123799997],[140.31492615700006,-34.19682687199992],[140.386322,-34.365726666999876],[140.5580750590002,-34.495765879999965],[140.66943326600017,-34.45322407799989],[140.61572233800018,-34.373028156999965],[140.70541363400002,-34.283424267999976],[140.84170540700006,-34.25462330599987],[140.80668612500017,-34.13827512099988],[140.81951941900013,-34.07672491999995],[140.92965662000006,-33.97862595099997],[141.0990407600001,-34.189648597999906],[141.21699020200015,-34.24527197199984],[141.36313091800002,-34.244528913999886],[141.47879686800013,-34.26749024699984],[141.53260258500006,-34.22069693999998],[141.63471056900016,-34.24779703899998],[141.85774446000028,-34.23691858999996],[142.02542692600002,-34.13195673099989],[142.09015213400005,-34.20454694799997],[142.2152301020003,-34.20827489799996],[142.20921781000004,-34.27456591399988],[142.2933200010001,-34.35618177299989],[142.3752677020002,-34.508383789999925],[142.37046549300032,-34.65239648099998],[142.3263509850002,-34.71233189799989],[142.36096365900005,-34.77274215599988],[142.48835996900027,-34.76239955599988],[142.6029595440002,-34.7955031059999],[142.7122130350001,-34.739136664999876],[142.7055657840001,-34.629463088999955],[142.77462308500003,-34.591846964999945],[142.87425730200016,-34.69562941499993],[142.99900374300012,-34.71854219799985],[143.1611777840003,-34.715913247999936],[143.20985426000016,-34.801449564999984],[143.34311457700005,-34.86309348999987],[143.2539627010001,-34.89804994799994],[143.2883456180001,-35.03157597299986],[143.45364606800013,-35.27997222299996],[143.52167744400015,-35.31032458899995],[143.5703728100001,-35.4212088299999],[143.67256069300015,-35.44995701399995],[143.60013224400018,-35.66421171499991],[143.52026252700023,-35.73570017299983],[143.45979507700008,-35.84303071399995],[143.36572309300016,-35.83841631399997],[143.32386176800014,-35.9377058309999],[143.35283412700005,-35.99203992199995],[143.3495829100001,-36.1278386059999],[143.4029162270001,-36.27203265599985],[143.49315851000017,-36.42910044699994],[143.53239496900005,-36.310770247999926],[143.46582828500004,-36.30087372999998],[143.46537754300005,-36.21053485599998],[143.70962247700015,-36.27959754699998],[143.70003604300007,-36.347830330999955],[143.79321724300019,-36.412586263999856],[143.83467701000018,-36.504466738999895],[143.93316541000013,-36.46266524699996],[143.9549228100003,-36.56367377299995],[143.88886888500008,-36.57935363099995],[143.90523274400016,-36.80694555499991],[143.94826437700033,-36.87404365499998],[144.14349727700017,-36.73929810499993],[144.12475333400027,-36.640875688999984],[144.16564467600006,-36.57538708099992],[144.28839667700004,-36.543621438999935],[144.34932694400004,-36.49074757199992],[144.46816178500023,-36.49885277999982],[144.51870606900002,-36.67523409799992],[144.58032717700007,-36.74797369799995],[144.63473161800016,-36.60275581399992],[144.75719548500024,-36.607493530999875],[144.82357330900004,-36.675503979999974],[144.92832594300012,-36.579947422999965],[145.0892299420002,-36.52217746499997],[145.210478168,-36.646620905999896],[145.1338792260002,-36.69293613899998],[145.102721577,-36.774806388999934],[145.1002343680002,-36.968959346999895],[145.24052291800012,-36.929577105999954],[145.29096611800003,-36.86666683899989],[145.47866739300014,-36.79457216399993],[145.58540359300014,-36.78175886399998],[145.695714543,-36.66556463099994],[145.814146692,-36.62876598099996],[145.99025985100013,-36.65346379799996],[146.09216415900005,-36.599876488999826],[146.08081379300006,-36.51595217299996],[146.15570800100022,-36.47150766399989],[146.17263540900012,-36.38664598899993],[146.05731510900023,-36.20366608099988],[146.04526540900008,-36.12235728999997],[146.24878190900017,-36.223603538999896],[146.23439625100002,-36.317721322999944],[146.27131087600003,-36.40945583999991],[146.21860800900004,-36.55278779799994],[146.35313569300024,-36.622211888999914],[146.55709908500012,-36.46586511399994],[146.49183403400014,-36.316577347999896],[146.43064073400012,-36.267218355999944],[146.43317308500013,-36.194004280999934],[146.54266051700006,-36.15731649799989],[146.60182012600012,-36.08799508999988],[146.71918033400016,-36.15123976499996],[146.76819855000008,-36.07749507399984],[146.85424635900006,-36.10969456499993],[146.91439751000007,-36.184604739999884],[147.03077465800004,-36.15565803199996],[146.99017000100014,-36.086159997999914],[146.91404000100022,-36.112719997999875],[146.56476221000014,-35.90691540599988],[146.48152561500012,-35.90290655399991],[146.3224835870002,-35.748232273999974],[146.3444562530001,-35.677290591999906],[146.1706431150003,-35.633856557999934],[146.11738964300002,-35.55103218399984],[146.16865928800007,-35.464263507999874],[146.27064925000013,-35.493068035999954],[146.28500781000014,-35.57863892099988],[146.34614990500006,-35.61611059399996],[146.4546095940002,-35.50370313799988],[146.37572164000005,-35.42482344699994],[146.30275397800017,-35.426795696999875],[146.2593729780001,-35.332138097999916],[146.267262124,-35.23945653499993],[146.37868264300016,-35.19467971299997],[146.36398827100004,-35.09668842499997],[146.40314269400005,-35.04656765999994],[146.3547870240002,-34.84127289499992],[146.54063944300003,-34.74238505799997],[146.53381866300003,-34.68611832699992],[146.43150824400016,-34.645197845999974],[146.45367882500022,-34.55824192699998],[146.39740387200004,-34.464464789999965],[146.14506861300003,-34.40478788899992],[146.0241422890001,-34.295267726999896],[146.1403687080001,-34.24043889199987],[146.27978844300003,-34.23922553999995],[146.3488954070001,-34.2996163329999],[146.61506972600023,-34.32121873099993],[146.70349433800004,-34.31460779299988],[146.75943263500005,-34.25781433299994],[146.6636666620002,-34.00341962099998],[146.60565264200034,-33.92363879499993],[146.65287805000003,-33.78262416599995],[146.78875763300005,-33.71455057799983],[146.81147829200017,-33.64344831499983],[146.9170842970001,-33.58522079999989],[146.90542679900022,-33.51045996499988],[147.05040185000007,-33.378345888999945],[147.00584654300008,-33.1651266799999],[146.9211297080002,-33.181007260999934],[146.80026467200014,-33.07195248499994],[147.14764752500014,-33.078899358999934],[147.21538142200006,-33.049373656999876],[147.2179904290001,-32.9825020429999],[147.32915111300008,-33.014633395999965],[147.4863476590001,-33.02418579799996],[147.51500264000003,-32.86699677699994],[147.50545000600016,-32.75670612499994],[147.53059553800006,-32.63911818699995],[147.61735589600005,-32.474196847999906],[147.52391002600007,-32.30147857999992],[147.618789213,-32.28845865499994],[147.73413129500022,-32.44007376699989],[147.88740627200002,-32.49140754699994],[147.91700894700023,-32.59432816899994],[148.02252358600015,-32.57982038499995],[148.13780426300013,-32.64695453699994],[148.2404346190001,-32.59800766899991],[148.26008745500008,-32.51550306399997],[148.21632430600016,-32.41750726299995],[148.33525146700003,-32.39086473799989],[148.34126281700003,-32.27128543999993]],[[147.96242213400012,-28.949548535999952],[148.05474447600034,-28.96898480799996],[148.06064527500018,-29.076617273999943],[147.93733882400034,-29.108109937999984],[147.90528018800012,-29.302610503999972],[147.9152286210001,-29.392124398999954],[147.85549035800022,-29.450891904999935],[147.78519347500003,-29.6233093809999],[147.84349820400007,-29.73170417599988],[147.74199657400004,-29.799371702999906],[147.58757749300003,-29.85541006099993],[147.54781345300012,-29.92656565999988],[147.55071342200017,-30.016686395999898],[147.38935143600008,-30.033602988999974],[147.38466649200006,-29.976101980999942],[147.29447091900022,-29.893872448999957],[147.27855558100032,-29.8368425299999],[147.37271705100022,-29.728087020999908],[147.34900474800008,-29.69006580499996],[147.49872358400012,-29.531797126999948],[147.59023076800008,-29.543733141999894],[147.59964528500007,-29.44250977099989],[147.68343136900012,-29.3296074779999],[147.8218598090001,-29.274618201999942],[147.8816035440002,-29.107086003999882],[147.84870283400005,-29.040729016999933],[147.94144510500018,-29.006372259999978],[147.96242213400012,-28.949548535999952]],[[144.95670128900008,-30.81089906699998],[145.12793598200017,-30.90924152899987],[145.07015104900017,-31.101852310999902],[145.06941885100002,-31.221363348999944],[144.84776993600008,-31.457305824999935],[144.60471176900012,-31.431707759999938],[144.64937489200008,-31.534582739999905],[144.58710418600015,-31.590716276999956],[144.62477897100007,-31.72605245799997],[144.535576901,-31.877536858999918],[144.33158176000006,-31.952276939999933],[144.23677859800011,-31.938116242999968],[144.30167532100018,-32.07119832399991],[144.43665460300008,-32.014305957999966],[144.47034641900018,-32.06458368099993],[144.37066072100026,-32.104726061999884],[144.41962691100002,-32.18033716899998],[144.49900331600008,-32.19246382499989],[144.58829753900034,-32.10868106299995],[144.6867632320001,-32.13728005699994],[144.77570654400006,-32.06763468199995],[144.8605919150002,-32.1318321629999],[144.98753030600017,-32.15118757699992],[145.0420197750003,-32.215259028999924],[145.15314936700008,-32.136118258999886],[145.31304557800013,-31.914044241999875],[145.38447281000003,-31.998736163999922],[145.52882185100032,-32.07680109199998],[145.53544461100012,-32.153392315999895],[145.4470805650003,-32.20126343399994],[145.53544515400006,-32.30436644399998],[145.53176900300014,-32.61146827099998],[145.56196645500006,-32.65492123699994],[145.49052454500008,-32.72193779899993],[145.32334855400006,-32.79926605399993],[145.18345517800003,-32.67292463399997],[145.10781681100002,-32.727856333999966],[145.13171235200002,-32.846480559999975],[145.2906029510001,-32.83794312899994],[145.32577443200012,-32.914465492999966],[145.28854299700004,-32.99728240299987],[145.40512036000018,-33.05539524999995],[145.439437665,-32.982530537999935],[145.6429911800002,-32.93316767899995],[145.67073205500014,-32.873463866999884],[145.58845606300008,-32.822694499999955],[145.5818641760003,-32.733293567999965],[145.7649706960001,-32.787377320999894],[145.82585306800013,-32.96160174299996],[146.00177197400023,-33.00220106199998],[146.04576291800015,-32.9260826819999],[146.04913500300017,-32.71294822799996],[146.12590170600004,-32.722713645999875],[146.1438616590001,-32.97006195499989],[146.24873546200013,-33.06647866299994],[146.22337543000003,-33.15782126099998],[146.1303272370002,-33.13921328299989],[146.07098573400003,-33.20189258399995],[146.06843689100003,-33.36392559799998],[145.93750101700005,-33.30667534799994],[145.88830675600013,-33.25821351999997],[145.79197747600017,-33.25264066499989],[145.49969445600004,-33.15423766999993],[145.38885410800003,-33.13298240499995],[145.32812407500012,-33.08136203899994],[145.2356709080001,-33.07978282499994],[145.1186816170001,-33.03996134799996],[145.00707813600002,-32.915888762999884],[144.87217498600012,-32.90842373199996],[144.81663272900005,-32.81158412499991],[144.75681819300007,-32.84576378899993],[144.63149751100002,-32.824401576999946],[144.6087162050003,-32.90700115299995],[144.5303925940002,-32.96966141299998],[144.437817321,-32.955421204999936],[144.36907647600003,-33.046699228999955],[144.28019409,-33.09669852399992],[144.1047939660001,-33.015747167999905],[143.9853328680001,-33.070022779999874],[143.98533269200004,-32.994564251999975],[143.8551752440003,-33.022861840999894],[144.0013700610001,-33.10114676199993],[144.00686340100026,-33.17973709199998],[144.11739811300004,-33.25733172899993],[144.16828615200006,-33.14987173799983],[144.28716742500012,-33.14265041899989],[144.3678865170001,-33.22159149699996],[144.50127915100018,-33.20490211999993],[144.54465991300003,-33.25112084699998],[144.50504811300004,-33.32091831699995],[144.4267702100002,-33.28696001899988],[144.2786836460001,-33.2907332499999],[144.22846712500007,-33.39546944999995],[144.14097327100023,-33.40863766299998],[144.01038867600005,-33.513240488999884],[144.00536854100005,-33.59638938499995],[144.05230480300008,-33.65513568599988],[143.92686216200013,-33.69443101799993],[143.8419619650001,-33.63689411899992],[143.805585134,-33.731048281999904],[143.61390453600018,-33.820819522999955],[143.47924552700022,-33.815009707999934],[143.39010423900004,-34.03886749399993],[143.3926833390001,-34.190612373999954],[143.27506879100008,-34.27470738899996],[143.2896562830001,-34.33739039599993],[143.23318368200023,-34.38890406799993],[143.25273027200012,-34.45686281099995],[143.33154148300025,-34.5443720909999],[143.29121184400003,-34.63064208399982],[143.19656135100013,-34.60674682199988],[142.94958173100008,-34.649899707999964],[142.9006637220001,-34.51945105099992],[142.79007471500006,-34.54676729799996],[142.69497582100007,-34.52780524899998],[142.6361216910002,-34.56867282899998],[142.66826980100006,-34.6945436019999],[142.5554767970001,-34.70544239499998],[142.47646876000022,-34.524536913999896],[142.41653211400012,-34.447708856999895],[142.40508811100028,-34.34363200599989],[142.26724095500003,-34.29023528699997],[142.25035047100016,-34.20686809099993],[142.29176294500007,-34.15782587299998],[142.16752566900004,-34.06519347899996],[142.11521891800032,-34.14148035299996],[141.94084141500014,-34.050484145999974],[141.9955585340001,-33.92138009099989],[142.06632874000024,-33.90931783199994],[142.03898481900012,-33.80559324799998],[142.1451248430002,-33.82649722699995],[142.2729622920001,-33.748505645999956],[142.5262418660002,-33.55150653599998],[142.62595760700015,-33.43170210699998],[142.52544745300008,-33.302246785999955],[142.39840204800032,-33.204953469999964],[142.32764685100005,-33.18002856199996],[142.32039852700007,-33.09319070499987],[142.38553836000006,-33.05620325199993],[142.39035992000015,-32.93317924999991],[142.43377129700002,-32.90905885899991],[142.416086016,-32.79246624599995],[142.43699040000013,-32.728143028999966],[142.549569721,-32.62361273699997],[142.5399106100001,-32.495766989999936],[142.60665244400002,-32.43304956099996],[142.9627316750001,-32.381192671999884],[143.0615629780001,-32.39459357299995],[143.16375102200004,-32.35355510699992],[143.3685393420002,-32.369805446999976],[143.40245914300021,-32.24131907499992],[143.37062903600008,-32.15839914199995],[143.26111657100012,-32.1495224169999],[143.23996779900028,-32.07882841499992],[143.31479631700017,-31.91527773499996],[143.2886674140001,-31.826646149999874],[143.36423452400015,-31.766935909999916],[143.40901881700006,-31.669907278999915],[143.57228797300002,-31.711891823999963],[143.59841112400022,-31.62139377199992],[143.72623345900013,-31.570080428999972],[143.80585384100016,-31.620646157999943],[143.90053456300018,-31.627291615999923],[144.07331011200017,-31.722813391999978],[144.16135281000004,-31.628953056999933],[144.11400476900008,-31.555857600999957],[144.14806180400024,-31.42794095399995],[144.2352810110001,-31.435416068999928],[144.32250017700017,-31.355675247999955],[144.33911682300015,-31.18207335099987],[144.4404507060001,-31.20948358399994],[144.52229871100008,-31.1110678149999],[144.617452629,-31.06092512099991],[144.7844293940002,-30.842282986999976],[144.95670128900008,-30.81089906699998]],[[145.83786058700002,-33.35883427099992],[145.87365787900012,-33.434842021999884],[145.84332328100004,-33.523858351999934],[145.8979347940001,-33.68773018199988],[145.8878189210002,-33.83744239099997],[145.85141133200023,-33.89611259499998],[145.77922372600005,-34.15295949399996],[145.72046063300013,-34.152960468999936],[145.581116919,-34.08580674399997],[145.534119636,-34.02033113899995],[145.59286593000002,-33.985075655999935],[145.4476472050003,-33.83410513399991],[145.4048456720002,-33.70806371499992],[145.43841491600017,-33.65266281699991],[145.53242440400004,-33.617407319999984],[145.57063241000003,-33.498861684999895],[145.68684371800032,-33.36073462599995],[145.83786058700002,-33.35883427099992]],[[143.5836322570002,-34.398864067999966],[143.64106648200016,-34.438636001999896],[143.6057274030003,-34.61171632899993],[143.41723478300003,-34.68862877299989],[143.33991803800006,-34.62293223099988],[143.36889473300005,-34.51756623899996],[143.29266235500018,-34.4041438349999],[143.41723457100022,-34.43575232799998],[143.5836322570002,-34.398864067999966]],[[143.60630707200005,-34.715350456999886],[143.57556065400001,-34.76819922499993],[143.73411477200023,-34.838347558999885],[143.7667836930001,-34.99305230099998],[143.50456129400004,-34.95968903199986],[143.47686633600006,-34.88406692899997],[143.2740607200002,-34.74000173299993],[143.43911590400012,-34.719191955999975],[143.55250486700004,-34.66057887799991],[143.60630707200005,-34.715350456999886]],[[143.46134783900027,-34.95253309799983],[143.4917269550001,-35.120196328999896],[143.4031802500001,-35.18247861499992],[143.3326235740002,-34.97188528599992],[143.34640253200018,-34.89301264199986],[143.46134783900027,-34.95253309799983]],[[142.20171523500005,-32.95301990899992],[142.18834889000016,-33.1349240319999],[142.37600225500012,-33.25679520299991],[142.41625534700006,-33.324956141999905],[142.53374866100035,-33.421028726999964],[142.4285857750001,-33.554104620999965],[142.38444265600015,-33.6670578159999],[142.27993536500003,-33.718987485999946],[142.1611304940002,-33.73132080499988],[142.10076752400028,-33.79104373399991],[142.00623922400007,-33.77680772899993],[141.85382004000007,-34.004219906999936],[141.72643910700015,-33.87027980899995],[141.80129826900009,-33.80462125899987],[141.7330146590001,-33.683810782999956],[141.7927509990002,-33.51309925499993],[141.87482794900006,-33.47370455999993],[141.89148975500007,-33.34839580099998],[141.79303927700005,-33.27914767999994],[141.90841102700017,-33.24685208099993],[141.9507242210002,-33.32421778299994],[142.03231329800008,-33.355646741999976],[142.07039887800022,-33.29580926899996],[142.01116387900015,-33.235972222999976],[142.06254024800012,-33.161024548999876],[142.153955407,-33.10365120699993],[142.07419722800012,-32.997316742999885],[142.20171523500005,-32.95301990899992]],[[142.23349893300008,-32.753347093999935],[142.19770192100032,-32.846647157999826],[142.1228420010002,-32.795660032999876],[142.23349893300008,-32.753347093999935]],[[143.80605325200008,-35.71675154699989],[143.7922075260002,-35.94568658099996],[143.7569598770001,-36.01491322199996],[143.66857058400012,-36.061026863999984],[143.64500327700011,-36.122423513999934],[143.46206046800035,-36.158323646999975],[143.4114560600002,-36.073410913999965],[143.57188418500016,-35.96359417199983],[143.54655801,-35.878943222999965],[143.63933461800002,-35.749447080999914],[143.80605325200008,-35.71675154699989]],[[144.22614283400026,-36.01337043899986],[144.28912982700012,-36.17059016399992],[144.1875747260002,-36.169597447999934],[144.15724768500013,-36.054103822999934],[144.22614283400026,-36.01337043899986]],[[145.70110400900012,-36.295733055999904],[145.7909889250003,-36.3714834139999],[145.6433035670002,-36.40466490599982],[145.63610558500022,-36.308404663999966],[145.70110400900012,-36.295733055999904]],[[146.02112032600007,-36.31562330699984],[146.1431614090002,-36.39277598999996],[146.0463662090002,-36.45285948999998],[145.95521829300014,-36.463252614999874],[145.9157412930001,-36.37044809799994],[146.02112032600007,-36.31562330699984]],[[145.8252524510001,-36.46567542299988],[145.7053944510002,-36.56719341499985],[145.6269654680001,-36.48556747199996],[145.69583836800007,-36.43761691399993],[145.8252524510001,-36.46567542299988]]]},"properties":{"objectid":663,"eco_name":"Southeast Australia temperate savanna","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Australasia","eco_biome_":"AU08","nnh":2,"eco_id":192,"shape_leng":144.358386057,"shape_area":26.6722165114,"nnh_name":"Nature Could Reach Half Protected","color":"#FDC975","color_bio":"#FEFF73","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":278692.18380379153,"percentage":2.6303383886090552}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[96.96749863700012,30.011409586000013],[96.76834059400016,30.125577309999983],[96.64422556300002,30.23765827600016],[96.4077985610001,30.49698564300013],[96.19725755800016,30.61729646400005],[96.09606954700007,30.72556969800013],[95.970832514,30.806136552000112],[95.82573657300014,30.710488140000166],[95.72168765000009,30.76462132000006],[95.6370316010001,30.739408220000087],[95.557365635,30.834274600000185],[95.44608262700018,30.83492453300005],[95.42279065900016,31.027546871000027],[95.35377457100003,31.09964029100007],[95.26808151300008,31.101280462000148],[95.27976957400017,30.97692973100004],[95.19604458700007,30.920827642000063],[95.21640054200009,31.071382213],[95.10456851900005,31.125364352000133],[95.11477667200006,31.017190191],[95.04180851600017,30.905767206000064],[95.03436253600012,30.823140080000087],[95.24406451100009,30.770081124000058],[95.2541355350001,30.705701402000045],[94.9880676090001,30.779062501000055],[94.9661866510001,30.906749229000013],[95.06758152700019,31.0284946970001],[94.9625546040001,31.10912491700003],[94.76094066400003,31.022264093000103],[94.63647459800012,31.060581628000136],[94.5960086140002,31.16137116400006],[94.48406963800005,31.22350101500018],[94.49056963600003,31.30799227600005],[94.55329862600007,31.345253021000076],[94.50382963900017,31.418151438],[94.3464585690001,31.42377720400009],[93.96327265600019,31.502121680000073],[93.85787156500004,31.473872487000108],[93.77089657900007,31.393778372999975],[93.70701558000013,31.457777053000143],[93.61978964000019,31.40541983000014],[93.40815764900003,31.37643487400004],[93.45059958300004,31.494794891000026],[93.31703965500014,31.489663154000084],[93.24403361400016,31.437637687000176],[93.1697156370002,31.50395044300012],[93.0927426090002,31.507696484000178],[93.03907060000017,31.223251067000092],[92.91839567000017,31.142805751000026],[92.82186162600016,31.174983710000163],[92.78163955500008,31.142805751000026],[92.7574995060001,31.022138029000132],[92.62878465400019,30.98191545500009],[92.48397855900015,31.062360771000158],[92.42328653900006,30.86164788500008],[92.37128454100008,30.769798822000155],[92.20907560400019,30.842729259000066],[92.05526751300016,30.791023310000185],[91.95842753000011,30.803347892000147],[91.85391257300006,30.77470273800003],[91.62602254000012,30.638801577000095],[91.33654060500004,30.619032523999977],[91.29103055900003,30.57509089900003],[91.18071750400009,30.57164409300009],[91.01177957500016,30.49924356000014],[90.83479351000011,30.38662062100019],[90.60149362900017,30.185508086000027],[90.61732452900014,30.027236128000027],[90.72789759000011,30.077788225000177],[90.8540725580001,30.072459346000073],[90.97123765100014,30.02496798499999],[91.23027064500019,30.04365024200007],[91.41991455800002,30.00631389200015],[91.52025566200012,29.963233424000066],[91.72035951900017,29.97897782399997],[91.86345654300015,30.014507538000032],[91.92511751100011,29.943127250000032],[91.78512564600015,29.87169382100018],[91.862014521,29.75090640600007],[91.71120463600005,29.78354922500006],[91.51213058000002,29.766591629000118],[91.29767657000008,29.616206539000075],[91.09693954400012,29.530483810000078],[91.03385952000014,29.457336449000138],[91.08576160500013,29.392652967000174],[91.23015564600018,29.456649636000066],[91.3058395380001,29.418124062000118],[91.52914450300011,29.387204395000026],[91.7011565790001,29.442742047000138],[91.74448364200003,29.362399326000116],[91.82865152900018,29.45556652700003],[91.71543163000001,29.47366288800015],[91.786865562,29.546867245000158],[91.88212555600018,29.549799067000095],[91.92785655000017,29.499927917000036],[91.86837755900018,29.36256512000017],[91.89850664500011,29.323370670000145],[92.01594565800013,29.438301482000156],[92.05758661800007,29.352140547000147],[92.31762661500005,29.44030039900008],[92.3613895370001,29.403041832999975],[92.34307859900008,29.314641253000048],[92.45469654800019,29.328358573000116],[92.54550960700004,29.23695224200003],[92.61453256800013,29.223836743000106],[92.68907953900003,29.301620469000056],[92.65773759100006,29.487969456000144],[92.77248366700013,29.388357242000097],[92.74130265100018,29.219672949000028],[92.7570646530001,29.145525795000083],[92.8446505120001,29.171605584000076],[92.87267255500007,29.29076808400015],[92.8270416420001,29.42042707400003],[92.87258957400019,29.480942571000185],[92.82376063000004,29.56689228200014],[92.90728763600004,29.57397599600006],[92.94400758100005,29.479677742000092],[92.91843456200019,29.144970578000027],[92.96333356700018,29.115006783000183],[93.17504853899999,29.16410612800007],[93.21647659900015,29.041992862000086],[93.3126606140001,29.051399537000123],[93.44142156700019,29.181300261000104],[93.54187063000006,29.236462236000136],[93.45870957700009,29.310934105000058],[93.51958465800016,29.391451170000153],[93.5861896080001,29.252384500000062],[93.72602054000004,29.19679068800008],[93.85471359900004,29.180566174000035],[93.96900956600001,29.269450893],[93.80090362500005,29.300319598000158],[93.6888736210002,29.348796670000127],[93.76527366300002,29.400478647],[93.94554157800019,29.410091517000126],[93.98912864800008,29.36948890700006],[94.10135663200015,29.446777933000135],[94.07270862800016,29.29930672900008],[94.14282961900017,29.271563635],[94.1980816160002,29.34671376700004],[94.27638250500019,29.39167396099998],[94.21518656500012,29.495117207000078],[94.23995961600019,29.57247831800015],[94.1787266280001,29.629324888000042],[94.00880466300015,29.625485306000144],[93.90656254300012,29.67787622400016],[93.82126662000007,29.642153391000193],[93.77271260200013,29.533793488000185],[93.71029659200019,29.583580819000133],[93.77591666800004,29.693142520000094],[93.69194056000003,29.748249342000122],[93.60108961400016,29.685486992000108],[93.56729160100014,29.808034105],[93.50939964000014,29.825377436000167],[93.363937577,29.799816655000086],[93.32986463800017,29.66086565500018],[93.13831350700008,29.664582526000117],[93.2097015060001,29.72249745400012],[93.23525256500005,29.82487971900008],[93.06515458000007,29.91951509400019],[92.87695352900005,29.889264302000072],[92.86263254400006,29.774117572000137],[92.62208566900006,29.761514039000133],[92.56592557700009,29.665177473000085],[92.48345150500006,29.661513911000156],[92.47354862200018,29.786671147999982],[92.34309351900004,29.90254073400007],[92.33488461800005,29.9496480360001],[92.59769466600011,29.89405707400016],[92.76174158700019,29.947098093000022],[92.81182865500017,30.010074517000135],[92.75073262800015,30.05110795600001],[92.68952964700014,30.15465513800018],[92.75856752800001,30.240533101000096],[92.82729360200017,30.264696284000138],[92.91917451600017,30.107840030000034],[92.98445864500013,30.06287564500019],[93.04184752500015,30.12929820500011],[93.01620460100014,30.197990584000024],[92.94652550400008,30.23042435800005],[92.87033853100019,30.33617346600016],[92.88738262800013,30.444058786000085],[93.08145855500004,30.25840935300016],[93.15867650300004,30.298279049000143],[93.23322263500012,30.254081777000067],[93.17724660900018,30.093243448000067],[93.21145650900007,29.987429464000115],[93.56812258300016,29.962903513000015],[93.31740560900005,30.045399210000028],[93.27326952500005,30.08586988800016],[93.32702652600017,30.274932934000162],[93.2265246560001,30.393095473000187],[93.25608863500008,30.429201192],[93.38619957700007,30.33759956300014],[93.397331582,30.200460730000145],[93.52528351400008,30.131347076999987],[93.58415263700005,30.21549786500009],[93.67034961500013,30.176986540000144],[93.63327763100006,30.04307826100012],[93.7211835110001,30.052446042999975],[93.74181355400003,30.134867978999978],[93.83187861300019,30.158438226000044],[93.88555162700004,30.22356762600009],[93.98783163300016,30.22295675300012],[94.03223459700018,30.154503426000076],[94.17538459500008,30.11021596400019],[94.113563533,30.030533904000038],[94.10276060100006,29.953048909000188],[93.97745550700012,29.962007320000055],[93.71793351200006,29.927910742999984],[93.71785757200018,29.894447839000065],[94.14694261900013,29.811933199000066],[94.22468560900006,29.872593703000177],[94.27948766500003,29.86369698300018],[94.35537758400005,29.760019043000057],[94.40795860400016,29.828984504000175],[94.47012366000013,29.79725447499999],[94.4751355350001,29.67140137200016],[94.57460056200011,29.71949153500003],[94.54184760500004,29.839489041000093],[94.4698336460001,29.89814593400007],[94.36226667000005,29.931002660000104],[94.42929054799998,30.050139008000144],[94.30427563500007,30.107264025000063],[94.35942051100017,30.197473588000094],[94.45145464700005,30.138657941000076],[94.50678258400012,30.15095335500007],[94.67529253300017,30.10920108300013],[94.8324736690002,30.04351629900009],[94.96454664700013,30.063981554000122],[94.75026664500018,30.243927939000116],[94.6360935570001,30.25541751700007],[94.29626454700013,30.377417962000038],[94.20854156000019,30.367382477000035],[94.17524763500012,30.417608685000175],[93.96489757200015,30.43082811900007],[93.86586756500009,30.37595515200013],[93.80543555200012,30.414907868000057],[93.67200453800001,30.37312810400016],[93.63681764400008,30.416971828000158],[93.89096851500005,30.493367846000183],[93.76207764300011,30.573871835000034],[93.60152463500003,30.553717549000112],[93.21807066900004,30.59600609400013],[93.18777461500014,30.671364601],[93.43502751600005,30.631661034000047],[93.45165251800017,30.681358009000178],[93.78110456299999,30.614781390000132],[93.98435951300007,30.52360589699998],[94.05537451700008,30.626082207000024],[93.84371956000012,30.680752165000115],[93.61791963700011,30.911995965000187],[93.51013154700007,30.872349396000118],[93.33295454300008,31.051995039000133],[93.53468365100008,31.07758113300008],[93.7576365760001,31.05754084100016],[93.70958765100005,31.130138349000163],[93.64376054200011,31.149056807000136],[93.501296519,31.123088497000026],[93.504585577,31.18473739500007],[93.68691259100012,31.219761345],[93.74820760500018,31.27654840400004],[93.98743466600007,31.268206566000117],[94.09724463800006,31.22154400900007],[94.25385262000009,31.272223510000117],[94.26415263800016,31.343331888000193],[94.3357845500002,31.346930742000097],[94.36660765800019,31.22118828100014],[94.31360653700006,31.123475574000167],[94.35671265400003,31.04225644100012],[94.32638558700012,30.982298340000057],[94.17491956700013,30.94530883400006],[94.20053064000012,31.05969968400018],[94.0161586100001,31.074508160000107],[93.98181962900009,31.136882093000168],[93.84703057900009,31.060836773],[93.80872360500013,30.940490916000044],[93.91155966600013,30.87111055000014],[94.08625763900005,30.88969473900005],[94.228736583,30.8698725430001],[94.37493859900019,30.97270290500012],[94.47653162500012,30.91695168200016],[94.50511961400002,30.853142935],[94.5075376260001,30.67030144000006],[94.48464966500018,30.61181872200018],[94.34159052700016,30.665167860000054],[94.18430361100013,30.578756808000037],[94.23121662000017,30.481304443000113],[94.33034553300007,30.519138845000043],[94.44218459700005,30.467035761999966],[94.60836052100018,30.57178490900003],[94.65089465700015,30.424844446000122],[94.78411059100017,30.469011712000054],[94.96687363100011,30.48673222800005],[94.95053864300019,30.37162237900003],[94.97336558300009,30.283673415000123],[95.11353262900008,30.289759348000132],[95.22544059200004,30.184085174000018],[95.17678062700008,30.12805516800006],[95.38411756300007,30.00541484900009],[95.49252356700009,29.960773336000102],[95.51900451400007,30.00790176000004],[95.35487360600007,30.067184446000056],[95.26869154800016,30.16891979600007],[95.20244551200011,30.37859913900013],[95.25166354400011,30.40750698200003],[95.24483464000014,30.527023702000065],[95.30802161700018,30.52245187600016],[95.38412460400002,30.40383202099997],[95.42980161800017,30.449526637000133],[95.37479353400016,30.555691655000032],[95.45925864300006,30.574815805000185],[95.57288355500003,30.41465372800019],[95.41498559800016,30.33563551500015],[95.4142075900001,30.24586198000003],[95.5371245120001,30.14405873600009],[95.6304546570002,30.152933495000127],[95.68732452900002,30.220440002000146],[95.68327355500008,30.323650064000105],[95.56235454400007,30.510699275000036],[95.61920966300005,30.521813008000095],[95.80689958600004,30.298686075000035],[95.75379151300012,30.126334364000115],[95.81237062200012,30.106175048000125],[95.88725253400008,30.156092299000193],[96.00769059200019,30.157007268000143],[96.08316057700011,30.005975766000063],[96.1065975520001,29.83398531500012],[96.14695759000017,29.750297377000038],[96.26026952100011,29.829030270000032],[96.33238255500015,29.848859841000035],[96.36511958600016,29.762074789000167],[96.41905964800009,29.756365204000133],[96.5170435930001,29.678181158000143],[96.53873461700016,29.61381065600017],[96.62957751700009,29.604911925000067],[96.61356355500004,29.683918906000088],[96.5448225610001,29.785884926000165],[96.6269836530002,29.81821795000019],[96.67728462700012,29.641970498000035],[96.75492066400017,29.59463135300018],[96.71925365500005,29.96582527600009],[96.76940157600018,30.00229309300005],[96.96749863700012,30.011409586000013]]],[[[93.74460556600013,31.924874534000026],[94.01139064800014,31.93533196400017],[94.19931057000008,31.91732361200019],[94.33813466800012,31.86234050700017],[94.4857026000002,31.847804946],[94.60120355000015,31.71741136600008],[94.65796663600008,31.618797772000107],[94.7564925550002,31.527640719000033],[94.71729257300018,31.449180238000167],[94.73147559200015,31.261858616000154],[94.77685555100015,31.167744092000135],[94.85945166300019,31.168295119000163],[94.86506653200013,31.278112132000103],[94.94220753400003,31.286309801000073],[94.94554152000018,31.194553107000104],[95.0587386200001,31.194212968999977],[95.02082056600017,31.341641929000104],[94.92444661700011,31.43919370300017],[94.84213263900017,31.655381259000023],[94.9432445430001,31.70111577300014],[95.01072657500015,31.676240799000027],[95.0242915120001,31.601317313000152],[95.12489362900004,31.55025710600006],[95.24102053900015,31.52698659600003],[95.40601360900007,31.433407843000168],[95.54217561500013,31.422934152000153],[95.49494157800007,31.31121696200006],[95.6009066040001,31.260628823000104],[95.44335951400018,31.19160619700017],[95.49139351900004,31.105337135000127],[95.58752456100012,31.05923683500015],[95.6802595910001,31.096867557000166],[95.83676967200006,31.085465822000117],[96.0036235250002,31.127805330000115],[96.13317053200018,31.044491391000122],[96.26573955100008,31.087452836000182],[96.40929456300006,30.950220629000114],[96.47274054100012,30.846843097000146],[96.65804262699999,30.633206992000055],[96.87649564399999,30.43330111600011],[97.28277554400017,30.136362808000115],[97.35926057800009,30.068742475000136],[97.55217762300009,29.849134600000127],[97.6305006410002,29.673634311000058],[97.86318160300016,29.425146756000117],[98.04717259199998,29.251068541000166],[98.2097396040001,28.934368890000144],[98.36045058200017,28.730878241000028],[98.47281653200008,28.686322894000057],[98.42031061400013,29.06266783200016],[98.32913964800008,29.267071940999983],[98.23137664900008,29.550903132000087],[98.08842463200011,29.74102263300017],[98.04541758900018,29.863542253],[97.80805952500015,30.103365099000087],[97.49017366800007,30.317461202000175],[97.27278163300008,30.559248431000128],[97.02751960199998,30.755534499000078],[96.82281458300014,30.9733598790001],[96.65063453400018,31.31890165800013],[96.5405425940001,31.396540210000182],[96.28969553300016,31.502948470999968],[96.30057557900011,31.66076931400005],[96.34429156300018,31.71775116800012],[96.49626954900003,31.731431943000075],[96.6797026390002,31.906559237000124],[96.58840158500004,32.03349997600009],[96.30787655200015,32.309808911000175],[96.25321967000008,32.40545195900006],[96.27703852400015,32.468549082000095],[96.36644761500014,32.45680318600006],[96.62532051600016,32.23796527200011],[96.669029626,32.43831488600017],[96.71235652200005,32.48315454800013],[96.85660555499999,32.46468502400012],[96.8832165890002,32.193334655000115],[96.92803965500019,32.10333363400002],[97.05941056400007,31.98874933000019],[96.9990615320001,31.824942634000024],[96.98307053700012,31.719721418000063],[97.03530152800016,31.600695376000147],[97.22476958800007,31.41803258300007],[97.28244764400006,31.19745609500012],[97.5046465320001,30.635709661000078],[97.56622351400006,30.544544897000037],[97.86186262700011,30.32243502400013],[98.10591866900012,30.190389036000113],[98.23843354100006,30.080832867000026],[98.40717365700004,29.897409836000122],[98.4862896030001,29.719926389000136],[98.72483052100011,29.299816851],[98.7719646450002,29.132857051000087],[98.88561252300013,28.894676723000032],[98.9721526560001,28.958678924000026],[98.96759055400014,29.174243704000048],[98.93066357700019,29.3620083940001],[98.82899461200009,29.54851915100005],[98.71258556700019,29.716433817000166],[98.76401558300012,29.824843509000118],[98.68919351900007,30.049404251],[98.74435465600004,30.20030868300006],[98.69477067000014,30.48911000700008],[98.58116956200013,30.777910828000074],[98.47006257400011,30.920159604],[98.36984267200012,31.01691627100007],[98.3624726320001,31.179423772000177],[98.32948263500015,31.409327641000118],[98.29326661100015,31.512621187000093],[98.21150164800008,31.64465778700003],[98.0292666680001,31.83505640599998],[97.88018060600007,31.93813604600018],[97.86399062400005,32.043006730000116],[97.96037262000016,32.153800906000185],[97.90239751000013,32.33400914200013],[97.90595965200015,32.40967073800016],[98.11517363200016,32.50118603300018],[98.21408863900012,32.43826895400008],[98.39746858700016,32.24054036000018],[98.23250552400015,32.1847829350001],[98.40538060100005,31.983334620000164],[98.49224863400013,31.86076655300019],[98.54405952400009,31.88278480700012],[98.54432657200016,31.998704181000107],[98.62680064300014,31.95812621400006],[98.71508052400014,31.842829113000164],[98.74269051300013,31.634656165000138],[98.83261056500004,31.54619992900018],[98.91236152300002,31.54122409600012],[99.00187656100019,31.620000575000063],[99.06996963400007,31.585970719000102],[99.11188451400017,31.485776130000147],[99.10070054099998,31.398542143000157],[99.2662966050001,31.409358822000115],[99.38012653900017,31.38230757000008],[99.49232451500006,31.31837393300009],[99.44329859600003,31.22341702900013],[99.27130160800004,31.200071920000084],[99.11940760800019,31.20019278700005],[99.07394366200009,31.133825045000037],[99.2956696440001,31.080873042000064],[99.42562065900012,30.996865082000056],[99.3430785270001,30.91110781900005],[99.10924555600013,30.927418500000044],[99.05805962000017,30.85345088600019],[99.25473058500006,30.64177262700008],[99.30284857700019,30.501986622000118],[99.30023157900018,30.257961424000143],[99.35968056200016,30.151403295000193],[99.44786053100012,30.219016755000098],[99.494583606,30.30565864400012],[99.57453154000012,30.376203256000053],[99.69966162000014,30.41242984200005],[99.81404157300017,30.336739580000142],[99.88114155800014,30.21097515700012],[99.71623951499998,29.881939357000192],[99.60065457900004,29.688631882000095],[99.6481625360002,29.501924989000088],[99.69079557800018,29.45635157600009],[99.72665352700011,29.317786981000097],[99.55915058000011,28.980796252000175],[99.47821056400011,28.870548576000033],[99.57691954400019,28.876638197000034],[99.66825060500008,28.837790758000153],[99.59242254400004,28.616756786000053],[99.64687356700006,28.580398269000057],[99.72293866800015,28.64563646500011],[99.77542161900004,28.75399519500013],[99.79372367200011,28.86926866000016],[99.92855865500007,28.996315681000056],[99.95745057200008,29.152738423000187],[99.94808161600008,29.295532693000098],[100.01731865100015,29.316415031000076],[100.07665263500013,29.24662479100016],[100.08644856500007,29.092609835000133],[100.11862166200012,29.03635284699999],[100.1280826520001,28.884866041000066],[100.0808635360001,28.809741892000034],[100.03386654000019,28.56768677700012],[100.04711162300015,28.479843426000116],[100.2053755340001,28.164169218000154],[100.30636556500019,28.015207542999974],[100.3710936390001,28.09294215100016],[100.33099360800014,28.21134743000016],[100.40892753800011,28.28503140000015],[100.50746955,28.219934020000096],[100.54740864900015,28.23903319200008],[100.5238345460001,28.434326172000056],[100.4847566050002,28.48964304500015],[100.55622054300005,28.545707582999967],[100.65982857800014,28.483498104000034],[100.65705064800017,28.630024165000066],[100.52064556700014,28.813373938000154],[100.50520358700004,28.903384347000042],[100.57234967200009,28.95049550400006],[100.5292586430001,29.02620253000015],[100.63220953700016,29.036048081000047],[100.7422176570002,28.913100817000156],[100.86276266800019,28.725702249],[100.96765866600003,28.425673533000122],[100.99685652300013,28.19502283600019],[100.89616354700001,27.911749712000017],[100.91699961700004,27.849742236000168],[101.05757167700017,27.99096439700014],[101.14482159000005,28.026825029000065],[101.25141157000007,28.028093043000183],[101.1482615230002,28.441329922000136],[101.04367867300016,28.700001488999987],[100.810218529,29.13747698900005],[100.58662455600006,29.56766643499998],[100.41093466900014,29.626749968000127],[100.3359835230001,29.697984410000174],[100.31258359600014,29.82279178700003],[100.4377136760001,29.834517063000078],[100.59259062700016,29.69064773000008],[100.676933528,29.675113214000135],[100.74533052800012,29.61609958600019],[100.76641051200005,29.469188293],[100.84202567199998,29.36545318800006],[100.91875462000007,29.48219767700016],[100.84989963200007,29.70200923200008],[100.83743255700017,29.83578926900003],[100.68167852300013,29.959943527000064],[100.58345753800006,30.073226290000093],[100.60352364600016,30.17885922500011],[100.4872586030001,30.23282527000015],[100.34404758400007,30.247980757000107],[100.23626653500014,30.32394192200013],[100.10642264100005,30.487292978000085],[100.07458465200017,30.606316841000137],[100.16902959000004,30.867036443000075],[100.15328954900019,31.023497909000014],[99.99824563000004,31.164948057000117],[99.93103064600007,31.29351756700015],[99.78492753600011,31.425008170000183],[99.72830962400013,31.55733478500008],[99.31582661300018,31.841070086000173],[99.27828255900005,31.928977308000185],[99.15419753500004,32.01747930900012],[99.09262055400018,32.08907098800012],[98.83107751400013,32.25402868700007],[98.86412065300004,32.31899480700014],[98.93731662900018,32.30790621900013],[99.181442576,32.1920837400001],[99.27272753700015,32.129703940000184],[99.4766996420002,31.950535730000126],[99.75412756200006,31.66037217900015],[100.06837466700017,31.462992776000135],[100.21447761000007,31.398709949000192],[100.26707455600007,31.322737720000134],[100.40196955300019,30.845369390000144],[100.2995376670001,30.659666984000182],[100.34850357100004,30.59855402500017],[100.50061063900012,30.491787857000133],[100.781562646,30.417995593],[100.93723252500007,30.35564479500016],[101.00729366900003,30.367958313000088],[101.04389157300017,30.46802767600019],[101.03930667200012,30.65324125000018],[101.08820367800007,30.72206170400011],[100.9724506,30.916253805000053],[100.7712555870001,31.10613911600018],[100.58366356500011,31.307982217000017],[100.516410527,31.359465543000113],[100.37827257100008,31.59504949300009],[100.37064353100016,31.671415840000066],[100.61578352100014,31.525973726000075],[100.91403158500015,31.15978832500008],[100.99668855000016,31.101155236000068],[101.2251205570002,31.022804055000165],[101.29955252800016,30.903091199000073],[101.31253056400016,30.748010903000193],[101.25821667000002,30.525100893000058],[101.23325351800014,30.345383334000132],[101.29362451100002,30.28495132000006],[101.37312367800007,30.148354629000153],[101.419021638,29.891552226000044],[101.48268856300012,30.025609033000137],[101.45381156600013,30.144472635000113],[101.4975275490001,30.20899836899997],[101.68007651599999,30.010217512000168],[101.73024757100012,29.866095884000174],[101.72832459500017,29.79086377600015],[101.67704059000016,29.725518459000057],[101.64101466800008,29.606881840000085],[101.56366763900013,29.551265900000033],[101.51446553200009,29.44335225000009],[101.56549053500015,29.394738888000177],[101.71816254300006,29.36749820500006],[101.73030859099998,29.323056851],[101.67028762600006,29.227757462000056],[101.51068864600006,29.241198012000154],[101.39661362600015,29.20866935400005],[101.36525759699998,29.109249086000148],[101.4274826670001,28.925344430000052],[101.45636754300017,28.622076612],[101.482810604,28.542539894000186],[101.56262157700007,28.581837106000023],[101.56716959800008,28.77196666599997],[101.65355667700015,28.78043909400003],[101.73374165100017,28.69147776400007],[101.90039065000008,28.85401024300006],[102.06983166100008,28.752953157000036],[102.1436995300001,28.818372570000065],[102.08812751200014,29.207824291000065],[102.00195366800006,29.643009351000103],[101.96706366100005,29.87195684600016],[101.90598255300011,30.167348692000132],[101.889045576,30.325540016],[101.84185060000004,30.522498983000105],[101.68151853800015,30.621861416000115],[101.62515258600001,30.716023046000146],[101.65660852800016,30.82817291000015],[101.79096959800012,30.978091631000098],[101.88793966800017,31.214989360000175],[101.86606558300014,31.419657331000167],[101.74108151600007,31.51334018700004],[101.56805455900002,31.551658895000116],[101.407386551,31.702698779000173],[101.350364631,31.729369995000184],[101.1889345400001,31.667707853000138],[101.02313261600005,31.634645101000103],[101.0158695290001,31.76604769400012],[101.05757167700017,31.83256061100019],[101.19531266600006,31.949867692999987],[101.18025155900011,32.03243580900005],[101.11008463600007,32.09408688700006],[100.98466454200002,32.13302669400014],[100.95929755000009,32.201707338],[100.96158564200005,32.350460639000175],[101.06449160900002,32.38682938100004],[101.28074655500018,32.15309112600005],[101.46306652800013,31.918235564000156],[101.57809457000002,31.842476235000106],[101.75012156600019,31.84061830200011],[101.8757326,31.866223507000143],[101.97320558400014,31.931502272000046],[101.97012355800001,32.004875944000105],[101.8598936520001,32.10906735900005],[101.75949856900007,32.1616126720001],[101.74092863000004,32.22028482100012],[101.628074518,32.30272134200004],[101.47570761100002,32.365074152000034],[101.4204405270001,32.45461031200017],[101.52264358700006,32.553068170000074],[101.76913457200004,32.47858154900018],[101.91585559700007,32.470726868000156],[102.09162159200008,32.32790158500006],[102.16439864000017,32.29490940800008],[102.35295055799997,32.12784299000003],[102.4194255880002,31.89314148700015],[102.43434856100009,31.770760671000062],[102.48674752500006,31.69796082400012],[102.62338260600012,31.684133366000026],[102.81360654600007,31.71054742500013],[102.88011963000008,31.676315733000024],[102.86042064800017,31.55305699700017],[102.80175067900012,31.508033436000176],[102.58892057800011,31.467770796000025],[102.41622956800006,31.475737460000175],[102.34751154100019,31.425572105000185],[102.2942735470001,31.312859144000072],[102.21935257600012,30.953409440000087],[102.36458564500015,31.033636827000123],[102.41095751900008,30.974188849000143],[102.40206163700014,30.86133373100006],[102.50187652500006,30.901035454000066],[102.60947451400006,30.866366561000063],[102.57962052100004,30.753676399000142],[102.30319256300015,30.589011396000103],[102.23646557300003,30.505003436000152],[102.33666954900019,30.172614539000165],[102.39587361300005,30.10326216900006],[102.41797652400004,29.989300305000086],[102.50546263900009,30.061887754000054],[102.56287364600007,30.188523056000065],[102.54918666900011,30.435627932000102],[102.7313846020001,30.630287073000147],[102.85424067100013,30.593137137000156],[102.91418452200008,30.663435656000047],[102.93727867700017,30.754908539000155],[103.00611857700011,30.88097420600019],[103.02740458800014,31.038481399000034],[102.87678564400005,31.113736808000112],[102.85143256600003,31.175006676000066],[102.94696765400005,31.372489009000105],[103.018127665,31.437166624000042],[103.08946252300018,31.410472777000166],[103.19976065800017,31.486100007],[103.24095167700011,31.606894128000192],[103.16744959400017,31.797916528000144],[103.00526462900012,31.959255424000048],[102.98786161900011,32.01462560600015],[103.09555851400017,32.20187950300016],[103.20967058200017,32.270751254000174],[103.34634354800005,32.19326558800003],[103.38802356700018,32.21572992700004],[103.40108458399999,32.326642455000126],[103.37013256300008,32.503982907000136],[103.519882639,32.90433747200018],[103.61544052600004,32.92686283100011],[103.71340167300013,32.84672613700019],[103.84947164500005,32.607822617000124],[103.98638953100016,32.73731246000017],[104.11248755300011,32.76706972500017],[104.11939960500001,32.83351256900005],[104.20526164200004,33.03923246900018],[104.28257765800015,33.136989432000064],[104.33052851500003,33.393916725000054],[104.28935962400016,33.584753215000035],[104.2243656760001,33.72198626000005],[104.15115360800007,33.68812018600016],[103.96163156800009,33.793727304000015],[103.87586257000004,33.885342680000065],[103.84397864900012,33.99682350100005],[103.75006059700019,34.08760286500018],[103.43578365200005,34.233119075000104],[103.35957354400011,34.256380197000055],[103.26231362800007,34.3671552620001],[103.06969464300005,34.493117832],[102.83853952200013,34.70902308500007],[102.74822954500002,34.817407464000155],[102.57495867400007,34.948226174000126],[102.41351366400005,34.95141079399997],[102.23140759700004,34.770552793000036],[102.0616306390001,34.70257337900006],[101.98266556800019,34.754364153000154],[101.99380461400006,34.81561859800013],[102.0892946080001,34.965166671000134],[102.10445361500012,35.066242030000126],[102.03690352200005,35.233454963000156],[102.08346566500018,35.324146653000184],[101.8184736400001,35.473419799000055],[101.57594260000013,35.582712273000084],[101.5169755760001,35.52737377400018],[101.402610542,35.19676988700007],[101.31880961500019,35.14048507200005],[101.20312459900009,35.1141719310001],[100.99501753400011,35.09663229600005],[100.78430956300019,34.930461568],[100.6106185920001,34.889740606000146],[100.43762164300006,34.895580278000125],[100.50215156799999,34.78771121900007],[100.714858622,34.72148982500005],[100.86189262700003,34.65322760600003],[100.94338953600015,34.589520280000045],[101.03679662700006,34.39930556000013],[100.87950853799998,34.43795853900019],[100.62094861700012,34.554799252000066],[100.51963051899997,34.580929668000124],[100.41063660800012,34.66652918300008],[100.11745456600005,34.82930507300006],[99.98434457900015,34.795543102000124],[99.81637559800009,34.785273091000136],[99.70964061100005,34.81935323900012],[99.45761857500014,34.9371253490001],[99.3322065280002,34.927535613000146],[99.24253860400017,34.95894880700013],[99.03900956600012,35.07583964400004],[98.91115553500009,34.938697291000096],[98.90779154199998,34.82263743599998],[98.94573960300005,34.73301762400007],[98.99433167500013,34.521326122],[99.07286859900006,34.30218193300004],[99.29809553500019,34.01637378700008],[99.39008356900013,33.94685579100019],[99.59692362600015,33.90087116100017],[99.78712460000014,33.968759213000055],[99.92553764900003,33.94393788300016],[100.20365154400014,33.92610555100015],[100.56320954199998,33.92827931400012],[100.74535366300017,33.99607248200016],[100.867111535,33.914473649000115],[100.9240796430002,33.83762903100012],[101.13536864700012,33.746159669000065],[101.21430153200004,33.6547771430001],[101.16891453200009,33.585340116000054],[100.93604263000014,33.58845717800017],[100.812263546,33.637847710000074],[100.70182761299998,33.51139831800003],[100.62044553500004,33.459729752999976],[100.35591853800008,33.46422664400018],[99.71933763400011,33.43810041900008],[99.43667555100012,33.521822891000056],[99.27583353500012,33.615925345000164],[99.08206958200009,33.640060532000064],[98.89814766000018,33.73910965000016],[98.76364862400004,33.86427024000005],[98.61910253600007,34.039371215000074],[98.53988651000014,34.10085549200011],[98.37358854500013,34.15046412100003],[98.28151652300016,34.21033773200014],[98.22030667000013,34.12650478600011],[98.28727757300004,33.996899441000096],[98.17909251600008,33.982472844000085],[97.90094760900013,34.08318593700011],[97.81237067300015,34.159835927000074],[97.59645854700017,34.087115038000036],[97.42752061800007,34.04689397300007],[97.19421352800015,33.95840353900013],[96.71957350800017,33.82969103400012],[96.42191351800011,33.76533092500017],[95.91509252200018,33.59639484000007],[95.68983457400014,33.45963788700004],[95.45653553000005,33.298746585],[95.18301357800004,33.12980949399997],[94.86122158600017,32.96087374399997],[94.45897656700015,32.61496031100006],[94.28601850900003,32.441999906000035],[94.31819965300014,32.35753345600017],[94.25383753300014,32.277087973000164],[93.97226761200011,32.26904218400017],[93.93204453500016,32.35753345600017],[93.64243351900018,32.37362302200006],[93.52175858800013,32.35753345600017],[93.35282166500008,32.38166780500018],[93.2723696440001,32.35753345600017],[93.28041861800011,32.28513292400015],[93.37695366700012,32.20468727200006],[93.34477252300007,32.07597141399998],[93.54589059000017,31.995528110000123],[93.62634261200009,31.987483495000163],[93.74460556600013,31.924874534000026]],[[103.5304485310001,33.615296367000155],[103.54817156200005,33.664801731000125],[103.65036054100017,33.66903174200013],[103.85961961500004,33.451410211000166],[103.82006055300019,33.26829462800009],[103.73321565400005,33.176718312000105],[103.541786564,33.11180114200016],[103.50898767400014,33.259463622000055],[103.50260954800018,33.420999828000106],[103.5304485310001,33.615296367000155]]],[[[104.796348593,36.47378586200006],[104.74233259200014,36.38359373400016],[104.6624295850001,36.32010718800012],[104.57711756900005,36.32165918100003],[104.45349153800004,36.201704926000104],[104.21240252100012,36.13304238700016],[103.98807563400015,36.205042768000055],[103.58095553300018,36.44095746800002],[103.2717206370001,36.60230809800004],[103.13902253700007,36.80000081700007],[103.10003662900004,36.91329062000017],[103.10958864600019,36.98520416400004],[103.18982659400012,37.03276492700019],[103.352577672,37.02453641300019],[103.50186154700003,36.97919216100007],[103.51783762200017,36.86548259100016],[103.632308604,36.87816642300015],[103.7360836060002,37.0591194750001],[103.83317554900015,37.15019773800003],[103.85649853000012,37.31083540300011],[103.78275253400017,37.34885974000002],[103.6501845210002,37.361463607000076],[103.49555953000004,37.34778769400015],[103.22192358300009,37.374913209],[102.84967052200011,37.471850255],[102.70539064300004,37.560601534000114],[102.61456266400006,37.64934091000009],[102.5417785750002,37.7880942650001],[102.3705825620001,37.939599680000185],[102.25092351800004,38.08567395600011],[102.16795357200016,38.12799318000009],[101.93159463200016,38.18588011200006],[101.70043951100007,38.202604020000024],[101.51659352900003,38.26360684100018],[101.4311755650001,38.26880663900016],[101.09229253799998,38.103945667000175],[100.82968164400006,37.90436819400014],[100.69499954700012,37.62603754300011],[101.10710855700012,37.387463936000074],[101.26353465200003,37.18299998000015],[101.32442465200018,37.04491080800017],[101.38181252600009,36.82505851600007],[101.4916535120002,36.614289861000145],[101.56320965100008,36.55391216300012],[101.75290653700011,36.46094227200018],[102.07592765200008,36.31938232100009],[102.17755856300005,36.30588946800009],[102.4125596360002,36.23268008200006],[102.6537775660002,36.09525022900016],[102.81355256600006,36.03917546499997],[102.90103164000016,35.979629922000186],[102.84584066300005,35.87697541200015],[102.63879357300004,35.864874459000134],[102.66515365200019,35.72966296100003],[102.7471385560001,35.66518047699998],[102.77772563000008,35.563074647000064],[102.67295854500014,35.489090605000115],[102.51657067200017,35.451531632000126],[102.56994663200015,35.26512414000007],[102.54000060600009,35.09406927800006],[102.69303152700013,35.01427942700013],[102.9450146710002,34.982084201000134],[103.0531616740002,34.91220108900018],[103.3808746420001,34.74786432200011],[103.43942257100014,34.68161191500013],[103.651588657,34.54522846000009],[103.76406860100013,34.498972927000125],[103.8595886020002,34.42864674800006],[103.97298452100017,34.408880041000145],[104.11473859700004,34.451798067000084],[104.36141951600007,34.55945707600017],[104.51924153300007,34.579674729000146],[104.46739158300005,34.76282082200004],[104.47418260100011,34.908081216000085],[104.38937366600004,35.014126373000124],[104.16396366999999,35.065662002000124],[104.1521076360001,35.12542564200015],[104.3147505880001,35.21092926900013],[104.49612457900014,35.2214081570001],[104.60594159300018,35.187503861000096],[104.68177065900005,35.220180208000045],[104.87190256600013,35.22071832600017],[104.91606865800014,35.19252797400003],[104.87123067200014,35.44910943000008],[104.7999035260001,35.5169937930001],[104.58776057400019,35.662731452000116],[104.51292459600006,35.840355045000024],[104.58239766500009,35.984241980000036],[104.74402657400015,36.04638541000014],[105.03928364000012,36.09456442200019],[105.14820060500006,36.14741198600012],[105.2182696270001,36.25504886699997],[105.23400866200018,36.33634192800014],[105.16590854900005,36.48416567600003],[105.0834046380001,36.53497660500011],[105.08272553600005,36.61868063700018],[105.1412965990001,36.69263031300011],[105.06521557200006,36.79763192299998],[105.0134735810002,36.811825671000065],[104.89868962000014,36.711127665000106],[104.796348593,36.47378586200006]],[[101.3815915790002,37.90258636900006],[101.37549558800004,37.99400476900013],[101.4336626440001,38.046996670000055],[101.63423957500004,38.12430044800004],[101.72653153800002,38.114226573999986],[101.75505867500004,38.04188588800014],[101.65116867300009,37.943788452000035],[101.45385766600003,37.885134575999984],[101.3815915790002,37.90258636900006]],[[102.34295664700005,37.60868482400008],[102.07405865500004,37.730371618000106],[102.07473758900011,37.82775558700018],[102.2414395620001,37.79770327900019],[102.43962061000013,37.71269887800014],[102.49026457200017,37.61208770900015],[102.44000953000017,37.578576357000145],[102.34295664700005,37.60868482400008]],[[102.83945465900013,36.500900313000045],[102.66578665400016,36.70391403100007],[102.49224856800004,36.77416058300008],[102.2790456410001,36.90128287300007],[101.91808367400012,37.14159991700012],[101.77075160900011,37.32973709800001],[101.83357967300003,37.38917283800009],[102.21432460800014,37.215389331000154],[102.39125853700011,37.08879007100012],[102.49376653100012,36.98408316900009],[102.577964593,36.99834983800008],[102.74747467100008,36.88367400300007],[102.81116456199999,36.81447351400004],[102.8764875830002,36.678547543000036],[102.90300759000007,36.52261296300014],[102.83945465900013,36.500900313000045]],[[104.09342962000005,35.58477237699998],[103.85433951900012,35.65129853600007],[103.76967659700017,35.76245313400017],[103.785377579,35.81813059600012],[103.90399156700016,35.847773867000114],[104.07132754700018,35.79112745700007],[104.19499967800004,35.691741555000135],[104.22422066900009,35.57490738000007],[104.09342962000005,35.58477237699998]]]]},"properties":{"objectid":664,"eco_name":"Southeast Tibet shrublands and meadows","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Palearctic","eco_biome_":"PA10","nnh":3,"eco_id":765,"shape_leng":179.585203805,"shape_area":44.2751549229,"nnh_name":"Nature Could Recover","color":"#D5642C","color_bio":"#D6C39D","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":461850.6621498856,"percentage":9.457748735679424}}, + {"type":"Feature","geometry":null,"properties":{"objectid":665,"eco_name":"Southeast US mixed woodlands and savannas","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Nearctic","eco_biome_":"NE08","nnh":4,"eco_id":400,"shape_leng":0.884986509594,"shape_area":0.0025345796395,"nnh_name":"Nature Imperiled","color":"#E8FC5F","color_bio":"#FEFF73","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":27.808861338477378,"percentage":0.0002624641800991482}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-81.40442138699996,30.957833186000187],[-81.50530323099991,30.877487709000093],[-81.43083957099998,30.83116042800009],[-81.40442138699996,30.957833186000187]]],[[[-81.35313956899995,31.311142360000133],[-81.38391230499997,31.314087814000118],[-81.40894866799988,31.135715045000097],[-81.29077590999992,31.216487795000035],[-81.27469408999997,31.289460539000174],[-81.35313956899995,31.311142360000133]]],[[[-81.10762133799994,31.853178855000124],[-81.1757122649999,31.816769754000063],[-81.13063951999993,31.72269700600009],[-81.03687585999995,31.812724302000163],[-81.10762133799994,31.853178855000124]]],[[[-80.72611215299992,32.27098805300011],[-80.78433943999994,32.22139713000007],[-80.72145760099994,32.16044257300018],[-80.66895758899994,32.22379713400005],[-80.72611215299992,32.27098805300011]]],[[[-80.66745759999992,32.502324471],[-80.64639394699998,32.26450623500011],[-80.5594121069999,32.353915350000136],[-80.45820298899991,32.40828809300007],[-80.55827574899996,32.49071538100014],[-80.66745759999992,32.502324471]]],[[[-80.74248489699988,32.53833356700011],[-80.80941218599997,32.47766991500009],[-80.75943943999994,32.36665171000004],[-80.67707577899995,32.380642625000064],[-80.70339397599997,32.525406292000184],[-80.74248489699988,32.53833356700011]]],[[[-89.81962007299995,37.08286214200018],[-89.91193632499994,37.077299963000144],[-90.08759039899996,37.01512832600008],[-90.20700804699993,36.94496582100004],[-90.2059495439999,36.88875349800014],[-90.04205689899999,36.79344292600007],[-90.06270979299995,36.64718626900009],[-90.13013334999988,36.50405767900003],[-90.20659916599993,36.508614892000026],[-90.28144383099988,36.42904216300013],[-90.35619039199997,36.420948127000145],[-90.50682048799996,36.24512945900011],[-90.61495648799985,36.19893797700007],[-90.70506693199997,36.012925495],[-90.75867103399997,35.977201029000184],[-90.8057064059999,35.80202691800014],[-90.7131352969999,35.75903566400018],[-90.68014113799995,35.69648651299997],[-90.71351078299989,35.59210615000006],[-90.81523594399994,35.07455602500016],[-90.72760729499998,34.98872047200007],[-90.67926105799995,35.16808907500007],[-90.70545303799997,35.31425446000014],[-90.66227927699998,35.499524333000124],[-90.66566178699998,35.82143832200006],[-90.55771783399985,35.93729855400011],[-90.44440072499998,36.15345866000018],[-90.28011856699999,36.27562470700019],[-90.1713146319999,36.434575301000166],[-90.05494651499998,36.47985411700006],[-90.0426151339999,36.67534233700019],[-89.90754597199992,36.83005376900013],[-89.83065307399988,36.88318500800017],[-89.84759471799993,37.003252029],[-89.81962007299995,37.08286214200018]]],[[[-75.84299109599988,39.580578743000046],[-75.70958220699998,39.68764801400005],[-76.05758672699994,39.57801741500003],[-76.2266228979999,39.48787883500012],[-76.36689844999995,39.450610835000134],[-76.38177688099995,39.41453769400016],[-76.54399812699995,39.401589877000106],[-76.65593859199993,39.271339361000116],[-76.7878383399999,39.20319368500003],[-76.91641593999992,39.108059978000085],[-77.22748584599998,38.68152426100005],[-77.33402964299995,38.59672579200014],[-77.35992137899996,38.532775966000145],[-77.52201143799994,38.35526479400011],[-77.56433620799999,38.19130001800016],[-77.52451340599998,38.002751180000075],[-77.5149146249999,37.826961443000016],[-77.54006528999997,37.762807052000085],[-77.51594537999995,37.657597288000034],[-77.54396853299988,37.55499964600011],[-77.50865814399998,37.37478803900012],[-77.54165675199994,37.28749200400017],[-77.5221519349999,37.16995599200004],[-77.59034417499993,36.91978662600013],[-77.56750968699993,36.84559497700013],[-77.5958187629999,36.689155874000164],[-77.69508019699987,36.50894448500003],[-77.77034176399991,36.44834845000014],[-77.74633865899995,36.39987560000014],[-77.78725504199991,36.30260860000004],[-77.85847660699994,36.23855575700014],[-77.87532764999992,36.16028882500018],[-77.95628381099988,36.1649058750001],[-78.04646055699993,36.002043408000134],[-78.12130933999993,35.95255987000019],[-78.13959918999996,35.844882564000045],[-78.10513120299993,35.720964288000175],[-78.20031342499993,35.72490050600004],[-78.33693890999984,35.63112751900013],[-78.42620926599994,35.635754747000135],[-78.44469074999989,35.55036167700018],[-78.66195565799995,35.59223928600011],[-78.78244800199997,35.641278116000024],[-78.86704684799997,35.61752717400003],[-78.90410730399992,35.42140923500011],[-79.06477121299997,35.49932280400003],[-79.18199510799997,35.41615693900019],[-79.33933005899996,35.35186484500014],[-79.39980293199994,35.358371790000035],[-79.53253678199997,35.28938571900011],[-79.6028909549999,35.36377126500008],[-79.79212147399994,35.28540367699998],[-79.7593447129999,35.16203841900017],[-79.80650735399996,34.98134842600007],[-79.91324847899989,34.98395882900019],[-79.93669590899998,34.85625657900016],[-79.99959752899986,34.88046326099999],[-80.10089780999994,34.84577315000007],[-80.06738710299993,34.74195577800009],[-80.21769974899996,34.74062479100019],[-80.37266733599995,34.77894996100008],[-80.46107454099985,34.723807202000046],[-80.57574913899992,34.6093068560001],[-80.52215295899992,34.55338566800003],[-80.61735779499998,34.43421827100019],[-80.58463172799998,34.395095642000115],[-80.64764053299984,34.312624299],[-80.82103375099996,34.27875580900013],[-80.87272974899997,34.184404440000094],[-80.97125759499994,34.22126235600007],[-80.99890474199998,34.095482469000046],[-81.0801784539999,34.020419652999976],[-81.2224043519999,33.96597626800008],[-81.27593401099989,34.01277510800014],[-81.51844056499988,33.939322504000074],[-81.625703161,33.87670962500016],[-81.7262127489999,33.87496116600016],[-81.89435419499989,33.810535508000044],[-81.87609923499991,33.71862320200012],[-81.97351935199993,33.63565507200002],[-81.98993059099996,33.507410696000136],[-82.04547597499999,33.482463510000116],[-82.14026689699989,33.52300016800018],[-82.2649387919999,33.41905978400018],[-82.39725168099983,33.42941370000011],[-82.58291431199996,33.401679591000175],[-82.63545167299998,33.33267901700009],[-82.73257375799994,33.31173037800005],[-82.78297002199992,33.251863099000104],[-82.91069600899993,33.251801667000166],[-82.94676968299996,33.11164465700011],[-83.26571302499997,33.006513042],[-83.36200190799991,33.022796723000056],[-83.42162313399996,32.96913302100006],[-83.51752290199994,32.96068614000012],[-83.58211224299998,32.85581889000014],[-83.69120220699995,32.85932320600017],[-83.83929717299998,32.79851301300016],[-83.84898129599992,32.766427828000076],[-84.01852674399993,32.75678676900009],[-84.09920258199998,32.69752095700005],[-84.21915299199998,32.65537092500006],[-84.35801381999988,32.6744659470001],[-84.53731440699994,32.62982626500013],[-84.67909081899995,32.54341134400005],[-84.83814247399988,32.54935286000017],[-84.99922050599997,32.50352699500007],[-85.05627701599985,32.546922166000115],[-85.29233257099997,32.524510503000045],[-85.49421181499997,32.561746668000126],[-85.48743858799992,32.620802738000066],[-85.68788671599992,32.57229354200007],[-85.92381457899995,32.60611835000009],[-86.11990957199987,32.66319838700019],[-86.25675158099989,32.617256209000175],[-86.38596735099998,32.738291073000084],[-86.5004927899999,32.748677150000105],[-86.52431128199987,32.80976652100014],[-86.65637922899998,32.89876018500013],[-86.71095964799991,32.978794611000126],[-87.0448256649999,32.98712493700015],[-87.14878952999999,32.97261588300012],[-87.1465331519999,33.113301507000074],[-87.39742055499994,33.1628483290001],[-87.47175777199999,33.215453935000085],[-87.56567832499996,33.475701818000175],[-87.66260970999997,33.57881008100003],[-87.65090013399993,33.712500348000106],[-87.70143520199991,33.93358361300017],[-87.76744888399998,33.99657054200014],[-87.76806536799984,34.10080850500003],[-87.70525305199999,34.16940710100005],[-87.56684736799997,34.23145208700004],[-87.62045612399993,34.2670934410001],[-87.71794375799993,34.25190100600008],[-87.68005140199995,34.38824847900014],[-87.76703083499996,34.42521639100016],[-87.71234712299997,34.5585384150001],[-87.90609366099989,34.65856794900003],[-87.89547712299998,34.72548600800019],[-88.03362576899991,34.7538236740001],[-87.99447919899995,34.82934180700005],[-87.79802708499989,34.980280063000066],[-87.6781839219999,34.99156487800002],[-87.67322320899996,35.07854528900003],[-87.72443544199996,35.13960404799997],[-87.92169196499998,35.12042375400017],[-88.05065056199999,35.221401566],[-88.10007807999995,35.30178382700012],[-88.06124739899997,35.348751775000096],[-88.11318489099995,35.46465108600012],[-88.1005757659999,35.52223739800007],[-88.12855482999998,35.72390249100016],[-88.11461791899995,35.805490449000104],[-88.05399868799992,35.84657650000008],[-88.08151918999994,36.012738382000066],[-88.00957908599992,36.05543369300017],[-88.04445532799997,36.11363913200012],[-88.05488486499996,36.26789783800007],[-88.18565089299989,36.40474630700004],[-88.24228674999995,36.50064422500003],[-88.21433882399998,36.575416599],[-88.2686955129999,36.75969168000006],[-88.27484251899995,36.87429881700007],[-88.36323620899998,36.948993008000116],[-88.33399404899995,37.01837370000004],[-88.49418190399996,37.019153461000144],[-88.55674306799995,36.931837120000125],[-88.66284716099995,37.08654047300013],[-88.74180356999995,37.09370120000011],[-88.80186969499994,37.16036017900018],[-88.98000836099993,37.198110845000144],[-89.05969751299989,37.09429589700005],[-89.09682652899994,36.95347320500014],[-89.09265862399997,36.799205938000114],[-89.12703821499997,36.70535214000017],[-89.09817301099997,36.59965239900015],[-89.17081002199996,36.57945001600007],[-89.3090254519999,36.47066914100003],[-89.30557928699989,36.434793047000085],[-89.41988101099992,36.27397074300012],[-89.37933429899994,36.17148782900006],[-89.48920759899994,36.11493003700008],[-89.44653352899991,36.009793767000076],[-89.5055689589999,35.90834603900004],[-89.67513512099993,35.75992746100019],[-89.83528187099989,35.597785922000185],[-90.07577317899995,35.30216595900009],[-90.03635388699985,35.19869794300013],[-90.12749624999992,35.05667079200015],[-90.1428817129999,34.90350169100003],[-90.19366292199993,34.83523790400005],[-90.15029734899991,34.77809776700008],[-90.21438404299994,34.64606736200017],[-90.1705684879999,34.47631722400013],[-90.02623565599993,34.32098668900005],[-90.06568721699995,34.261148650000166],[-90.08015264699998,34.07912646100016],[-90.06315448399982,33.898661634000064],[-90.00776504099997,33.745012382000084],[-90.04256220899998,33.708006466000086],[-90.0500090139999,33.528829536000046],[-90.07266840299997,33.45068970200015],[-90.15130453499995,33.35840132200019],[-90.14281269899993,33.24968913900017],[-90.1950283239999,33.18330277300015],[-90.19782870099982,33.101293392000116],[-90.29224187899996,32.98056287300005],[-90.34728817299987,32.95678914000007],[-90.58356300999998,32.61029245700007],[-90.7814925859999,32.52017829000016],[-90.87434215299999,32.36631230400019],[-90.94323555599993,32.2148428320001],[-90.94076365799998,32.15057942400006],[-91.04788036899998,32.039828066000155],[-91.05810373799994,31.98703033900017],[-91.17696969899998,31.911111771000037],[-91.21968688799984,31.77400996300014],[-91.34855504799992,31.69995093700004],[-91.42401725199983,31.546218646],[-91.4501632169999,31.38871559500012],[-91.3542386819999,31.339103461000036],[-91.41400001099993,31.234779325000034],[-91.54222722299994,31.103980788000115],[-91.56765120599988,30.936753089000092],[-91.36193779799993,30.760924915000032],[-91.18896538299998,30.510629436000045],[-91.18243419399994,30.41793835599998],[-91.01012719399989,30.32227532900015],[-91.01458915199987,30.224279965000164],[-90.95232154299998,30.16311883600008],[-90.87620617199997,30.15942545400003],[-90.83523688699995,30.24501215900011],[-90.68999560099996,30.328062213000067],[-90.60299296699992,30.314473722000116],[-90.51445014899991,30.407025725000096],[-90.17496312599991,30.412330168000153],[-89.93222815099995,30.27240248300012],[-89.85736106999991,30.273170344000164],[-89.69563416799997,30.184168409999984],[-89.4984327379999,30.181241846000148],[-89.32992360699996,30.302996423000025],[-89.00133261099995,30.386905544000058],[-88.85665075399999,30.39059645800006],[-88.74559617599994,30.347023725000042],[-88.6104052309999,30.375996463000092],[-88.4785597369999,30.318514636000145],[-88.33748697499993,30.404851023000106],[-88.20536875399995,30.361714655000014],[-88.10917781899997,30.370787387],[-88.10125964199995,30.50937832699998],[-87.99497780099989,30.67900564100006],[-87.91753232299999,30.63757836100018],[-87.9044868609999,30.538723795000124],[-87.93710504899991,30.482678327000087],[-87.90745958399992,30.41193285700001],[-87.75559589999989,30.291960108000183],[-87.66005950799996,30.249214648000134],[-87.51506856099991,30.3015055730001],[-87.4414230889999,30.3657419540001],[-87.38672307099995,30.323323764000122],[-87.17459574399993,30.428760158000102],[-87.09908663599992,30.51810563500004],[-86.93200476699991,30.45853290000008],[-86.94986840699994,30.395432885000105],[-86.71928652499992,30.410905623000133],[-86.60215921799994,30.401205624],[-86.49164100799999,30.46226927800012],[-86.42125007899995,30.450796551000053],[-86.25452275999999,30.48697838200019],[-86.24790457399985,30.428860188000044],[-86.337750052,30.38573290200003],[-85.92258629399993,30.237932882000166],[-85.74794987599995,30.14436923],[-85.77461352399996,30.246132888000034],[-85.68487713499997,30.226151069000082],[-85.68367712999998,30.116414680000048],[-85.5445043599999,30.026932846000136],[-85.48776797799991,29.961232833000167],[-85.3637315759999,29.898923731000025],[-85.30134064499993,29.799232801000073],[-85.31084973399987,29.689150958000084],[-85.10094967599991,29.718823698000108],[-84.99327691799994,29.714950973000043],[-84.79849504599986,29.76895099100011],[-84.53726770499998,29.90938739500018],[-84.45563131899996,29.928814675000183],[-84.3607676609999,30.059305617000177],[-84.20572216299996,30.105023813000173],[-84.00254937799991,30.100660182000183],[-83.92541298899994,30.034469261000083],[-83.77650385299995,29.978178342000092],[-83.6392947199999,29.887360144000127],[-83.53764922899995,29.723069200000168],[-83.40027645999999,29.65833282500006],[-83.39249463499993,29.52476006700016],[-83.29675823999997,29.444905505000122],[-83.22038549099989,29.42606914000004],[-83.15572183199998,29.317405480000048],[-83.0782581709999,29.26223274100016],[-83.07114907599993,29.201469091000035],[-82.83651264299993,29.15611454100008],[-82.75313079699998,29.063459976000104],[-82.7530035229999,28.99759632400003],[-82.63787621299997,28.89021448400007],[-82.66634893299982,28.449596196000186],[-82.70663075999994,28.394832545000043],[-82.75092342899995,28.238713879000045],[-82.80346713799997,27.962132439000072],[-82.84802917299987,27.87101405200019],[-82.6906034619999,27.71061420000018],[-82.62227617199989,27.78919603900016],[-82.62542470699992,27.874941880000108],[-82.72435802399997,27.94906880200017],[-82.676722596,28.006791137000107],[-82.54977734699997,27.967713874000083],[-82.39771541599998,27.8842647190001],[-82.45679214699993,27.699010464000025],[-82.54714556699992,27.650601648000134],[-82.54405226799997,27.602536536000116],[-82.64413762799995,27.449212333000162],[-82.58011157499988,27.41538800700016],[-82.44299427899995,27.056195865000177],[-82.28716695399999,26.842859452000027],[-82.17684895899998,26.830675172000156],[-82.18708064199996,26.93322994099998],[-82.08381203399989,26.899679541000125],[-82.03669870599992,26.821157328000083],[-82.07147597999989,26.73067761200008],[-82.03360540699998,26.550136719000022],[-81.93224036799995,26.475183697000034],[-81.84729360999995,26.47256629000009],[-81.80209910199994,26.09577998300017],[-81.79859423399995,26.09565499900009],[-81.77567856199988,26.125959633000036],[-81.77219392099988,26.143295451000142],[-81.7848888979999,26.17243031999999],[-81.80010655099994,26.387072133000174],[-81.75154882799995,26.519373875000042],[-81.64667934399995,26.416030729000056],[-81.54910577399994,26.38356230800008],[-81.58842169999991,26.27372419800008],[-81.39747457999982,26.274492836000093],[-81.35310141199983,26.321418861999973],[-81.20823781699988,26.24883835800017],[-81.16775303399993,26.2943276150001],[-81.22217266199993,26.38670931200005],[-81.10625192699996,26.422618221000164],[-81.05789427899998,26.336870078000175],[-80.97603004199993,26.31213574200018],[-80.92202349999991,26.38922649800014],[-80.96387930999998,26.46080115100017],[-80.99825593999992,26.64341945400008],[-81.15838577599999,26.761479899],[-81.1773941919999,26.864380816000107],[-81.13633542499997,26.965818266000156],[-81.01368985899984,27.020307859000127],[-80.82612393699998,27.201170074000117],[-80.75278771799998,27.200179686000013],[-80.63410370799988,27.072446153000044],[-80.57145608199988,26.937697534000108],[-80.37098773099996,26.751394091000066],[-80.30862847699996,26.676759675000085],[-80.21119721199983,26.668396905000066],[-80.14448082799998,26.703074137999977],[-80.0975956289999,26.82162481500012],[-80.04599243099995,26.85559573800009],[-80.09572086799994,27.02350500299997],[-80.18133907899983,27.16464139900006],[-80.31463003499994,27.423932370000045],[-80.40092292999998,27.698103118000063],[-80.60706650399987,28.088668889000076],[-80.74483928299992,28.396223506000126],[-80.67813013699998,28.41455882600019],[-80.60662106499996,28.549887183000124],[-80.62149896499994,28.62609291000018],[-80.7206029219999,28.707114491000027],[-80.81988476699996,28.652078112000083],[-80.84913152099989,28.74209775900016],[-80.76713020999995,28.757423593000112],[-80.97395360899998,29.083597624000106],[-80.99993938499995,29.212096424000094],[-81.22111839899992,29.692544278000184],[-81.32334056399998,29.876460647000044],[-81.31064859399993,29.976451141000098],[-81.38300317099998,30.26273302500016],[-81.39298499799997,30.397160329000087],[-81.47004866899994,30.694251304000147],[-81.53077596399999,30.834087699000065],[-81.46237595099996,30.99811501200014],[-81.45652140699997,31.086769578000144],[-81.40212140099999,31.30495144700012],[-81.30722137599997,31.381942377000144],[-81.34313957099988,31.440906026000164],[-81.28154864799995,31.545869688000096],[-81.17155770799997,31.556924240000114],[-81.13335770199996,31.69776972800014],[-81.18282135799996,31.79374247500016],[-81.08947587899996,31.8844152260001],[-80.9958122139999,31.856560677000175],[-80.86028490599995,31.97401525400005],[-80.90749401499988,32.05111527000008],[-80.90021219799996,32.11967892200005],[-80.7892939859999,32.18956075900019],[-80.75880307199992,32.277869871],[-80.82904855599992,32.46478809300004],[-80.77587581599988,32.5364244750001],[-80.58674848599998,32.49986083600004],[-80.50651209899996,32.51439720600018],[-80.41349388799995,32.470679017],[-80.3325756829999,32.478033567000125],[-80.19637564499999,32.55907904400004],[-80.01571195799994,32.61067906100004],[-79.90167556299997,32.67975180800016],[-79.85513918999999,32.76862455700007],[-79.61560275999989,32.89414277499998],[-79.61479367299995,32.96331551800006],[-79.52856637799994,33.03735190100019],[-79.41562088899991,33.01701553600003],[-79.36432996699989,33.07713373300015],[-79.19051173699995,33.1699428500001],[-79.20340265599992,33.302506516000165],[-79.09808445099986,33.465024738000125],[-78.99626549899995,33.57852898800013],[-79.11302240299995,33.556732997000154],[-79.19123416299993,33.48495336800005],[-79.42786417099995,33.36789044600016],[-79.33089045999992,33.330227447000084],[-79.37072668499997,33.230458755000086],[-79.45281296099995,33.2306607750001],[-79.55163836799994,33.06507186800019],[-79.69651745099998,32.96072446200009],[-79.7584535279999,32.96815951100018],[-79.87479397499999,32.92222032700005],[-79.8543245649999,33.02411245000013],[-79.93576385099988,33.11083000900004],[-79.9778595439999,33.026410906000024],[-79.96598553499996,32.9445906200001],[-80.16168885599996,32.82936660000013],[-80.21332639499997,32.73660926100018],[-80.39332622699999,32.69005208100003],[-80.59251113899984,32.75152073200019],[-80.56451962299991,32.67827499400005],[-80.6429663369999,32.66061682500015],[-80.69331108599988,32.55122160800005],[-80.88784082299998,32.59794602700009],[-80.89462599499996,32.36456577000007],[-80.87292250299998,32.27555233100014],[-81.00633626199988,32.17709823300004],[-81.10905892399995,32.25258794700005],[-81.13849701799995,32.49503406600019],[-81.28755992599986,32.597098440000025],[-81.37303031799996,32.722711785000115],[-81.43150402999999,32.88669592100007],[-81.21507399399997,32.98501951500003],[-81.14139486999989,33.046009542000036],[-81.14803664499993,33.17586274700011],[-81.11072488899987,33.25044370400013],[-80.95671958499992,33.393809573000055],[-80.80796236299989,33.451058227000146],[-80.69626099699997,33.44991514200018],[-80.52813751199994,33.40540575900013],[-80.45339660499997,33.42855730500003],[-80.33180231799997,33.37991371100014],[-80.16809257499989,33.39093882600008],[-80.1815087839999,33.52063464700012],[-80.1255334999999,33.67780023900008],[-80.17837601399998,33.69992279000007],[-80.1158048499999,33.7989085480001],[-80.19216121699998,33.90213649100002],[-80.15468251899995,33.94828530800004],[-80.13142139799999,34.08975369300015],[-79.96607035599993,34.096479331000126],[-79.82393437199994,34.147232585000154],[-79.65964219499989,34.042750986000044],[-79.51751294899998,34.01426103500006],[-79.4511554049999,34.054864247000125],[-79.34035975699999,34.02195512700001],[-79.27539272399991,34.12067097500011],[-79.15808145699998,34.21852856400017],[-79.0651761229999,34.14949878900006],[-78.85038030399988,34.11528548600012],[-78.73507091799996,34.19438440000016],[-78.64534095499994,34.32295002],[-78.49738847999998,34.41328385800011],[-78.43527936899994,34.50183599900009],[-78.46994681299998,34.568460434000144],[-78.60849384499988,34.64701846100007],[-78.75611687099996,34.75984854200016],[-78.79512406299995,34.86055601800018],[-78.7711040879999,35.01634925300016],[-78.55364681099996,34.86688248300004],[-78.42913559199991,34.748625178],[-78.23541810299992,34.72642194600019],[-77.968886162,34.91757362300012],[-77.8539646829999,34.95944660100008],[-77.72047965799999,34.95084362200015],[-77.67529154699997,35.05075332300015],[-77.6120352179999,35.09219446500009],[-77.63029769199989,35.162904296000136],[-77.5077975449999,35.21173957100001],[-77.42244211899998,35.351973894000025],[-77.4073062359999,35.478439742000035],[-77.49698161899994,35.632397401],[-77.44070117599995,35.70364961900009],[-77.44977953699998,35.768182543000194],[-77.4026819909999,35.854318929000044],[-77.42608467399992,36.013421268000116],[-77.38859391599988,36.078482106000024],[-77.27051549499993,36.155807807000144],[-77.3132494269999,36.241118715000084],[-77.53821741299993,36.38626192700008],[-77.41570052599997,36.39294058300004],[-77.07141556399989,36.37186524900011],[-77.07392084499998,36.533228711000106],[-77.17948515199998,36.62525979600014],[-77.12638872399992,36.69573727700015],[-77.09699888299997,36.82103921000004],[-76.97901818999998,36.91672917200009],[-76.82944708299993,37.13788541800005],[-76.76505124199997,37.1699288260001],[-76.69308390999998,37.22380745300018],[-76.6291725079999,37.205683218000104],[-76.49419807299995,37.2256247950001],[-76.49646220399995,37.24915598400008],[-76.49861861999995,37.4021380640001],[-76.49837006599995,37.402888357999984],[-76.49347361799994,37.41202365800001],[-76.49123566399993,37.41571928700017],[-76.43221111999998,37.512646792],[-76.4272358959999,37.526618414000154],[-76.41368840199993,37.58061040600012],[-76.40872518899988,37.65609625700006],[-76.40725181299996,37.65830054500003],[-76.40630355899998,37.65966033300009],[-76.40572263399997,37.66039849200018],[-76.40526891199994,37.66097500500018],[-76.32572675199998,37.863272649000066],[-76.3498820129999,37.90760232200006],[-76.56335238099996,37.99353312100004],[-76.59775096199996,38.068696110000076],[-76.72725429499991,38.10214647700013],[-76.73043630699993,38.106618081000136],[-76.76975255799994,38.157590261000166],[-76.77180765499998,38.15981784600018],[-76.79092196899995,38.16899854800005],[-76.82826042199997,38.163402272999974],[-76.83882755199988,38.16348373500017],[-76.85831008899993,38.17049977500017],[-76.86033529699989,38.17096851500003],[-76.88086387599998,38.17492805600017],[-77.01112725199988,38.199587594000036],[-77.01168957599998,38.20021749100016],[-77.02587386599993,38.267661167000085],[-77.02700253899997,38.26970420200007],[-77.11768228199998,38.34319217100011],[-77.20384105499988,38.357548701000155],[-77.15134644499994,38.441420951000055],[-77.02189517699998,38.45718110900003],[-76.98610998799995,38.379197647000126],[-76.85988262099994,38.30804976600007],[-76.81964768599994,38.29656945400018],[-76.71785179099999,38.284910689000185],[-76.70890587999992,38.282442270000104],[-76.6540962069999,38.26414813500003],[-76.64733390299995,38.261459494000064],[-76.55896037799994,38.20977914700012],[-76.55809774999994,38.20919477500007],[-76.44412366999995,38.18579776200016],[-76.43651523099993,38.186855157000025],[-76.45151084799988,38.28716797900006],[-76.45396645799997,38.288799435000044],[-76.51108256599986,38.32409029600012],[-76.51217767599996,38.32482533900014],[-76.53224349699985,38.35358100900015],[-76.53100617699988,38.354676108000035],[-76.53485623099994,38.372597604000134],[-76.53541911699995,38.37303772200016],[-76.55117244799999,38.38307860500004],[-76.56271120699995,38.38545995200019],[-76.58331603399995,38.38844826800016],[-76.5853404529999,38.38927964000004],[-76.69394903299991,38.49509562200018],[-76.6936312389999,38.4971818680001],[-76.69367701299996,38.53766565600006],[-76.69275047199994,38.54435264300014],[-76.63256856199996,38.56415633000006],[-76.6017244059999,38.45769156900019],[-76.59659866899989,38.45214941400019],[-76.54080866699996,38.42577388000012],[-76.53878785599989,38.42547246600003],[-76.53815167699992,38.42537756900009],[-76.53673317399989,38.42516596299998],[-76.49325804399996,38.393789507000065],[-76.48987224099994,38.39124180800019],[-76.47022303699998,38.37380352900004],[-76.46960327099993,38.37287182200009],[-76.44968399499999,38.35001642200018],[-76.44931183899996,38.34992590200011],[-76.43466825099989,38.343044432000056],[-76.43438443299993,38.342901847000064],[-76.43131538299986,38.34135993600012],[-76.42990678599995,38.340652201000125],[-76.40988835199994,38.33507175200015],[-76.38193842399994,38.38646225100007],[-76.51788392999993,38.53693500400004],[-76.53275666999997,38.69445471100005],[-76.54791261699995,38.73013801500019],[-76.55396103899989,38.75307110100016],[-76.55016530699999,38.87584812800009],[-76.54958048399999,38.8795905500001],[-76.54780235099997,38.882734586000026],[-76.45049302299998,38.94077145200015],[-76.47488344299995,38.989374798000085],[-76.46557064999996,39.00296003700015],[-76.46527236999998,39.00330261200003],[-76.46348099099998,39.01031647000019],[-76.46227323799997,39.011083678000034],[-76.41083807099994,39.030551893000165],[-76.48787485999998,39.061162384000056],[-76.43078393799993,39.1313078550001],[-76.52399306099994,39.176171496],[-76.57096244299998,39.27594723200008],[-76.54004929299998,39.26619342100008],[-76.5395578479999,39.26590167200004],[-76.48400049699995,39.321931623000125],[-76.4839549219999,39.319961572000125],[-76.39594213099997,39.37746245100004],[-76.39441495499989,39.38143715000018],[-76.35493432799996,39.39961367400008],[-76.35486339499988,39.39962464600012],[-76.35253234599992,39.399656090000065],[-76.35091642499998,39.399640213000055],[-76.34809289199995,39.39961278000004],[-76.34739301899987,39.39960599500006],[-76.08572491499996,39.53991234500006],[-75.97022018299992,39.557607958],[-75.89861106699993,39.51474431500009],[-75.84324189699987,39.57971773500003],[-75.8431511359999,39.58002932100004],[-75.84299109599988,39.580578743000046]]]]},"properties":{"objectid":666,"eco_name":"Southeast US conifer savannas","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Nearctic","eco_biome_":"NE08","nnh":4,"eco_id":399,"shape_leng":184.970140818,"shape_area":49.8974918189,"nnh_name":"Nature Imperiled","color":"#FFAA01","color_bio":"#FEFF73","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":522828.9982184536,"percentage":4.9345380481148045}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-3.007673541999907,36.73829123400009],[-2.905181472999914,36.744437013000095],[-2.856027478999977,36.7013808530001],[-2.703961481999897,36.68872837000015],[-2.604064450999942,36.74415823100014],[-2.577885420999962,36.805062816000145],[-2.361646567999856,36.82973528300005],[-2.219105430999889,36.72363145300011],[-2.090451431999895,36.763238628000124],[-2.00705752999994,36.87866933700002],[-1.926999457999955,36.92470040200004],[-1.832311444999959,37.17639302900017],[-1.678785487999903,37.35562276200005],[-1.536136559999875,37.42003651400006],[-1.327347542999973,37.548188773000106],[-1.206180426999936,37.560727598000085],[-1.152918460999899,37.52874544000014],[-0.984824421999974,37.58775403900012],[-0.927897552999923,37.54854383100019],[-0.785070425999947,37.64548104400012],[-1.035995437999873,37.588334066000016],[-1.338120467999943,37.56966136500006],[-1.444330580999974,37.53682928300009],[-1.613010514999871,37.41648141400009],[-1.826781567999944,37.35429573900012],[-1.939823434999823,37.27678610100014],[-1.968816437999919,37.22077621200009],[-1.941939529999956,37.1037055000001],[-2.015970509999875,37.00365575100005],[-2.151278567999896,36.94994988000002],[-2.209620469999891,36.984452978000036],[-2.358350467999969,36.958654654000156],[-2.418059458999835,37.027230189000136],[-2.670354576999955,36.98268624100018],[-2.583266434999871,36.914229393000085],[-2.629178476999925,36.83957295500011],[-2.730674439999916,36.80870575900019],[-2.796200470999963,36.776815467000176],[-2.946758562999946,36.770799607000185],[-3.007673541999907,36.73829123400009]]],[[[-1.204253427999845,37.86243789100013],[-1.29624347399988,37.769890615000065],[-1.262546546999943,37.68664842600015],[-1.173354546999974,37.64783485000015],[-1.115811440999892,37.683306394],[-1.097328505999883,37.772408539000025],[-0.984084467999878,37.846458295000104],[-0.994218523999848,37.92009985200008],[-1.204253427999845,37.86243789100013]]]]},"properties":{"objectid":667,"eco_name":"Southeast Iberian shrubs and woodlands","biome_num":12,"biome_name":"Mediterranean Forests, Woodlands & Scrub","realm":"Palearctic","eco_biome_":"PA12","nnh":3,"eco_id":803,"shape_leng":7.26011691968,"shape_area":0.29093708073,"nnh_name":"Nature Could Recover","color":"#C63901","color_bio":"#FE0000","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":2873.087375696319,"percentage":0.08697380700146712}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[38.34,-5.754166666999936],[38.49250000000018,-5.67],[38.3975,-5.533333332999973],[38.295000000000186,-5.502499999999884],[38.16000000000014,-5.575833332999935],[38.11083333300019,-5.646666666999977],[38.34,-5.754166666999936]]],[[[34.80083333300007,-5.458333332999928],[34.72666666600003,-5.323333332999937],[34.672500000000184,-5.321666666999931],[34.68083333400011,-5.428333333999944],[34.80083333300007,-5.458333332999928]]],[[[34.87500000000017,-5.124999999999886],[34.7825,-5.234166666999954],[34.76250000000016,-5.314999999999884],[34.91416666700013,-5.300833332999957],[34.93583333400005,-5.2575],[34.87500000000017,-5.124999999999886]]],[[[38.724166667000134,-4.401666666999972],[38.675833334,-4.554999999999893],[38.78,-4.525833333999969],[38.724166667000134,-4.401666666999972]]],[[[37.818333333000055,-3.82],[37.83166666700015,-3.928333332999955],[37.895,-4.001666666999824],[38.03250000000014,-3.843333333999965],[37.9275,-3.869166666999945],[37.885,-3.805],[37.818333333000055,-3.82]]],[[[36.23416666700007,-3.648333332999925],[36.100000000000136,-3.621666665999896],[36.101666667000075,-3.679166666999947],[36.23416666700007,-3.648333332999925]]],[[[32.7475,-2.86083333299996],[32.639166666000165,-2.914166665999971],[32.562500000000114,-2.9175],[32.5275,-2.864999999999839],[32.36000000000013,-2.915833333999842],[32.4516666670001,-3.0025],[32.550833333000185,-2.965833332999978],[32.65333333400014,-3.069999999999879],[32.66666666700013,-3.126666666999824],[32.77,-3.082499999999868],[32.74000000000012,-2.989999999999895],[32.7475,-2.86083333299996]]],[[[32.90666666599998,-1.880833332999941],[32.84666666600015,-2.056666665999899],[32.975833334000185,-2.083333332999928],[33.14833333400003,-2.168333333999897],[33.09666666700019,-1.9625],[32.95333333400015,-1.96666666699997],[32.90666666599998,-1.880833332999941]]],[[[33.92666666700018,-1.328333333999979],[33.84333333300009,-1.319999999999879],[33.79416666700007,-1.39249999999987],[33.83166666600016,-1.427499999999895],[33.92916666700012,-1.479166666999845],[33.98750000000018,-1.4175],[33.945000000000164,-1.34583333299986],[33.937500000000114,-1.340833332999978],[33.92666666700018,-1.328333333999979]]],[[[34.24666666700017,-1.164166666999961],[34.16666666600008,-1.17583333399989],[34.103333333000194,-1.139166665999937],[33.98750000000018,-1.21],[34.07250000000016,-1.244166666999945],[34.25083333300012,-1.25],[34.25250000000011,-1.344166666999968],[34.27500000000015,-1.391666666999868],[34.375,-1.334166666999977],[34.340000000000146,-1.2125],[34.24666666700017,-1.164166666999961]]],[[[36.715833333000035,-1.369166665999899],[36.65583333300003,-1.43666666699994],[36.5783333330001,-1.084166666999977],[36.598333333000085,-0.9725],[36.52250000000015,-0.866666666999947],[36.44583333300017,-0.714166666999915],[36.43333333400017,-0.605],[36.36083333300019,-0.494166665999899],[36.30583333300012,-0.464166665999812],[36.16416666600014,-0.2875],[36.090000000000146,-0.27],[35.98666666700018,-0.30833333299995],[35.975,-0.3925],[36.04666666700007,-0.495],[36.12416666700011,-0.598333332999914],[36.2683333330001,-0.586666666999974],[36.274166667000145,-0.681666666999945],[36.22,-0.696666666999874],[36.196666667000045,-0.778333332999921],[36.250000000000114,-0.959166665999874],[36.15416666600015,-1.119999999999891],[36.16583333400018,-1.2325],[35.96,-1.201666665999937],[35.849166666000144,-1.159166666999965],[35.84833333400013,-1.098333332999971],[35.73000000000013,-1.029166665999981],[35.59750000000014,-0.97833333299991],[35.52250000000015,-0.975],[35.37833333300006,-0.924999999999898],[35.315833333000114,-0.975],[35.26000000000016,-0.955],[35.17916666600013,-0.99166666699989],[35.11083333300007,-0.914166666999904],[35.03833333400007,-0.93333333399994],[34.965833333000035,-0.998333333999938],[34.909166667000136,-1.117499999999893],[34.96916666699997,-1.129999999999882],[34.97916666700013,-1.2325],[34.94916666600011,-1.314166665999949],[34.770833333000155,-1.434166665999953],[34.66666666700007,-1.484166665999908],[34.625,-1.425833333999947],[34.50833333400004,-1.415833332999966],[34.4825,-1.4075],[34.4825,-1.4175],[34.49083333300007,-1.425833332999957],[34.55083333400006,-1.44],[34.4825,-1.475],[34.3841666670001,-1.430833332999839],[34.152500000000146,-1.494166665999899],[34.11083333300007,-1.54],[33.9591666660001,-1.520833333999974],[33.92333333300007,-1.529166665999981],[33.937500000000114,-1.586666666999861],[34.040000000000134,-1.674166666999895],[34.06333333400005,-1.755833333999874],[34.03083333400019,-1.803333332999955],[33.94416666700005,-1.738333333999833],[33.87583333300012,-1.780833333999908],[33.823333333000164,-1.700833332999935],[33.7075,-1.66916666599991],[33.54,-1.68333333299995],[33.568333333,-1.760833332999937],[33.503333334000104,-1.835833333999972],[33.37666666600012,-1.791666666999902],[33.32166666699999,-1.844166666999968],[33.318333333000055,-1.943333332999885],[33.4533333330001,-1.874166665999894],[33.575833333000105,-1.985],[33.490833333000126,-2.02],[33.420000000000186,-1.963333332999923],[33.35333333400007,-2.012499999999875],[33.235,-2.045833332999905],[33.354166667000186,-2.163333332999969],[33.46666666700003,-2.146666666999977],[33.60666666600014,-2.184166666999886],[33.753333333000114,-2.07],[33.81916666700016,-2.118333332999896],[33.84083333400008,-2.229166666999959],[33.53583333300003,-2.37],[33.42833333300018,-2.4775],[33.44583333300005,-2.535],[33.205833333000044,-2.520833333999974],[33.141666667000095,-2.4675],[33.13333333300017,-2.40083333299998],[33.0750000000001,-2.383333332999939],[33.15,-2.524166665999871],[33.141666667000095,-2.615833333999831],[33.025,-2.7325],[32.975000000000136,-2.850833332999969],[32.84666666700002,-2.845833332999916],[32.8125,-2.959166665999931],[32.763333333000105,-3.011666666999929],[32.77,-3.09166666699997],[32.7575,-3.168333332999964],[32.695,-3.206666666999979],[32.705,-3.331666666999979],[32.64833333400014,-3.489999999999895],[32.4425,-3.595833332999916],[32.43583333300006,-3.649166666999918],[32.477500000000134,-3.761666666999929],[32.45083333300005,-3.864999999999895],[32.55750000000012,-3.956666666999922],[32.7083333330001,-3.969166666999968],[32.77250000000015,-3.921666666999897],[32.86,-3.968333332999975],[32.92666666700006,-3.940833332999944],[33.10083333400007,-4.052499999999895],[33.183333333,-3.9825],[33.32416666600017,-4.01833333299993],[33.27333333299998,-4.13666666599994],[33.226666667000075,-4.181666665999956],[33.35083333300008,-4.278333332999864],[33.350000000000136,-4.353333332999966],[33.441666667000106,-4.351666666999961],[33.4583333330001,-4.458333332999871],[33.425000000000125,-4.6125],[33.47916666599997,-4.685833332999891],[33.55166666700018,-4.7725],[33.48583333300013,-4.841666665999981],[33.47833333300008,-4.944166665999944],[33.43166666600018,-4.961666666999974],[33.414166667000075,-5.052499999999895],[33.490833333000126,-5.16],[33.49166666700012,-5.24916666699994],[33.413333333000026,-5.34],[33.44333333300011,-5.380833332999941],[33.5225,-5.301666666999893],[33.57416666600011,-5.330833332999873],[33.6375000000001,-5.2575],[33.73916666700018,-5.211666665999928],[33.86583333400006,-5.202499999999873],[33.955000000000155,-5.254166666999936],[34.0091666670001,-5.384166665999885],[34.05500000000012,-5.365],[34.19500000000011,-5.388333332999935],[34.17083333300013,-5.285],[34.27333333300015,-5.291666666999902],[34.305,-5.223333332999971],[34.233333333000076,-5.121666665999953],[34.09583333400002,-5.1075],[34.01833333400015,-5.075833333999981],[33.93166666700017,-5.085],[33.955000000000155,-4.986666666999952],[33.89666666600016,-4.93333333399994],[33.852500000000134,-4.841666665999981],[33.891666667000095,-4.742499999999893],[33.8925,-4.64666666699992],[34.004166667000106,-4.4225],[33.98833333300013,-4.285],[33.954166666000106,-4.19416666699982],[34.02333333300004,-4.096666666999965],[34.176666666000074,-4.054166666999947],[34.21916666700014,-3.985833333999835],[34.3391666660001,-3.868333332999839],[34.449166667000156,-3.880833332999885],[34.53250000000014,-3.82666666699987],[34.756666666000115,-3.64249999999987],[34.93500000000017,-3.58833333299998],[35.04500000000013,-3.515833332999932],[35.079166667000095,-3.524166665999871],[35.185000000000116,-3.447499999999877],[35.288333334000185,-3.330833333999919],[35.340000000000146,-3.413333332999912],[35.333333333000155,-3.475833332999969],[35.368333333000066,-3.550833332999957],[35.29583333300019,-3.663333332999969],[35.1725,-3.7125],[35.02416666700003,-3.748333332999948],[34.78,-3.850833332999969],[34.753333333000114,-3.924166666999895],[34.6425,-3.931666665999899],[34.54166666600008,-4.071666666999931],[34.54583333300013,-4.30833333299995],[34.5025,-4.3475],[34.52,-4.448333332999823],[34.49583333400017,-4.555833332999839],[34.541666667000186,-4.589166666999972],[34.64166666700015,-4.535],[34.658333333000144,-4.391666666999868],[34.73333333300013,-4.324999999999875],[34.81833333300011,-4.4025],[34.81500000000011,-4.499166665999894],[34.87416666600012,-4.583333333999974],[35.08,-4.400833332999923],[35.125000000000114,-4.519166666999865],[35.08833333400014,-4.565],[35.11916666600007,-4.6825],[35.011666667000156,-4.730833333999954],[34.9,-4.730833332999964],[34.81916666700016,-4.703333333999922],[34.8025,-4.645833332999871],[34.605,-4.651666666999972],[34.54666666700018,-4.704166666999868],[34.604166666000026,-4.766666666999924],[34.623333334000165,-5.029166666999913],[34.66250000000019,-5.110833333999949],[34.65666666599998,-5.185833332999948],[34.6475,-5.290833333999899],[34.7325,-5.2775],[34.69833333300005,-5.199166666999872],[34.731666666000024,-5.161666666999963],[34.6991666670001,-4.999166666999884],[34.75,-4.958333332999871],[34.99666666700017,-4.975833332999912],[35.01666666700015,-5.095833333999906],[34.92,-5.140833333999979],[34.975833333000026,-5.303333332999955],[35.09416666600015,-5.346666666999965],[35.138333333000105,-5.3525],[35.13916666600005,-5.456666665999876],[35.19416666700016,-5.51749999999987],[35.11083333300007,-5.696666666999874],[35.02333333299998,-5.780833332999975],[34.99333333400017,-5.886666666999872],[35.04166666700007,-5.941666666999936],[34.975,-6.015833332999875],[34.860000000000184,-6.013333332999878],[34.89166666600016,-6.226666666999961],[35.040000000000134,-6.250833333999879],[35.09416666600015,-6.324166666999929],[35.10583333400018,-6.41083333399996],[35.0208333330001,-6.448333332999937],[34.9466666670001,-6.43],[34.9433333340001,-6.5125],[34.78166666700014,-6.471666666999909],[34.78416666700008,-6.405833332999975],[34.675,-6.286666666999906],[34.65333333400008,-6.206666666999922],[34.59583333300003,-6.214166665999926],[34.55250000000012,-6.2775],[34.579166666000106,-6.334166666999977],[34.54750000000013,-6.55833333299995],[34.63916666700004,-6.501666666999938],[34.73083333400018,-6.502499999999884],[34.77333333400014,-6.575833333999924],[34.915,-6.615833333999944],[34.9591666660001,-6.684166666999943],[34.98,-6.8325],[34.82666666700004,-6.79833333299996],[34.79916666600013,-6.900833333999969],[34.60666666700001,-7.054166665999901],[34.54833333400012,-7.18333333399994],[34.430833333000066,-7.31],[34.37750000000017,-7.438333332999946],[34.393333333000044,-7.5125],[34.466666666000094,-7.5],[34.48916666700006,-7.41],[34.56916666700005,-7.458333332999928],[34.59083333400014,-7.605833332999907],[34.499166667,-7.645833333999917],[34.455,-7.748333332999948],[34.411666667000134,-7.718333332999919],[34.34500000000014,-7.880833332999885],[34.3858333340001,-7.971666666999965],[34.28833333300014,-7.960833332999869],[34.21166666700009,-7.905833332999919],[34.135000000000105,-7.920833333999894],[34.31416666700011,-8.033333332999973],[34.289166666000085,-8.0875],[34.135000000000105,-8.193333332999885],[34.08333333300004,-8.18666666699994],[34.086666666999974,-8.0875],[34.025833333000094,-8.07333333299988],[34.00083333300017,-8.0075],[33.905,-8.0175],[33.92750000000012,-8.140833333999922],[34.0425,-8.19],[33.74166666700012,-8.32999999999987],[33.7425,-8.225833332999969],[33.68416666700011,-8.2275],[33.65333333299998,-8.32],[33.731666666000024,-8.39333333299993],[33.80416666700006,-8.396666666999977],[33.7875,-8.481666666999956],[33.68166666700006,-8.4875],[33.6625,-8.604166666999959],[33.607500000000186,-8.769166666999979],[33.70583333300016,-8.814166665999892],[33.7558333340001,-8.793333333999897],[33.998333334000165,-8.875],[34.12833333400005,-8.855],[34.199166666999986,-8.89],[34.22833333300008,-8.826666666999927],[34.301666667,-8.77916666699997],[34.428333333000126,-8.832499999999868],[34.48000000000019,-8.825833333999924],[34.5766666670001,-8.8725],[34.685,-8.83083333299993],[34.84250000000014,-8.6625],[34.780833333000146,-8.626666666999881],[34.7975,-8.534166666999909],[34.586666666000156,-8.493333332999896],[34.721666667000136,-8.44499999999988],[34.683333333000064,-8.363333332999957],[34.7558333340001,-8.316666666999879],[34.899166667000145,-8.270833333999974],[34.9558333330001,-8.321666666999874],[35.138333333000105,-8.268333332999873],[35.05583333300018,-8.2675],[34.97666666600014,-8.1675],[34.93000000000018,-8.0441666669999],[34.995,-7.931666666999888],[35.08166666700015,-7.921666665999908],[34.97833333300014,-7.824166666999872],[35.01500000000016,-7.771666665999931],[35.1725,-7.783333332999973],[35.13750000000016,-7.884166666999931],[35.33500000000015,-7.861666666999952],[35.25833333300017,-7.808333332999894],[35.21833333300009,-7.74166666699989],[35.237500000000125,-7.679166666999947],[35.36750000000018,-7.73],[35.42583333300007,-7.651666666999915],[35.47500000000019,-7.688333332999889],[35.559166666000124,-7.674166665999962],[35.49833333400005,-7.868333333999942],[35.5750000000001,-7.859166666999897],[35.599166667000134,-7.795],[35.595,-7.651666666999915],[35.64000000000016,-7.635],[35.80833333300012,-7.695833332999882],[35.88666666600017,-7.679166665999958],[36.021666666000044,-7.599166666999963],[36.1475,-7.715],[36.303333334000115,-7.668333333999954],[36.48583333300007,-7.686666665999951],[36.63833333400004,-7.564166666999938],[36.602500000000134,-7.524166665999871],[36.69000000000017,-7.345],[36.67333333300007,-7.23583333299996],[36.5625,-7.233333332999905],[36.60833333300002,-7.070833332999939],[36.5216666660001,-7.0875],[36.47083333300009,-7.211666665999871],[36.458333334000145,-7.338333333999913],[36.362500000000125,-7.33083333299993],[36.29333333400018,-7.23],[36.29083333300014,-7.14],[36.351666667000075,-7.125833332999889],[36.44833333300005,-7.121666666999943],[36.46666666700014,-6.989999999999895],[36.44833333300005,-6.959166665999931],[36.42333333300013,-6.874166666999884],[36.4825,-6.786666666999906],[36.57666666700004,-6.76416666699987],[36.60083333400007,-6.820833332999882],[36.69666666700016,-6.76],[36.795833333000076,-6.756666666999877],[36.77833333299998,-6.689999999999884],[36.708333333000155,-6.65333333399991],[36.67166666700018,-6.536666666999963],[36.61916666700006,-6.486666666999895],[36.6425,-6.41083333399996],[36.351666667000075,-6.338333333999969],[36.359166667000125,-6.255],[36.41916666600008,-6.21666666699997],[36.5833333330001,-6.243333332999896],[36.66833333400018,-6.045],[36.64666666700009,-5.958333332999928],[36.79250000000019,-5.94833333299988],[36.88666666700004,-5.974166666999849],[36.98416666700007,-5.8775],[36.92500000000018,-5.800833332999957],[36.84916666700002,-5.848333332999914],[36.736666667000065,-5.759166665999885],[36.726666667000075,-5.61],[36.82833333400015,-5.593333332999975],[36.8325,-5.743333332999896],[36.9275,-5.7675],[37.016666667000095,-5.825833332999878],[37.05666666700017,-5.765],[37.153333333000035,-5.8275],[37.15,-5.6325],[37.200833334000095,-5.56166666699994],[37.25083333300006,-5.3975],[37.30500000000018,-5.455],[37.422500000000184,-5.503333332999944],[37.509166666,-5.41499999999985],[37.52083333400003,-5.345],[37.581666667000036,-5.32416666599994],[37.6925,-5.381666666999877],[37.68000000000018,-5.459166666999977],[37.71,-5.545],[37.8525,-5.611666666999895],[37.91333333400013,-5.584166665999931],[37.9975,-5.608333332999962],[38.07500000000016,-5.575833332999935],[38.25250000000017,-5.46666666699997],[38.37583333300012,-5.489166665999903],[38.458333333000155,-5.55916666599984],[38.53166666700014,-5.340833333999967],[38.36500000000018,-5.255],[38.2975,-5.141666666999924],[38.11750000000012,-5.033333332999973],[38.18166666700006,-4.913333332999969],[38.107500000000186,-4.844166665999978],[38.15583333400019,-4.80833333399994],[38.21833333300003,-4.871666666999943],[38.24750000000017,-4.99583333299995],[38.31916666600006,-5.078333333999865],[38.38833333300016,-5.052499999999895],[38.389166666999984,-4.939166666999938],[38.31833333300017,-4.935833333999938],[38.211666667000145,-4.822499999999877],[38.099166667000134,-4.665],[38.0175,-4.568333332999885],[38.01916666700015,-4.5625],[38.086666665999985,-4.485],[38.05750000000012,-4.445833332999939],[38.03250000000014,-4.291666666999959],[38.05750000000012,-4.230833332999964],[37.9533333330001,-4.181666666999945],[37.95750000000015,-4.141666666999924],[37.80166666700006,-4.078333333999979],[37.80250000000018,-4.02583333299998],[37.70666666700009,-3.909166666999965],[37.7091666660001,-3.9125],[37.7125,-3.916666665999912],[37.73083333300019,-3.939166665999949],[37.713333334000026,-3.97],[37.67750000000012,-3.930833333999942],[37.7016666670001,-3.765833333999979],[37.7675,-3.7],[37.725,-3.546666666999897],[37.755000000000166,-3.501666666999938],[37.698333333000164,-3.3875],[37.745,-3.255833333999931],[37.76666666600005,-3.1075],[37.80666666700006,-3.05],[37.779166666000094,-2.960833332999925],[37.81083333400011,-2.874166665999951],[37.73083333300019,-2.84],[37.74083333400006,-2.79],[37.63666666600017,-2.724166666999963],[37.58250000000015,-2.614166666999949],[37.53083333300009,-2.644166666999979],[37.36666666600007,-2.589999999999861],[37.350833333000026,-2.6675],[37.298333333000016,-2.7075],[37.182500000000175,-2.6675],[37.150833334000026,-2.734166666999954],[37.215833334000024,-2.76749999999987],[37.30833333300018,-2.877499999999884],[37.316666666,-2.880833332999941],[37.43250000000012,-2.8575],[37.482500000000186,-2.9],[37.538333333000026,-2.983333332999962],[37.610833334000176,-3.088333333999969],[37.61500000000018,-3.285],[37.67083333300013,-3.325],[37.62000000000012,-3.391666666999924],[37.56083333300006,-3.306666666999945],[37.49916666700011,-3.3425],[37.41833333400018,-3.32],[37.362500000000125,-3.266666665999935],[37.16000000000014,-3.246666666999886],[37.115,-3.214166666999972],[37.01083333300011,-3.259166666999931],[36.977500000000134,-3.340833332999978],[36.90833333400013,-3.293333333999954],[36.82,-3.353333333999956],[36.66583333400007,-3.366666665999958],[36.595,-3.434166666999886],[36.60166666700019,-3.59],[36.5750000000001,-3.64666666699992],[36.44416666600017,-3.65083333299998],[36.365,-3.604166666999959],[36.36416666700012,-3.791666666999959],[36.32083333300011,-3.813333332999946],[36.24000000000018,-3.71],[36.15666666700014,-3.706666665999876],[36.054166666000015,-3.749166666999884],[35.9475,-3.610833333999892],[35.90166666700003,-3.476666666999961],[35.864191579000135,-3.57429865499995],[35.87825210699998,-3.66293486099994],[35.777414821000036,-3.775585088999946],[35.73066660200004,-3.74760478099995],[35.752879710000116,-3.670296489999942],[35.73196153300012,-3.597667834999925],[35.81437369600013,-3.419051789999912],[35.89583333300004,-3.442499999999825],[35.88000000000011,-3.335],[36.03833333300014,-3.045833332999962],[36.047500000000184,-2.83083333299993],[36.00333333300006,-2.81166666699994],[35.92166666700018,-2.665833332999966],[35.92916666700006,-2.574999999999875],[35.9500000000001,-2.498333332999835],[36.02500000000015,-2.508333333999815],[35.97666666700002,-2.341666665999981],[35.96833333400019,-2.190833332999944],[36.00250000000011,-2.145],[36.0191666660001,-2.114999999999895],[36.05250000000018,-1.745833332999894],[36.075,-1.684166666999886],[36.075,-1.534166666999965],[36.05083333400012,-1.431666665999956],[36.196666667000045,-1.52583333299998],[36.3125,-1.385833332999937],[36.365,-1.44],[36.44583333300017,-1.373333333999881],[36.4725,-1.399166665999928],[36.48500000000013,-1.45833333399986],[36.64083333400015,-1.625833332999889],[36.64083333400015,-1.707499999999868],[36.62833333300017,-1.734166666999954],[36.63083333400016,-1.731666665999967],[36.62833333300017,-1.734166666999954],[36.666666667000186,-1.911666666999963],[36.74833333300006,-1.9],[36.79500000000013,-1.781666666999911],[36.868333334000056,-1.8275],[37.01833333400009,-1.807499999999891],[37.11666666700006,-1.834166666999977],[37.12833333300006,-1.965833332999921],[37.25083333300006,-1.975833333999901],[37.29083333400007,-1.901666666999915],[37.298333333000016,-1.7575],[37.22500000000019,-1.507499999999879],[37.135833333000164,-1.479166666999845],[37.153333333000035,-1.404166666999913],[37.24666666600018,-1.327499999999873],[37.228333333000194,-1.111666666999895],[36.965,-1.161666666999963],[36.882500000000164,-1.26416666599988],[36.715833333000035,-1.369166665999899]],[[35.69250000000011,-1.387499999999818],[35.7591666670001,-1.541666666999959],[35.79083333300008,-1.5425],[35.85583333400018,-1.661666666999963],[35.94583333300005,-1.63],[35.9425,-1.719166666999968],[36.00416666700005,-1.789166666999904],[35.96083333300004,-1.9475],[35.833333334000145,-1.994166665999956],[35.80333333400006,-1.8975],[35.843333334000135,-1.833333333999974],[35.6275,-1.5525],[35.63083333300011,-1.44],[35.69250000000011,-1.387499999999818]],[[35.700833333000105,-2.034166666999965],[35.651666667000086,-2.136666666999929],[35.51666666700004,-2.0175],[35.63083333300011,-1.9075],[35.725000000000136,-1.941666666999936],[35.700833333000105,-2.034166666999965]],[[33.525,-2.848333332999971],[33.590833333000035,-2.9375],[33.56000000000017,-3.009166665999828],[33.4500000000001,-3.091666665999981],[33.38333333300011,-3.033333333999906],[33.39166666700004,-2.882499999999879],[33.525,-2.848333332999971]],[[33.27000000000015,-3.74],[33.32833333400015,-3.8375],[33.22,-3.893333332999873],[33.10416666700007,-3.869999999999891],[33.129166667,-3.79],[33.27000000000015,-3.74]],[[37.17083333400018,-3.648333332999925],[37.18833333400005,-3.776666666999972],[37.12416666700011,-3.819166666999877],[37.06416666700005,-3.71],[37.17083333400018,-3.648333332999925]],[[36.94333333300017,-3.608333332999905],[36.88000000000011,-3.793333332999907],[36.815,-3.735],[36.94333333300017,-3.608333332999905]],[[37.345,-3.426666666999836],[37.41250000000019,-3.534166665999919],[37.48416666700018,-3.583333332999871],[37.43833333400016,-3.704166666999811],[37.356666667000184,-3.615],[37.345,-3.426666666999836]],[[37.631666667000104,-3.664166666999904],[37.6366666670001,-3.589166665999812],[37.71083333300004,-3.6625],[37.7016666670001,-3.74],[37.638333333000105,-3.758333332999939],[37.631666667000104,-3.664166666999904]],[[36.36083333300019,-3.82666666699987],[36.41583333300002,-3.91583333299991],[36.49000000000012,-3.874166665999951],[36.605833333000135,-3.891666665999878],[36.65916666600003,-3.976666666999961],[36.5750000000001,-4.025833333999913],[36.455,-4.02583333299998],[36.36083333300019,-3.82666666699987]],[[36.91113960500007,-4.522654738999961],[36.840667357000086,-4.783963780999954],[36.84300560500009,-4.87593228999998],[36.8144120020001,-4.996061306999934],[36.74889117300006,-4.925147209999921],[36.79531582600015,-4.73365562399988],[36.80867342099998,-4.56597705299987],[36.91113960500007,-4.522654738999961]],[[37.10749837900016,-4.769561820999911],[37.145498420000024,-4.716639019999946],[37.214431836000074,-4.751662533999934],[37.350269836000166,-4.745950580999931],[37.372944279000194,-4.857153319999895],[37.45370745800017,-4.917517053999916],[37.590577263000114,-5.060328721999895],[37.31758709300004,-4.899474245999897],[37.19873929400018,-4.92556622099994],[37.12446863600013,-4.836449008999921],[37.10749837900016,-4.769561820999911]],[[37.910334127,-4.802836807999938],[37.88830890100019,-4.895972079999979],[37.90356831500014,-4.970488656999919],[37.79978290200006,-5.020385896999926],[37.719629669000085,-4.953636177999897],[37.861623129,-4.797297607999894],[37.910334127,-4.802836807999938]],[[37.75789783800013,-5.241276395999819],[37.730181619000064,-5.197185547999936],[37.74177359100014,-5.078696290999972],[37.8353148540001,-5.118580213999962],[37.821857424000086,-5.193103926999868],[37.75789783800013,-5.241276395999819]],[[36.08333333300004,-5.240833332999841],[36.03666666700008,-5.345],[35.955833333000044,-5.325833332999821],[35.9425,-5.128333332999944],[36.039166666000085,-5.113333332999957],[36.11416666700018,-5.045833332999962],[36.2066666660001,-5.1025],[36.09833333299997,-5.190833332999944],[36.08333333300004,-5.240833332999841]],[[35.50416666600006,-4.578333332999875],[35.411666667000134,-4.678333332999898],[35.21583333400008,-4.7225],[35.0775000000001,-4.798333333999892],[35.055,-4.918333333999954],[35.132500000000164,-5.034166666999909],[35.425000000000125,-5.25],[35.400833333000094,-5.405833332999975],[35.31416666700005,-5.409166665999919],[35.27166666600016,-5.508333332999939],[35.15833333300003,-5.434999999999889],[35.15666666600009,-5.310833333999938],[35.1925,-5.27916666699997],[35.18583333300006,-5.137499999999875],[35.10500000000013,-5.125833332999946],[34.938333334000106,-4.863333333999833],[34.95666666700009,-4.805],[35.053333334,-4.775833332999923],[35.121666667000056,-4.711666666999861],[35.28583333300003,-4.624166665999951],[35.21,-4.5825],[35.29250000000013,-4.434999999999889],[35.43416666600007,-4.269166666999979],[35.51250000000016,-4.231666666999899],[35.55000000000018,-4.269166666999979],[35.75250000000017,-4.209166666999977],[35.7975,-4.291666666999959],[35.85833333300019,-4.313333332999946],[35.82,-4.399166666999974],[35.87666666700011,-4.440833332999944],[35.97768227500006,-4.319710628999928],[36.07486268600019,-4.290203536999968],[36.17047994700016,-4.334631917999957],[36.13013012500011,-4.380771455999934],[36.12262007200013,-4.477584126999943],[36.232506646000104,-4.532044516999918],[36.252460036000116,-4.645936774999939],[36.41300206600016,-4.903731577999906],[36.32503143800005,-4.905299571999876],[36.278170633000116,-4.867283460999886],[36.29116843600008,-4.773773082999924],[36.194825528000024,-4.697264972999903],[36.17914022500014,-4.62166316399987],[36.12635894400006,-4.611142727999891],[36.04199815300012,-4.528537471999925],[35.9266131280001,-4.55048706499997],[35.84695941700005,-4.516666666999868],[35.810000000000116,-4.639166666999927],[35.86583333400017,-4.716666666999913],[36.01500000000016,-4.691666666999879],[36.10833333300013,-4.7875],[36.09166666700014,-4.8425],[36.00000000000017,-4.875],[35.96833333300009,-4.743333332999953],[35.82916666600005,-4.7675],[35.7875,-4.748333332999835],[35.73166666599997,-4.86],[35.68666666700017,-4.870833332999894],[35.65916666600009,-4.9825],[35.68250000000012,-5.101666665999915],[35.63333333300017,-5.208333332999928],[35.566666667000106,-5.185833333999881],[35.525,-5.104166666999902],[35.425000000000125,-5.033333332999973],[35.47916666600014,-4.943333332999885],[35.618333333000066,-4.961666665999871],[35.63916666600011,-4.905833332999975],[35.59333333300009,-4.846666666999965],[35.539166667000075,-4.7],[35.51141940800011,-4.5725],[35.50416666600006,-4.578333332999875]],[[35.61166666700018,-5.445833332999882],[35.681666666000126,-5.484166665999908],[35.65,-5.583333333999917],[35.59166666600015,-5.595],[35.57000000000011,-5.520833332999871],[35.61166666700018,-5.445833332999882]],[[36.025833333000094,-5.955],[35.949166666999986,-5.924166665999962],[35.94333333300017,-5.793333332999964],[35.7725,-5.686666665999894],[35.71333333299998,-5.5825],[35.83083333400009,-5.603333332999966],[35.91666666600008,-5.70583333299993],[36.016666667000095,-5.724166666999963],[36.05583333300018,-5.815833333999933],[36.170833333000076,-5.878333332999944],[36.2083333330001,-5.990833332999955],[36.165000000000134,-6.045833332999905],[36.13166666700005,-6.100833333999958],[36.008333333,-6.133333332999882],[35.9516666670001,-6.051666666999949],[35.955,-5.976666665999915],[36.025833333000094,-5.955]],[[35.3308333330001,-6.144166666999979],[35.31583333400005,-6.230833332999907],[35.199166667000156,-6.234166666999954],[35.07083333300017,-6.150833332999923],[35.019166667000036,-6.059166666999829],[35.09583333400019,-5.989166666999893],[35.14,-6.038333333999958],[35.31,-6.041666665999969],[35.3308333330001,-6.144166666999979]],[[36.06666666700016,-6.358333333999894],[36.12416666700011,-6.243333332999896],[36.220833333000144,-6.209166665999931],[36.23916666700006,-6.300833332999957],[36.22,-6.39333333299993],[36.10583333300008,-6.387499999999875],[36.03107254500014,-6.463751777999903],[35.949700362000044,-6.480493560999946],[35.90168512400004,-6.637344806999977],[35.80647690800009,-6.62467269699988],[35.757864753000035,-6.561828763999813],[35.61332671800011,-6.565759533999881],[35.56457535900006,-6.529771797999956],[35.56485353800008,-6.417887253999879],[35.50269358300011,-6.376738145999923],[35.57265268800006,-6.300895320999928],[35.612129129000095,-6.389360340999872],[35.70903087300019,-6.401406697999903],[35.75148923799998,-6.45953754899989],[35.84881944900013,-6.444105401999877],[35.88129493200012,-6.364544930999955],[35.95071999600003,-6.378060365999829],[36.06666666700016,-6.358333333999894]],[[36.295833334000065,-6.5325],[36.34583333300003,-6.644166666999979],[36.323333333000164,-6.849166666999963],[36.22833333300002,-6.840833332999921],[36.2375,-6.746666666999886],[36.20166666700004,-6.54083333299991],[36.295833334000065,-6.5325]],[[35.23916666600013,-4.984166666999954],[35.15916666700008,-4.980833332999907],[35.10583333400018,-4.93666666699994],[35.10416666600014,-4.836666665999928],[35.17666666700012,-4.7675],[35.38833333300005,-4.711666665999928],[35.46833333300003,-4.674166666999952],[35.47666666600003,-4.8],[35.42333333400006,-4.884166666999874],[35.341666667000084,-4.87416666699994],[35.31083333300012,-4.951666665999937],[35.23916666600013,-4.984166666999954]],[[35.48956205700006,-7.246610577999945],[35.49171669800006,-7.314008758999933],[35.374239901000124,-7.335471083999892],[35.36256244600003,-7.277531831999909],[35.48956205700006,-7.246610577999945]],[[34.3275000000001,-8.6925],[34.21416666700014,-8.724166666999906],[34.18333333300018,-8.614166665999903],[34.11333333400006,-8.7125],[34.0425,-8.610833333999892],[34.1325,-8.55833333399994],[34.060000000000116,-8.442499999999882],[34.054166667000175,-8.286666666999963],[34.227500000000134,-8.283333332999916],[34.310833333000176,-8.22166666599992],[34.39166666699998,-8.276666666999972],[34.464166667000086,-8.246666666999943],[34.494166666000126,-8.170833332999962],[34.63583333400004,-8.161666666999963],[34.80333333400006,-8.194166666999934],[34.65583333300009,-8.304166666999947],[34.49500000000012,-8.368333332999896],[34.365,-8.460833332999869],[34.375,-8.5475],[34.237500000000125,-8.564166666999938],[34.24833333400011,-8.643333332999816],[34.3275000000001,-8.6925]],[[37.28833333300008,-2.7175],[37.40083333400014,-2.741666666999834],[37.3250000000001,-2.8175],[37.28833333300008,-2.7175]]]]},"properties":{"objectid":670,"eco_name":"Southern Acacia-Commiphora bushlands and thickets","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Afrotropic","eco_biome_":"AF07","nnh":3,"eco_id":57,"shape_leng":200.39376741,"shape_area":19.0624901832,"nnh_name":"Nature Could Recover","color":"#D68A00","color_bio":"#FEAA01","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":235433.37234712252,"percentage":1.0981538284064962}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[35.425476528000104,33.110436066000034],[35.53835260100004,33.105923249000114],[35.60594560900006,33.29316976900009],[35.55857058900011,33.300722367000105],[35.45526849400005,33.211766067000156],[35.425476528000104,33.110436066000034]]],[[[37.047378482000056,34.29508631700003],[36.80503855000006,34.153313298000114],[36.878482462000136,34.404966195000156],[36.81098551000008,34.564572048000116],[36.71483250800014,34.54246662300011],[36.66050755000015,34.45396814200012],[36.41508056300012,34.12947198000012],[36.30287152200009,34.02694370200004],[36.20772954500006,33.904011022000134],[36.07981449400012,33.86881021400012],[36.039768610000124,33.784618355000134],[35.84356652900016,33.63739056100019],[35.90358749400008,33.55756198600011],[35.80908958200007,33.48870112999998],[35.782733526000015,33.339799470000116],[36.05770454200018,33.53645668900009],[36.0337825900001,33.64421460400018],[36.05998257600004,33.775672853],[36.13933958500019,33.830649253000104],[36.25498956500007,33.8316099860001],[36.265792497000064,33.69921296400014],[36.239189510000074,33.619904067],[36.354255606000095,33.59101198200017],[36.41495148200016,33.60601156500019],[36.61114451000003,33.70022382200011],[36.671634526000105,33.79787718500012],[36.791820456000096,33.87426884500013],[36.99585358200011,34.16431085800019],[37.072105599000054,34.24485273300019],[37.047378482000056,34.29508631700003]]],[[[36.08204257100016,34.45969398800014],[36.049335547000055,34.38693772700003],[35.86526157700001,34.197097007000025],[35.789943471000186,33.89503920100009],[35.70656247800014,33.817522522000104],[35.69994345600014,33.72918396800014],[35.62239056800007,33.66987160900004],[35.56386158200007,33.49721982600016],[35.58270661500012,33.41867301200017],[35.683727491000184,33.46659151400013],[35.73989848000019,33.65262936400012],[35.859989527000096,33.795756228000016],[35.953746479000074,33.84923377600006],[36.035747476000154,33.97041128600006],[36.06810346600014,34.073222201000135],[36.35457948300018,34.35382384500008],[36.43282656100007,34.46706369200007],[36.50985356900014,34.653025602000184],[36.441307538000046,34.664419291000115],[36.244934466000075,34.53131282400017],[36.08204257100016,34.45969398800014]]],[[[36.353046600000084,35.820201597000164],[36.23322260000003,35.696498452000185],[36.1861805100001,35.59877987800019],[36.23372249700009,35.44312056000018],[36.22987352700011,35.16491764900019],[36.297698547000095,35.11723887000011],[36.35466749300019,35.01399745900011],[36.408489537000094,35.03825384900017],[36.4095845490001,35.344223155000066],[36.34187654100003,35.68436380300005],[36.353046600000084,35.820201597000164]]],[[[35.89652657900018,35.89580787200015],[36.15483856200012,35.818145851000054],[36.224678591000156,35.85404889500006],[36.196617488000186,36.024436056000184],[36.14339458200004,36.03328265200014],[35.92172258000011,35.928457062000064],[35.89652657900018,35.89580787200015]]],[[[29.278087480000067,36.28476120500011],[29.308713445000024,36.37366805200014],[29.250890551000168,36.434266697000055],[29.28240751300018,36.50220939900004],[29.217395460000148,36.577215696999986],[29.129957458000092,36.571119875000136],[29.069360489000132,36.61440083700006],[29.128732526000135,36.54533328500014],[29.10962648100019,36.38371896000007],[29.278087480000067,36.28476120500011]]],[[[30.413646601000096,36.84021400300003],[30.328893489999984,36.95334086200012],[30.238143462000153,36.98902295900007],[30.09800759600006,36.97606437000019],[30.030260528000156,37.10791271200003],[30.07657657900012,37.21031643500004],[30.05032546400014,37.287527845],[30.078777499000125,37.38435810500005],[29.97818560800016,37.39564182300006],[29.78572453800018,37.35936846700008],[29.81747250500007,37.5863242530001],[29.86422961100004,37.63573439900006],[30.04029048100017,37.72521456900017],[30.163284517000193,37.856830230000014],[30.167095601000028,37.92007286300003],[30.098560467000084,38.049163727],[30.037422529000025,37.90141541700018],[29.94011148300018,37.80620219300016],[29.766574572000025,37.78278047400016],[29.60924155500004,37.72743845500014],[29.477930492000098,37.80838785900016],[29.381406507000122,37.81418998000015],[29.222743450000166,37.768818905000046],[29.109031534000053,37.774670480000054],[29.018329450000067,37.85087522300017],[28.883094483000036,37.81614396900011],[28.873704572,37.7382712270001],[29.07382754000014,37.65391089200017],[29.134469604000174,37.60511094800012],[29.26910358800012,37.657725663000065],[29.352590529000054,37.65494102800017],[29.470499600000096,37.57407829300013],[29.55204747100015,37.41515338500005],[29.63978051600003,37.37228917100015],[29.684192533000044,37.27648502300008],[29.782627592000097,37.186887004000084],[29.804000607000035,37.09055580300003],[29.67263455900013,37.074588277000146],[29.61598345500005,37.12015029100013],[29.488637535000066,37.11717823600003],[29.464229601000056,37.20925260400003],[29.326738561000184,37.317907215000105],[29.277025493000053,37.45360888700009],[29.186258534000103,37.572381293000035],[29.14025160800003,37.50133779000009],[29.067790558000127,37.52405040100007],[29.008407456000157,37.46343147100015],[28.912757536000072,37.43684005100016],[28.806758479000166,37.45803754900004],[28.690837597000098,37.501806674000136],[28.59236750100007,37.481288110000094],[28.60036048400019,37.38639205800007],[28.529365596000105,37.27200238100011],[28.542148501000042,37.07192517900006],[28.70602644300004,37.04198485300009],[28.91767855100005,36.92048933399997],[29.01517450199998,37.01063653500012],[29.110956521000105,36.99468677900012],[29.119348483000067,36.905848831000185],[29.225278472000127,36.906962786000065],[29.27741659200018,36.85600668200016],[29.437067541000147,36.90889246800003],[29.50736253900004,36.74069818100003],[29.475612560000172,36.54701922099997],[29.490951611000014,36.50294935300013],[29.44443355700014,36.33207302500017],[29.476505568000164,36.21301563400016],[29.537572595000142,36.20134701900008],[29.58080058400003,36.30695363500007],[29.717300548000026,36.30590874700016],[29.813283565000063,36.36517617800007],[29.994840450000083,36.37552212900016],[30.03492153700006,36.346843615000125],[30.180231552000066,36.34272776500012],[30.38714252000011,36.434369627000024],[30.51460444500003,36.43925275600003],[30.588458568000192,36.571485661],[30.558097470000064,36.6122027670001],[30.589961611000092,36.80990353200008],[30.46054653400006,36.76514668400006],[30.413646601000096,36.84021400300003]]],[[[37.2765045110001,37.56253959700018],[37.120136587000104,37.530306150000115],[36.962173586000176,37.567033639000044],[36.97982051000008,37.799016053000116],[37.08426254400007,37.966966258000184],[36.996639469,38.00679438000009],[36.93816748,37.94796951300003],[36.868553595000094,38.01147533800014],[36.92874555000009,38.10325583600019],[36.83755161700003,38.13136521900009],[36.711196606000044,38.10228286500006],[36.688049478000096,38.196687067000084],[36.56103548100009,38.20665482600015],[36.49569351700018,38.26011678400016],[36.51601460300009,38.37415090100018],[36.43490946400004,38.50875487800005],[36.379058496000084,38.446014824000144],[36.23342845999997,38.47404944000016],[36.17420159700009,38.453987690000076],[36.171646457000065,38.36092224600014],[36.126033481000036,38.278152461],[35.98820448300006,38.19284614399999],[35.89201359400005,38.076274155000135],[35.826259575999984,38.08722980500016],[35.686847571000044,37.992703563000134],[35.632808603000115,38.004612403000124],[35.54521553500018,38.12152352400017],[35.37312349600006,38.04696683000009],[35.293975531000115,38.05070147100008],[35.25467647500011,38.11283752500009],[35.04743157200005,37.91747514300005],[35.016765541000154,37.99543455400004],[34.92216453200007,37.99832262299998],[34.818984477000186,37.90594030300008],[34.85574348100016,37.854831314000194],[34.98971546300004,37.82772876500013],[34.90236245300008,37.66048381200011],[34.81566960200007,37.616733463000116],[34.69826847500019,37.601879725],[34.58500247600011,37.52578545500006],[34.40344659800007,37.5113437710001],[34.25560357200004,37.479403188000106],[34.26490061100003,37.43876587700015],[34.123924543000044,37.402576841999974],[34.01422152400011,37.418907472000114],[33.93279250800015,37.361524460000055],[34.16529057700018,37.27266237200007],[34.06226357500009,37.25180769400009],[33.96702956500013,37.166322340000136],[33.932033610000076,37.096037735000095],[33.744167500000174,36.98166800700011],[33.61794257600019,36.94711193500018],[33.64446258200013,36.872364469000104],[33.44134559900016,36.81996634300003],[33.32732355200005,36.89105913100002],[33.24501058100009,36.98170606100007],[33.32405846600011,37.03887600500008],[33.29545958000011,37.09727792100006],[33.20505958000007,37.149278746000164],[33.08980153800013,37.17447809900017],[33.0730895320001,37.219105364000086],[32.69125360900017,37.25354375400008],[32.788986600000044,37.19790384200019],[32.795867472000054,37.106302549000134],[32.68834358000015,37.133039982000014],[32.757236454000065,37.004307695000136],[32.67713546700014,36.96381941500016],[32.448436579000145,37.068618350000065],[32.40405255800016,37.13651092800018],[32.39976152600002,37.31547428400012],[32.312236520000056,37.37701120000014],[32.29990053800003,37.4633323970001],[32.16636257100009,37.45979271900018],[32.16470748,37.378335204999985],[32.25403560200016,37.26071866300015],[32.26461456900017,37.18372099200013],[32.383617478000076,37.04702371800016],[32.315151577999984,37.02586812900006],[32.26170755800007,37.114557550000086],[32.07480653900018,37.25313555500014],[31.843629459000113,37.36550636700008],[31.762994544000094,37.45455185100013],[31.655340565000017,37.50461058800016],[31.60493247000005,37.61394581000013],[31.520952505000025,37.58599216200008],[31.462478505000092,37.6482009720001],[31.398988606000046,37.82410878800016],[31.31433859200007,37.933538893000105],[31.29031354300008,38.047019636000186],[31.130313571999977,38.188005092000026],[31.113271487000077,38.296146227000065],[31.02080953899997,38.37410614100003],[31.03346654800015,38.44216266900014],[30.942399517000126,38.386697772000105],[30.933425516,38.281688450000104],[30.69207548700018,38.28643746900019],[30.581047457000125,38.126784342000064],[30.697334461000082,37.991761772000075],[30.72128658700018,37.91617108700018],[30.697011590000102,37.82813277300016],[30.604549475000113,37.823921704000156],[30.512695551000036,37.648307925000154],[30.563610583000127,37.583260333000055],[30.67182145600009,37.673541644000125],[30.75032652900012,37.62483641600011],[30.945779603000176,37.67110368400006],[30.969902553000054,37.587918156000114],[31.06593150300006,37.56265761499998],[31.0343976100001,37.457454671000164],[30.89537452600007,37.450320666000096],[30.911542546000078,37.26935537600019],[30.985038594000173,37.196930704000124],[31.04613160400004,37.059375458000034],[31.176076584000157,37.10720762700004],[31.282123585000136,36.970086229000174],[31.37623056500007,36.949407738000104],[31.436511536000182,36.89049502900008],[31.587272470000073,36.87169240800017],[31.76670051900004,36.78852615900013],[31.841314545000102,36.65201999200008],[32.07876950300016,36.58220846200004],[32.19464445300014,36.43116572800005],[32.35392760300016,36.34986076500019],[32.47804649100016,36.20659174300005],[32.603778559000034,36.20191497700017],[32.660045604,36.149098090000166],[32.780166491000045,36.11782588000017],[32.906944453000165,36.19117323199998],[33.10958450600009,36.16334179300003],[33.33755450300009,36.255265623000184],[33.66116352400013,36.28775086200011],[33.812515550000114,36.332264132000034],[33.79551353000005,36.40708334700014],[33.59743155600006,36.43107369500018],[33.543567602,36.52624081800019],[33.63598646600008,36.58088546200014],[33.71815845400005,36.52983766000011],[33.877117560000045,36.48869743500006],[34.00134658500019,36.50972025400017],[34.230583591000084,36.66270490700015],[34.40273245900005,36.823761333000164],[34.54642845500018,36.89238682400003],[34.705940599000144,37.07291340500012],[34.94009359000012,37.15404268400016],[35.157882592000135,37.28847785000005],[35.277568459000065,37.29954380600009],[35.52487148299997,37.48567100700012],[35.66221248700009,37.4903781160001],[35.815593604000185,37.5856371050001],[36.118148457000075,37.499037964000024],[36.20042052500014,37.42495032100015],[36.29637554700008,37.40270257100019],[36.345947464000176,37.33409719600019],[36.2783395350001,37.207127624000066],[36.26630345800015,37.061729599000046],[36.222663582000166,36.96680236599997],[36.266235564,36.818116456000155],[36.205055550000054,36.71948576400018],[36.20185450100013,36.60309415300014],[36.02449058000008,36.44359357600018],[35.90403760200019,36.41801301400017],[35.794319495000025,36.32527211600012],[35.8808445410001,36.182037293],[36.156394579,36.30448265000018],[36.241622608000114,36.43448077099998],[36.37963852300004,36.52242990200017],[36.51294347300018,36.761228647000166],[36.619022493000045,37.01966133000019],[36.664390550000064,37.06296961800007],[36.745292512000105,37.22341232100018],[36.76782256500002,37.33380718200016],[36.821315535999986,37.43278119800016],[36.701820609000094,37.5890242320001],[36.80268860000018,37.62562548900013],[36.8137475150001,37.542436105000036],[37.000617520000105,37.494365053000024],[37.00031258700017,37.398167794000074],[37.11125545700014,37.417614480000054],[37.2765045110001,37.56253959700018]]]]},"properties":{"objectid":672,"eco_name":"Southern Anatolian montane conifer and deciduous forests","biome_num":12,"biome_name":"Mediterranean Forests, Woodlands & Scrub","realm":"Palearctic","eco_biome_":"PA12","nnh":4,"eco_id":804,"shape_leng":55.0684171237,"shape_area":7.73045328778,"nnh_name":"Nature Imperiled","color":"#C63901","color_bio":"#FE0000","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":76619.38957586538,"percentage":2.3194143199096007}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-69.13629151299995,-31.412412432999872],[-69.21075449699993,-31.34843068399988],[-69.34032463799997,-31.50762733299996],[-69.37233764099989,-31.853305569999918],[-69.34947164199997,-31.994903071999943],[-69.38480354299998,-32.04056432799996],[-69.33049752699998,-32.35983336699991],[-69.24243155299996,-32.57362151899997],[-69.12930251399996,-32.56693477199991],[-69.10163854599989,-32.460077072999866],[-69.02379648199991,-32.408198791999894],[-69.01179460199995,-32.216092946999936],[-69.05316951999993,-32.19239261299998],[-69.04093948499991,-31.99312292299993],[-68.99583461999998,-31.942810548999944],[-68.97480056899997,-31.724605804999953],[-69.08026854799982,-31.446039119999853],[-69.13629151299995,-31.412412432999872]]],[[[-69.30966162499988,-29.310891943999934],[-69.23259756899995,-29.410575235999943],[-69.17871852799993,-29.782405010999923],[-69.12689254999998,-29.87806834299988],[-69.09947953499994,-30.011388547999957],[-69.03434762099994,-30.08223473999982],[-68.91375751499999,-30.094527136999943],[-68.87578548199997,-30.254345554999873],[-69.03379860699988,-30.33324943899987],[-69.07034253099994,-30.400523096999905],[-69.09144548099994,-30.54464489299994],[-69.1697235719999,-30.65868889999996],[-69.23372661099995,-30.91883467599996],[-69.2609325929999,-30.944441725999923],[-69.28704859099997,-31.21982798199997],[-69.14881860299994,-31.286628731999883],[-69.08119960999994,-31.346828566999932],[-68.89224251099989,-31.360789296999883],[-68.86793549499998,-31.202374679999878],[-68.89752947999983,-31.16943966799994],[-68.88611550799999,-30.97606949599998],[-68.85018161799991,-30.93384197099988],[-68.87091056799994,-30.79233884899992],[-68.8536455229999,-30.582349542999964],[-68.72026060999991,-30.555323437999903],[-68.7024006179999,-30.458870865999927],[-68.73991349099992,-30.418640412999878],[-68.73168950299998,-30.271779745999936],[-68.68306759099983,-30.20583914599996],[-68.72069563099996,-30.12257918699987],[-68.70363661399995,-30.000995657999965],[-68.66950248599994,-29.957460555999944],[-68.66092662599993,-29.84166791599995],[-68.69273360199998,-29.800377319999882],[-68.68671455699996,-29.625954775999958],[-68.71376061199999,-29.511829296999906],[-68.87046062699994,-29.64003436199988],[-69.04385353799995,-29.49033222999992],[-69.02266660099997,-29.23620298399993],[-68.96617156799994,-29.068122522999943],[-69.1223296089999,-29.111474899999962],[-69.24426249599986,-29.214644728999872],[-69.30966162499988,-29.310891943999934]]],[[[-69.40125252499985,-29.75893383799996],[-69.53566757399989,-29.568984153999907],[-69.52705349199994,-29.35785138899996],[-69.47480053999988,-29.186964834999912],[-69.5432666079999,-29.07880525899992],[-69.46339461399992,-29.009186008999905],[-69.35434756199999,-29.084860848999938],[-69.28176162199998,-29.02689730599991],[-69.27824356999992,-28.95885284799988],[-69.41264353099996,-28.830010926999933],[-69.40573851999994,-28.742934351999963],[-69.26339754299994,-28.613770732999967],[-69.07924662699997,-28.570267313999977],[-68.94651063999999,-28.52061543399992],[-68.93508962699991,-28.352289383999846],[-68.76996663699998,-28.395200704999922],[-68.71960464199998,-28.32926010499989],[-68.74066953799996,-28.202091377999977],[-68.7214736389999,-27.922678120999876],[-68.66109459899997,-27.87602997999994],[-68.58882851199996,-27.892950527999915],[-68.50949849299997,-28.012808390999965],[-68.46739149899997,-28.17500877899994],[-68.36550158699998,-28.021342844999936],[-68.34383352899994,-27.829167094999946],[-68.31082157099996,-27.79504252299995],[-68.30262758999999,-27.661230131999957],[-68.33556360799986,-27.630778342999974],[-68.36551650699988,-27.399448375999953],[-68.30220061599994,-27.25339153399989],[-68.22768348499994,-27.20795055499991],[-68.07256362599998,-27.211527447999856],[-68.02264352499992,-27.188332542999945],[-68.01544950499994,-27.085564038999905],[-67.94596050999996,-26.931033595999963],[-67.79814162399992,-26.867195511999967],[-67.58444248799998,-26.94393015999998],[-67.53713955299997,-26.901383115999977],[-67.82977257999988,-26.760316355999976],[-67.8850094899999,-26.635176888999922],[-67.84942663399988,-26.57462853499993],[-67.82598848599997,-26.438541630999907],[-67.60095249099999,-26.11699221099991],[-67.48390155999994,-25.87294840599992],[-67.39403548799987,-25.879819219999888],[-67.07549248899994,-26.19845760499993],[-67.03241755299996,-26.27775610799995],[-67.03684956799987,-26.477561066999954],[-67.2701264829999,-27.01052622499998],[-67.25904057799988,-27.094377442999928],[-67.10942863499992,-26.970003074999966],[-66.99591855599994,-26.81769081899995],[-66.84864851699996,-26.3794834119999],[-66.78733858299995,-26.35111066899998],[-66.5283815279999,-26.36546283499996],[-66.65038264399993,-26.087315579999938],[-66.7020114789999,-25.62989869499995],[-66.68167849099996,-25.300859205999927],[-66.63764952699995,-25.190943621999963],[-66.47415949899994,-25.09460621799991],[-66.50394459199993,-24.98438553199992],[-66.39637761699998,-25.023013532999926],[-66.32665258799994,-24.984881404999953],[-66.3045505149999,-24.53963806099995],[-66.20514650799998,-24.570930387999965],[-66.06639851699998,-24.57464424099993],[-66.06242348399996,-24.46691063399993],[-66.15381657099994,-24.338758709999922],[-66.30161248999997,-24.40557538699983],[-66.3669816119999,-24.40662664499996],[-66.57825452299994,-24.29823371699996],[-66.61772959899992,-24.35792896099997],[-66.62216161399994,-24.462054829999886],[-66.56795450499993,-24.622667014999877],[-66.57410464199995,-24.821344103999934],[-66.6257016269999,-24.91091295399991],[-66.7551654859999,-25.049156352999944],[-66.83622754199985,-25.182772774999876],[-66.8575826199999,-25.41364307799995],[-66.93898062299996,-25.54479387899994],[-66.99210361599995,-25.587529850999886],[-67.08596752099993,-25.752013132999934],[-67.2947235129999,-25.749110144999975],[-67.33000160299991,-25.712891940999896],[-67.31602461199998,-25.522743941999977],[-67.27806062499997,-25.42494758299995],[-67.35234054799997,-25.350088805999974],[-67.45088960199996,-25.441292629999907],[-67.53430948699992,-25.575668283999903],[-67.65773049699999,-25.912944668999955],[-67.92163052799992,-26.275782169999957],[-68.11939952199998,-26.49669795699998],[-68.17389664499996,-26.495069017999867],[-68.25897262699993,-26.72422874299997],[-68.32013654799982,-26.78029646599998],[-68.51128350299996,-26.89179539199995],[-69.14844560799997,-26.97143503999996],[-69.31699361099999,-26.91309162899995],[-69.33784460099992,-27.020230959999935],[-69.39601148899999,-27.127234167999973],[-69.51092553699988,-27.399175293999917],[-69.62277264699998,-27.495122268999978],[-69.70158349199988,-27.604067563999934],[-69.73245253299996,-27.731335196999964],[-69.69698350399995,-28.032153655999934],[-69.72669248899996,-28.14913971099992],[-69.83296948899994,-28.310203009999952],[-70.00309764899993,-28.35674101299992],[-70.02460460599997,-28.409699888999967],[-69.97734860999992,-28.49309345499995],[-70.00354758899994,-28.59992936099991],[-70.15331258599997,-28.69608236299996],[-70.24500255999999,-28.790007622999894],[-70.26942457599995,-28.971048349999876],[-70.36209053899995,-29.060699844999874],[-70.4107515099999,-29.153929239999968],[-70.4626924879999,-29.398222825999937],[-70.46504260599994,-29.497396832999925],[-70.53069252099988,-29.64732427099989],[-70.41849554999999,-29.613364486999956],[-70.37126151399991,-29.64032839899994],[-70.28437755599992,-29.78586791099997],[-70.1845546209999,-29.833493213999873],[-70.10432455199998,-29.934166408999943],[-70.1098175489999,-30.176808256999948],[-70.19087256399996,-30.1964425299999],[-70.26806653999995,-30.116891394999925],[-70.39907853599988,-30.032605658999955],[-70.46868152499991,-30.063979290999953],[-70.31298851199995,-30.29753196999991],[-70.29994157699986,-30.467250757999977],[-70.3609614959999,-30.500920359999952],[-70.46306648799992,-30.441058650999878],[-70.49159261899996,-30.352726969999935],[-70.57588154099989,-30.366981234999912],[-70.52639059299992,-30.465061739999953],[-70.59040050599992,-30.522510633999957],[-70.60134157199997,-30.590522066999938],[-70.44172649799987,-30.704559199999892],[-70.42568956999997,-30.809836239999925],[-70.50305956599988,-30.8945023469999],[-70.43164055399996,-31.021155753999835],[-70.51770761199987,-31.07796108499997],[-70.59688558399995,-31.22833963699992],[-70.67233260299992,-31.248181947999967],[-70.72331955299984,-31.310719998999957],[-70.8145595869999,-31.349130739999907],[-70.81157663499994,-31.41211252899984],[-70.73561060799994,-31.45506106499988],[-70.68942263399998,-31.591267326999912],[-70.62868451299988,-31.636736972999927],[-70.49064663799993,-31.85753742499992],[-70.45967852299992,-31.953466462999927],[-70.47879060299994,-32.14703293799988],[-70.61862153599992,-32.190389505999974],[-70.51792151799998,-32.371547914999894],[-70.50751454699997,-32.49494176699994],[-70.53882548199994,-32.56376875899997],[-70.4289476159999,-32.56506577499994],[-70.37624354999991,-32.61998802799985],[-70.37190256199995,-32.78912192599989],[-70.33162651199984,-32.844669971999906],[-70.1745146099999,-32.86858320599998],[-70.12875360899994,-32.95393880899991],[-70.19094062499988,-33.02453153299996],[-70.3171615259999,-33.074602004999974],[-70.49272149399991,-33.0931825049999],[-70.45636750399996,-33.244800906999956],[-70.33515948399997,-33.27800296699996],[-70.27153061299987,-33.328732423999895],[-70.14542353799993,-33.31704888999997],[-70.02498648599993,-33.34868286299985],[-69.97226749999999,-33.42107970699993],[-70.0191645839999,-33.52531772599997],[-70.16729762299997,-33.61789802599992],[-70.03795664299992,-33.88154659999992],[-70.06110360399992,-33.990224511999884],[-69.92137962499999,-34.078242038999974],[-69.95642050599992,-34.183025216999965],[-70.02881651299992,-34.24181940599988],[-70.09023256099982,-34.232134954999935],[-70.17836760299991,-34.14642010499995],[-70.32659150199999,-34.04640974999995],[-70.35593453399997,-33.91531745499992],[-70.43557753399995,-33.893604134999975],[-70.42716260599991,-33.99610642899984],[-70.33461750999987,-34.11984092199998],[-70.2964096099999,-34.35130265199996],[-70.33686855399998,-34.51227827599985],[-70.46381348299991,-34.55831286199998],[-70.58634953199987,-34.65610050299995],[-70.45290359799998,-34.781394029999944],[-70.43981961499992,-34.98016901999989],[-70.36508958399997,-34.99444775999996],[-70.37723563199995,-35.16694347199984],[-70.53916159599993,-35.19464448799988],[-70.56333953099983,-35.29461812999995],[-70.43160249999994,-35.312218617999974],[-70.4450836179999,-35.46314702199987],[-70.38849655099989,-35.58618698999993],[-70.42213463699994,-35.63430481399996],[-70.37717461199998,-35.76318177299993],[-70.32224263599994,-35.81419068299988],[-70.4206926149999,-35.87112744199993],[-70.37733453799996,-35.93160790299987],[-70.37882249399996,-36.0199276809999],[-70.28359954799998,-36.06642377499986],[-70.28359954799998,-36.262792487999945],[-70.39815552099998,-36.32825096099998],[-70.32450859899996,-36.40188815999994],[-70.27447551099988,-36.60975080899988],[-70.13814553199995,-36.417565838999906],[-69.89565254599995,-36.23587584999996],[-69.9345014939999,-36.15818365399997],[-70.08616649999993,-36.07309560199997],[-70.02513149299995,-36.001129251999885],[-69.79551663099994,-36.02415383699997],[-69.66071349999993,-36.00207908899995],[-69.54782854199988,-35.84424198499988],[-69.52245350399988,-35.66823207599987],[-69.47871354799997,-35.638451844999906],[-69.46820062999996,-35.49662803099989],[-69.71090651499998,-35.439237642999956],[-69.84901463099999,-35.36683627199983],[-69.76126850999998,-35.266897834999895],[-69.58693649099996,-35.30922460199997],[-69.41706850599991,-35.323704506999945],[-69.41255954499997,-35.216335176999905],[-69.60816148099991,-35.06494476199998],[-69.74319461199997,-34.9043919209999],[-69.63047058699988,-34.912593780999885],[-69.39328753799992,-35.03293276499994],[-69.34439857899997,-35.009206279999944],[-69.27777854199991,-34.68492268299991],[-69.3156895539999,-34.65641650099997],[-69.34805258599994,-34.52652181199994],[-69.31623856899995,-34.452133761999846],[-69.3870084859999,-34.419133873999954],[-69.2584606019999,-34.26374998499989],[-69.23992150799995,-34.08026794499989],[-69.27467354899994,-34.0506707749999],[-69.26977549999998,-33.92297331799995],[-69.33209260399997,-33.793475092999984],[-69.32093059099986,-33.68984107399996],[-69.27615362599994,-33.63966750499998],[-69.25746164599997,-33.37015109599997],[-69.09255960399992,-33.377960179999945],[-69.06906848199992,-32.99141664499996],[-69.17793263999994,-32.94328809199993],[-69.22682159899989,-32.884680818999925],[-69.50312751699994,-32.78166102599988],[-69.51350364299986,-32.68579686399994],[-69.46648451899995,-32.60228444299992],[-69.43341858099996,-32.21489483799991],[-69.47557854899986,-32.17789694999988],[-69.49937460399991,-31.955011414999944],[-69.54069554299997,-31.863059422999868],[-69.66198754899995,-31.77958002599985],[-69.64956657399983,-31.641347521999933],[-69.53839152499995,-31.434191802999976],[-69.49577357099997,-31.035082285999977],[-69.46280653999992,-31.006097496999928],[-69.41643550399994,-30.51978467099991],[-69.28117354799997,-30.231662280999956],[-69.28035748599996,-30.12412229599994],[-69.31479654599991,-30.085011496999982],[-69.32342554799999,-29.93181947599993],[-69.40125252499985,-29.75893383799996]]]]},"properties":{"objectid":673,"eco_name":"Southern Andean steppe","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Neotropic","eco_biome_":"NO10","nnh":2,"eco_id":595,"shape_leng":52.9876442596,"shape_area":11.7625287015,"nnh_name":"Nature Could Reach Half Protected","color":"#FBB84D","color_bio":"#D6C39D","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":125189.67890744083,"percentage":2.563626350334669}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-55.77689755099988,-27.439935482999942],[-55.835014482999895,-27.42477714699993],[-55.9008335449999,-27.338019083999882],[-55.96892963499988,-27.347972593999827],[-56.08073852399997,-27.307731411999953],[-56.169776631999866,-27.33407824899996],[-56.297988569999916,-27.424790221999956],[-56.303131537999946,-27.49347623099993],[-56.432479558999944,-27.66431785799989],[-56.43012256799989,-27.84221436499996],[-56.4607235549999,-27.964259401999982],[-56.69128456599998,-28.158352427999944],[-56.823493498999824,-28.365742673999932],[-56.95928150399993,-28.427176156999963],[-56.9970815399999,-28.472485372999984],[-57.30814754599999,-28.598702417999903],[-57.51696355299987,-28.615599663999944],[-57.550743628999896,-28.677761198999917],[-57.5897335599999,-28.733159711999917],[-57.59965153099995,-28.960967937999953],[-57.56345361099994,-29.018108544999905],[-57.65091357399996,-29.196154585999977],[-57.57129655799997,-29.319543576999877],[-57.51622058099986,-29.486008341999934],[-57.55700658699993,-29.592270254999903],[-57.69678856899998,-29.778436179999915],[-57.719085603999986,-29.936904105999872],[-57.6149025709999,-30.04502713699992],[-57.62751062999985,-30.184512063999875],[-57.53361554499992,-30.161471720999828],[-57.322814534999964,-29.973460938999835],[-57.31597154999997,-29.860930870999937],[-57.274169489999906,-29.79843322199997],[-57.10111252599995,-29.759263916999885],[-56.970283589999895,-29.63066188599987],[-56.96805551199992,-29.598441849999915],[-56.82972762299994,-29.486222247999933],[-56.7791674799999,-29.390671065999925],[-56.69889047299989,-29.3456728189999],[-56.62499946999992,-29.172622559999922],[-56.51500660399995,-29.09096069499998],[-56.43117550299996,-29.071765298999935],[-56.39278454199996,-28.950409253999908],[-56.325561510999876,-28.92207741599998],[-56.28139458099997,-28.776527175999888],[-56.18722557499996,-28.75346990099996],[-56.11083961499992,-28.66041987899996],[-56.02139246999997,-28.597644453999976],[-56.01833357899994,-28.505981133999967],[-55.89972663099991,-28.471262619999948],[-55.87333654399998,-28.354599100999906],[-55.73555750199995,-28.360157140999945],[-55.691390571999875,-28.29098984399991],[-55.768890486999965,-28.2282194469999],[-55.67861152199998,-28.19377183699993],[-55.61250261299995,-28.119607750999933],[-55.45480347499995,-28.098162651999928],[-55.36756848299996,-28.02366982899997],[-55.38261751899995,-27.984546456999965],[-55.30442056499993,-27.912041653999893],[-55.439098470999966,-27.83796758999995],[-55.5871845719999,-27.781781010999964],[-55.62936750599994,-27.703194297999914],[-55.642764468999985,-27.52046830599994],[-55.61114457799994,-27.475411049999934],[-55.65717363099998,-27.37160268799994],[-55.77689755099988,-27.439935482999942]]]},"properties":{"objectid":677,"eco_name":"Southern Cone Mesopotamian savanna","biome_num":9,"biome_name":"Flooded Grasslands & Savannas","realm":"Neotropic","eco_biome_":"NO09","nnh":3,"eco_id":586,"shape_leng":9.2276855053,"shape_area":2.47915803053,"nnh_name":"Nature Could Recover","color":"#A5CDD9","color_bio":"#BEE7FF","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":26963.489926214796,"percentage":2.3317497989996694}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[28.580413816000032,-4.537378493999938],[28.521501088000093,-4.25473808199996],[28.428702109000085,-4.291619727999887],[28.379923159000157,-4.229753740999911],[28.38111288900018,-4.155990449999933],[28.297831754000185,-4.158369910999966],[28.197894392000137,-4.107211499999892],[28.108664604000126,-3.982289796999908],[28.002778589000116,-3.951356803999886],[27.91949745400018,-3.787173993999943],[27.926635837000106,-3.731256660999918],[28.036516561999974,-3.603755477999925],[27.922250602000076,-3.533499706999976],[27.891790598000114,-3.466058578999878],[27.736309480000102,-3.541523869999935],[27.374370517999978,-3.803124409999953],[27.216819572000134,-3.86809773799996],[27.087680596000098,-3.856613524999943],[26.93284052500013,-3.819617312999981],[26.422090594999986,-3.648423142999945],[26.31806950000015,-3.552096299999903],[26.213890490000097,-3.407880961999979],[26.069129490000137,-3.100974894999922],[25.985370473000103,-2.841491120999819],[25.918930479000096,-2.704309205999891],[25.865680584000188,-2.663088178999942],[25.721790463000048,-2.693039233999912],[25.523120582,-2.646985704999963],[25.325309511000114,-2.668214047999868],[25.189439531000062,-2.769161331999953],[25.103090506000115,-2.964961751999908],[24.999309469000025,-3.347063380999884],[24.897790539000027,-3.47751479599998],[24.75645052900012,-3.512516282999854],[24.385049573000174,-3.51102933299984],[24.194780538000145,-3.684962205999966],[24.021110522000072,-3.759959787999946],[23.783479543000112,-3.789270632999944],[23.679510584000127,-3.642001599999958],[23.587680464000073,-3.543984629999954],[23.407279443999983,-3.297283090999883],[23.346019465999973,-3.346306327999969],[23.254909520000183,-3.499136082999883],[23.104810589000067,-3.590537384999891],[22.987199579000162,-3.625116757999933],[22.751399543000048,-3.660692237999911],[22.655500513000163,-3.693409822999911],[22.62299951500006,-3.752714134999962],[22.659900509000067,-3.96098079199993],[22.69920744400008,-4.005889352999873],[22.323665492000146,-3.954423293999923],[22.19203155800011,-3.986691777999965],[21.824516452000125,-3.974353950999841],[21.562364551000087,-4.058487471999968],[21.471088475000045,-4.058466516999943],[21.389949473000115,-4.014787916999865],[21.162483563000023,-3.986583818999918],[21.030590460999974,-4.026124105999884],[20.821649564000097,-4.122798964999959],[20.51205055900016,-4.211816117999888],[20.451942590000158,-4.25051637099989],[20.348178484000186,-4.370933474999958],[20.302505494000172,-4.377009012999906],[20.182674453000175,-4.308453091999922],[19.982776456000067,-4.226907231999917],[19.816944524,-4.124414660999889],[19.61916346000004,-4.072474521999879],[19.38582954800006,-3.918319084999951],[19.209287556999982,-3.825475927999946],[19.056493508000187,-3.775019720999978],[18.795829563000098,-3.643061406999891],[18.64916654100017,-3.605009410999969],[18.599163460000113,-3.56473419799994],[18.49124545000018,-3.584253638999826],[18.368432464000023,-3.3907411429999],[18.316835479000076,-3.262852746999954],[18.293901586000118,-3.080183415999954],[18.298381546000087,-2.450757304999968],[18.28562345100005,-2.340236378999919],[18.186239560000047,-2.216512614999942],[18.076000434000036,-1.999500950999902],[17.924619575000065,-2.102150262999942],[17.695669566,-2.036214021999967],[17.60304048300003,-2.092700002999891],[17.603200578000042,-2.174580635999973],[17.735120502000143,-2.349831813999913],[17.69647054100011,-2.437088096999958],[17.626819440000077,-2.403562663999935],[17.421140444000173,-2.232089375999919],[17.317409530000077,-2.214921897999943],[17.074430562000032,-2.218594511999868],[16.96890055700004,-2.249633034999931],[16.854497469000137,-2.252821845999904],[16.687610592000055,-2.46380625199987],[16.69081449000015,-2.594095560999961],[16.80682757400001,-2.650783209999929],[17.00316846000004,-2.668925000999877],[17.100803550000023,-2.756425364999814],[17.037805501000037,-2.86539714699984],[17.127199504000032,-2.950620817999948],[17.04425051400011,-2.976401875999954],[16.86173256,-2.919770217999883],[16.805704567000078,-2.876246514999934],[16.75530451800006,-2.77598503899992],[16.62223258500012,-2.723178880999853],[16.55118757400004,-2.72590350299987],[16.47751953000011,-2.855052872999977],[16.627920545,-2.936496808999891],[16.50971056400016,-3.025162423999916],[16.27447546899998,-3.169298636999883],[16.22552448400012,-3.225248343999908],[16.321111540000175,-3.266760389999945],[16.658569477000185,-3.161607234999963],[16.921417578000103,-3.169799539999929],[17.12802646300014,-3.23189888099995],[17.282976504000032,-3.339255973999968],[17.278615568000134,-3.479449674999955],[17.21588557200016,-3.64811820999995],[17.17438559600015,-3.822765220999941],[17.09362445000005,-3.879338875999963],[16.736991569000168,-3.922283724999886],[16.521680592000052,-4.013585951999971],[16.442626505000078,-4.067537915999822],[16.393871489,-4.167506527999933],[16.39001447200019,-4.442782142999874],[16.473968453000055,-4.976019879999967],[16.545577566000077,-5.504245071999947],[16.62266743800012,-5.94128990899992],[16.678281534000178,-6.080448779999927],[16.75584951000002,-6.207529328999897],[16.765361461000055,-6.554915964999907],[16.784898504000125,-6.72137201299995],[16.93215949,-6.951825232999965],[16.93007457599998,-7.161048096999878],[16.99578450600012,-7.203561947999958],[17.10879552700004,-7.190128774999948],[17.37691148700003,-7.25412007999995],[17.451984506000144,-7.29046149699991],[17.579244595000034,-7.433938054999885],[17.768241592000038,-7.692319607999934],[18.053142482000055,-8.0557394839999],[18.164203537000105,-8.268382164999935],[18.2595465120001,-8.28831148099988],[18.256891461000066,-8.091732884999942],[18.18812146500005,-7.893609838999907],[18.141742551000107,-7.847619341999973],[17.865140584000073,-7.470273604999932],[17.727153503000068,-7.211547387999872],[17.673805539000114,-7.039888859999905],[17.64805046500004,-6.855740123999908],[17.594907523000188,-6.723070856999868],[17.413831592000122,-6.469012186999919],[17.31276159700019,-6.28536854399988],[17.28842759100013,-6.153487343999871],[17.36823856500007,-6.135902613999917],[17.445508480000058,-6.175020619999941],[17.598697484000127,-6.251610092999954],[17.957693559000177,-6.374184362999927],[18.35171358400015,-6.365429800999891],[18.53558957400014,-6.339163765999899],[18.973388447000048,-6.050236880999933],[19.166019502000154,-6.06774768199989],[19.263759534000144,-6.304371323999931],[19.20561946800018,-6.488990955999896],[19.206460508000134,-6.674738120999848],[19.16031058800013,-6.93808310199995],[19.197450465000088,-7.035049148999974],[19.503740463000042,-7.035636887999942],[19.569313600000157,-7.065963787999976],[19.530899505000093,-7.240709201999891],[19.59676550600011,-7.36584716099992],[19.688722528000028,-7.641695259999949],[19.792173486000024,-7.814100613999926],[19.884130508000112,-8.009493673999941],[19.99907456300008,-8.170406098999933],[20.102525521000075,-8.239368039999931],[20.205976479000128,-8.457748468999966],[20.274944455000025,-8.676128729999846],[20.297931489000177,-8.883014216999925],[20.343910587000096,-9.112888749999968],[20.424371493000024,-9.285295613999835],[20.52782245100002,-9.42321966299994],[20.826681555000164,-9.61861305799988],[20.973171574000105,-9.659225893999974],[21.15719944400007,-9.64653502199991],[21.303152518000047,-9.690952737999964],[21.34122647500004,-9.824204378999923],[21.290460473000167,-10.027255145999902],[21.315843558000097,-10.116088902999934],[21.48083344300005,-10.179543429999967],[21.602697598000077,-10.166470259999926],[21.810813549000102,-10.116088902999934],[21.956766455000093,-10.065326587999948],[22.051952521000032,-9.995528300999922],[22.280401460000178,-9.64653502199991],[22.37558752600006,-9.3102327819999],[22.527885534000177,-9.170635704999881],[22.591342576000045,-9.056420873999969],[22.635765489000107,-8.910478193999893],[22.69352954300001,-8.79917624199993],[22.788063497000167,-8.764535512999885],[22.991126501000167,-8.789916753999933],[23.149772458000143,-8.777226552999934],[23.321107444000063,-8.81529799499998],[23.453868576000104,-8.874845716999971],[23.85087758800006,-8.445231269999908],[23.965478489000077,-8.258806845999914],[24.009826468000085,-8.038415430999919],[24.124204578000047,-7.868302693999965],[24.396751548000054,-7.580638626999928],[24.87884945000019,-7.040001680999922],[24.99977349100004,-6.923636221999914],[25.113290444000086,-6.847905558999969],[25.45699859800004,-6.687111486999981],[25.729276509000044,-6.584140979999916],[26.061477483000033,-6.395669527999928],[26.320474604000026,-6.279853250999963],[26.624170570000103,-6.219814516999918],[26.80432549699998,-6.12357551599996],[26.95967652900009,-5.957470502999968],[27.26100544500008,-5.568894020999892],[27.441219549000152,-5.317711515999974],[27.686927497000056,-4.954997395999897],[27.852479473000074,-4.759696872999939],[28.019901451000067,-4.629340508999974],[28.140451491000192,-4.587892332999957],[28.372592491000034,-4.548929390999945],[28.580413816000032,-4.537378493999938]]]},"properties":{"objectid":678,"eco_name":"Southern Congolian forest-savanna","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Afrotropic","eco_biome_":"AF07","nnh":4,"eco_id":58,"shape_leng":47.4096339051,"shape_area":46.2098071313,"nnh_name":"Nature Imperiled","color":"#ABE600","color_bio":"#FEAA01","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":569544.2227124507,"percentage":2.656578217366405}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[73.36351132900018,-53.01210054099994],[73.39665263900014,-53.1362824279999],[73.55055259600016,-53.193785635999916],[73.74665862000006,-53.12489125399992],[73.53166163000014,-53.010722858999884],[73.36351132900018,-53.01210054099994]]],[[[69.31388861900012,-48.94010220499996],[69.19943255700014,-48.97454964799988],[69.20416263300018,-49.084276974999966],[69.29832459800014,-49.08343794599995],[69.31388861900012,-48.94010220499996]]],[[[69.07638554800008,-48.66204648099989],[68.96916155999997,-48.660383510999964],[68.95082061500011,-48.75232544599987],[68.79054253300018,-48.84426838599984],[68.85333254300014,-48.925942320999866],[68.73916649500012,-49.06955164699991],[68.84111055500017,-49.15622270499995],[68.75888056400015,-49.217884175999984],[68.8608246230001,-49.317052316999934],[68.80915857200011,-49.36455289699995],[68.9058225350002,-49.42177447399996],[68.82666048900006,-49.47316626899982],[68.82611063600012,-49.55066702299996],[68.7577666090001,-49.66372850299996],[68.79777561200012,-49.719835118999924],[69.00665264000014,-49.718172316999926],[69.10610962100003,-49.672891766999896],[69.17637662400017,-49.58622741499988],[69.37332150900016,-49.56761221299996],[69.44583150900019,-49.62344390299995],[69.69749463199997,-49.66400242399982],[69.77915951500017,-49.593727541999954],[69.85083048700005,-49.68428176799995],[70.0841524970001,-49.72066710699994],[70.31666548500004,-49.59816760299998],[70.316375639,-49.53649909199993],[70.15361064600017,-49.50539368099993],[70.04582255600008,-49.52455873499997],[70.00248761400013,-49.582893595999906],[69.8122105330001,-49.53400379899995],[69.76304664700012,-49.46455302599992],[69.89416459100016,-49.33649967299982],[70.04026753400018,-49.36483586999992],[70.12777762000019,-49.33927659799997],[70.30693057500014,-49.380110212999966],[70.4511105420001,-49.36927609999998],[70.56860353400003,-49.22344623999993],[70.52638254700008,-49.09260808399989],[70.30610663400006,-49.05094348699993],[70.22499059800015,-49.15399462799991],[70.07888748800013,-49.11788404799995],[69.98359664800012,-49.14732665599996],[69.85638450300007,-49.24677676399995],[69.69415260000005,-49.30955218999992],[69.6088865160001,-49.30594344499997],[69.43527249100015,-49.216778267999985],[69.49581950400005,-49.02955035499991],[69.21720856200017,-49.123438399999884],[69.10388154300006,-48.99371503699996],[69.13388054200016,-48.83621941199982],[69.07943756700013,-48.785658597999884],[69.07638554800008,-48.66204648099989]]],[[[37.85083050500003,-46.954811890999906],[37.89221950500013,-46.89369960299996],[37.78194450500018,-46.830093362999946],[37.65415954100007,-46.82897923999997],[37.58138249300015,-46.89786557599996],[37.609161461000156,-46.95175970499997],[37.85083050500003,-46.954811890999906]]],[[[51.81805460500016,-46.37925509799993],[51.7341614770001,-46.32425522799991],[51.650833625000075,-46.38369515999989],[51.724441487000036,-46.45175755499997],[51.81805460500016,-46.37925509799993]]]]},"properties":{"objectid":681,"eco_name":"Southern Indian Ocean Islands tundra","biome_num":11,"biome_name":"Tundra","realm":"Antarctica","eco_biome_":"AN11","nnh":1,"eco_id":133,"shape_leng":24.72254891,"shape_area":1.0110094289,"nnh_name":"Half Protected","color":"#69E7F5","color_bio":"#9ED7C2","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":8171.174299481553,"percentage":0.09562347110153653}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[34.59416666700014,-15.044166666999956],[34.57617839200009,-14.923300324999957],[34.49015323900011,-14.9007972039999],[34.44142644900006,-14.960638801999892],[34.46282610900005,-15.27032123999993],[34.52250000000015,-15.351162409999972],[34.60333333300008,-15.26833333299993],[34.58,-15.199166666999929],[34.5775,-15.151666666999972],[34.5766666670001,-15.144166666999979],[34.576666666,-15.135],[34.58583333300004,-15.099166666999963],[34.5891666660001,-15.089999999999861],[34.59,-15.0875],[34.59416666700014,-15.044166666999956]]],[[[34.361666667000065,-14.38916666699987],[34.23404439000018,-14.448497730999975],[34.331509814000015,-14.532456191999927],[34.427991932000054,-14.80880970999982],[34.55031240300019,-14.766649843999971],[34.51583333400015,-14.685833332999948],[34.54416666700007,-14.643333333999976],[34.515833333000046,-14.56],[34.361666667000065,-14.38916666699987]]],[[[34.03166666700014,-11.49499999999989],[34.0125000000001,-11.449166666999872],[33.90166666600015,-11.5],[33.74500000000012,-11.655],[33.7975,-11.798333333999835],[33.705,-11.895],[33.8216666670001,-11.961666666999918],[33.68750000000017,-12.11416666699995],[33.729166667000015,-12.14249999999987],[33.911666666000144,-11.86416666599996],[33.923333334000176,-11.724166666999963],[33.9591666660001,-11.668333333999954],[33.96583333300009,-11.570833332999939],[34.03166666700014,-11.49499999999989]]],[[[34.1225,-11.299999999999898],[34.04500000000013,-11.44],[34.1400000000001,-11.434166665999896],[34.1225,-11.299999999999898]]],[[[34.173333333000016,-10.790833332999966],[34.1175,-10.8325],[34.0925,-10.9725],[34.0375,-11.095],[34.054166667000175,-11.168333332999964],[34.15333333300009,-11.163333333999958],[34.21416666700014,-11.064999999999827],[34.225833333000026,-10.990833332999955],[34.21,-10.834166665999874],[34.173333333000016,-10.790833332999966]]],[[[34.82000000000011,-10.684999999999889],[34.85500000000019,-10.741666666999947],[34.779166667000084,-10.878333332999944],[34.788333333000026,-10.998333333999938],[34.845,-11.053333333999888],[34.87583333300006,-11.2],[34.975,-11.220833332999916],[34.99583333300018,-11.110833333999949],[34.968333333000146,-10.970833333999963],[34.9025,-10.824166666999929],[34.87916666600012,-10.71333333299998],[34.82000000000011,-10.684999999999889]]],[[[34.10833333300019,-10.574999999999818],[34.05416666600007,-10.697499999999877],[34.1275,-10.715833333999967],[34.10833333300019,-10.574999999999818]]],[[[33.79000000000019,-10.345833332999916],[33.7116666660001,-10.570833332999939],[33.70083333300016,-10.665833333999899],[33.76166666700004,-10.687499999999886],[33.83,-10.650833332999923],[33.915,-10.740833332999898],[33.98,-10.76],[33.995,-10.681666666999888],[33.96000000000015,-10.6025],[33.959166667000034,-10.46],[33.84583333299997,-10.43583333399988],[33.79000000000019,-10.345833332999916]]],[[[33.481666667000184,-10.151666665999869],[33.44333333300011,-10.048333332999903],[33.38750000000016,-10.125833332999889],[33.481666667000184,-10.151666665999869]]],[[[33.57666666600005,-10.01333333299982],[33.61333333300007,-10.145],[33.694166666,-10.090833332999978],[33.636666667000156,-10.014166665999937],[33.57666666600005,-10.01333333299982]]],[[[35.335833333000096,-9.21333333299998],[35.278333334000024,-9.109166666999897],[35.13416666700016,-9.063333332999889],[35.10083333300008,-8.954166666999981],[34.995,-8.984166665999851],[34.934166667000056,-8.95916666599993],[34.810000000000116,-8.965833332999864],[34.8075,-9.034166666999909],[34.7325,-9.1775],[34.62583333300012,-9.3],[34.57500000000016,-9.301666666999893],[34.545000000000186,-9.18333333299995],[34.46083333300015,-9.194166666999877],[34.375,-9.095],[34.30333333300007,-9.054999999999893],[34.2075,-9.117499999999836],[34.125000000000114,-9.109166665999908],[33.982500000000186,-8.939166666999938],[33.86083333300013,-8.950833332999878],[33.7225,-8.9191666669999],[33.685833333000176,-9.06083333399988],[33.60583333300019,-9.133333332999939],[33.68,-9.195],[33.750000000000114,-9.195833332999939],[33.81166666700011,-9.115],[33.895833334000145,-9.235],[33.9575,-9.263333332999878],[34.006666667,-9.405833332999975],[34.14916666600004,-9.509166665999942],[34.21666666600015,-9.519166666999922],[34.237500000000125,-9.590833332999978],[34.25250000000011,-9.640833332999875],[34.36166666600013,-9.724166666999963],[34.49166666700012,-9.901666665999926],[34.565833333000114,-10.03916666699996],[34.615,-10.044166665999967],[34.70833333300004,-9.785833332999971],[34.82250000000016,-9.821666665999942],[34.950833333000105,-9.795],[34.97083333300003,-9.889999999999873],[35.11583333400017,-9.778333332999921],[35.24166666600007,-9.8575],[35.326666667000154,-9.82583333399998],[35.34583333300003,-9.68333333299995],[35.35,-9.650833332999866],[35.29750000000013,-9.644166666999979],[35.31333333300006,-9.566666666999936],[35.22,-9.5508333329999],[35.213333333000094,-9.461666666999974],[35.30666666600007,-9.455833333999976],[35.335833333000096,-9.21333333299998]]],[[[33.55750000000012,-9.395833333999917],[33.5083333340001,-9.315833333999933],[33.535,-9.274166666999974],[33.5150000000001,-9.160833332999914],[33.42833333300018,-9.068333332999885],[33.60333333300014,-8.9925],[33.56500000000017,-8.875],[33.44000000000011,-8.859166666999954],[33.5150000000001,-8.9525],[33.42666666700012,-8.986666666999952],[33.275833333000094,-8.953333333999979],[33.21916666700014,-9.0425],[33.123333333000176,-9.141666665999935],[33.156666667000025,-9.202499999999816],[33.25916666600017,-9.230833332999964],[33.26083333300011,-9.309166665999953],[33.31916666600017,-9.333333332999871],[33.34833333300003,-9.486666666999895],[33.455,-9.564166665999892],[33.56000000000017,-9.4925],[33.55750000000012,-9.395833333999917]]],[[[33.40083333400008,-8.853333333999956],[33.5025,-8.828333332999932],[33.50416666700005,-8.76083333299988],[33.265833334000035,-8.817499999999825],[33.40083333400008,-8.853333333999956]]],[[[31.69000000000011,-8.3575],[31.693333333000112,-8.244166665999956],[31.628333333000114,-8.131666666999877],[31.535833333000028,-8.085833332999869],[31.498333333000062,-8.124166666999884],[31.49666666700017,-8.28],[31.563333334000163,-8.316666666999879],[31.631666666000115,-8.26166666599994],[31.69000000000011,-8.3575]]],[[[31.955833333000157,-8.295],[31.91750000000019,-8.137499999999875],[31.819166667000047,-7.9883333329999],[31.689166667000165,-7.851666665999915],[31.66500000000019,-7.928333332999955],[31.716666667000027,-8.0775],[31.955833333000157,-8.295]]],[[[31.11916666700006,-7.978333332999966],[31.120833334000054,-7.880833332999885],[31.17416666600002,-7.786666666999963],[31.2675,-7.773333332999869],[31.30416666600007,-7.720833332999916],[31.159166667000136,-7.496666665999953],[31.16416666700013,-7.626666666999881],[31.070000000000107,-7.765833332999819],[30.98083333400018,-7.805],[30.995833333000064,-7.88583333299988],[31.11916666700006,-7.978333332999966]]]]},"properties":{"objectid":687,"eco_name":"Southern Rift Montane forest-grassland","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Afrotropic","eco_biome_":"AF10","nnh":4,"eco_id":87,"shape_leng":57.6070477356,"shape_area":1.83636741831,"nnh_name":"Nature Imperiled","color":"#A80000","color_bio":"#D6C39D","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":22411.55021297698,"percentage":0.45894231201212415}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[43.40827127700004,17.808295217000023],[43.41082475000019,17.885816777000116],[43.34337559599999,17.88526182600009],[43.40827127700004,17.808295217000023]]],[[[41.985669103000134,20.142575519000047],[41.97145981500006,20.34789074300005],[41.98198188300006,20.476943456000186],[41.9801832390001,20.478472304000036],[41.97172961200005,20.478202507000162],[41.928112492000025,20.36938453900018],[41.86992635600012,20.331433149000134],[41.86210225400009,20.336469353000098],[41.83431320300019,20.402209793999987],[41.78961689700003,20.39672393000012],[41.78179279600005,20.44411820100015],[41.683586828000045,20.354905455000164],[41.62540069200014,20.5025741340001],[41.57099170800018,20.552666372000147],[41.339236417000166,20.55032813500003],[41.220795703000135,20.640710001000116],[41.207575669000164,20.69583844200008],[41.12744607500014,20.762478206000083],[41.130413838000095,20.855378173000076],[41.07582498900007,20.893689292000147],[41.02753139500015,21.095856888000128],[40.862505800000065,21.186868280000112],[40.78624329000007,21.169511364000186],[40.70206674700012,21.204135263000182],[40.61249427100017,21.33633560300018],[40.55907454200019,21.350724756000147],[40.512489660000085,21.43750933399997],[40.51482789700003,21.512692657000173],[40.579129423000154,21.59273231900005],[40.60233193200014,21.771337677000076],[40.56743823700009,21.882403950000025],[40.13729250200009,21.863248390000138],[39.98593660199998,21.780870491000087],[39.807870837000166,21.75128279500018],[39.839437040000064,21.604513438000026],[39.75094375100019,21.62834547200015],[39.68547310600019,21.44326499500005],[39.71721917399998,21.392183502000137],[39.65444649600005,21.150625601000115],[39.698153547000175,21.09306899],[39.668385987000136,21.010241429000132],[39.606422698000074,20.95933980200016],[39.687541547000194,20.890811462000045],[39.81272717600007,20.838740715000142],[39.83655921000019,20.620655119000105],[39.91309151600012,20.59889152600016],[40.03647850100003,20.469479083000124],[40.008329721000166,20.43890213400016],[40.104467247000116,20.316684268000074],[40.24449169000013,20.290244199000085],[40.31293009800004,20.217668910000043],[40.39216037000011,20.225762809000173],[40.488297897000166,20.285657657000172],[40.54135789700007,20.220097080000073],[40.56474027100012,20.131513858000062],[40.68102261100006,20.09967785800012],[40.7007177640001,20.14842111300004],[40.62751294900005,20.206966978000082],[40.69523189900019,20.254720979000012],[40.80207135900008,20.15930291],[40.77095481600003,20.001741687000106],[40.941106547,19.946343449000153],[41.05244261600012,19.749391921000097],[40.99371688700006,19.67232002200018],[41.13221248200006,19.643361852000112],[41.215219906000186,19.538950562000025],[41.13769834600009,19.49947032400013],[41.34427262000003,19.359445882000045],[41.34786990800012,19.28606120300003],[41.285726755000155,19.239386389000117],[41.27097787300016,19.166901032000055],[41.30245414500018,19.077598352000052],[41.423592825000185,19.00592238500019],[41.38357299300003,18.94234031700006],[41.40461712900003,18.876330079000127],[41.526834995000115,18.88559309600015],[41.575308454000094,18.828216349000172],[41.50093452100015,18.744849195000143],[41.40452719700005,18.70473943200011],[41.410552655000174,18.62757760100004],[41.48717489300009,18.55608149800014],[41.43272727700014,18.481803197000033],[41.43197824600003,18.477654855000026],[41.43212678000009,18.476139801000045],[41.43405542100004,18.474382128],[41.43488637100006,18.473663468999973],[41.43553132500011,18.472590687000036],[41.43720025900018,18.459930135000036],[41.436522735000096,18.457432810000057],[41.4356437400001,18.456436615000143],[41.47783940600016,18.292226535000168],[41.5830426230001,18.148508747],[41.661250008000025,18.005563946000166],[41.78257429200005,17.848152016000085],[41.838243285000146,17.828720969000017],[41.930601552999974,17.787190189000114],[41.98440917000005,17.834047785000052],[42.04265708000008,17.749868324000033],[42.15030592900007,17.759221274000083],[42.21047057400011,17.69806737500005],[42.32453365000015,17.710448978000045],[42.35034419400017,17.664763418000064],[42.570048569000164,17.482201043000146],[42.597656617999974,17.32564330600013],[42.64757012900009,17.346493346000045],[42.709234580999976,17.216390487000126],[42.74988393700016,17.256770046999975],[42.864547498000036,17.10802218000009],[42.83319020000005,17.06932229100005],[42.95306982800014,16.913199984000187],[42.927798014000075,16.830746850000082],[42.99893525300013,16.81427455900007],[43.1059255350001,16.62571576700003],[43.08958650300019,16.536211180000123],[43.13140539,16.482064995000087],[43.14489522100018,16.345547909000118],[43.1135980360001,16.2337753970001],[43.13904962700002,16.194551737000097],[43.11206996600015,16.061362142],[43.14345630500014,15.853079156000092],[43.1148578640001,15.77825556200014],[43.162072272000046,15.710536612000055],[43.12690878000012,15.583192610000026],[43.16369105200005,15.535078881000118],[43.16908532700006,15.413960381000038],[43.29622208000012,15.214679477000175],[43.30215760600004,15.080230831000108],[43.378959709000014,15.089853577000099],[43.55882411800019,14.985262423000108],[43.740875942000116,14.84844649900009],[43.61658963400009,14.832978159000106],[43.52240157500012,14.974171721000118],[43.43078969900017,14.872458397000173],[43.46370488600013,14.63494744500008],[43.43312761500016,14.59664983100015],[43.485288615000115,14.524690562000103],[43.49479238800018,14.450705398000082],[43.64752631200008,14.405919160999986],[43.61074404100003,14.358315983000182],[43.50174620900009,14.299320457000135],[43.61317221000013,14.122154014000046],[43.63382757600016,13.993310206000103],[43.58223553200014,13.920166283000128],[43.571893068000065,13.819449456000086],[43.623154684999975,13.631483906000142],[43.698967533000086,13.530669904000149],[43.726666652000176,13.353233665000175],[43.60525817600012,13.264200781999989],[43.571083353000176,13.139022315000034],[43.66191546500005,12.914730969],[43.82061676500007,12.802068224000152],[44.04877476800016,12.79892059600013],[44.15775836500006,12.663495127000147],[44.24395669300009,12.729823622000026],[44.19458391300003,12.814180030000045],[44.18882825200012,12.95816149000018],[44.42984656000016,13.040989050000178],[44.45448798400014,13.077861254000084],[44.56483479900004,13.04908294900008],[44.66429981800002,13.147558713000024],[44.646673105000104,13.215547459999982],[44.77824392100007,13.300713257000098],[44.995430195000154,13.243156646000159],[44.9904839240001,13.31878963000014],[45.135904299000174,13.285964376000038],[45.235729046000074,13.30404074900008],[45.31837674200011,13.36420539400018],[45.39356006500009,13.28884220600014],[45.54770386300015,13.322027190000142],[45.601573254000186,13.403056106000179],[45.70175773000011,13.37715563100005],[45.71857505200012,13.509625769000024],[45.80225798100014,13.497025111000028],[45.97926553500008,13.552245417000165],[46.110886536000066,13.646044291000067],[46.26582411800007,13.634197351000182],[46.27427812399998,13.53787300800019],[46.46739594700006,13.568628846000138],[46.61146129800011,13.622181935000071],[46.661243042000194,13.72777957400018],[46.8596157500001,13.745882026000174],[46.92900848400012,13.724762498000132],[47.069302490000155,13.72702530500004],[47.20205380800013,13.76700155399999],[47.30991425400015,13.858268085000077],[47.570137007000085,13.919363862000068],[47.65008950600014,13.965374262000068],[47.74986984000003,14.060136581000165],[47.60580749200017,14.07588400300017],[47.50226570100017,14.06376225400004],[47.269187277000185,13.953887658000042],[47.17573759400017,13.955566283999985],[47.05171259300005,14.020753246000027],[46.799727672000074,14.082857178000097],[46.46199244100006,14.089273237999976],[46.41190685700019,14.068284007000159],[46.32809341700016,14.004064769000081],[46.11304346999998,13.987023075000138],[45.992128594000064,13.939144030000136],[45.43543325900009,13.797941423000168],[45.063762028999975,13.88477291099997],[44.93643466900011,13.90092079100009],[44.816914769000164,13.949484181000116],[44.74083212400018,13.883293666000043],[44.85666480300017,13.819981807000033],[44.85583333300008,13.6925],[44.78416666700019,13.700833333000048],[44.79083333300008,13.797500000000127],[44.71166666700009,13.873333333000062],[44.64833333300015,13.919166667000184],[44.47666666700013,13.913333332999969],[44.560000000000116,13.689166667],[44.48333333300019,13.653333333000091],[44.31916666700005,13.673333333000187],[44.231666667000184,13.74250000000012],[44.15666666700014,13.7125],[44.00833333300005,13.705],[43.825833333,13.895833333000098],[43.921999401000164,13.92196492700009],[44.03000000100002,14.167500000000189],[44.128333333000114,14.244166667000115],[44.125833333,14.36083333300013],[44.09500000000014,14.435000000000173],[44.01666666700015,14.4475],[43.920000000000186,14.405],[43.9425,14.28],[43.912500000000136,14.223333332999971],[43.81833333300011,14.253333333000114],[43.839166667000086,14.322500000000161],[43.77333333300004,14.37583333300006],[43.99583333300012,14.63333333300011],[43.93916666700005,14.66],[43.82750000000016,14.8175],[43.98666666700018,14.83583333300004],[44.06750000000011,14.90416666800013],[44.09583333300009,14.983333334000065],[44.075,15.041666668000062],[43.97666666700002,15.005833333],[43.92833333300001,14.993333333000123],[43.88000000000011,14.88916666700004],[43.7825,14.891666667000152],[43.81083333300006,15.019166667000093],[43.73083333300008,14.925833334000117],[43.70833333300004,15.024166667000088],[43.62916666700005,15.045833334],[43.665833333000194,15.18],[43.66,15.182500000000118],[43.62166666700017,15.195000000000164],[43.71583333300009,15.224166668000066],[43.73916666700018,15.141666667000095],[43.84166666700003,15.1175],[43.845833333000144,15.11083333300013],[43.875000000000114,15.101666667000188],[43.896666667000034,15.116666667000175],[43.78,15.19583333300011],[43.790000000000134,15.285000000000139],[43.79916666700018,15.361423816000183],[43.719166667000025,15.345],[43.659166667000136,15.391666667000038],[43.60333333300008,15.361666667000122],[43.50416666700016,15.487500000000125],[43.62333333300006,15.559166667000113],[43.5475,15.645],[43.655,15.693333333000112],[43.693333333000055,15.66583333300008],[43.651666667000086,15.7375],[43.80166666700012,15.874166667000054],[43.76666666699998,16.0375],[43.83250000000015,16.087500000000148],[43.89624390000017,16.200833333000105],[43.875000000000114,16.31750000000011],[43.785,16.42666666700012],[43.80666666700006,16.46416666800002],[43.74166666700006,16.58833333300015],[43.58416666700015,16.60250000000019],[43.489166667,16.56750000000011],[43.48000000000019,16.63285480800016],[43.40434963100006,16.53737330100006],[43.328806579000116,16.620650523000165],[43.339778308000064,16.82083961000012],[43.279164002000186,16.833160322000083],[43.141118068000026,17.03280981600011],[43.21378328900005,17.11959439400016],[43.18779288200011,17.17912951300019],[43.249126646000036,17.257460463000086],[43.23977369700003,17.310160735000125],[43.10604450800008,17.220858056],[43.06890250800018,17.251614870000026],[42.98418637100019,17.415831076000188],[42.79775691100008,17.60432897700008],[42.74181907999997,17.7069416220001],[42.92141369200016,17.754245962000027],[42.903157455000155,17.821874980000132],[42.80836891100006,17.83338630200012],[42.71250118100011,17.88069064100017],[42.64909897700011,17.812522030000082],[42.55745806000016,17.795794640000167],[42.563843247000136,17.95281626900004],[42.44603205900012,17.96234908300005],[42.37084873600014,18.078811288000054],[42.32921012500009,18.026470745000097],[42.24584297100006,18.141404103000127],[42.133157918999984,18.216497493000077],[42.021821850000094,18.27918024000013],[42.15896846200013,18.349777021000023],[42.19880842800012,18.445824615000163],[42.135046495000154,18.56246668400013],[42.123535173000164,18.681896652000148],[42.071734223000135,18.796740077000152],[42.116340597000146,18.887481672000092],[42.07407246000008,18.96572269],[42.007702493000124,18.98748628300018],[42.05824439200012,19.112492048000092],[41.990525442000035,19.145856896000055],[41.98423018799997,19.304137576000073],[41.83746083000011,19.476627544000166],[41.815247576,19.57087649500005],[41.76938215100017,19.6197996140001],[41.77037140600004,19.623396902000025],[41.77082106700004,19.62447608900004],[41.77199018500016,19.628253241000152],[41.70418130300004,19.71566734400011],[41.665600387000154,19.651096021000114],[41.47080723200003,19.902636398000027],[41.36252885800013,19.88599894000015],[41.30542190799997,19.81369344700005],[41.27457516200019,19.97539155100003],[41.229698991000134,20.01199395800012],[41.23320634700008,20.129085689000135],[41.23401573700005,20.131963519000067],[41.16099078700006,20.137539317000062],[41.17304170300008,20.287456302000066],[41.11323678600013,20.348430336000035],[41.11197773600003,20.350948438000046],[40.93750925900008,20.504912372000092],[40.83417715600007,20.475594473],[40.83399729100017,20.481799795000086],[40.85000522400014,20.508329796000055],[40.77491183300015,20.56246898300003],[40.587493118000054,20.484587694000084],[40.59100047400017,20.59835193200007],[40.537850541000125,20.762478206000083],[40.58020861,20.851780885000153],[40.37912020000016,20.754474240000036],[40.320844132000104,20.806275189000132],[40.42111854000018,20.879390072000035],[40.25168626600015,20.962487429000078],[40.22650524900007,21.02346146400015],[40.04834955200005,20.94000437800014],[40.132616027000154,21.170860347000144],[40.111661824,21.280038043000047],[40.22299789300013,21.337504722],[40.22578579100019,21.404144486000177],[40.13810189200012,21.488141165],[40.17549811400005,21.572223229000087],[40.35451015500007,21.587825195000107],[40.295842979000156,21.50666719900005],[40.24458162200011,21.372128621000172],[40.29674230100011,21.33309804400011],[40.266704944000026,21.149006821000114],[40.477955693000126,20.957721022000158],[40.626433763000136,20.969142412000167],[40.65503220400018,20.923456852000186],[40.800002918000075,20.825790478000044],[40.82635305399998,20.736487799000145],[40.900547123000194,20.716432917000077],[40.940566954000076,20.59655328800011],[41.011973124000065,20.562289118000137],[41.01476102200019,20.45374094700003],[41.10900997300007,20.39105820100002],[41.19471536400005,20.296719318000157],[41.22322387300011,20.18826107900003],[41.311717162000036,20.071169350000105],[41.443108113000164,20.0226059580001],[41.52872357200016,19.934112670000104],[41.57162123300009,19.82277660000011],[41.677201642,19.83419799000012],[41.72864286300006,19.777091040000187],[41.8485224910001,19.848407278000025],[41.88278666100007,19.6742985300001],[41.89420805100008,19.50864340900017],[41.96273639100019,19.47437923900003],[42.046643138000036,19.320685102000027],[42.0950266640001,19.32581123700004],[42.12749219000011,19.22670594800013],[42.09079985100004,19.191632388000187],[42.122725783000135,18.979212521000022],[42.17623544600008,18.86652746900012],[42.25420666600007,18.903309740000168],[42.30079154800018,18.824978790000102],[42.27668971700007,18.7716489930001],[42.33001951500012,18.616695804000187],[42.405292770000074,18.441687734000084],[42.36248504100013,18.414977869000154],[42.42750602500007,18.354183699000146],[42.45835277100008,18.205795561000116],[42.61438514600013,18.153544950000082],[42.78885362300008,17.980875117000096],[42.89065687800013,18.052820881000173],[42.970246879,17.98609118500019],[43.05856030400014,18.03798206700003],[43.160183696000104,17.921429930000045],[43.31261878300006,17.873406133000174],[43.22664359500004,17.92169972700009],[43.2025417640001,18.057497356000113],[43.221378790000074,18.065861051000184],[43.190765143000135,18.133310204000054],[43.18985093200007,18.169193154000027],[43.21661986800018,18.220937456000172],[43.293357485000115,18.226291244000095],[43.39388971300008,18.038908689000152],[43.44788022400019,18.044774076000067],[43.449315733,18.093380304999982],[43.35335807100006,18.169912611000143],[43.209106815000155,18.358230648000074],[43.16180247500006,18.333679156000073],[43.12915708500009,18.44510515700017],[42.92662976000008,18.43503275100005],[42.831661352000026,18.553203667000105],[42.873839556000064,18.82057211200015],[42.86214836900007,18.95223285900005],[42.88723945500004,19.15053337000012],[42.863947014000075,19.284802152000054],[42.773025555000174,19.301979203000087],[42.74100969000017,19.43561845900018],[42.57913172200006,19.57087649500005],[42.60233423000011,19.773493752000036],[42.550893009000106,19.989241111000183],[42.490368636000085,20.03007033100016],[42.45043873700007,19.924399990999973],[42.37048900700012,19.94445487300004],[42.316169955000134,20.03007033100016],[42.19494134300015,20.122700502000043],[42.012468900000044,20.18241548600014],[41.985669103000134,20.142575519000047]],[[43.73833333300013,16.23],[43.710833333000096,16.120000000000175],[43.665,16.134166666999988],[43.61083333300013,16.233333333000076],[43.73833333300013,16.23]],[[43.72083333300009,14.77166666700009],[43.84333333300003,14.730833333000135],[43.90666666800013,14.583333333000041],[43.78166666800007,14.525833333000094],[43.656666668000184,14.498333333000062],[43.585,14.554166667000118],[43.56166666700011,14.641666667000038],[43.595833334000076,14.7375],[43.72083333300009,14.77166666700009]],[[44.68583333300012,13.648333333000096],[44.5833333330001,13.665833333000137],[44.64892141100012,13.783559264000075],[44.716666667000084,13.780833333000032],[44.7225,13.678333333000182],[44.68583333300012,13.648333333000096]],[[44.132500000000164,13.6075],[44.10833333300013,13.4725],[44.1525,13.40416666700014],[44.38333333300005,13.325833334000095],[44.14666666699998,13.191666667],[44.1391666670001,13.127500000000111],[44.050833333000185,13.125],[44.05416666700012,13.245833333000064],[44.086666667000145,13.330833333000044],[43.975833333000026,13.419166667000127],[43.96333333300015,13.565],[44.03750000000019,13.564166667000109],[44.132500000000164,13.6075]],[[43.889166667000154,13.43833333300006],[43.83416666700009,13.4725],[43.8675,13.560833333],[43.96083333300004,13.480833334000124],[43.889166667000154,13.43833333300006]]]]},"properties":{"objectid":691,"eco_name":"Southwest Arabian Escarpment shrublands and woodlands","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Afrotropic","eco_biome_":"AF13","nnh":3,"eco_id":108,"shape_leng":132.855114489,"shape_area":8.54518244624,"nnh_name":"Nature Could Recover","color":"#B85E46","color_bio":"#CC6767","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":100864.35130304415,"percentage":0.3823200216918231}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[44.14503126800014,15.929161801000078],[44.14997753900019,16.02835702300007],[44.21832601500017,16.02916641300004],[44.156632523000155,16.15165407600017],[44.06670031800002,16.164964042000065],[44.00466843200013,16.22584814400011],[44.02335299500004,16.37162824799998],[43.92267207600014,16.561963274999982],[43.996815776000176,16.74031228800004],[44.18145668200003,16.881658086000016],[44.21081024900002,17.01134726000015],[44.26220660700017,17.07916189900004],[44.22865620700014,17.192662189000032],[44.1208666230001,17.237634002],[44.04662744000012,17.303307126000163],[43.88815533700017,17.38754004500015],[43.9202780600001,17.461779229000115],[44.07303945700005,17.52888002900005],[44.07303945700005,17.570996489000095],[43.93241331100012,17.65023254],[43.848180392000074,17.63809728900003],[43.80106706400011,17.743745358000012],[43.7118372760001,17.854390295000087],[43.54908753200016,17.941756437000095],[43.44788022400019,18.044774076000067],[43.39388971300008,18.038908689000152],[43.293357485000115,18.226291244000095],[43.21661986800018,18.220937456000172],[43.18985093200007,18.169193154000027],[43.19003167400007,18.158311357000173],[43.1899612740001,18.15165637400014],[43.190765143000135,18.133310204000054],[43.221378790000074,18.065861051000184],[43.23833478100016,18.054467149000118],[43.26252654400014,18.04670549100007],[43.273318409000126,18.045806169000116],[43.2838396410001,18.034204915000146],[43.283672503000105,18.02413250800015],[43.28420020600015,18.020805016000168],[43.285818985000105,17.98914888000013],[43.291779672000075,17.967475219],[43.32077379600008,17.89579925200013],[43.32251132500005,17.892471759999978],[43.322947397000064,17.891662370000176],[43.34337559599999,17.88526182600009],[43.41082475000019,17.885816777000116],[43.40827127700004,17.808295217000023],[43.40082535000005,17.72478229400008],[43.43060905700014,17.549230247000025],[43.37075526000001,17.46131103199997],[43.39939344099997,17.292059385000016],[43.45294683800017,17.141708936999976],[43.53342012600007,17.019137523000154],[43.63336737600008,16.944964636000122],[43.66057364800014,16.88253340200015],[43.620007058000056,16.774974186000065],[43.5241393280001,16.72497188000017],[43.48000000000019,16.63285480800016],[43.489166667,16.56750000000011],[43.58416666700015,16.60250000000019],[43.74166666700006,16.58833333300015],[43.80666666700006,16.46416666800002],[43.785,16.42666666700012],[43.875000000000114,16.31750000000011],[43.89624390000017,16.200833333000105],[43.94252294400019,16.085460686000147],[43.876849820000075,15.922705553000014],[43.80253978000013,15.661301335000076],[43.785407662000125,15.487124789000063],[43.91822449800003,15.395799043000181],[44.04662155700004,15.191956311000126],[44.097335773000054,15.155095598000173],[44.15481086199998,15.04653154100015],[44.18861330300001,14.82587767400014],[44.24693404300007,14.610090937000109],[44.28675921000013,14.55529424000008],[44.39217021800016,14.589116206000028],[44.50923970000002,14.687625891000039],[44.584906559000046,14.640512563000073],[44.52922717200005,14.546285908000073],[44.39077847800013,14.498565395000071],[44.32462233300009,14.439984381000045],[44.36199298000014,14.317267258000129],[44.47309490200007,14.232930798000154],[44.50015079900004,14.072495954000033],[44.47666666700013,13.913333332999969],[44.64833333300015,13.919166667000184],[44.71166666700009,13.873333333000062],[44.74083212400018,13.883293666000043],[44.816914769000164,13.949484181000116],[44.93643466900011,13.90092079100009],[45.063762028999975,13.88477291099997],[45.43543325900009,13.797941423000168],[45.992128594000064,13.939144030000136],[46.11304346999998,13.987023075000138],[46.32809341700016,14.004064769000081],[46.41190685700019,14.068284007000159],[46.34327298700009,14.142021339000166],[46.176568702000054,14.170166218000134],[46.136877206000065,14.137691357000165],[45.9001715550001,14.142021339000166],[45.822953553000104,14.219961004000083],[45.8057739730001,14.34127655900005],[45.70705253200015,14.334380257000191],[45.68302918400019,14.421131237999987],[45.57092022400019,14.433142912000164],[45.51219648300014,14.390434737000078],[45.50952722200003,14.270317993000106],[45.46948830700018,14.188905534000071],[45.38941047800006,14.09948529200011],[45.350706194000054,13.956679830000098],[45.2999902360001,14.156874402000142],[45.328017476000014,14.451827739000123],[45.2732976260001,14.533240198000158],[45.17987349300006,14.551925024000184],[45.09712640300012,14.47318182700019],[45.085114728000065,14.365076757],[45.0199816870001,14.390871442000105],[44.99920734800014,14.483321748000094],[44.93670446500005,14.59420815599998],[44.89245782100011,14.595017546000179],[44.80162629400019,14.674157886000103],[44.79829880200003,14.770835006000084],[44.72248595400009,14.830819787],[44.72329534400012,14.832528498000102],[44.72833154700015,14.839992871000163],[44.72329534400012,14.832528498000102],[44.72248595400009,14.830819787],[44.705039106000186,14.867512126000065],[44.74829649700007,14.969135517000154],[44.85081921000011,14.934961279000163],[44.83750924400016,14.98163609400018],[44.83912802300006,14.980826704000151],[44.83750924400016,14.98163609400018],[44.8183536840001,14.989999789000024],[44.74919581900019,15.06833073900009],[44.734177141000146,15.131643011000108],[44.85585541300014,15.032537721000097],[44.929959550000035,15.07912260300003],[44.991653042,15.128315519000125],[44.90163090600015,15.188300300000037],[44.90414900700006,15.186681520000036],[44.90163090600015,15.188300300000037],[44.80162629400019,15.199991486000158],[44.78247073400013,15.26582186000013],[44.74748710700004,15.342534031000184],[44.78750693800009,15.384172641000134],[44.75786546300009,15.545052685000087],[44.69082981800011,15.71413390000015],[44.68336544500005,15.829966580000189],[44.49333869700007,15.935007395000014],[44.53164981600008,15.850021461000154],[44.387488492000045,15.850021461000154],[44.30753876200009,16.019183938000026],[44.24413655800015,15.947507971000164],[44.14503126800014,15.929161801000078]],[[44.32912249100008,15.284977420000075],[44.30753876200009,15.437502439000184],[44.51833985000019,15.465021692999983],[44.573288427000136,15.353325895000125],[44.58417022300006,15.31915165800001],[44.40250717000009,15.227510741000117],[44.366624220000176,15.291632403000108],[44.32912249100008,15.284977420000075]],[[44.59667080000008,15.688323357000172],[44.60665327400005,15.642457933000117],[44.50080307000013,15.501624101000175],[44.42912710300004,15.540834542000027],[44.53164981600008,15.65082162800013],[44.59667080000008,15.688323357000172]]]},"properties":{"objectid":692,"eco_name":"Southwest Arabian highland xeric scrub","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Afrotropic","eco_biome_":"AF13","nnh":4,"eco_id":109,"shape_leng":36.6660618278,"shape_area":2.74053458963,"nnh_name":"Nature Imperiled","color":"#D55063","color_bio":"#CC6767","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":32710.180728617317,"percentage":0.123985896346423}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[113.81855455600032,-26.268409032999898],[113.8832200080002,-26.340309991999902],[113.88917000800006,-26.47974999199988],[113.8649800080002,-26.535129991999952],[113.69203000800007,-26.659989991999964],[113.59144000800018,-26.579019991999928],[113.5603600080002,-26.35304999199991],[113.47895000800008,-26.269419991999882],[113.4457600080002,-26.170199991999823],[113.38719000800018,-26.11085999199986],[113.35604000800015,-26.256599991999906],[113.27639000800013,-26.29215999199988],[113.32851000800008,-26.434229991999928],[113.5432000080001,-26.627699991999975],[113.75679000800017,-26.89390999199992],[113.96446000800029,-27.229439991999925],[114.10154000800014,-27.496989991999953],[114.16272000900005,-27.706909991999964],[114.10456000900001,-27.84980999199996],[114.17441000900021,-28.11024999199998],[114.2389000090003,-28.187559991999876],[114.32313000900001,-28.232429991999936],[114.43566000900034,-28.397419991999982],[114.53123000900007,-28.495519991999913],[114.60206000900018,-28.624559991999945],[114.6028600090001,-28.77576999199988],[114.63444000900006,-28.873279991999937],[114.8721800080001,-29.11700000099995],[114.9265700090001,-29.3123699919999],[114.99253000900012,-29.477239991999966],[114.96034000900022,-29.66352999099996],[114.98286000900009,-29.918779990999894],[114.95582000900015,-30.04383999099997],[114.99356936900017,-30.11018927399988],[115.05394720700019,-30.099390056999937],[115.22188567800004,-30.300115514999902],[115.22817227300015,-30.40695946699998],[115.3186264200001,-30.483755135999957],[115.48371118800003,-30.66854290799995],[115.54093175900005,-30.806779769999935],[115.61782851200019,-30.788047724999956],[115.61281579800004,-30.61303526399996],[115.64439394900023,-30.518735834999973],[115.59802241000011,-30.36663631099998],[115.69149772900016,-30.326675419999958],[115.78701018700019,-30.244747177999955],[115.92464455800018,-30.270496383999955],[115.98222353900019,-30.32394979299994],[116.01548762400012,-30.561963991999903],[115.9705275990002,-30.705821924999952],[115.99727643100005,-30.793155656999943],[116.07349391500009,-30.747604370999966],[116.16333769200003,-30.899108947999935],[116.19887545100028,-30.99859995999998],[116.29517362900003,-31.054731552999954],[116.52371208700004,-31.247262863999936],[116.4339600090002,-31.34741570999995],[116.39625552600023,-31.574832836999917],[116.50502010800005,-31.61257352899986],[116.56144707900012,-31.717515962999983],[116.56410984300021,-31.784772689999954],[116.67981715500002,-31.861803049999935],[116.698227,-31.974670405999916],[116.76577005200022,-32.02296072899992],[116.71780394000007,-32.09218602999988],[116.7239762060002,-32.19082644599996],[116.77658103100009,-32.24536128699998],[116.7555771550002,-32.39232639199997],[116.86177067100004,-32.54631804699994],[116.80040742800031,-32.601909510999974],[116.92565921400012,-32.66031645599992],[117.01081851100002,-32.7582321729999],[116.94540412700019,-32.78565591599994],[116.98107147200017,-32.93461993699992],[116.936767583,-32.97113033499994],[117.02757259600003,-33.066688556999964],[116.9983596510001,-33.14569855599996],[117.06864174200018,-33.234085053999934],[117.00376128500011,-33.30278397099994],[117.09172064200015,-33.419101652999984],[117.12384026200027,-33.602653430999965],[117.31523901000014,-33.68215946999993],[117.41687780000007,-33.7055548699999],[117.47726438300003,-33.79593659699992],[117.45220953400008,-33.852001135999956],[117.47112279600003,-34.008659408999904],[117.3975982500001,-34.09538645899988],[117.16574106100018,-34.14398959499994],[117.19399260100022,-34.23859412499985],[117.4712600920002,-34.345771843999955],[117.55818948000012,-34.356441670999914],[117.68238833000021,-34.31275552799991],[117.81105037600003,-34.32006840299988],[117.6928863280001,-34.16554634099998],[117.85638423500006,-34.02486045499995],[117.92203498900017,-33.91607290699989],[117.92329411800029,-33.84963995399988],[117.85061647900011,-33.80989078999994],[117.85377511500019,-33.72763816899993],[117.9745787930002,-33.73889539899983],[117.96903232000034,-33.6388892359999],[118.12525171600032,-33.48374171699987],[117.996505683,-33.42329025799995],[117.91975410400016,-33.42034150499995],[117.87724310300007,-33.30765536599995],[117.87815857400005,-33.2090759699999],[117.99720004000005,-33.01256560299993],[117.98918157600008,-32.85353089199998],[118.02938084900018,-32.68629448899998],[117.98062901700018,-32.512882300999934],[117.97124480600007,-32.37298967699991],[118.03479773600009,-32.314739137999936],[118.13145449100011,-32.30599597499997],[118.1905593140001,-32.21583167499989],[118.19461816600017,-32.147846225999956],[118.32438662400023,-32.21010582899987],[118.41854858900001,-32.1437033869999],[118.57127357000002,-32.072349584999984],[118.68181612100011,-32.13290028599994],[118.8674316910002,-32.150917019999895],[119.12060540000027,-32.156223267999906],[119.28466036700013,-31.976770408999982],[119.38887022300003,-32.02354042299993],[119.4703445020001,-31.95891376999998],[119.60707094400016,-31.93375012299998],[119.69258110900012,-31.84426877999988],[119.59372712100003,-31.723148267999818],[119.57691956200017,-31.61826132199991],[119.48178864900012,-31.568731315999912],[119.41914364500008,-31.45377921299996],[119.322929455,-31.477186179999933],[119.30303953400016,-31.423667895999984],[119.18314361700027,-31.27423281199998],[119.25889590600025,-31.226266867999925],[119.03490446300009,-30.99874882299997],[118.94836433000012,-30.938796924999963],[118.85911566900006,-30.922031441999934],[118.79491431300005,-30.86025228999995],[118.60629265800003,-30.750501660999873],[118.41850282300015,-30.536062235999964],[118.42758176500013,-30.416740478999884],[118.33728788100018,-30.34699047199996],[118.2169113460003,-30.290462413999933],[118.16527546900033,-30.296249446999923],[117.98262793200013,-30.249385891999964],[117.95123284300007,-30.17032057299997],[117.88108067200005,-30.16361421099998],[117.8321151020001,-30.081182552999962],[117.74617008400014,-30.008443892999935],[117.68519593000008,-30.000022930999876],[117.67452995800011,-29.862417225999877],[117.76216895800007,-29.837011342999915],[118.14265438900009,-29.881694764999907],[118.36967471700007,-29.868492094999965],[118.53728478400012,-29.837802929999953],[118.587081839,-29.758810029999893],[118.65184025500002,-29.732875750999938],[118.7579345290003,-29.7454702309999],[118.88595603100009,-29.69451513299998],[119.02079771900003,-29.669557512999972],[119.11207580600012,-29.69329640399991],[119.18055729600007,-29.653869607999923],[119.18103020400008,-29.50518218899998],[119.04685973800031,-29.518102557999953],[119.01840217100005,-29.445657767999933],[119.13504792100002,-29.44643024499993],[119.15276340900016,-29.37062649199993],[119.02716830100007,-29.34140583599992],[118.91584019800007,-29.35326002699992],[118.87185666400012,-29.18347166899997],[118.76628122900013,-29.279262572999926],[118.6375122300002,-29.26978297699992],[118.64430995300017,-29.34321967999989],[118.58007808800005,-29.429801889999965],[118.47242729400011,-29.397384711999962],[118.3534927820001,-29.424217194999983],[118.3163299370002,-29.353355411999928],[118.14575200400009,-29.36184125099993],[118.05692294200003,-29.409585912999887],[117.80599960600011,-29.320396427999924],[117.66521447800005,-29.384843875999877],[117.69107063800004,-29.211479127999894],[117.68672948200003,-29.11109544399983],[117.43293014800008,-29.009630158999983],[117.35202030700009,-28.796478192999814],[117.4148406600001,-28.71356960399993],[117.28690331300015,-28.53654095899992],[117.22636417800015,-28.396760988999972],[117.32261659000017,-28.34953114299998],[117.38877864000006,-28.247058856999956],[117.34691623100002,-28.142616151999903],[117.09548193400008,-28.13242543399997],[117.02073664700015,-28.08901974899993],[116.97604366900009,-28.142198564999944],[116.8328552810002,-28.00154872099995],[116.62958524500027,-28.110776822999867],[116.4625548690002,-28.04687688099989],[116.2720642170002,-27.818662634999953],[116.14886482500003,-27.726276459999895],[115.97065734900013,-27.671665175999976],[115.7890778340003,-27.52440267999998],[115.56908422400011,-27.500040007999928],[115.42361445000029,-27.344964907999838],[115.29364013300017,-27.253089861999968],[115.34996031900005,-27.141332605999878],[115.40568539100002,-26.87237744899994],[115.39295193800012,-26.760417853999968],[115.23945615700029,-26.712932527999953],[115.07688897800006,-26.53042027399988],[114.9550018560002,-26.485010139999815],[114.8976211910001,-26.52432629499998],[114.86862181700019,-26.63623811399998],[114.67826846100013,-26.775199841999893],[114.6649551490001,-26.913070750999907],[114.56906131500011,-26.90903285299993],[114.52565009700004,-26.863054257999977],[114.65457164700001,-26.710357606999878],[114.70713037100006,-26.703630459999886],[114.7290572620002,-26.612203509999972],[114.66642768100007,-26.553218883999932],[114.48455044100012,-26.745767627999953],[114.37615969200021,-26.646747511999934],[114.26884467700006,-26.74070546099989],[114.19926448800027,-26.597902305999924],[114.13543696500017,-26.590347360999942],[114.0836029410001,-26.506048214999964],[114.02602379200005,-26.491256668999824],[113.96569068500003,-26.372762709999904],[113.9157791340001,-26.334589008999956],[113.87840271900018,-26.218109051999875],[113.81855455600032,-26.268409032999898]]],[[[112.99220000800017,-25.49953999199988],[112.92150000800007,-25.586979991999954],[112.98056000800034,-25.75577999199993],[112.96693000800008,-25.77821999199989],[113.06075000800024,-25.941829991999953],[113.15607000800003,-26.05460999199994],[113.11543000800009,-25.837279991999935],[113.07676000800029,-25.76802999199998],[112.99220000800017,-25.49953999199988]]]]},"properties":{"objectid":693,"eco_name":"Southwest Australia savanna","biome_num":12,"biome_name":"Mediterranean Forests, Woodlands & Scrub","realm":"Australasia","eco_biome_":"AU12","nnh":3,"eco_id":205,"shape_leng":60.0169981922,"shape_area":16.5959929455,"nnh_name":"Nature Could Recover","color":"#C63901","color_bio":"#FE0000","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":178067.816829042,"percentage":5.390450727349781}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[117.68238833000021,-34.31275552799991],[117.55818948000012,-34.356441670999914],[117.4712600920002,-34.345771843999955],[117.19399260100022,-34.23859412499985],[117.16574106100018,-34.14398959499994],[117.3975982500001,-34.09538645899988],[117.47112279600003,-34.008659408999904],[117.45220953400008,-33.852001135999956],[117.47726438300003,-33.79593659699992],[117.41687780000007,-33.7055548699999],[117.31523901000014,-33.68215946999993],[117.12384026200027,-33.602653430999965],[117.09172064200015,-33.419101652999984],[117.00376128500011,-33.30278397099994],[117.06864174200018,-33.234085053999934],[116.9983596510001,-33.14569855599996],[117.02757259600003,-33.066688556999964],[116.936767583,-32.97113033499994],[116.98107147200017,-32.93461993699992],[116.94540412700019,-32.78565591599994],[117.01081851100002,-32.7582321729999],[116.92565921400012,-32.66031645599992],[116.80040742800031,-32.601909510999974],[116.86177067100004,-32.54631804699994],[116.7555771550002,-32.39232639199997],[116.77658103100009,-32.24536128699998],[116.7239762060002,-32.19082644599996],[116.71780394000007,-32.09218602999988],[116.76577005200022,-32.02296072899992],[116.698227,-31.974670405999916],[116.67981715500002,-31.861803049999935],[116.56410984300021,-31.784772689999954],[116.56144707900012,-31.717515962999983],[116.50502010800005,-31.61257352899986],[116.39625552600023,-31.574832836999917],[116.4339600090002,-31.34741570999995],[116.52371208700004,-31.247262863999936],[116.29517362900003,-31.054731552999954],[116.19887545100028,-30.99859995999998],[116.16333769200003,-30.899108947999935],[116.07349391500009,-30.747604370999966],[115.99727643100005,-30.793155656999943],[115.9705275990002,-30.705821924999952],[116.01548762400012,-30.561963991999903],[115.98222353900019,-30.32394979299994],[115.92464455800018,-30.270496383999955],[115.78701018700019,-30.244747177999955],[115.69149772900016,-30.326675419999958],[115.59802241000011,-30.36663631099998],[115.64439394900023,-30.518735834999973],[115.61281579800004,-30.61303526399996],[115.61782851200019,-30.788047724999956],[115.54093175900005,-30.806779769999935],[115.48371118800003,-30.66854290799995],[115.3186264200001,-30.483755135999957],[115.22817227300015,-30.40695946699998],[115.22188567800004,-30.300115514999902],[115.05394720700019,-30.099390056999937],[114.99356936900017,-30.11018927399988],[114.99791001000006,-30.224359990999915],[115.0424300100002,-30.274019990999932],[115.05853001000003,-30.504089990999944],[115.17831001000002,-30.76072999099995],[115.3113400100001,-30.97081999099987],[115.44074001000013,-31.277159990999905],[115.53954001000022,-31.40909999099989],[115.68590001000018,-31.653389990999983],[115.75014001000022,-31.8399099909999],[115.7470800100001,-32.06049999099997],[115.77457001000005,-32.18148999099998],[115.7299800100003,-32.30967999099994],[115.74622001000023,-32.47313999099998],[115.63442001100009,-32.59393999099996],[115.6068600110001,-32.685209990999965],[115.68859001100009,-33.11951999099995],[115.67863001100022,-33.28706999099995],[115.59328001100005,-33.42141999099994],[115.44054001100017,-33.597389989999954],[115.30803001100026,-33.65506998999996],[115.13462001100004,-33.628599989999884],[115.08491001100003,-33.565829989999884],[114.9966090600002,-33.67718957899996],[115.04579161800018,-33.71879190699991],[115.13764956500006,-34.06543724799997],[115.14591211000027,-34.19316487899988],[115.21682737000003,-34.22057722299991],[115.29070278200004,-34.157600463999984],[115.3352966860001,-34.2118454589999],[115.62409968600002,-34.31353001499997],[115.78722376000019,-34.32305152099997],[115.77423097200005,-34.19907378599993],[115.83366403000002,-34.09221273499992],[115.93872079200025,-33.98321530399994],[116.03790284700028,-34.14553840199983],[116.17923732500003,-34.33465190799984],[116.30161294400011,-34.35005181099996],[116.33655542200006,-34.40576162799994],[116.43312081400006,-34.38698197399998],[116.43717178800011,-34.47009273499992],[116.59326176800005,-34.59369663699994],[116.6664885890001,-34.60471716399991],[116.82123545200022,-34.79359429999988],[117.00552366400007,-34.868846858999916],[117.05811306600015,-34.83482337299989],[117.36428839900009,-34.88368232399995],[117.45520988400006,-34.96730953399987],[117.48128975600014,-34.99470550999996],[117.70046239600015,-35.029643948999876],[117.85094057000003,-35.03349304999995],[117.93268001100034,-35.00472999099992],[118.03151001100014,-35.02069999099996],[118.14927001100011,-34.99020999099997],[118.23199459600005,-34.91638016499991],[118.27655026700006,-34.767181413999936],[118.07573696500003,-34.65936281499995],[117.90076440100006,-34.61620322199991],[117.73428337500025,-34.47878258999998],[117.75186911100013,-34.391620686999886],[117.68238833000021,-34.31275552799991]]]},"properties":{"objectid":694,"eco_name":"Southwest Australia woodlands","biome_num":12,"biome_name":"Mediterranean Forests, Woodlands & Scrub","realm":"Australasia","eco_biome_":"AU12","nnh":3,"eco_id":206,"shape_leng":29.6636234604,"shape_area":5.82281983025,"nnh_name":"Nature Could Recover","color":"#A80000","color_bio":"#FE0000","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":60514.73342680701,"percentage":1.8318958171373956}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-7.888308578999954,40.415225630000066],[-8.1581984849999,40.364155197000116],[-8.353494482999963,40.24061365600005],[-8.368518540999958,40.32836564399997],[-8.453923428999872,40.43826228500018],[-8.441685514999904,40.58544263800019],[-8.473155537999958,40.64055683600009],[-8.591114564999941,40.717806971000186],[-8.73708356499992,40.61511742500011],[-8.830328548999887,40.33396559300013],[-8.899005505999924,40.186357261000126],[-8.85308457799988,40.132178148000094],[-8.933407517999967,39.994385862000115],[-9.057351558999926,39.72085636500009],[-9.082729446999963,39.57319858],[-9.25477052499997,39.400429953000014],[-9.370572551999885,39.33413496600008],[-9.358757588999936,39.16343750800013],[-9.426577578999968,39.073366582000176],[-9.421933501999945,38.93225204500004],[-9.493368439999927,38.777331173000164],[-9.46963055499998,38.69530553300007],[-9.319270442999937,38.660851217000186],[-9.149597588999939,38.68219070400005],[-9.070093560999965,38.84621231200009],[-8.98925848599987,38.837530336999976],[-8.937189432999958,38.75889568000008],[-9.046110588999966,38.710083331000135],[-8.997193465999885,38.64282358700018],[-9.281388431999915,38.654858156000046],[-9.219674489999932,38.59969517500008],[-9.18763952699993,38.48746098800012],[-9.219935502999931,38.40192953400003],[-9.039552587999935,38.43471585100002],[-8.879071495999938,38.51232858600014],[-8.793553451999912,38.329226749000156],[-8.785252517999936,38.19881892000018],[-8.867939489999912,37.980851887000085],[-8.793463430999907,37.90300244600013],[-8.8142475329999,37.59824097300003],[-8.782282474999931,37.54960380600005],[-8.807085531999917,37.403648553000096],[-8.88550443899993,37.316492350000146],[-8.866993508999883,37.265845538000065],[-8.906147557999873,37.15779643600007],[-8.989561575999915,37.028950323],[-8.77755558399997,37.05784542500004],[-8.630286550999813,37.12083324900016],[-8.535129485999903,37.12292738300005],[-8.302243502999943,37.08448294599998],[-8.207154499999945,37.102564723000114],[-8.082015534999925,37.0713721410001],[-7.998089549999975,37.017720249000035],[-7.889356483999961,37.01205559100015],[-7.780737579999936,37.04489488200005],[-7.520684507999874,37.182492037000145],[-7.400848437999969,37.178071086000045],[-7.258453481999936,37.21410857600017],[-7.074196450999921,37.22392311400006],[-6.66717542299989,37.081180141000175],[-6.511928494999893,36.984838210000134],[-6.405012457999817,36.834534090000034],[-6.446886434999954,36.75612893000016],[-6.398104428999943,36.62917863600006],[-6.232857554999896,36.58717138700007],[-6.281661520999933,36.48977350400003],[-6.152276451999967,36.31655527200007],[-6.083473431999948,36.278043109000066],[-6.035303472999885,36.189704220000124],[-5.907351540999912,36.18429521000007],[-5.793311556999925,36.089532598],[-5.645509434999894,36.065382156000055],[-5.592353584999955,36.02042313600015],[-5.43085358899998,36.0762689070001],[-5.433192474999885,36.17126872700004],[-5.326660496999978,36.1938740490001],[-5.211943422999923,36.37141298500018],[-5.165698451999958,36.40582539100012],[-4.912732445999893,36.49815423400014],[-4.733445548999896,36.47927869100005],[-4.645190477999904,36.495186370000056],[-4.537302475999923,36.571222804],[-4.430834535999963,36.693447214000116],[-3.9698045479999,36.725489386000106],[-3.827620479999837,36.75026210000004],[-3.848551432999898,36.7943400150001],[-3.97010445199993,36.814465634999976],[-4.219583585999885,36.93050218800016],[-4.31861744899993,36.88442921300003],[-4.569820571999912,36.920557395],[-4.639672503999975,36.98319401599997],[-4.865962431999947,36.960813497000174],[-4.775734428999954,36.90081667200013],[-4.834165514999938,36.764646787000174],[-4.978209526999876,36.65896691400002],[-5.052504536999891,36.576078775999974],[-5.102828477999935,36.61835961000014],[-5.237866469999915,36.62061886900011],[-5.302912553999874,36.58208357200016],[-5.428254527999968,36.680916268000146],[-5.342450493999934,36.89292879800013],[-5.215872523999963,36.906252671],[-5.195497458999967,36.963220444000115],[-5.354163532999962,37.061149404000105],[-5.21378358599992,37.12699310900001],[-5.24661449499996,37.196224780000136],[-5.094251443999951,37.23387209800006],[-4.966608469999869,37.20835959600004],[-4.875785519999909,37.27412736100007],[-4.981990435999819,37.39493690500018],[-4.914906543999962,37.46669354000011],[-4.810853429999952,37.46001769000003],[-4.83848755899993,37.564404738000064],[-4.910800584999947,37.59735198800013],[-4.831287503999931,37.73922944600008],[-4.673133563999897,37.758314034000136],[-4.726003423999941,37.82711453900009],[-4.656960513999877,37.90463121800008],[-4.76371947399997,37.930082867000124],[-4.877243467999961,37.87605161000005],[-5.050608550999868,37.82803369800001],[-5.181775444999971,37.88724865900002],[-5.254640502999962,37.891619487000185],[-5.376138535999928,37.97167705600009],[-5.402333492999958,37.870474795],[-5.497959440999921,37.99829546500007],[-5.697273554999981,37.954652404000115],[-5.787127556999963,37.88262067500011],[-5.850547550999977,37.77082570100015],[-5.954411568999888,37.85707397600015],[-6.060542556999962,37.874171717000024],[-6.24791949899992,37.75095103500013],[-6.341393477999929,37.75133291400016],[-6.372433508999904,37.64474109000014],[-6.687221582999939,37.50342086100005],[-6.768714468999917,37.5403568910001],[-6.803264505999891,37.61516554399998],[-6.90527746499987,37.61794666000009],[-6.921350434999965,37.712598631000105],[-7.001145482999959,37.70384507400013],[-7.009064536999972,37.63155719399998],[-7.215871569999933,37.494718768999974],[-7.304800544999978,37.495546901000125],[-7.347221523999906,37.58723117500017],[-7.266901433999919,37.660083660000055],[-7.304562498999928,37.74251314000014],[-7.397286464999922,37.74638524400007],[-7.550602537999964,37.69451819500017],[-7.645966467999926,37.62614030500009],[-7.60854646699994,37.52017041800008],[-7.528671455999927,37.48150503400012],[-7.607679442999881,37.42471328100004],[-7.578009516999941,37.37974621500007],[-7.672405504999915,37.2244652550001],[-7.843333465999933,37.352868636000096],[-7.926497535999943,37.463992388000065],[-8.049760462999927,37.46770858900015],[-8.205018454999959,37.52780717000013],[-8.144097441999975,37.727564519000055],[-8.068958540999972,37.81250387600011],[-7.964698561999967,37.879595645999984],[-7.901921459999926,38.09886070200014],[-7.891421449999939,38.207199985000045],[-7.647764553999934,38.16216452300006],[-7.561450564999916,38.23475733600014],[-7.680946496999979,38.27462770300008],[-7.763407492999931,38.42485102100005],[-7.968486511999913,38.39877056200015],[-8.040447497999935,38.475788182000144],[-8.011865542999942,38.51353055100003],[-8.098734581999906,38.60700402700013],[-7.936662436999882,38.61834088600017],[-7.897712570999943,38.74375075400019],[-7.769695428999967,38.64237750200016],[-7.706021462999956,38.62698480800003],[-7.457093522999912,38.703846357000145],[-7.478455473999929,38.759433462000175],[-7.404818442999897,38.83857539200005],[-7.465617582999869,38.89444446500016],[-7.601260580999849,38.87729777300018],[-7.639984470999934,38.77010245200006],[-7.784005516999969,38.91019925800015],[-7.852375527999925,39.00715960500003],[-7.838277501999926,39.17746797600017],[-7.7615545889999,39.26135993000014],[-7.677765564999959,39.29866325500012],[-7.510737535999965,39.31629391800004],[-7.378195506999873,39.414822687000026],[-7.249400522999963,39.40334769300006],[-7.216334585999959,39.25420295800018],[-7.312727477999942,39.17880706800014],[-7.230159528999934,39.135289736000175],[-7.012102473999903,39.235954214000174],[-7.158473469999933,39.44646504200006],[-7.503086534999966,39.537872043000164],[-7.365394495999965,39.66863006800014],[-7.50390058499994,39.77692777699997],[-7.405929547999904,39.81959417900009],[-7.334523443999899,39.93126074300005],[-7.517438531999971,39.892290258000116],[-7.588746567999976,39.989475911],[-7.530216575999873,40.101024290000055],[-7.61575155099996,40.15915982900009],[-7.69038854299987,40.15275773100012],[-7.857878581999898,40.06891992400011],[-7.933645454999919,40.07956259400015],[-8.012021446999938,40.147196674000156],[-7.888308578999954,40.415225630000066]]]},"properties":{"objectid":696,"eco_name":"Southwest Iberian Mediterranean sclerophyllous and mixed forests","biome_num":12,"biome_name":"Mediterranean Forests, Woodlands & Scrub","realm":"Palearctic","eco_biome_":"PA12","nnh":3,"eco_id":805,"shape_leng":39.0001781588,"shape_area":7.31300843383,"nnh_name":"Nature Could Recover","color":"#A80000","color_bio":"#FE0000","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":71237.29854519595,"percentage":2.1564882110395835}}, + {"type":"Feature","geometry":null,"properties":{"objectid":700,"eco_name":"St. Peter and St. Paul Rocks","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Neotropic","eco_biome_":"NO13","nnh":4,"eco_id":609,"shape_leng":0.128230595632,"shape_area":0.000490935831682,"nnh_name":"Nature Imperiled","color":"#BFA244","color_bio":"#CC6767","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":6.0829180745837315,"percentage":0.000023056920905951896}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[19.835510254000155,-33.9725570679999],[19.82552528400015,-33.94723129299996],[19.810480118000044,-33.957233428999984],[19.81804466200009,-33.97377777099996],[19.835510254000155,-33.9725570679999]]],[[[19.457935333000137,-33.86964797999997],[19.409496307000097,-33.86807632399996],[19.400917053000114,-33.92023467999991],[19.42473411600014,-33.91947555499996],[19.457935333000137,-33.86964797999997]]],[[[19.51104545600009,-33.92110824599996],[19.629724502999977,-33.92558669999988],[19.635656357000187,-33.84696960399992],[19.630865097000026,-33.84561157199994],[19.62766075100012,-33.82876205399987],[19.627784729000098,-33.827583312999934],[19.62249565100018,-33.82484817499994],[19.621912003000034,-33.82578659099988],[19.62431144700014,-33.82829284699994],[19.62446594200003,-33.829601287999935],[19.62467575100004,-33.84537506099997],[19.613922119000108,-33.85591506999998],[19.6120224,-33.85768890399993],[19.608978271000126,-33.86133956899988],[19.60234642,-33.86372756999987],[19.601074219,-33.86543273899997],[19.566497803000175,-33.868961333999835],[19.563508987000148,-33.869850158999895],[19.472663879000038,-33.86904907199988],[19.498630524000134,-33.92229461699998],[19.51104545600009,-33.92110824599996]]],[[[19.67958259600016,-33.78631591799996],[19.687379837000037,-33.797420501999966],[19.68829536400017,-33.795505523999964],[19.688570023000068,-33.79365158099995],[19.67958259600016,-33.78631591799996]]],[[[19.7149086,-33.838130950999926],[19.772586823000097,-33.78498840299994],[19.77286529500003,-33.786201476999906],[19.704856873000097,-33.823017119999975],[19.7149086,-33.838130950999926]]],[[[20.078893661,-33.82268142699991],[19.987979889000144,-33.865173339999956],[19.808595657000126,-33.82431411699997],[19.81801986700009,-33.82749557499989],[19.819160461000138,-33.83156204199997],[19.744827271000077,-33.85399627699991],[19.71590995800011,-33.93676376299993],[19.82546806300013,-33.87562560999993],[19.816728592000118,-33.91226196299988],[19.82582473800005,-33.92343902599998],[19.896327972000165,-33.88200759899996],[20.009622574,-33.88745880099998],[20.011089325000114,-33.89192199699988],[20.016036987000064,-33.89508056599993],[20.015420914000174,-33.896717071999944],[20.013376236000056,-33.898391723999964],[20.051275253000142,-33.89285278299997],[20.024538040000095,-33.8668174739999],[20.017101288000106,-33.877376555999945],[20.088138580000134,-33.826858520999906],[20.078893661,-33.82268142699991]]],[[[22.661705017000145,-33.73928451499995],[22.651163101000066,-33.738937377999946],[22.647777557000097,-33.75068664599996],[22.657447815000126,-33.75077056899988],[22.661705017000145,-33.73928451499995]]],[[[19.73718452500009,-33.77932739299996],[19.69178390500008,-33.67655944799998],[19.51361846900005,-33.7194862369999],[19.53810882600004,-33.75908660899995],[19.613218307000125,-33.76122283899997],[19.642284393000068,-33.76941680899989],[19.69171714800018,-33.78564071699998],[19.69519043000014,-33.78577804599996],[19.712127686000144,-33.77968597399996],[19.73718452500009,-33.77932739299996]]],[[[20.003446579000126,-33.63574600199996],[19.97028732300015,-33.635761260999914],[19.92591667199997,-33.67176055899989],[19.96367073100015,-33.671314239999845],[20.092411041000048,-33.74995040899995],[20.176692963000107,-33.81724548299991],[20.128797531000146,-33.72749328599991],[20.123245239000084,-33.69421005199996],[20.108695984,-33.679023742999846],[20.055135727000163,-33.64438247699985],[20.003446579000126,-33.63574600199996]]],[[[19.413770676000183,-33.654754638999975],[19.464542389000087,-33.583786010999916],[19.45651817300012,-33.58302307099996],[19.433568954000123,-33.59359359699988],[19.413770676000183,-33.654754638999975]]],[[[21.66947174100011,-33.44020080599989],[21.61582756000007,-33.4235610959999],[21.614963531000058,-33.42504882799989],[21.613756180000053,-33.42699050899995],[21.674648285000103,-33.43941116299993],[21.66947174100011,-33.44020080599989]]],[[[23.317108154000096,-33.40645599399994],[23.09293174700008,-33.40649795499996],[23.010395050000113,-33.43757247899998],[22.818931580000083,-33.480655669999976],[22.598936081000147,-33.48720550499996],[22.59069824200003,-33.48758315999993],[22.55028343200007,-33.48572540299995],[22.544012070000065,-33.486648559999935],[22.49748611500013,-33.494319915999824],[22.484535217000087,-33.517101287999935],[22.484514236,-33.520404815999825],[22.48220443700012,-33.52203750599989],[22.471321106000175,-33.52440643299997],[22.467771530000107,-33.52577590899995],[22.457508087000065,-33.53279113799988],[22.444400787000063,-33.54417800899995],[22.41471862800006,-33.56373596199984],[22.22358131400017,-33.540306090999934],[22.13336563100006,-33.62580490099998],[22.029062270999987,-33.51764678999996],[21.914485931000172,-33.53492355299994],[21.68531990100007,-33.50420761099991],[21.688396454000156,-33.625423430999945],[21.77438736000005,-33.66377258299997],[21.962570190000065,-33.64371490499997],[22.0071544650001,-33.69773483299991],[22.028450012000064,-33.725040435999915],[22.02967834499998,-33.73684692399996],[22.15717506400017,-33.783512114999894],[22.156343460000073,-33.7871780399999],[22.19321441699998,-33.80830764799998],[22.203666687000066,-33.81996917699985],[22.213630676000037,-33.81789398199993],[22.239313126000127,-33.814281463999976],[22.25352859500009,-33.80940246599988],[22.321577072000025,-33.799808501999905],[22.347290039000086,-33.79757308999996],[22.42610549900013,-33.77519607499988],[22.496156693000103,-33.703022002999944],[22.614183426000068,-33.72750854499992],[22.619935989000055,-33.72756957999991],[22.646211624000102,-33.72903823899986],[22.668048859000123,-33.7340164179999],[22.69707679700008,-33.74362564099988],[22.70920181300005,-33.741798400999926],[22.76142692600007,-33.73184585599989],[22.784690857000157,-33.73011398299997],[22.819417953000084,-33.72957992599993],[22.850475311000082,-33.72426986699992],[22.88418769800012,-33.71760940599995],[22.897859573000062,-33.71595382699985],[22.987110138000105,-33.7066993709999],[23.045572281000034,-33.696006774999944],[23.09353065500011,-33.671550750999984],[23.11783599900008,-33.66284942599998],[23.11763763400012,-33.65747451799996],[23.021074295000062,-33.6704521179999],[22.832805634000124,-33.72243118299997],[22.69296455400007,-33.733070373999965],[22.563642502000164,-33.69082260099998],[22.555242538000073,-33.677425384999935],[22.518188477000137,-33.63574218799994],[22.491315842000063,-33.55419540399993],[22.651762009000095,-33.58102798499982],[22.962385178000034,-33.5651893619999],[23.084615707000182,-33.50732803299991],[23.12818527200011,-33.48753356899982],[23.27847671500018,-33.50800704999995],[23.328634262000037,-33.4583969119999],[23.305482864000112,-33.41811752299998],[23.317108154000096,-33.40645599399994]]],[[[21.751682281,-33.34857559199992],[21.629728317000115,-33.3476219179999],[21.74386596700009,-33.353107451999904],[21.751682281,-33.34857559199992]]],[[[22.12146186800004,-33.254226684999935],[21.749530792000087,-33.26080703699995],[21.622434616000135,-33.27414703399995],[21.617406845000062,-33.274169921999885],[21.61737632800009,-33.274169921999885],[21.500654221000104,-33.29974365199996],[21.49805831900005,-33.30262756299993],[21.498758316000192,-33.32812118499987],[21.62708282500006,-33.295806884999934],[22.09833717300006,-33.26586914099994],[22.12146186800004,-33.254226684999935]]],[[[23.44812202500009,-33.08309555099993],[23.319200516000024,-33.13007354699994],[23.164449692,-33.10612106299993],[22.995000839000113,-33.11299896199995],[22.971000671000127,-33.077999114999955],[22.781999588000133,-33.05599975599995],[22.72800064100005,-33.16299819899996],[22.514999390000128,-33.17100143399989],[22.419692993000126,-33.140213012999936],[22.3299465180001,-33.091152190999935],[22.058000565000043,-33.0730018619999],[21.974916458000052,-33.117179870999905],[22.094491959000038,-33.23376846299993],[22.24511337300015,-33.206203460999916],[22.51502227800006,-33.24422454799998],[22.563146591000077,-33.27561950699993],[22.76608657800017,-33.29518127399996],[23.087944031000063,-33.292274474999886],[23.08695411700006,-33.28967285199991],[22.89963913000014,-33.281730651999965],[23.080059052000024,-33.27307891799995],[23.091894150000144,-33.271007537999935],[23.106410980000078,-33.267585753999924],[23.11517143200018,-33.26596450799991],[23.129583359000037,-33.26229858399989],[23.186830521000047,-33.2594604489999],[23.233463287000063,-33.252124785999854],[23.28031730700002,-33.21391296399992],[23.503786087000037,-33.16166686999992],[23.441492081000035,-33.13287353499993],[23.52727127100019,-33.10121917699996],[23.59218025200005,-33.12965011599994],[23.540307999000106,-33.169940947999976],[23.54040145900018,-33.173820495999905],[23.517559052000138,-33.18848800699993],[23.486246109000035,-33.19363021899994],[23.488348007000013,-33.20393753099995],[23.476837158000023,-33.20311355599989],[23.47731781000016,-33.204387664999956],[23.426177979000045,-33.209693908999895],[23.426118851000126,-33.21022415199997],[23.467905045,-33.237033843999825],[23.347698212000182,-33.25558853099983],[23.136953354000127,-33.26882934599996],[23.171007156000087,-33.28066635099998],[23.08748245200013,-33.29467391999998],[23.08405494700014,-33.294635772999925],[22.89558410600017,-33.303558349999946],[22.891050339000117,-33.30347824099988],[22.811277390000043,-33.30715560899995],[22.807653427000105,-33.303833007999856],[22.619468689000087,-33.29835891699997],[22.491939545000037,-33.26835632299992],[22.36598587000003,-33.28720092799995],[22.480758667000032,-33.311401366999974],[22.541143417000114,-33.354709624999884],[22.790967941000133,-33.36912155199997],[22.861640930000135,-33.40334320099993],[22.956052780000107,-33.41547775299995],[23.09763336200018,-33.37733459499998],[23.24918746900005,-33.36755752599993],[23.26101875300003,-33.29569625899995],[23.423564911000028,-33.2741088869999],[23.469444275,-33.31416320799997],[23.637580872000058,-33.31276321399997],[23.747198105000052,-33.31517791699997],[23.72361564600004,-33.330223082999964],[23.737440109000033,-33.33428573599991],[23.731290817000115,-33.344676970999956],[23.730663300000174,-33.34618377699991],[23.73521232600018,-33.36326217699991],[23.735307693000152,-33.36491393999995],[23.748241425,-33.3746032709999],[23.752655029000152,-33.38434600799991],[23.751932144000136,-33.389038085999914],[23.751535415999967,-33.390579223999964],[23.665708542000175,-33.454513549999945],[23.780355453000084,-33.42256164599996],[24.021545409999987,-33.49978256199989],[24.26692581200018,-33.52387237499994],[24.293264389000115,-33.54623413099989],[24.545629501000178,-33.504402160999916],[24.638523102000192,-33.44967651399992],[24.71630668600011,-33.49513626099997],[24.87133789100011,-33.498989104999964],[24.82632064800015,-33.34632873499993],[24.66020393400015,-33.36429595899989],[24.38503646900017,-33.33288574199992],[24.439147949000073,-33.287723540999934],[24.50060081500004,-33.26870346099997],[24.418346405000023,-33.27397918699995],[24.237325668000096,-33.20304870599995],[24.2354640960001,-33.20820999099993],[23.917873383000085,-33.18558502199994],[23.842914581000116,-33.14305877699985],[23.840955734000147,-33.13989639299996],[23.69979858400012,-33.173160552999946],[23.6006984710001,-33.15507888799988],[23.580530167000063,-33.10398864699994],[23.490203857000097,-33.076190947999976],[23.44812202500009,-33.08309555099993]],[[24.07289505000017,-33.22549056999998],[24.218574524000132,-33.26463317899987],[24.242116928000087,-33.33784103399995],[24.027587891,-33.28084182699996],[24.07289505000017,-33.22549056999998]]],[[[17.94927414200015,-33.01585126899994],[17.933557510000014,-33.031562804999965],[17.962514877000103,-33.02991485599995],[17.960308141000155,-33.02680986699988],[17.958426986000177,-33.026380391999965],[17.952130199000123,-33.02265428299995],[17.948942184000032,-33.0166435239999],[17.949267830000167,-33.01603539599995],[17.94927414200015,-33.01585126899994]]],[[[21.65358734100016,-32.08276367199994],[21.605815887000063,-32.109462737999934],[21.423618317000034,-32.10475921599988],[21.524324417000116,-32.13983535799997],[21.550024033000057,-32.21396636999992],[21.679359436000084,-32.19899368299991],[21.65358734100016,-32.08276367199994]]],[[[18.401597977000108,-32.32061767599998],[18.441696166999975,-32.220664977999945],[18.433988571000157,-32.11434173599997],[18.38426017800009,-32.00796127299992],[18.413858414000174,-31.94471359299996],[18.316659927000103,-31.86650848399995],[18.280187607000073,-31.905643462999876],[18.314287186000172,-32.06720733599985],[18.311504364000143,-32.17234420799991],[18.343235016000108,-32.30700302099996],[18.401597977000108,-32.32061767599998]]],[[[17.88848304700008,-31.222419738999918],[18.002420425000025,-31.122730254999908],[17.79200935400013,-31.036989211999924],[17.822576523,-31.11182212799997],[17.907415390000097,-31.160497664999923],[17.887586594000084,-31.219169616999977],[17.88848304700008,-31.222419738999918]]],[[[18.069252014000142,-30.41371345499988],[18.036138535000077,-30.38955879199989],[18.026847839000027,-30.376268386999982],[18.105392456000118,-30.477073668999935],[18.196411133000083,-30.512430190999964],[18.069252014000142,-30.41371345499988]]],[[[18.260658264000085,-30.355945586999894],[18.17667007400013,-30.43904304499995],[18.252389908,-30.49215888999987],[18.27797317500017,-30.422880172999953],[18.260658264000085,-30.355945586999894]]],[[[18.414495468000155,-30.387556075999953],[18.306255341000053,-30.425895690999937],[18.26040267900015,-30.342044829999907],[18.304107666000107,-30.434200286999896],[18.414495468000155,-30.387556075999953]]],[[[18.022348404000127,-30.166467666999836],[17.996311188000163,-30.1526813509999],[18.03232383700015,-30.201755523999964],[18.057542801000068,-30.219058989999894],[18.057601929000157,-30.219058989999894],[18.024024963000045,-30.160673140999904],[18.022348404000127,-30.166467666999836]]],[[[20.015651703000174,-31.28724479699997],[19.97953033400006,-31.04286003099992],[19.871726990000184,-30.94219398499996],[19.891395569000167,-30.834007262999933],[19.74902534500012,-30.822336196999913],[19.548032761000172,-30.583332061999897],[19.357444763000103,-30.504793166999946],[19.274887085000046,-30.42692565899989],[19.275800705000165,-30.270101546999967],[19.16349029500003,-30.335201262999817],[19.060403824000048,-30.263977050999927],[19.022422791000167,-30.090570449999916],[18.810626984000123,-30.00657272299992],[18.732622147000086,-30.100572585999885],[18.775190353000028,-30.250844954999877],[18.70189094500006,-30.307817458999978],[18.680671692000033,-30.374532699999918],[18.74630737300015,-30.468082427999946],[18.747501372999977,-30.530008315999908],[18.848102570000037,-30.548818587999904],[18.91925430300006,-30.485927581999874],[18.98081970200019,-30.513401030999944],[19.053506851000066,-30.451684951999937],[19.306201935000104,-30.555912017999958],[19.30564308200013,-30.749650954999936],[19.172006607000185,-30.623937606999903],[18.931669235000186,-30.622093200999984],[18.923332214000027,-30.68299102799989],[18.783584595000036,-30.68672180199991],[18.715620041000022,-30.778144835999967],[18.66253280600006,-30.91874885599998],[18.578416824000044,-31.000310897999952],[18.509016037000094,-31.005340575999924],[18.443502426000123,-30.908777236999924],[18.346927643000186,-30.896350860999917],[18.288038254000128,-30.958648681999932],[18.36432647700002,-31.074171065999963],[18.524181366000164,-31.177289962999964],[18.416751862000126,-31.305709838999917],[18.438459396000155,-31.392108916999916],[18.39566421500018,-31.567062377999946],[18.29283142100013,-31.529056548999904],[18.213769912999965,-31.557022094999923],[18.2419528960001,-31.572242736999954],[18.383943558,-31.65703010599998],[18.488777161000144,-31.67695808399992],[18.487472534000062,-31.769893645999957],[18.556119919000025,-31.858144759999902],[18.64864540100001,-31.89979171799996],[18.830379486000027,-31.88113784799998],[18.95558929400005,-31.97097015399993],[19.050392151000096,-31.887716292999926],[19.150661469000113,-31.9255542759999],[19.193439484000123,-32.00443649299996],[19.17012786900017,-32.20737838699989],[19.270242691000192,-32.404502868999884],[19.337282181000035,-32.492229461999955],[19.36886215200002,-32.61193084699994],[19.43155860900015,-32.73780822799995],[19.445707321000043,-32.734745025999985],[19.43854522700002,-32.62646102899993],[19.628751755000167,-32.68989944499998],[19.67565727200008,-32.83563613899997],[19.71660041800004,-32.88457870499991],[19.660753250000027,-33.000057219999974],[19.71862220800017,-33.072147368999936],[19.727827072000082,-33.20215988199993],[19.69677162200003,-33.221939086999896],[19.703447342000118,-33.22156143199993],[19.706693649000044,-33.221279143999936],[19.72104072600007,-33.22148132299998],[19.75063133200007,-33.22296142599987],[19.75798225400007,-33.22978210399987],[19.73875427200005,-33.24024200399998],[19.812635422000028,-33.23747253399995],[19.80847740200005,-33.229209899999944],[19.904930115000013,-33.22823333699995],[19.90770530700013,-33.231685637999874],[19.931913376000182,-33.22156524699989],[19.93020439100013,-33.21623992899998],[19.94943237300015,-33.20854568499993],[19.959943771000155,-33.209606170999905],[19.963724136000053,-33.21009826699998],[19.97594261200004,-33.20534896899994],[19.98279190100004,-33.20733261099991],[20.016878128000087,-33.18836975099998],[20.0169830320001,-33.183895110999856],[20.023082733000024,-33.17675399799998],[20.02206230200005,-33.172443389999955],[20.01811790500011,-33.167968749999886],[20.015367508000168,-33.163562774999946],[20.031904221,-33.15481948899992],[20.083356857000183,-33.15266036999998],[20.227626800999985,-33.188858031999985],[20.46529006999998,-33.20972824099988],[20.596204758000056,-33.25459670999993],[20.805315018000044,-33.25333785999993],[20.80148506200004,-33.25472640999982],[20.786066055000106,-33.256881713999974],[20.783031464000146,-33.25929260299995],[20.78550148000005,-33.26464462299987],[20.789224624999974,-33.265827178999984],[20.760581970000032,-33.287925719999976],[20.76046562200014,-33.28980255099998],[20.773200989000088,-33.29565048199987],[20.918243408000137,-33.313533782999855],[20.92271041900017,-33.32529449499992],[20.914567947000023,-33.3374938959999],[20.90144920300014,-33.34212112399996],[20.85010910000011,-33.32394027699996],[20.661436081000147,-33.33456420899995],[20.74259758000005,-33.406276702999946],[20.740804672000024,-33.40655517599998],[20.7440338130001,-33.41341781599988],[20.744588852000106,-33.41492080699987],[20.713603973000147,-33.45484161399992],[20.59092521700012,-33.44076919599996],[20.600009918000126,-33.438728332999915],[20.58289909400014,-33.42250060999993],[20.58207511900008,-33.42125320399998],[20.601264954000044,-33.40475082399996],[20.56946754500018,-33.41636657699996],[20.578697205000026,-33.44971084599996],[20.366044998000177,-33.49391555799991],[20.362716675,-33.489013671999885],[20.36082267800009,-33.487312316999976],[20.343255997000085,-33.48299789399988],[20.33397293100012,-33.48022842399996],[20.330846786,-33.47880172699996],[20.329183578000084,-33.476348876999964],[20.32709884600007,-33.47032546999992],[20.356002808000085,-33.45581436199984],[20.378231049000078,-33.449626922999926],[20.390686035000158,-33.4469604489999],[20.391248702999974,-33.446399688999975],[20.394849777000047,-33.44406890899995],[20.373550415000068,-33.446037291999914],[20.386703491000162,-33.439334868999936],[20.198017120000145,-33.44301223799994],[20.169487000000117,-33.42686080899989],[20.16276931800013,-33.42663192699996],[20.121870040999966,-33.382392882999966],[20.130292892000114,-33.37963104199997],[20.163961411000116,-33.370552062999934],[20.149749756000062,-33.358337401999904],[20.146749496000155,-33.356063842999845],[20.26901817300012,-33.35182189899996],[20.279531479000127,-33.35449600199996],[20.275075912000148,-33.26364135699998],[20.10174179100011,-33.28594970699987],[20.077606201000094,-33.30249023399995],[20.069574356000146,-33.31140899699989],[20.06112289400005,-33.31266403199993],[20.11168479900016,-33.353610991999915],[20.11807632400007,-33.35891342199989],[20.127796173000036,-33.3600730899999],[20.12806510900009,-33.36684036299994],[20.11631393400006,-33.37821960399998],[20.113155365000125,-33.38054656999998],[20.10698509200006,-33.38191604599996],[20.10128402700002,-33.381122588999915],[20.098608017000117,-33.37988281299994],[20.09727287300018,-33.37921523999995],[20.032913208000082,-33.37374114999989],[20.017316818000154,-33.37627792399991],[19.96754455600012,-33.45662689199992],[19.990564346000156,-33.474109649999946],[19.981624603000057,-33.48640060399998],[19.984951019000164,-33.49416732799989],[20.04699707000009,-33.52738571199984],[20.046979904000125,-33.52744293199987],[20.056116104000182,-33.5240707399999],[20.05707740800017,-33.52446365399993],[20.097528458000056,-33.50942993199993],[20.104120255000055,-33.51173019399988],[20.105136871000127,-33.51107788099995],[20.103713989000028,-33.50759506199989],[20.142436981000117,-33.487613677999946],[20.202384949000134,-33.479881286999955],[20.234567642000115,-33.47930908199993],[20.23974990800008,-33.475955962999876],[20.234178543000155,-33.47216415399993],[20.29547500600006,-33.45869827299998],[20.314420700000028,-33.47214126599988],[20.317752838,-33.47619628899997],[20.31930160500019,-33.47883605999988],[20.319849014000056,-33.48052978499993],[20.32238578800019,-33.48599243199993],[20.28275108300005,-33.49461364699988],[20.314769745000035,-33.51479339599996],[20.310039520000032,-33.51758956899994],[20.301954269000134,-33.51895523099995],[20.306655884000065,-33.520202636999954],[20.220380783000167,-33.57684707599992],[20.310825348000037,-33.608882903999984],[20.335912704000123,-33.65732574499998],[20.339183807000154,-33.657939910999914],[20.34824180600009,-33.660217284999874],[20.367595673000153,-33.665981292999845],[20.382501602000048,-33.67013549799992],[20.39190864600016,-33.6730079649999],[20.402013779000015,-33.67538833599997],[20.41114425699999,-33.67787933299991],[20.49154281600005,-33.706321715999934],[20.471195221000187,-33.72077941899988],[20.55946922300018,-33.7567863459999],[20.599855423000065,-33.74577331499995],[20.879774094000027,-33.76154327399985],[20.870609283000135,-33.80113983199993],[20.767572403000088,-33.89655303999996],[20.94327163700018,-33.87715530399993],[21.08564758300014,-33.87449645999993],[21.24684333800002,-33.92138671899994],[21.353994370000123,-33.92144775399993],[21.495594025000116,-33.88048553499988],[21.650623322000115,-33.91616821299988],[21.716995239000084,-33.835494994999976],[21.863002777000133,-33.81042480499991],[21.873550415000125,-33.766708373999904],[21.74225044300016,-33.74095916699997],[21.72102356000005,-33.73758697499994],[21.720790863000047,-33.73759841899988],[21.688760757000182,-33.730087279999964],[21.661785126000098,-33.7243423459999],[21.557064056000172,-33.72766113299997],[21.510078430000135,-33.729339599999946],[21.502559662000124,-33.728500365999935],[21.416349411000056,-33.734176635999916],[21.33304786700012,-33.655792235999854],[21.302585602000022,-33.60488510099998],[21.463525772000025,-33.5947036739999],[21.513328552000075,-33.56675720199996],[21.41609191900011,-33.50993728599997],[21.31836319000007,-33.52822112999996],[21.285301208000078,-33.53361511199995],[21.281480789000057,-33.532798766999974],[21.191490172999977,-33.507404326999904],[21.166147232000185,-33.50081253099995],[21.157131194999977,-33.4980888369999],[21.15791320800014,-33.49366378799988],[21.15715026900017,-33.490093230999946],[21.113910675000056,-33.45953750599995],[21.12646102900004,-33.39052963299997],[21.286426544000108,-33.38030624399988],[21.01371002200017,-33.36808395399987],[20.993143082000188,-33.367259978999925],[20.99678039600002,-33.36505889899996],[21.00111961400006,-33.36275863599997],[21.012434006000092,-33.35421371499996],[21.015203476000067,-33.34124374399994],[21.038331985000184,-33.33382034299996],[21.03425788900006,-33.32373809799992],[21.113082886000086,-33.30605697599992],[21.065553665000095,-33.29642486599994],[21.063508986999977,-33.29467391999998],[21.31609535200016,-33.290473937999934],[21.56135749800012,-33.255542754999965],[21.75218963599997,-33.25495529199992],[21.66783905000011,-33.20719909699989],[21.50475502,-33.168289184999935],[21.193122863999974,-33.20498657199994],[21.119991302000017,-33.16100311299988],[21.029846191000047,-32.95995712299998],[20.962263107000183,-32.85503387499989],[21.071832657000186,-32.74569320699993],[20.94455337500017,-32.808521270999904],[20.719886780000138,-32.83242416399992],[20.6536636350001,-32.88628387499995],[20.700927734000174,-32.96509551999992],[20.534288406000087,-33.05496215799997],[20.38249397300001,-33.00874710099998],[20.428194046000044,-32.9094924929999],[20.594808578000027,-32.85573959399994],[20.616758347000086,-32.75159454299995],[20.694234848000065,-32.686393737999936],[20.538885117000177,-32.53256988499987],[20.394300461000057,-32.51247405999993],[20.342506409000066,-32.335716247999926],[20.25284576400003,-32.31094741799984],[20.239837646000012,-32.22241592399996],[20.184812546000046,-32.208587645999955],[20.16970443700012,-32.08549880999993],[20.28309822100016,-32.077007293999884],[20.291774750000172,-32.17390441899994],[20.372470856000177,-32.18447494499998],[20.422035216999973,-32.26576614399994],[20.48040962200008,-32.261466979999966],[20.558116913000163,-32.330196380999894],[20.663455963000104,-32.337039947999926],[20.76759338400018,-32.25504302999991],[20.855806351000126,-32.35991668699995],[20.807518005000134,-32.42715835599995],[20.821418762000178,-32.511199950999924],[20.88950729400017,-32.58679580699993],[21.01212501499998,-32.56552886999998],[21.027032852000048,-32.48494720499997],[21.13637733500019,-32.559719085999916],[21.21544838000017,-32.48826217699991],[21.237623215000042,-32.473957061999954],[21.224342346000128,-32.467529296999885],[21.168451309000147,-32.45848083499993],[21.135583878000034,-32.371158599999944],[21.04902839700003,-32.33573913599997],[21.103956223000125,-32.2734031679999],[21.195178986000144,-32.27476501499996],[21.343133926,-32.35902023299997],[21.459085464000168,-32.27384185799997],[21.382780075000028,-32.21820449799992],[21.39667701700006,-32.14003372199994],[21.200809479000156,-32.18648529099994],[20.966943741000023,-32.140632628999924],[20.83114814800018,-32.14698409999994],[20.638376236000056,-32.12633514399994],[20.572423935000188,-32.05395126299993],[20.54780006400017,-31.95739173899989],[20.450635910000074,-31.853086471999973],[20.327661514000056,-31.811616897999897],[20.286012650000146,-31.59700393699984],[20.286626816000023,-31.514848708999978],[20.188970566000023,-31.447832107999943],[20.07572174100011,-31.46186065699993],[19.995412827000166,-31.35982131999998],[20.048122406000118,-31.294460296999944],[20.015651703000174,-31.2899513239999],[20.015651703000174,-31.28724479699997]],[[19.71710777300018,-31.20516776999989],[19.605848312000035,-31.363735198999905],[19.518875122000054,-31.307529448999958],[19.529943466000134,-31.251785277999943],[19.638288498000065,-31.185636519999832],[19.71710777300018,-31.20516776999989]],[[19.64632988,-31.118104934999963],[19.598888397000167,-31.20551490799994],[19.50201797500017,-31.222633361999954],[19.5012569430001,-31.141605376999962],[19.595285416000024,-31.15272140499991],[19.64632988,-31.118104934999963]],[[18.98137092600018,-31.353981017999956],[18.980333328000086,-31.263977050999983],[19.03238868700015,-31.1849861149999],[19.11707687400019,-31.21979713399992],[19.111104965000152,-31.32670974699994],[19.162212372000113,-31.33353805499985],[19.21949768100012,-31.435897826999906],[19.19138526900008,-31.57276534999994],[19.213045120000118,-31.638952254999936],[19.216552734000118,-31.848934173999965],[19.137817383000026,-31.90587043799991],[18.871526718000155,-31.82824325599995],[18.778833389,-31.86822128299991],[18.680019379000157,-31.84319305399987],[18.672180176000154,-31.837404250999896],[18.64900970499997,-31.81246566799996],[18.646537781000063,-31.802591323999934],[18.68226051300013,-31.72644042999997],[18.74971008300014,-31.74774169899996],[18.76262092600018,-31.749979018999966],[18.827421188000187,-31.683383941999978],[18.906234741000162,-31.778650283999923],[18.964246750000143,-31.78181266799993],[18.96374702500009,-31.77587509199998],[19.003292084000066,-31.766551970999956],[19.001581192000117,-31.760313033999978],[18.99998855600012,-31.7612590789999],[18.99393081700009,-31.766981124999973],[18.9439868930001,-31.752561568999965],[18.968736649000107,-31.676143645999957],[18.96740531900008,-31.54257583599997],[19.028488159000176,-31.475049972999898],[18.98137092600018,-31.353981017999956]],[[19.899904251,-31.214246749999973],[19.93358802800003,-31.269027709999932],[19.851665497000056,-31.34125900299989],[19.944129944000053,-31.44419288599994],[19.71991539000004,-31.417367934999902],[19.75813674900013,-31.351085662999935],[19.757253647000084,-31.26238059999997],[19.861879349000105,-31.266113280999946],[19.899904251,-31.214246749999973]],[[18.884881973,-31.451032638999948],[18.74425315899998,-31.527378081999984],[18.558725357000128,-31.662958144999948],[18.443830490000096,-31.61163520799994],[18.52500343300005,-31.537420272999952],[18.60027885400001,-31.54274368299997],[18.708093643000097,-31.494398116999946],[18.884881973,-31.451032638999948]],[[19.329925537000122,-32.26854705799991],[19.47342872600018,-32.5211257929999],[19.385868073000154,-32.5574913019999],[19.27190589900016,-32.38610839799992],[19.263145447000056,-32.330898284999876],[19.329925537000122,-32.26854705799991]],[[20.45893859900019,-33.52854537999997],[20.496994019000113,-33.49652099599996],[20.736703873000067,-33.47013091999992],[20.736322403000145,-33.55089569099994],[20.54500007600018,-33.562980651999965],[20.45893859900019,-33.52854537999997]],[[20.376798630000167,-33.511344909999934],[20.32267570500011,-33.52207183799982],[20.323362349999968,-33.520290374999945],[20.325082779000127,-33.51512908899991],[20.332162857000128,-33.51291274999994],[20.36749267600004,-33.51130294799998],[20.376798630000167,-33.511344909999934]],[[20.11509132400016,-33.45665740999988],[20.118236541999977,-33.45592880199996],[20.133132935,-33.444942473999845],[20.151306152000075,-33.44252777099996],[20.15860366800007,-33.440696715999934],[20.167444229000125,-33.441783904999966],[20.170351028000027,-33.44246292099996],[20.180768967000063,-33.44243240399982],[20.190027237000095,-33.44690704299995],[20.158109665000154,-33.45760345499997],[20.128400803000147,-33.48220825199991],[20.125602722,-33.48181533799993],[20.121360779000156,-33.48018646199995],[20.11509132400016,-33.45665740999988]]],[[[18.02101707500003,-29.496221541999944],[17.947452545000147,-29.538179397999954],[18.01166343700004,-29.5935230259999],[18.057693481000115,-29.530395507999913],[18.02101707500003,-29.496221541999944]]],[[[18.163505554000153,-29.282649993999883],[18.223806381000145,-29.27428054799998],[18.187776566000025,-29.11662864699997],[18.131055832000072,-29.15443229699997],[18.103525162000153,-29.24650382999988],[18.163505554000153,-29.282649993999883]]],[[[17.056226730000162,-29.676937102999943],[17.240165710000042,-29.584863662999908],[17.438756942999987,-29.55329894999994],[17.5472068790001,-29.63725089999997],[17.562044144000026,-29.53559875499991],[17.629583359000094,-29.450088500999982],[17.629068375000088,-29.351549148999936],[17.668256760000077,-29.30595779399988],[17.69149971000013,-29.160551070999873],[17.633323669000106,-29.112230300999954],[17.549856186,-29.119201659999874],[17.62621879600016,-29.236423491999858],[17.437738419000084,-29.2984580989999],[17.413272858000084,-29.40485382099996],[17.464078903000143,-29.519397735999974],[17.23890304600002,-29.58210945099995],[17.08841514600016,-29.650758742999926],[17.073299408000025,-29.514003753999873],[17.000883102000103,-29.52173805199982],[17.056226730000162,-29.676937102999943]]]]},"properties":{"objectid":701,"eco_name":"Succulent Karoo xeric shrublands","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Afrotropic","eco_biome_":"AF13","nnh":2,"eco_id":110,"shape_leng":185.022623349,"shape_area":5.45058026912,"nnh_name":"Nature Could Reach Half Protected","color":"#C73F49","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":57189.642504733965,"percentage":0.21677376675199622}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[34.40666666700014,8.229166667000129],[34.29,8.237500000000125],[34.23083333400007,8.269166667000036],[34.27500000000015,8.398333334000142],[34.191666667000106,8.465],[34.24666666700017,8.689166667000109],[34.15833333300009,8.681666667000059],[34.1400000000001,8.595],[34.024166666000156,8.49000000000018],[33.903333334000024,8.4825],[33.77,8.363333333000128],[33.69166666700005,8.379166667000106],[33.679166667000175,8.438333333000116],[33.56750000000011,8.451762919000032],[33.518089466000106,8.485268855000129],[33.48537053900003,8.6342561780001],[33.542308472000116,8.661430979000158],[33.54925153800008,8.760740942000098],[33.51842155700018,8.815930241999979],[33.37041055800012,8.97870747200011],[33.32883045100016,9.05537288500011],[33.19638045500005,9.207730236000032],[33.19200158100011,9.291280377000078],[33.23423044700007,9.343522600000085],[33.396560587000124,9.439465719],[33.45952946700015,9.504437204000112],[33.545238450000056,9.69386167800019],[33.64075057300005,9.849797766000165],[33.60100945500005,9.957414195000126],[33.53252058900017,9.96042396900009],[33.35739849100008,9.852871578000133],[33.2274585400001,9.799292441000148],[32.95508960200016,9.76708749300019],[32.819339483000135,9.703369271000156],[32.585391513000104,9.615711326999985],[32.212978525000096,9.541336689000047],[32.04360959900015,9.48098095100005],[31.88156545000004,9.381981957000164],[31.720878498000047,9.329583663000108],[31.631074452000178,9.33375718000002],[31.286403553000014,9.394021052000028],[31.076854464000064,9.406415037000102],[30.711332575000142,9.46286698700004],[30.192174590000036,9.484018720000165],[30.008829511000158,9.532023388000141],[29.933404452000104,9.584565516000055],[29.838609486000053,9.57551524000013],[29.668840575000104,9.521721023000111],[29.55087048400003,9.416140559000098],[29.370910520000052,9.338374938000129],[29.256530566000094,9.337812009],[29.115533543000083,9.377667288000112],[28.930053593000025,9.38560159800005],[28.406572559000097,9.38560159800005],[28.222961605000023,9.373882356000138],[27.977687504000187,9.336878098000113],[27.849866498000154,9.225473049000016],[27.820425566000097,9.173895678000122],[27.845031481000035,9.079752153000072],[28.27518253800008,8.892733453000062],[28.754873493000105,8.64484839000005],[29.086284557000113,8.439602067000123],[29.240915583000117,8.36905594700005],[29.40327858000012,8.238905442000089],[29.458162444000152,8.080222772000184],[29.425743589000035,7.842888010000138],[29.42610149700016,7.696167321000132],[29.439439451000112,7.624516465000113],[29.51561552900006,7.46206143500001],[29.592176503000076,7.357152026000051],[29.81780660800007,7.130359351000095],[30.07442460900006,6.92335450600018],[30.228450462000183,6.854664474],[30.45756358300008,6.861232030000053],[30.682449542000143,6.92671330200011],[30.81174056600014,6.906437478000043],[30.976350583999988,6.750458977],[31.203029600000036,6.490819971000121],[31.274139487000127,6.320156375000124],[31.309949491999987,6.056592627000043],[31.509849501000076,5.884256171],[31.603719608000063,5.720678301000135],[31.643459552000138,5.507591714000057],[31.64357958100004,5.414999512000179],[31.579980550000187,5.065863237000087],[31.561889553000185,4.859552581000116],[31.591329479000137,4.789467633000186],[31.669931447000067,4.789387670000053],[32.31560856000016,5.11631860600005],[32.451080567000076,5.201224436000075],[32.59310956900015,5.32711525700006],[32.79841657700018,5.545816043000059],[33.09556946099997,5.84252234000013],[33.235031590000176,5.999503652000101],[33.393497504000095,6.217614686000104],[33.45967849700003,6.363097368000126],[33.52650053800011,6.603735606000157],[33.62607553600003,7.124226648000104],[33.6376995600001,7.243523258999971],[33.62330246800008,7.492836263000129],[33.54197064100015,7.701666666000108],[33.67166666700007,7.693333333999988],[33.795833334,7.603333334000069],[33.87500000000017,7.51416666700004],[33.93916666700005,7.508333333000166],[33.95666666600005,7.446666666000169],[34.03500000000014,7.458333334000031],[33.959166667000034,7.565833333000114],[34.09083333300015,7.625833333000173],[33.899166666999974,7.783333333000087],[33.975000000000136,7.810000000000173],[34.10666666700013,7.77583333299998],[34.095,7.85],[34.006666667,7.905833333000032],[34.11083333300007,7.99],[34.09916666700008,8.091666666000094],[34.35083333400013,8.172500000000127],[34.40666666700014,8.229166667000129]],[[33.68750000000017,7.974166667000191],[33.775,7.93],[33.59166666599998,7.85],[33.46083333299998,7.958333333000041],[33.583333333000155,7.95],[33.68750000000017,7.974166667000191]]]},"properties":{"objectid":702,"eco_name":"Sudd flooded grasslands","biome_num":9,"biome_name":"Flooded Grasslands & Savannas","realm":"Afrotropic","eco_biome_":"AF09","nnh":3,"eco_id":74,"shape_leng":27.1553459913,"shape_area":15.4252313401,"nnh_name":"Nature Could Recover","color":"#A7DCFB","color_bio":"#BEE7FF","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":189332.35101801896,"percentage":16.373090895818475}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[134.2634886420002,46.06784954100016],[134.20297264200008,46.228230888000155],[134.11958360200015,46.34288928900014],[133.9111027040002,46.34288928900014],[133.72348067400003,46.32204215500008],[133.51499960800027,46.3637372610001],[133.43160956200006,46.35331520300019],[133.21272269800033,46.2178049740001],[132.92085259200007,46.16568881500018],[132.68110669100008,46.06144828200013],[132.52474966300008,45.94678904300008],[132.29942365400007,45.88629181900012],[132.1916355640002,45.838977819000036],[131.99348469100005,45.86773277600008],[131.70429964300013,45.813785841000026],[131.68969769700004,45.73072855700002],[131.60819961400023,45.62260854400017],[131.50016761100017,45.54744734700006],[131.26872264500014,45.459602152000116],[131.1545255840001,45.38219007900011],[131.04153468000004,45.34936503800009],[130.7539976820002,45.32440909500019],[130.70817566100004,45.26160785300016],[130.90338163700028,45.20690101500003],[130.94061254200017,45.092528940000136],[131.12326058300005,45.12609795900005],[131.30967763000012,45.23291274200011],[131.4656376910002,45.27186881100005],[131.6533205730001,45.27585490900003],[131.81970269200008,45.02553087900009],[131.79969760400002,44.920397841000124],[131.87840266900014,44.67116077600019],[131.75270060800017,44.300590299000135],[131.8533325640003,44.087711751000086],[131.84790058800013,43.876137427000174],[131.8173215610002,43.779316554000104],[131.8296506700002,43.657464134000065],[131.80853263300003,43.54456140700006],[131.72964467400016,43.40876585799998],[131.80740359000015,43.33329319000012],[131.99363657100002,43.31759539400019],[132.13723768300008,43.479139647000125],[132.4161076250001,43.97252713400013],[132.563003664,44.17634970600011],[132.8589016100001,44.44551809800009],[133.01629665300015,44.62145894000008],[133.33329754900012,44.933317706000025],[133.45179754300023,45.175539789000084],[133.5592035860002,45.45259002000006],[133.88830560300005,45.76922563200003],[134.2634886420002,46.06784954100016]]]},"properties":{"objectid":703,"eco_name":"Suiphun-Khanka meadows and forest meadows","biome_num":9,"biome_name":"Flooded Grasslands & Savannas","realm":"Palearctic","eco_biome_":"PA09","nnh":3,"eco_id":746,"shape_leng":11.3821137857,"shape_area":3.87306188621,"nnh_name":"Nature Could Recover","color":"#6BD3FA","color_bio":"#BEE7FF","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":33825.29037498259,"percentage":2.9251448625086565}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[66.93374662700018,28.970813573000157],[66.86237354800016,28.867818758000112],[66.8977966440001,28.81159982500003],[66.81388859700013,28.669195480999974],[66.8774334810002,28.597688459000153],[66.93145752900011,28.634906959000148],[66.92327863600008,28.739111785000034],[66.98811349500005,28.798110325000152],[66.93374662700018,28.970813573000157]]],[[[66.92326354800008,29.27261288200009],[66.71585050400006,29.153686416000028],[66.72255753500013,29.088339925000184],[66.61627148300005,29.02509259900006],[66.50334964500013,28.925796382000158],[66.4473804920001,28.707843933000163],[66.35462953700016,28.582039278000025],[66.32446256400016,28.469124648000047],[66.4177166020001,28.36196821900012],[66.71040360800004,28.583300084000086],[66.71180757700012,28.663925946000177],[66.76631157300017,28.832670085000075],[66.80874663399999,28.836349070000097],[66.93776658800016,29.02827219000011],[66.90895061000015,29.141136863000042],[67.11358656200008,29.183045373000084],[66.92326354800008,29.27261288200009]]],[[[66.76463351600012,29.26877195800006],[66.53079249900003,29.28712128600006],[66.52458955500015,29.160045095000044],[66.60881762400015,29.189825997000128],[66.71781958100019,29.177005374000146],[66.76463351600012,29.26877195800006]]],[[[66.36289258400018,29.138126922000083],[66.43750761600012,29.27350186600006],[66.37325261700005,29.369649001000028],[66.31807756600017,29.11326787300004],[66.27039358900015,29.103248314000098],[66.19270357200003,28.958414223000034],[66.18855251900004,28.839678865000167],[66.11675263300015,28.76732275600017],[66.21803251000006,28.726944279000122],[66.26257360900007,28.901716180000108],[66.36876662200001,29.08242934300017],[66.36289258400018,29.138126922000083]]],[[[66.90711950000014,29.54378136400004],[66.86480748499997,29.563621496000053],[66.76383958200017,29.425465939000162],[66.77938851500016,29.36713912400006],[66.88307148400008,29.326590494000072],[66.99932060300006,29.509172653000064],[66.90711950000014,29.54378136400004]]],[[[66.9595335520001,29.803142426000193],[66.87644156699997,29.744203565000134],[66.73426856300011,29.526741960000095],[66.68025256100015,29.419976966000092],[66.72293052999999,29.402736564000065],[66.81050851000015,29.575640977999967],[66.9254684920001,29.642237545000057],[66.9595335520001,29.803142426000193]]],[[[67.52730556900013,30.738953921000075],[67.68701954900013,30.858061939000038],[68.07803348800002,30.93051041600006],[68.13712355900003,31.020957186000032],[68.2022786070001,30.98438929000008],[68.35314163200019,30.95668022700005],[68.41584061500015,31.02805682600001],[68.23677064100008,31.05852487600015],[68.23693056800005,31.096165489000157],[68.64614849300006,31.179401476000066],[68.88305661600009,31.286898043000065],[68.97612759200013,31.46553165500012],[68.8230135230001,31.46381202400005],[68.71086852000008,31.35872558900013],[68.55049153100009,31.294127770000102],[68.49461357400014,31.338646237000034],[68.33357961100012,31.29558773000008],[68.11659963100004,31.29635769100014],[67.95623052100007,31.223866131000193],[67.90131363299997,31.17773280600005],[67.78707851800004,31.15356861800018],[67.77169755799997,31.22166806100006],[67.87274961500003,31.360062502000176],[67.88907655700018,31.496111688000155],[67.82321960800004,31.51369122100016],[67.61471557600015,31.46716679700006],[67.26364861300016,31.442112617000078],[67.06591063200011,31.45152817700017],[66.9129025100001,31.40915883000008],[66.73870057800008,31.336185142000033],[66.64218849499997,31.218487296000035],[66.58569362900005,31.107853047000106],[66.5662385620002,30.97583170200005],[66.52007254800009,30.820424344000116],[66.39659856400016,30.68418891300007],[66.4413684880002,30.59115347500017],[66.50901061500008,30.619686480000098],[66.51831855000006,30.684191092000162],[66.61123664100018,30.845264281000027],[66.82488263599998,30.86611258900001],[66.91197161600019,30.824713028000076],[66.98739650700008,30.86599272800015],[67.20761156700013,30.83505462000005],[67.33966057300006,30.881713155000114],[67.38996154700015,30.853973079000127],[67.32894162700012,30.763337213000113],[67.24741353700017,30.698148469000103],[67.26200056300007,30.648341189000178],[67.40350351799998,30.70555237200017],[67.52730556900013,30.738953921000075]]],[[[69.50367753800009,32.85091105300006],[69.45434551100016,32.909438195000064],[69.36915553600016,32.86684773300004],[69.30223056500012,32.635642657000176],[69.22312953900007,32.574799595],[69.17445364800005,32.465280140000175],[69.1927035650001,32.35576353400012],[69.24746656200017,32.33142215200013],[69.50327252400018,32.39765125700012],[69.58188656200002,32.40119093400017],[69.74217252300014,32.28332494700004],[69.80637354300018,32.32947352700006],[69.66362755200004,32.436528871000064],[69.89727763000008,32.45757046500006],[69.81582648600005,32.55687523100005],[69.78391255700012,32.69408195700004],[69.88588762900008,32.81730800300005],[69.87702158700012,32.85561782700012],[69.63021862700003,32.811365234000164],[69.50367753800009,32.85091105300006]]],[[[69.95982355900014,34.08714605100005],[69.92118063800018,33.982583988000044],[70.1714785170002,33.94833687300013],[70.35022763100017,33.868558086000064],[70.44452655700019,33.69041313900004],[70.42722362600006,33.596474803000035],[70.57903263300005,33.58821594700004],[70.72042058800008,33.67762269000019],[70.98729653000015,33.692282136000074],[71.0872195440001,33.786819443000184],[71.25447053200014,33.75941129000006],[71.27916764200012,33.799009915000056],[71.1458816350002,33.852376655000114],[71.16117056200017,33.899086319000105],[71.09509249800016,33.971025344000054],[71.04837059700014,34.07730720600017],[70.90804261700015,34.10899549400017],[70.67717751100014,34.12559300300006],[70.50063350800008,34.113523397999984],[70.17469750300006,34.12154202900007],[69.95982355900014,34.08714605100005]]]]},"properties":{"objectid":704,"eco_name":"Sulaiman Range alpine meadows","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Palearctic","eco_biome_":"PA10","nnh":4,"eco_id":766,"shape_leng":30.6535076159,"shape_area":2.26087405548,"nnh_name":"Nature Imperiled","color":"#720000","color_bio":"#D6C39D","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":23923.630125826254,"percentage":0.4899065891172534}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[35.77108396799997,31.384550756000067],[35.612353627000175,31.408202926000058],[35.602371153000036,31.1184413630001],[35.537106154000014,30.984855304000064],[35.64717623200005,30.952896835000047],[35.63690511900012,31.053600243000062],[35.67800413800012,31.283287094000173],[35.77108396799997,31.384550756000067]]],[[[35.77836847700007,31.501372690000096],[35.645448679000026,31.42511018100015],[35.78943013800006,31.41296933300015],[35.77836847700007,31.501372690000096]]],[[[35.788710680000065,31.532039572000144],[35.799052884000105,31.58590896300018],[35.748690849000184,31.782770558000152],[35.77432152799997,31.863439746000097],[35.69491139100006,31.895005950000098],[35.65147413600005,31.87576045800006],[35.681691358000194,31.750215100000162],[35.617120034000095,31.638249506000136],[35.61289322000016,31.618104692000145],[35.60794694900005,31.47079574100013],[35.64706745800015,31.44777309699998],[35.788710680000065,31.532039572000144]]],[[[35.692483222000135,31.89878310199998],[35.67449678100007,32.08035622299997],[35.647876849000056,32.09186754600006],[35.64535874500007,31.905797814000096],[35.692483222000135,31.89878310199998]]],[[[35.679532984000105,32.18665608900017],[35.698418747000176,32.45384466900015],[35.69167383200016,32.598995247],[35.57722873200015,32.592607042],[35.558955081000136,32.4263314050001],[35.66163647500002,32.35069243099997],[35.638973560000125,32.20185463200016],[35.679532984000105,32.18665608900017]]],[[[45.770076604999986,34.499781613000096],[45.771652571,34.519854259],[45.60493450500019,34.81687353700016],[45.10448861600008,35.28717558600016],[44.923812502000146,35.76854091000007],[44.94292860600018,35.9391907590001],[44.909633507000194,36.031081899000185],[44.614234620000104,36.094224452000105],[44.343749598000045,36.061709206000046],[44.24895446400012,36.09870726200012],[44.14614153700006,36.41808107500003],[44.07022060500009,36.53142452200012],[44.008388478000086,36.55960397800004],[43.860629607000135,36.564977784000064],[43.740478545000144,36.60443995100013],[43.177204593000056,36.65867287700013],[42.83009757700006,36.820656341000074],[42.786636571000145,36.90334985100003],[42.64019751400019,37.00794343000018],[42.59354752900009,36.90687075300019],[42.45463558800009,36.81426748700011],[42.22774551600003,36.79111197600014],[41.93947258700018,36.87249740600015],[41.624168523000094,36.79670505200016],[41.31141658100012,36.80167887400012],[41.070903569000166,36.6968720590001],[40.98463450700018,36.72105770600007],[40.83839762100013,36.81014359000005],[40.7519954550001,36.834652107000124],[40.614364604000116,36.83152817200016],[40.44060557200015,36.855323725],[40.261501568000085,36.95639573100004],[39.95695450300019,36.950647924000066],[39.73285258700008,36.87020428500006],[39.27315850600007,36.7322983410001],[39.12099846500013,36.6383903470001],[39.095519491000175,36.55297422800004],[39.013629471000115,36.481865681000045],[38.78363759100006,36.51402687600017],[38.63822950800011,36.40066733500004],[38.54808448600005,36.36599341400017],[38.49407150200017,36.42069002600016],[38.46456150299997,36.53612861400012],[38.486579589000144,36.66743883900017],[38.403221562,36.742537171000095],[38.337551530000155,36.66977772500002],[38.24330557800005,36.42202593400003],[38.0847474630001,36.33100098000017],[37.93885054700013,36.32685897800013],[37.81841651200011,36.120018753000124],[37.60887161500017,36.128708608000125],[37.553417614000125,36.02693101300014],[37.646728481000025,35.93713501400009],[37.65701659600012,35.87178332600007],[37.83251152100007,35.87378257800009],[37.761829613000145,35.94081986600014],[37.77489448600011,36.05463337100019],[37.87919251900013,36.04704154600006],[37.920967588999986,35.913152545],[37.84120154300018,35.75153537000011],[37.818016528000044,35.621487292000154],[37.85232147800019,35.52825856800018],[37.736606455000185,35.44346354700019],[37.55396646100013,35.41167635300019],[37.37701057100003,35.42358603200017],[37.344470514000136,35.247774606000064],[37.29367048100005,35.1684655410001],[37.31139753600013,35.03690788300014],[37.253921484000045,34.929026419000024],[37.1833725140001,34.88442279100008],[37.12018956000014,34.67966312300018],[36.9931225900001,34.5633942230001],[36.99584553500006,34.46260887800008],[37.047378482000056,34.29508631700003],[37.072105599000054,34.24485273300019],[36.99585358200011,34.16431085800019],[36.791820456000096,33.87426884500013],[36.671634526000105,33.79787718500012],[36.61114451000003,33.70022382200011],[36.41495148200016,33.60601156500019],[36.52024059100012,33.565824866000014],[36.639450532000126,33.44043545000011],[36.621993542999974,33.31270429799997],[36.466560536000145,33.348492007000175],[36.44348951500001,33.429140835],[36.21307753400015,33.45672785800002],[36.23324254900018,33.50774732900015],[36.354255606000095,33.59101198200017],[36.239189510000074,33.619904067],[36.06762351900011,33.43072384100009],[36.04865661300005,33.32342676400009],[35.92540357600018,33.253014083000096],[35.865867588000185,33.13985017600015],[35.93589352800018,32.97720705600011],[35.927612543000066,32.90337640300015],[35.83045555600006,32.77392444600008],[35.96369948600011,32.74632619099998],[36.04864152500005,32.69114091400019],[36.049244277000184,32.58559534900013],[36.01138281900012,32.35500917600001],[36.085756752000066,32.214085412000145],[36.023074006000115,31.981700595000063],[36.00481776800018,31.850219712000126],[35.91650434300004,31.50083309700011],[35.8725274950001,31.405594892000067],[35.88709651200003,31.36692404400003],[35.92864519200015,31.236522348000108],[35.800311936000185,31.136787534000064],[35.72225078100013,30.923738140000182],[35.718833357000165,30.887405529000034],[35.662715662000096,30.77211244400013],[35.70705223800013,30.601511051000045],[35.64823657700015,30.464814101000115],[35.645898341000134,30.37829932000011],[35.557674847000044,30.123701249000135],[35.491125016000126,30.064885586000116],[35.467832574000056,29.94509588900013],[35.404430370000114,29.923242364000032],[35.37322389500008,30.061737959000027],[35.42844226900007,30.407257489000074],[35.514687253000034,30.509870134000096],[35.51756508400001,30.78029627400008],[35.61783949300002,30.852601766000078],[35.64113193300011,30.915014716000087],[35.53420254100001,30.943972886000154],[35.48716799800013,30.87544454600004],[35.490675354000075,30.85449034200019],[35.432938879000176,30.728315458999987],[35.48896664200009,30.60780630500011],[35.325469895000026,30.33944860700018],[35.25847040200006,30.172174706000078],[35.21413382500009,30.008767890000115],[35.2147633510001,29.9353832110001],[35.09560318000018,29.717297615000064],[35.07896572200008,29.547685477000186],[35.15315979000019,29.576193986000078],[35.21988948600017,29.68851931],[35.20127352000014,29.729438463000065],[35.32564975899999,29.814963989000148],[35.3941780990001,29.805161379000026],[35.54445481300013,29.886729889000094],[35.601921491000155,29.77935083600005],[35.671651363000024,29.716722977000074],[35.65597074600015,29.94716433100018],[35.74464390100019,30.097351113],[35.82450369800006,30.538648441000134],[35.86092624200006,30.629030306000175],[35.974240819000045,30.753856206000023],[36.04960400600015,31.12374736400011],[36.112406698000086,31.256793684000115],[36.24210166400013,31.238926105000132],[36.314003980000166,31.10181006100015],[36.42436567400017,31.075055711],[36.5464323970001,31.090105033000157],[36.67351556000011,31.183745258000158],[36.743745729000125,31.310828421000167],[36.75879505100005,31.40614079300002],[36.71531923200007,31.556634013000178],[36.683548441000084,31.772340961000054],[36.698597763000066,31.99139220300009],[36.80059872300018,32.09506530900006],[36.99958420200005,32.120147513],[37.16178245000003,32.240542088000154],[37.228668325,32.344215195000174],[37.22771154200018,32.540355779000095],[37.18273548900004,32.626468999],[37.097164472000145,32.65188527700013],[37.16930751300009,32.77030866000001],[37.119106618000046,32.85468006000008],[37.14597346800008,32.90378845700013],[36.98505752300008,32.97076439000017],[36.93556959300008,33.08515993400016],[36.80929957400019,33.20605229100005],[36.80786861600012,33.34256432500018],[36.76150546000008,33.527941681000016],[36.84952952500004,33.62084619300015],[37.037799475000156,33.572523683000156],[37.14379853200006,33.77573772900007],[37.20812947100006,33.84291667100007],[37.39382550700003,33.944175091000034],[37.617954581000106,34.10738935300009],[37.808784532,34.06813740400014],[37.917007475000105,34.10148866100013],[37.85859248300011,34.1915129840001],[37.932273603000056,34.246652495000035],[38.026996485000154,34.23978671100008],[38.10207755000005,34.32512638800017],[38.252841502000024,34.35854252100006],[38.395774576000065,34.549981502000094],[38.497852579000096,34.56624306400016],[38.54060347000012,34.505724550000025],[38.64122754700014,34.49153801100016],[38.7567864990001,34.52961599200006],[38.83581946400011,34.493731891000095],[38.97783254100017,34.521204249000164],[39.20062654500009,34.59664221600008],[39.57950550100003,34.810697583000035],[39.615467553000144,34.89118246100014],[39.40836749000016,34.91456595900013],[39.38958750000006,35.02342710000005],[39.62892151400018,34.98207229900004],[39.854122465000046,35.02154620100009],[40.04719155800012,34.96520858000014],[40.168117611000184,35.027806142000145],[40.353885564000166,35.051799340000116],[40.56284356000015,34.98326320000007],[40.618720512000095,35.06888903500004],[40.59429950200007,35.145485883],[40.744098528000166,35.23673882500009],[40.75513850100015,35.354782006000164],[40.84244155400012,35.42707994400007],[40.88205359099999,35.50306307000005],[40.97394959200011,35.52532976300006],[40.947250548000056,35.35742163499998],[40.97043958600011,35.250857303000146],[41.050262462000035,35.27583470400009],[41.206069469000056,35.228530092000085],[41.239730522000116,35.34456714800018],[41.771621455,35.51140993700011],[42.31426251400012,35.629697031000035],[42.73101862000004,35.66888427200013],[43.44662846500006,35.689540634000025],[43.954311624000184,35.63276011400012],[44.31307552100003,35.49017337900017],[44.76898148400011,35.239374598000154],[44.78865850500006,35.24787753600003],[45.09349860000009,35.06185510900019],[45.17169153100019,34.98352219999998],[45.31828649200014,34.91580581000011],[45.49341160600011,34.80428576200018],[45.7143366140001,34.54478271000016],[45.770076604999986,34.499781613000096]],[[42.03441256000002,36.76172854400005],[41.960739487000126,36.690731309],[41.655109480000135,36.65671587000014],[41.47065346300019,36.65461000100004],[41.52659260900015,36.71673566100009],[41.64899857000006,36.733161341000084],[41.74679157600019,36.71565556900009],[41.90864947900019,36.763200741000105],[42.03441256000002,36.76172854400005]],[[40.220371569000065,36.548217330000114],[40.48549250800011,36.61894768500002],[40.60573157900018,36.61056293200005],[40.70754253400008,36.56920092200005],[40.879871614000024,36.54532138200011],[40.918949555000154,36.486221589000024],[40.864356542999985,36.40407424400007],[40.698932475000106,36.33811587399998],[40.55437046200018,36.363200396000025],[40.51839449500005,36.34158262900007],[40.21968458800012,36.34656080899998],[40.20771757700004,36.287419106000186],[40.09795353800018,36.31224848300013],[40.03175360199998,36.3709402450001],[40.042423597000095,36.437421813000185],[40.220371569000065,36.548217330000114]],[[39.47152345400019,35.29080746500017],[39.38747459000007,35.26115313000014],[39.27107945900008,35.27401868099997],[39.157710531000134,35.34839985700012],[39.23916251300017,35.41724244000005],[39.30766261100007,35.41871514000002],[39.39101058000006,35.51813490500018],[39.473918499000035,35.56696552600005],[39.753528563000145,35.59827981400019],[39.84781659200007,35.661823525000045],[39.90662754500005,35.61248948700006],[39.833286563,35.52006877800005],[39.61828253200008,35.4030937870001],[39.47152345400019,35.29080746500017]],[[40.71643858300013,35.466427950000025],[40.61527253200006,35.41524737900011],[40.54212550699998,35.43188294200013],[40.53898246099999,35.556762068000126],[40.609210572000165,35.59623513200012],[40.80437061500004,35.624200346000066],[40.71643858300013,35.466427950000025]],[[38.16513846400005,34.88539559500009],[38.080829593000146,34.853696578000154],[38.01034952200007,35.01010658000013],[38.09558157500015,35.08522653700004],[38.186508461000074,34.96235471000011],[38.16513846400005,34.88539559500009]],[[38.766086556000175,34.87118206700018],[38.67303452300018,34.81050362600007],[38.49819556600016,34.77952847000006],[38.44388552700008,34.93424549500003],[38.59563452000009,34.98761491600004],[38.840827484000044,34.97166231000017],[38.766086556000175,34.87118206700018]],[[37.80678947100006,34.88123364500018],[37.63739355500019,34.827261229000044],[37.62495849900017,34.86543711000007],[37.73219656800006,34.93034656800012],[37.85664754600003,35.042621659000076],[37.9454264850001,34.99404702100014],[37.91632854100004,34.94267115100013],[37.80678947100006,34.88123364500018]],[[37.273807550000186,33.92800455500003],[37.139083544000016,33.85419938300015],[37.11502848700002,33.899998102000154],[37.30651859700015,34.02404457000017],[37.50027048100014,34.19021999100016],[37.835025589000054,34.38503486700017],[37.86031747900017,34.339824055000065],[37.74623458000002,34.20882764900017],[37.63671160300004,34.199145880000174],[37.57567559000017,34.14300640700003],[37.34215560000007,33.994397610000135],[37.273807550000186,33.92800455500003]],[[36.90297635400009,32.27464053100016],[36.721569261000184,32.26239833400007],[36.62140583600012,32.29912492400018],[36.54491054300013,32.388515485000084],[36.52869457800017,32.46737008300016],[36.59167452200006,32.72501805200005],[36.56874850800011,32.835045619000084],[36.652194546000146,32.973255324000036],[36.766300579000074,32.94655024500014],[36.79959148700016,32.79349384300019],[36.98392848100008,32.593246991000115],[37.02280056200004,32.43393500700006],[36.90297635400009,32.27464053100016]]]]},"properties":{"objectid":718,"eco_name":"Syrian xeric grasslands and shrublands","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Palearctic","eco_biome_":"PA08","nnh":4,"eco_id":739,"shape_leng":60.2205936149,"shape_area":13.6315260271,"nnh_name":"Nature Imperiled","color":"#C9AB17","color_bio":"#FEFF73","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":138254.34832379984,"percentage":1.3048651556164355}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[93.93505062100019,66.65071134000004],[93.5936206680002,66.85277069500006],[93.05329854600018,66.9081856360001],[92.54907258700013,66.90838479000001],[92.04480756800001,66.88486969600001],[91.67706263000008,66.80344436800004],[92.14634661400015,66.60632949800015],[92.7359385690001,66.61083041200004],[93.22985864200007,66.58064701100011],[93.52385758400004,66.42552581100006],[93.47885866700017,66.22991297800019],[93.49997754200007,66.036391262],[93.84689361900013,65.7068089620002],[93.79605854900007,65.45976359700018],[93.65219156300003,65.30657342000006],[93.99265256800015,65.21682503000017],[94.48578658700012,65.19094439500009],[94.71508058900014,65.25933787500003],[94.88509358100009,65.37740888400015],[94.53494259300015,65.59499454100012],[94.46307364100005,65.76867813600012],[94.54470851600001,65.93557926300014],[94.54934655900018,66.06385205300006],[94.1442416340002,66.33818755300007],[93.93505062100019,66.65071134000004]]],[[[110.76360366900008,69.27357095200017],[110.91069752000004,69.36081818200012],[110.75309762400002,69.47484542500007],[110.42209660200007,69.5772603800001],[110.30509965100003,69.58054960600009],[109.44020056599999,69.4938135050001],[109.05159759700007,69.36731851600007],[108.99389657500018,69.20027892000007],[109.3861005770001,69.189566345],[109.75900256500006,69.23468914700015],[110.53250152200008,69.21002958800005],[110.76360366900008,69.27357095200017]]],[[[113.80090363400006,69.21912428800005],[113.92800161700006,69.35911598500019],[113.64040359900002,69.55083106600017],[113.26589966200004,69.6360404880001],[113.03189855000016,69.56741784600018],[113.02100358500013,69.47466270000012],[113.14099857600002,69.31217011900009],[113.48799863900012,69.2028501530001],[113.80090363400006,69.21912428800005]]],[[[111.9720005220002,69.33420480100017],[111.95639761000012,69.60389689500016],[111.86029858700005,69.70737182500005],[111.51210058200013,69.8611975180001],[111.0076975980001,69.83812398300012],[110.9956965560001,69.75321949400018],[111.15489957500012,69.60159941500012],[111.35320266400004,69.50681450700006],[111.45359758000018,69.39572428300016],[111.646400632,69.31573360100003],[111.9720005220002,69.33420480100017]]],[[[120.14579764600012,70.15085597500007],[120.3188016360001,70.23944581900003],[120.25189963200012,70.32693713000003],[119.88069967400008,70.34860669700015],[119.7282026800001,70.29388510700005],[119.78469855100002,70.16850424000017],[119.9887995700002,70.12431937300016],[120.14579764600012,70.15085597500007]]],[[[121.3470006470003,70.09328185600009],[122.01879862000021,70.31554562100007],[121.96459955800015,70.38738842200007],[121.61450154400029,70.43587639100019],[121.27539857500005,70.37864525900011],[120.9446025750002,70.23534857700014],[120.85350067500019,70.14166270400011],[121.10009760700007,70.08297312100007],[121.3470006470003,70.09328185600009]]],[[[83.17604053300005,70.49039195400019],[83.108688588,70.5625158840001],[83.268760643,70.72823616800014],[83.10431658700003,70.74358712100013],[83.02880050100015,70.56668219200003],[83.17604053300005,70.49039195400019]]],[[[116.3145976740002,70.65229579000015],[116.4634016010001,70.73382186800012],[116.37950160000003,70.81702499800008],[116.07579758800023,70.90781995200012],[115.61280053400003,70.90907120300017],[115.39929954600007,70.84736128500003],[115.29029859500008,70.7242232480001],[115.54129753600012,70.63538898800016],[116.05439758300008,70.63325998500011],[116.3145976740002,70.65229579000015]]],[[[127.95832853900026,72.62126402400008],[127.16470362700011,72.58904985500016],[126.90442659000007,72.50904308100013],[126.70110357900012,72.50182525600007],[126.65358757600018,72.43013517300011],[127.50444060300026,72.43819269700015],[127.8093266320002,72.351792542],[128.46429458100033,72.20997610400013],[128.49439969500008,72.15088234600012],[128.90190167700007,72.09633694300015],[129.33949267900016,72.11995915800003],[129.37680069700002,72.33226723400008],[129.28019758700032,72.42937242000016],[129.00129663200016,72.47323693100014],[128.698242552,72.47306862300007],[128.17053267900008,72.5665426010001],[127.95832853900026,72.62126402400008]]],[[[128.89358565500004,72.640154989],[128.68829356800006,72.67099486100017],[128.12329059700016,72.63460063700018],[128.33828758700008,72.55680702100011],[128.77996862200007,72.53986803200002],[128.97219868700017,72.58959987600014],[128.89358565500004,72.640154989]]],[[[128.30191063000018,72.78655733400018],[127.87859367400006,72.76072263200007],[127.6383205520001,72.69515117100008],[128.0061035440002,72.65237781600013],[128.63442961400006,72.69933273500004],[128.93780555900003,72.67175795000014],[129.03387457500014,72.72432689900006],[128.5346985450002,72.78350498000003],[128.30191063000018,72.78655733400018]]],[[[128.45773356300015,72.89879185600006],[128.32247965300007,72.82240254300012],[128.83914167400007,72.79404958200013],[129.16783163700006,72.8436662580001],[128.75833157700004,72.89046074700002],[128.45773356300015,72.89879185600006]]],[[[122.45054659800007,72.92517691300009],[122.68193054400001,72.83212286800011],[123.17330956,72.8037702420001],[123.1874766520001,72.86683786100019],[122.72331267000004,72.88212896700009],[122.45054659800007,72.92517691300009]]],[[[120.31659669300006,73.03654977500008],[120.22429668400025,73.13926999900008],[119.74800056700008,73.15267601500011],[119.75620259500033,73.04712421699998],[120.31659669300006,73.03654977500008]]],[[[128.11990363700022,73.42818313800012],[127.47979764000013,73.48758149400015],[127.2238005710002,73.53949514700014],[127.03849764600011,73.48468236200006],[126.73139963300002,73.48365960200016],[126.57026659700011,73.36657899900013],[126.60054069000023,73.25631187800008],[126.76277158800008,73.17241472600006],[126.77998365900021,73.08824181099999],[126.66526759000021,72.99433365000004],[126.36192366400007,72.91627985800017],[126.44999668000014,72.78432858600013],[126.3338776490001,72.71460741200008],[126.38442957700022,72.60514880900013],[126.30220059300018,72.50626615600015],[126.92414853800005,72.57070773599997],[127.31775667600004,72.70461216000018],[127.64637757200023,72.7157218700001],[128.17413354500013,72.80654733500006],[128.37606767400007,72.91905711800007],[128.64221154100005,72.93378294900003],[128.98718268000016,72.99544710200018],[129.13099669300004,73.11860860800016],[128.7924046840003,73.14566438500015],[128.95880155600003,73.22132229300001],[128.69419861900008,73.27309010100015],[128.5596925420001,73.24419667500013],[128.26609760700023,73.28712995600017],[128.42430167100008,73.36464881400008],[128.0648036880001,73.36473280100017],[128.11990363700022,73.42818313800012]]],[[[124.88469654400012,73.70558222300019],[124.50710253500017,73.7900143080002],[124.27120158100001,73.81205686900012],[123.98349761600002,73.64811388400011],[123.38729854200005,73.65962760100018],[123.35399657000028,73.55132184500013],[123.4897996630001,73.47194773600012],[123.21790363200023,73.43986432500003],[123.65039860400032,73.20602397900007],[123.37049869400005,73.15264550500007],[123.45999864400017,73.070265813],[123.28410356800009,72.9443496790002],[123.08509857800004,72.91276314700008],[122.73269654600006,73.01117272500005],[122.51361069600011,72.94821792700014],[122.97026063700002,72.88962138300002],[123.25166359100012,72.8868442910001],[123.67025768000019,72.79627782699998],[124.16693154400002,72.75127673000009],[124.47331256900031,72.66460164800009],[124.76499961400009,72.6696061470002],[124.90054353800019,72.59710754600013],[125.15609754000013,72.55903375700018],[125.29443364400015,72.4801409370001],[125.7241516920003,72.36403028800004],[126.16581764000034,72.3006875750001],[126.3830415340002,72.38847677900014],[126.24803153700009,72.53043721800009],[126.27332258900014,72.70461216000018],[126.38165265300006,72.79766570200019],[126.3299866020003,72.92572542500017],[126.56553668900006,72.98461315600014],[126.71499658400023,73.0832366410001],[126.55609162500002,73.23380462300003],[126.49665856700017,73.36833400200015],[126.30310064100001,73.38463227700015],[126.31990065700006,73.5652386540001],[125.96779668600004,73.52199960100012],[125.63899960200001,73.41422777200012],[125.62519863100022,73.57820093200019],[125.38289658500003,73.55605158500015],[125.19779968800003,73.59308015100004],[125.2573016450001,73.68650836500012],[124.88469654400012,73.70558222300019]]],[[[124.67620055800012,73.89810749900016],[124.57189967600016,73.97897677100013],[124.33029969800032,73.91707490700009],[124.47509757900002,73.8551817610001],[124.67620055800012,73.89810749900016]]],[[[84.40988165900006,73.99424357000004],[84.44756351100017,74.08900651700003],[84.22010061900016,74.08104907400019],[84.04187755300018,74.01707185100014],[84.40988165900006,73.99424357000004]]],[[[83.73648861000004,74.13241320900005],[83.60227154100005,74.18210666300018],[83.14031250300013,74.17476579200019],[82.9842686230001,74.13351140600008],[83.47901163200015,74.08806036800019],[83.73648861000004,74.13241320900005]]],[[[112.3860016640001,74.52516136400016],[112.01689952800007,74.54034417600013],[112.05709863300001,74.44339891600015],[111.9498976110001,74.35407649400014],[111.5942995600002,74.36442998800004],[111.5055006720001,74.30674053400003],[111.83280158600002,74.23225726600015],[112.10089860300013,74.10564744500005],[112.87039956000012,74.0901058880001],[112.93589759600013,74.17048599200012],[113.24490366500004,74.20810095600007],[113.56430061200012,74.43538766000006],[113.33599852400027,74.49957795100016],[112.3860016640001,74.52516136400016]]],[[[86.24796262000012,74.56586690300009],[85.99034851300019,74.62784370100007],[85.75227362900017,74.59175457900011],[85.81273665500015,74.49625922100017],[86.24796262000012,74.56586690300009]]],[[[85.47097762900017,74.51577648200009],[85.6641766410001,74.57166500100004],[85.4845965450001,74.64893994600004],[85.17941262400007,74.56756004800008],[85.47097762900017,74.51577648200009]]],[[[79.39824652800019,74.54498372700004],[79.38750461600011,74.64945945600005],[79.10962658800008,74.60959378300015],[79.39824652800019,74.54498372700004]]],[[[87.08669256500013,75.0188531140002],[86.63121055800013,75.0162275670001],[86.57839166000008,74.94015777200013],[86.33656352700007,74.88987674700019],[86.96322662800009,74.85496226400011],[86.85590356600011,74.92965943900003],[87.20403250400011,74.94827665100013],[87.08669256500013,75.0188531140002]]],[[[82.35782663700019,75.43206468100016],[82.32212056700013,75.52244908900013],[81.53752849700015,75.38676602599998],[81.89087651000006,75.33099150100009],[82.44342062000004,75.3488454580002],[82.35782663700019,75.43206468100016]]],[[[93.27847250700012,75.91178664800015],[93.28175351900018,76.0418000250001],[92.94132956200008,75.98578125100016],[93.08812753300009,75.89953347900013],[93.27847250700012,75.91178664800015]]],[[[96.09868654400015,76.29355635399997],[95.53154752900008,76.29528889400018],[95.53559867000013,76.21984355100017],[95.89050253300019,76.16447404000019],[96.287712543,76.14529943000014],[96.7027285650002,76.18324346800011],[96.70072964900004,76.2658742810001],[96.53556860500004,76.31046382700015],[96.09868654400015,76.29355635399997]]],[[[96.96067057100004,76.16123074600006],[96.94509163100014,76.24728053700017],[97.21588862700008,76.32216865100014],[97.03349254600005,76.38844184500016],[96.82337164400013,76.21708137900009],[96.96067057100004,76.16123074600006]]],[[[112.61430358400014,76.62462526900003],[112.17710167000007,76.6301650370001],[112.17569753400028,76.56818689800008],[112.49120360100017,76.45881932200007],[112.80149864000009,76.53659835400015],[112.61430358400014,76.62462526900003]]],[[[96.3119506600001,76.61661367900007],[96.58171064700008,76.7208226960002],[95.94716654500007,76.68685453],[95.90440358400008,76.63224022800011],[96.3119506600001,76.61661367900007]]],[[[96.37566351800018,77.05963648900013],[96.6722335250002,77.13525667900007],[96.49001363200017,77.20851166200003],[96.1998366700002,77.11118385300011],[95.62979852200016,77.06677803800011],[96.23104853000007,76.97859220300006],[96.37566351800018,77.05963648900013]]],[[[107.37889862700018,77.22159681900013],[107.87219961300002,77.26973341899998],[107.88860366900019,77.33788399100013],[107.44650253200012,77.33538165800007],[107.37889862700018,77.22159681900013]]],[[[89.729820625,77.2216345380001],[89.83215360400015,77.31987748400019],[89.32311257700013,77.3045261960001],[89.28603355200005,77.22667072000007],[89.729820625,77.2216345380001]]],[[[130.30340567700011,70.94315403300004],[130.33940159300005,71.02522795200014],[130.13729865200014,71.09324776699998],[130.0027005420003,71.06678039900015],[129.76620464100006,71.11978420200012],[129.76220664100003,71.25143037400017],[129.42050159400003,71.39481003600002],[129.22610463900003,71.59855767400006],[128.87440467600004,71.72174952200004],[129.53540055500002,71.7538932830002],[129.09140058200023,71.98591023000017],[129.09240758400006,71.80541047100019],[128.8097996480002,71.79008935800005],[128.66479456700006,71.82692631400005],[128.41709859900016,72.02780583200007],[127.81629953700008,72.30021433300004],[127.02915953500019,72.40124845300011],[126.72303767900007,72.39430605800004],[126.88581859700025,72.29763505400007],[126.91526757600002,72.17317770500006],[127.04721063400007,72.00568649300016],[127.31886258400004,71.90900023400008],[127.13303361200008,71.84371945700013],[126.79942363900011,72.01818391000012],[126.77361257400003,72.11456523600015],[126.40054361900013,72.34124794000013],[126.11775161600008,72.26569732000019],[125.88220253500003,72.33097843200005],[125.67165365300002,72.33596734100007],[125.52053866700021,72.40153863400002],[125.23081969300017,72.46153981800018],[125.16638163300001,72.52015245500007],[124.72971364600028,72.62515523800016],[124.34304756700021,72.63960630999998],[124.10887160900018,72.71016651200017],[123.7877736390003,72.75516828000002],[123.34387156600008,72.726265131],[122.65358764100017,72.81098756400019],[122.37415359700003,72.86905085100011],[122.05330658100013,72.89073567300005],[121.88723760900018,72.96426390700015],[120.89219656900002,72.95536769000012],[119.92469762400003,73.01673445300014],[119.65969855800006,72.9770055730001],[119.34570358000008,73.06136205300015],[118.33149765400026,73.23817578600017],[118.43009968100012,73.36803678000007],[118.31249956700003,73.41860698100015],[118.95939658300006,73.42048419200012],[118.97309864700003,73.46041205800009],[118.45010359600008,73.55110056300009],[118.15609761300004,73.57306701600015],[117.22350359500001,73.59431614700014],[116.6257015660002,73.6466874510001],[115.53040357600014,73.69851711700005],[115.19750254500002,73.6768101670001],[114.80999760500026,73.58454988800008],[114.23319962000005,73.58120752100018],[113.6043015680001,73.52438777200013],[113.64550063400009,73.43775862400014],[114.02690153700007,73.31158332100011],[113.56359854400011,73.32169290200017],[113.2785035300002,73.46331119100006],[113.5112996590002,73.62164618000003],[113.40339656900005,73.68294471500013],[113.25859868900022,73.85964478900007],[112.94750267600023,73.96141232500008],[112.79579961600018,73.96253348900012],[112.97499867100021,73.7953170350001],[112.86509666500001,73.72472548400003],[112.44889862700006,73.68198280700017],[111.90229762100017,73.7257028140001],[111.44129965200011,73.79280699000014],[111.22630266200014,73.87972632000009],[111.28990152600005,73.96409755200011],[111.20010368200013,74.03021081900016],[110.85800166800004,73.91907348799998],[110.35279854700013,74.01113545200008],[109.93080157300017,73.94967749300008],[109.51719656100005,73.75294115000014],[109.63050061300015,73.67934384900013],[110.38780254800008,73.70082113500007],[110.72339668500007,73.78171303800008],[110.76899759100013,73.6687378920002],[110.157699525,73.56366604100009],[110.14060262100008,73.51218791200017],[109.62329854700005,73.45851992700011],[109.26069657700015,73.44457193800008],[109.18499759800017,73.3642446390001],[108.88839758300014,73.32899488000004],[108.41940260700005,73.34330027500016],[108.22949952700014,73.32140305500008],[108.10659752400005,73.228211547],[107.83640268400018,73.18715597900018],[107.09860258800006,73.18271474400012],[106.82649952400004,73.162250998],[106.45279656100018,73.19849367700016],[106.20629853500009,73.14767017499997],[106.28649859600017,72.97962273900015],[106.00180054900017,72.94419796600016],[105.9634015420001,72.88761425200016],[105.52320058300006,72.79451461000002],[105.20010352900016,72.82392067300015],[105.63359863000011,72.91783621000013],[105.93070256400017,73.14433602100019],[106.16310155900015,73.28222369300005],[106.44309953800013,73.32492831600018],[107.00050364300012,73.35179315400006],[107.04329661100019,73.44424370200011],[107.22709666100013,73.54680416700006],[107.18890368100017,73.60582215300019],[107.6038965690002,73.63215976900017],[107.85959658400009,73.58749495400019],[108.34950256400003,73.69680771200012],[108.86319755900018,73.92745153600009],[109.09230062100005,73.98745288700013],[109.62590062500004,74.0747918150002],[109.94960067300008,74.20652197300006],[110.01599859000004,74.38155891100001],[110.38960264600018,74.43085506200003],[110.43759960300014,74.49416827100004],[110.71759758200011,74.50368273700013],[111.0595016150001,74.55718341900013],[111.05280263000014,74.61204984900013],[111.50189963800005,74.7003582280002],[111.84819763300015,74.6653979800002],[111.98269666900012,74.77179702100017],[112.22889663500007,74.88358260800015],[112.72650156100008,74.93106357500005],[113.6961975700001,75.29267363100007],[113.74520152900004,75.48056036100013],[113.39830054000004,75.49920054000006],[113.28559864300007,75.60409603500017],[113.65679960700004,75.58065671300005],[113.95050065700002,75.81032454800015],[113.8637995910002,75.89570362000006],[113.65460153700008,75.89956365400008],[113.42169962800017,76.07292270200014],[113.37539665400016,76.23273843800013],[113.1126025320001,76.19113301800007],[113.0025025450002,76.06851298300006],[112.58879862600008,76.24227587100012],[112.77940360800017,76.2659740260001],[112.79840068800013,76.36739019300006],[112.1602015740001,76.50687277300011],[111.98650356200011,76.58774238100011],[111.70680263800011,76.62493070600016],[111.68460065300013,76.70297645000011],[111.342201584,76.69575141700011],[111.1445995580001,76.75482891500002],[110.5831986250002,76.75184629900019],[109.92839864900014,76.6711753420002],[109.5506975190001,76.77903199600001],[109.23539764600008,76.73918845100019],[108.39710255400013,76.74085879700004],[108.01020060900004,76.75614906500005],[108.14050265800012,76.63653561800004],[107.68389865000012,76.52705421700011],[107.15630360900002,76.54514420800007],[106.67069955700003,76.525070052],[106.88790165900019,76.70721098800016],[107.59249852200008,76.937764287],[107.32450057800014,77.03525219200003],[106.83170368000009,77.06941045900004],[106.67819951700011,77.02260892900011],[106.20760359700006,77.07674278000019],[105.88600153900006,77.00807420600017],[105.71970357400005,77.04750452200005],[105.75299867300004,77.1369198160001],[105.0328976360002,77.0894851170001],[104.60320255400012,77.09327692200009],[104.50930059600006,77.13794324600008],[105.06240059400005,77.1789753440001],[105.63770257700014,77.27972950900016],[105.85939754600014,77.3544793210001],[106.26540352500012,77.37831510700016],[105.98459652500009,77.48163212200018],[105.91999853900012,77.55504686500007],[105.42469763000008,77.55032383000014],[105.09909857800011,77.58864907700013],[104.841697539,77.69745841800005],[104.56729867200005,77.66586350400013],[104.43849966600004,77.75779672100009],[104.18489864700013,77.73994209400007],[103.7125016240002,77.64563629500009],[103.29409763700005,77.6362680100001],[102.42459856300019,77.37898633000003],[102.0850986270001,77.33133772500008],[101.53340159200013,77.10497386800012],[101.42240155700017,77.00503006600019],[101.07659960300015,76.920367983],[101.21330257700004,76.79774006800005],[101.40190160100008,76.7573931070001],[101.29460167300005,76.68969264300011],[101.29599759500013,76.53889549900003],[101.97959862900018,76.45944578500013],[101.91459663500018,76.40603613100018],[100.99279767000007,76.52217092000012],[100.53279865600018,76.45879736100011],[100.36009959900008,76.51287823900014],[99.98657953000009,76.48792849799997],[98.86662265100011,76.49973122400007],[99.06202660700006,76.34973505500017],[99.34916663800016,76.33267503200017],[99.97569261100017,76.08947930800008],[99.58164962000006,76.08191849600013],[99.57998665000014,76.14293456000007],[99.32393660700006,76.21415274200012],[98.85915353700011,76.19812922500012],[98.77130850999998,76.2407951240001],[98.369499517,76.15597311300019],[97.81813055000003,76.08004849300005],[97.37950857400017,75.92507833500002],[97.14803360000013,75.96933126400006],[96.93215164900005,75.8626041550001],[96.57312053700008,75.98746752300008],[96.31060754400016,75.91911159400007],[95.75243364400012,75.86375616400011],[96.28780357000016,76.08059851400003],[95.7255015840002,76.140279341],[95.2568125470001,76.10338890800011],[95.06118060300014,76.15368518900004],[94.58785251900014,76.13350424800012],[93.9250565420001,76.13330610000008],[94.11486054900001,76.03315526500018],[93.69450357800014,76.02691359700015],[93.60336261800012,76.12562241000012],[93.37407666300015,76.09825331600007],[93.50630956700019,75.96816400000012],[93.44006353100008,75.92677935900008],[94.2194596600001,75.88421991000007],[93.12896751800014,75.79240940400007],[92.51438860700006,75.77154114700011],[92.05956256800016,75.7361157040001],[91.78205166700008,75.74171582100007],[91.50509665500005,75.65663581600012],[90.9818265090002,75.67847167900004],[90.63276650900008,75.60782732300015],[90.33007050400005,75.60730831500001],[90.15998056600006,75.52084563100016],[89.60031854400006,75.46922216000019],[89.37464150000017,75.49981040699998],[88.62088762500014,75.28460956900005],[88.49907661100013,75.22069403700004],[88.15197764200019,75.13134043400004],[87.47576156700018,75.17431210500001],[87.35072352100013,75.10214073400005],[87.35408751400007,74.94161538500003],[87.19795260700005,74.87858481500007],[87.01435053800003,74.65287022000018],[86.72502165700001,74.68820396500007],[86.67135652200005,74.74378721500005],[86.33244365399997,74.76878288900019],[85.88141662900017,74.74997574200006],[85.76992759400008,74.68828107900003],[86.37337449900008,74.64282886800015],[86.85484359100008,74.57836348300003],[86.93166356600011,74.49102539300003],[87.21176950300014,74.49911258800012],[87.33627362300007,74.3960708350001],[87.12223854000018,74.32959982800014],[86.77559655200014,74.36154560800014],[86.70291857800004,74.44532222700008],[86.47132860500005,74.49442827800016],[86.15618161800006,74.45794218800017],[85.88226353599998,74.35360358700018],[86.45172853000008,74.30645035300012],[86.68855249900008,74.26510359800005],[86.77857950300012,74.15317367400013],[86.94058258100011,74.10734042200005],[87.33280150299998,74.09264577200014],[87.43013752700017,74.00649724200014],[87.04305252100016,74.0326286630002],[87.17236366200012,73.87897094300007],[87.40415161600009,73.81509430300008],[87.38847360100004,73.70459835600008],[87.14312758400018,73.59952667300013],[86.43068660000006,73.54682713300019],[86.09224664000004,73.4968061140001],[86.02047759900012,73.54727036800017],[86.20845753600014,73.6139854560002],[86.72682963300008,73.71811836500007],[87.02268952600008,73.80104740700011],[86.8002626490001,73.88355618000008],[86.07704957900006,73.85158022500019],[85.57969661300012,73.78761859200017],[85.51336659000009,73.7246111550001],[85.0593336460002,73.69142921200006],[84.78543853100012,73.75051492400013],[83.14119763200006,73.6558889370001],[81.91783857800016,73.6573842680001],[81.14234958900016,73.60436386900017],[80.54680665100011,73.59821473800002],[80.55959358000001,73.48681840600005],[80.47003160300017,73.347940161],[80.59535949600007,73.23546004900004],[80.56372049300018,73.15398878900004],[80.38948050800013,73.07837614300013],[80.62127650800005,73.05801968499998],[80.82272364900001,72.92986105600016],[80.64222757800019,72.77160217400018],[80.75773657400009,72.62843541200016],[80.69320664800006,72.52914808100007],[80.8385396290002,72.45259766800012],[81.52454358700015,72.34948835700004],[82.0813825850002,72.31222425900006],[82.1911315370001,72.32512585200004],[82.3742216390001,72.19560080500008],[82.2303776190002,72.10157798000006],[82.74401058800015,71.9074064990001],[83.05760155899998,71.91098456500004],[83.43556252800016,71.84535292200002],[83.74826853700011,71.63376921100013],[83.67214157800004,71.53892244400015],[83.44116264500013,71.48320894000005],[83.36984254000004,71.35519531700015],[83.18456258100014,71.273098431],[83.26275651800017,71.18702634400006],[83.11839265300011,71.12670480400004],[83.33740960300014,71.04869728100016],[83.52433057100006,70.93476860900006],[83.80812856900013,70.5036672120001],[83.50734766100015,70.35232977100003],[82.95700849400009,70.36013516600002],[83.12021655500007,70.22996957400017],[83.15218362500019,70.14385172200002],[83.41226150800009,70.07020161500009],[83.68866750600012,69.93877018799998],[83.72396051500004,69.87171077200009],[83.97663851800013,69.75292260700019],[84.4544064970001,69.7190764820001],[84.50229650100016,69.65130058100016],[84.78610958600018,69.73715926500012],[84.9969025490002,69.77029510699998],[85.25923952300019,69.77029510699998],[85.6677096140001,69.70403029500011],[85.86462365400013,69.60472100400006],[85.981170497,69.47244954200016],[85.84355959600003,69.3073562240001],[85.930618568,69.10957482500004],[85.92333251500014,68.94504611200006],[86.08886755900016,68.78076868900013],[86.19541160700015,68.4857236850001],[86.34880864900003,68.33260140100003],[86.43505055400016,68.36447090600018],[87.02424654800012,68.29774056300005],[87.3270416270002,68.21773412400017],[87.65178656300003,68.16489008000013],[87.93018359900015,68.21587267100006],[88.11752366100006,68.3420699350001],[88.26318353600004,68.53595056400019],[88.48314663600001,68.66712969500003],[88.77610052300014,68.72458294800009],[89.21167752100013,68.68226053900014],[89.4589465150001,68.78461430600004],[90.3308865670001,68.64321025800001],[91.15029857200011,68.62891240800008],[91.25453156100008,68.6431872920001],[92.07147258200007,68.64542341600003],[92.38712365600009,68.62891240800008],[92.77825963600009,68.56143389600015],[92.80641159900017,68.4632466060001],[92.32829258600015,68.39418860900014],[91.67601053400006,68.37730376800005],[91.42626954900015,68.40147533200002],[91.10518666600018,68.39795795000015],[90.49285863100005,68.236290316],[92.18753863900014,68.22729452300013],[93.01508360500009,68.23735817100004],[93.24915361600011,68.20452759699998],[93.20175160600007,68.13736977700012],[92.68393657100012,68.00982168600018],[92.58470154300005,67.96414249300017],[92.4399336690002,67.80799115700012],[92.26096360800017,67.73582833500018],[92.13423962500019,67.581331922],[91.99517865500019,67.5273668820002],[91.54524965900004,67.42871389400011],[90.70218660500007,67.36182362400018],[90.64096853700016,67.26899840500016],[90.39787255700014,67.04646088700014],[91.46034952900015,67.29370372900001],[92.3443295140001,67.45822523400011],[92.69915760400016,67.38706287600002],[92.52378052900019,67.28520447900007],[92.23039966900018,67.22273214300009],[92.12931861000004,67.06815191100003],[92.57235751399998,67.05223618600007],[92.9563906690002,67.0735082830002],[93.84942662999998,67.00334488000004],[94.4241866390002,66.9133210600001],[94.7783205400001,66.72462128600012],[94.90334366700006,66.39110049700008],[95.12889867000007,66.11464303400015],[95.19069659800016,65.8709710500001],[95.27738961700015,65.63514955700009],[95.5285186440002,65.4466869900001],[95.66948666600018,65.37641646600008],[96.23085055000018,65.14165629000001],[96.6404035830002,64.90664381800008],[97.15969852700016,64.75587282500015],[97.43802666300007,64.74764028800013],[97.24867259700011,64.84450809900017],[97.11624858500005,65.01851238500018],[97.05889155700004,65.21149883300006],[96.61535661200014,65.41428372600006],[95.94479362800007,65.63759154000007],[95.55740352100014,65.84955428100005],[95.4232325530001,66.05521433400008],[95.50464664900005,66.7041201560001],[95.38359855600004,66.90276841200006],[95.10337862400007,67.0577685770001],[94.62959255300012,67.22589061200006],[94.3903425260001,67.22344125200004],[94.17175254900013,67.26516821000007],[94.0850065570001,67.35802310100007],[94.17252351600007,67.41529195200019],[94.49176053700006,67.45667625800002],[94.76019266300005,67.42296072300007],[95.60019665700003,67.27635402800007],[95.96851357600019,67.14769986100009],[95.92014362500004,66.66804662400017],[96.02278153800006,66.33715054400017],[96.37116260300019,66.27694333400018],[96.48023966200003,66.11768734100002],[96.47000854300006,65.93117725500002],[96.75727866100016,65.74142471300019],[97.18331152200017,65.59649741600003],[97.97794360400019,65.54047964799997],[98.42958066400013,65.43259449600009],[98.832527584,65.44396991200017],[98.8229526,65.54627020200019],[98.6597975140001,65.65943561800003],[97.55568662300016,65.88479582600019],[97.1978606620001,65.92911011000018],[96.7737425630001,66.12161694500008],[96.66858655900006,66.27742445500013],[96.96822367200014,66.32127957800003],[97.28903950700004,66.2222606360001],[97.71705653200007,66.33162620000013],[97.93811766100004,66.16856197300018],[97.96241763700016,66.01161804399999],[98.13864866000006,65.9321001020001],[98.32171663399998,65.90350373100006],[98.6316525920002,65.89318829000018],[98.69174161700005,66.06854390700016],[98.44246666700008,66.25079598700006],[97.92637662700008,66.46799305899998],[97.54358650800003,66.6663982390001],[97.3115006610002,66.9275196690001],[97.26426662500006,67.06952587300003],[97.57541661700014,67.09038524500005],[97.9225385530001,67.0304529610001],[98.09156063700016,66.81211963800001],[98.23493158200012,66.74329147200018],[98.47432661600016,66.51751066100013],[99.0037536050001,66.53598940400008],[99.47128258600014,66.49456738000009],[99.6001126050001,66.42825026500009],[99.91565655900013,66.2035986630001],[99.97292356600008,66.00591868500015],[100.15239754700013,65.88030178500003],[100.5343015310001,65.86936071900016],[100.8265996180001,65.90978311700019],[101.1284026150002,66.01175517200016],[101.11640157300019,66.20931311000015],[100.92739854100017,66.40191197800016],[100.67250067500015,66.48539690700011],[100.40039861600013,66.8024454130001],[99.89375263400012,66.86858768100012],[98.38667252800013,67.09433764700003],[98.2189865200001,67.22533321600014],[98.26419062700012,67.32043143900012],[98.42694053200017,67.34643344400007],[98.92925256700016,67.25554813200006],[99.18657666000007,67.30264638200003],[98.88807663500012,67.48197669700005],[98.61711853900016,67.61334693700013],[98.19323764900014,68.05058019900008],[97.88510162100016,68.0857157960001],[97.48420759700014,68.32782505800014],[97.31326253700013,68.51271039599999],[96.64629354600015,68.74328263900003],[96.55697665600007,68.80432217200018],[96.6222225640002,68.98773514500016],[97.25997961700006,69.08928810500015],[97.81993064700004,69.02750979000012],[98.26097851399999,68.80304678200014],[98.35777256400007,68.6207480990002],[98.66504659700018,68.36933140399998],[99.11276260300008,68.08434200200014],[99.63292658300014,67.892757512],[100.0478975100001,67.90129598900012],[100.18740054200003,67.94047501600005],[100.13289654600015,68.08699705400005],[99.9989396520001,68.21210366400004],[100.14430264000015,68.30607971900014],[100.595901647,68.367881335],[100.36479966800005,68.54173357400009],[100.25070151300008,68.68512849100011],[99.62528966300016,68.82773752200012],[99.05586959700008,69.10687518200001],[98.56302659800019,69.40622261600004],[98.56015059900017,69.62526823300004],[99.00251760900011,69.73857832100015],[99.89555357000012,69.57871849600014],[100.50559954800019,69.5451238280001],[100.82949858300009,69.68811440200017],[101.12370254600006,69.66651440600015],[101.28399655400005,69.7814960120001],[101.30480161100007,70.00413461600016],[100.9248965430001,70.23879018600007],[100.26599865400004,70.26293878500019],[99.66081267200008,70.24084207600004],[99.37905851700009,70.35499957400003],[99.64314261400017,70.48920189100005],[100.21730063500013,70.60294699900004],[100.35520155000012,70.67865754600012],[100.50779761800015,70.83087257200009],[100.51699860100018,71.01066204900013],[100.75789651000014,71.06610146500009],[100.64610254100018,71.26434018100008],[101.05269659500004,71.23485013100009],[101.64009852600014,70.94628232700006],[101.83090266100004,70.67668914000018],[101.7835006520001,70.44344457900002],[101.77639765900011,70.11451506100019],[102.1292035310002,69.91506348400014],[102.04489851700015,69.66783455500001],[102.15309866100017,69.5233863680001],[102.49109656000007,69.46223367900018],[102.73529861500003,69.48294770800015],[103.06340067100012,69.56372561800003],[102.99729964200003,69.67496772300012],[102.80400054900008,69.80350806400014],[102.89099866900006,69.87126099900013],[102.86710354000013,69.9998005010001],[103.06469752000004,70.09075571800014],[103.63539867600008,70.19469768800013],[103.49690264600014,70.32985252400016],[103.21219655200008,70.44255978500019],[103.22460160100019,70.5118466080001],[103.38050064200007,70.5851998280001],[103.05969955800003,70.69116301000014],[102.76889764200013,70.88728797700008],[102.31939662600018,71.08208541900012],[102.35289758400006,71.10336539500014],[102.95379655800019,70.98245543600018],[103.21019763600009,70.98805572000009],[103.3274995210001,71.05924875600004],[103.73719756100007,70.994334772],[104.06960255100006,70.97870922800018],[104.8227006260002,70.89555136100012],[105.36379958300006,70.88240434500017],[105.77510057800009,70.91644141000006],[106.57440154800008,70.83222373500007],[107.276702608,70.77079611900007],[108.10399662000015,70.78221746800011],[108.66799963000017,70.69253663600011],[108.66609962000018,70.60762359800003],[107.96790368100017,70.4822730750002],[107.40750153700014,70.48153328800015],[106.4184036010002,70.44819812400016],[105.89250153800003,70.55957048300019],[105.47389957000019,70.71724900100014],[105.13020365300008,70.75768011700018],[104.902801614,70.6400201570001],[105.03639959500015,70.55886154100017],[104.84110259200008,70.48773673400007],[104.40599866800017,70.39787233900006],[104.3672025260002,70.27431403300005],[104.58860060800009,70.15422114200004],[104.6050036580001,70.04735690500013],[104.23889956100015,69.99558926600008],[103.62370256800011,70.07777785000019],[103.32080053600015,70.01906563500017],[103.52890056100011,69.8603651950001],[103.97499852400011,69.75726342700017],[104.24089864500013,69.56298566400011],[104.5236965150001,69.40806998800014],[105.29799661400011,69.44540181100018],[105.54440260700017,69.62770116500013],[105.317100648,69.892601324],[105.14510365900014,70.14060155500016],[105.45909863700007,70.34314286900019],[105.99710064800001,70.20304388400001],[106.125999567,70.01811965400015],[106.35700264000013,69.86574486800015],[106.21340152700014,69.55880443500007],[106.18189965300013,69.4166455130001],[106.3243026560001,69.33738707500004],[106.51049758300007,69.29671254800019],[106.40869853100008,69.20155296900009],[106.5986026170001,69.10907191100017],[106.86440265800019,69.06462066700004],[107.191497545,69.04653034000006],[107.49949661200009,69.06921378200019],[107.85919961700017,69.14793024700009],[108.04350258000005,69.286473215],[107.9560015460001,69.35727816900004],[107.5995026080002,69.42211554300007],[107.24279764200008,69.4495371070002],[107.81639860200005,69.90264250900015],[107.99469760800014,69.98269421000003],[108.33020055000009,69.84469355100015],[108.78500362200015,69.72551596300008],[109.07550060500017,69.76184866400007],[109.33879864800008,69.97350077100009],[109.68019859400016,69.96576444200008],[110.15509761400011,69.89763733900008],[110.32039662400013,69.90999712600018],[110.77960153700013,70.00853679100015],[110.84329964200003,70.07512967100018],[110.7509996330001,70.19604750900015],[110.10259957500006,70.48681338400007],[109.93599667700016,70.62603444900003],[110.22589854500006,70.69515363400006],[110.82949867100007,70.50723773500005],[111.05760160500012,70.47842008100008],[111.29759963300012,70.51556197100007],[111.65489954600014,70.68293768100017],[111.74259956700013,70.86726763400014],[111.54209857600011,70.887577824],[111.15450260900013,70.83346677100008],[110.70909866700009,70.86021727999997],[110.54370158900014,70.91076535299999],[110.52320062700011,71.00842692999998],[111.57209757500004,71.32343259800012],[111.80149853000012,71.25870871500007],[112.21330260700017,71.21747746300008],[112.41230055600022,71.2454711760002],[112.57969655000022,71.20067593800019],[113.27239966000002,71.26910847800019],[113.56189768800004,71.34605485200012],[114.06459763700002,71.41091703600011],[114.29869866100023,71.41745525600004],[114.26699863900012,71.24930103500009],[114.15930157600008,71.19334378400015],[114.19689960900007,71.04392931900003],[114.5419996620002,71.04776621900004],[114.95369762400014,71.16629655600013],[115.40650161300005,71.0167052330001],[115.72840156400014,71.008891791],[116.37180366000018,71.09079907800015],[116.52760362700019,71.13041983100004],[116.8184965710002,71.06317098400018],[117.25579856500008,70.82589003400011],[117.73100268700023,70.81217925200008],[118.02249862500003,70.83433698000005],[118.3851016010002,70.80181905200016],[118.56510163100029,70.83509939800007],[119.03720059300008,70.81512465300017],[119.5594025490002,70.67697144200008],[119.69300053000029,70.60936351400011],[120.00050355700023,70.60683033500004],[120.97619665000013,70.76199830600012],[121.16390266600013,70.84871965600007],[121.72889658500014,71.19778384600016],[122.1137005400002,71.30488462000005],[122.76180253700034,71.28812148400004],[123.07299762500008,71.25540574299998],[123.22229759300012,71.2839939000001],[123.23410065400014,71.06900059800006],[123.01460258200007,70.92438376600018],[122.99240160200009,70.76404332300018],[123.35269955500019,70.68875220700005],[123.81529964100002,70.73631582000007],[124.33920262100003,70.7355606100001],[124.62860056800025,70.69030822400009],[124.86579853800004,70.58420791400005],[125.25260157700006,70.58361296600003],[125.55030062600008,70.72417731500013],[125.64520254600006,70.82160989900012],[125.9129025960001,70.85595206500011],[126.28469867600006,70.72521516200015],[126.59320065700001,70.68917934900003],[127.3112026980001,70.88401450900017],[127.69529754400014,70.8834656620001],[127.96260062800002,70.85943893600006],[127.99939768600007,71.18199100000015],[127.69509855800004,71.39857904200016],[127.37270357200009,71.57202107100005],[127.3973996760003,71.71632425200005],[127.69539661800013,71.72561743500006],[128.22309861200006,71.63756956600008],[128.47250365000002,71.5046570560001],[128.48390169700008,71.28248314600017],[128.65950055700023,71.23195803900006],[129.2162015880001,71.18271536400005],[129.36199959700002,70.88139767899997],[129.51080369200008,70.93404374200009],[129.87130767200028,70.94329920700017],[130.26585357800002,70.87340871900017],[130.30340567700011,70.94315403300004]]]]},"properties":{"objectid":721,"eco_name":"Taimyr-Central Siberian tundra","biome_num":11,"biome_name":"Tundra","realm":"Palearctic","eco_biome_":"PA11","nnh":2,"eco_id":781,"shape_leng":379.041589517,"shape_area":254.262363196,"nnh_name":"Nature Could Reach Half Protected","color":"#519AAB","color_bio":"#9ED7C2","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":956948.6397570895,"percentage":11.198727042852665}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[95.97097064700017,43.191840863000095],[95.86565354300012,43.22435678000011],[95.54828652500004,43.00563068100007],[95.378646527,42.92797905300006],[94.98049958800016,42.77979102800015],[94.70777157000015,42.759199207000165],[94.5490416250002,42.77083412700006],[94.19093352900018,42.84198458200012],[93.88187364800007,42.948125125],[93.77326966300012,43.005836708000174],[93.57792656000015,43.03656342400018],[93.13449856800014,43.04317154900008],[92.21173065600016,43.208148861000154],[91.84767157600015,43.29742752900012],[91.66465758100014,43.37782104500013],[91.41931156400005,43.41469085800014],[91.35507165200005,43.34699106400018],[91.48023961800016,43.165001002999986],[91.42168464800011,43.14874597800019],[91.06172951600007,43.21189758400004],[90.62602259800013,43.200945956000055],[90.36392953800004,43.20470792200007],[90.04394552200017,43.19209181700012],[89.74685650700002,43.23542374200008],[88.93438756800003,43.38342501800008],[88.22862964300003,43.40396688300001],[87.94252762700006,43.384103952000146],[87.77752651100019,43.196524670000144],[87.72564655300005,43.08548725200018],[87.75016764300011,43.030147748000104],[87.70919757100006,42.77444203300013],[87.64594253299998,42.70802148500019],[87.51231353800017,42.69065334400011],[87.2825466290002,42.73990423300012],[87.1815104980002,42.68925641600015],[86.98476459900019,42.71939623100019],[86.89411951300013,42.764477962],[86.61640962600012,42.64432757100019],[86.51864662700007,42.62903881200009],[86.33483165800004,42.643572696000035],[86.1071166390002,42.586837103000164],[85.86558556100005,42.4562488950001],[85.2259365450002,42.37133837200014],[84.85893256700007,42.295357928000044],[84.58765461800004,42.352237691000084],[84.06775651100014,42.34978849900011],[83.95552852700013,42.40364138800004],[83.69401549500003,42.383316447000084],[83.43952163600017,42.29435008800016],[83.32900959500006,42.27114914800018],[83.1201245210001,42.27278998900016],[82.81886266000004,42.156519078000144],[82.68108361800006,42.1620918700001],[82.48322259100013,42.077749472000164],[82.12638854300002,42.07224155600011],[81.96351659800018,42.03564281400003],[81.76140561000005,41.94714651200013],[81.59974652600016,41.973025471000085],[81.53350065700016,41.91625182299998],[81.36636349600019,41.86794708300005],[80.94985951800015,41.86889323200012],[80.917846515,41.83739152500016],[80.72234365300011,41.78255175000015],[80.31821454900006,41.73690524700015],[80.04701254000014,41.68583062200008],[79.68712664200007,41.65726694000011],[79.40489153300013,41.59202036200014],[79.26673849000002,41.5385498550001],[78.91287951600009,41.22117395200007],[78.81550560500006,41.16741443700005],[78.68939953700016,41.144572745000175],[78.51751754800017,41.04898451500003],[78.40388458900014,40.94730063000014],[78.32781965600003,40.84255785300007],[77.95380354600007,40.65678487200006],[77.67061658800009,40.62294411100004],[77.44164260700018,40.61010823200019],[76.95099650500009,40.616837392000036],[76.82504265100016,40.66598166300008],[76.72171054900019,40.57083666900007],[76.60466749699998,40.41347062700004],[76.46410365100002,40.30230781600011],[76.31933561000011,40.25603250200004],[76.05007149700009,40.06761486200014],[75.8490214900001,40.03027717100014],[75.61696648900016,40.07916579500011],[75.53392764500006,40.07088078700008],[75.36318157200009,39.97414105100006],[75.09951053400005,40.0290604540001],[74.95004259300009,40.00053482600015],[74.87572461600013,39.91117669700009],[74.65184062900016,39.91034102100019],[74.69107849700003,39.74851597500003],[74.76907361500008,39.66233207300013],[74.94715854800012,39.51230539400012],[75.26941657300011,39.276335709000136],[75.54982761200017,39.131485693000116],[75.69802854500006,39.11903085500006],[75.73348248700006,39.012187741],[75.72876749900007,38.88786450300017],[75.87084159600016,38.76597151500016],[76.01798255400007,38.69696062300005],[76.28955051700012,38.65320725600003],[76.35944352000007,38.62213285900009],[76.64879654100014,38.41621933700014],[76.73338352200011,38.32321474600019],[76.64453853400016,38.059600538000154],[76.62652548900019,37.947797348999984],[76.73793757800019,37.872744781999984],[76.7750855020002,37.78016045800007],[76.92781853100007,37.66556877800019],[77.0340495980002,37.55015701200017],[77.39866657800013,37.47434538000016],[77.83690650600005,37.372045257000025],[78.20854165300011,37.1925558530001],[78.4341816490001,37.211098467000056],[78.70064553600008,37.182538138000155],[78.84893749700007,37.10614245400012],[78.95929749000004,37.10703546200011],[79.24906155899998,36.903284639000105],[79.61236559700006,36.76831655200016],[79.85322562000005,36.578451525000105],[80.02619960300012,36.502716336000105],[80.19334464400004,36.52534060200014],[80.32084663400019,36.50991823500016],[80.47158057900009,36.52486769500018],[80.63704655600014,36.46387225000012],[80.82657664200008,36.34569562900003],[81.13422350200005,36.2537627480001],[81.58922556100015,36.26247171300008],[81.86233562700016,36.226473282000086],[82.15083352600016,36.28534391500017],[82.63478852200012,36.24835776100008],[82.7071305500001,36.28304811100014],[82.72764559300015,36.40390224700019],[83.0093005060001,36.46351316900018],[83.14855962500019,36.52510087900009],[83.22268649500006,36.614297740000154],[83.49214959400007,36.707949750000125],[83.61543263800019,36.65163895100005],[83.78628549700005,36.72066459400003],[83.90978965500017,36.92177830300017],[83.94152052300018,36.940932125000074],[84.27795452700008,36.96301056100003],[84.556396657,37.130007074000105],[84.72686763600012,37.18773391200017],[84.9355396420001,37.17791903800003],[85.01065054700013,37.201595736000115],[85.2034685180002,37.31024749700009],[85.47188555700012,37.40448858700017],[85.91211635500008,37.500826829000175],[86.19968453400008,37.64668200300008],[86.40857664800012,37.787407452000025],[86.4607845060001,37.90975004600011],[86.53864266300008,37.992833817000076],[86.85144053800019,38.061431313000014],[86.98464959900008,38.19013007200016],[87.2091976000001,38.28535452700015],[87.29177057800018,38.27234665200007],[87.43154166400006,38.194650097000135],[87.51966865900005,38.08607008500013],[87.68080856800015,38.11336441200007],[87.77450550499998,38.23745748200008],[87.8895726070001,38.29197623099998],[87.8864055890001,38.36839521500019],[87.93839249900009,38.489773052000146],[88.02319355500009,38.52602746600007],[88.19917261800015,38.440117987000065],[88.27085163700008,38.440731710000136],[88.32115160500013,38.590300402000025],[88.45819052600018,38.74657780200016],[88.6182255330001,38.78917614300002],[88.92399551700004,38.80105883200008],[89.15949263000005,38.768367398000066],[89.46538566100014,38.707092500000044],[89.7102356370001,38.676452956000105],[89.91732061400012,38.666169199000194],[90.31523151800008,38.711548320000134],[90.45931961900004,38.71053746300004],[90.85181464100003,38.739699780000024],[90.8711925950002,38.75543965300005],[91.2015076420002,38.73452395500016],[91.63654350400003,38.727656997000054],[91.71990153200005,38.77233052900016],[92.04526555500019,38.84806605400013],[92.41506959200007,39.039713241000186],[92.77143861100018,39.156670462000136],[92.93479955700002,39.22896521500002],[93.35620862400009,39.38191717900003],[93.42417161000014,39.448910043000126],[93.59118656300012,39.521838133000074],[93.77932760000016,39.47298471300007],[94.03222655000013,39.43208739500017],[94.40399161700009,39.44006428500006],[94.70117953800008,39.48071266000005],[94.60877257600009,39.6978728520001],[94.49118050900017,39.85019550200013],[94.21280660800011,40.04601302100008],[94.01792853199998,40.07677376700008],[94.14476751500007,40.13508499200009],[94.18143465300011,40.20286005500009],[94.08589151800004,40.24290258600007],[93.63021857100006,40.230286648000174],[93.513488667,40.27611638000019],[93.5537645500001,40.46536483400007],[93.71640062900013,40.63119911200016],[93.78370664099998,40.74967094300018],[93.71150157500017,40.84246665800009],[93.48699162700018,40.981213307000075],[93.51705164700013,41.066711570000166],[93.77672552200016,41.12179475500005],[93.85075365300014,41.12179475500005],[94.16770962200019,41.206198006000136],[94.20382657200014,41.275914485000044],[94.15153456000019,41.474868513000104],[94.09944958200009,41.585482478000074],[94.1478495400001,41.67703079800009],[94.18585158100018,41.918673690000105],[94.31635261700012,42.01571198900007],[94.58827966100012,42.09641429400017],[94.68766053400009,42.142628923000075],[94.78446967200017,42.25171017300005],[94.92403456200003,42.30609196100011],[95.22130563200005,42.33902378800019],[95.52565756600006,42.623632819000136],[95.75594365000012,42.782147852000094],[95.80458064900012,42.83233768200006],[95.86782060000007,43.00461278300003],[95.97097064700017,43.191840863000095]],[[84.33346552400002,41.248357638000016],[84.67023463600015,41.38109245100014],[84.79180156900009,41.37146834900017],[84.82304360500012,41.3287858540001],[84.7751995340002,41.21659290700018],[84.8896715210002,41.20794496200011],[85.01783752600011,41.24020187800005],[85.22198464500002,41.24697680300011],[85.48788459800011,41.210753067000155],[85.62681564900004,41.20783096800005],[85.95150761200017,41.138750843000025],[86.1230776270001,41.11596581200013],[86.48012558000005,40.99592203900011],[86.61588257200003,40.927231839000115],[86.80622050599999,40.866292386000055],[87.06294261000016,40.69538454200011],[87.48019458800007,40.469371048000085],[87.67624663300006,40.322826715000076],[87.7123186570002,40.17488746500004],[87.66197158200009,40.07176172500016],[87.43371559399998,40.09260165100011],[86.76622759600014,40.51422328300009],[86.48008752600009,40.67162369],[85.97721859700005,40.88418741400011],[85.72046665300013,40.92872381800015],[85.59540564000008,40.929449020000106],[85.388999598,40.867841361000046],[85.30384851400015,40.648365753000064],[85.15019263900007,40.46317916900017],[84.82369957200012,40.33493437400011],[84.60640761700012,40.30453187000012],[84.27436858100003,40.33063160800009],[84.03460658700004,40.37727287600006],[83.61365550700009,40.344280531000095],[83.33763155600013,40.39390190100005],[82.91639750299998,40.366077167000185],[82.64767452500007,40.29856898400004],[82.3149185010002,40.40533381100005],[82.13816863800014,40.50308457200015],[81.94387863700007,40.685295412000016],[81.72182458700013,40.70666541000003],[81.3078075200001,40.52360715900005],[81.12026964500006,40.37776908400008],[80.92057063400011,40.33274854100017],[80.92941253599997,40.23870979000009],[81.03353857200011,40.282552173000056],[81.09488656000013,40.179567584000154],[81.04003153000014,40.00796152700008],[81.07557649900014,39.57185244600004],[81.06545250100004,39.10889227300015],[80.95407863300011,38.816717736000044],[80.8536686290002,38.42684725500004],[80.74008965000013,38.12306445300004],[80.60787954500012,37.99771946100003],[80.48329965300019,37.98921669100008],[80.46073154600009,38.093584797000176],[80.52344561600017,38.24445721000012],[80.58648658100003,38.32593785800009],[80.61987253900014,38.50216687000011],[80.59838050100018,38.62342585200008],[80.65797449200011,38.834093421000034],[80.69434357000017,39.08970861100005],[80.68086949300005,39.19672388900011],[80.69899753800013,39.39270502300019],[80.64002950800005,39.640020621000076],[80.63746665700018,39.85657748300014],[80.61039763600019,40.069987946000026],[80.50434862300006,40.193765187000054],[80.3115306520001,40.12236327400012],[79.93108361000009,39.85254562000006],[79.87821157100018,39.83341074100019],[79.72852352000012,39.90001887500006],[79.59829757900013,39.993576673],[79.54409751000009,40.111495298000136],[79.56236251600018,40.25414355600003],[79.83092456100002,40.365493116000096],[80.07364654000008,40.40880559500005],[80.42303460700003,40.56352781700019],[80.63323262200004,40.68639360900005],[80.79675265700007,40.74621173200006],[81.25102264100002,40.839445653000155],[81.30879960200008,40.86807840200004],[81.52552058200007,40.878831545000025],[81.92878752300004,40.95713863700013],[82.28849756900007,41.04783653000004],[82.58460958800003,41.05218874900015],[82.89731559700016,41.02170997000013],[83.27245354200011,41.007316901000024],[83.42547557800009,41.0155298250001],[83.57008352400015,41.077319371000044],[83.76939361500007,41.18984809800003],[84.03796353900015,41.23113467100006],[84.22867564100017,41.19342633200017],[84.33346552400002,41.248357638000016]],[[82.80908952900006,38.013924195000186],[82.91149861600013,38.25942611500011],[83.03359260300016,38.345263510000166],[83.09769454800005,38.31776701100017],[83.11260964200011,38.23503930300012],[83.00696564300006,37.97466386299999],[82.9596405800001,37.75695197400006],[83.0412365630001,37.696707045000096],[83.19303853000002,37.69245423500007],[83.28235659299997,37.760998757000095],[83.36751555600006,37.90226215700005],[83.52098065900014,38.07835303400009],[83.56547565700004,38.175538352000046],[83.70574161000013,38.27647775600008],[83.93284558900001,38.25408600500003],[84.07602660000009,38.33916366300008],[84.26786757700017,38.237374334000094],[84.30876958800019,38.117625436000026],[84.19373349900007,37.95929530800004],[83.97396854700014,37.916731166000034],[83.80289457300012,37.81575773100013],[83.51550258300006,37.594754101000035],[83.35366865200012,37.495832891000134],[83.13199664900003,37.41125160900003],[82.86725658400007,37.40964563699998],[82.7511365470001,37.46206639400009],[82.63981665900008,37.583573313000045],[82.65328956200005,37.68711043700006],[82.80908952900006,38.013924195000186]]]},"properties":{"objectid":723,"eco_name":"Taklimakan desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Palearctic","eco_biome_":"PA13","nnh":3,"eco_id":843,"shape_leng":81.7647530703,"shape_area":78.3785379111,"nnh_name":"Nature Could Recover","color":"#FFAA01","color_bio":"#CC6767","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":743533.6084719492,"percentage":2.8183176875397775}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-98.17523952299996,24.009452426000053],[-98.20089753499997,24.05253306100002],[-98.27906766699994,24.12782753000016],[-98.36323555299998,24.09034432900006],[-98.39522558999988,24.013822247000064],[-98.49299663499988,23.999830001000134],[-98.53742256599998,24.03205540099998],[-98.71684256799989,23.975555171000167],[-98.65137453899996,23.836008218000075],[-98.55133065799993,23.913410065000107],[-98.36683658699997,23.83160235400004],[-98.25122851599997,23.910584190000122],[-98.17523952299996,24.009452426000053]]],[[[-98.54792760499998,24.731282817000192],[-98.62519852599996,24.78836190200019],[-98.58441956099989,24.898705634000123],[-98.62483257199995,24.971817119000093],[-98.69818160099999,24.944300505000115],[-98.8078306409999,24.969623408000075],[-98.82887257099998,24.81711769700013],[-98.898551667,24.843056502000024],[-98.98589361299997,24.823834283000053],[-99.08912664199988,24.958740680000062],[-99.12379452799996,24.906751423000173],[-99.3029476509999,24.80892220700008],[-99.19121553999992,24.761727398],[-99.16638951599998,24.639763163000055],[-99.05500760199993,24.676871525000138],[-98.98024756299998,24.62997561500009],[-99.00797255199996,24.51367335600014],[-99.14713259699988,24.525093699000138],[-99.00035859899998,24.475129174000074],[-99.027145653,24.358913080000093],[-98.88788552799997,24.300976024000192],[-98.89749152399997,24.391139486000043],[-98.77168250999995,24.41663623000005],[-98.77919755699997,24.28989229900003],[-98.70137057999995,24.246882406],[-98.68031356299991,24.321705812000175],[-98.58877563699997,24.337181152000028],[-98.59854155999994,24.40784562500005],[-98.48210166899992,24.40144403100004],[-98.38643666099995,24.399037083000053],[-98.33608958599996,24.508801793000032],[-98.43012263799989,24.512233512000023],[-98.43405157099994,24.61745623700017],[-98.39338659999999,24.671275767000054],[-98.39898654999996,24.74976692500013],[-98.46782661799989,24.76973396000011],[-98.45783957999993,24.61675232500005],[-98.52345261499988,24.64688275200018],[-98.53253155699997,24.70979195300015],[-98.54792760499998,24.731282817000192]],[[-98.78430163299998,24.648031911000146],[-98.75764466599998,24.70915476099998],[-98.59043156499996,24.597052505000022],[-98.728675636,24.549729621000154],[-98.78430163299998,24.648031911000146]]],[[[-100.599922613,25.854446444000075],[-100.51057454299996,25.7965933750001],[-100.59587063399982,25.740956984000093],[-100.5899045619999,25.689894262],[-100.53889464699995,25.604935124000065],[-100.3976746649999,25.522264916000097],[-100.42816165899995,25.635121710000135],[-100.22650161799993,25.656993784000065],[-100.05813566999984,25.40800432000009],[-100.12004859799998,25.33688487800015],[-99.9457095379999,25.128070715000092],[-99.8875575699999,25.02540463800011],[-99.74260764199994,24.842808398000102],[-99.68959059499991,24.62887490300011],[-99.64880358399995,24.54484481500009],[-99.56477366299998,24.47258543400011],[-99.55649552799997,24.421790933000125],[-99.62078858099994,24.25652193000019],[-99.6288296759999,24.17408809200009],[-99.41500061999994,24.115980045000185],[-99.39775854299995,24.01470804700017],[-99.31603951299996,23.96895324900015],[-99.13035554699997,23.959838767000065],[-99.05163556199994,24.055644089000054],[-99.04978953199992,24.115431198000124],[-98.94832659399992,24.157754948000104],[-98.9594495469999,24.25291737700013],[-99.03105161899998,24.30854337400018],[-99.15165765099994,24.30418377900014],[-99.2319336519999,24.198830967000163],[-99.33266451499992,24.31516021599998],[-99.27309466399998,24.463363832000027],[-99.35140963599997,24.526218718000052],[-99.43033564799993,24.74710399500003],[-99.47252662799991,24.789189028000067],[-99.52332263699992,24.947528208000108],[-99.3611836049999,24.999517968000134],[-99.34912858399997,25.08383170000019],[-99.39163958599988,25.11336449800018],[-99.31584153199987,25.289574063000146],[-99.40824866199995,25.265525042000093],[-99.45894660399995,25.154778476000047],[-99.56967154499989,25.111702534000187],[-99.61038965699998,25.328951071000176],[-99.72676064799998,25.336598887000036],[-99.80708358799995,25.281492568000147],[-99.85623154799998,25.34855231900019],[-99.83441965599991,25.479224178000152],[-100.0365826119999,25.632563889000153],[-100.15948461399995,25.70814619200013],[-100.19172660999999,25.778072051000095],[-100.27098052199989,25.7778152300001],[-100.29862252999993,25.989766236000094],[-100.40700556799993,26.10409908400004],[-100.40641061999997,26.218342915000164],[-100.44345863199999,26.19399583400019],[-100.47842357399992,26.170247052000036],[-100.54525751699992,26.155370683000058],[-100.51927160499991,26.077878311000063],[-100.54290756699999,25.979905765000183],[-100.50998663599995,25.896232746000123],[-100.51453365099997,25.863557070000184],[-100.599922613,25.854446444000075]]],[[[-100.00556956999998,26.58049762700017],[-99.98652655599989,26.6279345050001],[-100.02857956999998,26.779436567000175],[-100.11245761099991,26.818305799000143],[-100.0905226729999,26.667987429999982],[-100.00556956999998,26.58049762700017]]],[[[-100.13840462999997,26.811045227000193],[-100.19390054099995,26.979092830000127],[-100.27856463599983,26.883108975000084],[-100.13840462999997,26.811045227000193]]],[[[-100.24437753499996,26.578097721000177],[-100.26996664699993,26.714627524000093],[-100.25080058799989,26.780243577000192],[-100.31338457099986,26.89029360700016],[-100.40806554299996,26.984980447000112],[-100.43873559699983,26.91338776200007],[-100.43575264599991,26.909005870000044],[-100.44171167599995,26.84535654800004],[-100.43088560999985,26.75475873500011],[-100.38590261799993,26.700445176000073],[-100.36766862499991,26.573361778000105],[-100.39947560099995,26.43931586700006],[-100.36593658899994,26.32968878800017],[-100.29489861799993,26.201236792000145],[-100.1679615679999,26.206536502000063],[-100.06600962999994,26.15100086100017],[-99.98570261499987,25.971732069000154],[-99.92699459199997,25.942769408000174],[-99.93313550899995,25.85698130000003],[-99.86574551099994,25.81887029500018],[-99.72947655199982,25.671536888000105],[-99.65797455899997,25.717613887000027],[-99.67776456799993,25.87415665700013],[-99.72032954899998,25.940713495000182],[-99.71258567599989,26.03737025000015],[-99.74323259599998,26.182955358000072],[-99.86346462699998,26.33780548800013],[-99.97436558799984,26.3396924220001],[-100.03256265099998,26.30691968300016],[-99.92803160099999,26.239980799000136],[-99.91918953099997,26.120084379000104],[-99.80793753599994,26.105626937000068],[-99.78805566199998,26.056517199000155],[-99.8329005199999,25.915867690000084],[-99.90573154699996,25.973954111000182],[-99.95941160199993,26.12245126100015],[-100.05302455299989,26.19429992900018],[-100.05428351499995,26.28530996300009],[-100.13038666899996,26.242585726000073],[-100.17229467699997,26.34748910000019],[-100.22168755599989,26.34048920500004],[-100.22542554899991,26.468712375000166],[-100.24600261899991,26.566746277000107],[-100.24437753499996,26.578097721000177]]]]},"properties":{"objectid":725,"eco_name":"Tamaulipan matorral","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Nearctic","eco_biome_":"NE13","nnh":4,"eco_id":436,"shape_leng":31.5524586989,"shape_area":1.45313569223,"nnh_name":"Nature Imperiled","color":"#BA4A58","color_bio":"#CC6767","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":16306.845147989363,"percentage":0.061810077695074954}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-100.47842357399992,26.170247052000036],[-100.44345863199999,26.19399583400019],[-100.49797067499998,26.262504816000103],[-100.47842357399992,26.170247052000036]]],[[[-98.87656908499997,29.51696175600017],[-99.01395691,29.466585420000058],[-99.08901392499996,29.50463797600014],[-99.20562730799998,29.483350249000125],[-99.28390468999999,29.514396365000096],[-99.554385589,29.46721642600005],[-99.8555063419999,29.323408135000136],[-99.93191120899996,29.329013496000186],[-100.06107942099993,29.433513126000094],[-100.4400816729999,29.567977896000116],[-100.56403262299995,29.567995113],[-100.68623697599998,29.616672242000107],[-100.77137729399993,29.683577194],[-100.75075867099997,29.740349663000075],[-100.65311167099992,29.729744658000072],[-100.60009531599997,29.776118264000104],[-100.67009363699992,29.829558865000024],[-100.94271609999998,29.779914007],[-100.93292075599999,29.656665527000087],[-100.97235195399992,29.568584495000096],[-100.9191600659999,29.475549427000033],[-100.92918065099997,29.38813404400014],[-101.00664474099995,29.365995835999968],[-101.06016293999994,29.45866857800013],[-101.15189023499994,29.477014033000046],[-101.2611811729999,29.536786768000184],[-101.30003573199997,29.640704968000136],[-101.36322665699998,29.65264133100004],[-101.39701757799997,29.733968618000176],[-101.60182960599991,29.726977413000157],[-101.72045851399997,29.646088192000036],[-101.8048626019999,29.716376653000054],[-101.89080057899997,29.673978136000187],[-101.91683963199989,29.468045169000106],[-101.78743763099993,29.518243381000048],[-101.71927666499994,29.393500042000028],[-101.80221559699993,29.378460561000054],[-101.85665857299989,29.234557197000186],[-101.72017654599989,29.228236404000086],[-101.71212757199999,29.259101421000082],[-101.52478767799988,29.23705198700003],[-101.43727155599998,29.172301617000016],[-101.40397662499993,29.104994432000183],[-101.46566055899996,29.055685204000042],[-101.4419476519999,29.001518496000017],[-101.29166465399993,29.041584664000084],[-101.27339160199989,28.968053580000117],[-101.30751751499997,28.833404005000034],[-101.28787251399996,28.606122330000176],[-101.21877260699983,28.518381741000155],[-101.32773567199985,28.45377151600013],[-101.33814264299991,28.36908479000016],[-101.45071461999993,28.34423697300008],[-101.66771656099996,28.355487499000162],[-101.72885852199988,28.32765254000003],[-101.67706255099989,28.24763168300018],[-101.7920076129999,28.181523613000138],[-101.801895576,28.06541832800019],[-101.85179153699988,28.06407035100011],[-101.90944662599998,28.146680041000025],[-101.87556462599991,28.103033963000087],[-101.89801756599996,28.012377477000143],[-101.80559551599998,27.90684194000005],[-101.63655851299995,27.85320010700019],[-101.48412354499999,27.7601390210001],[-101.4488295299999,27.638747270000067],[-101.53789563299989,27.61626616700005],[-101.44195553099996,27.506341027000133],[-101.35093661199994,27.514557639000145],[-101.24082153799992,27.35137170700017],[-101.19824264399989,27.35059956600014],[-101.08167266599986,27.233857759999978],[-100.98063653499997,27.20743381],[-100.91232251499991,27.09813848700003],[-100.84306351999993,26.99428218000014],[-100.73873866499991,27.04512982199998],[-100.69554856099995,27.17260147000013],[-100.63117956799988,27.18448382400004],[-100.51620466699995,27.069767756000033],[-100.50212860199986,26.895851647000143],[-100.44171167599995,26.84535654800004],[-100.43575264599991,26.909005870000044],[-100.43873559699983,26.91338776200007],[-100.40806554299996,26.984980447000112],[-100.31338457099986,26.89029360700016],[-100.25080058799989,26.780243577000192],[-100.26996664699993,26.714627524000093],[-100.24437753499996,26.578097721000177],[-100.24600261899991,26.566746277000107],[-100.22542554899991,26.468712375000166],[-100.17229467699997,26.34748910000019],[-100.13038666899996,26.242585726000073],[-100.05428351499995,26.28530996300009],[-100.03256265099998,26.30691968300016],[-99.97436558799984,26.3396924220001],[-99.86346462699998,26.33780548800013],[-99.74323259599998,26.182955358000072],[-99.71258567599989,26.03737025000015],[-99.72032954899998,25.940713495000182],[-99.67776456799993,25.87415665700013],[-99.65797455899997,25.717613887000027],[-99.72947655199982,25.671536888000105],[-99.86574551099994,25.81887029500018],[-99.93313550899995,25.85698130000003],[-99.92699459199997,25.942769408000174],[-99.98570261499987,25.971732069000154],[-100.06600962999994,26.15100086100017],[-100.1679615679999,26.206536502000063],[-100.29489861799993,26.201236792000145],[-100.36593658899994,26.32968878800017],[-100.39947560099995,26.43931586700006],[-100.36766862499991,26.573361778000105],[-100.38590261799993,26.700445176000073],[-100.43088560999985,26.75475873500011],[-100.49946567099988,26.753968657000087],[-100.561424532,26.69376060800016],[-100.58586867599996,26.605497491000108],[-100.47909563499996,26.45096721600015],[-100.40641061999997,26.218342915000164],[-100.40700556799993,26.10409908400004],[-100.29862252999993,25.989766236000094],[-100.27098052199989,25.7778152300001],[-100.19172660999999,25.778072051000095],[-100.15948461399995,25.70814619200013],[-100.0365826119999,25.632563889000153],[-99.83441965599991,25.479224178000152],[-99.85623154799998,25.34855231900019],[-99.80708358799995,25.281492568000147],[-99.72676064799998,25.336598887000036],[-99.61038965699998,25.328951071000176],[-99.56967154499989,25.111702534000187],[-99.45894660399995,25.154778476000047],[-99.40824866199995,25.265525042000093],[-99.31584153199987,25.289574063000146],[-99.39163958599988,25.11336449800018],[-99.34912858399997,25.08383170000019],[-99.3611836049999,24.999517968000134],[-99.52332263699992,24.947528208000108],[-99.47252662799991,24.789189028000067],[-99.43033564799993,24.74710399500003],[-99.35140963599997,24.526218718000052],[-99.27309466399998,24.463363832000027],[-99.33266451499992,24.31516021599998],[-99.2319336519999,24.198830967000163],[-99.15165765099994,24.30418377900014],[-99.03105161899998,24.30854337400018],[-99.027145653,24.358913080000093],[-99.00035859899998,24.475129174000074],[-99.14713259699988,24.525093699000138],[-99.16638951599998,24.639763163000055],[-99.19121553999992,24.761727398],[-99.3029476509999,24.80892220700008],[-99.12379452799996,24.906751423000173],[-99.08912664199988,24.958740680000062],[-98.98589361299997,24.823834283000053],[-98.898551667,24.843056502000024],[-98.82887257099998,24.81711769700013],[-98.8078306409999,24.969623408000075],[-98.69818160099999,24.944300505000115],[-98.62483257199995,24.971817119000093],[-98.58441956099989,24.898705634000123],[-98.62519852599996,24.78836190200019],[-98.54792760499998,24.731282817000192],[-98.53253155699997,24.70979195300015],[-98.52345261499988,24.64688275200018],[-98.45783957999993,24.61675232500005],[-98.46782661799989,24.76973396000011],[-98.39898654999996,24.74976692500013],[-98.39338659999999,24.671275767000054],[-98.43405157099994,24.61745623700017],[-98.43012263799989,24.512233512000023],[-98.33608958599996,24.508801793000032],[-98.38643666099995,24.399037083000053],[-98.48210166899992,24.40144403100004],[-98.30131558499988,24.21055523800004],[-98.20089753499997,24.05253306100002],[-98.17523952299996,24.009452426000053],[-98.08735660899993,23.9255326440001],[-97.9230495139999,23.89955293500003],[-97.8056795679999,23.921672610000087],[-97.76688359399998,23.998406922000072],[-97.7767552759999,24.110902161000126],[-97.91027059399994,24.090039845000092],[-98.01007078799995,24.028019861000075],[-98.11029811799989,24.0186387870001],[-98.13890836099995,24.09471813199997],[-98.13968657799995,24.356349397000145],[-98.1087569359999,24.434636004000026],[-98.19015495499997,24.47198086500009],[-98.09676353999993,24.550644933000058],[-98.09522244999988,24.672281008000027],[-98.15908821399995,24.883572361000063],[-98.23604584499992,24.94892568400013],[-98.36303711299996,25.01080509000002],[-98.35563657699998,25.104163896000102],[-98.31147003199993,25.152212859000088],[-98.34774779099996,25.254703173000053],[-98.41855626799992,25.29892637500018],[-98.36897281799986,25.36138831700015],[-98.2173614319999,25.384307739000064],[-98.21305845899997,25.469541957000047],[-98.30185699799989,25.479726890000165],[-98.24040988699994,25.569109852000054],[-98.4215392459999,25.69293539800009],[-98.40827184699992,25.819702354000185],[-98.47795870199997,25.921922633000065],[-98.54045102099991,25.953180577000182],[-98.55228419299993,26.08498628200016],[-98.51071166699995,26.139459509],[-98.43037405799993,26.147373521000077],[-98.420993722,26.296188444000165],[-98.47650971299998,26.461676799000145],[-98.33933928799996,26.5821722820001],[-98.34569079499994,26.682787636000114],[-98.45418530199998,26.722434686000156],[-98.60885369599993,26.721614781000085],[-98.74726604299997,26.90665961800005],[-98.8200820159999,26.865682056000082],[-98.87339729699983,26.962569750000114],[-98.80670211299997,27.02521607100016],[-98.67222829899993,27.051144092000072],[-98.65103003799993,27.188306838000187],[-98.68101929799997,27.284379256000022],[-98.62455322399995,27.3239078470001],[-98.42085479799994,27.35072793300003],[-98.4652556819999,27.40752331100009],[-98.39311037499994,27.469497301000047],[-98.29241952499996,27.46314034100004],[-98.30738235099994,27.680849609000063],[-98.23765351499998,27.771639268000115],[-98.09372199699999,27.859395764000055],[-98.12482700499999,27.949362856000164],[-98.09590638899988,27.992663725000057],[-97.92165204799994,28.015064464000147],[-97.83224373699989,28.11694014900013],[-97.88234340099984,28.240893912000047],[-98.0642278489999,28.32076430000012],[-98.10026805699994,28.430712975000176],[-98.15986704499988,28.45864961000018],[-98.19448423799997,28.611672535000082],[-98.24661621299992,28.72143006500005],[-98.32374465099991,28.81444722300006],[-98.32828236599994,28.884707491000142],[-98.40214236799994,28.941536335000137],[-98.62532409099998,28.916128129000185],[-98.67456064399983,28.938050212000064],[-98.71539403099996,29.046726657000193],[-98.7965625899999,29.084860692000177],[-98.84787905899998,29.181857783000055],[-98.7938865139999,29.24920963000011],[-98.90773324599996,29.38714349600002],[-98.87656908499997,29.51696175600017]],[[-100.13840462999997,26.811045227000193],[-100.27856463599983,26.883108975000084],[-100.19390054099995,26.979092830000127],[-100.13840462999997,26.811045227000193]],[[-100.00556956999998,26.58049762700017],[-100.0905226729999,26.667987429999982],[-100.11245761099991,26.818305799000143],[-100.02857956999998,26.779436567000175],[-99.98652655599989,26.6279345050001],[-100.00556956999998,26.58049762700017]]]]},"properties":{"objectid":726,"eco_name":"Tamaulipan mezquital","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Nearctic","eco_biome_":"NE13","nnh":3,"eco_id":437,"shape_leng":45.0134846927,"shape_area":11.4278301032,"nnh_name":"Nature Could Recover","color":"#F9A461","color_bio":"#CC6767","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":125574.14371954117,"percentage":0.47598094599888763}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-97.84403264199989,18.11916032099998],[-97.9440535579999,18.116959568000084],[-97.91512258099993,17.991067071000145],[-97.83139055299989,17.974636025999985],[-97.84403264199989,18.11916032099998]]],[[[-97.4290845129999,19.627191102999973],[-97.51193962599996,19.62656413600007],[-97.56502557199991,19.54724383900009],[-97.68557762399996,19.52730899100004],[-97.7369075609999,19.47768879500012],[-97.63090565499994,19.399982518000115],[-97.67131765999994,19.35988768400017],[-97.77397166599991,19.45012540900018],[-97.886444569,19.474384984000096],[-98.01069656099997,19.433009396000045],[-97.97389262999991,19.386633163000056],[-97.96306656399997,19.27369489700004],[-97.89749158299998,19.24435756500003],[-97.82254764499999,19.156223529999977],[-97.71135750799994,19.12957008300009],[-97.69649454999995,19.05234978900006],[-97.836646509,19.08762553100007],[-97.94121561299983,19.012494174000153],[-97.94400762499998,18.969262497000102],[-98.03433252199994,18.909914096000023],[-98.01586953599997,18.809812044000182],[-97.91871657299987,18.748979543000075],[-97.85768156599988,18.647371598000063],[-97.85958057,18.576080997000133],[-98.0685655559999,18.468726252000124],[-98.07111365499998,18.40205944400003],[-97.99146260799989,18.338000246000036],[-97.96735357199987,18.43395342399998],[-97.9214705309999,18.436061305000067],[-97.79224354499996,18.296853483],[-97.79915660299997,18.20874895200012],[-97.6576685689999,18.117646381000156],[-97.58625760299986,18.116708614000117],[-97.38331563399998,18.197019484000066],[-97.35704054699988,18.158943851000117],[-97.23577150699998,18.197031554000148],[-97.15803555699989,18.15344716600015],[-97.15254960199997,18.303947255000082],[-97.20856451999987,18.329940543000134],[-97.34667162999995,18.478758887000026],[-97.27125562299989,18.52332110800006],[-97.33676153799996,18.57345193000009],[-97.36970560299994,18.686160364000102],[-97.30644955899999,18.839044267000077],[-97.32758352199994,18.929255003000094],[-97.39454654599996,18.94110215200004],[-97.438194636,19.012922992000085],[-97.30584756999997,19.288301872000034],[-97.29627258699998,19.382336265000163],[-97.23634365599997,19.437200179000115],[-97.27903754999994,19.59088120100006],[-97.4290845129999,19.627191102999973]]]]},"properties":{"objectid":732,"eco_name":"Tehuacán Valley matorral","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Neotropic","eco_biome_":"NO13","nnh":4,"eco_id":610,"shape_leng":8.05196980476,"shape_area":0.845285658723,"nnh_name":"Nature Imperiled","color":"#F57558","color_bio":"#CC6767","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":9914.40443708719,"percentage":0.03757993057487976}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[84.83607461400015,27.30316185000015],[84.77931957400006,27.35045673900015],[84.69106266000006,27.204847993000044],[84.62695350600018,27.177768243000116],[84.45153854500012,27.177839154000026],[84.7296526070001,27.02099497000006],[85.12919664200007,26.873342381000043],[85.5721735190001,26.690948479999975],[85.91960860300009,26.586722196000153],[86.40601363000019,26.508553739999968],[86.66658755400016,26.456440934000057],[87.44831854600017,26.3609004810001],[87.96946756700015,26.343531333000044],[88.21266966200011,26.369586144000095],[88.44718961300009,26.491184593000185],[88.64696456400009,26.63015118300018],[88.93359363400009,26.67357732100004],[89.27233852800009,26.67357732100004],[89.61109163700013,26.63015118300018],[89.83259566600015,26.63015118300018],[89.97248862400005,26.659956058000034],[90.09951066700017,26.75814552700018],[89.93374662900004,26.744035096000175],[89.79129752600011,26.704140087000155],[89.66995254600016,26.734367744],[89.63919062600007,26.77787669500009],[89.52353662300015,26.81515403600008],[89.10874154800018,26.842741729000124],[89.0223006560002,26.90051114700003],[88.97360951000007,26.882100129000094],[88.82855262900006,26.90196523900005],[88.75835452500019,26.851828550000164],[88.59791551100011,26.8718835950001],[88.34722150400017,26.81172030500005],[88.246940581,26.751553831000138],[88.15429657900012,26.781366416000083],[87.97945359900018,26.737636351],[87.89031960200003,26.67821620100017],[87.7922746370001,26.69603948000008],[87.67482757700003,26.777425748000155],[87.36865962000013,26.78000653600003],[87.2606505830002,26.816124157000104],[86.94587659100011,26.856972189000032],[86.8414535,26.778192693000108],[86.82253252700008,26.669413359000146],[86.59077458100012,26.683603753000057],[86.58605154600002,26.792379063999988],[86.51510661400016,26.825487581000175],[86.21240256300018,26.868049712000072],[85.88605450400013,27.024124773000096],[85.68741563600008,27.099795589],[85.46984858600007,27.132902095000134],[85.27593258600018,27.20384300300003],[85.2002565730001,27.21330248400011],[85.06309561200004,27.284245403000057],[84.89282965400014,27.279515831000083],[84.83607461400015,27.30316185000015]]],[[[84.67053252900018,27.601119062000066],[84.50499765300003,27.719354021000072],[84.39148757300012,27.719356033000054],[84.15499854500018,27.686248353],[84.02729756800005,27.648412945000132],[83.88068349600007,27.634225568000033],[83.8617625230001,27.57274397300006],[83.94231462500011,27.50917696],[84.15972862000012,27.53963662900003],[84.44824261300005,27.506529788000023],[84.65161859700004,27.525450257999978],[85.02526053900016,27.383562071000142],[85.03472152900008,27.43558703600013],[84.79350259300014,27.525448079000057],[84.67053252900018,27.601119062000066]]],[[[83.4219055580001,27.69097792600013],[83.18068662200017,27.743002890000184],[83.01988265900019,27.747732631000133],[82.76036854300014,27.710481274000188],[82.85293559900003,27.573947950000104],[83.09138465200004,27.52698112900009],[83.86196855100013,27.503540969000085],[83.76716654300003,27.61057636400011],[83.54960653500007,27.6815194510001],[83.4219055580001,27.69097792600013]]],[[[78.85878757400019,29.29149295100018],[78.78305858800007,29.26257706100006],[78.99159950100011,29.140329853000026],[79.21453063299998,29.05403933400015],[79.51656362900019,28.96055613500016],[79.73229956800009,28.867072601000075],[80.04871356300009,28.773592588000042],[80.11343359000011,28.723255403000053],[80.27883150700006,28.500337347000027],[80.4154665870002,28.44280765200017],[80.52333849600018,28.421234645000027],[80.64558453000012,28.435617990000026],[80.839752659,28.363708134000092],[81.29289259400002,28.153866853000125],[81.42584265400012,28.18449851800017],[81.50532556000013,28.101406868000026],[81.67915365900018,28.022545229000116],[81.82800251300017,28.017311233000157],[82.12597665700008,27.96528660399997],[82.45705462400014,27.809215232000156],[82.54691365500003,27.79029677300008],[82.84488662500002,27.79975658900014],[82.83542664200007,27.884886048000055],[82.71718564800005,27.847051645000192],[82.62731957600016,27.85177937400016],[82.27259860700019,27.951099227000043],[81.93206065600003,28.10717076700007],[81.75706462200009,28.26797607100002],[81.54895755700005,28.32945733100007],[81.41652650400005,28.405128482000123],[81.36464654700012,28.575619411000105],[81.20462763300003,28.67181666900018],[80.9807505190002,28.778791212000158],[80.7076416270001,28.85248825700006],[80.37832654100015,29.00389342400007],[80.22441049100013,29.040230986000154],[80.11576057400009,29.101690286000178],[79.75504252100006,29.132369392000157],[79.45823664700004,29.258463223000035],[79.40142863300014,29.238375154000153],[79.11534153700018,29.315369976],[78.85878757400019,29.29149295100018]]]]},"properties":{"objectid":734,"eco_name":"Terai-Duar savanna and grasslands","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Indomalayan","eco_biome_":"IN07","nnh":4,"eco_id":311,"shape_leng":27.3418057436,"shape_area":3.15365750478,"nnh_name":"Nature Imperiled","color":"#FCD844","color_bio":"#FEAA01","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":34656.85855983466,"percentage":0.16165321648585745}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-95.81270993499999,30.54779963800013],[-95.9330329799999,30.562316494000072],[-96.04166831799995,30.44955291900004],[-96.151255199,30.366068437000024],[-96.36285541199999,30.32879200700006],[-96.6197776539999,30.20008124200018],[-96.8001163539999,30.032136770000136],[-96.904808345,29.88172971500012],[-96.99131218199989,29.8112778040001],[-97.18673959299997,29.582086574000016],[-97.27582499699997,29.49623099300004],[-97.30360926699996,29.41512779900006],[-97.50446059699993,29.238348805000044],[-97.55912746699988,29.135259385000097],[-97.65963311799999,29.07112479800014],[-97.70032044599992,28.996229090999975],[-97.622867209,28.938797137000165],[-97.49645825499988,28.967726464000066],[-97.45509462399997,29.027668246000076],[-97.28611530599989,29.05442088600006],[-97.22954971099989,29.211339649000138],[-97.17142731699994,29.253023007000024],[-97.07057515499991,29.25501374000015],[-96.9697531349999,29.300946736000185],[-96.95758712199995,29.369048482000153],[-96.86844943799991,29.36820108100011],[-96.77821777999998,29.50696386700008],[-96.72707131199991,29.660043369000164],[-96.60620744199997,29.707856766000077],[-96.67013198399997,29.80983050800006],[-96.5885764169999,29.889003682],[-96.51436702599995,29.846617636000076],[-96.4351683839999,29.935004790000164],[-96.31946932199997,29.955219954000142],[-96.31536071799991,30.03745641500018],[-96.18684780299998,30.063561064000112],[-96.19642865499992,30.20049040800012],[-96.10135333499994,30.24600554300008],[-95.98737358499983,30.24204694700012],[-95.93760038499988,30.342692070000055],[-95.71368955299994,30.316528253000172],[-95.65467791699996,30.383139181000104],[-95.75030218799998,30.446042296000087],[-95.85590325099997,30.3989192950001],[-95.883936539,30.4610033510001],[-95.81270993499999,30.54779963800013]]],[[[-98.7938865139999,29.24920963000011],[-98.70217212999984,29.212633025000173],[-98.41460483299988,29.213680663],[-98.31308703399998,29.25906211400013],[-98.26156513899991,29.337616017000073],[-98.10576443699995,29.40284047700004],[-98.04769610499994,29.500253896000117],[-97.98691590699991,29.5414884490001],[-97.86961495299988,29.555514067000104],[-97.89583062499997,29.661307079000096],[-97.86335582499999,29.69219814000013],[-97.70723392499997,29.71985394700016],[-97.68163370099995,29.811666590000073],[-97.60311085299998,29.765966279000054],[-97.56842579,29.839540869000075],[-97.61740169299998,29.943528845000117],[-97.62130926899988,30.067313208000087],[-97.51135867099998,30.182454627000027],[-97.53676986199997,30.302387540000154],[-97.41844836499996,30.28667329400008],[-97.33694806799991,30.407824426],[-97.19246099799989,30.533776095],[-96.97824026099994,30.79621368100004],[-96.89505017299996,30.852789185000063],[-96.92918789099997,30.924334450000117],[-96.79424242099998,31.11626516300015],[-96.72734847099991,31.175236401000177],[-96.47312101899996,31.546346378000123],[-96.40907081699999,31.719787558000064],[-96.27979264499999,31.895361639000157],[-96.23035750999998,31.989234374000034],[-96.18997624399992,32.15118430900014],[-96.35923443699988,32.24205715900018],[-96.53548965599998,32.43660095900003],[-96.50442034099984,32.50802787900011],[-96.38562407499995,32.49770408300003],[-96.29364805499995,32.405237256000134],[-96.19874958899993,32.423566222000034],[-96.13929048499989,32.55972779900014],[-96.19974290799996,32.62008185200011],[-96.14669957099989,32.74652870200015],[-96.19609655499988,32.8336132660001],[-96.27225252099998,32.84348292800013],[-96.22165767399997,32.97033425500018],[-96.16208418999997,32.99433544300007],[-96.02588505799991,33.162511070000164],[-95.91973994299985,33.03565619000011],[-95.77235151199994,33.10785116300008],[-95.68342269299995,33.188959131000104],[-95.60165823499989,33.21946125200009],[-95.53399090299996,33.321783569000104],[-95.53307484599992,33.37934320000011],[-95.46538777499995,33.47527713000005],[-95.36399812399998,33.44975687200002],[-95.20657699099996,33.46488228800007],[-95.17498115799998,33.501081944000134],[-95.34393492899994,33.63882779400018],[-95.63219460599998,33.65327848200019],[-95.60449239299999,33.76326295400003],[-95.6882570969999,33.759126871000035],[-95.76059141599995,33.701411282000095],[-95.8400904689999,33.710714226000164],[-96.0563977029999,33.6444326080001],[-96.33975245399989,33.621494852000126],[-96.45990912999997,33.69647502700013],[-96.5380266599999,33.69151451700003],[-96.6813799649999,33.790475336999975],[-96.75135777999998,33.73577571000004],[-96.91857307899983,33.65623219200012],[-96.91348449399999,33.50686053800007],[-96.9926635519999,33.13648889500013],[-97.05635978599997,33.06218863300012],[-97.02820914699993,32.98624429800003],[-97.09177077499993,32.91601638700007],[-97.03927876299991,32.77044042700004],[-97.13059157099997,32.66886109400002],[-97.12265802499991,32.57066382300013],[-97.2581488589999,32.43068239300004],[-97.14945484699996,32.354085017000045],[-97.27336457199993,32.22546666900007],[-97.22790412199998,31.998015061000103],[-97.12581066799993,31.844893192000143],[-97.16175427699994,31.770562768000104],[-97.12238442099994,31.622295712000152],[-97.20992771799996,31.54924542900011],[-97.3952652289999,31.349054547000037],[-97.39308324399991,31.188877795000167],[-97.44458788499998,31.007346423000172],[-97.56153862199989,30.982964501000026],[-97.65853727099994,30.801349958000174],[-97.67449953299996,30.667959846000144],[-97.71016691099999,30.419069721000085],[-97.83518997099992,30.176405092000152],[-97.84023542699998,30.0956547240001],[-97.90184447799999,30.006785339000146],[-97.92741574199994,29.895560918000058],[-98.16962281199994,29.69770587200003],[-98.25935415299995,29.63807967600019],[-98.47915334399988,29.56127279300017],[-98.65738853599998,29.577653294000015],[-98.87656908499997,29.51696175600017],[-98.90773324599996,29.38714349600002],[-98.7938865139999,29.24920963000011]]]]},"properties":{"objectid":735,"eco_name":"Texas blackland prairies","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Nearctic","eco_biome_":"NE08","nnh":4,"eco_id":401,"shape_leng":23.2805313488,"shape_area":4.12360417389,"nnh_name":"Nature Imperiled","color":"#F3FC49","color_bio":"#FEFF73","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":43514.05349896234,"percentage":0.4106921256280732}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[71.08521258100006,24.69305278900015],[71.13120257500015,24.75412065400019],[71.30792964000011,24.712761661000172],[71.60521663500009,24.556100370000138],[71.7030865860001,24.552010504000123],[72.04174062100009,24.958038779000162],[71.95948749600012,24.99911781600008],[71.91148349800017,25.067015758000082],[71.94072762300016,25.189156852000053],[72.0298916270001,25.286093227000038],[72.14644651700019,25.523924030000046],[72.2623295140001,25.644787218000147],[72.25285360400011,25.679115805000038],[72.122962604,25.693404939000118],[72.067413552,25.732454213999972],[72.24308751400014,25.932651948000057],[72.42539256700007,26.065778699000134],[72.60162359000003,26.24411877700004],[72.80732756400005,26.36366416200002],[73.12481662200008,26.517538302000162],[73.32879660700007,26.659440906000043],[73.43636358200018,26.79802494600017],[73.5633924980001,27.06328301299999],[73.58315249900016,27.181297024000173],[73.57615662800015,27.360040104000177],[73.61258655800009,27.503354052000134],[73.67421751900014,27.519774536000057],[73.92945854100014,27.519003401000134],[74.10735353900014,27.379910244000087],[74.19444251900012,27.23564645800019],[74.21688053900004,27.10230932200011],[74.17218052000015,26.955117737000023],[74.065887594,26.833953136000105],[73.94953152300008,26.593885035000085],[73.96015960800008,26.552536771],[74.07362358700016,26.520840269000075],[74.16826650600018,26.534606539000094],[74.2575076240002,26.585065261000068],[74.38339961800017,26.715129432000026],[74.43611961000005,26.812115261000088],[74.57726264500008,26.993406271000083],[74.75997153900016,27.110431218000087],[74.8190076300001,27.178818999000043],[74.88552859300012,27.407489052000017],[74.85320261000004,27.67623684000006],[74.91842655700003,27.80897098300011],[75.10346260200015,27.949138365000124],[75.37357362300008,27.97947498700006],[75.47161858800001,28.015802491000045],[75.70253750600006,28.178626827000073],[75.80726653700003,28.27133268800003],[76.00464661000012,28.379597373000024],[76.09573359100006,28.48811385],[76.08222950600015,28.621929593],[76.01587651700015,28.64927655800011],[75.83025357100018,28.674406510000154],[75.62991351200014,28.930997018000028],[75.49405660800011,29.01683173000015],[75.23444358500012,29.12157752400003],[75.15136752500018,29.134507280000093],[75.0245436300001,29.221894824000117],[74.87718960500007,29.43505751800018],[74.79968264900015,29.47216504200003],[74.70947258400008,29.470615228000042],[74.61406758200019,29.398366743000054],[74.52474264600016,29.416765020000128],[74.35362961300018,29.614579444000185],[74.30935656800011,29.786290107000184],[74.24504859500007,29.857042255000067],[74.061561526,29.932255419000114],[73.80752548600009,30.066875657000026],[73.56462061400009,30.004754690000084],[73.39813958900004,29.94048711800008],[73.33730356800004,29.744026707000046],[73.2567216270001,29.782742047000056],[73.15055057400019,29.777743416000078],[73.05123155900003,29.83182027000015],[72.85665154400016,29.84819968200003],[72.79399849400016,29.77597332500011],[72.66207857000006,29.7243744970001],[72.49471258300014,29.72731520400015],[72.31128653399998,29.6054897730001],[72.01606752200013,29.48108372200005],[71.78746754100007,29.42194688100011],[71.55711356300009,29.30973046400004],[71.5007176040001,29.22269361900004],[71.43055755400019,29.1754966310001],[71.44096351900009,29.023391575000176],[71.32187662400014,29.002462466000168],[71.15030660900004,29.069861685000035],[71.03845949900006,29.058851217000097],[70.89552357500014,28.864740923000113],[70.92323263800012,28.74472162500018],[70.77529154400014,28.707665231000135],[70.78948964900007,28.655936316000123],[70.68348657000018,28.495462600000167],[70.54826350500008,28.472754683000062],[70.45255256400003,28.33747898000007],[70.3827135410001,28.30143176700011],[70.36354060800011,28.21851697500017],[70.25295262700007,28.14487709400015],[70.158920582,28.12374899800011],[70.10031850600018,28.151327639000158],[70.00845351700019,28.04746110700006],[69.87640350600009,28.079018637000047],[69.83213750200014,27.965975597000067],[69.76162759100015,27.93395588800007],[69.59596262700006,27.788501872000154],[69.40321355500004,27.76900372199998],[69.31741354400003,27.716255064000052],[69.03775754700013,27.313932093000176],[69.01625058900015,27.108552163000127],[68.95770249300017,27.140691732999983],[68.83010059000003,27.090169811000123],[68.73428353400016,27.12007158000017],[68.62796764200004,27.097741687000052],[68.47132864700006,26.950197057000025],[68.35431660800003,26.7567566460001],[68.41240654900008,26.694019274000084],[68.36019148400015,26.588454065000178],[68.39775062400003,26.507948735000127],[68.52271256300008,26.371834841000123],[68.75592057900013,26.25082731700013],[68.78523259700012,26.168612246000123],[68.91251364100009,26.140514430000167],[68.9317935270002,26.268299729000034],[69.0558926330001,26.26713263300013],[69.11184653100003,26.235491116000162],[69.32261652700004,26.01482008000005],[69.32585948500014,25.886067174000175],[69.48570254700007,25.782152027000166],[69.50499752000007,25.660037588000023],[69.57821662900005,25.484365973000024],[69.74694048500015,25.532543644000043],[69.81971753300007,25.48924256400005],[69.73005648200018,25.318283590000135],[69.69052860000005,25.14425181100006],[69.64756061700018,25.050577505000035],[69.46909363800012,24.841845317000093],[69.368698554,24.743480163000072],[69.31086761300014,24.648204913000086],[69.31952662200007,24.572389425999972],[69.23636657500003,24.522669820000033],[69.194099488,24.454554284000153],[69.17680359800016,24.307140747],[69.24397248200006,24.253401348000068],[69.29591362700006,24.27154330700006],[69.50523355400003,24.260854704000053],[69.58958450200015,24.285315612000147],[69.73342852200011,24.172169307000047],[70.03440053700012,24.172751178000112],[70.11321255500008,24.28596353300003],[70.38379648300014,24.35559015900003],[70.55481748300002,24.413807170000098],[70.57274654100007,24.257244115000162],[70.65617363500013,24.221805931000063],[70.80322256000011,24.219867868],[70.87212364800013,24.30171195600019],[70.97846250700007,24.35975009700013],[71.04255657300013,24.354720284999985],[71.09739651600017,24.433696421000036],[71.00018353800004,24.44264494000015],[70.98706049500004,24.591746593000153],[71.08521258100006,24.69305278900015]]]},"properties":{"objectid":736,"eco_name":"Thar desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Indomalayan","eco_biome_":"IN13","nnh":4,"eco_id":318,"shape_leng":28.8467886878,"shape_area":21.7315314529,"nnh_name":"Nature Imperiled","color":"#CFA149","color_bio":"#CC6767","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":239183.05553604383,"percentage":0.9066084280472336}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[81.067397605,46.12975073400003],[80.78955863700008,46.09095056899997],[80.67400354100005,46.043110522],[80.40714251900016,45.88372092100019],[80.20120955100003,45.799930891000145],[79.99191259000014,45.753639651000185],[79.91117860200018,45.678638549000084],[79.66442861500008,45.56103826800006],[79.51003261800008,45.53324840300013],[79.41401657600005,45.487079037000115],[79.27767150900002,45.46765129400012],[78.926582586,45.47961025800004],[78.67014362300011,45.40536805300013],[78.41129251500001,45.443260123000016],[78.31437659200009,45.421298196],[78.26965360700012,45.341017836000105],[78.33598363000016,45.18504989600012],[78.361518595,45.04493967900015],[78.33009349900016,44.947909929000105],[78.19352765300005,44.83462096400012],[77.93646256200003,44.76805792400006],[77.88964862600017,44.68931899600017],[77.99247764700016,44.43415810500011],[77.98728958400011,44.26488842000009],[77.95683259800006,44.22092064399999],[77.71971861500003,44.02719893600016],[77.6883625860001,43.955119933],[77.70610858400005,43.85160544000013],[77.82447849100015,43.83666335700008],[77.92443855400012,43.86291950100008],[78.08724964700008,43.854008532000194],[78.06964865600008,43.76677454500003],[78.09404753800004,43.64596298900017],[78.19564861000009,43.574983357000065],[78.16404749400004,43.489431450000154],[77.92817654700019,43.47289060300017],[77.80738862900012,43.50951147300009],[77.62593853000004,43.485242678000134],[77.48014856700013,43.51655059500001],[77.26323664700016,43.50589149700005],[77.143623536,43.46852363100015],[76.79406749600008,43.42200289500005],[76.58598356400012,43.231181661],[76.43414253800006,43.19269481100008],[76.1345366060001,43.22369276500018],[75.83318354900018,43.30033437300011],[75.69518255400004,43.299914440000066],[75.39488260000007,43.26444155500019],[75.25662260400014,43.311072262000096],[75.04438057800007,43.43860074000014],[74.93010757700017,43.576181131000055],[74.77992264800002,43.68634197000006],[74.4915315340001,43.79983260400013],[74.32631651100019,43.77822254800003],[74.2830885210002,43.715729761000034],[74.29897356900017,43.63659017800012],[74.2704776130002,43.52353054100007],[74.40808063500009,43.41708188000007],[74.59834262900006,43.39452198700013],[74.78491960300005,43.28537250900007],[74.85697949500013,43.2157926540001],[74.94566355100011,43.056964473000164],[75.06797764700019,42.93872498900009],[75.362129643,42.85852543000004],[75.36695057800006,42.76175518400015],[75.14585156200019,42.7338771420001],[74.8252865130001,42.83635462600006],[74.38079050000016,42.88793618700015],[74.13318656500013,42.87590547400009],[73.85061651500001,42.83548475200001],[73.45704659799998,42.857186505000186],[73.21292148900005,42.91986520299997],[73.03019750800007,42.933082962000185],[72.82684348500004,42.99125286700007],[72.57821662200007,43.03326464200006],[72.2031785900001,43.03806344900005],[71.91198758600012,43.08969547000004],[71.60777261200008,43.04525344600012],[71.52284951600006,42.94384398400007],[71.50798756400013,42.85269665500016],[71.36583752700011,42.77154709100006],[71.32582064400015,42.72314612700012],[71.12140664499998,42.581805278000104],[71.07407353500014,42.39784630800017],[71.17185262700019,42.35787653200009],[71.39103654500019,42.32806880800007],[71.63842757900011,42.27594812300015],[71.83318361400018,42.314846859000056],[71.93052651199997,42.20626952900011],[72.06359056600007,42.209328588000176],[72.12590750100009,42.27501806700013],[72.23757959700015,42.27562826900015],[72.3671876250001,42.22919956600009],[72.51473963100005,42.25277031600007],[72.71990951100014,42.314968899000064],[72.93763749200019,42.345276520000084],[73.08101648400003,42.37870841200015],[73.14182249800012,42.43731719300007],[73.09398664100019,42.48769679000003],[72.86042759100019,42.50892546800003],[72.74140959500005,42.551017207000086],[72.660957574,42.52823552900003],[72.50102264700018,42.56157622600006],[72.32630154000014,42.63272668100012],[71.98798362000014,42.70375643800014],[71.90879056000011,42.7854359050001],[71.99033357000008,42.82573475400011],[72.41171263000018,42.75664691700018],[72.65675354700011,42.68741860000017],[72.85916862900012,42.69111434800004],[72.94992854800017,42.638685879000036],[73.18894153400004,42.64822565900016],[73.333930522,42.67905664500012],[73.63912165200003,42.639375710000024],[73.78067758000003,42.56960608900016],[74.04107649000008,42.5430362940001],[74.2476575460002,42.62693696600007],[74.4907376000001,42.61805600400015],[74.68946850100008,42.58050809500014],[74.89028951400013,42.596895889],[75.0518416450002,42.56726016200014],[75.19380962700018,42.576716290000036],[75.44629652300017,42.529746451000165],[75.4961626450002,42.42677695000009],[75.30680053200018,42.44633813300004],[75.22454053400008,42.41162934200014],[74.91584761300015,42.40889717700014],[74.90142051300018,42.3062480320001],[74.7919086010001,42.2556391060001],[74.79535658100014,42.15421086900005],[74.52570354700015,42.204739664000044],[74.34967050500018,42.14634093300009],[74.24971061000008,42.186169893000056],[74.2836836370002,42.24303926200014],[74.49273651600015,42.346966647000045],[74.39669063500008,42.42345000500006],[74.10636849800011,42.39211627200018],[73.67420159300008,42.3783074210001],[73.58403762800015,42.34097660400016],[73.19612164000011,42.283059162000086],[73.12426760800014,42.24244850500003],[73.13803052499998,42.17199877700011],[73.30724354800014,42.131918024000186],[73.44161953800005,42.06207866600016],[73.53256251700014,42.159177818000046],[73.65897351900009,42.09274955900008],[73.88098163600006,42.03953084400007],[74.06815355700019,41.92135187600019],[74.05101759500008,41.85721221200009],[73.73362761000016,41.882553220000034],[73.72917162300013,41.765431042000046],[73.5158764950001,41.69229273500014],[73.72248051700018,41.51834410400005],[73.7721176450001,41.404267239000035],[73.92720749700004,41.25282854500006],[73.96704852700014,41.129870719000166],[74.13520861500007,40.90712097100004],[74.34368163500005,40.831792807000056],[74.41860964700015,40.87135153500003],[74.41829649900018,40.975460304000194],[74.46891749400004,41.021378046],[74.66776255700017,41.030307958000094],[74.84536754200013,41.067268296],[74.96164650000014,41.05953967800002],[75.1655424970001,41.207667018000166],[75.2531506520001,41.20557623600001],[75.32023655500018,41.156039691000046],[75.38575755700015,41.02436887700014],[75.54399162800013,41.00460099700018],[75.79192363100009,41.10996889600011],[75.94390849000013,41.14133783300002],[76.10269962300015,41.20586591500012],[76.49359152200014,41.29437814199997],[76.71650656000014,41.303765203000125],[76.71347851400003,41.40083736500014],[76.50868950900013,41.408146217000194],[76.55069759600019,41.549067802000025],[76.33441951499998,41.65193403800015],[76.22824863000011,41.584875628000134],[76.07350159800006,41.60462439800011],[75.93788156600004,41.704461414000036],[75.79557059700005,41.730451349000134],[75.7292705810001,41.77132100600011],[75.53366059700016,41.76522199800013],[75.43202951800004,41.84255243100017],[75.321922491,41.88781018200012],[75.18199952600008,41.98781919500004],[75.14807159300011,42.07984042200019],[75.34971654700007,42.06017983000004],[75.42639956200014,42.02022095000018],[75.46527851700012,41.931441676000134],[75.54490659700002,41.89755984400017],[75.7354815710001,41.919749927000055],[76.00583650500005,41.90425078200013],[76.07689660400013,41.87391717700018],[76.29016155800014,41.90363286800016],[76.29399158500001,41.96810026500009],[76.12185663000008,42.01546002900017],[75.94513660700005,42.02635097100011],[75.93927748900018,42.08581034900004],[76.12420658000019,42.09332539500008],[76.60247764100018,42.01305995500019],[76.99624654400014,42.00846013400019],[77.1388475280001,42.043802932],[77.27966350100007,42.08820941700009],[77.46909350700003,42.11086117500008],[77.61849255000016,42.15584014400014],[77.74192864700007,42.21986849600006],[78.05750260800016,42.32475695100004],[78.19335163300002,42.40767610100016],[78.85439260700008,42.675077588000136],[78.794731561,42.762216189000185],[78.665702555,42.74474528500008],[78.49427050700007,42.75256526600009],[78.34147662600009,42.84464349000001],[78.22305257200003,42.85436348000013],[77.81323249100012,42.83170451300015],[77.61972854500004,42.83415370600005],[77.3281325270001,42.8664944410001],[77.17401162300018,42.84089359400008],[77.10732251900004,42.77890606700004],[76.93923954400015,42.777554904000056],[76.58663165300004,42.73278615400011],[76.43604254800005,42.69721838600009],[76.24710053600006,42.678465386000084],[76.10772658500008,42.68929430200012],[76.15316756500005,42.77969480399997],[76.1404116490001,42.89071327900007],[76.01689961200015,42.956254063000074],[75.52973954300012,43.04729460699997],[75.5065686100001,43.105709096],[75.63893160200007,43.12477507600016],[75.89293662800009,43.06411356600006],[76.17633849800006,43.08303420400006],[76.40881360000003,43.0681834830001],[76.48947852200018,43.14551509000006],[76.74257662600013,43.169674081000096],[76.93187755100018,43.207881646000146],[77.07479855600008,43.26422446400011],[77.40795858800016,43.36192225100007],[77.64453160200009,43.395484062000094],[77.83634156600004,43.40168197600008],[77.9224396370002,43.351992210000105],[77.97712753200005,43.17799278500007],[77.925750489,43.075973289],[78.02660356000013,43.03393569700012],[78.10472055100018,43.05581263200003],[78.25801851900002,43.034313554000164],[78.3672335440001,43.06645245300007],[78.5733566130001,43.055748595000125],[78.70099657000003,43.02566577599998],[78.8650585790001,42.94350502000009],[78.99893165400005,42.809353666000106],[79.10353059800019,42.7832277760001],[79.22810361600011,42.8389444660001],[79.47872151500013,42.79997398100005],[79.65493761900012,42.837189631000115],[79.84893056500005,42.83154458700005],[80.23529053700008,42.74563426999998],[80.26065065600011,42.81726987000019],[80.37359663300015,42.823662580000075],[80.57499650000011,42.912545120000175],[80.40077260800007,42.983528776000185],[80.41280365600005,43.05538532300011],[80.54118356700008,43.09485235200003],[80.45295749899998,43.188113933000125],[80.38205749400004,43.20031295500013],[80.37789152100004,43.28499146700017],[80.20590257900017,43.30633447500003],[79.97161061500015,43.27158243400015],[79.58635755800009,43.17179403200009],[79.4966965070002,43.17801189600016],[79.47157259000005,43.24663470500019],[79.52337660800015,43.29535250499998],[79.69135263000015,43.35406421700003],[79.92642260100018,43.38466084600003],[80.08733351700005,43.379317047000086],[80.17140149200009,43.406270901000084],[80.46412655200015,43.42062172500016],[80.73969251600016,43.46337680700009],[80.63731360300011,43.63361493700006],[80.89582055000005,43.6629350020001],[81.05161263800005,43.70380465900013],[81.58440362000005,43.75191259300016],[81.88407157800009,43.83079652700013],[81.95796157500018,43.88436543800003],[81.97245053300014,44.07982287100003],[81.78477452400006,44.261764485000185],[81.10435459000013,44.438396163000164],[80.78126558200017,44.47127518400015],[80.627509627,44.42039418200005],[80.34983058500012,44.442886181],[80.4050066420001,44.6113010790001],[80.32349363900005,44.6616168060001],[80.17049457000019,44.62516005300017],[79.98172757200012,44.666216794000036],[79.78713951000003,44.73877976800003],[79.61034354700007,44.77223496200003],[79.63127164999997,44.911200714000074],[79.51853957900005,44.966132857000105],[79.27619160100016,44.97736678700005],[79.28404963500003,45.058787924000114],[79.5421215610001,45.08922077000017],[79.84143060600007,45.1467357140001],[79.89520252699998,45.22217887700009],[80.12091863,45.33485009600014],[80.34819762300003,45.36686997200002],[80.51808153400009,45.455860135000194],[80.72557051799998,45.49266809000005],[80.90177958000015,45.57878141600014],[81.07018257600015,45.76203161300015],[81.19568665700007,45.77170952600005],[81.49710861200009,45.74052867800009],[81.57913961700012,45.71416859800007],[81.69354253700004,45.594089453000095],[81.79531862300001,45.53314513800018],[82.09690050500018,45.48368403100005],[81.9609755400001,45.55971543600003],[81.82303657100016,45.70818341699999],[81.53838361800013,45.82322671400004],[81.4397425320002,45.92150888800012],[81.23280356800012,46.064663412000016],[81.067397605,46.12975073400003]],[[77.3053585610001,42.669565649000106],[77.5193326230002,42.65139569400014],[77.80507656400005,42.730924198000025],[78.00038949300017,42.70977632100005],[78.11564652900006,42.57184925400003],[78.0006785010001,42.45926604500016],[77.90149661400011,42.46111676900017],[77.80126950400017,42.29759690200018],[77.68776663300008,42.208737497000186],[77.4940875040001,42.15289105500011],[77.29306063200016,42.1748977420001],[77.05435962000001,42.15785800300017],[76.8086696090001,42.21753044800005],[76.7468036200001,42.25348730400009],[76.59120951300008,42.26529824400012],[76.3876875160002,42.34747760800013],[76.2319566160001,42.334308799999974],[76.18546253500017,42.446220115000074],[76.30442051600005,42.477946625000186],[76.45107264100011,42.468257815000015],[76.61589053000017,42.508475528000076],[76.63169863200005,42.54739639200005],[76.77831253500011,42.5890071770001],[76.96701851200015,42.60087511400019],[77.09819060300009,42.642557648000036],[77.3053585610001,42.669565649000106]]]},"properties":{"objectid":737,"eco_name":"Tian Shan foothill arid steppe","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Palearctic","eco_biome_":"PA08","nnh":3,"eco_id":740,"shape_leng":68.8411194203,"shape_area":14.3346873362,"nnh_name":"Nature Could Recover","color":"#FCC73D","color_bio":"#FEFF73","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":129284.91194761694,"percentage":1.220210277598506}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[71.07407353500014,42.39784630800017],[70.85266858000017,42.393707324],[70.80416854100014,42.3648304940001],[70.81249260900017,42.272858050000025],[70.89668262400016,42.24133823800008],[71.02159158900008,42.24281043600007],[71.04438751600003,42.17831990500014],[70.88353762100013,42.06944870600012],[70.86692049800001,42.00039221700007],[70.98632858700006,41.975531325000134],[71.16761054500006,42.047830939000164],[71.37212361900015,42.08875843100009],[71.44669355600018,42.06861353300019],[71.63725260400014,42.07641859400019],[71.69978361300008,42.02900987900006],[71.67127257000016,41.964110311000184],[71.30690755000006,41.84682133400014],[70.9719775960001,41.62026419100016],[70.72295359900016,41.544443841000145],[70.5181575530001,41.434463884000024],[70.53436262100013,41.338257740000074],[70.7096325760001,41.31040719100008],[70.79963661400006,41.39346732500013],[70.88948055800006,41.39377611400005],[70.9668425070002,41.52674411200019],[71.21602659700011,41.53220307800012],[71.42598757300016,41.60479237100003],[71.5781405730001,41.74011333600009],[71.85294361600018,41.831421599000066],[72.17340858500012,41.82881248000007],[72.17194359600018,41.98530127100008],[72.23338361700007,42.04331074700008],[72.41204857700018,42.09626945500014],[72.57644653199998,42.05957281200011],[72.7018966330001,42.08038943600013],[72.79604351100016,42.16151988900015],[72.90104662900018,42.12113018000019],[72.96935260200007,42.25263721200008],[72.93763749200019,42.345276520000084],[72.71990951100014,42.314968899000064],[72.51473963100005,42.25277031600007],[72.3671876250001,42.22919956600009],[72.23757959700015,42.27562826900015],[72.12590750100009,42.27501806700013],[72.06359056600007,42.209328588000176],[71.93052651199997,42.20626952900011],[71.83318361400018,42.314846859000056],[71.63842757900011,42.27594812300015],[71.39103654500019,42.32806880800007],[71.17185262700019,42.35787653200009],[71.07407353500014,42.39784630800017]]],[[[78.34147662600009,42.84464349000001],[78.61298356900005,42.80494495200003],[78.70809151600014,42.859364626],[78.501830648,42.96279580300006],[78.20172163400008,42.960144942000056],[77.84454359400007,42.998058805000085],[77.61126751699999,43.066265536000174],[77.64076259600017,43.15365190600005],[77.77030155699998,43.17353394800017],[77.84426162600005,43.26970254100013],[77.75498161700006,43.31916331300016],[77.59266656500017,43.255991591000054],[77.30703762400003,43.20797284100013],[77.13120256100018,43.1961439640001],[76.83447262800013,43.10344313200011],[76.5279236290001,43.04451349200019],[76.40881360000003,43.0681834830001],[76.17633849800006,43.08303420400006],[75.89293662800009,43.06411356600006],[75.63893160200007,43.12477507600016],[75.5065686100001,43.105709096],[75.52973954300012,43.04729460699997],[76.01689961200015,42.956254063000074],[76.1404116490001,42.89071327900007],[76.15316756500005,42.77969480399997],[76.10772658500008,42.68929430200012],[76.24710053600006,42.678465386000084],[76.43604254800005,42.69721838600009],[76.58663165300004,42.73278615400011],[76.93923954400015,42.777554904000056],[77.10732251900004,42.77890606700004],[77.17401162300018,42.84089359400008],[77.3281325270001,42.8664944410001],[77.61972854500004,42.83415370600005],[77.81323249100012,42.83170451300015],[78.22305257200003,42.85436348000013],[78.34147662600009,42.84464349000001]]],[[[92.23861661600017,43.71759875700013],[92.13777159200009,43.6210881830001],[92.02517664800007,43.56952824700011],[91.87620558600008,43.56126234900006],[91.85829161500016,43.52221860600014],[91.9382705610002,43.4233379640001],[92.17656656000014,43.284277329000076],[92.34088857500006,43.252631621000035],[92.77340651400016,43.20038587800008],[92.94613658400004,43.154604928000026],[93.31204957300008,43.16714107000007],[93.59410866200005,43.1627920360001],[93.88253766200012,43.11642033000004],[93.97388464900007,43.04143548900015],[94.10662851400008,43.01116961000014],[94.25839963500016,42.9373820400001],[94.44954659000018,42.89482644700007],[94.63641357800003,42.91378513899997],[94.93301359200012,43.00587476200013],[95.09619164500003,43.029239485000176],[95.1386416260001,43.132262965],[94.88026459900004,43.21975964100017],[94.52103466900013,43.31927713900012],[94.35967263900005,43.453908777000095],[94.16431461600013,43.520116592000136],[94.15906553300005,43.61960726800004],[94.08066556900013,43.72401191900019],[93.82301357600005,43.902047398000036],[93.67828358900005,43.949849057000165],[93.288192665,44.042060721000155],[93.13623865100016,44.03780372000011],[93.03915358100016,44.063285879000034],[92.90904951200014,44.026897858000154],[92.65975964200015,43.8337223150001],[92.4528126310002,43.792706477000195],[92.23861661600017,43.71759875700013]],[[93.55672453600005,43.56958926699997],[93.41134662800005,43.62115624400013],[93.46691160500018,43.67781204200003],[93.6625826080001,43.6466840010001],[93.64308160800005,43.56688845000008],[93.55672453600005,43.56958926699997]],[[92.2102276130002,43.408185998000135],[92.27133151900011,43.477735678000045],[92.44885251700009,43.559412463000115],[92.64057966800016,43.53442148300002],[92.73598466900017,43.54284848100008],[92.84503155300007,43.50612853700011],[92.87875362600005,43.41419079400015],[92.45481154800012,43.4049670120001],[92.25545451800014,43.37926306800017],[92.2102276130002,43.408185998000135]],[[93.33288564300011,43.43900893800014],[93.42746754199999,43.45984065000016],[93.62247453100002,43.41633488400009],[93.67436253500017,43.36912800600004],[93.59130055700012,43.28151951500013],[93.50460854400006,43.285815408000076],[93.44460266700014,43.35400604600011],[93.21411860200016,43.374445150000156],[93.33288564300011,43.43900893800014]],[[94.24192852500016,43.29343724100016],[94.29364755000006,43.274642499000095],[94.22821053400008,43.107956284000124],[94.09704565200013,43.163009127000066],[94.09667953000002,43.25702541500016],[94.24192852500016,43.29343724100016]]],[[[91.41931156400005,43.41469085800014],[91.05020859000018,43.66227886700011],[90.94246660000005,43.65477086100009],[90.78324162000007,43.697831883000106],[90.57593552900005,43.804417672000056],[90.37422150900011,43.812840479000045],[90.07185357200018,43.943631194000034],[89.98289458900013,44.04803886200017],[89.84411659200003,44.10920378900005],[89.45359752000007,44.2428352980001],[89.37187161700001,44.24279741100008],[89.25775954900007,44.15370163600005],[89.19975258800014,44.15466270500008],[88.82892663000018,44.25026334000006],[88.49073762300009,44.35644914500017],[88.02730554900018,44.30734242400001],[87.95226253700014,44.26990431900009],[87.83969156600006,44.15011552300007],[87.78247853900012,43.86126441000016],[87.67736058800011,43.65864313300017],[87.55072059200006,43.54768953300004],[87.50024460400005,43.61178024700018],[87.48783854900006,43.727070643000104],[87.38116458200005,43.84217948700018],[87.19168864300008,43.911587178000104],[86.80696062800013,44.024814787000025],[86.45372057300011,44.078269704000036],[86.31434662200013,44.075649689000045],[86.01038360900003,44.10375957500008],[85.64953664200016,44.162181608000026],[85.39394358000015,44.30493547700007],[85.04706555800016,44.187583636],[84.9395066290001,44.17320666000006],[84.5488816100002,44.22247364300017],[84.21345561400005,44.16644246400017],[84.02530653000014,44.15353768600016],[83.87602952900016,44.27572253300008],[83.61190754500007,44.297183223000104],[83.27513860100015,44.26140557200006],[83.05033159900012,44.29426933800016],[82.84333060900008,44.43708707700017],[82.78858152600009,44.50869702900019],[82.88264458500004,44.67051989600009],[82.78215059500008,44.75872668599999],[82.44409955400005,44.81230498500008],[82.36315953899998,44.898295936000125],[82.6037825210002,44.9736777440001],[82.6910555680002,44.96971075700003],[82.75286858400017,45.058016956000074],[82.73910549900012,45.236971930000095],[82.73520657200004,45.28761606000012],[82.31133255500015,45.44656711900012],[82.09690050500018,45.48368403100005],[81.79531862300001,45.53314513800018],[81.69354253700004,45.594089453000095],[81.57913961700012,45.71416859800007],[81.49710861200009,45.74052867800009],[81.19568665700007,45.77170952600005],[81.07018257600015,45.76203161300015],[80.90177958000015,45.57878141600014],[80.72557051799998,45.49266809000005],[80.51808153400009,45.455860135000194],[80.34819762300003,45.36686997200002],[80.12091863,45.33485009600014],[79.89520252699998,45.22217887700009],[79.84143060600007,45.1467357140001],[79.5421215610001,45.08922077000017],[79.28404963500003,45.058787924000114],[79.27619160100016,44.97736678700005],[79.51853957900005,44.966132857000105],[79.63127164999997,44.911200714000074],[79.61034354700007,44.77223496200003],[79.78713951000003,44.73877976800003],[79.98172757200012,44.666216794000036],[80.17049457000019,44.62516005300017],[80.32349363900005,44.6616168060001],[80.4050066420001,44.6113010790001],[80.34983058500012,44.442886181],[80.627509627,44.42039418200005],[80.78126558200017,44.47127518400015],[81.10435459000013,44.438396163000164],[81.78477452400006,44.261764485000185],[81.97245053300014,44.07982287100003],[81.95796157500018,43.88436543800003],[81.88407157800009,43.83079652700013],[81.58440362000005,43.75191259300016],[81.05161263800005,43.70380465900013],[80.89582055000005,43.6629350020001],[80.63731360300011,43.63361493700006],[80.73969251600016,43.46337680700009],[80.46412655200015,43.42062172500016],[80.17140149200009,43.406270901000084],[80.08733351700005,43.379317047000086],[79.92642260100018,43.38466084600003],[79.69135263000015,43.35406421700003],[79.52337660800015,43.29535250499998],[79.47157259000005,43.24663470500019],[79.4966965070002,43.17801189600016],[79.58635755800009,43.17179403200009],[79.97161061500015,43.27158243400015],[80.20590257900017,43.30633447500003],[80.37789152100004,43.28499146700017],[80.38205749400004,43.20031295500013],[80.45295749899998,43.188113933000125],[80.54118356700008,43.09485235200003],[80.41280365600005,43.05538532300011],[80.40077260800007,42.983528776000185],[80.57499650000011,42.912545120000175],[80.37359663300015,42.823662580000075],[80.26065065600011,42.81726987000019],[80.23529053700008,42.74563426999998],[80.31404857600012,42.673242622000146],[80.17491954400003,42.656500609000034],[79.84998350000018,42.670763423000096],[79.70458949900018,42.73134429900006],[79.65493761900012,42.837189631000115],[79.47872151500013,42.79997398100005],[79.22810361600011,42.8389444660001],[79.10353059800019,42.7832277760001],[79.15850850600003,42.69868236900015],[78.81647455300015,42.60127107500017],[78.59294864200012,42.4485008310001],[78.21269254000009,42.32579865400004],[78.1255495800001,42.21841138600007],[78.03032663400012,42.202237665999974],[77.92871064200006,42.126108192000174],[77.72239663300007,42.13117807000009],[77.58004761000012,42.03731383000013],[77.18176253700005,42.02106383400013],[77.1388475280001,42.043802932],[76.99624654400014,42.00846013400019],[76.60247764100018,42.01305995500019],[76.12420658000019,42.09332539500008],[75.93927748900018,42.08581034900004],[75.94513660700005,42.02635097100011],[76.12185663000008,42.01546002900017],[76.29399158500001,41.96810026500009],[76.29016155800014,41.90363286800016],[76.07689660400013,41.87391717700018],[76.00583650500005,41.90425078200013],[75.7354815710001,41.919749927000055],[75.54490659700002,41.89755984400017],[75.46527851700012,41.931441676000134],[75.42639956200014,42.02022095000018],[75.34971654700007,42.06017983000004],[75.14807159300011,42.07984042200019],[75.18199952600008,41.98781919500004],[75.321922491,41.88781018200012],[75.43202951800004,41.84255243100017],[75.53366059700016,41.76522199800013],[75.7292705810001,41.77132100600011],[75.79557059700005,41.730451349000134],[75.93788156600004,41.704461414000036],[76.07350159800006,41.60462439800011],[76.22824863000011,41.584875628000134],[76.33441951499998,41.65193403800015],[76.55069759600019,41.549067802000025],[76.50868950900013,41.408146217000194],[76.71347851400003,41.40083736500014],[76.71650656000014,41.303765203000125],[76.49359152200014,41.29437814199997],[76.10269962300015,41.20586591500012],[75.94390849000013,41.14133783300002],[75.79192363100009,41.10996889600011],[75.54399162800013,41.00460099700018],[75.38575755700015,41.02436887700014],[75.32023655500018,41.156039691000046],[75.2531506520001,41.20557623600001],[75.1655424970001,41.207667018000166],[74.96164650000014,41.05953967800002],[74.84536754200013,41.067268296],[74.66776255700017,41.030307958000094],[74.46891749400004,41.021378046],[74.41829649900018,40.975460304000194],[74.41860964700015,40.87135153500003],[74.34368163500005,40.831792807000056],[74.13520861500007,40.90712097100004],[73.96704852700014,41.129870719000166],[73.92720749700004,41.25282854500006],[73.7721176450001,41.404267239000035],[73.72248051700018,41.51834410400005],[73.5158764950001,41.69229273500014],[73.22384662899998,41.58777459300012],[72.86270160200013,41.55835277200015],[72.772247623,41.517085309000095],[72.76448061600013,41.45672571600005],[72.82808652100005,41.36854658600009],[72.9618526430001,41.38499523200005],[73.06195855100009,41.45964781500015],[73.17955061800018,41.38774533500009],[73.32700355000009,41.36258755500006],[73.48230764300013,41.26487535100006],[73.66589361800004,41.10214925100013],[73.71221955900012,41.035049769000125],[73.81701665100013,40.988243210000064],[73.83827952700011,40.92281893500018],[73.80239056500005,40.84491987400003],[73.87465665200006,40.781882597000106],[74.00626359600017,40.84077669900017],[74.15045160900007,40.69319133300007],[74.13757348500019,40.642254004],[74.22509748599998,40.54291302900015],[74.42948164600006,40.402247594000016],[74.44217654100004,40.319786766],[74.33390850300003,40.25461663100003],[74.08759353800008,40.25853852299997],[73.9902196270001,40.35982527400006],[73.8966526100001,40.385283796000124],[73.8651586150001,40.48485376500008],[73.76431258500014,40.49531370900013],[73.44111662400019,40.60503449800012],[73.33747053500008,40.65282492500006],[73.2522964850001,40.635574968000185],[73.26702851800019,40.55602383400003],[73.38085157800003,40.499715550000076],[73.57673648800017,40.28643902900012],[73.6126095250001,40.222996739000166],[73.57740050200005,40.003479724000044],[73.4641795980001,39.926549778000094],[73.5515515510001,39.85735163500004],[73.68130458600007,39.67149097900017],[73.86015361200015,39.49614659300016],[74.09812958999999,39.37912902200003],[74.25636248800015,39.385983910000164],[74.41422255900011,39.31253714900015],[74.80247449300003,39.237972073000094],[75.22850752100015,39.01626570500008],[75.39861254700008,38.895554564000065],[75.48235362700018,38.79413118900004],[75.40752452200019,38.70836655000011],[75.25795750600014,38.68072605000003],[75.01750953700014,38.743327971000156],[75.00730155300016,38.68791269400009],[75.14583563700006,38.59919226100004],[75.47344249000014,38.55537284400003],[75.70171356500015,38.561319972000035],[75.92567449800009,38.61192889800003],[76.01798255400007,38.69696062300005],[75.87084159600016,38.76597151500016],[75.72876749900007,38.88786450300017],[75.73348248700006,39.012187741],[75.69802854500006,39.11903085500006],[75.54982761200017,39.131485693000116],[75.26941657300011,39.276335709000136],[74.94715854800012,39.51230539400012],[74.76907361500008,39.66233207300013],[74.69107849700003,39.74851597500003],[74.65184062900016,39.91034102100019],[74.87572461600013,39.91117669700009],[74.95004259300009,40.00053482600015],[75.09951053400005,40.0290604540001],[75.36318157200009,39.97414105100006],[75.53392764500006,40.07088078700008],[75.61696648900016,40.07916579500011],[75.8490214900001,40.03027717100014],[76.05007149700009,40.06761486200014],[76.31933561000011,40.25603250200004],[76.46410365100002,40.30230781600011],[76.60466749699998,40.41347062700004],[76.72171054900019,40.57083666900007],[76.82504265100016,40.66598166300008],[76.95099650500009,40.616837392000036],[77.44164260700018,40.61010823200019],[77.67061658800009,40.62294411100004],[77.95380354600007,40.65678487200006],[78.32781965600003,40.84255785300007],[78.40388458900014,40.94730063000014],[78.51751754800017,41.04898451500003],[78.68939953700016,41.144572745000175],[78.81550560500006,41.16741443700005],[78.91287951600009,41.22117395200007],[79.26673849000002,41.5385498550001],[79.40489153300013,41.59202036200014],[79.68712664200007,41.65726694000011],[80.04701254000014,41.68583062200008],[80.31821454900006,41.73690524700015],[80.72234365300011,41.78255175000015],[80.917846515,41.83739152500016],[80.94985951800015,41.86889323200012],[81.36636349600019,41.86794708300005],[81.53350065700016,41.91625182299998],[81.59974652600016,41.973025471000085],[81.76140561000005,41.94714651200013],[81.96351659800018,42.03564281400003],[82.12638854300002,42.07224155600011],[82.48322259100013,42.077749472000164],[82.68108361800006,42.1620918700001],[82.81886266000004,42.156519078000144],[83.1201245210001,42.27278998900016],[83.32900959500006,42.27114914800018],[83.43952163600017,42.29435008800016],[83.69401549500003,42.383316447000084],[83.95552852700013,42.40364138800004],[84.06775651100014,42.34978849900011],[84.58765461800004,42.352237691000084],[84.85893256700007,42.295357928000044],[85.2259365450002,42.37133837200014],[85.86558556100005,42.4562488950001],[86.1071166390002,42.586837103000164],[86.33483165800004,42.643572696000035],[86.51864662700007,42.62903881200009],[86.61640962600012,42.64432757100019],[86.89411951300013,42.764477962],[86.98476459900019,42.71939623100019],[87.1815104980002,42.68925641600015],[87.2825466290002,42.73990423300012],[87.51231353800017,42.69065334400011],[87.64594253299998,42.70802148500019],[87.70919757100006,42.77444203300013],[87.75016764300011,43.030147748000104],[87.72564655300005,43.08548725200018],[87.77752651100019,43.196524670000144],[87.94252762700006,43.384103952000146],[88.22862964300003,43.40396688300001],[88.93438756800003,43.38342501800008],[89.74685650700002,43.23542374200008],[90.04394552200017,43.19209181700012],[90.36392953800004,43.20470792200007],[90.62602259800013,43.200945956000055],[91.06172951600007,43.21189758400004],[91.42168464800011,43.14874597800019],[91.48023961800016,43.165001002999986],[91.35507165200005,43.34699106400018],[91.41931156400005,43.41469085800014]],[[84.910629631,43.883446279000054],[85.04708064500005,44.07417682100004],[85.12142158800015,44.097213811000074],[85.40026856399999,44.02510899200007],[85.7299655290002,44.06368284600012],[85.69290963800006,43.98694702500012],[85.37531262100009,43.95676815000007],[85.00519560400005,43.87308943200014],[84.910629631,43.883446279000054]],[[86.16698455000005,43.875527392000095],[86.34267460500018,43.85894446700013],[86.44961562000003,43.74026962600004],[86.42443856199998,43.67275004300018],[86.05389356500007,43.74181474600016],[85.98531350400003,43.79388564300007],[86.03403465700006,43.843663419],[86.16698455000005,43.875527392000095]],[[86.756690499,43.67540878300002],[86.94520553600006,43.69849874700003],[87.18949157800012,43.61623908400003],[87.2910385030001,43.542482360000065],[87.33169559500016,43.44566986900014],[87.1536785560001,43.464944726000056],[87.04267164700008,43.41746375900016],[86.73315461700008,43.63035001800017],[86.756690499,43.67540878300002]],[[90.02424654100014,43.47536661700002],[89.88285858600011,43.50743259300003],[89.62010151200013,43.60460399700008],[89.63590257300007,43.656090843000015],[89.84391760500017,43.70053571700004],[89.97329764500012,43.653572919000055],[90.24773356100019,43.64052011700011],[90.40419754200008,43.56180046700018],[90.37403861600018,43.467123686000036],[90.02424654100014,43.47536661700002]],[[84.57673651800013,43.66854584800018],[84.53291358100017,43.59159628900011],[84.66663360299998,43.41498003400011],[84.61905658000012,43.33526914000004],[84.39389753800009,43.25845268500012],[84.31440759100013,43.32365735400009],[84.38397252600015,43.44665373700019],[84.34601558000014,43.60202924400011],[84.49111956800004,43.677533762999985],[84.57673651800013,43.66854584800018]],[[83.63195756000016,43.35418625699998],[83.63330855500016,43.31684420800019],[83.29649351100011,43.16541607500005],[83.08229062200007,43.082637405000185],[82.91468055400014,43.03808272800012],[82.42644458400014,42.94326110700007],[82.26350357100011,42.94656408000009],[82.36887365000018,43.02413172000007],[82.78329455700009,43.11581834200018],[83.05518354700013,43.19751675200018],[83.48230756400017,43.34854406300019],[83.63195756000016,43.35418625699998]],[[81.84761851400003,43.11756110700003],[81.90435058700012,43.06200434400017],[81.78539260500014,42.980590919000065],[81.47888149300019,42.92024708300016],[81.23133053200007,42.92273399400011],[81.1213074920002,42.97375497400009],[81.1810376050002,43.01706359700012],[81.60570555600009,43.101585367000155],[81.84761851400003,43.11756110700003]],[[81.93129756800016,43.288020519000156],[81.50721752300007,43.196337921000065],[81.28939063500007,43.181105824000156],[81.14305853100018,43.21388174800012],[81.11180157600006,43.26603663100019],[81.2211225480001,43.32410310400002],[81.67407959000019,43.37605514600011],[81.87779956800006,43.34643417000012],[81.93129756800016,43.288020519000156]],[[82.9848095910001,43.319090391000145],[82.97982051500009,43.378202925000096],[83.06193550500012,43.443670618000056],[83.39317356700019,43.47162057700007],[83.4879306470001,43.38804495500017],[83.204269609,43.31550813300004],[82.9848095910001,43.319090391000145]],[[81.5072855840001,42.84167545800011],[81.79644062400007,42.90666337100015],[81.90039064100006,42.911301245000175],[81.92881753000012,42.845975709000015],[81.73571759100014,42.78464280900005],[81.6609426330001,42.79249682000017],[81.48422965100019,42.751550050000105],[81.27535262300017,42.730619096],[81.32902563700003,42.81102082600006],[81.5072855840001,42.84167545800011]],[[80.81557455600012,42.66702844700018],[80.98874652000018,42.67995635900013],[81.067733552,42.603427068000144],[80.88030263000002,42.427768194],[80.81436957300019,42.431820006000066],[80.71567551300012,42.52218144800008],[80.59594757000008,42.56458231100015],[80.63819856500015,42.618742817],[80.81557455600012,42.66702844700018]],[[88.11756154699998,43.75139358500019],[88.044586519,43.804074350000064],[88.05022452200012,43.94073122300017],[88.23369566600002,44.14964278300005],[88.33987459800016,44.233070380000015],[88.48751059100005,44.184261720000165],[88.71046452100006,44.20660737100013],[88.90966061800015,44.15039866300003],[89.03627060700012,44.080360654000174],[89.2612915150001,43.895962137000026],[89.29050462700008,43.760399605000146],[89.01898159000018,43.835137515000156],[88.80268054400017,43.96289917700011],[88.4322966470001,44.08213476800006],[88.30763260100008,44.045616995000046],[88.18936159999998,43.90722724700004],[88.11756154699998,43.75139358500019]]]]},"properties":{"objectid":739,"eco_name":"Tian Shan montane steppe and meadows","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Palearctic","eco_biome_":"PA10","nnh":2,"eco_id":767,"shape_leng":115.640020128,"shape_area":30.8482508761,"nnh_name":"Nature Could Reach Half Protected","color":"#DBA859","color_bio":"#D6C39D","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":280766.20784881647,"percentage":5.749512699500863}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[24.99369980200015,22.035069925000073],[24.817809914000122,22.018380064000155],[24.78195992800005,21.930690085000094],[24.83609979700003,21.80248999100013],[24.98916992900007,21.779340197000124],[25.021169831000066,21.80597993800012],[25.18773981300012,21.824660057000017],[25.269359920000113,21.9441600130001],[25.198909863999972,22.05064998100005],[25.027309935000062,22.083579972000052],[24.99369980200015,22.035069925000073]]],[[[18.94618989800017,20.999179923000042],[18.959069807000162,21.079900215000123],[19.062720045000162,21.385199983000064],[19.10878992700009,21.55897992000007],[19.499649832000102,21.792799915000046],[19.571859911000104,21.859379996000143],[19.6001598740001,22.055319966000184],[19.56613979000008,22.13376995300007],[19.555829949000156,22.369950024000104],[19.576499798000043,22.499090065000132],[19.637829907000082,22.72114999100006],[19.690270127000076,22.967850071000043],[19.687569805000123,23.060920101000136],[19.574999932000082,23.079139927000085],[19.399199814000042,22.816909957],[19.330579838000176,22.741340009000112],[19.189019828000028,22.78889004300015],[19.068399857000088,22.76161997400004],[18.863099849000037,22.594829966000134],[18.980309961000046,22.435810007000157],[19.014599882000084,22.353789983000183],[18.918329810000046,22.280410075000077],[18.766269857,22.270300017000068],[18.70558979000009,22.245369957000037],[18.66841982900013,22.1237600500001],[18.60349979299997,22.055579948],[18.45264980200011,21.97153006200017],[18.30756992000005,21.928619914000137],[18.03939980500013,21.907639918000086],[17.974119807000022,21.85383008600013],[17.395679824000126,22.04242016700016],[16.91847983700012,22.11364999100016],[16.559339962000138,22.109090018000074],[16.517059614000175,22.093769944000087],[16.523555338000108,21.99371387900004],[16.628581456000063,21.85881036899997],[16.627622696000174,21.778938228000186],[16.554827032000105,21.74516840900003],[16.432612799000026,21.75679103400006],[16.28313981500014,21.845779989000107],[15.822659612000109,22.20174006400009],[15.652333592000161,22.27264807800009],[15.638941773000113,22.1909368580001],[15.856719652000038,21.822979947000135],[15.93967979900009,21.61975996700005],[15.920809930000132,21.35348998600017],[16.01065985000014,21.129699961000142],[16.099209863000112,21.01102008200013],[16.237689875000115,20.894179964000045],[16.304639950000137,20.78390996800016],[16.375769794000178,20.592330012000104],[16.43689994500005,20.496880017000137],[16.552709818000096,20.424199964000138],[16.847909912000148,20.387749925000037],[16.962769629000093,20.359260038000116],[17.086769887,20.244599926999967],[17.297839830000044,20.078920077000078],[17.477789794000103,19.843999957000108],[17.57978984500005,19.76096007300015],[17.838109883000072,19.667620029000034],[17.93146981700005,19.66193000800007],[18.09711992000007,19.59523973900008],[18.210969811000098,19.463880086000074],[18.357549910000046,19.375310007],[18.545019800000034,19.378660019000108],[18.67122998800005,19.416369833000033],[18.858609932000093,19.514960024000118],[18.923620090000043,19.57590007300007],[18.975889923000068,19.67970996100013],[19.087659961999975,20.032499915000074],[19.150969944000167,20.260730045],[19.19763987800019,20.538069921000044],[19.15072985200004,20.637590202000183],[18.970659842000146,20.765099946000078],[18.9341198570001,20.852319952000073],[18.94618989800017,20.999179923000042]]]]},"properties":{"objectid":740,"eco_name":"Tibesti-Jebel Uweinat montane xeric woodlands","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Palearctic","eco_biome_":"PA13","nnh":2,"eco_id":844,"shape_leng":15.9562382746,"shape_area":7.13003816119,"nnh_name":"Nature Could Reach Half Protected","color":"#BB7B3D","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":82421.7053153964,"percentage":0.3124143243571167}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[102.51657067200017,35.451531632000126],[102.67295854500014,35.489090605000115],[102.77772563000008,35.563074647000064],[102.7471385560001,35.66518047699998],[102.66515365200019,35.72966296100003],[102.63879357300004,35.864874459000134],[102.84584066300005,35.87697541200015],[102.90103164000016,35.979629922000186],[102.81355256600006,36.03917546499997],[102.6537775660002,36.09525022900016],[102.4125596360002,36.23268008200006],[102.17755856300005,36.30588946800009],[102.07592765200008,36.31938232100009],[101.75290653700011,36.46094227200018],[101.45872453400005,36.343272589000094],[101.12583154999999,36.24084707300017],[100.741722622,36.13841736600017],[99.84546666900007,36.061598229000026],[99.41014062500005,36.010383292000085],[98.94921155500009,35.933565161],[98.49732152899998,35.89590677900003],[98.13912961400007,35.79731816300017],[97.85825354700012,35.79731816300017],[97.48375665000003,35.734903662000136],[97.1716766020001,35.61007449300007],[96.98442857300006,35.54766015900009],[96.85959655400012,35.53205456400002],[96.53190655100008,35.45403849200005],[96.39147161900013,35.391623823000145],[96.11059555200018,35.32920546600013],[95.84532960700017,35.251189394000164],[95.4708325430002,35.063945053000054],[94.92469053000013,34.814287384000124],[94.78424855700007,34.72066202900015],[94.55019363400004,34.68945469400006],[94.23810553900017,34.611438788999976],[94.08206953799998,34.54902428800011],[93.98844166800006,34.47100469500009],[93.86360964800008,34.314968862000114],[93.6763606130001,34.19013919000014],[93.45790860300008,34.19013919000014],[93.17703253600013,34.25255352300019],[92.92736866500019,34.12772502399997],[92.67679552500005,34.059390720000124],[92.21849853900011,33.797511063],[91.73580954600016,33.37919206800018],[91.47837866800018,33.05740979900014],[91.4183575350001,32.967388662000076],[91.6197505290001,32.915362021000135],[91.71096055500004,32.850124998000126],[91.70740562300006,32.7616038860001],[91.64348556400012,32.715317173000074],[91.28904756800017,32.674448354000106],[91.07804857800011,32.62615199600015],[90.9129636420002,32.54489346800011],[90.83834861100019,32.455659223],[90.87804463300012,32.222363868000116],[90.82329555100006,32.160082807000094],[90.61975058700017,31.99719108000005],[90.4914705880002,31.937228118000064],[90.25801061200008,31.784359135000045],[89.98095652600006,31.3215548660001],[89.84095762000015,31.18623524100019],[89.71583558700019,31.128751311000144],[89.48054450000018,31.102558367000086],[89.3100586010001,31.115443699000082],[89.2009275630001,31.06053770700015],[89.01194766500004,31.011810351000065],[88.90689861300012,31.009853679000173],[88.6690295890001,31.060544580000112],[88.52597061800003,31.049725219000095],[88.26523559400005,31.118278794000048],[88.16682450700017,31.122972659000027],[88.00566062500019,31.026028908000114],[87.89627058600018,31.05245788700006],[87.94754050900008,30.867903634000186],[87.83613562700009,30.821486163000145],[87.75258666100007,30.691520899000125],[87.76187163000014,30.580121717000054],[87.74330152300013,30.440871651000066],[87.77114855300005,30.27377304700019],[87.91040750400015,30.199507540000127],[88.04037461200016,30.27377304700019],[88.10536152000014,30.26449008900005],[88.16106463100004,30.19022290600003],[88.18891853300005,30.088106850000145],[88.40243561400018,30.03240675700016],[88.53240959600004,29.930291539000166],[88.55097953500007,29.8467407280001],[88.54745460900011,29.62467511100016],[88.6276855160001,29.61488655700009],[88.59478755200018,29.523890940000058],[88.65406051600013,29.428307572000165],[88.81192058600016,29.474302930000192],[88.90508259000006,29.43718031900005],[89.00463864500017,29.47169213500007],[89.00688952200017,29.56765319200008],[88.95734358900006,29.64203855900007],[88.99017366000015,29.712685765000174],[89.14746057600019,29.73860193900009],[89.13457457300007,29.63857348],[89.17547557900008,29.486078331000044],[89.23962362500015,29.444603165000103],[89.55569463300009,29.45871141700019],[89.65200756200005,29.529137844000047],[89.67148559600014,29.434922401999984],[89.78405757300015,29.369426043000033],[89.92125658800018,29.388714143000072],[90.10577362500004,29.3816535630001],[90.1175996520002,29.427231838000182],[90.01310766199998,29.46985616300003],[89.924407513,29.626670172000104],[89.97277863800002,29.667018642000073],[90.08866163400018,29.60125205100013],[90.07223561900008,29.5343135010001],[90.22341162500004,29.48388964800006],[90.25774356500011,29.590559424000105],[90.32927657100015,29.513879259000134],[90.2883075040001,29.390520108000032],[90.45214051900007,29.30165667900019],[90.66649662900011,29.525763792000134],[90.78256251900007,29.486571522000077],[90.85436257200007,29.514148318000082],[90.92205851000006,29.59830329700003],[90.80763262300013,29.690721826000186],[90.70182752400012,29.717725468000026],[90.68144960900008,29.833399253000152],[90.61732452900014,30.027236128000027],[90.60149362900017,30.185508086000027],[90.83479351000011,30.38662062100019],[91.01177957500016,30.49924356000014],[91.18071750400009,30.57164409300009],[91.29103055900003,30.57509089900003],[91.33654060500004,30.619032523999977],[91.62602254000012,30.638801577000095],[91.85391257300006,30.77470273800003],[91.95842753000011,30.803347892000147],[92.05526751300016,30.791023310000185],[92.20907560400019,30.842729259000066],[92.37128454100008,30.769798822000155],[92.42328653900006,30.86164788500008],[92.48397855900015,31.062360771000158],[92.62878465400019,30.98191545500009],[92.7574995060001,31.022138029000132],[92.78163955500008,31.142805751000026],[92.82186162600016,31.174983710000163],[92.91839567000017,31.142805751000026],[93.03907060000017,31.223251067000092],[93.0927426090002,31.507696484000178],[93.10562861100004,31.642599863000157],[93.18161760400005,31.672073819000047],[93.39760567100006,31.703591954000103],[93.50119761200011,31.740669638000156],[93.54896557500012,31.79255294899997],[93.67571252400006,31.82894063400005],[93.6755906520001,31.680053559000044],[93.73341354600012,31.640004825000176],[93.78070860200017,31.734153715000048],[93.72250366100008,31.82445061600015],[93.74460556600013,31.924874534000026],[93.62634261200009,31.987483495000163],[93.54589059000017,31.995528110000123],[93.34477252300007,32.07597141399998],[93.37695366700012,32.20468727200006],[93.28041861800011,32.28513292400015],[93.2723696440001,32.35753345600017],[93.35282166500008,32.38166780500018],[93.52175858800013,32.35753345600017],[93.64243351900018,32.37362302200006],[93.93204453500016,32.35753345600017],[93.97226761200011,32.26904218400017],[94.25383753300014,32.277087973000164],[94.31819965300014,32.35753345600017],[94.28601850900003,32.441999906000035],[94.45897656700015,32.61496031100006],[94.86122158600017,32.96087374399997],[95.18301357800004,33.12980949399997],[95.45653553000005,33.298746585],[95.68983457400014,33.45963788700004],[95.91509252200018,33.59639484000007],[96.42191351800011,33.76533092500017],[96.71957350800017,33.82969103400012],[97.19421352800015,33.95840353900013],[97.42752061800007,34.04689397300007],[97.59645854700017,34.087115038000036],[97.81237067300015,34.159835927000074],[97.90094760900013,34.08318593700011],[98.17909251600008,33.982472844000085],[98.28727757300004,33.996899441000096],[98.22030667000013,34.12650478600011],[98.28151652300016,34.21033773200014],[98.37358854500013,34.15046412100003],[98.53988651000014,34.10085549200011],[98.61910253600007,34.039371215000074],[98.76364862400004,33.86427024000005],[98.89814766000018,33.73910965000016],[99.08206958200009,33.640060532000064],[99.27583353500012,33.615925345000164],[99.43667555100012,33.521822891000056],[99.71933763400011,33.43810041900008],[100.35591853800008,33.46422664400018],[100.62044553500004,33.459729752999976],[100.70182761299998,33.51139831800003],[100.812263546,33.637847710000074],[100.93604263000014,33.58845717800017],[101.16891453200009,33.585340116000054],[101.21430153200004,33.6547771430001],[101.13536864700012,33.746159669000065],[100.9240796430002,33.83762903100012],[100.867111535,33.914473649000115],[100.74535366300017,33.99607248200016],[100.56320954199998,33.92827931400012],[100.20365154400014,33.92610555100015],[99.92553764900003,33.94393788300016],[99.78712460000014,33.968759213000055],[99.59692362600015,33.90087116100017],[99.39008356900013,33.94685579100019],[99.29809553500019,34.01637378700008],[99.07286859900006,34.30218193300004],[98.99433167500013,34.521326122],[98.94573960300005,34.73301762400007],[98.90779154199998,34.82263743599998],[98.91115553500009,34.938697291000096],[99.03900956600012,35.07583964400004],[99.24253860400017,34.95894880700013],[99.3322065280002,34.927535613000146],[99.45761857500014,34.9371253490001],[99.70964061100005,34.81935323900012],[99.81637559800009,34.785273091000136],[99.98434457900015,34.795543102000124],[100.11745456600005,34.82930507300006],[100.04845457200014,34.98061938000018],[100.08115354900019,35.11123893600012],[100.18486753100012,35.1069210820001],[100.31933555400013,35.02280130800011],[100.43762164300006,34.895580278000125],[100.6106185920001,34.889740606000146],[100.78430956300019,34.930461568],[100.99501753400011,35.09663229600005],[101.20312459900009,35.1141719310001],[101.31880961500019,35.14048507200005],[101.402610542,35.19676988700007],[101.5169755760001,35.52737377400018],[101.57594260000013,35.582712273000084],[101.8184736400001,35.473419799000055],[102.08346566500018,35.324146653000184],[102.24213358300005,35.350730864000184],[102.51657067200017,35.451531632000126]],[[90.50223563400004,30.446824646000152],[90.6074065580001,30.51309432000005],[90.83360260900002,30.577927000000102],[90.8869095020001,30.55055371600008],[90.76589158400014,30.442500758000165],[90.68952959600006,30.337330671000075],[90.61749250200012,30.325805052000078],[90.56130257000018,30.262415233000127],[90.46621658400005,30.214871904000063],[90.42443061800014,30.10393909200002],[90.29908763800012,30.11114300200012],[90.20256063500005,29.965633331000106],[90.08730359900017,29.919530181000084],[90.04264062700008,29.869108004000168],[89.94178755700011,29.962751465000053],[90.09738954300013,30.119786589000057],[90.14205150800007,30.23648128900004],[90.3639226640002,30.39207740700016],[90.39849851800017,30.442500758000165],[90.50223563400004,30.446824646000152]],[[90.49479652700018,30.119790444000103],[90.55034658500006,30.053523956000106],[90.5215225610001,29.93595032900015],[90.58721958300004,29.823229657000184],[90.53450763800004,29.728606185000103],[90.47309158899998,29.689638717000037],[90.34320058800017,29.68577801200007],[90.27869463500008,29.765965668000092],[90.25154866800011,29.874564623000026],[90.36082454500007,30.034453617000054],[90.49479652700018,30.119790444000103]]]},"properties":{"objectid":741,"eco_name":"Tibetan Plateau alpine shrublands and meadows","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Palearctic","eco_biome_":"PA10","nnh":1,"eco_id":768,"shape_leng":55.4192887836,"shape_area":26.3423922972,"nnh_name":"Half Protected","color":"#B38160","color_bio":"#D6C39D","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":272731.6106999171,"percentage":5.584980725739102}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[45.54460156600004,31.089131731000123],[45.52980851200016,31.022320922000063],[45.61118656600013,30.850158139000143],[45.68472653500004,30.85746196200006],[45.760681498000054,31.07101625900009],[45.63563959499999,31.131456319000165],[45.54460156600004,31.089131731000123]]],[[[49.24338154900016,31.247119207000026],[49.02650449800018,31.399660122],[48.92424762600018,31.273260351000033],[48.808559592,31.070148565000068],[48.7851755910001,30.92361345100005],[48.72268649100016,30.85132624100015],[48.52016059900018,30.701982352000186],[48.470813486000054,30.574886883000033],[48.530544604000056,30.533889318999968],[48.64350147800019,30.529643717000056],[48.766220587000134,30.56258644100012],[49.20521958200004,30.737116273000083],[49.40896956600005,30.82542314300008],[49.55411546300013,30.943117972000152],[49.24338154900016,31.247119207000026]]],[[[45.37850560400017,31.59423158700008],[45.46727750300005,31.533614502000034],[45.54404450400011,31.589774594000176],[45.514457559,31.706473820000156],[45.40609748900005,31.841435370000056],[45.31032552800008,31.861568534000185],[45.26357646800005,31.71486729100019],[45.37850560400017,31.59423158700008]]],[[[44.40098156800019,32.51547550200007],[44.471633468000164,32.57294669200013],[44.42048659200003,32.65512002100007],[44.307197459,32.74855007800005],[44.214717575000066,32.72220307400005],[44.213447549000136,32.66502977700003],[44.32052250600003,32.60586577800018],[44.40098156800019,32.51547550200007]]],[[[46.06120659000004,32.78486920000006],[46.057575549000035,32.74128330299999],[45.80296752900006,32.69354383800004],[45.51729550400006,32.61214449400006],[45.35369852400004,32.825211970000055],[45.28800150200004,32.952912948000176],[45.23384854000011,33.13302965300005],[45.13442257200006,33.077306258000135],[45.108119489000046,32.94789319300003],[45.132442599000115,32.80806544600017],[45.19063161500003,32.65791588800005],[45.25724746100019,32.58227239700017],[45.4261704700001,32.47747882600015],[45.53244361500015,32.45485841600009],[45.56426953400006,32.34346895800013],[45.6425365610001,32.234406483999976],[45.70089355000016,31.944166993000124],[45.75876656800011,31.851834797000095],[45.832530501000065,31.911272046000022],[45.840518622000104,31.996928223000054],[45.89844562000019,32.00930863000008],[46.18487955900014,31.97748170500006],[46.37583557500011,31.882006966000176],[46.71000646400012,31.69105732100013],[46.8532255290001,31.56375632800018],[47.028266490000135,31.436456676999967],[47.075523493,31.37570279800019],[46.901164484000105,31.22596395400012],[46.76453057700013,31.144758902000092],[46.53536247100004,31.108073994],[46.307136490000175,31.045126403999973],[46.26757457800011,30.959449440000128],[46.39075926400005,30.828694889000076],[46.5199474800001,30.794982921000155],[46.720779557000185,30.807355783000162],[46.91518757500012,30.845695278999983],[47.24415548200005,30.847402170000123],[47.50582458600002,30.74071311500012],[47.596954481000125,30.69006697400016],[47.703113464000126,30.540220170000055],[47.76513653000006,30.52987254300018],[47.947097590000055,30.593427318000067],[48.03317252700009,30.592160310000054],[48.035015540000074,30.826343811000072],[47.91579051100007,30.98899112200013],[47.93653153100007,31.151224535000097],[48.06164954100012,31.323759809000023],[48.17673458000007,31.346576858000105],[48.139587494000125,31.46392601700012],[47.9945985060001,31.631168288000083],[47.903964484000085,31.8100753170001],[47.73856757400017,32.03187908300015],[47.67402256000008,32.141803553000045],[47.54820248200002,32.19633269400015],[47.344600522,32.24881011399998],[47.16080449600008,32.21385003400019],[46.94568261500018,32.245181923000075],[46.63402954100019,32.46337225100012],[46.53521360800005,32.506141750000154],[46.34677551600004,32.6766155790001],[46.207275502000186,32.75039610800002],[46.06120659000004,32.78486920000006]]]]},"properties":{"objectid":742,"eco_name":"Tigris-Euphrates alluvial salt marsh","biome_num":9,"biome_name":"Flooded Grasslands & Savannas","realm":"Palearctic","eco_biome_":"PA09","nnh":4,"eco_id":747,"shape_leng":16.7127083989,"shape_area":3.38210909977,"nnh_name":"Nature Imperiled","color":"#6CA8C4","color_bio":"#BEE7FF","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":35680.6977306173,"percentage":3.085596856683102}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[136.75490256900002,-28.64409676999992],[136.60696275300018,-28.845818259999874],[136.42220095500022,-28.944606450999913],[136.3483864640002,-28.963608208999972],[136.39622726400012,-29.054032593999978],[136.4942597270001,-28.99212454799988],[136.55310592800015,-29.065705349999973],[136.69912007900007,-29.01741660899995],[136.84001217900004,-28.881036724999944],[136.8928684120001,-28.86470017099998],[136.86147548200006,-28.71333759999993],[136.87423070800003,-28.58692351199994],[136.78209384900015,-28.58453589899989],[136.75490256900002,-28.64409676999992]]],[[[135.07646372300007,-25.860402244999875],[135.03005625900005,-25.91507525199995],[134.84245580800007,-25.843345667999984],[134.72520552600008,-25.85713981899994],[134.6493376960001,-25.928869401999975],[134.45208134000018,-25.828172100999893],[134.38449000100002,-25.76471900699994],[134.22585726700004,-25.87231338399988],[134.06057874300006,-25.947583009999903],[133.96692559400014,-25.921184135999965],[133.71927901100014,-25.960153901999945],[133.66828928600012,-25.99855999899995],[133.65609562100008,-26.170098944999893],[133.6834537640001,-26.261104476999947],[133.7428846910002,-26.259492904999888],[133.9208650270001,-26.317449118999946],[133.933455986,-26.363364625999907],[133.65460628800008,-26.380138945999875],[133.48474977800026,-26.45153799399992],[133.50135971800023,-26.584880716999976],[133.4645954030001,-26.65963125399992],[133.59721232100014,-26.65229670399998],[133.62992075500017,-26.56835960599983],[133.76216234900005,-26.503219729999955],[133.8423480990001,-26.50604271599991],[133.91260176100002,-26.42554069599987],[134.01912773700008,-26.426012732999936],[133.95947032300012,-26.29264354599991],[134.05826769200007,-26.16036063199988],[134.15968090400008,-26.167134380999926],[134.3337398880002,-26.35080600699996],[134.33323707300008,-26.39920493099993],[134.1863217460001,-26.496158307999906],[134.24898657100005,-26.596612076999918],[134.41262252800004,-26.648065639999913],[134.45752457800006,-26.748288034999973],[134.61123407500008,-26.786058675999982],[134.70110295400002,-26.748603686999957],[134.7769743900002,-26.758353464999857],[134.91860584100004,-26.72847554899988],[135.05185644800008,-26.73436011499996],[135.20979521200002,-26.671660750999877],[135.2971158460001,-26.669692682999937],[135.32286006200002,-26.718568708999896],[135.2027251830001,-26.82703906699993],[135.1663036210001,-26.913734017999957],[135.0623084800003,-26.970217208999827],[135.0919751350001,-27.016095839999934],[135.25700935700002,-27.068929379999872],[135.26638882400016,-27.157145927999977],[135.001299033,-27.1024298669999],[134.87561451400006,-27.146451499999955],[134.7208067050002,-27.12685927299998],[134.57139548700002,-27.160786253999902],[134.41064731000006,-27.129680730999894],[134.34023287200023,-27.067771276999963],[134.31302567500006,-26.98337132699993],[134.2395196540001,-26.91132608099997],[134.19346688400015,-26.92954546099992],[134.05601617000002,-26.909809672999984],[133.90342209400012,-26.945891719999906],[133.7653074200001,-26.924134450999873],[133.81080190600005,-27.067642012999954],[133.74681201900023,-27.142213684999945],[133.61258997700008,-27.172633703999907],[133.60250123600008,-27.11489792899988],[133.4909184810001,-27.148698509999974],[133.5227886360001,-27.274073272999942],[133.49270955300028,-27.3142318269999],[133.524382155,-27.37321950299986],[133.61557175200016,-27.36814058199991],[133.74236043000008,-27.48330449599996],[133.73015114700013,-27.54319441599995],[133.80437003800012,-27.60157799299992],[133.801365464,-27.654562083999963],[133.88262735500007,-27.70711815599998],[133.89729893900005,-27.792766059999906],[133.98161079300007,-27.832601383999872],[134.09553058100016,-27.814288500999965],[134.05188492700006,-28.012716791999935],[134.07407258500018,-28.0992991089999],[134.03101285800017,-28.16282308199993],[134.18408766900006,-28.199362347999966],[134.23477461400023,-28.33954327999993],[134.13301185100022,-28.400676329999953],[134.0432419880002,-28.494669272999943],[134.16206853900007,-28.91468309499993],[134.2615107050002,-29.055443008999873],[134.4108771450002,-29.118390751999925],[134.36508011900003,-29.256454108999947],[134.3898508840001,-29.30575637899983],[134.2043604500003,-29.362924696999983],[134.07308384500004,-29.38484807799989],[134.11077173700016,-29.443464416999916],[134.21134780500017,-29.47240374299986],[134.1904446850001,-29.525518164999937],[133.99563044900015,-29.54520769399994],[133.89667252700008,-29.485882230999948],[133.70586471800004,-29.519867027999908],[133.6218873900001,-29.50153512099996],[133.4692866700002,-29.523302541999954],[133.40314764200002,-29.564275444999964],[133.3612711200003,-29.48370490399992],[133.1335632590002,-29.494524290999948],[133.0552440780001,-29.47877603099988],[132.9502902700001,-29.525919451999926],[132.81220394900004,-29.515682348999974],[132.74477579000006,-29.483913927999822],[132.61179749000019,-29.52617585699994],[132.6874763410001,-29.644549559999973],[132.5555434360001,-29.681272565999905],[132.3834701410001,-29.662955324999928],[132.30504683800007,-29.710707916999922],[132.308477583,-29.770527340999934],[132.39828591700007,-29.788635110999905],[132.55584242600014,-29.77704781799997],[132.55929887300022,-30.020658099999878],[132.64112565400012,-30.135969445999876],[132.8164027790001,-30.09567303299997],[133.04253367700028,-30.158497651999937],[133.0960923550001,-30.19673395899997],[133.11738857500018,-30.27936535799995],[133.23454675000005,-30.218868676999932],[133.27442817700035,-30.316887055999814],[133.45650461000002,-30.318025407999926],[133.48745507100023,-30.35925009999994],[133.73153045200013,-30.436061643999892],[133.79162478900002,-30.42584747799998],[133.8718047010002,-30.506519143999924],[134.02764745500008,-30.575548658999935],[134.0028397110001,-30.680264171999966],[134.0875753480003,-30.95365024299997],[134.27554302400029,-30.917276479999884],[134.37243682400026,-30.920774420999976],[134.385147468,-31.012279178999904],[134.29206843100008,-31.10146710999993],[134.30543542500016,-31.140478345999895],[134.521332324,-31.133714882999925],[134.57695261900017,-31.175074872999915],[134.66538532000004,-31.160961245999943],[134.89326850400005,-31.214536572999975],[134.97330343600004,-31.273227352999925],[135.09901292500012,-31.292054062999966],[135.06351911800027,-31.386152798999888],[134.9842413330001,-31.423724088999904],[134.88397715100018,-31.40541100899992],[134.811833846,-31.355055531999938],[134.75192408500004,-31.54866778899998],[134.77578693800012,-31.624112322999963],[134.54502246500022,-31.5912801099999],[134.6453887030001,-31.691018106999934],[134.9254575340001,-31.776434062999954],[135.16109166100023,-31.829683719999935],[135.301886093,-31.82474893799997],[135.36245480900004,-31.797890262999942],[135.45719487300005,-31.881836474999886],[135.57897630900004,-31.918245700999876],[135.6327082150002,-32.03898750399998],[135.52369262600007,-32.077788859999885],[135.5496084350002,-31.980638216999978],[135.48889475700025,-31.913724292999973],[135.1043554260001,-31.950749526999914],[134.98975044300028,-31.904319621999946],[134.87933314500015,-31.894623342999978],[134.76644394300024,-31.84722639399996],[134.6495668140002,-31.853927962999876],[134.70934854700022,-31.94952111299989],[134.87381557100014,-32.063524507999944],[134.95654936000005,-32.16914741799991],[135.11756747800007,-32.28824360099998],[135.19425352200017,-32.44559666499998],[135.16645056900006,-32.518941502999894],[135.24290643900008,-32.573006549999945],[135.58661731800032,-32.78852223699994],[135.72956410200015,-32.81551756199997],[135.90952880300006,-32.80936870399995],[135.97763793800004,-32.85172884899998],[136.16477945600002,-32.84626124999994],[136.26122297600023,-32.82119353699994],[136.3951831290001,-32.82916139899987],[136.55234057000018,-33.023103123999874],[136.80714718700006,-33.10669654399993],[136.90873001100022,-33.111525790999906],[136.97026480700004,-33.150260748999926],[137.06465786800015,-33.12916317799994],[137.11154189400008,-33.289859608999905],[137.37924687400005,-33.356802850999884],[137.44526000200005,-33.15067999699983],[137.53973000200006,-33.09107999699995],[137.61909000200035,-32.96163999699996],[137.7824200020002,-32.992669996999894],[137.80977000200005,-32.749219996999955],[137.75271000200007,-32.71070999699998],[137.76480000200013,-32.5966399969999],[137.84912000200018,-32.642029996999895],[137.8466300020002,-32.70083999699989],[137.92091134400005,-32.74509669099996],[137.96452366100016,-32.765647723999905],[137.98123174200032,-32.59534809999997],[137.83906122000008,-32.49917460099988],[137.85766944900013,-32.24656881799996],[137.83252966200007,-32.187093638999954],[137.90456520400028,-32.049948342999926],[138.01018100700014,-31.97243900999996],[138.06198186200004,-31.982431068999972],[138.09258090000014,-31.863295214999937],[138.29363712600002,-31.626464720999934],[138.2048996860001,-31.485865829999966],[138.3238676630001,-31.43044277599995],[138.2960968110001,-31.389656463999984],[138.35409056100002,-31.24086587699992],[138.30451075800022,-31.076729977999946],[138.17302118000032,-30.98960191799995],[138.12092132800012,-30.735569101999943],[138.17341944700001,-30.712491238999917],[138.19863995100002,-30.490450818999932],[138.1591107700001,-30.36069736299993],[138.25668334700003,-30.363898126999914],[138.38082322900016,-30.472703725999963],[138.39859880400002,-30.38801577399994],[138.5110480290001,-30.401437738999903],[138.53290010100022,-30.32607557599988],[138.47300385100004,-30.17086582299993],[138.57651300200018,-30.113320717999898],[138.6730123250003,-30.10288153199997],[138.73163992000002,-30.150557380999942],[138.88233767700012,-29.962138896999875],[138.96604288100025,-30.056702035999933],[139.085059354,-30.07381780599991],[139.17016776000014,-30.01045069099996],[139.15602384600015,-29.935385836999956],[139.19729519800023,-29.856414204999965],[139.30463777400018,-29.85556804999993],[139.3499301410002,-29.81159917799988],[139.5389091730002,-29.75780739499993],[139.5367430760001,-29.83005656699993],[139.6829307060002,-29.858829836999973],[139.73488997200002,-29.916618315999983],[139.67766585200013,-30.02375270999994],[139.51764189500022,-30.124922519999984],[139.49929233700004,-30.194844079999882],[139.5366353400001,-30.260884791999956],[139.48761877400023,-30.35129842399988],[139.49724298500007,-30.416975299999933],[139.42739002000008,-30.45364127099998],[139.3076060110002,-30.648107491999838],[139.4058480010002,-30.78992500299995],[139.420952155,-30.865857063999897],[139.24753210400002,-31.019757779999964],[139.2133095160001,-31.121878917999936],[139.24444970500008,-31.199184705999926],[139.33426766500008,-31.241759497999965],[139.31509434400027,-31.304917831999944],[139.37097845200014,-31.35660091999989],[139.35558975900005,-31.417939558999933],[139.25553182500028,-31.491140775999895],[139.24723749300006,-31.58865394999998],[139.27793488600003,-31.672982283999943],[139.13782726500006,-31.782343784999966],[139.3508777420002,-31.800318874999903],[139.29626749800002,-31.891862037999942],[139.3166448100003,-31.962897941999927],[139.4621861620002,-31.928753850999954],[139.61614470200016,-31.967596008999976],[139.73925440000016,-32.06912256299995],[139.84713376700017,-32.04798536699997],[140.0119593490001,-32.11922749099989],[139.972436506,-32.179218749999905],[140.11465972100007,-32.23904833499989],[140.1373522470002,-32.15038330599998],[140.23309026700008,-32.22175257799995],[140.30831029800026,-32.17264251699993],[140.34811092400003,-32.22841531399996],[140.48756771900014,-32.17373900999996],[140.5618106820001,-32.22070371099994],[140.65597908900008,-32.19478795899994],[140.66486960100008,-32.30754326999988],[140.61137003700003,-32.31615892899998],[140.59802165800022,-32.432499065999934],[140.55985300200018,-32.50296108799989],[140.60221857800002,-32.593040601999974],[140.76559828600023,-32.583583198999975],[141.15648641100006,-32.672144510999885],[141.1860887370001,-32.78147369699991],[141.3781661690001,-32.80986676899994],[141.43614922600023,-32.68181088199998],[141.52501618300016,-32.66894398599993],[141.61371567800006,-32.72385271499991],[141.700309585,-32.65767919099994],[141.82611845300005,-32.63571394999991],[141.82859024200002,-32.47343310699995],[141.94136803800006,-32.468218100999934],[141.98427585700017,-32.47800661899993],[142.18148092800016,-32.326719195999885],[142.37389423600007,-32.24207465599994],[142.4030079810001,-32.165528991999906],[142.59481100500022,-32.19164439399998],[142.65064280200022,-32.14211833799993],[142.76242870500005,-32.12709575899987],[142.82263976500008,-32.05747023599997],[142.93718754400004,-32.01834289499993],[142.92754386900015,-31.93866740999988],[143.00206752400004,-31.85247451299989],[143.03528589600035,-31.772993628999984],[142.94290946200022,-31.62957993099991],[142.98490160400013,-31.567574186999934],[143.13477338000018,-31.45645193199988],[143.13477374600006,-31.348570610999843],[143.27060744400012,-31.279193608999947],[143.22715057300013,-31.218079882999973],[143.33385466500033,-31.18661640499988],[143.29886667400012,-31.105029811999884],[143.10108337600013,-31.04085532299996],[143.01682435200019,-31.067017756999974],[142.90186440100013,-31.152268207999896],[142.82285415,-31.106614143999877],[142.8485348500003,-31.035998094999968],[142.78101448500001,-30.94741510399996],[142.71845314400025,-30.922810103999893],[142.67147084400017,-30.79396017099998],[142.70452179100016,-30.745133746999954],[142.66098761100022,-30.58130799099996],[142.4861226080002,-30.539227205999907],[142.33913496700006,-30.567295884999908],[142.19260362600028,-30.364674922999882],[142.15846934900014,-30.288979614999903],[142.02193334100002,-30.309793086999946],[141.97196066800018,-30.359623149999948],[141.89478229400004,-30.50361556599995],[141.83754640200016,-30.56310240199997],[141.6895656600002,-30.443581723999955],[141.5791527780001,-30.50618666099996],[141.52565551600003,-30.587005356999896],[141.4277546740002,-30.588143927999965],[141.4528100880001,-30.66896244999998],[141.43231781600025,-30.757749908999926],[141.35436108500016,-30.881796674999975],[141.12621678100004,-30.98069938799989],[141.1038158890002,-31.181560226999977],[141.02884002100006,-31.298271429999886],[140.96244191400012,-31.24433434599996],[140.9356112700002,-31.120554956999968],[140.77916728700018,-31.21795907699982],[140.60737889400014,-31.285007758999882],[140.49196521400006,-31.35748305999988],[140.380784682,-31.373352533999935],[140.3167532760002,-31.283345232999977],[140.24041771400005,-31.311695940999982],[140.10040508600002,-31.18938000199995],[140.00726669800008,-31.226383339999984],[139.93491398800006,-31.175192964999837],[139.80247092900015,-31.224117823999848],[139.59624299900008,-31.025450380999814],[139.5099327680001,-30.835317158999885],[139.63958500900014,-30.61212285199997],[139.8245187660001,-30.495130144999962],[139.9053855960001,-30.32368004499989],[140.04188343500016,-30.12514053699988],[140.1112900070001,-30.072679995999977],[140.1429216500003,-29.886847629999863],[140.10938106700007,-29.80617419099991],[140.03385714,-29.802841592999982],[139.96478517800017,-29.723388625999917],[139.9779143820001,-29.62376748299988],[139.9547826690001,-29.543053497999892],[139.86920043700025,-29.48613994799996],[139.80807870600006,-29.488074433999884],[139.63182468200011,-29.332607030999952],[139.4560058310003,-29.212724436999906],[139.3623293710001,-29.127225138999904],[139.20898059600006,-29.06099362499998],[139.15900909400023,-28.98514866599993],[139.01543882500005,-29.076100478999876],[138.95838094400006,-29.02976459899992],[139.00935590500023,-28.95336225799997],[138.9461296410002,-28.93007336499994],[138.88866194900004,-28.835828808999963],[138.90436731500017,-28.74668894799987],[138.8326361290001,-28.57637069999987],[138.7009228830002,-28.625984450999965],[138.5075145820001,-28.76602410499987],[138.44678466400023,-28.754246633999912],[138.41817833700009,-28.94467886299998],[138.43299768500003,-29.011041709999972],[138.40572685500013,-29.121384967999973],[138.29473022000002,-29.183496550999905],[138.19444396200004,-29.201960660999873],[138.18339119200004,-29.070388060999903],[138.10270744000013,-29.079777028999956],[137.9730209410002,-29.14124443499992],[137.9382611750002,-29.07277927699988],[137.86735806700005,-29.059543802999883],[137.76368033800009,-29.214181414999928],[137.65100395200022,-29.301336404999972],[137.4948582180001,-29.35484737799993],[137.4055358600002,-29.430575422999937],[137.29829006100022,-29.450343530999874],[137.2406308520001,-29.50671537799991],[137.16776989000005,-29.473558854999965],[137.01370778200032,-29.314076076999868],[136.85083727000017,-29.30114910799989],[136.75025313300011,-29.267221502999973],[136.56715018700015,-29.125011626999935],[136.51900389200023,-29.16132140299993],[136.38906950500018,-29.141578992999882],[136.33173885600013,-29.244822728999964],[136.15760338600012,-29.239648003999946],[136.04607896000005,-29.19856252799991],[135.97106885100015,-29.277523188999965],[135.92626874000018,-29.2186788759999],[135.70015757700003,-29.301174936999928],[135.60627589600006,-29.21541982799988],[135.53104006400008,-29.219576287999928],[135.52313050200007,-29.07140778099989],[135.46574220500008,-29.08474810399997],[135.28692236000018,-28.98775526199995],[135.33863010000016,-28.92390003099996],[135.4440556950002,-28.97144849299997],[135.59687976500004,-28.96820952899992],[135.63684418000003,-28.869012527999928],[135.7159517890001,-28.799669233999964],[135.67430873500018,-28.734911651999937],[135.67371800700016,-28.63274337099989],[135.62128550400018,-28.555888809999942],[135.6270840120003,-28.416772619999904],[135.68379030100004,-28.36013410799984],[135.61606142000005,-28.266353368999944],[135.72656728000015,-28.110100516999864],[135.78940185200008,-28.10788786899991],[135.85421012600023,-28.310452948999966],[135.762956765,-28.420001543999945],[135.76467144900016,-28.49059120399994],[135.85144252400016,-28.490931690999957],[135.9381607930003,-28.542848732999914],[135.96011128600026,-28.71960773299992],[136.03732824800022,-28.81158632599994],[136.2013075990002,-28.799715615999958],[136.2888119700002,-28.85592268099998],[136.3679026770002,-28.841160425999874],[136.4691674510001,-28.713708505999875],[136.44910373200014,-28.65720866399994],[136.5517865180002,-28.590066351999894],[136.6022758470001,-28.524647753999886],[136.70139633100018,-28.53925591999996],[136.75190047600006,-28.499740308999947],[136.7299271730002,-28.409027081999966],[136.64969783200002,-28.340114523999944],[136.53935888600006,-28.350311116999933],[136.41182280100008,-28.240624913999966],[136.6771402500002,-28.197927083999957],[136.7550886050002,-28.153971456999955],[136.80723848100013,-28.07425693899995],[136.8025801030002,-27.940205750999894],[136.87260590800008,-27.84205406299992],[136.9054286370001,-27.746970060999956],[136.84454268700006,-27.546400016999883],[136.73657831000014,-27.437467011999956],[136.62785615100017,-27.090354537999872],[136.54680028000007,-27.10716060699997],[136.45575450100023,-27.053479122999875],[136.27338869400035,-27.00661781399998],[136.21573275900005,-26.90899011599987],[136.08062087200005,-26.850139838999837],[136.04118297300022,-26.706284200999903],[135.94593114300005,-26.68167811799998],[135.91457120100017,-26.521572127999832],[135.94334184700017,-26.41544050599998],[135.8992033950002,-26.31940522399998],[135.91458163100015,-26.26699971599993],[135.8710857760001,-26.173868188999904],[135.97699993800018,-26.18658009399985],[135.87148090200014,-25.979495939999936],[135.79408341500005,-25.981809451999936],[135.72188146200006,-26.04201336899996],[135.65319870700023,-26.001782736999814],[135.52909629200008,-26.01831208899995],[135.37457722100032,-26.091575577999947],[135.25214208600016,-25.973010684999963],[135.26317740700006,-25.837828006999928],[135.07646372300007,-25.860402244999875]],[[135.27955034200022,-29.089016727999933],[135.37288002800017,-29.098064684999883],[135.42230368000014,-29.16884753199986],[135.3719075250001,-29.21876931399993],[135.24361665600009,-29.137383907999947],[135.27955034200022,-29.089016727999933]],[[137.989298544,-29.676351480999983],[138.0912210910002,-29.763946907999923],[138.12880295000014,-29.954705280999974],[138.19897511500005,-29.98890253299993],[138.25555257400015,-30.069339970999977],[138.18650344300022,-30.127574404999905],[138.1243914580001,-30.291520956999932],[138.0637683650001,-30.30761096799995],[137.85666210500005,-30.185370430999967],[137.82371368200018,-30.13285554099997],[137.7295475520001,-30.1141569589999],[137.58633332800002,-30.03693136399994],[137.63875984100025,-29.948446041999887],[137.59137194800007,-29.87529062199991],[137.8141100370001,-29.7287180969999],[137.989298544,-29.676351480999983]]]]},"properties":{"objectid":744,"eco_name":"Tirari-Sturt stony desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Australasia","eco_biome_":"AU13","nnh":2,"eco_id":215,"shape_leng":120.711891563,"shape_area":28.8408268898,"nnh_name":"Nature Could Reach Half Protected","color":"#D86B42","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":309079.79908582557,"percentage":1.171547667381179}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-64.02983717699988,59.84966604700003],[-64.19721367099993,59.76774934600013],[-64.15822601099995,59.70033991000008],[-63.99293888099993,59.71835554800015],[-64.02983717699988,59.84966604700003]]],[[[-64.45590584099989,60.230151010999975],[-64.41598367899996,60.27085061100007],[-64.64324491099984,60.34306583700004],[-64.81538313599998,60.32016913600012],[-64.95752858199995,60.25693754700012],[-64.89820077999997,60.21166460500007],[-65.1221997799999,60.06067009600008],[-65.11161162999986,59.963601969000194],[-65.52763803699997,59.745267394],[-65.51301418499986,59.666156398000055],[-65.38584314899992,59.502022172000125],[-65.28638517099989,59.45311143500004],[-65.17228735799995,59.33864464600009],[-65.25859841899995,59.23757063300019],[-65.23188089199994,59.070239148000155],[-65.35654418999991,59.001194601000066],[-65.25795091599991,58.77389352700004],[-65.31281227999995,58.68469188100005],[-65.08098527999988,58.655137836],[-64.94222349199998,58.58908512800008],[-64.87574847699995,58.48782787800002],[-64.92094207899999,58.409128319000104],[-65.09215631899991,58.34813507500013],[-64.93308291699998,58.25073901900015],[-64.75755525399995,58.102362080000034],[-64.57087613599992,57.88921025600018],[-64.52884933899992,57.79468399400014],[-64.57475897399996,57.68481630200017],[-64.54315022799994,57.57941914700018],[-64.62784663899998,57.32043623800007],[-64.59454559199992,57.23395819100011],[-64.49909051199995,57.182457214000124],[-64.37724142499985,57.19253230300018],[-64.19912712499996,57.274770121000074],[-64.1325839729999,57.41628996200018],[-63.70590564299994,57.46930362100011],[-63.516087599999935,57.56790807300001],[-63.34049750299988,57.780986190000135],[-63.21709532099999,57.69805174400017],[-62.975079740999945,57.67944494900013],[-62.80180218899994,57.74462343200008],[-62.7755084879999,57.80443234500018],[-62.58383886499996,57.715662342000144],[-62.594592929999976,57.676925656000094],[-62.392353265999986,57.61223036100017],[-62.08956385099998,57.67369697700002],[-61.99146648899989,57.7340051700001],[-62.18903774799992,57.79520323800011],[-62.19848701799998,57.88298407700006],[-61.965517471999874,57.78422525400009],[-61.88945632299993,57.87375798099998],[-62.21424015199983,57.920879049000064],[-62.38994866599995,57.9225903090001],[-62.33718565299989,58.06151820300005],[-62.50395462699987,58.096578990000125],[-62.53184601599986,58.1760226630002],[-62.69904838399998,58.270711373000154],[-62.62487249299994,58.32002237400013],[-62.63399229399994,58.5013232710001],[-62.81613945799995,58.48553596400012],[-63.09694437999991,58.400671833000104],[-63.169591459999936,58.49915099600008],[-62.90725034199994,58.59331309300006],[-62.846226552999894,58.66794983300002],[-62.90291515499996,58.81511652600017],[-63.09879995199998,58.87916388000008],[-63.18653429099999,58.98438569500013],[-63.13519061499994,59.0513803340001],[-63.389135770999985,59.09309265200011],[-63.36290498799991,59.18511667400003],[-63.53077180599996,59.264558726000075],[-63.53264625999998,59.33427939900014],[-63.82008038599997,59.398431866000124],[-63.72146630199995,59.493544698000164],[-63.94395930099989,59.62997832800016],[-63.947730063999984,59.68403499100003],[-64.18240443199994,59.692057531000046],[-64.26049813599985,59.75490509700012],[-64.17083089999988,59.805297681000184],[-64.1266254599999,59.899592096000106],[-64.16887583499994,60.03746530799998],[-64.31907983999997,60.05803245300007],[-64.36979088899994,60.20058515200003],[-64.45590584099989,60.230151010999975]]],[[[-64.51568564399992,60.405780481000136],[-64.60975145499998,60.474385576000145],[-64.74398132599998,60.50247856700008],[-64.8544273249999,60.42693686600012],[-64.7634164399999,60.37656663100006],[-64.51392704699998,60.306762882000044],[-64.51568564399992,60.405780481000136]]]]},"properties":{"objectid":748,"eco_name":"Torngat Mountain tundra","biome_num":11,"biome_name":"Tundra","realm":"Nearctic","eco_biome_":"NE11","nnh":2,"eco_id":421,"shape_leng":28.7541950831,"shape_area":5.07474944158,"nnh_name":"Nature Could Reach Half Protected","color":"#5ABF9D","color_bio":"#9ED7C2","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":32666.577348017574,"percentage":0.38228183618876654}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[134.968994607,50.59821238800015],[134.82949861500003,50.64461091600015],[134.5296936960001,50.554586594000114],[134.3807985740001,50.54147126200013],[133.98699966400034,50.53872048900013],[133.90910362000022,50.45679928800007],[133.941406636,50.33546738400014],[134.0287016430001,50.23228917300003],[134.18049656900018,50.1864855930001],[134.32910167800014,50.22139806300004],[134.4920956640002,50.21264366800017],[134.77969368200024,50.1314738210001],[135.00100660400005,50.33442149000007],[135.09550468300006,50.36382604400012],[135.03759763400012,50.534459465],[134.968994607,50.59821238800015]]],[[[133.86669957200013,51.096407903000056],[134.84840366300023,51.26789946300016],[135.048797701,51.29667118400016],[135.05000268300023,51.5525344780001],[134.8334956100001,51.60014603500014],[134.62739567500012,51.610736235000104],[134.40559358500002,51.58346487400007],[134.2089995660001,51.52525507100012],[133.99259961300015,51.419464054],[133.7664945900001,51.27066180300011],[133.55830370500007,51.17046000600004],[133.27969360200018,51.06988739400015],[133.31689466700004,51.03604696800011],[133.86669957200013,51.096407903000056]]],[[[115.2969965740001,52.89421147100012],[115.4992976630001,53.03442327700009],[115.54370163300007,53.114744038000026],[115.35990158400023,53.149564811000175],[115.11489855400032,52.99296470799999],[115.11039763900033,52.90279085200007],[115.2969965740001,52.89421147100012]]],[[[114.71029654300003,53.18324564500017],[115.05539659700003,53.30702020300009],[115.2279965790002,53.51974385400018],[115.32129654900018,53.59299548500019],[115.57240261100014,53.70344784600013],[115.71980256900008,53.83445598700001],[115.81079868900008,53.96322381300007],[115.70860267000012,54.00457593200008],[115.55039961200009,54.016486113999974],[115.41500052700019,53.98361044600017],[115.06659666300004,53.860213576000035],[114.9204025250001,53.839251106],[114.79830166500017,53.724559513000145],[114.36450163000018,53.26923827200011],[114.38600154700009,53.20599698000012],[114.51989758900015,53.17222528600007],[114.71029654300003,53.18324564500017]]],[[[117.57800261200009,53.53448426800014],[117.9196015440001,53.66472798000012],[117.99490355600005,53.755020020000075],[117.98500067300006,53.84431310500008],[117.60209656000018,53.952885741000046],[117.3764035910001,54.08482779400009],[117.22660054100004,54.06299226600015],[117.11789664400021,53.99322348300018],[117.0451965420001,53.87568187500011],[117.02729765800007,53.63169640800015],[117.20909862400015,53.54552424100012],[117.38680268300004,53.509062459],[117.57800261200009,53.53448426800014]]],[[[135.58450357400022,54.27126797500006],[135.41639662600005,54.307672089],[134.9579926880001,54.21578564300012],[134.55589267600033,54.25732082400009],[134.51370270200005,54.169599513000094],[134.6520996580001,54.02995549700006],[134.5455016310001,53.88335701600005],[134.44270362300006,53.79918007700019],[134.48319961500033,53.70561909400004],[134.61839267200014,53.625356001],[134.6235966610002,53.53446499000012],[134.44279465000022,53.375361548000114],[134.39050263900015,53.253308129],[134.56289659400022,53.04665364800013],[134.56179755900018,52.96579191900014],[134.35780366100005,52.79917762100018],[134.1876066020002,52.78122928400006],[134.0522006440001,52.89070934500006],[133.94389354700002,52.88872953900005],[133.9402006480001,52.74706850200016],[133.86929360300007,52.69451564600007],[133.74510162600018,52.67801704300018],[133.60029569900018,52.70143557700004],[133.3764956990001,52.83853836800006],[133.21440159300005,52.766217966000056],[133.19740259100013,52.67595727400004],[133.23210165800003,52.5763033180001],[133.34919768400005,52.486351415000115],[133.53390465500013,52.4243803170001],[133.69659454600003,52.412126980000096],[133.75900267700013,52.36928020000016],[133.51229862300033,52.217108256000074],[133.41580162800005,52.04792406700017],[133.50019867600008,52.003104354000186],[133.63099659800002,51.991602036000074],[134.1269985690002,52.192506700000024],[134.27720663300022,52.20451595600019],[134.36700464400008,52.14722581500007],[134.32659867400014,51.99679412200015],[134.43200663800008,51.9719218300001],[134.6333005580001,52.02473385500008],[135.06790156700004,52.08659381000007],[135.09970066400012,52.169626284000174],[134.9900965510002,52.33218541700006],[135.06779461400004,52.406881753000164],[135.30830360300013,52.5509846060001],[135.3538056030003,52.765416991000166],[135.1782986080001,52.90432876400013],[135.26539563500012,53.00162069900006],[135.42300458400007,53.096150630000125],[135.45080568000014,53.16261526599999],[135.3471986510001,53.25100796800007],[135.12030070000014,53.38506276300012],[134.9826046380001,53.556815670000105],[135.13049359700017,53.74443082700009],[135.13859554400005,53.81838050300007],[135.0690006020002,53.888511216000154],[135.11259454600008,53.98924442600003],[135.5796965520001,54.208770492999975],[135.58450357400022,54.27126797500006]]],[[[116.31220262900001,53.64142746200008],[116.40599864000023,53.683516351000094],[116.57180056400011,53.91208263700014],[116.78289762200018,54.04986486400003],[116.91210164300003,54.181123959000104],[116.99310267900023,54.31644224200011],[116.88379662600005,54.337374704000126],[116.67389667100008,54.237201406000054],[116.40689868900006,54.07392528500014],[116.27189657100018,53.94300548900003],[116.13880167200011,53.675554381000154],[116.31220262900001,53.64142746200008]]],[[[114.66300165500013,54.31257013800018],[114.73110160100009,54.38601287700004],[114.82029762300022,54.562039214000094],[114.56220256300014,54.582169696000165],[114.22689860800006,54.49951742500019],[114.119796661,54.420032675000186],[114.05419955100012,54.319509348000054],[114.09300256600022,54.24314149300011],[114.38330056300015,54.21536956600005],[114.66300165500013,54.31257013800018]]],[[[113.22940066400008,54.59853100300006],[113.3142015520001,54.670389730000124],[113.44219958400015,54.714271843000176],[113.5615005530002,54.86043563800007],[113.48339865000014,54.91910694900008],[113.30069763600011,54.92350912400008],[113.12000257900002,54.844726107000156],[112.94239759400011,54.70149262500007],[112.96109762000015,54.617021481000165],[113.0615996570001,54.58941786300011],[113.22940066400008,54.59853100300006]]],[[[114.58029959500004,54.843475192000085],[114.65820368600009,54.92675610600014],[114.68579858700002,55.02492160300005],[114.53170065000018,55.04548023200016],[114.25219753900012,54.99272889200017],[114.16609963500002,54.92514627700007],[114.15119962900019,54.7993228470001],[114.2554016050002,54.781499568000015],[114.3908006900001,54.83511675800008],[114.58029959500004,54.843475192000085]]],[[[117.81169862200034,54.55839895300005],[118.0115966190001,54.64003198500018],[118.09179668000002,54.74879187300013],[117.84329957000023,54.79284497600014],[117.96199754500014,55.01760839299999],[117.84909867400006,55.062550649000116],[117.70770267300009,55.03575990700011],[117.51370268500011,54.86099253200018],[117.42099766300021,54.64797015000016],[117.48000357900003,54.54724884300015],[117.81169862200034,54.55839895300005]]],[[[112.9262005720002,54.90195556300006],[113.09909861500023,55.07186294300004],[113.09140067500027,55.143981676000124],[112.98570252900015,55.1608432160001],[112.87010166700009,55.122161403000064],[112.73370362700018,54.9927977910001],[112.7139965990001,54.88265706900006],[112.8164975520001,54.84809429100011],[112.9262005720002,54.90195556300006]]],[[[113.89350153600003,55.03213205100019],[113.98480259000019,55.16679453500018],[113.95520055800012,55.23423633300007],[113.60669661400004,55.27121611700005],[113.45749655800012,55.20763552500006],[113.48020162500018,55.051018323000164],[113.59919766000007,55.016990479000015],[113.78269964900028,55.00862919500014],[113.89350153600003,55.03213205100019]]],[[[112.45130155100014,54.65210226100004],[112.40769956100007,54.77336325400006],[112.27259853700002,54.94970994800008],[112.50450165800021,55.21820577600005],[112.4245986520001,55.28344648700016],[112.06909967400009,55.36157068600011],[112.07299759400007,55.42858031400016],[112.16960154300011,55.52200198900016],[112.18229660600002,55.61414441900013],[111.92970258900016,55.60520595700007],[111.62779968000018,55.46310118200006],[111.60739863100014,55.34204990400019],[111.76940154100015,55.20105522900002],[111.778701598,55.0994816490001],[111.65319852300019,54.960207946000196],[111.62719752400011,54.813845332000085],[111.67060052700009,54.67841305500008],[111.63899957900003,54.55507703800009],[111.47930152499998,54.54672966800007],[111.29479957500007,54.60796919400019],[111.18959763700013,54.57857134500006],[111.05969959600009,54.38013464800014],[111.01609760600002,54.23556106800004],[110.66660258500008,53.88534905900008],[110.43250256700014,53.753440870000134],[110.24620052000006,53.66858918700012],[110.00150259100013,53.68563764300012],[109.50969660100014,53.366271541000174],[109.2464986390001,53.12431114200007],[109.255897602,53.026954163000084],[109.37940259800018,52.992854570000134],[109.7632977880001,52.99622275400009],[109.91249868200003,53.07040511100007],[110.26349657700018,53.19432769400004],[110.49030266300002,53.22619652800006],[110.63169866400006,53.40112316000017],[110.84210153300012,53.53901636300003],[111.24469758700008,53.75209104800001],[112.03869666700018,54.225700094],[112.31310257500013,54.451535555000135],[112.45130155100014,54.65210226100004]]],[[[115.1179966730001,55.39500626600011],[115.21829955500004,55.468140215000176],[115.17479664000007,55.542014454000196],[115.0458985590002,55.574806303000116],[114.99449955500006,55.63080680400003],[115.01869961900002,55.725269512000125],[114.87750260400003,55.72580729500015],[114.75689657200007,55.58023442400008],[114.74269863400002,55.502691426000126],[114.91799960100025,55.38124318100006],[115.1179966730001,55.39500626600011]]],[[[117.34580260300004,55.507364504000066],[117.49749761700014,55.55564376400008],[117.64659859800008,55.56295295100006],[118.11489854700017,55.62512655600011],[118.2097015600001,55.713027910000164],[118.21399661500027,55.81527975299997],[118.0798036860001,55.86350218300004],[117.73000356400007,55.83110311000013],[116.94960060100004,55.63658696500005],[116.89209756000014,55.57673615300007],[116.94319967700005,55.493383154000014],[117.14070162300015,55.47832171300007],[117.34580260300004,55.507364504000066]]],[[[109.90609759000012,54.22596714100018],[110.04900367500017,54.344690765000166],[109.982299651,54.460984642000085],[110.049102581,54.64748215600008],[110.3656005630001,54.96559818000014],[110.43489861800003,55.11855215500003],[110.48030053800017,55.348279167000044],[110.73829652400019,55.567794003000074],[110.799003631,55.65838846200006],[110.79329656100015,55.75196922600003],[110.73079656400012,55.836432323999986],[110.62329865600009,55.88442291000007],[110.4486995900001,55.91283152700004],[110.21849866500008,55.91294250300018],[110.13099662500002,55.884384689],[110.01979860900013,55.63854682099998],[110.03130361000018,55.50389238500014],[110.11920161100005,55.36894072600012],[110.1719965370001,55.22263477400003],[110.06939667800003,55.01710950200004],[109.786102599,54.83658610600014],[109.65149661000015,54.60043101300005],[109.67629966700008,54.3900950310001],[109.7313005430002,54.21026968100006],[109.90609759000012,54.22596714100018]]],[[[111.5054015980001,55.769890573000055],[111.55780056200007,55.827643060000185],[111.52760358300009,56.01341620900007],[111.4121016270002,56.077887126000064],[111.20439957500002,56.02514685000011],[111.10500361500016,55.875503392000155],[111.14199865300014,55.78205992300008],[111.41899859300014,55.73794965500008],[111.5054015980001,55.769890573000055]]],[[[114.41509966000012,55.678248041000074],[114.5752025600001,55.803861589000064],[115.07450063000022,55.97019526100007],[115.15229760000011,56.03527503900017],[115.03230260900023,56.092989639999985],[114.56749757900002,55.98546558000015],[114.10749856500013,55.898572233000095],[113.77480356100011,55.767861482000114],[113.22200061700005,55.652586509000116],[112.77719866400003,55.58242042400008],[112.58059659900016,55.59449371700009],[112.5090025730002,55.52431288000014],[112.60230254300006,55.46832344300003],[112.95189663700012,55.3297016840001],[113.183196597,55.398764375999974],[113.55909762900012,55.44976490400006],[114.04080158200009,55.45609307300009],[114.22460163100016,55.51116368600003],[114.41509966000012,55.678248041000074]]],[[[133.19839467300028,55.94618446100009],[133.15580756400027,56.06387878700019],[133.24409465300005,56.19223154100018],[133.51170367600002,56.40063851100007],[133.39520259800008,56.48213072700008],[133.27859456600004,56.50100643700006],[133.0366056690001,56.41014878600009],[132.8912966600002,56.302365558000076],[132.58760069400023,55.95496584600005],[132.32200668100006,55.920674809000104],[132.13189656700013,55.95576380300008],[132.03660555900012,56.01272621100014],[131.99530054600007,56.10361789299998],[132.14329562000012,56.26833369000019],[132.11439565600006,56.32295419400009],[131.86390667000023,56.369765615],[131.25630167000008,56.018066489000034],[131.03759770000022,55.98081546700007],[130.9344025570001,55.997416832000056],[130.85910054500005,56.10442305800012],[130.9293056900002,56.19653145700016],[131.06759669900032,56.29338535400012],[131.1029056340003,56.38707692700007],[130.9790036700001,56.40871849800004],[130.7731935810001,56.395679274000145],[130.5487976280001,56.32630729100015],[130.41259756800002,56.25683120400004],[130.34860257600008,56.143070002000115],[130.4483036380003,56.04139818699997],[130.45249961800005,55.91303353100005],[130.19880656600003,55.75732107100009],[130.02259867700013,55.7201112890001],[129.76879867200023,55.723129444000165],[129.61520364900002,55.764531520000105],[129.49110454300012,55.87518337100005],[129.5265046730001,55.95949777300012],[129.71290562700005,56.14234899100006],[129.53320365800005,56.19822443400017],[129.3751065470002,56.06480984900014],[129.31579569700034,55.96694509400004],[129.03169259800018,55.82160104900004],[128.68640160500024,55.77816166800005],[128.54969762500014,55.727989272000116],[128.5068055830002,55.61353321000007],[128.59500164400004,55.53445313900011],[128.71429456700014,55.506952450000085],[128.9261936060002,55.500531242000136],[129.42439264100017,55.607716170000174],[129.69920356300008,55.59904492300012],[129.9008025830001,55.47067339400007],[130.26280256500002,55.379038069000046],[130.61650060700003,55.45258005000011],[130.93879668600005,55.59256386800007],[131.15870664500017,55.59542494700008],[131.25750765800024,55.558894936000115],[131.32319663400006,55.46153326400014],[131.35969563100014,55.249044642000115],[131.15750166300006,54.97320827800007],[130.69180261900033,54.53891756600012],[130.23100263000015,54.211428562000094],[130.12449663600012,54.02470624600011],[130.10870362200012,53.91092258100008],[130.19830365200005,53.78627865200008],[130.37130764300014,53.66682597000016],[130.8155976290002,53.57713692400017],[131.21539261800012,53.568255962000194],[131.31010460400023,53.60574771200004],[131.1994016230002,53.726428343000066],[130.92449967400012,53.853823213000055],[130.80439756300007,53.942803485000184],[130.79420466600016,54.04820591800012],[130.88890055800005,54.20632046300011],[131.0003056070001,54.33794249500011],[131.31430058500007,54.592274750000115],[131.46530157600023,54.67228169300006],[131.52310167200028,54.65874760100007],[132.13800060400013,54.67822613800013],[132.36180161000004,54.71836086999997],[132.44119265000006,54.814433406000035],[132.3486026270001,54.88482731100004],[132.17610155100033,54.919827960000134],[131.71960466300015,54.94064961300012],[131.85020460500004,55.10094261500018],[131.95579563100023,55.35186913600012],[132.05670167500034,55.42167228500011],[132.4353026870001,55.483002838],[132.83110068100018,55.480343763],[133.08920261400033,55.53174394000001],[133.25250270800018,55.531874027000015],[133.63020367000001,55.40647086500019],[133.9313045990001,55.475060649000056],[134.41999855600022,55.5603440000001],[134.7171016520001,55.59239572700005],[135.12690765100012,55.66246676100013],[135.4815065800001,55.69559757500008],[135.885803656,55.74855896500003],[136.24079854600018,55.86520438000014],[136.2613065490001,56.05245743800009],[136.14540058600016,56.10367874500008],[135.70860267900014,56.018127509000124],[135.08779869700004,55.85837195500011],[134.4001005880002,55.77840994000019],[133.77569557200002,55.71780023000014],[133.46820059300012,55.762787413000126],[133.31530763800015,55.84342165700019],[133.19839467300028,55.94618446100009]]],[[[119.62819668400016,56.805779478000034],[119.491302603,56.825180901000124],[119.20449868700007,56.9109956640001],[119.05549661100008,56.91595875700011],[118.88880167900015,56.88569170500011],[118.63169853400007,56.793407956000124],[118.4988026210001,56.665775208000184],[118.05760153300014,56.522441981000156],[117.76139865300024,56.50768966400017],[117.59880062800016,56.464319350000096],[117.38860361800016,56.370757529],[117.20059954200019,56.315767047000065],[116.67530064000016,56.238657729000124],[116.50350163200017,56.18432019800008],[116.21499652400018,55.94641362200014],[116.30480157600005,55.86117201400009],[116.45010354400017,55.85908089700018],[116.7558976680001,56.01088738900006],[116.90769963500009,56.06786890800004],[117.29329668500009,56.06613670400003],[117.41760265700009,56.04735721700007],[117.66609959900006,56.10012666200004],[117.75589761000015,56.18125309200019],[117.92310367000016,56.208356981],[118.14340154400031,56.13536887700002],[118.57019766000019,56.06254757300019],[118.64459962400008,55.9930649480001],[118.7935026250002,55.97243809000014],[118.98899861500001,56.00915518500011],[119.04620359500029,56.0761281],[119.0904005320001,56.37485762100016],[119.27660367400006,56.48524276000006],[119.4004975900001,56.47633950200009],[119.4393006050002,56.38522704100018],[119.41120161600008,55.95348560200017],[119.57289858700005,55.906762526000136],[119.83010063900008,55.881653697],[120.27020269100024,55.95410368300003],[120.61250268600008,56.05489858300001],[120.7307966530002,56.12976071300017],[120.75229657000011,56.23799488800012],[120.28269960600016,56.344984853000085],[120.0917965640001,56.43655831900003],[120.09909854300008,56.53546142400012],[120.31860365600005,56.73597917900008],[120.33840154300026,56.79422016300009],[120.1386036260003,56.825317862000134],[120.00080061100005,56.80413142800012],[119.62819668400016,56.805779478000034]]],[[[137.59970068600012,57.09876421000013],[137.61030563800023,57.20892454600016],[137.47320569700025,57.229471273000115],[137.18789660900006,57.074246640000126],[137.05729666700006,57.05266189800011],[136.95359760500014,57.08751083400017],[136.9210966070001,57.155201073000114],[136.72810362200005,57.18918315200011],[136.55029261000004,57.08353965600003],[136.6038965570001,56.932694232000074],[136.74690255400026,56.871451354000044],[136.89779659300007,56.85601289400006],[137.19410659400023,56.885771668000075],[137.35119670300003,56.93210213500004],[137.59970068600012,57.09876421000013]]],[[[123.27629867500025,57.34383597100003],[123.09490154900004,57.390937406000035],[122.72530354000014,57.38101893200002],[122.49739858700002,57.3115468690001],[122.27429964900011,57.30326454200002],[122.15609754700006,57.325196463000054],[122.02729753500023,57.29128613200015],[121.92240153700016,57.209401644000195],[121.89679767300004,57.121229890000166],[121.947303669,57.053474775000154],[122.12010163200011,56.997591285],[122.49349966100021,56.921973778000165],[122.77700060400025,56.839513285000066],[123.02020253100022,56.74064857000019],[123.19899757800022,56.61918473400016],[123.43840065900008,56.53115111400018],[123.9507976320001,56.46467021600017],[124.21549964400003,56.361678252000104],[124.31839756300008,56.22984248200004],[124.33229861500024,56.116534238000156],[124.43129760800002,56.118510188000016],[124.65280163800003,56.29994654000012],[124.71829967300027,56.43542927700008],[124.71289854200006,56.559064193000154],[124.64689658700001,56.74736666500013],[124.43969761600033,56.93693229000007],[124.05519859500032,56.90346519500008],[123.90920260500013,57.016215707000185],[123.47869867000009,57.17387058800006],[123.27629867500025,57.34383597100003]]],[[[114.73179662800021,57.52942287500002],[114.55919664500016,57.62301570900013],[114.33480052400012,57.67342816200011],[114.0127025930002,57.694195836000176],[113.88079859400023,57.567544106000014],[113.8908005510001,57.4537292600001],[114.18659959100012,57.342336952000096],[114.2499996360001,57.25200518100013],[114.17189756500011,57.10372327900018],[114.04190061700001,57.007445386000086],[113.87400053500005,56.99786604400009],[113.5734026880001,57.05688889200013],[113.08599853900023,57.035835395000106],[112.9539036000001,57.077317602],[112.38420056000007,57.175220578000165],[112.24439963500015,57.13474922900008],[112.26119965200007,57.06924951700012],[112.60769663300027,56.941014612000174],[112.65529662300003,56.84216062600018],[112.61239653400003,56.70141723900019],[112.51979863200006,56.59976419999998],[112.29699658100014,56.58347464200011],[112.14080065300027,56.627120049999974],[112.01940152600002,56.85687103300006],[111.83830262900017,56.89874215999998],[111.68080163900004,56.866980112000135],[111.4399035620001,56.709638378000136],[111.28639956700016,56.64357339000014],[111.14769767700005,56.713456670000085],[111.26219967100013,56.888133018000076],[111.44789855700014,57.08882696100011],[111.37770062000004,57.17782969700016],[111.26860059500007,57.140730723000104],[111.02310152400008,56.99048812500007],[110.75939964100019,56.797169084000075],[110.510696672,56.761767110000164],[110.51540361300016,56.83954044300003],[110.71810166900019,57.0206058120001],[110.96060152800015,57.208840559000066],[111.1015016550001,57.34350790399998],[111.076896579,57.413139223000144],[110.88800066700014,57.398257657000045],[110.6653976030002,57.25978425800014],[110.40360260300008,57.021170920000145],[110.08439659600003,56.909984639000186],[109.764198674,56.90954157200002],[109.57260161100004,56.87104231700005],[109.41780060000008,56.762339929],[109.38159966300015,56.483648857000105],[109.2519986760002,56.40249661100012],[109.04489861200011,56.316667096000174],[109.06369754400015,56.20392077500014],[109.31479656500017,56.18188206999997],[109.64119759800013,56.22329235900014],[110.00740060100014,56.38977824700015],[110.27580255200007,56.479753619],[110.57240256700004,56.488112053000066],[110.81079864500003,56.412468729000125],[111.11029863000016,56.266933409000046],[111.40249663700007,56.25894528800018],[111.69750258100004,56.320798201000116],[111.92440053300004,56.34099774900005],[112.08860067500007,56.27818276099998],[112.15039860300021,56.20389361800011],[112.63310268400016,56.242853710000134],[112.90959954200014,56.30780474200003],[113.21859756500021,56.41352887199997],[113.52130161600007,56.49344914600016],[113.66870157500011,56.42667823400012],[113.56559762800032,56.326597137000135],[113.40859955200006,56.259513413000036],[113.18039653800008,56.216032123],[112.91359754200016,56.24370480800002],[112.76609767100013,56.178612960000066],[112.64530153800001,55.975707200000045],[112.41999866300023,55.975486252999985],[112.29429660200026,56.04582735300016],[112.04779857600033,56.058709500000134],[111.94480158200003,55.9205946780001],[112.04309867500001,55.808855527000105],[112.59500157000002,55.69379747700003],[113.25119763600003,55.750210032000155],[113.34089657300012,55.82193297200007],[113.6057965650001,55.86031320400008],[113.77719860600018,55.932733015],[114.06340053400015,56.136909974000105],[114.54180168200014,56.52310214000016],[114.83209967800019,56.684475904000124],[114.8531035540002,56.79843911],[114.65789757900006,56.92947424100004],[114.65450257200007,57.020224939000116],[115.02339968700005,57.11910876500008],[115.3935016160001,57.15645215500007],[115.8192976040001,57.27618378700015],[115.94850162400007,57.41340995899998],[115.7966996580002,57.49864083799997],[115.538497645,57.499552789],[115.24780268100005,57.41724015300019],[115.06800063200012,57.39937965900015],[114.73179662800021,57.52942287500002]]],[[[124.96430165800007,57.77795083000012],[124.79009955900005,57.75165881200007],[124.61589863200004,57.598153810000156],[124.65149657500012,57.535491876000094],[124.78199761100007,57.46901097800014],[125.21589655200023,57.43597873600015],[125.42189758100005,57.44662207700014],[125.61370067200005,57.56009376700007],[125.53980262800007,57.65114571100003],[125.23509966000017,57.76847844200012],[124.96430165800007,57.77795083000012]]],[[[117.6803966110001,57.478819146000035],[117.84549764100007,57.69373784900017],[117.85530061200006,57.77983491500015],[117.55660260700006,57.79049015800007],[117.00270062800007,57.59057472600011],[116.85179854300009,57.57817219100019],[116.7554016270002,57.501032866],[116.7710035340001,57.373667668],[117.02089656700002,57.356405306000056],[117.37210065700026,57.357614479],[117.50430254800017,57.30745365000007],[117.51979867600016,57.2369826310001],[117.40110053300009,57.12142787],[116.99690253100005,57.16635923000007],[116.85870355500015,57.11826185800004],[116.66629763800006,57.10796971900015],[116.46479769100029,57.12951925600015],[116.25849960800008,57.01112655000003],[115.79799667300006,56.848390727000094],[115.91780055700008,56.76776821700008],[116.08769955500009,56.69826631400019],[116.15809664500023,56.533233179000035],[116.27660368000011,56.54305257800007],[116.43430365700021,56.70187539400018],[116.5868985510001,56.736948295],[116.65380055500009,56.704205228000035],[116.512100626,56.599752298000055],[116.45210262800003,56.51399989600003],[116.4739986740002,56.446179906000054],[116.60330160000012,56.43873744600012],[116.91040061900014,56.53759026],[117.16509966700005,56.697053285000095],[117.39459952900006,56.746138549000136],[117.61679858600019,56.7620800900001],[117.72290057200019,56.806439469],[117.81320166500007,57.01740576900005],[117.9694976720001,57.168304502000126],[118.1281966040001,57.22030415300014],[118.33519759400019,57.340367707000155],[118.46060159400008,57.450540281000144],[118.52059959200017,57.555916730000035],[118.43620254400014,57.629917032000094],[118.26750165500005,57.63725622700014],[118.14119760600022,57.59540370800016],[117.8713985600001,57.45750933100015],[117.6803966110001,57.478819146000035]]],[[[132.51960770100027,57.37905790200011],[132.62179567400017,57.45821944500011],[132.64729258500006,57.59269568300016],[132.5966036960001,57.711847622000164],[132.42210370400016,57.78979915400009],[132.245101545,57.81496196200004],[131.9591066500002,57.757037982000156],[131.65429656200013,57.754520058000196],[131.5444946360002,57.63517718000014],[131.61579864800012,57.57063401100015],[132.02259856100022,57.48681129100004],[132.16949459900025,57.39156638399999],[132.41940255100008,57.33267764700014],[132.51960770100027,57.37905790200011]]],[[[138.16949458500017,57.46154152899999],[138.46150165200004,57.754969999000195],[138.38909860500007,57.823770169000056],[138.2539065530001,57.84007079100019],[138.03680469900007,57.764911439000116],[137.78500361100032,57.61050320400017],[137.5937956350001,57.518493544000194],[137.6291966030002,57.445588085],[137.76179462400012,57.41359721000015],[137.995803614,57.412048067000114],[138.16949458500017,57.46154152899999]]],[[[126.63230156500015,57.83970483700011],[126.75509661400008,57.95224647200007],[126.80529767700011,58.07242016500004],[126.60939767900004,58.12879215200019],[126.38619966800002,58.11814076500008],[126.21839866000005,58.047997646],[126.0419996630003,57.90323279000012],[126.15619655600028,57.806809555000086],[126.45079765400021,57.77268951000002],[126.63230156500015,57.83970483700011]]],[[[126.30789961600033,56.297303391000014],[126.4438016150001,56.33351740400013],[126.52149967800017,56.45156980500008],[126.48650355600023,56.607084619000034],[126.55490156200005,56.63909829200003],[126.8908995390002,56.64845584900007],[127.08159655400016,56.68393761900006],[127.26580061100003,56.89686109300004],[127.35140264100005,56.92064290000019],[127.781501563,56.958103972000174],[128.02389564200007,56.99992631600003],[128.24630759900003,57.13471536600002],[128.16540563700005,57.24333460500003],[128.31919864100018,57.29905364200016],[128.7639006820002,57.33495467400019],[129.2223056260002,57.50567208200016],[129.8708035840001,57.80254048500018],[130.0957946530002,57.962637685000175],[130.22720361600022,58.01424036900016],[130.58439657600002,58.05310960100013],[130.74490365200006,58.117362924000076],[130.79820266600007,58.18968416400014],[130.73089564800011,58.27349598700016],[130.55909764600005,58.325896629000056],[130.21130364900012,58.33797813600006],[129.9488986140001,58.310248286],[129.56990063600006,58.16918353799997],[129.3045956310002,58.036489125],[128.99749761800024,57.93390468900009],[128.15359469700002,57.78287201300009],[127.89330257300003,57.724527932],[127.73599956300006,57.64515633800016],[127.74259964200007,57.54660141800008],[127.62809764700023,57.39722752100005],[127.49710057000004,57.321515298],[127.06040157100017,57.30599670800012],[126.74359865500003,57.20728068700009],[126.69180268400021,56.99138498900004],[126.5926975760002,56.90239315000008],[126.14040354200006,56.82210994000013],[126.04440258700004,56.67666648500011],[125.80220062200021,56.47738053400002],[125.79519653600005,56.38310591700014],[125.91490168000007,56.32843545600008],[126.12010156700012,56.29688328999998],[126.30789961600033,56.297303391000014]]],[[[120.6914975970002,57.508632067],[120.8470006760001,57.5707141420001],[120.91829664200009,57.639427307000176],[120.866996545,57.721826780000185],[120.67710167800021,57.816571958],[120.8280025900001,58.026218947000075],[120.76450363800018,58.13759248000002],[120.93869769100013,58.26584783600015],[120.98919664600032,58.33446796300012],[120.89250167000012,58.37844965300013],[120.57689652900024,58.43204035700012],[120.44200153200006,58.481331982000086],[120.27580264100015,58.42805006800012],[120.24659757500012,58.28260644600016],[120.26869964800017,58.19443335000017],[120.20469660900005,58.11265162400019],[120.00070153700005,58.03107911000012],[119.87840252900003,57.93457574400014],[119.9542005830001,57.776378721000185],[119.94960059400012,57.573552254000106],[119.71849861500016,57.46615761100003],[119.60320268700013,57.5079489420001],[119.64160169400031,57.79343907900011],[119.60510252900008,57.88351805100001],[119.49330168700021,57.94035506600011],[119.30529761000014,57.974234216000184],[119.10230266700012,57.97636724300003],[119.01940162200003,57.94745437000006],[119.06909960200016,57.81709800600004],[119.393997592,57.55790474900016],[119.42299663000006,57.407497029000126],[119.40419753000003,57.21489078400015],[119.49790167600008,57.06174905500018],[119.68489858300006,57.003405309000016],[119.88200356200014,56.99707613400011],[120.11640164100015,57.06003596099998],[120.5169986100002,57.42305836700018],[120.6914975970002,57.508632067]]],[[[126.15799766000009,58.18428286600016],[126.2596966320001,58.32134944600011],[126.23130058800018,58.40760660600006],[126.1242975470002,58.47468278600007],[125.87719770000012,58.55132623800017],[125.69950068200012,58.549506360000066],[125.53610268800003,58.46550359600013],[125.46759756100016,58.320998746999976],[125.64880357900006,58.18322188400015],[126.04940054900021,58.14074072300019],[126.15799766000009,58.18428286600016]]],[[[138.97309865700004,58.11032044900014],[139.32319667100035,58.25306426000009],[139.7872005590002,58.46149419700015],[139.85800165700005,58.560904742000105],[139.7254026300003,58.62152668900018],[139.6076047040002,58.6310902730001],[139.33529661900002,58.55323731200019],[139.02890067400006,58.439181738000116],[138.82739268100022,58.407159348000164],[138.60949655800005,58.32793795700019],[138.51359568300006,58.21954335300006],[138.5229036190002,58.12491200100004],[138.83360266500006,58.07942039500017],[138.97309865700004,58.11032044900014]]],[[[112.09390256400013,58.110290442000064],[112.30010257900005,58.297326912000074],[112.35420256700024,58.396329258000094],[112.35849762200007,58.50773799500013],[112.18399863500008,58.642019437000044],[111.906501649,58.666949228000135],[111.83789862100014,58.56562794500019],[111.88140053100005,58.445590709000044],[111.76650257600016,58.286016372],[111.64420356700003,58.168012418000046],[111.47650163400004,58.103000365000014],[111.19229862200007,58.03798814500004],[111.01519755700008,58.02554789200008],[110.9219966610001,58.06447797700014],[110.71269953300015,57.90973396200013],[110.70069865900018,57.80682179299998],[110.82230364600008,57.67615948900004],[110.98359660800008,57.667939022000155],[111.25550068600018,57.73409922800005],[111.51149758800017,57.85355308300018],[111.74259956700013,57.93802389100006],[112.09390256400013,58.110290442000064]]],[[[115.79489855400016,58.95342038300009],[115.75070161700023,59.01942049500013],[115.2279965790002,59.16193581500005],[115.14489755300008,59.334441921000064],[115.07929960500019,59.4028652400001],[114.94480157500004,59.426738242000056],[114.78549964900014,59.378404332],[114.6768036320002,59.27137162000014],[114.72219867800004,59.13016555200011],[114.56870256200034,59.02111062200004],[114.59580259600011,58.90477768500011],[114.74240158000009,58.8830477680001],[115.06749755000021,58.88808797400003],[115.32689666700003,58.934269745999984],[115.68589760300006,58.903167521000114],[115.79489855400016,58.95342038300009]]],[[[115.80899859200008,59.52590872900004],[115.49109664100013,59.426509248000116],[115.45680258700031,59.295023506000064],[115.56030266300013,59.240540465000095],[115.70600159800017,59.229420194000056],[115.94210053200015,59.26653425600006],[116.22270167300007,59.26389026800018],[116.33499855600007,59.294127313000104],[116.40599864000023,59.38335569000009],[116.33070366900006,59.47289771800013],[116.16860168500011,59.51322037200009],[115.80899859200008,59.52590872900004]]],[[[140.1983035730001,58.752104336000116],[140.30329864500015,58.81739567300019],[140.37840267700005,59.174814106999975],[140.61909455900002,59.32303230600007],[140.66020159100003,59.38463376300001],[140.4485017070001,59.520998610000106],[140.49890158800008,59.659809633000066],[140.41329955700007,59.752148031000104],[140.22779865200005,59.79842870900006],[140.00149564800006,59.72981528800011],[139.93189970000003,59.62856240100018],[139.92669655000032,59.501478834000125],[140.00280758400004,59.40849553200002],[140.01960760000009,59.29144141600017],[139.83219863800002,58.814373327000055],[140.05740361300002,58.73579164300003],[140.1983035730001,58.752104336000116]]]]},"properties":{"objectid":749,"eco_name":"Trans-Baikal Bald Mountain tundra","biome_num":11,"biome_name":"Tundra","realm":"Palearctic","eco_biome_":"PA11","nnh":2,"eco_id":782,"shape_leng":187.934712707,"shape_area":31.4249636469,"nnh_name":"Nature Could Reach Half Protected","color":"#5AD5B6","color_bio":"#9ED7C2","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":218079.90363885506,"percentage":2.5520881820816195}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[140.86766056800013,-7.949746797999978],[140.83059663100005,-7.967846678999933],[140.58354171100007,-7.99851857799996],[140.46171560900007,-8.041906325999946],[140.29994169300005,-8.0067149059999],[140.21228056400003,-7.942625364999969],[140.12802165000005,-7.931928379999874],[140.06083667300004,-7.878265256999953],[140.059661698,-8.095261497999957],[139.93730166900002,-8.152658424999913],[139.98977657400008,-8.218119746999832],[140.16127064800003,-8.332502550999834],[140.49310265200006,-8.603985856999884],[140.51832564200015,-8.670552249999957],[140.61706563500002,-8.79174551799997],[140.80120867200003,-8.936035454999967],[140.88240064800004,-9.043094821999944],[140.98321566500022,-9.096448820999967],[141.10539263300006,-9.230203375999963],[141.17199657600008,-9.240229808999914],[141.3092036380001,-9.149277273999928],[141.39540061500009,-9.141877561999877],[141.51310768200005,-9.20502313299994],[141.62359658900004,-9.218132429999969],[141.7561946090001,-9.18820434099996],[141.9073945870001,-9.203453369999977],[142.06440758200006,-9.180983834999893],[142.1858067100003,-9.13831810299996],[142.27630662100012,-9.196045778999917],[142.4150997060001,-9.230275459999973],[142.55160570500027,-9.326549664999959],[142.6253966280002,-9.338743824999938],[142.85259968100013,-9.213372681999942],[142.99147055000003,-9.110129092999955],[143.13059958100007,-9.076382208999973],[143.260772717,-9.018883526999957],[143.18603564500017,-8.962448507999909],[143.02328456600003,-9.01921528299988],[142.97030657900018,-9.064629271999934],[142.7886357010002,-9.128965575999928],[142.5729066360003,-9.102473564999968],[142.51612862900015,-9.045706622999944],[142.4858547040002,-8.935957334999955],[142.5653386150002,-8.82242227699993],[142.60696364900014,-8.625628433999964],[142.51234470300005,-8.515879313999903],[142.37988263700004,-8.485603376999961],[142.239852551,-8.36828388999993],[142.19821159100002,-8.36828388999993],[142.16415357100004,-8.478034014999935],[142.11872868500006,-8.515879313999903],[141.91813666600012,-8.409912946999953],[141.83488458700003,-8.30773235099997],[141.88407864700002,-8.182844339999974],[141.8651576740001,-8.137431523999908],[141.72860758600007,-8.079512572999931],[141.66619861700008,-8.089331804999972],[141.626907608,-8.201617791999922],[141.50489760800008,-8.200290097999925],[141.43589761300007,-8.15311825599997],[141.46279866100008,-8.099618243999942],[141.3802035540001,-7.992427951999957],[141.33590670500018,-8.08549222299996],[141.25489762200004,-8.080233583999927],[141.12480160000007,-8.167236230999947],[141.05020165600013,-8.19400450899991],[141.01567056200008,-8.058198230999949],[140.86766056800013,-7.949746797999978]]]},"properties":{"objectid":752,"eco_name":"Trans Fly savanna and grasslands","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Australasia","eco_biome_":"AU07","nnh":2,"eco_id":188,"shape_leng":9.73498733488,"shape_area":2.18662473487,"nnh_name":"Nature Could Reach Half Protected","color":"#8FFC7D","color_bio":"#FEAA01","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":26789.37520718158,"percentage":0.12495618038809476}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-148.07840452799996,-86.53928968299982],[-147.55907885799996,-86.64699148199992],[-148.56355748699994,-86.67371752599996],[-147.5712115039999,-86.78724692899993],[-146.36160835199993,-86.72662059999988],[-148.07840452799996,-86.53928968299982]]],[[[-160.43991329099998,-86.27947555999998],[-159.67674976099997,-86.39138926699997],[-159.06166149699996,-86.35975259899999],[-160.43991329099998,-86.27947555999998]]],[[[-147.23491047099998,-86.1481279009999],[-148.72504882499996,-86.31792604699996],[-146.617596136,-86.35149860099989],[-146.4000717479999,-86.24496155199995],[-147.23491047099998,-86.1481279009999]]],[[[-156.51460278299996,-85.97914028399987],[-156.74977108999994,-86.05829934399998],[-158.72836387399994,-86.13327667199991],[-156.98625501899994,-86.23770399399996],[-156.45254147999998,-86.20646194699992],[-156.73936176399994,-86.10082327099991],[-155.61935198099994,-86.0329335159999],[-156.51460278299996,-85.97914028399987]]],[[[-156.134373364,-85.92521411499996],[-155.05063777699993,-86.013920838],[-154.50341428099992,-86.10217929499993],[-152.6042043559999,-86.05461247899996],[-153.50810194899995,-86.00517767099996],[-153.76762102799995,-85.92884448599995],[-155.62235220099996,-85.96641571199996],[-156.134373364,-85.92521411499996]]],[[[-128.57936826999992,-85.90847896899993],[-129.17333229699994,-86.02317446299998],[-127.92434809899987,-86.01358891399991],[-128.57936826999992,-85.90847896899993]]],[[[-153.75182901999992,-85.71263991499995],[-154.81599435499996,-85.77440853099989],[-154.028024907,-85.8340208169999],[-153.45322292599994,-85.78828343599992],[-153.75182901999992,-85.71263991499995]]],[[[-156.07595365599997,-85.60434551499998],[-156.29084712999997,-85.7433807239999],[-155.06816232799997,-85.73194210399993],[-156.07595365599997,-85.60434551499998]]],[[[-177.05135862699996,-85.47760320999998],[-178.50642071299993,-85.52451942299996],[-177.41731333199994,-85.61716212099992],[-176.41641864399992,-85.61770711299988],[-176.38075815499997,-85.50147823299983],[-177.05135862699996,-85.47760320999998]]],[[[171.31180909800014,-85.39433969799995],[171.12020626000003,-85.50603413399995],[172.20710853200023,-85.49158825399996],[171.31180909800014,-85.39433969799995]]],[[[-127.38914275299993,-85.38129577499996],[-125.89569589299992,-85.52298318699997],[-124.598941363,-85.49533630599996],[-126.17902797099998,-85.38390807999997],[-127.38914275299993,-85.38129577499996]]],[[[167.59116580900002,-85.31870170999991],[166.71089732200005,-85.38890285799988],[168.22342357000002,-85.4186730429999],[167.59116580900002,-85.31870170999991]]],[[[-176.65888959699996,-85.16433364699998],[-178.3251820959999,-85.19041914499996],[-177.43472087299997,-85.27257222199995],[-176.65888959699996,-85.16433364699998]]],[[[167.27573203200018,-85.10449890399997],[165.41327190900017,-85.18167832599988],[167.4949577860002,-85.27035202299999],[167.27573203200018,-85.10449890399997]]],[[[170.5707898950002,-84.92275050499995],[170.20517163400007,-84.8994880329999],[169.1780189540002,-84.96399971099993],[169.2790133860002,-85.05947448799998],[169.8189563510001,-85.18631553099988],[170.87663074400007,-85.1811941869999],[170.56462852200013,-85.05955797099989],[169.78168586800007,-85.01145722699994],[170.5707898950002,-84.92275050499995]]],[[[-170.06657463699992,-84.69472593599988],[-169.94947504199993,-84.73139141299993],[-170.97380319099994,-84.81428193099998],[-169.96467126599995,-84.90240158299991],[-170.06657463699992,-84.69472593599988]]],[[[164.4138497590002,-84.30260844899993],[163.7499098930001,-84.35942855399998],[164.29847416000007,-84.41053555299993],[165.12441297500004,-84.37824492899995],[164.4138497590002,-84.30260844899993]]],[[[162.07880634800017,-84.16740242999998],[160.93427579100023,-84.17160209999986],[161.07138450900015,-84.26261418199988],[161.90766542100005,-84.27430912099987],[162.46325170600028,-84.23605527299992],[162.07880634800017,-84.16740242999998]]],[[[-56.23116878999997,-83.88035750499995],[-56.81665853199996,-84.03292513399998],[-55.94601901499988,-84.033996845],[-56.23116878999997,-83.88035750499995]]],[[[158.14208655800007,-83.17463769099993],[156.84174927300035,-83.19588448299993],[156.36542162000023,-83.30535989399988],[157.84544887500022,-83.26137298899988],[158.14208655800007,-83.17463769099993]]],[[[157.36196056400001,-82.92776171199995],[156.51436725500014,-83.00210855199998],[156.8320792300001,-83.10408148499994],[157.2458201920001,-83.09501259699988],[157.36196056400001,-82.92776171199995]]],[[[158.82093196500023,-82.2593794359999],[158.85150279000004,-82.35533214999998],[159.166798265,-82.41709405999995],[159.57432957200012,-82.3989177279999],[158.82093196500023,-82.2593794359999]]],[[[155.13646699600008,-79.83322520599995],[155.01490772500006,-79.9094336679999],[155.34161800700008,-80.04999455199999],[156.05979920200002,-80.107750749],[155.6941278060001,-79.97454381499989],[155.13646699600008,-79.83322520599995]]],[[[156.29734243000019,-79.72697699799994],[156.0346288390001,-79.77380570399998],[156.3893843180001,-79.91184648299998],[155.9101333880002,-79.94407709299998],[156.38963040800013,-80.00812055799992],[157.0114149840001,-79.92154200199997],[157.13631712200004,-79.8388788019999],[156.45296627100004,-79.83001543899991],[156.29734243000019,-79.72697699799994]]],[[[157.34333663400002,-79.4767455729999],[157.05199011800016,-79.56295716999995],[157.40820924000002,-79.64045493599997],[157.74988156300003,-79.57994595299982],[157.34333663400002,-79.4767455729999]]]]},"properties":{"objectid":753,"eco_name":"Transantarctic Mountains tundra","biome_num":11,"biome_name":"Tundra","realm":"Antarctica","eco_biome_":"AN11","nnh":1,"eco_id":134,"shape_leng":2088.1001053,"shape_area":16.3430541018,"nnh_name":"Half Protected","color":"#7AD4F7","color_bio":"#9ED7C2","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":19220.88882821425,"percentage":0.22493316628029925}}, + {"type":"Feature","geometry":null,"properties":{"objectid":755,"eco_name":"Tristan Da Cunha-Gough Islands shrub and grasslands","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Afrotropic","eco_biome_":"AF08","nnh":4,"eco_id":68,"shape_leng":0.967730458872,"shape_area":0.0173041645508,"nnh_name":"Nature Imperiled","color":"#E8FC77","color_bio":"#FEFF73","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":167.686682516802,"percentage":0.001582651914604727}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[14.32322657800006,35.97853105400003],[14.304857470000059,35.865576695000186],[14.420397479000144,35.80056799500011],[14.51492254800013,35.78205672900009],[14.550291497000103,35.86427967900016],[14.32322657800006,35.97853105400003]]],[[[15.570979485000123,38.21793854500004],[15.498567553000044,38.29208754200005],[15.340070457000081,38.21041981000013],[15.211462558,38.19294505],[15.091927566000038,38.11077742100019],[14.92316750100008,38.17694651200003],[14.734541487000172,38.15392477600017],[14.638265438000076,38.06760726700014],[14.285980585,38.00333131300016],[13.932785458000183,38.027584182000055],[13.869667548000109,37.99818549500003],[13.637097562000065,37.99819639100002],[13.546868554000184,38.03038105600018],[13.512099581000086,38.100848721000034],[13.376860591000025,38.10352975700005],[13.296482498000103,38.21398681200003],[13.15988949500013,38.160806654000055],[13.096879543000114,38.18043321600004],[13.047906430000182,38.06795142800013],[12.872026441000173,38.02692787899997],[12.794495513000186,38.085571027000015],[12.761590508000154,38.16364057600009],[12.610758495000141,38.058833594000134],[12.499999524000032,38.01212728200011],[12.418642592000026,37.79452637000014],[12.503702481000062,37.65532290700003],[12.592093506000026,37.62648429900008],[12.643151534000083,37.56035376500017],[12.857541506000075,37.574948334000055],[12.961029512000152,37.55070669700007],[13.004105454000182,37.48578198400014],[13.141506472000117,37.48479006900004],[13.25304445800009,37.38521691500006],[13.410823559000107,37.29530977200005],[13.542716494,37.272388116000116],[13.64810853300014,37.18636414100007],[13.863999537000154,37.08803486100015],[14.07370452900011,37.096029688000044],[14.21438957700019,37.06225933600007],[14.38082450200011,36.91790653400017],[14.476814560000093,36.78089326300005],[14.69075258100014,36.71329472200006],[14.836121435999985,36.72388760400008],[15.126563434000047,36.67274458300005],[15.088618558000178,36.7855200730001],[15.139525545000026,36.90650479900012],[15.283307538000088,37.0070965220001],[15.288089582000168,37.10284669000009],[15.216150557000049,37.12138243100014],[15.187223435000021,37.27283034600015],[15.072240487000101,37.3379079450001],[15.071813513000166,37.47927712400019],[15.16191545200013,37.5620355100001],[15.200476565000088,37.72532453900004],[15.293056530000058,37.861530131000166],[15.455650532000107,38.02372800400019],[15.565581539000107,38.17378033200009],[15.570979485000123,38.21793854500004]],[[15.40178054300003,38.02691698300015],[15.318939512000043,37.92703084800013],[15.150510532000055,37.90206836700003],[15.108718530000033,37.82209780200003],[15.104784568000127,37.72359250300008],[15.008187492000047,37.67946144700011],[14.811066587000084,37.76879677700015],[14.700792592000141,37.79482728],[14.50607645499997,37.708734741000114],[14.410432569000022,37.61607045400007],[14.425366439000072,37.468612326000084],[14.303916517000062,37.488681116],[14.295196488000045,37.63827914500007],[14.19375852800016,37.70818991700003],[14.046361587000149,37.67179770500019],[13.824826545000121,37.710130998000125],[13.801396443000044,37.803380007000044],[13.967252514000052,37.85196637900003],[14.023583430000087,37.9225597730001],[14.433374509000032,37.904578244000106],[14.65574153900019,37.936883775000126],[14.895652563000056,38.02887801300005],[15.046588511000039,38.004441580000105],[15.406645567000055,38.10033658700013],[15.40178054300003,38.02691698300015]]],[[[15.627034467999977,40.292804917000126],[15.576765512000065,40.295201135000184],[15.478516531000139,40.211343882000165],[15.307286487,40.22670891600012],[15.193998528000066,40.33022760000006],[15.126889490000167,40.436782209000114],[15.228634563000185,40.45270028100015],[15.141367552000133,40.568314889000135],[15.070076448000066,40.52775033400013],[15.074001524999971,40.45952918500012],[14.9637744690001,40.42467455000008],[14.984642558000019,40.335842469],[14.90451659300004,40.22499280500011],[15.0639274830001,40.142882006000036],[15.122312468000189,40.148489666000046],[15.314732467000056,39.99819661000009],[15.451265455000112,39.99800567000011],[15.593619508000131,40.05583208500019],[15.769921442000168,39.87797413499999],[15.827772500000037,39.63786446000012],[15.869084554000153,39.53738706600012],[15.98352955100006,39.435955309000065],[16.043983525000158,39.250285927],[16.06031951900019,39.09916138600016],[16.152706532000025,38.93373899500011],[16.216417546000173,38.876931652],[16.181489485000043,38.73922301700014],[16.133954538000125,38.70204961200005],[15.988643518000117,38.710754554000175],[15.86873553100014,38.6582273460001],[15.826545557000031,38.60209122600003],[15.923806479000177,38.527762520000124],[15.903461588000027,38.442944868000154],[15.756624559000159,38.25359398699999],[15.626453435000144,38.204109913000025],[15.622621564000099,38.00152266600003],[15.65825957200002,37.951505335000036],[15.790040524000176,37.899813467000115],[16.05752147200002,37.91352307600016],[16.141878454000107,38.01891712700012],[16.161056584000107,38.12465517100003],[16.31711152800017,38.28030761600007],[16.48212655900005,38.33867851900004],[16.58214546300013,38.43273990100016],[16.524557597000182,38.69799059200011],[16.60006345700009,38.79595106800008],[16.738008461000106,38.87678262200012],[16.92335547400006,38.92020121500019],[17.108322452000095,38.89936933600006],[17.163078576000032,38.931412011000134],[17.156381435000014,39.01898865000004],[17.099491447000105,39.106103111000095],[17.140342496000187,39.19596080100001],[17.096492570000066,39.244327064000174],[17.07936448600003,39.387886938000065],[17.002534452000134,39.46008295200005],[16.833538520000104,39.52658798900018],[16.774398494000025,39.59274115400012],[16.613111566000157,39.59974507300012],[16.523626535000062,39.635877446],[16.491235508000102,39.79604220500005],[16.624254468000174,39.934964371000035],[16.607883437,40.06322090100008],[16.668441514000108,40.11750713500004],[16.547466512000028,40.18320331800004],[16.342771551000055,40.13640480600003],[16.19739548700005,40.07772360500013],[16.355554456,40.03448136600008],[16.359598557000027,39.91315281500016],[16.16546445900019,39.82821882200005],[16.120975496000028,39.755420820000154],[16.116931563000037,39.553198688000066],[16.01986543700002,39.59364522700008],[15.906620560000079,39.86461857800015],[15.874264570000093,39.99808177800003],[15.712486462000072,40.13559209700003],[15.627034467999977,40.292804917000126]],[[16.70399050700007,38.973194289000105],[16.56567954899998,38.973194289000105],[16.463062591000096,39.01780965100011],[16.373828514000138,39.09811918000008],[16.338134515000093,39.272120785000084],[16.369367497999974,39.450585250000074],[16.543371449000063,39.52196805200009],[16.637065536000023,39.49519759400005],[16.73522147799997,39.40596888200014],[16.819992527000124,39.24089014900011],[16.83783944300012,39.11150524700014],[16.70399050700007,38.973194289000105]],[[15.960520556000063,38.03403103900007],[15.882848477000039,38.039932905000114],[15.8245404380001,38.11350958600019],[15.864647509000065,38.195366917000115],[16.076753581000105,38.360163348000015],[16.372814471000027,38.768401428],[16.47127350300019,38.693596798000044],[16.42643954100015,38.549547924000194],[16.207565585000054,38.35434530200001],[16.06629548000018,38.11800631000011],[15.960520556000063,38.03403103900007]]],[[[9.234985544999972,41.255132730000184],[9.171100523,41.236619788000155],[9.153758533000087,41.154486692000035],[9.021227568000143,41.12484694200009],[8.797181475000116,40.917631040000174],[8.702985480000166,40.90467613800013],[8.528020459000174,40.80577722400017],[8.315561509000077,40.829580823000185],[8.248568477000163,40.882669283000155],[8.120919468000181,40.71614802400018],[8.19747843100015,40.67369854600008],[8.14481744699998,40.61956536600019],[8.196364476000042,40.55887401600012],[8.272668461000023,40.57998350400004],[8.396955489000106,40.41557264100004],[8.38247742700014,40.33301542100003],[8.478295489000118,40.26176538800007],[8.445162496000023,40.17521536500004],[8.482091485000126,40.06756993500005],[8.405076547000021,40.00789665200011],[8.402484527000183,39.891966213000046],[8.513745575000144,39.894758058000036],[8.548933475000183,39.846636713000066],[8.506854477,39.72151250100006],[8.449195533000022,39.715065308000135],[8.454294580000123,39.52098804000019],[8.388760501999968,39.45866406400006],[8.377446442000178,39.3484624890001],[8.43538148600004,39.30008935200004],[8.365450428999964,39.222759589000134],[8.55033845000014,39.043231126000194],[8.580344490000016,38.94060176200014],[8.64782752700006,38.87879277000019],[8.72015145000006,38.92345892600014],[8.845418490000043,38.86888686900005],[8.994315456000095,38.957332376000124],[9.048111517000109,39.042063191000125],[9.025228586000082,39.131070789000034],[9.090742547000104,39.19488976100007],[9.217883444999984,39.22088237800017],[9.298135474000162,39.20425067100007],[9.457018472000073,39.11112420600017],[9.572969529999966,39.135544713],[9.596144487000174,39.355195671000104],[9.65852445400003,39.463478126000155],[9.660410550000165,39.64061154500013],[9.706030567000084,39.83843083000016],[9.684044499000152,39.95545728600001],[9.742584549000185,40.060280026000044],[9.643833492000056,40.16683044400003],[9.627257440999983,40.2449695630001],[9.69385752900007,40.34196444400004],[9.774804585000084,40.38837386800003],[9.836651464000113,40.514562582],[9.753636592000078,40.580464626000094],[9.763481471999967,40.65640265700017],[9.669564426000079,40.78851637100013],[9.687601444000165,40.84028468100013],[9.54449452900002,40.9030780440001],[9.591219448000118,41.00481406500006],[9.57271455300014,41.09850614000004],[9.447839450000174,41.12638770300015],[9.362249490000067,41.19690230700007],[9.234985544999972,41.255132730000184]]],[[[16.848131581000075,40.355377333000035],[16.951473575000136,40.447676168000044],[17.08244852300004,40.49909076300003],[17.228502516000162,40.45535114200004],[17.214902542,40.39110888300007],[17.525321465000104,40.27110718700004],[17.85309746600018,40.26975719800015],[18.01563447100017,40.08133670800004],[17.97415343800003,40.02716446800008],[18.09473449100011,39.88643516299999],[18.33296058500008,39.780875654000056],[18.390718435000053,39.80277237000007],[18.407381491000137,39.98414703200007],[18.478643594,40.03477523600009],[18.524442481,40.14029585300017],[18.441606478000097,40.2763601260001],[18.23527755000009,40.45419611600005],[18.046972563000168,40.555738011000074],[18.02414344300007,40.621087184000146],[17.658119478000117,40.75659858600005],[17.50644659300019,40.800806252000086],[17.176055439000038,41.00513123600007],[17.063415568000096,41.05165046299999],[16.62125257300005,41.17681340000013],[16.232158592000133,41.321827869],[16.030004522000013,41.19890407400004],[16.227415441000176,41.1809983170001],[16.33232451500004,41.13765666900014],[16.59451648099997,40.971878382000114],[16.434808536000105,40.93095491300011],[16.388103565999984,40.85902544300018],[16.40192649800008,40.77925051200003],[16.274764477000133,40.80121528900014],[16.25332859800011,40.69042949600009],[16.468242439,40.62038125999999],[16.660205456000085,40.48138667400019],[16.750080581000134,40.45669794600008],[16.848131581000075,40.355377333000035]]],[[[14.918853503000037,40.498060459000044],[14.935900450000133,40.64463882300009],[15.070981525000036,40.577447643000085],[15.14276146200018,40.61327038900009],[14.873475556000187,40.715343194000184],[14.7302554850001,40.71722023800004],[14.770675536000056,40.82649108600003],[14.62217553700009,40.83199179400009],[14.593935564,40.93980871700012],[14.482937541000013,40.9742134120001],[14.42301648800003,41.09503921700019],[14.500000581000165,41.15952153400008],[14.387485433000165,41.2571586360001],[14.274674572000094,41.30696625200005],[14.085610519000056,41.437939021000034],[13.906012486000066,41.33086473400016],[13.767183526000167,41.182364399000164],[13.970501508000098,40.96288761700009],[14.027626525000016,40.78835946200019],[14.267979443000058,40.818881156000145],[14.458052508000094,40.700996393000025],[14.370285432000117,40.567360861000054],[14.580636501000185,40.592740593000144],[14.773950514000092,40.636901991000116],[14.918853503000037,40.498060459000044]]],[[[10.450214488000029,42.79640681],[10.277106562000142,42.81467567100003],[10.108312466000143,42.78627191600009],[10.151315485000055,42.72194416200006],[10.245689513000116,42.715650358000175],[10.450214488000029,42.79640681]]],[[[16.699987478000082,42.98333783600003],[16.76258856000004,42.89487120600012],[17.01790652799997,42.91781716899999],[17.02795743500019,42.97649082700008],[16.826387583999974,42.9524351],[16.699987478000082,42.98333783600003]]],[[[9.459997568,42.67515051100003],[9.508728445000145,42.80429585800016],[9.47571950400004,42.98049570000006],[9.362332471000059,43.00442167500006],[9.36565455400006,42.917725136000115],[9.316007536000086,42.83392856800003],[9.345151581000152,42.729658195000184],[9.094448521000118,42.71171723400016],[9.06015949700003,42.65740468100006],[8.715910542000188,42.55812740800013],[8.635933439000041,42.32596679400007],[8.684455439000033,42.2505883390001],[8.570554427000104,42.22660151200006],[8.602639513999975,42.113333166000075],[8.744626439,42.04103673600014],[8.663229442000159,42.004393235],[8.625309545000164,41.89852091300003],[8.778593431000104,41.87836126200011],[8.733807582000054,41.79729166200008],[8.804901543000085,41.64117603300008],[8.781553584000164,41.56368164999998],[8.886352520000116,41.50489014300001],[9.120182473000057,41.43909086200006],[9.104061559000058,41.38922122000008],[9.222011532000067,41.363655576999975],[9.356115446000047,41.565870668000116],[9.422695585000156,41.72105942600007],[9.407787532000043,41.89096798000014],[9.436992429000043,41.96210435400019],[9.580432441000085,42.155344103000175],[9.530044463000081,42.569438283000125],[9.459997568,42.67515051100003]],[[9.090312555000025,42.550791398000115],[9.130857497000079,42.43737804600005],[9.140127547000077,42.29819905800008],[9.23281848800002,42.205243584000186],[9.326550461000124,42.176915769000175],[9.262516577000099,42.08899144800006],[9.333338461999972,41.98387433600004],[9.338912427000139,41.874484967000114],[9.30623054900019,41.72358036700001],[9.130385428000181,41.55496078300007],[9.054971434000038,41.55521274300014],[9.07678651000009,41.66395385500016],[8.86433443400017,41.786037951000026],[8.83494848700019,41.83833733900008],[8.892194539000059,41.92307284800012],[8.783430459999977,41.97839340900015],[8.750346585000102,42.15485895800009],[8.674654479000026,42.20295063100008],[8.719647530000145,42.2598433010001],[8.651267461000145,42.34973150200011],[8.75956349400019,42.40233632600007],[8.754098493000185,42.45843489500015],[8.904342431000146,42.55593419900015],[9.090312555000025,42.550791398000115]]],[[[17.712684494000086,42.84288848700004],[17.268199544000026,43.01304665300012],[17.208509497000136,42.97576193600008],[17.438383527000042,42.86702048900008],[17.656290547000083,42.80402881000009],[17.71509546500016,42.818493795999984],[17.712684494000086,42.84288848700004]]],[[[16.55715146600005,43.226035843000034],[16.384277561999966,43.179488787000025],[16.60644543800015,43.118648072000155],[16.67848957200016,43.16459196600016],[16.55715146600005,43.226035843000034]]],[[[16.43366055100006,43.378892923000194],[16.41020345900006,43.303797441000086],[16.50451244300001,43.26159942000015],[16.639938517000132,43.249754617],[16.854015510000124,43.269148329000075],[16.804872579000175,43.34610224700009],[16.43366055100006,43.378892923000194]]],[[[14.868398469000113,44.15199675700012],[15.135762573000079,43.87933428500003],[15.196358536000162,43.901818069000115],[15.01529953700009,44.02028688300015],[14.868398469000113,44.15199675700012]]],[[[14.804683432000104,44.612945106000154],[14.885586568000065,44.50628220300001],[15.016849518000129,44.38845024600005],[15.03325843500005,44.50477899200007],[14.924128570000107,44.587706860000026],[14.804683432000104,44.612945106000154]]],[[[14.406365502000085,44.98115490400005],[14.306514572000026,44.880556811000076],[14.320468597000058,44.80146282599998],[14.453619487000026,44.608538907000025],[14.406365502000085,44.98115490400005]]],[[[14.591862552000066,45.160071824000056],[14.529921461000129,45.15851195200014],[14.425179522000121,45.08174780100012],[14.518852487000174,45.01709667300014],[14.710270513000125,44.93825481500005],[14.773391441000115,45.0062518310001],[14.664894577000041,45.12755490200004],[14.591862552000066,45.160071824000056]]]]},"properties":{"objectid":760,"eco_name":"Tyrrhenian-Adriatic sclerophyllous and mixed forests","biome_num":12,"biome_name":"Mediterranean Forests, Woodlands & Scrub","realm":"Palearctic","eco_biome_":"PA12","nnh":3,"eco_id":806,"shape_leng":91.8570707371,"shape_area":8.94010589849,"nnh_name":"Nature Could Recover","color":"#B02745","color_bio":"#FE0000","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":85190.5307448539,"percentage":2.5788790281951486}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-54.082252579999874,-28.16319800699995],[-54.302082574999986,-28.18698618299993],[-54.37134157099996,-28.249849450999875],[-54.18556959499995,-28.277140256999928],[-54.02005349399997,-28.206989259999943],[-54.082252579999874,-28.16319800699995]]],[[[-58.07823557099988,-32.98143094799991],[-58.105483629999924,-33.07216002099989],[-58.17392354599991,-33.11705768499996],[-58.3103675189999,-33.11025711199994],[-58.360389542999826,-33.15166388099988],[-58.34675553999989,-33.32213368699996],[-58.429626577999954,-33.51248905599988],[-58.41500049199993,-33.90909187999995],[-58.23121653599998,-34.06903720099996],[-58.207744524999896,-34.164909744999875],[-58.10976460299986,-34.17209236499991],[-57.99289656499991,-34.27004764499998],[-57.85629652099993,-34.48298989499989],[-57.766529522999974,-34.481650969999976],[-57.61392959999995,-34.43845432899997],[-57.126472476999936,-34.45938863499998],[-57.044189511999946,-34.54556029899982],[-56.81542558199993,-34.69518850299988],[-56.63907955899998,-34.7279324079999],[-56.553260604999934,-34.76802053599994],[-56.449043540999924,-34.760600539999984],[-56.38454462799996,-34.853665313999954],[-56.25726660199996,-34.910525965999966],[-56.14673260099994,-34.918521630999976],[-56.018897512999956,-34.88164142499994],[-55.89719060199997,-34.81355120199993],[-55.782443520999834,-34.778625319999946],[-55.60317958999997,-34.777984103999984],[-55.53380961799985,-34.80096661199997],[-55.329006530999834,-34.81587432999993],[-55.23268555599998,-34.90693985199988],[-55.05412654299994,-34.88647141199988],[-54.92100549199989,-34.959825637999984],[-54.44131051299996,-34.76410668999989],[-54.190006471999936,-34.674733808999974],[-53.98323061999997,-34.50857448099998],[-53.78885663199998,-34.4092650209999],[-53.75247162799997,-34.26376507299989],[-53.627952588999904,-34.13466046199994],[-53.53871147199993,-34.0703881959999],[-53.47393059199993,-33.846647539999935],[-53.3955235869999,-33.76636868899993],[-53.41602354299994,-33.71600116199994],[-53.2333066029999,-33.55409900199987],[-53.116817594999986,-33.490833737999935],[-52.95348347099991,-33.35415389899998],[-52.70835454499996,-33.10400018899992],[-52.64759848699998,-33.00614096599992],[-52.48155952299993,-32.66696457199993],[-52.46632759299996,-32.534689757999956],[-52.358207579999885,-32.277155781999966],[-52.246402546999946,-32.15472366999995],[-52.161674581999875,-32.125717757999894],[-52.22611247399993,-32.039348615999984],[-52.23055655899992,-31.978011692999928],[-52.14841860199988,-31.944639480999854],[-52.219974573999934,-31.8695542239999],[-52.22195052399991,-31.754131058999974],[-52.137100517999954,-31.69328296799995],[-52.054244566999955,-31.67450750499995],[-52.00614551799998,-31.603527871999972],[-52.002475585999946,-31.44685937299994],[-51.91519147499997,-31.31117681199993],[-51.84402861399991,-31.32338337799996],[-51.780326484999875,-31.273203269999897],[-51.65366754599995,-31.273350288999893],[-51.61091648699988,-31.136416812999926],[-51.46839848499991,-31.097931136999932],[-51.500621537999905,-30.93309296399991],[-51.400871525999946,-30.788780060999898],[-51.374542626999926,-30.633582752999928],[-51.300598482999874,-30.639333576999945],[-51.25700353399998,-30.46436570599991],[-51.173255579999875,-30.38129786099995],[-51.28751349299995,-30.300621706999948],[-51.32398650699997,-30.232041142999947],[-51.25885761099994,-30.11803049599996],[-51.13119150199998,-30.260385218999943],[-51.020957572999976,-30.294845905999978],[-51.05249750099995,-30.353618636999897],[-50.93436061099993,-30.418268423999905],[-50.898517580999965,-30.324139818999925],[-50.78850962799993,-30.288232080999876],[-50.66142254099992,-30.291388202999883],[-50.65924458799992,-30.199514329999943],[-50.60135262599988,-30.192240848999973],[-50.534465541999964,-30.27653446499994],[-50.569248595999966,-30.46960255199997],[-50.695423563999896,-30.434193704999984],[-50.68663446799991,-30.700608306999982],[-50.733520486999964,-30.802138467999953],[-50.87942159399995,-30.886318591999952],[-50.965167624999935,-30.903738197999928],[-50.95524948699989,-31.000671722999982],[-51.09732861299989,-31.09032942099998],[-51.17534250699998,-31.077357922999965],[-51.154045598999915,-31.229501703999972],[-51.17994350099997,-31.375710760999937],[-51.23350956199994,-31.455922891999876],[-51.34463146999997,-31.52556946699997],[-51.43494446499983,-31.490003710999872],[-51.587253535999935,-31.697838867999963],[-51.702342598999905,-31.778533963999962],[-51.80364259299995,-31.78279482099998],[-51.87052950999998,-31.867948251999962],[-52.047424546999935,-31.813547855999957],[-52.08718863099995,-31.864171365999937],[-52.01814655999988,-31.927726308999866],[-52.03554956999989,-32.03457964899991],[-51.9346505659999,-31.998072939999872],[-51.82406660899983,-31.910714900999892],[-51.45979362299988,-31.724288800999943],[-51.21203646699996,-31.53998114399991],[-51.05422551399994,-31.37669462899987],[-50.90100046799989,-31.253082008999968],[-50.68299454299995,-30.82736481099994],[-50.47414349899992,-30.59740779999987],[-50.387988598999925,-30.42750092299997],[-50.31501356999996,-30.331487730999868],[-50.288383592999935,-30.19735045799996],[-50.18460859099997,-29.927828683999962],[-50.29033657699995,-29.874781630999905],[-50.43817155599987,-29.886239021999927],[-50.51908860499998,-29.81627058199996],[-50.669242521999934,-29.809840823999878],[-50.81517061799991,-29.906271267999898],[-50.92452662699992,-29.845194685999957],[-50.975105544999906,-29.714122506999956],[-51.056278577999876,-29.73211577099994],[-51.08536562599994,-29.628855752999982],[-51.17085248899997,-29.63890548699993],[-51.35508755899997,-29.604270792999955],[-51.76776452699994,-29.602176993999876],[-51.845790489999956,-29.663165396999887],[-51.81594856799995,-29.771174266999935],[-51.875850509999964,-29.794868565999934],[-51.93550149699996,-29.70039412299991],[-52.06649756799993,-29.70095302899989],[-52.11895755299997,-29.647461063999913],[-52.21031560399996,-29.778605158999937],[-52.350151564999976,-29.792904517999943],[-52.353919565999945,-29.901977385999885],[-52.20206060299995,-29.886181018999935],[-51.89264247899996,-29.89747462799994],[-51.73652651499998,-29.948677662999955],[-51.891021586999955,-30.088957361999974],[-51.897048509999934,-29.949222653999925],[-51.99755859399994,-29.95692847299989],[-52.213249604999874,-30.037907547999964],[-52.17431247999997,-30.081503670999894],[-52.19831456299994,-30.17854616099993],[-52.27868259699994,-30.163659732999918],[-52.2697865479999,-30.052146892999815],[-52.38502162399993,-30.059978439999952],[-52.40963759699997,-30.18108922999994],[-52.55503847199992,-30.095543190999877],[-52.61448259399998,-30.141831580999963],[-52.83988957199989,-30.07866572599994],[-52.86234653499986,-30.161788891999947],[-52.97032154099992,-30.23430727499988],[-52.96039552399992,-30.089560523999864],[-53.11463947399989,-30.25593442899998],[-53.152748466999924,-30.184512063999875],[-53.05528252299996,-30.07108613899993],[-53.102287565999916,-30.0113503259999],[-53.254898553999965,-30.10182592999996],[-53.27448655799992,-29.9772115049999],[-53.5257225389999,-30.10725187199995],[-53.61833955199995,-30.069980229999885],[-53.613334549999934,-30.006809681999982],[-53.732055490999926,-29.98140262399994],[-53.82766350199995,-30.03350570799995],[-53.91268148199998,-30.03030868299993],[-54.07989156499997,-30.093678217999923],[-54.098594608999974,-30.02513604199993],[-53.8185045969999,-29.916359893999925],[-53.87533155299997,-29.86683776599989],[-53.761020498999926,-29.827063455999905],[-53.75033558399997,-29.776410105999958],[-53.908294560999934,-29.69991098999992],[-53.968769489999886,-29.597644897999885],[-54.09434163099996,-29.596117212999957],[-54.280158533999895,-29.484032223999918],[-54.40163460699989,-29.55556673899997],[-54.46849453399989,-29.508212505999893],[-54.60890147099991,-29.47885053199991],[-54.658428627999854,-29.519525057999942],[-54.73887662599998,-29.43547921199996],[-54.827678531999936,-29.405368397999894],[-54.93002358099983,-29.4464149129999],[-55.04739352699988,-29.45080166599996],[-55.111385502999894,-29.390502086999902],[-55.151996493999945,-29.291017948999922],[-55.09443259999995,-29.25506008699989],[-55.03160453599992,-29.334862007999902],[-54.96273747899994,-29.361831116999895],[-54.892837602999975,-29.263751952999883],[-54.83243559699997,-29.250591358999884],[-54.64764061599993,-29.27856528999996],[-54.424930597999946,-29.20947393299997],[-54.40363352299988,-29.296383539999965],[-54.3514176189999,-29.34159669899998],[-54.259773577999965,-29.309419243999912],[-54.16584747999997,-29.327611493999882],[-54.06013156399996,-29.402908644999968],[-54.00661462099987,-29.498441888999878],[-53.77555857499988,-29.499265662999846],[-53.690040530999966,-29.540207068999905],[-53.648723615999984,-29.502759742999956],[-53.5589256049999,-29.301510414999882],[-53.495826469999884,-29.295715669999936],[-53.372604613999954,-29.22560239099988],[-53.224506610999924,-29.02177026399994],[-53.188548580999964,-29.12654220899998],[-53.03248961399993,-29.11045783999998],[-52.94256553899993,-29.042996594999977],[-52.92083361099992,-28.982828946999916],[-53.1144066249999,-28.838124608999976],[-53.12303160299996,-28.769479503999946],[-53.19218448299989,-28.602346198999953],[-53.18101157399997,-28.358884097999976],[-53.09079748499994,-28.275441580999882],[-53.00788856099996,-28.34010896999996],[-52.87618254199998,-28.374882300999843],[-52.62174249499998,-28.366271906999884],[-52.48811350099999,-28.267537948999916],[-52.384181588999866,-28.21883188299995],[-52.30838051899991,-28.222462587999928],[-52.23534363199997,-28.290373940999928],[-52.148754547999886,-28.200685397999905],[-52.13766461999995,-28.083346296999878],[-52.21656062499994,-27.996142987999974],[-52.22130159699998,-27.83680971399997],[-52.280712526999935,-27.707704097999965],[-52.33560946599988,-27.697767686999896],[-52.477107558999876,-27.77161543899996],[-52.541267507999976,-27.757255226999916],[-52.63573055099988,-27.461390807999976],[-52.802371502999904,-27.435718882999936],[-52.85433561499997,-27.47139829799994],[-52.824680608999984,-27.749500289999958],[-52.771839582999974,-27.85606193999996],[-52.813182481999945,-27.904112875999886],[-52.804889593999974,-27.999140859999955],[-52.71835348499991,-27.978645932999882],[-52.74193546699996,-28.091670197999917],[-52.86609257499998,-28.079787675999967],[-52.90851556599995,-28.015398398999935],[-53.04481855599994,-28.071330838999984],[-53.14665247699992,-27.974932078999927],[-53.23226959399989,-27.938918393999984],[-53.20343752399998,-27.81094668099996],[-53.24245058899993,-27.627049736999822],[-53.356231571999956,-27.545658942999864],[-53.527065487999835,-27.555926605999957],[-53.6352275779999,-27.68990395299994],[-53.70910651099996,-27.855316117999905],[-53.874999629999934,-27.876532055999917],[-53.903404558999966,-27.769156523999982],[-53.9785045669999,-27.779547065999964],[-53.985885503999896,-27.85882863799992],[-54.07008758799992,-27.934711516999982],[-54.17832947499994,-27.789465706999977],[-54.23119346699991,-27.675494622999906],[-54.31377046899996,-27.700724486999945],[-54.30027359299993,-27.86689052099996],[-54.4046705319999,-27.989869300999942],[-54.300743481999916,-28.119288065999854],[-54.21412657099995,-28.084819499999924],[-54.05706060199998,-28.059563316999913],[-53.93758746899988,-28.103577528999892],[-53.65693653999995,-28.02074102399996],[-53.62911951799998,-28.144136887999878],[-53.47804258599996,-28.14012799199992],[-53.43741952499994,-28.294212684999934],[-53.49513261599992,-28.382540174999917],[-53.65072655499995,-28.376286269999923],[-53.73946760799993,-28.325099495999893],[-53.810291504999896,-28.422694520999983],[-53.806430632999934,-28.531612993999943],[-53.913284475999944,-28.549455215999956],[-54.003238557999964,-28.62430812599996],[-54.11268659999996,-28.585818761999917],[-54.185749470999895,-28.465281796999932],[-54.301010529999985,-28.383138977999977],[-54.40912249599995,-28.39946340499995],[-54.45383458599997,-28.457377997999913],[-54.568805630999975,-28.459887874999936],[-54.6676525769999,-28.321045503999926],[-54.73064760899996,-28.2976224439999],[-54.72336960199988,-28.17251985599995],[-54.84427252099988,-28.19551661399987],[-54.824191491999954,-28.327229504999934],[-54.898769475999984,-28.314162787999976],[-54.94223048199996,-28.181498215999966],[-55.031913492999934,-28.202904422999836],[-55.1831855559999,-28.199465662999955],[-55.2411915109999,-28.135636129999966],[-55.360301539999966,-28.07444370999997],[-55.45480347499995,-28.098162651999928],[-55.61250261299995,-28.119607750999933],[-55.67861152199998,-28.19377183699993],[-55.768890486999965,-28.2282194469999],[-55.691390571999875,-28.29098984399991],[-55.73555750199995,-28.360157140999945],[-55.87333654399998,-28.354599100999906],[-55.89972663099991,-28.471262619999948],[-56.01833357899994,-28.505981133999967],[-56.02139246999997,-28.597644453999976],[-56.11083961499992,-28.66041987899996],[-56.18722557499996,-28.75346990099996],[-56.28139458099997,-28.776527175999888],[-56.325561510999876,-28.92207741599998],[-56.39278454199996,-28.950409253999908],[-56.43117550299996,-29.071765298999935],[-56.51500660399995,-29.09096069499998],[-56.62499946999992,-29.172622559999922],[-56.69889047299989,-29.3456728189999],[-56.7791674799999,-29.390671065999925],[-56.82972762299994,-29.486222247999933],[-56.96805551199992,-29.598441849999915],[-56.970283589999895,-29.63066188599987],[-57.10111252599995,-29.759263916999885],[-57.274169489999906,-29.79843322199997],[-57.31597154999997,-29.860930870999937],[-57.322814534999964,-29.973460938999835],[-57.53361554499992,-30.161471720999828],[-57.62751062999985,-30.184512063999875],[-57.62583961399997,-30.283969212999978],[-57.66889158299995,-30.352857895999932],[-57.87833355099991,-30.506463311999937],[-57.889724556999965,-30.602566860999957],[-57.81222547999988,-30.716454629999873],[-57.81361352299996,-30.910334923999926],[-57.89972651499994,-30.926720370999874],[-57.852226604999885,-31.038943157999938],[-57.91278049099992,-31.154772342999877],[-57.90778353499991,-31.23310240199993],[-57.975006565999934,-31.323656292999885],[-57.991393521999896,-31.404483822999964],[-58.07917048899998,-31.45948385999992],[-58.00666853499996,-31.52670655599991],[-57.97917153399993,-31.60836691299994],[-58.03722358999994,-31.784473883999908],[-58.18138863599995,-31.85492444999994],[-58.20361358799988,-31.88974857599993],[-58.14049953299991,-32.01030347799991],[-58.17970655599993,-32.13869143599993],[-58.09603152499989,-32.249893641999904],[-58.10416750299993,-32.316938473999926],[-58.19216156099992,-32.399683951999975],[-58.198413622999965,-32.48918926699997],[-58.13498658799995,-32.652758921999975],[-58.13957953599993,-32.759986597999955],[-58.07823557099988,-32.98143094799991]]]]},"properties":{"objectid":766,"eco_name":"Uruguayan savanna","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Neotropic","eco_biome_":"NO07","nnh":3,"eco_id":574,"shape_leng":59.1795082605,"shape_area":33.4990414479,"nnh_name":"Nature Could Recover","color":"#E69800","color_bio":"#FEAA01","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":353572.5628310826,"percentage":1.6492014688553789}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[132.8559722980002,-14.773215383999911],[132.69686885500005,-14.755592263999972],[132.62319947000015,-14.787815987999977],[132.49072265200016,-14.910765599999934],[132.29180902600024,-14.936798114999874],[132.00186156100006,-14.933716759999982],[131.75225820700007,-15.002136223999969],[131.72625737600015,-14.962959374999969],[131.6069183530003,-14.917827519999832],[131.43148796900016,-14.978055014999939],[131.32025139600012,-15.138951346999932],[131.28120413300007,-15.32123946799993],[131.30401615300002,-15.413610387999938],[131.397689957,-15.647292148999838],[131.35652156800018,-15.785573936999981],[131.29411293400028,-15.860549893999973],[131.20742796200034,-15.908518854999897],[130.77520758100002,-16.040565513999923],[130.67718507900008,-15.975950259999934],[130.6897735250003,-15.888841666999951],[130.743514935,-15.76762694099989],[130.70912163900016,-15.685499209999875],[130.5836182290002,-15.669624388999921],[130.42616267000017,-15.70417878399985],[130.30343618400025,-15.849446385999954],[130.2885589760001,-16.07054908999993],[130.24575812900002,-16.302232771999968],[130.34431455900005,-16.52388381999998],[130.56375127500007,-16.712326102999896],[130.63571159000003,-16.870374766999873],[130.61090082200008,-16.941473086999906],[130.4851226530002,-17.000080191999928],[130.1525421460002,-16.96599602099991],[129.97250372700012,-17.006278944999963],[129.81973264600015,-17.01952553599989],[129.58805851800003,-16.912750315999972],[129.51679993500022,-16.76658065299989],[129.5212706750001,-16.666648920999933],[129.59710711700006,-16.43561366199998],[129.59065238100027,-16.30961035599995],[129.4912872650001,-16.143463096999824],[129.4029693320001,-16.083801213999948],[129.17193960500015,-16.02203278999997],[129.06840516300008,-16.057695440999908],[128.96769709900002,-16.12276080299995],[128.83409123900003,-16.299737982999943],[128.70933532700008,-16.429237380999894],[128.61703498300005,-16.552207946999886],[128.50183108800024,-16.61505126599991],[128.472946212,-16.484281506999935],[128.52629082300018,-16.317806179999934],[128.44389336200015,-16.301921802999914],[128.38525390300015,-16.487846329999968],[128.32749940500025,-16.451736420999964],[128.25762936800004,-16.628410342999928],[128.27847281400022,-16.670902400999978],[128.17755118000002,-16.75992005699993],[128.17172223700027,-16.883315920999962],[128.23980709600005,-16.86257741599991],[128.3453826980001,-16.996988273999875],[128.31983951900008,-17.09735485899995],[128.26324457300007,-17.13900755499992],[128.16250616700017,-17.379690382999968],[128.07336445900012,-17.481636118999972],[127.92910771400011,-17.762697257999832],[127.82019812600015,-18.019088778999958],[127.82748418000006,-18.13950152399991],[127.60559843800002,-18.305803176999916],[127.44613641900003,-18.47537226299994],[127.38137062600015,-18.56580931099984],[127.28503422800009,-18.593772848999947],[127.20030207200023,-18.661012643999925],[127.2159653340002,-18.749473572999932],[127.09021750800002,-18.847389289999967],[126.94692233500018,-18.805658139999935],[126.96272272600015,-18.737564061999933],[126.79982764600027,-18.708980598999972],[126.67616272300006,-18.77087206899995],[126.62348179100024,-18.756759625999962],[126.55910491800023,-18.652606934999937],[126.4201964990001,-18.688346867999883],[126.3595656660001,-18.627120919999868],[126.20323948500004,-18.58250421699995],[126.1464386790002,-18.53857985899998],[126.14369964000014,-18.425647795999964],[126.05712111900004,-18.393808298999943],[125.95967110000015,-18.442949216999978],[125.82509612500019,-18.38082690999994],[125.76602164500014,-18.326004065999882],[125.71056362100023,-18.409439038999892],[125.6166762470001,-18.45046426399989],[125.56927490700014,-18.420423522999954],[125.39311965700017,-18.55034251899997],[125.27157585800012,-18.58248711799996],[125.12667085700014,-18.53657725499994],[124.96047967800007,-18.548442844999897],[124.94226831700007,-18.612916947999963],[124.81996914100012,-18.72792822499997],[124.84188077700003,-18.803192183999897],[124.74182130500014,-18.91599466399998],[124.79085543900021,-18.97334297499998],[124.73211673700007,-19.068615038999894],[124.76696014200013,-19.11663814699989],[124.8756256490002,-19.162555721999865],[125.04530336500011,-19.265338976999885],[125.36598207200018,-19.346918028999937],[125.5028533540002,-19.302120277999904],[125.77574917900017,-19.31149677699983],[125.89017489800005,-19.27872085399997],[126.07909394300009,-19.27749256999988],[126.17906959600009,-19.19998930099996],[126.29249568900025,-19.191493906999938],[126.3672485190001,-19.25200655499998],[126.54590610400021,-19.253751834999946],[126.56618494500003,-19.321661007999978],[126.68591305600012,-19.327385009999944],[126.78652958900034,-19.360157077999872],[127.0804061550001,-19.34486194899995],[127.33006281700011,-19.295536124999956],[127.48733514900005,-19.293201429999954],[127.51929467600019,-19.401838270999974],[127.64909364300001,-19.474748591999912],[127.7169875620001,-19.478202773999897],[127.72709664100012,-19.38523489399995],[127.92285917400011,-19.267270838999934],[128.02607728300018,-19.16164025199987],[128.20216363400004,-19.14706797799994],[128.23628233800002,-18.915147757999875],[128.34881592600016,-18.774360617999832],[128.46626281800002,-18.747364015999892],[128.53800956300006,-18.675026180999964],[128.66839593400005,-18.619905443999983],[128.76890568200008,-18.677419716999964],[128.95236224100006,-18.692552572999887],[129.00051999800007,-18.652488136999978],[129.10540774600008,-18.6414489469999],[129.2673187910002,-18.671842565999896],[129.41215506000003,-18.661548582999956],[129.57490530100017,-18.567283687999975],[129.87199398000007,-18.2706280189999],[129.98761009600014,-18.200017859999946],[130.14070120000008,-18.152967387999865],[130.25271611500023,-18.158706644999825],[130.44197077200022,-18.213468635999902],[130.72145074900016,-18.271274598999923],[131.34124756200004,-18.372955299999944],[131.64193727500003,-18.37128260699984],[132.2151489790001,-18.37593070799994],[132.36535637200018,-18.39409060299994],[132.68576048800014,-18.466512761999923],[132.86830140900008,-18.451881478999894],[133.1094055120002,-18.23625584699988],[133.3796080630001,-18.068218300999945],[133.25869743300018,-17.979246075999924],[133.24821469000028,-17.91343120399989],[133.29330446800031,-17.77680970299997],[133.42544550600007,-17.637704810999935],[133.3938598130003,-17.48329925899992],[133.21475212000007,-17.346448930999827],[133.18855263800015,-17.257826062999925],[133.20452871400005,-17.161676412999896],[133.08091726600014,-17.10830112399998],[133.11529547500004,-17.034976905999883],[133.0233612520003,-16.984155750999946],[133.03669736300003,-16.91332816599993],[133.18658439900014,-16.88705827599989],[133.2838897460001,-16.834047263999935],[133.32862848900015,-16.77082642399995],[133.39166258100022,-16.775932343999955],[133.37315366200005,-16.94294545299988],[133.446685752,-17.22390366299993],[133.50198368100007,-17.3150214879999],[133.54681395600005,-17.46687508699989],[133.65498358900015,-17.525028227999883],[133.7552184110001,-17.519859443999962],[133.89750691700033,-17.4563465789999],[133.91044639700021,-17.34748644399997],[133.95249941100008,-17.304367082999875],[134.1318511840002,-17.35954280499982],[134.24029540900005,-17.455333708999945],[134.3132934040001,-17.645765352999945],[134.50303655800008,-17.466980028999956],[134.5168609990002,-17.328445441999975],[134.7081908470002,-17.389186914999982],[134.80773919000012,-17.318592011999954],[134.96688839700016,-17.365236296999967],[135.0212554340003,-17.291843346999883],[135.0904693340001,-17.31630894999995],[135.17176826300022,-17.40458497399993],[135.2758941310001,-17.329895008999813],[135.31616213600012,-17.435123432999887],[135.3968047620001,-17.491195681999955],[135.54045096800007,-17.41730115899992],[135.61640928400027,-17.353645465999932],[135.43493655400016,-17.168602044999943],[135.43403616900002,-17.08536153299997],[135.48762519700006,-16.988422475999982],[135.48608393300003,-16.851154393999877],[135.42419430600023,-16.736412006999956],[135.302581776,-16.69962115199985],[135.02670283200018,-16.73036362499994],[134.87416074400016,-16.716890386999978],[134.7462005980003,-16.66922183199989],[134.71801762200005,-16.56680302199993],[134.64775078600007,-16.447551674999886],[134.49453730800008,-16.309087661999968],[134.37886050600014,-16.229255734999924],[134.1272582360001,-16.080911638999964],[133.98170464300006,-15.93110372699988],[133.89682010400008,-15.59365366999998],[133.7363433700001,-15.371580172999927],[133.669494675,-15.314256672999932],[133.59432979100018,-15.19536205899982],[133.48818975000017,-15.111233566999829],[133.4583436370001,-15.002037149999978],[133.327819803,-14.99532408399989],[133.19445802300004,-14.933683399999893],[133.1214600290001,-14.93444078799996],[132.97256473800007,-14.861936655999955],[132.8559722980002,-14.773215383999911]]]},"properties":{"objectid":774,"eco_name":"Victoria Plains tropical savanna","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Australasia","eco_biome_":"AU07","nnh":2,"eco_id":189,"shape_leng":41.4238177507,"shape_area":19.0305931005,"nnh_name":"Nature Could Reach Half Protected","color":"#FBCA49","color_bio":"#FEAA01","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":225227.00181663147,"percentage":1.0505473027875678}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[3.493012381000028,27.008361004000108],[4.208021156000086,26.878359408999984],[5.011206194000067,26.83587317700011],[5.20477728600008,26.837950694000142],[5.984768030000112,26.943700903000035],[7.907596568000031,26.973854684000173],[8.318816405000064,26.989172476000135],[8.721540180000034,27.01891573900008],[8.880369203000043,27.09267903000017],[9.116530707000038,27.275302662000115],[9.278093061000163,27.443718133000118],[9.377393285000096,27.520888436],[10.279311012999983,27.956181435000076],[10.390074705000075,28.048031625000192],[10.65314102100001,28.317593406000128],[10.734334328000102,28.437759501000187],[10.831201179000061,28.663782153000113],[10.829937396,28.783429227000113],[10.633654627000112,29.106792353000174],[10.250422217,29.541988479999986],[9.908107700000187,29.85264771700008],[9.285758358000123,30.57450276900005],[8.929918085999986,30.819394455000065],[8.743206238000027,30.91214160000004],[8.596571201000188,30.947384667000108],[8.243054116000167,30.97021134900018],[8.05159146300008,31.007943171000193],[7.858873235000146,31.135204001999966],[7.623210723000057,31.378853511000045],[7.547067971,31.41395056100015],[7.313285927000095,31.449642476000065],[6.643988161000038,31.468678164000153],[6.06399454100017,31.468678164000153],[5.069974705999982,31.457970589000126],[4.58885586700012,31.44715237100013],[3.138283647000037,31.440451808000034],[2.776605574000143,31.412493141000027],[2.546313063000184,31.335739032000106],[1.802991640000016,31.038410463000048],[0.897112847000017,30.41859865700019],[0.381748254000115,30.076328590000116],[-0.16696157899986,29.698638597000183],[-0.585641308999925,29.42646843800003],[-0.82726435099994,29.293061802000068],[-1.098493472999905,29.175480534000087],[-1.309375307999915,29.114493897000045],[-1.461924866999937,29.090539354000157],[-1.658798194999918,29.088943226000083],[-1.832673346999968,29.121222073000183],[-1.944678066999927,29.16099501800005],[-2.212008572999935,29.301022283000123],[-2.718340155999954,29.629073081000058],[-3.044476067999938,29.791020795000065],[-3.151534626999933,29.820423828000116],[-3.954371445999925,29.992460290000167],[-4.148801439999886,29.99695521400008],[-4.801350268999954,29.92959731000019],[-4.996287434999942,29.90118135300014],[-5.118787892999876,29.859581973000047],[-5.210293094999884,29.776295016000176],[-5.868841378999889,28.892326876000027],[-6.072356097999887,28.589290418000132],[-6.180996106999942,28.46032528500018],[-6.721927248999862,28.271582766000108],[-7.179353896999942,28.071458608000114],[-7.317490579999969,27.98902374300019],[-7.529274415999964,27.75121859600017],[-7.894099523999955,27.379129830000124],[-7.969286205999936,27.25832700700016],[-8.053043233999915,27.05845228300018],[-8.153932379999958,26.715809898000032],[-8.224786521999874,26.433714206000104],[-8.240311572999929,26.247157534000166],[-8.231715794999957,26.121540625000137],[-8.19441306799996,25.999984808000193],[-8.101504912999872,25.90334744300003],[-7.920789055999876,25.881297897000138],[-7.569661190999909,25.91952586100018],[-7.453369189999933,25.91785073700015],[-7.299359844999969,25.87508905700014],[-6.896987914999954,25.64313316300013],[-6.761389964999978,25.595222328000034],[-6.454192975999945,25.537208400000168],[-6.180731599999888,25.51842340600001],[-5.388162117999968,25.51565448800011],[-4.961023092999937,25.487728663999974],[-4.365344016999927,25.434841972000186],[-3.787034419999941,25.398454794000088],[-3.376446292999901,25.40070042800005],[-3.146219121999934,25.41744804500013],[-2.857487491999962,25.460094095000102],[-2.505316084999833,25.55473507900001],[-2.366686143999914,25.60949136800008],[-1.382047447999867,26.163350634000153],[-1.192919340999879,26.294285477000187],[-0.894955949999883,26.521153284000093],[-0.63017889799994,26.696513533000086],[-0.393620505999877,26.803897356],[-0.130285415999879,26.880490037000072],[0.107764008000061,26.9241498990001],[0.372722211000166,26.95443368400015],[0.997523321000187,26.995470978000128],[1.351524079000171,27.02959426900003],[2.124898794000046,27.15097726600004],[2.634072711000044,27.211589993000075],[2.887070755000082,27.218701894000105],[3.099356165000074,27.201024185],[3.225086355000144,27.173248395000087],[3.364730056000099,27.1153238120001],[3.493012381000028,27.008361004000108]],[[0.185649931,29.082640087000186],[0.125639972000158,28.958330034000085],[-0.00344004599998,28.845310254000083],[-0.139680028999976,28.839099917000055],[-0.136290059999965,29.006510220000052],[-0.022020009999949,29.030740072000015],[0.106020082000043,29.191799926000158],[0.212739932000147,29.365850053000088],[0.289040011000168,29.33004002300015],[0.155229985000176,29.14314994300014],[0.185649931,29.082640087000186]],[[-7.232560017999958,27.781670000000133],[-7.45906004699998,27.76305007900004],[-7.453889988999947,27.81872994800017],[-7.162739937999902,27.94320000300013],[-7.070130200999927,27.916980069000147],[-7.113700071999972,27.853209971000126],[-7.232560017999958,27.781670000000133]]]},"properties":{"objectid":779,"eco_name":"West Sahara desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Palearctic","eco_biome_":"PA13","nnh":2,"eco_id":845,"shape_leng":46.0992053073,"shape_area":68.5239422863,"nnh_name":"Nature Could Reach Half Protected","color":"#F7B152","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":746350.8224279038,"percentage":2.828996161022594}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[11.331450033000124,15.944130087000076],[11.40581002,15.965040026999986],[11.459929999000167,16.027770022000084],[11.44044001200001,16.243230079000057],[11.537529985000162,16.31133994900017],[11.524409985000148,16.392709931000184],[11.427590026000132,16.430190039000138],[11.304119940000021,16.33900993600014],[11.297680074000084,16.10790997700019],[11.24175993900019,16.099910046000048],[11.233760007000171,15.961459957000102],[11.331450033000124,15.944130087000076]]],[[[9.081282236999982,17.97534866000018],[9.126649979000092,18.043749937000143],[9.025640041000088,18.109299949000047],[9.066330048000168,18.20530000700012],[9.110099877000152,18.205590088000065],[9.157809913000108,18.098110008000106],[9.198700056,18.102060072000086],[9.355739966000044,18.247530013000187],[9.401440030000117,18.373179930000106],[9.501260073000026,18.251480077000167],[9.533729948000143,18.32779001299997],[9.691689914000051,18.30013006000013],[9.736400042000128,18.346579969],[9.680350004000047,18.430940002000057],[9.701880062000157,18.60384001500006],[9.647359989999984,18.69826997500013],[9.567949990000159,18.731149977000143],[9.601170062000051,18.79024005600013],[9.544110021,18.871369947000062],[9.502640069000165,18.988480079000112],[9.418610073000139,19.04249004600007],[9.37663001499999,18.939209802000164],[9.31938004900013,18.896780013000182],[9.234980059000065,18.915819917000135],[9.225329941000098,19.042909853000083],[9.082200009000076,19.110769951000123],[9.038010020000172,19.0684999880001],[8.929830084000173,19.104730002000167],[8.986969862000024,19.188390004000098],[8.981839936000085,19.27729997700004],[8.876850011000045,19.2950799300001],[8.747470054000189,19.403110073000164],[8.578170002000093,19.381149998000126],[8.461179739000045,19.298749946000157],[8.414189977000035,19.23524000600014],[8.40722997100005,19.119169800000122],[8.49666994100005,18.98570002000008],[8.572619916000065,18.92097008500008],[8.549140085000033,18.80329],[8.420279916000027,18.820169963000183],[8.315979988000151,18.7919400560001],[8.282729993000146,18.731010041000104],[8.173999995000145,18.732120023000107],[8.220640005,18.63066000200007],[8.335509932000093,18.645750017000125],[8.422139743000173,18.694599959000016],[8.569369884000082,18.690120074],[8.628309993000073,18.663450056999977],[8.683510030999969,18.540420021000045],[8.615100047000055,18.521780035000177],[8.641737678000084,18.437589981000087],[8.432179921000113,18.350910060000103],[8.38319004400006,18.29707998600003],[8.36940996900006,18.126729974000057],[8.490559936000125,17.99868002500017],[8.444230072000153,17.86108979300019],[8.311929945000145,17.84628000099997],[8.305330076000189,17.665790007],[8.392449751000129,17.619640036000078],[8.478079944000115,17.45785005200014],[8.526809840000112,17.414149927000096],[8.53455999900018,17.309010032],[8.62818994800017,17.305329983000092],[8.609190001000115,17.459020056000156],[8.685599916000172,17.396579966],[8.821399849000045,17.444090043000188],[8.923440032000087,17.390590006000025],[8.99766993999998,17.55032002900009],[9.097909966999964,17.591259984999965],[9.190759971000034,17.56022995300009],[9.240020039000171,17.725090078000107],[9.28628433200015,17.73617955000003],[9.312919940000029,17.796179966000068],[9.177849962999971,17.933269949000135],[9.10572019600005,17.946837708000146],[9.081282236999982,17.97534866000018]]],[[[1.387759989000017,19.11691991300006],[1.455259950000084,19.207019957000114],[1.453389913000137,19.266440073000183],[1.372380068000155,19.332109955000192],[1.317009995000149,19.32223998700016],[1.244900071000188,19.40166002000018],[1.199160051000149,19.37136997600004],[1.23703990000007,19.28774993100012],[1.146939855000085,19.2460300300001],[1.163310064000143,19.176250083000127],[1.265759846000094,19.172630056000173],[1.341240024000058,19.097439959000155],[1.387759989000017,19.11691991300006]]],[[[1.115729931000033,19.43769007500015],[1.327480015000106,19.49936975999998],[1.331730017000041,19.60719008600006],[1.184650021000039,19.653629962000082],[1.117439965000131,19.51039001800018],[1.115729931000033,19.43769007500015]]],[[[1.162770035000165,19.698220044000152],[1.272439803000111,19.69892993300016],[1.358689939000158,19.733579991000113],[1.381990054000028,19.793950088000088],[1.229819737000128,19.84235997900015],[1.128290011999979,19.734619917000146],[1.162770035000165,19.698220044000152]]],[[[2.200730032000081,18.58411997000013],[2.319219985000188,18.64180998600017],[2.43039982900001,18.781430080000177],[2.42883008299998,18.900309917000016],[2.491479813000069,19.097329946],[2.517979971000159,19.28503992700007],[2.492190054000162,19.444719961000033],[2.577879742000164,19.486560083000143],[2.676319965000118,19.746519923000164],[2.739820048000126,19.749690043000044],[2.799320077000061,19.821870023000145],[2.885090031000175,19.830199992000075],[2.905899991000183,19.941170019000026],[2.829609945000186,20.066000036000162],[2.739450054000031,20.128420060000053],[2.67704006200006,20.24629992800004],[2.683969968000042,20.287920025000176],[2.489790022000136,20.385019856000042],[2.413499975999969,20.461300044000097],[2.344150045000049,20.4543699620001],[2.219320029000187,20.523720069000092],[2.066739937000023,20.495980026000154],[1.948850036000181,20.530649975000074],[1.851750030000062,20.523720069000092],[1.693310057000076,20.443200087000037],[1.589090043,20.446819938000147],[1.457030006000139,20.38232006100003],[1.351829913000074,20.402070030000175],[1.270309962000169,20.368039914],[1.192329948000179,20.266079820000073],[1.071560009000052,20.29346993500019],[1.062430029000154,20.190549828000087],[1.18510996100008,20.234409955000103],[1.293669924000142,20.16204005000003],[1.407810071000029,20.18528999900019],[1.467180022000093,20.24735006300017],[1.530479794000144,20.15450991600011],[1.522900022000044,20.04730002600013],[1.417260055000156,20.065229948000024],[1.354229945000043,19.96859991500014],[1.463329761000125,19.90142999200009],[1.640309917000138,19.882889984000144],[1.660050028000171,19.809020037000096],[1.51092978500003,19.74752992600014],[1.505380051000031,19.677109970000174],[1.620089975000099,19.481639797000184],[1.737280021000174,19.428309971000147],[1.652019997000025,19.308679937000136],[1.689150001000144,19.13724001000014],[1.751990009000167,19.3492500750001],[1.788270013000101,19.407849938000027],[1.873060063000139,19.391009932000088],[1.845529835999969,19.28880006600008],[1.837840052000047,18.989179758000034],[1.908139962000178,18.896869959000185],[1.966640022000092,18.95347006000003],[2.071729927000092,18.961850018000064],[2.12287006400004,18.920170074000055],[2.158020019000048,18.75503993500007],[2.091150034000123,18.713449937000064],[2.106489998000143,18.6378400320001],[2.200730032000081,18.58411997000013]]],[[[-11.99760991799991,21.291830016000063],[-12.130029915999899,21.305469979000065],[-12.208820148999905,21.289710031000084],[-12.291550061999885,21.329099955000117],[-12.401849980999941,21.28182996900017],[-12.516100140999981,21.285770000000127],[-12.551550034999934,21.250310074000026],[-12.65397992599992,21.270010053000078],[-12.697319913999934,21.218800036000175],[-12.847019966999937,21.23849015700017],[-12.886410067999975,21.20698011899998],[-13.004600082999957,21.234559983000054],[-13.05708008399995,21.188690060000056],[-13.106031534999943,21.010519355000042],[-13.16612005299993,20.91105024600006],[-13.155960003999951,20.728569994000054],[-13.219359931999918,20.568779948000042],[-13.22757003099997,20.355419986000186],[-13.165590055999871,20.350120025000138],[-13.12528993299992,20.409489799000085],[-13.161980062999874,20.584879967000177],[-13.090960054999925,20.76108000200003],[-13.025140027999896,20.740459967000163],[-12.976120051999942,20.82390997699997],[-12.873369979999893,20.787740161999977],[-12.849060214999952,20.73007003600003],[-12.874870022999971,20.640709980000054],[-12.845030061999921,20.581269973000076],[-12.918989954999972,20.511419970000134],[-13.059310080999978,20.430689996000126],[-13.10277997199995,20.331440082000086],[-13.165480043999935,20.304849978],[-13.183259996999936,20.157769982000048],[-13.097180071999958,20.034359918000064],[-12.947240103999945,20.05348008700014],[-12.860660106999887,20.024950067000134],[-12.874550017999923,19.951929944000085],[-12.734669942999972,19.999999941000056],[-12.458879922999927,20.120159971000078],[-12.409159914999918,20.072900018000155],[-12.680050066999854,19.87808006300014],[-12.689849978999973,19.81653996200015],[-12.61252000699983,19.789900044000035],[-12.527290082999912,19.803440028000182],[-12.447380009999904,19.718489800000043],[-12.430020040999977,19.6584199940001],[-12.345180000999903,19.593040017000135],[-12.29611003499997,19.642990082999972],[-12.24384002599993,19.563880021999978],[-12.173190010999974,19.586209915000097],[-12.165470127999924,19.685950045000027],[-12.26318004299992,19.668619998999986],[-12.37170004899997,19.71683996500002],[-12.398100051999904,19.788460025000177],[-12.346730032999915,19.88914995900018],[-12.283709955999939,19.836380053000084],[-12.211479986999962,19.831330040000125],[-12.08929995099993,19.903699945000028],[-11.972480075999954,20.030969950000042],[-11.974960020999902,20.0881199370001],[-12.083860053999956,20.13177975300016],[-12.186399957999981,20.143600022000157],[-12.133840043999953,20.249940021000043],[-12.142739964999919,20.380550005000146],[-12.059779994999928,20.42843007600004],[-12.024360024999964,20.55484004700014],[-12.160390014999962,20.56615003400003],[-12.07300014999987,20.638939923000066],[-12.094278595999981,20.744508944000074],[-12.021270169999923,20.808480067000175],[-11.999999917999958,20.943139918000043],[-11.910389912999904,21.017270023000094],[-11.911309968999944,21.19919000300007],[-11.875449948999972,21.28044997300003],[-11.993290035999962,21.29327003500015],[-11.941739948999896,21.26501002900011],[-11.968860048999943,21.164240007000046],[-12.145110073999945,20.99802998500013],[-12.239049993999913,20.885230052999987],[-12.289289964999966,20.902939950000075],[-12.27784004199998,21.01245006800019],[-12.185559990999934,21.136940014000118],[-11.99760991799991,21.291830016000063]]],[[[4.221863515000109,24.441966832000162],[4.303680005000103,24.495999977000054],[4.324530098000139,24.586549929000057],[4.251829979000092,24.817480027999977],[4.269800033000138,24.90762988600011],[4.331480070000168,24.991669916000035],[4.431860033000021,25.0546100790001],[4.617469919000143,25.016260081000098],[4.688239979000116,25.055949943000087],[4.744290017000139,25.18066977100011],[4.704150072000118,25.324469987000157],[4.863039952000122,25.483019972000136],[4.887990077999973,25.700490001000162],[4.854129997000143,25.926979821000145],[4.945479959000068,26.124909873000036],[4.981940031000022,26.268509954000137],[4.972039964000032,26.376690066000094],[4.91007002200007,26.42434993600017],[4.773869997000133,26.37513000100006],[4.65066006800015,26.242400031999978],[4.543680061000089,26.089160042000174],[4.339459935000036,25.926790071000084],[4.237890077999964,25.80037992400014],[4.070259926000176,25.686630012000137],[4.022719926000093,25.630240080000192],[3.997239979000142,25.51126994400005],[3.917860079000093,25.379050082000163],[3.862970189000123,25.165190047000067],[3.734600059000115,25.028780029000018],[3.734308403000114,24.992455085000074],[3.733830148000095,24.932889808000084],[3.832750025000109,24.78997004400003],[3.819349976000069,24.719550088000062],[3.734939953000151,24.63428988800007],[3.560499942000092,24.511540076000188],[3.52612975500017,24.41102000100011],[3.556529987000147,24.344349975000114],[3.69940997100008,24.353639957000155],[3.830940011000052,24.451830055000073],[3.933850085000131,24.504670017000137],[4.021900025000036,24.497689945000104],[4.07483996600007,24.431640037000022],[4.221863515000109,24.441966832000162]]],[[[9.906509962000143,25.097809956000162],[9.790620000000104,25.289139963000082],[9.663219741000148,25.461470023000118],[9.40005,25.60980997000013],[9.311300029000051,25.685999861000084],[9.274970035000024,25.795370043000162],[9.208430087000124,26.119879926000124],[9.165820054,26.197250031000067],[9.073920029000135,26.231450006000102],[8.810639924000156,26.258799989000067],[8.667659961000027,26.259579757000097],[8.149019945000077,26.206369977],[8.016079985000147,26.217399916000033],[7.874879936000184,26.263299939000092],[7.708799993000127,26.344189915000186],[7.566329960000076,26.300980005000042],[7.512949968000157,26.144670050000116],[7.377850067000111,26.08331001800019],[7.226439980000066,26.13736997400008],[7.111940048000122,26.29000005600011],[7.059479937000162,26.228259996000133],[7.134150071000079,26.092429788000175],[7.137679976000186,25.96986004500019],[7.062490054000079,25.952000003000023],[6.979930001000128,26.067409958000155],[6.73887012900019,26.08231004800001],[6.598610026000074,26.150169794000078],[6.504889955000067,26.126980044000163],[6.558340002000023,26.03536992400018],[6.55358007000018,25.967539750000128],[6.440920075000179,25.989570057000094],[6.367080051000016,26.079509923000103],[6.290719949000106,26.22455002400011],[6.083690192000063,26.34706977800016],[6.023059939,26.46758976899997],[6.043309980000174,26.60198999000005],[6.023499989000186,26.666850004000025],[5.782979969000166,26.73120994500016],[5.594170039000176,26.70252995500016],[5.449750057000188,26.643029926000054],[5.397480048000148,26.57866998500009],[5.365529960000117,26.435010057000113],[5.392740006000167,26.25946992100006],[5.47770994900003,26.17187006400019],[5.883670079000012,26.028539997000053],[6.193490039000039,25.90804992900013],[6.339060136000057,25.82373002800017],[6.425520088000042,25.685950047000063],[6.44627002500016,25.551849940000125],[6.401540008000097,25.478899873000046],[6.305910120000078,25.457060019000096],[6.208150038000042,25.486319994000155],[6.119670082000084,25.545510053000044],[5.989830009000173,25.749299985000164],[5.923920037000187,25.88115003000007],[5.812960218000171,25.87623995300015],[5.877170014000171,25.68085004500017],[5.857599938000078,25.59148998800009],[5.779889939000157,25.56970998200012],[5.675560264000126,25.677600012000084],[5.589650199000118,25.723459902000116],[5.545599970000183,25.69079006800007],[5.557219928000109,25.603880034000156],[5.691430048000143,25.40211996300019],[5.658430001000056,25.14524997700005],[5.711070004000135,25.051889867000114],[5.813779943000043,24.95496992900007],[5.884660015000065,24.825080041999968],[5.902319922000117,24.620329745000106],[5.834620003000055,24.572639951000042],[5.751390018000052,24.58723007000009],[5.629689989000099,24.95332995000018],[5.563890029000163,25.056630084000176],[5.404559922999965,25.15279982499999],[5.270079964000104,25.08907003600018],[5.271499917000085,24.96153001700003],[5.208660261000091,24.80722],[5.190860066000141,24.670870005999973],[5.047650045000182,24.720719916000064],[5.027310058000069,24.64738999800005],[4.926629981000076,24.549570070000186],[4.978220025000098,24.40132006900012],[4.965409996,24.318660037000143],[4.846479993000116,24.28142002000004],[4.853510055000186,24.43186974300005],[4.799629991000074,24.47393006600015],[4.704689925000139,24.4493999230001],[4.653769989000125,24.362529845000097],[4.705079985000054,24.29348002800009],[4.962469934000126,24.085339938000118],[5.024519965000081,23.970320043000072],[5.039699927000186,23.88339997500003],[5.092979939000031,23.80052995000017],[5.184409990000063,23.76342001300003],[5.235890022000035,23.684020046000057],[5.219260007000116,23.620170035000058],[5.110810057000037,23.485489942000072],[5.067909943000132,23.302829974000133],[5.01742002400016,23.24611000400006],[4.780189993000135,23.04451996800009],[4.72259995700017,22.876229918000035],[4.604330029000039,22.748540106000178],[4.615120053000055,22.61388007900007],[4.670269925000071,22.559160048000024],[4.783030076000159,22.554509952000046],[4.820429918000059,22.48965011500013],[4.747490060000189,22.343469933000165],[4.906100068000057,22.41490006700002],[4.970389953000051,22.387729977000163],[5.093299943000034,22.49063001800016],[5.19117003700012,22.379620033000037],[5.342689961000133,22.32068010000006],[5.406809986000098,22.24902008300012],[5.573240033000161,22.31576016500003],[5.625579922000099,22.259220088000177],[5.707229952000034,22.26532006000008],[5.927410161000125,22.233560073000092],[5.972599943000091,22.266559944000164],[6.040140036000082,22.403680027000178],[6.136020047999978,22.302080070000102],[6.234340049000139,22.321670036000057],[6.272609958000146,22.25776000200017],[6.437049924000121,22.16344991200009],[6.476729929000101,22.254010249000146],[6.328269936000083,22.347030113000073],[6.306520029000183,22.471429936000106],[6.491669975000093,22.525530201000038],[6.533230050000043,22.691329920000044],[6.622589930000174,22.741969985000026],[6.744119924000188,22.656680038000104],[6.803399929000022,22.665629949000163],[6.891240053,22.75028006300016],[6.913130072000115,22.953240062000077],[7.007820013000071,23.02777994100012],[7.146930000999987,23.07793999900008],[7.232350027000109,22.994849950000116],[7.18205003300011,22.852069946000142],[7.187160068000026,22.79108994100011],[7.336069968000061,22.818279921000055],[7.38655003000008,22.881489923000117],[7.376030021000133,23.0247099770001],[7.267119955000169,23.118690030000153],[7.236330014000146,23.18436994400014],[7.357049964000112,23.2538200300001],[7.423189819000072,23.19526998100008],[7.440979805000097,23.059640260000037],[7.548439994000091,23.11343002500007],[7.574470003000101,23.038619955000115],[7.676470053000173,23.04522],[7.636840038000059,22.94146995900013],[7.570519939000121,22.906440049000025],[7.542699983000091,22.83943012800006],[7.588660029000039,22.747470080000085],[7.679419972000062,22.791240086000187],[7.768379935000041,22.910360014000105],[7.834669935000079,22.845400021000103],[7.685249929000065,22.701660004000132],[7.634180024000045,22.59402995500011],[7.718409979000171,22.535040031000165],[7.829069860000061,22.645110069000168],[7.879769771000042,22.74449992000018],[7.971640048000097,22.76013999800017],[7.965590066000118,22.596720068000025],[7.989370011000119,22.52905024800009],[7.93289999000018,22.316279952000116],[7.932500072000153,22.219179946000168],[8.007750016000045,22.220929936000175],[8.067639930000041,22.320369952000135],[8.037869849,22.536939991000168],[8.052850028000023,22.619379999000046],[8.102589926000064,22.664490044000104],[8.155399965000015,22.545340016000182],[8.247239966999985,22.560889972000155],[8.196399768000163,22.690150058000086],[8.248509951000074,22.79494002500013],[8.319219988000157,22.811790065000082],[8.355900085000087,22.911999992000062],[8.442160078000143,22.900070062999987],[8.449019927999984,22.805069974000162],[8.559149988,22.737499958000114],[8.607429977000152,22.790060048000043],[8.592900057000179,22.8635800670001],[8.512779992000105,22.976390032000097],[8.520610065000028,23.01656993400013],[8.626749752000023,23.10372991700001],[8.777690042000017,23.14636001700012],[8.827649965999967,23.218739955000046],[8.814219994000041,23.277389984000024],[8.731100021000145,23.37393007100013],[8.899539864000019,23.4235499240001],[8.920370067000022,23.492800051000188],[8.801939961000187,23.553830046000087],[8.583679955000036,23.52330994400012],[8.377830060000122,23.381680054000014],[8.316439927999966,23.396330020000164],[8.406059967000033,23.546820227000126],[8.289760054000169,23.63086993700017],[8.424570050000113,23.66171004299997],[8.552380084000163,23.773429916],[8.570499932000132,23.878189960000157],[8.422639990999983,23.98366006800012],[8.532789941999965,24.10253004800012],[8.518559960000118,24.14964003200015],[8.29980991400015,24.11258008400017],[8.203619931000048,24.117489985000077],[8.117290058000094,24.241029951000087],[8.123599846000104,24.370429973000057],[8.322929785000042,24.32795001800008],[8.367260061000138,24.3687899950001],[8.403380062999986,24.520629923000115],[8.514689985000132,24.518879933000107],[8.603530079000052,24.453169919000118],[8.647749991000069,24.384669988000155],[8.78344994400004,24.40121005700007],[8.856159920000096,24.291289988000074],[9.082549935999964,24.268350010000063],[9.233509940000033,24.362339919000192],[9.439559970000118,24.343530074000057],[9.60298975600017,24.203169992000085],[9.660579969000025,24.06099004000015],[9.66233999299999,23.988530012000183],[9.734999979,23.88370994600018],[9.893190002999972,23.81479003200019],[10.103829753000014,23.747960003000173],[10.272610019000126,23.679180201000065],[10.36086995100004,23.598030068000014],[10.42571993100006,23.473770004000073],[10.42771001300008,23.336659955000187],[10.287850004000177,23.035730059000116],[10.282980059000181,22.90534995800016],[10.380259958000067,22.79446001900004],[10.520209913000087,22.736319920000142],[10.670680054,22.734450235999986],[10.982029980000164,22.908329976000175],[11.151629971000148,22.93799004400006],[11.345790027000021,22.935020059000067],[11.469820033000076,22.87448996100005],[11.643219942000087,22.61018999600003],[11.762700007000035,22.521970021000186],[12.024260046000165,22.372080042000107],[12.208929986000157,22.285870039000145],[12.345479939000086,22.25593995600002],[12.46800004500011,22.272320022000144],[12.545589999000185,22.337729922000165],[12.485179946000073,22.471659994000163],[12.050729928000067,22.726829979],[11.922180258000083,22.87055996300012],[11.813760055000046,23.127030032000107],[11.72650009300014,23.238570188000097],[11.456640009000068,23.443159956000102],[11.35155996200018,23.632419969000182],[11.276989983000135,23.692350015000102],[11.118059971000037,23.653000046999978],[11.039140186000168,23.689220028000022],[10.885939976000088,23.799839952000127],[10.796570062000171,23.928930004000165],[10.76091000100007,24.0896100060001],[10.626270040000065,24.270490060000043],[10.564750006000054,24.40025004400013],[10.532959920000167,24.627939968000135],[10.482819928000083,25.194930028000044],[10.473419934000162,25.473420019000116],[10.452539917000138,25.572879925000166],[10.34639002,25.566669941000043],[10.348219924000091,25.466840041000125],[10.230829920000133,25.080279951000023],[10.248030063000158,24.936119950000148],[10.30199989700003,24.690149825000105],[10.288309944000048,24.574489745000164],[10.233279941000092,24.514469928000153],[10.170599935000155,24.51654995600012],[10.128229993000105,24.657920041000068],[10.027459970000109,24.794060044000048],[9.906509962000143,25.097809956000162]]]]},"properties":{"objectid":780,"eco_name":"West Saharan montane xeric woodlands","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Palearctic","eco_biome_":"PA13","nnh":2,"eco_id":846,"shape_leng":101.039827262,"shape_area":22.7455278684,"nnh_name":"Nature Could Reach Half Protected","color":"#B43D41","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":258650.20821868043,"percentage":0.9803974539989531}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-4.852262546999896,14.791732176000039],[-5.215247568999928,14.873846663999984],[-5.537127570999928,14.920613828000114],[-5.942504572999951,14.919022776000077],[-6.164248491999956,14.925993334000054],[-6.932553518999953,15.087253105000059],[-7.615109496999935,15.18756654800012],[-8.169492428999945,15.232962433000182],[-8.918510529999878,15.203435503000094],[-9.796695433999957,15.110630568000147],[-10.050439447999906,15.103122059000157],[-11.168180486999916,14.99936767600019],[-11.444549436999921,14.952260710000019],[-11.890720489999978,14.904314715],[-12.193539540999893,14.899725120000141],[-12.720950514999913,14.880235351000067],[-12.92527046899994,14.902124021000134],[-13.179479510999954,14.87482567100011],[-13.415289437999888,14.876535747],[-13.730389485999979,14.89293460500005],[-14.317890490999957,14.945462148000104],[-14.649040542999842,14.998247854000056],[-14.902819592999833,15.056124895000039],[-15.0692905599999,15.106191680000052],[-15.914239541999962,15.404302448000067],[-16.199720458999877,15.530043569000043],[-16.596147431999896,15.672180363000166],[-16.865219431999947,15.24653156100004],[-17.128900527999974,14.919962890000079],[-17.29674947999996,14.827449645000058],[-17.45837051099994,14.76619285300012],[-17.423120583999946,14.71799707700012],[-17.346059545999935,14.735595720999981],[-17.214363585999877,14.674904874999982],[-17.17090056799998,14.711066417000097],[-17.04527059199995,14.741394489000186],[-16.966279535999945,14.679248544000131],[-16.723880595999958,14.372559401000103],[-16.56344945999996,14.15034006000019],[-16.45551854199988,14.195324057999983],[-16.414207493999925,14.164343202999987],[-16.487180544999944,14.069933469000034],[-16.088939526999923,13.658485623000047],[-15.902823501999933,13.452694086000122],[-15.882809584999904,13.428489887000069],[-15.828769442999885,13.36416632400011],[-15.639510595999923,13.241314445000057],[-15.40423057299995,13.13189188500013],[-15.167920582999841,13.069634963000055],[-14.932339481999918,13.03149864500017],[-14.381540483999913,12.97056271200006],[-13.78925944699995,12.966862772000184],[-13.02770051099992,12.8556205000001],[-12.778949428999965,12.782315225000104],[-12.575639494999905,12.667723040999988],[-12.395669471999895,12.520952899000065],[-12.2082095479999,12.346144788000117],[-12.051850508999905,12.227722074000155],[-11.65007051799995,11.99028924400011],[-11.428310504999956,11.87275635300017],[-11.192069581999874,11.760283953000169],[-10.801420589999964,11.595536137000067],[-10.37397956999996,11.450235343000031],[-10.294630438999889,11.392770188000043],[-10.167559445999927,11.256348679000041],[-10.076910503999954,11.080680752000035],[-9.965262547999941,10.690427889000148],[-9.887540512999976,10.473442879],[-9.80028858799983,10.347481985000059],[-9.59800845399991,10.134226754000053],[-9.37988149399996,9.962685909000015],[-9.114145490999931,9.805047959000092],[-8.65459457299994,9.511331822000159],[-8.40878453299996,9.363597089999985],[-8.124713452999913,9.223929102000113],[-7.444966585999964,8.937717284000144],[-7.113874536999845,8.829912095],[-6.924159545999885,8.790475911000044],[-6.721748485999967,8.767327609000176],[-6.197337562999962,8.776442928000051],[-6.056972535999932,8.789867049000122],[-5.990478562999897,8.766766524000047],[-5.776548421999962,8.793855662000169],[-5.407927574999974,8.81805304300002],[-5.086883583999963,8.81581725400008],[-4.685211550999952,8.795296678],[-4.490312520999964,8.763806874000124],[-4.105311423999979,8.747092856000052],[-3.614789540999936,8.770473169000013],[-3.342664516999889,8.772229346000131],[-3.115622563999978,8.79070876000003],[-2.838741479999953,8.842027130000076],[-2.499290493999979,8.893909602000122],[-1.99523451999994,8.916087112000127],[-1.582028485999956,8.910896199000092],[-1.373587484999859,8.868578485000057],[-0.710205445999918,8.625031559000092],[-0.340554462999819,8.448170384000036],[0.010523563000106,8.23149885700019],[0.437696530000096,8.103323129000103],[0.54703946300009,8.084777498000108],[0.535254507000047,8.168137537],[0.583583555000075,8.311551229999964],[0.812199461000148,8.363616427000125],[0.845077477000132,8.32706110300012],[0.859042566000028,8.04705122200005],[0.831214479000096,7.923646138000151],[0.870520576000047,7.833955415000105],[1.034198526000068,7.765802328],[1.121605515000169,7.595463783000014],[1.166097495000145,7.513605614000028],[1.70581947300002,7.520635180000113],[2.075459560000013,7.547220063000168],[2.232928531000141,7.577759023999988],[2.560236486000179,7.689216879000014],[2.695408421000138,7.772770037000043],[3.027317537000101,8.045122379000077],[3.123512448999975,8.145474044000025],[3.335885569000084,8.324442094000062],[3.485274553000181,8.423142188999975],[3.696098528000107,8.611578772000144],[3.97765855900019,8.937220404000072],[4.09241251300017,9.03702322300012],[4.227045492000116,9.111089072000027],[4.600642507000146,9.34435240800019],[4.810040553000135,9.526054803000022],[4.936282576000167,9.617311265000069],[5.301445553000121,9.836916625000072],[5.775576456000181,10.031524133],[6.063783503000138,10.127067268000076],[6.330444533000161,10.267737564000129],[6.505735442000116,10.293336566999983],[7.082135454000024,10.023925435000137],[7.438776550000171,9.90514179700017],[7.624342499000079,9.88783601700004],[7.93674256800017,9.95752031000012],[8.282309493000184,9.961099885000067],[8.603759504000095,9.934031870000183],[8.640332430000171,10.069706217000146],[8.840023562000056,10.202825088000054],[8.816249467000034,10.321679637000159],[8.86379547700011,10.431025923000163],[8.935113571000102,10.469059479000066],[9.034958466000091,10.611685441000134],[9.068241495000109,10.587915202000033],[9.115786500000183,10.454797336000127],[9.106277566000188,10.383484439000142],[8.96839542600003,10.312171206000073],[8.944622505000098,10.240858309000032],[8.925604470000167,10.031672996000168],[9.006431497000108,10.045935139000107],[9.096768465000025,10.107740611000168],[9.111031446000027,10.198070370000153],[9.163331505000087,10.21233335200003],[9.253667466000024,10.345449877000135],[9.320231511999964,10.307416488000115],[9.496223483000051,10.313616246000095],[9.567467481000108,10.359712858000137],[9.66731254400014,10.321679637000159],[9.681576532000122,10.264628549],[9.567467481000108,10.107740611000168],[9.557958547000112,9.917572159000144],[9.529431578000072,9.86527578900018],[9.557958547000112,9.541990645000169],[9.600749504000078,9.342313594000075],[9.568890561000103,9.321076031000132],[9.59116245100006,9.224429167000153],[9.650639430000126,9.12723882000006],[9.872233481000137,8.929812814000172],[10.001649563000171,8.841918165000038],[10.137669579000033,8.776242769000078],[10.476180451000062,8.6995574070001],[10.661910516999967,8.712543322000101],[10.862890451000112,8.793280663000132],[10.983440491000067,8.866567331000113],[11.237409475000106,8.997030313000096],[11.48945045400012,9.042710846999967],[11.88726949300019,9.052516332000096],[12.048990436000167,9.015840812000135],[12.328359437000188,8.917895927000131],[12.804456567000102,8.945433999000102],[12.820608494000112,8.945997766000119],[12.869500471000038,9.108958224000105],[12.877729488000114,9.413415603000033],[13.099916474999986,9.610901791000117],[13.173978468000143,9.775473084000055],[13.223353578000172,9.981188457000087],[13.28582943400005,10.143252220000022],[13.331959574000052,10.460424778000174],[13.383110473000045,10.618883819000132],[13.475569571000051,10.741445181000188],[13.641409548000183,10.90494308700005],[13.778860523000048,11.101089513000147],[13.85493350300004,11.108053868000184],[13.77953002400011,11.453981525000017],[13.507836433000136,12.02095729299998],[13.24826242500012,12.389086951000024],[13.181973475,12.465501848000088],[13.033690455000169,12.553817308000134],[12.606348037999965,12.731577780000066],[11.832821488000036,12.847280003000037],[11.214899539000157,12.878527906000102],[10.718729427000085,12.926945635000095],[10.598139489,12.946314201],[10.294469507000144,13.038248089000149],[10.134380521000082,13.102943808000134],[9.85505845800003,13.279231829000139],[9.694548533000045,13.406392341000071],[9.488298562000068,13.58941136400017],[8.990699503000144,13.888620330000094],[8.778465524000069,13.97136580800003],[8.607858589999978,14.002793921000091],[8.372079509000116,14.112075497999967],[8.218784558000038,14.146343401000024],[8.037178556000129,14.159372566000059],[7.64656745000002,14.219088598000042],[7.306907588000172,14.278334739000172],[7.129064557000106,14.24907770600015],[6.79441958700005,14.211169040000073],[6.431363485000077,14.19849979300011],[6.227567568000097,14.182371000000103],[5.995334534999984,14.184220718000063],[5.502451469999983,14.139363958000104],[5.328052564000075,14.094916904000115],[5.148142555,14.023152391000053],[4.933565499000167,13.985914947000083],[4.673760531000028,13.98713401100008],[4.502114576000054,14.017862907000108],[4.272690486999977,14.081157507000057],[4.050700475000156,14.106706889000122],[3.538718573000097,14.12981445500003],[3.338589570000124,14.15687375400006],[3.125662575000092,14.168061918000149],[2.592624495000052,14.155892736000055],[2.360204545000045,14.159883360000038],[2.01728144000009,14.087068258000158],[1.720023446000141,14.08209745400012],[1.41098753700004,14.007252423000068],[1.135959524000043,13.987383960000045],[0.848398554000028,13.990524491000087],[0.444404567000106,13.974854523000147],[0.241644485000108,13.950906252000095],[0.031171544000131,13.906970160000128],[-0.117419482999935,13.893470937000075],[-0.553004527999974,13.940817794000054],[-0.765680568999926,13.97271495900003],[-1.272511455999961,13.997553052000171],[-1.550992477999955,14.032581864000178],[-1.826374542999929,14.108155785000122],[-2.143431429999964,14.258155978000048],[-2.355937485999902,14.416596747000085],[-2.440082335999932,14.493202224000129],[-2.560323549999964,14.640971567000065],[-2.777680803999885,14.97342675900012],[-2.892715880999958,15.109954624000181],[-2.978529736999974,15.171219717000156],[-3.068035540999972,15.19522478700003],[-3.273836032999895,15.131490981000127],[-3.490576355999963,14.997588095000083],[-3.904085017999932,14.69453125800004],[-4.010570436999956,14.678758371000185],[-4.070543456999872,14.228397874000052],[-4.092889442999876,14.117005231000121],[-4.255138445999876,13.828404234000118],[-4.451346561999912,13.628068702000178],[-4.713101495999979,13.447919642000159],[-4.719943475999969,13.30169046800006],[-4.757257529999947,13.242873479000082],[-4.833024569999907,13.234944031],[-4.914549474999887,13.333757450000121],[-5.041845438999928,13.277551089000156],[-5.225863584999956,13.24023351500017],[-5.280385517999889,13.260623333000012],[-5.24117748999987,13.36486638100007],[-5.127549559999977,13.423412466000116],[-4.785821546999898,13.552273666000133],[-4.659810528999969,13.698953115999984],[-4.548388548999981,13.771448029000112],[-4.649722572999906,13.88680145700016],[-4.674348436999878,14.013692072000026],[-4.766938459999949,14.021672648999981],[-4.919569563999914,13.991184650000093],[-5.148297452999941,14.008333521000168],[-5.194684581999923,14.029421048000131],[-5.032285542999944,14.309892605000186],[-4.977437552999959,14.568975723000108],[-4.865797475999955,14.733534779000024],[-4.852262546999896,14.791732176000039]],[[8.76699706800008,11.260079380000093],[8.762951459000135,11.16567291500013],[8.695835046000013,11.111927146000028],[8.550169471000117,11.1429353260001],[8.514442445999975,11.237227881000024],[8.412207535000107,11.25651405400015],[8.222751545000108,11.242638400000146],[8.18130454300001,11.3416756150001],[8.295747528000106,11.452486051000108],[8.291165477000163,11.540608017000125],[8.482474538000133,11.548590439000122],[8.515725967000037,11.509434713000076],[8.72508252300014,11.35533761400012],[8.76699706800008,11.260079380000093]],[[1.495224491000158,10.12168055400008],[1.445730526000091,10.240769461000184],[1.452608548000057,10.341910366000093],[1.511363510000137,10.455472414000042],[1.558298480000076,10.473994073000142],[1.660031483000125,10.41801503],[1.654420469000058,10.319983811000156],[1.543532584000104,10.122385472000133],[1.495224491000158,10.12168055400008]],[[1.176702447000082,9.350284113999976],[1.327337485000044,9.377006291000043],[1.428892456000142,9.313153624],[1.292508498000132,9.203927534000172],[1.117701560000171,9.205678514000113],[1.056458514000155,9.24859436100013],[1.056729585000085,9.324419069000157],[1.176702447000082,9.350284113999976]],[[1.192742560000056,9.011171254000146],[1.158843461000174,9.049246552000113],[1.208247572000062,9.128020013000139],[1.260822557000097,9.112657997000042],[1.265596554000126,9.021918363],[1.192742560000056,9.011171254000146]],[[0.704679425000052,8.536156228000152],[0.608289550000109,8.61726237300013],[0.607690579,8.744789006000076],[0.64731049400018,8.890125843000135],[0.721367459000078,8.892667571000118],[0.735668494000038,8.798209390000125],[0.816974464000054,8.74732587300008],[0.756175491000079,8.529553635000184],[0.704679425000052,8.536156228000152]]]},"properties":{"objectid":782,"eco_name":"West Sudanian savanna","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Afrotropic","eco_biome_":"AF07","nnh":4,"eco_id":62,"shape_leng":84.5066995993,"shape_area":135.539688637,"nnh_name":"Nature Imperiled","color":"#E69800","color_bio":"#FEAA01","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":1643026.9054050918,"percentage":7.663723576474234}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[120.89686579500017,-23.368804953999813],[120.81214135000016,-23.362972321999962],[120.75704961600013,-23.298526718999938],[120.71100614500017,-23.410898200999895],[120.64488986000003,-23.38300892599989],[120.45803829500016,-23.362104459999898],[120.41641996700025,-23.40092272999982],[120.29898832900005,-23.39267929499988],[120.08296204200008,-23.408803897999974],[119.90508263400011,-23.320230482999932],[119.82530217100009,-23.344554933999916],[119.71102145900022,-23.465957580999884],[119.62064358700002,-23.487295056999926],[119.50395207300016,-23.448358601999928],[119.31685642700006,-23.472604764999915],[119.32942961700007,-23.53930476599993],[119.23471830200015,-23.578851758999974],[118.94978338200019,-23.475217739999948],[118.9012603770002,-23.52921479799994],[118.75511167000002,-23.536365734999833],[118.57159425800023,-23.570989532999874],[118.52403265700002,-23.484930017999886],[118.41185764700015,-23.518108440999924],[118.36749273600014,-23.44821744999996],[118.23328404900008,-23.47098353799987],[117.95260613000016,-23.49325559499988],[117.77337656500026,-23.399692600999913],[117.68872068400003,-23.306066573999942],[117.57073215400021,-23.2664890719999],[117.49378209100018,-23.196249058999854],[117.35326384300026,-23.17128188299995],[117.32961279500023,-23.119981786999972],[117.1403122050001,-23.035268740999925],[117.16155245000004,-22.969745558999875],[117.0650710450002,-22.963516295999966],[116.8314742770001,-22.887111728999912],[116.65207673900011,-22.802831691999927],[116.50784296000006,-22.847999588999926],[116.30420680200018,-22.753889088999927],[116.13755042600008,-22.754602387999967],[116.15451053700019,-22.799619746999895],[116.0562665860001,-22.885643050999818],[115.71401973200011,-22.954387732999976],[115.57382200800009,-22.93145182899991],[115.39310448700019,-22.81151768999996],[115.32463070900019,-22.705160055999954],[115.2538071470002,-22.714168757999914],[115.2288971370001,-22.785099104999972],[115.08979040100007,-22.86835286099989],[115.09197254500009,-22.940156937999973],[114.98101810800006,-22.94564239099998],[115.06877143800011,-23.07481405599998],[115.14505765300021,-23.12041479499993],[115.10849746800022,-23.19517516799982],[115.0446318920001,-23.139673222999875],[115.030570914,-23.390699320999943],[115.09481049000021,-23.41693685699994],[115.13836671600018,-23.547851623999918],[114.99435421900012,-23.580203925999967],[115.02555853600006,-23.637611412999888],[115.18392940000012,-23.756175947999964],[115.16252134900003,-23.89476971099998],[115.26923370500015,-24.129728370999942],[115.38492593,-24.246284434999893],[115.46839141200007,-24.38556283199989],[115.46907805900014,-24.462173593999864],[115.51154329500002,-24.553737672999944],[115.6321488230003,-24.645702405999828],[115.66262810500007,-24.714544317999923],[115.67123414100001,-24.839229652999904],[115.62462623300019,-25.002155411999922],[115.50378416700005,-25.05219269099996],[115.55816645800007,-25.111465486999975],[115.50140387400018,-25.166547833999914],[115.53540037100015,-25.52905827299992],[115.59282680100023,-25.592378690999965],[115.43965908800021,-25.845899577999944],[115.48475640900006,-25.900337189999902],[115.58339699300018,-25.945196129999943],[115.51758581000001,-26.200786508999954],[115.45439145600005,-26.359313946999976],[115.4452820030001,-26.522087152999973],[115.39797202800014,-26.630378660999952],[115.39295193800012,-26.760417853999968],[115.40568539100002,-26.87237744899994],[115.34996031900005,-27.141332605999878],[115.29364013300017,-27.253089861999968],[115.42361445000029,-27.344964907999838],[115.56908422400011,-27.500040007999928],[115.7890778340003,-27.52440267999998],[115.97065734900013,-27.671665175999976],[116.14886482500003,-27.726276459999895],[116.2720642170002,-27.818662634999953],[116.4625548690002,-28.04687688099989],[116.62958524500027,-28.110776822999867],[116.8328552810002,-28.00154872099995],[116.97604366900009,-28.142198564999944],[117.02073664700015,-28.08901974899993],[117.09548193400008,-28.13242543399997],[117.34691623100002,-28.142616151999903],[117.38877864000006,-28.247058856999956],[117.32261659000017,-28.34953114299998],[117.22636417800015,-28.396760988999972],[117.28690331300015,-28.53654095899992],[117.4148406600001,-28.71356960399993],[117.35202030700009,-28.796478192999814],[117.43293014800008,-29.009630158999983],[117.68672948200003,-29.11109544399983],[117.69107063800004,-29.211479127999894],[117.66521447800005,-29.384843875999877],[117.80599960600011,-29.320396427999924],[118.05692294200003,-29.409585912999887],[118.14575200400009,-29.36184125099993],[118.3163299370002,-29.353355411999928],[118.3534927820001,-29.424217194999983],[118.47242729400011,-29.397384711999962],[118.58007808800005,-29.429801889999965],[118.64430995300017,-29.34321967999989],[118.6375122300002,-29.26978297699992],[118.76628122900013,-29.279262572999926],[118.87185666400012,-29.18347166899997],[118.91584019800007,-29.35326002699992],[119.02716830100007,-29.34140583599992],[119.15276340900016,-29.37062649199993],[119.13504792100002,-29.44643024499993],[119.01840217100005,-29.445657767999933],[119.04685973800031,-29.518102557999953],[119.18103020400008,-29.50518218899998],[119.18055729600007,-29.653869607999923],[119.11207580600012,-29.69329640399991],[119.36528002500006,-29.77544777199995],[119.6444626120001,-29.847734478999882],[119.81278229300017,-29.8596535449999],[119.83940120600005,-29.810274077999964],[119.9544981480002,-29.94171137199993],[120.10745245800001,-29.926609025999937],[120.14043424100021,-29.87693786899996],[120.28588104800008,-29.896942117999913],[120.34700758600013,-29.951198512999895],[120.45130913900005,-29.934412074999955],[120.4917374050001,-29.87996474199997],[120.56882476300007,-29.96321682099989],[120.66439052900012,-30.014467297999943],[120.67732246400021,-30.102073608999945],[120.86598971800015,-30.12488562799996],[120.86219020100009,-30.16885189599992],[120.99051663500006,-30.207084606999956],[121.21632393400012,-30.433593804999873],[121.5075149390002,-30.62094694299992],[121.50923926400014,-30.67924492399993],[121.61434179200023,-30.683193134999897],[121.77333073700015,-30.744830969999953],[121.86804959600022,-30.72859002599995],[121.98367308800016,-30.622102807999966],[122.08435064200023,-30.566566496999883],[122.14329537000015,-30.60843460599989],[122.34918207000021,-30.627424309999924],[122.43206031700004,-30.69142332699994],[122.529449483,-30.65307997499997],[122.63020331100017,-30.658515974999943],[122.73309318500026,-30.70335764799995],[122.8175432060001,-30.70359619699991],[122.85438535900016,-30.651065803999984],[123.05911250500003,-30.66147981599994],[123.38029479800002,-30.59767525999996],[123.4640655500001,-30.652181602999974],[123.53197472300019,-30.61579509099988],[123.67565160800007,-30.61360355899984],[123.74999992700009,-30.6428012479999],[123.76470949700001,-30.592880308999895],[123.63502502600022,-30.56256480899998],[123.66048438700022,-30.49434852299993],[123.43360135500018,-30.32040793799996],[123.31124870300016,-30.27824595899989],[123.09519961600006,-30.120685624999965],[123.0147553060001,-30.08692935399995],[122.96426389500016,-29.938583413999936],[122.81975552500012,-29.918130899999937],[122.90151210600004,-29.793954847999885],[122.77989203200002,-29.707252441999913],[122.71398931800013,-29.617166595999947],[122.59935757200014,-29.547161107999955],[122.56178300900012,-29.44819061399994],[122.63296514800015,-29.42119216799989],[122.7659988600002,-29.4292698079999],[122.77497101600022,-29.372068515999956],[122.86314394400017,-29.25755143399988],[122.72752374400011,-29.1853180359999],[122.62786861600011,-29.016189501999918],[122.6520232490002,-28.886917085999926],[122.71337123500007,-28.809242324999957],[122.54206843700013,-28.642747887999974],[122.56764983800008,-28.578924221999955],[122.50543968800002,-28.403190579999944],[122.49961845600012,-28.243104946999892],[122.44311520700012,-28.204194978999965],[122.42768093900008,-28.01782604399989],[122.50131227000008,-28.00049394399997],[122.56756585100004,-27.765062376999822],[122.48992159900001,-27.718255985999917],[122.42978664000009,-27.60059351099983],[122.68865199700008,-27.42078777399996],[122.77161406300002,-27.335212733999924],[122.89974218200018,-27.30394555299995],[122.89593512200008,-27.21385199599996],[122.961776815,-27.130712568999854],[122.90537264200009,-27.006338033999953],[122.73598477200017,-26.875984184999936],[122.74613944700002,-26.774030737999965],[122.89159396600007,-26.66631892299995],[123.02690889600012,-26.642644907999852],[123.14312750400006,-26.658088731999953],[123.20864113000016,-26.617053951999935],[123.36878208400026,-26.56723208699998],[123.39983368300011,-26.41148760899995],[123.4452895820001,-26.38479040899989],[123.51857759000006,-26.184984277999945],[123.50452415600012,-25.9863757519999],[123.55622105200007,-25.913722923999956],[123.58650973000022,-25.829721501999927],[123.50549310400015,-25.79366104599984],[123.4733352620002,-25.736043842999948],[123.39341733600008,-25.78391272499988],[123.30319972600023,-25.792076027999883],[123.20639042100004,-25.725915821999934],[123.14210507900032,-25.791030636999892],[123.0992430440001,-25.689394024999956],[123.17633828100008,-25.556915195999977],[123.12165072100004,-25.46050268999994],[123.15514380000013,-25.341516544999934],[123.11262508700008,-25.308559404999926],[123.13071424000009,-25.223562212999923],[123.03126530600014,-25.168218685999932],[122.99259941900004,-25.105781553999975],[123.0013734270002,-25.023597663999965],[122.83163452300016,-25.015710794999904],[122.67138678400033,-25.165126767999936],[122.56124120000027,-25.10590560499992],[122.48031610400017,-25.12744927599988],[122.44906619000017,-25.07067680199998],[122.19842532400014,-24.927228909999883],[122.09091182600002,-24.98392292999995],[122.01813511300008,-24.881284680999954],[121.83128354800033,-24.843332261999876],[121.79719552100028,-24.79185111599992],[121.67761224900005,-24.75737953299995],[121.57022095900015,-24.76280597699997],[121.44383996500005,-24.80472756299997],[121.39005278900015,-24.952230618999977],[121.32941441300022,-24.994863491999922],[121.37270359000001,-25.08702285299995],[121.31232455000008,-25.106597949999923],[121.22381584400011,-25.240409836999902],[121.16052241700015,-25.212207750999937],[121.05014046300005,-25.294847448999974],[120.95067593800024,-25.273193136999907],[120.83846287400002,-25.28959082199998],[120.72145083600003,-25.385766957999977],[120.64719387900016,-25.407764424999982],[120.58763894800006,-25.137092654999947],[120.50262449000002,-25.134185810999952],[120.47534944100005,-25.181837096999914],[120.35348511900008,-25.134273484999937],[120.15128327100001,-25.181152295999937],[120.03587334900033,-25.175670698999966],[120.01097876100005,-25.046630796999864],[120.10395049600015,-25.044069287999946],[120.25252526200018,-24.966257062999944],[120.31740571900002,-24.905288775999907],[120.27624504200003,-24.81792252199989],[120.27799216600022,-24.66427804599988],[120.10349267600009,-24.63341319599988],[120.05647271400005,-24.581047087999877],[119.95443712400004,-24.54814727999991],[119.90869909000003,-24.428039468999884],[119.83625798900016,-24.38791077199994],[119.94197088800001,-24.325420331999965],[119.99111180700027,-24.127656868999964],[120.06952669000009,-24.124013926999964],[120.0290221480002,-24.0278532129999],[120.13142402700021,-23.939868878999903],[120.20851138500007,-23.926788247999866],[120.28433994900001,-23.87004661999987],[120.4223099310002,-23.9177493709999],[120.49910744200008,-23.848236068999938],[120.73987576700017,-23.79645367699993],[120.79603569100004,-23.723161477999838],[120.77785484100002,-23.597511216999976],[120.87232978600014,-23.491067918999875],[120.89686579500017,-23.368804953999813]]]},"properties":{"objectid":783,"eco_name":"Western Australian Mulga shrublands","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Australasia","eco_biome_":"AU13","nnh":2,"eco_id":216,"shape_leng":63.8430085835,"shape_area":41.8890683599,"nnh_name":"Nature Could Reach Half Protected","color":"#F2AF5E","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":463820.91394299717,"percentage":1.7580841951486978}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-96.40218902599992,28.368723060000093],[-96.65169817499992,28.251341208999975],[-96.69032545599998,28.206686653000077],[-96.78864366199991,28.189295738000112],[-96.77658001999998,28.12325936100018],[-96.56038906199984,28.26438666900009],[-96.39860720599995,28.342304872],[-96.40218902599992,28.368723060000093]]],[[[-97.7767552759999,24.110902161000126],[-97.74846806099993,24.311614899],[-97.74737913699994,24.438111963000154],[-97.826413157,24.411446534000163],[-97.8606725219999,24.516982144000167],[-97.77364553799993,24.54482863800007],[-97.70998587499997,24.65401547600004],[-97.73602091299989,24.84636805300005],[-97.66457640899995,24.92819886400008],[-97.75220653199995,24.97627747100006],[-97.69073749199993,25.18425945900009],[-97.72607154599996,25.246720239000183],[-97.70022609699987,25.401643040000067],[-97.58203055399997,25.31052655900004],[-97.51621698699995,25.41139075700005],[-97.4348005469999,25.41928424800011],[-97.41869778799992,25.303477013000077],[-97.24600425199992,25.540030535000028],[-97.17834394499988,25.703396281000096],[-97.14478004199998,25.97221344400009],[-97.21079823999992,25.990304356000024],[-97.23650733899996,26.06574073500019],[-97.29598008299996,26.10764074200017],[-97.29652553999995,26.20159530800015],[-97.35424373999996,26.330122607000078],[-97.40106193499992,26.364313522000145],[-97.43580740199991,26.46968627000018],[-97.425661946,26.55776810700013],[-97.47004378199995,26.749259055000152],[-97.56065289799989,26.839631799000017],[-97.55639835699992,26.994140921999985],[-97.48013470199999,27.00541365500004],[-97.496452891,27.091059127000165],[-97.45101651699986,27.121586407000166],[-97.42320742399994,27.26240461900005],[-97.54618017999996,27.229431880999982],[-97.60866201599998,27.285413709000125],[-97.53361654499997,27.34000463200016],[-97.41203469499999,27.322331903000133],[-97.32013468099996,27.57106832200003],[-97.25426194199991,27.696804713],[-97.37483470099994,27.748877447000154],[-97.3877437989999,27.84030473900009],[-97.33768924299989,27.88316838600008],[-97.25080740199996,27.876722932],[-97.18830738499997,27.824086560000126],[-97.03455280999998,28.044841154999972],[-97.09921646299995,28.07785025100003],[-97.15178011099988,28.03475024000005],[-97.22053467499995,28.07861388400005],[-97.1690801179999,28.13075935100011],[-97.02877099499995,28.190704821000054],[-96.95834370199992,28.122486628000104],[-96.8004254839999,28.224632109000027],[-96.78073457699992,28.400013963000163],[-96.70131637399993,28.360232139000175],[-96.59560725699998,28.35605941400013],[-96.41250721399996,28.461413987000185],[-96.60995272299994,28.596332191000045],[-96.66495274199991,28.69542311900011],[-96.58567999599995,28.725068582000063],[-96.55816180299996,28.645314021000047],[-96.45671632299997,28.635923113000047],[-96.19936171499995,28.712650410000037],[-96.2256980809999,28.579414016999976],[-96.03900712699993,28.65247767500017],[-95.95942528799992,28.625295853000182],[-95.92354346299987,28.7015504150001],[-95.777488883,28.749532248000037],[-95.65350703299998,28.750004978999982],[-95.43999789199995,28.859832282000127],[-95.38410696899996,28.864868648000083],[-95.21067965799995,29.00941413800018],[-95.14777964899986,29.17981417599998],[-95.0372341669999,29.21162327600007],[-94.93751596399994,29.313705120000122],[-94.89177050299998,29.43337787300004],[-95.01831599399986,29.5548960750001],[-95.01582508899997,29.63806882000017],[-94.96583416999988,29.700514289000125],[-94.87277050799992,29.671496105000074],[-94.81406140599995,29.758950670000047],[-94.68907046399988,29.751305218000027],[-94.70611591699998,29.62853246500009],[-94.76046138099997,29.524386987000184],[-94.54573405599996,29.571705186000145],[-94.49908858599997,29.50604153800009],[-94.13258849699997,29.646223397000142],[-94.00140664599996,29.681459773000086],[-93.85852479099992,29.674196139],[-93.74557930899994,29.73586888300008],[-93.48566106099992,29.76875071600017],[-93.23905190499988,29.778414364000184],[-92.94626091599991,29.703677994000145],[-92.74016994899995,29.615823436000085],[-92.61627900499997,29.5787325230001],[-92.25953345499983,29.536823435000144],[-92.13374347899992,29.584384195000155],[-92.11179705599994,29.621778003000088],[-92.20163344899998,29.753705301000082],[-92.13293343099997,29.766596215000163],[-92.0614620739999,29.858555992000163],[-91.91767625899996,29.94760551400003],[-91.68369962299994,29.843151949000116],[-91.64285196099996,29.879936911000073],[-91.79588228899996,29.97755973500017],[-91.86088814399994,30.041689966999968],[-91.91383310599997,30.154461672000025],[-91.97371409999994,30.16981502700014],[-91.99893059599992,30.31311548700006],[-91.98062128899988,30.412057388000107],[-92.05923839799993,30.43806470100003],[-92.03646118699999,30.576611902000025],[-92.09932244599997,30.6949743080001],[-92.29367513799997,30.798573957000087],[-92.33478167299995,30.765309560000162],[-92.49547163499989,30.727954443000158],[-92.54187073799989,30.60701016400003],[-92.62697071899998,30.58774267900003],[-92.7190193059999,30.663694744],[-92.7757460389999,30.644159564000176],[-92.89866984699995,30.499891621000017],[-93.03141398899999,30.418744305000132],[-93.11271484299994,30.29156797700017],[-93.22298616699993,30.22106639000009],[-93.3167070049999,30.269450550000045],[-93.48104644799997,30.285534511000094],[-93.61979185099989,30.226814026000113],[-93.65809784399988,30.13308920300011],[-93.72833885599994,30.111211360000084],[-93.81374864999992,30.222477563000098],[-93.89858818699986,30.16021396500014],[-94.03840522899992,30.172760698000104],[-94.10066902899996,30.120832769000117],[-94.1629030329999,30.167657670000096],[-94.45853442499998,30.042451531000097],[-94.58726959799998,30.00713072000019],[-94.69563005799995,30.19130861400015],[-94.73419180699989,30.185532523000177],[-94.74009602899991,30.03190578600004],[-94.72234930999997,29.908523497000147],[-94.8175122699999,29.91126301100013],[-94.85521128099992,30.037415302000056],[-94.9503679799999,30.174918749000028],[-95.08304233599989,30.06530472500009],[-95.11074874499985,29.90861992400005],[-95.17601457899991,29.899786410000104],[-95.26766901299999,29.955120051000165],[-95.36095427299995,30.06511205000004],[-95.58184191099986,30.12138384600013],[-95.81025590199988,30.086127088000126],[-95.8921530099999,30.14007728900009],[-95.9897867439999,30.13088781400012],[-96.10817427199999,30.068317488000048],[-96.14134458699994,29.86433652800008],[-96.3436310589999,29.85567562900013],[-96.39927042799985,29.77758701700003],[-96.40070483899996,29.69986015000012],[-96.51214559499988,29.654729532000033],[-96.59457072099991,29.56223313400011],[-96.58878749099995,29.460043606000056],[-96.65402918899997,29.422422905000076],[-96.67712407599987,29.29207992200014],[-96.7472780839999,29.082115655000166],[-96.84958948699989,29.07997163700003],[-96.92147033799989,29.1278804210001],[-96.9803267659999,29.086998335000033],[-97.11718075299996,29.053066480000098],[-97.16074579799988,28.940698935000114],[-97.14771561099991,28.78320523400015],[-97.10647682899992,28.736223308000035],[-97.2151905579999,28.696955539000044],[-97.29317488699985,28.699773296000046],[-97.304017177,28.633233771000107],[-97.47993992399995,28.611610525000117],[-97.37186670999995,28.474968160000174],[-97.46405896799996,28.41882291400003],[-97.55803707599989,28.42832125300015],[-97.70863466399999,28.39095901000013],[-97.711218407,28.306597759000113],[-97.77380912999996,28.280962687000056],[-97.85091383599985,28.321782068000175],[-97.88234340099984,28.240893912000047],[-97.83224373699989,28.11694014900013],[-97.92165204799994,28.015064464000147],[-98.09590638899988,27.992663725000057],[-98.12482700499999,27.949362856000164],[-98.09372199699999,27.859395764000055],[-98.23765351499998,27.771639268000115],[-98.30738235099994,27.680849609000063],[-98.29241952499996,27.46314034100004],[-98.39311037499994,27.469497301000047],[-98.4652556819999,27.40752331100009],[-98.42085479799994,27.35072793300003],[-98.62455322399995,27.3239078470001],[-98.68101929799997,27.284379256000022],[-98.65103003799993,27.188306838000187],[-98.67222829899993,27.051144092000072],[-98.80670211299997,27.02521607100016],[-98.87339729699983,26.962569750000114],[-98.8200820159999,26.865682056000082],[-98.74726604299997,26.90665961800005],[-98.60885369599993,26.721614781000085],[-98.45418530199998,26.722434686000156],[-98.34569079499994,26.682787636000114],[-98.33933928799996,26.5821722820001],[-98.47650971299998,26.461676799000145],[-98.420993722,26.296188444000165],[-98.43037405799993,26.147373521000077],[-98.51071166699995,26.139459509],[-98.55228419299993,26.08498628200016],[-98.54045102099991,25.953180577000182],[-98.47795870199997,25.921922633000065],[-98.40827184699992,25.819702354000185],[-98.4215392459999,25.69293539800009],[-98.24040988699994,25.569109852000054],[-98.30185699799989,25.479726890000165],[-98.21305845899997,25.469541957000047],[-98.2173614319999,25.384307739000064],[-98.36897281799986,25.36138831700015],[-98.41855626799992,25.29892637500018],[-98.34774779099996,25.254703173000053],[-98.31147003199993,25.152212859000088],[-98.35563657699998,25.104163896000102],[-98.36303711299996,25.01080509000002],[-98.23604584499992,24.94892568400013],[-98.15908821399995,24.883572361000063],[-98.09522244999988,24.672281008000027],[-98.09676353999993,24.550644933000058],[-98.19015495499997,24.47198086500009],[-98.1087569359999,24.434636004000026],[-98.13968657799995,24.356349397000145],[-98.13890836099995,24.09471813199997],[-98.11029811799989,24.0186387870001],[-98.01007078799995,24.028019861000075],[-97.91027059399994,24.090039845000092],[-97.7767552759999,24.110902161000126]]]]},"properties":{"objectid":789,"eco_name":"Western Gulf coastal grasslands","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Nearctic","eco_biome_":"NE07","nnh":4,"eco_id":384,"shape_leng":71.7002755516,"shape_area":8.34039991995,"nnh_name":"Nature Imperiled","color":"#FBFC58","color_bio":"#FEAA01","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":91074.06061208098,"percentage":0.42480523186926344}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[80.8715365,30.121379486000137],[80.74919155900017,29.96908701000018],[80.74793963800005,29.889336219000086],[80.81807756000012,29.84317976000017],[80.87840262000003,29.901185548000058],[80.94358851300007,29.889065148000157],[80.97199260400004,29.69252242700003],[81.1287536390002,29.661626732000173],[81.2525935770002,29.789850739000087],[81.33067352000018,29.748954596000033],[81.432243578,29.767789738000033],[81.4323346060001,29.65746679300014],[81.58859255900018,29.533899770000062],[81.64101465800019,29.570237331999977],[81.59187357200011,29.720938420000095],[81.8617094990002,29.835398337000186],[81.89427956300017,29.89832480400014],[81.98089563600018,29.858690304000106],[82.04299162400008,29.78201030700012],[82.11633260700006,29.847076675000096],[82.11112258300011,29.619878483000093],[82.30517554400006,29.62419633700017],[82.45453653300007,29.60053606800011],[82.43811051700004,29.551720032000162],[82.2696686290002,29.54690027000015],[82.27627558,29.48111456700002],[82.2182315710001,29.442110219000085],[82.1912455310001,29.344901935000053],[82.37741849700012,29.338892111000177],[82.37272664300002,29.21097706000006],[82.10065459200001,29.218804751000164],[82.11808056900009,29.105078418000176],[82.04763754600009,29.088426930000026],[81.97548662600008,29.12515156800015],[81.90695165900007,29.078380380000056],[81.81534550400016,29.06966370400005],[81.87549554999998,28.981317271000023],[82.05163554600011,28.93364318500005],[82.1717296110001,29.044813708000106],[82.32065557800013,29.057091352000043],[82.35780350300007,28.95175429800014],[82.4766845380002,28.964650695000046],[82.43488365200011,29.120816615000024],[82.58457153500012,29.132727300000113],[82.77628359800008,29.060813923000126],[82.86577550200008,28.998009664000165],[82.93213653800012,28.998024416000135],[82.9553455250001,28.920816694000052],[82.80975354300011,28.876252461999968],[82.75953655500007,28.944811568000148],[82.59735058400014,28.9153597400001],[82.53153252800007,28.817893628000036],[82.704429565,28.769405659000086],[82.76976750600005,28.718208827000126],[82.82982652500004,28.78113311499999],[83.07031254700013,28.61772573400009],[82.94918851400018,28.57365854800014],[83.05905162800019,28.501765456000157],[83.21588860300017,28.539679989000092],[83.19428257200013,28.623380501000156],[83.29948450900014,28.59788861900006],[83.37077360100005,28.64873441700007],[83.45848854200005,28.54659254500001],[83.49224062200011,28.585088950000113],[83.61490659000015,28.595527604000154],[83.57538558099998,28.66321096900009],[83.76618150200011,28.842234675000043],[83.76982863600011,28.754448153000112],[83.70416262700013,28.744147632000022],[83.68692054900009,28.652674247000107],[83.68040462500011,28.68830471100017],[83.82757559000004,28.770839635000073],[83.85614061299998,28.8791153840001],[83.91751860800008,28.97077149600011],[83.99822963000014,29.00536511900009],[84.05111659000016,29.38974813500016],[84.006767605,29.415149157000087],[83.93362460300017,29.686582842],[83.85407263000008,29.78803287200003],[83.58364862900015,29.926237715000127],[83.52379664300008,29.928730660999975],[83.54374657900019,29.781615352000188],[83.76478558000008,29.696834581000132],[83.7182995450001,29.60457597800007],[83.65097056700012,29.607068756000103],[83.6609495580002,29.442499307000162],[83.71115849900002,29.35810242700012],[83.89154057600007,29.478077636000023],[83.89949064300015,29.388371156000176],[83.8611375690001,29.26131022100003],[83.85746763600014,29.162404935999973],[83.75413553400017,28.938708872000063],[83.65420564600015,28.979587246000165],[83.58380151500018,28.9284891530001],[83.50772065600017,29.02160053],[83.57812461900016,29.132880185000033],[83.42141756300015,29.190793101000054],[83.45889255000009,29.25438140400007],[83.41005656400006,29.349763774000053],[83.43163258900012,29.38610150400018],[83.56244660500005,29.371035871000174],[83.40429652000006,29.56986031400004],[83.30705252899998,29.644665447000193],[83.2372285940001,29.736924050000084],[83.08013161100001,29.821702810000033],[83.03275256800003,29.88403935900004],[82.68595165900007,30.06088662000019],[82.60865056300008,30.050910981000186],[82.61125951400004,30.170361651000064],[82.51650964300006,30.27625375500014],[82.64297462400015,30.367540392000024],[82.67075359300003,30.42222241900015],[82.58412159400012,30.580897882000045],[82.47850056200014,30.581123858000126],[82.32102153200003,30.646314277000158],[82.18211361500005,30.69104581200014],[82.08757765000018,30.745395749000124],[82.0359875380002,30.762954327000045],[82.01161950200014,30.7953812290001],[81.94797554300015,30.76806510900019],[81.8318254990001,30.78909128100014],[81.82682753800003,30.85163100700015],[81.93077051400007,30.862746752000135],[81.91319265700008,30.886961735000057],[81.76985959800004,30.935037985000122],[81.67209659900016,30.86758361300008],[81.58255758900015,30.945682667000142],[81.4537735020001,30.993878107000114],[81.34804551700006,31.00638558300011],[81.239875547,31.062427658000104],[81.02714552700002,31.204949852000084],[80.85807063700008,31.260469735000072],[80.70654259200018,31.38850028800016],[80.67939763100014,31.28476887200003],[80.58152063800009,31.328239601000178],[80.52277355500007,31.420724347000032],[80.38014256400004,31.57138838700007],[80.42435458900019,31.470053524000093],[80.30912756000009,31.407937922000144],[80.16667962999998,31.499887735000073],[79.97805764000009,31.711085711000123],[79.916595658,31.855342791000112],[79.83034553900006,31.995633052000073],[79.73242965500009,32.19411283100004],[79.67006661900012,32.26509430800019],[79.56161451500003,32.3232015160001],[79.4669186220001,32.299979286000166],[79.34944960200016,32.32614641400005],[79.36008456100018,32.42529930000006],[79.21755951700015,32.30747404800019],[79.14595761200019,32.300513213000045],[79.12274158400004,32.17721424400008],[79.05948654600019,32.06221989600016],[79.16906752500017,31.927175366000142],[79.01035350600006,31.829861638000068],[78.97535654600006,31.90097823100018],[78.74507850800018,31.908434101000125],[78.53648361500012,31.755326067],[78.42902359300018,31.717741278],[78.36296061800005,31.65258455300011],[78.1716235610001,31.443332520000183],[78.11766857900017,31.518580888000145],[78.03517154100018,31.47241168900007],[77.9845424990001,31.34457609800012],[78.04461660500004,31.31219999100017],[78.22978257000011,31.316814732000125],[78.33441152000012,31.168957121],[78.34899150500001,31.084147852000115],[78.42796361800015,31.06913536000019],[78.51750162200011,30.965725138000153],[78.69288657600009,30.96623006400017],[78.79576153000005,30.99061620600014],[78.96347855100004,30.925818394000146],[79.024467625,31.008403442000144],[79.00922362600005,31.065574728000115],[79.10959658100018,31.08971880000007],[79.24681856200016,31.056682869000042],[79.34210956900012,31.061765823000144],[79.25189950400005,31.16340813400018],[79.43994850800004,31.223123997000073],[79.52507059000015,31.168490082],[79.60003665600004,31.05414181200001],[79.66102556300007,31.12656145500017],[79.71184554500013,31.047789335000118],[79.81984754100012,31.031273800000122],[79.76647962800018,30.95249966900019],[79.75885762800016,30.769544850000102],[79.79189255200004,30.721264753000185],[79.72074159400017,30.605646959000126],[79.66864756300015,30.596753090000107],[79.60765865600007,30.75302864500003],[79.53778057300008,30.722534779000114],[79.51998864200016,30.84704828600013],[79.44121551600006,30.897867597000015],[79.41834264400006,30.779709584000045],[79.32559152000005,30.763190194000117],[79.39547765000003,30.618351410000116],[79.30780763600012,30.63359792400007],[79.29383064500018,30.690770718000124],[79.08799758999999,30.773355934000165],[78.979995594,30.777166682000143],[78.71365357899998,30.83606346600004],[78.60001358000011,30.71741997400011],[78.64602654100003,30.662489674000142],[78.84126252300013,30.587812616],[78.9423826420001,30.671919315000082],[79.09964759700017,30.683469913000124],[79.19584653200013,30.633710912000026],[79.2761225340002,30.4783265210001],[79.46234864100006,30.508086300000116],[79.59581754100009,30.476499433000072],[79.62805953800017,30.316074333000074],[79.60343149400006,30.20603754600006],[79.67915360800015,30.119849621000128],[79.80378764700004,30.13385913400009],[79.84123949900015,30.194172961999982],[79.73863963900004,30.255928478000158],[79.74660462700018,30.315691280000124],[79.69680053100018,30.410316764000186],[79.87111662500018,30.392388711000137],[79.84920465400006,30.55773466000005],[79.97072565400003,30.662319857000057],[80.04045856200014,30.639411780000046],[80.15799765500009,30.551756854000132],[80.15002462100017,30.501953597000124],[80.03547652600008,30.36150961200002],[80.16895263500004,30.235011438000186],[80.33236655500008,30.184657323000067],[80.43051964700015,30.05550409700004],[80.57008353100014,30.137371989000087],[80.76020856500008,30.024638074000165],[80.8715365,30.121379486000137]],[[82.13063850400005,30.101172393000184],[82.06984757700019,30.247413973000107],[81.95883949600011,30.327582853000024],[81.9059825440001,30.236840202000167],[81.78352360900004,30.272959834000176],[81.75797255000009,30.37251220100012],[81.79849955500015,30.43065411100008],[81.97998854600007,30.406868114000133],[82.03725454700015,30.44034493200013],[82.20993063700018,30.367225567000048],[82.21961961400007,30.27207906400014],[82.3253405590001,30.1786972860001],[82.28393563399999,30.090599628000177],[82.40621150800013,30.035280744000033],[82.47356462600015,29.96146132200016],[82.40463252500012,29.93554950700019],[82.33238957200007,30.016601337000168],[82.26543459400011,30.002502808000088],[82.1817396150002,29.890620159000093],[82.03549149700012,30.002502808000088],[82.13063850400005,30.101172393000184]]]},"properties":{"objectid":790,"eco_name":"Western Himalayan alpine shrub and meadows","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Palearctic","eco_biome_":"PA10","nnh":2,"eco_id":769,"shape_leng":63.3718427095,"shape_area":6.58596761239,"nnh_name":"Nature Could Reach Half Protected","color":"#DF72FF","color_bio":"#D6C39D","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":70319.86950424583,"percentage":1.440005853409574}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-102.29972257399999,42.99194748400009],[-102.47075117099996,43.00482521000015],[-102.41533637799995,43.09049324700004],[-102.31666205499994,43.143459353000026],[-102.29546224599989,43.2019783770001],[-102.17575707599997,43.259933713000066],[-102.00255661899996,43.277182484000036],[-101.96279819699998,43.318228500000146],[-101.77485013999996,43.23781421700011],[-101.63723298799988,43.24765857400007],[-101.57794822199997,43.31960397600011],[-101.68174287499994,43.36770461000003],[-101.94599498399992,43.37057062100013],[-101.96403632899995,43.425646125000185],[-102.08061065099997,43.52139176900005],[-102.23003791099995,43.43606052000007],[-102.30353118699998,43.5045728180001],[-102.39527595899989,43.4909593320001],[-102.4857155439999,43.338993095000035],[-102.55942608599997,43.34586206000006],[-102.67735641399997,43.27294497000008],[-102.78792489799991,43.24022403700019],[-102.80404010999996,43.045974140000055],[-102.86646738999985,42.95896749100007],[-102.81521419999984,42.86140018700013],[-102.99472684499995,42.842174194000165],[-103.04225932499997,42.780177538000146],[-103.19916092799997,42.70847205600006],[-103.30818578999998,42.69056813400016],[-103.37353772299997,42.63640083000007],[-103.49674077999987,42.77311135100018],[-103.63624442199995,42.826380824000125],[-103.80131209099994,42.765308133000076],[-103.9648393949999,42.81011645600017],[-104.04511292899997,42.869457575000126],[-104.2216628459999,42.89719626100003],[-104.33458945099994,42.87910651600009],[-104.41045787799993,42.90495757600013],[-104.53770816699995,42.85896101200018],[-104.68410001399991,42.879118936000054],[-104.99199823299983,42.807918956000094],[-105.06229974799993,42.77019575100019],[-105.13534343599997,42.66692023000019],[-105.0591382209999,42.60593799500015],[-104.96071113999989,42.58438780400007],[-104.94673086099993,42.37309129900018],[-105.03962558399996,42.35334130700011],[-105.22977929999996,42.170923203000086],[-105.15970908999992,42.072340752000116],[-105.2524027149999,41.98535802600003],[-105.18591235699995,41.94319726800006],[-105.25295477199995,41.81020138500003],[-105.16087359699998,41.796983795000074],[-105.00382745899998,41.840132238000194],[-104.898861233,41.78788805900018],[-104.95450096899998,41.729010755000104],[-105.03014057099995,41.42542453300018],[-105.14413837799998,41.389847491000126],[-105.10859148499992,41.31896341099997],[-105.10566566499989,41.203375258000165],[-105.15236086299996,41.09932915200011],[-105.0901545879999,41.06825317200014],[-105.13334545599997,40.96788676900019],[-105.11999175099987,40.88132844600017],[-105.1615970179999,40.8086403800001],[-105.14310365599982,40.440216195000176],[-105.20484013899983,40.40373451700003],[-105.19603948099996,40.222862527000075],[-105.27910959299987,40.14669117600005],[-105.29041094799987,40.03861385000005],[-105.26930269999997,39.88342644200003],[-105.07217855399989,39.44708165499998],[-105.02270403799997,39.39347878800015],[-104.82312069999995,38.98948537500013],[-104.88531569699995,38.866022408000106],[-104.8287250059999,38.74334684799999],[-104.8392523519999,38.48016701100016],[-105.05244071199996,38.49535228800005],[-105.12652961599991,38.47601372100007],[-105.26407660299992,38.4952063720001],[-105.26326595299992,38.39888780900003],[-105.20381628999985,38.3056146350001],[-105.1151885669999,38.256273170999975],[-105.09461991999996,38.19662740600006],[-104.99140144999984,38.16492660400007],[-104.94367729099997,38.02825477700003],[-104.86829275399992,37.95302554000011],[-104.92141537099991,37.91208481700011],[-104.93948885799989,37.82111528900003],[-105.05264836599991,37.66130578899998],[-105.08328562399998,37.54131274200006],[-104.99084801799995,37.48393518900019],[-104.86301428999991,37.53150965900011],[-104.7979384649999,37.58559571000012],[-104.68402828699993,37.50449049200017],[-104.66108095999994,37.41247170000014],[-104.49701663199994,37.24750546000013],[-104.53119952399999,37.16254607400015],[-104.37149433999991,37.100466404000144],[-104.22580515599998,37.06849219200012],[-104.13549840899992,36.987681560000055],[-104.02015159499996,36.96477882000005],[-103.90113369399995,36.99449985300009],[-103.91622644599994,36.860907651],[-104.06321374399988,36.882457701000135],[-104.28445976299997,36.812185707000026],[-104.36212900499993,36.91420703500006],[-104.42292857899997,36.91466020400014],[-104.54145163599998,36.80317976500004],[-104.54780168799994,36.756790832000036],[-104.71246716699994,36.62775963500013],[-104.90793877799996,36.54729732100009],[-105.019063056,36.47051506400015],[-104.94759776799998,36.403457058000185],[-104.88650306799997,36.25418745100012],[-105.18032039299999,36.085976254000116],[-105.24456444199984,35.95208558100012],[-105.23260008499994,35.85882526200015],[-105.26937866999987,35.7352116350001],[-105.23588294199999,35.5325814360001],[-105.30881011499997,35.54114738499999],[-105.35435465199998,35.41737346800005],[-105.52357337999996,35.42894894199998],[-105.51253596899994,35.35572485300014],[-105.56455087099994,35.3021930000001],[-105.65681648199995,35.436325044000114],[-105.77957476899996,35.540470349000145],[-105.85287161999992,35.50354233400009],[-105.85840254299995,35.38976944700005],[-105.89590368799998,35.25576638300004],[-106.01861049899992,35.29095754500014],[-106.08698363499997,35.278164760000095],[-106.23405821399996,35.13466654000018],[-106.13292419899989,35.00629922600007],[-106.13508526099992,34.92602835500014],[-106.24329470499998,34.74763696100007],[-106.30783710399999,34.72535572900017],[-106.3438791939999,34.63743496200004],[-106.34251092999995,34.49232598700013],[-106.55682094399998,34.2877885800001],[-106.66218747499994,34.2738941500001],[-106.6694614889999,34.27010943200014],[-106.73168361599994,34.11003064600004],[-106.67951264699991,34.066954723000094],[-106.5682510709999,34.062981416000014],[-106.42096107799995,34.164716625000096],[-106.36012616599993,34.150924729999986],[-106.3366807829999,34.039015923000136],[-106.29235757199996,33.97936014100003],[-106.27161186699988,33.810540599000035],[-106.183035051,33.728315630000054],[-106.05670302399994,33.846752978000154],[-105.97363106499995,33.84827593900013],[-105.81198210499997,33.80195793900009],[-105.78087436399994,33.894296281000095],[-105.65081250799994,33.968604624000136],[-105.56782988499998,33.95093923500019],[-105.57311273,33.83668635000015],[-105.51125977099997,33.695555081000066],[-105.33503239399988,33.704034449000176],[-105.21919278299998,33.68418081600015],[-105.15167502799989,33.56604476900003],[-105.17384233699994,33.48184697500017],[-105.26628524399996,33.369882167000014],[-105.22227534099994,33.32531508400018],[-105.15522867499993,33.08391935100008],[-105.18474187599992,33.04132677700005],[-105.18189372999996,32.89885183700005],[-105.25326777399982,32.80886916400004],[-105.24621212199992,32.756313577000185],[-105.14329510699991,32.71345197],[-105.09178015499992,32.646939622000104],[-104.97756644899988,32.7025458490001],[-104.87224194699985,32.70951248200004],[-104.77536980499997,32.74873284500018],[-104.8140926179999,32.86472207500003],[-104.74332353499994,32.95565280500011],[-104.58641434299989,33.002659535000134],[-104.58268706099994,33.04947969299997],[-104.69614187399992,33.079456139000115],[-104.712458444,33.24404357200012],[-104.76604324499993,33.329034185000125],[-104.62147114599998,33.46115643500008],[-104.59105445699993,33.592381745000125],[-104.63989338799996,33.70910515600008],[-104.61368115099998,33.76071239400005],[-104.48293346999998,33.79657551100007],[-104.39473899899991,33.76926052100009],[-104.30674033199989,33.828507186000024],[-104.18687229699998,33.774348175],[-104.22952774799995,33.66098047200006],[-104.00883736399993,33.51294398000016],[-104.03549579299994,33.42276399500014],[-103.96742810599994,33.383321765],[-104.05335294199989,33.243714239000155],[-104.03847798599998,33.127739741000084],[-103.95454387799998,33.07151414700007],[-104.03653027699994,32.93019182600011],[-104.04280670199995,32.792151524000076],[-103.75584393899993,32.61840769600013],[-103.65637230899989,32.60686568400013],[-103.69495113799991,32.50182045300005],[-103.6675876,32.46415513700009],[-103.54518375499998,32.46186483600019],[-103.33916954899985,32.40183774900015],[-103.30924215099998,32.30878498300018],[-103.3490395799999,32.22060610199998],[-103.23397550699991,32.177010784000174],[-103.16021605299989,32.19382303100002],[-103.0897440789999,32.08363707900003],[-103.10726602999989,31.966981794],[-103.04544712899991,31.74149448500009],[-102.95436748499998,31.719291863000137],[-102.9111827029999,31.615245727000115],[-102.80610997499997,31.4977105480001],[-102.85383858699998,31.40068741200008],[-102.78913393199997,31.362100641000154],[-102.63318110299997,31.368112653000026],[-102.48324430399998,31.340655718000107],[-102.39437362399991,31.367429386000083],[-102.34208850199997,31.426159851000136],[-102.24878245799994,31.408362451000187],[-101.99233794399993,31.24696265900019],[-101.81189820999992,31.308527671000036],[-101.70106906199999,31.413089608000064],[-101.47944764499994,31.46162499600007],[-101.35099531199995,31.61107271300017],[-101.26663560499998,31.61715582300002],[-101.25751179199995,31.68624610100011],[-101.35057477099997,31.781444734000047],[-101.49370659799996,31.76608161000007],[-101.54515379299994,31.858487142000115],[-101.44345770199999,31.931134364000172],[-101.41471984699996,32.150735576000045],[-101.18928129899996,32.068077359000085],[-101.15263452899995,32.02767457300007],[-101.02714542099994,32.01231171400019],[-100.94792850799996,32.035683094000035],[-100.83741147199999,31.97596536000009],[-100.76873176599997,31.986410274000093],[-100.72297573599997,31.886052120000045],[-100.53076776899997,31.817827261000048],[-100.45809386499997,31.745616858000062],[-100.30364969299995,31.708839055],[-100.18220077399991,31.694174469000075],[-100.07982198199994,31.723284215999968],[-100.08181216599996,31.783776383000145],[-100.15791359299999,31.831489891000047],[-100.15404008599995,31.895505446000072],[-100.21311850799992,32.006085540000186],[-100.49571926499988,32.01133983400007],[-100.55470318299996,32.080015064000065],[-100.67595454199983,32.07841721200003],[-100.64239893099995,32.152762973000165],[-100.66265546499989,32.254243003],[-100.51032789599998,32.36114257800017],[-100.47201915099993,32.41928181100019],[-100.50124631599994,32.53617550900009],[-100.56459389999992,32.50182359700017],[-100.67538496099996,32.627288078],[-100.63467544599996,32.74556607700015],[-100.65799152599999,32.802341359000025],[-100.58867202399989,32.9103250070001],[-100.5289226729999,32.879710434],[-100.37698966199991,32.966727602000105],[-100.34540611199998,32.942515637999975],[-100.07086096899997,32.98705982400003],[-99.98265656099989,32.978210322],[-99.98921500499995,33.060450544000105],[-100.05307109799992,33.09188346299999],[-100.02485230399992,33.16528360600006],[-99.94497772299991,33.24321482200014],[-100.01713693999989,33.323606199000096],[-99.98959017999994,33.416230603000145],[-99.79895496899991,33.510567387000094],[-99.66571943599996,33.54080411000018],[-99.62308321999996,33.61994818700009],[-99.5156182579999,33.68359036900006],[-99.47366747799998,33.63871684900016],[-99.32831155399992,33.67758735400014],[-99.22686064599992,33.63167715300017],[-99.14532345399994,33.69715446000015],[-99.165673874,33.81361400600019],[-99.26851021099998,33.862908195000045],[-99.36726675699998,33.950922899000034],[-99.53871735299998,33.920061718],[-99.6283831099999,33.88103981000006],[-99.76684814699996,33.86181193800019],[-99.78824910599991,33.93720042000018],[-99.758205079,34.01765084300007],[-99.65834368299994,34.13396478700014],[-99.9488912939999,34.26052102200009],[-100.05410910799992,34.25391432700013],[-100.18520627599997,34.4346765790001],[-100.10872162399988,34.48638159899997],[-100.11659055599995,34.55137994600017],[-100.0003902599999,34.57785484500016],[-100.03313957199987,34.64187346000011],[-100.14997287599994,34.65785732600011],[-100.19330864899996,34.71670290100013],[-100.30110886699998,34.77294207900019],[-100.3784977499999,34.88504220500016],[-100.51904888699988,34.91236682000016],[-100.62487207599997,34.83625465200015],[-100.81831312199995,34.818377512000154],[-100.9857827219999,34.91801126600018],[-101.00682491299995,35.02060856700018],[-100.90138212999994,34.989592600000094],[-100.55157927699992,34.980867934000116],[-100.36734979,35.027085062000026],[-100.29026122299996,34.97001614200019],[-100.08194838699995,34.91450083200016],[-100.04299464599995,34.862058504000174],[-99.79222596399995,34.80956363700017],[-99.75593815299999,34.89120088200019],[-99.81023262899993,35.006212404000166],[-99.65740975199986,35.04390235200003],[-99.66129568799994,35.14891268300005],[-99.76230581999988,35.16374592600016],[-99.920051818,35.12751478000018],[-100.05027694899991,35.21299605100006],[-100.325269516,35.172847294],[-100.40047300599997,35.20116034500012],[-100.54777833399993,35.16681098200007],[-100.63417225199998,35.21865756000017],[-100.54754544199994,35.30496737599998],[-100.55101723799999,35.35589466000005],[-100.39504135299995,35.37098922600018],[-100.32378151299997,35.411909586000036],[-100.38109762699992,35.47081504400012],[-100.3714257769999,35.57237836500019],[-100.18080995999992,35.665858031000084],[-100.09388565899991,35.642421568000145],[-99.99147486599998,35.70709749600019],[-99.95147313599995,35.91838487100006],[-99.80347266899997,36.083960360000106],[-99.78579198499989,36.15090471400009],[-99.6639906669999,36.212219584000024],[-99.59337756799988,36.334572660000106],[-99.57085161799995,36.43418614300015],[-99.5956203799999,36.53929356599997],[-99.65210864599999,36.56561592500003],[-99.77183689299989,36.534823077],[-99.82129787599996,36.56628477800018],[-99.87862206299991,36.70204193100011],[-100.08600690899993,36.80769221600008],[-99.98259856399989,36.846805332000145],[-99.97225400499991,36.92453152200011],[-99.86836013599992,36.92063577800019],[-99.75693372699993,36.95936141200019],[-99.53758690399997,36.95888045200019],[-99.4607519349999,36.99451250200019],[-99.28787280399996,36.991406809000125],[-99.22794060599995,36.941749469],[-99.04274407799983,36.89586596200013],[-99.02934475899997,36.99960637600009],[-98.78927494399989,37.00221095300003],[-98.62725399199996,37.05311726800005],[-98.4677107149999,37.00346533300012],[-98.39019193899998,37.08309692000006],[-98.39246440499994,37.20330977200018],[-98.29471612899988,37.35229970600011],[-98.37285796699996,37.37922950400019],[-98.52065960399989,37.382532390999984],[-98.60611920099996,37.48439956500005],[-98.73974452399995,37.53437197800008],[-99.20265109899992,37.57889092700003],[-99.35958000799991,37.50532416700014],[-99.4957162529999,37.50533758800009],[-99.74237682399996,37.43429691500006],[-99.83523788199994,37.4959520970001],[-99.95687639899995,37.43494762900008],[-99.84525510299994,37.35796408900006],[-99.97829173999997,37.3320073160001],[-100.06460797699998,37.36328543299999],[-100.24209665899997,37.25208183300015],[-100.26520404199988,37.340553685000145],[-100.32494586899998,37.35542466200019],[-100.38865775499988,37.543062293000105],[-100.22610263299998,37.641444949000174],[-100.1205663739999,37.73194385400012],[-100.00013007799998,37.73494300900006],[-99.98914072899993,37.850454890000094],[-100.03892473299999,37.98372868300004],[-100.19021089699999,38.05974956700015],[-100.48906904499995,38.06820303300009],[-100.59707524099991,38.034160713000176],[-100.64187203699998,38.13462275200004],[-100.61816028099997,38.20154549000017],[-100.51708116299989,38.25814795300005],[-100.39204282799994,38.36717141000008],[-100.42657691699992,38.63110961400008],[-100.55262950999997,38.61603227000012],[-100.784372309,38.66638792700019],[-100.9611372739999,38.662037855000165],[-101.04123768499994,38.68952845500013],[-101.26959984099994,38.855131460000166],[-101.2887519279999,38.92833502500008],[-100.96518759899999,38.95276296800006],[-100.8286176229999,38.991895397],[-100.67942305699995,39.061264631000086],[-100.60598025099989,39.045236821000174],[-100.37269096099999,39.06205787100015],[-100.34292907799994,39.14020857500009],[-100.53122025299996,39.208988971999986],[-100.60648069099989,39.294970813000134],[-100.56813976099994,39.34487088200018],[-100.42002351999997,39.39090088200004],[-100.43250058399997,39.477193125999975],[-100.56677270499983,39.49706712400018],[-100.6166848439999,39.59093414900008],[-100.70166236899996,39.62568778100007],[-100.95477056699997,39.50187484600008],[-101.03556706299997,39.53239102800006],[-101.04287295599994,39.67959519700014],[-101.1215178199999,39.69593319700016],[-101.29604356599998,39.619475074000036],[-101.35919728599998,39.66978614400006],[-101.31641457199999,39.830692456000065],[-101.2121814649999,39.87265590000004],[-101.16676972399995,39.939296406000096],[-101.29100856199994,40.04709282200014],[-101.26070422499987,40.09392061200009],[-101.13739009999995,40.133729684],[-101.04977568699991,40.25498163600014],[-101.11260486499998,40.37677602400015],[-101.10909503599993,40.470945835000066],[-101.20103124499997,40.66713718600005],[-101.14276935699996,40.70710304600016],[-101.16713576999996,40.816155674000015],[-101.29968976299995,40.904266704],[-101.24626682199982,41.09969558800009],[-101.14677626699995,41.13755763400019],[-101.07418238599996,41.21766000900004],[-101.36897667699992,41.18284513600008],[-101.59829546599997,41.248434047000046],[-101.73832268199993,41.25376577500015],[-101.95443561199994,41.29708385900011],[-102.18319223599991,41.37694735600013],[-102.26225429199991,41.37320480400007],[-102.37542389299983,41.46641313000009],[-102.55258952399998,41.55823978400002],[-102.70337763999993,41.59987291500016],[-102.79536043999991,41.688060742],[-103.24649254699989,41.90321051000018],[-103.38179765699994,42.00002267500008],[-103.42512737399994,42.09607024000013],[-103.37699903799995,42.13340920500019],[-103.18717478999997,42.06018961700005],[-103.1014189959999,42.08512632500009],[-103.01091011599993,42.0491120050001],[-102.74975368299988,42.06811374700004],[-102.77640728599988,42.27248828000012],[-102.72681296699989,42.30137879700004],[-102.69830105299991,42.407544236000035],[-102.5317088079999,42.491287047000185],[-102.44636790299995,42.623629490000155],[-102.34911976099988,42.66444010500004],[-101.98205467599996,42.75034203300004],[-102.15318931199994,42.943971239000064],[-102.29972257399999,42.99194748400009]],[[-105.80383480899997,34.17328498],[-105.86938204599988,34.23927059900018],[-105.79200198499996,34.31019514400003],[-105.66105693699996,34.255793641000025],[-105.692500839,34.16645734200017],[-105.80383480899997,34.17328498]]]},"properties":{"objectid":796,"eco_name":"Western shortgrass prairie","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Nearctic","eco_biome_":"NE08","nnh":2,"eco_id":402,"shape_leng":74.17527384,"shape_area":49.3113559732,"nnh_name":"Nature Could Reach Half Protected","color":"#E7BD33","color_bio":"#FEFF73","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":488076.59959354583,"percentage":4.6065397277037246}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-122.8454431859999,45.995031925000035],[-122.90451351499996,45.77204279200009],[-122.87720298199997,45.66366407800018],[-123.16420977999996,45.733865241000046],[-123.28277757499995,45.63404763800003],[-123.32198173399996,45.40876547800008],[-123.39804872399998,45.367709215000104],[-123.35060990499983,45.22188610000012],[-123.5187395019999,45.18484799200013],[-123.66010511099995,45.03860395300012],[-123.52231825799998,45.02811519900001],[-123.41491115799994,44.95621168100007],[-123.49403610199994,44.54016466000013],[-123.42477769399989,44.41745081200003],[-123.41222578599996,44.23359564100008],[-123.50508860599996,44.10396360400017],[-123.46526635899988,44.025586359000044],[-123.3290893329999,43.93701800700006],[-123.39120184899997,43.886117151000064],[-123.40485868499997,43.785479661000124],[-123.29296719899997,43.667588162000186],[-123.12416885599987,43.605579323000086],[-122.95635990099998,43.77378943700012],[-123.00171184399989,43.868563359],[-122.889612237,43.92016426600014],[-122.76516473299995,43.85488757000013],[-122.65769747399997,43.911872582000115],[-122.76274924499995,44.01087818800016],[-122.77179456799996,44.08819040500009],[-122.91992966599997,44.187081623000154],[-122.91799083599994,44.30009253900016],[-122.72400442299988,44.32768009900013],[-122.65124496599998,44.38139139200001],[-122.72690104799995,44.551557210000055],[-122.70187641099989,44.6721078330001],[-122.61103807699993,44.712616193000144],[-122.5818107849999,44.80238846900011],[-122.7202956299999,44.87102092300012],[-122.70265312399994,45.006656988000145],[-122.50603847699995,45.08234241100007],[-122.37519456099989,45.17798915200018],[-122.34757873599995,45.283334872000125],[-122.2601798579999,45.45277888099997],[-122.3102737719999,45.539158388000146],[-122.2003178029999,45.564230090000194],[-122.19218684099997,45.62173827200007],[-122.35437695899998,45.63520069700013],[-122.45481130799988,45.69771913400007],[-122.46387055399998,45.81655309700005],[-122.59983295799998,45.9538841640001],[-122.74687676199994,45.93941276800018],[-122.8454431859999,45.995031925000035]]]},"properties":{"objectid":799,"eco_name":"Willamette Valley oak savanna","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Nearctic","eco_biome_":"NE08","nnh":4,"eco_id":403,"shape_leng":12.1425449311,"shape_area":1.69530922012,"nnh_name":"Nature Imperiled","color":"#A87001","color_bio":"#FEFF73","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":14885.263261190528,"percentage":0.14048933431167435}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[179.58358772000008,70.88449529500014],[179.99998474500023,70.9958829090001],[179.99998860100004,71.53457257200012],[179.47302270600017,71.41924127200019],[179.2241207500001,71.3111866380001],[178.84912060400006,71.20618469300007],[178.61773665800013,71.03422324300004],[178.79101574300023,70.79507312800013],[179.09551972400016,70.86615367900009],[179.58358772000008,70.88449529500014]]],[[[-179.71673559399997,71.57659859600017],[-179.99998860099998,71.53455782000015],[-179.99998474499992,70.9958911240002],[-179.27444469099993,70.90643878200007],[-178.88504074699998,70.97060560400007],[-177.93890358599992,71.03617639400005],[-177.620025646,71.11532922100002],[-177.43945262999998,71.22562551100015],[-177.71502663999993,71.30146614500006],[-178.082214684,71.46202854100005],[-178.58917264099998,71.56423880900007],[-178.9686275999999,71.582855016],[-179.21722361699995,71.565932121],[-179.71673559399997,71.57659859600017]]]]},"properties":{"objectid":801,"eco_name":"Wrangel Island Arctic desert","biome_num":11,"biome_name":"Tundra","realm":"Palearctic","eco_biome_":"PA11","nnh":1,"eco_id":783,"shape_leng":9.53132523407,"shape_area":1.89435031987,"nnh_name":"Half Protected","color":"#59B4AF","color_bio":"#9ED7C2","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":7548.005772698904,"percentage":0.08833081824306446}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-108.65156370499994,45.231718902000125],[-108.76219907299992,45.20923674300002],[-108.86321537299995,45.247650021000084],[-108.9475754469999,45.19858096000007],[-109.07226439599998,45.21038277800011],[-109.00853735099997,45.17437574100006],[-109.04914017899983,45.087474849000046],[-109.21670122999996,45.11384163300005],[-109.21468872399998,45.04128208200012],[-109.30782541499997,44.99919078],[-109.28319082899998,44.82663147400001],[-109.33420148699997,44.76039954400005],[-109.26298849399996,44.66838397700019],[-109.27090819099993,44.609139777000166],[-109.17158660099989,44.55117506100015],[-109.20086434499996,44.50808976400009],[-109.52461926099988,44.48798678800017],[-109.32721521299993,44.39738105300006],[-109.49126409099983,44.326251868000156],[-109.55308220899991,44.26407057900002],[-109.473027963,44.22936174400013],[-109.19469955499994,44.34516688500014],[-109.13211645299998,44.31407703200017],[-109.16493799199992,44.23243845800016],[-109.3169654109999,44.127546216999974],[-109.23946713599997,44.05882301600019],[-109.14075472299999,44.038481583000134],[-109.10704536599991,43.946429823000074],[-108.93421785999993,43.865000458],[-108.96920702499995,43.751633497000114],[-109.03214254499994,43.67282623800014],[-109.11961578099994,43.66873935600006],[-109.19630796799999,43.59878183200016],[-109.47008165199992,43.68912594700009],[-109.52911185799991,43.658095694999986],[-109.73034354099991,43.65641002900014],[-109.80540211099998,43.60322645500014],[-109.63431785299991,43.490699230000075],[-109.51585641099996,43.45013987800007],[-109.387557373,43.301621364000084],[-109.27974170299996,43.22844235500003],[-109.23932445099996,43.15281467700015],[-109.14170110199996,43.119005955000034],[-109.08071634599997,42.98035161500013],[-108.93662552399996,42.886794407000025],[-108.88700234199996,42.78037330200016],[-108.79839192199995,42.74055787300017],[-108.7574701819999,42.66635017800007],[-108.56675919599996,42.54367371600006],[-108.89656836199993,42.48185815400012],[-109.03444369199991,42.50995449300018],[-109.06964000199991,42.55151916900002],[-109.32044193599995,42.587248398000156],[-109.40066479099994,42.67112362400019],[-109.55332334699989,42.76607318400005],[-109.61059861099983,42.82993638900007],[-109.75775936399992,42.89820796000015],[-109.88309639699997,43.04939868800011],[-109.98690924399995,43.071512518000134],[-109.97410644499996,43.188566544000025],[-110.12159989799994,43.189182025000036],[-110.19639352799993,43.08641388900003],[-110.38603597799994,43.02216699000007],[-110.36169059599996,42.93981968700007],[-110.44148709599989,42.88527740000018],[-110.46537117999998,42.817023216000166],[-110.37239787999994,42.610201276],[-110.43595899099984,42.589294902],[-110.35835834499994,42.34503116600007],[-110.42284190099997,42.223622983999974],[-110.51488552199999,42.16381482300011],[-110.76757095499994,42.13609528600011],[-110.78091084399995,42.002940049000074],[-110.85678579799992,42.01500500600008],[-110.83931062599999,42.21119152900019],[-111.02157826499996,42.23987056500005],[-111.04809314299985,42.4199638070001],[-111.11870629299995,42.44386893000012],[-111.17973421699998,42.344823542000086],[-111.27327547699991,42.3697969430001],[-111.31980221699985,42.45945018500015],[-111.41600216199998,42.27301091000004],[-111.39234256299989,42.04882280100014],[-111.41040763199999,41.989224273000104],[-111.36309200599999,41.89451885300019],[-111.38570502099998,41.80703583900009],[-111.34004357599997,41.76739244300006],[-111.32033750499988,41.437750769000104],[-111.27434567699993,41.39556339800015],[-111.26114173099995,41.24232675500008],[-111.21180345299996,41.14262771200009],[-111.08249229199998,41.18280118100006],[-111.07660307199995,40.962225418000116],[-110.9836268869999,40.95347983400018],[-110.84102813399988,41.00646521600015],[-110.77559718999993,41.06743761200016],[-110.64661790399992,41.08373501300014],[-110.52805726699995,41.128139358],[-110.48831772799991,41.05853607700004],[-110.31112374499997,41.10234279800005],[-110.19840202699993,41.06892729900005],[-110.29699645599993,40.990946895000036],[-110.207065721,40.93193987200016],[-110.001632,40.9437032350001],[-109.87881687499993,40.992240810000055],[-109.71097445899994,40.93696493700003],[-109.61428258099988,40.97490658600003],[-109.53761986599989,40.948421335000035],[-109.38252668899992,40.972278691000156],[-109.321700508,40.90700213500014],[-109.2473347369999,40.89676178900015],[-108.94720232099996,40.78413840600018],[-108.80600049799995,40.614199311],[-108.64635622299994,40.56449763400019],[-108.45958585699998,40.57318146799997],[-108.3766255029999,40.55529325900005],[-108.31102993299999,40.44266102200004],[-108.22194042799987,40.40232508700012],[-108.00264196199998,40.479107305000184],[-107.96330322799997,40.28904719700006],[-107.8400720489999,40.259181438000155],[-107.78052860399998,40.287733446000175],[-107.68956984499994,40.203195789000176],[-107.63499252799994,40.28612028800012],[-107.6375343329999,40.42178773600011],[-107.42532631299997,40.45969451800005],[-107.32760090399995,40.38909071300009],[-107.24333668499997,40.43178467600006],[-107.13959551299996,40.40214666800006],[-107.16979261599994,40.53672935000003],[-107.2884398,40.57666362200018],[-107.33046593499995,40.675300714000116],[-107.43864002399994,40.68576625900016],[-107.51278674299994,40.73127611400008],[-107.5455394569999,40.84872986000016],[-107.5048671649999,40.96033464100009],[-107.38495640799994,40.98469942700001],[-107.47889434099994,41.1229479050001],[-107.49847109999996,41.30307720200017],[-107.460497106,41.35581952600012],[-107.4812985349999,41.45420367600008],[-107.40002880599991,41.54316580300008],[-107.31767290899995,41.530780363000076],[-107.28771938299997,41.46678814700016],[-107.14660555899997,41.351523402000055],[-107.02264134799998,41.32409975600018],[-106.83632550399989,41.188300136],[-106.77060031699995,41.18899563800005],[-106.58990779399988,41.113167400000066],[-106.50583760599994,41.11682315200005],[-106.6099214759999,41.25835249100004],[-106.57028405499989,41.3729304420001],[-106.64420630799998,41.481579199000066],[-106.61553706899991,41.60304410800006],[-106.65721490599992,41.669475493000164],[-106.55790911199995,41.72770894000013],[-106.48011106699983,41.59961704400001],[-106.2499888609999,41.618328548000136],[-106.16277108799994,41.577361745000076],[-106.02035935999993,41.41813825100007],[-106.07162108499995,41.31030524700003],[-105.98660117999992,41.2099985750001],[-105.98551585299998,41.04789023900008],[-106.08142731099997,40.97018706799997],[-106.04462051799993,40.914152174000094],[-105.87868526599993,40.816448347000176],[-105.80246672599992,40.92431189000018],[-105.7095181439999,40.967922774000044],[-105.66413531499995,41.045421138000165],[-105.49401716199998,41.063657401000114],[-105.53890663699997,41.21007689400011],[-105.49540406099999,41.41342648400018],[-105.54010966299995,41.65499888300013],[-105.50411163399997,41.76540772200008],[-105.43248925599983,41.83678256500008],[-105.49274206899997,41.871805764000044],[-105.48299812,41.97613023100013],[-105.63935527299998,42.05635376100014],[-105.69796305399996,42.13830099500012],[-105.66470220199994,42.19048441400008],[-105.78406584599998,42.21863189000004],[-105.88816284299998,42.310613734000185],[-105.94975930499993,42.40323033600015],[-106.10756383799998,42.44953733600016],[-106.27284827899996,42.39430620600018],[-106.41261075699987,42.459053291000146],[-106.39708966499995,42.57091795499997],[-106.422382659,42.650004343000035],[-106.57099171099998,42.74843581300007],[-106.40252673999993,42.76913401300004],[-106.536478188,42.85721220500017],[-106.57775192599996,42.9997314470001],[-106.67425564299998,43.062263393000194],[-106.72851422999997,43.20269602500014],[-106.9069736329999,43.32912618600017],[-106.82519777099998,43.37531588500019],[-106.75574362999998,43.51409353500014],[-106.80901871799989,43.62177000700018],[-106.69169972799995,43.66096161200011],[-106.667692521,43.726673793000145],[-106.817900652,43.850308814000186],[-106.81244869999989,43.905840969999986],[-106.91250873199994,43.935401125000055],[-106.96513482199992,43.81507881600004],[-107.0638501649999,43.714895378],[-107.12875340499994,43.725945454],[-107.11049530899993,43.87308975999997],[-107.18878564199997,44.003287508000085],[-107.31190606999996,44.06411660100002],[-107.39584354199985,44.24093249700013],[-107.4799793389999,44.30518698500015],[-107.51930744799989,44.436252753000076],[-107.62110673999996,44.49400842200015],[-107.62932392599987,44.56160332200011],[-107.79053642799988,44.644495126000095],[-107.8321026459999,44.73029205600011],[-108.01260210399994,44.82281129300003],[-108.02364109599989,44.91722111200011],[-108.1095108259999,44.99065996400009],[-108.27529166599999,45.03031439000017],[-108.43855842699992,45.041654569000116],[-108.61907148099993,45.10935701200003],[-108.65156370499994,45.231718902000125]]]},"properties":{"objectid":802,"eco_name":"Wyoming Basin shrub steppe","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Nearctic","eco_biome_":"NE13","nnh":2,"eco_id":438,"shape_leng":39.080209563,"shape_area":14.5201229934,"nnh_name":"Nature Could Reach Half Protected","color":"#B57C47","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":132764.01729507963,"percentage":0.503233712569532}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[67.16505463300001,68.73637846500003],[67.66199453900003,68.53216613400002],[67.69912754300003,68.55146211400017],[67.40099364100007,68.69708410300007],[67.16505463300001,68.73637846500003]]],[[[66.88352963900007,70.42513313800009],[66.82543148300005,70.58194882300012],[66.69309950400003,70.57415180900017],[66.59992258099999,70.45907867200015],[66.88352963900007,70.42513313800009]]],[[[77.69270357400006,72.33245012700002],[78.36020649200009,72.51295742900004],[78.1312864900001,72.62176693800012],[77.65985858300019,72.64792937200014],[77.33146651300007,72.56711424700012],[77.20884664500011,72.45864789300009],[76.9278336180002,72.39333694200019],[77.1081234940001,72.3104610420001],[77.69270357400006,72.33245012700002]]],[[[84.50229650100016,69.65130058100016],[84.46040358100015,69.59801380500011],[84.24297366000008,69.59454252300014],[83.8983996550001,69.71651212300009],[83.48384061400003,69.75074783900004],[83.33696754200008,69.84901995400008],[83.39337154800012,69.89084699199998],[83.29210659000017,70.00043450900017],[83.13076752700016,70.07154339000016],[82.71777355500012,70.13463498100015],[82.61466256700015,70.22904639200016],[82.67252351500014,70.30856500400012],[82.94819660000019,70.50027220600003],[82.93509652300014,70.60296208700004],[83.08130658700009,70.88632674100018],[82.80333753100001,70.99953037800003],[82.50126664900012,70.93199855800015],[82.40524256000003,70.66329854600014],[82.29525757300001,70.70182881400012],[82.30108651700004,70.862071357],[82.11139650400008,71.01231797700018],[82.29955262800007,71.13721839300018],[82.19286357400017,71.26887948400008],[82.728469534,71.39015539700011],[83.00845359900012,71.41026039800016],[82.96634660500013,71.55116840500006],[83.28415652300004,71.59624561000004],[83.41323062300006,71.65121899200005],[83.346610586,71.73822214100011],[83.13577252900018,71.73964153300011],[82.79759961600018,71.78570981400003],[81.98680152500009,71.67497045600004],[81.78132654400008,71.6715905370001],[81.3695836550001,71.74605771200015],[81.13596358500007,71.9151047740001],[80.70802250000008,72.08491492400003],[80.64395156799998,72.17645100600004],[80.00517259400004,72.25831085200008],[79.51924852000019,72.39535899200013],[78.70581063300017,72.43099029500019],[78.12481649900008,72.40494168700013],[77.5310215230001,72.19338848600012],[77.60999262900003,72.11081869300006],[77.86460852900018,72.15359942400005],[78.09024852400012,72.14382461600007],[78.26378661000007,72.07134948400005],[78.21611051200011,71.97142026700004],[77.78061649500012,71.87526944400014],[77.54107662100017,71.89828095300015],[77.28373760900018,72.01400318500015],[76.79743148900019,72.09266684300007],[76.32084653200008,72.03406225200007],[76.0473936460001,71.92559556400005],[76.03724651400006,71.79032623100017],[76.2547305830002,71.6018613170001],[76.499076639,71.52357115600006],[76.92375163100002,71.43618629500003],[77.1729436010001,71.41169487700006],[77.37355054,71.33558719600018],[77.52736651000009,71.35331140100004],[77.92569751600018,71.26151698800004],[78.33936354800005,71.28812936300005],[78.43987262600018,71.23479715700017],[78.34838851100005,71.10766061700008],[78.49548353600017,70.94985217900006],[78.85118854100017,70.98114215900011],[78.96260063000017,70.92524626400012],[78.49031056100011,70.91126810000014],[78.06139365500019,70.98480471500011],[77.97016854100008,71.10723364300009],[77.44082654500016,71.18377634500018],[77.05841059400018,71.17370498500014],[76.66078953500016,71.229768686],[76.08399155000006,71.2058946790001],[75.414039607,71.33017014000012],[75.19715853300016,71.42240745200013],[75.41275751100017,71.48016463200003],[75.50708057700007,71.56102669600011],[75.37812063799998,71.6296414590002],[75.44165764300004,71.70668020200003],[75.20034751200012,71.80769956900002],[75.25289953000015,71.98348400500004],[75.35954265200013,71.97705961100019],[75.46401251400005,72.22055809000017],[75.59813654400011,72.30188551700013],[75.47503656100014,72.49451606900004],[75.64514158600014,72.56829643000015],[75.29382350200012,72.68861211300015],[75.52635157800017,72.73491793700009],[75.41206349000004,72.80611248100018],[74.95497148700002,72.8869735400001],[74.69096349700015,72.80545651400013],[74.94776154200008,72.68568280500006],[75.023780542,72.59484929400014],[75.02218663900004,72.32087555700014],[74.878967574,72.11058198800009],[74.35540758200011,71.97171011300003],[74.22914862800019,71.99427251999998],[73.78427861300014,71.89405395900019],[73.54044351800019,71.81116364200005],[73.51513654000007,71.67173520900013],[73.15386964000004,71.5026500940001],[73.07232663000008,71.43663740900007],[73.51019255800014,71.30974461500006],[73.75137360800011,71.14803021000006],[73.82331062200018,71.04160887300003],[73.99588059700005,70.96806555200004],[74.12890659800007,70.76499668100018],[74.30444359900014,70.70388891800002],[74.42149352400014,70.59592665300005],[74.27852658699999,70.43723476200006],[73.94085658800003,70.28202856900015],[73.72276265200003,70.15403690800008],[73.86195354200004,70.08449929800014],[73.82253261400012,69.974393109],[73.55293255300018,69.78802719100008],[73.62741062500015,69.6703675660001],[73.79486864500012,69.58234266300002],[73.9061965800002,69.42004018400007],[73.87962360000012,69.27265514500016],[73.81226360900018,69.20845043700018],[73.89842253300009,69.09672620599997],[74.26640350500003,69.16209197500018],[74.76170357500013,69.13254928700007],[74.98702254400013,69.09136296100007],[75.25002252600012,69.09707740800008],[75.20448264000015,69.17925895100018],[75.52001150600017,69.2536801930001],[76.20984649700011,69.2311337110001],[76.55245963900006,69.12352264700013],[76.78350864500015,69.115442325],[76.91506160900008,69.00638203000017],[77.63884749900006,68.90855298200006],[77.80077363100008,68.68211553200013],[77.74815355100014,68.62970567100007],[77.87339762500017,68.471196841],[78.12912764700008,68.29465820200005],[77.76537350100011,68.24495770700014],[77.51579261000012,68.15196585600017],[77.5164334910001,68.01119514500004],[77.61736250100017,67.96738478100019],[77.48535155000008,67.90093674000013],[77.49310263100006,67.81809269100012],[77.59642065200018,67.77091012000005],[77.80332960800013,67.79442504700012],[77.99825261100011,67.76658371700012],[78.06678757700007,67.69181194400005],[78.32421862300004,67.69094994900007],[78.41359753900014,67.64555255600004],[78.91929653300014,67.64477438000017],[78.93596663000017,67.59023652100007],[78.566398628,67.53990989800008],[78.24627664600007,67.5671792460002],[77.99550653200004,67.55771775400018],[77.73087358700019,67.58757325500017],[77.53655961400011,67.68322049300019],[77.37557963100011,67.71529602500004],[77.14791859100006,67.8330393010001],[77.31951157200007,67.88637938600004],[77.24623161000011,68.0062737940001],[77.27429958600004,68.19268581200015],[77.37625856500017,68.27042595200004],[77.20990762700018,68.30574394000013],[77.29029058100002,68.38119464700003],[77.26978257800005,68.5649821240001],[76.67806949900012,68.75794744900014],[76.69896659000011,68.90575258800015],[76.57218963400015,68.96927836200007],[76.11369349500012,68.97330620200012],[75.77088958000013,68.90406682000014],[75.36786655200012,68.8865327170002],[74.73697662500018,68.78196579200011],[74.56852752900011,68.72284269700009],[74.47720350900005,68.63223180900019],[74.49510155400009,68.51891334000004],[74.34741258800011,68.35759657200003],[74.65325951800003,68.19817897600007],[74.765502589,67.906056407],[74.76839451300003,67.72541382000009],[74.59087351500006,67.62499727900007],[74.14540050700015,67.49884678600012],[73.92360663099998,67.30102113100008],[73.9925536520002,67.19590603000017],[73.84559659400009,67.01346921300012],[73.65194663400013,66.93537116600004],[73.4724195120001,66.82446450500015],[73.15373251200003,66.76036624700009],[72.94303158200012,66.66265219900015],[72.6036525130001,66.63197275700009],[72.38156862400007,66.54672528100008],[72.46202064600016,66.36497578100017],[72.235946635,66.2783774770001],[72.49474359600015,66.17297236300004],[73.29567752800006,65.92863703500018],[73.97786755200008,65.6987666930001],[74.41739661800005,65.56186573900015],[75.0343625270001,65.53151436500008],[75.31877156600018,65.60711007900017],[76.39325762600009,65.81218306300008],[76.686561541,65.78122148600005],[77.59718357200006,66.03342390100005],[78.319633554,66.21856019300009],[78.99358349700015,66.12542367000003],[79.89704855700018,65.9319711890002],[80.3800426520001,65.94404062600006],[81.4333265200001,66.26541486400004],[82.06247753800017,66.3446500010001],[82.97139754000017,66.34719793200014],[83.57875058000013,66.3310002390001],[84.08228251700018,66.20956507000005],[84.64459255100013,66.2792934520001],[84.91783857100017,66.39686858700003],[84.97109953100005,66.61443982700018],[84.92671165400009,66.7488986300001],[85.28320355100004,66.79753093500005],[85.45250659600015,66.91577813200018],[85.410789529,67.00949401200012],[85.11588265900008,67.10844506100005],[84.66589364900005,67.29092680500014],[84.75183062000019,67.5374767990001],[85.4052276330001,67.72895366600005],[85.83374053100005,68.14198485300005],[86.34880864900003,68.33260140100003],[86.19541160700015,68.4857236850001],[86.08886755900016,68.78076868900013],[85.92333251500014,68.94504611200006],[85.930618568,69.10957482500004],[85.84355959600003,69.3073562240001],[85.981170497,69.47244954200016],[85.86462365400013,69.60472100400006],[85.6677096140001,69.70403029500011],[85.25923952300019,69.77029510699998],[84.9969025490002,69.77029510699998],[84.78610958600018,69.73715926500012],[84.50229650100016,69.65130058100016]]],[[[65.40500650900015,66.74330622400015],[65.26673863399998,66.55610949300006],[66.75454757200015,66.61733862500006],[67.86102249500016,66.59953780900014],[68.57563053500019,66.50938541099998],[69.41986856400007,66.44668274100019],[69.91491650700016,66.44388301700013],[69.71633949700004,66.51727362000014],[69.4547724860002,66.53447144200004],[69.17176858900001,66.62354911200009],[69.08421357500004,66.78262221200009],[68.8662495590001,66.79563880500018],[68.49118051400012,66.68932542700014],[68.28444657100005,66.68396235000006],[68.4610975280001,66.80805290600017],[68.6404575160002,66.79552481100018],[69.08892856300008,66.85164198800004],[69.24298861400018,66.78552939100007],[69.43016053600007,66.78178318300007],[69.5216366040001,66.62732616500006],[69.78180652000009,66.54581701800015],[70.06672652000009,66.6001951180001],[70.03806259000004,66.72240829600014],[69.676666609,66.79681411500007],[69.88339954500009,66.87594313700015],[70.05133851900007,66.79617289900017],[70.26609059000009,66.80896066600013],[70.68459348400012,66.79054260700008],[70.27903761300013,66.59689868300012],[70.5944824930001,66.50884310200018],[70.96695750600003,66.53026758200019],[70.98597755300017,66.61675071800016],[71.3806605870002,66.72375124400008],[71.58315261600012,66.67723302300004],[71.586852556,66.831414779],[71.30338262499998,67.00596975700012],[71.52749661100006,66.97051413900016],[71.67246263200019,67.00029252600012],[71.84393357300013,66.97492452800009],[72.03910048900013,67.09515438000017],[71.94103959800015,67.17247458700007],[72.23697660300013,67.28585357400004],[72.05461857700016,67.33749900599997],[72.22234364400009,67.39705008100009],[72.41188865000004,67.36269232400014],[72.42620862900014,67.51354965000019],[72.5591736090002,67.62170117900018],[72.75602763400008,67.62705755100018],[73.19483954400005,67.86934920300007],[73.20119453600006,67.95605496200005],[73.07714857100018,68.15849586100018],[73.13699351600008,68.24228673000005],[73.44418356200009,68.43422963100005],[73.61608164400008,68.46842695700013],[73.56282755800004,68.54549587500009],[73.33117656400009,68.66555859100004],[72.60324062700016,68.91180314900015],[72.47483054100019,69.09121812200004],[72.46746050100006,69.25049071100017],[72.54206061300016,69.34394122000009],[72.48396262400001,69.4367112860001],[72.57598854500003,69.48632813000006],[72.48885363200009,69.67615108000007],[72.63490259500009,69.82763369500009],[72.4669575870002,69.96269733600019],[72.4455414890001,70.03382901700013],[72.54779064899998,70.15086385400008],[72.46102152300017,70.28271471200014],[72.66187254200008,70.37863687700013],[72.84532155800008,70.38622870200004],[72.87090262300006,70.46775360700019],[72.74709353100013,70.60208433399998],[72.87695351900015,70.7264964200001],[72.83368663800019,70.88818802600008],[72.66909053500018,70.9975162070001],[72.6233295340001,71.08844175200016],[72.73164350500002,71.12337869700008],[72.17949652900006,71.28742763000014],[71.8974765000001,71.43486731900015],[71.971237583,71.58319129800014],[72.16570259800017,71.61875403700014],[72.28922251500006,71.72609067800005],[72.315727601,71.83974442300007],[72.71935261700003,72.09479601400011],[72.85283660400017,72.28851738700018],[72.81098961800018,72.38420335000012],[72.87934152300016,72.50674694200018],[72.77449749300018,72.5199464280002],[72.75729363700015,72.7325148450002],[71.89909353700006,72.87305606000012],[71.5035936020002,72.92153631700012],[70.91744962700011,72.92300164200014],[69.75077855800015,72.8906964460001],[69.6373065320002,73.00992885100015],[69.33357251200016,72.98511623800016],[69.18373861700013,72.81042329400003],[68.98802956000009,72.68864279100018],[68.74845850600008,72.41896544900015],[68.81910655000007,72.29376680500019],[68.73399352000013,72.21991050400004],[68.74492653900012,72.06901428600014],[68.37449654200014,71.72817341299998],[67.99304954000013,71.55199989000005],[67.10196656200003,71.31522319500004],[66.84295653400011,71.13940053800013],[67.04405951400014,71.0850531160001],[66.7069095280001,70.8826645200001],[66.73238364100013,70.78494058100011],[67.19554850000003,70.85190897000018],[67.48876155500011,70.77381746000003],[67.31025652100004,70.57985083300008],[67.38117949200011,70.51134268800013],[67.184768534,70.34600411600002],[67.17059356200014,70.21741868000015],[67.39803348800001,70.12447930000013],[67.33721154800003,70.05658152500007],[67.0599894880001,69.97716332800019],[66.79656253200017,69.86695772900003],[66.83928660100014,69.52853654400008],[67.0499265110002,69.68640583500007],[67.28981758600008,69.62588614700002],[67.55941060499998,69.61504331700013],[67.7824636100001,69.51848127800014],[67.97415958000005,69.48894546300016],[68.19644161700012,69.54922056700008],[68.08582262300013,69.25503035000014],[68.36950662800012,69.07294490200019],[68.53531659800012,68.99463261300008],[69.08122257700018,68.96904920100019],[68.98776251200019,68.91616743800017],[69.10906960600005,68.84218792300015],[68.97181661200011,68.75725342700008],[68.74417853800014,68.49882443200005],[68.58007864400003,68.37987516800018],[68.58690654200012,68.31245013300014],[68.30436750500019,68.19464684200005],[68.13015752700005,68.27430912100004],[68.15505261700002,68.32553612800012],[67.84828954500017,68.18565037800016],[67.29310664400009,68.22223520600011],[67.04427358700019,68.13668246100013],[67.13745151700016,67.99174695],[67.09899853000013,67.81575045200003],[66.93395248700017,67.57810488900009],[67.1399305490001,67.4538155140001],[67.26255762500011,67.26184227100009],[67.11669155500005,67.08520522900005],[66.9182126130001,66.97020903700013],[66.58583059000011,66.88640274600004],[66.31932060200018,66.84853682800014],[65.40500650900015,66.74330622400015]]],[[[79.45361352400005,72.9008898460001],[79.53806254000006,72.9390705880001],[79.3452526150001,73.063712506],[79.12943252200017,73.08835697800004],[78.63789358000008,72.87376667800015],[78.81474251700018,72.75547321300013],[79.36711161300002,72.73440664100002],[79.49313352700011,72.76558966800008],[79.45361352400005,72.9008898460001]]],[[[74.62992061100016,72.86351980100011],[74.64272363300006,73.00814350600012],[74.76071149300009,73.09531529900016],[74.36402853700014,73.14087312200007],[74.09587050000016,73.07330978500016],[74.15541051100001,72.96073864600004],[74.62992061100016,72.86351980100011]]],[[[76.2935565640002,73.23988535900008],[76.27223954000016,73.15337087500006],[76.66616049100008,73.15447661500008],[76.5956495750001,73.22319129000005],[76.2935565640002,73.23988535900008]]],[[[71.0872346320001,73.49574513300013],[70.84418458500011,73.52592920400008],[70.53307348500005,73.48346128600008],[70.35077664600004,73.49759904200016],[69.94779955100006,73.40517967500011],[70.01825749400018,73.22018520400019],[69.82692764600006,73.08141357700009],[70.45816056000001,73.07614923900007],[70.76914962000012,73.14756439500013],[71.12420653600014,73.12975637100016],[71.61155653900005,73.23513986100005],[71.4400866040001,73.36569370200016],[71.22335858300016,73.28934194000004],[70.92693358300016,73.29227258900016],[71.04843161700006,73.38197672300015],[71.0872346320001,73.49574513300013]]],[[[75.90122951600006,73.53349068700004],[75.60184453000011,73.56185840000018],[75.64756060300004,73.45561978900014],[75.87664053200018,73.46962075200014],[75.90122951600006,73.53349068700004]]]]},"properties":{"objectid":804,"eco_name":"Yamal-Gydan tundra","biome_num":11,"biome_name":"Tundra","realm":"Palearctic","eco_biome_":"PA11","nnh":2,"eco_id":784,"shape_leng":140.963637175,"shape_area":93.6971051597,"nnh_name":"Nature Could Reach Half Protected","color":"#5ADEC9","color_bio":"#9ED7C2","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":413060.0072204229,"percentage":4.8338500949794545}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[88.57033552900003,28.101603004000083],[88.679420634,28.145886108000127],[88.63283552500013,28.26157028500012],[88.73604558700015,28.308130417000086],[88.56457565200014,28.36837685400019],[88.4934925870001,28.458039079],[88.40414451700008,28.501826308000034],[88.20598559700011,28.519516650000185],[88.21125060500003,28.744088624000142],[88.10852065900013,28.785251144000142],[88.00942963200004,28.77374446800019],[87.78591159900014,28.659953090999977],[87.74752063800003,28.59813035300016],[87.60962659600017,28.660419963000095],[87.42213465400016,28.689404752000144],[87.28968063500014,28.803526376000036],[87.16308556600018,28.8401076830001],[87.08872266200012,28.789023671000052],[86.85949655300016,28.73952082200003],[86.7929075290001,28.757851206000055],[86.71687360900017,28.68510986500013],[86.60433163900007,28.670366600000193],[86.52500161900008,28.562474071999986],[86.5279235500002,28.507562212000153],[86.61737857400016,28.402374357000042],[86.69019350800005,28.406829171000027],[86.71357750900012,28.52767241000015],[86.75714865300012,28.551724281000077],[86.94693757300013,28.531801335000125],[87.34349060900018,28.55450321700016],[87.41088865400008,28.497167479000098],[87.41841158000011,28.434225086000083],[87.36468458600007,28.37374378700008],[87.47245758899999,28.30895938700013],[87.5307845710002,28.318531017],[87.63294957700003,28.399284452000074],[87.79309053100013,28.41698803700018],[87.8471905200002,28.29469489600018],[87.93464662700012,28.262847185000055],[88.04826366000009,28.05632279000008],[88.07427957900012,28.053957920000187],[88.28101352100015,28.07098810300016],[88.43695866200011,28.061428375],[88.5553136490002,28.09511507600007],[88.57033552900003,28.101603004000083]]],[[[85.01522857499998,29.730851026000153],[84.81092052300016,29.915166227000157],[84.8129196070002,29.835780216000046],[84.90725759200018,29.698923351000133],[84.92184461800008,29.63339698400017],[84.85942860800014,29.590115519000108],[84.70768766200018,29.653072161000125],[84.62777761500007,29.617734392999978],[84.444770661,29.669967396000175],[84.35165358400019,29.72893827600012],[84.24700954600019,29.745680457000105],[84.19556460900003,29.71062985200018],[84.12458061800004,29.772055624000075],[83.995498639,29.711171826000054],[84.01672362900007,29.56727935900011],[84.07803356300013,29.51189140700012],[84.26831064400017,29.525889856000106],[84.384941642,29.479460650000078],[84.48916658500002,29.512385604000087],[84.56025652300019,29.41977613500012],[84.58254266200004,29.26116303400005],[84.53985564100009,29.234049254000183],[84.29510457100014,29.289823946000183],[84.38041658800006,29.138750870000024],[84.57191457700003,29.178988364000077],[84.63477365400013,29.158127316000105],[84.72193153300003,29.036759034000113],[84.83118461200002,29.029628382000055],[84.78455357000018,29.14440362600004],[84.83174150600013,29.171548587000075],[85.10584264800008,28.938761845999977],[85.20297951800006,29.009337135000067],[85.19552649700006,29.151418608000142],[85.08904263200003,29.231421360000184],[85.14838466200013,29.269566731000168],[85.27951065300005,29.276747507000152],[85.38333158800003,29.233718169000042],[85.5555726570002,29.214636096000106],[85.67273758200008,29.162511890000133],[85.85440058100005,29.16528898200005],[86.06659650700004,29.126384378000182],[86.26734962600017,29.160918993000053],[86.28192860600012,29.210148257000128],[86.23444361600014,29.319216934000167],[86.08876764700005,29.24671162700008],[86.00463865200015,29.280978356000162],[86.02346759199997,29.385035326000036],[85.82487465700007,29.33746819300012],[85.6074145610001,29.349986901000136],[85.542549527,29.446540893000076],[85.49811554900009,29.424361874],[85.35869549800015,29.4629553420001],[85.30145263100007,29.531250586000056],[85.07000749700006,29.559653503000106],[85.07161766100006,29.619941348000054],[85.23077357400007,29.616458332000036],[85.24182863300007,29.66082894200008],[85.13144651200002,29.74470346200019],[85.1562115160001,29.84002414100013],[85.07926162100011,29.81994562800014],[85.01522857499998,29.730851026000153]]],[[[92.91843456200019,29.144970578000027],[92.94400758100005,29.479677742000092],[92.90728763600004,29.57397599600006],[92.82376063000004,29.56689228200014],[92.87258957400019,29.480942571000185],[92.8270416420001,29.42042707400003],[92.87267255500007,29.29076808400015],[92.8446505120001,29.171605584000076],[92.7570646530001,29.145525795000083],[92.74130265100018,29.219672949000028],[92.77248366700013,29.388357242000097],[92.65773759100006,29.487969456000144],[92.68907953900003,29.301620469000056],[92.61453256800013,29.223836743000106],[92.54550960700004,29.23695224200003],[92.45469654800019,29.328358573000116],[92.34307859900008,29.314641253000048],[92.3613895370001,29.403041832999975],[92.31762661500005,29.44030039900008],[92.05758661800007,29.352140547000147],[92.01594565800013,29.438301482000156],[91.89850664500011,29.323370670000145],[91.86837755900018,29.36256512000017],[91.92785655000017,29.499927917000036],[91.88212555600018,29.549799067000095],[91.786865562,29.546867245000158],[91.71543163000001,29.47366288800015],[91.82865152900018,29.45556652700003],[91.74448364200003,29.362399326000116],[91.7011565790001,29.442742047000138],[91.52914450300011,29.387204395000026],[91.3058395380001,29.418124062000118],[91.23015564600018,29.456649636000066],[91.08576160500013,29.392652967000174],[91.03385952000014,29.457336449000138],[91.09693954400012,29.530483810000078],[91.29767657000008,29.616206539000075],[91.51213058000002,29.766591629000118],[91.71120463600005,29.78354922500006],[91.862014521,29.75090640600007],[91.78512564600015,29.87169382100018],[91.92511751100011,29.943127250000032],[91.86345654300015,30.014507538000032],[91.72035951900017,29.97897782399997],[91.52025566200012,29.963233424000066],[91.41991455800002,30.00631389200015],[91.23027064500019,30.04365024200007],[90.97123765100014,30.02496798499999],[90.8540725580001,30.072459346000073],[90.72789759000011,30.077788225000177],[90.61732452900014,30.027236128000027],[90.68144960900008,29.833399253000152],[90.70182752400012,29.717725468000026],[90.80763262300013,29.690721826000186],[90.92205851000006,29.59830329700003],[90.85436257200007,29.514148318000082],[90.78256251900007,29.486571522000077],[90.66649662900011,29.525763792000134],[90.45214051900007,29.30165667900019],[90.2883075040001,29.390520108000032],[90.32927657100015,29.513879259000134],[90.25774356500011,29.590559424000105],[90.22341162500004,29.48388964800006],[90.07223561900008,29.5343135010001],[90.08866163400018,29.60125205100013],[89.97277863800002,29.667018642000073],[89.924407513,29.626670172000104],[90.01310766199998,29.46985616300003],[90.1175996520002,29.427231838000182],[90.10577362500004,29.3816535630001],[89.92125658800018,29.388714143000072],[89.78405757300015,29.369426043000033],[89.67148559600014,29.434922401999984],[89.65200756200005,29.529137844000047],[89.55569463300009,29.45871141700019],[89.23962362500015,29.444603165000103],[89.17547557900008,29.486078331000044],[89.13457457300007,29.63857348],[89.14746057600019,29.73860193900009],[88.99017366000015,29.712685765000174],[88.95734358900006,29.64203855900007],[89.00688952200017,29.56765319200008],[89.00463864500017,29.47169213500007],[88.90508259000006,29.43718031900005],[88.81192058600016,29.474302930000192],[88.65406051600013,29.428307572000165],[88.59478755200018,29.523890940000058],[88.6276855160001,29.61488655700009],[88.54745460900011,29.62467511100016],[88.46948262600012,29.54033355200005],[88.47953755700013,29.446739041000114],[88.34629865600004,29.431196646000103],[88.35411059000018,29.550963146000072],[88.31060063300004,29.59106351200012],[88.23620554300015,29.482243610000125],[88.1971356480002,29.56571931899998],[88.03587353000006,29.465163303000054],[87.93582160200009,29.653141228000095],[87.8685605170001,29.62457402600006],[87.96048753100018,29.51520527600013],[87.93061861900009,29.46512038700007],[87.71191364300012,29.532923782000125],[87.690574659,29.627488078000113],[87.71203652200006,29.75154342999997],[87.6548385820002,29.879742460000045],[87.58506057900019,29.89611684300013],[87.63719165800006,29.654524074000108],[87.61173263300009,29.483538614000167],[87.55030853800008,29.439852134000034],[87.2875745980001,29.425343898000108],[86.88748959500009,29.533789632000037],[86.3965685660001,29.559707650000064],[86.30034649700019,29.61354947600006],[86.21781157300006,29.54847724100017],[86.05853261300007,29.51206541600004],[85.89994063500006,29.50960163900004],[85.80496260800004,29.637754736000147],[85.75930051400007,29.53407562300015],[85.85905454900018,29.416507025000158],[86.03728465600017,29.450767719],[86.2026676530001,29.462484447000122],[86.29527259600002,29.414989063000178],[86.4888836630002,29.464639434000162],[86.85426356300007,29.43999714100005],[87.09074353900013,29.404525765000017],[87.10031852200018,29.284422145000065],[87.16612266400011,29.211952043000167],[87.18773657500014,29.19110608200009],[87.47817253800008,29.151308638000103],[87.55283350200011,29.103834376000123],[87.57917061600017,28.993738581000173],[87.78425550200018,29.04746859200003],[87.95517759600006,28.95935299700011],[87.96002166500017,28.854147204000128],[88.04776761900018,28.91298279900019],[87.98405459300005,28.955643334],[88.0573196360001,29.055361327000185],[88.0348286420001,29.097912729000143],[88.23670158400006,29.169974633000038],[88.19786051500006,29.247673701999986],[88.28699451200004,29.254877444999977],[88.357833664,29.220235878000153],[88.37738059700007,29.15216845300006],[88.26288564400011,29.100832482000044],[88.27191161200011,29.037298997000164],[88.4207916470001,29.026475445000074],[88.44880665,29.074695528000177],[88.38759662800004,29.129708306000055],[88.54830956300015,29.20844639500018],[88.64826962600006,29.191793901000096],[88.75869751300013,29.076829561000125],[88.8615726340002,29.075639330000115],[88.93546263100012,29.03147826800017],[89.03366065000006,29.033032105000075],[89.06517761200013,28.96261204800004],[88.92440053000007,28.970718690000183],[88.7667696210001,29.012118921000024],[88.83106250600014,28.899729502000014],[89.04878260900011,28.90475126800004],[89.13573462900013,28.776126437000187],[89.19022353700018,28.885534078000035],[89.25360061600009,28.889731903000154],[89.2858806660002,28.783439145000045],[89.35486557300015,28.814771872],[89.31033352800017,28.988100913000153],[89.40714266500015,28.9934296240001],[89.43184664900014,28.830457263000085],[89.52215561999998,28.806813088000183],[89.50620251200002,28.748429444000124],[89.28083761000005,28.686898898000095],[89.44489257800018,28.648402326000053],[89.5636296130001,28.64210282300013],[89.52854950400001,28.518408729999976],[89.47750052800006,28.457111370000064],[89.30127755200016,28.355708278000066],[89.14683562100004,28.318299843999966],[89.02101856100006,28.344432942000083],[89.02653452300012,28.120249050999973],[89.08686863600019,28.023272107000082],[89.14956661300005,27.98588177800019],[89.18475350699998,27.902747213000055],[89.27112566699998,27.879874171999973],[89.33666259400013,27.940149612000084],[89.33390763000011,28.11183227900011],[89.40354163200004,28.17033595100014],[89.46263153500018,28.08022864800006],[89.56210360300014,28.147925089000182],[89.70793162000018,28.194127145000095],[89.76741765100007,28.249546613000177],[89.9413755020002,28.317532900000117],[89.97360962000005,28.358936317000087],[89.9913105230001,28.39624567700008],[90.02462758200016,28.45004441900005],[90.11597456900012,28.531769316],[89.9632945140001,28.625982244000056],[90.0386196610001,28.693322621],[89.99183657100014,28.758327969000106],[89.98052955100019,28.85580732300008],[89.8283235770001,28.85333332099998],[89.70272059000013,28.887052041000118],[89.68341053000006,28.96451574600013],[89.5686725010001,29.010250092000035],[89.74709354800018,29.07306860100016],[89.66114065100015,29.250587587000155],[89.48595451600016,29.257028242000047],[89.39509552400017,29.302635518000102],[89.76780657200015,29.320350000000133],[89.8100205180001,29.253231575000086],[89.80766252100017,29.17060763500001],[89.91835762300019,29.195741609000038],[90.05596165100008,29.256500517000177],[90.146446643,29.22085680900011],[90.20812253000008,29.306051311000033],[90.34447463700013,29.258478311000033],[90.45789352200006,29.157938220000062],[90.3046875870001,29.18028940300013],[90.31750452300008,29.038374898000086],[90.37796050800011,28.978393328000152],[90.34056062400003,28.92347660700017],[90.32403553400019,28.792450696],[90.46408054000005,28.691649593000136],[90.69565559400013,28.716453824000155],[90.80692250900017,28.67794032000012],[90.90618855000008,28.612314880000042],[91.01093266800012,28.597957518000158],[90.94561752500005,28.70531025200006],[91.1971515670001,28.690427680000028],[91.24288155400012,28.74420647300019],[91.38478851600019,28.72618839900008],[91.30180365100006,28.82772241600003],[91.53474462000008,28.784195863000093],[91.56387357700015,28.752278414000102],[91.5375976520001,28.631805152000084],[91.62640358100009,28.668453515000067],[91.71844458900017,28.816446576000033],[91.25341056600013,28.941483617000017],[91.0947185070001,28.946304553000118],[91.02810651700014,29.02615156800016],[90.857398665,29.115138882],[90.74399553799998,29.195915785000068],[90.80004851000012,29.238520161000167],[90.88045459800014,29.135118992000116],[91.13531457900012,29.024331354000026],[91.2104266570002,29.018216756000186],[91.25371566700005,29.09328390700017],[91.37178064000017,29.066310775000034],[91.50082356000007,29.084088121000093],[91.50290663100003,28.94325756300009],[91.65460164400008,28.867091880000032],[91.72362561100005,28.901762281000117],[91.96994761700017,28.84503657800019],[91.98299354700009,28.957283002000167],[92.06111154300015,29.087332924000066],[92.18697353100015,29.007038147000117],[92.2925415900001,29.029119432000073],[92.26333652500011,29.13293936200006],[92.42768854700012,29.02798821100015],[92.52309455400018,29.031652108000173],[92.51881458700018,28.901465394000127],[92.58002460800003,28.84186067500019],[92.65661659600016,28.88392005900016],[92.66849559600013,28.997774635000155],[92.81095157300007,28.929237154000077],[92.75645461800019,28.861971040000128],[92.82244852700012,28.767013632000157],[92.9342656300002,28.835119110000107],[92.9165345520002,29.001526542000192],[92.91843456200019,29.144970578000027]]],[[[90.49479652700018,30.119790444000103],[90.36082454500007,30.034453617000054],[90.25154866800011,29.874564623000026],[90.27869463500008,29.765965668000092],[90.34320058800017,29.68577801200007],[90.47309158899998,29.689638717000037],[90.53450763800004,29.728606185000103],[90.58721958300004,29.823229657000184],[90.5215225610001,29.93595032900015],[90.55034658500006,30.053523956000106],[90.49479652700018,30.119790444000103]]],[[[83.85407263000008,29.78803287200003],[83.85189853200012,29.865531111000053],[83.66590862700008,29.930422632000102],[83.57122765400015,30.02290503100005],[83.3970716550001,30.131354286000146],[83.35319557700012,30.201691529000072],[83.25686655499999,30.16533686800011],[83.22209154700005,30.08322103900008],[83.32680565800007,29.928730660999975],[83.43402864000007,29.819016745000113],[83.51631965000007,29.691849695000144],[83.76478558000008,29.696834581000132],[83.54374657900019,29.781615352000188],[83.52379664300008,29.928730660999975],[83.58364862900015,29.926237715000127],[83.85407263000008,29.78803287200003]]]]},"properties":{"objectid":807,"eco_name":"Yarlung Zanbo arid steppe","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Palearctic","eco_biome_":"PA10","nnh":3,"eco_id":770,"shape_leng":63.7375337409,"shape_area":5.50592877808,"nnh_name":"Nature Could Recover","color":"#E0B070","color_bio":"#D6C39D","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":59591.21719728311,"percentage":1.22030518800533}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[120.83821057500018,32.714341352000076],[120.84803768600011,32.789430799000115],[120.90693664900016,32.833596723000085],[120.88581861100022,32.97303437700015],[120.81498767400012,33.046923200000094],[120.74942057100031,33.267474542000116],[120.66304053300018,33.32358669000013],[120.64749159900009,33.423856716000046],[120.4885866410001,33.636070746000144],[120.50749168800019,33.72106726800018],[120.45192754900006,33.77301377800018],[120.33637966100014,34.14300640700003],[120.25388362900003,34.30799478300014],[120.10247762300003,34.36327645200015],[119.9274676760001,34.45326992900016],[119.78613269500033,34.47299942100011],[119.6480406720002,34.527716149000184],[119.50424962600005,34.63515823400013],[119.51546461300006,34.53681772300007],[119.69984469000008,34.38612987900018],[119.89775869000005,34.14869436600003],[119.9760815410001,33.94323313199999],[120.23847953400013,33.73104592400017],[120.46428666500003,33.29997436600007],[120.53613265100023,33.12549566400014],[120.79273254700001,32.81759013800007],[120.83821057500018,32.714341352000076]]]},"properties":{"objectid":808,"eco_name":"Yellow Sea saline meadow","biome_num":9,"biome_name":"Flooded Grasslands & Savannas","realm":"Palearctic","eco_biome_":"PA09","nnh":3,"eco_id":748,"shape_leng":5.39744193872,"shape_area":0.517809703046,"nnh_name":"Nature Could Recover","color":"#4DA6B8","color_bio":"#BEE7FF","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":5334.083975737195,"percentage":0.46128113505737894}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[31.859100030000036,-21.458390492999968],[31.758159479000142,-21.470830036999928],[31.559267774000034,-21.59732947699996],[31.27336761000015,-21.893720851999944],[31.208236646000103,-22.039515766999898],[31.19282762200004,-22.136715683999967],[31.235105680000117,-22.343173949999823],[31.30074606200003,-22.406643989999907],[31.380804267000144,-22.42954806599988],[31.52948040600012,-22.413900876999946],[31.62197008300012,-22.44162634099996],[31.790537367000184,-22.447269483999946],[31.852694726000095,-22.471376426999825],[31.995403917000033,-22.45613019299998],[32.11473894000005,-22.380230529999892],[32.269867759000135,-22.1661640289999],[32.34195687200008,-21.963334205999843],[32.37028704700015,-21.74081787299997],[32.33995078200019,-21.669318799999928],[32.21563211600005,-21.55322436199998],[32.09628919600016,-21.49336292199996],[31.859100030000036,-21.458390492999968]]],[[[29.932206105000148,-20.43955306399988],[29.925733686000115,-20.298569615999952],[29.88495230000018,-20.17686180099986],[29.808369222000124,-20.057559718999983],[29.841173621000166,-19.817772531999935],[29.853589301,-19.551071712999885],[29.80485066700004,-19.407271653999942],[29.807820323999977,-19.169489244999966],[29.773985244000187,-18.787104865999936],[29.72425540800009,-18.699938759999952],[29.655135951000034,-18.664986172999875],[29.538782428000104,-18.70674508299993],[29.073869859000183,-18.94728457399998],[28.87597330300008,-19.0850306129999],[28.66365497700008,-19.195462063999912],[28.55376992500004,-19.310323869999934],[28.51350585300014,-19.533642113999974],[28.42599587100017,-19.63003019799993],[28.336503487000073,-19.839686186999927],[28.252472580000074,-19.90755681799982],[27.980970499000136,-19.823979468999937],[27.687097295000115,-19.826756392999926],[27.687912663000077,-19.847350196999912],[27.53027137200013,-20.08625879599998],[27.524358812000116,-20.15509931199989],[27.363762399000052,-20.35999223399989],[27.27804299600018,-20.605384424999897],[27.274100518000125,-20.69690205799992],[27.19724880000018,-20.907469410999852],[27.209066982000138,-21.18040398799991],[27.411035129000084,-21.451730543999872],[27.620066835000102,-21.5113108029999],[27.777695371000164,-21.529002455999944],[27.93880298300013,-21.518176654999934],[28.167035804000193,-21.45192968999993],[28.256540031999975,-21.445915355999944],[28.420131569000034,-21.395325501999935],[28.50913427500012,-21.315807316999837],[28.666261288000157,-21.259995118999825],[28.80598897900012,-21.278889638999942],[29.026268501000175,-21.25843098199988],[29.243562575000112,-21.204232527999977],[29.311185359999968,-21.15443466399995],[29.47775050100006,-20.93394295199994],[29.530457888000058,-20.919087751999882],[29.59459765000014,-20.829926789999945],[29.565252586000042,-20.701793763999945],[29.773602159,-20.750017570999944],[29.939180047000036,-20.654040362999865],[29.915801931000146,-20.525506381999946],[29.932206105000148,-20.43955306399988]]],[[[28.2683333330001,-15.872499999999889],[28.174166666000076,-15.784166666999965],[28.033333333000144,-15.753333332999944],[27.848333333000028,-15.774999999999864],[27.62833333300017,-15.8175],[27.60083333299997,-15.7725],[27.43916666700011,-15.88249999999988],[27.3325,-15.90083333399997],[27.200833334000095,-15.855],[27.11583333300007,-15.89],[27.098333334000074,-15.8175],[27.034166667000193,-15.8175],[26.936666667000168,-15.877499999999884],[26.871666667000113,-15.81666666599989],[26.866666667000118,-15.73833333399989],[26.746666667000056,-15.68249999999989],[26.630833333000112,-15.772647857999914],[26.438333333000116,-15.745],[26.201666666000165,-15.859999999999843],[26.15750000000014,-15.992696758999898],[26.1400000000001,-16.04833333299996],[25.944166667000047,-16.17666666599996],[25.950833333000105,-16.293333332999907],[25.84333333300009,-16.43749999999983],[25.988333333000128,-16.552499999999895],[25.983333333000132,-16.67666666699995],[26.000833333000173,-16.689166666999938],[26.03500000000014,-16.711666666999974],[26.184166667000056,-16.64916666599993],[26.194166666000115,-16.540833332999966],[26.344166667000025,-16.505],[26.374166666,-16.524166666999974],[26.50916666700016,-16.493333332999896],[26.589166667000143,-16.378333332999887],[26.481666666000024,-16.3175],[26.341666666000037,-16.3425],[26.329166667000038,-16.2075],[26.276666667000086,-16.1325],[26.46583333300015,-16.139999999999816],[26.460833334000085,-16.26749999999987],[26.7025000000001,-16.3175],[26.75250000000017,-16.362499999999898],[26.695833334000042,-16.484166666999954],[26.810000000000116,-16.43333333399994],[26.90416666700014,-16.33833333299998],[26.95000000000016,-16.430833333999942],[27.04166666599997,-16.469166666999968],[27.068333333000055,-16.6075],[27.341666667000084,-16.549166666999895],[27.465833334000024,-16.651666666999915],[27.555833333000066,-16.58583333399997],[27.455833334000033,-16.48916666599996],[27.478333333000023,-16.364999999999895],[27.61833333300001,-16.3575],[27.742500000000177,-16.2175],[27.60333333300008,-16.13],[27.53583333300014,-16.13333333299994],[27.4925,-16.025833333999913],[27.586666666000156,-16.025],[27.73166666700007,-16.17333333399995],[27.811666667000054,-16.18666666699994],[27.8675,-16.140833332999932],[27.940833333000057,-16.165],[28.118333333000123,-16.26749999999987],[28.24000000000018,-16.234166666999897],[28.184166666000067,-16.06749999999988],[28.16583333300008,-15.934166666999886],[28.2683333330001,-15.872499999999889]]],[[[35.32437148100013,-17.409380661999876],[35.3206924160001,-17.232130292999898],[35.35349286700017,-16.924462553999945],[35.34403894800016,-16.81761985999998],[35.30375513600006,-16.701535343999865],[35.1769485960001,-16.557324408999932],[35.21083333300004,-16.4825],[35.09583333300009,-16.32666666699987],[35.0816666660001,-16.268333333999976],[34.788333333000026,-15.956666665999933],[34.74250000000018,-15.825],[34.779166667000084,-15.761666666999929],[34.67083333300019,-15.684999999999889],[34.62166666600007,-15.777499999999861],[34.591666667000084,-15.94916666599994],[34.53083333400008,-15.988333333999947],[34.610215808000135,-16.05416666699989],[34.5921639500001,-16.189334744999883],[34.5737852690001,-16.52431707099987],[34.53252604800019,-16.736388715999908],[34.49225408000012,-16.823945855999966],[34.39628927600012,-16.892618396999865],[34.276452730000074,-16.895014208999953],[34.10290969900012,-16.833138068999915],[34.012907896000115,-16.833529103999922],[33.9149527940001,-16.87970844599988],[33.68970147300013,-16.911814656999923],[33.53455686200016,-16.85435895099988],[33.402288844000054,-16.85193337399994],[33.34758720999997,-16.776414822999925],[33.251618458000166,-16.777206812999907],[33.171070575000044,-16.884440540999947],[33.074604248000185,-16.87960923099996],[33.17056510400005,-16.74305613799993],[33.171556306000184,-16.68642218499997],[33.06415123100015,-16.693639385999973],[32.99304147600003,-16.6361935999999],[32.80110002400005,-16.569897027999957],[32.650927213000045,-16.5007937659999],[32.53456579400006,-16.406791571999975],[32.50969100700007,-16.193507138999962],[32.541010578000055,-16.072611156999926],[32.72001113900012,-15.924821385999905],[32.70310149400018,-15.869390299999907],[32.55840200500006,-15.862143334999814],[32.45348480400014,-15.897477033999962],[32.30431109000011,-15.907500922999873],[32.15363675600008,-15.764893809999876],[32.03876806200003,-15.68776151499992],[31.9751219260001,-15.71466522499992],[31.99402581700008,-15.860470061999933],[31.90850218600019,-15.911470792999921],[31.791149566000115,-15.874102551999897],[31.64893795000006,-15.89497208499995],[31.62308380500008,-15.941963259999909],[31.74044826900007,-16.18297315799998],[31.791169305999972,-16.21350531099995],[31.81802649600013,-16.313521838999918],[31.772285155000077,-16.40710323399992],[31.807103540000185,-16.59709255699994],[31.781249395000145,-16.6440837319999],[31.79568301000006,-16.87503997499988],[31.776790963000053,-16.932876793999924],[31.559508732999973,-17.19071690399994],[31.619182166000087,-17.254587899999876],[31.709677596,-17.19193961399992],[31.823539296999968,-17.054183653999928],[31.93790252200006,-16.989931544999877],[31.896145725,-17.196379889999946],[31.968744258000186,-17.20281502299997],[32.04780336500005,-17.146591946999933],[32.19597403400013,-16.989560353999934],[32.28099614200016,-16.86505577199989],[32.370002796000165,-16.853418137999938],[32.508739284000114,-16.9289466109999],[32.63703460000016,-17.02214689399989],[32.60024565600003,-17.149067130999924],[32.521684123000114,-17.210913505999883],[32.50527994900017,-17.29686682399995],[32.31534458800019,-17.524585657999978],[32.26910567200008,-17.612543752999898],[32.350656601000026,-17.652317727999957],[32.53214503500004,-17.5326444559999],[32.67734604800006,-17.613395271999934],[32.786733525000045,-17.492910166999934],[32.86926775900008,-17.34028908499988],[32.99307700700007,-17.247118566999973],[33.04428377500011,-17.079632364999952],[33.104446887000165,-17.01336555699993],[33.250141526,-17.031859120999968],[33.328213380000136,-17.10015054999991],[33.32921247700011,-17.17927770199998],[33.40032223300011,-17.23672348699995],[33.58430248900004,-17.213047263999954],[33.65342194600015,-17.247999850999975],[33.64149594500003,-17.384562865999897],[33.71857265,-17.44160769499996],[33.89559475500005,-17.474966380999945],[34.02289492200009,-17.55692006399994],[34.04776576100011,-17.702323944999875],[33.958767004000094,-17.84972268199988],[33.95131917500015,-18.036895393999885],[34.163151771000116,-18.124482298999965],[34.22382035400017,-18.199599893999903],[34.180069311000125,-18.3156744879999],[34.172119958999986,-18.429343348999907],[34.20196259800014,-18.56309967499982],[34.08213789600018,-18.76913714199992],[34.007063334000065,-18.93822716699998],[33.97524618800003,-19.05349984999998],[33.99016948100018,-19.15431828899989],[33.957862657000135,-19.39972877599996],[33.900187418000144,-19.49411208199996],[33.84400885100001,-19.673245839999822],[33.835064350000096,-19.775668100999894],[33.61380547100009,-20.05640236499994],[33.49099532000008,-20.228700034999974],[33.396025666000185,-20.308619175999922],[33.2647567460001,-20.38532074999995],[33.11409425599999,-20.446355292999954],[33.040407379000044,-20.515465406999965],[32.97690341700013,-20.616601344999935],[32.761695548000034,-20.638945331999935],[32.63774536400018,-20.69331999399992],[32.48907712100015,-20.844728286999953],[32.500023764,-20.96844088099988],[32.67356284700014,-20.962436467999908],[32.719316032999984,-21.072496728999965],[32.83368320500011,-21.076125171999877],[33.048986980000166,-20.99943351899998],[33.174790474000076,-20.996636750999926],[33.73071578700012,-21.038475032999884],[33.95596316100017,-20.93848826999988],[34.00568115200008,-20.822012720999908],[33.881852165,-20.575780478999945],[33.85542340100017,-20.34493391399991],[33.85228191600004,-20.32737482099992],[33.85080350400011,-20.208449702999815],[33.877039792000176,-20.045784714999968],[33.93738325600003,-19.898861499999953],[33.99418561100009,-19.810229652999965],[34.20700546000012,-19.773302053999885],[34.26617342300017,-19.695788645999926],[34.26218887699997,-19.58292169699996],[34.310911719000046,-19.455199547999882],[34.36660060700012,-19.406203593999862],[34.409356501000104,-19.27888240099992],[34.4991375890001,-19.10433544199998],[34.58314152600019,-19.112637884999856],[34.66342155100017,-19.15747134399993],[34.72661556900016,-19.014786875999903],[35.064991072000055,-18.43459572899991],[35.226528535000114,-18.306790983999974],[35.35456059800015,-18.14314069399984],[35.397861510000155,-17.9602618159999],[35.51409151700011,-17.933026329999905],[35.44305236700012,-17.868775946999904],[35.39680950300004,-17.888853489999974],[35.33067154600013,-17.819760149999922],[35.284420785,-17.704076589999943],[35.29763058600008,-17.57844223799998],[35.24507148500015,-17.466772739999954],[35.32437148100013,-17.409380661999876]],[[35.075,-16.595833332999916],[35.25083333300012,-16.73166666599991],[35.28083333300003,-16.849166666999906],[35.21250000000015,-16.928333332999955],[35.16416666600014,-17.123333332999948],[35.06416666700011,-17.052499999999895],[35.061666667000054,-16.996666665999896],[35.16666666700013,-16.936666666999884],[35.15666666600009,-16.8325],[35.11916666600007,-16.81666666699988],[35.075,-16.595833332999916]]],[[[28.591666667000027,-15.09416666699991],[28.599166667000077,-15.025833332999866],[28.526666666999972,-15.011666666999929],[28.595833333000144,-15.026666666999972],[28.591666667000027,-15.09416666699991]]],[[[28.25083333300006,-14.599166666999906],[28.41750000000019,-14.619166666999945],[28.370833334000054,-14.5175],[28.2525,-14.368333332999953],[28.1625,-14.38083333399993],[28.144166667000093,-14.418333332999964],[28.179166667000175,-14.4625],[28.078333333000046,-14.533333333999963],[28.0375,-14.435833332999891],[28.046666666000135,-14.53],[27.993333333000066,-14.630833332999885],[27.975,-14.636666666999929],[27.825833334000095,-14.698333332999937],[27.80083333300007,-14.758333332999939],[27.766666667000152,-14.863333332999957],[27.71833333400008,-14.91083333399996],[27.61833333300001,-14.941666666999822],[27.59750000000014,-15.134166665999885],[27.45916666700009,-15.0525],[27.385,-15.05416666699989],[27.390833333000103,-15.148333332999925],[27.30333333300007,-15.138333332999935],[27.161666667000134,-15.158333333999906],[27.1925,-15.221666666999965],[27.078333333000046,-15.23],[26.983333333000076,-15.128333333999876],[26.91166666700019,-15.11],[26.83416666700009,-15.234166666999954],[26.78416666700008,-15.188333332999946],[26.713333334000083,-15.215833333999967],[26.626666667000165,-15.065],[26.560000000000173,-15.013333332999878],[26.556666667000115,-15.204166666999924],[26.594166667000138,-15.285833332999971],[26.705,-15.3566666669999],[26.5925,-15.440833332999944],[26.49333333300018,-15.465833332999978],[26.45416666600005,-15.36],[26.36666666700006,-15.377499999999884],[26.30333333300007,-15.4275],[26.406666666000035,-15.4725],[26.2875,-15.54833333299996],[26.18916666600012,-15.56999999999988],[26.15750000000014,-15.618333332999896],[26.173333333000187,-15.763333333999924],[26.273333333000153,-15.759166666999874],[26.31748548800016,-15.720000009999978],[26.5925,-15.634166666999874],[26.66083333400013,-15.550833333999947],[26.74833333300012,-15.559999999999832],[26.76666666699998,-15.448740818999909],[26.910833334000074,-15.4125],[27.0875,-15.41],[27.383333333000053,-15.365],[27.435,-15.41583333299991],[27.510000000000105,-15.395833333999974],[27.6333333340001,-15.444166666999877],[27.694166667000047,-15.51],[27.87583333300006,-15.493333332999839],[27.97666666700019,-15.56833333399993],[28.062500000000114,-15.574999999999875],[28.02583333400014,-15.667499999999848],[28.08833333299998,-15.7475],[28.231666667000127,-15.736666665999905],[28.38916666700004,-15.57999999999987],[28.5,-15.76749999999987],[28.505,-15.66],[28.365833333000182,-15.56249999999983],[28.27083333300004,-15.468333332999975],[28.171666667000125,-15.461666665999928],[28.214166667000086,-15.365833333999944],[28.3225,-15.409166666999965],[28.38916666700004,-15.4816666669999],[28.56166666600018,-15.48583333299996],[28.638333333000162,-15.453333332999932],[28.688333333,-15.569166665999944],[28.74916666700011,-15.6],[28.86166666600019,-15.594166665999978],[29.072500000000105,-15.39249999999987],[28.9175,-15.294166666999956],[28.839166667000086,-15.4425],[28.780833334000192,-15.354166665999912],[28.865833334000172,-15.24583333299995],[28.860000000000127,-15.17],[28.70333333300016,-15.187499999999886],[28.74333333400017,-15.2875],[28.669166667000127,-15.300833332999844],[28.57583333300005,-15.243333333999885],[28.499166666000065,-15.2725],[28.38500000000016,-15.27166666599993],[28.285833334000074,-15.17],[28.165000000000134,-15.19499999999988],[28.054166666000185,-15.136666666999815],[28.058333334000167,-15.08833333299998],[28.526666666999972,-15.011666666999929],[28.605833333000135,-14.9375],[28.46,-14.9425],[28.382500000000107,-14.9225],[28.235000000000184,-14.969166665999921],[28.15083333300015,-14.9675],[28.07166666700016,-14.874166665999894],[28.121666666000124,-14.795],[28.084166667000034,-14.73],[28.118333333000123,-14.680833332999953],[28.25083333300006,-14.599166666999906]],[[27.97083333300003,-15.265833332999932],[28.192500000000166,-15.256666666999877],[28.212500000000148,-15.34166666699997],[28.095833333000087,-15.334166666999977],[27.97083333300003,-15.265833332999932]]],[[[34.99916666700011,-14.165],[34.97416666600009,-14.215833333999967],[35.069166666,-14.2575],[35.1125,-14.390833332999932],[35.181666667000115,-14.45],[35.183333334000054,-14.589166666999915],[35.26000000000016,-14.516666666999924],[35.233333333000076,-14.421666665999965],[35.079166667000095,-14.21333333299998],[34.99916666700011,-14.165]]],[[[31.533333333000144,-13.894166666999865],[31.476666666000142,-13.923333333999949],[31.2875,-13.923333333999949],[31.033333333000087,-14.043333332999907],[30.863333333000128,-14.184166665999896],[30.780833333000032,-14.201666666999927],[30.735000000000184,-14.2725],[30.636038136000025,-14.34166666699997],[30.635833333,-14.34193820299987],[30.635434310000107,-14.3425],[30.565,-14.441666666999936],[30.553333333000126,-14.564166666999881],[30.756666667000104,-14.646666666999977],[30.831666666000046,-14.73916666699995],[30.854275475000122,-14.85096374799997],[30.911954662000028,-14.824460993999935],[30.863333333000128,-14.72666666699996],[31.030833333000146,-14.492499999999836],[31.017500000000155,-14.4],[31.048333333000016,-14.3475],[31.135833333999983,-14.365],[31.112500000000125,-14.431666665999956],[31.19083333300017,-14.485],[31.308333334000054,-14.47706629499993],[31.308549515000095,-14.4775],[31.44583333300011,-14.360833332999903],[31.418333334000124,-14.275833332999923],[31.311666667000054,-14.236666666999952],[31.295833333000076,-14.155833332999919],[31.337500000000148,-14.096666666999909],[31.534166667000193,-14.010833332999937],[31.553333334000172,-13.903333332999978],[31.533333333000144,-13.894166666999865]]],[[[33.91333333300008,-14.474166665999917],[34.075,-14.485],[34.123333333000176,-14.416666666999959],[34.08583333300015,-14.375833332999946],[34.09083333300015,-14.212499999999864],[34.13166666700005,-14.173333333999892],[34.135000000000105,-14.081666666999979],[34.02666666600004,-14.006666666999934],[33.901666667000086,-14.030833332999975],[33.77583333300015,-13.97],[33.81583333300006,-13.753333333999876],[33.83,-13.535],[33.8975,-13.49],[33.89583333300004,-13.34],[33.750000000000114,-13.3525],[33.57833333300016,-13.510833333999926],[33.5825,-13.588333332999923],[33.5225,-13.643333332999873],[33.281666666000035,-13.7775],[33.28083333300009,-13.878333332999944],[33.375000000000114,-13.995],[33.382500000000164,-14.064166665999892],[33.62583333300017,-14.163333332999912],[33.64500000000015,-14.2725],[33.85666666600008,-14.28416666599992],[33.86833333400011,-14.376666666999881],[33.91333333300008,-14.474166665999917]]],[[[34.33500000000015,-13.285833333999904],[34.25166666600006,-13.33833333299998],[34.27666666599998,-13.459166665999817],[34.25583333300011,-13.513333332999935],[34.3325,-13.728333332999966],[34.385833333000164,-13.826666665999937],[34.50500000000011,-13.92],[34.5125,-13.965833332999921],[34.429166667000175,-14.058333333999883],[34.50833333400004,-14.153333332999921],[34.50666666600017,-14.26833333299993],[34.576666666,-14.4325],[34.66916666600008,-14.579166666999868],[34.77416666700009,-14.6725],[34.851666666000085,-14.829166666999981],[34.936666666000065,-14.89249999999987],[34.91833333300008,-15.020833333999974],[34.93583333400005,-15.114999999999895],[34.905,-15.176666666999893],[34.91916666700013,-15.3175],[35.021666666000044,-15.438333333999879],[35.11583333300007,-15.41583333299991],[35.11583333300007,-15.415],[35.14750000000015,-15.299166666999952],[35.125833334000106,-15.259166666999874],[35.1925,-15.136666666999815],[35.379166667000106,-15.056666666999888],[35.41666666700007,-14.992499999999893],[35.445,-14.855833332999907],[35.436666667000054,-14.773333332999982],[35.37583333300017,-14.666666665999912],[35.355833334000124,-14.53],[35.29750000000013,-14.451666666999813],[35.298333334000176,-14.2325],[35.22083333299997,-14.174166666999838],[35.205,-14.066666666999822],[35.152500000000146,-13.989166665999903],[35.11500000000012,-13.856666665999967],[35.05083333400012,-13.731666666999956],[35.18083333400017,-14.0425],[35.18000000000012,-14.121666666999943],[35.29250000000013,-14.368333333999885],[35.2425,-14.414166665999971],[35.259166667000045,-14.535833332999914],[35.34583333300003,-14.619166666999945],[35.23000000000019,-14.755833333999874],[35.17833333300018,-14.706666666999922],[35.181666667000115,-14.59833333399996],[35.19000000000011,-14.6775],[35.16500000000019,-14.79833333299996],[35.19416666700016,-14.945],[35.155,-15.025],[35.02833333400008,-15.109166666999954],[35.03083333300009,-14.9725],[35.00250000000011,-14.889999999999873],[34.91,-14.813333332999889],[34.76250000000016,-14.564166666999881],[34.906666667000025,-14.5425],[34.92083333300013,-14.4675],[34.82333333300011,-14.361666665999905],[34.84166666700003,-14.233333333999951],[34.93166666700017,-14.275833332999923],[34.97,-14.166666666999959],[34.930833334000056,-14.068333333999874],[34.86416666700006,-13.995],[34.82250000000016,-14.0375],[34.85916666700007,-14.116666666999947],[34.81166666700011,-14.148333332999869],[34.7975,-14.2575],[34.62583333400005,-14.20916666699992],[34.566666667000106,-14.1325],[34.5175,-13.96583333399991],[34.57416666700004,-13.911666665999917],[34.62833333300006,-13.7175],[34.48666666700012,-13.578333332999932],[34.40583333400019,-13.55333333399983],[34.30250000000012,-13.380833332999941],[34.33500000000015,-13.285833333999904]]]]},"properties":{"objectid":813,"eco_name":"Zambezian-Limpopo mixed woodlands","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Afrotropic","eco_biome_":"AF07","nnh":3,"eco_id":66,"shape_leng":160.755472745,"shape_area":15.5946926361,"nnh_name":"Nature Could Recover","color":"#B3FC53","color_bio":"#FEAA01","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":183421.53672001368,"percentage":0.8555501743580558}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[24.246666667,-11.7325],[24.34,-11.64916666699986],[24.439166667,-11.610833332999903],[24.50166666700011,-11.667499999999848],[24.77,-11.435833332999948],[24.959166667000034,-11.389999999999873],[24.985833333000016,-11.25],[24.741666667000118,-11.304166665999958],[24.66583333300008,-11.3575],[24.58500000000015,-11.45583333399992],[24.475,-11.46],[24.35,-11.36666666699989],[24.39833333399997,-11.26833333299993],[24.38000000000011,-11.08833333299998],[24.320833333000166,-11.0525],[24.193333333,-11.02916666699997],[24.285833333000085,-11.135],[24.285833333000085,-11.265833332999932],[24.33,-11.335833333999915],[24.23,-11.373333332999948],[24.1325,-11.3175],[24.035,-11.456666666999865],[24.038333333000026,-11.538333333999901],[24.11666666600007,-11.6225],[24.039166667000075,-11.77583333299998],[24.070000000000107,-11.806666666999945],[24.11083333300013,-11.750833332999946],[24.177500000000123,-11.8125],[24.145833334000145,-11.94333333399993],[23.988333333000128,-11.996666666999943],[24.0183333330001,-12.080833332999873],[24.070000000000107,-12.09166666699997],[24.177500000000123,-12.085833333999972],[24.21000000000015,-11.81666666599989],[24.25666666700016,-11.749166665999894],[24.246666667,-11.7325]]],[[[22.703333334000035,-13.09166666599998],[22.685000000000116,-13.001666666999881],[22.62166666600018,-13.130833332999941],[22.65,-13.240833332999955],[22.78666666700002,-13.175],[22.76000000000016,-13.098333332999914],[22.703333334000035,-13.09166666599998]]],[[[22.013333333000105,-13.00583333399993],[22.00083333300006,-13.086666665999871],[22.238333333000128,-13.040833332999966],[22.013333333000105,-13.00583333399993]]],[[[22.96916666700008,-13.2775],[22.92416666700018,-13.23916666599996],[22.850833333000026,-13.33416666699992],[22.875,-13.53583333399996],[22.941666666000117,-13.626666666999938],[23.010000000000105,-13.66416666699996],[23.11,-13.623333332999948],[23.0525,-13.481666666999956],[23.02666666700003,-13.31],[22.975833333000082,-13.293333333999897],[22.96916666700008,-13.2775]]],[[[23.18250000000012,-13.702499999999873],[23.118333333000066,-13.631666666999934],[23.0625,-13.668333333999897],[23.10083333299997,-13.729166666999959],[23.06166666700011,-13.828333333999979],[22.999166666000065,-13.771666666999977],[22.91000000000014,-13.8025],[23.00416666600006,-13.904166666999913],[23.04000000000019,-14.075833332999935],[23.096666667000022,-14.20583333299993],[23.16666666600014,-14.201666665999937],[23.209166667000034,-14.119166666999945],[23.2075,-13.979166666999845],[23.092500000000143,-14.020833332999871],[23.07166666600017,-13.920833332999962],[23.204166667000038,-13.9725],[23.195833334000042,-13.865],[23.225000000000136,-13.763333332999878],[23.193333334000158,-13.725],[23.18250000000012,-13.702499999999873]]],[[[21.975566711000113,-13.983513176999963],[21.97281059200003,-14.036001428999896],[21.794990527000095,-14.006142407999903],[21.572509503000163,-13.898970554999948],[21.404319575000045,-13.794656428999929],[21.163099466000062,-13.763858466999977],[21.12207055200014,-13.856443292999927],[21.35445948900019,-14.097567345999948],[21.329610499000125,-14.156532358999868],[21.251180528000077,-14.173041354999896],[21.114910563000024,-14.107516832999977],[21.049940588000084,-14.11022670199992],[21.07512049500008,-14.203489288999947],[21.261020547000044,-14.336891803999947],[21.161619557000108,-14.391438044999973],[21.015459450000094,-14.34328032299993],[21.07298059500016,-14.815909188999967],[21.135509593000165,-15.001868248999926],[21.331809574999966,-15.273389608999935],[21.482011844000112,-15.516232531999947],[21.47846424200003,-15.474562620999905],[21.57171251300008,-15.33232272299989],[21.596215880000045,-15.184675143999925],[21.683258429000034,-15.1181797939999],[21.723808515000144,-15.04444489499997],[21.889677837000136,-14.9816754659999],[21.910304250000138,-14.840163466999911],[21.968992837000087,-14.774619735999863],[21.82001120800004,-14.693307795999942],[21.790573061000146,-14.612161584999967],[21.847331006000104,-14.476342125999963],[21.780746838000084,-14.316486444999953],[21.652247125000088,-14.30948172099994],[21.65622679300003,-14.231919245999904],[21.937702427000147,-14.199186525999892],[21.990439884000125,-14.163897429999963],[21.975566711000113,-13.983513176999963]]],[[[22.878333333000057,-13.799166666999895],[22.932500000000175,-13.940833332999887],[22.994166667000172,-13.911666666999906],[22.878333333000057,-13.799166666999895]]],[[[22.649166665999985,-13.870833332999894],[22.68083333400017,-13.929999999999893],[22.9125,-14.061666665999894],[23.030833333000146,-14.250833333999879],[23.085,-14.180833332999953],[23.025,-14.07],[22.8958333330001,-13.9625],[22.723333334000188,-13.934166666999943],[22.649166665999985,-13.870833332999894]]],[[[22.00333333300017,-14.269166666999979],[22.000833334000163,-14.423333333999949],[22.08,-14.374166666999884],[22.00333333300017,-14.269166666999979]]],[[[23.539166666000085,-14.39333333299993],[23.428333334000115,-14.399166665999928],[23.368333334000056,-14.3725],[23.27333333300004,-14.382499999999823],[23.239166666000074,-14.40083333299998],[23.225833333000082,-14.538333332999912],[23.236666667000065,-14.646666666999977],[23.37333333400005,-14.707499999999868],[23.41166666700019,-14.606666666999956],[23.48250000000013,-14.503333333999933],[23.543333333000135,-14.46],[23.539166666000085,-14.39333333299993]]],[[[23.612500000000182,-14.455],[23.600833333000082,-14.450833332999935],[23.555,-14.460833333999915],[23.418333334000124,-14.61416666599996],[23.395,-14.702499999999873],[23.509166667000045,-14.655],[23.612500000000182,-14.455]]],[[[23.753333334000047,-14.730833332999907],[23.698333333000107,-14.646666666999977],[23.614166666000074,-14.7275],[23.79416666700007,-14.890833332999932],[23.862500000000125,-14.895],[23.840384723000057,-14.809999999999889],[23.816666667000106,-14.802499999999895],[23.815833334,-14.80166666599996],[23.75500000000011,-14.733333332999905],[23.754166666000117,-14.7325],[23.754166667,-14.731666666999956],[23.753333334000047,-14.730833332999907]]],[[[22.045833333000132,-14.675],[22.000000000000114,-14.775],[22.10416666700013,-14.795833332999962],[22.110833333000187,-14.689166666999881],[22.045833333000132,-14.675]]],[[[22.345,-14.693333332999941],[22.42833333300007,-14.77416666699986],[22.37500000000017,-14.815833332999887],[22.465833333000035,-14.9375],[22.575,-14.930833332999896],[22.41166666700019,-14.735833332999903],[22.345,-14.693333332999941]]],[[[23.86638888900012,-14.905],[23.773333333000096,-14.891666665999935],[23.594166666000092,-14.7275],[23.375000000000114,-14.804999999999893],[23.371666667000113,-14.87083333299995],[23.485833333000187,-14.844166666999968],[23.622500000000173,-14.850833332999912],[23.617500000000177,-14.911666666999963],[23.518333333000157,-14.949166666999872],[23.500833333000116,-14.887499999999875],[23.412500000000136,-14.87499999999983],[23.1625,-15.00749999999988],[23.119166666000183,-15.2375],[23.19583333300011,-15.377499999999884],[23.210833333000096,-15.658333332999973],[23.2775,-15.766666666999924],[23.276666667000143,-15.893333332999873],[23.30666666700006,-15.94916666599994],[23.247500000000173,-16.095],[23.303333333000126,-16.18833333399982],[23.245,-16.3275],[23.07166666600017,-16.37416666699994],[23.12166666700017,-16.45916666599993],[23.19,-16.4125],[23.317500000000166,-16.485],[23.321666667000045,-16.56583333299983],[23.257500000000107,-16.605833332999907],[23.247500000000173,-16.696666666999818],[23.34416666700008,-16.73583333399995],[23.3366666660001,-16.836666666999918],[23.363333333000185,-17.06166666699994],[23.38416666700016,-17.1025],[23.316666666000117,-17.256666665999944],[23.363333334000117,-17.3775],[23.318333333000112,-17.455],[23.154166666000094,-17.36],[23.1491666660001,-17.225],[23.06500000000011,-17.21333333299998],[23.017500000000155,-17.173333332999903],[23.03666666700019,-17.00583333299994],[22.979166667000015,-16.947499999999877],[22.865833334000115,-17.04916666699995],[22.798333333000073,-17.023333333999915],[22.7475,-16.931666666999888],[22.698333333000107,-16.910833333999904],[22.6675,-16.82],[22.5775000000001,-16.753333332999944],[22.60583333400018,-16.66083333299997],[22.448333333000164,-16.634166666999874],[22.34416666700008,-16.596666666999965],[22.2325,-16.398333332999925],[22.172500000000184,-16.368333332999953],[22.193333333000055,-16.27583333299998],[22.056666667000172,-16.180833333999942],[22.034166667000136,-16.1125],[21.79726221100009,-15.92605584699993],[21.698381128000108,-15.785100396999951],[21.578286501000093,-15.684223843999973],[21.626140440000142,-15.814835911999978],[21.51849953700014,-15.846144164999941],[21.39328044100006,-15.741340702999935],[21.30835952400014,-15.598729995999975],[21.19116056900009,-15.439439972999935],[21.119680537000022,-15.471046955999896],[21.205999555000062,-15.690003892999925],[21.41122056400019,-16.13862564699997],[21.483329574000095,-16.25413732499993],[21.618070511999974,-16.375779694999892],[21.850509572000192,-16.500241904999882],[21.789640526000028,-16.54913974899989],[21.504089536000038,-16.628483849999952],[21.345230510000135,-16.70065924499994],[21.139350516000093,-16.773545760999866],[20.88783055700003,-16.835601851999854],[20.454870556000117,-16.861229352999942],[20.22957958300009,-16.861080322999953],[19.7485505410001,-16.885057762999907],[19.57184057600017,-16.937735509999925],[19.378530587000057,-16.96256404799982],[19.25823954800012,-16.937905326999953],[19.022989532000054,-16.76589626799995],[18.877630567000097,-16.63751518299989],[18.7331195160001,-16.532029601999966],[18.491329437000104,-16.314693557999874],[18.28013045500012,-16.07345953499987],[18.138629512000023,-15.934348607999937],[18.06006055600011,-15.83009803099992],[17.956481992000022,-15.74992129899988],[17.844150547000027,-15.613849064999954],[17.638767661000088,-15.47120945599994],[17.492272259000117,-15.387826607999898],[17.40074675799997,-15.364186116999917],[17.202770529000134,-15.399566524999955],[17.08472667300009,-15.404133930999933],[16.82495123000018,-15.279636335999953],[16.654004776000022,-15.219835952999915],[16.491743824000025,-15.120385017999922],[16.363830080000128,-15.194310869999981],[16.30895350500009,-15.259450848999961],[16.288029343000062,-15.374824667999974],[16.37448955900004,-15.46654507799991],[16.368567626000072,-15.566591958999823],[16.15735202999997,-15.719801262999965],[16.086683634999986,-15.751721229999873],[15.749528273000067,-15.735381872999938],[15.563622372000054,-15.57781648699995],[15.492975836000028,-15.418320008999956],[15.463035161000107,-15.256753663999973],[15.287428057000056,-15.103832486999863],[15.291128590000085,-14.944950568999843],[15.138397508000025,-14.862051276999921],[15.056649373000084,-14.84774385899982],[14.764980103000141,-14.980701177999947],[14.627723976000027,-14.95015102799988],[14.402664297000172,-15.11097776399987],[14.261707637000029,-15.037239947999979],[14.204853996000168,-15.08499378599987],[14.200926542000104,-15.239253327999904],[14.253162162000024,-15.56412976699994],[14.116878250000184,-15.634112075999894],[14.107059524000078,-15.68289640699993],[14.206817777000026,-15.841648163999935],[14.172648612000046,-16.067464956999913],[14.174612357000058,-16.158399181999982],[14.236273954000183,-16.227043812999966],[14.307754277000186,-16.236848237999936],[14.404370538000023,-16.14029112799983],[14.482920343000046,-16.221010077999892],[14.402014043000179,-16.326950604999922],[14.179947722000179,-16.511949499999957],[14.374924150000084,-16.674491263999982],[14.617517387000134,-16.80254531999998],[14.69476774800006,-16.815086520999955],[14.823970105000114,-16.95946662699987],[14.87772912700018,-16.91495400699995],[15.01777364000003,-16.70608015399995],[15.119870608000099,-16.650687967999943],[15.133423303000143,-16.523398457999974],[15.216546497000081,-16.503907947999892],[15.342134802999965,-16.61605971299997],[15.525999695000166,-16.738529050999887],[15.55174981600004,-16.786543273999882],[15.500249575000112,-16.923598057999925],[15.599636004000047,-17.02038427799988],[15.693512100000078,-17.036820098999897],[15.867444932000183,-17.173777507999887],[16.02006245500013,-17.25818371399987],[16.16747349100018,-17.362889320999955],[16.18979859800004,-17.46716311499995],[16.12077619700017,-17.480607434999968],[16.138318237000135,-17.616472875999932],[16.21447539000002,-17.686680330999877],[16.25089780600007,-17.76762120299992],[16.23700847300006,-17.826536650999913],[16.27375810400008,-17.92912351899986],[16.272782260000156,-18.083137336999982],[16.30218017100009,-18.150762929999814],[16.261502206000102,-18.2664982579999],[16.312970585000073,-18.315101357999936],[16.3764000540001,-18.435557584999913],[16.365744277000147,-18.484163312999897],[16.47597836300008,-18.502294270999926],[16.522309299000142,-18.44519993299997],[16.623506609,-18.417808230999924],[16.74396906300018,-18.439460227999973],[16.80493608400019,-18.495627893999824],[16.829581344000076,-18.62060818699996],[16.89338743100018,-18.679661582999927],[16.865797512000086,-18.762616698999977],[16.913754864000055,-18.797851640999966],[17.058735286000058,-18.659816916999944],[17.163581739,-18.626357738999957],[17.18403766700004,-18.696407087999944],[17.371863291000125,-18.655248680999875],[17.50772448800012,-18.649733935999905],[17.60421467000009,-18.7094520629999],[17.69696828200017,-18.710893231999876],[17.994500439000035,-18.823088906999942],[18.160273320000044,-18.845924470999933],[18.246335688000045,-18.910396812999977],[18.341990845999987,-18.93614437499997],[18.624752130000104,-19.130251915999906],[18.681481484000074,-19.343449608999947],[18.815736870000137,-19.33522199299989],[18.913384895999968,-19.305769049999924],[19.006681186000037,-19.313991018999957],[19.13102517400017,-19.24259058699988],[19.156859941000164,-19.167935610999848],[19.39326124900009,-19.16400027599991],[19.51557671600017,-19.34230900499989],[19.777006768000092,-19.340915172999928],[19.84994402500007,-19.25735866499997],[19.92508961600015,-19.262089755999966],[20.005324423000104,-19.220901249999883],[20.008526739000047,-19.165696417999925],[20.533870966,-19.166623889999926],[20.60516085900008,-19.245636265999906],[20.81416561600014,-19.247149435999972],[20.99580403200008,-19.305142262999937],[21.100210653000033,-19.284201467999935],[21.46724403600018,-19.136264542999925],[21.705458904000068,-18.93606721699996],[22.06827286400005,-18.7329584229999],[22.156238140000085,-18.697255688999917],[21.977546524000047,-18.459792211999968],[21.894386003000136,-18.404320499999926],[21.854171525000027,-18.28599707999996],[22.007498710000107,-18.384610109999983],[22.158064675000105,-18.530922054999905],[22.2468627,-18.658270767999966],[22.29890742600014,-18.675284972999975],[22.115249465000147,-18.45598385699998],[22.170363436000116,-18.39702060699983],[22.32370757100017,-18.431265288999953],[22.32684288300004,-18.35301894599985],[22.424628126000187,-18.39231494699993],[22.553754991000176,-18.382590771999958],[22.647801565000123,-18.349523120999947],[22.75910767500011,-18.3461518659999],[22.916019276999975,-18.230199219999975],[23.00539761500005,-18.18354990699993],[23.04701759600016,-18.111639160999914],[23.123963501000105,-18.106252738999956],[23.17814494800001,-18.017947186999947],[23.24670107700007,-18.001271278999923],[23.36906659000016,-17.70347796599998],[23.427842319999968,-17.70348295599996],[23.30775411900015,-17.984917349999932],[23.320099922000168,-18.02169889299995],[23.317776028000083,-18.02372985599993],[23.324697396999966,-18.031882386999882],[23.364469771000074,-18.090646850999917],[23.366704343000038,-18.02424836499995],[23.477429533000077,-17.905076008999856],[23.589567684000087,-17.899601746999963],[23.63700785300017,-17.840615000999946],[23.82351305200001,-17.70736944999993],[23.91263434400014,-17.701300043999936],[24.031423550000056,-17.733335540999974],[24.114149205000047,-17.71297015499988],[24.287312036000117,-17.546714916999974],[24.35201089100019,-17.53834257199992],[24.389153703000147,-17.468679660999896],[24.544166667000127,-17.4783333339999],[24.581666666000046,-17.420833332999962],[24.650833334000026,-17.435833332999948],[24.78718344600003,-17.515833332999932],[24.850833333000026,-17.52873036699998],[24.915930487000082,-17.39333333299993],[24.994166667000115,-17.314999999999827],[24.84333333300009,-17.26166666699993],[24.78,-17.18833333399988],[24.93916666700011,-17.185],[24.97416666700019,-17.08916666599987],[25.05416666600007,-17.183333333999883],[25.10976407300012,-17.1975],[25.116430740000055,-17.190833332999944],[25.1275,-17.119166666999888],[25.26666666600005,-16.9825],[25.280000000000143,-16.921666666999897],[25.22916666700013,-16.7925],[25.01666666699998,-16.89333333299993],[24.96583333300009,-16.986666665999962],[24.890000000000157,-17.046666666999954],[24.763333333000105,-17.035],[24.7650000000001,-17.088333333999856],[24.661666667000134,-17.12249999999983],[24.4583333330001,-17.075833332999878],[24.414166666000142,-17.15416666599998],[24.210833333000096,-17.165],[24.09833333400013,-17.1166666659999],[24.0425,-17.01833333299993],[23.811666666000065,-16.788333332999912],[23.534166666999965,-16.59083333299992],[23.46,-16.48916666599996],[23.405833332999975,-16.351666666999904],[23.494000096000093,-16.334166666999863],[23.473333333000085,-16.26333333399998],[23.37833333300017,-16.19583333399987],[23.4725,-16.149166666999918],[23.51208344900016,-16.048291192999955],[23.484166667000125,-15.884999999999877],[23.605000000000132,-15.665],[23.641666666000106,-15.525],[23.709166666000044,-15.44],[23.79666666700018,-15.221666666999965],[23.797500000000127,-15.140833332999932],[23.88916666700004,-15.083333332999928],[23.925833333000185,-15.021666666999977],[24.02333333300004,-14.98166666599991],[23.86638888900012,-14.905]],[[23.60916666600008,-16.71666666699997],[23.655,-16.740833333999944],[23.65916666700008,-16.827499999999873],[23.76083333300005,-16.8925],[23.8325,-17.07333333299988],[23.93083333300018,-17.18416666599984],[23.944166667000104,-17.31999999999988],[23.815833333000114,-17.28],[23.78583333299997,-17.169166666999956],[23.665000000000134,-17.101666665999915],[23.59500000000014,-16.90416666699997],[23.5208333330001,-16.79166666699996],[23.529166666000094,-16.72166666699985],[23.60916666600008,-16.71666666699997]]],[[[22.0025,-14.809166666999943],[22.000000000000114,-14.936206951999964],[22.055000000000177,-14.935],[22.0025,-14.809166666999943]]],[[[22.56250000000017,-14.95],[22.35,-14.970833332999973],[22.14916666700003,-15.005833332999885],[22.195833333000166,-15.0975],[22.23666666600019,-15.255],[22.12916666700005,-15.280833332999975],[22.19250000000011,-15.41833333399984],[22.031666666000092,-15.5875],[22.095,-15.665833332999966],[22.303333333000182,-15.7075],[22.413333333000082,-15.7],[22.489166666000187,-15.725],[22.49,-15.638333333999924],[22.560833333000176,-15.524166666999974],[22.6075,-15.5075],[22.586666667000145,-15.415],[22.664166667000075,-15.38833333299982],[22.67583333300007,-15.320833332999882],[22.7425,-15.3225],[22.779166666000037,-15.2325],[22.720833334000076,-15.114999999999895],[22.76916666699998,-15.036666666999963],[22.66,-14.963333332999923],[22.56250000000017,-14.95]]],[[[22.171666666000135,-15.14333333399992],[22.035,-15.234166665999851],[22.134166667000045,-15.2525],[22.204166666000162,-15.205833332999873],[22.171666666000135,-15.14333333399992]]],[[[22.78666666700002,-15.249166665999894],[22.751666666000062,-15.338333333999913],[22.69000000000011,-15.390833332999875],[22.6625,-15.470833332999973],[22.830000000000155,-15.611666666999952],[22.942500000000166,-15.785833332999971],[22.900833333000094,-15.805833332999896],[22.886666667000156,-15.900833332999866],[22.7775,-15.8325],[22.683333334000054,-15.811666665999837],[22.600000000000136,-15.86249999999984],[22.72250000000014,-16.004166666999936],[22.86416666700012,-16.046666665999908],[23.0725,-16.070833332999825],[23.126666667000165,-16.0325],[23.125833333000116,-15.921666665999851],[23.03666666700019,-15.8225],[23.030833333000146,-15.758333333999929],[22.94750000000016,-15.628333332999944],[22.94,-15.5275],[22.78666666700002,-15.249166665999894]]],[[[22.055833333000123,-15.31],[22.000000000000114,-15.333333332999928],[22.00083333300006,-15.574999999999875],[22.1525,-15.403333332999978],[22.055833333000123,-15.31]]],[[[22.439166667000052,-15.728333333999899],[22.35083333300014,-15.751666666999881],[22.43250000000012,-15.82666666699987],[22.56250000000017,-16.02833333299992],[22.715,-16.07416666699993],[22.715,-16.01916666699998],[22.55833333300012,-15.820833332999939],[22.48916666700012,-15.7975],[22.439166667000052,-15.728333333999899]]],[[[22.57333333300005,-15.734166665999908],[22.51666666600005,-15.759166666999874],[22.595,-15.8566666669999],[22.7475,-15.785],[22.66666666700013,-15.736666665999905],[22.57333333300005,-15.734166665999908]]],[[[22.78,-16.039166666999904],[22.628333333000114,-16.12],[22.713333333000094,-16.15083333299998],[22.679166667,-16.21666666699997],[22.798333334000176,-16.24583333299995],[23.0183333330001,-16.266666666999924],[23.24166666600013,-16.268333333999976],[23.19250000000011,-16.1875],[23.084166667000147,-16.14249999999987],[23.040833333000137,-16.07583333399998],[22.867500000000177,-16.06749999999988],[22.78,-16.039166666999904]]],[[[22.731666667000184,-16.73916666599996],[22.661666666000087,-16.786666666999963],[22.70083333400015,-16.90416666699997],[22.799166667000122,-17.017499999999814],[22.896666667000147,-17.014999999999816],[22.938333333000116,-16.944166666999934],[22.792500000000132,-16.856666666999956],[22.731666667000184,-16.73916666599996]]],[[[23.098333334000188,-17.08],[23.02,-17.124166666999884],[23.04000000000019,-17.175],[23.098333334000188,-17.08]]],[[[26.159807494000063,-17.914166666999904],[26.099166667000077,-17.931666666999945],[26.026666667000143,-17.868333332999896],[25.90666666700008,-17.823333333999926],[25.87500000000017,-17.733333332999962],[26.000833333000173,-17.595833333999906],[26.025000000000148,-17.491666666999834],[25.915833333000023,-17.44083333299983],[25.541666667000186,-17.44666666699993],[25.5150000000001,-17.48],[25.392500000000155,-17.55166666699995],[25.386666667000043,-17.595],[25.188333334000106,-17.7275],[25.246539598000027,-17.811742787999947],[25.135527890000105,-17.81104947599988],[25.0795143470001,-17.85907412699993],[24.907602335000036,-17.823024338999915],[24.725241584000116,-17.9050069729999],[24.661975368000185,-17.96100697199995],[24.554903269000135,-18.109175552999943],[24.405772881000132,-18.180535260999932],[24.311745670999983,-18.24110894099988],[24.191035978000116,-18.357490216999963],[24.131196269999975,-18.37922948499994],[24.018055661000176,-18.470959377999975],[24.07596473500007,-18.53594189699993],[24.063983066000162,-18.612728805999836],[24.052567352000096,-18.63950796299997],[23.976251431000037,-18.99461474599991],[23.960188390000155,-19.185502976999942],[23.95952013200008,-19.243388714999924],[24.07161925300005,-19.188830140999983],[24.165586678000125,-19.108726460999947],[24.279442781000114,-19.063574484999947],[24.54479521500008,-18.871799845999817],[24.557211535000135,-18.817542853999953],[24.506937873000027,-18.698219929999937],[24.569041537000032,-18.64592617699998],[24.71808095500012,-18.69304982299991],[24.750309786000173,-18.744274308999934],[24.904069541000126,-18.794219351999914],[24.90711695800013,-18.855892527999913],[25.05375651700018,-18.92775233599997],[25.204392126000073,-18.81793042399994],[25.302876677000143,-18.80457200099994],[25.391769252000074,-18.859267652999847],[25.53621582000011,-18.880784468999877],[25.6012583160001,-18.85388932199993],[25.709668610000108,-18.873071241999924],[25.830801979000114,-18.83850334799996],[26.372417746999986,-19.360344708999946],[26.619334950000052,-19.521720753999944],[26.738822413000094,-19.420967767999855],[26.915346944000134,-19.448703153999816],[27.09734874500009,-19.606175387999883],[27.227132837,-19.64836501799988],[27.34150000900013,-19.65199346099996],[27.502615516000162,-19.776928763999933],[27.687097295000115,-19.826756392999926],[27.980970499000136,-19.823979468999937],[28.252472580000074,-19.90755681799982],[28.336503487000073,-19.839686186999927],[28.42599587100017,-19.63003019799993],[28.51350585300014,-19.533642113999974],[28.55376992500004,-19.310323869999934],[28.534376355000177,-19.294656836999934],[28.547289610000064,-19.033579317999965],[28.511476075000076,-18.832343395999942],[28.44781809500006,-18.655605450999815],[28.48411341400015,-18.590942464999955],[28.662620348000132,-18.505409945999872],[28.77300297400012,-18.396171439999932],[28.80780556800005,-18.31463855499993],[28.821224294000103,-18.194945438999923],[28.77000568200009,-18.158789985999874],[28.63077556600018,-18.145518765999952],[28.40105002100006,-18.194895830999883],[28.244420582000146,-18.256331328999977],[27.805354262000094,-18.31411854099997],[27.670104744000184,-18.34583371799988],[27.38965816200016,-18.364678630999833],[27.30711603100002,-18.38153860799997],[27.06495506600004,-18.358213733999946],[26.826277124000057,-18.374251956999956],[26.57467803100002,-18.515606595999884],[26.34545795600019,-18.706368064999936],[26.22512778300006,-18.771021128999905],[26.15948740100015,-18.707551088999935],[26.215172341000027,-18.590674583999828],[26.17141340200004,-18.570988073999956],[25.893956216000106,-18.69145333599988],[25.810418936000133,-18.697066713999902],[25.76860079800008,-18.611829091999823],[25.696460662000106,-18.575769356999956],[25.578598982000017,-18.442563684999982],[25.476358380000136,-18.492722864999962],[25.47672443600004,-18.561558999999875],[25.388096873000052,-18.616953624999894],[25.290708248999977,-18.542436443999975],[25.281572867000136,-18.462603730999945],[25.376050195,-18.441763486999946],[25.421144565000077,-18.37868354699998],[25.518465519000074,-18.36280878799994],[25.450902028000087,-18.212118714999917],[25.513532649000126,-18.19093997799996],[25.826795474000164,-18.135949533999906],[25.952101394000124,-18.12752946599994],[26.085858188000145,-18.078944389999947],[26.14602130000003,-18.012677581999924],[26.159807494000063,-17.914166666999904]],[[24.949706747000164,-18.061392453999872],[24.99947823000008,-18.025808607999977],[25.070136024000135,-18.077634006999972],[25.08011880700019,-18.192165244999842],[25.055838201000086,-18.264064605999977],[24.960590031000038,-18.280455030999974],[24.875093587000038,-18.33088054899997],[24.85214570100004,-18.386835520999966],[24.74762212100012,-18.43769739499993],[24.724426941000104,-18.383414710999944],[24.78309309399998,-18.331120471999952],[24.799791001000187,-18.260333594999906],[24.865084249000176,-18.223798906999946],[24.949706747000164,-18.061392453999872]]],[[[24.31020094600018,-17.586376526999913],[24.20622435900009,-17.63934138899998],[24.125458450000053,-17.713030715999935],[24.17255198000015,-17.75546275199997],[24.237309645000153,-17.648594735999836],[24.31020094600018,-17.586376526999913]]],[[[24.611136868000187,-17.704053183999974],[24.546832130000155,-17.718689318999964],[24.51657644700009,-17.76378279599993],[24.508191734000093,-17.767754107999906],[24.490388519000078,-17.793720648999965],[24.583601470000076,-17.860387041999957],[24.624669806999975,-17.925751813999966],[24.628402718000018,-17.923641613999962],[24.621467695000092,-17.89950934999996],[24.613610999000173,-17.875132476999966],[24.59155681100009,-17.85225831199989],[24.6226786630001,-17.859181667999962],[24.68687274600012,-17.883579857999905],[24.65569945900006,-17.857768303999876],[24.66720908900004,-17.850109993999865],[24.658110001000182,-17.81994969699997],[24.616791795000097,-17.72580327299994],[24.612535175000176,-17.705994468999847],[24.611136868000187,-17.704053183999974]]]]},"properties":{"objectid":814,"eco_name":"Zambezian Baikiaea woodlands","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Afrotropic","eco_biome_":"AF07","nnh":2,"eco_id":64,"shape_leng":250.402325017,"shape_area":30.4756779546,"nnh_name":"Nature Could Reach Half Protected","color":"#CF7B01","color_bio":"#FEAA01","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":360537.2825045337,"percentage":1.681687660158376}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[34.591152614000066,-21.32888081199991],[34.672809450000045,-21.305252226999926],[34.945098592000136,-21.14773480799994],[34.958015608000096,-21.079367647999902],[35.083480461000136,-21.078791642999875],[35.06520730300008,-21.007828273999905],[34.81048153900008,-21.002711789999978],[34.69569003200013,-21.02246672399997],[34.60438604700016,-21.14381311999989],[34.420903365000186,-21.173112642999968],[34.25780545500004,-21.161445244999868],[34.25781335100015,-21.297206347999975],[34.28566174300005,-21.340588923999917],[34.390787992000014,-21.368080124999835],[34.591152614000066,-21.32888081199991]]],[[[34.3506365,-19.85423021599985],[34.4499125160001,-19.922244906999822],[34.594242519000034,-19.946401719999983],[34.712318556000184,-19.894891403999907],[34.65531558000015,-19.772307746999957],[34.47935847700012,-19.651418574999923],[34.51017756200008,-19.57745397899987],[34.596477469000035,-19.595944791999955],[34.73825048900005,-19.70072880799995],[34.89235647200002,-19.706892356999845],[34.93966259300004,-19.668713625999885],[34.75288747100018,-19.383509143999902],[34.71110955100005,-19.219978715999844],[34.66342155100017,-19.15747134399993],[34.58314152600019,-19.112637884999856],[34.4991375890001,-19.10433544199998],[34.409356501000104,-19.27888240099992],[34.36660060700012,-19.406203593999862],[34.310911719000046,-19.455199547999882],[34.26218887699997,-19.58292169699996],[34.26617342300017,-19.695788645999926],[34.3506365,-19.85423021599985]]],[[[35.397861510000155,-17.9602618159999],[35.38956459900015,-18.075532598999928],[35.4522325690001,-18.386132067999938],[35.56939648800011,-18.792091945999914],[35.648410510000076,-18.961013781999952],[35.7183496130001,-18.954913264999846],[35.773826580000105,-18.880948501999967],[35.903270490000125,-18.88711221799997],[36.051212590000034,-18.770001272999934],[36.032718591000105,-18.56043156499993],[36.100830607000034,-18.390386721999903],[36.207496528000036,-18.40677367799998],[36.38570752400011,-18.530156297999895],[36.45804251000004,-18.437157908999893],[36.59365449600011,-18.375519571999916],[36.68726761400006,-18.367009090999943],[36.76517857700014,-18.28917389999998],[36.64296757900007,-18.18444302499995],[36.67995054700009,-18.1166411399999],[36.79090448199997,-18.141295836999973],[36.84638245500008,-18.104314880999937],[36.821727590000194,-17.99336765099997],[36.84638245500008,-17.894745842999896],[36.95733655800018,-17.974874825999905],[37.123767459000135,-17.752979193999977],[37.03130752400011,-17.72832483199994],[37.03130752400011,-17.64819668699994],[36.83654059200012,-17.566589806999957],[36.57606859200007,-17.53444654999987],[36.28683057100011,-17.671729382999956],[36.20096954000019,-17.72605685699989],[36.06365954900008,-17.87430791399987],[35.97060047400004,-17.920925208999904],[35.87471049700008,-17.934214213999894],[35.51409151700011,-17.933026329999905],[35.397861510000155,-17.9602618159999]]]]},"properties":{"objectid":815,"eco_name":"Zambezian coastal flooded savanna","biome_num":9,"biome_name":"Flooded Grasslands & Savannas","realm":"Afrotropic","eco_biome_":"AF09","nnh":3,"eco_id":75,"shape_leng":11.4087614435,"shape_area":1.65912877377,"nnh_name":"Nature Could Recover","color":"#439CD4","color_bio":"#BEE7FF","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":19472.752195284247,"percentage":1.6839654711454697}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[33.42861288700004,-24.747057044999963],[33.493408449000185,-24.72667168099997],[33.529571500000145,-24.63165559999993],[33.587841485000126,-24.56939951699985],[33.67724957000007,-24.623295992999886],[33.74861158500005,-24.60726761399991],[34.14754156100014,-24.334110944999964],[34.27344847600017,-24.17556791699991],[34.264659548000054,-24.07466287799997],[34.20970946700015,-23.89157193799997],[34.2748485890001,-23.809337085999914],[34.34238845600004,-23.820855664999954],[34.43896055400006,-23.95544991899982],[34.500110561000156,-23.98348855899991],[34.57770955000012,-23.96183961199995],[34.73638953800014,-23.737569889999975],[34.78253945900008,-23.61904676099988],[34.79594061400019,-23.443865654999968],[34.78876855400006,-23.238646322999955],[34.735828454000114,-22.83649601899998],[34.66431053499997,-22.57570064499987],[34.58810059500007,-22.54987130799998],[34.39363859700006,-22.61401767699988],[34.26126051800003,-22.591280088999838],[34.24694053999997,-22.519193876999964],[34.30184954900005,-22.42260903899995],[34.521461615000135,-22.211320034999915],[34.57841849100009,-22.135583001999976],[34.50014861500006,-21.860717932999876],[34.51646046900004,-21.643059856999912],[34.591152614000066,-21.32888081199991],[34.390787992000014,-21.368080124999835],[34.28566174300005,-21.340588923999917],[34.1986453880001,-21.374719755999934],[33.9152173060001,-21.427705421999974],[33.704387755000084,-21.487126219999936],[33.594498756,-21.53410747399988],[33.53682351700007,-21.628490780999982],[33.62335808900019,-21.860258855999973],[33.63729018100008,-22.017711247999955],[33.54978809500017,-22.24986043599995],[33.43692549100018,-22.466743546999908],[33.35737670400016,-22.653104426999903],[33.29076486100007,-22.985671097999955],[33.300143990000095,-23.040240017999963],[33.37529729000016,-22.991304318999937],[33.55430574700006,-22.979275651999956],[33.66420659000005,-23.135936053999956],[33.77859745000018,-23.54684780799988],[33.79601256500018,-23.743663296999898],[33.783095362000154,-23.93686026499995],[33.68863512600012,-24.22604436099988],[33.6259880880001,-24.332075221999844],[33.50715458700017,-24.481478736999975],[33.44102847500005,-24.616027052999925],[33.42861288700004,-24.747057044999963]]],[[[34.26617342300017,-19.695788645999926],[34.20700546000012,-19.773302053999885],[33.99418561100009,-19.810229652999965],[33.93738325600003,-19.898861499999953],[33.877039792000176,-20.045784714999968],[33.85080350400011,-20.208449702999815],[33.85228191600004,-20.32737482099992],[33.85542340100017,-20.34493391399991],[33.881852165,-20.575780478999945],[34.00568115200008,-20.822012720999908],[33.95596316100017,-20.93848826999988],[33.73071578700012,-21.038475032999884],[33.174790474000076,-20.996636750999926],[33.048986980000166,-20.99943351899998],[32.83368320500011,-21.076125171999877],[32.719316032999984,-21.072496728999965],[32.67356284700014,-20.962436467999908],[32.500023764,-20.96844088099988],[32.15990769600006,-20.991295348999927],[31.919740978000164,-21.058344224999928],[31.825268898,-21.143886665999958],[31.80439050000001,-21.247110837999855],[31.823788018000073,-21.33065842199983],[31.922244643000113,-21.35798293099998],[32.05997413900002,-21.218623148999882],[32.208148755000025,-21.129472107999902],[32.3438958480001,-21.10338022999997],[32.44085974900014,-21.11383483999998],[32.716342428000075,-21.24239858599998],[32.80684575400011,-21.31551140399995],[32.89336848200014,-21.343637823999927],[33.04005432200006,-21.305497435999882],[33.21956035400012,-21.29909206799988],[33.44481562300001,-21.334866408999915],[33.64719429900009,-21.315610618999983],[33.87492954600003,-21.243740353999954],[34.13299711000013,-21.17548861199998],[34.25780545500004,-21.161445244999868],[34.420903365000186,-21.173112642999968],[34.60438604700016,-21.14381311999989],[34.69569003200013,-21.02246672399997],[34.471099192,-20.722857632999876],[34.374621022000156,-20.514384667999877],[34.375106753000125,-20.3163663119999],[34.40176556000006,-19.948710447999872],[34.3506365,-19.85423021599985],[34.26617342300017,-19.695788645999926]]],[[[35.075,-16.595833332999916],[35.11916666600007,-16.81666666699988],[35.15666666600009,-16.8325],[35.16666666700013,-16.936666666999884],[35.061666667000054,-16.996666665999896],[35.06416666700011,-17.052499999999895],[35.16416666600014,-17.123333332999948],[35.21250000000015,-16.928333332999955],[35.28083333300003,-16.849166666999906],[35.25083333300012,-16.73166666599991],[35.075,-16.595833332999916]]],[[[31.74044826900007,-16.18297315799998],[31.591772130000038,-16.198620346999917],[31.280002028000183,-16.270480689999943],[30.995085170000095,-16.374477008999975],[30.745468480000056,-16.40256374299986],[30.575408472000106,-16.38005070099996],[30.436174408,-16.298898928999904],[30.26313290000013,-16.31052664099991],[30.10550831200004,-16.360715538999955],[29.994620215000054,-16.328569641999934],[29.792727269000068,-16.1498070749999],[29.616198790000055,-16.054191137999965],[29.440171833000136,-16.032079050999982],[29.32083286200009,-16.040098162999982],[29.13834533000005,-16.08064428399996],[28.94889964900011,-16.178225313999974],[28.87232841500014,-16.26256488799993],[28.84945971800005,-16.34329586199982],[28.849965188000112,-16.484680264999895],[28.90665317400004,-16.514811462999944],[28.894723225000178,-16.583493925999903],[28.794284196000035,-16.669437321999965],[28.69085972000005,-16.721640919999913],[28.606327291000127,-16.716007698999874],[28.517316689000154,-16.659764779999932],[28.414397683000118,-16.853352781999945],[28.294565084999988,-16.92362914599994],[28.223952904000043,-16.87180665999989],[28.113068755000086,-16.907541314999946],[28.12600964500001,-17.121627658999955],[28.000711621000164,-17.26580882999997],[27.809777163000035,-17.41440051199993],[27.564145019000023,-17.55535419499995],[27.407018005000054,-17.611166393999895],[27.327461323000136,-17.661766168999918],[27.342384617000164,-17.76258460799994],[27.536312419000183,-17.783493827999962],[27.56316566100014,-17.81562980299998],[27.56217840800008,-17.9401443079999],[27.509474968000177,-18.022880058999874],[27.566166901000145,-18.120891808999886],[27.527881284000046,-18.163061595999977],[27.362295501,-18.123277698999857],[27.28224124400009,-18.168254174999845],[27.245440455000107,-18.09153275799997],[27.287702722000063,-18.026468815999976],[27.25537221000019,-17.86459599199992],[27.14249776200012,-17.87783744799998],[27.079353149000042,-17.978245009999966],[26.92471400900007,-18.062173705999953],[26.71587081000007,-18.07620715199988],[26.671124617000146,-18.181035145999886],[26.812348980000138,-18.28468011699988],[26.826277124000057,-18.374251956999956],[27.06495506600004,-18.358213733999946],[27.30711603100002,-18.38153860799997],[27.38965816200016,-18.364678630999833],[27.670104744000184,-18.34583371799988],[27.805354262000094,-18.31411854099997],[28.244420582000146,-18.256331328999977],[28.40105002100006,-18.194895830999883],[28.63077556600018,-18.145518765999952],[28.77000568200009,-18.158789985999874],[28.821224294000103,-18.194945438999923],[28.80780556800005,-18.31463855499993],[28.77300297400012,-18.396171439999932],[28.662620348000132,-18.505409945999872],[28.48411341400015,-18.590942464999955],[28.44781809500006,-18.655605450999815],[28.511476075000076,-18.832343395999942],[28.547289610000064,-19.033579317999965],[28.534376355000177,-19.294656836999934],[28.55376992500004,-19.310323869999934],[28.66365497700008,-19.195462063999912],[28.87597330300008,-19.0850306129999],[29.073869859000183,-18.94728457399998],[29.538782428000104,-18.70674508299993],[29.655135951000034,-18.664986172999875],[29.72425540800009,-18.699938759999952],[29.773985244000187,-18.787104865999936],[29.807820323999977,-19.169489244999966],[29.80485066700004,-19.407271653999942],[29.853589301,-19.551071712999885],[29.841173621000166,-19.817772531999935],[29.808369222000124,-20.057559718999983],[29.88495230000018,-20.17686180099986],[29.925733686000115,-20.298569615999952],[29.932206105000148,-20.43955306399988],[29.98143441800005,-20.453215317999934],[30.105753084000014,-20.56930975499995],[30.178363460000185,-20.779386542999873],[30.342460467000137,-20.87018109299993],[30.65771753900009,-20.905564398999957],[30.844679296000038,-20.847747422999873],[30.98191911300006,-20.838525444999902],[31.10921138300006,-20.784718023999915],[31.257887522000033,-20.76907083499998],[31.50402119,-20.701621002999957],[31.632300714000166,-20.523299078999912],[31.73024397300003,-20.27347807999996],[31.801839459000064,-20.132905509999887],[31.79487341300012,-20.054179313999953],[31.682986219000043,-19.942906264999976],[31.55817392600011,-19.889069079999956],[31.333420180000076,-19.92679859099991],[31.28966124100009,-19.90711208199997],[31.362251877000062,-19.77778610999991],[31.660097782000094,-19.684234478999883],[31.845570763000183,-19.677428155999905],[31.986783281000157,-19.577431470999898],[31.944011596000166,-19.43323045699998],[31.797811486000114,-19.273352488999876],[31.786868791000074,-19.217520447999902],[31.84802705300018,-19.162500239999872],[32.00118136400016,-19.197462746999975],[32.25031627100003,-19.435274920999973],[32.326891453000144,-19.41881589899998],[32.403462687000115,-19.334476325999844],[32.47556759300005,-19.40316870999993],[32.45121406700014,-19.6027908879999],[32.421880847000125,-19.678299517999903],[32.37714255100019,-19.918888615999947],[32.26826054400016,-20.180758124999898],[32.27822783000005,-20.564746326999966],[32.25585670800007,-20.651100599999893],[32.31603166400015,-20.788475446999882],[32.48907712100015,-20.844728286999953],[32.63774536400018,-20.69331999399992],[32.616851174000146,-20.525021958999957],[32.68795303400003,-20.446706640999878],[32.801313213000014,-20.235446828999955],[32.75406730300011,-20.108516669999972],[32.61334446400008,-20.07837554999992],[32.5054339190001,-19.94420834699997],[32.551171313000054,-19.782746399999894],[32.555144014000064,-19.69197169399996],[32.52479195700005,-19.348950412999898],[32.63914333700012,-19.081056648999834],[32.74306538900004,-19.03447634999992],[32.79181981400012,-19.449798615999953],[32.852985972000056,-19.530539510999972],[32.91862240600017,-19.526129],[33.14985252000014,-19.69726348899991],[33.25725759400012,-19.690046287999962],[33.40294038900004,-19.504898196999875],[33.41636306200013,-19.453085632999944],[33.53171354000011,-19.26431901999996],[33.57645973200016,-19.159491024999966],[33.671425438000085,-19.01169133299993],[33.72065375100016,-19.02535358699987],[33.72314557200019,-19.121350636999978],[33.792770500000074,-19.29768762699996],[33.69530902400004,-19.281609717999913],[33.68686604600009,-19.457535830999916],[33.46361292000006,-19.647896343999832],[33.30947530200018,-19.80532889299991],[33.28362115699997,-19.852320067999813],[33.09169549799998,-20.05754570299996],[33.061367128000086,-20.12180773299997],[33.12402206200005,-20.15153797499994],[33.31993226700001,-20.059179289999975],[33.325903164000124,-20.126658885999973],[33.1633107240001,-20.25637589199988],[33.09220886400004,-20.334691209999903],[33.11409425599999,-20.446355292999954],[33.2647567460001,-20.38532074999995],[33.396025666000185,-20.308619175999922],[33.49099532000008,-20.228700034999974],[33.61380547100009,-20.05640236499994],[33.835064350000096,-19.775668100999894],[33.84400885100001,-19.673245839999822],[33.900187418000144,-19.49411208199996],[33.957862657000135,-19.39972877599996],[33.99016948100018,-19.15431828899989],[33.97524618800003,-19.05349984999998],[34.007063334000065,-18.93822716699998],[34.08213789600018,-18.76913714199992],[34.20196259800014,-18.56309967499982],[34.172119958999986,-18.429343348999907],[34.180069311000125,-18.3156744879999],[34.22382035400017,-18.199599893999903],[34.163151771000116,-18.124482298999965],[33.95131917500015,-18.036895393999885],[33.958767004000094,-17.84972268199988],[34.04776576100011,-17.702323944999875],[34.02289492200009,-17.55692006399994],[33.89559475500005,-17.474966380999945],[33.71857265,-17.44160769499996],[33.64149594500003,-17.384562865999897],[33.65342194600015,-17.247999850999975],[33.58430248900004,-17.213047263999954],[33.40032223300011,-17.23672348699995],[33.32921247700011,-17.17927770199998],[33.328213380000136,-17.10015054999991],[33.250141526,-17.031859120999968],[33.104446887000165,-17.01336555699993],[33.04428377500011,-17.079632364999952],[32.99307700700007,-17.247118566999973],[32.86926775900008,-17.34028908499988],[32.786733525000045,-17.492910166999934],[32.67734604800006,-17.613395271999934],[32.53214503500004,-17.5326444559999],[32.350656601000026,-17.652317727999957],[32.26910567200008,-17.612543752999898],[32.31534458800019,-17.524585657999978],[32.50527994900017,-17.29686682399995],[32.521684123000114,-17.210913505999883],[32.60024565600003,-17.149067130999924],[32.63703460000016,-17.02214689399989],[32.508739284000114,-16.9289466109999],[32.370002796000165,-16.853418137999938],[32.28099614200016,-16.86505577199989],[32.19597403400013,-16.989560353999934],[32.04780336500005,-17.146591946999933],[31.968744258000186,-17.20281502299997],[31.896145725,-17.196379889999946],[31.93790252200006,-16.989931544999877],[31.823539296999968,-17.054183653999928],[31.709677596,-17.19193961399992],[31.619182166000087,-17.254587899999876],[31.559508732999973,-17.19071690399994],[31.776790963000053,-16.932876793999924],[31.79568301000006,-16.87503997499988],[31.781249395000145,-16.6440837319999],[31.807103540000185,-16.59709255699994],[31.772285155000077,-16.40710323399992],[31.81802649600013,-16.313521838999918],[31.791169305999972,-16.21350531099995],[31.74044826900007,-16.18297315799998]],[[28.54867179200005,-17.149793764999913],[28.710273029000064,-17.076710711999908],[28.837573196000108,-17.158664394999903],[28.93453709700009,-17.169119004999914],[29.02006862400009,-17.253879376999976],[29.149852716000055,-17.29606900699997],[29.20455829800011,-17.43946810999995],[29.15981210600006,-17.544296104999944],[29.069818199000167,-17.68044824299983],[28.955956497000102,-17.81820420299988],[28.79485678200018,-17.96479110699994],[28.6526491140001,-18.053541192999944],[28.595961129000045,-18.023409994999952],[28.532303149000086,-17.846672048999892],[28.48206784400014,-17.618121539999834],[28.359241901000132,-17.518897001999903],[28.312501462,-17.53335124599994],[28.261788322000086,-17.638580195999964],[28.20660490400013,-17.828960552999945],[28.195674052000072,-17.97677016699987],[28.134519738999984,-18.099670927999966],[28.076342977000024,-18.120550382999966],[27.894846647000065,-18.104462551999973],[27.805338470000038,-18.04259633399988],[27.800358775000063,-17.91848278499998],[27.97985296300004,-17.708435760999976],[28.08376711800014,-17.5260943589999],[28.148905978000073,-17.51606054799987],[28.350779183000157,-17.35542035499998],[28.29408725000019,-17.257408604999966],[28.330880143,-17.19836891899996],[28.45320061500007,-17.156209053999874],[28.54867179200005,-17.149793764999913]],[[32.65000707400003,-17.779277651999905],[32.72608862900012,-17.825075882999954],[32.751464940000176,-18.111864166999965],[32.75346313400013,-18.270118468999954],[32.70523786700011,-18.403463917999943],[32.75248377700018,-18.530394076999926],[32.75348682200013,-18.677401780999958],[32.636647568000114,-18.917179045999887],[32.54317063800005,-19.01396808599992],[32.468084232000024,-18.979416454999978],[32.44569337000013,-18.726367968999966],[32.46259511900013,-18.646037950999983],[32.4536348260001,-18.47693800499991],[32.48793589700006,-18.321901268999966],[32.50135067500008,-18.13432760099994],[32.59432213399998,-17.896154157999888],[32.58934638700015,-17.839921160999893],[32.65000707400003,-17.779277651999905]],[[32.87277447000008,-17.786935494999966],[32.927472156000135,-17.794573493999906],[32.99460526300004,-17.87491343299996],[33.01699217600003,-18.060081366999952],[32.98318868000018,-18.220741402999977],[32.9115852970001,-18.225552869999945],[32.872296635000055,-18.120714953999823],[32.81062105900014,-17.830709103999936],[32.87277447000008,-17.786935494999966]],[[34.00106085400006,-18.32770315599987],[33.99012605400003,-18.407632217999947],[33.89067822700002,-18.436941661999867],[33.84840806500006,-18.36624449999988],[34.00106085400006,-18.32770315599987]]],[[[30.17,-15.454166666999981],[30.165000000000134,-15.531666666999968],[30.01083333300005,-15.54833333299996],[29.956666666000103,-15.6175],[30.25833333300011,-15.6275],[30.17,-15.454166666999981]]],[[[28.095833333000087,-15.334166666999977],[28.212500000000148,-15.34166666699997],[28.192500000000166,-15.256666666999877],[27.97083333300003,-15.265833332999932],[28.095833333000087,-15.334166666999977]]],[[[25.682500000000175,-15.770833333999974],[25.35583333400018,-15.541666665999912],[25.214166666000096,-15.389166666999927],[25.253333333000057,-15.3525],[25.185833334,-15.2525],[25.106666667000127,-15.241666666999834],[24.935833333000176,-15.235833332999903],[24.94583333300011,-15.145],[24.76250000000016,-15.004166665999946],[24.84583333300003,-14.974166666999906],[24.868333333000066,-15.076666666999927],[25.08,-15.2075],[25.2125,-14.970833332999973],[25.201666666,-14.887499999999875],[25.04583333400018,-14.651666666999972],[24.875833333000116,-14.590833332999978],[24.8225,-14.581666665999933],[24.69166666700005,-14.656666665999865],[24.612500000000182,-14.5725],[24.445000000000107,-14.645833332999928],[24.285833333000085,-14.5875],[24.110833334000063,-14.58416666699992],[24.040833334000183,-14.6575],[23.980833333000078,-14.635],[24.020833333000155,-14.535833332999914],[23.978333332999966,-14.484166666999897],[24.009166667000102,-14.385833333999926],[23.898333334000085,-14.321666666999931],[23.77833333300009,-14.312499999999886],[23.728333333000023,-14.4025],[23.787389785000187,-14.440833333999876],[23.749166667,-14.514166666999927],[23.8125,-14.5875],[23.741666667000118,-14.695833332999939],[23.840384723000057,-14.809999999999889],[23.862500000000125,-14.895],[23.86638888900012,-14.905],[24.02333333300004,-14.98166666599991],[23.925833333000185,-15.021666666999977],[23.88916666700004,-15.083333332999928],[23.797500000000127,-15.140833332999932],[23.79666666700018,-15.221666666999965],[23.709166666000044,-15.44],[23.641666666000106,-15.525],[23.605000000000132,-15.665],[23.484166667000125,-15.884999999999877],[23.51208344900016,-16.048291192999955],[23.4725,-16.149166666999918],[23.37833333300017,-16.19583333399987],[23.473333333000085,-16.26333333399998],[23.494000096000093,-16.334166666999863],[23.405833332999975,-16.351666666999904],[23.46,-16.48916666599996],[23.534166666999965,-16.59083333299992],[23.811666666000065,-16.788333332999912],[24.0425,-17.01833333299993],[24.09833333400013,-17.1166666659999],[24.210833333000096,-17.165],[24.414166666000142,-17.15416666599998],[24.4583333330001,-17.075833332999878],[24.661666667000134,-17.12249999999983],[24.7650000000001,-17.088333333999856],[24.763333333000105,-17.035],[24.890000000000157,-17.046666666999954],[24.96583333300009,-16.986666665999962],[25.01666666699998,-16.89333333299993],[25.22916666700013,-16.7925],[25.280000000000143,-16.921666666999897],[25.378333333000114,-16.89166666699998],[25.431666667000115,-16.811666666999884],[25.573333334000097,-16.7925],[25.628333333000057,-16.71],[25.86166666700018,-16.6725],[25.873333333000176,-16.728333332999966],[25.983333333000132,-16.67666666699995],[25.988333333000128,-16.552499999999895],[25.84333333300009,-16.43749999999983],[25.950833333000105,-16.293333332999907],[25.944166667000047,-16.17666666599996],[26.1400000000001,-16.04833333299996],[26.15750000000014,-15.992696758999898],[26.13416666700016,-15.916666666999959],[26.0316771090001,-15.878333333999933],[25.92083333300019,-15.874999999999886],[25.80500000000012,-15.859166666999897],[25.682500000000175,-15.770833333999974]],[[25.38666666600011,-15.778333332999978],[25.32166666700016,-15.99833333399988],[25.320833333000166,-16.13333333299994],[25.245,-16.11916666699983],[25.1425,-16.040833332999966],[25.239166666000187,-15.835833332999925],[25.38666666600011,-15.778333332999978]],[[25.04166666700013,-16.13916666699987],[24.955833334000033,-16.08416666599993],[24.965833334000024,-16.005],[25.11500000000018,-16.0416666669999],[25.04166666700013,-16.13916666699987]],[[24.993333334,-15.951666665999937],[24.987500000000182,-15.874999999999886],[24.898333333000153,-15.835833333999915],[24.89166666600005,-15.779166666999913],[24.9625,-15.74583333299995],[25.050833334000174,-15.803333332999898],[24.993333334,-15.951666665999937]],[[24.435833333000062,-15.52833333399991],[24.37000000000012,-15.485],[24.44416666700016,-15.419166665999967],[24.42916666600013,-15.335833333999915],[24.445833334000156,-15.18333333299995],[24.479166666000026,-15.144166666999979],[24.5825,-15.241666666999834],[24.596666665999976,-15.303333332999841],[24.680833334000113,-15.351666665999915],[24.659166667000022,-15.429166666999947],[24.58583333399997,-15.524166665999871],[24.509166667000045,-15.501666666999938],[24.435833333000062,-15.52833333399991]],[[24.35,-15.092499999999859],[24.25,-15.089999999999861],[24.160833333000028,-14.980833333999954],[24.206666667000093,-14.921666665999965],[24.311666667000054,-15.004999999999882],[24.35,-15.092499999999859]],[[24.428333333000182,-14.884166665999942],[24.413333333000026,-14.741666665999844],[24.477500000000134,-14.773333332999982],[24.428333333000182,-14.884166665999942]]],[[[23.6625,-14.297499999999843],[23.590833334000024,-14.289166665999915],[23.569166667000104,-14.3675],[23.5925,-14.406666665999978],[23.600833333000082,-14.450833332999935],[23.612500000000182,-14.455],[23.607500000000186,-14.355],[23.6625,-14.297499999999843]]],[[[34.99916666700011,-14.165],[34.97,-14.166666666999959],[34.93166666700017,-14.275833332999923],[34.84166666700003,-14.233333333999951],[34.82333333300011,-14.361666665999905],[34.92083333300013,-14.4675],[34.906666667000025,-14.5425],[34.76250000000016,-14.564166666999881],[34.91,-14.813333332999889],[35.00250000000011,-14.889999999999873],[35.03083333300009,-14.9725],[35.02833333400008,-15.109166666999954],[35.155,-15.025],[35.19416666700016,-14.945],[35.16500000000019,-14.79833333299996],[35.19000000000011,-14.6775],[35.181666667000115,-14.59833333399996],[35.183333334000054,-14.589166666999915],[35.181666667000115,-14.45],[35.1125,-14.390833332999932],[35.069166666,-14.2575],[34.97416666600009,-14.215833333999967],[34.99916666700011,-14.165]]],[[[31.951666666000108,-14.002499999999884],[31.896666667000147,-13.988333333999947],[31.86,-14.084166666999977],[31.951666666000108,-14.002499999999884]]],[[[31.533333333000144,-13.894166666999865],[31.56416666700011,-13.846666666999965],[31.519166667000036,-13.725833333999958],[31.465833334000138,-13.715],[31.316666666000174,-13.85],[31.25,-13.783333332999916],[31.159166667000136,-13.8875],[31.06416666600012,-13.894166666999865],[30.875833333000173,-13.97],[30.75000000000017,-14.155833333999851],[30.709166667000147,-14.2625],[30.635434310000107,-14.3425],[30.635833333,-14.34193820299987],[30.636038136000025,-14.34166666699997],[30.735000000000184,-14.2725],[30.780833333000032,-14.201666666999927],[30.863333333000128,-14.184166665999896],[31.033333333000087,-14.043333332999907],[31.2875,-13.923333333999949],[31.476666666000142,-13.923333333999949],[31.533333333000144,-13.894166666999865]]],[[[31.86750000000012,-13.623333332999948],[31.829166667000038,-13.655833332999862],[31.7650000000001,-13.83416666699992],[31.81083333300012,-13.849166666999963],[31.87166666700017,-13.7575],[31.86750000000012,-13.623333332999948]]],[[[21.975566711000113,-13.983513176999963],[21.918849861000126,-13.913083293999875],[21.750703985000087,-13.803546124999968],[21.63009396800004,-13.704347740999935],[21.59048174100019,-13.573427],[21.68699885200016,-13.467760591999877],[21.57024614200003,-13.380054270999892],[21.426394508000158,-13.37076916299992],[21.42464807100015,-13.229293649999931],[21.32562342199998,-13.137089573999958],[21.24273657200007,-12.928032453999947],[20.992062675000057,-12.762135452999814],[20.941687641000044,-12.694340195999871],[20.83958362700008,-12.718171390999942],[20.662071842000046,-12.814950508999914],[20.525835071000074,-12.971180190999974],[20.596952723000015,-13.164387079999926],[20.596960619000185,-13.300148182999862],[20.51044578600016,-13.407782866999923],[20.422931857000094,-13.436290399999905],[20.33840337500004,-13.498537729999896],[20.30907015500003,-13.574046359999898],[20.34487974300015,-13.707401729999901],[20.326986793000117,-13.844365700999845],[20.166372808000062,-13.792934248999927],[20.06145955599999,-13.896148499999981],[19.934653016000027,-13.751937563999945],[19.869016582000086,-13.756348075999938],[19.746202484000094,-13.860765192999963],[19.608457196000074,-13.728602767999973],[19.53138838700005,-13.80731904199996],[19.450832607999985,-13.778791666999837],[19.425961768000093,-13.633387785999957],[19.311590648000163,-13.56187879099997],[19.2489396630001,-13.600029099999972],[19.255905708000114,-13.678755295999906],[19.363322626000183,-13.875179750999962],[19.307637686000135,-13.992056256999888],[19.16692274200011,-14.097676240999874],[19.01178602800013,-14.175981637999882],[18.95161896700006,-14.174367893999943],[18.76911169600004,-13.875511255999982],[18.67413414600003,-13.819669292999947],[18.593582314000173,-13.8590224699999],[18.594581412000082,-13.93814962099998],[18.75271936600018,-14.165106228999946],[18.771125682000047,-14.305287765999935],[18.721407690999968,-14.421763315999954],[18.65626488400011,-14.363916574999905],[18.6224455950001,-14.253054403999897],[18.565263983000023,-14.285180457999957],[18.523503239000092,-14.423748250999893],[18.39571339400004,-14.47193237099998],[18.293773746,-14.405244764999964],[18.209241316000032,-14.399611542999878],[18.20676133900008,-14.507256148999943],[18.1605224220001,-14.595214243999976],[18.070524567,-14.6634858299999],[17.917374203000122,-14.696403873999941],[17.76471351800012,-14.599184113999911],[17.62746580600009,-14.472644988999889],[17.51459135800002,-14.485886443999902],[17.44797161800011,-14.682692011999904],[17.410183576000065,-14.730485098999964],[17.32664629600015,-14.736098476999928],[17.286374328000136,-14.823655616999929],[17.328158760000065,-15.09237113499995],[17.404248211000038,-15.273930468999936],[17.40074675799997,-15.364186116999917],[17.492272259000117,-15.387826607999898],[17.638767661000088,-15.47120945599994],[17.844150547000027,-15.613849064999954],[17.956481992000022,-15.74992129899988],[18.06006055600011,-15.83009803099992],[18.138629512000023,-15.934348607999937],[18.28013045500012,-16.07345953499987],[18.491329437000104,-16.314693557999874],[18.7331195160001,-16.532029601999966],[18.877630567000097,-16.63751518299989],[19.022989532000054,-16.76589626799995],[19.25823954800012,-16.937905326999953],[19.378530587000057,-16.96256404799982],[19.57184057600017,-16.937735509999925],[19.7485505410001,-16.885057762999907],[20.22957958300009,-16.861080322999953],[20.454870556000117,-16.861229352999942],[20.88783055700003,-16.835601851999854],[21.139350516000093,-16.773545760999866],[21.345230510000135,-16.70065924499994],[21.504089536000038,-16.628483849999952],[21.789640526000028,-16.54913974899989],[21.850509572000192,-16.500241904999882],[21.618070511999974,-16.375779694999892],[21.483329574000095,-16.25413732499993],[21.41122056400019,-16.13862564699997],[21.205999555000062,-15.690003892999925],[21.119680537000022,-15.471046955999896],[21.19116056900009,-15.439439972999935],[21.30835952400014,-15.598729995999975],[21.39328044100006,-15.741340702999935],[21.51849953700014,-15.846144164999941],[21.626140440000142,-15.814835911999978],[21.578286501000093,-15.684223843999973],[21.482011844000112,-15.516232531999947],[21.331809574999966,-15.273389608999935],[21.135509593000165,-15.001868248999926],[21.07298059500016,-14.815909188999967],[21.015459450000094,-14.34328032299993],[21.161619557000108,-14.391438044999973],[21.261020547000044,-14.336891803999947],[21.07512049500008,-14.203489288999947],[21.049940588000084,-14.11022670199992],[21.114910563000024,-14.107516832999977],[21.251180528000077,-14.173041354999896],[21.329610499000125,-14.156532358999868],[21.35445948900019,-14.097567345999948],[21.12207055200014,-13.856443292999927],[21.163099466000062,-13.763858466999977],[21.404319575000045,-13.794656428999929],[21.572509503000163,-13.898970554999948],[21.794990527000095,-14.006142407999903],[21.97281059200003,-14.036001428999896],[21.975566711000113,-13.983513176999963]]],[[[32.90416666700003,-10.748333332999948],[32.900833333000094,-10.901666665999926],[32.98583333400012,-10.9325],[33.110000000000184,-10.887499999999875],[32.98750000000018,-10.75416666599989],[32.90416666700003,-10.748333332999948]]],[[[32.799166667000065,-13.386666666999872],[32.8025,-13.181666665999842],[32.650833333000094,-12.95916666599993],[32.646666666000044,-12.915],[32.720833333000144,-12.739999999999895],[32.8375,-12.552499999999895],[32.95916666600016,-12.39],[32.9775,-12.305833332999896],[32.95833333300004,-12.157499999999857],[32.96666666700014,-11.952499999999873],[33.075833333,-11.640833332999932],[33.1075,-11.501666666999938],[33.23916666700012,-11.31],[33.285833333000085,-11.181666666999945],[33.294166667000184,-11.0375],[33.2583333340001,-10.90083333299998],[33.25083333300012,-10.7525],[33.215833333000035,-10.682499999999834],[33.15,-10.694166665999944],[33.13416666600011,-10.608333332999962],[33.18083333300012,-10.449166666999815],[33.130833333000055,-10.36333333399989],[32.9625,-10.675833332999957],[33.04500000000013,-10.798333333999949],[33.165833332999966,-10.889166666999927],[33.1400000000001,-10.944166666999877],[33.188333334000106,-11.1175],[33.135000000000105,-11.372499999999889],[32.961666667000145,-11.61],[32.87750000000011,-11.774999999999864],[32.67000000000013,-12.110833332999903],[32.593333333000146,-12.169166666999956],[32.61,-12.25583333399993],[32.544166666000024,-12.491666665999958],[32.50583333399999,-12.549166666999895],[32.297500000000184,-12.709166666999977],[32.2625000000001,-12.80833333299995],[32.265,-12.958333332999871],[32.32250000000016,-12.948333332999823],[32.310833333,-13.100833332999912],[32.256666666000115,-13.059999999999889],[32.18916666700005,-13.131666666999934],[32.2625000000001,-13.170833332999905],[32.291666666000026,-13.28],[32.170833334000065,-13.358333332999905],[31.939166666,-13.61416666599996],[31.997500000000173,-13.805833332999953],[31.98833333400006,-13.964166666999972],[32.15583333300003,-13.788333332999969],[32.269166667000036,-13.622499999999889],[32.26,-13.47],[32.31583333300017,-13.45083333399998],[32.2925,-13.345833332999973],[32.339166667000086,-13.305833332999953],[32.52833333300015,-13.43666666699994],[32.679166667000175,-13.413333332999969],[32.7325,-13.49166666699989],[32.787500000000136,-13.405833332999975],[32.799166667000065,-13.386666666999872]]],[[[33.018333333000044,-10.311666665999951],[32.948333334000154,-10.405833332999975],[33.01916666700009,-10.455],[33.0425,-10.338333332999866],[33.018333333000044,-10.311666665999951]]],[[[36.5216666660001,-7.0875],[36.46666666700014,-6.989999999999895],[36.44833333300005,-7.121666666999943],[36.41250000000019,-7.248333333999938],[36.351666667000075,-7.125833332999889],[36.29083333300014,-7.14],[36.29333333400018,-7.23],[36.362500000000125,-7.33083333299993],[36.458333334000145,-7.338333333999913],[36.47083333300009,-7.211666665999871],[36.5216666660001,-7.0875]]],[[[36.295833334000065,-6.5325],[36.20166666700004,-6.54083333299991],[36.2375,-6.746666666999886],[36.22833333300002,-6.840833332999921],[36.323333333000164,-6.849166666999963],[36.34583333300003,-6.644166666999979],[36.295833334000065,-6.5325]]],[[[36.165000000000134,-6.045833332999905],[36.2083333330001,-5.990833332999955],[36.170833333000076,-5.878333332999944],[36.05583333300018,-5.815833333999933],[36.016666667000095,-5.724166666999963],[35.91666666600008,-5.70583333299993],[35.83083333400009,-5.603333332999966],[35.71333333299998,-5.5825],[35.7725,-5.686666665999894],[35.94333333300017,-5.793333332999964],[35.949166666999986,-5.924166665999962],[36.025833333000094,-5.955],[36.165000000000134,-6.045833332999905]]],[[[35.61166666700018,-5.445833332999882],[35.57000000000011,-5.520833332999871],[35.59166666600015,-5.595],[35.65,-5.583333333999917],[35.681666666000126,-5.484166665999908],[35.61166666700018,-5.445833332999882]]],[[[28.74916666700011,-15.6],[28.688333333,-15.569166665999944],[28.638333333000162,-15.453333332999932],[28.56166666600018,-15.48583333299996],[28.38916666700004,-15.4816666669999],[28.3225,-15.409166666999965],[28.27083333300004,-15.468333332999975],[28.365833333000182,-15.56249999999983],[28.505,-15.66],[28.5,-15.76749999999987],[28.38916666700004,-15.57999999999987],[28.231666667000127,-15.736666665999905],[28.190833334000104,-15.752499999999827],[28.194166666000058,-15.795],[28.19750000000016,-15.800833333999833],[28.2575,-15.8225],[28.284166667000136,-15.834166666999977],[28.293333333000078,-15.87833333299983],[28.2683333330001,-15.872499999999889],[28.16583333300008,-15.934166666999886],[28.184166666000067,-16.06749999999988],[28.24000000000018,-16.234166666999897],[28.118333333000123,-16.26749999999987],[27.940833333000057,-16.165],[27.8675,-16.140833332999932],[27.811666667000054,-16.18666666699994],[27.73166666700007,-16.17333333399995],[27.586666666000156,-16.025],[27.4925,-16.025833333999913],[27.53583333300014,-16.13333333299994],[27.60333333300008,-16.13],[27.742500000000177,-16.2175],[27.61833333300001,-16.3575],[27.478333333000023,-16.364999999999895],[27.455833334000033,-16.48916666599996],[27.555833333000066,-16.58583333399997],[27.465833334000024,-16.651666666999915],[27.341666667000084,-16.549166666999895],[27.068333333000055,-16.6075],[27.04166666599997,-16.469166666999968],[26.95000000000016,-16.430833333999942],[26.90416666700014,-16.33833333299998],[26.810000000000116,-16.43333333399994],[26.695833334000042,-16.484166666999954],[26.75250000000017,-16.362499999999898],[26.7025000000001,-16.3175],[26.460833334000085,-16.26749999999987],[26.46583333300015,-16.139999999999816],[26.276666667000086,-16.1325],[26.329166667000038,-16.2075],[26.341666666000037,-16.3425],[26.481666666000024,-16.3175],[26.589166667000143,-16.378333332999887],[26.50916666700016,-16.493333332999896],[26.374166666,-16.524166666999974],[26.344166667000025,-16.505],[26.194166666000115,-16.540833332999966],[26.184166667000056,-16.64916666599993],[26.03500000000014,-16.711666666999974],[26.000833333000173,-16.689166666999938],[25.958333333000155,-16.755833332999828],[25.858333333000076,-16.796666666999954],[25.778333333000035,-16.905],[25.744166667000172,-16.819166666999877],[25.661666667000077,-16.9133333339999],[25.6458333330001,-16.97],[25.54916666600019,-16.97916666699996],[25.581666666,-17.0725],[25.474166667000077,-17.16666666699996],[25.4,-17.29166666699996],[25.425000000000125,-17.33416666699992],[25.42583333300007,-17.335],[25.47583333400007,-17.33833333299998],[25.47666666700019,-17.337499999999864],[25.52916666700014,-17.415],[25.5150000000001,-17.48],[25.541666667000186,-17.44666666699993],[25.915833333000023,-17.44083333299983],[26.025000000000148,-17.491666666999834],[26.000833333000173,-17.595833333999906],[25.87500000000017,-17.733333332999962],[25.90666666700008,-17.823333333999926],[26.026666667000143,-17.868333332999896],[26.099166667000077,-17.931666666999945],[26.159807494000063,-17.914166666999904],[26.206666667000093,-17.89416666699998],[26.30583333300018,-17.937499999999886],[26.406666667000138,-17.939999999999884],[26.49083333300007,-17.9783333339999],[26.616666667000175,-17.885833332999937],[26.846666667000193,-17.814999999999884],[26.94583333300011,-17.6475],[27.126666667000052,-17.40333333299992],[27.217500000000143,-17.29833333299996],[27.30083333400006,-17.285],[27.366666667,-17.2291666669999],[27.333333333000155,-17.1825],[27.362500000000182,-17.11],[27.444166667000104,-17.0425],[27.614166666000187,-16.994166666999945],[27.556666667000115,-16.947499999999877],[27.56500000000011,-16.876666666999938],[27.65333333300015,-16.83083333399992],[27.775,-16.67833333399983],[27.74,-16.61333333399989],[27.875833334000163,-16.5375],[27.90750000000014,-16.494166666999945],[28.03416666600009,-16.441666665999946],[28.19750000000016,-16.43333333399994],[28.331666667000093,-16.3225],[28.35333333300008,-16.2775],[28.46,-16.238333332999957],[28.64416666700015,-16.115833333999888],[28.608333334000122,-16.060833332999948],[28.6275,-15.93],[28.8,-15.800833333999833],[29.15916666600009,-15.759166666999874],[29.263333333000105,-15.692499999999882],[29.372500000000116,-15.665833332999966],[29.497500000000173,-15.605833332999907],[29.653333334000024,-15.59],[29.795,-15.4125],[29.92416666700018,-15.276666665999926],[30.119166667000115,-15.18333333299995],[30.111666666000133,-15.11583333399983],[30.223333333000028,-15.02916666599998],[30.410754671000063,-15.265424573999951],[30.54700723400009,-15.38071709999997],[30.673312251000027,-15.451424183999961],[30.797129395000127,-15.494014768999932],[30.97613785100009,-15.48198610199995],[31.09348652400007,-15.451473790999898],[31.266528032000167,-15.439846078999892],[31.33564354100008,-15.406918113999893],[31.472883358000104,-15.397696135999922],[31.660342689,-15.345502458999874],[31.97460066400015,-15.301758613999937],[32.11780742900004,-15.292135679999888],[32.21576648000013,-15.313836889999891],[32.460908945000085,-15.303021009999952],[32.54394470300008,-15.223903780999876],[32.380341322000106,-15.070851978999883],[32.431058411000095,-15.033503580999877],[32.528022312000076,-15.043958190999831],[32.54392891100002,-14.952381572999968],[32.659788806999984,-14.972879915999954],[32.67916658500019,-14.717024739999943],[32.762703865000105,-14.711411361999922],[32.83730059200019,-14.876100796999935],[32.99642185200014,-14.91066234899995],[32.98548705200011,-14.990591411999901],[32.93427633700014,-15.090197061999902],[33.06604678000019,-15.08699933899993],[33.08992247000003,-15.221156620999977],[33.163022525000144,-15.301095604999944],[33.22468230900017,-15.319579247999968],[33.315189583000176,-15.460572616999912],[33.27393430899997,-15.740524812999922],[33.34305376600008,-15.775477399999943],[33.477805709999984,-15.738138922999951],[33.6279627290001,-15.535719976999928],[33.71348636000016,-15.48471924599994],[34.0013926150001,-15.482343276999927],[34.126197012000034,-15.400419357999908],[34.159514778000016,-15.437777677999975],[34.12471613200006,-15.587191114999882],[34.15107969600007,-15.74946489399997],[34.25881355200005,-15.820833333999872],[34.33666666600004,-15.829166665999878],[34.52250000000015,-16.0025],[34.610215808000135,-16.05416666699989],[34.53083333400008,-15.988333333999947],[34.591666667000084,-15.94916666599994],[34.62166666600007,-15.777499999999861],[34.67083333300019,-15.684999999999889],[34.779166667000084,-15.761666666999929],[34.74250000000018,-15.825],[34.788333333000026,-15.956666665999933],[35.0816666660001,-16.268333333999976],[35.09583333300009,-16.32666666699987],[35.21083333300004,-16.4825],[35.1769485960001,-16.557324408999932],[35.30375513600006,-16.701535343999865],[35.34403894800016,-16.81761985999998],[35.35349286700017,-16.924462553999945],[35.3206924160001,-17.232130292999898],[35.32437148100013,-17.409380661999876],[35.39601849700017,-17.442154251999966],[35.377918615000056,-17.592845112999953],[35.29763058600008,-17.57844223799998],[35.284420785,-17.704076589999943],[35.33067154600013,-17.819760149999922],[35.39680950300004,-17.888853489999974],[35.44305236700012,-17.868775946999904],[35.51409151700011,-17.933026329999905],[35.87471049700008,-17.934214213999894],[35.97060047400004,-17.920925208999904],[36.06365954900008,-17.87430791399987],[36.20096954000019,-17.72605685699989],[36.28683057100011,-17.671729382999956],[36.57606859200007,-17.53444654999987],[36.76623955800005,-17.423835434999944],[37.018001588000175,-17.314131074999977],[37.18632847600003,-17.26317631099994],[37.46495048200012,-17.214028183999858],[37.610710605000065,-17.158892695999953],[38.116939503000026,-16.89313707899987],[38.61436053000017,-16.64368292299997],[39.00350161700004,-16.376620399999922],[39.16807156900012,-16.204100380999932],[39.19786856400003,-16.094671449999908],[39.33074553400013,-15.964000428999952],[39.48728545500006,-15.769095866999919],[39.70795447900019,-15.472198797999965],[39.87366856000017,-15.216997337999885],[39.96737656200003,-15.04043992399994],[40.08780255000016,-14.701444745999936],[40.15159252100017,-14.37822598699995],[40.142402602000175,-14.169158521999975],[40.09159854600017,-13.986331611999901],[40.03998161300018,-13.86710172099987],[39.98717160000007,-13.84386809199998],[39.73916650700005,-13.814959912999939],[39.45035948300011,-13.832254796999905],[39.311359533000086,-13.825155324999855],[39.27939648600017,-13.707307274999948],[39.32368461900006,-13.668187926999963],[39.751373576000105,-13.499722904999828],[39.88650159000008,-13.415761715999906],[39.94925354600008,-13.325740745999894],[40.01705559900006,-13.181286188999877],[40.03698759700006,-13.063153320999845],[40.02680962000005,-12.743967765999855],[39.96370646200012,-12.52396158299996],[39.9010654810001,-12.447682743999906],[39.66242247200006,-12.323931151999943],[39.620769610000025,-12.120393228999887],[39.58026154800018,-12.030119125999875],[39.498607562000075,-11.942454141999917],[39.301650607,-11.773752916999968],[39.13877145200013,-11.735175374999812],[39.046180591999985,-11.679300099999978],[38.89764052700008,-11.478003162999926],[38.70495247499997,-11.420129138999926],[38.626708582000106,-11.42534570099997],[38.52919050300005,-11.473322540999959],[38.381362564000085,-11.450735993999956],[38.27011459300019,-11.406676016999938],[38.213809493000156,-11.316506351999976],[38.26250000000016,-11.288333332999969],[38.378333334000104,-11.383333333999929],[38.486666667000065,-11.415],[38.652500000000146,-11.278333332999978],[38.745000000000175,-11.278333332999978],[38.885,-11.17499999999984],[38.91416666600014,-11.09833333399996],[38.93583333300006,-10.939166666999824],[39.010000000000105,-10.660833332999914],[39.074166666999986,-10.546666666999954],[39.20416666600016,-10.433333333999883],[39.069166666000115,-10.384999999999877],[39.118333333000066,-10.312499999999886],[39.205,-10.313333332999832],[39.27,-10.241666666999947],[39.42500000000018,-10.12833333399982],[39.41416666700013,-10.069166666999877],[39.2925,-10.020833332999871],[39.2825,-9.949166665999883],[39.197500000000105,-9.9075],[39.236666667000065,-9.79],[39.186666667,-9.735],[39.26916666700009,-9.578333332999932],[39.321666667000045,-9.568333332999941],[39.391666667000095,-9.655],[39.450833333000105,-9.57],[39.43166666700017,-9.4675],[39.34,-9.3375],[39.41166666600009,-9.312499999999886],[39.406666667000025,-9.226666666999904],[39.230833334000124,-9.12083333399994],[39.23583333400012,-8.941666666999936],[39.197500000000105,-8.8975],[39.13083333300011,-8.93249999999989],[39.07416666600011,-8.861666666999952],[38.916666666000026,-8.886666666999872],[38.8475,-8.93666666699994],[38.78666666700008,-8.875],[38.723333333000085,-8.752499999999884],[38.63333333400004,-8.850833333999958],[38.63000000000011,-8.92499999999984],[38.54500000000013,-8.96333333299998],[38.42250000000013,-8.88583333399987],[38.44166666700016,-8.736666665999962],[38.485,-8.6825],[38.3225,-8.569166666999934],[38.31083333300006,-8.485833332999903],[38.18833333300012,-8.519166666999979],[38.11,-8.589166666999972],[38.065833333000114,-8.734166666999897],[38.00666666600017,-8.720833332999973],[38.06916666700005,-8.595],[38.03833333300008,-8.515833332999932],[37.97583333300014,-8.474166666999963],[37.966666666000094,-8.3575],[37.92583333300007,-8.3025],[37.94416666700016,-8.238333333999947],[38.00833333400004,-8.194166666999934],[37.97166666600009,-8.105],[38.109166667000125,-8.01416666699987],[38.134166667000045,-7.900833333999969],[38.18,-7.845833333999963],[38.075833333000105,-7.66],[38.037500000000136,-7.530833332999919],[37.98833333400012,-7.530833332999919],[37.825,-7.45166666699987],[37.78500000000014,-7.406666665999978],[37.892500000000155,-7.049166666999895],[37.95416666700015,-6.997499999999889],[38.03,-7.036666666999963],[38.049166667000065,-7.1075],[38.18333333300012,-6.940833333999876],[38.13166666600006,-6.818333332999885],[38.185,-6.715],[38.2875,-6.658333333999906],[38.265,-6.61416666599996],[38.16000000000014,-6.606666666999956],[38.16000000000014,-6.539166665999971],[38.34250000000014,-6.5875],[38.399166667000145,-6.509166666999931],[38.358333333000076,-6.32333333299988],[38.42666666700018,-6.301666666999949],[38.5,-6.188333332999946],[38.545833333000076,-5.9575],[38.583333334000145,-5.90083333299998],[38.4575,-5.784166666999909],[38.34666666700019,-5.806666666999945],[38.34,-5.754166666999936],[38.11083333300019,-5.646666666999977],[38.16000000000014,-5.575833332999935],[38.07500000000016,-5.575833332999935],[37.9975,-5.608333332999962],[37.91333333400013,-5.584166665999931],[37.8525,-5.611666666999895],[37.71,-5.545],[37.68000000000018,-5.459166666999977],[37.6925,-5.381666666999877],[37.581666667000036,-5.32416666599994],[37.52083333400003,-5.345],[37.509166666,-5.41499999999985],[37.422500000000184,-5.503333332999944],[37.30500000000018,-5.455],[37.25083333300006,-5.3975],[37.200833334000095,-5.56166666699994],[37.15,-5.6325],[37.153333333000035,-5.8275],[37.05666666700017,-5.765],[37.016666667000095,-5.825833332999878],[36.9275,-5.7675],[36.8325,-5.743333332999896],[36.82833333400015,-5.593333332999975],[36.726666667000075,-5.61],[36.736666667000065,-5.759166665999885],[36.84916666700002,-5.848333332999914],[36.92500000000018,-5.800833332999957],[36.98416666700007,-5.8775],[36.88666666700004,-5.974166666999849],[36.79250000000019,-5.94833333299988],[36.64666666700009,-5.958333332999928],[36.66833333400018,-6.045],[36.5833333330001,-6.243333332999896],[36.41916666600008,-6.21666666699997],[36.359166667000125,-6.255],[36.351666667000075,-6.338333333999969],[36.6425,-6.41083333399996],[36.61916666700006,-6.486666666999895],[36.67166666700018,-6.536666666999963],[36.708333333000155,-6.65333333399991],[36.77833333299998,-6.689999999999884],[36.795833333000076,-6.756666666999877],[36.69666666700016,-6.76],[36.60083333400007,-6.820833332999882],[36.57666666700004,-6.76416666699987],[36.4825,-6.786666666999906],[36.42333333300013,-6.874166666999884],[36.44833333300005,-6.959166665999931],[36.49500000000012,-6.8525],[36.55916666700017,-6.838333333999913],[36.606666667000184,-6.9025],[36.715833333000035,-6.945833332999939],[36.688333334000106,-7.067499999999882],[36.72583333400013,-7.120833332999894],[36.72083333300003,-7.22],[36.67333333300007,-7.23583333299996],[36.69000000000017,-7.345],[36.602500000000134,-7.524166665999871],[36.63833333400004,-7.564166666999938],[36.48583333300007,-7.686666665999951],[36.303333334000115,-7.668333333999954],[36.1475,-7.715],[36.021666666000044,-7.599166666999963],[35.88666666600017,-7.679166665999958],[35.80833333300012,-7.695833332999882],[35.64000000000016,-7.635],[35.595,-7.651666666999915],[35.599166667000134,-7.795],[35.5750000000001,-7.859166666999897],[35.49833333400005,-7.868333333999942],[35.559166666000124,-7.674166665999962],[35.47500000000019,-7.688333332999889],[35.42583333300007,-7.651666666999915],[35.36750000000018,-7.73],[35.237500000000125,-7.679166666999947],[35.21833333300009,-7.74166666699989],[35.25833333300017,-7.808333332999894],[35.33500000000015,-7.861666666999952],[35.13750000000016,-7.884166666999931],[35.1725,-7.783333332999973],[35.01500000000016,-7.771666665999931],[34.97833333300014,-7.824166666999872],[35.08166666700015,-7.921666665999908],[34.995,-7.931666666999888],[34.93000000000018,-8.0441666669999],[34.97666666600014,-8.1675],[35.05583333300018,-8.2675],[35.138333333000105,-8.268333332999873],[35.235450038000124,-8.306417318999877],[35.18976438700008,-8.39017434699997],[35.07745382700011,-8.401595758999974],[35.033671745000106,-8.452992116999894],[35.08887524,-8.519617024999889],[34.96895040600015,-8.62621687799998],[34.944204011000124,-8.797538070999906],[34.99179323100003,-8.826091602999952],[35.11742877200015,-8.767080969999881],[35.2049929370001,-8.757563125999923],[35.32780069500018,-8.694166666999877],[35.25083333300012,-8.64249999999987],[35.12333333400005,-8.68583333399988],[35.098333334000074,-8.634999999999877],[35.174166667000065,-8.5825],[35.32500000000016,-8.575],[35.305833334000056,-8.44499999999988],[35.49500000000012,-8.341666665999924],[35.60416666700013,-8.35],[35.715000000000146,-8.295],[35.77916666600015,-8.21],[35.85166666700013,-8.180833333999828],[35.90166666700003,-8.085],[35.88333333300011,-7.996666665999953],[35.90916666700008,-7.905833332999919],[35.8875,-7.81],[35.9325,-7.759166666999931],[36.021666666000044,-7.818333332999941],[35.96166666700009,-7.905833332999919],[35.999166667000054,-7.941666666999879],[36.090000000000146,-7.854999999999848],[36.1825,-7.88],[36.2625,-7.775],[36.37416666600018,-7.770833333999974],[36.4525000000001,-7.725],[36.56500000000011,-7.73583333299996],[36.656666667000025,-7.82666666699987],[36.4491666670001,-7.80166666599996],[36.100000000000136,-8.0225],[36.01416666700004,-8.18],[35.977500000000134,-8.315],[35.90166666700003,-8.3775],[35.8625,-8.454166665999935],[35.87544519700009,-8.451231365999888],[35.95683098400008,-8.376975061999872],[36.064670528000136,-8.356755107999902],[36.08867540200015,-8.245807338999896],[36.16808292000013,-8.286236606999978],[36.2284233580001,-8.269842743999902],[36.30149176400016,-8.303301118999968],[36.34908349700004,-8.261668209999868],[36.519469628000024,-8.20956090899989],[36.64454479500017,-8.14016185099996],[36.736623383,-8.136533568999937],[36.88535810100012,-8.086946599999976],[36.9259845740001,-8.177522947999933],[36.829043103000174,-8.162933722999924],[36.594157575000054,-8.208686267999894],[36.49002962300017,-8.310522067999955],[36.39051714700008,-8.337725063999926],[36.31462449800017,-8.418065233999926],[36.31276160100015,-8.520484167999882],[36.24453145400008,-8.558271438999952],[36.07508085600011,-8.816874868999946],[36.01944468500011,-8.860906797999974],[36.02049353700005,-8.935433847999832],[35.90553630300013,-9.15981226799994],[35.66137355800004,-9.303649426999925],[35.632820026000104,-9.447606817999883],[35.579282154000055,-9.604651243999967],[35.503139401000055,-9.927068209999959],[35.51027778400015,-10.210224069999924],[35.45436045100013,-10.45411882299993],[35.43889395400004,-10.582609716999968],[35.363940932,-10.859816924999905],[35.109338605,-11.165577663999954],[34.8975,-11.368333332999953],[34.96511639900007,-11.582821972999966],[34.953231278000146,-11.78381970299995],[34.90152348300012,-11.904539281999973],[34.88813795900012,-12.032069435999972],[34.81408026100013,-12.073134015999926],[34.70185948200003,-12.184289568999873],[34.722974862000115,-12.249216908999927],[34.68875930400009,-12.440648303999978],[34.755493043000115,-12.546362835999957],[34.820895697000026,-12.69801699899989],[34.755560106000075,-12.911916012999939],[34.80262007700014,-13.055330337999976],[34.815172165000035,-13.236151168999868],[34.79440112900005,-13.338655813999935],[34.868640783000046,-13.399015849999898],[34.852500000000134,-13.7125],[35.05083333400012,-13.731666666999956],[35.11500000000012,-13.856666665999967],[35.152500000000146,-13.989166665999903],[35.205,-14.066666666999822],[35.22083333299997,-14.174166666999838],[35.298333334000176,-14.2325],[35.29750000000013,-14.451666666999813],[35.355833334000124,-14.53],[35.37583333300017,-14.666666665999912],[35.436666667000054,-14.773333332999982],[35.445,-14.855833332999907],[35.41666666700007,-14.992499999999893],[35.379166667000106,-15.056666666999888],[35.1925,-15.136666666999815],[35.125833334000106,-15.259166666999874],[35.14750000000015,-15.299166666999952],[35.11583333300007,-15.415],[35.11583333300007,-15.41583333299991],[35.021666666000044,-15.438333333999879],[34.91916666700013,-15.3175],[34.905,-15.176666666999893],[34.93583333400005,-15.114999999999895],[34.91833333300008,-15.020833333999974],[34.936666666000065,-14.89249999999987],[34.851666666000085,-14.829166666999981],[34.77416666700009,-14.6725],[34.66916666600008,-14.579166666999868],[34.576666666,-14.4325],[34.50666666600017,-14.26833333299993],[34.50833333400004,-14.153333332999921],[34.429166667000175,-14.058333333999883],[34.5125,-13.965833332999921],[34.50500000000011,-13.92],[34.385833333000164,-13.826666665999937],[34.3325,-13.728333332999966],[34.25583333300011,-13.513333332999935],[34.27666666599998,-13.459166665999817],[34.25166666600006,-13.33833333299998],[34.33500000000015,-13.285833333999904],[34.33500000000015,-13.02166666699992],[34.305833334000056,-12.88916666599988],[34.2575,-12.825833333999924],[34.27666666599998,-12.754166665999946],[34.1925,-12.6875],[34.16833333300002,-12.575833332999878],[34.198333333000164,-12.528333332999978],[34.16583333400007,-12.406666665999978],[34.033333334000076,-12.349166666999906],[34.005,-12.208333332999928],[33.91390033300013,-12.257616297999903],[33.89753494300015,-12.381720510999855],[33.82661825000008,-12.403541031999964],[33.73797238300011,-12.377629162999881],[33.70933294900016,-12.41990642299993],[33.70251403700013,-12.717211020999969],[33.759792904000165,-12.87131844999982],[33.878441987000144,-12.902685448999875],[33.82661825000008,-12.968147011999974],[33.83166666600016,-13.133333332999939],[33.765,-13.246666665999953],[33.750000000000114,-13.3525],[33.89583333300004,-13.34],[33.8975,-13.49],[33.83,-13.535],[33.81583333300006,-13.753333333999876],[33.77583333300015,-13.97],[33.901666667000086,-14.030833332999975],[34.02666666600004,-14.006666666999934],[34.135000000000105,-14.081666666999979],[34.13166666700005,-14.173333333999892],[34.09083333300015,-14.212499999999864],[34.08583333300015,-14.375833332999946],[34.123333333000176,-14.416666666999959],[34.075,-14.485],[33.91333333300008,-14.474166665999917],[33.814166667,-14.541666666999959],[33.77906752300004,-14.529981007999936],[33.66768974700017,-14.62797291499993],[33.52299420600002,-14.68860650199997],[33.38426166500017,-14.680958580999913],[33.233093704000055,-14.600608719999855],[33.115737136000064,-14.495359926999924],[33.11175259000004,-14.38249297699997],[32.959095853000065,-14.35315376899996],[32.94268378300012,-14.303345982999929],[33.03267769100012,-14.167193844999929],[32.99190025200011,-14.113366581999855],[32.87333333400011,-14.122499999999889],[32.9025,-13.98],[32.88500000000016,-13.826666666999927],[32.764166667000154,-13.67],[32.69416666600006,-13.685],[32.591666667000084,-13.776666666999972],[32.47083333300003,-13.98],[32.448333333000164,-14.1425],[32.454886726000154,-14.353094239999962],[32.38676636600002,-14.397268804999953],[32.184885264000116,-14.422147893999977],[31.97704116200009,-14.515308489999882],[31.871132760000137,-14.607276141999876],[31.882075456000166,-14.663108182999906],[31.9830199540001,-14.718549189999976],[31.98899085100004,-14.786028786999964],[31.915902640000184,-14.909731457999897],[32.025799536000136,-14.99851130799982],[31.92784443300019,-15.04469065099994],[31.787627064000162,-15.155933934999894],[31.730935131000024,-15.057922184999939],[31.725453913000024,-14.860304784999926],[31.54941906000016,-14.702431594999894],[31.2725,-14.6575],[31.474166667000134,-14.61999999999989],[31.645833333000155,-14.524166666999974],[31.611666667000065,-14.386666666999872],[31.63750000000016,-14.302499999999895],[31.766666666000162,-14.163333333999901],[31.783333333000087,-14.08083333399992],[31.68666666700011,-14.1066666669999],[31.68000000000012,-13.915833332999966],[31.553333334000172,-13.903333332999978],[31.534166667000193,-14.010833332999937],[31.337500000000148,-14.096666666999909],[31.295833333000076,-14.155833332999919],[31.311666667000054,-14.236666666999952],[31.418333334000124,-14.275833332999923],[31.44583333300011,-14.360833332999903],[31.308549515000095,-14.4775],[31.308333334000054,-14.47706629499993],[31.19083333300017,-14.485],[31.112500000000125,-14.431666665999956],[31.135833333999983,-14.365],[31.048333333000016,-14.3475],[31.017500000000155,-14.4],[31.030833333000146,-14.492499999999836],[30.863333333000128,-14.72666666699996],[30.911954662000028,-14.824460993999935],[30.854275475000122,-14.85096374799997],[30.831666666000046,-14.73916666699995],[30.756666667000104,-14.646666666999977],[30.553333333000126,-14.564166666999881],[30.565,-14.441666666999936],[30.483333333000132,-14.44416666599983],[30.4625,-14.512499999999875],[30.33333333400003,-14.55833333299995],[30.385000000000105,-14.418333332999964],[30.395833334000145,-14.295],[30.53666666600003,-14.143333333999976],[30.63166666600017,-14.0675],[30.641666666000106,-13.997499999999832],[30.740833333000126,-13.895833332999928],[30.808333334000167,-13.9025],[30.925000000000125,-13.805833332999953],[30.939166667000165,-13.735],[31.071666667000102,-13.569166665999887],[31.07583333300005,-13.431666665999956],[31.10416666700013,-13.336666666999918],[31.189166666000176,-13.185],[31.235000000000127,-13.059999999999889],[31.329166667000095,-12.9675],[31.3525,-12.899166666999974],[31.422500000000127,-12.8575],[31.477500000000134,-12.743333332999953],[31.473333334000188,-12.63249999999988],[31.547500000000184,-12.60666666599991],[31.55583333300018,-12.44499999999988],[31.66,-12.4],[31.55916666600001,-12.320833332999939],[31.5975,-12.253333332999944],[31.638333333000105,-12.080833333999976],[31.70166666700004,-11.9625],[31.75166666700011,-12.010833332999937],[31.890000000000157,-11.949999999999875],[31.954166667000095,-11.885],[31.99166666700006,-11.799166665999962],[32.18583333300012,-11.628333333999876],[32.27916666700003,-11.6575],[32.25250000000011,-11.5475],[32.295833333000076,-11.480833333999954],[32.37000000000012,-11.4625],[32.519166667000036,-11.505833332999885],[32.57333333300005,-11.389999999999873],[32.631666667,-11.430833332999896],[32.73166666700013,-11.428333333999888],[32.685000000000116,-11.258333332999939],[32.75166666700011,-11.208333332999871],[32.76166666600017,-11.089999999999861],[32.80666666600007,-11.053333332999955],[32.7475,-10.935],[32.74333333300018,-10.835833332999925],[32.78083333400008,-10.714166666999972],[32.829166666000106,-10.64333333299993],[32.78666666600009,-10.544166665999967],[32.82916666699998,-10.470833332999973],[32.91,-10.475833332999969],[32.92750000000018,-10.375],[33,-10.25],[33.11833333300018,-10.117499999999893],[33.04416666700001,-10.000833332999946],[32.955,-9.996666665999953],[32.8375,-10.078333332999932],[32.77666666700003,-10.176666666999893],[32.755833333000055,-10.359166666999954],[32.62,-10.30833333399994],[32.62333333300012,-10.184166665999896],[32.51833333300016,-10.215],[32.28416666700019,-10.5575],[32.23750000000018,-10.648333332999925],[32.245,-10.731666666999956],[32.4525,-10.72916666599997],[32.487500000000125,-10.760833332999937],[32.40916666700008,-10.89666666699992],[32.33583333400003,-10.893333333999976],[32.27416666700003,-10.9375],[32.28083333300009,-11.064166666999881],[32.17916666700012,-11.049166666999838],[32.0716666670001,-11.120833332999894],[32.155833334000135,-11.251666665999892],[32.140833333000046,-11.372499999999889],[32.00833333400004,-11.493333332999839],[31.669166667000013,-11.752499999999827],[31.535833333000028,-11.9175],[31.423333333000073,-12.134166666999874],[31.080833333000044,-12.9775],[30.905000000000143,-13.21166666699986],[30.712500000000148,-13.31999999999988],[30.355833333000135,-13.395],[30.265,-13.429999999999893],[30.15083333399997,-13.536666666999963],[30.006666667000104,-13.730833333999954],[29.66500000000019,-14.08],[29.5475,-14.224166665999974],[29.264166667000154,-14.463333332999923],[29.235000000000127,-14.54],[29.159166667000193,-14.6275],[28.829166667000095,-14.740833332999898],[28.694166667000047,-14.8325],[28.616666667000118,-14.82333333299988],[28.59083333300015,-14.725833332999855],[28.51250000000016,-14.724166665999974],[28.521666666999977,-14.585],[28.463333334000083,-14.534166666999965],[28.370833334000054,-14.5175],[28.41750000000019,-14.619166666999945],[28.25083333300006,-14.599166666999906],[28.118333333000123,-14.680833332999953],[28.084166667000034,-14.73],[28.121666666000124,-14.795],[28.07166666700016,-14.874166665999894],[28.15083333300015,-14.9675],[28.235000000000184,-14.969166665999921],[28.382500000000107,-14.9225],[28.46,-14.9425],[28.605833333000135,-14.9375],[28.526666666999972,-15.011666666999929],[28.599166667000077,-15.025833332999866],[28.591666667000027,-15.09416666699991],[28.595833333000144,-15.026666666999972],[28.526666666999972,-15.011666666999929],[28.058333334000167,-15.08833333299998],[28.054166666000185,-15.136666666999815],[28.165000000000134,-15.19499999999988],[28.285833334000074,-15.17],[28.38500000000016,-15.27166666599993],[28.499166666000065,-15.2725],[28.57583333300005,-15.243333333999885],[28.669166667000127,-15.300833332999844],[28.74333333400017,-15.2875],[28.70333333300016,-15.187499999999886],[28.860000000000127,-15.17],[28.865833334000172,-15.24583333299995],[28.780833334000192,-15.354166665999912],[28.839166667000086,-15.4425],[28.9175,-15.294166666999956],[29.072500000000105,-15.39249999999987],[28.86166666600019,-15.594166665999978],[28.74916666700011,-15.6]],[[29.079166667000038,-15.051666665999903],[29.079166667000038,-14.9575],[28.9525,-14.992499999999893],[28.796666667000068,-15.001666666999938],[28.839166667000086,-14.9025],[28.7775,-14.858333332999962],[28.90166666700003,-14.78583333399996],[28.95166666700004,-14.783333333999963],[29.03,-14.701666666999927],[29.31500000000011,-14.648333332999925],[29.429166667000118,-14.685833332999948],[29.610833333000073,-14.6075],[29.71333333300015,-14.604166666999902],[29.77416666700003,-14.564166665999892],[29.872500000000173,-14.5725],[29.92000000000013,-14.461666665999871],[30.038333334000185,-14.289166665999915],[30.112500000000125,-14.21666666599998],[30.11,-14.086666665999928],[30.20916666700009,-14.02583333299998],[30.3625,-13.8575],[30.529166666000094,-13.729166666999959],[30.50666666700016,-13.669166666999956],[30.610000000000127,-13.52583333399997],[30.774166666999974,-13.541666666999959],[30.68666666600018,-13.714166665999926],[30.5875,-13.69],[30.56250000000017,-13.78416666599992],[30.670000000000186,-13.7625],[30.695833334000156,-13.895],[30.55166666600013,-14.06166666699994],[30.43,-14.1525],[30.3333333330001,-14.2625],[30.304166667,-14.399166666999918],[30.128333333000057,-14.395],[30.05333333300007,-14.4675],[30.03666666700019,-14.597499999999854],[30.094166667000138,-14.715833333999967],[29.90083333300015,-14.73],[29.760833333000107,-14.809166666999943],[29.785,-14.914166665999971],[29.711666667000088,-14.94416666699982],[29.672500000000127,-14.85916666699984],[29.469166667000025,-14.965833332999978],[29.340833333000035,-14.976666666999904],[29.305000000000177,-15.0375],[29.185833333,-15.0975],[29.079166667000038,-15.051666665999903]],[[34.361666667000065,-14.38916666699987],[34.515833333000046,-14.56],[34.54416666700007,-14.643333333999976],[34.51583333400015,-14.685833332999948],[34.55031240300019,-14.766649843999971],[34.427991932000054,-14.80880970999982],[34.331509814000015,-14.532456191999927],[34.23404439000018,-14.448497730999975],[34.361666667000065,-14.38916666699987]],[[34.58,-15.199166666999929],[34.60333333300008,-15.26833333299993],[34.52250000000015,-15.351162409999972],[34.46282610900005,-15.27032123999993],[34.44142644900006,-14.960638801999892],[34.49015323900011,-14.9007972039999],[34.57617839200009,-14.923300324999957],[34.59416666700014,-15.044166666999956],[34.59,-15.0875],[34.5891666660001,-15.089999999999861],[34.58583333300004,-15.099166666999963],[34.576666666,-15.135],[34.5766666670001,-15.144166666999979],[34.5775,-15.151666666999972],[34.58,-15.199166666999929]],[[35.96253628799997,-15.463696794999976],[35.858618185000125,-15.57815764499992],[35.78916666700019,-15.525833332999923],[35.771666666000044,-15.628333333999876],[35.70083333400004,-15.714166666999972],[35.64583333300004,-15.6325],[35.60083333400007,-15.719166666999968],[35.52583333300015,-15.753333332999944],[35.42666666600019,-15.8475],[35.37416666700011,-15.740833333999888],[35.40583333300009,-15.661666666999906],[35.40500000000014,-15.533333332999916],[35.445,-15.503333332999887],[35.527500000000146,-15.564999999999884],[35.556666667000115,-15.645],[35.644166667000036,-15.595833332999973],[35.559166666000124,-15.5275],[35.5725,-15.43],[35.4566666660001,-15.313333332999889],[35.45916666600016,-15.190833333999933],[35.54833333300019,-15.11],[35.559166667000056,-15.015],[35.735833333000016,-14.96],[35.73750000000018,-14.91416666699996],[35.87000000000012,-14.749166665999894],[35.83916934400003,-14.612162886999897],[35.73225000100018,-14.421361730999877],[35.5875,-14.334923872999923],[35.484166666000135,-14.1675],[35.35250000000019,-14.019999999999868],[35.46867753100008,-13.884712762999868],[35.544755139000074,-13.862630440999908],[35.67951497800004,-13.961053067999899],[35.799849098000095,-13.96428055499996],[35.966418188000034,-13.811669395999843],[36.07232264200019,-13.651821191999886],[36.15535839900008,-13.572703962999924],[36.22099483300019,-13.568293450999874],[36.26127864500012,-13.684377966999875],[36.21802517600008,-13.806075860999954],[36.18721502400007,-14.13623679899996],[36.212089811000055,-14.349521230999812],[36.257349369999986,-14.521838743999922],[36.363273564,-14.70139329999995],[36.464222011000174,-14.824714858999982],[36.69146363100003,-14.815101845999948],[36.7973799290001,-14.858895298999926],[36.83418071699998,-14.935616716999903],[36.50253526300014,-15.257708934999982],[36.40557531000013,-15.315134876999934],[36.267845814,-15.45449465999991],[36.05901051100017,-15.604289208999887],[36.00779189900015,-15.568133755999952],[35.96253628799997,-15.463696794999976]],[[36.322662912000055,-16.134676455999966],[36.40313086400005,-16.03370444899997],[36.52594496200004,-15.929287331999944],[36.645279985000116,-15.853387667999925],[36.715884271,-15.769449049999935],[36.785987033000026,-15.6120065799999],[36.77453491900013,-15.346909583999945],[36.79341907100013,-15.153311660999975],[36.91126137000009,-15.060542097999928],[37.20413152800012,-14.910757469999965],[37.31452205000005,-14.93728006799995],[37.35480981000012,-15.121245134999981],[37.3786894480001,-15.323282968999877],[37.45278860000019,-15.48234910399998],[37.523400781000134,-15.534171588999982],[37.74368425100016,-15.581593484999928],[37.875956217000066,-15.651899613999944],[38.059940421000135,-15.696103942999912],[38.11762750400004,-15.805362291999927],[38.040558695000186,-15.884078565999914],[37.83121792100013,-15.892488711999874],[37.59154088100007,-15.829399783999975],[37.52590444700013,-15.833810294999978],[37.439887189000046,-15.947068278999893],[37.42000394100012,-16.061539050999954],[37.30862616500008,-16.15953095699996],[37.31211313600005,-16.26677460699989],[37.253940322000176,-16.35553461399985],[37.04310682400012,-16.347074859999964],[36.897416133000036,-16.396461847999888],[36.81572134100014,-16.511130146999903],[36.85521346100012,-16.598797495999975],[36.803844464000065,-16.62334188799997],[36.72374677200014,-16.589147263999962],[36.60256357100013,-16.659514380999894],[36.49963272200006,-16.649460725999916],[36.283321954000144,-16.51126412499997],[36.192818628000055,-16.438151306999885],[36.174416259000054,-16.365850321999915],[36.196787382000025,-16.279496048999874],[36.30851208600018,-16.15026371999994],[36.322662912000055,-16.134676455999966]],[[35.74000166000002,-16.558647091999944],[35.59688166900008,-16.522264099999916],[35.629402615,-16.42911299299982],[35.74745568600002,-16.37411647599987],[35.78231065700015,-16.48277175699991],[35.74000166000002,-16.558647091999944]],[[35.71000000000015,-16.093535445999976],[35.7135814830001,-16.19053225899995],[35.66833848400006,-16.253328136999926],[35.461299608000104,-16.264407670999958],[35.452629535000085,-16.18059199199996],[35.71000000000015,-16.093535445999976]],[[35.72416666700019,-15.743333332999953],[35.77833333400014,-15.949999999999875],[35.78416666700002,-16.045],[35.67083333300019,-16.03083333299992],[35.54833333300019,-16.0425],[35.48500000000013,-15.984166665999965],[35.4925,-15.9025],[35.641666667000095,-15.8225],[35.72416666700019,-15.743333332999953]],[[39.0675,-10.284166666999909],[39.03416666600003,-10.259166665999885],[39.08083333400015,-10.090833332999978],[39.17750000000018,-10.002499999999884],[39.41083333299997,-10.118333332999953],[39.29083333300008,-10.19916666599994],[39.18416666600018,-10.211666666999918],[39.155833334000135,-10.258333332999939],[39.0675,-10.284166666999909]],[[36.4525000000001,-8.965833332999864],[36.486666667000065,-8.8475],[36.571666667000045,-8.683333333999883],[36.62916666700005,-8.644166666999922],[36.694166666000115,-8.670833332999905],[36.62166666600007,-8.77],[36.62583333300012,-8.96],[36.549166667,-9.0025],[36.4525000000001,-8.965833332999864]],[[36.83083333300016,-7.872499999999889],[36.76,-7.8575],[36.85916666700018,-7.691666666999936],[36.920000000000186,-7.749999999999886],[36.9175,-7.819166666999877],[36.83083333300016,-7.872499999999889]],[[37.056335850000096,-7.392630038999869],[37.02037525100019,-7.205809157999909],[37.06150407700005,-7.104079157999934],[37.05402799600006,-7.006635236999898],[37.20868480300004,-6.921744388999969],[37.20624059800019,-6.850698934999969],[37.310737490000065,-6.853953568999884],[37.34900081800015,-6.773432491999927],[37.351544629000045,-6.624633606999907],[37.490823166000155,-6.461157799999967],[37.52154116300011,-6.394722761999958],[37.668611892000115,-6.253522571999895],[37.69729813200007,-6.284309744999973],[37.60688993600007,-6.457710138999971],[37.494793566000055,-6.507303882999906],[37.44271020400009,-6.599985599999968],[37.452287987000034,-6.749011570999926],[37.418528974000026,-6.893796564999946],[37.43639674800016,-6.966874278999967],[37.35808220100006,-7.002880260999973],[37.25010511400012,-7.228669943999876],[37.15218593100013,-7.138642780999874],[37.10624080600007,-7.230306849999977],[37.10267843500014,-7.35592372799988],[37.056335850000096,-7.392630038999869]],[[36.85166666700013,-6.66],[36.86500000000012,-6.54],[36.77666666700014,-6.4225],[36.91083333300014,-6.331666666999979],[36.9525,-6.256666666999877],[37.03916666700013,-6.39333333299993],[37.03333333400019,-6.508333332999882],[36.9275,-6.528333332999921],[36.85166666700013,-6.66]],[[37.7225,-6.818333333999874],[37.79583333400012,-6.835833332999925],[37.814166666000176,-6.929166666999947],[37.75,-7.008333333999872],[37.73833333300007,-7.191666666999936],[37.7025,-7.2525],[37.624166667,-7.278333332999978],[37.55083333300007,-7.203333332999875],[37.485833333000016,-7.258333332999939],[37.46333333299998,-7.153333332999978],[37.500833334000106,-6.984166665999965],[37.59,-6.953333332999932],[37.619166667,-6.89249999999987],[37.7225,-6.818333333999874]]],[[[36.08333333300004,-5.240833332999841],[36.09833333299997,-5.190833332999944],[36.2066666660001,-5.1025],[36.11416666700018,-5.045833332999962],[36.039166666000085,-5.113333332999957],[35.9425,-5.128333332999944],[35.955833333000044,-5.325833332999821],[36.03666666700008,-5.345],[36.08333333300004,-5.240833332999841]]],[[[35.09416666600015,-5.346666666999965],[34.975833333000026,-5.303333332999955],[34.92,-5.140833333999979],[35.01666666700015,-5.095833333999906],[34.99666666700017,-4.975833332999912],[34.75,-4.958333332999871],[34.6991666670001,-4.999166666999884],[34.731666666000024,-5.161666666999963],[34.69833333300005,-5.199166666999872],[34.7325,-5.2775],[34.6475,-5.290833333999899],[34.672500000000184,-5.321666666999931],[34.72666666600003,-5.323333332999937],[34.80083333300007,-5.458333332999928],[34.78583333400019,-5.621666666999943],[34.82583333300005,-5.740833332999898],[34.9591666660001,-5.699166666999929],[34.97333333300014,-5.744166665999956],[34.86500000000018,-5.830833332999873],[34.911666666000144,-5.92333333299996],[35.03500000000014,-5.689166666999881],[35.11166666700012,-5.591666665999924],[35.11666666700006,-5.4525],[35.09416666600015,-5.346666666999965]],[[34.87500000000017,-5.124999999999886],[34.93583333400005,-5.2575],[34.91416666700013,-5.300833332999957],[34.76250000000016,-5.314999999999884],[34.7825,-5.234166666999954],[34.87500000000017,-5.124999999999886]]],[[[35.23916666600013,-4.984166666999954],[35.31083333300012,-4.951666665999937],[35.341666667000084,-4.87416666699994],[35.42333333400006,-4.884166666999874],[35.47666666600003,-4.8],[35.46833333300003,-4.674166666999952],[35.38833333300005,-4.711666665999928],[35.17666666700012,-4.7675],[35.10416666600014,-4.836666665999928],[35.10583333400018,-4.93666666699994],[35.15916666700008,-4.980833332999907],[35.23916666600013,-4.984166666999954]]],[[[35.87666666700011,-4.440833332999944],[35.82,-4.399166666999974],[35.85833333300019,-4.313333332999946],[35.7975,-4.291666666999959],[35.75250000000017,-4.209166666999977],[35.55000000000018,-4.269166666999979],[35.51250000000016,-4.231666666999899],[35.43416666600007,-4.269166666999979],[35.29250000000013,-4.434999999999889],[35.21,-4.5825],[35.28583333300003,-4.624166665999951],[35.121666667000056,-4.711666666999861],[35.053333334,-4.775833332999923],[34.95666666700009,-4.805],[34.938333334000106,-4.863333333999833],[35.10500000000013,-5.125833332999946],[35.18583333300006,-5.137499999999875],[35.1925,-5.27916666699997],[35.15666666600009,-5.310833333999938],[35.27916666600004,-5.346666666999965],[35.31416666700005,-5.409166665999919],[35.400833333000094,-5.405833332999975],[35.425000000000125,-5.25],[35.132500000000164,-5.034166666999909],[35.055,-4.918333333999954],[35.0775000000001,-4.798333333999892],[35.21583333400008,-4.7225],[35.411666667000134,-4.678333332999898],[35.50416666600006,-4.578333332999875],[35.41675654799997,-4.53618662599996],[35.479284495,-4.463862221999932],[35.55419292800019,-4.509365116999959],[35.51141940800011,-4.5725],[35.539166667000075,-4.7],[35.59333333300009,-4.846666666999965],[35.63916666600011,-4.905833332999975],[35.618333333000066,-4.961666665999871],[35.47916666600014,-4.943333332999885],[35.425000000000125,-5.033333332999973],[35.525,-5.104166666999902],[35.566666667000106,-5.185833333999881],[35.63333333300017,-5.208333332999928],[35.68250000000012,-5.101666665999915],[35.65916666600009,-4.9825],[35.68666666700017,-4.870833332999894],[35.73166666599997,-4.86],[35.7875,-4.748333332999835],[35.82916666600005,-4.7675],[35.96833333300009,-4.743333332999953],[36.00000000000017,-4.875],[36.09166666700014,-4.8425],[36.10833333300013,-4.7875],[36.01500000000016,-4.691666666999879],[35.86583333400017,-4.716666666999913],[35.810000000000116,-4.639166666999927],[35.84695941700005,-4.516666666999868],[35.87666666700011,-4.440833332999944]]],[[[34.54166666600008,-4.071666666999931],[34.501666666000176,-3.986666666999952],[34.3841666670001,-4.085833332999869],[34.3325,-4.158333332999973],[34.33166666700015,-4.159166666999965],[34.328333333000046,-4.160833332999971],[34.3275000000001,-4.161666665999974],[34.270833334000145,-4.1825],[34.24833333400011,-4.32416666599994],[34.16333333300008,-4.364999999999895],[34.20583333400015,-4.428333333999944],[34.191666667000106,-4.515833332999932],[34.09833333300003,-4.609166665999908],[34.09,-4.873333332999891],[34.0325,-4.930833332999953],[34.02666666700014,-5.033333332999973],[34.09583333400002,-5.1075],[34.233333333000076,-5.121666665999953],[34.305,-5.223333332999971],[34.446666667000045,-5.301666666999893],[34.5825,-5.35],[34.585,-5.2475],[34.65666666599998,-5.185833332999948],[34.66250000000019,-5.110833333999949],[34.623333334000165,-5.029166666999913],[34.604166666000026,-4.766666666999924],[34.54666666700018,-4.704166666999868],[34.605,-4.651666666999972],[34.8025,-4.645833332999871],[34.81916666700016,-4.703333333999922],[34.9,-4.730833332999964],[35.011666667000156,-4.730833333999954],[35.11916666600007,-4.6825],[35.08833333400014,-4.565],[35.125000000000114,-4.519166666999865],[35.08,-4.400833332999923],[34.87416666600012,-4.583333333999974],[34.81500000000011,-4.499166665999894],[34.81833333300011,-4.4025],[34.73333333300013,-4.324999999999875],[34.658333333000144,-4.391666666999868],[34.64166666700015,-4.535],[34.541666667000186,-4.589166666999972],[34.49583333400017,-4.555833332999839],[34.52,-4.448333332999823],[34.5025,-4.3475],[34.54583333300013,-4.30833333299995],[34.54166666600008,-4.071666666999931]]],[[[33.27000000000015,-3.74],[33.129166667,-3.79],[33.10416666700007,-3.869999999999891],[33.22,-3.893333332999873],[33.32833333400015,-3.8375],[33.27000000000015,-3.74]]],[[[33.525,-2.848333332999971],[33.39166666700004,-2.882499999999879],[33.38333333300011,-3.033333333999906],[33.4500000000001,-3.091666665999981],[33.56000000000017,-3.009166665999828],[33.590833333000035,-2.9375],[33.525,-2.848333332999971]]],[[[32.82583333400015,-2.496666666999943],[32.71333333300004,-2.506666666999934],[32.661666667000134,-2.429166666999947],[32.61583333300018,-2.51],[32.50416666700005,-2.549166666999838],[32.54666666700001,-2.465833332999978],[32.43333333300018,-2.466666666999913],[32.43083333400017,-2.46333333299998],[32.43000000000018,-2.4625],[32.37833333400005,-2.435],[32.36166666700012,-2.429166665999958],[32.197500000000105,-2.515],[32.246666667,-2.55833333399994],[32.24,-2.695833332999882],[32.145,-2.7275],[32.07916666700015,-2.868333332999953],[32.0475,-2.874999999999886],[31.91750000000019,-2.786666666999906],[31.898333332999982,-2.872499999999889],[32.05833333300018,-2.925],[32.046666667000125,-2.95499999999987],[32.08479592400005,-3.132569764999914],[32.08479592400005,-3.26033536999995],[32.062249052000084,-3.367057228999954],[32.062249052000084,-3.663172807999899],[32.0772803000001,-3.742838420999931],[32.10133029600013,-4.135153985999921],[32.16596466100003,-4.61314766299995],[32.17348028500015,-5.041538221999929],[32.11335529399997,-5.454897533999883],[32.000620937000065,-5.854728722999937],[31.87886783000016,-6.185416171999975],[31.859327208000025,-6.302659903999881],[31.866842832000145,-6.421406760999957],[31.910433450000085,-6.652887975999931],[31.954024069000184,-6.768628582999838],[32.03669593100011,-6.8723441919999],[32.114858419000086,-6.923450433999903],[32.13439904100005,-6.997103547999927],[32.14943028900012,-7.213553514999944],[32.27418964499998,-7.366872240999953],[32.45757086700007,-7.404450360999931],[32.70408332900013,-7.535222215999966],[32.80028331400018,-7.611881578999942],[33.13548013800005,-7.841859668999916],[33.263245743000084,-7.954594025999938],[33.353433229000075,-8.154509620999875],[33.383495725000046,-8.34841271599987],[33.54916666600019,-8.442499999999882],[33.68166666700006,-8.4875],[33.7875,-8.481666666999956],[33.80416666700006,-8.396666666999977],[33.731666666000024,-8.39333333299993],[33.65333333299998,-8.32],[33.68416666700011,-8.2275],[33.7425,-8.225833332999969],[33.74166666700012,-8.32999999999987],[34.0425,-8.19],[33.92750000000012,-8.140833333999922],[33.905,-8.0175],[34.00083333300017,-8.0075],[34.025833333000094,-8.07333333299988],[34.086666666999974,-8.0875],[34.08333333300004,-8.18666666699994],[34.135000000000105,-8.193333332999885],[34.289166666000085,-8.0875],[34.31416666700011,-8.033333332999973],[34.135000000000105,-7.920833333999894],[34.21166666700009,-7.905833332999919],[34.28833333300014,-7.960833332999869],[34.3858333340001,-7.971666666999965],[34.34500000000014,-7.880833332999885],[34.411666667000134,-7.718333332999919],[34.455,-7.748333332999948],[34.499166667,-7.645833333999917],[34.59083333400014,-7.605833332999907],[34.56916666700005,-7.458333332999928],[34.48916666700006,-7.41],[34.466666666000094,-7.5],[34.393333333000044,-7.5125],[34.37750000000017,-7.438333332999946],[34.430833333000066,-7.31],[34.54833333400012,-7.18333333399994],[34.60666666700001,-7.054166665999901],[34.79916666600013,-6.900833333999969],[34.82666666700004,-6.79833333299996],[34.98,-6.8325],[34.9591666660001,-6.684166666999943],[34.915,-6.615833333999944],[34.77333333400014,-6.575833333999924],[34.73083333400018,-6.502499999999884],[34.63916666700004,-6.501666666999938],[34.54750000000013,-6.55833333299995],[34.579166666000106,-6.334166666999977],[34.55250000000012,-6.2775],[34.59583333300003,-6.214166665999926],[34.65333333400008,-6.206666666999922],[34.675,-6.286666666999906],[34.78416666700008,-6.405833332999975],[34.78166666700014,-6.471666666999909],[34.9433333340001,-6.5125],[34.9466666670001,-6.43],[35.0208333330001,-6.448333332999937],[35.10583333400018,-6.41083333399996],[35.09416666600015,-6.324166666999929],[35.040000000000134,-6.250833333999879],[34.89166666600016,-6.226666666999961],[34.860000000000184,-6.013333332999878],[34.71416666700003,-5.945],[34.58166666700009,-5.91],[34.53250000000014,-5.958333332999928],[34.35916666700018,-5.83833333299998],[34.30583333300018,-5.9175],[34.27833333300015,-5.7125],[34.35666666700007,-5.789166666999904],[34.4025,-5.755833333999874],[34.31666666700016,-5.6875],[34.19083333300006,-5.545],[34.123333333000176,-5.53583333399996],[34.09333333300003,-5.618333332999953],[34.004166667000106,-5.563333333999879],[34.065,-5.431666666999945],[34.14583333400009,-5.4475],[34.19500000000011,-5.388333332999935],[34.05500000000012,-5.365],[34.0091666670001,-5.384166665999885],[33.955000000000155,-5.254166666999936],[33.86583333400006,-5.202499999999873],[33.73916666700018,-5.211666665999928],[33.6375000000001,-5.2575],[33.57416666600011,-5.330833332999873],[33.5225,-5.301666666999893],[33.44333333300011,-5.380833332999941],[33.413333333000026,-5.34],[33.49166666700012,-5.24916666699994],[33.490833333000126,-5.16],[33.414166667000075,-5.052499999999895],[33.43166666600018,-4.961666666999974],[33.391666666000106,-4.915],[33.4125,-4.764166666999927],[33.47916666599997,-4.685833332999891],[33.425000000000125,-4.6125],[33.4583333330001,-4.458333332999871],[33.441666667000106,-4.351666666999961],[33.350000000000136,-4.353333332999966],[33.35083333300008,-4.278333332999864],[33.226666667000075,-4.181666665999956],[33.27333333299998,-4.13666666599994],[33.32416666600017,-4.01833333299993],[33.183333333,-3.9825],[33.10083333400007,-4.052499999999895],[32.92666666700006,-3.940833332999944],[32.86,-3.968333332999975],[32.77250000000015,-3.921666666999897],[32.7083333330001,-3.969166666999968],[32.55750000000012,-3.956666666999922],[32.45083333300005,-3.864999999999895],[32.477500000000134,-3.761666666999929],[32.43583333300006,-3.649166666999918],[32.4425,-3.595833332999916],[32.64833333400014,-3.489999999999895],[32.705,-3.331666666999979],[32.695,-3.206666666999979],[32.7575,-3.168333332999964],[32.77,-3.09166666699997],[32.77,-3.082499999999868],[32.66666666700013,-3.126666666999824],[32.65333333400014,-3.069999999999879],[32.550833333000185,-2.965833332999978],[32.4516666670001,-3.0025],[32.36000000000013,-2.915833333999842],[32.5275,-2.864999999999839],[32.562500000000114,-2.9175],[32.639166666000165,-2.914166665999971],[32.7475,-2.86083333299996],[32.823333333000164,-2.843333332999919],[32.86333333300007,-2.779999999999859],[32.820000000000164,-2.7175],[32.8175,-2.503333332999887],[32.81833333300017,-2.502499999999884],[32.82583333400015,-2.496666666999943]]],[[[33.0750000000001,-2.383333332999939],[32.98750000000018,-2.385833332999937],[32.87333333300006,-2.465],[32.89500000000015,-2.5325],[32.85833333400018,-2.636666666999872],[32.975000000000136,-2.850833332999969],[33.025,-2.7325],[33.141666667000095,-2.615833333999831],[33.15,-2.524166665999871],[33.0750000000001,-2.383333332999939]]]]},"properties":{"objectid":816,"eco_name":"Dry miombo woodlands","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Afrotropic","eco_biome_":"AF07","nnh":3,"eco_id":42,"shape_leng":535.936183797,"shape_area":99.4126203265,"nnh_name":"Nature Could Recover","color":"#FD965B","color_bio":"#FEAA01","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":1192635.150660493,"percentage":5.5629193241940404}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[23.671616738000182,-18.258142142999873],[23.46267564100009,-18.204075446999923],[23.38793800000019,-18.163447759999883],[23.364469771000074,-18.090646850999917],[23.324697396999966,-18.031882386999882],[23.317776028000083,-18.02372985599993],[23.320099922000168,-18.02169889299995],[23.30775411900015,-17.984917349999932],[23.427842319999968,-17.70348295599996],[23.36906659000016,-17.70347796599998],[23.24670107700007,-18.001271278999923],[23.4795419350001,-18.425360820999913],[23.457523102000152,-18.509535679999942],[23.37530185600008,-18.522571260999882],[23.16558555300014,-18.70510073099996],[23.061965969000028,-18.69930486499993],[22.939320810000027,-18.60213639999995],[22.78337987900005,-18.70888257699994],[22.688054427000168,-18.81370490699993],[22.509445957000082,-18.88568567699997],[22.39983627600003,-18.752986052999916],[22.29890742600014,-18.675284972999975],[22.2468627,-18.658270767999966],[22.158064675000105,-18.530922054999905],[22.007498710000107,-18.384610109999983],[21.854171525000027,-18.28599707999996],[21.894386003000136,-18.404320499999926],[21.977546524000047,-18.459792211999968],[22.156238140000085,-18.697255688999917],[22.06827286400005,-18.7329584229999],[22.209730044000025,-18.942016993999857],[22.23552593100004,-19.033769277999966],[22.21313368200009,-19.209792968999864],[22.110876428000097,-19.348671940999964],[22.066696678000028,-19.494787773999917],[22.09401253200008,-19.663337555999874],[22.160650224000108,-19.86295444299998],[22.28553227599997,-19.89902733799994],[22.33539995900003,-20.003510050999864],[22.38618953800011,-19.94302051699998],[22.64970774400018,-19.95837660299992],[22.78390798000015,-20.013302782999915],[22.888567020000096,-20.128458965999982],[22.935055128000045,-20.245711855999957],[22.90851126800004,-20.296524612999917],[22.976662198000042,-20.34813747599992],[22.993241524000098,-20.34633710299994],[23.011769677000075,-20.3286914009999],[23.235816964000037,-20.051965209999935],[23.135602438999967,-19.864301839999882],[23.267560424000123,-19.89802660099997],[23.295080468000037,-19.98246017499997],[23.38497918300004,-19.905329219999885],[23.478437082000085,-19.929255282999975],[23.417513213000063,-20.014406745999963],[23.432603265000182,-20.03414030399989],[23.546325803000116,-19.892647835999924],[23.676031694000073,-19.76143488799994],[23.559275777000096,-19.720942942999955],[23.654656191000072,-19.6136057949999],[23.695370730000036,-19.499265441999967],[23.68849303400009,-19.42964074199989],[23.59461360400013,-19.40800548399983],[23.462632405000022,-19.32615857899998],[23.428192487000103,-19.280792110999926],[23.485817161000057,-19.218974095999954],[23.70034459400017,-19.210140279999905],[23.7516764880001,-19.16754071099996],[23.446429823000074,-19.056296088999886],[23.337626417000024,-19.053721958999972],[23.212892802000056,-19.099827523999977],[23.192872636,-19.04100622099992],[22.970755393000047,-18.976833840999973],[22.804035165000073,-18.96929231899992],[22.87586359300019,-18.869825076999916],[22.94453343900011,-18.817116973999873],[23.166073108000035,-18.749813908999897],[23.316605030000176,-18.618840755999884],[23.449451241000133,-18.608462619999898],[23.50357496300012,-18.64615278699989],[23.730342689000054,-18.616912880999905],[23.819886975000145,-18.564157331999922],[23.892421219000028,-18.572767942999974],[24.052567352000096,-18.63950796299997],[24.063983066000162,-18.612728805999836],[23.911929843,-18.54913880599986],[23.818925621000176,-18.532480271999873],[23.715049840000063,-18.587536500999875],[23.562784866000072,-18.570380734999958],[23.725054,-18.42955748299994],[23.86413592300005,-18.33104708899998],[23.94548136500015,-18.22890397499998],[24.211572298000192,-18.03725939599991],[24.293776024000067,-18.098576027999968],[24.26871438400019,-18.155811503999928],[24.33913970800006,-18.203155703999983],[24.405772881000132,-18.180535260999932],[24.554903269000135,-18.109175552999943],[24.661975368000185,-17.96100697199995],[24.725241584000116,-17.9050069729999],[24.907602335000036,-17.823024338999915],[25.0795143470001,-17.85907412699993],[25.135527890000105,-17.81104947599988],[25.246539598000027,-17.811742787999947],[25.188333334000106,-17.7275],[25.23666666700018,-17.6],[25.183333333,-17.540833333999956],[25.08,-17.4975],[25.130833333000055,-17.329166666999924],[25.19000000000017,-17.230833333999954],[25.116430740000055,-17.190833332999944],[25.10976407300012,-17.1975],[25.060833334000108,-17.28083333399985],[24.994166667000115,-17.314999999999827],[24.915930487000082,-17.39333333299993],[24.850833333000026,-17.52873036699998],[24.78718344600003,-17.515833332999932],[24.650833334000026,-17.435833332999948],[24.581666666000046,-17.420833332999962],[24.544166667000127,-17.4783333339999],[24.389153703000147,-17.468679660999896],[24.35201089100019,-17.53834257199992],[24.38889989900008,-17.61833465799998],[24.459143246000053,-17.641630957999894],[24.508398963000104,-17.71470883199993],[24.452237437000065,-17.818012155999895],[24.351653171000066,-17.79297489999982],[24.222644920000107,-17.82898410699994],[24.15085326700006,-17.979351557999962],[24.01284096800009,-18.095525994999946],[23.93008397400007,-18.19635110199988],[23.805548488000113,-18.298451674999967],[23.671616738000182,-18.258142142999873]],[[22.973207066000157,-19.28957527699987],[23.02794242800013,-19.244443822999926],[23.15116622100004,-19.336065853999912],[23.241314095000178,-19.431028946999902],[23.221160276000035,-19.52919340899996],[22.949335877000067,-19.314334692999978],[22.973207066000157,-19.28957527699987]],[[23.043509329000017,-19.860143689999916],[23.140775171000087,-19.94019395299989],[23.200836464000133,-20.052404291999892],[23.105119316000128,-20.044403444999887],[23.100763875000098,-19.951148457999977],[23.043509329000017,-19.860143689999916]],[[24.613610999000173,-17.875132476999966],[24.621467695000092,-17.89950934999996],[24.628402718000018,-17.923641613999962],[24.624669806999975,-17.925751813999966],[24.544613286000015,-17.962628836999897],[24.407625503000133,-17.866911397999843],[24.490388519000078,-17.793720648999965],[24.508191734000093,-17.767754107999906],[24.51657644700009,-17.76378279599993],[24.546832130000155,-17.718689318999964],[24.611136868000187,-17.704053183999974],[24.612535175000176,-17.705994468999847],[24.616791795000097,-17.72580327299994],[24.658110001000182,-17.81994969699997],[24.66720908900004,-17.850109993999865],[24.65569945900006,-17.857768303999876],[24.68687274600012,-17.883579857999905],[24.6226786630001,-17.859181667999962],[24.59155681100009,-17.85225831199989],[24.613610999000173,-17.875132476999966]]],[[[23.60916666600008,-16.71666666699997],[23.529166666000094,-16.72166666699985],[23.5208333330001,-16.79166666699996],[23.59500000000014,-16.90416666699997],[23.665000000000134,-17.101666665999915],[23.78583333299997,-17.169166666999956],[23.815833333000114,-17.28],[23.944166667000104,-17.31999999999988],[23.93083333300018,-17.18416666599984],[23.8325,-17.07333333299988],[23.76083333300005,-16.8925],[23.65916666700008,-16.827499999999873],[23.655,-16.740833333999944],[23.60916666600008,-16.71666666699997]]],[[[28.3225,-15.409166666999965],[28.214166667000086,-15.365833333999944],[28.171666667000125,-15.461666665999928],[28.27083333300004,-15.468333332999975],[28.3225,-15.409166666999965]]],[[[28.231666667000127,-15.736666665999905],[28.08833333299998,-15.7475],[28.02583333400014,-15.667499999999848],[28.062500000000114,-15.574999999999875],[27.97666666700019,-15.56833333399993],[27.87583333300006,-15.493333332999839],[27.694166667000047,-15.51],[27.6333333340001,-15.444166666999877],[27.510000000000105,-15.395833333999974],[27.435,-15.41583333299991],[27.383333333000053,-15.365],[27.0875,-15.41],[26.910833334000074,-15.4125],[26.76666666699998,-15.448740818999909],[26.74833333300012,-15.559999999999832],[26.66083333400013,-15.550833333999947],[26.5925,-15.634166666999874],[26.31748548800016,-15.720000009999978],[26.273333333000153,-15.759166666999874],[26.173333333000187,-15.763333333999924],[26.156666667000025,-15.76166666599994],[26.090833334000024,-15.766666666999924],[26.077500000000157,-15.759999999999877],[26.0375,-15.748333332999948],[26.015833334000035,-15.689166666999938],[26.05833333300012,-15.58416666699992],[26.024166666000156,-15.538333332999912],[25.924166667000122,-15.74583333299995],[25.852500000000134,-15.78166666699991],[25.80500000000012,-15.859166666999897],[25.92083333300019,-15.874999999999886],[26.0316771090001,-15.878333333999933],[26.13416666700016,-15.916666666999959],[26.15750000000014,-15.992696758999898],[26.201666666000165,-15.859999999999843],[26.438333333000116,-15.745],[26.630833333000112,-15.772647857999914],[26.746666667000056,-15.68249999999989],[26.866666667000118,-15.73833333399989],[26.871666667000113,-15.81666666599989],[26.936666667000168,-15.877499999999884],[27.034166667000193,-15.8175],[27.098333334000074,-15.8175],[27.11583333300007,-15.89],[27.200833334000095,-15.855],[27.3325,-15.90083333399997],[27.43916666700011,-15.88249999999988],[27.60083333299997,-15.7725],[27.62833333300017,-15.8175],[27.848333333000028,-15.774999999999864],[28.033333333000144,-15.753333332999944],[28.174166666000076,-15.784166666999965],[28.2683333330001,-15.872499999999889],[28.293333333000078,-15.87833333299983],[28.284166667000136,-15.834166666999977],[28.2575,-15.8225],[28.19750000000016,-15.800833333999833],[28.194166666000058,-15.795],[28.190833334000104,-15.752499999999827],[28.231666667000127,-15.736666665999905]]],[[[35.96253628799997,-15.463696794999976],[35.92672275299998,-15.262460872999952],[35.94959145000007,-15.181729898999947],[35.916265788000146,-15.00861047599983],[35.90133459900011,-14.772030932999883],[35.87049681100012,-14.627028007999968],[35.83916934400003,-14.612162886999897],[35.87000000000012,-14.749166665999894],[35.73750000000018,-14.91416666699996],[35.735833333000016,-14.96],[35.559166667000056,-15.015],[35.54833333300019,-15.11],[35.45916666600016,-15.190833333999933],[35.4566666660001,-15.313333332999889],[35.5725,-15.43],[35.559166666000124,-15.5275],[35.644166667000036,-15.595833332999973],[35.556666667000115,-15.645],[35.527500000000146,-15.564999999999884],[35.445,-15.503333332999887],[35.40500000000014,-15.533333332999916],[35.40583333300009,-15.661666666999906],[35.37416666700011,-15.740833333999888],[35.42666666600019,-15.8475],[35.52583333300015,-15.753333332999944],[35.60083333400007,-15.719166666999968],[35.64583333300004,-15.6325],[35.70083333400004,-15.714166666999972],[35.771666666000044,-15.628333333999876],[35.78916666700019,-15.525833332999923],[35.858618185000125,-15.57815764499992],[35.96253628799997,-15.463696794999976]]],[[[28.03833333300014,-14.319166666999934],[28.03166666600015,-14.254166666999936],[27.90583333400008,-14.228333332999966],[27.875833334000163,-14.08666666699986],[27.95083333400015,-13.975833332999912],[27.917500000000132,-13.903333332999978],[27.790000000000134,-13.861666666999952],[27.804166667000175,-13.930833332999839],[27.52333333399997,-14.019166666999922],[27.435833333000176,-14.07666666699987],[27.34020633400013,-14.086012621999942],[27.276666667000086,-14.208333332999814],[27.079166667000095,-14.385833332999937],[27.18416666700017,-14.3975],[27.3275,-14.46],[27.375,-14.545833333999894],[27.481666667000127,-14.486666666999895],[27.560833333000062,-14.569166666999877],[27.803333333000126,-14.655833332999919],[27.80083333300007,-14.758333332999939],[27.825833334000095,-14.698333332999937],[27.975,-14.636666666999929],[27.993333333000066,-14.630833332999885],[28.046666666000135,-14.53],[28.0375,-14.435833332999891],[28.086666667000145,-14.385833332999937],[28.144166667000093,-14.418333332999964],[28.1625,-14.38083333399993],[28.078333334000092,-14.37],[28.03833333300014,-14.319166666999934]]],[[[23.236531707999973,-12.726116702999889],[23.01971046699998,-12.757644852999874],[22.929841545000045,-12.800643009999874],[22.76030146000005,-12.955233467999903],[22.73245716600013,-13.001666666999881],[23.016231093000044,-12.999166666999884],[23.075944643000184,-12.84312588299997],[23.236531707999973,-12.726116702999889]]],[[[22.70782269800003,-13.000529884999878],[22.705429498000115,-12.860009850999916],[22.67078055400009,-12.755706956999916],[22.52876280700019,-12.510996740999872],[22.59791861500014,-12.39524643899989],[22.58090659800007,-12.278159753999887],[22.751642908,-12.12864968699995],[22.746990246000166,-11.994550267999955],[23.04527087200006,-11.774914407999972],[23.08322882200008,-11.708169173999977],[23.061641583000153,-11.636626343999922],[23.132965653000156,-11.583439191999958],[23.055440973000145,-11.51426654599993],[22.809095077,-11.563330161999943],[22.686387508000166,-11.571171534999905],[22.598827126000117,-11.611616365999964],[22.544748773000038,-11.565483473999961],[22.561058556999967,-11.505916903999946],[22.761429096000086,-11.424284384999908],[22.84983921500003,-11.423562912999898],[22.82922512199997,-11.294917325999904],[22.937611610000147,-11.15769342699997],[22.901609781000047,-11.079907],[22.73654472400011,-11.081358971999975],[22.650900245000173,-11.042412144999957],[22.537418538000054,-10.902720096999929],[22.45347952300017,-10.952601952999885],[22.50024361100003,-11.065281302999836],[22.288088086000073,-11.210284153999908],[22.120359129000178,-11.173602060999883],[22.084418001000188,-11.07437994299994],[22.00146783000008,-11.05207495299993],[21.94181670300003,-11.133726975999934],[21.76428625400007,-11.027999955999974],[21.685723940000173,-11.085022153999944],[21.61035977000006,-11.06116281099986],[21.468549780000046,-10.964964387999942],[21.33869510300019,-10.951307045999954],[21.218976670000075,-11.188393945999962],[21.103993727000045,-11.182847264999964],[21.0319475660001,-11.114942471999939],[20.75299613900006,-11.134959340999956],[20.66228911200011,-11.221990782999967],[20.674322171000142,-11.317822949999936],[20.77922310600013,-11.47091616199998],[20.76800889200007,-11.570013754999877],[20.910851958000137,-11.728666956999973],[20.6743180900001,-11.905136371999902],[20.655697053000097,-12.03132737199985],[20.66881627000015,-12.195403400999908],[20.720024959000114,-12.290504419999877],[20.730660494000176,-12.475242721999905],[20.860213568,-12.575956737999888],[20.941687641000044,-12.694340195999871],[20.992062675000057,-12.762135452999814],[21.24273657200007,-12.928032453999947],[21.32562342199998,-13.137089573999958],[21.42464807100015,-13.229293649999931],[21.426394508000158,-13.37076916299992],[21.57024614200003,-13.380054270999892],[21.68699885200016,-13.467760591999877],[21.59048174100019,-13.573427],[21.63009396800004,-13.704347740999935],[21.750703985000087,-13.803546124999968],[21.918849861000126,-13.913083293999875],[21.975566711000113,-13.983513176999963],[21.990439884000125,-14.163897429999963],[21.937702427000147,-14.199186525999892],[21.65622679300003,-14.231919245999904],[21.652247125000088,-14.30948172099994],[21.780746838000084,-14.316486444999953],[21.847331006000104,-14.476342125999963],[21.790573061000146,-14.612161584999967],[21.82001120800004,-14.693307795999942],[21.968992837000087,-14.774619735999863],[21.910304250000138,-14.840163466999911],[21.889677837000136,-14.9816754659999],[21.723808515000144,-15.04444489499997],[21.683258429000034,-15.1181797939999],[21.596215880000045,-15.184675143999925],[21.57171251300008,-15.33232272299989],[21.47846424200003,-15.474562620999905],[21.482011844000112,-15.516232531999947],[21.578286501000093,-15.684223843999973],[21.698381128000108,-15.785100396999951],[21.79726221100009,-15.92605584699993],[22.034166667000136,-16.1125],[22.056666667000172,-16.180833333999942],[22.193333333000055,-16.27583333299998],[22.172500000000184,-16.368333332999953],[22.2325,-16.398333332999925],[22.34416666700008,-16.596666666999965],[22.448333333000164,-16.634166666999874],[22.60583333400018,-16.66083333299997],[22.5775000000001,-16.753333332999944],[22.6675,-16.82],[22.698333333000107,-16.910833333999904],[22.7475,-16.931666666999888],[22.798333333000073,-17.023333333999915],[22.865833334000115,-17.04916666699995],[22.979166667000015,-16.947499999999877],[23.03666666700019,-17.00583333299994],[23.017500000000155,-17.173333332999903],[23.06500000000011,-17.21333333299998],[23.060833333000062,-17.21166666599993],[23.04416666700007,-17.179166665999958],[23.04000000000019,-17.175],[23.02,-17.124166666999884],[23.098333334000188,-17.08],[23.285833334000188,-17.037499999999852],[23.363333333000185,-17.06166666699994],[23.3366666660001,-16.836666666999918],[23.34416666700008,-16.73583333399995],[23.247500000000173,-16.696666666999818],[23.257500000000107,-16.605833332999907],[23.321666667000045,-16.56583333299983],[23.317500000000166,-16.485],[23.19,-16.4125],[23.12166666700017,-16.45916666599993],[23.07166666600017,-16.37416666699994],[23.245,-16.3275],[23.303333333000126,-16.18833333399982],[23.247500000000173,-16.095],[23.30666666700006,-15.94916666599994],[23.276666667000143,-15.893333332999873],[23.2775,-15.766666666999924],[23.210833333000096,-15.658333332999973],[23.19583333300011,-15.377499999999884],[23.119166666000183,-15.2375],[23.1625,-15.00749999999988],[23.412500000000136,-14.87499999999983],[23.500833333000116,-14.887499999999875],[23.518333333000157,-14.949166666999872],[23.617500000000177,-14.911666666999963],[23.622500000000173,-14.850833332999912],[23.485833333000187,-14.844166666999968],[23.371666667000113,-14.87083333299995],[23.375000000000114,-14.804999999999893],[23.594166666000092,-14.7275],[23.773333333000096,-14.891666665999935],[23.86638888900012,-14.905],[23.862500000000125,-14.895],[23.79416666700007,-14.890833332999932],[23.614166666000074,-14.7275],[23.698333333000107,-14.646666666999977],[23.753333334000047,-14.730833332999907],[23.754166667,-14.731666666999956],[23.754166666000117,-14.7325],[23.75500000000011,-14.733333332999905],[23.815833334,-14.80166666599996],[23.816666667000106,-14.802499999999895],[23.840384723000057,-14.809999999999889],[23.741666667000118,-14.695833332999939],[23.8125,-14.5875],[23.749166667,-14.514166666999927],[23.787389785000187,-14.440833333999876],[23.728333333000023,-14.4025],[23.77833333300009,-14.312499999999886],[23.7650000000001,-14.32583333399998],[23.75166666700011,-14.295],[23.690833334000104,-14.202499999999873],[23.72916666600014,-14.164166665999858],[23.71916666700008,-14.1675],[23.6575,-14.23],[23.660833334000188,-14.27],[23.6625,-14.297499999999843],[23.607500000000186,-14.355],[23.612500000000182,-14.455],[23.509166667000045,-14.655],[23.395,-14.702499999999873],[23.418333334000124,-14.61416666599996],[23.555,-14.460833333999915],[23.600833333000082,-14.450833332999935],[23.5925,-14.406666665999978],[23.569166667000104,-14.3675],[23.590833334000024,-14.289166665999915],[23.605000000000132,-14.26833333299993],[23.55333333300007,-14.280833332999975],[23.539166666000085,-14.39333333299993],[23.543333333000135,-14.46],[23.48250000000013,-14.503333333999933],[23.41166666700019,-14.606666666999956],[23.37333333400005,-14.707499999999868],[23.236666667000065,-14.646666666999977],[23.225833333000082,-14.538333332999912],[23.239166666000074,-14.40083333299998],[23.23916666700012,-14.2575],[23.2975,-14.200833332999935],[23.228333333000137,-14.093333332999975],[23.240833333000182,-13.998333332999948],[23.216666667000084,-13.843333332999975],[23.239166666000074,-13.79],[23.193333334000158,-13.725],[23.225000000000136,-13.763333332999878],[23.195833334000042,-13.865],[23.204166667000038,-13.9725],[23.07166666600017,-13.920833332999962],[23.092500000000143,-14.020833332999871],[23.2075,-13.979166666999845],[23.209166667000034,-14.119166666999945],[23.16666666600014,-14.201666665999937],[23.096666667000022,-14.20583333299993],[23.04000000000019,-14.075833332999935],[23.00416666600006,-13.904166666999913],[22.91000000000014,-13.8025],[22.999166666000065,-13.771666666999977],[23.06166666700011,-13.828333333999979],[23.10083333299997,-13.729166666999959],[23.0625,-13.668333333999897],[23.118333333000066,-13.631666666999934],[23.18250000000012,-13.702499999999873],[23.06833333300017,-13.46],[23.05416666700006,-13.314999999999827],[22.975833333000082,-13.293333333999897],[23.02666666700003,-13.31],[23.0525,-13.481666666999956],[23.11,-13.623333332999948],[23.010000000000105,-13.66416666699996],[22.941666666000117,-13.626666666999938],[22.875,-13.53583333399996],[22.850833333000026,-13.33416666699992],[22.92416666700018,-13.23916666599996],[22.96916666700008,-13.2775],[23.066952398000012,-13.179166665999844],[23.06500000000011,-13.170833332999905],[22.975833333000082,-13.228333333999956],[22.97586264600011,-13.145833332999871],[22.97666666700013,-13.06346631599996],[22.972473829000137,-13.059999999999889],[22.88416666600017,-13.126666665999949],[22.7725,-13.075],[22.703333334000035,-13.09166666599998],[22.76000000000016,-13.098333332999914],[22.78666666700002,-13.175],[22.65,-13.240833332999955],[22.62166666600018,-13.130833332999941],[22.685000000000116,-13.001666666999881],[22.707521146000147,-13.00166671999989],[22.70782269800003,-13.000529884999878]],[[22.013333333000105,-13.00583333399993],[22.238333333000128,-13.040833332999966],[22.00083333300006,-13.086666665999871],[22.013333333000105,-13.00583333399993]],[[22.878333333000057,-13.799166666999895],[22.994166667000172,-13.911666666999906],[22.932500000000175,-13.940833332999887],[22.878333333000057,-13.799166666999895]],[[22.649166665999985,-13.870833332999894],[22.723333334000188,-13.934166666999943],[22.8958333330001,-13.9625],[23.025,-14.07],[23.085,-14.180833332999953],[23.030833333000146,-14.250833333999879],[22.9125,-14.061666665999894],[22.68083333400017,-13.929999999999893],[22.649166665999985,-13.870833332999894]],[[22.00333333300017,-14.269166666999979],[22.08,-14.374166666999884],[22.000833334000163,-14.423333333999949],[22.00333333300017,-14.269166666999979]],[[22.345,-14.693333332999941],[22.41166666700019,-14.735833332999903],[22.575,-14.930833332999896],[22.465833333000035,-14.9375],[22.37500000000017,-14.815833332999887],[22.42833333300007,-14.77416666699986],[22.345,-14.693333332999941]],[[22.56250000000017,-14.95],[22.66,-14.963333332999923],[22.76916666699998,-15.036666666999963],[22.720833334000076,-15.114999999999895],[22.779166666000037,-15.2325],[22.7425,-15.3225],[22.67583333300007,-15.320833332999882],[22.664166667000075,-15.38833333299982],[22.586666667000145,-15.415],[22.6075,-15.5075],[22.560833333000176,-15.524166666999974],[22.49,-15.638333333999924],[22.489166666000187,-15.725],[22.413333333000082,-15.7],[22.303333333000182,-15.7075],[22.095,-15.665833332999966],[22.031666666000092,-15.5875],[22.19250000000011,-15.41833333399984],[22.12916666700005,-15.280833332999975],[22.23666666600019,-15.255],[22.195833333000166,-15.0975],[22.14916666700003,-15.005833332999885],[22.35,-14.970833332999973],[22.56250000000017,-14.95]],[[22.78666666700002,-15.249166665999894],[22.94,-15.5275],[22.94750000000016,-15.628333332999944],[23.030833333000146,-15.758333333999929],[23.03666666700019,-15.8225],[23.125833333000116,-15.921666665999851],[23.126666667000165,-16.0325],[23.0725,-16.070833332999825],[22.86416666700012,-16.046666665999908],[22.72250000000014,-16.004166666999936],[22.600000000000136,-15.86249999999984],[22.683333334000054,-15.811666665999837],[22.7775,-15.8325],[22.886666667000156,-15.900833332999866],[22.900833333000094,-15.805833332999896],[22.942500000000166,-15.785833332999971],[22.830000000000155,-15.611666666999952],[22.6625,-15.470833332999973],[22.69000000000011,-15.390833332999875],[22.751666666000062,-15.338333333999913],[22.78666666700002,-15.249166665999894]],[[22.78,-16.039166666999904],[22.867500000000177,-16.06749999999988],[23.040833333000137,-16.07583333399998],[23.084166667000147,-16.14249999999987],[23.19250000000011,-16.1875],[23.24166666600013,-16.268333333999976],[23.0183333330001,-16.266666666999924],[22.798333334000176,-16.24583333299995],[22.679166667,-16.21666666699997],[22.713333333000094,-16.15083333299998],[22.628333333000114,-16.12],[22.78,-16.039166666999904]],[[22.439166667000052,-15.728333333999899],[22.48916666700012,-15.7975],[22.55833333300012,-15.820833332999939],[22.715,-16.01916666699998],[22.715,-16.07416666699993],[22.56250000000017,-16.02833333299992],[22.43250000000012,-15.82666666699987],[22.35083333300014,-15.751666666999881],[22.439166667000052,-15.728333333999899]],[[22.57333333300005,-15.734166665999908],[22.66666666700013,-15.736666665999905],[22.7475,-15.785],[22.595,-15.8566666669999],[22.51666666600005,-15.759166666999874],[22.57333333300005,-15.734166665999908]],[[22.055833333000123,-15.31],[22.1525,-15.403333332999978],[22.00083333300006,-15.574999999999875],[22.000000000000114,-15.333333332999928],[22.055833333000123,-15.31]],[[22.171666666000135,-15.14333333399992],[22.204166666000162,-15.205833332999873],[22.134166667000045,-15.2525],[22.035,-15.234166665999851],[22.171666666000135,-15.14333333399992]],[[22.0025,-14.809166666999943],[22.055000000000177,-14.935],[22.000000000000114,-14.936206951999964],[22.0025,-14.809166666999943]],[[22.045833333000132,-14.675],[22.110833333000187,-14.689166666999881],[22.10416666700013,-14.795833332999962],[22.000000000000114,-14.775],[22.045833333000132,-14.675]],[[22.731666667000184,-16.73916666599996],[22.792500000000132,-16.856666666999956],[22.938333333000116,-16.944166666999934],[22.896666667000147,-17.014999999999816],[22.799166667000122,-17.017499999999814],[22.70083333400015,-16.90416666699997],[22.661666666000087,-16.786666666999963],[22.731666667000184,-16.73916666599996]]],[[[29.575,-11.241666666999834],[29.54166666700013,-11.3625],[29.605833333000135,-11.468333333999965],[29.705833333000044,-11.44166666599989],[29.737500000000125,-11.501666666999938],[29.66500000000019,-11.625],[29.596666667000136,-11.669166665999967],[29.595,-11.889166665999937],[29.62833333300017,-11.944166666999877],[29.562414257000114,-12.11333333399989],[29.57916666600005,-12.155833332999975],[29.46149056200005,-12.306056574999957],[29.529729480000185,-12.378451407999819],[29.67826049300004,-12.361833781999962],[29.787050555000064,-12.403590747999829],[29.816666667000163,-12.2775],[29.878333333000114,-12.305833332999896],[29.96,-12.253333332999944],[30.105,-12.350833333999958],[30.19,-12.305],[30.16000000000014,-12.229166666999902],[30.19833333300005,-12.189166666999938],[30.36833333300018,-12.24166666699989],[30.481666666000137,-12.188333332999889],[30.495,-12.099166666999963],[30.5775000000001,-12.071666666999931],[30.543333334000067,-11.928333332999955],[30.568333334000158,-11.794166666999956],[30.655,-11.808333333999883],[30.664166667000075,-11.7],[30.7525,-11.695833332999882],[30.6875,-11.51833333299993],[30.791666667000015,-11.42583333399989],[30.808333333000064,-11.351666666999904],[30.729166667000072,-11.345833333999906],[30.736666666000076,-11.21666666699997],[30.688333333000173,-11.177499999999895],[30.570833333000166,-11.197499999999877],[30.48166666700007,-11.1075],[30.3825,-11.095],[30.26333333399998,-11.039379372999974],[30.150000000000148,-11.041666666999959],[30.11416666700012,-10.9525],[30.16000000000014,-10.877499999999884],[30.11416666700012,-10.809515246999922],[30.0075,-10.839166666999972],[29.906666667000138,-10.833333333999974],[29.875,-10.87499999999983],[29.804166667000118,-10.91666666599997],[29.716666667000084,-11.05],[29.65,-11.054166665999901],[29.616666667000118,-11.1375],[29.525,-11.208333332999871],[29.575,-11.241666666999834],[29.583333334000145,-11.225],[29.575,-11.241666666999834]]],[[[28.45636587200005,-9.525917618999927],[28.37172404200004,-9.52015989399996],[28.33793248300003,-9.568268497999952],[28.371671487000015,-9.66205679799998],[28.417398457000047,-9.961799689999964],[28.463125595000065,-10.02276328399995],[28.58450595500011,-10.04272575099992],[28.597916011000166,-9.975693815999932],[28.502095462000113,-9.981453169999952],[28.487269572000116,-9.935338815999955],[28.49898120900008,-9.727058022999927],[28.59454777100018,-9.719132069999887],[28.45636587200005,-9.525917618999927]]],[[[31.872500000000116,-10.583333333999917],[31.9675,-10.555],[32.020833333000155,-10.504166665999946],[32.12166666600007,-10.273333332999925],[32.141666667000095,-10.16583333299991],[32.17916666700012,-10.1325],[32.12500000000017,-10.045],[32.18583333300012,-9.985],[32.19166666700016,-9.88666666599994],[32.30500000000012,-9.876666666999881],[32.406666667000025,-9.81166666699994],[32.483333333000076,-9.793333332999964],[32.55250000000012,-9.875833332999946],[32.523333334000085,-9.9725],[32.5775000000001,-10.0725],[32.67583333300007,-9.928333332999841],[32.738333333000185,-9.758333332999882],[32.65833333300003,-9.758333332999882],[32.70750000000015,-9.631666666999934],[32.629166667000106,-9.601666666999904],[32.52333333300015,-9.359166666999954],[32.413333333000026,-9.276666666999972],[32.254166666000174,-9.258333332999882],[32.208333333000155,-9.349166666999963],[32.234166667000125,-9.415833332999966],[32.039166667000075,-9.54333333299985],[32.085,-9.624999999999886],[31.99083333300007,-9.66666666599997],[31.940833334000104,-9.7325],[31.918333333000135,-9.82583333399998],[31.947500000000105,-9.938333332999889],[31.87416666600018,-10.000833333999935],[31.961666667000145,-10.061666666999827],[31.9825,-10.125833332999889],[31.84583333300003,-10.185833332999948],[31.844166666999968,-10.2275],[31.744166666000126,-10.25666666699982],[31.653333334000138,-10.384166665999942],[31.5775000000001,-10.3975],[31.55670444200007,-10.480833332999964],[31.607020897000098,-10.56916666799998],[31.80750000000012,-10.518333333999976],[31.872500000000116,-10.583333333999917]]],[[[34.3275000000001,-8.6925],[34.24833333400011,-8.643333332999816],[34.237500000000125,-8.564166666999938],[34.375,-8.5475],[34.365,-8.460833332999869],[34.49500000000012,-8.368333332999896],[34.65583333300009,-8.304166666999947],[34.80333333400006,-8.194166666999934],[34.63583333400004,-8.161666666999963],[34.494166666000126,-8.170833332999962],[34.464166667000086,-8.246666666999943],[34.39166666699998,-8.276666666999972],[34.310833333000176,-8.22166666599992],[34.227500000000134,-8.283333332999916],[34.054166667000175,-8.286666666999963],[34.060000000000116,-8.442499999999882],[34.1325,-8.55833333399994],[34.0425,-8.610833333999892],[34.11333333400006,-8.7125],[34.18333333300018,-8.614166665999903],[34.21416666700014,-8.724166666999906],[34.3275000000001,-8.6925]]],[[[35.90553630300013,-9.15981226799994],[36.02049353700005,-8.935433847999832],[36.01944468500011,-8.860906797999974],[36.07508085600011,-8.816874868999946],[36.24453145400008,-8.558271438999952],[36.31276160100015,-8.520484167999882],[36.31462449800017,-8.418065233999926],[36.39051714700008,-8.337725063999926],[36.49002962300017,-8.310522067999955],[36.594157575000054,-8.208686267999894],[36.829043103000174,-8.162933722999924],[36.9259845740001,-8.177522947999933],[36.88535810100012,-8.086946599999976],[36.736623383,-8.136533568999937],[36.64454479500017,-8.14016185099996],[36.519469628000024,-8.20956090899989],[36.34908349700004,-8.261668209999868],[36.30149176400016,-8.303301118999968],[36.2284233580001,-8.269842743999902],[36.16808292000013,-8.286236606999978],[36.08867540200015,-8.245807338999896],[36.064670528000136,-8.356755107999902],[35.95683098400008,-8.376975061999872],[35.87544519700009,-8.451231365999888],[35.94160669500013,-8.573860283999977],[35.86086581400019,-8.660743657999888],[35.848863836000135,-8.80540072499997],[35.76924735600011,-8.87454065299994],[35.82984047700006,-8.98555178499987],[35.89205646300013,-8.94363974099997],[35.90553630300013,-9.15981226799994]]],[[[31.51000000000016,-7.356666666999899],[31.38416666700016,-7.40416666699997],[31.446666666,-7.516666665999878],[31.549166666000076,-7.553333332999955],[31.54583333300019,-7.604166665999969],[31.68416666700017,-7.690833333999876],[31.700000000000102,-7.749166666999884],[31.77666666700003,-7.757499999999879],[31.79083333400007,-7.8175],[31.87166666700017,-7.893333332999873],[31.983333334000065,-8.045],[32.0783333330001,-8.090833333999967],[32.09333333300009,-8.1475],[32.2025,-8.0775],[32.366666666000185,-8.139166666999927],[32.43333333300018,-8.238333332999957],[32.4175,-8.289166665999971],[32.53750000000019,-8.360833333999949],[32.51083333300011,-8.411666666999963],[32.586666667000145,-8.47916666599997],[32.8275,-8.508333332999939],[32.93,-8.416666666999902],[32.79916666600013,-8.335],[32.66583333300008,-8.18],[32.61833333300012,-8.165],[32.50083333300012,-8.005],[32.43000000000018,-7.989166666999949],[32.31,-7.846666665999919],[32.18166666700017,-7.764999999999873],[32.05833333300018,-7.62916666599989],[31.823333333000164,-7.469999999999857],[31.61166666600019,-7.381666666999934],[31.51000000000016,-7.356666666999899]]],[[[35.48956205700006,-7.246610577999945],[35.36256244600003,-7.277531831999909],[35.374239901000124,-7.335471083999892],[35.49171669800006,-7.314008758999933],[35.48956205700006,-7.246610577999945]]],[[[31.55166666600013,-7.244166666999888],[31.545,-7.1375],[31.5,-7.074999999999875],[31.383333334000042,-7.056666665999899],[31.36583333300007,-7.1225],[31.463333334000026,-7.144166665999876],[31.55166666600013,-7.244166666999888]]],[[[31.245833333000178,-7.11],[31.319166666000058,-7.048333333999892],[31.332500000000152,-6.93],[31.405,-6.886666666999929],[31.430000000000177,-6.776666666999915],[31.33,-6.671666666999897],[31.321666666000112,-6.845],[31.258333334000156,-6.85],[31.13166666700016,-6.6525],[31.044166665999967,-6.7075],[31.0683333340001,-6.762499999999818],[31.02833333300009,-6.8475],[30.9075,-6.86083333299996],[30.96583333300015,-6.9375],[31.064166667000052,-6.889166666999927],[31.1425,-6.96],[31.07416666600011,-6.989999999999895],[31.035,-7.070833333999929],[31.245833333000178,-7.11]]],[[[30.884166667000102,-6.726666665999971],[31.048333333000016,-6.635833332999937],[30.991666666000185,-6.55],[30.916666666000026,-6.55833333299995],[30.884166667000102,-6.726666665999971]]],[[[36.06666666700016,-6.358333333999894],[35.95071999600003,-6.378060365999829],[35.88129493200012,-6.364544930999955],[35.84881944900013,-6.444105401999877],[35.75148923799998,-6.45953754899989],[35.70903087300019,-6.401406697999903],[35.612129129000095,-6.389360340999872],[35.57265268800006,-6.300895320999928],[35.50269358300011,-6.376738145999923],[35.56485353800008,-6.417887253999879],[35.56457535900006,-6.529771797999956],[35.61332671800011,-6.565759533999881],[35.757864753000035,-6.561828763999813],[35.80647690800009,-6.62467269699988],[35.90168512400004,-6.637344806999977],[35.949700362000044,-6.480493560999946],[36.03107254500014,-6.463751777999903],[36.10583333300008,-6.387499999999875],[36.06666666700016,-6.358333333999894]]],[[[37.056335850000096,-7.392630038999869],[37.10267843500014,-7.35592372799988],[37.10624080600007,-7.230306849999977],[37.15218593100013,-7.138642780999874],[37.25010511400012,-7.228669943999876],[37.35808220100006,-7.002880260999973],[37.43639674800016,-6.966874278999967],[37.418528974000026,-6.893796564999946],[37.452287987000034,-6.749011570999926],[37.44271020400009,-6.599985599999968],[37.494793566000055,-6.507303882999906],[37.60688993600007,-6.457710138999971],[37.69729813200007,-6.284309744999973],[37.668611892000115,-6.253522571999895],[37.52154116300011,-6.394722761999958],[37.490823166000155,-6.461157799999967],[37.351544629000045,-6.624633606999907],[37.34900081800015,-6.773432491999927],[37.310737490000065,-6.853953568999884],[37.20624059800019,-6.850698934999969],[37.20868480300004,-6.921744388999969],[37.05402799600006,-7.006635236999898],[37.06150407700005,-7.104079157999934],[37.02037525100019,-7.205809157999909],[37.056335850000096,-7.392630038999869]]],[[[35.3308333330001,-6.144166666999979],[35.31,-6.041666665999969],[35.14,-6.038333333999958],[35.09583333400019,-5.989166666999893],[35.019166667000036,-6.059166666999829],[35.07083333300017,-6.150833332999923],[35.199166667000156,-6.234166666999954],[35.31583333400005,-6.230833332999907],[35.3308333330001,-6.144166666999979]]],[[[33.43166666600018,-4.961666666999974],[33.47833333300008,-4.944166665999944],[33.48583333300013,-4.841666665999981],[33.55166666700018,-4.7725],[33.47916666599997,-4.685833332999891],[33.4125,-4.764166666999927],[33.391666666000106,-4.915],[33.43166666600018,-4.961666666999974]]],[[[37.10749837900016,-4.769561820999911],[37.12446863600013,-4.836449008999921],[37.19873929400018,-4.92556622099994],[37.31758709300004,-4.899474245999897],[37.590577263000114,-5.060328721999895],[37.45370745800017,-4.917517053999916],[37.372944279000194,-4.857153319999895],[37.350269836000166,-4.745950580999931],[37.214431836000074,-4.751662533999934],[37.145498420000024,-4.716639019999946],[37.10749837900016,-4.769561820999911]]],[[[36.91113960500007,-4.522654738999961],[36.80867342099998,-4.56597705299987],[36.79531582600015,-4.73365562399988],[36.74889117300006,-4.925147209999921],[36.8144120020001,-4.996061306999934],[36.84300560500009,-4.87593228999998],[36.840667357000086,-4.783963780999954],[36.91113960500007,-4.522654738999961]]],[[[35.84695941700005,-4.516666666999868],[35.9266131280001,-4.55048706499997],[36.04199815300012,-4.528537471999925],[36.12635894400006,-4.611142727999891],[36.17914022500014,-4.62166316399987],[36.194825528000024,-4.697264972999903],[36.29116843600008,-4.773773082999924],[36.278170633000116,-4.867283460999886],[36.32503143800005,-4.905299571999876],[36.41300206600016,-4.903731577999906],[36.252460036000116,-4.645936774999939],[36.232506646000104,-4.532044516999918],[36.12262007200013,-4.477584126999943],[36.13013012500011,-4.380771455999934],[36.17047994700016,-4.334631917999957],[36.07486268600019,-4.290203536999968],[35.97768227500006,-4.319710628999928],[35.87666666700011,-4.440833332999944],[35.84695941700005,-4.516666666999868]]],[[[34.54166666600008,-4.071666666999931],[34.6425,-3.931666665999899],[34.753333333000114,-3.924166666999895],[34.78,-3.850833332999969],[35.02416666700003,-3.748333332999948],[35.1725,-3.7125],[35.29583333300019,-3.663333332999969],[35.368333333000066,-3.550833332999957],[35.333333333000155,-3.475833332999969],[35.22490143400006,-3.54634217399996],[35.17608877900011,-3.652081679999981],[35.079640250000125,-3.700662612999963],[34.87083357600005,-3.757257656999911],[34.73968059900005,-3.690183325999953],[34.81565946500007,-3.63256728399989],[34.967315592000034,-3.611594615999934],[35.079166667000095,-3.524166665999871],[35.04500000000013,-3.515833332999932],[34.93500000000017,-3.58833333299998],[34.756666666000115,-3.64249999999987],[34.53250000000014,-3.82666666699987],[34.449166667000156,-3.880833332999885],[34.3391666660001,-3.868333332999839],[34.21916666700014,-3.985833333999835],[34.176666666000074,-4.054166666999947],[34.02333333300004,-4.096666666999965],[33.954166666000106,-4.19416666699982],[33.98833333300013,-4.285],[34.004166667000106,-4.4225],[33.8925,-4.64666666699992],[33.891666667000095,-4.742499999999893],[33.852500000000134,-4.841666665999981],[33.89666666600016,-4.93333333399994],[33.955000000000155,-4.986666666999952],[33.93166666700017,-5.085],[34.01833333400015,-5.075833333999981],[34.09583333400002,-5.1075],[34.02666666700014,-5.033333332999973],[34.0325,-4.930833332999953],[34.09,-4.873333332999891],[34.09833333300003,-4.609166665999908],[34.191666667000106,-4.515833332999932],[34.20583333400015,-4.428333333999944],[34.16333333300008,-4.364999999999895],[34.24833333400011,-4.32416666599994],[34.270833334000145,-4.1825],[34.3275000000001,-4.161666665999974],[34.328333333000046,-4.160833332999971],[34.33166666700015,-4.159166666999965],[34.3325,-4.158333332999973],[34.3841666670001,-4.085833332999869],[34.501666666000176,-3.986666666999952],[34.54166666600008,-4.071666666999931]]],[[[30.419166666000024,-3.831666666999865],[30.348333333000085,-3.960833332999869],[30.34916666600003,-4.035],[30.476666666000142,-4.015],[30.500833333000173,-4.091666665999981],[30.47916666700013,-4.155833332999975],[30.519166667000036,-4.214166666999972],[30.64,-4.145833333999974],[30.70416666600005,-4.169166666999956],[30.73583333300013,-4.327499999999873],[30.652500000000146,-4.416666666999902],[30.669166666000137,-4.609166665999908],[30.73,-4.656666665999978],[30.739166666000187,-4.748333332999835],[30.85916666600008,-4.781666665999978],[30.87750000000011,-4.814999999999827],[30.84916666700019,-4.983333332999905],[30.875833333000173,-5.139166665999937],[30.946666667000045,-5.0375],[31.031666667000025,-4.993333332999953],[31.12416666600018,-4.993333332999953],[31.196666666000056,-5.054166666999947],[31.18833333300006,-5.148333333999972],[31.1325,-5.18333333299995],[31.050000000000182,-5.1725],[30.92750000000018,-5.309999999999889],[30.985000000000127,-5.374166666999827],[31.030833333000146,-5.4925],[31.03,-5.5775],[31.06500000000017,-5.66],[31.15416666699997,-5.692499999999825],[31.162500000000193,-5.606666665999967],[31.079166666000106,-5.57],[31.071666667000102,-5.451666665999824],[30.996666667000113,-5.288333332999969],[31.024166667000145,-5.270833332999928],[31.238333333000128,-5.27083333399986],[31.305833333000066,-5.333333332999871],[31.354166667000072,-5.515833332999932],[31.43333333400011,-5.556666666999945],[31.484166667000125,-5.486666666999895],[31.3675,-5.448333333999869],[31.391666667000038,-5.345833332999973],[31.278333333000035,-5.226666666999904],[31.268333333000044,-5.028333332999978],[31.402500000000146,-4.9775],[31.4575,-4.99166666699989],[31.490833333000182,-4.910833332999971],[31.565,-4.8575],[31.53833333300014,-4.7325],[31.663333333000026,-4.705833333999919],[31.725000000000193,-4.77916666699997],[31.820000000000164,-4.73916666599996],[31.65083333300015,-4.624166665999951],[31.645,-4.550833333999947],[31.77583333400014,-4.520833332999928],[31.73916666600013,-4.406666666999968],[31.769166666000046,-4.2],[31.70583333400009,-4.074166666999929],[31.62916666600006,-4.094166666999968],[31.610833333000073,-4.193333333999874],[31.624166667000168,-4.3525],[31.55250000000018,-4.414166666999904],[31.51416666700004,-4.37],[31.545,-4.259166665999942],[31.565,-4.093333332999919],[31.617500000000177,-3.951666666999927],[31.453333334000092,-4.003333332999944],[31.3925,-3.920833332999962],[31.359166667000068,-3.785833332999857],[31.2775,-3.7225],[31.21416666700003,-3.606666666999956],[31.1325,-3.58],[31.0525,-3.693333333999874],[30.950833333000162,-3.744166666999888],[30.806666667000172,-3.759166666999931],[31.058333333000178,-3.978333333999956],[31.11083333300013,-3.9625],[31.118333334000113,-3.840833333999967],[31.161666666000144,-3.789166666999961],[31.2558333340001,-3.793333332999907],[31.243333334,-3.8875],[31.288333333000026,-3.9725],[31.271666667000147,-4.094166665999978],[31.31333333400005,-4.195],[31.30500000000012,-4.439999999999884],[31.19583333300011,-4.420833332999962],[31.209166667000034,-4.580833333999976],[31.308333334000054,-4.619166666999888],[31.405,-4.706666666999979],[31.36583333300007,-4.77916666699997],[31.256666666000115,-4.764166666999927],[31.098333333000085,-4.908333333999906],[31.021666667000034,-4.927499999999895],[31.005833334000158,-4.840833332999978],[31.12500000000017,-4.7775],[31.138333333000162,-4.731666665999967],[31.0216666660001,-4.67],[30.9625,-4.601666666999961],[30.850833333000026,-4.603333333999899],[30.92333333300013,-4.6825],[30.84916666700019,-4.726666666999904],[30.785,-4.7025],[30.786666667000077,-4.511666666999872],[30.8325,-4.375],[30.769166666000103,-4.359166666999954],[30.76833333400009,-4.1775],[30.824166667000043,-4.130833332999941],[30.780833333000032,-4.078333333999979],[30.68666666600018,-4.124166666999884],[30.567500000000166,-3.9775],[30.490833333000182,-3.944999999999879],[30.474166667000134,-3.866666666999947],[30.419166666000024,-3.831666666999865]],[[31.215000000000146,-4.839166666999915],[31.259166666,-4.969166665999978],[31.161666666000144,-4.959166666999977],[31.215000000000146,-4.839166666999915]]]]},"properties":{"objectid":818,"eco_name":"Zambezian flooded grasslands","biome_num":9,"biome_name":"Flooded Grasslands & Savannas","realm":"Afrotropic","eco_biome_":"AF09","nnh":1,"eco_id":76,"shape_leng":385.23709389,"shape_area":16.8543767323,"nnh_name":"Half Protected","color":"#6A89A6","color_bio":"#BEE7FF","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":203151.73567098487,"percentage":17.568164214407094}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[32.78083333400008,-10.714166666999972],[32.74333333300018,-10.835833332999925],[32.7475,-10.935],[32.80666666600007,-11.053333332999955],[32.76166666600017,-11.089999999999861],[32.75166666700011,-11.208333332999871],[32.685000000000116,-11.258333332999939],[32.73166666700013,-11.428333333999888],[32.631666667,-11.430833332999896],[32.57333333300005,-11.389999999999873],[32.519166667000036,-11.505833332999885],[32.37000000000012,-11.4625],[32.295833333000076,-11.480833333999954],[32.25250000000011,-11.5475],[32.27916666700003,-11.6575],[32.18583333300012,-11.628333333999876],[31.99166666700006,-11.799166665999962],[31.954166667000095,-11.885],[31.890000000000157,-11.949999999999875],[31.75166666700011,-12.010833332999937],[31.70166666700004,-11.9625],[31.638333333000105,-12.080833333999976],[31.5975,-12.253333332999944],[31.55916666600001,-12.320833332999939],[31.66,-12.4],[31.55583333300018,-12.44499999999988],[31.547500000000184,-12.60666666599991],[31.473333334000188,-12.63249999999988],[31.477500000000134,-12.743333332999953],[31.422500000000127,-12.8575],[31.3525,-12.899166666999974],[31.329166667000095,-12.9675],[31.235000000000127,-13.059999999999889],[31.189166666000176,-13.185],[31.10416666700013,-13.336666666999918],[31.07583333300005,-13.431666665999956],[31.071666667000102,-13.569166665999887],[30.939166667000165,-13.735],[30.925000000000125,-13.805833332999953],[30.808333334000167,-13.9025],[30.740833333000126,-13.895833332999928],[30.641666666000106,-13.997499999999832],[30.63166666600017,-14.0675],[30.53666666600003,-14.143333333999976],[30.395833334000145,-14.295],[30.385000000000105,-14.418333332999964],[30.33333333400003,-14.55833333299995],[30.4625,-14.512499999999875],[30.483333333000132,-14.44416666599983],[30.565,-14.441666666999936],[30.635434310000107,-14.3425],[30.709166667000147,-14.2625],[30.75000000000017,-14.155833333999851],[30.875833333000173,-13.97],[31.06416666600012,-13.894166666999865],[31.159166667000136,-13.8875],[31.25,-13.783333332999916],[31.316666666000174,-13.85],[31.465833334000138,-13.715],[31.519166667000036,-13.725833333999958],[31.56416666700011,-13.846666666999965],[31.533333333000144,-13.894166666999865],[31.553333334000172,-13.903333332999978],[31.68000000000012,-13.915833332999966],[31.68666666700011,-14.1066666669999],[31.783333333000087,-14.08083333399992],[31.766666666000162,-14.163333333999901],[31.859166667000125,-14.088333333999913],[31.86,-14.085],[31.86,-14.084166666999977],[31.896666667000147,-13.988333333999947],[31.951666666000108,-14.002499999999884],[31.98833333400006,-13.964166666999972],[31.997500000000173,-13.805833332999953],[31.939166666,-13.61416666599996],[32.170833334000065,-13.358333332999905],[32.291666666000026,-13.28],[32.2625000000001,-13.170833332999905],[32.18916666700005,-13.131666666999934],[32.256666666000115,-13.059999999999889],[32.310833333,-13.100833332999912],[32.32250000000016,-12.948333332999823],[32.265,-12.958333332999871],[32.2625000000001,-12.80833333299995],[32.297500000000184,-12.709166666999977],[32.50583333399999,-12.549166666999895],[32.544166666000024,-12.491666665999958],[32.61,-12.25583333399993],[32.593333333000146,-12.169166666999956],[32.67000000000013,-12.110833332999903],[32.87750000000011,-11.774999999999864],[32.961666667000145,-11.61],[33.135000000000105,-11.372499999999889],[33.188333334000106,-11.1175],[33.1400000000001,-10.944166666999877],[33.165833332999966,-10.889166666999927],[33.04500000000013,-10.798333333999949],[32.9625,-10.675833332999957],[33.130833333000055,-10.36333333399989],[33.07916666700015,-10.283333332999973],[33.0833333330001,-10.266666666999981],[33.0833333330001,-10.250833332999889],[33.095,-10.216666666999913],[33.1025,-10.191666666999879],[33.11416666600013,-10.1575],[33.11833333300018,-10.117499999999893],[33,-10.25],[32.92750000000018,-10.375],[32.91,-10.475833332999969],[32.82916666699998,-10.470833332999973],[32.78666666600009,-10.544166665999967],[32.829166666000106,-10.64333333299993],[32.78083333400008,-10.714166666999972]],[[32.90416666700003,-10.748333332999948],[32.98750000000018,-10.75416666599989],[33.110000000000184,-10.887499999999875],[32.98583333400012,-10.9325],[32.900833333000094,-10.901666665999926],[32.90416666700003,-10.748333332999948]],[[31.86750000000012,-13.623333332999948],[31.87166666700017,-13.7575],[31.81083333300012,-13.849166666999963],[31.7650000000001,-13.83416666699992],[31.829166667000038,-13.655833332999862],[31.86750000000012,-13.623333332999948]],[[33.018333333000044,-10.311666665999951],[33.0425,-10.338333332999866],[33.01916666700009,-10.455],[32.948333334000154,-10.405833332999975],[33.018333333000044,-10.311666665999951]]],[[[32.7325,-13.49166666699989],[32.679166667000175,-13.413333332999969],[32.52833333300015,-13.43666666699994],[32.339166667000086,-13.305833332999953],[32.2925,-13.345833332999973],[32.31583333300017,-13.45083333399998],[32.26,-13.47],[32.269166667000036,-13.622499999999889],[32.38666666600017,-13.608333332999962],[32.52166666700009,-13.619166666999888],[32.56916666600017,-13.530833332999975],[32.66416666600014,-13.549166666999952],[32.7325,-13.49166666699989]]],[[[29.079166667000038,-15.051666665999903],[29.185833333,-15.0975],[29.305000000000177,-15.0375],[29.340833333000035,-14.976666666999904],[29.469166667000025,-14.965833332999978],[29.672500000000127,-14.85916666699984],[29.711666667000088,-14.94416666699982],[29.785,-14.914166665999971],[29.760833333000107,-14.809166666999943],[29.90083333300015,-14.73],[30.094166667000138,-14.715833333999967],[30.03666666700019,-14.597499999999854],[30.05333333300007,-14.4675],[30.128333333000057,-14.395],[30.304166667,-14.399166666999918],[30.3333333330001,-14.2625],[30.43,-14.1525],[30.55166666600013,-14.06166666699994],[30.695833334000156,-13.895],[30.670000000000186,-13.7625],[30.56250000000017,-13.78416666599992],[30.5875,-13.69],[30.68666666600018,-13.714166665999926],[30.774166666999974,-13.541666666999959],[30.610000000000127,-13.52583333399997],[30.50666666700016,-13.669166666999956],[30.529166666000094,-13.729166666999959],[30.3625,-13.8575],[30.20916666700009,-14.02583333299998],[30.11,-14.086666665999928],[30.112500000000125,-14.21666666599998],[30.038333334000185,-14.289166665999915],[29.92000000000013,-14.461666665999871],[29.872500000000173,-14.5725],[29.77416666700003,-14.564166665999892],[29.71333333300015,-14.604166666999902],[29.610833333000073,-14.6075],[29.429166667000118,-14.685833332999948],[29.31500000000011,-14.648333332999925],[29.03,-14.701666666999927],[28.95166666700004,-14.783333333999963],[28.90166666700003,-14.78583333399996],[28.7775,-14.858333332999962],[28.839166667000086,-14.9025],[28.796666667000068,-15.001666666999938],[28.9525,-14.992499999999893],[29.079166667000038,-14.9575],[29.079166667000038,-15.051666665999903]]],[[[34.610215808000135,-16.05416666699989],[34.52250000000015,-16.0025],[34.33666666600004,-15.829166665999878],[34.25881355200005,-15.820833333999872],[34.15107969600007,-15.74946489399997],[34.12471613200006,-15.587191114999882],[34.159514778000016,-15.437777677999975],[34.126197012000034,-15.400419357999908],[34.0013926150001,-15.482343276999927],[33.71348636000016,-15.48471924599994],[33.6279627290001,-15.535719976999928],[33.477805709999984,-15.738138922999951],[33.34305376600008,-15.775477399999943],[33.27393430899997,-15.740524812999922],[33.315189583000176,-15.460572616999912],[33.22468230900017,-15.319579247999968],[33.163022525000144,-15.301095604999944],[33.08992247000003,-15.221156620999977],[33.06604678000019,-15.08699933899993],[32.93427633700014,-15.090197061999902],[32.98548705200011,-14.990591411999901],[32.99642185200014,-14.91066234899995],[32.83730059200019,-14.876100796999935],[32.762703865000105,-14.711411361999922],[32.67916658500019,-14.717024739999943],[32.659788806999984,-14.972879915999954],[32.54392891100002,-14.952381572999968],[32.528022312000076,-15.043958190999831],[32.431058411000095,-15.033503580999877],[32.380341322000106,-15.070851978999883],[32.54394470300008,-15.223903780999876],[32.460908945000085,-15.303021009999952],[32.21576648000013,-15.313836889999891],[32.11780742900004,-15.292135679999888],[31.97460066400015,-15.301758613999937],[31.660342689,-15.345502458999874],[31.472883358000104,-15.397696135999922],[31.33564354100008,-15.406918113999893],[31.266528032000167,-15.439846078999892],[31.09348652400007,-15.451473790999898],[30.97613785100009,-15.48198610199995],[30.797129395000127,-15.494014768999932],[30.673312251000027,-15.451424183999961],[30.54700723400009,-15.38071709999997],[30.410754671000063,-15.265424573999951],[30.223333333000028,-15.02916666599998],[30.111666666000133,-15.11583333399983],[30.119166667000115,-15.18333333299995],[29.92416666700018,-15.276666665999926],[29.795,-15.4125],[29.653333334000024,-15.59],[29.497500000000173,-15.605833332999907],[29.372500000000116,-15.665833332999966],[29.263333333000105,-15.692499999999882],[29.15916666600009,-15.759166666999874],[28.8,-15.800833333999833],[28.6275,-15.93],[28.608333334000122,-16.060833332999948],[28.64416666700015,-16.115833333999888],[28.46,-16.238333332999957],[28.35333333300008,-16.2775],[28.331666667000093,-16.3225],[28.19750000000016,-16.43333333399994],[28.03416666600009,-16.441666665999946],[27.90750000000014,-16.494166666999945],[27.875833334000163,-16.5375],[27.74,-16.61333333399989],[27.775,-16.67833333399983],[27.65333333300015,-16.83083333399992],[27.56500000000011,-16.876666666999938],[27.556666667000115,-16.947499999999877],[27.614166666000187,-16.994166666999945],[27.444166667000104,-17.0425],[27.362500000000182,-17.11],[27.333333333000155,-17.1825],[27.366666667,-17.2291666669999],[27.30083333400006,-17.285],[27.217500000000143,-17.29833333299996],[27.126666667000052,-17.40333333299992],[26.94583333300011,-17.6475],[26.846666667000193,-17.814999999999884],[26.616666667000175,-17.885833332999937],[26.49083333300007,-17.9783333339999],[26.406666667000138,-17.939999999999884],[26.30583333300018,-17.937499999999886],[26.206666667000093,-17.89416666699998],[26.159807494000063,-17.914166666999904],[26.14602130000003,-18.012677581999924],[26.085858188000145,-18.078944389999947],[25.952101394000124,-18.12752946599994],[25.826795474000164,-18.135949533999906],[25.513532649000126,-18.19093997799996],[25.450902028000087,-18.212118714999917],[25.518465519000074,-18.36280878799994],[25.421144565000077,-18.37868354699998],[25.376050195,-18.441763486999946],[25.281572867000136,-18.462603730999945],[25.290708248999977,-18.542436443999975],[25.388096873000052,-18.616953624999894],[25.47672443600004,-18.561558999999875],[25.476358380000136,-18.492722864999962],[25.578598982000017,-18.442563684999982],[25.696460662000106,-18.575769356999956],[25.76860079800008,-18.611829091999823],[25.810418936000133,-18.697066713999902],[25.893956216000106,-18.69145333599988],[26.17141340200004,-18.570988073999956],[26.215172341000027,-18.590674583999828],[26.15948740100015,-18.707551088999935],[26.22512778300006,-18.771021128999905],[26.34545795600019,-18.706368064999936],[26.57467803100002,-18.515606595999884],[26.826277124000057,-18.374251956999956],[26.812348980000138,-18.28468011699988],[26.671124617000146,-18.181035145999886],[26.71587081000007,-18.07620715199988],[26.92471400900007,-18.062173705999953],[27.079353149000042,-17.978245009999966],[27.14249776200012,-17.87783744799998],[27.25537221000019,-17.86459599199992],[27.287702722000063,-18.026468815999976],[27.245440455000107,-18.09153275799997],[27.28224124400009,-18.168254174999845],[27.362295501,-18.123277698999857],[27.527881284000046,-18.163061595999977],[27.566166901000145,-18.120891808999886],[27.509474968000177,-18.022880058999874],[27.56217840800008,-17.9401443079999],[27.56316566100014,-17.81562980299998],[27.536312419000183,-17.783493827999962],[27.342384617000164,-17.76258460799994],[27.327461323000136,-17.661766168999918],[27.407018005000054,-17.611166393999895],[27.564145019000023,-17.55535419499995],[27.809777163000035,-17.41440051199993],[28.000711621000164,-17.26580882999997],[28.12600964500001,-17.121627658999955],[28.113068755000086,-16.907541314999946],[28.223952904000043,-16.87180665999989],[28.294565084999988,-16.92362914599994],[28.414397683000118,-16.853352781999945],[28.517316689000154,-16.659764779999932],[28.606327291000127,-16.716007698999874],[28.69085972000005,-16.721640919999913],[28.794284196000035,-16.669437321999965],[28.894723225000178,-16.583493925999903],[28.90665317400004,-16.514811462999944],[28.849965188000112,-16.484680264999895],[28.84945971800005,-16.34329586199982],[28.87232841500014,-16.26256488799993],[28.94889964900011,-16.178225313999974],[29.13834533000005,-16.08064428399996],[29.32083286200009,-16.040098162999982],[29.440171833000136,-16.032079050999982],[29.616198790000055,-16.054191137999965],[29.792727269000068,-16.1498070749999],[29.994620215000054,-16.328569641999934],[30.10550831200004,-16.360715538999955],[30.26313290000013,-16.31052664099991],[30.436174408,-16.298898928999904],[30.575408472000106,-16.38005070099996],[30.745468480000056,-16.40256374299986],[30.995085170000095,-16.374477008999975],[31.280002028000183,-16.270480689999943],[31.591772130000038,-16.198620346999917],[31.74044826900007,-16.18297315799998],[31.62308380500008,-15.941963259999909],[31.64893795000006,-15.89497208499995],[31.791149566000115,-15.874102551999897],[31.90850218600019,-15.911470792999921],[31.99402581700008,-15.860470061999933],[31.9751219260001,-15.71466522499992],[32.03876806200003,-15.68776151499992],[32.15363675600008,-15.764893809999876],[32.30431109000011,-15.907500922999873],[32.45348480400014,-15.897477033999962],[32.55840200500006,-15.862143334999814],[32.70310149400018,-15.869390299999907],[32.72001113900012,-15.924821385999905],[32.541010578000055,-16.072611156999926],[32.50969100700007,-16.193507138999962],[32.53456579400006,-16.406791571999975],[32.650927213000045,-16.5007937659999],[32.80110002400005,-16.569897027999957],[32.99304147600003,-16.6361935999999],[33.06415123100015,-16.693639385999973],[33.171556306000184,-16.68642218499997],[33.17056510400005,-16.74305613799993],[33.074604248000185,-16.87960923099996],[33.171070575000044,-16.884440540999947],[33.251618458000166,-16.777206812999907],[33.34758720999997,-16.776414822999925],[33.402288844000054,-16.85193337399994],[33.53455686200016,-16.85435895099988],[33.68970147300013,-16.911814656999923],[33.9149527940001,-16.87970844599988],[34.012907896000115,-16.833529103999922],[34.10290969900012,-16.833138068999915],[34.276452730000074,-16.895014208999953],[34.39628927600012,-16.892618396999865],[34.49225408000012,-16.823945855999966],[34.53252604800019,-16.736388715999908],[34.5737852690001,-16.52431707099987],[34.5921639500001,-16.189334744999883],[34.610215808000135,-16.05416666699989]],[[30.17,-15.454166666999981],[30.25833333300011,-15.6275],[29.956666666000103,-15.6175],[30.01083333300005,-15.54833333299996],[30.165000000000134,-15.531666666999968],[30.17,-15.454166666999981]]],[[[25.983333333000132,-16.67666666699995],[25.873333333000176,-16.728333332999966],[25.86166666700018,-16.6725],[25.628333333000057,-16.71],[25.573333334000097,-16.7925],[25.431666667000115,-16.811666666999884],[25.378333333000114,-16.89166666699998],[25.280000000000143,-16.921666666999897],[25.26666666600005,-16.9825],[25.1275,-17.119166666999888],[25.116430740000055,-17.190833332999944],[25.19000000000017,-17.230833333999954],[25.130833333000055,-17.329166666999924],[25.08,-17.4975],[25.183333333,-17.540833333999956],[25.23666666700018,-17.6],[25.188333334000106,-17.7275],[25.386666667000043,-17.595],[25.392500000000155,-17.55166666699995],[25.5150000000001,-17.48],[25.52916666700014,-17.415],[25.47666666700019,-17.337499999999864],[25.47583333400007,-17.33833333299998],[25.42583333300007,-17.335],[25.425000000000125,-17.33416666699992],[25.4,-17.29166666699996],[25.474166667000077,-17.16666666699996],[25.581666666,-17.0725],[25.54916666600019,-16.97916666699996],[25.6458333330001,-16.97],[25.661666667000077,-16.9133333339999],[25.744166667000172,-16.819166666999877],[25.778333333000035,-16.905],[25.858333333000076,-16.796666666999954],[25.958333333000155,-16.755833332999828],[26.000833333000173,-16.689166666999938],[25.983333333000132,-16.67666666699995]]],[[[23.363333333000185,-17.06166666699994],[23.285833334000188,-17.037499999999852],[23.098333334000188,-17.08],[23.04000000000019,-17.175],[23.04416666700007,-17.179166665999958],[23.060833333000062,-17.21166666599993],[23.06500000000011,-17.21333333299998],[23.1491666660001,-17.225],[23.154166666000094,-17.36],[23.318333333000112,-17.455],[23.363333334000117,-17.3775],[23.316666666000117,-17.256666665999944],[23.38416666700016,-17.1025],[23.363333333000185,-17.06166666699994]]],[[[28.54867179200005,-17.149793764999913],[28.45320061500007,-17.156209053999874],[28.330880143,-17.19836891899996],[28.29408725000019,-17.257408604999966],[28.350779183000157,-17.35542035499998],[28.148905978000073,-17.51606054799987],[28.08376711800014,-17.5260943589999],[27.97985296300004,-17.708435760999976],[27.800358775000063,-17.91848278499998],[27.805338470000038,-18.04259633399988],[27.894846647000065,-18.104462551999973],[28.076342977000024,-18.120550382999966],[28.134519738999984,-18.099670927999966],[28.195674052000072,-17.97677016699987],[28.20660490400013,-17.828960552999945],[28.261788322000086,-17.638580195999964],[28.312501462,-17.53335124599994],[28.359241901000132,-17.518897001999903],[28.48206784400014,-17.618121539999834],[28.532303149000086,-17.846672048999892],[28.595961129000045,-18.023409994999952],[28.6526491140001,-18.053541192999944],[28.79485678200018,-17.96479110699994],[28.955956497000102,-17.81820420299988],[29.069818199000167,-17.68044824299983],[29.15981210600006,-17.544296104999944],[29.20455829800011,-17.43946810999995],[29.149852716000055,-17.29606900699997],[29.02006862400009,-17.253879376999976],[28.93453709700009,-17.169119004999914],[28.837573196000108,-17.158664394999903],[28.710273029000064,-17.076710711999908],[28.54867179200005,-17.149793764999913]]],[[[25.10976407300012,-17.1975],[25.05416666600007,-17.183333333999883],[24.97416666700019,-17.08916666599987],[24.93916666700011,-17.185],[24.78,-17.18833333399988],[24.84333333300009,-17.26166666699993],[24.994166667000115,-17.314999999999827],[25.060833334000108,-17.28083333399985],[25.10976407300012,-17.1975]]],[[[23.671616738000182,-18.258142142999873],[23.805548488000113,-18.298451674999967],[23.93008397400007,-18.19635110199988],[24.01284096800009,-18.095525994999946],[24.15085326700006,-17.979351557999962],[24.222644920000107,-17.82898410699994],[24.351653171000066,-17.79297489999982],[24.452237437000065,-17.818012155999895],[24.508398963000104,-17.71470883199993],[24.459143246000053,-17.641630957999894],[24.38889989900008,-17.61833465799998],[24.35201089100019,-17.53834257199992],[24.287312036000117,-17.546714916999974],[24.114149205000047,-17.71297015499988],[24.031423550000056,-17.733335540999974],[23.91263434400014,-17.701300043999936],[23.82351305200001,-17.70736944999993],[23.63700785300017,-17.840615000999946],[23.589567684000087,-17.899601746999963],[23.477429533000077,-17.905076008999856],[23.366704343000038,-18.02424836499995],[23.364469771000074,-18.090646850999917],[23.38793800000019,-18.163447759999883],[23.46267564100009,-18.204075446999923],[23.671616738000182,-18.258142142999873]],[[24.31020094600018,-17.586376526999913],[24.237309645000153,-17.648594735999836],[24.17255198000015,-17.75546275199997],[24.125458450000053,-17.713030715999935],[24.20622435900009,-17.63934138899998],[24.31020094600018,-17.586376526999913]]],[[[24.624669806999975,-17.925751813999966],[24.583601470000076,-17.860387041999957],[24.490388519000078,-17.793720648999965],[24.407625503000133,-17.866911397999843],[24.544613286000015,-17.962628836999897],[24.624669806999975,-17.925751813999966]]],[[[22.29890742600014,-18.675284972999975],[22.39983627600003,-18.752986052999916],[22.509445957000082,-18.88568567699997],[22.688054427000168,-18.81370490699993],[22.78337987900005,-18.70888257699994],[22.939320810000027,-18.60213639999995],[23.061965969000028,-18.69930486499993],[23.16558555300014,-18.70510073099996],[23.37530185600008,-18.522571260999882],[23.457523102000152,-18.509535679999942],[23.4795419350001,-18.425360820999913],[23.24670107700007,-18.001271278999923],[23.17814494800001,-18.017947186999947],[23.123963501000105,-18.106252738999956],[23.04701759600016,-18.111639160999914],[23.00539761500005,-18.18354990699993],[22.916019276999975,-18.230199219999975],[22.75910767500011,-18.3461518659999],[22.647801565000123,-18.349523120999947],[22.553754991000176,-18.382590771999958],[22.424628126000187,-18.39231494699993],[22.32684288300004,-18.35301894599985],[22.32370757100017,-18.431265288999953],[22.170363436000116,-18.39702060699983],[22.115249465000147,-18.45598385699998],[22.29890742600014,-18.675284972999975]]],[[[24.949706747000164,-18.061392453999872],[24.865084249000176,-18.223798906999946],[24.799791001000187,-18.260333594999906],[24.78309309399998,-18.331120471999952],[24.724426941000104,-18.383414710999944],[24.74762212100012,-18.43769739499993],[24.85214570100004,-18.386835520999966],[24.875093587000038,-18.33088054899997],[24.960590031000038,-18.280455030999974],[25.055838201000086,-18.264064605999977],[25.08011880700019,-18.192165244999842],[25.070136024000135,-18.077634006999972],[24.99947823000008,-18.025808607999977],[24.949706747000164,-18.061392453999872]]],[[[24.405772881000132,-18.180535260999932],[24.33913970800006,-18.203155703999983],[24.26871438400019,-18.155811503999928],[24.293776024000067,-18.098576027999968],[24.211572298000192,-18.03725939599991],[23.94548136500015,-18.22890397499998],[23.86413592300005,-18.33104708899998],[23.725054,-18.42955748299994],[23.562784866000072,-18.570380734999958],[23.715049840000063,-18.587536500999875],[23.818925621000176,-18.532480271999873],[23.911929843,-18.54913880599986],[24.018055661000176,-18.470959377999975],[24.131196269999975,-18.37922948499994],[24.191035978000116,-18.357490216999963],[24.311745670999983,-18.24110894099988],[24.405772881000132,-18.180535260999932]]],[[[23.960188390000155,-19.185502976999942],[23.905643032000057,-19.114609076999955],[23.92786404300017,-19.05551351399987],[23.890844439000148,-18.992885439999895],[23.79453982200016,-18.94834971399996],[23.849177154000017,-18.889663888999962],[23.802880669000047,-18.81486528899984],[23.85644767600013,-18.680920437999873],[23.823154529000135,-18.612644969999906],[23.892421219000028,-18.572767942999974],[23.819886975000145,-18.564157331999922],[23.730342689000054,-18.616912880999905],[23.50357496300012,-18.64615278699989],[23.449451241000133,-18.608462619999898],[23.316605030000176,-18.618840755999884],[23.166073108000035,-18.749813908999897],[22.94453343900011,-18.817116973999873],[22.87586359300019,-18.869825076999916],[22.804035165000073,-18.96929231899992],[22.970755393000047,-18.976833840999973],[23.192872636,-19.04100622099992],[23.212892802000056,-19.099827523999977],[23.337626417000024,-19.053721958999972],[23.446429823000074,-19.056296088999886],[23.7516764880001,-19.16754071099996],[23.70034459400017,-19.210140279999905],[23.485817161000057,-19.218974095999954],[23.428192487000103,-19.280792110999926],[23.462632405000022,-19.32615857899998],[23.59461360400013,-19.40800548399983],[23.68849303400009,-19.42964074199989],[23.695370730000036,-19.499265441999967],[23.654656191000072,-19.6136057949999],[23.559275777000096,-19.720942942999955],[23.676031694000073,-19.76143488799994],[23.546325803000116,-19.892647835999924],[23.432603265000182,-20.03414030399989],[23.45746281200013,-20.08133990799996],[23.684301499000128,-19.825299115999883],[23.85495249100012,-19.60336569599997],[23.895661105000045,-19.42893999699993],[23.88116700100005,-19.33742126999988],[23.95952013200008,-19.243388714999924],[23.960188390000155,-19.185502976999942]]],[[[26.372417746999986,-19.360344708999946],[26.102394511000114,-19.48374602199982],[25.95589309800016,-19.519766035999908],[25.728863592000096,-19.522666122999965],[25.71258702000017,-19.45519847099996],[25.557209415000102,-19.59951635899995],[25.421678369,-19.544573053999898],[25.347451491000015,-19.458215091999932],[25.221682204,-19.53498260799995],[25.083122931000105,-19.589059300999907],[24.923761849000186,-19.601663799999983],[24.91623826800003,-19.49977096999993],[24.853507578,-19.484864140999946],[24.839836850000097,-19.40547525799991],[24.888952902000028,-19.32155501699998],[24.89270767900007,-19.231139088999896],[24.965328507000038,-19.13631736899987],[24.90213319000003,-19.071585119999952],[24.76888800500018,-19.263315895999824],[24.653197430000034,-19.120138499999882],[24.707421784000076,-19.31254824599995],[24.653194670000175,-19.38587415599983],[24.588305985000034,-19.398096155999895],[24.51614044900009,-19.268091595999977],[24.448934356000052,-19.262175771999978],[24.38669223100004,-19.347317724999982],[24.25090836300012,-19.383121917999915],[24.310100047000105,-19.55881392999993],[24.261947080000027,-19.59755076899995],[24.30809330700015,-19.748939451999945],[24.268515203000163,-19.892569392999917],[24.302775485000154,-19.940990652999915],[24.398707672000057,-19.866136163999954],[24.44107731500003,-19.87118660899995],[24.5993298840001,-19.742783193999912],[24.7058871320001,-19.688903548999917],[24.72926846700011,-19.726529536999976],[24.59112616900012,-19.841301231999978],[24.502141601000176,-19.95742602399997],[24.627798261,-20.00420699199998],[24.60197997400013,-20.169717662999915],[24.70809902700006,-20.22933975099994],[24.798436903000095,-20.36810828399996],[24.841913932000182,-20.52570486299993],[24.886663247,-20.57806635599991],[25.03156608800009,-20.547519263999902],[25.09901738500014,-20.492925200999878],[25.137232494000102,-20.54790934899995],[25.284381598000095,-20.540181238999935],[25.361081455000146,-20.471569901999885],[25.370442202000106,-20.410407904999886],[25.495535349000136,-20.287544315999924],[25.668832165000026,-20.234741047999933],[25.9282285270001,-20.29978747399997],[26.05854245300003,-20.21228222099984],[26.07285576600009,-20.295834194999884],[26.14619581500017,-20.31338099499993],[26.249808392000148,-20.268152233999842],[26.350672483000096,-20.315141586999914],[26.343286123000155,-20.411969641999974],[26.208639988000186,-20.64699595299993],[26.19702727300006,-20.778172063999932],[26.255455940000047,-20.96494227599993],[26.316745210000192,-20.98153909599995],[26.405765520999978,-21.058773458999838],[26.415243556000064,-21.14247803099994],[26.305417004000105,-21.28964677299996],[26.27253722500018,-21.231961906999913],[26.025986788000125,-21.230631080999842],[25.835755978000122,-21.172920593999947],[25.819814069000074,-21.140884101999916],[25.642132627000137,-21.131878656999902],[25.469069032000107,-21.163001195999982],[25.276481157000035,-21.128484913999955],[25.27424050000019,-21.078451807999897],[25.123720175000187,-21.038891311999976],[24.990312069000083,-21.205239769999935],[24.82909626200012,-21.216110375999904],[24.662784210000098,-21.347725643999865],[24.54024296700004,-21.39342442399993],[24.617015296000034,-21.484245390999945],[24.70801379200003,-21.41869743799998],[24.81652837600012,-21.37794300799993],[24.877658407000126,-21.411113804999843],[25.028329785000096,-21.41166536999998],[25.316294907000156,-21.522549576999893],[25.41498374200006,-21.51846871899994],[25.669237270000053,-21.443187213999977],[25.8815557260001,-21.45298620899996],[26.157793097000138,-21.410149580999928],[26.320787189000043,-21.432857085999956],[26.32711268600019,-21.530421032999982],[26.384489628000097,-21.550245617999963],[26.420541644000025,-21.66614365399994],[26.35819843700017,-21.80574672599988],[26.37692126100012,-21.934932375999892],[26.499121867000042,-21.974686169999927],[26.509280442999966,-22.067377369999917],[26.720634315000154,-22.09873491299993],[26.773132660000044,-22.075814260999948],[26.885137336000128,-22.109470395999892],[26.822696740000083,-22.198217770999975],[26.7048850220001,-22.31030633399996],[26.651393407000057,-22.41275320299991],[26.521763174000114,-22.434172815999943],[26.470322667000175,-22.497240958999953],[26.380028270000082,-22.508274703999973],[26.35495383300008,-22.588637303999917],[26.26881007100019,-22.647390805999862],[26.283129124000027,-22.74241905799994],[26.342278944000043,-22.81997189699996],[26.442683256000066,-22.780797860999883],[26.355405626000106,-22.724856718999945],[26.364606945000162,-22.66640501199987],[26.472780609000154,-22.689824029999897],[26.49629516300007,-22.728278622999937],[26.610995681000077,-22.73341077699996],[26.634625513000174,-22.789483157999882],[26.729732895000154,-22.748962353999957],[26.80662068400011,-22.782990482999935],[26.96404757800019,-22.789634933999935],[26.95430074000018,-22.889471045999983],[27.064469705000135,-22.871908723999923],[27.067102632000115,-22.81310748999988],[27.150182619000134,-22.80778244699991],[27.22320126700015,-22.85541568699989],[27.249831132000054,-22.94224554899995],[27.373482803000172,-23.03763571399992],[27.465603111000064,-23.1366291249999],[27.611397872000055,-23.114144493999902],[27.637775385000168,-22.989338973999963],[27.59903709600013,-22.901609359999952],[27.697198286000173,-22.863448915999868],[27.812739764000128,-22.957571427999937],[27.938846657,-22.976381427999968],[28.039596558000085,-22.90995979299987],[28.04064750700013,-22.83434104899993],[28.16217994700014,-22.756053924999833],[28.209922791000167,-22.66420936599991],[28.341682434000063,-22.57463836699992],[28.572336197000027,-22.55874443099998],[28.614826202000188,-22.581228255999918],[28.813028336000173,-22.54409027099996],[28.84646606400014,-22.602561950999927],[28.96959114100008,-22.63638114899993],[28.960601807000046,-22.72833061199998],[29.102016449000075,-22.717882155999916],[29.200239182000132,-22.833164214999897],[29.284372330000167,-22.827419280999948],[29.378461838000078,-22.891838073999907],[29.422885895000036,-22.95668411299988],[29.511220932000185,-22.92473792999988],[29.867633820000037,-22.87200164799998],[30.01895904500003,-22.771396636999896],[30.03070831300016,-22.718935012999907],[30.182443619000026,-22.69098281899994],[30.413526535000074,-22.606178283999895],[30.537820816000135,-22.58949470499988],[30.57971000700013,-22.553615569999977],[30.748659134000093,-22.538610457999937],[30.77409362800006,-22.471794127999942],[30.868530273000033,-22.420249938999973],[31.03008461000013,-22.38961601299991],[31.092664719000027,-22.499300002999973],[31.08078765900018,-22.68422889699997],[31.043956757000103,-22.781976699999916],[31.04857444800018,-22.85994148299983],[30.866020203,-22.922225951999962],[30.75661087000003,-23.008764266999947],[30.753229141000077,-23.069124221999914],[30.68495750400018,-23.11978530899995],[30.724159241000052,-23.18211746199995],[30.684850693000158,-23.240930556999956],[30.759050369000192,-23.30293655399987],[30.711593628000116,-23.392452239999898],[30.615741730000025,-23.414897918999884],[30.55476188700004,-23.51738929699991],[30.488920212000096,-23.524906157999965],[30.398166656000114,-23.667673110999942],[30.497091293000153,-23.733871459999932],[30.538423538000075,-23.830636977999973],[30.78609275800011,-23.823871612999937],[30.831218719,-23.750854491999917],[30.998624802,-23.793224334999877],[30.859680176000097,-23.882732390999934],[30.77984809900005,-23.889797210999973],[30.68540573100006,-23.98742675799997],[30.77251243600017,-24.057773589999897],[30.945598602000018,-24.074914931999956],[31.051404953000144,-24.132392882999966],[31.113086700000167,-24.092172622999954],[31.360012054000094,-24.248003005999976],[31.411262512000064,-24.356513976999963],[31.518823624000163,-24.365356444999918],[31.628343582000127,-24.235801696999943],[31.681535721000103,-24.02133941699998],[31.749570847000086,-23.943658828999958],[31.67826843300014,-23.905118941999888],[31.652004242000146,-23.816776275999928],[31.697298049999972,-23.722524642999815],[31.76865768400006,-23.885206222999955],[31.880807877000166,-23.95299529999994],[31.896519991000048,-24.078402534999952],[32.104404361000036,-24.230677239999977],[32.343583827000145,-24.2881428689999],[32.593373159000066,-24.26200723999989],[32.80504331700013,-24.213006554999822],[32.96446044400011,-24.074187603999974],[33.093890778000116,-23.80951264099997],[33.089156606000074,-23.755018794999955],[33.12861915200011,-23.55131914699996],[33.210696654,-23.3995207559999],[33.231218808,-23.197117400999957],[33.300143990000095,-23.040240017999963],[33.29076486100007,-22.985671097999955],[33.35737670400016,-22.653104426999903],[33.43692549100018,-22.466743546999908],[33.54978809500017,-22.24986043599995],[33.63729018100008,-22.017711247999955],[33.62335808900019,-21.860258855999973],[33.53682351700007,-21.628490780999982],[33.594498756,-21.53410747399988],[33.704387755000084,-21.487126219999936],[33.9152173060001,-21.427705421999974],[34.1986453880001,-21.374719755999934],[34.28566174300005,-21.340588923999917],[34.25781335100015,-21.297206347999975],[34.25780545500004,-21.161445244999868],[34.13299711000013,-21.17548861199998],[33.87492954600003,-21.243740353999954],[33.64719429900009,-21.315610618999983],[33.44481562300001,-21.334866408999915],[33.21956035400012,-21.29909206799988],[33.04005432200006,-21.305497435999882],[32.89336848200014,-21.343637823999927],[32.80684575400011,-21.31551140399995],[32.716342428000075,-21.24239858599998],[32.44085974900014,-21.11383483999998],[32.3438958480001,-21.10338022999997],[32.208148755000025,-21.129472107999902],[32.05997413900002,-21.218623148999882],[31.922244643000113,-21.35798293099998],[31.823788018000073,-21.33065842199983],[31.80439050000001,-21.247110837999855],[31.825268898,-21.143886665999958],[31.919740978000164,-21.058344224999928],[32.15990769600006,-20.991295348999927],[32.500023764,-20.96844088099988],[32.48907712100015,-20.844728286999953],[32.31603166400015,-20.788475446999882],[32.25585670800007,-20.651100599999893],[32.27822783000005,-20.564746326999966],[32.26826054400016,-20.180758124999898],[32.37714255100019,-19.918888615999947],[32.421880847000125,-19.678299517999903],[32.45121406700014,-19.6027908879999],[32.47556759300005,-19.40316870999993],[32.403462687000115,-19.334476325999844],[32.326891453000144,-19.41881589899998],[32.25031627100003,-19.435274920999973],[32.00118136400016,-19.197462746999975],[31.84802705300018,-19.162500239999872],[31.786868791000074,-19.217520447999902],[31.797811486000114,-19.273352488999876],[31.944011596000166,-19.43323045699998],[31.986783281000157,-19.577431470999898],[31.845570763000183,-19.677428155999905],[31.660097782000094,-19.684234478999883],[31.362251877000062,-19.77778610999991],[31.28966124100009,-19.90711208199997],[31.333420180000076,-19.92679859099991],[31.55817392600011,-19.889069079999956],[31.682986219000043,-19.942906264999976],[31.79487341300012,-20.054179313999953],[31.801839459000064,-20.132905509999887],[31.73024397300003,-20.27347807999996],[31.632300714000166,-20.523299078999912],[31.50402119,-20.701621002999957],[31.257887522000033,-20.76907083499998],[31.10921138300006,-20.784718023999915],[30.98191911300006,-20.838525444999902],[30.844679296000038,-20.847747422999873],[30.65771753900009,-20.905564398999957],[30.342460467000137,-20.87018109299993],[30.178363460000185,-20.779386542999873],[30.105753084000014,-20.56930975499995],[29.98143441800005,-20.453215317999934],[29.932206105000148,-20.43955306399988],[29.915801931000146,-20.525506381999946],[29.939180047000036,-20.654040362999865],[29.773602159,-20.750017570999944],[29.565252586000042,-20.701793763999945],[29.59459765000014,-20.829926789999945],[29.530457888000058,-20.919087751999882],[29.47775050100006,-20.93394295199994],[29.311185359999968,-21.15443466399995],[29.243562575000112,-21.204232527999977],[29.026268501000175,-21.25843098199988],[28.80598897900012,-21.278889638999942],[28.666261288000157,-21.259995118999825],[28.50913427500012,-21.315807316999837],[28.420131569000034,-21.395325501999935],[28.256540031999975,-21.445915355999944],[28.167035804000193,-21.45192968999993],[27.93880298300013,-21.518176654999934],[27.777695371000164,-21.529002455999944],[27.620066835000102,-21.5113108029999],[27.411035129000084,-21.451730543999872],[27.209066982000138,-21.18040398799991],[27.19724880000018,-20.907469410999852],[27.274100518000125,-20.69690205799992],[27.27804299600018,-20.605384424999897],[27.363762399000052,-20.35999223399989],[27.524358812000116,-20.15509931199989],[27.53027137200013,-20.08625879599998],[27.687912663000077,-19.847350196999912],[27.687097295000115,-19.826756392999926],[27.502615516000162,-19.776928763999933],[27.34150000900013,-19.65199346099996],[27.227132837,-19.64836501799988],[27.09734874500009,-19.606175387999883],[26.915346944000134,-19.448703153999816],[26.738822413000094,-19.420967767999855],[26.619334950000052,-19.521720753999944],[26.372417746999986,-19.360344708999946]],[[31.859100030000036,-21.458390492999968],[32.09628919600016,-21.49336292199996],[32.21563211600005,-21.55322436199998],[32.33995078200019,-21.669318799999928],[32.37028704700015,-21.74081787299997],[32.34195687200008,-21.963334205999843],[32.269867759000135,-22.1661640289999],[32.11473894000005,-22.380230529999892],[31.995403917000033,-22.45613019299998],[31.852694726000095,-22.471376426999825],[31.790537367000184,-22.447269483999946],[31.62197008300012,-22.44162634099996],[31.52948040600012,-22.413900876999946],[31.380804267000144,-22.42954806599988],[31.30074606200003,-22.406643989999907],[31.235105680000117,-22.343173949999823],[31.19282762200004,-22.136715683999967],[31.208236646000103,-22.039515766999898],[31.27336761000015,-21.893720851999944],[31.559267774000034,-21.59732947699996],[31.758159479000142,-21.470830036999928],[31.859100030000036,-21.458390492999968]]],[[[22.973207066000157,-19.28957527699987],[22.949335877000067,-19.314334692999978],[23.221160276000035,-19.52919340899996],[23.241314095000178,-19.431028946999902],[23.15116622100004,-19.336065853999912],[23.02794242800013,-19.244443822999926],[22.973207066000157,-19.28957527699987]]],[[[23.417513213000063,-20.014406745999963],[23.478437082000085,-19.929255282999975],[23.38497918300004,-19.905329219999885],[23.295080468000037,-19.98246017499997],[23.267560424000123,-19.89802660099997],[23.135602438999967,-19.864301839999882],[23.235816964000037,-20.051965209999935],[23.011769677000075,-20.3286914009999],[23.176241001000164,-20.277287742999874],[23.21146914800005,-20.217265789999885],[23.30413333100006,-20.15191292199995],[23.417513213000063,-20.014406745999963]]],[[[23.043509329000017,-19.860143689999916],[23.100763875000098,-19.951148457999977],[23.105119316000128,-20.044403444999887],[23.200836464000133,-20.052404291999892],[23.140775171000087,-19.94019395299989],[23.043509329000017,-19.860143689999916]]]]},"properties":{"objectid":819,"eco_name":"Zambezian mopane woodlands","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Afrotropic","eco_biome_":"AF07","nnh":2,"eco_id":65,"shape_leng":231.911369867,"shape_area":33.3660248773,"nnh_name":"Nature Could Reach Half Protected","color":"#EDFD79","color_bio":"#FEAA01","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":389627.57860411896,"percentage":1.8173762403828377}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-5.689167583999961,-15.90803798199994],[-5.767500491999954,-15.944145711999909],[-5.766388548999942,-16.02219698899995],[-5.66222244699992,-15.986366196999882],[-5.689167583999961,-15.90803798199994]]]},"properties":{"objectid":822,"eco_name":"St. Helena scrub and woodlands","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Afrotropic","eco_biome_":"AF07","nnh":4,"eco_id":60,"shape_leng":0.43564021468,"shape_area":0.0109763130177,"nnh_name":"Nature Imperiled","color":"#FCEA3E","color_bio":"#FEAA01","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":130.7755245639841,"percentage":0.0006099884716006455}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[32.661666667000134,-2.429166666999947],[32.50416666700005,-2.549166666999838],[32.61583333300018,-2.51],[32.661666667000134,-2.429166666999947]]],[[[32.43666666700011,-2.26416666699987],[32.41083333300014,-2.348333333999904],[32.44000000000011,-2.421666665999965],[32.50000000000017,-2.39249999999987],[32.43666666700011,-2.26416666699987]]],[[[32.035,-2.214166666999972],[31.978333333000023,-2.266666666999868],[31.983333334000065,-2.365833332999955],[32.0725,-2.281666666999911],[32.035,-2.214166666999972]]],[[[31.81083333300012,-2.1775],[31.791666666000083,-2.315833332999887],[31.91750000000019,-2.413333333999958],[31.853333333000137,-2.2375],[31.81083333300012,-2.1775]]],[[[33.92333333300007,-1.529166665999981],[33.7375,-1.490833333999944],[33.695,-1.598333332999971],[33.7075,-1.66916666599991],[33.823333333000164,-1.700833332999935],[33.87583333300012,-1.780833333999908],[33.94416666700005,-1.738333333999833],[34.03083333400019,-1.803333332999955],[34.06333333400005,-1.755833333999874],[34.040000000000134,-1.674166666999895],[33.937500000000114,-1.586666666999861],[33.92333333300007,-1.529166665999981]]],[[[32.07333333300011,-0.215],[32.10083333400007,-0.311666666999884],[32.23,-0.329166666999924],[32.175,-0.424166665999905],[32.27333333300004,-0.460833333999972],[32.283333334000076,-0.340833333999967],[32.25666666700016,-0.30083333399989],[32.15583333300003,-0.303333332999955],[32.14416666699998,-0.220833332999973],[32.07333333300011,-0.215]]],[[[33.306666666000126,0.315833333000171],[33.23583333300019,0.304166667000118],[33.28416666700019,0.120000000000118],[33.32083333300017,0.113333334000117],[33.306666666000126,0.315833333000171]]],[[[33.455833333000044,1.735000000000127],[33.433333334000054,1.74583333400011],[33.4325,1.741666667000061],[33.455833333000044,1.735000000000127]]],[[[34.74333333300012,0.291666667000072],[34.855833333000135,0.345833333000087],[34.9466666670001,0.317500000000109],[34.9575,0.416666667000129],[34.90416666700014,0.535],[35.05666666700006,0.514166667000154],[35.13833333399998,0.566666667000106],[35.19833333300011,0.455],[35.12333333400005,0.350833334000185],[35.206666667000036,0.306666666000126],[35.25083333300012,0.24],[35.43833333300012,0.336666666000042],[35.43750000000017,0.573333334000097],[35.47916666600014,0.810833333000062],[35.399166666000156,0.943333333],[35.31,0.940000000000168],[35.225,1.063333333000116],[35.1575,1.0225],[35.07166666699999,1.120000000000118],[35.057500000000175,1.250000000000171],[35.040000000000134,1.25416666700005],[34.91166666700019,1.379166667000106],[34.86083333300013,1.469166666000149],[34.82916666600005,1.468333334000135],[34.6991666670001,1.291666667000015],[34.76916666700009,1.213333333000094],[34.834166666000044,0.8900000000001],[34.79083333300008,0.85],[34.58833333300015,0.810833333000062],[34.46083333300015,0.829166666000049],[34.449166667000156,0.868333334000113],[34.33166666700015,0.916666667000186],[34.1775,1.01416666700004],[34.155,1.072500000000161],[34.1966666670001,1.130000000000109],[33.99416666600001,1.046666667000068],[33.94666666700016,0.991666667],[33.83166666600016,1.030833333000089],[33.852500000000134,1.075],[33.958333332999985,1.076666666999984],[33.95166666600005,1.08416666700009],[33.8975,1.110000000000127],[33.88833333300016,1.113333333000185],[33.85833333400012,1.116666667000118],[33.806666667000115,1.15],[33.721666667000136,1.265833333000046],[33.763333333000105,1.350833334000129],[33.70953047500018,1.37],[33.7125,1.4675],[33.62083333300018,1.410833334000188],[33.53,1.54],[33.47333333400013,1.67],[33.24666666600007,1.615833333000126],[33.09833333400013,1.524166667000145],[33.152500000000146,1.411666666000031],[33.300833333000185,1.388333334000151],[33.25250000000011,1.2875],[33.1433333330001,1.296666667000011],[32.94083333300017,1.435833334000108],[32.78416666700008,1.425000000000125],[32.71583333300015,1.358333333000132],[32.590000000000146,1.388333333000048],[32.555,1.485833333000073],[32.695,1.491666666000185],[32.774166667000145,1.588333333000094],[32.81000000000017,1.549166666000133],[32.92,1.5625],[32.98416666600008,1.537500000000136],[33.1475,1.63916666700004],[33.26000000000016,1.6425],[33.388333333000105,1.703333333000046],[33.420000000000186,1.785833334000188],[33.42833333400006,1.899166667000145],[33.3933333330001,1.980833333000021],[33.33416666700009,2.016666667000152],[33.17333333300007,1.993333333000066],[33.071666667000045,2.04166666600014],[33.074166667000156,2.1475],[33.0175,2.22],[32.94166666700016,2.260833333000051],[32.965000000000146,2.311666667000168],[32.9491666670001,2.419166666000081],[32.86166666700018,2.509166666000056],[32.849166667000134,2.62916666700005],[32.68083333400011,2.755],[32.525,2.808333333000121],[32.47583333400007,2.920000000000186],[32.4625,3.008333333000166],[32.328333333000046,3.04916666600019],[32.22333333300014,3.035],[32.0625,3.043333333000078],[32.01,3.13583333400004],[31.858333333000076,3.180000000000121],[31.746666667000113,3.150833333000094],[31.605833333000078,3.003333334000104],[31.685833334000165,2.8425],[31.748333333000176,2.803333334000058],[31.693333333000112,2.71000000000015],[31.715,2.701666667000154],[31.716666667000027,2.704166667000038],[31.715,2.701666667000154],[31.703333333000103,2.611666667000179],[31.6825,2.582500000000152],[31.75500000000011,2.395000000000152],[31.857500000000186,2.4491666670001],[31.908333333000144,2.241666666000071],[31.800833333000128,2.025833333000094],[31.643333333000044,1.959166666999977],[31.553333333000126,1.871666666000181],[31.664788013000134,1.875338902000124],[31.831826175000174,2.001688281000156],[31.86180738400003,1.973134749],[32.08238341900005,1.963854851000121],[32.06168210800007,1.852496076000136],[31.920342125000104,1.83179476600003],[31.868231929000046,1.793961336000166],[31.774243219000084,1.784919384000091],[31.71237723300004,1.706397171000049],[31.786140524000132,1.659283843000082],[31.679263067000193,1.579552069999977],[31.634648173000187,1.588772481000035],[31.63197128000013,1.448086849000106],[31.55017730700007,1.519768112000065],[31.48295753400015,1.376108154000065],[31.468502308000154,1.228676750000147],[31.316910814000096,1.257622893000189],[31.277352274000123,1.222228411000117],[31.202616549000027,1.270157686],[31.186852620000025,1.16040504700004],[31.256823645000054,1.166591646000086],[31.276454198000067,1.07593418100015],[31.327850556000044,0.990987423000149],[31.38807947300006,0.998142463000079],[31.58684378200013,0.932770737000055],[31.52243970400002,0.881017460000123],[31.52600889600012,0.761449545000175],[31.490316981000092,0.693634906000057],[31.515301321000152,0.542539132000172],[31.17069588100003,0.390134655000054],[31.00080236500014,0.481149038000069],[30.801819939000097,0.548963677000188],[30.72478488900009,0.598040060000073],[30.871716606000177,0.672398217000023],[30.615418912000166,0.69967873700017],[30.625412648000122,0.605452081000067],[30.68180587400019,0.543110203000083],[30.526141535000193,0.442244851000112],[30.52227491100018,0.362830340000187],[30.318533562000084,0.364614936],[30.217703902000096,0.379784000000143],[30.033941698000092,0.229466309000031],[30.031657415000154,0.16493532700008],[29.948281102000124,0.035492648000059],[29.910971153000162,0.066520820000164],[29.800944876000074,0.002751265000086],[29.696794801000067,0.073326789000077],[29.539750374999983,0.050483964000023],[29.528328962000103,-0.08371763699995],[29.454634624000107,-0.248603194999873],[29.42915058200009,-0.254543940999895],[29.30752355000004,-0.471784095999908],[29.274660455000117,-0.61115754399998],[29.143529603000104,-0.920407525999963],[29.096578540000166,-1.073721922999937],[29.157552527000064,-1.117647202999933],[29.18311146400015,-1.021364867999921],[29.24310602700018,-0.927955010999881],[29.32025951700018,-0.936802193999881],[29.362235585000178,-1.074576038999908],[29.328140518000055,-1.167746927999872],[29.34015304200011,-1.281372510999859],[29.388776546000145,-1.30489464599998],[29.536603479000064,-1.284262422999973],[29.573333333000107,-1.180833332999953],[29.593910675000018,-0.961285007999948],[29.63174410500011,-0.897753398999896],[29.6274610750001,-0.788536138999973],[29.667703709000193,-0.662766752999971],[29.73462605000003,-0.61220320699988],[29.815527724000162,-0.459322836999945],[29.930039285000078,-0.371580212999959],[29.928849555000056,-0.246658509999975],[30.043063683000128,-0.307037332999926],[30.103145073000178,-0.211561459999928],[30.191185131000168,-0.190443743999879],[30.308680536,-0.118603056999973],[30.31248767300019,-0.029706393999902],[30.435458218000065,0.004938558000106],[30.50798419,-0.033132817999899],[30.53330165500006,-0.268794635999939],[30.49503992200016,-0.409278013999824],[30.450877125000147,-0.441067612999859],[30.44478570500013,-0.549380677999977],[30.484189579000088,-0.620193436999955],[30.673547086000042,-0.742521526999894],[30.800883941999984,-0.793834603999812],[30.745680447000098,-0.895865891999961],[30.745870804000106,-0.982478272999856],[30.576643537000052,-0.999229677999949],[30.45540206700008,-0.892249110999842],[30.38401823700019,-0.866550931999939],[30.176291291000098,-0.867740662999893],[30.09538961700008,-0.925323618999869],[30.066666667000106,-1.049166666999952],[30.141666667000152,-1.091666666999856],[30.165833333000023,-1.148333333999972],[30.172500000000184,-1.301666666999893],[30.15166666600004,-1.406666665999921],[30.165833333000023,-1.502499999999884],[30.241666666000185,-1.5675],[30.257500000000164,-1.6425],[30.335833332999982,-1.6725],[30.34333333300009,-1.7875],[30.26,-1.785],[30.211666666000042,-1.830833332999873],[30.130833334000044,-1.758333333999872],[30.035,-1.825833332999878],[30.041666666000083,-1.855833332999907],[29.99416666700006,-1.875],[29.893333333000044,-1.7825],[29.878333333000114,-1.7625],[29.86916666600007,-1.802499999999895],[29.855000000000132,-1.807499999999891],[29.811666667,-1.807499999999891],[29.796666667000068,-1.759166666999874],[29.757500000000107,-1.7325],[29.738333334000174,-1.770833332999928],[29.79,-1.920833332999848],[29.8241666670001,-1.945],[29.820833333000166,-1.905833332999975],[29.9275,-1.910833332999971],[29.921666666000192,-1.944166666999934],[29.923333333000187,-2.0175],[29.856666666000024,-2.048333333999892],[29.811666667,-2.148333332999925],[29.82166666700016,-2.376666666999881],[29.785,-2.438333332999889],[29.8275000000001,-2.626666665999835],[29.74583333300012,-2.760833332999937],[29.81416666700011,-2.804166666999947],[29.822500000000105,-2.804999999999893],[29.906666667000138,-2.860833333999949],[30.055833333000123,-2.84083333399991],[30.140833334000035,-2.795],[30.18916666700011,-2.724166666999963],[30.18,-2.696666666999931],[30.18916666700011,-2.724166666999963],[30.31916666700016,-2.668333333999954],[30.276666666999972,-2.789166666999961],[30.33916666600004,-2.855],[30.30916666700017,-2.939166666999881],[30.29333333300019,-3.1175],[30.18833333300006,-3.256666666999877],[30.133333333000053,-3.260833332999937],[30.140833334000035,-3.1625],[30.229166666000083,-3.04833333299996],[30.2125,-2.983333332999962],[30.12416666700011,-3.021666666999977],[30.018333334000033,-3.182499999999891],[29.946666667000045,-3.144166666999979],[29.985000000000184,-3.021666665999874],[29.916666666000026,-2.944166666999877],[29.853333333000137,-2.94],[29.822500000000105,-2.997499999999889],[29.77416666700003,-3.01416666599988],[29.906666666000035,-3.0875],[29.843333332999975,-3.22],[29.882500000000164,-3.298333332999903],[29.823333334000154,-3.325833332999935],[29.853333333000137,-3.405833333999851],[29.846666667000136,-3.516666666999868],[29.915833334000183,-3.510833332999937],[29.86166666600019,-3.423333333999892],[29.9375,-3.379166666999936],[29.989166667000063,-3.394166666999979],[30.130833334000044,-3.33083333299993],[30.24166666700006,-3.260833332999937],[30.415,-3.04833333299996],[30.42416666600019,-2.994999999999891],[30.57333333300005,-2.888333333999981],[30.641666666000106,-2.939166666999881],[30.644166666000046,-2.9475],[30.745000000000175,-2.997499999999889],[30.840000000000146,-2.9775],[30.8975,-3],[31.000000000000114,-2.92],[31.060833334000165,-2.83],[31.134166666000112,-2.905],[31.05666666600007,-3.0325],[31.10166666700019,-3.059999999999832],[31.210833333000096,-2.9258333329999],[31.2975,-2.65],[31.34416666700008,-2.6075],[31.365833334000172,-2.503333332999887],[31.325,-2.398333332999869],[31.405833332999975,-2.360833333999892],[31.338333333000094,-2.284166666999909],[31.39583333300004,-2.1775],[31.3825,-2.088333333999969],[31.508333333000053,-2.065833332999944],[31.600000000000136,-2.2325],[31.605833333000078,-2.389166666999927],[31.656666666000092,-2.418333333999954],[31.63750000000016,-2.489166666999949],[31.4375,-2.663333332999969],[31.710833332999982,-2.6625],[31.724166667000077,-2.749166666999884],[31.707500000000152,-2.889166666999927],[31.726666666000085,-3.045833332999962],[31.794166666000024,-3.035833332999914],[31.836666665999985,-2.9325],[31.9075,-2.926666666999949],[31.964166667000086,-2.973333332999971],[32.046666667000125,-2.95499999999987],[32.05833333300018,-2.925],[31.898333332999982,-2.872499999999889],[31.91750000000019,-2.786666666999906],[32.0475,-2.874999999999886],[32.07916666700015,-2.868333332999953],[32.145,-2.7275],[32.24,-2.695833332999882],[32.246666667,-2.55833333399994],[32.197500000000105,-2.515],[32.36166666700012,-2.429166665999958],[32.315,-2.271666665999931],[32.22916666600008,-2.275],[32.159166667000136,-2.389999999999873],[32.066666667000106,-2.4275],[32.17166666700018,-2.508333332999882],[32.1325,-2.551666666999893],[32.038333333000026,-2.489999999999895],[31.940833334000104,-2.584166665999931],[32.00666666700005,-2.679999999999893],[31.9725,-2.709166665999817],[31.839166666999972,-2.675833332999957],[31.794166666000024,-2.725],[31.718333334000135,-2.509166666999931],[31.7525,-2.504999999999882],[31.754166667,-2.401666666999915],[31.629166667000106,-2.335833333999858],[31.694166666000058,-2.13583333299988],[31.698333333000107,-2.035833333999847],[31.62750000000017,-2.036666666999963],[31.625833334000106,-1.953333332999932],[31.68666666600018,-1.889999999999873],[31.72583333300014,-1.6475],[31.763333333000162,-1.615833332999955],[31.74666666600001,-1.465],[31.8,-1.47],[31.820000000000164,-1.327499999999873],[31.865,-1.255833332999885],[31.87583333400005,-1.036666666999963],[31.764166667000154,-1.0225],[31.773333333000096,-0.868333333999885],[31.698333333000107,-0.828333332999819],[31.73000000000019,-0.73],[31.801666666000074,-0.648333332999869],[31.79,-0.574166666999929],[31.843333333000146,-0.4875],[31.92083333300002,-0.424999999999841],[31.989166666000074,-0.317499999999825],[31.98666666600019,-0.185833333999881],[31.92916666600007,-0.155833332999975],[31.990833334000172,-0.080833332999873],[32.08583333300004,-0.021666666999863],[32.1575,-0.069166666999934],[32.29416666600008,-0.013333333999924],[32.299166666000076,0.014166666000165],[32.45333333300016,0.0275],[32.57083333300011,0.101666666000085],[32.572500000000105,0.200000000000102],[32.683333334000054,0.21],[32.74500000000012,0.180833334],[32.6675,0.098333333000028],[32.86083333300019,0.15083333299998],[32.943333333000055,0.079166667000095],[33.03333333300003,0.125000000000114],[33.131666667000104,0.215833333000035],[33.1475,0.30583333300018],[33.2725,0.375833333000173],[33.25333333400016,0.465833333000148],[33.35833333300013,0.42000000000013],[33.434166666000124,0.223333333000085],[33.52083333300004,0.174166667000065],[33.626666667000165,0.23250000000013],[33.615,0.323333333000051],[33.7116666660001,0.3275000000001],[33.71833333300003,0.185833333000119],[33.9,0.1775],[33.93166666700017,0.233333334000179],[34.01,0.235],[33.98750000000018,0.1125],[34.00916666600017,-0.017499999999814],[34.079166667000095,-0.062499999999886],[34.095,-0.143333332999816],[34.14583333400009,-0.204166666999868],[34.2675,-0.265],[34.315,-0.365833332999898],[34.3875000000001,-0.304166665999901],[34.385833333000164,-0.234166665999965],[34.4583333330001,-0.159166665999976],[34.51083333300005,-0.1875],[34.67750000000018,-0.0925],[34.73833333400006,-0.115],[34.81916666600006,-0.26],[34.755,-0.285833333999904],[34.74000000000012,-0.35],[34.46250000000015,-0.345833333999963],[34.44916666600005,-0.408333332999973],[34.50500000000011,-0.485833332999903],[34.42333333400006,-0.533333332999973],[34.36833333300012,-0.478333333999899],[34.227500000000134,-0.424166666999895],[34.0925,-0.564166665999949],[34.05250000000018,-0.703333332999932],[34.08416666700009,-0.776666666999972],[34.18833333300017,-0.850833332999855],[34.12666666700011,-0.9725],[33.98333333300013,-1.16583333299991],[33.873333333,-1.236666666999952],[33.945000000000164,-1.34583333299986],[33.98750000000018,-1.4175],[33.92916666700012,-1.479166666999845],[33.9591666660001,-1.520833333999974],[34.11083333300007,-1.54],[34.152500000000146,-1.494166665999899],[34.3841666670001,-1.430833332999839],[34.4825,-1.475],[34.55083333400006,-1.44],[34.49083333300007,-1.425833332999957],[34.4825,-1.4175],[34.47500000000019,-1.424166666999952],[34.4825,-1.4175],[34.4825,-1.4075],[34.47500000000019,-1.4075],[34.466666666000094,-1.415833332999966],[34.47500000000019,-1.4075],[34.44083333300006,-1.325833332999878],[34.44083333300006,-1.284166665999919],[34.42083333400018,-1.214166666999915],[34.50333333300017,-1.229166665999969],[34.5775,-1.19],[34.624166667000054,-1.225],[34.65083333399997,-1.176666666999836],[34.545000000000186,-1.046666666999954],[34.61333333300007,-0.88916666699987],[34.638333334000095,-0.7725],[34.68916666700011,-0.655],[34.77,-0.563333332999889],[34.891666667000095,-0.4875],[35.050833333000014,-0.424999999999841],[35.05,-0.365833333999831],[35.14083333300016,-0.359166666999954],[35.18583333300006,-0.276666666999972],[35.372500000000116,-0.266666666999924],[35.43916666700011,-0.20583333299993],[35.38583333400004,-0.144999999999868],[35.248333333000176,-0.118333332999953],[35.24583333300012,-0.0675],[35.36083333300019,0.031666667000138],[35.205,0.060833333000062],[35.08,0.005833334000101],[34.9475,-0.0225],[34.84750000000014,-0.019999999999811],[34.7608333340001,0.039166667000188],[34.66833333400001,-0.01],[34.59083333400014,-0.005833332999941],[34.66250000000019,0.086666666000099],[34.67416666700012,0.135833333000051],[34.785,0.15],[34.7925,0.159166667000079],[34.72666666700013,0.190000000000168],[34.78416666700008,0.285],[34.74333333300012,0.291666667000072]],[[32.54,1.588333334000026],[32.526766581000174,1.661666667000077],[32.75416666700016,1.814166667000165],[32.78916666600003,1.77666666600004],[32.60500000000013,1.619166667000059],[32.54,1.588333334000026]],[[30.263333333000105,-1.856666666999956],[30.28,-1.86],[30.26,-1.91083333399996],[30.175,-1.8775],[30.263333333000105,-1.856666666999956]],[[34.25250000000011,-1.344166666999968],[34.25083333300012,-1.25],[34.07250000000016,-1.244166666999945],[33.98750000000018,-1.21],[34.103333333000194,-1.139166665999937],[34.16666666600008,-1.17583333399989],[34.24666666700017,-1.164166666999961],[34.340000000000146,-1.2125],[34.375,-1.334166666999977],[34.27500000000015,-1.391666666999868],[34.25250000000011,-1.344166666999968]]]]},"properties":{"objectid":823,"eco_name":"Victoria Basin forest-savanna","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Afrotropic","eco_biome_":"AF07","nnh":4,"eco_id":61,"shape_leng":220.920664226,"shape_area":13.4841198812,"nnh_name":"Nature Imperiled","color":"#66FC43","color_bio":"#FEAA01","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":167040.18187632004,"percentage":0.7791410937050202}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[16.854497469000137,-2.252821845999904],[16.61119043400015,-2.254751695999971],[16.354799582000055,-2.27833619199987],[16.291910498000107,-2.386073989999943],[16.327560576000167,-2.632120566999959],[16.286220527000125,-2.753290700999969],[16.187538536999966,-2.709964978999949],[16.221385500000167,-2.632303795999974],[16.17694045800016,-2.553420530999972],[16.124443593000024,-2.346490954999979],[16.11770253100002,-2.213842978999935],[16.05876953699999,-2.183693105999964],[15.888099572000101,-1.997631953999814],[15.532400434000124,-1.690555901999971],[15.442749442000093,-1.586066593999931],[15.25697059300012,-1.412024755999937],[15.058050596000157,-1.198140882999894],[14.947529503000169,-1.10435191199997],[14.735540442000115,-0.991572063999968],[14.554200481000066,-0.785214636999967],[14.45310048000016,-0.694090440999958],[14.294340528000134,-0.499133072999882],[14.194109562000051,-0.449016834999952],[14.065739541000141,-0.470937020999884],[14.049440594999965,-0.605645939999931],[14.178910489000032,-0.854431554999962],[14.212010457000133,-0.996636912999918],[14.166660505999971,-1.104578726999819],[14.099929492000115,-1.144952677999925],[13.85072059100014,-1.170819901999948],[13.611390433000167,-1.150032445999955],[13.49435056600015,-1.090296801999955],[13.25852052300013,-1.069396358999882],[13.062509549000083,-1.064403761999927],[12.839730465000173,-1.086947057999964],[12.777919461000181,-1.108195349999903],[12.393760576999966,-1.365100179999899],[12.5298404400001,-1.611925938999946],[12.698370506000117,-1.830274515999918],[12.853736458000014,-1.988356539999927],[13.049114430000088,-2.28325066899987],[13.238035487,-2.698193600999957],[13.355376432000071,-2.934628146999898],[13.450980587,-3.079869429999974],[13.549466441000106,-3.271947111999964],[13.695253553000043,-3.525922298999831],[13.771368443000085,-3.815764486999967],[13.77086049899998,-3.953204565999897],[13.744254495000064,-4.017415810999978],[13.59771552500007,-4.108950719999825],[13.47642653600019,-4.141898472999912],[13.424283554999988,-4.129952248999871],[13.146351548000098,-3.964174464999928],[13.002195552999979,-3.866984788999901],[12.924007484000072,-3.792621214999883],[12.718955453999968,-3.55751670899997],[12.626534578000076,-3.397714551999911],[12.562095512000099,-3.320066444999838],[12.336760450999975,-2.994511815999886],[12.192237497,-2.826170342999944],[12.01156758500008,-2.642030993999924],[11.47941446599998,-2.136090768999964],[11.38819957800007,-2.087813185999948],[11.217390473000023,-1.885303386999965],[11.12240942800014,-1.728835047999951],[11.035659580000129,-1.622941938999929],[10.854660427000056,-1.483423315999971],[10.759220557000106,-1.466571666999926],[10.702409526000054,-1.502578981999932],[10.687769527000114,-1.614160721999838],[10.732199481000123,-1.762978394999891],[10.795929438000087,-1.88667332599988],[10.947540463999985,-2.064661865999938],[11.102800469000101,-2.195997068999873],[11.25687057800019,-2.305876107999893],[11.513939525000126,-2.564021794999974],[11.703410434999967,-2.778487874999882],[11.724470470000142,-2.885254881999913],[11.67597043100011,-2.92457992199985],[11.592829495000103,-2.908613066999976],[11.47381049300003,-2.838528117999886],[10.97167045499998,-2.403258567999899],[10.819959516000097,-2.326012624999976],[10.765669593999974,-2.327093554999976],[10.731060548000073,-2.560943121999969],[10.742329514000062,-2.752836568999953],[10.794710541000086,-2.895635868999875],[10.917269556000065,-2.970366402999957],[11.252779539000187,-3.108333031999962],[11.48573945000004,-3.252948521999883],[11.625439457000027,-3.454257361999964],[11.795160591000183,-3.654871676999903],[11.96253043400003,-3.832091428999945],[12.122799464000025,-3.984399997999901],[12.349089560000039,-4.157851413999879],[12.509779528000081,-4.245700632999956],[12.798190591000036,-4.453359265999893],[12.959910528000137,-4.54355172999982],[13.084810441000172,-4.578361270999949],[13.209380442000054,-4.644192235999981],[13.519289577999984,-4.934945871999957],[13.575453526000103,-5.057235827999875],[13.452650430000062,-5.092724302999954],[13.477629507000131,-5.338264110999944],[13.436140595000154,-5.392566269999975],[13.190910583000175,-5.491016919999879],[12.958388542000137,-5.659948646999908],[12.919783508000023,-5.658121558999881],[12.810908452999968,-5.743660389999945],[12.690795445000163,-5.689067377999947],[12.559765511000137,-5.514373092999961],[12.527008530000103,-5.427025447999881],[12.548177530000146,-5.207375830999979],[12.525819474000116,-5.12308707699998],[12.492429492000042,-4.834476189999975],[12.396180432999984,-4.697464426999886],[12.29598048000014,-4.591362272999902],[12.020890441000176,-4.372368455999833],[11.783829432000061,-4.199261200999899],[11.670160431000056,-4.102689270999917],[11.282649456000058,-3.726525381999977],[11.165080524000075,-3.661689180999815],[11.056879541000058,-3.631451129999903],[10.926353528000107,-3.647657204999916],[10.994859493000035,-3.724580444999958],[11.017990528000155,-3.830488473999878],[11.374239517999968,-4.147523902999978],[11.38903944499998,-4.202319924999927],[11.787280429000077,-4.564356115999885],[11.773139488000027,-4.666718767999896],[11.846670572,-4.757264779999957],[11.88416047800007,-4.861319402999925],[12.13097953099998,-5.197562633999951],[12.221679434000066,-5.446340034999878],[12.140899513000079,-5.628633855999908],[12.159440451000137,-5.702023453999971],[12.23719953400007,-5.824698305999959],[12.345135201000176,-5.932180847999859],[12.595689510000057,-5.938259012999879],[12.708849561000022,-5.92413215299996],[12.95270343300001,-5.807745571999874],[13.14999046700018,-5.823486617999947],[13.151479596000172,-5.90551058199992],[13.157222236000166,-5.924797647999924],[13.462234867000063,-6.206643291999967],[13.570134925000104,-6.337298408999914],[13.582886750000114,-6.400664016999826],[13.691767717000118,-6.456224314999872],[13.891873278000105,-6.717372621999971],[13.956613313000048,-6.83425960299985],[13.970346047000135,-6.935538558999895],[14.042933359000187,-7.052371818999973],[14.157699784000044,-7.062106599999936],[14.239115282000057,-7.118564283999831],[14.330339876000096,-7.260651026999938],[14.39017536300014,-7.299571106999849],[14.493170872,-7.312219403999904],[14.584395466000046,-7.286922451999942],[14.757035559000087,-7.021219143999815],[14.874744712000052,-6.915089744999932],[15.000301143000058,-6.867372406999948],[15.15822759100007,-6.873215603999881],[15.265146739000159,-7.020245588999899],[15.335772231000078,-7.149710379999931],[15.50448868500007,-7.577749956999924],[15.598259266000127,-7.785767800999963],[15.688154092000104,-8.205436948999932],[15.698142406000045,-8.535774602999936],[15.475545695000164,-8.669805136999855],[15.425604125000177,-8.760072491999892],[15.425604125000177,-8.90107129099988],[15.45984977300003,-8.972959813999921],[15.40420059600018,-9.125147193999908],[15.291571405000013,-9.257856087999926],[15.388290540000014,-9.277146224999967],[15.677570471000081,-9.209844906999933],[15.797380557000054,-9.147521432999952],[16.03042043200014,-9.06532010899997],[16.134830447000013,-9.078446336999889],[16.1015395390001,-9.231702227999904],[15.843009459000143,-9.331219390999934],[15.833930516000066,-9.380716875999894],[15.92802945000011,-9.444479354999942],[16.10177054500008,-9.48446254199996],[16.440175469000167,-9.729459033999944],[16.732040546000064,-9.722773627999914],[16.90142053700015,-9.647146900999928],[16.917039543000158,-9.560008969999899],[16.816600538000046,-9.342550550999931],[16.73884950100006,-9.222161945999972],[16.835269551000067,-9.204498090999948],[16.775850575000163,-9.061793338999848],[16.809949498000037,-9.029119674999947],[17.064519465000046,-9.057319581999877],[16.97632055300005,-9.267837785999973],[17.01395948900017,-9.330970280999964],[17.18601045700018,-9.501032055999872],[17.32098944100011,-9.6563373219999],[17.280370571000105,-9.723032628999931],[17.28544044900002,-9.791514621999966],[17.34337951599997,-9.86187885499993],[17.472450599000183,-9.920222600999864],[17.54578957000018,-10.00726665399992],[17.775539548000097,-9.919713651999928],[17.853269462000185,-9.781686336999883],[17.93852951100007,-9.877226789999952],[18.028619547000062,-9.88559109099998],[18.13080047900013,-9.976631802999975],[18.2350405090001,-10.005236723999928],[18.23246056000005,-10.101799936999896],[18.34333050800018,-10.171724790999917],[18.398000465,-10.134846428999936],[18.482809568000107,-10.010066208999945],[18.527450578000128,-10.16738514399998],[18.581050502000153,-10.20469165399993],[18.633789437000075,-10.134817426999916],[18.641199542000095,-9.953540330999942],[18.75587051600013,-9.928184905999899],[18.91572950300008,-10.022534457999939],[18.974189589000105,-9.972793897999964],[18.91444958600016,-9.861094643999934],[19.063119570000083,-9.89641346999997],[19.135259594000047,-9.816248108999957],[19.063089563000176,-9.732576933999951],[18.86968955200001,-9.624558341999943],[18.797159435000026,-9.563255951999963],[18.739889579000078,-9.443131209999876],[18.70786048300016,-9.325705606999975],[18.639690464000125,-9.210041880999881],[18.554220533000034,-9.124783005999973],[18.448020478000046,-9.060480397999925],[18.422359449000055,-9.000942565999935],[18.465469589000065,-8.92944694299996],[18.55455044500019,-8.928482018999887],[18.603530599000067,-8.868928260999951],[18.573030529000164,-8.811646334999978],[18.420429600000148,-8.705078817999947],[18.406639525000173,-8.65868615699992],[18.550739528000065,-8.59944822999995],[18.551540503000183,-8.54264038399998],[18.4786705840001,-8.501191537999944],[18.407320471000048,-8.350798233999967],[18.4603594780001,-8.261630709999963],[18.582130593999977,-8.166481355999906],[18.666650521000122,-8.067147421999948],[18.62418947499998,-7.834005454999954],[18.41348049900006,-7.569393297999966],[18.42440044300014,-7.479335950999939],[18.155349565000108,-7.506949962999897],[18.023036529000137,-7.457955559999903],[17.909730465000052,-7.323638243999937],[17.85246044100012,-7.195591428999933],[17.77069044900003,-6.83407374199993],[17.718349487000125,-6.69645462699998],[17.537649568000063,-6.517577603999882],[17.515029494000032,-6.31962404099994],[17.445508480000058,-6.175020619999941],[17.36823856500007,-6.135902613999917],[17.28842759100013,-6.153487343999871],[17.31276159700019,-6.28536854399988],[17.413831592000122,-6.469012186999919],[17.594907523000188,-6.723070856999868],[17.64805046500004,-6.855740123999908],[17.673805539000114,-7.039888859999905],[17.727153503000068,-7.211547387999872],[17.865140584000073,-7.470273604999932],[18.141742551000107,-7.847619341999973],[18.18812146500005,-7.893609838999907],[18.256891461000066,-8.091732884999942],[18.2595465120001,-8.28831148099988],[18.164203537000105,-8.268382164999935],[18.053142482000055,-8.0557394839999],[17.768241592000038,-7.692319607999934],[17.579244595000034,-7.433938054999885],[17.451984506000144,-7.29046149699991],[17.37691148700003,-7.25412007999995],[17.10879552700004,-7.190128774999948],[16.99578450600012,-7.203561947999958],[16.93007457599998,-7.161048096999878],[16.93215949,-6.951825232999965],[16.784898504000125,-6.72137201299995],[16.765361461000055,-6.554915964999907],[16.75584951000002,-6.207529328999897],[16.678281534000178,-6.080448779999927],[16.62266743800012,-5.94128990899992],[16.545577566000077,-5.504245071999947],[16.473968453000055,-4.976019879999967],[16.39001447200019,-4.442782142999874],[16.393871489,-4.167506527999933],[16.442626505000078,-4.067537915999822],[16.521680592000052,-4.013585951999971],[16.736991569000168,-3.922283724999886],[17.09362445000005,-3.879338875999963],[17.17438559600015,-3.822765220999941],[17.21588557200016,-3.64811820999995],[17.278615568000134,-3.479449674999955],[17.282976504000032,-3.339255973999968],[17.12802646300014,-3.23189888099995],[16.921417578000103,-3.169799539999929],[16.658569477000185,-3.161607234999963],[16.321111540000175,-3.266760389999945],[16.22552448400012,-3.225248343999908],[16.27447546899998,-3.169298636999883],[16.50971056400016,-3.025162423999916],[16.627920545,-2.936496808999891],[16.47751953000011,-2.855052872999977],[16.55118757400004,-2.72590350299987],[16.62223258500012,-2.723178880999853],[16.75530451800006,-2.77598503899992],[16.805704567000078,-2.876246514999934],[16.86173256,-2.919770217999883],[17.04425051400011,-2.976401875999954],[17.127199504000032,-2.950620817999948],[17.037805501000037,-2.86539714699984],[17.100803550000023,-2.756425364999814],[17.00316846000004,-2.668925000999877],[16.80682757400001,-2.650783209999929],[16.69081449000015,-2.594095560999961],[16.687610592000055,-2.46380625199987],[16.854497469000137,-2.252821845999904]]],[[[12.12040056300009,0.050999899000146],[12.024539586,0.06930949600013],[11.769860487000074,0.031501246000062],[11.493370502000118,0.019839001000094],[11.372110515000145,0.028272369000149],[11.225460569,0.001828470000021],[11.172249566000119,-0.055772303999959],[11.18585054500005,-0.185278574999927],[11.25745949000003,-0.242819166999936],[11.54833047400001,-0.25497929699992],[11.727780483,-0.356161775999851],[11.939889572000027,-0.369966770999952],[12.164130461000013,-0.369600816999878],[12.238050465000015,-0.395166962999951],[12.268409551,-0.266697532999956],[12.251449440000158,-0.109232081999835],[12.20897951000012,-0.01896904299997],[12.12040056300009,0.050999899000146]]]]},"properties":{"objectid":824,"eco_name":"Western Congolian forest-savanna","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Afrotropic","eco_biome_":"AF07","nnh":4,"eco_id":63,"shape_leng":64.5390766791,"shape_area":30.5211941841,"nnh_name":"Nature Imperiled","color":"#DBDB00","color_bio":"#FEAA01","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":376390.1730796771,"percentage":1.755631775654183}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[36.7775,-3.194166666999934],[36.71916666699997,-3.223333333999904],[36.71333333300015,-3.286666666999963],[36.80333333400006,-3.289166666999961],[36.7775,-3.194166666999934]]],[[[37.2066666660001,-2.93],[37.19750000000016,-3.068333333999931],[37.43416666700011,-3.184166665999953],[37.52166666700015,-3.179166666999947],[37.535,-3.123333332999891],[37.444166667000104,-2.964166666999915],[37.32083333300005,-2.95916666699992],[37.2066666660001,-2.93]]],[[[36.67,-0.534999999999854],[36.735,-0.429999999999893],[36.6525,-0.26083333299988],[36.59250000000014,-0.233333332999962],[36.53333333300003,-0.27916666699997],[36.56833333300011,-0.355],[36.66916666700013,-0.480833332999907],[36.67,-0.534999999999854]]],[[[37.496666666000124,-0.096666666999965],[37.5,0.06666666700005],[37.250000000000114,-0.021666665999931],[37.20916666599999,-0.154166665999981],[37.25500000000011,-0.273333333999972],[37.39833333300015,-0.185],[37.496666666000124,-0.096666666999965]]],[[[34.615,0.999166666000178],[34.68833333400016,1.049166667000179],[34.668333333000135,1.171666666000078],[34.59833333400019,1.265000000000157],[34.52250000000015,1.268333333000157],[34.41833333400007,1.170833333000132],[34.46166666700003,1.126666666000176],[34.46250000000015,1.021666667000147],[34.5841666660001,0.98583333400012],[34.615,0.999166666000178]]],[[[35.49500000000012,1.185833333000062],[35.574166667000156,1.130833334000101],[35.550833334,1.2825],[35.43000000000012,1.226666667000188],[35.49500000000012,1.185833333000062]]]]},"properties":{"objectid":825,"eco_name":"East African montane moorlands","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Afrotropic","eco_biome_":"AF10","nnh":1,"eco_id":78,"shape_leng":19.265000004,"shape_area":0.251041666667,"nnh_name":"Half Protected","color":"#882AC8","color_bio":"#D6C39D","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":3109.5720456977424,"percentage":0.06367762026539553}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[42.75414085100016,14.071344373000102],[42.68561193100015,14.01432589400008],[42.71196158800012,13.953980792000095],[42.77833366700008,13.92915916700008],[42.78777504100003,14.045791298000097],[42.75414085100016,14.071344373000102]]],[[[51.27422692400012,15.228769792000094],[51.12772736400018,15.194325758000161],[50.96566953000013,15.20646660500006],[50.776182375000076,15.15556497700004],[50.653424916,15.244148199],[50.64047467800003,15.114555892000055],[50.427695082000184,15.11977196000015],[50.44783989600006,15.040631620000056],[50.38677592900018,15.001601043000164],[50.30331884300017,15.015900264000095],[50.22076107900011,14.963829517000079],[50.13568521400015,14.987391755000033],[50.08541311100004,14.929385483000146],[49.87038521000011,14.832618431000185],[49.69870463200016,14.82974059999998],[49.520009341000105,14.882980465000173],[49.58790815500015,14.792868396000074],[49.47153588300006,14.702216734],[49.42270269600016,14.746823107000125],[49.46434130600011,14.842241176000073],[49.308039135000115,14.842421041000136],[49.13330086100012,14.812923278000142],[49.24949326900014,14.757794836000073],[49.30992771100006,14.682341716999986],[49.16792476000012,14.576221715000145],[49.020795673000066,14.515697343000056],[48.99273682500018,14.446359612000037],[49.00486135000017,14.409835433000012],[49.07514445000015,14.508188883000173],[49.17992350300017,14.545833333000019],[49.34583333300009,14.64398193400018],[49.62083333300018,14.758929443000113],[49.84625040700007,14.812500000000114],[49.92916666700012,14.851080322000143],[50.18092651400008,14.84583333300003],[50.22541707400012,14.891249593000111],[50.342323812000075,14.942323812000154],[50.4723205570001,15.027679443000125],[50.67093185500005,15.062395213000173],[50.920607503000156,15.120607503000087],[51.282537362000085,15.220665074000067],[51.27422692400012,15.228769792000094]]],[[[42.63282124900013,15.45665799800014],[42.55413245600016,15.388399122000123],[42.545137348000026,15.287495522000029],[42.621166992000155,15.31250000000017],[42.63282124900013,15.45665799800014]]],[[[41.77306937999998,16.889730449000126],[41.83734944800017,16.75431722100018],[41.94779459700004,16.67279459700012],[42.05416666800011,16.69166666700005],[42.07919859700007,16.62496727100006],[42.18828636100005,16.588005135000174],[42.188020834000156,16.7125],[42.07749328800014,16.812494072000106],[42.03333317300019,16.754199848000155],[41.90416666699997,16.753055828000186],[41.848073963000104,16.84808921800004],[41.77306937999998,16.889730449000126]]],[[[41.92083333300019,16.98083292600012],[41.8374614710001,16.904565815000126],[41.88472188300017,16.81805623400004],[41.947916667000186,16.88127103700009],[41.92083333300019,16.98083292600012]]],[[[55.187626808000175,17.160513547000164],[55.08553432400009,17.1339901770001],[54.96299208199997,17.048924446000115],[54.74884059200019,17.018586318000075],[54.64295457700001,17.051898772000186],[54.481151229000034,17.052493638000044],[54.28425083000002,17.07331392100008],[54.19442617700008,17.111385298000187],[53.77921023200014,16.951366544999985],[53.78563516600008,16.875462908000088],[53.980198160999976,16.911468506000062],[54.026691978000144,16.985055816000113],[54.24027710000013,17.026389567000138],[54.40416666699997,17.03514200799998],[54.628326416,17.028326416000084],[54.729961818000106,16.95420906900017],[54.89567871100013,16.962345379000112],[55.07155761700017,17.0375],[55.187626808000175,17.160513547000164]]],[[[55.2410465370001,17.5691654850001],[55.24743172400002,17.441641618],[55.26192156700017,17.44699929000012],[55.2410465370001,17.5691654850001]]],[[[55.317488911000055,17.64587765500005],[55.374595861000046,17.678343181],[55.34329945400003,17.662229263000086],[55.317488911000055,17.64587765500005]]],[[[55.69088742600019,17.948409591000086],[55.49168759200006,17.88833487900007],[55.42261965900019,17.812522030000082],[55.50573120100006,17.86093546500007],[55.654166667000084,17.895363363000058],[55.824166952000155,17.90749043800008],[55.7100429840001,17.897507964000113],[55.69088742600019,17.948409591000086]]],[[[56.353417976,17.920710472000053],[56.24837716100018,17.96495711700004],[56.14081824400017,17.933300981],[56.244317627000044,17.94431762700009],[56.353417976,17.920710472000053]]],[[[43.740875942000116,14.84844649900009],[43.55882411800019,14.985262423000108],[43.378959709000014,15.089853577000099],[43.30215760600004,15.080230831000108],[43.29622208000012,15.214679477000175],[43.16908532700006,15.413960381000038],[43.16369105200005,15.535078881000118],[43.12690878000012,15.583192610000026],[43.162072272000046,15.710536612000055],[43.1148578640001,15.77825556200014],[43.14345630500014,15.853079156000092],[43.11206996600015,16.061362142],[43.13904962700002,16.194551737000097],[43.1135980360001,16.2337753970001],[43.14489522100018,16.345547909000118],[43.13140539,16.482064995000087],[43.08958650300019,16.536211180000123],[43.1059255350001,16.62571576700003],[42.99893525300013,16.81427455900007],[42.927798014000075,16.830746850000082],[42.95306982800014,16.913199984000187],[42.83319020000005,17.06932229100005],[42.864547498000036,17.10802218000009],[42.74988393700016,17.256770046999975],[42.709234580999976,17.216390487000126],[42.64757012900009,17.346493346000045],[42.597656617999974,17.32564330600013],[42.570048569000164,17.482201043000146],[42.35034419400017,17.664763418000064],[42.32453365000015,17.710448978000045],[42.21047057400011,17.69806737500005],[42.15030592900007,17.759221274000083],[42.04265708000008,17.749868324000033],[41.98440917000005,17.834047785000052],[41.930601552999974,17.787190189000114],[41.838243285000146,17.828720969000017],[42.13595682800002,17.610955811000167],[42.279913330000056,17.453420003000133],[42.32315909900018,17.339018491000047],[42.36257497300011,17.182367073000023],[42.42777811700006,17.154166667000084],[42.44392524000017,17.06076555700008],[42.54573783300009,17.008467230000065],[42.54054997100019,16.88344370300007],[42.662379902000055,16.793169532000093],[42.740560029000164,16.64277384500008],[42.71933552000007,16.565984721],[42.77761209700009,16.45571485900018],[42.75869503900003,16.423201923000136],[42.82065120300007,16.196095798000044],[42.84025000800011,16.056382127000177],[42.812704553000174,15.870654854],[42.6982115190001,15.730310020000047],[42.69303808400008,15.637900442000046],[42.773056030000134,15.464721680000139],[42.799825352000084,15.258987013000137],[42.70566633300018,15.307100741999989],[42.66537670600019,15.234615385000154],[42.795833333000076,15.183333333000064],[42.87087665100012,15.111463981999975],[42.867129387000034,15.033808911000165],[42.92087409900017,14.966707348000057],[42.94842755400009,14.87098559500015],[42.92638855100006,14.804166667000061],[43.019985927000164,14.545987076000074],[42.99308965900019,14.404234597000084],[43.07666626000008,14.2125],[43.103733317000035,14.062933350000037],[43.15862347600017,13.953779810000185],[43.230147298000134,13.879166667000106],[43.28455993400007,13.70118136400015],[43.291666667000015,13.595833333000087],[43.25833333300017,13.504166667000106],[43.253186035000056,13.261519368],[43.28785324700016,13.161282776],[43.350207726000065,13.081926528],[43.44565184400017,12.88588871900015],[43.496051439000155,12.837051851000012],[43.458398886000055,12.700370826000096],[43.531089274000124,12.6875],[43.57916666700015,12.743750000000148],[43.795705545000146,12.689023442000178],[44.04583333300019,12.6],[44.14083353700016,12.659167480000065],[44.287500000000136,12.626389567000103],[44.424722290000034,12.679166667000061],[44.52944030800006,12.812227376000124],[44.650270394000074,12.81202165700006],[44.74361063600003,12.776944987000036],[44.829166667000095,12.78125000000017],[44.995454915000096,12.85378824900016],[45.21488138800015,13.043452962000117],[45.3875,13.068750000000136],[45.515024821000054,13.22664184600012],[45.63898111999998,13.344352214000082],[45.838896688000034,13.39443766300002],[46.245833333000064,13.43267618800013],[46.43428775100017,13.407464543000174],[46.61250116600013,13.435251835000145],[46.70416666700015,13.428240967000079],[46.90681254200007,13.53485514300013],[47.20305582800006,13.596944173],[47.39570922900009,13.65404256200003],[47.61706950000013,13.849597168000173],[47.720833334000076,13.91369018600011],[47.795833334000065,13.928887939],[47.96527710000004,14.051389567000115],[48.07012233800015,14.053445810000028],[48.19440864600011,13.973496080000075],[48.51907959,14.030920410000022],[48.74012985700017,14.098021030000098],[48.663495024000156,14.15506920100006],[48.630489905,14.08051540300005],[48.49667078500016,14.099311234000083],[48.36617915599999,14.17134693000014],[48.17885037400015,14.128719065000155],[48.10053861900013,14.257164229000182],[47.97190135200009,14.328527869000027],[47.93131057199997,14.347741738000025],[47.53380838500004,14.44604189200004],[47.60252614500018,14.274837704999982],[47.70510519800007,14.211647676000041],[47.74986984000003,14.060136581000165],[47.65008950600014,13.965374262000068],[47.570137007000085,13.919363862000068],[47.30991425400015,13.858268085000077],[47.20205380800013,13.76700155399999],[47.069302490000155,13.72702530500004],[46.92900848400012,13.724762498000132],[46.8596157500001,13.745882026000174],[46.661243042000194,13.72777957400018],[46.61146129800011,13.622181935000071],[46.46739594700006,13.568628846000138],[46.27427812399998,13.53787300800019],[46.125258944000166,13.540142335999974],[45.97850909200014,13.469793180000067],[45.83510957400017,13.446785810000108],[45.80225798100014,13.497025111000028],[45.71857505200012,13.509625769000024],[45.70175773000011,13.37715563100005],[45.601573254000186,13.403056106000179],[45.54770386300015,13.322027190000142],[45.39356006500009,13.28884220600014],[45.31837674200011,13.36420539400018],[45.235729046000074,13.30404074900008],[45.135904299000174,13.285964376000038],[44.9904839240001,13.31878963000014],[44.995430195000154,13.243156646000159],[44.77824392100007,13.300713257000098],[44.646673105000104,13.215547459999982],[44.66429981800002,13.147558713000024],[44.56483479900004,13.04908294900008],[44.45448798400014,13.077861254000084],[44.42984656000016,13.040989050000178],[44.18882825200012,12.95816149000018],[44.19458391300003,12.814180030000045],[44.24395669300009,12.729823622000026],[44.15775836500006,12.663495127000147],[44.04877476800016,12.79892059600013],[43.82061676500007,12.802068224000152],[43.66191546500005,12.914730969],[43.571083353000176,13.139022315000034],[43.60525817600012,13.264200781999989],[43.726666652000176,13.353233665000175],[43.698967533000086,13.530669904000149],[43.623154684999975,13.631483906000142],[43.571893068000065,13.819449456000086],[43.58223553200014,13.920166283000128],[43.63382757600016,13.993310206000103],[43.61317221000013,14.122154014000046],[43.50174620900009,14.299320457000135],[43.61074404100003,14.358315983000182],[43.64752631200008,14.405919160999986],[43.49479238800018,14.450705398000082],[43.485288615000115,14.524690562000103],[43.43312761500016,14.59664983100015],[43.46370488600013,14.63494744500008],[43.43078969900017,14.872458397000173],[43.52240157500012,14.974171721000118],[43.61658963400009,14.832978159000106],[43.740875942000116,14.84844649900009]]]]},"properties":{"objectid":829,"eco_name":"Southwest Arabian coastal xeric shrublands","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Afrotropic","eco_biome_":"AF13","nnh":4,"eco_id":107,"shape_leng":65.0688420748,"shape_area":3.46731291067,"nnh_name":"Nature Imperiled","color":"#F2B654","color_bio":"#CC6767","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":41545.296292869534,"percentage":0.15747484988190988}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[58.74650298200015,20.872866042000112],[58.69201502400017,20.878041089000078],[58.39209112200007,20.670027899000104],[58.296852917000194,20.583603051000182],[58.21609379800003,20.62569132300007],[58.08928938900016,20.61552898300016],[58.079781433,20.56183945700019],[58.171466064000185,20.611867269000015],[58.267535019000036,20.58747013600015],[58.20000000000016,20.404166667000027],[58.287500001000126,20.368056234000107],[58.44583333300005,20.35297648100004],[58.525820310000086,20.420825761000117],[58.538889568,20.51250000000016],[58.59166666800019,20.6375],[58.68825683600005,20.720076497000093],[58.629166667000106,20.768056234000085],[58.74650298200015,20.872866042000112]]],[[[59.41426056000006,22.609955485000114],[59.43503489900007,22.490795314000138],[59.605816155000184,22.535041959000125],[59.54412266300017,22.42586426200012],[59.54583137500015,22.281702939000127],[59.439981170000124,22.10912303800012],[59.373341407000055,22.038346393000097],[59.314975406000144,22.038346393000097],[59.283319270000106,21.9600154420001],[59.33700879500003,21.82520706800011],[59.2524725240001,21.583649166000157],[59.32181025300014,21.54201055500016],[59.29951377600014,21.408217229000115],[59.44433797300013,21.613995361000036],[59.52519938200004,21.791467285000067],[59.64903767900017,21.93750000000017],[59.673105877000125,22.068560791000152],[59.81265055400007,22.229317220000098],[59.840972900000054,22.42916666700006],[59.77805582700017,22.530277507000108],[59.52638956800013,22.579166667000095],[59.385032593000176,22.674167079000085],[59.41426056000006,22.609955485000114]]],[[[59.05678004600014,23.057548067000027],[59.16415909900019,22.951697863000106],[59.23475587899998,22.8441389460001],[59.19671455700018,22.93595972700018],[59.05678004600014,23.057548067000027]]],[[[58.90245638300007,23.28579600300003],[58.861627162,23.206655663000106],[58.97817930000008,23.177517627999976],[58.90245638300007,23.28579600300003]]],[[[51.53296187700005,23.31997024000009],[51.56542740300006,23.39695220800013],[51.47900255400009,23.415208445000133],[51.46955967200017,23.347489495000048],[51.53296187700005,23.31997024000009]]],[[[58.63176044700009,23.523396887000104],[58.76333126300011,23.491650819000085],[58.64084359999998,23.554693295000163],[58.63176044700009,23.523396887000104]]],[[[53.419919393999976,23.70083312700018],[53.466953937000085,23.743011331],[53.46497542800006,23.818374518000155],[53.39123102000008,23.81216919600007],[53.344376341999975,23.866847977000077],[53.231421493000084,23.867477502000042],[53.237087222000184,23.80740278900015],[53.388533054000106,23.759918585000037],[53.419919393999976,23.70083312700018]]],[[[53.143917458000146,23.77376814500019],[53.18582586500014,23.812978586000042],[53.106775457000026,23.88681292600006],[52.98770521800003,23.83986831500016],[53.143917458000146,23.77376814500019]]],[[[49.86355036300006,23.733928178000156],[49.770920192000176,23.85803462100006],[49.77163964900012,23.931059571000105],[49.710036089000084,23.990864487000124],[49.701042869000105,23.796071332000054],[49.86355036300006,23.733928178000156]]],[[[53.86877102700009,24.26695635500016],[53.834326993,24.255085304000147],[53.826233092999985,24.229904287000068],[53.80437956800006,24.202564896000126],[53.7515893640001,24.237998185000095],[53.721911737000084,24.227835846000062],[53.71049034700013,24.220821134000175],[53.69250390600007,24.20751116800011],[53.68674824500016,24.20490313400012],[53.66750275300012,24.190873710000176],[53.6236158370001,24.170818828000108],[53.62415543000009,24.171628218000137],[53.6236158370001,24.170818828000108],[53.63800499000007,24.150853879000124],[53.65581156600007,24.152562591000105],[53.732613669000045,24.129809743000123],[53.83126929800005,24.150763947000144],[53.90519357000005,24.14563781100003],[53.951148926000144,24.203644083000142],[53.919133062000014,24.210209134000024],[53.86877102700009,24.26695635500016]]],[[[53.81508150100012,24.264078524000126],[53.857889230000126,24.28800049100016],[53.85375234900005,24.287640762000137],[53.82074723000005,24.27963679600009],[53.813642586000185,24.2805361180001],[53.81508150100012,24.264078524000126],[53.814721772000155,24.265607372000147],[53.81508150100012,24.264078524000126]]],[[[53.33511332500018,24.30238964400013],[53.24832874800006,24.29528499900016],[53.23465905200004,24.293036694000023],[53.23205101800005,24.282604559000106],[53.22890339200006,24.283234084000014],[53.30624508700009,24.291597779000085],[53.30588535800007,24.29204744000009],[53.30624508700009,24.291597779000085],[53.3050759680001,24.29438567699998],[53.31128129100006,24.29402594900006],[53.31568796900012,24.28062605000008],[53.33187576500018,24.296454118000156],[53.33133617200019,24.297173576000034],[53.33511332500018,24.30238964400013]]],[[[54.404856899000094,24.356528831000105],[54.4050367640001,24.357338221000077],[54.40440723800009,24.357068424000033],[54.404856899000094,24.356528831000105]]],[[[54.40440723800009,24.357068424000033],[54.40368778000004,24.357787882000082],[54.40368778000004,24.356888560000073],[54.40440723800009,24.357068424000033]]],[[[52.64542324800016,24.327390796000145],[52.60738192500003,24.265157710999972],[52.64047697600017,24.30167018600008],[52.64542324800016,24.327390796000145]]],[[[55.246802201000094,24.349963780000166],[55.41407610100009,24.393670831000122],[55.415874743000074,24.459681069000055],[55.22512853800015,24.376044119000085],[55.246802201000094,24.349963780000166]]],[[[51.557873098000016,24.41966123800006],[51.53386120000016,24.40976869600007],[51.558322758000145,24.417412933000094],[51.557873098000016,24.41966123800006]]],[[[54.499195781000026,24.477487646000156],[54.50630042500006,24.463098493000018],[54.55144639200006,24.448979137000094],[54.55540340900018,24.44933886600012],[54.55990001900011,24.460220663000143],[54.53274049400005,24.469573612000147],[54.53301029,24.4688541540001],[54.53274049400005,24.469573612000147],[54.499195781000026,24.477487646000156]]],[[[54.45557866200011,24.530187918000024],[54.45234110299998,24.531626833000132],[54.45234110299998,24.527579884000033],[54.45557866200011,24.530187918000024]]],[[[54.44172910300017,24.54106971500005],[54.44091971500018,24.54106971500005],[54.44262842500018,24.539990527999976],[54.44172910300017,24.54106971500005]]],[[[54.50405212000015,24.546645511000065],[54.50099442499999,24.547185105000096],[54.502523273,24.545026732000167],[54.50405212000015,24.546645511000065]]],[[[54.53480893400018,24.53297581600009],[54.529772731000094,24.547994494000022],[54.5306720530001,24.5476347660001],[54.529772731000094,24.547994494000022],[54.53058212100012,24.54448713800008],[54.531571375000055,24.545746189000056],[54.53058212100012,24.54448713800008],[54.51439432400019,24.53261608700012],[54.51511378100014,24.529018799000028],[54.52006005300012,24.5249718500001],[54.53480893400018,24.53297581600009]]],[[[54.51016751000003,24.530367782000155],[54.463402764000136,24.537652291000086],[54.48561601800009,24.527310087000046],[54.4862455440001,24.52569130800009],[54.48678513700008,24.52488191800012],[54.499195781000026,24.503298189000134],[54.50261320499999,24.502578731000085],[54.50378232400004,24.521104765000132],[54.51421445900013,24.51858666300018],[54.51016751000003,24.530367782000155]]],[[[54.49047235699999,24.546375715000124],[54.48885357800009,24.54295829100016],[54.491011951000075,24.546555579000085],[54.49047235699999,24.546375715000124]]],[[[51.72361815,24.601773953000077],[51.71327594700006,24.592510936000053],[51.70761021800013,24.578211715000066],[51.72074032000012,24.56562120600006],[51.72361815,24.601773953000077]]],[[[54.54667998500014,24.616612766000117],[54.532290833000104,24.610857105000036],[54.539755206000166,24.61265574900017],[54.54694978200018,24.61733222400011],[54.54667998500014,24.616612766000117]]],[[[54.60891307100019,24.647999106000157],[54.59353466400012,24.633699885],[54.605495647000055,24.630911987000104],[54.608193613000026,24.64781924100015],[54.60891307100019,24.647999106000157]]],[[[55.36425366000009,24.556268257000056],[55.386017253000034,24.54124957900018],[55.56003606900015,24.638196496000035],[55.47487027200003,24.67461903800006],[55.3543611180001,24.592870664000145],[55.36425366000009,24.556268257000056]]],[[[54.793378891000145,24.851501714000165],[54.708354195000084,24.81420938800011],[54.65612747800009,24.734244090000118],[54.6826212150001,24.659241926000107],[54.7144035500001,24.664276835000067],[54.80991155000004,24.800524125000095],[54.793378891000145,24.851501714000165]]],[[[55.0000282310001,24.976071788000183],[55.11001531699998,24.970495992000167],[55.1116340960001,25.056201383000143],[55.0000282310001,24.976071788000183]]],[[[56.357914586000106,25.54714128800009],[56.353015258000084,25.565890175],[56.307462619000034,25.38166603100018],[56.33830936500004,25.365028573000075],[56.32562892500016,25.21915853700017],[56.26168712700013,25.144964469000058],[56.32311082299998,24.944955246000063],[56.32248129700014,24.94585456900012],[56.32311082299998,24.944955246000063],[56.31070018000014,24.83245005800012],[56.484269333999976,24.486930528000073],[56.51835363900011,24.368309951000185],[56.583374623000054,24.28080591400004],[56.74831028600016,24.15004448900015],[56.7707933370001,24.060831742],[56.877542865,23.992483267000125],[56.9791662560001,23.894187367000143],[57.198331038000106,23.769990992000032],[57.41416832900006,23.654158313000096],[57.51417294100003,23.641657737000173],[57.65662555300008,23.570791159],[57.799977487000035,23.572499871],[57.908345795000116,23.54084373500018],[58.067525795999984,23.581672957000137],[58.19415034000019,23.54830810800007],[58.28830935800005,23.559189905000096],[58.355039053999974,23.508378210000103],[58.458371157000045,23.587518549000094],[58.59830566700015,23.585809838000046],[58.468083835000016,23.620793465000077],[58.31416625999998,23.60583292600012],[58.19583333300011,23.68194478400011],[58.095833333000144,23.71583353699998],[57.862500000000125,23.714166260000184],[57.77083333300004,23.768055216000107],[57.55416666700012,23.791666667000186],[57.4860241610001,23.827187874000174],[57.14578654000019,23.95421346000012],[56.94802653000016,24.098026531000073],[56.730603027000086,24.372269694000124],[56.720916748000036,24.404083253000124],[56.57151692700006,24.52984924300017],[56.52091878300007,24.64574788400006],[56.45452270500016,24.712856038000098],[56.46257120700011,24.779136149000067],[56.404789225000115,24.863121541000112],[56.359266343000115,25.012752885000168],[56.357857717000115,25.189837333000128],[56.38073967200006,25.326025873000106],[56.356900113999984,25.373834037000165],[56.357914586000106,25.54714128800009]]],[[[49.70158246200009,25.702274340000088],[49.763545751000095,25.729343934000042],[49.6690270040001,25.82988813900016],[49.557421138000166,25.80317827400006],[49.58961686700013,25.724667459000102],[49.70158246200009,25.702274340000088]]],[[[50.1301154300001,25.730465073000175],[50.195052389000125,25.74707308400002],[50.10156250000017,25.9125],[50.11583252000014,25.97416687000009],[50.009373529000186,25.982990604000065],[50.01065125700018,26.0750393780001],[49.98235080500018,25.983762141000057],[50.05312745000009,25.802638681000076],[50.1301154300001,25.730465073000175]]],[[[51.884596797000086,23.97773438500019],[51.78367403200008,24.03320470700004],[51.764294767000024,24.159899204000055],[51.78172323100006,24.263440446000118],[51.63693563600009,24.21255855400011],[51.537500000000136,24.24880981400014],[51.49120279900012,24.307870482999988],[51.387541501999976,24.32208479900015],[51.26721221200006,24.289709203000143],[51.294821399000114,24.415974018000156],[51.454166667000095,24.556548056000054],[51.4125,24.618055217000176],[51.50787079300005,24.851245888000108],[51.597916667000106,24.954166667000038],[51.62361043300007,25.1875],[51.5923151990001,25.274180953000155],[51.52901192100012,25.29056660000009],[51.52427313200013,25.452179542000124],[51.476389567000126,25.51250000100009],[51.48958333300004,25.59583333300003],[51.55833333300018,25.654166667000027],[51.52541707400013,25.699582926000176],[51.6,25.79626799700003],[51.58262950000005,25.90842781400005],[51.52083333300004,25.948611450000044],[51.4,25.97083333300003],[51.35833333300013,26.104166667000015],[51.24861043300007,26.15694478400019],[51.16034384800008,26.08720404000013],[51.06347765000004,26.049484089000146],[51.04014945900013,25.977765543000032],[50.89892892100005,25.707879002000027],[50.93095569900015,25.605147560000034],[50.80535685199999,25.52083333300004],[50.75235034000008,25.437693798000055],[50.77798101900004,25.129136401000153],[50.80019505700005,24.986455504000105],[50.86026898600005,24.89585226200012],[50.86863268100012,24.781368565000037],[50.76518511300003,24.723557938000056],[50.71808617099998,24.868243075000066],[50.556018066000036,25.08101806600007],[50.55441487600012,25.18725077300013],[50.487858073000154,25.403808594],[50.40450543100002,25.41059198400012],[50.19035313200004,25.45586948900018],[50.24126562200013,25.347221997000076],[50.23658914700019,25.28274060600006],[50.33146762300004,25.259807894000062],[50.3284099280001,25.192268808000108],[50.40143487800009,24.944325720000165],[50.37382569200008,24.831460803000084],[50.47454976100016,24.60546117300015],[50.554769287,24.559415884000032],[50.54370762600007,24.45509452700003],[50.62986267800005,24.108765607000123],[50.69056691600008,24.018473674000063],[50.715208340000174,23.88492435000012],[50.8544245650001,23.876829279000106],[50.845070444000044,23.818284586000175],[50.776002511000115,23.768462145000115],[50.82141827400005,23.66728841500003],[50.859009935000074,23.490571633000172],[50.90109820700013,23.421683564000034],[51.21694011,23.37195105500018],[51.23447689000011,23.424381530000176],[51.32782651800011,23.46215305600009],[51.38448380700004,23.52717404000009],[51.541055775000075,23.43841095400012],[51.57397096200009,23.35387468200014],[51.72352821800001,23.430047259000105],[51.75734272700004,23.321139359000085],[51.700055913000085,23.232915866000155],[51.773890253000104,23.209083832000033],[51.77056276100012,23.136778340000035],[51.71696316700013,23.09361088100013],[51.746730727,23.024992609000037],[51.833335440000155,23.064292982999973],[51.882258559000036,23.195234273000096],[51.8267703890001,23.247125155000163],[51.877492153,23.299105969000152],[51.940534628000194,23.10782017000014],[52.03901039200014,22.969684303000065],[52.09629720600003,23.00808535500005],[52.07606246000017,23.108449695000104],[52.01733673100017,23.172481425000115],[52.12417619000013,23.205936205000114],[52.17157046200009,23.437241835000123],[52.234523005000085,23.41754668200008],[52.2732837850001,23.558290583000087],[52.35692073500013,23.459814819000144],[52.37283873600012,23.57330926100019],[52.550904501000105,23.745169704000148],[52.59569073900008,23.844274993000056],[52.65675470500008,23.903090655000142],[52.85811291200014,23.865409061000037],[52.97565430300011,23.92314553700004],[53.08051525399998,23.945718520000185],[53.17242596700004,23.916310689000113],[53.272340646000146,23.948146690000158],[53.36874796900008,23.886363265000114],[53.49878993700008,23.970000215000084],[53.57622156499997,23.98843631700015],[53.81076475500004,23.92026770600006],[54.01922760500008,23.93699509600009],[54.201879913000084,23.968021708000094],[54.31510455800009,24.053007640000146],[54.609542597000086,24.03286282700003],[54.71575253000003,24.087451675000125],[54.73481816000009,24.19752869400014],[54.62132371500013,24.288090423000142],[54.65432883700004,24.3726266970001],[54.6269264770001,24.537279088],[54.56259798600013,24.43647856299998],[54.48258576600017,24.425624634000144],[54.41574850900008,24.27140580100007],[54.321489745,24.241955201999986],[54.21258518300016,24.24164591100009],[54.16518757300008,24.29384608400005],[54.12570733600012,24.248340389000134],[54.00370288200014,24.110192784000162],[53.80857937700006,24.04997566300017],[53.707379730000014,24.066509899000096],[53.57766384300015,24.046808642000087],[53.53866922900011,24.0866129960001],[53.410969984000076,24.10915083000009],[53.23921194000013,24.09555742100008],[52.978714872000126,24.155391926000163],[52.86998396300015,24.13196811600011],[52.76442417400017,24.126471690000074],[52.640746772000114,24.16785106500015],[52.45674587300016,24.0919132680001],[52.28286689000015,23.984507952000115],[52.20774109400003,23.96368939000007],[52.0334098030001,23.974022075000164],[51.884596797000086,23.97773438500019]],[[54.255569439000055,24.41390557700015],[54.26177476100014,24.361654966000117],[54.26159489700018,24.36255428800007],[54.255569439000055,24.41390557700015]],[[54.53588812100003,24.542328765000093],[54.537147172000175,24.542148901000132],[54.53696730700011,24.542148901000132],[54.53588812100003,24.542328765000093]],[[52.320767989000046,24.474969544000032],[52.31762036200007,24.46471727300002],[52.318969345000085,24.473800426000082],[52.320767989000046,24.474969544000032]],[[50.970971525000095,25.632724879000136],[50.97097147000005,25.632950637000192],[50.971220453000115,25.633176444000128],[50.97570267300006,25.635434837],[50.97545363100005,25.635434795000037],[50.97570267300006,25.635434837],[50.975951535000036,25.636337910000066],[50.980434772000194,25.633629484000096],[50.97993699600005,25.631823353000186],[50.980434772000194,25.633629484000096],[50.97420943800006,25.630693665000138],[50.97296402100011,25.63182222900008],[50.971967513000095,25.63340234700007],[50.971220453000115,25.633176444000128],[50.97097147000005,25.632950637000192],[50.970971525000095,25.632724879000136]],[[50.98018636700016,25.629791566000165],[50.97993733500016,25.62979153100008],[50.97943935200004,25.629339947],[50.97919032300018,25.62933991200009],[50.97943935200004,25.629339947],[50.97968830500014,25.6297914970001],[50.97993733500016,25.62979153100008],[50.98018636700016,25.629791566000165]]],[[[50.62500391200018,26.12505283100012],[50.46064032500004,26.23100151700004],[50.493739380000136,26.04248974899997],[50.46304552000015,25.95707214300012],[50.536870865000026,25.87721234700018],[50.60893615500004,25.918004176000125],[50.60893689900013,25.917778433000024],[50.60893838800018,25.917326945000127],[50.60893689900013,25.917778433000024],[50.60893615500004,25.918004176000125],[50.60893392100007,25.918681408],[50.611650988000065,25.92749279500015],[50.61548991100017,25.975360946000137],[50.617444794,25.988685020000162],[50.620965975000104,26.058900274000052],[50.62046539700009,26.05912470100003],[50.620965975000104,26.058900274000052],[50.62268508000017,26.06838591899998],[50.62500391200018,26.12505283100012]]],[[[48.849294959000076,27.60730823100016],[48.85435384100015,27.69564615900009],[48.78095296200007,27.70595194500015],[48.805517578000035,27.827815755000074],[48.7625,28.009166463000042],[48.623610433000124,28.07638855000016],[48.61666666700006,28.2083333330001],[48.514583333000076,28.345833334000133],[48.54583333300019,28.408333333000144],[48.4969405810001,28.496917599000028],[48.42416585299998,28.54083353700014],[48.390277100000105,28.61250000100017],[48.3875,28.742499798000097],[48.28125,28.812500001000046],[48.2875,28.883333334000042],[48.21694539400016,28.916944378000096],[48.16845296200012,28.995833334],[48.13499959300003,29.137500001000035],[48.05595614900011,29.33815425100005],[47.98721377900006,29.388686998000026],[47.892432424,29.325374885000144],[47.73296380100004,29.411294342000076],[47.79699707000009,29.46791443900014],[47.79882295800019,29.46975973200017],[47.95653796400012,29.6322217500001],[47.89547399700007,29.677547581000056],[47.71722836700013,29.65038805500012],[47.76237433400013,29.604342766000173],[47.400577075000115,29.60578168100011],[47.27952832800008,29.666845648000162],[47.11962886800006,29.522414528000127],[46.96170791600014,29.43095347600007],[47.018095409000125,29.379242458000192],[46.846055101000104,29.214036998000097],[47.05991388400014,29.165113879000046],[47.115761783000096,29.174017167000045],[47.211719445000085,29.264129236000144],[47.25821439500004,29.260082287000046],[47.59168301000017,28.92355597700015],[47.69024870600009,28.853318926000156],[47.72766050300015,28.74962709400006],[47.79852708000004,28.659245228000145],[47.812286708000045,28.561398989000168],[47.886300912000195,28.48054993700009],[47.93936091300003,28.35491464800009],[48.01796165999997,28.291512443000045],[47.848169657000085,28.055890067000064],[47.86381786100003,27.86955053900016],[47.78386813100013,27.836455488000183],[47.86804467500019,27.747782334000078],[47.95401986200011,27.750480300000163],[47.83207179300007,27.62214704400003],[47.71767802800014,27.626373858000136],[47.633771282,27.544175823000103],[47.671812604000024,27.48949704299997],[47.567940908000026,27.397406465000074],[47.55067392400008,27.336972024000033],[47.60391379000015,27.205131412000128],[47.728919554000186,27.25333507300013],[47.77046823300003,27.355318193000016],[47.99556854100018,27.359455075000028],[48.05393454100005,27.221319209000058],[48.150251933000106,27.115558936000184],[48.22678423900004,27.108274427000083],[48.28631935800007,27.034260223000103],[48.27912478200005,26.82777588100015],[48.321302986000035,26.704478829000152],[48.438124920000064,26.61742445500016],[48.52895644600011,26.51526147000004],[48.56771722600013,26.42577892700018],[48.64847634600005,26.387467807],[48.743804483000076,26.299604043000045],[48.798213467000096,26.184041161000152],[48.91161797700016,26.102832380000052],[48.863863976,26.01406929400008],[48.68939549900011,25.92962295400008],[48.59073987099998,25.950307361000114],[48.52985576800006,25.85021281700017],[48.68750692300017,25.870177766000154],[48.83265750100003,25.92737464900017],[48.90181536600005,25.81684796900015],[48.97457052000016,25.76891410400009],[49.10128499600012,25.76153966300018],[49.129433775999985,25.628080272000147],[49.07178723300012,25.59993149200011],[49.067830216000175,25.514226101000133],[49.15992079400007,25.178509181000038],[49.09966621700005,24.946663957000112],[49.14409272600017,24.730556870000044],[49.066661098000054,24.587654597000153],[48.945162689000085,24.44205435700019],[48.92591719700005,24.35374093200005],[48.84869641100016,24.284521474000144],[48.83745060200005,24.173663820000172],[48.87748358100009,23.964732942000126],[48.91396574800018,23.874738016000038],[49.08212943700016,23.77547685700017],[49.122059336,23.612969363000047],[49.429987204000156,23.30225359600007],[49.527473714000166,23.181294781000133],[49.49177062900003,23.027061050000043],[49.25138184600013,23.085247186000117],[49.184742082000184,23.05871718600008],[49.243287947000056,22.924268540000185],[49.24814428600013,22.849444946000176],[49.33178123700009,22.858977760000073],[49.34239323700007,22.708521181000037],[49.30669015200016,22.614002433999985],[49.355433406000145,22.453203652000184],[49.27422462600015,22.30679402300018],[49.2840272360001,22.173874225000077],[49.33438927100019,22.051476494000156],[49.46919764500018,22.023597511000105],[49.55526276500018,22.095183546000158],[49.62028374900018,22.03447930800013],[49.693308699,22.073509885000192],[49.693308699,22.133224868000184],[49.75823975100019,22.23484825999998],[49.75985853100019,22.37109555],[49.84106731100019,22.307873210000025],[49.915711041,22.6914340620001],[49.829645921,22.560133044000054],[49.782521446000146,22.598444163000124],[49.7971803960001,22.66778189300004],[49.899433312000156,22.824084064000033],[50.07641989100006,22.999631728],[50.16410379000013,22.970313829000133],[50.21608460500005,23.01483027000006],[50.39639867500006,23.02049599900016],[50.47104240500005,23.139206509000132],[50.35089297900004,23.14460244100019],[50.10888541700007,23.10017593200007],[50.052048263000074,23.049454169000057],[49.936755177000066,23.038122711000028],[49.918858668000155,23.089563932000033],[50.058523382000146,23.13075288200008],[50.21770338400012,23.15107756000009],[50.30538728400012,23.276353121000113],[50.246661554000184,23.41233061500003],[50.113471959000094,23.518270752000035],[50.074621247000096,23.646064413999966],[50.016075382,23.651370414000098],[50.055195891000096,23.45217058100002],[50.045483212000136,23.344701597000096],[49.94314036400016,23.329233258000045],[50.004833856000175,23.4490229540001],[49.944759143000056,23.514493599000104],[49.928481413999975,23.595072854000136],[49.855366532000176,23.652539533000095],[49.93010019399998,23.694627805000096],[49.748976734000166,23.742831466000155],[49.67676117399998,23.659104584000147],[49.51047652700004,23.802546450000023],[49.50112357800003,23.976385402],[49.44473608600015,24.10417906500004],[49.53233005300007,24.141950591000125],[49.631345410000165,24.118658150000158],[49.62936690200007,24.239527033000115],[49.582422291000114,24.494934494000063],[49.59357388400008,24.59332032500015],[49.54851785000017,24.8465694140001],[49.598879884000155,24.94495524500013],[49.54635947700018,25.141457113000115],[49.562996935000115,25.262685724000164],[49.62253455000018,25.284177156000055],[49.68557453,25.1948768420001],[49.631435342000145,25.097929926000177],[49.633054122000146,24.978679822000117],[49.67487259700016,24.945944500000166],[49.714083039000116,24.713739547000102],[49.73215941200016,24.450418052000032],[49.72586415700016,24.318307644000186],[49.74861700499997,24.259042321000095],[49.83684049800013,24.254365846000155],[49.81804466600016,24.48180439200013],[49.82658822600007,24.80574019300002],[49.7429512760001,24.868243075000066],[49.76696317500006,25.006828601999985],[49.85095985400005,24.845580159],[49.903300397000066,24.83101114200008],[49.90923592200011,24.988122704000034],[49.89412731200002,25.116455960000167],[49.76903161600006,25.367456743000048],[49.68143764800004,25.41817850600006],[49.60022886700011,25.69579922200012],[49.54393130700004,25.674395357000094],[49.45121120400012,25.70542196800011],[49.323057813,25.70883939099997],[49.28366750600003,25.791487087],[49.269817948000195,25.947159733999968],[49.23015784600017,26.069647396],[49.36874337300014,25.990686921000133],[49.43916028900003,25.899046004000013],[49.532240121000086,25.90785936000009],[49.62478035900011,26.127743600000088],[49.554273511000076,26.239439399000105],[49.62334144400012,26.266329128000166],[49.68539466500016,26.177566042000024],[49.730990293000104,26.225679771000102],[49.82396540200011,26.235136528000112],[49.92713243200012,26.108767905000093],[49.98868284600019,26.12545074400009],[50.04377450100009,26.202117533999967],[50.15520691100005,26.133918077000033],[50.22361043300015,26.22083333300003],[50.22986043300017,26.34652811700016],[50.20365187300007,26.396567327000128],[50.06583252000007,26.46583353700015],[49.99166666700006,26.616666667000175],[50.05711687000013,26.73194478400012],[49.96364490600013,26.832272491000083],[49.775010208000026,26.90378844300011],[49.66666666700013,26.987500000000125],[49.51290469700007,27.17950073300011],[49.48750376000004,27.07638855000016],[49.28004353800003,27.17171020500018],[49.24830322300005,27.214968872000156],[49.233795462000046,27.356563946000165],[49.23352273500012,27.357109400000184],[49.233795462000046,27.356563946000165],[49.12279459600012,27.435538737000172],[49.27194417300018,27.43750000000017],[49.218826388000195,27.530775925],[49.03988637100008,27.560836672999983],[48.9726530800001,27.621015748000048],[48.8481590990001,27.60720031],[48.849294959000076,27.60730823100016]],[[47.31756965000011,29.399747001000037],[47.309745548000194,29.444443306000153],[47.44212575500012,29.505147545000113],[47.62315928100014,29.540221104000125],[47.62333914600015,29.501370392000126],[47.49275758500005,29.476459171000158],[47.31756965000011,29.399747001000037]]]]},"properties":{"objectid":830,"eco_name":"Arabian-Persian Gulf coastal plain desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Palearctic","eco_biome_":"PA13","nnh":2,"eco_id":811,"shape_leng":164.399321276,"shape_area":10.8965957262,"nnh_name":"Nature Could Reach Half Protected","color":"#F6CE5C","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":122019.38270433713,"percentage":0.46250684646932433}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[48.966307768000036,14.307936273000166],[49.00486135000017,14.409835433000012],[48.99273682500018,14.446359612000037],[48.73333336200011,14.462559233000036],[48.588406507,14.432779743000026],[48.49708273600004,14.389103156000147],[48.33428818700003,14.271970493000083],[48.10053861900013,14.257164229000182],[48.17885037400015,14.128719065000155],[48.36617915599999,14.17134693000014],[48.49667078500016,14.099311234000083],[48.630489905,14.08051540300005],[48.663495024000156,14.15506920100006],[48.74012985700017,14.098021030000098],[48.82123611100019,14.154439676000095],[48.86208503500018,14.233375033000016],[48.966307768000036,14.307936273000166]]],[[[58.667103804000135,20.174591384000053],[58.781587500000114,20.276754369000173],[58.825294552000116,20.420825761000117],[58.94580370600005,20.493311117000076],[58.93975769200006,20.571400535000066],[58.85973858600005,20.629198679000183],[58.78968140000012,20.535309457000096],[58.772504348000155,20.445826913000133],[58.68751841400007,20.415249964000168],[58.6305913290002,20.33745860700003],[58.624206142000105,20.224144029000172],[58.667103804000135,20.174591384000053]]],[[[55.99332943000013,25.385802913000134],[55.881723563000094,25.350189760000035],[55.80168390200009,25.356754811000087],[55.88631010800009,25.195506369000043],[55.83208098800003,25.088666909000153],[55.76076474900009,25.068432162000192],[55.77479417300003,24.98668378900004],[55.71894627300003,24.88146310900015],[55.782258546000094,24.600874631000067],[55.74196892000003,24.522183952000148],[55.867154547999974,24.47469974800009],[55.50688613700004,24.110834048000072],[55.58485735700003,24.082595336000054],[55.68342305200002,24.16281486200012],[55.70491684800015,24.054176759000143],[55.77254586600009,24.143839167000067],[55.82623539200006,24.082685268000034],[55.83082193500002,23.985018894000063],[55.76346271400013,23.949675537000076],[55.694182185000045,24.048402360000125],[55.74214878100008,23.931239435000066],[55.68243379800009,23.859473536],[55.80914827600009,23.781412382000042],[55.819310613000084,23.725294687000144],[55.664267492000135,23.759648789000096],[55.49582447300014,23.740493229000037],[55.486831254000094,23.64651407500014],[55.569928610000034,23.624390753],[55.69403505500014,23.552714785999967],[55.65059779800015,23.447853835000103],[55.76427210500003,23.39974010600008],[55.841254071000094,23.30369251100018],[55.765800954000156,23.25737742600012],[55.614714850000155,23.273025630000063],[55.402654710000036,23.2029684420001],[55.275580508000075,23.28102959600011],[55.24230558800008,23.26079485000008],[55.28430392900003,23.14460244100019],[55.419202237000036,23.11258657700006],[55.441505422000034,23.062134610000044],[55.41794318400002,22.951787795000087],[55.32342443700003,22.98047616800011],[55.27827847000003,22.932902032000072],[55.31011447000003,22.871208539000122],[55.266497353000034,22.82048677600011],[55.32747138900004,22.655551113000058],[55.430533692000154,22.62641307900003],[55.38772596299998,22.51678572100002],[55.404453353000065,22.443311110000025],[55.38295955600006,22.318665074000137],[55.444742981000104,22.2076887340001],[55.433861184000136,22.087269512000148],[55.47118304900005,22.014514358000042],[55.6570014400001,22.00583299500005],[55.762508009999976,21.92221041100015],[56.03255444000018,21.85663799500003],[56.06694310700004,21.775162081000133],[56.16500044000014,21.81436199500007],[56.17705544000012,21.743998995000084],[56.12265193900015,21.65046879400012],[56.24846709300016,21.546237369000096],[56.36618834899997,21.493447165000077],[56.23587658400015,21.404144486000177],[56.11221980300013,21.40135658700018],[56.07647343999997,21.323443994000172],[56.131637440000134,21.291194994000136],[56.128137803000186,21.138844482000138],[56.155746990000125,21.050980718000176],[56.342895908,21.075981871000124],[56.3048545850001,20.914823360000128],[56.412413502000106,20.8856853260001],[56.31339814500018,20.807714105],[56.29019563600019,20.742243460000054],[56.20952644800008,20.69323040800009],[56.07885495500011,20.674254713000096],[56.04692902300019,20.73432942600016],[55.96284241100011,20.64988308600016],[55.89557312199997,20.73630793400008],[55.746915188,20.691791493000153],[55.60365318600009,20.493490982000083],[55.683153255000036,20.4073359300001],[55.84970769800009,20.415339896000148],[55.993239496000115,20.358053082000083],[56.13146529500017,20.42775054000009],[56.129576719000056,20.322799657000076],[56.06329668400008,20.260746436000034],[56.1146479730001,20.22297491000012],[55.99629719100005,20.118383756000128],[55.95969478400019,20.116944841000134],[55.86958271500009,19.987352533999967],[55.75644800200007,19.984114975000068],[55.67451976300015,19.85056565100018],[55.496364066000126,19.73563229399997],[55.33232772500003,19.65640202100019],[55.50454789700018,19.835906702000102],[55.58296877999999,19.963520500000072],[55.71462952800016,20.03726490800011],[55.79269068100001,20.152737859000126],[55.60248406700009,20.06451436599997],[55.64969847500004,20.223244707000163],[55.60859945700014,20.250404233000097],[55.46578711600006,20.130074943000125],[55.46245962500018,20.078363925000076],[55.36928986100014,20.041761518000158],[55.13924328100018,20.067661993000115],[55.05416741600004,20.033577687000104],[54.933298533000084,19.84463012600014],[55.016305958000146,19.81621154900006],[55.15021501000018,19.813513583000088],[55.34590748800019,19.872329245],[55.47271189700007,19.996795416000055],[55.47388101500013,19.88518955000012],[55.393121895000036,19.882941244999984],[55.28205562200009,19.795617074000177],[55.152823044000115,19.79498754900004],[55.08987050100012,19.744175853000172],[54.93635622800008,19.691745378000178],[54.852989074,19.61800097000014],[54.794982802000106,19.624116360000073],[54.45719744200011,19.483822121000117],[54.36726523700014,19.407289815000127],[54.35512438900014,19.28372296499998],[54.232906523000054,19.16591177700019],[54.18874981100009,19.167170828],[54.003939130000106,18.94611746900017],[53.97983730000004,18.82371973900007],[53.78018780500014,18.689181161000022],[53.66399539700018,18.549246649999986],[53.48539003900015,18.493308819000106],[53.420908648000136,18.419294615000126],[53.23492884900003,18.406164513000135],[53.0093788800001,18.57874441400014],[52.98024084499997,18.676051059000088],[52.802984470000126,18.748086755000145],[52.73931246900014,18.708426653000117],[52.626537485000085,18.686573127000088],[52.583639823000055,18.77272817900007],[52.706307350000145,18.81337753500003],[52.61088928100014,18.93289743500003],[52.405124397000066,18.853757095000105],[52.42490948200009,18.813737264000054],[52.361327413000026,18.724434585000154],[52.19216493599998,18.66912627900018],[52.1341586640001,18.68837177100005],[52.04746401900013,18.65087004200018],[51.925066289000085,18.72596343200007],[51.884776661000046,18.640797635000126],[51.82164425300016,18.68819190700009],[51.68881438700009,18.67677051700008],[51.64151004800004,18.708426653000117],[51.51605462200013,18.65033044800009],[51.36874567100011,18.654377398000122],[51.21361261800001,18.612289126000064],[51.11585631200012,18.496456446000025],[51.13411254900012,18.36947217300019],[51.089416244,18.18484135700004],[51.01387319200006,18.22477125600011],[50.972864106000145,18.30418139300008],[50.98176739500002,18.47406332700001],[50.95406827600016,18.539444040000035],[50.87321922400008,18.532968921000133],[50.769977053,18.562826413000153],[50.69290515300003,18.505269802000043],[50.565651084000024,18.496546379000108],[50.41231667500011,18.384221055000125],[50.375894132000155,18.21146128999999],[50.22750599500006,18.268298443000106],[49.961936194000145,18.270007155000087],[49.79583141200004,18.15741203500005],[49.794482429000084,18.10039501700004],[49.64510503800017,18.078721356000074],[49.59807049500006,17.839951353],[49.44869310300004,17.922778913],[49.09013340300015,17.760091555000088],[49.00559713100017,17.81566965700017],[48.96503770600009,17.736259521000136],[48.84812584000008,17.66215538400013],[48.73607031300003,17.635625384000036],[48.51843437800011,17.53687982300005],[48.47625617400007,17.48804663599998],[48.4047600720001,17.465923314000065],[48.377150885,17.52321012800013],[48.28380125600012,17.464394466000044],[48.28622942600009,17.279943515000127],[48.18883284800006,17.211055446000046],[48.19126101800009,17.11392866500006],[48.09467383000009,16.94170849300008],[47.99889603200006,16.849887712000168],[47.96319294700015,16.767599745000155],[48.06544586400008,16.769308457000136],[48.05897074500018,16.714000151000164],[47.847899861000144,16.67973598100002],[47.73251684200011,16.71283103200011],[47.63512026500018,16.584227980000037],[47.65301677300016,16.53422567400014],[47.55723897500013,16.35211296000017],[47.42332992300015,16.29545567100007],[47.36721222700015,16.238888314000064],[47.293594921000135,16.291961411000102],[47.22218210800003,16.287903865000146],[47.1621304250001,16.214056525000103],[47.179983628000116,16.140209184000184],[47.12885854600006,16.098010704000103],[47.10938232500018,16.00549865100004],[47.17430306400013,15.982776393000051],[47.28142228299998,16.12154447200004],[47.597888332000025,16.07781973600015],[47.59141321300012,16.00560417500003],[47.63530012900014,15.90137275],[47.690518503000135,15.870975665],[47.77172728300013,15.930240988000094],[47.88126470900016,15.806764071000032],[48.000694676000194,15.825739766000027],[48.06985254199998,15.787338715000033],[48.275167765000106,15.838959800000168],[48.35619668100014,15.820793495000146],[48.409976139000094,15.863151563000145],[48.60809678600003,15.913873327000033],[48.562681023000096,15.834283326000161],[48.487947361000124,15.842647021000175],[48.45224427599999,15.795612478000066],[48.32427074800012,15.734908239000106],[48.249267290000034,15.764675798999974],[48.12740915300009,15.678161018000026],[48.080374610000035,15.693539425000097],[48.02191867700009,15.599830068000074],[47.961754032000044,15.666739628000187],[47.859501115000114,15.55333511800012],[47.833510708000176,15.61835610200012],[47.73764297800005,15.615298407000182],[47.573606637000125,15.564126983000165],[47.50274005900019,15.628878170000121],[47.422610465000105,15.583822136000038],[47.265049243000135,15.389028981000138],[47.15946883400005,15.423922676000018],[47.14004347800005,15.54272311800014],[47.03113557800003,15.504052270000102],[46.989227171000095,15.392446404000168],[47.05784544300013,15.276523793000024],[47.05532734100018,15.166806503000032],[46.989047307000135,14.997374229000172],[46.896057407,14.955555753999988],[46.97708632300004,14.89718975400018],[46.92618469600012,14.795836159000032],[46.834723644,14.796016023000163],[46.89938489899998,14.510841003000053],[46.85199062700008,14.45148574700005],[47.0329342230001,14.26046974500008],[47.06063334200019,14.12907879400018],[47.1917544960001,14.053625674000159],[47.258484192000026,14.08788984400013],[47.197330293,14.179440829000043],[47.33510643000017,14.178361642000027],[47.41172866800008,14.20363259200019],[47.52783114400012,14.161364455000125],[47.60580749200017,14.07588400300017],[47.74986984000003,14.060136581000165],[47.70510519800007,14.211647676000041],[47.60252614500018,14.274837704999982],[47.53380838500004,14.44604189200004],[47.93131057199997,14.347741738000025],[47.97190135200009,14.328527869000027],[47.94856014300018,14.471651672000121],[47.966123521000156,14.552443213000174],[48.092579846000035,14.707000942999969],[48.20849814400003,14.773741781000183],[48.57732909100008,14.910736133],[49.03397693000011,15.040705134000063],[49.30094028200011,15.093395269000041],[49.51521349900014,15.156623431000014],[49.7154360130001,15.188237513000104],[49.85945571700006,15.226876945000072],[50.18964723100004,15.247952999000063],[50.512813394000034,15.283079756000063],[50.83597955800013,15.290105107000045],[50.972973909000075,15.318206513000064],[51.21534853200012,15.297130459000073],[51.27422692400012,15.228769792000094],[51.282537362000085,15.220665074000067],[51.36904093400011,15.230959066000025],[51.48842570000011,15.311574300000132],[51.662166341000045,15.329500327000176],[51.65416666800007,15.398610433000101],[51.822813372000155,15.455309017],[51.88999272900014,15.508818677000022],[52.17384079700008,15.609697899000082],[52.119181435000144,15.701966348000042],[52.06052090999998,15.740628966000145],[51.964530961000094,15.736629385000072],[52.00852635400008,15.833952528000111],[52.12918038800012,15.805955460000177],[52.197096761000125,15.745833333000064],[52.15083414700001,15.987500000000182],[52.2083333330001,16.14583333300004],[52.28462727900006,16.265372721000176],[52.420833333000076,16.3986104330001],[52.6375,16.494775391000132],[52.57868148900013,16.554763969000135],[52.754819944000076,16.590275754],[52.84288917100008,16.644253668000033],[53.09573308300014,16.706754410000087],[53.27755342300003,16.80760788000009],[53.385509251000144,16.83459683700005],[53.58437524800007,16.82465353700013],[53.644035048000035,16.853062965000106],[53.70653579000003,16.98800774900019],[53.81875303099997,17.051928963000137],[53.918186030000186,17.15278243300014],[54.07159694300003,17.24795401800003],[54.24915586900016,17.25647684600017],[54.33154321100017,17.218124118000105],[54.51904543800009,17.218124118000105],[54.69092247800012,17.159884790000092],[54.783253120000154,17.16272573300006],[55.12251589100009,17.296670905000042],[55.244463961000065,17.381566906000046],[55.24743172400002,17.441641618],[55.2410465370001,17.5691654850001],[55.317488911000055,17.64587765500005],[55.34329945400003,17.662229263000086],[55.22381282400016,17.690878864000126],[55.215960603000156,17.730139970000153],[55.349448365000114,17.925731665000058],[55.54361238300015,17.989263274000052],[55.64354974600013,17.992832466000095],[55.71065054600007,18.04922569100006],[55.84984901500013,18.02424135100017],[55.984764454000015,18.027096704000087],[56.3059916900001,18.06421629600004],[56.4225484210001,18.00245157900008],[56.556221517000154,18.13122151699997],[56.547184245000096,18.22781575500005],[56.57941760600016,18.27090647700004],[56.62127278600008,18.478727214000173],[56.59684244800019,18.586490885000103],[56.79583333300013,18.75297648100002],[56.889593780000155,18.814096993000078],[57.06001530700007,18.882715265000172],[57.36479554900018,18.95807845300004],[57.68750000000017,18.932576497000127],[57.84050020500018,18.999668222000082],[57.76388956700015,19.180556234000164],[57.745833333000064,19.305832926],[57.76833292599997,19.37333374000019],[57.702315267000074,19.520833333000155],[57.7029406370001,19.58544551200015],[57.616335925000044,19.516017850000082],[57.54115260200007,19.573034868000036],[57.411920024000096,19.548573308000073],[57.346089650000124,19.65802080100019],[57.31173554800017,19.769446803000164],[57.330531379000035,19.903535720000036],[57.27648212400004,20.026562976000093],[57.30436110700009,20.234576165000192],[57.490610703000186,20.53072291500007],[57.63306331500013,20.653120645000115],[57.74008263900015,20.63468454300005],[57.76805155400018,20.502034541000114],[57.84908047100009,20.521729694000157],[57.9355952520001,20.729922748000092],[58.02067111700006,20.99855024300018],[58.05340644000006,20.99198519200013],[58.00322426900016,20.776957290999974],[58.13965142400002,20.859964716000036],[58.28839929000003,20.83127634200008],[58.31340044300015,20.760319833000096],[58.21609379800003,20.62569132300007],[58.296852917000194,20.583603051000182],[58.39209112200007,20.670027899000104],[58.69201502400017,20.878041089000078],[58.601453294000066,20.91176566500019],[58.51700695400007,21.015187701000116],[58.534813531,21.106109160000187],[58.59974458300019,21.235071941000115],[58.62456587100007,21.470694317000095],[58.537151768000115,21.532567674000177],[58.501628547000166,21.618273065000153],[58.48867831000007,21.794450254000083],[58.4338196650001,21.879166390000023],[58.40441183400003,22.01838144300018],[58.50324732700017,22.18394663200013],[58.55783617500015,22.327388498000175],[58.36798929100007,22.353199041000153],[58.17904172900006,22.45554189],[57.90025189500011,22.53836945],[57.59367301000009,22.496910704000015],[57.35526273500011,22.437285652000128],[57.30148327600011,22.442681584000184],[57.09140164700011,22.54430497600015],[56.935818933000064,22.570924908],[56.78356371000007,22.680282469000133],[56.68382889600002,22.7912588100001],[56.65217276000004,22.883799048000128],[56.710179032000156,22.949449557000094],[56.584453809000195,23.134170306000044],[56.581216250000125,23.22086495100018],[56.45153401100015,23.226350815000046],[56.37832919699997,23.274284680000164],[56.507871580000085,23.320560461000184],[56.57680957200017,23.36961281700019],[56.55990231800013,23.45450881900007],[56.404139739000016,23.569981769000037],[56.25835963600002,23.60496539700017],[56.11581709100005,23.79580153500018],[56.08307359300011,23.8976129670001],[56.08065359900007,24.04104665699998],[55.956367293000085,24.153911574000063],[55.975342988000136,24.271902626000042],[55.92210312300017,24.36156503500007],[56.03271973400018,24.511392087000104],[55.97588258100012,24.53261608700012],[55.973724208000135,24.618591276000018],[55.917426648,24.738021243000105],[55.89179597000009,24.854573381000023],[55.94953244499999,24.905115280000075],[55.92417156300007,24.968607416],[56.01131587000009,25.28615803100007],[55.99332943000013,25.385802913000134]],[[56.51952275800011,20.895308073000024],[56.75595452400006,20.847104410000043],[56.807575609000025,20.75978024000011],[56.76422828600005,20.708788680000055],[56.61152340300015,20.6622937300001],[56.569704928000135,20.676413087000128],[56.433367706000126,20.54286376300007],[56.341546925000046,20.638012036000134],[56.44272065500013,20.698536408],[56.447936723000055,20.766525155000124],[56.57941760600016,20.781363969000097],[56.5820256400001,20.86023451300008],[56.51952275800011,20.895308073000024]],[[57.55904911100015,20.881998106000026],[57.64088741699999,20.754833968000128],[57.55653100900014,20.756812477000153],[57.55904911100015,20.881998106000026]]],[[[56.05917276800011,25.900218368000026],[56.012675725000065,25.881675176000044],[55.89442740500016,25.74428564800013],[55.93972983500004,25.695529425000075],[55.887749022000094,25.597952983000084],[55.99076140300019,25.401591665000183],[56.03253986900012,25.73914654400005],[56.026694277,25.839960546000157],[56.05917276800011,25.900218368000026]]],[[[56.05914637300015,25.9017862500001],[56.09618173100006,26.080159081000147],[56.04423105600017,25.941583937000075],[56.05914637300015,25.9017862500001]]]]},"properties":{"objectid":831,"eco_name":"South Arabian plains and plateau desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Palearctic","eco_biome_":"PA13","nnh":2,"eco_id":840,"shape_leng":120.594027474,"shape_area":31.7647828746,"nnh_name":"Nature Could Reach Half Protected","color":"#FFD380","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":373278.1159255288,"percentage":1.4148873763036227}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[48.28380125600012,17.464394466000044],[47.91112220100018,17.231290192000017],[47.82991342000008,17.218070158000103],[47.65454562100018,17.065545139000164],[47.58466829800011,17.09702141000008],[47.39464154900003,17.0786752410001],[47.4011166680001,17.143606292000015],[47.25335805600008,17.20134276800019],[47.24031788600013,17.312678837000078],[47.27763975100004,17.364389855000127],[47.2532681240001,17.43399738100004],[47.15578161400015,17.516645077000078],[47.10874707100004,17.38354541400014],[47.05676625700005,17.34055782000013],[47.06980642600013,17.209256802000084],[46.94965700100005,17.199364259],[46.811611067,17.15511761500011],[46.90577008500003,17.041803037000022],[46.87492333900019,16.997916121],[46.75315513400011,16.94359706900019],[46.35043872200009,16.834329441000136],[46.20582773700005,16.82821405100003],[45.97038522500003,16.748803914000064],[45.82910173200014,16.562194590000047],[45.74465539200014,16.478377775000183],[45.69600206900003,16.351303570000027],[45.63592735600008,16.263619670000026],[45.59042166100005,16.378553028000056],[45.71057108600013,16.46192018100004],[45.7869235280001,16.539441742000065],[45.76902701900019,16.604642590000026],[45.67163044100005,16.49591455500007],[45.61794091500002,16.58305886100004],[45.53349457500002,16.59564937],[45.37593335300005,16.697812354000064],[45.32855311700001,16.613386451000054],[45.30763611700007,16.546054297000126],[45.21147227300008,16.40150421400017],[45.369412257000135,16.2642577150001],[45.44640419600006,16.23686927800003],[45.48231348000007,16.113012681000157],[45.39497479800019,16.11088246999998],[45.3006368500001,16.23047864300014],[45.167650774000094,16.238390858000116],[45.09248473100013,16.14192269800003],[45.0045374180001,16.215567161000024],[44.93180590300011,16.225000955999974],[44.88402829600017,16.306253318000017],[44.747999061000144,16.279777829000125],[44.65837675000006,16.32335759],[44.44267397000016,16.37193595000008],[44.39032582800013,16.29960033500015],[44.402699026000164,16.249155762000157],[44.801496690000135,16.065699318000043],[44.71298074100014,15.79705817100006],[44.79935517500013,15.842505876000132],[44.943788458000085,15.810859045000086],[45.00327498300015,15.859400049000044],[45.081321304000085,15.81728358900017],[45.007558013000164,15.724960502000101],[44.98556691100015,15.557707900000082],[45.12773970600006,15.543133701000102],[45.25623060000015,15.61451753200015],[45.43627786200011,15.579505390000122],[45.44272085699998,15.493165020000049],[45.36115946600006,15.447327970000174],[45.51964501600014,15.280750606000083],[45.553279660000044,15.146391892000167],[45.49608277800013,15.112217655000109],[45.57621237200004,14.99557558500004],[45.67001166200009,15.000791653000135],[45.715967018000185,14.948630975000185],[45.78629400200009,14.97606029700006],[45.82658363000013,14.859867889000043],[45.98837166600009,14.852133719000165],[46.12740685400007,14.90861114300003],[46.31356651800019,14.833697617000098],[46.258348144000195,14.77874904000015],[46.332632145,14.706353615000069],[46.1247088880001,14.627033411000184],[45.97218386900016,14.524420765000059],[46.134511498999984,14.493304223000166],[46.159242855000116,14.576941173000137],[46.241261025000085,14.584585410000159],[46.36257956900005,14.65617144500004],[46.41608923100006,14.598704766000083],[46.479941096,14.595287343000052],[46.47868204600013,14.370906492000188],[46.54658086000018,14.376392357000157],[46.705491066000036,14.316497508],[46.72374730300004,14.39698683100005],[46.85199062700008,14.45148574700005],[46.89938489899998,14.510841003000053],[46.834723644,14.796016023000163],[46.92618469600012,14.795836159000032],[46.97708632300004,14.89718975400018],[46.896057407,14.955555753999988],[46.989047307000135,14.997374229000172],[47.05532734100018,15.166806503000032],[47.05784544300013,15.276523793000024],[46.989227171000095,15.392446404000168],[47.03113557800003,15.504052270000102],[47.14004347800005,15.54272311800014],[47.15946883400005,15.423922676000018],[47.265049243000135,15.389028981000138],[47.422610465000105,15.583822136000038],[47.50274005900019,15.628878170000121],[47.573606637000125,15.564126983000165],[47.73764297800005,15.615298407000182],[47.833510708000176,15.61835610200012],[47.859501115000114,15.55333511800012],[47.961754032000044,15.666739628000187],[48.02191867700009,15.599830068000074],[48.080374610000035,15.693539425000097],[48.12740915300009,15.678161018000026],[48.249267290000034,15.764675798999974],[48.32427074800012,15.734908239000106],[48.45224427599999,15.795612478000066],[48.487947361000124,15.842647021000175],[48.562681023000096,15.834283326000161],[48.60809678600003,15.913873327000033],[48.409976139000094,15.863151563000145],[48.35619668100014,15.820793495000146],[48.275167765000106,15.838959800000168],[48.06985254199998,15.787338715000033],[48.000694676000194,15.825739766000027],[47.88126470900016,15.806764071000032],[47.77172728300013,15.930240988000094],[47.690518503000135,15.870975665],[47.63530012900014,15.90137275],[47.59141321300012,16.00560417500003],[47.597888332000025,16.07781973600015],[47.28142228299998,16.12154447200004],[47.17430306400013,15.982776393000051],[47.10938232500018,16.00549865100004],[47.12885854600006,16.098010704000103],[47.179983628000116,16.140209184000184],[47.1621304250001,16.214056525000103],[47.22218210800003,16.287903865000146],[47.293594921000135,16.291961411000102],[47.36721222700015,16.238888314000064],[47.42332992300015,16.29545567100007],[47.55723897500013,16.35211296000017],[47.65301677300016,16.53422567400014],[47.63512026500018,16.584227980000037],[47.73251684200011,16.71283103200011],[47.847899861000144,16.67973598100002],[48.05897074500018,16.714000151000164],[48.06544586400008,16.769308457000136],[47.96319294700015,16.767599745000155],[47.99889603200006,16.849887712000168],[48.09467383000009,16.94170849300008],[48.19126101800009,17.11392866500006],[48.18883284800006,17.211055446000046],[48.28622942600009,17.279943515000127],[48.28380125600012,17.464394466000044]],[[47.42646250500013,15.834926485000153],[47.526399867000066,15.836711081000033],[47.57636854800012,15.776034825000181],[47.369355440000106,15.676097463000076],[47.14985016300011,15.679666655000176],[46.9874519490001,15.577944697000191],[46.91071433200011,15.624344186000144],[46.98031356600018,15.711789378000105],[47.187326673000086,15.888464358000078],[47.28904863100007,15.929510060000041],[47.36757084500016,15.925940869000044],[47.42646250500013,15.834926485000153]],[[46.54487220200019,15.436961632000077],[46.36462803100005,15.435177036000027],[46.22542956200016,15.397700525000118],[46.0362624120001,15.317393716000083],[45.87988573700011,15.175010560000032],[45.81900574700012,15.094506988000091],[45.73347610200011,15.124289809000118],[45.82160890400013,15.230776244000026],[45.8074946700001,15.274512598000172],[45.68959689100012,15.224716852000142],[45.59676792200014,15.224083836000148],[45.54244730500005,15.306112172000098],[45.65942930699998,15.313797121000107],[45.85244904900003,15.483361122000133],[46.04518539100019,15.574375505000091],[46.33607449900006,15.61363661200005],[46.682432531000075,15.538200826999969],[46.60197926600017,15.44945380200005],[46.54487220200019,15.436961632000077]]],[[[45.583496881000144,18.158850950000158],[45.458491116,18.295727766000027],[45.40489152300012,18.248063697000077],[45.32368274200019,18.01585874500006],[45.396797624000044,17.953895456000055],[45.469912506000185,17.965406778000045],[45.520274541000106,17.913425964],[45.70049867900008,17.91603399800016],[45.760573392000026,17.96082023600013],[45.840163393000125,17.889863726000044],[46.056180547999986,17.830868200000168],[45.85805990199998,18.014419830000122],[45.869391359000076,18.04544644000009],[45.74924193400017,18.11658281399997],[45.58025932200019,18.10363257700004],[45.583496881000144,18.158850950000158]]],[[[46.218508178000036,18.327473834000045],[46.36797550199998,18.342942173000097],[46.27210777200003,18.407243699000105],[46.218508178000036,18.327473834000045]]],[[[46.317523535000134,18.53422797200011],[46.374450620000175,18.385929767000107],[46.436144113000125,18.28079902000013],[46.658636387000115,18.289342579000106],[46.476703537000105,18.396901496000112],[46.317523535000134,18.53422797200011]]],[[[42.26113144600015,20.408774845000096],[42.332987278000076,20.406166811000105],[42.31742900600011,20.521280033000153],[42.245483242000034,20.456348981000133],[42.26113144600015,20.408774845000096]]],[[[41.928112492000025,20.36938453900018],[41.78179279600005,20.44411820100015],[41.78961689700003,20.39672393000012],[41.83431320300019,20.402209793999987],[41.86210225400009,20.336469353000098],[41.86992635600012,20.331433149000134],[41.928112492000025,20.36938453900018]]],[[[47.39230331200008,20.598262],[47.58880517900019,20.63054766200014],[47.59851785700016,20.68900359500003],[47.46209070300017,20.64952335700019],[47.39230331200008,20.598262]]],[[[47.90392762400006,20.152198265000095],[48.22876274700013,20.30175552200012],[48.45287380100012,20.483418575000087],[48.49505200500016,20.480181016000188],[48.65585078700013,20.63063759400012],[48.540557701000125,20.614809526000045],[48.36680868100012,20.500595626000177],[48.24171298500016,20.438452473000154],[48.118326,20.342674675000126],[47.959145998000054,20.279452335000144],[47.90392762400006,20.152198265000095]]],[[[49.07961133500015,21.003856243000087],[49.16099998000004,21.01797559900001],[49.254439541000124,21.089291837000076],[49.29724727000007,21.17913411],[49.20632581100017,21.194692381000095],[49.06018597900015,21.050710922000064],[49.07961133500015,21.003856243000087]]],[[[42.685611452000046,21.052509566000026],[42.75404986000018,21.102691736000054],[42.67769741800015,21.355850892000092],[42.634350095000116,21.31088479000016],[42.70602606199998,21.23165451699998],[42.576703552000026,21.142082041000037],[42.597927552000044,21.080298617000096],[42.685611452000046,21.052509566000026]]],[[[43.40713752900018,22.460578093000095],[43.391219529000125,22.39582690600014],[43.483669835000114,22.34006893900016],[43.54752170100005,22.384045787000105],[43.40713752900018,22.460578093000095]]],[[[45.249848402,22.81086403000012],[45.21288626600011,22.722100944000147],[45.323053216000176,22.699078300000053],[45.32260355500017,22.797014471000182],[45.249848402,22.81086403000012]]],[[[45.63520789900019,25.01618155200009],[45.52243291400009,24.96653897500005],[45.517666507000115,24.87678663400004],[45.65751108500007,24.761943209000037],[45.895291834000034,24.60681015600011],[45.91444739400009,24.715718056000128],[45.87397790200009,24.837486261000038],[45.735392374000185,24.920943347000048],[45.72235220500011,24.989921348000166],[45.63520789900019,25.01618155200009]]],[[[45.75526739200012,25.215381385000114],[45.69582220400014,25.184174910000138],[45.78035847600012,25.099548705000075],[45.82487491800015,25.166638130000024],[45.75526739200012,25.215381385000114]]],[[[47.82631613200016,25.268531318000157],[47.51829833100015,25.620525967000106],[47.20758256400018,25.86855898700003],[46.92357666200013,26.039969769000038],[46.96017906900005,25.848953765999966],[47.11441280000014,25.75326590100002],[47.42306012600011,25.49767857500018],[47.50759639800009,25.440751489000036],[47.546806840000045,25.473037151000085],[47.82631613200016,25.268531318000157]]],[[[46.35691384000012,26.374427638000157],[46.73265059000016,26.164705737000077],[46.75468398000015,26.202836991000083],[46.56798472500003,26.310845569000094],[46.35691384000012,26.374427638000157]]],[[[45.982885802000055,26.61679492900015],[45.679364611000096,26.7472865580001],[45.70157786600015,26.690809134000176],[45.982885802000055,26.61679492900015]]],[[[45.731165561000125,26.884523102000117],[46.00518898800016,26.75798849000006],[46.00428966600015,26.799087508000127],[45.85113512200007,26.859971610000116],[45.674418340000045,26.956648730000097],[45.477466811000056,27.102248970000062],[45.41415454000014,27.232380870000043],[45.30434731800017,27.253964599000028],[45.229613656000026,27.30198839600007],[45.157398095000076,27.281303989000037],[45.270892538000055,27.175723581000057],[45.54572535500006,26.98857466300018],[45.731165561000125,26.884523102000117]]],[[[40.71213915400011,27.22653527600005],[40.878783529000145,27.145686224000144],[41.08787590500009,27.142268801000114],[41.20020122800008,27.235528497000132],[41.26495241600014,27.321143956000128],[41.280061026000055,27.421688159999974],[41.33276129800004,27.431670635000046],[41.262164517000144,27.440573923000045],[40.916105394000056,27.317726532000165],[40.71213915400011,27.22653527600005]]],[[[40.80719749400009,27.371236194000176],[40.818798749000166,27.311161481000113],[40.911249055000155,27.322762735000026],[41.12142061700018,27.416831821000073],[41.04515810800007,27.46764351700017],[40.87446678300006,27.384815956000068],[40.80719749400009,27.371236194000176]]],[[[46.28613719500004,24.522903409000094],[46.354125942,24.534234867000123],[46.46842977400007,24.485851341000057],[46.56897397900019,24.390343340000072],[46.52580652100005,24.314170762],[46.380655943000136,24.261740287],[46.349449469000035,24.31237211800004],[46.267970890000015,24.306976186000156],[46.193327160000194,24.158138387000122],[46.23496577100008,24.08907045400008],[46.29504048400014,24.082865132000165],[46.465372079000076,24.129809743000123],[46.587859742000035,24.08799126800011],[46.504762385,24.01226835200015],[46.47481496100016,24.0800772340001],[46.411592621000125,24.081426217000057],[46.276874178000014,23.937174961000153],[46.17525078700015,23.732938924000166],[46.141256414000054,23.970899537000093],[46.07821393800015,23.89256858700014],[46.04116187000011,23.699574076000033],[46.12767665100006,23.579334719000087],[46.1263276680001,23.35090691900018],[46.06949051500004,23.430856649000077],[46.029380751000076,23.564945566000176],[46.02533380199998,23.666299160000165],[45.944664615000136,23.69840495699998],[45.91426752900003,23.85677557000008],[46.04412963300007,23.819093976000147],[46.07398712500009,23.926832757000113],[46.049615497000104,24.041676182000117],[46.00312054800008,24.10912533600009],[46.06895092100012,24.20769103200007],[46.04484909100006,24.311652661000153],[45.929286208000065,24.409948560000032],[45.85050559600006,24.506805545000077],[45.79654627400015,24.50401764600008],[45.61686172900011,24.68397198800011],[45.46685481200012,24.798635549000153],[45.371886403000076,24.84998683700013],[45.29940104700012,24.926968805000172],[45.43834630300006,24.95835514400011],[45.54158847400015,25.032998874000157],[45.610746339,25.036056569000095],[45.49887067600008,25.16726765500016],[45.40012511600003,25.14622351900016],[45.29724267400013,25.265023961999987],[45.31657809800015,25.32995501300013],[45.26459728300006,25.40109138700018],[45.20092528200007,25.390299523000067],[45.09255697600014,25.521060948000127],[45.076908772000195,25.572322305],[44.95226273700018,25.716663493000055],[44.91916768500016,25.807405088],[44.76628293800013,26.124326177000057],[44.58497961300009,26.312464349000095],[44.47418313700018,26.49808441900018],[44.37327920300004,26.462021605000075],[44.34027408400004,26.376136350000138],[44.393783746000054,26.221452958000043],[44.51123520500005,26.062542752000127],[44.59586141000011,25.862713393999968],[44.69622575000017,25.67394569600009],[44.88085656600009,25.409365150000042],[45.024028636000025,25.41790871000012],[44.96107609300003,25.545162779000123],[45.019172297000125,25.580146407000086],[45.10092067099998,25.35819372600008],[45.018093110999985,25.23687518200012],[45.02447829700003,25.123740468],[45.114320569000085,24.99369850000005],[45.1137809760001,24.92445070300016],[45.17520467200018,24.86770348200008],[45.23905653700018,24.754298972000186],[45.38888359000015,24.561034664000033],[45.54680454100014,24.416693476000148],[45.73323400200013,24.18583750600004],[45.68997661100008,24.186197235000066],[45.46622528600011,24.364622729000075],[45.37719240400003,24.477487646000156],[45.20200446900009,24.629203275000123],[45.154520264999974,24.716257649000056],[45.03203260200007,24.81887029500018],[44.872672736000084,24.915997076000167],[44.88463371900008,24.99333877200013],[44.827436837000164,25.111599621000096],[44.752613243000155,25.204229791000103],[44.66852663100008,25.381036506000044],[44.592713783000136,25.492552439000065],[44.51024595100006,25.565487457000074],[44.4890219510001,25.673496035000085],[44.42948683100019,25.72574664600012],[44.36563496600019,25.876473021000095],[44.39180523800013,26.018835701000057],[44.32768357600014,26.32649377300004],[44.18900811600008,26.279279365000093],[44.136757505000105,26.164795669000057],[43.996912927000096,26.10831824400009],[43.89573919700007,26.021803463000083],[43.81048346700004,26.01415922600006],[43.82361356900003,26.151755499000103],[43.881889637000086,26.157241364000015],[43.963997741000014,26.296276552000165],[44.13154143700018,26.302212077000036],[44.206454964000045,26.417864893000115],[44.17174113300007,26.55060482700003],[44.32372655900019,26.499163606000025],[44.386499238000056,26.557619539000086],[44.39935954300017,26.685233337000057],[44.38622944100001,26.80844045700013],[44.41788557700005,26.862129983000102],[44.20843347200014,27.01915161300002],[44.09071221700003,27.150542563000045],[43.97649831800004,27.228513785000075],[43.88467753600008,27.241913683000178],[43.780805840000085,27.30675480300016],[43.73862763600005,27.28301270100002],[43.59302739600008,27.426634432000128],[43.583674447000135,27.464405958000043],[43.42782193599999,27.521782704000145],[43.33537163000017,27.489317178000135],[43.22889190000018,27.59103050200008],[43.10649416900003,27.666033960000163],[42.84218342100013,27.74211660500015],[42.65908145100008,27.857679487999974],[42.39755859999997,27.92297026900019],[42.28163598900005,27.967216914000176],[42.21328751400017,27.92198101500003],[42.05887391800019,27.97989735400006],[41.91795015200012,27.970004812000127],[41.79231486200007,27.93367220100015],[41.68304723500006,27.836365556000032],[41.78835784600005,27.805249013000036],[41.600579403000154,27.734562300000107],[41.46954818100005,27.73905891000004],[41.5002150630001,27.664774909000187],[41.65939506500007,27.671609757000112],[41.634573777000185,27.496601687],[41.54985763999997,27.406129889000113],[41.376648214000056,27.299560227000143],[41.400210451000135,27.253964599000028],[41.5018338430001,27.263137684000014],[41.70912757400015,27.17284575000008],[41.7430320150001,27.259180668],[41.81911466100013,27.357296702000042],[41.87703100000016,27.52708870400005],[41.95698073000011,27.45550266900017],[42.02523927300018,27.479244771000083],[42.092688427000155,27.431940432000033],[42.05977323999997,27.37177578700016],[42.09709510500011,27.265925582000136],[42.05824439200012,27.22248832700012],[41.95572167900008,27.261428972000033],[41.873523644000045,27.137772190000135],[41.979823510000074,26.986955883000178],[41.88044842400012,26.773366897000187],[41.75706143900004,26.757358965000094],[41.68970221700005,26.66598784500019],[41.431596791000175,26.671743506000098],[41.33590892500018,26.793331847000047],[41.364147638000134,26.845312661000037],[41.51946055500014,26.875080221000132],[41.637271743000156,27.06897405400008],[41.60345723400019,27.119156224000108],[41.51937062200011,27.007550358000174],[41.44922350300004,26.958807103000083],[41.291482416,26.98470757800004],[41.44625574000008,27.212236056000165],[41.380785095000135,27.227704395000046],[41.245886788000064,27.15755727500016],[41.282129467,27.07104249500003],[41.2106333640001,27.049548698000024],[41.12726621000007,26.90799540800009],[41.05469092100003,26.932367035000027],[40.973662005,26.911862492000125],[40.9603520390001,27.01465500200004],[40.869880241000146,27.123113241000055],[40.78840166300006,27.162143818000118],[40.58227705000013,27.190382530000136],[40.45691155700007,27.100360393000017],[40.36356192900007,27.0794061900001],[40.3580760640001,27.197577106000153],[40.42876277700003,27.177162496],[40.43460837000009,27.30666487100018],[40.50655413400017,27.349472600000183],[40.64774769500008,27.38706426200008],[40.762860917000125,27.49858019500016],[40.930224750000036,27.520793450000156],[41.03598502200015,27.599394197000095],[41.02222539500002,27.634018095000158],[40.887686816999974,27.619808807000084],[40.70368552700012,27.56728840000011],[40.783815121000146,27.675207045000036],[40.612584203000154,27.69571158800011],[40.47246982900003,27.6842901980001],[40.411136065000164,27.640673079000123],[40.05590385700009,27.6087471460001],[40.036208704000046,27.55370863700017],[40.05410521300013,27.396327279000104],[39.984767483000155,27.15072242800011],[39.95248182200004,27.176443038000173],[39.964622669000164,27.352530295000122],[39.75454103900012,27.333914329000095],[39.61082937600003,27.285350938000136],[39.60138649500004,27.214034700000127],[39.390315611000176,27.342997481000054],[39.23770066000009,27.35235043100016],[39.09542791200016,27.286969718000137],[38.986250215000155,27.36197317699998],[38.80359790800003,27.37267510900017],[38.77724777200012,27.294164293999984],[38.65296146500003,27.30216826000003],[38.567076210000096,27.35396921000006],[38.494590853000034,27.452714771000046],[38.509159871000065,27.52439073800008],[38.271738849000144,27.574213179000083],[38.25761949500003,27.486799077000057],[38.17856908600015,27.52879741600003],[38.03314871100008,27.50829287300013],[38.017140777000066,27.439314872000068],[37.88467064100007,27.464405958000043],[37.77720165700015,27.33463378600004],[37.72558057100008,27.317816464000146],[37.5744045350001,27.420788838000192],[37.532675992000065,27.32564056600006],[37.65003751900008,27.360084600000164],[37.625396095000156,27.151351953000074],[37.70651494400005,26.885782153000093],[37.77585267300009,26.705378151000104],[37.74977233400017,26.643774591000067],[37.838895149000166,26.613737233999984],[37.820818776000124,26.54188140300016],[37.94969162500007,26.512473572000147],[38.04169227000011,26.574976454000137],[38.09789989800004,26.539633098000024],[38.21157420500015,26.570839573000057],[38.315266037000185,26.51750977500018],[38.30420437600003,26.43962848600006],[38.36778644400016,26.365524349000054],[38.4585280390001,26.436750656000186],[38.50889007300009,26.42595879100014],[38.50556258200004,26.327303163000067],[38.64621655000019,26.274153230000024],[38.74721041500004,26.28935177200009],[38.879950349000126,26.246454111000162],[38.95099679100019,26.318399874000136],[39.1151230640001,26.35590160400011],[39.37871435600016,26.34852716300003],[39.45974327300013,26.29177994200012],[39.634121817000164,26.276041805999967],[39.68061676700012,26.172619771000143],[39.79186290400003,26.03619261600005],[39.90337883800015,26.070546718000173],[40.039356331000135,26.083496956000033],[40.089628434000076,26.156971567000028],[40.0004156870001,26.18709885600009],[39.91902704100016,26.26686872100015],[39.86416839700007,26.268217704000108],[39.740151887000025,26.486932826000043],[39.7637141240001,26.634511573000168],[39.88260449900014,26.704658693000113],[39.94474765200016,26.700611744000184],[40.12623084100011,26.819142390000025],[40.239815215000135,26.850528729000132],[40.275338436000084,26.924902662000136],[40.41446355700015,26.870133950000024],[40.53587203300003,26.89279686500015],[40.502866914000094,26.971757341000114],[40.60062321900011,27.03354076500011],[40.66879183100008,27.028324697000187],[40.7531482390001,27.104137546000175],[40.911159123000175,27.03650852800007],[40.916285258000016,26.958447375000162],[40.77698027300005,26.915639645000113],[40.67418776400007,26.818602796000107],[40.52490030400003,26.823099407000143],[40.38802348800016,26.773187033],[40.40007440400018,26.660052319999977],[40.463836336999975,26.617604319000122],[40.515637287,26.496195843000066],[40.515727218999984,26.322177027000123],[40.43613721800011,26.204455771000084],[40.31239050400018,26.175587533],[40.420848743000136,26.087364041000114],[40.621577424,25.983492344000013],[40.76870651100006,25.953095259],[40.88390966500009,25.957771734000175],[40.757914646000074,25.793465596000033],[40.65278389900004,25.740405595000027],[40.62076803400004,25.66675112000007],[40.500888404000136,25.59759325400006],[40.495582405000164,25.516204609000056],[40.415902472000084,25.50433355800004],[40.46185782800018,25.358373590000042],[40.546573965,25.209985452000126],[40.60053328800018,24.93901972000009],[40.52840765999997,24.944325720000165],[40.354478776,25.01150507700015],[40.2542043680001,25.07490728100015],[40.21346507900006,25.0559315860001],[40.35951497999997,24.932184872000164],[40.55295915200014,24.806459650000136],[40.60296145800004,24.741438666000136],[40.56572952500011,24.66031981800012],[40.46599471000013,24.798725481000133],[40.28909806300004,24.856551888000183],[40.26652508100017,24.77120622600006],[40.19556857100008,24.73217564900017],[40.13846162200019,24.76356198900004],[40.16400236700002,24.871210838000025],[40.037557687000174,24.93326405900001],[39.793841413,24.694404123000083],[39.83745853200014,24.678396192000093],[39.89582453300011,24.520834970000124],[40.06372795900012,24.495833817000175],[40.147814570000094,24.575154020000127],[40.27875586000005,24.606630292000148],[40.331546064000065,24.545296528000108],[40.45520284500009,24.609957783000084],[40.57355362700014,24.591881410000042],[40.59333871200016,24.449698595000143],[40.429032574000075,24.381619916000034],[40.274888775000136,24.38305883100014],[40.23037233399998,24.315789542],[40.134234807000155,24.352032221000172],[40.060400467000136,24.435129578000044],[39.98359836400016,24.41237673100011],[40.0820741280001,24.195550184000012],[40.052306569000166,24.138623099000142],[40.11247121400004,24.05165865700019],[40.171556672000065,24.038348691000067],[40.28496118200013,24.090419437000037],[40.38739396300019,24.022340758000098],[40.45178542200006,23.903630248000127],[40.36859813200016,23.80641353500016],[40.45790081100006,23.767832619000103],[40.51069101600012,23.89346790900015],[40.78129701900019,23.78995594200012],[40.86133668100007,23.71603167000012],[40.86133668100007,23.652539533000095],[40.96224061500004,23.602537227000028],[41.16269949900004,23.539404820000073],[41.34706051800015,23.58491051500016],[41.351107469000056,23.71234444900017],[41.466760283000156,23.70667872000007],[41.44823425000004,23.609551939000085],[41.469642232000126,23.517392500000028],[41.52782425000004,23.473844243000087],[41.66371181100004,23.309987766000177],[41.81542744000018,23.24118962900019],[41.87775045800004,23.09729810200014],[41.75580238800006,23.006916236],[41.77639686300006,22.810234505000153],[41.69689679400017,22.69395216400011],[41.70723899800004,22.62650301100018],[41.64698442100013,22.56822694200008],[41.55876092900007,22.653033011000105],[41.47881119800007,22.561571959],[41.42044519700016,22.419209279000086],[41.51559347,22.332334769000056],[41.39625343400019,22.259129955000105],[41.28698580600013,22.35301917600009],[41.29292133100017,22.436656127000163],[41.10478315900008,22.468402195000124],[41.047046684,22.526048738000043],[41.02735153100019,22.673357689000056],[41.077084040000045,22.80214060600008],[41.211802483000156,22.811313691000066],[41.16656658400018,22.89108355700006],[41.23464526300012,22.962040066000043],[41.13589970200013,23.035604609000075],[41.19588448200017,23.114744950000045],[41.158292821000146,23.211871730000098],[41.08337929500016,23.22904878200012],[40.95783393700009,23.196043662000022],[40.83705498600017,23.18911888300005],[40.88756183400005,23.384088040000165],[40.730305459000135,23.350457258000176],[40.63623637400019,23.46521075100003],[40.543606202000035,23.479330107000123],[40.442882133000126,23.45450881900007],[40.34908284400012,23.490032039000084],[40.30762409800013,23.45783631000012],[40.33946009800013,23.37446915600009],[40.29134636900005,23.318711190000045],[40.52202247300005,23.235074239000085],[40.45628203200016,23.1385769850001],[40.510870880000084,23.09603905100016],[40.58020861,23.12886430599997],[40.675536747000024,23.10386315300002],[40.77698027300005,23.016089321000038],[40.686058815000024,22.853401963000124],[40.78300573100017,22.832267895000143],[40.80440959600003,22.782265589000076],[40.76726759500002,22.641701553000075],[40.72050284900013,22.554647179000085],[40.83777444400016,22.47038070400015],[40.74676305300011,22.37829012600008],[40.792088884,22.167309174000025],[40.70759876900007,22.081696144000148],[40.77843915500017,21.87119701900008],[40.86799499500012,21.75253552999999],[40.92844518800001,21.620440665000103],[41.049345573000096,21.575662745000102],[41.11203466100005,21.479390217000173],[41.25308511000003,21.401028856000153],[41.35668326400014,21.380402384000035],[41.39571384100003,21.45162869000012],[41.36082014600015,21.627626014000157],[41.34670079,21.79984618600014],[41.384562248000066,21.861809475000143],[41.4639723840001,21.880785170000024],[41.594823742000074,21.99463934100004],[41.553454928000065,22.198155920000033],[41.63385431900019,22.263536633],[41.67099631900004,22.1092129700001],[41.765335202000074,22.03933564700003],[41.81156035500004,21.97197642600014],[41.84429567800004,21.853715577000173],[41.79222493100019,21.58976455600009],[41.732240151000155,21.525283165000076],[41.741053507000174,21.34200133200011],[41.68403648900005,21.290470179000124],[41.799779236,21.146758516000034],[41.901042899000174,21.22922634800011],[41.96651354400012,21.442905266000082],[41.9556317470001,21.541740759],[42.03225398500007,21.56863048800011],[42.125423749000106,21.520336893999968],[42.152043682000055,21.569619742000043],[42.110584936000066,21.67412096400011],[42.168411343000116,21.78698588100019],[42.216165344000046,21.77376584700005],[42.276869582000074,21.860190695000142],[42.28647341700008,21.945300246000045],[42.18118171600008,22.10849351200011],[42.24872080200004,22.17513327600011],[42.32938998900005,22.180169479000142],[42.34701670100014,22.04104435900001],[42.53326629700007,21.891487102000156],[42.615644197000165,21.711982422000176],[42.57868206100005,21.667106252000053],[42.60925901000002,21.456934690000026],[42.73624328300008,21.437059673000192],[42.73120708000016,21.369790384000055],[42.80108440300006,21.212049297000192],[42.900819217000105,21.078499973000135],[42.91628755700009,20.98308190400013],[42.795238809000125,20.928313191000086],[42.73557889600005,21.016885003000027],[42.66456731599999,21.000258955000163],[42.59540945100014,21.02840773500003],[42.500351110000054,20.883257157000173],[42.513481212000045,20.7818136300001],[42.588035010000056,20.764906375000123],[42.67868667200014,20.580545356000073],[42.618701892000104,20.518761930999972],[42.45088839800002,20.434855184000128],[42.57544450100005,20.389079692000053],[42.60782009500008,20.339796844000148],[42.61204690800014,20.18916040100015],[42.54441789100008,20.117304570000158],[42.43739856700006,20.214521283000124],[42.24170609000015,20.23133860500019],[42.20915063200016,20.43818267600011],[42.13531629200014,20.522089423000182],[41.98198188300006,20.476943456000186],[41.97145981500006,20.34789074300005],[41.985669103000134,20.142575519000047],[42.012468900000044,20.18241548600014],[42.19494134300015,20.122700502000043],[42.316169955000134,20.03007033100016],[42.37048900700012,19.94445487300004],[42.45043873700007,19.924399990999973],[42.490368636000085,20.03007033100016],[42.550893009000106,19.989241111000183],[42.60233423000011,19.773493752000036],[42.658811655000136,19.721692802],[42.731117147000134,19.72448070000013],[42.69568385900004,19.868552092000073],[42.7649316560001,19.881322466000086],[42.79236097900019,20.163439791000087],[42.90207826800008,20.142395655000087],[42.89128640400014,19.948232025000095],[42.861878573000126,19.89346331300004],[42.83633782700019,19.728527649000057],[42.972944846000075,19.810186091000105],[43.182576814000186,19.65226514000011],[43.059549559,19.515478257000098],[43.05802071099998,19.39245100100004],[43.13104566100003,19.34056011900003],[43.18932173000013,19.408099204000052],[43.2654943070001,19.600823919000106],[43.29166457900004,19.721782733999987],[43.232758985000146,19.732124938000027],[43.247597798000186,19.866393719000087],[43.280153256000176,19.928087211000104],[43.35956339300009,19.952009178000083],[43.4315091580001,20.021167044000038],[43.50561329400006,19.89490222800015],[43.56272024400016,19.921072499],[43.64599746600004,19.84013351500016],[43.73817797500004,19.547494122000103],[43.85275160300006,19.562692664000167],[43.77496024600009,19.716117005000115],[43.87676350200019,19.70694392000007],[43.90536194300006,19.566559749000135],[43.94816967200006,19.530856664000055],[44.01004302900009,19.716476734000082],[44.07380496200011,19.733743717000152],[44.14404201399998,19.942116635000048],[44.160859336000044,20.09077457000012],[44.13477899700018,20.188530876000016],[44.055368860000044,20.221895724000035],[43.908509570000035,20.152468062000082],[43.85014356900007,19.97710026300018],[43.74465309300007,19.99580616200012],[43.75922211000017,20.06235599300004],[43.68988438100013,20.15165867200011],[43.68556763500004,20.224323893000133],[43.59221800600011,20.20247036799998],[43.53744929400017,20.2368244700001],[43.59230793900019,20.365607387000125],[43.779276992000064,20.340246505000152],[43.84420804400003,20.392856844999983],[44.005096758000036,20.40670640400009],[44.03558377500019,20.45949660800011],[43.95707296100011,20.650422679000144],[43.99124719800005,20.702133697000022],[44.14575072600013,20.682168747000105],[44.141344048000065,20.782353223000086],[44.4155473400001,20.55761264400013],[44.811338972000044,20.575868881000133],[44.9432695160001,20.66148434000013],[45.1064964680001,20.508329796000055],[44.911163719000115,20.494750033000116],[44.82365968400018,20.518671999],[44.42418083100006,20.522988745000134],[44.33991435600012,20.4407907100001],[44.1662552680001,20.40077087900005],[44.131631370000036,20.29465087699998],[44.156632523000155,20.15444657],[44.25636733700003,20.07782433200009],[44.19269533700009,20.046527925000078],[44.195033574000036,19.95335816100004],[44.34791832200017,19.942476364000015],[44.35745113500013,19.897240465000095],[44.28127855800017,19.792559379000068],[44.150427200000195,19.702177513000095],[44.181363879000116,19.607029241000134],[44.131361573,19.499919985000133],[44.14089438700006,19.44515127300002],[44.23613259100017,19.44991768000017],[44.26940750700004,19.114470556000185],[44.34126333900008,19.047381132000112],[44.415907068000195,19.093066692000036],[44.41896476300013,19.19810750700009],[44.28946238900005,19.33210649200015],[44.28037923599999,19.403692526000157],[44.33820564400014,19.432650696],[44.45089069599999,19.418891069000097],[44.5194190360001,19.338221881000152],[44.49657625600014,19.138752252000188],[44.50116279800005,18.998637877000192],[44.54684835800015,18.962035470000103],[44.44783300200015,18.700152890000027],[44.33056140600007,18.678838956999982],[44.22552059200012,18.76868123000014],[44.14332255600016,18.947286588000168],[44.079021030000035,18.838378687999978],[44.12569584400012,18.755371263000143],[44.15996001400009,18.56399553200015],[44.289822118000075,18.401308174000064],[44.35691154200015,18.481257905000064],[44.519688833000146,18.49978393900011],[44.58821717200016,18.584050414000046],[44.63534164800018,18.492679295000016],[44.55826974800016,18.42127312300005],[44.56654351100019,18.359849428000075],[44.52823239200012,18.265600478000067],[44.442616933000124,18.195723154000063],[44.50970635800013,18.051471898000045],[44.42265198400014,18.06145437300006],[44.38550998300019,18.111456679000128],[44.28334699900017,18.152106035000145],[44.198181201000125,17.96792488000017],[44.31842055900012,17.922958778000066],[44.38017701400008,17.718521944000088],[44.35832430400018,17.631486840000093],[44.529581375000134,17.615660434000176],[44.62706788500009,17.632477757000117],[44.774826497000106,17.784103454000046],[44.974565923000114,17.945082100000036],[45.12394331500013,17.948319659000106],[45.263608029000125,18.093560170000046],[45.143368672000065,18.14032491600011],[45.008650229000125,18.086995119000164],[44.94201046500012,18.00380782900004],[44.890029651000134,18.009743355000182],[44.709805513000106,17.929074167000067],[44.789395514000034,18.081599186000176],[44.84083673500004,18.28232786700005],[44.92132605800015,18.454278241999987],[45.04264460200005,18.599428821000117],[45.06854507700018,18.70285085600017],[45.008650229000125,18.749885399000107],[44.917548906000036,18.748536416000093],[44.98247995700018,18.882265604000168],[45.049029789000144,18.942610113],[44.95478083800009,18.990094317000114],[45.027895721000164,19.046032149000155],[45.04084595800009,19.242534016000036],[45.07133297600018,19.24631116800009],[45.11072328100016,18.671734313000115],[45.114050773000145,18.52667366700007],[45.149843790000034,18.48035858200018],[45.27646833400007,18.50886709100007],[45.453544845000124,18.493039023000165],[45.524951016000045,18.720387636000055],[45.45183613300014,18.826777434000064],[45.34949328400006,18.806632620000187],[45.37224613200004,18.960506622000082],[45.35596840300013,19.08398353900003],[45.27799718200009,19.11060347200015],[45.26657579200008,19.203593371000125],[45.31693782600007,19.287859847000163],[45.29580375800009,19.44029493400012],[45.31846667400009,19.561973206000175],[45.43214098100003,19.617641241000115],[45.341219522000074,19.738779921000116],[45.43052220100003,19.81810012500017],[45.56533057600012,19.894362635000164],[45.62216772900018,19.90227666900006],[45.85113512200007,20.088616197000135],[45.95824437700003,20.122700502000043],[46.10123658300017,20.122610570000063],[46.33344153500019,20.181965825000134],[46.53156218200007,20.29851796200012],[46.59487445400009,20.36938453900018],[46.64523648800008,20.341955217000134],[46.801088999,20.530543050000176],[46.86772876300017,20.541874507999978],[46.95055632300017,20.443488676000015],[47.025200053,20.52847460900017],[47.12268656300017,20.595833831],[47.19894907200012,20.748358850000102],[47.32071727700003,20.882267902000137],[47.37917321000009,20.998999904000186],[47.52207548300004,21.133628414000043],[47.61137816300004,21.312503569000057],[47.59833799300003,21.382560757000192],[47.69744328200011,21.541830690999973],[47.78179969000013,21.633291743000086],[47.82244904700002,21.769359169000154],[47.95069237100006,22.02143913800012],[47.96040504900003,22.13502351300008],[48.05942040600013,22.271360735000087],[48.12111389800015,22.27324931100003],[48.22345674700006,22.47703568700001],[48.137211763000096,22.597275044000128],[48.19917505200016,22.745393385000114],[48.19045162800006,22.89692915000012],[48.2447706800001,23.12095027200013],[48.21500312000006,23.225271629000133],[48.237935832000176,23.281569189000038],[48.23856535800002,23.523306955000123],[48.263926239000114,23.88519414600006],[48.24225257800015,24.060382081000057],[48.18262752600003,24.102920014000063],[48.167249119000076,24.23907737200011],[48.11239047400011,24.40239425500016],[48.08900810100016,24.5743446300001],[48.03855613400009,24.662388259000124],[47.917237590000184,24.807358972000145],[47.88908881000009,24.873728939000102],[47.790613046000146,24.95214982200008],[47.797717691000116,25.00233199200011],[47.64618192600017,25.146403384000052],[47.56254497500004,25.162771045000113],[47.49734412700013,25.24523887700019],[47.38151144800014,25.28570836900019],[47.32512395500015,25.34659247100018],[47.287802090000014,25.445517896000126],[47.14678839400017,25.493092033000096],[47.067018528000176,25.593366441000057],[46.94902747600008,25.628529933000152],[46.77590798200009,25.770982545000095],[46.56483709800011,26.098065973000132],[46.4053872990001,26.19896990700005],[46.27858289,26.245914517000074],[46.03279817500004,26.404105265000112],[45.84448013900004,26.486033504000034],[45.89034556300015,26.545478691000085],[45.6692922040001,26.636669946000154],[45.4882586760001,26.76113611800008],[45.47737687800014,26.83524025400004],[45.379530641000144,26.916538967000122],[45.275658945000146,26.91689869600009],[45.24795982500018,26.957278256000166],[45.07735843300003,27.08273368100015],[44.90360941400007,27.339580058000024],[44.8740217190001,27.19874622499998],[44.93526555000011,27.061329817000058],[44.91080399000009,27.004942324000012],[45.00972941500004,26.907725611000103],[44.964673381000125,26.84567239000006],[45.06719609400017,26.802235135000046],[44.99686911000009,26.691168862000097],[45.01449582100008,26.56301547099997],[45.14606663800015,26.388367129000187],[45.01683406000018,26.410220655000046],[44.91467107500006,26.492148894000138],[44.87725927800017,26.436300994000078],[44.91646971900019,26.167763432000072],[44.98301955100004,25.948598649000132],[45.071153111000115,25.733031154000116],[45.28519175800011,25.43454616700012],[45.44733952300004,25.31079945400012],[45.50507599800011,25.34506362400009],[45.75985393399998,25.308281352000165],[45.874967156000025,25.260527351000178],[45.949880682000185,25.164659621000055],[45.938189496000064,25.07949382400011],[45.85814983400019,25.01483256800003],[46.029920345000164,24.8220179220001],[46.071469023000134,24.67515863200009],[46.16104149900008,24.60222361400008],[46.23460604200005,24.59017269800006],[46.28613719500004,24.522903409000094]],[[46.2559199750001,23.389038174000063],[46.3403663150001,23.293530172000033],[46.362669502000074,23.187320239000087],[46.25025424600017,23.167535154000063],[46.21787865200014,23.374199360000148],[46.2559199750001,23.389038174000063]],[[44.40484540700004,23.14487223800006],[44.42022381400017,23.1185221020001],[44.94965470300008,22.933711422000044],[44.660972326000035,22.80852579300017],[44.592713783000136,22.875345421000134],[44.57994341,22.9952250500001],[44.40484540700004,23.14487223800006]],[[46.183614482,23.114205356000184],[46.242699941000126,23.082639152000127],[46.368425163000154,23.072926474000155],[46.179657465000105,22.823904200000072],[45.9558162080001,22.63144928200012],[45.92604864800006,22.7192231140001],[45.96912617400005,22.75393694500019],[45.953657835000115,22.84225037000016],[46.01589092100005,23.01779803300002],[46.183614482,23.114205356000184]],[[45.16459267300013,23.04585688200001],[45.19777765500015,22.942344913],[45.25029806300017,22.929934269000057],[45.36990789500015,22.832807489000174],[45.426834980000194,22.75483626700003],[45.36001535200006,22.704654097000173],[45.353000640000175,22.57587117999998],[45.536822067,22.453113720000033],[45.59231023700016,22.560942434000083],[45.73512257800007,22.579918129000077],[45.640334034000034,22.445919144000186],[45.52360203300009,22.17531314000007],[45.59986454199998,22.17333463200015],[45.73620176400004,22.253014565],[45.75445800200009,22.158675682000137],[45.577921084000195,21.959565781000094],[45.55696688100005,21.83312110200012],[45.30066009700016,21.746246592000148],[45.3493134200001,21.838337170000045],[45.312171420000084,21.870712762999972],[45.42503633600006,22.116767275000143],[45.48349226900012,22.16622998800011],[45.44077447200016,22.242942158000176],[45.354349624000065,22.313538939000125],[45.336543047000134,22.432699110000044],[45.29076755500006,22.535221823000086],[45.31064257200006,22.610944739000047],[45.12178494200015,22.77597033500018],[45.21045809600008,22.873276980000128],[45.13644389200016,22.919232337000096],[45.16459267300013,23.04585688200001]],[[45.57000705000013,21.8105481180001],[45.51793630400016,21.735184931000163],[45.42170884500018,21.669084760000146],[45.349763081000106,21.714140795000162],[45.57000705000013,21.8105481180001]],[[44.39099584800016,21.68743093],[44.55862947700018,21.61656435300017],[44.70917598799997,21.514491301000135],[44.7004525640001,21.452887741000097],[44.60620361300005,21.442005944000073],[44.59559161300007,21.38489899400014],[44.65566632600013,21.26510929700015],[44.576615918000016,21.211060042000156],[44.48308642500018,21.266098552000187],[44.47328381500017,21.49722431700019],[44.41617686500007,21.45387699500003],[44.35061628800008,21.480676792000168],[44.30978706700006,21.586616929000172],[44.39099584800016,21.68743093]],[[44.72347520800008,21.288131942000177],[44.80846114200011,21.22976594100004],[44.90657717700009,21.04720356600012],[44.885982702000035,20.990186548000167],[44.773117785000125,21.14154244800011],[44.66807697000013,21.214207670000178],[44.72347520800008,21.288131942000177]],[[43.439153394000186,21.973505273000058],[43.540596921000144,21.813156152000033],[43.557594108000046,21.740221134000024],[43.629899600000044,21.645522523000068],[43.578098650000186,21.605502692000186],[43.471618920000026,21.728979609000078],[43.33429244400003,21.629604523000182],[43.42134681800019,21.49299750400013],[43.536549972000046,21.388406350000082],[43.80400834800014,21.180033432000187],[43.83566448400012,21.122836550000102],[43.78215482300004,21.058984684000052],[43.639342482000075,21.057905498000082],[43.53825868400003,20.99846031100003],[43.49590061500015,21.049901532000035],[43.40398990200009,21.040458650000176],[43.262076883000134,20.981013463000124],[43.26018830700019,20.845845359],[43.334382376,20.762388274000102],[43.25272393400013,20.670747357000153],[43.10172776300004,20.578207119000126],[43.03167057500008,20.642508645000078],[43.06485555900008,20.740894477000097],[43.044171152000104,20.815268410000044],[42.97771125200006,20.894228886000178],[43.038055762,20.972919565000097],[43.1253799320001,20.985150344000033],[43.19903440800016,21.101072956000053],[43.257040680000046,21.05862495600013],[43.320173088000104,21.080658346000064],[43.27565664600007,21.19253400800011],[43.17286413599999,21.185968957000057],[43.06764345700003,21.274012586000083],[42.976092473000165,21.26313078900006],[42.981038744000045,21.3338175020001],[43.11638671200012,21.3338175020001],[43.173583594000036,21.407292113000096],[43.170885628000065,21.50918530100006],[43.249936036,21.68203499800012],[43.30389535800015,21.655954659000088],[43.39328797000013,21.802004559000125],[43.38762224100003,21.900210526000023],[43.439153394000186,21.973505273000058]],[[42.892363065000154,20.868323534000126],[42.94488599800013,20.832355529000154],[42.96997708300006,20.62335308500019],[42.89704206500005,20.577307797000174],[42.82725467400013,20.82471129100003],[42.74370765600008,20.803487291000067],[42.67796721400009,20.867069360000073],[42.784626809000144,20.898365767000087],[42.892363065000154,20.868323534000126]],[[43.60354946400014,22.733792130999973],[43.70094604200011,22.580367790000082],[43.77001397500004,22.54637341600005],[43.85652875599999,22.61589101100003],[43.97478960500018,22.613013180000053],[43.95563404500007,22.509411280000165],[43.858057603000134,22.483241009000096],[43.72199017800011,22.398255075000066],[43.763179127000114,22.274508362],[43.751398009000184,22.211735682999972],[43.851402620000044,21.989603138000177],[43.82352363700005,21.863068526000177],[43.74654167000011,21.88204422100017],[43.70939966900016,21.935823679000123],[43.59869312500018,21.921434527000088],[43.47899336100011,21.97773208700005],[43.48951542900011,22.093564766000156],[43.44436946200011,22.171895716000108],[43.40767712300004,22.314528193000058],[43.2582097990001,22.385035041000094],[43.19813508600015,22.695031351000125],[43.272688883000114,22.72965524900019],[43.35191915600012,22.692063588000167],[43.44113190300004,22.70033735100003],[43.55786390400016,22.6542021300001],[43.60354946400014,22.733792130999973]],[[43.98818950300006,21.319608213000095],[44.149168150000094,21.150175940000167],[44.03126702900005,21.169421432000036],[43.98818950300006,21.319608213000095]],[[43.85526970500018,23.302253597000174],[44.120209980000084,23.265651189000152],[44.0845968270001,23.187859832000072],[43.85526970500018,23.302253597000174]],[[43.472877972000106,23.738154993000023],[43.616769499000156,23.677540686000043],[43.60570783800017,23.619084753000095],[43.738267908000125,23.434903598000176],[43.591768345000105,23.42537078400011],[43.49868851300005,23.55226512500019],[43.50453410700004,23.65622675300017],[43.472877972000106,23.738154993000023]],[[42.43038385500017,23.816665806000174],[42.58353840000018,23.734018110000136],[42.72158433400017,23.579604515000028],[42.71726758800003,23.46512081900005],[42.65089762100007,23.459095361000152],[42.64936877300005,23.61962434600008],[42.528769687000135,23.734647636000147],[42.46239972000018,23.727003398000022],[42.43038385500017,23.816665806000174]],[[41.389688383000134,23.97647533500009],[41.39679302900015,23.868017095000027],[41.331142518000036,23.763785670000175],[41.32116004400012,23.947966825000094],[41.389688383000134,23.97647533500009]],[[41.08553766700004,24.11497092900015],[41.11125827800004,24.030794386000025],[41.03418637900012,23.981961199000125],[41.078433024000105,23.875121739000065],[40.87995264799997,23.778084891000162],[40.71465725600012,23.872243909000133],[40.84442942700002,23.87539153600011],[40.88589260000015,23.981336865000173],[40.976449903000116,24.079897369000037],[41.08553766700004,24.11497092900015]],[[45.072771891000116,24.379191746000174],[45.04075602600011,24.322174729000153],[45.09165765400019,24.276129439999977],[45.03976677200012,24.223159371000122],[44.92492334700012,24.30553727200015],[44.94668694000006,24.350053712000147],[45.072771891000116,24.379191746000174]],[[42.488929720000044,25.395605523000143],[42.53335622900005,25.346952200000032],[42.51536978800016,25.24757711400008],[42.54531721300009,25.127067959999977],[42.49423572000018,25.10080775600005],[42.540191077000145,24.983536161000018],[42.51123290700008,24.951700161000076],[42.50709602600017,24.785145718000024],[42.61249656900014,24.675698225000076],[42.66816460400014,24.568499037000095],[42.810347420000085,24.58594588500017],[42.87240064100013,24.62551605500005],[42.95612752300008,24.599255851000066],[42.929057930000056,24.526140969000096],[42.84991759000013,24.46076025600013],[42.903247387000135,24.35041344100017],[42.817182267000135,24.354999983000084],[42.72176419800013,24.462199171000066],[42.61249656900014,24.473710493],[42.49423572000018,24.59880619000012],[42.44036633000002,24.821568261000152],[42.43757843100019,25.032279416000108],[42.4040337190001,25.196045961000095],[42.36032666800014,25.292723081000076],[42.38838551600003,25.464763388],[42.449089754000056,25.50990935500016],[42.51626911100004,25.48230016800011],[42.58299880600009,25.534280982000098],[42.67913633300009,25.559102271000086],[42.65251639999997,25.35108908100011],[42.589024264000045,25.429779761000134],[42.488929720000044,25.395605523000143]],[[44.371390627000096,25.00871717900003],[44.37750601699997,24.92561982100011],[44.51528215500002,24.695843039000124],[44.667717241000105,24.603302800000165],[44.819253006000054,24.614544326000043],[44.81376714200019,24.50275859600015],[44.683815106000054,24.49988076500017],[44.60539422400012,24.55950581700006],[44.44450551000017,24.61094703800012],[44.30016432100001,24.63136164800011],[44.22435147300013,24.74593527700017],[44.25447876100009,24.856821685000057],[44.230646727000135,24.92067355],[44.371390627000096,25.00871717900003]],[[40.003563314000075,24.724891141000114],[40.09169687400015,24.74188832700014],[40.08279358600015,24.661848665000093],[39.93341619400013,24.617152359999977],[40.003563314000075,24.724891141000114]],[[44.104741641000146,26.04914285400008],[44.22471120100005,25.811721833000036],[44.290901304000045,25.602809321999985],[44.37894493200014,25.45954732000007],[44.34818811800011,25.425822744000186],[44.18226320100007,25.55883247400004],[44.10240340300015,25.57223237300002],[44.01768726600011,25.632307085000036],[43.96723530000014,25.71882186600004],[44.008154453000145,25.876383089000115],[43.908419638000055,25.98726949700017],[43.93117248600004,26.014518955000085],[44.104741641000146,26.04914285400008]],[[43.98944855400009,23.772239298000102],[43.84438790799999,23.666029364000053],[43.75364631400015,23.677450755000166],[43.75103828000016,23.7811425860001],[43.85499990799997,23.758299807000014],[43.98944855400009,23.772239298000102]],[[40.90000752900016,26.841175780000185],[40.95018969800009,26.582260963000067],[40.8291409520001,26.43306343500018],[40.77131454500005,26.473353063000047],[40.77662054500013,26.57920326800007],[40.70125735700009,26.681995777000054],[40.80710756200011,26.74593757500014],[40.90000752900016,26.841175780000185]],[[42.27740917500006,27.280584531000045],[42.48524249999997,27.20198378499998],[42.44944948300008,27.14038022400007],[42.48443311000017,27.061060020000184],[42.32057663300003,26.969688900000108],[42.22650754700004,26.983538461000023],[42.25393687000013,27.07949612200008],[42.16139663100006,27.086330969000073],[42.122905647000096,26.995769239000026],[42.019753409000145,26.889829102000192],[41.97865439100008,26.972117070000138],[42.14946885400019,27.181683315000043],[42.27740917500006,27.280584531000045]],[[45.2543450120001,20.517053219],[45.13941165500012,20.392676980000147],[44.87600022700019,20.41893718400007],[44.816105379000135,20.474335422000024],[45.10910450200009,20.44465779500007],[45.2543450120001,20.517053219]],[[44.91251270200007,19.637696123000183],[44.93841317700003,19.623217038000064],[44.94398897400015,19.615303004000054],[44.94704666900009,19.612515105],[44.954151313000125,19.605590326000026],[44.95621975400013,19.604151410000156],[45.04840026300013,19.555318223000086],[45.05217741600012,19.549022969000077],[45.048939857000164,19.529147952000073],[45.04165534800006,19.518805747999977],[45.0445331790001,19.488588528000037],[45.04732107700016,19.483912053000097],[45.04732107700016,19.465835680000055],[45.04732107700016,19.483912053000097],[45.0445331790001,19.488588528000037],[45.04165534800006,19.518805747999977],[45.048939857000164,19.529147952000073],[45.05217741600012,19.549022969000077],[45.04840026300013,19.555318223000086],[44.95621975400013,19.604151410000156],[44.954151313000125,19.605590326000026],[44.94704666900009,19.612515105],[44.94398897400015,19.615303004000054],[44.93841317700003,19.623217038000064],[44.91251270200007,19.637696123000183]]],[[[44.009233639000115,27.374024092000127],[43.880001061000144,27.452804703000027],[43.74663160200009,27.569536705000075],[43.7273861110001,27.652634062000118],[43.822804179,27.665404435000028],[43.52422925900015,27.950309659000084],[43.34418498600019,28.053641762000098],[43.15352871200014,28.137818306000156],[43.125559797000165,28.11470572900015],[43.237615324000046,28.00031196500015],[43.430070242000056,27.841581624000128],[43.503904582000075,27.75497691099997],[43.524858785,27.64714819700015],[43.83728326400012,27.43670683900018],[44.009233639000115,27.374024092000127]]],[[[43.42980044500018,27.603800875000047],[43.4586686830001,27.671969486000137],[43.258839324,27.889425557000095],[43.16396084799999,27.93619030300016],[43.14840257700013,28.024054067000122],[43.017731083000115,28.148430305999966],[43.01125596500009,28.235124951000103],[42.87114159000009,28.180266306000135],[42.96745898100011,27.895720811000103],[43.23788512100009,27.719004029000075],[43.322871054000075,27.646878401000038],[43.42980044500018,27.603800875000047]]],[[[43.295261867000136,28.749267365000094],[43.27709556200011,28.71734143200007],[43.06773338900018,28.73685672100015],[43.04561006700004,28.690721500000166],[42.90468630200007,28.718240754000192],[42.805760877000125,28.696387228],[42.79586833500014,28.65079160100015],[42.62751524800012,28.613289871000177],[42.50880473800015,28.520569768000087],[42.67059277400011,28.42254366500015],[42.70872402800012,28.43216641099997],[42.97267504900003,28.267500545000132],[43.10811294900003,28.22271430700016],[43.60615749800007,27.92773667600011],[43.908509570000035,27.720442944000183],[44.15744191200008,27.51971426300014],[44.21661730300019,27.441832974000192],[44.529491443000154,27.224556768000127],[44.624639715000114,27.21439442900015],[44.77761439500006,27.34038944700012],[44.83175358300008,27.440573923000045],[44.81565571800013,27.56728840000011],[44.70054249600008,27.753897724000126],[44.651349580000044,27.75740508000007],[44.5828212400001,27.845448708],[44.42193252600015,27.980616812000108],[44.409971543000154,28.03133857500012],[44.0818089280001,28.329733630000135],[43.926855740000065,28.42964831000012],[43.62953987100019,28.516522818999988],[43.61335207500019,28.574798888000146],[43.5241393280001,28.654478821000055],[43.295261867000136,28.749267365000094]],[[44.34477069500002,27.93052457400006],[44.614117647000114,27.766038572000127],[44.45187995000015,27.731324741000037],[44.444145781000145,27.825753556000052],[44.34477069500002,27.93052457400006]]],[[[47.31756965000011,29.399747001000037],[47.49275758500005,29.476459171000158],[47.62333914600015,29.501370392000126],[47.62315928100014,29.540221104000125],[47.44212575500012,29.505147545000113],[47.309745548000194,29.444443306000153],[47.31756965000011,29.399747001000037]]],[[[47.703113464000126,30.540220170000055],[47.596954481000125,30.69006697400016],[47.50582458600002,30.74071311500012],[47.24415548200005,30.847402170000123],[46.91518757500012,30.845695278999983],[46.720779557000185,30.807355783000162],[46.5199474800001,30.794982921000155],[46.39075926400005,30.828694889000076],[46.38164328400006,30.759539800000084],[46.461605255000165,30.74177047300003],[46.5104709040001,30.659587336000186],[46.743693321000194,30.570740701000148],[46.810328297000126,30.43080725100009],[46.810328297000126,30.357508778000124],[46.617086866000136,30.350845280000158],[46.523797900000034,30.31308546000014],[46.44605709400008,30.013228068000046],[46.40163377700003,29.899948608000045],[46.3349988010001,29.857746457000076],[46.0462472370001,29.746688163000158],[46.021814413000016,29.684495519000052],[46.04846840300007,29.564552562000188],[46.05735306700012,29.315781984000182],[46.03514140800007,29.251368174000163],[45.910756119000155,29.231377681000026],[45.81968831900008,29.155858040999988],[45.82550444200018,29.00368557200011],[45.748792273,28.73101112700016],[45.66533518700015,28.60267787099997],[45.64896752600009,28.533520006000117],[45.67828542500018,28.444307259000027],[45.58871294900007,28.45024278400001],[45.485111049000125,28.29169230800011],[45.551750813000126,28.23404576500019],[45.506424982,28.121540577000076],[45.43816643800005,28.067401389000054],[45.38348765800009,27.935920506000116],[45.23204182500007,27.842121217000113],[45.17601406199998,27.704524944000127],[45.39436945500012,27.54489528100015],[45.222149283000135,27.55703612800005],[45.40830894600015,27.408018465000055],[45.602112847000114,27.197397242000193],[45.71452810300008,27.141459411000085],[45.68197264500009,27.095144325000092],[46.06139661600008,26.88236472900013],[46.148810719000096,26.800166694000097],[46.36986407800015,26.67615018400005],[46.40898458700019,26.73379672700014],[46.48290885900019,26.735145710000097],[46.693530082,26.626777404000165],[46.88139845800015,26.449880757000074],[47.02250208700008,26.342321841000114],[46.98482049300014,26.272444518000043],[47.180602903000135,26.113264516000072],[47.51587016100012,25.887894411000104],[47.681435351000175,25.760910138000042],[47.93864145500004,25.58392355900014],[47.98243843900019,25.49453094800009],[48.09026715200014,25.43823338800013],[48.064816338000014,25.389130404000014],[47.92326304800008,25.321141657000055],[47.83072281000011,25.363859455000124],[47.76120521500013,25.485267931000067],[47.78108023300001,25.559192203000066],[47.748254978000034,25.680061085999967],[47.51173328100015,25.864242241000113],[47.28114710700015,26.01011227700019],[47.00307673100008,26.19896990700005],[46.89686679700003,26.154183669000076],[46.88040920400016,26.101933058000043],[47.10910680000006,25.963887124000053],[47.35192375200006,25.7679248500001],[47.58385890800008,25.59273691500016],[47.628735078000034,25.52528776200012],[47.92704020100007,25.23543626600008],[48.01607308300015,25.130125655000143],[48.124891051000134,25.03641629800012],[48.21491318800008,25.027962670000193],[48.35313898600003,24.829212498000118],[48.383176343000116,24.702318157000093],[48.435337021000066,24.61112690200008],[48.42076800400014,24.480275544000108],[48.471040106000146,24.456263646000025],[48.520592751000095,24.244113575000142],[48.472479022000186,24.192762286000118],[48.32184257900019,24.159487370000136],[48.34477529100019,24.108226014000138],[48.518074649000084,24.120097065000095],[48.55746495400007,24.089610047],[48.57113465000009,23.859563467999976],[48.59910356600005,23.762436687000047],[48.59433715900008,23.656496550000043],[48.504584819,23.387779123000087],[48.55602604000006,23.388678445000096],[48.52589875100017,23.11627379700019],[48.49361309,22.958712575000163],[48.42985115700003,22.819587454000157],[48.44747786800019,22.701596402],[48.392259495000076,22.65087463800012],[48.37930925800015,22.521821924999983],[48.29000657900008,22.44394063500016],[48.31608691800011,22.228912734000062],[48.24791830700002,22.00785937500018],[48.12282261000013,21.852366593000113],[48.04008498200011,21.618542861000094],[48.01733213400013,21.473931876],[47.9021289800001,21.355401231000087],[47.83881670800008,21.203415805000134],[47.60004670500018,20.98146312400013],[47.64393362100003,20.935417835000123],[47.790073453,21.057905498000082],[47.84043548800008,20.987578514000177],[47.71704850300017,20.946929157000113],[47.60013663700016,20.823811969000076],[47.82262891099998,20.766525155000124],[48.01751199900019,20.83703200300016],[48.12471118600007,20.840449427000124],[47.89088745400005,20.66616081500007],[47.90707525099998,20.611571966000042],[47.74960396100016,20.575958813000113],[47.57585494200009,20.510757965000153],[47.52873046700017,20.546011389000057],[47.39230331200008,20.509498914000176],[47.33060982000006,20.541244982000137],[47.20713290300017,20.49906677900003],[47.19256388600007,20.44960406600012],[47.10649876600007,20.394835353000133],[47.044805274000055,20.264253792000147],[47.09840486700017,20.23529562200008],[47.30623819200008,20.272527555000067],[47.34203121000007,20.239972097000077],[47.44914046499997,20.318392979000123],[47.570998603000135,20.28394894500019],[47.70095063800005,20.2880858260001],[47.83081274200009,20.380985794000026],[47.97047745600008,20.527845084000035],[48.098810712000045,20.60689549200015],[48.150701594000054,20.582523864000166],[48.27903485000007,20.71823156100004],[48.40889695300018,20.78819881600009],[48.54532410700017,20.911945530000025],[48.42400556300004,20.94072383500003],[48.31635671400005,20.849532580000186],[48.25951956100016,20.872285428],[48.45107515700016,21.002327395000066],[48.52742759900019,20.969502141000135],[48.7336421440001,21.133718346000023],[48.80837580600007,21.07796038000015],[48.96269946900014,21.18848705900001],[49.102364183000134,21.255666416000167],[49.22575116700017,21.38975533300004],[49.37027222000006,21.457024622000176],[49.56677408700017,21.686801405000097],[49.46605001800009,21.729519202000063],[49.31010757500019,21.57915255600011],[49.28096954100016,21.463409809000098],[49.18833937000011,21.439038181000114],[49.06009604700017,21.27266360300007],[49.01953662200009,21.265289161999988],[49.30848879600012,21.63419106500004],[49.16720530200007,21.548575606000043],[49.06171482600007,21.419702757000096],[48.9902187240001,21.472582893000038],[49.05838733500019,21.635450116000015],[49.011262859,21.672232388000168],[48.92034140100003,21.614226116000054],[48.82294482300017,21.595879945999968],[49.00316896100003,21.794450254000083],[48.96413838400014,21.88051537300015],[48.91215757000009,21.886540831000104],[48.80828587400009,21.763783372000034],[48.69452163500006,21.786266422999972],[48.61664034600011,21.771517542000083],[48.947590859000115,22.096352664999984],[49.09561926700002,22.31947446400011],[49.11342584400012,22.39654636400013],[49.24661543900004,22.488097348],[49.33178123700009,22.858977760000073],[49.24814428600013,22.849444946000176],[49.243287947000056,22.924268540000185],[49.184742082000184,23.05871718600008],[49.25138184600013,23.085247186000117],[49.49177062900003,23.027061050000043],[49.527473714000166,23.181294781000133],[49.429987204000156,23.30225359600007],[49.122059336,23.612969363000047],[49.08212943700016,23.77547685700017],[48.91396574800018,23.874738016000038],[48.87748358100009,23.964732942000126],[48.83745060200005,24.173663820000172],[48.84869641100016,24.284521474000144],[48.92591719700005,24.35374093200005],[48.945162689000085,24.44205435700019],[49.066661098000054,24.587654597000153],[49.14409272600017,24.730556870000044],[49.09966621700005,24.946663957000112],[49.15992079400007,25.178509181000038],[49.067830216000175,25.514226101000133],[49.07178723300012,25.59993149200011],[49.129433775999985,25.628080272000147],[49.10128499600012,25.76153966300018],[48.97457052000016,25.76891410400009],[48.90181536600005,25.81684796900015],[48.83265750100003,25.92737464900017],[48.68750692300017,25.870177766000154],[48.52985576800006,25.85021281700017],[48.59073987099998,25.950307361000114],[48.68939549900011,25.92962295400008],[48.863863976,26.01406929400008],[48.91161797700016,26.102832380000052],[48.798213467000096,26.184041161000152],[48.743804483000076,26.299604043000045],[48.64847634600005,26.387467807],[48.56771722600013,26.42577892700018],[48.52895644600011,26.51526147000004],[48.438124920000064,26.61742445500016],[48.321302986000035,26.704478829000152],[48.27912478200005,26.82777588100015],[48.28631935800007,27.034260223000103],[48.22678423900004,27.108274427000083],[48.150251933000106,27.115558936000184],[48.05393454100005,27.221319209000058],[47.99556854100018,27.359455075000028],[47.77046823300003,27.355318193000016],[47.728919554000186,27.25333507300013],[47.60391379000015,27.205131412000128],[47.55067392400008,27.336972024000033],[47.567940908000026,27.397406465000074],[47.671812604000024,27.48949704299997],[47.633771282,27.544175823000103],[47.71767802800014,27.626373858000136],[47.83207179300007,27.62214704400003],[47.95401986200011,27.750480300000163],[47.86804467500019,27.747782334000078],[47.78386813100013,27.836455488000183],[47.86381786100003,27.86955053900016],[47.848169657000085,28.055890067000064],[48.01796165999997,28.291512443000045],[47.93936091300003,28.35491464800009],[47.886300912000195,28.48054993700009],[47.812286708000045,28.561398989000168],[47.79852708000004,28.659245228000145],[47.72766050300015,28.74962709400006],[47.69024870600009,28.853318926000156],[47.59168301000017,28.92355597700015],[47.25821439500004,29.260082287000046],[47.211719445000085,29.264129236000144],[47.115761783000096,29.174017167000045],[47.05991388400014,29.165113879000046],[46.846055101000104,29.214036998000097],[47.018095409000125,29.379242458000192],[46.96170791600014,29.43095347600007],[47.11962886800006,29.522414528000127],[47.27952832800008,29.666845648000162],[47.400577075000115,29.60578168100011],[47.76237433400013,29.604342766000173],[47.71722836700013,29.65038805500012],[47.89547399700007,29.677547581000056],[47.95653796400012,29.6322217500001],[47.79882295800019,29.46975973200017],[47.99988528600005,29.62349832600006],[48.22470857000019,29.592878529000075],[48.356376535000095,29.711484806000044],[48.34777050000008,29.780371310000135],[48.18853747300005,29.98007467900004],[48.13276646900016,29.96647235900008],[48.13999150200016,29.870364787000142],[48.05081961900004,29.78092837100013],[48.01348063200015,29.838480632000028],[47.99790677800013,29.98700429700017],[47.94420572500013,30.0122585740001],[47.93683646400018,30.100353145999975],[47.861225495000156,30.113917748],[47.64207862500018,30.367485406000128],[47.703113464000126,30.540220170000055]],[[46.728333846000055,26.647911472000146],[46.946329509000066,26.590264929000057],[47.05586693500004,26.477579876000107],[47.02987652800016,26.451949198000023],[46.728333846000055,26.647911472000146]],[[47.584308569000086,25.988528547999977],[47.66479789200014,25.96037976800011],[47.85671321700016,25.809563461000153],[47.79528952100014,25.800030647000142],[47.584308569000086,25.988528547999977]],[[48.64299048200019,24.89441334600008],[48.69838871999997,24.84989690500015],[48.705493364,24.708343615000047],[48.763949297000124,24.652855445000114],[48.8403017390001,24.41300625500014],[48.748840686000165,24.44852947600009],[48.68777672000016,24.586755275000144],[48.69874844800006,24.637207241000112],[48.60476929500015,24.794318803000067],[48.64299048200019,24.89441334600008]]],[[[48.03317252700009,30.592160310000054],[48.21590053100016,30.563868201000105],[48.40525862100003,30.58042681900008],[48.46199756700008,30.667791731000136],[48.3615956110001,31.071493357000122],[48.23579447600008,31.22020709500015],[48.17673458000007,31.346576858000105],[48.06164954100012,31.323759809000023],[47.93653153100007,31.151224535000097],[47.91579051100007,30.98899112200013],[48.035015540000074,30.826343811000072],[48.03317252700009,30.592160310000054]]],[[[35.414632852000125,30.973149056000125],[35.459216740000045,31.120147652000128],[35.40384307199997,31.229404824000085],[35.41917925200005,31.30433123],[35.51810467700017,31.351545638000175],[35.55497688100013,31.454967673],[35.52970593200007,31.596161234000135],[35.58015789800004,31.748686254000177],[35.54060921000013,31.817178675000036],[35.521620846000076,32.02270026000019],[35.54325023400003,32.086531003000175],[35.45782061600016,32.027126040999974],[35.38146248400005,31.89906916800004],[35.36573753000016,31.703886830000158],[35.27962856300019,31.47961945500009],[35.28652955100006,31.27421018800004],[35.24240855400018,31.1473437140001],[35.08473255000007,31.032540809000068],[35.05105255400014,30.95700225900009],[34.90539552900003,30.823259942000107],[34.81758855500016,30.85862084400003],[34.74280957300016,30.78302445900016],[34.90712354200008,30.65808196600011],[34.89327948800019,30.599977105000107],[34.811016472,30.532665561000158],[34.70148846700016,30.521922978000134],[34.68354046500019,30.419424708000065],[34.591413833000104,30.378964854000117],[34.545269383,30.406949772000132],[34.537035632000084,30.50958589200002],[34.52178357700012,30.525976732000174],[34.52247247300011,30.57986489600006],[34.64738445500018,30.636510636000025],[34.68594758000012,30.806971557000168],[34.90129057500019,30.950573507000172],[34.91816351400013,31.021018207000054],[34.594287613,31.176044859000115],[34.549541494000096,31.250463083000113],[34.333129471,31.305226248000167],[34.319904504000135,31.333006222000108],[34.23045752700017,31.328554593000092],[34.38136648500006,31.469527643000163],[34.206108601000096,31.311986085000058],[34.10805558900012,31.25087614299997],[33.816383463000136,31.148100767000074],[33.604164571000126,31.111712075000014],[33.484443501000044,31.125602565],[33.24304955100001,31.090046700000016],[33.161941562000095,31.109768144000043],[33.09971649200003,31.17976558600003],[32.98166258200018,31.095602393000092],[32.86888860100015,31.091156799000146],[32.78694158300004,31.04616039600012],[32.695716470000036,31.043768368000087],[32.76594913900004,30.969370466000157],[32.743879962,30.726660064999976],[32.663929933000134,30.486820011000134],[32.57144955800004,29.990607211000054],[32.60943952800011,29.81953776400013],[32.692214510000156,29.73481784500018],[32.689716536000105,29.614543402000038],[32.74055445500011,29.449828946000082],[32.82499659700011,29.382054553000046],[32.88527656300005,29.236783263000177],[32.946102525000015,29.20622820900013],[33.10055552000017,29.040401809000173],[33.17027250300009,29.00290134200003],[33.17392486400007,28.82306977000019],[33.26848001400015,28.831899997000107],[33.469707442000185,28.69552715300017],[33.896628249000116,28.467573196000103],[34.06794944200004,28.47292698300015],[34.146471655000084,28.503265111000132],[34.326715826000054,28.685293878000152],[34.37311531600011,28.804861794000033],[34.414161018000186,29.152857966],[34.53729812500006,29.304548605000036],[34.72646527500012,29.406270563000135],[34.83175642499998,29.486577372000056],[34.9182164880001,29.649973371999977],[35.020639857000106,29.721794073000126],[35.075458366000134,29.85624287200011],[35.10201053500015,30.036106054000072],[35.17977972300014,30.150501045000112],[35.14137867300019,30.233688334000135],[35.186164340000175,30.343294090000143],[35.160714096000106,30.41948827000016],[35.20918755399998,30.591438645000096],[35.33437318300008,30.813031597000133],[35.35910982600012,30.913982338000153],[35.414862506000134,30.971941802000117],[35.414632852000125,30.973149056000125]]]]},"properties":{"objectid":832,"eco_name":"Arabian desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Palearctic","eco_biome_":"PA13","nnh":2,"eco_id":809,"shape_leng":442.45207258,"shape_area":72.6922211602,"nnh_name":"Nature Could Reach Half Protected","color":"#FFEBBE","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":819214.7399360101,"percentage":3.105182287858961}}, + {"type":"Feature","geometry":null,"properties":{"objectid":834,"eco_name":"Ile Europa and Bassas da India xeric scrub","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Afrotropic","eco_biome_":"AF13","nnh":4,"eco_id":96,"shape_leng":0.296205472586,"shape_area":0.00188918142937,"nnh_name":"Nature Imperiled","color":"#E3A653","color_bio":"#CC6767","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":21.65373318780379,"percentage":0.00008207712274078979}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[158.4712985970001,52.73512831300013],[158.47050466400003,52.82624731200008],[158.28269957300017,52.89231162900012],[158.1793976460001,53.083806601000106],[158.1847996150001,53.27760844000005],[158.10600268400003,53.43416680100012],[157.97099268700015,53.47171186000003],[157.88040158,53.45014321200017],[157.78590366900016,53.27847043500009],[157.47720370600018,53.12937750000009],[157.48350572400022,53.017784194000114],[157.39779657300005,52.866440047000026],[157.16889970500006,52.71302875500004],[157.05650358000003,52.56748404700005],[157.0800015760001,52.49162363199997],[157.2261967190001,52.38482159000017],[157.36909459000003,52.34513981600014],[157.42239360300005,52.27565031800009],[157.312499644,52.22337641100006],[157.04660069700003,52.143864840000106],[156.97149666500013,52.03565597800002],[157.1405026560002,51.81675989400003],[157.03089871000032,51.75657095600019],[156.5411075620001,51.640586874000064],[156.45329270900004,51.629485714000054],[156.46209756300004,51.40042472800013],[156.54600561100006,51.26030042900004],[156.68119766300003,51.20483871699997],[156.6721956660001,51.080549677000135],[156.75270066100006,50.9861340760001],[156.73300168000003,50.88269351200006],[157.2492067200002,51.236760189999984],[157.51510667300022,51.37824956500009],[157.63259865900022,51.536097231000156],[157.77999861800015,51.549814215000026],[158.0092926200001,51.69964693700018],[158.08110072000022,51.79267064000015],[157.91740466500005,51.91931683800016],[157.82429462900018,52.01945459800015],[157.71040367600006,52.22916746800007],[157.70950362700012,52.37402938600019],[157.85760464800012,52.382696442],[157.97090166000032,52.28405753500016],[158.15420566800003,52.33462656200015],[158.33859261800012,52.283638607000114],[158.38670356900025,52.386305354],[158.26469457500002,52.40657279600009],[158.1251067180001,52.511932816000126],[158.10490465500004,52.61645397500013],[158.17170758500004,52.68308641800013],[158.29919465600005,52.7335862110001],[158.4712985970001,52.73512831300013]]],[[[162.02470369000014,54.95471394400005],[161.96200571300005,55.03133090900013],[161.80020162200015,55.12814239400012],[161.72430466200012,55.221059814000114],[161.6878966920001,55.364419527],[161.74029565700016,55.626778629000114],[161.9105986630001,55.852381912],[162.03619360300002,56.109138047000044],[162.43829361500002,56.245341794000126],[162.3014986080002,56.29703634400005],[162.0102997250002,56.31002594700004],[161.8722077020002,56.277606924000054],[161.70172163500024,56.11749245700008],[161.28990163300023,55.95458463700004],[161.02250668400006,55.75330010500011],[160.7548976610002,55.398359362000065],[160.68440267000005,55.15843207700016],[160.45919769500017,55.07421306100014],[160.10620172200015,54.831885870000065],[159.77549758700013,54.694892379],[159.39950569400003,54.60883822900007],[158.79870562600001,54.54214845500019],[158.62219263600014,54.46900796800014],[158.5325926060002,54.34433285800009],[158.4709926580001,54.17673385400002],[158.50889562400005,53.882221101000084],[158.61450156900014,53.819700652000165],[158.72639461200015,53.82665075900013],[158.84860259300012,53.970285064],[158.93530265300012,53.913574783000115],[159.2151036570001,53.877043934000085],[159.38749660700012,53.897922248999976],[159.45860263800012,53.97396622800011],[159.4134976050001,54.05686509400016],[159.2828976630002,54.17859899500007],[159.18780564200017,54.406864370000164],[159.24029563400018,54.45045646900019],[159.38209564300018,54.426735851000046],[159.59269666100022,54.32338145200015],[159.72810362400025,54.31233410400017],[159.94180259300003,54.43372401100004],[160.18139661300017,54.68777027600004],[160.34139960100003,54.760102916000164],[160.58470160800027,54.81354425400019],[161.07800259400017,54.87954805400017],[161.57229566200022,54.901936620000015],[161.87879973400027,54.88284398600018],[162.0411986050001,54.83424688400004],[162.12100270500002,54.88825718600009],[162.02470369000014,54.95471394400005]]],[[[161.02049268000007,55.92737379400006],[161.13729869200006,56.033115861],[160.99380470000006,56.422528186000136],[160.80529770900011,56.471983595000154],[160.53799462600023,56.391307106000056],[160.49609365900017,56.2436669220001],[160.6103056400001,56.03362799500013],[160.71659873300018,55.94078215700006],[160.8224026590002,55.90242539400015],[161.02049268000007,55.92737379400006]]],[[[162.76820364800005,56.66947531500017],[162.76170365000007,56.798180108999986],[162.71339471800002,56.90791246500015],[162.7608946280003,57.088677930000074],[162.68919364900012,57.25611399000019],[162.67469765100032,57.36741862400004],[162.47720358300012,57.404345936000084],[161.85659758100007,57.40370874400014],[161.74470571100017,57.33159755400004],[161.85060167000006,57.15980106100005],[161.7021026770002,56.98132553200003],[161.75729365300003,56.821190948000094],[161.3903045950001,56.66149507300014],[161.32229567700017,56.60659243300017],[161.47689870800002,56.47834981800014],[161.74499471900003,56.45561809600008],[162.0014957090002,56.524089863000086],[162.19569367700024,56.649024645000054],[162.3247986230001,56.664585145000046],[162.58030669200002,56.59935616900009],[162.76820364800005,56.66947531500017]]],[[[164.62600672300005,60.371113192000166],[164.4714967320001,60.576020215000085],[164.05099458600012,60.86121027900003],[163.69290157700016,61.07935785900008],[163.53410357200005,61.13957227800017],[163.55000270100004,61.06908835200011],[163.4694056730001,60.992871371000035],[163.67950461400005,60.928012035999984],[163.63279763200012,60.84152554700006],[163.41529864400013,60.82238966200009],[163.26210058700008,60.75946839200009],[163.17840560800016,60.79653668800012],[163.01669271200024,60.744170748000045],[162.8202056460002,60.771385782000095],[162.74180568200006,60.67680421800014],[162.60040264000008,60.61636985800004],[162.47430461800002,60.62399185800007],[162.37829561700016,60.566547826000146],[162.16149869700007,60.532515622000176],[161.89280673200017,60.40963189300015],[161.91769360800015,60.23384712200004],[161.73719770500009,60.143283676000124],[161.49330158900023,60.06423964600003],[161.07989472500014,59.75986927200006],[160.83920267500002,59.67461525900012],[160.72459372800006,59.592031049000184],[160.39610258400012,59.498357749000036],[160.29499872600013,59.3764664360001],[160.3536987030002,59.27433160500016],[160.3059996390001,59.18125744300005],[159.97250366000014,58.93147739900013],[159.94309960900023,58.86840726600019],[160.05999765400009,58.72426334100004],[160.20910668200008,58.608918463],[160.17399572800002,58.54364724200002],[160.03370664100032,58.44848196300018],[160.01690662500016,58.39503995400014],[160.24429357600002,58.14525286900016],[160.16569563200005,58.07498754200009],[159.98680067200007,58.015697479000096],[159.77630660800014,57.99711580600018],[159.53109771900006,57.94624519700011],[159.47099260000027,57.86930368400016],[159.55760163200011,57.703939296000044],[159.36959872900002,57.58228435300009],[159.07910157800018,57.51267214400008],[158.85009758900003,57.41836936300018],[158.7052006350002,57.2498419800001],[158.6163026730003,57.083416945000124],[158.53540071100008,57.061512014000186],[158.31109662300014,57.07496765100018],[158.24890172800008,57.256372991000035],[158.1470946290001,57.30512666600009],[158.03790257000003,57.289383105000184],[157.8403017170001,57.137759338000194],[157.85719259300004,57.069718233000174],[157.99180562300023,56.83881943100005],[157.73469560500007,56.6199937560001],[157.662002711,56.524746166000114],[157.5933986780002,56.26137956000014],[157.63360566100005,56.11230825000007],[157.40609767500018,55.89933515400003],[157.23629758300012,55.79762042400017],[157.1900936830002,55.72707732100008],[157.20379658600007,55.57916623400013],[157.312606597,55.468762487000106],[157.18460068600007,55.28003622600016],[157.19520563800017,55.217565734000175],[157.4622036200002,55.087778333000074],[157.46530157200004,54.95050673100019],[157.3312077170001,54.883717045000026],[157.32780466400015,54.713222931000075],[157.29049664500008,54.63199089000017],[157.18119763400023,54.563938217999976],[157.19259668700022,54.47298601900019],[157.46560667300014,54.309201954],[157.4831996170002,54.251529599000094],[157.39520270900005,54.04835494800017],[157.46940568700006,53.931393200000116],[157.62890659900006,53.813329233000104],[157.80540466900004,53.725139540999976],[157.92399569100007,53.740409692000185],[158.0095977220002,53.81657135300014],[158.03010572400024,54.08982860500009],[158.28309670800002,54.65719141700009],[158.37910470300017,54.79469503000007],[158.59759560600014,55.02682865400004],[158.76890561400012,55.168072607000056],[158.8630975860002,55.30277582600013],[158.95869470100024,55.794790358000114],[159.0601956920001,55.97311719200019],[159.35420268100017,56.10161880900017],[159.69000267800027,56.222021160000054],[160.09139961600022,56.63034725],[160.1163025850002,56.71161768000013],[160.2843015740002,57.01487661400017],[160.55369560700012,57.30875468900018],[160.89340157000004,57.41313218200003],[160.993697579,57.476500041000065],[161.06449867700007,57.59348492300012],[161.20680260600022,57.66421192500002],[161.29299958400009,57.759300090000124],[161.14089972500017,57.95443549000004],[161.09269657300013,58.08745076100007],[161.39689662700016,58.33133581300012],[161.43640171000004,58.42466193500013],[161.40080259400008,58.53888598499998],[161.47500557100022,58.60899842599997],[162.0326996900002,58.70100037500015],[162.1739956120001,58.76837495100017],[162.40199259800033,58.99539075200005],[162.4355926310002,59.102256665000084],[162.65190172400003,59.25462088900014],[162.9028015900002,59.476967802000104],[163.1354066120001,59.543949267000016],[163.2908017330002,59.627082324000185],[163.30340560100012,59.78280031600008],[163.49240058600014,59.896344426000155],[163.60479771700022,59.91842520900002],[163.56739766500016,60.01134262900018],[163.79930061800007,60.05495015100013],[163.78320267000004,60.20490407500006],[164.02850359300032,60.29860034200004],[164.42039461500008,60.32425935900005],[164.62600672300005,60.371113192000166]]]]},"properties":{"objectid":835,"eco_name":"Kamchatka tundra","biome_num":11,"biome_name":"Tundra","realm":"Palearctic","eco_biome_":"PA11","nnh":2,"eco_id":773,"shape_leng":54.3545401618,"shape_area":17.6021744949,"nnh_name":"Nature Could Reach Half Protected","color":"#5E9CC0","color_bio":"#9ED7C2","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":119568.02078220295,"percentage":1.3992492095854985}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-43.70055352899993,59.894246268000074],[-43.94778061299996,59.97702125000018],[-44.1119385099999,59.862858052000036],[-44.11027956399994,59.810633263],[-43.82722856099997,59.85230573900009],[-43.70055352899993,59.894246268000074]]],[[[-44.176113545999954,60.01563869000006],[-44.39416858999982,59.89758025400005],[-44.31388454199987,59.87007554100012],[-44.126106608999976,59.911749023000084],[-44.00472659199983,59.98647385700008],[-44.176113545999954,60.01563869000006]]],[[[-44.2369495669999,60.08064739000014],[-44.434436593999976,60.1395334450001],[-44.48527551899997,59.99758323200007],[-44.20055349899991,60.03898178700018],[-44.2369495669999,60.08064739000014]]],[[[-44.05638861999989,60.16536747600003],[-44.11666456299997,60.10092690100004],[-43.868053457999906,60.053699236000114],[-43.91194948499992,59.9920250240001],[-43.57278448999983,59.91285191400016],[-43.47804652099995,60.04147691200012],[-43.24722650899997,60.00953062900015],[-43.16166655599994,60.06759291100008],[-43.57917451799989,60.104536317000054],[-43.729164484999956,60.1375873340001],[-44.05638861999989,60.16536747600003]]],[[[-45.25667162399992,60.360095851000096],[-45.35389348699994,60.3806534740001],[-45.40277456699988,60.17620192400011],[-45.184436549999816,60.263988278000056],[-45.13500259999995,60.34648816600014],[-45.25667162399992,60.360095851000096]]],[[[-43.42333549199992,60.394822243000135],[-43.31277450099998,60.43509980300007],[-43.493617581999956,60.48954479000014],[-43.77167548599988,60.52010202400015],[-43.74474359299995,60.44189786099997],[-43.42333549199992,60.394822243000135]]],[[[-47.8966675339999,60.79956188400013],[-47.953887601999895,60.835673135000036],[-48.139160519999905,60.79900499100012],[-48.07639347599991,60.69704986700009],[-47.88500260699993,60.679555159000074],[-47.75860954199982,60.807611194000174],[-47.8966675339999,60.79956188400013]]],[[[-46.21277654499994,60.92595578800007],[-46.4561115759999,60.88872639100015],[-46.83778354899994,60.76955467100004],[-46.75361247699993,60.74845088300003],[-46.34110649999991,60.84400558500005],[-46.21277654499994,60.92595578800007]]],[[[-45.081859489999886,61.53830058600005],[-45.267936566999936,61.58170208100012],[-45.62905158699988,61.51064617300017],[-45.95511650599991,61.520866563000084],[-46.0665545789999,61.39535778900017],[-46.232219542999985,61.30020390900012],[-46.24063447099991,61.20758304100019],[-46.527763604999905,61.113379334000115],[-46.71897560399992,61.02633578400014],[-47.23723957399994,61.10939323600019],[-47.410404496999945,61.07079758900005],[-47.56881760599998,61.07793880300005],[-47.55754059299994,61.15374792100005],[-47.82778153399988,61.15179477000004],[-47.87916947299993,61.030394972000124],[-47.72999556899998,60.97094766500004],[-48.01805459199994,60.91011617000004],[-48.19249758699988,60.80900024300007],[-47.9305575809999,60.83455934799997],[-47.67193546699997,60.80817227800003],[-47.44778459999998,60.81844949700013],[-47.29083647999988,60.944568474000164],[-47.23277252199989,60.896230709],[-47.04250348799985,60.97206178700003],[-46.91471852399991,60.92761875700006],[-47.05500056999995,60.86900762900018],[-46.86721459099988,60.79539959900006],[-46.71666353899985,60.85150487400017],[-46.54611561399986,60.980675869000095],[-46.26333651999988,61.04373560900018],[-46.22943155399997,60.97289360700012],[-45.71000249899993,61.16901840700001],[-45.69639246799994,61.06624353400008],[-45.953052545999924,61.02374158500004],[-46.105838547999895,60.96623234100019],[-46.006664539999974,60.91039109600007],[-45.65416360099994,60.99457340000009],[-45.48278050299996,61.10096590300003],[-45.37388650499997,61.08846027100003],[-45.48971552199998,60.98734819900011],[-45.72972159699992,60.93095291100008],[-46.17666646799995,60.72872005000005],[-45.895549504999906,60.765671671000064],[-45.806949602999964,60.744273678000184],[-45.806388518999825,60.627886258000046],[-45.58750148699994,60.490101851000134],[-45.463611593999985,60.615106538000134],[-45.394172554999955,60.511220559000094],[-45.222770513999876,60.43232254300017],[-44.94222251499997,60.47926757100004],[-44.89111352499998,60.43426781500017],[-44.92277146999987,60.3259374160001],[-45.10333660799995,60.2675973580001],[-45.077777502999936,60.12314481200008],[-44.76111255299992,59.990639831000124],[-44.551944505999984,60.00453333800016],[-44.463890601999935,60.141203455000095],[-44.31695550399985,60.146197728],[-44.223609600999964,60.233149077000064],[-44.09638555399994,60.18231317000004],[-43.73167050599994,60.16091920000002],[-43.38444161699988,60.10175888900011],[-43.13750454699988,60.077588162000154],[-43.08861156399996,60.11176134900012],[-43.11583749499994,60.28454305200012],[-43.36583747999998,60.38481995100011],[-43.432887508999954,60.23755527600008],[-43.519725533999974,60.22436752500005],[-43.8869055319999,60.35183665900013],[-43.98778961599993,60.43549978700014],[-44.136753469999974,60.49085018800014],[-44.41785048399993,60.529299319000074],[-44.57030858599995,60.64151271800006],[-44.43947545899988,60.84340644700006],[-44.69122659099986,60.88367914400004],[-44.86402555999996,60.877457928000126],[-44.894794520999824,60.95777500100013],[-44.69071948599998,61.07799295],[-44.75693853299998,61.22581066300006],[-44.83290858299995,61.274327633000155],[-44.962306559999945,61.46995354200004],[-45.081859489999886,61.53830058600005]]],[[[-42.32611050199995,62.797981444000015],[-42.41833457099989,62.708530779000114],[-42.16305147199989,62.70630253400009],[-41.98611854899997,62.76908466499998],[-42.32611050199995,62.797981444000015]]],[[[-41.53805955499996,63.411053792000075],[-41.673610519999954,63.48801106200017],[-41.84582560599995,63.42328835300009],[-41.70638661099997,63.38105730700016],[-41.43083959099994,63.229652643000065],[-41.17749757299998,63.224102314000106],[-41.23694253299993,63.3330013420001],[-41.53805955499996,63.411053792000075]]],[[[-41.12513347699996,63.86125419400014],[-41.398216552999884,63.93321031800019],[-41.696319609999875,63.96992406000015],[-42.22571558599992,63.80133330900014],[-42.23295956199996,63.690168150000034],[-42.53079959499996,63.66552015800005],[-42.61746545699998,63.5776831770001],[-42.451957569999934,63.51499727000015],[-42.66360850399997,63.48042694900016],[-42.76675050499989,63.43101663500005],[-42.67433147299988,63.37024180200012],[-42.91526760399995,63.269251436000104],[-42.87821556799997,63.154496141000095],[-43.21673146899997,63.056102991000046],[-43.44294746899993,63.02780853500002],[-43.50463157099995,62.93998295400013],[-43.31564748199992,62.86074429700017],[-43.35052860399992,62.780635933999974],[-43.56487247699994,62.79139326800009],[-43.47108048899992,62.70023722100012],[-43.29415846099994,62.64241885300015],[-43.30675562399995,62.56639264400002],[-43.42333549199992,62.425342480000154],[-43.244995581999945,62.265491540000085],[-43.06207261499992,62.214479612000105],[-42.61701149299989,62.16295622100006],[-42.63166456899995,62.09153838300017],[-42.557258581999974,61.947058177000144],[-42.42943958699993,61.898762153],[-42.478549492999946,61.84302300000019],[-42.68165960399995,61.86907093800016],[-42.853427598999986,61.93346172400004],[-43.076446572999885,61.80471837300013],[-42.96685050699989,61.75555230800006],[-42.54917557699997,61.65662539900018],[-42.66133851699982,61.594550868],[-43.07762959499996,61.6674026820001],[-43.14462245899995,61.60205015700012],[-43.36536758999989,61.55879014900012],[-43.28756357999998,61.462472190000085],[-43.274764581999875,61.360734326000056],[-43.37817346199995,61.20724005300002],[-43.64782750199993,61.22843486900007],[-43.65799357699996,61.12223364100009],[-43.56907248099992,61.08666034100014],[-42.98042248399992,61.027388718000054],[-42.94738051899992,60.95352604700008],[-43.09424252699989,60.930904128],[-43.556449501999964,60.97737172300009],[-43.581111575999955,60.91145911800015],[-43.51884459599984,60.817934513000125],[-43.3579445769999,60.792989467000154],[-43.47812246099994,60.70468712200005],[-43.59314346299993,60.80541798500013],[-43.81784049399988,60.817285586000196],[-43.89966547099988,60.70871546500018],[-44.08577356099994,60.71915277800019],[-44.26309557299987,60.779080033000184],[-44.33780649399995,60.69571479799998],[-44.15416352099987,60.610109415000124],[-43.441379549999965,60.51427274500003],[-43.24888646099993,60.46676294500014],[-43.037506597999936,60.50899264900016],[-42.82583956999997,60.60482931900003],[-42.849723467999866,60.67316881900018],[-42.771385529999975,60.730109099000174],[-42.91722159299991,60.78872844200009],[-42.88417057499993,60.837062352000146],[-43.08777655899996,60.889287476000106],[-42.73444346499997,60.92317869600015],[-42.65694857899996,60.991792283999985],[-42.79139749199993,61.06234041699997],[-42.76778047399995,61.14012950699998],[-42.650268537999864,61.195680571000196],[-42.66788059299995,61.255856098000095],[-42.45750454599994,61.409862337],[-42.61944559799997,61.54292354100005],[-42.430553541999984,61.57681509600019],[-42.31721847599988,61.63015015200011],[-42.351394512999946,61.75210013800006],[-42.227779545999965,61.821545211000114],[-42.21888751999995,61.91098883500001],[-42.13666557599993,62.01711010000008],[-42.428054561999886,62.000721635000104],[-42.39861245599991,62.09072131500005],[-42.27333049599997,62.180447242000184],[-42.243892581999944,62.357124517000045],[-42.3630596079999,62.55602003900003],[-42.60221860699994,62.62490922500018],[-42.71472554099989,62.683245762000126],[-42.680553527999905,62.75992894500007],[-42.31249946499997,62.80547386],[-42.028339535999976,62.783256116000075],[-41.74777946699993,62.84019757000016],[-41.61111052399991,62.976593263000154],[-41.74362153999988,63.01298715100012],[-42.00389052999998,63.02020547900014],[-42.13805361899995,63.11576755700008],[-41.88222452299988,63.09020845200013],[-41.831947520999904,63.042713236],[-41.543331604999935,63.04188560700004],[-41.61805358899994,63.13882868700017],[-41.48276849899992,63.15049009400019],[-41.49750153699989,63.230770789000076],[-41.90750149299993,63.463004157000114],[-41.74749347599982,63.51578734800012],[-41.51111559199995,63.422727436000116],[-41.20721846099997,63.44050394400011],[-41.05943645499991,63.50718399500016],[-40.74833658599994,63.507454898000105],[-40.87777345599994,63.64968154600018],[-40.51139459999996,63.70718693400005],[-40.609508464999976,63.787504845000115],[-40.74772252799994,63.76804189800009],[-40.96366851699992,63.79103798500006],[-41.12513347699996,63.86125419400014]]],[[[-40.75250658299984,64.3038704820001],[-40.960288598999966,64.28720759400005],[-40.98305552399995,64.20636296400016],[-40.72499851799995,64.20581311100005],[-40.75250658299984,64.3038704820001]]],[[[-50.933605568999894,64.55138020400005],[-50.99638753199997,64.55748357000004],[-51.202503560999844,64.31943534099997],[-51.13472749199997,64.26137339500008],[-50.97111156799997,64.4160889100001],[-50.81750447499991,64.47888143500018],[-50.933605568999894,64.55138020400005]]],[[[-40.444156481999926,64.72388932700005],[-40.49638361699988,64.8255629860002],[-40.74833256299996,64.93222723000014],[-40.86471947999996,64.90695730099998],[-40.78528250699986,64.80360424399998],[-40.57389459699982,64.68526752900016],[-40.50111352499994,64.50332792600005],[-40.38027950599991,64.45860192300017],[-40.273326588999964,64.5380432550001],[-40.426666466999905,64.55804851100015],[-40.386115489999895,64.64749951099998],[-40.444156481999926,64.72388932700005]]],[[[-52.85194358699994,65.64727314100008],[-53.16583261799991,65.63004514500017],[-53.16777755499999,65.55420535000002],[-52.90417055499995,65.57170844000018],[-52.85194358699994,65.64727314100008]]],[[[-52.58358354599994,65.66100672200014],[-52.783889573999886,65.60143368600012],[-52.68804552899991,65.49920967200018],[-52.53277261599993,65.62281273600013],[-52.58358354599994,65.66100672200014]]],[[[-36.90943951299988,65.64477097600007],[-37.0675046049999,65.72532575900004],[-37.2125054949999,65.68281291400018],[-37.10527446599997,65.60532490100007],[-36.90943951299988,65.64477097600007]]],[[[-39.12041458199991,65.7744465620001],[-39.244106494999926,65.83408832900011],[-39.46200949099989,65.78058848500018],[-39.48175054899991,65.73262036200009],[-40.12350861899995,65.58957731700008],[-39.88694348399986,65.5069921010001],[-39.78750259599997,65.61531931500014],[-39.646110617999966,65.67477131600003],[-39.45249955099996,65.54282188700006],[-39.319446560999836,65.59421653200013],[-39.29111857799995,65.6819889730001],[-39.004005536999955,65.6553221150001],[-39.12041458199991,65.7744465620001]]],[[[-36.809722524999984,65.74672006399999],[-36.79944245599995,65.86922325500018],[-36.98722860399994,65.80310395300006],[-36.809722524999984,65.74672006399999]]],[[[-37.56583456499993,65.88422401200012],[-37.68693948799995,65.90256579600015],[-37.958332604999896,65.7928342780001],[-37.98722049899993,65.70394670900004],[-37.935001576999866,65.59337633000007],[-37.73138452899991,65.56754213100015],[-37.393894573999944,65.62447587300016],[-37.32083857599986,65.6958752720002],[-37.343330574999925,65.77533135500005],[-37.56583456499993,65.88422401200012]]],[[[-50.54312857399998,65.82844982300003],[-50.738048558999935,65.89717925000019],[-51.04253762099984,65.90602165400009],[-51.67644151299993,65.87673126100003],[-51.91421548599993,65.81360195200011],[-52.08253449599988,65.71754333000018],[-52.46973450199994,65.6425128910002],[-52.60416748799997,65.52504420600008],[-52.45167552399994,65.29335867900011],[-52.19083756999993,65.27364360400003],[-52.21720854599988,65.10917658200009],[-52.28527462899996,65.08251861000014],[-52.015838518999885,64.960563595],[-52.21138748199991,64.911398368],[-51.87748749499997,64.83307065700012],[-51.80778157699996,64.93445547500005],[-51.64555755199996,64.86139193400015],[-51.859996474999946,64.82390018400008],[-52.15278255599992,64.67554703500019],[-52.025562531999924,64.583882877],[-52.11555852399994,64.44665435899998],[-52.02527251799995,64.36052913000009],[-52.07361950399991,64.32054946300019],[-51.984996467999906,64.19832052800012],[-51.82388656599994,64.21942465100005],[-51.546947478999925,64.453886432],[-51.44277148599997,64.51582534400006],[-51.41860562099993,64.6088778800002],[-51.2952764769999,64.72889365800012],[-51.14695350299991,64.719447924],[-51.210548511999946,64.61748408300002],[-51.03332859099993,64.61998624900014],[-50.733882585999936,64.762510454],[-50.37360357599988,64.756392],[-50.10388952199992,64.65722017200005],[-50.06806157999989,64.531099854],[-49.77472346699989,64.42414609900015],[-49.796394542999906,64.37998520400015],[-50.130824600999915,64.4733275860001],[-50.25500148999993,64.6341632320001],[-50.48500460199989,64.71027761900001],[-50.79555562299993,64.65055169700014],[-50.573890493999954,64.44665435899998],[-50.90222154399993,64.39887684000007],[-51.03332859099993,64.24052860700004],[-51.23110948799996,64.17524850100011],[-51.41014459299993,64.21321416400019],[-51.617504495999924,64.21498425400011],[-51.6422195429999,64.11302058100011],[-51.44583155099991,64.07636685400007],[-51.64999761399997,64.01081182200011],[-51.488609599999904,63.967745771000125],[-51.37972247499988,63.894695640000066],[-51.55943249099988,63.707465213000035],[-51.37665955999995,63.618010022000135],[-51.38805056699988,63.55939822300013],[-51.14056062599997,63.484398127000134],[-51.17082952199996,63.398830965000116],[-51.05416851699994,63.367441911000185],[-51.09583646699997,63.29411249600008],[-50.97416660399995,63.2557808790001],[-51.05943654299989,63.18243654400004],[-50.90499846899985,63.13577231000016],[-50.78276852699992,63.20244548800002],[-50.551391621999926,63.22243901000019],[-50.46721250299993,63.179388381000194],[-50.51278356999984,62.97297714200016],[-50.323337470999945,62.930479217000084],[-50.3172305839999,62.74130402100019],[-50.03750652499997,62.79853045900006],[-50.113616552999986,62.697689123000146],[-50.22360254599988,62.667970917000105],[-50.30611047999997,62.484899926000196],[-50.20610448499991,62.40489868300017],[-49.9999995199999,62.30628441900012],[-49.79944656099991,62.25406633500006],[-49.536113481999905,62.24907273300005],[-49.638336490999905,62.1490588580001],[-49.36277052799994,62.157119232000184],[-49.300552498999934,62.129336239999986],[-49.696105573999944,62.01766716100008],[-49.60221853499996,61.98127763200006],[-49.40472061199989,61.98182664600017],[-49.15417060599998,62.02071918000013],[-49.15416758899994,61.96515990200015],[-49.39083850399987,61.94237705100005],[-49.381946477999975,61.867376955000054],[-49.214717618999885,61.88183171500003],[-49.00083961299998,61.952387391],[-48.95139359299992,61.87682235400007],[-49.12388947199997,61.80515741700003],[-49.14444759799994,61.72459106700012],[-49.038059621999935,61.61792380500009],[-49.1605566099999,61.595698853000044],[-49.09833556399997,61.487089505000085],[-48.99638748099994,61.45237082400007],[-48.53111256199986,61.541260572],[-48.34416561099994,61.60320199800009],[-48.24472455499989,61.52736287300007],[-48.83167654599998,61.46014135100006],[-48.67666246699997,61.398199589000114],[-48.484451512999954,61.370686662000196],[-48.57778148999989,61.28319300400011],[-48.54084059899998,61.18956949300008],[-48.21999760599988,61.191515435000156],[-48.07556148799989,61.08401216300007],[-47.87277257199992,61.130400968],[-47.69367259099994,61.21071921400005],[-47.70911758899996,61.27670792599997],[-48.04138561899998,61.43940737200006],[-48.08301149099992,61.50823537000008],[-47.92448455599998,61.62292897500015],[-47.926025485999844,61.68059814500003],[-48.09761058699996,61.72108106100012],[-48.28701058599995,61.66994273400013],[-48.30276454099993,61.806450410000195],[-48.4550935609999,61.86057872900017],[-48.45485350399997,61.94155311000003],[-48.819400577999886,62.104119787],[-48.91611852099982,62.210504243000116],[-49.096126596999966,62.29216895900015],[-49.08849755599988,62.35294748000007],[-49.31483861399994,62.52944186200017],[-49.2560196149999,62.65547349999997],[-49.480071574999954,62.59566778200002],[-49.776660524999954,62.566450647000124],[-49.84483758399995,62.46186897000007],[-49.98197960199991,62.41932226200015],[-50.149307534999934,62.46414314800012],[-50.159732610999924,62.572496849000174],[-49.97780960499995,62.64750113600007],[-49.95217556599994,62.72338233800019],[-49.71943257799984,62.86698143900003],[-49.555419519999816,63.04996475500002],[-49.597801606999894,63.175371103000145],[-49.49486948899994,63.25845101800019],[-49.45151862099988,63.45858672700018],[-49.53096749699989,63.60558552700019],[-49.63491851899994,63.680073992000075],[-49.81968349299996,63.699716647],[-49.8717724949999,63.79543194600012],[-49.737384602999896,63.8554559280002],[-49.77914860899983,63.94502075500009],[-49.63920552699989,63.9925501690002],[-49.5754546149999,64.12350315700007],[-49.30124651999989,64.18266464099997],[-49.26447259599996,64.22230886400007],[-49.327556475999984,64.57889246000002],[-49.483898583999974,64.7541786750001],[-49.520580474999974,64.8719593350001],[-49.705932516999894,64.9571152800001],[-49.832366485999955,65.10781066700014],[-49.67491947499991,65.17588295299998],[-49.64218562899998,65.28472230099999],[-50.14471056399998,65.41171919800018],[-49.89693060999997,65.60820894600005],[-50.339107518999924,65.73585544100018],[-50.54312857399998,65.82844982300003]]],[[[-52.15220655099995,65.88407079100011],[-51.8291395039999,65.96848711700011],[-51.974719583999956,66.0028514120001],[-52.19582748399995,65.94700077900012],[-52.32000353599989,65.86726960100015],[-52.68722158799994,65.93532830800007],[-53.05471456599986,65.8464407400001],[-53.11583355999994,65.7406007720001],[-53.059169546999954,65.65533033000014],[-52.87916549399995,65.68504082400011],[-52.744163543999946,65.63366227200004],[-52.58794347699995,65.67518337000001],[-52.5355916179999,65.74639166100008],[-52.19790250799997,65.84861517300016],[-52.15220655099995,65.88407079100011]]],[[[-53.05339055999991,66.09892562400012],[-53.30805557799994,66.09367620600011],[-53.46221554099998,66.03256240900004],[-53.38527654299992,65.93172610200008],[-53.129997466999896,65.94449878100005],[-53.16277355899996,65.854223337],[-52.60972251099997,65.98200696000009],[-52.505565628999875,65.90033755100012],[-52.31750857899988,65.8975604580001],[-52.17499962799991,65.99728130200003],[-51.9219355539999,66.03340143700018],[-51.78968454499994,65.97650507800017],[-51.57269651799993,66.14023365499997],[-51.71124250399998,66.16609065300014],[-52.10931350299995,66.05683925000011],[-52.287399608999976,66.02861687900008],[-52.50570258899995,66.06079148500015],[-52.756847542999935,66.03832932600017],[-52.86029447699997,66.09439336100002],[-53.05339055999991,66.09892562400012]]],[[[-37.69943656999993,66.25036096600007],[-37.77722146999997,66.29256921300015],[-38.05720855199985,66.32813916000009],[-38.064575573999946,66.23302618399998],[-38.25540954899992,66.15246335400019],[-38.19876447999991,66.08231537400019],[-38.31753554499994,66.04788218100015],[-38.617526541999894,66.03849729900008],[-38.57240658999996,65.94343059100015],[-38.42260756299993,65.85448217000004],[-38.5108265909999,65.7682739600001],[-38.77345257299993,65.76405484600008],[-38.77500557199994,65.70694608900004],[-38.597782465999956,65.64643411300011],[-38.311275604999935,65.64953944000013],[-38.17916457299992,65.68281291400018],[-38.09888857199985,65.7928342780001],[-38.26778056799998,65.89978853600007],[-37.97471956099997,65.9603383990002],[-37.97887748799991,66.10812694200013],[-37.69943656999993,66.25036096600007]]],[[[-51.45417757999991,68.25629490200004],[-52.2555654759999,68.18405597200018],[-52.1100085299999,68.11212231100018],[-51.591949581999984,68.19072461400003],[-51.45417757999991,68.25629490200004]]],[[[-51.09942257999995,68.3750834010001],[-51.23082349699996,68.15239266200012],[-50.943061528999976,68.05016831199998],[-50.69083346599996,68.03017780800013],[-50.440273569999874,67.94626540200005],[-50.579730500999915,67.899326912],[-50.71194848599998,67.95545213600008],[-50.976943528999925,67.9943331020001],[-51.188606532999984,68.06211654800006],[-51.84388763099997,68.0398835490002],[-52.192493498999966,68.08544891600002],[-52.57973055199989,68.18767276300002],[-52.78944057299992,68.16183806100014],[-53.14805560699995,68.19766818300019],[-53.321105529999954,68.18294218500017],[-53.03917351099989,68.08378510800003],[-53.25555753899994,68.01490329900008],[-53.27388758799992,67.85432648500017],[-53.676666533999935,67.81098953100019],[-53.54750861399992,67.72765665000003],[-53.7294316199999,67.53514176800007],[-53.58943958799995,67.50736900300012],[-53.33167259599992,67.58430816800006],[-53.005283632999976,67.75071375700009],[-52.82222353799989,67.78959505900013],[-52.456672478999906,67.81933690100004],[-52.26722755299994,67.77015507800007],[-52.00582851499996,67.7626614890001],[-51.7130545039999,67.69347491400015],[-51.59916656799993,67.74737189200005],[-51.38138946799995,67.74877569300014],[-51.32110547899998,67.80960098500009],[-51.566112532999966,67.91765394300018],[-51.348606503999974,67.9179437900001],[-51.16166357599997,67.7571071370001],[-51.33028450099994,67.67430902100006],[-51.79750854899993,67.62430342500005],[-52.416381508999905,67.76737698000011],[-53.03334054499982,67.6923609590001],[-53.11112259499998,67.58986235300017],[-53.60194354399994,67.48235874500006],[-53.82111354799997,67.40403086500004],[-53.88027553499995,67.25541771000013],[-53.80666348199992,67.17928756600003],[-53.91555060699994,67.14400830300019],[-53.628337485999964,66.90621773300006],[-53.20305262699992,66.92344522600001],[-52.970832501999894,66.85288502400005],[-53.00444762199999,66.66592550000013],[-53.27527646899989,66.6923085460001],[-53.441940555999906,66.639266857],[-53.224166472999855,66.54564938000016],[-53.50333749299989,66.52730709400004],[-53.62471348599996,66.49118729400004],[-53.69666659299992,66.32536223600016],[-53.58306447999996,66.20702401200009],[-53.63999956299995,66.11867154400005],[-53.30749851599995,66.1172824950001],[-52.99665848699988,66.19506035400019],[-52.72443757299993,66.34452779300011],[-52.45999154499998,66.4356275130001],[-52.130001548999985,66.5114830660001],[-51.977497513999936,66.65647993300013],[-51.87943259999997,66.63537564200004],[-52.09778553599995,66.47481458700008],[-52.373882576999904,66.43091219000013],[-52.36845060099989,66.39142001500005],[-51.726287516999946,66.3965556070001],[-51.596614613999975,66.37337645900016],[-51.39021259499998,66.22831086100001],[-51.17774962099992,66.18823999900013],[-50.58848958999988,66.12556884500003],[-49.94503753699996,65.938387368],[-49.82453560899995,65.95384510600019],[-49.523738607999974,66.1238979960001],[-49.310581612999954,66.30352570200012],[-49.232612478999954,66.43117219600015],[-49.26529653699998,66.56430414400018],[-49.50870549699994,66.70333393400006],[-49.58607448699985,66.87405771100009],[-49.92494946799985,67.04694871400011],[-49.94854754299996,67.15535354399998],[-49.69644956699989,67.35735908700019],[-49.631595596999944,67.51083341100008],[-49.76051362699991,67.59385264100013],[-49.82292946899992,67.81661261500005],[-49.95732155199994,67.96062511100007],[-50.294338599999946,67.99608810500013],[-50.4537885499999,68.18926767200014],[-50.68709949599992,68.23700713700009],[-50.773803578999946,68.35861078200008],[-51.09942257999995,68.3750834010001]]],[[[-52.93083154499993,68.4451785760001],[-53.18417356299989,68.43129277900005],[-53.111942512999974,68.35629151],[-52.95639450599998,68.3626848900002],[-52.93083154499993,68.4451785760001]]],[[[-51.804443567999954,68.622969136],[-52.21721256899997,68.64048681000008],[-52.13220950999988,68.56214417900003],[-51.804443567999954,68.622969136]]],[[[-52.18249858199988,68.70410344400005],[-52.74944648999997,68.67964354200006],[-52.80889547399988,68.61686459500004],[-52.26776852099994,68.64964253100015],[-52.18249858199988,68.70410344400005]]],[[[-50.9361156139999,69.11800651700008],[-51.078887587999986,69.12772701000011],[-51.13277853199992,69.03911386500005],[-51.081676581999886,68.87047986300013],[-51.29083658299999,68.75021933400012],[-50.98722057999993,68.73103734900008],[-51.044723620999946,68.59797413300004],[-51.618328603999885,68.51853112500015],[-51.95278162899996,68.52964117000005],[-51.98416162999996,68.5799206870002],[-52.3963925139999,68.54992135200007],[-52.47972153899991,68.48990491400008],[-53.079723482999896,68.32157601400019],[-52.89723251899994,68.22379273100006],[-52.44445049099994,68.22295336700012],[-52.44639257799997,68.17738816800005],[-52.0494496149999,68.23683933100006],[-51.78417562299995,68.2401811960001],[-51.66750355399989,68.27407325399997],[-51.24083350099994,68.28850789700016],[-51.21278748599997,68.41324050700013],[-50.83393853699988,68.50180755200012],[-50.403060601999925,68.82905767100016],[-50.37017051599997,68.89909132200006],[-50.51833356299994,68.94326814300013],[-50.532504511999946,69.02689120600013],[-50.78138350199998,69.12633829600014],[-50.9361156139999,69.11800651700008]]],[[[-50.338108562999935,69.46487330800016],[-50.42444652499995,69.5080275360001],[-50.86584056399988,69.45608354100005],[-50.878051487999926,69.364678551],[-51.12277255099997,69.19996610700002],[-50.87167352999995,69.17272777200009],[-50.559997489999944,69.2241215790001],[-50.074592590999885,68.98585005500013],[-49.991832528999964,69.08600675700006],[-50.11689354199996,69.26572750200012],[-50.356979579999916,69.37095793800006],[-50.338108562999935,69.46487330800016]]],[[[-23.289434578999874,69.73692239200017],[-23.593904529999975,69.70693747500013],[-23.49056052499992,69.6535898460001],[-23.286672573999965,69.63970254100013],[-23.289434578999874,69.73692239200017]]],[[[-51.008895510999935,69.91971761899998],[-51.38805760699995,69.70387070400017],[-51.24917550699996,69.53192451000012],[-50.94916958999988,69.55469210600006],[-50.965278601999955,69.7230364290001],[-50.653884527999935,69.83527078300017],[-51.008895510999935,69.91971761899998]]],[[[-50.26726153299995,69.98373943400003],[-50.55332147099995,69.97250081000004],[-50.58916450099997,69.92054156000006],[-50.3136065839999,69.87192518100017],[-50.33000158699991,69.75665356000007],[-50.55777762599996,69.78082462200018],[-50.79750055999989,69.71137820700005],[-50.84610352899995,69.61942269400004],[-50.7997246139999,69.50108514100009],[-50.51138647399995,69.50914115600006],[-50.22365551899992,69.56362671200003],[-50.14872750799992,69.78834738000018],[-50.26726153299995,69.98373943400003]]],[[[-53.99388854499995,70.28251639600006],[-54.360279469999966,70.32252724300008],[-54.7511135339999,70.24416969200018],[-54.843322515999944,70.17444751200009],[-54.817783526999904,70.05916080400004],[-54.706664468999975,69.96583216800019],[-54.867214627999886,69.93194061300005],[-54.92639153499994,69.74053884800009],[-54.994445547999874,69.69331017700006],[-54.65889348799993,69.56914284200008],[-54.07138862799991,69.5444215920001],[-53.91305950599991,69.43635371400018],[-54.15333162199994,69.42774700900009],[-54.153613588999974,69.33412869400019],[-53.93443251999997,69.31607658899998],[-53.83833349799994,69.258578409],[-53.582225618999985,69.22856298200014],[-53.183063631999914,69.31300931500004],[-52.75305959299993,69.35718580100018],[-52.078338514999984,69.49662881800003],[-51.833328611999946,69.62468787000012],[-52.01389358199998,69.66581267300006],[-51.91305559899996,69.72025933600008],[-51.99694855899992,69.79721409200016],[-52.4916615599999,69.86971202300003],[-52.693046506999906,69.91610149800005],[-53.06750149399994,70.12833296300005],[-53.51972947899992,70.23945436800011],[-53.99388854499995,70.28251639600006]]],[[[-27.549447520999877,70.88977472000005],[-27.748882501999844,70.87614842800008],[-27.75333748399993,70.75060662900006],[-27.57528155199992,70.75283521000011],[-27.24945652399998,70.88672354000005],[-27.549447520999877,70.88977472000005]]],[[[-51.67167254499998,70.89004981500017],[-51.96277654499994,70.9722848340001],[-52.162216555999976,70.88533465900014],[-51.65083362499996,70.83366575800011],[-51.67167254499998,70.89004981500017]]],[[[-25.71666358799996,70.98089137300013],[-25.726942483999892,71.07701202100009],[-26.298343528999908,70.93254841100008],[-26.640272540999945,70.88895111500005],[-27.12360358899997,70.87476021700007],[-27.2980635159999,70.78643708600003],[-27.520284532999938,70.72948741800013],[-27.69555046399995,70.6439267950002],[-27.88111356299993,70.6386461960002],[-28.068616568999914,70.5641949460001],[-27.98998844999994,70.52030830700005],[-28.066659561999984,70.42696525400015],[-27.854448548999983,70.42473684100008],[-26.818616473999896,70.52087257700003],[-26.580007494999904,70.5161419980002],[-26.24305347899997,70.58171295600005],[-26.040008578999903,70.519758287],[-25.812213596999925,70.60170312499997],[-25.314727525999956,70.65114411600007],[-25.28277755499994,70.68836345400013],[-25.51722558999984,70.96755375300006],[-25.71666358799996,70.98089137300013]]],[[[-53.64916249199996,71.02283994800007],[-53.45278154099992,71.0481103800002],[-53.41138851799997,71.16840225800007],[-53.59805249599998,71.31201057900017],[-53.88499856999994,71.19644894400005],[-53.956390591999934,71.09478886400007],[-53.64916249199996,71.02283994800007]]],[[[-52.57138854699997,71.34480360200018],[-52.961376541999925,71.38397542000013],[-53.18332263199994,71.32202142100016],[-53.11582953599998,71.20479631400008],[-52.958885607999946,71.1470233760001],[-52.64222350799997,71.16783698300014],[-52.592224616999886,71.23368320200007],[-52.360832624999944,71.26952807600009],[-52.57138854699997,71.34480360200018]]],[[[-53.13360956499997,71.6606499740002],[-53.4688875359999,71.65843681700011],[-53.44832957699998,71.56063760800009],[-53.17610547899989,71.5264855440002],[-52.83361052099997,71.61842613700003],[-53.13360956499997,71.6606499740002]]],[[[-55.55916554599992,71.81788525800005],[-55.40998862399988,71.88901040000007],[-55.566394601999946,71.92900666300011],[-55.79500950299985,71.89039928200003],[-55.55916554599992,71.81788525800005]]],[[[-55.04360557799998,72.30956887200017],[-55.437210530999835,72.28818965500005],[-55.650268618999974,72.22430463300009],[-55.64999050799992,72.17345162600003],[-55.374164537999945,72.15846645900018],[-55.04360557799998,72.30956887200017]]],[[[-55.6741716279999,72.76433875200013],[-55.89332956199996,72.76240035300009],[-56.141109516999904,72.70932714800017],[-56.06167556199995,72.64960038800018],[-55.6741716279999,72.76433875200013]]],[[[-54.47473150799988,72.80383109500002],[-54.80250147399988,72.80711143700006],[-54.73501256899988,72.6998815820001],[-54.99639551399997,72.56932002900004],[-54.98249848599994,72.50599206800007],[-55.469989471999895,72.52070147000012],[-55.62638053099988,72.45625972200008],[-55.507224567999856,72.38847677900014],[-55.28028152199994,72.36819642900008],[-54.970836575999954,72.4026378370001],[-54.88361750899992,72.24512712400013],[-55.39027354999996,72.0965116220001],[-55.5800094949999,71.99761421699998],[-55.034172583999975,71.88678316100004],[-55.34694648599998,71.87372030000006],[-55.40693258199991,71.79954313900004],[-55.77527649099994,71.73981654700003],[-55.905834523999886,71.67731269500013],[-55.68139246999988,71.62314129300006],[-55.54360957199998,71.46703421300015],[-55.342220601999884,71.38814156100011],[-55.16526756099995,71.37617740000007],[-55.013889551999966,71.42980096100018],[-54.82556562099995,71.35147241100009],[-54.39611462099987,71.36258212100006],[-53.91554256099994,71.44063457100003],[-53.88528053699997,71.57064744500008],[-53.72194255799997,71.65732235900009],[-53.76472060599997,71.7139967650001],[-53.39805559299998,71.84317044200009],[-53.58110847899991,72.04317958400003],[-53.43251057899994,72.0584545970001],[-53.373317578999945,71.90039419800013],[-53.11555863299992,71.77122135900004],[-53.21361952399991,71.69565464600015],[-52.564456545999974,71.68065489500009],[-52.56750856399998,71.62730659600004],[-52.174442566999915,71.6089795650002],[-51.863887521999914,71.65398116500006],[-51.83999658399989,71.58953908100017],[-52.48583261699997,71.55535768000004],[-52.66694257899991,71.5264855440002],[-52.943057556999975,71.40369116500005],[-52.268890522999925,71.35534820300018],[-52.23389054499995,71.18561550200019],[-51.74695259699996,71.34897024600014],[-51.5247195099999,71.30035185400016],[-51.626953582999874,71.24840819500014],[-52.02722952499994,71.21479106300006],[-52.218326523999906,71.10783563200005],[-51.865554514999985,71.13089324100014],[-51.95639054099996,71.02061170299999],[-51.608253556999955,70.92748926200005],[-50.91305548899993,70.84227196100011],[-50.747787491999986,70.78115648699998],[-51.27138553799989,70.76977319200006],[-51.17583854799989,70.68892722100014],[-51.32972358399991,70.55113191800018],[-50.958057591999875,70.47808413500013],[-51.00556554899998,70.42334745700003],[-50.67499954799996,70.40280860900009],[-50.59693955399996,70.32307709600019],[-51.05722053599993,70.3569678130001],[-51.19722346499992,70.39919232099999],[-51.51611749799997,70.42195974900017],[-51.812782555999945,70.49224586300005],[-52.466110501999935,70.70087595900009],[-53.043331605999924,70.77448851500003],[-53.41221949999988,70.75172058400011],[-54.12860852799997,70.82783597600019],[-54.57250959399994,70.71587571000009],[-54.54054654699996,70.65253299800008],[-54.35333254899996,70.58392494100019],[-54.16444049299997,70.46531229300018],[-53.89306648699983,70.3791862270001],[-53.224166472999855,70.34474498600014],[-52.876926519999984,70.278365678],[-52.575000476999946,70.18972235800004],[-52.392230562999885,70.0786168780001],[-51.930553491999945,70.00222639200018],[-51.536388627999884,70.00834551600002],[-51.27055355099998,70.06138905000006],[-51.03417248099993,70.02833585300016],[-50.91221662799995,69.96278015000007],[-50.50000753799992,70.02999932500012],[-50.12899047199994,70.05591063800006],[-50.04460951799996,70.12006237200006],[-50.28612550899993,70.20964446500005],[-50.35332456699996,70.2831576120002],[-50.379714486999944,70.5851542310001],[-50.51143257499996,70.70115809400005],[-50.50268153299993,70.80718212900007],[-50.703269527999964,70.95729162100008],[-50.82443647699989,71.11574814800014],[-51.10228349099998,71.21340302000004],[-51.1870154799999,71.37651368200017],[-50.99818058899996,71.49275441900016],[-51.006950573999916,71.5804598040001],[-51.385879485999965,71.68825443100008],[-51.69359256299998,71.93979568100013],[-52.03784554099997,72.06317763100009],[-52.10309949499998,72.17429048700006],[-52.247405525999966,72.25812041500006],[-52.71088453899995,72.37429962800013],[-53.03192852999996,72.4037668790001],[-53.24003961899996,72.46414893700012],[-53.09198352499993,72.57036491700012],[-53.1913484719999,72.62668124800012],[-53.90896947199997,72.69764629600007],[-54.47473150799988,72.80383109500002]]],[[[-55.12556047399994,72.82823131800018],[-55.355556544999956,72.80071772100018],[-55.8155475129999,72.65376686500008],[-55.47055055699997,72.57516439400013],[-55.28556061199998,72.67987632600006],[-55.072227597999984,72.74488234300014],[-55.12556047399994,72.82823131800018]]],[[[-23.986942531999944,72.87266714000015],[-24.26277956599995,72.86932594500018],[-24.48444754499991,72.82461452700016],[-24.369157483999913,72.59321616400018],[-24.101940566999872,72.54820065000007],[-24.0233285409999,72.47570104300013],[-23.270832453999958,72.35292124900008],[-22.97332954099994,72.24041146500014],[-22.57805658899997,72.14041469],[-22.277221533999864,72.11262700400016],[-22.061393561999978,72.26874833300013],[-22.727502569999956,72.37513999800018],[-22.65027456399997,72.46543120000007],[-22.093606556999873,72.39320685500013],[-21.92860258999991,72.46930732700008],[-22.395288518999962,72.58570899600005],[-22.61027545099995,72.60598884300015],[-23.055555507999884,72.76017244400003],[-23.12388746499994,72.82684277200008],[-23.567489464999937,72.83073398700003],[-23.986942531999944,72.87266714000015]]],[[[-24.798059469999885,72.88154894000013],[-25.13332755099998,72.88212896700009],[-25.280586525999865,72.82721660500016],[-24.87443553999998,72.78432858600013],[-24.798059469999885,72.88154894000013]]],[[[-55.50500151999995,73.04351597500005],[-55.68029058499991,72.98433856500003],[-55.30583962099996,72.91711939000015],[-55.075561583999956,72.96434806100018],[-55.50500151999995,73.04351597500005]]],[[[-22.94248547799998,73.03185708300015],[-23.327499483999873,73.05795112100003],[-23.792503499999953,73.00991409900018],[-24.564722540999924,72.97739466100018],[-24.541391512999894,72.89656377800009],[-23.87611147599995,72.9057355920001],[-23.575544473999912,72.85905576700003],[-23.114707604999865,72.8671127880001],[-22.789442486999917,72.80543338000018],[-22.74415254999991,72.7471105890001],[-22.49500047799995,72.70711482900003],[-21.865837557999896,72.71266934800013],[-22.07444954999994,72.82600357600006],[-21.906660443999954,72.91905711800007],[-22.119443437999962,72.92877794700013],[-22.46833747599993,73.00046819700003],[-22.94248547799998,73.03185708300015]]],[[[-55.376384567999935,73.19240489500015],[-55.50139260799995,73.10267779500003],[-55.38806558899989,73.046017806],[-55.03306147899997,72.99462282500008],[-54.76792947599995,73.01234770100012],[-54.985706575999984,73.10767475],[-55.376384567999935,73.19240489500015]]],[[[-24.65666950399998,73.42270455800013],[-25.243057559999954,73.40465245300015],[-25.285013511999978,73.33131381800007],[-25.70750954399989,73.17908353600006],[-25.493045475999963,73.12573523700019],[-25.02862752199991,73.11157401200006],[-24.899450491999914,73.0760186490001],[-24.386934494999878,73.02241134900004],[-23.009164523999914,73.09379582700018],[-23.268320564999954,73.25658747400013],[-23.850009558999943,73.36075089400015],[-24.65666950399998,73.42270455800013]]],[[[-56.36945351499992,73.87801037700018],[-56.68637847099984,73.90939926300007],[-56.60556753599997,73.8091114680002],[-56.36945351499992,73.87801037700018]]],[[[-20.92695459899994,74.41887648500006],[-21.34639358299995,74.44526120700016],[-21.84139659899995,74.34942889600018],[-21.968059560999848,74.20969620000005],[-21.396110506999946,74.12773627400009],[-21.283054557999947,74.0802467580001],[-20.780839585999956,74.10829445000013],[-20.142505522999897,74.17719335900006],[-20.46277854699997,74.30442847000006],[-20.537494495999965,74.40166307300007],[-20.92695459899994,74.41887648500006]]],[[[-20.166934579999975,74.8964164750002],[-19.993049483999982,75.00781263900018],[-20.295297559999938,75.04864675699997],[-20.613626484999884,74.97808622000002],[-20.540817585999832,74.92696583000003],[-20.68444853699998,74.80528423300018],[-20.450822599999924,74.73000870700008],[-20.084432512999967,74.70168558600011],[-19.88110950199996,74.77418519300005],[-19.74528646099992,74.87584577600018],[-20.166934579999975,74.8964164750002]]],[[[-17.808345478999968,75.30504247000005],[-18.134166483999934,75.33089209200011],[-18.38223058499983,75.30476771100012],[-18.552509450999935,75.37255216200003],[-18.797220455999877,75.32866434900006],[-18.903322441999876,74.99835047600004],[-18.453035538999927,74.97808622000002],[-18.05860345899987,75.03087008100016],[-17.495819512999958,74.97669717100013],[-17.4005605239999,75.01004021400018],[-17.41444045299994,75.16031835000013],[-17.875007592999964,75.09920337900007],[-18.18778752999998,75.24003561400013],[-17.808345478999968,75.30504247000005]]],[[[-20.794708450999906,76.52651190700004],[-21.122222599999873,76.43567102000003],[-20.94637647399992,76.394286211],[-20.696670525999878,76.48761535],[-20.794708450999906,76.52651190700004]]],[[[-18.650562462999915,76.6187428500001],[-18.765554463999933,76.69903963800016],[-19.08333353599994,76.72763651200017],[-18.984661435999897,76.61003656700012],[-19.128892531999952,76.49455858400006],[-18.88611255099994,76.27733536000011],[-18.65222358899996,76.17816168700006],[-18.723049496999977,76.502905618],[-18.650562462999915,76.6187428500001]]],[[[-17.66638755499997,77.90299358000016],[-18.24081446699995,77.68464064400013],[-17.732768539999938,77.70771317300006],[-17.584167454999942,77.83688785700019],[-17.66638755499997,77.90299358000016]]],[[[-20.239168479999876,77.96688681700016],[-20.490837469999974,77.95383904300007],[-19.775829444999943,77.8296698650002],[-19.281118454999955,77.80104298300017],[-19.334726592999857,77.88883252200014],[-19.69888843599989,77.88384260800007],[-20.239168479999876,77.96688681700016]]],[[[-19.28499759999994,78.89028890400016],[-19.745828601999904,78.80639141700004],[-19.529741461999834,78.7294514130001],[-19.266675597999892,78.73083945700017],[-19.28499759999994,78.89028890400016]]],[[[-17.672477509999965,79.07975545500011],[-17.571386560999827,79.17529791900017],[-17.786094542999933,79.23169790200012],[-18.113605507999978,79.0611228190001],[-17.672477509999965,79.07975545500011]]],[[[-20.473520457999882,79.46180880500015],[-20.972812493999925,79.51446375300014],[-21.529977546999874,79.49392306100003],[-22.381534486999954,79.39685525800019],[-22.36933747599994,79.31990838000019],[-21.99400155199993,79.25483966600018],[-21.554952600999968,79.11834808400016],[-21.140258443999926,79.09723557900008],[-20.50948150499994,78.98379456600014],[-20.020692497999903,78.95462487200012],[-20.174491535999948,78.87639556400012],[-20.69813350299995,78.90422197400017],[-21.88980845999987,78.69471982400006],[-22.22461855299997,78.74193357600018],[-22.595766543999957,78.70144144000005],[-22.735128592999956,78.50962544100008],[-22.50268550899989,78.48659867700013],[-22.02878158799996,78.52281721600008],[-21.855506526999875,78.4932289300001],[-22.025400495999975,78.38660877400008],[-21.622943581999948,78.33549559300019],[-21.956224481999982,78.1914576160001],[-22.22037144299992,77.90864046800016],[-22.61052858399995,77.57838627500007],[-22.28945156899988,77.54260258900013],[-21.996219570999926,77.64646811500018],[-21.54434748199992,77.63355830800003],[-21.96454653799998,77.41544928500008],[-22.215400471999942,77.08174007100018],[-22.222301459999926,76.92385451900003],[-22.330699584999934,76.86210671500015],[-22.751142553999898,76.79970964800009],[-22.89019044899993,76.66879421100009],[-22.692661512999962,76.55596390400018],[-22.874464489999923,76.509955972],[-22.713983565999968,76.31517864700015],[-22.419389507999938,76.2485326260001],[-22.833002567999927,76.08834305700015],[-22.32159650299991,76.06685655100011],[-22.85799756999984,75.9251769060001],[-22.986818537999966,75.8451778430001],[-22.945684514999982,75.75815122400007],[-23.074180599999977,75.69361710800001],[-22.995887588999892,75.61349600400013],[-23.048248499999886,75.41930725600002],[-22.79919449599987,75.36473872000016],[-22.874549481999964,75.29428412900012],[-23.28008054299994,75.2841279450002],[-23.45433259899994,75.19818577700005],[-23.157552540999973,75.08247108900014],[-23.377267536999966,74.99171335000011],[-22.46098352899992,74.77225517600016],[-22.424390486999926,74.74331397300017],[-22.874141450999957,74.66361297000014],[-23.614875548999976,74.64348483500015],[-23.76943046799994,74.57660143900006],[-23.10776554499995,74.42768234400006],[-22.739219463999973,74.27275728100017],[-22.59992748899998,74.14917550600012],[-22.874334569999917,74.16588533300006],[-23.51971244899994,74.36721546300004],[-24.30313658599988,74.49735741800004],[-24.684995474999937,74.4446054070001],[-25.23523556799995,74.54551731900017],[-25.859275467999964,74.58948844800011],[-26.00426060099994,74.51530374300012],[-25.881383575999905,74.35914938900004],[-24.978446575999897,74.24343537200008],[-24.677709589999836,74.1454901510001],[-24.203136456999914,73.80473259400009],[-24.582447583999965,73.71673702800007],[-24.65249648999992,73.96034430300017],[-25.01936350699998,74.09707124900012],[-25.28836459699994,74.12321172300005],[-25.935358506999876,74.10045904700007],[-26.183877576999976,74.03645902500006],[-26.61600860799996,74.03124766100012],[-26.61517745799995,73.90751484400005],[-26.90028353599996,73.89886254100009],[-27.359224586999915,73.94867786800006],[-27.791257548999965,73.86574111500016],[-27.9147146009999,73.70286581600004],[-28.650281589999906,73.45317026200007],[-28.88963555299989,73.31605489800017],[-28.97422052299993,73.17910650300013],[-28.936424509999938,72.995386081],[-28.516981501999908,72.79119654900006],[-27.992078560999914,72.7513987700001],[-27.708709548999934,72.68613274600006],[-27.66000348299997,72.58678372400016],[-27.493165555999894,72.50001744700018],[-27.48010654999996,72.25617480800014],[-27.74351355799996,72.25128413500005],[-28.552898459999938,72.17536689100018],[-29.1173835969999,72.2663832950002],[-29.19266649899987,72.18822338900003],[-28.896081571999957,72.10865180300016],[-28.89930960999982,71.93052479300013],[-28.97881145899987,71.83070353500005],[-28.838907603999928,71.7581204440001],[-29.016073544999927,71.69733370900008],[-28.751184449999926,71.66169452700018],[-28.56515648999988,71.60123619500007],[-28.769947507999973,71.54346258600009],[-29.25084847399995,71.50076634500016],[-29.631387548999953,71.54647588000006],[-29.455772595999917,71.30256534700004],[-29.26855859699998,71.25422255300015],[-29.426073500999962,71.19113850600013],[-30.051645445999952,71.07510379700011],[-30.281524504999936,71.00249857800014],[-30.182058471999937,70.93865194500006],[-29.656814554999983,70.98861999000002],[-29.590215472999887,70.95615486700018],[-30.068708485999935,70.84515634100006],[-29.80280350399994,70.8323836620001],[-29.368053463999956,70.92552135800014],[-28.957097467999972,70.96597443500013],[-28.729640443999983,70.94580120500007],[-28.62128255199991,71.03671836800015],[-28.463243443999943,71.02729610300008],[-28.496932491999928,70.92268307800015],[-28.2111645789999,70.80432926399999],[-28.731250606999936,70.77215415500012],[-28.90437647099992,70.82979734200012],[-29.111057606999964,70.77805954100006],[-29.56387752099988,70.72361254200007],[-30.281623578999927,70.71875204400004],[-30.128791476999822,70.5978419170001],[-30.591436489999978,70.53479743300005],[-30.708166561999974,70.48521814000003],[-30.74637647399993,70.38914409500012],[-30.557023580999953,70.2322286650001],[-30.555808539999873,70.13995346600007],[-30.21081946399994,70.1694500540001],[-30.11360749199997,70.0870021340001],[-29.7021254469999,70.16854983800005],[-29.423795466999934,70.14942904000003],[-29.26101454899998,70.06603530600006],[-29.23399146099996,69.86436386600008],[-28.88663650799998,69.86782760300008],[-28.61211744399992,69.89489025400007],[-28.448930505999954,69.84055104600014],[-28.033027510999943,69.85533722700006],[-27.73593547899992,69.88888612900018],[-27.419349486999977,69.82992949900017],[-27.032665470999916,69.84440353700012],[-26.812953492999952,69.89951471800003],[-26.633331486999907,69.9935440810001],[-26.3925225939999,70.01174873700018],[-26.000959471999977,69.982976345],[-25.75320650699996,70.02553579400006],[-25.245758544999944,70.05729851300009],[-24.635051569999916,70.14001431900004],[-24.053941597999938,70.13417012100001],[-23.70248454199998,70.10426818400015],[-22.907857488999923,70.07207044400008],[-23.108369544999903,70.0001131460001],[-23.949665525999933,69.96231512200018],[-23.797533479999913,69.87781531200017],[-24.100286481999888,69.85573436100009],[-24.449186554999983,69.74553664200005],[-24.75669645399995,69.68773235500004],[-24.964424489999942,69.59290252000005],[-25.088817465999966,69.48738927900001],[-25.187149594999937,69.32341611800018],[-25.329822495999963,69.34252115800018],[-25.28753244099994,69.48072801300009],[-25.43630552299993,69.47205324600009],[-25.9188275489999,69.2985968000001],[-26.123226460999888,69.24136550100008],[-25.96979555599995,69.1764816910001],[-26.697755464999886,69.10534883700012],[-27.169271549999962,69.21056385000003],[-27.425874462999957,69.17567267000004],[-27.5785005379999,69.20050824900011],[-27.84303256499993,69.17953303900015],[-28.15131544299993,69.23772607800015],[-28.32803345499991,69.33299948400014],[-28.634347591999926,69.44673688100016],[-28.650066510999977,69.33071860000007],[-28.750843473999964,69.26995416100016],[-28.947347470999887,69.317037658],[-29.001031548999947,69.43842857100014],[-29.25991048499992,69.37433785700006],[-29.545906552999952,69.39129159700019],[-29.82514948999983,69.34268209100009],[-30.035152541999935,69.16171831000008],[-30.24147057499988,69.10392978100015],[-30.406417544999897,69.00104074600017],[-30.49774759999997,68.788039319],[-30.23778153199993,68.65837111000013],[-30.276159583999913,68.57398529300008],[-30.48534959199992,68.57288659400007],[-30.610816455999895,68.68460244300013],[-30.826410572999976,68.80088810600006],[-30.983386520999943,68.8055353690001],[-31.064687460999835,68.73712646600018],[-31.01802456799993,68.64836864900008],[-30.85753660299997,68.58130219200001],[-30.82569660299987,68.47362289900019],[-30.86582747899996,68.32826024600013],[-31.156070489999934,68.26390935800015],[-31.275089491999836,68.29299405900008],[-31.37729255199997,68.39594361100018],[-31.48122245199994,68.63003357100018],[-31.58061053399996,68.74754835699997],[-31.77552247199992,68.83605387800003],[-31.951232475999916,68.79580682900018],[-32.085113597999964,68.83973923300005],[-32.29684449599995,68.76629498600005],[-32.51622756799998,68.90882003000013],[-32.61557357299989,69.09888655800006],[-32.794807496999965,69.06936599700009],[-32.87012057299995,68.98283709600014],[-32.78811253499998,68.91073479200008],[-32.85254254899991,68.84788778400002],[-33.03976844999988,68.80474897900007],[-33.001842516999886,68.72526205000014],[-33.102481513999976,68.666077767],[-33.26705548899986,68.69641321500018],[-33.41116353899997,68.6272261370001],[-33.20578360899992,68.59547833700015],[-33.34229648099989,68.4710359090002],[-33.502014483999915,68.408143472],[-33.433952591999855,68.31966058100011],[-32.694930581999984,68.22629472900013],[-32.50529857199996,68.16772852800017],[-32.56386946799995,68.09904453100006],[-33.01423650199996,67.92264402600017],[-33.11290357199994,67.80153575000003],[-33.345169461999944,67.70512542400007],[-33.51424049599996,67.57281775200005],[-33.554222509999875,67.46310869800004],[-33.68046151499988,67.40705270900014],[-33.94965354399989,67.16350192700014],[-34.27756851699996,66.80021733500013],[-34.52151157099996,66.83463477100014],[-34.70813749599995,66.72719251800004],[-34.59347155099988,66.62393820000011],[-34.61884357199989,66.56978205299998],[-34.811561463999965,66.50940720400013],[-35.07373448699991,66.55960407600014],[-35.135486481999976,66.80515327000006],[-35.20914446799998,66.83925806100007],[-35.819045606999964,66.9659126410001],[-36.18193054999995,66.93749949800008],[-36.626857560999895,66.85721897100007],[-36.59985358399996,66.68643417300018],[-36.75934259299993,66.67563744400007],[-37.05416145299989,66.7457252420001],[-37.233089604999975,66.81242490700015],[-37.52076758699991,66.86090415800004],[-37.86322348499988,66.768950657],[-37.92366052699987,66.60397904500007],[-38.212989575999984,66.54042276100017],[-38.298511474999884,66.3949384020001],[-37.86221346499991,66.37368927200004],[-37.61694355499998,66.3211964300001],[-37.22054256699994,66.343413838],[-37.56055849299992,66.15923140600006],[-37.793624518999934,65.99088808900012],[-37.40583057199996,65.82867898400008],[-37.116394569999954,65.80533186300005],[-36.82694247499995,65.9106070580001],[-36.39471857299992,66.0222915600001],[-36.33195856999998,65.95728654800018],[-36.06361361599994,65.93254987500012],[-35.89611854799995,66.00979397400005],[-35.81806559499995,66.12561494500017],[-35.56999948199996,66.14062978300007],[-35.59222057799991,66.28480170300014],[-35.39332958199998,66.28535205900005],[-35.23277254999988,66.24035062700005],[-35.129440615999954,66.33619651600009],[-34.9708255029999,66.28147542900012],[-34.63999547199995,66.37063725300015],[-34.529781491999984,66.5061188160002],[-34.30749844899998,66.58149408600013],[-33.989437576999876,66.7656612630002],[-34.02138855399994,66.84232550200011],[-33.952224608999984,66.99150309500004],[-33.77167556499995,67.02316690800006],[-33.55194045299987,67.11095527300006],[-33.42471355599997,67.22984267900011],[-33.44972247299984,67.3868030370001],[-33.02361249899991,67.67514805000008],[-32.77972744699986,67.72098834300016],[-32.547492569999974,67.8148804110001],[-32.54638649399993,67.85960674900008],[-32.09444047699998,67.90654523900014],[-32.144718484999885,68.03516839400004],[-31.999168579999946,68.09378019300004],[-32.0555534749999,68.1512932920001],[-32.32417654099993,68.20268844000014],[-32.13751256299997,68.24350730300006],[-32.20056559699992,68.34046781800015],[-32.43111755599995,68.3779597350001],[-32.52527952099996,68.44656728899997],[-32.42666659799994,68.52852671200003],[-32.06944245699998,68.35351458500003],[-32.0072256009999,68.26046137800012],[-31.704444603999832,68.0968474660001],[-31.571676597999897,68.0654587480002],[-31.438058499999954,68.12016374200016],[-31.11805151799996,68.0493291160002],[-30.736661512999888,68.08073342500006],[-30.453609503999928,68.0562723490001],[-30.015285587999983,68.13379154300003],[-30.118331531999956,68.25934742300007],[-29.996940451999933,68.37351984100007],[-29.842216553999947,68.4085253510001],[-29.765281578999975,68.30434785000011],[-29.46471759499991,68.20990576200012],[-29.303607524999848,68.31322948200005],[-29.120275520999883,68.27907741800016],[-28.988893547999908,68.34019305900006],[-28.648620464999965,68.35685544400013],[-28.441951565999943,68.44543841500018],[-28.10250057999997,68.43741173600017],[-28.02305656699997,68.48741783500009],[-27.636949560999938,68.47380612800015],[-27.648338555999942,68.53435615800004],[-27.339164512999957,68.52909098200018],[-27.070552511999892,68.57548062500018],[-26.914165476999983,68.64797972900004],[-26.456378446999963,68.6529848990001],[-26.290288519999933,68.68658576900009],[-26.22388658099993,68.78575810100011],[-25.9577755709999,68.78354611600014],[-25.779172469999935,68.85659423500005],[-25.547779470999956,69.03883927400017],[-25.30556157999996,69.01717088000004],[-25.068057502999977,69.11077310200017],[-24.990829496999936,69.20690950800014],[-25.05055458099997,69.29272946800012],[-24.693880459999946,69.24162433400011],[-24.61362055199993,69.31357459100008],[-24.41638950899994,69.362191306],[-24.301387449999936,69.44190756300009],[-24.12611749599995,69.41302117800018],[-24.051950560999956,69.55107497900019],[-23.81944645699997,69.50608930500005],[-23.58861152599991,69.61803465100019],[-23.688610480999955,69.70860078000004],[-23.476957534999826,69.74971032700017],[-22.995834447999925,69.75582928400007],[-23.093618568999943,69.91500279900015],[-22.84638947299993,69.95722563000004],[-22.575561463999918,69.93610658700015],[-22.361116505999973,69.97277590400006],[-22.079154478999953,70.12833296300005],[-22.785842459999856,70.07779293700008],[-23.59083960299995,70.10834262700018],[-24.478607537999892,70.23917893900017],[-25.03110655399996,70.3616834720001],[-25.2394406009999,70.27029373700015],[-25.353889453999955,70.29612843900003],[-25.35666453499988,70.39336304200009],[-25.63748947199997,70.35390070700015],[-26.30749857899997,70.19639066400003],[-26.867502582999975,70.25057765700006],[-27.182491487999926,70.1594474260001],[-27.295282567999948,69.97416411500006],[-27.528339541999912,69.974713968],[-27.568620453999984,70.05166805400006],[-27.97722247599995,70.00695764100004],[-28.098607521999895,70.06471498900015],[-28.542781502999958,70.04333694500008],[-28.274999476999824,70.13668050100011],[-28.121393557999966,70.14195975900009],[-27.853330570999958,70.08667456900008],[-27.412214475999917,70.17778954500011],[-27.329444522999893,70.22890943100009],[-26.953613562999976,70.32225282000019],[-26.598886558999936,70.30111768300003],[-26.330282603999876,70.3808491960001],[-26.505832513999962,70.46779953900005],[-26.724435565999954,70.47724510600011],[-27.02139046999997,70.43641031800001],[-27.155279470999915,70.44919791700016],[-28.241937562999965,70.36974066000005],[-28.368061568999906,70.4975247860001],[-28.033893528999897,70.70476700700016],[-27.936103540999966,70.88115376500008],[-28.18388751899994,70.94588552700009],[-27.778331480999896,71.01478208900011],[-27.49666449699987,70.93560042900015],[-27.12110846399986,70.94838735800005],[-26.784173557999964,70.92922113000003],[-26.4788895559999,70.95894687900005],[-26.259448480999936,71.03588654800006],[-26.03971253099985,71.0511612250001],[-25.597782552999888,71.16783698300014],[-25.411392494999973,71.27119171600009],[-25.411388471999942,71.34785578800012],[-25.69473049499993,71.4614798610001],[-25.87777851999988,71.49898787200016],[-26.103895444999864,71.4831333350001],[-26.43584244899995,71.5053663330001],[-26.67499759199984,71.47452679700012],[-27.353050476999954,71.59759576700014],[-27.32500060599989,71.70844258000005],[-27.96916947899996,71.86566277700013],[-27.975282567999955,71.91428083300008],[-28.442508459999885,71.93178392300018],[-28.35473249899991,72.01124067699999],[-27.88249557099988,71.97205444100013],[-27.610008447999974,71.89873072600017],[-27.608898515999897,71.85844528700017],[-27.217224585999872,71.73954245900012],[-27.00637848199989,71.59509360100003],[-26.78582546299998,71.54565193900015],[-26.09361051499991,71.58509784600017],[-25.623893521999946,71.53591619100018],[-25.066942541999936,71.2936840500002],[-24.871948460999818,71.30090221000006],[-24.572504466999874,71.25841853400016],[-24.57333746099988,71.20868769600014],[-24.270551601999955,71.08422951000017],[-24.19249143999997,71.01173107700009],[-24.231941537999944,70.92949622400005],[-24.168327586999908,70.77671609000004],[-24.021955584999887,70.65086969300017],[-23.345830537999973,70.43779852900008],[-23.10890145999997,70.42334745700003],[-22.622779573999935,70.4452907770002],[-22.565828564999947,70.58087376000009],[-22.64306646199998,70.64865703800018],[-22.585006526999962,70.81561348500009],[-22.428338530999895,70.83671811200009],[-22.468320544999926,70.65282301100018],[-22.355838588999916,70.43723476200006],[-22.121950464999884,70.49030746400013],[-21.744432563999908,70.41724425800015],[-21.476936528999886,70.54197636499998],[-21.621940603999974,70.6386461960002],[-21.593347584999947,70.73226451000005],[-21.74971953299996,70.8692058650002],[-21.673334578999913,70.93254841100008],[-21.79139754099998,71.0784000640001],[-21.666105521999896,71.18895636100012],[-21.817787459999977,71.27618096000009],[-21.670833585999958,71.39925093600016],[-22.049711535999904,71.4820337970001],[-22.293346471999826,71.42563465300009],[-22.43721949299993,71.24563093500018],[-22.541391461999922,71.4811947680002],[-22.303338537999934,71.68176901800018],[-22.599710564999953,71.60481442899999],[-22.839439533999894,71.70038505700012],[-22.7672294379999,71.79482798300018],[-22.571659519999912,71.9220485100002],[-23.028623446999973,72.01012672200011],[-23.095827534999955,72.05816458300012],[-23.64667850099994,72.14679298300007],[-23.80471945299996,72.24846781500008],[-24.093896453999832,72.27708111800007],[-24.424171602999877,72.3531951700001],[-24.52055745499996,72.41069519300015],[-24.940273544999968,72.39152896600012],[-25.119726571999934,72.42986125300018],[-24.697488533999945,72.49653007300009],[-24.714723570999922,72.68182930900008],[-25.191373571999975,72.75516828000002],[-25.228338602999884,72.79488827500012],[-25.622230552999895,72.82156250800017],[-26.075838532999853,72.71266934800013],[-26.30472550999997,72.72655548000012],[-26.697223549999933,72.82711769800005],[-26.63278951299992,72.86210745],[-26.260826465999912,72.77656174700007],[-26.027233552999917,72.78599222600013],[-25.755001574999937,72.88379227200011],[-25.319723475999922,72.89017056500018],[-24.985549568999886,73.01795536100008],[-25.061376455999834,73.08213827600008],[-25.386667556999953,73.08769279600017],[-26.054452442999946,73.19852368400007],[-26.4808365049999,73.18630052200018],[-26.71000645499987,73.09907642600001],[-27.147781523999925,73.14603000400007],[-27.07444154699988,73.1860106760002],[-26.695827459999975,73.13185452900007],[-26.45277456399998,73.27798161200013],[-26.13499448599987,73.24047343300009],[-25.72139148499997,73.26243183999998],[-25.44000847999996,73.3504798780001],[-25.493606559999932,73.40103599700006],[-25.314998596999885,73.46048816600018],[-24.7116584769999,73.48964998100013],[-24.379165476999844,73.5493755670002],[-24.450559510999938,73.69994371700011],[-24.251111453999954,73.77633403600015],[-23.929985487999886,73.7577325810002],[-24.03472859999988,73.66493787200017],[-23.983621453999888,73.59160041000007],[-23.36082458999988,73.40770447200003],[-22.895544472999973,73.31658916100002],[-22.22667547299983,73.24407463400007],[-21.933889558999965,73.33909608000005],[-21.57443851499994,73.3896525340001],[-21.618057602999954,73.45465855200013],[-20.515832472999875,73.44965304700014],[-20.481388550999952,73.75689338500001],[-20.294998492999866,73.78523025300018],[-20.283054448999962,73.87883415100009],[-20.634439587999964,73.87716984000014],[-21.105546468999876,73.94356524199998],[-21.685825457999954,74.05996774900007],[-22.24832559299989,74.0244125540001],[-22.199453565999875,74.18386133000013],[-22.05806544299992,74.28665129100006],[-21.765008458999944,74.41832713500008],[-21.25916445799993,74.47054655900007],[-20.806940496999914,74.44442083700005],[-20.381937436999976,74.44442083700005],[-20.200834516999976,74.2755410790001],[-19.596677495999927,74.23359283800016],[-19.377769509999894,74.25970246700018],[-18.978624453999885,74.48415793200019],[-19.249986557999875,74.51194628800005],[-19.271663500999864,74.64528577100015],[-19.450553598999875,74.67972751400015],[-19.71472754999985,74.58416996200003],[-20.13611247799986,74.67000635100004],[-20.549167469999873,74.67194475000008],[-20.760833491999904,74.8344611350002],[-20.683324523999886,74.88751925300016],[-20.67026551899994,75.1150272390002],[-20.56195054299991,75.19059395200009],[-21.034450494999874,75.3181041570001],[-21.300825533999955,75.35616269200005],[-21.40638956999993,75.45451141700005],[-20.705564562999825,75.29477195600003],[-20.180833451999945,75.33505840000004],[-19.965841490999935,75.28892725500009],[-20.048343557999942,75.21726785000016],[-19.882776494999916,75.14476924900009],[-19.609996507999938,75.13198165000011],[-19.386104474999968,75.25866757900013],[-19.34221649499989,75.40728308100017],[-19.414443521999942,75.57034864900015],[-19.60248950799985,75.66701948500014],[-19.59443248799994,75.788960083],[-19.946386590999964,75.93286042900019],[-20.333332456999926,75.92230090800018],[-20.360288489999903,75.98008977200004],[-19.671115501999964,76.11399436300013],[-19.90417247599993,76.25511711400009],[-20.434457436999878,76.21954683200005],[-21.01500347399991,76.31038771900006],[-21.536109579999902,76.21760893600015],[-21.707231497999885,76.24901290900016],[-21.565002502999903,76.37289190600006],[-21.757219491999933,76.43817318600009],[-21.67778251899989,76.52291104200009],[-21.90721851099994,76.61735380100004],[-22.460557560999973,76.63958746900005],[-22.69195357699988,76.72708766500011],[-21.938056538999945,76.76598472500007],[-21.804988460999937,76.68484857300007],[-21.51557156999985,76.68623644900015],[-21.221376491999877,76.80721698300016],[-21.021127459999946,76.79458160000019],[-20.580566581999904,76.91820092500012],[-19.871103520999895,76.95877671300008],[-19.35916554099998,76.86125109000011],[-18.910839499999952,76.85514822600004],[-18.68750352199993,76.79375799400009],[-18.329994563999946,76.80208960600004],[-18.13111345999988,76.93376628700014],[-18.14471644999992,77.08656234700004],[-18.25888652099991,77.29961959700012],[-18.386123475999966,77.33712911700019],[-18.968885520999947,77.37184444500019],[-19.036397559999898,77.22434340100017],[-19.456100574999937,77.2612874780001],[-19.523050523999927,77.35267838600004],[-20.008316449999825,77.44213173300017],[-20.4480605949999,77.48018976400004],[-20.248046591999923,77.56047180000013],[-20.868894495999882,77.68047483800007],[-20.597780496999917,77.7213257190001],[-19.967491551999956,77.71160472300016],[-19.303335527999934,77.57937869200003],[-18.958335554999962,77.6254788240002],[-19.23999549699994,77.76216134600014],[-19.92946051099989,77.82049888900008],[-20.36221146599985,77.87966104400016],[-20.8544405749999,78.01413074300007],[-21.089151465999976,77.95133687700019],[-21.366939471999956,77.8063230790001],[-21.50695245899982,77.6827024120002],[-22.03945543899988,77.68741823900018],[-21.897205489999862,77.80575813900003],[-21.58970246299998,77.95828078100004],[-21.70693058799992,78.01162757200018],[-21.466669534999937,78.06828756099998],[-21.488899515999947,78.12883876500018],[-21.278888584999947,78.21690406900012],[-21.361961459999918,78.31609266100008],[-21.07639353899998,78.54970468500017],[-20.903882571999816,78.62914853100011],[-21.120281518999946,78.76889849400015],[-20.664461553999956,78.89085451500017],[-20.158340446999944,78.86250105100004],[-19.92388352699993,78.9738978850001],[-20.091110542999957,79.0628027200001],[-19.568616560999942,79.1930754330001],[-19.191392528999927,79.31643592600011],[-19.59806654499988,79.32643184800008],[-19.651111586999946,79.4347612410001],[-20.473520457999882,79.46180880500015]]]]},"properties":{"objectid":837,"eco_name":"Kalaallit Nunaat Arctic steppe","biome_num":11,"biome_name":"Tundra","realm":"Nearctic","eco_biome_":"NE11","nnh":2,"eco_id":417,"shape_leng":902.266734074,"shape_area":78.0358234483,"nnh_name":"Nature Could Reach Half Protected","color":"#64DEE3","color_bio":"#9ED7C2","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":327399.80825591896,"percentage":3.8314084311473873}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[43.889166667000154,13.43833333300006],[43.96083333300004,13.480833334000124],[43.8675,13.560833333],[43.83416666700009,13.4725],[43.889166667000154,13.43833333300006]]],[[[44.132500000000164,13.6075],[44.03750000000019,13.564166667000109],[43.96333333300015,13.565],[43.975833333000026,13.419166667000127],[44.086666667000145,13.330833333000044],[44.05416666700012,13.245833333000064],[44.050833333000185,13.125],[44.1391666670001,13.127500000000111],[44.14666666699998,13.191666667],[44.38333333300005,13.325833334000095],[44.1525,13.40416666700014],[44.10833333300013,13.4725],[44.132500000000164,13.6075]]],[[[44.68583333300012,13.648333333000096],[44.7225,13.678333333000182],[44.716666667000084,13.780833333000032],[44.64892141100012,13.783559264000075],[44.5833333330001,13.665833333000137],[44.68583333300012,13.648333333000096]]],[[[44.74083212400018,13.883293666000043],[44.71166666700009,13.873333333000062],[44.79083333300008,13.797500000000127],[44.78416666700019,13.700833333000048],[44.85583333300008,13.6925],[44.85666480300017,13.819981807000033],[44.74083212400018,13.883293666000043]]],[[[43.72083333300009,14.77166666700009],[43.595833334000076,14.7375],[43.56166666700011,14.641666667000038],[43.585,14.554166667000118],[43.656666668000184,14.498333333000062],[43.78166666800007,14.525833333000094],[43.90666666800013,14.583333333000041],[43.84333333300003,14.730833333000135],[43.72083333300009,14.77166666700009]]],[[[44.573288427000136,15.353325895000125],[44.51833985000019,15.465021692999983],[44.30753876200009,15.437502439000184],[44.32912249100008,15.284977420000075],[44.366624220000176,15.291632403000108],[44.40250717000009,15.227510741000117],[44.58417022300006,15.31915165800001],[44.573288427000136,15.353325895000125]]],[[[44.59667080000008,15.688323357000172],[44.53164981600008,15.65082162800013],[44.42912710300004,15.540834542000027],[44.50080307000013,15.501624101000175],[44.60665327400005,15.642457933000117],[44.59667080000008,15.688323357000172]]],[[[43.98666666700018,14.83583333300004],[43.82750000000016,14.8175],[43.93916666700005,14.66],[43.99583333300012,14.63333333300011],[43.77333333300004,14.37583333300006],[43.839166667000086,14.322500000000161],[43.81833333300011,14.253333333000114],[43.912500000000136,14.223333332999971],[43.9425,14.28],[43.920000000000186,14.405],[44.01666666700015,14.4475],[44.09500000000014,14.435000000000173],[44.125833333,14.36083333300013],[44.128333333000114,14.244166667000115],[44.03000000100002,14.167500000000189],[43.921999401000164,13.92196492700009],[43.825833333,13.895833333000098],[44.00833333300005,13.705],[44.15666666700014,13.7125],[44.231666667000184,13.74250000000012],[44.31916666700005,13.673333333000187],[44.48333333300019,13.653333333000091],[44.560000000000116,13.689166667],[44.47666666700013,13.913333332999969],[44.50015079900004,14.072495954000033],[44.47309490200007,14.232930798000154],[44.36199298000014,14.317267258000129],[44.32462233300009,14.439984381000045],[44.39077847800013,14.498565395000071],[44.52922717200005,14.546285908000073],[44.584906559000046,14.640512563000073],[44.50923970000002,14.687625891000039],[44.39217021800016,14.589116206000028],[44.28675921000013,14.55529424000008],[44.24693404300007,14.610090937000109],[44.18861330300001,14.82587767400014],[44.15481086199998,15.04653154100015],[44.097335773000054,15.155095598000173],[44.04662155700004,15.191956311000126],[43.91822449800003,15.395799043000181],[43.785407662000125,15.487124789000063],[43.80253978000013,15.661301335000076],[43.876849820000075,15.922705553000014],[43.94252294400019,16.085460686000147],[43.89624390000017,16.200833333000105],[43.83250000000015,16.087500000000148],[43.76666666699998,16.0375],[43.80166666700012,15.874166667000054],[43.651666667000086,15.7375],[43.693333333000055,15.66583333300008],[43.655,15.693333333000112],[43.65583333300003,15.69166666700005],[43.655,15.693333333000112],[43.5475,15.645],[43.62333333300006,15.559166667000113],[43.50416666700016,15.487500000000125],[43.60333333300008,15.361666667000122],[43.659166667000136,15.391666667000038],[43.719166667000025,15.345],[43.79916666700018,15.361423816000183],[43.790000000000134,15.285000000000139],[43.79083333300008,15.284166667000022],[43.790000000000134,15.285000000000139],[43.78,15.19583333300011],[43.896666667000034,15.116666667000175],[43.875000000000114,15.101666667000188],[43.845833333000144,15.11083333300013],[43.84166666700003,15.1175],[43.73916666700018,15.141666667000095],[43.71583333300009,15.224166668000066],[43.62166666700017,15.195000000000164],[43.66,15.182500000000118],[43.665833333000194,15.18],[43.62916666700005,15.045833334],[43.70833333300004,15.024166667000088],[43.73083333300008,14.925833334000117],[43.81083333300006,15.019166667000093],[43.7825,14.891666667000152],[43.88000000000011,14.88916666700004],[43.92833333300001,14.993333333000123],[43.97666666700002,15.005833333],[44.075,15.041666668000062],[44.09583333300009,14.983333334000065],[44.06750000000011,14.90416666800013],[43.98666666700018,14.83583333300004]]],[[[43.73833333300013,16.23],[43.61083333300013,16.233333333000076],[43.665,16.134166666999988],[43.710833333000096,16.120000000000175],[43.73833333300013,16.23]]],[[[42.33001951500012,18.616695804000187],[42.27668971700007,18.7716489930001],[42.30079154800018,18.824978790000102],[42.25420666600007,18.903309740000168],[42.17623544600008,18.86652746900012],[42.122725783000135,18.979212521000022],[42.09079985100004,19.191632388000187],[42.12749219000011,19.22670594800013],[42.0950266640001,19.32581123700004],[42.046643138000036,19.320685102000027],[41.96273639100019,19.47437923900003],[41.89420805100008,19.50864340900017],[41.88278666100007,19.6742985300001],[41.8485224910001,19.848407278000025],[41.72864286300006,19.777091040000187],[41.677201642,19.83419799000012],[41.57162123300009,19.82277660000011],[41.52872357200016,19.934112670000104],[41.443108113000164,20.0226059580001],[41.311717162000036,20.071169350000105],[41.22322387300011,20.18826107900003],[41.19471536400005,20.296719318000157],[41.10900997300007,20.39105820100002],[41.01476102200019,20.45374094700003],[41.011973124000065,20.562289118000137],[40.940566954000076,20.59655328800011],[40.900547123000194,20.716432917000077],[40.82635305399998,20.736487799000145],[40.800002918000075,20.825790478000044],[40.65503220400018,20.923456852000186],[40.626433763000136,20.969142412000167],[40.477955693000126,20.957721022000158],[40.266704944000026,21.149006821000114],[40.29674230100011,21.33309804400011],[40.24458162200011,21.372128621000172],[40.295842979000156,21.50666719900005],[40.35451015500007,21.587825195000107],[40.17549811400005,21.572223229000087],[40.13810189200012,21.488141165],[40.22578579100019,21.404144486000177],[40.22299789300013,21.337504722],[40.111661824,21.280038043000047],[40.132616027000154,21.170860347000144],[40.04834955200005,20.94000437800014],[40.22650524900007,21.02346146400015],[40.25168626600015,20.962487429000078],[40.42111854000018,20.879390072000035],[40.320844132000104,20.806275189000132],[40.37912020000016,20.754474240000036],[40.58020861,20.851780885000153],[40.537850541000125,20.762478206000083],[40.59100047400017,20.59835193200007],[40.587493118000054,20.484587694000084],[40.77491183300015,20.56246898300003],[40.85000522400014,20.508329796000055],[40.83399729100017,20.481799795000086],[40.83417715600007,20.475594473],[40.93750925900008,20.504912372000092],[41.11197773600003,20.350948438000046],[41.11323678600013,20.348430336000035],[41.17304170300008,20.287456302000066],[41.16099078700006,20.137539317000062],[41.23401573700005,20.131963519000067],[41.23320634700008,20.129085689000135],[41.229698991000134,20.01199395800012],[41.27457516200019,19.97539155100003],[41.30542190799997,19.81369344700005],[41.36252885800013,19.88599894000015],[41.47080723200003,19.902636398000027],[41.665600387000154,19.651096021000114],[41.70418130300004,19.71566734400011],[41.77199018500016,19.628253241000152],[41.77082106700004,19.62447608900004],[41.77037140600004,19.623396902000025],[41.76938215100017,19.6197996140001],[41.815247576,19.57087649500005],[41.83746083000011,19.476627544000166],[41.98423018799997,19.304137576000073],[41.990525442000035,19.145856896000055],[42.05824439200012,19.112492048000092],[42.007702493000124,18.98748628300018],[42.07407246000008,18.96572269],[42.116340597000146,18.887481672000092],[42.071734223000135,18.796740077000152],[42.123535173000164,18.681896652000148],[42.135046495000154,18.56246668400013],[42.19880842800012,18.445824615000163],[42.15896846200013,18.349777021000023],[42.021821850000094,18.27918024000013],[42.133157918999984,18.216497493000077],[42.24584297100006,18.141404103000127],[42.32921012500009,18.026470745000097],[42.37084873600014,18.078811288000054],[42.44603205900012,17.96234908300005],[42.563843247000136,17.95281626900004],[42.55745806000016,17.795794640000167],[42.64909897700011,17.812522030000082],[42.71250118100011,17.88069064100017],[42.80836891100006,17.83338630200012],[42.903157455000155,17.821874980000132],[42.92141369200016,17.754245962000027],[42.74181907999997,17.7069416220001],[42.79775691100008,17.60432897700008],[42.98418637100019,17.415831076000188],[43.06890250800018,17.251614870000026],[43.10604450800008,17.220858056],[43.23977369700003,17.310160735000125],[43.249126646000036,17.257460463000086],[43.18779288200011,17.17912951300019],[43.21378328900005,17.11959439400016],[43.141118068000026,17.03280981600011],[43.279164002000186,16.833160322000083],[43.339778308000064,16.82083961000012],[43.328806579000116,16.620650523000165],[43.40434963100006,16.53737330100006],[43.48000000000019,16.63285480800016],[43.5241393280001,16.72497188000017],[43.620007058000056,16.774974186000065],[43.66057364800014,16.88253340200015],[43.63336737600008,16.944964636000122],[43.53342012600007,17.019137523000154],[43.45294683800017,17.141708936999976],[43.39939344099997,17.292059385000016],[43.37075526000001,17.46131103199997],[43.43060905700014,17.549230247000025],[43.40082535000005,17.72478229400008],[43.40827127700004,17.808295217000023],[43.34337559599999,17.88526182600009],[43.322947397000064,17.891662370000176],[43.32251132500005,17.892471759999978],[43.32077379600008,17.89579925200013],[43.291779672000075,17.967475219],[43.285818985000105,17.98914888000013],[43.28420020600015,18.020805016000168],[43.283672503000105,18.02413250800015],[43.2838396410001,18.034204915000146],[43.273318409000126,18.045806169000116],[43.26252654400014,18.04670549100007],[43.23833478100016,18.054467149000118],[43.221378790000074,18.065861051000184],[43.2025417640001,18.057497356000113],[43.22664359500004,17.92169972700009],[43.31261878300006,17.873406133000174],[43.160183696000104,17.921429930000045],[43.05856030400014,18.03798206700003],[42.970246879,17.98609118500019],[42.89065687800013,18.052820881000173],[42.78885362300008,17.980875117000096],[42.61438514600013,18.153544950000082],[42.45835277100008,18.205795561000116],[42.42750602500007,18.354183699000146],[42.36248504100013,18.414977869000154],[42.35996693900012,18.41245976700003],[42.355110600000046,18.424150954000027],[42.35996693900012,18.41245976700003],[42.36248504100013,18.414977869000154],[42.405292770000074,18.441687734000084],[42.33001951500012,18.616695804000187]],[[43.18985093200007,18.169193154000027],[43.190765143000135,18.133310204000054],[43.1899612740001,18.15165637400014],[43.19003167400007,18.158311357000173],[43.18985093200007,18.169193154000027]]]]},"properties":{"objectid":841,"eco_name":"Southwest Arabian montane woodlands and grasslands","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Afrotropic","eco_biome_":"AF07","nnh":3,"eco_id":59,"shape_leng":94.0336234068,"shape_area":2.4000027261,"nnh_name":"Nature Could Recover","color":"#A93800","color_bio":"#FEAA01","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":28448.291563573264,"percentage":0.1326940186122005}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[46.27427812399998,13.53787300800019],[46.26582411800007,13.634197351000182],[46.110886536000066,13.646044291000067],[45.97926553500008,13.552245417000165],[45.80225798100014,13.497025111000028],[45.83510957400017,13.446785810000108],[45.97850909200014,13.469793180000067],[46.125258944000166,13.540142335999974],[46.27427812399998,13.53787300800019]]],[[[51.27422692400012,15.228769792000094],[51.21534853200012,15.297130459000073],[50.972973909000075,15.318206513000064],[50.83597955800013,15.290105107000045],[50.512813394000034,15.283079756000063],[50.18964723100004,15.247952999000063],[49.85945571700006,15.226876945000072],[49.7154360130001,15.188237513000104],[49.51521349900014,15.156623431000014],[49.30094028200011,15.093395269000041],[49.03397693000011,15.040705134000063],[48.57732909100008,14.910736133],[48.20849814400003,14.773741781000183],[48.092579846000035,14.707000942999969],[47.966123521000156,14.552443213000174],[47.94856014300018,14.471651672000121],[47.97190135200009,14.328527869000027],[48.10053861900013,14.257164229000182],[48.33428818700003,14.271970493000083],[48.49708273600004,14.389103156000147],[48.588406507,14.432779743000026],[48.73333336200011,14.462559233000036],[48.99273682500018,14.446359612000037],[49.020795673000066,14.515697343000056],[49.16792476000012,14.576221715000145],[49.30992771100006,14.682341716999986],[49.24949326900014,14.757794836000073],[49.13330086100012,14.812923278000142],[49.308039135000115,14.842421041000136],[49.46434130600011,14.842241176000073],[49.42270269600016,14.746823107000125],[49.47153588300006,14.702216734],[49.58790815500015,14.792868396000074],[49.520009341000105,14.882980465000173],[49.69870463200016,14.82974059999998],[49.87038521000011,14.832618431000185],[50.08541311100004,14.929385483000146],[50.13568521400015,14.987391755000033],[50.22076107900011,14.963829517000079],[50.30331884300017,15.015900264000095],[50.38677592900018,15.001601043000164],[50.44783989600006,15.040631620000056],[50.427695082000184,15.11977196000015],[50.64047467800003,15.114555892000055],[50.653424916,15.244148199],[50.776182375000076,15.15556497700004],[50.96566953000013,15.20646660500006],[51.12772736400018,15.194325758000161],[51.27422692400012,15.228769792000094]]],[[[52.197096761000125,15.745833333000064],[52.12918038800012,15.805955460000177],[52.00852635400008,15.833952528000111],[51.964530961000094,15.736629385000072],[52.06052090999998,15.740628966000145],[52.119181435000144,15.701966348000042],[52.17384079700008,15.609697899000082],[52.22634887700019,15.631984456000112],[52.197096761000125,15.745833333000064]]],[[[55.187626808000175,17.160513547000164],[55.25865478500003,17.22916666700013],[55.2875,17.346048991000146],[55.26192156700017,17.44699929000012],[55.24743172400002,17.441641618],[55.244463961000065,17.381566906000046],[55.12251589100009,17.296670905000042],[54.783253120000154,17.16272573300006],[54.69092247800012,17.159884790000092],[54.51904543800009,17.218124118000105],[54.33154321100017,17.218124118000105],[54.24915586900016,17.25647684600017],[54.07159694300003,17.24795401800003],[53.918186030000186,17.15278243300014],[53.81875303099997,17.051928963000137],[53.70653579000003,16.98800774900019],[53.644035048000035,16.853062965000106],[53.58437524800007,16.82465353700013],[53.385509251000144,16.83459683700005],[53.27755342300003,16.80760788000009],[53.09573308300014,16.706754410000087],[52.84288917100008,16.644253668000033],[52.754819944000076,16.590275754],[52.57868148900013,16.554763969000135],[52.6375,16.494775391000132],[52.841115725000066,16.57874211500007],[53.10342610700019,16.6382405600001],[53.19591878300014,16.68758544900004],[53.479353841000034,16.75397949200004],[53.59027710000004,16.745833333000064],[53.78563516600008,16.875462908000088],[53.77921023200014,16.951366544999985],[54.19442617700008,17.111385298000187],[54.28425083000002,17.07331392100008],[54.481151229000034,17.052493638000044],[54.64295457700001,17.051898772000186],[54.74884059200019,17.018586318000075],[54.96299208199997,17.048924446000115],[55.08553432400009,17.1339901770001],[55.187626808000175,17.160513547000164]]],[[[56.4225484210001,18.00245157900008],[56.3059916900001,18.06421629600004],[55.984764454000015,18.027096704000087],[55.84984901500013,18.02424135100017],[55.71065054600007,18.04922569100006],[55.64354974600013,17.992832466000095],[55.54361238300015,17.989263274000052],[55.349448365000114,17.925731665000058],[55.215960603000156,17.730139970000153],[55.22381282400016,17.690878864000126],[55.34329945400003,17.662229263000086],[55.374595861000046,17.678343181],[55.379177668000125,17.69668935100009],[55.38561412800016,17.70163562199997],[55.385061,17.703344334000178],[55.394920539,17.750828538000064],[55.42261965900019,17.812522030000082],[55.49168759200006,17.88833487900007],[55.69088742600019,17.948409591000086],[55.7100429840001,17.897507964000113],[55.824166952000155,17.90749043800008],[55.91832597000018,17.89831735300004],[55.97669197100009,17.930872812000132],[56.14081824400017,17.933300981],[56.24837716100018,17.96495711700004],[56.353417976,17.920710472000053],[56.354587095000056,17.92169972700009],[56.355036756,17.924127896000186],[56.355936078000184,17.924037964000036],[56.37120050400017,17.963571556000034],[56.4225484210001,18.00245157900008]]]]},"properties":{"objectid":842,"eco_name":"South Arabian fog woodlands, shrublands, and dune","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Afrotropic","eco_biome_":"AF07","nnh":4,"eco_id":56,"shape_leng":24.0526318857,"shape_area":1.64069025625,"nnh_name":"Nature Imperiled","color":"#A87001","color_bio":"#FEAA01","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":19586.469166148643,"percentage":0.09135899420435248}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[27.29984744900014,-71.94761928699995],[27.258304039000052,-72.01468644099998],[27.594573721000074,-72.06697897599992],[27.540939913000045,-71.97692679099998],[27.29984744900014,-71.94761928699995]]],[[[24.79056180600014,-72.06553175699997],[24.74713431000015,-72.11479272399998],[25.142628197000022,-72.15396086999993],[25.288422240000102,-72.04341777299999],[25.016650322000146,-72.03513141999997],[24.79056180600014,-72.06553175699997]]],[[[24.118299546000173,-71.97888195399992],[24.120187151000096,-72.05536685099997],[24.356746177000105,-72.11483966299988],[24.41395905900015,-72.03182593099996],[24.118299546000173,-71.97888195399992]]],[[[22.819469325000057,-72.02915042699982],[23.103838913000175,-72.08146592799989],[23.04130586800005,-72.20737658099989],[23.47465831200003,-72.10709142799988],[23.25125468800013,-72.05991219099997],[22.819469325000057,-72.02915042699982]]],[[[13.41790559600014,-71.26590592499997],[13.181930621000049,-71.39719507899997],[13.442400880000037,-71.40795375899995],[13.523896145000037,-71.33364966599999],[13.41790559600014,-71.26590592499997]]]]},"properties":{"objectid":846,"eco_name":"Dronning Maud Land tundra","biome_num":11,"biome_name":"Tundra","realm":"Antarctica","eco_biome_":"AN11","nnh":1,"eco_id":119,"shape_leng":219.563498929,"shape_area":1.43543219103,"nnh_name":"Half Protected","color":"#57A7B4","color_bio":"#9ED7C2","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":5470.420705883126,"percentage":0.0640178017393965}}, + {"type":"Feature","geometry":null,"properties":{"objectid":847,"eco_name":"Marie Byrd Land tundra","biome_num":11,"biome_name":"Tundra","realm":"Antarctica","eco_biome_":"AN11","nnh":1,"eco_id":124,"shape_leng":85.8836425197,"shape_area":0.392649607774,"nnh_name":"Half Protected","color":"#5EE6C0","color_bio":"#9ED7C2","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":1151.0409671449852,"percentage":0.013470099721830272}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[116.52615746989142,6.110112711932246],[116.50222420708155,5.979355221366447],[116.6713111712487,5.993662721282647],[116.69772936657432,6.126017054222416],[116.74895487506751,6.166792257656752],[116.66213107688782,6.255571854457685],[116.61110274034303,6.197002377301743],[116.53529310471669,6.182704707362376],[116.52615746989142,6.110112711932246]]]},"properties":{"objectid":376,"eco_name":"Kinabalu montane alpine meadows","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Indomalayan","eco_biome_":"IN10","nnh":3,"eco_id":313,"shape_leng":5.7225394731,"shape_area":0.352693619502,"nnh_name":"Nature Could Recover","color":"#C48832","color_bio":"#D6C39D","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":600.8949698286283,"percentage":0.012305089300334223}} + ]} \ No newline at end of file diff --git a/client/public/data/rangeland-systems.json b/client/public/data/rangeland-systems.json new file mode 100644 index 0000000..395c98b --- /dev/null +++ b/client/public/data/rangeland-systems.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-177.95905672999993,-85.28872113799991],[-176.75043343199997,-85.22657718099987],[-176.65888959699996,-85.16433364699998],[-178.3251820959999,-85.19041914499996],[-177.95905672999993,-85.28872113799991]]],[[[-178.0045429349999,51.91032595500013],[-178.12479746099999,51.920089577000056],[-178.2278337909999,51.873525937000124],[-177.95029744899995,51.765680530000054],[-177.95071559299998,51.6392169130001],[-177.71990659499994,51.8157987300001],[-177.84408839399998,51.826280533000045],[-178.0045429349999,51.91032595500013]]],[[[-176.55569773899998,51.909026120000135],[-176.77404317299997,51.965889721999986],[-176.79209766099999,51.78554429300016],[-176.86581579999998,51.68219884600012],[-176.581897668,51.69004433100008],[-176.42421589499997,51.74491706800018],[-176.4264886489999,51.83627160000009],[-176.52753408399994,51.83476249700004],[-176.55569773899998,51.909026120000135]]],[[[-177.09683398899992,51.84763515800012],[-177.45758844299996,51.75405331400009],[-177.27513390799996,51.68050789100005],[-177.14867030199994,51.70704426500015],[-177.09683398899992,51.84763515800012]]],[[[-176.01378879199996,52.074362521000126],[-176.18357967899993,52.10139886100018],[-176.15885237799992,51.996526151000126],[-176.02185240099996,51.984844350000174],[-176.01378879199996,52.074362521000126]]],[[[-173.50543466499997,52.09154462900017],[-173.521998313,52.14190825600019],[-173.89008007399994,52.14154457700005],[-173.9301709499999,52.056371856000055],[-173.45135284099996,52.0485082780001],[-173.50543466499997,52.09154462900017]]],[[[-174.01314375399994,52.3451536230001],[-174.18536193099993,52.41778995700014],[-174.33093461899998,52.37018994700003],[-174.44897091699994,52.21954450000004],[-174.609798128,52.110880859000076],[-174.77139809399992,52.08454448100008],[-174.78320716599993,52.03228994200009],[-174.4442344999999,52.04844452500009],[-174.32726181699994,52.12261725500019],[-174.21845273299996,52.09430818100003],[-174.09018913099996,52.13911728000005],[-173.98793465099993,52.295344543000056],[-174.01314375399994,52.3451536230001]]],[[[-172.3513622039999,52.367617455000186],[-172.44819855899993,52.39143562200013],[-172.57722579999998,52.35019924900013],[-172.63418940099996,52.267690163000054],[-172.47165306099998,52.266953818000104],[-172.31916219199996,52.31751746600008],[-172.3513622039999,52.367617455000186]]],[[[-170.56006255799994,52.654535817000124],[-170.6715625569999,52.698081252000065],[-170.81796251499992,52.63627215100013],[-170.78325339899993,52.54207216700013],[-170.56006255799994,52.654535817000124]]],[[[-169.70727998899997,52.88649773500009],[-169.8515536239999,52.82793588200013],[-169.73909907699993,52.77842681200019],[-169.70727998899997,52.88649773500009]]],[[[-167.86429958299993,53.51949968500014],[-168.0145632159999,53.56460875200008],[-168.23388135699992,53.528336000000195],[-168.40822674999995,53.4195269010001],[-168.38387215199995,53.26126328600003],[-168.55571758099993,53.254445084000054],[-168.7664629829999,53.18024506600017],[-168.75970840299996,53.08146326000008],[-168.85731745699997,53.013681438000106],[-168.86289015899993,52.94099053700012],[-168.64761747199998,52.977163288000156],[-168.4559357059999,53.05740875600003],[-168.27076306799992,53.24280875700009],[-168.12438127999997,53.27457240800004],[-167.8423449919999,53.38649061300015],[-167.86429958299993,53.51949968500014]]],[[[-166.64073474099996,53.91750946200017],[-166.63695446199998,54.01199978700015],[-166.89076351399996,53.98970884800008],[-167.070454377,53.92796337600004],[-167.14930887599996,53.82874519600011],[-166.78723615799993,53.73455434500005],[-167.02239975799995,53.71546340800006],[-167.17669964799992,53.461917962000086],[-167.26791782399997,53.47811794800003],[-167.5122904909999,53.39301792800012],[-167.70765409999996,53.38283608500012],[-167.81392678999995,53.32212698800009],[-167.622190424,53.250363384000195],[-167.13415418499991,53.426445245000195],[-166.93199968099992,53.473436174000085],[-166.83870877299998,53.447490735000144],[-166.6740724459999,53.48732711600013],[-166.55549068899992,53.62097257000016],[-166.27491801899993,53.68725441700013],[-166.37923624799993,53.84656347600003],[-166.23652718699992,53.88134531000003],[-166.264536309,53.97755438600018],[-166.43741809899998,53.955554364000136],[-166.60502712499994,53.82805435700004],[-166.64073474099996,53.91750946200017]]],[[[-166.1252271689999,53.800263515000154],[-166.30843623299998,53.78733622000016],[-166.23833621599996,53.71149987400008],[-166.1252271689999,53.800263515000154]]],[[[-165.868090976,54.1687362350001],[-166.00248188499998,54.213627121],[-166.11226365599995,54.12252711600007],[-166.04798181599995,54.04477258800006],[-165.71589096199992,54.090363535999984],[-165.72978189099996,54.14721807300009],[-165.868090976,54.1687362350001]]],[[[-165.5322274039999,54.23785445300018],[-165.68413648299997,54.24990897700013],[-165.54923644399994,54.112199920000194],[-165.48133647899994,54.179963556000075],[-165.5322274039999,54.23785445300018]]],[[[-163.55285521599998,55.05070008800004],[-163.89470972199996,55.03911822300017],[-164.03072786199996,54.96981821300017],[-164.34355506899993,54.894136360000175],[-164.43530052999998,54.933127251000144],[-164.55161866699999,54.85517269900009],[-164.72075797699995,54.65497124700005],[-164.56519892699998,54.67080530800001],[-163.95443027399998,54.90221363100011],[-163.76107154699997,54.88956728100004],[-163.4249007139999,54.948170226],[-163.55285521599998,55.05070008800004]]],[[[-161.26732856799993,55.98452758700006],[-161.80785575099992,55.891954791000046],[-162.24699197899992,55.68000929600004],[-162.48371005799993,55.49523655400009],[-162.484710012,55.390345656000136],[-162.64992816599997,55.36415472600004],[-162.80110994499998,55.30594561900011],[-162.86757352299995,55.182336532000136],[-163.14900985699992,55.17882740300013],[-163.16847346999998,55.12906376900008],[-163.00418328899997,55.08164129000005],[-162.6064794259999,55.158291136000116],[-162.71806446099998,55.21980018600016],[-162.66198268199994,55.29430018600016],[-162.5131372239999,55.25237293800012],[-162.37283456999995,55.302264364999985],[-162.24364517399994,55.442376354000146],[-161.90688574499998,55.55181184899999],[-161.86189258999994,55.72363019000005],[-161.77357683699998,55.73709189099998],[-161.50260157399995,55.693890783000086],[-161.3955244269999,55.74263349100005],[-160.9557353339999,55.843083249000074],[-161.07640129299995,55.94208216200008],[-161.26732856799993,55.98452758700006]]],[[[-161.04735307899998,58.55790004400018],[-160.89056827199994,58.57372893500008],[-160.716303825,58.77483271900013],[-161.05313002499994,58.699590200000046],[-161.04735307899998,58.55790004400018]]],[[[-166.102057623,60.36678096500009],[-166.17493035999993,60.40099913200004],[-166.387203032,60.35967183200012],[-166.48373939899997,60.38662636000009],[-166.759139314,60.31074450799997],[-166.81194834699997,60.229389963000074],[-166.9379937719999,60.20587176600009],[-167.31893009999996,60.23778079600004],[-167.4170936929999,60.19173533200018],[-167.27357545499993,60.06555354900013],[-167.10492997999995,59.989171766000084],[-166.86042999799997,59.959626351000054],[-166.56383906399995,59.84732640700008],[-166.38862999899993,59.85259916100006],[-166.03696635399996,59.757853769],[-165.7968482789999,59.881026519000045],[-165.53479377699998,59.89677201100005],[-165.71322112799993,60.06705378200019],[-165.66590297199997,60.09947197000014],[-165.677539437,60.26927194900003],[-165.88347582,60.343899183000076],[-166.102057623,60.36678096500009]]],[[[-172.21393386099996,60.31113370300011],[-172.4164830969999,60.39578895400007],[-172.72074439399998,60.36008226400014],[-172.21393386099996,60.31113370300011]]],[[[-161.90925425499995,61.89387758700019],[-161.66423330599994,62.24447498400002],[-161.60782756199993,62.41023896300004],[-161.6489458499999,62.48625728000002],[-161.938439723,62.47066469400005],[-162.281494711,62.32586662700015],[-162.50372692399995,62.270429622999984],[-162.76049416299992,62.04204992700011],[-162.42223395399998,62.03645890700011],[-162.168754289,61.94142058300014],[-162.0449080889999,61.825676007000084],[-161.90925425499995,61.89387758700019]]],[[[-164.54815946499994,62.752753677000044],[-164.85551395699997,62.73639908399997],[-164.73401389199995,62.627226387000064],[-164.54815946499994,62.752753677000044]]],[[[-169.7511319,63.43235278100008],[-170.03046824899994,63.480289096000035],[-170.0802137789999,63.58757998400017],[-170.28553199799998,63.68460721300005],[-170.46891379499996,63.70079809100014],[-170.91076815699995,63.57166167500014],[-171.38526811199992,63.63018886800012],[-171.627322652,63.684170643000186],[-171.745949886,63.66502517100008],[-171.83544071299994,63.58188880500006],[-171.85299518199994,63.4865706330001],[-171.74290420299997,63.36564339100005],[-171.43687694299996,63.307116172000065],[-171.10441345999996,63.42297075500011],[-170.86895895099994,63.41378897500016],[-170.56247714399998,63.35456175500008],[-170.3683134929999,63.285170885000014],[-170.26058615699992,63.17778909600014],[-170.07004073299998,63.172125489],[-169.83337706999993,63.07814371900014],[-169.69819518099993,62.952543755000136],[-169.53563158899993,62.97697105000003],[-169.53844075299995,63.07396194700016],[-169.379122656,63.150871054000106],[-169.20184997899992,63.17562562400019],[-168.86218637899995,63.1465802260002],[-168.72847737299998,63.22799842000006],[-168.696386527,63.30189841600003],[-169.05540467899996,63.342734719000134],[-169.23516827199998,63.327643782000166],[-169.5240046149999,63.36554373300015],[-169.7511319,63.43235278100008]]],[[[-162.18046037899998,63.53084488800005],[-162.28367849199992,63.463063061000184],[-162.16651483999996,63.425272173999986],[-162.04573307599995,63.47543582600008],[-162.18046037899998,63.53084488800005]]],[[[-159.9213072809999,63.895304749000104],[-160.15222652599994,63.88163930000013],[-160.2076903349999,63.77066201100013],[-160.37398471899996,63.61034911200005],[-160.59588453299997,63.530640245000086],[-160.37522346499995,63.48790550700005],[-160.19240169399995,63.55129027500004],[-160.1643989899999,63.34368869899998],[-160.05234032099992,63.28936514600008],[-159.82852879499993,63.3440293110001],[-159.68867427099994,63.449688872000195],[-159.80940121999996,63.495391949000066],[-159.93537517799996,63.62582211900019],[-160.00691217399995,63.85376192000018],[-159.9213072809999,63.895304749000104]]],[[[-161.18851573499992,64.3487267910001],[-160.96971922599994,64.28725971600011],[-160.71298925699995,64.58713806900005],[-160.6767105589999,64.68361177000003],[-160.48646525499996,64.95040916700003],[-160.693644263,65.05574644600011],[-160.81315669299997,65.17378026],[-161.0392466289999,65.15439221700018],[-161.13288686799999,65.0206307310001],[-161.26579585999994,64.96883080800006],[-161.48259096899992,64.94678855000006],[-161.33246480199995,64.8256122160002],[-161.19522534299998,64.91818128200009],[-160.88421619199997,64.81649043300013],[-160.78342520499996,64.71716318600016],[-160.80207055899993,64.61035410300019],[-161.02420679899996,64.4997177140001],[-161.38864314899996,64.53278128500011],[-161.47397033999994,64.45247218800006],[-161.18851573499992,64.3487267910001]]],[[[-159.32975838099998,64.29205291300013],[-158.95660876299993,64.39474317200018],[-158.89689309599999,64.44685420000008],[-158.9630287589999,64.53825889000012],[-158.92566900599996,64.63040243000017],[-158.97769718799998,64.74599753500019],[-158.74828488999992,64.76518470900004],[-158.69436546599994,64.85122304500015],[-158.79273165199996,64.87871739000013],[-159.130239329,64.83037000200005],[-159.07662153599992,64.94580302000008],[-159.34016523699995,65.05120240999997],[-159.0834196989999,65.11790505100015],[-159.09647309399992,65.2896075880002],[-159.32595168899996,65.27550069600005],[-159.53539234599998,65.09502341200005],[-159.59176876999996,64.98970769400012],[-159.88090631599997,64.90084831400003],[-159.7550293049999,64.75377263500013],[-159.96866624399996,64.71301243900018],[-160.193536722,64.54324415100001],[-160.17919578999994,64.45393500100005],[-159.87081884199995,64.50004773400008],[-159.84504285699992,64.42499757700011],[-160.05485468299995,64.30976786000008],[-160.14522124099994,64.2199446640002],[-160.00786983599997,64.18594751000012],[-159.86734320399995,64.24512863700016],[-159.69292672599997,64.224457492],[-159.56942809699999,64.28195950200012],[-159.32975838099998,64.29205291300013]]],[[[-172.76400758799997,64.69261510500002],[-172.40800469099997,64.72726840700005],[-172.25340266599997,64.78629242800008],[-172.3197016759999,64.83440572600017],[-172.56080661800002,64.877117725],[-172.78660570199997,64.77943284600008],[-172.76400758799997,64.69261510500002]]],[[[-162.2752495189999,65.02072145900013],[-162.1675104169999,65.13016264400011],[-161.92392618199995,65.17699375300009],[-161.551365972,65.19751971900001],[-161.25075334299993,65.1573347210001],[-161.12025307099995,65.28103744700013],[-161.16724234399996,65.48023108600017],[-161.14668983499993,65.60774708900016],[-160.70295183199997,65.67993566000013],[-160.54292531999994,65.60228608200009],[-160.08625669799997,65.63369214200003],[-160.04545346199995,65.67157926900018],[-160.11169668399998,65.81577398500019],[-159.91918118599995,65.80678019800007],[-159.78846449899993,65.71820476199997],[-159.5734001769999,65.72924105200008],[-159.56442518899993,65.65000479500014],[-159.35257719799992,65.6072936720002],[-159.17695433599994,65.78521919200006],[-159.1166804739999,65.93330703200013],[-159.13135985099998,66.04406625000018],[-159.4764877879999,66.288383259],[-159.24826488499994,66.34469662600014],[-158.81228044099998,66.28218905400007],[-158.2133714779999,66.41550374200011],[-157.19656779899995,66.52617982700013],[-157.18004936599993,66.57225147100002],[-157.36270260399994,66.63581620300016],[-157.38767033099995,66.70336881700018],[-158.146492214,66.73098884500018],[-158.10536648099995,66.77884176900005],[-157.72599605199997,66.80252473000019],[-157.27817838699997,66.78683489200017],[-156.93622126999995,66.84098395200016],[-157.048678,66.91159600100008],[-157.47510043499992,66.93727244000013],[-157.90788116599992,67.07860227900017],[-158.12452351199997,67.02780304800012],[-158.14713622099998,66.933194174],[-158.74857684599993,66.85653525300017],[-159.183084192,66.81864888200005],[-159.78088682299992,66.78625722700008],[-160.1815334579999,66.86313369700008],[-160.59756724399992,66.74783612600015],[-160.81528713499995,66.73849620600004],[-161.09287654299993,66.7668615820001],[-161.19744355199992,66.98100797400019],[-161.38823468099991,67.03237323100018],[-161.6148037419999,67.00146677500004],[-161.7929454439999,66.87878099000005],[-161.8823907089999,66.71616280900002],[-161.49374509999998,66.52709925800008],[-161.29756329699993,66.52078111000009],[-161.141699809,66.6382811260001],[-160.82120895399999,66.65428117800019],[-160.65309981399997,66.58967212300007],[-160.33597259599995,66.60580854000006],[-160.18480884499994,66.483281305],[-160.22465419599993,66.39125403300017],[-160.54352685699996,66.36363580000005],[-160.79205410799992,66.36975393900008],[-161.07528147799994,66.49159933300007],[-161.24225421299997,66.52092657400004],[-161.58064499599996,66.440553797],[-161.9183632559999,66.55410827300005],[-162.06865423699992,66.64112642000015],[-162.01084527799998,66.75329914700018],[-162.28417270599996,66.92598999299997],[-162.59919990299997,66.89697175900011],[-162.50364519499993,66.73663542700018],[-162.22776338099993,66.70690820600004],[-162.09753601599996,66.60580823700008],[-161.87181773799995,66.49035374100004],[-161.92183576199992,66.34767192800007],[-161.70605402299995,66.39694468800019],[-161.5326813199999,66.39909926400014],[-161.10168130199997,66.33118116100013],[-161.06487211599992,66.23785390400013],[-161.1969538969999,66.21561751900015],[-161.34880847499997,66.26530839800012],[-161.55844478299994,66.23853563800003],[-161.82720814099994,65.99932652400014],[-161.987917284,66.07123558100011],[-162.39191718899994,66.02872642600016],[-162.62888989299992,66.03812638400007],[-162.76353538899994,66.09518999300002],[-163.09302621899994,66.06296266800013],[-163.49587163899994,66.0853898690001],[-163.72958067399998,66.06163528700017],[-163.92990807599995,66.21601705700016],[-163.83010814899995,66.27199888600018],[-163.87313553599998,66.38901704800008],[-163.76199016699996,66.45487160600015],[-163.75419936199998,66.55128068900007],[-163.9855811889999,66.59036246300019],[-164.40995384299995,66.58085330300014],[-164.6625537689999,66.5495896270001],[-164.9883263069999,66.41805322100015],[-165.38719896299995,66.41111679200003],[-165.69635338399996,66.33818038300018],[-165.87754416299992,66.240307637],[-165.568816852,66.15577133400012],[-165.73364403899996,66.09622585700015],[-166.05392581699996,66.10827125700007],[-166.232798579,66.17108940300005],[-166.65963477199992,66.07362570700013],[-166.88667094599992,65.92282568500002],[-167.15382537299993,65.84678019500006],[-167.32604355799992,65.88171652700004],[-167.535625282,65.82359831700006],[-167.5857887969999,65.70868014000007],[-167.7932978519999,65.70751647000009],[-168.0752249489999,65.57635280200003],[-167.72389766799998,65.50258014000013],[-167.39847944599995,65.40026202200005],[-166.6113068079999,65.35149852000018],[-166.39555220199998,65.2505803840001],[-166.69647922699997,65.03585308600009],[-166.69084281999997,64.98537127300006],[-166.41565185299993,64.87192587700014],[-166.4838244439999,64.73341678900005],[-166.3924243749999,64.63816226900013],[-166.23696071399993,64.58355321000005],[-165.33592440599995,64.48763518500004],[-165.00198804399992,64.4339170630002],[-164.84194266199998,64.4906079930002],[-164.33973370299992,64.55941715900008],[-163.97437920099995,64.55137176500017],[-163.59786108099993,64.56335364299997],[-163.253051953,64.46949916400007],[-163.04346108499996,64.48541737900007],[-163.36116113299997,64.58401731700013],[-163.18998848399997,64.64805370200008],[-163.01486114999997,64.5533537410002],[-162.83406866699994,64.50972568400005],[-162.85578502699997,64.67677122500004],[-163.012255022,64.70939344600015],[-163.5035988909999,64.68575804400012],[-163.68771354099994,64.70949748400005],[-163.892879886,64.79013605100005],[-163.85368439999996,64.91838683300011],[-163.68042704999996,65.01484884500007],[-163.35096915999992,65.01930789800019],[-163.01609020899997,64.95637036000011],[-162.74379888399994,64.86522030300006],[-162.7543762329999,64.79164566400016],[-162.5991228869999,64.76131221500009],[-162.30546000099994,64.83811236300016],[-162.2752495189999,65.02072145900013]]],[[[-179.82485962999993,68.9367983200001],[-179.99998860099998,68.97818178699998],[-179.99998860099998,68.21632361700006],[-179.99998860099998,67.45446611800014],[-179.99998860099998,66.69260845100018],[-179.99998860099998,65.9307504480002],[-179.99998860099998,65.06728617700003],[-179.72610471699997,65.15030071400014],[-179.56723060399997,65.26696054500013],[-179.51171859999994,65.44252084900006],[-179.32861374599997,65.54726211700012],[-179.40615858799995,65.65587934400008],[-179.7517087489999,65.80836795600015],[-179.81585662799995,65.91726044600011],[-179.76196266699992,66.11532934400009],[-179.43670660200002,66.12534001900013],[-179.12722762599995,66.25841832200007],[-178.99447671899995,66.1675628500002],[-178.7683406829999,66.21923158300001],[-178.64639270899994,66.35922294500006],[-178.51531969199993,66.35366842600013],[-178.56500258499995,66.19199308000009],[-178.69110060699992,66.0747852400001],[-178.947540744,66.04367094500009],[-178.65472364999994,65.75976666400015],[-178.4769597439999,65.6780975900001],[-178.56307960799992,65.51477453000012],[-178.36947658799997,65.47390923200004],[-177.50033558899997,65.48417907500004],[-177.26959269099996,65.51437856900014],[-177.181670718,65.59365142500019],[-176.73446667899992,65.57143301100018],[-176.17834466899996,65.47615290000005],[-175.95150773799995,65.37139620900012],[-175.87789970799992,65.16597252600008],[-176.00469963099994,64.99680526800012],[-175.83850074,64.92532188299998],[-175.5827026569999,64.87052519100007],[-175.51429760899998,64.77048348800014],[-175.18310564799992,64.78184415200008],[-175.02009573599994,64.8162314130002],[-174.79148871499999,64.73305175300004],[-174.39750674299998,64.65374788500009],[-174.19299366999996,64.53811165100012],[-174.07519574399993,64.3994109350001],[-173.78680462999998,64.32081617600011],[-173.65809665099997,64.32586727800009],[-173.43389867799996,64.50419796800008],[-173.36109966999993,64.39741168300009],[-173.51040667899997,64.2850408720002],[-173.23339869299994,64.23397429400018],[-172.986495653,64.32048123500005],[-172.98530558999994,64.41021437],[-172.74429368699998,64.35778271600003],[-172.31370559799993,64.40192097900012],[-172.59330761499993,64.55472206900009],[-172.93989562399994,64.58770485800017],[-173.2223966059999,64.66886280300014],[-172.957702642,64.73464682899998],[-173.08920263299999,64.83813684600017],[-172.664398727,64.91530450300019],[-172.29049661099995,65.01867952100014],[-172.17790267299998,65.08768353900018],[-172.264007617,65.26017723900003],[-172.20010365199997,65.47586255100009],[-172.3491057269999,65.49967570500007],[-172.57769766199993,65.61134528700012],[-172.64071666499993,65.70119275100006],[-172.367095639,65.66147292400018],[-172.2801965929999,65.58569414900012],[-171.88020362299991,65.52284680600013],[-171.48609961099993,65.52514411800013],[-171.1672055779999,65.46276281000007],[-171.04821758999998,65.54575203300004],[-171.10819966199995,65.61351938500007],[-170.79499861799997,65.59826750600013],[-170.56051671999995,65.6443438340001],[-170.51551864099994,65.70436697800011],[-170.61039759399992,65.84637184000007],[-170.37510667499996,65.90696780400003],[-170.072799591,66.02183474600014],[-169.82099866899998,65.9797336200001],[-169.69650259699998,66.05039993700012],[-169.79060370899998,66.11538349100005],[-170.172103686,66.11536035700004],[-170.34739660599993,66.28658788700017],[-170.55700671499997,66.20674187700013],[-170.68840059099998,66.23817636100006],[-170.53250171799996,66.31642025400015],[-170.919799624,66.49228649700012],[-171.1302036669999,66.54500816500013],[-171.371002669,66.64264677600016],[-171.50300574199997,66.79968324000009],[-171.70640569899996,66.86394846600007],[-171.78869670999998,66.98535379500015],[-172.0234986279999,67.00899109800008],[-172.20880172099996,66.98574254800008],[-172.62289472799998,67.01913035100011],[-172.7328036069999,66.9359961200002],[-173.03469863699996,66.95832936600016],[-173.12480158099999,67.00068932500017],[-173.3829957149999,66.86268229500018],[-173.34100372199993,67.08811894600018],[-173.7182005969999,67.14211583700012],[-173.78900169499994,67.09642876500004],[-174.16509970199994,67.11989775800004],[-174.38349873899992,67.09357439100012],[-174.32130468199998,67.01467520100005],[-174.08459470699992,66.89310977700012],[-174.12109370499996,66.69363674200008],[-174.3372036439999,66.58108203200015],[-174.034896727,66.53146569100011],[-173.8146975919999,66.44147187900012],[-173.823394655,66.3655019970002],[-173.96150159699997,66.32283676800012],[-174.04040564899998,66.21928539500004],[-174.175704654,66.24794999500017],[-174.0690006789999,66.36605201700002],[-174.10839864199994,66.45504553300003],[-174.32640071199992,66.41968178100007],[-174.59129366299996,66.29031816900005],[-174.67300363999993,66.44534012700012],[-174.664199624,66.55198928400017],[-175.02389558799993,66.63482562200016],[-174.99729964199992,66.74366497000017],[-174.84049971399995,66.7405061660001],[-174.82769769799995,66.91524386900011],[-174.98370369199995,66.9751835290001],[-175.04530363999993,67.07652258300004],[-174.91400162899998,67.3187760130001],[-175.44799759299994,67.35047771200004],[-175.24339265499998,67.48945419300003],[-175.47599767599996,67.62638649600018],[-175.44412263999996,67.67965717800013],[-175.778594607,67.75851965600015],[-176.04620362999995,67.73238689300018],[-175.972396614,67.63934206800008],[-175.8058926219999,67.61890128900018],[-175.8110966099999,67.5088111930001],[-176.27569561299993,67.63441250300014],[-176.12602264999998,67.84694806400012],[-176.38999962699998,67.91564698000013],[-176.638793624,67.8909497030001],[-177.0057986079999,67.97191000300012],[-176.94749459199994,68.06307778400003],[-177.15840171600001,68.16843026100008],[-177.3804926459999,68.196271926],[-177.42089861599993,68.25951539700009],[-177.6786956159999,68.19810303600019],[-177.87409973999996,68.32439903900013],[-178.057998695,68.36431802000016],[-178.11090074199993,68.42951464200007],[-178.37280269499993,68.45116057200016],[-178.78269972099994,68.56668331500009],[-178.84699964699996,68.68039053700011],[-179.00509659099995,68.7391788590001],[-179.32870460599995,68.79703561600019],[-179.55233763799998,68.90762175300017],[-179.82485962999993,68.9367983200001]]],[[[-178.30249059699992,71.49534107400007],[-178.58917264099998,71.56423880900007],[-178.9686275999999,71.582855016],[-179.59500169299997,71.5764767230001],[-179.99998860099998,71.53455782000015],[-179.99998474499992,70.9958911240002],[-179.27444469099993,70.90643878200007],[-178.88504074699998,70.97060560400007],[-177.93890358599992,71.03617639400005],[-177.620025646,71.11532922100002],[-177.43945262999998,71.22562551100015],[-177.71502663999993,71.30146614500006],[-178.082214684,71.46202854100005],[-178.30249059699992,71.49534107400007]]],[[[-146.99787065899997,-86.59570812899989],[-148.56355748699994,-86.67371752599996],[-147.5712115039999,-86.78724692899993],[-146.36160835199993,-86.72662059999988],[-146.99787065899997,-86.59570812899989]]],[[[-146.842149418,-86.25685899699982],[-147.9663204919999,-86.23244920899987],[-148.51451745799991,-86.34868462699995],[-146.617596136,-86.35149860099989],[-146.842149418,-86.25685899699982]]],[[[-155.948511455,-86.0629000049999],[-158.72836387399994,-86.13327667199991],[-156.98625501899994,-86.23770399399996],[-156.45254147999998,-86.20646194699992],[-156.73936176399994,-86.10082327099991],[-155.948511455,-86.0629000049999]]],[[[-155.559435592,-85.98864100799995],[-154.50341428099992,-86.10217929499993],[-152.6042043559999,-86.05461247899996],[-153.50810194899995,-86.00517767099996],[-153.76762102799995,-85.92884448599995],[-155.559435592,-85.98864100799995]]],[[[-152.977873108,-85.86953696599988],[-153.75182901999992,-85.71263991499995],[-154.81599435499996,-85.77440853099989],[-154.7883952489999,-85.82339926499992],[-153.14266223099995,-85.82006829499994],[-152.977873108,-85.86953696599988]]],[[[-155.70646664499992,19.60048585600009],[-155.78512560899998,19.358415822000097],[-155.78654466499998,19.246495286000084],[-155.70367463299993,19.183799991000058],[-155.42539963799996,19.44887265],[-155.3941497239999,19.490232146000153],[-155.4588316969999,19.59768395300017],[-155.47859169799997,19.69449929400014],[-155.5795746889999,19.69820895700019],[-155.70646664499992,19.60048585600009]]],[[[-155.55786170399998,19.82063101100016],[-155.41960170799993,19.76356014100014],[-155.41252168199998,19.883280541000033],[-155.502456653,19.87628785400011],[-155.55786170399998,19.82063101100016]]],[[[-156.0334626249999,19.716948042000183],[-155.96797162999994,19.828303638000023],[-155.70889270299992,19.934390535999967],[-155.75823964899996,20.022600512000167],[-155.83213769199992,19.979623980000042],[-155.9355316529999,19.854728929000032],[-156.044616591,19.781248136000045],[-156.0334626249999,19.716948042000183]]],[[[-156.2767797189999,20.75025414700019],[-156.29296869499993,20.661333051000156],[-156.16856364899996,20.68730974200014],[-156.13563567799997,20.745982561000062],[-156.2767797189999,20.75025414700019]]],[[[-156.39704862999994,20.734418050000045],[-156.37893667899996,20.801442430000066],[-156.48818959,20.852341369000158],[-156.44891366799993,20.71704320200007],[-156.39704862999994,20.734418050000045]]],[[[-156.959380624,20.73709187700001],[-156.8366087089999,20.761548594000033],[-156.80630460899994,20.807628107000028],[-156.8981017039999,20.916596033000133],[-157.0268406959999,20.92859640400019],[-156.959380624,20.73709187700001]],[[-156.93298366399992,20.87056362700008],[-156.83471657799993,20.81819953000013],[-156.85322566399998,20.77274799000014],[-156.9589846629999,20.77310103600007],[-156.93298366399992,20.87056362700008]]],[[[-157.02691663599998,21.0903344460001],[-157.10073857199993,21.1926216600001],[-157.25817870899994,21.224045918000115],[-157.302703714,21.096017879000044],[-157.08554067199995,21.1049476230001],[-157.02691663599998,21.0903344460001]]],[[[-145.51657068399996,60.82197090200009],[-145.2914275679999,60.70617826300003],[-145.23049968099994,60.79027339400005],[-145.51657068399996,60.82197090200009]]],[[[-147.69288658299993,61.20840714900015],[-147.93452295699996,61.07884742100009],[-147.8637174859999,60.90601774100014],[-147.56932179399996,61.09719694500012],[-147.35745272,61.02048041500018],[-147.12693763099992,61.06769662000005],[-147.31462067999996,61.124014795],[-147.63430764099996,61.14868173000019],[-147.69288658299993,61.20840714900015]]],[[[-147.87840483699992,61.16792015200019],[-148.15419569999997,61.10013829400003],[-148.11671383799995,61.038147394000134],[-147.87840483699992,61.16792015200019]]],[[[-150.69023169199994,62.82878275900009],[-150.86729470299997,62.875580098000114],[-151.01588472399993,62.80803788400004],[-151.02635170899998,62.721184268],[-151.22398357499995,62.648122068000134],[-151.16469986999994,62.50354976200015],[-150.9804733199999,62.487102156000105],[-150.85234024199994,62.40644858900015],[-150.66888818199993,62.50456670500017],[-150.47153523999995,62.6509578460001],[-150.52436857999996,62.71706791500003],[-150.67196668699992,62.75317966900013],[-150.69023169199994,62.82878275900009]]],[[[-156.85541342599998,62.978815839],[-157.17267093499996,62.95779301600004],[-157.26090315499994,62.814743051],[-157.39694173399994,62.67890354600007],[-157.38036347099995,62.55600467400012],[-157.23200820299996,62.5607685830002],[-157.05606014999992,62.69905373199998],[-156.70892035799997,62.79519418799998],[-156.64362223199998,62.92577908200013],[-156.85541342599998,62.978815839]]],[[[-150.43753072199996,63.05324979100004],[-150.46005256099994,62.95901875900012],[-150.6138765769999,62.797283567000136],[-150.40338388599994,62.701551728000084],[-150.1740920299999,62.85913797200004],[-150.00115513899996,62.93264595200003],[-150.23310867599994,63.04947273800008],[-150.43753072199996,63.05324979100004]]],[[[-156.08579397399996,63.54921883100002],[-156.08175653599994,63.349307248000116],[-156.18158538299994,63.3066536230001],[-156.11311761499996,63.15001219499999],[-155.76472129199996,63.290894642000126],[-155.51465238799992,63.34664600000019],[-155.49126939899992,63.458377882000036],[-155.63580661799992,63.511115438000104],[-155.65348142899995,63.57594514099998],[-156.0010914769999,63.58564120300008],[-156.08579397399996,63.54921883100002]]],[[[-163.40845372899994,62.04634979500008],[-163.17879856699994,62.22940764700007],[-163.05007418399993,62.375056625000184],[-163.05053091799996,62.50107958800004],[-163.16741275299998,62.68151122799998],[-163.14845011399998,62.76946458000009],[-162.7088373489999,63.065816820000066],[-162.41819616399994,63.22176817700017],[-161.82321926699996,63.17693374000004],[-161.60280065699993,63.21437129300011],[-161.40124335599998,63.14021643800015],[-161.23048034299995,63.15634619700006],[-161.1914676439999,63.30403176700008],[-160.97570051499991,63.2810947120002],[-160.73264868899994,63.5058155120002],[-160.77650366799998,63.5898239230001],[-160.95994575199995,63.62475264800008],[-161.14282410999994,63.5027723340001],[-161.52147857299997,63.45327227700011],[-162.02557850899998,63.44753583200003],[-162.29274205499996,63.37339943200004],[-162.437087496,63.377835771000036],[-162.6679418919999,63.227126657000156],[-163.0405235359999,63.06215388600003],[-163.3636143809999,63.034590201000185],[-163.72583265699993,63.21061739700019],[-164.0365872019999,63.26119916000016],[-164.4189962039999,63.21396274000017],[-164.54540522899995,63.153280908],[-164.44348696799992,63.03614457200007],[-164.7073778239999,63.01080817000019],[-164.78823230499998,62.941571801000066],[-164.844468559,62.80848089500006],[-164.49759584899996,62.769453683000165],[-164.53494125099996,62.70686277500016],[-164.72329569199997,62.60194457400013],[-165.04606832899992,62.54041725600001],[-165.26929548799995,62.4273535960001],[-165.67563158399997,62.13558992800017],[-165.75683147899994,62.00633538300008],[-165.60012230999993,61.85959906],[-166.09210401599995,61.80073535400004],[-165.90380394899992,61.66363539800011],[-166.13495843999996,61.63308991100007],[-166.07774019699994,61.53008993100008],[-165.89199478199998,61.550026322],[-165.75434021999996,61.498708167000075],[-165.87176743099997,61.43018997399997],[-165.859012813,61.31886271500014],[-165.649276461,61.29548093200003],[-165.57814906899995,61.10036278300004],[-165.4030308879999,61.067062814],[-165.30799461399997,61.18182645200005],[-165.07673092999997,61.06490831800011],[-165.19498540599994,60.97991740000015],[-165.14185810399994,60.92337196000011],[-164.96068537399995,60.88759926400007],[-164.86642171399998,60.83211746600011],[-165.03209437599995,60.760026540000126],[-164.97127617099997,60.7114356460001],[-165.28327604399996,60.5763265220001],[-165.19047600699994,60.497999271000026],[-164.99797602099994,60.48033566600003],[-165.06917595699994,60.393472028000076],[-164.85037593099992,60.30361752600004],[-164.66666685699997,60.29595391700019],[-164.38638493899992,60.07730852900016],[-164.09243036799998,59.97538131100009],[-164.17683942299993,59.93399039500002],[-164.086248457,59.82165405600017],[-163.90427573199992,59.789117724000164],[-163.46764851099996,59.790190518000145],[-163.12700311899994,59.82878147400015],[-162.88417592,59.90681786700014],[-162.51700327799995,59.98103609700007],[-162.46193970199997,60.069736097000145],[-162.45675796399996,60.197545176],[-162.56736706499998,60.23613606400005],[-162.53883076899993,60.33798151299999],[-162.3372670679999,60.19727246700012],[-162.19220342199995,60.15974522000005],[-162.2108306119999,60.02677250300019],[-161.94730322399997,59.792518021000035],[-161.8707758779999,59.65728168300018],[-161.7040667109999,59.50153627000003],[-161.9428302499999,59.37396351900003],[-161.93819381799997,59.25745444000006],[-162.02179378399993,59.2149998860001],[-161.91343008599995,59.08663627800007],[-161.62456650599998,59.13448177300012],[-161.60087556099998,59.06847269100007],[-161.793302766,58.981727216000195],[-161.75308449099998,58.80949996500004],[-161.69242083299991,58.76098179800016],[-161.97522985199996,58.680245401000036],[-161.75060254199997,58.57558180800015],[-161.36000262699991,58.65920004000003],[-161.34222993899994,58.72907276300009],[-160.98399368,58.85349098700016],[-160.750039186,58.904318291000095],[-160.5329301699999,59.005200132000084],[-160.33483930799997,59.05355470200004],[-160.31226653199997,58.96493653300013],[-160.16252103599996,58.86750020100004],[-160.0084028759999,58.88070931500016],[-159.89872100599993,58.77633661300007],[-159.63169380099998,58.85634573700008],[-159.385348317,58.76459123799998],[-159.04796633599997,58.42700950300008],[-158.78746634699996,58.411309542000026],[-158.74819367799992,58.51140044800019],[-158.85553922499997,58.693064052000125],[-158.7709120069999,58.77530951300014],[-158.769221149,58.864827686000126],[-158.61538482499992,58.914273160000164],[-158.50427570999997,58.85750045500009],[-158.56442112899995,58.80432772400013],[-158.35114837499992,58.726564126000085],[-158.33437561299993,58.662909589000094],[-158.14194832599992,58.61288235000018],[-157.55528480999996,58.753509701000155],[-157.30373032899993,58.836900640000124],[-157.11643944899998,58.86501884900008],[-157.0082667,58.81520068800006],[-157.068066635,58.70821886900018],[-157.483721023,58.479173372],[-157.5560118409999,58.32165519200004],[-157.4020208599999,58.17069159200008],[-157.57758445999994,58.12547338700011],[-157.67189335799992,57.772082494000074],[-157.692129635,57.61033705000011],[-157.93312954799998,57.47712793500017],[-158.0106295059999,57.40137338500011],[-158.25058399099993,57.314282447000096],[-158.45629300699994,57.19632788299998],[-158.63812928899992,57.05687332200006],[-158.68992924199998,56.97406423100011],[-158.65308370999995,56.80885516000012],[-158.78361095899993,56.780746052000154],[-158.95549279499997,56.843746021000186],[-159.23789272099992,56.730245989000196],[-159.32443813899997,56.67035507400004],[-159.82807440199997,56.54393683100017],[-159.93835618099996,56.47419136700006],[-160.14410158199996,56.40102770700008],[-160.3926923939999,56.237673141000016],[-160.488728677,56.077218597000126],[-160.56837409099995,56.00406404900019],[-160.48021847599992,55.92097428200009],[-160.1105791969999,56.09288829200017],[-159.78163808099998,56.111462857],[-159.67181802299996,56.14141288700006],[-159.55315629099994,56.32108986500009],[-159.01175412899994,56.342602624999984],[-158.89879437099998,56.33483916000006],[-158.77054926299994,56.38680178900006],[-158.8860043159999,56.51125585900007],[-158.83715201199996,56.587528728000166],[-158.345393244,56.62480799200017],[-158.40071279999992,56.81065116000008],[-158.34864738199994,56.913353814000175],[-158.08459221099997,57.01072101200003],[-157.6960232799999,57.07019866000002],[-157.34009886899992,57.1812160180001],[-157.12360958999994,57.2881414790001],[-156.8229117159999,57.51177030200006],[-156.64838905899995,57.58276358900014],[-156.31772834999995,57.64612438600017],[-156.19094245699992,57.63392983500006],[-155.72435316099998,57.778688682999984],[-155.58496417399996,57.84300115300016],[-155.45405838699995,57.96972419300016],[-155.52658904999998,58.025643631000094],[-155.83278351599998,57.94529356400017],[-155.97404612399993,57.93061210899998],[-156.03131750899996,57.98204901700012],[-155.97121538499994,58.086149286000136],[-155.66980007899997,58.14804318000017],[-155.74283427499995,58.24594878500011],[-156.01803318099994,58.28047201400011],[-156.00278179299997,58.384160658999974],[-155.87456921199993,58.43999785000011],[-155.58209121699994,58.466681471000186],[-155.495603856,58.553625968],[-155.3925589259999,58.54684788399999],[-155.1993622319999,58.42977324000003],[-155.03637415699995,58.49464050800009],[-154.77339389699992,58.52029769200004],[-154.76238157499995,58.66273679500017],[-155.17626645699997,58.6939697680001],[-155.47731352699992,58.76248124000006],[-155.33024908099998,58.90288174200015],[-155.34047216699994,58.97059987200004],[-155.5923261229999,59.036690345000125],[-155.55695716899993,59.083575677000056],[-155.36188322599995,59.13225723199997],[-155.12363408899998,59.15160628900003],[-154.8673904579999,59.20827581200007],[-154.9204619489999,59.31032353400019],[-154.81400350799998,59.41866564300011],[-154.32630082199998,59.397520310000175],[-154.0878217249999,59.36796473300018],[-153.69904907099996,59.463601151000034],[-153.76101275499994,59.54341931700009],[-153.5854309469999,59.551473890000125],[-153.46457646899992,59.65171026500013],[-153.2141764669999,59.63427394200016],[-153.04874923799994,59.695355781000046],[-153.00254026699994,59.88672850300003],[-152.8611039019999,59.87501034400009],[-152.70645847799994,59.91528309200004],[-152.56914040099994,60.07174674000015],[-152.7657222899999,60.195219426000165],[-152.5250790409999,60.25320946100004],[-152.46573694799994,60.560692135000124],[-152.37449647699992,60.85428915200015],[-152.188261845,60.915605025000104],[-152.11824792099998,61.03561341900013],[-151.97840343599995,61.168268411000156],[-151.79196203299995,61.205446585000175],[-151.76192007399993,61.2690944200001],[-151.8946265349999,61.35914847600014],[-151.91473304999997,61.43420437900005],[-151.594982988,61.60075038400015],[-151.58924454899991,61.68717223400017],[-151.80408962899992,61.92402400500015],[-152.03632896799994,61.943053590000034],[-152.08395245499992,62.00169998900003],[-152.01151652199997,62.08505570000011],[-152.0018846399999,62.21612341300016],[-152.10964846399997,62.296450539000034],[-152.08186207999998,62.417654713000104],[-151.90602591999993,62.4622855720001],[-151.54215870199994,62.378628434],[-151.4126078109999,62.387374991000115],[-151.40523941099997,62.46599789600009],[-151.28777222399995,62.49811896800003],[-151.4089356339999,62.65528339800005],[-151.35679667499997,62.74325013100008],[-151.42929058299993,62.77959791900014],[-151.59498572099994,62.68159067199997],[-151.9352116979999,62.691837045],[-151.97526562799993,62.60939415400014],[-152.10742158599993,62.524554877000014],[-152.34294166699996,62.54011940099997],[-152.42021158199992,62.5978495920001],[-152.17088365799998,62.68100259700009],[-152.15379362799993,62.74470338500009],[-151.95805372499993,62.874672002000125],[-151.70338468399993,62.90364220700019],[-151.66076656199994,63.005594816000155],[-151.45996063699997,63.0318055300001],[-151.31437670199995,63.09278639000007],[-151.22377067499994,63.18486662600003],[-150.85284463699995,63.200858459000074],[-150.37156665299995,63.28754711900018],[-150.2149357039999,63.209822737000195],[-150.1083525969999,63.30318372700003],[-149.99589561899992,63.204219434000095],[-150.06312569099998,63.13264418400013],[-150.05973856399996,63.02817499200006],[-149.75600805299993,62.89731760000012],[-149.9439995639999,62.789905541],[-150.08403753099998,62.67262460300003],[-150.00359796599994,62.52250192300016],[-149.8094572359999,62.517796843999974],[-149.660564981,62.4207936790001],[-149.62144436199992,62.34302304400012],[-149.79670365899992,62.2568621530001],[-149.70632116099992,62.00498063600014],[-149.6857505879999,61.778162747000124],[-149.5822900439999,61.72485549200002],[-149.37608732799998,61.71197821700014],[-148.880987455,61.82443004500004],[-148.73063997499992,61.82573855000004],[-148.72718842199998,61.72660334200009],[-148.91741407499998,61.625754552000046],[-148.9155044219999,61.57880139500014],[-148.65890066999998,61.505343758000095],[-148.71784064499997,61.455296237000084],[-149.08364288899995,61.509241183000086],[-149.47027685599994,61.428821851],[-149.80342734399997,61.05672620300015],[-149.457286471,60.909138093000024],[-149.85371378099993,60.967392570000186],[-149.93841132299994,60.90222027200008],[-150.05013528999993,60.66007329300004],[-150.15982926399994,60.550992727000164],[-150.09786870799996,60.439894640000034],[-150.36260899199996,60.35114141200006],[-150.70879696999992,60.296536149000076],[-150.712618232,60.11100049700002],[-150.84217567699994,59.83954192600015],[-151.0458360519999,59.69129916100013],[-151.1688484329999,59.51457544900006],[-151.37873885699995,59.51651648700005],[-151.40711321399993,59.39667635300009],[-151.25383962399997,59.35140843900007],[-151.04002972299992,59.35156596000019],[-150.8774672479999,59.31811978700017],[-150.74185822099994,59.417147074000184],[-150.60118550099992,59.42565618800006],[-150.62643101599994,59.526647085000036],[-150.45616570899998,59.62744015400011],[-150.59532155899996,59.682381427],[-150.36099271499998,59.804662833],[-150.520431601,59.88620902800017],[-150.34057657799997,59.9177841610001],[-150.26164268699992,60.0401638030001],[-150.28492761399997,60.08882259500018],[-150.0969845569999,60.19036231100017],[-149.94741871499994,60.198220681000066],[-149.800735577,60.271751429000176],[-149.67204268499992,60.20440803400015],[-149.61270166099996,59.99814699800004],[-149.44835351299992,59.971366855000156],[-149.50825432599993,60.141744486000164],[-149.34916555399994,60.203972981000106],[-149.23046565099997,60.02476166900004],[-149.12558306599996,60.06077532000012],[-148.85432320599992,59.95484639800003],[-148.80514568999996,60.001085191000016],[-148.96006756799997,60.10480621400012],[-149.02981556399993,60.205362062],[-148.89303564399998,60.32337037400015],[-148.6925966789999,60.40630142700007],[-148.45597713899994,60.545220096000094],[-148.66584767899994,60.52619818200009],[-148.9119266099999,60.472779307],[-148.91075163499994,60.389782875000094],[-149.14797961199997,60.424681264000014],[-148.98025471099996,60.552280318000044],[-149.0458526589999,60.6170638800001],[-149.01672370199992,60.6923875170001],[-148.80824263499997,60.74794377699999],[-148.73391761799996,60.90960118600009],[-148.77850364299996,61.051765807000095],[-148.67063860699994,61.1290550010001],[-148.51316862999997,61.16425815600007],[-148.33195456599992,61.28559324600013],[-148.40724165799998,61.34128244300007],[-148.57925457199994,61.319072411000036],[-148.54913369999997,61.416453362000084],[-148.33883661099995,61.38221211400008],[-148.10494966099995,61.43323108300018],[-148.20079068899994,61.49777475500008],[-147.88569667599992,61.602916006999976],[-147.791992698,61.58736640300003],[-147.634231701,61.66713563500008],[-147.4930117199999,61.58962566100007],[-147.32693470199993,61.64346480500018],[-147.17007459199993,61.633324378000054],[-147.00096164899992,61.715038714000116],[-146.84474158099997,61.57641108800016],[-146.615280612,61.53566447700018],[-146.5384066569999,61.70847736100018],[-146.42741366299998,61.71151764400014],[-146.52522259399993,61.546838057000116],[-146.30654863099994,61.44732357600009],[-146.12965359299994,61.334404086],[-145.93720962199998,61.354374808000046],[-145.7782895759999,61.3014819820001],[-145.90023771799997,61.186723333000145],[-146.0602266239999,61.198068575000036],[-146.34562657199993,61.29422560000006],[-146.45381162899997,61.186777313000164],[-146.82022065899997,61.176625655000066],[-146.93933276399994,61.03297599400014],[-146.59124116299995,61.129947637999976],[-146.31985025399996,61.136311318000196],[-146.18342145399993,61.051867777000155],[-146.376402122,60.991166852000106],[-146.34343092499998,60.92255133499998],[-146.17206275699996,60.891174605],[-145.79029983999993,60.76373201299998],[-145.6720735959999,60.80385408900008],[-145.84300256199998,60.89096955600019],[-145.74761968899998,60.98662333200008],[-145.57325766299996,61.00265690700019],[-145.476196565,60.95637505500014],[-145.30342056199996,61.02947497400004],[-145.27394057099997,60.89277736500014],[-145.02630662899995,60.9361111340001],[-144.872543633,60.922175548999974],[-144.88580363599996,60.85603696900006],[-144.64739967799997,60.764595434000114],[-144.89543159299996,60.69791186200007],[-144.83010008299996,60.618635544000085],[-144.57306305199995,60.48367712100003],[-144.30647008899996,60.45995758700013],[-144.15535112799992,60.41065666100002],[-143.89773753999998,60.39151816200001],[-143.8858960209999,60.242024884000045],[-143.82907577399993,60.113057309000055],[-143.63807653499998,60.074325285999976],[-143.39624338099992,60.1164778750001],[-143.34436456699996,60.051463418000196],[-142.80949490499995,60.09351193600014],[-142.4570667399999,60.07161570600016],[-142.41734224099997,60.099775768000086],[-142.13540737899996,60.08945735400005],[-141.76214619299992,60.04085945300011],[-141.39121204299988,60.01359961200012],[-141.47108576099998,60.113157604000094],[-141.39684941199994,60.139784888],[-141.1099368369999,59.891681017],[-140.92852508699997,59.859825349],[-140.78982244399998,59.725512725000044],[-140.31561270199995,59.69514871500019],[-139.79516730499995,59.83836697200013],[-139.64777642399997,59.90086699400007],[-139.58666992799994,59.78889255900009],[-139.329416628,59.68883814300011],[-139.04183592699997,59.55132234700011],[-138.90219896199994,59.422892237999974],[-138.50481113799992,59.27244070400013],[-138.29711244399988,59.16813253400005],[-138.12301005299986,59.04052636500006],[-138.0344086489999,59.07598375700019],[-138.14564555599992,59.18196336699998],[-138.05209362599987,59.39097400200018],[-137.95722959299997,59.35330656700006],[-137.66732755699996,59.308966801999986],[-137.54643268599983,59.37636736200005],[-137.2748566759999,59.22497191800005],[-137.098373692,59.15545425700009],[-137.03750565299998,59.07241239500007],[-136.91655582199985,59.103174859000035],[-137.259887602,59.30063871100009],[-137.29853856999995,59.368520057000126],[-137.17799355799997,59.45892022400005],[-137.0181276979999,59.42711207400009],[-136.83779859499992,59.32919669300003],[-136.685653641,59.456719136],[-137.07193100799998,59.60124323800011],[-137.35578820799998,59.66552221600017],[-137.55366096199998,59.87528538400011],[-137.66389903699996,59.943665273000136],[-137.9160426009999,59.95882051900014],[-138.02784874999998,60.18907672900019],[-137.95897103099998,60.340380686000174],[-137.80126991599997,60.467364437000185],[-137.85767717799985,60.63505742400008],[-138.08321580599994,60.734561138],[-138.60664106099995,60.81522699200002],[-138.65100096999998,60.92883861100012],[-138.4947514999999,61.01911266299999],[-138.57610877499985,61.125211751999984],[-138.855239322,61.25811851200007],[-139.08447458299997,61.32264235000014],[-139.43960490099988,61.48818508700015],[-139.6608728399999,61.548777756000106],[-140.08805643499983,61.729980374000036],[-140.2643707499999,61.856639444999985],[-140.45336268399996,61.92710277500015],[-140.41586353099996,62.095345493000195],[-140.36160179099988,62.12453053600012],[-139.97610435299993,62.05453915300018],[-139.320999165,62.36199563800011],[-139.04723973199998,62.15734061500012],[-138.6495831499999,62.144924702000196],[-138.01570034599996,61.86575628200018],[-137.73576234099994,61.89230280800018],[-137.624008001,61.85087201500011],[-137.348800263,61.878294950000054],[-137.22540453399995,62.00038212900006],[-136.91337423899995,62.00526366800011],[-136.73439026699998,62.07308620499998],[-136.815870992,62.17915739900013],[-136.9561906209999,62.238776761999986],[-137.29752930699993,62.31291886700018],[-137.48693809799994,62.381796629000064],[-137.39326404199994,62.47343833500014],[-137.74678045399997,62.58204706500004],[-137.90495194599993,62.60797120799998],[-137.63053870099998,62.69095207600009],[-137.73138325199994,62.751776945000074],[-137.91845606799995,62.766304023000146],[-137.925643665,62.93390242800007],[-138.08158926,63.050587799000084],[-138.41622886999994,63.20797389400008],[-138.7363693239999,63.215485643000136],[-138.6237943999999,63.31427463500006],[-138.42634496599993,63.328086050000195],[-138.32342393999988,63.4103084890001],[-138.339844939,63.48677910100014],[-138.22292976199998,63.53839844100003],[-137.96409504799993,63.55652595100014],[-137.98136781699992,63.69915698500006],[-138.07786688099992,63.764344121000136],[-138.31828337999997,63.839194834000125],[-138.27327104899996,63.91856442400018],[-138.338531903,63.983613251000065],[-138.72050424599996,64.02203253600004],[-138.92866732599998,64.07705752100009],[-139.23487927399998,64.11061935700002],[-139.59960930599993,64.26184791999998],[-139.59709781599997,64.32362592200008],[-139.2144736319999,64.37204616999998],[-139.00182081299994,64.35450300100018],[-138.8246740149999,64.28564184800018],[-138.60104633799995,64.24185865200008],[-137.86516771199985,64.15553928500009],[-137.21039615099994,64.23543375200012],[-136.90802541699998,64.08379963699997],[-136.55689598399988,64.1375917370001],[-136.29213889999988,64.22594337000004],[-136.05265037699996,64.2455414580001],[-135.54324226499995,64.21215213700015],[-135.030810982,64.14563400400004],[-134.767373164,64.16218714500013],[-134.49090240199985,64.12288614500017],[-134.27769994299996,64.05653690500009],[-133.97600076999993,64.01256104600009],[-133.471762448,63.9762041890001],[-133.14558600499998,63.96836048600005],[-132.94218871099991,63.93425089300001],[-132.50964046399997,63.787949065000134],[-132.34453777099992,63.70415372100018],[-132.31979050699994,63.59782946900009],[-132.41775116999997,63.497934743000144],[-132.01602087899994,63.37436057000019],[-132.2905257129999,63.18726881300012],[-132.57306904299998,63.19798296200014],[-132.63440757699993,63.086327654],[-132.2585442929999,62.88907576200012],[-131.86882042599996,62.72967479500005],[-131.604977309,62.642069729000184],[-131.3226742209999,62.618012423000096],[-131.0459747559999,62.63017553499998],[-130.85842312799997,62.55790102600014],[-130.7454188829999,62.46434610900013],[-130.6846120439999,62.335270780000144],[-130.74350767699997,62.22923633400006],[-130.53725528799993,62.23310686700012],[-130.46082188499997,62.11994162700012],[-130.56489335799995,62.00501796000003],[-130.43520933199989,61.930934524],[-130.24184107599984,61.87900611500004],[-129.957662595,61.88867557300017],[-129.49231113899998,61.849025633999986],[-129.338164749,61.779366806000155],[-129.43661569499994,61.710477247000085],[-129.25052742499986,61.67508666100019],[-129.35182779599984,61.50001155700005],[-129.06392840499996,61.34175075900009],[-129.01920281899993,61.12100307900005],[-128.90839207099992,60.931927996000184],[-128.9152167719999,60.80679507700006],[-128.74067390599993,60.84689201500015],[-128.62408054499997,60.915759027000036],[-128.45961594,60.95345118500012],[-128.3357105999999,60.844324738000125],[-128.2615585819999,60.70421679700013],[-128.06818000899995,60.70085236500012],[-127.89999230599994,60.79102123299998],[-127.86621416199995,61.012882975000025],[-127.53247225199993,61.12067813100015],[-127.49740093099996,61.33627954600013],[-127.26329364999998,61.289517767],[-126.87464526899998,61.165780852000125],[-126.7397519939999,60.88644134100008],[-126.60696266399998,60.81823401800017],[-126.43440758399998,60.87626916100004],[-126.43737609099986,61.09291546800017],[-126.34889804699998,61.20014144600003],[-126.1374305679999,61.221480424000106],[-125.9132077129999,61.064555504000054],[-125.77848143399996,60.88664544300008],[-125.70287006799998,60.89701331800006],[-125.35049978099988,61.11603827700014],[-125.16805536499987,61.31248212300011],[-125.116438658,61.20123887200009],[-124.87550375899991,61.16822154099998],[-124.59633188599997,61.271305578000124],[-124.177802623,61.309434524000096],[-124.07013897699994,61.37392808700008],[-124.0905825399999,61.48464258700011],[-124.35996585799995,61.58699040200008],[-124.3578237449999,61.90613210400011],[-124.12597913499997,62.07789697900017],[-123.92019092199996,62.139781975000176],[-123.73574900199998,62.23954176400008],[-123.55384308699996,62.29161261000007],[-123.54190931399995,62.42284435000005],[-123.62213973299998,62.57796533600009],[-123.72534270499995,62.66622753100006],[-123.81800930999998,62.86241113000011],[-124.2214800839999,63.2057770350001],[-124.2658933759999,63.43457454800017],[-124.53149958899996,63.60445670800016],[-124.51857827599997,63.72755914000004],[-124.7249616179999,63.75460923900005],[-124.84845324099996,63.86486970500005],[-124.7411825399999,63.982075572000156],[-124.78007723399992,64.05922251300007],[-125.13123413699998,64.14962073300012],[-125.32037657899991,64.11810037400005],[-125.4638125159999,64.1582179630002],[-125.93831404099996,64.23167934700007],[-126.31385244199998,64.52717834300017],[-126.1793209299999,64.64590467800014],[-125.92547324599991,64.65103014400017],[-125.75459101299998,64.5601935110002],[-125.51450214799985,64.56729682600019],[-125.755890938,64.72921008500015],[-126.04191773899998,64.74846854499998],[-126.22599941899995,64.82160409300013],[-126.58732442599995,64.82465939200006],[-126.79073778499998,64.92590615900019],[-127.00066207299989,64.98813483599997],[-126.92943089699997,65.05268983600013],[-127.19158984699993,65.12247470400013],[-127.6877586469999,65.32233195800012],[-128.12584555199993,65.45360825900013],[-128.94335689499997,65.5223448590001],[-129.08032135899998,65.60613178000017],[-128.9295687429999,65.67926080200004],[-128.92205495699983,65.78821233100018],[-129.23901551999995,65.77081472700007],[-129.50242084799999,65.85693030400012],[-129.65671981699995,65.9641853220001],[-130.36654105299993,66.20611088600003],[-131.019390913,66.24584799600007],[-131.08273320699993,66.28771976000013],[-131.4922611329999,66.33773803700018],[-131.62274747299995,66.30929825400011],[-132.0426474809999,66.3577344840001],[-132.4967252369999,66.28335897100015],[-132.1204188519999,66.18888666700019],[-131.6961476709999,66.16913394100004],[-131.34092870799992,66.11637316100018],[-131.11581203499998,66.05760848500006],[-130.87922290899996,65.95495400300001],[-131.05096838299988,65.86039354200011],[-131.287431616,65.8571718070001],[-131.61817558799993,65.90000633400012],[-132.09099123099998,65.98295618200012],[-132.41653422199994,66.07741501100014],[-132.96533371799995,66.16408791200007],[-133.14123493999995,66.05001664100018],[-133.31503549999996,66.01721239500006],[-133.5632964009999,65.92546974300012],[-133.86123673899993,65.98475020800004],[-134.07042168799995,65.98918254500006],[-133.97570571999995,66.1983867720001],[-133.87003682699992,66.3422136280002],[-133.94497605999987,66.48465701600009],[-134.1844585789999,66.55327239400009],[-134.36079331899998,66.6645036700001],[-134.61732711699995,66.71280874700017],[-135.04556725999993,66.93161998100004],[-134.81151087299997,67.06836029900006],[-134.939900293,67.1606245980002],[-134.84972645899995,67.25776331500009],[-134.84660068699986,67.4913761890001],[-135.24334187099998,67.62079227900011],[-135.34769235099992,67.73114315300012],[-135.32882889599995,67.97345145000003],[-135.37487790799997,68.15338885700004],[-135.31781633699995,68.22680989300017],[-135.45685008699996,68.318054017],[-135.55998314099998,68.4686894940001],[-135.74938456299992,68.55665366400007],[-135.72284899799996,68.62524211300007],[-135.83786807899992,68.71984042700018],[-135.8728347349999,68.83163738700011],[-136.13760570199997,68.8826177150001],[-136.527779115,68.90435013300004],[-136.7551209059999,68.86258372600008],[-137.00696606499992,68.93929963100004],[-137.21116802999995,68.93291870600012],[-138.08152255099998,69.13286605400009],[-138.27940231999992,69.20618465200005],[-138.59921916399992,69.248278734],[-138.74308622099994,69.34629232800012],[-139.0688808939999,69.47562590100017],[-139.5244906609999,69.54083322600019],[-139.86849399499994,69.61338695700005],[-140.38086358799995,69.58933904200012],[-140.94329904199998,69.63690742900013],[-141.18699497799986,69.68385532600018],[-141.37971337699997,69.62044808300004],[-141.470940773,69.69789351600014],[-141.69382271899997,69.77209347200005],[-142.23302286999996,69.84701155000016],[-142.36149571399994,69.91863879400017],[-142.88441415099987,70.0622568730002],[-143.22525060499999,70.10775680700004],[-143.88871422699992,70.07932032100018],[-144.01055054899996,70.04886575600017],[-144.4020959949999,70.03308386700007],[-144.6295595429999,69.9707838280001],[-145.25220505899995,69.99883825800015],[-145.5369142589999,70.06374729200013],[-145.85910534699997,70.16899268000009],[-146.08946894999994,70.14548354800007],[-146.52034175599994,70.19149255700006],[-146.85735993499995,70.18622885800016],[-146.9868144229999,70.14974701900013],[-147.25194175799996,70.18703787700008],[-147.68705086999998,70.20000143200019],[-148.06096923299995,70.31069226300013],[-148.50138742599995,70.31911945400014],[-148.49452387499997,70.37091945200007],[-148.73428758199992,70.41483758600015],[-148.8930693549999,70.38945574100018],[-149.16757860699997,70.48944659100005],[-149.4624241079999,70.51851017200005],[-149.7781695129999,70.49350102300014],[-150.43591480299995,70.40428272700018],[-150.42796041899993,70.49998272100015],[-150.79486948699991,70.4953190170001],[-151.0690602589999,70.41800988099999],[-151.56386936799993,70.43859160600005],[-151.87805116099997,70.4313188220001],[-151.72393316899996,70.54304611500004],[-151.975305922,70.56522788500007],[-152.5249149489999,70.54202778500019],[-152.41894233999997,70.61062779800005],[-152.47039700899995,70.68560960200017],[-152.26739727399993,70.83580053600019],[-152.5931518909999,70.88630956400004],[-153.24027919299996,70.92524580400004],[-153.50400637899992,70.88454575800017],[-153.88606999199996,70.88653659700009],[-154.16416977499998,70.770118374],[-154.35323351299996,70.83689106000014],[-154.56379711299994,70.82525465900005],[-154.64321543299994,70.90943645400012],[-154.6118338169999,71.02371827000007],[-154.77235209299997,71.08524550800018],[-155.14657938099998,71.11148179900005],[-155.26507920899994,71.01906360400011],[-155.50765177999995,70.94098174800018],[-155.5047970939999,70.85813630000013],[-155.97646063399995,70.82546348900013],[-155.98783359399994,70.96322711300019],[-155.71696092199994,70.98130897900006],[-155.50960656799995,71.07992719100008],[-155.56367943899994,71.1641817200001],[-155.9539885309999,71.18573619100016],[-156.1761522719999,71.25635432500013],[-156.34168862899995,71.25986338500007],[-156.63842510399994,71.34023605000004],[-156.81227044599999,71.2865360240001],[-157.23967907899996,71.05241778300018],[-157.49915160099994,70.94892683600011],[-158.00876043799997,70.83483584400011],[-158.9941147529999,70.76734476100012],[-159.660387425,70.78552645600018],[-160.05957802199995,70.627662762],[-159.90999619899992,70.61370824500011],[-159.73002328899992,70.48666283400001],[-159.97810504899994,70.47020824500004],[-159.90133251899994,70.58613552100013],[-160.216723333,70.55494455900009],[-160.74015932799992,70.36879902700002],[-161.31552268299995,70.24403529900019],[-161.5366499129999,70.23762616900012],[-161.92422266899996,70.29212609500019],[-162.33535857799998,70.04038059100003],[-162.60034925499994,69.91317146400007],[-162.96363990399993,69.78037141300007],[-162.92691251399992,69.69481688400015],[-163.11029414199996,69.58466231500012],[-163.02549409899993,69.54476233400004],[-163.09444839999992,69.38218961100011],[-163.63045701199997,69.09978954400015],[-163.96600225799997,68.98604404300005],[-164.25243849299994,68.92626218100008],[-164.604665702,68.92340757500017],[-165.34373821299997,68.85868927100017],[-165.79582903899995,68.85638010300005],[-166.22250170899994,68.87224366400017],[-166.19656521999997,68.77288913400014],[-166.23325586699997,68.5755436930001],[-166.35156472199992,68.4076346010001],[-166.6293009409999,68.3327709240001],[-166.24601908699998,68.24611645300013],[-165.99220081299993,68.13550741700004],[-165.63479173499994,68.09480748200008],[-165.3069644169999,68.01170754800006],[-164.804382463,67.82934401500006],[-164.686591566,67.82336221800011],[-164.52330965399997,67.72150771100013],[-164.1065732149999,67.60259870400017],[-163.8748094,67.41875330800019],[-163.75487287099992,67.25817152600007],[-163.73821817999993,67.12855336000013],[-163.57424543799996,67.09401702800005],[-162.97102726299994,67.02214441100006],[-162.68773641299998,67.03929900300017],[-162.44745456899997,66.98603541300008],[-162.25793745899995,66.99124638900008],[-162.34886681199998,67.1312715250001],[-162.4717749369999,67.19966509500006],[-162.30744220999998,67.27708528200003],[-161.8663972889999,67.37947177400008],[-161.42075254199992,67.50292494600006],[-161.36069889099997,67.44327671600013],[-161.13642458199996,67.49104426100013],[-160.97370096299994,67.48522531900011],[-160.71269635199994,67.36881839300014],[-160.35045498399998,67.4449644300002],[-160.3881739249999,67.32680342400005],[-160.26935303399995,67.16969378400012],[-160.00242588299992,67.15493960700013],[-160.04288573299993,67.49474464100007],[-159.91330639799997,67.69985004200004],[-159.80896574499997,67.685932277],[-159.7057676599999,67.45498383000017],[-159.2456042329999,67.39912443900016],[-158.6741176069999,67.365546574],[-158.5426413929999,67.42749985500012],[-157.5595079469999,67.33651237200007],[-156.30723155,67.14566090600005],[-155.76497843699994,67.07753731700012],[-155.16302407199993,67.02376810100014],[-154.39153656,67.05423748200008],[-153.54546679399994,67.11545323700011],[-152.731097974,67.18189123800016],[-151.83153295299996,67.20165382],[-151.0462236639999,67.1721673150002],[-150.27877041899998,67.18307222800019],[-150.06860717699993,67.14465450800009],[-150.04243668799995,67.07925479300013],[-150.57525451999996,66.99166585600005],[-150.4522650449999,66.84124305299997],[-150.56368883899995,66.76828031100018],[-150.509496088,66.63515520800007],[-150.871951797,66.47325305600009],[-150.87118406099998,66.41282181900016],[-150.58310883599995,66.40782408500019],[-150.60177682899993,66.28138783700012],[-150.90871293699996,66.23865490600014],[-151.34037604299996,66.21352621900013],[-151.61709216099993,66.10968302300017],[-152.2046480429999,65.98888389500007],[-152.38760923899997,65.93101302500014],[-151.39198116599997,65.97852175700012],[-150.7023560949999,66.07991397800009],[-150.40037682099992,66.15631419700003],[-150.17616869499997,66.24930264700015],[-150.13231765699993,66.33664677800004],[-150.261271016,66.38974715700004],[-149.84125177299998,66.44070947800003],[-149.59613600999995,66.39662755700016],[-149.23860207599992,66.52929115100017],[-149.5984464229999,66.60671624600019],[-149.47242841399998,66.68702455800008],[-149.24906066099993,66.70255791500006],[-149.16723287499997,66.77167745500003],[-148.81398498099992,66.86401863800018],[-148.59283413199998,66.99167689400008],[-148.23275538299998,67.00135682400008],[-147.61865897799998,67.07887429599998],[-147.9470305709999,67.11002466200006],[-148.41223110199996,67.20304448900004],[-148.28548796799993,67.24571145100003],[-147.88811352699997,67.2574314100001],[-147.31560282899997,67.22595191500005],[-147.27697540999995,67.09964940200013],[-147.06231098899997,67.11227976400016],[-146.37847142399997,67.25349382899998],[-146.29161053399994,67.36864743000007],[-146.0712284699999,67.43002217300011],[-145.64333697999996,67.43361521700001],[-144.69223261899998,67.49660491000009],[-144.53575322999998,67.5518781070001],[-144.5209611949999,67.61751794300011],[-143.87109506299998,67.7551097290002],[-143.86908325499996,67.53611650700014],[-143.65552097099993,67.50498438800008],[-142.85373550799994,67.70912603700009],[-142.65587915699996,67.80662588800004],[-142.5339080299999,67.932637349],[-142.37612709799998,67.95707084800006],[-142.30116101399994,68.08179565800009],[-142.09186360299992,68.14416404399998],[-141.94744554399995,68.25610202900015],[-141.71567026899993,68.22466826900006],[-141.51405138499996,68.24431247700005],[-141.34847118499994,68.37108820200007],[-141.22098387599993,68.61866097900014],[-141.00213369999994,68.73199729100008],[-140.86712282999997,68.5931076620002],[-140.7370302619999,68.59855623200013],[-140.41784187599995,68.71285138500008],[-140.33342880499987,68.80484460600007],[-139.94683432199992,68.77087209100017],[-139.70271393099983,68.67659061100017],[-139.32262468999988,68.64332799599998],[-139.5791509139999,68.55394891300017],[-139.55368777699994,68.41887372700012],[-139.2529212789999,68.34649112200003],[-138.937116678,68.39905587300012],[-138.75124282799987,68.47283579700007],[-138.29390376899994,68.42106736600016],[-138.10867205299996,68.27142917300017],[-137.91452550999998,68.2427697240002],[-138.21503840099996,68.10444533600008],[-138.34753519799995,67.94816537300017],[-138.07400826599996,67.95910083700011],[-137.96184002599995,67.92892557800013],[-137.6322702459999,68.03171852600008],[-137.47227622999998,68.0454494230001],[-137.46328767299985,67.84053121600016],[-137.56216489899998,67.60783408200007],[-137.42124322799998,67.54108175800019],[-137.113936143,67.47470070100002],[-136.86765271999997,67.478343789],[-136.76922790899994,67.37453377500015],[-137.0012055719999,67.26753939200012],[-136.83136992099992,67.13726528100005],[-136.93667418899992,67.08692832100019],[-136.98687293599988,66.96598620700013],[-137.19466114499988,66.9861539050001],[-137.27773708299992,67.07093600600007],[-137.4022032619999,67.08200550600009],[-137.49448968599995,66.96827672500012],[-137.65455611,66.97619682000004],[-137.72911240599996,67.06617071700003],[-137.77903418499994,67.26052036600004],[-137.86915785299993,67.31358405900005],[-137.79656972499993,67.42060823400004],[-138.14168475299994,67.42579159000007],[-138.5312003449999,67.49116320600012],[-138.70475764799994,67.45371889600011],[-138.942204141,67.13480440500018],[-139.0607882509999,67.17858769400004],[-138.9978529309999,67.29052114300015],[-139.37069421999985,67.2182300230001],[-139.5395854759999,67.12928892800011],[-139.661594423,67.27576522100014],[-140.29208425299998,67.26638753500015],[-140.45227261199994,67.23960938200003],[-141.0016386009999,67.22077215100012],[-141.1804228879999,67.1949182080001],[-141.51499524199988,67.09369835200016],[-141.7260373109999,66.96392718100009],[-141.6726254479999,66.84596299100008],[-141.49920989799995,66.64716779300005],[-141.28215356699997,66.2567369250001],[-141.35146173099992,66.0723263500002],[-141.61460071,65.90843934600014],[-141.95582105999995,65.78387285900016],[-142.38117795699998,65.73507397300017],[-143.07569747399998,65.74288819400005],[-143.24543039999998,65.63988258000012],[-143.28350890699988,65.5201421340002],[-143.20318519499995,65.43018542300013],[-142.468407663,65.37527402800004],[-142.27012777599987,65.29258176600007],[-142.1419753319999,65.17789821400004],[-142.16230060799995,65.07451357399998],[-142.40779042999992,65.12907222800015],[-143.23411617899995,65.27471930700011],[-144.0409876219999,65.38920374899999],[-145.49182252499998,65.669071062],[-145.8027730759999,65.76980423000003],[-145.63522918999996,65.88063081500007],[-146.0102338119999,65.92665607500004],[-146.44887751699991,65.86737386599998],[-146.95833429899997,65.96188516300009],[-147.61305093199996,66.03123298600008],[-147.88978711999997,66.03093485900018],[-148.126489077,65.95163957300008],[-148.28379888499998,65.8199458040001],[-147.98336522099996,65.79739321700009],[-148.0272150669999,65.73961756300002],[-148.30716463199997,65.73072488100001],[-148.54101940699996,65.6796994660001],[-148.558236841,65.62456180700013],[-148.09477481,65.59005154800013],[-148.02977930099996,65.47236284500008],[-148.16750147399992,65.41952559000003],[-148.23891847699994,65.25287036600002],[-148.18233074399996,65.21259440200004],[-147.7574866589999,65.20317967000017],[-147.68235005699998,65.07236182800011],[-147.4401204639999,65.04616507200012],[-147.21517475499996,65.13742488100013],[-146.98771588299996,65.00586180200014],[-146.4723291409999,65.02140647300018],[-146.47547615599996,64.9455236230001],[-146.88147096199998,64.81408237400012],[-146.9148737879999,64.70465844800009],[-147.03934795299998,64.62143238100003],[-146.98005963399996,64.5401352720001],[-146.85283068699994,64.50820678300005],[-146.48517676399996,64.55835800000011],[-146.50373911399998,64.39894923500009],[-146.17696816599994,64.3780178720001],[-145.95453166999994,64.44645212300014],[-145.86676157399992,64.39057239000005],[-145.52115579399998,64.30263581800011],[-145.333725663,64.30000890200017],[-145.31714247899995,64.20559793299998],[-145.12888458899994,64.150383094],[-144.96604750299997,64.1529137230001],[-144.6807931369999,64.05619579199998],[-144.74490515599993,63.89522864100019],[-144.29602666399998,63.819145189000096],[-143.9267518889999,63.72650142800012],[-143.769881586,63.48433139100007],[-143.43858396699994,63.45156378100012],[-143.18573239399996,63.48590398099998],[-143.0280588199999,63.47575492900012],[-142.56733327799992,63.26724820400011],[-142.2360717289999,63.14596695200004],[-141.69112450499995,62.98101297400018],[-141.55408932799998,62.88368648200009],[-141.40919853599996,62.68886599700005],[-141.44653211399992,62.59083718200003],[-141.6294876999999,62.535584666000034],[-141.76740412299995,62.56216269800018],[-141.73836439999997,62.652702457000146],[-142.11280676799993,62.74064131199998],[-142.24119613799996,62.89207469500019],[-142.57585336299996,63.06886394100002],[-142.57872298299998,63.18941558],[-142.79183486699992,63.24360603700012],[-143.1702559539999,63.25536974500005],[-143.35384950899993,63.32091090100005],[-143.62851104799995,63.370339632000196],[-144.00381091199992,63.46877192100004],[-144.14537480499993,63.66565768400005],[-144.55896979299996,63.677162641000166],[-144.86659393099993,63.74578541700009],[-145.17389876599995,63.76407847200011],[-145.57739379499998,63.85623829200006],[-145.74106491699996,63.81388084100007],[-145.9185404079999,63.83161874500007],[-145.98143806499996,63.66764867000012],[-146.12803027799993,63.695266401000026],[-146.09096981299996,63.83602598900006],[-146.3200255959999,63.90605724700015],[-146.52238806799997,63.920668722000016],[-146.67257281499997,64.07323148000017],[-147.13465070399994,64.07788715100003],[-147.35043578499992,64.10972553400006],[-147.795727172,64.22213508900012],[-148.096404396,64.1612806930001],[-148.5557798829999,64.21915197800013],[-148.97732857699998,64.20279577300016],[-149.11341645099998,64.15180701300017],[-149.03278738599997,63.977445119000095],[-149.25828299199995,63.94374095900008],[-149.36079658899996,64.06021374300019],[-149.67437304199993,63.996067911000125],[-149.97095334199994,63.96029453200009],[-150.03276388099997,63.839021506],[-150.27648217599992,63.76686559500007],[-150.33469182799996,63.818109564999986],[-150.31840945799996,64.03025590200008],[-150.4900687519999,63.94596600200009],[-150.60187282099994,63.8103692160002],[-150.99340779399992,63.59010266100006],[-151.36034759499998,63.45307056700011],[-151.33330302699997,63.33080506200008],[-151.82270880499993,63.267873478000126],[-151.95702726599998,63.18544597500011],[-152.42106830399993,63.021702485],[-152.69653911999998,62.967825773000186],[-152.82039244499992,62.84559405700003],[-153.063032016,62.781653471000084],[-153.3229355539999,62.66157171400005],[-153.35951173799995,62.581511637000176],[-153.5989821519999,62.48786123000008],[-153.87248666199997,62.48402843100007],[-154.29526900299996,62.37834123200008],[-154.55427670799995,62.26362516500012],[-155.14619518,62.128400187000125],[-155.31864014199994,62.048174314000164],[-155.30230736399992,61.95974307300003],[-155.175748453,61.856287858000144],[-155.12303830899998,61.75407597700007],[-155.19408751399993,61.63205239500007],[-154.98566865599997,61.64586460800007],[-154.68632275899998,61.80045953300004],[-154.56730227299997,61.74345105100008],[-154.52393725599998,61.57245445500007],[-154.35434127399998,61.454893514000105],[-154.44431855799994,61.38491116800009],[-154.44180292899998,61.21978969600002],[-154.2830548199999,61.1174472940001],[-154.12337164899995,61.08580066500008],[-153.94306219499998,61.19646763300011],[-153.83913533599994,61.16976994800012],[-153.80720237099996,61.089982052000096],[-153.82502580999994,60.90050252200007],[-154.1694995089999,60.88434482800005],[-154.49194349399994,60.842194326000026],[-154.82032882199994,60.75693313900001],[-154.921210098,60.604536723000194],[-155.07912709599992,60.564378218],[-155.17918535799998,60.485263977000045],[-155.15643132299996,60.41038914300009],[-154.83228314099998,60.302251636],[-154.61024066099998,60.28782396200012],[-154.2014272449999,60.32433860100008],[-154.21219893699995,60.21892535300003],[-154.51531732399997,60.09076566200014],[-154.57974131399996,60.01918549600009],[-154.52008429999995,59.885888189000184],[-154.4173404469999,59.7705587960001],[-155.16946176499997,59.72682909600013],[-155.49473302299998,59.747116799000196],[-155.6050262489999,59.72467791600013],[-155.63046346799996,59.8519300050001],[-155.79849052699993,59.912585274000094],[-155.81069727499997,59.96178655600016],[-155.59660569399998,60.06162261800006],[-155.48130706999996,60.178874346999976],[-155.50098438099994,60.282817205000015],[-155.62374303599992,60.391147589000184],[-155.84620668299993,60.42235089200011],[-156.00048455099997,60.27076176900016],[-156.16849952299998,60.21799397700005],[-156.33609109199998,60.22554075800019],[-156.54363611499994,60.359227408000095],[-156.7439957699999,60.403638161000174],[-156.93393560099992,60.372098113],[-157.11213680299997,60.227749691999975],[-157.28510668299998,60.215286519000074],[-157.91353778199996,60.22087702400012],[-157.87922368199997,60.35028441300011],[-157.90699687099993,60.43793194800003],[-158.08365746399997,60.61708107500016],[-158.29977072399993,60.59743950800009],[-158.38043683999996,60.64387656200006],[-158.31721088799992,60.796945910000034],[-158.39331272899994,60.81205119800018],[-158.52227121899998,60.693282194000176],[-158.88527731899998,60.68721703800014],[-158.88005678699994,60.8120655300001],[-158.74486314599997,60.942338213000085],[-158.19647596399994,60.94385593400017],[-158.15949300599993,61.09734403300001],[-157.74554326999996,61.250091250000025],[-157.57150101099992,61.34726127800013],[-157.59244950399994,61.395884803000115],[-157.82922242499998,61.38910791400008],[-157.91947146499996,61.45683240100004],[-158.07991732399995,61.45747704600018],[-158.25089125099996,61.534275050000076],[-158.74588705399995,61.47943769700004],[-159.19314901099992,61.47971742000004],[-159.25349987699994,61.326249819000054],[-159.52795008799998,61.345128174000024],[-159.49676599599997,61.424724445000095],[-159.57439238999993,61.48165304200012],[-159.98679479799995,61.49037999300003],[-160.28889973899996,61.446972656000185],[-160.58828281899991,61.357878515000095],[-160.9357387519999,61.13549917900008],[-161.05654036499996,61.144927748999976],[-161.00204440799996,61.44856951000014],[-160.7722329439999,61.47607346400014],[-160.523243339,61.55282816600004],[-160.38169538399995,61.656084735000036],[-160.32430868099996,61.847841454000104],[-160.50136185299996,61.82612535600009],[-161.05264597199997,61.683363035000184],[-161.5822341129999,61.564174332],[-161.9022453519999,61.47650839900018],[-162.02067947699993,61.42269158500011],[-162.26638279399998,61.53242694300019],[-162.49965954999996,61.69856862800003],[-162.73220159399995,61.77351798500018],[-162.76862145699994,61.90252108100003],[-163.069012863,61.905458347000035],[-163.2639400669999,61.95602427400013],[-163.40845372899994,62.04634979500008]],[[-144.20893857599998,61.602231540000105],[-144.05907762999993,61.55675288900011],[-143.75455008899996,61.514802698000096],[-143.53722494699997,61.359708779000016],[-143.44550006699995,61.34656012000005],[-143.232820463,61.4132877130001],[-142.74835652699988,61.41042313200012],[-142.64150087999997,61.35435586500017],[-142.76168915499994,61.21731692600008],[-142.73984894199992,61.145929582],[-142.32341149299992,61.1516570930001],[-142.21042259499995,61.07664493800007],[-142.62529221299985,61.00583454900004],[-142.76229410599996,61.070857704000105],[-143.1539185719999,61.15456728400011],[-143.45751963599997,61.29725277699998],[-143.73153409099984,61.25545203700011],[-143.81104425099988,61.32295986800011],[-143.968551957,61.337587687999985],[-144.25034535199993,61.475218740000116],[-144.53703562399994,61.64367460400007],[-145.04530283999998,61.5963058480001],[-145.26355816599997,61.63662047700018],[-145.48432617599994,61.728834228000096],[-145.669207601,61.88024172500013],[-145.91951811299998,61.79464879700009],[-146.07953218399996,61.82253306700011],[-146.13763067399998,61.888383423000164],[-146.3374080849999,61.9163676710001],[-146.44622945199993,61.84681676800005],[-146.68457671999994,61.89027100800013],[-146.76064240199992,61.96379545600007],[-146.94076708799994,61.91513442000013],[-147.03587935799996,61.939028250000035],[-146.99001874599992,62.23110575400017],[-146.99863988199994,62.35902049100008],[-147.331826304,62.47219763900017],[-147.3534510929999,62.59229610000011],[-147.19815005799998,62.670281855000155],[-146.6355605889999,62.71733129800009],[-145.69952381399997,62.736993021000046],[-145.63384819499993,62.77530676900005],[-145.27607359999996,62.793606865000186],[-144.57148179499995,62.87747682500009],[-144.51913809799996,62.71436847899997],[-144.24104982899996,62.63507709100003],[-143.96100017599997,62.67803101200013],[-143.86140287799998,62.740878978000126],[-143.5849483909999,62.70217389900017],[-143.49659271399992,62.55065699700003],[-143.85280752499995,62.534125453],[-144.11697789199997,62.56944004500019],[-144.39969093499997,62.489690941],[-144.56753052699997,62.4070685210001],[-144.650346692,62.25726306100006],[-144.81338123699996,62.20564820000004],[-144.91151484699995,62.05342326700003],[-144.89182012799992,61.959039171000086],[-144.75768084899997,61.8963694790001],[-144.59519752099996,61.90087990100011],[-144.5995585569999,61.79910837800003],[-144.24664304199993,61.663217138000164],[-144.20893857599998,61.602231540000105]]],[[[-154.31445669999994,63.44244230500004],[-154.2069156709999,63.43666161900012],[-153.930198855,63.58220170300007],[-153.74213836299995,63.70788492400004],[-153.43559283499997,63.7853681150001],[-153.33038132799996,63.89155577800017],[-153.40010293599994,64.06727684700013],[-153.31085866799998,64.07319784300012],[-152.94421786899997,64.01017579100017],[-152.76318697099993,64.00579230700004],[-152.47477934199992,64.11723003900005],[-152.06359811199994,64.1084946250001],[-151.56536165899996,64.26055411300018],[-151.51984294599995,64.37688223600009],[-151.658642033,64.45983064400014],[-151.91136536799993,64.52131580600013],[-152.01306740799996,64.58928192100018],[-151.90192593199998,64.66829319200014],[-152.15142153099995,64.69285869200002],[-152.41498393199993,64.611746358],[-152.31503704199994,64.52299188700016],[-151.930520583,64.40029278300005],[-151.87621831399994,64.31795046200017],[-152.38162675899997,64.29039063800013],[-152.94254203699995,64.204204817],[-153.21615071899993,64.17890369200012],[-153.66039178899996,64.16230275800001],[-153.74364226499995,64.2141555020001],[-153.941260821,64.17475544299998],[-153.90379142699993,63.997811833000185],[-154.04215273499992,63.774300618000154],[-154.21448216999997,63.743359726],[-154.49338889299997,63.78883826400005],[-154.56716646,63.746117380999976],[-154.55136166499997,63.62605159600008],[-155.09655380999993,63.514655742000116],[-154.89169329499998,63.410530390000076],[-154.66436144199994,63.47381484400012],[-154.47414874299992,63.495667240000046],[-154.31445669999994,63.44244230500004]]],[[[-154.06032114299992,65.49332547],[-154.30385527699994,65.42529148900007],[-154.4554113799999,65.42405986200004],[-154.84797132599996,65.20633719900002],[-154.93443134799995,65.1048625730001],[-155.15312366899994,65.01014459000015],[-154.9942811249999,64.92822742600015],[-154.5691200429999,65.04523665200003],[-154.2824493649999,65.04724629600003],[-154.00226031299994,65.07739420800016],[-153.83043288099995,65.14744128300003],[-153.5781635879999,65.16778249600009],[-153.53022629699998,65.26686271800014],[-153.30905842399997,65.36371047900013],[-152.92078416699997,65.2991536780001],[-152.80604304799996,65.35815072499997],[-152.902291318,65.43376839300015],[-152.638586911,65.44238351500007],[-152.54060712599997,65.49537746200019],[-152.76717521499995,65.59063582599998],[-153.02492219199996,65.57679572100017],[-153.40002154199996,65.42681722300017],[-153.55329315899994,65.43427206300004],[-153.8897192169999,65.30024145600004],[-153.90503129799993,65.36802446200011],[-153.78095885499997,65.49130738400004],[-154.06032114299992,65.49332547]]],[[[-149.18000754599993,65.48424083600014],[-149.02339182799992,65.5117630690001],[-148.94548859999995,65.61453407099998],[-149.53679986799995,65.53565942500006],[-149.64177322499998,65.59209842000007],[-150.14194052599996,65.50939823800013],[-150.25957236599996,65.6391913600001],[-150.08509645099994,65.6761031900001],[-150.04325151899997,65.77902675600018],[-150.106028532,65.83838208100008],[-150.3404542529999,65.8161735760001],[-150.45971120999997,65.9190405540001],[-150.71716244399994,65.86963190100005],[-150.83469460699993,65.94342328400012],[-151.17616679599996,65.90206109000013],[-151.44436703699992,65.89324008600005],[-151.7426686,65.91471859300003],[-152.41981681599995,65.8858523580002],[-152.119096066,65.70491168300015],[-151.88416479699993,65.66937312000016],[-151.38781289399998,65.668810285],[-151.44775081699993,65.59651143700006],[-151.80212915099997,65.54816362700012],[-152.07716379299998,65.4461302250001],[-151.95439096299998,65.34719455800007],[-151.20870135899992,65.31881020500015],[-151.20063937499998,65.22258154700012],[-151.07401109399993,65.15715811200016],[-150.86808554699994,65.15874593100017],[-150.48417622299996,65.25756381500014],[-149.4636832059999,65.26666991100006],[-149.4494652539999,65.4501619130001],[-149.18000754599993,65.48424083600014]]],[[[-156.49312735799998,66.48104993900012],[-156.62728697699993,66.42866546100015],[-156.2426860019999,66.17685235400018],[-156.20411611399993,66.09689950199999],[-155.86494476099992,66.07230575200009],[-155.84132264199997,66.22947632699999],[-156.11244787499996,66.36365074100013],[-156.49312735799998,66.48104993900012]]],[[[-156.75099111599997,66.13568328399998],[-156.86434727699995,66.23784141200014],[-156.81930643599995,66.31808175800012],[-157.2563522179999,66.45367990900019],[-157.35811309699997,66.37068775900008],[-157.84066402899995,66.39151338300013],[-157.79605407999992,66.30933051100004],[-157.45584662499996,66.24275169000003],[-157.21736289599994,66.23585156900009],[-156.8297076709999,66.11796365900017],[-156.75099111599997,66.13568328399998]]],[[[-153.803031524,66.92393756899997],[-153.54043217399993,66.91503380000006],[-153.17969652699995,66.81937713200011],[-153.01507397099994,66.82746116200019],[-152.54435333299995,66.94228112600013],[-152.506135787,66.98821642900003],[-153.129204017,67.0558005960001],[-153.40151138899995,67.0122765100001],[-154.0602435369999,67.04621576700009],[-154.30952003199994,66.91751000700003],[-153.803031524,66.92393756899997]]],[[[-155.24460014099995,66.95834065200017],[-155.49036745499998,67.01656527200004],[-156.61016886799996,67.08187666500015],[-157.2245028399999,67.07949521600005],[-157.4642595249999,67.03360585000007],[-156.96280885699997,66.97220669700005],[-155.56924618599993,66.8778027520001],[-155.24460014099995,66.95834065200017]]],[[[-141.62388531,67.55462187200015],[-141.12174064599992,67.46976922200014],[-141.02393322699993,67.543306991],[-141.07053835199997,67.87193934700014],[-141.02601707499997,68.14083475100011],[-141.1199155259999,68.19046656300009],[-141.53147009199995,68.14422148900002],[-141.77294845499995,68.07031255900006],[-141.76625562099986,68.00919649500008],[-141.970528694,67.9682640600002],[-142.17128853399993,67.71547878500007],[-141.62388531,67.55462187200015]]],[[[-126.30228741899992,-85.38003345999994],[-127.18895416099997,-85.41086177699992],[-125.89569589299992,-85.52298318699997],[-124.598941363,-85.49533630599996],[-126.30228741899992,-85.38003345999994]]],[[[-111.72798152799993,24.404095729000062],[-111.87338256999993,24.523227887000132],[-111.95384967899992,24.492021391000037],[-111.75006063399996,24.351653345999978],[-111.72798152799993,24.404095729000062]]],[[[-115.3590236629999,28.097307949000026],[-115.18312858699989,28.03548353400015],[-115.14983365599983,28.16553932400018],[-115.17263762899995,28.27428965600012],[-115.24759665399995,28.23675029700013],[-115.3590236629999,28.097307949000026]]],[[[-112.22034457899997,29.070575823000127],[-112.29152655099995,29.219968830000084],[-112.47430467899994,29.16355694500004],[-112.50495159899992,29.012094949000186],[-112.48225357299987,28.95828799200018],[-112.53489661899994,28.84934856400008],[-112.35777258699994,28.759339161000128],[-112.27490255499998,28.767629702000136],[-112.19352768599998,29.020568550000064],[-112.22034457899997,29.070575823000127]]],[[[-118.23806759699988,28.957627163000097],[-118.24056959499995,29.040123698000173],[-118.33750965799993,29.030957081000167],[-118.30223056299985,28.87929526000005],[-118.23806759699988,28.957627163000097]]],[[[-113.3777085509999,29.372826749000012],[-113.39940661599991,29.45723871600012],[-113.52745862699999,29.56378360200017],[-113.60391968899984,29.422442922000073],[-113.46565265199985,29.28903319800014],[-113.42446163299996,29.21668983],[-113.30123860399993,29.127744258000064],[-113.19931063799999,29.13554311600018],[-113.20178262899998,29.296800875000088],[-113.31043254599984,29.28697409900019],[-113.3777085509999,29.372826749000012]]],[[[-118.56376188799999,33.021082647000185],[-118.49855434899996,32.85427100700002],[-118.42669840699995,32.80775058200004],[-118.36495305499989,32.83552513800004],[-118.50303910299994,32.94019890400017],[-118.56376188799999,33.021082647000185]]],[[[-118.60196674699995,33.47784113600011],[-118.48822126799996,33.418950227000096],[-118.4575758019999,33.32187749000013],[-118.3109575979999,33.33652295400009],[-118.36622124799993,33.40613205000005],[-118.60196674699995,33.47784113600011]]],[[[-120.03621668199992,33.990338429000076],[-120.14669133799998,34.02507172900016],[-120.22395785099991,33.98850534900015],[-120.12383363899988,33.895199005000165],[-120.0016231969999,33.9419225960001],[-120.03621668199992,33.990338429000076]]],[[[-119.91143973599992,34.07700476400004],[-119.85178517099996,33.96942293800015],[-119.72086696799988,33.959422943000106],[-119.75812152799983,34.059232043000065],[-119.91143973599992,34.07700476400004]]],[[[-114.16607698799993,44.0190836810001],[-114.2056731859999,43.94148514000011],[-113.9340384969999,43.881098558000076],[-113.9390750849999,43.759861611000076],[-113.76744101299994,43.76783457099998],[-113.78074248899998,43.6803408830001],[-113.70733504299994,43.586180567000156],[-113.54944564199997,43.492721506000066],[-113.67267446999995,43.391867535000074],[-113.84131178499996,43.38595066900007],[-113.95056237499995,43.33867460100015],[-114.06113798499996,43.330413367000176],[-114.17738693899992,43.37055398000007],[-114.38179428799998,43.347111050000194],[-114.79283645899989,43.421634864000055],[-114.89303631799993,43.4151969720001],[-115.0519660409999,43.33783532000007],[-115.24230829499999,43.34743367200002],[-115.31451153999996,43.29723910800004],[-115.44832995299993,43.32863820700004],[-115.6498411469999,43.26125589000014],[-115.73579069299996,43.30709358900015],[-115.92562873299994,43.461975720000055],[-116.06099405499992,43.51210015500004],[-116.10224620199995,43.614808600000174],[-116.28043594799993,43.78631365400014],[-116.38018681899996,43.82114122799999],[-116.40422743699986,43.90761627799998],[-116.28345682999998,43.91187245800006],[-116.291549912,44.01079150200013],[-116.23557929999993,44.09462048500012],[-116.26012443499997,44.182799145],[-116.20428889099998,44.33105941400004],[-116.31973209999995,44.38815712400009],[-116.29749305899986,44.52116483700007],[-116.3426537759999,44.606307112000195],[-116.323425139,44.68547095800011],[-116.47300368999987,44.725551864000124],[-116.63445298099987,44.61663819500012],[-116.73490130399995,44.60786617700012],[-116.80010317099999,44.517066736000174],[-116.77246761699985,44.41837664700017],[-116.90348643399989,44.3955897080001],[-116.996835697,44.32172661000004],[-117.06564892699993,44.36064180700015],[-117.38677251199988,44.23763109700019],[-117.57087279899997,44.27478516400009],[-117.57905329999994,44.1902518230001],[-117.44995174799999,44.071471046000056],[-117.76542925699994,44.07214993500003],[-117.83013561999991,43.972581804000185],[-117.820167175,43.85448079100013],[-117.98361600099992,43.89182030899997],[-118.05492720399991,43.81034880100009],[-118.21295357199995,43.816080245000194],[-118.35510897899997,43.91963985400008],[-118.41888913699995,43.86774375600015],[-118.49677539499993,43.926272919999974],[-118.65826940199997,43.94513369800018],[-118.65731568499996,43.87523143300018],[-118.56816850899992,43.7396412600001],[-118.61104837099998,43.65795169500018],[-118.80092863099992,43.655063389000134],[-118.9565358719999,43.62207750700003],[-119.1116142379999,43.63703368200004],[-119.09334342699992,43.53911098700007],[-119.28976821099997,43.537484483000185],[-119.42344672399997,43.63981999100008],[-119.59637425499994,43.62065787900019],[-119.67091790699993,43.686630459000014],[-119.87277055399994,43.64387962700005],[-119.96753041799991,43.83539157500019],[-120.11272676599998,43.84394037400011],[-120.12951575899984,43.753554854000015],[-120.22766920899994,43.69933967600008],[-120.32044351699994,43.760570778000044],[-120.33568966199994,43.87603671200009],[-120.4420693749999,43.905098318],[-120.56528832299995,43.883694315000184],[-120.713533483,43.96085621600008],[-120.76042924799998,43.92329602900014],[-120.92241084099993,43.93999300600012],[-121.09045881399999,43.86926288899997],[-121.00790265799986,43.81968949100008],[-120.79935570399994,43.75606301300019],[-120.80359060499995,43.657386345000134],[-120.76243112199995,43.56885127400011],[-120.83884674799992,43.533039060000135],[-120.97647494199992,43.54608984400011],[-121.16032500199992,43.42718248600005],[-121.19579448599995,43.36849539600007],[-121.18234819299994,43.23611889300014],[-121.26383538199997,43.111590282000066],[-121.21160734999995,43.04615889900015],[-120.98080698499996,43.06642783700016],[-120.78314322099993,42.99211158700007],[-120.81997630799992,42.908422221000194],[-120.79817981999992,42.79227401100013],[-120.67198102999998,42.698938107000174],[-120.52969576899994,42.676658545000066],[-120.47373987699996,42.50166524200006],[-120.42767337099991,42.45463377500005],[-120.30020479099989,42.46143934800011],[-120.17117643999995,42.43182699200014],[-120.09093920599992,42.30419392100009],[-120.15739269099998,42.23337551200012],[-120.15940217699995,42.10107265400012],[-120.07351513899994,42.030890333],[-120.18224397099993,41.88632048700009],[-120.17652477699994,41.79170357600009],[-120.22600469599996,41.69640640100016],[-120.18904888799989,41.58494344400009],[-120.199195466,41.49702473500008],[-120.15829878799997,41.42477204300002],[-120.11425472499997,41.21445342200019],[-120.0586335289999,41.15990449900005],[-120.10756339599999,41.03663299500005],[-120.20020845899995,40.99603181700013],[-120.22138658899996,40.92427810100014],[-120.47164826999989,40.891197249000186],[-120.46716123399989,40.97987136300003],[-120.537862008,41.051822690000165],[-120.60429644999994,40.93132750000012],[-120.7619613729999,40.91054485500018],[-120.75329949399998,40.84161955400015],[-120.56119481099984,40.808760924000126],[-120.50654913299996,40.83154373600013],[-120.32087060299995,40.77923759300012],[-120.21150559299997,40.787427778],[-120.15430852299994,40.72812016600005],[-120.16110492099989,40.652980514000035],[-120.26348413799997,40.67070692600004],[-120.32559707899986,40.59280248600004],[-120.46079101999987,40.57273790600004],[-120.56975830299996,40.335674784000105],[-120.37814293599996,40.16846687000003],[-120.1814727819999,40.08245227600014],[-120.03992357099997,39.902521094],[-120.18145008599998,39.82376805900009],[-120.291897759,39.84376271200006],[-120.43124005799996,39.824130703000094],[-120.38398283499998,39.744566862000056],[-120.43700320099987,39.65746814700003],[-120.25067979899995,39.6691669870001],[-120.10384989199997,39.76708915000012],[-120.05318449499998,39.640054179000174],[-119.94229173899993,39.616789877000144],[-119.96401905699997,39.50111664700012],[-119.83867468099993,39.44894857300011],[-119.81674573299989,39.32815724599999],[-119.84736487999999,39.277236544000175],[-119.8065114129999,39.16798539000018],[-119.84482857799992,39.08922887900013],[-119.84435159099996,38.88996802100013],[-119.74152211099994,38.72799185100007],[-119.607854939,38.71770288000005],[-119.58158734399996,38.558208606],[-119.45245950699996,38.42128611600009],[-119.47535282399991,38.36394615500012],[-119.31856470499997,38.237113433000104],[-119.31508465299999,38.14693090000003],[-119.16781227199994,38.030899817000034],[-119.10605605899991,37.93263312600004],[-119.11991270199997,37.87516868400019],[-118.99099349599999,37.84901291600016],[-118.82671218299998,37.86140044300009],[-118.65036266499999,37.787761597999975],[-118.63198977699994,37.74226102600005],[-118.8635210679999,37.759232637000025],[-118.86201768299992,37.65393532000007],[-118.7462604349999,37.55848263800016],[-118.65334107499996,37.544455163000066],[-118.6163073749999,37.37536882600017],[-118.41442165299998,37.31913319400019],[-118.32059580599997,37.09799945300006],[-118.37532639599993,37.0429080510001],[-118.25816827199998,36.84128445400006],[-118.28305807599997,36.77698029800007],[-118.22750055899996,36.63016821400004],[-118.04884341699994,36.472240548000116],[-117.99269143599997,36.04049711900012],[-117.91174013199998,35.92775728600009],[-117.87737119199994,35.65733671300006],[-117.96282371599989,35.58031396400014],[-118.06511796399997,35.55631290200006],[-118.05136491999997,35.36320288600007],[-118.02275709799994,35.288420513],[-118.117814034,35.186668784000176],[-118.25983908899997,35.10643160300003],[-118.36602567799991,34.97824377500018],[-118.52109078499996,34.962210750000054],[-118.74443934099986,34.81804377000009],[-118.84537577099991,34.827552524000055],[-118.92979209499993,34.91556033500012],[-118.83720030899991,34.9295439280001],[-118.62193077499995,35.06632091800009],[-118.66286517099991,35.231674904000045],[-118.5752681969999,35.227240336000136],[-118.57389133999993,35.381597030000194],[-118.66869005099994,35.43065727600015],[-118.67281116299995,35.51015214000006],[-118.41483582999996,35.60529140000017],[-118.30949835599989,35.72754043300006],[-118.42328559999999,35.884411957000054],[-118.50402973699994,35.88402512900018],[-118.48552597599996,35.7876499190001],[-118.5532495409999,35.67217986500003],[-118.55747631799994,35.60378478800004],[-118.6466699529999,35.55930578200008],[-118.67440446899997,35.67163072799997],[-118.58891252999996,35.7385039780001],[-118.67187593099993,35.82348881500019],[-118.63681868999998,35.906142793000186],[-118.7043142629999,36.07708213000018],[-118.76787430899998,36.11420502500016],[-118.73897543399994,36.249743415000125],[-118.84929940699993,36.270629270000086],[-118.8658025869999,36.33286064600003],[-118.77415145199996,36.35977465000008],[-118.84579416799988,36.434175523000135],[-118.89381604299996,36.55791789300008],[-118.98058759199989,36.6334213560001],[-118.97706267099994,36.68069975200018],[-119.14372446699997,36.796696935000114],[-119.11360293199994,36.91969124700012],[-119.38756055299984,37.01007880100019],[-119.46970014699986,37.097387032000086],[-119.44162758099998,37.178221308],[-119.61961905399988,37.24484241900012],[-119.61765923899992,37.34587647000012],[-119.93175791899995,37.47374425000015],[-119.99864099299998,37.561640644000136],[-120.12932644699998,37.60943710000015],[-120.26832022899998,37.79083160199997],[-120.23752356699987,37.84327691000004],[-120.31103552899992,37.97109695500012],[-120.41761213999985,38.00317628200003],[-120.40711415799996,38.09012632800011],[-120.51619863199988,38.16458256700014],[-120.61104791799988,38.18547183200019],[-120.681023128,38.26690041300003],[-120.7242349149999,38.585024596000096],[-120.80968455699997,38.63497648200007],[-120.77333332299997,38.70357312800019],[-120.8249654299999,38.797605229000055],[-120.9515714829999,38.92823512600012],[-121.02263550599992,38.96218516900012],[-121.00288489499991,39.06897376100005],[-121.1330356599999,39.16420541800005],[-121.19006726999993,39.368713270000114],[-121.25183919299985,39.436951370000145],[-121.35328170299994,39.472479878000115],[-121.31544321299992,39.54123384100012],[-121.41086540899988,39.59905675500016],[-121.48294381899996,39.71257609900016],[-121.60697535999998,39.73978719600018],[-121.632606351,39.84600396800005],[-121.75283362599998,39.894463653000116],[-121.74772523099989,40.07305138000015],[-121.65058365299984,40.13703493800011],[-121.78852312999999,40.230572645000166],[-121.820258578,40.301457584000104],[-121.76863807899997,40.36670815800005],[-121.87900344999991,40.42015170400015],[-121.91496859199992,40.67529985900018],[-122.02029715399988,40.74438488200008],[-122.15166434799988,40.715153575000045],[-122.4357857839999,40.73381505500009],[-122.53347896899993,40.63175772900007],[-122.55225222299998,40.51443884000008],[-122.76077170399992,40.45737479300004],[-122.80343642299994,40.48713184200005],[-122.92492905299997,40.44222322600007],[-122.94173089799983,40.31327476000013],[-122.85555639899991,40.201758426000026],[-122.77144887299988,40.15954868500012],[-122.69745422399996,40.06557540500006],[-122.68778885799992,39.84022424200003],[-122.63999644699993,39.76870731700018],[-122.74984291999994,39.74300483100018],[-122.75321182299996,39.65831438100008],[-122.65782159199995,39.61072489800006],[-122.63501336899992,39.55041889300003],[-122.70221316399994,39.329127689000074],[-122.61605476499989,39.2904697780001],[-122.69145223499999,39.22229467300019],[-122.80730310399997,39.31576767500013],[-122.86017989899995,39.398244953000074],[-122.94401896199997,39.39418183099997],[-122.81285182199997,39.24523911000017],[-122.6591121759999,39.14463244600012],[-122.77971288899994,39.12165245600016],[-122.82255885799998,39.18617010900016],[-122.93592237799999,39.19798606600017],[-123.02826519899992,39.27407503000006],[-123.24507519699995,39.27542798400009],[-123.21534325399995,39.1295534890001],[-123.26884421099993,39.06155700500011],[-123.411503848,39.03752690100015],[-123.27445715099992,38.895439743000054],[-123.2813753399999,38.83618993800019],[-123.2276211269999,38.710761327000114],[-123.08057917699995,38.61594906400012],[-122.95591283499988,38.60567062300015],[-122.8915070299999,38.38699122600002],[-122.98917844999988,38.35629475600007],[-123.00307699799987,38.29592312500006],[-122.90090424099998,38.165068577],[-122.75467660099991,38.032496012000024],[-122.50330414899992,37.88945040200002],[-122.48742235399999,38.10977769300007],[-122.39932234599996,38.14478679400008],[-122.26148595099988,38.05555043400011],[-122.38313141499987,37.97641405500008],[-122.32238594199998,37.90573223400003],[-122.30559501899995,37.79374131800006],[-122.16163134599998,37.66821404500013],[-122.10552222899992,37.499241308000194],[-122.37847682599994,37.60637766100001],[-122.41048594499995,37.80937767500018],[-122.51357686699998,37.78235039300017],[-122.49423139499993,37.66107765600003],[-122.24371493099989,37.388106211000036],[-122.12326244299993,37.34945068600007],[-121.979848426,37.169217397000125],[-121.78347935099993,37.07645161300013],[-121.778162281,37.006486843000175],[-121.86193121899998,36.93105945800005],[-121.78860392099995,36.80420490500012],[-121.81613118399997,36.67709580200005],[-121.96946755999994,36.56915032800015],[-121.90163116699995,36.38776849800007],[-121.89910388599992,36.30769576400013],[-121.71665839399998,36.194968494000136],[-121.57354017199998,36.023550305000185],[-121.50463106799998,36.00157758000017],[-121.462467415,35.886013936000154],[-121.33203101999999,35.78255030000014],[-121.26077645299989,35.66405938400004],[-121.1639037079999,35.63292302300016],[-121.00404002999994,35.460959381000066],[-120.90585819499995,35.44838665900005],[-120.83356726499994,35.34051392600003],[-120.894385447,35.24563209400009],[-120.78434905999995,35.176277549000076],[-120.65111267299994,35.14775028200006],[-120.63028539099992,35.08705027700012],[-120.67114901799994,34.90204116500013],[-120.616558097,34.86701389300009],[-120.63708536399997,34.757341153000084],[-120.60188535299994,34.709632060000104],[-120.64525807599995,34.57705931700008],[-120.5143762319999,34.52466841100011],[-120.47163076599998,34.45010476900012],[-120.29580346599994,34.47037750900006],[-120.00311250999994,34.45871388900014],[-119.8557306639999,34.40886843700008],[-119.72916700699989,34.39615026200016],[-119.60186698699994,34.41994118100018],[-119.459166961,34.37313209300015],[-119.28228510399993,34.27002300200007],[-119.23025781399991,34.15959572000014],[-119.13058506499988,34.10025935600015],[-118.80861227799994,34.00126845400018],[-118.74399408799997,34.03248664300014],[-118.54531223599997,34.03859574600011],[-118.44053948399994,33.938023014000066],[-118.39146673999994,33.84018664100017],[-118.39941218799993,33.73659572100007],[-118.28603943899992,33.70685027000019],[-118.18316669899997,33.763268464000134],[-118.09629395499991,33.73832301200008],[-117.92942118999997,33.60695936800005],[-117.78397570599998,33.540932097000166],[-117.469711997,33.29529572200005],[-117.3286574149999,33.12201389100005],[-117.25158465499999,32.876104775000044],[-117.28077556599999,32.822268404000056],[-117.21609882099995,32.72800991399998],[-117.12893916699988,32.68425930400008],[-117.12186463699993,32.477692732000094],[-117.03376764899997,32.28001308900008],[-116.93410464099992,32.240105172000085],[-116.88289657699983,32.12015225800013],[-116.88180558899995,32.03222592599997],[-116.755699688,31.956520577000163],[-116.74094368199997,31.903624230000162],[-116.60728468099984,31.844519072000082],[-116.61343364499993,31.774746434000065],[-116.67675758199994,31.705822714000135],[-116.64379859799988,31.662381322000044],[-116.68402854799996,31.573200219000057],[-116.64378367799998,31.514749185000085],[-116.50221266299997,31.41210154800001],[-116.35211155199994,31.233069628000067],[-116.30322259299999,31.127614557000072],[-116.33699764,30.980080656000098],[-116.27941865899999,30.96579521100017],[-116.05292555299997,30.785641289000125],[-116.0279766509999,30.62282835200017],[-116.04647064999995,30.483293134000064],[-115.98117864099993,30.38614972500011],[-115.86430356299996,30.369432523],[-115.7940595259999,30.245839013000136],[-115.77803768599995,30.079595195000138],[-115.80056757099999,29.981308663],[-115.73025564099999,29.938471271000026],[-115.68383766699992,29.828763390000177],[-115.69694562199993,29.750324534000015],[-115.51125360999993,29.623593342999982],[-115.24521652899995,29.510553488000028],[-115.19007852599992,29.432411519000027],[-114.96354652799988,29.371823770000105],[-114.80722755399995,29.21044128800014],[-114.74154662499996,29.178555355000185],[-114.70449861299994,29.102438454000094],[-114.6293335609999,29.09441982300018],[-114.59303254399998,28.983121057000062],[-114.52642055399997,28.921272669000018],[-114.40899662799995,28.880836189000092],[-114.33512155099999,28.74722965800015],[-114.18379265899995,28.66137198000007],[-114.044807629,28.467840709000086],[-114.1089476279999,28.24228218500008],[-114.08512860599996,28.151277683000103],[-114.26242061099992,27.941079500000114],[-114.12934163699987,27.881561952000027],[-114.17644457999995,27.82091871500012],[-114.12604553699998,27.710836163000124],[-113.98772468899989,27.75388729400015],[-113.91363553799994,27.711240339000028],[-113.94966866899989,27.65386772000005],[-114.04418954699992,27.660673323000083],[-114.07573668399993,27.61498222700004],[-114.23534354299983,27.69936586400013],[-114.31478168999996,27.78112512700011],[-114.33456465699999,27.86819164300016],[-114.47069564999998,27.780909209000185],[-114.61159560999988,27.773898585000097],[-114.85886359799991,27.82877641400006],[-115.04837759099985,27.815562847000024],[-115.00572962899997,27.718621778000113],[-114.87585455399994,27.696571840000047],[-114.73310068399996,27.522566213],[-114.64451553499998,27.498752220000085],[-114.49358360999997,27.39024177800013],[-114.483573606,27.22551290500013],[-114.31316364699995,27.144416483000157],[-114.23218557699994,27.147904359999984],[-114.09880066399995,27.093411931000105],[-114.0157086779999,26.981884842000056],[-113.84121656499997,26.965219272000127],[-113.77494068899989,26.909881947000144],[-113.73049966999997,26.798070711000094],[-113.62121557899997,26.7197582550001],[-113.54334266899991,26.725146142000142],[-113.50583666999995,26.786533189000124],[-113.36174052199993,26.794699845000082],[-113.13957264599998,26.852402543000096],[-113.077621664,26.729131905000145],[-113.00132756999994,26.66316180000007],[-112.99898566599995,26.58029143200008],[-112.88804665099997,26.51980812200003],[-112.79239656299995,26.406030492000184],[-112.48303962799997,26.231062286000167],[-112.39904759299998,26.238007866000032],[-112.32629367899995,26.151784905000056],[-112.30153655499993,26.064138863000153],[-112.18812554899995,25.986225553000168],[-112.12666356799991,25.815990440000178],[-112.06462055299994,25.72486741800003],[-112.02937364399986,25.432252160000132],[-112.04438764399998,25.291675909000105],[-112.11064960599998,25.022536854000123],[-112.056823539,24.94806431500018],[-112.02628357199995,24.817887491000022],[-111.83029958799995,24.646505902000058],[-111.62775458499988,24.562253022000107],[-111.52387967099997,24.46217879800008],[-111.444877551,24.322912639000094],[-111.2334975199999,24.221803920000127],[-111.04530367699988,24.109621366000113],[-110.90569268599995,23.9794628140001],[-110.7581555989999,23.87982797000018],[-110.63028765499996,23.7391600200001],[-110.42846668099997,23.645080869000083],[-110.32544655299995,23.577712998000152],[-110.2325816039999,23.403812144000028],[-110.14614054499998,23.294480443000054],[-110.10028868499995,23.0316579900001],[-110.06031756799996,22.95296616800016],[-109.96658358299993,22.87166858000012],[-109.89345566799994,22.867628838000144],[-109.7068785269999,22.98826035100018],[-109.63585664899989,23.080460615000106],[-109.52126362799999,23.120655529000146],[-109.43189259099995,23.226708229000167],[-109.40752455399996,23.471236509000164],[-109.47318268399982,23.57665302300012],[-109.67755158899996,23.665345628000182],[-109.7269595549999,23.61122736700014],[-109.67065462299996,23.39710628600011],[-109.76213857,23.270012997000094],[-109.77526865399994,23.196114618000024],[-109.73339065399989,23.007462453000187],[-109.9053266219999,22.98299668300001],[-110.0054325299999,23.029575254000065],[-110.06666568599991,23.154581953000047],[-110.01927960199987,23.21548268200013],[-110.02013354999991,23.34621287900012],[-110.12619764999994,23.481946066000148],[-110.17714654599985,23.622100875000115],[-110.14390559399999,23.696918246000166],[-110.21498865899997,23.742400632],[-110.24001366999994,23.84614965000003],[-110.20295761099999,23.878037092000113],[-110.22850062299995,24.02404263700015],[-110.21333356899999,24.114771039000175],[-110.27239262599988,24.20246670100005],[-110.17926766999994,24.23415130100011],[-110.24119568599997,24.349952491000067],[-110.33187865799988,24.316354135000097],[-110.30867754999991,24.218587951000075],[-110.33084852199988,24.141250645000127],[-110.53791053199996,24.20146674000017],[-110.60734554699985,24.254540281000118],[-110.6764295289999,24.36081795200016],[-110.68489860399995,24.46708673800009],[-110.72849254699997,24.518500326000037],[-110.7246165869999,24.67680262600004],[-110.66068261499998,24.76650307200009],[-110.68566152499994,24.885185456000045],[-110.78494265299992,25.03357934100012],[-110.90909557099997,25.152897409000104],[-110.9342726289999,25.285576231000107],[-111.02458964699991,25.45335326600008],[-111.01683068699998,25.512206632000073],[-111.11653862199995,25.525559004000172],[-111.17946659799992,25.597510434000185],[-111.21968866999993,25.724297449],[-111.30448955799994,25.782431815000052],[-111.35528556699995,25.961567670000193],[-111.31282753999989,26.06865285300006],[-111.39075459599997,26.26009099600003],[-111.379875557,26.326960814000074],[-111.4617305409999,26.412514900000076],[-111.45139364299996,26.489745588000062],[-111.56264463199989,26.56204822000018],[-111.5574726619999,26.69339448700015],[-111.81452953999991,26.897396264000122],[-111.81578062299997,26.720011388000046],[-111.67675753799995,26.594093745000123],[-111.73802958599998,26.542140194000183],[-111.86180866999985,26.698982199000113],[-111.87206258799995,26.83290120700002],[-112.00908658799995,26.95651667700014],[-111.95133963399991,27.070477871000037],[-112.110679614,27.13621294700016],[-112.19731865299997,27.235640591000163],[-112.3144455239999,27.429198181000118],[-112.32971165199996,27.517193580000026],[-112.40370156099993,27.583680680000157],[-112.58863853199989,27.646883918000015],[-112.70690953299999,27.763124152000046],[-112.76922563,27.863058901000045],[-112.75630961999997,27.960812679000128],[-112.8029255749999,28.022878996000145],[-112.79044357999993,28.188653260000024],[-112.86440264399994,28.275786664000123],[-112.84159866999988,28.440305821000038],[-112.98014867999996,28.451484430000107],[-113.10795560399998,28.524929348000057],[-113.12612153599997,28.638568845000066],[-113.19115454299998,28.79642757400012],[-113.24688766099996,28.840931792000163],[-113.32293666899989,28.80100526700005],[-113.41898355599994,28.951588504000085],[-113.52981561799999,28.908294969000053],[-113.55922654299991,29.02007468800008],[-113.53181453399998,29.05508824500015],[-113.65168765199996,29.20973704100004],[-113.63435354099994,29.270991822000042],[-113.77252167199993,29.411353496000174],[-113.821281549,29.4317064330001],[-114.20420862899988,29.742687614000033],[-114.38679464299997,29.79009482000015],[-114.40467055999989,29.889943236000136],[-114.5265045409999,29.970294172000024],[-114.66426866299997,30.19876875900019],[-114.63649757399997,30.257843407000053],[-114.627372531,30.47382963000007],[-114.69412265499994,30.620236332000104],[-114.69160456399999,30.809058483],[-114.71726257499995,30.934897001000024],[-114.83280157899992,31.01195753700017],[-114.8879315349999,31.162602130000096],[-114.878768606,31.34722695900018],[-114.8412245529999,31.579612039000153],[-114.77594763199988,31.643832840000073],[-114.8187786549999,31.719052375000047],[-114.81055466699996,31.82105695200005],[-114.68266258199998,31.757842146000087],[-114.59783956599989,31.75741517200015],[-114.48590863699991,31.6694549770001],[-114.16997559499998,31.495769706000146],[-114.02593258899992,31.489475902000038],[-113.8944545579999,31.59995525400018],[-113.686859627,31.51706996600018],[-113.62993661399997,31.458217103000095],[-113.61099267399993,31.331774250000137],[-113.54463163799988,31.296401445000186],[-113.25623365099989,31.240661621000015],[-113.12360361199995,31.22847785400012],[-113.03459165599992,31.16150108300002],[-113.06564358999992,31.0007557940001],[-113.12696056399994,30.809930536000138],[-113.07532468799991,30.659483924000142],[-112.98670953099986,30.53139855200004],[-112.85089855899997,30.380302007000182],[-112.84724455299994,30.291217296000184],[-112.75522667799999,30.184253147000163],[-112.74613952199996,29.91602118100019],[-112.65207663099994,29.834651340999983],[-112.47731763699994,29.586206702000027],[-112.38859552799994,29.49758014600002],[-112.41770168599999,29.373013833000073],[-112.30532852799996,29.36632708600007],[-112.23078155699989,29.303649393000057],[-112.14615652199996,28.993914601000142],[-112.02903752999993,28.860484090000057],[-111.90317554199987,28.784009114000014],[-111.91815953499992,28.716705784000055],[-111.76261856899993,28.591348722000077],[-111.68669864299994,28.44866358500019],[-111.46260862899999,28.36672109300008],[-111.45558962299992,28.315102987000046],[-111.32796458599984,28.186785436000036],[-111.27858763299997,28.09174437700017],[-111.17005154199995,27.99286222700016],[-111.05581659499984,27.936736836000136],[-110.98241459199988,27.957560836000084],[-110.94771552499992,27.870087630000114],[-110.87392460199993,27.85337830600008],[-110.80247457699994,27.920353400000124],[-110.5762785259999,27.883531867000045],[-110.44666261899994,27.830664018999983],[-110.41091162299995,27.73430113400019],[-110.27651953999987,27.618063080000127],[-110.16415358999996,27.57149322600003],[-109.96310458999994,27.61391839600003],[-109.97501359799998,27.74766758700008],[-109.94062063699988,27.939153674000124],[-109.977531522,27.984029713000155],[-110.08257252599998,27.99096037400011],[-110.18730155699996,28.258775256000035],[-110.14126562999996,28.29001712400003],[-110.07214359499994,28.47226953900008],[-110.18462353899997,28.45217442900008],[-110.342834644,28.50306230400014],[-110.35902361899991,28.45951814900019],[-110.56623063599989,28.525364537000087],[-110.63738259999991,28.734712124000055],[-110.57694958099995,28.90972508900012],[-110.64041852599985,28.991583761000015],[-110.61528052799986,29.084136066000042],[-110.51305366299994,29.05144748099997],[-110.50962060299992,28.967092846000014],[-110.35773464999994,28.932719164000048],[-110.32176957999991,29.112034057000074],[-110.20999857699985,29.171649840000043],[-110.25387566099994,29.27761352500005],[-110.33365662699998,29.342168932000106],[-110.3015445499999,29.453069893000077],[-110.41136156399989,29.69061168800016],[-110.53121959399994,29.732238231000053],[-110.55200168499994,29.838166209000065],[-110.59581758099995,29.874484660000064],[-110.6756436419999,30.04090533600015],[-110.64649959699994,30.100079393000158],[-110.55442053399997,30.141062709000096],[-110.505241561,30.241572121000047],[-110.54280053399998,30.34668806100018],[-110.50393666699995,30.42280529700008],[-110.55176564999994,30.51640299200011],[-110.63910658999998,30.535867448000147],[-110.62765456399995,30.602511960000186],[-110.6852035369999,30.743682991000185],[-110.60614056499998,30.808760758000176],[-110.60084554899998,30.906128298000056],[-110.5418625989999,30.982172444000128],[-110.42855066799996,30.94016905100011],[-110.3965986849999,30.83474164000006],[-110.33320651899999,30.759574409000038],[-110.35334756199995,30.66028087500007],[-110.25938458299999,30.647725287000014],[-110.21864367199998,30.510577402000024],[-110.31116462799997,30.4653548550001],[-110.26468663999992,30.363176605000035],[-110.29409052399984,30.257644421000123],[-110.15586858199993,30.26209621700002],[-110.08395352899998,30.07927618000008],[-109.8641285619999,29.936198434000175],[-109.81359054799998,29.862728035000146],[-109.73171259699996,29.885868290000133],[-109.64981067399998,29.63633065100015],[-109.64223460699992,29.446811964000176],[-109.66554266799994,29.384503243000154],[-109.51744852099989,29.38396529200014],[-109.39385953699997,29.633091716000138],[-109.50654567599992,29.72256333500019],[-109.42755864399999,29.804218495000157],[-109.42869556499988,29.855722273000083],[-109.57176157699996,29.859579121000024],[-109.62469463599996,30.02116327200008],[-109.67197460499995,30.082737905999977],[-109.69014757699989,30.25908845500004],[-109.87157454199996,30.532428353000057],[-109.80825060499996,30.622984088000123],[-109.91280361499992,30.812194488000046],[-110.03614063799989,30.724827732000165],[-110.02248366799995,30.670967466000093],[-110.18262462299987,30.623678110000128],[-110.28378262699988,30.744870707000075],[-110.29297656899996,30.849224228000026],[-110.25382251999997,30.913786005000134],[-110.12056752599989,30.914954945000034],[-110.12124662799994,31.001779895000027],[-110.04608157599995,31.08304898400013],[-109.92314956599995,31.147967661999985],[-109.83860767899995,31.084609024000088],[-109.8074645499999,30.846145219000107],[-109.74210364199996,30.767340913000112],[-109.73977665799998,30.679518348999977],[-109.68298356499997,30.60371275100016],[-109.45347565599997,30.585385552000105],[-109.4181286679999,30.5076792750001],[-109.5205005389999,30.380290943000148],[-109.48850262399998,30.289391382000076],[-109.4039835349999,30.219428810000124],[-109.40361054099992,30.138546797000117],[-109.50376154299994,30.07981815400018],[-109.50462353799986,30.022378312000058],[-109.3777086159999,30.001451885000108],[-109.34545857299997,29.88843214700006],[-109.22734867199995,29.988693288000036],[-109.16535963699994,30.169705851000174],[-109.25012163199995,30.261789272000158],[-109.31333157599988,30.481220457000063],[-109.30802951899994,30.582217696000043],[-109.23858662499993,30.63313692000014],[-109.23788455699986,30.73547425800018],[-109.11556962299983,30.720173764000037],[-109.08494566899998,30.614422644000115],[-109.01192453999982,30.555725518000088],[-108.96649965399996,30.252508661000093],[-108.85354663599992,30.29303432500012],[-108.85211165399994,30.418806458000063],[-108.8027955529999,30.55926251300008],[-108.8857725389999,30.599177973999986],[-108.90389253699993,30.697619404000136],[-108.95153762199999,30.750281728],[-108.96072368499995,30.855624984000144],[-108.85905455199992,30.87737501700019],[-108.83277158599998,30.663029804000075],[-108.74835157099994,30.657110839000154],[-108.68894164699998,30.759894430000088],[-108.60224158799991,30.748687825000047],[-108.50167065199997,30.645654286000024],[-108.49926755999991,30.57962081500017],[-108.37379465999999,30.617790325000158],[-108.32032767399994,30.53407640300003],[-108.24359855799997,30.49781478100016],[-108.12993659799992,30.275889812000116],[-108.07630163799985,30.05418394700007],[-108.03638466799998,30.05469909900006],[-107.97295361,30.176944463000098],[-107.83988167699988,30.124303261000193],[-107.67305766399988,29.919022908000102],[-107.59603166199992,29.874838544000056],[-107.49800865699996,29.706119215000058],[-107.427390619,29.715436873999977],[-107.39556855599994,29.851333508000153],[-107.26581552099998,29.88552714700006],[-107.18423462499999,29.82613851300016],[-107.1197276659999,29.598780227000077],[-107.12690760399988,29.527828758000112],[-107.07604956899996,29.452377715000182],[-107.06558962399993,29.33382541800006],[-107.13160666699991,29.226443683000184],[-107.09110262899998,29.022281476000046],[-107.00061763699995,29.052986231000148],[-106.99369066399993,29.145063617],[-106.91519162699996,29.145771553000145],[-106.70923653099993,28.997789387000125],[-106.85371355199993,28.90125735500004],[-106.92172263799989,28.69913748300013],[-107.11276968099992,28.86456088],[-107.17472854099992,28.787205972000038],[-107.13944257299988,28.692992542000127],[-107.00359354799997,28.58719180100013],[-106.99454461299996,28.44058393300014],[-106.93881954099999,28.342996954000114],[-106.99819962499998,28.248796936000076],[-107.09739659999991,28.365030128000058],[-107.12156665599991,28.432461366000155],[-107.24325562899986,28.5316092220001],[-107.39541667599997,28.594882532999975],[-107.52571067899993,28.68580807700016],[-107.65087160399997,28.735778134000157],[-107.56670354999983,28.566122714000073],[-107.44240562499994,28.552466246999984],[-107.45434564599992,28.440267935000122],[-107.5187525259999,28.415741983000146],[-107.51850157199993,28.30118768600005],[-107.42412553299994,28.312400158000173],[-107.45251453599997,28.399656441000047],[-107.36824757499988,28.442266851000113],[-107.27464267099998,28.423771511000155],[-107.23969264999994,28.326590720000127],[-107.10207353399989,28.16268126200015],[-107.05324559499991,28.071720178000078],[-106.951721637,28.0551766480001],[-106.8884426269999,28.132855433000145],[-106.901710676,28.20553038900016],[-106.83731066999997,28.32117165200009],[-106.80456559199996,28.43824588500013],[-106.75349465599999,28.422545574000026],[-106.64083064499994,28.475618444000133],[-106.70994563999989,28.611877847000017],[-106.76339753899993,28.60712128500012],[-106.87015566099996,28.729984228000035],[-106.71984852299994,28.795462482000175],[-106.72883559999991,28.865812633000132],[-106.64676654099998,28.940451805000123],[-106.67894751799997,29.07327764500019],[-106.73837252899995,29.150741351000136],[-106.67251557999998,29.21355801500016],[-106.839515614,29.276885641000035],[-106.79668459099997,29.357612421000113],[-106.85153157499997,29.424164732000065],[-106.95935855699986,29.431818416000056],[-107.02201060099992,29.529430707000074],[-107.04036763899995,29.654943170000138],[-106.93240352899988,29.77703028300016],[-106.86454062399997,29.662230731000136],[-106.73140766999995,29.626756003000025],[-106.56991555299993,29.496433165999974],[-106.51313067399991,29.510753648000048],[-106.467437567,29.374577728000077],[-106.394302612,29.258108166000056],[-106.38850367599997,29.12603854100007],[-106.33458658099994,29.075993382000092],[-106.37434362399989,28.934184153000047],[-106.3653416279999,28.77470235200002],[-106.25509663399993,28.703988258000095],[-106.2684786779999,28.55944200200014],[-106.32293657399993,28.456309221000083],[-106.47284657699998,28.409314237000103],[-106.42143265299995,28.306461412000147],[-106.33864560099994,28.305170431000136],[-106.27905261599994,28.08938520700019],[-106.32469157599985,27.96113286800005],[-106.47055865199991,28.031976714000052],[-106.56890067299992,27.92636305700006],[-106.65191654999995,27.954724065000107],[-106.71714066499987,28.07149319600012],[-106.80588557399989,27.975088234000054],[-106.77397952399991,27.856790076000152],[-106.64815558999999,27.80780623400011],[-106.61649362199995,27.712616144000094],[-106.53536953899993,27.709680131000084],[-106.52672561799989,27.9130066620001],[-106.45610053999997,27.924965291000035],[-106.41724354599995,27.81423297400005],[-106.2938615949999,27.726964454000097],[-106.52529868299996,27.478890294000166],[-106.41208666299991,27.500928330000193],[-106.48072053699997,27.308385620000024],[-106.43736262799996,27.256399883000086],[-106.4271846499999,27.151713265000126],[-106.48318464799985,27.077639369000167],[-106.46666760499994,26.992737060000024],[-106.38742056599989,26.922794436000117],[-106.32806361599995,27.01303434100015],[-106.23941057299999,26.990925395000147],[-106.05912756999999,27.05127275100017],[-106.13108067699994,27.14338668200014],[-106.02716854699997,27.152259262000086],[-105.93740054299991,27.072245614000053],[-105.73445153299991,27.11887967400014],[-105.82229655999993,26.871578661000115],[-105.63862659799992,26.718385299000033],[-105.6352235459999,26.657142923000038],[-105.47879057799992,26.679530148000083],[-105.38867958599991,26.535045584000102],[-105.3216015619999,26.354797785000187],[-105.19446552499994,26.32868882700012],[-105.21657564499998,26.27736324900019],[-105.14338654299996,26.220589768000025],[-105.03684953599986,26.020805765000148],[-104.96661354599996,26.04278294700009],[-104.86080157299989,25.95739482300013],[-104.8135226099999,25.868567772000176],[-104.87014756299993,25.771526288000018],[-104.94331353099989,25.764168821000112],[-105.08588366899994,25.949352220000037],[-105.164108619,25.976835810000125],[-105.23525957699991,25.905956089000085],[-105.15847765599989,25.821651075000034],[-105.23965454499995,25.784751925000023],[-105.28443854999989,25.711865242000158],[-105.2721635879999,25.506260677000057],[-105.3947445639999,25.516385346000163],[-105.34802266199983,25.405752438000093],[-105.2342225679999,25.40081667100003],[-105.11173261999994,25.438959862000047],[-105.07567551699998,25.389432202000137],[-104.86225164199988,25.30224331000005],[-104.74340061399994,25.288250226000116],[-104.75657662999987,25.224462098000174],[-104.67662852899991,25.10900171700007],[-104.7247086349999,24.997195008000176],[-104.7038115439999,24.857814519000158],[-104.64053353899999,24.82675118600008],[-104.67726857099984,24.745723160000125],[-104.76214556699995,24.758503383000175],[-104.79190065299997,24.886875416000066],[-104.97298462999987,25.025122671000133],[-105.07717856,25.04435561800011],[-105.17112762499994,25.141665994000107],[-105.27612252899996,25.116291291000152],[-105.27387953199985,24.996567036000044],[-105.16650366399989,24.946839383000054],[-105.12870060999995,24.797102718000076],[-105.00179256099995,24.813975824000124],[-104.85973355099998,24.621534033000046],[-104.787055577,24.570724612000106],[-104.77918966399994,24.29548705100018],[-104.717185541,24.240324741],[-104.73231454099988,24.126010501000167],[-104.70291166299995,24.087561538000102],[-104.76561751899999,23.997951952000108],[-104.62935660699998,23.95408827900019],[-104.58206155,23.865919710000128],[-104.50617263699996,23.889405300000192],[-104.42403467999992,23.808267303000093],[-104.41494752299997,23.996788041000173],[-104.36647765899994,23.980984633000162],[-104.3703616659999,23.802247924000028],[-104.46214266699997,23.724962753000057],[-104.48252058299994,23.481861912000113],[-104.36988859099984,23.43067564100005],[-104.31229351699983,23.592153341000085],[-104.18967465499998,23.674258106000025],[-104.1147996169999,23.670993355000178],[-103.99218762899989,23.570953496000072],[-103.99287460899995,23.47874417900016],[-103.90342763199993,23.347169757000017],[-103.82522564899995,23.370926585000177],[-103.93119067499998,23.51515919000019],[-103.82565262299994,23.52299979000003],[-103.69963858799997,23.426839747000088],[-103.53775755099997,23.429582808000134],[-103.56137859199993,23.565727715000094],[-103.42752060399988,23.62241670500009],[-103.31851965299995,23.480420225000103],[-103.1692805369999,23.453739453000026],[-103.07443963799989,23.404337857000087],[-103.10905455099993,23.354658652000182],[-103.20821363899995,23.416071516000045],[-103.33278665799992,23.34790082700016],[-103.36168662199998,23.211135994000188],[-103.42571262699994,23.160566464000055],[-103.28413356599992,23.07920953200005],[-103.27687064599985,22.962328586000126],[-103.45188159999998,22.87133632200016],[-103.42790265099995,23.022445775],[-103.48265056099996,23.025188501000116],[-103.5090485259999,22.92207483100009],[-103.59622953999997,22.81789330700002],[-103.65138262999989,22.687758224999982],[-103.77076758599998,22.62870922600007],[-103.85126453399994,22.696910760000094],[-103.96419559199984,22.580175659000076],[-103.90975965699994,22.551986146000104],[-103.86991862699995,22.456410153000036],[-103.70313266799997,22.476154229000088],[-103.59935766599989,22.55186611700003],[-103.61863654599995,22.611869982000144],[-103.55030056599986,22.701993211000058],[-103.44338251799996,22.777234371000134],[-103.33290853099999,22.78428589800012],[-103.256050669,22.871876451000162],[-103.20146151299991,22.78484296000005],[-103.05100266299996,22.845067940000035],[-103.00926162399998,22.78547612900013],[-103.04935461299993,22.66288341900014],[-103.18473056399989,22.62474240600011],[-103.24359164099997,22.439499329000057],[-103.2443696489999,22.368478792000076],[-103.35457658899992,22.334283812000137],[-103.38982366499994,22.44164107200004],[-103.51598354499998,22.389048821000188],[-103.50640051599993,22.272439113000132],[-103.55659453699997,22.155397235000066],[-103.40745566899989,22.111528700000065],[-103.35540757099994,22.031214813000133],[-103.44445757999989,21.998947838000106],[-103.5898815889999,22.079901265000046],[-103.66094956699999,22.041033374000108],[-103.60830652099992,21.960716637000075],[-103.63597853599998,21.881285867000145],[-103.74064654599988,21.87217339700004],[-103.72639462899991,21.701779699000042],[-103.5683136109999,21.788891142000182],[-103.52294153099996,21.739176565000037],[-103.53675859499998,21.565278226000032],[-103.63270557099997,21.500340772000186],[-103.59667160099997,21.422278934000133],[-103.678123584,21.351337020000187],[-103.61725654999998,21.20219597300013],[-103.64651458799989,21.143235487000084],[-103.51557953799994,21.112953012000162],[-103.55338259199993,21.250768430999983],[-103.42704065599997,21.322835532000056],[-103.3338695999999,21.34883301100001],[-103.42668962199997,21.422523015000024],[-103.25471459399995,21.611900551000133],[-103.19660151799997,21.711005156000112],[-103.23889157299999,21.79305476900015],[-103.23363461099996,21.972275281000066],[-103.19832651399997,22.050568963000103],[-103.21739953499997,22.118499426000028],[-103.11083251999997,22.127965613000185],[-103.12344359699995,22.060525490000146],[-103.00399762099988,21.947169637000115],[-103.0268245609999,21.838336492000167],[-103.08673857199994,21.791067921999968],[-103.118102648,21.694816013000093],[-103.06185152799992,21.64142295500011],[-103.14446255999997,21.521631477000085],[-103.1265185819999,21.462466640000116],[-103.04058060499995,21.402671148000138],[-102.89182260999996,21.560132408000015],[-102.88227059299993,21.646906564000062],[-102.79373154399997,21.763042526],[-102.571647655,21.842609251000113],[-102.48955563099992,21.81518047800006],[-102.55094167199996,21.724674364000123],[-102.6011506129999,21.71235212800019],[-102.63543662099994,21.53821071400006],[-102.76488455399993,21.426877749000084],[-102.69148255099998,21.277350799000146],[-102.62060551299999,21.345039194000094],[-102.49047059899988,21.276467849000085],[-102.41243759499991,21.31507674000011],[-102.33988166199998,21.29924282100012],[-102.2094346049999,21.18416113500001],[-102.06108866499994,21.1654440100001],[-101.77391862699994,21.162026372000128],[-101.63191963199989,21.107633353000097],[-101.45664263699996,21.10390659100011],[-101.40044365299991,21.223485001000142],[-101.28583554399995,21.243117933000065],[-101.168067625,21.31852069600012],[-101.04956863599995,21.13314904000015],[-100.96541566899992,21.128487193000183],[-101.06521563799993,20.907102354000074],[-100.86864458499991,20.866296567000177],[-100.79127458999994,20.81115973800007],[-100.74114259399994,20.89280333],[-100.66789951299995,20.883568820000107],[-100.53664360299996,20.739590857000053],[-100.38545954999995,20.657098345000065],[-100.36844663399995,20.51977209400019],[-100.39337961099994,20.389860473000056],[-100.21764362299996,20.42869936300019],[-100.08253455199997,20.367697883000062],[-99.96777355699993,20.244728825000152],[-99.82595862799991,20.212086677000116],[-99.71159359399996,20.25680698000008],[-99.67739861399997,20.31310269200003],[-99.59782451299992,20.321666315000073],[-99.54334264599987,20.421445831000085],[-99.46956664199996,20.37622915200012],[-99.45561261799998,20.307837180000092],[-99.48143759699997,20.19274660900004],[-99.45785561499991,19.954975317000105],[-99.27362054499997,19.782517324000082],[-99.28189063299999,19.68484485000016],[-99.23233061899998,19.605074613000056],[-99.26679951999995,19.47186722800012],[-99.18422654199992,19.39426170100012],[-99.19901255399998,19.319395045000135],[-99.09145362499999,19.214284303000056],[-98.91141554199999,19.16397829900012],[-98.85845951599993,19.203686727000047],[-98.84835865199994,19.44758250800004],[-98.78556059499988,19.56449094600009],[-98.63124053699994,19.70806356000014],[-98.52054560399995,19.64981084200008],[-98.45604652299988,19.686828847000072],[-98.3612896109999,19.602568591000022],[-98.22791257599994,19.61188407100019],[-98.41004965599996,19.72194684200008],[-98.52520761799997,19.732024069000147],[-98.54990355499996,19.841394829000023],[-98.52935062499995,19.96079990200019],[-98.62467951899998,20.069819796000047],[-98.77894559699996,20.128593197999976],[-98.84177366099993,20.189937832999988],[-98.8737796229999,20.28646634500012],[-98.95983863499987,20.403696648000107],[-99.0103525099999,20.39995899000013],[-99.10584267099989,20.46507615200005],[-99.11375451699996,20.562489625000126],[-99.17404152299991,20.595763937000072],[-99.28301967599987,20.57841792300019],[-99.30880760699989,20.75447292600012],[-99.450652543,20.749173384000187],[-99.44510657299992,20.85310931900011],[-99.39286753499988,20.877636947000042],[-99.50680559399996,21.046486866000123],[-99.61775164999989,21.03310934900003],[-99.75319666799999,21.093453017000115],[-99.797874558,21.153725606000023],[-99.91515364499998,21.124863361],[-100.03418756699989,21.158394494000163],[-100.11507460899998,21.152148970000155],[-100.15534965299992,21.243102678000184],[-100.21535452499984,21.263830622000114],[-100.27279654599988,21.354529855000123],[-100.18749257599995,21.394757626000114],[-100.1792446149999,21.488798221000025],[-100.03372153299995,21.383518164000122],[-99.92586554899998,21.455335316000173],[-99.85089864599996,21.467549426000062],[-99.66143058599994,21.562776228000132],[-99.6715165299999,21.605401055000016],[-99.58988953299996,21.69569996900003],[-99.58756254899998,21.823226100000113],[-99.61878161799996,21.956393083000137],[-99.53948261199997,22.04780612000002],[-99.58045955699998,22.152727599000116],[-99.57978866899998,22.257169799999986],[-99.6281586209999,22.289830054000163],[-99.58501461799989,22.415317370000025],[-99.57611052299995,22.518883998000035],[-99.64923055799989,22.64309257200017],[-99.66873960499998,22.94110896000018],[-99.62481658899998,22.967406511000092],[-99.67562852399988,23.18987596800008],[-99.72178665899992,23.28363224900005],[-99.69452652999996,23.39498952000008],[-99.75324259999996,23.42328900500013],[-99.83331257499998,23.32619404400009],[-99.8441086329999,23.47324732700008],[-99.80903657099998,23.52787252500002],[-99.84499359499995,23.633265235000124],[-99.90525059399994,23.640117944000053],[-99.92774158699996,23.76863230099997],[-100.00588254999997,23.916440961000035],[-99.982673563,23.985258565000095],[-100.02116359799999,24.081792776999976],[-99.95621457699991,24.11680013100016],[-99.84126264199989,24.06621568000014],[-99.77226264699993,24.14343061000011],[-99.82405861799992,24.19733412700009],[-99.91591656599996,24.143190553000068],[-99.98808257299999,24.17514505000014],[-100.01329064399988,24.32686856200013],[-100.14753755199996,24.436795210000184],[-100.15615867499997,24.578504192000025],[-100.21829254999994,24.654493520000187],[-100.25649256999992,24.775481599000045],[-100.39925364799996,24.953397217000145],[-100.54016852799992,25.060851874000093],[-100.60107462199989,25.13317244400008],[-100.74405664699992,25.146137739000153],[-100.78829163799992,25.12084015000005],[-100.90061165499998,25.14491180200008],[-100.92318764099997,25.075417275000063],[-100.79225158399993,24.977805822000107],[-100.84450554199998,24.896849880000048],[-100.99290462299996,24.98268274800006],[-100.94045251699993,25.045782721000137],[-101.10697964399998,25.11985410300008],[-101.06796255499995,25.16082417500013],[-101.07851453299992,25.27845060700008],[-101.03118863099996,25.360525533000157],[-100.80200962799995,25.425650741000084],[-100.80702954999998,25.526937827000097],[-100.77484153299997,25.6113870100001],[-100.60660567199994,25.695285838000075],[-100.53889464699995,25.604935124000065],[-100.3976746649999,25.522264916000097],[-100.42816165899995,25.635121710000135],[-100.22650161799993,25.656993784000065],[-100.05813566999984,25.40800432000009],[-100.12004859799998,25.33688487800015],[-99.9457095379999,25.128070715000092],[-99.8875575699999,25.02540463800011],[-99.74260764199994,24.842808398000102],[-99.68959059499991,24.62887490300011],[-99.64880358399995,24.54484481500009],[-99.56477366299998,24.47258543400011],[-99.55649552799997,24.421790933000125],[-99.62078858099994,24.25652193000019],[-99.6288296759999,24.17408809200009],[-99.41500061999994,24.115980045000185],[-99.39775854299995,24.01470804700017],[-99.31603951299996,23.96895324900015],[-99.13035554699997,23.959838767000065],[-99.05163556199994,24.055644089000054],[-99.04978953199992,24.115431198000124],[-98.94832659399992,24.157754948000104],[-98.9594495469999,24.25291737700013],[-98.88788552799997,24.300976024000192],[-98.89749152399997,24.391139486000043],[-98.77168250999995,24.41663623000005],[-98.77919755699997,24.28989229900003],[-98.58877563699997,24.337181152000028],[-98.59854155999994,24.40784562500005],[-98.48210166899992,24.40144403100004],[-98.30131558499988,24.21055523800004],[-98.31630661799989,24.117885084000136],[-98.39522558999988,24.013822247000064],[-98.53742256599998,24.03205540099998],[-98.71684256799989,23.975555171000167],[-98.65137453899996,23.836008218000075],[-98.55133065799993,23.913410065000107],[-98.36683658699997,23.83160235400004],[-98.25122851599997,23.910584190000122],[-98.17523952299996,24.009452426000053],[-98.08735660899993,23.9255326440001],[-97.9230495139999,23.89955293500003],[-97.8056795679999,23.921672610000087],[-97.76688359399998,23.998406922000072],[-97.77746557899997,24.106172380000032],[-97.74846806099993,24.311614899],[-97.74737913699994,24.438111963000154],[-97.826413157,24.411446534000163],[-97.8606725219999,24.516982144000167],[-97.77364553799993,24.54482863800007],[-97.70998587499997,24.65401547600004],[-97.73602091299989,24.84636805300005],[-97.66457640899995,24.92819886400008],[-97.75220653199995,24.97627747100006],[-97.69073749199993,25.18425945900009],[-97.72607154599996,25.246720239000183],[-97.70022609699987,25.401643040000067],[-97.58203055399997,25.31052655900004],[-97.51621698699995,25.41139075700005],[-97.4348005469999,25.41928424800011],[-97.41869778799992,25.303477013000077],[-97.24600425199992,25.540030535000028],[-97.17834394499988,25.703396281000096],[-97.14478004199998,25.97221344400009],[-97.21079823999992,25.990304356000024],[-97.29598008299996,26.10764074200017],[-97.29652553999995,26.20159530800015],[-97.35424373999996,26.330122607000078],[-97.40106193499992,26.364313522000145],[-97.43580740199991,26.46968627000018],[-97.425661946,26.55776810700013],[-97.47004378199995,26.749259055000152],[-97.56065289799989,26.839631799000017],[-97.55639835699992,26.994140921999985],[-97.48013470199999,27.00541365500004],[-97.496452891,27.091059127000165],[-97.45101651699986,27.121586407000166],[-97.42320742399994,27.26240461900005],[-97.54618017999996,27.229431880999982],[-97.60866201599998,27.285413709000125],[-97.53361654499997,27.34000463200016],[-97.41203469499999,27.322331903000133],[-97.32013468099996,27.57106832200003],[-97.25426194199991,27.696804713],[-97.37483470099994,27.748877447000154],[-97.3877437989999,27.84030473900009],[-97.33768924299989,27.88316838600008],[-97.25080740199996,27.876722932],[-97.18830738499997,27.824086560000126],[-97.03455280999998,28.044841154999972],[-97.15178011099988,28.03475024000005],[-97.1690801179999,28.13075935100011],[-97.02877099499995,28.190704821000054],[-96.95834370199992,28.122486628000104],[-96.8004254839999,28.224632109000027],[-96.78073457699992,28.400013963000163],[-96.70131637399993,28.360232139000175],[-96.59560725699998,28.35605941400013],[-96.41250721399996,28.461413987000185],[-96.60995272299994,28.596332191000045],[-96.66495274199991,28.69542311900011],[-96.58567999599995,28.725068582000063],[-96.55816180299996,28.645314021000047],[-96.45671632299997,28.635923113000047],[-96.19936171499995,28.712650410000037],[-96.2256980809999,28.579414016999976],[-96.03900712699993,28.65247767500017],[-95.95942528799992,28.625295853000182],[-95.92354346299987,28.7015504150001],[-95.777488883,28.749532248000037],[-95.65350703299998,28.750004978999982],[-95.43999789199995,28.859832282000127],[-95.38410696899996,28.864868648000083],[-95.21067965799995,29.00941413800018],[-95.14777964899986,29.17981417599998],[-95.0372341669999,29.21162327600007],[-94.93751596399994,29.313705120000122],[-94.89177050299998,29.43337787300004],[-95.01831599399986,29.5548960750001],[-95.01582508899997,29.63806882000017],[-94.96583416999988,29.700514289000125],[-94.87277050799992,29.671496105000074],[-94.81406140599995,29.758950670000047],[-94.68907046399988,29.751305218000027],[-94.70611591699998,29.62853246500009],[-94.76046138099997,29.524386987000184],[-94.54573405599996,29.571705186000145],[-94.49908858599997,29.50604153800009],[-94.13258849699997,29.646223397000142],[-94.00140664599996,29.681459773000086],[-93.85852479099992,29.674196139],[-93.74557930899994,29.73586888300008],[-93.48566106099992,29.76875071600017],[-93.23905190499988,29.778414364000184],[-92.94626091599991,29.703677994000145],[-92.61627900499997,29.5787325230001],[-92.25953345499983,29.536823435000144],[-92.11179705599994,29.621778003000088],[-92.20163344899998,29.753705301000082],[-92.13293343099997,29.766596215000163],[-92.0614620739999,29.858555992000163],[-91.91767625899996,29.94760551400003],[-91.68369962299994,29.843151949000116],[-91.64285196099996,29.879936911000073],[-91.86088814399994,30.041689966999968],[-91.91383310599997,30.154461672000025],[-91.97371409999994,30.16981502700014],[-91.99893059599992,30.31311548700006],[-91.98062128899988,30.412057388000107],[-92.05923839799993,30.43806470100003],[-92.03646118699999,30.576611902000025],[-92.09932244599997,30.6949743080001],[-92.29367513799997,30.798573957000087],[-92.33478167299995,30.765309560000162],[-92.49547163499989,30.727954443000158],[-92.54187073799989,30.60701016400003],[-92.62697071899998,30.58774267900003],[-92.7190193059999,30.663694744],[-92.7757460389999,30.644159564000176],[-92.89866984699995,30.499891621000017],[-93.03141398899999,30.418744305000132],[-93.11271484299994,30.29156797700017],[-93.22298616699993,30.22106639000009],[-93.3167070049999,30.269450550000045],[-93.48104644799997,30.285534511000094],[-93.61979185099989,30.226814026000113],[-93.65809784399988,30.13308920300011],[-93.72833885599994,30.111211360000084],[-93.81374864999992,30.222477563000098],[-93.89858818699986,30.16021396500014],[-94.03840522899992,30.172760698000104],[-94.10066902899996,30.120832769000117],[-94.1629030329999,30.167657670000096],[-94.45853442499998,30.042451531000097],[-94.58726959799998,30.00713072000019],[-94.69563005799995,30.19130861400015],[-94.73419180699989,30.185532523000177],[-94.72234930999997,29.908523497000147],[-94.8175122699999,29.91126301100013],[-94.85521128099992,30.037415302000056],[-94.9503679799999,30.174918749000028],[-95.08304233599989,30.06530472500009],[-95.11074874499985,29.90861992400005],[-95.17601457899991,29.899786410000104],[-95.26766901299999,29.955120051000165],[-95.36095427299995,30.06511205000004],[-95.58184191099986,30.12138384600013],[-95.81025590199988,30.086127088000126],[-95.8921530099999,30.14007728900009],[-95.9897867439999,30.13088781400012],[-96.10817427199999,30.068317488000048],[-96.14134458699994,29.86433652800008],[-96.3436310589999,29.85567562900013],[-96.39927042799985,29.77758701700003],[-96.40070483899996,29.69986015000012],[-96.51214559499988,29.654729532000033],[-96.59457072099991,29.56223313400011],[-96.58878749099995,29.460043606000056],[-96.65402918899997,29.422422905000076],[-96.67712407599987,29.29207992200014],[-96.7472780839999,29.082115655000166],[-96.84958948699989,29.07997163700003],[-96.92147033799989,29.1278804210001],[-96.9803267659999,29.086998335000033],[-97.11718075299996,29.053066480000098],[-97.16074579799988,28.940698935000114],[-97.14771561099991,28.78320523400015],[-97.304017177,28.633233771000107],[-97.47993992399995,28.611610525000117],[-97.37186670999995,28.474968160000174],[-97.46405896799996,28.41882291400003],[-97.55803707599989,28.42832125300015],[-97.70863466399999,28.39095901000013],[-97.711218407,28.306597759000113],[-97.77380912999996,28.280962687000056],[-97.85091383599985,28.321782068000175],[-97.88626840899997,28.248345726000025],[-98.0642278489999,28.32076430000012],[-98.10026805699994,28.430712975000176],[-98.15986704499988,28.45864961000018],[-98.19448423799997,28.611672535000082],[-98.24661621299992,28.72143006500005],[-98.32374465099991,28.81444722300006],[-98.32828236599994,28.884707491000142],[-98.40214236799994,28.941536335000137],[-98.62532409099998,28.916128129000185],[-98.67456064399983,28.938050212000064],[-98.71539403099996,29.046726657000193],[-98.7965625899999,29.084860692000177],[-98.84787905899998,29.181857783000055],[-98.7938865139999,29.24920963000011],[-98.70217212999984,29.212633025000173],[-98.41460483299988,29.213680663],[-98.31308703399998,29.25906211400013],[-98.26156513899991,29.337616017000073],[-98.10576443699995,29.40284047700004],[-97.98691590699991,29.5414884490001],[-97.86961495299988,29.555514067000104],[-97.89583062499997,29.661307079000096],[-97.86335582499999,29.69219814000013],[-97.70723392499997,29.71985394700016],[-97.68163370099995,29.811666590000073],[-97.60311085299998,29.765966279000054],[-97.56842579,29.839540869000075],[-97.61740169299998,29.943528845000117],[-97.62130926899988,30.067313208000087],[-97.51135867099998,30.182454627000027],[-97.53676986199997,30.302387540000154],[-97.41844836499996,30.28667329400008],[-97.33694806799991,30.407824426],[-97.19246099799989,30.533776095],[-96.97824026099994,30.79621368100004],[-96.89505017299996,30.852789185000063],[-96.92918789099997,30.924334450000117],[-96.79424242099998,31.11626516300015],[-96.72734847099991,31.175236401000177],[-96.47312101899996,31.546346378000123],[-96.40907081699999,31.719787558000064],[-96.23035750999998,31.989234374000034],[-96.18997624399992,32.15118430900014],[-96.35923443699988,32.24205715900018],[-96.53548965599998,32.43660095900003],[-96.50442034099984,32.50802787900011],[-96.38562407499995,32.49770408300003],[-96.29364805499995,32.405237256000134],[-96.19874958899993,32.423566222000034],[-96.13929048499989,32.55972779900014],[-96.19974290799996,32.62008185200011],[-96.14669957099989,32.74652870200015],[-96.19609655499988,32.8336132660001],[-96.27225252099998,32.84348292800013],[-96.22165767399997,32.97033425500018],[-96.16208418999997,32.99433544300007],[-96.02588505799991,33.162511070000164],[-95.91973994299985,33.03565619000011],[-95.77235151199994,33.10785116300008],[-95.68342269299995,33.188959131000104],[-95.60165823499989,33.21946125200009],[-95.46538777499995,33.47527713000005],[-95.36399812399998,33.44975687200002],[-95.20657699099996,33.46488228800007],[-95.17498115799998,33.501081944000134],[-95.34393492899994,33.63882779400018],[-95.63219460599998,33.65327848200019],[-95.60449239299999,33.76326295400003],[-95.6882570969999,33.759126871000035],[-95.76059141599995,33.701411282000095],[-95.8400904689999,33.710714226000164],[-96.0563977029999,33.6444326080001],[-96.33975245399989,33.621494852000126],[-96.45990912999997,33.69647502700013],[-96.5380266599999,33.69151451700003],[-96.6813799649999,33.790475336999975],[-96.6530773099999,33.90988321700013],[-96.5023903579999,34.0202637970001],[-96.29564795499994,34.03381045700007],[-96.26049723099999,34.08295298300004],[-96.14078652799998,34.049256126000046],[-96.08589741199995,34.09148431400007],[-96.16256452199985,34.15556625200003],[-96.40523222699994,34.183650233000094],[-96.51369387599993,34.233372152000186],[-96.48417374699983,34.2904238750001],[-96.36773116799992,34.24490864800009],[-96.41229924199996,34.3941806900001],[-96.36275157199992,34.4682638160001],[-96.47557793299995,34.497625099000174],[-96.505465486,34.54243638100007],[-96.64412906099994,34.59715969100017],[-96.57756835599992,34.70258958300013],[-96.65863427999989,34.73210288800004],[-96.57448790999996,34.82984073800003],[-96.37609267699997,34.90689703200019],[-96.33462409999987,34.999305271000026],[-96.18015606599994,35.04677481400006],[-96.10164115099997,35.188773762000096],[-95.84772437399994,35.32337631300004],[-95.80155037299983,35.28999791400008],[-95.71685075399989,35.364889401000084],[-95.55667588999995,35.31490154200003],[-95.31813809199997,35.29237006700015],[-95.22510369199995,35.35290632500016],[-95.16197963699989,35.5390436940001],[-95.2094565559999,35.59512907800007],[-95.14076096499997,35.674042402000055],[-95.28885388699996,35.676198837000015],[-95.24775388399996,35.869308634000106],[-95.27310534699996,36.15109000700005],[-95.15899082799996,36.374371937000035],[-95.17909995799994,36.44115036700009],[-95.12834490399996,36.58173523200014],[-95.00873994299997,36.59103916400005],[-94.82163467399994,36.72749788900012],[-94.81511874799992,36.78327555400011],[-94.67884685299998,37.15022019600008],[-94.6213154589999,37.151991621000036],[-94.57360606799995,37.30608846100006],[-94.3945013209999,37.30886441900009],[-94.24676907999998,37.35215442500004],[-94.14382350499994,37.467311017000156],[-93.99468941399988,37.43557648900003],[-94.00165342699995,37.58520871700017],[-93.93106559699993,37.71423334300016],[-93.99482015999996,37.73364511400001],[-93.9577551569999,37.8264686870001],[-93.82212637199996,37.94079495500006],[-93.9394734309999,38.06184092700016],[-93.84112573899989,38.12316491300015],[-93.70129304799997,38.10547617200007],[-93.62324869499992,38.25673900400011],[-93.51551576199984,38.29622357700009],[-93.4621682149999,38.37436824300005],[-93.27162450199995,38.365036939000106],[-93.15246587899986,38.49997904100019],[-93.14974159299987,38.58691089800004],[-92.98810187099991,38.70481136000012],[-92.87603696599996,38.826621602000046],[-92.71072711199992,38.88476194000003],[-92.56581356199996,38.84404236300003],[-92.545392672,38.78439289900007],[-92.69489389299986,38.75732052700005],[-92.67939699899989,38.63643524100007],[-92.50467557699989,38.51000677100012],[-92.53070020599989,38.46984380400016],[-92.41201802399996,38.40354926000015],[-92.36301151299995,38.451350859000115],[-92.27002500799995,38.44002584100008],[-92.18704395399999,38.48299978200015],[-91.97418706899998,38.53111486200004],[-91.90155286099997,38.58246856400018],[-91.79590120099994,38.58189909000015],[-91.57012399199994,38.64343064100018],[-91.39591909599994,38.6355618770001],[-91.23054903899992,38.507565007000096],[-91.13595494099997,38.524029573000064],[-91.00421140399999,38.455278907000036],[-90.85820917199999,38.47264287500019],[-90.67697829799994,38.58211655200017],[-90.61378671499995,38.56865438500017],[-90.47046575799993,38.630412885000055],[-90.31078216899994,38.47272772500014],[-90.38385804799998,38.26008670600015],[-90.37127803699997,38.174723650000146],[-90.13561475599994,37.88859891600009],[-90.03519192299996,37.84976698400004],[-89.92514548999986,37.7043921340001],[-89.98210106799996,37.62710754200009],[-89.85234944899997,37.530651775000024],[-89.76142644499998,37.29294590100017],[-89.61049339899989,37.21923953900006],[-89.70037386799999,37.12936560400016],[-89.6148549209999,37.05054531600007],[-89.44421641399987,37.16374655200019],[-89.33462461999989,37.18734480800015],[-89.17361306999987,37.05926587400006],[-89.06197328999997,36.93381386500016],[-89.12703821499997,36.70535214000017],[-89.09817301099997,36.59965239900015],[-89.17081002199996,36.57945001600007],[-89.3090254519999,36.47066914100003],[-89.30557928699989,36.434793047000085],[-89.41988101099992,36.27397074300012],[-89.37933429899994,36.17148782900006],[-89.48920759899994,36.11493003700008],[-89.44653352899991,36.009793767000076],[-89.5055689589999,35.90834603900004],[-89.83528187099989,35.597785922000185],[-90.07577317899995,35.30216595900009],[-90.03635388699985,35.19869794300013],[-90.12749624999992,35.05667079200015],[-90.1428817129999,34.90350169100003],[-90.19366292199993,34.83523790400005],[-90.15029734899991,34.77809776700008],[-90.21438404299994,34.64606736200017],[-90.1705684879999,34.47631722400013],[-90.02623565599993,34.32098668900005],[-90.06568721699995,34.261148650000166],[-90.08015264699998,34.07912646100016],[-90.06315448399982,33.898661634000064],[-90.00776504099997,33.745012382000084],[-90.04256220899998,33.708006466000086],[-90.07266840299997,33.45068970200015],[-90.15130453499995,33.35840132200019],[-90.14281269899993,33.24968913900017],[-90.1950283239999,33.18330277300015],[-90.19782870099982,33.101293392000116],[-90.29224187899996,32.98056287300005],[-90.34728817299987,32.95678914000007],[-90.58356300999998,32.61029245700007],[-90.7814925859999,32.52017829000016],[-90.94323555599993,32.2148428320001],[-90.94076365799998,32.15057942400006],[-91.04788036899998,32.039828066000155],[-91.05810373799994,31.98703033900017],[-91.17696969899998,31.911111771000037],[-91.21968688799984,31.77400996300014],[-91.34855504799992,31.69995093700004],[-91.42401725199983,31.546218646],[-91.4501632169999,31.38871559500012],[-91.3542386819999,31.339103461000036],[-91.41400001099993,31.234779325000034],[-91.54222722299994,31.103980788000115],[-91.56765120599988,30.936753089000092],[-91.36193779799993,30.760924915000032],[-91.18896538299998,30.510629436000045],[-91.18243419399994,30.41793835599998],[-91.01012719399989,30.32227532900015],[-91.01458915199987,30.224279965000164],[-90.95232154299998,30.16311883600008],[-90.87620617199997,30.15942545400003],[-90.83523688699995,30.24501215900011],[-90.68999560099996,30.328062213000067],[-90.60299296699992,30.314473722000116],[-90.51445014899991,30.407025725000096],[-90.17496312599991,30.412330168000153],[-89.93222815099995,30.27240248300012],[-89.85736106999991,30.273170344000164],[-89.69563416799997,30.184168409999984],[-89.4984327379999,30.181241846000148],[-89.32992360699996,30.302996423000025],[-89.00133261099995,30.386905544000058],[-88.85665075399999,30.39059645800006],[-88.74559617599994,30.347023725000042],[-88.6104052309999,30.375996463000092],[-88.4785597369999,30.318514636000145],[-88.33748697499993,30.404851023000106],[-88.20536875399995,30.361714655000014],[-88.10917781899997,30.370787387],[-88.10125964199995,30.50937832699998],[-87.99497780099989,30.67900564100006],[-87.91753232299999,30.63757836100018],[-87.90745958399992,30.41193285700001],[-87.75559589999989,30.291960108000183],[-87.66005950799996,30.249214648000134],[-87.51506856099991,30.3015055730001],[-87.4414230889999,30.3657419540001],[-87.38672307099995,30.323323764000122],[-87.17459574399993,30.428760158000102],[-87.09908663599992,30.51810563500004],[-86.93200476699991,30.45853290000008],[-86.94986840699994,30.395432885000105],[-86.71928652499992,30.410905623000133],[-86.60215921799994,30.401205624],[-86.49164100799999,30.46226927800012],[-86.42125007899995,30.450796551000053],[-86.25452275999999,30.48697838200019],[-86.24790457399985,30.428860188000044],[-86.337750052,30.38573290200003],[-85.92258629399993,30.237932882000166],[-85.68367712999998,30.116414680000048],[-85.5445043599999,30.026932846000136],[-85.48776797799991,29.961232833000167],[-85.3637315759999,29.898923731000025],[-85.30134064499993,29.799232801000073],[-85.31084973399987,29.689150958000084],[-85.10094967599991,29.718823698000108],[-84.99327691799994,29.714950973000043],[-84.79849504599986,29.76895099100011],[-84.53726770499998,29.90938739500018],[-84.45563131899996,29.928814675000183],[-84.3607676609999,30.059305617000177],[-84.20572216299996,30.105023813000173],[-84.00254937799991,30.100660182000183],[-83.92541298899994,30.034469261000083],[-83.77650385299995,29.978178342000092],[-83.6392947199999,29.887360144000127],[-83.53764922899995,29.723069200000168],[-83.40027645999999,29.65833282500006],[-83.39249463499993,29.52476006700016],[-83.29675823999997,29.444905505000122],[-83.22038549099989,29.42606914000004],[-83.15572183199998,29.317405480000048],[-83.0782581709999,29.26223274100016],[-83.07114907599993,29.201469091000035],[-82.83651264299993,29.15611454100008],[-82.75313079699998,29.063459976000104],[-82.7530035229999,28.99759632400003],[-82.63787621299997,28.89021448400007],[-82.66634893299982,28.449596196000186],[-82.70663075999994,28.394832545000043],[-82.75092342899995,28.238713879000045],[-82.80346713799997,27.962132439000072],[-82.84802917299987,27.87101405200019],[-82.6906034619999,27.71061420000018],[-82.62227617199989,27.78919603900016],[-82.62542470699992,27.874941880000108],[-82.72435802399997,27.94906880200017],[-82.676722596,28.006791137000107],[-82.54977734699997,27.967713874000083],[-82.39771541599998,27.8842647190001],[-82.45679214699993,27.699010464000025],[-82.54714556699992,27.650601648000134],[-82.54405226799997,27.602536536000116],[-82.64413762799995,27.449212333000162],[-82.58011157499988,27.41538800700016],[-82.44299427899995,27.056195865000177],[-82.28716695399999,26.842859452000027],[-82.17684895899998,26.830675172000156],[-82.18708064199996,26.93322994099998],[-82.08381203399989,26.899679541000125],[-82.03669870599992,26.821157328000083],[-82.07147597999989,26.73067761200008],[-82.03360540699998,26.550136719000022],[-81.93224036799995,26.475183697000034],[-81.84729360999995,26.47256629000009],[-81.79851465899992,26.097087343000112],[-81.69857729699993,26.018803076000097],[-81.56984845699998,25.989535706000026],[-81.24195872999996,25.83748814800009],[-81.15848277599997,25.71355769100012],[-81.05931624399994,25.625111259000107],[-80.87842021599994,25.41969425600007],[-80.85486355199998,25.335223391000113],[-80.73803201699997,25.226719968999987],[-80.49389931699989,25.286206494000112],[-80.38991687099997,25.352593456000136],[-80.33096677699996,25.54802215300009],[-80.23837541899996,25.726977401000056],[-80.18909358799982,25.75775922800011],[-80.12942642899998,25.929211806000183],[-80.03681174699994,26.594423078000148],[-80.0562935779999,26.825914045000104],[-80.09572086799994,27.02350500299997],[-80.18133907899983,27.16464139900006],[-80.31463003499994,27.423932370000045],[-80.40092292999998,27.698103118000063],[-80.60706650399987,28.088668889000076],[-80.74483928299992,28.396223506000126],[-80.67813013699998,28.41455882600019],[-80.60662106499996,28.549887183000124],[-80.62149896499994,28.62609291000018],[-80.7206029219999,28.707114491000027],[-80.81988476699996,28.652078112000083],[-80.84913152099989,28.74209775900016],[-80.76713020999995,28.757423593000112],[-80.97395360899998,29.083597624000106],[-80.99993938499995,29.212096424000094],[-81.22111839899992,29.692544278000184],[-81.32334056399998,29.876460647000044],[-81.31064859399993,29.976451141000098],[-81.38300317099998,30.26273302500016],[-81.39298499799997,30.397160329000087],[-81.47004866899994,30.694251304000147],[-81.53077596399999,30.834087699000065],[-81.46237595099996,30.99811501200014],[-81.40212140099999,31.30495144700012],[-81.30722137599997,31.381942377000144],[-81.34313957099988,31.440906026000164],[-81.28154864799995,31.545869688000096],[-81.17155770799997,31.556924240000114],[-81.13335770199996,31.69776972800014],[-81.18282135799996,31.79374247500016],[-81.08947587899996,31.8844152260001],[-80.9958122139999,31.856560677000175],[-80.86028490599995,31.97401525400005],[-80.90021219799996,32.11967892200005],[-80.7892939859999,32.18956075900019],[-80.75880307199992,32.277869871],[-80.82904855599992,32.46478809300004],[-80.77587581599988,32.5364244750001],[-80.58674848599998,32.49986083600004],[-80.50651209899996,32.51439720600018],[-80.41349388799995,32.470679017],[-80.3325756829999,32.478033567000125],[-80.19637564499999,32.55907904400004],[-80.01571195799994,32.61067906100004],[-79.90167556299997,32.67975180800016],[-79.85513918999999,32.76862455700007],[-79.61560275999989,32.89414277499998],[-79.61479367299995,32.96331551800006],[-79.52856637799994,33.03735190100019],[-79.41562088899991,33.01701553600003],[-79.36432996699989,33.07713373300015],[-79.19051173699995,33.1699428500001],[-79.20340265599992,33.302506516000165],[-79.09808445099986,33.465024738000125],[-78.94789350399998,33.63086114300012],[-78.79597528299996,33.75521572200017],[-78.54033884799992,33.87651575700011],[-78.17164782999993,33.92948850800019],[-78.02294778499993,33.91581578300014],[-77.88062956599993,34.05692491000019],[-77.84267501499988,34.18144312000004],[-77.70063861699998,34.344070434000116],[-77.60649313599998,34.40581590500011],[-77.28182031799997,34.565015951000134],[-77.11816572899994,34.686706892000075],[-76.90287475599996,34.726679635000096],[-76.71894742699999,34.71812509400007],[-76.72644743199999,34.78377056300013],[-76.51560190999993,34.71807964600009],[-76.41417461299994,34.85017058800008],[-76.31449276699993,34.903234239000085],[-76.50862010199995,34.984297886000036],[-76.71183834699991,35.00467970300008],[-76.59704740699982,35.07337063100016],[-76.48222919799991,35.2474252180001],[-76.50086556999997,35.30546159300013],[-76.71878382199992,35.374861602000124],[-76.70991109499988,35.42888888599998],[-76.49382011699998,35.379534337000166],[-76.43049282599992,35.40668889099999],[-76.20214729899993,35.338134338000145],[-76.1125563629999,35.35433434400011],[-76.01308360799999,35.42371618100003],[-75.91880176799992,35.562643487000116],[-75.81792900999989,35.5718344010001],[-75.73045625899994,35.626543507000065],[-75.72589262899999,35.806043546000126],[-75.78421992699992,35.93441630000018],[-75.85758358599998,35.94557993600017],[-75.98601089499994,35.88888901100012],[-76.00488361799995,35.67705260000008],[-76.05969272699997,35.708461696000086],[-76.06534727999991,35.83739808800004],[-76.01256545099989,35.924807199000156],[-76.06234728799996,35.99089812099999],[-76.27224735099998,35.97205265500003],[-76.39876557299988,35.98274356200005],[-76.66357474199998,35.93244354300009],[-76.67433838799991,36.04397993100014],[-76.57997472099993,36.01082538100013],[-76.4603292299999,36.02510720600014],[-76.41188376299993,36.07987085600013],[-76.07185638799996,36.14069815300019],[-76.02150182999998,36.19010725600009],[-75.90591997699988,36.206407263000074],[-75.89911089099996,36.326552744000026],[-75.99572910699999,36.410625486000185],[-76.04557457999994,36.503807323000046],[-75.9838472919999,36.55056188000009],[-75.99292002599998,36.635252808000075],[-75.93649273899996,36.71537100800009],[-75.9901927659999,36.911707412000055],[-76.09498370899996,36.9085710440001],[-76.26593830999997,36.963934686000016],[-76.35191105899992,36.884689212000126],[-76.65659297999991,37.04073468900003],[-76.62544751999997,37.127061981000054],[-76.4653565559999,37.028389238000045],[-76.42987472299995,36.97028922800018],[-76.29460195799999,37.03024379000004],[-76.27020195299991,37.08751653000019],[-76.37444744299995,37.15002563100006],[-76.4224020069999,37.220689280000045],[-76.29674742799995,37.32328021500018],[-76.25133832999995,37.435971150000114],[-76.32739290099988,37.48570752100011],[-76.32641109699995,37.73188030000006],[-76.23674744199991,37.88865306300005],[-76.41887477499989,37.96811670900007],[-76.53568390899994,38.07336218100011],[-76.70060214699998,38.16016219300013],[-76.83880218999997,38.16348037000017],[-76.96100222899997,38.204907647000084],[-76.90726585399995,38.28840766700017],[-76.7786294469999,38.22848038600017],[-76.58892938799994,38.215271299000165],[-76.53042027399988,38.13358946599999],[-76.42083842099993,38.10604401000012],[-76.32971112199994,38.15518947800018],[-76.38524750599998,38.21776221700003],[-76.38193842399994,38.38646225100007],[-76.48437482499992,38.474389538000025],[-76.55464759099993,38.770835051],[-76.50993848899998,38.80117142200015],[-76.3950475549999,39.01133510500017],[-76.48598395199991,39.08103511600012],[-76.52399306099994,39.176171496],[-76.41042939199997,39.23101696700013],[-76.36496574899996,39.350753355999984],[-76.28859299499999,39.31693517000019],[-76.06046565899993,39.44944429599997],[-76.12201113599997,39.492889757000114],[-76.0529929359999,39.55492613600018],[-75.97022018299992,39.557607958],[-76.04984746999997,39.37064428000019],[-76.18558387299993,39.31934426600003],[-76.27852025499993,39.145807864000176],[-76.13660202599993,39.098653314000046],[-76.16444748299995,39.000116929000114],[-76.2351747749999,38.94199873300016],[-76.16116565699997,38.87941690500003],[-76.33842025099995,38.76050778300015],[-76.15561109599997,38.65808958700012],[-76.25992930899997,38.61436230200013],[-76.21260201499996,38.51459864700013],[-76.33223841399996,38.47473499800003],[-76.28392021299999,38.415671352000174],[-76.09974742199995,38.292062241],[-76.00439284599997,38.29619861000003],[-75.86140188899998,38.23273496500002],[-75.84426551199994,38.07228038700009],[-75.89895643299997,37.97452581900012],[-75.82432004299994,37.938471269],[-75.71315637399994,37.97663491700001],[-75.68067454099992,37.888743991000126],[-75.73255636999988,37.7850621500001],[-75.8121563919999,37.749507594000136],[-75.89313823099997,37.645543933000056],[-76.01531097899993,37.330025681],[-76.01327460799996,37.20578929100009],[-75.94070185399988,37.13485291500001],[-75.89485639799994,37.359871146000046],[-75.75312908899997,37.50715300000019],[-75.60889269099988,37.707062138000026],[-75.53344721699989,37.78295306500013],[-75.50013811999992,37.86993490200001],[-75.22407441899992,38.2433986260001],[-75.15185621399996,38.246862266000164],[-75.04938346599988,38.44419867300002],[-75.06250165999995,38.58196233800004],[-75.12751986399996,38.63379871000018],[-75.07768348799993,38.69414417799999],[-75.09660168199991,38.79053510700004],[-75.18294716399993,38.801871469000105],[-75.3016835709999,38.91148057900017],[-75.34171086299995,39.021116963000054],[-75.40238361099995,39.06746242500003],[-75.39473816299994,39.204189725],[-75.4370200009999,39.3114170180001],[-75.49462002099995,39.346726114000035],[-75.46571092699998,39.439098861000105],[-75.29049268099999,39.29191701900004],[-75.10208352599989,39.21360791899997],[-74.90161982399991,39.174717009000176],[-74.83565676599994,39.122802237000144],[-74.77893226699996,39.21323173900015],[-75.01537559199988,39.38525462400003],[-75.04929506799994,39.29528831800019],[-75.1515966099999,39.311613407000095],[-75.25409144299994,39.38688830600006],[-75.38276751899997,39.426832038999976],[-75.41531938299994,39.51000737800007],[-75.42505217399997,39.69115973700008],[-75.33266802299994,39.780807939000056],[-75.20584781399998,39.81174211100017],[-75.10613744999995,39.87212216400013],[-75.09463294499983,39.95672517200012],[-74.81465038999988,40.07277505900015],[-74.70134288099996,40.159054403000084],[-74.78287653599989,40.22460114900008],[-74.95669889199996,40.07910066800014],[-75.14438499999989,40.002912341000126],[-75.23870081399997,39.92022033000006],[-75.5364883719999,39.76378644100015],[-75.64924460599997,39.73232791300018],[-75.85497783199986,39.63802194800019],[-76.05758672699994,39.57801741500003],[-76.38177688099995,39.41453769400016],[-76.54399812699995,39.401589877000106],[-76.65593859199993,39.271339361000116],[-76.91641593999992,39.108059978000085],[-77.22748584599998,38.68152426100005],[-77.33402964299995,38.59672579200014],[-77.35992137899996,38.532775966000145],[-77.52201143799994,38.35526479400011],[-77.56433620799999,38.19130001800016],[-77.52451340599998,38.002751180000075],[-77.5149146249999,37.826961443000016],[-77.54006528999997,37.762807052000085],[-77.51594537999995,37.657597288000034],[-77.54396853299988,37.55499964600011],[-77.50865814399998,37.37478803900012],[-77.54165675199994,37.28749200400017],[-77.5221519349999,37.16995599200004],[-77.59034417499993,36.91978662600013],[-77.56750968699993,36.84559497700013],[-77.5958187629999,36.689155874000164],[-77.69508019699987,36.50894448500003],[-77.77034176399991,36.44834845000014],[-77.74633865899995,36.39987560000014],[-77.78725504199991,36.30260860000004],[-77.85847660699994,36.23855575700014],[-77.87532764999992,36.16028882500018],[-77.95628381099988,36.1649058750001],[-78.04646055699993,36.002043408000134],[-78.12130933999993,35.95255987000019],[-78.13959918999996,35.844882564000045],[-78.10513120299993,35.720964288000175],[-78.20031342499993,35.72490050600004],[-78.33693890999984,35.63112751900013],[-78.42620926599994,35.635754747000135],[-78.44469074999989,35.55036167700018],[-78.66195565799995,35.59223928600011],[-78.78244800199997,35.641278116000024],[-78.86704684799997,35.61752717400003],[-78.90410730399992,35.42140923500011],[-79.06477121299997,35.49932280400003],[-79.18199510799997,35.41615693900019],[-79.33933005899996,35.35186484500014],[-79.39980293199994,35.358371790000035],[-79.53253678199997,35.28938571900011],[-79.6028909549999,35.36377126500008],[-79.79212147399994,35.28540367699998],[-79.7593447129999,35.16203841900017],[-79.80650735399996,34.98134842600007],[-79.91324847899989,34.98395882900019],[-79.93669590899998,34.85625657900016],[-79.99959752899986,34.88046326099999],[-80.10089780999994,34.84577315000007],[-80.06738710299993,34.74195577800009],[-80.21769974899996,34.74062479100019],[-80.37266733599995,34.77894996100008],[-80.46107454099985,34.723807202000046],[-80.57574913899992,34.6093068560001],[-80.52215295899992,34.55338566800003],[-80.61735779499998,34.43421827100019],[-80.58463172799998,34.395095642000115],[-80.64764053299984,34.312624299],[-80.82103375099996,34.27875580900013],[-80.87272974899997,34.184404440000094],[-80.97125759499994,34.22126235600007],[-80.99890474199998,34.095482469000046],[-81.0801784539999,34.020419652999976],[-81.2224043519999,33.96597626800008],[-81.27593401099989,34.01277510800014],[-81.51844056499988,33.939322504000074],[-81.625703161,33.87670962500016],[-81.7262127489999,33.87496116600016],[-81.89435419499989,33.810535508000044],[-81.87609923499991,33.71862320200012],[-81.97351935199993,33.63565507200002],[-81.98993059099996,33.507410696000136],[-82.04547597499999,33.482463510000116],[-82.14026689699989,33.52300016800018],[-82.2649387919999,33.41905978400018],[-82.39725168099983,33.42941370000011],[-82.58291431199996,33.401679591000175],[-82.63545167299998,33.33267901700009],[-82.73257375799994,33.31173037800005],[-82.78297002199992,33.251863099000104],[-82.91069600899993,33.251801667000166],[-82.94676968299996,33.11164465700011],[-83.26571302499997,33.006513042],[-83.36200190799991,33.022796723000056],[-83.42162313399996,32.96913302100006],[-83.51752290199994,32.96068614000012],[-83.58211224299998,32.85581889000014],[-83.69120220699995,32.85932320600017],[-83.84898129599992,32.766427828000076],[-84.01852674399993,32.75678676900009],[-84.09920258199998,32.69752095700005],[-84.21915299199998,32.65537092500006],[-84.35801381999988,32.6744659470001],[-84.53731440699994,32.62982626500013],[-84.67909081899995,32.54341134400005],[-84.83814247399988,32.54935286000017],[-84.99922050599997,32.50352699500007],[-85.05627701599985,32.546922166000115],[-85.29233257099997,32.524510503000045],[-85.49421181499997,32.561746668000126],[-85.48743858799992,32.620802738000066],[-85.68788671599992,32.57229354200007],[-85.92381457899995,32.60611835000009],[-86.11990957199987,32.66319838700019],[-86.25675158099989,32.617256209000175],[-86.38596735099998,32.738291073000084],[-86.5004927899999,32.748677150000105],[-86.52431128199987,32.80976652100014],[-86.65637922899998,32.89876018500013],[-86.71095964799991,32.978794611000126],[-87.0448256649999,32.98712493700015],[-87.14878952999999,32.97261588300012],[-87.1465331519999,33.113301507000074],[-87.39742055499994,33.1628483290001],[-87.47175777199999,33.215453935000085],[-87.56567832499996,33.475701818000175],[-87.66260970999997,33.57881008100003],[-87.65090013399993,33.712500348000106],[-87.70143520199991,33.93358361300017],[-87.76744888399998,33.99657054200014],[-87.76806536799984,34.10080850500003],[-87.62045612399993,34.2670934410001],[-87.71794375799993,34.25190100600008],[-87.68005140199995,34.38824847900014],[-87.76703083499996,34.42521639100016],[-87.71234712299997,34.5585384150001],[-87.90609366099989,34.65856794900003],[-87.89547712299998,34.72548600800019],[-88.03362576899991,34.7538236740001],[-87.99447919899995,34.82934180700005],[-87.79802708499989,34.980280063000066],[-87.6781839219999,34.99156487800002],[-87.67322320899996,35.07854528900003],[-87.72443544199996,35.13960404799997],[-87.92169196499998,35.12042375400017],[-88.05065056199999,35.221401566],[-88.10007807999995,35.30178382700012],[-88.06124739899997,35.348751775000096],[-88.11318489099995,35.46465108600012],[-88.1005757659999,35.52223739800007],[-88.12855482999998,35.72390249100016],[-88.11461791899995,35.805490449000104],[-88.05399868799992,35.84657650000008],[-88.08151918999994,36.012738382000066],[-88.00957908599992,36.05543369300017],[-88.04445532799997,36.11363913200012],[-88.05488486499996,36.26789783800007],[-88.18565089299989,36.40474630700004],[-88.24228674999995,36.50064422500003],[-88.21433882399998,36.575416599],[-88.2686955129999,36.75969168000006],[-88.27484251899995,36.87429881700007],[-88.36323620899998,36.948993008000116],[-88.26591034499995,37.0224395030001],[-88.35342675199996,37.07391188300011],[-88.48766220699997,37.30530490700011],[-88.40726101899992,37.41156318700001],[-88.32761041099997,37.39627852700016],[-88.04447428599997,37.485541122000086],[-87.99178267399992,37.35236097400019],[-88.01041495799996,37.24800180799997],[-87.87881355199994,37.23217738400018],[-87.75927609299993,37.09766489599997],[-87.61691845699988,37.05234019000005],[-87.45528933399993,37.070858427000076],[-87.27405740499995,37.004606755000054],[-87.24139568299995,36.965253623000024],[-87.04445936299999,36.956313794000096],[-86.94657369599992,37.02996639300005],[-86.77008373499996,37.09144018800009],[-86.69819806399988,37.15488228000004],[-86.53859691299988,37.13229952200004],[-86.26866211899994,37.13450381700011],[-86.20319322199992,37.18502756400005],[-86.02461805399986,37.22144511800019],[-85.93720015799994,37.35857263200006],[-86.1229384479999,37.32979517300015],[-86.07561311099994,37.407249002000015],[-86.35051944099996,37.49438920200015],[-86.47644186299988,37.478796552000176],[-86.58974354399993,37.66768240500005],[-86.57868165799994,37.759026501000164],[-86.75384391699998,37.89831050100014],[-86.80224125699988,37.97750216700018],[-86.78014246399994,38.060041964000106],[-86.88650479799998,38.151385681000136],[-86.83685602799989,38.23269428300006],[-86.95525266699991,38.54034637000018],[-86.89478730399992,38.64186041900007],[-86.91964640999993,38.82747265400013],[-86.8794859539999,38.964262824000116],[-86.93250839499984,39.20649093300017],[-86.89776393399984,39.303354077999984],[-86.98377956799999,39.39548035200005],[-86.94970747799994,39.52223487700007],[-87.00217561699992,39.55316155200018],[-87.05098664499997,39.68303555400013],[-86.93845624599999,39.74175383400018],[-87.027147873,39.785525380000024],[-87.11524977899995,39.71482528100006],[-87.29464309299993,39.77285536100004],[-87.33330655499992,39.914612323000085],[-87.40811254899995,40.0065812470001],[-87.38238833299994,40.10826345000004],[-87.47763728699982,40.20584049700017],[-87.33411579599994,40.308475916000134],[-87.35914287099996,40.425252177000175],[-87.21636748899988,40.393566075000194],[-87.04925057899993,40.47119767000004],[-86.94090725299992,40.48136839900019],[-86.91538216099997,40.632538970000155],[-86.93613366899996,40.68147916600009],[-86.76690493799993,40.74813434500004],[-86.81768327599991,40.85053314400011],[-86.73995815499995,40.93591490600011],[-86.64717346799995,41.16258248300011],[-86.58992942599997,41.23420122900012],[-86.40915394699982,41.289113225],[-86.42978192999993,41.46241549500019],[-86.33584194199994,41.586675045000106],[-86.47296980499993,41.600436978],[-86.50780486799994,41.55207752100006],[-86.6912701899999,41.480227532000185],[-86.92393148899993,41.28834590200006],[-87.00157155599999,41.29302363200003],[-87.08698557199983,41.42061725600007],[-86.99966785799995,41.52177451800003],[-87.02361189099997,41.606689289000144],[-87.22053444099998,41.601587527000106],[-87.41154202699994,41.64368964400012],[-87.52843297699991,41.715998741000135],[-87.60132391799993,41.827971483000056],[-87.68142396599995,42.074653339000065],[-87.81062401999998,42.22648972100012],[-87.83447857999982,42.3023351870001],[-87.80286039799995,42.39019884000015],[-87.8159422459999,42.642680700000085],[-87.75780588099997,42.782044363000125],[-87.84370591499999,42.873580737000054],[-87.84525137999998,42.962180751000176],[-87.91080036399995,43.25585030700006],[-87.87388782399995,43.37470266500003],[-87.80420596699997,43.46300810900016],[-87.78854233899989,43.56641721799997],[-87.70384232699996,43.68378087800005],[-87.73540487999998,43.87207011700008],[-87.64743814499991,44.10279527100005],[-87.51820114699984,44.17964389900004],[-87.54116052899997,44.29315371400003],[-87.45973908899987,44.56300825799997],[-87.63431551999992,44.66123697600011],[-87.69701926099987,44.751871172000165],[-87.77311891599999,44.639856768000186],[-87.88355555199996,44.60283614300016],[-87.93059823099998,44.53535257500016],[-88.03381742399989,44.56854609700014],[-88.17538587799993,44.51972242199997],[-88.3068234399999,44.384116003000145],[-88.63755108399994,44.24541848700005],[-88.80102100599987,44.27778860400008],[-89.00271702599991,44.104986921000034],[-89.17489498599997,43.980048538000176],[-89.12387464499994,43.892123778000155],[-89.10645253499996,43.74720049300015],[-89.23250146099997,43.735088556000164],[-89.49337409999987,43.64247641600008],[-89.58470593099997,43.52658832100013],[-89.50825049999997,43.47315684600011],[-89.68754764899995,43.40574578400003],[-89.53552228999996,43.320110973000055],[-89.59513052699992,43.2444259400001],[-89.60131414699998,43.07356829900016],[-89.54240584099995,42.95400670400005],[-89.5438868789999,42.824832512000114],[-89.67847880499994,42.599373249000166],[-89.80382183599994,42.575115649000054],[-90.01907483899987,42.360082469000076],[-89.92139793199993,42.285854845000074],[-90.06614564799997,42.101411525000174],[-90.20079865099996,42.08727383900015],[-90.36183212799995,42.12140930300012],[-90.46128157799996,42.178197975000046],[-90.60065393999986,42.30091466900018],[-90.69379942399985,42.324129446000086],[-90.71437182999989,42.396231430000114],[-90.94682572699998,42.437127591000035],[-91.022144229,42.57063545500006],[-91.24207086399997,42.598274669000034],[-91.329965384,42.58173258100004],[-91.40849008599992,42.65805998500008],[-91.53058122599992,42.68960250700013],[-91.6187362419999,42.75184676800012],[-91.80921054499998,42.83493548000007],[-91.78921712399995,42.91701196499997],[-91.96061722899987,43.15407824500005],[-91.99262632199992,43.23826676500005],[-91.92141914099994,43.29465409900013],[-91.94096511299983,43.37484248200019],[-92.20555747499992,43.481149422000044],[-92.24162110499992,43.54240832500005],[-92.41079432099997,43.5948454760001],[-92.57450911099983,43.71572548200015],[-92.59677442999998,43.82360119300006],[-92.75122821799988,43.959912088000124],[-92.68817547799995,44.02532672300009],[-92.70967405599993,44.094835993000174],[-92.81908201999988,44.159297569000046],[-92.86757846199998,44.260214634000135],[-92.97496481799999,44.280006942000114],[-92.99759988299985,44.47562692800017],[-92.77375093899997,44.608480647000135],[-92.77944578099988,44.74541390100012],[-92.58091746699989,44.764774197000065],[-92.42107048899999,44.73030878300017],[-92.23416186899993,44.75058502800016],[-92.14497033099991,44.84453421000018],[-92.26331328499992,45.05678612400004],[-92.56263281099996,45.10687647900005],[-92.66246261199984,45.02148974400012],[-92.87324300899996,44.91478284200019],[-92.93795693599998,44.8115169190001],[-93.2002921109999,44.731069850000154],[-93.23011384999995,44.60030980200008],[-93.15694994999996,44.41824663300008],[-93.22977788999992,44.272443096000075],[-93.33125398299995,44.2668591740001],[-93.45704630699987,44.16756982000015],[-93.76228188399989,44.10861046000008],[-93.90822483599999,44.177594054],[-94.03123014599993,44.300617715000044],[-93.97370982399997,44.422675705000074],[-94.05679874499992,44.51824727700006],[-94.01389517699994,44.62837378300014],[-94.02520591099994,44.81024361600015],[-94.14142491499996,44.91627998200005],[-94.4223983249999,44.932416621000186],[-94.50705164199991,44.95920352100018],[-94.5548535989999,45.13504979300018],[-94.67320838499995,45.182346353000185],[-94.90413209499997,45.12071155200016],[-95.00280547599993,45.165797349000115],[-95.336439752,45.26937563000013],[-95.56164655899988,45.36458432000012],[-95.62571185899986,45.502844051000125],[-95.7646397829999,45.68700146400005],[-95.77262674299993,45.84297467900018],[-96.02354777099998,46.00105700800003],[-96.056285028,46.15471676900006],[-96.13933618399994,46.29087104700005],[-96.23976181599994,46.39387957200012],[-96.29368127399994,46.509130239000115],[-96.27659611899992,46.615173248000076],[-96.3115003179999,46.69958194400016],[-96.27240709899996,46.888117624000074],[-96.16185779699998,46.91078017600006],[-95.96284132999995,46.855050104000156],[-95.88809231999994,46.969847589000096],[-95.88079756399998,47.15600632600007],[-95.82324122399996,47.30127226400009],[-95.8222316049999,47.42028778200006],[-95.70858832099998,47.58233158900009],[-95.59733160499991,47.673038604000055],[-95.47259649299991,47.701618849],[-95.45356575699998,47.847863005000136],[-95.62666160999993,48.03885066500004],[-95.60840988699994,48.15404489100001],[-95.65966623399993,48.215717514000175],[-95.49736934599997,48.331993650000186],[-95.60084942099985,48.46043273300012],[-95.57230789299996,48.52001304200013],[-95.71020756399997,48.59410577700015],[-95.63748065599998,48.66683106500005],[-95.72873944399993,48.80477805900006],[-95.60901643699987,48.86154238300003],[-95.79023989399997,48.905214152999974],[-96.00424810499999,48.894296506000046],[-96.0815325669999,48.824368793000076],[-96.31326547999993,48.775551067000094],[-96.4621163729999,48.707528164000166],[-96.55729794599995,48.74718738200011],[-96.57268360699993,48.84151685],[-96.50972623899992,48.90556837000008],[-96.64096368699995,48.99999043600019],[-96.41543055299996,49.055876449000095],[-96.46096990799998,49.25230791600006],[-96.426805173,49.52291240400007],[-96.46826389899996,49.64131885500018],[-96.3176016779999,49.83284899300003],[-96.30054111199996,49.924339119000194],[-96.463599822,49.95603011000014],[-96.57222714199992,49.94098863300019],[-96.81703958999992,50.07717661100014],[-96.8849567289999,50.043828831000155],[-97.065856909,50.249583499000096],[-97.10871108799995,50.51669255800016],[-97.2552796679999,50.385448109000095],[-97.25804135799996,50.31419857700007],[-97.40904975399991,50.244571300000075],[-97.52404013299991,50.47386789300003],[-97.60829145699995,50.56461987100005],[-97.66412351399993,50.76612920300016],[-97.789344842,50.82367447700011],[-98.08302366299995,50.761807590000046],[-98.28422686099992,50.780796875000135],[-98.68081373599995,50.939665479000155],[-98.8877601129999,51.05698265300009],[-99.09241713699993,51.274989523000045],[-99.30807813199993,51.415043518000175],[-99.77810796499989,51.55972775800018],[-99.95745613499997,51.572381993000135],[-100.17872418999991,51.54773907000015],[-100.34883442199998,51.574115632000144],[-100.45523913999995,51.63899775300007],[-100.59161366099994,51.77606056100012],[-100.57237938299994,51.51674922400002],[-100.62802846599993,51.34513670000007],[-100.74485059499989,51.29639613400013],[-101.11707311399994,51.29081781000008],[-101.13626042899989,51.19978223000004],[-100.96698722399987,51.1829494160001],[-100.92051729299993,51.08477530200008],[-100.81133264599998,51.049351265000155],[-100.5285040259999,51.01312752100006],[-100.18757605599995,51.02508190200018],[-100.09224637799997,51.045278512000095],[-99.88146997799998,51.008722054000145],[-99.60497278099996,50.80033335600001],[-99.49908502899996,50.603062010000144],[-99.47739395799994,50.41860931400004],[-99.65907282799998,50.3500529800001],[-99.79727878899996,50.42911020200006],[-100.117721669,50.399597013000175],[-100.36251061099989,50.48345909000005],[-100.50496688599986,50.61564071200013],[-100.65325199699998,50.6177988230001],[-100.87616777699986,50.68925291100015],[-100.94197140699993,50.76715980100016],[-101.13938153399994,50.84456340600019],[-101.13387328099992,50.99311479200003],[-101.39894828699994,51.08623891100012],[-101.51934029699999,51.24235409700003],[-101.48999749399991,51.292120929000134],[-101.77950972399992,51.342764808000084],[-101.8823700609999,51.31021290800004],[-102.04898103299996,51.32271202700014],[-102.18234260899999,51.41093706900017],[-102.20870996199989,51.52844258200014],[-102.07717891899989,51.55266411400015],[-102.02961798499996,51.48666496200008],[-101.91738201599992,51.53455482700008],[-102.01853932699998,51.64111777300019],[-102.14399774899994,51.71020258000004],[-102.348297501,51.724037957],[-102.56889286299997,51.94577341400003],[-102.68363957899999,51.937861429000066],[-102.68052719699995,51.867332712000064],[-102.84652702999995,51.81515244600013],[-103.24984000199993,51.86932477800008],[-103.49220274899989,51.932305848],[-103.51207763499997,52.091342840000095],[-103.5680927219999,52.20769503100007],[-103.70255302099997,52.34679948100006],[-103.8029487099999,52.39549053600007],[-104.03649139999999,52.403064507000124],[-104.49613895299996,52.55382049000008],[-104.6250693749999,52.429978807],[-104.73298640999997,52.45753760800005],[-104.77131653299989,52.56660855200016],[-104.945036787,52.593195115000185],[-105.03433122899986,52.53941978100005],[-105.03147126999994,52.46107673100005],[-105.40474668999997,52.48731861400012],[-105.36379302499995,52.73256832900006],[-105.4136448839999,52.78072392900009],[-105.60241856399995,52.730640550000146],[-105.76272578899989,52.724443840000106],[-105.86875273899994,52.78051338900008],[-105.97449362799989,52.71307898800018],[-106.02541685399996,52.62486655000015],[-106.16731521699995,52.58733481600018],[-106.23838727999993,52.664678253000034],[-106.27705841999995,52.78359924200009],[-106.40824926699986,52.84390635200009],[-106.61202635899997,52.874942163000014],[-106.64142191199988,53.00950360500019],[-106.79211159899995,53.04349006800004],[-107.091281359,52.96416437200003],[-107.17154016599994,52.894074498000066],[-107.33395452399992,52.897325264000074],[-107.29064924799991,53.02692096200008],[-107.32639434599992,53.08807899900012],[-107.48195569099994,53.0363254290001],[-107.633162874,53.08326914000014],[-107.76892945599997,53.023671739000065],[-107.8965829309999,53.12057315800007],[-108.04457888199994,53.2775345710001],[-108.15413770799995,53.26711279700004],[-108.20189789999995,53.17000567000008],[-108.54387646599997,53.24965213200011],[-108.68762279499998,53.083272695000176],[-108.5564426659999,53.04637872300003],[-108.56468117599997,52.943857573],[-108.81257534399987,53.012824319000174],[-109.06294254799991,53.22597119700015],[-109.1015160209999,53.29175943100006],[-109.30769370099989,53.39427694900007],[-109.45675633199994,53.370420331000105],[-109.56729938699988,53.42958216300002],[-109.54460167399998,53.477746263000085],[-109.63123331599996,53.57775234500019],[-109.75228863899997,53.600349999000116],[-109.83090197799999,53.54686707100018],[-110.07895579699994,53.589380679000044],[-110.3359379929999,53.6688415480001],[-110.63143326699998,53.849011915],[-110.88375044799989,53.872728760000086],[-110.89256276299994,53.74663092200018],[-110.98000395399993,53.69102801300005],[-111.00428546299992,53.473646517000134],[-111.61710216499984,53.58782873700005],[-111.60592745899999,53.806351187000075],[-111.67520189599992,53.841857214000186],[-111.88746589899989,53.76463335400001],[-112.01967766399997,53.87624921700018],[-112.02472725299998,53.953206454],[-112.16352236499989,53.98731079200007],[-112.23600636299989,54.05707417500014],[-112.35588853799999,54.01525980200012],[-112.36025185099999,53.939019843000096],[-112.5039979039999,53.96050315400015],[-112.64862760799991,53.94091582200002],[-112.77632982799992,53.98502710200012],[-112.95082823399991,53.891662042000064],[-113.15500761299995,54.00377321000008],[-113.24461209299994,53.96968776700004],[-113.37248139199994,54.008575578000034],[-113.49762903599998,54.11262296800004],[-113.65779849299992,54.112835137000104],[-114.01098726899988,53.997559044000184],[-114.03891624399995,53.889083498000105],[-113.970901546,53.809851411000125],[-113.9941085459999,53.734606300000166],[-113.89511113599997,53.64591208600007],[-114.02039271499996,53.580283467000186],[-114.08497628999999,53.416897845],[-114.05728992899998,53.31059488000017],[-113.83072637399994,53.11577999300005],[-113.89877303599997,52.81493898700012],[-113.88491847099993,52.634448952000184],[-113.92505707499993,52.53975369900013],[-114.0742053599999,52.563710796000066],[-114.10630752199995,52.38776427300019],[-114.09435248599993,52.170559582000124],[-114.3073806239999,52.24340039000015],[-114.379807385,52.163854055000115],[-114.36798901599991,52.06759070700008],[-114.1589962939999,51.939963761000115],[-114.31860166699994,51.877425190000054],[-114.490494,51.70429403100013],[-114.60604221799991,51.37696588500012],[-114.56228667999989,51.151759196000114],[-114.48959409999992,51.03675605800015],[-114.34969444799992,50.943853368000134],[-114.36456275799992,50.819105207000064],[-114.4481755519999,50.73932418000015],[-114.33080263199992,50.71839842800017],[-114.40178076599994,50.58204382300005],[-114.55214862899993,50.50660332900003],[-114.53531475899996,50.40788168800003],[-114.46122717699996,50.30551875200018],[-114.28003564499983,50.24742346700009],[-114.22091662499992,50.188259471000094],[-114.22757770899995,50.093094908000126],[-113.95587141099992,50.1232667860001],[-113.91542131799997,50.061440724000136],[-113.95377188799995,49.96909124400008],[-113.8546821,49.805513810000036],[-113.97952321499997,49.74281103200019],[-114.15199994499994,49.9834454920001],[-114.19415485399998,49.63484747300009],[-114.11116027599991,49.51694459600009],[-113.92150112099995,49.36240787400004],[-113.87293396999996,49.25243912700017],[-113.66575705099984,49.11949243700019],[-113.45272211699995,49.07111486600013],[-113.44045780499994,48.97152243200003],[-113.32299420199996,48.90288763700005],[-113.3753181059999,48.83006315300014],[-113.32531546999996,48.77176528600012],[-113.31646959899984,48.663320264000106],[-113.23339403799991,48.55301017099998],[-113.26231642099998,48.502645139000094],[-113.09880610499988,48.32809650600012],[-112.96289262199991,48.31799897800005],[-112.83281662699989,48.18050954500018],[-112.70531131899992,48.10977814200015],[-112.6401901349999,47.943494433000126],[-112.61323640599994,47.79813727400011],[-112.7120685839999,47.61285144700008],[-112.59570043099995,47.522656807000146],[-112.68898161499999,47.450952443000176],[-112.66515347199993,47.40269650900018],[-112.51515306399989,47.34641368100006],[-112.37493214699998,47.236452733000135],[-112.43903021199998,47.160689793000074],[-112.3392444459999,47.032983942000044],[-112.48553230399989,46.924183393000135],[-112.53087535799995,46.77041503900011],[-112.30270116899999,46.680124484000146],[-112.30954590099998,46.460998760000166],[-112.218681732,46.47376876000004],[-112.02554546399995,46.382563884000035],[-111.96062213399995,46.40955670400018],[-111.94661536599989,46.512062690000164],[-111.80784674499989,46.52689527500007],[-111.75513191099998,46.49440818200014],[-111.687056983,46.34502241400014],[-111.93158078999994,46.21565666000015],[-112.04659422899988,46.277870206000046],[-112.13707576799999,46.201852102000146],[-112.04116666999994,46.17315317700013],[-111.9692644129999,46.024047729000074],[-112.19947616799993,45.959232727000085],[-112.27316504899983,45.917475250000166],[-112.30621932399998,45.813801861000115],[-112.36412460899999,45.78709291600012],[-112.37363038099988,45.66220333600012],[-112.70670835099997,45.75211933000003],[-112.62718270299996,45.915222310000104],[-112.557824096,45.87242717800018],[-112.457295236,45.945014892000074],[-112.4950722779999,46.058217552000144],[-112.693777706,46.04652907600007],[-112.7503799999999,46.08976973600005],[-112.65226675899993,46.21182810700003],[-112.65254124799998,46.27143187900015],[-112.56534084499992,46.41790425200003],[-112.48708335999999,46.66686918500005],[-112.5519134999999,46.68567720200008],[-112.65862151099992,46.803064210000116],[-112.75729094699983,46.7820406190001],[-112.86345487499995,46.82739189300014],[-113.12138860999988,46.836028541000076],[-113.07426399199989,46.74735685700006],[-112.91320210199996,46.816265522000094],[-112.80385333799995,46.79232848300012],[-112.67045204199991,46.61321812500006],[-112.76843707899997,46.572634260000086],[-112.89738515899984,46.6539806080001],[-112.9816702949999,46.64612714400005],[-113.10634457199995,46.70626919700004],[-113.27456089599991,46.735994261000144],[-113.47558263499997,46.703007617000026],[-113.68764654299997,46.73170236900012],[-113.71975294399994,46.78798828400011],[-114.00241272499989,46.93143812500017],[-114.05565294399992,47.00211896000013],[-114.15690513499999,47.00857506400018],[-114.50679996099996,47.16371461000017],[-114.47900713599995,47.07518357600003],[-114.3826188139999,47.022263697000085],[-114.25122486199996,47.00025803500006],[-114.10087991999995,46.821213051000086],[-114.10013104599994,46.66972565200007],[-114.15832738299997,46.50426435500003],[-114.22808704,46.40755894299997],[-114.23643707599996,46.105337986000166],[-114.20991298899997,45.99413854100004],[-114.12796993799998,45.974090185000136],[-114.15532094499991,46.12146960700005],[-114.01615330499993,46.19981173899998],[-113.96018177799988,46.41178177800009],[-113.89336160599998,46.558785939000074],[-113.91002465599996,46.62265716900015],[-114.04498465399996,46.760590945000104],[-113.98103406399991,46.85202447400013],[-113.89964905599999,46.87010136800012],[-113.72962921599998,46.77357492800019],[-113.6722833209999,46.713872526000046],[-113.32642755299997,46.690615044000026],[-113.32232556899993,46.61913223099998],[-113.40327218399995,46.59014455100015],[-113.2919600439999,46.483133883000164],[-113.1586471839999,46.48781796800017],[-113.07019133299997,46.56068369399998],[-112.87927748099997,46.46149401200012],[-112.86938385699989,46.38432006600004],[-112.9286985469999,46.255041861999985],[-112.91520965799998,46.11408803800009],[-113.16544150499993,45.93787541400019],[-113.32984223499989,45.878387554000085],[-113.41513387199996,45.82030624500004],[-113.63670190599993,45.74806037200011],[-113.680406254,45.60898418700003],[-113.50250992199994,45.28689664500001],[-113.326442521,45.204968437],[-113.18732250099993,45.309382779000146],[-113.16246704499997,45.1942121780001],[-113.30134454199992,45.09320119700004],[-113.43083787899997,44.93287394000009],[-113.3454333979999,44.89903094100009],[-113.32277551599998,44.820660654],[-113.40662487099996,44.75554894900006],[-113.51130880499994,44.85833029500009],[-113.54035746099993,45.011114412000154],[-113.66406446499997,45.12662542099997],[-113.69441429599988,45.19363115300007],[-113.87541624599993,45.389269148000096],[-113.97326376299986,45.10821791600006],[-113.95445115299992,44.98010110800004],[-114.05945345899994,44.93335116000014],[-114.04931544999994,44.83252313100019],[-114.13961105799984,44.755854296],[-114.27866968599994,44.75282405200011],[-114.25938902599995,44.67407724000009],[-114.343222304,44.54755203200011],[-114.27230509099996,44.43917011400015],[-114.33871714699984,44.28199201600006],[-114.25676563099995,44.09113104600016],[-114.16607698799993,44.0190836810001]],[[-114.16607698799993,44.0190836810001],[-114.18006497199991,44.11750501300014],[-114.09903262499995,44.13771559600002],[-114.08102304699992,44.03366708900006],[-114.16607698799993,44.0190836810001]],[[-111.95275674899983,44.414082646000054],[-112.15492184099998,44.39888620500011],[-112.12481049999997,44.55726234500003],[-111.89018709699997,44.607888886000126],[-111.77607314999995,44.578645353000184],[-111.45170641799996,44.62428500500005],[-111.42473686199997,44.80590399700003],[-111.50223857699984,44.85743886700004],[-111.5835845009999,45.018745882000076],[-111.55590517599995,45.17789540100017],[-111.61611145799992,45.257668027000136],[-111.58051641299988,45.32956152200006],[-111.63757202799985,45.46279924100003],[-111.58242792099998,45.55059079000017],[-111.45139037199993,45.46536096400018],[-111.30160855199995,45.479470167000045],[-111.06629133799993,45.585382417000176],[-110.86019018699989,45.65735222500007],[-110.64139257999994,45.617251675000034],[-110.75705175499996,45.52292302800009],[-110.74668901099983,45.48066789100005],[-110.88898557099998,45.308681233000186],[-110.98240971799993,45.23983358800007],[-110.9562569439999,45.151776698000106],[-110.69444543899994,45.31680366400019],[-110.61020890099996,45.3470023910001],[-110.58890455399984,45.43461186500019],[-110.46840664199993,45.640786559000105],[-110.24836938399994,45.540922473000194],[-110.08747706299994,45.59724260600012],[-110.00724787899992,45.67645969400019],[-109.89413408499985,45.649692211000115],[-109.7540397539999,45.69005563300004],[-109.77212975499992,45.570484611000154],[-109.71168280199993,45.519786600000145],[-109.77424795599995,45.35951846400019],[-109.58824946399994,45.276725520000184],[-109.3032252939999,45.18657033400018],[-109.20690381999998,45.07966074600017],[-109.30782541499997,44.99919078],[-109.28319082899998,44.82663147400001],[-109.33420148699997,44.76039954400005],[-109.26298849399996,44.66838397700019],[-109.27090819099993,44.609139777000166],[-109.20086434499996,44.50808976400009],[-109.52461926099988,44.48798678800017],[-109.32721521299993,44.39738105300006],[-109.49126409099983,44.326251868000156],[-109.473027963,44.22936174400013],[-109.19469955499994,44.34516688500014],[-109.13211645299998,44.31407703200017],[-109.16493799199992,44.23243845800016],[-109.3169654109999,44.127546216999974],[-109.23946713599997,44.05882301600019],[-109.14075472299999,44.038481583000134],[-109.10704536599991,43.946429823000074],[-108.93421785999993,43.865000458],[-108.96920702499995,43.751633497000114],[-109.03214254499994,43.67282623800014],[-109.11961578099994,43.66873935600006],[-109.19630796799999,43.59878183200016],[-109.47008165199992,43.68912594700009],[-109.52911185799991,43.658095694999986],[-109.73034354099991,43.65641002900014],[-109.80540211099998,43.60322645500014],[-109.63431785299991,43.490699230000075],[-109.51585641099996,43.45013987800007],[-109.387557373,43.301621364000084],[-109.27974170299996,43.22844235500003],[-109.23932445099996,43.15281467700015],[-109.14170110199996,43.119005955000034],[-109.08071634599997,42.98035161500013],[-108.93662552399996,42.886794407000025],[-108.88700234199996,42.78037330200016],[-108.79839192199995,42.74055787300017],[-108.7574701819999,42.66635017800007],[-108.56675919599996,42.54367371600006],[-108.89656836199993,42.48185815400012],[-109.03444369199991,42.50995449300018],[-109.06964000199991,42.55151916900002],[-109.32044193599995,42.587248398000156],[-109.40066479099994,42.67112362400019],[-109.55332334699989,42.76607318400005],[-109.61059861099983,42.82993638900007],[-109.75775936399992,42.89820796000015],[-109.88309639699997,43.04939868800011],[-109.98690924399995,43.071512518000134],[-109.97410644499996,43.188566544000025],[-110.12159989799994,43.189182025000036],[-110.19639352799993,43.08641388900003],[-110.38603597799994,43.02216699000007],[-110.36169059599996,42.93981968700007],[-110.46537117999998,42.817023216000166],[-110.37239787999994,42.610201276],[-110.43595899099984,42.589294902],[-110.35835834499994,42.34503116600007],[-110.42284190099997,42.223622983999974],[-110.51488552199999,42.16381482300011],[-110.76757095499994,42.13609528600011],[-110.78091084399995,42.002940049000074],[-110.85678579799992,42.01500500600008],[-110.83931062599999,42.21119152900019],[-111.02157826499996,42.23987056500005],[-111.04809314299985,42.4199638070001],[-111.11870629299995,42.44386893000012],[-111.17973421699998,42.344823542000086],[-111.27327547699991,42.3697969430001],[-111.31980221699985,42.45945018500015],[-111.41600216199998,42.27301091000004],[-111.39234256299989,42.04882280100014],[-111.41040763199999,41.989224273000104],[-111.36309200599999,41.89451885300019],[-111.38570502099998,41.80703583900009],[-111.34004357599997,41.76739244300006],[-111.32033750499988,41.437750769000104],[-111.27434567699993,41.39556339800015],[-111.26114173099995,41.24232675500008],[-111.21180345299996,41.14262771200009],[-111.08249229199998,41.18280118100006],[-111.07660307199995,40.962225418000116],[-110.9836268869999,40.95347983400018],[-110.84102813399988,41.00646521600015],[-110.77559718999993,41.06743761200016],[-110.52805726699995,41.128139358],[-110.48831772799991,41.05853607700004],[-110.31112374499997,41.10234279800005],[-110.19840202699993,41.06892729900005],[-110.29699645599993,40.990946895000036],[-110.207065721,40.93193987200016],[-110.001632,40.9437032350001],[-109.87881687499993,40.992240810000055],[-109.71097445899994,40.93696493700003],[-109.61428258099988,40.97490658600003],[-109.38317537699987,40.942286991000174],[-109.25443337299998,40.8679580270001],[-109.36868123899984,40.73879700300017],[-109.53613986999994,40.67597973599999],[-109.6134669029999,40.58892490900013],[-109.93002164299992,40.59775134400007],[-110.0171794929999,40.56495425300005],[-110.09220164899989,40.61431096100017],[-110.15433601999996,40.55318458300002],[-110.57712283299998,40.52053211000009],[-110.57322550499998,40.39899245700008],[-110.6965586039999,40.477492786000084],[-110.81886896299989,40.48739760000018],[-110.96300383799985,40.45523165600008],[-110.86533407999997,40.36988142299998],[-110.892480106,40.29698742300019],[-110.98410585999994,40.23866343100008],[-110.92693083199998,40.14050335600001],[-110.9727653569999,40.09135215500015],[-110.81326830899997,40.026685746000055],[-110.75032196499996,39.91248693500012],[-110.45553628199997,39.81957891000013],[-110.47510723899995,39.752970697000194],[-110.57034340299992,39.72183060900005],[-110.73489656899994,39.72345886300013],[-110.94060736899985,39.803798093000125],[-111.189428008,39.60223573000002],[-111.22748429499995,39.53802059900005],[-111.14131759199995,39.211014723000176],[-111.21417387399998,39.19016010000013],[-111.24873189899989,39.11195877400013],[-111.23702671799998,39.01687702200013],[-111.37826526299989,38.917900346000124],[-111.4239384469999,38.84660934700014],[-111.407013195,38.631492569000045],[-111.46521485499989,38.580083058000184],[-111.41285048599997,38.347545127000046],[-111.47427648799993,38.307847189000086],[-111.34470976099993,38.18691181500009],[-111.27258853699993,38.057203704000074],[-111.39073277499995,37.975748371000066],[-111.66474420799995,37.93610952299997],[-111.93538869299994,37.76014951100018],[-112.04465678499997,37.73704515200018],[-112.14151628999997,37.67267406600013],[-112.17673225399989,37.58292869899998],[-112.26457957999992,37.51032258499998],[-112.25186080299994,37.460803247000115],[-112.39108640399996,37.40516413400019],[-112.5074395179999,37.431120314],[-112.7000812089999,37.41866329200013],[-112.77776267199982,37.50174036400017],[-113.07167776799997,37.4399436330001],[-113.17652981099991,37.533774566000034],[-113.04628333499988,37.72008662300004],[-112.81537942499989,37.83611353600014],[-112.75265531199994,37.887708091000036],[-112.61096405199999,38.12118040400003],[-112.5043770609999,38.14959438000017],[-112.5832487639999,38.25523208200008],[-112.53983774699992,38.32691373200015],[-112.59893395699999,38.505791827999985],[-112.57518592399998,38.69562406700015],[-112.386354897,38.77167015700019],[-112.37197471299987,38.87913629200017],[-112.30914041799997,38.96449098500011],[-112.17502590599992,39.08211631700016],[-112.09791625899999,39.02693217100017],[-112.02546058099983,38.86895658300017],[-112.23344922699988,38.66558412100011],[-112.27740571299995,38.59451011000016],[-112.16092430899994,38.51714537200007],[-112.01424384699999,38.70360695800014],[-111.92540464799998,38.74636549700011],[-111.7953273419999,38.99604631700009],[-111.74871319899995,39.00458172600014],[-111.694553795,39.17587335400003],[-111.82027281999996,39.214160449000076],[-111.91549162799998,39.398068597000076],[-111.8289554669999,39.55625409700019],[-111.82955885699994,39.784309634000124],[-111.79762237099999,39.94934026700008],[-111.72451006199987,40.018872842000064],[-111.65182197699994,40.02358845800012],[-111.55181570999997,40.1350218390001],[-111.62572699499998,40.21657484000008],[-111.65262385399984,40.309728959000154],[-111.77941836099995,40.473276661],[-111.845956388,40.497173684000074],[-111.78908109499991,40.584367835000194],[-111.81292694599995,40.75136923600007],[-111.91542906299998,40.82344528300018],[-111.85169338199984,40.891249202000154],[-111.90216647799997,41.04843766600004],[-111.89460026899991,41.134707715],[-111.95260299799997,41.33761763400008],[-112.02463763899993,41.366018242000166],[-111.98737136699992,41.508613254000124],[-112.048972231,41.6139487260001],[-111.92362704799996,41.59462276400018],[-111.77365861599998,41.518761422000125],[-111.80376405799996,41.662774626000044],[-111.77213932499996,41.7712350920001],[-111.76699972999995,41.96095992199997],[-111.71772771799994,42.072700027999986],[-111.73861013299995,42.15799665600019],[-111.65300384199992,42.44197691900018],[-111.70379121199994,42.63325267500011],[-111.54136011899999,42.596349879000115],[-111.49101383699997,42.630076646000134],[-111.53944953599989,42.72042729200018],[-111.47732897999998,42.993158883000035],[-111.57064243199994,43.03152863300005],[-111.72039104399994,43.21268909800017],[-111.6986071369999,43.417530720000116],[-111.63636167499999,43.54905086100007],[-111.43280920199999,43.498572852000166],[-111.48954452499999,43.6002733900001],[-111.64333345399996,43.6048405410001],[-111.66072997899988,43.65906681000018],[-111.46549667599993,43.72358208600002],[-111.37277086799998,43.814733297000146],[-111.29144760999998,43.781619318000025],[-111.16404042399995,43.57659712800012],[-111.10193256399998,43.569012520000115],[-111.00960423299989,43.761782033000145],[-111.09646227399998,43.86656622900017],[-111.17656244799997,44.043234514],[-111.27913206499983,44.105819767000185],[-111.50780121399993,44.14015260200006],[-111.67928680099999,44.308807221000166],[-111.688053089,44.391321742000116],[-111.46548373699994,44.426050978000035],[-111.60468674699985,44.496710271000154],[-111.77855905099983,44.44617793400016],[-111.8903763749999,44.48032813000009],[-111.95275674899983,44.414082646000054]],[[-108.65819763299993,45.19965211900012],[-108.69507673599998,45.346477964000144],[-108.56227040399989,45.334796294000114],[-108.40929732399985,45.36087180000004],[-108.36081367699984,45.23299467900006],[-108.26784007599997,45.13671865800012],[-108.26675546999991,45.0390826790001],[-108.43855842699992,45.041654569000116],[-108.61907148099993,45.10935701200003],[-108.65819763299993,45.19965211900012]],[[-108.00166770699991,44.900918024000134],[-108.01651414799989,44.998411451000095],[-108.1114257669999,45.2122118800001],[-107.96167037299989,45.24961281500015],[-107.73498260399992,45.00394877600007],[-107.59644476399984,44.94330242500007],[-107.47179828499998,44.933659462000094],[-107.31151099499994,44.82529392100014],[-107.18758146099998,44.69611292900015],[-106.89408628199993,44.57597244700003],[-106.9221006809999,44.457628964000094],[-106.81695773299987,44.3089526710001],[-106.82758326499999,44.17334547400003],[-106.79790103299996,44.08114100500018],[-106.91250873199994,43.935401125000055],[-106.96513482199992,43.81507881600004],[-107.0638501649999,43.714895378],[-107.12875340499994,43.725945454],[-107.11049530899993,43.87308975999997],[-107.18878564199997,44.003287508000085],[-107.31190606999996,44.06411660100002],[-107.39584354199985,44.24093249700013],[-107.4799793389999,44.30518698500015],[-107.51930744799989,44.436252753000076],[-107.62110673999996,44.49400842200015],[-107.62932392599987,44.56160332200011],[-107.79053642799988,44.644495126000095],[-107.8321026459999,44.73029205600011],[-108.01260210399994,44.82281129300003],[-108.00166770699991,44.900918024000134]],[[-106.44063525599995,42.76604964100011],[-106.20810754099995,42.773517324000125],[-106.14423362199994,42.68186209300006],[-105.91211458199996,42.777892352000094],[-105.75437706999992,42.77892180900005],[-105.47980028499995,42.73296073200015],[-105.40794342499998,42.64295704300014],[-105.50204230999998,42.567962195],[-105.4653037359999,42.47239645500014],[-105.35120091599998,42.598765264000065],[-105.23497204299991,42.61642483500009],[-105.14129963299996,42.52662466300012],[-105.15312495999996,42.47214978699998],[-105.03984960299994,42.38285055],[-105.05265180999993,42.33096538000012],[-105.19794897599996,42.2771326890001],[-105.22977929999996,42.170923203000086],[-105.15970908999992,42.072340752000116],[-105.2524027149999,41.98535802600003],[-105.18591235699995,41.94319726800006],[-105.25295477199995,41.81020138500003],[-105.16087359699998,41.796983795000074],[-105.00382745899998,41.840132238000194],[-104.898861233,41.78788805900018],[-104.95450096899998,41.729010755000104],[-105.03014057099995,41.42542453300018],[-105.14413837799998,41.389847491000126],[-105.10566566499989,41.203375258000165],[-105.15236086299996,41.09932915200011],[-105.0901545879999,41.06825317200014],[-105.13334545599997,40.96788676900019],[-105.11999175099987,40.88132844600017],[-105.1615970179999,40.8086403800001],[-105.14310365599982,40.440216195000176],[-105.20484013899983,40.40373451700003],[-105.19603948099996,40.222862527000075],[-105.27910959299987,40.14669117600005],[-105.29041094799987,40.03861385000005],[-105.26930269999997,39.88342644200003],[-105.07217855399989,39.44708165499998],[-105.02270403799997,39.39347878800015],[-104.82312069999995,38.98948537500013],[-104.88531569699995,38.866022408000106],[-104.8287250059999,38.74334684799999],[-104.8392523519999,38.48016701100016],[-105.05244071199996,38.49535228800005],[-105.12652961599991,38.47601372100007],[-105.26407660299992,38.4952063720001],[-105.26326595299992,38.39888780900003],[-105.20381628999985,38.3056146350001],[-105.1151885669999,38.256273170999975],[-105.09461991999996,38.19662740600006],[-104.99140144999984,38.16492660400007],[-104.94367729099997,38.02825477700003],[-104.86829275399992,37.95302554000011],[-105.05264836599991,37.66130578899998],[-105.08328562399998,37.54131274200006],[-104.99084801799995,37.48393518900019],[-104.7979384649999,37.58559571000012],[-104.68402828699993,37.50449049200017],[-104.66108095999994,37.41247170000014],[-104.49701663199994,37.24750546000013],[-104.53119952399999,37.16254607400015],[-104.37149433999991,37.100466404000144],[-104.22580515599998,37.06849219200012],[-104.13549840899992,36.987681560000055],[-104.02015159499996,36.96477882000005],[-103.90113369399995,36.99449985300009],[-103.91622644599994,36.860907651],[-104.06321374399988,36.882457701000135],[-104.28445976299997,36.812185707000026],[-104.36212900499993,36.91420703500006],[-104.42292857899997,36.91466020400014],[-104.54145163599998,36.80317976500004],[-104.54780168799994,36.756790832000036],[-104.71246716699994,36.62775963500013],[-104.90793877799996,36.54729732100009],[-105.019063056,36.47051506400015],[-104.94759776799998,36.403457058000185],[-104.88650306799997,36.25418745100012],[-105.18032039299999,36.085976254000116],[-105.24456444199984,35.95208558100012],[-105.23260008499994,35.85882526200015],[-105.26937866999987,35.7352116350001],[-105.23588294199999,35.5325814360001],[-105.30881011499997,35.54114738499999],[-105.35435465199998,35.41737346800005],[-105.52357337999996,35.42894894199998],[-105.51253596899994,35.35572485300014],[-105.56455087099994,35.3021930000001],[-105.65681648199995,35.436325044000114],[-105.77957476899996,35.540470349000145],[-105.85455195699996,35.504058667000095],[-105.93027035599988,35.59959825900012],[-105.90166722599997,35.66769499000014],[-105.92267207699996,35.77131021800005],[-105.91103265199996,35.92055572700008],[-105.85292918799996,36.01754134500004],[-105.90439529599985,36.05473544400019],[-105.87111315599998,36.17277564500006],[-105.71804114599996,36.304643794000185],[-105.6004652979999,36.32969737500002],[-105.51651066499994,36.44772168800017],[-105.56203132999991,36.54177928000013],[-105.66504393999998,36.5708165850001],[-105.62263376599998,36.6781858650001],[-105.57402681599996,36.70141540300011],[-105.53252302199996,36.943434984000135],[-105.45412004299999,36.9280040430001],[-105.38578897199994,36.99021456500009],[-105.34442188399998,37.12876170099997],[-105.40049972199995,37.27676592000017],[-105.39622689899988,37.3678585240001],[-105.48662645099989,37.495714909000185],[-105.58953926099997,37.54970960600008],[-105.59228853399998,37.623695241000064],[-105.50423957799995,37.751597272000026],[-105.5070514539999,37.808405601],[-105.63862684899993,37.89201878900019],[-105.74757766999994,38.04663412600007],[-105.85467083499992,38.26942651100012],[-106.05088439999997,38.42905613900018],[-106.02140404899995,38.234508586000175],[-105.95568511699997,38.188368396000044],[-106.09165735899995,38.12035979600017],[-106.31135763699996,37.811335983],[-106.33013441199995,37.73376167700019],[-106.45000583099988,37.74047915900019],[-106.55163610599999,37.70048015200007],[-106.41813009599991,37.61669455600003],[-106.29992914299993,37.6340068290001],[-106.21214458999987,37.46830478000004],[-106.24808583899994,37.380076781000014],[-106.20314361899995,37.172493248000194],[-106.21796791899993,37.1268982360001],[-106.10600896399995,37.05010993200011],[-106.16006813499996,36.996446663000086],[-106.0743246159999,36.87817092800009],[-106.10801145199997,36.82719127600018],[-106.03769868499995,36.69629600900004],[-105.98571302499988,36.69619079700004],[-105.91226411199995,36.44902865400013],[-106.06232843999999,36.31964454400003],[-106.20348668299982,36.364299004000145],[-106.26306120999999,36.300219926000125],[-106.55513388999992,36.320677874000125],[-106.59859656899982,36.1759851060001],[-106.43120236899989,36.23119998200019],[-106.24522462399989,36.1590512730001],[-106.14043511999989,35.9900319410001],[-106.17164241699999,35.84872942300012],[-106.27550829299986,35.73268032900012],[-106.500099477,35.56610512300017],[-106.56800811399995,35.543857957000114],[-106.73943143899999,35.628000579],[-106.85404425299993,35.566631621000056],[-106.92070528999989,35.696956231000115],[-106.89901065099997,35.760137018000194],[-106.91528568399991,35.97462942400011],[-106.944755623,36.0448510010001],[-107.02832434499999,36.06556719000008],[-107.22485821099997,36.240458028000035],[-107.16353197799998,36.31110672000011],[-107.32062479499996,36.41036048400008],[-107.25671984499996,36.47090548900019],[-107.32856951699995,36.51865570800004],[-107.3297454829999,36.81840911500012],[-107.26841610599985,36.855378773000155],[-107.28461590999996,36.92916952400003],[-107.40834972699997,36.97122071000018],[-107.44195492199987,37.04045363200015],[-107.5234650129999,37.06045491200018],[-107.54973812299994,37.1461336270001],[-107.50287935699998,37.21890952000018],[-107.6544783899999,37.27856683800013],[-107.73177539499994,37.250425113],[-107.84846572499993,37.322045635],[-107.90614390999997,37.20653807100001],[-107.99752421799991,37.184907863000035],[-108.02413390999999,37.27853322400017],[-108.15875032799994,37.31988408500007],[-108.2262422309999,37.39377610200012],[-108.40332093299997,37.40379988500018],[-108.48477780699989,37.54810346500017],[-108.69779762099995,37.646570792000034],[-108.6927110179999,37.712455126],[-108.77545023599998,37.88962882600009],[-108.5281547759999,37.77080387100011],[-108.47285539799992,37.834821187000045],[-108.51043371899993,37.932830391000095],[-108.41661996599998,37.980354900000066],[-108.34619748499983,37.923790976000134],[-108.28077183299996,37.96250588900017],[-108.17425261999989,37.947027956],[-108.23763621999996,38.157951874000105],[-108.16703510399992,38.20125609900015],[-108.51063171399989,38.372319306000065],[-108.832832812,38.62276264600007],[-108.77100006099994,38.75024602700017],[-108.58591244799993,38.755233179000186],[-108.61612682699985,38.64818163900014],[-108.49061847099989,38.60224282300004],[-108.47413312299994,38.55431402200003],[-108.3308501699999,38.554011373000094],[-108.18008452999999,38.43324251299998],[-108.06418454199985,38.38997064000017],[-108.02638447199996,38.33301348400005],[-107.87371781399997,38.25898394900014],[-107.72403557099994,38.135601534000045],[-107.6844590039999,38.20652933000008],[-107.72202716499993,38.28281454200004],[-107.69987323899994,38.402793712000175],[-107.58075267199996,38.416781558000025],[-107.54993974399991,38.34893246399997],[-107.43394680599994,38.39676351500009],[-107.57074869199994,38.51167321000008],[-107.53846836799988,38.7290271],[-107.57099994099997,38.80374221800008],[-107.50372573399994,38.86411153600011],[-107.54259264199999,38.92668224100015],[-107.75416787899997,38.88660173700015],[-107.93603791999993,38.97341579900012],[-108.04379730799991,38.947919175000095],[-108.12345096999985,38.8747473140001],[-108.20009460999995,38.874837273000026],[-108.2313262049999,38.98813621700003],[-108.2862398119999,39.057124582000085],[-108.24094926399988,39.11636847300019],[-108.13483626099998,39.10477100000014],[-107.78370757799985,39.27622967600013],[-108.07022284299995,39.334239860000025],[-107.97373508399988,39.453654332000156],[-107.81419277999987,39.490247871000065],[-107.71960906699996,39.42304653200006],[-107.71925151999989,39.36265462800009],[-107.61158616999995,39.35817208100019],[-107.436428262,39.593150036000054],[-107.56444536399994,39.66945508700013],[-107.81032703099993,39.685353518000056],[-107.89074095399997,39.72512727700018],[-107.92384084199989,39.863639929000044],[-107.84638721699991,39.944394234000185],[-107.68060615599995,39.98561789000013],[-107.74170020499992,40.11610107600018],[-107.73506832899994,40.171579566],[-107.60610304399995,40.23171369000016],[-107.6375343329999,40.42178773600011],[-107.42532631299997,40.45969451800005],[-107.32760090399995,40.38909071300009],[-107.24333668499997,40.43178467600006],[-107.13959551299996,40.40214666800006],[-107.16979261599994,40.53672935000003],[-107.2884398,40.57666362200018],[-107.33046593499995,40.675300714000116],[-107.51278674299994,40.73127611400008],[-107.5455394569999,40.84872986000016],[-107.5048671649999,40.96033464100009],[-107.38495640799994,40.98469942700001],[-107.47889434099994,41.1229479050001],[-107.49847109999996,41.30307720200017],[-107.460497106,41.35581952600012],[-107.4812985349999,41.45420367600008],[-107.40002880599991,41.54316580300008],[-107.14660555899997,41.351523402000055],[-107.02264134799998,41.32409975600018],[-106.83632550399989,41.188300136],[-106.77060031699995,41.18899563800005],[-106.58990779399988,41.113167400000066],[-106.50583760599994,41.11682315200005],[-106.6099214759999,41.25835249100004],[-106.57028405499989,41.3729304420001],[-106.64420630799998,41.481579199000066],[-106.61553706899991,41.60304410800006],[-106.65721490599992,41.669475493000164],[-106.55790911199995,41.72770894000013],[-106.48011106699983,41.59961704400001],[-106.2499888609999,41.618328548000136],[-106.16277108799994,41.577361745000076],[-106.02035935999993,41.41813825100007],[-106.07162108499995,41.31030524700003],[-105.98660117999992,41.2099985750001],[-105.98551585299998,41.04789023900008],[-106.08142731099997,40.97018706799997],[-106.04462051799993,40.914152174000094],[-105.87868526599993,40.816448347000176],[-105.80246672599992,40.92431189000018],[-105.7095181439999,40.967922774000044],[-105.66413531499995,41.045421138000165],[-105.49401716199998,41.063657401000114],[-105.53890663699997,41.21007689400011],[-105.49540406099999,41.41342648400018],[-105.54010966299995,41.65499888300013],[-105.50411163399997,41.76540772200008],[-105.48299812,41.97613023100013],[-105.63935527299998,42.05635376100014],[-105.69796305399996,42.13830099500012],[-105.88816284299998,42.310613734000185],[-105.94975930499993,42.40323033600015],[-106.10756383799998,42.44953733600016],[-106.27284827899996,42.39430620600018],[-106.41261075699987,42.459053291000146],[-106.422382659,42.650004343000035],[-106.57099171099998,42.74843581300007],[-106.44063525599995,42.76604964100011]],[[-106.08459351099992,35.29308794600013],[-106.23405821399996,35.13466654000018],[-106.13292419899989,35.00629922600007],[-106.13508526099992,34.92602835500014],[-106.24329470499998,34.74763696100007],[-106.30783710399999,34.72535572900017],[-106.3438791939999,34.63743496200004],[-106.34251092999995,34.49232598700013],[-106.55682094399998,34.2877885800001],[-106.66071447999997,34.27463852700015],[-106.4976801819999,34.47076713500019],[-106.52409443,34.62814485700005],[-106.43809675699998,34.86302408600011],[-106.49628486899991,35.01600696000003],[-106.4716727149999,35.15138082200008],[-106.5047145989999,35.26319173900015],[-106.37776254299996,35.317229919000056],[-106.27960473399997,35.26739448600017],[-106.21679309399997,35.36417509400019],[-106.14040993499992,35.40102811000014],[-106.08459351099992,35.29308794600013]],[[-106.29054634299996,33.817130421000115],[-106.20044683799983,33.738317000000166],[-106.39356995299994,33.69956803399998],[-106.38172209899994,33.80130449100017],[-106.29054634299996,33.817130421000115]],[[-105.81216800799996,33.779389577000074],[-105.78087436399994,33.894296281000095],[-105.65081250799994,33.968604624000136],[-105.56782988499998,33.95093923500019],[-105.57311273,33.83668635000015],[-105.51125977099997,33.695555081000066],[-105.33503239399988,33.704034449000176],[-105.21919278299998,33.68418081600015],[-105.15167502799989,33.56604476900003],[-105.17384233699994,33.48184697500017],[-105.26628524399996,33.369882167000014],[-105.22227534099994,33.32531508400018],[-105.15522867499993,33.08391935100008],[-105.18474187599992,33.04132677700005],[-105.18189372999996,32.89885183700005],[-105.25326777399982,32.80886916400004],[-105.24621212199992,32.756313577000185],[-105.14329510699991,32.71345197],[-105.08191926999984,32.61961543100011],[-104.87333290899994,32.52335222700009],[-104.64592810299985,32.2336616230001],[-104.42601339699996,32.22434025000007],[-104.48133582799994,32.15837133600013],[-104.72252945799994,32.01470017300005],[-104.8264071889999,31.86911210300019],[-104.93354437999983,31.91950230800012],[-104.96433093199983,32.037585879000176],[-105.00752041599992,32.06614754300011],[-105.01801662699984,32.22198647000016],[-104.94153411199983,32.28608223700007],[-105.12953017399991,32.4129357760001],[-105.18133076799995,32.504079263999984],[-105.30508843099989,32.43622215700009],[-105.37117397699996,32.437859993000075],[-105.40357648499997,32.3531830120001],[-105.5804001969999,32.518676224000046],[-105.80757935899999,32.53930775800018],[-105.93402703599986,32.813655425000036],[-105.88599912599989,32.99401982900008],[-105.92391898299991,33.13807238000015],[-105.98353217999994,33.17133940400004],[-105.93809469799999,33.33552591000017],[-106.02607351699987,33.42638438700004],[-105.85906916899995,33.55696980200014],[-105.71918464099997,33.62652683400006],[-105.80654201599998,33.70297692100007],[-105.81216800799996,33.779389577000074]],[[-100.54774459499998,22.254185005000068],[-100.54721854699989,22.39168777900005],[-100.49534562999997,22.54868552000005],[-100.48738852199989,22.70615918500016],[-100.43321963499994,22.745414152000137],[-100.40357166999996,22.84678991800007],[-100.24769559499993,22.741861231000087],[-100.42160063999995,22.49252844500012],[-100.41997555699999,22.325056175000043],[-100.49457566899991,22.174164148000045],[-100.50405861899992,22.038797418000172],[-100.47293862399988,21.972689012000103],[-100.19049061499999,21.947021613000118],[-100.10865054999994,21.849944589000074],[-100.11524157599996,21.760185470000067],[-100.02572653799996,21.684200836000116],[-99.89568365699995,21.68396077800014],[-99.90699754999997,21.56385330200004],[-99.88617656699995,21.478268036000145],[-100.00267764599988,21.48142080500014],[-100.03540763599995,21.65288336300017],[-100.13829750999997,21.678424028000165],[-100.22820264099994,21.64316806700009],[-100.34548960699988,21.70607140100003],[-100.40590653299995,21.701384743],[-100.51464060399991,21.754348984000103],[-100.50815552499989,21.815056761],[-100.66925067499989,21.902580762000184],[-100.63709266599994,21.94304071200014],[-100.7084426109999,22.063981349000187],[-100.69484766699992,22.13106457000015],[-100.75981864799996,22.316216620000034],[-100.63860358799997,22.252245264000067],[-100.54774459499998,22.254185005000068]],[[-100.45776352399992,21.59631339600014],[-100.41401652699994,21.648935655000173],[-100.28964266199989,21.63023562900014],[-100.19659465199999,21.529146021000088],[-100.30741866699998,21.36293522700015],[-100.53480561899994,21.371524666000028],[-100.57676659999993,21.454565187000128],[-100.69078864599999,21.505570409000086],[-100.62783854199995,21.5729629220001],[-100.49261463899995,21.542000340000072],[-100.45776352399992,21.59631339600014]],[[-99.51126862199993,20.80982684700001],[-99.53369155499996,20.723770853000076],[-99.6079716449999,20.71914504800003],[-99.7163236699999,20.787621174000094],[-99.69333663499998,20.94134460800018],[-99.56640662599995,20.9919538690001],[-99.4685515939999,20.942998358000068],[-99.51126862199993,20.80982684700001]],[[-100.08155051599988,21.112390083000037],[-99.98727455699998,21.077316009000185],[-99.96945161399987,20.98415132300005],[-100.04575358699992,20.875884291000148],[-100.11879751499993,20.84583600600007],[-100.23757159699989,20.860551946000157],[-100.33020051199998,20.801872254000102],[-100.40030658299997,20.857636385000035],[-100.38171350999988,20.981339194000157],[-100.27828266899996,21.01521633200008],[-100.2159425989999,21.09779601600019],[-100.08155051599988,21.112390083000037]],[[-102.7937236649999,22.24866015700013],[-102.68891852699994,22.435356321000086],[-102.55510764599995,22.46427975500012],[-102.51352653299989,22.43708634600017],[-102.508766617,22.286553232000074],[-102.44574761399997,22.232688273000065],[-102.518569588,22.160861900000043],[-102.44351953599994,22.112304529000028],[-102.37437453499996,21.995634807000158],[-102.50729358199993,21.934094204000132],[-102.55408454999997,21.862008160000187],[-102.65467861999997,21.88423696700005],[-102.6491165569999,21.96376446400012],[-102.71237964199992,21.995401958000173],[-102.74966452699988,21.905778626000142],[-102.83650154599991,21.802841311000066],[-102.88667260099999,21.897469142000034],[-102.78119657599996,22.117759472000103],[-102.81983161699998,22.19578526800018],[-102.7937236649999,22.24866015700013]],[[-101.13561255999997,22.095229587000176],[-101.28083758199995,22.08511296500012],[-101.22349564199999,22.18444874300019],[-101.17129566299997,22.211522291000108],[-101.10699456299994,22.15597139500011],[-101.13561255999997,22.095229587000176]],[[-101.14043466899994,21.9877351990001],[-101.14374552099997,22.036703786000146],[-101.02342262999991,22.08734087500011],[-100.92129567799992,22.032755910000162],[-100.98392458799998,21.86963250700012],[-101.0369416339999,21.811108885000067],[-101.14615665899998,21.91523911200005],[-101.14043466899994,21.9877351990001]],[[-101.22491452999998,21.671313324000153],[-101.24052465099999,21.737071870000022],[-101.20584067099992,21.837268470000083],[-101.07211260299994,21.757457832000114],[-101.11163361199993,21.689632477000032],[-101.22491452999998,21.671313324000153]],[[-101.07428753899995,21.516498902000023],[-100.92695664699983,21.644587794000074],[-100.85166955499994,21.654159424000113],[-100.82058761399986,21.57413957400007],[-101.03811660899999,21.385289931000045],[-101.11497463799998,21.398831398000027],[-101.1344605509999,21.488704511000094],[-101.07428753899995,21.516498902000023]],[[-101.41931165199998,21.393567562999976],[-101.46314263499988,21.505991516],[-101.33698258699997,21.527225224000063],[-101.25332666699995,21.476353106000147],[-101.28330957299994,21.398581282000123],[-101.36070253499992,21.331089863000102],[-101.41931165199998,21.393567562999976]],[[-101.57057164499997,21.46256169000003],[-101.482208615,21.435435337000058],[-101.45175162899994,21.36862301900004],[-101.50758365399997,21.166849152000168],[-101.56040154599998,21.16411011400004],[-101.770408622,21.235674132000156],[-101.74938965799998,21.39072777400014],[-101.71492763099991,21.43018658900013],[-101.73035452399995,21.548757998000042],[-101.79730262899994,21.657984087000102],[-101.75346359899993,21.733052915000144],[-101.59672552899991,21.533646767000164],[-101.57057164499997,21.46256169000003]],[[-102.00042765899997,21.526838147000092],[-101.9598615939999,21.42300899800017],[-102.04405965599989,21.41479624200008],[-102.05126155499988,21.337917593000157],[-102.1163106549999,21.331931070000167],[-102.14002255599996,21.43931615800011],[-102.07937663699994,21.508370131999982],[-102.05884566799995,21.621172277000028],[-101.94528965599994,21.623974012000133],[-101.84670254799994,21.687580419000028],[-101.82691958099997,21.58879499600016],[-101.90170258499995,21.535647695000023],[-102.00042765899997,21.526838147000092]],[[-101.93108367099995,21.907134483000107],[-101.81801565199993,21.958792990000177],[-101.82885764399992,21.78784994199998],[-101.88732158699997,21.77490375700006],[-101.93108367099995,21.907134483000107]],[[-103.30666361799996,22.16643268100006],[-103.38101964899988,22.21629595200011],[-103.28245567599993,22.274561914000174],[-103.24459059599991,22.192260174000182],[-103.30666361799996,22.16643268100006]],[[-100.48742657599996,20.861650981000025],[-100.57866660999991,20.91684598100005],[-100.58070357999998,20.99442854200015],[-100.51036851599997,21.002371233000133],[-100.42514752699998,20.927395277000187],[-100.48742657599996,20.861650981000025]],[[-99.44617459499995,20.575820036000096],[-99.3627625879999,20.464143414000148],[-99.52225461499995,20.44374353800015],[-99.44617459499995,20.575820036000096]],[[-99.28957365399998,20.21930332800008],[-99.36588266799993,20.20049232600013],[-99.39671365499999,20.256414204000066],[-99.29372353399998,20.351358704000063],[-99.28957365399998,20.21930332800008]],[[-101.18489865399994,22.442943117000084],[-101.25205261799988,22.529311421000102],[-101.12473251499989,22.549478280000073],[-101.11419662999998,22.483090925000113],[-101.18489865399994,22.442943117000084]],[[-101.95046967199988,25.245869143999982],[-102.13574962999996,25.296954664000168],[-102.04446466899992,25.38053464400008],[-101.93599663899994,25.347638189],[-101.859580672,25.27491277400003],[-101.766448675,25.262250232000042],[-101.7798156319999,25.191193822000173],[-101.85739165399997,25.192215743000077],[-101.95046967199988,25.245869143999982]],[[-101.63038658199997,25.107167589000028],[-101.72695951799989,25.18715575600004],[-101.71076953699998,25.311993978000032],[-101.58012366099996,25.30222034400009],[-101.45114159399998,25.264731276000134],[-101.30859358399982,25.255328792000057],[-101.2339016069999,25.116724299999987],[-101.36825563599996,25.109406731000036],[-101.49022657599994,25.06676161900009],[-101.63038658199997,25.107167589000028]],[[-104.28708661899998,24.571306651000043],[-104.34167460199996,24.64544710000007],[-104.24816860499999,24.777232578000053],[-104.14533958399994,24.730598854000164],[-104.20259066499989,24.6216731720001],[-104.28708661899998,24.571306651000043]],[[-103.96385964599995,24.02310067899998],[-104.00016066199993,24.102054854000073],[-103.94107059199996,24.20531353100006],[-103.76329059299985,24.170949237000173],[-103.66565667599991,24.049411305000035],[-103.7641445409999,23.916431908000106],[-103.757125536,23.724519685000132],[-103.68513454299995,23.672736455000177],[-103.69896652699998,23.58318084900003],[-103.78672052699983,23.53455022000003],[-103.84706855399997,23.57677506300007],[-103.90573164999995,23.815317155],[-103.99103561999988,23.97842094400005],[-103.96385964599995,24.02310067899998]],[[-101.63572652499994,24.714409711000144],[-101.44844865599993,24.664262125000107],[-101.40125267399998,24.520232195000062],[-101.4871366719999,24.454363176000186],[-101.5371015319999,24.56706071400015],[-101.61390658699997,24.57268966500004],[-101.59913666799991,24.659908397000095],[-101.63572652499994,24.714409711000144]],[[-101.02423064599998,24.594744464000144],[-100.95184352399991,24.57138058000004],[-100.98727466699995,24.489656521000086],[-101.09970063099996,24.509433621000085],[-101.1527325969999,24.631796500000178],[-101.03891758399999,24.64041427000018],[-101.02423064599998,24.594744464000144]],[[-100.21818559599996,23.90475977300008],[-100.14248661699992,23.751725332000092],[-100.29486056499996,23.785100561000093],[-100.21818559599996,23.90475977300008]],[[-100.18712662199988,23.52842573100014],[-100.13380464199997,23.651668374000053],[-100.049278513,23.625012581000135],[-100.03656752399996,23.462704066000185],[-100.10755956199995,23.436778337000135],[-100.18798056999992,23.46894657300004],[-100.18712662199988,23.52842573100014]],[[-100.72115359899993,23.63021439000005],[-100.79932356399996,23.451752607000117],[-100.89695764799995,23.41726241599997],[-100.92612465999997,23.555865232000087],[-100.89089954399992,23.66866637100003],[-100.90083360799997,23.745616768000048],[-100.79437254099992,23.737566118000018],[-100.72115359899993,23.63021439000005]],[[-101.04824865399996,23.194416612000055],[-101.12760951899998,23.203087188000154],[-101.13964056799989,23.353477474000158],[-101.04422751999994,23.300755303000187],[-101.04824865399996,23.194416612000055]],[[-99.94628151899997,23.038885705000098],[-99.92445353399995,23.14443331200016],[-99.95549758899995,23.209037836000107],[-99.8738935589999,23.236671463000107],[-99.85548354699989,23.129421156000035],[-99.88926663999985,23.021539524000104],[-99.94628151899997,23.038885705000098]],[[-103.03469851999989,23.122984525000106],[-102.91757164899997,23.13184604000014],[-102.91477963699998,23.033925126999975],[-102.96086853799989,22.909504659000106],[-103.04401366499997,22.95133035599997],[-103.11048852699992,23.06412445300009],[-103.03469851999989,23.122984525000106]],[[-109.6407466519999,23.181762453000147],[-109.56907668599996,23.114487957],[-109.69387065099994,23.0839065830001],[-109.6407466519999,23.181762453000147]],[[-109.47813454499999,23.368018903000063],[-109.44270356899995,23.31375144400016],[-109.46671252499993,23.240553457000146],[-109.53679663499992,23.194918856000072],[-109.63386561199991,23.26096423000007],[-109.64572164599997,23.35938219000019],[-109.60112757499991,23.470800650000058],[-109.50373052999987,23.497519307000175],[-109.47813454499999,23.368018903000063]],[[-98.98802161099991,24.492990339000073],[-99.08773759299999,24.54549391000006],[-99.17695658199989,24.52995771700006],[-99.12124659699998,24.656112401000087],[-99.05500760199993,24.676871525000138],[-98.98024756299998,24.62997561500009],[-98.98802161099991,24.492990339000073]],[[-98.61109966199996,24.615438545000018],[-98.728675636,24.549729621000154],[-98.78205058899988,24.65855036100004],[-98.72338866599989,24.718844408000166],[-98.63064558999997,24.678091260000087],[-98.61109966199996,24.615438545000018]],[[-100.42627757499997,26.307121855],[-100.45627556799997,26.20509246800009],[-100.54448654999999,26.372666829000025],[-100.57007566199991,26.587209185000177],[-100.47909563499996,26.45096721600015],[-100.42627757499997,26.307121855]],[[-99.96538555199999,26.108390954000072],[-100.05302455299989,26.19429992900018],[-100.05428351499995,26.28530996300009],[-99.92803160099999,26.239980799000136],[-99.91918953099997,26.120084379000104],[-99.80793753599994,26.105626937000068],[-99.78805566199998,26.056517199000155],[-99.8329005199999,25.915867690000084],[-99.90573154699996,25.973954111000182],[-99.96538555199999,26.108390954000072]],[[-101.69683864599989,27.859062074000178],[-101.63655851299995,27.85320010700019],[-101.48412354499999,27.7601390210001],[-101.5308915469999,27.72183791400016],[-101.70381155099994,27.809538941000028],[-101.87893666599996,27.810923966000132],[-101.94647955,27.83655599400015],[-102.036125514,27.956986844000028],[-102.13227063699998,28.15279464000014],[-102.1473615829999,28.231186557000058],[-102.11368561099994,28.34502084900015],[-102.20563458599997,28.338696200000072],[-102.21920052899998,28.256750523000107],[-102.31648257299997,28.157049629000028],[-102.38037865899997,28.33012436300004],[-102.25215951299992,28.329276450000123],[-102.24724553799996,28.399499699000046],[-102.37160465099993,28.62757346400008],[-102.46013665899994,28.639580876000082],[-102.45270559899996,28.48947490400019],[-102.53086852299992,28.48164922300009],[-102.48176565699993,28.37536149400006],[-102.48511456299991,28.303718350000167],[-102.56648255899995,28.303041428000142],[-102.61975860599989,28.422165539000105],[-102.65756953899995,28.605573147000086],[-102.54361756499998,28.72942129900008],[-102.69124567899996,29.020824533000052],[-102.66243758099995,29.07072267400008],[-102.79647862899998,29.09543068000005],[-102.89232917899994,29.248952557000052],[-102.84104956699997,29.31467612200015],[-102.77309462799997,29.274123804000055],[-102.67607158399994,29.282126510000126],[-102.60510251299996,29.225825601000167],[-102.6023946549999,29.128651515000115],[-102.53141753699998,29.00712632400007],[-102.41041554499992,28.990824696],[-102.47139757799988,28.813759003000143],[-102.37861661599993,28.795531716000028],[-102.4146886389999,28.67489249300013],[-102.19744161099993,28.599429548000103],[-102.0960995399999,28.51512604200019],[-101.99679561199997,28.51173103600013],[-101.96022067499996,28.384354103000135],[-102.00649263599996,28.362667940000165],[-101.87556462599991,28.103033963000087],[-101.89801756599996,28.012377477000143],[-101.80559551599998,27.90684194000005],[-101.69683864599989,27.859062074000178]],[[-101.90915661199989,29.29771081400014],[-101.8548886499999,29.228757591000146],[-101.67410256599987,29.22149567800011],[-101.63774052899998,29.12326547200007],[-101.51557160799996,29.060870920000127],[-101.576339567,28.81095190400015],[-101.46999366799992,28.792893596000056],[-101.39788851299988,28.744471509000107],[-101.50102263499997,28.684528161000117],[-101.52301054699984,28.523630488000038],[-101.6388165969999,28.52736546500006],[-101.70960260799995,28.570410561000074],[-101.81021159799991,28.524879392000173],[-101.86840865999989,28.562855951000074],[-101.81190457399993,28.655103322000116],[-101.88713852599994,28.83747593300012],[-101.98428360999992,28.81093983400001],[-101.9377365549999,28.73890978100019],[-101.98554961299993,28.610045060000175],[-102.13233165699995,28.702740360000064],[-102.22794352399995,28.690678634],[-102.28472857099996,28.757372095999983],[-102.29734752599995,28.930970196000146],[-102.24880960199994,29.04456158],[-102.33222965499994,29.135390063000045],[-102.29498265599995,29.335421332000124],[-102.307830605,29.450760007999975],[-102.19864659299998,29.468620167000097],[-102.0405806629999,29.42026496800014],[-102.06240060099998,29.34378496300019],[-102.02390251999998,29.269927823000046],[-101.90915661199989,29.29771081400014]],[[-113.49558331399999,37.22178241500012],[-113.55151701899985,37.25849791700006],[-113.56882761699995,37.346305681],[-113.43217978999996,37.4723836230001],[-113.35283591799993,37.49778242000008],[-113.23793210499997,37.40243286300006],[-113.32841305399995,37.263416197000026],[-113.49558331399999,37.22178241500012]],[[-110.71169253099993,30.715387865000082],[-110.70169057299995,30.558542675000183],[-110.79326655399996,30.500771749000023],[-110.82121265699993,30.618067264000047],[-110.81127959899999,30.722021805999987],[-110.71169253099993,30.715387865000082]],[[-110.9072495399999,30.354608959000075],[-110.84152267899998,30.472226674000126],[-110.75407361299995,30.297603971000058],[-110.9072495399999,30.354608959000075]],[[-110.72438055299983,30.857056949000025],[-110.82302063399987,30.944236788000183],[-110.90686766099992,30.925723511],[-110.89974958099992,30.794969007000077],[-110.97611961599995,30.745395749000124],[-111.05561056799985,30.74403385700009],[-111.08306867699997,30.815108205000172],[-111.09785452199998,31.0152182650001],[-111.19314552899993,31.11922276400003],[-111.16838857199991,31.188289311000176],[-111.17848155699988,31.3456340620001],[-111.07483795299999,31.332241228000044],[-110.62703320999998,31.33300718800018],[-110.48194858799997,31.32132587199999],[-110.42341658399988,31.270605635000152],[-110.43518863199995,31.20561269300015],[-110.24895464599996,30.984086368000078],[-110.27647360699996,30.945890873000167],[-110.44547255699996,31.00361284899998],[-110.62850163899998,31.014179412000033],[-110.65619661999989,30.831720802000063],[-110.72438055299983,30.857056949000025]],[[-110.3293028039999,33.53529580400004],[-110.4044775569999,33.49276968300012],[-110.48986243099984,33.532772240000156],[-110.59502166899989,33.50490945500019],[-110.59331653899994,33.40912897300012],[-110.70662568699998,33.41794814000019],[-110.70640031699992,33.33148386300013],[-110.56869572999994,33.32060813300018],[-110.58546130799994,33.20614300200003],[-110.7094295419999,33.137931700000024],[-110.80525832499995,33.181965232000096],[-110.89037662699997,33.166603619000114],[-110.74579907599991,33.05901383900016],[-110.78526553699999,33.03224306700008],[-110.96860629599996,33.17250428400013],[-111.16498362999994,33.17120565700003],[-111.15801598199994,33.24185699000003],[-111.08337663399993,33.29992238100016],[-111.34557168299995,33.41378289200003],[-111.37241430899985,33.502242553000144],[-111.23182103099992,33.53387907000007],[-111.1545020239999,33.59739097100015],[-111.00333455799995,33.566268811999976],[-110.78200392599996,33.65112515599998],[-110.80178585699997,33.75979174000008],[-110.90709138699998,33.68599745400019],[-111.02112732199998,33.764943260000166],[-111.15359259399997,33.78444463400007],[-111.2846710469999,33.981857219],[-111.34275803499992,33.88019859000008],[-111.32564494899992,33.79467237600005],[-111.21886935099997,33.681549842000095],[-111.25830728799991,33.62234888700016],[-111.35583969499999,33.628330415000164],[-111.45553320799996,33.72521190500004],[-111.47310015499994,33.82595122500004],[-111.60589166999995,33.938075311000034],[-111.61987336099997,34.05797607900007],[-111.734069923,34.108082768000145],[-111.79341217399997,34.001799517000165],[-111.71135924599997,33.915264471],[-111.90722787199996,33.876957495000056],[-112.04050678099998,33.94497912600008],[-112.10365335299997,34.174198587000035],[-112.1764522759999,34.20466863200005],[-112.22162552099991,34.073876433000066],[-112.3250619939999,34.0875976750001],[-112.47714106499996,34.058138618999976],[-112.51475644299995,33.953060473000164],[-112.60570463199991,34.01493635600008],[-112.59937995299993,34.125984012000174],[-112.95574823699997,34.20387634500014],[-113.02583772499992,34.29426505300012],[-112.93709178699999,34.56003502000004],[-113.07404447999994,34.583012868000026],[-113.16077559399997,34.568009018000055],[-113.21813369299991,34.61039389600012],[-113.43573947399989,34.64996096300018],[-113.44417397599995,34.725785267],[-113.61962521099991,35.00238024300006],[-113.58942916299992,35.09897696200005],[-113.66270522999991,35.141013800999986],[-113.71006287599994,35.033759996000185],[-113.79466499399996,34.95414743600014],[-113.74922290799998,34.90520814200005],[-113.76090154599996,34.68173578300008],[-113.863873088,34.72743827300019],[-113.94211947199994,34.85492615900006],[-114.00419341099996,34.895785989000046],[-114.00109842999996,35.08918540700017],[-113.93554837299996,35.18116625],[-113.78994901599992,35.187713234000114],[-113.80253162399998,35.35308103900002],[-113.64083309999995,35.371342467000034],[-113.54731969499994,35.33343322900009],[-113.4181007059999,35.233477944000185],[-113.27805956999993,35.17575154400015],[-113.1284808559999,35.255302621000055],[-112.98964785399988,35.22738821500019],[-112.921869303,35.1257804010001],[-112.8213406019999,35.18365177900006],[-112.76463768299999,35.013253015000146],[-112.66239633299989,34.98422562500019],[-112.68929581799995,34.77209878900004],[-112.60955341599998,34.74306005400018],[-112.6098305999999,34.85843595900019],[-112.51337232499998,34.870020064000016],[-112.52217038799989,34.688079862000166],[-112.41490843699995,34.61555338700009],[-112.22254396499989,34.53567812900013],[-112.20623592899994,34.61230165700016],[-112.26783588999996,34.66091782900014],[-112.28695057999994,34.75973597600006],[-112.41943358299989,34.80454242500019],[-112.49462329099998,34.97787835400004],[-112.68021881799996,35.10104320700003],[-112.59749842799994,35.17563504600014],[-112.45773266499992,35.22141113200013],[-112.60571617999989,35.28126204100016],[-112.73414624599991,35.18198505700019],[-112.81988812299988,35.21591113600016],[-112.76709757999998,35.314896757999975],[-112.79014249,35.504302604000145],[-112.59906033599998,35.4015033930001],[-112.43437416599994,35.48844603100008],[-112.31571237999998,35.46191081900014],[-112.11752329299992,35.51285420500005],[-112.07108700399993,35.553364944000066],[-112.08181865199998,35.78432540700004],[-112.24117993299996,35.89810188500013],[-112.26308894099986,36.02016805599999],[-112.37298111099983,36.0661814880001],[-112.43957049699998,36.15044166700005],[-112.17223795899992,36.05735613300004],[-112.05937138899998,36.04267483300015],[-111.94303180399999,35.98364894700006],[-111.75428168999997,36.077333243000055],[-111.72551409299996,35.834825338000144],[-111.76014070499991,35.720965789],[-111.75939509599993,35.60098198000014],[-111.6401181089999,35.58827137500015],[-111.58722911099994,35.52012393900009],[-111.44423292999988,35.46898529300017],[-111.41331510399993,35.418413209],[-111.27518074299991,35.31881163800006],[-111.26170512799996,35.176772159000166],[-111.2905364529999,35.13981665799997],[-111.16830282599994,35.00315570800018],[-111.19574034999994,34.957484751000095],[-111.12315248499993,34.86512630100003],[-110.98060176899992,34.79718792600016],[-110.81960633499989,34.68014332700011],[-110.52472126799995,34.602700563000155],[-110.44868406699993,34.48278195100005],[-110.07345002899996,34.37881066400007],[-109.943700316,34.41074640400012],[-109.80453335799996,34.38617113500004],[-109.66621930899998,34.27023573000008],[-109.58251855799995,34.282206009000106],[-109.38368115399999,34.164569947000075],[-109.32445449199997,34.109490129000164],[-109.23855088999994,34.17642632700017],[-109.1220702949999,34.15954269800005],[-109.050227598,34.1970581920001],[-108.96750853699984,34.11646947200006],[-108.88185513899998,34.155394661000116],[-108.79683326699995,34.127857215000176],[-108.66828868799996,34.16431722200019],[-108.60728168399993,34.26617665900005],[-108.52898332299998,34.24069959800016],[-108.42962916699997,34.27542744300007],[-108.34040584899998,34.199358007],[-108.24445680099984,34.280435090000026],[-108.16773318499997,34.26843322999997],[-108.03808472799994,34.36150360000016],[-107.93101445599996,34.372948235000024],[-107.81343165899995,34.34731891700005],[-107.71828659799996,34.43731094400016],[-107.6358918819999,34.44770099100003],[-107.58738546499995,34.38817084400006],[-107.41748159799988,34.34288181000005],[-107.31855508299986,34.3667274070001],[-107.2719969069999,34.32793690400018],[-107.19913572099995,34.16728227400006],[-107.46273775599991,34.078926373000115],[-107.56920627299996,34.183446128000185],[-107.57644493399988,34.2681285650001],[-107.68051149799987,34.28160340300019],[-107.80530999799987,34.19191576600019],[-107.7759761019999,34.087306815000034],[-107.83660138299996,34.04736647400017],[-107.97326330799996,34.07103098700003],[-108.03328925999989,33.99870229700008],[-108.19773532899995,33.9027684830001],[-108.35415647799994,33.87184275800007],[-108.37790203899993,33.785584688000085],[-108.26872334199993,33.68478611400013],[-108.2035957949999,33.78065621500008],[-108.04349524099996,33.80231016700009],[-107.81929600199987,33.88868597200013],[-107.76838730699995,33.77442922400007],[-107.64302319799992,33.807220016000144],[-107.67021558399983,33.92907503500015],[-107.55698476199996,33.976507408000145],[-107.42607226399997,33.948025006000194],[-107.2630215289999,33.72583757100011],[-107.28951632099995,33.60787066800009],[-107.26220350399996,33.54828424200019],[-107.33450681799997,33.41955062200009],[-107.50273607099996,33.452766461000124],[-107.48752407899997,33.344892643000094],[-107.54185135399996,33.22455901100011],[-107.51629261299996,33.131304119000106],[-107.51817502999984,32.94935779999997],[-107.59893163099997,32.91193312900009],[-107.56698005999988,32.70027719500018],[-107.69698760899985,32.460972316000095],[-107.77439073799991,32.48475680400014],[-107.83622104799997,32.56733636000007],[-107.95139379899996,32.58229336700009],[-108.05121892199998,32.65747480200014],[-108.132515647,32.77934706500014],[-108.2798191739999,32.80770402100018],[-108.35400984899991,32.7316564460001],[-108.32039979399997,32.656736795000086],[-108.34106570299997,32.54203254000004],[-108.45208121399997,32.499107224],[-108.48198634499994,32.41561517900004],[-108.57305738699989,32.43981349500007],[-108.54431889099999,32.61022729600006],[-108.67900646999993,32.741503994000084],[-108.78445721299994,32.80466468700007],[-108.90480336599995,32.76737647699997],[-108.97686467999984,32.79307112700019],[-109.13855401399996,32.99781529800015],[-109.16605278099996,33.07230647700004],[-109.41807639799993,33.08604866000013],[-109.45062322899992,33.12129675300008],[-109.46818830299992,33.264191296000035],[-109.43911277699993,33.33747218400009],[-109.51863654799996,33.356731524000054],[-109.52251211999999,33.177452832000085],[-109.57578617799999,33.143066881000095],[-109.72103106599991,33.20778001800011],[-109.7687459309999,33.289178989000106],[-109.88742475099991,33.32819292800008],[-109.95369051499995,33.39006117600013],[-110.07461484699996,33.443540229],[-110.24562058699996,33.48708698400003],[-110.3293028039999,33.53529580400004]],[[-107.19474930499985,33.815326687000095],[-107.29010974899995,34.03065634000012],[-107.17581749199996,34.129564752000135],[-107.00730337599987,33.97167016600014],[-107.09074000899989,33.861792035000065],[-107.19474930499985,33.815326687000095]],[[-101.50646953099994,26.18870316500005],[-101.44754760199999,26.116433390000054],[-101.47221353099991,26.0294724850001],[-101.40214551399987,25.97972069300016],[-101.39558466299997,25.900215324000158],[-101.52323953999996,25.827826693000134],[-101.64501166199994,25.895776603000172],[-101.65662361499994,26.04979357100018],[-101.50646953099994,26.18870316500005]],[[-101.1380845509999,26.235014186000114],[-101.31709266599995,26.285937768000053],[-101.27180457299994,26.352859889000058],[-101.1380845509999,26.235014186000114]],[[-101.55837262299997,26.641279836000024],[-101.47713454599995,26.550579765000123],[-101.48551158799984,26.428816192000056],[-101.57272361399998,26.37554266000018],[-101.72248056399991,26.382073504000175],[-101.84044663099996,26.482982901000128],[-101.93924764399998,26.597279874000094],[-101.90198555899997,26.62110677400011],[-101.72529554199997,26.479004011000086],[-101.55624361899993,26.45734701700019],[-101.55796861499994,26.5014371690001],[-101.70884655999993,26.567501151000045],[-101.77825156799992,26.695249234000016],[-101.84188060699995,26.75144402799998],[-101.79841658399994,26.82436373600018],[-101.61568455599996,26.72507908700004],[-101.65972156699996,26.590688177000118],[-101.57089267099997,26.538467412000045],[-101.55837262299997,26.641279836000024]],[[-102.5330806749999,26.84078204000008],[-102.42536953099994,26.855837112000188],[-102.41223156799992,26.78806137800018],[-102.52564961399997,26.74306832700006],[-102.61927061099993,26.77558189700011],[-102.61561559899997,26.854493157000093],[-102.5330806749999,26.84078204000008]],[[-102.43755363299994,27.11730488200004],[-102.38362865899995,27.082188228000064],[-102.215614583,27.040474010000082],[-102.25835457799997,26.995963925000126],[-102.45690157999996,27.018635967000023],[-102.52167558599996,27.080145390000155],[-102.58278653399998,27.06785098200004],[-102.69351164299985,27.128904262],[-102.66692357499994,27.174494440000046],[-102.50137361099996,27.178793182000106],[-102.43755363299994,27.11730488200004]],[[-103.96933755499992,27.31671304100007],[-103.98421459499986,27.18619272700016],[-104.17311855199995,27.289275216000135],[-104.10049455799998,27.431519298000012],[-104.0575565829999,27.35371344400005],[-103.96933755499992,27.31671304100007]],[[-102.5373765679999,27.43823588500004],[-102.50191457899996,27.391364785000064],[-102.58402252899992,27.30523368900009],[-102.69084954999994,27.480564160000085],[-102.69453456999992,27.55635869300005],[-102.77906053199996,27.64780676600003],[-102.55029257699994,27.605839583000147],[-102.57321155099999,27.509575771000073],[-102.5373765679999,27.43823588500004]],[[-106.16488656899992,27.543281248000085],[-106.26396954899991,27.598769112000184],[-106.18427256999996,27.656910686000117],[-106.16488656899992,27.543281248000085]],[[-103.05171965099993,28.31503190800015],[-102.92260766399994,28.11962107900007],[-102.93427259099997,27.985381714000027],[-102.99201166699999,27.98753871300005],[-103.03347761199996,28.084151547000033],[-103.14813953299995,28.262991186000136],[-103.05171965099993,28.31503190800015]],[[-106.12242854099992,28.302806567000175],[-106.03342463199988,28.309753153000088],[-106.0010605949999,28.114868372000046],[-106.11505162799995,28.112205274000132],[-106.07910164499992,28.20151981600003],[-106.12242854099992,28.302806567000175]],[[-106.11088565499995,28.47109858700003],[-106.02690166699989,28.44941460300015],[-105.98631263599992,28.344234793999988],[-106.09760251699998,28.35736839800012],[-106.11088565499995,28.47109858700003]],[[-101.94628861099989,27.308191495000017],[-101.98313160099997,27.443689486000153],[-102.03007461799996,27.493501628000104],[-101.93212151799992,27.605667754000024],[-101.76494563199998,27.40100430900003],[-101.82951361199997,27.342184136000185],[-101.74742862799991,27.10270444500003],[-101.92811563899994,27.178464947000066],[-101.99749751299998,27.180765109000106],[-102.00279252899998,27.059745179],[-102.11498262699996,27.219015254000112],[-102.01708266799989,27.303085575000182],[-101.94628861099989,27.308191495000017]],[[-101.2263565529999,26.751011019000146],[-101.29402952399994,26.777889771000105],[-101.30867757099992,26.864217841000027],[-101.21466865899998,26.847233759],[-101.0743556,26.68987878100006],[-101.2263565529999,26.751011019000146]],[[-103.66448253899995,28.566959898999983],[-103.51622762599999,28.592204682000045],[-103.53903159999987,28.526682339000047],[-103.61888163299989,28.50296926500016],[-103.66448253899995,28.566959898999983]],[[-104.66670267899985,29.30799239200013],[-104.65198556599995,29.44513021900002],[-104.47966755099992,29.24793454700017],[-104.48642755599997,29.177037393000035],[-104.67121163999997,29.234393247000128],[-104.66670267899985,29.30799239200013]],[[-103.45379796499992,30.191623811],[-103.52783416499994,30.165679454000042],[-103.55961838299999,30.286543892000054],[-103.48879354199994,30.297779550000087],[-103.45379796499992,30.191623811]],[[-103.37254755299995,30.295726431000162],[-103.37860447499997,30.351492310000026],[-103.25473441299988,30.492376869000168],[-103.03999221799995,30.503698323000037],[-102.9486485249999,30.45805742500005],[-103.07395491999995,30.383998134000024],[-103.37254755299995,30.295726431000162]],[[-107.72605157599997,30.599271013000134],[-107.6236416509999,30.550701908000065],[-107.69052856699994,30.478977459000134],[-107.77534454299996,30.556532695000158],[-107.72605157599997,30.599271013000134]],[[-104.11703640299999,30.709158768000123],[-104.0546863059999,30.871101840000108],[-104.11415214599998,30.929345521000016],[-104.07120176899991,31.01117362500014],[-103.96856706599993,30.87815203800011],[-103.85108075699992,30.80737710200009],[-103.85452938399999,30.76883683800014],[-103.70749047199996,30.689939900000127],[-103.75589685399996,30.613703207000015],[-103.70001200399997,30.510849022000116],[-103.79071836199995,30.48836595800003],[-103.8524546559999,30.524861934000114],[-103.78693349699995,30.616455307000024],[-103.855177428,30.664786554000102],[-104.04156577999993,30.552089438000166],[-104.20616878899989,30.58374223200002],[-104.18737253599988,30.74850926900018],[-104.11703640299999,30.709158768000123]],[[-107.81379652399994,30.87458116100015],[-107.69512168299991,30.856326885000044],[-107.75243361599985,30.78687728500006],[-107.81379652399994,30.87458116100015]],[[-108.79026058399995,31.115476723000143],[-108.79724857699995,31.00556952100004],[-109.0975185239999,30.974635772000056],[-109.10194366599995,31.02879091300008],[-109.03016657899997,31.178409561000024],[-108.920852648,31.308742288000133],[-108.74750566999995,31.32782553500016],[-108.67595657099992,31.259987775000184],[-108.79026058399995,31.115476723000143]],[[-109.27568380499991,31.761787798000057],[-109.39190653199995,31.81453990900019],[-109.34443848599994,31.882245136000165],[-109.41281686099995,31.942120901000123],[-109.33013529399989,31.98309609100005],[-109.17287344799996,31.80949750200017],[-109.27568380499991,31.761787798000057]],[[-106.50729646199994,32.26351881200003],[-106.59806430899994,32.23661459200008],[-106.5940709759999,32.381616584000085],[-106.47608789599991,32.33330654100013],[-106.50729646199994,32.26351881200003]],[[-106.53851805799997,32.46917243400014],[-106.5829648269999,32.509072902000185],[-106.53057680599994,32.61614593900015],[-106.45098438999992,32.56829690100005],[-106.45454506799996,32.508481410000115],[-106.53851805799997,32.46917243400014]],[[-106.73670326299998,33.126134028000024],[-106.77128001899996,33.2899408130001],[-106.7030949849999,33.312277590000065],[-106.60913633899997,33.26244541800003],[-106.67001694799995,33.130847626000104],[-106.73670326299998,33.126134028000024]],[[-109.923852421,32.663680450000015],[-109.82889192299996,32.73417477100003],[-109.82176242299988,32.593673310000156],[-109.923852421,32.663680450000015]],[[-110.66446270999984,32.41305934100012],[-110.87618391099994,32.35822498300007],[-110.80713026199987,32.513906809],[-110.66446270999984,32.41305934100012]],[[-103.92612465299993,25.534147605000157],[-103.91948652099995,25.61364174200014],[-103.98499260299991,25.699635878000095],[-103.88794659199988,25.711333159000105],[-103.82717159199984,25.581825379000065],[-103.83527353899996,25.52286405400008],[-103.76956159799994,25.366783462000058],[-103.88072155999998,25.332643132000044],[-103.92612465299993,25.534147605000157]],[[-110.80461866799999,29.97907974800006],[-110.80117756099992,30.072896211000057],[-110.69812055299991,30.062841615000025],[-110.59399468399982,29.80970210400011],[-110.58975964399997,29.69152263300009],[-110.55541965699996,29.61073064200002],[-110.60190552499995,29.565612366000153],[-110.72776063899988,29.630053108000084],[-110.70595562099999,29.761974038000062],[-110.76097057799996,29.819968929000026],[-110.80461866799999,29.97907974800006]],[[-110.6525955869999,29.484215704000064],[-110.65835563099989,29.539965418000122],[-110.57086968399994,29.572660038000095],[-110.52628365899994,29.40201572100017],[-110.4765085649999,29.362560091000034],[-110.51385463799988,29.131448221000028],[-110.58510567599996,29.143865843000015],[-110.54842361799984,29.26945592200019],[-110.6334226539999,29.314020154000048],[-110.6525955869999,29.484215704000064]],[[-110.42781054599993,28.298561803000098],[-110.2944336789999,28.070782076000057],[-110.48445159199997,28.065838262000113],[-110.48912852599994,28.22727874600008],[-110.42781054599993,28.298561803000098]],[[-115.74418547999994,36.345253635],[-115.62969697499994,36.32901973000003],[-115.58752294899989,36.250227267000184],[-115.71033474199993,36.21434354200011],[-115.77320331699997,36.300151493000044],[-115.74418547999994,36.345253635]],[[-108.72679013199985,38.92319962900012],[-108.63466561899997,38.838407781000114],[-108.76071437599984,38.785985443000186],[-108.84538028799989,38.81680761700011],[-108.72679013199985,38.92319962900012]],[[-109.25516585399993,38.59940002899998],[-109.22178396399994,38.622195164],[-109.06482243899995,38.46468124800003],[-109.08253960399992,38.41346926600005],[-109.21422030399992,38.33056717100004],[-109.32792389199989,38.388913623],[-109.33631226199992,38.53056780600008],[-109.25516585399993,38.59940002899998]],[[-110.8415510449999,38.16441898500011],[-110.76266844899999,38.14907608500016],[-110.7158413329999,38.02262431800017],[-110.80681070499998,37.92263266400005],[-110.88051158999997,38.079720858000144],[-110.8415510449999,38.16441898500011]],[[-109.60546550799984,37.92030016600012],[-109.57809205299998,37.95691552100004],[-109.35838887699998,37.871913137000035],[-109.34988252199997,37.785158115000115],[-109.45477304699989,37.7213944450001],[-109.60905861899994,37.8183970880001],[-109.60546550799984,37.92030016600012]],[[-112.24005780399995,36.86551690200008],[-112.15302231099992,36.91290195900007],[-112.07649508999987,36.88220179800004],[-112.0897311249999,36.79499968699997],[-112.00695046699997,36.60399594900019],[-112.00082318499994,36.460724605000166],[-111.88162628299989,36.32343020300004],[-111.97993173199995,36.29416605900002],[-112.00211373999997,36.18477387900015],[-112.20369735199989,36.244455391000145],[-112.27108868999989,36.307445029000064],[-112.39816475699996,36.34203715600006],[-112.53869396999988,36.48881322100004],[-112.37204708399997,36.681230484000025],[-112.333545303,36.77996084400013],[-112.24005780399995,36.86551690200008]],[[-109.25709126499999,36.88490141699998],[-109.15690546399986,36.89529158700009],[-109.04826670899996,36.81555929500007],[-109.06847581999995,36.75080666100007],[-109.21038344199991,36.64710438600014],[-109.21118374899999,36.58920338900015],[-109.08096928899994,36.50919240600001],[-108.92285789699997,36.531745742000055],[-108.86204857499996,36.34242537800003],[-108.86399666899985,36.26418635900018],[-108.71277363399997,36.121099711000056],[-108.66272252999994,35.97381802700005],[-108.670928313,35.89459625700016],[-108.87761058499996,35.765571178000016],[-109.01194050899988,35.728995804000135],[-109.11240051199997,35.64462247200015],[-109.10198974699995,35.556795021000084],[-109.17047589599991,35.48637321899997],[-109.1748765619999,35.413600357000064],[-109.33564705099997,35.423004799000125],[-109.42275442399995,35.56579974300013],[-109.37058086499997,35.74151615000011],[-109.43622160399991,35.86060867700019],[-109.33303079399991,36.09004969500012],[-109.34522836399992,36.23379949000014],[-109.2067280689999,36.364728735000085],[-109.21735429599988,36.430175022000185],[-109.33494745599995,36.55852708800012],[-109.28243198299998,36.606259399000066],[-109.29989980599993,36.828585723000174],[-109.25709126499999,36.88490141699998]],[[-107.38936666099988,35.59046415300003],[-107.21793746699996,35.586058448000074],[-107.14980504499994,35.377643692000106],[-107.21125809699993,35.31828623600012],[-107.25720058599984,35.21034603100003],[-107.37750940899997,35.14504910700009],[-107.43026233899991,35.05027758000017],[-107.66492747799998,35.119684783000025],[-107.7205842159999,35.083988569999974],[-107.86147807699984,35.16351096500017],[-107.76670633099997,35.22732238500009],[-107.78627545299997,35.33078481300015],[-107.68258647099998,35.310267997000096],[-107.63600197699998,35.40424369100003],[-107.51045840999996,35.46409175200017],[-107.38936666099988,35.59046415300003]],[[-108.59178267599998,35.459077746000105],[-108.47785435699984,35.46648484100001],[-108.05638723299995,35.32021384300003],[-108.01631823599985,35.15320794700017],[-107.93353514399996,35.067588857000146],[-107.94133901199996,34.95256853200004],[-108.01947435699986,34.913883435000116],[-108.04956729799994,35.00149381199998],[-108.12363479199996,34.97782781300003],[-108.0940046149999,34.90164267900019],[-108.20955584899986,34.79221449500017],[-108.33571870599997,34.777075291000074],[-108.26269988999991,34.916279880000104],[-108.15231853699999,35.00535651400003],[-108.29025019799991,35.10876291699998],[-108.50559351899994,35.15457391100006],[-108.65066919799989,35.407498356000076],[-108.59178267599998,35.459077746000105]],[[-107.78150495899996,34.961468922000165],[-107.65186607299995,34.83671873200018],[-107.76541479799994,34.70509934700016],[-107.86162903499996,34.688405566000085],[-107.91824730299999,34.76827793800004],[-107.78150495899996,34.961468922000165]],[[-115.30593241699995,40.730663618],[-115.37993536699997,40.57023222700013],[-115.43033280599997,40.541682628000046],[-115.51440881899998,40.630574017000015],[-115.30593241699995,40.730663618]],[[-113.86115959799992,39.96399127300015],[-113.85573377199995,39.83458902100017],[-113.98000182899995,39.789064309000025],[-113.86115959799992,39.96399127300015]],[[-114.59318371199998,39.716154121000045],[-114.62365649199995,39.659817563000104],[-114.57533800099998,39.51493913200011],[-114.54362969299996,39.317713707],[-114.62220563699998,39.23711607000007],[-114.68750405999998,39.25824292700008],[-114.6265514399999,39.50882947400015],[-114.6867717859999,39.54040544100019],[-114.67435496799988,39.63942486600007],[-114.59318371199998,39.716154121000045]],[[-114.28667560999997,39.300697090000085],[-114.19647457099995,39.33580547800011],[-114.09631473699994,39.2706203190001],[-114.1192366439999,39.19322309900019],[-114.28893737899995,39.20282614000007],[-114.28667560999997,39.300697090000085]],[[-114.37795350999988,39.04753327399999],[-114.26458797699996,39.04585606900008],[-114.24791696099999,38.97572160100009],[-114.17310422599996,38.94183629100007],[-114.29654231299992,38.805069878000154],[-114.37795350999988,39.04753327399999]],[[-116.49667984399997,39.16303795200014],[-116.40467744399996,39.12962291200006],[-116.3518673769999,39.03716466100019],[-116.430869068,39.024663366000084],[-116.51353334999999,38.90719811800017],[-116.55108069599999,38.64504604400014],[-116.66716124799996,38.63237121300011],[-116.6733854719999,38.739689737],[-116.61869995999996,38.87915355400003],[-116.53860322499992,38.93843069400009],[-116.47759223399999,39.06386592400008],[-116.49667984399997,39.16303795200014]],[[-116.51209106799996,39.38841977200008],[-116.42491529399996,39.383380438000074],[-116.4368075029999,39.22680171200017],[-116.52557152099996,39.25392367799998],[-116.55294529499992,39.35411747600017],[-116.51209106799996,39.38841977200008]],[[-117.1910964679999,39.22520839100008],[-117.18776327799998,39.1287664780001],[-117.28571205899993,38.94269264200011],[-117.23217798299993,38.74945969200007],[-117.44259503899997,38.66670373300019],[-117.47923418499994,38.824604997999984],[-117.31715635199998,39.01138276000012],[-117.24456779899992,39.18124630500006],[-117.1910964679999,39.22520839100008]],[[-116.86900759299994,39.10746429900013],[-116.75132176299996,39.03922302600006],[-116.85990239699993,38.97219171900008],[-116.86900759299994,39.10746429900013]],[[-116.9200146039999,38.86248145400009],[-116.87456384099994,38.856809227000156],[-116.82331396399996,38.735673595000094],[-116.88452638599995,38.64538177100013],[-116.95634420099998,38.71904086500018],[-116.99109006699985,38.82265007100017],[-116.9200146039999,38.86248145400009]],[[-118.81285575399994,38.62217198100018],[-118.73426597499991,38.55704094400005],[-118.72028244399996,38.461470219000034],[-118.79378508899998,38.44203806700017],[-118.81285575399994,38.62217198100018]],[[-118.32251032799996,37.9187122190001],[-118.26683351299994,37.85729090900003],[-118.19858723699997,37.62401271400017],[-118.06233240599994,37.53352134500011],[-118.13983354899995,37.386479596000186],[-118.21804507499985,37.37597892100007],[-118.33005741799991,37.70731581100017],[-118.40465214999995,37.84277166900006],[-118.32251032799996,37.9187122190001]],[[-118.87431445399994,38.29391326400014],[-118.8685663359999,38.24968552400003],[-118.98016529799997,38.1847856440001],[-119.10524501899994,38.22743303000004],[-118.96628320599996,38.30799064800016],[-118.87431445399994,38.29391326400014]],[[-119.311171291,38.51597261100011],[-119.25568405399997,38.45900366500001],[-119.24724832099992,38.32863697900018],[-119.38422255099988,38.43070883300015],[-119.311171291,38.51597261100011]],[[-119.49947164799988,39.10606226100009],[-119.44908373999988,39.01121196400004],[-119.48537790399996,38.77815286400005],[-119.55288783299989,38.83445019100003],[-119.47582171199991,38.970779971000184],[-119.49947164799988,39.10606226100009]],[[-116.34178749499989,39.918383269000174],[-116.23500032099997,39.85769051500006],[-116.35810353699998,39.77811146300007],[-116.38816956799985,39.830117594000114],[-116.34178749499989,39.918383269000174]],[[-115.39403452199991,38.96593175300012],[-115.40495594699985,38.83231886200019],[-115.48059398999999,38.85758095600016],[-115.39403452199991,38.96593175300012]],[[-118.02795057099985,37.05377979500008],[-117.99289616399994,37.03351856700016],[-118.03713659099998,36.89328740400009],[-118.10640388899992,37.00193703000019],[-118.02795057099985,37.05377979500008]],[[-118.66335023199997,42.777881594000064],[-118.54026550899994,42.80804157600011],[-118.53397497299994,42.63875725600019],[-118.63469278599996,42.59938877400015],[-118.73708380899984,42.71878275200015],[-118.66335023199997,42.777881594000064]],[[-115.46583401299995,41.77517336700009],[-115.39315583499996,41.869294407000154],[-115.30977795299998,41.828125125000156],[-115.29009181999999,41.73757007200015],[-115.46583401299995,41.77517336700009]],[[-105.76661260699996,34.132194450000156],[-105.86938204599988,34.23927059900018],[-105.79200198499996,34.31019514400003],[-105.66105693699996,34.255793641000025],[-105.692500839,34.16645734200017],[-105.76661260699996,34.132194450000156]],[[-88.36055411899991,37.70398406600009],[-88.13588231299997,37.575474940000106],[-88.09568861899993,37.483948465000026],[-88.46927853499989,37.40354332200019],[-88.51588095099987,37.30302485400017],[-88.61705800099986,37.358383295000124],[-88.81410223399996,37.323515091000104],[-89.05922137299984,37.33298961400004],[-89.26480708499997,37.275773781000055],[-89.32135827399992,37.542743814000175],[-89.3782984579999,37.5913993850001],[-89.34439439199997,37.69458865100012],[-89.23656152899997,37.640858670000114],[-89.16649702399997,37.66371458200007],[-88.84272771799994,37.61488531700019],[-88.73250046999988,37.64731986200019],[-88.50889777099991,37.63177289400011],[-88.36055411899991,37.70398406600009]],[[-109.54585676299985,46.84093232300012],[-109.54522891999994,46.94008165200012],[-109.37769080699991,47.032155200000034],[-109.30404252399995,46.92261417100019],[-109.04940855199999,46.9666550930001],[-108.94828342899996,46.952404032],[-108.88819875199994,46.88664723200009],[-108.98738161199987,46.84319527600019],[-108.87253784299998,46.78219728200003],[-109.04443736399992,46.71955741600004],[-109.08156880999996,46.665547384000035],[-109.26818340799991,46.65088441700016],[-109.36716197699997,46.68316644300006],[-109.52227251199997,46.680113760000154],[-109.65231739499984,46.77919841600004],[-109.54585676299985,46.84093232300012]],[[-110.57873868399997,46.36624470500004],[-110.39173440099995,46.27216041800011],[-110.24201551099986,46.266928582000105],[-110.24222122799983,46.158318370000075],[-110.1571607539999,46.11162245500009],[-110.136608202,45.96030743200009],[-110.27514929599982,45.92616656300015],[-110.48207455399984,45.98555945400011],[-110.45942830499996,46.158725937000156],[-110.57701237199996,46.17934812700008],[-110.57873868399997,46.36624470500004]],[[-109.3385547019999,47.19579763200011],[-109.25585478599999,47.253530357000045],[-109.14756637999994,47.21153552700014],[-109.2151925359999,47.13213994200015],[-109.3385547019999,47.19579763200011]],[[-104.65993245999994,44.883411502000115],[-104.53864086499993,44.946806325000125],[-104.4131409549999,44.970855872000186],[-104.21300050799994,44.84235415000012],[-104.02781160199993,44.640708525000036],[-103.7406286339999,44.64606463600012],[-103.66135453599992,44.61851007200016],[-103.60003251999996,44.50906294400016],[-103.45622722099984,44.39976157500007],[-103.24180880099993,44.1571610740001],[-103.21693524299991,43.98724235200012],[-103.23008146299998,43.81317438000019],[-103.34835771599995,43.5575639110001],[-103.34388424399992,43.50169562600007],[-103.42952842699992,43.35796235400005],[-103.60357175399997,43.31657017300017],[-103.74071280899994,43.2565795700001],[-103.81201948899997,43.41532692200019],[-103.9053282779999,43.40276063800013],[-104.03500823199994,43.557789316000026],[-104.12142479,43.705373510000186],[-104.16996599699996,43.8434692190001],[-104.30445212199993,43.89607960100017],[-104.30929785999996,43.96136845799998],[-104.42104737899996,44.03469241200008],[-104.50708909999997,44.168131055000174],[-104.68411721099994,44.17049123900006],[-104.71182849999985,44.24467797000017],[-104.89653858199995,44.45283630300014],[-104.91272194199996,44.57655540400003],[-104.88300970099993,44.66905002800013],[-104.90658123999998,44.74890948900014],[-104.85143403499984,44.80886513900009],[-104.65993245999994,44.883411502000115]],[[-110.62215227399997,47.564384196000105],[-110.50524385499983,47.55371603600008],[-110.44577264799995,47.49390475600018],[-110.505614101,47.380563123000115],[-110.6615009059999,47.41037835100019],[-110.673220932,47.50730511100005],[-110.62215227399997,47.564384196000105]],[[-113.38228512199993,43.932395174000135],[-113.52855090699995,43.93653277400017],[-113.81725660599994,44.09519086200015],[-114.01956627999988,44.3675189760001],[-113.92981610799995,44.440225532000056],[-113.85208450399989,44.424999026000194],[-113.79743786199998,44.250894078000044],[-113.69134116999999,44.14094012300012],[-113.55797312199996,44.12889112300007],[-113.47140435699993,44.06749183400018],[-113.4552303459999,43.96901988500008],[-113.32910128899994,44.06007395400013],[-113.26093705299996,43.984880424000096],[-113.20911279299986,43.76294784000004],[-113.29859154299993,43.774386679000145],[-113.38228512199993,43.932395174000135]],[[-113.58024472999995,44.376860589000046],[-113.611667781,44.44595374099998],[-113.779441809,44.60100051700016],[-113.85574057399998,44.639032832000055],[-113.93361583099994,44.82506120900007],[-113.92584408199997,44.99561353400014],[-113.85501590099989,45.07811877600011],[-113.73651420299996,45.014996675000134],[-113.84594905499995,44.87222912300007],[-113.74055634899992,44.771530996000195],[-113.64175607599998,44.76567863600019],[-113.537665947,44.640979703000085],[-113.26933159499998,44.47013585800005],[-113.16966593799998,44.28570437900015],[-113.05127896499994,44.24803055000007],[-113.02427533099996,44.14194552900017],[-112.95038834899998,44.111027542000045],[-112.91509326799996,44.009826381000096],[-112.92278240799988,43.881793654000035],[-113.08959515599997,44.024834621000025],[-113.17906423099998,44.18370064600009],[-113.35467492099991,44.37854286100014],[-113.42538644299992,44.317658059999985],[-113.58024472999995,44.376860589000046]],[[-113.14513433199988,44.58201694700006],[-113.25721357899988,44.75495669000003],[-113.17167259999991,44.79299616500015],[-113.16338014099983,44.92847866000005],[-113.09177275199994,44.90581583000005],[-113.01349783299997,44.656932156000096],[-113.04542333999996,44.60809832800004],[-112.96754953299995,44.454870762000155],[-112.821790347,44.46695227100014],[-112.67549631499992,44.335183285000085],[-112.83980096099992,44.273966684000015],[-112.98915763899998,44.375184291000096],[-113.14513433199988,44.58201694700006]],[[-112.44209802099988,44.89647546500004],[-112.47598134799995,44.94668794200015],[-112.71959288799997,44.99688296300013],[-112.63680751399988,45.063594710000075],[-112.490414252,44.96259963700015],[-112.44209802099988,44.89647546500004]],[[-113.0458218949999,45.29374365700005],[-113.10597632199995,45.32563081000012],[-113.30680441499993,45.32856736200006],[-113.39386815599988,45.42816057900018],[-113.36666482099997,45.707849625999984],[-113.21032114399992,45.871893730000124],[-112.96640021699989,45.98499686500003],[-112.92165386599993,46.076266996000186],[-112.78496474699995,46.013899724000055],[-112.71270136599998,45.890291006000155],[-112.77966455299998,45.78621217600005],[-112.71662178399998,45.65408278500013],[-112.79186304699994,45.60895234500009],[-112.76217127599995,45.51291791100016],[-112.776883296,45.348704325000085],[-113.0458218949999,45.29374365700005]],[[-112.22047697499994,45.56868875400011],[-112.1211835599999,45.713792360000184],[-111.97296522299996,45.716946545000155],[-111.81975544399995,45.584788087],[-111.84555610499996,45.40726837400007],[-112.01545885099989,45.39966982900006],[-112.22047697499994,45.56868875400011]],[[-110.92471351199998,45.72063686400003],[-111.06235021799989,45.91094558800006],[-111.11250477799996,46.040552352000134],[-110.99566255799994,46.05640311200011],[-111.04624085299997,46.16773793300007],[-111.25836521399992,46.132670413000085],[-111.32149307099996,46.24306174800017],[-111.22821494599998,46.29805349300011],[-111.47734043799989,46.533604536000155],[-111.5201168879999,46.610486574000106],[-111.64836402599997,46.6591398380001],[-111.66104488399998,46.56785322100018],[-111.73074418599998,46.54552091100015],[-111.80822034399989,46.68964678500015],[-111.81001787899993,46.805951411000194],[-111.89107225999993,46.85896083900019],[-111.78553107699992,46.935206808000146],[-111.66744720499992,46.87029213500017],[-111.67425307799994,46.82001778300014],[-111.46332706299995,46.74687974100004],[-111.32994032499988,46.6778349600001],[-111.19796050799988,46.51347172700014],[-111.02761634499996,46.41688870400003],[-111.11643078299988,46.251377091999984],[-111.10713094999994,46.199877007000055],[-110.89299849899999,46.19858097500014],[-110.84260800699997,46.08901841300019],[-110.9679061679999,45.98237437400019],[-110.78588575099997,45.849575910000056],[-110.69522446999991,45.74588391300006],[-110.80541891199994,45.69635558700014],[-110.92471351199998,45.72063686400003]],[[-112.06031018999994,45.18581182000014],[-112.03201664299996,45.26103949900005],[-111.90712067099997,45.25637977200006],[-111.8884311299999,45.19408055700012],[-111.72996173699994,45.04536002000003],[-111.67451524799998,44.94503409700019],[-111.61095830599999,44.92074381499998],[-111.54406459999984,44.76984724200014],[-111.79906480399995,44.75127188100004],[-111.98167479599994,44.816425803000186],[-111.97064937899995,44.942283638000106],[-111.90723797699991,45.05755717000005],[-112.00447940199996,45.06464531900008],[-112.06031018999994,45.18581182000014]],[[-112.84150897699993,44.80974871500018],[-112.76048516699996,44.669607995000035],[-112.65761035199995,44.56172254500012],[-112.204370569,44.4294842270001],[-112.27815261599994,44.37230934400014],[-112.51863633199997,44.40196010300008],[-112.68572396299999,44.47260704700011],[-112.67731773499992,44.56303508900015],[-112.7823936929999,44.63525363400015],[-112.84150897699993,44.80974871500018]],[[-112.2029265949999,44.841502438000134],[-112.06503474499993,44.96206534300018],[-112.02942967899997,44.832854512000154],[-112.10599487899998,44.753756721000116],[-112.30646234499989,44.75025376499997],[-112.31615328899989,44.834075239000185],[-112.2029265949999,44.841502438000134]],[[-113.49255890699993,43.79259678800008],[-113.70763695399995,43.787688961000185],[-113.81588613599996,43.82426683600016],[-113.79205902099989,43.8826083620001],[-113.69009720999998,43.933001309000076],[-113.66689509199995,43.80974957600017],[-113.49255890699993,43.79259678800008]]],[[[-122.71924721699992,45.93999234900008],[-122.878763161,46.00445955900011],[-122.90451351499996,45.77204279200009],[-122.87720298199997,45.66366407800018],[-123.16420977999996,45.733865241000046],[-123.28277757499995,45.63404763800003],[-123.32198173399996,45.40876547800008],[-123.39804872399998,45.367709215000104],[-123.35060990499983,45.22188610000012],[-123.5187395019999,45.18484799200013],[-123.66010511099995,45.03860395300012],[-123.52231825799998,45.02811519900001],[-123.41491115799994,44.95621168100007],[-123.49403610199994,44.54016466000013],[-123.42477769399989,44.41745081200003],[-123.41222578599996,44.23359564100008],[-123.50508860599996,44.10396360400017],[-123.46526635899988,44.025586359000044],[-123.3290893329999,43.93701800700006],[-123.39120184899997,43.886117151000064],[-123.40485868499997,43.785479661000124],[-123.29296719899997,43.667588162000186],[-123.12416885599987,43.605579323000086],[-122.95635990099998,43.77378943700012],[-123.00171184399989,43.868563359],[-122.889612237,43.92016426600014],[-122.76516473299995,43.85488757000013],[-122.65769747399997,43.911872582000115],[-122.76274924499995,44.01087818800016],[-122.77179456799996,44.08819040500009],[-122.91992966599997,44.187081623000154],[-122.91799083599994,44.30009253900016],[-122.72400442299988,44.32768009900013],[-122.65124496599998,44.38139139200001],[-122.72690104799995,44.551557210000055],[-122.70187641099989,44.6721078330001],[-122.61103807699993,44.712616193000144],[-122.5818107849999,44.80238846900011],[-122.7202956299999,44.87102092300012],[-122.70265312399994,45.006656988000145],[-122.50603847699995,45.08234241100007],[-122.37519456099989,45.17798915200018],[-122.34757873599995,45.283334872000125],[-122.2601798579999,45.45277888099997],[-122.3102737719999,45.539158388000146],[-122.2003178029999,45.564230090000194],[-122.19218684099997,45.62173827200007],[-122.35437695899998,45.63520069700013],[-122.45481130799988,45.69771913400007],[-122.46387055399998,45.81655309700005],[-122.58061957299992,45.94957184900011],[-122.71924721699992,45.93999234900008]]],[[[-116.24217653999989,46.43373930200016],[-116.33644270499997,46.33119066],[-116.51907373999984,46.29077802500018],[-116.52158398499995,46.18787352000015],[-116.62482584799983,46.138526374000094],[-116.53989016099985,46.01249631700017],[-116.26913966199993,45.861724277000064],[-116.07748498499996,45.91591391700001],[-115.9671932579999,45.99941609700005],[-116.06023022499994,46.081585354000026],[-116.00688293399998,46.132425720000185],[-116.1256466989999,46.20378426200017],[-116.12839268999988,46.271710531999986],[-116.24217653999989,46.43373930200016]]],[[[-113.4961018869999,46.279748569000105],[-113.55806560099995,46.183461925000074],[-113.42439815699998,46.14107671300019],[-113.31786089899992,46.245553278000045],[-113.35585341099994,46.29196924100012],[-113.4961018869999,46.279748569000105]]],[[[-119.48300316299992,49.32959587900007],[-119.66346724599998,49.39208852900015],[-119.75508961699995,49.370077386000105],[-119.6595343699999,49.25762157400004],[-119.61919594299997,49.15778192200003],[-119.62605289299995,49.03836092500018],[-119.50000542599997,48.914399446000175],[-119.60907429199995,48.83716651300006],[-119.52033334299989,48.65086087500009],[-119.56332200599991,48.51975279400011],[-119.68485725,48.51234778700018],[-119.65196624099997,48.36239086800009],[-119.79205266299994,48.30792536500013],[-119.770968,48.22477792800004],[-119.89789062499995,48.15830990200004],[-120.05732608199992,48.21536459800012],[-119.98121358999998,48.32667695200007],[-119.99790137899998,48.41514703500019],[-120.08789933699995,48.46357243099999],[-120.16621059,48.565740135000055],[-120.30624555599991,48.530428186],[-120.25963030299994,48.46253016400004],[-120.249801973,48.28056909000003],[-120.16040432799991,48.25680565700014],[-120.02590337899989,48.09474976400014],[-119.88407299099993,47.956904317000124],[-119.97192037199994,47.8896460790001],[-120.18381666699997,47.94953329900005],[-120.14072049599991,47.804069637000055],[-120.23456519699994,47.759223144000146],[-120.27289477999994,47.599121739000054],[-120.37052819299998,47.53999749300016],[-120.50334751199983,47.518068327000094],[-120.41610282499994,47.44143879200004],[-120.36063416699983,47.334891264000134],[-120.25631119499997,47.28850647900015],[-120.21980510599997,47.19080707500012],[-120.23817865299998,47.10788127899997],[-120.51032137099997,47.171584721000045],[-120.64416739399991,47.18197602300006],[-120.79241257499996,47.15363091900008],[-120.74709011299996,46.928721785000164],[-120.79984095999998,46.880278824000015],[-120.74629809299995,46.80619288300005],[-120.9074056469999,46.76331061999997],[-120.95694112599989,46.65159857700007],[-120.905354209,46.48528955000006],[-120.97999295399995,46.433585105000134],[-120.88647485099995,46.29677226299998],[-120.74667719599995,46.14384481600018],[-120.6205725989999,46.03950116900006],[-120.38409687699993,46.02839091700008],[-120.41440717699999,45.83910909100007],[-120.50465328799987,45.85196776900017],[-120.57157233799995,45.793649332000086],[-120.67175793899997,45.842219756000134],[-120.82692542299998,45.84201096100003],[-120.89994334299996,45.88934818700005],[-121.0532533889999,45.812240724],[-121.09193686699996,45.718645383000194],[-121.2016216109999,45.697359479000056],[-121.28187006199994,45.61471613300006],[-121.19525145799997,45.560587751000185],[-121.14552520899991,45.45318435200005],[-121.32412497899998,45.21564466300015],[-121.37045691699996,45.10278686500004],[-121.27054909299989,45.07796015100007],[-120.97884080999995,44.91376094599997],[-121.06821176299997,44.80970050999997],[-120.9630542679999,44.80117086900009],[-120.92695535899992,44.865512659],[-120.64138478599989,44.965999298000156],[-120.54875472099991,44.96900802900012],[-120.4813662819999,45.06700821100003],[-120.28702279199996,45.033071001999986],[-120.07752557799995,45.02261444600009],[-119.85250005499995,45.05400027500019],[-119.52382125199983,45.131533996000144],[-119.39701566199994,45.229580722000094],[-119.30649675199993,45.258069626000065],[-119.10962062699997,45.223572669000134],[-118.92260259999995,45.329078573000174],[-118.61444419999992,45.37199327299999],[-118.56159412099998,45.480085891000044],[-118.59946707599983,45.59019640800011],[-118.42945074199991,45.646977743000036],[-118.35033973799995,45.810718241000075],[-118.18270126399989,45.83838162100011],[-118.15397496599985,45.892888524000114],[-118.15238609199992,46.080965452999976],[-118.04522865399991,46.11110557400008],[-117.96084687799993,46.21021443600017],[-117.82009644699997,46.23593898200005],[-117.79369778699987,46.309991761000106],[-117.61805242999998,46.310508399000184],[-117.49107076399991,46.27522586300017],[-117.25363435299994,46.17297704200007],[-117.10861051199993,46.08350572400013],[-116.98723883499997,46.121089117],[-116.95456317499998,46.174565143999985],[-116.74281400899997,46.23224236900012],[-116.72055771299995,46.30152979100018],[-116.62537860899982,46.37892005100008],[-116.93409793199999,46.746280463000176],[-117.0270495609999,46.80195180900017],[-117.00288493599999,46.87444722600014],[-116.86089321099985,46.91231004400015],[-116.88384052799995,47.033667444000116],[-116.96693146699988,47.011862513000096],[-117.0182578919999,47.12396083600004],[-116.94729330699994,47.14310011400016],[-116.853913004,47.05355240100005],[-116.77534508199989,47.110427770000115],[-116.8720258009999,47.18518012700014],[-117.0289076009999,47.48186026400015],[-117.1067180249999,47.53973945800004],[-117.28213251499989,47.50785243000013],[-117.36604297099996,47.53970865000019],[-117.55504583299995,47.76105538200005],[-117.69156180399995,47.866497355000035],[-118.05458629799995,47.817473323000115],[-118.22112280399995,47.951729248000106],[-118.34452216199992,47.91070179500019],[-118.39039971299997,47.849752157000125],[-118.66514243699993,47.95099791000018],[-118.78835084999992,47.932133011000076],[-118.86983694599996,48.01765896300009],[-118.83365701899993,48.219675706000146],[-119.28118280999996,48.127407162000054],[-119.29802981599988,48.22998681300015],[-119.42572058199994,48.34529056800005],[-119.36826364599989,48.39376242700007],[-119.49165565799996,48.506749461000084],[-119.337240926,48.49540891400011],[-119.28279240899991,48.634187515000065],[-119.2179697339999,48.66979851399998],[-119.34793688699989,48.786463646000186],[-119.40686915099997,48.88356413600002],[-119.32801259399997,48.94529809900013],[-119.35556709199989,49.155161023000176],[-119.34171351199996,49.24604876500007],[-119.48300316299992,49.32959587900007]]],[[[-130.95310968599995,55.630150194000066],[-131.04871362799997,55.765299085000095],[-131.3550895049999,55.764114589000144],[-131.40596911499995,55.62970966000006],[-131.07262348599994,55.509978333000106],[-130.98858284299985,55.51625062800008],[-130.95310968599995,55.630150194000066]]],[[[-129.81239253899992,56.57817646900003],[-130.07723963399997,56.61783088900012],[-130.04267869999995,56.55466184900007],[-129.8740535839999,56.522250874000065],[-129.91130058199985,56.436852356000145],[-130.1010586559999,56.4065397060001],[-130.12826564299985,56.25499322000002],[-130.03857458499994,56.114799351000045],[-130.29087858799994,56.058259726000074],[-130.40844768799997,56.09474849800006],[-130.65449348199996,56.041638952000085],[-130.62545506499998,55.98960685600014],[-130.76319913199995,55.88398473600006],[-130.923792043,55.80950976100007],[-130.79718987499996,55.771032236999986],[-130.527308383,55.75008199800004],[-130.46818126899996,55.68602638600015],[-130.70955721399991,55.62304158000006],[-130.63134765799992,55.5165521990001],[-130.63158145699992,55.372891689000085],[-130.48615200799998,55.38106785500014],[-130.15508464799984,55.35718944200016],[-130.4185180689999,55.2117715330001],[-130.52126939299995,55.010513028000105],[-130.65705187199995,54.926960635000114],[-130.6213137179999,54.887757657000066],[-130.14187161499996,55.16051521300005],[-130.11602152199998,55.04679474500011],[-130.00961334699997,55.011564059000136],[-129.70076978599997,54.989543647000175],[-129.37821818599997,55.16511076200004],[-129.2274801439999,55.226752276000184],[-129.10735876799993,55.349221999000065],[-129.0401916849999,55.48027894700016],[-129.08508451499983,55.56245307500012],[-129.26399049699995,55.59549592500008],[-129.1809564589999,55.72530157200015],[-129.38787672899997,55.81512092000008],[-129.45783989199992,56.036421646000065],[-129.38182057999995,56.12909583400017],[-129.4228794249999,56.39551809800014],[-129.58880667799997,56.498370181999974],[-129.7634558929999,56.49837868500009],[-129.81239253899992,56.57817646900003]]],[[[-134.90953820499993,57.326958697],[-134.9670193299999,57.37773672300017],[-135.32482410199998,57.44252304500009],[-135.429845275,57.423046009000075],[-135.30249519299997,57.19075494800012],[-135.30813556899994,57.12692727900003],[-135.08179677599998,57.02646781300007],[-135.26633526299992,56.981675391000124],[-135.2282735949999,56.862555423],[-134.91521056599998,56.828840424000134],[-134.80315243899992,56.737524189000055],[-134.88143859099995,56.57644651000015],[-134.84751321399995,56.43176199800013],[-134.64426491899997,56.23804056900008],[-134.639046851,56.479504202999976],[-134.61048328399988,56.632458750000126],[-134.80384720899997,57.174404170000116],[-134.90953820499993,57.326958697]]],[[[-132.3719802909999,57.92419874300015],[-132.517135543,57.85213017000012],[-132.52896156999998,57.79254607100012],[-132.44190963799986,57.67069331500005],[-132.45870965399996,57.58866264600016],[-132.19924968499998,57.4834841780002],[-132.2018735559999,57.38234612200006],[-132.111892652,57.32175535599998],[-132.078460593,57.22622831400014],[-132.13555862099997,57.155722930000024],[-131.95404062799986,57.09535411600007],[-131.88623069599993,56.91567980700012],[-131.938720688,56.85538291000012],[-132.18243357599994,56.82734410300003],[-132.05027888599994,56.709550776000185],[-132.28286483199986,56.59256628300011],[-132.16395332399998,56.46439395200002],[-132.05094219699993,56.406865212000014],[-131.9119040889999,56.394195008999986],[-131.82679170299997,56.30445743100006],[-131.73852661199993,56.34524497300015],[-131.61230586399995,56.25802698300015],[-131.35258743799994,56.34549701800012],[-131.23584342499998,56.219361463000155],[-131.52920779899995,56.15701012800014],[-131.53150849899987,56.08564890700006],[-131.37376385199997,56.072985120000055],[-130.98121167099993,56.20880287300014],[-130.88246552599992,56.299256434000085],[-130.79295713699997,56.29697837400005],[-130.940907074,56.13137172400013],[-131.03414250799995,55.88232417100005],[-130.92266218899994,55.90702427700006],[-130.76203574,56.0448400520001],[-130.56663565899993,56.058064763000175],[-130.5352016779999,56.128581715000166],[-130.39353963499997,56.18136725300013],[-130.32534765599996,56.35947314000009],[-130.41838057899997,56.44340264600015],[-130.15660066699996,56.48108164700011],[-130.33363366999998,56.60996045000002],[-130.57382364899996,56.6147755450001],[-130.655276787,56.568492825000135],[-130.7858868389999,56.57756614500016],[-130.84578087999995,56.72312149300012],[-131.09841840799993,56.897258608000186],[-130.99909969099997,57.11609344800007],[-131.02386359999997,57.18906754100004],[-131.16491662399994,57.33487795700012],[-131.51507598599994,57.41015391400015],[-131.627751097,57.4823965130002],[-131.7244407249999,57.595356760000186],[-131.99359004599995,57.55201192099997],[-132.0982208179999,57.63768567000005],[-132.36843698899992,57.762649383],[-132.3719802909999,57.92419874300015]]],[[[-132.46730060199997,57.05082374700004],[-132.71912488199996,57.09652601200003],[-132.7471410569999,56.84961710900012],[-132.58078192199991,56.785050266000155],[-132.50338754499995,56.84090233400019],[-132.600204562,56.97929560200015],[-132.46730060199997,57.05082374700004]]],[[[-132.87924163899993,57.489420409000104],[-132.98402664199995,57.33160850500019],[-132.83290061099996,57.27449366000019],[-132.75314361699998,57.423676281000155],[-132.87924163899993,57.489420409000104]]],[[[-136.20025693899998,58.14228576100015],[-136.31517592299997,58.06949175000011],[-135.78656933299987,57.824736699000084],[-135.433006853,57.685204567000085],[-135.12466480799998,57.625276639000106],[-135.53312220099997,57.81578171200016],[-135.70302977599994,57.94116948400017],[-135.8229824249999,58.077999157000136],[-135.72280665099998,58.1390379180001],[-136.17057680599999,58.19542906300006],[-136.20025693899998,58.14228576100015]]],[[[-134.90808063399987,59.078428758000086],[-135.05863956399992,59.047181693000084],[-135.05777509299998,58.95953019600017],[-134.94167796199997,58.958428194000135],[-134.89140952399993,58.86181744500004],[-134.77565737199996,58.82929260500009],[-134.89653362699988,58.71921857500007],[-134.848378686,58.603044563000196],[-134.74567752299998,58.5327720360001],[-134.63590235099986,58.34097690400017],[-134.51712052899995,58.35684055900009],[-134.2704923529999,58.25473215700015],[-134.1425668739999,58.27032805500005],[-134.036387511,58.20203768000016],[-133.87426952999994,57.97844952200006],[-133.65361427399995,58.019690304000164],[-133.51500763099995,57.914347638000095],[-133.44145100099996,57.812270690000105],[-133.1406293299999,57.694717596000146],[-133.05828189299996,57.615817447000154],[-132.93531757699992,57.66898810100014],[-132.956237634,57.72308590900019],[-133.13046269999995,57.71854962300017],[-133.17150854499994,57.77418953500006],[-133.06677264099994,57.877639822000106],[-133.30444368599996,57.950395412000034],[-133.07839968199988,58.13544151600007],[-132.81433067199998,57.952501449000124],[-132.60519363799995,58.015030280000076],[-132.5662685829999,58.10575030000007],[-132.37480160699994,58.16113020500006],[-132.36111462899999,58.08169876400012],[-132.268079721,57.974047329000086],[-132.16846928999996,57.98042579300011],[-132.01101700499999,58.11098199800006],[-132.20890513999996,58.09842898000005],[-132.2156031629999,58.225165429000185],[-132.48524306199988,58.29958362899998],[-132.59324637999998,58.41759728900007],[-133.0604518419999,58.38728677800009],[-133.16191108199996,58.429577459000086],[-133.06062618899995,58.63842447800005],[-133.2561961309999,58.686323218000155],[-133.52549760699986,58.861078967000026],[-133.7525786189999,58.78143244700016],[-133.7332606789999,58.716096182000115],[-133.87304668399992,58.597451013000125],[-134.0394286359999,58.53483467600006],[-133.99699357499998,58.42481096500006],[-134.27056866899994,58.36105385100018],[-134.3625635759999,58.437579453000126],[-134.49388167999996,58.451640934000125],[-134.6684727,58.55849762700012],[-134.762252618,58.68344498100009],[-134.57528655599992,58.75003618500017],[-134.61611966799995,58.816773568000144],[-134.52365067999995,58.89729331500007],[-134.85374461199996,58.959909485000196],[-134.90808063399987,59.078428758000086]]],[[[-136.4737662999999,58.58559480100007],[-136.65739455699998,58.484608133],[-136.50628784199995,58.44804724700009],[-136.4737662999999,58.58559480100007]]],[[[-137.38916068899988,58.69072717900008],[-137.46488967599998,58.685912949000056],[-137.70681755299995,58.812504497000134],[-137.78493632799996,58.799475160999975],[-137.51540454899998,58.61918706300003],[-137.38916068899988,58.69072717900008]]],[[[-136.5132573069999,58.750467517000175],[-136.4969935869999,58.606494796000106],[-136.34942089399993,58.68978572600008],[-136.5132573069999,58.750467517000175]]],[[[-136.95930288399995,58.89784017200009],[-136.837615702,58.78597929400007],[-136.66160562599993,58.75751334500012],[-136.48924820499997,58.79664180300006],[-136.74265740099992,58.87813111600008],[-136.95930288399995,58.89784017200009]]],[[[-137.78236364699984,58.95824249200001],[-137.8553775669999,59.017269531000125],[-138.065441239,58.99833202300016],[-137.84961002199992,58.84261458000003],[-137.78236364699984,58.95824249200001]]],[[[-135.30233958999997,59.7295767760001],[-135.66391108699992,59.86978534500008],[-135.82562326399994,59.864298648000045],[-136.03232054699998,59.76311309600004],[-136.49865558899995,59.75101763900017],[-136.44186298099999,59.577439174000176],[-136.56678769299987,59.4995828480001],[-136.41165157299997,59.36960702200008],[-136.46774259899996,59.27355778700007],[-136.26756263399994,59.25433389300002],[-136.04952955099992,59.167119687000195],[-135.96827655499993,59.177469158],[-135.78999364199996,59.09355809300018],[-135.61379966699997,59.11927813099999],[-135.42486093199994,58.94549442500016],[-135.36597554099995,59.028531325000074],[-135.33412108,59.17927678199999],[-135.1857391719999,59.04804044400015],[-135.08584554599997,59.078405624000084],[-135.031509691,59.20773235500013],[-135.0349115699999,59.35796472600009],[-135.21658362199997,59.36127172200014],[-135.23248258299998,59.43390225400003],[-135.01470999699995,59.56758733900011],[-135.30233958999997,59.7295767760001]]],[[[-136.02897070699993,68.9371107290001],[-135.66629457999989,68.89951592600016],[-135.83936522199997,68.99992528700017],[-136.02897070699993,68.9371107290001]]],[[[-138.93730172499994,69.57405321100003],[-139.14489555999984,69.63682393800008],[-139.2350910749999,69.5711171270001],[-139.10561599399995,69.51574485400005],[-138.93730172499994,69.57405321100003]]],[[[-119.13655576399998,74.21741904700019],[-120.07524344799998,74.27482152700003],[-120.91397093699999,74.43229283900007],[-121.11365218299989,74.52362928800005],[-121.46149089399995,74.55560464400014],[-121.76200264499994,74.54742450200013],[-122.29094713899991,74.47601857600011],[-123.18384838699995,74.45186860500007],[-124.029000651,74.40697024700006],[-124.70675534599997,74.35236225600005],[-124.50733869599992,74.25100892900014],[-124.36694990299998,74.02940694300008],[-124.10049187599992,73.85468768700008],[-123.81177861199996,73.81963633300018],[-123.86278723099991,73.70507346400012],[-124.04949958399993,73.66423334500007],[-124.07900312699991,73.52348113000005],[-124.28879584699996,73.49277507200014],[-124.51530941899995,73.3287996160002],[-124.5576760109999,73.23918104400019],[-124.81479528099999,73.10884622600014],[-124.79570565799992,73.03013076200006],[-124.455340278,72.93742907600017],[-124.72249150699997,72.88866629300009],[-125.0484798359999,72.88799193100004],[-124.95339936999994,72.67884775700014],[-125.0559028799999,72.56471386600003],[-125.31597430999989,72.48014502199999],[-125.5217314059999,72.28629963800006],[-125.63026131899994,72.26205776400013],[-125.72682836599989,72.11591036100015],[-125.74020721799991,71.953007264],[-125.24856136299996,71.98162494500008],[-125.06296861399994,71.90211306900017],[-124.59456059099989,71.7856976290002],[-124.05369621999989,71.697142401],[-123.80679727699993,71.52823260800011],[-123.61558668799995,71.4889869380001],[-123.42268480999991,71.21897048200009],[-123.08579716299994,71.08036387500016],[-122.78679003399992,71.08150388700017],[-122.49507227799995,71.20849530900011],[-122.02829363899997,71.30105894200005],[-121.90178011999996,71.3931042320001],[-121.5595878449999,71.46055765200009],[-121.32075902799994,71.3800897960001],[-120.72581211199991,71.47122060700013],[-120.49178980999994,71.54894973400008],[-120.37580769999994,71.70239591600011],[-120.44702936399995,71.74023729100003],[-120.44085348899995,71.93564965000002],[-120.15855589599994,72.09340524200013],[-120.1217953979999,72.1630366070001],[-120.25216604199983,72.24080663500013],[-119.77904432999992,72.21983362500015],[-119.31350341699994,72.38742319700015],[-119.15032404899989,72.6230687060002],[-118.35189786299992,72.82560100100005],[-117.93489841599995,72.90494120900019],[-117.46695469599985,73.03129654000003],[-117.22136941999986,73.05460179400006],[-116.64047319399998,73.215205605],[-115.89170476099997,73.32281569300011],[-115.45573218899983,73.42042364600007],[-115.3358682299999,73.54809548700013],[-115.89711884699994,73.73051092600019],[-116.60592846099996,73.99893220100012],[-117.38938279599995,74.226068156],[-118.06624420499998,74.28049407200018],[-118.81525003899998,74.18730097400015],[-118.76572101999989,74.12115704400014],[-118.92700455099992,74.00939606700013],[-119.13655576399998,74.21741904700019]]],[[[-117.44961900399989,76.09895070800002],[-117.79859733399996,76.1098942800001],[-118.11511627699997,76.0004232120001],[-118.58308138799998,75.9246423370002],[-119.31448951099992,75.66217014500018],[-119.39284535599995,75.60102984400004],[-118.55569754199996,75.50022207500012],[-118.00860735399988,75.70010500900014],[-117.8194000229999,75.86196479700016],[-117.54586850799996,75.9821319560001],[-117.44961900399989,76.09895070800002]]],[[[-115.80161058399995,76.9082755290001],[-115.74097363999994,76.96413082100003],[-116.21461624399996,77.03935986800008],[-116.3348208249999,77.12110325000009],[-116.18029917099989,77.19657825000013],[-115.58994415499996,77.26474656300019],[-115.46177176799995,77.35954992200016],[-116.39879203099997,77.55548038500001],[-116.76136757899997,77.53319705800004],[-117.07134118199991,77.44419559500005],[-116.83330773899996,77.38601963000019],[-117.02332072099995,77.29873292700012],[-117.61240712799997,77.33224288899999],[-117.85863928199996,77.38608252000006],[-118.09874105199998,77.3600972100001],[-118.81208391599995,77.35840814900007],[-119.13413281299995,77.32503761400005],[-119.3759893969999,77.18726101100009],[-119.725774732,77.11755165200003],[-120.07193223699988,77.00234806800017],[-120.5811287969999,76.75074055700014],[-121.18451453299997,76.68839528900003],[-121.50470108399998,76.44017425900006],[-121.98932342499995,76.43853207300003],[-122.33689183899997,76.4056885670002],[-122.6203131829999,76.33709793400004],[-122.62215131099993,76.17842844200015],[-122.46310565699986,76.10747559700008],[-122.68213509799995,75.9039524420001],[-122.41752860799988,75.86908129900013],[-122.0971673659999,76.0243762980001],[-121.833175257,76.04276714300005],[-121.23063597999999,75.97386763300011],[-120.979015415,75.99559041100014],[-121.00961065299998,76.14458203200013],[-120.82829132599994,76.18215385200006],[-120.62099738199998,75.99244892600018],[-120.40290429899989,75.96666655100012],[-120.45628336699986,75.83034380200013],[-120.24345956599996,75.82226898500016],[-119.71738214799996,75.88491767500017],[-119.56899161499996,76.08309935000017],[-119.63373787599994,76.3090873910001],[-119.4663225949999,76.32623305200008],[-119.29014758599999,76.13902508300015],[-119.05561163499993,76.08996097600016],[-118.89721179299994,76.2641630940002],[-118.52518614899998,76.3356679630001],[-118.64958005099999,76.45135162999998],[-118.29879258099987,76.5541877980001],[-118.43494371599996,76.72480989600007],[-118.28792359199991,76.77828545100016],[-117.75509510099994,76.73837174800019],[-117.92140111999998,76.67810243800011],[-118.00296984,76.40510748600019],[-117.59238690599994,76.28516251600007],[-117.30855424499987,76.259198615],[-116.92535529799994,76.34597603900016],[-117.0289464299999,76.53186334000003],[-116.06798594799994,76.61641475700014],[-115.86798635899993,76.69618004500006],[-115.955066838,76.81620128500009],[-116.26744077499995,76.87710589300002],[-116.23656257099992,76.94482121200014],[-115.80161058399995,76.9082755290001]]],[[[-113.45307827899995,76.82594138800016],[-113.73346863499995,76.8887266480001],[-114.5803693929999,76.870920319],[-114.79220684399985,76.81653121000016],[-114.76348472399997,76.75133871100007],[-113.59732575399994,76.7099830630001],[-113.45307827899995,76.82594138800016]]],[[[-114.29812317299991,78.038504864],[-114.4974419749999,78.04080839200003],[-115.00063378299996,77.91304201600019],[-114.27758693399988,77.70487159100009],[-113.88399187099992,77.72235264400013],[-113.54154226299983,77.81590259400014],[-114.29812317299991,78.038504864]]],[[[-90.46495058199997,-1.352184337999972],[-90.38629161699998,-1.329873722999878],[-90.35252361099998,-1.270897310999885],[-90.4766535629999,-1.231690287999868],[-90.51042961499996,-1.312027141999863],[-90.46495058199997,-1.352184337999972]]],[[[-89.28511053699998,-0.780414823999934],[-89.24066163999993,-0.717765628999928],[-89.34271952499995,-0.686087902999873],[-89.45426958099989,-0.758022736999862],[-89.48265053699998,-0.815510354999958],[-89.60182963299997,-0.879910528999972],[-89.55424456299988,-0.951068192999969],[-89.40952262299999,-0.921235322999905],[-89.28511053699998,-0.780414823999934]]],[[[-90.1810226639999,-0.646950952999816],[-90.16676353799994,-0.569181642999979],[-90.25872055899993,-0.485485154999878],[-90.48384054199994,-0.520359571999961],[-90.53037250999989,-0.562150231999965],[-90.53489655799996,-0.690286900999979],[-90.39535564,-0.769646927999929],[-90.23521451799996,-0.744467690999898],[-90.1810226639999,-0.646950952999816]]],[[[-91.2357936489999,0.00721401100003],[-91.31032553199998,0.133345728000165],[-91.48952458699989,0.099120070000026],[-91.5939555569999,-0.005768886999931],[-91.54712653499996,-0.051249595999934],[-91.46434752899995,-0.013602445999936],[-91.40802750999995,-0.043700183999931],[-91.39064763399989,-0.233384999999885],[-91.32056452999984,-0.339684127999931],[-91.22800451399996,-0.384202762999962],[-91.21417252999993,-0.47737650199997],[-91.0778576379999,-0.598126701999945],[-91.0923236299999,-0.635095923999927],[-91.32889563899994,-0.690981592999947],[-91.48919651999995,-0.845170054999869],[-91.50241863699995,-0.919360458999961],[-91.4194485239999,-1.010186929999975],[-91.30953260399991,-1.011699695999937],[-91.210906605,-1.041576318999944],[-91.0166776239999,-0.987303662999977],[-90.86003862899992,-0.914059072999976],[-90.82483664699998,-0.78887048799993],[-90.7813265229999,-0.761405337999975],[-90.8977045549999,-0.60480422899991],[-90.95433755399989,-0.605500932999917],[-90.94049852899997,-0.478826570999956],[-91.01316057799988,-0.362695134999967],[-91.10842861899988,-0.308013441999947],[-91.17464464799991,-0.220741736999969],[-91.1983035749999,-0.020189950999963],[-91.2357936489999,0.00721401100003]]],[[[-91.40001658999995,-0.460658795999905],[-91.37596857499994,-0.388701162999837],[-91.41136954299998,-0.282094417999929],[-91.50543964199989,-0.275538931999904],[-91.66187260999999,-0.302205621999917],[-91.60546860399995,-0.475843786999974],[-91.52056864199989,-0.497157289999905],[-91.40001658999995,-0.460658795999905]]],[[[-90.6613315329999,-0.192770990999975],[-90.78679655299999,-0.141547671999945],[-90.82645452199995,-0.159877552999831],[-90.83225261999996,-0.325055192999912],[-90.59532957699992,-0.373673415999974],[-90.54622654399992,-0.300442906999933],[-90.60232561599997,-0.216909027999918],[-90.6613315329999,-0.192770990999975]]],[[[-90.40151264999997,0.329596089000063],[-90.46585850899993,0.390463290000184],[-90.53617865399997,0.367615060000105],[-90.47727952299982,0.280700424000145],[-90.40151264999997,0.329596089000063]]],[[[-89.34582552299992,15.162624184000151],[-89.37261961799999,15.193557933000136],[-89.53915361699995,15.16894162400007],[-89.67340857199997,15.083761036000055],[-89.78227256299988,15.11349918999997],[-89.8455356479999,15.061330560000101],[-89.955657595,15.061831463000033],[-90.03144860699996,15.030894696000132],[-90.04753163599992,14.974866367],[-90.1434175899999,14.960876133000113],[-90.06665762999995,14.854522019000058],[-89.82314255499995,14.82589094600013],[-89.69187960499983,14.768171820000191],[-89.59780866699998,14.837347164000164],[-89.48953258299997,14.783101834000036],[-89.51672364399985,14.94616119900013],[-89.45088966199984,14.970609366000133],[-89.34582552299992,15.162624184000151]]],[[[-88.43141151799989,16.56604864600007],[-88.55072053399994,16.61628357100011],[-88.58058156699991,16.57862116600012],[-88.52989955099997,16.40820265700006],[-88.43016864999993,16.487625716000025],[-88.43141151799989,16.56604864600007]]],[[[-88.76215353899988,16.931387978000146],[-88.67526253999995,16.97369647300019],[-88.6614835289999,17.087500422000176],[-88.78123460599983,17.09024901600003],[-88.87907455099992,17.144250936000105],[-88.92666666199989,17.084237515000098],[-88.92916061299991,16.879990315000157],[-88.7956166109999,16.893732278000016],[-88.76215353899988,16.931387978000146]]],[[[-88.36848454799997,17.463492315000053],[-88.34133958699994,17.519539754],[-88.45723750299999,17.543489366000074],[-88.55228459699993,17.483095071000037],[-88.51807352399999,17.39311936400003],[-88.36848454799997,17.463492315000053]]],[[[-88.38668853299993,17.82991592900015],[-88.44296261899996,17.920907188000115],[-88.50637054299989,17.953183215000024],[-88.58559461599998,17.863137770000094],[-88.47341155899994,17.666888918000097],[-88.34697758999988,17.630288834999988],[-88.30471050199998,17.77393822700003],[-88.25429553399994,17.842337072000134],[-88.27158354399995,17.929797705000055],[-88.38668853299993,17.82991592900015]]],[[[-97.8752056109999,17.985940530999983],[-97.84403264199989,18.11916032099998],[-97.9440535579999,18.116959568000084],[-97.8752056109999,17.985940530999983]]],[[[-97.25623357699999,19.50594620200002],[-97.27903754999994,19.59088120100006],[-97.34724461699994,19.62385929600009],[-97.44412265399995,19.57543100600003],[-97.51193962599996,19.62656413600007],[-97.56502557199991,19.54724383900009],[-97.68557762399996,19.52730899100004],[-97.7369075609999,19.47768879500012],[-97.63090565499994,19.399982518000115],[-97.67131765999994,19.35988768400017],[-97.77397166599991,19.45012540900018],[-97.886444569,19.474384984000096],[-98.01069656099997,19.433009396000045],[-97.97389262999991,19.386633163000056],[-97.96306656399997,19.27369489700004],[-97.89749158299998,19.24435756500003],[-97.82254764499999,19.156223529999977],[-97.71135750799994,19.12957008300009],[-97.69649454999995,19.05234978900006],[-97.836646509,19.08762553100007],[-97.94121561299983,19.012494174000153],[-98.03433252199994,18.909914096000023],[-98.01586953599997,18.809812044000182],[-97.91871657299987,18.748979543000075],[-97.85768156599988,18.647371598000063],[-97.85958057,18.576080997000133],[-98.0685655559999,18.468726252000124],[-98.07111365499998,18.40205944400003],[-97.99146260799989,18.338000246000036],[-97.9214705309999,18.436061305000067],[-97.79224354499996,18.296853483],[-97.79915660299997,18.20874895200012],[-97.6576685689999,18.117646381000156],[-97.58625760299986,18.116708614000117],[-97.38331563399998,18.197019484000066],[-97.35704054699988,18.158943851000117],[-97.23577150699998,18.197031554000148],[-97.15803555699989,18.15344716600015],[-97.15254960199997,18.303947255000082],[-97.20856451999987,18.329940543000134],[-97.34667162999995,18.478758887000026],[-97.33676153799996,18.57345193000009],[-97.36970560299994,18.686160364000102],[-97.30644955899999,18.839044267000077],[-97.32758352199994,18.929255003000094],[-97.39454654599996,18.94110215200004],[-97.438194636,19.012922992000085],[-97.30584756999997,19.288301872000034],[-97.29627258699998,19.382336265000163],[-97.23634365599997,19.437200179000115],[-97.25623357699999,19.50594620200002]]],[[[-99.58080254399994,19.441227852000054],[-99.67314965999992,19.555515269000068],[-99.6564785569999,19.69639310100007],[-99.75776664899996,19.70806154800016],[-99.86877456299993,19.772587786000088],[-99.9411776099999,19.737915708000116],[-99.95568064999998,19.650504696000098],[-99.8862156269999,19.601014754000175],[-99.86710354699989,19.497611573000086],[-99.95902251399991,19.451471374999983],[-99.92237850999993,19.360864511000102],[-99.85449263799995,19.32953832100003],[-99.7746806589999,19.21761594100002],[-99.68925464899996,19.199745221000057],[-99.59580967099993,19.116480903000138],[-99.42449966399994,19.118038764000175],[-99.47950757999996,19.24371651700011],[-99.48218559799994,19.327241680000157],[-99.58080254399994,19.441227852000054]]],[[[-99.00655366299998,20.821144261000143],[-99.04802664999994,20.94841306700016],[-99.16448967399998,20.961798295999984],[-99.12518357699997,20.876460295000015],[-98.94464861499989,20.68751359000015],[-98.95857967299997,20.574021280000125],[-98.86141966899999,20.51483733200007],[-98.8678056729999,20.389758549000135],[-98.82825465699995,20.371760424],[-98.74501766499998,20.48296732400013],[-98.69675466599995,20.315727736000156],[-98.59137754699998,20.247265692000042],[-98.52309453999999,20.234751343000084],[-98.42180661599991,20.129664238000146],[-98.40756257799995,20.052030883000157],[-98.33328265499995,20.055003609000096],[-98.2666936309999,20.21843915400018],[-98.39675159899997,20.30813725200005],[-98.51623562899994,20.308991033000098],[-98.53749867299996,20.455318778000105],[-98.57026654999993,20.522799972000087],[-98.65790555099994,20.568078342999968],[-98.709472528,20.64059722800016],[-98.79502057899992,20.624798346000148],[-98.81358364399995,20.694860160000133],[-99.00655366299998,20.821144261000143]]],[[[-104.01477065499995,23.05882859900015],[-104.087882644,23.053783867000163],[-104.16078961099998,22.99154438],[-104.20934262299988,22.87413034500014],[-104.17491965599993,22.79952034300004],[-104.1747436359999,22.650429084],[-104.13576460099995,22.59884165500017],[-104.02148455899999,22.573729138000033],[-104.04282354399999,22.773614562000034],[-104.10467561899998,22.808606661000113],[-104.09879252899992,22.884154934000094],[-103.99488056599995,22.905920557],[-103.96925356799983,22.952858209],[-104.01477065499995,23.05882859900015]]],[[[-109.82547759499988,24.05757980500016],[-109.97187055199987,24.035934211000097],[-109.99402660399994,24.125912600000163],[-110.09553564299995,24.03412405500012],[-110.02891560599994,23.939468899000076],[-110.01715864499988,23.81299218200013],[-109.90505253399988,23.802021612000146],[-109.87812064099995,23.956090883000115],[-109.8222426829999,23.960990776000074],[-109.82547759499988,24.05757980500016]]],[[[-109.91926555999999,24.374186249],[-109.88513964699985,24.191505184],[-109.8068996099999,24.20684557500016],[-109.91926555999999,24.374186249]]],[[[-110.57283758699998,24.875738884000043],[-110.567451544,24.979621677000182],[-110.601669658,25.037272072000064],[-110.67903160699984,25.01613609700013],[-110.57283758699998,24.875738884000043]]],[[[-111.17854257699997,25.884657170000025],[-111.09895355699996,26.01335626499997],[-111.18075556799994,26.028308407000054],[-111.17854257699997,25.884657170000025]]],[[[-105.344940636,26.112102796000045],[-105.2540965639999,25.983466733000114],[-105.19704463699998,26.05834814200017],[-105.32066362699993,26.170644019000065],[-105.344940636,26.112102796000045]]],[[[-105.599388563,26.208949317000133],[-105.64496666999986,26.312608481000098],[-105.74735262299993,26.311960560000045],[-105.7343065259999,26.149642825000058],[-105.67015060099999,26.14037344600007],[-105.62691456499994,26.06156913900014],[-105.56376664699997,26.103565157],[-105.599388563,26.208949317000133]]],[[[-96.4130617539999,28.327895778000084],[-96.42799812299995,28.34783214500004],[-96.78864366199991,28.189295738000112],[-96.77658001999998,28.12325936100018],[-96.56038906199984,28.26438666900009],[-96.4130617539999,28.327895778000084]]],[[[-107.29615063499989,29.146160808000104],[-107.26658665699989,29.20613533700009],[-107.27500158399994,29.344156952000105],[-107.35517867899989,29.521064059000025],[-107.43377662399996,29.58902251800015],[-107.45162957499991,29.38936307],[-107.49210360599989,29.32480565200018],[-107.44314557999996,29.272799798000108],[-107.49010452199997,29.145210636],[-107.58626557099996,29.001295537000146],[-107.55655658599994,28.822921429000075],[-107.47288557799999,28.792906672000072],[-107.45110352599994,28.88922396000015],[-107.36061853499996,28.918607727000165],[-107.33172561099997,28.78777476800019],[-107.246917683,28.79968142900009],[-107.26148257999995,28.877643187000047],[-107.39826166199998,28.999954600000137],[-107.37973061499997,29.203573492000146],[-107.29615063499989,29.146160808000104]]],[[[-107.79280857299995,29.44770782200004],[-107.88950354999992,29.43518559400013],[-107.9078595819999,29.37450882900015],[-108.04567768399988,29.48295657500006],[-108.04504367699991,29.383257524000044],[-107.9357295779999,29.328061686000126],[-107.87628159999997,29.256870326000126],[-107.80707557799985,29.23978314600015],[-107.7059326609999,29.298179866000055],[-107.79280857299995,29.44770782200004]]],[[[-107.78281365699996,29.75501823200011],[-107.72434267399996,29.872660925000048],[-107.82392856799999,29.880284602000188],[-107.81410263099997,29.674910372000056],[-107.691421575,29.576750909000054],[-107.69585459599989,29.721362544000044],[-107.78281365699996,29.75501823200011]]],[[[-95.81547395099989,30.51071740200007],[-95.82595310499988,30.5724117420001],[-95.9330329799999,30.562316494000072],[-96.151255199,30.366068437000024],[-96.36285541199999,30.32879200700006],[-96.6197776539999,30.20008124200018],[-96.8001163539999,30.032136770000136],[-96.904808345,29.88172971500012],[-96.99131218199989,29.8112778040001],[-97.18673959299997,29.582086574000016],[-97.27582499699997,29.49623099300004],[-97.30360926699996,29.41512779900006],[-97.50446059699993,29.238348805000044],[-97.55912746699988,29.135259385000097],[-97.65963311799999,29.07112479800014],[-97.70032044599992,28.996229090999975],[-97.622867209,28.938797137000165],[-97.49645825499988,28.967726464000066],[-97.45509462399997,29.027668246000076],[-97.28611530599989,29.05442088600006],[-97.22954971099989,29.211339649000138],[-97.17142731699994,29.253023007000024],[-97.07057515499991,29.25501374000015],[-96.9697531349999,29.300946736000185],[-96.95758712199995,29.369048482000153],[-96.86844943799991,29.36820108100011],[-96.77821777999998,29.50696386700008],[-96.72707131199991,29.660043369000164],[-96.60620744199997,29.707856766000077],[-96.67013198399997,29.80983050800006],[-96.5885764169999,29.889003682],[-96.51436702599995,29.846617636000076],[-96.4351683839999,29.935004790000164],[-96.31946932199997,29.955219954000142],[-96.31536071799991,30.03745641500018],[-96.18684780299998,30.063561064000112],[-96.19642865499992,30.20049040800012],[-96.10135333499994,30.24600554300008],[-95.98737358499983,30.24204694700012],[-95.93760038499988,30.342692070000055],[-95.71368955299994,30.316528253000172],[-95.65467791699996,30.383139181000104],[-95.75030218799998,30.446042296000087],[-95.85590325099997,30.3989192950001],[-95.883936539,30.4610033510001],[-95.81547395099989,30.51071740200007]]],[[[-89.85228389599996,36.996310533000155],[-89.83482317199997,37.087443664000034],[-90.08759039899996,37.01512832600008],[-90.20700804699993,36.94496582100004],[-90.2059495439999,36.88875349800014],[-90.04205689899999,36.79344292600007],[-90.06270979299995,36.64718626900009],[-90.13013334999988,36.50405767900003],[-90.20659916599993,36.508614892000026],[-90.28144383099988,36.42904216300013],[-90.35619039199997,36.420948127000145],[-90.50682048799996,36.24512945900011],[-90.61495648799985,36.19893797700007],[-90.70506693199997,36.012925495],[-90.75867103399997,35.977201029000184],[-90.8057064059999,35.80202691800014],[-90.7131352969999,35.75903566400018],[-90.68014113799995,35.69648651299997],[-90.71351078299989,35.59210615000006],[-90.81523594399994,35.07455602500016],[-90.72760729499998,34.98872047200007],[-90.67926105799995,35.16808907500007],[-90.70545303799997,35.31425446000014],[-90.66227927699998,35.499524333000124],[-90.66566178699998,35.82143832200006],[-90.55771783399985,35.93729855400011],[-90.44440072499998,36.15345866000018],[-90.28011856699999,36.27562470700019],[-90.1713146319999,36.434575301000166],[-90.05494651499998,36.47985411700006],[-90.0426151339999,36.67534233700019],[-89.90754597199992,36.83005376900013],[-89.83065307399988,36.88318500800017],[-89.85228389599996,36.996310533000155]]],[[[-125.38345315199996,69.34179888200009],[-125.94014130599987,69.396015788],[-126.26962183799998,69.51661757600016],[-126.68870691299998,69.73627366900007],[-126.87905371099998,69.98422752300019],[-127.16242835799994,70.23555038900014],[-127.49950620499999,70.40504659700014],[-128.0175341329999,70.56637983000007],[-128.14046724399986,70.50289865400009],[-128.20679946699988,70.36855644600013],[-128.02623162699996,70.27087720700013],[-127.591197,70.23581680700016],[-127.75359931499997,70.18820455500014],[-128.2697887849999,70.1412633220001],[-128.38521198499996,70.09500002000016],[-128.3835178719999,69.93774169600016],[-128.58789386799992,69.87393108300006],[-128.81356433199983,69.74804941200011],[-129.14095520299998,69.68875515200006],[-129.147552535,69.85076687300011],[-129.58467397299995,69.81253223000016],[-130.07345169299998,69.70560961500007],[-130.32161075099998,69.68601007500018],[-130.619804489,69.42690238800014],[-130.90372595099996,69.35926383499998],[-131.0267757939999,69.45990307199997],[-130.7897468,69.65063214200018],[-130.6136803049999,69.68240532100003],[-130.33712308299994,69.81658736700007],[-130.0752752979999,69.86274316600009],[-129.52263531699998,69.99536381700017],[-129.37227231699995,70.10087695400006],[-129.5672224559999,70.17628562900018],[-129.78143706299988,70.20633977400007],[-129.87568668799986,70.08675169400016],[-130.29061074099997,70.06924833199997],[-130.52797864799993,70.130965576],[-130.991986334,70.06362891700019],[-131.09017504399998,69.88637777700012],[-131.4488444949999,69.89314757900019],[-131.63602206399997,69.86659545400016],[-131.88192595299995,69.76987296000016],[-132.09403773799983,69.72639703000004],[-132.56240633,69.73428715600011],[-132.6591384919999,69.65407879300017],[-132.97503754599995,69.62723723800019],[-132.98901937199986,69.46454640900004],[-133.2141293929999,69.39009404200016],[-133.55127108899995,69.39471695700013],[-133.94789124099992,69.26942435400008],[-134.012402222,69.369993222],[-133.78129024999993,69.48967911400007],[-134.147941651,69.52602429000007],[-134.18282430899995,69.64568418700014],[-134.34034588199995,69.68623644100012],[-134.48332640499996,69.53598689100005],[-134.41831281999998,69.47108782600014],[-135.15340353699997,69.465874068],[-135.29369773899992,69.42313307400019],[-135.20893611699995,69.26813971600018],[-135.473584099,69.32929562600015],[-135.77625970299994,69.31169746300003],[-136.003262227,69.19260775900017],[-135.94006859799993,69.08350571000017],[-135.585363633,69.0102416100001],[-135.80389658299993,68.97526844900017],[-135.3302923529999,68.82423410900003],[-135.13502019099997,68.87306612999998],[-135.05579352799998,68.9630769910001],[-134.710911426,69.01486821300017],[-134.59682214499992,68.98864992600005],[-134.36814998499995,68.817337969],[-134.09909392699996,68.69361421000013],[-133.82966892199994,68.52801780800019],[-133.65591359099994,68.30943262700009],[-133.23631593599993,68.28073281800016],[-133.1657960799999,68.41064139300005],[-132.73309440499986,68.40743428100006],[-132.76910102499994,68.314016766],[-132.66217566099994,68.24135871900006],[-132.33294629699998,68.30953203100012],[-132.16652191599997,68.26024810500019],[-131.9994631439999,68.40295981900005],[-131.7592407279999,68.40943575500012],[-131.58115581699997,68.45538969800015],[-131.6428183149999,68.51158727500007],[-131.23506548199998,68.56990984300006],[-131.09231614199996,68.55833605800018],[-130.7512262099999,68.69092943000004],[-130.37780876499994,68.77254425100011],[-130.068626409,68.81325787200018],[-129.6548664319999,68.68178128200003],[-129.58740883399992,68.56192375600017],[-128.83214319799998,68.40812149900006],[-128.68119092699993,68.33665305700004],[-128.47067581599993,68.15753291599998],[-128.2178111849999,68.10825320300012],[-127.74410403099989,68.16151988100012],[-127.56657251899992,68.0970481080002],[-127.49332705999996,67.99497916900003],[-126.9638503939999,67.9701498340001],[-126.43219607999998,67.91932270800015],[-126.22140966999996,67.95573246200019],[-125.94280356899998,67.96090294400005],[-125.68599235599999,67.8973518030001],[-125.466658038,67.918453844],[-125.27284247999995,67.97513910600009],[-125.02793494699989,67.98443825700008],[-124.85476916999994,67.90728116600019],[-124.73821803699997,67.69490137900016],[-124.64124008099992,67.6337816910002],[-124.36329126299995,67.56964843300011],[-124.26860109399996,67.51286897500012],[-124.26934478099992,67.36873809100007],[-124.5177242819999,67.28638034800008],[-124.86748125799994,67.36905155800014],[-124.95457276199988,67.28602370099998],[-124.89014280799995,67.19295972700019],[-124.93028728399992,66.9959629110001],[-124.70703607999991,66.91272918400011],[-124.4405053079999,66.85380860900017],[-124.28982478199998,66.72359805500008],[-124.07164392999994,66.67942619700017],[-123.81734077299996,66.692069032],[-123.46697137499996,66.75182376000004],[-123.05024958799993,66.5740395970002],[-122.89138101099996,66.60691947400011],[-122.70316202899994,66.5831595050002],[-122.27133252899995,66.60369977199997],[-121.9579987279999,66.6442023940001],[-121.54041301099994,66.75427380600007],[-121.40086945799999,66.93583532900016],[-121.08911630699998,66.94199229000003],[-120.59266455299996,67.05195423700007],[-120.18845159099993,67.07797886300006],[-119.90691316799996,67.06961644100005],[-119.570154517,67.02551584600008],[-119.32925774699999,67.03246620200014],[-119.3552687959999,66.95470346600013],[-118.94323856399996,66.9087163550002],[-118.75626241699996,66.92870801400011],[-118.73782445899991,67.20312730600006],[-118.80963974899993,67.2904980780001],[-118.64998519199986,67.37339698900007],[-118.43113396799993,67.38416803300004],[-118.23385094499997,67.26614011000015],[-118.088017676,67.24290252000003],[-117.98150775399995,67.13220252900004],[-117.7540332769999,67.11427757700017],[-117.62189931399996,66.93597816800013],[-117.42936813099988,66.91465748900009],[-117.30896777799995,66.84431353100001],[-117.15017813099996,66.95800050700018],[-116.75414318599996,67.00248083700006],[-116.38399818699992,66.88779042100003],[-116.25247792499994,66.79588956900017],[-116.08434813799994,66.76016755000012],[-115.84180766799989,66.82083126000015],[-115.4494738119999,66.70512258300016],[-115.11281734199997,66.68480074700005],[-114.72571108399995,66.52639157500005],[-114.58985094699989,66.40679599800012],[-113.95975428599996,66.08266973000019],[-113.79899996799998,65.861048433],[-113.42498445399997,65.70332855900006],[-113.38481369199997,65.60515050100003],[-113.07193547299988,65.44310325200007],[-113.26258574199994,65.12857981800005],[-113.15320286999992,64.99528031800003],[-112.86517954999994,65.00607828100004],[-112.64654541799996,64.98751940600005],[-112.65597048699988,64.83260470900012],[-112.70865556399997,64.73751782500005],[-112.35135014299993,64.56761207199997],[-112.30185719499997,64.46533852500016],[-112.37137209399992,64.2813502410001],[-112.17197369499996,64.23073541000002],[-111.70163138299995,64.35630049100007],[-111.48922611799992,64.25938264400014],[-111.35748257199992,64.15338378100006],[-110.90261018399991,64.15949413300007],[-110.46433330899998,64.03897641100014],[-110.24854109999995,64.11593082000013],[-109.98431126299988,64.2522038960002],[-109.74912583099996,64.20354542000007],[-109.54238012499997,64.09732464100011],[-109.45858004399997,63.983933857000125],[-109.54558114899993,63.82596575600013],[-109.84857498499997,63.67591931200002],[-109.81530775399989,63.62229770500005],[-109.368085469,63.70416076700002],[-109.17856689599995,63.687145292000196],[-108.98660877499987,63.75822214900006],[-108.85700587499997,63.869678298999986],[-108.56416574999997,64.03970375500012],[-108.0271607709999,64.05275687000005],[-107.63045548499997,63.95365897400012],[-107.63744449499995,63.86322201900015],[-107.38914539499996,63.806628473000046],[-107.04255736699992,63.838025557000094],[-106.28629999799995,63.857071852000104],[-105.99906797099999,63.84529255000018],[-105.43676753299997,63.86703207900007],[-105.36004634299991,63.902318364000166],[-104.79212937999995,63.89496668400011],[-104.5031598619999,63.93599443800014],[-104.22252699099988,64.01335267100012],[-104.06700117799994,64.13101281600012],[-103.69499186399992,64.341153813],[-103.94413099399998,64.46753120800008],[-103.88857210999993,64.53262353300005],[-103.58936276299988,64.40052812300019],[-103.39324251499994,64.40023995900015],[-103.24532952999994,64.43964994400017],[-102.94116165499997,64.45032419500006],[-102.81173718799994,64.3508670870001],[-102.94383161299999,64.21915328900019],[-103.09319420899999,64.18396152500003],[-103.261138744,63.98967856900009],[-103.62245199599988,63.918914340000185],[-103.86428087299993,63.83282136400004],[-104.01616609699994,63.71888548000004],[-104.09368908599998,63.52045561900013],[-104.03185987899997,63.456049663000044],[-104.21367728699988,63.323888230000136],[-103.79437885099992,63.2710931040001],[-103.61659285599995,63.18385331200005],[-103.2082509409999,63.171893195000166],[-103.09261314999998,63.22016098000017],[-102.888817024,63.08590014300006],[-102.91977741399995,62.97515621700006],[-103.05520612099997,62.893925180999986],[-102.98899194199998,62.82352257600019],[-102.75142625299998,62.785636350000175],[-102.46288285399999,62.65387390500007],[-102.3334505979999,62.721978395000065],[-101.95081336599992,62.83387025300004],[-101.76241347999996,62.73454895900011],[-101.67053226799987,62.63971646699997],[-101.43814012799999,62.56758297400012],[-101.20839690599996,62.56372750100007],[-100.92906216899996,62.66498537000007],[-100.86131243199998,62.79294475300014],[-100.62828855699996,62.850053570000114],[-100.50591252799995,62.7211476490001],[-100.33599097299998,62.63758030800011],[-100.23781376699998,62.73527424200017],[-99.97562220599997,62.81923322500012],[-99.44715423799988,62.85945964700011],[-99.28323895099999,62.918904290000114],[-98.8149221029999,62.94890185700007],[-98.56899549199994,62.99509266700011],[-98.14941669599995,63.015122193000195],[-98.00415867999999,62.96064416900015],[-97.7033881449999,62.94880820500015],[-97.58961550099997,62.97075407400007],[-97.42913015199997,63.07471792000007],[-97.20971695599991,62.925969756000086],[-96.9623335679999,62.88005399000008],[-96.86656244199992,62.768269965000115],[-96.54197719199993,62.74101653900004],[-96.43619525899987,62.64603365800019],[-96.187263423,62.5866355620002],[-96.41919704299994,62.49426551100015],[-96.20155343799996,62.31113197800005],[-96.33358014099991,62.23931825100016],[-96.57717881699983,62.31026870200003],[-96.65844711899996,62.24177728500001],[-96.84674018699997,62.17248043000018],[-96.96533191399993,62.032157980000136],[-96.81976313799993,61.81935180800008],[-96.66279597999988,61.7697844540001],[-96.6293795659999,61.61868703400006],[-96.51274896899997,61.54082248100008],[-96.29946124699995,61.45417402500016],[-96.09114845999989,61.17295848400016],[-96.1992568689999,61.151911841000185],[-95.9988325359999,60.99136635100001],[-95.71683495999986,60.91329244800016],[-95.61710350499999,60.820872246000135],[-95.44857785799991,60.54749232400019],[-95.39927696099988,60.32964768300002],[-95.22122185299992,60.1507822100001],[-95.04926286299997,60.03248186400015],[-94.93260958099995,59.99977288700018],[-94.96189174099999,59.90504574900007],[-94.87577082999991,59.824556032000146],[-94.93144245499985,59.650548882000066],[-95.081763976,59.55577778400004],[-94.98747281399989,59.48297205100016],[-94.98654925599993,59.23621302000004],[-95.08185563899991,59.15287992700007],[-95.08490734299994,59.02853237000005],[-95.01840212899998,58.87809179100009],[-94.9089889569999,58.78538524600009],[-94.78676595899987,59.00627030700008],[-94.80958988199995,59.08840660400017],[-94.76802130299995,59.3394743930001],[-94.71571542499998,59.38439887500016],[-94.80135190299995,59.524314382],[-94.83109938499996,59.647514350000165],[-94.77608274299985,59.784770517000084],[-94.84445423999995,59.97224086700015],[-94.72991230499991,60.132012503000055],[-94.71304729499991,60.29251370600002],[-94.64773757999995,60.38732686200018],[-94.77011113499992,60.53481258700009],[-94.56187417299992,60.53536260100009],[-94.44222865399996,60.6917732],[-94.37380557599994,60.84654033600009],[-94.22512539999997,60.8931216200001],[-94.17906936699995,61.040934235],[-93.93139125399989,61.292223307000086],[-93.82206574399999,61.33778694100005],[-93.96763805299986,61.39499206200003],[-93.99162989999996,61.46048559800005],[-93.89390087399988,61.536777102000144],[-93.34409010299987,61.74450746900004],[-93.55147207999994,61.85076290100011],[-93.35668438999983,61.88910468300014],[-93.23243398999995,61.96363474300017],[-93.34245669899997,62.02925915600008],[-93.08658852999997,62.04610439400011],[-92.99444790699982,62.11443117699997],[-92.99259087899992,62.20028160900017],[-92.74723424499985,62.22495448800015],[-92.53757381999992,62.1838548930001],[-92.54537514299994,62.29836879200002],[-92.73726940499995,62.36869481800005],[-92.75827206299988,62.46404741300012],[-92.54328212299998,62.4679223010001],[-92.46476166999992,62.53357029799997],[-92.25839716399997,62.58450139600018],[-92.03066178499984,62.53176223200012],[-91.91146361599993,62.5667989100001],[-91.88434717799993,62.64083413500009],[-92.14445180599989,62.66721028600011],[-92.31311964899993,62.71077498200009],[-92.42890533499997,62.796555801000125],[-92.3700219719999,62.84803679100014],[-92.10547215799994,62.86323723600009],[-91.43983529299999,62.79878015900016],[-91.22168383899998,62.857195796999974],[-91.02511258599998,62.94381195900013],[-90.81483879799993,62.929453234],[-90.64992305799984,63.048128002000055],[-90.69821038499992,63.227057982000076],[-90.76730352099997,63.32451585700011],[-90.99387295799988,63.46935245100008],[-91.29185865899996,63.50860341200013],[-91.38771039099987,63.49433802900006],[-91.63701971799998,63.58767893400017],[-91.54334487899996,63.725682101000075],[-91.39009579499998,63.65203718100014],[-91.06161717399988,63.61395494700008],[-90.91706104699989,63.540668572000016],[-90.74634088999994,63.56207128900013],[-90.5761381719999,63.63373253200001],[-90.29322079599996,63.61290828400007],[-90.08495385899988,63.78065019200005],[-89.97556382,63.803369696000175],[-90.1935340039999,63.958769640000014],[-89.55633500699992,64.06974857000012],[-89.25235416399988,64.00992657800009],[-89.08833278099996,64.02077468900012],[-88.86463291899997,63.99132680400015],[-88.56983459899993,64.01146784200006],[-88.25736497499997,64.13003035500009],[-88.11114047199999,64.14076010999997],[-88.04842693499995,64.24622136200009],[-87.84477603699997,64.38036365800019],[-87.80009491499999,64.511891494],[-87.55280770999997,64.57090927800016],[-87.49181608099997,64.68923783800011],[-87.31809261099994,64.7468764800002],[-87.23707332599997,64.87635794200014],[-86.90079560899994,65.14162645300013],[-87.00528468899995,65.23819796200019],[-87.55612166399999,65.29327961100017],[-88.30786964499998,65.28091063200003],[-88.65543251699984,65.31546151700019],[-89.04118353899997,65.32553500300003],[-89.15859191899995,65.4430199580001],[-89.34223417899995,65.49904120900015],[-89.43810480899992,65.60462797700018],[-89.62523141899993,65.69086917700014],[-90.00727427399994,65.81500515300013],[-90.60758622899993,65.91251990700016],[-90.21021480099995,65.93463044400005],[-89.73255165699999,65.82668109000014],[-89.67423802699994,65.94873975100012],[-89.13320490699994,65.77140538000003],[-89.01820634799998,65.70494495200012],[-88.75218433299995,65.67888942200005],[-88.7423079209999,65.63204603800006],[-88.41805129099998,65.54354678100003],[-88.05098459999994,65.35750093000013],[-87.84103343799995,65.32148751500011],[-87.33620061699992,65.32072473700009],[-87.09340658899998,65.39555372500013],[-87.06440292499997,65.4828770740001],[-86.79714333299995,65.56418987500007],[-86.43094227299986,65.74075236300013],[-86.41231196299998,65.8685471600001],[-86.17491866399996,65.97875545400018],[-85.98448024399994,66.02223996600009],[-85.93133204099996,66.20103356600004],[-86.32067454499997,66.28936023200015],[-86.62984981099993,66.32560671400017],[-86.77091294799999,66.45026009300005],[-86.73675829999996,66.521383416],[-86.51208091399991,66.55003736900005],[-86.04372695399996,66.49432571300008],[-85.76940276199997,66.51193842000015],[-85.42756268499994,66.58630280800014],[-85.29673579199994,66.47706701100009],[-85.24020447199996,66.27654130200017],[-85.07740210599997,66.29420623900006],[-84.61590420999994,66.22570039000016],[-84.44611436399998,66.1623230720001],[-84.35773367199988,66.221459901],[-84.60868605799993,66.33282029600014],[-84.43253574699992,66.38346154600015],[-84.30495480999991,66.27151304100005],[-83.88156465399999,66.20082672200016],[-83.65925649999997,66.21957467400011],[-83.80515204299991,66.31441567500013],[-83.88029573599982,66.45489512300003],[-84.15105618299992,66.60093194400014],[-84.15122114999991,66.6942528840001],[-84.33702913999997,66.70633628600012],[-84.55539734299998,66.82656924100019],[-84.59572609499992,66.94041341400015],[-84.72086278599994,66.95474986100015],[-85.07522606899988,66.84269661100018],[-85.16897546799993,66.8800578850001],[-85.00611096199998,66.96252405900003],[-84.59114148999993,66.97814241900016],[-84.40694484299996,66.90838566100018],[-84.42869651599989,66.80657909700017],[-84.23061314699987,66.78461577300016],[-84.27102671199998,66.71716370399997],[-83.98012372599999,66.69090473300008],[-83.93403637799986,66.58412978600006],[-83.64756755599996,66.5258617520002],[-83.4905669829999,66.40907742700017],[-83.33611032899984,66.3494443350001],[-82.9929563579999,66.48563087999997],[-82.98694134299996,66.54917375500014],[-82.5668968459999,66.57046142800016],[-82.52728413699998,66.63635041400005],[-82.15435428699993,66.75851512500009],[-81.96105881399995,66.92072651400014],[-81.80202588799995,67.00034061700012],[-81.68457634799995,66.97267723400012],[-81.46328380699993,67.01465592900007],[-81.35296973899995,67.16403880400009],[-81.33974743099998,67.26909271900013],[-81.1912140739999,67.46483607700009],[-81.37271034899993,67.601556],[-82.07585178699992,67.91046792300017],[-82.15921695299994,68.00445047800002],[-82.09693473899995,68.10459233400019],[-82.31529589399992,68.16716448000005],[-82.19843897699997,68.25177404200008],[-82.35617747899994,68.27325943000017],[-82.34286526799991,68.36556646600008],[-82.47930880099995,68.46839873800002],[-82.21463881099999,68.45792294800015],[-82.04628347899995,68.5090093290001],[-81.9220212649999,68.42275154300017],[-81.75697237399999,68.51416139700007],[-81.53692529999995,68.54017543900005],[-81.21131915499996,68.65070302000004],[-81.19825791099998,68.78166768200015],[-81.29562910299995,68.85964393800003],[-81.53497589099987,68.85780069000009],[-81.72981615999998,68.94440403400006],[-81.28305532999991,69.09463773700014],[-81.3006201629999,69.1933417090001],[-81.61905621099999,69.25670800500018],[-81.98053912099988,69.27267283300017],[-82.14322171899994,69.31803529100006],[-82.1919580579999,69.39673461600017],[-82.43949772499997,69.49664760600018],[-82.60810897299984,69.61867926800016],[-82.53158166499992,69.6921084870001],[-83.26054300899995,69.70887010600012],[-83.54150987199989,69.68896579900013],[-83.9348712069999,69.7511440290001],[-84.08666299899994,69.82011317600018],[-84.53113582499998,69.86933835100018],[-84.84046796199993,69.8397801800001],[-85.06384237999998,69.78334698300006],[-85.36075131399997,69.85820401400008],[-85.56246898699993,69.82371203700018],[-85.39494285599994,69.72905737100018],[-85.51692023599986,69.65016680400004],[-85.38585692399994,69.58894621400009],[-85.507209016,69.52463936400005],[-85.41390758299997,69.3304556550001],[-85.4771657679999,69.31262363600018],[-85.29215604599989,69.1567172390001],[-84.97287747099995,69.14676834000016],[-84.91591529099998,69.09455773800016],[-85.05254943499989,68.96669805200008],[-84.77348919999997,68.74277718000019],[-85.51159356799991,68.78867041600012],[-85.63522140899988,68.72406470700008],[-85.71495478399993,68.56615785400004],[-85.68541700099996,68.40664727200004],[-85.87860958699997,68.18745553800011],[-85.87197161199998,68.04651606500005],[-86.10133212499994,67.96561861600014],[-86.39166823899996,67.78729224500006],[-86.50139176399995,67.67377804600005],[-86.42222489499994,67.59634104600002],[-86.51772011899993,67.44552240600018],[-86.65982796899993,67.37881555400014],[-86.84337961799991,67.41525411700013],[-86.95634729999989,67.3478289430002],[-86.96041577199998,67.25755533100016],[-87.22483093899984,67.19069540800012],[-87.94377696099997,67.62920119199998],[-88.11649479599998,67.68185706800006],[-88.29539424599989,67.89244036900016],[-88.34965124699994,68.03400351500005],[-88.25542301699988,68.12393559900005],[-88.36511641099992,68.25872801800006],[-88.22224674199998,68.35846108800013],[-88.09971316799994,68.24984200500018],[-87.82310477099986,68.25964456700012],[-87.76621555999998,68.38768230900018],[-87.9262437779999,68.59697805100006],[-87.92293185999989,68.73642595600012],[-88.05225977499992,68.84481985000002],[-88.29069882599998,68.95374455500007],[-88.64591267399999,69.05275328400018],[-88.86647555999991,69.16081406400002],[-88.92256460099992,69.23231913700016],[-89.09421115699996,69.28276074900015],[-89.37028113599996,69.23202851999997],[-89.46628272899989,69.12489083000014],[-89.6285854869999,69.0629028530002],[-89.74446619399993,68.96109089500004],[-89.66875133899993,68.81842834900016],[-89.72924607999988,68.69770412200012],[-89.92811744099998,68.62909953100018],[-89.82812130199994,68.54169336100006],[-89.97441397899996,68.39057888700006],[-90.14497519399998,68.31596896000008],[-90.59310050699997,68.45935403300012],[-90.46314965,68.53247855000012],[-90.533948319,68.63579330800007],[-90.42736280399998,68.88735643200005],[-90.63159634399995,69.08621883300003],[-91.12520108999996,69.264364],[-90.80165469599996,69.26484399700007],[-90.81604300099991,69.34638067800012],[-90.42733289199998,69.5029383280002],[-90.67450612699992,69.55254182000016],[-90.7514918359999,69.5009696030001],[-91.13014697199992,69.54974151400012],[-91.25878439399986,69.66157946700014],[-91.46099202999989,69.66925033800004],[-91.55465176199988,69.59760413100014],[-91.804185868,69.50041556600019],[-92.08784678999984,69.56316474000016],[-92.52991076899997,69.71973501200006],[-92.7369823869999,69.73880690500005],[-92.21576208,69.90149082500005],[-91.95269881999997,70.03759767000008],[-92.14583122599998,70.1048154660001],[-92.49379684099995,70.09817402300013],[-92.40168190599996,70.19011914400016],[-92.2232175989999,70.21027192700006],[-91.93209040199997,70.13018568800015],[-91.52090200299995,70.15536771600006],[-91.67348701499998,70.26433757200016],[-91.72647142899996,70.3783611560001],[-91.99511905999987,70.29702144200013],[-91.99738020899997,70.41273838400019],[-92.23022720199998,70.50844684000015],[-92.19921959899995,70.6283957340001],[-92.60290343599996,70.69374145000012],[-92.67305157299995,70.78543595000014],[-92.94519222699995,70.84529546700003],[-92.84129102399999,71.04914549500012],[-92.83714592499996,71.17276002600005],[-92.96681215199993,71.34456881099999],[-93.18336016799998,71.46934349100007],[-93.63132559199994,71.59536723800005],[-93.90754448099989,71.7518485390001],[-94.22534913699985,71.77823892500015],[-94.45358279999988,71.83174722100006],[-94.3663864589999,71.93970689500009],[-94.48096183899986,71.99996053000007],[-95.15590019099994,71.96104518600004],[-95.25400165799982,71.74270671800019],[-95.47517090699995,71.73744968300014],[-95.89521226799991,71.61102583100006],[-95.81898376699996,71.51870176300014],[-95.50734948099995,71.50016223800014],[-95.44895838999997,71.36829728800018],[-95.52948850199994,71.30703268700006],[-95.78620286299997,71.3414636230001],[-95.89754310099994,71.41864668700009],[-96.17966362599992,71.3999013340001],[-96.26249421599994,71.30503185700002],[-96.47199250799991,71.27825394100006],[-96.38815273999995,71.18209057000007],[-96.40720946999994,71.08094130700016],[-96.59717401199993,70.84114387200015],[-96.36122197099996,70.68810594600012],[-96.1663234859999,70.62472730200017],[-96.13526662199996,70.54126066000003],[-96.52374666799994,70.34273916100017],[-96.54872312799995,70.25008738100018],[-96.45453949599994,70.08683649400007],[-96.22010706299994,69.96570679900003],[-96.18239062599997,69.86970552700018],[-95.91795402099996,69.7986861600001],[-95.69552189799998,69.79753959800013],[-95.39063550499998,69.69105031700013],[-94.91156645599995,69.58658095500004],[-94.70932318599989,69.60925930100012],[-94.61759661699989,69.68461468200013],[-94.27661385,69.44721980800006],[-93.88938056799998,69.44322028400006],[-93.81335647799989,69.49829534899999],[-93.55641748599999,69.5369824030002],[-93.43843845999999,69.4781907630001],[-93.5316047199999,69.37641909700011],[-93.46576628799988,69.32390220899998],[-93.812118936,69.17734428500006],[-93.85266711499997,69.27050626000005],[-93.64790708099997,69.36185687200003],[-94.19488476099997,69.34235252700017],[-94.30194828299983,69.17315579600017],[-94.07119439299998,69.13990335000005],[-94.13556497899998,69.06189456200013],[-94.58220822499999,68.96370112700004],[-94.51860881099992,68.89683235200016],[-94.59056498899997,68.77383146000017],[-94.40858257699989,68.73096397000012],[-94.07214975699998,68.76644824500005],[-93.90411664599998,68.83934679599997],[-94.05116152899996,68.90500815500013],[-93.83334210599998,69.01547656600019],[-93.63912036099998,68.98013757600006],[-93.56791286599997,68.84501936600003],[-93.73254649399985,68.62470921900018],[-93.470060215,68.58277467300007],[-93.98016701499989,68.46750260500005],[-94.18597171099992,68.37715655400012],[-94.15618199099998,68.29107578000009],[-94.65337982699987,68.11814999400019],[-94.82095174199992,68.04191787200017],[-95.24693072199989,68.0833746130001],[-95.51566970399983,67.92656687600004],[-95.4926825529999,67.86762862900014],[-95.69259562199994,67.74054774700005],[-95.47016658099994,67.65395882600012],[-95.28989317199995,67.53002665600013],[-95.36916954999992,67.46024000600005],[-95.27429538899992,67.33422439600014],[-95.14491688399994,67.29807744900006],[-95.29684357799994,67.17728524699999],[-95.45758462999987,67.15001116600013],[-95.53272269599995,67.22342508800017],[-95.52802916899998,67.32643712600009],[-95.69470177599999,67.38168250300009],[-96.09030063799992,67.22550331700006],[-96.21999966299995,67.31051571600011],[-96.17150106299994,67.43397702600004],[-96.36136480899995,67.45623625100012],[-96.42371206299987,67.51310417299999],[-96.13498622299994,67.69309214800012],[-96.20161169699998,67.84099323599997],[-95.99466225499998,68.11832312500019],[-96.00917701499998,68.25415584500001],[-96.41551241899998,68.16813288800006],[-96.48874855599996,68.06973728300011],[-96.76144891199993,68.08741658100007],[-96.48080695199997,68.2096332230002],[-96.53070850799998,68.27283060700012],[-96.98715557099996,68.27982945800005],[-96.9856230229999,68.34909798600012],[-97.32707133299994,68.50951425100016],[-97.6143729879999,68.5118133250001],[-97.84318611599991,68.56642229800008],[-97.85364771299999,68.40512455000015],[-98.07511745899996,68.38052853500017],[-98.66486119699994,68.39177279800015],[-98.65918171599992,68.34104259300017],[-98.35236015199996,68.19768325100017],[-98.559394022,68.16693288700014],[-98.27923589099998,67.97628882900005],[-97.99460983199998,67.91614939100003],[-97.72057555799995,67.99234755200013],[-97.54009792999994,67.9657275150002],[-97.43145557299988,67.89044391400006],[-97.24462716899995,67.87601096100008],[-97.11975940499991,67.81365513100013],[-97.14919816499992,67.63034830000004],[-97.59827590899994,67.62255853800019],[-98.06414229599994,67.7739854850002],[-98.17463072099997,67.87008944300004],[-98.56791968699991,68.11665220100014],[-98.72305115299997,68.07654174300018],[-98.71228023899994,67.964683068],[-98.37580735699993,67.78908558500012],[-98.68499690399995,67.78778646200016],[-98.94178519799993,67.71698944000013],[-99.18653576099996,67.71886100300014],[-99.29948550199998,67.77518070400009],[-100.02801390999997,67.81957471800007],[-100.20381979899997,67.85524553099998],[-100.69431574099997,67.85544750000008],[-100.87687052399991,67.7714644620001],[-101.20884152299988,67.76752806700006],[-101.53638650399989,67.67557455700012],[-101.97147597299988,67.7680587910001],[-102.21183518399994,67.7182142210001],[-102.41658717699988,67.79299651700006],[-102.83559214799999,67.84610653100003],[-103.08318655399995,67.90000457300005],[-103.51694380899994,68.06823447000016],[-103.78756328499992,68.03014960100018],[-103.98289660499995,68.0537635660001],[-104.16906563499998,68.02142415900016],[-104.48882164499992,68.02611922500012],[-104.64871306499998,68.14669138600004],[-104.59121532499995,68.26233022500014],[-104.85809389399992,68.24140083100019],[-105.07304564899988,68.27385263400004],[-105.32103965999994,68.37851779400017],[-105.33407023299986,68.52156723600007],[-105.52874333099999,68.67719378500016],[-105.43515768499998,68.73596476500006],[-105.77071357099999,68.88156621000002],[-106.23183760599989,68.91174559200005],[-107.28352661199989,68.70368418600003],[-108.3583712439999,68.60498936600004],[-108.58705481799996,68.40313619000017],[-108.73218846999993,68.34070844500008],[-108.71073812499998,68.23074866700006],[-108.46909717099993,68.30684011900013],[-108.4230867949999,68.18791628200006],[-107.87332871599989,68.16989585200008],[-107.71108614499991,68.2002906990001],[-107.88707224399991,68.27528678300013],[-107.80966274099995,68.34461715700019],[-107.63265304299989,68.35004495600009],[-107.29162161499988,68.30654002200009],[-107.22510169099996,68.25875325200019],[-106.78279646199996,68.41013799000001],[-106.60327967499995,68.32534448899997],[-106.45264923799994,68.40060916300007],[-106.60795846099995,68.46682084700012],[-106.4784299499999,68.53485013300019],[-105.86910573899996,68.63958882800006],[-105.69499614499995,68.4397717560002],[-106.43116823899999,68.34034334600011],[-106.75871742199996,68.19621700200008],[-106.72603769399996,68.1172262980001],[-107.01842759999994,68.11242329700019],[-107.38284431299996,68.04236268400007],[-107.67538898199996,68.05144520300007],[-107.74907015699989,67.98608303900005],[-107.69772874899996,67.89547074200016],[-108.02854896199983,67.78281825000016],[-107.95103208999996,67.68997643800009],[-107.5704006169999,67.50288766900007],[-107.69448463799995,67.39034716400016],[-107.49736893,67.20364684200007],[-107.221400873,67.09377507100004],[-107.36287422999999,67.02986890200015],[-107.74847500999994,67.0049137060002],[-107.68565197499993,66.79121446600016],[-107.52582594499995,66.5768369480001],[-107.42480378699997,66.54503758000016],[-107.16147472499995,66.37523801300017],[-107.22001010199995,66.35204217400019],[-107.71520221099996,66.62776121700017],[-107.78602765699998,66.72636438000006],[-108.09619984699998,66.84736290000018],[-108.09316964099992,66.92470311200003],[-108.3213823509999,67.00189884000014],[-108.136257947,67.0814165430001],[-107.98963269499995,67.08634890400009],[-107.86888820499996,67.15588721500018],[-107.963926072,67.27616646100012],[-108.40824989699996,67.42653496700007],[-108.56640917299995,67.58242677100009],[-108.70235210899995,67.61045766500018],[-108.72272994199989,67.45714087800013],[-108.83249784599997,67.35592252400005],[-108.980690488,67.45045631900007],[-108.93757548399992,67.5504862460001],[-109.03190863999998,67.7279138350001],[-109.46769018799995,67.75476415000009],[-109.71598101099994,67.73342726600004],[-109.78621058799996,67.86753136300013],[-109.937778042,67.8956275170001],[-110.00959291899989,67.99940836900004],[-110.33701036899993,67.96538061200016],[-110.7027309479999,67.87169582300004],[-110.829548951,67.80440512000013],[-111.039241974,67.7658473570001],[-111.27957321199989,67.82279110500019],[-111.37326243499996,67.7563101340001],[-111.62276437299988,67.73189423400004],[-111.84257881099995,67.76490580100017],[-112.67113460199994,67.67207038300006],[-113.1033784739999,67.6803031250002],[-113.15544982899996,67.70839355700008],[-113.70049443199997,67.69198979600003],[-113.98024048499997,67.72759899500016],[-114.35934019399991,67.74323867600003],[-114.72282761499997,67.82162470900016],[-114.99936190099987,67.79715522700008],[-115.5518520789999,67.92256243600013],[-115.210533855,68.02747760000017],[-115.15216129499993,68.18895487400016],[-114.89273909599996,68.15147006000018],[-114.42436821999996,68.26117771100019],[-114.27417014199989,68.22769554600018],[-114.04152004799994,68.29641350400016],[-113.88869045299992,68.40491196900007],[-114.03945820199993,68.43563790000013],[-114.18809208099998,68.56742284700016],[-114.41750230399992,68.62411919600015],[-114.53769664199996,68.72645077900017],[-114.75483795799994,68.74765120200004],[-114.81239137299997,68.81616032500011],[-115.08797122799996,68.85765160200003],[-115.60187799899995,68.98282035200003],[-115.88818834699998,68.9338247120001],[-116.18828361499999,68.9921745050001],[-116.31043175399998,68.96014274800001],[-115.93206983799996,68.82536010000001],[-116.0006829809999,68.80570592800007],[-116.4202269569999,68.86404237800014],[-116.97027484599994,68.9081516500001],[-117.14904775899993,68.90021789500008],[-117.39018069099996,68.96137496300008],[-118.00837282499992,69.02134699100014],[-118.40110209699986,69.11317417700013],[-118.70105516999996,69.23503694500016],[-119.15409592799989,69.2860627660001],[-119.9596254519999,69.34539365500007],[-120.40396544399994,69.43936821900013],[-120.94914707699985,69.66120326400016],[-121.38376027199996,69.7636688390001],[-121.87828713399989,69.81339973900009],[-122.34224693299996,69.81606339300004],[-123.1122392019999,69.76917235200011],[-123.13071287499997,69.55345214400018],[-123.41105178099991,69.4759597690001],[-123.43571715399997,69.3990543600001],[-123.68498935199995,69.34033070600015],[-123.98670696899995,69.39317501900007],[-124.15008103999992,69.33271752100018],[-124.4942658839999,69.36665434100007],[-124.43432177999995,69.48118300800013],[-124.04684029999999,69.67411533900014],[-124.4987745709999,69.72341306600009],[-124.34818149699998,70.05408417600012],[-124.55362380899993,70.20003521000012],[-124.71879199099988,70.17758070500003],[-124.70451884099998,70.06639177900018],[-124.97194884699996,70.0392833140001],[-124.79091395499995,69.96312335500016],[-124.954746592,69.90733663200012],[-125.05527807199991,69.7313968860002],[-125.38258803499997,69.68581581200004],[-125.45688596599996,69.59975955300013],[-125.25724789599991,69.58108468800015],[-125.31753230699996,69.49592887900013],[-125.15925990599999,69.44065000500012],[-125.18101947299994,69.37357542400014],[-125.38345315199996,69.34179888200009]]],[[[-107.94842601999989,67.55321462100017],[-107.95606347899997,67.65784963000004],[-108.10753343699997,67.66953205800013],[-108.12463490899995,67.53262972900012],[-107.94842601999989,67.55321462100017]]],[[[-86.80802332399992,68.002031655],[-86.9210974319999,67.93073212900015],[-86.77508572299996,67.77579881800006],[-86.52796283299995,67.73976494600004],[-86.42114932499987,67.79582974699997],[-86.33822793699994,67.95250256600008],[-86.38869438199993,68.20490927400004],[-86.62689517299998,68.3042858020001],[-86.85012566099988,68.18411876000005],[-86.95136173599997,68.07895740300017],[-86.80802332399992,68.002031655]]],[[[-104.56013691799996,68.3996287390001],[-104.40849041699994,68.4926186690002],[-104.64099076799988,68.57829136800012],[-104.93727540099997,68.59565355300009],[-104.99654905699998,68.50059547400019],[-104.73610914199998,68.4170177200001],[-104.56013691799996,68.3996287390001]]],[[[-110.68539180099992,68.48709948900006],[-110.787552985,68.55560179500014],[-111.0355558949999,68.51174907900014],[-110.92838213299996,68.46303235200014],[-110.68539180099992,68.48709948900006]]],[[[-101.67376530599995,68.67778886600007],[-101.71678818799995,68.78711698799998],[-102.00314131099992,68.83085622000004],[-102.09871105899998,68.76542632800016],[-102.33458978199991,68.69728308200013],[-101.81076358699994,68.56736925100017],[-101.81050360699993,68.66192953800004],[-101.67376530599995,68.67778886600007]]],[[[-90.0124541269999,68.8474363410001],[-89.94985597399983,68.67385649700003],[-89.77550413499995,68.76436154900006],[-90.0124541269999,68.8474363410001]]],[[[-100.57897589299995,68.77095063500008],[-100.40035184499999,68.74299951700004],[-100.15149903199989,68.8663849830001],[-100.1761324019999,68.93181215200019],[-100.37651354099995,69.05896430700005],[-100.59891255999997,69.01019889100019],[-100.61967485099996,68.81714739400013],[-100.57897589299995,68.77095063500008]]],[[[-99.978729994,69.02419821400008],[-100.05075479899995,69.1253492420002],[-100.24216780299997,69.05632584000017],[-100.1668505109999,68.97985817400007],[-99.978729994,69.02419821400008]]],[[[-97.42137128099995,69.69280104100005],[-97.43938384199998,69.78396756000018],[-97.84881818999997,69.89804164300011],[-98.02481348099997,69.89635754800014],[-98.21258834899999,69.80018724300004],[-98.36544113599996,69.5819549690001],[-98.53967989199998,69.60049654099998],[-98.59304652999998,69.45305437800016],[-98.40192659599995,69.37678734700006],[-98.67955770599991,69.28407785100006],[-98.73515073599992,69.19267888000007],[-99.03900597199998,69.148399209],[-99.42268884299995,69.15935226900012],[-99.55081463199991,69.02420109700006],[-99.38876723699991,68.89849406800016],[-99.16874164199999,68.86583104300007],[-98.98892729599999,68.9690589270001],[-98.80392912699995,68.9169749450001],[-98.84074775899995,68.8524044770001],[-98.68009144799993,68.79885276100015],[-98.28491495899993,68.77796874000018],[-98.10974877199999,68.69058396400004],[-97.72832700699996,68.6712289890001],[-97.59613589899999,68.59393369300005],[-97.1320171569999,68.52140332700009],[-96.97661844799995,68.54867635200009],[-96.55270037999998,68.46028317300011],[-96.26579041899998,68.48693741200003],[-95.76101324899997,68.73810199899998],[-95.38973070999998,68.76728603999999],[-95.15908985999988,68.868848743],[-95.30917416299991,68.91389319800015],[-95.51834681999998,68.84701920700002],[-95.8179034289999,68.90352741200007],[-95.81710412599995,68.98166814500019],[-95.94111496999989,69.07520490400009],[-95.9110573239999,69.13483680800005],[-96.27292564499999,69.35594580500009],[-96.85218939199996,69.5030979600001],[-97.08353161199983,69.59650401900007],[-97.25280599799999,69.70743664600013],[-97.42137128099995,69.69280104100005]]],[[[-90.76383362799993,69.28608293700006],[-90.6154165779999,69.21861510700012],[-90.42837772299993,69.27506923600015],[-90.58127866199999,69.37492901800005],[-90.76383362799993,69.28608293700006]]],[[[-90.18242558499998,69.444475706],[-90.35249891999996,69.43292258300005],[-90.49375962799996,69.34691365100008],[-90.27947413499999,69.2567398720002],[-90.14449262199997,69.35806771000006],[-90.18242558499998,69.444475706]]],[[[-96.15350677799995,69.59128728500008],[-96.63085132099991,69.55848754900012],[-96.55095475199994,69.49365426600014],[-96.13327543699995,69.35932156600006],[-96.06163890299996,69.46435642200004],[-96.15350677799995,69.59128728500008]]],[[[-101.0655931949999,69.45457057900012],[-100.99465894899998,69.50254662300006],[-101.26229267899993,69.5970176100002],[-101.29422780099992,69.50017534000006],[-101.0655931949999,69.45457057900012]]],[[[-95.40334632799994,69.5882581090001],[-95.75673675999997,69.63992268100003],[-95.8840557339999,69.61408606400005],[-95.95144319699995,69.51473137400006],[-95.86420277199994,69.36521523400012],[-95.5486588149999,69.33179069700009],[-95.37593100599992,69.42249949900008],[-95.40334632799994,69.5882581090001]]],[[[-91.46983295399997,69.85988929000007],[-91.73713408299994,69.79972744800011],[-91.52021798699991,69.73161026600013],[-91.46983295399997,69.85988929000007]]],[[[-86.96343964399989,70.12072650500005],[-87.35823799799988,70.10705053400011],[-87.22684511999995,70.03041187300016],[-86.73468539999993,69.98092786600006],[-86.44057067299991,70.0203581780001],[-86.55662008999997,70.1119054580002],[-86.96343964399989,70.12072650500005]]],[[[-100.44970791099996,70.68444904900014],[-100.66146734999984,70.59412275900019],[-100.4868691069999,70.51894579900011],[-100.25753784799991,70.55172829800017],[-100.44970791099996,70.68444904900014]]],[[[-114.02174405899996,72.65110901700007],[-114.34333498399991,72.5587382220001],[-114.54638878599997,72.61845287199998],[-114.31151138899992,72.69707551100015],[-114.20018461599989,72.79901965700003],[-113.97797991899989,72.80481160699998],[-114.01921595399995,72.96148429200008],[-113.92365650299996,73.10332174500019],[-113.98633180899992,73.20977003300004],[-114.22874124899994,73.33067103000013],[-114.67724241599996,73.36967869500012],[-115.41341487199986,73.21758721000015],[-116.52419308299994,73.0544797340001],[-116.80502951199992,72.97644136300016],[-117.32086875499994,72.91562272200014],[-117.606180124,72.77736721100013],[-118.10721627899994,72.64325892200009],[-118.52722796799998,72.47127399700008],[-118.44775720399991,72.35591738800008],[-118.09452868199998,72.32711871200007],[-118.0795544099999,72.24090584400011],[-118.64405329499994,72.12231534000011],[-118.73319820899997,72.04322887600006],[-119.0402703879999,71.91801682600004],[-119.12256593199993,71.78969874200004],[-119.06768974999989,71.66698696000014],[-118.47888100399985,71.65889860100015],[-118.31448522299996,71.58209698200017],[-118.03222042199991,71.67347252400009],[-117.96946913399995,71.55313195100018],[-118.30444925999984,71.47011361200009],[-118.24698863799995,71.39971222900004],[-118.00537207099995,71.37570834200017],[-117.50371344999996,71.38484201600005],[-116.88580755299989,71.43308481300011],[-116.29065412699987,71.50824119900011],[-115.78721566099995,71.49526143300011],[-116.11368161299987,71.42868033600013],[-116.14883597999994,71.37644838000011],[-116.75279300099999,71.29787225500007],[-116.84321121,71.25103975800016],[-117.81012045399996,71.16463769400019],[-118.40649313999995,70.99828253900006],[-118.19644434399999,70.84803028300018],[-117.76318254799992,70.72449405600014],[-117.67947938799995,70.6311182280001],[-117.39423046699994,70.57572114800007],[-117.23494395299991,70.61407820300019],[-116.70868316599996,70.6024257000002],[-116.12423391999988,70.63391176700003],[-116.024254843,70.57017787100017],[-115.71934440999996,70.60427273600004],[-115.08123865599998,70.59793600100005],[-114.4903289269999,70.64542111300005],[-113.95278972699992,70.71402454800005],[-113.19439433899998,70.64160719500012],[-112.9133427409999,70.56289242600019],[-112.66477064899988,70.56207461399998],[-112.08000051199991,70.48895597100017],[-111.99393686099995,70.38321164500007],[-111.5109859449999,70.35357632900013],[-111.65579084899997,70.27208001200006],[-112.17721973,70.27772152000017],[-112.53090706399996,70.20143114700011],[-113.31024236899992,70.2843094540001],[-113.63266168999996,70.26789171600007],[-113.97918844499998,70.28274434000014],[-114.19334226399997,70.32034016400007],[-114.46566318899988,70.32356353900019],[-116.11880234599988,70.21680652000009],[-116.94235354699998,70.12879393500003],[-117.31036598599985,70.05641020600001],[-117.40432878899998,69.98691867100007],[-117.22196234299997,69.75477623199998],[-116.83453662199992,69.64645365200016],[-116.85391266999994,69.57538153500013],[-116.56668728099999,69.55162004200008],[-116.57954903499996,69.44752294000006],[-116.49245522399991,69.40439003700004],[-115.94406673999998,69.29891451600008],[-115.47073691999992,69.257685359],[-115.1403097729999,69.25010877400007],[-115.01907368999997,69.2871528840002],[-114.65415508299998,69.26691853000005],[-114.38023579299988,69.29251911400013],[-113.62184939799982,69.19990330700017],[-113.5658883019999,68.9517868280002],[-113.66455553299988,68.89666387500017],[-113.5636694189999,68.7641526600001],[-113.36642836399994,68.60617665200004],[-113.07288850699996,68.54279230300006],[-113.19152760399987,68.458156717],[-112.33481773799991,68.50140039600018],[-112.09651095999999,68.53538426600005],[-111.67718997499992,68.5486657780001],[-111.18946734999997,68.52064385900013],[-111.09782427399995,68.58496707000006],[-110.915936021,68.55318480200009],[-110.59088632699996,68.62121562700014],[-110.40296906299994,68.60698969800018],[-110.1623176089999,68.64085290100013],[-109.70727411499996,68.63450495500012],[-109.39985588299999,68.69606717400006],[-108.92578422899999,68.74960750500003],[-108.52345478399997,68.8923400220001],[-108.53647185299997,68.94396743100009],[-108.09935307599994,68.93917956000013],[-107.51291318999995,68.97870626200012],[-107.29117236599996,69.03395641500003],[-107.106844019,69.16204124800015],[-106.90896557799988,69.24551340500011],[-106.97628931899999,69.34003671500005],[-106.75310145199995,69.37828271300015],[-106.62363998499995,69.49141157400004],[-106.46905942199987,69.47297326800015],[-106.25472140799997,69.28399711900016],[-106.39110016099988,69.17587269700016],[-106.14706237499996,69.14917786500013],[-105.84405983099992,69.18049750000011],[-105.57984289199999,69.15769859400018],[-105.07860575499996,69.0618095530001],[-105.02564795399985,69.00100947800007],[-105.24498996199998,68.96510442100015],[-105.12502318199995,68.89622242500008],[-104.64230865499997,68.85999278800011],[-104.43617892899994,68.94468998300016],[-104.10421918499986,68.85749619400013],[-103.94483921899985,68.8807339670002],[-103.60832234299988,68.82193307100005],[-103.13473950399998,68.8529389090001],[-102.99265164199994,68.80734334800002],[-102.7890883199999,68.84144820000012],[-102.71326635399993,68.91097062500018],[-102.47981908799989,68.88026990500015],[-102.37081685599992,68.93406271700019],[-101.80700786399996,69.00317477900006],[-101.72370653699994,69.16743239000016],[-102.07225632899991,69.34156483800012],[-101.91485760699999,69.41400676100011],[-101.97246697499997,69.46728972500017],[-102.28503751599993,69.51267406700009],[-102.57562432799995,69.4280344460002],[-102.9694604209999,69.41571525000018],[-102.99812060099998,69.50343810400017],[-103.18288107399991,69.57776929800008],[-103.48719159299998,69.64456020000017],[-103.31022405799996,69.70865971400008],[-102.92270125199985,69.56145965500019],[-102.58543972399985,69.54864394000003],[-102.48945723699995,69.57416383700013],[-102.51361966099995,69.70150203200012],[-102.21730459999992,69.8551807450001],[-101.98752205599999,69.81812169000011],[-101.64658887999997,69.69340776300015],[-101.4263117289999,69.79751570100018],[-101.25613363199994,69.67121776100004],[-100.89950461399997,69.70169533600011],[-100.84674439499986,69.88967930500013],[-101.00822679499993,70.21041642200004],[-101.41111337399997,70.14404085600006],[-101.60268072999997,70.17068703400014],[-101.67058636199988,70.32003653600015],[-101.87731514799998,70.27120667800011],[-102.26422138799995,70.39681496400004],[-102.83900898799999,70.54419170800008],[-102.8090854649999,70.60399286900008],[-103.01351776099995,70.68822411800016],[-103.28787481099994,70.6126749460002],[-103.53707663699993,70.61060168800003],[-103.8252005189999,70.75886267000004],[-103.98618260899997,70.76849040500002],[-104.08130408599993,70.91598631100015],[-104.39294923199998,70.99499616000003],[-104.63466394699998,71.13302478000003],[-104.43557638699991,71.26772382400003],[-104.50646847899992,71.34541304700002],[-104.35547383499988,71.3748831870002],[-104.38965604999999,71.54095584700008],[-104.33728144699984,71.59645423800009],[-104.51893351199993,71.74091135800012],[-104.84132028099987,71.90273070900008],[-104.88196932299991,72.0457331180001],[-105.09717759099993,72.33982190900014],[-105.21854718299994,72.3969876760001],[-105.21856384999995,72.53798902199998],[-105.41699315599993,72.69905881500011],[-105.29163546199993,72.72982964400018],[-105.4889712289999,72.87679033500012],[-105.76160964399998,72.97087714900005],[-105.8096530819999,73.03179439000019],[-106.06772519999993,73.06068790900014],[-106.70666069699996,73.27426713700004],[-106.99981540999988,73.28845138700018],[-107.19414741799994,73.20178042400005],[-107.59100694299997,73.31732074000007],[-108.02833023799985,73.342470956],[-108.03301463999992,73.23652229100003],[-108.24951399499992,73.11976868300013],[-108.000935455,72.76760425900005],[-107.987798608,72.62893723899998],[-107.84206178599987,72.58541916900015],[-107.81643198999996,72.36692582100011],[-107.72001576899999,72.29224870800005],[-107.74491242699997,72.13741298800016],[-107.59324918099992,72.08826657800006],[-107.57509472899983,72.00855738700005],[-107.27800278199999,71.90986339900013],[-107.48571190899992,71.86818781900018],[-107.64476229699994,71.73531667800012],[-108.0333235889999,71.71839755100012],[-108.30987110399997,71.80286518400015],[-108.19969826399995,71.96400899100018],[-108.38284755099994,71.99714943600003],[-108.36364487299988,72.07089025200008],[-108.63830262499988,72.3361063480001],[-108.5452251029999,72.49780500500003],[-108.65000578899998,72.6182411320001],[-108.99185193699998,72.57533583000014],[-109.05790920399994,72.73564870600006],[-109.33100024899994,72.76948203900014],[-109.59831850799992,72.84607679800007],[-109.63929672199993,72.9312389860001],[-110.25795272599993,72.99709004400006],[-110.6642297329999,72.99530557500009],[-110.70044805599991,72.93479128300015],[-110.53320354099998,72.85621387300006],[-110.16052566399998,72.8117074610002],[-110.19105012899996,72.709062179],[-109.90040852999994,72.59116029800009],[-109.77231158799998,72.49516459600017],[-110.00987817999993,72.43564762200015],[-110.29669609899997,72.55020482100008],[-110.47911717999995,72.51541257500014],[-110.72371665999998,72.55776269900014],[-111.04824897899994,72.40172705700007],[-111.41943303299996,72.50906034700017],[-111.17655871299996,72.624232458],[-111.1854550239999,72.72295325300007],[-112.014175121,72.88801566300003],[-113.035841012,73.00859979800003],[-113.3613312089999,72.90901853200012],[-113.56163743399992,72.75338241100019],[-113.80101027599994,72.64049619700018],[-114.02174405899996,72.65110901700007]]],[[[-97.01647180299989,72.71760968300009],[-97.26052622199995,72.85231118400003],[-97.2073683559999,72.93355270500018],[-97.42837227599995,72.99773749500008],[-97.83788690399996,73.0458910970001],[-98.210254938,72.98786917700016],[-98.43986788499996,72.999436446],[-97.94114238999998,73.18437036400019],[-97.8242284989999,73.27410468599999],[-97.61174337699993,73.32513261300011],[-97.1445530869999,73.35523223200005],[-97.24977043899997,73.48508644000009],[-97.65767854199993,73.48736538000003],[-96.966105412,73.62440076000007],[-96.91389725699992,73.69312614100005],[-97.19036346399997,73.85377513100008],[-97.7495604849999,73.91456120000004],[-98.15419945999992,73.80795282900016],[-99.22307236499984,73.74319314500013],[-99.45046677699997,73.82402713300002],[-99.70126740699999,73.85039774000012],[-99.95203061099994,73.95106751300017],[-101.00742018799997,73.79836678400005],[-101.04232461499998,73.67489423800009],[-101.15611608199998,73.60258322400017],[-101.43874552099999,73.54950616500014],[-101.54075754099989,73.47076823500015],[-101.25052870299993,73.35866772100013],[-100.81446733299998,73.26013229300008],[-100.56505047999997,73.28019685200013],[-100.25621537299992,73.36391082800009],[-100.14525683199997,73.28570898900011],[-100.43728070099996,73.25714451700014],[-100.57913651099989,73.15532555600004],[-100.50322484799995,73.1084185420001],[-100.17348785899992,73.08998025500011],[-100.03243045999989,72.93542290900018],[-100.32305138099997,72.8762329450002],[-100.30093898299992,72.79866311000012],[-100.42791219699996,72.73451447100007],[-100.79302062099998,72.73077836800013],[-100.84400541599996,72.68981386700011],[-101.26568468799991,72.71266062700005],[-101.43638554199998,72.79516169800013],[-101.52032204299996,72.91923660100014],[-102.11985694499998,73.08838408300005],[-102.49672821699983,73.02604288300012],[-102.73532300499988,72.76800816300005],[-102.66656035299991,72.69089904499998],[-102.36285022499999,72.58652722800008],[-101.92695344199996,72.47400479300006],[-101.80937480999995,72.31546958400008],[-101.45879427499989,72.26587851800008],[-101.17512410999996,72.33005381200007],[-100.90564205699997,72.18412548200018],[-100.61373863999995,72.18229916500013],[-100.42985465899989,72.05566988700008],[-100.05258467699991,71.88350653500004],[-99.82335529099998,71.84108307900016],[-99.59430830399998,71.71065955300003],[-99.52762416599995,71.62601818600018],[-99.34323830399995,71.5874505600001],[-99.35095065799993,71.52081194000004],[-99.21366072199993,71.3664471960002],[-98.942171939,71.39996112600011],[-98.7029847039999,71.29412266800006],[-98.43168009199997,71.33780339700013],[-98.11826241599994,71.47477551700013],[-98.03362082999996,71.55412400400013],[-98.16974530799996,71.6549498650001],[-97.95751680399997,71.67838506600015],[-97.45498568499988,71.62660043300014],[-97.14803662199995,71.68817756200019],[-96.91480255399995,71.81847629400005],[-96.51512576899984,71.84786793300003],[-96.45148786099998,72.031492657],[-96.48944893999993,72.23820045600007],[-96.65312781399984,72.30645691100017],[-96.26919291799987,72.42339852100014],[-96.49243191999994,72.66956622000015],[-96.63904233399995,72.70871030700005],[-97.01647180299989,72.71760968300009]]],[[[-97.03533119399998,72.95987187200006],[-96.68568991799992,72.93463765700005],[-96.53904585699996,73.03044147500009],[-96.75260327599989,73.18081394500018],[-97.04189234899991,73.14171624700015],[-97.11703035999994,73.08595032200003],[-97.03533119399998,72.95987187200006]]],[[[-93.83846637399995,72.70462695100002],[-94.29211400099996,72.770663345],[-93.63031495699994,72.78221195900005],[-93.33292260599984,72.80457861600019],[-92.31037774299995,72.70599728100012],[-92.01287822799986,72.76779877400008],[-91.798358023,72.87247706300013],[-91.26674791199991,73.25862804400003],[-90.83044736499988,73.54047257200011],[-90.57576398699996,73.65339777400015],[-90.15967157599988,73.89755054300008],[-91.11668233199998,74.01443029100011],[-91.55363397899998,74.02944268800007],[-92.24456929699988,73.99247016700014],[-92.35351794099995,74.05957394500012],[-93.03080659099999,74.15485890100007],[-93.47301062299994,74.17662336100017],[-94.23884235499992,74.1318832550001],[-94.7869038479999,74.07394543000004],[-95.31147056099996,73.97977983200002],[-95.28429831199998,73.87722129900004],[-95.05734113199992,73.77059077100006],[-95.4914813179999,73.76646428800012],[-95.65604945299992,73.72723233600016],[-95.60564629999999,73.61061808700003],[-95.66666625599987,73.47190338700011],[-95.57260997199984,73.18024826100009],[-95.65613552699995,73.07775154300015],[-95.65395582599996,72.80046275000012],[-95.60453297599997,72.71765712600018],[-95.31302849699989,72.62107936100017],[-95.30586207699997,72.54533569000017],[-95.11943807599994,72.46605021000016],[-95.188716232,72.41989948200006],[-95.196892672,72.00012326500013],[-95.12129818199998,71.9776278],[-94.47652848699994,72.02134066999997],[-94.07822630099997,71.98999790900007],[-94.00596342199992,72.15924877200013],[-93.81276434199992,72.3090605660002],[-93.6127915919999,72.3453031620001],[-93.4429371629999,72.47028393600016],[-93.50349655599996,72.54520283200003],[-93.79598436599986,72.65106178600013],[-93.83846637399995,72.70462695100002]]],[[[-105.20149145699997,72.8713993],[-105.23428243299998,72.93824469400016],[-104.99330230399988,73.0042795870001],[-104.51639097999998,73.34778353300004],[-104.44385702399984,73.53516506200009],[-104.51242751399997,73.5957026210001],[-105.0833672789999,73.75034125700006],[-105.53033824999994,73.76592615400017],[-105.66859147499997,73.73349507900008],[-106.26194784399996,73.72847008900015],[-106.62377107999998,73.68630764400012],[-107.0022864309999,73.4647949190001],[-106.74753519899991,73.4560638440002],[-106.41936048499986,73.39582401200005],[-106.16043413099993,73.28179417700005],[-105.72708085799997,73.04434758200006],[-105.50213422499996,72.97602759900019],[-105.3292286649999,72.86201597100018],[-105.20149145699997,72.8713993]]],[[[-97.71044537399996,74.12010781600003],[-98.0086938419999,74.11032434200001],[-98.46077999899995,74.04153603499998],[-98.77095207599996,74.03390066800017],[-99.04387653999999,73.95675526300005],[-99.40311451799988,73.91787843600008],[-99.08364277299995,73.81648899900017],[-98.7669418239999,73.81587915100016],[-98.06806583299993,73.89252490000018],[-97.632369069,74.05347866000005],[-97.71044537399996,74.12010781600003]]],[[[-97.52085795299996,74.609398973],[-97.77973289599998,74.49701158700009],[-97.55790749899995,74.47352734000009],[-97.26233379599995,74.60144579600018],[-97.52085795299996,74.609398973]]],[[[-95.49493649499988,74.50342897800004],[-95.25395933799996,74.55232245700012],[-95.48134842199994,74.64292717000012],[-95.81347253299992,74.57100325600004],[-95.49493649499988,74.50342897800004]]],[[[-94.49999130799989,74.63137517600012],[-93.72131053299984,74.64377018200003],[-93.4494166419999,74.71018371000014],[-93.39351783399991,74.90297799700005],[-93.4920843999999,75.02471485400002],[-93.47386292699997,75.26366621800014],[-94.09568476399994,75.49445853200012],[-94.2974846859999,75.5875179520001],[-94.88531783199988,75.63965559200011],[-95.28077597299995,75.60848870000007],[-96.11548960799996,75.41753753300009],[-95.88924648799997,75.38180452300008],[-96.08041081099992,75.24488690300018],[-96.43969008499994,75.20149303800002],[-96.59985401499989,75.07068382300008],[-95.8429159829999,74.83042892000009],[-95.28001665999989,74.80536225700001],[-95.064527608,74.74912773500017],[-95.0619546719999,74.67983936700006],[-94.49999130799989,74.63137517600012]]],[[[-103.59279868799996,75.18074571700015],[-103.96115084699989,75.40371314000015],[-104.37467827599983,75.42695226900014],[-104.68304097299995,75.31850168700015],[-104.90025891999994,75.11859464900016],[-104.58601042899994,75.05346798600004],[-104.196046261,75.02067322300002],[-103.8494069489999,75.05834435000008],[-103.59279868799996,75.18074571700015]]],[[[-96.83395623099995,75.35867561700007],[-96.46557706999988,75.46640493700005],[-96.12706472799988,75.45917918000004],[-95.89843915799992,75.56251331900006],[-96.30124067699995,75.65685425800007],[-96.42258321799989,75.5860386830002],[-97.01051791099997,75.49983954600003],[-96.83395623099995,75.35867561700007]]],[[[-108.364225122,76.40688164400007],[-108.57248457599991,76.42349300000012],[-108.49887210399999,76.56387695100005],[-108.68154866099997,76.61840248300012],[-108.39333611999984,76.70514595100008],[-108.6195872809999,76.81469051200008],[-109.09075060299995,76.82312298200003],[-109.29369761399994,76.79538606100004],[-109.53948021799982,76.62562238700008],[-109.72680259499998,76.59600501800008],[-110.084802288,76.44549748700013],[-110.37778079799989,76.40346754300015],[-110.26419968999988,76.30201757900011],[-109.91916269099994,76.20683171600012],[-109.68496038899997,76.21848286600016],[-109.27064759599995,76.10206739900008],[-109.36727320999995,76.02250158000004],[-109.62958012499996,75.95343078000019],[-110.034954627,75.89688563599998],[-109.89878148899999,75.85083855400018],[-108.9337633639999,75.70960822800009],[-108.80128020599994,75.61910419999998],[-108.9438160919999,75.48055318100006],[-109.233222937,75.51745401900001],[-110.36009987399996,75.54092252100008],[-110.77742535199991,75.56604576000018],[-111.19811949199999,75.52125252100006],[-111.38588331299997,75.61597369400016],[-111.3115521879999,75.71006073100017],[-111.45323335999984,75.84384717400008],[-111.93256273299988,75.80723733399998],[-112.1538969099999,75.84475235800016],[-111.68552464899989,75.92244806600013],[-112.380522037,76.04341636999999],[-112.54465734799993,76.198677427],[-112.97961817599992,76.27115975599997],[-113.3387092609999,76.26581150200013],[-113.68317214299998,76.20416018900016],[-114.0236211319999,76.22321752500011],[-114.12471581699992,76.3137597000001],[-114.04484792299996,76.41730322500001],[-114.396630486,76.49471021200014],[-114.88926131499989,76.49786660000018],[-115.62236186299998,76.42077823100016],[-115.87170694799994,76.35583443900015],[-115.85639131699998,76.25617295000006],[-116.04924883199999,76.20415110600004],[-116.60682568999988,76.12023961900013],[-116.71915032099992,75.90192910000019],[-116.04976513199995,75.80909889300011],[-116.78695359199992,75.80042715400015],[-116.98245414699994,75.75233731600002],[-117.21688800499999,75.58201577200015],[-116.39698578599985,75.5611776790002],[-115.39736087699998,75.65486620899998],[-115.94169323399996,75.4927526960002],[-116.12991544699997,75.47723275800001],[-117.14511854999984,75.48186952100008],[-117.54986059999993,75.35114338000005],[-117.65380816499999,75.24669018300017],[-117.48489072599989,75.19722939600007],[-116.69144610099988,75.11732720900005],[-116.55565914299984,75.18078766999997],[-116.23230732199994,75.18136829200006],[-116.22536156699988,75.05924779200006],[-115.67619936899996,74.96893694500005],[-115.53466796499998,75.00370232800014],[-115.57506610899986,75.10337749800004],[-115.20248130999994,75.07240667300016],[-114.99402065799995,74.96387377000008],[-114.43536300999989,75.06020057600017],[-114.09560228899988,75.25019486200017],[-113.90552897799995,75.19527703300008],[-113.90363866299987,75.05513210900011],[-113.00797609699998,75.09324923600013],[-112.77304580799989,75.120827302],[-112.60716437499991,75.19954969300011],[-112.37237939199997,75.12525365000016],[-111.55553179699996,75.14263968200004],[-111.05162328799997,75.27372660000015],[-110.88960230299995,75.23657006000013],[-111.28539229599988,75.07766355500013],[-111.71318978299996,74.98861141700007],[-112.0722610059999,75.01164107400012],[-112.84158231999999,74.98115249400007],[-113.10016750199998,74.94194054600018],[-113.45395972099993,74.8384317870001],[-114.19457478099997,74.76094408100016],[-114.39083912999996,74.64653789200008],[-114.01729806099996,74.52542807999998],[-113.69103245499991,74.450404746],[-113.0309321229999,74.39913627200019],[-112.39995634699994,74.4169890020001],[-111.64289227899997,74.49585225400017],[-111.39470683699994,74.56255372700019],[-111.0328434249999,74.61135925300005],[-110.55491159999991,74.7079794230001],[-110.62481251999992,74.77443521000004],[-110.22411141199996,74.84104133400012],[-109.80924036599987,74.87406183799999],[-109.50535685099987,74.86213935100005],[-109.33524804399997,74.94617887900012],[-108.92721230499995,75.012233445],[-108.79428224499992,75.06986097700002],[-108.50755823999998,75.01433395800018],[-108.3397104419999,74.9142787310002],[-107.91450340299991,74.93328599900008],[-107.88890281699986,75.00000872900017],[-107.20118948199996,74.90949417100006],[-106.924239818,74.92618010100011],[-106.68070748699995,75.00278644500014],[-105.9918276649999,75.05114025600017],[-105.86793802899996,75.14041916500008],[-105.90112458699986,75.21799846800002],[-105.61640035,75.36165978700006],[-105.36853568699996,75.62873439600014],[-105.4176638379999,75.84699046200006],[-105.56643494599996,75.93462833600017],[-105.88419720599995,76.01009819200016],[-106.304787337,76.06015535800015],[-106.630539232,76.05556424600007],[-106.99963984399994,75.8947033020001],[-107.43687840199993,75.91070688400015],[-107.78368015199999,76.06074243000006],[-108.37656495099998,76.05158449200013],[-108.3294654369999,76.1760609120002],[-108.08396958099996,76.232334407],[-108.364225122,76.40688164400007]]],[[[-93.21899217199996,76.73417873300014],[-93.7071301549999,76.92017203100016],[-94.24605824699995,76.88919992600017],[-94.4902920799999,76.96461379000016],[-95.15525756399995,76.99058008100019],[-95.44110947199988,77.05784773900007],[-96.30674884599995,77.04007518300006],[-96.45753792799997,76.96945270800012],[-96.78119752099997,76.98412957400018],[-96.97259224899989,76.73430920500005],[-96.50046180799995,76.68939416600017],[-96.04198102299989,76.55273432900003],[-96.01758970099996,76.43844736700015],[-95.81321534599988,76.39318879600006],[-95.01131190899997,76.34922080800015],[-95.39917962099997,76.28697293500016],[-95.06400559099995,76.21664871700017],[-94.75523517199991,76.28589751500004],[-93.80723540399987,76.25498940199998],[-93.35170158399984,76.35907679700017],[-93.12092231099984,76.36393901400004],[-92.95905168499996,76.23999639200008],[-92.64678981099996,76.12561406700001],[-92.55307106299989,75.97402876800004],[-92.14791081899995,75.88114647400016],[-92.16614288899996,75.7334398750001],[-92.00378335599999,75.594187348],[-92.20768197199993,75.54900873800011],[-92.41598390199994,75.41966271000013],[-92.48661565499998,75.21615753700007],[-92.05635658399996,75.0884743110002],[-92.19934586299996,75.02775421700011],[-92.01859693199998,74.89273210900018],[-92.082934218,74.8002254020002],[-91.57786676099994,74.64909697700017],[-91.11818320999998,74.63871086300003],[-91.02513214399994,74.70583195000012],[-90.61428656499993,74.61459424800006],[-89.9540733529999,74.5296627940001],[-89.57123149399996,74.53896755500017],[-89.22549904599992,74.57980647100004],[-89.12061351199998,74.68824787500017],[-88.80689223799999,74.6762763430001],[-88.71941440299997,74.79772126400013],[-88.40812784999997,74.73870494400012],[-88.57314230399999,74.56924279000009],[-88.54223287099995,74.50587792300007],[-87.7139383569999,74.45996298500012],[-87.44459057999995,74.48557558300013],[-86.93898026999994,74.46169578100017],[-86.28601340299997,74.50107428900014],[-86.10192849399988,74.48069857200011],[-85.36498795499995,74.50310823300003],[-84.24990937799993,74.50704395700006],[-83.84525297499994,74.55237011600008],[-83.59818053499998,74.54924947700005],[-83.31534591299987,74.78358541000006],[-83.07165308599997,74.7867193830001],[-83.07407579799997,74.6162988230002],[-82.81531257999995,74.52590738600003],[-82.41037270899994,74.52471671300003],[-81.80011704299994,74.45793009200008],[-81.29743106399991,74.5659638890001],[-80.81941385999988,74.56048816000009],[-80.25168202999998,74.57821384100009],[-80.16386496599995,74.84338306600006],[-79.8694088119999,74.8157744950002],[-79.39698055099984,74.91279251000003],[-79.54849730299992,75.01258514300014],[-79.84166118799999,75.02081283100006],[-80.20204757799996,74.95891515200009],[-80.2697248309999,75.06347993800011],[-79.97463672199996,75.09166285300006],[-79.83085986199995,75.16925515300011],[-79.60700355599994,75.18841249300016],[-79.47532066699989,75.26855196800005],[-79.50831469899992,75.3713376730002],[-79.70277868899996,75.46894952700006],[-80.04313108499991,75.52513951300017],[-80.068107936,75.57988883200017],[-80.50901676799998,75.65318782500003],[-81.01177509299993,75.62785184600011],[-81.28438702599988,75.6505542110001],[-81.14616391899995,75.77438386200004],[-82.33680296799997,75.83869003800004],[-82.94025274499995,75.75548325000011],[-83.41354715299991,75.74556984300011],[-83.81116761899983,75.82020455000014],[-84.38587677599992,75.70226892599999],[-85.08069323899997,75.6516964400002],[-85.42215333699994,75.56491933600006],[-85.91302223599996,75.54607127700012],[-86.15871243399994,75.50466217900015],[-85.82855294099994,75.4256662470001],[-86.34502965099995,75.42083698300007],[-86.79043384699992,75.47638672900013],[-87.257701565,75.61982726000014],[-87.53126835399985,75.56099986300006],[-87.72288045199991,75.57857450200015],[-88.18230101999995,75.52312243300008],[-88.63013087099989,75.672072856],[-88.92225124499993,75.607993109],[-88.74640795799996,75.46953286500019],[-88.97335932799996,75.43576253900005],[-89.25066371299988,75.62497462700014],[-89.15001897799988,75.76332677800019],[-89.67266181399992,75.89007168400019],[-90.0367023739999,76.01042711600019],[-91.11915331899996,76.16215906300005],[-90.42315151999998,76.18083871700003],[-89.71642959399992,76.16209154800009],[-89.28723099299998,76.19397832200013],[-89.30321092799994,76.30129640900014],[-89.76346126499999,76.32687289800009],[-90.35548967099999,76.39669399900009],[-90.51174657299998,76.52635349900004],[-90.97230376999994,76.65202483000019],[-91.43024580099996,76.69134889100019],[-91.91735357299984,76.66737552500012],[-92.12558817999991,76.61576958700005],[-92.65659726199993,76.59052170400008],[-92.86980887499988,76.6196569980001],[-93.34679896199998,76.53712413200014],[-93.16840433399994,76.68092015500008],[-93.21899217199996,76.73417873300014]]],[[[-97.61476595699992,75.81770601500011],[-97.63146436099998,75.98445792000018],[-97.47840691099998,76.12625909600018],[-97.56398898499998,76.2307531890001],[-97.77616898399998,76.3134757150001],[-97.66142824099995,76.48523186800014],[-98.20361685899991,76.54501966500015],[-98.58275918099991,76.61205369500004],[-98.97171023499999,76.60886866900017],[-99.23154967399995,76.47669766000013],[-99.68081781199999,76.63055012500013],[-100.16087779599991,76.6393206460001],[-100.44197161299996,76.61377592100013],[-100.97750616499997,76.49831291900006],[-100.73302845699999,76.38192558500015],[-100.29760347699994,76.38036214900006],[-100.43417154899993,76.21350214200015],[-99.93193595999998,76.18999168900007],[-100.23098281499989,76.00419741000007],[-100.8570716399999,76.21736674400017],[-101.27885962299996,76.4126268340001],[-101.86814845899994,76.44638635800004],[-102.05984621099992,76.35299522600013],[-102.11308191699993,76.21613781200006],[-101.45591668799995,76.23322234600005],[-101.90537101199999,76.11038414100005],[-101.82315685999998,76.02150697600018],[-101.58624636199983,75.92344029600014],[-102.12916182499998,75.88096424300011],[-102.095327866,75.71745695200008],[-102.54489660399997,75.71424480800005],[-102.84644515899993,75.62090742599997],[-102.63315037499996,75.49686629200005],[-102.41349952899992,75.53676516600012],[-101.11914499399995,75.58919528600018],[-99.97158776799995,75.67458224200016],[-99.70019618299995,75.59448598200004],[-100.00626052399997,75.53040846400012],[-100.09028826399998,75.45128135100015],[-100.41710822499988,75.38505324800019],[-100.76926475099992,75.35184551800006],[-100.20514309799995,75.25258759300016],[-100.39637951199995,75.16519815800012],[-100.36522091799998,75.03000657700011],[-99.92876183999988,74.98015490900008],[-98.75120878199994,74.99535476200015],[-97.9336444509999,75.03286837700011],[-97.94488268399994,75.10453407199998],[-97.55328975199996,75.14273753600014],[-97.85045997499986,75.26588614300005],[-98.10150430999988,75.30933676600006],[-98.02453931199994,75.41498229800015],[-97.64784553499999,75.55274247100004],[-97.37113416499983,75.44539375000016],[-97.40499592299989,75.69658932300018],[-97.84295517099991,75.730944297],[-97.61476595699992,75.81770601500011]]],[[[-94.79006057899988,75.86731570600011],[-94.77229900599997,75.78067554900008],[-94.28941304799997,75.75984528600009],[-94.41814796599988,75.95284779600007],[-94.85548520099996,75.93723198000015],[-94.79006057899988,75.86731570600011]]],[[[-101.9584874709999,75.94598703000014],[-102.10668945599991,75.9959781010001],[-103.03648975399989,75.8991842170002],[-103.36232293199993,75.77327291100005],[-103.2053893879999,75.74582517300007],[-102.58045079099998,75.77106455900014],[-102.40021639499992,75.87557887200012],[-101.9584874709999,75.94598703000014]]],[[[-103.91591551799996,75.9463902670002],[-103.84708977199995,75.89809327000006],[-103.33840642199993,75.90541297700008],[-102.25113522099991,76.03154140300006],[-102.55376582599996,76.09049939600015],[-103.91591551799996,75.9463902670002]]],[[[-102.48997421099995,76.2223934210001],[-102.71459821899998,76.31655775400014],[-103.07990869099996,76.31354503100016],[-103.49465174999995,76.26908544600013],[-104.24646689899998,76.22062664700013],[-104.48054465299992,76.15340907900014],[-104.388853999,76.0876629440001],[-104.0728471679999,76.04153793900014],[-103.39316275699997,76.04817106300004],[-102.79604962499991,76.09166298400015],[-102.48997421099995,76.2223934210001]]],[[[-104.50845686699995,76.48404240500008],[-104.24610930799997,76.36113812900004],[-103.77318847499998,76.3076822930002],[-103.25767039299996,76.33829895800011],[-102.98043401299998,76.44476130300012],[-103.57117692499992,76.53048678800019],[-103.9151055609999,76.65335119000014],[-104.32470738099994,76.66717413800006],[-104.64527837799989,76.59686356800012],[-104.50845686699995,76.48404240500008]]],[[[-90.59730070199998,76.74276691300014],[-90.22874336999985,76.53679890800004],[-89.83020290999997,76.54515630100008],[-89.7020334259999,76.74323883700015],[-90.05185732199999,76.83955356200005],[-90.47317782199991,76.7998998020002],[-90.59730070199998,76.74276691300014]]],[[[-101.04982227199997,76.5916136890001],[-100.27694108199995,76.72778123300014],[-100.48695623899994,76.76136623400015],[-100.99186021399993,76.72352076600015],[-101.1730918849999,76.65638919000014],[-101.68864663799997,76.58882613000014],[-101.333922396,76.5540565180001],[-101.04982227199997,76.5916136890001]]],[[[-91.17994028299995,77.16794351400017],[-90.79321708499992,77.14438792200019],[-90.81414361799989,77.23845475000007],[-91.27786275499994,77.2264411770002],[-91.17994028299995,77.16794351400017]]],[[[-89.73078730999993,77.4605505020001],[-90.40642207199983,77.63670061000016],[-90.86575379599986,77.6603587680001],[-91.23115873199998,77.57085546800005],[-91.20871696199998,77.39471602900005],[-90.857311784,77.28892225500016],[-90.13664479899995,77.19595706500019],[-89.6413530829999,77.32201999600017],[-89.73078730999993,77.4605505020001]]],[[[-105.78793998099997,77.5318446280001],[-105.48408357799997,77.29552825300016],[-105.22464007199994,77.16362762800014],[-104.80038564499989,77.110779025],[-104.47100629699997,77.1398214130001],[-104.38491231199998,77.27721864199998],[-104.71321763099996,77.38699662800019],[-105.01122877199998,77.4160374010001],[-104.97480515999996,77.5236309350002],[-105.37721910599998,77.68705353500002],[-105.9176671749999,77.76283760600018],[-106.06983104999989,77.70982331700003],[-105.81757227099985,77.6154688970002],[-105.78793998099997,77.5318446280001]]],[[[-93.5314445439999,77.44741961800008],[-93.3819930809999,77.62667212000014],[-93.08185038699997,77.65718059400007],[-93.22584983299998,77.73107527300016],[-93.64901986699994,77.78071833900003],[-93.84119112299999,77.74770868600018],[-94.70581741799998,77.79238566600003],[-95.37357387699996,77.7395663260001],[-95.92835916099989,77.755261508],[-96.2563375019999,77.68821228500019],[-96.29593153599996,77.6081392480001],[-96.06949795799989,77.4937462170002],[-95.28832698099995,77.46516487500008],[-94.84647840899999,77.48275979700014],[-94.14794036299992,77.44653906600001],[-93.5314445439999,77.44741961800008]]],[[[-110.42782225499991,77.45794426800012],[-110.05550795799991,77.55613146100006],[-110.02860644299994,77.76188102200007],[-110.60483824499994,77.76190135900003],[-110.8573898699999,77.86473747600007],[-110.16992890999995,77.89443757400011],[-109.66094057399994,77.95977744700008],[-109.54576592199999,78.07101178100015],[-110.08465597199995,78.11616232799997],[-111.21680821099989,78.09169378400014],[-111.7501767469999,78.03762150800014],[-112.39860893399992,78.00667242300011],[-112.792391609,77.93665338599999],[-113.19988520999993,77.91279499100011],[-113.2923306319999,77.77975920900008],[-113.12339064199989,77.634969373],[-113.17700772299992,77.52226004599999],[-112.90576815899993,77.46420331900009],[-112.55782697899997,77.45032372500009],[-112.44588208199997,77.36962627400004],[-111.99409793599995,77.3278913800001],[-111.31424280999994,77.41006319200005],[-110.91975410899988,77.40333832200014],[-110.42782225499991,77.45794426800012]]],[[[-102.39010874799999,77.88484179700009],[-102.51251769399994,77.78450771600012],[-102.06824454999997,77.68041572900006],[-101.51849815499997,77.72258270800012],[-101.10100547299993,77.71170834200012],[-100.97653490199997,77.77665518200018],[-101.25263939199994,77.84967974400013],[-102.07089097699992,77.90048180600013],[-102.39010874799999,77.88484179700009]]],[[[-103.27395086799993,78.17661336500015],[-103.03539138299993,78.13170528000012],[-102.768050626,78.2140089940001],[-103.0339577879999,78.26538807900016],[-103.27395086799993,78.17661336500015]]],[[[-95.296278482,78.21476412600009],[-94.91029886399997,78.3274306890001],[-94.91150423999994,78.3929114450001],[-95.55682968399998,78.51287866200005],[-95.92897368199993,78.48267860600009],[-96.28898317999995,78.52502287000016],[-96.25871465599994,78.62612503700007],[-96.91036836099988,78.70463140300012],[-97.50492734799985,78.7989738440001],[-98.1918765389999,78.81239203500019],[-98.40536864199998,78.76669387800018],[-98.36909632699997,78.64946454200003],[-98.10875570499991,78.57820513600007],[-98.36604617299992,78.52832025900005],[-98.35749326699994,78.44353217200012],[-98.07775697699992,78.3110865910001],[-97.80768930799996,78.2575028890002],[-96.92606556499999,78.14265758],[-96.97683268199984,78.0718997800002],[-97.65831979899997,78.09116308600011],[-97.72247317899996,78.04056281500004],[-97.02668109899997,77.91894452300016],[-97.09106747099992,77.80573475900007],[-96.82033795199999,77.79149296200006],[-96.57651920999996,77.89933982600013],[-96.30667761299992,77.8591644350002],[-95.94025089199988,77.88411608900009],[-95.40164307499998,77.96480334100005],[-95.10374409699989,77.94996800400014],[-94.8932271619999,78.1063050200001],[-95.296278482,78.21476412600009]]],[[[-111.13803224199984,78.39075138600015],[-110.67567636599995,78.29736480200012],[-110.36666252899994,78.27665769600009],[-109.96590592599989,78.32616870300012],[-109.42602311499996,78.31412186600016],[-109.22715598199989,78.47769639500007],[-109.44425100099988,78.58065877100012],[-110.40843338499991,78.75890432800014],[-111.15721067799996,78.69250803200003],[-111.40215094799993,78.59633131000004],[-111.68794404299996,78.5540840910001],[-112.28867665899992,78.54285095800014],[-113.05730580499983,78.43182948800012],[-113.31087603699996,78.33596571600009],[-113.04717402599994,78.2734995690002],[-112.65148782499995,78.33942869800006],[-112.1560791419999,78.37315026300018],[-111.740294485,78.27345631000009],[-111.40331466599991,78.27592187100004],[-111.13803224199984,78.39075138600015]]],[[[-101.8638036829999,79.09148913700017],[-102.72649289999998,78.95720613400005],[-102.61628643599994,79.1007630630001],[-103.0776003169999,79.28740279800007],[-103.96304532699997,79.37478237300019],[-105.116197748,79.30150133700016],[-105.45640692199999,79.2998495010001],[-105.61226928299993,79.1748862820001],[-105.59917600299991,79.04100563900005],[-105.38268142099992,79.00754677200018],[-104.92566249899994,79.05057409800014],[-104.68191091799997,78.98981347600005],[-104.85438639499995,78.8752456150001],[-104.10116847499995,78.98000511800012],[-103.90205719499988,78.87227911800005],[-104.19891438199983,78.771010333],[-103.58481024599996,78.76627837299998],[-103.49991083099997,78.66453185800003],[-103.54335341099994,78.50488039100003],[-104.13420986999989,78.52648633100017],[-104.73578541799998,78.58162647500012],[-105.01440506599988,78.49479560800006],[-104.73759570999994,78.35923584900019],[-104.43149549499987,78.26576186200009],[-103.91470999799998,78.2442616350001],[-103.65972945099998,78.31717708999997],[-103.05761587699993,78.3674783080001],[-102.56121232399988,78.23513679300004],[-102.16259772199999,78.29266152600019],[-101.70743977199999,78.26100424400005],[-101.28458083099991,78.17582586300017],[-101.00944738399994,78.17105255500013],[-100.74280677099989,78.08551306200019],[-100.76508557399984,77.96809657000017],[-100.4580770849999,77.85592485500007],[-99.90311013399997,77.77928939400016],[-99.33165427599994,77.82837864200019],[-99.05035196599994,77.88746112600018],[-98.95076997999996,78.04179690100017],[-99.48771103399997,78.2715376070002],[-99.70629277399996,78.30263977400011],[-99.85171197899996,78.42875185700012],[-99.4895233929999,78.585063918],[-99.79215927299998,78.64015334600003],[-99.97425065899984,78.73417451100005],[-100.38255987999992,78.83060455100002],[-100.96632513999998,78.77057679000012],[-101.19424924499998,78.82147027800005],[-100.96802343099989,78.92295649500011],[-101.62645624999993,79.07789026600005],[-101.8638036829999,79.09148913700017]]],[[[-90.01046271999996,80.52152670200019],[-90.74169275099996,80.55597991500008],[-90.61035198399998,80.63533336600011],[-90.77362095799998,80.7123285130001],[-91.14238097799989,80.75674093800012],[-92.12528561699992,81.22453592800008],[-93.29148672299988,81.36276152900012],[-93.69126983399991,81.33128832900019],[-94.28725609499992,81.340031942],[-94.41354580899986,81.24536162300006],[-93.78388575799994,81.19909306100004],[-93.2901849619999,81.21043113300004],[-93.21696324499993,81.08910802800017],[-94.2350892479999,81.10664068500017],[-94.16823672699996,81.00320298900004],[-94.9155185709999,81.06075256100019],[-95.27615187899994,81.00355893000005],[-95.28820133499994,80.8844188160001],[-95.4942147719999,80.79460853300009],[-94.69793373899995,80.72220154600012],[-94.57723557399993,80.60242129900007],[-94.77866684599996,80.5594397100001],[-95.51087405699997,80.58979372100009],[-95.95349622599997,80.55105124300013],[-95.82210837399992,80.44784330700014],[-96.12433431799991,80.38089840400005],[-96.64383013199989,80.33006295600012],[-96.46650703499995,80.27189784600006],[-95.33561166899989,80.11379188500018],[-95.15803381399996,80.02664887900016],[-96.04220144799984,80.07211881500007],[-96.61664173899999,80.14251558800015],[-96.77133692699988,80.08592982100004],[-96.63290714699991,79.89527207100008],[-95.90084421299997,79.64811287100014],[-95.55394830399996,79.62877716700012],[-94.82245847499996,79.66104114600006],[-94.56964645799997,79.62376412900011],[-95.62859170599995,79.55111188600011],[-95.74169492499993,79.40638636100016],[-95.34680717099991,79.38582983000009],[-94.9918290629999,79.2638770860001],[-94.50733458899998,79.34321356700013],[-94.25351978099985,79.26612043200004],[-93.8605456549999,79.26349053300015],[-93.07264183099994,79.35717214100009],[-91.82930694299995,79.33623608600004],[-91.9594572719999,79.29157946500004],[-92.52299891699994,79.30295509700017],[-92.67957236199993,79.24681713300009],[-92.25692370999997,79.20141913800006],[-91.17233547599989,79.24471726600018],[-90.77450373099992,79.20650696200005],[-92.0957720639999,79.14828482400003],[-93.38262505299997,79.16164668900007],[-93.69117973999994,79.04663754200004],[-94.25323050599997,78.99201015600005],[-93.82055543799999,78.76977408400012],[-93.29649429199998,78.57979052600018],[-92.84394996399999,78.62550748100011],[-91.99519740599993,78.52555081900005],[-92.86119335199987,78.49858839300009],[-92.93773821999997,78.41654942000008],[-92.49497256399997,78.30351649599999],[-91.98230237199988,78.21280289600014],[-90.98031949699998,78.14031665200014],[-90.32610669299993,78.14500889900012],[-90.36212951099992,78.2569319550002],[-90.04209563299992,78.29875430300007],[-89.86265368299996,78.20898137000017],[-89.48535204999996,78.18544748300008],[-89.74528144499999,78.37794850400007],[-89.77027230699997,78.4928543310001],[-88.99391069099994,78.16669365600012],[-88.76302125299998,78.1656390440001],[-88.53558910899994,78.4004748810001],[-88.31556921899994,78.47860428600012],[-88.016242031,78.47775992800007],[-87.86456069499997,78.58179735200014],[-88.10021129999996,78.68117786700003],[-87.52200684199994,78.66072526300013],[-87.32606261199999,78.79804343900014],[-86.28045048699994,79.08950164700019],[-85.27202729799995,79.18846516400009],[-84.86607614699994,79.270583338],[-85.38382917299992,79.45379029000009],[-85.63233898099998,79.6056181510001],[-85.87267813399984,79.51485652200006],[-86.22921202099997,79.6326213480001],[-86.65923980199995,79.656461552],[-87.16871158499998,79.57401879100013],[-86.94203122499994,79.86207869600014],[-86.96526957099996,79.94722116300011],[-87.3607641449999,80.08069242600004],[-88.05100957699995,80.09773135400013],[-87.61817965099988,80.17282545600011],[-87.67196958799997,80.4044544360001],[-88.42354197499998,80.43754840300011],[-88.69309280899995,80.37079471100009],[-88.67972284999996,80.27269525600013],[-88.34418508899995,80.15809843700009],[-88.73805019599996,80.1250327750002],[-89.15588119499989,80.2149560100001],[-89.04796135799995,80.44913852400009],[-89.28634009099983,80.52129745800005],[-90.01046271999996,80.52152670200019]]],[[[-99.30173642199998,79.81108601200003],[-98.9922800189999,79.72347341600005],[-98.61747354399995,79.78412349500013],[-98.85963635699989,80.06912486500016],[-99.15314357599993,80.13081792700012],[-99.71018553999988,80.15008061600008],[-100.19637597599996,80.03720615400016],[-100.1387547899999,79.88863577400014],[-99.51388405499995,79.88653867800019],[-99.30173642199998,79.81108601200003]]],[[[-95.97077480999991,80.69405263900018],[-95.24604337599993,80.60797233200009],[-95.22639841999995,80.69862638800015],[-95.97077480999991,80.69405263900018]]],[[[-85.84326086099998,-78.24093370999992],[-86.30256402699996,-78.27996489599997],[-86.01899423899994,-78.45478330299989],[-85.78554405899996,-78.41031091799988],[-85.97538351499998,-78.34924470599998],[-85.84326086099998,-78.24093370999992]]],[[[-83.64450057499994,13.64379868400016],[-83.67065462799997,13.69778618700019],[-83.77540561899991,13.677080371999978],[-83.80283355299991,13.730211915000098],[-83.8923034959999,13.760687844000017],[-83.9497986579999,13.838374676000115],[-83.96735354899988,13.991855538000038],[-84.03543052799995,14.000424860000123],[-84.05261963199996,13.873488480000049],[-84.11133553499997,13.868112663000147],[-84.25090763399993,13.936413271000049],[-84.32827762899984,13.90178159400017],[-84.18984965999994,13.686625851000088],[-84.20822865899999,13.451374495000096],[-84.28339354399992,13.263245863000122],[-84.22190859599988,13.195530479000126],[-84.14252459699998,13.221526784],[-84.0764155199999,13.18903383300011],[-84.01105461299994,13.225647494999976],[-83.94229165799999,13.203789168000185],[-83.89347863899997,13.133402806],[-83.85526252499989,12.99921390100019],[-83.72394559499992,12.97158647700013],[-83.59568755599997,12.8937318400001],[-83.5501865629999,13.046376523000163],[-83.57122765399993,13.224519626000188],[-83.60920756599995,13.344614697000054],[-83.54615050899992,13.493950538999968],[-83.67843655499985,13.548000069000068],[-83.64450057499994,13.64379868400016]]],[[[-83.60713958299988,13.624721975000114],[-83.5306625959999,13.541028505000043],[-83.51243564399994,13.67105797400012],[-83.60713958299988,13.624721975000114]]],[[[-83.63667254799998,13.739684136000164],[-83.58186361899993,13.800179349000075],[-83.58890559099996,13.881493030000115],[-83.66827349699997,13.919065414000045],[-83.78955862999999,13.782056333000128],[-83.75145751599996,13.736245544000042],[-83.63667254799998,13.739684136000164]]],[[[-83.44834861799995,15.266432378000047],[-83.60580451399994,15.323215749000099],[-83.89132650199991,15.462296669000125],[-84.24710057299995,15.763308582000093],[-84.16316251899991,15.629471213000102],[-84.22566251499995,15.547180369999978],[-84.13285858599988,15.51604227000007],[-84.11619552999991,15.435146511000085],[-84.1438216119999,15.228303771000185],[-84.22107660799998,15.106622845000118],[-84.1235196369999,15.014356698000142],[-84.17884053299997,14.959812302000103],[-84.43830854899994,14.857878971000162],[-84.5698546399999,14.910904232000178],[-84.6498795199999,14.868295162000038],[-84.70918265799992,14.79514092900007],[-84.59369662899996,14.772665526000026],[-84.54756162799993,14.706927600000029],[-84.4173355179999,14.63795208100015],[-84.19252063699997,14.705960832000187],[-84.18370857499997,14.597656752000034],[-84.13954164499995,14.509987409000132],[-84.02463564299995,14.419068570000036],[-83.89112852099987,14.390631455],[-83.82697259599996,14.32291774700019],[-83.66105651099997,14.011438178000049],[-83.54293051699995,14.00690742400019],[-83.50888054399996,13.917375622000066],[-83.45771053399989,13.915898563000155],[-83.41541259999991,13.997090371000183],[-83.32263163799996,14.098370584000065],[-83.35754360499999,14.156483827000045],[-83.33113859899998,14.250810413000067],[-83.26123855499998,14.20388751300004],[-83.29141256899999,14.495603393000124],[-83.35438563999998,14.49322175900005],[-83.39160162499996,14.746177203000116],[-83.45713754699989,14.757885381000051],[-83.50232656599997,14.866084184000044],[-83.64833060199993,14.864544261000106],[-83.82424965099989,14.788068279000186],[-83.82632450699998,14.8458777620001],[-83.71302062199999,14.96095106700011],[-83.61043551499995,15.102592993000087],[-83.65659365,15.184943516000146],[-83.74927553899983,15.127038311000149],[-83.86325852599998,15.02060222200015],[-83.87602952899988,15.0896977700001],[-83.75870551499997,15.20002859400006],[-83.63229350699999,15.276936579000107],[-83.53533165099998,15.250386566000032],[-83.44834861799995,15.266432378000047]],[[-83.89398959999988,15.3113605530001],[-84.03470649899998,15.332835995000096],[-83.98261263599989,15.397504892000029],[-83.90390052999999,15.369674794000048],[-83.89398959999988,15.3113605530001]],[[-83.84889261399996,15.264487442000075],[-83.95290365099999,15.189957235000122],[-83.96231066099989,15.271616921000088],[-83.84889261399996,15.264487442000075]]],[[[-84.33712757799998,15.561020401000178],[-84.39169359999988,15.439361435000137],[-84.44905850699996,15.419368416000168],[-84.56829057699997,15.24780644800012],[-84.58280954199995,15.120872750999979],[-84.44265758299997,15.117693998000163],[-84.38800053399996,15.166257739000116],[-84.27388762699997,15.174348455000029],[-84.18253359999989,15.230922781000174],[-84.14800250599995,15.364521936000187],[-84.24954959799993,15.44482308300013],[-84.33712757799998,15.561020401000178]]],[[[-84.63319349699998,15.377318420000108],[-84.51242049899997,15.39272419000008],[-84.46918462999997,15.497759663000181],[-84.64995562699988,15.432453573000032],[-84.63319349699998,15.377318420000108]]],[[[-84.54619554499999,15.701680638000028],[-84.58997355499991,15.494312689000083],[-84.49256159099997,15.511024695000117],[-84.4112626619999,15.602143862000048],[-84.40074152899996,15.723758068000109],[-84.53447764399988,15.740273100000024],[-84.54619554499999,15.701680638000028]]],[[[-81.81719253999995,22.723652217000165],[-82.07291451599991,22.725872248000087],[-82.16458152399997,22.76802282700004],[-82.37238365599995,22.740424405000056],[-82.7353825919999,22.749697807000132],[-82.73931856599995,22.724539190000087],[-82.07762162499984,22.685896269000125],[-81.86815652299998,22.69465083199998],[-81.67316462099996,22.619836646000067],[-81.520057593,22.464895992000038],[-81.74614752899987,22.3914116790001],[-81.7302856149999,22.328204921000122],[-81.65583050999987,22.272943033000104],[-81.5280074929999,22.297868634000167],[-81.44436649199992,22.282158601000162],[-81.37796052899995,22.195430042000112],[-81.33059657399991,22.28308161600006],[-81.38283561199995,22.34456421700014],[-81.44409961299988,22.305745276000152],[-81.54817150199995,22.37086092900006],[-81.46073165599995,22.415381576000186],[-81.38527658999999,22.363674285000172],[-81.27716059999995,22.36829388800004],[-81.18540960499996,22.31946645200003],[-81.03160050799994,22.156118414000105],[-80.86289257899995,22.14163716700017],[-80.67723861999991,22.10358114700017],[-80.91010264199991,22.2684171410001],[-81.02645150499995,22.44016418100017],[-81.2180256019999,22.538786995],[-81.33339663199996,22.65263402700009],[-81.44839449999995,22.675358707999976],[-81.50393651099984,22.6418426620001],[-81.6975475779999,22.709932047000052],[-81.81719253999995,22.723652217000165]]],[[[-81.74187460199983,23.153413012000044],[-81.56573460699997,23.087544329000025],[-81.55568654899992,23.005902580000168],[-81.43873552999997,23.06578222600018],[-81.59963957299988,23.158854712],[-81.74187460199983,23.153413012000044]]],[[[-82.71080100699993,62.35822913500016],[-82.48824055199998,62.45064967000013],[-82.37216930699998,62.556671402],[-82.19135169899994,62.60362040200005],[-81.952288233,62.72625043200014],[-81.98196543699993,62.796975299],[-81.87957824599994,62.91227094400011],[-82.19491171999994,62.99128868400004],[-82.44381612799992,62.933104055],[-82.72776486199996,62.94634315800005],[-83.04615829499994,62.84543769900006],[-83.35032344599989,62.92773400400006],[-83.58169945699996,62.82441420200007],[-83.5928811839999,62.69068882700003],[-83.76046288299989,62.56046075500012],[-83.95765599599997,62.46828935800016],[-83.95486551899995,62.42203709800003],[-83.7345905659999,62.27306939300013],[-83.74172606699995,62.15910588900016],[-83.32003055999996,62.260774936000075],[-83.12117274299999,62.18044520200016],[-82.82458359599991,62.28063787800005],[-82.71080100699993,62.35822913500016]]],[[[-85.00651718399996,65.42975681000013],[-85.24706808499991,65.51938864700008],[-85.0189013079999,65.62409711300006],[-85.18834860999988,65.81615512700006],[-85.34628181499994,65.83757552100013],[-85.48981694599996,65.92605946100008],[-85.73986036799988,65.85893878600018],[-85.9897184059999,65.72049681100003],[-86.13543325299997,65.37817676600008],[-86.1098173929999,65.16260422500017],[-86.20311217699998,64.97096242100014],[-86.1238335249999,64.92276700300016],[-86.30200093299999,64.66743876700008],[-86.39310989499995,64.59123273],[-86.30226100499993,64.22852003500014],[-86.1946277699999,64.17409799800004],[-86.1780696699999,64.08636082099997],[-86.82760932699989,63.93970276900012],[-87.02547466299984,63.84218461200004],[-87.20542988499989,63.71468865200006],[-87.21082496699995,63.62013014200005],[-87.07620400599995,63.5522521260001],[-86.87074646599996,63.556566590000045],[-86.55082219099995,63.66247481000016],[-86.27898227799994,63.63620069800015],[-85.80906031099994,63.699122988],[-85.60515696999994,63.671417625000174],[-85.60029919099992,63.505663638000044],[-85.65956623799997,63.42001084200007],[-85.621616626,63.18608731600017],[-85.45701061699992,63.098816009000075],[-85.22043922699987,63.10892715700004],[-84.95239170799994,63.171716384000035],[-84.4672671209999,63.37240860500009],[-84.44391812399988,63.47812182700005],[-84.28390862599991,63.60938217400019],[-84.07366268199996,63.5926709310001],[-83.99165551999988,63.65771157200004],[-83.58156648799996,63.81533437800016],[-83.66111652199993,64.01124220400004],[-83.52723460999994,64.09919349500007],[-83.07403522699997,64.17763136600018],[-82.93636582399995,64.13016262300005],[-83.15407628999998,63.9838056160001],[-83.06923286099999,63.936170269],[-82.89148588799998,63.97366064000005],[-82.54916380699996,63.95514831400004],[-82.34376218599988,63.851359000000116],[-82.53941829199988,63.72168166400013],[-82.47653301199995,63.664006463000135],[-82.30196699099986,63.64649275200014],[-82.07530567199996,63.68011120900002],[-81.6832392959999,63.561558482000066],[-81.52036146099994,63.55839646300018],[-81.06841916999997,63.43690588600015],[-80.93219411799998,63.51254155100008],[-80.58490626099996,63.6235484820001],[-80.47059342699998,63.71283204500003],[-80.18795326099996,63.71893430500006],[-80.15220991199999,63.77654833000014],[-80.60715044299997,63.85396011400002],[-80.55080215299984,63.98191123300012],[-80.86290594299999,64.10901106100005],[-81.04840426999993,64.000714609],[-81.29933519899998,64.07570523700014],[-81.46681228999984,64.02717710300016],[-81.7077978499999,64.00029717100011],[-81.97573497699995,64.00022212900012],[-81.89348058999991,64.06808285400012],[-81.71943921499997,64.08371452500006],[-81.57735889599996,64.18091190100012],[-81.72654088599995,64.27143668500014],[-81.73098107599998,64.46645259500013],[-81.8158300799999,64.54567858200011],[-82.35294337999994,64.76607060900017],[-82.52555652499996,64.74587420300008],[-82.76114137399992,64.80193375100009],[-82.83131575699997,64.85642150900003],[-83.15289997599984,64.93755853600004],[-83.29232966199993,65.00561142900017],[-83.37900178899997,65.13398013800014],[-83.48374072899998,65.15805518300004],[-83.85515488899995,65.16572120900014],[-84.20776781599994,65.26091391200015],[-84.1477647769999,65.3292535380001],[-84.41075455899994,65.40883126000017],[-84.53507738599995,65.48107441600013],[-84.7046965049999,65.35880234900009],[-84.76984050099998,65.21782337200017],[-84.90452172499994,65.21910793600006],[-85.00651718399996,65.42975681000013]]],[[[-84.82010957199998,65.59611164800009],[-84.71239533799991,65.54453143400002],[-84.55313078899997,65.62382874200017],[-84.72293768899993,65.87741814100019],[-84.9316016539999,66.025774846],[-85.15242529799997,65.99585077000017],[-85.10803997799985,65.76229868100017],[-84.84526656999998,65.65832707100003],[-84.82010957199998,65.59611164800009]]],[[[-83.21287124199989,65.6581800130001],[-83.17264580299997,65.71057146600009],[-83.4488216439999,65.72783520600012],[-83.71064464999995,65.78734829000018],[-83.64425912799993,65.90850713100014],[-83.96359833399987,66.03490059100005],[-84.37520050699993,66.14451360300012],[-84.44337983799994,66.07719523000003],[-84.3705017069999,65.99888908700012],[-84.15320865199993,65.97231812300004],[-84.06628262699996,65.80594522500013],[-83.7978545499999,65.6462276470001],[-83.21287124199989,65.6581800130001]]],[[[-83.03163219799995,66.2061960050001],[-82.90703169299996,66.27671866100019],[-83.18105800799987,66.32223012200018],[-83.26836150999992,66.2637538530002],[-83.03163219799995,66.2061960050001]]],[[[-86.28672105299995,79.0126888150001],[-86.32405836999999,78.88857330900004],[-85.20211040399988,78.99234956300018],[-85.24144272699988,79.0545046040001],[-85.8098616449999,79.06883484900015],[-86.28672105299995,79.0126888150001]]],[[[-73.36074858899997,-52.42306812999993],[-73.27072158399983,-52.382441212999936],[-73.10660559699988,-52.379686248999974],[-72.93240349699988,-52.29586470299989],[-72.97522764599995,-52.245078583999884],[-73.20076756199995,-52.24491463399983],[-73.4055406409999,-52.26847817499993],[-73.47708152599995,-52.39475154699994],[-73.36074858899997,-52.42306812999993]]],[[[-72.04255651499989,-52.34390759199994],[-72.04232752099995,-52.282219299999895],[-72.15007755699997,-52.18652964899991],[-72.24706254699993,-52.20136192899997],[-72.36286155699997,-52.278492201999825],[-72.34187360699997,-52.372702111999956],[-72.04255651499989,-52.34390759199994]]],[[[-73.19762451599996,-51.46439482699992],[-73.14064064999991,-51.365049995999925],[-73.39566759799993,-51.38075634099988],[-73.32468461199994,-51.47054781399993],[-73.19762451599996,-51.46439482699992]]],[[[-72.77870956699996,-46.31084217199998],[-72.56066156399999,-46.29115794299997],[-72.6343155269999,-46.21269779699992],[-72.79666863299997,-46.18930172599988],[-72.88278162399996,-46.1132553999999],[-72.79226662499991,-46.02506721799995],[-72.61136654699993,-46.06722332899989],[-72.5423206189999,-46.003826971999956],[-72.56677264199988,-45.94226071999998],[-72.82234156399983,-45.89431371899997],[-72.96504262799988,-45.78202052399996],[-73.11077156999988,-45.796833693999986],[-73.06642157899995,-45.90989668299994],[-73.08593749999983,-46.04274012499991],[-73.16848751099997,-46.09384224199994],[-73.24351459699989,-46.21683258999991],[-73.40476950599998,-46.31473288399985],[-73.46653759499992,-46.436487402999944],[-73.2362055779999,-46.386907272999906],[-73.19580849199991,-46.413274392999824],[-73.24156161399986,-46.78842910099985],[-73.23768649199997,-46.971325916999945],[-73.28364564099996,-47.2558154219999],[-73.3785475599999,-47.40449831499984],[-73.53981051599993,-47.391093303999924],[-73.63288149299996,-47.44269179799994],[-73.57906363899997,-47.58460663899996],[-73.62141454599993,-47.70433156399997],[-73.5270006209999,-47.72259656999984],[-73.26503764799992,-47.58205870799998],[-73.32550050699996,-47.51844827699989],[-73.18083958699992,-47.383296289999976],[-72.97752361699997,-47.30031863399984],[-72.90600553099995,-47.242060383999956],[-72.90387753299996,-47.14770278499992],[-73.04780553999996,-47.11407274499993],[-73.11330458099997,-47.03656830399984],[-73.05575560699992,-46.759085734999985],[-73.12194062399988,-46.62878318199995],[-73.00091549699988,-46.38797546199993],[-72.90731863999997,-46.326653961999966],[-72.77870956699996,-46.31084217199998]]],[[[-48.98027058999992,-8.75820399099996],[-48.96565255099995,-8.630827225999951],[-49.160156625999946,-8.578696984999965],[-49.25282258899995,-8.533067244999927],[-49.36532549899994,-8.417486331999953],[-49.41493261999989,-8.537247802999957],[-49.51510658899997,-8.637852768999949],[-49.59628649499996,-8.752174552999975],[-49.588905557999965,-8.81740285799998],[-49.78554550999985,-8.91309183899989],[-49.830543589999934,-9.023413944999902],[-49.92175260999994,-9.12315808999989],[-49.950908556999934,-9.195253018999892],[-50.052982535999945,-9.279822901999978],[-50.179904498999974,-9.276593186999946],[-50.276515488999905,-9.351771649999932],[-50.3383335339999,-9.538615670999945],[-50.246383552999816,-9.612995170999966],[-50.207740464999915,-9.699888181999881],[-50.29098550399988,-9.828095258999895],[-50.31113861599982,-9.929841001999876],[-50.43798061599995,-10.088703715999827],[-50.47497950999997,-10.174847719999946],[-50.42108554899988,-10.267882151999913],[-50.348365497999964,-10.319006731999934],[-50.39968856199988,-10.381913082999915],[-50.465183579999916,-10.378068471999882],[-50.622554482999874,-10.308996224999873],[-50.7159535269999,-10.335069475999887],[-50.75292258199994,-10.383863216999885],[-50.87806355799995,-10.272453976999884],[-51.037074463999886,-10.261853551999877],[-51.20149655899991,-10.143171],[-51.26295853999994,-10.237987423999812],[-51.36004662799991,-10.281843384999888],[-51.34825848699995,-10.36643941899996],[-51.21347061099988,-10.440179212999965],[-51.13909949199996,-10.511522283999966],[-51.023940524999944,-10.526499236999882],[-51.03429452199998,-10.597765026999923],[-50.95880861099994,-10.782882376999964],[-50.98865153899993,-10.840487341999903],[-51.07324254399998,-10.83477255999992],[-51.163455626999905,-10.75437015999995],[-51.23631649399994,-10.956627159999869],[-51.39180347999991,-10.890577762999897],[-51.5935825439999,-10.931557054999928],[-51.61884358799995,-10.86428356499988],[-51.78416858199989,-10.855135387999951],[-51.807022511999946,-10.997164390999842],[-51.78158561499998,-11.073148186999958],[-51.59295658299993,-11.16895551999994],[-51.560363552999945,-11.203506059999881],[-51.52911347099996,-11.348470068999916],[-51.39852157499996,-11.418733048999968],[-51.30048348299988,-11.386583253999959],[-51.2065126249999,-11.44812804799983],[-51.29425857899997,-11.670034743999963],[-51.18434148499989,-11.66657318599988],[-51.13293460299997,-11.771185036999952],[-51.03598749899993,-11.730888702999948],[-51.019569529999956,-11.813647926999977],[-51.08376350899994,-11.932104],[-51.01827955499982,-11.952739574999896],[-50.99716956399993,-12.023987763999969],[-51.06026450799993,-12.079239927999936],[-51.13659246499992,-12.248725362999949],[-51.05091449499997,-12.276202415999933],[-51.03805548199995,-12.389765803999921],[-51.09720657299994,-12.42253954899985],[-51.321041608999906,-12.430009835999954],[-51.39538959299989,-12.468903207999972],[-51.564479569999946,-12.619723149999857],[-51.723941589999924,-12.74142285299996],[-51.797443504999876,-12.85850010299987],[-51.854328464999924,-12.894533568999975],[-52.07658753599998,-12.932486994999977],[-52.23125058099998,-13.0273275589999],[-52.32921256499998,-13.170231128999944],[-52.41961256499991,-13.242673235999916],[-52.66390950299996,-13.314090570999895],[-52.83516653699991,-13.327214619999893],[-52.90360662099994,-13.284971503999941],[-53.0204086089999,-13.29905645499997],[-53.216083468999955,-13.490994493999892],[-53.33506357899995,-13.46466827699993],[-53.34658048099993,-13.37044881199995],[-53.46522849999997,-13.412016010999878],[-53.546173544999874,-13.616357422999954],[-53.61552054999987,-13.585461391999957],[-53.58792849899993,-13.374121426999977],[-53.68284651099998,-13.362136310999972],[-53.83326361999991,-13.41565358899993],[-53.87254758799992,-13.464760477999903],[-54.04552458899991,-13.45751583099991],[-54.14356251399994,-13.405092390999869],[-54.29131652399985,-13.41567068799992],[-54.51798263199987,-13.309935829999858],[-54.63105349999995,-13.340500774999896],[-54.76481258099989,-13.336764960999972],[-54.85954652799995,-13.255233349999912],[-55.02124048099995,-13.198794977999967],[-55.228507511999965,-12.922904634999952],[-55.296153493999896,-12.814391845999978],[-55.450500541999986,-12.660895226999912],[-55.48361257999983,-12.477066678999961],[-55.575595584999974,-12.475894049999908],[-55.62566354299997,-12.432738815999869],[-55.634338476999915,-12.3073353179999],[-55.7506445919999,-12.335185532999958],[-55.92821856399996,-12.265799132999916],[-55.89627060499993,-12.177948069999957],[-55.927741633999915,-12.105764963999945],[-56.0208355769999,-12.098719470999981],[-56.08892462599988,-12.04285224299997],[-56.168502581999974,-12.065806754999926],[-56.206016627999986,-12.2025725929999],[-56.27977352099998,-12.196753875999946],[-56.38959153999991,-11.990871031999916],[-56.46086453899994,-11.924103472999946],[-56.58099347199993,-11.715877886999976],[-56.708583472999976,-11.812139183999932],[-56.662189471999966,-11.997260388999962],[-56.425952570999925,-12.06897461099993],[-56.3664776039999,-12.256409724999912],[-56.31846656499994,-12.25532778899992],[-56.31629162899998,-12.416248929999938],[-56.45137756599996,-12.614855443999886],[-56.39872362299997,-12.687365611999951],[-56.41896860199995,-12.859720004999929],[-56.29589862599994,-12.987531455999886],[-56.21491653299995,-13.03363108499991],[-56.23268549699998,-13.153147300999933],[-56.32322647999996,-13.18632002399994],[-56.433891574999905,-13.27112627699995],[-56.55660649299989,-13.431678446999967],[-56.766979521999986,-13.370060561999821],[-56.85952763599994,-13.27663184599993],[-56.90189748599994,-13.286794400999952],[-56.93311353699994,-13.43600417999994],[-57.03055953199993,-13.393042063999928],[-57.04774461299996,-13.296469463999927],[-57.19239463599996,-13.300320445999887],[-57.340454585999964,-13.080129021999937],[-57.40015049999994,-13.043029544999968],[-57.50579852299995,-13.032040199999926],[-57.57578657599993,-12.956954272999894],[-57.53776156899994,-12.886013028999912],[-57.42506755199997,-12.886706044999869],[-57.4187206069999,-12.80406383299993],[-57.56172157499998,-12.776783419999958],[-57.62114759199994,-12.712105804999965],[-57.51952355399993,-12.588739277999878],[-57.60475158399987,-12.528511447999904],[-57.670379538999896,-12.525796381999953],[-57.687419611999985,-12.440729283999929],[-57.77775959699994,-12.279417210999952],[-57.7957835389999,-12.170245603999888],[-57.87285949699998,-12.142179638999949],[-58.04558152099992,-12.229313713999943],[-58.121166505999895,-12.311355111999887],[-58.181541521999975,-12.097448774999918],[-58.110431634999884,-11.978657760999965],[-58.12291748599995,-11.9269253249999],[-58.32653453299997,-11.939098529999853],[-58.355323520999946,-11.883796241999903],[-58.36227463299991,-11.731162622999875],[-58.41937249299991,-11.710047267999926],[-58.62985247599994,-11.721999358999938],[-58.77083960699997,-11.549857027999906],[-58.84561154799991,-11.551449924999929],[-58.914001507999956,-11.617280553999933],[-59.04410557699998,-11.657235745999856],[-59.13587953799993,-11.715865816999951],[-59.23272354399995,-11.701059855999972],[-59.30319255099994,-11.628093711999952],[-59.2806965289999,-11.495437856999956],[-59.50323857299992,-11.550193980999893],[-59.626243504999934,-11.483454584999947],[-59.77376148099995,-11.512549847999878],[-59.82239562999996,-11.570315744999903],[-59.970809630999895,-11.574091624999937],[-60.105480495999984,-11.67981726399995],[-60.10874960599995,-11.744989745999874],[-60.05218550599989,-11.877380732999882],[-59.95810350399995,-12.005738012999814],[-59.98043456999994,-12.093547836999846],[-60.06351850899995,-12.092349056999865],[-60.1575245709999,-12.039478693999968],[-60.17779955699996,-12.14099862899991],[-60.25897560699991,-12.09172108499996],[-60.378391575999956,-12.093302079999944],[-60.43960159699992,-12.18610248799996],[-60.580478590999974,-12.276403580999897],[-60.579849612999965,-12.375875649999955],[-60.666744634999986,-12.45212045799991],[-60.83738761099994,-12.489092027999959],[-60.86902963099993,-12.674766269999907],[-60.75990663899984,-12.736197406999963],[-60.62710560899984,-12.724873957999932],[-60.58851247699988,-12.796439317999955],[-60.71028560499997,-12.843398930999967],[-60.78772751699995,-12.902539124999919],[-60.64318461399989,-12.974339177999923],[-60.47607461099989,-12.965915700999915],[-60.36029051999992,-12.999988472999974],[-60.28255859399991,-12.925777448999952],[-60.14543551999998,-12.94981791999993],[-60.09952548899986,-13.154382961999943],[-60.008975620999934,-13.15702007599998],[-60.06238158799994,-13.045067520999908],[-60.06553251299994,-12.952261747999955],[-60.010536498999954,-12.895884563999914],[-59.97651653399987,-12.753261116999965],[-60.00241057899996,-12.608559796999884],[-59.98761350299992,-12.487388991999921],[-59.90930557199994,-12.508029596999961],[-59.88420462199991,-12.708855973999903],[-59.844055473999845,-12.771315903999948],[-59.75547049199997,-12.817313776999981],[-59.734432584999865,-12.902407025999935],[-59.64596561999997,-12.959852231999946],[-59.715618564999886,-13.131838658999982],[-59.63134355799997,-13.313005449999821],[-59.60247058399983,-13.500231853999935],[-59.55587759599996,-13.60981182699993],[-59.39546154699997,-13.680983069999911],[-59.40335847399996,-13.734742249999897],[-59.50918150999996,-13.789313635999918],[-59.67137955099997,-13.824588540999855],[-59.78940948799993,-13.827253314999894],[-59.69769252399993,-13.985722917999965],[-59.60593448899982,-14.076591632999964],[-59.51858147899992,-14.2934515849999],[-59.448398629999986,-14.410342924999952],[-59.24053547799997,-14.65320806699998],[-59.10660557299991,-14.871982612999943],[-58.978031536999936,-14.989744161999965],[-58.95725648699994,-14.949906819999853],[-58.84242256899995,-15.04218872399997],[-58.75608058499995,-15.059468519999939],[-58.725242556999945,-14.977287814999954],[-58.638725557999976,-14.980752726999981],[-58.53108951599995,-15.09003849499993],[-58.43886561499994,-15.023498923999966],[-58.296523631999946,-15.022938844999828],[-58.20703558399987,-14.978061799999978],[-58.1695974779999,-14.919931457999894],[-58.075366613999904,-14.86814990399995],[-58.02215560999991,-14.769960433999927],[-58.00807954499993,-14.671349689999886],[-57.9349095529999,-14.579064768999956],[-57.951873518999946,-14.500804949999974],[-57.65356460299995,-14.348455980999972],[-57.56121849299984,-14.334277655999927],[-57.4341205099999,-14.255974083999888],[-57.18178549399994,-14.163459162999914],[-57.052894621999826,-14.143540408999968],[-57.015483505999896,-14.213867593999964],[-56.931808474999855,-14.256854016999966],[-56.79328947799996,-14.20581023799997],[-56.71083854099987,-14.267119333999858],[-56.66858653999998,-14.615682453999966],[-56.77359351399997,-14.784191564999958],[-56.747848498999986,-14.848701373999972],[-56.87201650399999,-15.013588664999872],[-56.98620954099982,-15.068092157999956],[-57.18936156099983,-15.109267418999934],[-57.17709347199997,-15.21738139699994],[-57.1276476189999,-15.275195573999895],[-57.17740259699997,-15.419647281999914],[-57.26838262399991,-15.503995882999902],[-57.43284947799998,-15.8151649859999],[-57.66466157199983,-16.010562738999965],[-57.7226985399999,-16.196041012999842],[-57.78059351899992,-16.14718507899994],[-57.72384652499994,-16.083467023999845],[-57.73048348399993,-15.926042141999858],[-57.76729160599996,-15.805060601999912],[-57.81570447299998,-15.549583041999881],[-57.885745499999985,-15.539661718999866],[-57.98447761399996,-15.74758438299989],[-58.06566958999997,-15.670868342999938],[-58.25184255599993,-15.714552475999938],[-58.336688538999965,-15.563108248999981],[-58.47273252699989,-15.511989535999874],[-58.512424526999894,-15.544740481999952],[-58.63256050099994,-15.466212441999915],[-58.74015463299992,-15.50713859299998],[-58.8988795489999,-15.47037908599998],[-58.97090960199995,-15.514010412999937],[-59.022426621999955,-15.680651700999931],[-59.21155957399998,-15.60990927599994],[-59.241405519999944,-15.54864208999993],[-59.3633955709999,-15.456005127999845],[-59.337749628999916,-15.350976695999975],[-59.343913512999904,-15.161721871999873],[-59.47522356999991,-15.004767213999969],[-59.518657586999836,-14.91348392999987],[-59.673496483999884,-14.887877550999974],[-59.78031562599989,-14.832120292999946],[-59.84860651199989,-14.931681879999928],[-59.83066555099998,-14.984707475999869],[-59.62295159599995,-15.040023678999887],[-59.50683256499991,-15.113107168999932],[-59.42300749899982,-15.137466655999901],[-59.43218249699993,-15.251935121999907],[-59.64987561099986,-15.27215596099984],[-59.783519524999974,-15.304056645999822],[-59.867118614999924,-15.208542009999917],[-59.94290158099989,-15.372015272999931],[-60.028049479999936,-15.40926310999987],[-60.05122762199994,-15.468817034999972],[-60.18867457299996,-15.452573073999929],[-60.35352749799989,-15.270628777999946],[-60.375041496999984,-15.146559846999935],[-60.55908948299992,-15.071199663999948],[-60.68803751899998,-15.167226434999975],[-60.64177360499997,-15.302049850999936],[-60.527141522999955,-15.376748198999962],[-60.44492360299995,-15.514836197999955],[-60.57308156099998,-15.704819241999814],[-60.65716948499988,-15.707683002999886],[-60.778877568999974,-15.657547989999955],[-60.885677599999894,-15.645677873999944],[-61.05463061599994,-15.717386396999927],[-60.974204578999945,-15.855829285999903],[-60.87751060799991,-15.85946434999994],[-60.82935355699993,-15.78010231099995],[-60.65703151799994,-15.894221922999975],[-60.650176629999976,-15.978476813999919],[-60.483821500999966,-16.12509943499998],[-60.47246150699988,-16.17236431599997],[-60.32995255699984,-16.213064658999826],[-60.233970545999966,-16.295807453999828],[-60.155124496999974,-16.2470286329999],[-59.95521962599997,-16.34200263699995],[-59.82599247199994,-16.25332226899991],[-59.267223624999986,-16.279495767999947],[-59.248527622999916,-16.362787242999957],[-59.32466162299994,-16.454390715999978],[-59.58874555199992,-16.393606326999816],[-59.70984661899996,-16.397356054999932],[-59.861728548999906,-16.429941206999956],[-60.100761483999975,-16.42361152899997],[-60.09617960099996,-16.48265499599995],[-59.97108455699993,-16.566281578999963],[-59.74770348499993,-16.685312315999965],[-59.68478355499997,-16.768922805999978],[-59.62183747399996,-16.70157521999988],[-59.52775949499994,-16.761528290999934],[-59.37703359799997,-16.711675412999966],[-59.32067150199987,-16.61914624299982],[-59.24293555199995,-16.642223800999943],[-59.23108655899995,-16.718505154999832],[-59.31443050399997,-16.726200580999887],[-59.33733355199996,-16.82615527899992],[-59.44631153599994,-16.80945953399987],[-59.58020757799994,-16.845406163999883],[-59.562126471999875,-16.94755977099993],[-59.45431558299998,-16.945953797999948],[-59.43718347599997,-17.076783906999935],[-59.56225152999991,-17.23393620999991],[-59.539318474999845,-17.298410144999934],[-59.42644860499996,-17.30126904399998],[-59.431152528999974,-17.37280171499998],[-59.334361495999985,-17.397506200999885],[-59.29119855099992,-17.24735328999992],[-59.15094349399993,-17.266645245999825],[-59.078304579999894,-17.196830362999947],[-58.82234556399993,-17.131220512999903],[-58.78025047299997,-17.140670772999954],[-58.61186256399998,-17.02440002999998],[-58.54930858899991,-17.02821295799987],[-58.540264514999876,-17.11936330499998],[-58.62680850399988,-17.135368045999883],[-58.65957654799996,-17.200483028999827],[-58.744529483999884,-17.249642052999945],[-58.777797592999946,-17.36312430399994],[-58.90908451599989,-17.496815995999896],[-58.88892352399995,-17.583415807999927],[-58.898345621999965,-17.723372132999884],[-58.76161549099987,-17.678431720999868],[-58.736644627999965,-17.637535408999952],[-58.58808863699994,-17.663694825999983],[-58.41897552599994,-17.62687295799998],[-58.16377658099998,-17.474907376999965],[-58.09371560499994,-17.469353695999814],[-57.97864548599995,-17.561325971999963],[-57.91242560099994,-17.501901630999953],[-57.782424628999934,-17.500599586999954],[-57.60902048699995,-17.368525770999952],[-57.58199354299995,-17.47021753499996],[-57.616805598999974,-17.567098588999954],[-57.548820484999965,-17.613286898999945],[-57.43357451299994,-17.463253848999955],[-57.38536063199996,-17.49755779399993],[-57.38665060699992,-17.579123769999967],[-57.43389553999987,-17.804887314999917],[-57.440299480999954,-17.995200773999954],[-57.40825647099996,-18.200903238999956],[-57.408527541999945,-18.449135312999886],[-57.49962659199997,-18.63107240099987],[-57.76041056599996,-18.818465268999887],[-57.78434358199996,-18.890488113999936],[-57.62758656999989,-19.009069076999936],[-57.515388592999955,-19.050646501999893],[-57.411819617999925,-19.0578732109999],[-57.478168584999935,-19.165349996999964],[-57.389816619999976,-19.38057715499997],[-57.47743952699989,-19.42655776099997],[-57.52492552299998,-19.40756688299996],[-57.550853598999936,-19.27278470599998],[-57.59938850699996,-19.198229017999893],[-57.80059860699993,-19.233152049999944],[-57.94363058799985,-19.222503680999864],[-58.05924251399995,-19.241061549999927],[-58.1061176369999,-19.15657833599994],[-58.286998604999894,-19.134736604999887],[-58.37855161899995,-19.155947345999948],[-58.51228756599994,-18.99118729299994],[-58.715171532999875,-18.873772921999887],[-58.825687596999956,-18.75587005499989],[-58.98548153999985,-18.629935646999968],[-59.068511499999886,-18.62864952799987],[-59.34162860599997,-18.55755187799997],[-59.612068532999956,-18.442223595999906],[-59.69711249699998,-18.315203396999948],[-59.807437620999906,-18.239443732999973],[-59.93813663699996,-18.187973985999975],[-60.0585094839999,-18.03730592299985],[-60.08833363699995,-17.88201339699998],[-60.25899153199998,-17.81693646799988],[-60.26718148999993,-17.754801252999926],[-60.36441056099994,-17.71351585299982],[-60.34488257099997,-17.660905999999898],[-60.439437478999935,-17.576425132999873],[-60.523860510999896,-17.584126760999936],[-60.72111552699994,-17.676025108999966],[-60.72964059299994,-17.77659101599994],[-60.653064530999984,-17.86013193599996],[-60.488376561999985,-17.955293023999843],[-60.47541461999998,-18.039168046999976],[-60.51790248699996,-18.100884167999936],[-60.64357755799989,-18.048003410999968],[-60.787860621999926,-18.09125570799995],[-60.87919654399997,-18.08103347399998],[-61.01816950499983,-18.02856762199997],[-61.19248157499999,-18.02845446599997],[-61.49211852099995,-17.97338904999998],[-61.70456355699997,-17.966223360999948],[-61.72890057999996,-17.90935365699994],[-61.819499565999934,-17.903269232999946],[-61.862350536999884,-17.963948511999945],[-62.07936857199985,-17.97788057699995],[-62.420566513999916,-18.030123637999964],[-62.559856477999915,-18.065752258999908],[-62.97133248699993,-18.19958912399983],[-63.13089358099995,-18.129776419999928],[-63.17984758399996,-18.029124514999978],[-63.21347862899995,-17.846489717999816],[-63.28097960399998,-17.688063365999938],[-63.42206949799993,-17.58807832499997],[-63.37832652499986,-17.729472649999877],[-63.435745578999956,-17.90526496399997],[-63.55698058899998,-17.9591077959999],[-63.65917157899992,-17.933047284999873],[-63.664150596999946,-18.022544050999954],[-63.62716662299994,-18.171580994999943],[-63.679222599999946,-18.263053541999966],[-63.64850661299994,-18.299509121999904],[-63.534374595999964,-18.186634892999848],[-63.50756859899991,-18.310162687999934],[-63.62406163099996,-18.379177602999903],[-63.659271490999856,-18.46019657599993],[-63.72729851499997,-18.516867293999894],[-63.70167151599992,-18.77616096599985],[-63.748493497999846,-18.833059503999948],[-63.748405487999946,-18.931169680999915],[-63.9057195609999,-18.954455445999884],[-63.964939550999986,-19.05080475199992],[-63.9070775969999,-19.128567020999867],[-63.86193048699994,-19.019858430999932],[-63.6906855229999,-19.056605364999882],[-63.741104514999904,-19.269667811999852],[-63.835586500999966,-19.27845841599992],[-63.831798550999906,-19.40003523999991],[-63.67979055799992,-19.551573343999905],[-63.60765053499995,-19.84378241399986],[-63.632595580999975,-19.969313316999887],[-63.72079449299997,-20.01607159599996],[-63.72336153499998,-19.847849145999874],[-63.77635159099992,-19.813587110999947],[-63.853374575999965,-19.867885079999894],[-63.796161548999976,-19.961199634999844],[-63.749519609999936,-20.10016773399991],[-63.89677053899993,-20.201818090999893],[-63.869537567999885,-20.26316239099998],[-63.63803459799988,-20.194228444999965],[-63.533863634999875,-20.259656743999983],[-63.52843853199988,-20.34564467699994],[-63.61947656199993,-20.479124305999846],[-63.617725581999935,-20.547514432999947],[-63.48537851599991,-20.723682423999946],[-63.499671504999924,-20.819792007999922],[-63.460361552999984,-20.849638623999965],[-63.48601554099997,-20.976899215999936],[-63.59438349099986,-21.014090223999972],[-63.68046161299998,-20.81833120999994],[-63.731689625999934,-20.854183124999906],[-63.81349951599992,-20.805910067999946],[-63.84368559899997,-20.885176552999894],[-63.92466350099994,-20.93914963899988],[-64.0768205249999,-20.911627994999947],[-63.903118488999894,-21.170484801999976],[-63.81176362299993,-21.1848557429999],[-63.79327062999994,-21.29875457599985],[-63.874557488999926,-21.599723237999967],[-63.78149455899984,-21.594396537999955],[-63.621871606999946,-21.927437211999973],[-63.621871606999946,-22.11794697499994],[-63.6467365229999,-22.215839892999895],[-63.934554481999896,-23.083838102999948],[-64.02623758299995,-23.18315024499998],[-64.06254563999983,-23.26857256699998],[-64.21223452899994,-23.312240605999932],[-64.2840495019999,-23.37049248599982],[-64.31422452099997,-23.445023530999833],[-64.49456753799996,-23.670697221999887],[-64.54908762799988,-23.67600698999985],[-64.68161054599994,-23.808855125999912],[-64.71036550299982,-23.7959317399999],[-64.85237153899993,-23.919151751999948],[-64.87663262299992,-23.974388996999835],[-64.98922756599995,-24.069737000999964],[-65.08671563799999,-24.10985228699991],[-65.25880449299996,-24.120362690999855],[-65.26485454999994,-24.20179153899994],[-65.11876652699988,-24.379369701999963],[-65.0609055789999,-24.604049801999963],[-65.09424560499997,-24.701209973999937],[-65.03039561899988,-24.825285944999962],[-65.16532162899995,-25.043941635999943],[-65.25550051399995,-25.122219894999944],[-65.32142652899995,-25.08782743699993],[-65.32137254999992,-24.858012582999947],[-65.38733661899994,-24.78288809999998],[-65.34719048799997,-24.68815666799992],[-65.34637459399994,-24.592393423999965],[-65.40660862599998,-24.59025151299994],[-65.52405551799995,-24.68881984399991],[-65.59967051099994,-24.803959197999973],[-65.54184761699997,-25.1928033989999],[-65.69652558199988,-25.414634991999947],[-65.76129958799999,-25.31301581599996],[-65.71413461899982,-25.20999551999995],[-65.77085847799992,-25.131094318999942],[-65.80001861699992,-24.987502258999882],[-65.88148451299998,-24.945693157999983],[-65.88686351599995,-24.805647145999956],[-65.78341658099993,-24.716954204999922],[-65.59510757099997,-24.593268494999904],[-65.51974453799994,-24.443419679999977],[-65.43379247899998,-24.366511526999943],[-65.42987058699998,-24.073210126999925],[-65.46398962699993,-24.019467710999947],[-65.37863955699987,-23.881475432999935],[-65.20754261699994,-23.758587678999845],[-65.12731958899997,-23.49957882399997],[-65.03149448699992,-23.467885674999877],[-64.97023048599993,-23.50340885099996],[-64.87575553999989,-23.470434276999924],[-64.82976554599998,-23.387499702999946],[-64.84402450499994,-23.23916432399983],[-64.82949849899984,-23.1217434159999],[-64.87552654699988,-23.034686957999952],[-65.02028654099985,-22.87044021199995],[-65.0332716179999,-22.677763391999974],[-64.85305751399994,-22.473053343999936],[-64.84362049699996,-22.368829742999935],[-64.95535260799994,-22.229511111999955],[-64.8776096169999,-22.116747188999966],[-64.78312662499985,-22.108873732999825],[-64.58353456799995,-22.217735878999918],[-64.52910651199988,-22.172377042999983],[-64.42930553699989,-21.981868452999947],[-64.35672764299994,-22.06351606899989],[-64.25240362699998,-22.07162975199998],[-64.22356451499991,-21.859702046999928],[-64.16642759599995,-21.704623258999902],[-64.19953158699997,-21.54035824099998],[-64.26162757599997,-21.478513708999913],[-64.35305754299992,-21.44515054999988],[-64.46226452199994,-21.454381874999967],[-64.51926448099994,-21.40563473799989],[-64.63507053199993,-21.385535939999954],[-64.73207848799984,-21.235783180999874],[-64.82415050899994,-21.218316132999973],[-64.94988257799997,-21.15128873499998],[-65.06060751899992,-21.14118015999992],[-65.08125248099998,-21.18447403099998],[-65.08474756699997,-21.43668415699989],[-65.04139753799996,-21.563580973999876],[-65.10095263599999,-21.73871162099988],[-65.1150965949999,-21.865230749999967],[-65.07163961199996,-21.936853944999882],[-65.13101952899984,-21.99624559699987],[-65.23674751399994,-21.902162588999943],[-65.31845061899992,-21.874281193999877],[-65.35018148599988,-21.927998463999927],[-65.58253454799996,-22.041744075999873],[-65.44074258599994,-21.8511033879999],[-65.50299850099992,-21.754019825999933],[-65.54311361899994,-21.627795404999915],[-65.64390550199994,-21.51364779799991],[-65.72454863099995,-21.560031405999894],[-65.72454863099995,-21.636379982999927],[-65.80744950899998,-21.66066788799992],[-65.81404858099984,-21.556024352999827],[-65.74880954699995,-21.520090295999978],[-65.73446660199988,-21.43640587799996],[-65.86266361999998,-21.224987624999983],[-65.72771464299996,-21.26432842299988],[-65.62208556399997,-21.415417088999902],[-65.44680052299998,-21.55265281699991],[-65.40374754799996,-21.69129804499994],[-65.31205757299995,-21.70427440399982],[-65.32138864299992,-21.551626703999943],[-65.41040059899996,-21.34379422899991],[-65.47344256999997,-21.233240111999976],[-65.4088135699999,-20.98795360599985],[-65.42849763099991,-20.928639905999944],[-65.39516447899996,-20.832418506999886],[-65.53939054599982,-20.805563894999977],[-65.66989862199989,-20.869491329999903],[-65.71965058199993,-20.989984540999842],[-65.82131150099991,-20.920061698999973],[-65.88735955699997,-20.78085018899992],[-66.02425363799995,-20.86381376399987],[-66.08174159099991,-20.86550657299989],[-66.01205461599994,-20.705523365999966],[-65.92093662299993,-20.670481478999875],[-65.99931361999995,-20.584541489999935],[-66.04383057799998,-20.440033455999924],[-65.98674763799994,-20.427631256999973],[-65.9080965529999,-20.4952613129999],[-65.85681154299994,-20.472872578999954],[-65.87961551599994,-20.206297714999835],[-65.78606459199989,-20.230662398999982],[-65.66818251099994,-20.312244803999874],[-65.62843351499998,-20.436051548999956],[-65.52909857399993,-20.159486294999965],[-65.45083657699996,-20.14386041599994],[-65.41596953599992,-20.22278173399991],[-65.4167326239999,-20.367194549999965],[-65.46432456799994,-20.487672840999892],[-65.46074650099985,-20.561582451999982],[-65.36866760599997,-20.579739664999977],[-65.28348550899995,-20.506382757999972],[-65.27633658399998,-20.420322739999847],[-65.1776425239999,-20.315456581999968],[-65.08438161399994,-20.35640720799995],[-64.98269655499996,-20.35412917399998],[-64.96450061699994,-20.402049687999977],[-65.00765953899992,-20.549797159999912],[-65.06935856099994,-20.64962663299997],[-65.0088884939999,-20.671754521999958],[-64.99725357399996,-20.77844340899992],[-64.83736457999998,-20.84977642299998],[-64.85160861799994,-20.678576049999947],[-64.80529759799992,-20.63541142799994],[-64.90662357499997,-20.561688733999915],[-64.89035748599997,-20.426521157999957],[-64.92011257199988,-20.287458174999927],[-65.0521086039999,-20.186261781999917],[-65.12181854599999,-20.032563660999926],[-65.10387456799998,-19.87320574399996],[-65.04026061599996,-19.798585180999964],[-64.93597448599996,-19.735833559999833],[-64.85752858899991,-19.758556228999907],[-64.93793450999993,-19.545494787999928],[-65.01131455199993,-19.454343937999965],[-65.09917449899984,-19.49282072899996],[-65.09801461099988,-19.587127365999947],[-65.14949056099994,-19.723174370999914],[-65.41561850199992,-19.834475986999962],[-65.40959962499994,-19.737713620999955],[-65.44194052799992,-19.659467045999918],[-65.41716747699991,-19.50007325399997],[-65.45449058399993,-19.434291239999936],[-65.43542460399993,-19.36164025599993],[-65.46083853399989,-19.22773918499996],[-65.60102854699994,-19.065093717999957],[-65.4643636269999,-19.01149496799991],[-65.35840647999999,-19.077248985999972],[-65.32614855799994,-18.9810366399999],[-65.22884354699994,-18.96461481499989],[-65.1639936009999,-19.000192641999945],[-65.10364557399993,-19.149797710999962],[-65.04514357799997,-19.21062736199997],[-64.76119956699995,-19.332954197999925],[-64.8549196379999,-19.2379235329999],[-64.97233551699992,-19.180869090999977],[-65.05284855799994,-19.100120852999964],[-65.14334863799996,-18.956551256999944],[-65.22087051299991,-18.90100857599998],[-65.21814756799995,-18.790787889999933],[-65.27417757399996,-18.79696367599996],[-65.30826559999991,-18.88524338899998],[-65.41275054999994,-18.98254152699991],[-65.53246357299997,-18.972480392999955],[-65.62728854699986,-18.904247342999838],[-65.65930959599996,-18.818055393999828],[-65.76014757999997,-18.69492456599994],[-65.79542550099995,-18.5272217939999],[-65.85231750199995,-18.501618096999948],[-65.98629752999989,-18.514437379999947],[-66.13443761099984,-18.495892586999958],[-66.07507361899991,-18.435115071999974],[-65.92126452299988,-18.43531724299993],[-65.90814952599999,-18.396209629999873],[-66.08184854399997,-18.36813125999987],[-66.2010345139999,-18.24026499199988],[-66.2661585489999,-18.299346344999947],[-66.38447548199997,-18.202568219999932],[-66.49393458799995,-18.15652374399997],[-66.47713457199995,-18.060049714999877],[-66.52676348599988,-17.97429479799996],[-66.51985947999992,-17.914148607999948],[-66.64627852799998,-17.85230424399998],[-66.64434063199997,-17.72758085399994],[-66.42715462499996,-17.680453770999918],[-66.43650061399984,-17.602777500999935],[-66.61679048999997,-17.54813486799992],[-66.68514256399993,-17.45488468699989],[-66.35266163299991,-17.316277008999975],[-66.26602158799994,-17.246022411999945],[-66.17438559399989,-17.247599214999923],[-66.06597154299993,-17.300556078999932],[-65.95086655499995,-17.324458584999945],[-65.92115052899987,-17.37785030299989],[-65.84164448899998,-17.396417223999947],[-65.80283359499998,-17.31916675399998],[-65.71849052699997,-17.3736405759999],[-65.67369059499993,-17.50363567999983],[-65.8114775169999,-17.70233523199994],[-65.90225956299992,-17.73011956499994],[-65.97658558699993,-17.666265723999913],[-66.0342026209999,-17.717709318999937],[-65.89241753199997,-17.761502918999952],[-65.81464352899997,-17.738769018999903],[-65.75133551699992,-17.8153276459999],[-65.59851062299998,-17.829001714999947],[-65.46336349899991,-17.912563589999877],[-65.38495649399994,-18.081069347999914],[-65.31902360499998,-18.11802432099995],[-65.26617453199992,-18.045533598999896],[-65.24210354999991,-17.914465443999916],[-65.31492653099991,-17.889080179999894],[-65.21372963499988,-17.732257620999917],[-65.31439260399998,-17.64470981599993],[-65.39027363799994,-17.63337547099985],[-65.56365162899982,-17.51996748299996],[-65.71939862199997,-17.33287686599988],[-65.83271759399997,-17.306202631999952],[-65.97686755399991,-17.219234854999968],[-66.05960850499986,-17.04522470099994],[-66.20037049899997,-17.06740640199996],[-66.49416358199994,-16.871392410999874],[-66.56047851799997,-16.906300354999928],[-66.66165160899982,-16.864357143999825],[-66.62397763699988,-17.006138041999918],[-66.53356959099983,-17.12828852299998],[-66.60337055999997,-17.18808786999989],[-66.66392561999993,-17.148686219999945],[-66.79322854599997,-17.16182552299989],[-66.87095661699982,-17.216485254999952],[-66.94467159999988,-17.206174675999932],[-67.10685757099992,-17.259220555999946],[-67.16888449199996,-17.211882584999955],[-67.19734155599997,-17.119800001999977],[-67.18877458099996,-17.02958373399997],[-67.32217458199989,-16.935996599999953],[-67.40634950899988,-16.91676164099988],[-67.4044795069999,-16.73792300799994],[-67.48638159699988,-16.708533539999962],[-67.47213755799993,-16.833859923999967],[-67.52178960599997,-16.97646191399997],[-67.62292464399997,-17.020194325999967],[-67.61663855199998,-17.134855073999972],[-67.74430851599988,-17.113439478999965],[-67.96394354799997,-16.94396812499997],[-68.11408254499997,-16.72852152999991],[-68.08027648599995,-16.579788680999968],[-68.01162752499994,-16.50445146499993],[-67.8750605059999,-16.506472508999934],[-67.78845247999993,-16.662499457999957],[-67.62848653999998,-16.674413829999878],[-67.7120665199999,-16.51198495199992],[-67.87580850699999,-16.354465018999974],[-67.92887852699994,-16.26537863099992],[-68.02105750099997,-16.177346183999873],[-68.11581458199998,-16.123625560999812],[-68.11033650499996,-15.987132972999973],[-68.04181662599996,-15.88485045199991],[-68.17762759699986,-15.890769249999892],[-68.22380853099992,-15.851291826999898],[-68.22764559899997,-15.722107084999891],[-68.31140863899992,-15.713579503999881],[-68.40721848699991,-15.743810681999946],[-68.45551249799996,-15.636287292999953],[-68.36849962599996,-15.569832714999905],[-68.51038362199984,-15.50634382099986],[-68.6204455539999,-15.484139321999919],[-68.67234059899982,-15.529678368999953],[-68.68885060099996,-15.61164198299997],[-68.66791562499998,-15.785644928999886],[-68.7830885059999,-15.747577341999943],[-68.85080757899993,-15.635666361999881],[-68.98538255499989,-15.59874189899989],[-69.05455052299988,-15.406347045999894],[-68.92414856099998,-15.322994550999908],[-68.86880453099997,-15.24262768899996],[-68.94155157099988,-15.208474786999943],[-68.81900060299995,-15.057533809999882],[-68.79896550699993,-14.960004162999951],[-68.93201464199996,-14.86503300899983],[-69.08679955999992,-14.808524732999956],[-69.0721895669999,-14.752995461999888],[-69.13392664299994,-14.621287934999941],[-69.2051775139999,-14.554542504999915],[-69.32692750699982,-14.494131446999972],[-69.38066053599994,-14.43538302199994],[-69.3685076139999,-14.23334830999994],[-69.40884351199998,-14.16698677099987],[-69.56050851799989,-14.30263278699988],[-69.6445156399999,-14.291945692999889],[-69.62709854799994,-14.201365481999972],[-69.76476258999998,-14.120093039999972],[-69.80386349799983,-14.067492406999918],[-70.02692454999988,-14.073345992999919],[-69.97748556999989,-13.964990280999814],[-70.08094055099997,-13.98440779699996],[-70.24352248299988,-13.980629067999871],[-70.32369957799989,-13.933122116999925],[-70.29325851699997,-13.844754225999907],[-70.27703852899987,-13.658406580999952],[-70.37619761699995,-13.650335981999945],[-70.41941856599993,-13.735644477999926],[-70.45368948499998,-13.904620125999884],[-70.55547361799995,-13.91934511799991],[-70.54070252499997,-13.759695845999886],[-70.62690754999994,-13.773063975999946],[-70.72553254299999,-13.739493950999929],[-70.7172316089999,-13.663810058999957],[-70.60870356499998,-13.595159756999976],[-70.57646961499995,-13.533524772999897],[-70.65108464699989,-13.456415789999937],[-70.75376161899993,-13.565846732999944],[-70.91084250799997,-13.541556312999887],[-70.97959154899996,-13.581290724999974],[-71.03110454699998,-13.554004444999919],[-71.03832253899998,-13.442889912999817],[-71.23495461099998,-13.41274892499996],[-71.34940363199996,-13.298796447999905],[-71.42116563099995,-13.314088559999902],[-71.40428162799998,-13.605210999999883],[-71.33088649899997,-13.621193780999931],[-71.34622957299996,-13.730781800999864],[-71.39759856899997,-13.757552760999943],[-71.74414064499996,-13.34982597699991],[-71.72892749099992,-13.221968593999861],[-71.87265751699994,-13.055827705999889],[-71.92710853899996,-13.023830963999956],[-71.97154251699999,-12.869494141999951],[-72.04808052399989,-12.871834201999945],[-72.0274426019999,-13.10395240299988],[-72.07085449099992,-13.12084244099998],[-72.1744305069999,-13.012380612999891],[-72.3149795999999,-13.006148165999889],[-72.43563055899995,-12.91049857999991],[-72.48780052999996,-13.028841665999948],[-72.44851656099996,-13.07481439299994],[-72.22585264399999,-13.13664936899994],[-71.93067151899999,-13.30166909399992],[-71.75144161799989,-13.463190546999954],[-71.58842449799994,-13.713548774999879],[-71.38185852899989,-13.932312424999907],[-71.33069656499998,-14.017219762999957],[-71.14689651599986,-14.119655001999945],[-71.15476963699996,-14.18481356999996],[-71.23931856499996,-14.209436919999973],[-71.18676755299992,-14.326736457999914],[-71.31985457299987,-14.385024379999948],[-71.3554915759999,-14.35167681099989],[-71.46621651699996,-14.098449289999962],[-71.53663657399989,-13.877785797999934],[-71.62397751299994,-13.751589371999842],[-71.72418249499998,-13.660285300999874],[-71.78010554799994,-13.523494484999901],[-71.88053164399997,-13.436867347999964],[-72.29529553899988,-13.319360943999982],[-72.36242653699992,-13.249822663999964],[-72.5820545279999,-13.19718917299997],[-72.67083749099999,-13.227138215999958],[-72.7546615519999,-13.200121162999892],[-72.97741649599999,-13.024827739999921],[-73.00907159199988,-12.954232500999865],[-72.93764453299991,-12.863724710999975],[-73.12371859299998,-12.811049310999977],[-73.20852652199989,-12.838926346999926],[-73.13568157999993,-12.940608387999873],[-73.15689852399987,-12.996419625999977],[-73.29872149999983,-13.01945410199994],[-73.32954360199994,-13.113399813999877],[-73.17644461999993,-13.288793148999957],[-72.97858459799988,-13.271750392999877],[-72.86304458899997,-13.296259580999902],[-72.52458149499995,-13.428771602999973],[-72.17647552299991,-13.621604996999906],[-71.98630556299997,-13.648506044999976],[-71.85105148499997,-13.706375374999936],[-71.75205953199992,-13.920561164999981],[-71.56386552099997,-14.16124516699989],[-71.4898145919999,-14.290162861999931],[-71.43123648799991,-14.437684022999974],[-71.36495960599984,-14.47301676199993],[-71.41137657399992,-14.56202888599995],[-71.40043651399998,-14.660492442999953],[-71.31463650299997,-14.722464547999891],[-71.15542560499989,-14.923915375999854],[-71.21323357999995,-14.985697378999873],[-71.31330160099998,-14.93995515399996],[-71.34772456899998,-14.85601776999988],[-71.58177161299994,-14.878385380999873],[-71.7082365949999,-14.90664245299996],[-71.69363364299994,-14.835278928999912],[-71.61982763299994,-14.78048877499998],[-71.66300952199998,-14.721327458999895],[-71.58200060699988,-14.64741935699982],[-71.60046359299997,-14.589898042999948],[-71.56582655099999,-14.397931505999964],[-71.65194658299998,-14.273984614999904],[-71.69476352399988,-14.39759254099988],[-71.7608486279999,-14.395575854999834],[-71.74594862199996,-14.231146719999913],[-71.76063555999997,-14.134853906999922],[-71.83432757599991,-14.124368648999962],[-71.87448862699983,-14.364017821999937],[-71.83020753599999,-14.457619875999967],[-71.82112155299995,-14.563839879999932],[-71.87396257899991,-14.641815718999965],[-71.98559561599996,-14.598777495999968],[-72.0230555139999,-14.692604519999918],[-72.09319259799997,-14.59957729699994],[-72.00616463799992,-14.472366660999967],[-72.07013649699996,-14.358007159999943],[-72.12379459099998,-14.465672202999826],[-72.24954258499997,-14.572974309999893],[-72.26481659199993,-14.47340584999995],[-72.20846555999992,-14.427910722999968],[-72.25122852099992,-14.365458838999814],[-72.24101248999983,-14.271017085999972],[-72.30554962399992,-14.216314438999973],[-72.33792153999991,-14.10646892699998],[-72.27154558399991,-14.032893586999876],[-72.30215461799997,-13.947226177999937],[-72.24235560599993,-13.847923758999968],[-72.27014161499983,-13.771611056999973],[-72.37397763699988,-13.72367914399996],[-72.41129252899998,-13.890852011999982],[-72.49117256999995,-13.973824470999944],[-72.56145449199994,-14.120297893999862],[-72.52584062399995,-14.23255940599995],[-72.55799863399983,-14.35285765399982],[-72.65843964999993,-14.422684941999933],[-72.6322705099999,-14.239144228999976],[-72.65571553199987,-14.188374370999952],[-72.79353363399991,-14.17452243699995],[-72.86684460899988,-14.114707331999966],[-72.7829814879999,-13.976275506999968],[-72.67645252799997,-13.881516750999936],[-72.62635757999993,-13.75203713399992],[-72.65380060199988,-13.672418608999976],[-72.72676858999989,-13.605896807999898],[-72.80187949499992,-13.639927836999846],[-72.78173861899995,-13.739609955999867],[-72.81999949299984,-13.817157983999948],[-72.88730651099996,-13.856157469999914],[-72.9070586329999,-13.91999823599997],[-72.98309355899994,-13.98233310899991],[-73.07498151399989,-13.970444719999932],[-73.09962464499995,-14.036151296999947],[-72.99659764299986,-14.187032427999952],[-72.87915762499995,-14.253299083999877],[-72.83692959599989,-14.352172516999872],[-73.00556963299994,-14.406822022999961],[-73.05804453799988,-14.30500788299986],[-73.15657062399998,-14.222892053999942],[-73.23182653599997,-14.192611254999974],[-73.14680453399984,-14.409569945999976],[-73.25578352399992,-14.53196584899996],[-73.30688463499996,-14.49301447399995],[-73.26288551099992,-14.391203016999953],[-73.36180152399999,-14.253183245999878],[-73.35547653999998,-14.135052892999965],[-73.27056148999998,-13.917298256999914],[-73.15937755599998,-13.820914584999969],[-73.12383258699992,-13.749066586999902],[-73.15451051999997,-13.600868335999962],[-73.26329052399996,-13.665602947999957],[-73.30052159699989,-13.745285845999888],[-73.40880555999996,-13.86802255699996],[-73.4522625429999,-13.999581723999938],[-73.46370652299998,-14.219879429999821],[-73.48598461599994,-14.361874904999922],[-73.57517259199994,-14.269041973999947],[-73.76535059899993,-14.133909098999936],[-73.79722563599995,-14.074790026999949],[-73.7457575649999,-13.947503283999936],[-73.85095262999994,-13.931125379999912],[-73.99572754399998,-14.024510174999932],[-73.87619758099999,-14.270539149999934],[-73.82420362999994,-14.341329351999946],[-73.82465356999995,-14.424309857999901],[-73.93261751199998,-14.366548821999913],[-74.06271353499989,-14.354927480999947],[-74.24692563799994,-14.181612018999829],[-74.21239454399989,-13.986554737999882],[-74.17432360499998,-13.86658975499995],[-74.03658261599992,-13.78638902299997],[-74.02561154299997,-13.699613860999932],[-74.15007056799993,-13.66266307899997],[-74.2379536489999,-13.70090769199993],[-74.36377758299994,-13.811346474999937],[-74.45824464899994,-13.828541278999978],[-74.61856061799995,-13.824037346999887],[-74.59877764999993,-13.73024066499994],[-74.51162764999998,-13.747685416999957],[-74.39469155099994,-13.709342065999977],[-74.38808459899991,-13.61902605299997],[-74.48967762499996,-13.591586048999943],[-74.71860449999997,-13.605154170999981],[-74.83161954399998,-13.578009879999911],[-74.91715954799997,-13.525627343999815],[-74.93067955799995,-13.409259202999863],[-74.80162054499993,-13.374007264999875],[-74.69544261899989,-13.415288640999847],[-74.36632551399998,-13.446871651999913],[-74.25222752699995,-13.39783265699998],[-74.34671755999989,-13.318778066999869],[-74.35425557299999,-13.244467130999965],[-74.49221750899994,-13.23861136599993],[-74.60400359899995,-12.927114361999884],[-74.68418857299997,-12.861723782999888],[-74.73862450799999,-12.99417377899988],[-74.89185357699984,-12.96356994099989],[-74.94045252199999,-12.862941672999852],[-74.82466859999994,-12.813944084999946],[-74.78717751999994,-12.757465982999975],[-74.78233361799994,-12.635347017999834],[-74.87261962399992,-12.566031695999982],[-74.90849249299987,-12.701940735999926],[-75.11597460399986,-12.77321289699995],[-75.02864858399988,-12.56273509399989],[-75.0631025639999,-12.456337058999907],[-75.12863949199988,-12.450983704999942],[-75.26394654299992,-12.622069915999873],[-75.36738559899993,-12.631092531999968],[-75.37086459199992,-12.564185832999954],[-75.25469258699997,-12.40099705199998],[-75.38196558399994,-12.31930735799989],[-75.50878864099997,-12.05804527999993],[-75.78767350299995,-11.938864339999839],[-75.85252361699992,-11.82196545699992],[-75.85517162799988,-11.738295286999914],[-75.93927748899989,-11.687975537999876],[-76.02140857299997,-11.57127664599983],[-75.93384551199995,-11.548411316999932],[-75.71236461699988,-11.752750214999935],[-75.63235448999995,-11.779143486999942],[-75.54212162599998,-11.681822046999912],[-75.42810058499998,-11.718175534999943],[-75.32045750199995,-11.819807619999892],[-75.14136456199998,-12.102605153999889],[-75.05601449199992,-12.051290639999934],[-75.04723360999992,-11.914718255999958],[-75.09051557899994,-11.814611844999888],[-74.99291954799997,-11.750252239999895],[-74.93269356199994,-11.655197769999972],[-74.9613874989999,-11.50260555799997],[-75.02537561799988,-11.43530792799993],[-75.0736005629999,-11.525450937999892],[-75.08660860599997,-11.660712558999933],[-75.24057762999996,-11.70580535399995],[-75.34311663599982,-11.649781383999937],[-75.40650964099984,-11.539572767999971],[-75.37829565199996,-11.399759437999933],[-75.46320349299998,-11.30080117999995],[-75.46492764999988,-11.460260349999942],[-75.59978459299998,-11.518918417999942],[-75.76987453099997,-11.425083849999965],[-75.83760852299997,-11.31261262299995],[-75.75399048999992,-11.222647643999949],[-75.72885165299994,-11.091866652999954],[-75.95638260599986,-10.961211725999874],[-76.00241853299991,-10.867101392999814],[-75.9663845639999,-10.800256888999854],[-75.98233063099997,-10.699947132999966],[-75.8719025769999,-10.753614446999961],[-75.74012749199989,-10.697680162999973],[-75.83778353799988,-10.599503936999838],[-75.88480349999992,-10.498535027999935],[-75.88356750399998,-10.271282018999841],[-75.94805954399999,-10.10948429799987],[-75.92281358699995,-10.045201973999895],[-76.02355953699998,-10.022948355999915],[-76.07051059999992,-10.107531482999946],[-76.07211254899994,-10.220469580999975],[-76.04698963799996,-10.427482975999908],[-76.07198363599991,-10.565049452999915],[-76.11941565199999,-10.652736230999892],[-76.21262358899997,-10.640742062999948],[-76.2006225479999,-10.57145004199998],[-76.26340451099998,-10.52846697199982],[-76.25409657499989,-10.384542150999948],[-76.41306255399996,-10.48521098699996],[-76.44029954899997,-10.561471721999851],[-76.57351648899993,-10.552900387999955],[-76.59318563099993,-10.497749140999929],[-76.55219259199993,-10.399767039999972],[-76.44488562299989,-10.279394360999959],[-76.39170864999988,-10.144652919999885],[-76.38721460899995,-10.062522673999865],[-76.42546860899995,-9.686931100999914],[-76.47885864999995,-9.504718919999902],[-76.5710066119999,-9.318394240999908],[-76.67227156899997,-9.156248502999915],[-76.68837756399995,-9.073325496999928],[-76.76183354599993,-8.921446248999871],[-76.6569065349999,-8.919943373999956],[-76.64864365499994,-8.818229816999974],[-76.52968550499992,-8.799795161999953],[-76.61303749799998,-8.67054219199997],[-76.72940848899998,-8.760491747999879],[-76.93622557899994,-8.760716884999965],[-77.02888450199998,-8.654297559999975],[-76.99224854399989,-8.598141323999926],[-76.87051363799998,-8.60666471299993],[-76.81516256699996,-8.53669292099994],[-76.95159161999999,-8.494779884999957],[-76.9748006069999,-8.440760864999959],[-76.89566052099991,-8.37160060899987],[-76.95091251799994,-8.29041852399996],[-76.99889354899994,-8.369852813999955],[-77.14044159799988,-8.26337934199995],[-77.22446464499995,-8.15875609099993],[-77.22071860499995,-8.049155833999976],[-77.06258360799995,-8.051799653999979],[-77.11004663799997,-7.918481124999971],[-77.23362757399985,-7.954094490999921],[-77.26114653599996,-7.798009036999929],[-77.33387765099997,-7.810915826999974],[-77.39951365299993,-7.761930475999918],[-77.40946163099989,-7.689361633999965],[-77.47899655799995,-7.636682378999922],[-77.445114559,-7.571689100999947],[-77.55471749799995,-7.351780985999881],[-77.52605457399994,-7.181186457999956],[-77.54349563899996,-7.080356688999814],[-77.67043252199994,-7.048754063999979],[-77.73457352699995,-6.992496070999948],[-77.71685753599996,-6.934484247999819],[-77.77924353899988,-6.843230132999906],[-77.85562161999997,-6.800315123999951],[-77.90497560699998,-6.871318896999981],[-77.79014554499997,-6.994821042999945],[-77.78567463799999,-7.100884472999894],[-77.65859962099984,-7.166391560999955],[-77.72348058099993,-7.256791894999935],[-77.67100550799984,-7.290899367999884],[-77.6329955889999,-7.448417121999853],[-77.55741160999992,-7.549572946999945],[-77.51767753299998,-7.685040930999889],[-77.53550751699999,-7.780613234999976],[-77.46092249299994,-7.846042370999953],[-77.41616061499985,-7.931714138999837],[-77.43226660999994,-7.991759075999937],[-77.3978656029999,-8.072111184999926],[-77.26143654999993,-8.168802137999933],[-77.24311052399986,-8.225539239999875],[-77.29601257099995,-8.315820719999977],[-77.28305062799996,-8.391776352999898],[-77.12319951999996,-8.483536734999973],[-77.08452558699997,-8.636735628999872],[-77.19741054399998,-8.593963782999936],[-77.00551558799992,-8.846222690999923],[-76.90185558499991,-8.899648774999946],[-76.90060450299995,-8.963636390999966],[-76.83035258699988,-9.0363490659999],[-76.57146459899997,-9.48542444899988],[-76.52313253399996,-9.654874344999882],[-76.51779963099989,-9.857105192999882],[-76.54188553299997,-10.04981352999988],[-76.57548556599994,-10.12129758499998],[-76.6675036069999,-10.21662396399995],[-76.77769462099991,-10.248929494999913],[-76.78754453099998,-10.159479835999946],[-76.74944257799996,-10.026411255999903],[-76.86701955799998,-10.029174098999874],[-76.77918961799998,-9.859289014999945],[-76.84207149299982,-9.755793129999915],[-76.90927155799989,-9.819866744999956],[-77.02469656799997,-9.848731671999928],[-77.02241551599997,-9.784735170999966],[-76.95340764299988,-9.598090303999925],[-76.94779964699995,-9.42271188799998],[-77.00558465499995,-9.32750754899996],[-77.0867305299999,-9.33477013299995],[-77.22385360499999,-9.482063640999911],[-77.27559660199995,-9.471600175999981],[-77.33142862699992,-9.273252494999895],[-77.29205363099993,-9.18972632699996],[-77.19853958699991,-9.136875912999926],[-77.16434460699992,-9.065358161999939],[-77.23565649799997,-9.03607212799983],[-77.38213360899988,-9.128029819999938],[-77.4382625209999,-9.11521154299993],[-77.48266565299997,-9.025435827999956],[-77.55492352499994,-8.971447653999974],[-77.57917756799998,-8.862460616999897],[-77.46667448999989,-8.762026641999967],[-77.53684258699997,-8.68572734999998],[-77.68536354099996,-8.61267436999998],[-77.68693565099994,-8.473279296999976],[-77.59196449699988,-8.428024563999884],[-77.6355974999999,-8.323659977999966],[-77.61903351799992,-8.274195684999881],[-77.72846261699988,-8.186121999999898],[-77.73091851399994,-8.025373356999978],[-77.81034861399996,-8.02324167199987],[-77.85486557199994,-7.944474412999909],[-77.95158351499992,-7.93649886399993],[-78.02949565199992,-7.840526743999931],[-78.09677852999994,-7.864090116999932],[-78.10328657499997,-7.932718290999958],[-78.23609950699989,-7.828688813999975],[-78.27407053399997,-7.907601917999898],[-78.36592060299989,-7.893400961999873],[-78.39284562299997,-7.761111395999933],[-78.50418864499989,-7.645648835999907],[-78.65105450899989,-7.599509307999881],[-78.69393163199993,-7.546305009999912],[-78.68842354799983,-7.465861035999978],[-78.84907563099995,-7.457454321999933],[-78.96028152499997,-7.565039736999893],[-79.01742565299998,-7.532635131999939],[-79.1063236149999,-7.395103020999954],[-79.26686857699991,-7.365605091999896],[-79.31137849499999,-7.327098795999916],[-79.33970664499992,-7.21774697799998],[-79.28132652199997,-7.128269323999916],[-79.3202596239999,-7.028551665999885],[-79.34066754699995,-6.880320389999952],[-79.3767855029999,-6.791902710999977],[-79.55123855699998,-6.648650117999921],[-79.655235512,-6.475522745999967],[-79.80490160099998,-6.32459283299994],[-80.11513562,-6.156944039999814],[-80.44163555899996,-6.059648081999967],[-80.5461345899999,-5.971090591999882],[-80.61563163199997,-5.865771307999978],[-80.71204363499993,-5.552901348999967],[-80.84532159499997,-5.262650626999971],[-80.91525265099995,-5.155383555999947],[-81.0613636409999,-5.041642973999956],[-81.16802956099991,-5.08743347799998],[-81.19141356299997,-5.215220285999976],[-81.1098785989999,-5.309583081999961],[-81.04186263999992,-5.33765508099998],[-80.92247751699995,-5.460987074999878],[-80.88745859599993,-5.464223998999898],[-80.81726049199989,-5.574631600999965],[-80.85331759499996,-5.765087719999883],[-80.92584955599995,-5.843011926999907],[-81.06128652699982,-5.787358268999867],[-81.14356261799992,-5.889826699999958],[-81.14456961999986,-5.980172886999981],[-81.09441365299995,-6.076448935999963],[-80.9324496349999,-6.177013501999909],[-80.77305550799997,-6.305112283999961],[-80.29786664099998,-6.529672019999964],[-80.08250453499994,-6.663263127999926],[-79.98343664199996,-6.742305312999918],[-79.92534653299998,-6.871322081999949],[-79.67762759799996,-7.119910051999966],[-79.67934454699991,-7.181458533999887],[-79.61325860499994,-7.250019484999939],[-79.56084455299998,-7.391106193999974],[-79.56648255599998,-7.464109049999934],[-79.43959864699991,-7.651881283999842],[-79.4578556059999,-7.710614284999963],[-79.29575362099996,-7.930953229999943],[-79.15300763099992,-8.048978975999887],[-78.99102064599998,-8.220614368999975],[-78.90911050899996,-8.377418152999951],[-78.92646054599999,-8.455100792999929],[-78.79739365399996,-8.556874531999938],[-78.74354562499997,-8.6646166889999],[-78.75230454699988,-8.798750105999943],[-78.65437357499991,-8.91552074699996],[-78.64958951999995,-9.040876969999943],[-78.50651562899986,-9.185261622999917],[-78.51139859099993,-9.312835697999958],[-78.44409157299998,-9.334948834999977],[-78.36951459499988,-9.63312196499993],[-78.23609162799994,-9.814363018999927],[-78.25533262199997,-9.860641685999951],[-78.17768049199992,-10.07145510099997],[-78.06101965399989,-10.34269097299989],[-77.86278563299993,-10.66800537599994],[-77.77527655199992,-10.767006213999878],[-77.67069252799996,-10.948512638999944],[-77.60726951699996,-11.169954306999955],[-77.66385658299993,-11.255832436999981],[-77.63101963899993,-11.31639118499993],[-77.3645475379999,-11.467001747999916],[-77.29895763699994,-11.524978030999932],[-77.17622360799993,-11.737736214999927],[-77.18864458199994,-11.856204189999914],[-77.15090154299997,-11.907528594999974],[-77.14168563999988,-12.079983737999953],[-77.0334776169999,-12.158627447999947],[-77.04244256499993,-12.214281608999954],[-76.84752660399988,-12.32071132699997],[-76.78406553799994,-12.401336853999965],[-76.81057749799999,-12.511459638999895],[-76.74540752999997,-12.53868573699998],[-76.67862656099999,-12.628736545999914],[-76.64122064099996,-12.750869256999977],[-76.51986660899996,-12.869860095999854],[-76.49170659899994,-13.047619139999824],[-76.28603363799988,-13.282062480999912],[-76.1876445119999,-13.442460926999956],[-76.19352760199996,-13.623045678999915],[-76.26146661499996,-13.871074407999856],[-76.37017855799996,-13.80887632799994],[-76.39612557799995,-13.901492501999826],[-76.28559861699995,-13.916086401999962],[-76.26461049999995,-14.05897404599989],[-76.28367664699982,-14.13688567999992],[-76.13488763999999,-14.243508685999927],[-76.06737559999988,-14.392657946999975],[-75.97048951699992,-14.509867295999982],[-75.92098951699984,-14.661444291999942],[-75.85501052799998,-14.720154494999917],[-75.65073348899989,-14.848371294999936],[-75.52396357399994,-14.90702349399993],[-75.37297850799996,-15.143230051999922],[-75.22991953699994,-15.2191873619999],[-75.24499556299997,-15.28260919999991],[-75.18980458599987,-15.367782746999978],[-75.05079658899996,-15.466373374999932],[-75.01222256799997,-15.466083192999974],[-74.65360250499998,-15.657024288999935],[-74.47146559299995,-15.728533657999947],[-74.43728653899996,-15.807163620999916],[-74.35558360199991,-15.85276854999995],[-74.2849955719999,-15.845134144999975],[-74.05188763599989,-15.963886434999836],[-73.99999963199986,-16.034941001999982],[-73.85572863799996,-16.136981620999904],[-73.33990463999993,-16.32337285199992],[-73.30790756299996,-16.37270588399997],[-73.21104461299996,-16.399048025999946],[-73.04996454999997,-16.499593648999905],[-72.92754350199993,-16.517507787999932],[-72.77449749299996,-16.626543942999945],[-72.44997350399996,-16.703706904999933],[-72.37428257099998,-16.752505004999932],[-72.13259156599992,-16.969271581999976],[-72.10420256299994,-17.020845264999934],[-71.94582348499989,-17.063622642999974],[-71.80450459699989,-17.184216100999947],[-71.68853761399998,-17.21031449799989],[-71.47614253399996,-17.29155961499987],[-71.39250153399996,-17.393125147999967],[-71.34301762699988,-17.64290904799998],[-71.37048361499996,-17.678503972999977],[-71.18147253699993,-17.785187495999935],[-71.09345249499995,-17.866719273999934],[-71.00227364899996,-17.876362820999816],[-70.92483559299995,-17.922283077999907],[-70.88602453099998,-18.002772146999973],[-70.81260660299995,-18.03526308599993],[-70.68231964099988,-18.15553384099985],[-70.38628356099991,-18.337382918999936],[-70.30521362599995,-18.435454202999892],[-70.34699255199996,-18.649127522999947],[-70.35959658699994,-18.794199826999886],[-70.26765448499998,-19.141921236999906],[-70.28260059199982,-19.283999021999875],[-70.22444962999998,-19.402946106999877],[-70.20541348999996,-19.58329649999996],[-70.17078348899992,-19.65074148399998],[-70.15641757799995,-19.82253680399998],[-70.12281050499996,-19.992676865999954],[-70.12390149299989,-20.094227981999893],[-70.15851556799998,-20.213610254999935],[-70.14411160299994,-20.320825190999983],[-70.18295250399996,-20.354906176999975],[-70.1639026169999,-20.48239006299997],[-70.19975251999989,-20.528215435999925],[-70.18141962099986,-20.65453524299994],[-70.19419850299988,-20.81500124799993],[-70.13388853099997,-20.950676767999937],[-70.17842862299983,-21.021457916999907],[-70.1263126309999,-21.086056405999955],[-70.06727553399998,-21.31195087599997],[-70.05627462199988,-21.43240620099988],[-70.09222460499996,-21.584800767999923],[-70.14301256799996,-21.628867450999962],[-70.14223455899997,-21.82843268599987],[-70.21219662899995,-22.09843910099994],[-70.23957058399992,-22.377069320999908],[-70.23716749199997,-22.488410499999873],[-70.31277460599995,-22.800399855999956],[-70.28524055699995,-22.896583870999905],[-70.32955148799994,-22.998435729999983],[-70.40814959999994,-23.083373242999926],[-70.57710261599993,-23.098869537999917],[-70.59088849999989,-23.21659454099995],[-70.58771561399993,-23.433103290999952],[-70.61836957599996,-23.49326423399998],[-70.54662350199999,-23.532637385999976],[-70.50489050899995,-23.460441874999958],[-70.4298406239999,-23.495223251999903],[-70.39130348299989,-23.610500236999883],[-70.49987762799998,-23.807783248999954],[-70.50068664899993,-24.15771278699998],[-70.57729355599992,-24.550460270999906],[-70.5802076089999,-24.714127491999932],[-70.51721157099996,-24.9287779739999],[-70.47186262499997,-25.027415372999883],[-70.50679755899989,-25.092920281999966],[-70.46015964399993,-25.14478967799988],[-70.43704252299989,-25.246194947999925],[-70.44842548299994,-25.349484134999955],[-70.53353163999998,-25.474271059999978],[-70.62788353899987,-25.50979356599987],[-70.73120155899989,-25.780974620999814],[-70.69478654899996,-25.896648236999965],[-70.63106564399999,-25.989486196999962],[-70.67368359899996,-26.16550398499993],[-70.62813549899994,-26.33490844999983],[-70.69396260799994,-26.38617401399989],[-70.70939654099988,-26.53217838599994],[-70.6865385879999,-26.566240931999857],[-70.82936051899992,-26.880672103999927],[-70.78950456899986,-26.99416005599994],[-70.81099660699988,-27.05286941999998],[-70.93086251699998,-27.110216724999816],[-70.96979561899997,-27.167124483999885],[-70.93110659799993,-27.32047173799998],[-70.9611585699999,-27.368105757999956],[-70.89842957999991,-27.457370008999874],[-70.9375836289999,-27.65854339699996],[-71.04103861099998,-27.71653191799993],[-71.14509557999997,-27.978975676999823],[-71.1686475539999,-28.122499675999904],[-71.15692160699996,-28.216969759999984],[-71.19825763299991,-28.292492718999938],[-71.16591656299988,-28.352476467999963],[-71.2565685219999,-28.464075640999965],[-71.31008948799996,-28.689757545999953],[-71.39767450899996,-28.80407010999994],[-71.49520164099994,-28.85379809699998],[-71.52128562099995,-28.917179534999832],[-71.46635448299992,-29.104448182999874],[-71.50284560099993,-29.13440979899991],[-71.45999161299994,-29.247726423999893],[-71.33963754099989,-29.32877842199997],[-71.30854051299997,-29.415674115999934],[-71.32904063599983,-29.544581080999876],[-71.29196161099992,-29.596984906999978],[-71.32887249499993,-29.731610006999915],[-71.27706948399992,-29.859279132999916],[-71.29368560099994,-29.94805974899998],[-71.40270951899998,-29.991903975999946],[-71.37319164099989,-30.08306957799988],[-71.51702861999996,-30.285550206999915],[-71.64875056399995,-30.26372306099995],[-71.6884615059999,-30.39973704199997],[-71.71434750599997,-30.605316628999958],[-71.68486064099994,-30.913512670999978],[-71.65344962599988,-30.97377553699988],[-71.67146250399992,-31.147082449999914],[-71.63078361899989,-31.262900402999833],[-71.61830849699993,-31.397469007999973],[-71.57202949499992,-31.499323548999882],[-71.57329549799994,-31.580161807999957],[-71.51174148299992,-31.75542773899997],[-71.52238448799994,-31.920936296999912],[-71.49497952099995,-31.967761965999955],[-71.54355650499997,-32.18619369299989],[-71.47792854999994,-32.26950025499991],[-71.47814949699989,-32.33844878499997],[-71.41082755999997,-32.384414303999904],[-71.48686952599985,-32.523626986999886],[-71.43859864899997,-32.63111081299991],[-71.50055650399997,-32.770846359999894],[-71.57884264099994,-33.02026279699987],[-71.6612774859999,-33.02154858099988],[-71.71987956199996,-33.20852017499993],[-71.6547466419999,-33.30297718299994],[-71.70948750999986,-33.42770241699998],[-71.60082250599999,-33.537497301999906],[-71.6377945779999,-33.67066143599993],[-71.69160455199983,-33.73811061099991],[-71.78198259099997,-33.768516802999955],[-71.82930748699994,-33.894768213999896],[-71.93702650999995,-34.02788943199994],[-71.91262863399993,-34.14780110699991],[-71.7426686149999,-34.22753396099989],[-71.7220005179999,-34.26674400099989],[-71.79354056499989,-34.40911984699994],[-71.79863759999995,-34.548993358999894],[-71.90327459699995,-34.67769094499994],[-71.90806552599997,-34.76098577199997],[-71.77011850999997,-34.83390581499998],[-71.72055061699996,-34.89107927999993],[-71.61730954199999,-34.907748873999935],[-71.68274655699992,-35.04605547299991],[-71.78894761699996,-35.159417360999896],[-71.93658461599983,-35.44275452199997],[-72.02075954299994,-35.52936539799998],[-71.88193561299994,-35.62335721099993],[-71.89533257699998,-35.68869749899994],[-71.97418952199996,-35.7102119999999],[-72.10603350599985,-35.810959793999984],[-72.15789753799993,-35.92270414199993],[-72.22840862199996,-35.96335721099996],[-72.38024160099985,-36.207281657999886],[-72.3663325039999,-36.38248371899988],[-72.48389456299998,-36.47602860799998],[-72.50468453299999,-36.580465277999906],[-72.4832915689999,-36.74251797599993],[-72.50413551799994,-36.84696269199998],[-72.61222854199991,-37.01168117199995],[-72.6253965109999,-37.10944634899988],[-72.73565659199994,-37.22210298399989],[-72.64123562599997,-37.38275573699997],[-72.67077663799984,-37.48083808599995],[-72.61268652899997,-37.51217148399991],[-72.55311550499994,-37.835918302999914],[-72.56977051399997,-38.07672803499992],[-72.66194160899988,-38.280067473999964],[-72.81992355299997,-38.51056645899996],[-72.95641362599991,-38.65601108699991],[-73.04630249699994,-38.70303741899994],[-73.15703548499994,-38.7089771709999],[-73.03227957299998,-38.813547447999895],[-72.94724265099995,-38.98847592399994],[-72.88844259399991,-39.00448954999996],[-72.68770556799996,-39.30161125399991],[-72.40865357099995,-39.33028658299986],[-72.25033551299992,-39.47672664599992],[-72.16600049099998,-39.38172699299997],[-72.22632555099995,-39.246635021999964],[-72.09927350099997,-39.180332825999926],[-72.08766959399998,-38.93857275499994],[-72.18817850399995,-38.82044038999993],[-72.1969065799999,-38.733317714999885],[-72.12084952599997,-38.64413627699997],[-72.02262853999986,-38.45453745899994],[-72.00003864099995,-38.233548246999874],[-71.83808853599999,-37.95481325299994],[-71.73904461599989,-37.81903161799988],[-71.94618960599996,-37.753892830999916],[-71.98046153199988,-37.68407023699996],[-71.93347962399997,-37.5539266049999],[-71.84396357999998,-37.19804457499998],[-71.79000859899998,-37.121733212999914],[-71.84252960399988,-36.85695241199994],[-71.76495358099999,-36.609464818999925],[-71.72264056099993,-36.267240092999884],[-71.59377248699985,-36.159648810999954],[-71.50546259899994,-35.95329741799998],[-71.48506959599996,-35.83623911099994],[-71.43536356899989,-35.80566075499996],[-71.27832760699994,-35.55966882799987],[-71.17298854199998,-35.52725550599996],[-71.08847850599989,-35.171032331999925],[-70.98054457099994,-34.996979764999935],[-70.97920262899993,-34.751292771999886],[-70.89990948899998,-34.6732958099999],[-70.9161296449999,-34.55908701499993],[-70.82159451799998,-34.42154082199988],[-70.82639349299984,-34.30556176799996],[-70.70017259199983,-34.16785061899998],[-70.65529655299997,-34.081171849999976],[-70.65026053799994,-33.95616749899983],[-70.68141959199994,-33.87022080399993],[-70.68591363399997,-33.72993976399994],[-70.60254655399984,-33.630149685999925],[-70.57596552699994,-33.54783101499987],[-70.5975645179999,-33.46915528699992],[-70.72035956799988,-33.34121006099997],[-70.71865854399994,-33.141513060999955],[-70.76933251299988,-33.05644445499996],[-70.90913360599995,-33.063165567999874],[-70.89257062999991,-33.367653288999975],[-70.91966261799985,-33.438127324999925],[-71.01081849699995,-33.428388558999984],[-71.10236363199988,-33.247760892999906],[-71.2971194989999,-33.17159906499995],[-71.34050758299992,-33.12109776299991],[-71.29836253499991,-33.03213743899988],[-71.1478956389999,-32.919508632999964],[-70.82248651999987,-32.79216271299998],[-70.74466658399996,-32.8032011759999],[-70.52548953899998,-33.01418289999998],[-70.45636750399996,-33.244800906999956],[-70.33515948399997,-33.27800296699996],[-70.27153061299987,-33.328732423999895],[-70.14542353799993,-33.31704888999997],[-70.02498648599993,-33.34868286299985],[-69.97226749999999,-33.42107970699993],[-70.0191645839999,-33.52531772599997],[-70.16729762299997,-33.61789802599992],[-70.03795664299992,-33.88154659999992],[-70.06110360399992,-33.990224511999884],[-69.92137962499999,-34.078242038999974],[-69.95642050599992,-34.183025216999965],[-70.09023256099982,-34.232134954999935],[-70.17836760299991,-34.14642010499995],[-70.32659150199999,-34.04640974999995],[-70.33461750999987,-34.11984092199998],[-70.2964096099999,-34.35130265199996],[-70.33686855399998,-34.51227827599985],[-70.46381348299991,-34.55831286199998],[-70.58634953199987,-34.65610050299995],[-70.45290359799998,-34.781394029999944],[-70.43981961499992,-34.98016901999989],[-70.36508958399997,-34.99444775999996],[-70.37723563199995,-35.16694347199984],[-70.53916159599993,-35.19464448799988],[-70.56333953099983,-35.29461812999995],[-70.43160249999994,-35.312218617999974],[-70.4450836179999,-35.46314702199987],[-70.38849655099989,-35.58618698999993],[-70.42213463699994,-35.63430481399996],[-70.37717461199998,-35.76318177299993],[-70.32224263599994,-35.81419068299988],[-70.4206926149999,-35.87112744199993],[-70.37882249399996,-36.0199276809999],[-70.28359954799998,-36.06642377499986],[-70.28359954799998,-36.262792487999945],[-70.39815552099998,-36.32825096099998],[-70.32450859899996,-36.40188815999994],[-70.2590564969999,-36.663715512999886],[-70.38996858099995,-36.729171303999976],[-70.38179052599997,-36.941904844999954],[-70.47179456399994,-36.941904844999954],[-70.46360762399996,-37.081001019999974],[-70.50452455499993,-37.25282634699988],[-70.60270664799992,-37.277370067999925],[-70.63053154899995,-37.002453533999926],[-70.56507156799995,-36.85190265099982],[-70.6043474899999,-36.72753415099987],[-70.5323405709999,-36.675171227999954],[-70.55197853199996,-36.583528359999946],[-70.63706960199983,-36.590075129999946],[-70.70907551399989,-36.675171227999954],[-70.78762853199999,-36.62935038099994],[-70.96436364199997,-36.94354065699997],[-70.83999648299994,-37.07445508899991],[-70.90544858599998,-37.2970075259999],[-71.06255361499996,-37.36246616699998],[-70.87271859499992,-37.40173756199988],[-70.93817857699992,-37.55228961899991],[-70.91199451699998,-37.68975014899996],[-70.85308851299988,-37.715933538999934],[-70.91199451699998,-37.82720933799993],[-70.91199451699998,-38.0235788899999],[-70.83999648299994,-38.206856578999975],[-70.75489854099993,-38.5799624149999],[-70.63706960199983,-38.75015259999998],[-70.63706960199983,-39.005435698999975],[-70.57489063199995,-39.19853278799991],[-70.6468884979999,-39.30326315899998],[-70.82363148799993,-39.453815886999905],[-70.93490561099992,-39.48654135199985],[-70.96763660799996,-39.552000662999944],[-71.15091664399995,-39.64364034499994],[-71.22292356299994,-39.78764714199997],[-71.22946949399994,-40.02983904899992],[-71.07237251199996,-40.21966367499988],[-71.15091664399995,-40.625500004999935],[-71.14109757999995,-41.054245248999905],[-71.24583448899995,-41.17861425199982],[-71.15418960999995,-41.302984092999964],[-71.00363956399991,-41.610632126999974],[-70.94472450799992,-41.695726548999914],[-71.14764351099996,-41.78736975199996],[-71.22619652799995,-42.140836788999934],[-71.29820260899993,-42.232480326999905],[-71.38329350999999,-42.22593422799997],[-71.40293163899997,-42.369942197999876],[-71.4484866119999,-42.44152080099997],[-71.29165650999983,-42.46812747699988],[-71.23274262699994,-42.38303003699991],[-71.15418960999995,-42.38303003699991],[-71.17382857599995,-42.54667613499987],[-71.33093259899994,-42.62522362099992],[-71.1181864859999,-42.674318438999876],[-71.19019357199988,-42.76595895999998],[-71.19673950299989,-42.89687422999998],[-71.27529151499988,-42.89687422999998],[-71.32765963399987,-42.78559675399998],[-71.44548052699986,-42.92960388499989],[-71.32765963399987,-43.027790336999885],[-71.32111353499994,-43.12597578399988],[-71.20328560199982,-43.145613744999935],[-71.0789186099999,-43.32234801699991],[-71.1050946229999,-43.59072700199988],[-71.31456760399993,-43.695458713999926],[-71.30147557399994,-43.80019143299995],[-71.20328560199982,-43.89837704699994],[-71.28838354399988,-44.02929382499991],[-71.24910762199994,-44.17330129199996],[-71.38656664399997,-44.23221232499998],[-71.34074361699993,-44.31076400099994],[-71.22292356299994,-44.36967419599995],[-71.30147557399994,-44.487498776999985],[-71.42911553099992,-44.54968595999998],[-71.18692060599989,-44.595503622999956],[-71.0821915759999,-44.66096460999984],[-71.06255361499996,-44.751929549999886],[-71.31784056999993,-44.844245651999984],[-71.41602350099998,-45.047164486999975],[-71.46839162099997,-44.994799720999936],[-71.6123965729999,-45.07989464599996],[-71.67131062399989,-45.28281381599987],[-71.57312048399996,-45.335181935999856],[-71.56657455199996,-45.40718382499995],[-71.69766248899987,-45.422004035999976],[-71.70927460999991,-45.54333795199989],[-71.58359551599989,-45.569522178999875],[-71.45791658899998,-45.66378036799989],[-71.46466049999998,-45.72734453099997],[-71.62025460699994,-45.86277379099994],[-71.75777464899994,-45.877342879999844],[-71.77854148499995,-46.03951325999998],[-71.94698353999996,-46.159112456999935],[-72.26559459999993,-46.27308387699992],[-71.98269665099997,-46.412725545999876],[-71.85897053899998,-46.38799440499997],[-71.81842056799996,-46.518030747999944],[-71.87755556599984,-46.59744106699998],[-72.35589552499994,-46.740050767999946],[-72.40692857499994,-46.85707822899991],[-72.29451753099983,-46.96231201799998],[-72.18057259799997,-46.97188297799994],[-71.83382449499993,-47.0915846019999],[-71.81042456799997,-47.17101101399987],[-72.17773448499997,-47.78520418999989],[-72.22189353599993,-48.0662041409999],[-72.20583364199996,-48.234807799999885],[-72.15364858299995,-48.38333797399997],[-72.06533852799998,-48.45960960499991],[-72.09343751699993,-48.535881235999966],[-72.31021163799994,-48.491722016999915],[-72.40253461399988,-48.56799465399996],[-72.44567861699988,-48.83885937599996],[-72.44329849099995,-48.953061465999895],[-72.63243865099997,-49.23856367299993],[-72.65623453899991,-49.33611058499997],[-72.76805164199999,-49.44079468899997],[-72.79660761299982,-49.58354637899993],[-72.86560056699989,-49.68823064999992],[-72.91199456799995,-49.90473638299994],[-72.7882765039999,-50.35677962999989],[-72.55536654899998,-50.62180635599998],[-72.41831958199998,-50.8373815299999],[-72.25653057799985,-51.19901740199998],[-72.02813762999995,-51.32273730999998],[-71.99006652299994,-51.48452111699993],[-71.70456649499994,-51.60824102599997],[-71.30487057999989,-51.74147640599995],[-71.24777255299989,-51.817610740999896],[-71.41906764099997,-51.83664319399992],[-71.83779952799995,-51.69389049799986],[-72.09474961999996,-51.570174444999964],[-72.18911761299995,-51.638744614999894],[-72.08989750399996,-51.685624431999884],[-72.08007860799995,-51.756097797999985],[-71.99351450199987,-51.82907785499992],[-71.89286058599998,-51.810622580999905],[-71.67644453899993,-51.89450514799995],[-71.60940557499998,-52.11263328199993],[-71.55794555099999,-52.17052608099988],[-71.36669952099999,-52.24766171899984],[-70.77498660999998,-52.53734733299996],[-70.56011149299997,-52.666934908999906],[-70.55100254299992,-52.723915924999915],[-70.32417248499985,-52.63783629399995],[-69.92841354999996,-52.527265076999925],[-69.85199758299996,-52.48794925699997],[-69.70076759799997,-52.54693740399995],[-69.55024755999983,-52.46725869699998],[-69.44712852499993,-52.26159679999995],[-69.20446756699994,-52.194570575999876],[-68.99999958799998,-52.28052112599994],[-68.72460964399994,-52.30588577099991],[-68.59252157899988,-52.34354532699996],[-68.36820257099998,-52.307571706999965],[-68.62894463599997,-52.07041531199991],[-68.75740048799997,-51.92886491599995],[-68.84633650399991,-51.78677221099997],[-69.00440964199998,-51.61043926399992],[-69.09169760899982,-51.65650201299991],[-69.19781451499989,-51.62622037599988],[-68.9409334899999,-51.547499049999885],[-69.11328855299996,-51.172381892999965],[-69.16187257899992,-50.99059014699992],[-69.12796761299984,-50.898913583999956],[-69.14242555699997,-50.737809213999924],[-69.0772626299999,-50.56172755599994],[-68.87493857499999,-50.34024733199982],[-68.38013454599997,-50.17949315699997],[-68.49449957999991,-50.07997783799988],[-68.50725549499998,-49.945115195999904],[-68.33169552699991,-50.124587332999965],[-68.13983158399998,-50.10695616699991],[-67.99597951799996,-50.05509833799988],[-67.77747352799992,-49.89636235899985],[-67.71281452099998,-49.75208164199995],[-67.69471748899991,-49.57195336899997],[-67.58488454999997,-49.25927367899993],[-67.62637362899994,-49.11308205599988],[-67.56449858799994,-49.03164113699995],[-67.40019953899997,-48.89110981299996],[-67.22180950499995,-48.81204885299985],[-67.11443363799998,-48.66634555899998],[-66.85630756499995,-48.571682523999925],[-66.68132058299989,-48.447212434999926],[-66.48875457199995,-48.41487823799997],[-66.07432561799993,-48.10736967899987],[-65.95225560399984,-48.09838159699996],[-65.95166048899989,-47.96078829699985],[-65.84757954699995,-47.88888799699998],[-65.88330858299997,-47.79484823999991],[-65.73921964399995,-47.5103071019999],[-65.71581250899999,-47.33503999699997],[-65.75169359199998,-47.198702139999966],[-65.8631826269999,-47.10959764699993],[-65.97236663899992,-47.07450949199995],[-66.19187963099995,-47.09455263399997],[-66.50030550499991,-47.049062368999955],[-66.73990656599995,-47.03458531299998],[-67.04499862199998,-46.79549420699982],[-67.12089558199995,-46.699824672999966],[-67.33976752599989,-46.61882313399997],[-67.42070754199995,-46.55407997299989],[-67.55683853399995,-46.360704101999886],[-67.60772657699994,-46.25333192199997],[-67.61574554399988,-46.064969099999985],[-67.5451275069999,-45.927097688999936],[-67.36695858699994,-45.774635396999884],[-67.34336051299994,-45.62965428799998],[-67.2065886399999,-45.5268819289999],[-67.05215458799995,-45.33566171599995],[-66.84672553999991,-45.231452865999984],[-66.5491485309999,-45.21590778899997],[-66.58834063399996,-45.139369612999985],[-66.35326362199999,-45.0402257799999],[-66.28469060099991,-45.05461767599991],[-66.19528955699991,-44.98504955599992],[-66.0052795229999,-45.005248768999934],[-65.9351885399999,-45.04733145499995],[-65.75264761999995,-45.02331847599987],[-65.64631664099994,-45.04863668499985],[-65.57592759699997,-44.899790512999914],[-65.72367054299986,-44.8498296759999],[-65.63782459899994,-44.668376726999895],[-65.45707656799993,-44.57521773999997],[-65.40155048299988,-44.58436189399998],[-65.33264151599991,-44.46054006199989],[-65.21665156599988,-44.36999505499995],[-65.30622862999996,-44.222812355999906],[-65.23773154999992,-44.14541654399994],[-65.23549659899993,-44.03656059999997],[-65.3014675419999,-43.93180910599989],[-65.35165351599983,-43.759049363999964],[-65.32807153499988,-43.644593972999985],[-65.0591205689999,-43.40515384499997],[-65.01074257099992,-43.281424380999965],[-64.88924453699991,-43.203582483999924],[-64.69480148199989,-43.12763187999997],[-64.50608058499995,-43.08200431999984],[-64.32898756699996,-43.00162941199983],[-64.52817561699999,-42.92533179699984],[-64.63915251799989,-42.91939204499988],[-64.95968655399997,-42.78578366999989],[-65.03450761299985,-42.730272168999875],[-64.98638962199988,-42.65715649299983],[-64.84324649699994,-42.61707171699993],[-64.67735253899991,-42.510306218999915],[-64.56581153599996,-42.49263750299997],[-64.34578657799989,-42.53589516399995],[-64.27709151699992,-42.57697202199995],[-64.26129950799998,-42.74757895499994],[-64.15083356799988,-42.87118235499997],[-63.78187560099991,-42.81676653699998],[-63.63584859799994,-42.76583289599995],[-63.64360051699998,-42.70196329699991],[-63.58766958599989,-42.59919965499989],[-63.602233477999846,-42.341000324999925],[-63.748405487999946,-42.08099217899996],[-63.92899359199993,-42.09630809599997],[-64.07243360399985,-42.17773945799996],[-64.19017755099998,-42.207383567999955],[-64.05946361499997,-42.279449829999976],[-64.05645752899994,-42.37947828899996],[-64.12579363799995,-42.43092272299998],[-64.28409560299991,-42.41636687799996],[-64.47688256099997,-42.44127286499997],[-64.61299863399995,-42.424338905999946],[-64.56699355199993,-42.31902364499996],[-64.47901961099984,-42.236978055999884],[-64.87704450899997,-42.18770352999991],[-65.01896655899998,-42.09627037699994],[-65.08551752899996,-41.97158705299995],[-65.03009051799995,-41.73729089799997],[-65.00413561899995,-41.534102667999946],[-65.08792162699996,-41.41181589799993],[-65.17156949999998,-41.09583608499997],[-65.17765057099996,-40.98226196699994],[-65.11483759399994,-40.83167872999991],[-64.9298706159999,-40.73980284499987],[-64.80799858199993,-40.73089992299998],[-64.74123353799996,-40.825307644999896],[-64.43204457599995,-40.90605303299992],[-64.23162857699992,-41.00037777499995],[-63.95914463899993,-41.07799905999997],[-63.783622556999944,-41.16178422899998],[-63.4419475169999,-41.16516733199984],[-63.095184493999966,-41.15555446299993],[-62.326709481999956,-40.880804225999896],[-62.173252592999916,-40.59776814299988],[-62.40493057599991,-40.46811569099992],[-62.48482553599996,-40.334965470999975],[-62.436222567999835,-40.24386357099996],[-62.35452650399992,-40.20110496799998],[-62.33121861099994,-39.91588355499994],[-62.26150850199991,-39.859549453999875],[-62.11386161199994,-39.845564583999874],[-62.11546758499992,-39.66999187599998],[-62.01192861699991,-39.36308815499996],[-62.138240544999974,-39.28954919199987],[-62.26226052599998,-39.27289468599997],[-62.35733460999984,-39.10125493399994],[-62.29991957899989,-39.027854272999946],[-62.32287962299989,-38.90565199199989],[-62.37621652299998,-38.803251788999944],[-62.24351154999994,-38.79240694799989],[-62.1429136239999,-38.82710819399995],[-62.02942248699998,-38.940647610999974],[-61.80459553599991,-38.99014593399994],[-61.7135506329999,-38.97342990499993],[-61.55418751999986,-39.01269845099995],[-61.3745846249999,-38.98462293099993],[-61.14433659399998,-39.00276153699997],[-60.94012862199992,-38.985438992999946],[-59.784271548999925,-38.830942243999914],[-59.64358147199988,-38.78854305799996],[-59.10226860899991,-38.695122555999944],[-58.7037696299999,-38.57543836599996],[-58.49935948599989,-38.53520506299992],[-58.196395595999945,-38.44376855799993],[-57.710037507999914,-38.22228347199996],[-57.551589529999944,-38.10753538499995],[-57.55322651599994,-37.97717382399992],[-57.47449161099996,-37.81352269599989],[-57.3387225489999,-37.68134226199993],[-57.111644554999884,-37.48934068799997],[-56.983344606999935,-37.28574677499989],[-56.66903262499994,-36.896498566999924],[-56.690154517999986,-36.443368354999905],[-56.750404475999915,-36.34030547899994],[-56.998626491999914,-36.33700954699998],[-57.08069957399994,-36.29627349699996],[-57.25619148099992,-36.158260767999934],[-57.37622854899996,-35.969647158999976],[-57.387329540999986,-35.81911840399994],[-57.29913750299994,-35.67108209099996],[-57.126316572999826,-35.46699582399992],[-57.13451357199983,-35.39148560499996],[-57.30942561799998,-35.18391079099996],[-57.46804056299993,-35.055786191999914],[-57.570327609999936,-35.013383149999925],[-57.888332490999915,-34.83111397099992],[-58.18644359499996,-34.746472171999926],[-58.46561863799997,-34.542142493999904],[-58.53372562499993,-34.4420590499999],[-58.497409519999906,-34.32307039099993],[-58.38360959399995,-34.20366967699988],[-58.37765458699988,-34.05355079699996],[-58.41252548399996,-34.01555663499994],[-58.45798456799997,-33.838758827999925],[-58.554973581999946,-33.72344295099998],[-58.52318554899995,-33.45239768299996],[-58.41423455399996,-33.30173314099994],[-58.34675553999989,-33.32213368699996],[-58.429626577999954,-33.51248905599988],[-58.41500049199993,-33.90909187999995],[-58.23121653599998,-34.06903720099996],[-58.207744524999896,-34.164909744999875],[-58.10976460299986,-34.17209236499991],[-57.99289656499991,-34.27004764499998],[-57.85629652099993,-34.48298989499989],[-57.61392959999995,-34.43845432899997],[-57.126472476999936,-34.45938863499998],[-57.044189511999946,-34.54556029899982],[-56.81542558199993,-34.69518850299988],[-56.63907955899998,-34.7279324079999],[-56.553260604999934,-34.76802053599994],[-56.449043540999924,-34.760600539999984],[-56.38454462799996,-34.853665313999954],[-56.25726660199996,-34.910525965999966],[-56.14673260099994,-34.918521630999976],[-56.018897512999956,-34.88164142499994],[-55.782443520999834,-34.778625319999946],[-55.60317958999997,-34.777984103999984],[-55.329006530999834,-34.81587432999993],[-55.23268555599998,-34.90693985199988],[-55.05412654299994,-34.88647141199988],[-54.92100549199989,-34.959825637999984],[-54.44131051299996,-34.76410668999989],[-54.190006471999936,-34.674733808999974],[-53.98323061999997,-34.50857448099998],[-53.78885663199998,-34.4092650209999],[-53.75247162799997,-34.26376507299989],[-53.53871147199993,-34.0703881959999],[-53.47393059199993,-33.846647539999935],[-53.3955235869999,-33.76636868899993],[-53.41602354299994,-33.71600116199994],[-53.2333066029999,-33.55409900199987],[-53.116817594999986,-33.490833737999935],[-52.95348347099991,-33.35415389899998],[-52.70835454499996,-33.10400018899992],[-52.64759848699998,-33.00614096599992],[-52.48155952299993,-32.66696457199993],[-52.46632759299996,-32.534689757999956],[-52.358207579999885,-32.277155781999966],[-52.246402546999946,-32.15472366999995],[-52.161674581999875,-32.125717757999894],[-52.23055655899992,-31.978011692999928],[-52.14841860199988,-31.944639480999854],[-52.219974573999934,-31.8695542239999],[-52.22195052399991,-31.754131058999974],[-52.054244566999955,-31.67450750499995],[-52.00614551799998,-31.603527871999972],[-52.002475585999946,-31.44685937299994],[-51.91519147499997,-31.31117681199993],[-51.84402861399991,-31.32338337799996],[-51.780326484999875,-31.273203269999897],[-51.65366754599995,-31.273350288999893],[-51.61091648699988,-31.136416812999926],[-51.46839848499991,-31.097931136999932],[-51.500621537999905,-30.93309296399991],[-51.400871525999946,-30.788780060999898],[-51.374542626999926,-30.633582752999928],[-51.300598482999874,-30.639333576999945],[-51.25700353399998,-30.46436570599991],[-51.173255579999875,-30.38129786099995],[-51.28751349299995,-30.300621706999948],[-51.32398650699997,-30.232041142999947],[-51.25885761099994,-30.11803049599996],[-51.13119150199998,-30.260385218999943],[-51.020957572999976,-30.294845905999978],[-51.05249750099995,-30.353618636999897],[-50.93436061099993,-30.418268423999905],[-50.898517580999965,-30.324139818999925],[-50.78850962799993,-30.288232080999876],[-50.66142254099992,-30.291388202999883],[-50.60135262599988,-30.192240848999973],[-50.534465541999964,-30.27653446499994],[-50.569248595999966,-30.46960255199997],[-50.695423563999896,-30.434193704999984],[-50.68663446799991,-30.700608306999982],[-50.733520486999964,-30.802138467999953],[-50.87942159399995,-30.886318591999952],[-50.965167624999935,-30.903738197999928],[-50.95524948699989,-31.000671722999982],[-51.09732861299989,-31.09032942099998],[-51.17534250699998,-31.077357922999965],[-51.154045598999915,-31.229501703999972],[-51.17994350099997,-31.375710760999937],[-51.23350956199994,-31.455922891999876],[-51.34463146999997,-31.52556946699997],[-51.43494446499983,-31.490003710999872],[-51.587253535999935,-31.697838867999963],[-51.702342598999905,-31.778533963999962],[-51.80364259299995,-31.78279482099998],[-51.87052950999998,-31.867948251999962],[-52.047424546999935,-31.813547855999957],[-52.08718863099995,-31.864171365999937],[-52.01814655999988,-31.927726308999866],[-52.03554956999989,-32.03457964899991],[-51.9346505659999,-31.998072939999872],[-51.82406660899983,-31.910714900999892],[-51.45979362299988,-31.724288800999943],[-51.21203646699996,-31.53998114399991],[-51.05422551399994,-31.37669462899987],[-50.90100046799989,-31.253082008999968],[-50.68299454299995,-30.82736481099994],[-50.47414349899992,-30.59740779999987],[-50.387988598999925,-30.42750092299997],[-50.31501356999996,-30.331487730999868],[-50.288383592999935,-30.19735045799996],[-50.18460859099997,-29.927828683999962],[-50.29033657699995,-29.874781630999905],[-50.43817155599987,-29.886239021999927],[-50.51908860499998,-29.81627058199996],[-50.669242521999934,-29.809840823999878],[-50.81517061799991,-29.906271267999898],[-50.92452662699992,-29.845194685999957],[-50.975105544999906,-29.714122506999956],[-51.056278577999876,-29.73211577099994],[-51.08536562599994,-29.628855752999982],[-51.17085248899997,-29.63890548699993],[-51.35508755899997,-29.604270792999955],[-51.76776452699994,-29.602176993999876],[-51.845790489999956,-29.663165396999887],[-51.81594856799995,-29.771174266999935],[-51.875850509999964,-29.794868565999934],[-51.93550149699996,-29.70039412299991],[-52.06649756799993,-29.70095302899989],[-52.11895755299997,-29.647461063999913],[-52.21031560399996,-29.778605158999937],[-52.350151564999976,-29.792904517999943],[-52.353919565999945,-29.901977385999885],[-52.20206060299995,-29.886181018999935],[-51.89264247899996,-29.89747462799994],[-51.73652651499998,-29.948677662999955],[-51.891021586999955,-30.088957361999974],[-51.897048509999934,-29.949222653999925],[-51.99755859399994,-29.95692847299989],[-52.213249604999874,-30.037907547999964],[-52.17431247999997,-30.081503670999894],[-52.19831456299994,-30.17854616099993],[-52.27868259699994,-30.163659732999918],[-52.2697865479999,-30.052146892999815],[-52.38502162399993,-30.059978439999952],[-52.40963759699997,-30.18108922999994],[-52.55503847199992,-30.095543190999877],[-52.61448259399998,-30.141831580999963],[-52.83988957199989,-30.07866572599994],[-52.86234653499986,-30.161788891999947],[-52.97032154099992,-30.23430727499988],[-52.96039552399992,-30.089560523999864],[-53.11463947399989,-30.25593442899998],[-53.152748466999924,-30.184512063999875],[-53.05528252299996,-30.07108613899993],[-53.102287565999916,-30.0113503259999],[-53.254898553999965,-30.10182592999996],[-53.27448655799992,-29.9772115049999],[-53.5257225389999,-30.10725187199995],[-53.61833955199995,-30.069980229999885],[-53.613334549999934,-30.006809681999982],[-53.732055490999926,-29.98140262399994],[-53.82766350199995,-30.03350570799995],[-53.91268148199998,-30.03030868299993],[-54.07989156499997,-30.093678217999923],[-54.098594608999974,-30.02513604199993],[-53.8185045969999,-29.916359893999925],[-53.75033558399997,-29.776410105999958],[-53.908294560999934,-29.69991098999992],[-53.968769489999886,-29.597644897999885],[-54.09434163099996,-29.596117212999957],[-54.280158533999895,-29.484032223999918],[-54.40163460699989,-29.55556673899997],[-54.46849453399989,-29.508212505999893],[-54.60890147099991,-29.47885053199991],[-54.658428627999854,-29.519525057999942],[-54.73887662599998,-29.43547921199996],[-54.827678531999936,-29.405368397999894],[-54.93002358099983,-29.4464149129999],[-55.04739352699988,-29.45080166599996],[-55.111385502999894,-29.390502086999902],[-55.151996493999945,-29.291017948999922],[-55.09443259999995,-29.25506008699989],[-55.03160453599992,-29.334862007999902],[-54.96273747899994,-29.361831116999895],[-54.892837602999975,-29.263751952999883],[-54.83243559699997,-29.250591358999884],[-54.64764061599993,-29.27856528999996],[-54.424930597999946,-29.20947393299997],[-54.3514176189999,-29.34159669899998],[-54.259773577999965,-29.309419243999912],[-54.16584747999997,-29.327611493999882],[-54.06013156399996,-29.402908644999968],[-54.00661462099987,-29.498441888999878],[-53.648723615999984,-29.502759742999956],[-53.5589256049999,-29.301510414999882],[-53.495826469999884,-29.295715669999936],[-53.372604613999954,-29.22560239099988],[-53.224506610999924,-29.02177026399994],[-53.188548580999964,-29.12654220899998],[-53.03248961399993,-29.11045783999998],[-52.94256553899993,-29.042996594999977],[-52.92083361099992,-28.982828946999916],[-53.1144066249999,-28.838124608999976],[-53.19218448299989,-28.602346198999953],[-53.18101157399997,-28.358884097999976],[-53.09079748499994,-28.275441580999882],[-53.00788856099996,-28.34010896999996],[-52.87618254199998,-28.374882300999843],[-52.62174249499998,-28.366271906999884],[-52.48811350099999,-28.267537948999916],[-52.384181588999866,-28.21883188299995],[-52.30838051899991,-28.222462587999928],[-52.23534363199997,-28.290373940999928],[-52.148754547999886,-28.200685397999905],[-52.13766461999995,-28.083346296999878],[-52.21656062499994,-27.996142987999974],[-52.22130159699998,-27.83680971399997],[-52.280712526999935,-27.707704097999965],[-52.33560946599988,-27.697767686999896],[-52.477107558999876,-27.77161543899996],[-52.541267507999976,-27.757255226999916],[-52.63573055099988,-27.461390807999976],[-52.802371502999904,-27.435718882999936],[-52.85433561499997,-27.47139829799994],[-52.824680608999984,-27.749500289999958],[-52.771839582999974,-27.85606193999996],[-52.813182481999945,-27.904112875999886],[-52.804889593999974,-27.999140859999955],[-52.71835348499991,-27.978645932999882],[-52.74193546699996,-28.091670197999917],[-52.86609257499998,-28.079787675999967],[-52.90851556599995,-28.015398398999935],[-53.04481855599994,-28.071330838999984],[-53.14665247699992,-27.974932078999927],[-53.23226959399989,-27.938918393999984],[-53.20343752399998,-27.81094668099996],[-53.24245058899993,-27.627049736999822],[-53.356231571999956,-27.545658942999864],[-53.527065487999835,-27.555926605999957],[-53.6352275779999,-27.68990395299994],[-53.70910651099996,-27.855316117999905],[-53.874999629999934,-27.876532055999917],[-53.903404558999966,-27.769156523999982],[-53.9785045669999,-27.779547065999964],[-53.985885503999896,-27.85882863799992],[-54.07008758799992,-27.934711516999982],[-54.17832947499994,-27.789465706999977],[-54.23119346699991,-27.675494622999906],[-54.31377046899996,-27.700724486999945],[-54.30027359299993,-27.86689052099996],[-54.4046705319999,-27.989869300999942],[-54.300743481999916,-28.119288065999854],[-54.05706060199998,-28.059563316999913],[-53.93758746899988,-28.103577528999892],[-53.65693653999995,-28.02074102399996],[-53.62911951799998,-28.144136887999878],[-53.47804258599996,-28.14012799199992],[-53.43741952499994,-28.294212684999934],[-53.49513261599992,-28.382540174999917],[-53.65072655499995,-28.376286269999923],[-53.73946760799993,-28.325099495999893],[-53.810291504999896,-28.422694520999983],[-53.806430632999934,-28.531612993999943],[-53.913284475999944,-28.549455215999956],[-54.003238557999964,-28.62430812599996],[-54.11268659999996,-28.585818761999917],[-54.185749470999895,-28.465281796999932],[-54.301010529999985,-28.383138977999977],[-54.40912249599995,-28.39946340499995],[-54.45383458599997,-28.457377997999913],[-54.568805630999975,-28.459887874999936],[-54.6676525769999,-28.321045503999926],[-54.73064760899996,-28.2976224439999],[-54.72336960199988,-28.17251985599995],[-54.84427252099988,-28.19551661399987],[-54.824191491999954,-28.327229504999934],[-54.898769475999984,-28.314162787999976],[-54.94223048199996,-28.181498215999966],[-55.031913492999934,-28.202904422999836],[-55.1831855559999,-28.199465662999955],[-55.2411915109999,-28.135636129999966],[-55.360301539999966,-28.07444370999997],[-55.38261751899995,-27.984546456999965],[-55.30442056499993,-27.912041653999893],[-55.5871845719999,-27.781781010999964],[-55.62936750599994,-27.703194297999914],[-55.642764468999985,-27.52046830599994],[-55.61114457799994,-27.475411049999934],[-55.65717363099998,-27.37160268799994],[-55.760425602999874,-27.44423238199994],[-55.92826851999996,-27.29433293999989],[-56.19955049299989,-27.252567760999966],[-56.22094747999989,-27.189908339999874],[-56.17563256499989,-27.078057206999972],[-56.16995952499997,-26.875913026999967],[-56.24230557499993,-26.709466534999876],[-56.18487947999989,-26.559447398999964],[-56.17063560899999,-26.454848958999946],[-56.10974158499994,-26.288142627999946],[-56.1470264699999,-26.155883570999947],[-56.05370755699994,-26.01323715799998],[-56.115879485999926,-25.95071603899987],[-56.23372250599988,-25.97291383299995],[-56.35076857599989,-26.134819512999968],[-56.500415554999904,-26.083189839999875],[-56.56835557399984,-26.1041258219999],[-56.64418748999992,-26.204633222999917],[-56.744010592999985,-26.235808873999872],[-56.91957056099989,-26.169943710999917],[-56.95651648099988,-25.962077373999932],[-56.933902609999905,-25.8702977129999],[-56.74740258099996,-25.777514067999903],[-56.598380556999984,-25.772158031999936],[-56.58185949099993,-25.706729230999883],[-56.45285462499993,-25.692112029999976],[-56.47731050399989,-25.570209652999893],[-56.457038534999924,-25.40584036399997],[-56.45883159199997,-25.22889972899992],[-56.52175856299988,-25.03527910699995],[-56.47822547199996,-24.97296904399991],[-56.45159951799991,-24.8233220649999],[-56.5049174749999,-24.65710825499997],[-56.55736153499993,-24.596469040999978],[-56.69275257299984,-24.52401285199994],[-56.65261851199995,-24.430064457999947],[-56.784072569999864,-24.382016706999934],[-56.826969473999895,-24.329728382999974],[-56.71479748099995,-24.255032046999872],[-56.75337954899999,-24.188999245999923],[-56.67724957199988,-24.11962675999996],[-56.755302524999934,-23.908429118999948],[-56.77010748099991,-23.81272689499997],[-56.868347576999895,-23.728130189999888],[-57.13897659999998,-23.768387297999936],[-57.17026154999991,-23.682775711999966],[-57.14672047199997,-23.611447224999893],[-57.17441159799989,-23.53652792999992],[-57.04257146999993,-23.521324833999927],[-57.01708562299996,-23.443392747999894],[-57.12085760699995,-23.428772361999904],[-57.26629653599997,-23.486292501999912],[-57.292148503999954,-23.44993851199996],[-57.1364445939999,-23.32495695899985],[-56.993251512999905,-23.31161145999988],[-56.7597005099999,-23.14493295699998],[-56.66738155799993,-23.09933842099997],[-56.53765852999999,-22.968554076999965],[-56.37598050299994,-22.843904615999975],[-56.25410058899996,-22.82746351299994],[-56.138965593999956,-22.705051012999945],[-56.20195056699998,-22.454782303999934],[-56.14091857699998,-22.376121494999893],[-56.12262758799994,-22.290508735999936],[-55.85555651599992,-22.263897199999974],[-55.748142593999944,-22.365597009999874],[-55.75086252199992,-22.48488356199988],[-55.54562357599997,-22.674429741999916],[-55.56139362399989,-22.58617031299991],[-55.41696152899988,-22.47036644099984],[-55.32640847699997,-22.44898755899993],[-55.248874530999956,-22.379462018999902],[-55.14231153999998,-22.35324342599995],[-55.17708956499985,-22.252562016999946],[-55.07437554399996,-22.225181523999936],[-54.998443547999955,-22.332311633999893],[-54.79586049199992,-22.419637151999893],[-54.73894451899997,-22.320248398999922],[-54.83591458999996,-22.230685919999928],[-54.94546153799996,-22.21007833999994],[-55.065067607999936,-22.081602204999967],[-55.10248157399997,-21.968331176999925],[-55.04877855299992,-21.811677429999975],[-54.95869052799986,-21.791219550999983],[-54.85098659299996,-21.877276885999947],[-54.67312947999994,-21.924529529999973],[-54.60528149399988,-21.906452614999978],[-54.542388553999956,-21.666823389999934],[-54.47803850399998,-21.597068353999873],[-54.41719862799988,-21.612297265999928],[-54.22961062899998,-21.725527222999972],[-54.02773651399991,-21.734973794999974],[-53.98804451399991,-21.799768085999915],[-53.81887457399989,-21.95073320299997],[-53.6193276109999,-22.058477203999928],[-53.48207059299989,-22.092576462999887],[-53.30490146799997,-22.180853660999958],[-52.90288158599998,-22.12953160299992],[-52.54948847799989,-21.99809749399998],[-52.2647134849999,-21.947006273999875],[-52.16819352299996,-21.867448601999968],[-51.97144661799996,-21.60934163899998],[-51.83703257499997,-21.3172886399999],[-51.84081650099989,-21.17390445099994],[-51.7608145879999,-21.03033837499987],[-51.6416624819999,-20.986572937999938],[-51.62813157499994,-20.712958113999946],[-51.529079607999904,-20.597424642999954],[-51.49928261299988,-20.43809555999991],[-51.427299498999844,-20.360083845999952],[-51.38098948399983,-20.219736085999898],[-51.20656157499997,-20.19807221899987],[-51.114788619999956,-20.162921366999967],[-51.09813662899995,-20.02350215299998],[-51.22754248499996,-20.000189397999918],[-51.17910346599996,-19.761035259999915],[-51.09976154399993,-19.598908465999955],[-51.04669957099992,-19.550104498999872],[-51.00910556199989,-19.449009190999902],[-50.86671462899983,-19.254871572999946],[-50.82809852999992,-19.121592438999926],[-50.88383449799994,-19.00298130099992],[-51.01270659499994,-18.94070795099998],[-51.14876952599991,-18.77985369699985],[-51.2019956179999,-18.65299610699992],[-51.1904185329999,-18.537841161999893],[-51.112453589999916,-18.546833602999982],[-51.004558546999874,-18.70630685499998],[-50.91009148099988,-18.794994766999935],[-50.86376151699989,-18.79917733699989],[-50.847751578999976,-18.616174405999914],[-50.674114586999906,-18.464534545999925],[-50.6029855889999,-18.454040905999875],[-50.454654568999956,-18.374256921999915],[-50.435844571999894,-18.30016106599993],[-50.22803858399993,-18.16992892199994],[-50.176307488999896,-18.19097588099993],[-50.13830561699996,-18.316891344999874],[-50.05733157099991,-18.425122836999947],[-49.92293546399992,-18.476213721999954],[-49.86516554399992,-18.465966342999934],[-49.78425251799996,-18.321784866999963],[-49.711543530999904,-18.104535994999935],[-49.65811157999991,-18.05428413899989],[-49.59558157699996,-18.07245308699993],[-49.59582146699995,-18.17449571799989],[-49.55408059499996,-18.26683428399997],[-49.56167962799998,-18.339358868999966],[-49.508007619999944,-18.504564838999954],[-49.404392543999904,-18.618393095999977],[-49.247951529999966,-18.51332862199996],[-49.28702561599994,-18.27772857799988],[-49.24155848499993,-18.188740929999938],[-49.284923601999935,-18.012899497999967],[-49.199657517999924,-17.973842845999968],[-49.18043546699988,-18.12430873699998],[-49.09943359299996,-18.14725654399996],[-48.99750160399992,-18.126879801999905],[-48.97642161999988,-18.012555671999962],[-49.01435861699997,-17.95345319599994],[-48.90940059299987,-17.873356902999888],[-48.79962146599985,-17.869063356999902],[-48.672340589999976,-17.9723059399999],[-48.651576603999956,-18.072200959999975],[-48.51438848599997,-18.197756336999873],[-48.436313571999904,-18.185025064999877],[-48.31355255299991,-18.21600021999984],[-48.36259456599987,-18.34310859699991],[-48.361026478999975,-18.41862099499997],[-48.472167497999976,-18.427199704999907],[-48.439170627999886,-18.52418083999993],[-48.27515052899997,-18.572628910999924],[-48.220210505999944,-18.645599579999953],[-48.16187262699992,-18.646249680999915],[-48.09485646199988,-18.716298418999884],[-47.97002460999988,-18.79721647399998],[-47.95391459199982,-18.889141979999863],[-47.99105446999994,-18.964231594999887],[-48.23134653499994,-18.75376619699989],[-48.335132600999884,-18.63156726899996],[-48.50185351699997,-18.69430866399989],[-48.53665953799998,-18.63291038499989],[-48.64111347399995,-18.609037718999957],[-48.62161247299997,-18.516502345999925],[-48.6876945599999,-18.50573998199991],[-48.81567750399995,-18.614584526999977],[-48.888076527999885,-18.623517958999912],[-48.85044060999991,-18.47861144899997],[-48.894794623999985,-18.41638839099994],[-48.9637605879999,-18.46868023499985],[-49.0647735849999,-18.610590549999927],[-49.161418604999824,-18.620465940999964],[-49.31033350899992,-18.781533597999953],[-49.2785225099999,-18.861593848999917],[-49.212711493999905,-18.889754193999977],[-49.20809155699993,-18.959486934999973],[-49.38240446499998,-18.926725762999865],[-49.453426509999986,-18.94229313699998],[-49.596858475999966,-18.891985959999886],[-49.71310457599992,-18.87602379899988],[-49.64524854399991,-18.791870998999855],[-49.48434450099995,-18.854129261999958],[-49.44336654999995,-18.795105742999965],[-49.47938157599998,-18.67503782999995],[-49.57082361399989,-18.640922813999907],[-49.73330362199994,-18.61875921799998],[-49.839061614999935,-18.751395291999927],[-49.822376597999835,-18.825300878999883],[-49.88682153199994,-18.851916438999922],[-49.84542448499991,-18.961563802999876],[-49.89508860299998,-18.993338088999963],[-49.955627568999944,-18.91768738899998],[-50.022602495999934,-18.776856663999922],[-50.09147257099988,-18.757676018999916],[-50.21162748799992,-18.817265483999904],[-50.322849475999874,-18.917773554999883],[-50.35042560199997,-19.04272392699994],[-50.39760247399994,-19.10756834199998],[-50.5184856109999,-19.128010126999982],[-50.543147516999966,-19.20923127199984],[-50.58367150499987,-19.497621547999927],[-50.68531750299991,-19.548288475999982],[-50.80683162999998,-19.561715781999965],[-50.935600628999964,-19.732584733999943],[-50.76187160399991,-19.738076556999943],[-50.672843554999986,-19.763639181999906],[-50.49505249199996,-19.719371669999873],[-50.36087749999996,-19.657058253999935],[-50.24266047899994,-19.679022025999927],[-50.16695747599988,-19.761054370999943],[-49.922759611999936,-19.835283834999927],[-49.696502540999916,-19.783728089999954],[-49.66553861699998,-19.663180898999883],[-49.695003520999876,-19.60818723299991],[-49.813449535999894,-19.55562414999997],[-49.683101553999904,-19.497598413999867],[-49.5781705199999,-19.548345472999927],[-49.517166524999936,-19.623790312999972],[-49.56440357899993,-19.683094792999896],[-49.57510760499997,-19.81656503399995],[-49.44672048499996,-19.86622026599997],[-49.365135564999946,-19.759553171999983],[-49.30118549999992,-19.76712873599996],[-49.283252585999946,-19.930301424999925],[-49.34168249699991,-20.03486365599997],[-49.34464650599995,-20.098049961999948],[-49.26901256999997,-20.2610027099999],[-49.30102557299995,-20.33118756999994],[-49.221805523999876,-20.46413427699997],[-49.26992753899992,-20.531602395999926],[-49.33629947199995,-20.531070479999983],[-49.40419758099995,-20.451465700999904],[-49.368522524999946,-20.404059500999892],[-49.40905355299992,-20.330136646999847],[-49.53743748799985,-20.239286706999962],[-49.614532556999905,-20.242523629999937],[-49.795360550999874,-20.15249276999998],[-49.93905252299993,-20.172045570999956],[-49.98073958299989,-20.304480143999854],[-50.055824503999986,-20.352193457999874],[-50.1822705429999,-20.37778005499996],[-50.209651537999946,-20.45112070199997],[-50.305450488999895,-20.45019986599982],[-50.394931496999845,-20.53734902799988],[-50.311042559999976,-20.65580744899995],[-50.268497527999955,-20.672538229999873],[-50.16732460399987,-20.518321939999964],[-50.09910161199997,-20.613176585999895],[-49.969314545999964,-20.681440816999896],[-49.856487591999894,-20.649347515999978],[-49.74328948599998,-20.702046719999885],[-49.58591053699996,-20.701186736999887],[-49.5060345199999,-20.773465731999977],[-49.40004753299996,-20.825071936999905],[-49.33835957599996,-20.65957125799997],[-49.21768950699993,-20.68635060099996],[-49.17741362399994,-20.75104397399997],[-49.18098062599995,-20.89975854999983],[-49.06682949799995,-20.79951618399997],[-49.05456560099998,-20.729068131999952],[-48.986312600999895,-20.693886098999883],[-48.978420535999874,-20.588123244999963],[-49.13169453299997,-20.50108103599996],[-49.14288353499995,-20.4511627789999],[-49.09142652899993,-20.21282621199998],[-48.9999425819999,-20.227059521999934],[-49.009799531999874,-20.41310910699991],[-48.90710847799994,-20.473736585999916],[-48.827842495999846,-20.440300335999893],[-48.74024154899996,-20.515257348999967],[-48.72951556299995,-20.62127316899995],[-48.61213254099994,-20.873389081999903],[-48.52106450399998,-21.001826828999924],[-48.48803762599982,-21.126175044999968],[-48.60575055999993,-21.247569477999946],[-48.53494661199994,-21.36207314899991],[-48.5217055519999,-21.48395339699988],[-48.61460453199993,-21.48162658099983],[-48.65597961699996,-21.36337787599996],[-48.859947531999865,-21.339884406999886],[-48.87763552699994,-21.24334164599992],[-48.993350549999946,-21.226954521999915],[-49.06426949799993,-21.37687139899998],[-49.137512578999974,-21.46271851599988],[-49.12184948399994,-21.546794871999907],[-49.14363052999994,-21.693312047999882],[-49.07567257399995,-21.713108929999976],[-48.99087956499994,-21.79051982999988],[-48.8667335209999,-21.860276038999928],[-48.7933125749999,-21.973607751999964],[-48.64819349999982,-22.12118088099993],[-48.574592510999935,-22.147323701999824],[-48.52774052199993,-22.266374219999932],[-48.38180957599997,-22.33458145399993],[-48.39757560099997,-22.382329132999814],[-48.50740853999986,-22.398190040999964],[-48.50764055099995,-22.539051611999867],[-48.64311959899993,-22.67066676999997],[-48.72631853699994,-22.63469683799991],[-48.738445474999935,-22.53449286199998],[-48.7883875359999,-22.489970203999974],[-48.8386035179999,-22.353798642999948],[-48.829177564999895,-22.236502792999886],[-48.93097661799993,-22.10733883799992],[-48.98670956799998,-21.977071657999886],[-49.100116550999985,-21.94569031499998],[-49.197509571999944,-21.95703572399998],[-49.33616653499996,-22.009154062999983],[-49.35108162799992,-22.078587065999955],[-49.44380961699983,-22.13315124499985],[-49.46628149999992,-22.248760990999926],[-49.34177754799998,-22.275292564999972],[-49.272495585999934,-22.337478406999935],[-49.26856246199986,-22.432415194999976],[-49.364482614999986,-22.40811354399989],[-49.4649844839999,-22.460751895999977],[-49.50935358599992,-22.351530499999967],[-49.623378481999964,-22.503252670999927],[-49.69704049099994,-22.475489124999854],[-49.91819348599995,-22.484862439999915],[-50.005226474999915,-22.43687118299988],[-50.20090451999988,-22.43103855199996],[-50.25524858899996,-22.38732575299997],[-50.48155947199996,-22.33532861699996],[-50.63777551599992,-22.34579811699996],[-50.6940004839999,-22.396067407999908],[-50.78958854699994,-22.372026432999917],[-50.91003750099998,-22.289150867999865],[-51.02890059999993,-22.300210285999924],[-51.02021761799995,-22.061238202999903],[-51.077442547999965,-22.027641020999965],[-51.19828058999991,-22.138466879999953],[-51.25472248199998,-22.155277121999916],[-51.34680154499995,-22.276522692999947],[-51.312221499999964,-22.36489695399996],[-51.33213455499998,-22.458511915999964],[-51.277450515999874,-22.580635406999875],[-51.20178254999996,-22.542520545999935],[-51.06706658999997,-22.57806970599995],[-50.96212750899991,-22.49751877899996],[-50.86375447599994,-22.58465922299996],[-50.66416560299996,-22.61866544299994],[-50.5400395069999,-22.717238467999948],[-50.42913049999993,-22.688894726999933],[-50.30266954099994,-22.72638882399997],[-50.16685856999993,-22.698034521999887],[-49.85881055199991,-22.772454422999942],[-49.67350762799998,-22.7129236319999],[-49.54099661099997,-22.718583260999935],[-49.43036252999991,-22.872963164999874],[-49.30679651299994,-22.939546656999937],[-49.302761464999946,-23.125018225999952],[-49.25539046899996,-23.49984972799996],[-49.28169656899996,-23.65578112199995],[-49.33351148299994,-23.69486208099994],[-49.29533761399995,-23.791644228999814],[-49.30813258899997,-23.854121929999963],[-49.538040481999985,-23.860095544999922],[-49.678501564999976,-23.891597083999955],[-49.716045618999885,-23.965472327999976],[-49.660568483999896,-24.059309745999826],[-49.56585348099998,-24.063087637999956],[-49.60153960099984,-24.147224343999824],[-49.682380542999965,-24.21388494899992],[-49.74883260599995,-24.221416759999954],[-49.84993746899994,-24.170808001999887],[-49.86642450499983,-24.07407195399992],[-49.97766158099995,-24.0914531709999],[-50.04262149799996,-24.175611837999895],[-50.32053355599999,-24.31780981999998],[-50.183143601999916,-24.33856575899995],[-50.19506048899996,-24.40213059199982],[-50.299175628999876,-24.41671594199994],[-50.433185496999954,-24.388839240999914],[-50.454841484999974,-24.436719018999952],[-50.37387447899994,-24.642217803999984],[-50.20696647999989,-24.713381502999937],[-50.16179657099997,-24.8032401989999],[-50.15488854199998,-25.20313476499996],[-49.94961958799996,-25.28378895799989],[-49.855682593999916,-25.256744243999947],[-49.81716959199997,-25.37770466199993],[-49.76205857899993,-25.45204929399995],[-49.76970656299994,-25.520025857999883],[-49.67113454299982,-25.527031452999893],[-49.62955057999994,-25.45177419999993],[-49.69749059999998,-25.332213726999896],[-49.77242648999999,-25.28973189499993],[-49.80358856199996,-25.18680061499998],[-49.976623565999944,-24.971961874999977],[-50.04316749499992,-24.84180835299992],[-50.16159456699995,-24.709206811999934],[-50.140396565999936,-24.60511866199994],[-50.056621622999955,-24.489229294999973],[-49.88718446799993,-24.449043433999975],[-49.76484656799988,-24.378186008999876],[-49.59086256499995,-24.331240142999945],[-49.43616850699988,-24.257501858999944],[-49.37309250599998,-24.389812211999867],[-49.21186056299996,-24.363688501999945],[-49.07213256099993,-24.211228220999942],[-48.96112850299983,-24.150667126999906],[-48.851882464999846,-24.14514747599992],[-48.86062260999995,-23.919801516999883],[-48.75109460499982,-23.90160859599996],[-48.58218752099998,-23.928373186999977],[-48.384822534999955,-23.92705940699983],[-48.404716478999944,-23.852515956999923],[-48.7477455319999,-23.8131939349999],[-48.89604553899994,-23.72903023899994],[-48.82337158799993,-23.68525356999993],[-48.63897357399998,-23.723926665999898],[-48.589866517999894,-23.645750498999917],[-48.47384253799993,-23.635078156999896],[-48.37461454999993,-23.656149087999836],[-48.24976761099998,-23.645987538999975],[-48.10232959899997,-23.692887974999906],[-47.99122948399997,-23.683271585999876],[-47.91442157899985,-23.630864238999948],[-47.95196546399984,-23.482972597999947],[-47.99938960199995,-23.467302461999964],[-48.20390351299983,-23.502609720999885],[-48.29443762299985,-23.556768046999935],[-48.45235452299994,-23.558321883999895],[-48.58798260099991,-23.454297268999937],[-48.78859758699997,-23.45198134899988],[-48.881240582999965,-23.53688114399995],[-48.953319585999964,-23.399489847999916],[-48.851055505999966,-23.37146445199994],[-48.69266553099982,-23.36114297599994],[-48.551784513999905,-23.391683445999888],[-48.50523360299985,-23.43507907399993],[-48.37136052799997,-23.471536496999818],[-48.32470350199992,-23.456440018999956],[-48.2897915339999,-23.35605415499998],[-48.32301354299989,-23.188296900999944],[-48.46332961899998,-23.184262187999877],[-48.63554755499996,-23.21039176499994],[-48.60618256299995,-23.097730436999825],[-48.390388621999875,-23.03149211199991],[-48.371028604999935,-22.96173556699989],[-48.2365984679999,-23.014145762999874],[-48.22285449299994,-23.092437767999968],[-48.06614659899992,-22.90756449999992],[-48.01541160999989,-22.93913862599993],[-47.695083600999965,-22.8571119799999],[-47.693290543999865,-22.75399026399998],[-47.8069224969999,-22.619587619999947],[-47.68298750899993,-22.385971739999945],[-47.62972252599991,-22.32687999399991],[-47.60580862099994,-22.200776606999852],[-47.46414557199989,-22.183540563999884],[-47.44502661899992,-22.117222107999908],[-47.48057561099989,-22.012838746999932],[-47.455429565999964,-21.94388753499993],[-47.54167549399989,-21.914464204999945],[-47.5492175309999,-21.762688222999884],[-47.62898257099988,-21.75457470799995],[-47.64640837999991,-21.696029796999937],[-47.53627050799997,-21.601747131999844],[-47.50815156999988,-21.72832694599998],[-47.355083600999876,-21.70358239399991],[-47.252365555999916,-21.72167439699996],[-47.21957052199991,-21.548187943999892],[-47.30685060899992,-21.42624265199987],[-47.36087750699994,-21.39386822199998],[-47.39178460199986,-21.20570371599996],[-47.24075360299997,-21.23255916599993],[-47.14489748799997,-21.22702258299995],[-47.089347597999904,-21.282119347999924],[-47.19525562699994,-21.395791365999912],[-47.207645587999934,-21.486868287999982],[-47.15954251699998,-21.521818476999954],[-47.13284648999996,-21.62319373999992],[-47.19613656499996,-21.801902956999925],[-47.18091150799995,-21.98745515899998],[-47.24805457599996,-22.183580461999895],[-47.332645580999895,-22.29034897699995],[-47.26956957999994,-22.303817186999936],[-47.219673618999934,-22.431290343999876],[-47.34234646099992,-22.43850900699988],[-47.52299156199996,-22.600043535999816],[-47.523525488999894,-22.701923221999948],[-47.428535558999954,-22.705565996999894],[-47.159061562999966,-22.79601712599998],[-47.0677796199999,-22.764196906999814],[-47.048767618999875,-22.69899726799997],[-46.91428350299998,-22.524983424999903],[-46.78067361999996,-22.479022767999936],[-46.755313500999875,-22.332258827999965],[-46.78684655599989,-22.15471821699998],[-46.77379962099997,-22.043030026999872],[-46.81282861199992,-21.913948047999952],[-46.86694754299998,-21.83263034399988],[-46.927215605999834,-21.62702175599992],[-46.94751758199982,-21.280637594999973],[-46.91383356299997,-21.196320174999983],[-47.06213759299982,-21.100986586999966],[-47.12682761299993,-21.092165974999887],[-47.13083248699985,-20.958588445999965],[-47.02503157799998,-20.93872936999992],[-46.919387578999874,-20.953121600999964],[-46.848686560999965,-20.921915439999964],[-46.965976543999886,-20.700886832999856],[-46.97147356399995,-20.61888549999992],[-46.86851847899993,-20.59686976099988],[-46.81658554799992,-20.692121205999968],[-46.65624661399994,-20.7705717959999],[-46.56139347699997,-20.789981769999883],[-46.475406549999946,-20.874999077999973],[-46.34719846699994,-20.843102751999822],[-46.20616154699991,-20.88683533099993],[-46.09330357899995,-20.981326201999934],[-46.00632054599993,-20.97462235599994],[-45.75358554599984,-21.089461134999908],[-45.7538225859999,-21.19903021199997],[-45.581302566999966,-21.195546189999902],[-45.54763447299996,-21.089560208999956],[-45.44034158599993,-21.151831546999972],[-45.344734580999955,-21.128228107999917],[-45.45939247899997,-20.987736681999934],[-45.405860615999984,-20.75832147699998],[-45.27126351199996,-20.764049166999882],[-45.310184543999924,-20.61276469899991],[-45.435127539999826,-20.570972026999925],[-45.48212051199994,-20.390478302999895],[-45.64085062399994,-20.467066937999903],[-45.68651154499997,-20.382192791999955],[-45.88419353499984,-20.331011717999957],[-45.937015617999975,-20.27957968899989],[-45.86476562399997,-20.21108143499987],[-45.741405466999936,-20.25453389199987],[-45.65349556399991,-20.232881256999974],[-45.57879654499993,-20.280493483999976],[-45.541656499999874,-20.21989299499984],[-45.38090148799995,-20.12492720499995],[-45.213684530999956,-20.116071723999823],[-45.1274416199999,-20.02707804099998],[-45.047714465999945,-20.028527942999972],[-45.02367047399997,-20.163627122999856],[-45.09191861199997,-20.372256380999886],[-45.04323953499994,-20.490863495999918],[-44.92272553699996,-20.476845433999927],[-44.66075149999995,-20.329821822999975],[-44.63047455699996,-20.173977599999944],[-44.64130347299994,-20.009651896999912],[-44.80817459299993,-19.75817032599997],[-45.033260543999916,-19.645855840999843],[-44.93029758099988,-19.618416339999953],[-44.78630855399996,-19.647346813999945],[-44.77474957399994,-19.54521080899997],[-44.64526760999985,-19.622846342999935],[-44.531806480999876,-19.864234425999882],[-44.229850597999985,-19.90420990099983],[-44.03982547699991,-19.877935651999962],[-43.8346596209999,-19.82876724099998],[-43.566173515999935,-19.8757506579999],[-43.449729601999934,-19.83513581099993],[-43.33921856699993,-19.630324844999905],[-43.36223259099995,-19.562829736999845],[-43.35671646099996,-19.429603408999924],[-43.31589860399998,-19.29486247099993],[-43.37170447699992,-19.170800580999924],[-43.547168555999974,-18.985165565999864],[-43.55690346599988,-18.85880183699993],[-43.46568254299996,-18.650777416999915],[-43.470573550999916,-18.607978748999926],[-43.63678350599997,-18.591965625999876],[-43.58024253999997,-18.491755614999875],[-43.48326861399994,-18.513452505999908],[-43.46138346499998,-18.421483917999865],[-43.37189055499988,-18.34314866199992],[-43.29294559999994,-18.35745673899993],[-43.206718614999886,-18.22892042099994],[-43.232879540999875,-18.184842170999843],[-43.17746359399996,-18.071799968999983],[-43.15585353899991,-17.819612139999947],[-43.08869152799997,-17.900897321999878],[-42.963752554999985,-17.98669900899995],[-42.98137651199988,-18.055450060999817],[-42.897952602999965,-18.085557186999893],[-42.739570507999986,-18.082759307999936],[-42.67367148199992,-18.059328702999835],[-42.6181065049999,-17.982028277999916],[-42.75641645699983,-17.880903465999893],[-42.76794861499991,-17.758288961999938],[-42.70820257599985,-17.677965854999968],[-42.68822447799994,-17.58475255299993],[-42.6118395229999,-17.58813532199997],[-42.50364256399996,-17.63890635399997],[-42.49703561299998,-17.71651137799995],[-42.320972562999884,-17.739370168999926],[-42.27275449199993,-17.667812519999927],[-42.334270619999984,-17.598959543999854],[-42.28264262299996,-17.524905261999947],[-42.26654048399996,-17.43093205699995],[-42.340312463999965,-17.315456923999875],[-42.30245257999991,-17.14973244899994],[-42.2412645199999,-17.032067626999947],[-42.10562554499995,-17.09763355599995],[-42.01517860699994,-17.042192965999902],[-41.98952059499993,-16.975838132999968],[-42.03202857899993,-16.886381599999936],[-41.86988049399997,-16.840241402999936],[-41.822864555999956,-16.86942467499989],[-41.69215346899995,-16.86395397399997],[-41.59566150299992,-16.78317204099983],[-41.67840949499998,-16.61794025399996],[-41.855838459999916,-16.537623516999872],[-42.04446749099992,-16.609319801999902],[-42.15658550499995,-16.57580409199994],[-42.245803487999865,-16.484005655999965],[-42.213306513999896,-16.396839394999972],[-42.26418349299996,-16.287485229999845],[-42.284404498999834,-16.155535465999947],[-42.24299957399995,-16.10394066099991],[-42.2679484759999,-16.00172821299998],[-42.37311956799988,-15.974178908999932],[-42.41040746999994,-15.911230815999943],[-42.283424486999934,-15.760911608999834],[-42.14353957499992,-15.80520761999992],[-42.11051554699998,-15.93391459299994],[-42.04317852199995,-15.996834522999961],[-41.91733547799993,-16.012521421999907],[-41.78564856999992,-15.953183414999955],[-41.76214956899992,-15.860025266999969],[-41.87102546199992,-15.772013774999948],[-41.934452496999825,-15.801453868999943],[-41.9783555649999,-15.880304778999971],[-42.074092489999884,-15.80587951299998],[-42.066436458999874,-15.766916068999876],[-41.955368530999976,-15.69003306199994],[-42.03569046499996,-15.567032990999962],[-42.129661489999876,-15.57258365499996],[-42.112518486999875,-15.456131023999944],[-42.20771746099996,-15.4605756119999],[-42.27130157299996,-15.302277000999936],[-42.322841559999915,-15.314897128999974],[-42.33792160999991,-15.537516789999927],[-42.415283558999874,-15.463759394999897],[-42.468799495999974,-15.27860650599996],[-42.47941953499998,-15.169640590999961],[-42.562347569999986,-15.078182459999937],[-42.63988855699989,-15.041452624999977],[-42.68138149199996,-15.154332385999965],[-42.60986759699989,-15.22715285199996],[-42.59249861699993,-15.39453392699994],[-42.686424547999934,-15.439892930999974],[-42.71136858899996,-15.506716647999951],[-42.716598560999955,-15.70623393999989],[-42.65672645899997,-15.650110727999902],[-42.541511499999956,-15.764341147999971],[-42.504253604999974,-15.85902329399994],[-42.57855649499993,-15.98076255899997],[-42.686454554999955,-16.056219636999913],[-42.68153353999992,-15.8566793789999],[-42.77015657599998,-15.824319364999894],[-42.77841157699993,-15.494342444999916],[-42.714321532999975,-15.409628057999953],[-42.73238755199992,-15.05436796499987],[-42.705123567999976,-14.907665547999954],[-42.79646250799982,-14.801788196999894],[-42.92794456199994,-14.78456539799987],[-42.91944849699996,-14.855233725999938],[-43.00188451499997,-14.947990716999925],[-43.064613504999954,-15.06472632099991],[-43.069999547999885,-15.135129780999932],[-42.9553035969999,-15.129941047999864],[-42.9207994919999,-15.232206468999948],[-42.9817424659999,-15.343423259999895],[-42.948242513999844,-15.459835657999975],[-42.98129252599989,-15.601524690999952],[-43.070976542999915,-15.53375012999993],[-43.116783475999966,-15.545741280999891],[-43.114559589999885,-15.76168039699985],[-43.05031950999995,-15.824170334999849],[-43.11334656099996,-15.907584017999909],[-43.21995548399997,-15.834259798999938],[-43.230945499999905,-15.957091058999879],[-43.390560573999835,-16.095984055999963],[-43.4792255189999,-16.368765047999943],[-43.50330756499994,-16.511230915999874],[-43.566699563999975,-16.62567088399993],[-43.674217588999966,-16.612281798999845],[-43.853721576999874,-16.71697210499991],[-43.91633657399984,-16.604203152999958],[-43.849121588999935,-16.471085454999923],[-43.850311483999974,-16.386000922999813],[-43.89671353199998,-16.274269985999922],[-43.98528258899995,-16.236720233999904],[-44.07143346599986,-16.2876072709999],[-44.074546504999944,-16.158516405999933],[-44.218780617999926,-16.11920561599993],[-44.173423457999945,-16.06078559399998],[-44.205757487999904,-15.994908696999971],[-44.0808525459999,-15.797190329999921],[-44.120063591999894,-15.718143114999918],[-44.119819510999946,-15.597140954999873],[-44.22304952199988,-15.676316747999977],[-44.3697584759999,-15.819613596999943],[-44.430656522999925,-15.839152651999939],[-44.61691246999993,-15.820443572999977],[-44.663932599999896,-15.9346014059999],[-44.617790557999854,-15.992181895999863],[-44.68501258399988,-16.033898292999936],[-44.79553954399995,-16.22702186899994],[-44.87822349899989,-16.27985970999987],[-44.699615534999964,-16.420319787999972],[-44.676811561999955,-16.51847656799987],[-44.786148459999936,-16.57628085499988],[-44.803859588999956,-16.682765222999876],[-44.74910748899998,-16.75192011499996],[-44.74650155499984,-16.854160725999918],[-44.64590446699998,-16.793774477999932],[-44.62216959999989,-16.880492139999888],[-44.74591046299997,-16.92814392999992],[-44.85716245799989,-16.896781865999912],[-44.91944452499985,-16.715476270999943],[-44.910610501999884,-16.56333684899994],[-44.971626565999884,-16.354413050999938],[-44.96647655699991,-16.298478263999982],[-44.89397460299995,-16.154940518999922],[-44.99143954099998,-16.017602196999917],[-45.12660259199993,-15.942767894999974],[-45.08800560399993,-15.88805150099995],[-44.938240607999944,-15.815012099999876],[-44.78715546199993,-15.71458030399998],[-44.70387253599989,-15.61519373099992],[-44.641807560999894,-15.587744505999922],[-44.55512258899995,-15.454563943999972],[-44.520225540999945,-15.29995102199996],[-44.482738483999924,-15.227456779999955],[-44.456565488999956,-15.051242017999868],[-44.35223359299994,-15.068521981999936],[-44.27646655299998,-14.809139628999958],[-44.345207545999926,-14.777216982999903],[-44.47351051199996,-14.621031113999948],[-44.45969747099991,-14.540722422999977],[-44.533500463999985,-14.486483797999938],[-44.59239154799985,-14.382531769999957],[-44.59291860199994,-14.291603710999937],[-44.66111762199995,-14.149208083999952],[-44.57254051899997,-14.076149906999945],[-44.48341356299994,-13.831459018999965],[-44.52259057799995,-13.666656888999853],[-44.50366558199994,-13.587366263999911],[-44.54745851199988,-13.476076717999888],[-44.73144547699985,-13.448468404999971],[-44.7442096069999,-13.288477989999876],[-44.65811958299997,-13.088359380999975],[-44.56935858099996,-13.028050748999874],[-44.452171526999905,-13.141952095999898],[-44.420177467999906,-13.254375377999963],[-44.29847357499989,-13.215489885999887],[-44.2546315269999,-12.982203749999883],[-44.330661591999956,-12.913549257999932],[-44.44782651699995,-12.663869292999891],[-44.39761355199994,-12.595218823999971],[-44.296218506999935,-12.617111181999917],[-44.15194348999995,-12.586615470999902],[-44.102848503999894,-12.520307743999979],[-44.104949511999905,-12.397163336999938],[-44.072677507999856,-12.311816953999823],[-44.07681246899995,-12.186390657999937],[-44.14730846499998,-12.08945713299994],[-44.14351649199983,-12.012150336999866],[-44.3961715289999,-12.058249462999925],[-44.393768604999934,-12.015008397999907],[-44.288513526999964,-11.969240356999876],[-44.20382646499985,-11.807007447999979],[-44.06187457599998,-11.646821398999975],[-43.932762588999935,-11.62544503099997],[-43.7800754939999,-11.656735848999972],[-43.69928752599998,-11.738695103999873],[-43.629989470999874,-11.929466214999934],[-43.47625748699994,-12.06919471999987],[-43.45073660399987,-12.14100449599988],[-43.45590957899998,-12.320876450999947],[-43.39132651199998,-12.364782367999908],[-43.43553954299995,-12.565505647999885],[-43.47869846499998,-12.572445192999965],[-43.56639848599991,-12.463920836999932],[-43.640201478999984,-12.244095534999872],[-43.75248746499989,-12.270726685999932],[-43.82717156399997,-12.238746036999828],[-43.83741760199996,-12.371758961999944],[-43.747207536999895,-12.412354194999978],[-43.76638046999983,-12.477544781999882],[-43.882385506999924,-12.51822886399998],[-43.93074053899994,-12.588785210999959],[-43.83393056299991,-12.684012850999977],[-43.515197462999936,-12.793418312999904],[-43.38042450599994,-12.761629609999886],[-43.25701958999997,-12.533774947999916],[-43.32795747999995,-12.210835807999956],[-43.39817050399995,-11.97495295899995],[-43.530334508999886,-11.897286411999914],[-43.559455587999935,-11.776793703999942],[-43.64877348299996,-11.673737701999926],[-43.69260446699991,-11.520679287999883],[-43.88687854199998,-11.274865224999928],[-43.99834461099988,-11.153854347999925],[-44.06110360899993,-10.99444965999993],[-44.1025695539999,-10.83731361799994],[-44.17887152799989,-10.66186881699997],[-44.16098756399998,-10.569553217999896],[-44.31892357399988,-10.530868722999855],[-44.42279848899989,-10.347828576999973],[-44.578590575999954,-10.349771333999968],[-44.687972568999896,-10.40532172699983],[-44.837371610999924,-10.616311831999894],[-44.90209147099995,-10.5800324409999],[-44.87646447199984,-10.462376503999963],[-44.81234760699988,-10.349701428999879],[-44.926300586999844,-10.288116736999825],[-44.90209951799994,-10.213734051999893],[-44.772407502999954,-10.187473883999871],[-44.71876550199988,-10.256971930999953],[-44.593009461999884,-10.22373114699991],[-44.53266160299995,-10.158936017999963],[-44.544937569999945,-10.06484446099995],[-44.68905651699998,-9.984699049999904],[-44.63483448799991,-9.901860867999915],[-44.473922565999885,-9.81368827599988],[-44.407150480999974,-9.80792538199995],[-44.36838551999995,-9.684512083999948],[-44.35964956599997,-9.528748159999907],[-44.29256450099996,-9.454859335999913],[-44.18045855699995,-9.433541976999948],[-44.08747860799997,-9.444329318999962],[-44.1074215029999,-9.306229919999907],[-44.07984956699988,-9.229696605999948],[-44.09734360499988,-9.158505413999876],[-44.011283587999856,-9.111595757999964],[-43.96576650099996,-9.000742740999897],[-43.82726259099991,-8.94563759499988],[-43.71322646299984,-8.945175584999845],[-43.74633749499998,-8.776828579999972],[-43.82246361599988,-8.695037465999917],[-43.92935953699998,-8.703637968999942],[-43.91912053899995,-8.55373969999988],[-43.77238459499995,-8.402830573999893],[-43.70082057599984,-8.25205824099993],[-43.68994857699994,-8.136275491999925],[-43.717704578999985,-7.98481148399992],[-43.697532522999836,-7.865501964999964],[-43.67189747799995,-7.477518083999826],[-43.62796758799993,-7.398742610999875],[-43.524055457999964,-7.320313477999946],[-43.32479850899989,-7.215723921999938],[-43.23227654699997,-7.23483566699997],[-43.23980751899995,-7.436405015999924],[-43.17681852199996,-7.509070584999961],[-42.9950145389999,-7.55685145599989],[-42.90761961999982,-7.541804430999946],[-42.72624546099996,-7.453719680999939],[-42.624145497999905,-7.330625732999977],[-42.50917059699992,-7.261290629999905],[-42.43174745999988,-7.156297234999897],[-42.33588061599988,-7.251609363999933],[-42.18896060599991,-7.197859403999928],[-42.13472751299997,-7.043152605999978],[-42.16610349099989,-6.913552791999962],[-42.051937610999914,-7.005761102999941],[-42.003250487999935,-7.206749753999929],[-41.91402445799997,-7.330309567999961],[-41.88339245799989,-7.243250091999926],[-41.96999361099995,-7.10039530499995],[-41.93635150099993,-7.001943648999941],[-41.83931353799983,-7.047379263999971],[-41.687438480999845,-6.977684241999896],[-41.67124548199985,-6.877824594999936],[-41.59521860299998,-6.845261738999966],[-41.473701458999926,-6.720670782999889],[-41.56489958299994,-6.598417874999939],[-41.65867648299985,-6.647434406999878],[-41.63564250999997,-6.283712781999952],[-41.57001857899991,-6.251740179999956],[-41.49459050199994,-6.284679718999939],[-41.40127561299994,-6.381008572999974],[-41.372337594999976,-6.356165450999924],[-41.396602533999896,-6.200724731999969],[-41.441066518999946,-6.162024814999825],[-41.42488458399998,-6.056682396999975],[-41.46907850399998,-5.862584675999926],[-41.54006953599992,-5.822609535999959],[-41.535892497999896,-5.731932262999919],[-41.72154260099995,-5.684711637999953],[-41.91260959299996,-5.860867894999899],[-41.9846074589999,-5.98885938899997],[-42.169628583999895,-6.175544656999875],[-42.35255456899989,-6.437994450999895],[-42.55688860399994,-6.417921133999926],[-42.64232249399993,-6.338790938999978],[-42.741702528999895,-6.339300725999976],[-42.81726857099994,-6.384109374999923],[-42.91825860199998,-6.401636101999941],[-42.901752622999936,-6.326317660999905],[-42.83877955199995,-6.284278895999876],[-42.862682560999986,-6.209414083999945],[-42.96297052399996,-6.158955026999934],[-43.003387557999986,-6.102779008999903],[-43.01621253999991,-5.985563624999941],[-43.121383464999894,-6.04158340399988],[-43.11307146599995,-6.132972970999901],[-43.149314480999976,-6.264554098999952],[-43.30515652399998,-6.125492289999954],[-43.306152461999886,-6.04283331299996],[-43.48177361799998,-6.070888213999979],[-43.52034361599988,-5.971430729999952],[-43.671424570999875,-5.976954236999916],[-43.71415752499996,-5.91726351899996],[-43.798168501999896,-5.924835059999907],[-43.85323760599988,-5.813355243999979],[-43.98338660199994,-5.882680121999897],[-44.0593264769999,-5.859269968999968],[-44.094253532999915,-5.759452230999898],[-44.179981458999976,-5.657970684999952],[-44.3203355899999,-5.638959019999959],[-44.47644451299993,-5.56701630699996],[-44.657207463999896,-5.513992218999874],[-44.83813453199991,-5.422180874999981],[-44.788314510999896,-5.196430573999976],[-44.78858960499991,-5.020115396999927],[-44.80990260599998,-4.969605376999937],[-44.91991860499991,-4.989023731999907],[-45.00339548799997,-4.940444400999979],[-45.105205603999934,-4.754647278999926],[-45.18720257799998,-4.713894297999957],[-45.39828454899998,-4.743109924999942],[-45.39377558799998,-4.846652244999973],[-45.33613256899997,-4.88247867899986],[-45.29051255199994,-5.007508343999973],[-45.36005049799991,-5.031320659999949],[-45.460342483999966,-4.89085404399998],[-45.52422750599993,-4.875715320999973],[-45.57312048799997,-4.967255426999941],[-45.71448162099989,-5.051403364999942],[-45.84627162599992,-5.182051586999876],[-46.03018550099995,-5.200249368999948],[-46.13978156699994,-5.127113575999886],[-46.1861725519999,-5.262082835999877],[-46.31031054999994,-5.274993649999828],[-46.36440651399988,-5.242372287999899],[-46.44305759999992,-5.052845219999938],[-46.58595262099993,-5.054782947999968],[-46.663066464999986,-5.095902888999888],[-46.738494541999955,-5.264993535999906],[-46.79737456199996,-5.189004207999972],[-46.844623516999945,-5.226977246999922],[-46.857471465999936,-5.332536420999929],[-46.930301487999884,-5.290096497999969],[-46.92926062299995,-5.100252593999812],[-47.08912262799993,-5.037391169999978],[-47.205696460999945,-5.222632570999963],[-47.22373951299983,-5.311252085999968],[-47.28446153999994,-5.324454086999935],[-47.459117603999914,-5.193272775999901],[-47.59348252899997,-5.134105088999888],[-47.78989046999993,-5.00215297799997],[-47.90864946499994,-5.11997923499996],[-47.93694358499994,-5.216996914999868],[-47.80413048499992,-5.340438878999919],[-47.7270126169999,-5.373768343999927],[-47.628051509999864,-5.470208509999907],[-47.551040594999904,-5.496454427999936],[-47.486495581999975,-5.589078816999972],[-47.52441447299998,-5.665790162999883],[-47.588836607999895,-5.625813848999883],[-47.70032446999983,-5.661422352999978],[-47.80611448099995,-5.610019157999886],[-47.91988356199994,-5.669648687999938],[-47.79434947499993,-5.887061677999952],[-47.72062661299998,-5.971667769999954],[-47.71587357099992,-6.072394106999923],[-47.788223476999974,-6.145799964999924],[-47.73514557799996,-6.223535243999947],[-47.74415562099989,-6.322002991999966],[-47.8453136249999,-6.388631243999953],[-47.83458747099991,-6.551192388999937],[-47.875602470999866,-6.729921386999933],[-47.83493850499991,-6.854602196999906],[-47.88409451199993,-6.981848874999969],[-48.01699059299989,-7.022835039999904],[-48.13883261999996,-7.199643072999891],[-48.17645261299998,-7.290243567999823],[-48.188713492999966,-7.42890958299995],[-48.2553176049999,-7.52194585899997],[-48.264846486999886,-7.775211433999914],[-48.32704154999993,-7.815558729999964],[-48.32894155999992,-7.926716680999959],[-48.396766578999916,-8.01179936799997],[-48.45264453699997,-8.20571855399993],[-48.37817350599994,-8.326874940999971],[-48.492378613999904,-8.383546664999926],[-48.474723475999895,-8.459127458999944],[-48.40630350899994,-8.502352263999967],[-48.41719847399992,-8.645660176999968],[-48.46201349299997,-8.711215376999917],[-48.5245134889999,-8.708084567999947],[-48.56195846799989,-8.86989888599993],[-48.533821592999914,-8.943121682999902],[-48.564720472999966,-9.016642708999939],[-48.643112557999984,-9.089274413999817],[-48.55365753399997,-9.139239944999929],[-48.50994155099994,-9.0816970059999],[-48.41934960599991,-9.12588287999995],[-48.38270560099994,-9.050032354999928],[-48.278282510999986,-9.0814919849999],[-48.254814522999936,-9.131763454999941],[-48.29556247399984,-9.287836168999888],[-48.325477486999944,-9.506897710999965],[-48.31163762399996,-9.669516355999917],[-48.26334361199997,-9.771155146999945],[-48.30098757699983,-9.863089536999894],[-48.238586487999896,-9.98177728599984],[-48.24028751099996,-10.060847634999902],[-48.14480556399991,-10.088721820999979],[-48.128410560999896,-10.24552476599996],[-48.07612659599994,-10.376785704999975],[-48.0846255109999,-10.467344122999975],[-47.993614470999944,-10.497434986999963],[-47.985565496999925,-10.61187529099982],[-48.018478547999905,-10.699237185999891],[-48.11386158899995,-10.829578126999934],[-48.30424461699994,-10.898943236999969],[-48.35903158599996,-10.89256276499998],[-48.404838519999885,-10.98235842899993],[-48.465469518999896,-10.978304772999934],[-48.56116453499993,-11.098335302999942],[-48.550514487999976,-11.252989630999934],[-48.67387347199997,-11.28386655099996],[-48.72695958499986,-11.35080476499985],[-48.78414159899995,-11.491175155999883],[-48.83624250399987,-11.542065713999818],[-48.94636562399995,-11.492495137999924],[-48.95418560499991,-11.387039228999924],[-49.01554147099995,-11.292294889999823],[-49.12034660899997,-11.318286165999893],[-49.20474248399995,-11.254615552999894],[-49.24384355899997,-11.157344403999957],[-49.17757455599997,-10.943511157999922],[-49.18846851599989,-10.677381540999875],[-49.280380609999895,-10.684798015999888],[-49.29928548999993,-10.630979994999961],[-49.21817062799988,-10.567413149999936],[-49.141151498999875,-10.400608079999927],[-49.152137491999895,-10.301996664999933],[-49.20965561999992,-10.19215769199991],[-49.307357597999896,-10.174279929999955],[-49.36175547899995,-9.954192274999969],[-49.41259758899997,-10.01639588699993],[-49.481475542999874,-9.927144040999849],[-49.48058354099987,-9.849082705999933],[-49.234603516999925,-9.820505780999895],[-49.16662561099997,-9.707750742999906],[-49.236419539999986,-9.66445452499994],[-49.33376361099994,-9.694695592999949],[-49.58288550799995,-9.808135432999904],[-49.61402846899995,-9.869093326999973],[-49.53930648399995,-9.988208887999974],[-49.61444052299993,-10.09182463399992],[-49.67635361899988,-9.986422871999878],[-49.747299555999916,-9.953355257999931],[-49.794738613999925,-10.014374171999975],[-49.918106481999985,-9.910227180999925],[-49.928733561999934,-9.835604437999962],[-49.88033259699995,-9.675833963999935],[-49.93495159299994,-9.63921946399995],[-49.93880458599995,-9.430193070999962],[-50.02130162399993,-9.31433555599989],[-49.83621260599995,-9.100371550999967],[-49.82101453899992,-9.185332700999936],[-49.691497538999954,-9.05299116699996],[-49.686691522999865,-9.142539732999978],[-49.74312553599998,-9.311475649999977],[-49.82601954099988,-9.35061796499997],[-49.86344959999997,-9.433471065999868],[-49.819290548999845,-9.47586187099995],[-49.7382435799999,-9.42169600099993],[-49.675476536999895,-9.482377459999952],[-49.58398454299993,-9.44077438599993],[-49.488388601999986,-9.604622990999928],[-49.403625599999884,-9.627262343999917],[-49.262351471999864,-9.556698118999975],[-49.219711556999926,-9.489967104999948],[-49.19140653999989,-9.309702709999897],[-49.264793622999946,-9.204409409999869],[-49.39577460699991,-9.188802473999942],[-49.42606361999992,-9.125762682999948],[-49.4254374919999,-8.922600436999971],[-49.44528147999995,-8.859525944999916],[-49.36326556299986,-8.788138784999887],[-49.332832548999875,-8.92233020499998],[-49.29678349199986,-8.972707621999916],[-49.14654558899997,-8.880415156999902],[-49.19187156799984,-8.819748449999963],[-49.296142611999926,-8.785654890999979],[-49.21774247999997,-8.677549797999916],[-49.11704246299996,-8.690999734999878],[-48.98027058999992,-8.75820399099996]],[[-65.60102854699994,-25.992487085999926],[-65.63685648899997,-25.969843038999954],[-65.62577058399995,-25.705314365999982],[-65.37069652999992,-25.47344326299998],[-65.33641052199994,-25.474492174999966],[-65.34429956999992,-25.72107770799994],[-65.23752552299993,-25.68225943799996],[-65.26570162499996,-25.610591650999936],[-65.2271886239999,-25.441643495999983],[-65.05073548099989,-25.250312641999983],[-65.01125353199996,-25.250053640999965],[-64.93744651499998,-25.413500082999917],[-65.0183635649999,-25.672568784999896],[-65.17056249799992,-26.0050233959999],[-65.34314756099991,-26.16747004399997],[-65.43309761999996,-26.21572566599997],[-65.54412849999989,-26.321432026999958],[-65.54588350299997,-26.552408611999965],[-65.34134662499997,-26.717948182999976],[-65.26271062699993,-26.72115191399996],[-65.1578825229999,-26.660733646999915],[-65.14144862799998,-26.363864908999915],[-65.08763161299993,-26.28095983899982],[-65.0293954899999,-26.099881058999983],[-64.95993063499992,-26.01203804299996],[-64.94004859299997,-25.86589369299992],[-64.80491655599991,-25.887579855999945],[-64.83808860899995,-26.01230492299993],[-64.80870852899989,-26.036001065999983],[-64.81632952299992,-26.20000456899993],[-64.85418655699988,-26.26253758999985],[-64.7038495789999,-26.414420859999893],[-64.71810149699996,-26.567706926999904],[-64.81108060799994,-26.71210431999998],[-65.0640635449999,-26.89587620599997],[-65.60361453199994,-27.170059154999876],[-65.66896856599993,-27.239632136999887],[-65.8102495679999,-27.606049548999977],[-65.76690657899991,-27.777089323999974],[-65.60856655999987,-28.038760439999976],[-65.60142551399991,-28.147619903999953],[-65.46483653399986,-28.468983412999933],[-65.4670795319999,-28.561115951999966],[-65.55169652099988,-28.737286625999957],[-65.5758975899999,-29.129752142999905],[-65.6345745999999,-29.10360932199984],[-65.61972052599992,-28.695620519999977],[-65.54972057099991,-28.56620058199985],[-65.54328159299996,-28.48721673499989],[-65.60883360799994,-28.337873850999983],[-65.74706259099997,-28.210178238999845],[-65.84999051799997,-28.01171740199993],[-65.91071355099996,-27.944770302999927],[-66.01313051699998,-28.13264228099996],[-65.91037760399996,-28.344387595999933],[-65.90763051899995,-28.39343664899991],[-66.06336963299992,-28.639911541999936],[-66.29855359899994,-28.841778615999942],[-66.40855451099992,-28.82833320499992],[-66.14066352099991,-28.63746084099995],[-66.02264364199988,-28.44490941399988],[-66.02800755699997,-28.25826806699996],[-66.08195449099992,-28.120652806999885],[-66.06691752499995,-27.805988114999934],[-66.18118247899997,-27.737680800999897],[-66.2735215479999,-27.55804638999996],[-66.50806463299995,-27.47004227399998],[-66.30133856999998,-27.419190607999894],[-66.16725158799989,-27.41941541099993],[-65.98623650999997,-27.309427070999902],[-65.89929957799995,-27.159815798999944],[-65.89675147899999,-27.028181361999884],[-65.85803949199982,-26.995839956999873],[-65.88489561199992,-26.85944191699997],[-65.73840358199993,-26.740774283999826],[-65.71559156199993,-26.260841762999974],[-65.68646260399993,-26.23564894699996],[-65.67095155699997,-26.086014540999827],[-65.60102854699994,-25.992487085999926]],[[-66.13941947899991,-26.60452326299992],[-66.23374153799983,-26.503874877999976],[-66.21491259799996,-26.396196423999925],[-66.14963550999994,-26.265829330999964],[-66.14684249199985,-26.15692644799998],[-66.21245552699997,-25.76907416199998],[-66.11869052899988,-25.857748327999843],[-66.07643148799991,-25.966687084999876],[-66.07785758499989,-26.11868233799987],[-66.04873650599995,-26.22521029299992],[-66.07939951999992,-26.433436045999883],[-66.11666160599998,-26.477689812999927],[-66.13941947899991,-26.60452326299992]],[[-68.82524864099992,-16.499057877999974],[-68.85823059199993,-16.592212002999872],[-69.03153951599995,-16.55925000099984],[-69.09117860099997,-16.492718140999898],[-69.01835662599996,-16.401447094999924],[-69.03662163199988,-16.26902341799996],[-68.9555966229999,-16.169978658999923],[-69.04094652599997,-16.096756196999934],[-69.11219756499992,-16.238455119999912],[-69.27428462899985,-16.2877329989999],[-69.40209959999993,-16.188879347999944],[-69.50707254399993,-16.17104634599997],[-69.44124560299997,-16.000821290999966],[-69.62306953399991,-15.994128676999821],[-69.76014751399993,-15.90553715699997],[-69.77404755999993,-15.832106990999876],[-69.83332052299994,-15.797468273999925],[-69.88784748599994,-15.886954309999908],[-69.9643015069999,-15.858137158999966],[-70.02114053399998,-15.79103449199988],[-69.91129250699998,-15.626757906999899],[-69.81866459799994,-15.605859475999978],[-69.89237958099994,-15.511993558999961],[-69.93532560299997,-15.404399426999873],[-69.83078751199997,-15.28975376699998],[-69.75991852099992,-15.318891776999976],[-69.67449150499993,-15.254653037999901],[-69.62681557499997,-15.358452179999972],[-69.5663835609999,-15.35214362499994],[-69.43330358199984,-15.482823194999924],[-69.35999260699998,-15.47964142499984],[-69.26627354099992,-15.702523102999976],[-69.17507960799998,-15.68509947399997],[-69.10621657399997,-15.732399223999948],[-68.98870849399998,-15.887221524999916],[-68.92059362799989,-15.929346790999887],[-68.7602156339999,-15.95231337399997],[-68.90151256099995,-16.091955544999905],[-68.84762563999982,-16.165591905999975],[-68.67176057099988,-16.217418386999896],[-68.60045655899995,-16.196027769999887],[-68.58525849199998,-16.3159334099999],[-68.64892558499992,-16.315830479999818],[-68.82524864099992,-16.499057877999974]],[[-64.48289456499998,-24.770469639999817],[-64.5796886149999,-24.903066150999962],[-64.67518648799984,-24.930272970999965],[-64.75292947799994,-25.030280139999945],[-64.81662758399989,-24.962582524999846],[-64.81410949199994,-24.81415544799995],[-64.69302351299996,-24.606092806999982],[-64.54596754799991,-24.416846866999947],[-64.57935350699995,-24.353730968999912],[-64.56957249599998,-23.941914486999963],[-64.51847054699988,-23.855252815999904],[-64.25587457299991,-23.737609954999982],[-64.12113162299994,-23.795867031999876],[-64.04222153699988,-23.940880662999973],[-64.04256452399994,-24.00430836799984],[-63.97993058499998,-24.09444299599994],[-63.98746859799991,-24.36138884299993],[-64.03165463899995,-24.460088937999956],[-64.21607260199988,-24.6394869799999],[-64.44969149899998,-24.69952219399994],[-64.48289456499998,-24.770469639999817]],[[-64.68325758999998,-25.157732006999936],[-64.75521052899995,-25.194260508999946],[-64.75790363499993,-25.05784771599997],[-64.67611654399997,-25.088256254999976],[-64.68325758999998,-25.157732006999936]],[[-43.76430561399991,-17.474480402999973],[-43.72443357099996,-17.475145422999958],[-43.679473544999894,-17.58784547599987],[-43.65711951199995,-17.71912234099989],[-43.735691472999974,-17.848049589999903],[-43.79361746399985,-17.884695438999927],[-43.81547562399987,-18.05836964599996],[-43.948722570999905,-18.01082464099983],[-43.991455524999935,-18.11490725899995],[-43.853790476999905,-18.612028548999888],[-43.70133958299988,-18.886229435999837],[-43.617671592999955,-19.101600761999862],[-43.596809538999935,-19.262466079999854],[-43.67103548299991,-19.264526016999923],[-43.77912850599989,-19.079295008999907],[-43.882804601999965,-18.824291865999953],[-43.94339754799995,-18.736555299999964],[-44.07736248899988,-18.45727196199988],[-44.210823509999955,-18.457406910999964],[-44.23149847999997,-18.409935666999957],[-44.23091560299997,-18.24502255999988],[-44.18354058299997,-18.073527814999977],[-44.122848562999934,-18.028467541999873],[-44.101158544999976,-17.948556320999955],[-44.02052647999989,-17.864634526999907],[-43.930751602999976,-17.711920776999932],[-43.87309249099991,-17.50350743599995],[-43.88968262399993,-17.39673020399988],[-43.85148947699986,-17.2964593399999],[-43.799076597999886,-17.272454742999912],[-43.76430561399991,-17.474480402999973]],[[-50.13215262899996,-15.368478780999908],[-49.991966471999945,-15.384234578999951],[-49.93828557899997,-15.414457710999955],[-49.87944746799997,-15.24256784299996],[-49.95528759899997,-15.16264874299992],[-49.87116262799998,-14.997911655999928],[-49.62392850299983,-15.075043437999852],[-49.47340058599991,-15.027058717999978],[-49.39362347499991,-15.026373748999902],[-49.27057260999993,-14.97815768899983],[-49.07682458299996,-14.96956623899996],[-49.040626495999845,-15.008274872999948],[-49.058597463999945,-15.116716751999832],[-49.11334956399992,-15.173872278999966],[-49.414066601999934,-15.223220062999872],[-49.475746512999876,-15.288605780999944],[-49.616935480999985,-15.306468454999958],[-49.83380146799993,-15.431369540999924],[-49.828403521999974,-15.536714808999932],[-50.01219552499987,-15.599506663999932],[-50.02860662099988,-15.69876331699993],[-50.09250253899995,-15.71478649799991],[-50.11007352299998,-15.631635671999902],[-50.22693250799989,-15.448630394999896],[-50.21938359899997,-15.364596953999978],[-50.13215262899996,-15.368478780999908]],[[-45.0528185419999,-15.590981261999957],[-45.11196845899997,-15.526772362999907],[-44.99909959499996,-15.492580735999923],[-44.97293062299997,-15.56460508899994],[-45.0528185419999,-15.590981261999957]],[[-49.83580356899995,-16.005030012999953],[-49.77063762499995,-15.813366061999943],[-49.72417455599998,-15.750863215999914],[-49.75390650799994,-15.695749687999978],[-49.87225361599991,-15.634662711999908],[-49.810607567999966,-15.563603116999957],[-49.73375356299994,-15.54474433699994],[-49.62561058299991,-15.561406219999924],[-49.49293159299998,-15.535804869999936],[-49.39616352699994,-15.565390975999946],[-49.41235753199993,-15.690996812999913],[-49.31908052799997,-15.943092944999933],[-49.202964513999916,-15.971791239999902],[-49.082130494999944,-16.051810084999943],[-49.14776649699991,-16.110604441999953],[-49.16095357699999,-16.191372125999976],[-49.220729622999954,-16.22126433899996],[-49.26161554099997,-16.299694309999893],[-49.35848653699992,-16.332169155999964],[-49.446544464999874,-16.319547015999945],[-49.520572595999965,-16.185930593999956],[-49.60993960899992,-16.168683486999953],[-49.57037752899993,-16.395411285999955],[-49.57748052099993,-16.594088877999923],[-49.53112457299994,-16.66684614499991],[-49.613426480999976,-16.707862652999893],[-49.55105254799997,-16.78917951899996],[-49.558536581999874,-16.921356431999982],[-49.6461024919999,-16.982082817999924],[-49.67882946599997,-17.060185726999975],[-49.749340549999886,-17.043381016999888],[-49.80189860299993,-16.93869121399996],[-50.03182560699992,-16.873793490999958],[-50.145900626999946,-16.876778285999933],[-50.27522651999993,-16.980079878999845],[-50.67186354299997,-17.049995344999957],[-50.827960563999966,-17.02531700999998],[-50.90015758399994,-17.057521119999933],[-50.9092864829999,-17.13704107399991],[-51.089462531999914,-17.180697545999863],[-51.303722585999935,-17.146005518999914],[-51.25337249299986,-17.070963010999947],[-51.17382052099998,-17.04094909199995],[-51.209457522999855,-16.950180791999912],[-51.18887357999989,-16.885235793999982],[-51.108287615999984,-16.852873600999942],[-51.073425604999954,-16.78517783099994],[-50.99675750999995,-16.77931318099985],[-50.90783356399993,-16.84650721099996],[-50.84251758299996,-16.85816945499988],[-50.672676586999955,-16.836495697999908],[-50.5583995639999,-16.902676522999855],[-50.43576460899993,-16.872075535999954],[-50.54131355699991,-16.625456977999875],[-50.62331052999991,-16.551304626999865],[-50.685543478999875,-16.425942367999937],[-50.580848479999986,-16.307670864999977],[-50.49482752199998,-16.49073230099998],[-50.42977959399997,-16.3094597299999],[-50.36853453699996,-16.218988316999855],[-50.46326060399997,-16.216478439999946],[-50.5711405589999,-16.15008287099988],[-50.64426059499988,-16.245493738999926],[-50.70530649799997,-16.27964563599994],[-50.828945604999944,-16.273330877999967],[-50.87247048199998,-16.228800843999863],[-50.903316555999936,-16.102332676999822],[-50.825984613999935,-15.988493020999897],[-50.772453589999884,-16.013181413999916],[-50.65966753799995,-15.988847909999947],[-50.618884549999905,-16.121819427999924],[-50.56456361499994,-16.13379297699987],[-50.44480851399993,-16.039090881999982],[-50.18261352999997,-16.04154359499995],[-49.98802161299989,-15.999073496999927],[-49.83580356899995,-16.005030012999953]],[[-50.505351503999975,-17.832883541999877],[-50.63950352899991,-17.80079225199995],[-50.897987508999904,-17.801440508999917],[-51.030193591999875,-17.81952832099995],[-51.1044616129999,-17.803540175999956],[-51.17044848099994,-17.714916636999817],[-51.107845554999926,-17.609589976999928],[-50.964805526999896,-17.594663818999948],[-50.90364059999996,-17.487044539999943],[-50.797012565999864,-17.50074677299989],[-50.678367563999984,-17.449702993999892],[-50.60262248499998,-17.537809536999873],[-50.545154479999894,-17.55764531099993],[-50.44095652699991,-17.508108095999944],[-50.3039355439999,-17.55605224599998],[-50.30945251299994,-17.628549841999813],[-50.46176560799984,-17.744125892999932],[-50.505351503999975,-17.832883541999877]],[[-49.31655153999998,-17.48622847799993],[-49.26671257599992,-17.49451516299996],[-49.18492162999996,-17.696355917999938],[-49.34616061299988,-17.787828129999923],[-49.409870620999925,-17.900494487999936],[-49.46323048699992,-17.896918599999935],[-49.48548846299991,-17.80607704199997],[-49.46850153099996,-17.701043413999912],[-49.525855540999885,-17.55310952799988],[-49.31655153999998,-17.48622847799993]],[[-54.74521652999988,-21.264113510999948],[-54.68579051299997,-21.51367394899995],[-54.788330524999935,-21.513769670999977],[-54.84331849199998,-21.470786097999962],[-54.87701055799994,-21.275998713999968],[-54.85647556599997,-21.16210407299991],[-54.79874755499998,-21.148797800999944],[-54.74521652999988,-21.264113510999948]],[[-45.83937449299998,-19.13227668399992],[-45.898761617999924,-19.327648285999942],[-46.06581160699989,-19.397266361999982],[-46.13710354899996,-19.38905176199995],[-46.08942057899992,-19.19665506499996],[-46.02014548999995,-19.053198623999947],[-45.86711859199994,-18.926323934999914],[-45.76413752399992,-18.938238139999896],[-45.765846593999925,-19.03530862499997],[-45.83937449299998,-19.13227668399992]],[[-44.220680460999915,-10.919413856999881],[-44.345741473999965,-10.849466538999877],[-44.418991595999955,-10.961255981999898],[-44.57279247899993,-10.962266671999942],[-44.65524257799996,-11.02880305799988],[-44.79222148399998,-11.055555242999958],[-44.790237486999956,-10.98386331599994],[-44.67509461299994,-10.808661590999975],[-44.54315155399996,-10.715020811999977],[-44.435020476999966,-10.708232475999978],[-44.37005653699998,-10.64324607199984],[-44.28949756199995,-10.654045315999952],[-44.19114648899989,-10.78363607699987],[-44.17944350899995,-10.88898486599993],[-44.220680460999915,-10.919413856999881]],[[-47.573020626999835,-10.871996926999941],[-47.6074675669999,-10.812872155999855],[-47.59835057099997,-10.6903297369999],[-47.52941846999994,-10.607176395999943],[-47.44380956599997,-10.664562592999914],[-47.494483534999915,-10.713191209999934],[-47.45638258899993,-10.785983177999924],[-47.33526660199988,-10.787987961999818],[-47.376136594999934,-10.875412720999975],[-47.573020626999835,-10.871996926999941]],[[-47.629783545999885,-10.470927888999938],[-47.65412157499998,-10.306469416999903],[-47.61093147199989,-10.235679382999876],[-47.612434514999904,-10.082806208999898],[-47.49766547299993,-10.20520948799998],[-47.54225149899986,-10.276607712999976],[-47.47563950799997,-10.309102171999939],[-47.56429255099994,-10.503418659999966],[-47.629783545999885,-10.470927888999938]],[[-47.38808449499993,-9.283163760999912],[-47.384597622999934,-9.414695267999946],[-47.49378951399996,-9.523233537999886],[-47.64002254399992,-9.511945460999925],[-47.70520759899989,-9.481591571999957],[-47.669296507999945,-9.337076832999912],[-47.68161052999994,-9.24560830799993],[-47.639411502999906,-9.159432452999852],[-47.574897502999875,-9.113131657999872],[-47.540023588999986,-8.982396934999883],[-47.48046848999991,-9.016739603999952],[-47.517341487999886,-9.184137776999933],[-47.49169956999998,-9.20338430299995],[-47.33605952999994,-9.108247019999851],[-47.237808537999854,-9.111394759999882],[-47.24156949699989,-9.208636068999908],[-47.32599655299998,-9.227706574999957],[-47.38808449499993,-9.283163760999912]],[[-47.72434247799998,-8.874635834999935],[-47.68984960499989,-8.841192207999939],[-47.66201749599992,-8.684192455999948],[-47.5796964779999,-8.62452755499993],[-47.51067351699993,-8.730433068999957],[-47.48280352099994,-8.894984412999975],[-47.632514537999896,-9.002576701999942],[-47.72434247799998,-8.874635834999935]],[[-48.16096453199992,-8.651799585999981],[-48.151061480999886,-8.768589168999881],[-48.186393549999934,-8.865022461999956],[-48.27298749499988,-8.90905427599995],[-48.28039558799992,-8.824316419999889],[-48.204902468999876,-8.657767332999924],[-48.16096453199992,-8.651799585999981]],[[-44.112991612999906,-7.879709961999936],[-44.108871571999885,-7.759351698999978],[-44.0122835489999,-7.645718740999939],[-44.08966058499993,-7.553701368999953],[-44.09442854699989,-7.451631748999887],[-44.00964358499988,-7.405164153999976],[-43.90948453499993,-7.452772693999975],[-43.829521513999964,-7.323364322999964],[-43.74792452499997,-7.322326139999916],[-43.85343156399995,-7.939539818999947],[-43.90557856799995,-8.084344236999925],[-43.90048957999994,-8.190883590999874],[-43.97174061799984,-8.366669031999947],[-44.07365450299994,-8.504426113999955],[-44.12062048599989,-8.384853738999936],[-44.19206950499989,-8.32463814599987],[-44.33532746199984,-8.33129957999995],[-44.25921659599993,-8.159869878999928],[-44.20406350499991,-8.138650419999976],[-44.085945557999935,-8.155094205999944],[-44.00509656999998,-8.07447689299994],[-44.039230528999894,-8.031853070999887],[-44.13558151199993,-8.07977257999994],[-44.181220471999836,-7.956701597999881],[-44.039237569999955,-7.950163880999924],[-43.96608752799989,-7.896928737999929],[-43.93756055799997,-7.791041327999892],[-43.986206609999954,-7.780364124999949],[-44.112991612999906,-7.879709961999936]],[[-47.68357860099991,-8.483323666999922],[-47.76833355599996,-8.430064383999934],[-47.787681502999874,-8.28365801599989],[-47.68708760099997,-8.288762762999909],[-47.68357860099991,-8.483323666999922]],[[-47.696739529999945,-7.439063755999882],[-47.78763556999996,-7.495564823999814],[-47.91862459999987,-7.470251476999977],[-47.93107658799988,-7.404558142999974],[-47.860908490999975,-7.351605301999882],[-47.79972847699992,-7.360516437999934],[-47.696739529999945,-7.439063755999882]],[[-47.73423748199997,-7.13174898699998],[-47.75823252399988,-7.050120146999916],[-47.67990162699988,-7.036089007999919],[-47.64902453999986,-7.106211842999812],[-47.73423748199997,-7.13174898699998]],[[-47.32190651899998,-6.373715143999902],[-47.27445958299995,-6.452495478999879],[-47.4029234809999,-6.499582998999927],[-47.38379648099988,-6.355366654999841],[-47.32190651899998,-6.373715143999902]],[[-47.570999582999946,-6.272683538999956],[-47.3977204979999,-6.300029665999887],[-47.454620544999955,-6.5463766499999],[-47.602497600999925,-6.514095090999945],[-47.757953574999874,-6.568097010999907],[-47.83296557299991,-6.536012426999889],[-47.824249566999924,-6.410887543999934],[-47.68267050499992,-6.357365570999946],[-47.675579582999944,-6.217437743999938],[-47.570999582999946,-6.272683538999956]]],[[[-78.36276263699989,-7.433485263999842],[-78.28132657999993,-7.385084634999941],[-78.3839945009999,-7.328622960999951],[-78.36276263699989,-7.433485263999842]]],[[[-78.41932656999995,-6.711533669999938],[-78.51467155599994,-6.842024982999931],[-78.58028459199988,-6.818729662999885],[-78.64627062199997,-6.682786759999942],[-78.76977561799998,-6.714422408999894],[-78.75692750199994,-6.76880151499995],[-78.90793653999998,-6.768395327999883],[-78.99047850499994,-6.840669293999952],[-78.95040864899994,-6.951684080999883],[-78.79352557299995,-6.899955835999947],[-78.75253253399995,-6.957738664999908],[-78.75789661699986,-7.063547954999933],[-78.58027654499995,-7.062834990999932],[-78.3979946259999,-6.997353886999974],[-78.2679596239999,-7.059405450999918],[-78.26420553699995,-7.153967567999871],[-78.12667862299992,-7.198999342999912],[-78.08148155699996,-7.143814065999834],[-78.17715461099993,-7.018940304999887],[-78.29296854099994,-6.974931457999958],[-78.29178652499996,-6.858777054999905],[-78.41932656999995,-6.711533669999938]]],[[[-79.1702265749999,-6.207036305999964],[-79.27389562999997,-6.201792921999981],[-79.2137905109999,-6.371140558999969],[-79.17217251699998,-6.307102985999904],[-79.1702265749999,-6.207036305999964]]],[[[-79.2859265109999,-5.695126990999938],[-79.29491459299993,-5.587038996999922],[-79.36362457399997,-5.628512653999906],[-79.2859265109999,-5.695126990999938]]],[[[-79.30094151699996,-4.452062585999897],[-79.33953850399996,-4.5773043129999],[-79.4961166469999,-4.785326720999933],[-79.55340561399998,-4.809574057999953],[-79.50173956299989,-4.9380325919999],[-79.45304858399999,-4.969445282999914],[-79.37792158599996,-4.886859228999924],[-79.34293350999997,-4.73712558099993],[-79.35436257099997,-4.673676082999918],[-79.29243455499989,-4.610685912999941],[-79.30094151699996,-4.452062585999897]]],[[[-79.54321254899992,-3.495579305999854],[-79.55603049099989,-3.554073925999944],[-79.44226861899995,-3.569260760999896],[-79.37933360099998,-3.684861455999965],[-79.29631051499996,-3.730730917999949],[-79.42426261399993,-3.496553282999969],[-79.54321254899992,-3.495579305999854]]],[[[-78.77561160199991,-3.172443527999974],[-78.87102565599997,-3.165458887999876],[-78.95208754399994,-3.214966095999955],[-78.97397654899999,-3.372805378999942],[-78.85810059299996,-3.36386021199985],[-78.83496855199996,-3.28667093099989],[-78.77609255599992,-3.258266001999971],[-78.77561160199991,-3.172443527999974]]],[[[-78.54456360199998,-2.673062475999927],[-78.63089754099997,-2.779790757999933],[-78.59901462499994,-2.849195430999828],[-78.70350661499998,-2.922887950999893],[-78.70657355299994,-3.013710229999958],[-78.76254253799993,-3.095255083999973],[-78.69752461799993,-3.156299478999927],[-78.64362361699995,-3.075562640999976],[-78.55571756899997,-2.826897053999971],[-78.58018451199996,-2.766228503999912],[-78.54456360199998,-2.673062475999927]]],[[[-78.97834050299991,-2.544159198999921],[-79.18286849599991,-2.588743714999907],[-79.34795359999998,-2.799944205999907],[-79.32417263199994,-2.917445412999882],[-79.3897786259999,-3.112874849999969],[-79.33013954099988,-3.162596299999905],[-79.26332856399995,-3.091640471999938],[-79.17093652199998,-3.079676310999901],[-79.14484365699991,-2.965335919999973],[-78.95882458299997,-2.707692141999928],[-78.94274155499994,-2.592008633999967],[-78.97834050299991,-2.544159198999921]]],[[[-78.64780450999996,-1.990510520999976],[-78.6968994959999,-1.997431961999951],[-78.68260952499998,-2.102871274999927],[-78.77607763599985,-2.17418567999988],[-78.70106463099995,-2.264094164999904],[-78.83043662499989,-2.313833551999892],[-78.92181361899992,-2.373719902999937],[-78.9577946149999,-2.436714096999935],[-78.88724564399996,-2.505510075999894],[-78.74987060999996,-2.510061616999906],[-78.67734552199994,-2.443118708999975],[-78.58100157999996,-2.44508962999987],[-78.52674853799988,-2.385619020999968],[-78.45101955099989,-2.527946250999889],[-78.39330260399993,-2.552620729999887],[-78.35329460699995,-2.408401368999876],[-78.51079559699997,-2.363664804999928],[-78.47171765499996,-2.249403202999929],[-78.60010561299993,-2.136079536999887],[-78.66395559899996,-2.027231638999922],[-78.64780450999996,-1.990510520999976]]],[[[-79.58105449499999,-2.049386182999967],[-79.43215953999999,-1.957531922999976],[-79.42161560899996,-1.914505266999925],[-79.54156449899989,-1.773044725999853],[-79.60143257799996,-1.593465131999949],[-79.68390664999998,-1.577170544999831],[-79.7853166139999,-1.707031705999952],[-79.8023685899999,-1.890445013999852],[-79.83371757899988,-2.006851208999933],[-79.80713655199997,-2.071541564999904],[-79.85866564299988,-2.162816634999956],[-79.76776155599998,-2.173759711999878],[-79.72924050799998,-2.315173147999815],[-79.63674955999988,-2.410504052999954],[-79.61045854699995,-2.603462672999967],[-79.70205665499992,-2.716959173999953],[-79.7382435109999,-2.884577791999959],[-79.6802365499999,-2.894614952999973],[-79.61668361899996,-2.673829419999947],[-79.56298059699998,-2.615582904999883],[-79.47724965299989,-2.418383712999912],[-79.49093663099995,-2.322001716999921],[-79.60810859599997,-2.170382978999839],[-79.58105449499999,-2.049386182999967]]],[[[-78.4184265209999,-1.555544060999921],[-78.46646153199998,-1.54600461699988],[-78.54700457999996,-1.740240135999954],[-78.5282364929999,-1.784275804999879],[-78.61581464099987,-1.990961467999966],[-78.56277462799989,-2.081817609999916],[-78.48535149099996,-2.127679193999938],[-78.35595653199994,-2.047892359999935],[-78.43072562299994,-2.016004582999926],[-78.36805765299988,-1.871891503999962],[-78.40075663099992,-1.799986676999879],[-78.38249162499989,-1.664296739999941],[-78.4184265209999,-1.555544060999921]]],[[[-78.91899159999991,-0.729304827999954],[-78.98568757699996,-0.909693274999881],[-78.96199763599998,-1.091038599999933],[-78.89033554899999,-1.105462513999953],[-78.94645658199988,-1.269212380999932],[-79.00429556899991,-1.344279867999944],[-79.06694057299995,-1.360758521999912],[-78.9881205079999,-1.500737980999929],[-78.90444949999994,-1.59988784899997],[-78.95265952499994,-1.727816981999922],[-78.86017662299997,-1.978634369999952],[-78.89652256699998,-2.057928347999962],[-78.76378658099992,-2.049828243999968],[-78.72920251299996,-1.905347870999947],[-78.7442096399999,-1.798024808999912],[-78.80972259499998,-1.612904776999926],[-78.72206163399994,-1.518753875999948],[-78.63175165599989,-1.565304283999978],[-78.5467836329999,-1.50216491599997],[-78.71685764599994,-1.326192222999907],[-78.70221764599995,-1.211696598999936],[-78.63330063199999,-1.158307731999969],[-78.71583555599994,-1.089388035999946],[-78.76133755599989,-0.959151700999882],[-78.70858755699993,-0.84637788699996],[-78.80140657399994,-0.719015705999936],[-78.85646058999998,-0.835868824999977],[-78.92810859599996,-0.799889672999939],[-78.91899159999991,-0.729304827999954]]],[[[-78.62995960599994,-0.525399106999942],[-78.76338961399995,-0.629079225999931],[-78.71874256799987,-0.72663988599993],[-78.64224965499989,-0.661303787999941],[-78.68000761399998,-0.594765725999935],[-78.62995960599994,-0.525399106999942]]],[[[-78.03046459999996,0.295695314000056],[-78.0378954919999,0.15404617900009],[-78.07755262299997,0.016190358000131],[-78.06207258899991,-0.064525692999894],[-78.20990756799995,-0.099213025999973],[-78.2780985419999,-0.315792853999881],[-78.32414251499995,-0.374272218999977],[-78.32570657799994,-0.448092981999935],[-78.44817355999993,-0.551039013999969],[-78.52474962199989,-0.546046584999829],[-78.47824849899996,-0.772911511999951],[-78.51418255599998,-0.86455069099992],[-78.52438349999989,-0.983787622999898],[-78.4557955599999,-1.018043119999959],[-78.46897157599994,-1.183225788999948],[-78.41387950599983,-1.235654928999907],[-78.25807149299993,-1.253334541999891],[-78.326354499,-1.09023980499984],[-78.28688059699994,-1.056959457999938],[-78.33934762299992,-0.920079458999908],[-78.20461255199996,-0.942754853999929],[-78.25082349299993,-0.838352717999953],[-78.12870050499998,-0.795005034999917],[-78.17005161899993,-0.738046314999906],[-78.13108850899994,-0.664113737999912],[-78.07254762099996,-0.678145545999882],[-78.03816253999997,-0.589298210999914],[-77.9679106239999,-0.550134103999881],[-78.10890161199995,-0.449328641999898],[-77.9550246209999,-0.320345568999812],[-78.03498060199996,-0.204566172999876],[-77.96311952799988,-0.123700252999924],[-77.86566163099997,-0.143018695999899],[-77.92111160899992,-0.035248877999948],[-77.91285660799991,0.015790542000047],[-77.97339657999999,0.113393278000103],[-77.9412845029999,0.174466674000087],[-78.03046459999996,0.295695314000056]]],[[[-78.56386561699992,-0.105197368999939],[-78.63812257299998,-0.154076940999857],[-78.61995664199992,-0.214995271999953],[-78.5394285129999,-0.218345182999826],[-78.51468664399994,-0.157306487999904],[-78.56386561699992,-0.105197368999939]]],[[[-78.2490926299999,0.561069554000028],[-78.39078551899996,0.550679514000137],[-78.3996735209999,0.492058830000133],[-78.32215851899991,0.39937476200015],[-78.25856753399995,0.474553057999969],[-78.2490926299999,0.561069554000028]]],[[[-77.87203254799988,0.815321679000022],[-77.99158463899994,0.846002294000186],[-78.04302253499986,0.751108253000041],[-78.04675264899993,0.673116321000123],[-77.95619959699997,0.70210312100005],[-77.87683856399997,0.636470975000123],[-77.78383665399997,0.677158074000147],[-77.87203254799988,0.815321679000022]]],[[[-77.28876457199993,0.978767449000145],[-77.31795454999991,1.026925841999969],[-77.40872150899992,0.990344367000034],[-77.39065548999997,0.934592808000048],[-77.28876457199993,0.978767449000145]]],[[[-77.17958860599998,0.905047773000035],[-77.10959652999992,1.025080817000173],[-77.19724257099989,1.009975957000051],[-77.25263253399999,0.94071830300004],[-77.17958860599998,0.905047773000035]]],[[[-76.25482160999996,2.687150695000071],[-76.28263863199999,2.486350638000147],[-76.37269564399998,2.43820146500002],[-76.44216955099989,2.328294430000085],[-76.36559265199998,2.254745912000089],[-76.32854463999996,2.39784427800015],[-76.23976150899989,2.427429211000117],[-76.20403264099997,2.560569205000093],[-76.25482160999996,2.687150695000071]]],[[[-75.95471963699993,3.371008886000027],[-76.06025651499988,3.422660018000101],[-76.11318152799993,3.375086514000088],[-76.09190356399995,3.253529640000124],[-76.16660358799999,3.088230965000037],[-76.15515156099997,3.003058256000088],[-76.08877560499991,2.988922344],[-76.06687151299991,2.872514808000176],[-76.01779949299998,2.883382113000096],[-75.97526552499994,3.030664054000169],[-76.00892657799989,3.160084663000134],[-75.9907755669999,3.236463750000098],[-76.03359250699992,3.337654443000076],[-75.95471963699993,3.371008886000027]]],[[[-75.75428754399991,4.012947167000164],[-75.76232159799991,4.098840888000097],[-76.00828552999997,3.736781562000033],[-75.81431554999995,3.730132199000082],[-75.76358055999992,3.759923829000172],[-75.80979954799994,3.848391296999978],[-75.8634415489999,3.847453530000109],[-75.80438249199995,3.989683027000126],[-75.75428754399991,4.012947167000164]]],[[[-74.17404951599997,4.301822923000088],[-74.2156825969999,4.346077360000038],[-74.17729951599995,4.481650620000096],[-74.23181960499988,4.477143671000135],[-74.26110060999991,4.36671595200005],[-74.23480959699992,4.280535402999988],[-74.33341950299996,4.158910300000059],[-74.31533856499988,4.007748543000105],[-74.38037157199989,3.92157386100007],[-74.49497263999996,3.819344650000176],[-74.55409959099995,3.661553143000049],[-74.55189548599992,3.541670302000171],[-74.4424816419999,3.697834714000066],[-74.40325953199988,3.683639626000058],[-74.29695151899989,3.768909230000133],[-74.23800662299993,3.686117316000093],[-74.16049161999996,3.834827534000112],[-74.06955752599998,3.924132855999972],[-74.06968660799998,4.061367577999988],[-74.15027659499987,4.07377380000014],[-74.20777158899995,4.144700292000039],[-74.12052150899996,4.222697757],[-74.17404951599997,4.301822923000088]]],[[[-73.77954049099986,4.705897041000185],[-73.81694758399988,4.599357687000065],[-73.77727553299997,4.50397179600003],[-73.70863361299996,4.592076328000019],[-73.73021651099987,4.680431813000098],[-73.77954049099986,4.705897041000185]]],[[[-75.25595054299993,4.891117320000092],[-75.25830853999997,4.952265650000129],[-75.35351556099994,5.017284073000155],[-75.41199459099988,4.968975645000114],[-75.4247665989999,4.838899069000092],[-75.53145565399996,4.785928961000138],[-75.44032257299995,4.646586191000154],[-75.39417265299994,4.618039272999965],[-75.27375051999985,4.643477678000067],[-75.25801064699994,4.688568126000177],[-75.29279353399994,4.817812547000131],[-75.25595054299993,4.891117320000092]]],[[[-74.02371957999992,5.120362204000173],[-73.94873054799996,5.191099264000059],[-73.9110185209999,5.288941891000093],[-73.98712150799997,5.304599957000164],[-74.03594257399999,5.208814920000179],[-74.02371957999992,5.120362204000173]]],[[[-73.06884763699998,5.52832736900001],[-73.09464260899995,5.649055441000144],[-73.23532849499998,5.453559787000074],[-73.10674255699996,5.463837174000162],[-72.97442650399995,5.348177471000156],[-72.90554050299988,5.453954910000164],[-72.99548352099987,5.456886565000161],[-73.06884763699998,5.52832736900001]]],[[[-72.74550650199996,6.193237765000106],[-72.85721564599999,6.23814029100015],[-72.99288161099997,6.069056852000074],[-72.93961360999998,6.022433186000114],[-72.77890754799989,6.054202946000089],[-72.74550650199996,6.193237765000106]]],[[[-72.87924161099994,7.377904277000141],[-72.91515353999995,7.317284845000188],[-72.92609359999989,7.193177860000048],[-72.97418258999994,7.100880533000122],[-72.82224248999995,7.015773538000133],[-72.78159361299993,6.920297626000036],[-72.6640095919999,6.883135285000151],[-72.63034853999994,6.697659860000101],[-72.55205552899997,6.717219367000098],[-72.42684162999996,6.366647943000146],[-72.47807349899989,6.395183797000072],[-72.51348150799998,6.298005855000042],[-72.63007361299992,6.235983460000114],[-72.57245657899989,6.132429907000017],[-72.64160962699998,6.051084040000148],[-72.66848753999994,5.949888317000159],[-72.72665358999996,5.981567049000034],[-72.76406051499998,5.884771323],[-72.81697848699997,5.840667425],[-72.77343751799992,5.759055348000118],[-72.87977553799993,5.757122481000181],[-72.99013553099996,5.541512271000101],[-72.95697756099986,5.485871521000149],[-72.78972657299988,5.43693813800013],[-72.82286057199997,5.563768906000178],[-72.76082660899993,5.580357363000189],[-72.69365655199994,5.716366650000168],[-72.66818260699995,5.845172195000089],[-72.61939255399983,5.850381547000154],[-72.57504256299995,5.934153641000137],[-72.43745462799995,6.070232665000105],[-72.41804448799996,6.187302204000105],[-72.36874364199991,6.283604907000097],[-72.20922060199996,6.294585200000085],[-72.23610656199997,6.406858111000076],[-72.15698960999998,6.44358727600013],[-72.0971376249999,6.410442884000076],[-72.0799485199999,6.516603878000183],[-72.14801057999989,6.601424715000178],[-72.22680650499984,6.552267368000116],[-72.34284255499995,6.763422932000026],[-72.4461285569999,6.667634877000125],[-72.48090356499995,6.709705996000082],[-72.44190256899998,6.781443688000138],[-72.5082396329999,6.919354829000099],[-72.62442756299987,6.907449677000045],[-72.62771561599988,7.03839595900007],[-72.76287061999994,7.078363221000075],[-72.81185949099995,7.323046565000141],[-72.87924161099994,7.377904277000141]]],[[[-72.30461152099991,7.388692793000189],[-72.31230158199992,7.483612817000107],[-72.45253752799994,7.46377821700014],[-72.4293214999999,7.353859279000176],[-72.30461152099991,7.388692793000189]]],[[[-74.99921452499996,10.4642087040001],[-74.92091363499998,10.517070853000064],[-74.79616560199997,10.494991411],[-74.7583085689999,10.532000867000136],[-74.6981585229999,10.709647593000057],[-74.74700959599994,10.882508588000178],[-74.81000563299989,11.040616428000135],[-74.85954251399988,11.075163113000087],[-75.00683551899994,10.98502630500019],[-75.03517154799994,10.913588518000097],[-75.15715053599996,10.837821477000148],[-75.25900256199998,10.80519190200016],[-75.2798465109999,10.716927947000045],[-75.39115851999998,10.68220339800007],[-75.50901763399997,10.578223710000032],[-75.49967164499998,10.506206733],[-75.41638151099994,10.476634708000063],[-75.37010954999988,10.384086259000185],[-75.45304864899998,10.209308658000054],[-75.47336554499992,10.089948848],[-75.45680960899995,10.007830504000083],[-75.58232156899999,9.942679144000124],[-75.64754450999999,9.753650631000085],[-75.56667356099996,9.609048720000033],[-75.62179563899991,9.442406426000048],[-75.73129263099997,9.38484253300004],[-75.6150896129999,9.32999052000008],[-75.40196949899996,9.322226195999974],[-75.26840957199988,9.39689286000015],[-75.20909855399992,9.604867156000068],[-75.22371659299989,9.722459726000068],[-75.26730349599995,9.772549141000184],[-75.29469253799994,10.034882929000105],[-75.19894454899998,10.196403377000138],[-75.04494451199997,10.300932080000052],[-74.99921452499996,10.4642087040001]]],[[[-73.4623186479999,10.933226143000013],[-73.63171355799989,10.896174443000177],[-73.73855549899997,10.929349178000166],[-73.82891861799999,10.88731225700019],[-73.87834955099993,10.94524713400017],[-73.94641161099992,10.879724791000172],[-73.83267957799995,10.81696612900015],[-73.8023456379999,10.708681495],[-73.69018554699988,10.627943315000095],[-73.56718463899995,10.63818751000008],[-73.4623186479999,10.933226143000013]]],[[[-73.98149155199997,11.300692467000033],[-74.00951359499993,11.34497942600018],[-74.15470156899988,11.325954852999985],[-74.21398157399994,11.25984745300019],[-74.2367855469999,11.179252101000145],[-74.21555351599989,11.067569611000124],[-74.21688858499994,10.877678768000067],[-74.18320456599992,10.868563448000089],[-74.07852163599995,10.960470010999984],[-74.13850354099998,11.100953223000033],[-74.10990163799994,11.18188368300008],[-74.05120048799989,11.226266531000078],[-73.88413256099994,11.23385500300003],[-73.98149155199997,11.300692467000033]]],[[[-71.29697449199983,12.356784105000145],[-71.42905451099995,12.384465172000148],[-71.54075661399992,12.446499973000016],[-71.71323355099992,12.34192902500007],[-71.77375759699999,12.277076564000083],[-71.83994261299989,12.35555112700007],[-71.92393464799989,12.30040289800013],[-71.8658064839999,12.247810479000066],[-71.93112950599993,12.155352722000032],[-71.99104351699998,12.246833484000149],[-72.12847152599988,12.24297495899998],[-72.14787261399994,12.08497356900017],[-72.23473360599996,11.905550885000025],[-72.34504649299993,11.835899784000048],[-72.52111859499996,11.781504585],[-72.62509157799991,11.724549385000046],[-72.73403955499992,11.699128246000157],[-72.87524461699991,11.575333571000044],[-73.03057050299998,11.49463109900006],[-73.27778652299997,11.287985334000155],[-73.25447862999994,11.161184070000104],[-73.16209463399991,11.09381184100016],[-73.09761064099996,10.953556617000118],[-73.10640761599996,10.806991664000066],[-73.17443061599988,10.739273430000026],[-73.17872650899989,10.650647544000037],[-73.33534253799985,10.570593160000158],[-73.33117656399992,10.477312804],[-73.36774462799991,10.383794400999989],[-73.57163961999993,10.246705860000077],[-73.56146952199992,10.159415044000127],[-73.61423460799989,10.000891127000102],[-73.58136748899994,9.912587441000028],[-73.47457164899993,9.849515967],[-73.37422149299988,9.861900061000085],[-73.22064960399996,9.991407841000068],[-73.19382449599988,10.156104360000086],[-73.24301151499992,10.241255276000118],[-73.16343657599992,10.298627392000128],[-73.13867157299995,10.415609927000048],[-73.03064761599995,10.6130423030001],[-72.9403535639999,10.699652341000103],[-72.88587152899999,10.80367813000015],[-72.80474057299995,10.849190858000043],[-72.72629551499989,10.98343860500006],[-72.63195752999991,11.004651023000179],[-72.59141560499995,11.080718806000164],[-72.43711851399996,11.198860558000092],[-72.34877057199998,11.198951585000088],[-72.1964566389999,11.158087292000175],[-72.11249561799991,10.972464347000141],[-71.97529559799995,10.810671654999965],[-71.93437162599997,10.718486813000084],[-71.92701751199996,10.526956134000045],[-71.77403252399989,10.34232409700013],[-71.62970754999986,10.439249408000137],[-71.58998856099993,10.71347929600006],[-71.67026556799993,10.797749275000115],[-71.74440752499999,10.942335260000107],[-71.87693061099998,10.982232449000094],[-71.97561662499993,11.08382547400015],[-72.00698857899994,11.158284435000041],[-71.99141651199983,11.540934073000074],[-71.93467756499996,11.60813631700006],[-71.80020149599994,11.65564611800005],[-71.43349457299996,11.728678981000087],[-71.33624253499994,11.800487080999972],[-71.28321861599994,11.917859207000049],[-71.13586458999993,12.006249895999986],[-71.11371658399997,12.086158603000172],[-71.23753355499997,12.319680605000087],[-71.29697449199983,12.356784105000145]]],[[[-71.94654851999991,18.593288039000072],[-71.99132548499995,18.646642708000172],[-72.06893151399998,18.59863753700006],[-72.0184245129999,18.513818544],[-71.94544261099998,18.47196719900012],[-71.88322458199991,18.51550850300015],[-71.94654851999991,18.593288039000072]]],[[[-75.63150758199993,19.96806248600018],[-75.79418154799993,20.07995100200003],[-75.93698855899993,20.044041253000046],[-75.89357750799996,19.972416214000134],[-75.63150758199993,19.96806248600018]]],[[[-74.51722759899997,20.060170381000034],[-74.36193054699999,20.081139053000186],[-74.27758764599992,20.066654789000097],[-74.15579255799997,20.168887018000078],[-74.19938650099982,20.22396484000018],[-74.26280263899997,20.123141776000125],[-74.49423251799988,20.139296721],[-74.55725856299995,20.10922832],[-74.76347349799994,20.13509705200005],[-74.95503250699988,20.08790157300018],[-75.13607055199992,20.14984501100008],[-75.22917153599997,20.122085656000138],[-75.4018786389999,19.88959513100008],[-75.22119162899997,19.90640101500003],[-75.21384455499987,19.98483668500012],[-75.13277461999996,20.059705353000084],[-75.07156359299995,20.004570368000145],[-75.12951657399998,19.943463108000174],[-75.07827749699999,19.900426394000135],[-74.97834056799991,19.92640794700003],[-74.97950749699993,19.979101787000047],[-74.87879960099997,19.991224199000158],[-74.83675362799994,20.03392278700005],[-74.51722759899997,20.060170381000034]]],[[[-77.05088062699991,20.68381381800009],[-77.12709056699993,20.716132090000144],[-77.19973752799996,20.668067742],[-77.16172760899991,20.585159320000116],[-77.10182164399993,20.57883668300019],[-77.01151250399988,20.441611685000055],[-76.99105864899997,20.55089946400011],[-77.05088062699991,20.68381381800009]]],[[[-78.5822065619999,21.52655936500014],[-78.6273655739999,21.57804151800019],[-78.64075449099988,21.728025281000157],[-78.74317162499989,21.660465130000148],[-78.5822065619999,21.52655936500014]]],[[[-81.31685773999993,31.307433269000114],[-81.38391230499997,31.314087814000118],[-81.40894866799988,31.135715045000097],[-81.29077590999992,31.216487795000035],[-81.31685773999993,31.307433269000114]]],[[[-81.11838497699995,31.850242491000188],[-81.1757122649999,31.816769754000063],[-81.13063951999993,31.72269700600009],[-81.03687585999995,31.812724302000163],[-81.11838497699995,31.850242491000188]]],[[[-80.64016668299996,32.50004265300004],[-80.67226668599994,32.367669895000176],[-80.64639394699998,32.26450623500011],[-80.5594121069999,32.353915350000136],[-80.45820298899991,32.40828809300007],[-80.64016668299996,32.50004265300004]]],[[[-80.70591215799988,32.52588811100014],[-80.80941218599997,32.47766991500009],[-80.75943943999994,32.36665171000004],[-80.67707577899995,32.380642625000064],[-80.70591215799988,32.52588811100014]]],[[[-79.29109020899995,56.057984892000036],[-79.20331529899988,56.19993739900008],[-79.10204017399997,56.22892549700009],[-79.06570779599991,56.436379235000175],[-79.13761110099995,56.54044322200019],[-79.2904595199999,56.56147257600003],[-79.38471873099996,56.25405598100019],[-79.43988918299988,56.19507469100006],[-79.57179579999996,56.240713303000064],[-79.77237919899989,56.12560174200007],[-79.85152737999994,56.02297137000005],[-80.01110662899998,55.92185656600009],[-79.85394094799994,55.83320852900016],[-79.56807268499995,56.111379473000056],[-79.47080168299993,56.100883580000186],[-79.63342640999997,55.89266923499997],[-79.50323040299998,55.85582927600012],[-79.40940583499992,55.91744734500003],[-79.29109020899995,56.057984892000036]]],[[[-78.67777015599995,56.17233970300015],[-78.65901046899995,56.41464693700004],[-78.77025182999995,56.42078630000009],[-78.81715036899999,56.266052664000085],[-78.94434372499995,56.10125660000011],[-78.67777015599995,56.17233970300015]]],[[[-79.86134643999992,56.32069835000016],[-80.04540009199997,56.311309213000186],[-80.10647454199994,56.18927784500005],[-80.02543386199989,56.17690897099999],[-79.70559925699996,56.298725901000125],[-79.86134643999992,56.32069835000016]]],[[[-79.85618969399997,56.812647779000145],[-79.74798685799993,56.80658064600004],[-79.78357120499999,56.92291953600011],[-79.88654214999997,56.93626813200018],[-79.9740629449999,56.82017341300002],[-79.85618969399997,56.812647779000145]]],[[[-71.63854729099995,61.37675261900017],[-71.7918393779999,61.53490936500003],[-71.54404905999985,61.561959058000014],[-71.63915785899991,61.65657083000019],[-72.00865288699998,61.72805997700004],[-72.2539131389999,61.88830345800005],[-72.59085370499992,61.947797567000066],[-72.60030772899984,62.1134287160001],[-72.71280760699983,62.14691393100003],[-72.85820579599994,62.11421491000016],[-73.18598916899998,62.27163938500007],[-73.18689629999994,62.315127957000186],[-73.37950876199994,62.37179254199998],[-73.53906291499999,62.380405223000025],[-73.65580497599996,62.4740927310001],[-73.85070679599994,62.45988648000019],[-73.97657006599991,62.364562896999985],[-74.34937087499998,62.25863626300014],[-74.70742537499996,62.24681659200013],[-74.91758142599997,62.258731811000075],[-75.30897013999999,62.317403486000046],[-75.55590644499995,62.27708080800011],[-75.93392716199997,62.35433019800007],[-76.56651495499989,62.45752232500007],[-76.77101717099998,62.516601779000155],[-77.0806786199999,62.52718171200007],[-77.52968138299991,62.571849685000075],[-77.60308702099991,62.524509804000104],[-77.96810229999988,62.38977741400004],[-78.09891257699991,62.36469218400015],[-78.18621586699999,62.261770342000034],[-78.18900574799994,62.13759766600003],[-78.09175398399992,61.911251775000096],[-78.10362614999991,61.87009145300016],[-77.95701575599998,61.68265588200006],[-77.80656320899999,61.68929359599997],[-77.63679147399995,61.562585177000074],[-77.60772185099995,61.46439399500002],[-77.80285345599992,61.41274502500016],[-77.71534723499997,61.20196997],[-77.8422329949999,61.08538198500008],[-78.20642539099993,60.852889104000155],[-77.89263210699988,60.7703907770001],[-77.7196198289999,60.78185443900003],[-77.71307122399998,60.70025471000014],[-77.84491970399989,60.65694320100005],[-77.79917051999996,60.589765474000046],[-77.58826217499995,60.519176677000075],[-77.77863419399995,60.40578921700018],[-77.6655941169999,60.36385677700008],[-77.52643238399997,60.21553260600007],[-77.56551167899988,60.043004777000135],[-77.34382487499994,60.02828723300007],[-77.43438344299994,59.92220916800005],[-77.29982663899995,59.80942980500009],[-77.57821924899997,59.7622202120001],[-77.5982512189999,59.66588982000019],[-77.8283798409999,59.68789399300016],[-77.76887402299997,59.53883603600019],[-77.90857378999993,59.51191747900003],[-77.93992762699997,59.428438941000195],[-77.80816713599995,59.316447734000064],[-78.15292646799992,59.201182602000074],[-78.15473031599993,59.09780439500014],[-78.28565178999997,59.05240834300014],[-78.38042070699998,58.91069586100019],[-78.59299571199989,58.914011641000116],[-78.51155291299989,58.724055120000116],[-78.50382273299988,58.62581907000015],[-78.38091417399994,58.61681227000008],[-78.31967046999995,58.529751194000085],[-78.06702266999991,58.42750660200005],[-78.07036131699994,58.382651208000084],[-77.52799188199992,58.23104814800013],[-77.48681769199999,58.1635891250001],[-77.21499200099998,58.026049890000195],[-76.85381710399997,57.672439239000084],[-76.84002927499995,57.592588394000074],[-76.64096814999994,57.322458262000055],[-76.56838987399993,57.115021605000095],[-76.57220712999992,56.96414758999998],[-76.53693921699988,56.817075075],[-76.53793732199995,56.641570613000056],[-76.41768082399989,56.583982942000034],[-76.35723258499996,56.83603224400008],[-76.41725987699988,56.976200581000114],[-76.37590785599991,57.128165852999985],[-76.44409184199998,57.39043512900008],[-76.25249542099994,57.473893159000056],[-76.13752177099997,57.57002103900004],[-76.23931916399988,57.70664407200019],[-76.4194726159999,57.755511425000066],[-76.29001005099991,57.8466595540001],[-76.38439874199992,57.99403802900014],[-76.28160665299998,58.10963973400004],[-75.95793879899992,58.03533664300005],[-75.87874452199998,58.085901101000104],[-76.08938691099996,58.23930192400019],[-76.11153498599992,58.3318546270001],[-76.01451146499988,58.458823193000114],[-75.8216327099999,58.49029741700019],[-75.67847541499992,58.456525763000116],[-75.48988377199993,58.23993856800013],[-75.3677147809999,58.14287165800005],[-75.29851728099993,58.255811999000116],[-75.12070421199996,58.29161166900013],[-74.75042805599998,58.26468549100019],[-74.42085365499997,58.18619024600008],[-73.98520525299995,58.15751759400018],[-73.64703484599988,58.18709044400015],[-73.28960492099992,58.18051127200005],[-73.18796503399994,58.19894085600009],[-73.22912674999986,58.35348473700009],[-73.14478441399996,58.3946218530001],[-72.91904423199998,58.394532671000036],[-72.7375397749999,58.456421097000145],[-72.47801080199997,58.46025211200015],[-72.3439264559999,58.37236635600016],[-71.98267429299989,58.34687619800013],[-71.86547758699999,58.39399494300011],[-71.78790861799996,58.27581857000018],[-71.46410455799992,58.18712634100018],[-71.34834167399993,58.198377494],[-70.92681029199997,58.40437261300008],[-70.52734378599996,58.48021049500011],[-70.29207595499997,58.69904381200013],[-70.15851953499993,58.78258101600005],[-70.01344352799993,58.80475285200015],[-70.11360847099996,58.89484466100015],[-70.01331366099993,58.946045714000036],[-70.18666719399988,59.03073490000003],[-70.31288842499993,59.147081790000186],[-70.29426607299985,59.29159952200007],[-70.06553435899997,59.33684612700006],[-69.85892431399992,59.293664540000066],[-69.75508784199991,59.22879119200002],[-69.7228016279999,59.13478009200003],[-69.59540605199987,58.96441280000005],[-69.46965669799988,59.011246112000094],[-69.42573124099982,59.10820280000013],[-69.49850025299997,59.20069077500017],[-69.22539412399993,59.23147162500004],[-69.24879455099995,59.332197203000135],[-69.43571599099994,59.35616035800001],[-69.64106662199998,59.29847042000017],[-69.62714721299989,59.39006832900009],[-69.73945577099994,59.516732294000064],[-69.52263981399994,59.61536569500004],[-69.63729707599992,59.691825446999985],[-69.54892572799997,59.86978135600003],[-69.66424975499996,59.879968778000034],[-69.72470071299983,59.966347486000075],[-69.86405474799994,59.99492642200016],[-69.83346562699995,60.069569842000135],[-69.62328474899988,60.072627720000014],[-69.60168077999998,60.22660740400016],[-69.76082053099992,60.30728694800007],[-69.68474135999998,60.36271211300004],[-69.81044677099999,60.51968469600007],[-69.68675652099995,60.54246842300006],[-69.64369608799996,60.626345393],[-69.6938924339999,60.692173973000024],[-69.41562276099984,60.78384352100011],[-69.37912858199991,60.90526645900019],[-69.49933137799991,61.065566151999974],[-69.67602724499994,61.02690221200015],[-69.6471319929999,60.87732468899998],[-69.83360423199997,60.87833687400018],[-69.90481800499998,60.80040230700013],[-70.04562394699997,60.84428551000008],[-70.14585559799997,61.001848861000155],[-70.13329361999996,61.09242685000004],[-70.40924305499988,61.09079385400014],[-70.6358274509999,61.036791245000074],[-70.73647982099999,61.08810583500019],[-71.21367959599996,61.162760355000046],[-71.44112858399996,61.17256325900007],[-71.73173275399995,61.28488708600014],[-71.63854729099995,61.37675261900017]]],[[[-78.26064046499994,60.82441193400007],[-78.60268419999994,60.77970092700019],[-78.61808446899994,60.708350071000154],[-78.31982462299999,60.764510726000026],[-78.26064046499994,60.82441193400007]]],[[[-79.6766243749999,61.634469938000166],[-79.45297065499994,61.885170419000076],[-79.45952923999988,61.95347408400016],[-79.35646962299995,62.04681378700013],[-79.26999102999991,62.23543996800015],[-79.46158385299998,62.37573008700008],[-79.60602188699994,62.4145674670001],[-79.96131173599991,62.361434698000096],[-80.2164324289999,62.14829017000011],[-80.28098222299991,61.98557992500014],[-80.21642542199987,61.800851998999974],[-80.0178392979999,61.734989595],[-79.85537378399994,61.57605284100009],[-79.6766243749999,61.634469938000166]]],[[[-74.36493498199997,62.67859211900014],[-74.16882193499998,62.60056723400004],[-74.02915343999996,62.66804753900004],[-74.36493498199997,62.67859211900014]]],[[[-77.72747421199989,63.14099565700002],[-77.52650690299998,63.19746862],[-77.50217498199999,63.274207093000086],[-77.67090438399998,63.42847961300009],[-78.17019586399988,63.489140624000186],[-78.4463266709999,63.4490621],[-78.52134202299993,63.40288536800011],[-78.01333189399986,63.11652509700002],[-77.90174584699997,63.09416459900018],[-77.72747421199989,63.14099565700002]]],[[[-76.69231026299985,63.37327697600006],[-76.65754400399999,63.517518005000056],[-76.81720394799999,63.616900435000105],[-77.0377005929999,63.678544653000074],[-77.38015515199999,63.67277870800007],[-77.39922340399994,63.59049352600016],[-77.04099299699999,63.42266984000014],[-76.69231026299985,63.37327697600006]]],[[[-77.60146554099998,63.974867234000044],[-77.57195322199988,64.03520253200008],[-77.93064080199997,64.02130601800013],[-77.99778772699989,63.959595919000094],[-77.75494992399996,63.925847708000106],[-77.60146554099998,63.974867234000044]]],[[[-74.18917254999997,64.53929846400013],[-74.43572370199996,64.45596653600018],[-74.24532631499994,64.41363242500012],[-74.15780530899991,64.44278655300008],[-74.18917254999997,64.53929846400013]]],[[[-75.89188591899989,67.24764922100013],[-75.56142187899997,67.30823334300015],[-75.18975189799994,67.4403647900001],[-75.04191351899993,67.61064774800019],[-75.05489170499999,67.82815098200007],[-75.14279649899999,67.97433300300008],[-75.04223730599995,68.04099415900004],[-75.01808912799999,68.1665926870001],[-75.12921827599996,68.2353087800002],[-75.49336150399984,68.27444946400004],[-75.71155326699989,68.3277095630001],[-75.94993475199988,68.33839649200019],[-76.06209647099996,68.29421817200006],[-76.27085311299999,68.33204769600013],[-76.61703799699995,68.26993698500013],[-76.95703314499991,68.09077374900016],[-77.20557096699997,67.86044674100015],[-77.2911320099999,67.72952817900011],[-77.20527905799997,67.53366439700011],[-77.22458138499991,67.44859566000008],[-76.99464944999994,67.24453562800016],[-76.68930772499994,67.21206680000006],[-76.21636440499998,67.25232645700004],[-75.89188591899989,67.24764922100013]]],[[[-85.1647760059999,71.285575306],[-84.83042824899997,71.27888632600008],[-84.9019571899999,71.42881276900016],[-85.43873478699999,71.52092204700017],[-86.09104834999994,71.79462734700007],[-86.38773247499995,72.01555368500016],[-86.4396048449999,72.2209643010001],[-86.23005027599999,72.4142789060001],[-86.33425634499991,72.50168026500006],[-86.60768714599993,72.61124129800015],[-86.73302990599996,72.7267139290002],[-86.64435170299998,72.87508046100004],[-86.34524354299998,73.03898180700008],[-86.11680356799991,73.25986928500015],[-85.91579471999995,73.36731897200019],[-85.48294030799997,73.52495063900005],[-84.93207792099997,73.66883001500008],[-84.83820861499987,73.74001809300017],[-85.20220962599996,73.82016249700018],[-86.12223233699996,73.85612380000015],[-86.68517065999998,73.84593485000016],[-87.22641477999997,73.79185678100009],[-87.99870619799992,73.64986937400005],[-88.67034955999986,73.42204470500019],[-88.99038491199991,73.28560801700013],[-89.29718268899995,73.043425447],[-89.31971454399996,72.87539106100019],[-89.53229443999999,72.78618007300014],[-89.52460552999997,72.63105264000012],[-89.73085395799995,72.61534795600016],[-89.79331086999997,72.46035772900018],[-89.95642494599997,72.32281566500012],[-89.87692534999996,72.20361119600005],[-89.56930256099997,72.16033553000017],[-90.0172480579999,72.06604847200003],[-90.0888453629999,71.92069132700004],[-89.80206828899998,71.7710781290001],[-90.02036187399995,71.60353729000013],[-89.88520274699988,71.36642590400004],[-89.64541893999996,71.31769463700005],[-89.12677202699996,71.29911007200008],[-88.67173575599998,71.25474143100013],[-88.07003302499993,71.22672415500011],[-87.39135524999989,71.07761040800017],[-87.2714527149999,71.01423260400003],[-87.35529622399991,70.95712527800009],[-87.97580225399986,70.94084070900016],[-88.30904299599996,70.96231876100018],[-88.35003231499985,71.01353254800006],[-88.65130894099997,71.05425716400003],[-89.34222950499992,71.01913433300018],[-89.19432296799994,70.94853075700013],[-89.41722626299992,70.91175315200013],[-89.31956976599997,70.80597526100001],[-89.06742320899997,70.71388518600008],[-88.87110853599995,70.54645949400015],[-88.66431936399988,70.46880275300015],[-88.23203897199988,70.42002418200013],[-87.86848137399994,70.33212602400016],[-87.49596617199995,70.33813458900005],[-86.99172484699989,70.29223713600004],[-86.69393411599998,70.33554881600003],[-86.26519867699989,70.12706427800015],[-85.83371334999998,70.0177570510001],[-85.34091698499986,70.0433848580002],[-85.30030715499993,70.11480411600007],[-84.93340333499992,70.07545941900008],[-84.64182684799994,70.01151229300012],[-83.56631370299988,69.96684813600007],[-83.08280700099994,70.0186104120001],[-82.62884284999996,69.89030347300007],[-82.19099504699989,69.8010946350002],[-82.03662944299998,69.88101433000003],[-81.84228130099984,69.88421384100013],[-81.58791919799984,69.9725604510001],[-80.87947924399992,69.7301780520001],[-80.73753462699995,69.77573688200005],[-81.11628780999996,69.94550703000016],[-81.36946728399994,70.09967539600007],[-80.54309617699994,70.0581984210001],[-80.30458562199993,69.99200319700014],[-80.1931736389999,70.02589746300004],[-79.89491942299998,69.98907051800006],[-79.69806378499993,69.86508765400009],[-79.39396867599993,69.90117630100013],[-78.80798749699989,69.90001533300017],[-78.65901106399991,69.97462973100005],[-78.74477093299998,70.17229633300013],[-78.93582510099998,70.32267719300006],[-79.22107668999996,70.31915168300003],[-79.34686667799997,70.376686425],[-79.56627389599993,70.39552416800018],[-79.4025452919999,70.49591875800007],[-79.15538326199993,70.42333839900016],[-79.05767047699999,70.47509330900016],[-78.78112751499998,70.44757279600009],[-78.40311108699996,70.2340169220002],[-77.86836554099995,70.266107821],[-77.64384866799998,70.17395332100011],[-77.68969270899998,70.00989580100014],[-77.68140603899991,69.82863342700006],[-77.49083793899996,69.78617537200006],[-77.30816934199993,69.83691214400017],[-76.89658427799998,69.81622762400002],[-76.94927404499998,69.71624423300017],[-77.1829955369999,69.64049992500003],[-76.72235522999995,69.56320137200015],[-76.32363230399994,69.40979663799999],[-76.18097329999995,69.42375236900017],[-75.73009078299998,69.30105308800012],[-75.59895226299989,69.24134163400015],[-75.59232726499994,69.08717538500014],[-75.75539260299996,69.08870831400003],[-75.95054045799998,69.01983430600012],[-76.35896876599992,69.05942422300012],[-76.59177763899999,69.03418067100012],[-76.63957722399988,68.93964548200012],[-76.50202055899996,68.86432160900006],[-76.65043531799995,68.75945020200004],[-76.56721576699994,68.67532860800009],[-76.40256927399992,68.68082574900006],[-76.05652074899996,68.76059329700018],[-75.94729582099995,68.8223798250001],[-75.31441409899986,68.93737187900007],[-75.13860970399998,68.88739288300013],[-74.71535683599996,68.938724111],[-74.69591989799994,68.85984859700017],[-74.89658569899996,68.80678248700008],[-74.52089041899995,68.66854688300003],[-74.37425461599997,68.54815466700018],[-73.98802131699995,68.49817544800015],[-73.88408884299997,68.5587994920001],[-74.15747114799996,68.73343742600014],[-73.90266752299993,68.71183899300019],[-73.7171863179999,68.65545086600014],[-73.72123932699998,68.53534794000007],[-73.90435239399989,68.4370791130001],[-73.85791677199995,68.34135200100019],[-73.65360579599991,68.2700394150001],[-73.27949320199997,68.28188346400015],[-73.10751249799989,68.22176153800018],[-72.90133386399992,68.05540966100017],[-72.92120403399997,67.95480680000014],[-72.83604547999994,67.85129571100003],[-72.72388491999993,67.85454763000007],[-72.57288376599996,67.76270866300013],[-72.64671698299998,67.67068374100012],[-72.48053018899998,67.5946608070002],[-72.36222800799993,67.3148720710002],[-72.1782681759999,67.27206157100011],[-72.33089668399998,67.1090480960001],[-72.63300716099991,67.07993881500005],[-72.81888355099994,67.00951799200016],[-72.85643093599998,66.92925727100015],[-73.06912556199995,66.72283826000017],[-73.28191394799995,66.66881298900006],[-73.53230914399984,66.50349154400004],[-73.70940975799994,66.45432274000018],[-73.98157309599998,66.32690128500008],[-74.35929603899996,66.21660309400005],[-74.45713395699988,66.1561646990001],[-74.41667085999995,66.07849765600014],[-73.99501686199994,65.83190340100015],[-73.72606104999994,65.76947342700015],[-73.51243527699995,65.49649234700013],[-74.13358399899994,65.53320271300015],[-74.30570149699992,65.46972085400006],[-74.34690562799989,65.40826320800005],[-74.52798433499999,65.32704721700009],[-74.75909106099994,65.38541299300005],[-75.05746693099991,65.37921231700005],[-75.15147321899991,65.25590625900014],[-75.27245163699996,65.25013571400007],[-75.90548695099994,65.32497954800016],[-76.00735879299998,65.25261048300013],[-76.65071494999995,65.39569761600006],[-77.10939089999988,65.41076680400005],[-77.26821800699997,65.47072745900016],[-77.43242945299988,65.45865396900018],[-77.51060337799998,65.30845142100014],[-77.32577638999999,65.17411061100012],[-77.64102051999998,65.13206967000013],[-77.93765655999994,65.04581340200014],[-78.14293663199999,64.94879529600018],[-78.06777374799998,64.85420234600019],[-78.17737913099995,64.75755613300015],[-78.19018197599996,64.56751190400007],[-77.97627226299994,64.47588308300004],[-78.02122696999993,64.42348595900006],[-77.6796325769999,64.31891216400015],[-77.14775833699997,64.28886912800004],[-76.8017429119999,64.20429696000008],[-76.69062757899997,64.30248092600004],[-76.30117560099995,64.27050727800008],[-76.32479229099994,64.35414067400012],[-75.79141660699997,64.40989091699998],[-75.79651052899999,64.6060313050001],[-75.30029396199996,64.48841010300004],[-74.72463158399995,64.37438709100013],[-74.61812855499994,64.4978594530001],[-74.47826577499995,64.5688444810001],[-74.15319664699996,64.57706436900003],[-73.93968177699998,64.48396915800004],[-73.68672383199998,64.55119246599997],[-73.61308448599993,64.49398904600008],[-73.64287858699998,64.31738093900003],[-73.37419338399997,64.36037658900017],[-73.37994178299988,64.27266970500006],[-73.2117512289999,64.28833545600008],[-72.88335216299998,64.12621624600013],[-72.95132736499988,64.05673808800009],[-72.72990423799996,63.99797962500003],[-72.60607591699994,63.87161086300006],[-72.37082594299989,63.81973596500012],[-72.26732837999992,63.73524607300004],[-72.14452328399994,63.74287879200017],[-71.86223935499999,63.66053709800008],[-71.82011894799996,63.75851430700004],[-71.52570253999994,63.61270410900016],[-71.26113891599988,63.53146194600015],[-71.4288480649999,63.50606836000014],[-71.61350891199993,63.41029825500016],[-71.76566040199998,63.3717199030001],[-71.74233795399982,63.240091222000046],[-71.60320118599998,63.128624335000154],[-71.39515195099995,63.04969499100008],[-70.80395729499992,62.89442581100002],[-70.51068326899997,62.87554224500008],[-70.15999223599994,62.738135762000184],[-69.94405295199988,62.784467366000115],[-69.74916541299996,62.729194746000076],[-69.52942988799998,62.76865645900011],[-69.57429835899984,62.64928882100014],[-69.2194062829999,62.44800310600016],[-69.05060249799988,62.39375152200006],[-68.8460058949999,62.37887158900014],[-68.60656667099988,62.26286260600017],[-67.8376650429999,62.1871028970001],[-67.6960658239999,62.15211392100019],[-67.54591930999993,62.17679546900007],[-67.23754724799994,62.07040904500019],[-66.87829921499991,62.034414254000126],[-66.27018541199993,61.859371859000134],[-65.94787737499996,61.87130494400009],[-65.94201349999997,61.92251612900009],[-66.07863157699995,62.057909306000056],[-66.03767568099994,62.15299152600005],[-66.21348485999994,62.34837471500015],[-66.53453100099995,62.55922319700005],[-66.78330596099988,62.668408204000116],[-66.9100655719999,62.65935272000013],[-67.00333368999998,62.762524936000034],[-67.60987513899994,63.092610201000184],[-67.76735756299996,63.09335026000019],[-67.87178725399997,63.143765446000145],[-68.09121962799998,63.16398412700016],[-68.42040368799991,63.40691307600008],[-68.74179073999989,63.55035126800004],[-68.96387859299995,63.74033928800003],[-68.43781672599988,63.72244947100012],[-68.38097967899989,63.66089092000004],[-68.08018314499998,63.60477577100016],[-67.82087570399995,63.469193217000054],[-67.78972471299994,63.585279992000096],[-67.63930090099996,63.64907048100014],[-67.49430609699982,63.48522151100019],[-67.00600946099996,63.24709110200013],[-66.68388792099995,63.05456456200005],[-66.51395930499996,63.09307096900011],[-66.35234477299997,63.00312232800002],[-65.86745139399989,62.974281401000155],[-65.71934275799998,62.927333724000164],[-65.58150485099998,62.818764277000184],[-65.3399355499999,62.818704974000184],[-65.30169852299991,62.67303826600005],[-65.19669968999995,62.56584934300014],[-64.96662189799997,62.61035557800011],[-64.94274239499993,62.72024260500018],[-65.1790723979999,62.90169895800011],[-65.06665801999998,62.944477357000096],[-64.83954382999991,62.865566847000196],[-64.59790176199988,62.89870305300008],[-64.7642088589999,62.95736759800002],[-64.75417794899994,63.12907813400011],[-64.8761030799999,63.23276083000013],[-65.0641957819999,63.560460737000085],[-64.85341530999995,63.550531388000195],[-64.76496150799994,63.36293682799999],[-64.62285288699996,63.23944962400003],[-64.5077212459999,63.25415647700004],[-64.45624738499993,63.44372135200007],[-64.51464738099992,63.59990534100007],[-64.4996726949999,63.67984648900017],[-64.65096868499995,63.74716997000013],[-64.95539135499996,63.80637299800014],[-64.6923270239999,64.01192949000006],[-65.06658763299993,64.00262626799997],[-65.0270887509999,64.05877380900006],[-65.25120441799993,64.17185022700016],[-65.31080737899998,64.28059191800014],[-65.05085214299993,64.40893723500017],[-65.06821650599994,64.47635958700005],[-65.20990164799997,64.53555830400012],[-65.69951120899992,64.48544955200015],[-65.70423495399996,64.57796726000004],[-65.56453600699996,64.64487978100016],[-65.53496711199995,64.71667379600018],[-65.68898325599997,64.84071062700002],[-65.95646190899998,64.86697180800013],[-65.87128037199989,64.75477718700012],[-66.13291844399998,64.7400391430001],[-66.11649741699995,64.86050929400011],[-66.46255082799996,64.92555539100016],[-66.44693981199998,64.97009376800014],[-66.66571881799996,65.03466564400009],[-66.74637191199992,65.00519988300005],[-66.91402944899994,65.21168123500007],[-67.11873463499995,65.21008596500008],[-67.16584974599988,65.32535947000014],[-67.0464755839999,65.46057734400011],[-67.40646019799993,65.48112771500018],[-67.25851205599997,65.55329167100018],[-67.24562012099994,65.62559518100005],[-67.40177998999991,65.67694419700013],[-67.84033611899997,65.639057342],[-68.00635881099998,65.77463802700004],[-68.13343970099999,65.80124171000011],[-68.13289809799994,65.93376726600019],[-67.79318450999995,65.87638493300011],[-67.67439877099997,65.91775292000017],[-67.46934955699999,65.89145454099997],[-67.18956722499985,65.93725836300013],[-67.13089172099995,66.01865115400017],[-67.69793522599997,66.23247254900014],[-67.68555962199997,66.28560887000009],[-67.85453198199991,66.4474850850001],[-67.67080847999989,66.44142775500006],[-67.4915226999999,66.38293761400013],[-67.40573297199995,66.2918888860001],[-67.26854224099992,66.2634170500001],[-67.10518903799988,66.30288869300011],[-67.13909404299989,66.48229245100009],[-66.7350662309999,66.59058470600019],[-66.81110644199993,66.45487952800005],[-66.52545871199993,66.34340968100014],[-66.53488654599988,66.23647167700005],[-66.27988153599989,66.23841424500006],[-66.13547290599996,66.12746615300017],[-65.8809899989999,66.09393525600007],[-65.94405543399984,65.96152001799999],[-65.42111229199992,65.96946205300014],[-64.93180003699996,66.06757365300018],[-64.84615547699985,66.02168447200017],[-65.34252025899997,65.89851258700008],[-65.49657310399994,65.7396837730002],[-65.4521993589999,65.66737565500017],[-65.29536333199997,65.62749504900017],[-65.28751112099997,65.53918853100004],[-65.10864876799991,65.5305762210001],[-65.15619254799998,65.42591947700015],[-64.9699006429999,65.39834927300018],[-64.88639833699995,65.25876625600011],[-64.7176639199999,65.2157875420001],[-64.7055984559999,65.15490456700013],[-64.55687941099995,65.07443697200006],[-64.44857134899996,65.17971238500013],[-64.2383718509999,65.11307176400015],[-63.89379874699989,65.07719118300014],[-63.83145622699993,64.97150551100015],[-63.668097967999984,64.949965394],[-63.45103184799996,64.98048497900004],[-63.35695438199997,65.1771377930001],[-63.478233081999974,65.349190836],[-63.44247370599993,65.41877001600005],[-63.52143997399992,65.49865298500004],[-63.37037668399995,65.52508611300004],[-63.34594825499988,65.66356771600016],[-63.031563827999946,65.62060224700008],[-62.859717296999975,65.638567862],[-62.66307790899998,65.57268751700008],[-62.58299746999995,65.7622583960001],[-62.28421341799992,65.7943202690002],[-62.38074289599996,65.94177650900002],[-62.19731265399997,65.9980390550001],[-62.00115912699994,66.00923028700004],[-62.177889563999884,66.13647498800015],[-62.44497655299983,66.1708446020001],[-62.4967124019999,66.21289393700005],[-62.31345581099998,66.29438078100014],[-62.58792236499988,66.42710349000015],[-62.20833038899997,66.4032188160001],[-62.17640040499998,66.30074749600016],[-61.89291367199996,66.2716690640001],[-61.49333122599995,66.35310763600006],[-61.579474447999985,66.53092995300005],[-61.42635576199996,66.5300035480002],[-61.27931780299991,66.59463948600012],[-61.275521185999935,66.66958940400008],[-61.82816876499999,66.96805931500006],[-61.973361599999976,66.9517078180001],[-62.019149154999866,67.05083676900017],[-62.271299527999986,67.04735323800014],[-62.2703117019999,66.94368727200009],[-62.970532652999964,66.94601298100008],[-63.23729470899997,66.95734037200003],[-63.28696129299982,67.10782085200015],[-63.00985380899988,67.16717362100019],[-62.95687140699988,67.21863097600016],[-63.0781855059999,67.32474965500018],[-63.28854340099997,67.3013788720001],[-63.410655270999825,67.1969564210001],[-63.55384038799997,67.2315947730001],[-64.01209602399996,67.2044578230001],[-63.946111780999956,67.40910058800017],[-64.11818463299988,67.4770200850001],[-64.06281177499989,67.60666817700019],[-64.24615346699994,67.71284932100014],[-64.50156035899994,67.81015469500005],[-64.74549317799989,67.81307117700015],[-65.03031071099997,67.77132083400011],[-65.0363409869999,67.84944951200015],[-64.71100857499994,67.98356148800008],[-65.06642795099992,68.04046004999998],[-65.20746366999998,67.94066808000002],[-65.4086839339999,67.91794620400015],[-65.4643132889999,67.99716550000016],[-65.73506137599998,67.96216450200018],[-65.76286942699983,67.86550843200013],[-65.91947831599998,67.8685852110001],[-65.97950660399994,67.94091773000008],[-66.1376416629999,67.97403480700007],[-66.2892612789999,68.12517014800017],[-66.50091210499994,68.14931751600005],[-66.84047012799994,68.10271825300009],[-66.7844374579999,68.2434155570001],[-67.03876993699993,68.32845384600012],[-66.7932664469999,68.47691968300012],[-67.17080534899992,68.41048276500004],[-67.2235815169999,68.48210240000003],[-67.65914172499987,68.567525396],[-67.8553802319999,68.54004501100013],[-68.11408667499995,68.57239901600002],[-68.04388600799984,68.68184404300013],[-68.72781911099992,68.76459559600016],[-68.48955975699994,68.79210281800005],[-68.40857829099991,68.84445152100005],[-67.86266331799999,68.77715696600012],[-68.03886554799993,68.94491275800004],[-67.77681572799997,69.0435027530001],[-68.04932416699995,69.11813737000017],[-68.19039127399998,69.31396116800005],[-67.70156885399996,69.18148071100018],[-66.97508739899996,69.18249039700004],[-66.75961982899997,69.13962459400005],[-66.64723974899994,69.24835312100004],[-66.84274155999998,69.36689860300004],[-67.18164744499995,69.45862226200006],[-67.76516657799993,69.48666740700014],[-67.97996305999993,69.46180128400005],[-68.55185649499992,69.58193551900013],[-68.29080713799993,69.62764249700007],[-68.08711175899992,69.75946785600007],[-67.7673226899999,69.77841067800011],[-67.40277030799996,69.71399915600011],[-67.11057783099989,69.73197153100006],[-67.21038607199995,69.94168698400011],[-67.41253594299991,70.08497413800018],[-67.77566379999996,70.25034409900007],[-68.13641947799982,70.29798713700018],[-68.34911721699996,70.1928618720001],[-68.21152739599995,70.10372420500016],[-68.51676157899988,70.04878408800016],[-68.65703748699991,69.94935140900003],[-68.92102488699999,69.95236529200008],[-68.63367707799983,70.16600295400019],[-68.67023166999996,70.20804081900002],[-69.19012352999982,70.19494853000009],[-69.63033736499995,70.14776315900014],[-69.36958840599988,70.25840253299998],[-68.87382067999994,70.2961023960001],[-68.42498952999995,70.37547165200016],[-68.27169014599997,70.51067286900002],[-68.34831333699998,70.57852588300005],[-69.43357204599994,70.79007618400004],[-69.7631463429999,70.71551219200006],[-70.00699379199989,70.62347282400009],[-70.15858912099992,70.653899211],[-69.91731280199997,70.74505874700003],[-70.06951462399996,70.82431289300013],[-70.5867074229999,70.72561468400016],[-70.82086719799992,70.64503606500017],[-71.06170279999992,70.6749449720001],[-70.73157177999997,70.76913081600003],[-70.50186030499998,70.9236020400001],[-70.59945562899998,71.06279967300014],[-70.76423023799987,71.12092641500004],[-71.20621075999998,71.00535612400012],[-71.27154510399998,70.87808288300016],[-71.66044158099993,70.85490885100018],[-71.9176490449999,70.79064158400007],[-72.1671996639999,70.77816103500015],[-72.29892435599993,70.93966981000017],[-72.15575489599996,70.96469915600005],[-72.08185193399993,71.07095366800002],[-71.85920117099988,71.11386085200013],[-71.46402082799983,71.06561804300009],[-71.32593056299999,71.17737768400019],[-71.13288897099994,71.2509649590001],[-71.29711688599997,71.38563732700004],[-71.54428566599995,71.49802735000009],[-72.5767720149999,71.652073352],[-72.77745678699995,71.41924449200008],[-72.97894871799991,71.40832455300011],[-73.03292048899988,71.28340526600005],[-73.4004032339999,71.3453193630001],[-73.3653034699999,71.39869134400004],[-73.62711464099993,71.44866917500013],[-73.54742277799988,71.55041883600012],[-73.73298199599998,71.58895320300019],[-73.78008192399989,71.66203780300015],[-73.58514724399998,71.77601282000006],[-74.28390876199995,71.72288172800012],[-74.51840911999983,71.62592256100015],[-74.86827636399994,71.70845301700007],[-74.52322867999999,71.79165738000012],[-74.23419171899997,71.81912993700007],[-74.10202834099988,71.9566619200001],[-74.20690966199993,72.06293878300005],[-75.20690197199997,72.13217120500013],[-74.92303221999993,72.24819179900015],[-75.19016027299989,72.45913828700014],[-75.16043045799995,72.49181047200011],[-75.8047977839999,72.58946258300006],[-76.3925697379999,72.61449737300018],[-76.6565758879999,72.64367403500006],[-76.74107444699996,72.72407906200004],[-77.04898141799998,72.75528794600018],[-77.48367326499994,72.75989820700016],[-77.95585203299999,72.6980300510001],[-78.41820579199992,72.58670724700016],[-78.54001564599992,72.44166781900009],[-78.32961717299997,72.36592966799998],[-78.97705706399995,72.29460389900015],[-79.30285933199985,72.40234143000004],[-79.47176133499983,72.30278063700007],[-79.75659825099996,72.42924333000013],[-80.06053090999995,72.38772977500014],[-80.14262671699998,72.31768078300013],[-79.91835129299994,72.19308440100008],[-80.48616755899991,72.18237651900017],[-80.33292902799991,72.09337005700013],[-80.53461355799993,72.00609179100013],[-81.07679768999998,72.05578277600011],[-80.75156283899997,72.10829313800008],[-80.88626200399989,72.19072758000004],[-80.77334163099994,72.28990618000006],[-80.51104634899997,72.40754813100017],[-80.57091568199996,72.51626310800009],[-80.51973964799993,72.64006299900007],[-80.24560966799999,72.73233970100011],[-80.62781871299995,72.92973096700013],[-80.50540850799996,73.09254506200017],[-80.61696982499984,73.16697078099997],[-81.09596155399993,73.24102660200015],[-81.19804903699992,73.28414957400014],[-81.144395106,73.380489265],[-81.25929450699994,73.5797861640001],[-81.54426437899997,73.72474416199998],[-81.92919042699987,73.73484699500005],[-82.86203814099997,73.71962455100015],[-83.02171237499994,73.6573305980001],[-83.57998812799985,73.59793630000007],[-83.99041820499991,73.50413626800014],[-84.98093886099991,73.35668530700008],[-85.17097123799994,73.22499164600015],[-84.62234348799984,73.1248809130002],[-84.8160422659999,73.08754039200016],[-85.06455797199999,73.14294473700016],[-85.41928852799992,73.13947886200003],[-85.53978535999983,73.035007441],[-85.16050612999993,73.03197978600008],[-84.79829321199992,72.92592023400005],[-84.9120498239999,72.89410157700019],[-85.28237852699993,72.97236114000015],[-85.63070388899996,72.92258391000007],[-85.69051170099988,72.65582274100018],[-85.53498490599998,72.55999002800013],[-85.51459176599985,72.46414565500004],[-85.1211227359999,72.38451975600003],[-84.77355929099997,72.46857468300004],[-84.7919897239999,72.34205244800006],[-84.97030328199986,72.25110344500018],[-85.47305385399989,72.26906463900019],[-85.42130665499985,72.14307456199998],[-85.76781100899996,71.96636340100014],[-85.53710276099997,71.90444610999998],[-85.51152034699999,71.79876510600002],[-85.31782379299995,71.69949780800016],[-84.96741986099994,71.65865958800015],[-84.60771346699994,71.68121401000008],[-84.64418788599988,71.594470999],[-84.53102088699995,71.55188005900015],[-84.56193923699993,71.4461423890001],[-84.73856556099997,71.41515662600005],[-84.79504913899996,71.18494734800015],[-84.76271975299983,70.94040815800014],[-84.92941033599999,70.92935472500011],[-84.92679500599985,71.07471944900016],[-84.82949272299999,71.16200940200014],[-85.04299074699992,71.1988130800001],[-85.7393379969999,71.13380309300004],[-86.23938546199992,71.00012073900012],[-86.63851779399994,70.96667916899997],[-86.72449179799986,71.02756408200014],[-86.28597457799992,71.07154942200015],[-85.96690787299991,71.17943318800008],[-85.67917602099999,71.22011662900013],[-85.36882500999997,71.20748212600006],[-85.1647760059999,71.285575306]]],[[[-74.1404067069999,67.78012555700019],[-73.49136521799988,67.75998737200007],[-73.35048932599994,67.82643604300017],[-73.43571113899998,67.98650043100014],[-73.57483172699983,68.01685650800016],[-73.8020094979999,67.99631470800011],[-74.08316957299985,68.06491012400011],[-74.31753026699994,68.18072778000015],[-74.48328744299988,68.06515371100011],[-74.72108320899997,68.07609078900015],[-74.77331979699994,67.97336999700013],[-74.59329056899998,67.82767680900014],[-74.42008116099993,67.77901200200017],[-74.1404067069999,67.78012555700019]]],[[[-78.83762831699994,68.30610047000016],[-78.95109595899999,68.35862889800018],[-79.15212823299993,68.36626209300016],[-79.20217539499998,68.24332951400015],[-79.02961368699988,68.18313258799998],[-78.83762831699994,68.30610047000016]]],[[[-74.13894458399989,68.26270648400009],[-74.06560604099997,68.34110889800007],[-74.2574518159999,68.4546589900001],[-74.37071552099997,68.38136869400012],[-74.13894458399989,68.26270648400009]]],[[[-74.94239737699996,68.3451808530001],[-74.80356271199997,68.3615609520001],[-74.81514694199996,68.51081677399998],[-74.94918569499993,68.5806301290001],[-75.00139722299991,68.67625691500007],[-75.2597082769999,68.73122139000009],[-75.3849768689999,68.63662321200019],[-75.41121619399996,68.54224324300009],[-75.24219154199989,68.44333787400006],[-74.94239737699996,68.3451808530001]]],[[[-78.68353392199998,68.60377182000002],[-78.94839085799998,68.53025341100016],[-78.80276080899995,68.44625720300007],[-78.6526579589999,68.49325271700008],[-78.68353392199998,68.60377182000002]]],[[[-74.63209396199989,68.56629881100008],[-74.64124824799995,68.66001713500003],[-74.79905812399994,68.67523425299999],[-74.82276298599999,68.56670641300019],[-74.63209396199989,68.56629881100008]]],[[[-79.18648257699988,69.09576213400015],[-79.38421998299998,68.92556537400009],[-79.23454925299995,68.84201194200006],[-78.8248517909999,68.91656108100017],[-78.54977640599998,69.08999645500012],[-78.46862487899995,69.22621471500008],[-78.21042434299994,69.30057466300008],[-78.30645890199997,69.3848478180002],[-78.47657823599997,69.39888772000012],[-78.71029216099993,69.34450955200003],[-78.96278469999999,69.1086653820002],[-79.18648257699988,69.09576213400015]]],[[[-76.93874448999998,69.15367495700008],[-76.91650265899983,69.22219764200014],[-76.68859180599992,69.3200304390001],[-76.63757627499996,69.39455952400016],[-76.96463805099995,69.41007652200005],[-77.11479739899994,69.45398586900006],[-77.33995844299994,69.41469676000008],[-77.36840010899988,69.28694859000018],[-77.27305170199998,69.15851195900007],[-76.93874448999998,69.15367495700008]]],[[[-78.17297871599993,69.75861114300011],[-78.3047210179999,69.66765661600016],[-78.56366693599983,69.63693494400019],[-78.86029841399994,69.48747105200016],[-78.80992488499987,69.46315015000005],[-78.07139924899997,69.5856894640001],[-77.97234202399994,69.70124787300011],[-78.17297871599993,69.75861114300011]]],[[[-80.23338916699987,69.62248091300017],[-80.20788454399991,69.53199877400004],[-80.00322475199994,69.50016122300019],[-79.92252964699998,69.61542257000013],[-79.56841526899996,69.62870530800012],[-79.32745461299999,69.71196453400017],[-79.44171945699998,69.80533134900008],[-79.66369112799998,69.82100702800005],[-79.96407673699991,69.73326080600009],[-80.19466967599993,69.80990271400003],[-80.40633705299985,69.80722344100013],[-80.71156108799988,69.74922671800005],[-80.68867764899994,69.6762450110001],[-80.4673175669999,69.67705075300017],[-80.23338916699987,69.62248091300017]]],[[[-73.25351580199998,71.40508832500007],[-72.82505379299988,71.46351847200015],[-73.11959732199995,71.56550371500009],[-73.35839683199998,71.52285328200003],[-73.25351580199998,71.40508832500007]]],[[[-72.83728007599996,71.65199547900005],[-73.02030596999987,71.58167842400019],[-72.74554458099982,71.53107493300018],[-72.66227993299998,71.64199813800002],[-72.83728007599996,71.65199547900005]]],[[[-80.17429590599988,73.05040032300019],[-79.99063043699988,72.86677063600001],[-79.55987619599995,72.75334119300015],[-79.14524912999997,72.75364406200003],[-78.42586997699993,72.87912440900016],[-77.68703149699996,72.8983414760001],[-76.97182585999997,72.83920295700017],[-76.30909154899996,72.82062535600005],[-76.05733689399989,72.91564169900005],[-76.32640077099995,72.97102280500019],[-76.28557211199995,73.10185138600013],[-76.51981265299992,73.1251598410002],[-76.69398716299997,73.30556689300005],[-77.04247821399997,73.37078932200006],[-77.18834726799986,73.51049843600003],[-77.75227513199997,73.59215087000013],[-78.13682026299989,73.67196167800012],[-78.80334591499997,73.65842126700005],[-78.96227445399995,73.63529066000012],[-79.46812402099994,73.63687568400019],[-79.97182294199996,73.71725337100008],[-80.1122228179999,73.70141660300015],[-80.46107629099998,73.7698634190001],[-80.76982942899991,73.75626408099998],[-80.855409851,73.56034803700015],[-80.87245234999989,73.33888837000006],[-80.75623743299991,73.27861180100018],[-80.37107623899993,73.2419986220001],[-80.10824164799993,73.18280809500015],[-80.17429590599988,73.05040032300019]]],[[[-78.88127522599996,76.11503833400013],[-79.11806083699997,76.09189118799998],[-79.66838235599982,75.8966656560001],[-79.0226899569999,75.87502974300003],[-79.15465137399997,75.971248296],[-78.8603613549999,76.0413819800001],[-78.88127522599996,76.11503833400013]]],[[[-71.35804755299984,77.35711945300005],[-71.91833453099997,77.4365770460002],[-72.34889261299986,77.45435539700009],[-72.52749655299993,77.3874096400001],[-72.00834661499988,77.30294687800017],[-71.35804755299984,77.35711945300005]]],[[[-68.3916866209999,82.68489534400015],[-67.01113841599988,82.79992372600009],[-66.37590446499996,82.93129929500003],[-67.30715183399991,82.93671429500006],[-68.46121838099992,83.00914909199997],[-68.81996158099997,82.95697084900007],[-69.70069498499998,83.04318103500003],[-69.64178523899994,83.10665981900013],[-71.08404268699996,83.0946303360002],[-72.63078433999993,83.09456530500006],[-73.64388287599996,82.93944456000008],[-74.47694421299997,83.02958636700015],[-76.12943802299992,83.05245558100017],[-77.42504985199992,82.97269404800011],[-76.7193160779999,82.88210152900007],[-76.26261148599991,82.70695236800015],[-75.6140497319999,82.62772322400014],[-75.87655478699998,82.59255718400016],[-76.6120682369999,82.67536493800014],[-77.14565650099996,82.85958169000008],[-77.82542745299997,82.9269207280002],[-79.03052458299993,82.88935058700014],[-79.31656182299992,82.96602269200002],[-80.16173294499987,82.92889658400009],[-80.42647276899993,82.78579310900005],[-81.33742905299994,82.82170907000017],[-81.62287650099995,82.79787364600014],[-80.62575871899998,82.56160994100009],[-80.88076925099989,82.528344817],[-81.4965542349999,82.6343661630001],[-82.10178260099997,82.66802273400015],[-82.417807999,82.59769439700005],[-82.73208637499994,82.39152594200004],[-82.62999673599995,82.34823043700004],[-81.51464551999993,82.18119326200019],[-80.98257924999996,82.15548518500003],[-80.58331792699983,81.99265079700018],[-82.09431213499994,82.17349573400008],[-82.66553462899986,82.28034789300006],[-83.01294294299998,82.2165466100002],[-83.873240792,82.36089834200004],[-84.751352737,82.40500947600015],[-84.65279944699995,82.46711699899998],[-85.63525551199996,82.46605507600015],[-85.43448252899998,82.27761265200019],[-85.68401801699986,82.23314584800016],[-86.68627510299996,82.22832272500017],[-86.59875515499994,82.11201708500005],[-86.89460766799988,82.05144213900019],[-88.08654645899998,82.08782984499999],[-88.83122775899994,82.03299883900007],[-89.30434669099998,81.939405889],[-90.60808341699993,81.87471639200004],[-91.70902799699996,81.72438635800006],[-91.93601776299994,81.60672347200011],[-90.94672169699999,81.55446063500011],[-90.73269516099987,81.65758274000018],[-90.29542419299992,81.68894308200004],[-89.77972262399993,81.59804293200006],[-90.82167849099983,81.45554217700015],[-90.33720197699995,81.3771530750002],[-88.94074515199998,81.53552519200008],[-88.90580809599993,81.48729217300007],[-89.90151119099994,81.30266796400008],[-90.28607334499992,81.19710044200008],[-90.2490227099999,81.08485767800005],[-89.66409957199988,81.00585105400017],[-88.26338532799991,81.06627152300013],[-87.43963537099995,81.06252991100013],[-86.45609521699993,81.12033109100014],[-85.94905590799988,81.22648485500014],[-85.04322826399994,81.30259699300018],[-85.01672450899991,81.25058874600012],[-85.51003882899988,81.19372013999998],[-86.02970145299997,81.07975453400007],[-86.69649384199994,81.00333871100008],[-87.65473969399989,80.97904671400016],[-88.29520683499993,81.00035011700004],[-89.45171683999996,80.91179489300009],[-89.27065353599988,80.84255621200009],[-88.20605887099993,80.68067453100008],[-87.53774854199992,80.61829350300007],[-87.1979128509999,80.63467480399999],[-87.08717142199993,80.71635112700005],[-86.62723332299998,80.82000717600005],[-86.21053561999992,80.95897896600013],[-85.71002981499993,81.04436850000019],[-83.72533460399995,81.11614866400004],[-82.83587611799999,81.17050944200014],[-82.76694727099988,81.1262731720002],[-83.81675545399997,81.07110131500002],[-85.20298579199994,81.01370399000012],[-85.7430993299999,80.955543815],[-86.55090930099993,80.71512358100011],[-86.76126450399988,80.59384514300012],[-86.31893164299993,80.54198081400006],[-85.17594201999992,80.50505729500009],[-83.89882387999995,80.53441535700017],[-83.55578628499995,80.71388211800013],[-83.1030871189999,80.64506577999998],[-83.01124418599994,80.53669804700002],[-81.51346772499994,80.6085943550001],[-79.9718611269999,80.76823014800004],[-79.53395477599997,80.84083761400018],[-79.21336008999992,80.95979492700002],[-79.38731407699993,81.00281010500004],[-79.19250701199991,81.10161960100004],[-78.72027255199998,81.1162729190001],[-78.31149832099993,81.28477509200002],[-77.01110824699992,81.43848952000008],[-77.03392705299996,81.37517982000008],[-77.68507836799989,81.31735216300012],[-78.38920460999998,81.14084748800013],[-78.4806289039999,81.07889332800005],[-78.98136737199997,80.97998345600007],[-78.9545160269999,80.8507955010001],[-77.85923034399997,80.90754304100017],[-77.58703187999987,80.82977377600008],[-78.48356160399999,80.77939031900019],[-79.8848106079999,80.63352324800013],[-79.68585367499998,80.59662455600011],[-79.0661982119999,80.61778173300019],[-78.54982752699988,80.56766178400005],[-80.2517626479999,80.52675306499998],[-80.64349625199998,80.46626034100007],[-81.78232108499998,80.40026629800013],[-83.20387465399989,80.33223104400014],[-82.3091038789999,80.04256341400003],[-81.63071159499987,79.95632582500008],[-81.51460271399986,79.71255606900013],[-81.97013426999996,79.71825070800014],[-82.0902225989999,79.84145175300011],[-83.29600751699996,80.10965026800011],[-83.70945540999998,80.22889223100003],[-84.30495183099987,80.26947872000011],[-85.3765970579999,80.2683745010001],[-85.78682997599992,80.3241877690001],[-86.52712576299996,80.29879393900012],[-86.66334324499991,80.10781545000015],[-86.42701694599998,79.94912048400016],[-86.46727992899997,79.80029522800015],[-86.30603200899992,79.74437102800005],[-85.4438670379999,79.69086719000012],[-85.02298647699996,79.61012898900009],[-84.8865584589999,79.48340429900014],[-84.49952331699984,79.41246888000012],[-84.31145169999996,79.18892091600014],[-83.56219977499984,79.05046370700012],[-83.97849028999997,79.05177044700008],[-84.13726386999997,79.12078185900003],[-84.54394508099995,79.1462428050001],[-84.68937812899998,79.01976044100013],[-84.18434653899999,78.95609581000019],[-83.57262458999998,78.93068420600008],[-82.91970352799996,78.93306195500008],[-82.98636507999998,78.85602835300006],[-83.37476289499989,78.77623826400014],[-83.84442700299996,78.84365354800013],[-84.63865965999997,78.85328384600007],[-85.0845728029999,78.92090761000014],[-85.65650458699997,78.84585729000003],[-86.54767442499991,78.79591007300019],[-86.89590854599999,78.72196279000013],[-87.17141222899988,78.54074621100017],[-87.49580825699996,78.43470467300006],[-87.46662196499994,78.1189835290001],[-86.7313991289999,78.11452235600018],[-86.41157761899996,78.19853998700017],[-86.11910328799996,78.05228356000003],[-85.5232093429999,78.09680444500015],[-85.18219518199993,78.21393239999998],[-84.95171651999993,78.22079009300012],[-85.06090687499994,78.05556679600005],[-85.68985951799993,77.9294096910001],[-85.17682050399986,77.77755069500012],[-85.29690959499993,77.66773486200003],[-84.92677894199994,77.5979928380001],[-84.8594526259999,77.53634841300016],[-83.93714460299998,77.49416721800014],[-83.40456921499998,77.6055975060001],[-83.1241741579999,77.78786372300004],[-82.74387127599988,77.95498891200009],[-82.53451893699997,77.91557046000014],[-82.98024525799997,77.67435164900013],[-83.37947360999993,77.5120995740001],[-83.82789789399988,77.44422105400008],[-83.95103903099988,77.38427480100017],[-84.61992357499997,77.37602989800018],[-85.41132497599995,77.38780013600007],[-85.73114578899992,77.45349074400002],[-85.88468438699988,77.63053197500005],[-86.19679860199994,77.78932022100014],[-86.81621563199991,77.88200714800007],[-87.28336798499998,77.89888572900014],[-88.09691002099993,77.82070971600018],[-88.22815916299993,77.65954934500019],[-87.71095909299993,77.53192747800017],[-87.71565017299997,77.35563602000013],[-87.23151718899999,77.30178370900012],[-87.07573747899988,77.17869020400013],[-87.69728581599998,77.1349777370001],[-88.39732710599998,77.11873753200013],[-88.71984303399995,77.00010213700006],[-89.5268308759999,76.8489519060002],[-89.41035131699988,76.67488262000012],[-89.65196151299995,76.57177223000008],[-89.39830393699998,76.53297988800006],[-89.23079565299992,76.436134804],[-88.8753936359999,76.4068279600001],[-88.6993398429999,76.7194453680001],[-88.52618311399988,76.72847178700005],[-88.33327165199995,76.51501806300007],[-88.32588326299998,76.383339105],[-87.60749414999992,76.33631903000003],[-87.4121265679999,76.41222700600002],[-86.70005655699993,76.34448467000016],[-86.60142130899993,76.45120111200015],[-86.30203840299998,76.37469729500015],[-85.69812580199988,76.34567535800005],[-85.23405960299988,76.2805816340001],[-84.38822205199989,76.32134753800011],[-84.94083245899992,76.4149969180001],[-84.21835455099989,76.44602474700002],[-84.03399256299997,76.5282917460001],[-83.70123496399998,76.42299391500012],[-83.30822132599997,76.40488915400005],[-83.04488447799997,76.43109788400017],[-82.7779408479999,76.3762121060002],[-82.2752259159999,76.39032667200007],[-82.09831447499982,76.51793085000014],[-81.77461854499995,76.46563892300003],[-81.47177839999995,76.465153225],[-81.27977891999996,76.53108097400013],[-80.76090975099999,76.41602913100013],[-81.10629295499996,76.21238219100013],[-81.0823058119999,76.14231201100017],[-80.22419302399999,76.24019253600017],[-80.05528470199994,76.22682246100015],[-79.57546899599993,76.30667808100009],[-79.25174850999997,76.31706608500019],[-78.97725689199996,76.41729381800008],[-78.79357023599982,76.56204244300017],[-78.52637792099995,76.45660277200017],[-78.16691079799995,76.5195150300001],[-78.05397791899992,76.62380017000004],[-77.80512281399996,76.64911721300018],[-77.80162476899994,76.84394603600003],[-77.88531636499994,76.94258219500006],[-78.09013142399988,77.01529180200015],[-78.39526747099995,76.9973213240001],[-78.73344782599997,76.82837784600014],[-78.87091545699997,76.92139285800016],[-79.346652367,76.91553483500019],[-79.35433736499988,76.97214403600003],[-78.97708081099995,77.09648018000007],[-79.2529379579999,77.21534316000003],[-79.63316211399996,77.24278220500008],[-80.13893955699996,77.1932148160002],[-81.09237171599995,77.28418521300006],[-81.67499366699997,77.17709200500013],[-81.90518643099989,77.18760757200005],[-81.74306575499998,77.29452720200004],[-81.18026939399994,77.31716295500019],[-81.77293150299988,77.44157048300008],[-81.66925657799999,77.53588950699998],[-81.2970447209999,77.42159675700015],[-80.76920402399998,77.3286421580001],[-80.12668007699995,77.28232819600015],[-79.66130038299997,77.31376193400007],[-79.15597816499996,77.29048505900016],[-78.71968078699996,77.31154465600008],[-78.32830802899997,77.37070608700014],[-78.01974903199994,77.46149890900017],[-77.94122737799995,77.55003676500013],[-77.70516183499996,77.59546788700015],[-77.98974093699997,77.69368135600013],[-77.97497259599999,77.797369823],[-78.39525530999992,77.89843231700013],[-78.06135519699995,77.95822837200006],[-77.18605095599992,77.9384065480001],[-76.95581224499989,77.88933346300007],[-76.25978817499998,78.00338569600018],[-75.88079327199995,77.95903429300006],[-75.64275468799997,78.03962052400016],[-75.60447693199995,78.12837104400012],[-76.11941238199995,78.12920288300012],[-76.63406035699995,78.16220494900011],[-76.63269095099997,78.24813943700013],[-75.61608965799996,78.2010231660002],[-75.08349527699994,78.36285131800008],[-75.81864416199988,78.5006688700002],[-75.05099416699994,78.52680314100007],[-74.66519710299997,78.58314372400014],[-74.81171591899982,78.635573986],[-74.7419112639999,78.8142611610001],[-75.3394156029999,78.88926682000016],[-75.72866539199998,78.96910683800007],[-76.76046941199996,79.0215647340001],[-77.20304079299996,79.06078951000018],[-75.84479889099998,79.15410188800013],[-75.74217845899994,79.07403413800017],[-75.12921729999988,79.03044726900009],[-74.45542784499992,79.029210239],[-74.58945893099991,79.14293127700017],[-74.91481647599988,79.23979856000017],[-75.95661538799993,79.22948965000006],[-76.75798840699986,79.28107943000003],[-76.86390666199998,79.34523255100004],[-76.09299331599993,79.3320231570001],[-75.88443419999993,79.41658251000013],[-74.91466782599991,79.37238008100002],[-74.6449593029999,79.43370343700013],[-74.06168183999989,79.43585720800007],[-73.12085103499999,79.54739331000007],[-73.38810065499996,79.7399119050001],[-74.00079636199996,79.7895607750001],[-74.67084937899995,79.78444913100009],[-74.7455044219999,79.84556919600016],[-74.24544643599995,79.88305638999998],[-73.12819515799993,79.8115932400001],[-72.94176117099994,79.70172822300003],[-72.70817122099999,79.67172364599998],[-71.4674923209999,79.72471764900007],[-71.10510752499988,79.78512836100015],[-70.88140305299999,79.87648856800013],[-71.27044369499998,79.94941056800019],[-70.70918395299998,79.98407674100008],[-70.49265479399998,80.04794880300005],[-70.62587339099997,80.12814126300015],[-71.3658953179999,80.07054515600015],[-71.67695474299995,80.10327469800012],[-70.74334604699993,80.1991196100002],[-70.0869446349999,80.19648897700006],[-69.82956316199994,80.34388566000007],[-69.38120853099997,80.39833502800019],[-68.91107129999995,80.61669303000008],[-68.25361308099997,80.76329163300011],[-66.58730291299997,81.05638814600007],[-66.12645320799999,81.21036657700006],[-65.53876013399997,81.24702521700004],[-64.77368327499994,81.37004538700006],[-64.46004214899995,81.48072907300008],[-64.54075614099992,81.54745277500007],[-65.15037291099992,81.52587643400017],[-68.17195981999993,81.27877905200006],[-68.53830935499991,81.30239761700017],[-66.66931127699996,81.50753713200015],[-67.14686496999991,81.56467556500013],[-66.78793243199988,81.62204486900009],[-65.85072523299993,81.62853013200015],[-65.7891109599999,81.69557323300018],[-64.95650620999993,81.75091762100016],[-64.18363376299993,81.74444079500017],[-63.504018732999896,81.86032378300013],[-62.35276283099995,82.00453132900014],[-61.173492875999955,82.24611561400019],[-61.135980860999894,82.35634884100011],[-61.71955069199993,82.48814839900001],[-62.33235563099993,82.52989146800019],[-62.88724184499989,82.51410696700009],[-63.73315328499996,82.71031542400004],[-63.45586441699999,82.76584233100004],[-63.97133310199996,82.83720250900018],[-64.52895798199995,82.77760870200007],[-64.67758884999984,82.89835420100013],[-65.75667070499986,82.85099892800014],[-67.3651698299999,82.67857599100017],[-68.3916866209999,82.68489534400015]]],[[[-70.78309660399998,9.102420843000175],[-70.86435664099997,9.056431854999971],[-70.88774164799997,8.9301980460001],[-70.96394354099994,8.93487447700005],[-71.10952764399997,8.7872341260001],[-71.30191763599998,8.760258981999982],[-71.30066655299987,8.625888692000046],[-71.21823858199997,8.624595867000096],[-71.09796162399988,8.7164472770001],[-70.94735759899993,8.722270688000094],[-70.98020962999993,8.638564812000084],[-71.15278664699997,8.490082415000131],[-71.10415652099988,8.43647410900013],[-71.14920053299988,8.356059135000123],[-71.0456235119999,8.351602310000033],[-70.93269362699988,8.52663086500013],[-70.88169863099989,8.531653302000109],[-70.76902053899983,8.68367638300009],[-70.63394952199997,8.811520355000084],[-70.70639062299995,8.873530010000025],[-70.64063258099992,8.976537733000043],[-70.51746353099992,8.936871382000163],[-70.54792051699991,9.085999689000062],[-70.77023356799998,8.954628276000108],[-70.81144755399998,9.069629161000023],[-70.78309660399998,9.102420843000175]]],[[[-71.66221659399991,18.418678411000087],[-71.55840253199995,18.40813900600017],[-71.51927161699984,18.48928203100013],[-71.6775206079999,18.57175526500015],[-71.80419161699984,18.491143987000044],[-71.66221659399991,18.418678411000087]]],[[[-70.32982606899998,62.68974998900018],[-70.51233950299996,62.77732021200006],[-70.77514854699996,62.83946869400006],[-70.86681985799993,62.73329759900014],[-70.71612415299984,62.56467845200012],[-70.36790909099994,62.52198899900003],[-70.1778531949999,62.59016123400005],[-70.32982606899998,62.68974998900018]]],[[[-72.14165990699996,70.91925278700006],[-72.08690000399997,70.81289384400003],[-71.58476911299982,70.90789985200013],[-71.40284907299991,70.91878675400017],[-71.37381666499994,71.01876793800011],[-71.85229385399998,71.07431771],[-71.98507101699988,71.055984185],[-72.14165990699996,70.91925278700006]]],[[[-71.04638659999989,77.36934211200014],[-70.06916850299984,77.39296449400018],[-70.72694355299984,77.46380113200013],[-71.29137454299996,77.45325602700007],[-71.04638659999989,77.36934211200014]]],[[[-69.04865251299992,-52.67611007599993],[-69.21479055099991,-52.67448096899989],[-69.39411952499995,-52.466445819999876],[-69.55979957599993,-52.509415813999965],[-69.58637959699996,-52.62997004599998],[-69.69393148499995,-52.74709540799995],[-69.90105451499988,-52.838211221999984],[-70.03049456999997,-52.82458392399997],[-70.13375056499984,-52.73108815199987],[-70.34701551799992,-52.74324928799996],[-70.26989748299991,-52.866275677999965],[-70.09574852399993,-52.92813294999985],[-70.14414261599984,-53.01469386999992],[-70.02061448499995,-53.08180324199998],[-69.88745856499992,-53.20029368099989],[-69.75115155299989,-53.36764022199998],[-69.58958450199992,-53.34334074999998],[-69.3787915389999,-53.351474045999964],[-69.31545251399984,-53.48200391499989],[-69.45397955799996,-53.54572230499991],[-69.34700048899987,-53.685061219999966],[-69.14149449599995,-53.791398736999895],[-68.92816952699997,-53.86233444899989],[-68.76696055099995,-53.946393370999886],[-68.59477262299998,-54.00014735399998],[-68.14168549299995,-54.05389379299987],[-68.04579149199992,-54.080585293999945],[-67.83434256099991,-54.01846583599996],[-67.66938754499995,-53.94104102199998],[-67.53593457099998,-53.932758863999936],[-67.55749550799987,-53.838773756999956],[-67.79193163999992,-53.72330817899996],[-68.0219345839999,-53.54750027399996],[-68.0672075899999,-53.40203519499994],[-68.13198863699995,-53.32340422599998],[-68.44380951699986,-53.29594175799991],[-68.52021760599985,-53.257236810999984],[-68.52681751599994,-53.1453306919999],[-68.37446552899996,-53.028766246999965],[-68.25185354099995,-52.99937359499995],[-68.58948548599994,-52.68766117699994],[-68.77886955899999,-52.539048188999914],[-68.81185150999988,-52.60887061599988],[-69.04865251299992,-52.67611007599993]]],[[[-69.04708056999982,12.246084812000163],[-69.06856556799988,12.337438337000151],[-69.14392859999998,12.377352625000071],[-69.14979559699998,12.279915347000042],[-69.04708056999982,12.246084812000163]]],[[[-66.96085353399997,75.97002629100007],[-67.40790552599987,76.04730106800008],[-68.03833059199991,76.1081189840001],[-68.2360615319999,76.30719019000009],[-68.06981654099997,76.3969793170001],[-68.25129664699995,76.44294232100009],[-67.79344960299994,76.57395515600018],[-66.96427955299993,76.61589719300014],[-66.98705251399997,76.69094422800003],[-67.21844450599997,76.75239598400009],[-67.31349947999985,76.93297302400015],[-67.64436354099996,76.87583258400014],[-67.82596551999984,76.79188044800014],[-68.41403163299992,76.68706877200015],[-68.76116161499993,76.69119618800005],[-69.02394852899988,76.73905115600013],[-69.24871060399994,76.88768895400005],[-69.16665663399988,76.95489320900009],[-69.68328864699998,77.04207221100006],[-69.94708256299992,77.007790898],[-70.0381465769999,76.91259309700013],[-70.53201250299998,76.88846025600009],[-70.78335560499994,77.02689677500013],[-70.69493054999998,77.10549287600008],[-70.21121259299997,77.19976849900002],[-69.67735258399989,77.21927721100019],[-70.14917762499988,77.23961874900016],[-70.91028561499996,77.18737619100017],[-71.19388563299992,77.13240381400004],[-71.37332155999991,77.00461801200004],[-70.88722951399996,76.9340412140001],[-70.92250056199998,76.86347933500019],[-70.45417764799998,76.78431091800019],[-70.08139049199997,76.87931928800015],[-70.00805654999982,76.7626576130001],[-69.40888961199988,76.70125279600012],[-68.75527148399993,76.65568659100018],[-68.18083954299993,76.68762600100018],[-67.97666962399984,76.60485671800012],[-68.39527863299992,76.57041480800018],[-68.73444362799995,76.58318799000011],[-69.0655516029999,76.48068703700011],[-69.61500564099998,76.42123503599998],[-69.41000356699993,76.31400501300004],[-69.12304659699998,76.2787237390001],[-68.50057260399996,76.0859315830001],[-66.96085353399997,75.97002629100007]]],[[[-70.59152250699998,78.34575001400015],[-69.89682752199997,78.32969649000006],[-69.63365956599995,78.34629198800008],[-68.86785150799989,78.47981537000015],[-68.16154456899989,78.56089854900011],[-67.44195549899996,78.60606761900016],[-66.94494652599991,78.71529018800015],[-67.24548351999994,78.82776996400008],[-67.11199953299985,78.894440293],[-66.7204136119999,78.9510005370002],[-66.21054864399991,78.97575280000018],[-65.66873957299993,78.95561024900007],[-65.4763415349999,78.996864803],[-65.54297649099993,79.08553980600004],[-65.89195250399996,79.13891844800008],[-67.0066755549999,79.11251847000011],[-67.19332863699992,79.14615136000003],[-67.73083460699996,79.08308240000014],[-68.34055352299998,79.06223711000001],[-69.04695852999993,78.9722270360001],[-69.00279260599996,78.89529491200011],[-69.29499849099989,78.81527237900013],[-69.84333052699998,78.7994480160001],[-69.97084056499995,78.7527829440001],[-70.70029463299988,78.69917530900005],[-70.8088754829999,78.61498697000019],[-71.31527755099995,78.64166153900004],[-71.8861235469999,78.55942584800005],[-72.55221562399998,78.52026928500004],[-72.58555564899996,78.4185924410001],[-72.82166262999993,78.35080832500006],[-72.65638759299998,78.28664066500016],[-71.8355716189999,78.376604805],[-70.59152250699998,78.34575001400015]]],[[[-67.67380564599989,-13.65012190799996],[-67.58866864399988,-13.644131529999925],[-67.53538555599994,-13.510149321999904],[-67.58950063199995,-13.465186445999962],[-67.7381204919999,-13.49743129199993],[-67.80753354699993,-13.48536906299995],[-67.96496563799991,-13.554278532999945],[-68.03464557199999,-13.640676508999888],[-68.08787551899997,-13.552528391999942],[-68.20235454699986,-13.587005170999817],[-68.22872954599995,-13.633786248999968],[-68.16966260999993,-13.739177114999848],[-68.07604949199998,-13.699630624999884],[-67.93396751599983,-13.729608668999958],[-67.94139857599998,-13.59940753799998],[-67.66096456999998,-13.55159548599994],[-67.67380564599989,-13.65012190799996]]],[[[-67.82006851599988,-13.108191298999941],[-67.68740863699992,-13.043562466999902],[-67.62171949399982,-12.869444185999896],[-67.73198661499998,-12.884890189999908],[-67.77985348499993,-12.946644196999955],[-67.89540053499991,-12.981123657999944],[-68.02517653599989,-13.048848262999911],[-68.04247259399995,-13.19231073799989],[-68.07686655999998,-13.292681849999894],[-67.95771059799995,-13.259905087999982],[-67.98406950399988,-13.156410040999958],[-67.84649648899995,-13.142880978999926],[-67.82006851599988,-13.108191298999941]]],[[[-68.17768057099988,-13.095621964999907],[-68.08699759899997,-13.045383350999941],[-68.10029548799997,-12.967726694999953],[-68.21521758299991,-12.983896559999891],[-68.31053155699993,-13.119487589999892],[-68.17768057099988,-13.095621964999907]]],[[[-68.67265357899998,-12.989486282999906],[-68.7119595079999,-12.881913440999881],[-68.80426052299993,-12.970161469999937],[-68.74443854499998,-13.153970236999896],[-68.6478495159999,-13.067773090999879],[-68.67265357899998,-12.989486282999906]]],[[[-68.71865849299996,-12.755510987999969],[-68.82055661899994,-12.789573533999942],[-68.83843957699997,-12.884327428999882],[-68.9401325149999,-12.963299875999951],[-68.92280561199988,-13.056824816999892],[-68.85962651399996,-13.04300942899988],[-68.84028661399992,-12.951356669999939],[-68.71865849299996,-12.755510987999969]]],[[[-67.59803055899982,-12.480317683999886],[-67.50053360199996,-12.425896332999855],[-67.54679852299995,-12.368455317999974],[-67.75017551299993,-12.605509118999976],[-67.87287148799987,-12.648666029999958],[-67.95386464499995,-12.619396255999959],[-68.02824364199995,-12.69856484099995],[-68.06109651199989,-12.820345679999889],[-68.13021854699986,-12.793429376999939],[-68.18323559299995,-12.829299898999977],[-68.29686754599993,-12.812297207999848],[-68.18756853399992,-12.670409859999893],[-68.12462664399999,-12.68216095299988],[-68.09342953599997,-12.513059240999894],[-68.2325825399999,-12.64923499299988],[-68.29685262599992,-12.73802399099992],[-68.36944560799998,-12.661032186999876],[-68.40051262899993,-12.780386296999893],[-68.52571848099996,-12.824939297999947],[-68.63126357399989,-13.002042373999814],[-68.52587153499985,-13.024963861999822],[-68.4847645019999,-12.9774119839999],[-68.3702925149999,-12.942591210999979],[-68.28431648399999,-12.961123095999938],[-68.11924764199983,-12.911864494999975],[-68.04836255699996,-12.853441456999917],[-67.99325556699995,-12.880780374999858],[-67.82942959299993,-12.79421727599987],[-67.65058861299997,-12.768372179999972],[-67.75511161599997,-12.702266623999947],[-67.61866764299998,-12.679069203999973],[-67.5253825929999,-12.569398706999948],[-67.42983258399994,-12.561969154999929],[-67.36033654899995,-12.513574392999885],[-67.24424752499982,-12.517434929999922],[-67.19911952599989,-12.485754353999937],[-67.26452653399986,-12.407688492999966],[-67.31238552499997,-12.47082115499984],[-67.54461654599999,-12.529773091999914],[-67.59803055899982,-12.480317683999886]]],[[[-68.14450851799995,-12.346822631999942],[-68.24051651399998,-12.25683166999994],[-68.27122462199998,-12.298801870999966],[-68.14450851799995,-12.346822631999942]]],[[[-67.68502063299997,-12.242421836999938],[-67.61218256399997,-12.218878243999882],[-67.62171161499998,-12.101473261999956],[-67.69956960499991,-12.127115682999943],[-67.68502063299997,-12.242421836999938]]],[[[-62.264903507999975,8.588070383000058],[-62.16754954599992,8.663468954999985],[-62.016731614999856,8.818858041000055],[-61.99747050499991,8.869095145000188],[-62.09077852099995,9.073386768000148],[-62.322158611999896,9.160939435000046],[-62.35928356999989,9.199684615000024],[-62.38019557999996,9.39498379700018],[-62.26052848899991,9.405976999000075],[-62.15159258199992,9.3747463630001],[-62.19087554399994,9.549250881000091],[-62.25242251799989,9.568602517000045],[-62.43202960499991,9.550958778000108],[-62.51727255399999,9.665323812000054],[-62.57260551999997,9.695102535000046],[-62.72238158099992,9.855994340000052],[-62.84079758799987,9.898018353000168],[-62.89183851699988,9.867461454000079],[-63.037216592999926,9.931383189000144],[-63.01274462099997,10.04173127900009],[-63.00885055599991,10.186823029000038],[-63.07515358999996,10.258166939000091],[-63.02308252499995,10.368956253000135],[-63.05311957799984,10.45352848300007],[-63.01671261399986,10.515131113000166],[-62.92369863399989,10.561530981999965],[-62.7506485429999,10.609587450000163],[-62.67464848599997,10.592717864000065],[-62.35834462899999,10.567698386000131],[-62.31846655099997,10.540579409000088],[-62.246730535999916,10.634516907000034],[-62.15037955299994,10.689723977000028],[-62.35967248999998,10.716148933000056],[-62.31927154899995,10.634550937000029],[-62.46963450999988,10.618937966000033],[-62.70346060799983,10.635918696000147],[-62.75101852099988,10.736963545000094],[-62.89658351299994,10.69361653300001],[-63.001365516999954,10.72001785100008],[-63.16615255999989,10.714033173000189],[-63.287937589999956,10.663100873000076],[-63.39227652699998,10.68015771100005],[-63.536537629999884,10.625212324000131],[-63.77172863599998,10.663901680000151],[-63.908969560999935,10.623944477000123],[-64.12826562899983,10.613620152000067],[-64.25597347899992,10.659031962000086],[-64.29164853499992,10.630193186000156],[-64.2482755389999,10.519285855000021],[-64.19774657699998,10.549767819000067],[-64.0080485179999,10.57480204899997],[-63.815185618999976,10.545229857000095],[-63.73728957499998,10.492676832000086],[-63.789207586999964,10.43905930700015],[-64.06764250799984,10.443631970000183],[-64.12699157899993,10.355143380000072],[-64.3038255969999,10.405336898000144],[-64.38589448699992,10.378181544000029],[-64.40010851899996,10.277455710000083],[-64.45659651099993,10.247608759000116],[-64.61808762199996,10.248592794000047],[-64.66847258299998,10.180056487000115],[-64.6411055019999,10.122261755000125],[-64.73400163199989,10.063812565000148],[-64.95194251399988,10.092548747000137],[-65.09120951199992,10.04258321600014],[-65.19449651999997,10.092751589000045],[-65.39790351699992,10.127954241],[-65.60555259499989,10.1885880910001],[-65.65499157499988,10.145896040000082],[-65.77856463299992,10.166996476000179],[-65.96572850699994,10.272285082000167],[-66.07817056499994,10.400911086000065],[-66.29862953899993,10.367746410000109],[-66.53571351399995,10.378763583000136],[-66.84056852999993,10.431016032000116],[-66.93371561399988,10.596447308000108],[-67.02912849399996,10.607885589000148],[-67.15428154099993,10.553146396999978],[-67.74461361699997,10.499628280000081],[-67.84171260099998,10.45903388500011],[-67.93287652699996,10.466550608000034],[-67.98207863399983,10.36700645500008],[-68.16763251299994,10.32732334000002],[-68.2045665309999,10.36078088000005],[-68.20330857499994,10.537023471],[-68.27446757999991,10.529925004000063],[-68.30778463999991,10.665624664000063],[-68.37214659199992,10.748090019000017],[-68.52075153299995,10.703223870000102],[-68.72571555299999,10.591117759000099],[-68.81685651199984,10.525180512000077],[-68.64944459199995,10.492174589],[-68.68064153299997,10.386009068000021],[-68.84944149599994,10.204287898000132],[-69.06565855599996,10.180263687000036],[-69.14317355799994,10.190310906999969],[-69.24018050899997,10.094084646999988],[-69.4101715409999,10.105036777000066],[-69.45330850199991,10.155537240000058],[-69.48466453199995,10.30762972399998],[-69.47415161299983,10.403112844000134],[-69.60698650599994,10.42473647800017],[-69.61344962399994,10.602396113000168],[-69.73583949199997,10.739045442000133],[-69.87895160399984,10.726298244000077],[-69.89589662699996,10.82805019],[-69.80847957999993,10.893771855000125],[-69.78425554399996,11.011249424000141],[-69.81269852699995,11.051817668000183],[-70.11622651999994,11.136474890000045],[-70.14703353399995,11.227241682000056],[-70.03847464499995,11.268456841000045],[-69.93129759599992,11.26798896300005],[-69.66558858199988,11.318110229000183],[-69.56153161299983,11.424105933000078],[-69.66087359399995,11.502980648000118],[-69.75629452099992,11.672188977000076],[-69.79342651999991,11.799280087000113],[-69.81800058399989,11.987491364999983],[-69.92456055699995,12.161223407000023],[-70.01847056199995,12.200264803000039],[-70.20692457899992,12.067513729999973],[-70.28887964399996,11.906059834000132],[-70.27382658399995,11.831215138],[-70.20505558299993,11.738020277000146],[-70.23075852099993,11.621210577000056],[-70.17897763799994,11.611409283000171],[-69.96688849799989,11.659544709000158],[-69.92114258499993,11.649336556000094],[-69.8425065859999,11.719606744999965],[-69.80509161499992,11.69339435400019],[-69.72975154799985,11.48764377700013],[-69.8152925579999,11.41878325700003],[-69.93359356599984,11.481383166000171],[-69.99203454199994,11.411036870000089],[-70.08444955099998,11.360517295000136],[-70.1554105759999,11.394680927000138],[-70.51138262799992,11.243295541000066],[-70.7118075119999,11.225920861000077],[-70.83500656899997,11.19690673600013],[-71.16171253499988,11.02185772900009],[-71.29837762299991,10.97147628800019],[-71.31859561099998,10.86724648400002],[-71.43741663299994,10.797321295000074],[-71.58327448899996,10.80261899300018],[-71.52291154199992,10.724160691],[-71.42715450099996,10.72110582200014],[-71.25312054199998,10.75542535700015],[-71.14493548599995,10.815394187000095],[-70.85253161999998,10.913086274000136],[-70.50252563899994,11.055672505000189],[-70.48249054299993,11.10093830300002],[-70.33085654999991,11.00250223800009],[-70.17536151699989,10.96643557900012],[-70.14450856999991,10.894046613000171],[-70.10331755099998,10.602360909000083],[-70.03535456499992,10.501635914000076],[-70.04300657199997,10.453901478000091],[-70.21707958999986,10.421540794000066],[-70.1593856099999,10.236378685000147],[-70.16476461199983,10.12740237700018],[-70.11926261299988,10.020666886000072],[-69.89218864099996,9.970537405000073],[-69.84078963699994,9.874953031000075],[-69.84631364699993,9.743336364000129],[-69.89212057999998,9.67688212100012],[-69.76790664199996,9.65121891299998],[-69.68015264199994,9.784329571000058],[-69.5040966329999,9.930179212000098],[-69.42772659899998,9.956662171000062],[-69.2758485249999,9.93340875900003],[-69.22469360199995,9.893618859000128],[-69.22487649499982,9.755318295],[-69.34281154899992,9.628983400000095],[-69.32556963899998,9.560876077999978],[-69.36638648999991,9.488646201000108],[-69.47757763199996,9.477271120000182],[-69.54727952799993,9.390229247000093],[-69.55050655999986,9.328160583000113],[-69.62213863999989,9.297946671999966],[-69.65005456899996,9.182620904000146],[-69.53444649899996,9.134411382000053],[-69.26403859099992,9.15229115500017],[-69.20797757199995,9.136418345000095],[-69.05255864699984,9.007217510000032],[-68.94542652499996,8.961234725000054],[-68.63302662299992,8.888255840000056],[-68.38848157999996,8.74475514300002],[-68.3654405669999,8.67230549300018],[-68.4665834839999,8.498303720000138],[-68.60301957699994,8.36135666600012],[-68.89927660399997,8.216555097000082],[-69.07505064599991,8.051484746000028],[-69.2070005779999,7.966388983000058],[-69.35731458899988,7.950020299000187],[-69.55039960699997,7.807422501000133],[-69.69873850699986,7.728249055000163],[-69.88488062699997,7.675331921000122],[-70.04939257599995,7.481523879000065],[-70.13774152399992,7.437250164000147],[-70.24964864899988,7.420303464000085],[-70.42767356699994,7.290326800000173],[-70.51578564199991,7.263710737000167],[-70.77375061499993,7.241596427000104],[-70.89297463799994,7.160751294000079],[-70.95815248499986,7.071261569000114],[-70.90715748899999,6.986169829000175],[-70.90393062299995,6.864103671000066],[-70.83409159999997,6.778768017000175],[-70.80215453699998,6.68919849700012],[-70.72747060699993,6.617847714000163],[-70.70490249999995,6.537771537000026],[-70.73889161999989,6.467822543000125],[-70.84313952899993,6.441016378000029],[-71.06636050799995,6.335922065000034],[-71.10008962099994,6.280054165000138],[-71.25093856499984,6.291254567000124],[-71.44052162499997,6.213756999000054],[-71.63869462699995,6.201909012000044],[-71.6862416429999,6.164935766000099],[-71.73956261699988,6.029629553],[-71.77274355399999,6.011248039000066],[-71.7646635669999,5.88935974400016],[-71.68561551499988,5.799475567000059],[-71.86906452999995,5.815554404000068],[-71.97357160799993,5.727698648000057],[-71.90003951799997,5.567710412000167],[-72.06040963399994,5.527320535000058],[-72.17553758799994,5.313283273000081],[-72.25101461499997,5.286014092000073],[-72.33660155799993,5.188685444000157],[-72.38321650599988,5.221905944000127],[-72.54792760899994,5.186157462000097],[-72.58167264899993,5.097669040000142],[-72.46136450999995,4.932827179000185],[-72.5414125239999,4.905618180000147],[-72.65819556899999,4.953541544000188],[-72.70688654799994,4.776479706000146],[-72.77758052499996,4.739823464000153],[-72.79254155199999,4.65123194500012],[-72.87687657299995,4.652079020000144],[-72.97916462599994,4.732451078000167],[-73.06583350499989,4.641901713000152],[-73.14516452999993,4.514637936000099],[-73.14569862499991,4.45864833100012],[-73.2641905729999,4.301170978000073],[-73.25073962999994,4.240410394000151],[-73.3264156429999,4.152545921000069],[-73.34346057799996,4.082779150000079],[-73.53560648899997,4.024030390000178],[-73.60099757099994,4.024638246000166],[-73.69575465099996,3.876457262000031],[-73.84725956299997,3.816586836000056],[-73.7551265219999,3.678252073000067],[-73.73984564199998,3.51909398100014],[-73.54473153199996,3.364894288000187],[-73.49871857099998,3.383640917000093],[-73.39117456199989,3.27849966499997],[-73.33213763299995,3.191320328000074],[-73.24994653499988,3.147548353000104],[-73.26447253999999,3.030872093000028],[-73.22560163199995,2.909659212000065],[-73.11252556699998,2.84120638800016],[-72.96511052099999,2.860963707000053],[-72.83000949699993,2.77594405100001],[-72.77306351699997,2.669986066000149],[-72.65756256799995,2.586380270000063],[-72.60460654199989,2.613210239000182],[-72.53401951799998,2.710882881000089],[-72.43929261199997,2.726443716000176],[-72.33890557499996,2.806123764000176],[-72.25114453399988,2.82055270800015],[-72.21707964199999,2.873429776000023],[-72.12791463199994,2.891762340000071],[-72.09847252599997,2.842705072000172],[-71.92024258699985,2.837623460000032],[-71.77953356699993,2.879066439000042],[-71.87220757599994,3.077928768000049],[-72.08940850399989,3.206403227000067],[-71.94627359299983,3.216432175000136],[-71.87302363799995,3.245593319000136],[-71.89021257499991,3.340079999000068],[-71.76766948599993,3.476971900000024],[-71.60537756699995,3.516622996000024],[-71.55606850699985,3.498782283000139],[-71.39719355599993,3.517004038000096],[-71.32460057499998,3.612302756000076],[-71.11428051899992,3.641504804000078],[-71.09677156099991,3.761509685000135],[-71.00148759499984,3.79231753800002],[-70.95195054699997,3.860481522000157],[-70.80308559899993,3.934560950000048],[-70.71000657599984,3.92393772600019],[-70.6181186209999,3.864200237000091],[-70.58045956899997,3.961462165000171],[-70.24266853499995,4.089165489000095],[-70.29196150199994,4.183826681000085],[-70.1364595959999,4.207337919000111],[-70.11927049199988,4.260995678000029],[-69.89266959499997,4.337100174000113],[-69.80369552499997,4.333272494000141],[-69.59991452699995,4.423879860999989],[-69.42135651999996,4.413369625000087],[-69.20987657599994,4.310481261000064],[-69.07099950499992,4.36957686400018],[-68.98334457899995,4.378194298000153],[-68.8413395479999,4.526772082000093],[-68.80101052399993,4.641433835000157],[-68.71525560799995,4.693231817000139],[-68.65752457899998,4.680231821000064],[-68.59286456599995,4.793844328000034],[-68.43000049899996,4.86692513600002],[-68.29511254299985,4.876090244000011],[-68.15420554199989,4.845872477000114],[-68.05022451299993,4.854146086000185],[-67.93350248799999,4.92134497700016],[-67.80966154499998,4.898234561000038],[-67.78979458999993,5.019837872000153],[-67.71595756699998,5.06091774700019],[-67.58723449999997,5.191879116999985],[-67.45095062199994,5.516555322000102],[-67.43252552199988,5.598608119000176],[-67.3369595879999,5.776620967000042],[-67.18511152199994,5.955510059000062],[-67.20185856399996,6.061395289000018],[-67.03772748899996,6.102889063000077],[-67.02072161299992,6.244601732000149],[-66.86766051699993,6.357970493000039],[-66.88466656099996,6.488346136000132],[-66.85632348999991,6.53936141600019],[-66.61822563999993,6.567704319000086],[-66.56720750999995,6.675404566000054],[-66.58421355299998,6.794442847000028],[-66.55586964399993,6.987170796000157],[-66.42548360799998,7.145888336000041],[-66.29510461299992,7.100540563000095],[-66.23841059299997,6.947491537000019],[-66.18172461999995,6.856796159999988],[-66.09101851399998,6.845458965000148],[-65.87581650199996,6.913594953000143],[-65.85292854199997,7.077866342000107],[-65.67719255399999,7.094871044000058],[-65.63184360799988,7.145888336000041],[-65.64318063499991,7.225246351000123],[-65.76222964399989,7.344284967000078],[-65.73954754399989,7.485995624000168],[-65.63751262499989,7.48032794900007],[-65.45610862599989,7.434980177],[-65.36540251999992,7.48032794900007],[-65.3030475299999,7.434980177],[-65.16709155199999,7.41518865900008],[-65.09264348799991,7.338396343999989],[-64.97299953099997,7.289425913000116],[-64.9375305019999,7.368884008000123],[-64.95365158399989,7.45565984000018],[-64.92041750599998,7.529115655],[-64.75666847699995,7.526108731000079],[-64.81264450299994,7.429893702000072],[-64.53266949099998,7.438136131000022],[-64.44065848999998,7.350258581000162],[-64.3426435319999,7.387090676000071],[-64.35997764299998,7.543767557000137],[-64.15263349799994,7.592239768000184],[-64.07044256699987,7.561763],[-64.02415451199988,7.491379321000181],[-64.04554747599991,7.428616636000072],[-63.93370857999997,7.335873391000064],[-63.873256617999914,7.358998895000184],[-63.82233454399994,7.455626816000063],[-63.719181478999985,7.315421883000056],[-63.67744060699994,7.367804252000155],[-63.632411514999944,7.201737292000189],[-63.53612155199994,7.18565543700015],[-63.54944961599995,7.057657573000029],[-63.59310960899995,6.927984166000101],[-63.64965459799987,6.840962409000042],[-63.80630163999996,6.740086875000145],[-63.74421654799988,6.697914670000046],[-63.751357593999955,6.6352902860001],[-63.70555451699994,6.525345365000021],[-63.646926623999946,6.54707477900007],[-63.61597057899996,6.618668470000046],[-63.49857749899991,6.721238154000162],[-63.48922748599989,6.805265056999986],[-63.27324662799998,6.947654649000015],[-63.18263657799997,7.031328505999966],[-62.94068958999992,7.154191617000095],[-62.95437254399991,7.270888161000187],[-62.88007753399995,7.374641705000045],[-62.69417161499996,7.322174344000189],[-62.57865155499991,7.398730960000023],[-62.48073952599998,7.360128608000139],[-62.42427047699988,7.222142868000105],[-62.36994954199997,7.280984498000066],[-62.24471250899995,7.255335372000047],[-62.22355658499998,7.095854744000064],[-62.123569531999976,7.061361536000163],[-62.06666948599991,7.194985669000118],[-62.130744608999976,7.358014021000031],[-62.10733747399996,7.404697534000036],[-62.011978572999965,7.370208852000189],[-61.938129479999986,7.489722386000153],[-61.88278964099993,7.650111780000032],[-61.879318526999896,7.736229465000179],[-61.932983493999984,7.865142130000038],[-62.06995351499995,7.948956133000081],[-62.20726048899991,7.931190354000137],[-62.319595592999974,7.95882649400005],[-62.43164453999992,7.952179813000157],[-62.67279055299997,7.830520847000116],[-62.81499456999984,7.71224112900012],[-62.94432063099998,7.728333209000027],[-63.00804153499996,7.896500002999971],[-62.973800621999885,8.029231295999978],[-62.882232520999935,8.11920197400002],[-62.81608153499997,8.144773987000121],[-62.68593555699994,8.297536184000137],[-62.652828547999945,8.380589278000173],[-62.492675523999935,8.491148425000063],[-62.29185451099994,8.560426196000094],[-62.264903507999975,8.588070383000058]],[[-62.234851534999905,7.738393504999976],[-62.25154862099998,7.691849802000036],[-62.39079248499996,7.826135100000045],[-62.294074541999976,7.87497058200006],[-62.234851534999905,7.738393504999976]],[[-67.14015149599999,10.514788125000052],[-67.06582664599989,10.496632420000026],[-67.01502962999996,10.395491347000075],[-67.0323105999999,10.313657150000097],[-67.12255855199999,10.253631492000068],[-67.23212461099996,10.233035814],[-67.80659460599998,10.282964297000149],[-67.86616562999995,10.398799182000118],[-67.66150654399996,10.471162163000145],[-67.44932553799993,10.442848261999984],[-67.14015149599999,10.514788125000052]],[[-66.3250965709999,10.265287534000095],[-66.11884358299994,10.273014978000163],[-66.12287158999987,10.178783778000025],[-66.22154251599989,10.141179208000096],[-66.32074753699999,10.14764500800004],[-66.38841262999995,10.186667126000032],[-66.3250965709999,10.265287534000095]],[[-66.71062455499998,9.887730069000156],[-66.76380152799999,9.985270277000154],[-66.69002552499995,10.107918475000133],[-66.52454362199995,10.13363298000013],[-66.26484661299997,10.07205516099998],[-66.1901935279999,10.08434118700012],[-66.05618248599995,10.158101096999985],[-65.97546358499994,10.160443001000147],[-65.86466253599997,10.107154716000082],[-65.76310756499998,10.095628426000133],[-65.67377458199996,10.024291389000041],[-65.67533847699997,9.934928901000092],[-65.78836056299997,9.85359661300015],[-65.91789248299995,9.820258766],[-66.03052547999994,9.833138902000087],[-66.20191159599995,9.817527942000027],[-66.35762053499997,9.853039719000094],[-66.41487161599991,9.84044741800011],[-66.55274151799983,9.909903556000074],[-66.71062455499998,9.887730069000156]],[[-64.03804751699994,10.20039115100002],[-63.8718756159999,10.146611855000117],[-63.82814756199997,10.051473565000038],[-63.871810571999845,9.982717484000034],[-64.08740250999989,9.983716438999977],[-64.24958764199994,9.933318067000187],[-64.32497447999998,9.943456147000063],[-64.39627849199996,10.03058418600017],[-64.34456650799984,10.13106392700007],[-64.21990162399999,10.220195912000065],[-64.03804751699994,10.20039115100002]],[[-63.62560658299998,10.23770654600014],[-63.452865616999986,10.30954046200003],[-63.2727586339999,10.273543038000184],[-63.22524262999997,10.188082997000038],[-63.21494261299995,10.101054199000089],[-63.26795949099994,10.05951600200018],[-63.41283062899987,10.00908963400019],[-63.56666554299994,10.052956659000017],[-63.66209451599991,10.160278044999984],[-63.62560658299998,10.23770654600014]],[[-68.40341963999992,10.09567653800002],[-68.49195852199989,10.053637605000063],[-68.53479759099997,9.98420426600012],[-68.62227649699997,9.916395172000023],[-68.72590649199998,9.985914174000015],[-68.72233563399993,10.113294292000035],[-68.6617735339999,10.22424940100018],[-68.54202262399991,10.280750469000111],[-68.27638250999996,10.261046794000038],[-68.18867460999996,10.213602372000082],[-68.16844958099995,10.127633214000184],[-68.24109654199992,10.064669531000163],[-68.40341963999992,10.09567653800002]]],[[[-67.89853480999989,60.5004904970001],[-68.00298663999996,60.58607412500004],[-68.24404811199997,60.58063016900013],[-68.4403104729999,60.26615271100019],[-68.32458918399982,60.20035802900014],[-68.00520809999989,60.29470165200007],[-67.82869912999996,60.45360315300019],[-67.89853480999989,60.5004904970001]]],[[[-67.96938440499997,69.69816980600007],[-68.21797628199994,69.59791852400014],[-67.91961494799995,69.5196881230001],[-67.71478138399982,69.64075525400011],[-67.96938440499997,69.69816980600007]]],[[[-69.61397550499993,77.21748449000012],[-69.00623354499999,77.13517285900008],[-69.00132761699996,77.02689677500013],[-68.42780259699998,77.1236970280001],[-67.92944363499998,77.15709287700008],[-67.61383061399988,77.12260604000011],[-67.41539760599989,77.04404849600007],[-66.96755251899992,77.02290665400017],[-66.56858851199996,77.06180371400012],[-66.01754761199987,77.16157250200007],[-65.47576150699996,77.30371046900018],[-65.30818161399998,77.44648043200016],[-65.72940057899996,77.59543188000009],[-66.5377504839999,77.7227291850001],[-67.81100449299998,77.70312810500008],[-67.9989165369999,77.63487024400007],[-68.5067906349999,77.74951020400005],[-69.35034956199996,77.82452052600019],[-69.58613551599996,77.92494561700005],[-69.49456054199987,77.97852207200015],[-70.06063052899987,78.02400429000016],[-70.33945453899997,77.98065124300001],[-70.70004250499989,78.04690934900003],[-71.01764656299997,78.02842909700007],[-71.29553950999991,77.94673571500016],[-71.43749961399988,77.78799537700013],[-71.20223249899982,77.75826979600004],[-70.67028054599996,77.77909916000004],[-70.52084361699997,77.83771196500015],[-70.06665762099993,77.84715786700013],[-70.70861048599994,77.69381128400005],[-70.28332562699995,77.6557535880001],[-70.28778060799993,77.56909342600005],[-69.20666463099991,77.44851002600006],[-68.63695555599992,77.50797812000013],[-67.58111554299995,77.52047553800014],[-67.29777553199995,77.55990786600017],[-67.15610460399995,77.66742773500016],[-66.80973050199992,77.68047483800007],[-66.25139650799991,77.60242087900008],[-66.06417060699994,77.49712841700011],[-66.10194348699997,77.43740149000018],[-66.65666152699993,77.414908652],[-66.54526553099998,77.3321386990001],[-67.31443758199993,77.37851342300007],[-68.35834461499996,77.37184444500019],[-69.10166955899996,77.27100780300009],[-68.54055763499997,77.16516615900014],[-69.61397550499993,77.21748449000012]]],[[[-67.26200056299984,-12.719281551999927],[-67.1707995889999,-12.62447686299987],[-67.27829749799992,-12.614349344999937],[-67.40308358399994,-12.672720415999947],[-67.42033354099993,-12.826889263999874],[-67.32807963199997,-12.959046395999906],[-67.46131853299988,-12.977042173999962],[-67.6137545069999,-12.96267005999988],[-67.64392851999992,-13.04229059699992],[-67.74645947999994,-13.094321092999962],[-67.76131455899991,-13.146218652999892],[-67.57326555599997,-13.169727208999973],[-67.37355749199997,-13.149297325999953],[-67.2733156299999,-13.068262761999904],[-67.2700275769999,-13.001223294999875],[-67.15757763999994,-12.841702097999928],[-67.13966350099992,-12.751784225999927],[-67.16905950599988,-12.690105320999976],[-67.26200056299984,-12.719281551999927]]],[[[-67.24621559599996,-11.939487282999949],[-67.25350952799994,-11.993763793999904],[-67.1613235129999,-12.035754949999898],[-67.14038048899994,-11.979332838999937],[-67.24621559599996,-11.939487282999949]]],[[[-67.10612448899991,-11.61779235299997],[-67.18144963599991,-11.570527806999962],[-67.22947659999988,-11.598424959999875],[-67.36897259099987,-11.583635929999957],[-67.27769450399995,-11.738598041999921],[-67.17939757799996,-11.779867347999982],[-67.10612448899991,-11.61779235299997]]],[[[-66.84588651199994,-11.399776536999923],[-66.75782053699993,-11.328133392999916],[-66.77703051799989,-11.214926402999936],[-66.86097762599996,-11.246127031999947],[-66.8161235469999,-11.309449627999982],[-66.84588651199994,-11.399776536999923]]],[[[-66.20844260699994,-11.465756028999976],[-66.2857975149999,-11.446829188999914],[-66.32213557999995,-11.358589373999905],[-66.37538161999993,-11.345751147999863],[-66.43867454499986,-11.491533063999896],[-66.35632351899994,-11.50317837699987],[-66.3398745369999,-11.639891073999934],[-66.22650963199999,-11.831009865999874],[-66.22142751599995,-11.91872899699996],[-66.15413659199993,-11.938746489999858],[-66.12474863299991,-11.84496690799989],[-66.23394756499994,-11.776811640999938],[-66.24460548999997,-11.648702297999876],[-66.27626762699992,-11.563890345999937],[-66.20844260699994,-11.465756028999976]]],[[[-66.44474756899996,-11.265978730999961],[-66.34483360599995,-11.192198704999896],[-66.36097748699996,-11.121467678999977],[-66.29969051999996,-11.08624323399988],[-66.24301963399995,-10.98609726099994],[-66.3627016449999,-10.981910332999973],[-66.44178054299988,-11.055231197999888],[-66.62578561299983,-11.128432369999928],[-66.65961463899993,-11.195980451999901],[-66.58789052599991,-11.241538442999968],[-66.56169858699985,-11.30910379099987],[-66.44474756899996,-11.265978730999961]]],[[[-66.21226491999994,68.27029343400005],[-66.55547845499996,68.21185534200015],[-66.24262569899986,68.16534711800011],[-66.21226491999994,68.27029343400005]]],[[[-65.62871548199996,-11.870603125999878],[-65.64756051499995,-11.759122807999972],[-65.70251461899983,-11.765983227999982],[-65.70323948599992,-11.919026721999899],[-65.80796851699984,-12.040505476999954],[-65.89958154499993,-12.04515022499993],[-65.90031462599995,-12.118392132999873],[-65.8241045179999,-12.12488861099996],[-65.70294159299988,-12.05997429099989],[-65.62871548199996,-11.870603125999878]]],[[[-65.5275645179999,-11.521138280999935],[-65.5609895369999,-11.44359159499993],[-65.69128454499986,-11.398349601999882],[-65.62855555499988,-11.518577273999881],[-65.5275645179999,-11.521138280999935]]],[[[-65.68554662999992,-11.16375069299994],[-65.66753358399995,-11.251401762999933],[-65.58843255799991,-11.259608148999973],[-65.62219955799998,-11.108476734999897],[-65.68554662999992,-11.16375069299994]]],[[[-65.56777954899997,-11.142037204999895],[-65.55352058999983,-11.039358555999911],[-65.47905760699996,-10.97953473399997],[-65.43596657799998,-10.818315866999967],[-65.51557956999994,-10.776255811999874],[-65.52301750399994,-10.953863310999907],[-65.6142575369999,-10.962306736999949],[-65.56777954899997,-11.142037204999895]]],[[[-65.66402259799997,61.73769507100002],[-65.69747644799997,61.832643816000086],[-65.79898047899991,61.85633405400006],[-65.93589206899992,61.781121702000064],[-65.66402259799997,61.73769507100002]]],[[[-65.30312363799999,-16.049983164999958],[-65.38793961299984,-16.124718560999895],[-65.39340260299997,-16.186933404999877],[-65.28704848899997,-16.18359053399996],[-65.20059955099993,-15.99449865399987],[-65.20960959399997,-15.91301767099992],[-65.3122106269999,-15.955767220999974],[-65.30312363799999,-16.049983164999958]]],[[[-65.36440255899998,-15.932165624999982],[-65.24042549299998,-15.853417476999937],[-65.19845562799998,-15.760606506999977],[-65.24937451599988,-15.707681829999956],[-65.35298154499992,-15.759372523999957],[-65.49694861099994,-15.866900773999873],[-65.43769056699989,-15.93567328399996],[-65.36440255899998,-15.932165624999982]]],[[[-65.44145831599997,61.56662825100011],[-65.16758830399988,61.494956188],[-64.93696351199998,61.34112814700012],[-64.82300111599994,61.30864098000018],[-64.6840906999999,61.42356907100009],[-64.62436439599998,61.601553150000086],[-64.73322901199998,61.65032909000013],[-65.00358206699997,61.68804941400009],[-65.39153812199987,61.65246528400013],[-65.44145831599997,61.56662825100011]]],[[[-65.28867967999992,64.65607412200006],[-65.42520276499988,64.6746067140001],[-65.62429295999988,64.58367643700018],[-65.63314489899983,64.51082464000001],[-65.46433005299997,64.50281231400004],[-65.26426391399991,64.60439994700016],[-65.28867967999992,64.65607412200006]]],[[[-64.84098857899983,-15.817741917999967],[-64.81264450299994,-15.653839500999936],[-64.84059848599998,-15.515805313999977],[-64.88203459199997,-15.492192821999879],[-64.91279550599995,-15.367300787999966],[-65.0152055989999,-15.36992851499997],[-65.00473760799991,-15.457620991999931],[-65.06743658999983,-15.574383249999926],[-65.14120454699992,-15.784825010999839],[-65.1392515629999,-15.973092949999966],[-65.16759463399995,-16.137341539999852],[-65.11642462399993,-16.16884760499994],[-65.14394358499999,-16.27781687299995],[-65.07453958299993,-16.366224995999914],[-65.01589157399991,-16.227376757999878],[-64.88474261699992,-16.06947896899993],[-64.81457552599994,-15.933676379999952],[-64.84098857899983,-15.817741917999967]]],[[[-65.28033458399995,-11.752639070999976],[-65.2546306399999,-11.715534731999924],[-65.29839356199994,-11.578623216999972],[-65.40272562599995,-11.629972599999974],[-65.35288263899992,-11.683939818999932],[-65.33727251699992,-11.87178815999988],[-65.41196449499995,-11.883592225999905],[-65.50946061299999,-11.551786877999973],[-65.58395360399999,-11.606081325999924],[-65.49305756399986,-11.755174931999818],[-65.50587449999995,-11.858190868999884],[-65.45130160499997,-11.92491551199987],[-65.47333561599999,-11.978583664999974],[-65.46160162299998,-12.105649125999946],[-65.63119551999989,-12.033330064999973],[-65.68298361099994,-12.10201221799997],[-65.78509564399997,-12.167512935999923],[-65.86947659899994,-12.182479829999977],[-65.82805658599995,-12.280021042999977],[-65.85626252799995,-12.39624920599988],[-65.96224951499994,-12.400627073999942],[-66.01132153399993,-12.281708151999965],[-66.07298250199995,-12.312786907999964],[-66.12007153099984,-12.15516454799996],[-66.19146757699997,-12.180426095999962],[-66.17924458299984,-12.258781802999977],[-66.28176850199998,-12.390613549999898],[-66.40440362499993,-12.446896855999967],[-66.34869363999996,-12.217207562999931],[-66.40194655399995,-12.0471850159999],[-66.51167253899996,-12.098215550999953],[-66.48077349199997,-11.94259110199988],[-66.62032362999997,-11.761979695999912],[-66.67378961099996,-11.778505455999891],[-66.55011747899988,-11.945730962999903],[-66.62770054299989,-12.108171742999957],[-66.62946359199992,-12.193166252999902],[-66.68120558399988,-12.27186779799996],[-66.66826660699985,-12.348835629999883],[-66.59455162499995,-12.435836766999955],[-66.59111755899994,-12.556040467999935],[-66.65171050499998,-12.663808272999972],[-66.67194358099988,-12.795192258999975],[-66.82169348999997,-13.126614889999928],[-66.8344195659999,-12.939097465999907],[-66.78088351199995,-12.783349131999898],[-66.67801660499993,-12.570676611999886],[-66.82568361099999,-12.577350114999888],[-66.78143353199988,-12.355666042999871],[-66.69334459099991,-12.21182168799993],[-66.79315159999999,-12.153981693999981],[-66.67091361199994,-12.089407343999937],[-66.73747262899997,-11.917726856999934],[-66.81455261099995,-12.033184890999962],[-66.8246155889999,-12.188696351999909],[-66.87619748599991,-12.222832155999924],[-66.91418460599994,-12.477989860999855],[-66.96540054899987,-12.592961074999948],[-66.96752150599991,-12.75395916199983],[-66.99465154699982,-12.87052813399987],[-67.04072552799994,-12.932269902999963],[-67.07464558099991,-13.055782778999912],[-67.04612749699987,-13.083267876999969],[-67.03776554299998,-13.259752201999959],[-67.13152349999984,-13.421248341999842],[-67.06237749299999,-13.531074910999962],[-67.09300261999994,-13.745774510999922],[-67.17764257499994,-13.781817364999881],[-67.19744850999984,-14.004746485999874],[-67.26974460399992,-14.06766624799991],[-67.43752264499989,-14.154596641999944],[-67.46455361199992,-14.368585623999877],[-67.23157458999992,-14.393578782999953],[-67.15526557599998,-14.498185102999912],[-67.04682151799983,-14.557708181999942],[-66.94773049099996,-14.692937281999946],[-66.94719656399991,-14.963087865999967],[-66.93241155699997,-15.05110002799995],[-66.83987450799998,-15.012943592999875],[-66.79264851899984,-14.890048631999889],[-66.72109958699991,-14.820912179999937],[-66.63947259099996,-14.67848419899991],[-66.57163952499991,-14.660152640999968],[-66.52719163299997,-14.55800003999991],[-66.42893963499995,-14.513593219999905],[-66.32356251499982,-14.531330835999881],[-66.21753663699991,-14.379787869999973],[-66.08074950899999,-14.352443587999915],[-66.02675664099996,-14.371843501999876],[-65.8626255659999,-14.273877829999947],[-65.76127662199991,-14.353476405999857],[-65.96031949799993,-14.36319203699992],[-65.99627652099997,-14.590357035999943],[-66.09033957999998,-14.762907900999892],[-66.14270049099997,-14.708952248999935],[-66.27972449099997,-14.685168765999947],[-66.44178758299995,-14.841161683999928],[-66.25151854899997,-14.877438393999967],[-66.21620961399998,-14.820591990999901],[-66.09822057999992,-14.845862255999918],[-66.05873158999987,-14.76100906499994],[-65.98029357299998,-14.70461746399991],[-65.93852956699993,-14.56655075499998],[-65.86840052999992,-14.655992869999977],[-65.74082159299996,-14.656682867999962],[-65.76721955899995,-14.776355825999872],[-65.75103762399988,-14.856761746999894],[-65.79369363299992,-14.956831109999882],[-65.78152461799988,-15.177518070999895],[-65.83496863799996,-15.27730043799994],[-65.83656354699997,-15.62899101399995],[-65.81703957999997,-15.654450373999964],[-65.88465857199998,-15.874532329999909],[-65.67215754499995,-15.89997961999984],[-65.53487353799983,-15.846346000999972],[-65.45864850999988,-15.756835656999897],[-65.32511154899993,-15.647980550999932],[-65.30221554299999,-15.548364145999926],[-65.21683462699986,-15.439772063999897],[-65.14928453399995,-15.515753010999958],[-65.05815849399988,-15.328017321999937],[-65.00669863799993,-15.266934202999948],[-64.98673260899994,-15.155241486999955],[-65.05860860199994,-15.076519322999843],[-65.07755254199998,-14.945001059999925],[-65.06891649899995,-14.638528000999884],[-65.00401357899989,-14.453352984999981],[-65.06422447699998,-14.409805812999934],[-65.08741753899989,-14.291781742999945],[-65.0372166439999,-14.267329215999894],[-65.08983655599991,-14.158102288999885],[-65.08478562099998,-14.007451325999966],[-65.19661764399996,-13.99182142299992],[-65.32212859799995,-13.817006773999935],[-65.31391952899992,-13.72748771299996],[-65.41564951499998,-13.641672446999962],[-65.35384353999984,-13.332839044999957],[-65.2935635739999,-13.158397892999972],[-65.2942195419999,-13.016764515999967],[-65.16391749299999,-12.908617513999957],[-65.11130562799991,-12.708652963999896],[-64.9910355429999,-12.683127721999938],[-64.96590458599997,-12.756576830999961],[-65.00337957199991,-12.888747038999895],[-65.08393049999995,-12.95412873299989],[-65.12129953799996,-13.032752325999866],[-65.17830653799996,-13.06000742599997],[-65.19766253199992,-13.225245246999975],[-65.26967649199986,-13.427038727999957],[-65.29749250799983,-13.54948358199988],[-65.15217561999998,-13.734211339999945],[-65.14711764399988,-13.817092771999967],[-65.10071559599999,-13.903553108999972],[-65.00123548099998,-13.96830800499987],[-64.98178058099984,-14.132988094999916],[-64.89193764299989,-14.443072579999978],[-64.93954450599983,-14.560786854999947],[-64.93107559799995,-14.682344064999882],[-64.96379854899988,-14.83176238599998],[-64.91299449199988,-14.938236527999948],[-64.8965525509999,-15.073570736999955],[-64.84412357899987,-15.298182105999956],[-64.7591785219999,-15.405159161999961],[-64.61709553999992,-15.435481367999898],[-64.51358758499998,-15.515067202999887],[-64.43421163299985,-15.505654660999937],[-64.23801458099985,-15.657630970999946],[-64.11603559399998,-15.692207830999962],[-63.87960456899998,-15.68712604999996],[-63.79026052099994,-15.657622085999947],[-63.83411748899994,-15.499291119999953],[-63.90820663999989,-15.409181134999926],[-63.92435454399998,-15.336375588999942],[-64.04162558399986,-15.233372391999922],[-64.15360261299992,-15.186306328999876],[-64.18610361099996,-15.07524158599989],[-64.27924348599998,-15.060893611999973],[-64.33000948899985,-14.96202101699987],[-64.41371150899988,-14.891653598999937],[-64.41357454899992,-14.84363451299987],[-64.5765304819999,-14.885282010999958],[-64.66793060999998,-15.013254393999944],[-64.72116055599986,-14.926140268999916],[-64.56352260599982,-14.822681934999821],[-64.55084950399998,-14.765268747999926],[-64.46827652599995,-14.747890882999968],[-64.36151153099996,-14.601526424999918],[-64.45011159999996,-14.48282409199993],[-64.45197254999988,-14.313211250999927],[-64.51387055799995,-14.217505339999946],[-64.44280962099998,-14.04266101899998],[-64.29141250099985,-13.988294485999972],[-64.16681651599998,-13.81281531899998],[-64.17881755699989,-13.705094284999973],[-64.0706256279999,-13.71107292899984],[-64.06674949999984,-13.770814943999937],[-63.946361565999894,-13.771889838999982],[-63.94815847799998,-13.92666670999995],[-64.00778163799993,-14.087975933999928],[-64.12051354199986,-14.188425332999941],[-64.08013154399998,-14.21688038499991],[-64.0830236359999,-14.368210617999921],[-64.03488150399988,-14.364150926999969],[-63.92822647999998,-14.426098723999928],[-63.72503255099997,-14.383196454999961],[-63.68045054899994,-14.310061331999918],[-63.81987764099989,-14.156050566999966],[-63.86341861099993,-14.06646528799996],[-63.84915562899994,-13.96516713899996],[-63.78726549999993,-13.828374310999891],[-63.80032349899989,-13.72480500099988],[-63.78201658399996,-13.565794597999968],[-63.70078655499998,-13.569152555999892],[-63.65026848899993,-13.613788369999952],[-63.701320481999915,-13.686267524999835],[-63.63776352799994,-13.75259620699984],[-63.546417546999976,-13.690954181999928],[-63.51285154499993,-13.799594207999917],[-63.36960951299989,-13.845800119999865],[-63.30631658899989,-13.933895095999958],[-63.16719862099984,-13.866466707999905],[-63.02193856299988,-13.883643574999951],[-63.004138585999954,-13.924655891999862],[-63.10356555899995,-14.027105882999933],[-63.02864056499993,-14.065047405999962],[-62.90646762099993,-14.218461379999894],[-62.77078656899994,-14.261944513999879],[-62.762523520999935,-14.416667405999931],[-62.679275631999985,-14.54438397399997],[-62.65863452499991,-14.346664935999911],[-62.567848622999975,-14.318192783999905],[-62.62208959499998,-14.245936587999836],[-62.56306456799996,-14.18827026699995],[-62.4526516009999,-14.207710079999913],[-62.46726259899992,-14.078931524999973],[-62.62182656999988,-13.915673508999873],[-62.740085500999896,-13.909060689999933],[-62.76480054899997,-13.849427807999973],[-62.697799637999935,-13.806572477999907],[-62.763263474999974,-13.638343824999879],[-62.773700620999875,-13.558251051999946],[-62.90242754299993,-13.463601595999933],[-62.86391051899989,-13.400864558999842],[-62.8851584759999,-13.313924273999817],[-63.00644662699989,-13.350855106999973],[-63.071323562999964,-13.232021009999926],[-63.05016763899994,-13.144849887999953],[-63.11582157799995,-13.013930426999934],[-63.05965461299991,-12.959734214999969],[-63.09638562099997,-12.86562136799995],[-63.22375450699991,-12.832109680999906],[-63.191692553999985,-12.92590351299998],[-63.181747593999944,-13.05574187499991],[-63.24834449699995,-13.10826925099991],[-63.30357755099993,-13.208407344999898],[-63.45597848799997,-13.278671665999866],[-63.549922522999964,-13.245327113999963],[-63.60726563799983,-13.279147925999837],[-63.70433461399989,-13.192271678999873],[-63.72114150399989,-13.055559651999943],[-63.765628622999884,-12.99430889499996],[-63.85924961999996,-12.95370662099998],[-63.86959054099992,-12.893304614999977],[-63.94057050899994,-12.853271303999975],[-63.95594459599994,-12.71551656899993],[-64.02864855299993,-12.690345378999837],[-64.10655951699994,-12.551199917999895],[-64.21511857399997,-12.544190299999968],[-64.14064050299999,-12.718245548999846],[-64.1471175349999,-12.793244303999927],[-64.26040649999999,-12.696093854999958],[-64.28942850499993,-12.560139050999965],[-64.35958050799996,-12.543247168999926],[-64.38466653799992,-12.713695851999887],[-64.46039552499997,-12.733106327999906],[-64.52284958799999,-12.826721289999966],[-64.63452956399993,-12.843216875999929],[-64.43460055299994,-12.63934585599992],[-64.43588248099996,-12.440020342999901],[-64.54386855199988,-12.479643610999972],[-64.63629948599998,-12.463215750999836],[-64.80158256999994,-12.39087774799998],[-64.81729159799994,-12.334306438999874],[-64.9436264929999,-12.214077592999956],[-65.00759147799988,-12.060349297999949],[-64.9981385349999,-11.977040891999934],[-65.13657354499992,-11.988155965999908],[-65.15312160199989,-12.139558785999895],[-65.18990357199993,-12.189160541999968],[-65.17735250999988,-12.336948414999881],[-65.09214057399998,-12.424234536999847],[-65.11427349199994,-12.533866980999903],[-65.19943949599997,-12.533292987999914],[-65.30084962799987,-12.286835865999933],[-65.2658085779999,-12.170914479999908],[-65.34939559899988,-11.969962206999924],[-65.29087851599996,-11.957210313999894],[-65.26637251299996,-11.818546813999944],[-65.28033458399995,-11.752639070999976]],[[-64.90341162999988,-12.67159774299995],[-64.96821564399994,-12.567964562999862],[-64.93106051099988,-12.52147165499997],[-64.83077958899997,-12.6024582739999],[-64.90341162999988,-12.67159774299995]],[[-64.87248257499982,-12.367077165999888],[-64.88442259599998,-12.427253027999939],[-64.84483352599989,-12.517550097999958],[-65.01531255199995,-12.485309274999906],[-64.99940453799991,-12.322380331999966],[-64.89965050199999,-12.320242610999912],[-64.87248257499982,-12.367077165999888]]],[[[-64.58690660699989,17.765462782000156],[-64.69853964399994,17.752266481000106],[-64.78718547799997,17.790123347000133],[-64.87068163899994,17.69304917300019],[-64.72122157699994,17.705739375000178],[-64.58690660699989,17.765462782000156]]],[[[-64.76274114699999,60.49654372500004],[-64.8544273249999,60.42693686600012],[-64.7634164399999,60.37656663100006],[-64.51392704699998,60.306762882000044],[-64.43187417399997,60.37287812400018],[-64.60975145499998,60.474385576000145],[-64.76274114699999,60.49654372500004]]],[[[-64.99063593399995,61.859930354000085],[-65.17617021699994,61.93101840300011],[-65.22865687699988,61.865636652000035],[-65.12044326899996,61.772052642000176],[-64.91852817499989,61.707887773000095],[-64.79315707299986,61.736847060000116],[-64.87520051199982,61.82375052200007],[-64.99063593399995,61.859930354000085]]],[[[-64.62219812799998,62.54192887500017],[-64.73563104999988,62.558172309000156],[-64.93197703799996,62.46956053400004],[-64.91343192099993,62.420306128],[-64.5429585689999,62.363338837000185],[-64.35035600999998,62.46326525600017],[-64.36319441699993,62.527892404000056],[-64.62219812799998,62.54192887500017]]],[[[-64.54150220899993,63.90230586400003],[-64.6163986979999,63.91164729400003],[-64.89820544799989,63.82693309899997],[-64.87589417999993,63.77675206000015],[-64.6661050269999,63.77436030600012],[-64.45594581499995,63.65812405900016],[-64.36308357799993,63.724393571000064],[-64.42259341499994,63.77910579000019],[-64.58929825399997,63.784627525000076],[-64.54150220899993,63.90230586400003]]],[[[-64.38091773999992,63.50555357500008],[-64.38957776899997,63.45873481899997],[-64.24228846999995,63.32696472900005],[-64.07223223699998,63.33228567000003],[-64.21181450699999,63.440041250000036],[-64.35024635199994,63.66973576200019],[-64.4815934689999,63.602860129000135],[-64.38091773999992,63.50555357500008]]],[[[-64.23411936499997,63.765816671000096],[-64.1655584749999,63.860188617000176],[-64.38210324499994,63.83702115400007],[-64.23411936499997,63.765816671000096]]],[[[-63.88773350599996,10.89893225700007],[-63.777439561999984,10.996330643000078],[-63.842365616999984,11.118103100000155],[-63.88876749699989,11.155742539000073],[-64.01000954799997,11.05321862000011],[-64.02404051799988,10.99318374100011],[-64.12873853599996,10.994790887000022],[-64.20580259199994,11.078744867000125],[-64.38041657799994,11.039598530000092],[-64.39408159499993,10.966440776000127],[-64.24036453099995,10.934516789000043],[-64.2045825219999,10.978207962000113],[-64.10351554499994,10.952850693000187],[-63.89331451199996,10.940361658000029],[-63.88773350599996,10.89893225700007]]],[[[-64.0286448359999,59.799426337],[-64.19721367099993,59.76774934600013],[-64.15822601099995,59.70033991000008],[-63.99293888099993,59.71835554800015],[-64.0286448359999,59.799426337]]],[[[-64.40468663899998,59.93588955100017],[-64.36208255899999,60.129592670000136],[-64.41598367899996,60.27085061100007],[-64.64324491099984,60.34306583700004],[-64.81538313599998,60.32016913600012],[-64.95752858199995,60.25693754700012],[-64.89820077999997,60.21166460500007],[-65.1221997799999,60.06067009600008],[-65.11161162999986,59.963601969000194],[-65.52763803699997,59.745267394],[-65.51301418499986,59.666156398000055],[-65.38584314899992,59.502022172000125],[-65.17228735799995,59.33864464600009],[-65.25859841899995,59.23757063300019],[-65.23188089199994,59.070239148000155],[-65.35654418999991,59.001194601000066],[-65.25795091599991,58.77389352700004],[-65.31281227999995,58.68469188100005],[-65.08098527999988,58.655137836],[-64.94222349199998,58.58908512800008],[-64.87574847699995,58.48782787800002],[-64.92094207899999,58.409128319000104],[-65.09215631899991,58.34813507500013],[-64.93308291699998,58.25073901900015],[-64.75755525399995,58.102362080000034],[-64.57087613599992,57.88921025600018],[-64.52884933899992,57.79468399400014],[-64.57475897399996,57.68481630200017],[-64.54315022799994,57.57941914700018],[-64.62784663899998,57.32043623800007],[-64.59454559199992,57.23395819100011],[-64.49909051199995,57.182457214000124],[-64.37724142499985,57.19253230300018],[-64.19912712499996,57.274770121000074],[-64.1325839729999,57.41628996200018],[-63.70590564299994,57.46930362100011],[-63.516087599999935,57.56790807300001],[-63.34049750299988,57.780986190000135],[-63.21709532099999,57.69805174400017],[-62.975079740999945,57.67944494900013],[-62.80180218899994,57.74462343200008],[-62.392353265999986,57.61223036100017],[-62.08956385099998,57.67369697700002],[-61.99146648899989,57.7340051700001],[-62.18903774799992,57.79520323800011],[-62.19848701799998,57.88298407700006],[-61.965517471999874,57.78422525400009],[-61.88945632299993,57.87375798099998],[-62.21424015199983,57.920879049000064],[-62.38994866599995,57.9225903090001],[-62.33718565299989,58.06151820300005],[-62.50395462699987,58.096578990000125],[-62.53184601599986,58.1760226630002],[-62.69904838399998,58.270711373000154],[-62.62487249299994,58.32002237400013],[-62.63399229399994,58.5013232710001],[-62.81613945799995,58.48553596400012],[-63.09694437999991,58.400671833000104],[-63.169591459999936,58.49915099600008],[-62.90725034199994,58.59331309300006],[-62.846226552999894,58.66794983300002],[-62.90291515499996,58.81511652600017],[-63.09879995199998,58.87916388000008],[-63.18653429099999,58.98438569500013],[-63.13519061499994,59.0513803340001],[-63.389135770999985,59.09309265200011],[-63.36290498799991,59.18511667400003],[-63.53077180599996,59.264558726000075],[-63.53264625999998,59.33427939900014],[-63.82008038599997,59.398431866000124],[-63.72146630199995,59.493544698000164],[-63.94395930099989,59.62997832800016],[-63.947730063999984,59.68403499100003],[-64.18240443199994,59.692057531000046],[-64.26049813599985,59.75490509700012],[-64.1266254599999,59.899592096000106],[-64.16887583499994,60.03746530799998],[-64.31330116799995,60.01108567800014],[-64.40468663899998,59.93588955100017]]],[[[-61.62915760899995,81.07905645500011],[-62.21304651699984,81.19460467900007],[-63.06334248199994,81.21573981500018],[-63.81221758699991,81.11461232100004],[-63.948886529999925,81.05015515000008],[-64.76082657199993,80.98765012500013],[-65.03250148899997,80.88432640400009],[-65.06333163699998,80.79375859900011],[-65.98638151699998,80.669299239],[-66.44470951499994,80.56457004100014],[-66.71584363099998,80.55428527800012],[-66.7886045859999,80.45651607700012],[-67.41972350599997,80.347896],[-67.50306661399992,80.20372072700013],[-67.08222148099998,80.13816385100006],[-67.06695551999996,80.05925594400009],[-66.38889358299997,80.10093009600013],[-66.10583453399994,80.02287613700014],[-65.7691576229999,80.0114769160001],[-65.22748551099994,80.08565508300006],[-64.95111857299992,79.95675415300019],[-65.04018350299998,79.88954319099997],[-64.19286361499996,79.89538722200012],[-62.60400060899997,79.95631276200015],[-62.14611852799999,80.01213288400004],[-61.608184577999964,80.01594044700005],[-61.211540513999864,79.97032059800011],[-60.49294251999993,79.99665905300003],[-59.61935860999995,80.18842308300003],[-59.531166570999915,80.27372520900019],[-60.005264617999956,80.40196195800007],[-60.77681360899993,80.5193858830001],[-61.576396545999955,80.70454145399998],[-62.02211363499998,80.95571876200017],[-61.62915760899995,81.07905645500011]]],[[[-63.17201653899997,18.165544600000146],[-62.990352533999896,18.233600289000094],[-63.00754549399994,18.267974474000027],[-63.17201653899997,18.165544600000146]]],[[[-62.76777260399996,6.461233194000158],[-62.82481363399995,6.526782191000052],[-62.934482622999894,6.459549102000096],[-62.97554053799996,6.380075919000092],[-62.896263491999946,6.217426764000038],[-62.89157851099998,6.012721745000135],[-62.81933253999995,6.096248752000179],[-62.69288247799989,6.162465954000027],[-62.77344849299982,6.240616305000174],[-62.871028598999885,6.280708122000135],[-62.88889663699996,6.3284207640001],[-62.844444554999825,6.426148559000069],[-62.76777260399996,6.461233194000158]]],[[[-62.505367568999986,10.006387811000025],[-62.567039600999976,10.078596734000087],[-62.61751558999998,9.993403740000133],[-62.725036631999956,9.890292082000087],[-62.59637860899994,9.873936139000136],[-62.505367568999986,10.006387811000025]]],[[[-62.67137552099996,10.104786996000087],[-62.731670572999974,10.303691067000159],[-62.82491656399992,10.338566322000133],[-62.93241162299989,10.313493200000039],[-62.84580963099995,10.197939445000031],[-62.73969255799989,10.184535105000123],[-62.67137552099996,10.104786996000087]]],[[[-62.642618305999974,-63.02920842899994],[-62.59861758299991,-63.06799833599996],[-62.35556049599995,-62.984108560999914],[-62.46854018999994,-62.90828836399993],[-62.642618305999974,-63.02920842899994]]],[[[-62.21881058399998,-13.180760475999932],[-62.27483354799995,-13.111624023999923],[-62.43740056099995,-13.158798882999918],[-62.32343651699995,-13.324003680999965],[-62.310432496999965,-13.416173434999962],[-62.230739540999934,-13.552889483999877],[-62.102672609999956,-13.582248440999876],[-61.96846761099988,-13.539720508999892],[-61.950523632999875,-13.458093679999934],[-62.095245572999886,-13.47891550099996],[-62.17817360799995,-13.419599453999922],[-62.26592660299997,-13.404185301999973],[-62.25723658099997,-13.341264700999943],[-62.146266552999975,-13.325460790999898],[-62.157752609999875,-13.2512485929999],[-62.21881058399998,-13.180760475999932]]],[[[-62.28013922699989,65.73769419500007],[-62.44782275099993,65.73829268600014],[-62.46882114899989,65.64806498900003],[-62.328633736999905,65.59664500700012],[-62.12830071399992,65.66117607900003],[-62.28013922699989,65.73769419500007]]],[[[-62.25389052499992,-63.24522915299997],[-62.237502562999964,-63.333566029999986],[-61.950561518999905,-63.26745393699997],[-62.02528350299991,-63.22689440999994],[-62.25389052499992,-63.24522915299997]]],[[[-61.927402487999984,-39.12133981799991],[-62.09004258999988,-39.07314538399993],[-62.077979522999954,-39.141308360999915],[-61.86025656999993,-39.231098157999895],[-61.927402487999984,-39.12133981799991]]],[[[-61.75235348099994,17.12171233300012],[-61.83070751199995,17.17385296800012],[-61.89908959199994,17.11825345700015],[-61.76935550099995,17.012229926000145],[-61.75235348099994,17.12171233300012]]],[[[-60.887103528999944,-51.88522805699995],[-61.02174354899995,-51.78298409299998],[-61.136630606999915,-51.83456012299996],[-61.098407619999875,-51.93035689499993],[-60.99588755699989,-51.98826880499996],[-60.887103528999944,-51.88522805699995]]],[[[-60.793479513999955,-15.21545557099995],[-60.91846458699996,-15.157045272999937],[-60.996356607999985,-15.037438866999878],[-61.02622551999997,-14.93480464199996],[-60.97068049099994,-14.899276100999828],[-60.95432253699988,-14.786179416999914],[-61.10830647999995,-14.702933706999943],[-61.16769461099989,-14.805301890999942],[-61.10361848199983,-14.872136671999954],[-61.069702618999884,-15.093939432999946],[-60.967441555999926,-15.213960574999874],[-60.945556574999955,-15.362384968999834],[-60.85781447699998,-15.450699215999919],[-60.76979057999989,-15.44470481399992],[-60.76838258799984,-15.359372177999944],[-60.82249447799995,-15.315443125999934],[-60.793479513999955,-15.21545557099995]]],[[[-61.47522362199999,-13.758974834999947],[-61.55739259199993,-13.61141947599998],[-61.629138497999975,-13.638064875999873],[-61.55276460799996,-13.834219682999958],[-61.440780536999966,-13.859537220999982],[-61.47522362199999,-13.758974834999947]]],[[[-61.267970503999834,-13.629960245999882],[-61.29592163699988,-13.581673442999886],[-61.44063552999995,-13.604221097999982],[-61.39861654699996,-13.669341611999926],[-61.267970503999834,-13.629960245999882]]],[[[-61.025867612999946,5.969466096000076],[-61.01097162999997,5.853273639000179],[-60.933502559999965,5.900941858000124],[-61.025867612999946,5.969466096000076]]],[[[-61.019908581999914,6.29420835000019],[-61.052684505999935,6.228663041000061],[-60.972236507999924,6.175036965000174],[-60.89036559799996,6.273290640000141],[-61.019908581999914,6.29420835000019]]],[[[-60.91860557099989,6.642784881000182],[-60.99905055199986,6.624907958000108],[-61.00501259899994,6.541488073000039],[-60.95138149499991,6.496799285000122],[-60.87689252699994,6.583198267000057],[-60.91860557099989,6.642784881000182]]],[[[-61.4810215519999,9.54141061700011],[-61.58533048099986,9.56440502700002],[-61.592376476999846,9.364148117000013],[-61.79321659999988,9.180988948000106],[-61.72434954199997,9.087090845000091],[-61.67212257399996,9.121046270000022],[-61.53979461899996,9.286027606],[-61.3994445109999,9.436527024000156],[-61.34551249599991,9.525755736000065],[-61.366325599999925,9.60939086899998],[-61.457046625999965,9.66924754900009],[-61.4810215519999,9.54141061700011]]],[[[-61.632297636999965,9.752889555000138],[-61.682544631999974,9.7487198930001],[-61.73363451199987,9.63460313100012],[-61.58910753399982,9.638789724000048],[-61.632297636999965,9.752889555000138]]],[[[-60.83148557799984,14.559946402000037],[-60.85279455499983,14.484198305000064],[-60.959903542999825,14.489274720000083],[-61.05858251599989,14.551861889],[-61.086864565999974,14.466202526000131],[-60.818977598999936,14.45900196800011],[-60.83148557799984,14.559946402000037]]],[[[-61.28866156699996,15.988681194000037],[-61.321483591999936,15.910697308000067],[-61.24739460799992,15.874630482000157],[-61.20092349299989,15.941891231000113],[-61.28866156699996,15.988681194000037]]],[[[-61.325057634999894,16.324335848000146],[-61.409770512999955,16.378066530000126],[-61.46608349099989,16.498638028000073],[-61.53151648299996,16.423309696000103],[-61.4700585249999,16.357532041000127],[-61.534976532999906,16.242140224000025],[-61.461536476999925,16.2125609900001],[-61.24251952599997,16.267798570000082],[-61.325057634999894,16.324335848000146]]],[[[-60.55952477999995,-62.97010274499996],[-60.515556559999936,-62.878544022999904],[-60.70305654899994,-62.89604677799991],[-60.74305750499991,-62.97216099599996],[-60.55952477999995,-62.97010274499996]]],[[[-61.198647327999936,-62.593232447999924],[-61.063963500999876,-62.6578893009999],[-60.86924309799991,-62.685832398999935],[-60.69306163199991,-62.62103267799995],[-60.40111558599989,-62.611313358999894],[-60.2408375039999,-62.75631575799997],[-59.997222516999955,-62.68715248399997],[-59.9586184879999,-62.61436453899995],[-60.12735123099992,-62.45955319999996],[-60.323615502999985,-62.5343671519999],[-60.56166859399997,-62.545475352999915],[-60.687499568999954,-62.47603061499984],[-60.975562614999944,-62.59964675499998],[-61.198647327999936,-62.593232447999924]]],[[[-59.74266943699996,-62.54799177899986],[-59.54222850399992,-62.49685930899989],[-59.74750550399989,-62.433807447999925],[-59.966392535999944,-62.480752643999836],[-59.74266943699996,-62.54799177899986]]],[[[-59.64603745299996,-62.34171691599994],[-59.56195061999989,-62.43047362999994],[-59.343894569999975,-62.43658487599998],[-59.335555581999984,-62.36380464299987],[-59.56027960299991,-62.31352445499988],[-59.64603745299996,-62.34171691599994]]],[[[-59.21077812499988,-62.28776727799993],[-59.03472857399987,-62.34601991999995],[-58.82417248399992,-62.310190468999906],[-58.87611362899992,-62.25740828399995],[-59.08083356799989,-62.24129474599994],[-59.21077812499988,-62.28776727799993]]],[[[-59.23932647199996,-51.423427939999954],[-59.40530357799997,-51.34372978699997],[-59.44653348899993,-51.46044678299995],[-59.58679960999996,-51.43880940199995],[-59.73131552299998,-51.462834786999906],[-59.88934758999994,-51.38611137099997],[-60.069248545999926,-51.424851186999945],[-60.082538555999975,-51.48821418399996],[-60.242088585999966,-51.495961241999964],[-60.52927052699988,-51.370605017999935],[-60.5945476149999,-51.439194298999894],[-60.41361249999994,-51.45961060399992],[-60.50875850099993,-51.530015740999886],[-60.225524604999976,-51.61448219099998],[-60.28418350999982,-51.68468951499989],[-60.3854295239999,-51.67741117299988],[-60.63397558499992,-51.731405381999934],[-60.53453855299995,-51.77990625899997],[-60.373378526999886,-51.719213064999906],[-60.2807345249999,-51.75803569399994],[-60.56435348499991,-51.98818481799992],[-60.692314636999924,-51.96536458399987],[-60.734878611999875,-52.016452450999964],[-60.94139847999992,-52.04664205499995],[-60.833755564999876,-52.128506426999934],[-60.71351649299993,-52.11472003999984],[-60.68609660599998,-52.21287816099988],[-60.613037590999966,-52.25838099899988],[-60.462207589999934,-52.17483722899988],[-60.36188157299995,-52.17402116699998],[-60.25721758599991,-52.09058770299998],[-60.26738751699992,-51.99650083899991],[-59.987594559999934,-52.005377274999944],[-59.854206628999975,-51.96409858099992],[-59.744461531999946,-51.820446003999905],[-59.62722351699995,-51.75851681499995],[-59.53398557299994,-51.635002430999975],[-59.43489052299998,-51.63754667399991],[-59.23932647199996,-51.423427939999954]]],[[[-59.939907565999874,-14.50505574899995],[-59.90124151099991,-14.650076084999966],[-59.767368602999966,-14.773927085999844],[-59.6840476239999,-14.688321535999933],[-59.568481630999884,-14.783133600999975],[-59.50210550699995,-14.78196365499997],[-59.47130150999993,-14.71370998499998],[-59.51750155499991,-14.577702038999917],[-59.58578456099997,-14.623545851999893],[-59.624198487999934,-14.519762803999924],[-59.767391569999916,-14.38898734399993],[-59.89620549599988,-14.383288487999948],[-59.939907565999874,-14.50505574899995]]],[[[-60.46115851099995,-13.886335338999913],[-60.52083950599996,-13.880096855999966],[-60.62660554499996,-13.778412635999928],[-60.70645155499989,-13.671628530999897],[-60.823223535999944,-13.767386074999933],[-60.81899251899989,-13.882520734999957],[-60.7486955089999,-14.007544196999902],[-60.77261360499995,-14.122012830999893],[-60.76142460199992,-14.21073393599994],[-60.80225754599991,-14.31941872099992],[-60.74911460399994,-14.387189257999921],[-60.79729462199998,-14.475446675999876],[-60.57402452499991,-14.653186105999907],[-60.521942563999914,-14.648411102999887],[-60.45755362199998,-14.739267413999926],[-60.38698151799997,-14.771646369999871],[-60.32233055699999,-14.890012421999927],[-60.25679748499988,-14.814607479999893],[-60.301013532999946,-14.63201542999991],[-60.45461660299998,-14.461773444999892],[-60.44958159399994,-14.3905079889999],[-60.51576660999996,-14.26890316999993],[-60.63832059599997,-14.27317995199985],[-60.65260654399992,-14.214183591999813],[-60.520244557999945,-14.08529825099987],[-60.42322553799988,-14.084426365999946],[-60.38644457299995,-14.034134611999889],[-60.46115851099995,-13.886335338999913]]],[[[-61.18629858099996,5.797717547000104],[-61.199508627999876,5.887547912000173],[-61.26292459799987,5.887547912000173],[-61.27476152199995,5.806436067000107],[-61.41052656099998,5.956346070000052],[-61.53614849099995,5.95325633300007],[-61.66775157899997,5.976478396000118],[-61.727004593999936,5.905688697000187],[-61.83282863599999,5.887029910000138],[-61.927295534999985,5.805117929000119],[-62.00757958299994,5.800187526000116],[-62.0794026019999,5.719305178000127],[-61.945575626999926,5.689465602000155],[-61.946918575999916,5.614065019000122],[-61.87779955799988,5.48506954100003],[-61.66527556499983,5.380376385000091],[-61.55736157899992,5.298038435000137],[-61.5471765609999,5.226867360000085],[-61.68540151999997,5.119911425000055],[-61.75473360599989,5.120207474000154],[-61.88905360399997,5.285415121000142],[-61.90621152799997,5.190003079],[-62.01485457199988,5.067422271000112],[-61.90528448899994,4.92978639200004],[-61.79504754299995,4.894817930000045],[-61.65253054599992,4.771106068000165],[-61.60476258199998,4.769554075000087],[-61.45743152299991,4.882627961000139],[-61.42010858499998,4.835868340000047],[-61.55424451699997,4.732194927000023],[-61.535354556999835,4.690663938000171],[-61.29648255399991,4.694389861],[-61.322593522999966,4.814857926000172],[-61.236679517999846,4.843196806000151],[-61.14129262199992,4.71279953800007],[-61.09886560699994,4.609697938000011],[-61.04558553699991,4.614049654000041],[-61.00280748799992,4.511366311000188],[-60.93893453599998,4.551543455000171],[-60.77825160799989,4.55036227800008],[-60.74273647799998,4.449678018000156],[-60.88159158899998,4.448613014000159],[-60.92868061899998,4.376604251000117],[-61.12723549999998,4.304682660000026],[-61.12613663199994,4.222395840000161],[-61.270946582999954,4.108363233000091],[-61.47742051799992,4.032987795000111],[-61.71247858799984,3.904076136000128],[-61.90627254799995,3.917852296000092],[-62.05308560599997,3.857440567000026],[-62.00038153999998,3.782148278000079],[-61.79980460799999,3.707847903000129],[-61.60954261399996,3.66884070500015],[-61.520400570999925,3.496308616000022],[-61.56415561399996,3.399333852000098],[-61.52309451499991,3.311327221000113],[-61.63888547799996,3.293307470000116],[-61.621856635999904,3.222491955000066],[-61.72465548199989,2.917981436000161],[-61.78218048299988,2.839395394000064],[-61.8043595019999,2.715083555000035],[-61.79679852199996,2.587256179000121],[-61.869049521999955,2.56127211200004],[-61.972495617999925,2.465824363000081],[-62.04043563699986,2.370275360000107],[-62.049980612999946,2.280217175000189],[-61.96356151499987,2.147532989000069],[-61.90879851799997,2.106212218000053],[-61.92522453399988,2.025302209000188],[-61.85428647599997,2.016964898000026],[-61.76340451699997,2.104398374000084],[-61.64184563099997,2.144915153000056],[-61.52005758299998,2.006156601000043],[-61.5366135189999,1.908049945000073],[-61.49531554599997,1.797423072000072],[-61.41891449899998,1.74900668500004],[-61.39547752399994,1.649487175000047],[-61.28511853699996,1.531141910000031],[-61.21735353199995,1.532382935000101],[-61.17402663599995,1.666087031000075],[-61.0987395439999,1.81078516700012],[-60.98478656399993,1.916428327000176],[-61.02185050199995,2.041248780000046],[-61.0018925199999,2.132595264000031],[-60.89035051099995,2.225777049000101],[-60.832252521999976,2.307649970000057],[-60.68214453899998,2.411166475000073],[-60.59394847699997,2.415323061000095],[-60.42824562699997,2.574738980000177],[-60.39697257899985,2.646681861000104],[-60.296081621999974,2.670272895000153],[-60.18973555399998,2.631983858000183],[-60.105598512999904,2.513612778000038],[-60.0969165379999,2.421957672000076],[-60.019676628999946,2.307007079000073],[-59.95129354299996,2.252786223000044],[-59.88909948599991,2.315448326000137],[-59.74434653299983,2.296765734000132],[-59.711742605999916,2.243496895000021],[-59.7295834869999,2.062403362000111],[-59.66175058799996,2.001531970000144],[-59.54829750499988,2.06218627100003],[-59.47942759799997,2.204520710000054],[-59.28044859199997,2.405350607000116],[-59.29389551199995,2.477918443000135],[-59.168418588999884,2.618562923000184],[-59.09305555599997,2.836678484000174],[-59.12375259999993,2.980944952000073],[-59.30876551099993,2.957212766000055],[-59.339973515999986,3.032625084000074],[-59.42726550499998,3.001355221000154],[-59.49993157699993,3.043130124000072],[-59.610595497999896,3.036863645000039],[-59.69415251099997,3.10154478000004],[-59.77544356099992,3.103869585000098],[-59.83134850799996,2.984697697000172],[-59.87921856299994,3.048054995000143],[-59.85633060299995,3.128786804000015],[-59.75123260099997,3.271256359],[-59.58114249599993,3.403871311000103],[-59.40563550099995,3.590018461000057],[-59.382690543999956,3.678038],[-59.40625760599994,3.767513307],[-59.11867149099987,3.838394201000085],[-59.09920150299996,3.972042139000166],[-59.31208055399992,4.011381260000178],[-59.38500562599995,3.952840540000125],[-59.502494594999916,3.956078469000033],[-59.61797358399991,4.071053035000148],[-59.63269857599988,4.137567963000151],[-59.710540472999924,4.196222510000155],[-59.66894561399994,4.316459737],[-59.54691348499995,4.433513015000187],[-59.50572548399998,4.546392776000062],[-59.519454537999934,4.653169841000079],[-59.61556261399994,4.506732795000175],[-59.74816147199988,4.513106227000094],[-60.09128155199994,4.552658249000046],[-60.05573255899992,4.608193219000157],[-59.81720354399988,4.561652534000018],[-59.74337054399996,4.624908913000127],[-59.820758476999856,4.731397975000164],[-59.87022763099998,4.741689444000031],[-59.959712493999916,4.679811887000142],[-59.96910056099989,4.776400581000075],[-59.946807547999924,4.879755147000139],[-60.07091553899994,4.831495501000177],[-60.09717553899992,5.027346213000158],[-60.16156062499988,4.909426917000076],[-60.37512950699988,4.94614015600007],[-60.4084314779999,5.01022852300008],[-60.57641252999997,4.971968152000159],[-60.63613560099992,5.108267286000057],[-60.839187540999944,5.117505652000034],[-60.885059517999935,5.150342260000059],[-60.95434147999998,5.292204631000061],[-61.0997046359999,5.423226015000068],[-61.214588509999885,5.431083546000139],[-61.270473507999895,5.493638863000115],[-61.04672262599996,5.552365662000057],[-61.043743529999915,5.635785548000058],[-61.11495953199994,5.707887182000036],[-61.177532618999976,5.699071934000074],[-61.18629858099996,5.797717547000104]],[[-60.625450518999855,2.781572667000148],[-60.517333522999934,2.885266030000082],[-60.42328655799997,2.910055173000046],[-60.39555352199994,2.969451853000123],[-60.30751755499995,2.925613997000085],[-60.20553560999997,2.929760692000059],[-60.11402852799989,2.899592043000155],[-60.22089360299998,2.82563432000012],[-60.310394558999974,2.793966820000094],[-60.527893547999895,2.826937371000042],[-60.53744556499993,2.737730955000188],[-60.625450518999855,2.781572667000148]],[[-61.46070851199988,2.440962967000075],[-61.54779061899984,2.428762101000075],[-61.55427552999993,2.519000330000097],[-61.4257816249999,2.573309363000078],[-61.32160948799998,2.561469254000031],[-61.303817556999945,2.439157338000143],[-61.23426050099988,2.374877863000165],[-61.29795055999989,2.22777797700013],[-61.370407586999875,2.402898901000128],[-61.46070851199988,2.440962967000075]],[[-61.79492952599992,2.214094185000135],[-61.841567607999934,2.28276678200001],[-61.7666545159999,2.391999912000074],[-61.70171354199988,2.318683237000187],[-61.74691060799984,2.201332065999964],[-61.79492952599992,2.214094185000135]],[[-61.36002358199994,1.836640320000072],[-61.187881586999936,1.908806663000178],[-61.17395052899997,1.748713821000138],[-61.201881543999946,1.67573007500016],[-61.29589062399998,1.650023112999975],[-61.35405751099995,1.684643559000108],[-61.38450661899992,1.760235753000075],[-61.36002358199994,1.836640320000072]]],[[[-59.62530858799994,13.095206138000094],[-59.530631637999875,13.040791829000113],[-59.42037558099992,13.144059893000076],[-59.52910948499988,13.217555941000171],[-59.60083057999992,13.325211764000017],[-59.64330654499997,13.308092062000185],[-59.62530858799994,13.095206138000094]]],[[[-57.831424437999885,-64.06087661299995],[-57.76669415899988,-63.89911637899996],[-57.80334337499994,-63.79803075399997],[-58.11257218799989,-63.85935077099998],[-57.831424437999885,-64.06087661299995]]],[[[-58.74801508099989,-62.24225855499992],[-58.43655248699986,-62.22036300299993],[-58.108894561999875,-62.134622957999966],[-58.08389251799997,-62.06212586499993],[-57.9263915279999,-62.06823711099997],[-57.65861553699989,-61.964617844999964],[-58.00633169199989,-61.90625977499997],[-58.22611262799984,-61.950449410999965],[-58.36083948399994,-61.93128351899992],[-58.63833663799994,-61.997395276999896],[-59.00062797299995,-62.188447720999875],[-58.74801508099989,-62.24225855499992]]],[[[-58.656516482999905,-51.334799371999964],[-58.940730558999974,-51.282483722999984],[-58.86942654699993,-51.390617481999925],[-59.00095352799997,-51.3913805709999],[-59.02795448799998,-51.492101207999895],[-59.16030457099998,-51.59701078399996],[-59.011615475999974,-51.669625055999916],[-59.20769451099983,-51.72048711499991],[-59.385425558999884,-51.845230285999946],[-59.5027995289999,-51.84483717499995],[-59.59081252999988,-51.904278278999925],[-59.58235954799994,-52.07857140599998],[-59.64233357399996,-52.160707183999875],[-59.58008553799988,-52.25993701599987],[-59.420413634999875,-52.23741836199997],[-59.30429862699998,-52.17367030099996],[-59.04085960099991,-52.24388868899996],[-59.13272056599993,-51.99359801899993],[-58.97895052899992,-52.08985981799998],[-58.634159599999975,-52.04394894899997],[-58.633178581999914,-51.90631943999995],[-58.38478054599989,-51.90124218599988],[-58.237533473999974,-51.84564921299989],[-58.225921519999986,-51.79332652399995],[-57.8190454999999,-51.72331818599997],[-57.77691654599988,-51.62365350199997],[-58.14336362999995,-51.559496234999926],[-57.991966508999894,-51.505456261999825],[-57.81890853899995,-51.55163820099989],[-57.850532621999946,-51.416244983999945],[-57.93923562099991,-51.36579112299995],[-58.267456532999915,-51.397460635999835],[-58.413536508999925,-51.32188621199998],[-58.526134637999974,-51.30238202599992],[-58.656516482999905,-51.334799371999964]]],[[[-58.07112453199994,-18.949469554999894],[-57.95543247499995,-18.90196847099992],[-57.821762576999845,-18.896507828999916],[-57.74835956899989,-18.675311917999977],[-57.86388063499993,-18.763212601999896],[-58.0133135399999,-18.78093144199994],[-58.07453948699998,-18.832037414999945],[-58.07112453199994,-18.949469554999894]]],[[[-57.905460574999836,-18.47360678299998],[-57.83199352799994,-18.427270447999888],[-57.822425585999895,-18.319096120999973],[-57.86513859099995,-18.174578698999824],[-57.98344060499994,-18.240840827999932],[-57.905460574999836,-18.47360678299998]]],[[[-58.553687629999956,-18.348185515999944],[-58.49412549099998,-18.248036356999933],[-58.53860053999995,-18.18885475599984],[-58.62873852099989,-18.20522276899993],[-58.636829571999954,-18.322025930999928],[-58.553687629999956,-18.348185515999944]]],[[[-58.21236462999997,-18.244816699999888],[-58.19087259199995,-18.150395398999933],[-58.13863355399991,-18.099339382999915],[-58.21330256499988,-18.03962703999997],[-58.25006458699994,-18.096127437999883],[-58.25058359399998,-18.21842124899996],[-58.21236462999997,-18.244816699999888]]],[[[-58.80148350999997,-17.99852436599997],[-58.76780351499991,-17.89747549399982],[-58.79524653599992,-17.790535149999926],[-58.89556148899993,-17.781736665999972],[-58.918289521999895,-17.99879744799989],[-58.84534450099994,-18.151790147999975],[-58.829288629999894,-18.283318301999884],[-58.74119549799997,-18.213418593999847],[-58.70036355999997,-18.10438512099995],[-58.80148350999997,-17.99852436599997]]],[[[-58.54787863599989,-17.96816310099996],[-58.66436747599988,-17.959452626999905],[-58.626605493999875,-18.042852730999982],[-58.54787863599989,-17.96816310099996]]],[[[-57.68963947599997,-17.942602654999916],[-57.75564159899989,-17.813755535999974],[-57.89861255999995,-17.69285982599996],[-57.97918360399996,-17.67946872999994],[-58.031799491999834,-17.72672891799988],[-58.21878852099991,-17.704919205999943],[-58.27903747299996,-17.734254525999972],[-58.246707633999904,-17.808353902999954],[-58.11140862999997,-17.843908761999955],[-58.086376578999875,-17.894904763999932],[-58.1603924719999,-17.97854760799987],[-57.92967656299999,-17.973526009999944],[-57.871185630999946,-18.03194351699989],[-57.739826623999875,-18.06993717499995],[-57.66033148099996,-18.005608079999945],[-57.68963947599997,-17.942602654999916]]],[[[-56.27333454299992,73.78384220900011],[-56.133335468999974,73.82385272100015],[-56.61777862799994,73.91467936000004],[-56.68860654799988,73.83384847600007],[-56.32805261199991,73.83273418600004],[-56.27333454299992,73.78384220900011]]],[[[-57.111122529999875,74.48110658400014],[-56.47860349599995,74.49442827800016],[-56.70471958399992,74.55777132600019],[-57.111122529999875,74.48110658400014]]],[[[-55.25862037299993,-61.27723993799992],[-54.97447680199997,-61.151390481999954],[-54.751945521999914,-61.1373590369999],[-54.6861115399999,-61.08430293099991],[-55.061111517999905,-61.10291880199992],[-55.389167473999976,-61.05680492399989],[-55.49444551899995,-61.12486145199995],[-55.25862037299993,-61.27723993799992]]],[[[-45.20111854899994,-60.73873835299992],[-45.16211495699997,-60.67130303399995],[-45.4194485189999,-60.55928029699999],[-45.741111597999975,-60.50011193899991],[-45.97888959499994,-60.52761698699993],[-46.00278455699993,-60.61956277699994],[-45.79333454199991,-60.57984194299996],[-45.741394570999944,-60.628175852999846],[-45.36513076699998,-60.67363840099989],[-45.20111854899994,-60.73873835299992]]],[[[-54.082252579999874,-28.16319800699995],[-54.302082574999986,-28.18698618299993],[-54.37134157099996,-28.249849450999875],[-54.18556959499995,-28.277140256999928],[-54.02005349399997,-28.206989259999943],[-54.082252579999874,-28.16319800699995]]],[[[-55.202659566999955,-23.028680150999946],[-55.24987449199989,-23.04974605299998],[-55.33120761899994,-23.267315951999933],[-55.41173960399993,-23.220878196999934],[-55.287620548999826,-23.024810225999943],[-55.29526551499998,-22.89863089999983],[-55.437812518999976,-22.866463669999973],[-55.569351569999924,-22.93967070899987],[-55.52480359899994,-23.032328792999976],[-55.57530557099989,-23.10954389099993],[-55.74485353499995,-23.237953138999956],[-55.78676657199992,-23.39071248699986],[-55.74818752099992,-23.52139591299988],[-55.624118589999966,-23.699536668999883],[-55.56756555399994,-23.84819223599993],[-55.4039804759999,-23.972003171999972],[-55.28067060999996,-23.995626895999976],[-55.26551059699989,-23.887632107999877],[-55.09799557999992,-23.71290110999996],[-55.24599048599998,-23.612055247999933],[-55.279663607999964,-23.743157433999897],[-55.42885947299993,-23.763786470999946],[-55.43089661099992,-23.684626603999902],[-55.341312505999895,-23.61167236299997],[-55.343402617999914,-23.53250528699988],[-55.268001530999925,-23.437805035999872],[-55.16553863199988,-23.521853731999897],[-55.03486258199996,-23.547038333999865],[-55.02759161599988,-23.431053412999972],[-54.958652473999905,-23.43495518899988],[-54.916435509999985,-23.498796792999883],[-54.79005451499995,-23.570883339999966],[-54.71441655599995,-23.67905280599996],[-54.563232503999984,-23.715089121999938],[-54.561000570999965,-23.622087715999953],[-54.64214359599998,-23.488802378999935],[-54.74876056599993,-23.482031644999893],[-54.814498491999984,-23.356518344999927],[-54.69469460799996,-23.332179476999954],[-54.790428515999906,-23.122092438999914],[-54.94239862299992,-23.066354290999982],[-55.15476654499997,-23.064977143999897],[-55.202659566999955,-23.028680150999946]]],[[[-54.458099632999904,-22.97217606499987],[-54.41273861699989,-22.854459275999886],[-54.24289359799997,-22.865803678999896],[-54.32290657599998,-22.6511429709999],[-54.41658758699998,-22.70641977799994],[-54.55624048799996,-22.624485165999943],[-54.787540614999955,-22.56074045699995],[-54.8231925369999,-22.6759386519999],[-54.66533263399998,-22.89218420999987],[-54.61743558899991,-22.76761756199994],[-54.5687025339999,-22.775033366999878],[-54.59501651299985,-22.920012631999953],[-54.50563055599997,-23.04053652099998],[-54.458099632999904,-22.97217606499987]]],[[[-44.456062574999976,-22.652706697999974],[-44.44112753199988,-22.620309301999896],[-44.611972511999966,-22.573864840999875],[-44.74243146999987,-22.60254737799994],[-44.802093521999836,-22.65059881699989],[-44.82320753599993,-22.742156189999946],[-44.71030849699997,-22.700700134999977],[-44.63345348599995,-22.78319683799998],[-44.5200275599999,-22.750771612999927],[-44.456062574999976,-22.652706697999974]]],[[[-55.25399754999995,-22.798434969999903],[-55.16129252799993,-22.83548918499997],[-55.102355510999985,-22.762636028999964],[-55.15402256799996,-22.71606148099994],[-55.125022523999974,-22.643479228999865],[-55.04887762699997,-22.657665599999916],[-54.94938661599991,-22.556786880999937],[-55.02444052399994,-22.527715422999904],[-55.022682502999885,-22.37847630699997],[-55.18885054899994,-22.40991967599996],[-55.2519345959999,-22.544771421999883],[-55.38759251399995,-22.542444437999904],[-55.31236660899998,-22.81843318499989],[-55.25399754999995,-22.798434969999903]]],[[[-46.046741603999976,-22.76932864399987],[-45.96196753799995,-22.781254917999888],[-45.76833350499993,-22.640952252999966],[-45.75162552199993,-22.556393768999897],[-45.896842496999966,-22.578964725999867],[-45.95073360799984,-22.561080593999918],[-45.89728958799992,-22.323096234999923],[-45.974677520999876,-22.396877098999937],[-46.04668058399989,-22.397944115999962],[-46.1549415799999,-22.312371756999937],[-46.2417485929999,-22.34809174099985],[-46.27638647299989,-22.537649821999878],[-46.18955649399993,-22.62647419099983],[-46.03514456999994,-22.59668675099988],[-46.046741603999976,-22.76932864399987]]],[[[-54.57205160699988,-22.194185077999975],[-54.62200959399996,-22.252225901999907],[-54.557662560999916,-22.313397701999918],[-54.45025651899988,-22.27407182399992],[-54.422527506999984,-22.15543922799992],[-54.33651358999998,-22.108295548999934],[-54.40846250499993,-22.03813432499993],[-54.54588347299995,-21.976856577999854],[-54.535228564999954,-22.094972345999963],[-54.57205160699988,-22.194185077999975]]],[[[-46.473312582999824,-21.876460991999863],[-46.40003546999998,-21.93874171699997],[-46.24391950599994,-21.938312731999815],[-46.252525540999955,-22.03834739299998],[-46.19532760199996,-22.071936528999913],[-46.04744752799985,-22.053771603999962],[-45.91416554399996,-21.990992992999963],[-45.85341250399995,-21.920245706999935],[-45.850482525999894,-21.763857330999883],[-45.94128049799997,-21.648039544999904],[-46.08686057799997,-21.623071866999965],[-46.1116795609999,-21.692154004999963],[-46.10854355499998,-21.91166833799997],[-46.195312513999966,-21.906623605999926],[-46.39342449599985,-21.680283720999967],[-46.520233470999926,-21.647652468999922],[-46.57815946299996,-21.684298652999928],[-46.54298346499996,-21.79363253299988],[-46.473312582999824,-21.876460991999863]]],[[[-44.61593245799986,-22.381564199999957],[-44.30230360099989,-22.15645595299992],[-44.14046849699997,-22.00630203599991],[-44.13068346299991,-21.926592315999926],[-44.317623540999875,-22.016761477999978],[-44.358577519999926,-21.97336601799998],[-44.31917955799992,-21.894938058999912],[-44.19956946399998,-21.81112757699998],[-44.145584474999964,-21.832042436999927],[-44.04352960699998,-21.767320062999943],[-43.931636563999916,-21.621051995999835],[-43.90103959999982,-21.703099596999948],[-43.83004756199995,-21.643202683999903],[-43.81904547599993,-21.54305503499984],[-43.742179567999926,-21.460240657999975],[-43.79736350399992,-21.260439722999934],[-43.79684851999991,-21.170589743999926],[-43.94708256799993,-21.078627692999873],[-44.0983465839999,-21.070732275999887],[-44.21953951599994,-21.025188533999938],[-44.26269558899992,-20.911191129999963],[-44.321426577999944,-20.901864586999977],[-44.44215347699986,-20.945998156999963],[-44.41956759999994,-21.02288887499998],[-44.33969460099996,-21.090996028999882],[-44.44279050099988,-21.18396089099997],[-44.71092255499997,-21.284333510999886],[-44.89607661699995,-21.256575832999886],[-45.0339815559999,-21.261759704999974],[-45.084171553999965,-21.34278521599998],[-44.98400462599989,-21.35852927999997],[-44.956077464999964,-21.530913847999955],[-44.982383564999964,-21.704879409999933],[-44.83884850299984,-21.60382802399988],[-44.72034850799997,-21.5956724319999],[-44.693897568999944,-21.65898698099994],[-44.751865469999984,-21.806752893999942],[-44.623725615999945,-21.854308123999942],[-44.507297460999894,-21.79558048699994],[-44.42815050199988,-21.79309458299997],[-44.40663147399994,-21.87414121599994],[-44.493133552999836,-21.972799736999832],[-44.65797457599996,-21.905696398999964],[-44.78048748999987,-21.98835906399995],[-44.81088261799988,-22.04411514899988],[-44.944351517999905,-22.020848158999968],[-45.109981612999945,-21.94019681599991],[-45.188594476999924,-21.962668362999977],[-45.29730256499988,-21.858282990999953],[-45.35680351599996,-21.86782846999995],[-45.40965258899985,-22.033318753999822],[-45.30430949999993,-22.109970587999896],[-45.18413161699988,-22.111200548999875],[-45.212951616999874,-22.19405515899996],[-45.16422660799998,-22.329936705999955],[-45.22641747999995,-22.37584036599992],[-45.44742546799995,-22.458532869999942],[-45.574466621999875,-22.545933489999925],[-45.615173501999834,-22.67236259699996],[-45.54704254299992,-22.687330998999983],[-45.38566961699996,-22.611929912999983],[-45.172866505999934,-22.470741279999856],[-45.062625535999985,-22.4248776849999],[-44.870571491999954,-22.42278572999993],[-44.78541152299988,-22.441487766999956],[-44.61593245799986,-22.381564199999957]]],[[[-49.40137455599995,-21.118073599999946],[-49.40161159599995,-21.017226228999903],[-49.60901257099988,-21.035307],[-49.80172358899995,-21.12820715299989],[-49.86281156999985,-21.11466887099988],[-49.875530604999824,-21.003964716999974],[-49.8406865309999,-20.908521326999846],[-49.96469846499997,-20.864240737999978],[-50.06499849699992,-20.98406708499988],[-50.02520759099991,-21.018033070999934],[-50.08195860799998,-21.14873275799988],[-50.21086456699993,-21.29601989599996],[-50.21318451099995,-21.40621476499996],[-50.11145754299986,-21.44119680599988],[-50.101982471999975,-21.563529006999943],[-49.96188750999988,-21.59572322599996],[-49.82399346699992,-21.50635034499993],[-49.784633558999985,-21.602166059999945],[-49.719703480999954,-21.589118788999883],[-49.65482755099998,-21.501534606999883],[-49.41199157799991,-21.367254673999923],[-49.34015246499996,-21.275844822999943],[-49.40137455599995,-21.118073599999946]]],[[[-50.66450858999991,-20.792257623999888],[-50.58495359999989,-20.86853126699998],[-50.447769505999986,-20.936879483999974],[-50.40505247699997,-20.844652900999904],[-50.498092607999865,-20.771262799999874],[-50.59040854299997,-20.741385506999904],[-50.7134396269999,-20.62305817899994],[-50.7761345859999,-20.53348832399996],[-50.87399649099996,-20.60346313399998],[-50.91947552399995,-20.72437661299989],[-50.76229053199995,-20.837060069999893],[-50.66450858999991,-20.792257623999888]]],[[[-44.08197354199996,-20.86227769599998],[-43.97241955199996,-20.845888728999853],[-43.88181352599997,-20.875663092999957],[-43.85647151199987,-20.815613293999945],[-43.9249615519999,-20.753110782999897],[-44.05525253699989,-20.743287359999954],[-44.09816754599984,-20.666014762999964],[-44.11109160299998,-20.526210484999865],[-44.21298956199996,-20.467519057999937],[-44.27146155099996,-20.370587375999833],[-44.33431258099995,-20.40520044599998],[-44.27955662499994,-20.64497082099996],[-44.37643047099988,-20.631335643999932],[-44.43758047799986,-20.695307],[-44.38786657199995,-20.76547207899995],[-44.254623479999964,-20.743453321999937],[-44.08197354199996,-20.86227769599998]]],[[[-43.637165552999875,-20.083085749999896],[-43.64682049999993,-20.165057074999936],[-43.63521961099991,-20.447583203999955],[-43.57588545899989,-20.476540499999942],[-43.59233460899998,-20.565618505999907],[-43.516624564999915,-20.587025215999972],[-43.449508486999946,-20.543158524999967],[-43.51956560799988,-20.453554638999947],[-43.512439480999944,-20.369437546999904],[-43.41656458999989,-20.15893141299989],[-43.45948747799997,-20.08165998899989],[-43.61208756999997,-20.018520284999965],[-43.637165552999875,-20.083085749999896]]],[[[-43.794078468999885,-20.23527596599996],[-43.77283855899992,-20.145977013999982],[-43.804698507999944,-20.052341431999935],[-43.97049355899986,-20.010193031999904],[-43.82563046699988,-20.395251964999886],[-43.794078468999885,-20.23527596599996]]],[[[-43.694427530999974,-13.213803278999876],[-43.731414522999955,-13.085624700999915],[-43.59612255899992,-13.01804543899982],[-43.59360547299997,-12.949934931999906],[-43.657485465999855,-12.821447564999971],[-43.74417848499985,-12.864819722999812],[-43.812560565999945,-12.854332452999927],[-43.85414151099991,-12.914530107999894],[-43.93328059099997,-12.898660315999905],[-44.08343551299993,-12.941527379999968],[-44.135887618999845,-12.994104040999957],[-44.12155154699991,-13.081131162999895],[-44.15970647399985,-13.17697453799991],[-44.06697060499988,-13.326424709999912],[-44.017532463999885,-13.365834909999933],[-43.85020453099992,-13.375608375999946],[-43.750190488999976,-13.339678677999927],[-43.694427530999974,-13.213803278999876]]],[[[-43.72697446099994,-11.047549854999886],[-43.65068053399989,-10.975422738999953],[-43.601097552999875,-11.046761955999898],[-43.5362395599999,-11.030440042999885],[-43.51607555099997,-10.906415703999926],[-43.546676537999986,-10.610236125999904],[-43.540222472999915,-10.392497582999965],[-43.506561587999954,-10.23990319099994],[-43.52519958799985,-10.085077033999937],[-43.588340463999884,-10.067186364999827],[-43.66349746999998,-10.136812319999876],[-43.752769599999965,-10.146676813999932],[-43.716133474999936,-10.329561894999927],[-43.75164759899985,-10.404055723999875],[-43.76958453599997,-10.534861693999915],[-43.82889555399993,-10.637135496999974],[-43.884750544999974,-10.63839445899987],[-43.93902554699997,-10.707678599999895],[-43.92903146899994,-10.786876856999982],[-44.011955480999916,-10.877260762999924],[-43.97788958199993,-10.937765530999968],[-43.86386854199992,-11.02701134199998],[-43.72697446099994,-11.047549854999886]]],[[[-42.58863858299998,-10.482509164999897],[-42.51645245899988,-10.311735263999935],[-42.54837761999994,-10.24329182699995],[-42.74613554999996,-10.069108167999957],[-42.979286568999896,-9.924682275999885],[-43.02478756199997,-9.924689316999945],[-43.308155568999894,-10.037351483999942],[-43.40499856999992,-9.971829140999887],[-43.43780550699995,-10.095619456999941],[-43.39289057499997,-10.472933845999876],[-43.388984608999976,-10.63255361399996],[-43.427749569999946,-10.94277522699997],[-43.42538453199984,-11.079799561999891],[-43.38719155199988,-11.201168178999978],[-43.31277450099998,-11.318024314999889],[-43.230529589999946,-11.105679861999931],[-43.17716955699996,-11.031563050999921],[-43.056518597999855,-10.967310565999924],[-42.93105357699994,-10.823762259999853],[-42.72965957799994,-10.73368781299996],[-42.67131851399989,-10.56714040299994],[-42.58863858299998,-10.482509164999897]]],[[[-48.63003561499994,-10.642642910999939],[-48.59785447199994,-10.588514926999892],[-48.63347655399991,-10.490192519999937],[-48.62383250399989,-10.375484665999977],[-48.55809759599998,-10.300489095999978],[-48.647567538999965,-10.133743704999915],[-48.72039051999997,-10.193858546999934],[-48.84243052799991,-10.190054839999902],[-48.89420353199995,-10.080277220999903],[-48.948516587999904,-10.132210822999923],[-48.90934761899996,-10.270753959999922],[-48.85640751899996,-10.374782597999967],[-48.764503470999955,-10.381050417999973],[-48.780441491999966,-10.602471800999979],[-48.81120257399982,-10.697862050999902],[-48.86665355699995,-10.75904105899997],[-48.863830531999895,-10.830122112999902],[-48.91754947899989,-10.976163699999972],[-48.846458534999954,-10.979081607999888],[-48.736709582999936,-10.855556159999878],[-48.65966061399996,-10.880178502999911],[-48.50964348999986,-10.850308417999827],[-48.63523055099989,-10.724081313999932],[-48.63003561499994,-10.642642910999939]]],[[[-48.98027058999992,-8.75820399099996],[-49.013839608999945,-9.080674916999897],[-48.97401450499996,-9.187179569999955],[-49.006118535999974,-9.269920520999904],[-48.929313479999905,-9.341837417999898],[-48.99493456199997,-9.445373200999938],[-49.05981451599996,-9.460584007999842],[-49.08966062899992,-9.52955533699992],[-49.019271585999945,-9.698998191999976],[-48.96554559799989,-9.770994213999927],[-48.859207576999836,-9.686694228999954],[-48.7682184979999,-9.77333092099991],[-48.69300851899993,-9.732758821999937],[-48.62892149299995,-9.579893694999896],[-48.674621472999945,-9.496462409999936],[-48.814125510999986,-9.428421471999968],[-48.81795453199982,-9.35733941299992],[-48.769889513999885,-9.230949197999962],[-48.80552651699992,-9.035029251999958],[-48.72290760599998,-8.860350724999876],[-48.7487106239999,-8.780204474999948],[-48.88014959499992,-8.807652357999928],[-48.98027058999992,-8.75820399099996]]],[[[-49.72438058299997,-8.784376147999978],[-49.688728492999985,-8.731431856999905],[-49.681892547999894,-8.553501653999831],[-49.7074204729999,-8.489249169999937],[-49.72261853899994,-8.32391009399987],[-49.83592946499988,-8.303358505999938],[-49.86830858999991,-8.255156024999906],[-49.85449253099995,-8.111590451999916],[-49.93190762099994,-8.03926535599993],[-49.99661256099989,-8.094419451999897],[-50.05783062899991,-8.081795467999882],[-50.111045487999945,-8.312716732999945],[-50.09947946799997,-8.378194316999952],[-50.14804857299998,-8.557427234999977],[-50.13875555699997,-8.709072626999898],[-50.09246062999995,-8.750397421999935],[-49.996414579999964,-8.736524533999955],[-49.916473519999954,-8.821427344999961],[-49.858657498999946,-8.773111875999916],[-49.72438058299997,-8.784376147999978]]],[[[-49.943397533999985,-7.719959603999939],[-49.98843349999993,-7.763595456999951],[-49.85106651199982,-7.899109708999958],[-49.70788550099991,-7.869177596999975],[-49.714836612999875,-7.763540471999931],[-49.587161619999904,-7.655606033999902],[-49.57830848599997,-7.564614774999825],[-49.619636464999985,-7.53821060599995],[-49.73942559599993,-7.561087837999935],[-49.93180854699983,-7.626922154999818],[-49.943397533999985,-7.719959603999939]]],[[[-48.04626455699997,-5.847264903999928],[-48.07044249199993,-5.772836118999976],[-48.138275557999975,-5.80610087499997],[-48.149742504999836,-5.878276436999954],[-48.10823850499992,-6.0088398339999],[-48.09661062599997,-6.134826544999896],[-48.0470355249999,-6.208063423999931],[-48.00167048499992,-6.495469495999942],[-47.95440660999992,-6.520559549999973],[-47.887969465999845,-6.352078769999935],[-47.925033570999915,-6.226191971999924],[-47.898704503999966,-6.129959173999964],[-47.94831849799988,-6.025821737999877],[-47.95532258399987,-5.935359376999941],[-48.04626455699997,-5.847264903999928]]],[[[-50.73270459299988,1.422491993000165],[-50.804511518999846,1.548659585000053],[-50.807319624999934,1.702822062999985],[-50.72821055199995,1.908917975000122],[-50.707122521999906,2.045515671000032],[-50.759803620999946,2.043853875000025],[-50.75743858299995,2.146173109000188],[-50.79129761699994,2.186847132000025],[-50.86236559399998,2.556913354000187],[-50.94311550899994,2.509583932000112],[-50.897125514999914,2.050072409000109],[-50.911819493999985,1.807500466000079],[-50.98354360699989,1.742767362999984],[-50.97389955699998,1.684002511000187],[-50.89552356499996,1.631351586000108],[-50.92739860199998,1.545446131000062],[-50.89054152999995,1.464529081000023],[-51.093872586999964,1.188404715000047],[-51.20821348099997,1.090707096000074],[-51.25714853999989,1.009547977000182],[-51.16772452999999,0.918864670000062],[-51.18843855999995,0.799427746000049],[-51.33921860399994,0.71471503600003],[-51.37326053099997,0.632227218000082],[-51.32063257199991,0.520076515000142],[-51.227371493999954,0.465057702000024],[-51.22402158299997,0.34422167200006],[-51.28840650099994,0.313809948000142],[-51.423828552999964,0.38651072000016],[-51.473052619999976,0.270784297000091],[-51.54026760499994,0.185147734000111],[-51.36164053099998,-0.053745223999897],[-51.167968610999935,-0.091043519999914],[-51.05960049299995,-0.041952388999903],[-51.010280536999915,0.063549788000159],[-50.91340249999985,0.146593661000054],[-50.86180853299987,0.270300494000139],[-50.86512759899995,0.393401146999963],[-50.766990599999986,0.367094209000072],[-50.731231556999944,0.504735956000104],[-50.744590466999966,0.649785126000154],[-50.89127360499998,0.737586400000055],[-51.03392756199992,0.774760476000097],[-51.040214492999894,0.82889566800003],[-50.978828618999955,0.89611149100017],[-50.85977156299998,1.111082329000055],[-50.75856058499994,1.260617326000045],[-50.73908255099985,1.159204009000177],[-50.68118254299992,1.117161891000023],[-50.650360607999914,1.213424864000103],[-50.58529658799995,1.298932346000186],[-50.66172060199989,1.322791602000052],[-50.73270459299988,1.422491993000165]]],[[[-55.301208619999954,1.759421032000091],[-55.13893849499988,1.853516109000054],[-55.230911609999964,1.936119933000043],[-55.400375586999985,1.933036901000037],[-55.52381855699997,1.954861365000113],[-55.57616454899983,1.99102558900006],[-55.76071947199995,2.226342157000147],[-55.86441048799992,2.285938830000134],[-55.978759595999975,2.304171313000097],[-56.09531062999997,2.121175926000035],[-56.05704154299997,2.004868638000175],[-56.060172518999934,1.837750084000049],[-56.10404256199996,1.84597642000017],[-56.13298761999988,1.545801021000102],[-56.16423049399998,1.37803756400001],[-56.08538846899995,1.236919003000082],[-56.07735458199994,0.988213519000112],[-55.96451555699997,0.939980360000163],[-55.86006949999995,0.973542842000143],[-55.846824583999876,1.044812320000062],[-55.764877566999985,1.120031854999979],[-55.66728254199984,1.154814071000033],[-55.65668463099996,1.062619171000165],[-55.555107530999976,1.034035372000062],[-55.596038543999896,0.940007182000045],[-55.679260616999954,0.973015620000069],[-55.76859259399998,0.894277530000181],[-55.856468633999896,0.745571839000092],[-55.925414481999894,0.715140166000026],[-55.97305252599995,0.638458660000026],[-55.971679569999935,0.541745914000103],[-55.90375547699995,0.465124925000168],[-55.81564356899986,0.465438911000035],[-55.672920544999954,0.553882239000188],[-55.633506488999956,0.487873243000138],[-55.389564607999944,0.510888440000087],[-55.32166247499998,0.551687185999981],[-55.28320362099993,0.625012914000024],[-55.188735548999944,0.932723644000134],[-55.145675532999974,1.008324219000031],[-55.044410575999905,1.068405701000017],[-55.08341961799988,1.178164543999969],[-55.180961501999946,1.150294548999966],[-55.260131594999905,1.248924236000164],[-55.35947458199996,1.645949341000062],[-55.301208619999954,1.759421032000091]]],[[[-43.79806557299992,59.848136580000016],[-43.72665745699993,59.911467056000106],[-43.94778061299996,59.97702125000018],[-44.1119385099999,59.862858052000036],[-43.90221759299993,59.78841937600015],[-43.79806557299992,59.848136580000016]]],[[[-43.139995480999914,60.062591597],[-43.57917451799989,60.104536317000054],[-43.729164484999956,60.1375873340001],[-44.09749246799993,60.1695324440002],[-44.11666456299997,60.10092690100004],[-43.868053457999906,60.053699236000114],[-43.91194948499992,59.9920250240001],[-43.57278448999983,59.91285191400016],[-43.47804652099995,60.04147691200012],[-43.24722650899997,60.00953062900015],[-43.139995480999914,60.062591597]]],[[[-44.31388856499984,60.03536566600019],[-44.27916753699998,60.12008474700008],[-44.434436593999976,60.1395334450001],[-44.48527551899997,59.99758323200007],[-44.31388856499984,60.03536566600019]]],[[[-45.27917049599995,60.23176086600006],[-45.184436549999816,60.263988278000056],[-45.152217519999965,60.37454239600004],[-45.35389348699994,60.3806534740001],[-45.40277456699988,60.17620192400011],[-45.27917049599995,60.23176086600006]]],[[[-47.776664496999956,60.73900565100013],[-47.75860954199982,60.807611194000174],[-47.953887601999895,60.835673135000036],[-48.139160519999905,60.79900499100012],[-48.07639347599991,60.69704986700009],[-47.88500260699993,60.679555159000074],[-47.776664496999956,60.73900565100013]]],[[[-44.48899456899994,60.87015578200004],[-44.86402555999996,60.877457928000126],[-44.894794520999824,60.95777500100013],[-44.69071948599998,61.07799295],[-44.75693853299998,61.22581066300006],[-44.83290858299995,61.274327633000155],[-44.962306559999945,61.46995354200004],[-45.16003750099992,61.57852399799998],[-45.267936566999936,61.58170208100012],[-45.62905158699988,61.51064617300017],[-45.95511650599991,61.520866563000084],[-46.0665545789999,61.39535778900017],[-46.232219542999985,61.30020390900012],[-46.24063447099991,61.20758304100019],[-46.527763604999905,61.113379334000115],[-46.71897560399992,61.02633578400014],[-47.23723957399994,61.10939323600019],[-47.410404496999945,61.07079758900005],[-47.56881760599998,61.07793880300005],[-47.55754059299994,61.15374792100005],[-47.82778153399988,61.15179477000004],[-47.87916947299993,61.030394972000124],[-47.72999556899998,60.97094766500004],[-48.01805459199994,60.91011617000004],[-47.9305575809999,60.83455934799997],[-47.67193546699997,60.80817227800003],[-47.44778459999998,60.81844949700013],[-47.04250348799985,60.97206178700003],[-46.91471852399991,60.92761875700006],[-47.05500056999995,60.86900762900018],[-46.86721459099988,60.79539959900006],[-46.71666353899985,60.85150487400017],[-46.54611561399986,60.980675869000095],[-46.26333651999988,61.04373560900018],[-46.22943155399997,60.97289360700012],[-45.71000249899993,61.16901840700001],[-45.69639246799994,61.06624353400008],[-45.953052545999924,61.02374158500004],[-46.105838547999895,60.96623234100019],[-46.006664539999974,60.91039109600007],[-45.72972159699992,60.93095291100008],[-46.17666646799995,60.72872005000005],[-45.895549504999906,60.765671671000064],[-45.806949602999964,60.744273678000184],[-45.806388518999825,60.627886258000046],[-45.58750148699994,60.490101851000134],[-45.463611593999985,60.615106538000134],[-45.394172554999955,60.511220559000094],[-45.222770513999876,60.43232254300017],[-44.94222251499997,60.47926757100004],[-44.89111352499998,60.43426781500017],[-44.92277146999987,60.3259374160001],[-45.10333660799995,60.2675973580001],[-45.077777502999936,60.12314481200008],[-44.76111255299992,59.990639831000124],[-44.551944505999984,60.00453333800016],[-44.463890601999935,60.141203455000095],[-44.31695550399985,60.146197728],[-44.223609600999964,60.233149077000064],[-44.09638555399994,60.18231317000004],[-43.73167050599994,60.16091920000002],[-43.38444161699988,60.10175888900011],[-43.13750454699988,60.077588162000154],[-43.08861156399996,60.11176134900012],[-43.11583749499994,60.28454305200012],[-43.36583747999998,60.38481995100011],[-43.432887508999954,60.23755527600008],[-43.519725533999974,60.22436752500005],[-43.8869055319999,60.35183665900013],[-43.98778961599993,60.43549978700014],[-44.136753469999974,60.49085018800014],[-44.41785048399993,60.529299319000074],[-44.57030858599995,60.64151271800006],[-44.43947545899988,60.84340644700006],[-44.48899456899994,60.87015578200004]]],[[[-46.43166759899998,60.81428352400013],[-46.17305353199987,60.895127315000025],[-46.20694357799988,60.94789860400016],[-46.4561115759999,60.88872639100015],[-46.83778354899994,60.76955467100004],[-46.75361247699993,60.74845088300003],[-46.43166759899998,60.81428352400013]]],[[[-49.74253461199993,65.1629433060001],[-49.64218562899998,65.28472230099999],[-50.14471056399998,65.41171919800018],[-49.89693060999997,65.60820894600005],[-50.339107518999924,65.73585544100018],[-50.738048558999935,65.89717925000019],[-51.04253762099984,65.90602165400009],[-51.67644151299993,65.87673126100003],[-51.91421548599993,65.81360195200011],[-52.08253449599988,65.71754333000018],[-52.46973450199994,65.6425128910002],[-52.60416748799997,65.52504420600008],[-52.45167552399994,65.29335867900011],[-52.19083756999993,65.27364360400003],[-52.21720854599988,65.10917658200009],[-52.28527462899996,65.08251861000014],[-52.015838518999885,64.960563595],[-52.21138748199991,64.911398368],[-51.87748749499997,64.83307065700012],[-51.80778157699996,64.93445547500005],[-51.64555755199996,64.86139193400015],[-51.859996474999946,64.82390018400008],[-52.15278255599992,64.67554703500019],[-52.025562531999924,64.583882877],[-52.11555852399994,64.44665435899998],[-51.984996467999906,64.19832052800012],[-51.82388656599994,64.21942465100005],[-51.44277148599997,64.51582534400006],[-51.41860562099993,64.6088778800002],[-51.2952764769999,64.72889365800012],[-51.14695350299991,64.719447924],[-51.210548511999946,64.61748408300002],[-51.03332859099993,64.61998624900014],[-50.733882585999936,64.762510454],[-50.37360357599988,64.756392],[-50.10388952199992,64.65722017200005],[-50.06806157999989,64.531099854],[-49.77472346699989,64.42414609900015],[-49.796394542999906,64.37998520400015],[-50.130824600999915,64.4733275860001],[-50.25500148999993,64.6341632320001],[-50.48500460199989,64.71027761900001],[-50.79555562299993,64.65055169700014],[-50.573890493999954,64.44665435899998],[-50.90222154399993,64.39887684000007],[-51.03332859099993,64.24052860700004],[-51.23110948799996,64.17524850100011],[-51.41014459299993,64.21321416400019],[-51.617504495999924,64.21498425400011],[-51.6422195429999,64.11302058100011],[-51.44583155099991,64.07636685400007],[-51.64999761399997,64.01081182200011],[-51.37972247499988,63.894695640000066],[-51.55943249099988,63.707465213000035],[-51.37665955999995,63.618010022000135],[-51.38805056699988,63.55939822300013],[-51.14056062599997,63.484398127000134],[-51.17082952199996,63.398830965000116],[-51.05416851699994,63.367441911000185],[-51.09583646699997,63.29411249600008],[-50.97416660399995,63.2557808790001],[-51.05943654299989,63.18243654400004],[-50.90499846899985,63.13577231000016],[-50.78276852699992,63.20244548800002],[-50.551391621999926,63.22243901000019],[-50.46721250299993,63.179388381000194],[-50.51278356999984,62.97297714200016],[-50.323337470999945,62.930479217000084],[-50.3172305839999,62.74130402100019],[-50.03750652499997,62.79853045900006],[-50.113616552999986,62.697689123000146],[-50.22360254599988,62.667970917000105],[-50.30611047999997,62.484899926000196],[-50.20610448499991,62.40489868300017],[-49.9999995199999,62.30628441900012],[-49.79944656099991,62.25406633500006],[-49.536113481999905,62.24907273300005],[-49.638336490999905,62.1490588580001],[-49.36277052799994,62.157119232000184],[-49.300552498999934,62.129336239999986],[-49.696105573999944,62.01766716100008],[-49.60221853499996,61.98127763200006],[-49.40472061199989,61.98182664600017],[-49.381946477999975,61.867376955000054],[-49.214717618999885,61.88183171500003],[-49.00083961299998,61.952387391],[-48.95139359299992,61.87682235400007],[-49.12388947199997,61.80515741700003],[-49.14444759799994,61.72459106700012],[-49.038059621999935,61.61792380500009],[-49.1605566099999,61.595698853000044],[-49.09833556399997,61.487089505000085],[-48.99638748099994,61.45237082400007],[-48.53111256199986,61.541260572],[-48.34416561099994,61.60320199800009],[-48.24472455499989,61.52736287300007],[-48.83167654599998,61.46014135100006],[-48.67666246699997,61.398199589000114],[-48.484451512999954,61.370686662000196],[-48.57778148999989,61.28319300400011],[-48.54084059899998,61.18956949300008],[-48.21999760599988,61.191515435000156],[-48.07556148799989,61.08401216300007],[-47.87277257199992,61.130400968],[-47.69367259099994,61.21071921400005],[-47.70911758899996,61.27670792599997],[-48.04138561899998,61.43940737200006],[-48.08301149099992,61.50823537000008],[-47.92448455599998,61.62292897500015],[-47.926025485999844,61.68059814500003],[-48.09761058699996,61.72108106100012],[-48.28701058599995,61.66994273400013],[-48.30276454099993,61.806450410000195],[-48.4550935609999,61.86057872900017],[-48.45485350399997,61.94155311000003],[-48.819400577999886,62.104119787],[-48.91611852099982,62.210504243000116],[-49.096126596999966,62.29216895900015],[-49.08849755599988,62.35294748000007],[-49.31483861399994,62.52944186200017],[-49.2560196149999,62.65547349999997],[-49.480071574999954,62.59566778200002],[-49.776660524999954,62.566450647000124],[-49.84483758399995,62.46186897000007],[-49.98197960199991,62.41932226200015],[-50.149307534999934,62.46414314800012],[-50.159732610999924,62.572496849000174],[-49.97780960499995,62.64750113600007],[-49.95217556599994,62.72338233800019],[-49.71943257799984,62.86698143900003],[-49.555419519999816,63.04996475500002],[-49.597801606999894,63.175371103000145],[-49.49486948899994,63.25845101800019],[-49.45151862099988,63.45858672700018],[-49.53096749699989,63.60558552700019],[-49.63491851899994,63.680073992000075],[-49.81968349299996,63.699716647],[-49.8717724949999,63.79543194600012],[-49.737384602999896,63.8554559280002],[-49.77914860899983,63.94502075500009],[-49.63920552699989,63.9925501690002],[-49.5754546149999,64.12350315700007],[-49.30124651999989,64.18266464099997],[-49.26447259599996,64.22230886400007],[-49.327556475999984,64.57889246000002],[-49.483898583999974,64.7541786750001],[-49.520580474999974,64.8719593350001],[-49.705932516999894,64.9571152800001],[-49.832366485999955,65.10781066700014],[-49.74253461199993,65.1629433060001]]],[[[-51.05139561599998,64.33664791400014],[-50.81750447499991,64.47888143500018],[-50.824455586999875,64.54443697100015],[-50.99638753199997,64.55748357000004],[-51.202503560999844,64.31943534099997],[-51.05139561599998,64.33664791400014]]],[[[-51.46055553799988,64.38582923399997],[-51.27388351299982,64.38444119100018],[-51.168052597999974,64.50332792600005],[-51.255279543999904,64.5399967410001],[-51.46055553799988,64.38582923399997]]],[[[-53.18833148999994,65.5722722070002],[-53.02471958999996,65.53809147600009],[-52.85194358699994,65.64727314100008],[-53.16583261799991,65.63004514500017],[-53.18833148999994,65.5722722070002]]],[[[-52.65193947499995,65.70950223500017],[-52.19790250799997,65.84861517300016],[-52.68722158799994,65.93532830800007],[-53.05471456599986,65.8464407400001],[-53.11583355999994,65.7406007720001],[-53.059169546999954,65.65533033000014],[-52.65193947499995,65.70950223500017]]],[[[-51.768226537999965,65.98086249500017],[-51.59050353599997,66.10502195000004],[-51.71124250399998,66.16609065300014],[-52.10931350299995,66.05683925000011],[-52.287399608999976,66.02861687900008],[-52.50570258899995,66.06079148500015],[-52.756847542999935,66.03832932600017],[-52.86029447699997,66.09439336100002],[-53.30805557799994,66.09367620600011],[-53.46221554099998,66.03256240900004],[-53.38527654299992,65.93172610200008],[-53.129997466999896,65.94449878100005],[-53.16277355899996,65.854223337],[-52.60972251099997,65.98200696000009],[-52.505565628999875,65.90033755100012],[-52.31750857899988,65.8975604580001],[-52.17499962799991,65.99728130200003],[-51.9219355539999,66.03340143700018],[-51.768226537999965,65.98086249500017]]],[[[-49.875240590999965,67.8907513870002],[-49.95732155199994,67.96062511100007],[-50.294338599999946,67.99608810500013],[-50.4537885499999,68.18926767200014],[-50.68709949599992,68.23700713700009],[-50.773803578999946,68.35861078200008],[-51.068458488999966,68.35871790300013],[-51.23082349699996,68.15239266200012],[-50.943061528999976,68.05016831199998],[-50.69083346599996,68.03017780800013],[-50.440273569999874,67.94626540200005],[-50.579730500999915,67.899326912],[-50.71194848599998,67.95545213600008],[-50.976943528999925,67.9943331020001],[-51.188606532999984,68.06211654800006],[-51.84388763099997,68.0398835490002],[-52.192493498999966,68.08544891600002],[-52.57973055199989,68.18767276300002],[-52.78944057299992,68.16183806100014],[-53.14805560699995,68.19766818300019],[-53.03917351099989,68.08378510800003],[-53.25555753899994,68.01490329900008],[-53.27388758799992,67.85432648500017],[-53.676666533999935,67.81098953100019],[-53.54750861399992,67.72765665000003],[-53.7294316199999,67.53514176800007],[-53.58943958799995,67.50736900300012],[-53.33167259599992,67.58430816800006],[-53.005283632999976,67.75071375700009],[-52.82222353799989,67.78959505900013],[-52.456672478999906,67.81933690100004],[-52.26722755299994,67.77015507800007],[-52.00582851499996,67.7626614890001],[-51.7130545039999,67.69347491400015],[-51.59916656799993,67.74737189200005],[-51.16166357599997,67.7571071370001],[-51.33028450099994,67.67430902100006],[-51.79750854899993,67.62430342500005],[-52.416381508999905,67.76737698000011],[-53.03334054499982,67.6923609590001],[-53.11112259499998,67.58986235300017],[-53.60194354399994,67.48235874500006],[-53.82111354799997,67.40403086500004],[-53.88027553499995,67.25541771000013],[-53.80666348199992,67.17928756600003],[-53.91555060699994,67.14400830300019],[-53.628337485999964,66.90621773300006],[-53.20305262699992,66.92344522600001],[-52.970832501999894,66.85288502400005],[-53.00444762199999,66.66592550000013],[-53.27527646899989,66.6923085460001],[-53.441940555999906,66.639266857],[-53.224166472999855,66.54564938000016],[-53.62471348599996,66.49118729400004],[-53.69666659299992,66.32536223600016],[-53.58306447999996,66.20702401200009],[-53.63999956299995,66.11867154400005],[-53.30749851599995,66.1172824950001],[-52.99665848699988,66.19506035400019],[-52.72443757299993,66.34452779300011],[-52.45999154499998,66.4356275130001],[-52.130001548999985,66.5114830660001],[-51.977497513999936,66.65647993300013],[-51.87943259999997,66.63537564200004],[-52.09778553599995,66.47481458700008],[-52.373882576999904,66.43091219000013],[-52.36845060099989,66.39142001500005],[-51.726287516999946,66.3965556070001],[-51.596614613999975,66.37337645900016],[-51.39021259499998,66.22831086100001],[-51.17774962099992,66.18823999900013],[-50.58848958999988,66.12556884500003],[-49.94503753699996,65.938387368],[-49.82453560899995,65.95384510600019],[-49.523738607999974,66.1238979960001],[-49.310581612999954,66.30352570200012],[-49.232612478999954,66.43117219600015],[-49.26529653699998,66.56430414400018],[-49.50870549699994,66.70333393400006],[-49.58607448699985,66.87405771100009],[-49.92494946799985,67.04694871400011],[-49.94854754299996,67.15535354399998],[-49.69644956699989,67.35735908700019],[-49.631595596999944,67.51083341100008],[-49.76051362699991,67.59385264100013],[-49.875240590999965,67.8907513870002]]],[[[-53.203891487999954,68.39241030400012],[-52.95639450599998,68.3626848900002],[-52.85638448699996,68.41353085600008],[-52.96416452999995,68.48241249800014],[-53.203891487999954,68.39241030400012]]],[[[-50.98305561299992,69.03993847599997],[-50.78138350199998,69.12633829600014],[-51.078887587999986,69.12772701000011],[-51.13277853199992,69.03911386500005],[-51.081676581999886,68.87047986300013],[-51.29083658299999,68.75021933400012],[-50.98722057999993,68.73103734900008],[-51.044723620999946,68.59797413300004],[-51.618328603999885,68.51853112500015],[-51.95278162899996,68.52964117000005],[-51.98416162999996,68.5799206870002],[-52.3963925139999,68.54992135200007],[-52.47972153899991,68.48990491400008],[-53.079723482999896,68.32157601400019],[-52.89723251899994,68.22379273100006],[-52.44445049099994,68.22295336700012],[-51.78417562299995,68.2401811960001],[-51.66750355399989,68.27407325399997],[-51.24083350099994,68.28850789700016],[-51.21278748599997,68.41324050700013],[-50.83393853699988,68.50180755200012],[-50.403060601999925,68.82905767100016],[-50.37017051599997,68.89909132200006],[-50.51833356299994,68.94326814300013],[-50.532504511999946,69.02689120600013],[-50.69221446899985,69.07578335000017],[-50.98305561299992,69.03993847599997]]],[[[-50.211673588999986,69.01050240600017],[-49.991832528999964,69.08600675700006],[-50.11689354199996,69.26572750200012],[-50.356979579999916,69.37095793800006],[-50.33500256499991,69.50192400200012],[-50.86584056399988,69.45608354100005],[-50.878051487999926,69.364678551],[-51.12277255099997,69.19996610700002],[-50.87167352999995,69.17272777200009],[-50.559997489999944,69.2241215790001],[-50.35610551499991,69.12716190200007],[-50.434440602999985,69.04994864800011],[-50.211673588999986,69.01050240600017]]],[[[-50.67055160699988,69.8230481240002],[-50.67027651299986,69.85915216600017],[-51.008895510999935,69.91971761899998],[-51.38805760699995,69.70387070400017],[-51.24917550699996,69.53192451000012],[-50.94916958999988,69.55469210600006],[-50.965278601999955,69.7230364290001],[-50.67055160699988,69.8230481240002]]],[[[-50.47193553799991,69.53358798200009],[-50.22365551899992,69.56362671200003],[-50.14872750799992,69.78834738000018],[-50.18117150799992,69.87784531900007],[-50.33888657199992,69.97111276700002],[-50.58916450099997,69.92054156000006],[-50.3136065839999,69.87192518100017],[-50.33000158699991,69.75665356000007],[-50.55777762599996,69.78082462200018],[-50.79750055999989,69.71137820700005],[-50.84610352899995,69.61942269400004],[-50.7997246139999,69.50108514100009],[-50.58971753899988,69.4894116640001],[-50.47193553799991,69.53358798200009]]],[[[-52.98082758599992,70.07750275600011],[-53.26639550699997,70.19361374000016],[-54.360279469999966,70.32252724300008],[-54.7511135339999,70.24416969200018],[-54.843322515999944,70.17444751200009],[-54.817783526999904,70.05916080400004],[-54.706664468999975,69.96583216800019],[-54.867214627999886,69.93194061300005],[-54.92639153499994,69.74053884800009],[-54.994445547999874,69.69331017700006],[-54.65889348799993,69.56914284200008],[-54.07138862799991,69.5444215920001],[-53.91305950599991,69.43635371400018],[-54.15333162199994,69.42774700900009],[-54.153613588999974,69.33412869400019],[-53.93443251999997,69.31607658899998],[-53.83833349799994,69.258578409],[-53.582225618999985,69.22856298200014],[-53.183063631999914,69.31300931500004],[-52.75305959299993,69.35718580100018],[-52.078338514999984,69.49662881800003],[-51.833328611999946,69.62468787000012],[-51.99694855899992,69.79721409200016],[-52.693046506999906,69.91610149800005],[-52.98082758599992,70.07750275600011]]],[[[-52.15832852599988,70.88255756700005],[-51.65083362499996,70.83366575800011],[-51.65943161399997,70.88588367300008],[-51.96277654499994,70.9722848340001],[-52.15832852599988,70.88255756700005]]],[[[-53.70861449299997,71.27201532200019],[-53.99028047099989,71.13005421300016],[-53.68500149899984,71.02311487499998],[-53.45278154099992,71.0481103800002],[-53.41138851799997,71.16840225800007],[-53.59805249599998,71.31201057900017],[-53.70861449299997,71.27201532200019]]],[[[-52.738334600999906,71.16423594900004],[-52.592224616999886,71.23368320200007],[-52.360832624999944,71.26952807600009],[-52.57138854699997,71.34480360200018],[-52.961376541999925,71.38397542000013],[-53.18332263199994,71.32202142100016],[-53.11582953599998,71.20479631400008],[-52.958885607999946,71.1470233760001],[-52.738334600999906,71.16423594900004]]],[[[-52.514270570999884,72.33613548200003],[-53.03192852999996,72.4037668790001],[-53.24003961899996,72.46414893700012],[-53.09198352499993,72.57036491700012],[-53.1913484719999,72.62668124800012],[-53.90896947199997,72.69764629600007],[-54.23910162499993,72.77439502500005],[-54.61751957599995,72.8212649510001],[-54.80250147399988,72.80711143700006],[-54.73501256899988,72.6998815820001],[-54.99639551399997,72.56932002900004],[-54.98249848599994,72.50599206800007],[-55.469989471999895,72.52070147000012],[-55.62638053099988,72.45625972200008],[-55.507224567999856,72.38847677900014],[-55.28028152199994,72.36819642900008],[-54.970836575999954,72.4026378370001],[-54.88361750899992,72.24512712400013],[-55.39027354999996,72.0965116220001],[-55.5800094949999,71.99761421699998],[-55.034172583999975,71.88678316100004],[-55.34694648599998,71.87372030000006],[-55.40693258199991,71.79954313900004],[-55.77527649099994,71.73981654700003],[-55.905834523999886,71.67731269500013],[-55.68139246999988,71.62314129300006],[-55.54360957199998,71.46703421300015],[-55.342220601999884,71.38814156100011],[-55.013889551999966,71.42980096100018],[-54.82556562099995,71.35147241100009],[-54.39611462099987,71.36258212100006],[-53.91554256099994,71.44063457100003],[-53.88528053699997,71.57064744500008],[-53.72194255799997,71.65732235900009],[-53.76472060599997,71.7139967650001],[-53.39805559299998,71.84317044200009],[-53.58110847899991,72.04317958400003],[-53.43251057899994,72.0584545970001],[-53.373317578999945,71.90039419800013],[-53.11555863299992,71.77122135900004],[-53.21361952399991,71.69565464600015],[-52.564456545999974,71.68065489500009],[-52.56750856399998,71.62730659600004],[-52.174442566999915,71.6089795650002],[-51.863887521999914,71.65398116500006],[-51.83999658399989,71.58953908100017],[-52.48583261699997,71.55535768000004],[-52.66694257899991,71.5264855440002],[-52.943057556999975,71.40369116500005],[-52.268890522999925,71.35534820300018],[-52.23389054499995,71.18561550200019],[-51.74695259699996,71.34897024600014],[-51.5247195099999,71.30035185400016],[-51.626953582999874,71.24840819500014],[-52.02722952499994,71.21479106300006],[-52.218326523999906,71.10783563200005],[-51.865554514999985,71.13089324100014],[-51.95639054099996,71.02061170299999],[-51.608253556999955,70.92748926200005],[-50.91305548899993,70.84227196100011],[-50.747787491999986,70.78115648699998],[-51.27138553799989,70.76977319200006],[-51.17583854799989,70.68892722100014],[-51.32972358399991,70.55113191800018],[-50.958057591999875,70.47808413500013],[-51.00556554899998,70.42334745700003],[-50.67499954799996,70.40280860900009],[-50.59693955399996,70.32307709600019],[-51.05722053599993,70.3569678130001],[-51.19722346499992,70.39919232099999],[-51.51611749799997,70.42195974900017],[-51.812782555999945,70.49224586300005],[-52.466110501999935,70.70087595900009],[-53.043331605999924,70.77448851500003],[-53.41221949999988,70.75172058400011],[-54.12860852799997,70.82783597600019],[-54.57250959399994,70.71587571000009],[-54.54054654699996,70.65253299800008],[-54.16444049299997,70.46531229300018],[-53.89306648699983,70.3791862270001],[-53.224166472999855,70.34474498600014],[-52.876926519999984,70.278365678],[-52.575000476999946,70.18972235800004],[-52.392230562999885,70.0786168780001],[-51.930553491999945,70.00222639200018],[-51.536388627999884,70.00834551600002],[-51.27055355099998,70.06138905000006],[-51.03417248099993,70.02833585300016],[-50.91221662799995,69.96278015000007],[-50.50000753799992,70.02999932500012],[-50.12899047199994,70.05591063800006],[-50.04460951799996,70.12006237200006],[-50.28612550899993,70.20964446500005],[-50.35332456699996,70.2831576120002],[-50.379714486999944,70.5851542310001],[-50.51143257499996,70.70115809400005],[-50.50268153299993,70.80718212900007],[-50.703269527999964,70.95729162100008],[-50.82443647699989,71.11574814800014],[-51.10228349099998,71.21340302000004],[-51.1870154799999,71.37651368200017],[-50.99818058899996,71.49275441900016],[-51.006950573999916,71.5804598040001],[-51.385879485999965,71.68825443100008],[-51.69359256299998,71.93979568100013],[-52.03784554099997,72.06317763100009],[-52.10309949499998,72.17429048700006],[-52.247405525999966,72.25812041500006],[-52.514270570999884,72.33613548200003]]],[[[-53.34554648999989,71.5420356510001],[-53.24139363099988,71.52619553000017],[-52.758892559999936,71.6537062380001],[-53.39194451499998,71.66815714200015],[-53.34554648999989,71.5420356510001]]],[[[-55.42555951799994,71.87649739200015],[-55.566394601999946,71.92900666300011],[-55.79500950299985,71.89039928200003],[-55.71138761299994,71.83067252200004],[-55.42555951799994,71.87649739200015]]],[[[-55.47166451199996,72.14401605800009],[-55.28028453999991,72.19373147300013],[-55.01999660599995,72.32375943400012],[-55.18638258099992,72.33402927700013],[-55.650268618999974,72.22430463300009],[-55.47166451199996,72.14401605800009]]],[[[-55.269729543999915,72.69126045900003],[-54.964729521999914,72.81016328800001],[-55.151935473999856,72.8443309430001],[-55.51583848299998,72.7585094740001],[-55.8155475129999,72.65376686500008],[-55.47055055699997,72.57516439400013],[-55.269729543999915,72.69126045900003]]],[[[-55.30583962099996,72.91711939000015],[-55.075561583999956,72.96434806100018],[-55.50500151999995,73.04351597500005],[-55.68029058499991,72.98433856500003],[-55.30583962099996,72.91711939000015]]],[[[-54.778331584999876,72.949073049],[-54.76792947599995,73.01234770100012],[-54.985706575999984,73.10767475],[-55.31672251699996,73.18515656000005],[-55.653327510999986,73.051008223],[-55.38806558899989,73.046017806],[-54.778331584999876,72.949073049]]],[[[-53.25778159299995,82.16246236900014],[-53.16443652799995,82.10523794200003],[-51.93444051599994,81.9796805530001],[-51.22277854599997,82.00357635300014],[-51.84693562599995,82.1374671980002],[-52.54278161499991,82.2196876340002],[-52.558063499999946,82.2752482520001],[-53.31444560499989,82.27303643600004],[-53.25778159299995,82.16246236900014]]],[[[-44.77305961499991,82.45526974000006],[-45.83751655999998,82.62360199300014],[-46.61555046199993,82.67499613500007],[-47.559169531999885,82.64360674600005],[-46.997497528999986,82.38470735800001],[-45.55222356499996,82.19969679400015],[-45.07665650699988,82.05523150800013],[-44.73721658499994,82.09524386400017],[-45.0672265309999,82.21608559400005],[-44.461933594999834,82.34442158500019],[-44.77305961499991,82.45526974000006]]],[[[-37.407501587999946,-54.00129936299999],[-37.663063468999894,-54.036578289999966],[-37.65500661599998,-54.17964078099993],[-37.46472953499995,-54.12907963299995],[-37.282226500999855,-54.264084767999975],[-37.14611847499998,-54.25936156499989],[-37.08083350699991,-54.31991813399998],[-36.92000557199998,-54.33547427599996],[-36.8088915429999,-54.44769823599995],[-36.48694649799995,-54.55854069099996],[-36.34750347999989,-54.64742490699996],[-36.251113604999944,-54.78604733699996],[-36.076393503999896,-54.88826816699998],[-35.979728534999936,-54.807158165999965],[-35.822227544999976,-54.78715357999994],[-35.914451613999915,-54.714931581999906],[-35.90888955099996,-54.577706415999955],[-36.068611576999956,-54.56881690499995],[-36.06139358499996,-54.46464359499993],[-36.28222655899998,-54.267700720999926],[-36.391113515999905,-54.34491967499997],[-36.50111359099992,-54.28324998999989],[-36.67750554599991,-54.24825336399988],[-36.65639454999996,-54.105747934999954],[-37.16278052499996,-54.02936130399996],[-37.23194849299995,-54.07380332799988],[-37.407501587999946,-54.00129936299999]]],[[[-42.12432858799997,-20.40485242899996],[-42.168949481999846,-20.35100758599998],[-42.24607858199988,-20.376518913999973],[-42.301120527999956,-20.46285218199995],[-42.45514252599992,-20.49941622299997],[-42.520812557999875,-20.56812637099995],[-42.54757345999997,-20.72787823699997],[-42.51111251699996,-20.735249785999827],[-42.284816552999985,-20.53682616499998],[-42.16991859799998,-20.48848370599984],[-42.12432858799997,-20.40485242899996]]],[[[-41.86751545699991,-20.31824322899996],[-41.92275957499993,-20.310316798999963],[-41.963455558999954,-20.444966037999848],[-41.90153156699989,-20.559854773999973],[-41.77259459399994,-20.587856029999898],[-41.7320174649999,-20.459165484999914],[-41.79646658999991,-20.342127964999918],[-41.86751545699991,-20.31824322899996]]],[[[-41.209480568999936,-13.281432496999969],[-41.2110174739999,-13.213569255999971],[-41.28207053199992,-13.18968166999997],[-41.37281754199995,-13.32295778699995],[-41.379489536999984,-13.497632289999956],[-41.32167452199991,-13.583272374999979],[-41.24021549899993,-13.579501691999894],[-41.24346147499989,-13.482280331999903],[-41.209480568999936,-13.281432496999969]]],[[[-41.880596589999925,-13.058860445999926],[-41.90830950899988,-13.243567081999913],[-41.841598611999984,-13.358231517999855],[-41.775997478999955,-13.371049626999934],[-41.7264934559999,-13.230624920999958],[-41.75181149699995,-12.96005825899988],[-41.74507948799993,-12.869167415999982],[-41.82563058399995,-12.598891438999829],[-41.79664260999982,-12.477530700999978],[-41.71783461499996,-12.304050617999906],[-41.71581658799994,-12.13185514599985],[-41.87984858899995,-12.20284936299987],[-41.92094757499984,-12.322504215999913],[-41.90323661299993,-12.462081846999979],[-41.9724235249999,-12.594361857999957],[-41.97348450599992,-12.741600045999974],[-41.907855544999904,-12.87896166999991],[-41.880596589999925,-13.058860445999926]]],[[[-41.416061456999955,-12.702225552999948],[-41.473361488999956,-12.625616633999982],[-41.561714459999905,-12.75877976199996],[-41.57123948699996,-12.84300816599989],[-41.50859448299997,-12.887663928999928],[-41.38427761599996,-12.877383859999952],[-41.416061456999955,-12.702225552999948]]],[[[-42.1840365729999,-12.135402199999874],[-42.01554858399993,-12.141191580999816],[-41.985122610999895,-12.04467832399996],[-42.03713651099997,-12.01764500999991],[-42.14594652199992,-11.798495959999968],[-42.23222748699993,-11.843249120999872],[-42.376556483999934,-11.757081981999931],[-42.4208035449999,-11.82253458799994],[-42.36442149899989,-11.883332386999825],[-42.256088585999976,-11.887376990999883],[-42.297878575999846,-12.036501776999955],[-42.24672348599995,-12.13150930899991],[-42.1840365729999,-12.135402199999874]]],[[[-42.55450059999998,-11.29883243899991],[-42.50545154699989,-11.523009121999962],[-42.46023151399993,-11.557150792999892],[-42.42667758199991,-11.390290066999967],[-42.456008543999985,-11.298802598999941],[-42.55450059999998,-11.29883243899991]]],[[[-14.948699448999946,10.805030969000086],[-14.904609463999975,10.926092641000082],[-14.95433057899993,10.9742481830001],[-15.077989466999952,10.889444110000113],[-15.014889493999931,10.776976823000041],[-14.948699448999946,10.805030969000086]]],[[[-16.052650579999863,11.071382539000126],[-16.06547958599998,11.183903721999968],[-16.118770552999933,11.207642110000165],[-16.246969582999895,11.103839112000173],[-16.2127995809999,11.039993653000181],[-16.09316048599993,11.015286149000133],[-16.052650579999863,11.071382539000126]]],[[[-16.385990487999948,11.504512524000063],[-16.28244045599996,11.49225231500003],[-16.29475045399994,11.59534620300019],[-16.385990487999948,11.504512524000063]]],[[[-16.169189544999938,11.852117761000159],[-16.09869052999983,11.771374049000087],[-16.040340581999885,11.773013885000069],[-15.99691947399998,11.886205285000074],[-16.169189544999938,11.852117761000159]]],[[[-18.167261589999953,27.747140868000088],[-17.981571589999874,27.63752133300011],[-17.913919572999873,27.772767531000113],[-17.99916855699996,27.822073406000186],[-18.041931517999956,27.76352598000011],[-18.167261589999953,27.747140868000088]]],[[[-15.685044446999939,27.754482242],[-15.56816852999998,27.75496621300016],[-15.432926521999889,27.803585275000046],[-15.391921580999963,27.852983351000034],[-15.375944499999889,28.005955766],[-15.414101437999875,28.10218873200006],[-15.529704478999975,28.14833077300017],[-15.703557555999964,28.156280506000087],[-15.718897444999982,28.06665415600014],[-15.816394568999954,28.01211059700006],[-15.837346476999869,27.92770215000013],[-15.794781495999928,27.845323632000145],[-15.685044446999939,27.754482242]]],[[[-17.33414852599992,28.089566256000126],[-17.26313251599987,28.017588506000095],[-17.180271535999964,28.01783627599997],[-17.105802516999915,28.068087294],[-17.21287948599985,28.212196349000124],[-17.318365569999855,28.217172182000184],[-17.33414852599992,28.089566256000126]]],[[[-16.373018486999968,28.300809662000063],[-16.333629576999897,28.385893188000182],[-16.218563480999876,28.481167264000078],[-16.123395519999974,28.525372583000035],[-16.130239510999957,28.572287604],[-16.320274522999966,28.56601794000011],[-16.46674157599989,28.436810065000145],[-16.607679589999975,28.384743191000155],[-16.914451545999952,28.34032312700009],[-16.834882474999915,28.243570819000126],[-16.785625549999963,28.127568799000073],[-16.631620483999882,27.996442138000134],[-16.546197491999976,28.035279519000028],[-16.451269587999946,28.13405136300014],[-16.373018486999968,28.300809662000063]]],[[[-13.82789247699992,28.538878847000035],[-13.837703494999971,28.72199443000011],[-13.940806435999889,28.74405777800007],[-14.015165484999898,28.700841524000168],[-14.029692495999882,28.59009395200019],[-14.198859586999959,28.32175587100005],[-14.21811147699998,28.214147321000098],[-14.366428582999959,28.114498395000055],[-14.324321589999954,28.041673235000076],[-14.212578582999981,28.161854304000087],[-13.947480442999904,28.221551727000076],[-13.87377752999987,28.337278988000037],[-13.82789247699992,28.538878847000035]]],[[[-17.98950958699993,28.721136625999975],[-17.820259515999965,28.44626367800015],[-17.76624250799989,28.545890476000125],[-17.737434577999977,28.763147731000117],[-17.756639529999973,28.80275825800004],[-17.912687599999913,28.85437033000011],[-17.994310573999883,28.79075570800012],[-17.98950958699993,28.721136625999975]]],[[[-13.554748548999953,28.950409506000028],[-13.462631432999956,29.01409001000013],[-13.44756747599996,29.09102096100014],[-13.372211483999877,29.186710947000165],[-13.453760528999965,29.235638128000176],[-13.526464486999885,29.131366414000126],[-13.747794507999913,29.073668410000096],[-13.824868453999898,29.005301081000084],[-13.82940155499989,28.919894684000155],[-13.787079481999967,28.846695524000097],[-13.716294476999963,28.905834210000137],[-13.554748548999953,28.950409506000028]]],[[[-40.512783481999975,63.71079500800016],[-40.609508464999976,63.787504845000115],[-40.74772252799994,63.76804189800009],[-40.96366851699992,63.79103798500006],[-41.16032456199997,63.877985646000184],[-41.398216552999884,63.93321031800019],[-41.696319609999875,63.96992406000015],[-42.22571558599992,63.80133330900014],[-42.23295956199996,63.690168150000034],[-42.53079959499996,63.66552015800005],[-42.61746545699998,63.5776831770001],[-42.451957569999934,63.51499727000015],[-42.76675050499989,63.43101663500005],[-42.67433147299988,63.37024180200012],[-42.91526760399995,63.269251436000104],[-42.87821556799997,63.154496141000095],[-43.21673146899997,63.056102991000046],[-43.44294746899993,63.02780853500002],[-43.50463157099995,62.93998295400013],[-43.31564748199992,62.86074429700017],[-43.35052860399992,62.780635933999974],[-43.56487247699994,62.79139326800009],[-43.47108048899992,62.70023722100012],[-43.29415846099994,62.64241885300015],[-43.30675562399995,62.56639264400002],[-43.42333549199992,62.425342480000154],[-43.244995581999945,62.265491540000085],[-43.06207261499992,62.214479612000105],[-42.61701149299989,62.16295622100006],[-42.63166456899995,62.09153838300017],[-42.557258581999974,61.947058177000144],[-42.42943958699993,61.898762153],[-42.478549492999946,61.84302300000019],[-42.68165960399995,61.86907093800016],[-42.853427598999986,61.93346172400004],[-43.076446572999885,61.80471837300013],[-42.96685050699989,61.75555230800006],[-42.54917557699997,61.65662539900018],[-42.66133851699982,61.594550868],[-43.07762959499996,61.6674026820001],[-43.14462245899995,61.60205015700012],[-43.36536758999989,61.55879014900012],[-43.28756357999998,61.462472190000085],[-43.274764581999875,61.360734326000056],[-43.37817346199995,61.20724005300002],[-43.64782750199993,61.22843486900007],[-43.65799357699996,61.12223364100009],[-43.56907248099992,61.08666034100014],[-42.98042248399992,61.027388718000054],[-42.94738051899992,60.95352604700008],[-43.09424252699989,60.930904128],[-43.556449501999964,60.97737172300009],[-43.51884459599984,60.817934513000125],[-43.3579445769999,60.792989467000154],[-43.47812246099994,60.70468712200005],[-43.59314346299993,60.80541798500013],[-43.81784049399988,60.817285586000196],[-43.89966547099988,60.70871546500018],[-44.08577356099994,60.71915277800019],[-44.26309557299987,60.779080033000184],[-44.33780649399995,60.69571479799998],[-44.15416352099987,60.610109415000124],[-43.441379549999965,60.51427274500003],[-43.24888646099993,60.46676294500014],[-43.037506597999936,60.50899264900016],[-42.82583956999997,60.60482931900003],[-42.771385529999975,60.730109099000174],[-42.91722159299991,60.78872844200009],[-42.88417057499993,60.837062352000146],[-43.08777655899996,60.889287476000106],[-42.73444346499997,60.92317869600015],[-42.65694857899996,60.991792283999985],[-42.79139749199993,61.06234041699997],[-42.76778047399995,61.14012950699998],[-42.650268537999864,61.195680571000196],[-42.66788059299995,61.255856098000095],[-42.45750454599994,61.409862337],[-42.61944559799997,61.54292354100005],[-42.31721847599988,61.63015015200011],[-42.351394512999946,61.75210013800006],[-42.227779545999965,61.821545211000114],[-42.13666557599993,62.01711010000008],[-42.428054561999886,62.000721635000104],[-42.39861245599991,62.09072131500005],[-42.27333049599997,62.180447242000184],[-42.243892581999944,62.357124517000045],[-42.3630596079999,62.55602003900003],[-42.71472554099989,62.683245762000126],[-42.680553527999905,62.75992894500007],[-42.31249946499997,62.80547386],[-42.028339535999976,62.783256116000075],[-41.74777946699993,62.84019757000016],[-41.543331604999935,63.04188560700004],[-41.61805358899994,63.13882868700017],[-41.48276849899992,63.15049009400019],[-41.49750153699989,63.230770789000076],[-41.90750149299993,63.463004157000114],[-41.74749347599982,63.51578734800012],[-41.51111559199995,63.422727436000116],[-41.20721846099997,63.44050394400011],[-41.05943645499991,63.50718399500016],[-40.74833658599994,63.507454898000105],[-40.87777345599994,63.64968154600018],[-40.512783481999975,63.71079500800016]]],[[[-41.87444360299992,62.73908818100017],[-42.19861253499994,62.805755994000094],[-42.367221557999926,62.80242167300014],[-42.41833457099989,62.708530779000114],[-42.26306551499994,62.69213091500018],[-41.87444360299992,62.73908818100017]]],[[[-41.198329619999924,63.306053020000036],[-41.592777456999954,63.42522926600003],[-41.673610519999954,63.48801106200017],[-41.84582560599995,63.42328835300009],[-41.70638661099997,63.38105730700016],[-41.43083959099994,63.229652643000065],[-41.17749757299998,63.224102314000106],[-41.198329619999924,63.306053020000036]]],[[[-40.62721255299988,64.20497391500004],[-40.6741755189999,64.28969484000015],[-40.960288598999966,64.28720759400005],[-40.98305552399995,64.20636296400016],[-40.62721255299988,64.20497391500004]]],[[[-40.43082858499997,64.61054085000012],[-40.542499507999935,64.7016712480002],[-40.4347194639999,64.73888907800011],[-40.49638361699988,64.8255629860002],[-40.74833256299996,64.93222723000014],[-40.86471947999996,64.90695730099998],[-40.78528250699986,64.80360424399998],[-40.57389459699982,64.68526752900016],[-40.50111352499994,64.50332792600005],[-40.38027950599991,64.45860192300017],[-40.273326588999964,64.5380432550001],[-40.43082858499997,64.61054085000012]]],[[[-38.61833556399995,65.59504013800012],[-38.79051259499994,65.6533312460001],[-39.004005536999955,65.6553221150001],[-39.156696487999966,65.8087959360002],[-39.244106494999926,65.83408832900011],[-39.46200949099989,65.78058848500018],[-39.48175054899991,65.73262036200009],[-40.12350861899995,65.58957731700008],[-39.88694348399986,65.5069921010001],[-39.78750259599997,65.61531931500014],[-39.646110617999966,65.67477131600003],[-39.45249955099996,65.54282188700006],[-39.12277257899996,65.64727314100008],[-39.06750448799994,65.57338633000006],[-38.85334049199997,65.61004005700016],[-38.61833556399995,65.59504013800012]]],[[[-37.394447611999965,65.74867304800011],[-37.343330574999925,65.77533135500005],[-37.56583456499993,65.88422401200012],[-37.68693948799995,65.90256579600015],[-37.958332604999896,65.7928342780001],[-37.98722049899993,65.70394670900004],[-37.935001576999866,65.59337633000007],[-37.73138452899991,65.56754213100015],[-37.393894573999944,65.62447587300016],[-37.32083857599986,65.6958752720002],[-37.394447611999965,65.74867304800011]]],[[[-36.776954480999905,65.86228052500019],[-36.98722860399994,65.80310395300006],[-36.78750645899993,65.75395314400004],[-36.776954480999905,65.86228052500019]]],[[[-37.969165543999964,66.24813322400013],[-38.25540954899992,66.15246335400019],[-38.31753554499994,66.04788218100015],[-38.617526541999894,66.03849729900008],[-38.57240658999996,65.94343059100015],[-38.42260756299993,65.85448217000004],[-38.5108265909999,65.7682739600001],[-38.77345257299993,65.76405484600008],[-38.77500557199994,65.70694608900004],[-38.597782465999956,65.64643411300011],[-38.311275604999935,65.64953944000013],[-38.17916457299992,65.68281291400018],[-38.09888857199985,65.7928342780001],[-38.26778056799998,65.89978853600007],[-37.97471956099997,65.9603383990002],[-37.97887748799991,66.10812694200013],[-37.859733594999966,66.17534527999999],[-37.969165543999964,66.24813322400013]]],[[[-25.347770496999942,70.80032237900019],[-25.39472155999988,70.91033033200017],[-25.678613603999906,71.01145598199997],[-25.726942483999892,71.07701202100009],[-26.298343528999908,70.93254841100008],[-26.640272540999945,70.88895111500005],[-27.12360358899997,70.87476021700007],[-27.2980635159999,70.78643708600003],[-27.69555046399995,70.6439267950002],[-27.88111356299993,70.6386461960002],[-28.068616568999914,70.5641949460001],[-27.98998844999994,70.52030830700005],[-28.066659561999984,70.42696525400015],[-27.854448548999983,70.42473684100008],[-26.818616473999896,70.52087257700003],[-26.580007494999904,70.5161419980002],[-26.24305347899997,70.58171295600005],[-26.040008578999903,70.519758287],[-25.812213596999925,70.60170312499997],[-25.314727525999956,70.65114411600007],[-25.347770496999942,70.80032237900019]]],[[[-27.514734538999903,70.78309455100015],[-27.24945652399998,70.88672354000005],[-27.748882501999844,70.87614842800008],[-27.75333748399993,70.75060662900006],[-27.514734538999903,70.78309455100015]]],[[[-8.53312855799993,70.9644102040001],[-8.386982532999923,70.95861914700015],[-8.006423508999944,71.02808098500003],[-7.991954499999963,71.17857989999999],[-8.347913308999921,71.13371626600019],[-8.517211491999944,71.00926595900006],[-9.116265441999928,70.86600867200008],[-9.043915535999872,70.800887822],[-8.61850058899995,70.95861914700015],[-8.53312855799993,70.9644102040001]]],[[[-23.143894564999925,72.83489996000003],[-23.567489464999937,72.83073398700003],[-23.92916657599983,72.87016547700017],[-24.26277956599995,72.86932594500018],[-24.48444754499991,72.82461452700016],[-24.369157483999913,72.59321616400018],[-24.101940566999872,72.54820065000007],[-24.0233285409999,72.47570104300013],[-23.270832453999958,72.35292124900008],[-22.97332954099994,72.24041146500014],[-22.57805658899997,72.14041469],[-22.277221533999864,72.11262700400016],[-22.061393561999978,72.26874833300013],[-22.727502569999956,72.37513999800018],[-22.65027456399997,72.46543120000007],[-22.093606556999873,72.39320685500013],[-21.92860258999991,72.46930732700008],[-22.395288518999962,72.58570899600005],[-22.61027545099995,72.60598884300015],[-23.055555507999884,72.76017244400003],[-23.143894564999925,72.83489996000003]]],[[[-19.691131486999893,79.30863857600013],[-19.651111586999946,79.4347612410001],[-20.473520457999882,79.46180880500015],[-20.972812493999925,79.51446375300014],[-21.529977546999874,79.49392306100003],[-22.381534486999954,79.39685525800019],[-22.36933747599994,79.31990838000019],[-21.99400155199993,79.25483966600018],[-21.554952600999968,79.11834808400016],[-21.140258443999926,79.09723557900008],[-20.50948150499994,78.98379456600014],[-20.020692497999903,78.95462487200012],[-20.174491535999948,78.87639556400012],[-20.69813350299995,78.90422197400017],[-21.88980845999987,78.69471982400006],[-22.22461855299997,78.74193357600018],[-22.595766543999957,78.70144144000005],[-22.735128592999956,78.50962544100008],[-22.50268550899989,78.48659867700013],[-22.02878158799996,78.52281721600008],[-21.855506526999875,78.4932289300001],[-22.025400495999975,78.38660877400008],[-21.622943581999948,78.33549559300019],[-21.956224481999982,78.1914576160001],[-22.22037144299992,77.90864046800016],[-22.61052858399995,77.57838627500007],[-22.28945156899988,77.54260258900013],[-21.996219570999926,77.64646811500018],[-21.54434748199992,77.63355830800003],[-21.96454653799998,77.41544928500008],[-22.215400471999942,77.08174007100018],[-22.222301459999926,76.92385451900003],[-22.330699584999934,76.86210671500015],[-22.751142553999898,76.79970964800009],[-22.89019044899993,76.66879421100009],[-22.692661512999962,76.55596390400018],[-22.874464489999923,76.509955972],[-22.713983565999968,76.31517864700015],[-22.419389507999938,76.2485326260001],[-22.833002567999927,76.08834305700015],[-22.32159650299991,76.06685655100011],[-22.85799756999984,75.9251769060001],[-22.986818537999966,75.8451778430001],[-22.945684514999982,75.75815122400007],[-23.074180599999977,75.69361710800001],[-22.995887588999892,75.61349600400013],[-23.048248499999886,75.41930725600002],[-22.79919449599987,75.36473872000016],[-22.874549481999964,75.29428412900012],[-23.28008054299994,75.2841279450002],[-23.45433259899994,75.19818577700005],[-23.157552540999973,75.08247108900014],[-23.377267536999966,74.99171335000011],[-22.46098352899992,74.77225517600016],[-22.874141450999957,74.66361297000014],[-23.614875548999976,74.64348483500015],[-23.76943046799994,74.57660143900006],[-23.10776554499995,74.42768234400006],[-22.739219463999973,74.27275728100017],[-22.59992748899998,74.14917550600012],[-22.874334569999917,74.16588533300006],[-23.51971244899994,74.36721546300004],[-24.30313658599988,74.49735741800004],[-24.684995474999937,74.4446054070001],[-25.23523556799995,74.54551731900017],[-25.859275467999964,74.58948844800011],[-26.00426060099994,74.51530374300012],[-25.881383575999905,74.35914938900004],[-24.978446575999897,74.24343537200008],[-24.677709589999836,74.1454901510001],[-24.203136456999914,73.80473259400009],[-24.582447583999965,73.71673702800007],[-24.65249648999992,73.96034430300017],[-25.01936350699998,74.09707124900012],[-25.28836459699994,74.12321172300005],[-25.935358506999876,74.10045904700007],[-26.183877576999976,74.03645902500006],[-26.61600860799996,74.03124766100012],[-26.61517745799995,73.90751484400005],[-26.90028353599996,73.89886254100009],[-27.359224586999915,73.94867786800006],[-27.791257548999965,73.86574111500016],[-27.9147146009999,73.70286581600004],[-28.650281589999906,73.45317026200007],[-28.88963555299989,73.31605489800017],[-28.97422052299993,73.17910650300013],[-28.936424509999938,72.995386081],[-28.516981501999908,72.79119654900006],[-27.992078560999914,72.7513987700001],[-27.708709548999934,72.68613274600006],[-27.66000348299997,72.58678372400016],[-27.493165555999894,72.50001744700018],[-27.48010654999996,72.25617480800014],[-27.74351355799996,72.25128413500005],[-28.552898459999938,72.17536689100018],[-29.1173835969999,72.2663832950002],[-29.19266649899987,72.18822338900003],[-28.896081571999957,72.10865180300016],[-28.89930960999982,71.93052479300013],[-28.97881145899987,71.83070353500005],[-28.838907603999928,71.7581204440001],[-29.016073544999927,71.69733370900008],[-28.56515648999988,71.60123619500007],[-28.769947507999973,71.54346258600009],[-29.25084847399995,71.50076634500016],[-29.631387548999953,71.54647588000006],[-29.455772595999917,71.30256534700004],[-29.26855859699998,71.25422255300015],[-29.426073500999962,71.19113850600013],[-30.051645445999952,71.07510379700011],[-30.281524504999936,71.00249857800014],[-30.182058471999937,70.93865194500006],[-29.656814554999983,70.98861999000002],[-29.590215472999887,70.95615486700018],[-30.068708485999935,70.84515634100006],[-29.80280350399994,70.8323836620001],[-29.368053463999956,70.92552135800014],[-28.957097467999972,70.96597443500013],[-28.729640443999983,70.94580120500007],[-28.62128255199991,71.03671836800015],[-28.463243443999943,71.02729610300008],[-28.496932491999928,70.92268307800015],[-28.2111645789999,70.80432926399999],[-28.731250606999936,70.77215415500012],[-28.90437647099992,70.82979734200012],[-29.111057606999964,70.77805954100006],[-29.56387752099988,70.72361254200007],[-30.281623578999927,70.71875204400004],[-30.128791476999822,70.5978419170001],[-30.591436489999978,70.53479743300005],[-30.74637647399993,70.38914409500012],[-30.557023580999953,70.2322286650001],[-30.555808539999873,70.13995346600007],[-30.21081946399994,70.1694500540001],[-30.11360749199997,70.0870021340001],[-29.7021254469999,70.16854983800005],[-29.423795466999934,70.14942904000003],[-29.26101454899998,70.06603530600006],[-29.23399146099996,69.86436386600008],[-28.61211744399992,69.89489025400007],[-28.448930505999954,69.84055104600014],[-28.033027510999943,69.85533722700006],[-27.73593547899992,69.88888612900018],[-27.419349486999977,69.82992949900017],[-27.032665470999916,69.84440353700012],[-26.812953492999952,69.89951471800003],[-26.633331486999907,69.9935440810001],[-26.3925225939999,70.01174873700018],[-26.000959471999977,69.982976345],[-25.75320650699996,70.02553579400006],[-25.245758544999944,70.05729851300009],[-24.635051569999916,70.14001431900004],[-24.053941597999938,70.13417012100001],[-23.70248454199998,70.10426818400015],[-22.907857488999923,70.07207044400008],[-23.108369544999903,70.0001131460001],[-23.949665525999933,69.96231512200018],[-23.797533479999913,69.87781531200017],[-24.100286481999888,69.85573436100009],[-24.449186554999983,69.74553664200005],[-24.75669645399995,69.68773235500004],[-24.964424489999942,69.59290252000005],[-25.088817465999966,69.48738927900001],[-25.187149594999937,69.32341611800018],[-25.329822495999963,69.34252115800018],[-25.28753244099994,69.48072801300009],[-25.43630552299993,69.47205324600009],[-26.123226460999888,69.24136550100008],[-25.96979555599995,69.1764816910001],[-26.697755464999886,69.10534883700012],[-27.169271549999962,69.21056385000003],[-27.425874462999957,69.17567267000004],[-27.5785005379999,69.20050824900011],[-27.84303256499993,69.17953303900015],[-28.15131544299993,69.23772607800015],[-28.32803345499991,69.33299948400014],[-28.634347591999926,69.44673688100016],[-28.650066510999977,69.33071860000007],[-28.750843473999964,69.26995416100016],[-28.947347470999887,69.317037658],[-29.001031548999947,69.43842857100014],[-29.25991048499992,69.37433785700006],[-29.545906552999952,69.39129159700019],[-29.82514948999983,69.34268209100009],[-30.035152541999935,69.16171831000008],[-30.24147057499988,69.10392978100015],[-30.406417544999897,69.00104074600017],[-30.49774759999997,68.788039319],[-30.23778153199993,68.65837111000013],[-30.276159583999913,68.57398529300008],[-30.48534959199992,68.57288659400007],[-30.610816455999895,68.68460244300013],[-30.826410572999976,68.80088810600006],[-31.064687460999835,68.73712646600018],[-31.01802456799993,68.64836864900008],[-30.85753660299997,68.58130219200001],[-30.82569660299987,68.47362289900019],[-30.86582747899996,68.32826024600013],[-31.156070489999934,68.26390935800015],[-31.275089491999836,68.29299405900008],[-31.37729255199997,68.39594361100018],[-31.48122245199994,68.63003357100018],[-31.58061053399996,68.74754835699997],[-31.77552247199992,68.83605387800003],[-31.951232475999916,68.79580682900018],[-32.085113597999964,68.83973923300005],[-32.29684449599995,68.76629498600005],[-32.51622756799998,68.90882003000013],[-32.61557357299989,69.09888655800006],[-32.794807496999965,69.06936599700009],[-32.87012057299995,68.98283709600014],[-32.78811253499998,68.91073479200008],[-33.03976844999988,68.80474897900007],[-33.001842516999886,68.72526205000014],[-33.26705548899986,68.69641321500018],[-33.41116353899997,68.6272261370001],[-33.20578360899992,68.59547833700015],[-33.34229648099989,68.4710359090002],[-33.502014483999915,68.408143472],[-33.433952591999855,68.31966058100011],[-32.694930581999984,68.22629472900013],[-32.50529857199996,68.16772852800017],[-32.56386946799995,68.09904453100006],[-33.01423650199996,67.92264402600017],[-33.11290357199994,67.80153575000003],[-33.345169461999944,67.70512542400007],[-33.51424049599996,67.57281775200005],[-33.554222509999875,67.46310869800004],[-33.68046151499988,67.40705270900014],[-33.94965354399989,67.16350192700014],[-34.27756851699996,66.80021733500013],[-34.52151157099996,66.83463477100014],[-34.70813749599995,66.72719251800004],[-34.59347155099988,66.62393820000011],[-34.61884357199989,66.56978205299998],[-34.811561463999965,66.50940720400013],[-35.07373448699991,66.55960407600014],[-35.135486481999976,66.80515327000006],[-35.20914446799998,66.83925806100007],[-35.819045606999964,66.9659126410001],[-36.18193054999995,66.93749949800008],[-36.626857560999895,66.85721897100007],[-36.59985358399996,66.68643417300018],[-36.75934259299993,66.67563744400007],[-37.233089604999975,66.81242490700015],[-37.52076758699991,66.86090415800004],[-37.86322348499988,66.768950657],[-37.92366052699987,66.60397904500007],[-38.212989575999984,66.54042276100017],[-38.298511474999884,66.3949384020001],[-37.86221346499991,66.37368927200004],[-37.61694355499998,66.3211964300001],[-37.22054256699994,66.343413838],[-37.56055849299992,66.15923140600006],[-37.793624518999934,65.99088808900012],[-37.40583057199996,65.82867898400008],[-37.116394569999954,65.80533186300005],[-36.82694247499995,65.9106070580001],[-36.39471857299992,66.0222915600001],[-36.33195856999998,65.95728654800018],[-36.06361361599994,65.93254987500012],[-35.89611854799995,66.00979397400005],[-35.81806559499995,66.12561494500017],[-35.56999948199996,66.14062978300007],[-35.59222057799991,66.28480170300014],[-35.39332958199998,66.28535205900005],[-35.23277254999988,66.24035062700005],[-35.129440615999954,66.33619651600009],[-34.9708255029999,66.28147542900012],[-34.63999547199995,66.37063725300015],[-34.529781491999984,66.5061188160002],[-34.30749844899998,66.58149408600013],[-33.989437576999876,66.7656612630002],[-34.02138855399994,66.84232550200011],[-33.952224608999984,66.99150309500004],[-33.77167556499995,67.02316690800006],[-33.55194045299987,67.11095527300006],[-33.42471355599997,67.22984267900011],[-33.44972247299984,67.3868030370001],[-33.02361249899991,67.67514805000008],[-32.77972744699986,67.72098834300016],[-32.547492569999974,67.8148804110001],[-32.54638649399993,67.85960674900008],[-32.09444047699998,67.90654523900014],[-32.144718484999885,68.03516839400004],[-31.999168579999946,68.09378019300004],[-32.20056559699992,68.34046781800015],[-32.43111755599995,68.3779597350001],[-32.52527952099996,68.44656728899997],[-32.42666659799994,68.52852671200003],[-32.06944245699998,68.35351458500003],[-32.0072256009999,68.26046137800012],[-31.704444603999832,68.0968474660001],[-31.438058499999954,68.12016374200016],[-31.11805151799996,68.0493291160002],[-30.736661512999888,68.08073342500006],[-30.453609503999928,68.0562723490001],[-30.015285587999983,68.13379154300003],[-30.118331531999956,68.25934742300007],[-29.996940451999933,68.37351984100007],[-29.842216553999947,68.4085253510001],[-29.765281578999975,68.30434785000011],[-29.46471759499991,68.20990576200012],[-29.303607524999848,68.31322948200005],[-29.120275520999883,68.27907741800016],[-28.988893547999908,68.34019305900006],[-28.648620464999965,68.35685544400013],[-28.441951565999943,68.44543841500018],[-28.10250057999997,68.43741173600017],[-28.02305656699997,68.48741783500009],[-27.636949560999938,68.47380612800015],[-27.648338555999942,68.53435615800004],[-27.339164512999957,68.52909098200018],[-27.070552511999892,68.57548062500018],[-26.914165476999983,68.64797972900004],[-26.456378446999963,68.6529848990001],[-26.290288519999933,68.68658576900009],[-26.22388658099993,68.78575810100011],[-25.9577755709999,68.78354611600014],[-25.779172469999935,68.85659423500005],[-25.547779470999956,69.03883927400017],[-25.30556157999996,69.01717088000004],[-25.068057502999977,69.11077310200017],[-24.990829496999936,69.20690950800014],[-25.05055458099997,69.29272946800012],[-24.693880459999946,69.24162433400011],[-24.61362055199993,69.31357459100008],[-24.41638950899994,69.362191306],[-24.301387449999936,69.44190756300009],[-24.12611749599995,69.41302117800018],[-24.051950560999956,69.55107497900019],[-23.81944645699997,69.50608930500005],[-23.58861152599991,69.61803465100019],[-23.688610480999955,69.70860078000004],[-23.476957534999826,69.74971032700017],[-22.995834447999925,69.75582928400007],[-23.093618568999943,69.91500279900015],[-22.84638947299993,69.95722563000004],[-22.575561463999918,69.93610658700015],[-22.361116505999973,69.97277590400006],[-22.079154478999953,70.12833296300005],[-22.785842459999856,70.07779293700008],[-23.59083960299995,70.10834262700018],[-24.478607537999892,70.23917893900017],[-25.03110655399996,70.3616834720001],[-25.2394406009999,70.27029373700015],[-25.353889453999955,70.29612843900003],[-25.35666453499988,70.39336304200009],[-25.63748947199997,70.35390070700015],[-26.30749857899997,70.19639066400003],[-26.867502582999975,70.25057765700006],[-27.182491487999926,70.1594474260001],[-27.295282567999948,69.97416411500006],[-27.528339541999912,69.974713968],[-27.568620453999984,70.05166805400006],[-27.97722247599995,70.00695764100004],[-28.098607521999895,70.06471498900015],[-28.542781502999958,70.04333694500008],[-28.274999476999824,70.13668050100011],[-28.121393557999966,70.14195975900009],[-27.853330570999958,70.08667456900008],[-27.412214475999917,70.17778954500011],[-27.329444522999893,70.22890943100009],[-26.953613562999976,70.32225282000019],[-26.598886558999936,70.30111768300003],[-26.330282603999876,70.3808491960001],[-26.505832513999962,70.46779953900005],[-26.724435565999954,70.47724510600011],[-28.241937562999965,70.36974066000005],[-28.368061568999906,70.4975247860001],[-28.033893528999897,70.70476700700016],[-27.936103540999966,70.88115376500008],[-28.18388751899994,70.94588552700009],[-27.778331480999896,71.01478208900011],[-27.49666449699987,70.93560042900015],[-27.12110846399986,70.94838735800005],[-26.784173557999964,70.92922113000003],[-26.4788895559999,70.95894687900005],[-26.259448480999936,71.03588654800006],[-26.03971253099985,71.0511612250001],[-25.597782552999888,71.16783698300014],[-25.411392494999973,71.27119171600009],[-25.411388471999942,71.34785578800012],[-25.69473049499993,71.4614798610001],[-25.87777851999988,71.49898787200016],[-26.103895444999864,71.4831333350001],[-26.43584244899995,71.5053663330001],[-26.67499759199984,71.47452679700012],[-27.353050476999954,71.59759576700014],[-27.32500060599989,71.70844258000005],[-27.96916947899996,71.86566277700013],[-27.975282567999955,71.91428083300008],[-28.442508459999885,71.93178392300018],[-28.35473249899991,72.01124067699999],[-27.88249557099988,71.97205444100013],[-27.608898515999897,71.85844528700017],[-27.217224585999872,71.73954245900012],[-27.00637848199989,71.59509360100003],[-26.78582546299998,71.54565193900015],[-26.09361051499991,71.58509784600017],[-25.623893521999946,71.53591619100018],[-25.066942541999936,71.2936840500002],[-24.871948460999818,71.30090221000006],[-24.572504466999874,71.25841853400016],[-24.57333746099988,71.20868769600014],[-24.270551601999955,71.08422951000017],[-24.168327586999908,70.77671609000004],[-24.021955584999887,70.65086969300017],[-23.345830537999973,70.43779852900008],[-23.10890145999997,70.42334745700003],[-22.622779573999935,70.4452907770002],[-22.565828564999947,70.58087376000009],[-22.64306646199998,70.64865703800018],[-22.585006526999962,70.81561348500009],[-22.428338530999895,70.83671811200009],[-22.468320544999926,70.65282301100018],[-22.355838588999916,70.43723476200006],[-22.121950464999884,70.49030746400013],[-21.744432563999908,70.41724425800015],[-21.476936528999886,70.54197636499998],[-21.621940603999974,70.6386461960002],[-21.593347584999947,70.73226451000005],[-21.74971953299996,70.8692058650002],[-21.673334578999913,70.93254841100008],[-21.79139754099998,71.0784000640001],[-21.666105521999896,71.18895636100012],[-21.817787459999977,71.27618096000009],[-21.670833585999958,71.39925093600016],[-22.049711535999904,71.4820337970001],[-22.293346471999826,71.42563465300009],[-22.43721949299993,71.24563093500018],[-22.599710564999953,71.60481442899999],[-22.839439533999894,71.70038505700012],[-22.571659519999912,71.9220485100002],[-23.028623446999973,72.01012672200011],[-23.095827534999955,72.05816458300012],[-23.64667850099994,72.14679298300007],[-23.80471945299996,72.24846781500008],[-24.093896453999832,72.27708111800007],[-24.424171602999877,72.3531951700001],[-24.52055745499996,72.41069519300015],[-24.940273544999968,72.39152896600012],[-25.119726571999934,72.42986125300018],[-24.697488533999945,72.49653007300009],[-24.714723570999922,72.68182930900008],[-25.191373571999975,72.75516828000002],[-25.228338602999884,72.79488827500012],[-25.622230552999895,72.82156250800017],[-25.755001574999937,72.88379227200011],[-25.319723475999922,72.89017056500018],[-24.985549568999886,73.01795536100008],[-25.061376455999834,73.08213827600008],[-25.386667556999953,73.08769279600017],[-26.054452442999946,73.19852368400007],[-26.4808365049999,73.18630052200018],[-26.71000645499987,73.09907642600001],[-27.147781523999925,73.14603000400007],[-27.07444154699988,73.1860106760002],[-26.695827459999975,73.13185452900007],[-26.45277456399998,73.27798161200013],[-26.13499448599987,73.24047343300009],[-25.72139148499997,73.26243183999998],[-25.44000847999996,73.3504798780001],[-25.314998596999885,73.46048816600018],[-24.7116584769999,73.48964998100013],[-24.379165476999844,73.5493755670002],[-24.450559510999938,73.69994371700011],[-24.251111453999954,73.77633403600015],[-23.929985487999886,73.7577325810002],[-24.03472859999988,73.66493787200017],[-23.983621453999888,73.59160041000007],[-23.36082458999988,73.40770447200003],[-22.895544472999973,73.31658916100002],[-22.22667547299983,73.24407463400007],[-21.933889558999965,73.33909608000005],[-21.57443851499994,73.3896525340001],[-21.618057602999954,73.45465855200013],[-20.515832472999875,73.44965304700014],[-20.481388550999952,73.75689338500001],[-20.294998492999866,73.78523025300018],[-20.283054448999962,73.87883415100009],[-20.634439587999964,73.87716984000014],[-21.105546468999876,73.94356524199998],[-21.685825457999954,74.05996774900007],[-22.24832559299989,74.0244125540001],[-22.199453565999875,74.18386133000013],[-21.765008458999944,74.41832713500008],[-21.25916445799993,74.47054655900007],[-20.806940496999914,74.44442083700005],[-20.381937436999976,74.44442083700005],[-20.200834516999976,74.2755410790001],[-19.596677495999927,74.23359283800016],[-19.377769509999894,74.25970246700018],[-18.978624453999885,74.48415793200019],[-19.249986557999875,74.51194628800005],[-19.271663500999864,74.64528577100015],[-19.450553598999875,74.67972751400015],[-19.71472754999985,74.58416996200003],[-20.13611247799986,74.67000635100004],[-20.549167469999873,74.67194475000008],[-20.760833491999904,74.8344611350002],[-20.683324523999886,74.88751925300016],[-20.67026551899994,75.1150272390002],[-20.56195054299991,75.19059395200009],[-21.034450494999874,75.3181041570001],[-21.300825533999955,75.35616269200005],[-21.40638956999993,75.45451141700005],[-20.705564562999825,75.29477195600003],[-20.180833451999945,75.33505840000004],[-19.965841490999935,75.28892725500009],[-20.048343557999942,75.21726785000016],[-19.882776494999916,75.14476924900009],[-19.609996507999938,75.13198165000011],[-19.386104474999968,75.25866757900013],[-19.34221649499989,75.40728308100017],[-19.414443521999942,75.57034864900015],[-19.60248950799985,75.66701948500014],[-19.59443248799994,75.788960083],[-19.946386590999964,75.93286042900019],[-20.333332456999926,75.92230090800018],[-20.360288489999903,75.98008977200004],[-19.671115501999964,76.11399436300013],[-19.90417247599993,76.25511711400009],[-20.434457436999878,76.21954683200005],[-21.01500347399991,76.31038771900006],[-21.536109579999902,76.21760893600015],[-21.707231497999885,76.24901290900016],[-21.565002502999903,76.37289190600006],[-21.757219491999933,76.43817318600009],[-21.67778251899989,76.52291104200009],[-21.90721851099994,76.61735380100004],[-22.460557560999973,76.63958746900005],[-22.69195357699988,76.72708766500011],[-21.938056538999945,76.76598472500007],[-21.804988460999937,76.68484857300007],[-21.51557156999985,76.68623644900015],[-21.221376491999877,76.80721698300016],[-21.021127459999946,76.79458160000019],[-20.580566581999904,76.91820092500012],[-19.871103520999895,76.95877671300008],[-19.35916554099998,76.86125109000011],[-18.910839499999952,76.85514822600004],[-18.68750352199993,76.79375799400009],[-18.329994563999946,76.80208960600004],[-18.13111345999988,76.93376628700014],[-18.14471644999992,77.08656234700004],[-18.25888652099991,77.29961959700012],[-18.386123475999966,77.33712911700019],[-18.968885520999947,77.37184444500019],[-19.036397559999898,77.22434340100017],[-19.456100574999937,77.2612874780001],[-19.523050523999927,77.35267838600004],[-20.008316449999825,77.44213173300017],[-20.4480605949999,77.48018976400004],[-20.248046591999923,77.56047180000013],[-20.868894495999882,77.68047483800007],[-20.597780496999917,77.7213257190001],[-19.967491551999956,77.71160472300016],[-19.303335527999934,77.57937869200003],[-18.958335554999962,77.6254788240002],[-19.23999549699994,77.76216134600014],[-19.92946051099989,77.82049888900008],[-20.36221146599985,77.87966104400016],[-20.8544405749999,78.01413074300007],[-21.089151465999976,77.95133687700019],[-21.50695245899982,77.6827024120002],[-22.03945543899988,77.68741823900018],[-21.58970246299998,77.95828078100004],[-21.70693058799992,78.01162757200018],[-21.466669534999937,78.06828756099998],[-21.278888584999947,78.21690406900012],[-21.361961459999918,78.31609266100008],[-21.07639353899998,78.54970468500017],[-20.903882571999816,78.62914853100011],[-21.120281518999946,78.76889849400015],[-20.664461553999956,78.89085451500017],[-20.158340446999944,78.86250105100004],[-19.92388352699993,78.9738978850001],[-20.091110542999957,79.0628027200001],[-19.568616560999942,79.1930754330001],[-19.191392528999927,79.31643592600011],[-19.691131486999893,79.30863857600013]]],[[[-25.313619605999918,72.84350683400004],[-25.0344465739999,72.78321496600017],[-24.863889596999968,72.87016547700017],[-25.13332755099998,72.88212896700009],[-25.313619605999918,72.84350683400004]]],[[[-22.08000356599996,72.93877236000009],[-22.46833747599993,73.00046819700003],[-23.121952586999953,73.06017919900017],[-23.792503499999953,73.00991409900018],[-24.564722540999924,72.97739466100018],[-24.541391512999894,72.89656377800009],[-23.87611147599995,72.9057355920001],[-23.575544473999912,72.85905576700003],[-23.114707604999865,72.8671127880001],[-22.789442486999917,72.80543338000018],[-22.74415254999991,72.7471105890001],[-22.49500047799995,72.70711482900003],[-21.865837557999896,72.71266934800013],[-22.07444954999994,72.82600357600006],[-21.906660443999954,72.91905711800007],[-22.08000356599996,72.93877236000009]]],[[[-23.480281461999937,73.29658256400018],[-23.850009558999943,73.36075089400015],[-24.446947580999847,73.41631117800017],[-25.243057559999954,73.40465245300015],[-25.285013511999978,73.33131381800007],[-25.70750954399989,73.17908353600006],[-25.493045475999963,73.12573523700019],[-25.02862752199991,73.11157401200006],[-24.899450491999914,73.0760186490001],[-24.386934494999878,73.02241134900004],[-23.009164523999914,73.09379582700018],[-23.268320564999954,73.25658747400013],[-23.480281461999937,73.29658256400018]]],[[[-20.463617574999944,74.31358486100015],[-20.537494495999965,74.40166307300007],[-21.05777146399987,74.45166984300016],[-21.34639358299995,74.44526120700016],[-21.84139659899995,74.34942889600018],[-21.968059560999848,74.20969620000005],[-21.396110506999946,74.12773627400009],[-21.283054557999947,74.0802467580001],[-20.780839585999956,74.10829445000013],[-20.142505522999897,74.17719335900006],[-20.463617574999944,74.31358486100015]]],[[[-19.113883560999966,74.54693687800011],[-18.736114536999935,74.56250173700016],[-18.866661505999843,74.67389773300016],[-19.217781441999932,74.58610836100013],[-19.113883560999966,74.54693687800011]]],[[[-19.959440566999945,74.74918985500017],[-19.743049497999948,74.84613477900007],[-19.98443053999995,74.91697024300015],[-19.993049483999982,75.00781263900018],[-20.295297559999938,75.04864675699997],[-20.613626484999884,74.97808622000002],[-20.540817585999832,74.92696583000003],[-20.68444853699998,74.80528423300018],[-20.450822599999924,74.73000870700008],[-20.084432512999967,74.70168558600011],[-19.959440566999945,74.74918985500017]]],[[[-18.041097518999948,75.22892657500017],[-17.808345478999968,75.30504247000005],[-18.134166483999934,75.33089209200011],[-18.38223058499983,75.30476771100012],[-18.552509450999935,75.37255216200003],[-18.797220455999877,75.32866434900006],[-18.903322441999876,74.99835047600004],[-18.453035538999927,74.97808622000002],[-18.05860345899987,75.03087008100016],[-17.495819512999958,74.97669717100013],[-17.4005605239999,75.01004021400018],[-17.41444045299994,75.16031835000013],[-17.875007592999964,75.09920337900007],[-18.041097518999948,75.22892657500017]]],[[[-18.704175462999956,76.3806745030002],[-18.650562462999915,76.6187428500001],[-18.984661435999897,76.61003656700012],[-19.128892531999952,76.49455858400006],[-18.88611255099994,76.27733536000011],[-18.704175462999956,76.3806745030002]]],[[[-18.091377538999893,77.66353668800014],[-17.732768539999938,77.70771317300006],[-17.584167454999942,77.83688785700019],[-17.94832443499996,77.81299138600014],[-18.091377538999893,77.66353668800014]]],[[[-19.349445550999917,77.8916101170002],[-19.69888843599989,77.88384260800007],[-20.13389546399992,77.97161722700002],[-20.490837469999974,77.95383904300007],[-19.775829444999943,77.8296698650002],[-19.281118454999955,77.80104298300017],[-19.349445550999917,77.8916101170002]]],[[[-19.241380522999975,78.79332838900007],[-19.407217482999897,78.92473031200007],[-19.745828601999904,78.80639141700004],[-19.529741461999834,78.7294514130001],[-19.241380522999975,78.79332838900007]]],[[[-18.09806646499993,78.99140147800017],[-17.60720444499998,79.08697428500017],[-17.571386560999827,79.17529791900017],[-17.786094542999933,79.23169790200012],[-18.085287582999968,79.09530572900013],[-18.09806646499993,78.99140147800017]]],[[[-19.416654499999936,80.23288220700016],[-19.789442493999957,80.23565879600011],[-19.940826538999943,80.05620392500009],[-19.01890151099991,80.16288526800014],[-19.416654499999936,80.23288220700016]]],[[[-31.435272522999924,83.57479645900008],[-33.019153493999966,83.6225598960001],[-34.08140951899992,83.56590024200005],[-34.813323506999836,83.59646418200009],[-35.199462531999984,83.5345098470001],[-36.53113153299989,83.54339097700006],[-37.21002160199993,83.449222809],[-37.95053056199998,83.48700591400006],[-38.07580950399995,83.39199737700005],[-38.79918250099996,83.43283250000019],[-38.85084553499996,83.26032019200005],[-38.70943846899996,83.2100391670001],[-37.798866560999954,83.17753565500016],[-37.82721751099996,83.12197403000005],[-39.44694855199998,82.95724381600002],[-40.55333747599997,82.96696397400012],[-41.569454476999965,83.13003071600019],[-41.97694354999987,83.22087344700014],[-42.65109650199997,83.27199417200012],[-43.231948478999925,83.20892487600014],[-44.26471361599994,83.162534898],[-45.13581447099989,83.1597568000002],[-45.48220047599989,83.10253287600017],[-46.49667747299992,83.04836030100012],[-46.88999157399991,82.96058517800009],[-46.04556260499993,82.84584631100006],[-43.800266492999924,82.8369641760001],[-42.66805661299992,82.85417842600015],[-41.603881467999884,82.82169016900008],[-40.723331524999935,82.74027875500002],[-40.13528452299994,82.71389336200014],[-39.86860253799995,82.62888058000016],[-40.011966609999945,82.55943332700014],[-40.605846578999945,82.56999368700014],[-41.379741496999884,82.72167696500014],[-42.57194853699997,82.77974042000005],[-44.21585449599985,82.76196307400016],[-45.60778451899989,82.78167831600018],[-45.66972359899995,82.72445305200006],[-44.57609159599997,82.55192498600019],[-44.43830852999997,82.48971064500017],[-43.73029352699996,82.40608691099999],[-43.83028460299994,82.33525027400015],[-44.70861049099989,82.25220573000013],[-44.793884620999904,82.18301764500006],[-44.51721559899994,82.11022886300003],[-44.92526659499998,81.98911086499999],[-44.522792581999965,81.93744045500011],[-44.289154574999884,81.80799084500012],[-45.134445537999966,81.78105727600018],[-45.95331959299995,81.96383959400009],[-46.39276550999995,82.09718075400019],[-47.60278359199998,82.17550980700003],[-47.942230553999934,82.28275692900007],[-48.76364147599992,82.3605361290002],[-49.12084952299989,82.46109885000004],[-49.61029047599993,82.50277350500005],[-51.10226052499996,82.50197320100011],[-50.67695957199993,82.17662443200015],[-50.11446362799995,82.0377284180002],[-49.43721356299994,81.92382874700007],[-49.82054850499992,81.86965583600016],[-51.0655554999999,81.93161201500016],[-51.91029761699997,81.92327872700008],[-52.76248554599994,82.03135012500007],[-53.02806849499996,82.01134436600012],[-52.930835568999896,81.86243750900007],[-53.5405575019999,81.675474129],[-53.81945761899982,81.69714252200009],[-53.581935604999956,81.80660313700008],[-53.49998456399993,81.944108594],[-53.568351557999904,82.12162724500007],[-54.07166657099992,82.31358070700014],[-54.501121594999915,82.36487024300015],[-55.34196461799996,82.29830569400008],[-57.07694246999995,82.18634341700005],[-58.589706511999964,82.10273644700004],[-59.373886527999844,82.01273240900014],[-59.41001152499996,81.97606258800016],[-58.468891603999964,81.86605480300005],[-58.3366585309999,81.75021639800013],[-57.81362156999995,81.65159291400005],[-58.43027852299997,81.64104747300013],[-58.748050553999974,81.70799323100005],[-58.84001159899992,81.85549477800015],[-60.06248854099988,81.944108594],[-61.21805157699998,81.8174528400001],[-61.453323552999905,81.73604058800015],[-60.7791675819999,81.50686678200009],[-61.30832249499991,81.35935081800011],[-61.0950166369999,81.22350682200005],[-60.45415459299994,81.32237656700016],[-59.81946950799994,81.32683171600013],[-59.293102583999826,81.42877527200011],[-58.9461746049999,81.36799507500007],[-58.205589537999856,81.36420327000013],[-56.9577715879999,81.24143722200017],[-56.04206458999994,81.26002342200002],[-55.73276548999996,81.20088507100013],[-55.258789483999976,81.22099711300012],[-54.19600657299992,81.20465391000016],[-53.33470147999998,81.30057691300016],[-52.81119949099991,81.26156502100014],[-52.462985560999925,81.17974171999998],[-52.10220346999989,81.181359595],[-51.31196249899995,81.2476031170001],[-50.77861059999998,81.2426888080002],[-49.829891476999876,81.34259589700014],[-49.82715260699996,81.43215485600012],[-50.15162261699993,81.57935934800014],[-49.328231553999956,81.64342776600017],[-48.56212258599987,81.37419064300008],[-47.959823497999935,81.3321956310001],[-46.74196649399988,81.39477676400008],[-46.065002585999935,81.34335060300009],[-45.18662657399983,81.41805498600002],[-45.0050735449999,81.46316270100004],[-44.91611858599998,81.60805512900004],[-43.994762520999984,81.71466070000002],[-43.88095454899991,81.78935804200006],[-43.263736510999934,81.85969830300007],[-43.13276256899991,81.98933197899999],[-41.957309611999904,82.19377581800012],[-42.38914459299991,82.30346458800005],[-42.05978055799994,82.35250207500019],[-41.24967950599995,82.26595540400018],[-39.8566554759999,82.22582167800005],[-38.77475361199993,82.10171335200005],[-38.57946750499991,81.97195830600003],[-38.025440467999886,81.92343865300012],[-37.6146314909999,81.95616478800014],[-37.7108074599999,82.04477843600012],[-36.84102658699993,82.07233813400012],[-36.688529592999885,82.00488879200014],[-37.12280655799998,81.94223305900016],[-37.32545448999997,81.80127593499998],[-36.47391146499996,81.75582439400011],[-35.09853352099992,81.8363813570001],[-34.85094048299993,81.78316314500006],[-35.86284658299985,81.731378238],[-36.20028356499995,81.65169148500007],[-36.14278052399993,81.53544119300011],[-35.69183346199998,81.48783952700006],[-34.84484046899996,81.5190300970001],[-34.29314058399996,81.61727270800003],[-34.00239951999998,81.72139019500003],[-33.620998449999945,81.7602507100001],[-32.61523460899991,81.44067724000007],[-31.775741574999927,81.38800133700005],[-30.874896529999887,81.35518484500011],[-29.88182255499993,81.36920827200004],[-27.80546956899991,81.47781326200015],[-27.35688251499994,81.43861026200011],[-28.80859545699991,81.27524613100002],[-29.62138760299996,81.12417976100011],[-29.92992059799991,81.02416689200004],[-29.74664659699988,80.79774134400003],[-29.45298745699995,80.75731844300003],[-29.223800574999927,80.64061737200018],[-28.518562495999902,80.59418950800011],[-28.013650562999942,80.61796511100005],[-26.955667463999816,80.4981893910001],[-27.49270857399995,80.35103938100013],[-26.27413944299991,80.30678511200006],[-25.590629603999957,80.168249184],[-25.42337744299988,80.02728602400003],[-25.06709660199988,79.87434361600015],[-24.988731506999898,79.78727223800018],[-24.32863450299982,79.62856894800018],[-23.861579601999892,79.58964875400011],[-23.262174450999964,79.58592534500013],[-21.544301548999954,79.64678215300017],[-21.171565522999913,79.69581176000014],[-20.862409584999966,79.789292612],[-20.46528657999994,79.98896899200014],[-20.043334532999893,80.23481993500008],[-19.597490540999956,80.28539131000008],[-19.08222159199994,80.24037428700007],[-18.31141255599988,80.210663458],[-17.428598492999924,80.22566471699997],[-16.90861556199991,80.25983052800007],[-16.617790511999885,80.32567758600004],[-16.607797438999967,80.40289234900007],[-16.125270550999915,80.4967865960001],[-16.21276454499997,80.53789681400019],[-17.04001446799998,80.56539431800019],[-17.53303750999993,80.62568719100005],[-17.86137543299992,80.56902619600015],[-18.547759593999956,80.5442903620002],[-18.891111517999946,80.58402645000012],[-20.12692859399982,80.643463531],[-20.05164351299993,80.6870767530001],[-18.67721959799991,80.61874278400018],[-17.996944502999952,80.72541004600004],[-17.06582050399993,80.73958535300011],[-16.638610488999916,80.70569363100003],[-16.004995436999934,80.727911877],[-15.938622498999905,80.81458779600018],[-15.054723482999975,80.867081644],[-14.69666048099998,80.91348754800003],[-15.140264492999961,81.08822894000008],[-14.949737463999952,81.13545777900009],[-13.975005438999972,81.15073329500012],[-13.668888444999936,81.27351325600011],[-13.19888344899988,81.32741174400013],[-13.113349479999954,81.40296269900017],[-12.60390645699988,81.4749134590001],[-12.165838524999856,81.60852887400006],[-12.534985587999927,81.64104747300013],[-13.16917546999997,81.78021824700011],[-13.910282561999963,81.8216181430002],[-14.768066584999872,81.91772471000013],[-15.663048488999948,81.9007862250001],[-15.99946354899987,81.92772012900019],[-16.883073556999875,81.91244444600005],[-17.784187492999877,81.73715437499999],[-18.06525852299984,81.5693716400001],[-17.967491500999927,81.47518771400019],[-18.395578597999872,81.44851348100013],[-18.994691556999953,81.5449109],[-19.49528144599998,81.56157378800009],[-20.305540580999946,81.45046763800013],[-20.19609253899995,81.59632029700009],[-20.76918756699996,81.57993149700013],[-21.448326578999968,81.41379714700008],[-21.759454442999925,81.24517521500013],[-22.090568451999957,81.20434109800004],[-23.032796461999908,80.93848322200017],[-23.579729557999883,80.86209223300011],[-23.90806044099992,80.88266293200013],[-23.005834560999915,81.16100297000014],[-22.231094579999876,81.4651929650002],[-21.973607542999957,81.73243922000006],[-22.031118462999927,81.95079282699999],[-22.301376501999982,82.08384313400012],[-23.514999472999875,82.04856353600013],[-24.03722154499991,82.00246273400012],[-24.21056550599991,81.70771830500018],[-24.922521511999946,81.69325130800019],[-25.135847485999932,81.64243635500009],[-26.54750046299995,81.49269147500007],[-26.9891605439999,81.40685391300008],[-27.5969274819999,81.50409036100018],[-26.865543564999882,81.55852193700008],[-25.317501600999947,81.77548800400012],[-25.238874486999975,81.99577984200016],[-27.370004551999955,82.02411620700019],[-28.997217447999958,81.99384077300004],[-30.782205588999943,81.86826729000006],[-31.71555347499998,81.82383046300009],[-32.41138454399987,81.7332629930001],[-33.05194852799997,81.67854090000003],[-33.049457593999875,81.81827560800014],[-32.77221659099996,81.85993601400008],[-29.240262464999944,82.13607798200019],[-28.010822507999876,82.18552132000019],[-26.163904507999916,82.14357023000014],[-25.068889490999936,82.15190301500007],[-23.696655598999882,82.29496533800011],[-23.04999545599992,82.28940998100006],[-22.518060601999878,82.326369312],[-22.3077544599999,82.42053831800013],[-21.398616527999934,82.55554194500002],[-21.364452560999894,82.62444018300005],[-21.798072552999884,82.6941621950001],[-24.025556450999943,82.86501287400006],[-25.13358655199994,82.89168677200013],[-24.7675285549999,82.98835878200003],[-25.188341501999957,83.16280898600013],[-26.611915556999975,83.0625210230001],[-28.26221053699993,83.07976528000017],[-28.06027758099998,83.13837825300016],[-26.868894481999973,83.14782499300014],[-26.03889244499993,83.20614761700017],[-25.6719474759999,83.27698341600012],[-26.09996248899995,83.36921603400009],[-27.432861449999848,83.4661297780001],[-28.39194144399994,83.46228550200016],[-28.613061581999887,83.5111773110001],[-30.597234587999935,83.59979246800015],[-31.435272522999924,83.57479645900008]]],[[[-18.835557436999864,81.80799084500012],[-19.241668524999966,81.7829953390002],[-18.660001491999935,81.64937992300014],[-18.30584143999988,81.66631790600013],[-18.835557436999864,81.80799084500012]]],[[[-20.76026955699996,82.08800994600006],[-20.245552472999975,81.89967243700016],[-19.753044582999962,81.90272428800017],[-20.19305745199989,82.09162657000019],[-20.76026955699996,82.08800994600006]]],[[[-40.43082858499997,83.17170654400019],[-40.36331151699994,83.08254321100009],[-39.530273553999905,82.99919205700013],[-39.277481556999874,83.08086297400007],[-40.43082858499997,83.17170654400019]]],[[[-38.79942658199991,83.16670120700002],[-39.42859251899995,83.2103139250001],[-39.69388947799996,83.28421666300005],[-40.50889260199989,83.35893026600007],[-40.66221957199991,83.27004085300007],[-40.0841674859999,83.25699274400006],[-39.493076511999845,83.14753464400019],[-38.79942658199991,83.16670120700002]]],[[[32.28268058800006,31.19583017400015],[32.26404158200012,31.110833987000035],[32.15367857200016,31.12072362700013],[32.05068945700009,31.091484531000106],[32.02902961300009,31.21876021100013],[31.868589593000138,31.233340699000053],[31.79549051200013,31.286057841],[31.871530467000127,31.45860317400019],[31.85244956800011,31.508791495000082],[31.585830448000138,31.44065349600004],[31.49836947900019,31.45592314400011],[31.269880474000104,31.560647648000156],[31.112760525999988,31.59954739000017],[31.093160451000188,31.510221280000167],[31.025089507000075,31.512731325000118],[30.979879532000155,31.44321249100011],[30.895759590000125,31.409604747000117],[30.817810573000145,31.425454255000034],[30.652910541999972,31.38883455900003],[30.61226049100003,31.4766814300001],[30.48320047200002,31.450933229000157],[30.37153055500005,31.50367166100017],[30.31325956400019,31.348826729],[30.161899491000156,31.26575955400017],[30.06583952799997,31.327337541000134],[29.826250537000192,31.135444261000032],[29.780010595000192,31.127414565000038],[29.55656045500018,30.97350991500008],[29.348119454000084,30.874722312000188],[29.093280596000113,30.815554290000023],[28.980430508000097,30.8308148860001],[28.710399450000125,31.001296762000095],[28.424119570000073,31.087475970000128],[28.319919605000166,31.06529644800014],[28.157089569000163,31.091715537000027],[27.951160457000128,31.09037476700007],[27.90103952600009,31.11048312100013],[27.87018959599999,31.231570944000055],[27.73027953800016,31.183881435000103],[27.44342952100004,31.214399442],[27.392000510000173,31.25406009300019],[27.344499595000173,31.368106112000135],[27.25869958400017,31.35291659500018],[27.08426044400011,31.380205724000064],[26.97759050000019,31.438703697000108],[26.832359443000144,31.439083733000132],[26.739910571000053,31.478501309000137],[26.515720477000116,31.48922193100003],[26.337810559000104,31.52160977200009],[26.08893944800019,31.592148684000108],[25.915769496000166,31.62185649600002],[25.823640478000073,31.610496838000188],[25.506090567000058,31.513589129000025],[25.385139536000054,31.497739621000107],[25.190450556000144,31.522260040000106],[25.11146955900017,31.747363259000053],[25.036260586000026,31.83790021800013],[25.001579456000172,31.956625351000127],[24.667699586000026,32.02533332000007],[24.599090523000086,31.993634303000192],[24.289140484000086,31.992005196000093],[24.08577958700016,32.02033250900013],[24.00573945200017,32.097150807000105],[23.669330595000076,32.18641891400017],[23.426849512000103,32.178828263000185],[23.260309477000135,32.20822728500008],[23.205110454000078,32.287596868000094],[23.087390479000078,32.36119148700004],[23.154909558999975,32.46782002400016],[23.107980457000167,32.51545655899997],[23.111040522000167,32.63371264000011],[22.490539461000026,32.80798950600007],[22.376480534000052,32.86701570700012],[22.211320495999985,32.87387830600011],[22.115049477000127,32.92778567800019],[21.928199587999984,32.89223785900015],[21.707979499000146,32.936635292000176],[21.631389523000053,32.92328476400007],[21.44054951300012,32.79443982400005],[21.367719492000163,32.77323059200006],[21.07980950000018,32.76253092500019],[20.90007048200016,32.68013229000002],[20.575710443000162,32.55064630300018],[20.37336945600009,32.41956239000001],[20.100530461000062,32.18616008099997],[20.034620538000127,32.062120990000096],[19.953710529999967,31.985694629000136],[19.924949538000078,31.827808742],[19.99361056800018,31.47670037299997],[20.09700955800014,31.323196545000144],[20.17395056800018,31.170121871000106],[20.12783048700004,30.977318651000076],[20.055870507000066,30.845964338000158],[19.90522054900009,30.65331903400005],[19.772710539000173,30.52336466600019],[19.608100522000086,30.409799768000028],[19.579160492000085,30.418388704000108],[19.376480541000035,30.312832548000188],[19.183700456000054,30.26421516200014],[18.95350053800007,30.282023522000088],[18.791009465000116,30.3800599380001],[18.673259484000084,30.40536004200004],[18.51576955800016,30.532874438000135],[18.408819491000088,30.592313363000187],[18.180049525000072,30.785656377000123],[17.90440946500013,30.855113856000116],[17.847019580000165,30.924590613000078],[17.731199448000098,30.938901036000118],[17.457550593000178,31.028778005000106],[17.390069567000182,31.079234045000078],[17.302219510000043,31.08475587500004],[17.017309568000144,31.163582310000038],[16.75168051900016,31.21882123100005],[16.502729445000114,31.214480243000025],[16.20614049400018,31.243619259000127],[16.03178953200012,31.280358985000134],[15.816760523000085,31.36347544600011],[15.654350588000057,31.458482139000182],[15.521530447000032,31.62452646800017],[15.407879551000178,31.846619074000103],[15.360959501000025,31.99269418900019],[15.36614052300007,32.15787099000016],[15.291110587000105,32.31065581900009],[15.221110464000162,32.379111828000134],[15.104220465000083,32.41377183600002],[14.869930513000043,32.444268720000025],[14.762319449000074,32.43953076500014],[14.643690541000126,32.48912816300009],[14.46006047700007,32.52531719700016],[14.189040522000028,32.7115713],[14.035619508000138,32.72682971700016],[13.948499515000151,32.77172050800016],[13.78913958600009,32.79905959400003],[13.588319579000142,32.79603758300016],[13.38961047100014,32.89843661200007],[13.237299556000153,32.907607252],[12.939860513000042,32.81501907300003],[12.758910478000075,32.790720774000135],[12.549469516000102,32.797929714000134],[12.313389525000048,32.83351642500003],[12.217539445000057,32.87066652800013],[11.891570583000089,33.059869720000165],[11.644780531000151,33.104721452000035],[11.566049482000096,33.16704844600008],[11.204030557000067,33.20663516900015],[11.131850469000142,33.28427405600007],[11.17967056700013,33.33155167800015],[11.100330489000044,33.43897029300007],[11.10746952400018,33.57319440300006],[11.01570059200003,33.638454560000014],[10.923239483000089,33.622303135000095],[10.930879588000096,33.534544609000136],[10.782070464000071,33.47868827700012],[10.70092945000016,33.49970673700011],[10.745610526000121,33.68325348500008],[10.716790525000022,33.71370141900013],[10.492670504000102,33.63607376400006],[10.386219496000024,33.683382399000095],[10.185379540000099,33.82862737000005],[10.074060490000079,33.959955364000166],[10.02414944100019,34.1782383960001],[10.127710537000098,34.3186956240001],[10.331000523000057,34.39741342900015],[10.464850465000154,34.509970655000075],[10.567919543000187,34.527430159000176],[10.658820445000117,34.64081501300018],[10.725830576000078,34.649145787000066],[10.772979451000083,34.74767321500019],[10.924329466000131,34.886520782],[10.92658051,34.959619695000185],[11.009039494000092,35.01765532200017],[11.029509442,35.11377580200008],[11.122509508000064,35.257139204000055],[11.048809445000074,35.325600410000106],[11.062809570000184,35.49610525200006],[11.049880485000017,35.63183307500003],[10.838379586000087,35.70127060500005],[10.807390517000101,35.78882746300019],[10.728750494999986,35.77113879700016],[10.655289484000093,35.8159868410001],[10.48948051900004,36.046851276000154],[10.487890472,36.26327637500003],[10.546460530000047,36.37160409200004],[10.818920494999986,36.46360101100015],[10.919810446000156,36.65125707200019],[11.038490484000079,36.79708592600002],[11.12226945000009,36.840905175000046],[11.098059497000065,36.96126360500011],[11.034640508,37.07847915600007],[10.917260504000183,37.02431915400007],[10.757379556000103,36.905642636000096],[10.585709462000182,36.864864677000014],[10.548850545,36.76991464600002],[10.360830543000134,36.72557739500019],[10.28520951600018,36.794243958000095],[10.355190528000037,36.87771212300004],[10.218740520000097,36.972673386999986],[10.191280567000092,37.103819661000045],[10.226840456000104,37.18648601400014],[10.066929502,37.267856357000085],[10.002440480000132,37.24910687700003],[9.868268505000174,37.136778143000186],[9.787354474000097,37.1778162760001],[9.793338481999967,37.23881490600013],[9.877618518000077,37.271796354],[9.865051531000063,37.33310494700004],[9.655833528000187,37.33471511000016],[9.341755568999986,37.2348480870001],[9.19556746600017,37.23160596600019],[9.151994478000063,37.184036989000106],[9.02493454800009,37.13914703600017],[8.886760551000066,37.01075052900018],[8.507755532000033,36.907164622000096],[8.283863498000073,36.91873433100017],[8.236195447000114,36.95348167800006],[8.03523948600008,36.87177253900012],[7.852204537000148,36.84450587300006],[7.764151470000058,36.88037421600012],[7.755253577000019,36.95947054800013],[7.624822447000042,36.96711132300004],[7.506800556000087,37.04280896200015],[7.276988552000034,37.070251313000085],[7.182830442000068,36.92966332700007],[6.917277500000068,36.88401430900012],[6.884019450000039,36.91022753700008],[6.651380565000125,36.92211425000016],[6.373477559000037,36.90490687300007],[6.314178444000163,36.81700250200004],[6.332420483000021,36.73934416900005],[6.261025443000051,36.61277877200007],[6.122698560000174,36.53300065500002],[5.743818431000022,36.376529131000154],[5.532123575000071,36.31779545900008],[5.372816453000041,36.30472673100007],[5.10504348000012,36.33674593600017],[4.995347501000026,36.333632897000086],[4.733812508000028,36.4558573060001],[4.656804443000055,36.60035528200012],[4.699466487000109,36.73081524700012],[4.882434548000049,36.85687672400019],[4.721247532000064,36.885353066000164],[4.156930536000175,36.90958364000005],[3.938889574000086,36.897884012000134],[3.879617449000136,36.92138150400007],[3.716978520000055,36.88342204300017],[3.634641576000149,36.82569637900019],[3.490293469000108,36.77206644800009],[3.222913439000138,36.772676483],[3.143027532000076,36.738867071000186],[3.024406503000137,36.813073568],[2.904886430000033,36.804055982000136],[2.818614518000174,36.70992570000004],[2.612056428000187,36.60371894000008],[2.423908518000189,36.595880184000066],[2.321571515000073,36.63957722500004],[2.102200513000071,36.582609452000156],[1.649618477000104,36.557039954000174],[1.511687555000037,36.53028072800015],[1.352905475000057,36.553592142000184],[1.292740509000055,36.51111198600006],[1.178462479000018,36.51379017100004],[0.939580418000105,36.44774328900007],[0.901283502000069,36.39163482900017],[0.634112517,36.30945647100003],[0.339333555000167,36.196109],[0.127453460000083,36.04276141100007],[0.036420459000169,35.8731943360001],[-0.107936532999929,35.792897380000056],[-0.277515509999944,35.824825725000096],[-0.337568493999925,35.910264476000066],[-0.47975155599994,35.87399531000011],[-0.511827422999943,35.786847322000085],[-0.649079578999874,35.71611998499998],[-0.828376534999904,35.771496704000015],[-0.946042529999886,35.727720706000184],[-1.18004548499988,35.58681320200003],[-1.258502445999909,35.397368779000146],[-1.382006436999916,35.31145997200019],[-1.555642422999824,35.268900020000046],[-1.764070514999901,35.129224488000034],[-2.008477423999921,35.07461488000013],[-2.20625949399988,35.08896536900011],[-2.426218570999879,35.15986352900018],[-2.53341053999992,35.09939430100002],[-2.739527573999965,35.131421553],[-2.813015574999895,35.114164723000044],[-2.897480515999916,35.15255484500011],[-2.967689515999894,35.37745639499997],[-3.09676043199994,35.28103064600009],[-3.338069556999926,35.19365282500013],[-3.598858560999872,35.23908173500013],[-3.699511471999926,35.29509145600014],[-3.796269479999921,35.21065149300006],[-3.884491524999873,35.212051438000174],[-3.920814502999917,35.26891896300009],[-4.109464488999947,35.21255032900012],[-4.276884455999948,35.18788205300012],[-4.359648540999956,35.15116277900006],[-4.713944547999972,35.217750126000055],[-4.910295490999886,35.31436983300017],[-5.056753491999928,35.41091745500012],[-5.170977541999946,35.536063293000154],[-5.234484539999869,35.55541509600005],[-5.274114513999905,35.670330151000144],[-5.334815585999877,35.74500854900015],[-5.356255488999864,35.92209435900003],[-5.453889572999969,35.91912632700013],[-5.587495433999948,35.839595309],[-5.718348508999895,35.839168167000025],[-5.777853483999934,35.79063946300005],[-5.89860351599998,35.81096675100008],[-6.019570472999931,35.5047340860001],[-6.079829482999912,35.39839891500014],[-6.149172465999925,35.21139144699998],[-6.378550454999981,34.720746015000145],[-6.562470532999953,34.41468199400015],[-6.725722513999926,34.163948927000035],[-6.831129472999919,34.04217127300012],[-6.9632624649999,33.92681432500018],[-7.127295471999957,33.83225807500014],[-7.217373438999914,33.80967991000011],[-7.585505452999939,33.612954463],[-7.652565539999955,33.62023615800007],[-7.77923252599993,33.55189816600006],[-8.121005465999929,33.42558892000005],[-8.299647459999903,33.378170314000045],[-8.452890442999944,33.260844792000114],[-8.515005542999916,33.26282476500006],[-8.60639343299988,33.19129779400009],[-8.70684752499983,33.03213048200007],[-8.904625571999816,32.84784713200008],[-9.113357591999943,32.67197267500018],[-9.274614512999904,32.55277832400009],[-9.23393445399995,32.458768407000036],[-9.285012430999927,32.378520904000084],[-9.242701589999967,32.30599397200007],[-9.254340532999947,32.200578464000046],[-9.324846587999957,32.072080535000055],[-9.675947580999946,31.69753401800017],[-9.681080490999818,31.619537726000033],[-9.83784856699998,31.41051451900006],[-9.799327518999974,31.314327821000177],[-9.841892499999915,31.14042395000007],[-9.808705527999905,30.81645517700008],[-9.894314430999941,30.642041518000042],[-9.792672455999934,30.607422749000136],[-9.701638448999915,30.531934491000072],[-9.663412444999892,30.44043864200006],[-9.603179585999953,30.39404061700003],[-9.646635562999904,30.156279216000087],[-9.791988492999906,29.861860173000082],[-9.967676535999942,29.69299566900014],[-10.051830508999899,29.58671062200017],[-10.083370436999871,29.498782948999974],[-10.222149439999953,29.30676042000016],[-10.325969536999878,29.229603325000085],[-10.435159583999848,29.09577953500002],[-10.635709525999914,28.950604301000112],[-11.038869513999941,28.75994198799998],[-11.30914046099997,28.522701606000112],[-11.450019466999834,28.34185986500006],[-11.567680432999907,28.27678276900008],[-11.698599557999955,28.24112397400006],[-12.054920464999896,28.08953021399998],[-12.554610472999912,27.992204416000163],[-12.911700502999963,27.950655992000065],[-12.95800045999988,27.918547436000097],[-13.045530495999913,27.752794629999983],[-13.156439502999945,27.69301707500017],[-13.299019531999932,27.32316190900002],[-13.40359953199993,27.175968313000055],[-13.416069456999878,27.088691914000094],[-13.52826944599991,26.803874508999968],[-13.620200483999895,26.683889744],[-13.757120547999818,26.59734391100011],[-14.042739430999973,26.442571566000026],[-14.184860466999908,26.421891735000088],[-14.304940449999947,26.292018503],[-14.396519447999935,26.26240993300013],[-14.49318944599986,26.144554340000127],[-14.492239440999924,26.00272080299999],[-14.534059438999975,25.90654500200003],[-14.627389583999957,25.782441872999982],[-14.689229588999922,25.569410942000104],[-14.785619463999979,25.428197331000092],[-14.842840537999905,25.21038787700013],[-14.828129458999967,24.92086252400003],[-14.898110471999928,24.69100374900006],[-14.989290490999906,24.62271604900019],[-15.038140557999952,24.537140170000043],[-15.135919481999963,24.510152453000046],[-15.407839485999943,24.253325408000023],[-15.59169954899994,24.05066423200003],[-15.76239952199984,23.9488794290001],[-15.712340449999942,23.89420209500014],[-15.747260463999908,23.77134937900007],[-15.901989558999958,23.562989012000116],[-16.01395049499996,23.36408997000018],[-16.186859434999974,23.125782236000077],[-16.14579045599993,22.991209272000162],[-16.212810477999938,22.915252130000056],[-16.286649512999873,22.890033665000033],[-16.333639467999944,22.75488167900005],[-16.359790502999886,22.572491298000102],[-16.424560485999905,22.51958187600019],[-16.499620596999932,22.315964828000176],[-16.61354055199996,22.265897373000143],[-16.6982705289999,22.279585692000182],[-16.80891952999997,22.161440922000168],[-16.91589943599996,21.86871787300015],[-16.953039481999838,21.83219959700017],[-16.99113053799988,21.486389430000145],[-17.01332045299995,21.428181806000055],[-17.06518951399994,20.987956036000185],[-17.102170470999965,20.84733469100013],[-17.02790043799996,20.84237394500002],[-16.980489543999965,21.11268914900006],[-16.945869433999974,21.12857905800007],[-16.923940530999914,21.258671895000077],[-16.856000511999923,21.233233489999975],[-16.86235047399998,21.166446988000132],[-16.807680516999937,21.108680420000155],[-16.85816052899986,21.033434567000143],[-16.77964053599993,20.93372009400008],[-16.755130509999958,20.84603398700017],[-16.690170592999948,20.749339346000056],[-16.680219596999848,20.682654098000057],[-16.5394594469999,20.56214093800014],[-16.526399435999963,20.736621148999973],[-16.384559528999944,20.536962036000148],[-16.30282055099991,20.331753768000112],[-16.23247945199995,20.281696706000105],[-16.199510575999966,20.203030031000026],[-16.25173955599996,20.123815681000053],[-16.232650441999965,19.97912274200013],[-16.30731056899998,19.906307976000107],[-16.24745958899996,19.780294276000177],[-16.34193956299987,19.65872147500005],[-16.43910945799996,19.469113438000022],[-16.348550537999927,19.43959522400013],[-16.51045051799997,19.352070218000165],[-16.470169438999903,19.259845478000102],[-16.347520569999972,19.186168885000086],[-16.260400576999814,19.07898613600014],[-16.178829570999937,18.895766114000025],[-16.135219534999976,18.658700076000173],[-16.055719529999863,18.454103351000185],[-16.024040461999903,17.993000943000084],[-16.044349478999948,17.741986077000035],[-16.10017949199994,17.45648353500013],[-16.175550460999887,17.25416946400003],[-16.353279439999937,16.84428156400014],[-16.4361804859999,16.623834157000147],[-16.448190579999903,16.486513773000127],[-16.5102295719999,16.30696519200012],[-16.50613048599996,15.999634498000034],[-16.53722000099998,15.775830269000096],[-16.612659445999896,15.633646909999982],[-16.75915952299988,15.422780186000182],[-16.865219431999947,15.24653156100004],[-17.128900527999974,14.919962890000079],[-17.29674947999996,14.827449645000058],[-17.45837051099994,14.76619285300012],[-17.423120583999946,14.71799707700012],[-17.346059545999935,14.735595720999981],[-17.23119947699996,14.687927838000064],[-17.15847054099993,14.621502093000117],[-17.06092044299993,14.451854384000114],[-17.01115959799995,14.433234489000029],[-16.93654054299992,14.331952097],[-16.873640562999924,14.180291281999985],[-16.796037549999937,14.084679416000029],[-16.703380471999935,14.07759704300014],[-16.45551854199988,14.195324057999983],[-16.414207493999925,14.164343202999987],[-16.503097577999938,14.046349811000027],[-16.531396838999967,13.868333665000137],[-16.62409956999994,13.781428529000095],[-16.648529464999967,13.705573646000119],[-16.54073953099993,13.550222782000048],[-16.55610288899993,13.497717255000055],[-16.36311744799991,13.42205325600014],[-16.147615531999918,13.50310894200004],[-15.99481947199996,13.411972006000155],[-16.145637569999963,13.333089412000106],[-16.214836550999962,13.255988476000141],[-16.361141497999938,13.230288387000087],[-16.53314753899997,13.24214928300006],[-16.628047446999915,13.30343524500006],[-16.732719479999957,13.450629343000116],[-16.824289592999833,13.328647506000095],[-16.794160506999958,13.22870437500012],[-16.78226055099998,13.07667458900005],[-16.748880459999896,13.037037239000142],[-16.791479470999832,12.792424805999985],[-16.772199584999953,12.572178565000115],[-16.67483296699993,12.558407014000124],[-16.513179498999932,12.443827320000139],[-16.39089054899989,12.334704831000067],[-16.304750567999918,12.33170478000011],[-16.20352953099996,12.420768704000068],[-16.071159498999975,12.42641844200017],[-16.018609491999882,12.388331074000064],[-15.996190582999873,12.299908198000026],[-16.03158953999997,12.239691097000048],[-16.152490446999877,12.13638816300005],[-16.023349457999927,12.009637862000034],[-15.881030441999883,12.130889635000187],[-15.685059533999947,12.170955803000084],[-15.24722947999993,12.104311458000154],[-15.241379581999979,11.99241808000005],[-15.206669450999982,11.969179588000031],[-14.963199470999939,12.033795345000158],[-14.880169510999963,12.03345604500015],[-14.84805944599998,11.913813430000062],[-14.904499493999936,11.875925886000118],[-15.038800548999859,11.85656838400007],[-15.28411052499996,11.784632376000104],[-15.284079511999892,11.747134926000115],[-15.12559046299998,11.77184427400016],[-15.026679478999881,11.719236599999988],[-14.925180498999907,11.58839559400019],[-15.005829494999944,11.559738538000147],[-15.150340546999928,11.558037849000016],[-15.169799469999873,11.520020554000155],[-15.072999551999942,11.427517703000092],[-14.995670460999975,11.439766849000023],[-14.999540552999974,11.321345141000165],[-14.885589584999934,11.387429575],[-14.802029553999887,11.313144622000095],[-14.75104059299997,11.088190267000073],[-14.68251953999993,11.121588966000104],[-14.62716058999996,11.197352653000166],[-14.569370552999885,11.12616749600005],[-14.60848051299996,10.94079131400008],[-14.362750436999875,11.006727052000087],[-14.284749450999925,11.00175608100011],[-14.223730536999938,10.947931019000066],[-14.227390578999916,10.886254293000036],[-14.367810591999955,10.767352637999977],[-14.497839558999942,10.557887201000028],[-14.552129480999952,10.417447072000073],[-14.46345045399994,10.338523407000082],[-14.471150572999875,10.254808310999977],[-14.317090521999944,10.19705247200011],[-14.137599440999907,10.046332944000085],[-14.078619508999907,10.065041520000136],[-14.032739485999912,9.995554536999975],[-13.878179537999927,9.905385878],[-13.82666050499995,9.845578149000175],[-13.717709509999963,9.874726888000112],[-13.69289957999996,9.93308706199997],[-13.594710444999976,10.015296266000178],[-13.550860518999968,9.999646079000115],[-13.453060472999937,9.846645164999984],[-13.451435556999968,9.740754403000096],[-13.372534522999956,9.732221122000055],[-13.173868497999877,9.638803638000127],[-12.904731453999943,9.46582680500012],[-12.638825465999957,9.3272286830001],[-12.239845532999936,9.060873760000106],[-11.997127577999947,8.852465449000022],[-11.825662504999912,8.68476636500003],[-11.754996522999875,8.648425115000123],[-11.636852591999968,8.634588102],[-11.519827476999922,8.70258126200008],[-11.407070426999894,8.93633058100005],[-11.33822952099996,9.165774285000055],[-11.225230569999951,9.330352618],[-11.119007548999832,9.384159743000055],[-10.980388471999902,9.39115209400012],[-10.744183590999967,9.3493661280001],[-10.570587502999956,9.304340219999972],[-10.482567460999917,9.195849056000043],[-10.09461459299996,8.637586979000105],[-9.898488451999867,8.410646950000057],[-9.66689847799995,8.558608496000147],[-9.5456904589999,8.622416740000176],[-9.437308426999948,8.651925901000084],[-9.394556529999875,8.706343060000108],[-9.357707503999904,8.84563201900005],[-9.451747428999909,8.85451432200017],[-9.676959443999976,8.924210348999964],[-9.721634484999981,9.027009195000062],[-9.714920580999944,9.09611111400011],[-9.625506460999873,9.14104800600012],[-9.487113527999952,9.14101196300004],[-9.536904547999939,9.206611252000187],[-9.534811585999876,9.27667625099997],[-9.415894507999951,9.286977443000183],[-9.359119519999979,9.24269283100017],[-9.296470492999958,9.127199089999976],[-9.214260450999973,9.11445390299997],[-9.23420351399983,9.279600027000129],[-9.091124425999965,9.334742053000014],[-9.114941435999981,9.13453241700006],[-9.046071528999846,8.965685515000075],[-9.086887541999943,8.76136204100004],[-9.037912583999969,8.70842378400016],[-9.012168574999919,8.55462575100006],[-8.940340525999886,8.525396881000177],[-8.889683487999946,8.71546726500003],[-8.904140426999902,8.859413879000101],[-8.936432546999924,8.921175598000161],[-8.973025589999963,9.152582007000092],[-8.94801952299997,9.280042927000181],[-8.862925435999898,9.375482294000165],[-8.912603466999883,9.111776053000085],[-8.907039559999873,9.001301898000122],[-8.867416458999969,8.929306882000049],[-8.86537747799997,8.669622613000058],[-8.825425470999903,8.549498038000081],[-8.852480577999927,8.49842492300013],[-8.73742856399997,8.454227986000149],[-8.719144447999952,8.399991875000126],[-8.592021486999897,8.315781744000049],[-8.162296564999963,7.957460579000099],[-7.96967657499988,7.83333867500005],[-7.560275588999957,7.667294514000105],[-7.532002423999927,7.812245113000188],[-7.416940518999979,7.787293863],[-7.358716465999976,7.816403878000131],[-7.240882497999962,7.751253356000063],[-7.282471489999978,7.670854141000177],[-7.475164570999937,7.587683365000032],[-7.463328485999966,7.490853105000156],[-7.392522525999937,7.522179127000015],[-7.192718573999912,7.655516264000084],[-6.867346502999908,7.839562070000113],[-6.887896582999929,7.944500480999977],[-6.64970049599998,7.973324337000122],[-6.700633465999886,7.819016517000023],[-6.564864571999976,7.800167796000039],[-6.514922510999952,7.734272793000116],[-6.558864469999946,7.631288037000104],[-6.461643445999812,7.618035913000028],[-6.454854439999963,7.451604005000036],[-6.367269585999964,7.122343067000145],[-6.258336528999962,7.133234009000091],[-6.256256474999873,7.189840186000083],[-6.363028510999868,7.523619809000024],[-6.275671477999936,7.567055837000055],[-6.204659490999916,7.541811556000027],[-6.124720441999955,7.428943697000079],[-6.069753429999935,7.261934779000114],[-6.121409422999875,7.136064075000149],[-6.09033452299991,7.064739108000026],[-5.929119510999953,7.087262623000129],[-5.852408500999957,7.048098180000181],[-5.700170507999871,6.884745281000164],[-5.566891541999951,6.929149920999976],[-5.553917528999932,7.051889147000054],[-5.410555468999974,6.935041394000109],[-5.323113442999841,6.994588278000151],[-5.267226432999962,6.975656576000119],[-5.159267519999958,6.826411593000159],[-5.02731155399988,6.683696783000187],[-5.020127424999941,6.566426246000105],[-4.964557585999898,6.301289717000145],[-4.794613492999929,6.1068300660001],[-4.746907555999883,6.452244608000058],[-4.719317514999886,6.520370706000108],[-4.55185245399997,6.55351828300013],[-4.505845528999885,6.59962411500004],[-4.531040523999877,6.722849826000129],[-4.45400144599995,6.796379737000052],[-4.2840845099999,6.88217136600008],[-4.279777552999974,6.947673592000115],[-4.408240445999979,7.11385353999998],[-4.260980464999818,7.24804881600005],[-4.22728253199989,7.317277804000071],[-4.233306437999943,7.509120960000075],[-4.325473509999824,7.745987677000073],[-4.268977470999971,7.98219993400005],[-4.212750490999838,8.036804010000026],[-4.032803434999948,8.069786464000174],[-3.855459462999931,7.994375822000109],[-3.714767540999958,7.985798452999973],[-3.688338561999956,7.927394860000163],[-3.532318486999941,7.893741351000187],[-3.412625579999883,7.79284033600004],[-3.358747544999972,7.616430108000088],[-3.301059430999885,7.584137652000038],[-3.220007432999978,7.722454478000031],[-3.146559497999874,7.805332557000042],[-2.777340517999903,8.02708670200019],[-2.667942432999951,8.054285475000086],[-2.526774418999935,8.018539340000132],[-2.389225543999942,7.953876813000079],[-2.277813454999944,7.853756991000125],[-2.104943574999936,7.657853138000178],[-1.625123537999968,7.295082524000179],[-1.401775490999967,7.169952445000092],[-0.988799455999924,6.999141830000156],[-0.700087482999947,6.850389703000076],[-0.69888853599997,6.798662297000078],[-0.603055553999923,6.705613281000069],[-0.559444511999914,6.726167719000102],[-0.417499495999891,6.674227579999979],[-0.371388467999907,6.612287159000061],[-0.277996463999955,6.602417636000155],[-0.162499537999963,6.508128601000124],[-0.035277502999975,6.432856260000051],[-0.008194483999944,6.330780019000031],[0.074722571000109,6.470631486000116],[0.11111143100004,6.432856260000051],[0.06611150700013,6.275367508000045],[0.117537501000072,5.986254880000047],[-0.151075506999916,5.746648287000028],[-0.417264467999928,5.53476685000004],[-0.551497461999816,5.451025100000038],[-0.822108546999914,5.334169635000023],[-1.25904542599983,5.203217317000053],[-1.36173245699996,5.148314175000166],[-1.328248429999974,5.093852256000162],[-1.246983531999945,5.100162991000161],[-1.092568422999932,5.192134932000101],[-0.809011487999953,5.213184574000081],[-0.724099455999863,5.297935170000187],[-0.495813461999944,5.378294320000066],[-0.466799503999937,5.428550535000056],[-0.33493557099996,5.50488016900016],[-0.212782574999892,5.5305331510001],[0.023361454000167,5.63722120000017],[0.069418503000179,5.688875683999981],[0.549066542000048,5.894800437000072],[0.44658654400007,5.998768726000037],[0.526319566000041,6.050098160000118],[0.7864054960001,6.006699348000041],[1.003633581000031,6.062516285000072],[1.106220532000066,6.069169840000029],[1.434465584000122,6.182387391000134],[1.870625459000109,6.278036306000047],[2.327578490000178,6.338709048000169],[2.580795449999982,6.352603058000113],[2.844388535000121,6.38779732800009],[2.915324582000039,6.450372928999968],[2.772845471000153,6.475447057],[2.578694442000085,6.484954315000095],[2.565650524000148,6.61404601800001],[2.635752572000058,6.840199321000171],[2.762130549000176,7.031636457000161],[2.828634581000131,7.07847503500011],[2.929399474000036,7.099181521000105],[3.09760650100003,7.068909775000066],[3.227725490000068,6.98486996400004],[3.303335453000045,7.003164641000183],[3.332751575000145,7.065123167000081],[3.362405575000025,7.234989643000176],[3.441222455,7.381142206999982],[3.645900484000151,7.607482929000128],[3.729172513000094,7.679023646000132],[3.845288526000047,7.732915931000093],[3.989375453000093,7.76760242600011],[4.41727647200014,7.956151661000149],[4.643377473000044,8.085962196000082],[4.933845454000163,8.175941759000068],[5.078172439000184,8.178027679000138],[5.188559422000026,8.150439819000155],[5.404201483000179,8.027842415000066],[5.53667444600012,7.899911606000103],[5.548971536000067,7.794262410000101],[5.524579527000071,7.631909974000166],[5.518802552000011,7.409391232000075],[5.619608516000028,7.238256406000062],[5.796910579000155,7.136524912000027],[5.899371466000048,7.008116334000022],[5.954064558000084,6.991041392000113],[6.101597454000057,7.013552837000134],[6.196564584000157,7.004337437000061],[6.357419509000067,6.918593585000167],[6.557504423000069,6.675920556000108],[6.62358650900012,6.568080163000047],[6.699209549000159,6.320073395000179],[6.76850257500007,6.293138316000125],[7.114558500000044,6.417639083000154],[7.18774257299998,6.36623505],[7.26183055100006,6.148529028999974],[7.361153589000082,6.054285927000137],[7.574349475000076,5.969293931000095],[7.799216492000028,5.921227405000138],[7.890094427000065,5.931313684000088],[8.191458548000071,6.141512538000029],[8.413106578000168,6.202770001000147],[8.642021551000028,6.007590177000111],[8.724781445000076,6.258730771000103],[8.70628543500004,6.326371892000054],[8.584559581000178,6.432304061000139],[8.549212425000121,6.522613703000104],[8.574382442000058,6.569719999000029],[8.998478580000096,6.570033147000174],[9.217863496000064,6.486670258000061],[9.372847568000111,6.527184355000145],[9.413658552000186,6.637519202000135],[9.520906512000124,6.633614409000074],[9.550865446000046,6.580652180000129],[9.55467451800007,6.419109101000117],[9.6846154750001,6.250017615],[9.815670554000178,6.209691273000089],[9.891278506,6.212842031000037],[9.94168459000008,6.260094842000058],[10.033045490000063,6.238043227999981],[10.075602592000166,6.122746630000051],[10.136432578000097,6.118692136000163],[10.221593553,6.167351431000043],[10.185096567000016,6.228177226000128],[10.083713592000151,6.297112177000031],[10.148598575000165,6.374157290000028],[10.172930570000176,6.455257567000046],[10.286478536,6.43903774600011],[10.363530522000133,6.540413177000062],[10.440581502000043,6.580963316000123],[10.529797474000134,6.552578336000067],[10.667678439999975,6.617457787000149],[10.809614571000111,6.613402790000123],[10.975009470000145,6.370349726000143],[10.905701524,6.326247840000121],[10.896250593000048,6.253794166000091],[10.962409458000138,6.231742720000057],[10.978160562000085,6.06163518000011],[10.877347557000121,6.036433982000176],[10.741882591000149,6.112037575000159],[10.622167556000136,6.008082194000053],[10.590663502000098,6.058485596000082],[10.442594500000155,6.039583901000128],[10.389889428000117,5.969788128000062],[10.445929492000062,5.901645938000115],[10.385889584000097,5.781271917000083],[10.470949473000132,5.771821489000104],[10.245300591999978,5.554680408000081],[10.111430534000021,5.52551054700001],[10.073956554,5.433858124000039],[10.272370452000132,5.471328416000063],[10.382109513000046,5.408438158000138],[10.402370585000085,5.508861907999972],[10.488630427000032,5.494039015],[10.473420458000021,5.38764768600015],[10.505450560000043,5.259389144000124],[10.62656956300009,5.016606983000088],[10.710000513000125,4.926168763000135],[10.789669497000034,4.880636923000111],[10.855669441000032,4.711798571000145],[10.829279522000093,4.601581573000033],[10.846128488000147,4.540132332000098],[11.1648404660001,4.212863270000128],[11.292160570000078,4.269700117000184],[11.473779480000076,4.394302975000073],[11.576270542000032,4.606263369000146],[11.519120547,4.685480401],[11.371470473000102,4.659060307000175],[11.30930055600004,4.693005003000167],[11.272939525000027,4.770177186000069],[11.268950577000055,4.874849554000036],[11.202850553000133,4.915956419000167],[11.09148054100018,4.774539799000138],[11.046759567000095,4.886760407000111],[11.057169555000087,5.351049279000051],[11.05521958899999,5.599841935000143],[11.164449534000084,5.652606183000103],[11.231829475000097,5.80336426700012],[11.248029514000166,5.89060780900013],[11.221329464000064,6.066232989000127],[11.331080428000178,6.113106435000134],[11.506030529000157,6.122372965000125],[11.580369460999975,6.160995098000171],[11.66646049100018,6.122617884000078],[11.771129507000069,5.817535048000138],[11.863869566,5.649560534999978],[11.876970481000171,5.56426679100008],[11.678540490000046,5.61965356900015],[11.681050535000168,5.418130321000149],[11.539059586000178,5.341664230000106],[11.55329943400011,5.217578032000119],[11.63619947400008,5.051225585000054],[11.65589946100016,4.952954811000041],[11.709620587000074,4.916361265000091],[11.801469482000186,4.976843905000067],[11.825559575000057,5.045620941000152],[11.78913953500006,5.176503354000147],[11.803999476000058,5.221950033000098],[11.929320495000127,5.22833955700014],[11.975020476000111,5.169556600000021],[11.994250573000045,5.034581807000166],[11.96370054800019,4.821794287000046],[11.874230437000108,4.660164203000022],[11.692520499000068,4.566058230000067],[11.63395949400018,4.45504042500005],[11.591910503000122,4.321191489],[11.628609493000113,4.223146524000128],[11.854869582,4.235109679000061],[11.949729592000097,4.371306721000053],[12.045269542000142,4.375674363000087],[12.031800494000038,4.267965231000176],[12.13815058400013,4.336015220000036],[12.254619476000073,4.50559486800006],[12.410619435000115,4.841859892],[12.48075953600005,4.896909718000131],[12.612680466000086,4.942173504000152],[12.853110496999989,4.924742666000157],[12.938839429000097,4.948279888000059],[12.962280595000038,5.070779056000106],[12.894459431000143,5.073184662000017],[12.67115949600003,5.029934879999985],[12.457839557,5.044072971000162],[12.406149533000075,5.155308706000085],[12.432749503000082,5.34759275000016],[12.479940456000179,5.388883513],[12.672069435000083,5.401279678000094],[12.902029463000133,5.503622045000157],[13.027070527000092,5.617410907000021],[12.991220457000168,5.885198129000173],[13.065010542000152,5.907451412000114],[13.161100512000075,5.721601316000033],[13.36217952000004,5.672517729000049],[13.478090512,5.615699993000021],[13.42691044300011,5.502136101000133],[13.485959443000127,5.443149631000097],[13.5938395660001,5.566189600000087],[13.674010458000168,5.576081922000185],[13.630209482,5.459026297000094],[13.61268946000007,5.324103304000118],[13.793180502000155,5.156992630000161],[13.733699499000181,5.097385061000182],[13.618740523999975,5.110208031000127],[13.683970506000037,4.8999025600001],[13.598850434999974,4.685974430000158],[13.630709546,4.475045010000088],[13.711299534000148,4.437186636000092],[13.854399576000162,4.493140533000144],[13.918979457000148,4.456207521000124],[13.805569458000093,4.312686037000049],[13.874380524000117,4.237889453000037],[14.04603955400006,4.190236992000109],[14.107330545000082,4.204552110000122],[14.167010533999985,4.330152582000096],[14.253729537000027,4.37659838400009],[14.465720441000087,4.358631439000021],[14.546339430000046,4.217772886000091],[14.651599538000028,4.16648368500006],[14.749930494000068,4.175022329000058],[14.849599537000074,4.282652169000187],[14.940250489999983,4.3240832460001],[14.912449561000017,4.173270344000173],[15.061920520000058,4.127230562000022],[15.10414050200012,4.207246724000129],[15.371259519000148,4.2224065690001],[15.58176950900014,4.371309571000097],[15.657259443000157,4.468624472000158],[15.725959533000093,4.501079201000096],[15.912159488999976,4.484443303000148],[15.940380518999973,4.363527141000077],[16.02345054400007,4.298149134000141],[16.230239472000164,4.292560584000114],[16.44621043899997,4.198796424000136],[16.544570564000026,4.18979409300016],[16.76481043500013,4.135120111999981],[17.086240496000187,3.970701369000096],[17.206729516000053,3.921242944000142],[17.281480502000022,3.921743846000027],[17.48648056400009,4.070319786000141],[17.603860569,4.122555974000136],[17.712930587000074,4.13545522000004],[17.80258945800017,4.104053593],[17.967630473000042,3.936811994000152],[18.00201957800016,3.848882477000132],[18.05201947400002,3.828566755000168],[18.132589513000028,3.88834145900006],[18.290309438000065,4.121480073000043],[18.415599445000055,4.252300459000082],[18.610439466000173,4.412065737000034],[18.856391495000082,4.522670481000091],[19.105785469000182,4.891700365000133],[19.437984600000107,5.138061096000115],[19.573326520000023,5.15649876800012],[19.84228553200012,5.097490002000029],[19.959716498999967,5.024512291000121],[20.01362253000019,4.950769816000161],[20.268388465000044,4.845098492000091],[20.47071050900007,4.595659926000053],[20.509023518000106,4.42092708500013],[20.638454520000153,4.379639171000065],[20.865612478000173,4.410232782000151],[20.989225601000157,4.467426531000115],[21.161083450000092,4.408486832000108],[21.252687594000065,4.418611165000186],[21.385934541000097,4.386120561000041],[21.444065554000133,4.506258715000172],[21.495367496000085,4.730813924000074],[21.549867468000173,4.906658039000149],[21.667264571999965,5.104387470000177],[21.7797054560001,5.250253876000102],[21.94778457600006,5.40738807300005],[22.07029950200007,5.469731496000065],[22.161958463000076,5.471294553000178],[22.388483587000167,5.432489359000044],[22.47649943800019,5.457954587000074],[22.68036257900002,5.565245797000046],[22.77047558100014,5.581108549000021],[22.90803149700008,5.567481586000042],[23.03304657800004,5.615639978000161],[23.149997596000105,5.758167369000091],[23.19060557000006,5.780348735000075],[23.322784496000054,5.745561322000071],[23.503351477000137,5.77883999200003],[23.677410582000107,5.730547657000159],[23.826185507000105,5.627168951000044],[23.958526539000047,5.644447909000121],[24.037652543000036,5.480297891000134],[24.04037448200006,5.38888569300002],[24.001718486000186,5.305591703000175],[23.88883051100015,5.160256375000074],[23.659177595000074,4.933941134000065],[23.583864519000088,4.88109289900018],[23.406515517000116,4.831577644000163],[23.30549849700003,4.740546487000017],[23.128822562000096,4.688328069000079],[23.050895505000085,4.640490871000111],[23.00972359700006,4.510440279000136],[23.024896518,4.328392885000085],[23.140945476000013,4.261303797000039],[23.27747947100005,4.239779405000093],[23.415620444000012,4.242043357000171],[23.5959644670001,4.208788659000049],[23.698547562000158,4.117417532000047],[23.82792458500012,4.070891934999963],[23.920009514000185,4.073260828000116],[24.053468524000095,4.037774365000189],[24.374511509000115,4.016878950000148],[24.601058594000108,3.975066162000189],[24.73870855500013,3.975969898000187],[24.964305467000145,4.022617369000045],[25.005208484000093,4.045047677000184],[25.04287960700009,4.222339682000154],[25.11817156100011,4.265819296000188],[25.24714658800019,4.220531873000027],[25.308811579000064,4.150756049000108],[25.392614517000084,4.146362423000028],[25.37965358100007,3.964955910000128],[25.40700758600019,3.736404544000095],[25.436204605000057,3.649147256000049],[25.54348156599997,3.499955246000127],[25.707834594000076,3.417753419000121],[25.841098473000102,3.449653937000051],[26.096708466000166,3.55481832300012],[26.24833156300008,3.657458416000111],[26.383157493000112,3.652150827000128],[26.44939648900015,3.482671427000071],[26.45375457600005,3.29848329500004],[26.505798483000035,3.223474817000181],[26.673086518000048,3.147367639000095],[26.893573487000083,3.081111544000123],[26.984634484000026,3.069849116000114],[27.064115545000163,3.110480057000132],[27.1604725630001,3.319012588000135],[27.217651560000093,3.681006702000161],[27.26297955100017,3.687231439000129],[27.39371846500012,3.55880173900016],[27.54827858100009,3.458604301000037],[27.776750486000083,3.436261835000096],[27.862142466000137,3.40248561500016],[27.904697556000087,3.323830505999979],[27.876865446000124,3.188610291000145],[27.809301607000123,2.969662575000143],[27.83567459500017,2.883495269000036],[27.970968571000185,2.871235059000071],[28.057596546000127,2.90034792300014],[28.236272570000096,3.043240262000154],[28.30692447000007,3.212188585000035],[28.283662510000056,3.394793207000021],[28.35111654600007,3.513624286999971],[28.470371582000155,3.581476127999963],[28.539775585000143,3.701339355000187],[28.62165655299998,3.664801969000109],[28.69969944800016,3.55080842100017],[28.750156493000077,3.326462088000142],[28.72325846300015,3.144440679000184],[28.734806546000073,3.053337605000081],[28.699663573000123,2.919994434000103],[28.783346483000173,2.823726432000171],[28.85936749500013,2.936474094000062],[28.945600515000137,2.967432821000045],[29.045808514000157,3.117060857000183],[29.180370582000023,3.147441400000048],[29.31805960300005,3.154080873000055],[29.369401610000068,3.088561883000068],[29.212200524000025,2.993959030000042],[29.150403602000154,2.87465487500009],[29.238922534000153,2.858015121000165],[29.294580551000024,2.92937965100009],[29.37486258700011,2.974367337000047],[29.46585049300006,2.983874762000028],[29.640960521000068,2.929101874000082],[29.737520548000077,2.774094333000107],[29.947729460000176,2.471471920999988],[30.010251584000173,2.348290131000113],[30.11326249200016,2.195533298000157],[30.14347657100012,2.108486898000137],[30.149055566000186,1.925022628000136],[30.099960580000186,1.796015247000014],[30.037778592999985,1.729593191000106],[29.880220606000023,1.634072352000146],[29.877553484000146,1.578748606000147],[30.05411559300012,1.543635975000029],[30.058002449000185,1.454935826000053],[29.960651505000044,1.299013316000128],[29.84826057700019,1.153203404000067],[29.91227755800014,0.733197700000062],[29.860112246000142,0.607951195999988],[29.979988412000125,0.646320715000115],[30.147189458000128,0.787881273000096],[30.23888134500004,0.760401530000081],[30.340960222000092,0.797878040000057],[30.40663334500016,0.886393989999988],[30.614166667000177,0.976666667000075],[30.69000000000011,1.105000000000132],[30.75333333300017,1.109166666000135],[30.7825,1.245833333000121],[30.844166667000025,1.328333334000092],[30.942500000000166,1.359166667000125],[31.094166666000035,1.5025],[31.169166667000127,1.511666667000043],[31.286666667000134,1.650833333000037],[31.546666667000068,1.870833333000064],[31.664788013000134,1.875338902000124],[31.831826175000174,2.001688281000156],[31.86180738400003,1.973134749],[32.08238341900005,1.963854851000121],[32.06168210800007,1.852496076000136],[31.920342125000104,1.83179476600003],[31.774243219000084,1.784919384000091],[31.71237723300004,1.706397171000049],[31.786140524000132,1.659283843000082],[31.679263067000193,1.579552069999977],[31.634648173000187,1.588772481000035],[31.63197128000013,1.448086849000106],[31.55017730700007,1.519768112000065],[31.48295753400015,1.376108154000065],[31.468502308000154,1.228676750000147],[31.316910814000096,1.257622893000189],[31.277352274000123,1.222228411000117],[31.202616549000027,1.270157686],[31.186852620000025,1.16040504700004],[31.256823645000054,1.166591646000086],[31.327850556000044,0.990987423000149],[31.38807947300006,0.998142463000079],[31.58684378200013,0.932770737000055],[31.52243970400002,0.881017460000123],[31.52600889600012,0.761449545000175],[31.490316981000092,0.693634906000057],[31.515301321000152,0.542539132000172],[31.17069588100003,0.390134655000054],[31.00080236500014,0.481149038000069],[30.801819939000097,0.548963677000188],[30.72478488900009,0.598040060000073],[30.871716606000177,0.672398217000023],[30.615418912000166,0.69967873700017],[30.625412648000122,0.605452081000067],[30.68180587400019,0.543110203000083],[30.526141535000193,0.442244851000112],[30.52227491100018,0.362830340000187],[30.217703902000096,0.379784000000143],[30.033941698000092,0.229466309000031],[30.031657415000154,0.16493532700008],[29.948281102000124,0.035492648000059],[29.910971153000162,0.066520820000164],[29.800944876000074,0.002751265000086],[29.696794801000067,0.073326789000077],[29.539750374999983,0.050483964000023],[29.528328962000103,-0.08371763699995],[29.454634624000107,-0.248603194999873],[29.42915058200009,-0.254543940999895],[29.30752355000004,-0.471784095999908],[29.274660455000117,-0.61115754399998],[29.143529603000104,-0.920407525999963],[29.096578540000166,-1.073721922999937],[29.157552527000064,-1.117647202999933],[29.18311146400015,-1.021364867999921],[29.24310602700018,-0.927955010999881],[29.32025951700018,-0.936802193999881],[29.362235585000178,-1.074576038999908],[29.328140518000055,-1.167746927999872],[29.34015304200011,-1.281372510999859],[29.388776546000145,-1.30489464599998],[29.536603479000064,-1.284262422999973],[29.573333333000107,-1.180833332999953],[29.593910675000018,-0.961285007999948],[29.63174410500011,-0.897753398999896],[29.6274610750001,-0.788536138999973],[29.667703709000193,-0.662766752999971],[29.73462605000003,-0.61220320699988],[29.815527724000162,-0.459322836999945],[29.930039285000078,-0.371580212999959],[29.928849555000056,-0.246658509999975],[30.043063683000128,-0.307037332999926],[30.103145073000178,-0.211561459999928],[30.191185131000168,-0.190443743999879],[30.308680536,-0.118603056999973],[30.31248767300019,-0.029706393999902],[30.435458218000065,0.004938558000106],[30.50798419,-0.033132817999899],[30.53330165500006,-0.268794635999939],[30.49503992200016,-0.409278013999824],[30.450877125000147,-0.441067612999859],[30.44478570500013,-0.549380677999977],[30.484189579000088,-0.620193436999955],[30.673547086000042,-0.742521526999894],[30.800883941999984,-0.793834603999812],[30.745680447000098,-0.895865891999961],[30.745870804000106,-0.982478272999856],[30.576643537000052,-0.999229677999949],[30.45540206700008,-0.892249110999842],[30.38401823700019,-0.866550931999939],[30.176291291000098,-0.867740662999893],[30.09538961700008,-0.925323618999869],[30.066666667000106,-1.049166666999952],[30.165833333000023,-1.148333333999972],[30.172500000000184,-1.301666666999893],[30.15166666600004,-1.406666665999921],[30.165833333000023,-1.502499999999884],[30.241666666000185,-1.5675],[30.257500000000164,-1.6425],[30.335833332999982,-1.6725],[30.34333333300009,-1.7875],[30.26,-1.785],[30.211666666000042,-1.830833332999873],[30.130833334000044,-1.758333333999872],[30.035,-1.825833332999878],[30.041666666000083,-1.855833332999907],[29.99416666700006,-1.875],[29.893333333000044,-1.7825],[29.878333333000114,-1.7625],[29.86916666600007,-1.802499999999895],[29.855000000000132,-1.807499999999891],[29.811666667,-1.807499999999891],[29.796666667000068,-1.759166666999874],[29.757500000000107,-1.7325],[29.738333334000174,-1.770833332999928],[29.79,-1.920833332999848],[29.8241666670001,-1.945],[29.820833333000166,-1.905833332999975],[29.9275,-1.910833332999971],[29.921666666000192,-1.944166666999934],[29.923333333000187,-2.0175],[29.856666666000024,-2.048333333999892],[29.811666667,-2.148333332999925],[29.82166666700016,-2.376666666999881],[29.785,-2.438333332999889],[29.8275000000001,-2.626666665999835],[29.74583333300012,-2.760833332999937],[29.81416666700011,-2.804166666999947],[29.822500000000105,-2.804999999999893],[29.906666667000138,-2.860833333999949],[30.055833333000123,-2.84083333399991],[30.140833334000035,-2.795],[30.18916666700011,-2.724166666999963],[30.31916666700016,-2.668333333999954],[30.276666666999972,-2.789166666999961],[30.33916666600004,-2.855],[30.30916666700017,-2.939166666999881],[30.29333333300019,-3.1175],[30.18833333300006,-3.256666666999877],[30.140833334000035,-3.1625],[30.229166666000083,-3.04833333299996],[30.2125,-2.983333332999962],[30.12416666700011,-3.021666666999977],[30.018333334000033,-3.182499999999891],[29.946666667000045,-3.144166666999979],[29.985000000000184,-3.021666665999874],[29.916666666000026,-2.944166666999877],[29.853333333000137,-2.94],[29.822500000000105,-2.997499999999889],[29.77416666700003,-3.01416666599988],[29.906666666000035,-3.0875],[29.843333332999975,-3.22],[29.882500000000164,-3.298333332999903],[29.823333334000154,-3.325833332999935],[29.853333333000137,-3.405833333999851],[29.846666667000136,-3.516666666999868],[29.915833334000183,-3.510833332999937],[29.86166666600019,-3.423333333999892],[29.9375,-3.379166666999936],[30.045833334000065,-3.444999999999823],[30.079166666000106,-3.52916666699997],[30.076666667000097,-3.6275],[30.13583333400004,-3.690833332999887],[30.080833333000044,-3.815],[30.020833334000145,-3.875833332999889],[30.003333334000047,-3.942499999999882],[29.92666666700012,-3.944999999999879],[29.915000000000134,-4.05833333399994],[29.833333334000088,-4.078333332999875],[29.75000000000017,-4.139999999999873],[29.74583333300012,-4.188333333999879],[29.670833333000132,-4.195833332999939],[29.645833334000088,-4.098333333999904],[29.560000000000116,-4.125833333999935],[29.581666667000036,-4.016666665999878],[29.571666667000045,-3.909166666999965],[29.589166667000086,-3.829166666999868],[29.459166667000034,-3.82],[29.331666667000093,-3.763333333999981],[29.37166666700017,-3.884166666999931],[29.440833333000114,-3.985833332999903],[29.458333332999985,-4.063333332999832],[29.595833333000144,-4.3475],[29.662500000000136,-4.410833333999904],[29.636666667000043,-4.596666666999965],[29.59166666699997,-4.72333333399996],[29.59083333400008,-4.87],[29.82,-5.137499999999875],[29.75000000000017,-5.4225],[29.770000000000152,-5.508333332999939],[29.829166666000162,-5.559166666999943],[29.928333333000182,-5.770833332999928],[29.94416666700016,-5.869166666999888],[29.904166667000084,-5.935],[29.72083333300003,-6.0525],[29.715833333000035,-6.294166665999967],[29.858333334000065,-6.453333333999922],[29.967500000000143,-6.5275],[30.13,-6.484999999999843],[30.35750000000013,-6.7075],[30.405,-6.823333333999869],[30.483333333000132,-6.92],[30.555,-6.961666666999918],[30.56250000000017,-7.033333333999906],[30.525000000000148,-7.2175],[30.6025,-7.380833332999828],[30.59416666700008,-7.475],[30.639166667000154,-7.605],[30.739166667000063,-7.7025],[30.8,-7.868333332999953],[30.85666666700007,-7.9125],[30.91666666700013,-8.030833333999908],[30.921666667000068,-8.11666666699989],[30.98000000000019,-8.155833332999975],[30.953333333000103,-8.220833332999973],[30.981666667000127,-8.305],[31.04333333300002,-8.313333332999946],[31.144166667000036,-8.42],[31.136666666000053,-8.490833332999898],[31.2,-8.6125],[31.199166667000043,-8.73916666699995],[31.029166667000084,-8.80833333299995],[30.78916666600003,-8.5675],[30.6875,-8.5425],[30.593333334000135,-8.583333332999928],[30.567500000000166,-8.51416666699987],[30.496666667,-8.531666665999921],[30.454166667000038,-8.483333332999905],[30.475,-8.362499999999898],[30.56250000000017,-8.31666666599989],[30.587497499000165,-8.152176296999926],[30.52749648300005,-8.059406230999969],[30.272777486000166,-7.843865422999954],[30.268753502000095,-7.771545859999947],[30.156610511000054,-7.792237425999929],[30.096279583000182,-7.841092856999978],[30.04492120000009,-7.993446727999981],[29.964988093000045,-8.002325399999961],[29.89952060800016,-7.945153346999973],[29.69888672100012,-8.042403436999962],[29.580460608000124,-8.026434560999917],[29.58148738,-7.871846079999955],[29.426855610000132,-7.846470609999869],[29.344385333000105,-7.882947847999958],[29.2412352770001,-7.994644103999917],[29.155655276000175,-7.995551495999962],[29.013546613000017,-7.83021126899996],[28.851104645000134,-7.797147505999931],[28.73833140700009,-7.746610432999944],[28.672439678000103,-7.671867853999913],[28.65861946300015,-7.507474601999888],[28.685983265000118,-7.382552898999904],[28.741826571000104,-7.266095908999944],[28.81638855800003,-7.173680384999955],[28.886975919000065,-7.003094262999923],[28.90238409800014,-6.745807598999875],[28.879880526000136,-6.640526712999872],[28.866790508000122,-6.434293840999885],[28.800210537,-6.225489064999977],[28.845220519,-6.139527283999882],[28.91251664100014,-6.104500365999968],[29.193054581000126,-6.085104256999898],[29.181663574000083,-5.919282383999871],[29.324996466000187,-5.82262344999998],[29.350555571000086,-5.721242151999945],[29.18428685700013,-5.604252161999966],[29.112050691000036,-5.519682991999844],[29.057169473000044,-5.523603770999955],[29.01481506700003,-5.611881773999926],[28.85681885600019,-5.402965097999925],[29.038133785000127,-5.385832978999929],[29.064480532000175,-5.343497219999904],[28.955245354000112,-5.038695834999942],[28.87948547200017,-4.895985359999884],[28.668062546000158,-4.681038717999911],[28.563141656000028,-4.512909600999933],[28.521501088000093,-4.25473808199996],[28.428702109000085,-4.291619727999887],[28.379923159000157,-4.229753740999911],[28.38111288900018,-4.155990449999933],[28.297831754000185,-4.158369910999966],[28.197894392000137,-4.107211499999892],[28.108664604000126,-3.982289796999908],[28.002778589000116,-3.951356803999886],[27.91949745400018,-3.787173993999943],[27.926635837000106,-3.731256660999918],[28.036516561999974,-3.603755477999925],[27.922250602000076,-3.533499706999976],[27.891790598000114,-3.466058578999878],[27.736309480000102,-3.541523869999935],[27.374370517999978,-3.803124409999953],[27.216819572000134,-3.86809773799996],[26.93284052500013,-3.819617312999981],[26.422090594999986,-3.648423142999945],[26.31806950000015,-3.552096299999903],[26.213890490000097,-3.407880961999979],[26.069129490000137,-3.100974894999922],[25.985370473000103,-2.841491120999819],[25.918930479000096,-2.704309205999891],[25.865680584000188,-2.663088178999942],[25.721790463000048,-2.693039233999912],[25.523120582,-2.646985704999963],[25.325309511000114,-2.668214047999868],[25.189439531000062,-2.769161331999953],[25.103090506000115,-2.964961751999908],[24.999309469000025,-3.347063380999884],[24.897790539000027,-3.47751479599998],[24.75645052900012,-3.512516282999854],[24.385049573000174,-3.51102933299984],[24.194780538000145,-3.684962205999966],[24.021110522000072,-3.759959787999946],[23.783479543000112,-3.789270632999944],[23.679510584000127,-3.642001599999958],[23.587680464000073,-3.543984629999954],[23.407279443999983,-3.297283090999883],[23.346019465999973,-3.346306327999969],[23.254909520000183,-3.499136082999883],[23.104810589000067,-3.590537384999891],[22.987199579000162,-3.625116757999933],[22.751399543000048,-3.660692237999911],[22.655500513000163,-3.693409822999911],[22.62299951500006,-3.752714134999962],[22.659900509000067,-3.96098079199993],[22.69920744400008,-4.005889352999873],[22.323665492000146,-3.954423293999923],[22.19203155800011,-3.986691777999965],[21.824516452000125,-3.974353950999841],[21.562364551000087,-4.058487471999968],[21.471088475000045,-4.058466516999943],[21.389949473000115,-4.014787916999865],[21.162483563000023,-3.986583818999918],[21.030590460999974,-4.026124105999884],[20.821649564000097,-4.122798964999959],[20.51205055900016,-4.211816117999888],[20.451942590000158,-4.25051637099989],[20.348178484000186,-4.370933474999958],[20.302505494000172,-4.377009012999906],[20.182674453000175,-4.308453091999922],[19.982776456000067,-4.226907231999917],[19.816944524,-4.124414660999889],[19.61916346000004,-4.072474521999879],[19.38582954800006,-3.918319084999951],[19.209287556999982,-3.825475927999946],[19.056493508000187,-3.775019720999978],[18.795829563000098,-3.643061406999891],[18.64916654100017,-3.605009410999969],[18.599163460000113,-3.56473419799994],[18.49124545000018,-3.584253638999826],[18.368432464000023,-3.3907411429999],[18.316835479000076,-3.262852746999954],[18.293901586000118,-3.080183415999954],[18.298381546000087,-2.450757304999968],[18.28562345100005,-2.340236378999919],[18.186239560000047,-2.216512614999942],[18.076000434000036,-1.999500950999902],[17.924619575000065,-2.102150262999942],[17.695669566,-2.036214021999967],[17.60304048300003,-2.092700002999891],[17.603200578000042,-2.174580635999973],[17.735120502000143,-2.349831813999913],[17.69647054100011,-2.437088096999958],[17.626819440000077,-2.403562663999935],[17.421140444000173,-2.232089375999919],[17.317409530000077,-2.214921897999943],[17.074430562000032,-2.218594511999868],[16.96890055700004,-2.249633034999931],[16.61119043400015,-2.254751695999971],[16.354799582000055,-2.27833619199987],[16.291910498000107,-2.386073989999943],[16.327560576000167,-2.632120566999959],[16.286220527000125,-2.753290700999969],[16.187538536999966,-2.709964978999949],[16.221385500000167,-2.632303795999974],[16.17694045800016,-2.553420530999972],[16.124443593000024,-2.346490954999979],[16.11770253100002,-2.213842978999935],[16.05876953699999,-2.183693105999964],[15.888099572000101,-1.997631953999814],[15.532400434000124,-1.690555901999971],[15.442749442000093,-1.586066593999931],[15.25697059300012,-1.412024755999937],[15.058050596000157,-1.198140882999894],[14.947529503000169,-1.10435191199997],[14.735540442000115,-0.991572063999968],[14.554200481000066,-0.785214636999967],[14.45310048000016,-0.694090440999958],[14.294340528000134,-0.499133072999882],[14.194109562000051,-0.449016834999952],[14.065739541000141,-0.470937020999884],[14.049440594999965,-0.605645939999931],[14.178910489000032,-0.854431554999962],[14.212010457000133,-0.996636912999918],[14.166660505999971,-1.104578726999819],[14.099929492000115,-1.144952677999925],[13.85072059100014,-1.170819901999948],[13.611390433000167,-1.150032445999955],[13.49435056600015,-1.090296801999955],[13.062509549000083,-1.064403761999927],[12.839730465000173,-1.086947057999964],[12.777919461000181,-1.108195349999903],[12.393760576999966,-1.365100179999899],[12.5298404400001,-1.611925938999946],[12.698370506000117,-1.830274515999918],[12.853736458000014,-1.988356539999927],[13.049114430000088,-2.28325066899987],[13.238035487,-2.698193600999957],[13.355376432000071,-2.934628146999898],[13.450980587,-3.079869429999974],[13.695253553000043,-3.525922298999831],[13.771368443000085,-3.815764486999967],[13.77086049899998,-3.953204565999897],[13.744254495000064,-4.017415810999978],[13.59771552500007,-4.108950719999825],[13.424283554999988,-4.129952248999871],[13.146351548000098,-3.964174464999928],[13.002195552999979,-3.866984788999901],[12.924007484000072,-3.792621214999883],[12.718955453999968,-3.55751670899997],[12.626534578000076,-3.397714551999911],[12.562095512000099,-3.320066444999838],[12.336760450999975,-2.994511815999886],[12.192237497,-2.826170342999944],[12.01156758500008,-2.642030993999924],[11.47941446599998,-2.136090768999964],[11.38819957800007,-2.087813185999948],[11.217390473000023,-1.885303386999965],[11.12240942800014,-1.728835047999951],[11.035659580000129,-1.622941938999929],[10.854660427000056,-1.483423315999971],[10.759220557000106,-1.466571666999926],[10.702409526000054,-1.502578981999932],[10.687769527000114,-1.614160721999838],[10.732199481000123,-1.762978394999891],[10.795929438000087,-1.88667332599988],[10.947540463999985,-2.064661865999938],[11.102800469000101,-2.195997068999873],[11.25687057800019,-2.305876107999893],[11.513939525000126,-2.564021794999974],[11.703410434999967,-2.778487874999882],[11.724470470000142,-2.885254881999913],[11.67597043100011,-2.92457992199985],[11.592829495000103,-2.908613066999976],[11.47381049300003,-2.838528117999886],[10.97167045499998,-2.403258567999899],[10.819959516000097,-2.326012624999976],[10.765669593999974,-2.327093554999976],[10.731060548000073,-2.560943121999969],[10.742329514000062,-2.752836568999953],[10.794710541000086,-2.895635868999875],[10.917269556000065,-2.970366402999957],[11.252779539000187,-3.108333031999962],[11.48573945000004,-3.252948521999883],[11.625439457000027,-3.454257361999964],[11.795160591000183,-3.654871676999903],[12.122799464000025,-3.984399997999901],[12.349089560000039,-4.157851413999879],[12.509779528000081,-4.245700632999956],[12.798190591000036,-4.453359265999893],[12.959910528000137,-4.54355172999982],[13.084810441000172,-4.578361270999949],[13.209380442000054,-4.644192235999981],[13.519289577999984,-4.934945871999957],[13.575453526000103,-5.057235827999875],[13.452650430000062,-5.092724302999954],[13.477629507000131,-5.338264110999944],[13.436140595000154,-5.392566269999975],[13.190910583000175,-5.491016919999879],[12.958388542000137,-5.659948646999908],[12.919783508000023,-5.658121558999881],[12.810908452999968,-5.743660389999945],[12.690795445000163,-5.689067377999947],[12.559765511000137,-5.514373092999961],[12.527008530000103,-5.427025447999881],[12.548177530000146,-5.207375830999979],[12.525819474000116,-5.12308707699998],[12.492429492000042,-4.834476189999975],[12.396180432999984,-4.697464426999886],[12.29598048000014,-4.591362272999902],[12.020890441000176,-4.372368455999833],[11.783829432000061,-4.199261200999899],[11.670160431000056,-4.102689270999917],[11.282649456000058,-3.726525381999977],[11.165080524000075,-3.661689180999815],[11.056879541000058,-3.631451129999903],[10.926353528000107,-3.647657204999916],[10.994859493000035,-3.724580444999958],[11.017990528000155,-3.830488473999878],[11.374239517999968,-4.147523902999978],[11.38903944499998,-4.202319924999927],[11.787280429000077,-4.564356115999885],[11.773139488000027,-4.666718767999896],[11.846670572,-4.757264779999957],[11.88416047800007,-4.861319402999925],[12.13097953099998,-5.197562633999951],[12.221679434000066,-5.446340034999878],[12.140899513000079,-5.628633855999908],[12.159440451000137,-5.702023453999971],[12.23719953400007,-5.824698305999959],[12.345135201000176,-5.932180847999859],[12.595689510000057,-5.938259012999879],[12.708849561000022,-5.92413215299996],[12.95270343300001,-5.807745571999874],[13.14999046700018,-5.823486617999947],[13.151479596000172,-5.90551058199992],[13.09428953500003,-5.967834893999964],[12.79164952200017,-6.160282719999941],[12.76877044600019,-6.218812543999888],[12.609370452000121,-6.232944600999929],[12.499210451000181,-6.196039248999909],[12.431819447000066,-6.203575752999882],[12.290710441999977,-6.153815410999925],[12.374970530000041,-6.289092454999889],[12.574560576000124,-6.674068406999936],[12.741490536000072,-6.85090745399998],[12.821290446000035,-6.973883383999919],[12.84751054800006,-7.100029350999932],[12.855079574000115,-7.270256081999946],[12.915379488000099,-7.349523404999957],[12.973389467000061,-7.528216359999931],[13.072890536000045,-7.758535804999951],[13.180720536000024,-7.962156204999928],[13.268890446000057,-8.170367206999913],[13.346460434000107,-8.28231489999996],[13.39898043300019,-8.402419525999903],[13.358539594000149,-8.486921346999964],[13.408800503,-8.699423044999946],[13.366189590000033,-8.771323177999875],[13.304160489000026,-8.752313524999977],[13.222359484000151,-8.80713636799993],[12.99989053000013,-9.092293240999936],[13.08133044200008,-9.210375815999896],[13.169329529000152,-9.38060791099997],[13.194160582000052,-9.553173527999945],[13.241559574000178,-9.628851217999966],[13.20827956300002,-9.707405575999871],[13.318949519000114,-9.861683723999931],[13.313730443000168,-9.98451900699996],[13.439319516000182,-10.117548694999925],[13.456399488000102,-10.184393031999889],[13.53415052400004,-10.295086456999968],[13.528840589000026,-10.386439813999914],[13.642049591000102,-10.50037083299992],[13.77478054800008,-10.66843033899994],[13.723440553000046,-10.757094109999912],[13.831549502000087,-10.909882291999963],[13.865059512000016,-11.007676470999911],[13.77085044100005,-11.571566827999959],[13.793419554000025,-11.806591369999921],[13.762129574000141,-11.954980224999929],[13.654399486999978,-12.236122165999973],[13.583129505000045,-12.33684548499997],[13.485710500000039,-12.421119653999938],[13.466999578000184,-12.512792528999967],[13.344929563000164,-12.606806972999891],[13.299779436,-12.577558991999922],[13.19486047100014,-12.59365794599995],[13.01338958499997,-12.765985181999952],[12.93585044300005,-12.8594299909999],[12.97657056700001,-12.959373289999974],[12.872819537000055,-13.102322457999946],[12.654129480000165,-13.26484286699997],[12.650059563000127,-13.33178812199992],[12.52923945800012,-13.441281090999837],[12.55508053,-13.54795371699987],[12.514539444000093,-13.87573206399992],[12.425760504000095,-13.874722044999942],[12.424920470000075,-13.942547734999891],[12.364780482000128,-14.05781985799996],[12.372949988000187,-14.151257794999879],[12.339050554000039,-14.21556945499998],[12.371689517999982,-14.287254005999955],[12.3459394730001,-14.445434432999832],[12.303609521000112,-14.571886338999946],[12.289159455,-14.750223734999963],[12.211970507999979,-14.843807515999913],[12.168359466000084,-15.022346914999957],[12.058190581000133,-15.229342707999933],[12.016079564000108,-15.57035071599995],[11.91864044200014,-15.687643045999891],[11.8756795,-15.78540688299995],[11.78507950900007,-15.778917444999877],[11.732330516000161,-15.880311819999918],[11.809550475000094,-16.018712128999937],[11.794099442,-16.105317472999957],[11.832229558000108,-16.471473536999895],[11.831080567000186,-16.694729551999956],[11.760869555000113,-17.019679509999946],[11.761501600000088,-17.314174139999977],[11.741666861000056,-17.5847984049999],[11.807427820000044,-17.967693732999862],[11.86011197199997,-18.14378195499995],[11.963396529000022,-18.263975923999908],[12.029907363000177,-18.487594756999954],[12.32044591400006,-18.7317378809999],[12.465906950000033,-18.926722268999924],[12.478859399000157,-18.996415055999933],[12.571728079000138,-19.083995509999966],[12.694502982000074,-19.305312518999926],[12.70619917300013,-19.3810199859999],[12.859053410000115,-19.645895868999958],[12.891583933999982,-19.730970590999902],[13.033896520000042,-19.988103447999833],[13.051283617000081,-20.07803812999998],[13.143007690000161,-20.15644721299998],[13.237129428000117,-20.326033971999948],[13.245877632000088,-20.45777732099998],[13.327842020000048,-20.599291069999936],[13.374169845000097,-20.79277432899994],[13.413978815,-20.87771686399998],[13.55182886100016,-21.055349530999933],[13.573749617000033,-21.134528143999944],[13.689047863000155,-21.261459063999894],[13.806253111000046,-21.42023223399997],[13.876486127000021,-21.581953257999885],[13.974493871000107,-21.70995354699994],[13.95011460000012,-21.770934686999965],[14.05324311400011,-21.849056015999963],[14.29500752500013,-22.14099625399996],[14.394601540000167,-22.27819330799997],[14.512660324000024,-22.565533694999942],[14.536553445000152,-22.908060872999897],[14.406686238000134,-23.015896560999977],[14.497881,-23.309001412999976],[14.493180274999986,-23.39867970599994],[14.44354957100012,-23.443757948999917],[14.512363488000176,-23.61459944199987],[14.509752878000143,-23.91357203799987],[14.450178057000016,-24.027189937999935],[14.499861918000136,-24.215282805999948],[14.6147189940001,-24.470397143999946],[14.593924158000107,-24.55085019899991],[14.733247284000129,-24.707946488999823],[14.797892300000058,-24.836832677999894],[14.797777915000097,-24.92702229799994],[14.880653611000184,-25.07606065899995],[14.850310117000106,-25.130537346999972],[14.81658000300007,-25.373483881999903],[14.885278728000173,-25.52772180799991],[14.83081421999998,-25.74308872799992],[14.912235103000057,-25.84256404399997],[14.908049924000068,-25.889739689999942],[14.984184481000057,-26.06034370699996],[14.956644422000181,-26.302093584999966],[15.120959990000188,-26.428609044999916],[15.151981752000097,-26.648684224999954],[15.084186198000054,-26.638056848999838],[15.133615816000031,-26.890890541999966],[15.228032651000092,-26.916889366999953],[15.278765135000015,-27.16142573999997],[15.289717368000026,-27.297195671999873],[15.524186733000079,-27.624331345999963],[15.553271042000176,-27.731901225999877],[15.639923011000121,-27.822381635999932],[15.685722329999976,-27.93272909799998],[15.751389865000078,-28.014361380999958],[15.923889755000118,-28.172273086999894],[16.069847865000042,-28.28351191199988],[16.345947713000157,-28.54459802499997],[16.573213577000047,-28.72876739499992],[16.60634231600011,-28.867406844999948],[16.690847397000084,-28.925083159999815],[16.749099731000115,-29.04042243999993],[16.817325591999975,-29.089256286999955],[16.88108062700013,-29.295202254999936],[16.937065125000117,-29.35871124299996],[17.056848526000124,-29.679208754999934],[17.118570328000146,-29.920249938999916],[17.158138275000113,-29.976778029999934],[17.277925491000133,-30.337814330999947],[17.432573747000163,-30.619911529999968],[17.523590000000127,-30.73555],[17.604448318000095,-30.90767478899994],[17.683376312000178,-30.999006270999928],[17.74572372400013,-31.134984969999948],[17.881687164000084,-31.281074523999962],[17.88044548000005,-31.31709670999993],[18.11787,-31.58626],[18.222790000000145,-31.74432],[18.273382187000095,-31.87661361699992],[18.265869898000176,-31.933823084999915],[18.314287186000172,-32.06720733599985],[18.341913223000063,-32.25658416699997],[18.315616608000028,-32.31692123399995],[18.336952209000117,-32.46677780199997],[18.317098618000102,-32.56995773299997],[18.24931716900005,-32.676956176999965],[18.137210000000152,-32.77397],[18.01478795600002,-32.740006294999944],[17.89493000000016,-32.74866999999989],[17.88055,-32.85366999999985],[17.896570000000168,-33.02917],[17.991360000000157,-32.99671],[18.04146766700012,-33.04628372199994],[17.95211968000001,-33.10585031999989],[18.043333054000016,-33.170028686999956],[18.14232063300011,-33.28684997599993],[18.158923128000083,-33.36426527699996],[18.290670395,-33.45935058599997],[18.421533585000077,-33.65993499799998],[18.48938,-33.87027],[18.412080000000117,-33.898799999999824],[18.31137657200003,-34.043533324999885],[18.318794250000053,-34.14519119299996],[18.387742996000156,-34.27558517499995],[18.47477000000015,-34.233851],[18.42641,-34.17718999999988],[18.501905441000133,-34.097305297999924],[18.71484756500007,-34.07220077499994],[18.813380000000166,-34.10133],[18.85277,-34.2381],[18.81286031200017,-34.31164248099992],[18.831268311000088,-34.381595611999956],[19.03899002100013,-34.3400650019999],[19.12472,-34.417259999999885],[19.294921875000057,-34.41645049999988],[19.35774000000015,-34.48547999999988],[19.404449463000162,-34.60610580399998],[19.517034531000093,-34.66960906999998],[19.645610000000147,-34.78053],[19.87246322599998,-34.765609740999935],[19.987108231000093,-34.832206725999924],[20.057750702000078,-34.75680541999992],[20.234070000000145,-34.68734],[20.270551682000075,-34.63249206499995],[20.39934349100008,-34.57089233399995],[20.454811096000185,-34.503444671999944],[20.61651,-34.45197999999982],[20.84599304200009,-34.47380065899995],[20.880666733000112,-34.38052368199993],[21.09427833600006,-34.37504959099988],[21.29937,-34.438832577999904],[21.430303574000106,-34.37307739299996],[21.540023804000157,-34.355152129999965],[21.695762634000175,-34.394611358999896],[21.904342651000036,-34.34402084399983],[21.951416016000167,-34.228046416999916],[22.090095520000034,-34.20862197899993],[22.121562958000027,-34.11615371699992],[22.249368668000045,-34.05342483499993],[22.250579487000152,-33.93951684799998],[22.384000443000104,-33.901016083999934],[22.423000600000137,-33.9480157619999],[22.598070562000032,-33.93288692999994],[22.87815051600012,-33.8580871609999],[23.098524497000085,-33.916457393999906],[23.30392051900003,-33.94480381699998],[23.382428983000068,-33.92450109499987],[23.53700046000006,-33.968705987999954],[23.70798449600011,-33.934550402999946],[23.92283052800019,-33.91913541199989],[23.94687452000005,-33.970842450999896],[24.310927844000105,-34.02781578299988],[24.490745037000124,-34.08720489199993],[24.493511200000114,-34.16641998299997],[24.648122787000034,-34.16998290999982],[24.82723236099997,-34.21057510399987],[24.84307861300016,-34.14149475099998],[24.921972149999988,-34.08014131599998],[24.938507080000136,-34.00170135499991],[25.01470947300004,-33.96236801099985],[25.183839798000122,-33.95659255999993],[25.408071518000156,-34.03295898399989],[25.592010498000036,-34.04970931999992],[25.681768417000114,-34.019828795999956],[25.61320114100016,-33.94995117199994],[25.632576740000047,-33.864176192999935],[25.718013763000044,-33.77531433099989],[25.915822983000055,-33.69128036499984],[26.157712936000166,-33.696273803999816],[26.32990646400009,-33.751491546999944],[26.50408363300005,-33.761718749999886],[26.735059738000075,-33.65375900299995],[27.1134452820001,-33.51981353799994],[27.17264556900011,-33.46629714999989],[27.608816147000027,-33.21809005699993],[27.72726821900011,-33.12176132199994],[27.90809249900002,-33.0391311649999],[28.096036911000056,-32.890960692999954],[28.116903305000108,-32.830829619999975],[28.36646080000014,-32.69581222499994],[28.34799385100007,-32.57101440399998],[28.424903870000094,-32.50048446699998],[28.561185837000096,-32.460124968999935],[28.613262177000024,-32.39313888499987],[28.77980423000008,-32.34358978299997],[28.806713104000096,-32.20525741599994],[28.93295478800019,-32.12040710399998],[28.910797119000165,-32.03156661999992],[29.09552002000015,-31.92408561699989],[29.102895477000118,-31.84687581199995],[29.208538055000133,-31.81083297699996],[29.179838181000093,-31.72444915799997],[29.233539581000173,-31.63996314999997],[29.35787773100003,-31.622262954999883],[29.61209487900004,-31.39286994899993],[29.704759598000123,-31.37151336699992],[29.79981994600007,-31.28704070999987],[29.97343635600015,-31.052656173999935],[30.094425201000035,-30.98316383399998],[30.177885056000036,-30.791980742999954],[30.16139030500011,-30.68506622299998],[30.21001243600017,-30.65351104699988],[30.170104980000076,-30.555807113999947],[30.31700515700004,-30.431158065999966],[30.38825607300015,-30.447376250999923],[30.411815643000125,-30.356435775999955],[30.530370712000092,-30.332046508999895],[30.564723969000056,-30.26193237299998],[30.534488678000116,-30.200740813999914],[30.622501373000034,-30.14462661699997],[30.59272003200016,-30.09284019499995],[30.718891144000168,-30.018306731999928],[30.78633499100016,-29.802495955999973],[30.845888138000078,-29.800577163999947],[30.872810364000088,-29.669048308999947],[30.833381653000117,-29.580619811999952],[30.975294113000075,-29.50419235199996],[30.978391647000024,-29.455322265999882],[31.13388061500018,-29.36468696599991],[31.05944252000006,-29.17826652499997],[31.199270248,-29.252355575999957],[31.219120026000155,-29.186752318999936],[31.304733276000093,-29.194154738999885],[31.356584549000104,-29.14381027199994],[31.305418015000157,-28.943418502999975],[31.51000404400014,-28.896244048999904],[31.566823959000033,-28.859512328999983],[31.74912834200012,-28.805086135999886],[31.769744873000036,-28.764749526999935],[31.99106979400017,-28.632198333999895],[32.00874710100004,-28.578134536999983],[32.12429046600005,-28.499673842999982],[32.19276858300003,-28.335881137999877],[32.102081588000146,-28.260311239999965],[32.0503275260001,-28.156807475999926],[32.17834047800005,-28.052050617999953],[32.26991645800018,-27.855456933999903],[32.30573652200013,-27.730452247999892],[32.160430530000156,-27.507992680999962],[31.97394357800016,-27.349683507999885],[31.86711354000016,-27.314815125999928],[31.84765059300014,-27.211910332999935],[31.821008546000144,-26.739061190999905],[31.840990499999975,-26.386090027999956],[31.900930496000058,-26.113036455999975],[32.007492481000156,-25.899921202999963],[32.07266244900006,-25.84504588899989],[32.12071657000013,-25.726767175999953],[32.25183451400011,-25.580226194999966],[32.34083959700013,-25.38108944199996],[32.52317851300012,-25.200468145999935],[32.75371152800011,-25.013437040999975],[32.93891957000017,-24.818496267999933],[33.15032960800016,-24.69538337699987],[33.185554556000056,-24.616991124999856],[33.14807856400006,-24.436184923999917],[33.24486155100004,-24.34498964999989],[33.280601483000055,-24.40678657199993],[33.300388558000066,-24.60970901099995],[33.41226961500013,-24.743130888999815],[33.493408449000185,-24.72667168099997],[33.587841485000126,-24.56939951699985],[33.67724957000007,-24.623295992999886],[33.74861158500005,-24.60726761399991],[34.14754156100014,-24.334110944999964],[34.27344847600017,-24.17556791699991],[34.264659548000054,-24.07466287799997],[34.20970946700015,-23.89157193799997],[34.2748485890001,-23.809337085999914],[34.34238845600004,-23.820855664999954],[34.43896055400006,-23.95544991899982],[34.57770955000012,-23.96183961199995],[34.73638953800014,-23.737569889999975],[34.78253945900008,-23.61904676099988],[34.79594061400019,-23.443865654999968],[34.78876855400006,-23.238646322999955],[34.735828454000114,-22.83649601899998],[34.66431053499997,-22.57570064499987],[34.58810059500007,-22.54987130799998],[34.39363859700006,-22.61401767699988],[34.26126051800003,-22.591280088999838],[34.24694053999997,-22.519193876999964],[34.30184954900005,-22.42260903899995],[34.521461615000135,-22.211320034999915],[34.57841849100009,-22.135583001999976],[34.50014861500006,-21.860717932999876],[34.51646046900004,-21.643059856999912],[34.595111554000084,-21.349395687999845],[34.945098592000136,-21.14773480799994],[34.958015608000096,-21.079367647999902],[35.083480461000136,-21.078791642999875],[35.06520730300008,-21.007828273999905],[34.81048153900008,-21.002711789999978],[34.69569003200013,-21.02246672399997],[34.471099192,-20.722857632999876],[34.374621022000156,-20.514384667999877],[34.375106753000125,-20.3163663119999],[34.40176556000006,-19.948710447999872],[34.4499125160001,-19.922244906999822],[34.594242519000034,-19.946401719999983],[34.712318556000184,-19.894891403999907],[34.65531558000015,-19.772307746999957],[34.47935847700012,-19.651418574999923],[34.51017756200008,-19.57745397899987],[34.596477469000035,-19.595944791999955],[34.73825048900005,-19.70072880799995],[34.89235647200002,-19.706892356999845],[34.93966259300004,-19.668713625999885],[34.75288747100018,-19.383509143999902],[34.71110955100005,-19.219978715999844],[34.66342155100017,-19.15747134399993],[34.72661556900016,-19.014786875999903],[35.064991072000055,-18.43459572899991],[35.226528535000114,-18.306790983999974],[35.38956459900015,-18.075532598999928],[35.4522325690001,-18.386132067999938],[35.56939648800011,-18.792091945999914],[35.648410510000076,-18.961013781999952],[35.7183496130001,-18.954913264999846],[35.773826580000105,-18.880948501999967],[35.903270490000125,-18.88711221799997],[36.051212590000034,-18.770001272999934],[36.032718591000105,-18.56043156499993],[36.100830607000034,-18.390386721999903],[36.207496528000036,-18.40677367799998],[36.38570752400011,-18.530156297999895],[36.45804251000004,-18.437157908999893],[36.59365449600011,-18.375519571999916],[36.68726761400006,-18.367009090999943],[36.76517857700014,-18.28917389999998],[36.64296757900007,-18.18444302499995],[36.67995054700009,-18.1166411399999],[36.79090448199997,-18.141295836999973],[36.84638245500008,-18.104314880999937],[36.821727590000194,-17.99336765099997],[36.84638245500008,-17.894745842999896],[36.95733655800018,-17.974874825999905],[37.123767459000135,-17.752979193999977],[37.03130752400011,-17.72832483199994],[37.03130752400011,-17.64819668699994],[36.83654059200012,-17.566589806999957],[36.60046345100011,-17.52543130999993],[36.76623955800005,-17.423835434999944],[37.018001588000175,-17.314131074999977],[37.18632847600003,-17.26317631099994],[37.46495048200012,-17.214028183999858],[37.610710605000065,-17.158892695999953],[38.116939503000026,-16.89313707899987],[38.61436053000017,-16.64368292299997],[39.00350161700004,-16.376620399999922],[39.16807156900012,-16.204100380999932],[39.19786856400003,-16.094671449999908],[39.33074553400013,-15.964000428999952],[39.48728545500006,-15.769095866999919],[39.70795447900019,-15.472198797999965],[39.87366856000017,-15.216997337999885],[39.96737656200003,-15.04043992399994],[40.08780255000016,-14.701444745999936],[40.15159252100017,-14.37822598699995],[40.142402602000175,-14.169158521999975],[40.09159854600017,-13.986331611999901],[40.03998161300018,-13.86710172099987],[39.98717160000007,-13.84386809199998],[39.73916650700005,-13.814959912999939],[39.45035948300011,-13.832254796999905],[39.311359533000086,-13.825155324999855],[39.27939648600017,-13.707307274999948],[39.32368461900006,-13.668187926999963],[39.751373576000105,-13.499722904999828],[39.88650159000008,-13.415761715999906],[40.01705559900006,-13.181286188999877],[40.03698759700006,-13.063153320999845],[40.02680962000005,-12.743967765999855],[39.96370646200012,-12.52396158299996],[39.9010654810001,-12.447682743999906],[39.66242247200006,-12.323931151999943],[39.620769610000025,-12.120393228999887],[39.58026154800018,-12.030119125999875],[39.498607562000075,-11.942454141999917],[39.301650607,-11.773752916999968],[39.13877145200013,-11.735175374999812],[39.046180591999985,-11.679300099999978],[38.89764052700008,-11.478003162999926],[38.70495247499997,-11.420129138999926],[38.626708582000106,-11.42534570099997],[38.52919050300005,-11.473322540999959],[38.381362564000085,-11.450735993999956],[38.27011459300019,-11.406676016999938],[38.213809493000156,-11.316506351999976],[38.26250000000016,-11.288333332999969],[38.378333334000104,-11.383333333999929],[38.486666667000065,-11.415],[38.652500000000146,-11.278333332999978],[38.745000000000175,-11.278333332999978],[38.885,-11.17499999999984],[38.93583333300006,-10.939166666999824],[39.010000000000105,-10.660833332999914],[39.074166666999986,-10.546666666999954],[39.20416666600016,-10.433333333999883],[39.069166666000115,-10.384999999999877],[39.118333333000066,-10.312499999999886],[39.205,-10.313333332999832],[39.27,-10.241666666999947],[39.42500000000018,-10.12833333399982],[39.41416666700013,-10.069166666999877],[39.2925,-10.020833332999871],[39.2825,-9.949166665999883],[39.197500000000105,-9.9075],[39.236666667000065,-9.79],[39.186666667,-9.735],[39.26916666700009,-9.578333332999932],[39.321666667000045,-9.568333332999941],[39.391666667000095,-9.655],[39.450833333000105,-9.57],[39.43166666700017,-9.4675],[39.34,-9.3375],[39.41166666600009,-9.312499999999886],[39.406666667000025,-9.226666666999904],[39.230833334000124,-9.12083333399994],[39.23583333400012,-8.941666666999936],[39.13083333300011,-8.93249999999989],[39.07416666600011,-8.861666666999952],[38.916666666000026,-8.886666666999872],[38.8475,-8.93666666699994],[38.78666666700008,-8.875],[38.723333333000085,-8.752499999999884],[38.63333333400004,-8.850833333999958],[38.63000000000011,-8.92499999999984],[38.54500000000013,-8.96333333299998],[38.42250000000013,-8.88583333399987],[38.44166666700016,-8.736666665999962],[38.485,-8.6825],[38.3225,-8.569166666999934],[38.31083333300006,-8.485833332999903],[38.18833333300012,-8.519166666999979],[38.11,-8.589166666999972],[38.065833333000114,-8.734166666999897],[38.00666666600017,-8.720833332999973],[38.06916666700005,-8.595],[38.03833333300008,-8.515833332999932],[37.97583333300014,-8.474166666999963],[37.966666666000094,-8.3575],[37.92583333300007,-8.3025],[38.00833333400004,-8.194166666999934],[37.97166666600009,-8.105],[38.109166667000125,-8.01416666699987],[38.134166667000045,-7.900833333999969],[38.18,-7.845833333999963],[38.075833333000105,-7.66],[38.037500000000136,-7.530833332999919],[37.98833333400012,-7.530833332999919],[37.825,-7.45166666699987],[37.78500000000014,-7.406666665999978],[37.892500000000155,-7.049166666999895],[37.95416666700015,-6.997499999999889],[38.03,-7.036666666999963],[38.049166667000065,-7.1075],[38.18333333300012,-6.940833333999876],[38.13166666600006,-6.818333332999885],[38.185,-6.715],[38.2875,-6.658333333999906],[38.265,-6.61416666599996],[38.16000000000014,-6.606666666999956],[38.16000000000014,-6.539166665999971],[38.34250000000014,-6.5875],[38.399166667000145,-6.509166666999931],[38.358333333000076,-6.32333333299988],[38.42666666700018,-6.301666666999949],[38.5,-6.188333332999946],[38.545833333000076,-5.9575],[38.583333334000145,-5.90083333299998],[38.4575,-5.784166666999909],[38.34666666700019,-5.806666666999945],[38.34916666700008,-5.746666666999943],[38.49250000000018,-5.67],[38.4525,-5.585833332999925],[38.53166666700014,-5.340833333999967],[38.36500000000018,-5.255],[38.2975,-5.141666666999924],[38.11750000000012,-5.033333332999973],[38.18166666700006,-4.913333332999969],[38.107500000000186,-4.844166665999978],[38.15583333400019,-4.80833333399994],[38.21833333300003,-4.871666666999943],[38.24750000000017,-4.99583333299995],[38.31916666600006,-5.078333333999865],[38.38833333300016,-5.052499999999895],[38.4025,-4.96666666699997],[38.20833333300004,-4.70166666699987],[38.24166666700006,-4.524166666999918],[38.30000000000018,-4.464166666999972],[38.374166667000054,-4.511666666999872],[38.35,-4.61],[38.44416666600017,-4.634999999999877],[38.49583333300018,-4.6975],[38.476666667000075,-4.752499999999884],[38.57083333300017,-4.820833332999939],[38.5816666660001,-4.91],[38.54416666600008,-4.961666666999974],[38.57583333300016,-5.051666666999949],[38.65,-4.961666666999974],[38.62000000000012,-4.8725],[38.7016666670001,-4.8625],[38.6875,-4.965],[38.76000000000016,-5.055833332999896],[38.83583333400003,-5.005833333999931],[38.87833333300006,-4.909166666999909],[38.7616666670001,-4.8475],[38.87083333400011,-4.765],[38.93333333300012,-4.6775],[39.01583333400009,-4.474166666999963],[39.028333334000024,-4.342499999999859],[39.08666666700009,-4.21],[39.165,-4.181666666999945],[39.28416666700008,-4.185833332999891],[39.361666666000076,-4.150833333999969],[39.38000000000011,-4.04],[39.433333333,-3.895833332999928],[39.42666666700018,-3.68666666699994],[39.47583333400013,-3.524166666999974],[39.561666667000054,-3.396666666999977],[39.6875,-3.278333333999967],[39.58666666600004,-3.255833332999941],[39.62000000000012,-3.184999999999889],[39.575,-3.128333332999944],[39.484166667000125,-3.100833332999855],[39.483333333000076,-3.04833333299996],[39.6625,-3.024166666999974],[39.705,-2.895833333999974],[39.788333334000185,-2.989166666999949],[39.910833333000085,-2.85],[39.8908333330001,-2.774166665999928],[40.15666666600015,-2.638333332999935],[40.05333333300018,-2.535833332999914],[40.1375,-2.45],[40.064166667,-2.326666666999927],[40.08083333400015,-2.26416666699987],[39.99833333400005,-2.069166666999877],[40.115833333000126,-1.904166666999913],[40.056666667000115,-1.770833332999928],[40.0575,-1.676666666999893],[40.01166666700004,-1.61083333299996],[39.978333333000194,-1.354166666999959],[39.880833334000044,-1.181666666999888],[39.99083333300007,-1.242499999999893],[40.030833333000146,-1.471666666999965],[40.09333333300009,-1.6725],[40.108333333000076,-1.859166666999954],[40.32,-1.755833332999941],[40.4516666670001,-1.797499999999843],[40.65333333400014,-1.741666665999958],[40.705,-1.5775],[40.81666666600006,-1.384166666999874],[40.915833334000126,-1.420833333999951],[40.93,-1.5775],[41.050000000000125,-1.53],[40.935,-1.409166666999909],[40.8175,-1.3475],[40.86416666700012,-1.2975],[40.97833333300014,-1.300833332999957],[41.01916666700009,-1.266666665999878],[41.17250000000013,-1.4625],[41.29802030600007,-1.352124554999932],[41.37701841100005,-1.21506760099993],[41.27137034200001,-1.013289307999912],[41.30277922800019,-0.940001908999932],[41.53786997500015,-0.902882316999978],[41.552146741000115,-0.826739564999912],[41.47410042000001,-0.683020119999981],[41.48457004900007,-0.608780936999949],[41.55500209400003,-0.51455428099996],[41.567375292000065,-0.383208032999903],[41.60163953000006,-0.315631340999914],[41.698721539000076,-0.222356468999976],[41.71395008900009,-0.112901262999912],[41.774864291000085,-0.02724066699983],[41.858621319000065,0.034625319000156],[41.98806399700004,0.041287810000142],[42.13654236399998,0.261150007000026],[42.33260995100005,0.287799970000151],[42.35259742300019,0.347762388000092],[42.4925097310001,0.536215699000024],[42.52106326300003,0.690404772000136],[42.64193988200009,0.803667116000156],[42.724745125000084,0.815088529000093],[42.75520222600011,0.953097268000079],[42.68857731700018,1.113948832000176],[42.77138256000006,1.144405932000097],[42.87798241400003,1.084443515000089],[42.90939129900005,1.224355822000064],[42.905163669000046,1.427637936000053],[42.98796891200004,1.476178940000182],[43.10146920200003,1.477606617000106],[43.13430576400003,1.533999843000174],[43.16571464900005,1.709604065000178],[43.23781231800018,1.809541427000113],[43.40913351000006,1.773849512000027],[43.49550794400005,1.780987895000123],[43.63827560500005,1.890205155000103],[43.67539519700017,2.097932101000026],[43.76533882300009,2.130054825000059],[43.93309082300004,2.112208867000163],[44.0701477770001,2.000136254000097],[44.22590084800015,2.009130236000146],[44.406796382000095,2.151286430000084],[44.733377405000056,2.131655877000014],[44.90826778900015,2.267285153999978],[45.090754861000164,2.263119767000035],[45.19184604900016,2.34986315600014],[45.23438028000004,2.353676708000023],[45.43846788900004,2.573778861000051],[45.39544481600018,2.815050285000041],[45.43256440700003,3.074887427000021],[45.47502787200011,3.207485231000078],[45.53596117700005,3.268418536000127],[45.61530701300006,3.224793470000122],[45.693829226000105,3.064893691000179],[45.71297054700017,2.760292083000138],[45.740096402,2.636084219000054],[45.81861861500005,2.67891451700018],[45.852882854000086,2.887355301000184],[46.02563172300006,3.031550638000169],[46.01706566300004,3.140054060000068],[46.17125473600004,3.284249397],[46.145556557000134,3.435583117000078],[46.16982705999999,3.501256240000089],[46.331154516000026,3.558363304000068],[46.481060559000184,3.535520479000184],[46.58528095100007,3.552652598000066],[46.678079931000184,3.709697024000093],[46.78658335200004,3.738250557000185],[46.86796091900004,3.902433366000082],[46.96932595800001,3.932414575000166],[47.02928837500008,4.035207290000187],[47.16348997600005,4.212239189000115],[47.34623258100015,4.376421998000069],[47.598622009999985,4.496870314000091],[47.68190314500015,4.60870498200012],[47.71402586900018,4.769318600000076],[47.80135208799999,4.923745619000158],[47.99072265600006,5.020690918000071],[48.10687255900018,5.144897461000085],[48.16790771500007,5.069519043000071],[48.09271240200013,4.937072753999985],[48.02331543000014,4.7293090820001],[47.95410156200012,4.688720703000058],[47.915283203,4.778320312000062],[47.86248779300013,4.768127441],[47.81768798799999,4.584716797000112],[47.76068115200019,4.454284668000128],[47.35131835900012,4.175292969000111],[47.249328613000046,4.049072266],[47.17810058600014,3.845275879000155],[47.10272216800007,3.763916016000167],[46.92547607400007,3.627502441000161],[46.844116211000085,3.543884277000132],[46.703491211000085,3.350524902000132],[46.48968505900007,3.134521484000061],[46.39392089800003,3.020507812000062],[46.275878906000116,2.827087402000075],[46.1760864260001,2.739501953000172],[46.01307251400016,2.563375996000048],[45.77684792100018,2.362408805000143],[45.723961818000134,2.344780104000051],[45.49478870600018,2.193173276000095],[45.364336319000074,2.157915874000025],[45.25503837300016,2.04156644700015],[45.22692871100014,1.960083008000026],[45.39428710900006,2.047302246000129],[45.89831543000008,2.351684570000032],[46.10412597700014,2.515075684000124],[46.34527587900004,2.78649902300009],[46.57568359400011,2.971679687000062],[46.80688476600005,3.203918456999986],[46.87207031200012,3.293090820000145],[47.13812255900018,3.573730469000111],[47.215881348000096,3.668518066000161],[47.42852783200004,3.869323730000076],[47.624084473000096,4.095886230000076],[47.939514160000044,4.438476562000062],[48.0078735350001,4.536682129000155],[48.197509766,4.883300781000059],[48.31488037100007,5.056091309000124],[48.65148925800014,5.492309570000032],[48.98571777300009,6.044677734000174],[49.08367919900013,6.28210449200003],[49.08532714800015,6.390930176000154],[49.21110149800012,6.733143306000045],[49.39744947900016,7.048994372999971],[49.603881505000174,7.329425026000081],[49.74208048000014,7.559164275000057],[49.83626960300006,7.764547557000014],[49.809570559000065,7.817692511000075],[49.83533049400006,7.934154362000072],[49.984401469000034,8.09524481900013],[50.129219466,8.197920283000087],[50.156879579000076,8.309346286000164],[50.33201961400016,8.550229946000059],[50.338539561,8.64957980600019],[50.379520529000104,8.695576841000104],[50.44340152799998,8.892528766999988],[50.64088855500006,9.076329655],[50.655040560000145,9.202781561000108],[50.810081629000024,9.38393376700003],[50.84656151600012,9.465051982000091],[50.79864150500009,9.559913333],[50.85145151800003,9.853899534999982],[50.89825053400011,9.991268702000013],[50.88206859900015,10.094969608000156],[50.909768168000085,10.316464673000155],[50.89926528900014,10.395778656000118],[50.9573117760001,10.438003818000084],[51.01898950200007,10.40694756500011],[51.10820061200013,10.493522734000123],[51.062219693000145,10.606355890000145],[51.065077429000155,10.68260366200019],[51.12953275400014,10.74837906300013],[51.116599614000165,10.939081573000067],[51.17847851200003,11.130617449000056],[51.086368604000086,11.186104307000107],[51.083980600000075,11.33804289799997],[51.119819606000135,11.490912551],[51.225429575000135,11.641041993000101],[51.2846105050001,11.810751560000085],[51.14027061200011,11.873026083000127],[51.05435157800008,11.871696378000138],[50.80575958500003,11.978520046000142],[50.58153160500012,11.911253597000098],[50.49285861300018,11.73069684100011],[50.43152956800003,11.669550186000151],[50.26052047100018,11.579767263000065],[50.064010606000124,11.50281150100011],[49.93952962100008,11.508571042000142],[49.86138161700006,11.46733492800007],[49.692150489000085,11.476494504000186],[49.54692060500008,11.438657085000045],[49.50939951900011,11.38006020500012],[49.42203158900014,11.332713349000187],[49.29597849400005,11.331984291000083],[49.20678264000003,11.264517340000111],[49.08928869500011,11.269273233000092],[48.95531850300017,11.237580927000124],[48.87960057999999,11.245709194000028],[48.66204861800003,11.321724171000085],[48.360099609000144,11.268987583000069],[48.241611516000034,11.203692389000139],[48.15349960900005,11.128367411000056],[47.97175949600012,11.11160846600012],[47.80221957900011,11.121228041000165],[47.674388513999986,11.08942005900002],[47.57688854000014,11.149687117000155],[47.45066694200011,11.121018315000072],[47.37820860100015,11.15770558100013],[47.15039853100018,11.06168300100012],[47.10749056300017,10.991707017000124],[47.017261554000186,10.959888977000048],[46.87051052300012,10.85767636200012],[46.666789539000035,10.744245072000126],[46.44966153400003,10.679939614000034],[46.34471859700011,10.688898024000139],[46.2362286070001,10.779601616000036],[46.096939481000106,10.761644059000105],[45.895694417000016,10.78887215300017],[45.80825208100015,10.860936699000092],[45.597209575000136,10.76414287200015],[45.4606014850001,10.663169939999989],[45.324451549000116,10.65933991300011],[45.23324956900018,10.561216996000098],[45.08797056800012,10.507730730999981],[44.943489523000096,10.410057586000107],[44.725769588,10.416786913000067],[44.6156194780001,10.381339342],[44.410400481000124,10.391029660000129],[44.28818160300017,10.430617054000152],[44.21830115100005,10.490214821000052],[44.11974334700011,10.50703811600016],[44.064441618000046,10.607943592000026],[43.977763868000125,10.67121647199997],[43.88251876800018,10.651734352000062],[43.82308960000012,10.693817139000089],[43.828660006,10.79390044500019],[43.69219962100004,10.94001162900014],[43.564090729000156,11.126223564000043],[43.467178345000036,11.201981544000091],[43.483699612,11.348502340000152],[43.325157166000054,11.37293720200006],[43.279978242000084,11.468968092000011],[43.191236995000054,11.528020684000012],[43.09682846100003,11.525362968000024],[43.03306955300019,11.59715518600018],[42.80368050000004,11.582675951000056],[42.66025959900003,11.51846152000013],[42.70341148000006,11.636273528000174],[42.771739582000066,11.732805728000073],[42.87582052300007,11.779142732000082],[42.946361615000114,11.765703692000159],[43.08821161100008,11.844209642000123],[43.08120346100003,11.920044899000061],[43.23453521700003,12.027014732000168],[43.41550059200017,12.090542170000049],[43.398818593000044,12.239162030999978],[43.35580853300013,12.382142547000058],[43.16490146800004,12.631035618000169],[43.098949468000114,12.74586668600017],[43.08034851600007,12.828202121],[42.891178517000185,12.800184101000127],[42.824771548,12.858830266000155],[42.77439848900008,12.844140310000057],[42.73588146500015,12.955023669000184],[42.73818950600008,13.035667133000118],[42.66572158200012,13.052526158000148],[42.5540100070001,13.196651977000045],[42.4923705810001,13.176658959000122],[42.388278575000186,13.20189720500008],[42.3521886150001,13.391504572000088],[42.28937161500005,13.552233599999965],[42.11217147600007,13.629718428000047],[41.963710536,13.847393100999966],[41.85589948000006,13.861902175000182],[41.79917947600012,13.925677897000185],[41.6816905070001,13.942516806000128],[41.648399599000186,14.024401294000086],[41.54304846400004,14.13248425900008],[41.480789531000084,14.24654670700005],[41.33852047100004,14.407696339000154],[41.288989458000174,14.512159495000049],[41.18376153700012,14.617762423000158],[40.90024148200007,14.719626854000069],[40.74597959500011,14.732414956000184],[40.74554055100003,14.807030994],[40.686069607000036,14.881575282000142],[40.61902946900017,14.885674871000163],[40.54280653700005,14.998432675000174],[40.364379539000026,14.957640383000069],[40.29722959800006,14.896474283000032],[40.16062955400014,14.977489903000048],[40.07727856800017,15.151607848000083],[40.0189894720001,15.232402690000129],[40.085571455000036,15.319087159000105],[39.88811158600009,15.462368753000078],[39.82849848400008,15.467627391000121],[39.77476847300005,15.389342427000088],[39.78168153200011,15.26014176000001],[39.84601004000018,15.156593572000133],[39.77750047100011,15.05590512200007],[39.6933285610001,15.120899908000013],[39.712341567000124,15.23879221400017],[39.653499601000135,15.340165634000016],[39.61436047200016,15.482286502000022],[39.54014961500013,15.528824505000102],[39.45917858700011,15.520294912],[39.47269055000015,15.645736129000056],[39.43059160300004,15.799026218000108],[39.30205947600018,15.891901393000182],[39.234981619999985,16.075269775000095],[39.19435151700009,16.28650630800007],[39.186569591000136,16.424557762000177],[39.146930565000105,16.53004015800002],[39.14767051900003,16.63749347400011],[39.11499048500002,16.78051539700016],[39.062271499000076,16.890188745000046],[38.931541469000194,17.369138069000087],[38.81612048300008,17.612893033000034],[38.60076960900017,17.924304205999988],[38.54182856900019,18.08276559400008],[38.49369850700009,18.051106475000097],[38.3311615020001,18.167850293000015],[38.10504155900003,18.26754347600007],[38.07302855600011,18.344587751],[38.10737960700004,18.412865729000032],[38.01937850799999,18.462792703000105],[37.91875057600015,18.577235018000124],[37.79978957700018,18.615823624000143],[37.73852155200012,18.707577133000143],[37.673919542000135,18.736015421],[37.54032156100004,18.71731740700011],[37.42153959900003,18.8466387740001],[37.389911493,19.022749433000172],[37.33684951999999,19.138272678000135],[37.29183953799998,19.477472710000086],[37.24457951800014,19.548067781000043],[37.26335950700013,19.844221710000113],[37.17977952700005,20.036440711000182],[37.21078854600006,20.153792887],[37.186920574,20.37141156900003],[37.23279154500011,20.56224085000008],[37.17560953100019,20.687032804000125],[37.16740046200016,20.87374221200014],[37.087390503000165,21.05447213800005],[37.155940557000065,21.217353304000028],[37.24029150400008,21.021304276000023],[37.31312957200009,21.0686015120001],[37.02220947100005,21.400584222000134],[36.91374948700019,21.59012386300003],[36.86275851500005,21.97506209600016],[36.88058045300005,22.061227391000045],[36.64751861700006,22.21709910600009],[36.572151561000055,22.290806210000085],[36.434440580000114,22.359232380000094],[36.42444951900012,22.421889118000024],[36.29520057200011,22.504923771],[36.253608562000124,22.60749932300007],[36.171970502000136,22.658786512000177],[35.95196951500009,22.68181445000016],[35.843669459000125,22.760920338000062],[35.66979944999997,22.94609066000004],[35.660430494000025,23.063134383000033],[35.57592045800004,23.211976867000033],[35.53480957000011,23.422326092000105],[35.48738057100019,23.491333630000042],[35.5169904820001,23.75892907400015],[35.474838562000116,23.802535758000033],[35.51034145400007,23.977069111],[35.694381561000114,23.91004221600008],[35.72216052900012,23.991247267000176],[35.60792960500004,24.01915581999998],[35.584579467000026,24.086373487000117],[35.51169949000018,24.110292253000125],[35.31444950300005,24.360719045000053],[35.22851957300003,24.407417478000013],[35.13835946400002,24.51782122400016],[35.165821596000114,24.566278683],[35.10268055100016,24.63910535200006],[35.076778459000025,24.744811041000048],[34.997619598000085,24.82397644100007],[34.94787954000003,25.000728650000156],[34.81314849300014,25.198488424000118],[34.70117951000009,25.396720099000163],[34.63853048300018,25.577041324000106],[34.573390523000114,25.691444076000153],[34.41881146400004,25.867877941000188],[34.30651860400013,26.085846987000025],[34.223659468000164,26.20295240000013],[34.18103045000015,26.32819697700012],[34.113391509,26.403362532000017],[34.017700517000094,26.610964001000127],[33.9353595500001,26.674180147000186],[33.95148851100015,26.845482779000122],[33.90695948200005,27.049903819],[33.83275952300005,27.108792053000116],[33.838058562000185,27.25748466900012],[33.728050609000036,27.3090135920001],[33.62631945000015,27.492654385000094],[33.50212059900019,27.658218598000133],[33.546798490000185,27.700416619000066],[33.47257958700004,27.811041984000155],[33.58399955600015,27.805221422000102],[33.56515150500019,27.88123908200015],[33.48814059100005,27.982873681000058],[33.334308527000076,28.085389554000074],[33.12800960600009,28.29025097900012],[33.11272051200001,28.35041745300009],[32.92744860000016,28.550050583000143],[32.86613045200011,28.56938076],[32.813381459000084,28.761363056000164],[32.67819946500009,28.881646049000096],[32.62009845900013,28.9790241500001],[32.6667405660001,29.09501879300018],[32.59061846800017,29.345689834000098],[32.34164057200002,29.593719234000105],[32.35300861200005,29.688116731000036],[32.53969957900017,29.950465774000065],[32.624992485000064,29.873145902000147],[32.60943952800011,29.81953776400013],[32.692214510000156,29.73481784500018],[32.689716536000105,29.614543402000038],[32.74055445500011,29.449828946000082],[32.82499659700011,29.382054553000046],[32.88527656300005,29.236783263000177],[32.946102525000015,29.20622820900013],[33.10055552000017,29.040401809000173],[33.17027250300009,29.00290134200003],[33.17416355000012,28.82235565100018],[33.224998452000136,28.75624506600019],[33.196388501,28.669582725000055],[33.22027558400015,28.583752204],[33.4313885680001,28.361539065000102],[33.56555149000013,28.29209902100007],[33.62749459300011,28.18765715400002],[33.805549518000134,27.98711157100007],[33.92166150800006,27.931004117000043],[34.049438593000104,27.81295205200007],[34.25499756000016,27.78739613199997],[34.288604466000095,27.857115964000116],[34.43027455499998,27.97127513900017],[34.45304852100014,28.164327300000082],[34.406105505000085,28.308208201000127],[34.46083061600001,28.439036131000137],[34.62638845800012,28.729025170000057],[34.64332560300005,28.96290591800016],[34.680271523000044,28.979013421000047],[34.69888353900012,29.165675890000102],[34.74777249800019,29.310667393000017],[34.869438505000176,29.478438896000057],[34.97867082100015,29.544308688000115],[34.97629302300004,29.40143258400019],[34.93004075800019,29.231026060000147],[34.85395268100012,29.043920337000145],[34.83055509999997,28.788857214000075],[34.77973859000008,28.669366427000114],[34.80713644900004,28.519897726000124],[34.652619148000156,28.17178445000019],[34.76128843000009,28.095423567000125],[34.86261584200008,28.116632857000127],[34.93038725300016,28.078457280000066],[34.991167604000054,28.112390871000116],[35.2208787400001,28.05229277900014],[35.246329554000056,27.966587388000164],[35.429322237000065,27.773743246000095],[35.539644307000174,27.530643768000175],[35.65021508500007,27.384186431000103],[35.76757661300013,27.30369710800005],[35.8164318260001,27.195109400000092],[35.80389396900017,27.112210154000024],[36.019683838000105,26.928017171000192],[36.11316681000011,26.72850036600005],[36.21076251699998,26.662660353000035],[36.45151102900007,26.24312661900018],[36.497587585000076,26.11425476100004],[36.557898182000145,26.068925520000164],[36.68472239300007,26.045833333000076],[36.70972239200006,25.9625],[36.67097632200017,25.844406113000048],[36.77916666700003,25.73333333300019],[36.81250000000017,25.766666667000038],[36.92464435700015,25.655779391000067],[37.00972239200007,25.504166667],[37.081127421000076,25.44779459600005],[37.092129517000046,25.350462850000042],[37.25175120000006,25.176751709000087],[37.242548551000084,25.068157306000046],[37.28632812500007,24.987500000000182],[37.27032826700014,24.86300455700001],[37.2200002030001,24.803333537000015],[37.22544677100012,24.70967284900007],[37.29417578600004,24.67758680100019],[37.45767253400015,24.43971612000007],[37.42583313000006,24.38750000000016],[37.49677882300011,24.288965148000102],[37.576161803,24.248443451000128],[37.68412182500009,24.303648694000174],[37.74830560800018,24.26829657400009],[37.855091154000036,24.154102859000034],[37.93517367600009,24.16247617000016],[38.03761189800019,24.0707214360001],[38.07916666700004,24.075000000000102],[38.22164661200014,23.960107673000095],[38.4,23.92083333300002],[38.4328704830001,23.81712951700007],[38.56250000000017,23.593750000000114],[38.66807007500012,23.51251509000008],[38.698647025000184,23.37914563100003],[38.81955108600016,23.177884928000026],[38.8198130290001,22.988520304000076],[38.91934065500004,22.98605196500006],[39.02501099500017,22.862485116000187],[39.020874114000094,22.786132673999987],[39.11799612900006,22.407623382000054],[39.112068190000116,22.355836673000056],[39.08781946100004,22.248389317000147],[39.04381997899998,22.21194947600003],[39.05235038600017,22.070811918000175],[38.97378485700011,21.97508741100006],[39.10310767400017,21.71719594300015],[39.14821811600012,21.533916657000134],[39.177715879000175,21.511973199000124],[39.16818306500011,21.35684014600008],[39.10610712700009,21.321647300000166],[39.19790723100016,21.183693631000097],[39.19840028600015,21.10511990500015],[39.28210875000002,20.963798812000164],[39.42297533700008,20.825316924000163],[39.53753463000004,20.63648318700018],[39.78071131100006,20.362819490000106],[39.99455323100017,20.269649725000136],[40.07166646300004,20.31166585300008],[40.177166748000104,20.218833415000063],[40.244167074000075,20.194167074000063],[40.27084182600004,20.12009246800011],[40.37795108200004,20.078004197000155],[40.55241955900016,19.95245884000019],[40.54449971500014,19.905499268000142],[40.628772,19.787703040000167],[40.73732017100019,19.79408822700009],[40.80360209100007,19.704166667000038],[40.80515909900009,19.614382127000113],[40.862505800000065,19.54578541000012],[40.96071472200015,19.49083667300016],[40.95888657300014,19.35317532400012],[41.04972229000009,19.24972127300009],[41.07916666700015,19.115832520000083],[41.15037878700008,19.09747337000016],[41.13250020300012,18.9625],[41.19084827900008,18.863739571000053],[41.24336868700016,18.84584306100004],[41.21791787300003,18.707077670000103],[41.296412171000156,18.586932374000128],[41.354165164000165,18.582521566000025],[41.42070455300012,18.480654853999965],[41.47783940600016,18.292226535000168],[41.5830426230001,18.148508747],[41.661250008000025,18.005563946000166],[41.78257429200005,17.848152016000085],[41.87662455200012,17.807263028000136],[42.13595682800002,17.610955811000167],[42.279913330000056,17.453420003000133],[42.32315909900018,17.339018491000047],[42.36257497300011,17.182367073000023],[42.42777811700006,17.154166667000084],[42.44392524000017,17.06076555700008],[42.54573783300009,17.008467230000065],[42.54054997100019,16.88344370300007],[42.662379902000055,16.793169532000093],[42.740560029000164,16.64277384500008],[42.71933552000007,16.565984721],[42.77761209700009,16.45571485900018],[42.75869503900003,16.423201923000136],[42.82065120300007,16.196095798000044],[42.84025000800011,16.056382127000177],[42.812704553000174,15.870654854],[42.6982115190001,15.730310020000047],[42.69303808400008,15.637900442000046],[42.773056030000134,15.464721680000139],[42.799825352000084,15.258987013000137],[42.70566633300018,15.307100741999989],[42.66537670600019,15.234615385000154],[42.795833333000076,15.183333333000064],[42.87087665100012,15.111463981999975],[42.867129387000034,15.033808911000165],[42.92087409900017,14.966707348000057],[42.94842755400009,14.87098559500015],[42.92638855100006,14.804166667000061],[43.019985927000164,14.545987076000074],[42.99308965900019,14.404234597000084],[43.07666626000008,14.2125],[43.103733317000035,14.062933350000037],[43.15862347600017,13.953779810000185],[43.230147298000134,13.879166667000106],[43.28455993400007,13.70118136400015],[43.291666667000015,13.595833333000087],[43.25833333300017,13.504166667000106],[43.253186035000056,13.261519368],[43.28785324700016,13.161282776],[43.350207726000065,13.081926528],[43.44565184400017,12.88588871900015],[43.496051439000155,12.837051851000012],[43.458398886000055,12.700370826000096],[43.531089274000124,12.6875],[43.57916666700015,12.743750000000148],[43.795705545000146,12.689023442000178],[44.04583333300019,12.6],[44.14083353700016,12.659167480000065],[44.287500000000136,12.626389567000103],[44.424722290000034,12.679166667000061],[44.52944030800006,12.812227376000124],[44.650270394000074,12.81202165700006],[44.74361063600003,12.776944987000036],[44.829166667000095,12.78125000000017],[44.995454915000096,12.85378824900016],[45.21488138800015,13.043452962000117],[45.3875,13.068750000000136],[45.515024821000054,13.22664184600012],[45.63898111999998,13.344352214000082],[45.838896688000034,13.39443766300002],[46.245833333000064,13.43267618800013],[46.43428775100017,13.407464543000174],[46.61250116600013,13.435251835000145],[46.70416666700015,13.428240967000079],[46.90681254200007,13.53485514300013],[47.20305582800006,13.596944173],[47.39570922900009,13.65404256200003],[47.61706950000013,13.849597168000173],[47.720833334000076,13.91369018600011],[47.795833334000065,13.928887939],[47.96527710000004,14.051389567000115],[48.07012233800015,14.053445810000028],[48.19440864600011,13.973496080000075],[48.51907959,14.030920410000022],[48.63333333300011,14.070833333000053],[48.695524090000106,14.053857422000135],[48.82123611100019,14.154439676000095],[48.86208503500018,14.233375033000016],[48.966307768000036,14.307936273000166],[48.98593005100008,14.378496368000071],[49.07514445000015,14.508188883000173],[49.17992350300017,14.545833333000019],[49.34583333300009,14.64398193400018],[49.62083333300018,14.758929443000113],[49.84625040700007,14.812500000000114],[49.92916666700012,14.851080322000143],[50.18092651400008,14.84583333300003],[50.4723205570001,15.027679443000125],[50.920607503000156,15.120607503000087],[51.46826985700011,15.281730143000061],[51.48842570000011,15.311574300000132],[51.662166341000045,15.329500327000176],[51.65416666800007,15.398610433000101],[51.822813372000155,15.455309017],[51.88999272900014,15.508818677000022],[52.1958253410001,15.60435823600011],[52.22634887700019,15.631984456000112],[52.16955159500009,15.854166667000129],[52.15083414700001,15.987500000000182],[52.2083333330001,16.14583333300004],[52.28462727900006,16.265372721000176],[52.420833333000076,16.3986104330001],[52.60541585300007,16.48625081400013],[52.71281738300013,16.512817383000083],[52.841115725000066,16.57874211500007],[53.10342610700019,16.6382405600001],[53.19591878300014,16.68758544900004],[53.479353841000034,16.75397949200004],[53.65297648100005,16.763690187000122],[53.798610433000135,16.87916666700005],[53.980198160999976,16.911468506000062],[54.026691978000144,16.985055816000113],[54.24027710000013,17.026389567000138],[54.628326416,17.028326416000084],[54.729961818000106,16.95420906900017],[54.89567871100013,16.962345379000112],[55.07155761700017,17.0375],[55.25865478500003,17.22916666700013],[55.24137151300016,17.26589599600004],[55.29290547700015,17.406464296000024],[55.225762939000106,17.5125],[55.27306240200011,17.6313985700001],[55.370833334,17.67253621400016],[55.40022653900007,17.777718267000125],[55.44804891000018,17.835284424000122],[55.654166667000084,17.895363363000058],[55.91832597000018,17.89831735300004],[55.97669197100009,17.930872812000132],[56.10151787100017,17.92250911700006],[56.244317627000044,17.94431762700009],[56.31726523000009,17.913336032000018],[56.462093099000185,18.06250000000017],[56.556221517000154,18.13122151699997],[56.62127278600008,18.478727214000173],[56.59684244800019,18.586490885000103],[56.79583333300013,18.75297648100002],[56.889593780000155,18.814096993000078],[57.06001530700007,18.882715265000172],[57.36479554900018,18.95807845300004],[57.68750000000017,18.932576497000127],[57.84050020500018,18.999668222000082],[57.76388956700015,19.180556234000164],[57.745833333000064,19.305832926],[57.76833292599997,19.37333374000019],[57.702315267000074,19.520833333000155],[57.66388956700018,19.686110434000057],[57.740277100000185,19.804166667000175],[57.816884741000024,19.981686805000095],[57.826041667000084,20.204166667000095],[57.99213053400018,20.43286946600017],[58.06599528000004,20.459004720000053],[58.07200927700018,20.55299072300005],[58.171466064000185,20.611867269000015],[58.267535019000036,20.58747013600015],[58.20000000000016,20.404166667000027],[58.287500001000126,20.368056234000107],[58.44583333300005,20.35297648100004],[58.525820310000086,20.420825761000117],[58.59166666800019,20.6375],[58.68825683600005,20.720076497000093],[58.629166667000106,20.768056234000085],[58.73779703800011,20.85446370400018],[58.80416666700006,20.98988037100014],[59.0253519690001,21.24131469700012],[59.183864340000184,21.3661356610001],[59.34725876100009,21.432699798000158],[59.34305623500018,21.4625],[59.44433797300013,21.613995361000036],[59.52519938200004,21.791467285000067],[59.64903767900017,21.93750000000017],[59.673105877000125,22.068560791000152],[59.81265055400007,22.229317220000098],[59.840972900000054,22.42916666700006],[59.77805582700017,22.530277507000108],[59.52638956800013,22.579166667000095],[59.382514491,22.675156333000018],[59.24006187900011,22.83379674200006],[59.19671455700018,22.93595972700018],[59.05426194600017,23.059976237000058],[58.977999435000015,23.206116069000075],[58.7958867210001,23.408283665000056],[58.75403623800008,23.522561581000105],[58.6164719730001,23.564675769000132],[58.60131980900013,23.616048095000053],[58.31416625999998,23.60583292600012],[58.19583333300011,23.68194478400011],[58.095833333000144,23.71583353699998],[57.862500000000125,23.714166260000184],[57.77083333300004,23.768055216000107],[57.55416666700012,23.791666667000186],[57.4860241610001,23.827187874000174],[57.14578654000019,23.95421346000012],[56.94802653000016,24.098026531000073],[56.730603027000086,24.372269694000124],[56.57151692700006,24.52984924300017],[56.52091878300007,24.64574788400006],[56.45452270500016,24.712856038000098],[56.46257120700011,24.779136149000067],[56.404789225000115,24.863121541000112],[56.359266343000115,25.012752885000168],[56.357857717000115,25.189837333000128],[56.38073967200006,25.326025873000106],[56.356900113999984,25.373834037000165],[56.357914586000106,25.54714128800009],[56.26467488600014,25.623007202000167],[56.27138875300011,25.704166667000095],[56.35006510500017,25.77493591300015],[56.42977041800003,25.937357123000083],[56.419551596000076,26.03878173800007],[56.33750000000015,26.154960124000127],[56.386533610000185,26.195833333000053],[56.44613807900009,26.337195705],[56.345611572000166,26.36272176100016],[56.289166260000115,26.222499593],[56.18742182400007,26.23719075000008],[56.17589314800006,26.17916666700006],[56.089646819999984,26.077021837000075],[56.0705289710001,25.989656086000025],[55.966439699000034,25.771252341000036],[55.784168957000134,25.69440629200011],[55.647234967000145,25.5858916950001],[55.6358866380001,25.539113363000126],[55.52054203800009,25.51857473900003],[55.45809497100015,25.39937589699997],[55.26592773300018,25.25267560800006],[55.09148928100012,25.033628399000122],[54.956848070000035,24.960937432000094],[54.811995904000185,24.85683217200011],[54.708354195000084,24.81420938800011],[54.65612747800009,24.734244090000118],[54.646684598000036,24.59880619000012],[54.57175158200005,24.499679148000098],[54.56259798600013,24.43647856299998],[54.48258576600017,24.425624634000144],[54.41574850900008,24.27140580100007],[54.21258518300016,24.24164591100009],[54.16518757300008,24.29384608400005],[54.12570733600012,24.248340389000134],[54.00370288200014,24.110192784000162],[53.80857937700006,24.04997566300017],[53.707379730000014,24.066509899000096],[53.57766384300015,24.046808642000087],[53.53866922900011,24.0866129960001],[53.410969984000076,24.10915083000009],[53.23921194000013,24.09555742100008],[52.978714872000126,24.155391926000163],[52.86998396300015,24.13196811600011],[52.76442417400017,24.126471690000074],[52.640746772000114,24.16785106500015],[52.45674587300016,24.0919132680001],[52.28286689000015,23.984507952000115],[52.20774109400003,23.96368939000007],[52.0334098030001,23.974022075000164],[51.884596797000086,23.97773438500019],[51.78367403200008,24.03320470700004],[51.764294767000024,24.159899204000055],[51.78172323100006,24.263440446000118],[51.63693563600009,24.21255855400011],[51.537500000000136,24.24880981400014],[51.49120279900012,24.307870482999988],[51.387541501999976,24.32208479900015],[51.26721221200006,24.289709203000143],[51.294821399000114,24.415974018000156],[51.454166667000095,24.556548056000054],[51.4125,24.618055217000176],[51.50787079300005,24.851245888000108],[51.597916667000106,24.954166667000038],[51.62361043300007,25.1875],[51.5923151990001,25.274180953000155],[51.52901192100012,25.29056660000009],[51.52427313200013,25.452179542000124],[51.476389567000126,25.51250000100009],[51.52541707400013,25.699582926000176],[51.6,25.79626799700003],[51.58262950000005,25.90842781400005],[51.4,25.97083333300003],[51.35833333300013,26.104166667000015],[51.24861043300007,26.15694478400019],[51.06347765000004,26.049484089000146],[51.04014945900013,25.977765543000032],[50.89892892100005,25.707879002000027],[50.93095569900015,25.605147560000034],[50.80535685199999,25.52083333300004],[50.75235034000008,25.437693798000055],[50.80019505700005,24.986455504000105],[50.86026898600005,24.89585226200012],[50.86863268100012,24.781368565000037],[50.76518511300003,24.723557938000056],[50.71808617099998,24.868243075000066],[50.556018066000036,25.08101806600007],[50.55441487600012,25.18725077300013],[50.487858073000154,25.403808594],[50.38173014300014,25.431731160000027],[50.30459391300013,25.545406087000174],[50.149385579000125,25.69938557900008],[50.195052389000125,25.74707308400002],[50.10156250000017,25.9125],[50.11583252000014,25.97416687000009],[50.009373529000186,25.982990604000065],[50.00500081400014,26.162500000000136],[50.04377450100009,26.202117533999967],[50.15520691100005,26.133918077000033],[50.22361043300015,26.22083333300003],[50.22986043300017,26.34652811700016],[50.20365187300007,26.396567327000128],[50.06583252000007,26.46583353700015],[49.99166666700006,26.616666667000175],[50.05711687000013,26.73194478400012],[49.96364490600013,26.832272491000083],[49.775010208000026,26.90378844300011],[49.66666666700013,26.987500000000125],[49.51290469700007,27.17950073300011],[49.48750376000004,27.07638855000016],[49.28004353800003,27.17171020500018],[49.24830322300005,27.214968872000156],[49.233795462000046,27.356563946000165],[49.27194417300018,27.43750000000017],[49.218826388000195,27.530775925],[49.03988637100008,27.560836672999983],[48.9726530800001,27.621015748000048],[48.8481590990001,27.60720031],[48.849294959000076,27.60730823100016],[48.85435384100015,27.69564615900009],[48.78095296200007,27.70595194500015],[48.805517578000035,27.827815755000074],[48.7625,28.009166463000042],[48.623610433000124,28.07638855000016],[48.61666666700006,28.2083333330001],[48.514583333000076,28.345833334000133],[48.54583333300019,28.408333333000144],[48.4969405810001,28.496917599000028],[48.42416585299998,28.54083353700014],[48.390277100000105,28.61250000100017],[48.3875,28.742499798000097],[48.28125,28.812500001000046],[48.2875,28.883333334000042],[48.21694539400016,28.916944378000096],[48.16845296200012,28.995833334],[48.13499959300003,29.137500001000035],[48.05595614900011,29.33815425100005],[47.98721377900006,29.388686998000026],[47.892432424,29.325374885000144],[47.82036336200002,29.371303304000037],[47.696520996000174,29.36318766400018],[47.83864949500003,29.503017172000114],[47.99988528600005,29.62349832600006],[48.22470857000019,29.592878529000075],[48.356376535000095,29.711484806000044],[48.34777050000008,29.780371310000135],[48.18853747300005,29.98007467900004],[48.13276646900016,29.96647235900008],[48.13999150200016,29.870364787000142],[48.05081961900004,29.78092837100013],[48.01348063200015,29.838480632000028],[47.99790677800013,29.98700429700017],[48.09387946700019,30.043694330000164],[48.189712616000065,30.02758515100004],[48.38388057700013,29.937863247000166],[48.52471147000006,29.920644136000135],[48.64693453800004,29.963420341000187],[48.689155526000036,30.0300837960001],[48.908332571000074,30.031193728000062],[48.94332852500003,30.160915079000063],[48.85999262600018,30.31284931200014],[48.918876502000046,30.408681958000102],[49.02999857800006,30.419790494000097],[48.97277046300013,30.508120330999986],[49.10026558100009,30.51423124100006],[49.26249647900005,30.417566607000083],[49.18444050800008,30.36396064800016],[49.05305451100003,30.40423804000011],[48.995544597000105,30.386458850000054],[49.00665246300014,30.293685096000104],[49.15470855700005,30.22313059300012],[49.20999156700003,30.22313059300012],[49.277770486000065,30.14730152700008],[49.35304249100011,30.169799561000104],[49.479713500000116,30.153690381000047],[49.496665564000125,30.06785935700003],[49.581657559000064,30.007306645000085],[49.839721606000126,30.165633755000044],[50.00638552500004,30.21702387400012],[50.077499603000035,30.182025405000047],[50.143051618000186,30.05480588400013],[50.13138551700007,29.956477778000135],[50.23638159500007,29.862590236000187],[50.38721461400013,29.659545840000135],[50.44749457900019,29.634544802000107],[50.66860952000019,29.406774462000044],[50.69082659300017,29.275115718000052],[50.63055450700017,29.191782837000062],[50.67472059800008,29.116509993000022],[50.80971550800007,29.137897927999973],[50.92527747700018,29.0606771300001],[50.89416452299997,28.965125781000097],[50.80499247300014,28.917905659000155],[50.876106551000134,28.830133219000118],[51.004165603,28.801798195000117],[51.07083157300019,28.697360519000142],[51.0874555690001,28.494388878000166],[51.14916247000019,28.382649223999977],[51.283332600000165,28.23376751300009],[51.26388557900003,28.11599322300009],[51.60638456000004,27.8401719470001],[51.792221579000056,27.849338564000163],[52.042770580000195,27.819893776000185],[52.224159491000194,27.684619247000057],[52.49971757500009,27.60684859600002],[52.59887649600017,27.477406362000124],[52.66304750799998,27.449075362000087],[52.60305051600005,27.349080598000057],[52.75638553200008,27.28741929500012],[53.03027360700008,27.098813733000156],[53.109992547000104,27.082426274000056],[53.44387861900009,26.969928225000103],[53.48193363300015,26.856881329000146],[53.71332562600014,26.699940250000054],[53.93138150800007,26.70827488000009],[54.02526854600012,26.743551293000053],[54.12582355700005,26.70438383200019],[54.3319395850001,26.696609450000153],[54.42110459500009,26.58522535600008],[54.543884557000126,26.58328025100019],[54.64332561200007,26.494394527000054],[54.852775626000096,26.51745230400013],[55.0963825660001,26.696052221000116],[55.21665952400019,26.733549670000173],[55.281379552000146,26.785495510000146],[55.48165859,26.75883250800007],[55.602775582000106,26.801882801000033],[55.59554250300005,26.92854408700009],[55.66526753200014,26.991038383000102],[55.946380472000044,27.022152846000097],[56.13276650600011,27.15853395500011],[56.32166258500007,27.197697223999967],[56.54222147100012,27.15436429300007],[56.701103631000194,27.150199493000116],[56.797775473000115,27.12408852400017],[57.02555050700005,26.84104690800018],[57.08776853600017,26.63799899200012],[57.074165545000085,26.45189626600012],[57.126098476000095,26.34607021200003],[57.126098476000095,26.26163175700009],[57.214713633000144,26.165242385000113],[57.165542539000114,26.081914198000163],[57.198043536000114,25.99330624900017],[57.27137747800009,25.917756636000092],[57.31054661400003,25.77609626900005],[57.53110449400003,25.736096989000032],[57.762214519999986,25.735262151000086],[57.77748852700017,25.654157850000104],[57.933326547000036,25.69859668900017],[57.97776756500008,25.681931454],[58.05804457200014,25.565549902000043],[58.18221257700003,25.538608118000184],[58.38999157500018,25.60165847000019],[58.63526953200011,25.56582901900009],[58.81832862100009,25.558329395000044],[58.919990545000076,25.51305454500016],[59.00499762800001,25.40583659300006],[59.119987617000106,25.390002172000038],[59.34054549700005,25.454166143000066],[59.47804257200005,25.47555424600006],[59.626937527,25.389724228000148],[59.84443651500004,25.406946357000038],[59.88888558000008,25.345837421000056],[60.0711054730001,25.377501904000155],[60.2019345760001,25.365558363000048],[60.38665747300013,25.31473083700007],[60.39527155500019,25.373893998000028],[60.5191575930001,25.441665876000116],[60.5980455510001,25.40777733800013],[60.634437595000065,25.26250923300006],[60.966102631000126,25.215564540000116],[61.19110157900002,25.166677761000017],[61.21110549400004,25.125846660000036],[61.389160587000106,25.08057281600003],[61.499435587,25.116406290000157],[61.52416253700011,25.20612014700015],[61.638755558000184,25.20121824300014],[61.79175949000006,25.141280091000056],[61.731891579000035,25.055395255000064],[61.83509460000005,25.03878483800014],[61.86988050399998,25.0993041910001],[62.10042961200014,25.095884374000036],[62.07782361900013,25.17468951899997],[62.21361950300013,25.213508627000067],[62.373210605,25.179250280000133],[62.492237486000136,25.24790611400016],[62.61951853000011,25.259620494000046],[62.84321560000012,25.241938199000117],[63.01044848200013,25.20676790100009],[63.15279063300005,25.25240686100011],[63.49148154699998,25.19410753900013],[63.50534052100005,25.314474686000096],[63.68193062500012,25.37642097400004],[63.877639515000055,25.341931454000076],[64.22200062000013,25.31155309000013],[64.40455662700009,25.232477712000104],[64.53044862200011,25.26649616900005],[64.59381849200008,25.23691643300009],[64.747970577,25.313064012000098],[65.23110951100017,25.31621275700013],[65.27230857700016,25.38395848400006],[65.46492756200013,25.379809777000048],[65.64267755300017,25.348601102000032],[65.85640753500007,25.420806839000193],[65.9304965180001,25.49724309100003],[66.00102956300009,25.461876824000115],[66.0959016430001,25.492954574],[66.17318748400015,25.5981095730001],[66.22290055200011,25.719734676000087],[66.33780655400005,25.70667433000017],[66.37081163900001,25.645487274000175],[66.53740649100018,25.645327180000038],[66.5590596290001,25.350722059000134],[66.66368858000016,25.28517507300012],[66.73705252800016,25.19665932500004],[66.70426956400019,25.08434467300009],[66.6902085860001,24.891673887000024],[66.81519349100006,24.835623597999984],[66.95350662800007,24.94865121500004],[67.09002654099999,24.980338665000147],[67.30194854600018,24.843065387000138],[67.30864753100013,24.75451979999997],[67.4930266020001,24.768048862000114],[67.5203324960001,24.56330009000004],[67.4619905940001,24.44127600799999],[67.51381657200005,24.42433467300009],[67.54437263199998,24.301614725000036],[67.5048826370001,24.195598235000034],[67.40820358600007,24.038564955000027],[67.47738664200017,23.97146916100013],[67.50897250300011,23.88530369900019],[67.63331552200009,23.836051971000188],[67.65757761100014,23.79557710199998],[67.93605058600008,23.83824585100018],[67.9934086200002,23.78874853300016],[68.13292657200014,23.866274600000168],[68.19410658700019,23.848285359000045],[68.18462363700019,23.71945081300015],[68.3152695120001,23.567810618000067],[68.45641355300006,23.615797349000104],[68.4470905300002,23.476863280000032],[68.49594864300019,23.472404611000172],[68.5113374820001,23.319622297000024],[68.58930963400019,23.208806999000103],[68.71558350800012,23.139941450000094],[68.74433863300015,23.086743186999968],[69.19609052499999,22.833036389000142],[69.36078654000016,22.82054819100017],[69.45098855900005,22.774468511000066],[69.544479637,22.78875982300002],[69.6905664860002,22.741201407],[69.73876159100018,22.801530994000075],[69.8423305660001,22.857148274000053],[70.19821159100013,22.944530788000122],[70.28984054500006,22.94507075000007],[70.43192252100005,23.04330565000015],[70.45133249400016,22.974018994000176],[70.37622058400012,22.906662691000122],[70.25428048800012,22.73514145900009],[70.17257654600019,22.558741960000077],[69.97399853100006,22.547931484000173],[69.93895748200003,22.45640613000012],[69.83661662300011,22.387289962000068],[69.71508757600009,22.374511583000128],[69.6194765480002,22.302625364000107],[69.53093749900006,22.331092822000073],[69.46057158900015,22.271524145000114],[69.33766154000006,22.278136796000013],[69.25438649400019,22.220029923000027],[69.15775253800001,22.197761050000054],[69.18972061400007,22.418488244000173],[69.04653960200011,22.407664860000125],[68.93640156200013,22.327213174000065],[68.99414063800015,22.18930035700015],[69.25892663600013,21.90940648100019],[69.62455749000014,21.606482824000125],[69.72290051600015,21.514077035000128],[70.02208752100012,21.17714447600008],[70.25444058300013,20.97243677500012],[70.44180260600018,20.848953739000024],[70.826927588,20.69027542700013],[70.91358154700015,20.740750913000113],[70.98790757000006,20.724140663000128],[71.140167524,20.7567088830001],[71.32478363500007,20.846274883000035],[71.47551758000014,20.88979154500015],[71.5008086310001,20.936818883000058],[71.75633949900009,21.02150410100012],[71.80843353100005,21.07024134800008],[71.99933657200012,21.139386684000044],[72.10504963800008,21.204803918000152],[72.0822905920001,21.253352404],[72.20987656900019,21.42648279400015],[72.26711256300013,21.58127425000015],[72.2040325390002,21.749045251000155],[72.13820660300019,21.783112323000125],[72.14858256100018,21.946584580000092],[72.24320251300014,22.02249042500017],[72.28463761400002,22.18239098600003],[72.27377349400018,22.253308090000075],[72.3237225960001,22.429706583000154],[72.37976064800006,22.509065605000046],[72.38421663500009,22.621688544],[72.5160906270001,23.03948668700008],[72.55605352900011,23.22037654000019],[72.54392256800014,23.376008365000132],[72.63601655000019,23.669164591000026],[72.64082357200016,23.749289383000075],[72.59181961300004,23.92643151900012],[72.58998162900019,24.022135587000093],[72.4707866080002,24.26005406400003],[72.59169757300003,24.406376613000134],[72.54303760700003,24.551959710000176],[72.55090352000008,24.62113522200019],[72.61296061700006,24.718352391],[72.69097149300012,24.77386875300016],[72.76278663300008,24.900363742000025],[72.83493051200008,24.921001664000187],[72.91867058700018,25.03736494300017],[73.36971253200016,25.186860042000035],[73.46101358600015,25.240625256999977],[73.55103254300013,25.34018265400016],[73.72630350300017,25.64373830700015],[73.7617185530001,25.67656569500008],[73.9019166130002,25.96097456700005],[74.17302658900007,26.11592662000004],[74.30409256500008,26.267149564000192],[74.39752161700005,26.32229812900016],[74.56979353200018,26.535396618000163],[74.64571362500016,26.608965252000075],[74.74552952000005,26.778194537000104],[74.84008761300015,27.001195909000103],[74.97471656900007,27.109350959000153],[75.10964157300009,27.119091736000087],[75.28494254000015,27.164438670000095],[75.52017260600019,27.289555339000117],[75.67331651600006,27.51433468099998],[75.685836564,27.69876488200009],[75.78874152500009,27.809260997000138],[75.93430350000011,27.880009121000057],[76.01846350700015,27.875489264000123],[76.21190660100018,27.809492002000184],[76.34932756800009,27.815121959000123],[76.56918354800007,27.887647885000092],[76.72247363700012,27.76159194000013],[76.87600764000001,27.790550745000132],[76.93893461100004,27.91081881800011],[76.9711155870001,28.127261686000168],[77.05593860300019,28.255958434000036],[77.04984261200002,28.343702878000045],[77.13754263300007,28.40690729],[77.16952562900008,28.643220633000055],[77.09252963400007,28.86458988100003],[77.06365163000004,29.403573581000103],[77.08315263100019,29.56400253700008],[77.14267755499998,29.791402733000098],[77.31188957200004,30.07401234500003],[77.47161059300015,30.26719308500003],[77.59942657000005,30.380927967000105],[77.63153864700018,30.488906159000067],[77.80381056200008,30.570133003000137],[77.58270249400005,30.703258245000143],[77.46504957400003,30.74428699100008],[77.47617353300018,30.832794692000107],[77.33145159300011,30.8834518970001],[77.28098264500011,30.830274756000165],[77.37201665200013,30.770306095000137],[77.1392515350002,30.720928806000188],[76.92169152700012,30.824445143000162],[76.60572864600016,31.16208329000017],[76.44840250200008,31.259569686000134],[76.30101763100015,31.382084612000142],[76.36080155600018,31.430612981000024],[76.42091354800004,31.55313696000013],[76.39288362500014,31.593398594000178],[76.24447649800004,31.62224960700013],[76.10807057900013,31.73345382600013],[75.99896954700017,31.913738002000173],[75.88426957300004,31.9895714270001],[75.66929655500007,32.027083964000155],[75.57604955800014,32.07595263900015],[75.49928255700002,32.174349477000135],[75.49421653500008,32.28645575600018],[75.53473649900019,32.36902303400012],[75.46920761800004,32.55275519000014],[75.403297528,32.621483108000064],[75.27731350000005,32.63746153000011],[75.12293963000019,32.77424932800011],[75.08822664900015,32.88855703000013],[74.9877475780001,33.03924017999998],[75.03265362500008,33.135078358000044],[74.7855836170001,33.163958709000156],[74.60238656200005,33.06398171400002],[74.37713649300002,33.055322705000094],[74.3164365940001,32.932863435000115],[74.40741762700014,32.905566426000064],[74.46891749400004,32.776351510000154],[74.61488364400003,32.75698093200003],[74.65477764800005,32.69484085400006],[74.64243361900003,32.60031595300006],[74.70591765100005,32.47866872100013],[74.82076263300007,32.49589906400013],[74.97537253700011,32.441861773000085],[75.10069255000013,32.47176085900003],[75.3257215050001,32.334974067000076],[75.38169049000015,32.25851468100012],[75.24182854500009,32.08551924000005],[74.99459861100019,32.02919419200015],[74.8834225560002,32.02642430800012],[74.69523659200013,32.14566040200003],[74.44371059700012,32.34180213300016],[74.37442762900008,32.34586484100004],[74.20342255500009,32.43131113600009],[74.1302795530001,32.52630928000008],[74.13514759499998,32.62656388200014],[74.02192652300005,32.783900252000024],[73.7307965390001,32.98024415500015],[73.46111249200015,33.10519821400004],[73.32032049100002,33.189538768000034],[73.05664861500009,33.41269906200006],[72.94341262400019,33.54394843400007],[72.8461686330001,33.72401233400018],[72.84414658300011,33.80346607000007],[73.10529349300009,33.95613371900009],[73.08347355500018,34.034061447000056],[72.96130362800005,33.98544473200013],[72.86667663500015,34.14029838200008],[72.78763562400019,34.175476391000075],[72.67662854800011,34.13832964000005],[72.55113251400019,34.2280071190001],[72.43701960800013,34.25795515699997],[72.32412760900013,34.32505430300017],[72.27361256100005,34.38885282400014],[72.14230351000015,34.360731371000156],[72.14803354600014,34.4984698450001],[72.09604663599998,34.524218046000044],[72.06501750100011,34.67109514100002],[71.99495652500019,34.753962995000165],[71.87770861900009,34.79464204700014],[71.90519757400017,34.91913962899997],[71.81198863100019,35.0113073710001],[71.73082750100002,35.03104507699999],[71.53831463100005,35.020352115000094],[71.44565554100018,35.10393813000002],[71.59056054200005,35.243807619],[71.67751356700006,35.19073106100012],[71.74359850400003,35.20175158800009],[71.82013651100004,35.27839084900006],[71.92307248500009,35.29466029100013],[71.92192852300013,35.41666626800014],[72.01969152100008,35.464234071000135],[72.07737762300013,35.382178089000035],[72.08934061100018,35.21204339100012],[72.25154854200014,35.12075273100015],[72.4075015620001,35.224780196000154],[72.52021754000003,35.2564604370001],[72.57805652800016,35.34149920400017],[72.53662159600003,35.53923332900007],[72.62481665100012,35.51773475300013],[72.62563355200012,35.37121942100015],[72.67439259100007,35.35077679700015],[72.59430652400016,35.21062031200006],[72.66230756300007,35.12154549100018],[72.80626658300014,35.10262518900004],[72.87239862500019,35.125833673000045],[72.88308756400005,35.21841028500006],[73.08860059800014,35.193710828],[73.15541056900008,35.247500518000095],[73.12978357000003,35.312589014000025],[73.0203935310002,35.35918770200004],[73.01364157300003,35.41961518900018],[72.81862653700011,35.464425178000056],[72.88617663000002,35.64184978500015],[73.00060251700012,35.66741241],[72.89438653700012,35.516804027000035],[73.12304653200005,35.46427614800018],[73.23676263900018,35.48157572600013],[73.24675755600003,35.54929194800019],[73.37615955600018,35.62362048600005],[73.34308657800017,35.7068392060001],[73.45245365100004,35.71645995500006],[73.50804863500008,35.64643183600009],[73.64631651000008,35.69882862100013],[73.69130654300011,35.61871053500016],[73.77002753400006,35.62075152800003],[73.96634662600002,35.71681903500013],[73.99458358200013,35.57793257600008],[74.08482348700011,35.6346710200001],[74.30713653700002,35.543654280000055],[74.40622756400018,35.46762622700015],[74.54116849400015,35.55479299100017],[74.55986064100011,35.461488327000154],[74.48034655500004,35.377727130000096],[74.35118863500003,35.35376796300005],[74.26687658000003,35.37393934800002],[74.05589250899999,35.25704029800005],[74.03624750800003,35.350448897000035],[73.90637964100017,35.41463751200018],[73.8391795760001,35.318958590000136],[73.72685955900016,35.36243770100009],[73.74771155500008,35.46162528700012],[73.43855260000015,35.51200488400008],[73.25621753900015,35.39389699500015],[73.282020558,35.22476108500007],[73.22802752200016,35.14090517300008],[73.07095350700007,35.066546963000064],[72.98603862500005,34.959436802000084],[73.19022363000005,34.90250037700014],[73.21642261000011,34.82609011000005],[73.17063160200013,34.75857186800005],[73.22190051900009,34.70958433800007],[73.49593360000017,34.75142327800006],[73.57956655400005,34.79704195400018],[73.69747160100007,34.78011235300016],[73.72324360599998,34.737484508000136],[73.60540058500015,34.61271669400014],[73.69362648600014,34.57849975400018],[73.77837356200013,34.466911644000106],[73.83058963400009,34.49650093600019],[73.77281954600016,34.579197631000056],[74.00483649300014,34.70607517000013],[74.13987750300004,34.68851675900015],[74.31508660500003,34.800012835000075],[74.41407051100009,34.67897597400008],[74.53946663200003,34.709405133000075],[74.6099316160001,34.56995876200011],[74.71366152400014,34.588097368000035],[74.87671653000012,34.51195046000004],[75.03182264300011,34.476409347000185],[75.10556763300019,34.36191456100016],[75.19049860800004,34.40258238100006],[75.34980757400001,34.34936467200015],[75.14705654500017,34.23934783400006],[75.23338361000009,34.02171389800009],[75.28883358700017,34.05200207200005],[75.27240757200008,34.16621070000019],[75.3455965060001,34.19475510400014],[75.44994349000001,34.16640884800006],[75.36560058900017,34.05844088300012],[75.33969162300014,33.95375677900006],[75.45433057800011,33.99381372700003],[75.56743665000016,33.95556475600017],[75.52718356600013,33.87629793600007],[75.62375650100012,33.811689723000086],[75.86099252499997,33.74797150100005],[75.81783259600019,33.669691901000135],[75.97090961800006,33.686022196000124],[76.08784454300013,33.77015672200008],[76.12622863100006,33.84764255600004],[76.10952752100008,33.92824126000016],[75.89310460200016,33.87560005800009],[75.84973160500016,34.006501246000084],[75.94143649900013,33.985078946000044],[76.05155962000003,34.07105531200017],[76.14060258900014,33.982171934000064],[76.26328263800013,33.978482891000056],[76.21483657900018,33.90042507600009],[76.34243060300008,33.80775777200006],[76.40296957000004,33.72492311100012],[76.42066963400015,33.61731825000004],[76.61781350600012,33.59750896300011],[76.60395050900019,33.526026751000074],[76.52294159400009,33.453581124000095],[76.4505846470002,33.51992807800019],[76.22887459100008,33.535662587000104],[76.26412954600005,33.45682307600009],[76.36381552000012,33.37532030000011],[76.32765951100004,33.23851439600003],[76.37641150900004,33.1352003990001],[76.36071756900003,33.04664106500013],[76.39270760500017,32.936643338000124],[76.34619156300005,32.81756717200011],[76.37162762200012,32.75777000400018],[76.49063857700014,32.63127501500014],[76.5120085750001,32.53371703800019],[76.6902465610001,32.50521890200014],[76.88906848900007,32.37775798300015],[77.00755356400009,32.263004364000096],[77.15847056900003,32.194166643000074],[77.2179566010002,32.09332094800004],[77.2373806550001,31.97699488400019],[77.36477653100013,31.826389854000013],[77.41264356900012,31.692365233000146],[77.57106757400015,31.770109732000094],[77.62322949800006,31.838690464000138],[77.7027965580001,31.751044088000185],[77.61701951400016,31.731546775000027],[77.61977364000012,31.644738757000027],[77.83680760000004,31.717217409000114],[77.96080763200013,31.69172435300004],[78.04308355500007,31.613904752000053],[78.18704961500015,31.571750149000138],[78.29976660000005,31.59808039000012],[78.1716235610001,31.443332520000183],[78.11766857900017,31.518580888000145],[78.03517154100018,31.47241168900007],[77.9845424990001,31.34457609800012],[78.04461660500004,31.31219999100017],[78.22978257000011,31.316814732000125],[78.33441152000012,31.168957121],[78.34899150500001,31.084147852000115],[78.42796361800015,31.06913536000019],[78.51750162200011,30.965725138000153],[78.69288657600009,30.96623006400017],[78.79576153000005,30.99061620600014],[78.96347855100004,30.925818394000146],[79.024467625,31.008403442000144],[79.00922362600005,31.065574728000115],[79.10959658100018,31.08971880000007],[79.24681856200016,31.056682869000042],[79.34210956900012,31.061765823000144],[79.25189950400005,31.16340813400018],[79.43994850800004,31.223123997000073],[79.52507059000015,31.168490082],[79.60003665600004,31.05414181200001],[79.81984754100012,31.031273800000122],[79.76647962800018,30.95249966900019],[79.75885762800016,30.769544850000102],[79.79189255200004,30.721264753000185],[79.72074159400017,30.605646959000126],[79.66864756300015,30.596753090000107],[79.60765865600007,30.75302864500003],[79.53778057300008,30.722534779000114],[79.51998864200016,30.84704828600013],[79.44121551600006,30.897867597000015],[79.41834264400006,30.779709584000045],[79.32559152000005,30.763190194000117],[79.39547765000003,30.618351410000116],[79.30780763600012,30.63359792400007],[79.29383064500018,30.690770718000124],[79.08799758999999,30.773355934000165],[78.979995594,30.777166682000143],[78.71365357899998,30.83606346600004],[78.60001358000011,30.71741997400011],[78.64602654100003,30.662489674000142],[78.84126252300013,30.587812616],[78.9423826420001,30.671919315000082],[79.09964759700017,30.683469913000124],[79.19584653200013,30.633710912000026],[79.2761225340002,30.4783265210001],[79.46234864100006,30.508086300000116],[79.59581754100009,30.476499433000072],[79.62805953800017,30.316074333000074],[79.60343149400006,30.20603754600006],[79.67915360800015,30.119849621000128],[79.80378764700004,30.13385913400009],[79.84123949900015,30.194172961999982],[79.73863963900004,30.255928478000158],[79.69680053100018,30.410316764000186],[79.87111662500018,30.392388711000137],[79.84920465400006,30.55773466000005],[79.97072565400003,30.662319857000057],[80.15799765500009,30.551756854000132],[80.15002462100017,30.501953597000124],[80.03547652600008,30.36150961200002],[80.16895263500004,30.235011438000186],[80.33236655500008,30.184657323000067],[80.43051964700015,30.05550409700004],[80.57008353100014,30.137371989000087],[80.76020856500008,30.024638074000165],[80.8715365,30.121379486000137],[80.74919155900017,29.96908701000018],[80.74793963800005,29.889336219000086],[80.81807756000012,29.84317976000017],[80.87840262000003,29.901185548000058],[80.94358851300007,29.889065148000157],[80.97199260400004,29.69252242700003],[81.1287536390002,29.661626732000173],[81.2525935770002,29.789850739000087],[81.33067352000018,29.748954596000033],[81.432243578,29.767789738000033],[81.4323346060001,29.65746679300014],[81.58859255900018,29.533899770000062],[81.64101465800019,29.570237331999977],[81.59187357200011,29.720938420000095],[81.8617094990002,29.835398337000186],[81.89427956300017,29.89832480400014],[81.98089563600018,29.858690304000106],[82.04299162400008,29.78201030700012],[82.11633260700006,29.847076675000096],[82.11112258300011,29.619878483000093],[82.30517554400006,29.62419633700017],[82.45453653300007,29.60053606800011],[82.43811051700004,29.551720032000162],[82.2696686290002,29.54690027000015],[82.1912455310001,29.344901935000053],[82.37741849700012,29.338892111000177],[82.37272664300002,29.21097706000006],[82.10065459200001,29.218804751000164],[82.11808056900009,29.105078418000176],[81.97548662600008,29.12515156800015],[81.81534550400016,29.06966370400005],[81.87549554999998,28.981317271000023],[82.05163554600011,28.93364318500005],[82.1717296110001,29.044813708000106],[82.32065557800013,29.057091352000043],[82.35780350300007,28.95175429800014],[82.4766845380002,28.964650695000046],[82.43488365200011,29.120816615000024],[82.58457153500012,29.132727300000113],[82.77628359800008,29.060813923000126],[82.86577550200008,28.998009664000165],[82.93213653800012,28.998024416000135],[82.9553455250001,28.920816694000052],[82.80975354300011,28.876252461999968],[82.75953655500007,28.944811568000148],[82.59735058400014,28.9153597400001],[82.53153252800007,28.817893628000036],[82.704429565,28.769405659000086],[82.76976750600005,28.718208827000126],[82.82982652500004,28.78113311499999],[83.07031254700013,28.61772573400009],[82.94918851400018,28.57365854800014],[83.05905162800019,28.501765456000157],[83.21588860300017,28.539679989000092],[83.37077360100005,28.64873441700007],[83.49224062200011,28.585088950000113],[83.61490659000015,28.595527604000154],[83.57538558099998,28.66321096900009],[83.76618150200011,28.842234675000043],[83.76982863600011,28.754448153000112],[83.70416262700013,28.744147632000022],[83.68986561500003,28.61500982900003],[83.79209164100013,28.548511498000096],[83.74121851800004,28.503989342000125],[83.95218649500015,28.45119860700015],[84.00827064700002,28.521475501000168],[84.21629355900012,28.377596613000037],[84.30456556000019,28.40075061400006],[84.33703655099998,28.490117796000106],[84.41990658300017,28.54880050600019],[84.45545155200011,28.39424692800003],[84.53070863800008,28.405280362000042],[84.6867295510001,28.280850339000153],[84.75476059800019,28.287795081000127],[84.83841651800014,28.35139042500009],[84.84412358800017,28.494550649000132],[84.90623449700018,28.553197484],[84.97248858000012,28.453122422000092],[84.90792060000012,28.42819430600008],[84.94802063100008,28.19707388700016],[85.0957945900002,28.242245137],[85.1361995540002,28.178122572],[85.22385364200005,28.16109825600006],[85.23865558000017,28.264740154000094],[85.30687756600014,28.381649263000156],[85.17348460599999,28.438502874000164],[85.45557353500016,28.455997415000184],[85.46432457700018,28.347951665000153],[85.38126360400014,28.106441542000027],[85.45398751100004,28.046144310000102],[85.64804851900004,28.062450464000108],[85.71516459700018,28.019871234000163],[85.75550066200009,28.126689872999975],[85.71063954200014,28.14662388300019],[85.71811653499998,28.257524508000074],[85.63587162500005,28.228865440000106],[85.57979551900013,28.28244642100009],[85.54864451100019,28.408296171000075],[85.48634350100019,28.409543231000043],[85.4701386000001,28.662491801999977],[85.605964659,28.593957841000076],[85.60472061700011,28.535395160000178],[85.7305755640001,28.486797053000032],[85.84770964300014,28.501750536000145],[85.89381463700016,28.412033997000094],[85.81442259100004,28.06498749800005],[85.9563446410001,28.023033056000088],[86.01101661000007,28.097380872000144],[86.07549255600009,27.87569545800011],[86.20144657700013,27.86702957600005],[86.17477452300005,27.96155280100004],[86.23625159199997,28.018660384000157],[86.36912554500009,28.058802660000083],[86.48847160800011,28.176776774000075],[86.6174315470002,28.174033712000096],[86.64212061100017,28.293378937000114],[86.76147455400019,28.287892144000068],[86.92884054100006,28.205585710000037],[87.05093352200004,28.19872495500016],[87.16616859700014,28.24399611700011],[87.26631960000003,28.195982899000114],[87.34588666000008,28.095840948999978],[87.36508960000015,27.99021354600012],[87.34313957500007,27.898301451000123],[87.24162265700005,27.929853952000144],[87.21144059700015,27.83245707600014],[87.14285265700005,27.741917099000148],[87.04544857200005,27.669211967000138],[86.88494166400005,27.636288521999973],[86.78617065800017,27.762495174000094],[86.84241456900003,27.854408274000036],[86.81085955400016,27.960032660000138],[86.57901762000017,27.96140561500016],[86.6476136070001,27.726828499000135],[86.58998852600018,27.71311000600008],[86.42399566200015,27.82559631999999],[86.34553551599998,27.746212824000054],[86.51072656700006,27.716343074000065],[86.50403562900016,27.621826051000028],[86.6464845650001,27.652139707000117],[86.72763060800014,27.76048016400017],[86.767303664,27.642947106000065],[86.8417735210001,27.61424646400019],[87.10958052500013,27.666868220000083],[87.28791859100005,27.784120987000165],[87.36526461400007,27.783957037000107],[87.41349760500003,27.86467476400003],[87.5130695860002,27.824116411000034],[87.51709759400006,27.650610848000042],[87.59192653100018,27.696653983000147],[87.55738856400006,27.884671806000142],[87.7300646540001,27.926880053000048],[87.79721861900009,28.072691138000096],[87.93727854399998,28.114899217000186],[87.99868051100015,28.04774910900005],[88.15792057900012,28.030482722999977],[88.4495546510002,28.020889300000192],[88.56275962900008,28.103386673000102],[88.6279906170002,28.022808085000065],[88.72583760200007,27.992110371000138],[88.84671755400012,28.04391237600015],[88.9426496100001,27.99978500900005],[88.99636855700015,27.821358430000032],[88.950324583,27.750372595000044],[88.77188861700017,27.683222319000095],[88.72609760900019,27.57755082700004],[88.64543151400005,27.501494108000088],[88.65500666500014,27.386090053000032],[88.89363056400003,27.40948210099998],[89.02741261200003,27.497974379000084],[89.14819365700015,27.365099924000162],[89.25861366500004,27.40910122700012],[89.29546352800014,27.597131119999972],[89.39585157100015,27.502685176000057],[89.56033351300005,27.601950715000044],[89.66079766300004,27.714346169000123],[89.5935136120001,27.804321206000054],[89.69460255000007,27.955436024000107],[89.65178661500016,28.053188796000143],[89.8446736530002,27.957304853000096],[89.7922825670002,27.833919885000114],[89.84967764900017,27.77379347599998],[89.95706961000002,27.81524399900013],[89.96115863800014,27.991914402000134],[90.00849962700005,28.00442405700005],[90.06188162100011,27.88942686000007],[90.16059864800008,27.921515467000063],[90.2618555590002,27.994416400000034],[90.32666057900008,28.080821752000134],[90.2780606280001,28.129422709000153],[90.19570155600013,28.107822712000086],[90.15114553800004,28.15642350100012],[89.81227156200003,28.09972277600008],[89.7744675020001,28.248228643],[89.84602364200009,28.271178964000114],[89.88247653900004,28.20637763200017],[89.98913558700013,28.245527993000053],[89.94457956899998,28.30898017400017],[89.9931865600002,28.44938644000007],[90.11874361400015,28.45748637600019],[90.16329963200008,28.39268470900015],[90.20245351400013,28.252277772000127],[90.36986560100013,28.36838272200015],[90.45492565799998,28.272528953000176],[90.55483257900016,28.28062956000008],[90.60343957100008,28.338682957000117],[90.69119256599998,28.277930587000185],[90.61153464600005,28.205026469000188],[90.59533661800009,28.132123692999983],[90.89100657600017,28.04301920100005],[90.89640753900017,28.00116617900011],[90.6655426010002,28.052469964000124],[90.68849158100011,27.93501485800016],[90.60073858700002,27.887761879000095],[90.58392365100019,27.75831427999998],[90.63903064100003,27.696086025000056],[90.70597053100016,27.72484668200002],[90.94605254600009,27.684464349000052],[90.95007351300018,27.856688990000123],[91.01711264500017,27.839879754000037],[91.00399060800004,27.978824886000154],[91.14104461500011,28.061205584000163],[91.18758362400007,27.995692126000108],[91.179206583,27.859611089000055],[91.33895157600011,27.760374217000162],[91.43385366300004,27.852989386000047],[91.53672761000001,27.780163387000073],[91.67319455000012,27.764036103000137],[91.71909351600016,27.916901565000046],[91.70512356600017,28.145023945000162],[91.83781462500019,28.177613623000127],[91.9029926400001,27.944835263000073],[92.044547562,27.91764537500012],[92.11074850400013,28.001700106000158],[92.28336357400008,27.99371818700007],[92.34023260700013,28.02364895800008],[92.47393066900008,27.97875196399997],[92.51483955300006,28.107458602000122],[92.63257562100006,28.13639125500015],[92.67049350700017,28.21121935500014],[92.89997861700004,28.21620926900016],[92.68745462300006,28.113443448000112],[92.75929256300009,28.063559390000023],[92.71140255900013,27.898935458000096],[92.6843715920001,27.65412755900013],[92.88633757200012,27.732636488000082],[92.79252664100005,27.828991159000168],[92.83690663900018,27.86743676900005],[92.97545664900014,27.891868676000172],[92.95411665900014,27.9801240810001],[93.08901266200002,28.07479080500019],[93.27391057300014,28.010162643],[93.3647236320001,28.05673266500014],[93.1970905980001,28.126868910000155],[93.20294166900004,28.19935477100006],[93.28222659400012,28.23228542400011],[93.43565364400018,28.193844172000183],[93.50312058800006,28.14688808000011],[93.64824653600016,28.21482407600007],[93.73018651300004,28.158436666000114],[93.81537665700012,28.270451918000163],[93.41797654500016,28.306030582000176],[93.26914965200012,28.347629632000064],[93.24672655200004,28.442954838000105],[93.28811655700014,28.474224701000026],[93.37875359700001,28.414265930000113],[93.48718256700016,28.411496214000124],[93.59638954500019,28.56247993900007],[93.72992650700019,28.584109943000044],[93.88932063300012,28.537331044000155],[93.84678666600007,28.648047436000184],[93.79232759700011,28.64330462000015],[93.71584356800014,28.71626171100013],[93.5548855460001,28.719568539000193],[93.56517064400003,28.79583866200005],[93.63061553800014,28.88598787400008],[93.76093250800011,28.96425976300003],[93.61543255900006,29.05514909800013],[93.53283661400008,29.02252958000014],[93.47689059600009,29.066800949000083],[93.39136450600012,28.98176117700018],[93.46916952200007,28.825742441999978],[93.32408866800012,28.870797687000106],[93.12261956700007,28.886120979000168],[93.04732560100007,28.825887449],[93.00250253600018,28.972823553000183],[92.9165345520002,29.001526542000192],[92.90684557500009,29.078416255000093],[92.96333356700018,29.115006783000183],[93.17504853899999,29.16410612800007],[93.21647659900015,29.041992862000086],[93.3126606140001,29.051399537000123],[93.44142156700019,29.181300261000104],[93.54187063000006,29.236462236000136],[93.45870957700009,29.310934105000058],[93.51958465800016,29.391451170000153],[93.5861896080001,29.252384500000062],[93.72602054000004,29.19679068800008],[93.85471359900004,29.180566174000035],[93.96900956600001,29.269450893],[93.80090362500005,29.300319598000158],[93.6888736210002,29.348796670000127],[93.76527366300002,29.400478647],[93.94554157800019,29.410091517000126],[93.98912864800008,29.36948890700006],[94.10135663200015,29.446777933000135],[94.07270862800016,29.29930672900008],[94.14282961900017,29.271563635],[94.27638250500019,29.39167396099998],[94.21518656500012,29.495117207000078],[94.23995961600019,29.57247831800015],[94.1787266280001,29.629324888000042],[94.00880466300015,29.625485306000144],[93.90656254300012,29.67787622400016],[93.82126662000007,29.642153391000193],[93.77271260200013,29.533793488000185],[93.71029659200019,29.583580819000133],[93.77591666800004,29.693142520000094],[93.69194056000003,29.748249342000122],[93.60108961400016,29.685486992000108],[93.56729160100014,29.808034105],[93.50939964000014,29.825377436000167],[93.363937577,29.799816655000086],[93.32986463800017,29.66086565500018],[93.2097015060001,29.72249745400012],[93.23525256500005,29.82487971900008],[93.06515458000007,29.91951509400019],[92.87695352900005,29.889264302000072],[92.86263254400006,29.774117572000137],[92.62208566900006,29.761514039000133],[92.56592557700009,29.665177473000085],[92.48345150500006,29.661513911000156],[92.47354862200018,29.786671147999982],[92.34309351900004,29.90254073400007],[92.33488461800005,29.9496480360001],[92.59769466600011,29.89405707400016],[92.76174158700019,29.947098093000022],[92.81182865500017,30.010074517000135],[92.75073262800015,30.05110795600001],[92.68952964700014,30.15465513800018],[92.75856752800001,30.240533101000096],[92.82729360200017,30.264696284000138],[92.91917451600017,30.107840030000034],[92.98445864500013,30.06287564500019],[93.04184752500015,30.12929820500011],[92.87033853100019,30.33617346600016],[92.88738262800013,30.444058786000085],[93.08145855500004,30.25840935300016],[93.15867650300004,30.298279049000143],[93.23322263500012,30.254081777000067],[93.17724660900018,30.093243448000067],[93.21145650900007,29.987429464000115],[93.56812258300016,29.962903513000015],[93.31740560900005,30.045399210000028],[93.27326952500005,30.08586988800016],[93.32702652600017,30.274932934000162],[93.2265246560001,30.393095473000187],[93.25608863500008,30.429201192],[93.38619957700007,30.33759956300014],[93.397331582,30.200460730000145],[93.52528351400008,30.131347076999987],[93.58415263700005,30.21549786500009],[93.67034961500013,30.176986540000144],[93.63327763100006,30.04307826100012],[93.7211835110001,30.052446042999975],[93.74181355400003,30.134867978999978],[93.83187861300019,30.158438226000044],[93.88555162700004,30.22356762600009],[93.98783163300016,30.22295675300012],[94.03223459700018,30.154503426000076],[94.17538459500008,30.11021596400019],[94.113563533,30.030533904000038],[94.10276060100006,29.953048909000188],[93.97745550700012,29.962007320000055],[93.71793351200006,29.927910742999984],[93.71785757200018,29.894447839000065],[94.14694261900013,29.811933199000066],[94.27948766500003,29.86369698300018],[94.35537758400005,29.760019043000057],[94.40795860400016,29.828984504000175],[94.47012366000013,29.79725447499999],[94.4751355350001,29.67140137200016],[94.57460056200011,29.71949153500003],[94.54184760500004,29.839489041000093],[94.4698336460001,29.89814593400007],[94.36226667000005,29.931002660000104],[94.42929054799998,30.050139008000144],[94.30427563500007,30.107264025000063],[94.35942051100017,30.197473588000094],[94.45145464700005,30.138657941000076],[94.50678258400012,30.15095335500007],[94.67529253300017,30.10920108300013],[94.8324736690002,30.04351629900009],[94.96454664700013,30.063981554000122],[94.75026664500018,30.243927939000116],[94.6360935570001,30.25541751700007],[94.29626454700013,30.377417962000038],[94.20854156000019,30.367382477000035],[94.17524763500012,30.417608685000175],[93.96489757200015,30.43082811900007],[93.86586756500009,30.37595515200013],[93.80543555200012,30.414907868000057],[93.67200453800001,30.37312810400016],[93.63681764400008,30.416971828000158],[93.89096851500005,30.493367846000183],[93.76207764300011,30.573871835000034],[93.60152463500003,30.553717549000112],[93.21807066900004,30.59600609400013],[93.18777461500014,30.671364601],[93.43502751600005,30.631661034000047],[93.45165251800017,30.681358009000178],[93.78110456299999,30.614781390000132],[93.98435951300007,30.52360589699998],[94.05537451700008,30.626082207000024],[93.84371956000012,30.680752165000115],[93.61791963700011,30.911995965000187],[93.51013154700007,30.872349396000118],[93.33295454300008,31.051995039000133],[93.53468365100008,31.07758113300008],[93.7576365760001,31.05754084100016],[93.64376054200011,31.149056807000136],[93.501296519,31.123088497000026],[93.504585577,31.18473739500007],[93.68691259100012,31.219761345],[93.74820760500018,31.27654840400004],[93.98743466600007,31.268206566000117],[94.09724463800006,31.22154400900007],[94.25385262000009,31.272223510000117],[94.3357845500002,31.346930742000097],[94.36660765800019,31.22118828100014],[94.31360653700006,31.123475574000167],[94.35671265400003,31.04225644100012],[94.32638558700012,30.982298340000057],[94.17491956700013,30.94530883400006],[94.20053064000012,31.05969968400018],[94.0161586100001,31.074508160000107],[93.98181962900009,31.136882093000168],[93.84703057900009,31.060836773],[93.80872360500013,30.940490916000044],[93.91155966600013,30.87111055000014],[94.08625763900005,30.88969473900005],[94.228736583,30.8698725430001],[94.37493859900019,30.97270290500012],[94.47653162500012,30.91695168200016],[94.50511961400002,30.853142935],[94.5075376260001,30.67030144000006],[94.48464966500018,30.61181872200018],[94.34159052700016,30.665167860000054],[94.18430361100013,30.578756808000037],[94.23121662000017,30.481304443000113],[94.33034553300007,30.519138845000043],[94.44218459700005,30.467035761999966],[94.60836052100018,30.57178490900003],[94.65089465700015,30.424844446000122],[94.78411059100017,30.469011712000054],[94.96687363100011,30.48673222800005],[94.95053864300019,30.37162237900003],[94.97336558300009,30.283673415000123],[95.11353262900008,30.289759348000132],[95.22544059200004,30.184085174000018],[95.17678062700008,30.12805516800006],[95.38411756300007,30.00541484900009],[95.49252356700009,29.960773336000102],[95.51900451400007,30.00790176000004],[95.35487360600007,30.067184446000056],[95.26869154800016,30.16891979600007],[95.20244551200011,30.37859913900013],[95.25166354400011,30.40750698200003],[95.24483464000014,30.527023702000065],[95.30802161700018,30.52245187600016],[95.38412460400002,30.40383202099997],[95.42980161800017,30.449526637000133],[95.37479353400016,30.555691655000032],[95.45925864300006,30.574815805000185],[95.57288355500003,30.41465372800019],[95.41498559800016,30.33563551500015],[95.4142075900001,30.24586198000003],[95.5371245120001,30.14405873600009],[95.6304546570002,30.152933495000127],[95.68732452900002,30.220440002000146],[95.68327355500008,30.323650064000105],[95.56235454400007,30.510699275000036],[95.61920966300005,30.521813008000095],[95.80689958600004,30.298686075000035],[95.75379151300012,30.126334364000115],[95.81237062200012,30.106175048000125],[95.88725253400008,30.156092299000193],[96.00769059200019,30.157007268000143],[96.08316057700011,30.005975766000063],[96.1065975520001,29.83398531500012],[96.14695759000017,29.750297377000038],[96.33238255500015,29.848859841000035],[96.36511958600016,29.762074789000167],[96.5170435930001,29.678181158000143],[96.61356355500004,29.683918906000088],[96.5448225610001,29.785884926000165],[96.6269836530002,29.81821795000019],[96.67728462700012,29.641970498000035],[96.75492066400017,29.59463135300018],[96.77451353100014,29.4482290090001],[96.82510351300016,29.389729192000118],[96.86169454400016,29.573743147000073],[96.96031953700009,29.595968266],[97.06034062000009,29.56818728600018],[97.06311754500013,29.64875414],[97.1923066450002,29.655698882000138],[97.13951859200012,29.53068279600018],[97.24787162200005,29.415387371000065],[97.06589463700004,29.382050530000186],[97.05061358900008,29.188968864],[97.1595615670002,29.218161859000077],[97.10700250800005,29.33425943300017],[97.23233056800007,29.356288415000165],[97.23322257000012,29.212185227000077],[97.32532459900006,29.132220362000055],[97.35111253000008,29.207010240000102],[97.30010261400014,29.399949749000143],[97.387496527,29.34256606600013],[97.40663962100012,29.117101756000068],[97.48002653600014,29.066846714000064],[97.50212860900001,28.904858221000097],[97.57613360500011,28.810935810000046],[97.54197651200008,28.736938022000174],[97.58770767300012,28.655921061000186],[97.475341555,28.576509232999967],[97.38271364600013,28.387152150000077],[97.06494865500008,28.390266865000115],[97.08306865399999,28.255374383000117],[97.07971958000019,27.993644259000177],[97.10022758300016,27.920407548000185],[97.21056360400007,27.858489088],[96.89605766500006,27.61294928000018],[96.92391961400011,27.495704392000107],[96.98057558000005,27.472139342000105],[97.03073154700013,27.61258131500017],[97.16114055000014,27.632642730000157],[97.21130355800005,27.76806394300013],[97.3015895630001,27.748001522000095],[97.4771426580001,27.76806394300013],[97.53733863700012,27.7329553350001],[97.66774764000013,27.76806394300013],[97.55238365000014,27.963675770000123],[97.5423505120001,28.013832576000027],[97.6376495660001,28.134208440000123],[97.70787851600005,28.03389583400002],[97.66273459100006,27.948629080000046],[97.76304652600015,27.858347936000087],[97.93359361300014,27.763049888000126],[97.92356164800015,27.903487],[98.10413365900007,27.89345754900006],[98.1442566560001,27.672768744000166],[98.24958767500016,27.61759436400007],[98.22554066499998,27.830727218000163],[98.14749156800008,28.01210858600018],[98.15220655600007,28.135714333000067],[97.99944251500011,28.282786391000116],[97.91818264600005,28.463987883000186],[97.84685566700011,28.564236954000023],[97.80655665000006,28.698136348000162],[97.83130656600008,28.870479677000105],[97.8112635920001,28.965619643000082],[97.7358395390001,29.090110016000153],[97.76068852900016,29.18339406000007],[97.73408453600013,29.246185747000084],[97.55734255200014,29.42965353800014],[97.49932067100008,29.467473188000156],[97.38598661100013,29.652179991000025],[97.31149261400014,29.742183862000047],[97.14536262300004,29.894840950000173],[97.002715539,29.991823426000053],[96.76834059400016,30.125577309999983],[96.64422556300002,30.23765827600016],[96.4077985610001,30.49698564300013],[96.19725755800016,30.61729646400005],[96.09606954700007,30.72556969800013],[95.970832514,30.806136552000112],[95.82573657300014,30.710488140000166],[95.72168765000009,30.76462132000006],[95.6370316010001,30.739408220000087],[95.557365635,30.834274600000185],[95.44608262700018,30.83492453300005],[95.42279065900016,31.027546871000027],[95.35377457100003,31.09964029100007],[95.21640054200009,31.071382213],[95.10456851900005,31.125364352000133],[95.11477667200006,31.017190191],[95.04180851600017,30.905767206000064],[95.03436253600012,30.823140080000087],[95.24406451100009,30.770081124000058],[95.2541355350001,30.705701402000045],[94.9880676090001,30.779062501000055],[94.9661866510001,30.906749229000013],[95.06758152700019,31.0284946970001],[94.9625546040001,31.10912491700003],[94.76094066400003,31.022264093000103],[94.63647459800012,31.060581628000136],[94.5960086140002,31.16137116400006],[94.48406963800005,31.22350101500018],[94.49056963600003,31.30799227600005],[94.55329862600007,31.345253021000076],[94.50382963900017,31.418151438],[94.3464585690001,31.42377720400009],[93.96327265600019,31.502121680000073],[93.85787156500004,31.473872487000108],[93.77089657900007,31.393778372999975],[93.70701558000013,31.457777053000143],[93.61978964000019,31.40541983000014],[93.40815764900003,31.37643487400004],[93.45059958300004,31.494794891000026],[93.31703965500014,31.489663154000084],[93.24403361400016,31.437637687000176],[93.1697156370002,31.50395044300012],[93.0855336690002,31.508825358000138],[93.10562861100004,31.642599863000157],[93.18161760400005,31.672073819000047],[93.39760567100006,31.703591954000103],[93.54896557500012,31.79255294899997],[93.67571252400006,31.82894063400005],[93.6755906520001,31.680053559000044],[93.78070860200017,31.734153715000048],[93.72250366100008,31.82445061600015],[93.75441759000017,31.931832352000185],[94.01139064800014,31.93533196400017],[94.19931057000008,31.91732361200019],[94.33813466800012,31.86234050700017],[94.4857026000002,31.847804946],[94.60120355000015,31.71741136600008],[94.65796663600008,31.618797772000107],[94.7564925550002,31.527640719000033],[94.71729257300018,31.449180238000167],[94.73147559200015,31.261858616000154],[94.77685555100015,31.167744092000135],[94.85945166300019,31.168295119000163],[94.86506653200013,31.278112132000103],[94.94220753400003,31.286309801000073],[94.94554152000018,31.194553107000104],[95.0587386200001,31.194212968999977],[95.02082056600017,31.341641929000104],[94.92444661700011,31.43919370300017],[94.84213263900017,31.655381259000023],[94.9432445430001,31.70111577300014],[95.01072657500015,31.676240799000027],[95.0242915120001,31.601317313000152],[95.24102053900015,31.52698659600003],[95.40601360900007,31.433407843000168],[95.54217561500013,31.422934152000153],[95.49494157800007,31.31121696200006],[95.6009066040001,31.260628823000104],[95.44335951400018,31.19160619700017],[95.49139351900004,31.105337135000127],[95.58752456100012,31.05923683500015],[95.6802595910001,31.096867557000166],[95.83676967200006,31.085465822000117],[96.0036235250002,31.127805330000115],[96.13317053200018,31.044491391000122],[96.26573955100008,31.087452836000182],[96.40929456300006,30.950220629000114],[96.47274054100012,30.846843097000146],[96.65804262699999,30.633206992000055],[96.87649564399999,30.43330111600011],[97.28277554400017,30.136362808000115],[97.35926057800009,30.068742475000136],[97.55217762300009,29.849134600000127],[97.6305006410002,29.673634311000058],[97.86318160300016,29.425146756000117],[98.04717259199998,29.251068541000166],[98.2097396040001,28.934368890000144],[98.36045058200017,28.730878241000028],[98.47281653200008,28.686322894000057],[98.42031061400013,29.06266783200016],[98.32913964800008,29.267071940999983],[98.23137664900008,29.550903132000087],[98.08842463200011,29.74102263300017],[98.04541758900018,29.863542253],[97.80805952500015,30.103365099000087],[97.49017366800007,30.317461202000175],[97.27278163300008,30.559248431000128],[97.02751960199998,30.755534499000078],[96.82281458300014,30.9733598790001],[96.65063453400018,31.31890165800013],[96.5405425940001,31.396540210000182],[96.28969553300016,31.502948470999968],[96.30057557900011,31.66076931400005],[96.34429156300018,31.71775116800012],[96.49626954900003,31.731431943000075],[96.6797026390002,31.906559237000124],[96.58840158500004,32.03349997600009],[96.30787655200015,32.309808911000175],[96.25321967000008,32.40545195900006],[96.27703852400015,32.468549082000095],[96.36644761500014,32.45680318600006],[96.62532051600016,32.23796527200011],[96.669029626,32.43831488600017],[96.71235652200005,32.48315454800013],[96.85660555499999,32.46468502400012],[96.8832165890002,32.193334655000115],[96.92803965500019,32.10333363400002],[97.05941056400007,31.98874933000019],[96.9990615320001,31.824942634000024],[96.98307053700012,31.719721418000063],[97.03530152800016,31.600695376000147],[97.22476958800007,31.41803258300007],[97.28244764400006,31.19745609500012],[97.5046465320001,30.635709661000078],[97.56622351400006,30.544544897000037],[97.86186262700011,30.32243502400013],[98.10591866900012,30.190389036000113],[98.23843354100006,30.080832867000026],[98.40717365700004,29.897409836000122],[98.4862896030001,29.719926389000136],[98.72483052100011,29.299816851],[98.7719646450002,29.132857051000087],[98.88561252300013,28.894676723000032],[98.9721526560001,28.958678924000026],[98.96759055400014,29.174243704000048],[98.93066357700019,29.3620083940001],[98.82899461200009,29.54851915100005],[98.71258556700019,29.716433817000166],[98.76401558300012,29.824843509000118],[98.68919351900007,30.049404251],[98.74435465600004,30.20030868300006],[98.69477067000014,30.48911000700008],[98.58116956200013,30.777910828000074],[98.36984267200012,31.01691627100007],[98.3624726320001,31.179423772000177],[98.32948263500015,31.409327641000118],[98.29326661100015,31.512621187000093],[98.21150164800008,31.64465778700003],[98.0292666680001,31.83505640599998],[97.88018060600007,31.93813604600018],[97.86399062400005,32.043006730000116],[97.96037262000016,32.153800906000185],[97.90239751000013,32.33400914200013],[97.90595965200015,32.40967073800016],[98.11517363200016,32.50118603300018],[98.21408863900012,32.43826895400008],[98.39746858700016,32.24054036000018],[98.23250552400015,32.1847829350001],[98.40538060100005,31.983334620000164],[98.49224863400013,31.86076655300019],[98.54405952400009,31.88278480700012],[98.54432657200016,31.998704181000107],[98.62680064300014,31.95812621400006],[98.71508052400014,31.842829113000164],[98.74269051300013,31.634656165000138],[98.83261056500004,31.54619992900018],[98.91236152300002,31.54122409600012],[99.00187656100019,31.620000575000063],[99.06996963400007,31.585970719000102],[99.11188451400017,31.485776130000147],[99.10070054099998,31.398542143000157],[99.2662966050001,31.409358822000115],[99.38012653900017,31.38230757000008],[99.49232451500006,31.31837393300009],[99.44329859600003,31.22341702900013],[99.27130160800004,31.200071920000084],[99.11940760800019,31.20019278700005],[99.07394366200009,31.133825045000037],[99.2956696440001,31.080873042000064],[99.42562065900012,30.996865082000056],[99.3430785270001,30.91110781900005],[99.10924555600013,30.927418500000044],[99.05805962000017,30.85345088600019],[99.25473058500006,30.64177262700008],[99.30284857700019,30.501986622000118],[99.30023157900018,30.257961424000143],[99.35968056200016,30.151403295000193],[99.44786053100012,30.219016755000098],[99.494583606,30.30565864400012],[99.57453154000012,30.376203256000053],[99.69966162000014,30.41242984200005],[99.81404157300017,30.336739580000142],[99.88114155800014,30.21097515700012],[99.71623951499998,29.881939357000192],[99.60065457900004,29.688631882000095],[99.6481625360002,29.501924989000088],[99.69079557800018,29.45635157600009],[99.72665352700011,29.317786981000097],[99.55915058000011,28.980796252000175],[99.47821056400011,28.870548576000033],[99.57691954400019,28.876638197000034],[99.66825060500008,28.837790758000153],[99.59242254400004,28.616756786000053],[99.64687356700006,28.580398269000057],[99.72293866800015,28.64563646500011],[99.77542161900004,28.75399519500013],[99.79372367200011,28.86926866000016],[99.92855865500007,28.996315681000056],[99.95745057200008,29.152738423000187],[99.94808161600008,29.295532693000098],[100.01731865100015,29.316415031000076],[100.07665263500013,29.24662479100016],[100.08644856500007,29.092609835000133],[100.11862166200012,29.03635284699999],[100.1280826520001,28.884866041000066],[100.0808635360001,28.809741892000034],[100.03386654000019,28.56768677700012],[100.04711162300015,28.479843426000116],[100.2053755340001,28.164169218000154],[100.30636556500019,28.015207542999974],[100.3710936390001,28.09294215100016],[100.33099360800014,28.21134743000016],[100.40892753800011,28.28503140000015],[100.54740864900015,28.23903319200008],[100.5238345460001,28.434326172000056],[100.4847566050002,28.48964304500015],[100.55622054300005,28.545707582999967],[100.65982857800014,28.483498104000034],[100.65705064800017,28.630024165000066],[100.52064556700014,28.813373938000154],[100.50520358700004,28.903384347000042],[100.57234967200009,28.95049550400006],[100.5292586430001,29.02620253000015],[100.63220953700016,29.036048081000047],[100.7422176570002,28.913100817000156],[100.86276266800019,28.725702249],[100.96765866600003,28.425673533000122],[100.99685652300013,28.19502283600019],[100.89616354700001,27.911749712000017],[100.91699961700004,27.849742236000168],[101.05757167700017,27.99096439700014],[101.14482159000005,28.026825029000065],[101.25141157000007,28.028093043000183],[101.1482615230002,28.441329922000136],[101.04367867300016,28.700001488999987],[100.810218529,29.13747698900005],[100.58662455600006,29.56766643499998],[100.41093466900014,29.626749968000127],[100.3359835230001,29.697984410000174],[100.31258359600014,29.82279178700003],[100.4377136760001,29.834517063000078],[100.59259062700016,29.69064773000008],[100.676933528,29.675113214000135],[100.74533052800012,29.61609958600019],[100.76641051200005,29.469188293],[100.84202567199998,29.36545318800006],[100.91875462000007,29.48219767700016],[100.84989963200007,29.70200923200008],[100.83743255700017,29.83578926900003],[100.68167852300013,29.959943527000064],[100.58345753800006,30.073226290000093],[100.60352364600016,30.17885922500011],[100.4872586030001,30.23282527000015],[100.34404758400007,30.247980757000107],[100.23626653500014,30.32394192200013],[100.10642264100005,30.487292978000085],[100.07458465200017,30.606316841000137],[100.16902959000004,30.867036443000075],[100.15328954900019,31.023497909000014],[99.99824563000004,31.164948057000117],[99.93103064600007,31.29351756700015],[99.78492753600011,31.425008170000183],[99.72830962400013,31.55733478500008],[99.31582661300018,31.841070086000173],[99.27828255900005,31.928977308000185],[99.09262055400018,32.08907098800012],[98.83107751400013,32.25402868700007],[98.93731662900018,32.30790621900013],[99.181442576,32.1920837400001],[99.4766996420002,31.950535730000126],[99.75412756200006,31.66037217900015],[100.06837466700017,31.462992776000135],[100.21447761000007,31.398709949000192],[100.26707455600007,31.322737720000134],[100.40196955300019,30.845369390000144],[100.2995376670001,30.659666984000182],[100.34850357100004,30.59855402500017],[100.50061063900012,30.491787857000133],[100.781562646,30.417995593],[100.93723252500007,30.35564479500016],[101.00729366900003,30.367958313000088],[101.04389157300017,30.46802767600019],[101.03930667200012,30.65324125000018],[101.08820367800007,30.72206170400011],[100.9724506,30.916253805000053],[100.7712555870001,31.10613911600018],[100.58366356500011,31.307982217000017],[100.516410527,31.359465543000113],[100.37827257100008,31.59504949300009],[100.37064353100016,31.671415840000066],[100.61578352100014,31.525973726000075],[100.91403158500015,31.15978832500008],[100.99668855000016,31.101155236000068],[101.2251205570002,31.022804055000165],[101.29955252800016,30.903091199000073],[101.31253056400016,30.748010903000193],[101.25821667000002,30.525100893000058],[101.23325351800014,30.345383334000132],[101.37312367800007,30.148354629000153],[101.419021638,29.891552226000044],[101.48268856300012,30.025609033000137],[101.45381156600013,30.144472635000113],[101.4975275490001,30.20899836899997],[101.68007651599999,30.010217512000168],[101.73024757100012,29.866095884000174],[101.64101466800008,29.606881840000085],[101.56366763900013,29.551265900000033],[101.51446553200009,29.44335225000009],[101.56549053500015,29.394738888000177],[101.71816254300006,29.36749820500006],[101.67028762600006,29.227757462000056],[101.51068864600006,29.241198012000154],[101.39661362600015,29.20866935400005],[101.36525759699998,29.109249086000148],[101.4274826670001,28.925344430000052],[101.45636754300017,28.622076612],[101.482810604,28.542539894000186],[101.56262157700007,28.581837106000023],[101.56716959800008,28.77196666599997],[101.65355667700015,28.78043909400003],[101.73374165100017,28.69147776400007],[101.90039065000008,28.85401024300006],[102.06983166100008,28.752953157000036],[102.1436995300001,28.818372570000065],[102.08812751200014,29.207824291000065],[102.00195366800006,29.643009351000103],[101.96706366100005,29.87195684600016],[101.90598255300011,30.167348692000132],[101.889045576,30.325540016],[101.84185060000004,30.522498983000105],[101.68151853800015,30.621861416000115],[101.62515258600001,30.716023046000146],[101.65660852800016,30.82817291000015],[101.79096959800012,30.978091631000098],[101.88793966800017,31.214989360000175],[101.86606558300014,31.419657331000167],[101.74108151600007,31.51334018700004],[101.56805455900002,31.551658895000116],[101.407386551,31.702698779000173],[101.350364631,31.729369995000184],[101.1889345400001,31.667707853000138],[101.02313261600005,31.634645101000103],[101.0158695290001,31.76604769400012],[101.05757167700017,31.83256061100019],[101.19531266600006,31.949867692999987],[101.18025155900011,32.03243580900005],[101.11008463600007,32.09408688700006],[100.98466454200002,32.13302669400014],[100.95929755000009,32.201707338],[100.96158564200005,32.350460639000175],[101.06449160900002,32.38682938100004],[101.28074655500018,32.15309112600005],[101.46306652800013,31.918235564000156],[101.57809457000002,31.842476235000106],[101.75012156600019,31.84061830200011],[101.8757326,31.866223507000143],[101.97320558400014,31.931502272000046],[101.97012355800001,32.004875944000105],[101.8598936520001,32.10906735900005],[101.75949856900007,32.1616126720001],[101.74092863000004,32.22028482100012],[101.628074518,32.30272134200004],[101.47570761100002,32.365074152000034],[101.4204405270001,32.45461031200017],[101.52264358700006,32.553068170000074],[101.76913457200004,32.47858154900018],[101.91585559700007,32.470726868000156],[102.09162159200008,32.32790158500006],[102.16439864000017,32.29490940800008],[102.35295055799997,32.12784299000003],[102.4194255880002,31.89314148700015],[102.43434856100009,31.770760671000062],[102.48674752500006,31.69796082400012],[102.62338260600012,31.684133366000026],[102.81360654600007,31.71054742500013],[102.88011963000008,31.676315733000024],[102.86042064800017,31.55305699700017],[102.80175067900012,31.508033436000176],[102.58892057800011,31.467770796000025],[102.41622956800006,31.475737460000175],[102.34751154100019,31.425572105000185],[102.2942735470001,31.312859144000072],[102.21935257600012,30.953409440000087],[102.36458564500015,31.033636827000123],[102.41095751900008,30.974188849000143],[102.40206163700014,30.86133373100006],[102.50187652500006,30.901035454000066],[102.60947451400006,30.866366561000063],[102.57962052100004,30.753676399000142],[102.30319256300015,30.589011396000103],[102.23646557300003,30.505003436000152],[102.33666954900019,30.172614539000165],[102.39587361300005,30.10326216900006],[102.41797652400004,29.989300305000086],[102.50546263900009,30.061887754000054],[102.56287364600007,30.188523056000065],[102.54918666900011,30.435627932000102],[102.7313846020001,30.630287073000147],[102.85424067100013,30.593137137000156],[102.91418452200008,30.663435656000047],[103.00611857700011,30.88097420600019],[103.02740458800014,31.038481399000034],[102.87678564400005,31.113736808000112],[102.85143256600003,31.175006676000066],[102.94696765400005,31.372489009000105],[103.018127665,31.437166624000042],[103.08946252300018,31.410472777000166],[103.19976065800017,31.486100007],[103.24095167700011,31.606894128000192],[103.16744959400017,31.797916528000144],[103.00526462900012,31.959255424000048],[102.98786161900011,32.01462560600015],[103.09555851400017,32.20187950300016],[103.20967058200017,32.270751254000174],[103.34634354800005,32.19326558800003],[103.38802356700018,32.21572992700004],[103.40108458399999,32.326642455000126],[103.37013256300008,32.503982907000136],[103.519882639,32.90433747200018],[103.61544052600004,32.92686283100011],[103.71340167300013,32.84672613700019],[103.84947164500005,32.607822617000124],[103.98638953100016,32.73731246000017],[104.11248755300011,32.76706972500017],[104.11939960500001,32.83351256900005],[104.20526164200004,33.03923246900018],[104.28257765800015,33.136989432000064],[104.33052851500003,33.393916725000054],[104.28935962400016,33.584753215000035],[104.2243656760001,33.72198626000005],[104.15115360800007,33.68812018600016],[103.96163156800009,33.793727304000015],[103.87586257000004,33.885342680000065],[103.84397864900012,33.99682350100005],[103.75006059700019,34.08760286500018],[103.43578365200005,34.233119075000104],[103.35957354400011,34.256380197000055],[103.26231362800007,34.3671552620001],[103.06969464300005,34.493117832],[102.83853952200013,34.70902308500007],[102.74822954500002,34.817407464000155],[102.57495867400007,34.948226174000126],[102.41351366400005,34.95141079399997],[102.23140759700004,34.770552793000036],[102.0616306390001,34.70257337900006],[101.98266556800019,34.754364153000154],[101.99380461400006,34.81561859800013],[102.0892946080001,34.965166671000134],[102.10445361500012,35.066242030000126],[102.03690352200005,35.233454963000156],[102.08346566500018,35.324146653000184],[102.24213358300005,35.350730864000184],[102.39167059200003,35.40994850700008],[102.48867754200012,35.473537816000146],[102.54073352000012,35.40005786200015],[102.56994663200015,35.26512414000007],[102.54000060600009,35.09406927800006],[102.69303152700013,35.01427942700013],[102.9450146710002,34.982084201000134],[103.0531616740002,34.91220108900018],[103.3808746420001,34.74786432200011],[103.43942257100014,34.68161191500013],[103.651588657,34.54522846000009],[103.8595886020002,34.42864674800006],[103.97298452100017,34.408880041000145],[104.11473859700004,34.451798067000084],[104.36141951600007,34.55945707600017],[104.51924153300007,34.579674729000146],[104.46739158300005,34.76282082200004],[104.47418260100011,34.908081216000085],[104.38937366600004,35.014126373000124],[104.16396366999999,35.065662002000124],[104.1521076360001,35.12542564200015],[104.3147505880001,35.21092926900013],[104.49612457900014,35.2214081570001],[104.60594159300018,35.187503861000096],[104.68177065900005,35.220180208000045],[104.87190256600013,35.22071832600017],[104.91606865800014,35.19252797400003],[104.94320657800006,35.06457101299998],[105.05442051900013,34.914749020000045],[105.15808052200009,34.9406923520001],[105.21260061100014,35.08895061700014],[105.32180054900016,35.105234978000055],[105.38486464700003,35.17209725200013],[105.59241465100007,35.26238811900009],[105.64367652700008,35.372501349000174],[105.7982636320001,35.3769943850001],[105.97206859800013,35.46676708200005],[106.04452562400002,35.46543218000005],[106.12339765700006,35.30789313600013],[106.26493866500005,35.21905820600011],[106.33657057700009,35.14061901500003],[106.54273957900006,35.24203367300015],[106.578796683,35.367770603000054],[106.77176653400005,35.50752626600007],[107.12344353200018,35.52915543200015],[107.29606664800008,35.6641654280001],[107.3226166620002,35.71540702000004],[107.48455067300006,35.834747216000096],[107.58112360900014,35.881381276000184],[107.84245257400016,35.93128696000008],[107.97346457100019,35.985542684000166],[108.13159956800013,36.199859063000076],[108.18248761100006,36.49777252200016],[107.98310862100004,36.42773199800018],[107.7736896200002,36.64610723000004],[107.84642760800006,36.79582713200017],[108.05192555500003,36.854690891000075],[108.1653055480001,37.05993637500018],[108.21459952000004,37.099154629000054],[108.38450656500004,37.14999556600014],[108.63246153400013,37.10896162400013],[108.94338957399998,37.19733186100018],[109.04932358600013,37.19545096200005],[109.19885254800005,37.10500955600003],[109.23918961900006,36.98012322200009],[109.31700167600007,36.88789697400017],[109.68757668000012,36.59801321100002],[109.88121054600009,36.64185442000007],[110.063102539,36.811917536000124],[110.16339167500007,36.86912536600005],[110.21720165000016,36.98570389300011],[110.357971523,37.00219478500014],[110.36501366200014,37.118731402000094],[110.30719764100007,37.362039444],[110.24492663800015,37.417526302000056],[110.23683961000017,37.61054678000011],[110.12454960000014,37.69794304100003],[110.15653259600003,37.7883695270001],[110.36377766700008,37.8139769120001],[110.32972752600017,37.87285592600011],[110.40861565199998,37.92693579700017],[110.45365161800004,38.0560494610001],[110.47714961300011,38.22527053100009],[110.60965761200015,38.28647937900013],[110.67633866900007,38.357382400000176],[110.69955452900018,38.473919186000046],[110.75971262200005,38.51522051100005],[110.86641659600014,38.50616084700005],[111.03462261800013,38.65374118400018],[111.1090465420001,38.58134651800009],[111.15006254700012,38.34873847900019],[111.0041736780002,38.20282094400005],[110.8621825620001,38.11910534499998],[110.84212466700006,37.997918615000174],[110.92488858500013,37.82159069700009],[111.16268954900005,37.54834501200014],[111.21237965000012,37.527616398000134],[111.31905361700012,37.582524234000175],[111.308181618,37.7166656980001],[111.34780857400011,37.89468240200006],[111.43470762000004,38.09842970400018],[111.43564555500012,38.16996539200011],[111.52987658700005,38.43381982500017],[111.78646860400016,38.67251715000009],[111.89067862700017,38.74906890400007],[112.04972859300005,38.75603074500009],[112.18618061200004,38.73378718600003],[112.37230664000026,38.888089474000026],[112.43985757100006,39.00828462400011],[112.567321676,39.17250521800008],[112.67705554100019,39.232917450000116],[113.04728655100018,39.70890159200013],[113.12493868100023,39.84102469400017],[113.33216061800033,39.93134473000015],[113.66081956800019,39.84722378200007],[113.95919755200009,39.89423921800011],[114.08052861800002,39.94635554500002],[114.14009059000023,40.02030958000012],[114.2021406450001,40.21694684900018],[114.4248355750002,40.1819405010001],[114.67400357300005,40.31761568500008],[114.74076861700007,40.21101212600007],[114.88329366100015,40.27892834100004],[114.98542061300009,40.28436316700015],[115.08769961300004,40.38863706000012],[114.99608658500006,40.48438488100004],[114.86627957100018,40.493780659000095],[114.82052661700016,40.57459360500002],[114.69893655000021,40.64351698900015],[114.65490758600004,40.71363831500008],[115.05007157300031,40.868696483000065],[115.12966160000008,40.94829673500004],[115.42661264800006,41.175993315000085],[115.73724363300005,41.36614248800015],[115.96718555700011,41.45777462700005],[116.0723876620001,41.535613003000094],[116.29919458600011,41.65248690900012],[116.40502164600002,41.74081523700016],[116.56043269200029,41.80920452600003],[116.82334868700002,41.96498454400012],[116.98821267600022,42.130087249000155],[117.04489864900006,42.22905858300004],[117.32935362100011,42.53468624200019],[117.31970957100009,42.70194443800017],[117.27822166500016,42.765328893000174],[117.29048958600015,42.89612631300014],[117.2713925930002,43.05894042300008],[117.13809166600015,43.12215824599997],[117.09749559500005,43.17436878500007],[117.14981861900003,43.41037602199998],[117.17191365200006,43.65026592300018],[117.10235559000023,43.78318446800006],[117.24041760500006,43.91037414900018],[117.35998562200018,43.94385616400018],[117.47407556200005,43.82586746500016],[117.4587405340003,43.76741877800015],[117.59777853900005,43.709679870000116],[117.72245767200013,43.59996629000011],[117.92682657700027,43.56421043199998],[118.14713266400008,43.43889477700003],[118.17044860400017,43.35418206600008],[117.98465768500012,43.35504825200019],[117.62898268800006,43.29005749000004],[117.55998956600001,43.20188875300016],[117.80705253300005,43.13371605200007],[117.91901363700003,42.982708858000024],[118.11357169100017,42.862950572000045],[118.37186456400002,42.78951403600013],[118.51164269100002,42.78714883100008],[118.93766063100031,42.68590734200018],[119.12757058500006,42.51755061400013],[119.28649163700015,42.51362956000003],[119.36820262000003,42.558001176000175],[119.42382861800002,42.690363498000124],[119.530464531,42.72772415500003],[119.57369956100024,42.84653260300013],[119.66899056900013,42.8768553110001],[119.82814765500018,42.60975909300009],[119.71440154100026,42.52409654600012],[119.67736057000013,42.3994371930001],[119.58117655400008,42.33348184100004],[119.41220057100008,42.339809843000126],[119.32560763200001,42.27172213500006],[119.309913692,42.104616489000136],[119.31420153800002,41.80619072899998],[119.4594426540001,41.86123736899998],[119.63508560300022,41.98283330300012],[119.7236405770002,41.942973498000185],[119.91738156400004,41.962851517000104],[120.14003760200012,42.11529721300013],[120.17934453700002,42.304005035000046],[120.1773836750001,42.40214136300017],[120.25678259400001,42.50029361700018],[120.25822461600012,42.582040978000066],[120.18982661000018,42.65494777700019],[120.277175596,42.713400320000176],[120.54178658,42.786863008000125],[120.71500363900032,42.93030620500002],[120.75299059100007,43.05645351300018],[120.70429961300022,43.26536440299998],[120.77961755100023,43.43622380000011],[120.76894353300008,43.51387240900016],[120.84937258700006,43.55322829500005],[121.34934959200007,43.58519519700019],[121.41102564700009,43.660397968000154],[121.19493062800018,43.79276364200018],[121.29576056400003,43.943451150000044],[121.65814158700005,44.141311507000125],[121.95858755400025,44.248283535000155],[122.14961967700003,44.25564938400004],[122.36029864600005,44.22581047900019],[122.68589065800029,44.29489546600007],[122.92209654500016,44.41838805700007],[122.99139359500009,44.36917119800006],[122.98360462700009,44.25081654600001],[123.11429559700014,44.18591664300004],[123.22713462200022,44.26742528700015],[123.23652654400007,44.419750116000046],[123.28100561600024,44.454200241000194],[123.45477269500009,44.367732361000094],[123.54782053800022,44.27168631100011],[123.80208557100002,44.055572684000026],[123.76130660600006,43.99767284400019],[123.65157357900011,43.988914928000156],[123.57541661300013,43.93429207700012],[123.69842556800006,43.792817621000154],[123.70105765300013,43.55404033400015],[123.94067363400006,43.47260058900014],[123.97713457800023,43.52475161700005],[123.9994586040001,43.72266478000017],[124.0916746260001,43.828114486000175],[124.13912960900018,44.01447705100014],[123.9913326840001,44.11022185500008],[123.87236766100011,44.360122263000164],[123.93624866000005,44.394630055],[124.0494616850001,44.35387439200019],[124.1575545410002,44.26721557200011],[124.25445554400028,44.26530449800009],[124.23957867200022,44.37382131000004],[124.36309054200024,44.41296328900006],[124.40854660900015,44.644987781000054],[124.52151454700015,44.834582910000165],[124.46033453300015,45.03071173300009],[124.34302560700019,45.069960666000156],[124.35446154000022,45.14103987500016],[124.57593556200015,45.164366712000174],[124.51263459100005,45.37747911500003],[124.41762555100013,45.47138928700008],[124.50369260900004,45.66169352600019],[124.57570656800021,45.74928273800003],[124.95505558100024,45.91238099500009],[124.92752069400012,46.00710337400011],[125.0286946240002,46.17279180700007],[125.25059461400019,46.284852153000145],[125.2794266850002,46.22579695100012],[125.46890262300008,46.1757898460001],[125.6326146040002,46.163804731000084],[125.83398463100002,46.211873939999975],[125.90071866200003,46.291730175000055],[125.91937258700011,46.459955810000054],[126.04697465800007,46.68560385200004],[125.96599558300022,46.74360997500003],[125.8460996660001,46.624350413000116],[125.70575760500014,46.60583428600012],[125.76997354500008,46.73294802700019],[126.00759865600014,46.871154714000056],[126.24320959600004,47.07401353500012],[126.45426156000008,47.48479133100011],[126.40998868200029,47.572994769000104],[126.28417966800009,47.4582520460001],[126.16342963600016,47.258333765000145],[126.01078059400015,47.139623049000136],[125.8302615570002,46.95874811700014],[125.75372354900026,46.92937876600007],[125.66025560600019,46.9794053170001],[125.50038169900006,47.13640791900002],[125.36930063600016,47.23082553200004],[125.26013959000022,47.17001113600014],[125.15273254200008,47.17199915600014],[125.15641756100001,47.28864205600007],[125.40247369400004,47.45585985100013],[125.69963060200007,47.582275715000094],[125.78495066500011,47.65943230700003],[125.63321659200005,47.71045479600002],[125.46232567900006,47.65380939100004],[125.3684926200001,47.591312915000174],[125.0423816010001,47.45291109800013],[124.85507154600009,47.424681686000156],[124.85302753500002,47.37105426900007],[124.98118566100004,47.289606813000034],[124.84934268300015,47.05279659100006],[124.71929963400032,46.9959191750001],[124.53350854700022,47.086121697000124],[124.49257669700012,47.2035204770001],[124.51415255400002,47.304128963000096],[124.5983655350002,47.42301469299997],[124.65570864900008,47.610557933],[124.71989458200017,47.68005849500008],[124.9535295720002,47.79403142300009],[125.42145568700005,47.888259102],[125.59875456500004,47.94169155600008],[125.70359054800008,48.01385102500012],[125.6682056730001,48.09801170300011],[125.47909568800003,48.118786921000094],[125.20227864200001,48.03129628000016],[124.99005153500002,47.99520095500014],[124.86347960100011,48.02734002200003],[124.88301865500011,48.080997613000136],[125.04412067800001,48.18457949700013],[125.17210362300011,48.18927554200013],[125.5155405390002,48.344816843000046],[125.77479565400006,48.39113524000004],[125.87905161000003,48.339399619000176],[125.98894456300002,48.21912567800007],[126.22257955300006,48.150788189000025],[126.36956762500006,48.03847118900006],[126.40595262800014,47.79759825800011],[126.60785658300006,47.71629480300015],[126.70293469,47.6250011250001],[126.99680354500015,47.451675102000195],[127.19647254900019,47.40029873000009],[127.22747754400007,47.62532902500004],[127.17419462300006,47.73864900400014],[126.72221357,47.95083939700015],[126.86550153400015,48.08037265900009],[126.77958669200007,48.168077373000074],[126.57285258200011,48.311129638000125],[126.64361562600004,48.388919232000035],[126.91777762100014,48.49123813000017],[126.93357063500014,48.52832453100012],[126.79073361700023,48.63397355900014],[126.82308960700004,48.66852376400004],[126.74467455600018,48.884822799000176],[126.67077668000002,48.91459314000019],[126.51634966900008,48.8797608000001],[126.29073364600004,48.79697391600013],[126.20471956100005,48.82107524000014],[126.00228855300031,48.68975294600011],[125.88919069500002,48.66148967100008],[125.95447566300004,48.831252380000194],[125.85239363700009,48.880386928000064],[125.71929169700013,48.854663538000125],[125.61429561900013,48.89453189300008],[125.60530066300021,49.19631913200004],[125.61746967800013,49.33864384800006],[125.4752805810001,49.43723212800006],[125.29326654800002,49.41598786000003],[125.09561154800019,49.268635175000156],[125.03971867000018,49.13775561300014],[124.75289162000013,48.97850196700011],[124.55370357000004,48.8057631800001],[124.46989459600002,48.790717161000146],[124.24713864600005,48.80951207000015],[124.13145463600006,48.791492151000114],[123.96450757600007,48.69942298000012],[123.79252668100014,48.474510031000136],[123.60712468200006,48.37254216700006],[123.32057959900021,48.28448742400019],[123.20596361000014,48.19977756300017],[123.11877455100012,48.065056575000085],[123.03757469600009,48.01495408400018],[122.670516571,47.8793020330001],[122.41555768400019,47.62418120800004],[122.29682953400004,47.474598266000044],[122.22339668600023,47.26192373400005],[122.06084459400006,46.913002874000085],[122.01545759400017,46.655409723000105],[121.86633264000022,46.51839695400008],[121.62489359500012,46.42586359300003],[121.34751864900022,46.37900741300018],[121.19773068600023,46.37999949500005],[120.6012266790002,46.50436581600013],[120.46612565500016,46.573485168000104],[120.13462054600006,46.60553622500004],[120.13752755700023,46.69370982300006],[120.06560563100015,46.83790236300007],[120.07811763300015,47.12151478600015],[120.21321061100002,47.30606719500008],[120.24311053600013,47.381175585000165],[120.45694763800009,47.61754709900009],[120.5794675940001,47.89017017600008],[120.93682869500003,48.12543192600003],[121.10844464200022,48.45288874400006],[121.26200865200019,48.64267866900008],[121.47150459900001,48.781702758999984],[121.72138254400011,48.829063529000166],[121.89002962100005,48.90064716200004],[122.01594558800002,48.88734491400004],[122.1624066060001,48.95066952200017],[122.23284962900027,49.07805902800004],[122.18452460400033,49.26801709400007],[122.08581562400013,49.45389820200006],[122.1742475530001,49.57991860700008],[122.24471253700005,49.79322731500014],[122.18960554600005,49.90544574300014],[122.10047959600001,49.90309981600012],[121.84108768800013,49.82180776000013],[121.7628855380002,49.81977062300007],[121.53104360400005,49.966409672000054],[121.53025067600015,50.162650980000194],[121.47961459300006,50.26403965500003],[121.38369762500008,50.278634560000114],[121.30203257500023,50.368246995000106],[121.31787856300002,50.55092755800001],[121.30341357700013,50.70680698500007],[121.16832764100002,50.84744509400019],[121.05993655700001,50.896880721],[120.83860754200009,50.90900380300019],[120.52455154300014,51.002515332000144],[120.37477162700009,51.167312098000195],[120.35090667200018,51.25338452100016],[120.38463561800006,51.51222758200004],[120.30760961600026,51.635024811000164],[120.14021261600021,51.543154123000136],[120.05116260600016,51.54990624900017],[119.99872558800007,51.739084462],[119.92221859300003,51.882527157000084],[119.76921868500028,52.00684637100011],[119.65881359700006,52.032325010000136],[119.52279659900012,51.90621257100014],[119.32170066000003,51.782961211000156],[118.97820255600004,51.704106948000174],[118.42870359100004,51.776369179000085],[118.2702026400002,51.75482802300013],[118.12609861300018,51.654308217000164],[117.82379957500018,51.50917573100003],[117.6829986890001,51.51068682099998],[117.35340163700016,51.57817773700009],[117.21810162600002,51.54434435300004],[116.98950164500002,51.36217424800003],[116.79620355900022,51.33736264100014],[116.53040368600011,51.532655957000145],[116.30419958800007,51.58063380300007],[116.11289957900021,51.46722497600007],[115.95379664000006,51.4776431790001],[115.90149658200016,51.58057697300018],[116.06809964800004,51.77751817100011],[116.80629754900019,52.37226717500016],[117.27210254000022,52.67620521000009],[117.352302602,52.75798978700004],[117.34950254300009,52.84186145700011],[117.164100544,52.8685311640001],[116.944900533,52.83201925900005],[116.77320059900012,52.886540521000086],[116.6557005650003,52.98849363300019],[116.674201605,53.07660336100008],[116.62059765800018,53.160967049000135],[116.41999859800023,53.18140766100015],[116.10459864500012,53.01038297300016],[115.83699766900008,52.597364694000134],[115.66549655400001,52.40040069800011],[115.4506985500002,52.24774880600006],[115.19850166800006,52.17231536600008],[114.90670062800018,52.13279486000005],[114.5663985440001,52.121724378000124],[114.45587963000025,52.04955602400014],[114.32927668200011,51.89812135200009],[114.37757857300005,51.438602286000105],[114.34197962400003,51.274331735000146],[114.1647796530001,51.14158971400013],[113.9581836770003,51.099497808000194],[113.76187866600003,51.093057824000084],[113.58377864600004,51.00502839500018],[113.33988152400002,50.69285161900018],[113.14517963700007,50.61798747700004],[112.84137755600011,50.55211058000003],[112.75868253700014,50.45557033300008],[112.75917857800005,50.312685036000175],[112.70427660900009,50.18095437500017],[112.56668062800009,50.02265425400009],[112.08306157800018,49.79468040100011],[111.94996667800001,49.665040690000126],[111.92716253700013,49.55159045700009],[111.9542005450001,49.403730667000104],[111.8642115940001,49.30956769599999],[111.7068405240002,49.06352095200015],[111.5593265720002,48.91365118200008],[111.43853764700015,48.83614757900011],[111.3261255970001,48.837001359000055],[111.10710864600014,48.733855335000044],[110.95653563399998,48.70947908400012],[110.90892759700006,48.761355857000126],[110.94441255200002,48.851459639000154],[111.09839666300007,48.94849458600015],[111.12416062200009,49.01591626800018],[111.03511061200004,49.11980727600019],[110.93617263800002,49.17422410000012],[110.72344965900004,49.23358976700018],[110.54535668000005,49.23358976700018],[110.14958953000018,49.11485943800011],[110.01943165000006,48.990067987000145],[110.02853355800016,48.88533409500019],[109.86963664600012,48.567978980000134],[109.74236264300009,48.468623923000166],[109.645309592,48.35595605700013],[109.51033764900006,48.26206415600012],[109.40280151900009,48.235101753000095],[109.26674663500017,48.26715314500012],[109.22053552600016,48.38877422500019],[109.143440624,48.482475018],[109.0676955450001,48.482711890000076],[108.7409666120002,48.39178031100005],[108.5113906420001,48.29699523500011],[108.4487766520001,48.244180863000054],[108.11557756000019,48.108025731],[107.76438855700002,48.17318144900014],[107.6575466170001,48.17455038200018],[107.5114825660001,48.124062826000056],[107.37435161200011,48.12014881300013],[107.1012415460001,48.2327179400001],[107.07791856500012,48.31832349100017],[107.1231766520001,48.38847314700013],[107.09095762200008,48.546188546],[106.85600265000011,48.61005529600004],[106.80988357400014,48.71417110600004],[106.82305858500018,48.94472541100015],[106.74829066700005,49.006029143000035],[106.54234361800002,49.03946170400002],[106.33437368000011,49.130598641],[106.29631062000004,49.198566153000115],[106.37093353000012,49.26309591100011],[106.37037663700016,49.39452163800007],[106.4689865430002,49.52288394700008],[106.58021557100017,49.58399975599997],[107.02255257500013,49.652142617000095],[107.31968651600005,49.74919768000018],[107.57870459100019,49.75935302600004],[107.84230756700015,49.75019663500012],[108.06649766100014,49.83362892600019],[108.16069768000006,50.04465356500015],[108.1268996670002,50.15559408799999],[108.04499858300011,50.22250883300012],[107.61289957100013,50.40893945900007],[107.39050253400012,50.43164871700003],[107.27629860000013,50.50034092800013],[107.4817965470001,50.68379245799997],[108.02110261500007,50.85985433400003],[108.25810260400004,50.98734727300007],[108.24520168100014,51.081396753000035],[108.15090158200007,51.11955922300018],[107.94219956900002,51.12668920500016],[107.53070059400017,50.99504538000008],[107.36710361300004,51.008637307000186],[107.2925036690001,51.062948184000106],[107.3769986170002,51.159709712000165],[107.87149855100012,51.329672748000064],[108.14279963500002,51.45425465200003],[108.18669867900013,51.55445326300014],[107.55329854000013,51.54927626500006],[107.3951035280001,51.562395452000146],[107.4639665630001,51.731427426000096],[107.65235168100014,51.82562224800006],[108.4597016240001,52.094741858000134],[108.66153751800016,52.121655646000136],[108.86338062000016,52.18893265700018],[109.10558359100003,52.24275872400017],[109.37470253000015,52.22930442900014],[109.536170675,52.18893265700018],[109.67073056300006,52.1081971590001],[109.80529062000005,52.08128387400018],[110.07440168000011,52.121655646000136],[110.45116454000015,52.28312747900014],[110.61264056300013,52.39077642900003],[110.82793460800008,52.49842454100002],[110.74719257300006,52.60607365900012],[110.63954965800019,52.64644258100003],[110.3300626350001,52.60607365900012],[110.07440168000011,52.619529128000124],[109.80529062000005,52.727178078],[109.3208766300001,52.727178078],[108.89028954600013,52.70026864900012],[108.68845365300012,52.673355196000045],[108.50006853500008,52.59261936300015],[108.19058251800004,52.53879329500006],[107.8676455580001,52.43114417800007],[107.55815853500019,52.24275872400017],[107.00646954600018,51.91981287900012],[106.57588162400015,51.556498448000184],[106.18566161900014,51.421936045000166],[105.99728354200005,51.34120071500013],[105.51961564300007,51.068834459000186],[105.38233951500018,50.95441846300008],[105.25254859400013,50.72146291000007],[105.2435226250002,50.63598577000005],[105.12442064300012,50.28480364],[104.98693060800002,50.141585749000114],[104.84649651400014,50.045408439000084],[104.61501366200002,49.77707220200011],[104.41570256500006,49.66238161500013],[104.25069457500013,49.64511657100013],[104.151130641,49.7222423180001],[104.06570463100013,49.66870659900013],[103.81716158800003,49.669213872000114],[103.7479936200001,49.69137713300006],[103.78843663800006,49.81853848300011],[103.73038458200011,49.89007651800006],[103.5231016250001,50.013323016000186],[103.36483754700004,50.06961688400003],[102.93838458500016,50.09570220500012],[102.58744066900016,50.00240089400012],[102.33988954100016,49.99525582400008],[101.9545136050001,50.02737226000016],[101.76554862700004,50.076616947],[101.53133360900017,50.06586682100016],[101.25184659100012,50.091495160000136],[100.99201161600007,50.078700017000074],[100.79747753300006,50.094680283000116],[100.28694955700007,50.096824207000054],[100.36492958700006,50.27021544100012],[100.34484051200013,50.38209809000011],[100.2504116670001,50.41950266900011],[100.13673361400004,50.533922185000165],[100.15968360000016,50.62339648700015],[100.36930862899999,50.898852648],[100.39771255200014,51.04528617300008],[100.32274665400013,51.09060879900005],[99.99681064900005,51.000138225],[99.6160885130002,50.78458501100005],[99.41026266600011,50.643637945000194],[99.23789251500006,50.56019358400005],[99.09107962500013,50.615755544000024],[98.95211052000002,50.89958489100013],[98.93772164200004,50.99459124900005],[99.01643358000018,51.0721345820001],[99.08856153400006,51.214584691000084],[98.97110760100009,51.36261312500005],[98.71072361100016,51.443489606000185],[98.58155865000003,51.384143384000026],[98.67659753000015,51.25773355500013],[98.48204752200019,51.220352782000134],[98.32829257200018,51.29649214600005],[98.20644367200009,51.22568199600016],[98.1380696380001,51.10731812300003],[98.11161752500004,50.97951187000001],[98.17501857600018,50.89346660400008],[98.33452552300014,50.81062540500011],[98.26576961000012,50.66704122400006],[98.12220755700014,50.598448423000036],[98.30247463400008,50.54205833100008],[98.32613356200005,50.482296702000156],[98.15591454200012,50.46593925000013],[98.00688162199998,50.391418432000194],[97.91921261400017,50.25552950800011],[97.68250263900018,50.08457103800009],[97.41511556900014,49.773345104999976],[97.2836155780002,49.79964332600014],[97.12142156000004,49.9837506560001],[97.007453661,50.01005424200008],[96.6085585530002,49.99251695300006],[96.31925163300014,50.01443713900011],[96.15706666800008,50.062654875000135],[95.99460560300014,50.30492993100006],[95.86627162399998,50.39531350200002],[95.48547354800002,50.473572482000066],[95.31828257500007,50.59301225600012],[95.24101266000008,50.68963648800019],[95.08084052500016,50.79055225600007],[94.13356761600005,50.83976173900015],[93.82704158400009,50.92817707100011],[93.30245262900002,51.129447521000145],[92.8337785130002,51.15841973700009],[92.52771750900013,51.15832871000015],[92.24713866400003,51.11112904000015],[92.00578260100008,51.04003692200018],[91.69564061600016,50.87097443800013],[91.5062025630001,50.78741206000012],[91.28237959600006,50.744942465000065],[90.88684060300017,50.744282474000045],[90.56905365200004,50.655696151000086],[90.44064356500019,50.65246090400018],[90.13629951100012,50.68738158900004],[90.08511357500015,50.796304085000145],[89.93623353999999,50.9165760140001],[89.81993061000014,50.954414775000146],[89.80416056200005,51.08986884500007],[89.64240257100016,51.20232062600007],[89.44336656900009,51.238660032000155],[89.35491150600018,51.30086314100015],[89.30686962200008,51.41126303200019],[89.32893364100005,51.50596361800007],[89.40399157300004,51.538846998],[90.01055855800013,51.629855691000046],[90.11506664100011,51.73140831500001],[90.26515165800015,51.973241813000186],[90.41206362200006,52.096015907000094],[90.58686854900014,52.15066692200014],[90.80320764900011,52.18603771500011],[91.26152760100018,52.22042346700016],[91.4021226270001,52.27109944800014],[91.440086614,52.43595052900014],[91.18379953000016,52.37344215000013],[90.9917905800001,52.3592509180001],[90.39070854500017,52.352986786000145],[90.29566161800017,52.37130107700017],[90.06730655700011,52.29694068800006],[90.00089254700015,52.24695872800004],[89.94783057400014,52.07599673700014],[89.86459358100012,51.97633171700005],[89.75566857000007,51.92983394800012],[89.45497852200015,51.90652152800004],[89.3624575660001,51.86844287700018],[89.24906952700007,51.72474034400017],[89.13854256600018,51.68842373700011],[88.97879757300007,51.684166736],[88.63627663200003,51.78427029700009],[88.47643256400016,51.78702056700013],[88.33154265100012,51.690437908000035],[88.35523963200012,51.48862632200019],[88.23454257300006,51.45015355400017],[88.1513365940001,51.62723550800007],[88.06271355799998,51.71473821900008],[87.95770256000003,51.688587854000104],[87.93666063100011,51.59361200600017],[88.09764866000006,51.346632859000124],[88.2638936510001,51.27118064300004],[88.6957626630001,51.15578782000006],[89.16211650100018,51.13441731900008],[89.258186523,51.10291594800003],[89.36437266300004,50.89403456200017],[89.46846751900006,50.803731290000144],[89.64524856300011,50.742314403000194],[89.6662215930001,50.5960113000001],[89.34599265800011,50.59197122300003],[89.10729265200007,50.49857469300008],[88.92742958200006,50.484780595000075],[88.70359756300013,50.57000979900016],[88.59010357700015,50.64367197500013],[88.42991652200004,50.701641721000044],[88.09530658800008,50.77415188900011],[87.96793351100001,50.82364468000003],[87.59864060300009,50.90579588100013],[87.51859259000008,51.03434493900005],[87.5241165990002,51.10589906700005],[87.74259157600005,51.267751606000104],[87.73889163700011,51.4791651650001],[87.69905865300012,51.54919630100005],[87.57137259600017,51.52794482400003],[87.32913961700007,51.43758438700013],[87.19220765000011,51.48904541700011],[86.980087664,51.65831828700016],[86.82237964100005,51.6284976550001],[86.69275652599998,51.54602626600018],[86.63804650300006,51.457424855000056],[86.64571359799999,51.30914127600005],[86.39106752300012,51.282990912000116],[86.16607662200005,51.4967054710001],[86.05461860000014,51.65481599300006],[85.90931663200018,51.808409842000174],[86.37342864600004,52.086463890000175],[86.30538150600012,52.16323625600006],[85.75005359800008,52.440451611000015],[85.6753695000001,52.53183514199998],[85.70765659100016,52.77938727700018],[85.6962206570002,52.901249756000084],[85.62206260700003,53.06430509700016],[85.33173359700015,53.31960848100016],[84.75935354600006,53.57496617900006],[84.66741161100009,53.63032613500019],[84.59264352600019,53.78204059400002],[84.59165965800014,53.90179452100011],[84.54662352500014,54.094806785],[84.34573361300016,54.19195119900013],[83.85418662400008,54.32455240400003],[83.71064753800016,54.41754559700013],[83.43908661500012,54.71825810800004],[83.29139764900003,54.85598753000011],[82.96186061100019,55.050122466],[82.52340660800007,55.107012789000066],[82.08651750600006,55.12858127000004],[81.82002260600007,55.179012667],[81.72870663200013,55.27460810500003],[81.71234163700012,55.401320521],[81.8427885260001,55.49341299400004],[82.42106658700004,55.62896077400006],[82.64489760100014,55.69584953500015],[82.85376758700016,55.78970120200006],[82.84647365500007,55.87929167700014],[82.59664164300017,55.93425516900004],[82.07965054800013,55.86234296600014],[81.66652665700008,55.830271122000056],[81.22778364600003,55.754628301000025],[80.90218358800018,55.77898996800019],[80.39089956400011,55.79107114000004],[80.03070051800012,55.87620160400019],[79.50681262600011,55.90203228300004],[78.77198056100019,55.818124906000094],[77.80153655100014,55.801019453000094],[77.33339653000019,55.83474253200018],[76.77256757900011,55.97336512900017],[76.35285953500005,56.021187407000184],[76.01817349300012,56.027405773000055],[75.31120254000007,55.965404165000166],[74.69451155700006,55.970225100000164],[74.38253058300012,56.04329819700018],[74.10513250300005,56.067937807000135],[73.14804052900007,56.015907479000134],[72.78569051900013,55.95849479399999],[72.28488957400009,55.86173226000005],[71.74677256300004,55.79348931900006],[71.16928860200005,55.81718278000017],[70.87957750700019,55.93631510500012],[70.44474750400008,56.00948727600013],[69.53591148800012,56.32042822400018],[69.16899149700009,56.42944040700013],[68.78594958500014,56.509490600000106],[67.65318264400003,56.56232106500016],[67.21820059300018,56.507563600000196],[66.17269161100006,56.33113644000014],[65.69589258000002,56.20286784100006],[65.16921955000015,55.962916081000174],[64.22277862800019,55.50082142300005],[63.74956554300019,55.41052888000013],[63.21871161900003,55.37177079200012],[62.46158956000005,55.46083119500008],[62.07960158900016,55.551344686000164],[61.74325559500005,55.53119894900016],[61.394370610000124,55.4482228010001],[61.08617054500013,55.40957569000011],[60.035427567000056,54.768243252000104],[59.58234060500007,54.622247598000115],[59.126579481000135,54.42473659900003],[58.97484959900004,54.37625466500015],[58.59902953500017,53.99938367900006],[58.22137852900005,53.597637550000115],[58.15095159900005,53.417690662000155],[58.17092148299997,53.17010717900001],[58.13220547300011,52.93411838300011],[58.06276358400015,52.730458252000176],[58.028270544000065,52.553861610000126],[57.98086551700004,52.08017360700006],[57.92279049500013,51.889878421000105],[57.81198156700009,51.69300176400009],[57.674690519000194,51.568792520000045],[57.567024637000145,51.51057567700002],[57.36771756400009,51.502908414000046],[57.215160556000114,51.53267506700013],[56.966060619000075,51.63003154300003],[56.711563575000014,51.78849242900003],[56.46678149200005,52.06099329800003],[56.22683358800015,52.16786340200014],[56.101295477000065,52.392469741000184],[56.016662562000135,52.499508824000145],[55.81929757600017,52.587622408000186],[55.619293631,52.608820911000066],[55.51663962500004,52.708378643],[55.50890363100018,52.76828209300004],[55.603767497000035,52.904820782000115],[55.848926598000105,52.959280018000015],[55.860248538000064,53.166522239000074],[55.92060461100016,53.550967616000094],[55.71598458400018,53.63284037000011],[55.617507616000125,53.73706766000009],[55.61177858500014,53.88325090100005],[55.741336489,54.078640608000114],[55.710823511000115,54.193446195000035],[55.57669059700004,54.28390252100007],[54.993579530000034,54.538951597000164],[54.92702856000011,54.585468645],[54.868946497000024,54.72931735900016],[54.74764258800019,54.858291379000036],[54.54321651900011,54.84281503300008],[54.448337566000134,54.70867960400011],[54.50135763000014,54.59407484800005],[54.69005556000013,54.38161757500018],[54.7240674790001,54.26485883700002],[54.70126350600003,54.05732710500013],[54.72753557600009,53.939789185000166],[54.81188954099997,53.83203277900009],[55.08922559500007,53.58046001300005],[55.24328262800009,53.361739446000115],[55.258830556000134,53.1545428230001],[55.20605859600005,53.00921202100005],[55.04603549100017,52.94489868400012],[54.90230161000005,52.96926001500003],[54.73526754600016,53.03824257500008],[54.558704600000056,53.18229949500005],[54.54615052000014,53.270234377],[54.676731518999986,53.3985063290001],[54.651252545000034,53.456033510000054],[54.47470049500009,53.510328629000185],[54.27014148900014,53.48550193500017],[53.82934155900017,53.40391919500013],[53.53998552100012,53.45611347400012],[53.26073856100004,53.63098612600004],[53.03179559300008,53.69812684700014],[52.72130156800017,53.707652041000074],[52.517070629000045,53.688959559000125],[52.016235486000085,53.60786481300016],[51.77920146600019,53.550059353000165],[51.2081375410001,53.2967848940001],[51.01916853900002,53.24920284100017],[50.57443246800011,53.20046995300015],[50.38149262400009,53.114149091000115],[50.17588051500013,53.15732092100012],[49.992946484000186,53.225341574000026],[49.63526553000014,53.21587035900018],[49.46024351200015,53.24488901100011],[49.152282499000194,53.211147156000095],[49.02219050000008,53.163657305000186],[48.78861954700011,53.033908461000124],[48.64458056400014,52.91125188100017],[48.547573614000044,52.91306404800008],[48.422496508000165,52.73788931200005],[48.253379541000186,52.61197971500013],[48.18938454800008,52.51336394200007],[48.04681357200013,52.523866132000194],[48.041999510000096,52.456927750000034],[47.93664552399997,52.39671567800019],[47.688938492000034,52.36139115300017],[47.487255485000105,52.27555442900007],[47.40058157700014,52.180357467000135],[47.293281482000054,51.963888447000045],[47.07326155200019,51.93950414900007],[46.985038501000076,51.967969595000056],[46.96537355000004,52.10760908500009],[47.11183959700014,52.227015498000185],[47.33797060400019,52.34166451100009],[47.46939448800009,52.467144116000156],[47.30767052700003,52.52229402200015],[47.16698061700009,52.49644859100016],[47.07868548200008,52.52394626299997],[46.97281651200018,52.66117092600018],[46.81872947200003,52.64332551900003],[46.690906622,52.526307277000114],[46.78417960200005,52.41902411300009],[46.745876484000064,52.368082258000186],[46.38760359899999,52.263187099000106],[46.38095859400005,52.145719084],[46.23690050000016,52.074756551000064],[46.039184480000074,52.08485473200005],[45.76106656200017,52.14723402900006],[45.78380146899997,52.20512314100006],[45.69289352600015,52.276748515000065],[45.548347606,52.29475066400005],[45.15833647700009,52.23314267000018],[44.81206849000017,52.23242149100008],[44.72750849800019,52.198095921],[44.63145456900014,52.09273204500016],[44.49948150400019,52.05440931300012],[43.74093250900006,51.90296659500012],[43.64072048600008,51.901272612000014],[43.369255620000104,51.624129678000145],[43.14628257900006,51.51070559600004],[42.90190550900013,51.508130675000075],[42.79177048600013,51.56671045600012],[42.65848548500014,51.591151080000145],[42.49222557400009,51.443871485000045],[42.19419460100005,51.114661006000176],[41.957832475000146,50.955726711000125],[41.664775491000114,50.869143327000074],[41.33841754100007,50.88246451800012],[40.80558347600015,51.02899275900006],[40.48588159600013,51.06229623900009],[40.2327885200001,51.05563530800009],[39.95970946700004,50.942405352000094],[39.77987657300008,50.9823690930001],[39.540103515000055,50.86248306700003],[39.44019659300017,50.78255592000011],[39.287006584000096,50.75591370600017],[39.16712156400013,50.76923472900006],[39.040573601000176,50.82917975400005],[38.880722493000064,50.749253613000064],[38.78081557200011,50.73593225399998],[38.67424755200011,50.636023824000176],[38.57434448599997,50.616042373000084],[38.228000558000076,50.60272118199998],[38.08147449699999,50.57607879900013],[37.61524152600009,50.39624724600003],[37.48869758700005,50.32298136500009],[36.902580601000125,50.2497151500001],[36.88259848000013,50.03657743300005],[36.915901457000075,49.836764931],[36.86261753100007,49.783480167000164],[36.582878553000114,49.71021411900006],[36.47631455700014,49.58366464800014],[36.54024551100014,49.39045943200006],[36.38428846800008,49.364774096000076],[36.265869610000095,49.442530162000025],[36.19485846200013,49.57623375500003],[36.10241646300017,49.679490756000064],[35.93865553300003,49.58800194700012],[36.007320587000095,49.51922608500013],[35.82781961500001,49.450926314000185],[35.70684058900014,49.35001088200016],[35.48048058800015,49.25876699300005],[35.350200499000096,49.25187002800004],[35.1593516050001,49.15637886000013],[34.77941150000015,49.17011210600009],[34.48295247000004,49.049737583000194],[34.415657522,48.87993279700004],[34.202892465000104,48.70805214900008],[33.81056558400002,48.87678874500017],[33.651428614000054,48.886299020000195],[33.53772759500009,48.84243752599997],[33.331893533000084,48.81725225399998],[33.045516590999966,48.73467542100008],[32.93286548900011,48.796581140000114],[32.618698514000016,48.69285408200017],[32.80634351000015,48.63427145200018],[32.72006958600008,48.59300315200011],[32.53404246500003,48.62873637900003],[32.45029451200014,48.55244865400016],[32.3500325330001,48.531464392000146],[32.21479756600007,48.564106708],[31.86505360300015,48.459182882000164],[31.440696453000157,48.4008892600001],[31.186548599,48.28197737900007],[31.09328249200007,48.38690103700009],[30.902088598000148,48.38457019800006],[30.706230510000125,48.477837143000045],[30.689908598000045,48.36591593700018],[30.612964570000088,48.198037648000195],[30.489387490000183,48.1793832190001],[30.30285846000004,48.26099211100012],[30.151300575,48.13974503200018],[30.316846515000066,48.11176389200011],[30.34715849500003,48.04181741300005],[30.232908461000193,48.02083197700006],[30.111663561000114,47.955542483000045],[30.165290474000187,47.86694174300004],[30.291198562000034,47.834299595000175],[30.237571480999975,47.76434909200009],[30.141975540000033,47.792330232000154],[30.072025540000084,47.74569499900019],[29.92300049900018,47.73876383600003],[29.750791448000143,47.65290146400014],[29.655258539000044,47.66244224900004],[29.656263529000057,47.772734013000104],[29.438354498000137,47.75283202200018],[29.48867056000006,47.92486538800017],[29.30956454400018,47.92762320200006],[29.19135255200007,48.01439702200008],[29.023813562000157,48.08772375500013],[28.795087517000127,48.11879077700007],[28.883840473000134,48.16956817800002],[28.707660579000105,48.31122435400016],[28.687305463000087,48.373614212000064],[28.50506947600013,48.37537692600006],[28.39307249799998,48.323816655000144],[28.34787358799997,48.38343730000014],[28.081094541000027,48.39512938400014],[28.179176554000037,48.325872568000136],[28.214742478000062,48.147550092000074],[28.29113045000014,48.07435244100009],[28.464853608000112,48.03143324100006],[28.776296464000154,48.037682116999974],[28.876886511000123,48.00390187400018],[29.036201512,47.875299842000175],[28.97251849400004,47.695309535000035],[29.03226050899997,47.52596642500009],[29.117303466000067,47.46678499199999],[29.070531608000124,47.337138239000126],[29.192169452000144,47.20687357300005],[29.364419574000124,47.101334851000104],[29.492204538000067,46.87737676800009],[29.506551506000164,46.79193835300015],[29.704727525000067,46.56481409000014],[29.35211745500004,46.547141013999976],[29.149919463000174,46.46920574300003],[29.072637478000104,46.46334293700005],[28.8913895500001,46.52004098000003],[28.650289469000143,46.540167103000044],[28.581594576000043,46.50349292400006],[28.551156532999983,46.35079023800006],[28.565967523000154,46.025128154000015],[28.523399525,45.90996197800007],[28.411270448000096,45.716373710000084],[28.290403571000127,45.57723914600007],[28.164337568000064,45.55950521800003],[28.006826520000118,45.395937909000054],[27.74493445800016,45.39979090300017],[27.498138539000024,45.288306896999984],[27.376417547000187,45.16673174900018],[27.09823257400012,45.091280707000124],[26.790918475000012,45.13022587900019],[26.829172475000064,44.96629664000005],[26.97039949800012,44.88334966100007],[26.92641646600015,44.81914495300009],[27.001964571000144,44.72649692800013],[26.91031449500008,44.62126096000003],[26.78272851800017,44.631831881000096],[26.807989562000046,44.51709318100012],[26.93628146400016,44.43814403500005],[27.110626558000092,44.39209335600003],[27.18628647800017,44.34603815100013],[27.171009454,44.2538984040001],[27.250968451000062,44.200092453000025],[27.487289506000025,44.11740464300004],[27.684961605000126,44.12223479800008],[27.75549548800018,44.066394894000155],[27.81133254200006,43.94590000700009],[27.93476646,43.81364950000011],[28.055261515000097,43.740178599000046],[28.357965567,43.719605888000046],[28.522542559000158,43.657892114000106],[28.583576561000143,43.601179151],[28.606037547000142,43.83906225700014],[28.677923598000177,43.98012616800003],[28.65681645700016,44.05459971300007],[28.644151569000144,44.30284838300008],[28.80310447300019,44.463038958000084],[28.760656503000064,44.498160977000055],[28.776885544000038,44.633796096000026],[28.825715495000168,44.76129875700008],[28.932447465000052,44.790316906000044],[28.878568591000032,44.978602950000095],[29.010087525000188,45.035380789000044],[29.05037849500019,44.86822082900011],[29.13336151600015,44.81360887400007],[28.985263513000064,44.76409898300017],[29.013345571000116,44.707210001000135],[29.17037750900016,44.79335283100016],[29.542242488000056,44.833624859],[29.581804568000166,44.859072820000165],[29.691818556000158,45.117499971000086],[29.636194570000157,45.24504387100012],[29.774299500999973,45.35136009800016],[29.760969593000027,45.40145102200012],[29.609685460000094,45.580261325000095],[29.612276474000055,45.69519465200011],[29.681922546000067,45.702800558000035],[29.735813490000055,45.61763723700017],[29.94495052400009,45.724525613000026],[29.99476853300007,45.806621661000065],[30.213470492000113,45.84603487900006],[30.319944467000028,45.92629294300008],[30.65165845300004,46.24702210900017],[30.68388351800013,46.32423938700015],[30.79361151500018,46.44618082300008],[30.74943553300011,46.50646782900009],[31.015270610000073,46.601462453000124],[31.196105477000117,46.622290309000164],[31.34527753800006,46.600081283000065],[31.42360659000019,46.62507544700003],[31.578880509000044,46.60507823800009],[31.653045600000155,46.65090864100017],[31.814714575000096,46.61368444100009],[31.989433503000043,46.65590542799998],[32.13248459500011,46.5617431280001],[32.2558284910001,46.59534316000014],[32.375259546999985,46.555350083],[32.35665859500017,46.45673984200005],[32.1099925960001,46.507024891000185],[31.870828567000103,46.51369303000007],[31.778331583000124,46.491178903],[32.06137051600018,46.38673955100012],[31.788326500000153,46.28313201900011],[32.066375518000086,46.25340794600015],[32.230819574000066,46.184506858000134],[32.26054347900015,46.12785072500009],[32.52720652000005,46.072018532000186],[32.81499044900016,46.126736770000036],[32.910537607000094,46.10924239700017],[33.230537549000076,46.15728461599997],[33.435264528000175,46.04257625900016],[33.58721150100007,46.15646067500012],[33.64833049500015,46.088688629000046],[33.627212458000145,45.99451124100011],[33.687202577000164,45.902568972000154],[33.55165848500002,45.83868797300005],[32.93720245300011,45.65784053300018],[32.71914657100018,45.52979623300013],[32.536384537000174,45.46173400500004],[32.48053759200013,45.39367999200016],[32.50888049500014,45.33700910700014],[32.65442654400016,45.30840603000007],[32.72748555900006,45.353678867999974],[32.93221253800016,45.34145704800005],[33.25804159000012,45.155352981000135],[33.40470846800008,45.18118583900008],[33.566375599000025,45.08729092100009],[33.62220745600007,44.91868877100012],[33.78321057200009,45.01433483600016],[34.03776159600005,45.077757680000104],[34.35287857600008,45.19510180900005],[34.55714756800006,45.24711889500003],[34.69754059100018,45.25636597800013],[34.90606658400003,45.16813571800009],[35.192047565000166,45.098296863000144],[35.34305559799998,45.02579792600005],[35.51526649200008,45.113955934000046],[35.641929455000025,45.10924094600017],[35.78887947200013,45.048403919000066],[35.83525050800017,44.98689969300011],[35.98688550700018,44.99100079100015],[36.02970848200016,45.03480092900003],[36.23332955300009,45.00396273300004],[36.456092545000104,45.08257576500006],[36.40554061600011,45.14256571700014],[36.43276956400007,45.27312794000005],[36.50638547200015,45.34090015400017],[36.625541602,45.33146196300004],[36.586372466000114,45.423122098000135],[36.39054857600007,45.43312405500018],[36.31166045000009,45.46368715700015],[36.13970956200018,45.45840018700005],[36.00860553200005,45.356456128000104],[35.863044563000074,45.402286195000045],[35.721099548000154,45.33589515200009],[35.50305154500006,45.2845109000001],[35.311660509000035,45.38090111000014],[35.05387859700011,45.651729455000066],[34.86997947300017,45.932010909000155],[34.843040539000185,45.90784102100014],[35.00943757800019,45.66146436500014],[35.38248457300017,45.304789909000135],[35.33859256900013,45.28396892600017],[35.04943048800004,45.37284392200013],[35.083320534000165,45.52784324900017],[34.95165257000008,45.66646132000017],[34.71776545199998,45.727840656000126],[34.7305374610001,45.81061966100009],[34.60166150900017,45.873401960000194],[34.370536564000076,45.90173011100012],[34.41193361000012,45.95368600800009],[34.27582558400002,46.00951820100016],[34.165267610000114,45.98757605400016],[34.006652498000165,46.09645563600009],[33.929153589000066,46.048680464000086],[33.69860045700017,46.17312389800014],[33.73998258300003,46.235624062000056],[33.973037546000114,46.20312977100008],[34.03942858900018,46.12923172700016],[34.13777161500019,46.12368475100004],[34.152488561000155,46.27840194300006],[34.46943648300004,46.13896663700001],[34.404159562000075,46.01952032600019],[34.57110544800014,45.98479125100005],[34.63027145899997,46.0686843790001],[34.621093610000116,46.15951286100005],[34.771282563,46.13547657999999],[34.88360559800003,46.22201285699998],[35.029708541000105,46.246464881000065],[35.119712579000065,46.29729223900006],[35.216659515000174,46.402845545000105],[35.307487494000156,46.32951931500003],[35.51110051900008,46.45257386800017],[35.653312582000126,46.50173808900007],[35.72554748800013,46.56840422600004],[35.907203615000014,46.64895548900006],[36.2130505450001,46.658675647000166],[36.61360158100018,46.77313221200012],[36.74694056200019,46.760916929000075],[36.80248257300008,46.715903762000096],[36.92027245200018,46.82563025100018],[37.23915860600016,46.93201487500011],[37.37998949900009,46.93119093300015],[37.56359860900005,47.08619076400004],[37.74137860800005,47.06646848100007],[37.835815499000034,47.090630825000176],[38.219985615000155,47.10090787700017],[38.44999660500014,47.13230296600011],[38.55165853,47.10897193800008],[38.844993457000044,47.15618317500008],[38.97081755900007,47.25647180900006],[39.063880489000155,47.273691758000155],[39.25638548000012,47.25924186000003],[39.2447125060001,47.14063390700011],[39.26970650300018,47.00563128600015],[39.06970960000007,47.0245143730001],[38.93915559000004,46.94451212500013],[38.69776147199997,46.85868864400015],[38.41442850200019,46.82813241600019],[38.3647156020001,46.74702392400013],[38.492492519000166,46.73535111800015],[38.59110259300019,46.6567375840001],[38.466384567000034,46.637572530000114],[38.3024824850001,46.675078697],[38.11749254100016,46.67729872700005],[38.01610554300004,46.6167362920001],[37.809432453000056,46.63230064800001],[37.766929499000184,46.59479448100012],[37.82720946400002,46.473951912000075],[37.99193548699998,46.34256524500012],[38.073043476000066,46.39340735500008],[38.272758580000016,46.26479090599997],[38.308593563000045,46.20840182000012],[38.557487473000094,46.10701465400018],[38.56304148900011,46.032292167000094],[38.44553357700016,46.02534926900012],[38.252212524000186,46.13423672900018],[37.91276556100013,45.98534831200004],[37.8480374880001,45.77506681300008],[37.59136953100011,45.62533936800014],[37.65664645100014,45.50702226700014],[37.72998056100016,45.44839806200014],[37.70109551600018,45.330622935000065],[37.60499548800016,45.31118312200016],[37.51415258900016,45.35979011400008],[37.426101534000054,45.31840111399998],[37.11582158300013,45.23228778800012],[37.089431495999975,45.34034292500013],[36.83665458600012,45.43396325100014],[36.75694251900006,45.34285313700019],[36.79387653700013,45.287578006],[36.75027454700012,45.20729379100004],[36.58415947600014,45.199793831000136],[36.629432482000084,45.123118696000176],[36.82193747300005,45.10423577600011],[37.19638055700017,44.98145564700013],[37.30470257400009,44.907572690999984],[37.33551746800009,44.80522495900016],[37.438053457000194,44.89426373700019],[37.44166957800013,44.953692772000124],[37.31270561600019,45.06080578299998],[37.39845650800015,45.13905688400013],[37.7790525800001,45.05831769900004],[37.88839752500007,44.95623265600011],[38.061027515000035,44.924265921000085],[38.34234949900002,44.95623265600011],[38.45743554400008,44.89868887900019],[38.566127539000036,44.95623265600011],[38.853843574000166,44.937052849999986],[38.94335559400008,44.95623265600011],[39.21189148800016,44.91787287600005],[39.339763456000185,44.91787287600005],[39.403701619,44.975413636000155],[39.672237513000084,44.975413636000155],[39.870441528000185,44.91787287600005],[40.05585861400016,44.89229482800005],[40.29242358200014,44.81557392700006],[40.407508454000094,44.758028977000095],[40.78473651000007,44.42555927799998],[41.129997495,44.23374948200012],[41.32180745900013,44.18259858300013],[41.57115952300012,44.169811654],[41.59034352000015,43.997180825999976],[41.77575658300003,44.19538450500005],[41.86526860400005,44.10587365800012],[41.99728760199997,44.064769811000076],[42.19310746800005,44.06978990100015],[42.31361358700019,44.02460104900007],[42.41403549300003,43.878991130000145],[42.639987463000125,43.80869344900009],[42.92116946900006,43.81371337100012],[43.202350470000056,43.7132926380001],[43.46344759200019,43.547597500000165],[43.51365653400012,43.48734469200019],[43.94547257199997,43.331690067000125],[44.01576656500009,43.28650155100007],[44.146316551000155,43.110763048000194],[44.25677846800005,43.150931978000074],[44.33711649500003,43.27646154000007],[44.47770649300003,43.28650155100007],[44.55804452000018,43.2513537160001],[44.703655613000194,43.105743127000096],[44.854289477000066,43.11578732900017],[45.00994460400017,43.20616469700008],[45.20074454900009,43.090679170000044],[45.39656860600007,43.02038568000012],[45.61247654099998,43.00532172400017],[45.707874502000095,43.03042653000011],[45.84374951100017,43.18208281900007],[46.07846057000012,43.34771207500006],[46.4530144630001,43.315814240000066],[46.825321503000055,43.23916173500004],[46.90492259399997,43.02230463300015],[46.80028962000006,42.889432357000146],[46.645523477000154,42.81592289800011],[46.203548572000045,42.72485922000004],[46.176837626000065,42.642412809000064],[46.29074450500008,42.61485177000003],[46.533622555000136,42.654070527000044],[46.694599520000054,42.744233989000065],[46.78832646500007,42.687200335000114],[46.7124295050001,42.566825141000095],[46.755813565000096,42.45001980000012],[46.70930858700018,42.401619338000046],[46.74694450600015,42.32117184300006],[47.007675507000044,42.23375831600015],[47.15110747200009,42.28443195000017],[47.18652352800018,42.38133228300006],[47.26787962100019,42.39914332400019],[47.37475257500017,42.3548625680001],[47.44238246300006,42.4951355610001],[47.57769353800012,42.470832736000034],[47.74526555200009,42.23108448900018],[47.86801148400019,42.01067211900016],[47.99663547600011,41.89473296300014],[48.11217850300005,41.86790115000008],[48.250064498000086,41.924056716000166],[48.321964464000075,42.04327286000006],[48.14179662800012,42.29506405900014],[47.9857026250001,42.41646201200018],[47.877193523000074,42.56976216000004],[47.73361252800015,42.687174351000124],[47.623512541000025,43.02899557100011],[47.544258462000016,43.103164350000156],[47.552757543999974,43.20835086500017],[47.629039568,43.343234295000116],[47.564151568,43.530210583000155],[47.695583498000076,43.91416628900009],[47.57083546500019,43.90718919300008],[47.51801254300011,43.701317749000054],[47.210491580000166,44.21889155300005],[47.11828947099997,44.25909753100012],[46.96381351000008,44.44403819000007],[46.82187251800008,44.52994917700016],[46.83363350100018,44.661581937000165],[46.92068459500001,44.71859279300014],[46.93351360100013,44.80514767800008],[47.01766254400013,44.84039592800008],[47.14575562700003,44.81961769300011],[47.17357650500014,44.90258679900012],[47.31692850700006,45.170126923000055],[47.409820614000125,45.21997795700008],[47.56249647700014,45.48548127800012],[47.58562047200019,45.60345019500011],[47.55477959400014,45.72938544100009],[47.765266617000066,45.67867643500017],[48.06415556200005,45.74424370500009],[48.21443151900007,45.72839771700012],[48.28527050300005,45.83091392500006],[48.40193150800019,45.866176760000144],[48.45860256100019,45.9339640610001],[48.651565540000036,45.9664731040001],[48.780918590000056,46.04279435600017],[48.941093575000195,46.08588857000012],[49.11388349100008,46.291471007000155],[49.23693050100019,46.30174034700019],[49.216899596000076,46.39523159200007],[49.350490537000155,46.44901072100009],[49.61297955800006,46.430356628000084],[49.84297562800009,46.499563991000116],[49.95454060400016,46.61191854200007],[50.39960457500007,46.816219385000124],[50.893012515000066,46.96644723000003],[51.064479599000094,46.976140230000055],[51.34804156300015,47.029423486000155],[51.58860754900007,47.018246218000115],[51.68262450700007,46.882312703000025],[51.962551575000134,46.81083317400004],[52.341884494000055,46.76748213800016],[52.473499485000104,46.851802408000026],[52.60997363300004,46.87426372900018],[52.619461612000066,46.800853345000064],[52.71038061900009,46.742632980999986],[52.928218571000116,46.77736222300007],[53.017749534000075,46.672652639000034],[53.007125472000155,46.47870897800004],[53.057250594000095,46.39935163300004],[52.98574055500012,46.35782030800016],[52.909046476000185,46.20198195300014],[52.976837633000116,46.109406681999985],[52.9037554840001,45.86185873800008],[52.924026613000194,45.75968954100017],[52.83874862800002,45.75020977600013],[52.719478504000165,45.66881546100018],[52.741935467000076,45.519149372000186],[52.713176486000066,45.48931817800019],[52.767208581000034,45.349547931000075],[52.62649956100017,45.36899897600017],[52.56194650100019,45.42573909600014],[52.43484147700019,45.43672911200014],[52.30252056200004,45.41094503700003],[52.054470543000036,45.413448040000105],[51.933776501000125,45.39360690200016],[51.73133862000003,45.44012009500011],[51.56772956900011,45.349750103000076],[51.42601053000004,45.365229969000154],[51.282039608000105,45.25381787900011],[51.23704957500007,45.15820970100009],[51.248104467000076,45.068117820000055],[51.16477946400005,45.06404086300017],[51.07513048400017,45.001337857000124],[50.95244959600018,44.97822878200003],[50.870319518000144,44.89710889000014],[50.86609252400018,44.81038988800003],[51.05779251700011,44.814448908000145],[51.17501058300007,44.75185268800004],[51.28576251400011,44.54125904600011],[51.21979861200009,44.48638909700003],[51.09281948500018,44.4740899950001],[50.90903049900004,44.60081397700014],[50.81386957900014,44.63357883700007],[50.73884953400017,44.602989080999976],[50.31145461400013,44.63978882100014],[50.24059249600003,44.532427873000074],[50.26787961400004,44.35210011100003],[50.40348858200019,44.29272036200007],[50.60935952300008,44.27973947600003],[50.82998261400007,44.198219600000016],[50.86939952000006,44.02700095500006],[50.99792460600008,43.92908121500011],[51.020370504000084,43.80618340400014],[51.15740959200008,43.625855977000015],[51.27188459700017,43.55627226700017],[51.30706059500011,43.4728106390001],[51.31312959500008,43.33229306200019],[51.282062574000065,43.14747192900006],[51.652324598000064,43.18052277900017],[51.663448557000095,43.09805340100013],[51.773750547000134,43.023937763000106],[51.91202948600011,42.82671862199999],[52.13146955500008,42.87197654100004],[52.20540950800006,42.86577359700016],[52.29486855500011,42.783524999000065],[52.42802447500014,42.83678562300008],[52.60877250600009,42.80364391300009],[52.73834952100003,42.72402438300014],[52.74679948500017,42.64303474600007],[52.55892951900012,42.29231697400013],[52.43873956500016,42.16962988300003],[52.41904058400013,42.08841946700011],[52.4915425370001,41.93661079499998],[52.442935546000115,41.76231498600015],[52.57830059999998,41.68988176400006],[52.55617857800013,41.54259378800009],[52.77017259000007,41.38291635300004],[52.81795161700012,41.37652632500016],[52.95190063300009,41.67526389200009],[53.17384353800003,41.73743213300003],[53.715530569000066,41.62732527400004],[53.827079619000074,41.57456454600003],[54.08678853100008,41.38726136400015],[54.12298946800013,41.25953842600018],[54.231639552000104,41.068942329000095],[54.27389959900006,40.91194995300009],[54.22813055200004,40.84599460100003],[54.23260849999997,40.74360177500017],[54.066020521000155,40.72117213700011],[53.99960751700013,40.67914242500012],[53.759216546,40.65594165200008],[53.68202961100019,40.75633187400018],[53.648208632000035,40.873880523000025],[53.53062058800003,40.86244056600003],[53.48463847300013,40.76590669000018],[53.04108056200016,40.87140048499998],[52.94001358500009,40.949169627000174],[52.83125654700018,40.73188387400006],[52.85485847799998,40.661533890000044],[52.73855957100017,40.49833454700013],[52.7063785950001,40.290128240000115],[52.76691052100011,40.150598888000104],[52.733760596000195,40.079329577000124],[52.771926587000166,40.001369664000094],[52.909358618000056,39.987984770000025],[53.170589516000064,40.00745073400003],[53.2836986050001,39.957532142000105],[53.417713503000186,39.986610976],[53.49332447200004,39.94439049200008],[53.399852505000126,39.77908276500011],[53.460578555000154,39.67703393100015],[53.570850538000116,39.68034880700014],[53.52360962900019,39.58746524900016],[53.283378584,39.54882668700009],[53.20675256600009,39.565447666000125],[53.09268961600009,39.43336932400007],[53.15652049100015,39.33962075400012],[53.22829858400007,39.39320894300016],[53.528999527999986,39.30201936900016],[53.562229583000146,39.20661554100019],[53.64935259400016,39.11223413800013],[53.77118255100004,39.04556515000007],[53.88050050600009,39.02375745000012],[53.98895261000001,38.9262050050001],[53.85137959499997,38.63717049600007],[53.83381246700009,38.49525498500009],[53.86897253900008,38.38142572200019],[53.86236156400014,38.21088081400006],[53.8238026300001,38.051280493000036],[53.813014618000125,37.81221403000012],[53.88380448400011,37.498480735000044],[53.91860162000012,37.26432338400008],[54.00971961300013,37.034882196000126],[54.03365749,36.87335940100019],[54.13351462300011,36.83572817600003],[54.61956761000005,36.94614600400007],[55.070323565000194,37.07534030100015],[55.27307560000014,37.20661264000006],[55.48455856100003,37.445823942000175],[55.8465464730001,37.73581952000018],[56.19812758100005,37.85949718400008],[56.43417354200017,37.901587413000186],[56.46866658200008,37.79851615600006],[56.536750601999984,37.821941899000194],[56.650863509000146,37.77705144300012],[56.903663553000115,37.714323626000066],[56.941299471000036,37.57413931300016],[57.073875531000056,37.48417617900009],[57.72160352800017,37.26164234900017],[57.84927751600014,37.24713076000006],[58.09066056900008,37.106676549000156],[58.316028488000086,36.850727927000094],[58.47132453500012,36.710242704000166],[58.58640655700009,36.66218992299997],[58.796089588000086,36.507430989000056],[58.89702262200012,36.45438544400014],[59.12980249000009,36.247315723000156],[59.11718353500004,36.108093987000075],[59.02534855400006,36.15213787100009],[58.66197159300009,36.2632386570001],[58.4863506050001,36.34310159800003],[58.40645547700012,36.33858492600007],[58.395656569000096,36.18822833500013],[58.163505511000096,36.226206403000106],[57.80724763600017,36.243490055000166],[57.388572577,36.307972371000176],[57.14094953199998,36.30054986100015],[56.74400757500001,36.38613378600019],[56.62266963600018,36.457459088000064],[56.60294349800017,36.5255427730001],[56.87410762100018,36.52669059100003],[57.040542546000154,36.505768187000115],[57.504615501000046,36.534999572000174],[57.67529653100007,36.51968801400017],[57.82186550700004,36.46628305300004],[58.007312601000194,36.36539025200017],[58.08391162900017,36.42646985100009],[58.03689954500004,36.52818977800018],[58.02626760400011,36.63631146800009],[58.107707516,36.725428365000084],[58.03387049300005,36.8223543470001],[57.925147486000185,36.84479605399997],[57.76620849700015,36.82766042700018],[57.62089160900001,36.86339968800007],[57.43974661100003,37.04378176500006],[57.42610154300007,37.12548704900013],[57.089397475000055,37.20661951300019],[56.911453526000116,37.201752645000056],[56.822441570000194,37.25058762400005],[56.79282361200006,37.17172732600005],[56.600856571000065,37.04571178200018],[56.388149517000045,36.93469112800017],[56.335353585000064,37.08127502400015],[55.95942355100004,36.92537212800005],[55.838596573000075,36.79835293500014],[55.57513860400013,36.688511111000025],[55.28841062700002,36.495872512000176],[54.84503158600012,36.244761086000096],[54.42281349700005,36.056933197000035],[53.93424661000017,35.818344670000045],[53.59032454900017,35.62481842800008],[53.137466581000126,35.497784315],[52.9315265730001,35.46280009500015],[52.444011614000146,35.355224906000046],[52.18614554800007,35.40237679900008],[52.013790485000186,35.38132816400014],[51.960067514,35.455007440000145],[51.88715350600012,35.657928454000114],[51.502067584000145,35.78412739400005],[51.12924555900014,35.838802381000164],[50.94217254400019,35.991722829000025],[50.79687862300011,36.078630759000134],[50.22880955200014,36.23908117400015],[49.994705510000074,36.278379224000105],[49.75271963000006,36.26105651200015],[49.55783049000013,36.21121855400014],[49.303581551000036,36.26483339800018],[49.15082957900006,36.35010166000012],[48.970626540000126,36.40119036600004],[49.00783950800019,36.280660107000074],[49.20587554900004,36.10832314900017],[49.22395749400016,36.003944482000065],[49.0364913680001,35.90868968399997],[49.02480649199998,35.82942956900018],[49.077152483000134,35.735788623000076],[49.320026509,35.714839230000166],[49.59708746900009,35.796864367000126],[49.85986751000007,35.77017387300009],[50.139194601000156,35.78892251400015],[50.305988607000074,35.72083899600011],[50.459358493000195,35.68151781200004],[50.51230647199998,35.63521701700006],[50.41146061000006,35.555774009000174],[50.51373659200004,35.48205986500017],[50.65183247100015,35.50496727100017],[51.03304260100009,35.48406263600003],[51.37865462100018,35.559645778000174],[51.517398588000106,35.542857161000086],[51.4734836180001,35.48355167600005],[51.42787550300011,35.231810769],[51.28227648000018,35.23830272099997],[51.14144558700002,35.272130741000126],[50.86536748900011,35.27890583300007],[50.688262569000074,35.26133619100011],[50.43885753100017,35.268587040000114],[50.25231559300005,35.22629111800012],[50.00598151700018,35.20489144900006],[50.04863752500012,35.12507041700013],[50.15180551000009,35.076292770000066],[50.17384354500018,35.00435760000016],[50.35716649700004,34.90446107200006],[50.37592352000013,34.840470941000035],[50.200641495000184,34.87405789800016],[50.26878351800002,34.740253554000105],[50.124584609000124,34.7389535210001],[49.93880056299997,34.64903464300011],[49.70544452300015,34.51013846000018],[49.63881660700008,34.39361357700017],[49.52168655000003,34.37557823600014],[49.280540537000036,34.08039007000019],[49.222446572000194,33.98674191500004],[49.2160945980001,33.849637784000095],[49.23681248300005,33.64425634500003],[49.296066504000066,33.59212291900019],[49.468551487000184,33.75858332600012],[49.71889848300009,33.890430495000146],[50.52693959900006,34.436100606000025],[50.599044586000105,34.40066326100009],[50.519878516000176,34.32026253700013],[50.47921756800014,34.10925835000006],[50.48546258900018,33.83973087700008],[50.47809959000017,33.50935330200008],[50.869445620000135,33.312860201000035],[51.03197457900018,33.207742250000024],[51.01169959300006,33.35931069700018],[51.074001609000106,33.38115997200015],[51.42438561400007,33.134818352000025],[51.761779513000135,32.94873892700019],[51.88117251500006,32.855972884000096],[51.97688261800005,32.645175563000066],[52.08304260700015,32.22290885900003],[52.10380558700018,32.054717087000085],[52.054531563000126,31.95501736600005],[52.114700552000045,31.897511476000147],[52.254207608000115,31.953339645000028],[52.45315560000017,31.89284342600007],[52.47724150199997,31.801662401000158],[52.27647748600015,31.795667664000064],[52.2377965120001,31.68056468700007],[51.9406774900001,31.59415162400012],[51.888019524000185,31.549384047],[51.90571958900017,31.257221915000116],[51.893627521000155,31.07783627800012],[51.907775503000096,30.74679686800016],[52.01672750300003,30.56811933500012],[52.0897524880001,30.49356985000003],[52.28890952500018,30.441616802],[52.26972552800015,30.637322674000075],[52.29458256500004,30.764373048000152],[52.34451658000006,30.855624984000144],[52.419853628000055,30.913811821000138],[52.39775859600013,31.03188769100018],[52.34088855700003,31.14669663100011],[52.440669582000055,31.19141911300011],[52.5178565170001,31.114049956000088],[52.69552252200009,31.068298511000137],[52.794410539000125,30.913685757],[52.63467459800006,30.72007083400007],[53.072265600000094,30.562359459000163],[53.27037858800014,30.528783734000058],[53.37685356900016,30.346551268000155],[53.45014962400012,30.282977717000108],[53.61268260600008,30.203991356000074],[53.663852616000156,30.147913573999972],[53.576427522000074,30.082994895000013],[54.0119094690001,29.827351542000088],[54.074172593000185,29.669537572000138],[54.0886194740001,29.570817192],[54.21656050800016,29.74391573100013],[54.26094855300016,29.42549779],[54.28273747800006,29.365709172000095],[54.500812471000074,29.43558356600016],[54.61380756600005,29.493700330000024],[54.71579755800019,29.507079524000176],[54.878787522000096,29.463056428000073],[55.0628665210001,29.26346906400005],[55.403011528000036,29.028348465000136],[55.461597511000036,29.03306127400009],[55.522705608000024,29.111853008000082],[55.651451474000055,28.960347929000193],[55.69471349300011,28.85750600000017],[55.75997147100003,28.79512854700016],[55.91469151300009,28.76193101299998],[55.99242059000005,28.85969602300014],[56.16572163500001,28.897173524000095],[56.26448459400001,28.965419818000157],[56.26580859900008,29.06651277900005],[56.304313553999975,29.116189972000143],[56.30757562300016,29.233632170000135],[56.477649635000034,29.070048601],[56.63378554900004,28.959365905000084],[56.7482905600001,28.919517499000108],[56.903560623000146,28.831045002000167],[57.13890049200012,28.784295943000075],[57.471584600000085,28.668577567000057],[57.50809851700012,28.559660937000046],[57.467651475000196,28.49439172800004],[57.278469573999985,28.339734885000098],[57.25676748500018,28.198391858000036],[57.147571571000185,28.136010549000105],[56.770397495000054,27.983771718000185],[56.62322653000007,27.975430048000135],[56.551094553000155,28.0282610160001],[56.330181616000175,27.96123781],[56.34291858800009,28.034022736000054],[56.516864537000174,28.089936401000102],[56.63793962000011,28.18926731800002],[56.656974587000036,28.351247597000167],[56.525577525000074,28.358716376000075],[56.39770857500008,28.420355718000053],[56.09906052600013,28.474466435000124],[56.03179960900019,28.43402911700008],[56.17282060400004,28.23075053000008],[55.84387951900004,28.141326352000192],[55.82814048400013,28.261932216000105],[55.711269596000136,28.322995554000045],[55.65734847800019,28.267164032000096],[55.45860651200013,28.1273126480001],[55.06527346800004,28.213108133000105],[54.793067474000054,28.169513016000167],[54.601070594000134,28.30259852800009],[54.42016548600009,28.483206078000023],[54.26488855100018,28.388149932000033],[54.12676652100009,28.266759019000062],[53.995239540000114,28.25007467300003],[53.80162059400004,28.402457337000158],[53.67046761400019,28.52966529100013],[53.558158493000064,28.606414020000102],[53.499507467000115,28.60972705100005],[53.41405161700004,28.421879548000163],[53.23706454600011,28.463862993000134],[53.26429751700016,28.542405784000096],[53.079257616,28.608199030000037],[52.95085960000017,28.568899806],[52.922904612000195,28.4467786620001],[52.76510958500012,28.386439018000033],[52.56260246900007,28.46001519600003],[52.523185563000084,28.533627249000176],[52.41608462200014,28.60275716300015],[52.230606515000034,28.490758843000094],[52.16103353400007,28.51578569800006],[52.024467520000144,28.652118191000113],[51.864578526000116,28.851056293000056],[51.5709954940001,28.90941814400003],[51.408203512,29.035543994000136],[51.23962047200007,29.217103896000026],[51.039447548000055,29.39860780600003],[50.94904754900011,29.784327233000113],[50.84638247900011,30.064443564000157],[50.792869559,30.071754259999977],[50.27269350900019,30.42777224499997],[49.60490761699998,30.89361244000014],[49.27985355600009,31.204031698000165],[49.11918655400018,31.41480169500005],[48.98718247500011,31.622524534000092],[48.731708604000175,31.91989065400014],[48.23246350700009,32.20972630500012],[47.95576062200007,32.205270318000146],[47.68506957400001,32.350594582000156],[47.531566584000075,32.48529428000006],[46.939208601000075,32.638923502000125],[46.44161256000001,32.87855926400016],[45.94863846800007,33.305399301000136],[45.70314459400009,33.62871981700005],[45.771652571,34.519854259],[45.60493450500019,34.81687353700016],[45.10448861600008,35.28717558600016],[44.923812502000146,35.76854091000007],[44.94292860600018,35.9391907590001],[44.909633507000194,36.031081899000185],[44.614234620000104,36.094224452000105],[44.343749598000045,36.061709206000046],[44.24895446400012,36.09870726200012],[44.14614153700006,36.41808107500003],[44.07022060500009,36.53142452200012],[43.860629607000135,36.564977784000064],[43.740478545000144,36.60443995100013],[43.177204593000056,36.65867287700013],[42.83009757700006,36.820656341000074],[42.786636571000145,36.90334985100003],[42.64019751400019,37.00794343000018],[42.681945594000126,37.06142751600004],[42.64825855800012,37.24138697700005],[42.437526615000024,37.285517865000145],[42.271758554000144,37.411636674000135],[42.04254552100019,37.45640576000011],[41.95277449900016,37.50958876800013],[41.96190256000017,37.67194254500009],[41.93352545900018,37.70826585700007],[42.065998589,37.90844230200008],[41.878524584000104,37.995972505000054],[41.73957861300016,38.00932051800004],[41.50666061100014,38.12448032400005],[42.01769250700016,38.17520642900001],[42.2375144560001,38.141390143000194],[42.38594052700017,38.05496568100011],[42.59636653000018,37.97417989200005],[42.851882478000164,37.962907070000085],[43.25756055800008,37.79808113500019],[43.53060155700018,37.74207527000016],[43.726631473,37.68606839800009],[43.985668492000116,37.57405247700012],[44.24470551000013,37.518045605000054],[44.363723506000156,37.55304893600015],[44.20641362300006,37.91076509500016],[44.187599603000194,38.03172283100008],[44.21178860200007,38.149991987000135],[44.321998559000065,38.343523426000104],[44.437580478000086,38.2306294170001],[44.5988615390001,38.174184507],[44.64993247500013,38.04247664500008],[44.70906847800018,37.78712146100003],[44.74938962300007,37.53714226300002],[44.89185347900002,37.46725429000014],[44.92679562200004,37.391992007000056],[44.918731560000026,36.92429237100015],[45.09076358500016,36.983426195000106],[45.28161248000009,36.93235626500018],[45.35956149700007,36.72269737400018],[45.46217359400009,36.60100018600019],[45.58649850900014,36.54292248200005],[45.75441351000018,36.595155150000096],[45.869159586000194,36.60421213100011],[46.00186958800015,36.53332872300018],[46.192493513000045,36.55342400100005],[46.371871605000024,36.46904103400004],[46.45034449100018,36.299175731000105],[46.61907957900007,36.05709329200005],[46.68851861700006,36.19579987500009],[46.71171553400012,36.37786805600018],[46.66315447500017,36.661190799999986],[46.646347586,36.89948981700019],[46.66741952300009,37.079498061000095],[46.746246461000055,37.083883975000106],[46.76074262700007,36.895804797000096],[46.81302256900011,36.75344286500007],[46.939521581,36.763013657000045],[47.01360654100017,36.64248708600019],[47.26524753600012,36.72875531000011],[47.329601609000065,36.795869041000174],[47.407932506000066,36.80191993700004],[47.42468256600006,36.72131251600018],[47.50275446200004,36.64944909500008],[47.746868508000034,36.52932284400015],[47.81613555000018,36.83123128500006],[47.97352556300012,36.84156801600005],[48.09991460499998,36.75171501900007],[48.29934355100005,36.648556255000074],[48.64849860100003,36.50671416900008],[48.76739153900019,36.562991105000094],[48.78490049700008,36.69370202400006],[48.62928057400006,36.73471719000014],[48.464996612000164,36.80281998600003],[48.273479512000165,37.01065966900012],[48.24201150100015,37.2076305380001],[48.28889450300005,37.29260191399999],[48.410655561,37.34802372800016],[48.355419489000155,37.58834898600003],[48.29625649600018,37.525823341000034],[48.18164453100013,37.5518048940001],[47.94642653500006,37.716051807000156],[47.78284447400006,37.680388318000155],[47.50875054,37.692187188000105],[47.28814656000009,37.67539957700012],[47.16048061900017,37.70785782600012],[46.97105446900014,37.69513627700013],[46.74085957900019,37.73511745200017],[46.85808150100007,37.83889748300015],[47.45902255300018,37.955053395000164],[47.55606051700016,37.944612393000114],[47.59060653100016,38.02211029600011],[47.43997551600012,38.09643481100005],[47.13090859400006,38.15838076400007],[46.93274648900007,38.23697317600016],[46.72094350700007,38.40675549800005],[46.72741349800009,38.457150685000045],[46.44504159700017,38.44617575700005],[46.31279746000013,38.45547547800004],[46.15629559300015,38.50047674300015],[45.92992754599999,38.52760628100009],[45.79594047600011,38.60899892000009],[45.769187621000185,38.66208335700003],[45.89483251700011,38.713924422000105],[46.14081153600017,38.770861349000086],[46.24921049900007,38.74238182099998],[46.5247726070001,38.799253873000055],[46.65341956500009,38.934772819000045],[46.832439583000166,38.81659569500016],[46.99087549000012,38.849374301000125],[47.05250159000008,38.903939317000095],[47.38233551500019,38.99652079100014],[47.54561951500011,39.01757344900011],[47.738819534000015,39.10283416800007],[47.8052905400001,39.169957120000106],[47.985374557000114,39.16415550200003],[48.13323250200011,39.198203798000065],[48.13971758100013,39.279654775000154],[48.33283948000013,39.262854759000106],[48.60583857000006,39.11032222600005],[48.66225447800019,39.095716424000045],[48.815139554000154,38.96894030600009],[48.90388848600003,38.98221221100016],[48.89113659300017,39.08809442400019],[48.96084955300006,39.20924377100005],[49.03840260900006,39.2145236990001],[49.115203473000065,39.14622275500017],[49.095645476000186,38.99306510000008],[49.203552589000026,39.05729897700007],[49.243526555000074,39.306567222000126],[49.377941605000046,39.39118689300017],[49.28247457700019,39.5676445630001],[49.373203483000054,39.68254989400009],[49.376724552000155,39.817935065000086],[49.44826560500002,39.99555279000003],[49.43230461700017,40.108386283000186],[49.56627257600013,40.21630982400018],[49.859062512000094,40.361950086000036],[49.99071153300008,40.35068531100012],[50.157161546000054,40.37437391100008],[50.327873589000035,40.322242831000096],[50.354907574000094,40.46821099300013],[50.25050761699998,40.46008591100019],[50.02719862900011,40.61339645300018],[49.763614596000195,40.59566537500001],[49.520019558000115,40.68513850300013],[49.478855528,40.793944156000066],[49.30313462800012,40.952446616000145],[49.01126854400002,41.42985182500007],[48.75519553500004,41.71115235200017],[48.75043847000018,41.494666232999975],[48.78131052800012,41.34819079800019],[48.85411456500009,41.20841803700006],[48.66784252500008,41.22173906000012],[48.754650544000185,41.02799589400013],[48.72858852400009,40.95887067399997],[48.593959569000106,40.920044860000075],[48.47760349800018,40.84425585900004],[48.283767628000135,40.82647599900014],[48.27695062600009,40.73820802000006],[48.06826755600014,40.69329828600013],[47.90741749300008,40.70749622400018],[47.660266516000036,40.80253527100007],[47.82651553100004,40.92876187200011],[47.67642548400016,41.024879838],[47.249004581000065,41.11139214300016],[47.07640459800018,41.18847111900004],[46.85204351300018,41.31636504700009],[46.639606524000044,41.40207704800014],[46.439838614000166,41.42613210400003],[46.17462949800017,41.49983132900013],[45.914974565000136,41.64417088700003],[45.77012656100004,41.697610717000146],[45.17974855200009,41.819614682000065],[44.97523447300017,41.82123272500007],[44.76361857500018,41.73616931600009],[44.664508604000105,41.57432851100009],[44.69499559800016,41.46245156200007],[44.82906749200015,41.35534760300004],[45.15516258600013,41.23341991300015],[45.37671657100003,41.10352304500009],[45.563446597999985,41.06100466700019],[45.705539471000066,41.00339903200012],[46.037242561000085,40.78656640500009],[46.08610955900019,40.739241844000105],[46.12792553300005,40.57169866400005],[46.397758610000096,40.53471502500008],[46.533054597000046,40.47124691800002],[46.690166499000156,40.4280764290001],[46.82796448500005,40.213171137000074],[47.01123848600008,40.021084570000085],[47.03894855500016,39.90425291000014],[47.029441465000104,39.63629654100015],[47.08334749600016,39.52577494500002],[46.862274464000166,39.46824290200004],[46.772010587000125,39.52797200900011],[46.66670655799999,39.496749588],[46.6438945380001,39.41007668500009],[46.69729648200007,39.29832328500004],[46.80580155900003,39.16996818400014],[46.57662959800007,38.94515682300016],[46.15652056300013,38.90818911000008],[46.13143956200014,38.98121225000011],[45.96884556000009,39.09154743300013],[45.74135551100005,39.49783336800016],[45.737384501000065,39.54575287600005],[45.640094577000184,39.63705962900002],[45.409995576000085,39.66832798400003],[45.30002953300004,39.70074549700007],[45.36304049000006,39.80326019700004],[45.57448556500003,39.831465971],[45.66436756300004,39.89763808000015],[45.58148160400009,40.02088927200009],[45.50805646800018,40.04477317000004],[45.26995459400007,40.052570184],[45.00762952300005,40.108821304],[44.87483955700009,40.199144190000084],[44.81229346000015,40.37499215999998],[44.90795561800019,40.4416452210001],[44.99568547800004,40.40336976300006],[45.12480148800017,40.24137255300002],[45.28623962600011,40.185858370000176],[45.38248047100018,40.193884378000064],[45.65830660800009,40.168058728],[45.760173554000175,40.20748317700003],[45.72317851600019,40.29337404800009],[45.11390652300014,40.62479802000007],[44.99329747400003,40.63461406699997],[44.81179859200006,40.57476577000017],[44.75189949999998,40.47085380700008],[44.686370620000105,40.43630527900007],[44.44476360100009,40.41660965000017],[44.174556524000025,40.44690218400012],[44.05510350700018,40.51985743100016],[44.02666454800004,40.63078705800018],[44.06070748000013,40.71632723000005],[44.16050359299999,40.764090499000076],[44.38153052400003,40.79039224100006],[44.401252471000134,40.85230868900004],[44.1293634810001,40.9788362000001],[44.031490512000175,41.04011981400015],[44.011737552000056,41.15646666500004],[44.073722564000036,41.295785296000076],[44.190418605,41.30759506200002],[44.35032251900003,41.035484789000066],[44.520343558000036,40.958500529],[44.48653749800013,41.206183086000124],[44.3272625620001,41.66425895600008],[44.072158501,41.72654119100008],[43.730564598000115,41.56460064200019],[43.50268160500002,41.5351441200001],[43.254611469000054,41.615690186000165],[43.13732550900005,41.633188247000135],[42.762424605000035,41.623762126000145],[42.83135955600011,41.51726099400014],[43.120971578000194,41.50677439500015],[43.154308586000184,41.31353498200019],[43.00413857600017,41.278169217000084],[42.978702518000034,41.199679064000065],[43.10791056099998,41.17429631500016],[43.23228861700011,40.92331799300007],[43.10817358500009,40.79960127000004],[43.06634554100009,40.652874881000116],[42.928737490000174,40.5368063090001],[43.01508349800014,40.44506336200004],[43.10796755800004,40.440631179000036],[43.145988541000065,40.597291632],[43.33566246100014,40.68059165600005],[43.50568752300006,40.6009454710001],[43.500392507000186,40.53740813000002],[43.40879054300018,40.442431276000036],[43.41342154400007,40.35990909300017],[43.263503495,40.30324189500004],[43.244270547000156,40.24768144400008],[43.04880154700015,40.183744286000035],[42.78573249900012,40.13558505600008],[42.573623577000035,40.30059505800017],[42.42047849400012,40.25238536800009],[42.363223558000186,40.295990878000055],[42.40276351000006,40.36507804500013],[42.34125861300009,40.42778356500003],[42.14796857300013,40.35837118100011],[42.04440362100007,40.255776518000175],[41.76079555700011,40.284833056000025],[41.580379617,40.365486076000025],[41.47358360900017,40.325935730000026],[41.40838246100003,40.238084668000056],[41.186164461000146,40.11885310100007],[41.111240472000134,40.180643485000076],[41.11019860200008,40.292526973000065],[41.04396061200015,40.36750024700018],[40.9519655360001,40.40591769400015],[40.78702946300018,40.18255439100011],[40.718704547000016,39.98963298700005],[40.738800495000135,39.78867233200015],[40.718704547000016,39.66810016400018],[40.62224158200007,39.587717209],[40.590087595,39.51135220400016],[40.574012614000026,39.330491856000094],[40.61420450999998,39.18982005100014],[40.762916572,39.105417303000024],[40.99201158800008,39.02101438799997],[41.056316543000094,38.92053716200019],[41.012107535999974,38.739676981],[41.09249149600015,38.69546579500019],[41.34971953200005,38.65527423400016],[41.357757609000146,38.55479281700008],[41.06033751000018,38.42216227400007],[41.028182517000175,38.245320211000035],[41.07332258600019,38.14545989200019],[40.79868651100014,38.22225673300011],[40.75817459400008,38.20397697600009],[40.5502816020001,38.21849560600003],[40.49274855400006,38.19473022800008],[40.22561646100007,38.15905986600012],[40.237735520000115,38.080462927000156],[40.37066261300015,38.05856336100004],[40.74769553800007,38.07429133200014],[40.923816591000104,38.0364079790001],[41.08684946900007,38.036968896000076],[41.17368648900015,37.982048823000184],[41.13204150600012,37.862346025000136],[41.194629513000166,37.77082570100015],[41.00712952300012,37.784684507],[40.80806351399997,37.70328398900017],[40.630298602000096,37.75177899900007],[40.561038601000064,37.73654723700008],[40.28699445600017,37.74032714000009],[40.19438146600015,37.88255278200006],[40.02202254700018,37.94528043100013],[39.96809757300008,38.03440101600006],[39.8653485160001,38.07958500700016],[40.112792524000156,38.22952334100006],[40.07627860700012,38.393231633000084],[39.95421948800009,38.42753306300011],[39.91899856400005,38.28765452099998],[39.73314645700003,38.220776657000044],[39.66100358400007,38.24452627700009],[39.5510445810001,38.14076803800015],[39.31944656100006,38.094359787000144],[39.26299259900014,38.036582993000025],[39.29848459500005,37.969442105000155],[39.08626553500011,37.849506123000026],[38.93851051900003,37.800522113],[38.836692523000124,37.850452104000055],[38.72879446300004,37.84441344600009],[38.46204357900001,37.76367677500019],[38.38256855300011,37.787900475000185],[38.20833560800014,37.74424132100006],[38.007465477000096,37.79407944700006],[37.89822061300015,37.77685664699999],[37.78693358100014,37.70726690200013],[37.77248351500003,37.65131384300014],[37.656311511000126,37.5569126580001],[37.39522545200015,37.408924625000054],[37.30132248799998,37.25598171400014],[37.25321556100016,37.103819661000045],[37.11380355600005,37.101546657000085],[37.047260465000136,37.02315641600018],[36.96949048500011,37.012795378000135],[36.898223521000034,36.9020798250001],[36.80984858900007,36.8934469670001],[36.81938551900009,37.012028434000115],[36.86221352300004,37.100748700000054],[37.19375651900015,37.34882487100009],[37.227790566000124,37.42993906200019],[37.406852492999974,37.50301987000017],[37.42183346900015,37.60855188700015],[37.120136587000104,37.530306150000115],[36.962173586000176,37.567033639000044],[36.97982051000008,37.799016053000116],[37.08426254400007,37.966966258000184],[36.996639469,38.00679438000009],[36.93816748,37.94796951300003],[36.868553595000094,38.01147533800014],[36.92874555000009,38.10325583600019],[36.83755161700003,38.13136521900009],[36.711196606000044,38.10228286500006],[36.688049478000096,38.196687067000084],[36.56103548100009,38.20665482600015],[36.49569351700018,38.26011678400016],[36.51601460300009,38.37415090100018],[36.43490946400004,38.50875487800005],[36.379058496000084,38.446014824000144],[36.23342845999997,38.47404944000016],[36.17420159700009,38.453987690000076],[36.171646457000065,38.36092224600014],[36.126033481000036,38.278152461],[35.98820448300006,38.19284614399999],[35.89201359400005,38.076274155000135],[35.826259575999984,38.08722980500016],[35.686847571000044,37.992703563000134],[35.632808603000115,38.004612403000124],[35.54521553500018,38.12152352400017],[35.37312349600006,38.04696683000009],[35.25467647500011,38.11283752500009],[35.04743157200005,37.91747514300005],[35.016765541000154,37.99543455400004],[34.92216453200007,37.99832262299998],[34.818984477000186,37.90594030300008],[34.85574348100016,37.854831314000194],[34.98971546300004,37.82772876500013],[34.90236245300008,37.66048381200011],[34.69826847500019,37.601879725],[34.58500247600011,37.52578545500006],[34.25560357200004,37.479403188000106],[34.26490061100003,37.43876587700015],[34.123924543000044,37.402576841999974],[34.01422152400011,37.418907472000114],[33.93279250800015,37.361524460000055],[34.16529057700018,37.27266237200007],[34.06226357500009,37.25180769400009],[33.932033610000076,37.096037735000095],[33.744167500000174,36.98166800700011],[33.61794257600019,36.94711193500018],[33.64446258200013,36.872364469000104],[33.44134559900016,36.81996634300003],[33.32732355200005,36.89105913100002],[33.24501058100009,36.98170606100007],[33.32405846600011,37.03887600500008],[33.20505958000007,37.149278746000164],[33.08980153800013,37.17447809900017],[33.0730895320001,37.219105364000086],[32.69125360900017,37.25354375400008],[32.788986600000044,37.19790384200019],[32.795867472000054,37.106302549000134],[32.68834358000015,37.133039982000014],[32.757236454000065,37.004307695000136],[32.67713546700014,36.96381941500016],[32.448436579000145,37.068618350000065],[32.40405255800016,37.13651092800018],[32.39976152600002,37.31547428400012],[32.312236520000056,37.37701120000014],[32.29990053800003,37.4633323970001],[32.16636257100009,37.45979271900018],[32.16470748,37.378335204999985],[32.25403560200016,37.26071866300015],[32.26461456900017,37.18372099200013],[32.383617478000076,37.04702371800016],[32.315151577999984,37.02586812900006],[32.26170755800007,37.114557550000086],[32.07480653900018,37.25313555500014],[31.843629459000113,37.36550636700008],[31.762994544000094,37.45455185100013],[31.655340565000017,37.50461058800016],[31.60493247000005,37.61394581000013],[31.520952505000025,37.58599216200008],[31.462478505000092,37.6482009720001],[31.398988606000046,37.82410878800016],[31.31433859200007,37.933538893000105],[31.29031354300008,38.047019636000186],[31.130313571999977,38.188005092000026],[31.113271487000077,38.296146227000065],[31.02080953899997,38.37410614100003],[31.03346654800015,38.44216266900014],[30.964767464000147,38.657296284000154],[31.04287959300018,38.73823495900007],[31.193605491000028,38.756106685000134],[31.327751481000064,38.73027399500006],[31.43265150200017,38.92021194400007],[31.360076458000094,38.99148511100003],[31.240970452000113,39.007899560000055],[31.081083470000067,39.27337186800014],[31.01489459800007,39.236045408999985],[30.995746475000146,39.0836964400001],[31.0188595730001,38.947399653000105],[30.877574548000098,38.90095251000014],[30.770879459000128,38.98968099000007],[30.615249477000077,38.96887643600013],[30.63090150800008,39.04892612600014],[30.517745480000144,39.047186043000124],[30.536224559000118,39.14209869100017],[30.307332552000048,39.32982901500003],[30.258817594000107,39.47358284500018],[30.28710350000017,39.56895750400014],[30.372159533000058,39.622766640000066],[30.463371571000096,39.58774822200019],[30.598682478000057,39.617211786000155],[30.672079451000172,39.503719475000025],[30.509950477000075,39.36673922800003],[30.55880557400019,39.29721352100006],[30.638917457000105,39.28767240000013],[30.653024536000032,39.39826675100011],[30.770042610000075,39.43578448500017],[30.875621565000074,39.37746907000013],[30.947475598000096,39.48096864300004],[31.03638847999997,39.49428145200011],[31.018743568000048,39.350847643000066],[31.181426585000054,39.24884709000008],[31.338905447000172,39.08662641800004],[31.584432514000127,39.070623856000054],[31.708286533000148,38.9577595180001],[31.819744555000057,38.897881381000104],[31.915946508000104,38.894440609000185],[31.854343543000027,39.00551574600013],[31.977756506000162,39.00149075600018],[32.102539575000094,39.03956823400017],[32.009258548,39.12008412500012],[32.016143611000075,39.19646086500018],[32.172687555000095,39.19994371400014],[32.28170057600016,39.094446398000116],[32.42609059300008,39.04466929200004],[32.43298755800009,39.11038408400003],[32.33643758900007,39.165860213000144],[32.44333652700004,39.23471419499998],[32.43590546600012,39.27966265400016],[32.30854747700005,39.30295411900005],[32.245239465000054,39.3690504540001],[32.11000047500016,39.393178098000135],[32.117504457,39.480090890000156],[32.33630750200001,39.56592845200015],[32.21379861100013,39.63093363200005],[32.338699529000166,39.73234627800019],[32.46928455200003,39.728230429000064],[32.55248650800007,39.79111431600006],[32.43169758300019,39.84705580800005],[32.28897858300007,39.84215759200009],[32.11098048700006,39.89031028500017],[31.87210244900018,39.82485499700016],[31.85962447700018,39.732464128000174],[31.615077590000112,39.746018168000035],[31.508583498,39.78088772399997],[31.37983746599997,39.76694861900012],[31.202453595000065,39.813308255000095],[31.216987480000114,39.90883077],[30.941394527000114,39.89141703100012],[30.815555506000123,39.93106963600013],[30.729320474000133,39.91419367900011],[30.49483254200004,40.04245708200011],[30.65860554200009,40.032005352000056],[30.576948538000124,40.13591982900016],[30.430133469000168,40.192842172000155],[30.282627563000062,40.217770958000074],[30.18208847900013,40.13987189599999],[30.071966532000147,40.204214067000066],[29.866552572000103,40.14559070100006],[29.74383547400015,40.06217601300017],[29.53417960000013,40.21000495700014],[29.299394445000075,40.226479923000056],[29.24816157100014,40.27150432200011],[29.044103467000014,40.28413802900013],[29.05983948500017,40.36851110500015],[28.923561474000167,40.36524903500003],[28.808666536000032,40.40082065900003],[28.589443558000028,40.37901698200011],[28.524204523000037,40.39960478000006],[28.150491502000193,40.40087866200008],[27.960212577,40.35897031900015],[27.905090500000085,40.390303885000094],[28.03910254699997,40.48293883500014],[27.8649294490001,40.52488925500012],[27.687538538000126,40.50435459800008],[27.792280475999974,40.39846383600013],[27.781846515999973,40.31893985900018],[27.63071845400009,40.334045557000024],[27.55145649500014,40.30905994200009],[27.433155487000136,40.33104751800005],[27.317878502000156,40.38674878500012],[27.293657484000164,40.46960708300014],[27.12229752000013,40.45774300200003],[27.04131844500006,40.396014643000115],[26.758094607000032,40.40729467300008],[26.52703654900006,40.22003289800017],[26.40425658700019,40.17020650699999],[26.41010849700018,40.12427401300005],[26.284776581000187,39.99353878700009],[26.182838557000082,39.99789067100011],[26.13754258400013,39.840914723000026],[26.159345591000147,39.67006421100007],[26.063419570000065,39.48410079299998],[26.14021657900014,39.454514183000185],[26.368619585000147,39.481506761000105],[26.48278848200016,39.526080046000175],[26.92597759000006,39.57908837499997],[26.880752528000016,39.47479268900008],[26.780311512000026,39.37154926699998],[26.7030585280001,39.34249675300015],[26.688386509000054,39.268553950000125],[26.769197444000042,39.16869430200006],[26.88801745900014,39.07205062300005],[26.80018651300003,39.031546250000076],[26.802198505000035,38.9584733210001],[26.95252760400018,38.93864894600006],[27.04674354800011,38.893525473000125],[26.82830059000014,38.759982645000036],[26.730161579000082,38.724624089000145],[26.75910747600011,38.61562095900007],[26.85076358800012,38.59609028600016],[26.873861598000076,38.50683978100011],[26.95443549200013,38.437469977000035],[27.062498509000136,38.46286060500012],[27.084588511000163,38.39969441500011],[26.774908537000158,38.36384803300018],[26.707586600000127,38.431309948000035],[26.60028449300006,38.43308691200019],[26.627111444000093,38.52800341600016],[26.47859149600015,38.67317697300007],[26.35556745300005,38.64814827500004],[26.35887947800012,38.57550248800004],[26.426012488000026,38.47641028700019],[26.51530054400007,38.43104306900011],[26.444679489000123,38.34582744400012],[26.27967250500012,38.297881281000116],[26.315216468000187,38.23996417400019],[26.503211492000105,38.18193642600005],[26.61624145700017,38.11347455000015],[26.653730525000128,38.20940476100003],[26.76617258200008,38.217346782],[26.824815562000083,38.160291670000106],[26.861766512000145,38.050159665000194],[26.955373595000026,38.076335175000054],[27.12359956500012,37.99429763300003],[27.23823550200018,37.98732472800015],[27.277254603000017,37.92926596700005],[27.239812474000132,37.73079540700007],[27.097259602000065,37.684645319000026],[27.089729467999973,37.641910186000075],[27.21681454300017,37.58657923100009],[27.224605522000104,37.48027306200015],[27.190729557000168,37.352979613000116],[27.383291545000134,37.354661693000025],[27.49852745900006,37.31668329000013],[27.555267578999974,37.136792895000156],[27.477191492000145,37.085287944000186],[27.336948506000056,37.15495446800014],[27.224687497000048,37.05490471800016],[27.485980588000075,36.98693603300006],[27.82072446500007,37.01112855300016],[27.928056579000042,37.03117823300016],[28.24897752400011,37.03757110999999],[28.19674451999998,36.943582818000095],[28.042350534000036,36.923178248000056],[27.986824449000096,36.80211774999998],[27.819509591999974,36.81594956700019],[27.773784466000166,36.78883913900006],[27.434335492000173,36.74743102900004],[27.398328512000035,36.67983634400014],[27.483579508000048,36.650951970000165],[27.60404053300016,36.68131239700017],[27.6673565910001,36.661510989000135],[27.72249744400017,36.756574847000024],[28.01639345700005,36.75707491100019],[28.023284555000032,36.66466979300003],[28.14714460800019,36.65379393800015],[28.260232576000192,36.73166533900013],[28.262355544000116,36.84861803500013],[28.40184047100007,36.785429046000104],[28.489669573000015,36.81839456800009],[28.620582496000054,36.81991253100017],[28.666854457000113,36.720255725000015],[28.83170855500009,36.64014518300013],[28.93251049600019,36.753844023000056],[29.036214588,36.70509705300009],[29.079893523000123,36.64275815700017],[29.028684454000143,36.58279653599999],[29.128732526000135,36.54533328500014],[29.10962648100019,36.38371896000007],[29.231542604000083,36.32633225900014],[29.364036521000173,36.22847219900018],[29.583425461000047,36.195487063000144],[29.676794498000163,36.12014062600019],[29.77837545300008,36.13095143700019],[29.923198479,36.22138446100007],[30.10396059200002,36.23660499200008],[30.187385506000112,36.30299452600019],[30.271129604000066,36.304997466000145],[30.417308487000184,36.206221766000056],[30.49510746800007,36.313782539000044],[30.481943521000062,36.40054143900011],[30.588458568000192,36.571485661],[30.558097470000064,36.6122027670001],[30.573663503000034,36.78121328400016],[30.702638529000183,36.88646618300015],[30.756677497000112,36.84893503800015],[31.00871445300004,36.85914972800015],[31.299488542000063,36.81762041500008],[31.57392345100004,36.70755697400017],[31.789031585000146,36.60461597100016],[32.026142551000135,36.542002316000094],[32.09770958700017,36.491546444000164],[32.29812659200019,36.23385103400017],[32.512298467000164,36.09617425000016],[32.67116151700003,36.04082351500011],[32.808124497000165,36.017040200000054],[32.962657455000056,36.09947722300012],[33.09360558100019,36.08426457200005],[33.14727356600008,36.131199374000175],[33.400581553999984,36.12557277000002],[33.48331848200013,36.15207316300007],[33.57357448000016,36.13128352800004],[33.70272049700014,36.16702279000003],[33.80050646200016,36.225191522000046],[33.8787615870001,36.31163844800005],[34.00644647100006,36.286785937000104],[34.083747567000046,36.31516354100012],[34.08708155300002,36.40809822800014],[34.18051546600003,36.47241693000012],[34.28697552700004,36.58791150899998],[34.42840958200014,36.66026795300013],[34.57769345700012,36.775205471],[34.725192489000165,36.81479772600005],[34.83581148300016,36.798799019000114],[34.911769462999985,36.729910337000035],[35.02538649600018,36.707640961000095],[35.34614952600003,36.54871638800017],[35.44557951700011,36.59336645100018],[35.55625148400014,36.57810049100004],[35.63786356100019,36.61061590500009],[35.608459509,36.73377120900011],[35.795051571000045,36.76713369800018],[36.02020658900011,36.93146711300011],[36.144931488000054,36.868030522000026],[36.213287585000046,36.77271051300016],[36.20185450100013,36.60309415300014],[36.02449058000008,36.44359357600018],[35.90403760200019,36.41801301400017],[35.794319495000025,36.32527211600012],[35.79732558100011,36.28540895800012],[35.98772051200007,36.01767705700007],[35.88672260200019,35.871497503000114],[35.81719555300009,35.83484243500004],[35.85413745000005,35.753828323000164],[35.77433050000019,35.66087352000005],[35.74344654000015,35.56295679700008],[35.924159534000125,35.421576051000045],[35.928653575000055,35.27338970300019],[35.96302759300005,35.19871583000008],[35.89731950700008,35.10571894900005],[35.88036761000018,34.907642004000024],[35.93910949700012,34.77322762600011],[35.99739859300013,34.54742938000015],[35.82326857700008,34.40898615600014],[35.73380249000013,34.363932420000026],[35.6643795440001,34.28355147700006],[35.63665053200009,34.1514982810001],[35.64404655600009,33.990582671000084],[35.57986850200007,33.90617003300002],[35.482734482000126,33.902237244000105],[35.492404516000136,33.823568221000016],[35.358123577000185,33.512985180000044],[35.29983850500008,33.46439478499997],[35.21552259400016,33.26351174600012],[35.21137254600012,33.20509843000008],[35.11890456300017,33.113567209000166],[35.09027047300009,32.906386344000055],[35.034126474000175,32.813688362000164],[34.96520258700008,32.82536100100009],[34.89236049600004,32.4705478300001],[34.78449261000014,32.118661118000034],[34.64022848900015,31.813790009000172],[34.45846557800007,31.552009929],[34.206108601000096,31.311986085000058],[34.10805558900012,31.25087614299997],[33.816383463000136,31.148100767000074],[33.604164571000126,31.111712075000014],[33.484443501000044,31.125602565],[33.24304955100001,31.090046700000016],[33.161941562000095,31.109768144000043],[33.09971649200003,31.17976558600003],[32.98166258200018,31.095602393000092],[32.86888860100015,31.091156799000146],[32.78694158300004,31.04616039600012],[32.55334045600006,31.064226582000117],[32.40578057100004,31.204270918000077],[32.31726851200017,31.097065538000095],[32.28268058800006,31.19583017400015]],[[-5.798361485999976,31.992080131000193],[-5.944474486999979,32.087343310000165],[-5.884436423999887,32.19436881399997],[-5.630147585999907,32.26839040700014],[-5.502517519999913,32.27650409000012],[-5.541120542999977,32.1550711000001],[-5.451042575999963,32.120522068000184],[-5.355935466999938,32.193197863000194],[-5.208828539999956,32.24391625600009],[-4.996252578999929,32.370514175000096],[-4.842241477999949,32.39318018200015],[-4.672354549999909,32.52215939900003],[-4.70631349599995,32.575288596000064],[-4.909420420999879,32.55797812100019],[-5.00608656299994,32.5172492800001],[-5.041218471999912,32.404247144000124],[-5.263265480999962,32.33828508600004],[-5.319060457999967,32.27214818200008],[-5.427341570999943,32.2982472490001],[-5.258260478999887,32.420225566],[-5.030117479999888,32.50211005400013],[-4.96744850399989,32.57320569300015],[-4.770869572999914,32.606644625],[-4.623998511999901,32.58870031099997],[-4.651724506999813,32.49449224600011],[-4.8499385799999,32.38803838700005],[-5.048108563999961,32.30046744800006],[-5.130633429999875,32.1942767810001],[-5.363559478999946,32.096566924],[-5.401841474999912,32.061929883],[-5.429615581999883,31.93286030800016],[-5.509184485999981,31.96616697400009],[-5.557697431999941,32.08542033400005],[-5.701688470999954,32.11777213300013],[-5.798361485999976,31.992080131000193]],[[9.32030544100013,36.68914025700019],[9.200627453000095,36.629300676000184],[8.793722431000049,36.56946377800017],[8.482558525000059,36.40191858600008],[8.267138584000179,36.36601520700009],[8.231234534000066,36.46175498100018],[8.36288053800007,36.581430454000156],[8.554366457000071,36.72504363600018],[8.697978466000109,36.80881572900006],[8.805689442000187,36.96439139600017],[8.913399579999975,36.952424888],[9.033078573000068,36.85668561600016],[9.248498514000119,36.820782405000045],[9.332273457000042,36.76094668000019],[9.32030544100013,36.68914025700019]],[[7.397859451000102,36.86452152200013],[7.666123436000021,36.85920756300004],[7.690113449000137,36.714079771000115],[7.630037499000025,36.68188437800018],[7.312273514000083,36.656356957000185],[7.236805540000091,36.71680355500007],[7.281402462000187,36.841721069000016],[7.397859451000102,36.86452152200013]],[[4.355903507000107,36.45830230800004],[4.222198572000025,36.400335412000175],[3.931473434,36.36438341799999],[3.989445526000111,36.44972343000006],[4.23514844500005,36.481453627000064],[4.355903507000107,36.45830230800004]],[[-4.947396036999976,35.14313105900004],[-4.900945037999918,35.082360585],[-4.519269041999962,34.980053086000055],[-4.30099606899995,34.98248040100003],[-4.220898601999977,34.910607761000165],[-4.259979057999828,34.80587831100007],[-4.316853120999951,34.78025500100006],[-4.636521137999978,34.77218741900009],[-4.912384994999854,34.85003618900009],[-5.091168139999979,34.927094378000106],[-5.29398303999983,35.08052561799997],[-5.338226076999888,35.16900515600008],[-5.498064109999973,35.268855751000046],[-5.689707105999844,35.470702038000184],[-5.876015020999887,35.61869359100018],[-5.789107089999959,35.694066515000145],[-5.580321089999927,35.74027259400009],[-5.496016074999886,35.71067140000008],[-5.409673084999895,35.491480608000074],[-5.164026994999972,35.26031509500018],[-4.947396036999976,35.14313105900004]],[[-4.351344421999954,33.4495140570001],[-4.420509539999898,33.431806616000074],[-4.457904562999943,33.52529484300004],[-4.346704535999947,33.67887058800005],[-4.294663477999904,33.804106783000066],[-4.197074487999885,33.82960721500018],[-4.159570499999916,33.736672695000095],[-4.006950459999928,33.72053317300015],[-4.018705576999935,33.59847774300016],[-3.871767460999934,33.66242881400018],[-3.773405491999881,33.643798358000026],[-3.790862481999966,33.57471253300008],[-3.897840543999962,33.482255279000185],[-4.109221581999918,33.43098669800008],[-4.040673538999897,33.362484756000185],[-4.116771496999945,33.305818397],[-4.17730157799997,33.37271553900018],[-4.351344421999954,33.4495140570001]],[[-5.334513501999936,32.88570684800004],[-5.435358525999959,32.866607508000186],[-5.550407523999922,32.97156234700003],[-5.41899755399993,33.14415730000019],[-5.418589522999923,33.26583470700007],[-5.268836428999919,33.37590032700007],[-5.17817843499995,33.475987292000184],[-5.100933496999914,33.51727621200018],[-4.944332555999893,33.523127954000074],[-4.865108483999961,33.426370784000085],[-4.742525496999974,33.44276243400009],[-4.678340569999875,33.41067030600004],[-4.647844523999936,33.30902330099997],[-4.96300944799998,33.080831016000104],[-5.231160444999944,32.91831412800002],[-5.334513501999936,32.88570684800004]],[[5.416012423000041,35.68878190500004],[5.179214438000088,35.69827943900003],[4.891407543000071,35.80428805100007],[4.932167565000157,35.84897583200018],[5.257853454000099,35.78839646500006],[5.50707057000011,35.767888798000115],[5.532038583000144,35.707301217000065],[5.416012423000041,35.68878190500004]],[[5.991549434999968,35.51636481500009],[5.913184508000029,35.480724795000185],[5.828606578000119,35.532584636000024],[5.955103578999967,35.61825355400009],[6.064682546000142,35.591413191000015],[5.991549434999968,35.51636481500009]],[[6.214625574000081,35.33511739000011],[6.331796534000034,35.405336449000174],[6.586972512000102,35.40873564600014],[6.805170551000174,35.343659053000124],[6.700610500000153,35.273420883000085],[6.581205428000089,35.27190996100012],[6.214625574000081,35.33511739000011]],[[36.410833333000085,10.079166666000162],[36.3908333330001,10.174166667],[36.48833333300013,10.2025],[36.505,10.113333333000128],[36.48583333300007,10.013333333000048],[36.630000000000166,10.034166667000022],[36.69000000000017,10.01],[36.675,9.8825],[36.698333333,9.810000000000116],[36.65583333300003,9.735833333000073],[36.58166666600016,9.774166667000088],[36.515,9.752500000000168],[36.44250000000011,9.670833334000122],[36.350833333000026,9.790833334000183],[36.250000000000114,9.713333334000083],[36.181666667000115,9.803333333000182],[36.13750000000016,9.986666667],[36.244166666000126,10.06250000000017],[36.30250000000012,10.008333333000053],[36.410833333000085,10.079166666000162]],[[36.687500000000114,9.229166667000129],[36.790000000000134,9.249166666000121],[36.84333333300003,9.11333333400006],[36.6425,8.99],[36.59,8.900833333000037],[36.6975,8.821666667000102],[36.698333333,8.644166667000036],[36.525,8.66333333300014],[36.453333333000046,8.726666667000131],[36.43083333300018,8.878333333000171],[36.368333333000066,9.012500000000102],[36.400833333000094,9.15],[36.58750000000015,9.173333333000016],[36.687500000000114,9.229166667000129]],[[38.606666666000194,5.671666666000021],[38.445000000000164,5.629166667000163],[38.330833333000044,5.437500000000114],[38.26166666700004,5.451666667000097],[38.2125,5.5175],[38.246666667000056,5.740833333000126],[38.18833333300012,5.826666667000154],[38.26666666700004,5.860833333000187],[38.309166666000124,5.960833333000153],[38.35833333400012,5.9875],[38.3875,6.122500000000116],[38.483333334,6.15083333400014],[38.50166666600012,6.2225],[38.596666667000136,6.338333333000037],[38.62666666700005,6.4425],[38.76000000000016,6.438333333000173],[38.77833333300015,6.390833333000046],[38.886666666999986,6.29500000000013],[38.932500000000175,6.187500000000114],[38.893333333000044,6.150833333000037],[38.91583333300008,6.028333333000091],[39.024166667000145,5.938333333000116],[39.0725,6.02250000000015],[39.14333333300016,5.983333333000189],[39.275,5.991666667000118],[39.34083333300015,5.900833333000094],[39.3575,5.794166666000024],[39.265,5.688333333000173],[39.15416666700003,5.5975],[39.16250000000019,5.53416666600009],[39.12416666600018,5.422500000000127],[39.023333333000096,5.531666666000035],[38.99666666700011,5.643333333000101],[38.93083333400011,5.661666666000087],[38.7675,5.56666666700005],[38.75083333300012,5.618333333000123],[38.606666666000194,5.671666666000021]],[[39.185833333000176,6.450000000000102],[39.12583333400005,6.33],[39.06333333300017,6.310000000000116],[39.0725,6.19583333300011],[39.231666666000194,6.081666667000093],[39.20083333400004,6.0475],[39.12,6.151666666000153],[38.96916666700008,6.167500000000189],[38.929166667000175,6.294166667000184],[38.80416666700012,6.375000000000114],[38.766666667000095,6.435000000000173],[38.8275000000001,6.475],[38.82333333300005,6.557500000000118],[38.86250000000018,6.655],[38.97583333300014,6.725833333000139],[39.210833333000096,6.798333333000073],[39.3625,6.776666667000029],[39.445000000000164,6.703333333000103],[39.487500000000125,6.8225],[39.65833333300003,6.831666666],[39.66833333300019,6.765833333000046],[39.87083333300018,6.712500000000148],[39.97333333300003,6.759166667000159],[39.995833333000064,6.641666666999981],[39.910833333000085,6.515000000000157],[39.79,6.525833333000094],[39.59166666700014,6.454166666999981],[39.53666666700008,6.322500000000161],[39.3975,6.1625],[39.29500000000013,6.186666667000168],[39.28916666700002,6.075000000000102],[39.215000000000146,6.118333333000066],[39.108333333000076,6.232500000000186],[39.171666666000135,6.354166667000072],[39.185833333000176,6.450000000000102]],[[30.882500000000107,2.856666667000127],[30.952500000000157,2.796666666000021],[30.876666667,2.681666667000172],[30.95166666700004,2.624166667000054],[30.90833333300003,2.534166667000079],[30.996666667000113,2.46666666700014],[30.965733113,2.406666667000081],[31.01781652900013,2.335018896000065],[31.052537557000107,2.175313801000073],[30.990039573000104,2.057271626000102],[30.84421155600006,1.869791586000133],[30.698383540000123,1.751749411000105],[30.608108599000047,1.640650805000064],[30.524778567000055,1.592044651000037],[30.441448535000063,1.60593245900003],[30.39283953200004,1.723974634],[30.302564591000134,1.821186438000041],[30.302564591000134,2.036440250000112],[30.32537661100008,2.09346686300006],[30.308885551,2.25336122200008],[30.416093446000104,2.297809616000166],[30.562522445000127,2.439000093000175],[30.609590519000108,2.577575919000139],[30.784784533000106,2.663858560000108],[30.882500000000107,2.856666667000127]],[[11.873807486000032,6.98243300900009],[11.791678580999985,6.941371072000152],[11.784834590000116,6.859248034000188],[11.719815496000138,6.766859680000152],[11.863541499000121,6.691580131000023],[11.843008518000033,6.629987895000056],[11.675329551,6.592347450000034],[11.558979514000043,6.486271280000096],[11.381032548000178,6.434944863000112],[11.162021464000077,6.482850457000097],[11.062782581000135,6.424679546000164],[11.086916427000176,6.579723297000101],[11.049710500000117,6.662398367000094],[10.938090538999973,6.70786901800011],[10.927755484999977,6.8050129290001],[10.8843474520001,6.883554380000135],[10.942225499000187,6.939359079000042],[10.969096540000123,7.092308025000136],[10.981498572000078,7.332066834000159],[11.091051555000035,7.387871701000108],[11.08071650100004,7.270059358000083],[11.241943582000033,7.119178060000024],[11.31429047000006,7.005499336000184],[11.41920256200018,6.999968957000078],[11.47155358200007,7.133216239000092],[11.533423594000112,7.052316121000047],[11.685718584000142,7.118940182000074],[11.719032459000061,7.199840300000062],[11.576256461000014,7.347364644999971],[11.581015538000088,7.528200686000105],[11.657162446000143,7.537719008000181],[11.795179534000056,7.480613101000074],[11.790420456999982,7.56151305200018],[11.904641490000017,7.575790115000075],[11.961751588000027,7.551995736000151],[11.99506546200007,7.632896021000136],[12.047417488000065,7.62337870600004],[11.952233434000163,7.423506189000136],[12.00934353100007,7.423506189000136],[12.095008593000045,7.342605904000152],[12.171155501000044,7.490130250000107],[12.175915584,7.580548857],[12.247303583000019,7.647172917000091],[12.318691582000042,7.54247758200006],[12.32820956800009,7.447301574000107],[12.418634546000078,7.404471558000182],[12.551892557000144,7.428264931000058],[12.589965508000034,7.471095786000149],[12.589965508000034,7.566271960999984],[12.537614488000145,7.675726038000164],[12.556651466000176,7.74710884000018],[12.632799548000094,7.832767532000105],[12.670872498999984,7.77566179300004],[12.751778484000056,7.77566179300004],[12.837444552000079,7.889874444000043],[12.927868524000132,7.904150502000164],[13.004015432000188,7.813732062000042],[12.970702564000078,7.599584494],[12.918350538000084,7.580548857],[12.827925560000153,7.342605904000152],[12.756538567,7.304534629000045],[12.708946456000149,7.347364644999971],[12.609003493000046,7.361641708999969],[12.628039464999972,7.271223102000135],[12.490022545000102,7.18080483000017],[12.417913534000093,7.037181085999975],[12.294719506000092,6.996120154000039],[12.137305521000087,7.078243192],[12.051753447000067,7.006385471000044],[11.993579518000047,7.119304124000166],[11.94224958100017,7.033759426000017],[11.873807486000032,6.98243300900009]],[[12.318732486000044,8.39470222400007],[12.255743489000054,8.311830179000026],[12.172865577000152,8.368184061000022],[12.199386590000074,8.46100056299997],[12.318732486000044,8.39470222400007]],[[12.502189548000047,8.622050786000102],[12.544160587000022,8.72950829400014],[12.706603546999986,8.749396874000126],[12.796112550000146,8.828954043000124],[12.855784492,8.792490753000095],[12.736438428000042,8.61680136800004],[12.617094544000054,8.537244031],[12.554106553000167,8.547188321000021],[12.502189548000047,8.622050786000102]],[[14.437439564000044,7.036491088000105],[14.334759574000032,7.161802217000059],[14.292670518000136,7.147497996000027],[14.268739513000071,7.008940275000043],[14.192879434000076,7.008853104000025],[14.164580452,7.067545872000096],[14.172470506000025,7.194720801000074],[14.294099464000055,7.293133732000058],[14.429140474000121,7.337470312000107],[14.518750563000083,7.424215969000045],[14.593009531000064,7.45884144300004],[14.676560510000115,7.371321801000136],[14.66425956400019,7.272329178000177],[14.55922057100014,7.30143902400016],[14.475299448000158,7.250629604000096],[14.502070576000108,7.125179838000122],[14.437439564000044,7.036491088000105]],[[14.246549431000119,7.383622076000108],[14.146349478000047,7.343539815000042],[13.98954049800011,7.413466010000093],[14.028530597000042,7.462308366000116],[14.221269443000097,7.480664902000171],[14.297880540999984,7.443779498000026],[14.246549431000119,7.383622076000108]],[[13.130940580000015,8.40133264400015],[13.246970596000097,8.381443059],[13.326534471000116,8.427851980000014],[13.435933562000173,8.348294642999974],[13.402782464000097,8.2422173],[13.120996458000036,8.348294642999974],[13.130940580000015,8.40133264400015]],[[11.00021351700019,5.904127652000113],[11.00966444800008,5.860024927000097],[10.842694590000065,5.756070720000082],[10.76393454000015,5.740319783000075],[10.694625588000122,5.626913974],[10.609565532000147,5.718268336000108],[10.707227444000068,5.856875175000084],[10.67572456400012,5.970280817000059],[10.726129474000118,6.055334671000026],[10.937205578000032,5.963980308000032],[11.00021351700019,5.904127652000113]],[[0.591610568000135,7.46195146499997],[0.566069568000046,7.766655271000161],[0.583860493000088,7.918078542999979],[0.540253474000053,8.117388969000046],[0.551495450000118,8.242674114000124],[0.583583555000075,8.311551229999964],[0.812199461000148,8.363616427000125],[0.845077477000132,8.32706110300012],[0.859042566000028,8.04705122200005],[0.831214479000096,7.923646138000151],[0.870520576000047,7.833955415000105],[1.034198526000068,7.765802328],[1.125068582000097,7.613062427000102],[1.087223451000057,7.549442104999969],[0.900164518000054,7.376693428000067],[0.780181430000084,7.183119576000024],[0.643235548000177,6.8845473],[0.520070522000083,6.794715761000077],[0.42452654900012,6.782831731000158],[0.385867535000159,6.871965225],[0.516725472000076,7.024790119000158],[0.580156530000124,7.13345512300009],[0.605391423000015,7.31009820100013],[0.591610568000135,7.46195146499997]],[[-12.537615493999908,12.130883600000118],[-12.350332427999888,12.172383744000172],[-12.105774476999954,12.159404702000074],[-11.94681252199996,12.12320812300004],[-11.902311488999942,12.029241457000126],[-11.846899564999944,11.770158170000116],[-11.831834434999905,11.636105555000029],[-11.850824474999968,11.397161802000142],[-11.884179587999938,11.24078264600007],[-11.872325564999926,11.042016541000066],[-11.754469468999957,10.87228719300009],[-11.71443246999985,10.708922559000086],[-11.753290469999968,10.569712222000135],[-11.847959540999966,10.36806341300013],[-11.898785556999883,10.300423131000116],[-11.965004436999948,10.284112115000084],[-12.021734497999887,10.337491595000131],[-12.058967582999912,10.567608532000122],[-12.040868538999973,10.801838135000082],[-12.037017557999832,11.061772016000134],[-12.046097505999967,11.28154685900006],[-12.06818147399997,11.434699150000029],[-12.108198523999931,11.525819993000084],[-12.234210546999975,11.660154911000177],[-12.446056444999897,11.770632083000123],[-12.523677561999875,11.843314080000141],[-12.531053468999914,11.982713680000018],[-12.594152435999945,12.098838746000126],[-12.537615493999908,12.130883600000118]],[[-11.415580573999875,10.891483930000106],[-11.244637525999963,11.046748126000125],[-11.167901536999864,11.030723100000102],[-10.91882657899987,11.030397212000139],[-10.88296343199994,10.962926076000088],[-10.907288553999933,10.88202646100018],[-10.823671525999885,10.861352832000023],[-10.800481481999952,10.808131603000106],[-10.854223562999948,10.709258673000022],[-10.992660583999964,10.720593688000065],[-11.047182517999886,10.66979918700008],[-11.220203439999977,10.624232646999985],[-11.221464580999964,10.501946882000084],[-11.191105494999874,10.441400204000104],[-11.2476585309999,10.33968547400002],[-11.220026580999956,10.265358445],[-11.261742474999949,10.225897283000108],[-11.344790539999963,10.304792785000188],[-11.575384574999816,10.363104679000173],[-11.676139577999948,10.405425914000034],[-11.709179530999961,10.50878768900003],[-11.577796551999882,10.611649399000157],[-11.541116504999877,10.750467629000127],[-11.430243539999935,10.804233012000054],[-11.415580573999875,10.891483930000106]],[[-12.382232442999907,11.616258884000047],[-12.23800050899996,11.518983545000026],[-12.260549504999972,11.474654677000103],[-12.190924554999981,11.402999463000072],[-12.128482561999931,11.157062521000057],[-12.19141355599993,11.022554768000134],[-12.339609459999963,10.953508673000101],[-12.30708851299994,10.907551871000067],[-12.17737051499995,10.859717188000047],[-12.126951522999946,10.780969543000026],[-12.13856548799987,10.660136026000146],[-12.23390544599988,10.503184889000124],[-12.293008591999978,10.493527763000088],[-12.378241483999943,10.596930440999984],[-12.414565466999875,10.790703950000136],[-12.6168554919999,10.842891188000124],[-12.654644463999944,10.924988577000022],[-12.744613465999976,10.983143562000066],[-12.73816258599993,11.090661084000146],[-12.769843496999954,11.146256236000056],[-12.889651571999877,10.996909497],[-12.981983431999936,11.045239215000038],[-12.947300457999972,11.15415668300011],[-12.896435548999932,11.217422450000072],[-12.996087492999948,11.349211281000123],[-12.940239542999905,11.41951633800005],[-12.760199446999934,11.42078820800009],[-12.491234567999982,11.633097792000115],[-12.382232442999907,11.616258884000047]],[[-12.940548498999874,9.754488654000056],[-12.934135504999972,9.84761880700006],[-12.832369477999919,9.851782769000181],[-12.819978509999885,9.765627868000138],[-12.845020451999858,9.668964408000022],[-12.840827488999935,9.511083718000066],[-12.913606547999962,9.539625774000172],[-12.940548498999874,9.754488654000056]],[[-8.59226556799996,8.820832817],[-8.63755248799987,8.894342443000141],[-8.625872472999959,8.983395303000066],[-8.506212590999894,9.002801756000054],[-8.278475442999877,8.907017557000131],[-8.309595437999974,8.845291043000088],[-8.390624469999977,8.808333723000032],[-8.455210553999962,8.719559813000046],[-8.59226556799996,8.820832817]],[[-7.344984561999922,8.079842904000031],[-7.359925471999873,8.03814477900005],[-7.462818530999925,8.02642352600003],[-7.465078458999869,8.108300639000163],[-7.344984561999922,8.079842904000031]],[[-7.557827570999905,7.939083760000074],[-7.587056440999902,7.878718131000085],[-7.685255465999887,7.898241930000154],[-7.659958546999974,7.962681332000159],[-7.557827570999905,7.939083760000074]],[[-6.16111047499993,7.837105335000103],[-6.174267547999932,7.772186824000187],[-6.257836463999979,7.751396519000139],[-6.229265573999953,7.85548885999998],[-6.16111047499993,7.837105335000103]],[[-6.00130747899982,7.722165470000107],[-6.099864578999927,7.749618717000089],[-6.042150481999954,7.834040408000078],[-5.995554475999938,7.804127742000105],[-6.00130747899982,7.722165470000107]],[[-5.461944581999944,7.461669497000116],[-5.526231432999964,7.499585707000108],[-5.500659586999973,7.581801784000049],[-5.444749442999921,7.592594992999977],[-5.461944581999944,7.461669497000116]],[[-5.820555424999895,7.267239518000054],[-5.868237557999976,7.190418873000112],[-5.99744643899993,7.301435838999964],[-5.810617504999925,7.345324658000038],[-5.820555424999895,7.267239518000054]],[[11.655703492000043,8.66320894800009],[11.612607434000097,8.71956283000003],[11.725321568000027,8.78254663000007],[11.791625440000132,8.646635244000095],[11.834721498000079,8.633376079000016],[11.907654449000177,8.437797108000098],[12.007108580000022,8.37812734500011],[12.017054547000043,8.21901267100003],[11.914284535000036,8.109620621000147],[11.960697479000146,8.020119161000025],[11.838036541000179,8.003544451000153],[11.665649458000132,8.12619533100019],[11.692171476000055,8.29857000800007],[11.751843586000177,8.414591809000058],[11.672280550000096,8.540558906000115],[11.655703492000043,8.66320894800009]],[[10.667435532000127,7.414484747000074],[10.698450586000035,7.515008576000128],[10.763688447000106,7.497897592000129],[10.788286483000036,7.414484747000074],[10.711283447000028,7.368500955000172],[10.667435532000127,7.414484747000074]],[[1.446620517000099,10.291396659000043],[1.511363510000137,10.455472414000042],[1.558298480000076,10.473994073000142],[1.660031483000125,10.41801503],[1.654420469000058,10.319983811000156],[1.543532584000104,10.122385472000133],[1.495224491000158,10.12168055400008],[1.446620517000099,10.291396659000043]],[[1.383023497000181,9.36690576300009],[1.428892456000142,9.313153624],[1.292508498000132,9.203927534000172],[1.117701560000171,9.205678514000113],[1.056458514000155,9.24859436100013],[1.100158572000112,9.349721185000078],[1.327337485000044,9.377006291000043],[1.383023497000181,9.36690576300009]],[[1.158843461000174,9.049246552000113],[1.208247572000062,9.128020013000139],[1.260822557000097,9.112657997000042],[1.265596554000126,9.021918363],[1.158843461000174,9.049246552000113]],[[0.607690579,8.744789006000076],[0.64731049400018,8.890125843000135],[0.721367459000078,8.892667571000118],[0.735668494000038,8.798209390000125],[0.816974464000054,8.74732587300008],[0.756175491000079,8.529553635000184],[0.704679425000052,8.536156228000152],[0.608289550000109,8.61726237300013],[0.607690579,8.744789006000076]],[[33.41083333300014,1.771666667000147],[33.435000000000116,1.713333334000083],[33.37250000000017,1.645000000000152],[33.24666666600007,1.615833333000126],[33.09833333400013,1.524166667000145],[33.152500000000146,1.411666666000031],[33.300833333000185,1.388333334000151],[33.25250000000011,1.2875],[33.1433333330001,1.296666667000011],[32.94083333300017,1.435833334000108],[32.78416666700008,1.425000000000125],[32.71583333300015,1.358333333000132],[32.590000000000146,1.388333333000048],[32.555,1.485833333000073],[32.695,1.491666666000185],[32.774166667000145,1.588333333000094],[32.81000000000017,1.549166666000133],[32.92,1.5625],[32.98416666600008,1.537500000000136],[33.1475,1.63916666700004],[33.26000000000016,1.6425],[33.388333333000105,1.703333333000046],[33.41083333300014,1.771666667000147]],[[34.20916666700015,1.1225],[34.2616666670001,1.212500000000148],[34.4,1.300833333000185],[34.413333333000026,1.408333334000076],[34.62416666600018,1.435833334000108],[34.7058333330001,1.36],[34.69,1.276666667000086],[34.76916666700009,1.213333333000094],[34.834166666000044,0.8900000000001],[34.79083333300008,0.85],[34.58833333300015,0.810833333000062],[34.46083333300015,0.829166666000049],[34.449166667000156,0.868333334000113],[34.33166666700015,0.916666667000186],[34.1775,1.01416666700004],[34.155,1.072500000000161],[34.20916666700015,1.1225]],[[34.74333333300012,0.291666667000072],[34.855833333000135,0.345833333000087],[34.9466666670001,0.317500000000109],[34.9575,0.416666667000129],[34.90416666700014,0.535],[35.05666666700006,0.514166667000154],[35.13833333399998,0.566666667000106],[35.19833333300011,0.455],[35.12333333400005,0.350833334000185],[35.206666667000036,0.306666666000126],[35.25083333300012,0.24],[35.43833333300012,0.336666666000042],[35.43750000000017,0.573333334000097],[35.47916666600014,0.810833333000062],[35.399166666000156,0.943333333],[35.31,0.940000000000168],[35.225,1.063333333000116],[35.1575,1.0225],[35.07166666699999,1.120000000000118],[35.057500000000175,1.250000000000171],[35.100833334000185,1.308333333000064],[35.300833333000185,1.250833333000116],[35.375,1.308333333000064],[35.530833333000146,1.358333334],[35.61416666700006,1.209166667000147],[35.598333333000085,1.001666667000165],[35.51583333400009,0.542500000000132],[35.604166666000026,0.374166666000065],[35.60333333300008,0.2175],[35.72000000000014,0.220833334000133],[35.77666666600004,0.170000000000186],[35.73916666700012,0.086666667000031],[35.84083333400008,-0.015],[35.85666666700013,-0.083333332999871],[35.7925,-0.1075],[35.800833334000174,-0.204166665999878],[35.88000000000011,-0.269166666999979],[35.985,-0.16],[36.10416666600008,-0.16083333399996],[36.1725,0.000833333000173],[36.26416666600005,0.069166666000058],[36.29083333300014,0.140833334000092],[36.191666666000174,0.326666667000154],[36.2675,0.401666666000096],[36.285,0.485000000000184],[36.42750000000018,0.234166666000021],[36.50416666700016,0.189166667000052],[36.53,0.095833334000019],[36.60750000000013,-0.006666666999877],[36.61083333300013,-0.096666666999965],[36.80916666700011,-0.066666666999936],[36.87833333400005,-0.295833333999894],[36.98833333300007,-0.341666665999981],[37.04,-0.320833332999939],[36.99666666700017,-0.11083333299996],[37.06416666700005,-0.024166665999928],[37.07416666700004,0.22],[37.16000000000014,0.195833333000053],[37.215,0.311666667],[37.1425,0.398333333000039],[37.131666667,0.475833333000139],[37.04,0.493333334000113],[37.00000000000017,0.545],[36.86666666700012,0.583333333000155],[36.90833333300003,0.665000000000134],[36.95833333400003,0.674166667000122],[37.009166667000045,0.5825],[37.11,0.533333334000019],[37.1675,0.438333334000049],[37.285,0.4025],[37.275,0.258333333],[37.330833333000044,0.194166666000115],[37.44083333300017,0.1400000000001],[37.60916666700007,0.145833333000041],[37.75416666700005,0.176666667000177],[37.80083333400012,0.265833333000103],[37.85833333300013,0.29],[37.9325,0.41583333300008],[38.00833333400004,0.458333333000098],[38.03250000000014,0.358333333000132],[37.990833333000126,0.274166666000099],[38.00083333300006,0.208333334000031],[37.916666666000026,0.083333334000145],[37.78583333300003,0.038333333000026],[37.79666666700007,-0.03],[37.708333333000155,-0.130833332999941],[37.715833333000035,-0.366666665999958],[37.59416666700008,-0.51416666699987],[37.348333333000085,-0.550833333999947],[37.250000000000114,-0.639166666999927],[37.17416666700018,-0.65],[37.16166666600003,-0.839166666999915],[37.11083333400012,-0.890833332999932],[37.12333333300006,-0.9825],[37.06333333400016,-1.008333332999939],[36.974166667000134,-1.091666666999856],[36.870833333000064,-1.214166666999915],[36.77166666700015,-1.389166665999937],[36.715833333000035,-1.369166665999899],[36.65583333300003,-1.43666666699994],[36.5783333330001,-1.084166666999977],[36.598333333000085,-0.9725],[36.52250000000015,-0.866666666999947],[36.44583333300017,-0.714166666999915],[36.43333333400017,-0.605],[36.36083333300019,-0.494166665999899],[36.30583333300012,-0.464166665999812],[36.16416666600014,-0.2875],[36.090000000000146,-0.27],[35.98666666700018,-0.30833333299995],[35.975,-0.3925],[36.04666666700007,-0.495],[36.12416666700011,-0.598333332999914],[36.2683333330001,-0.586666666999974],[36.274166667000145,-0.681666666999945],[36.22,-0.696666666999874],[36.196666667000045,-0.778333332999921],[36.250000000000114,-0.959166665999874],[36.15416666600015,-1.119999999999891],[36.16583333400018,-1.2325],[35.96,-1.201666665999937],[35.849166666000144,-1.159166666999965],[35.84833333400013,-1.098333332999971],[35.73000000000013,-1.029166665999981],[35.59750000000014,-0.97833333299991],[35.52250000000015,-0.975],[35.37833333300006,-0.924999999999898],[35.315833333000114,-0.975],[35.26000000000016,-0.955],[35.17916666600013,-0.99166666699989],[35.11083333300007,-0.914166666999904],[35.03833333400007,-0.93333333399994],[34.965833333000035,-0.998333333999938],[34.909166667000136,-1.117499999999893],[34.96916666699997,-1.129999999999882],[34.97916666700013,-1.2325],[34.94916666600011,-1.314166665999949],[34.770833333000155,-1.434166665999953],[34.66666666700007,-1.484166665999908],[34.625,-1.425833333999947],[34.50833333400004,-1.415833332999966],[34.47500000000019,-1.4075],[34.44083333300006,-1.325833332999878],[34.44083333300006,-1.284166665999919],[34.42083333400018,-1.214166666999915],[34.50333333300017,-1.229166665999969],[34.5775,-1.19],[34.624166667000054,-1.225],[34.65083333399997,-1.176666666999836],[34.545000000000186,-1.046666666999954],[34.61333333300007,-0.88916666699987],[34.68916666700011,-0.655],[34.77,-0.563333332999889],[34.891666667000095,-0.4875],[35.050833333000014,-0.424999999999841],[35.05,-0.365833333999831],[35.14083333300016,-0.359166666999954],[35.18583333300006,-0.276666666999972],[35.372500000000116,-0.266666666999924],[35.43916666700011,-0.20583333299993],[35.38583333400004,-0.144999999999868],[35.248333333000176,-0.118333332999953],[35.24583333300012,-0.0675],[35.36083333300019,0.031666667000138],[35.205,0.060833333000062],[35.08,0.005833334000101],[34.9475,-0.0225],[34.84750000000014,-0.019999999999811],[34.7608333340001,0.039166667000188],[34.66833333400001,-0.01],[34.59083333400014,-0.005833332999941],[34.66250000000019,0.086666666000099],[34.67416666700012,0.135833333000051],[34.785,0.15],[34.7925,0.159166667000079],[34.72666666700013,0.190000000000168],[34.78416666700008,0.285],[34.74333333300012,0.291666667000072]],[[36.60500000000019,-3.421666665999908],[36.639166666999984,-3.283333332999973],[36.62583333300012,-3.213333333999856],[36.73750000000018,-3.13],[36.86083333300007,-3.263333332999935],[36.82,-3.353333333999956],[36.66583333400007,-3.366666665999958],[36.60500000000019,-3.421666665999908]],[[37.13250000000011,-3.214166666999972],[37.05416666700012,-3.145833332999928],[37.09500000000014,-2.991666666999947],[37.14416666700009,-2.888333332999878],[37.22583333300014,-2.8625],[37.42833333300007,-2.898333333999972],[37.567500000000166,-3],[37.610833334000176,-3.088333333999969],[37.61500000000018,-3.285],[37.41833333400018,-3.32],[37.362500000000125,-3.266666665999935],[37.16000000000014,-3.246666666999886],[37.13250000000011,-3.214166666999972]],[[23.78,-14.312499999999886],[23.690833334000104,-14.202499999999873],[23.76416666600005,-14.160833332999914],[23.841666667000084,-14.066666666999822],[24.050000000000125,-14.04166666599997],[24.09916666600003,-13.980833332999964],[24.22750000000019,-13.945833333999872],[24.35583333400018,-13.9775],[24.4175,-14.020833332999871],[24.612500000000182,-14.07666666599988],[24.6575,-14.228333332999966],[24.72666666600003,-14.21666666599998],[24.872500000000116,-14.3425],[24.856666667000184,-14.420833332999962],[24.918333333000135,-14.530833332999862],[24.69166666700005,-14.656666665999865],[24.612500000000182,-14.5725],[24.445000000000107,-14.645833332999928],[24.285833333000085,-14.5875],[24.110833334000063,-14.58416666699992],[24.040833334000183,-14.6575],[23.980833333000078,-14.635],[24.020833333000155,-14.535833332999914],[23.978333332999966,-14.484166666999897],[24.009166667000102,-14.385833333999926],[23.898333334000085,-14.321666666999931],[23.78,-14.312499999999886]],[[23.55333333300007,-14.281666666999854],[23.562500000000114,-14.36333333399989],[23.428333334000115,-14.399166665999928],[23.266666667000152,-14.382499999999823],[23.28083333300009,-14.266666665999878],[23.393333334000033,-14.253333333999876],[23.456666667000093,-14.1725],[23.52833333400008,-14.1775],[23.55333333300007,-14.281666666999854]],[[23.068333334000044,-13.179166666999947],[23.011666667000043,-13.1775],[22.95833333300004,-13.01833333399992],[23.010998028000074,-12.969132357999968],[23.075944643000184,-12.84312588299997],[23.229455482000162,-12.73822850099998],[23.3506183610001,-12.50238342699987],[23.551148818000115,-12.334013539999887],[23.56143865200005,-12.261101388999975],[23.450338354000053,-12.174592392999841],[23.435785515000077,-12.077198622999958],[23.462163885000166,-12.006934615999967],[23.53971955700007,-11.94702734699996],[23.620226525000078,-11.840733243999978],[23.72851421700011,-11.785237250999842],[23.90423328200012,-11.661962763999895],[23.971666667000136,-11.654166666999913],[24.023333334000142,-11.8125],[24.11083333300013,-11.750833332999946],[24.177500000000123,-11.8125],[24.145833334000145,-11.94333333399993],[23.988333333000128,-11.996666666999943],[24.0183333330001,-12.080833332999873],[24.15416666700014,-12.1175],[24.243333333000066,-12.258333332999939],[24.15833333400019,-12.5441666669999],[24.325,-12.539166665999915],[24.53916666700013,-12.5975],[24.632500000000107,-12.69416666699982],[24.66416666700019,-12.640833332999932],[24.56333333300006,-12.5975],[24.609166667000125,-12.525],[24.73000000000019,-12.440833332999944],[24.848333333000085,-12.4975],[24.80666666600007,-12.55166666599996],[24.8125,-12.634166666999874],[24.876666666000062,-12.775],[24.9725,-12.856666666999956],[25.009166667000102,-12.942499999999882],[24.89666666700009,-13.000833332999946],[24.7525,-13.01],[24.68333333300012,-13.1025],[24.49666666700017,-13.149166665999928],[24.248333333000062,-13.30833333299995],[24.204166667000038,-13.127499999999884],[24.273333334000085,-13.070833332999882],[24.280000000000143,-12.896666666999977],[24.22750000000019,-12.859166666999954],[24.1475,-12.8825],[24.129166666000117,-12.951666666999927],[24.039166666000142,-12.923333333999949],[24.0275,-13.01749999999987],[24.071666667000045,-13.11083333299996],[24.167500000000132,-13.190833333999876],[24.215000000000146,-13.294166666999843],[24.169166667000127,-13.346666666999965],[24.10750000000013,-13.315833332999944],[24.0675,-13.22166666599992],[24.016666667000038,-13.248333332999835],[24.0425,-13.396666666999977],[23.93083333300018,-13.40666666699991],[23.904166666000094,-13.360833333999835],[23.93916666700011,-13.250833332999889],[23.872500000000116,-13.251666666999938],[23.86,-13.375],[23.93416666600001,-13.5625],[23.79833333400012,-13.65],[23.685833333000062,-13.65],[23.590000000000146,-13.6875],[23.53166666599998,-13.7625],[23.44083333400016,-13.7475],[23.332500000000152,-13.8025],[23.29500000000013,-13.70583333299993],[23.343333333000032,-13.653333332999864],[23.23416666700018,-13.535],[23.213333334000083,-13.3725],[23.30666666700006,-13.4191666669999],[23.35500000000019,-13.346666666999965],[23.503333333000057,-13.254166665999946],[23.596666667000136,-13.23916666599996],[23.72583333300014,-13.15],[23.72583333400007,-13.081666666999979],[23.655,-13.040833332999966],[23.601719855000056,-12.95025725399995],[23.59489268800013,-12.839693476999969],[23.370833334000167,-13.08333333399986],[23.29416666600008,-13.029166666999913],[23.405396899000095,-12.843729828999926],[23.175,-13.01833333399992],[23.23583333400012,-13.060833333999824],[23.229166666000083,-13.124166666999884],[23.15666666600015,-13.2175],[23.068333334000044,-13.179166666999947]],[[35.340000000000146,-8.6875],[35.25083333300012,-8.64249999999987],[35.12333333400005,-8.68583333399988],[35.098333334000074,-8.634999999999877],[35.174166667000065,-8.5825],[35.32500000000016,-8.575],[35.305833334000056,-8.44499999999988],[35.49500000000012,-8.341666665999924],[35.60416666700013,-8.35],[35.715000000000146,-8.295],[35.77916666600015,-8.21],[35.85166666700013,-8.180833333999828],[35.90166666700003,-8.085],[35.88333333300011,-7.996666665999953],[35.90916666700008,-7.905833332999919],[35.8875,-7.81],[35.9325,-7.759166666999931],[36.021666666000044,-7.818333332999941],[35.96166666700009,-7.905833332999919],[35.999166667000054,-7.941666666999879],[36.090000000000146,-7.854999999999848],[36.1825,-7.88],[36.2625,-7.775],[36.37416666600018,-7.770833333999974],[36.4525000000001,-7.725],[36.56500000000011,-7.73583333299996],[36.656666667000025,-7.82666666699987],[36.4491666670001,-7.80166666599996],[36.100000000000136,-8.0225],[35.98,-8.275],[35.855833333000135,-8.465833332999978],[35.74750000000017,-8.559999999999889],[35.66166666700008,-8.668333332999907],[35.47333333300003,-8.7225],[35.42000000000013,-8.671666666999954],[35.340000000000146,-8.6875]],[[35.233333333000076,-14.421666665999965],[35.079166667000095,-14.21333333299998],[34.940833333000114,-14.151666666999972],[34.930833334000056,-14.068333333999874],[34.86416666700006,-13.995],[34.82250000000016,-14.0375],[34.85916666700007,-14.116666666999947],[34.81166666700011,-14.148333332999869],[34.7975,-14.2575],[34.62583333400005,-14.20916666699992],[34.566666667000106,-14.1325],[34.5175,-13.96583333399991],[34.57416666700004,-13.911666665999917],[34.62833333300006,-13.7175],[34.48666666700012,-13.578333332999932],[34.40583333400019,-13.55333333399983],[34.297500000000184,-13.335833333999972],[34.34583333400019,-13.265833333999979],[34.33500000000015,-13.02166666699992],[34.305833334000056,-12.88916666599988],[34.2575,-12.825833333999924],[34.27666666599998,-12.754166665999946],[34.1925,-12.6875],[34.16833333300002,-12.575833332999878],[34.198333333000164,-12.528333332999978],[34.16583333400007,-12.406666665999978],[34.033333334000076,-12.349166666999906],[34,-12.221666666999965],[34.11166666700012,-11.973333332999971],[34.191666667000106,-11.92],[34.184166667000056,-11.823333332999937],[34.30250000000012,-11.7275],[34.328333333000046,-11.667499999999848],[34.276666667000086,-11.515],[34.27583333300004,-11.383333332999825],[34.22166666700002,-11.276666666999915],[34.2125,-11.186666665999951],[34.24416666700006,-11.13],[34.25000000000017,-10.979166666999902],[34.17916666700006,-10.561666666999884],[34.237500000000125,-10.38083333399993],[34.075,-10.236666665999962],[33.99250000000018,-10.10249999999985],[33.943333333000055,-9.97],[33.89583333300004,-9.741666666999947],[33.943333333000055,-9.706666666999922],[33.94916666600017,-9.5725],[34.036666667000134,-9.49166666699989],[34.30916666600018,-9.743333332999896],[34.343333332999975,-9.805833332999953],[34.501666666000176,-9.975833332999969],[34.57083333300011,-10.294999999999845],[34.541666667000186,-10.415833333999956],[34.54750000000013,-10.509166666999931],[34.59416666700014,-10.58083333399992],[34.65000000000015,-10.748333332999948],[34.64916666700003,-10.9075],[34.60166666700002,-11.001666666999938],[34.62833333300006,-11.104166666999959],[34.73083333300008,-11.189999999999884],[34.78333333300003,-11.326666666999813],[34.88333333400004,-11.355833333999954],[34.92666666700018,-11.418333332999907],[34.96511639900007,-11.582821972999966],[34.953231278000146,-11.78381970299995],[34.90152348300012,-11.904539281999973],[34.88813795900012,-12.032069435999972],[34.81408026100013,-12.073134015999926],[34.70185948200003,-12.184289568999873],[34.722974862000115,-12.249216908999927],[34.68875930400009,-12.440648303999978],[34.755493043000115,-12.546362835999957],[34.820895697000026,-12.69801699899989],[34.755560106000075,-12.911916012999939],[34.80262007700014,-13.055330337999976],[34.815172165000035,-13.236151168999868],[34.79440112900005,-13.338655813999935],[34.868640783000046,-13.399015849999898],[34.852500000000134,-13.7125],[35.061666667000054,-13.736666666999952],[35.13000000000011,-13.943333333999874],[35.18083333400017,-14.0425],[35.18000000000012,-14.121666666999943],[35.29250000000013,-14.368333333999885],[35.2425,-14.414166665999971],[35.259166667000045,-14.535833332999914],[35.34583333300003,-14.619166666999945],[35.23000000000019,-14.755833333999874],[35.17833333300018,-14.706666666999922],[35.19000000000011,-14.548333333999892],[35.26000000000016,-14.516666666999924],[35.233333333000076,-14.421666665999965]],[[25.068333333000112,-15.197499999999877],[24.935833333000176,-15.235833332999903],[24.94583333300011,-15.145],[24.76250000000016,-15.004166665999946],[24.84583333300003,-14.974166666999906],[24.868333333000066,-15.076666666999927],[24.929166667000118,-15.119166666999945],[25.03333333300003,-15.115833332999898],[25.068333333000112,-15.197499999999877]],[[25.395,-15.764999999999873],[25.32166666700016,-15.99833333399988],[25.320833333000166,-16.13333333299994],[25.245,-16.11916666699983],[25.1425,-16.040833332999966],[25.239166666000187,-15.835833332999925],[25.395,-15.764999999999873]],[[25.05666666700006,-16.1275],[24.955833334000033,-16.08416666599993],[24.965833334000024,-16.005],[25.11500000000018,-16.0416666669999],[25.05666666700006,-16.1275]],[[25,-15.941666666999879],[24.987500000000182,-15.874999999999886],[24.898333333000153,-15.835833333999915],[24.9625,-15.74583333299995],[25.050833334000174,-15.803333332999898],[25,-15.941666666999879]],[[24.487500000000125,-15.516666665999878],[24.40166666700003,-15.52916666599998],[24.37000000000012,-15.485],[24.44416666700016,-15.419166665999967],[24.42916666600013,-15.335833333999915],[24.445833334000156,-15.18333333299995],[24.479166666000026,-15.144166666999979],[24.5825,-15.241666666999834],[24.596666665999976,-15.303333332999841],[24.680833334000113,-15.351666665999915],[24.659166667000022,-15.429166666999947],[24.58583333399997,-15.524166665999871],[24.487500000000125,-15.516666665999878]],[[24.3725,-15.08083333299993],[24.31,-15.05083333399989],[24.25,-15.089999999999861],[24.160833333000028,-14.980833333999954],[24.206666667000093,-14.921666665999965],[24.3725,-15.08083333299993]],[[23.294166667000184,-13.97833333299991],[23.419166665999967,-14.023333333999972],[23.40333333300009,-14.09416666699991],[23.299166666000076,-14.114999999999895],[23.294166667000184,-13.97833333299991]],[[25.040000000000134,-12.8175],[25.025833334000026,-12.68666666699994],[25.06250000000017,-12.606666666999956],[25.14750000000015,-12.695],[25.040000000000134,-12.8175]],[[24.669166667000184,-12.4275],[24.604166666000083,-12.45499999999987],[24.49000000000018,-12.3875],[24.5825,-12.2175],[24.6575,-12.195],[24.669166667000184,-12.4275]],[[25.103333334000126,-11.925833332999957],[24.86916666700006,-12.0875],[24.835,-12.033333333999906],[25.060000000000116,-11.925833332999957],[25.103333334000126,-11.925833332999957]],[[28.6425,-10.478333332999966],[28.6366666670001,-10.317499999999882],[28.577500000000157,-10.225],[28.576331185000186,-10.055902004999894],[28.597916011000166,-9.975693815999932],[28.502095462000113,-9.981453169999952],[28.487269572000116,-9.935338815999955],[28.49898120900008,-9.727058022999927],[28.59454777100018,-9.719132069999887],[28.496380631000193,-9.591463980999947],[28.501156321999986,-9.521051611999951],[28.352811213000052,-9.499637375999953],[28.374205570000186,-9.430878111999903],[28.328703862000168,-9.372732837999934],[28.36036719500015,-9.200435568999978],[28.33594647400008,-9.1473998969999],[28.6712198460001,-8.747061500999962],[28.725358396000104,-8.713933247999819],[28.887430618999986,-8.47624498499988],[29.0125,-8.541666666999902],[29.150000000000148,-8.645833333999974],[29.108333333000132,-8.804166665999901],[29.016666667000095,-9],[28.945833333000053,-9.025],[28.725,-9.312499999999886],[28.729166666000026,-9.493333332999953],[28.70000000000016,-9.536666666999963],[28.741666667,-9.645],[28.741666667,-9.856666665999967],[28.708333333000155,-9.975],[28.640833333000046,-10.071666666999874],[28.634166666999988,-10.233333332999905],[28.677500000000123,-10.293333333999954],[28.6425,-10.478333332999966]],[[30.023333333000096,-6.389999999999873],[29.9875,-6.421666665999965],[29.78916666700013,-6.241666666999947],[29.84833333299997,-6.201666666999927],[30.023333333000096,-6.389999999999873]],[[30.487500000000182,-6.1575],[30.44583333300011,-6.105],[30.530833334000192,-5.9825],[30.645,-6.066666666999879],[30.579166666000162,-6.164166666999961],[30.487500000000182,-6.1575]],[[30.08833333300015,-3.945833332999939],[30.073333333000164,-3.841666666999913],[30.18,-3.682499999999891],[30.21833333400008,-3.6975],[30.179166667000118,-3.868333333999942],[30.08833333300015,-3.945833332999939]],[[30.111666667,-3.583333332999871],[30.146666667000147,-3.5275],[30.295000000000186,-3.45583333299993],[30.2325,-3.398333332999869],[30.583333334000145,-3.1725],[30.611666667000122,-3.090833333999967],[30.741666667000175,-3.236666666999895],[30.5,-3.24166666699989],[30.4525,-3.348333332999971],[30.3925,-3.384166666999931],[30.3675,-3.4625],[30.261666667000043,-3.516666666999868],[30.195833333000166,-3.609166666999954],[30.111666667,-3.583333332999871]],[[30.54083333300008,-5.511666666999929],[30.46333333300015,-5.536666665999974],[30.416666667000186,-5.494166666999888],[30.498333333000062,-5.427499999999895],[30.54083333300008,-5.511666666999929]],[[30.0116666670001,-4.80833333299995],[29.954166667000152,-4.6925],[30.01583333400015,-4.61666666699989],[30.015833333000046,-4.541666666999902],[29.920833333000076,-4.451666666999927],[30.120833333000178,-4.291666665999969],[30.193333334000158,-4.285],[30.1525,-4.425],[30.169166667000184,-4.483333332999905],[30.080000000000155,-4.545],[30.125,-4.661666665999974],[30.0675,-4.67666666599996],[30.0116666670001,-4.80833333299995]],[[36.684166667000056,-7.234166666999954],[36.5625,-7.233333332999905],[36.60833333300002,-7.070833332999939],[36.5216666660001,-7.0875],[36.44833333300005,-6.958333332999928],[36.49500000000012,-6.8525],[36.55916666700017,-6.838333333999913],[36.606666667000184,-6.9025],[36.715833333000035,-6.945833332999939],[36.688333334000106,-7.067499999999882],[36.72583333400013,-7.120833332999894],[36.684166667000056,-7.234166666999954]],[[35.27188150500007,-17.551356536999947],[35.24507148500015,-17.466772739999954],[35.295951480999975,-17.40611558899991],[35.39601849700017,-17.442154251999966],[35.377918615000056,-17.592845112999953],[35.27188150500007,-17.551356536999947]],[[33.27568365000002,-20.16963058399989],[33.09220886400004,-20.334691209999903],[33.1003833420001,-20.45313744499998],[32.97690341700013,-20.616601344999935],[32.761695548000034,-20.638945331999935],[32.61835179400015,-20.677652961999854],[32.616851174000146,-20.525021958999957],[32.68795303400003,-20.446706640999878],[32.801313213000014,-20.235446828999955],[32.752574579000054,-20.091646770999944],[32.87290475200018,-20.026993705999928],[32.94698811200004,-19.91453763399994],[32.93902691700009,-19.82456483899989],[32.995707006000146,-19.718934932999957],[32.862435943000094,-19.569501653999964],[32.91862240600017,-19.526129],[33.14985252000014,-19.69726348899991],[33.25725759400012,-19.690046287999962],[33.40294038900004,-19.504898196999875],[33.41636306200013,-19.453085632999944],[33.53171354000011,-19.26431901999996],[33.57645973200016,-19.159491024999966],[33.671425438000085,-19.01169133299993],[33.72065375100016,-19.02535358699987],[33.72314557200019,-19.121350636999978],[33.792770500000074,-19.29768762699996],[33.69530902400004,-19.281609717999913],[33.68686604600009,-19.457535830999916],[33.46361292000006,-19.647896343999832],[33.09169549799998,-20.05754570299996],[33.12402206200005,-20.15153797499994],[33.31993226700001,-20.059179289999975],[33.27568365000002,-20.16963058399989]],[[36.27077855600004,-16.28398343899994],[36.34215951400006,-16.131794060999937],[36.40543751900003,-16.239018047999934],[36.562255551000135,-16.227138041999922],[36.67038746700007,-16.306524890999924],[36.788322520000065,-16.303033995999897],[36.77548245100019,-16.432574968999916],[36.842361488000165,-16.55578810699984],[36.84857147300016,-16.6262889649999],[36.732429476,-16.60084050099988],[36.69731852100006,-16.500602661999892],[36.625717455000085,-16.44916778399994],[36.52593961400015,-16.49806998599996],[36.43233454300008,-16.43773754999995],[36.31499460400005,-16.454456764999975],[36.268501528000115,-16.375602501999822],[36.27077855600004,-16.28398343899994]],[[35.60775366800016,-16.498284815999966],[35.629402615,-16.42911299299982],[35.74745568600002,-16.37411647599987],[35.78231065700015,-16.48277175699991],[35.74000166000002,-16.558647091999944],[35.651969716,-16.54589469699988],[35.60775366800016,-16.498284815999966]],[[35.641750585000125,-16.103707811999982],[35.7135814830001,-16.19053225899995],[35.66833848400006,-16.253328136999926],[35.461299608000104,-16.264407670999958],[35.452629535000085,-16.18059199199996],[35.641750585000125,-16.103707811999982]],[[39.09916666600003,-10.2725],[39.03416666600003,-10.259166665999885],[39.08083333400015,-10.090833332999978],[39.17750000000018,-10.002499999999884],[39.41083333299997,-10.118333332999953],[39.29083333300008,-10.19916666599994],[39.18416666600018,-10.211666666999918],[39.09916666600003,-10.2725]],[[36.43750000000017,-8.979166666999959],[36.486666667000065,-8.8475],[36.571666667000045,-8.683333333999883],[36.62916666700005,-8.644166666999922],[36.694166666000115,-8.670833332999905],[36.62166666600007,-8.77],[36.62583333300012,-8.96],[36.549166667,-9.0025],[36.43750000000017,-8.979166666999959]],[[36.854166667000015,-7.860833333999949],[36.81,-7.7875],[36.85916666700018,-7.691666666999936],[36.920000000000186,-7.749999999999886],[36.9175,-7.819166666999877],[36.854166667000015,-7.860833333999949]],[[36.870833333000064,-6.625833332999889],[36.86500000000012,-6.54],[36.77666666700014,-6.4225],[36.91083333300014,-6.331666666999979],[36.9525,-6.256666666999877],[37.03916666700013,-6.39333333299993],[37.03333333400019,-6.508333332999882],[36.9275,-6.528333332999921],[36.870833333000064,-6.625833332999889]],[[37.68666666700011,-6.83],[37.79583333400012,-6.835833332999925],[37.814166666000176,-6.929166666999947],[37.75,-7.008333333999872],[37.73833333300007,-7.191666666999936],[37.7025,-7.2525],[37.624166667,-7.278333332999978],[37.55083333300007,-7.203333332999875],[37.485833333000016,-7.258333332999939],[37.46333333299998,-7.153333332999978],[37.500833334000106,-6.984166665999965],[37.59,-6.953333332999932],[37.68666666700011,-6.83]],[[32.682500000000175,-2.448333333999926],[32.53833333300014,-2.496666665999953],[32.375000000000114,-2.41],[32.317500000000166,-2.3325],[32.315,-2.271666665999931],[32.22916666600008,-2.275],[32.159166667000136,-2.389999999999873],[32.066666667000106,-2.4275],[32.17166666700018,-2.508333332999882],[32.1325,-2.551666666999893],[32.038333333000026,-2.489999999999895],[31.940833334000104,-2.584166665999931],[32.00666666700005,-2.679999999999893],[31.9725,-2.709166665999817],[31.839166666999972,-2.675833332999957],[31.8475,-2.785833332999971],[31.784166667000136,-2.824166666999815],[31.783333333000087,-2.64333333299993],[31.745000000000175,-2.5525],[31.79666666700018,-2.478333332999966],[31.754166667,-2.401666666999915],[31.629166667000106,-2.335833333999858],[31.694166666000058,-2.13583333299988],[31.698333333000107,-2.035833333999847],[31.62750000000017,-2.036666666999963],[31.625833334000106,-1.953333332999932],[31.68666666600018,-1.889999999999873],[31.72583333300014,-1.6475],[31.763333333000162,-1.615833332999955],[31.74666666600001,-1.465],[31.8,-1.47],[31.820000000000164,-1.327499999999873],[31.865,-1.255833332999885],[31.87583333400005,-1.036666666999963],[31.764166667000154,-1.0225],[31.773333333000096,-0.868333333999885],[31.698333333000107,-0.828333332999819],[31.73000000000019,-0.73],[31.801666666000074,-0.648333332999869],[31.79,-0.574166666999929],[31.843333333000146,-0.4875],[31.92083333300002,-0.424999999999841],[31.989166666000074,-0.317499999999825],[31.98666666600019,-0.185833333999881],[31.92916666600007,-0.155833332999975],[31.990833334000172,-0.080833332999873],[32.08583333300004,-0.021666666999863],[32.1575,-0.069166666999934],[32.299166666000076,0.014166666000165],[32.45333333300016,0.0275],[32.57083333300011,0.101666666000085],[32.572500000000105,0.200000000000102],[32.683333334000054,0.21],[32.86083333300019,0.15083333299998],[32.943333333000055,0.079166667000095],[33.03333333300003,0.125000000000114],[33.131666667000104,0.215833333000035],[33.1475,0.30583333300018],[33.35833333300013,0.42000000000013],[33.434166666000124,0.223333333000085],[33.52083333300004,0.174166667000065],[33.626666667000165,0.23250000000013],[33.615,0.323333333000051],[33.7116666660001,0.3275000000001],[33.71833333300003,0.185833333000119],[33.9,0.1775],[33.93166666700017,0.233333334000179],[34.01,0.235],[33.98750000000018,0.1125],[34.00916666600017,-0.017499999999814],[34.079166667000095,-0.062499999999886],[34.14583333400009,-0.204166666999868],[34.2675,-0.265],[34.315,-0.365833332999898],[34.3875000000001,-0.304166665999901],[34.385833333000164,-0.234166665999965],[34.4583333330001,-0.159166665999976],[34.51083333300005,-0.1875],[34.67750000000018,-0.0925],[34.73833333400006,-0.115],[34.81916666600006,-0.26],[34.755,-0.285833333999904],[34.74000000000012,-0.35],[34.46250000000015,-0.345833333999963],[34.44916666600005,-0.408333332999973],[34.50500000000011,-0.485833332999903],[34.42333333400006,-0.533333332999973],[34.36833333300012,-0.478333333999899],[34.227500000000134,-0.424166666999895],[34.0925,-0.564166665999949],[34.05250000000018,-0.703333332999932],[34.08416666700009,-0.776666666999972],[34.18833333300017,-0.850833332999855],[34.12666666700011,-0.9725],[33.98333333300013,-1.16583333299991],[33.873333333,-1.236666666999952],[33.9,-1.289166666999904],[33.79833333300019,-1.34583333299986],[33.865833333000126,-1.412499999999852],[33.89833333300015,-1.525],[33.7375,-1.490833333999944],[33.695,-1.598333332999971],[33.703333333000046,-1.675833332999957],[33.54,-1.68333333299995],[33.568333333,-1.760833332999937],[33.503333334000104,-1.835833333999972],[33.37666666600012,-1.791666666999902],[33.32166666699999,-1.844166666999968],[33.318333333000055,-1.943333332999885],[33.4533333330001,-1.874166665999894],[33.575833333000105,-1.985],[33.490833333000126,-2.02],[33.420000000000186,-1.963333332999923],[33.35333333400007,-2.012499999999875],[33.235,-2.045833332999905],[33.354166667000186,-2.163333332999969],[33.46666666700003,-2.146666666999977],[33.60666666600014,-2.184166666999886],[33.753333333000114,-2.07],[33.81916666700016,-2.118333332999896],[33.84083333400008,-2.229166666999959],[33.53583333300003,-2.37],[33.42833333300018,-2.4775],[33.44583333300005,-2.535],[33.205833333000044,-2.520833333999974],[33.141666667000095,-2.4675],[33.10166666700019,-2.382499999999879],[32.98750000000018,-2.385833332999937],[32.87333333300006,-2.465],[32.89500000000015,-2.5325],[32.85833333400018,-2.636666666999872],[32.96583333300009,-2.824166666999815],[32.84666666700002,-2.845833332999916],[32.8125,-2.959166665999931],[32.75666666600017,-2.968333333999965],[32.76083333300005,-2.8475],[32.823333333000164,-2.843333332999919],[32.86333333300007,-2.779999999999859],[32.820000000000164,-2.7175],[32.83,-2.5125],[32.71333333300004,-2.506666666999934],[32.682500000000175,-2.448333333999926]],[[32.55333333300007,1.597500000000139],[32.526766581000174,1.661666667000077],[32.75416666700016,1.814166667000165],[32.78916666600003,1.77666666600004],[32.60500000000013,1.619166667000059],[32.55333333300007,1.597500000000139]],[[30.175,-1.8775],[30.263333333000105,-1.856666666999956],[30.28,-1.86],[30.175,-1.8775]],[[36.345,-7.180833332999953],[36.35250000000019,-7.125],[36.4575,-7.146666666999977],[36.43166666700006,-7.246666665999896],[36.345,-7.180833332999953]],[[35.68,-1.39666666699992],[35.7591666670001,-1.541666666999959],[35.85583333400018,-1.661666666999963],[35.94583333300005,-1.63],[35.9425,-1.719166666999968],[36.00416666700005,-1.789166666999904],[35.96083333300004,-1.9475],[35.833333334000145,-1.994166665999956],[35.80333333400006,-1.8975],[35.843333334000135,-1.833333333999974],[35.6275,-1.5525],[35.63083333300011,-1.44],[35.68,-1.39666666699992]],[[35.695,-2.007499999999879],[35.65,-2.170833333999951],[35.51666666700004,-2.0175],[35.63083333300011,-1.9075],[35.725000000000136,-1.941666666999936],[35.695,-2.007499999999879]],[[37.63166666600017,-3.71],[37.6175,-3.611666665999849],[37.6825,-3.572499999999877],[37.71083333300004,-3.6625],[37.63166666600017,-3.71]],[[36.837482551000164,-15.329210066999849],[36.963542518999986,-15.140885298999876],[37.051521489000095,-15.122067422999976],[37.20771758400019,-15.133223735999934],[37.25513451400002,-15.20016144699997],[37.257926525000016,-15.286621952999951],[37.377860496000096,-15.328457204999893],[37.37304660100011,-15.436593142999868],[37.31869850900017,-15.477292647999832],[37.171596611000155,-15.457970013999955],[37.05774656099999,-15.492432711999925],[36.93484858200003,-15.437929050999912],[36.837482551000164,-15.329210066999849]],[[33.93250000000012,4.059166667000056],[33.87083333300012,4.101666667000075],[33.80120129500017,4.037500000000136],[33.654220459000044,4.093133315000102],[33.54571554800009,4.110452003000091],[33.433261588000164,4.230096127000024],[33.372009490000096,4.227317191000111],[33.26842861200015,4.329694595000149],[33.3239865490001,4.37025881500017],[33.44299649800007,4.35898767000009],[33.33147460599997,4.471155137000039],[33.33537655000009,4.546047777000069],[33.46289061000016,4.561889406000091],[33.634868488000166,4.435569767000175],[33.75546245000015,4.497187316],[33.82916653600006,4.418339088000153],[33.897785489000114,4.241517141000145],[34.00333333300006,4.220833333000087],[34.065,4.146666667000147],[34.03166666700014,4.086666667000088],[34.03833333400007,3.995833333000121],[33.99250000000018,3.940833333000057],[33.93250000000012,4.059166667000056]],[[36.20250000000016,5.158333333000144],[36.11666666600013,5.130833333000112],[36.090000000000146,5.03],[36.13,4.955833333000157],[36.11416666700018,4.83500000000015],[36.07416666600017,4.743333333000066],[36.14583333400003,4.706666667000093],[36.22416666700008,4.507500000000107],[36.21,4.325000000000102],[36.2650000000001,4.155000000000143],[36.20166666600011,3.940000000000111],[36.29,3.75416666700005],[36.22833333300002,3.6075],[36.264166667000154,3.352500000000134],[36.315833333000114,3.190000000000111],[36.394166667000036,3.127500000000168],[36.41250000000019,3.028333334000024],[36.545833333000076,2.888333333000105],[36.68666666700017,2.8900000000001],[36.71916666699997,2.84],[36.7075,2.465833333000091],[36.641666667000095,2.394166667000036],[36.55333333300018,2.39333333400009],[36.517500000000155,2.550833334000174],[36.43833333400016,2.649166667000145],[36.44250000000011,2.701666666000051],[36.3925,2.8325],[36.275,2.901666667000029],[36.260000000000105,2.96],[36.150833334000026,2.96],[36.14916666700009,3.166666666000026],[36.023333334000085,3.292500000000132],[35.945000000000164,3.335833333000039],[35.9466666670001,3.458333334000088],[35.906666667000025,3.543333334000067],[35.83416666700009,3.615833333000126],[35.864166667,3.879166667000163],[35.85833333400012,3.975833334000072],[35.9325,4.13],[35.91833333300008,4.309166666000124],[35.9425,4.513333333000048],[35.99,4.7025],[35.99,4.838333334000083],[36.05,4.937500000000171],[36.01416666600011,5.03],[36.06083333400005,5.190833333000171],[36.20250000000016,5.158333333000144]],[[34.16583333300014,3.851666667000131],[34.11166666600019,3.785833333000085],[34.24250000000012,3.721666667000079],[34.11500000000012,3.666666667000186],[33.96333333300015,3.682500000000118],[33.94916666600017,3.775000000000148],[33.831666667000036,3.7875],[33.834166666000044,3.830833334000033],[33.966666667000084,3.822500000000105],[34.07250000000016,3.846666667000136],[34.11500000000012,3.856666667000127],[34.16083333300014,3.850833333000082],[34.16416666599997,3.850833333000082],[34.16583333300014,3.851666667000131]],[[34.28166666600015,3.61500000000018],[34.25083333400005,3.724166666000031],[34.361666667000065,3.690000000000168],[34.40583333300009,3.6325],[34.36750000000018,3.511666667000043],[34.26500000000016,3.556666667000115],[34.279166666000094,3.556666666000183],[34.325,3.585],[34.31416666700011,3.6125],[34.312500000000114,3.614166666000131],[34.290833334000126,3.616666666000015],[34.28166666600015,3.61500000000018]],[[34.805833333000066,1.8725],[34.85500000000019,1.7875],[34.81166666700011,1.730833333000078],[34.71416666700003,1.683333334000167],[34.626666667000165,1.703333334000092],[34.64166666700015,1.843333333000032],[34.7325,1.80916666700017],[34.805833333000066,1.8725]],[[35.69666666700016,10.396666666000044],[35.62333333400011,10.47833333400007],[35.6,10.634166667000045],[35.612500000000125,10.720833334000133],[35.72666666599997,10.74583333400011],[35.76333333400015,10.640000000000157],[35.8241666670001,10.556666666000012],[35.82,10.451666666000108],[35.69666666700016,10.396666666000044]],[[37.06916666700005,8.075],[37.02166666600016,8.1325],[37.065833333000114,8.203333334000092],[37.16583333400018,8.229166667000129],[37.1375000000001,8.03],[37.05833333400017,7.995],[37.00583333300011,7.921666666000135],[37.11416666700012,7.898333333000153],[36.89416666700009,7.65],[36.828333333000046,7.706666667000036],[36.76666666700015,7.674166667000179],[36.7225,7.586666666000042],[36.882500000000164,7.450833334000151],[36.85833333300019,7.38666666600011],[36.73,7.395],[36.555833333000066,7.4425],[36.4675,7.575833333000105],[36.35833333400018,7.546666667000011],[36.26166666600017,7.560833334000051],[36.220833334000076,7.620833333000178],[36.1341666670001,7.5775000000001],[36.05166666700006,7.623333333000062],[35.90416666700014,7.589166667000029],[35.86416666600013,7.469166667000138],[35.9625,7.463333333000094],[36.125,7.544166667000127],[36.0925,7.423333333000187],[36.03083333300003,7.390833332999989],[35.9625,7.294166667000184],[35.99,7.231666666000137],[35.888333333000105,7.215000000000146],[35.851666666000085,7.1400000000001],[35.738333334,7.085],[35.84916666700008,7.038333333000026],[35.84833333300003,6.900833333999969],[35.97166666700002,6.760000000000105],[35.902500000000146,6.730833333000135],[35.80500000000012,6.711666667000031],[35.744166667000115,6.859166667000125],[35.687500000000114,6.9125],[35.6366666670001,6.854166667000129],[35.5150000000001,6.915833333000023],[35.446666667000045,6.875],[35.17666666600002,6.784166667000136],[35.100000000000136,6.889166666000165],[34.938333334000106,6.965833333000091],[34.90750000000014,7.017500000000155],[34.81083333300006,7.010833334000097],[34.590833333000035,7.040833334000183],[34.415000000000134,7.16166666700002],[34.386666666999986,7.308333334],[34.411666667000134,7.4375],[34.5025,7.394166666000046],[34.62166666700017,7.448333333000164],[34.5575,7.545833333000189],[34.445833333,7.500000000000171],[34.365833334000115,7.564166667000052],[34.36750000000018,7.644166667000093],[34.43916666600006,7.645],[34.61916666600018,7.792500000000132],[34.68416666700011,7.880833333000112],[34.545833334000065,7.998333334],[34.51166666600017,8.1075],[34.530833332999975,8.1925],[34.598333333000085,8.19166666600006],[34.65916666700019,8.11833333300018],[34.926666666000074,8.25],[34.85666666600008,8.429166666000128],[34.90416666700014,8.562500000000114],[34.974166667000134,8.569166667000047],[34.90083333300004,8.759166667000159],[35.0125000000001,8.91],[35.1825,8.858333333000076],[35.2650000000001,8.905],[35.385833333000164,8.7825],[35.425000000000125,8.931666667000172],[35.49500000000012,8.988333334],[35.4625,9.11166666600019],[35.53166666600009,9.135000000000105],[35.537500000000136,9.278333333000148],[35.5150000000001,9.386666666999986],[35.46416666600015,9.448333333000107],[35.372500000000116,9.464166665999983],[35.39416666600016,9.566666667000106],[35.36750000000018,9.636666667000156],[35.428333333000126,9.694166667000104],[35.57333333400004,9.71666666700014],[35.624166667000054,9.47],[35.7225,9.360833333000016],[35.746666667000056,9.286666667000077],[35.870833333000064,9.20333333300016],[35.91083333300014,9.078333333000046],[35.84083333400008,8.956666667000093],[35.82583333300016,8.8675],[35.85916666700007,8.770833333000155],[35.96166666700009,8.78333333300003],[36.01000000000016,8.726666667000131],[36.08583333400003,8.728333333000023],[36.234166666000135,8.556666667000172],[36.27083333300004,8.585833334000142],[36.19083333300006,8.751666666000176],[36.30833333400011,8.810833334000165],[36.341666667000084,8.7683333330001],[36.30083333300013,8.684166667000113],[36.316666667000106,8.610833333000187],[36.508333333999985,8.379166667000106],[36.66333333300008,8.286666667000077],[36.6475,8.199166667000043],[36.528333333000035,8.089166667000086],[36.43,8.0625],[36.490833334000115,7.995],[36.515,7.8875],[36.60083333300014,7.810000000000173],[36.71666666599998,7.810833333000119],[36.839166667000086,7.862500000000125],[36.79166666700007,7.942500000000109],[36.871666667000056,8.145833333000041],[36.9325,8.243333333000066],[36.91500000000019,8.326666667000154],[36.95666666600016,8.440833333000057],[36.86000000000013,8.510000000000105],[36.9125,8.547500000000127],[37.05750000000012,8.461666667000031],[36.97083333299997,8.309166667000113],[36.87916666700016,8.089166667000086],[36.8625,7.961666667000145],[36.91666666600008,7.906666667000081],[36.96833333400019,7.9625],[36.99583333300012,8.08],[37.06916666700005,8.075]],[[36.71583333400014,7.138333333000162],[36.663333334000185,7.0675],[36.43166666700006,7.028333333000035],[36.37083333300018,6.918333333000135],[36.32916666700004,6.955833334000033],[36.326666666,7.064166666000062],[36.27666666700003,7.14666666700009],[36.30000000000018,7.219166666000092],[36.25166666700011,7.255],[36.28583333299997,7.365833334000172],[36.44250000000011,7.378333334000047],[36.500833334000106,7.405833333000146],[36.54333333300019,7.336666666999974],[36.68666666700017,7.278333332999978],[36.71583333400014,7.138333333000162]],[[36.125,6.871666666000067],[36.17333333300019,7.024166665999985],[36.07666666600005,7.09],[36.06666666700016,7.155833333000032],[35.99333333400017,7.160833334000074],[36.029166666000094,7.331666666999979],[36.09083333300009,7.396666666000101],[36.235833334,7.237500000000182],[36.20250000000016,7.141666666000162],[36.2375,6.9675],[36.125,6.871666666000067]],[[36.59916666700008,6.281666667000138],[36.581666667000036,6.3875],[36.6425,6.535],[36.75666666700016,6.6525],[36.80166666600013,6.528333333000148],[36.744166667000115,6.491666666000071],[36.688333334000106,6.3675],[36.630000000000166,6.365000000000123],[36.59916666700008,6.281666667000138]],[[35.10500000000013,6.663333334000129],[35.0225,6.698333333000107],[34.961666665999985,6.808333333],[34.9675,6.885000000000161],[35.065,6.905833333000089],[35.12000000000012,6.758333333000166],[35.10500000000013,6.663333334000129]],[[34.78416666700008,8.490833333000126],[34.71333333300004,8.49333333300018],[34.57916666699998,8.693333333000055],[34.591666667000084,8.7825],[34.65583333300009,8.80500000000012],[34.61833333400017,8.885000000000161],[34.53,8.9525],[34.54083333300014,9.03083333300009],[34.626666667000165,9.02],[34.66083333300003,8.960833333000096],[34.753333333000114,8.916666667000015],[34.79500000000013,8.991666666000128],[34.870000000000175,8.985],[34.905,8.880833333999988],[34.785,8.73333333300019],[34.8900000000001,8.713333333000037],[34.90083333300004,8.627500000000111],[34.785,8.611666666000133],[34.78416666700008,8.490833333000126]],[[33.22775660100018,4.121467165000013],[33.098281510000106,4.042055002000097],[33.02204156300013,4.120126228000174],[32.98479054100011,4.2546482300001],[33.05218556900007,4.37905193500012],[33.18755347300015,4.372329648],[33.22349155300009,4.279981358999976],[33.22775660100018,4.121467165000013]],[[32.798591591000104,4.05909960300005],[32.84258652400007,4.122408956000072],[33.055843599000184,4.019376758000078],[33.1001734730001,3.891041103000134],[33.03333333400013,3.8275000000001],[32.96666666700014,3.855000000000132],[32.961666667000145,3.745833334000054],[32.79750000000013,3.75333333400016],[32.76922257500013,3.894702821000067],[32.620037607000086,3.951586607000024],[32.55516452600017,4.013014223000027],[32.54720658000019,4.088487729000121],[32.61207161400006,4.107225305999975],[32.74674951900005,3.993179622000184],[32.798591591000104,4.05909960300005]],[[33.51416666600011,3.75333333400016],[33.43879485800005,3.755],[33.42112761000004,3.872041507000176],[33.49093260300015,3.863316448999967],[33.561666666000065,3.801666666000131],[33.51416666600011,3.75333333400016]],[[31.297222578000174,2.194558651000079],[31.356109471000025,2.250387155000112],[31.405830585000103,2.038179997000043],[31.412776501000167,1.92180079200017],[31.375831586000174,1.826252125],[31.292221599000186,1.699317589000145],[31.19832953100007,1.615712799000107],[31.050830499000085,1.580992441000092],[30.939720493000152,1.507109820000039],[30.822923534000154,1.330693892],[30.70581057700008,1.266269746000035],[30.702220608000175,1.154913145000023],[30.588333510000155,1.022423083000035],[30.494441610000024,1.045477508000033],[30.505275555000026,1.205465409000169],[30.392497549999973,1.25546178500008],[30.496108602000106,1.502665232000027],[30.6411094930001,1.644321575000049],[30.81638749300015,1.790699780000125],[30.90388852800004,1.895135946000153],[30.988609452,1.928744193000114],[31.05611059500012,1.997350238000138],[31.14055257000001,2.03651434600016],[31.297222578000174,2.194558651000079]],[[34.2725,1.945833334000156],[34.21916666700014,2.090833334000024],[34.25416666700005,2.134166667000102],[34.3425,2.139166666],[34.3841666670001,2.0825],[34.27500000000015,2.020833333000098],[34.2725,1.945833334000156]],[[36.77416666700003,2.2650000000001],[36.88166666700005,2.253333333000171],[36.92666666700012,2.135833333000164],[36.892500000000155,2.016666667000152],[36.807500000000175,2.066666667],[36.77416666700003,2.2650000000001]],[[36.9533333330001,-3.035],[37.05666666600007,-3.064999999999884],[37.020833334000145,-3.204166666999924],[36.924166667000065,-3.169166666999899],[36.94000000000011,-3.039166665999915],[36.9533333330001,-3.035]],[[38.13250000000011,-0.71],[38.23083333300008,-0.684166666999829],[38.21083333300015,-0.784166666999965],[38.182500000000175,-0.791666666999845],[38.156666666000035,-0.9675],[38.17083333300002,-1.1675],[38.1408333330001,-1.191666666999879],[38.150833333000094,-1.307499999999891],[38.10083333400013,-1.317499999999882],[38.06666666700016,-1.225833333999958],[38.090833333000035,-1.125833332999946],[38.0825,-1],[38.125,-0.9675],[38.04250000000013,-0.781666666999968],[38.06666666700016,-0.7],[38.13250000000011,-0.71]],[[38.280833333000146,-0.9475],[38.33250000000015,-1.06],[38.24083333400017,-1.1075],[38.280833333000146,-0.9475]],[[38.358333333000076,-1.284166666999852],[38.48166666700007,-1.290833333999899],[38.510833333000164,-1.239999999999895],[38.616666666000185,-1.244166666999945],[38.5225,-1.395833333999917],[38.40083333300004,-1.475833332999912],[38.32333333300011,-1.481666666999899],[38.26666666700004,-1.441666665999946],[38.2125,-1.415833332999966],[38.22,-1.289166666999904],[38.30833333300018,-1.2575],[38.358333333000076,-1.284166666999852]],[[35.8366666660001,0.778333333000035],[35.84833333300003,0.641666667000152],[35.808333334000054,0.539166666000028],[35.8241666670001,0.430000000000121],[35.7641666670001,0.418333334000067],[35.70583333400003,0.543333333000078],[35.8366666660001,0.778333333000035]],[[36.92333333300019,0.888333333000162],[36.825833334000095,1.038333333000139],[36.68666666700017,1.074166666],[36.6175,1.116666667000118],[36.60416666700007,1.2675],[36.709166667000034,1.294166666000024],[36.75,1.23],[36.874166666000065,1.1775],[36.930833333000066,1.0825],[36.95083333300005,0.919166666000024],[36.92333333300019,0.888333333000162]],[[37.220833333000144,1.26833333400009],[37.27250000000015,1.351666667000075],[37.3325,1.3475],[37.35,1.200000000000102],[37.235833334000176,1.217500000000143],[37.220833333000144,1.26833333400009]],[[37.2575,1.60750000000013],[37.196666667000045,1.698333333000051],[37.24333333300018,1.746666667000056],[37.31833333300017,1.683333333000064],[37.2575,1.60750000000013]],[[35.42583333300007,1.585833333000039],[35.30250000000012,1.64666666700009],[35.357500000000186,1.734166667000181],[35.419166667000184,1.752500000000168],[35.4625,1.677500000000123],[35.42583333300007,1.585833333000039]],[[35.245000000000175,1.880833333000055],[35.106666666000024,1.951666666],[35.13750000000016,2.115833334000115],[35.10333333400007,2.230000000000189],[34.983333333000076,2.335833334000142],[34.98083333300019,2.445833333000166],[35.19000000000011,2.445833333000166],[35.287500000000136,2.175000000000125],[35.309166667000056,2.034166667000022],[35.245000000000175,1.880833333000055]],[[37.81,3.469166666000092],[37.83666666600004,3.42],[37.725,3.310000000000173],[37.68333333400011,3.35333333300008],[37.745,3.446666667000159],[37.81,3.469166666000092]],[[43.96093987127,3.759082224425697],[44.0539167306805,3.758969099473461],[44.25639933037883,3.674411392339437],[44.31560677641346,3.54657697449619],[44.314640216761404,3.415563673370286],[44.279745362988535,3.265700977072015],[44.364351202420664,3.124955703828334],[44.35166820565371,2.979456335358407],[44.28484554481844,2.921904824651619],[44.05988968949055,2.893185829174058],[43.932077402425534,2.958526607843737],[43.8081415398085,2.972364510584214],[43.73799938530891,3.050377843024478],[43.711536407278174,3.154861273625272],[43.72630471549809,3.255410284344919],[43.582024902275634,3.412820379467519],[43.59893986388056,3.513450013083968],[43.69694807350339,3.634392725170585],[43.96093987127,3.759082224425697]],[[43.433745990858256,3.022471258466794],[43.354613276416615,2.871550428293801],[43.24354911995084,2.768197267512278],[43.1670902628091,2.735446732977778],[43.06775225835372,2.800799268320077],[43.064720811068696,2.899263748106137],[43.155886092368405,3.041915725475576],[43.35075527936323,3.15525566403835],[43.42469893056085,3.136575895003887],[43.433745990858256,3.022471258466794]],[[86.63906859200017,50.23011893100005],[86.8523865200001,50.110465586000146],[87.02208753700012,50.06947992400006],[86.81393453900012,49.989579767000066],[86.7658006210001,49.88848965600005],[86.7880096470002,49.799632430000145],[86.57738465800003,49.78140531100007],[85.96972651700008,49.75536173200004],[85.61381565300019,49.816130530000066],[85.36206854300008,49.981069788000184],[85.28394350600007,50.07655609400001],[85.20581863600017,50.24149434700013],[84.86726350800006,50.415115748000176],[84.60684163200006,50.475880523000114],[84.2769696530001,50.51060607700009],[84.21482052300007,50.43354386500016],[84.0118106600001,50.34355877000007],[83.91220850500014,50.339266565000116],[83.71465257900013,50.38836239000011],[83.51653255100018,50.333857388000126],[83.53687258000014,50.209145733000014],[83.69458764400002,50.138312951000046],[83.70253754400005,50.035192408000114],[83.8137125930001,49.98909579600007],[83.97113764300019,50.0355134350001],[84.13353752000006,50.16863331200011],[84.32396664900006,50.115115531000015],[84.63844258100016,50.104804449000085],[84.73454260900019,50.00521302200008],[84.75118253100015,49.87484023000013],[84.85768165200005,49.7588298280001],[84.98062858100013,49.669808819000195],[84.81764951500003,49.581478815000025],[84.68340260600007,49.67211686000013],[84.571197589,49.69924019600006],[84.42736865600017,49.84202876700016],[84.30323753200008,49.876072368999985],[83.81591049600013,49.87504927400016],[83.63211866000017,49.90844076500014],[83.4111326330002,50.01103425399998],[82.99376666000018,50.042864364000195],[82.91206355600013,50.08730202900017],[82.91546660900008,50.21125478700009],[82.77419264800005,50.35443781000015],[82.9152835480001,50.427047723000044],[82.93723256700014,50.50503982300012],[82.69912750800017,50.784882904000085],[82.83891250800019,50.9182049530001],[83.06792454300006,50.94470652000007],[83.27751151700005,51.088709628000174],[83.24194358200009,51.20383154800004],[83.02945764200007,51.306391174000055],[82.94835652600011,51.369094180000104],[83.06368262900008,51.4171332140001],[83.28072363000013,51.417213177],[83.43988054900012,51.370051226000044],[83.60077654500014,51.27749070700003],[83.83145155000011,51.21083881900012],[84.19833365500017,51.24962724900013],[84.41300961800016,51.30317135000007],[84.52467350000006,51.40542587500016],[84.63713064500018,51.612907483000185],[84.73934158400016,51.67965760700008],[84.885772595,51.69958994000018],[85.271293538,51.63897302200007],[85.39138056200005,51.57686462800007],[85.68379264200013,51.308161432000134],[85.75202954800011,51.16741888400014],[85.94254266400003,50.85950313300003],[86.3213725010001,50.44811714499997],[86.63906859200017,50.23011893100005]],[[87.2758176370001,49.10760020700013],[87.3049465950001,48.91609216000006],[87.41565661600009,48.843883405000156],[87.9548035950001,48.728354460000105],[88.29084063200008,48.727606291000086],[88.42018161200019,48.7948641910001],[88.43569953200017,48.88798897900011],[88.39430952700008,48.97076479900011],[88.42018161200019,49.15183972400007],[88.47191656300015,49.301873277000084],[88.52882365000016,49.35878120300009],[88.69954659000007,49.374300129000176],[88.84857951000004,49.420560691000105],[89.36006151500004,49.40678670900019],[89.62136064100014,49.48671653800011],[89.65328965800006,49.684206079000035],[89.85115051700018,49.60625907399998],[90.01620460800007,49.567016679000176],[90.14050253200014,49.44015808300014],[90.12619060000009,49.397371485000065],[90.35880266300012,49.144030808000196],[90.58031457100003,49.13844259300015],[90.78758260800004,49.203636366000126],[91.04930166800011,49.1867443160001],[91.18947558700006,49.09652922200007],[91.37321461600015,48.877734727000075],[91.49098957600017,48.76207955000007],[91.50154859500014,48.572648034999986],[91.43656152,48.491772225000034],[91.18743157600011,48.34802895600018],[91.13345362900014,48.27921520700016],[91.28591156300013,48.079933615000186],[91.38484165700004,47.90567334400009],[91.43266259400019,47.869421781000085],[91.94166556700009,47.62402815400014],[92.06483461699997,47.50938031500016],[92.08615164100001,47.41519873600015],[92.05090355900018,47.28650886200012],[92.0794146020001,47.24646951600016],[92.31144764300018,47.12151897700005],[92.39793362900019,47.101315740000075],[92.59176664900019,47.179742358000055],[92.6930545730001,47.18038323900009],[93.04484556400013,47.037850316000174],[93.36682162300008,46.84778965600003],[93.36173263400008,46.7823412410001],[93.21614853100016,46.78406104000004],[93.08467066800011,46.84747349000014],[92.83353460000018,46.922302763000175],[92.74374362900016,46.862243410000076],[93.09159060000019,46.633315361000086],[93.2562175490001,46.56237311200016],[93.37711359400015,46.47139593500009],[93.5815125060002,46.46739776700019],[93.4875025880001,46.60027926300012],[93.455963666,46.774214986000175],[93.54978951700008,46.823341488000096],[93.86468454300007,46.68604574600016],[93.99472055100011,46.59017823200003],[94.00510355000006,46.50072002300004],[93.91964753200017,46.367177362000064],[94.04146558700012,46.20902375700018],[94.30271157200002,46.008297293],[94.69187964900004,45.889210062000075],[95.01139863600008,45.85885701100017],[95.17227166600014,45.91292213100013],[95.28081563600006,45.91550912100013],[95.41068266400009,45.97776805400008],[95.54271658300013,45.952481026000044],[95.78490463400004,45.87122786200007],[96.071205637,45.896626035],[96.20712255500007,45.88599778100013],[96.41653451600001,45.78306985400013],[96.60819964000007,45.76625072700017],[96.80750252200016,45.77830155700019],[96.94299364000017,45.70111043200018],[97.2384875790001,45.577182149000066],[97.36701953800014,45.507041042000026],[97.49642153900015,45.47858029000008],[97.65425864300005,45.481387221000034],[97.86775158400019,45.425666173000195],[98.1861495760001,45.27635882900012],[98.45501655500016,45.112349962],[98.44121558400019,45.018481866000116],[98.22773756200013,45.01626082900009],[97.89564555200013,45.14787984300017],[97.64945262700013,45.21678093200012],[97.53547651300005,45.22094975500016],[97.4533085490001,45.11310466800012],[97.33284752400016,45.10983170300011],[97.16466564300009,45.187308986000176],[96.93168662100015,45.20682490700017],[96.85882558600008,45.2387958330001],[96.758293542,45.38155288700017],[96.68626365699998,45.43757601900012],[96.3083345390001,45.575313152000035],[96.08541866200017,45.69112758500012],[95.92913053400014,45.711982430000035],[95.59662663700004,45.67819564900003],[95.41126252400011,45.678512653000155],[95.32525665400004,45.59172843900012],[95.15609761000002,45.51683714000018],[94.911910642,45.47922502600011],[94.63951152900012,45.50458531200002],[94.34405564500003,45.51232516100015],[94.27531465100009,45.48646112300014],[94.1263276630001,45.50290205800019],[94.05622058600017,45.57125429900003],[93.87096359500003,45.57451234500013],[93.62071952800005,45.65237050300004],[93.31897755200015,45.82055272000014],[93.23344458800011,45.78471756900012],[92.67355357200012,45.95833612000007],[92.3340836430001,45.92182991500016],[92.10068552600006,45.96672506400017],[91.70377357600017,46.11195042200018],[91.54824065700006,46.218949775000056],[91.47216063700006,46.15737279300009],[91.50533252100007,46.050988337000035],[91.12875356000006,46.01644232299998],[91.03105158200015,46.027707433000046],[91.02221655300019,46.12840745100016],[90.86763766200016,46.361585459000025],[91.11715652700019,46.48994273900007],[91.21002952300017,46.646372690000135],[91.10615561400004,46.93584892500007],[91.02235451900009,47.24849156700009],[91.11788960800016,47.23852364000015],[91.30590055800019,47.06521773300017],[91.47364758600008,46.88011580600005],[91.64641554200006,46.72267885400004],[91.68926953100015,46.52350907700003],[91.8512875290001,46.397062535000146],[91.85466761500015,46.25412912500008],[91.96634658400018,46.26629797200019],[92.1723256520001,46.40083556500008],[92.32334860500009,46.393568621999975],[92.40898164800012,46.35699234400005],[92.53221859100006,46.46043290800009],[92.72018461400017,46.41117665400009],[92.98567955300007,46.23148893400008],[93.35195162300005,46.11150064900016],[93.44093357200006,46.15916182700016],[93.24157754900006,46.350458315000026],[92.83879860200011,46.54433307700009],[92.57355461700018,46.656840681],[92.44080354300007,46.73138798700006],[92.08870661300006,46.87332545900017],[91.96115164800005,46.99284821300017],[91.80226865000014,47.181535414999985],[91.7853546400001,47.291808069000126],[91.83687551700012,47.50843416600014],[91.66533651499998,47.66430051700013],[91.56739766500004,47.706052788000136],[91.4392395380001,47.71189262800016],[91.33013163400011,47.52672230500008],[91.26760062500017,47.50776646300005],[90.95687056600008,47.57308965200008],[90.84216355000007,47.55345152300015],[90.78857452300014,47.447895032000076],[90.82719464400003,47.32656430100013],[90.78301966800018,47.300200030000155],[90.63762650400014,47.51057825600009],[90.40234363200017,47.64857237800004],[90.19307751700018,47.66941951300004],[89.9590455600001,47.64188512800007],[89.6974795540001,47.32525119200011],[89.61473055600004,47.09355275700017],[89.41046156400006,47.140806071000156],[89.21697253700006,47.27705273400005],[88.92263764800009,47.43830077000007],[88.716026585,47.50748047300016],[88.28043366100013,47.62413527500007],[88.03870359600006,47.71711874400006],[87.86786666300009,47.73775683400004],[87.78201250500013,47.86906286800013],[87.41448264700017,48.110260681],[87.09288762900007,48.36294103200015],[86.75134250900004,48.66946186700011],[87.02638259200012,48.77881586400014],[87.13502463000015,48.8439975660001],[87.16979259700014,48.97871503500011],[87.14371465200009,49.08735522900014],[87.2758176370001,49.10760020700013]],[[80.06822965100014,42.78481497400014],[80.23654162000014,42.745237303000124],[80.31404857600012,42.673242622000146],[80.17491954400003,42.656500609000034],[79.84998350000018,42.670763423000096],[79.70458949900018,42.73134429900006],[79.65493761900012,42.837189631000115],[79.84893056500005,42.83154458700005],[80.06822965100014,42.78481497400014]],[[78.99893165400005,42.809353666000106],[79.15850850600003,42.69868236900015],[78.81647455300015,42.60127107500017],[78.59294864200012,42.4485008310001],[78.21269254000009,42.32579865400004],[78.1255495800001,42.21841138600007],[78.03032663400012,42.202237665999974],[77.92871064200006,42.126108192000174],[77.72239663300007,42.13117807000009],[77.58004761000012,42.03731383000013],[77.18176253700005,42.02106383400013],[77.27966350100007,42.08820941700009],[77.46909350700003,42.11086117500008],[77.74192864700007,42.21986849600006],[78.05750260800016,42.32475695100004],[78.19335163300002,42.40767610100016],[78.85439260700008,42.675077588000136],[78.794731561,42.762216189000185],[78.49427050700007,42.75256526600009],[78.34147662600009,42.84464349000001],[78.61298356900005,42.80494495200003],[78.70809151600014,42.859364626],[78.501830648,42.96279580300006],[78.20172163400008,42.960144942000056],[77.84454359400007,42.998058805000085],[77.61126751699999,43.066265536000174],[77.64076259600017,43.15365190600005],[77.77030155699998,43.17353394800017],[77.84426162600005,43.26970254100013],[77.75498161700006,43.31916331300016],[77.59266656500017,43.255991591000054],[77.30703762400003,43.20797284100013],[77.13120256100018,43.1961439640001],[76.83447262800013,43.10344313200011],[76.5279236290001,43.04451349200019],[76.41042359600004,43.08707428100013],[76.48947852200018,43.14551509000006],[76.74257662600013,43.169674081000096],[76.93187755100018,43.207881646000146],[77.07479855600008,43.26422446400011],[77.40795858800016,43.36192225100007],[77.64453160200009,43.395484062000094],[77.83634156600004,43.40168197600008],[77.9224396370002,43.351992210000105],[77.97712753200005,43.17799278500007],[77.925750489,43.075973289],[78.02660356000013,43.03393569700012],[78.10472055100018,43.05581263200003],[78.25801851900002,43.034313554000164],[78.3672335440001,43.06645245300007],[78.5733566130001,43.055748595000125],[78.70099657000003,43.02566577599998],[78.8650585790001,42.94350502000009],[78.99893165400005,42.809353666000106]],[[71.49510156100001,39.14623348400005],[71.51101661600012,39.047217223000075],[71.66414661100004,39.087060600000086],[71.91870149000016,39.028285354000104],[72.03211249600008,39.117669969000076],[72.08090958900016,39.069131709000146],[72.18137357200004,39.11624722500011],[72.21182251200014,39.01976364100017],[72.452354635,38.91685499200014],[72.46015952800019,39.00043497200005],[72.6221775250001,38.9126861690001],[72.70333060900009,38.83868636900007],[72.69915055400014,38.76045152800003],[72.50691965100015,38.73034306200003],[72.53706348900005,38.58466156100019],[72.61476859300006,38.55026910300006],[72.50446358600004,38.39932058200003],[72.29840053100008,38.414720150000164],[72.27550452400004,38.34331756700004],[72.06757364600014,38.41911025600018],[72.03269151800004,38.469471412000075],[71.90007757200004,38.46466858200006],[71.90605152200015,38.527728322000144],[72.01416063900018,38.53068143400003],[72.21582755300017,38.57446564600008],[72.12729655000015,38.7318801350001],[71.95081356700018,38.71500032300003],[71.90303755700006,38.66766821900006],[71.62139152900005,38.61462183600008],[71.44679263000017,38.44570285000009],[71.29292251300018,38.50327680100003],[71.38247661000008,38.60177405400003],[71.52238448800011,38.60873204000006],[71.53291350000018,38.68631074500013],[71.34974661900014,38.70501362100009],[71.29228951099998,38.76041749800004],[71.37088058200004,38.810213714000156],[71.45023356900003,38.76003176300003],[71.74379749000019,38.68380371800009],[71.9316936080001,38.768405452000025],[71.87487754800009,38.8387314630001],[71.59678662000005,38.873944677000054],[71.58381663000017,38.959610577000035],[71.47744759700004,38.922299206000105],[71.35450754000016,38.94910855500012],[71.35484348700015,39.05951599000008],[71.46368451199999,39.062948715000175],[71.49510156100001,39.14623348400005]],[[72.74137858200004,36.967462525000144],[72.79028363499998,36.87899036400006],[72.87100253600005,36.91444665200004],[72.94910460700015,36.813111790000164],[72.72155756000012,36.77407257300007],[72.61393761200014,36.77733045100018],[72.54777556200008,36.715842653000095],[72.37254349400013,36.74416191900008],[72.33233651000012,36.62695055800009],[72.27191958400005,36.56735070000008],[72.26417554400007,36.46802196300018],[72.14955855000005,36.48998254900016],[72.02822849000006,36.472317856000075],[71.98945648800014,36.40212461300018],[72.02613049900009,36.34044973100009],[71.93421153200006,36.1891850450001],[71.86254860600013,36.17300746900003],[71.7695926290001,36.22274635300016],[71.75086963700011,36.329815108000105],[71.70557349700005,36.37055115700008],[71.82494353300007,36.487938538000094],[71.89969653100002,36.47327490100014],[71.91219361300006,36.57720748300005],[71.97610461900018,36.58750347800009],[72.15952262100012,36.71502273500016],[72.15953854700007,36.76322756300016],[72.49036455400005,36.825692356000104],[72.53884850000009,36.92238850600012],[72.67668152100009,36.88898410700011],[72.74137858200004,36.967462525000144]],[[70.18646955100013,35.266207082000165],[70.04549448900002,35.27260398300018],[70.01432051400008,35.337654425000096],[70.05575561400002,35.48225063700011],[70.20268249800017,35.51365293400016],[70.18327353100017,35.35049483000017],[70.37607557700011,35.359214691000034],[70.454872507,35.33159330300009],[70.50433361500006,35.23610180000003],[70.5704425240001,35.26777902400005],[70.65795864500018,35.40259472800011],[70.66145356400006,35.534598303999985],[70.7515186220001,35.532084404000045],[70.87190253300002,35.633313151000095],[70.93858359000018,35.6020069110001],[70.80510765000008,35.37385552900014],[70.64378350600015,35.26986494500005],[70.6143345270001,35.071655063000094],[70.69528158399999,34.968267640000136],[70.69421356200013,34.88941957900016],[70.54181664800018,34.960771871000134],[70.54356360400016,35.10698210200019],[70.46316556200009,35.13306239400015],[70.44720457500011,35.00021476100011],[70.36874359100005,34.93762843100012],[70.36349450799997,35.140657069000156],[70.33128352400007,35.227286888000094],[70.18646955100013,35.266207082000165]],[[50.971967513000095,25.63340234700007],[50.971220453000115,25.633176444000128],[50.97570267300006,25.635434837],[50.975951535000036,25.636337910000066],[50.980434772000194,25.633629484000096],[50.97420943800006,25.630693665000138],[50.97296402100011,25.63182222900008],[50.971967513000095,25.63340234700007]],[[50.97968830500014,25.6297914970001],[50.97993733500016,25.62979153100008],[50.97943935200004,25.629339947],[50.97968830500014,25.6297914970001]],[[58.431209584000044,45.179159933000165],[58.49444953500017,45.318069023000135],[58.57434047200013,45.411399],[58.688285572000154,45.788921764000065],[59.002059604000124,45.962220294000076],[59.181980508000095,45.936196161000055],[59.29645953600004,45.97961810800007],[59.28602557500011,45.75429981000019],[59.554420485000094,45.79771069200001],[59.6150585260001,45.98822129299998],[59.58224153100002,46.040249443000164],[59.64105952500017,46.152897528000096],[59.59085058400012,46.26556220900011],[59.74675750300014,46.23956104200005],[59.89221956600011,46.08364942900005],[60.12795656900005,46.14429166000019],[60.34267863300016,46.05764038300009],[60.465766546,46.118290493000075],[60.51581556000008,46.06626251200004],[60.72555558900018,46.10089251200003],[60.90563960500015,46.04887022999998],[60.93346048300003,45.97961123500011],[60.81898849600003,45.806320751000044],[60.88143954200001,45.641639487000134],[60.845001565000075,45.528980338],[60.90563960500015,45.38169018300016],[60.95929753200005,45.00048776400001],[61.06333958100004,44.76637969900003],[60.69953162300004,44.66249774400018],[60.68048861000017,44.532458886000086],[60.5610355930001,44.41979923400004],[60.54364062900004,44.3251184290001],[60.44655958300007,44.33316036300005],[60.31848963400006,44.211879420000116],[60.28205148900008,44.1338507750001],[60.16257852300009,44.08182882800014],[59.92866860700008,43.90853935000018],[59.634258616000125,43.899910181],[59.60826147300003,43.96056397900014],[59.31204954100008,43.94316113600007],[58.948219622000124,43.99517084600012],[58.81834052300002,44.09061473900016],[58.62963052300012,44.09059864600016],[58.489150496000036,44.05582497900019],[58.31602060900002,44.29853036200012],[58.29182859300016,44.39377912500015],[58.34085853500005,44.572478954000076],[58.29209849,44.72473773400009],[58.28556848500017,44.84405781400005],[58.340339528000186,45.02770866500015],[58.42467455000002,45.097380721000036],[58.431209584000044,45.179159933000165]],[[69.14208961100019,34.125783943000044],[69.17337053800014,34.26539392800004],[69.30969263800017,34.41209517100003],[69.4318615590002,34.440396332000034],[69.60413364200014,34.338878241000145],[69.64640056200017,34.214259457000026],[69.77438350600016,34.21000564100012],[69.88571948800012,34.165962931000024],[70.0345685100001,34.181739517000096],[70.14823164300014,34.11845598000008],[69.970573517,34.090284906000136],[69.78274562800016,34.127499718000024],[69.73207048600017,34.07251627800008],[69.82621753100017,34.0112621670001],[69.77645853000007,33.85780427200007],[69.69301551100006,33.879387840000106],[69.56616261400006,33.99113570900016],[69.50193762200018,33.84213799200006],[69.62859354400013,33.80485495200003],[69.64431749100004,33.75005742100012],[69.54956057900012,33.644836541000075],[69.54557749800017,33.53141681800008],[69.42903149300014,33.471985604],[69.42253149500004,33.349804948000155],[69.31101949300006,33.23485636600009],[69.3194195010002,33.16667042200004],[69.41503153600007,33.17742406800005],[69.48133859200004,33.13463545800016],[69.34369651000009,32.954899794000085],[69.30915854300014,32.87092955300011],[69.22174853600012,32.86646266900016],[69.14249462400005,32.7665815630001],[69.22607460400013,32.72925577500013],[69.20148461500008,32.637362791000044],[69.08032252800007,32.58621340000019],[68.83699755500004,32.754551185000025],[68.78460663700002,32.7280967260001],[68.76447263500017,32.556295035000176],[68.503707603,32.26940931100006],[68.31352959600002,32.20932129100004],[68.25674454900019,32.29142270400007],[68.41371949100017,32.35788046700003],[68.52864058,32.488815183000156],[68.59506951000014,32.66373678499997],[68.66863261300017,32.76610178300001],[68.7209856450001,32.93864242200016],[68.84913656200018,33.093388783000194],[68.90694453700013,33.236221275000105],[69.114715488,33.57537235600006],[69.16034656900018,33.68587316500009],[69.04352563800012,33.74530454700016],[68.85279056900009,33.705217760000096],[68.64684251400018,33.62829183700018],[68.63439957900016,33.71481855899998],[68.87968457600016,33.79296807200012],[69.04533361400019,33.92016579900019],[69.14208961100019,34.125783943000044]],[[67.26853157500005,30.573548126000162],[67.48371162600017,30.762538250000034],[67.72196152400011,30.71657474300008],[67.83654750500011,30.762572279999972],[67.94101753500007,30.72114455600007],[68.04996450600004,30.712459899000123],[68.00151861500018,30.624369114000103],[68.00373059900005,30.511523383000053],[68.1601255130002,30.417776490000108],[68.16939556200009,30.33479062000015],[68.10848259599999,30.269373050000013],[67.9107665750002,30.203152494999983],[67.78177662900003,30.091953641000032],[67.71711762200005,30.00749188500015],[67.64853655500013,30.05522011800008],[67.52119449100007,30.02641017600007],[67.37068954000011,30.128085343000123],[67.27217854100019,30.075711189000117],[67.28398864200011,30.003429847000177],[67.22296855500014,29.937430406000146],[67.1137315690001,29.924872974000095],[67.04203059000014,30.016759420000028],[66.94515255300013,30.046778200000062],[66.95668756100008,30.109385988000042],[67.059715568,30.246744929000158],[66.93678255200007,30.302944752000087],[66.94856247899997,30.36827028800002],[67.08467050500008,30.407600860000173],[67.26853157500005,30.573548126000162]],[[56.545627541000044,27.721446815000036],[56.45938848600014,27.663496348000024],[56.17464450600016,27.65632261200011],[56.04420063500004,27.578174776000083],[55.88644449999998,27.609367693000024],[55.80073954000011,27.661508328000025],[56.0622515660001,27.789375937000102],[55.960174570000106,27.88081998600012],[55.9851075470001,27.947843193000097],[56.11038548300007,27.89331254300015],[56.345802634000165,27.82714144000016],[56.51865357000014,27.80984806500004],[56.545627541000044,27.721446815000036]],[[70.62026254500012,20.92806817600018],[70.58766163500013,21.0695915820001],[70.64172356900019,21.237001323000072],[70.6080325100001,21.35240688600004],[70.41548963200012,21.47102037200017],[70.4143066100001,21.587763016000054],[70.44986750500016,21.652380282000024],[70.54049649800004,21.6953281480001],[70.6195375100001,21.69320735900004],[70.85620155200007,21.522247547000063],[70.92696359000007,21.37061573300008],[70.84400152400013,21.254231163000156],[70.90450260400007,21.217414156000075],[71.03997762900008,21.266109661000144],[71.16076655400013,21.23443227000007],[71.2329716210001,21.16509699900007],[71.2641826430002,21.045422867000127],[71.21280660600007,20.964327283999978],[71.10616264600003,20.88355188800017],[70.78045664000007,20.830325630000118],[70.68180063400013,20.85332356000015],[70.62026254500012,20.92806817600018]],[[66.88284249100008,30.2123851610001],[66.91451250600005,30.13917594200018],[66.84664155400003,29.994406393000133],[66.77787759400013,29.98715034700018],[66.83258862300016,30.19312589500015],[66.88284249100008,30.2123851610001]],[[67.29315961800006,29.83264018800014],[67.34470362900004,29.870448774000067],[67.45324759900012,29.821610776000057],[67.51349655100017,29.67693627799997],[67.48895249399999,29.57800987100012],[67.40116161400005,29.616048457000147],[67.3674165750001,29.680217122000045],[67.43318953700015,29.734544092000135],[67.29315961800006,29.83264018800014]],[[74.06915251300006,45.41031991400013],[74.05325355100013,45.33995014900012],[74.15345752700011,45.28316091100004],[74.13720652600011,45.07712870100016],[74.01696762200015,45.08317088000018],[73.97444958000011,45.20790801600015],[73.87072755100013,45.21509901900015],[73.82195258600007,45.297160868000105],[73.71800256900008,45.34563006200017],[73.61653862600002,45.49169528600004],[73.51702850300006,45.5610883920001],[73.44410661600011,45.560081222000065],[73.42389650700011,45.660209426000165],[73.51773861800007,45.66402453300009],[73.66754150100002,45.996422147000146],[73.62313049000011,46.13810061900017],[73.86509658800003,46.20259198800011],[73.95485654600003,46.25721886200017],[74.07189155100019,46.43361065000016],[74.2220225010002,46.451730649000126],[74.38780950500012,46.51979287600011],[74.392196593,46.56347533200005],[74.53930653800006,46.59670136400007],[74.55211660100014,46.70553166000002],[74.62165052300014,46.767753041000105],[75.00939954300003,46.75861307900004],[75.09049965300011,46.789493184000094],[75.30410759400013,46.69541486999998],[75.52243756399997,46.715633026000035],[75.75393651000019,46.80050214300013],[76.17356861400003,46.803192399000125],[76.38323253400017,46.71384399300007],[76.48757163900007,46.63110639399997],[76.59501657300012,46.66796480800019],[76.83245057700009,46.591864335000025],[76.88552864400015,46.63565340900004],[77.05045365300003,46.63559238900018],[77.14864362600008,46.531770951000055],[77.28885660500003,46.613181359],[77.45860255000002,46.63464255200017],[77.62068961400007,46.622424587000125],[77.87619064300014,46.6494625950001],[77.9300535910001,46.61733140700005],[78.21578261200011,46.53796199200008],[78.4833985080001,46.658522761000086],[78.62748761500018,46.74904211900008],[78.75084659800012,46.74260314100019],[79.01702164500017,46.815178353000135],[79.12477151400014,46.802913281000144],[79.24611649400015,46.64367539300014],[79.21523253300018,46.58846145000007],[79.09282657200004,46.53221016300017],[78.94583162700008,46.37688243300005],[78.83756258400012,46.35904842500008],[78.53706364300012,46.406999617000054],[78.41990659700008,46.39408343900004],[78.1596525270001,46.30521213100019],[78.06500960800014,46.31333319000004],[77.89481355500004,46.40458160500003],[77.72869865100017,46.38641148300013],[77.5259325340001,46.436902559000146],[77.40215261100019,46.50086100700014],[77.23316154100007,46.44364362100015],[76.81712359700003,46.47711390100011],[76.69183359000004,46.52982199100006],[76.44808164300008,46.53029892100011],[76.29559353400015,46.56001528200011],[76.27590159400012,46.49874709100004],[76.07929952799998,46.45916187600005],[76.01806654000006,46.49895697300019],[75.7137065600001,46.512343040000076],[75.62127663100006,46.464776746000155],[75.45797754400007,46.59908232700019],[75.42368349000009,46.50342402500013],[75.22989657000005,46.41512168100013],[75.0557025170001,46.44786256800006],[75.01154363400008,46.38064054300014],[74.88297261500003,46.400590646000126],[74.85487362600009,46.2688799340001],[74.7854764970001,46.18734094700005],[74.80983749200004,46.12773270700012],[74.51010851400008,45.99332821900015],[74.42092154300013,46.042691259000094],[74.23526758500009,45.98843017000013],[74.28766654900005,45.815250663000086],[74.25727863000009,45.7276807290001],[74.34541350400013,45.67900064700018],[74.20236157400018,45.569015325000066],[74.06498754500006,45.51276035000018],[74.06915251300006,45.41031991400013]],[[40.72494554400015,37.596799118000035],[40.85155855100015,37.659514697000134],[41.00272349200003,37.63444140700017],[41.14757149600007,37.66734272400009],[41.23526749399997,37.61078683800008],[41.440010566000126,37.67499037200008],[41.589267619,37.692755313000134],[41.806789574000106,37.68000744400007],[41.87952454500015,37.61114575100004],[41.90159661000007,37.40757446800012],[41.78936058000005,37.301313561000086],[41.581199535,37.240119801],[41.42226758600003,37.21245650300017],[41.37342053700007,37.276980058000106],[41.424045555000134,37.391392869000185],[41.56026053500017,37.40613278100011],[41.64036554500012,37.49595476400003],[41.620964457000184,37.56904764200016],[41.37286749900011,37.52525940700008],[41.193519581000146,37.54959291],[41.095348552000075,37.509622631000184],[41.12903558800008,37.4379878690001],[41.05139955100003,37.386029122000025],[40.96533148700013,37.43537908500008],[40.78676945600006,37.401028705000044],[40.65909949200011,37.4342461870001],[40.57247151700017,37.41071751400011],[40.46557257900014,37.54107488400007],[40.53034256300015,37.61125253600005],[40.603900469000166,37.58368412200008],[40.72494554400015,37.596799118000035]],[[45.11582162000019,38.1315253140001],[44.995826462000025,38.164300734000165],[45.104705540000054,38.26846264500011],[45.340827607999984,38.26235190300008],[45.45331559900018,38.194009049000044],[45.50083160200012,38.128733134000186],[45.45887749500008,37.94290751400018],[45.40608961000004,37.895697282000185],[45.41081247700009,37.80347505700013],[45.47721056100016,37.74820110000002],[45.67581958900007,37.750138996000146],[45.798606592000056,37.66458457500005],[45.692756566000185,37.64263505300005],[45.72664661200008,37.55819458600013],[45.86831653400009,37.40874575600009],[45.740272569000126,37.27514224200013],[45.622207595000134,37.26348452400009],[45.57166254000015,37.12126022300015],[45.458320601000025,37.111540400000024],[45.34915150900014,37.20348049000006],[45.28443148200006,37.35570658100016],[45.31998449700018,37.387642973000084],[45.26054356100002,37.50903170700013],[45.29165651500006,37.566815541000096],[45.23359658000004,37.660975830000154],[45.263053605000096,37.74735402500005],[45.16915852000017,37.830131689000154],[45.05721250300007,37.854026148],[45.043609513000035,37.943746375000046],[45.084159484000054,38.00764145500011],[45.17165347700006,38.02512794900008],[45.204162521000114,38.113741597000114],[45.11582162000019,38.1315253140001]],[[40.09939153700009,50.52330516400019],[39.93791149000009,50.61138857200001],[39.981952524000064,50.699470808000115],[40.27555449900012,50.83159458000006],[40.392997535,50.80223629400007],[40.392997535,50.68479141300014],[40.246196548000114,50.58202995100015],[40.09939153700009,50.52330516400019]],[[37.70652045200018,50.34714052500004],[37.91204052700016,50.376501997000105],[38.16160549200009,50.33246129800011],[38.235004477000075,50.27374053400018],[38.17628455100004,50.14161693000011],[37.95608156100013,50.08289616600007],[37.75056048000005,50.097575225000185],[37.633117611000046,50.20033752600017],[37.633117611000046,50.27374053400018],[37.70652045200018,50.34714052500004]],[[73.0460285760002,42.04896065200012],[72.90563153,42.08016044300007],[72.96935260200007,42.25263721200008],[72.93763749200019,42.345276520000084],[73.08101648400003,42.37870841200015],[73.14182249800012,42.43731719300007],[73.09398664100019,42.48769679000003],[72.86042759100019,42.50892546800003],[72.74140959500005,42.551017207000086],[72.660957574,42.52823552900003],[72.50102264700018,42.56157622600006],[72.32630154000014,42.63272668100012],[71.98798362000014,42.70375643800014],[71.90879056000011,42.7854359050001],[71.99033357000008,42.82573475400011],[72.41171263000018,42.75664691700018],[72.65675354700011,42.68741860000017],[72.85916862900012,42.69111434800004],[72.94992854800017,42.638685879000036],[73.18894153400004,42.64822565900016],[73.333930522,42.67905664500012],[73.63912165200003,42.639375710000024],[73.78067758000003,42.56960608900016],[74.04107649000008,42.5430362940001],[74.2476575460002,42.62693696600007],[74.4907376000001,42.61805600400015],[74.68946850100008,42.58050809500014],[74.89028951400013,42.596895889],[75.0518416450002,42.56726016200014],[75.19380962700018,42.576716290000036],[75.44629652300017,42.529746451000165],[75.4961626450002,42.42677695000009],[75.30680053200018,42.44633813300004],[75.22454053400008,42.41162934200014],[74.91584761300015,42.40889717700014],[74.90142051300018,42.3062480320001],[74.7919086010001,42.2556391060001],[74.79535658100014,42.15421086900005],[74.52570354700015,42.204739664000044],[74.34967050500018,42.14634093300009],[74.24971061000008,42.186169893000056],[74.2836836370002,42.24303926200014],[74.49273651600015,42.346966647000045],[74.39669063500008,42.42345000500006],[74.10636849800011,42.39211627200018],[73.67420159300008,42.3783074210001],[73.58403762800015,42.34097660400016],[73.19612164000011,42.283059162000086],[73.12426760800014,42.24244850500003],[73.13803052499998,42.17199877700011],[73.30724354800014,42.131918024000186],[73.44161953800005,42.06207866600016],[73.53256251700014,42.159177818000046],[73.65897351900009,42.09274955900008],[73.88098163600006,42.03953084400007],[74.06815355700019,41.92135187600019],[74.05101759500008,41.85721221200009],[73.7381595380001,41.880122971000105],[73.60637657400014,41.94837144400009],[73.0460285760002,42.04896065200012]],[[77.03296648899999,42.59953216500003],[77.09819060300009,42.642557648000036],[77.37566361800009,42.683035367000116],[77.5193326230002,42.65139569400014],[77.80507656400005,42.730924198000025],[78.00038949300017,42.70977632100005],[78.11564652900006,42.57184925400003],[78.0006785010001,42.45926604500016],[77.90149661400011,42.46111676900017],[77.80126950400017,42.29759690200018],[77.68776663300008,42.208737497000186],[77.4940875040001,42.15289105500011],[77.29306063200016,42.1748977420001],[77.05435962000001,42.15785800300017],[76.8086696090001,42.21753044800005],[76.7468036200001,42.25348730400009],[76.59120951300008,42.26529824400012],[76.3876875160002,42.34747760800013],[76.2319566160001,42.334308799999974],[76.18546253500017,42.446220115000074],[76.30442051600005,42.477946625000186],[76.45107264100011,42.468257815000015],[76.61589053000017,42.508475528000076],[76.63169863200005,42.54739639200005],[76.77831253500011,42.5890071770001],[77.03296648899999,42.59953216500003]],[[106.02873965100014,37.884982696000066],[106.00512665600013,37.751157062000175],[105.94214654400008,37.67243556800008],[105.77683261500016,37.546484062],[105.61151164400019,37.51499459300004],[105.23365058700011,37.49925086400009],[105.09159057200009,37.44557600600007],[105.00535554000004,37.73541048300018],[105.01322966800018,37.947957611000106],[105.06832861100014,38.05029260200007],[105.09982260700008,38.231354451000016],[105.09982260700008,38.42028104000002],[105.27301066400008,38.75878068000014],[105.29662365800004,39.05005097700007],[105.44619754700005,39.27046871200008],[105.58789865000006,39.38067799800007],[105.713851665,39.43578448500017],[105.84767964600013,39.58535233900011],[105.96576658000004,39.632585705000054],[106.03661361100006,39.62471157700014],[106.19406162700011,39.69556179300014],[106.38299559199999,39.67981789700008],[106.63490262800019,39.632585705000054],[106.737243654,39.49088661400003],[106.737243654,39.40429367500013],[106.80021655799999,39.27834267200018],[106.79235064400007,39.018561676000104],[106.80809051700004,38.98707187100007],[106.67426253700017,38.83750334700005],[106.57192251600014,38.67218891400012],[106.48532857200007,38.475388198000076],[106.40660858700005,38.35730612500015],[106.20980066200019,38.184121253000114],[106.14682759100009,37.971574126000064],[106.02873965100014,37.884982696000066]],[[75.17404962600006,36.80696567500013],[75.36809554600006,36.79714409700017],[75.42827559900019,36.83030022300011],[75.53881060600008,36.80573772700012],[75.70460549000006,36.926093307000144],[75.83355755000008,36.8671453930001],[75.92812352200019,36.680473536000136],[75.7414476420002,36.81802040000002],[75.61372353100006,36.67801663300014],[75.8003995790001,36.63134854300006],[75.81268359300003,36.53801236300012],[75.95269054500011,36.481521856000086],[75.919532575,36.437306814000124],[75.79794351400017,36.40537444500012],[75.69600649500012,36.45081425100017],[75.5867076510001,36.569944732000124],[75.44670053100003,36.55643293600002],[75.45529164700014,36.637490299000035],[75.36563864300012,36.71117376500018],[75.28458362700002,36.684158221000075],[75.16054554200008,36.7283695750001],[75.17404962600006,36.80696567500013]],[[81.04933963300016,34.408738051000114],[81.18763751500006,34.459029806000046],[81.22451755399999,34.36180358400014],[81.15662363500007,34.31821869400005],[80.9780956350001,34.288044513000045],[80.90181763400011,34.10616542800011],[80.7928545690001,34.18830522900015],[80.7316665080001,34.34671682900017],[80.74927554600009,34.40957825300018],[80.61013058800012,34.392812770000035],[80.71742263700008,34.552064237000025],[80.87416053900017,34.50093781300018],[80.97893550200018,34.35761145900011],[81.04933963300016,34.408738051000114]],[[80.1702575290002,34.44509522700008],[80.27448264000003,34.51892336500009],[80.38088251900007,34.52543811600009],[80.31356862800016,34.40601125000018],[80.3255155220001,34.305042845000116],[80.16156750800013,34.278985855000144],[80.06276649400013,34.21601429200018],[79.93465463600012,34.2594431120001],[79.91402459300019,34.18670227400014],[80.00739262400003,34.112875141000075],[79.93139659000002,34.05533170000018],[80.0283965000001,34.003869329],[79.96504959600009,33.88813854700004],[79.89013650400017,33.86099341900007],[79.60242449300017,33.93807926800008],[79.62496158600015,34.04222525300014],[79.80328355900008,34.02710362900007],[79.81630652200016,34.12481901800004],[79.86734057800015,34.19104326200011],[79.8564834980001,34.28007265200006],[79.792419607,34.33761223800013],[79.83259557700012,34.42664079100007],[79.92162362700009,34.35824043700006],[79.96614058500018,34.401670430000024],[80.1702575290002,34.44509522700008]],[[79.88485758200017,33.03198849300014],[79.90544856500009,33.11830885200004],[80.00920060100015,33.07475430400018],[80.08284752300011,32.95279794800007],[80.2673726070002,32.96863639200012],[80.39646162700018,32.909239209000134],[80.347366641,32.83875729400012],[80.55881456600008,32.79520274499998],[80.31410255500003,32.674036467000064],[80.27925864800017,32.72155414700006],[80.08839449900006,32.81817016600007],[79.95534553200008,32.917952029],[79.88485758200017,33.03198849300014]],[[82.06078355500006,30.758447546000127],[82.01717351800016,30.770340796000085],[81.99496466000005,30.917037680000135],[82.10202050700013,31.002675753000062],[82.17655959800015,30.901178281000057],[82.36132859600013,30.80681766500004],[82.47313664600006,30.804436869000085],[82.38432350900018,30.616507391000084],[82.18211361500005,30.69104581200014],[82.06078355500006,30.758447546000127]],[[83.45320861300013,29.185115033000102],[83.43163258900012,29.38610150400018],[83.58721160800019,29.370204051000087],[83.5985645610001,29.257787307000058],[83.69281755300005,29.349763774000053],[83.89154057600007,29.478077636000023],[83.89949064300015,29.388371156000176],[83.85746763600014,29.162404935999973],[83.75413553400017,28.938708872000063],[83.65420564600015,28.979587246000165],[83.58380151500018,28.9284891530001],[83.50772065600017,29.02160053],[83.58152750400006,29.11017025700005],[83.45320861300013,29.185115033000102]],[[84.99281352200018,29.853796614000032],[85.01533552800004,29.72993907500006],[84.79200759600019,29.926983872000164],[84.70568053200003,29.908216456000048],[84.62310755300001,29.966392396000117],[84.6062165100002,30.05084124399997],[84.65313756600005,30.131533994000108],[84.64562956000003,30.259144279000054],[84.48986060599998,30.354851028000155],[84.51238261200007,30.463695909000137],[84.48235360600006,30.510611432000132],[84.50675165000013,30.61570239300005],[84.57807158800011,30.64384932700017],[84.7244496240001,30.50498063700013],[84.80702260200013,30.493721730000175],[84.9083635,30.38112393600005],[85.05850249700006,30.304182759000128],[85.07350962400017,30.22348984200005],[85.17109660200015,30.189709934],[85.20487952800005,30.266651278999973],[85.27806863000018,30.281663603000084],[85.37190252700003,30.178449517000104],[85.46199055200009,30.174695431000032],[85.5370555240001,30.048964033000175],[85.52954852400018,29.98328059],[85.59147654000003,29.94011932],[85.65341159600013,29.759964058000037],[85.5370555240001,29.679271141000186],[85.488258599,29.735568026000124],[85.38691753300014,29.669886427000108],[85.30809763600018,29.78248304700014],[85.31748151200014,29.95325460100014],[85.2761915870002,30.026444877000188],[85.12418359300017,30.095879557000103],[85.11104563000015,30.045210281000095],[85.18048064600015,29.913846245000173],[85.14670559900003,29.81626278700014],[84.99281352200018,29.853796614000032]],[[84.19814254700003,28.948927585000092],[84.46158559700007,28.989805960000126],[84.57855254100019,28.920539588000054],[84.50928466100015,28.787684746000025],[84.56265257400008,28.697976422000067],[84.71595758300009,28.372086685000113],[84.65917957700003,28.368677932000082],[84.53426357100017,28.44589370100016],[84.45137057100004,28.536736097000187],[84.52177453500008,28.594645660000026],[84.45023365000003,28.643473767000046],[84.26059761700014,28.644608676000075],[84.3412166060001,28.817207653000025],[84.25264754900013,28.788819823999972],[84.11183962200016,28.836510841000063],[84.0368886440001,28.829698198000074],[84.06755065200008,28.93643704100009],[84.19814254700003,28.948927585000092]],[[75.01862349200019,34.637896937000164],[75.14701849100004,34.65791543700004],[75.36583762900005,34.549302400000045],[74.92999257700006,34.52931793100004],[74.75390656100012,34.63644703600016],[74.92852758800007,34.67403618300017],[75.01862349200019,34.637896937000164]],[[78.31746649700005,34.579453614000045],[78.23696854300005,34.59883106600017],[78.24292757300003,34.69721751000003],[78.36293061000009,34.69870848300019],[78.44194060900014,34.635352024000156],[78.58281760300008,34.59883106600017],[78.58281760300008,34.54069250900005],[78.68344855300018,34.49000915200003],[78.61561565500006,34.421437808000064],[78.77438365300003,34.395349637000095],[78.83028457700004,34.35658970500009],[78.77960155500011,34.27609393000006],[78.6312715410001,34.323051364000094],[78.3934935440002,34.30814398100006],[78.31001263800016,34.36553420200005],[78.43076350900009,34.40429446900015],[78.29212163300019,34.49000915200003],[78.31746649700005,34.579453614000045]],[[78.69281750900018,34.154488106000144],[78.76324460700016,34.130665899000064],[78.88856462000012,34.253912397000136],[79.0925975780001,34.20316282300007],[79.101921607,34.118238218000045],[78.95795454100005,34.05402680500015],[78.8502425590001,34.051955972000144],[78.75392158300008,33.96495634300015],[78.61721056300019,34.01570608500009],[78.60166950900003,34.101667699000075],[78.47946152800017,34.15759293000019],[78.38313250600004,34.078883171000086],[78.30856357500005,34.14930825700009],[78.31270557600004,34.254949239000155],[78.42353059700008,34.27048308400015],[78.47220665600014,34.236307718000035],[78.68349465400019,34.23526987100007],[78.69281750900018,34.154488106000144]],[[76.58961460400019,33.251522104],[76.59502462000017,33.43555265600003],[76.69696851200018,33.42833567000008],[76.83229065100016,33.371502343000145],[76.80432158100007,33.27768202400017],[76.98655656100016,33.268660582000166],[76.99377455300015,33.207318126000075],[77.14082364500007,33.09906467300016],[76.97573049500005,33.01246201100008],[76.723129605,33.01246201100008],[76.6464465900001,33.05125295600004],[76.63021050900011,33.154993928000124],[76.68434151000008,33.24971815100008],[76.58961460400019,33.251522104]],[[82.13151558600015,30.054479828000126],[82.06984757700019,30.247413973000107],[81.95883949600011,30.327582853000024],[81.9059825440001,30.236840202000167],[81.78352360900004,30.272959834000176],[81.75797255000009,30.37251220100012],[81.79849955500015,30.43065411100008],[81.97998854600007,30.406868114000133],[82.03725454700015,30.44034493200013],[82.20993063700018,30.367225567000048],[82.21961961400007,30.27207906400014],[82.3253405590001,30.1786972860001],[82.26543459400011,30.002502808000088],[82.1817396150002,29.890620159000093],[82.13151558600015,30.054479828000126]],[[77.59128556300016,32.17134339100011],[77.6581805260002,32.39028155200009],[77.7030335990001,32.41688772400005],[77.83151258400017,32.362152388000084],[77.94783060200007,32.22455657400019],[77.86192363800018,32.17134339100011],[77.81098949400007,32.07860048200013],[77.85964158100006,32.01930237300013],[77.74180560100018,31.93492225600005],[77.71900162700001,32.01246257200006],[77.59660354500016,32.08239932800018],[77.52970154100012,32.07327864400014],[77.41567262100011,32.246602153000026],[77.52590152100015,32.23291836100009],[77.59128556300016,32.17134339100011]],[[74.0204544930001,36.84344086800013],[74.12338258800008,36.8340232970001],[74.14852863300013,36.727400292000084],[74.23926558500017,36.717185769000025],[74.31760352200018,36.662635673000125],[74.41142250000013,36.709361766000086],[74.64677460700005,36.55754001800017],[74.82153360000018,36.505955271000175],[74.76965364300008,36.37364106200005],[74.64598855200012,36.36655734800013],[74.5467375980001,36.39963753500007],[74.48354358000012,36.31600240200015],[74.36198452600001,36.42805973000014],[74.32205951000009,36.53134070300018],[74.11405151800005,36.44131671600013],[74.11278551600009,36.548068132000026],[74.21061657500007,36.569662764999975],[74.248855488,36.656616796000094],[74.05896749400017,36.715830583000184],[74.07402055400007,36.786939129000075],[74.0204544930001,36.84344086800013]],[[74.9795306310001,36.22009146900007],[74.92256151700019,36.36616826000005],[75.01313049600009,36.45381346300019],[75.11830158800012,36.449429560000056],[75.43018348800007,36.34352488400009],[75.5755305510001,36.323803104000035],[75.68655355200019,36.2522256740001],[75.84870163699998,36.323803104000035],[75.99405657900007,36.363975387000096],[76.21901663400007,36.23542616100019],[76.32857565300003,36.10103726300008],[76.35998549400017,35.99513258700006],[76.6389996050001,35.99074969000009],[76.68720258900015,35.856360792000146],[76.77192653100019,35.82130063200003],[76.8464275680002,35.73657451100007],[76.93115251600017,35.69421371300007],[77.00273849600012,35.721967871000174],[77.13055464000013,35.697867552000105],[77.31753562200004,35.60583660200018],[77.53519453700005,35.56639773600017],[77.62430556700019,35.49189837500006],[77.78353155300005,35.509426108000014],[77.59362763400003,35.3195277210001],[77.69223049900012,35.273515934000045],[77.70246161800009,35.10406704400003],[77.73167456200008,35.04563562300001],[77.88359856900007,34.93754125900006],[77.95517750700014,34.934619327000064],[78.07423355700013,34.86230931900019],[78.12535864000006,34.75567608800003],[78.11367057900014,34.60083417300007],[78.17210350900018,34.552629513000056],[78.17940565500004,34.43576851500018],[78.26267265500019,34.31598676000016],[78.16772463500007,34.244409666000024],[78.01433563900014,34.39486466],[77.93107551200018,34.390485619000174],[77.86898757000006,34.46863563400012],[77.83977563200011,34.603024029000096],[77.69661758700016,34.66583834700009],[77.722907594,34.730110780000075],[77.64110558300007,34.76224884100003],[77.61042765000008,34.974058529000104],[77.51109354800013,34.97844125800009],[77.39276856800012,35.109907889000056],[77.29489157500007,35.13912334800017],[77.26714362000001,35.222389174],[77.17803158400017,35.16833931000008],[77.35040257300011,34.88641366100012],[77.2817455660001,34.813375601000075],[77.22988857500013,34.930964482000036],[77.1714556460002,34.97479043700008],[77.04290759300011,34.922202711000125],[76.79164864600017,35.03906287],[76.84861759200004,35.109178999000164],[76.93772862200018,35.09165042800015],[77.02245357000015,35.1544618960001],[76.790191536,35.25525528700007],[76.8223265790001,35.33267624500019],[76.73760263700007,35.37211544600012],[76.58421364100013,35.51819190200001],[76.62365753700004,35.32391061800007],[76.4775775600001,35.30930381100006],[76.43959865400012,35.614602397000056],[76.23362763300008,35.526957697000114],[76.19856261100011,35.459760146000065],[76.103614591,35.49774223800017],[76.15912659500015,35.614602397000056],[76.27160653900012,35.73146289100009],[76.10214960200005,35.69348482300012],[76.03349259500004,35.70516835800004],[76.02911355400016,35.87607838100007],[75.81583351200015,35.90529484600012],[75.76178750399998,35.81618884500011],[75.61497461400012,35.917711462],[75.5492405440001,36.01412128600009],[75.49519352900012,35.97614288200015],[75.23516862000014,35.987827758000094],[75.19718954600012,36.01996615400003],[75.09055363300013,35.932316928000034],[74.87435149200019,35.95423258700015],[74.66399354999999,36.08277644900011],[74.54713456500019,36.09300421500012],[74.50184663900012,36.056479066000065],[74.38644459600005,36.074014845000136],[74.42004362300014,36.17772631300005],[74.52230049500014,36.22739629800003],[74.61140465200015,36.15289291300019],[74.76187154900015,36.15143211500009],[74.88603955400004,36.12075870800015],[74.94447348900007,36.069635804000086],[75.09493250600013,36.20256004800018],[74.9795306310001,36.22009146900007]],[[78.02452853600005,34.25760831300005],[77.88848153000004,34.15088724000009],[78.05318458700003,34.08137410500012],[77.97182463800004,34.03556046600016],[78.0263286340001,33.902854990000094],[78.15745563000013,33.92339249700018],[78.13771054800014,33.82386225800013],[78.2905656170002,33.83729409000017],[78.29846153699998,33.75435331400007],[78.40984362000017,33.71011564100007],[78.43907165100006,33.55134429000009],[78.49278255200011,33.49842078500012],[78.45645152700013,33.36097383400005],[78.31426259800008,33.41152827700006],[78.3087315480002,33.48104208299998],[78.2107776100001,33.48104208299998],[78.1507415580001,33.66588081700007],[78.06622364300011,33.69195021300004],[78.07553861999997,33.78798234800007],[77.98303258300007,33.812819604000026],[77.92222556400014,33.913882892000174],[77.912803634,34.02522675300003],[77.84848761400008,34.14673350400017],[77.93389853700006,34.24778572900004],[78.02452853600005,34.25760831300005]],[[79.17018164800004,33.15862580600003],[79.08432765700019,33.20155439400014],[78.91074363899997,33.37232946900019],[79.00779752900007,33.44325445100003],[79.11045857600004,33.43112080800017],[79.10765851700006,33.2734104380001],[79.37642659000011,33.324734676000105],[79.47068058800016,33.25287997200013],[79.61813352000007,33.29767470700017],[79.73292552800018,33.20342054100007],[79.61813352000007,33.130630585000176],[79.6722645210001,33.05504090600016],[79.65639456100007,32.967320433000054],[79.5117495670001,32.99811554600012],[79.53414165300012,33.08023606900014],[79.41655763300008,33.07557019799998],[79.34189549600006,33.16609056200002],[79.17018164800004,33.15862580600003]],[[78.23268857500017,35.22415524100006],[78.3385615680001,35.24891555100004],[78.35649163200003,35.297586245000105],[78.50848353300012,35.30783194900016],[78.70230062700017,35.289045421000026],[78.78171563900008,35.25147840200009],[78.76377853400004,35.14218726900009],[78.68522652200011,35.121694689000094],[78.66986065000009,35.02179816100016],[78.56739758300017,35.03204386500005],[78.45383453000005,35.10547101300011],[78.34283449500009,35.042289568],[78.24037159500011,35.08925152700016],[78.23268857500017,35.22415524100006]],[[78.80213160800008,34.422081873000025],[78.63536056900006,34.5413877040001],[78.6276626290001,34.57602357200011],[78.76493054300005,34.68249687600007],[78.77904550000005,34.73637860000014],[78.93939952200003,34.726112948000036],[79.01252760400018,34.65940758300002],[79.1279836270001,34.66325655300017],[79.26781455900016,34.54010175200011],[79.72067252700003,34.55934609900015],[79.75145758100007,34.45928595700019],[79.46537752600011,34.3887277660001],[79.30886861800013,34.40540440100017],[79.22035253500013,34.370768365000174],[78.96762859900002,34.36948610100012],[78.97403756900007,34.51829421999997],[78.85986364300015,34.51188156100011],[78.80213160800008,34.422081873000025]],[[78.98179653000017,36.233523301000105],[79.08193965300018,36.20179695900015],[79.38011965600015,36.189578324000024],[79.4682764910001,36.24160613800018],[79.48561864800013,36.10864803100009],[79.6941835340001,36.15618482200017],[79.69914260300015,36.09174139700008],[79.6168445510001,35.99556744000006],[79.70112659900019,35.878573171000085],[79.76259662700016,35.855769868000095],[79.90239755200014,35.93509083500015],[79.99658952500016,35.87461054200003],[79.97527350700017,35.811153835000084],[79.81266760200015,35.75166512200019],[79.77400255400005,35.67532308300008],[79.83249650300007,35.634675043000186],[79.9177625870002,35.69118885200015],[80.08929454700012,35.684245954000176],[80.12399260900008,35.65152769800005],[80.0555805210002,35.49190156000009],[80.06847356500009,35.40663363200014],[79.89842955900019,35.50479108300016],[79.72591356300006,35.56229680600012],[79.68823255000012,35.62971630900006],[79.5191875000001,35.74472658200017],[79.51026161100009,35.800247973000126],[79.27825153700007,36.01936316000001],[79.16224650000004,36.05307232500019],[79.25148057600006,36.154205854],[79.1067195760001,36.167094539000175],[78.98179653000017,36.233523301000105]],[[80.31733662900012,35.8339574740001],[80.469032648,35.88254032500009],[80.5116725630001,35.788350365000156],[80.45565060400014,35.639629921000164],[80.55678564200002,35.599969941000154],[80.59991455700009,35.72291385300008],[80.7198865810002,35.731836891000114],[80.73574849500005,35.67532308300008],[80.90033755800005,35.68028198400009],[80.98907458700006,35.559320894999985],[81.03964260900005,35.59898205000019],[81.16654965300017,35.54742328700007],[81.33213063000017,35.548415033000026],[81.39459257200014,35.511730125000156],[81.43276962700008,35.41754033200016],[81.54976657800012,35.455216317000065],[81.57653854400013,35.57419458300018],[81.76491561600005,35.58410836200005],[81.80458062600013,35.503799169000104],[81.70146159100017,35.45819239500014],[81.77880057400012,35.38283824700011],[81.91017165100004,35.38085525700018],[81.9627224960002,35.444310622000046],[82.18183852100003,35.60691166500004],[82.2532275260001,35.59898205000019],[82.29982755500015,35.71993894700012],[82.41384859500005,35.74571832900011],[82.48325360400014,35.70804117100016],[82.41682450600018,35.5662597700001],[82.1000445570001,35.37589920500011],[81.997917605,35.20635945500004],[81.80606858100009,35.131006481000156],[81.68212856400004,35.201400554000145],[81.6969985630002,35.37589920500011],[81.557197638,35.332276260000185],[81.56215654000016,35.26584498400007],[81.49473552799998,35.14389617200004],[81.34848757800012,35.096304228000065],[81.28007465200017,35.286668481],[81.15019253600008,35.182564238000055],[81.05500764400011,35.171658376000096],[80.90132863400015,35.05367236000018],[80.81952662300017,35.14290425700011],[80.69757864900004,35.16769138900003],[80.42689564700015,35.37589920500011],[80.2608186290002,35.44629461900013],[80.2231446560001,35.52164474299997],[80.12895151100003,35.54147632600012],[80.15373964800011,35.68028198400009],[80.31733662900012,35.8339574740001]],[[77.66564159300015,36.797433105000096],[77.85678050200005,36.80770563000016],[77.83314554600008,36.68542137400004],[77.75196849100013,36.64740122900008],[77.71572849400019,36.452023256000075],[77.56145453700015,36.441384609000124],[77.29812665500003,36.51452995800008],[77.21300457200016,36.62092380200005],[77.35265361700004,36.639542356000106],[77.49096658700006,36.598314289000086],[77.53618661900009,36.66215186900001],[77.62556452900009,36.68233834200004],[77.59473454800013,36.78510114600016],[77.66564159300015,36.797433105000096]],[[73.02505454000016,39.474818841000115],[73.15191648900014,39.47188567800015],[73.19121554500015,39.342668749000154],[73.19487759800018,39.21918152300003],[73.03598755900015,39.22957223300017],[73.01654858500007,39.173130173000175],[72.90885956900019,39.13248565400016],[72.87567863200007,39.013346791000174],[72.73116255100001,39.03008142800002],[72.67225654700007,39.286036588000115],[72.4843134910002,39.340909723000095],[72.62162750500005,39.408650756000156],[72.75763662500009,39.377778195000076],[73.02505454000016,39.474818841000115]],[[72.42639956900013,38.12816534400008],[72.56694748899997,38.058643324],[72.5598755100001,37.98643591100006],[72.48854048400011,37.93201674],[72.520500514,37.81827967800018],[72.39647651000007,37.77744069900018],[72.09585552900012,37.77494557400007],[71.99304964200007,37.80539803400012],[72.07572152700004,37.92251803200014],[72.06882456100016,38.030582892000155],[72.15661661500002,38.00616137900005],[72.29656958800018,37.908522097],[72.38399451500015,38.00002767000012],[72.42639956900013,38.12816534400008]],[[85.40026856399999,44.02510899200007],[85.7299655290002,44.06368284600012],[85.69290963800006,43.98694702500012],[85.37531262100009,43.95676815000007],[85.00519560400005,43.87308943200014],[84.910629631,43.883446279000054],[85.04708064500005,44.07417682100004],[85.12142158800015,44.097213811000074],[85.40026856399999,44.02510899200007]],[[86.27438355200007,43.692604928000094],[86.05389356500007,43.74181474600016],[85.98531350400003,43.79388564300007],[86.10158558900014,43.869603230000166],[86.34267460500018,43.85894446700013],[86.44961562000003,43.74026962600004],[86.42443856199998,43.67275004300018],[86.27438355200007,43.692604928000094]],[[87.01344261000008,43.68398397300007],[87.18949157800012,43.61623908400003],[87.2910385030001,43.542482360000065],[87.33169559500016,43.44566986900014],[87.1536785560001,43.464944726000056],[87.04267164700008,43.41746375900016],[86.73315461700008,43.63035001800017],[86.79782049700015,43.698681808000174],[87.01344261000008,43.68398397300007]],[[90.37403861600018,43.467123686000036],[90.15945451800008,43.46172574000019],[89.88285858600011,43.50743259300003],[89.62010151200013,43.60460399700008],[89.63590257300007,43.656090843000015],[89.84391760500017,43.70053571700004],[89.97329764500012,43.653572919000055],[90.24773356100019,43.64052011700011],[90.40419754200008,43.56180046700018],[90.37403861600018,43.467123686000036]],[[84.53547660000004,43.63209311900005],[84.66663360299998,43.41498003400011],[84.61905658000012,43.33526914000004],[84.39389753800009,43.25845268500012],[84.31440759100013,43.32365735400009],[84.38397252600015,43.44665373700019],[84.34601558000014,43.60202924400011],[84.49111956800004,43.677533762999985],[84.53547660000004,43.63209311900005]],[[83.40079456100017,43.20746573600019],[83.191757607,43.140048915000136],[83.08229062200007,43.082637405000185],[82.91468055400014,43.03808272800012],[82.42644458400014,42.94326110700007],[82.36887365000018,43.02413172000007],[82.78329455700009,43.11581834200018],[83.05518354700013,43.19751675200018],[83.48230756400017,43.34854406300019],[83.63330855500016,43.31684420800019],[83.40079456100017,43.20746573600019]],[[81.52838853400004,43.08102422400003],[81.84761851400003,43.11756110700003],[81.90435058700012,43.06200434400017],[81.78539260500014,42.980590919000065],[81.47888149300019,42.92024708300016],[81.23133053200007,42.92273399400011],[81.1810376050002,43.01706359700012],[81.52838853400004,43.08102422400003]],[[81.76741761400012,43.36705298200013],[81.87779956800006,43.34643417000012],[81.93129756800016,43.288020519000156],[81.50721752300007,43.196337921000065],[81.28939063500007,43.181105824000156],[81.14305853100018,43.21388174800012],[81.11180157600006,43.26603663100019],[81.2211225480001,43.32410310400002],[81.67407959000019,43.37605514600011],[81.76741761400012,43.36705298200013]],[[83.29065652100019,43.32803220500017],[83.0543285930001,43.30940141300016],[82.97982051500009,43.378202925000096],[83.06193550500012,43.443670618000056],[83.39317356700019,43.47162057700007],[83.4879306470001,43.38804495500017],[83.29065652100019,43.32803220500017]],[[81.64060260399998,42.78859102100006],[81.38733652600018,42.73596423600014],[81.32902563700003,42.81102082600006],[81.79644062400007,42.90666337100015],[81.90039064100006,42.911301245000175],[81.92881753000012,42.845975709000015],[81.73571759100014,42.78464280900005],[81.64060260399998,42.78859102100006]],[[80.64993255900009,42.54775547300005],[80.63819856500015,42.618742817],[80.98874652000018,42.67995635900013],[81.067733552,42.603427068000144],[80.88030263000002,42.427768194],[80.64993255900009,42.54775547300005]],[[89.2612915150001,43.895962137000026],[89.29050462700008,43.760399605000146],[89.01898159000018,43.835137515000156],[88.80268054400017,43.96289917700011],[88.4322966470001,44.08213476800006],[88.30763260100008,44.045616995000046],[88.18936159999998,43.90722724700004],[88.14894859000003,43.78637462000006],[88.044586519,43.804074350000064],[88.05022452200012,43.94073122300017],[88.23369566600002,44.14964278300005],[88.33987459800016,44.233070380000015],[88.48751059100005,44.184261720000165],[88.71046452100006,44.20660737100013],[88.90966061800015,44.15039866300003],[89.03627060700012,44.080360654000174],[89.2612915150001,43.895962137000026]],[[93.27053853300004,28.636525840000047],[93.06378162400017,28.691214740000134],[93.31607858600012,28.713210028000162],[93.27053853300004,28.636525840000047]],[[100.23680867700006,35.07698762900009],[100.40892066500015,34.940592272000174],[100.50215156799999,34.78771121900007],[100.714858622,34.72148982500005],[100.86189262700003,34.65322760600003],[100.94338953600015,34.589520280000045],[101.03679662700006,34.39930556000013],[100.87950853799998,34.43795853900019],[100.62094861700012,34.554799252000066],[100.51963051899997,34.580929668000124],[100.41063660800012,34.66652918300008],[100.11775966800008,34.82470525200006],[100.04845457200014,34.98061938000018],[100.08115354900019,35.11123893600012],[100.23680867700006,35.07698762900009]],[[103.65036054100017,33.66903174200013],[103.85961961500004,33.451410211000166],[103.82006055300019,33.26829462800009],[103.73321565400005,33.176718312000105],[103.541786564,33.11180114200016],[103.50898767400014,33.259463622000055],[103.51547962500001,33.56373492200015],[103.54817156200005,33.664801731000125],[103.65036054100017,33.66903174200013]],[[90.09738954300013,30.119786589000057],[90.14205150800007,30.23648128900004],[90.3639226640002,30.39207740700016],[90.4835056010001,30.42665225500008],[90.6074065580001,30.51309432000005],[90.83360260900002,30.577927000000102],[90.8869095020001,30.55055371600008],[90.76589158400014,30.442500758000165],[90.68952959600006,30.337330671000075],[90.61749250200012,30.325805052000078],[90.46621658400005,30.214871904000063],[90.42443061800014,30.10393909200002],[90.29908763800012,30.11114300200012],[90.20256063500005,29.965633331000106],[90.08730359900017,29.919530181000084],[90.04264062700008,29.869108004000168],[89.94178755700011,29.962751465000053],[90.09738954300013,30.119786589000057]],[[80.58403755600017,31.697144930000093],[80.41091957200013,31.864120320000097],[80.31269858600012,32.053199125000106],[80.344619556,32.16369574300006],[80.41460459200005,32.10353563800004],[80.40846250100014,32.01268050199997],[80.55580160700009,32.02127429900008],[80.54720261200009,31.92305348200017],[80.81732151200009,31.69468802600005],[80.80750261500009,31.606289123000124],[80.87380263100005,31.537533377000045],[80.85169955300012,31.425807301000134],[80.7055966100001,31.45159120900007],[80.73997465100013,31.532622420000052],[80.58403755600017,31.697144930000093]],[[82.53546850200013,30.785374410000145],[82.47521954900003,30.888996694000127],[82.4029236230001,30.92032573299997],[82.2751995110001,31.16974703200009],[82.21012861800011,31.185409456000173],[82.18000053700018,31.29144472300004],[82.36195355100006,31.232402932000184],[82.44630449800007,31.176974579000102],[82.57764456200016,31.0323835640001],[82.66680957200015,30.967316862000075],[82.85960357100004,30.94321889000014],[82.91142250800004,31.013105355000107],[83.06083663800007,30.99262115700003],[83.19820362600018,31.087809737000157],[83.20784750800004,30.98900721500013],[83.04637953100018,30.880561984000167],[83.1849515020001,30.798627875000136],[83.1186756260002,30.760070282000072],[82.96805550800019,30.770914789000074],[82.86804163300008,30.872128281000016],[82.81381960400017,30.804652618999967],[82.8969645630001,30.696208729000034],[82.80658753000006,30.603428773000076],[82.75839259300005,30.669701464000184],[82.66320066000014,30.698619365000184],[82.61861463400004,30.66367588100013],[82.49329361500014,30.708259056000088],[82.53546850200013,30.785374410000145]],[[83.23713656000012,30.67639441299997],[83.2053986520001,30.816928419000135],[83.31080661600004,30.836193553000044],[83.41734362300019,30.94386195000004],[83.37200959700004,31.096861355000158],[83.39127355700003,31.13766010100005],[83.56015063400002,31.17052889600012],[83.58847861700008,31.052659891000076],[83.50574453900003,30.89059478700011],[83.4558795910001,30.6231270830001],[83.51594565000005,30.485994118000065],[83.47061162400001,30.456528208000123],[83.25413556299998,30.490527051000072],[83.23713656000012,30.67639441299997]],[[84.03048654600008,30.54791190700007],[84.04042865700018,30.68457816800003],[84.09384954400002,30.76409208700005],[84.18082453000017,30.688304930000015],[84.07894165800008,30.64854721600011],[84.26779951600014,30.5926372400001],[84.3150095800001,30.423669471000153],[84.18579851900006,30.349124177000135],[84.24542955700014,30.247246838000024],[84.18952159200018,30.162761947000092],[84.08391564700014,30.141640892000055],[84.09012563200014,30.23979130200007],[83.95594058199998,30.195064796000054],[83.85530057900013,30.27457972100018],[83.7273255140002,30.328002787000116],[83.70744363900019,30.42615520800007],[83.75714866000004,30.554123736000065],[83.86524151600008,30.593881282000154],[83.9621505660001,30.542941104000136],[84.05409250000014,30.320549263000146],[84.11124450700004,30.387639693000153],[84.03048654600008,30.54791190700007]],[[86.14882649800012,30.08735164100011],[86.10484363400013,30.12987018600012],[86.20748154800003,30.20611248000006],[86.27638950900001,30.354194893000113],[86.33357252900004,30.137199993000024],[86.29398362700005,30.10054643300009],[86.25439455700007,29.952461673000073],[86.25292956800007,29.857160439999973],[86.17375159600005,29.785316968000018],[86.07845254200004,29.785316968000018],[86.14443153100018,29.64016553900018],[86.12536655700012,29.563924418000113],[85.87464153700006,29.594713160000083],[85.7896046140001,29.691482735000193],[85.80279555100009,29.833701169000108],[85.75001554400012,29.89234817199997],[85.69869264800019,30.0345677790001],[85.76174165900017,30.11374273400014],[85.87757855500007,30.13426917600009],[85.83505263400014,29.868890075000024],[85.95822151700014,29.914340274000097],[86.16495562600005,29.917274276000057],[86.14882649800012,30.08735164100011]],[[101.72653153800002,38.114226573999986],[101.75505867500004,38.04188588800014],[101.65116867300009,37.943788452000035],[101.45385766600003,37.885134575999984],[101.3815915790002,37.90258636900006],[101.37549558800004,37.99400476900013],[101.4336626440001,38.046996670000055],[101.63423957500004,38.12430044800004],[101.72653153800002,38.114226573999986]],[[102.2414395620001,37.79770327900019],[102.43962061000013,37.71269887800014],[102.49026457200017,37.61208770900015],[102.44000953000017,37.578576357000145],[102.29329655300006,37.62547746400003],[102.07405865500004,37.730371618000106],[102.07473758900011,37.82775558700018],[102.2414395620001,37.79770327900019]],[[102.36840863100008,36.85205075900012],[101.91808367400012,37.14159991700012],[101.77075160900011,37.32973709800001],[101.83357967300003,37.38917283800009],[102.21432460800014,37.215389331000154],[102.39125853700011,37.08879007100012],[102.49376653100012,36.98408316900009],[102.577964593,36.99834983800008],[102.74747467100008,36.88367400300007],[102.81116456199999,36.81447351400004],[102.8764875830002,36.678547543000036],[102.90300759000007,36.52261296300014],[102.80258166100015,36.52223192100007],[102.66578665400016,36.70391403100007],[102.49224856800004,36.77416058300008],[102.36840863100008,36.85205075900012]],[[104.22422066900009,35.57490738000007],[103.96562152200016,35.607602837],[103.85433951900012,35.65129853600007],[103.76967659700017,35.76245313400017],[103.785377579,35.81813059600012],[103.90399156700016,35.847773867000114],[104.07132754700018,35.79112745700007],[104.19499967800004,35.691741555000135],[104.22422066900009,35.57490738000007]],[[100.51759354800015,38.44623962700018],[100.53133366700001,38.36160134800019],[100.38335451900008,38.33781669100017],[100.22518951500007,38.40629734300006],[100.23506959900004,38.51962939200007],[100.36149552100017,38.51904249100011],[100.45620767500009,38.43022315100012],[100.51759354800015,38.44623962700018]],[[99.79998763600003,38.61350788100003],[99.80546554500006,38.546496241],[99.69579353900008,38.50994862900012],[99.59623765100014,38.53861524100006],[99.43984257000005,38.657124287000045],[99.43795764700019,38.708023562000164],[99.65890461500004,38.722347061],[99.74749764400019,38.68666865200004],[99.79998763600003,38.61350788100003]],[[93.3870776650001,43.63754403800016],[93.46691160500018,43.67781204200003],[93.6625826080001,43.6466840010001],[93.64308160800005,43.56688845000008],[93.55672453600005,43.56958926699997],[93.3870776650001,43.63754403800016]],[[92.55100260400019,43.40649989400009],[92.25545451800014,43.37926306800017],[92.27133151900011,43.477735678000045],[92.44885251700009,43.559412463000115],[92.73598466900017,43.54284848100008],[92.84503155300007,43.50612853700011],[92.87875362600005,43.41419079400015],[92.55100260400019,43.40649989400009]],[[93.56293452000011,43.270522626],[93.44460266700014,43.35400604600011],[93.24465152800013,43.40575591700008],[93.42746754199999,43.45984065000016],[93.62247453100002,43.41633488400009],[93.67436253500017,43.36912800600004],[93.56293452000011,43.270522626]],[[94.25318860600004,43.13344498100014],[94.09704565200013,43.163009127000066],[94.09667953000002,43.25702541500016],[94.29364755000006,43.274642499000095],[94.25318860600004,43.13344498100014]],[[97.60250055800009,45.91103787900016],[97.52397151300005,45.92338190800001],[97.0524906330001,46.07063753000017],[96.71382855200017,46.11434261700009],[96.57740067200012,46.165158576000124],[96.45538363100019,46.078446446000044],[96.30292552900005,46.10813950600016],[95.94908851600019,46.427988573000164],[95.76016259700003,46.50866187600013],[95.68268564900012,46.62082129600003],[95.48468062000018,46.69613169000013],[95.26099360800009,46.80520640200007],[95.23551161700016,46.90725389400012],[95.35308859600019,47.01129242400009],[95.17861157000016,47.186033480000106],[95.18684360500015,47.25947789500009],[95.31008155400019,47.26507365300017],[95.37458750700006,47.36738131900012],[95.52230866000008,47.38883563900015],[95.60005952900008,47.289137930000095],[95.65191652000004,47.13648402700011],[95.85329459400009,46.96048400900003],[96.11917862100006,46.87817053400005],[96.21656057800016,46.748843970999985],[96.18065652800004,46.602763492],[96.36408961800004,46.44914868700016],[96.82351665100009,46.318128141000045],[97.01807353200002,46.22103603000011],[97.18135853800004,46.19704165900015],[97.38346064100006,46.12550865300011],[97.48670959500004,46.04472822900004],[97.65256466000017,45.98795407800003],[97.60250055800009,45.91103787900016]],[[94.76424363600012,45.03544583200005],[95.07812462100014,45.15517394300008],[95.27545155300004,45.108843979000085],[95.55421454200018,44.93091863800015],[95.69889859600016,44.77653085500009],[95.74201963200017,44.679301783000085],[95.66828151600015,44.54166691000006],[95.58119957600019,44.50924989900011],[95.25987261200004,44.518942900000184],[94.87978364600013,44.6462470780001],[94.75610363500016,44.73938292999998],[94.66841853400012,44.84022476900003],[94.66448960100001,44.99115686199997],[94.76424363600012,45.03544583200005]],[[81.08634154500015,40.81164807700003],[81.30879960200008,40.86807840200004],[81.52552058200007,40.878831545000025],[81.92878752300004,40.95713863700013],[82.28849756900007,41.04783653000004],[82.58460958800003,41.05218874900015],[82.89731559700016,41.02170997000013],[83.27245354200011,41.007316901000024],[83.42547557800009,41.0155298250001],[83.57008352400015,41.077319371000044],[83.76939361500007,41.18984809800003],[84.03796353900015,41.23113467100006],[84.22867564100017,41.19342633200017],[84.45767963000009,41.30198019300008],[84.67023463600015,41.38109245100014],[84.82304360500012,41.3287858540001],[84.7751995340002,41.21659290700018],[84.8896715210002,41.20794496200011],[85.01783752600011,41.24020187800005],[85.22198464500002,41.24697680300011],[85.48788459800011,41.210753067000155],[85.62681564900004,41.20783096800005],[85.95150761200017,41.138750843000025],[86.1230776270001,41.11596581200013],[86.48012558000005,40.99592203900011],[86.61588257200003,40.927231839000115],[86.80622050599999,40.866292386000055],[87.06294261000016,40.69538454200011],[87.48019458800007,40.469371048000085],[87.67624663300006,40.322826715000076],[87.7123186570002,40.17488746500004],[87.66197158200009,40.07176172500016],[87.43371559399998,40.09260165100011],[86.76622759600014,40.51422328300009],[86.48008752600009,40.67162369],[85.97721859700005,40.88418741400011],[85.72046665300013,40.92872381800015],[85.59540564000008,40.929449020000106],[85.388999598,40.867841361000046],[85.30384851400015,40.648365753000064],[85.15019263900007,40.46317916900017],[84.82369957200012,40.33493437400011],[84.60640761700012,40.30453187000012],[84.27436858100003,40.33063160800009],[84.03460658700004,40.37727287600006],[83.61365550700009,40.344280531000095],[83.33763155600013,40.39390190100005],[82.91639750299998,40.366077167000185],[82.64767452500007,40.29856898400004],[82.3149185010002,40.40533381100005],[82.13816863800014,40.50308457200015],[81.94387863700007,40.685295412000016],[81.72182458700013,40.70666541000003],[81.3078075200001,40.52360715900005],[81.12026964500006,40.37776908400008],[80.92057063400011,40.33274854100017],[80.92941253599997,40.23870979000009],[81.03353857200011,40.282552173000056],[81.09488656000013,40.179567584000154],[81.04003153000014,40.00796152700008],[81.07557649900014,39.57185244600004],[81.06545250100004,39.10889227300015],[80.95407863300011,38.816717736000044],[80.8536686290002,38.42684725500004],[80.74008965000013,38.12306445300004],[80.60787954500012,37.99771946100003],[80.48329965300019,37.98921669100008],[80.46073154600009,38.093584797000176],[80.52344561600017,38.24445721000012],[80.58648658100003,38.32593785800009],[80.61987253900014,38.50216687000011],[80.59838050100018,38.62342585200008],[80.65797449200011,38.834093421000034],[80.69434357000017,39.08970861100005],[80.68086949300005,39.19672388900011],[80.69899753800013,39.39270502300019],[80.64002950800005,39.640020621000076],[80.63746665700018,39.85657748300014],[80.61039763600019,40.069987946000026],[80.50434862300006,40.193765187000054],[80.3115306520001,40.12236327400012],[79.93108361000009,39.85254562000006],[79.87821157100018,39.83341074100019],[79.72852352000012,39.90001887500006],[79.59829757900013,39.993576673],[79.54409751000009,40.111495298000136],[79.56236251600018,40.25414355600003],[79.83092456100002,40.365493116000096],[80.07364654000008,40.40880559500005],[80.42303460700003,40.56352781700019],[80.63323262200004,40.68639360900005],[80.79675265700007,40.74621173200006],[81.08634154500015,40.81164807700003]],[[84.27121765599998,38.07394717100016],[84.19373349900007,37.95929530800004],[83.97396854700014,37.916731166000034],[83.80289457300012,37.81575773100013],[83.51550258300006,37.594754101000035],[83.35366865200012,37.495832891000134],[83.13199664900003,37.41125160900003],[82.86725658400007,37.40964563699998],[82.7511365470001,37.46206639400009],[82.63981665900008,37.583573313000045],[82.65328956200005,37.68711043700006],[82.86246465000005,38.109820711000054],[82.91149861600013,38.25942611500011],[83.03359260300016,38.345263510000166],[83.09769454800005,38.31776701100017],[83.11260964200011,38.23503930300012],[83.00696564300006,37.97466386299999],[82.9596405800001,37.75695197400006],[83.0412365630001,37.696707045000096],[83.19303853000002,37.69245423500007],[83.28235659299997,37.760998757000095],[83.36751555600006,37.90226215700005],[83.52098065900014,38.07835303400009],[83.56547565700004,38.175538352000046],[83.70574161000013,38.27647775600008],[83.93284558900001,38.25408600500003],[84.07602660000009,38.33916366300008],[84.26786757700017,38.237374334000094],[84.30876958800019,38.117625436000026],[84.27121765599998,38.07394717100016]],[[91.4521335880001,49.235538560000066],[91.23521462700018,49.275094270000125],[91.18170154000012,49.3447009460001],[91.12209363500011,49.5637975250001],[91.17291261100007,49.697309173000065],[91.11228965800012,49.79762529900006],[90.8542026450001,49.930169172000035],[90.79238862400013,50.1193576120001],[90.97210651900008,50.36010682600005],[91.13486463800012,50.414359701000194],[91.46377554800017,50.42114267200003],[91.66383364000006,50.390624162000165],[91.75777465800019,50.331907422000086],[91.99794753300017,49.677281789000176],[91.94048355100017,49.36201611400014],[91.74394954700017,49.255977831],[91.67819251100019,49.16579408500013],[91.57091554900018,49.162955804000035],[91.4521335880001,49.235538560000066]],[[92.80988355099998,47.50018318800011],[92.54086251300009,47.70194750000013],[92.437393617,48.002013934000104],[92.45291153800014,48.1468741760001],[92.54603565600013,48.20378243700003],[92.63398763600009,48.188260325000044],[92.7167585950001,48.08996272900009],[92.73745753700018,47.98649165500018],[92.90300766899998,47.836462629000096],[93.20824456400015,47.61399903900019],[93.32205957700018,47.41223070400008],[93.31171463200013,47.24667956700006],[93.17202753400005,47.28289290900017],[92.80988355099998,47.50018318800011]],[[94.03361559900009,46.62042550300009],[93.94914261200006,46.744998856999985],[93.96592754000011,46.79059909200009],[94.15356465700017,46.75133909600015],[94.3654095490001,46.64103257900018],[94.72558562800009,46.561163100000044],[94.68030558200007,46.45576284700013],[94.58010864600004,46.437707557000124],[94.43121352400016,46.28436801400011],[94.30418360200014,46.31245208399997],[94.189803648,46.507833912000024],[94.03361559900009,46.62042550300009]],[[95.43862960600018,46.49074773700005],[95.53059366800011,46.49359775200003],[95.67705552400008,46.441797758000064],[95.95799261100018,46.22634294800008],[95.94326761900004,46.12498545500017],[95.8185505990001,46.057320362000155],[95.4784235300001,46.12066374500017],[94.95127859800004,46.0735525880001],[94.76864665000011,46.03995942900019],[94.56398052300005,46.12127361300003],[94.58282455000005,46.23433107000005],[94.75504265400019,46.31537032700015],[94.94657852900008,46.339925448000145],[95.2266006480001,46.446912731000054],[95.43862960600018,46.49074773700005]],[[97.91253659600005,48.43962455000019],[97.9488295660002,48.52906850900007],[98.07991767000004,48.488185944000065],[98.31066861500011,48.5279354430001],[98.74329367500013,48.52438838900008],[98.85923752400004,48.500591160000056],[99.15989655900012,48.49664328400007],[99.42991655200018,48.45799282000013],[99.78497363600019,48.489468207000186],[99.92594953600013,48.54438057000016],[99.9981076640002,48.45690183099998],[99.97690564000004,48.38252618700017],[99.89080052800011,48.36759114400013],[99.50637862000019,48.379413148000026],[99.25846857800013,48.40281223700015],[98.99896250900014,48.34660570800003],[98.48536658800003,48.286650290000125],[98.39643057200016,48.24434481300011],[98.1682055980001,48.261839186000145],[97.94947061400012,48.254544919000125],[97.9894715710002,48.36560396200019],[97.91253659600005,48.43962455000019]],[[112.30757152500007,49.34617398200015],[112.39019060400028,49.50870478500019],[112.61347159600018,49.622040353000045],[112.83501468500003,49.65224940300004],[113.03976463100003,49.63882142600005],[113.0892406590001,49.596237838000036],[112.8609776300002,49.38319249000011],[112.575691677,49.157477895],[112.39236453400008,48.96099166800019],[112.23657965500001,48.87903593300007],[112.09956353400003,48.88908415900016],[112.05577060400003,48.997148181000114],[112.18814868300012,49.15051991000013],[112.30757152500007,49.34617398200015]],[[37.105,9.321666666000056],[36.93833333400005,9.535833332999971],[36.93833333300017,9.5825],[37.0175,9.661666667000077],[36.999166667000054,9.837500000000148],[37.12250000000017,9.81666666700005],[37.161666667000134,9.62916666700005],[37.12583333300017,9.616666667000175],[37.0825,9.4491666670001],[37.105,9.321666666000056]],[[54.26159489700018,24.36255428800007],[54.255569439000055,24.41390557700015],[54.26177476100014,24.361654966000117],[54.26159489700018,24.36255428800007]],[[52.31762036200007,24.46471727300002],[52.318969345000085,24.473800426000082],[52.320767989000046,24.474969544000032],[52.31762036200007,24.46471727300002]],[[54.53588812100003,24.542328765000093],[54.537147172000175,24.542148901000132],[54.53696730700011,24.542148901000132],[54.53588812100003,24.542328765000093]]],[[[-3.920014533999904,33.50106862900003],[-3.849041438999961,33.53984733600004],[-3.852935503999902,33.62054528200002],[-3.989214520999894,33.53742546900014],[-3.920014533999904,33.50106862900003]]],[[[11.040260574000172,33.774730894000186],[10.970439488000011,33.866715241000065],[10.793720471000029,33.90209626000018],[10.745180534000099,33.8851175420001],[10.729840478000028,33.753121510000085],[10.834779559000026,33.73712280400008],[10.892589545000021,33.667223934000106],[11.040260574000172,33.774730894000186]]],[[[1.424415514000088,38.90806639900012],[1.495900575000121,38.93008901100012],[1.614719584999989,39.043070025000134],[1.535081446000049,39.1236398960001],[1.35663156600009,39.072126563000154],[1.232866563000186,38.97159519000019],[1.21540756100012,38.89373837300019],[1.347099498000091,38.87216268400016],[1.424415514000088,38.90806639900012]]],[[[8.42597347000003,39.10241540900017],[8.348014562000174,39.09258041900017],[8.410241476000067,38.950271628000166],[8.46589647500008,39.0539418570001],[8.42597347000003,39.10241540900017]]],[[[3.126795473000186,39.82191814600009],[3.016078579000123,39.9259196270001],[2.773461541000131,39.848299683],[2.361061511000059,39.59118530600017],[2.402994496000133,39.51728726200008],[2.491853567000078,39.506229352000105],[2.64957449800005,39.55473978500015],[2.790923560000181,39.35797661900017],[2.96827055000017,39.35173947700014],[3.075545500000032,39.26233172800005],[3.230701568000143,39.349565547000054],[3.300415534000081,39.49823737500009],[3.455619547000026,39.655519262000155],[3.474406577000138,39.739460167000175],[3.340085573000181,39.76448065100004],[3.25263851800014,39.72581929000012],[3.126795473000186,39.82191814600009]]],[[[4.21891051900019,39.98127790600017],[4.15491452100008,40.06006997600008],[3.834038503000102,40.04814504200016],[3.841991420999989,39.913068828],[3.96752450200006,39.928838541000175],[4.202981551000107,39.81839690800007],[4.319059510000102,39.86342449200009],[4.21891051900019,39.98127790600017]]],[[[9.511354494999978,41.13666760400008],[9.447839450000174,41.12638770300015],[9.234985544999972,41.255132730000184],[9.153758533000087,41.154486692000035],[9.021227568000143,41.12484694200009],[8.797181475000116,40.917631040000174],[8.702985480000166,40.90467613800013],[8.528020459000174,40.80577722400017],[8.315561509000077,40.829580823000185],[8.248568477000163,40.882669283000155],[8.120919468000181,40.71614802400018],[8.196364476000042,40.55887401600012],[8.272668461000023,40.57998350400004],[8.396955489000106,40.41557264100004],[8.38247742700014,40.33301542100003],[8.478295489000118,40.26176538800007],[8.445162496000023,40.17521536500004],[8.482091485000126,40.06756993500005],[8.405076547000021,40.00789665200011],[8.402484527000183,39.891966213000046],[8.513745575000144,39.894758058000036],[8.548933475000183,39.846636713000066],[8.506854477,39.72151250100006],[8.449195533000022,39.715065308000135],[8.454294580000123,39.52098804000019],[8.388760501999968,39.45866406400006],[8.377446442000178,39.3484624890001],[8.43538148600004,39.30008935200004],[8.365450428999964,39.222759589000134],[8.55033845000014,39.043231126000194],[8.580344490000016,38.94060176200014],[8.64782752700006,38.87879277000019],[8.72015145000006,38.92345892600014],[8.845418490000043,38.86888686900005],[8.994315456000095,38.957332376000124],[9.048111517000109,39.042063191000125],[9.025228586000082,39.131070789000034],[9.090742547000104,39.19488976100007],[9.217883444999984,39.22088237800017],[9.298135474000162,39.20425067100007],[9.457018472000073,39.11112420600017],[9.572969529999966,39.135544713],[9.596144487000174,39.355195671000104],[9.65852445400003,39.463478126000155],[9.660410550000165,39.64061154500013],[9.706030567000084,39.83843083000016],[9.684044499000152,39.95545728600001],[9.742584549000185,40.060280026000044],[9.643833492000056,40.16683044400003],[9.627257440999983,40.2449695630001],[9.69385752900007,40.34196444400004],[9.774804585000084,40.38837386800003],[9.836651464000113,40.514562582],[9.753636592000078,40.580464626000094],[9.763481471999967,40.65640265700017],[9.669564426000079,40.78851637100013],[9.687601444000165,40.84028468100013],[9.54449452900002,40.9030780440001],[9.591219448000118,41.00481406500006],[9.57271455300014,41.09850614000004],[9.511354494999978,41.13666760400008]]],[[[-0.714856563999888,37.64631219300003],[-0.871153577999905,37.701071167],[-0.754886521999879,37.786336412000026],[-0.7656425159999,37.85691807200004],[-0.651088552999965,37.99567545000008],[-0.636157533999892,38.12821831800005],[-0.525129502999846,38.19479912700001],[-0.509336488999963,38.32941366600005],[-0.414205575999858,38.34707852700018],[-0.397098446999962,38.419683075000194],[-0.158619554999916,38.52855645400007],[-0.103932497999836,38.51892061800004],[-0.002876417999971,38.63259263600003],[0.15447151900014,38.68110390700008],[0.195776532000082,38.76811158200019],[0.121916542000065,38.845064159],[-0.067169470999886,38.888127695000094],[-0.151797523999903,38.96084238200012],[-0.227397428999893,39.07777563100018],[-0.256078457999934,39.212051708000104],[-0.336967511999944,39.383195251000075],[-0.326708564999933,39.49476944700007],[-0.20516158099997,39.706917596000096],[-0.081159537999952,39.850782570000035],[-0.006018457999915,39.89514295499998],[0.057873437000069,40.047565014000156],[0.148244435000038,40.090773557000034],[0.200653458000033,40.18660134200019],[0.389042432000053,40.34091536500017],[0.510612550000189,40.53420423100005],[0.594664431000126,40.62183434700006],[0.78163753400014,40.66169364900003],[0.896928433000085,40.717441185000155],[0.701885569000183,40.8021381370001],[0.991142533000186,41.03821175800016],[1.218282554000041,41.105907193],[1.397282455000095,41.12633774700009],[1.538251482000135,41.18683530600015],[2.116150514000083,41.28528344200015],[2.344073573000117,41.48703350400007],[2.748580532000176,41.63390205000013],[3.046913421,41.76748796100014],[3.207499455000175,41.897461105000104],[3.223955477000175,42.07382053900011],[3.13455057800013,42.134466123000095],[3.134682509000129,42.2336092860001],[3.25952944800008,42.23684436500014],[3.312187581000046,42.318325852000044],[3.174879434000104,42.36211442299998],[3.180805440000142,42.44855883400004],[3.054264518000139,42.59173515100008],[3.050632472000188,42.94424497500012],[3.09291347400017,43.06082132199998],[3.243980515000089,43.21578879800012],[3.357418510000173,43.276515352000104],[3.539242441999988,43.28229450600003],[3.675101526000049,43.39750510600015],[3.802488517000029,43.43938679400014],[3.972998556000164,43.53750837100017],[4.134392437000088,43.53648527600018],[4.182733555000027,43.462198815000136],[4.559523572000103,43.44262589700003],[4.608590563000178,43.34264203000009],[4.83842553300002,43.33942304400017],[4.849491489000059,43.403128021999976],[4.964725559000158,43.42161380700014],[5.034814531000052,43.332545357000186],[5.342732461000082,43.34966505900019],[5.347624475000032,43.21667376000016],[5.698131526000054,43.176506003000156],[5.865710581000144,43.05527837000005],[5.945281497000167,43.10730333400011],[6.032539456,43.076648367000075],[6.191276442000117,43.11558113400008],[6.644976456000052,43.16490092300006],[6.704877559000124,43.20713766800003],[6.632557493000036,43.27913955800011],[6.749698445000149,43.41571278000015],[6.924738568000123,43.439222844000085],[6.993484423000041,43.54280238100017],[7.144568563,43.548315494000065],[7.141978555000151,43.61658223900014],[7.278828547000103,43.70087971000015],[7.492369433000022,43.743874683000115],[7.520335485000089,43.78057551600017],[7.675436569000112,43.77903073200008],[7.996005474000128,43.850209350000114],[8.184344491000047,43.952095072000134],[8.184268551000116,44.005757022000125],[8.294097467000086,44.15540366500011],[8.427714559000151,44.1866455330001],[8.465820534999978,44.28841340500014],[8.770151514000133,44.427650228000175],[9.246251493999978,44.350707374000194],[9.749940508000122,44.09652381300003],[9.898987510000154,44.09794991000018],[10.074279592000096,44.02794693700014],[10.18499447500011,43.93206399900015],[10.252435436000042,43.83100641000004],[10.267848582000113,43.667958780000106],[10.326815438999972,43.460584628000106],[10.383726550000176,43.43744068400008],[10.499999473000173,43.28618957700019],[10.50116958600006,42.93710392800017],[10.644484540000121,42.95333900400004],[10.774971495000045,42.888177251],[10.776194582000073,42.76673688500017],[10.9740675110001,42.719022230000064],[11.0997814750001,42.55971024600018],[11.179302434000135,42.51406039000017],[11.14805352600007,42.440791995000154],[11.533804468000028,42.33914985200016],[11.687895532000141,42.233556480000175],[11.825289510000175,42.02115888500009],[11.890028480000126,42.031337030000145],[12.117420461000052,41.91467686400017],[12.194231550999973,41.821548555000106],[12.21362157599998,41.73228245900009],[12.397782550000159,41.65203311199997],[12.607009437999977,41.442618805000166],[12.837814530000173,41.39820125600005],[12.96714444600019,41.33476399500012],[13.02838849800014,41.20921901100007],[13.253755579000028,41.26872448900008],[13.349978486000055,41.261384624000186],[13.525941456000055,41.18426725900002],[13.574656574000073,41.22643074700005],[13.715946461000158,41.223402030000045],[13.821678470000165,41.13878168800005],[13.970501508000098,40.96288761700009],[14.027626525000016,40.78835946200019],[14.267979443000058,40.818881156000145],[14.458052508000094,40.700996393000025],[14.48348554900008,40.59726045100001],[14.691278461000081,40.60984537600012],[14.841218472000037,40.591507615000125],[14.986165550000123,40.39224178100005],[14.984642558000019,40.335842469],[14.90451659300004,40.22499280500011],[15.0639274830001,40.142882006000036],[15.122312468000189,40.148489666000046],[15.314732467000056,39.99819661000009],[15.451265455000112,39.99800567000011],[15.593619508000131,40.05583208500019],[15.769921442000168,39.87797413499999],[15.827772500000037,39.63786446000012],[15.869084554000153,39.53738706600012],[15.98352955100006,39.435955309000065],[16.043983525000158,39.250285927],[16.06031951900019,39.09916138600016],[16.152706532000025,38.93373899500011],[16.216417546000173,38.876931652],[16.181489485000043,38.73922301700014],[16.133954538000125,38.70204961200005],[15.988643518000117,38.710754554000175],[15.86873553100014,38.6582273460001],[15.826545557000031,38.60209122600003],[15.923806479000177,38.527762520000124],[15.903461588000027,38.442944868000154],[15.756624559000159,38.25359398699999],[15.626453435000144,38.204109913000025],[15.622621564000099,38.00152266600003],[15.65825957200002,37.951505335000036],[15.790040524000176,37.899813467000115],[16.05752147200002,37.91352307600016],[16.141878454000107,38.01891712700012],[16.161056584000107,38.12465517100003],[16.31711152800017,38.28030761600007],[16.48212655900005,38.33867851900004],[16.58214546300013,38.43273990100016],[16.524557597000182,38.69799059200011],[16.60006345700009,38.79595106800008],[16.738008461000106,38.87678262200012],[16.92335547400006,38.92020121500019],[17.108322452000095,38.89936933600006],[17.163078576000032,38.931412011000134],[17.156381435000014,39.01898865000004],[17.099491447000105,39.106103111000095],[17.140342496000187,39.19596080100001],[17.096492570000066,39.244327064000174],[17.07936448600003,39.387886938000065],[17.002534452000134,39.46008295200005],[16.833538520000104,39.52658798900018],[16.774398494000025,39.59274115400012],[16.613111566000157,39.59974507300012],[16.523626535000062,39.635877446],[16.491235508000102,39.79604220500005],[16.624254468000174,39.934964371000035],[16.607883437,40.06322090100008],[16.730052526000065,40.183477407000055],[16.73771459200003,40.22950176600011],[16.87499658700017,40.38917484300009],[17.08244852300004,40.49909076300003],[17.228502516000162,40.45535114200004],[17.214902542,40.39110888300007],[17.525321465000104,40.27110718700004],[17.85309746600018,40.26975719800015],[18.01563447100017,40.08133670800004],[17.97415343800003,40.02716446800008],[18.09473449100011,39.88643516299999],[18.33296058500008,39.780875654000056],[18.390718435000053,39.80277237000007],[18.407381491000137,39.98414703200007],[18.478643594,40.03477523600009],[18.524442481,40.14029585300017],[18.441606478000097,40.2763601260001],[18.23527755000009,40.45419611600005],[18.046972563000168,40.555738011000074],[18.02414344300007,40.621087184000146],[17.658119478000117,40.75659858600005],[17.50644659300019,40.800806252000086],[17.176055439000038,41.00513123600007],[17.063415568000096,41.05165046299999],[16.62125257300005,41.17681340000013],[16.42902753700008,41.255418721000126],[16.25782750000019,41.302968083999986],[16.00222052400011,41.430194981],[15.89822859900005,41.53027607800004],[15.923344469000142,41.61358817200016],[16.055875434000086,41.67023676200017],[16.198795433000043,41.76824987600003],[16.180953546000012,41.87522525700007],[16.069421595000108,41.93241481500007],[15.444740479000075,41.89289900300008],[15.184709535000081,41.90791283500016],[15.06524243600012,41.93717171200012],[14.96624947800018,42.00313812900009],[14.816344504000028,42.041372683000134],[14.723566558000073,42.09413341099997],[14.714013536000152,42.17876967800015],[14.50893753400004,42.24852840300019],[14.394191457999966,42.36909856000011],[14.198572590000026,42.480036736000045],[14.084727570000098,42.580427964000194],[13.917971450000152,42.82550961600015],[13.831004510000128,43.096141321000175],[13.620042568000088,43.47551547900008],[13.605185477000134,43.53988849600006],[13.493485553000085,43.62529925100017],[13.420831552000095,43.61708213600019],[13.227773523000053,43.69882681500019],[12.937609469000108,43.89939938800012],[12.69329459300019,43.98109092500016],[12.525013470000033,44.08872260800018],[12.394055453000021,44.04613885200018],[12.117491540000174,44.14908253700003],[12.05286052800011,44.14624375400007],[11.808423444000027,44.2711294180001],[11.737611450000145,44.32468424700005],[11.378705564000029,44.48214299199998],[10.777633587000025,44.59501588000012],[10.503197504000184,44.708121784000184],[10.418637511999975,44.7051388320001],[10.330656530000113,44.767153852000035],[10.181416576000117,44.75348179399998],[10.050622509000164,44.84994375400015],[9.880607505000057,44.883940753000104],[9.660449442000186,44.95651177400015],[9.564676475000113,44.952509918000146],[9.283061460000113,45.04059483499998],[9.124369569000066,45.03055482399998],[8.848357520000036,44.886702925],[8.761622424,44.786551755000175],[8.609935458000052,44.82179598200014],[8.58308453400008,44.89824581200003],[8.457770555000081,44.84357786600009],[8.138665465999964,44.852892675000135],[8.26933045200019,44.933436897000036],[8.414770553000096,44.97697384300005],[8.388967535000177,45.11274290500012],[8.244064546000061,45.069094983000184],[7.950053533000073,45.050967776],[7.962854544000095,44.9774846360001],[7.816514561000133,44.90891966300006],[7.786623520000092,44.83523468699997],[7.851161493000177,44.72154590500003],[7.782052533000126,44.62359599000018],[7.796862518000125,44.50706792200015],[7.68328856800008,44.37124219900005],[7.546535471000027,44.358024273000126],[7.529386432000138,44.43206028200018],[7.691034453000157,44.52631310700008],[7.677086463000023,44.595160887000134],[7.500000485000101,44.707926821000115],[7.46292648900004,44.801588889000016],[7.499999480000099,44.997858864000136],[7.400573512000051,44.96264565000013],[7.326099464000038,44.76655873700008],[7.454020550000052,44.63745781400013],[7.440945451000118,44.47454798200005],[7.46425653,44.30767434800015],[7.620418427000118,44.30815831900014],[7.828958502000091,44.42095526600008],[7.971315572000094,44.41742313200007],[8.18622958100002,44.4518269890001],[8.275273556000059,44.37268036600011],[8.222284505,44.28414148400009],[8.044944556000189,44.23308546800007],[7.951963434000106,44.15336267200007],[7.74734458100005,44.14775065300017],[7.714006567000183,44.05419587300008],[7.560219431000178,44.14174267200019],[7.500000485000101,44.04590298500011],[7.295047530000147,44.055026687000066],[7.173152529000049,44.11384987800017],[6.929491442000085,44.272899508000194],[6.891857535000099,44.24778330300012],[7.049659435000137,44.11759155900006],[6.928048581000155,44.05417692900011],[6.880774480000127,44.14883057700018],[6.733792443000027,44.16883063600005],[6.777178515000116,44.07233095800018],[6.678411532000155,44.04692088400003],[6.581944544000123,44.133411731000194],[6.439337525000155,44.31459427900006],[6.379632558000083,44.47995715900004],[6.405092589000162,44.55720109100008],[6.113140508000185,44.61313587800015],[6.044477466000103,44.59532886000011],[5.857574436000107,44.75624799000008],[5.805426425000064,44.553587988],[5.717387440000095,44.626093965000166],[5.578752437999981,44.60911105600019],[5.517454574000055,44.687309016000086],[5.260334497000088,44.86616072500016],[5.193428470000015,44.80100584400003],[5.045093426000108,44.780123674000095],[5.076648442000078,44.88673695600011],[5.154706424000153,44.92133979900012],[5.024713499000086,45.069235966],[4.853586552000024,45.10280180000012],[4.767988545000037,45.3842040830001],[4.880701506000037,45.51824932300002],[4.733163581000042,45.498149351000166],[4.684426502000122,45.43014093600016],[4.746318475000123,45.24481487700018],[4.742618536000123,45.120528687000046],[4.674927459000116,45.03756997400012],[4.682501514000023,44.943785698],[4.529886504,44.90267866500011],[4.515326467000136,44.732210703000135],[4.340212584000085,44.67973294900003],[4.229176507000147,44.54728312000009],[3.983983543000022,44.360008269000105],[3.969202559000053,44.282199397000056],[3.822397547999969,44.205406412000116],[3.714900478000061,44.18516545700004],[3.765136577000021,44.055847946000085],[3.651344530000131,44.084056906000114],[3.604943487000014,43.998062938000146],[3.403357542000094,43.991444084000136],[3.365823547000048,44.01646507100014],[3.447178467000072,44.16398673400016],[3.579808507000109,44.2800065240001],[3.551527462000024,44.395286359000124],[3.606755487000044,44.47117896000003],[3.800829570000133,44.55605997900017],[3.708476420000181,44.58985480700005],[3.578521549000016,44.55828403300018],[3.378966539000032,44.544856056000185],[3.251466560000154,44.56097713800017],[3.195507466000151,44.45068302700014],[3.018343537000135,44.44725717600011],[2.776809441000069,44.49815695300009],[2.508591557000159,44.49787817100014],[2.419214485000055,44.45855313100009],[2.403020480000123,44.39411523900003],[2.581949470000097,44.35408025200019],[2.607534559000044,44.128715518000035],[2.710126540000147,44.05221589900003],[2.558278473000087,44.023441832000174],[2.447745477000126,43.93733303100004],[2.606712462000132,43.93106102100012],[2.524131438000097,43.81200145100007],[2.626155460000177,43.75126366600017],[2.524878433000026,43.657944920000034],[2.507008550000023,43.54282551500012],[2.688631484000098,43.52914256100007],[2.689624572000014,43.46454474199999],[2.573518449000176,43.38725906800005],[2.317910468000093,43.39270998700016],[2.23833955200007,43.37390401400012],[1.972873446000165,43.39283990700005],[2.180246425000178,43.28188228400006],[2.336185531000069,43.25740746200006],[2.332680555000138,43.21477760500005],[2.169331511000166,43.15575392000005],[2.129896500000029,43.052108502000124],[2.19742044200018,42.97125297500014],[2.168332556000053,42.836098475000085],[2.435290472000133,42.7854519980001],[2.323986509000065,42.691484326000136],[2.33926956900018,42.619323012000166],[2.247714543000143,42.59426816300004],[2.263164570000129,42.53036034200005],[2.531929457000047,42.57739908000002],[2.629541581000126,42.52416158900007],[2.499998430000119,42.42227218000005],[2.605993463000061,42.390835181000114],[2.499997424000071,42.28744993800012],[2.381501453000169,42.293850862000056],[2.185362570999985,42.24920733700009],[1.870388419000051,42.255158153000025],[1.720857446000025,42.17630875100019],[1.537746556000116,42.11341732000011],[1.473329451000041,42.117750094000144],[1.38345751200012,42.00731919000009],[1.295395561000021,42.06162151700005],[1.236291576000156,41.99818308300007],[1.070946466,41.9980231560001],[1.181507457000066,42.1449409870001],[1.103997484000161,42.173394867000184],[1.007116429000064,42.266953167],[0.901049479000164,42.271092318000115],[0.7664165,42.16171099600001],[0.797724418000143,42.342911818],[0.740944567000042,42.36661148100012],[0.625667582000176,42.22984430200012],[0.476426455000023,42.357162562000156],[0.190200554000057,42.38692837600007],[0.112006450000081,42.498084483000184],[0.02885445000004,42.37916254300012],[-0.179664501999923,42.26745306400011],[-0.276034427999889,42.321609881000086],[-0.398552538999866,42.309486799000126],[-0.332562485999972,42.41132725800003],[-0.368182556999955,42.502467547000094],[-0.785862515999952,42.498172492000094],[-0.863141483999925,42.42799417000009],[-0.966521530999955,42.45947978300006],[-0.821460458999923,42.58347227100012],[-1.045658431999925,42.64688371600005],[-1.212023451999869,42.62816072300018],[-1.346412516999976,42.88786846200014],[-1.401220440999964,42.778199808000124],[-1.37293252399985,42.63812060400011],[-1.451714533999962,42.60093596700017],[-1.552844542999878,42.66524377200005],[-1.802401460999931,42.642969702000016],[-2.031687584999929,42.70307733600009],[-2.130622540999923,42.63603485100009],[-2.323706553999955,42.61889872000006],[-2.404447582999978,42.57720814000004],[-2.68340251799998,42.56315923200009],[-2.877822438999942,42.61245991000004],[-3.096789432999913,42.598441177000154],[-3.334729535999884,42.6736736200001],[-3.61314350299989,42.80355171200006],[-3.726609493999888,42.77138297400006],[-3.842535573999953,42.788602923000155],[-3.95593752699989,42.75192807299999],[-4.120966471999964,42.76590489700004],[-4.312926471999958,42.878285264],[-4.537799522999933,42.80401389000008],[-4.744014457999981,42.82808051400008],[-5.033184585999891,42.810917729000096],[-5.238415484999962,42.84276359600011],[-5.519038585999965,42.78931991100012],[-5.726840550999952,42.79137582400017],[-5.887896472999955,42.82296068000011],[-6.094121466999979,42.735529048000046],[-6.301317586999971,42.712259208000035],[-6.518130432999953,42.793633909],[-6.642783581999936,42.792333038000095],[-6.786952484999915,42.73314406100013],[-6.91041557199992,42.61466099800009],[-6.99864448999989,42.48015961500016],[-7.185896542999899,42.50292855200013],[-7.280427478999968,42.63612990200005],[-7.383672576999913,42.68208536200012],[-7.464998495999907,42.67058773800005],[-7.628357429999824,42.53553633500013],[-7.784537431999922,42.447688960000164],[-7.656288445999962,42.335228630000074],[-7.527683564999961,42.32872092000002],[-7.330931462999956,42.35298569200006],[-7.243357505999938,42.29169486900008],[-7.312588505999884,42.21314352800016],[-7.258820440999898,42.1001953710001],[-7.347953431999883,42.0176949800001],[-7.666434572999947,42.079328455000166],[-7.747902480999926,42.07935963600016],[-7.942842581999912,41.97745832400011],[-7.907491569999934,41.893665109000096],[-7.631234434999897,41.87442797000011],[-7.512499578999893,41.72836425500009],[-7.521252465999964,41.6682417020001],[-7.666335497999967,41.52820122200012],[-7.660426423999979,41.39587812800005],[-7.759592552999948,41.30054604900005],[-7.723266557999978,41.197806044000174],[-8.035140579999961,41.13470372400013],[-8.316406572999938,41.114786981000066],[-8.363615462999917,41.067008289000114],[-8.293839471999945,41.00212917300013],[-8.212734499999954,40.99393921600006],[-7.859010474999934,41.05693843800009],[-7.69691754299987,41.05302744199997],[-7.618833576999975,40.894792198000175],[-7.530233506999934,40.79577929000004],[-7.549707517999877,40.61952613800014],[-7.598129437999944,40.57458974999997],[-7.888308578999954,40.415225630000066],[-8.1581984849999,40.364155197000116],[-8.353494482999963,40.24061365600005],[-8.368518540999958,40.32836564399997],[-8.453923428999872,40.43826228500018],[-8.441685514999904,40.58544263800019],[-8.591114564999941,40.717806971000186],[-8.73708356499992,40.61511742500011],[-8.830328548999887,40.33396559300013],[-8.899005505999924,40.186357261000126],[-8.85308457799988,40.132178148000094],[-8.933407517999967,39.994385862000115],[-9.057351558999926,39.72085636500009],[-9.082729446999963,39.57319858],[-9.25477052499997,39.400429953000014],[-9.370572551999885,39.33413496600008],[-9.358757588999936,39.16343750800013],[-9.426577578999968,39.073366582000176],[-9.421933501999945,38.93225204500004],[-9.493368439999927,38.777331173000164],[-9.46963055499998,38.69530553300007],[-9.319270442999937,38.660851217000186],[-9.149597588999939,38.68219070400005],[-9.070093560999965,38.84621231200009],[-8.98925848599987,38.837530336999976],[-8.937189432999958,38.75889568000008],[-9.046110588999966,38.710083331000135],[-8.997193465999885,38.64282358700018],[-9.281388431999915,38.654858156000046],[-9.219674489999932,38.59969517500008],[-9.18763952699993,38.48746098800012],[-9.219935502999931,38.40192953400003],[-9.039552587999935,38.43471585100002],[-8.879071495999938,38.51232858600014],[-8.793553451999912,38.329226749000156],[-8.785252517999936,38.19881892000018],[-8.867939489999912,37.980851887000085],[-8.793463430999907,37.90300244600013],[-8.8142475329999,37.59824097300003],[-8.782282474999931,37.54960380600005],[-8.807085531999917,37.403648553000096],[-8.88550443899993,37.316492350000146],[-8.906147557999873,37.15779643600007],[-8.989561575999915,37.028950323],[-8.77755558399997,37.05784542500004],[-8.630286550999813,37.12083324900016],[-8.535129485999903,37.12292738300005],[-8.302243502999943,37.08448294599998],[-8.207154499999945,37.102564723000114],[-8.082015534999925,37.0713721410001],[-7.998089549999975,37.017720249000035],[-7.889356483999961,37.01205559100015],[-7.780737579999936,37.04489488200005],[-7.520684507999874,37.182492037000145],[-7.400848437999969,37.178071086000045],[-7.258453481999936,37.21410857600017],[-7.074196450999921,37.22392311400006],[-6.66717542299989,37.081180141000175],[-6.511928494999893,36.984838210000134],[-6.405012457999817,36.834534090000034],[-6.446886434999954,36.75612893000016],[-6.398104428999943,36.62917863600006],[-6.232857554999896,36.58717138700007],[-6.281661520999933,36.48977350400003],[-6.152276451999967,36.31655527200007],[-6.083473431999948,36.278043109000066],[-6.035303472999885,36.189704220000124],[-5.907351540999912,36.18429521000007],[-5.793311556999925,36.089532598],[-5.645509434999894,36.065382156000055],[-5.592353584999955,36.02042313600015],[-5.43085358899998,36.0762689070001],[-5.433192474999885,36.17126872700004],[-5.326660496999978,36.1938740490001],[-5.211943422999923,36.37141298500018],[-5.165698451999958,36.40582539100012],[-4.912732445999893,36.49815423400014],[-4.733445548999896,36.47927869100005],[-4.645190477999904,36.495186370000056],[-4.537302475999923,36.571222804],[-4.430834535999963,36.693447214000116],[-3.9698045479999,36.725489386000106],[-3.872051439999893,36.749937888000034],[-3.724831524999956,36.72956751700008],[-3.614743440999973,36.75478598100017],[-3.473811461999901,36.701564081000186],[-3.244805461999931,36.758405622000055],[-2.973792547999949,36.736003310000115],[-2.703961481999897,36.68872837000015],[-2.604064450999942,36.74415823100014],[-2.577885420999962,36.805062816000145],[-2.361646567999856,36.82973528300005],[-2.219105430999889,36.72363145300011],[-2.090451431999895,36.763238628000124],[-2.00705752999994,36.87866933700002],[-1.926999457999955,36.92470040200004],[-1.832311444999959,37.17639302900017],[-1.678785487999903,37.35562276200005],[-1.536136559999875,37.42003651400006],[-1.327347542999973,37.548188773000106],[-1.206180426999936,37.560727598000085],[-1.152918460999899,37.52874544000014],[-0.984824421999974,37.58775403900012],[-0.927897552999923,37.54854383100019],[-0.751503417999913,37.584180330000095],[-0.714856563999888,37.64631219300003]],[[10.202510474000178,44.27438327200002],[9.952357435000067,44.38835804500013],[9.879919519000111,44.361816246000046],[9.833890465000025,44.27761047300015],[9.694135473000188,44.34810211100017],[9.380535450000139,44.44467119100011],[9.239625431000036,44.5123359480001],[9.141772579000076,44.60991186300009],[9.160075471000141,44.72580676200005],[9.236373588000163,44.74559677000008],[9.62270958800002,44.733023748000164],[9.774575592000076,44.67412076100004],[9.896780555000078,44.591940895000164],[9.938253541000165,44.4876970090001],[10.11091655600012,44.48596497200003],[10.406228440000177,44.36684421400008],[10.719491510000125,44.272025443000075],[10.800371511000037,44.1419027660001],[10.749339467000027,44.094631682000056],[10.631922582000072,44.085025686000165],[10.202510474000178,44.27438327200002]],[[11.798513520000029,43.69896092500011],[11.471989441000176,43.974530074000086],[11.249232485000107,44.05695368600004],[10.994420449000131,44.04431578800012],[10.951056505000054,44.117999590000124],[10.993021509000187,44.17066962600012],[11.146989527000073,44.213539372000184],[11.345297477000088,44.15937467600014],[11.599692430000175,44.04962186800003],[11.906981550000012,43.88802430700014],[11.94852343600013,43.83912746900006],[12.017715544000112,43.63644215300019],[11.91148749399997,43.612184255000045],[11.798513520000029,43.69896092500011]],[[12.291329530000041,43.55958730900005],[12.321084448000136,43.61449615099997],[12.443737507000094,43.61858115600006],[12.667212457000062,43.51265938000006],[12.713802428000122,43.46387653600016],[12.586564467000073,43.41444979400006],[12.388972499000147,43.46648582300014],[12.291329530000041,43.55958730900005]],[[12.911089463000167,43.23975668300005],[12.948767458000077,43.18521496799997],[12.887289551000038,43.07885347800004],[12.781597440000155,43.09310522800007],[12.730772429000126,43.198725926],[12.797117540000158,43.272013599],[12.911089463000167,43.23975668300005]],[[13.075639465000052,42.61156304600007],[12.982143526000073,42.5127444310001],[12.90518843500007,42.49253784200016],[12.817755462000093,42.58480717300006],[12.85238244500016,42.701650233000066],[13.032427569000106,42.86491830799997],[13.111165492000055,42.97008185600015],[13.250884442000086,42.972133914000096],[13.340503583000043,42.83811247800003],[13.429436581000061,42.77659383500003],[13.587546433000114,42.746572205000064],[13.630727483000157,42.69533329600006],[13.583814474000178,42.56303735900002],[13.789418536000085,42.415890031000174],[13.830549541000039,42.33187167800014],[13.706183555000052,42.277871266000034],[13.537349562000031,42.36260644000009],[13.462227592000033,42.31446497900009],[13.808753575000026,42.05932085200004],[13.937316547000023,42.17085380900005],[14.056612487000109,42.15807509400014],[14.209839545000136,42.18510572600019],[14.295273434000023,42.10148836300016],[14.463968456000032,42.038336925000124],[14.516993549000176,41.92900472100001],[14.417413521000185,41.80199072500011],[14.468789559000015,41.573698528000136],[14.644863505000046,41.40981321000004],[14.670745481000097,41.299463275000164],[14.602794565000181,41.27206937100004],[14.497570500000108,41.36007751100004],[14.3426305160001,41.40718900300004],[14.258897483000055,41.45956382800006],[14.261863503000143,41.54919286000006],[14.166749521000156,41.593927413000074],[14.036087553000073,41.52571397600019],[13.883670523000092,41.55184472700017],[13.882815569000059,41.62935822000003],[13.722818448,41.762494024000034],[13.602318531000037,41.76857090300001],[13.447363461000066,41.73737111300011],[13.145183446000033,41.89220397500014],[13.053307561000054,42.02104505900007],[13.168117506000101,42.141184051000096],[13.200584473000163,42.223241374000054],[13.119185464000168,42.35624742600015],[13.29696646900004,42.62300384100013],[13.189323554000055,42.69487245900007],[13.075639465000052,42.61156304600007]],[[12.789030512000181,42.75585298300007],[12.710861553000086,42.800545794000186],[12.69602742900014,42.888760296000044],[12.75771454800008,42.963317995000125],[12.837556535000033,42.94310403000014],[12.85887255299997,42.82718784100018],[12.789030512000181,42.75585298300007]]],[[[9.42160744600011,41.92579260800011],[9.580432441000085,42.155344103000175],[9.530044463000081,42.569438283000125],[9.465037439000184,42.658235663000085],[9.508728445000145,42.80429585800016],[9.47571950400004,42.98049570000006],[9.362332471000059,43.00442167500006],[9.36565455400006,42.917725136000115],[9.316007536000086,42.83392856800003],[9.345151581000152,42.729658195000184],[9.094448521000118,42.71171723400016],[9.06015949700003,42.65740468100006],[8.715910542000188,42.55812740800013],[8.635933439000041,42.32596679400007],[8.684455439000033,42.2505883390001],[8.570554427000104,42.22660151200006],[8.602639513999975,42.113333166000075],[8.744626439,42.04103673600014],[8.663229442000159,42.004393235],[8.625309545000164,41.89852091300003],[8.778593431000104,41.87836126200011],[8.733807582000054,41.79729166200008],[8.804901543000085,41.64117603300008],[8.781553584000164,41.56368164999998],[8.886352520000116,41.50489014300001],[9.120182473000057,41.43909086200006],[9.222011532000067,41.363655576999975],[9.356115446000047,41.565870668000116],[9.422695585000156,41.72105942600007],[9.42160744600011,41.92579260800011]]],[[[10.151315485000055,42.72194416200006],[10.245689513000116,42.715650358000175],[10.356473462000167,42.754827206000186],[10.277106562000142,42.81467567100003],[10.108312466000143,42.78627191600009],[10.151315485000055,42.72194416200006]]],[[[12.237403550000067,63.13048115000004],[12.065461546,63.18492362300003],[12.10706545800008,63.279117104000136],[12.337270573000126,63.36411949300009],[12.244197585000052,63.41013765000008],[12.049660485000118,63.37486593100016],[11.99922255100006,63.30352386500016],[11.759524595000187,63.30971105000003],[11.575198497000088,63.38534163300005],[11.286647457000015,63.363745492000135],[11.182855523000057,63.3043779800002],[11.323919433000185,63.11731653300012],[11.477324522000117,63.062561247000076],[11.728974569000059,63.07023337100003],[11.787398446000168,62.921213023000064],[11.663116447000107,62.90226506000005],[11.49772255400012,62.96747190800011],[11.0657745850001,63.042819351],[11.122650492,62.97658924000007],[11.281925428000022,62.94034086100015],[11.298823512000183,62.847853768],[11.173013492000052,62.78459185700018],[11.09338843,62.88070311700005],[10.869495558000153,62.91528467000012],[10.543400464000172,62.88668461100008],[10.237391427999967,62.92941538600007],[10.05083457100011,62.83676015100008],[9.879366481000034,62.57416803300009],[9.801581581000164,62.643792982000036],[9.932456450000018,62.77931561600019],[9.675845489000153,62.785251009000035],[9.582109493000132,62.85270202800007],[9.598238454000182,62.97374743900002],[9.530825489000051,63.039581086000055],[9.365023565000172,62.99841839800001],[9.141118454999969,62.99842644400013],[8.968960534000075,62.95508529900013],[8.807229533000168,62.969982121000044],[8.737737521000042,63.057773672],[8.499999589000026,63.04682539700019],[8.39971145900006,62.93926160700005],[8.297114449000162,62.941832840000075],[7.946169527000052,63.07280058000009],[7.688407564000102,62.95848868700017],[7.413796467000168,62.882256116000065],[7.28089351300008,63.011770937],[7.062584498000092,62.97877557500004],[6.895070486000122,62.90981866400011],[6.97084557300002,62.82701686000007],[6.976948437000146,62.71901000200006],[7.344960590000085,62.74850239900019],[7.503466570000114,62.65780853000007],[7.343588472000079,62.59677084100008],[7.076336519000108,62.58669545800018],[7.022584547000122,62.647440115999984],[6.706997510000122,62.642827722000106],[6.234914474000107,62.579477969000095],[6.397894546000146,62.38696895400017],[6.213774475999969,62.353821377000145],[5.96975246300002,62.265762611000014],[5.982859581000071,62.19976585200004],[5.67759854600007,62.16513853400005],[5.447085479000123,62.189450411000166],[5.533352530000059,62.09764946100006],[5.500589514000126,62.02695280100011],[5.289268492000019,62.11655937000012],[5.290584451000143,62.1655423740001],[5.091402435000077,62.19439875200004],[5.082582494000121,62.09905359700008],[5.28479456700012,62.06997258400003],[5.271386539000105,61.90280541599998],[5.390510483000185,61.93227166100007],[5.641638505000174,61.90184451400006],[5.913614499000175,61.91083175900019],[5.90149946400004,61.850164214000074],[5.392817518000186,61.90340438700008],[5.268463435000172,61.81553672800004],[5.114633551000168,61.79850704800003],[4.968958588000021,61.734845655000186],[4.982562584000107,61.625653093000096],[5.174035428000025,61.63819258800015],[5.325861534000126,61.59647283800007],[5.2139205470001,61.50269610600003],[4.935580508000157,61.39921078200001],[5.05686245600009,61.31287332300013],[4.965671541000063,61.24729951600017],[5.083524452000063,61.15704418800004],[5.390698573000066,61.06596039300018],[5.587206425000034,61.14646572300006],[6.165252476000035,61.16879746000012],[6.359054483000023,61.10643207700002],[5.903221442000074,61.112578359],[5.616889427000046,61.01932063400005],[5.606545488000108,60.92323200400011],[5.851448438000034,60.82213082900006],[6.12769752700018,60.901872903000026],[6.293661557000121,60.869392693000066],[6.324198506000187,60.77132861700005],[5.999999567000145,60.74603974500002],[5.999999567000145,60.466239914000084],[5.930961518000061,60.39904940500014],[6.108518559000117,60.35416766600014],[6.547910496000043,60.427302453000095],[6.22920958300017,60.26895925000014],[6.089614517000086,60.17137562400012],[6.139495558000135,60.10440622900012],[6.017466447000118,60.04102278],[5.999999567000145,59.964294839000104],[5.822327527000084,59.93380667200006],[5.812720525000145,59.823668631000146],[5.949592478000056,59.73609433900015],[5.718565433000094,59.66080473200009],[5.527230555000074,59.727271045],[5.234876478000047,59.528864859],[5.346807575000128,59.30624268400004],[5.900555494000116,59.3299217280001],[6.130759436000119,59.30429372400005],[6.154055427,59.24004744200005],[5.915930587000105,59.075750572000175],[6.073097474000065,58.920350086999974],[6.195175535000033,58.92874657500016],[6.295291502000111,58.85844302700008],[6.257962528,58.67839387900017],[6.382191553000155,58.57221226500013],[6.613398474000121,58.53911883500007],[6.707981546000042,58.43453849900004],[6.828020457000036,58.40838042300004],[6.752150487000165,58.30105099100007],[6.773823574000062,58.242878069000085],[6.913276483000061,58.168775339000035],[7.112829481000063,58.24827199100014],[7.156557535000104,58.44480079800013],[7.348187455000016,58.514498167000056],[7.340867539000101,58.72132213100008],[7.400127427000029,58.72971543400007],[7.472632566000073,58.56473476899998],[7.69393844700005,58.5838745100001],[7.720359546999987,58.755510238000056],[7.852445433000184,58.74477201400009],[7.858892457000138,58.6362362590001],[7.99164152000003,58.61733372600008],[8.09968156900004,58.653776900000196],[8.15151542600006,58.75237926200015],[8.327238506000128,58.849935563000145],[7.955987586000163,59.22694384500005],[7.985543517000053,59.32215053000016],[7.86260145000017,59.385423673],[7.783907449000139,59.62193617100007],[7.906880529000034,59.61541991200016],[8.082485424000026,59.71181749800007],[8.08415543500007,59.54859166800003],[8.284443526000075,59.49821274200002],[8.457189521000146,59.5175804700001],[8.501490562000185,59.67150590799997],[8.710129543000164,59.66161760900013],[8.825636528000189,59.68982874800008],[8.934542427999986,59.779533888000174],[8.755239437000114,59.94285493600012],[9.029362539999966,60.070239916],[8.86303155100012,60.28203971300019],[8.958074454000155,60.30581481300004],[9.112016488,60.26407209700017],[9.26079845400011,60.13468417800004],[9.527562581000097,60.157657298000174],[9.576462437000089,60.30276665000014],[9.528781478000155,60.36368582000006],[9.157134428000063,60.446593068000084],[9.02708450700004,60.58538145900013],[8.870404440000073,60.66657662000017],[8.10745243200006,60.49473285300013],[8.036746552000068,60.53811574000008],[8.206648568000105,60.59401498700004],[8.460664491000045,60.618062667],[8.615448571000115,60.66655382100015],[8.982768545999988,60.72601185700006],[9.116212468000072,60.7130145430001],[9.282960541000023,60.60870159000007],[9.38400656400006,60.61750963000003],[9.411740437,60.730193254000085],[9.133756462000065,60.85464104700003],[9.09602851,60.96464648500006],[9.156656492000138,61.0570988770001],[8.969088441999986,61.165745442],[8.961161509000078,61.24000541600009],[9.190976530000114,61.19478856799998],[9.342757542000015,61.05817394000013],[9.53548850900006,61.08283400200003],[9.841434512999967,61.0504148120001],[9.961254489999988,61.11787354300009],[10.205255546999979,61.038749382],[10.267333431,61.07581466099998],[9.936825433000138,61.2478106440002],[9.610209488000123,61.332596109000065],[9.715987430000155,61.369492577000074],[10.021207561000153,61.26586224600004],[10.134807495000018,61.27629570400018],[10.18396953600012,61.39471255000018],[10.067596533000028,61.5039399800001],[9.679027427000165,61.545670794000046],[9.418178577000162,61.55644003100019],[9.64250144,61.641465721000145],[9.30935951300006,61.70872127400003],[9.141768556000045,61.82644024300009],[8.563397455000029,61.824071349],[8.208914532,61.8814805130001],[8.850413434000131,61.875743436000164],[9.139330428000108,61.896351183000036],[9.090532496000037,62.019735647000175],[8.88729347200018,62.090561388000026],[8.704363464000096,62.11606735200013],[8.144165503000067,62.25378805600019],[8.23198655800013,62.29560604200009],[8.620367574000056,62.196469751999985],[9.166015558000026,62.08158889599997],[9.327244483000186,62.01622111500018],[9.616307490000054,61.778186297000104],[9.854345494000029,61.65258616],[10.207515476000026,61.60221393900014],[10.37013747300017,61.4855834440001],[10.409384561000081,61.37727902900002],[10.539995568000165,61.294161563000046],[10.677688444000069,61.10563093500019],[10.758363591999967,61.060326078],[11.011280479000163,61.071045526000034],[11.18371047700009,60.95103896800009],[11.300520512000105,60.99608348400017],[11.192831497000157,61.10610400900009],[11.258324503000097,61.172242758000095],[11.229366536000157,61.259441876000096],[10.952196444000151,61.44579354400014],[10.97435149000006,61.51781052100017],[10.747901468000123,61.7293293570001],[10.874421435000102,61.889495959000044],[10.791569507000077,62.00564265100013],[10.53315459400011,62.13682412900005],[10.37924558400016,62.16894995300004],[10.176481479000074,62.07637384400016],[10.033603557000106,62.129072881000184],[10.377471471000149,62.21399849100004],[10.588256555000157,62.184998280000116],[10.706004525000026,62.288033830000074],[11.074071495,62.43854498400009],[11.087782445000073,62.524875904000055],[11.270161594000115,62.50151771900016],[11.46295743700017,62.589354533000176],[11.707567524000126,62.49843468800003],[11.90181544800015,62.54711661400012],[12.023120530000028,62.399725373000024],[12.39910957300009,62.36853111400018],[12.621046443000125,62.283059506000086],[12.623826553000129,62.37225821100009],[12.411002488000065,62.449566516],[12.701683537000065,62.521964534],[12.930016471000158,62.47820094100001],[12.939073452000173,62.57918795500012],[13.083410496000056,62.65608437300017],[12.815842544000134,62.81260434500018],[12.857416448000038,62.8587483980001],[13.177569443000152,62.92570706400005],[13.325267462,62.98175567700008],[13.522871500000065,62.98991495700017],[13.486515498000074,62.90133416600008],[13.771763566,62.86831650800008],[13.877929590000178,62.95571142800014],[13.804350561000035,63.015165943000056],[13.646774469000036,62.99744542600018],[13.548103543000138,63.122168816000055],[13.313461551000103,63.094743564],[12.999999495,62.99900647200019],[13.000000501000102,63.15956937100009],[12.834988487000032,63.0589491500001],[12.773432461000027,63.1517800690001],[12.473514554000133,63.16297275900018],[12.334607475000041,63.207316715000104],[12.237403550000067,63.13048115000004]]],[[[-6.686301584999967,61.444061508],[-6.742454468999938,61.57198577899999],[-6.987874582999893,61.58526824500012],[-6.745346560999906,61.410548312],[-6.686301584999967,61.444061508]]],[[[-7.470073570999887,62.109360991000074],[-7.242197450999868,62.02762771200008],[-7.076407428999971,62.09691772100007],[-7.270107511999981,62.16037727700018],[-7.470073570999887,62.109360991000074]]],[[[-6.724556423999957,61.98195991800003],[-6.80927248699993,62.08088682800019],[-7.035067547999972,62.19775888900017],[-7.123083565999934,62.28505825500014],[-7.257724423999889,62.280717435000156],[-7.271887492999895,62.19040058400003],[-7.048889473999964,62.10354780600005],[-6.917963474999965,61.99924943800005],[-6.724556423999957,61.98195991800003]]],[[[-6.645923442999958,62.20259189400008],[-6.76394248399987,62.267883735000055],[-7.034079488999907,62.339255976000175],[-7.080527469999822,62.28106042200005],[-6.955032441999833,62.170684671],[-6.727397553999936,62.09038235100007],[-6.623627580999937,62.11957350200015],[-6.645923442999958,62.20259189400008]]],[[[11.932490531000042,78.37163886299999],[11.300548508000077,78.55748728200007],[11.064162577000104,78.68443388800006],[11.183597489000135,78.72610921300014],[10.825835564999977,78.87666244400015],[10.488614501000143,78.89557000600013],[10.536655547000123,78.77306379700008],[10.900564591000148,78.61555174300008],[11.073324500000126,78.45498699900008],[11.322503562000179,78.44636570900013],[11.85388755800011,78.29636166100016],[11.932490531000042,78.37163886299999]]],[[[13.54993990200012,-71.3119844499999],[13.363116929000057,-71.26148245799999],[13.181930621000049,-71.39719507899997],[13.442400880000037,-71.40795375899995],[13.54993990200012,-71.3119844499999]]],[[[11.870510548000084,0.049302061],[11.769860487000074,0.031501246000062],[11.493370502000118,0.019839001000094],[11.372110515000145,0.028272369000149],[11.225460569,0.001828470000021],[11.172249566000119,-0.055772303999959],[11.18585054500005,-0.185278574999927],[11.25745949000003,-0.242819166999936],[11.54833047400001,-0.25497929699992],[11.727780483,-0.356161775999851],[11.939889572000027,-0.369966770999952],[12.164130461000013,-0.369600816999878],[12.238050465000015,-0.395166962999951],[12.268409551,-0.266697532999956],[12.251449440000158,-0.109232081999835],[12.20897951000012,-0.01896904299997],[12.12040056300009,0.050999899000146],[12.024539586,0.06930949600013],[11.870510548000084,0.049302061]]],[[[14.550291497000103,35.86427967900016],[14.427916549000031,35.93008214500014],[14.295873578000112,35.95111552500015],[14.304857470000059,35.865576695000186],[14.420397479000144,35.80056799500011],[14.51492254800013,35.78205672900009],[14.550291497000103,35.86427967900016]]],[[[15.20026550900019,37.681380400000194],[15.200476565000088,37.72532453900004],[15.293056530000058,37.861530131000166],[15.455650532000107,38.02372800400019],[15.565581539000107,38.17378033200009],[15.574812529000042,38.26680386700019],[15.498567553000044,38.29208754200005],[15.340070457000081,38.21041981000013],[15.211462558,38.19294505],[15.091927566000038,38.11077742100019],[14.92316750100008,38.17694651200003],[14.734541487000172,38.15392477600017],[14.638265438000076,38.06760726700014],[14.285980585,38.00333131300016],[13.932785458000183,38.027584182000055],[13.869667548000109,37.99818549500003],[13.637097562000065,37.99819639100002],[13.546868554000184,38.03038105600018],[13.512099581000086,38.100848721000034],[13.376860591000025,38.10352975700005],[13.296482498000103,38.21398681200003],[13.15988949500013,38.160806654000055],[13.096879543000114,38.18043321600004],[13.047906430000182,38.06795142800013],[12.872026441000173,38.02692787899997],[12.794495513000186,38.085571027000015],[12.761590508000154,38.16364057600009],[12.610758495000141,38.058833594000134],[12.499999524000032,38.01212728200011],[12.418642592000026,37.79452637000014],[12.503702481000062,37.65532290700003],[12.592093506000026,37.62648429900008],[12.643151534000083,37.56035376500017],[12.857541506000075,37.574948334000055],[12.961029512000152,37.55070669700007],[13.004105454000182,37.48578198400014],[13.141506472000117,37.48479006900004],[13.25304445800009,37.38521691500006],[13.410823559000107,37.29530977200005],[13.542716494,37.272388116000116],[13.64810853300014,37.18636414100007],[13.863999537000154,37.08803486100015],[14.07370452900011,37.096029688000044],[14.21438957700019,37.06225933600007],[14.38082450200011,36.91790653400017],[14.476814560000093,36.78089326300005],[14.69075258100014,36.71329472200006],[14.836121435999985,36.72388760400008],[15.126563434000047,36.67274458300005],[15.088618558000178,36.7855200730001],[15.139525545000026,36.90650479900012],[15.283307538000088,37.0070965220001],[15.288089582000168,37.10284669000009],[15.216150557000049,37.12138243100014],[15.187223435000021,37.27283034600015],[15.072240487000101,37.3379079450001],[15.071813513000166,37.47927712400019],[15.16191545200013,37.5620355100001],[15.20026550900019,37.681380400000194]]],[[[20.813030453000067,37.648707909],[20.904787482000188,37.810048146000156],[20.75309146300009,37.85039929800013],[20.691377522000096,37.93189469900011],[20.61760151800013,37.81413700600007],[20.813030453000067,37.648707909]]],[[[20.66600650600003,38.08462789500015],[20.803100580000148,38.10176385800003],[20.692647547000092,38.25894901800018],[20.39518755,38.342550623000136],[20.331085437000127,38.170205450000026],[20.486824550000108,38.18959916200009],[20.491125473000068,38.112341652],[20.66600650600003,38.08462789500015]]],[[[20.561321565000128,38.62972770200014],[20.640499537000153,38.58825153000009],[20.708280467000066,38.642148509000094],[20.72068551700005,38.742175794000104],[20.677040444000113,38.85116719000007],[20.597631466000166,38.77826223400001],[20.561321565000128,38.62972770200014]]],[[[19.91813052400005,39.5416477550001],[19.90792656300016,39.61598769200015],[19.83932655300015,39.709316495999985],[19.949523602000113,39.792350479000106],[19.83518958100018,39.82939782100016],[19.663923494000187,39.80514428100014],[19.63124446500018,39.747848943000065],[19.83470745400018,39.54440573600016],[19.91813052400005,39.5416477550001]]],[[[13.892201456000066,45.92550688799997],[13.784386544000142,45.92729592100011],[13.627727433000075,45.97756219500019],[13.415999552000187,45.79727567100019],[13.397920458000158,45.68772855500009],[13.60951657400011,45.75665680100008],[13.72146745300006,45.67225656800002],[13.721855535000032,45.533965391000095],[13.544845498000143,45.52563428299999],[13.473365465000143,45.485732065000036],[13.567391476000068,45.18764795100009],[13.644589475000089,45.05887191100004],[13.868537499000126,44.8075978760001],[13.971493590000136,44.801054795000084],[14.01277345700015,44.95348691200013],[14.120203472000128,44.96164987999998],[14.124728526000126,45.04566085800002],[14.215960513000141,45.1725499640001],[14.299318540000058,45.341518068000084],[14.55250247600003,45.26322908000009],[14.732466463000094,45.130633910000086],[14.826963537000154,45.09502691500012],[14.903893482000058,44.954901778000135],[14.868504584000107,44.795222666000086],[14.879869439000117,44.69340098300012],[14.95437550600002,44.593020819000174],[15.215555441000163,44.41284510500009],[15.314318567999976,44.284061521000126],[15.181745526000043,44.29451727400004],[15.132247538000115,44.183475665],[15.450669502000096,43.92023126700008],[15.6615794760001,43.814228355000125],[15.709150465,43.760239678000175],[15.858601475000057,43.73124064000007],[15.942802554000082,43.66254591400008],[15.91895352500012,43.574029328999984],[15.990936471000055,43.48761961800017],[16.15020554000006,43.466569642000024],[16.333271502000173,43.54165825100017],[16.514757476000113,43.49558041500012],[16.635234593000177,43.42751181700004],[16.88222648100009,43.39593383500011],[17.17319653900006,43.168673785000124],[17.298732471000108,43.118625106000025],[17.484487515000126,43.00607659800011],[17.442216572000177,42.95072200700014],[17.268199544000026,43.01304665300012],[17.208509497000136,42.97576193600008],[17.438383527000042,42.86702048900008],[17.656290547000083,42.80402881000009],[17.887689580000085,42.763422177000166],[18.311912452000172,42.49973957300017],[18.468498474000114,42.43292222600013],[18.58863059200013,42.41453920400005],[18.794372453000165,42.24435119700007],[18.9144014740001,42.20173374600006],[19.0991845530001,42.099783484000056],[19.178199581000115,41.919898789000115],[19.607633482000153,41.79324789700007],[19.532527439000148,41.47618463900011],[19.425716511000132,41.314636867000104],[19.521429464,41.23981664600018],[19.454837590000068,41.12991983700016],[19.445524457000033,41.01743402600016],[19.540933482000128,40.91972483900014],[19.453323483000133,40.88025026600013],[19.359878506000143,40.786833285000114],[19.38392450900011,40.715950044000124],[19.346574581000084,40.60135752500008],[19.463878478000083,40.58011778200017],[19.490386582000156,40.343891276000136],[19.39223650800011,40.296676853000065],[19.50186157500019,40.20193704000002],[19.83199456700015,40.05430993200008],[20.015388597000026,39.85438762700011],[19.97871743500008,39.70468566200003],[20.17725354100014,39.611159046000125],[20.135339499000168,39.53686789100004],[20.20590758000003,39.48241485700015],[20.21948844200017,39.40613266500009],[20.337352586000065,39.292364590000034],[20.460588523000126,39.282362465000176],[20.47648044400006,39.226036578000105],[20.677148570000156,39.07903878400015],[20.9421845170001,39.03310344000016],[21.086421480000126,39.04120522000011],[21.144214535000117,38.98528317300003],[21.062271541000086,38.88222281200012],[20.964628571000162,38.94802863100011],[20.85045850000006,38.92615605500009],[20.74195459600014,38.86863893200007],[20.772058536000145,38.76182146700012],[20.87092945500018,38.78676919600008],[20.897003544000086,38.69406953700013],[20.97375244,38.66570400400019],[21.071165578000148,38.542693036],[21.122266521000086,38.42966910700011],[21.096191594000118,38.34789945000017],[21.148700529,38.30915812600011],[21.37736656000004,38.403581607000035],[21.483180544000163,38.370619102000035],[21.506263467000053,38.30353135500002],[21.63887556900005,38.35583342500013],[21.751243530000067,38.34251240100019],[21.940460469000072,38.41060027700007],[22.174806579000176,38.34003370500011],[22.34728049800009,38.34763558800017],[22.450763474999974,38.42437526500015],[22.531711537000092,38.34319955000012],[22.636415590000126,38.38632779400007],[22.773700603000123,38.24433231900019],[22.944814474000168,38.176519538000036],[23.166406513000027,38.16026451300007],[23.20418743900018,38.08082502500008],[23.05471044500007,38.05302074400004],[22.952293478000115,38.07705601900017],[22.871776581000063,38.044082785000114],[23.011495531000094,37.92836189400015],[23.09172643800008,37.90875109100011],[23.258600575000173,37.968370227000094],[23.370738537000022,37.96945702500017],[23.552299445000187,38.04053472500016],[23.56692150700013,37.95411143600012],[23.677444445000162,37.928171961000146],[23.792392524000093,37.797886172000176],[23.888719534000074,37.78658032600015],[23.935228536000125,37.67019173299997],[24.02671248300004,37.644588204000115],[24.08116752900014,37.76175480500012],[24.028438484000162,38.00352962900007],[23.987829505000036,38.10536053200008],[24.06196056500005,38.19029016600007],[23.948781570000108,38.27497052299998],[23.63826558500017,38.36200904300006],[23.57143348600016,38.4474226480001],[23.40391343900012,38.49325891800004],[23.319257558000118,38.58005369300014],[23.33351148800017,38.6349305170001],[23.230464537000103,38.664014212000154],[23.094884571000023,38.64437641900008],[23.03972058400018,38.759562544000175],[22.760747545000072,38.79802206800019],[22.59850658800002,38.85665297800011],[22.913375464000183,38.93211776700008],[23.007575483000096,38.98855597100015],[22.998226475000024,39.076612558000136],[22.812223494000136,39.28123744600009],[22.92505246100012,39.29718250800005],[22.95546351400003,39.35164459400005],[23.120590527000104,39.30384327100006],[23.213800476000188,39.188392948000114],[23.346090545000095,39.19371093000012],[23.26219758500008,39.33666781000005],[23.210809477000055,39.36501440000012],[23.073110566000082,39.52948712200015],[22.899385564000113,39.62130165100007],[22.826118510000185,39.809333220999974],[22.70664956800016,39.88977199900006],[22.62086447700011,40.00281151900009],[22.56426047900004,40.181410429000096],[22.65960345400009,40.365951104000146],[22.607690472000172,40.46644811100009],[22.65741158600008,40.542448168000135],[22.949344557000074,40.61765311800008],[22.959554553000032,40.54011297],[22.825939473000176,40.51706122800016],[22.90485945000006,40.42431563700012],[23.038646527000026,40.331821670000124],[23.297477518000107,40.240033628],[23.315521576000094,40.10780240000008],[23.387535536000087,40.00627961499998],[23.587329598000167,39.93851662100019],[23.657026464000182,39.99431662700016],[23.493034528000123,40.04382316500005],[23.364368458000115,40.179716279000104],[23.425447554000073,40.283635282000034],[23.540449445000093,40.23687465600011],[23.669208554000022,40.22863591600003],[23.77264258000008,40.12665095300008],[23.817604450000033,40.03245227499997],[23.98589848200004,39.95648742200018],[24.023925500000132,40.02755724400009],[23.922933457000056,40.157385716000135],[23.776374539000017,40.203813245000106],[23.711755598000025,40.333999456000186],[23.855630463000125,40.37653308900002],[23.950008513000114,40.368240201000106],[24.030504456000187,40.307914974000084],[24.138231525000094,40.2903449960001],[24.308797555000126,40.11927722500013],[24.38808449200019,40.18757816900012],[24.162992506000023,40.36765330100019],[23.930957453000133,40.38994597800007],[23.831590494000125,40.49859874500015],[23.706584466000095,40.69487341299998],[23.85530658600004,40.7773424560001],[24.06248845700003,40.71039904500009],[24.154396529000167,40.73164281100014],[24.320886439000105,40.81659893200009],[24.31959545800015,40.86819658600001],[24.51721559000015,40.94489368300003],[24.61142952300014,40.85873945300011],[24.80822554500014,40.84327886500006],[25.067998495000097,40.99551032000005],[25.26763950300017,40.92663672400016],[25.561054562000038,40.848394675],[25.923765496000044,40.83536400100013],[26.046785516000057,40.772959558000025],[26.06442858400004,40.633335995000095],[26.115070534000097,40.58738455700018],[26.306322598000065,40.57798458800005],[26.79411851800006,40.643276932000106],[26.841340484000114,40.58375670200013],[26.69566149800005,40.496507795000184],[26.60221853300004,40.490945732000114],[26.233703466000065,40.32140782600004],[26.27751751700015,40.19434923800014],[26.190835563000064,40.03027717100014],[26.33394449000002,40.088610524000046],[26.344421533000116,40.19225527100019],[26.59728645300015,40.33189761],[26.638801517000047,40.404860569000164],[26.763578551000137,40.471109958000056],[26.98089950800005,40.55256395200013],[27.031042567000156,40.6577457730001],[26.89934744500016,40.677501583000094],[26.87300848800004,40.802607356000124],[26.47792446400001,40.822362831000135],[26.319890553000107,40.94088461800004],[26.1091785590001,41.00673318500003],[25.924806529000136,40.9935652150001],[25.766773455000134,41.15817959100019],[25.64472054000015,41.22598902000004],[25.32559751300016,41.19110337200016],[25.13463948600014,41.204272012000104],[24.818572502000166,41.184519219000094],[24.640785462000167,41.21744400500012],[24.634201477000147,41.10550201200016],[24.37739555400009,41.08575022500003],[24.14034644700007,41.184519219000094],[24.008651493000116,41.184519219000094],[23.844032591000087,41.07257823100019],[23.653076576000046,41.10550201200016],[23.534551603000068,41.184519219000094],[23.020334583000135,41.45112559900008],[22.84117559400005,41.52244922500017],[22.63349952500016,41.66534173100007],[22.457714587000112,41.73933935100007],[22.270282491000046,41.731046296000045],[22.263698507000072,41.55325976000012],[22.322959567999987,41.40839800900005],[22.4744094940001,41.14501061500016],[22.500747446000048,41.05282543800013],[22.48099347900012,40.69067039200013],[22.487579476000178,40.47337592200017],[22.375253591000103,40.49100373500005],[22.208061445000112,40.463839160000134],[22.180206537000174,40.54900901900004],[22.089048478000052,40.62654916800017],[22.036685555000133,40.722781966000184],[22.077402494000125,40.86445859300011],[21.828659459,40.82632294500007],[21.632734484000025,40.72322402700007],[21.46727353500006,40.71770001800013],[21.357833540000172,40.801821133000146],[21.332822444000044,40.988015390000044],[21.140260456000078,41.080894253000054],[21.12446056800019,41.161375611000096],[20.974332468000057,41.35406567400008],[20.62845457400016,41.551096726000026],[20.464818534000074,41.71886252900015],[20.407773480000117,41.89470681200004],[20.494113453000182,42.21961368700016],[20.466472451000016,42.319397897000044],[20.389574525000057,42.396297165000135],[20.224065464000148,42.45802300900016],[20.192884449000076,42.38858028200019],[20.095458571000165,42.367569533000164],[20.017137565000155,42.273965132000114],[19.88341553099997,42.23193843700011],[19.835657459000174,42.117319264],[19.719123523000178,42.096075498000175],[19.609758462000116,42.14699019500017],[19.58141153600019,42.30189581300016],[19.493204578000075,42.32527562300015],[19.372501484000054,42.44194383600018],[19.40497348000008,42.54213239000006],[19.282680507000066,42.51948834300015],[19.01851057900012,42.660932624],[19.046035575000076,42.764886999000055],[18.95182650400011,42.83051076300018],[18.79510855100017,42.753514935000055],[18.56780659200018,42.76445197800018],[18.482126442000038,42.812356734000105],[18.478618448000077,43.03258151700015],[18.38682755600007,43.019519494],[18.17096153000017,43.10206615300012],[18.038150442000017,43.10432809400015],[17.899421561999986,43.299468188000105],[17.878328503000148,43.42248787200009],[17.714986500000123,43.35723408500013],[17.625749574000054,43.395892092999986],[17.414356466000186,43.42504686700016],[17.254196569000044,43.473821497000074],[17.20490846399997,43.61671215900003],[17.074893579000047,43.71438362700002],[17.075672593000036,43.78004158900018],[16.908025476000148,43.910309273000166],[16.811471484000037,43.83575945200016],[16.974660433000167,43.70333577600013],[16.949495445000082,43.65239895000019],[16.991468496000095,43.54501134700013],[16.875474523000094,43.49809045900014],[16.77537347700013,43.68799387500002],[16.61548045900014,43.82258662100014],[16.52696756199998,43.86800832200004],[16.424900456000103,43.96968499800016],[16.29430956599998,44.01545387800007],[16.035474551999982,44.16263154800015],[15.936884595000095,44.127700637000146],[15.873754447000067,44.19639167500003],[15.573190463000117,44.26098245300017],[15.305482534000078,44.379241384000125],[15.013051510000139,44.590190083000095],[14.928945482000074,44.69196281600006],[14.911010556000065,44.786200721000114],[14.945366469000078,44.98762489500007],[14.851340458000152,45.11040787500019],[14.56369449600004,45.31747407600005],[14.314125508000018,45.417449058000045],[14.17480151300009,45.22120188300005],[14.11271943800017,45.310370916000124],[13.94648651700004,45.41445521000014],[13.91897157800014,45.568462455000144],[14.10479753400017,45.55483918000016],[14.322111449999966,45.47430702800017],[14.36136859600009,45.52385329599997],[14.229548584000042,45.585845349000124],[14.174558438000133,45.65814529900018],[14.052142586000173,45.691490354],[13.892201456000066,45.92550688799997]],[[16.347717545000023,43.781018584000094],[16.28194659400009,43.85729641700004],[16.367818522000107,43.92102520100019],[16.548585496000044,43.79564349600008],[16.600496466000152,43.714554953000174],[16.46599558600019,43.69657694400013],[16.347717545000023,43.781018584000094]],[[17.175638522999975,43.34084612300006],[17.263895437000144,43.23985156599997],[17.18907555200002,43.195120701000064],[17.030033464999974,43.29432924300005],[17.062713500000086,43.38624385200012],[17.175638522999975,43.34084612300006]]],[[[16.834615595000173,42.903550164000194],[17.01790652799997,42.91781716899999],[17.02795743500019,42.97649082700008],[16.826387583999974,42.9524351],[16.699987478000082,42.98333783600003],[16.68545543700003,42.91122111400006],[16.834615595000173,42.903550164000194]]],[[[17.074130490000073,43.13299118500004],[16.861583530000132,43.16316586900007],[16.67848957200016,43.16459196600016],[16.651334553000027,43.214243678],[16.468116543000065,43.21399976499998],[16.60644543800015,43.118648072000155],[16.78353443300017,43.122482290000164],[17.023437578000028,43.10247032900003],[17.074130490000073,43.13299118500004]]],[[[16.48504647900006,43.27427252200016],[16.639938517000132,43.249754617],[16.854015510000124,43.269148329000075],[16.804872579000175,43.34610224700009],[16.561265471000183,43.37750907100008],[16.47353946700008,43.370843949000175],[16.48504647900006,43.27427252200016]]],[[[15.118342463999966,44.40875624500018],[14.924128570000107,44.587706860000026],[14.885586568000065,44.50628220300001],[15.016849518000129,44.38845024600005],[15.118342463999966,44.40875624500018]]],[[[14.484925560000136,44.62200879300019],[14.4290445850001,44.871908866000126],[14.306514572000026,44.880556811000076],[14.320468597000058,44.80146282599998],[14.453619487000026,44.608538907000025],[14.484925560000136,44.62200879300019]]],[[[14.617129464000072,45.00175779000011],[14.710270513000125,44.93825481500005],[14.773391441000115,45.0062518310001],[14.573464442000159,45.22834276100008],[14.425179522000121,45.08174780100012],[14.518852487000174,45.01709667300014],[14.617129464000072,45.00175779000011]]],[[[11.897924568000064,62.28586744400002],[11.91248846000002,62.35911957800005],[11.813046567000185,62.42094030500016],[11.539409447000082,62.49830560600003],[11.27005145600009,62.443951311000035],[11.276626556,62.31040747700001],[11.118624496000109,62.35606839700006],[11.0359745720001,62.26175354600008],[11.132640547000108,62.05285590000011],[11.230675454000107,61.95975793300005],[11.289435445000152,61.79968202300017],[11.464317485000095,61.5806722800001],[11.497349559999975,61.45375501100011],[11.63160954400007,61.49372763700006],[11.688174482000136,61.60125287000011],[11.613389465000068,61.73058027200011],[11.610255472000176,61.88731750300008],[11.499758519000068,61.94708131100009],[11.602988529000129,62.04263919800013],[11.581057447000092,62.11937853900008],[11.793884530000184,62.20312699500005],[11.897924568000064,62.28586744400002]]],[[[16.353261503000112,68.54643414500009],[16.133319525000047,68.51009289500007],[16.064722532000076,68.42517348700017],[16.407447490000038,68.42863739200016],[16.353261503000112,68.54643414500009]]],[[[15.776039561,68.5496160830001],[15.765629572000137,68.62256412200009],[15.916620506000072,68.67122677000015],[15.853363456000181,68.78211884600017],[15.863604465000094,68.94291794700013],[15.603464556000063,68.93851443000017],[15.447238454000058,68.80397113800007],[15.434196548000102,68.66015628700018],[15.169560586000102,68.56093081400007],[15.220946514000104,68.36627921800005],[15.615935487000115,68.31431208900005],[15.664903571000082,68.3695441370001],[16.19925157600005,68.55977880600017],[16.46245054400015,68.57303947899999],[16.534891478000134,68.65882138500018],[16.451400513000067,68.83218563000008],[16.165546434000134,68.85940133400004],[15.979647556000089,68.66867900600005],[15.776039561,68.5496160830001]]],[[[17.44665948300019,68.86298744800007],[17.20986351000016,68.91311525200007],[17.09886146300005,68.86032418200017],[17.24701143400017,68.78636930900007],[17.44665948300019,68.86298744800007]]],[[[17.937349506999965,69.41710333300017],[18.038621505000037,69.47689798600015],[17.831056580999984,69.56600700400014],[17.557010591,69.56873095500004],[17.335580491000144,69.53188595300003],[17.27595347500005,69.39821924000006],[17.07721352200008,69.33192375000016],[17.13301453300005,69.23395707200007],[17.04845655300005,69.16156492100009],[16.7866035510001,69.10927039400013],[16.763494476,69.06521544700018],[17.15727058800013,69.06524679500012],[17.3671955210001,69.13066436400015],[17.84249352000012,69.13897284200016],[17.88509152500012,69.28843391000015],[18.015319479000027,69.32957346500012],[17.937349506999965,69.41710333300017]]],[[[18.32509048000003,69.51068242000008],[18.74581944,69.55819406500018],[18.7387504780001,69.6606472410001],[18.918750508000187,69.69579809300006],[19.006935506000104,69.77214952000003],[18.773599582000145,69.8743430240001],[18.69248153500007,69.76476372200017],[18.357780573000014,69.79661746900013],[18.214002435000054,69.63887172700015],[17.971353547000092,69.55505822700007],[18.15542248800017,69.50263327800019],[18.32509048000003,69.51068242000008]]],[[[19.500001463000103,69.8389254600001],[19.703189525000028,69.85774115600015],[19.848669525000105,69.97080783400014],[19.746200591,70.01054308400018],[19.43153958700003,69.87048315800013],[19.500001463000103,69.8389254600001]]],[[[19.461547471000074,69.93979998900005],[19.609790481000175,70.00652966100017],[19.243223536000073,70.08240901900012],[19.053962509000087,70.07882290500004],[18.768159559000082,69.99957921900011],[18.6671945060001,69.916414814],[18.94161248400019,69.84963770000002],[19.06927456900013,69.77527747800002],[19.34919543500007,69.82279616400012],[19.461547471000074,69.93979998900005]]],[[[20.280410462000077,70.08086775400005],[20.474206601000105,70.03023619800013],[20.666221586000063,70.04395469100018],[20.73327245300004,70.19840483600007],[20.461492595000095,70.21622073900005],[20.280410462000077,70.08086775400005]]],[[[19.806112591000044,70.05798566200019],[20.048957449000056,70.09621099600014],[19.783588573000145,70.20223469500013],[19.546398483000132,70.19990117300017],[19.693147502000045,70.06260224600004],[19.806112591000044,70.05798566200019]]],[[[19.042228515000033,74.35359554000013],[19.29999148400003,74.46749470800006],[19.12748755800004,74.52250631200019],[18.7902815810001,74.47498712400005],[19.042228515000033,74.35359554000013]]],[[[17.566944488000104,79.88924513100005],[17.03917543900002,79.956205808],[16.71473158100008,79.94926207200012],[16.521669528000018,80.04341582300015],[16.02276255800018,80.00815013900012],[15.731107531000077,79.87285683400006],[15.647497544000089,79.7642523470002],[15.892498562000128,79.49587688200018],[15.973892542000158,79.3239286770002],[16.151107433000163,79.2272578400001],[16.13220557,79.0530663020001],[15.630001494000169,79.30337423800012],[15.48971659800003,79.33282522900004],[15.291664463000075,79.59978046300006],[14.845265590000054,79.76730369500007],[14.557785589000048,79.80534663900005],[13.890822465000099,79.52894499900003],[13.914719439000123,79.35754530500009],[13.274999511999965,79.59672961800015],[12.701395535000017,79.59700370600007],[13.015838442000188,79.6878306800001],[13.884723457000177,79.72562937500004],[13.8247145630001,79.87451997100004],[13.095836499000143,79.82812915400012],[12.050840490000155,79.68505375500007],[11.83999053000008,79.83591225400016],[11.238320588000136,79.75868173400016],[11.366101529000161,79.63423813200012],[10.963882493000085,79.63979248400017],[10.697785566000107,79.51339439000003],[10.918342440000174,79.44226874400016],[10.843886496999971,79.36392561000014],[11.129174462000151,79.24169382400015],[11.236380513000086,79.09225337500015],[11.755265582000163,79.07502470900016],[12.109154564000107,78.9955677870002],[12.444166493000068,78.99140147800017],[12.251111482000056,78.89224239000015],[11.602489471000013,78.97557761800005],[11.646676518000106,78.86750689100018],[11.875279516000148,78.84390009900005],[11.641674533000185,78.73776760200008],[11.925548471000127,78.62637093600006],[12.355558545000179,78.58915126199997],[12.584173445000147,78.3927579060001],[12.871102587999985,78.35358558500019],[12.979167448000055,78.20497041800013],[13.62777152100017,78.19328168600003],[13.757510475000117,78.24914707099998],[14.325269583000079,78.30524312600005],[14.364999469,78.38553941100014],[14.67472152,78.43803426500006],[14.385552566000172,78.49692149300017],[14.588062532000095,78.55275703900008],[15.240825537999967,78.60831799300018],[15.464176436000173,78.4508208580001],[16.01445357700004,78.47859395900008],[16.309438566000154,78.56220260500004],[16.364711518000036,78.64778083100009],[16.831108439000047,78.67109744200008],[16.464155591000065,78.52470984900009],[16.40665255000016,78.42970215000014],[16.851388454000187,78.38358626000007],[16.818881589000057,78.33303064300014],[16.102500441000075,78.35552381600007],[15.76583258200003,78.33441918900013],[14.994994544000178,78.1330201610001],[14.552492584999982,78.09357324800004],[13.876935496000158,78.09189586200017],[13.588888543000166,78.04855806900002],[13.721661578000067,77.75965767100007],[14.47916149300005,77.75105113300009],[15.133879495000087,77.79660241800019],[15.600007524000034,77.88216438300003],[15.814715506000084,77.82939560900007],[16.66472246400008,77.85632968100015],[16.85527648300007,77.80354481300003],[15.66665555700007,77.74632139300007],[14.752227470000037,77.66187321500007],[15.913893537000092,77.56408875900013],[15.440556567999977,77.52519136400008],[15.00166251600018,77.56631616600015],[14.52693448600013,77.50103471900019],[14.32583955299998,77.58243087800014],[13.914161540000066,77.52686925400019],[13.968616585,77.40518782400005],[14.467214431000116,77.17072017600009],[14.739726532000077,77.17545142500012],[15.072488592000127,77.11877668300008],[15.250548546000118,77.01488752000012],[15.72832758900006,76.9976595240002],[15.568610591000095,76.91154804100017],[15.978615576000152,76.74932083100009],[16.28054849300014,76.70764584100016],[16.331659494000178,76.60597033800008],[16.822500560000094,76.56818689800008],[17.198329508000086,76.69374395200003],[16.94361453400012,76.8143119290001],[17.32026658600006,76.97154972700014],[17.32583049300007,77.04293420600004],[17.6230524450001,77.43268583100019],[17.80055651100008,77.48740708600019],[18.284717535000084,77.50019552300006],[18.449153544000183,77.76188625200012],[18.333892485000092,77.89745431600011],[18.552486485000088,78.05438600700018],[18.859447537,78.03079430200012],[19.07109847200013,78.08467703100018],[18.91999052700004,78.173015921],[19.06499057900004,78.35775222900014],[18.965545500000133,78.45526259600007],[19.681383501000028,78.51137206200008],[19.57777747800003,78.56971094700009],[20.13167359000016,78.63694571200017],[21.331935471000122,78.65527307900004],[21.534728578000056,78.8419471150001],[20.960836598000185,78.91446113900008],[20.516376459000128,78.93445164300016],[20.044445470000028,79.01308613200007],[19.670841582000037,79.14725039500013],[19.34806253700009,79.18391937700011],[18.978614564000168,79.15336935200008],[18.822778555000014,79.24949150900005],[18.88583360100006,79.44115478900011],[18.742488472000105,79.533384893],[18.35694355700008,79.62755389900013],[17.747493532000192,79.59923128100007],[18.098325466000176,79.71951008300016],[17.566944488000104,79.88924513100005]]],[[[21.85914947000009,78.58721437200012],[21.12359857300015,78.6022144580001],[21.055822504000048,78.5485919030001],[20.171112456000174,78.48775085300008],[20.663888567000186,78.38636368800002],[20.843896476000168,78.22329728199998],[21.09944343700016,78.20246808400003],[21.778327471000182,78.25274843900007],[22.1633285690001,78.24357813400007],[22.242774593999968,78.476930654],[22.090560573,78.58805306500017],[21.85914947000009,78.58721437200012]]],[[[20.615833440000188,79.01807571200004],[20.496942513000135,79.11308391400019],[20.123891495000066,79.04613798800005],[20.615833440000188,79.01807571200004]]],[[[22.992247910000117,-72.04389503799996],[23.103838913000175,-72.08146592799989],[23.04130586800005,-72.20737658099989],[23.47465831200003,-72.10709142799988],[22.992247910000117,-72.04389503799996]]],[[[23.755605698000124,-33.999805449999826],[23.651119569000173,-33.97648389099993],[23.38497955800017,-34.00674507599996],[23.316589599000054,-33.990472616999966],[23.217145023000057,-34.03488714799994],[23.27049,-34.09980999999988],[23.3751297,-34.09860992399996],[23.44815444900013,-34.00542068499993],[23.64836502100019,-33.97981262199994],[23.755605698000124,-33.999805449999826]]],[[[22.800470557000153,-34.022583687999884],[22.97373962400013,-34.08644485499991],[22.97817294000015,-33.99740729999991],[22.800470557000153,-34.022583687999884]]],[[[22.965103541000133,36.37795187500012],[22.906972528000097,36.34054595600014],[22.95638250600001,36.16917777700007],[23.05265956100004,36.13280132300014],[23.112169564000112,36.247392836000074],[22.965103541000133,36.37795187500012]]],[[[22.38894459200003,38.14919889200013],[22.179645452000045,38.20066193300016],[22.010557487000142,38.318617942000174],[21.85163157300019,38.34453445200006],[21.772766581000155,38.31638584100011],[21.69894950700018,38.20128806100013],[21.59744046900005,38.14763482900014],[21.450794546000168,38.20992779200009],[21.404478496000138,38.18388538600004],[21.279386470000077,37.99386361800009],[21.125596484000027,37.93370284300016],[21.099348554000187,37.84338733300001],[21.248496475000138,37.809228061000056],[21.312437488,37.700636984000084],[21.56071851200005,37.539704946000086],[21.673555525000097,37.374776249000035],[21.672571490000166,37.29466889100007],[21.569217595000055,37.20477767400013],[21.57807156700011,37.07683529800016],[21.693510490000165,36.951875873000176],[21.701223517000187,36.8377649790001],[21.808595529000115,36.83059426000017],[21.89042453000019,36.740336083000045],[21.939006544000165,36.78899923400007],[21.940759535000154,36.99980661300009],[22.017198469,37.03884901500015],[22.15136155800019,37.02694704800007],[22.13850958600011,36.9365830910001],[22.22209358900011,36.904227604000084],[22.30012156400005,36.823243499000114],[22.35142752900009,36.71134492400006],[22.395399496000095,36.47652070900011],[22.502782572000058,36.4871907050001],[22.47561850000011,36.619565599],[22.59074343700013,36.80938066900006],[22.788148489000093,36.81927550600017],[22.851430517000097,36.6981658900001],[22.978506539000136,36.53216850000001],[23.038763539000115,36.534133553000174],[23.096164488000113,36.45502934200016],[23.209802476000164,36.468564104],[23.038684581000155,36.65534995500019],[23.029735558000027,36.743441075000135],[23.107061465000186,36.79258115600015],[23.016996574000075,36.95190671900002],[22.9550534710001,37.12459437600006],[22.76132556100015,37.43458599000007],[22.726160459000027,37.549084966000066],[22.977796592000118,37.51806438099999],[23.014198527000133,37.463523505000126],[23.137845513000116,37.4453999860001],[23.088554558000055,37.36390458500006],[23.19357444000019,37.34341586099998],[23.275485584000023,37.416176313000165],[23.49742848900013,37.43345309200015],[23.49843247399997,37.47256439300014],[23.310077530000115,37.536249087000044],[23.16069659300007,37.62697648400007],[23.128385530000173,37.73678427700014],[23.143295594000165,37.835578417000136],[23.01818848100004,37.840358449000064],[22.953437440000073,37.94914851100009],[22.864019465000013,37.932664828000156],[22.725099478000118,38.04528776700016],[22.503358576000096,38.13878890300009],[22.38894459200003,38.14919889200013]]],[[[23.772975510000094,38.710289526000054],[23.716438567000125,38.763907387000074],[23.599754596000082,38.77476027500006],[23.468105574,38.850897293],[23.426874490000046,38.96012857900013],[23.295381539000175,39.05032590400015],[23.138048523000066,39.01612757100003],[23.003112454000075,38.92477086100007],[22.858739537000133,38.88883345100004],[22.84628251999999,38.83766327400008],[23.054985539000143,38.86312598699999],[23.217149549000112,38.83333452300013],[23.42628859500013,38.68911365300005],[23.511787527000024,38.59552936900019],[23.625112535000085,38.534286323000174],[23.640632467000046,38.40106753900005],[23.929120475000047,38.372167910000144],[24.04463148300016,38.374304122000126],[24.118833454000082,38.208039852000184],[24.21235655100014,38.147841023000126],[24.201566527000182,38.081455009000024],[24.322002573000077,38.03912388400005],[24.338067497000054,37.97061691200008],[24.44550757000019,38.00701633300008],[24.474891505000016,37.95413742000011],[24.587236500000074,38.02166806700018],[24.561443540000084,38.13745701900018],[24.410348502999966,38.133658005000086],[24.261409460000095,38.194485979000035],[24.18569958400019,38.3867086680001],[24.216186578000077,38.53824107200006],[24.14973853700002,38.584886364000056],[24.150133493000055,38.662209085000086],[23.957538480000096,38.671788092000156],[23.772975510000094,38.710289526000054]]],[[[22.35855147600006,70.35960811200016],[22.40383152300012,70.29930970700019],[22.657218467000177,70.2584061870001],[22.95236053400015,70.26884366800016],[22.626573559000178,70.38312354200019],[22.35855147600006,70.35960811200016]]],[[[23.272205576999966,70.32980642299998],[23.525861581000072,70.42366865200006],[23.586759461000156,70.50340737300019],[23.31834057800006,70.5389625680001],[22.991966535000017,70.5151500840002],[22.78704844800012,70.41816727300005],[23.147441451000077,70.28321058500006],[23.272205576999966,70.32980642299998]]],[[[23.13660448900015,70.65937715700011],[23.40852147400011,70.83672464900013],[23.126407568000104,70.83043839000004],[22.993783564000182,70.70503405400012],[22.29877844800012,70.69912095700016],[21.925615447000155,70.67228595799997],[21.955059565000113,70.5942108770002],[22.18201652500005,70.61770987800003],[22.115205548000176,70.48074706500006],[22.87100058500016,70.53481989600004],[23.019584571000053,70.64580383800018],[23.13660448900015,70.65937715700011]]],[[[23.37750055400005,78.12355866900009],[23.219152489000066,78.22135921800003],[22.982774605000145,78.24607996500009],[22.45611146400006,78.20024017500015],[21.83750354000017,78.20829769800008],[20.934160521000024,78.12162127500005],[20.870273487000077,78.08023646700013],[21.352218503000188,77.96355987100003],[21.630559547000132,77.93604593900011],[21.55694548300005,77.85437569200019],[21.254714506000084,77.72604054000004],[21.185279490000084,77.59991804300012],[20.8833375210001,77.56631616600015],[20.89277655000012,77.44213173300017],[21.12054856700007,77.43407437700017],[21.619159488000037,77.48574428400008],[22.086942441000133,77.4921376640001],[22.436111573000062,77.56964294400007],[22.641374491000192,77.53964193300015],[22.40748754100008,77.419912984],[22.501943543000152,77.33241379400005],[22.77083047100018,77.26240160000009],[22.958047487000044,77.35073998700011],[23.390281447000177,77.37268448000015],[23.890558524000028,77.49685282000013],[24.175832575000072,77.66742773500016],[24.90859749500015,77.75437858100008],[24.290277573000083,77.90522182500018],[23.890277563000154,77.84660851700016],[23.657506579000028,77.86160877100014],[23.11277758799997,77.98771651600009],[23.131387592000067,78.09273505800013],[23.37750055400005,78.12355866900009]]],[[[23.27555247100014,80.27371833600006],[23.36082844500004,80.42872705100012],[22.40832556400005,80.42594912100014],[22.53276849500014,80.3162321870002],[22.37609446400012,80.10286748900012],[21.856119579000108,80.14287984500015],[21.872493460000157,80.25650458900014],[21.293064562999973,80.2567791800002],[20.826665462000165,80.21316629400013],[20.329446439000037,80.42039543900017],[19.701118525000084,80.49901383500008],[19.4847085130001,80.38900621800013],[19.91693157700007,80.37455514600015],[19.827762544000166,80.27956203100013],[19.385539535000134,80.31343866600008],[18.787778577000097,80.19232083600008],[18.14222149300008,80.18287543700006],[18.239711576000104,80.04147725700017],[18.812778441000034,79.97535644600003],[18.188602587000048,79.89786793000019],[18.707494529000087,79.74645924300006],[19.57028053600004,79.7111786390002],[20.39192950400013,79.79339790000006],[21.699447560000067,79.83313516200008],[21.952506437000068,79.7650766230002],[21.77609855600008,79.7006340370001],[21.279987452000057,79.71563378800016],[20.49083545900004,79.68366470600017],[19.642768576000037,79.6092272030001],[19.67333050400009,79.55227736800009],[20.273321551000038,79.45421748299998],[20.743339454000136,79.45865821500007],[20.968877525000153,79.36392561000014],[21.37499649300014,79.39421529300012],[21.694431494000185,79.3625363930002],[22.14637751099997,79.40505024400017],[22.65581852200006,79.35920995100014],[22.661382597000113,79.2911505740002],[22.926660445000095,79.21836078500019],[23.759162468000113,79.17335968800012],[24.23250044400004,79.22420515100004],[24.281671536999966,79.30419834700018],[24.776948474000164,79.36781699200003],[25.149164486000018,79.32560706900017],[25.632770461000177,79.39255249100006],[25.97359457000016,79.50394882300003],[25.81611855800014,79.61755898300004],[26.44971651000003,79.70924040700004],[26.62776556800003,79.77812288800004],[27.18860860100017,79.86701146200011],[27.101121480000018,79.96675007500016],[27.236650484000165,80.09510165600017],[26.800001608000116,80.17149180700017],[25.94610544800014,80.18508893000012],[25.543617521000158,80.23370614800018],[23.960828545000084,80.2767690140002],[23.55750443900007,80.12786400100015],[23.047508546000074,80.24426600500004],[23.27555247100014,80.27371833600006]]],[[[24.942323766000072,-72.08300987599989],[25.24237640500013,-72.13769293099995],[25.288422240000102,-72.04341777299999],[25.016650322000146,-72.03513141999997],[24.942323766000072,-72.08300987599989]]],[[[24.888333333000162,-12.804166666999834],[24.85333333300008,-12.805],[24.79333333300002,-12.925833333999947],[24.834166666000044,-12.9675],[24.888333333000162,-12.804166666999834]]],[[[29.546665451000024,-6.774498023999911],[29.46265845000005,-6.667005770999936],[29.409861110000122,-6.72684275599994],[29.361287557000082,-6.877491164999981],[29.429572117000077,-6.992941347999931],[29.526015257000097,-7.002092886999947],[29.66753166100017,-6.901901700999815],[29.632774585999982,-6.826994050999815],[29.546665451000024,-6.774498023999911]]],[[[29.93204179200012,0.386538913000095],[29.9273621910001,0.481227254000146],[29.86341455400003,0.467108225000118],[29.84472829900011,0.243956534000176],[29.923095019000186,0.224540132000016],[29.981666667000127,0.314166667000109],[29.93204179200012,0.386538913000095]]],[[[24.127574606,35.464767998000184],[24.03131649500017,35.49557132500007],[23.799901535000117,35.524997840000026],[23.76437953300018,35.6438528920001],[23.713119501000165,35.64009880500004],[23.723550444000182,35.495502426000144],[23.579385565000052,35.45797144800002],[23.51727851200019,35.256850364000115],[23.573749573000043,35.212749483000096],[23.983219458000065,35.22151930100006],[24.040193601000112,35.17232239000015],[24.179185504000145,35.18931183800004],[24.493921443000033,35.1389560450001],[24.59332260000008,35.08347673100019],[24.74179460400012,35.05423327700015],[24.752777579000167,34.94020335100004],[24.921386603000144,34.92520460600008],[25.206108454000173,34.94520818600017],[25.380275518000133,34.99659092900015],[25.504444529000068,34.9793721530001],[25.59694251800005,35.00770667300009],[25.80777755800011,34.995759947000124],[25.978610468000056,35.03381395500014],[26.146720601000027,34.99937958800001],[26.236917590000076,35.0337638310001],[26.276325443000076,35.11063577400017],[26.270160552999982,35.25075454100016],[26.134532475000015,35.19252378300013],[26.061309510000058,35.22874399800003],[25.888551445000076,35.17440831100015],[25.80911044800007,35.105601100000115],[25.708108515000106,35.135560201000146],[25.74821256900009,35.330231411],[25.62292457400008,35.33091436900003],[25.450464569000076,35.277703701000064],[25.349061478000124,35.32165253300002],[25.127817455000127,35.3385623530001],[24.974643539000056,35.413393470000074],[24.797807510000155,35.39080306700009],[24.71765153800004,35.41004054100006],[24.513408529000174,35.349082982000084],[24.291938531000028,35.34104624600019],[24.243881559000158,35.45208131700002],[24.127574606,35.464767998000184]]],[[[27.04646644200011,35.56577579900011],[27.154550581000024,35.42946090700019],[27.23548556800006,35.47323288200016],[27.153270497000165,35.626901163000184],[27.04646644200011,35.56577579900011]]],[[[28.163917467000033,36.232290323000086],[28.24447258600003,36.38036586300018],[28.150567610000053,36.42517283500007],[27.880151488000024,36.322342306000166],[27.696914535000076,36.16045389300018],[27.762523546000125,36.09074529200018],[27.72673751400015,35.941086913000106],[27.8056065290001,35.8932859250001],[27.956138469000052,36.04446344000007],[28.070116595000172,36.11435795100016],[28.163917467000033,36.232290323000086]]],[[[25.25210347800015,36.797307879000186],[25.248624485000164,36.74205605000003],[25.349412512000185,36.649658978000105],[25.37355256100011,36.74680188299999],[25.25210347800015,36.797307879000186]]],[[[26.924407492,36.68923933100001],[27.09134248100014,36.74151122600006],[27.156616552000173,36.7923290280001],[27.3445114970001,36.853229758000055],[27.27922652900014,36.927035265000086],[27.143791570000076,36.88042819500009],[26.996078464000107,36.77705233900008],[26.924407492,36.68923933100001]]],[[[27.030794463000063,36.96418151300014],[26.961843586000043,37.07439415200014],[26.90825053500015,36.96612728800011],[27.030794463000063,36.96418151300014]]],[[[25.34890356300008,37.076026109000054],[25.446929585000134,36.93399325100006],[25.54170946400012,36.989910938000094],[25.58721146400012,37.08966782400017],[25.568204493,37.17486735500006],[25.496866450000027,37.207523417],[25.362918439999987,37.124991175000105],[25.34890356300008,37.076026109000054]]],[[[25.105033599000024,37.081249208000145],[25.160104546000184,36.999062803000186],[25.266374506000034,37.06323951500008],[25.275403492000123,37.125845291000076],[25.200815450000107,37.164190319],[25.105033599000024,37.081249208000145]]],[[[25.10895951400005,37.551248],[25.18862346900005,37.52323735599998],[25.24003052000006,37.57981620900006],[25.17558659200006,37.643379198000105],[25.006837591000135,37.67968256200004],[25.10895951400005,37.551248]]],[[[24.267074453000134,37.54103616000009],[24.386028579000026,37.612304801000164],[24.285966592000023,37.65293892600005],[24.267074453000134,37.54103616000009]]],[[[26.143686519000028,37.64120510000015],[26.064048548000017,37.63076828900017],[26.06722260700019,37.52727324300008],[26.219001607000166,37.57341545200006],[26.143686519000028,37.64120510000015]]],[[[26.962890486000163,37.683253420000085],[26.93307153000012,37.76669074000006],[26.767051509000055,37.812497003000146],[26.569601530000057,37.72993643000012],[26.621484505000183,37.67579151500007],[26.717470540000136,37.72107977600007],[26.789010586000188,37.63489520300004],[26.962890486000163,37.683253420000085]]],[[[24.942275479000102,37.685755418000156],[24.982379533000085,37.755430156000045],[24.949270512000055,37.89179550700004],[24.831552549000037,37.91374821400018],[24.7739796030001,37.99579749100013],[24.67547447100003,37.91825700700008],[24.755647543000123,37.87247790200013],[24.942275479000102,37.685755418000156]]],[[[26.101396465000164,38.27123973700003],[26.155672473000152,38.3167300020001],[26.115898498000035,38.49895073400012],[26.070680478000043,38.59347747900006],[25.88328744200004,38.59015137200009],[25.827619535000053,38.54362409800012],[26.002172501000132,38.346033471000055],[25.855411579000076,38.24180618100007],[26.003761542000063,38.13842211100007],[26.101011568000047,38.21866659700004],[26.101396465000164,38.27123973700003]]],[[[24.57343653500004,38.83318147000017],[24.593374568000115,38.92969975600016],[24.51437747700004,38.97810725800008],[24.442014496000183,38.88195157400003],[24.57343653500004,38.83318147000017]]],[[[26.57310147800007,39.00999352700018],[26.58794448700013,39.06452384200003],[26.413280544000145,39.32145499100011],[26.306676482,39.37585236900003],[26.17652648100011,39.37610013800003],[26.11385951699998,39.30812307100018],[25.852592577000053,39.257350027000086],[25.87656549100012,39.14315179300007],[26.048717544000056,39.09108927800014],[26.11541352200004,39.11581891000009],[26.171113448000142,39.20227874400007],[26.26616456500011,39.16123239700005],[26.10004848699998,39.08899849599999],[26.15765747500012,39.013823721],[26.429948462000084,38.96456126400017],[26.57310147800007,39.00999352700018]]],[[[25.355527446000053,39.89277104400014],[25.430915456000037,39.982479871000066],[25.364248481000175,40.014721365000185],[25.03023148300008,39.985676897000076],[25.04708246100006,39.83095786000018],[25.231475446000104,39.85970963200003],[25.295454513000152,39.793986291000124],[25.355527446000053,39.89277104400014]]],[[[25.67878560000014,40.12538813500004],[25.764541522000115,40.07385585900005],[25.99550654100011,40.10671929000017],[25.99434849700009,40.1947232390001],[25.916275595000172,40.23358677100015],[25.718269561000056,40.16242458000016],[25.67878560000014,40.12538813500004]]],[[[25.548107539000057,40.51274354200012],[25.4459284510001,40.48082173400019],[25.581832461000147,40.39531291100013],[25.683979529999988,40.453871065000044],[25.548107539000057,40.51274354200012]]],[[[29.87870951600007,40.700248392],[29.799648556000136,40.735968879000154],[29.56430650699997,40.69591528400014],[29.384963451000033,40.70978129800005],[29.3448674440001,40.68042753800012],[28.99614355900019,40.65225680000003],[28.801015535000033,40.55926679200013],[28.85247958200017,40.51449033000006],[29.033370608000098,40.59837842900015],[29.305910537000102,40.626973292000116],[29.400453543000083,40.61034829000016],[29.87870951600007,40.700248392]]],[[[24.627859562000026,40.58018265800018],[24.76813356100007,40.60924623699998],[24.77979647700016,40.73476708099997],[24.636793496999985,40.78792025000007],[24.56655348400011,40.749934806000056],[24.514627593000114,40.64810976900003],[24.627859562000026,40.58018265800018]]],[[[29.84332246200006,40.75888751600007],[29.823144539000054,40.81443623300015],[29.591455492000193,40.82670801000006],[29.479606537000166,40.89074139100012],[29.331584474000124,40.9342778350001],[29.136444548000156,41.09214310200008],[29.017667448000054,41.030875916000184],[29.042100528000162,40.97251943000009],[29.291896498000085,40.85594358500009],[29.35839248300016,40.76390777400013],[29.68954655800013,40.783575406000125],[29.84332246200006,40.75888751600007]]],[[[28.09055854800016,71.11488615300016],[27.819564577,71.06063814100014],[27.452465548000134,71.11986047700015],[27.42058548300014,71.02371686300006],[27.1498184940001,71.03348345600017],[27.045680555,70.94819725600013],[27.398261457000103,70.90150972000009],[27.231246504000126,70.78504099600013],[27.017652477000183,70.73381365400013],[27.046545568000056,70.62521050800018],[26.922000545000117,70.61202678000018],[26.957141506000028,70.48422605800005],[26.43562653100014,70.4516164310001],[26.521404581000013,70.55475642100015],[26.646055551000188,70.91668582600005],[26.436782563000065,70.95233976000009],[26.076328539000087,70.77689143900005],[25.92741045100007,70.61345270900011],[25.601900582000155,70.49354991900009],[25.319833446000132,70.34840737500019],[25.45130946500018,70.31282250800012],[25.253019452000103,70.21975270500008],[25.093126602000098,70.08378197500019],[24.881271485000127,70.1086406880001],[24.89349950800016,70.22433157100005],[25.064025472000083,70.346897124],[25.166982569000027,70.52892976499999],[25.321252502000107,70.67647556900016],[25.59473958600006,70.7229725000002],[25.793081567000172,70.87009803500013],[25.280960526,70.94371796700017],[24.76599148200006,70.95340057400011],[24.491786572000024,70.9895128300002],[24.538343518000147,70.87641514000012],[24.20779746600016,70.78980912600014],[24.54447555100012,70.71756969300003],[23.99422456100018,70.69656430800012],[23.69557953000009,70.75804607100008],[23.56375549500018,70.71940113900018],[23.581684553,70.62984167700012],[23.709188556000072,70.51943021900007],[23.689832562000106,70.4542185090001],[23.45724246000003,70.36493430900003],[23.151723598000103,70.20338016600016],[23.306983602000116,70.12984388500018],[22.920171511000035,70.03665271200009],[22.86194745900019,70.21402350700015],[22.56080059700014,70.21778480200004],[22.405719462000093,70.25942157100013],[22.084465589000047,70.28456862100018],[21.90206950800018,70.33082868000014],[21.747432447000108,70.23532594600016],[21.433279554000137,70.30024881500009],[21.205423550999967,70.2428032740001],[21.19703443900005,70.17072410300011],[21.7462215970001,70.04648015800018],[21.82151455700017,69.99081309000013],[21.801321546000167,69.83910935900013],[21.355419552000114,70.00657559400014],[21.144767573000024,69.98786735300007],[21.13577245000016,69.89491338800019],[20.96370656200014,69.83027382700004],[20.822769554000047,69.91626125700003],[20.696992557999977,69.7999910170002],[20.39677457900018,69.74951888400005],[20.409851522000054,69.57397232700009],[20.227298532000134,69.36358756300018],[20.203763489000153,69.67008526400019],[20.328165517000116,69.88626896400012],[20.200666543000068,69.96234630200007],[19.904731549000132,69.83851307000009],[19.725864585000124,69.67368663200011],[19.607358556000122,69.80729249300015],[19.104629437000085,69.72606464300003],[18.914703558000042,69.58949896400003],[18.43175858000012,69.48683238500013],[18.437509572000067,69.42802897600006],[18.636955449000027,69.28799101100003],[18.507984446000137,69.25863909400016],[18.336439577000135,69.35986415400004],[18.342323506000184,69.43584208300001],[18.107746557000098,69.44432557500011],[18.128847496000105,69.35717926300003],[17.978214470000125,69.27415030900005],[17.9721714530001,69.1412160070002],[17.78382455600007,69.10701968600011],[17.49548943400015,69.00030112700017],[17.48335646099997,68.81786498100007],[17.200553562000096,68.71927955000007],[16.98577349600015,68.70865213500014],[16.57818249900015,68.63104862000006],[16.42486944300009,68.51159577100009],[16.65200057900006,68.44324822300018],[16.86314357000009,68.46939573800012],[17.047239501000035,68.44552240100006],[17.449600525000164,68.48039028000011],[17.41949457300018,68.40767844400011],[16.952417544000184,68.35108048100005],[16.700584436999975,68.40887672000014],[16.46450243400011,68.40873841900014],[16.120195477000095,68.28561664300003],[16.221242505000134,68.21055468900005],[16.415166552000073,68.19886578900014],[16.201324588000148,67.99736232200013],[16.062093465000032,68.04977184800003],[16.101076523000188,68.1854751960002],[15.637593487000117,68.18266692300011],[15.494866439000077,68.06452802100017],[15.904240435000077,68.03621311400013],[15.87415057600009,67.96905579700007],[15.668855471000029,67.98279742400007],[15.181301453000174,67.91940894599998],[14.763738505999981,67.82902604600014],[14.763351597000053,67.74628895000018],[14.910635550000109,67.67244790400014],[15.330763527000045,67.74325168400003],[15.129591481000034,67.61674177500004],[15.206215487000065,67.56057916800012],[15.556058524000036,67.52388017800018],[15.686219589000189,67.45261002900014],[15.678812502000085,67.34361846600007],[15.562044544000116,67.26740450200015],[15.68323546400012,67.20646538400007],[15.381705550000163,67.18252985300018],[15.047109530000114,67.24283597000004],[14.754594520000182,67.24570543100003],[14.536172516000136,67.18074501100011],[14.318735554000114,67.16695828900015],[14.233779433999985,67.07119605100019],[13.54796557700007,66.93065567400015],[13.735564473000125,66.83491690600016],[13.510821508000106,66.80083508200016],[13.509233473000108,66.71696793800015],[13.258444583000085,66.73216667500009],[13.195012519000102,66.51270330400018],[12.985191522000036,66.52897023100007],[13.126639491000049,66.39590751800017],[12.990709496000079,66.34521494100011],[13.295470467000087,66.23710029200015],[13.672954506000053,66.24242665700001],[14.000000442000157,66.30528791300003],[13.999999437000156,66.4183234090001],[14.346398517000182,66.39611337800017],[14.465507541000079,66.42985204700005],[14.742016468000031,66.43704640200019],[14.776134502000161,66.39319044000007],[14.443533543000058,66.29786439700007],[14.195406578000075,66.2831306870001],[13.902541539000026,66.21521832800005],[13.76890047500018,66.0848638080002],[13.626030432000107,66.1049837290002],[13.446839592000117,65.95812557600016],[13.380393563000098,65.8394064790001],[13.277254580000033,65.8028746240002],[13.334077513000011,65.64332878500005],[13.531616507000024,65.54974232200004],[13.718358437000063,65.54487428000016],[14.00391244399998,65.59726067200012],[14.270977482000092,65.5141643280001],[13.959280486000182,65.42845148900005],[13.967782586000055,65.51681166800012],[13.80263059500004,65.50815215600005],[13.722677464000071,65.44223083500009],[13.551412551000169,65.4916793700001],[13.380167587000074,65.410392678],[13.247360522000179,65.59338437700012],[13.10654052500007,65.87485438600004],[12.839683526000101,65.9592474100001],[12.359048434000158,65.62461300100011],[12.420678556999974,65.54605679900004],[12.67216247400006,65.43981181800001],[12.351341442000034,65.453530478],[12.144325532000153,65.36091296300009],[12.117238574,65.20991951500014],[12.361084566000045,65.26600618200013],[12.36959957400012,65.07366732000014],[12.140944440000169,65.176585021],[11.983086549000063,65.15552012500007],[11.543013498000107,64.94372468700016],[11.284056443000054,64.86464998000008],[11.242652523000174,64.80149904500018],[11.583631530000162,64.81000567100006],[11.66677850100001,64.86062180500011],[12.063297507000073,64.95662745300012],[12.406241567000052,64.91399139400016],[12.464467463000062,64.85628769000004],[12.298318528000152,64.67227373500009],[12.53777944400008,64.64630995100015],[12.767711477000034,64.74496210200004],[12.819351544000028,64.82327388800013],[13.047233531000188,64.92073681400012],[13.100298522000116,64.8689842620002],[12.978106467000089,64.74645022500016],[13.14948855900019,64.7027312240001],[13.345324518000098,64.77210857200015],[13.49153257000006,64.75975599300011],[13.68053157900016,64.66920662900014],[13.9808035370001,64.7517985500001],[14.122329458000024,64.87051027100006],[14.151018533000126,64.95455947000016],[14.913303510000105,64.7822332400001],[15.140861451999967,64.895939457],[14.902996451000035,65.03171924700007],[14.661944482000138,65.07404903200012],[14.625997517000087,65.12942558400005],[14.905971524000051,65.13688782500009],[15.22660245500009,64.97855434400009],[15.453640551000149,64.95297227300006],[15.499999517000049,65.05833916600005],[15.634641548000047,65.12677070000012],[15.618449555000154,65.24590906000014],[15.912106516000165,65.25336359],[15.999999488000014,65.4140614370001],[15.826719565000019,65.45263043000017],[15.426598520000084,65.45775780800005],[15.392195501000117,65.54504191799998],[15.572070473000167,65.59262128900008],[15.726412491000076,65.5325522120001],[15.901336441000126,65.55719634800005],[15.887774521000154,65.68967199300005],[16.582101541000043,65.55979088300006],[16.60692957700013,65.6096662240002],[16.373517545000084,65.64480903000003],[16.365343513000028,65.7167193890001],[16.63132259200006,65.72434155600007],[16.52074249000009,65.8714132790002],[16.67441144100019,65.90653278300005],[17.283182532000183,65.76919714299999],[17.364841547000026,65.85916765400009],[17.188079446000017,65.950427134],[17.125232439000058,66.17830560000016],[16.904546484000036,66.25423726100007],[17.100536503000058,66.28292482800003],[17.312553558000104,66.37404734700004],[17.764732592000144,66.39306823200008],[17.921174445000133,66.44731591000004],[18.143600484000046,66.42702114300016],[18.412347434000026,66.46720717200009],[18.809005579000143,66.46536885300014],[18.86985953700014,66.5255452180001],[18.587207513000067,66.68408422300007],[18.36141345800013,66.71158960600013],[18.05459959200016,66.71125365900014],[17.828206566000176,66.78579643900014],[17.654891439000096,67.03487843800008],[17.910181579000096,67.05110027000006],[17.941995596000083,66.95842827200016],[18.21504950300016,66.95092093700009],[18.291561527000056,67.03590840600003],[18.256313444000114,67.14995124000012],[18.52773656900007,67.15547558500009],[18.708202465,67.04321759300018],[18.721755499000153,66.96975088300002],[18.948028496000063,66.94168055900008],[19.417020454000124,66.97324513000007],[19.401252586000055,67.03690836700008],[19.138698521000094,67.084693765],[18.982353563,67.23921213800003],[19.537008572000104,67.22128995300017],[19.752744510000127,67.25089349400002],[19.769371524000064,67.39841566100012],[19.900598600000023,67.39197618000014],[20.075424481000027,67.3127477490001],[20.530706496,67.32960979100017],[20.25880845300003,67.41907772200005],[20.236879550000083,67.49093393400017],[20.386793577000162,67.56756012000005],[20.33011850000014,67.68636488000004],[20.039590504000103,67.73825422500016],[20.069395546000067,67.78067537300007],[20.422422533000088,67.75645921600005],[20.344171599,67.93800285700007],[20.48163447600018,68.05393731900017],[20.627517478000073,68.07077605900008],[20.94617849300016,68.03167414600011],[20.970979538999984,68.13298252200013],[21.188726464000013,68.20208544600018],[21.005817579,68.33064037100013],[21.037231443000053,68.41169153100003],[21.320764573000076,68.34631201600013],[21.42570650400006,68.3817748420002],[21.259325558000057,68.49870255900015],[21.58853955800015,68.49863332500013],[21.605220551,68.55974779300016],[21.35863853799998,68.64932133600013],[21.094106512000053,68.83535985700007],[21.18182145200018,68.90070115100008],[21.65768254800014,68.87859036100014],[21.76742546500003,68.92957295100013],[21.609268507000138,68.992419288],[21.328659488000028,68.9987137620002],[21.314374546000067,69.04957448000005],[21.697128455000097,69.02091742400006],[21.769552457000145,69.06569690300006],[21.282825565000167,69.148747147],[21.51791146200003,69.222100367],[21.62641754599997,69.1708046280001],[22.025459505000185,69.07978135000002],[22.25471645900012,69.10531095100004],[22.387413554000148,69.053137962],[22.48449359400007,68.94098658899998],[22.68441958700015,68.8988475770002],[22.839687471000104,69.04469151800015],[23.175909580000166,69.15701757100004],[23.298372538000137,69.24892715100009],[23.35937150300009,69.38652262900013],[23.609830481000188,69.5430484690001],[23.725360599999988,69.54307143500006],[23.766426561000117,69.42211554300007],[24.00841344700018,69.495606394],[23.914089544000092,69.63885596900008],[23.966163458000153,69.72463066700004],[24.19196656600019,69.76873138000019],[24.399555462000023,69.65579495700007],[24.30282544900018,69.45346654300005],[24.480476535000093,69.44473092400017],[24.793893497000056,69.5231422870001],[24.994382586000143,69.64961447700011],[25.329357468000126,69.74274379200006],[25.667913601000066,69.70263437300008],[25.834203520000074,69.65256742200006],[26.01066554800019,69.67420480200013],[26.26980046700004,69.63066232300014],[26.524435477000168,69.62427598400012],[27.092372450000028,69.67137456800009],[27.29519656900004,69.7312151540001],[27.37077552000011,69.91346170200012],[27.685386568000013,69.93867781900008],[27.696281533000104,69.76197070400019],[27.895156603000146,69.76646474500018],[27.94772354100013,69.90814321700014],[28.261640568000132,69.98403732700007],[28.24698246300011,69.72026671200018],[28.364231542000027,69.61954439900006],[28.50822844800001,69.62263514200009],[28.674419460000138,69.72336466400014],[29.184293480000065,69.64274014300008],[29.25683550000008,69.59451134300002],[29.169614589000105,69.48883834200012],[29.387994515,69.41401326],[29.76471161000012,69.5041673340001],[30.088876519000166,69.49868875500005],[30.163217462000034,69.4244587880001],[30.019134558000076,69.33801152700016],[29.96973245900017,69.17541266300009],[29.740528478000044,69.14342882900019],[29.799966565000034,68.99902691000017],[30.118497494000053,68.9887652810001],[30.04720454599999,69.07068581200014],[30.372373606999986,69.10155669700009],[30.715726536000147,69.06613158900018],[30.943037548000063,69.09825238300004],[31.241376472000127,69.09663551400013],[31.79326260199997,69.00764115900012],[31.919853480000086,68.92078368800003],[32.211547567000025,68.91391605900014],[32.42247044900006,68.87738537800016],[32.96014053700014,68.95693349500016],[33.29800751100015,68.94100285000019],[33.16715259100005,68.78762022400008],[33.289180528000145,68.62480745500017],[33.44353847200017,68.68132109600015],[33.64989455800014,68.59806465700007],[33.92032258300003,68.57971465900005],[33.98716759000018,68.531151421],[33.946033568000075,68.29550544500006],[34.256050495000125,68.21485812500015],[34.08071549700003,68.157382912],[34.06663155300015,68.09028611300016],[34.273433555999986,68.0522284160001],[34.239639567000154,67.86707636600005],[34.415714519,67.77870763700014],[34.641529528000035,67.78712290000016],[35.034191518,67.84359111100008],[35.250946528000156,67.9216212660001],[35.341434537000055,68.03316109500014],[35.16763661300013,68.06630615800015],[35.19575856900008,68.21039476200008],[35.32405449400011,68.20583115100004],[35.45910254400019,68.1232469410001],[35.41579861500003,67.97122268700014],[35.51438555400006,67.9413903200001],[35.7924424520001,67.97064249100009],[35.84885752200017,67.8953518780001],[35.71418749500015,67.82185348399997],[35.960498605000055,67.79321939400012],[36.12077752500005,67.82884332000015],[36.25388751200012,67.74098555200015],[36.594867524999984,67.64461411800005],[36.75755657700006,67.55147625400014],[37.131313519000116,67.52576409500017],[37.38422051600014,67.57217653700002],[37.66625546500006,67.43912857600014],[38.00512357300016,67.41870355400016],[38.123012527000185,67.31415993200017],[38.064460575000055,67.26522219000009],[38.395423542000174,67.20226906800013],[38.614486594000084,67.25124486300007],[38.60781057500009,67.1277561280001],[38.71477153900008,67.10008260400008],[39.05445453600015,67.13091543500008],[39.09828149599997,67.05212236000006],[39.351123617000155,66.99327285000015],[39.57867451900006,67.07149411100016],[39.78643457400011,66.97787629900017],[40.00614957000016,67.04816191000009],[40.17589551400005,66.83594016800009],[40.539886533000185,66.84506454100017],[40.24968358700005,66.71958493500006],[39.98250153800018,66.73537158000016],[40.00762545500015,66.5967687640001],[40.168685569000104,66.50766829500003],[40.183944488000066,66.39226725800006],[40.05887961999997,66.28013248000008],[40.584762572000045,66.450353344],[40.80674755500007,66.5980129730001],[41.2238764870001,66.81639189400005],[41.351852559000065,67.02478495000014],[41.33144346299997,67.21730704000004],[41.08739446100003,67.27976395400015],[41.13768051500011,67.41214119500017],[40.97791255600009,67.46895289600008],[41.01192061900008,67.59618784000014],[40.95356346200015,67.70980302900017],[40.78864650000014,67.71860738000004],[40.565162497000074,67.79930767300016],[40.293647508000106,67.82962116100009],[40.07840761000017,67.97738020000003],[39.822006533000035,68.05922462300015],[39.614505479000115,68.04073749800006],[38.64533250000005,68.37657890100007],[38.496280469000055,68.37087266900005],[38.03264253500015,68.54569385600007],[37.63706548700003,68.734509468],[37.09110653600004,68.8870976570002],[36.85008658600003,68.99870722400016],[36.499999468000055,68.998568923],[36.499999468000055,69.09855815500015],[36.281959512000185,69.16063402700013],[35.89209758100003,69.20841288600019],[35.76652946299998,69.24997187100007],[35.18505856700011,69.33294651000006],[35.0575295860001,69.27937759899999],[34.51588848800009,69.32557630300016],[34.23481360200009,69.37874003200005],[33.48335653600009,69.38325771000012],[33.38197758400008,69.47837068600018],[33.11915949000007,69.49206638100014],[32.81462449500009,69.47141253300009],[32.779247499000064,69.54379647000007],[32.501613552000094,69.54892368000009],[32.26655950600008,69.64054978400014],[32.30358555800012,69.70181009700008],[32.78015559500005,69.63317940900004],[32.9670864520001,69.68623752700017],[33.00838056900011,69.77028739600019],[32.795097511000165,69.82942675200002],[32.492874580000034,69.83873519100007],[32.36957561100007,69.89494306000017],[31.92884055700017,69.99870230400012],[31.746490577000145,69.998786123],[31.574707494000165,69.79465761200004],[31.04433854700011,69.80460642800006],[30.674583461000054,69.77270641300004],[30.3902285690001,69.79921183500016],[30.2359165580001,69.87366442600012],[30.037359498000058,69.8783103470002],[30.168905589000076,69.76107082300007],[29.622869524000066,69.72813279300004],[29.696557517000144,69.89785040700008],[29.4168894500001,70.01451141200005],[29.12131655400009,70.01579250200018],[29.02942457600011,70.05884095100015],[28.559530557000073,70.13147617700008],[28.67775160200017,70.18786107200003],[28.98934751100012,70.13214807000014],[29.892797484000027,70.07443565000005],[30.253915522000057,70.14079266200008],[30.244106516000045,70.19388833100004],[30.474298555000075,70.26039739200013],[30.96039060200019,70.30724485400009],[30.88396256400017,70.45382958900007],[30.66043447300018,70.45340144100015],[30.36395247600018,70.57391560700017],[30.123594529000172,70.71339684600014],[29.65329147400007,70.75649692800005],[29.215888561999975,70.69107935900001],[29.18311347600013,70.88448775100005],[28.917919447000088,70.91535846800019],[28.70944257200017,70.87780452500004],[28.44367455000014,70.71438054700013],[28.373525564000033,70.56436275200014],[28.01743348300016,70.46892137300017],[27.84827058400009,70.52465667100012],[28.13486260600007,70.60389314899999],[28.264036451000038,70.68397569600018],[28.25531759500018,70.75394111800017],[27.97902156800012,70.74502947800016],[27.669408481000062,70.81890958500014],[28.15054145800002,70.82080875600019],[28.416646600000092,70.92631495700016],[28.451385566000113,71.01186032500016],[28.217885524000053,71.03583357400015],[28.09055854800016,71.11488615300016]]],[[[25.775573448000046,71.08271138000015],[25.605289553000148,71.21162488300007],[25.28688653200004,71.11474131400018],[25.48143151100004,70.95314861400004],[25.66835046600005,70.98842184200015],[26.022544549000145,71.00008056600007],[25.775573448000046,71.08271138000015]]],[[[36.79666666600019,-3.224166666999963],[36.71916666699997,-3.223333333999904],[36.71333333300015,-3.286666666999963],[36.80333333400006,-3.289166666999961],[36.79666666600019,-3.224166666999963]]],[[[31.8175,-2.2075],[31.791666666000083,-2.315833332999887],[31.885833333000107,-2.316666666999936],[31.8175,-2.2075]]],[[[32.933333333000064,-1.890833332999932],[32.876666667000165,-1.926666666999949],[32.84666666600015,-2.056666665999899],[32.975833334000185,-2.083333332999928],[33.14833333400003,-2.168333333999897],[33.09666666700019,-1.9625],[32.95333333400015,-1.96666666699997],[32.933333333000064,-1.890833332999932]]],[[[36.67,-0.534999999999854],[36.735,-0.429999999999893],[36.6525,-0.26083333299988],[36.59250000000014,-0.233333332999962],[36.53333333300003,-0.27916666699997],[36.56833333300011,-0.355],[36.66916666700013,-0.480833332999907],[36.67,-0.534999999999854]]],[[[32.095833334000076,-0.223333332999971],[32.10083333400007,-0.311666666999884],[32.23,-0.329166666999924],[32.175,-0.424166665999905],[32.27333333300004,-0.460833333999972],[32.283333334000076,-0.340833333999967],[32.25666666700016,-0.30083333399989],[32.15583333300003,-0.303333332999955],[32.095833334000076,-0.223333332999971]]],[[[34.5841666660001,0.98583333400012],[34.615,0.999166666000178],[34.68833333400016,1.049166667000179],[34.668333333000135,1.171666666000078],[34.59833333400019,1.265000000000157],[34.52250000000015,1.268333333000157],[34.41833333400007,1.170833333000132],[34.46166666700003,1.126666666000176],[34.46250000000015,1.021666667000147],[34.5841666660001,0.98583333400012]]],[[[35.49500000000012,1.185833333000062],[35.574166667000156,1.130833334000101],[35.550833334,1.2825],[35.43000000000012,1.226666667000188],[35.49500000000012,1.185833333000062]]],[[[34.08461358500011,35.35517897300008],[34.20716857700006,35.446202586000084],[34.389392493000116,35.53890123800005],[34.29720647800019,35.57490050600006],[34.18795054900011,35.56145777800015],[34.129329530000064,35.504917315000114],[33.98458445500006,35.44161785199998],[33.77327349100011,35.40681367600013],[33.68273150200014,35.36378048200004],[33.51283250400019,35.333016383000086],[33.367515449000166,35.32865946900017],[33.125698548,35.36108771200003],[33.01624245900007,35.35964166600007],[32.9459915490001,35.29155848400006],[32.91494347100013,35.18011521300019],[32.82374953800007,35.140546092000136],[32.65591047600003,35.1920857450001],[32.54950758000018,35.15517871600008],[32.447837609000146,35.04737436500017],[32.27495146800004,35.04451345399997],[32.318126483000015,34.89077040700016],[32.39144852300012,34.83595393300004],[32.42447255100012,34.75176626500013],[32.50117450800019,34.70076137900003],[32.71277951000013,34.63915221100007],[32.88683660300018,34.66239455800019],[32.949832472000026,34.57386875200012],[33.02133949400019,34.646635742000115],[33.15434655100012,34.708569289000025],[33.272132575000114,34.70136454100003],[33.611698561000026,34.81376452100011],[33.695812468000156,34.96959851800011],[33.91431057900013,34.9654176250001],[34.088726585000074,34.984331054000165],[33.92148548800003,35.15755968000008],[33.91647746900003,35.24603167400011],[33.96398559300013,35.30935410200004],[34.08461358500011,35.35517897300008]]],[[[33.49749345400005,37.745119074000115],[33.47566245100006,37.83287458300009],[33.34281146500018,37.85191307000014],[33.27128248300011,37.77141679200014],[33.14400848000014,37.74708714500014],[33.038013614000135,37.801259218000155],[32.984237502999974,37.902503388000014],[32.97743961200018,38.00929319300019],[32.730854581000074,37.98292288700003],[32.71352348800008,37.9036284070001],[32.553966584000136,37.78318548699997],[32.54774453000016,37.62976849600017],[32.699733581000146,37.488184908],[32.81395360800008,37.472556514000075],[32.897079456000085,37.418789455000024],[32.99623854400005,37.456431744000156],[33.08082954900004,37.444640753000044],[33.06662356400017,37.55524181000004],[33.167358450000165,37.64707913800015],[33.40698247800009,37.63119945400007],[33.406127524000055,37.51802247100011],[33.20318957800009,37.36402243500004],[33.20364354200018,37.297491916000126],[33.303661607000095,37.219944392],[33.46619760600004,37.338761893000026],[33.39773556200009,37.387811114000044],[33.563896567000086,37.46969543500006],[33.705581575999986,37.443126981000034],[33.930328564000035,37.497740780000186],[34.08980550400008,37.57973239000012],[34.31373257300004,37.627567240000076],[34.39632449400017,37.7025631460001],[34.37230648600013,37.76055703100019],[34.2272035040001,37.75838192700013],[34.12657557200009,37.71916082300004],[34.047172462000105,37.73706624400012],[33.96090658500009,37.67740939000004],[33.79304556200009,37.641754282000136],[33.624320534000105,37.68448522500012],[33.73945955199997,37.83689135800017],[33.59270047400008,37.861293090000174],[33.49749345400005,37.745119074000115]]],[[[33.54715757100013,39.71350962700012],[33.551639542000146,39.779491634000124],[33.64198355000019,39.86005245200016],[33.76362659100005,39.88746814900003],[33.77989553000009,39.939565533000064],[33.48663352500006,39.95414115900013],[33.41366151400007,39.905705829],[33.4457814700001,39.82830683200001],[33.38199652700018,39.68004705800013],[33.379333597000084,39.556235787000105],[33.25507758200001,39.495414518000075],[33.21566754899999,39.346601538000186],[33.37418358800005,39.40554878100011],[33.33305761200006,39.217693399000154],[33.03959645300006,39.11118522600003],[33.16779749400007,39.07786347299998],[33.186176494000165,39.02377639300016],[33.05611751900011,38.9483727920001],[32.99906559200019,38.98669401500007],[32.859992552000165,39.00619082500015],[32.79561651800003,38.894028555000034],[32.94088747300003,38.80110795000007],[32.967853564000166,38.68230084200013],[32.88634458500013,38.663430161000065],[32.866428512000084,38.57539972600006],[32.80551554600004,38.54451308300008],[32.801815606000105,38.44212394500016],[32.71456954900003,38.37849993500009],[32.73582857000014,38.19703793400009],[32.78921157000019,38.19573706200009],[32.91913257900018,38.31386892400013],[33.03268456800009,38.36605716700018],[33.07476054800014,38.289050276000125],[33.00675950900006,38.17457342700004],[33.23001451800019,38.061447574000056],[33.42655958600005,38.08477306900011],[33.55394356,38.172185591000186],[33.60394647400011,38.10748551200004],[33.85139450500003,38.08633394700007],[33.89040757000009,38.13798021700012],[34.00646960500006,38.17511540100014],[34.04830955100016,38.25347211400015],[34.12387861000008,38.29650027900004],[34.27408952400009,38.26775370399997],[34.26909256900012,38.4195990880001],[34.12085358200005,38.44202084700015],[34.00113653500006,38.48722093100008],[33.829788473000065,38.654851283000085],[33.711235505,38.72377818700011],[33.508144506000065,38.925954051000076],[33.58868453700006,39.03525423600013],[33.45419354800015,39.15475150900005],[33.62680057100005,39.175263032000146],[33.878227492000065,39.01362574100017],[33.98628648500005,38.96419531100014],[34.02081255000007,39.02556157100008],[34.14419550600013,39.006945699000084],[34.22777146200002,38.89143452400003],[34.28453454900006,38.90112450700008],[34.418823534000126,38.789565063000055],[34.777534457,38.72782128200009],[34.778320512000164,38.77604924400009],[34.62541146400014,38.796968966000065],[34.52646259400012,38.86368288000017],[34.414005449,38.87797687500006],[34.30493945400019,38.98250507500006],[34.29126756400018,39.036032412],[34.14377557200004,39.06751081700014],[34.01530848900006,39.14438376500004],[33.85961547599999,39.14348371699998],[33.73620653600011,39.21026971500004],[33.52661553799999,39.4378823080001],[33.48737347900004,39.549608719000105],[33.54715757100013,39.71350962700012]]],[[[33.761604541000054,39.61516794200014],[33.71669346500005,39.512817361000145],[33.779819590000045,39.45198519500019],[33.906627559000185,39.5844480990001],[34.04449461100012,39.58792726000007],[33.9304995550001,39.72621541900014],[33.8745235290001,39.73763324700019],[33.814331573000175,39.622464892000096],[33.761604541000054,39.61516794200014]]],[[[34.345058595000125,40.14448378700013],[34.21827359200006,40.17318543500011],[34.188632501000086,40.22622477800019],[34.02966350400004,40.25351457800008],[33.97307945500012,40.11813628000016],[34.0010074540001,39.97304603900005],[34.0728914930001,40.0076064700001],[34.11616860100008,40.12855414800009],[34.345058595000125,40.14448378700013]]],[[[31.772487553000133,80.07955104600012],[32.28749046000013,80.08731855600013],[33.62443955700013,80.20622272500003],[33.28665556400017,80.24176400700014],[32.87054855300005,80.19259660100005],[31.493602523000106,80.11008665400016],[31.772487553000133,80.07955104600012]]],[[[37.57555355000005,-46.91425370599984],[37.609161461000156,-46.95175970499997],[37.846382565000056,-46.95870276999989],[37.89221950500013,-46.89369960299996],[37.78194450500018,-46.830093362999946],[37.65415954100007,-46.82897923999997],[37.57555355000005,-46.91425370599984]]],[[[39.805,-3.611666666999952],[39.80666666700017,-3.615833332999898],[39.80666666700017,-3.61],[39.805,-3.611666666999952]]],[[[37.225833334000185,-2.940833332999944],[37.19750000000016,-3.068333333999931],[37.43416666700011,-3.184166665999953],[37.52166666700015,-3.179166666999947],[37.535,-3.123333332999891],[37.444166667000104,-2.964166666999915],[37.225833334000185,-2.940833332999944]]],[[[37.39833333300015,-0.185],[37.496666666000124,-0.096666666999965],[37.5,0.06666666700005],[37.250000000000114,-0.021666665999931],[37.20916666599999,-0.154166665999981],[37.25500000000011,-0.273333333999972],[37.39833333300015,-0.185]]],[[[40.13698956899998,15.760208786000135],[40.06959957100014,15.845584170000109],[40.004081586000154,15.823655602000088],[39.9819485000001,15.733810317000064],[40.12038049300014,15.594229501000086],[40.300109620000114,15.554131985000083],[40.41564158199998,15.554661721000059],[40.31212960400006,15.681374807000111],[40.247138506000056,15.613589015000116],[40.15911058500012,15.62501723700018],[40.13698956899998,15.760208786000135]]],[[[40.07654951000006,15.97533502500005],[40.0787205900001,16.075309672000117],[39.991180496000084,16.055680092999978],[40.07654951000006,15.97533502500005]]],[[[46.4191555970001,-24.030489074999934],[46.4175605210001,-23.98760424099993],[46.019348539000134,-24.04822534999994],[45.91842254500011,-24.095045822999964],[45.79801550000019,-24.27134524199988],[45.697547494000105,-24.25253524599998],[45.72441451100002,-24.17791769999991],[45.67992353700015,-24.116858719999925],[45.782707463000065,-23.98163448199989],[45.811672470000076,-23.831822211999963],[45.88562751100005,-23.92291656799989],[45.949779580000154,-23.930002292999973],[46.00155258500007,-23.80373948299996],[46.03182952800012,-23.56118078399993],[46.08282050000008,-23.553893221999942],[46.074211615000195,-23.729154290999816],[46.23973458900008,-23.49227231899988],[46.16279961500004,-23.410555468999974],[46.167800593000095,-23.317846254999836],[46.123931556000116,-23.215842516999942],[46.05415757700007,-23.18389221099983],[45.91883057600006,-23.049784106999937],[45.93445947300006,-22.946026538999945],[45.84262046800012,-22.858547967999982],[45.751090589000114,-22.864672791999965],[45.74750548100013,-22.745161939999946],[45.67419450600016,-22.683487225999897],[45.5396114830001,-22.6763735049999],[45.55921960500012,-22.5195958729999],[45.523681509000085,-22.381441991999964],[45.55585058300005,-22.286099184999955],[45.51566354800008,-21.9038046039999],[45.4737585580001,-21.701444505999973],[45.55041860600011,-21.556968322999865],[45.59217456600004,-21.355319345999874],[45.561649518000195,-21.248780327999953],[45.43034750800001,-21.356524495999906],[45.34617962100009,-21.376982206999912],[45.26593061000017,-21.53630341199994],[45.23016754300011,-21.45196520499985],[45.07986459700004,-21.591140503999952],[45.033634544999984,-21.470460041999957],[44.93144657200014,-21.481294656999978],[44.96140651200011,-21.042681565999942],[44.92292050000009,-20.902923555999962],[44.97956858700013,-20.89049520599997],[45.166721565000046,-20.787238036999895],[45.15510156500011,-20.674771168999882],[45.24921759800003,-20.632981514999983],[45.284278596000036,-20.486913942999877],[45.25279952000011,-20.293990862999976],[45.20162146300004,-20.27595166599997],[45.10229155200017,-20.315038659999857],[44.979293493000114,-20.421398473999943],[44.88853860400013,-20.404353537999953],[44.98946359100012,-20.215769097999953],[44.97266357500007,-20.154956546999927],[44.743812473000105,-19.965153377999968],[44.58164946800014,-19.85713780399982],[44.473632971000086,-19.823689148999904],[44.4864194810001,-19.95279509999989],[44.44354051400006,-20.058728023999834],[44.26301946500013,-20.306263980999915],[44.23252157500019,-20.406538364999903],[44.11635946100006,-20.488103837999915],[44.04358272100018,-20.709736166999903],[44.033184495000114,-20.805830942999876],[43.96671248200005,-20.879458920999866],[43.88370023700014,-20.906356280999944],[43.86671051000013,-21.051593372999946],[43.80561045900009,-21.220492912999873],[43.72861848700012,-21.284410288999936],[43.757282584999984,-21.38509471599997],[43.71144849400008,-21.475659000999883],[43.54260259800009,-21.716644584999983],[43.42483853500016,-21.670688117999873],[43.34967046500009,-21.748235139999963],[43.32949857700015,-21.868677555999966],[43.23616055300005,-22.07878705899992],[43.235778506000145,-22.149942543999884],[43.30447054900003,-22.168532263999964],[43.22850049900006,-22.272856950999937],[43.262349977000156,-22.374270938999928],[43.28488958500009,-22.55447196699987],[43.37044501200012,-22.854215613999884],[43.48188057100009,-22.991449077999903],[43.589790534000144,-23.07473485299988],[43.62046846700014,-23.21231658599993],[43.61602052600011,-23.314522327999953],[43.76322954500017,-23.46127369499993],[43.72124853100013,-23.595837605999975],[43.65494960500013,-23.618596820999926],[43.63353551900002,-23.752819504999877],[43.67602958900005,-24.05941468799989],[43.67052049900008,-24.330210342999976],[43.76221458000015,-24.46691960299995],[43.835201595000115,-24.5074114869999],[43.92872955300015,-24.627276557999892],[43.91764850900006,-24.719351093999933],[44.004840503000025,-24.857350077999968],[44.027740533000156,-24.998988734999955],[44.11037059100016,-25.07315525099989],[44.19677007600018,-25.080794768999965],[44.324340463,-25.180549055999904],[44.35422848600018,-25.258905433999814],[44.68675954000014,-25.306013908999887],[44.89796103700019,-25.392685050999944],[44.972370544000114,-25.480905838999945],[45.11314058500017,-25.534093373999895],[45.18054952600011,-25.60727895599996],[45.29119852700018,-25.58413987399996],[45.5161515420001,-25.577920165999956],[45.61008049000009,-25.54820162599998],[45.871570556,-25.368440982999857],[46.031009610000126,-25.290074881999942],[46.29639860200007,-25.193179242999918],[46.522941496000044,-25.16798961199993],[46.65438046700001,-25.189059537999924],[46.74619019000011,-25.14722551499989],[46.71030050100018,-25.052540127999862],[46.68925454800012,-24.77326349599997],[46.555862594000075,-24.710413470999924],[46.60951649800012,-24.637005265999903],[46.59481447200011,-24.343814506999934],[46.71345846700018,-24.344463433999977],[46.7071604730001,-24.28546841399998],[46.56748561200004,-24.29130205099989],[46.59038547400013,-24.230400315999873],[46.758491583000136,-24.197726650999982],[46.60052456000005,-24.11649293399995],[46.540111489000026,-24.0561879899999],[46.439830567000115,-24.07751071399997],[46.4191555970001,-24.030489074999934]],[[45.38243051400019,-22.42120305899988],[45.354858579000165,-22.566363204999845],[45.23163957300005,-22.570214018999934],[45.229480563000095,-22.485705491999965],[45.38243051400019,-22.42120305899988]],[[44.170989521000024,-22.77825319099992],[44.0959205260001,-22.77557517299988],[44.00256355900012,-22.553242843999953],[44.013301615000046,-22.482802838999874],[44.10117748800002,-22.482047628999908],[44.202266593000104,-22.43437622499988],[44.236659553000095,-22.51343517399988],[44.251300559000185,-22.647099037999965],[44.22795846700012,-22.733968411999967],[44.170989521000024,-22.77825319099992]],[[44.96775060700003,-23.096328479999897],[44.89855950500015,-22.8808168409999],[45.01906562400006,-22.745615736999923],[45.076770501000055,-22.74443204399995],[45.05026658800011,-22.93848668199996],[45.09566146700007,-23.02532722199993],[44.96775060700003,-23.096328479999897]],[[45.10448861600008,-22.85092345399994],[45.15578854600005,-22.750382692999892],[45.24006254799997,-22.831135288999974],[45.10448861600008,-22.85092345399994]]],[[[46.98949046500019,-19.56296870899996],[46.91777456600005,-19.694715127999928],[46.999965497,-19.707715291999875],[47.08080258299998,-19.663905933999843],[47.12837960600007,-19.58635723599997],[47.12810149500007,-19.47412371999991],[47.18613460700004,-19.332983031999902],[47.114437484000064,-19.279118071999903],[47.02433353300006,-19.421590812999966],[46.98949046500019,-19.56296870899996]]],[[[49.19734947700016,-14.269381105999969],[49.16643148600019,-14.140820480999878],[49.09952948199998,-14.22814264599998],[49.19734947700016,-14.269381105999969]]],[[[49.03593849700013,-13.970108773999925],[48.97737162500016,-13.87645693099995],[48.92911952300017,-14.019167717999949],[48.927627544000075,-14.17681304399997],[49.01352662900007,-14.10613080099995],[49.03593849700013,-13.970108773999925]]],[[[42.779234051000174,14.054250756000158],[42.68561193100015,14.01432589400008],[42.77833366700008,13.92915916700008],[42.779234051000174,14.054250756000158]]],[[[42.63475614000009,15.435550544000023],[42.55413245600016,15.388399122000123],[42.545137348000026,15.287495522000029],[42.621166992000155,15.31250000000017],[42.63475614000009,15.435550544000023]]],[[[41.792838745000154,16.873190281000063],[41.83734944800017,16.75431722100018],[41.94779459700004,16.67279459700012],[42.05416666800011,16.69166666700005],[42.07919859700007,16.62496727100006],[42.18828636100005,16.588005135000174],[42.188020834000156,16.7125],[42.07749328800014,16.812494072000106],[42.03333317300019,16.754199848000155],[41.90416666699997,16.753055828000186],[41.848073963000104,16.84808921800004],[41.792838745000154,16.873190281000063]]],[[[41.93081741700007,16.95660408100008],[41.8374614710001,16.904565815000126],[41.88472188300017,16.81805623400004],[41.947916667000186,16.88127103700009],[41.93081741700007,16.95660408100008]]],[[[48.75327658200018,36.942407843000126],[48.86848852300011,36.89848281500019],[49.13779052299998,36.740111113000125],[49.24985154000018,36.54479919000005],[49.46344355499997,36.49221062600003],[49.63610858100003,36.41982803100018],[49.76379061600005,36.4482544170001],[49.9804644890001,36.41772618500016],[50.03688056500005,36.52525678300003],[49.69034553000006,36.59164246200004],[49.33118852200016,36.70241098900004],[49.1406365150001,36.836930141000096],[48.931858561000126,37.09362676400019],[48.824783604000174,37.17024725000016],[48.695098463000136,37.336172053000155],[48.63952661200011,37.354939804000026],[48.49585760600013,37.24797766700004],[48.50518750300017,37.1524865],[48.59775154200008,37.05719767200014],[48.75327658200018,36.942407843000126]]],[[[48.04475346800001,45.60430548500017],[47.90440352799999,45.607448363000174],[47.92341653400018,45.46171523000015],[48.043117488,45.451534235000054],[48.04475346800001,45.60430548500017]]],[[[43.09394849000006,65.96178075700016],[43.43383047300006,65.88436851600017],[43.70916358700015,65.86943716200017],[44.09801449300011,65.92839194800007],[43.893634524000106,66.13094801500017],[43.69428654700005,66.25053698600004],[43.157932586000186,66.41821662400008],[42.592201562000184,66.40046157400002],[42.56243859800014,66.46990832400013],[42.20544060100008,66.52491104300015],[41.999999483000124,66.39166560500013],[42.131038469000146,66.19610608000005],[42.264385497000035,66.12229554400005],[42.66130046400008,66.02815185100013],[42.83271457500007,65.93347406400011],[43.09394849000006,65.96178075700016]]],[[[42.281421547000036,66.81533208600007],[42.51886762100008,66.66744362999998],[42.59599655300002,66.7349368940001],[42.281421547000036,66.81533208600007]]],[[[49.653621562000126,69.42317686000007],[49.28838750700004,69.51896893700012],[49.06806147100019,69.5238524020001],[48.665718551,69.4689933480002],[48.29937758200015,69.30700485500006],[48.183540518000086,69.19399986900004],[48.14006459200016,69.00086623500005],[48.16992562500002,68.80526815400009],[48.41611855000019,68.74979906500005],[48.9456824990001,68.7079648190001],[49.729545512000016,68.83719113500007],[49.974727579000046,68.94355078100006],[50.08120758900003,69.05665517700015],[50.36864853000003,69.11976152000011],[50.140853548,69.31457337800003],[49.653621562000126,69.42317686000007]]],[[[50.09145748300011,80.16105415800013],[49.93002655400011,80.25893048000006],[49.53611750599998,80.17798526700011],[50.09145748300011,80.16105415800013]]],[[[49.71174251700006,80.473941551],[49.6527406240001,80.52262800400018],[51.06584149100013,80.60145443900018],[51.65867254800003,80.71407218100012],[51.69303851900003,80.77722412200012],[51.11415059000018,80.84501661899998],[50.62424846500011,80.75849258000011],[50.23538247200008,80.77471424499998],[50.506423550000136,80.87903859699998],[50.51961549200007,80.9729698920001],[49.78704453000012,80.98650582700014],[49.6354365200001,80.91135066599998],[48.990535572,80.84400945000004],[48.8596035380001,80.78623517100004],[49.54867946400003,80.75444160600017],[49.22784854100013,80.60912119800008],[48.93598162000012,80.55227144200012],[48.43461254900018,80.60516242500017],[47.93613858700007,80.60909873399999],[47.54456758600003,80.53608799900019],[48.17071955900019,80.49174974300018],[47.58172959200016,80.44214044300008],[47.817501465000134,80.34533968699998],[47.26297754900014,80.35606718200006],[47.091373504000046,80.41442886500016],[46.55562957700005,80.31487348100006],[46.93860661300016,80.19607525800018],[47.381206472000144,80.21134255900017],[47.6296955360001,80.29486034600018],[48.01891759200004,80.2027747460001],[48.014156504000084,80.12664259000007],[48.38778352600019,80.10775883200006],[48.43502058000007,80.2167453670001],[48.84807557200003,80.18454645300011],[49.128032479000126,80.23133256000011],[48.86608157600017,80.31142483000008],[48.500656581000044,80.33330042400013],[48.84003447700019,80.43085555100004],[49.52660756600005,80.40665431500008],[49.71174251700006,80.473941551]]],[[[45.86991161000009,80.47288878400002],[46.21399661500004,80.46894493100012],[46.63590960200003,80.54600731100004],[47.03688861900008,80.5464039420001],[47.278514580000035,80.69363056300006],[47.91927755100011,80.75129101600004],[48.49301949400012,80.65065168400014],[48.63409061300001,80.72121322700019],[48.28572061099999,80.76812942200007],[48.375011517000075,80.84907597500012],[47.279933468000195,80.88653805300004],[46.913101487000176,80.79253098600009],[46.04825956700017,80.70959255700006],[45.69395048400003,80.71339291200013],[44.88163359200007,80.64558499100008],[44.874198509000166,80.60236236600008],[45.44557155900014,80.54976793499998],[45.96849854900006,80.55449851400016],[45.86991161000009,80.47288878400002]]],[[[51.67443857300009,-46.4098113259999],[51.724441487000036,-46.45175755499997],[51.86305251700003,-46.41314531199998],[51.7341614770001,-46.32425522799991],[51.67443857300009,-46.4098113259999]]],[[[51.01898950200007,10.40694756500011],[51.24478959200019,10.420976692000124],[51.28926061700008,10.367610455000147],[51.36029858800009,10.368041453000103],[51.413028470000086,10.438915473000122],[51.19924,10.53119],[51.22835150600008,10.430046077999975],[51.01898950200007,10.40694756500011]]],[[[53.8896636020001,12.647664476000102],[53.845870505000164,12.60307342200008],[53.76974455100009,12.615519710000171],[53.646049620999975,12.702671889000158],[53.547145510000064,12.713555957999972],[53.39641961199999,12.655039042999988],[53.39615256500019,12.570688598],[53.305702610000026,12.53034331300006],[53.4649616210001,12.441453564000028],[53.54557759200014,12.339836231000106],[53.751701499000035,12.299508213000081],[54.03221546800006,12.349309795000067],[54.13417847000011,12.34854184400001],[54.26068150599997,12.44018454500008],[54.40362950000002,12.465508621000026],[54.466365531000065,12.543698367000161],[54.085849590000066,12.70126389700016],[53.951339490000066,12.63909615900019],[53.8896636020001,12.647664476000102]]],[[[53.919133062000014,24.210209134000024],[53.86877102700009,24.26695635500016],[53.834326993,24.255085304000147],[53.826233092999985,24.229904287000068],[53.80437956800006,24.202564896000126],[53.7515893640001,24.237998185000095],[53.721911737000084,24.227835846000062],[53.71049034700013,24.220821134000175],[53.69250390600007,24.20751116800011],[53.68674824500016,24.20490313400012],[53.66750275300012,24.190873710000176],[53.6236158370001,24.170818828000108],[53.63800499000007,24.150853879000124],[53.65581156600007,24.152562591000105],[53.732613669000045,24.129809743000123],[53.83126929800005,24.150763947000144],[53.90519357000005,24.14563781100003],[53.951148926000144,24.203644083000142],[53.919133062000014,24.210209134000024]]],[[[53.813642586000185,24.2805361180001],[53.81508150100012,24.264078524000126],[53.857889230000126,24.28800049100016],[53.85375234900005,24.287640762000137],[53.82074723000005,24.27963679600009],[53.813642586000185,24.2805361180001]]],[[[53.33133617200019,24.297173576000034],[53.33511332500018,24.30238964400013],[53.24832874800006,24.29528499900016],[53.23465905200004,24.293036694000023],[53.23205101800005,24.282604559000106],[53.22890339200006,24.283234084000014],[53.30624508700009,24.291597779000085],[53.3050759680001,24.29438567699998],[53.31128129100006,24.29402594900006],[53.31568796900012,24.28062605000008],[53.33187576500018,24.296454118000156],[53.33133617200019,24.297173576000034]]],[[[52.64047697600017,24.30167018600008],[52.64542324800016,24.327390796000145],[52.60738192500003,24.265157710999972],[52.64047697600017,24.30167018600008]]],[[[54.40368778000004,24.356888560000073],[54.40440723800009,24.357068424000033],[54.40368778000004,24.357787882000082],[54.40368778000004,24.356888560000073]]],[[[51.53386120000016,24.40976869600007],[51.558322758000145,24.417412933000094],[51.557873098000016,24.41966123800006],[51.53386120000016,24.40976869600007]]],[[[51.72074032000012,24.56562120600006],[51.72361815,24.601773953000077],[51.71327594700006,24.592510936000053],[51.70761021800013,24.578211715000066],[51.72074032000012,24.56562120600006]]],[[[50.62268508000017,26.06838591899998],[50.62500391200018,26.12505283100012],[50.46064032500004,26.23100151700004],[50.493739380000136,26.04248974899997],[50.46304552000015,25.95707214300012],[50.536870865000026,25.87721234700018],[50.60893615500004,25.918004176000125],[50.60893392100007,25.918681408],[50.611650988000065,25.92749279500015],[50.61548991100017,25.975360946000137],[50.617444794,25.988685020000162],[50.620965975000104,26.058900274000052],[50.62268508000017,26.06838591899998]]],[[[50.96614462000014,68.41512492599998],[51.274814575000164,68.45421292600014],[51.54597853100006,68.52053087900003],[51.45315549100013,68.56606506500009],[50.873947541,68.4715319500001],[50.96614462000014,68.41512492599998]]],[[[52.561279469000056,71.43213498600011],[52.28879955500014,71.40478265700017],[52.17556356300014,71.32055659999997],[52.276359469000056,71.25950281700005],[52.55543862400003,71.24412772400007],[52.953704586000015,70.97953316900004],[53.16297153900007,70.97057593200009],[53.129913481000074,71.08361930700005],[53.2512546050001,71.12594959500018],[53.28144052100015,71.24222855300007],[53.078472567000176,71.2655830490001],[53.002933515000166,71.33441222100004],[52.561279469000056,71.43213498600011]]],[[[50.853736593,80.09278908900006],[50.19703660699997,79.9899446450001],[50.33985149600011,79.9428918260001],[50.994914497000195,79.91579765900019],[51.56579251199997,79.94447852000013],[51.19001050200012,80.09917526100014],[50.853736593,80.09278908900006]]],[[[53.74904259200002,80.24318256000004],[53.994113515000095,80.28183570600004],[53.39248263300016,80.37215909500003],[52.38707351400018,80.2790894600002],[52.41271258200004,80.20742854600007],[52.81271762100016,80.16547175600004],[53.54679850000008,80.17812206000013],[53.74904259200002,80.24318256000004]]],[[[53.79906059300009,80.57126232000007],[53.86542548500006,80.47050044500003],[54.37319162400013,80.47069976600011],[54.112342606000084,80.57805183000016],[53.79906059300009,80.57126232000007]]],[[[61.723177816000145,-73.3991074939999],[61.54051796700014,-73.3779391569999],[61.2473891210002,-73.44585087199988],[61.322612372000094,-73.54634540399991],[61.530063385,-73.51581531599999],[61.97360755500006,-73.5315372579999],[62.19048452300012,-73.4948219929999],[62.021157609000056,-73.42213108299984],[61.723177816000145,-73.3991074939999]]],[[[58.667103804000135,20.174591384000053],[58.781587500000114,20.276754369000173],[58.825294552000116,20.420825761000117],[58.94580370600005,20.493311117000076],[58.93975769200006,20.571400535000066],[58.85973858600005,20.629198679000183],[58.78968140000012,20.535309457000096],[58.772504348000155,20.445826913000133],[58.68751841400007,20.415249964000168],[58.6305913290002,20.33745860700003],[58.624206142000105,20.224144029000172],[58.667103804000135,20.174591384000053]]],[[[54.40440723800009,24.357068424000033],[54.404856899000094,24.356528831000105],[54.4050367640001,24.357338221000077],[54.40440723800009,24.357068424000033]]],[[[54.53274049400005,24.469573612000147],[54.499195781000026,24.477487646000156],[54.50630042500006,24.463098493000018],[54.55144639200006,24.448979137000094],[54.55540340900018,24.44933886600012],[54.55990001900011,24.460220663000143],[54.53274049400005,24.469573612000147]]],[[[54.45234110299998,24.527579884000033],[54.45557866200011,24.530187918000024],[54.45234110299998,24.531626833000132],[54.45234110299998,24.527579884000033]]],[[[54.51421445900013,24.51858666300018],[54.51016751000003,24.530367782000155],[54.463402764000136,24.537652291000086],[54.48561601800009,24.527310087000046],[54.4862455440001,24.52569130800009],[54.48678513700008,24.52488191800012],[54.499195781000026,24.503298189000134],[54.50261320499999,24.502578731000085],[54.50378232400004,24.521104765000132],[54.51421445900013,24.51858666300018]]],[[[54.48885357800009,24.54295829100016],[54.491011951000075,24.546555579000085],[54.49047235699999,24.546375715000124],[54.48885357800009,24.54295829100016]]],[[[54.52006005300012,24.5249718500001],[54.53480893400018,24.53297581600009],[54.529772731000094,24.547994494000022],[54.53058212100012,24.54448713800008],[54.51439432400019,24.53261608700012],[54.51511378100014,24.529018799000028],[54.52006005300012,24.5249718500001]]],[[[54.44172910300017,24.54106971500005],[54.44091971500018,24.54106971500005],[54.44262842500018,24.539990527999976],[54.44172910300017,24.54106971500005]]],[[[54.50099442499999,24.547185105000096],[54.502523273,24.545026732000167],[54.50405212000015,24.546645511000065],[54.50099442499999,24.547185105000096]]],[[[54.54694978200018,24.61733222400011],[54.54667998500014,24.616612766000117],[54.532290833000104,24.610857105000036],[54.539755206000166,24.61265574900017],[54.54694978200018,24.61733222400011]]],[[[54.605495647000055,24.630911987000104],[54.608193613000026,24.64781924100015],[54.60891307100019,24.647999106000157],[54.59353466400012,24.633699885],[54.605495647000055,24.630911987000104]]],[[[56.09027059200008,26.786884223000186],[56.19276450400014,26.922433344000126],[56.15554851900009,26.996870176000073],[55.99943557200015,26.95576498800017],[55.88333162800018,26.89993145400007],[55.781104596000034,26.946873130000085],[55.76998851600007,26.791050197000118],[55.56276657900008,26.709384811000177],[55.27499354700012,26.64911138400015],[55.32749158600018,26.544395094000038],[55.50138858399998,26.590504949000035],[55.67499556900009,26.679665097000168],[55.77721354900001,26.686886609999988],[55.87832662600016,26.73465977],[55.951660568000136,26.687443838000092],[56.09027059200008,26.786884223000186]]],[[[58.87567860799999,44.548950113000046],[59.06341161400013,44.604887917999974],[58.99195052500011,44.73516783900004],[58.91135048000007,44.66013974700019],[58.87567860799999,44.548950113000046]]],[[[59.46025047400019,45.22613094500008],[59.440368599000124,45.3244391020001],[59.283969494000075,45.37032599800017],[59.21503052000014,45.476966270000105],[59.33335147700012,45.613929418000055],[59.17845155900005,45.662586534000184],[59.08810051000006,45.57069019700009],[58.96348960600005,45.56573045800013],[58.906467518,45.415428181000095],[58.95989963599999,45.37548791000006],[58.88238949500004,45.30248991500008],[58.88673752400001,45.15811884100003],[58.98019457100014,45.092017811],[58.99102063700008,44.98263883600009],[58.91173152100009,44.95141892900017],[58.96333353400007,44.869719681000106],[59.18399048900005,44.965689958000155],[59.17290860700007,45.06508977400017],[59.25371954100018,45.0722499310001],[59.32934962100012,44.93084973900005],[59.437412637000136,45.06657387400003],[59.46025047400019,45.22613094500008]]],[[[60.05867762499997,45.74940058700008],[59.79573061700012,45.72317847400018],[59.79715755200016,45.57910546000011],[59.914649539000095,45.59074021300012],[60.24813462100008,45.71300468700014],[60.05867762499997,45.74940058700008]]],[[[57.001201581000146,65.59327725600008],[56.7565874710001,65.80065442600016],[56.84257858900003,65.9992886],[56.76295453200015,66.11369621400013],[56.35019257200014,66.35546148200012],[56.178523483,66.40873300300007],[55.69891752100017,66.36588387600005],[55.5042194880001,66.3286201140001],[55.179359552,66.17198832700018],[55.24458651700007,66.08291853600014],[55.51843251400015,66.120250527],[55.75624856500019,66.18377579800017],[56.00370447500012,66.28688494200014],[56.43984557599998,65.99722832800006],[56.483482602000095,65.73143013200001],[56.692054528000085,65.39335444900007],[56.71977649900009,65.12815187000018],[56.97555547200011,65.0290177600001],[57.16776659300007,65.05193002800019],[57.20891553500002,65.13892513000019],[57.02008852300003,65.29792195500005],[57.001201581000146,65.59327725600008]]],[[[59.04113050400008,66.02317668900008],[59.01381656400014,65.90655574900018],[59.11819456000012,65.86899493200019],[59.417850617,65.92377687200013],[59.54643655500013,66.02088859700012],[59.405605493999985,66.08844975400007],[59.128726589000166,66.06964210400014],[59.04113050400008,66.02317668900008]]],[[[58.34085451200019,66.14811499100017],[58.75571848700014,66.34159077400017],[58.70140861500016,66.42527385100016],[58.32295663400009,66.34828908800017],[57.93006162800003,66.13615150000004],[58.02002358900012,66.08304091200017],[58.34085451200019,66.14811499100017]]],[[[53.97262147700013,66.40502468200015],[53.76539652300005,66.33198427500014],[53.87399262800005,66.25910446500006],[54.175029519000134,66.1770084170002],[54.38794360600019,66.1804035900002],[54.4987144800001,66.28298584800012],[54.8465495480001,66.32273786200011],[55.211093604999974,66.41884157900017],[55.290489507000075,66.46832112700014],[55.22129052600019,66.54532902400013],[55.00374258700009,66.55152442400004],[54.591133512,66.49410956000003],[54.32557252400005,66.40387971400008],[53.97262147700013,66.40502468200015]]],[[[58.09905655400013,66.59154247900011],[57.63440658900004,66.50638603099998],[57.13050450700007,66.47597363700004],[56.80957048700009,66.35851366900016],[56.803871631,66.24109058100015],[56.94273747100016,66.17417013700003],[57.17747149600007,66.20626075600018],[57.40554459000015,66.32350094999998],[57.589416556000174,66.36604413800018],[58.158275538,66.41852960400018],[58.40524647200016,66.48032267100018],[58.494689593000146,66.58889430100004],[58.38336149000003,66.62006291100005],[58.09905655400013,66.59154247900011]]],[[[60.054141507,66.26482813100006],[60.301551484000186,66.37271227700006],[60.50076652400014,66.496246611],[60.2551195960001,66.53882768500017],[59.95096547500003,66.41227335200017],[59.82590463000014,66.30527299300019],[60.054141507,66.26482813100006]]],[[[62.3497545190001,69.87279421600005],[61.955539531000056,69.88848916200016],[61.46075058900004,69.86085352500015],[61.230968593000114,69.82524518800011],[60.99618964000007,69.86910902900001],[60.76308455400016,69.85501703800014],[60.12747159200012,70.01490033200008],[60.02827059500015,70.09134362500004],[59.82843361800013,70.1226416510001],[59.54576851700011,70.21311591400013],[59.341098535000185,70.34095301300016],[59.06084054900009,70.46785234499998],[58.71136061700008,70.43717340600011],[58.64606458500003,70.37996406700012],[58.42375958100013,70.34575215600017],[58.55467954400018,70.27806862300002],[58.40165348500017,70.20730122000003],[58.60405348000012,70.02612370100013],[58.900825492000195,69.90015476000008],[59.366317502000015,69.89109107300004],[59.496990535000066,69.84665474800016],[59.538108631000114,69.71414004400003],[60.12294754400011,69.609596254],[60.21623661800004,69.45712943500007],[60.51037956100015,69.2132271160001],[60.92013560400005,69.0700375560001],[60.945854635000046,68.97967795700015],[60.86780151500005,68.88724266400004],[60.547595546000196,68.75812380400009],[60.19747557100004,68.69216275200012],[59.8117635210001,68.70902462700019],[59.71804060000005,68.65658609900015],[59.875122495000085,68.52652008400008],[59.867511559000036,68.46741962000004],[59.36394156800009,68.53264708800003],[59.161193556,68.62765327800014],[59.186809490000144,68.68417563700012],[59.465141482000035,68.7670651150001],[58.94406555100005,68.93248733900003],[59.235988631000055,68.94882987100004],[59.26548354200003,69.01073860800017],[58.97491061900007,69.02953033199998],[58.44765454300011,68.97358146400012],[58.27674854300011,68.90251750900012],[58.07634360800006,68.8870976570002],[57.54194648600003,68.68512161800015],[57.226604536000195,68.71025374900012],[56.93463150000014,68.65843213000005],[56.62806355900017,68.68099353100013],[56.228969632000144,68.60371121000003],[56.050319592000164,68.6377170940001],[55.29591360400008,68.5564516930001],[54.97212956900012,68.4468576380001],[54.84130851200007,68.33086131800019],[54.88291963200004,68.26918978900017],[54.67869154400012,68.23585512800008],[54.41950951900009,68.29735834800016],[54.195583622000015,68.25074071799997],[53.4577555300001,68.25535679900008],[53.568786579000175,68.33519543300008],[54.162155587000086,68.36675212500018],[54.12247850700004,68.46145321400019],[53.97431160400009,68.60025518400005],[54.061820517000115,68.66413936800012],[54.13953048300016,68.84588132500005],[53.90680358800006,68.83438252700006],[53.622726472000124,68.9035166320001],[53.19303155900019,68.87930718100012],[52.69234460700011,68.71643422900007],[52.272468590000074,68.64329441300015],[52.615463611999985,68.5222017280002],[52.67816946800008,68.45967507700004],[52.40166456300011,68.36798812000006],[52.316627473000096,68.41823796500012],[52.41986050100019,68.50590479400017],[52.22373151100015,68.58015772700008],[51.44820363000014,68.42733233000018],[50.97125255200018,68.38914538500012],[50.49412947700017,68.28709672000019],[50.046199565000165,68.13055629600012],[49.7264324730001,67.99338695300008],[49.386753500000054,67.90450022300001],[49.013183474000016,67.86578622300016],[48.764038610000114,67.89236171800013],[48.68029048900007,67.83730451600013],[48.72203857000011,67.75771868100003],[47.80363058800003,67.68634157900016],[47.73381050800003,67.61112657000018],[47.784164624000084,67.515563654],[47.57551558400007,67.30007498100014],[47.63332355900019,67.13995582000018],[47.35868849000019,66.98475063400008],[47.21769347900016,67.03940366000018],[46.83225652200019,66.96032811500004],[46.28067750400015,66.91592330600008],[46.18974257200006,66.9741069580001],[45.728572606000114,66.97898237500004],[45.53614858400016,67.10774316000015],[45.110149586000034,67.26724474300016],[44.9138105450001,67.29779409800017],[44.83880257000004,67.40622876800006],[44.99048651900006,67.53598850800012],[45.240650622000146,67.61391858200011],[45.250148492000164,67.72365026800003],[45.97204962600017,67.81612445300016],[46.587062552000134,67.83204034600016],[46.45573455800019,68.11249648000012],[46.314407624000125,68.226561441],[45.86969351300007,68.39198349800017],[45.802772565000055,68.47878833100003],[45.59866752300019,68.52771769100013],[45.223514492,68.56515026500006],[44.567741544000114,68.54831906800018],[44.016361512000174,68.56649338100016],[43.76447258100018,68.63005653800008],[43.41548952800014,68.68267946700018],[43.37105957300008,68.61075351800002],[43.796703513000125,68.4772244350001],[44.141193532000045,68.31922556000006],[44.19559459800007,68.2297128690002],[44.177192465000076,68.10485905700011],[44.264976472000114,68.03869365400004],[44.15948854400011,67.9634323780001],[44.17453758100015,67.87866568800007],[44.053409524000074,67.78336981900003],[44.09505853100012,67.66216230300006],[43.93803748900007,67.53833896100019],[43.7565956040001,67.31276367400011],[43.79433059700011,67.20326098200013],[44.01235161000005,67.18109604500017],[44.18104545800014,67.11534269700019],[44.43985348300009,66.855067169],[44.34698853300006,66.74004817900015],[44.4802664930001,66.63396379400007],[44.29056558400015,66.482031909],[44.72083650300016,66.54482493600017],[44.99956847900006,66.53933194000007],[45.13834345900017,66.45943278900012],[45.44370256200017,66.40069073500007],[45.787406525,66.4527876160002],[46.18048056900017,66.48055183200006],[46.47534955300017,66.59246583000004],[46.712947507000194,66.56485299100018],[46.76668958800013,66.38811721000008],[46.90879855300017,66.32783405900017],[47.087432501000194,66.49512477700011],[47.40039047000005,66.55382844100018],[47.708473524000055,66.46818399900019],[47.83026559400008,66.54235294500018],[48.05875359300012,66.61472950600006],[48.979255541999976,66.85832521400005],[49.210418541000195,66.93264687900012],[49.57346357800003,67.14212304500018],[49.75205947100005,67.08875328800008],[49.96734949300014,67.09580263599997],[50.49135959300014,67.26100307500013],[51.012065547000134,67.13972783200012],[50.881790487000046,67.0994729040001],[50.95379656800003,66.98965706400014],[51.13037862500005,66.95132511200006],[51.71561450500013,66.98404169200006],[51.928047471000184,66.96607374200016],[52.06622649700017,66.86298773200014],[52.09261356700017,66.72790129200007],[52.14399362700016,66.07737156000019],[52.34900257400017,65.9825638530001],[52.59025151700018,66.04508212200005],[52.66079747000015,66.15998678300014],[52.594554619000064,66.35222623500005],[52.83464853600009,66.29576657400014],[53.205158496000195,66.12514857600019],[53.33897356900019,66.10364077999998],[53.513812525000105,66.16421344200018],[53.473781562000056,66.34150678700007],[53.65324749700011,66.5342124410002],[53.56023754000006,66.67102957600002],[53.09932758100018,66.76168639700012],[52.81526957600016,66.78974867300008],[52.41328858600008,66.78211929800005],[52.37698756999998,66.94393160300018],[52.751697534000186,66.85414381800007],[52.970127584000124,66.86033938600008],[53.442268623000075,66.9823096560001],[53.46923052400007,66.87257797000018],[53.556636507000064,66.8283478410001],[53.8316425590001,66.91800503600001],[54.04236947300012,67.17140656500015],[54.498401500000114,67.32137054800012],[54.79759956900017,67.33144073400018],[54.90994255300012,67.29430689100019],[54.960750632000156,67.15039330100018],[54.767032612000094,66.9156022790001],[54.81966761100017,66.80001114000004],[54.99509447500009,66.70488223900014],[55.178298571000084,66.65481545500006],[55.455512584000076,66.66218583000017],[55.461677474,66.748723616],[55.254119591000176,66.8710517930001],[55.747211532,66.88679250500007],[55.97986248700005,66.81330986800009],[56.30511855200018,66.65250473200012],[56.501277550000054,66.61366869200003],[56.86058861700019,66.5879942520001],[57.34915550400012,66.64344825300014],[57.666625619000115,66.71804383900007],[58.38092453600018,66.78745957600017],[58.653140588000156,66.75990105200009],[58.80730859800002,66.69373598400011],[58.94704447900017,66.69020351500012],[59.275299589000156,66.75981019200003],[59.783851616,66.73865996800009],[60.12477463100004,66.8400141090001],[60.24571258600014,66.94830410700013],[60.37472147500017,67.15201955800018],[60.64368853400015,67.17659479500009],[60.80064352699998,67.11366447200015],[60.862148592000096,66.93437908300007],[61.1492535860001,66.7812874780002],[61.12086458300013,66.66987756700001],[60.772792475000074,66.56182393900002],[60.79856163000011,66.46388810600007],[61.0153235140001,66.47670671800006],[61.66522259100009,66.66614627900003],[62.215896531000055,66.77994436100016],[62.41177356200012,66.7730779060002],[62.54663452900013,66.69744397100004],[61.96754861900018,66.56573141400014],[61.71244053400011,66.42453406400017],[61.77634449900012,66.19048316400017],[61.64694953900005,66.08415369300013],[60.803672579000136,65.8115802370001],[60.47578862000006,65.75578442200003],[60.356738605000146,65.68068374300015],[60.323036481000145,65.59399424400004],[60.393398535000074,65.38902117200007],[60.07432563200018,65.35122348300007],[59.881298616000095,65.38566405200015],[59.61761852700005,65.56098061000017],[59.280456639000136,65.46049667800014],[59.06774857900001,65.307664241],[58.93899550500015,65.10788677500005],[58.670188541000186,64.93460718800009],[58.67144750200015,64.84687330400004],[58.89350859300009,64.56467071700007],[58.88418154600009,64.47869166900011],[58.74269854100004,64.24897488300007],[58.8721996160001,64.12146618700012],[59.069404508,64.1849758670001],[59.095878581000136,64.30277278800003],[59.351604580000185,64.43787163299999],[59.49917552900001,64.57063695600016],[59.38331549900005,64.70991065900006],[59.37891751400019,64.79875196000017],[59.53250851400014,64.89503119400007],[59.74271357000009,64.97434327600018],[59.93393361600005,65.00505289300014],[60.18823653500016,64.90755996000001],[60.43972062000006,64.95349111300015],[60.8563385920001,64.94563307800001],[61.186923535,64.98808507100006],[61.380054487000166,65.0719426600001],[61.368137600000125,65.36747431700013],[61.48084251400002,65.47477139500006],[61.68702660399998,65.55572364800008],[62.33591851200009,65.70375677500016],[62.38224059700019,65.62183574200009],[62.864795480000055,65.72837794499998],[63.06757349900005,65.82566468400006],[63.37593852100008,66.05240690000016],[63.77465459100006,66.3135972290001],[64.1818544890001,66.48874614800019],[64.98171956000016,66.68071201500015],[65.40500650900015,66.74330622400015],[65.26673863399998,66.55610949300006],[66.75454757200015,66.61733862500006],[67.86102249500016,66.59953780900014],[68.57563053500019,66.50938541099998],[69.41986856400007,66.44668274100019],[69.91491650700016,66.44388301700013],[69.71633949700004,66.51727362000014],[69.4547724860002,66.53447144200004],[69.17176858900001,66.62354911200009],[69.08421357500004,66.78262221200009],[68.8662495590001,66.79563880500018],[68.49118051400012,66.68932542700014],[68.28444657100005,66.68396235000006],[68.4610975280001,66.80805290600017],[68.6404575160002,66.79552481100018],[69.08892856300008,66.85164198800004],[69.24298861400018,66.78552939100007],[69.43016053600007,66.78178318300007],[69.5216366040001,66.62732616500006],[69.78180652000009,66.54581701800015],[70.06672652000009,66.6001951180001],[70.03806259000004,66.72240829600014],[69.676666609,66.79681411500007],[69.88339954500009,66.87594313700015],[70.05133851900007,66.79617289900017],[70.26609059000009,66.80896066600013],[70.68459348400012,66.79054260700008],[70.27903761300013,66.59689868300012],[70.5944824930001,66.50884310200018],[70.96695750600003,66.53026758200019],[70.98597755300017,66.61675071800016],[71.3806605870002,66.72375124400008],[71.58315261600012,66.67723302300004],[71.586852556,66.831414779],[71.52749661100006,66.97051413900016],[71.84393357300013,66.97492452800009],[72.03910048900013,67.09515438000017],[71.94103959800015,67.17247458700007],[72.23697660300013,67.28585357400004],[72.05461857700016,67.33749900599997],[72.22234364400009,67.39705008100009],[72.41188865000004,67.36269232400014],[72.42620862900014,67.51354965000019],[72.5591736090002,67.62170117900018],[72.75602763400008,67.62705755100018],[73.19483954400005,67.86934920300007],[73.20119453600006,67.95605496200005],[73.07714857100018,68.15849586100018],[73.13699351600008,68.24228673000005],[73.44418356200009,68.43422963100005],[73.61608164400008,68.46842695700013],[73.56282755800004,68.54549587500009],[73.33117656400009,68.66555859100004],[72.60324062700016,68.91180314900015],[72.47483054100019,69.09121812200004],[72.46746050100006,69.25049071100017],[72.54206061300016,69.34394122000009],[72.48396262400001,69.4367112860001],[72.57598854500003,69.48632813000006],[72.48885363200009,69.67615108000007],[72.63490259500009,69.82763369500009],[72.4669575870002,69.96269733600019],[72.4455414890001,70.03382901700013],[72.54779064899998,70.15086385400008],[72.46102152300017,70.28271471200014],[72.66187254200008,70.37863687700013],[72.84532155800008,70.38622870200004],[72.87090262300006,70.46775360700019],[72.74709353100013,70.60208433399998],[72.87695351900015,70.7264964200001],[72.83368663800019,70.88818802600008],[72.66909053500018,70.9975162070001],[72.6233295340001,71.08844175200016],[72.73164350500002,71.12337869700008],[72.17949652900006,71.28742763000014],[71.8974765000001,71.43486731900015],[71.971237583,71.58319129800014],[72.16570259800017,71.61875403700014],[72.28922251500006,71.72609067800005],[72.315727601,71.83974442300007],[72.71935261700003,72.09479601400011],[72.85283660400017,72.28851738700018],[72.77449749300018,72.5199464280002],[72.75729363700015,72.7325148450002],[71.89909353700006,72.87305606000012],[71.5035936020002,72.92153631700012],[70.91744962700011,72.92300164200014],[69.75077855800015,72.8906964460001],[69.6373065320002,73.00992885100015],[69.33357251200016,72.98511623800016],[69.18373861700013,72.81042329400003],[68.98802956000009,72.68864279100018],[68.74845850600008,72.41896544900015],[68.81910655000007,72.29376680500019],[68.73399352000013,72.21991050400004],[68.74492653900012,72.06901428600014],[68.37449654200014,71.72817341299998],[67.99304954000013,71.55199989000005],[67.10196656200003,71.31522319500004],[66.84295653400011,71.13940053800013],[67.04405951400014,71.0850531160001],[66.7069095280001,70.8826645200001],[66.73238364100013,70.78494058100011],[67.19554850000003,70.85190897000018],[67.48876155500011,70.77381746000003],[67.31025652100004,70.57985083300008],[67.38117949200011,70.51134268800013],[67.184768534,70.34600411600002],[67.17059356200014,70.21741868000015],[67.39803348800001,70.12447930000013],[67.33721154800003,70.05658152500007],[67.0599894880001,69.97716332800019],[66.79656253200017,69.86695772900003],[66.83928660100014,69.52853654400008],[67.0499265110002,69.68640583500007],[67.28981758600008,69.62588614700002],[67.55941060499998,69.61504331700013],[67.7824636100001,69.51848127800014],[67.97415958000005,69.48894546300016],[68.19644161700012,69.54922056700008],[68.08582262300013,69.25503035000014],[68.53531659800012,68.99463261300008],[69.08122257700018,68.96904920100019],[68.98776251200019,68.91616743800017],[69.10906960600005,68.84218792300015],[68.97181661200011,68.75725342700008],[68.74417853800014,68.49882443200005],[68.58007864400003,68.37987516800018],[68.58690654200012,68.31245013300014],[68.30436750500019,68.19464684200005],[68.13015752700005,68.27430912100004],[68.16844958100006,68.38684907900017],[68.07746150700007,68.44586522100019],[67.86705059200006,68.46338339900012],[67.40099364100007,68.69708410300007],[67.2712406060001,68.69600132900018],[67.05751062400003,68.80352807100013],[67.07386757300009,68.85319772000008],[66.52932751000003,68.94816719800019],[66.41328458600003,69.06422386700007],[66.06514760200008,69.09738368200004],[65.55695348300014,69.17478770800017],[64.9375605090001,69.30925556400007],[64.761283553,69.39561716200006],[64.74986254000015,69.48395638700003],[64.30644259500019,69.55322694900008],[64.14893355800018,69.63696367100016],[63.82945262400017,69.61769183100006],[63.07527160700016,69.73019306499998],[62.72150449800006,69.69397385600018],[62.76498461500006,69.76436692300013],[62.3497545190001,69.87279421600005]],[[53.82521447800019,67.30962766900006],[53.75124351200009,67.23037643900005],[53.567699613000116,67.17928756600003],[53.4550366090001,67.21537685600003],[53.173984522000126,67.15265272700009],[52.96685059500015,67.18314089400019],[52.65746650200009,67.39201389800007],[52.87624356300006,67.46455072100008],[53.25262052000005,67.47258511000007],[53.63603961700005,67.56238815000006],[53.78155549100012,67.55840473500007],[53.88640253900002,67.45305209100013],[53.74791757300011,67.38382729300008],[53.82521447800019,67.30962766900006]]],[[[59.279178565999985,69.1800981470002],[59.2519496180002,69.2436614720001],[58.881126510000115,69.36721960900013],[58.739250561,69.33026061300012],[59.093849490000196,69.16040486500003],[59.279178565999985,69.1800981470002]]],[[[55.88280155700011,72.6810816430002],[55.813133524000136,72.77341819800017],[56.14590061300015,72.8291467900001],[56.20331547600006,72.97791400400007],[56.36035160600011,73.05862972000011],[56.04098852200008,73.12534581400018],[56.40222960600016,73.15416363500009],[56.42251951100002,73.23533113600013],[55.31450248600015,73.35239497500004],[54.95882061500009,73.433913007],[54.55120447300004,73.41169492800014],[54.39694258500003,73.31461304300012],[54.173168568999984,73.28847223400004],[53.89324954799997,73.32248650000014],[53.36404451200019,73.22031512400008],[53.13683659700001,73.12193555300018],[53.12119261300006,72.933142068],[52.58592662300009,72.87298012000008],[52.40117254500012,72.7635453210001],[52.659431555000026,72.68258451900005],[52.80694953100004,72.55850016500005],[52.67719649600008,72.48687076700003],[52.700084624000056,72.39271902800004],[52.53105147600019,72.32624014200019],[52.35907359800018,72.16064893900005],[52.06276359800012,72.14472567000018],[51.79676859400013,72.17768649900006],[51.639591481000195,72.1488527520001],[51.451702572000045,72.04134025899998],[51.39161656300013,71.90010535800019],[51.41282646600007,71.72419854700013],[51.503536596000174,71.59260669000008],[51.83489954800007,71.47609873900018],[52.19187156100014,71.52989664300003],[52.61009248800002,71.52988088500018],[52.61457848300006,71.49023666300002],[53.0043755370001,71.46431763900006],[53.440578496000114,71.31260602900005],[53.44648354700013,71.25388627100006],[53.73011759500014,71.19123070700005],[54.10834460600006,71.16326683400007],[53.49068048400011,71.07327268600005],[53.659439544000065,70.99985811100004],[53.63814163100011,70.93379144700003],[53.43366258800006,70.8914839580001],[53.54861854600006,70.81600927900018],[53.839542503000075,70.8199620170002],[54.042850594000015,70.76145616500014],[54.46430559400005,70.72864051100015],[54.62628151500019,70.66648769300014],[54.804790572000115,70.69555730700017],[55.19405755500014,70.59338660100002],[55.35963853200013,70.6376933410001],[55.818160487000114,70.67151599700014],[56.30324150900003,70.60783750500002],[56.237968611000156,70.72091189300016],[56.431320510000035,70.7276646900001],[56.775344494000194,70.61864110700009],[57.13179062700004,70.67221789700017],[57.29943455800003,70.62514965500003],[57.61674860199997,70.74750180500018],[57.44815047500009,70.83072739800019],[56.895194478000064,70.92934300300004],[56.278629559000194,71.19974504400011],[55.89217755400006,71.48283611300019],[55.52097357200006,71.87159951100017],[55.38797355500003,71.97538826000016],[55.371105478000175,72.09528367300004],[55.49534959100009,72.19198451700004],[55.476436497,72.41759266100007],[55.40342760600004,72.49967429200007],[55.66037350700009,72.69230501200008],[55.88280155700011,72.6810816430002]]],[[[53.79993046700014,73.7998110760002],[53.70052361000012,73.7338429830001],[54.072830482000086,73.64367331900013],[54.337593514000105,73.62790243300014],[54.54984660400004,73.70546035100006],[55.128025592000085,73.75259011600002],[55.27114860100011,73.71189245500005],[54.36684048899997,73.5887081510001],[54.27841157800009,73.51738335100009],[54.5813716130001,73.44420564800015],[55.06384250900004,73.46344815100002],[55.375820634000036,73.37576590000009],[55.72549452400011,73.37040952900003],[56.322639579000054,73.2983529890002],[56.63804255000008,73.30587608300004],[57.08378260500018,73.40472135200008],[57.10337061000001,73.54755233500015],[57.575603515000125,73.6805563750001],[57.25295656900016,73.82582213300003],[56.84614156900017,73.85867567300016],[56.84893458600004,73.91755569300011],[57.32984963400003,73.85076315700007],[57.55500063000011,73.76105885500004],[57.874034473000165,73.81069179200006],[57.78888355600003,73.94320716700014],[57.533996586,74.04975121500007],[57.307533488000104,74.08271941900011],[57.601474595000184,74.15721811000014],[57.67492253000012,74.06144765800019],[57.96462256199999,74.00195693199998],[58.06798551000003,74.07677564400012],[58.29262152100006,74.12279966900007],[58.81501760200018,74.29833952000001],[58.71027750700017,74.42204249700018],[59.04341859600004,74.47007264600006],[59.23056453400005,74.67723993300007],[59.46255147400012,74.67334083900005],[59.74187454200012,74.60464946600007],[59.85358050100007,74.74335336800016],[60.20507460500011,74.74796877900019],[60.36141553900006,74.8376963820001],[60.66271947800004,74.88842768299997],[60.588710626000136,74.96511556000013],[60.24553254300008,74.97601102800013],[60.40957259100003,75.05773458400006],[60.86270850300019,75.06640985400003],[60.95359448500011,75.17277033800008],[61.18151050200004,75.24291965900011],[61.62322959200003,75.28509052300006],[61.644138584000075,75.34871553800008],[61.88626461000007,75.44108360800004],[62.40306459700014,75.47251826000002],[62.85837159000005,75.56429054400007],[63.43353258900004,75.63995649900005],[64.53495758300005,75.74453951700013],[64.84262053600003,75.7993221270001],[65.25987251500004,75.81190403400012],[65.86544758500003,75.96579057999998],[66.39511161400003,76.0082432430001],[66.75290656300018,76.09487323000019],[67.28613256600005,76.14352950800009],[67.98867049800003,76.27126937700007],[68.38955664300005,76.44403364500016],[68.66433755800017,76.482877228],[68.89272363200001,76.5976078810001],[68.78096755000013,76.6441579540001],[69.07533261300011,76.72432532500017],[68.8062896140001,76.92027662000004],[68.43646948500009,77.03555678999999],[68.04237351900014,77.05557763600007],[67.28383659500003,77.020244059],[66.72847750600016,76.94431072100008],[65.86666849300019,76.7837240180001],[65.7863155460002,76.72337096200016],[65.96720154300016,76.59196920700003],[65.48973849800007,76.62021555000013],[65.2556995,76.52560498500014],[64.92561361500015,76.54028387700015],[64.75913258900005,76.47511743000013],[64.16546652700004,76.37528024600016],[63.752460485000086,76.38865558400016],[63.47010752700004,76.3251750730002],[62.94402357600012,76.26084765400014],[62.58260747800017,76.24604471000015],[62.215461511000115,76.3194059760001],[61.68558156400019,76.34923934900019],[60.93610748800012,76.2988206930001],[60.856197608000116,76.15259403300018],[60.955821556000046,76.08770888200019],[60.663764534000165,76.03830561000012],[60.40367860400005,76.1449026310001],[60.093063545000064,76.08292533000014],[60.19292453300005,76.02628897800008],[59.416915531000086,75.95560505900005],[59.12907762300006,75.88656952500008],[58.84261652700013,75.88689759300001],[58.42794751500003,75.80231999900019],[58.38595149800011,75.73723804100013],[57.95599356000014,75.69153454000019],[58.12554152400003,75.61741823200015],[57.442508616000055,75.50461742900018],[57.28578161100006,75.43393418000005],[56.68457049400013,75.33963559000006],[56.90889352500017,75.29003450500005],[56.51082252600003,75.14869013600008],[56.375358565000056,75.1435099520001],[55.99733355800009,75.24678103400015],[55.71608349100012,75.11583642800008],[55.84112556100007,75.00143417900017],[56.23763652000014,75.06142765100003],[56.299995533000015,74.99764991700005],[56.565780486000165,74.96207846100009],[55.82741947300008,74.88937349700012],[55.842151506000164,74.80183575000018],[56.36735954700009,74.79529686000006],[56.46791455800019,74.64035670900012],[56.10968358300005,74.70503566500008],[55.58401151900006,74.72895560500018],[55.45842747500012,74.63631327900009],[55.99375163600007,74.50211867400014],[55.31820259300014,74.45681297800019],[55.22614649800016,74.39091361700008],[55.643432507000114,74.368794278],[55.60682253300007,74.3111735550001],[55.13082447700009,74.31992493200005],[55.80308949000005,74.18135145300005],[55.55445860500015,74.1314280000002],[54.94357661600009,74.16776975300019],[54.601245608000056,74.07658470400014],[54.77509348900014,73.99694438700016],[54.24040551400009,73.93157140900018],[54.05677461200014,73.80507574900014],[53.79993046700014,73.7998110760002]]],[[[59.057266506000076,79.96097377000018],[59.536731485000075,79.98752663400018],[59.743347577000065,80.06768663000008],[59.37854351400017,80.14038488800003],[59.00013361000009,80.11508327500013],[58.600814545000105,80.03345074600014],[59.057266506000076,79.96097377000018]]],[[[56.883716635000155,80.08947019000016],[57.003250621,80.31698706100013],[56.88479253600008,80.35368672200008],[56.030559590000166,80.30991340600008],[55.956584601000145,80.18123509900005],[55.75770148400005,80.13764534600006],[56.03782250900008,80.07157717400008],[56.883716635000155,80.08947019000016]]],[[[58.349910488000035,80.18338656500009],[58.042571579000025,80.2729995040001],[58.58000160900019,80.3560442160001],[59.080604574000176,80.36237724600005],[58.90780258799998,80.46619751100019],[57.82762957400007,80.51354151800012],[56.95567661500013,80.46707559900017],[57.160835597000016,80.36636736800017],[57.18078251500003,80.18614052400011],[57.58939761300013,80.10711007300011],[57.845798523000155,80.17890040300011],[58.349910488000035,80.18338656500009]]],[[[55.089782488000026,80.35051366800008],[54.86175147100016,80.27899072100007],[55.277915479000114,80.25156798300009],[55.494934519000026,80.3206108930001],[55.089782488000026,80.35051366800008]]],[[[57.15604047800019,80.62051321000013],[57.292468525000174,80.56793537500005],[57.90044350300013,80.56789782400006],[58.02633650300004,80.65146070500003],[57.15604047800019,80.62051321000013]]],[[[59.93006855200019,80.89538884000001],[59.524429533000045,80.79598718000005],[59.27340662000012,80.68072813200018],[59.35827255200019,80.49977692400006],[59.67074956700003,80.43191686800003],[60.349010490000126,80.50252384100008],[61.011566577,80.43542653800012],[61.35119257700006,80.4606196900001],[61.37521360300019,80.5322578040001],[62.10003247800012,80.67109145800009],[62.02278854600007,80.74929796700008],[62.166042480000044,80.87393468800019],[61.77267859000011,80.92136134100008],[60.94864262400006,80.8915058400001],[60.74989361800016,80.83695155200013],[60.141994581000176,80.83092462900004],[59.93006855200019,80.89538884000001]]],[[[56.47316347300011,80.63143902100006],[56.73957053100008,80.6961570360001],[56.405006530000094,80.76132298100009],[55.790859623000074,80.74587345700007],[55.50967057500003,80.69620129300012],[55.645149623000066,80.63417085100014],[56.47316347300011,80.63143902100006]]],[[[54.58822650100012,80.74716225800006],[54.97849260700008,80.71841350400007],[55.68857961700013,80.799449912],[55.040058524000074,80.90110429200007],[54.54921762600003,80.9164627890001],[53.96116660100006,80.82838340300009],[54.506717521000155,80.79480415800003],[54.58822650100012,80.74716225800006]]],[[[58.927188589000025,80.91143498800005],[58.35522461500017,80.8986016240001],[57.82724350400014,80.81943371000006],[58.35425952200018,80.75714208800014],[58.928909561000125,80.81085667600001],[58.927188589000025,80.91143498800005]]],[[[56.56359448500018,80.97251978400016],[55.991710475,81.05075814400004],[55.34075946799999,81.06324081000008],[54.55250551200015,81.15134299400006],[54.29541762100018,81.14616247500015],[54.34324258100003,81.015019553],[55.290851605,80.9696970940002],[55.94495353700006,80.83169408700007],[57.20703849200004,80.71665783000009],[57.59626758900009,80.80569107700012],[56.86606552000012,80.89786116600015],[56.56359448500018,80.97251978400016]]],[[[56.03285254399998,81.08817412200017],[56.76134856000016,81.04937680700004],[57.59696563400007,80.87248428400011],[58.22574952400009,80.93865035700009],[57.558784556000035,81.05850956100005],[56.875949628000114,81.08738924100015],[56.53346254899998,81.13474766400009],[56.03285254399998,81.08817412200017]]],[[[60.815868583999986,80.96134251600012],[61.556957571,81.04951376700018],[61.73624463600004,81.16444374100018],[61.15245849100012,81.16895337300008],[60.62824655400004,81.12374574600017],[60.03569763200011,81.00803759600007],[60.815868583999986,80.96134251600012]]],[[[57.56172559800018,81.24588549800018],[57.053489569000135,81.164810198],[57.7952885040001,81.15198404200015],[58.182659501000046,81.22033242800012],[57.56172559800018,81.24588549800018]]],[[[57.765335605000075,81.36099082099997],[57.17780258100004,81.418131932],[56.50188054400019,81.44558450900013],[56.37942462700005,81.32561013800012],[55.68431456899998,81.37527375200006],[55.36957159000008,81.31826239400004],[55.630020624,81.19993003700017],[56.43123652300011,81.1885234400001],[57.01992457300014,81.2632132390001],[57.90548756400011,81.32610601100004],[57.765335605000075,81.36099082099997]]],[[[58.638366478000194,81.44092232700018],[58.73167751200003,81.342762864],[59.38560057300009,81.389039352],[58.876232485000116,81.47485947900009],[58.638366478000194,81.44092232700018]]],[[[58.494815489000075,81.4451947500001],[58.3911395610001,81.4894636040001],[57.48173860500009,81.63590500800018],[56.787177562000124,81.58206821200008],[56.825527619000184,81.51959369600013],[57.26345456800004,81.46970310000006],[58.293357619000176,81.41520195400005],[58.494815489000075,81.4451947500001]]],[[[58.050407485,81.7514528960001],[59.28467156300019,81.79997942200009],[59.072830527000065,81.90184687100009],[57.95565761300014,81.85946310700012],[58.050407485,81.7514528960001]]],[[[64.70569181900004,-73.58678223599998],[64.60729158800001,-73.53464929199993],[64.29638605900016,-73.57046132299996],[64.3328911050001,-73.66165814199985],[64.70569181900004,-73.58678223599998]]],[[[67.00427527600016,-73.64455150899994],[66.75797412600014,-73.51263119699996],[66.5825606050002,-73.6567478529999],[67.00427527600016,-73.64455150899994]]],[[[67.98448978600015,-71.38801839999991],[67.69889761200011,-71.41372687999996],[67.36088298300007,-71.52270641699982],[67.70734305300016,-71.56159695399992],[68.02822741000006,-71.41189895399998],[67.98448978600015,-71.38801839999991]]],[[[68.29317142900004,-70.4734690869999],[68.07176219400003,-70.50940013999997],[67.94488242800003,-70.58692791399994],[68.00850880900003,-70.66155387099997],[67.54719767600017,-70.72454104899992],[67.63558924000012,-70.80650620299997],[67.88240537300015,-70.80926217399991],[67.77098871300007,-70.94543496199992],[68.0740526350001,-70.88002440799994],[68.2696398970001,-70.86931702499999],[68.14476927000015,-70.76369058699999],[68.16152822200019,-70.62295116799999],[68.29317142900004,-70.4734690869999]]],[[[68.93448668300005,-70.31612645199988],[68.64410391600006,-70.37560596899993],[68.85792199200017,-70.45342040499992],[68.93448668300005,-70.31612645199988]]],[[[73.54146627800009,-53.0155373849999],[73.3605496030001,-53.01044759799993],[73.39665263900014,-53.1362824279999],[73.55055259600016,-53.193785635999916],[73.74665862000006,-53.12489125399992],[73.54146627800009,-53.0155373849999]]],[[[69.02804560400006,-48.74204923199994],[68.95082061500011,-48.75232544599987],[68.79054253300018,-48.84426838599984],[68.85333254300014,-48.925942320999866],[68.73916649500012,-49.06955164699991],[68.84111055500017,-49.15622270499995],[68.75888056400015,-49.217884175999984],[68.8608246230001,-49.317052316999934],[68.80915857200011,-49.36455289699995],[68.9058225350002,-49.42177447399996],[68.82666048900006,-49.47316626899982],[68.82611063600012,-49.55066702299996],[68.7577666090001,-49.66372850299996],[68.79777561200012,-49.719835118999924],[69.00665264000014,-49.718172316999926],[69.10610962100003,-49.672891766999896],[69.17637662400017,-49.58622741499988],[69.37332150900016,-49.56761221299996],[69.44583150900019,-49.62344390299995],[69.69749463199997,-49.66400242399982],[69.77915951500017,-49.593727541999954],[69.85083048700005,-49.68428176799995],[70.0841524970001,-49.72066710699994],[70.31666548500004,-49.59816760299998],[70.316375639,-49.53649909199993],[70.15361064600017,-49.50539368099993],[70.04582255600008,-49.52455873499997],[70.00248761400013,-49.582893595999906],[69.8122105330001,-49.53400379899995],[69.76304664700012,-49.46455302599992],[69.89416459100016,-49.33649967299982],[70.04026753400018,-49.36483586999992],[70.12777762000019,-49.33927659799997],[70.30693057500014,-49.380110212999966],[70.4511105420001,-49.36927609999998],[70.56860353400003,-49.22344623999993],[70.52638254700008,-49.09260808399989],[70.30610663400006,-49.05094348699993],[70.22499059800015,-49.15399462799991],[70.07888748800013,-49.11788404799995],[69.98359664800012,-49.14732665599996],[69.85638450300007,-49.24677676399995],[69.69415260000005,-49.30955218999992],[69.6088865160001,-49.30594344499997],[69.43527249100015,-49.216778267999985],[69.49581950400005,-49.02955035499991],[69.21720856200017,-49.123438399999884],[69.10388154300006,-48.99371503699996],[69.13388054200016,-48.83621941199982],[69.02804560400006,-48.74204923199994]]],[[[69.31860360700017,-49.06982657399993],[69.40693662900009,-48.94010220499996],[69.28305059100018,-48.90566280899998],[69.19943255700014,-48.97454964799988],[69.20416263300018,-49.084276974999966],[69.31860360700017,-49.06982657399993]]],[[[69.37130750500012,34.101156570000114],[69.48342149500019,34.167446863000066],[69.48786960400008,34.24795772500005],[69.42317153700009,34.29228642600009],[69.3426135690001,34.24674469600012],[69.3213805310001,34.142186489000096],[69.37130750500012,34.101156570000114]]],[[[66.93914759,69.3930688960001],[67.02890050600013,69.34095709500019],[67.26525860900017,69.40568868900004],[67.00079363800018,69.43702426700014],[66.93914759,69.3930688960001]]],[[[66.66800660100012,70.43895875200002],[66.88308757800019,70.40910308300005],[66.82543148300005,70.58194882300012],[66.57737760800006,70.49577782900008],[66.66800660100012,70.43895875200002]]],[[[66.44828758199998,70.77857016700005],[66.46528658400018,70.58919715800005],[66.64450860600004,70.63464920100012],[66.44828758199998,70.77857016700005]]],[[[70.01133756200016,73.04038801700005],[70.45816056000001,73.07614923900007],[70.76914962000012,73.14756439500013],[71.12420653600014,73.12975637100016],[71.61155653900005,73.23513986100005],[71.4400866040001,73.36569370200016],[71.22335858300016,73.28934194000004],[70.92693358300016,73.29227258900016],[71.15181753100018,73.47891410400013],[70.84418458500011,73.52592920400008],[70.53307348500005,73.48346128600008],[70.35077664600004,73.49759904200016],[69.94779955100006,73.40517967500011],[70.01825749400018,73.22018520400019],[69.82692764600006,73.08141357700009],[70.01133756200016,73.04038801700005]]],[[[65.41295657700016,80.96406713700003],[65.1954346220001,81.04878890000015],[65.39303564300019,81.12303546300006],[65.15200060600006,81.19304748900004],[64.61201459800003,81.2323428570001],[64.05256648200009,81.14837496200016],[64.17366050800007,81.0694284980001],[63.84489058100007,81.0087698390002],[63.04740848400019,80.97934181500017],[62.56077563700006,80.831038455],[63.027446479000105,80.69058592100004],[64.22469355800018,80.74182902100011],[64.94438958100011,80.84038461200015],[65.41295657700016,80.96406713700003]]],[[[63.648456489000125,81.59857972300011],[63.74793660400013,81.68844562700019],[63.481872534000104,81.73641492400003],[62.73753354700017,81.74642442500016],[62.21361950300013,81.71526419700018],[62.720916592000094,81.62201150099997],[63.648456489000125,81.59857972300011]]],[[[78.50268958600003,-68.42642647399998],[78.22799992700016,-68.43594815299991],[78.20980884100015,-68.53840991799996],[78.02724924300014,-68.54130519699999],[77.8855462410001,-68.62858464699991],[78.23736637200005,-68.65343666499996],[78.5729467270001,-68.60935940399986],[78.50268958600003,-68.42642647399998]]],[[[100.74580913099999,-66.23086553199988],[100.48539754600006,-66.27106381499988],[100.534086866,-66.32625548299995],[100.82305108100007,-66.34901487399998],[100.96484745800012,-66.33100483999993],[101.13211309500008,-66.20628123299997],[100.74580913099999,-66.23086553199988]]],[[[113.01084000800017,-25.522089991999962],[112.92150000800007,-25.586979991999954],[112.96693000800008,-25.77821999199989],[113.06075000800024,-25.941829991999953],[113.15607000800003,-26.05460999199994],[113.11543000800009,-25.837279991999935],[113.07676000800029,-25.76802999199998],[113.01084000800017,-25.522089991999962]]],[[[80.4761805670002,9.449364077000098],[80.49413259200003,9.412728789000084],[80.62698357800008,9.45178594400005],[80.35376756500011,9.668039716000067],[80.25354749600018,9.819979816],[80.02261365800018,9.813389294000046],[79.91059153300017,9.765512701000091],[79.99858056200014,9.680898729000091],[80.11856851200008,9.605373926000084],[80.09372756800013,9.572247302999983],[80.1842725750002,9.481943864000073],[80.0556105280001,9.390539377000152],[80.11789661800009,9.304896443000075],[80.07810956800006,9.06162343800014],[79.9453425690001,8.944481815000188],[79.91889950800004,8.818990978000102],[80.04799657500007,8.897365125000135],[80.15014649400018,9.06652534300008],[80.1796645390001,9.367967750000162],[80.21881858800009,9.41012872300007],[80.3782506010001,9.399373735000154],[80.4761805670002,9.449364077000098]]],[[[80.13276661800012,14.257216030999984],[80.17339353500012,14.347761205000154],[80.19862356600004,14.573885172000132],[80.114547545,14.740594353000063],[80.05426758000016,15.02257699800009],[80.05287953700014,15.098951224000132],[80.11331959600011,15.350175973000091],[80.2045135300001,15.463008795000064],[80.24575064900012,15.617577963000144],[80.36833162500005,15.767758366000066],[80.55294052800002,15.868191839000076],[80.74432351700005,15.87677239300001],[80.81186657000012,15.836054951999984],[80.81247761000003,15.718093578000037],[80.93109159900013,15.707707227000128],[81.01236756100013,15.74780742500019],[80.99176065200015,15.823134751000055],[81.15170262000015,16.003914298000097],[80.91430650200016,16.14681535300008],[80.73081960100006,16.310174958000175],[80.66589354600006,16.42518674000013],[80.54811858600004,16.496902304000173],[80.27124756100017,16.566668907000178],[80.21494262900012,16.599455727000077],[80.18125156900015,16.688260147000108],[80.18250265200004,16.82003288599998],[80.10553750200012,16.86838909100004],[79.93448649500016,16.62493419800012],[79.85217251800015,16.56424888400005],[79.82792652200004,16.500762841000096],[79.73922754600005,16.408667685000182],[79.70372063100007,16.329542519000086],[79.42569759600008,16.13083609300014],[79.3258436480001,16.022882042000106],[79.2346195400001,15.81412621700008],[79.25084656900009,15.740440067000065],[79.34155250800012,15.630447872000161],[79.36427249500014,15.540634774000011],[79.21441663900015,15.381982949000133],[79.14196061800004,15.191155344000038],[79.12761649900011,15.014277741000058],[79.23320752500007,14.794009875000086],[79.35671252100008,14.620042468000065],[79.36945351700018,14.523938584000064],[79.25570656400015,14.436884305000035],[78.98381757400006,14.408495134000077],[78.86506662500005,14.48715108100015],[78.7072065550002,14.562245055000119],[78.3955685680001,14.827968820000137],[78.10218049900016,14.896205223000152],[77.90664662300014,14.95531038100006],[77.7501065350001,15.041844982000043],[77.76880656100013,15.154897578000146],[77.83988962600012,15.27297981800018],[77.7901916450001,15.410481252000068],[77.77393360300016,15.581530080000107],[77.78220352400007,15.759039846000064],[77.86142759700004,15.934677598],[78.13760359500009,16.13256611800017],[78.18966661300016,16.216669631000116],[78.19159663000005,16.339073078000013],[77.97344251300007,16.39641837199997],[77.72802759600017,16.429016264000097],[77.54386159200016,16.580547997999986],[77.39909355200012,16.752217254000072],[77.36450160500016,16.848061132000055],[77.32173964900016,17.167890416999967],[77.24204250200006,17.407844692000026],[77.25256363500012,17.554186686000037],[77.3028335960002,17.755325205000076],[77.27179758800014,17.925314896000145],[77.30834151200008,18.11054389200018],[77.29519650900005,18.18146870700008],[77.19699849000011,18.347529631999976],[77.10188249700002,18.42810369300014],[76.88889364300013,18.64264085200017],[76.7024304950001,19.223676728000157],[76.57618763400018,19.40422526900005],[76.52111065100007,19.448973401000103],[76.34420756700001,19.53283668900019],[76.13641364900008,19.670908763],[75.97329762200013,19.715258083000094],[75.8385466260001,19.712898074000123],[75.57592751800019,19.769632829999978],[75.41280361200018,19.852800085000126],[75.17701749000014,19.86977126000005],[74.71826151200008,20.00343244100003],[74.54110764100017,20.076128352000126],[74.48858663600015,20.126094553000144],[74.49752057100011,20.314764656000023],[74.62084150100014,20.569650452000133],[74.79345657100015,20.627857238000104],[75.0059125040001,20.616125591000127],[75.1070705080001,20.639485285000035],[75.50382957200009,20.620186623000052],[75.76406050800011,20.719301958000074],[75.92980157900007,20.859233976000155],[75.94016261800016,20.99922718200014],[75.8417126390001,21.040913906000185],[75.69307752300006,21.061882914000023],[75.56934353300011,21.047762760000182],[75.46518748900019,21.072771174000138],[75.2638625570001,21.065341790000048],[75.03453050000007,21.093039118000036],[74.8027576340001,21.361636368000063],[74.73368052600006,21.49591797700009],[74.68434162600016,21.92165495600011],[74.61723359500007,21.957022900000084],[74.48484059600014,21.893126311000174],[74.474868646,21.82449009100003],[74.52748151700018,21.695837097000037],[74.46138752800016,21.564094198000078],[74.1827465790002,21.421282997000105],[74.02449758800003,21.286960483000144],[74.01534253800014,21.1985954430001],[74.17993964700008,21.047782541000174],[74.13758857300019,20.963966191000054],[74.03237959500018,20.947789118000117],[74.10791764100014,20.75105931200011],[74.08347349700017,20.65945433100012],[74.125556518,20.572980080000093],[74.09024054300016,20.508821808000107],[73.86313656400006,20.386989671000038],[73.91475651500014,20.26349758300006],[73.89650760300009,20.148043237000024],[73.85449951600003,20.08471695300011],[73.85890152400015,19.96656346600014],[73.78415657300019,19.779894459000047],[73.71408855600015,19.67701933800015],[73.70260652200011,19.524400136000168],[73.74620851200012,19.40955465100012],[73.81345350400011,19.346087551000096],[73.78344763100012,19.279534234000096],[73.80873851500019,19.191618463000168],[73.9159314900001,19.108056420000082],[73.9208525050002,18.819701349000127],[73.99756653300011,18.72450522400004],[73.9943775540001,18.652499312000145],[73.92906962000018,18.55099832000019],[73.91886163600009,18.413824451000096],[74.009460622,18.31219169500008],[73.99420153400013,18.221776106000107],[74.03813963900018,18.11036301000013],[73.97586863600009,18.035437512999977],[73.96759754100009,17.893595930000117],[74.01154352400005,17.753225371000042],[74.08537250100005,17.601373616000046],[74.1587066100002,17.36815889500008],[74.27417755300007,17.12521194500016],[74.26386261500016,16.886217734000184],[74.37358055400006,16.683971463000148],[74.42671159400004,16.135714864000136],[74.42671159400004,16.010352773000022],[74.3953706530001,15.881081027],[74.3518905360001,15.81256634400006],[74.43087756800014,15.744300772000031],[74.523956591,15.71082177400018],[74.80972249300004,15.413032032999979],[74.96130351200003,15.326657359000137],[75.0459676070002,15.143549151000059],[75.14141049500017,15.126470353000059],[75.24059254900016,14.978388946000052],[75.27364356700008,14.839409112000055],[75.40457962400006,14.651592287000028],[75.39192948800019,14.552706617000126],[75.44920353499998,14.470452151000131],[75.661239534,14.375967315000139],[75.81823761000015,14.378828059000057],[75.9085465820001,14.3178220530001],[76.08908858500018,13.93852802500004],[76.12390852000004,13.799557412000013],[76.3386386300001,13.465378476000183],[76.41325349400006,13.300400660000093],[76.43943051300016,13.155879215000141],[76.55274965300003,12.904276274000154],[76.70120958700016,13.036547233000078],[77.00367760400019,13.198937219000129],[77.10111957600009,13.179387771000108],[77.24743659200016,13.090073563999965],[77.43376160600013,13.048915401999977],[77.55110154500011,13.091194559000087],[77.72469360999997,13.095303368000145],[77.85984056700005,13.166358606000074],[77.97873652300007,13.123521548000099],[78.10041862300005,13.003959567000095],[78.24346954700007,12.834721733000151],[78.32936058500007,12.678880360000107],[78.39938350700004,12.618086416000097],[78.57586649000018,12.584467776000054],[78.63404058700007,12.719228495000095],[78.75208259400006,12.841340252],[78.99817661200012,12.905405987000108],[79.16909049100008,12.97061166200018],[79.2797926340001,12.936905012000182],[79.3351665040002,12.774965972000132],[79.33896652300012,12.58166889100005],[79.27822153000017,12.4631469360001],[79.17964951000005,12.205723434000049],[79.01127652100018,11.91925412300003],[78.96376051800019,11.770283228000153],[78.81839753000014,11.55564783400007],[78.72792863100005,11.497154052000155],[78.70874061100011,11.42171625200018],[78.7521746270001,11.320826134000129],[78.75466958400006,11.22877540200011],[78.59107260400015,11.196445899000082],[78.52857964800012,11.154219546999968],[78.53054855700003,11.037954839000065],[78.59203350500019,10.880244804000085],[78.43003864200006,10.455075447000127],[78.4377976020001,10.354002268000158],[78.34593160800006,10.172834974000068],[78.3064875450001,10.02501541800018],[78.24075364300006,9.918139111000187],[78.05902057100008,9.786643143000163],[77.9901885490001,9.702663179000183],[77.9676135690001,9.57816593300015],[77.97466258200006,9.350204150000138],[77.92548360900014,9.06664134800019],[77.90032163900014,8.820217921000108],[77.8704686530001,8.721377680000103],[77.75321957300008,8.59683282500015],[77.61593657200007,8.538956956999982],[77.65611254300006,8.323155472000167],[77.78368360100006,8.210564551],[77.95876362100006,8.319066779000025],[78.059646531,8.363412411000127],[78.13363660800002,8.486684726000135],[78.12191049300014,8.641971385000147],[78.17434650600006,8.760554024999976],[78.19503052800013,8.92758222100008],[78.40628064000003,9.101605787000096],[78.65200049100014,9.150075148000042],[78.86585955300012,9.248704332000102],[79.07656853000009,9.288593306000053],[78.98329957200019,9.354201815000067],[78.90075660200011,9.47515016300008],[78.7773436380001,9.591964054000073],[78.8048936130001,9.890973866000024],[78.86918649900002,10.06802128600009],[78.90440356800008,10.246088785000097],[78.93044262000018,10.284548141000073],[79.07749154500016,10.355450158000053],[79.19171157200014,10.659321138000053],[79.29805763900015,10.908502714000122],[79.27699257500018,11.083571670000083],[79.36723365400007,11.316254308],[79.51730358300011,11.572366713000065],[79.59452052500006,11.826620514000183],[79.62310750900014,12.02611567700012],[79.61746950600019,12.186836827000093],[79.64147158800017,12.47403620200015],[79.63878653000006,12.662742514000115],[79.52887765100013,12.99498992500014],[79.56009655200012,13.235353739000175],[79.64665261000005,13.391763573000105],[79.77176659700001,14.011692150000101],[79.92239358800015,14.206610291000118],[80.00081651800019,14.202280535000114],[79.99797052700018,14.131104263000168],[80.05715162500013,13.934938392000163],[80.12613653200009,13.808485647000055],[80.10948957000011,13.712653169000134],[80.13157655500015,13.594439836],[80.21785751900006,13.477468868000074],[80.23645763300004,13.338627000000145],[80.21211960400007,13.22039472400013],[80.23338365400014,13.126071156000023],[80.29708863300004,13.12396226900006],[80.34792353400019,13.29410099],[80.33830261800011,13.374534571000083],[80.23681654600017,13.636178025000106],[80.25817162400011,13.77625890600018],[80.16171251400004,13.978505513000073],[80.12812052900006,14.159542384000076],[80.13276661800012,14.257216030999984]]],[[[82.34773264600017,16.72023928699997],[82.36766062100008,16.855819589000077],[82.20429950700003,16.914793151000083],[82.22641750500009,16.81749417499998],[82.29497560600004,16.70250318],[82.23525957500016,16.61404778200017],[82.12247453000009,16.532227834000025],[81.82613351600014,16.42165795900013],[81.62931050400005,16.40175596800003],[81.49219564400016,16.434927014000152],[81.31748962400002,16.412812369000108],[81.3265226330002,16.37334986500008],[81.7612606030001,16.326273744000105],[81.95014964100005,16.396038336000174],[82.18359352400017,16.508641327000078],[82.275573512,16.571907429000134],[82.34773264600017,16.72023928699997]]],[[[86.87094857900018,20.58478951100011],[87.00125163500007,20.667394005000176],[86.96569861900008,20.773228776000167],[86.86322750600004,20.773499847000096],[86.74234051299999,20.70092010900015],[86.59880058800007,20.431667059000063],[86.52078250400012,20.31835361900005],[86.17105061100011,19.99329302000018],[86.11863756500009,19.911356731000126],[86.20313251300018,19.886469184000134],[86.40162654200009,19.970183275000068],[86.38481864700003,20.004902291000178],[86.49738358300004,20.12851424100012],[86.53347052600014,20.201480049000054],[86.76450360600018,20.330243852000024],[86.71439357100013,20.395379286000093],[86.7727966610002,20.508532800000182],[86.87094857900018,20.58478951100011]]],[[[86.62861652700019,26.669413359000146],[86.58605154600002,26.792379063999988],[86.51510661400016,26.825487581000175],[86.21240256300018,26.868049712000072],[85.88605450400013,27.024124773000096],[85.68741563600008,27.099795589],[85.46984858600007,27.132902095000134],[85.27593258600018,27.20384300300003],[85.2002565730001,27.21330248400011],[85.06309561200004,27.284245403000057],[84.89282965400014,27.279515831000083],[84.77931957400006,27.35045673900015],[84.69106266000006,27.204847993000044],[84.62695350600018,27.177768243000116],[84.45153854500012,27.177839154000026],[84.7296526070001,27.02099497000006],[85.12919664200007,26.873342381000043],[85.5721735190001,26.690948479999975],[85.91960860300009,26.586722196000153],[86.40601363000019,26.508553739999968],[86.66658755400016,26.456440934000057],[87.44831854600017,26.3609004810001],[87.96946756700015,26.343531333000044],[88.21266966200011,26.369586144000095],[88.44718961300009,26.491184593000185],[88.64696456400009,26.63015118300018],[88.93359363400009,26.67357732100004],[89.27233852800009,26.67357732100004],[89.61109163700013,26.63015118300018],[89.83259566600015,26.63015118300018],[89.97248862400005,26.659956058000034],[90.09951066700017,26.75814552700018],[89.93374662900004,26.744035096000175],[89.79129752600011,26.704140087000155],[89.66995254600016,26.734367744],[89.63919062600007,26.77787669500009],[89.52353662300015,26.81515403600008],[89.10874154800018,26.842741729000124],[89.0223006560002,26.90051114700003],[88.97360951000007,26.882100129000094],[88.82855262900006,26.90196523900005],[88.75835452500019,26.851828550000164],[88.59791551100011,26.8718835950001],[88.34722150400017,26.81172030500005],[88.246940581,26.751553831000138],[88.15429657900012,26.781366416000083],[87.97945359900018,26.737636351],[87.89031960200003,26.67821620100017],[87.7922746370001,26.69603948000008],[87.67482757700003,26.777425748000155],[87.36865962000013,26.78000653600003],[87.2606505830002,26.816124157000104],[86.94587659100011,26.856972189000032],[86.8414535,26.778192693000108],[86.82253252700008,26.669413359000146],[86.62861652700019,26.669413359000146]]],[[[83.94231462500011,27.50917696],[84.15972862000012,27.53963662900003],[84.44824261300005,27.506529788000023],[84.65161859700004,27.525450257999978],[85.02526053900016,27.383562071000142],[85.03472152900008,27.43558703600013],[84.79350259300014,27.525448079000057],[84.50499765300003,27.719354021000072],[84.39148757300012,27.719356033000054],[84.15499854500018,27.686248353],[84.02729756800005,27.648412945000132],[83.88068349600007,27.634225568000033],[83.8617625230001,27.57274397300006],[83.94231462500011,27.50917696]]],[[[88.35337851400016,27.579369699999972],[88.17903157500018,27.596888213000057],[88.05623652600019,27.541249475000086],[87.99868051100015,27.571947189000184],[87.98332955900008,27.65252778900009],[88.02362052900008,27.72543073300011],[87.94495351800015,27.77915051800005],[87.91985357400011,27.650207846000058],[87.94127654500011,27.498519203000058],[87.99890162600002,27.494947339000134],[88.02353654200016,27.390842760000112],[88.08342758800006,27.313953383000182],[88.19332154699998,27.438288020000186],[88.37349659100005,27.43731706000011],[88.35337851400016,27.579369699999972]]],[[[83.83811164300005,27.530175975000134],[83.76716654300003,27.61057636400011],[83.54960653500007,27.6815194510001],[83.4219055580001,27.69097792600013],[83.18068662200017,27.743002890000184],[83.01988265900019,27.747732631000133],[82.76036854300014,27.710481274000188],[82.85293559900003,27.573947950000104],[83.09138465200004,27.52698112900009],[83.65860765400004,27.512529722000124],[83.77060664400017,27.494464541000127],[83.83811164300005,27.530175975000134]]],[[[90.4955515690001,27.79160166800017],[90.55213159500016,27.874262488],[90.46842152800002,27.98766444200004],[90.34556562600011,28.013317424000036],[90.2618555590002,27.925564262000137],[90.28346259700004,27.77030878400018],[90.23341358200008,27.685288290000074],[90.30281054400012,27.621790177000037],[90.43933850300004,27.653698573000156],[90.4955515690001,27.79160166800017]]],[[[93.6730725600001,28.40099637200018],[93.72496760500019,28.44316472100013],[93.73188066400013,28.53173109500017],[93.62799854100007,28.529572420000136],[93.59152251000012,28.46103410000012],[93.6730725600001,28.40099637200018]]],[[[79.94062758000018,29.11846867600019],[79.75504252100006,29.132369392000157],[79.45823664700004,29.258463223000035],[79.40142863300014,29.238375154000153],[79.11534153700018,29.315369976],[78.98802160100018,29.31515120800003],[78.78305858800007,29.26257706100006],[78.99159950100011,29.140329853000026],[79.21453063299998,29.05403933400015],[79.51656362900019,28.96055613500016],[79.73229956800009,28.867072601000075],[80.04871356300009,28.773592588000042],[80.11343359000011,28.723255403000053],[80.27883150700006,28.500337347000027],[80.52333849600018,28.421234645000027],[80.64558453000012,28.435617990000026],[80.839752659,28.363708134000092],[81.29289259400002,28.153866853000125],[81.42584265400012,28.18449851800017],[81.50532556000013,28.101406868000026],[81.67915365900018,28.022545229000116],[81.82800251300017,28.017311233000157],[82.12597665700008,27.96528660399997],[82.45705462400014,27.809215232000156],[82.54691365500003,27.79029677300008],[82.84488662500002,27.79975658900014],[82.83542664200007,27.884886048000055],[82.71718564800005,27.847051645000192],[82.62731957600016,27.85177937400016],[82.27259860700019,27.951099227000043],[81.93206065600003,28.10717076700007],[81.75706462200009,28.26797607100002],[81.54895755700005,28.32945733100007],[81.41652650400005,28.405128482000123],[81.36464654700012,28.575619411000105],[81.20462763300003,28.67181666900018],[80.9807505190002,28.778791212000158],[80.7076416270001,28.85248825700006],[80.37832654100015,29.00389342400007],[80.22441049100013,29.040230986000154],[80.11576057400009,29.101690286000178],[79.94062758000018,29.11846867600019]]],[[[97.1588665390002,28.783727147000036],[97.23410753100006,28.926923413000054],[97.29035161100006,28.802609228000165],[97.26187862100016,28.705561206000027],[97.30679355200004,28.665680781000162],[97.40140562500011,28.712407041000063],[97.39860556700012,28.839344930000152],[97.33543350900015,28.97326662100005],[97.19998966500015,29.07981821200019],[97.15896561300008,29.034781072999976],[96.97458654200011,29.06043422300013],[96.89165465100007,28.99900157800016],[96.6797026390002,28.946726665000085],[96.74639157500013,28.888016966000123],[96.79033655200004,28.773088500000085],[96.8695525780002,28.7108050920001],[96.94152060500005,28.70343320799998],[96.96898659300012,28.79952150200012],[96.95175155600003,28.940561943000148],[97.01551051400008,29.015668657000106],[97.09724463100008,28.997286473000088],[97.01923358800008,28.868490819000044],[97.1350785300001,28.63299202900015],[97.1588665390002,28.783727147000036]]],[[[95.21652258300014,28.711904965000087],[95.19026157700017,28.618398800000023],[95.40284759700012,28.696564574000092],[95.39913156400007,28.799408347000053],[95.32691962400014,29.02398853400007],[95.25343363400003,28.972654406000117],[95.31611652400017,28.913926769000113],[95.36740153400012,28.78419116900011],[95.35328657600007,28.74120290200011],[95.21652258300014,28.711904965000087]]],[[[96.29770662100003,29.433445511000116],[96.22269462300011,29.473728937000033],[96.01154358500003,29.519569231000162],[95.98460364500016,29.587578484000062],[95.7954026330001,29.658281010999985],[95.69768556700006,29.76245700300018],[95.57226564100006,29.78039830000006],[95.45193453600001,29.730057092000152],[95.40607462900016,29.61755854000012],[95.57699554900006,29.48665835800017],[95.67212663000015,29.492628117000038],[95.83386953299998,29.4641333350001],[95.8904576060001,29.427670715000147],[95.7437136150001,29.308290452999984],[95.68171653300004,29.122367602],[95.81757360500012,29.185815257000115],[95.88288858000016,29.267451976000075],[95.97174865600016,29.17330677500007],[95.9142605340001,29.08922907800013],[96.09942666600011,29.10983799800016],[95.96788761600004,29.001942453000026],[95.93586757200018,28.838209015000075],[95.85788754200013,28.79968142900009],[95.86624161700007,28.729633194000087],[95.99607059200014,28.812339779000126],[96.12519867200012,29.02780146200007],[96.20182066600006,28.8782483600001],[96.074928543,28.77908122600013],[96.15667758000006,28.75536211600013],[96.35867356700015,28.924096365000082],[96.4489825390001,28.917445660000055],[96.52068351800006,28.833138969000117],[96.50916259200005,28.776481327000056],[96.3915326400001,28.730043068999976],[96.44158165400017,28.623108424000122],[96.31674963500006,28.564970873000107],[96.03759755800007,28.51409992900011],[96.15809663600004,28.45024441200019],[96.21534754900006,28.53096431800003],[96.3179626640001,28.463402994000035],[96.2727666040002,28.42014583499997],[96.40131365000008,28.323559656000157],[96.45279664100019,28.21480513299997],[96.59307064000006,28.35729933100015],[96.67495764300014,28.34707860600014],[96.62671660500013,28.190945207000027],[96.73055262800011,28.169015969000156],[96.7262265600001,28.096110175000092],[96.80811356300018,28.063311285],[96.837898656,27.99579337900019],[96.91649660000019,28.01493362200017],[96.90561655500011,28.110349520000057],[96.83824164400016,28.139548383000033],[96.79386851900017,28.346258688000148],[96.78728453400015,28.535297092000064],[96.67021164200014,28.652365457000144],[96.65978958400007,28.805283223000174],[96.59169751700006,28.920509581000147],[96.57598865700004,29.072400563000087],[96.49916851400019,29.10033258500016],[96.34098859000017,29.06667270600019],[96.26901251700014,29.164320034000184],[96.42340851400019,29.202278488000104],[96.49740563200015,29.141084895000176],[96.59703058600019,29.118316629000105],[96.6185985640002,29.184802052000066],[96.589424512,29.283425202000103],[96.52552054700016,29.343156991000058],[96.37966151800003,29.383438573000035],[96.29770662100003,29.433445511000116]]],[[[94.64402753100006,29.19251491200015],[94.67302656900011,29.293159943999967],[94.78807053700012,29.14595679300004],[94.84659566800008,29.203701400000057],[94.88439956000013,29.32295777700017],[94.97959166100009,29.406074406000187],[95.12733460700008,29.418350038000142],[95.12950853700016,29.529985925000176],[95.24974861500004,29.57378103299999],[95.27910656600005,29.618560345000105],[95.25438665700011,29.74862149900008],[95.00138058600004,29.715081816000122],[94.94686854300011,29.652239],[94.91374963200013,29.49690322300006],[94.83813463900015,29.38876225500013],[94.66684759800017,29.342066170000123],[94.51358751600009,29.27485353200018],[94.42535356800005,29.266315055000064],[94.27822853600009,29.119794693000017],[94.26058161200012,29.06685291700012],[94.36636357700019,29.037351132000083],[94.38684056700015,29.090349906000142],[94.50997960900008,29.081140373000096],[94.64402753100006,29.19251491200015]]],[[[90.84395560100012,48.167565407000154],[90.81809256800005,48.04857624400012],[90.9163896610001,47.820940517999986],[91.03020450700018,47.78990015100004],[91.14919266400011,47.81059439900008],[91.2216185100001,47.872675971000035],[91.24231762000016,48.002013934000104],[91.13367457600009,48.14169801500003],[91.0457225950002,48.06927149800009],[90.99916062000011,48.17791521300012],[90.84395560100012,48.167565407000154]]],[[[90.27342962600011,48.05042344800006],[90.24374360700011,48.13589589400004],[90.0676425040001,48.250714892000076],[89.74096654400006,48.346113691000085],[89.67893962200014,48.348387869000135],[89.56613965700012,48.24910204600019],[89.59696963800008,48.18921049800008],[89.73297155000006,48.12251804100009],[90.17736865700005,47.9932937370001],[90.27342962600011,48.05042344800006]]],[[[89.47226753900003,48.02941119000019],[89.36175566500003,48.184384366000074],[89.15481552800014,48.3344177510001],[89.06686354800019,48.55688167500006],[88.93235763900003,48.59826799300009],[88.87027757600015,48.40684845800007],[88.78749857000008,48.37063511600013],[88.69954659000007,48.44306180000018],[88.4770885320001,48.54653253900017],[88.15633354900007,48.62413538400011],[87.9856106100001,48.61379043900013],[87.97165658500006,48.47080992300005],[88.08237465300004,48.490067010000075],[88.10162352600014,48.40823348400005],[88.31343053100005,48.34083879100007],[88.37120062000002,48.27344326100007],[88.35675860100014,48.19160939900007],[88.4771046250001,48.09533351800013],[88.5974506500001,48.1290291040001],[88.6648406490001,48.06644847300015],[88.73223165300004,47.9027780670001],[88.84776261000007,47.926848379000035],[89.14621754000018,47.820944541000074],[89.2473066450001,47.91240636000009],[89.47226753900003,48.02941119000019]]],[[[90.56278952000008,48.48807899100018],[90.61334966300006,48.5637868550001],[90.51190952400009,48.62272051900004],[90.22222156200007,48.652307799000084],[90.10460652900008,48.570428004000064],[90.23384055600008,48.47026794900012],[90.53623162800005,48.4028041900001],[90.56278952000008,48.48807899100018]]],[[[91.28727764500019,48.54943552800006],[91.21084558500019,48.63091433200003],[91.10787960400006,48.65057157200005],[91.01036856600018,48.60747333400013],[90.81159257000013,48.598542081],[90.79304459100018,48.52261025300004],[90.91608456000012,48.49364105400019],[91.19816560900017,48.46961181400013],[91.28727764500019,48.54943552800006]]],[[[89.01884463000005,49.04027759900015],[89.07530261500006,49.118658452000034],[88.75999452800005,49.19239405400003],[88.6246485850001,49.190036225000085],[88.51090951100008,49.12517437600019],[88.53395052500008,49.06950579800008],[89.01884463000005,49.04027759900015]]],[[[89.68523359300019,49.15488788700014],[89.68338756300005,49.22686044],[89.56556650300013,49.36591906400014],[89.37354263300011,49.34872593600011],[89.32131952000003,49.26347007900017],[89.49740553700002,49.166834782000194],[89.56231650400008,49.095683152000106],[89.68523359300019,49.15488788700014]]],[[[91.67004362400019,49.75604100099997],[91.59623761400019,49.7917514290001],[91.48608364800015,49.93648611000009],[91.38357565500007,49.94737738700019],[91.25151860200009,49.79747325200003],[91.21960450600005,49.699785020000036],[91.23226151500006,49.583706725000184],[91.31933557500008,49.4505560020001],[91.33806661400007,49.36097910500007],[91.65274052600006,49.31062063100018],[91.7114255830001,49.34228980800009],[91.76047564300012,49.48812067400013],[91.72820263300002,49.70527835100006],[91.67004362400019,49.75604100099997]]],[[[96.90220662900009,50.171829332000016],[97.19963058400003,50.199024584000085],[97.59120158500002,50.30002014800016],[97.64069353800005,50.4513292580001],[97.58825652000019,50.546258335000175],[97.45205662800015,50.62176067500013],[97.31289658300005,50.63450871100014],[96.99871854400016,50.58342989600004],[96.73206355000008,50.75086360900008],[96.90000151800012,50.804052317000185],[97.05837254900007,50.906115734000196],[96.99812359700007,51.00422725200002],[96.85188252000012,51.05665806800016],[96.85520963300013,51.2036595510001],[96.98635859000012,51.253800431000116],[97.32669051400018,51.28493299900015],[97.90161866400018,51.27801290000019],[98.15790557999998,51.31345225700011],[98.23369558700011,51.39015572300019],[98.23675565200006,51.46674100500013],[97.98541254999998,51.56243769700018],[97.74379765300006,51.53603604300008],[97.58313752400011,51.44626250699997],[97.11411254100005,51.38427347100003],[96.91192661900016,51.3893845880001],[96.64341754700013,51.42366422499998],[96.10636855900009,51.24186024200009],[95.74949662500006,51.25759257200008],[95.55754852800015,51.170898212000054],[95.42598751700018,51.151889899000196],[95.06136366400005,51.18331918700005],[94.10738355600017,51.416202990000045],[93.753379575,51.469303856000124],[93.35933658300019,51.49712557200013],[92.789390636,51.46152176200019],[92.22717263600009,51.353221035000104],[91.69354262500019,51.206730680000135],[91.382606539,51.084787568000195],[91.10887956500011,51.03125872200019],[90.64691952100014,50.90999588500017],[90.81224853800006,50.860381053000026],[91.05956262600017,50.88707674400018],[91.48085753200013,50.962707662000184],[91.74420150700007,51.05523834200011],[91.94621258200016,51.15409065200009],[92.22387653600003,51.253445541000076],[92.50978861800002,51.308363268000164],[93.11785160500011,51.35146200800011],[94.2183225710001,51.156428700000106],[94.53433959900019,51.11119006000018],[95.06011157500012,50.981038047000084],[95.34275857100016,50.87709356200003],[95.68151855200006,50.656402075000074],[95.80738054000005,50.54982550500006],[96.67147060400004,50.18925547600003],[96.90220662900009,50.171829332000016]]],[[[90.27850352700005,51.068056451000075],[90.60449954699999,51.11719016100005],[91.24474351000015,51.24818522700019],[91.44167364300012,51.35123284700006],[91.64969655400012,51.39937179400005],[92.11071061700005,51.42678531100012],[92.29560064900016,51.53466191400014],[92.57584354700003,51.59344420100007],[92.72051955500007,51.52149394400004],[92.78649150300004,51.57649062799999],[92.9417265290001,51.620826537000084],[93.15220651200019,51.61849536200003],[94.3126675970002,51.49902139100004],[94.73995958700004,51.42852438800003],[95.21569059500007,51.38372361900019],[95.66549654400012,51.39474464800003],[95.80650362500006,51.52012484400012],[95.835037635,51.664246137000134],[95.75348657900014,51.79410059300005],[95.58954661100012,51.90669352500015],[95.09515363000008,52.018763761000116],[93.83088653000004,51.969713869000145],[92.78070061400007,51.880921016000116],[92.06539151100009,51.801504831000045],[91.68028262200005,51.733438412000055],[90.39098363900001,51.38076363300007],[90.20916758600004,51.26585159600006],[90.17594155400013,51.18532933500012],[90.27850352700005,51.068056451000075]]],[[[102.07659954500014,51.719747412],[102.16437567300011,51.732129494000105],[102.61028252900007,51.69625193100012],[102.93129751900017,51.7623430700001],[103.139999532,51.759679972000015],[103.45279656800011,51.83834849200019],[103.5115966250001,51.90933365600017],[103.49389656000011,52.03144373700013],[103.4142986550001,52.079174820000105],[103.13710056700006,52.09456701100015],[102.78924555000009,52.062320489000115],[102.33174166000003,51.97818177099998],[101.65419755700009,51.95634238700006],[101.37300163700019,51.96361352000014],[100.85764367300004,51.91045079600008],[99.7846906630001,52.027968767],[99.4321516710001,52.07395155300003],[99.12559563200006,52.13526266000014],[99.00807967300005,52.21190527400017],[98.8292546180001,52.23234052200007],[98.70663458300004,52.18124963600013],[98.6146626420001,52.06373250400014],[98.26212364900016,51.74694970500019],[98.22125265100016,51.61921637400019],[98.34751160600018,51.56211750800003],[98.67961853600019,51.65202716600015],[98.80814362200005,51.667965355000035],[98.93144259100018,51.76350614300014],[98.93300665400017,51.84586353900016],[99.04000064200005,51.89590132100017],[99.27441364100008,51.7985527240001],[99.4722215270001,51.835552457],[99.86898763100004,51.54969234200013],[100.07376859000016,51.28788879300009],[100.2296376230002,51.23083586000013],[100.34435251800005,51.32686447500015],[100.44196363600003,51.34705983300012],[101.0664675590001,51.280934999000124],[101.18296059000016,51.223663969000086],[101.24950351400014,51.07229853200016],[101.35460654500014,51.085649730000114],[101.46249354100001,51.255372541000156],[101.55689254600009,51.30067622500013],[101.838828589,51.24781139400011],[102.0673826370001,51.28967782700016],[102.04979656600011,51.389068591000125],[101.88349960600016,51.586238111000114],[101.9088895650001,51.679321493000145],[102.07659954500014,51.719747412]]],[[[100.61569953400004,52.897900515000174],[100.6216966180001,52.82812804400004],[100.51909659100005,52.778498124000066],[100.35739861500008,52.82860530900018],[100.14820056100012,52.85343971500009],[100.07080055800009,52.79939957400018],[100.10839859000004,52.73294616900006],[100.7455975760002,52.59489337300005],[101.02410156400009,52.29956874900017],[101.59329967800011,52.322778239000115],[102.16159858100002,52.36512512300004],[102.32199853600014,52.422381065000195],[102.3164976610002,52.50231257100006],[102.14320365600008,52.527303215000074],[101.86669959000011,52.53186515000016],[101.56860357400006,52.576715037000156],[101.24060059100009,52.59208560400015],[101.10079966600006,52.65021460500003],[101.0286026460002,52.77280999700008],[101.00980354600011,52.89788173900001],[101.04340357900008,52.97791131300016],[101.27539856500016,53.07625215900015],[101.06539953600009,53.22683757599998],[100.90830255400016,53.222618461000025],[100.76660161900014,53.126314417],[100.76419852800018,53.038322371000106],[100.6855016770001,52.98475128100017],[100.51270254000008,53.20394509000016],[100.40119959100008,53.168986351],[100.34429954400014,53.004801799],[100.61569953400004,52.897900515000174]]],[[[105.41059859900014,52.89556967500005],[105.42939753100018,53.01235087600014],[105.1818006370001,53.07135411000013],[105.07530252200013,53.11807433600006],[105.08989759500008,53.227935606000074],[104.99939751600004,53.325128467000184],[104.84480253200013,53.34108995700012],[103.99539957400003,53.285157853000044],[103.84809852200004,53.31411950800015],[103.81569659900003,53.37446954600017],[103.89630167400009,53.43698194700016],[104.15440360700012,53.56101584200013],[104.38200362600003,53.6343972250001],[104.41100367000018,53.73234965400013],[104.14859763000015,53.84454913999997],[104.0059966460002,53.92497283000006],[103.80729659100012,53.99282651600009],[103.64050258500004,54.1178374050001],[103.54180165100013,54.06653630200009],[103.31849651900018,54.17378074100003],[103.23329967000018,54.34146373200002],[103.15010056300008,54.38683279500003],[102.92252367800012,54.27971039600004],[102.81510154200015,54.168817481000076],[102.81020366000007,54.06618526800003],[102.73339860500005,53.988065427000095],[102.23750258200016,53.967725063000046],[102.13359866600013,53.915813589000095],[102.04830156900016,53.804570144000024],[102.06249967500003,53.69763868399997],[102.22250366900016,53.61935489400008],[102.55319958900014,53.57558409300003],[102.77330065500018,53.50532346000017],[102.79900359400011,53.27658970400017],[102.65589852300013,53.08684638200015],[102.71269966300014,52.99289262300016],[102.98840359300004,52.91650096400002],[103.08979763100001,52.86104981300008],[103.11139662300013,52.742398441000034],[103.09130067400014,52.61810604800013],[103.42330165700014,52.541795526000044],[103.56839759800005,52.491383407000114],[103.86840066500002,52.34134046700012],[104.12709754500014,52.37301014700017],[104.49859657000013,52.51228401800006],[104.63320155300005,52.61574503400004],[104.85839864900004,52.72857802400006],[105.24610156900002,52.81325804500011],[105.41059859900014,52.89556967500005]]],[[[99.69532767300012,53.13676648300009],[99.68533359400016,53.235786599000164],[99.5857775390001,53.32818048500013],[99.24783362000005,53.396029980000094],[99.14907853900013,53.56125556400008],[99.0097426420001,53.60921580800016],[98.81957251400013,53.62039307599997],[98.42646762500004,53.714969107000115],[98.27352857000011,53.791241744],[97.85578155600012,53.90195444800008],[97.65940060500009,53.940342391000115],[97.52596255000003,54.01580718000014],[97.58586851500019,54.06409817399998],[98.00614166700018,54.02767444600005],[98.04064962700005,54.11945829700011],[97.82156361000006,54.27517008600012],[97.23001867100015,54.264641745000176],[96.92402656700017,54.32214227200012],[96.77388757000011,54.381713799000124],[96.34008066200016,54.37656362200005],[96.18715652700007,54.4170534110001],[96.05796860000015,54.54947675300008],[95.70793160600005,54.43028391000007],[95.54546366800014,54.43666605900012],[95.45677156500011,54.48166112100017],[95.2835695940002,54.483625336000046],[95.17986265300004,54.44362421200003],[95.22048152300016,54.32414822900006],[95.29042850500008,54.2785501730001],[95.60109754400008,54.19998843800016],[95.82576758600015,54.12567666400008],[96.33589155500005,54.083408570000074],[96.76719663199998,54.029936386000145],[96.91108658500008,53.95562478000011],[96.90738664500003,53.85297228200005],[96.477363663,53.804349197000136],[96.24675755800007,53.72220922800011],[96.11196163500011,53.64926672100006],[95.78836066100013,53.66646806300008],[95.0963975050002,53.78802979900007],[94.947776638,53.72415852300003],[95.12999753700012,53.488375251000036],[95.11987253300009,53.36334139600012],[95.43067953800016,53.41754163200005],[95.8430175430002,53.42592286400003],[96.27001164000012,53.33780894500006],[96.43242660400011,53.56148489300017],[96.63887053300016,53.64639860199998],[96.83039852900004,53.657407896000166],[96.96070057800011,53.601074466000114],[97.0487135790001,53.39728525400005],[97.19389350700004,53.3519312790001],[97.36425753300011,53.401981131000184],[97.47598260300015,53.49134211000012],[97.68791164900011,53.706205828000066],[97.90615059100008,53.70091869100003],[98.37867753400013,53.57924698400012],[98.92382863800015,53.396861968],[99.04067253600005,53.26476719700008],[99.0440365290001,53.12183512800004],[98.66658752600006,52.76646992600013],[98.58139755000019,52.63067521500017],[98.63001258900016,52.47677207300012],[98.96434759600004,52.388769466000156],[99.19529752700004,52.50551294900015],[99.1990506080001,52.622844171000054],[99.42186757800016,52.67310709100019],[99.46970360300014,52.71315884200004],[99.30589254800003,52.85702884600016],[99.29116051500012,52.99273169100019],[99.3861765960001,53.058223859000066],[99.55867767300015,53.07914425100017],[99.69532767300012,53.13676648300009]]],[[[102.27680163800011,54.35931333000008],[102.13719953200018,54.47739607300002],[101.99009662800006,54.52928826800007],[101.84729766400005,54.500177415999985],[101.65850065900014,54.38776368900011],[101.38809962400018,54.342913634000126],[101.40509762099998,54.269161938000195],[101.63349962100011,54.09845811000008],[101.78379854400009,54.039496617000054],[102.0257036230002,54.05112784900018],[102.17410253700007,54.098167928000066],[102.31079863700012,54.277512324999975],[102.27680163800011,54.35931333000008]]],[[[111.76940154100015,55.20105522900002],[111.778701598,55.0994816490001],[111.65319852300019,54.960207946000196],[111.62719752400011,54.813845332000085],[111.67060052700009,54.67841305500008],[111.63899957900003,54.55507703800009],[111.47930152499998,54.54672966800007],[111.29479957500007,54.60796919400019],[111.18959763700013,54.57857134500006],[111.05969959600009,54.38013464800014],[111.01609760600002,54.23556106800004],[110.66660258500008,53.88534905900008],[110.24620052000006,53.66858918700012],[110.00150259100013,53.68563764300012],[109.50969660100014,53.366271541000174],[109.2464986390001,53.12431114200007],[109.255897602,53.026954163000084],[109.37940259800018,52.992854570000134],[109.7632977880001,52.99622275400009],[109.91249868200003,53.07040511100007],[110.26349657700018,53.19432769400004],[110.49030266300002,53.22619652800006],[110.63169866400006,53.40112316000017],[110.84210153300012,53.53901636300003],[111.24469758700008,53.75209104800001],[112.03869666700018,54.225700094],[112.31310257500013,54.451535555000135],[112.45130155100014,54.65210226100004],[112.40769956100007,54.77336325400006],[112.27259853700002,54.94970994800008],[112.50450165800021,55.21820577600005],[112.4245986520001,55.28344648700016],[112.06909967400009,55.36157068600011],[112.07299759400007,55.42858031400016],[112.16960154300011,55.52200198900016],[112.18229660600002,55.61414441900013],[111.92970258900016,55.60520595700007],[111.62779968000018,55.46310118200006],[111.60739863100014,55.34204990400019],[111.76940154100015,55.20105522900002]]],[[[113.30069763600011,54.92350912400008],[113.12000257900002,54.844726107000156],[112.94239759400011,54.70149262500007],[112.96109762000015,54.617021481000165],[113.0615996570001,54.58941786300011],[113.22940066400008,54.59853100300006],[113.44219958400015,54.714271843000176],[113.5615005530002,54.86043563800007],[113.48339865000014,54.91910694900008],[113.30069763600011,54.92350912400008]]],[[[99.53542359100004,55.05173933500015],[99.38928963500018,55.11115210800017],[99.21550763700014,55.09358062200005],[99.11916352700013,55.03892206400002],[99.22411367200016,54.92135799200008],[99.67920659100008,54.83452600200002],[99.87587755500005,54.73394048100005],[100.09580260200016,54.53007817900016],[100.24349961500013,54.48064607300017],[100.56240052100014,54.472455947000014],[100.68070253500002,54.55857899700004],[100.60929861000011,54.64771131700013],[100.48269666800002,54.708312645000035],[100.42990157400016,54.79338292700015],[100.5941005430002,54.842266019000135],[100.81939654500019,54.86416675800007],[100.80339867700008,54.952467761000094],[100.50980357500015,55.00481023200007],[100.04799658400009,54.98142958400018],[99.84825851400007,54.98705970800006],[99.53542359100004,55.05173933500015]]],[[[95.07730051200008,56.818211684000175],[95.003776636,56.89926519100004],[94.87493856999998,56.94668647900005],[94.73015561000017,56.92816616100015],[94.72058850500008,56.748610539000026],[94.79450264200017,56.48232870700008],[94.74433862800004,56.30773684899998],[94.64102161300019,56.238943720000066],[94.3267595870002,56.227595293000036],[94.03814652100016,56.299542365000036],[93.88772555700012,56.45553695900003],[93.86328862100004,56.54444967400002],[93.89147159700008,56.81448056400018],[93.77875561900015,56.97751444800019],[93.62882952200016,57.0154988860001],[93.47093156600016,57.01326678600003],[93.26098651600006,56.95960416500003],[93.15637952600014,56.86649228500016],[92.99199665800006,56.601621462000196],[92.90621156700007,56.51656274700008],[92.68222062800015,56.44993399200018],[92.40511356700006,56.4166678950001],[92.16426863200007,56.340665658000034],[91.96534762900006,56.04268715600011],[92.00385258300008,55.94976269500006],[91.83394654400013,55.79524013100013],[91.68910256400005,55.792646267000066],[91.22382362100018,55.857208044000174],[91.06888564899998,55.83825656100004],[90.64039655600016,55.72454431000017],[90.49159262900008,55.73606573800009],[90.2025225810001,55.81554696800015],[90.02227763200005,55.957266678],[89.99180555800012,56.134830759000124],[89.84888455300012,56.39140316200019],[89.62559551400017,56.516661653000085],[89.1800306400001,56.62253079000004],[89.02423050599998,56.618402870000125],[88.7423325170002,56.53018216600009],[88.44477059600001,56.464388417],[88.12801361300006,56.266147689000036],[87.8219375220001,56.214258009000105],[87.66555752700009,56.21055086100017],[87.35253853800015,56.244017789000054],[86.42217259800009,56.3654663690001],[86.14430261700016,56.4532180220001],[85.70530664000012,56.72828509500016],[85.57397462300008,56.73439214900009],[85.17354562700018,56.573060462000115],[84.86195357300011,56.539573418000145],[84.58020059100011,56.45359990200012],[84.52661860400008,56.2845121040001],[84.28534652700012,56.167233856000166],[84.21588854500015,56.085253478000084],[84.17351551000013,55.82047485600003],[83.9008174980001,55.59910175200008],[83.86640157199997,55.42266805500009],[84.07286863400009,55.18099264000011],[84.29724162100018,55.05901868200016],[84.72187755400006,54.946344613000065],[84.84661854500013,54.7863216770001],[85.11121360400017,54.69130324900004],[85.39194449600012,54.61973353000013],[85.67014355100014,54.403137273000084],[85.77667955200008,54.33907153700011],[86.20973158600003,54.26215399700004],[86.28820061600004,54.18556502700005],[86.45750449900004,53.93382730500019],[86.68288465600017,53.69877493500013],[86.90743265700013,53.563014926000164],[87.03388255100009,53.542617229000086],[87.0752105310001,53.612358855000025],[87.07553055200003,53.80922813500007],[86.95311755000012,53.97411894600015],[86.8875045150001,54.148702087000174],[86.73532050100005,54.402721363000126],[86.73180362200009,54.492899409000074],[86.59944951500006,54.65352835800013],[86.53544664400005,54.82985979600011],[86.4677126520001,54.91101589700014],[86.25842256400017,55.04181415500011],[86.08126064700014,55.18963287400004],[85.83403054500002,55.29917177600004],[85.72445660700004,55.37485684100011],[85.82769751400014,55.49387517200006],[85.65827963700013,55.72582221500011],[85.62461053800013,56.0021861350001],[85.70861061900007,56.08281937300006],[85.89930763400014,56.13793977500012],[86.19783062400018,56.1863953890001],[86.64562961100006,56.089647439000146],[86.86968257700005,56.00911729900014],[87.13539863100004,55.88773778500018],[87.34546655900004,55.816404939000165],[87.6626436430002,55.584396374000164],[88.15850060600008,55.40235065700017],[88.54577655200006,55.345739283],[88.994239553,55.37454771600005],[89.36975853900014,55.32903364700013],[89.59026361300005,54.95926917300005],[89.94877655500017,54.755818757000156],[90.38115652800008,54.69344331600013],[90.69663962900012,54.67273968000006],[90.79218259700008,54.59858095900012],[90.70787054100015,54.38232366600005],[90.52541360800006,54.14346909700009],[90.36225852100006,54.04988799800003],[90.25916262100014,53.90520444700013],[90.20554358600003,53.76799822400011],[90.20233164100011,53.59030539700018],[90.25921660000006,53.39169301600009],[90.25218954800005,53.247059756000056],[90.20767963100008,53.16973720200008],[90.0771175750001,53.09626462400013],[89.88858057600015,53.03252427300015],[89.78527060200008,52.953512598000145],[89.76616656800019,52.885300502000064],[90.20482659800001,52.62542613200009],[90.4585035570002,52.73911826700004],[90.80590863400005,52.75499878800014],[91.20485654700008,52.830871105000085],[91.4048236120002,52.91302180300005],[91.44870756900019,53.10480595100012],[91.5456995990001,53.06641415200016],[91.75826265300014,53.05859400400004],[92.23634361100011,53.11496498500014],[92.55684663400007,53.031185516000164],[92.6319575390001,52.981211435000034],[92.96007552100008,53.01020795900007],[93.00947560900005,53.18764748500007],[92.91117851600006,53.353576311000154],[92.951347613,53.441171223000026],[93.0644075850002,53.500921452000114],[93.12957755300005,53.58173423000005],[93.03329463100016,53.74518972400011],[93.06776453700013,54.01598604999998],[93.04279350600018,54.10234094200018],[92.93097657100009,54.26914685100007],[92.90603655300015,54.449601515000154],[92.84384165800014,54.528438176000066],[92.44578557900019,54.80229406400019],[92.37420664000018,54.975714467000046],[92.25283852600006,55.02803481000018],[91.85122650800014,55.14080359400003],[91.83362551800008,55.200520295],[92.01365656000007,55.256086782000125],[91.96064756100003,55.32478754200008],[92.19177250600006,55.40547861500016],[92.22691363500007,55.483685795000156],[92.36818659000016,55.61919853900014],[92.38053866500013,55.685023301],[92.30107855800014,55.761845288000075],[92.64612563800006,55.92471103100007],[92.78336354500004,55.96792108300002],[93.10014366100006,55.97347225000004],[93.25099160000013,55.95116649700003],[93.51777651400016,55.85643690900008],[93.9645386590002,55.60510319500008],[94.34445965200018,55.45175610900009],[94.48497052500011,55.414190932999986],[94.9480056320001,55.3866292240001],[95.41149855900005,55.4182811340001],[95.69051350800004,55.344743010000116],[95.9406735880001,55.24716055800019],[96.15740160899998,55.366975840000066],[96.18259459199999,55.545443323000086],[96.17121867300017,55.72320940800006],[96.25690452200013,55.79473319300013],[96.28609466800003,55.96269882200005],[96.19274859700005,56.127238431000194],[96.31835963100019,56.28177692100002],[96.45460562300013,56.327623417000154],[96.53172265300014,56.497008269],[96.1232076340001,56.6189297570001],[96.08319058500007,56.885214942],[95.80901367000018,56.97235639200011],[95.65881365300004,56.96554727000017],[95.59944966200015,56.88324972100003],[95.5751726530001,56.703496454],[95.50726364700006,56.62107401500003],[95.35739153000003,56.61208559800019],[95.22359456200007,56.65825613800013],[95.07730051200008,56.818211684000175]]],[[[113.09909861500023,55.07186294300004],[113.09140067500027,55.143981676000124],[112.87010166700009,55.122161403000064],[112.73370362700018,54.9927977910001],[112.7139965990001,54.88265706900006],[112.8164975520001,54.84809429100011],[113.00540167800011,54.95245988200003],[113.09909861500023,55.07186294300004]]],[[[110.04900367500017,54.344690765000166],[109.982299651,54.460984642000085],[110.049102581,54.64748215600008],[110.3656005630001,54.96559818000014],[110.43489861800003,55.11855215500003],[110.48030053800017,55.348279167000044],[110.73829652400019,55.567794003000074],[110.799003631,55.65838846200006],[110.73079656400012,55.836432323999986],[110.4486995900001,55.91283152700004],[110.21849866500008,55.91294250300018],[110.13099662500002,55.884384689],[110.01979860900013,55.63854682099998],[110.03130361000018,55.50389238500014],[110.11920161100005,55.36894072600012],[110.1719965370001,55.22263477400003],[110.06939667800003,55.01710950200004],[109.786102599,54.83658610600014],[109.65149661000015,54.60043101300005],[109.67629966700008,54.3900950310001],[109.7313005430002,54.21026968100006],[109.90609759000012,54.22596714100018],[110.04900367500017,54.344690765000166]]],[[[113.89350153600003,55.03213205100019],[113.98480259000019,55.16679453500018],[113.95520055800012,55.23423633300007],[113.60669661400004,55.27121611700005],[113.45749655800012,55.20763552500006],[113.48020162500018,55.051018323000164],[113.59919766000007,55.016990479000015],[113.89350153600003,55.03213205100019]]],[[[111.20439957500002,56.02514685000011],[111.10500361500016,55.875503392000155],[111.14199865300014,55.78205992300008],[111.41899859300014,55.73794965500008],[111.55780056200007,55.827643060000185],[111.52760358300009,56.01341620900007],[111.4121016270002,56.077887126000064],[111.20439957500002,56.02514685000011]]],[[[112.76609767100013,56.178612960000066],[112.64530153800001,55.975707200000045],[112.41999866300023,55.975486252999985],[112.29429660200026,56.04582735300016],[112.04779857600033,56.058709500000134],[111.94480158200003,55.9205946780001],[112.04309867500001,55.808855527000105],[112.59500157000002,55.69379747700003],[113.25119763600003,55.750210032000155],[113.34089657300012,55.82193297200007],[113.6057965650001,55.86031320400008],[113.77719860600018,55.932733015],[114.06340053400015,56.136909974000105],[114.54180168200014,56.52310214000016],[114.83209967800019,56.684475904000124],[114.8531035540002,56.79843911],[114.65789757900006,56.92947424100004],[114.65450257200007,57.020224939000116],[115.02339968700005,57.11910876500008],[115.3935016160001,57.15645215500007],[115.8192976040001,57.27618378700015],[115.94850162400007,57.41340995899998],[115.7966996580002,57.49864083799997],[115.538497645,57.499552789],[115.24780268100005,57.41724015300019],[115.06800063200012,57.39937965900015],[114.73179662800021,57.52942287500002],[114.55919664500016,57.62301570900013],[114.33480052400012,57.67342816200011],[114.0127025930002,57.694195836000176],[113.88079859400023,57.567544106000014],[113.8908005510001,57.4537292600001],[114.18659959100012,57.342336952000096],[114.2499996360001,57.25200518100013],[114.17189756500011,57.10372327900018],[114.04190061700001,57.007445386000086],[113.87400053500005,56.99786604400009],[113.5734026880001,57.05688889200013],[113.08599853900023,57.035835395000106],[112.9539036000001,57.077317602],[112.38420056000007,57.175220578000165],[112.24439963500015,57.13474922900008],[112.26119965200007,57.06924951700012],[112.60769663300027,56.941014612000174],[112.65529662300003,56.84216062600018],[112.61239653400003,56.70141723900019],[112.51979863200006,56.59976419999998],[112.29699658100014,56.58347464200011],[112.14080065300027,56.627120049999974],[112.01940152600002,56.85687103300006],[111.83830262900017,56.89874215999998],[111.68080163900004,56.866980112000135],[111.4399035620001,56.709638378000136],[111.28639956700016,56.64357339000014],[111.14769767700005,56.713456670000085],[111.26219967100013,56.888133018000076],[111.44789855700014,57.08882696100011],[111.37770062000004,57.17782969700016],[111.26860059500007,57.140730723000104],[111.02310152400008,56.99048812500007],[110.75939964100019,56.797169084000075],[110.510696672,56.761767110000164],[110.51540361300016,56.83954044300003],[110.96060152800015,57.208840559000066],[111.1015016550001,57.34350790399998],[111.076896579,57.413139223000144],[110.88800066700014,57.398257657000045],[110.6653976030002,57.25978425800014],[110.40360260300008,57.021170920000145],[110.08439659600003,56.909984639000186],[109.764198674,56.90954157200002],[109.57260161100004,56.87104231700005],[109.41780060000008,56.762339929],[109.38159966300015,56.483648857000105],[109.2519986760002,56.40249661100012],[109.04489861200011,56.316667096000174],[109.06369754400015,56.20392077500014],[109.31479656500017,56.18188206999997],[109.64119759800013,56.22329235900014],[110.00740060100014,56.38977824700015],[110.27580255200007,56.479753619],[110.57240256700004,56.488112053000066],[110.81079864500003,56.412468729000125],[111.11029863000016,56.266933409000046],[111.40249663700007,56.25894528800018],[111.69750258100004,56.320798201000116],[111.92440053300004,56.34099774900005],[112.08860067500007,56.27818276099998],[112.15039860300021,56.20389361800011],[112.63310268400016,56.242853710000134],[112.90959954200014,56.30780474200003],[113.21859756500021,56.41352887199997],[113.52130161600007,56.49344914600016],[113.66870157500011,56.42667823400012],[113.56559762800032,56.326597137000135],[113.40859955200006,56.259513413000036],[113.18039653800008,56.216032123],[112.91359754200016,56.24370480800002],[112.76609767100013,56.178612960000066]]],[[[110.82230364600008,57.67615948900004],[110.98359660800008,57.667939022000155],[111.25550068600018,57.73409922800005],[111.51149758800017,57.85355308300018],[111.74259956700013,57.93802389100006],[112.09390256400013,58.110290442000064],[112.30010257900005,58.297326912000074],[112.35849762200007,58.50773799500013],[112.18399863500008,58.642019437000044],[111.906501649,58.666949228000135],[111.83789862100014,58.56562794500019],[111.88140053100005,58.445590709000044],[111.76650257600016,58.286016372],[111.64420356700003,58.168012418000046],[111.47650163400004,58.103000365000014],[111.19229862200007,58.03798814500004],[111.01519755700008,58.02554789200008],[110.9219966610001,58.06447797700014],[110.71269953300015,57.90973396200013],[110.70069865900018,57.80682179299998],[110.82230364600008,57.67615948900004]]],[[[92.7359385690001,66.61083041200004],[93.22985864200007,66.58064701100011],[93.52385758400004,66.42552581100006],[93.47885866700017,66.22991297800019],[93.49997754200007,66.036391262],[93.84689361900013,65.7068089620002],[93.79605854900007,65.45976359700018],[93.65219156300003,65.30657342000006],[93.99265256800015,65.21682503000017],[94.48578658700012,65.19094439500009],[94.71508058900014,65.25933787500003],[94.88509358100009,65.37740888400015],[94.53494259300015,65.59499454100012],[94.46307364100005,65.76867813600012],[94.54470851600001,65.93557926300014],[94.54934655900018,66.06385205300006],[94.1442416340002,66.33818755300007],[93.93505062100019,66.65071134000004],[93.5936206680002,66.85277069500006],[93.05329854600018,66.9081856360001],[92.54907258700013,66.90838479000001],[92.04480756800001,66.88486969600001],[91.67706263000008,66.80344436800004],[92.14634661400015,66.60632949800015],[92.7359385690001,66.61083041200004]]],[[[110.76360366900008,69.27357095200017],[110.91069752000004,69.36081818200012],[110.75309762400002,69.47484542500007],[110.42209660200007,69.5772603800001],[110.30509965100003,69.58054960600009],[109.44020056599999,69.4938135050001],[109.05159759700007,69.36731851600007],[108.99389657500018,69.20027892000007],[109.3861005770001,69.189566345],[109.75900256500006,69.23468914700015],[110.53250152200008,69.21002958800005],[110.76360366900008,69.27357095200017]]],[[[113.02100358500013,69.47466270000012],[113.14099857600002,69.31217011900009],[113.48799863900012,69.2028501530001],[113.80090363400006,69.21912428800005],[113.92800161700006,69.35911598500019],[113.64040359900002,69.55083106600017],[113.26589966200004,69.6360404880001],[113.03189855000016,69.56741784600018],[113.02100358500013,69.47466270000012]]],[[[111.35320266400004,69.50681450700006],[111.45359758000018,69.39572428300016],[111.646400632,69.31573360100003],[111.9720005220002,69.33420480100017],[111.95639761000012,69.60389689500016],[111.86029858700005,69.70737182500005],[111.51210058200013,69.8611975180001],[111.0076975980001,69.83812398300012],[110.9956965560001,69.75321949400018],[111.15489957500012,69.60159941500012],[111.35320266400004,69.50681450700006]]],[[[77.69270357400006,72.33245012700002],[78.36020649200009,72.51295742900004],[78.1312864900001,72.62176693800012],[77.65985858300019,72.64792937200014],[77.33146651300007,72.56711424700012],[77.20884664500011,72.45864789300009],[76.9278336180002,72.39333694200019],[77.1081234940001,72.3104610420001],[77.69270357400006,72.33245012700002]]],[[[79.481323594,72.7531757340002],[79.44664749200007,72.86978326200006],[79.53806254000006,72.9390705880001],[79.3452526150001,73.063712506],[79.12943252200017,73.08835697800004],[78.63789358000008,72.87376667800015],[78.81474251700018,72.75547321300013],[79.36711161300002,72.73440664100002],[79.481323594,72.7531757340002]]],[[[74.63510163300003,72.90683429200004],[74.64272363300006,73.00814350600012],[74.76071149300009,73.09531529900016],[74.36402853700014,73.14087312200007],[74.09587050000016,73.07330978500016],[74.15541051100001,72.96073864600004],[74.60134854700004,72.85619452100008],[74.63510163300003,72.90683429200004]]],[[[76.66227749100017,73.19987451200012],[76.16114864500014,73.23294296400007],[76.27223954000016,73.15337087500006],[76.66227749100017,73.19987451200012]]],[[[75.41134650200001,73.52876714899998],[75.64756060300004,73.45561978900014],[75.87664053200018,73.46962075200014],[75.97709663600006,73.57631684800009],[75.41134650200001,73.52876714899998]]],[[[83.95596354800011,74.02940984400004],[84.40988165900006,73.99424357000004],[84.44756351100017,74.08900651700003],[83.95596354800011,74.02940984400004]]],[[[83.49208052800003,74.18905676900005],[83.14031250300013,74.17476579200019],[83.47901163200015,74.08806036800019],[83.49208052800003,74.18905676900005]]],[[[82.42443862700003,74.17330180900012],[82.63529160400003,74.08886972500005],[82.80304751800008,74.16085736500003],[82.42443862700003,74.17330180900012]]],[[[111.5942995600002,74.36442998800004],[111.5055006720001,74.30674053400003],[111.83280158600002,74.23225726600015],[112.10089860300013,74.10564744500005],[112.87039956000012,74.0901058880001],[112.93589759600013,74.17048599200012],[113.24490366500004,74.20810095600007],[113.56430061200012,74.43538766000006],[113.33599852400027,74.49957795100016],[112.71230362300003,74.5079328650001],[112.18029752200005,74.55030170900005],[111.9498976110001,74.35407649400014],[111.5942995600002,74.36442998800004]]],[[[85.17349265300004,74.55627498900009],[85.37860050600005,74.5138684260001],[85.660400594,74.59346364900011],[85.4845965450001,74.64893994600004],[85.17349265300004,74.55627498900009]]],[[[79.39824652800019,74.54498372700004],[79.38750461600011,74.64945945600005],[79.10962658800008,74.60959378300015],[79.39824652800019,74.54498372700004]]],[[[86.96322662800009,74.85496226400011],[86.85590356600011,74.92965943900003],[87.20403250400011,74.94827665100013],[87.08669256500013,75.0188531140002],[86.63121055800013,75.0162275670001],[86.57839166000008,74.94015777200013],[86.33656352700007,74.88987674700019],[86.96322662800009,74.85496226400011]]],[[[82.32212056700013,75.52244908900013],[81.53752849700015,75.38676602599998],[81.89087651000006,75.33099150100009],[82.44342062000004,75.3488454580002],[82.25676753900018,75.45069714800002],[82.32212056700013,75.52244908900013]]],[[[95.77044652200016,76.30642844300019],[95.53559867000013,76.21984355100017],[95.89050253300019,76.16447404000019],[96.287712543,76.14529943000014],[96.7027285650002,76.18324346800011],[96.53556860500004,76.31046382700015],[96.16452756700005,76.26214450200013],[95.77044652200016,76.30642844300019]]],[[[96.8935015200002,76.15322703400005],[96.94509163100014,76.24728053700017],[97.21588862700008,76.32216865100014],[97.03349254600005,76.38844184500016],[96.82337164400013,76.21708137900009],[96.8935015200002,76.15322703400005]]],[[[112.57039666100013,76.44779477200007],[112.80149864000009,76.53659835400015],[112.5771026860001,76.63367403700016],[112.17710167000007,76.6301650370001],[112.17569753400028,76.56818689800008],[112.57039666100013,76.44779477200007]]],[[[96.58770756300015,76.69212725],[96.37494652999999,76.72532545400009],[95.94716654500007,76.68685453],[96.08287861000014,76.61332579300017],[96.49662058300015,76.63347655900014],[96.58770756300015,76.69212725]]],[[[96.1998366700002,77.11118385300011],[95.62979852200016,77.06677803800011],[96.23104853000007,76.97859220300006],[96.41429855900003,77.07813853500011],[96.6722335250002,77.13525667900007],[96.49001363200017,77.20851166200003],[96.1998366700002,77.11118385300011]]],[[[89.42105863600005,77.20640579300016],[89.729820625,77.2216345380001],[89.83215360400015,77.31987748400019],[89.32311257700013,77.3045261960001],[89.42105863600005,77.20640579300016]]],[[[107.37889862700018,77.22159681900013],[107.87219961300002,77.26973341899998],[107.88860366900019,77.33788399100013],[107.44650253200012,77.33538165800007],[107.37889862700018,77.22159681900013]]],[[[106.56040159000008,78.13981084400018],[107.0975035530002,78.09146721100012],[107.85900163600007,78.08316627700003],[107.67349955800017,78.21811743300015],[106.56040159000008,78.13981084400018]]],[[[104.21099855200004,79.11342706900007],[103.686599532,79.119866382],[102.9166025340001,79.01637368200011],[103.05850262200016,79.13719429000002],[103.04959852700017,79.25585488200016],[103.33920266900014,79.31053003700004],[102.80650355300008,79.40894112400008],[102.43789662000012,79.39747384200018],[102.53299752600009,79.24949150900005],[102.40869859600014,79.22528172300014],[101.7520975160001,79.32280717800006],[101.77809851500018,79.24009891600014],[101.43229656100016,79.21303593000005],[101.28630057200007,79.10952747200008],[101.43139651200005,79.04787857400004],[101.1239015330001,79.00957562400004],[100.94660164900012,78.87373313600011],[101.357597543,78.79687661600013],[100.65830256900011,78.77749681800015],[100.47299964400008,78.68807414800017],[100.36939965600016,78.47999139000012],[100.07820161100005,78.42992393500009],[100.237701517,78.3688383010001],[99.98137654700008,78.31503955900013],[99.50670652000014,78.08841586300008],[99.57454662700007,77.94494282600004],[100.28130367400018,77.94521725000016],[100.61280056900006,78.0381041600001],[101.06089761600009,78.09433667200017],[101.45099658700019,78.19687450500004],[102.104896515,78.18951988800018],[103.36019866600014,78.23213348400014],[103.98130054199999,78.27855296700017],[104.43379959700013,78.34063034700011],[105.05729651800016,78.37409509600013],[105.55950160000003,78.54904838200008],[105.39739961600009,78.77520000900012],[104.26809658000013,79.01915932400004],[104.21099855200004,79.11342706900007]]],[[[98.7136535890001,80.06777849500014],[98.42855857500018,79.87982269800017],[97.93798858000008,79.9022618910002],[98.15033755900009,80.06870184600007],[97.72705061000005,80.1953884450001],[96.74944258800008,80.19461848300017],[96.56915254400013,80.11734974100006],[95.87029259100007,80.12035633000005],[95.51934062800018,80.07990208000001],[95.13777963100006,80.11783790300012],[94.56773360400018,79.90030086100012],[94.82745358000005,79.83600395200011],[94.344436518,79.78851443600013],[93.7208326450002,79.58979359300008],[94.05679357300005,79.58886974000012],[94.17839856000018,79.5153636340001],[94.60759760100012,79.45075324200013],[94.5331575830001,79.3306427490001],[94.9294665380001,79.09955619200014],[95.28624761200007,79.05111348600019],[95.74619264700004,79.100853208],[95.94570960300013,78.99920737700006],[96.49517051400016,79.03101636400015],[97.08448754199998,78.95445790500008],[97.52455154100011,78.84333515800012],[98.48312359100015,78.79213078200002],[98.79675261500017,78.81868230499998],[99.49446860600011,78.81710315400016],[100.14649953700007,78.93961724200005],[99.94204765200016,79.0939555720002],[99.48075061600014,79.21553071900013],[99.64954353800005,79.30194713500009],[99.97651655200019,79.3632071130001],[99.97453255599999,79.750884552],[100.27580263100003,79.78310559400006],[99.53588861900016,80.0089596630001],[99.1889876300001,80.07287486000018],[98.7136535890001,80.06777849500014]]],[[[76.81834450500014,79.57534285700012],[76.87424459100009,79.52223830300005],[77.46386755800012,79.53466715700006],[77.617843623,79.5872840510001],[76.76550264000008,79.6784235020001],[76.14088455600006,79.63956365800004],[76.43225057500007,79.58123215000006],[76.81834450500014,79.57534285700012]]],[[[91.46608761300007,79.91485201300009],[91.7897715680001,79.82897639700013],[92.38503253900018,79.79973881000012],[92.19103959200004,79.6976961800001],[92.46734651600002,79.65351114500004],[93.13110356200008,79.67531716900004],[93.54810358100002,79.73425938200006],[94.05137651700005,79.88786429600009],[93.58453351100013,79.99104401600005],[92.70274355000004,80.07410331200003],[91.7555775940001,80.1210496810001],[91.12626665000016,80.09436069500003],[91.46608761300007,79.91485201300009]]],[[[93.03320360300012,80.13885066400013],[93.73162065700018,80.02626343200018],[94.38762662099998,80.07022735200013],[94.810752638,80.15620187400009],[95.25428054200012,80.15543023600003],[95.94638065800012,80.22915108600006],[97.24120365100015,80.22052962800012],[97.5733796470002,80.32721046900014],[97.30506151500015,80.36472686200017],[97.15471665900003,80.5288089870001],[97.41216262400013,80.66372141800008],[97.9258266060001,80.67431899300004],[97.95879363700016,80.81097871600019],[97.50965857500012,80.84403241600018],[96.84224651700015,80.953742477],[96.42935161900016,81.16198633500005],[96.11704257700006,81.26670044600007],[95.48928865500011,81.28117414800016],[95.29309059800016,81.16719015600012],[94.87071962300007,81.07876644200019],[94.07000764400016,81.01620156900015],[93.43308257900014,80.99442588800008],[93.55821953200012,80.90649838200017],[93.0965726350002,80.85827679000016],[92.78063154700016,80.76541318200003],[93.58773757700004,80.73753363100013],[93.07731655400005,80.58001302700012],[92.23079663500016,80.46836440100003],[92.00068657100013,80.38004864500016],[92.00071758400009,80.28965551900018],[92.36528058400006,80.27264947600008],[92.50892662300004,80.18552277700007],[93.03320360300012,80.13885066400013]]],[[[79.1030196370001,80.88721749000018],[79.42783364000002,80.80471525500019],[80.3367915290001,80.84182680200013],[80.6597675490001,80.96830050100016],[79.70294949600009,81.0013697920001],[79.1030196370001,80.88721749000018]]],[[[91.59179654700017,81.23502741300018],[90.82259365000016,81.21313857500007],[90.3817516430002,81.1076767990001],[91.20868657400018,81.01612579700009],[91.65898856500002,81.05205516000007],[92.00685162800016,81.1863649330001],[91.59179654700017,81.23502741300018]]],[[[115.46274000500023,-20.675579994999907],[115.42135000500025,-20.679929994999952],[115.32486000500012,-20.80335999499988],[115.30706000500015,-20.86151999499998],[115.39644000500016,-20.885919994999938],[115.47774000500021,-20.73525999499998],[115.46274000500023,-20.675579994999907]]],[[[116.52615746989142,6.110112711932246],[116.50222420708155,5.979355221366447],[116.6713111712487,5.993662721282647],[116.69772936657432,6.126017054222416],[116.74895487506751,6.166792257656752],[116.66213107688782,6.255571854457685],[116.61110274034303,6.197002377301743],[116.53529310471669,6.182704707362376],[116.52615746989142,6.110112711932246]]],[[[115.2969965740001,52.89421147100012],[115.4992976630001,53.03442327700009],[115.54370163300007,53.114744038000026],[115.35990158400023,53.149564811000175],[115.11489855400032,52.99296470799999],[115.11039763900033,52.90279085200007],[115.2969965740001,52.89421147100012]]],[[[115.71980256900008,53.83445598700001],[115.81079868900008,53.96322381300007],[115.55039961200009,54.016486113999974],[115.06659666300004,53.860213576000035],[114.9204025250001,53.839251106],[114.36450163000018,53.26923827200011],[114.38600154700009,53.20599698000012],[114.51989758900015,53.17222528600007],[114.71029654300003,53.18324564500017],[115.05539659700003,53.30702020300009],[115.2279965790002,53.51974385400018],[115.32129654900018,53.59299548500019],[115.57240261100014,53.70344784600013],[115.71980256900008,53.83445598700001]]],[[[116.21050265100007,53.630525121000176],[116.40599864000023,53.683516351000094],[116.57180056400011,53.91208263700014],[116.78289762200018,54.04986486400003],[116.91210164300003,54.181123959000104],[116.99310267900023,54.31644224200011],[116.88379662600005,54.337374704000126],[116.67389667100008,54.237201406000054],[116.40689868900006,54.07392528500014],[116.27189657100018,53.94300548900003],[116.13880167200011,53.675554381000154],[116.21050265100007,53.630525121000176]]],[[[114.22689860800006,54.49951742500019],[114.119796661,54.420032675000186],[114.05419955100012,54.319509348000054],[114.09300256600022,54.24314149300011],[114.38330056300015,54.21536956600005],[114.66300165500013,54.31257013800018],[114.73110160100009,54.38601287700004],[114.82029762300022,54.562039214000094],[114.56220256300014,54.582169696000165],[114.22689860800006,54.49951742500019]]],[[[114.53170065000018,55.04548023200016],[114.25219753900012,54.99272889200017],[114.16609963500002,54.92514627700007],[114.15119962900019,54.7993228470001],[114.2554016050002,54.781499568000015],[114.3908006900001,54.83511675800008],[114.49220260800007,54.80993919700006],[114.65820368600009,54.92675610600014],[114.68579858700002,55.02492160300005],[114.53170065000018,55.04548023200016]]],[[[114.74269863400002,55.502691426000126],[114.91799960100025,55.38124318100006],[115.1179966730001,55.39500626600011],[115.21829955500004,55.468140215000176],[115.17479664000007,55.542014454000196],[114.99449955500006,55.63080680400003],[115.01869961900002,55.725269512000125],[114.87750260400003,55.72580729500015],[114.75689657200007,55.58023442400008],[114.74269863400002,55.502691426000126]]],[[[114.22460163100016,55.51116368600003],[114.5752025600001,55.803861589000064],[115.07450063000022,55.97019526100007],[115.15229760000011,56.03527503900017],[115.03230260900023,56.092989639999985],[114.56749757900002,55.98546558000015],[114.10749856500013,55.898572233000095],[113.77480356100011,55.767861482000114],[113.22200061700005,55.652586509000116],[112.77719866400003,55.58242042400008],[112.58059659900016,55.59449371700009],[112.5090025730002,55.52431288000014],[112.60230254300006,55.46832344300003],[112.95189663700012,55.3297016840001],[113.183196597,55.398764375999974],[113.55909762900012,55.44976490400006],[114.04080158200009,55.45609307300009],[114.22460163100016,55.51116368600003]]],[[[114.74240158000009,58.8830477680001],[115.06749755000021,58.88808797400003],[115.32689666700003,58.934269745999984],[115.68589760300006,58.903167521000114],[115.79489855400016,58.95342038300009],[115.75070161700023,59.01942049500013],[115.2279965790002,59.16193581500005],[115.07929960500019,59.4028652400001],[114.94480157500004,59.426738242000056],[114.78549964900014,59.378404332],[114.6768036320002,59.27137162000014],[114.72219867800004,59.13016555200011],[114.56870256200034,59.02111062200004],[114.59580259600011,58.90477768500011],[114.74240158000009,58.8830477680001]]],[[[115.71769753800015,59.514719391000085],[115.49109664100013,59.426509248000116],[115.45680258700031,59.295023506000064],[115.56030266300013,59.240540465000095],[115.70600159800017,59.229420194000056],[115.94210053200015,59.26653425600006],[116.22270167300007,59.26389026800018],[116.33499855600007,59.294127313000104],[116.40599864000023,59.38335569000009],[116.33070366900006,59.47289771800013],[116.16860168500011,59.51322037200009],[115.71769753800015,59.514719391000085]]],[[[116.4634016010001,70.73382186800012],[116.37950160000003,70.81702499800008],[116.07579758800023,70.90781995200012],[115.61280053400003,70.90907120300017],[115.39929954600007,70.84736128500003],[115.29029859500008,70.7242232480001],[115.54129753600012,70.63538898800016],[116.05439758300008,70.63325998500011],[116.3145976740002,70.65229579000015],[116.4634016010001,70.73382186800012]]],[[[117.86480001100006,-35.05862999099992],[117.93268001100034,-35.00472999099992],[118.03151001100014,-35.02069999099996],[118.2583400110002,-34.909319990999904],[118.38927001100012,-34.90794999099995],[118.43012001100021,-34.771579990999896],[118.5216200110001,-34.71662999099982],[118.64982001100009,-34.68909999099998],[118.75371001000008,-34.621259990999874],[118.75021001000005,-34.55092999099992],[118.90656001000002,-34.49962999099995],[118.96391001000018,-34.45149999099988],[119.11615001000007,-34.4703799909999],[119.25776001000008,-34.521279990999915],[119.36600001000022,-34.46394999099988],[119.40399001000003,-34.38125999099992],[119.5041100100002,-34.35176999099991],[119.51112001000001,-34.265139990999955],[119.58083001000023,-34.15393999099996],[119.66223001000003,-34.08177999099996],[119.85373001000005,-33.97107999099984],[119.94622001000005,-33.976189990999956],[120.04989001000001,-33.923439990999896],[120.12010001000021,-33.95219999099993],[120.30655000900026,-33.94062999199997],[120.4370600090001,-33.971119991999956],[120.6007400090001,-33.88568999199998],[120.80681000900017,-33.888559991999955],[120.86609000900012,-33.85671999199997],[121.00574000900019,-33.87025999199989],[121.26871000900019,-33.850929991999976],[121.31861000900017,-33.821349991999966],[121.5301900090002,-33.82597999199987],[121.66150000900006,-33.88430999199994],[121.78593000900003,-33.90800999199996],[122.0188800090001,-33.8369799919999],[122.08319000900019,-33.899599991999935],[122.12030000900006,-34.013439991999974],[122.25353000900009,-34.00424999199993],[122.28007000900004,-33.95359999199991],[122.39504000900013,-33.911419991999935],[122.5750400080002,-33.947719991999975],[122.6030000080001,-33.89791999199991],[122.83050000800017,-33.90926999199996],[123.00217000800012,-33.883569991999934],[123.12521000800018,-33.89644999199987],[123.1728400080001,-33.99286999199984],[123.25341000800017,-33.997439991999954],[123.3526800080001,-33.901689991999945],[123.57227000800026,-33.88879999199992],[123.74390000800008,-33.80821999199992],[123.75594000800015,-33.72437999199997],[123.868480008,-33.607399992999945],[123.97981981900011,-33.55306031999993],[124.0165400080001,-33.376829992999944],[124.10073000700015,-33.17808999299996],[124.23947000700002,-33.017259992999925],[124.36898000700023,-32.95588999299997],[124.74822000700021,-32.89878999299998],[124.89984000700008,-32.82926999299997],[125.02606000700007,-32.72857999299998],[125.10144000700006,-32.716419992999874],[125.31713000700017,-32.60715999299998],[125.53120000600006,-32.54978999299988],[125.71177000600005,-32.4218499939999],[125.94882000600023,-32.291559993999954],[126.20606000600003,-32.2324799939999],[126.42158000600011,-32.28440999399987],[126.68325000600021,-32.30906999399991],[127.22137000600003,-32.27569999399998],[127.482820005,-32.217419993999954],[127.7073900050001,-32.13646999399998],[128.02274000500006,-32.07386999399989],[128.43642000500006,-31.935259994999967],[128.64322000500022,-31.851619994999965],[128.80419000500012,-31.758109994999927],[129.0289400050001,-31.67956999499995],[129.5339000040001,-31.62258999499994],[129.84236000400006,-31.608099994999975],[129.93724000400005,-31.588589994999893],[130.27439000400022,-31.573609994999913],[130.79251000400006,-31.607279994999942],[131.0263700040001,-31.537689995999983],[131.13043000400023,-31.464679995999973],[131.4221500040003,-31.563929995999956],[131.7277400040001,-31.703699995999955],[132.11232000400014,-31.946119995999936],[132.150870004,-32.00249999599998],[132.27014000300017,-32.03287999599996],[132.43724000300017,-31.994769995999945],[132.5592100030001,-31.932189995999977],[132.74847000300008,-31.948949995999897],[133.0559600030001,-32.10405999599993],[133.14052000300023,-32.17870999599995],[133.25681000300017,-32.207219995999935],[133.47413000300025,-32.10075999599991],[133.55048000300008,-32.16973999599992],[133.60071000300013,-32.084629995999876],[133.67248000300003,-32.11235999599995],[133.71557000300004,-32.194959995999966],[133.80814000300018,-32.23212999599997],[133.9026900030002,-32.318609995999964],[133.84695000300007,-32.50689999599996],[133.99143000300023,-32.505159995999975],[134.13662000300008,-32.45783999599996],[134.25741000300002,-32.55928999599996],[134.290150003,-32.69283999599992],[134.23164000300017,-32.76237999599988],[134.16213000300002,-32.72095999599992],[134.06075000300007,-32.723219995999955],[134.1383300030002,-32.83996999599998],[134.074550003,-32.882379995999884],[134.20545000300012,-32.9760999959999],[134.259800003,-33.152799995999885],[134.32872000300006,-33.1995799959999],[134.41596000300012,-33.14944999599993],[134.60046000300008,-33.140769995999904],[134.71577000300022,-33.19152999599987],[134.69633000300007,-33.263569995999944],[134.8025400030001,-33.329429995999874],[134.86287000300024,-33.548639995999906],[134.84248000300022,-33.63037999599993],[135.043750003,-33.758459995999885],[135.25336000300013,-33.98288999599998],[135.28121000300007,-34.06990999599998],[135.24445000300022,-34.15251999599997],[135.306540003,-34.188359995999974],[135.35141000400006,-34.28693999599983],[135.44738000400002,-34.63042999599992],[135.37703000400018,-34.64505999499994],[135.31800000400006,-34.517269995999925],[135.25077000400006,-34.55021999499996],[135.68577000400012,-34.94501999499994],[135.7137900040001,-34.86478999499991],[135.80095000400001,-34.862959994999926],[135.92801000400004,-34.948399994999875],[136.0034200040002,-34.775219995999976],[135.85543000400003,-34.74961999599998],[135.86043000400002,-34.637199995999936],[135.93422000300006,-34.5274799959999],[136.0255300030002,-34.483729995999965],[136.11241000300015,-34.515979995999885],[136.1277000030001,-34.345229995999944],[136.18691000300032,-34.33498999599993],[136.32423000300014,-34.18234999599997],[136.36092000300005,-34.07129999599994],[136.50056000300015,-33.991879995999966],[136.59301000300002,-33.89945999599996],[136.9886000030001,-33.72527999599993],[137.2092900030002,-33.663589996999974],[137.31995000200004,-33.460979996999924],[137.3841400020001,-33.37724999699998],[137.38552000200002,-33.29530999699995],[137.44526000200005,-33.15067999699983],[137.53973000200006,-33.09107999699995],[137.61909000200035,-32.96163999699996],[137.7824200020002,-32.992669996999894],[137.80977000200005,-32.749219996999955],[137.75271000200007,-32.71070999699998],[137.76480000200013,-32.5966399969999],[137.84912000200018,-32.642029996999895],[137.8972400020001,-32.77572999699993],[137.95131000200013,-33.00905999699995],[138.04057000200032,-33.07291999699987],[138.0224700020002,-33.14043999699987],[137.83619000200008,-33.20189999699994],[137.8111500020002,-33.27626999699993],[137.88462000200002,-33.33534999699998],[137.87278000200013,-33.4008299969999],[137.9412300020001,-33.54972999699987],[137.59989000200017,-33.87674999699988],[137.56761000300014,-34.04402999599995],[137.5188600030001,-34.132779995999954],[137.47195000300007,-34.39797999599989],[137.5093200030002,-34.62568999599995],[137.45728000300005,-34.89059999599988],[137.37784000300007,-34.95383999599994],[137.2914200030002,-34.900719995999964],[137.09420000300008,-34.91925999599988],[137.008720003,-34.89635999599989],[136.93576000300004,-35.032109995999974],[136.94153000300003,-35.128299995999896],[136.8461800030002,-35.19226999599988],[136.88329000400017,-35.30107999599994],[137.00240000300005,-35.223489995999955],[137.13713000300015,-35.24367999599997],[137.2125300030002,-35.18153999599997],[137.30121000300005,-35.16781999599988],[137.4261100030002,-35.097709995999935],[137.5593900030002,-35.11913999599989],[137.6362100030001,-35.168059995999954],[137.75507000300001,-35.11095999599996],[137.72663000300008,-35.049569995999946],[137.83197000300004,-34.81229999599998],[137.86407000300017,-34.777529995999885],[137.88536000300007,-34.512609995999924],[137.9165600030002,-34.42944999599996],[138.01618000300016,-34.32609999599987],[138.0094900030001,-34.23507999699996],[138.09052000200018,-34.13258999699997],[138.22408000200005,-34.31412999699995],[138.26309000300023,-34.47315999599988],[138.33174000300005,-34.51993999599989],[138.4292600030002,-34.66569999599989],[138.54198000300005,-34.75477999599997],[138.4765300030001,-34.85966999599992],[138.51761000300007,-35.03292999599989],[138.46759000300028,-35.12150999599987],[138.46913000300003,-35.24198999599997],[138.43911000300022,-35.351489995999884],[138.340580003,-35.392779995999945],[138.2890800030002,-35.47286999599993],[138.12311000300008,-35.56110999599986],[138.16254000300023,-35.66078999599995],[138.283620003,-35.638929995999945],[138.52300000300033,-35.642629995999926],[138.6312600030002,-35.54393999599995],[138.71080000300014,-35.51334999599993],[138.95140000300034,-35.591299995999975],[139.15315000300006,-35.71312999599991],[139.4134000030001,-35.92713999599994],[139.53271000300015,-36.054789995999954],[139.7086200030002,-36.3112499959999],[139.80584000300018,-36.51438999599998],[139.86222000300017,-36.69471999599989],[139.85056000300017,-36.82344999599991],[139.6763300030002,-36.96742999599991],[139.74228000300013,-37.02493999599989],[139.79558000300017,-37.1392399959999],[139.75723000400012,-37.19464999599995],[139.82794000400008,-37.30417999599996],[139.97342000400022,-37.45960999499994],[140.11559000400018,-37.5259299949999],[140.112640004,-37.57857999499987],[140.28020000400022,-37.72816999499997],[140.37578000400003,-37.89910999499989],[140.66202000400017,-38.06008999499994],[140.84584000400014,-38.04131999499998],[140.98787000400011,-38.05808999499993],[141.23958000400012,-38.17785999499989],[141.38489000400023,-38.30779999499998],[141.4069100040001,-38.369369994999886],[141.5794700040002,-38.388329994999935],[141.50755621200005,-38.26481157899997],[141.3833376870001,-38.20524229499995],[141.53568023700018,-38.14838850399991],[141.51723339500006,-38.06559239599994],[141.32397168700015,-38.08003822099988],[141.32221587800007,-37.971890336999934],[141.38565156100003,-37.9436446869999],[141.50228033700012,-37.996519737999904],[141.54696185300008,-37.94387766999995],[141.67530459500017,-37.943687286999875],[141.66185110400022,-37.87066713699994],[141.4349887200001,-37.85629665399989],[141.47742956100012,-37.75819550499995],[141.3176697780002,-37.68675176299996],[141.2723894620002,-37.49417830399983],[141.19098794500007,-37.32361008799995],[141.26027845300007,-37.17824471299997],[141.39437112000007,-37.119845378999855],[141.69037580300017,-37.09546213799996],[141.79144232000021,-37.159367045999886],[141.89557683600003,-37.11933119599996],[141.94914990300015,-36.9908343379999],[142.150670095,-37.053855145999876],[142.25977987800024,-37.034545971999876],[142.33878415300023,-36.969590037999865],[142.35057616900008,-36.887599929999965],[142.45990218500003,-36.88009182999991],[142.54880495300017,-37.05420796299995],[142.5365736860001,-37.093705437999915],[142.64630951100003,-37.247354578999875],[142.70989177700005,-37.05911419599988],[142.65051624400007,-37.00321562999994],[142.68002213500006,-36.94234092999989],[142.79633891100002,-36.97783942999996],[143.0620817360002,-36.94272471299996],[143.0336966860001,-36.882204137999906],[142.9222259520002,-36.86872327999998],[142.96856044400022,-36.77568568799995],[142.95763526000007,-36.673000471999956],[143.15902960200003,-36.665282329999854],[143.29561703500008,-36.46575860499985],[143.27596812700006,-36.38393085499996],[143.38297473600016,-36.376801238999974],[143.49315851000017,-36.42910044699994],[143.53239496900005,-36.310770247999926],[143.46582828500004,-36.30087372999998],[143.46537754300005,-36.21053485599998],[143.70962247700015,-36.27959754699998],[143.70003604300007,-36.347830330999955],[143.79321724300019,-36.412586263999856],[143.83467701000018,-36.504466738999895],[143.93316541000013,-36.46266524699996],[143.9549228100003,-36.56367377299995],[143.88886888500008,-36.57935363099995],[143.90523274400016,-36.80694555499991],[143.94826437700033,-36.87404365499998],[144.14349727700017,-36.73929810499993],[144.12475333400027,-36.640875688999984],[144.16564467600006,-36.57538708099992],[144.28839667700004,-36.543621438999935],[144.34932694400004,-36.49074757199992],[144.46816178500023,-36.49885277999982],[144.51870606900002,-36.67523409799992],[144.58032717700007,-36.74797369799995],[144.63473161800016,-36.60275581399992],[144.75719548500024,-36.607493530999875],[144.82357330900004,-36.675503979999974],[144.92832594300012,-36.579947422999965],[145.0892299420002,-36.52217746499997],[145.210478168,-36.646620905999896],[145.1338792260002,-36.69293613899998],[145.102721577,-36.774806388999934],[145.1002343680002,-36.968959346999895],[145.24052291800012,-36.929577105999954],[145.29096611800003,-36.86666683899989],[145.47866739300014,-36.79457216399993],[145.58540359300014,-36.78175886399998],[145.695714543,-36.66556463099994],[145.814146692,-36.62876598099996],[145.99025985100013,-36.65346379799996],[146.09216415900005,-36.599876488999826],[146.08081379300006,-36.51595217299996],[146.15570800100022,-36.47150766399989],[146.17263540900012,-36.38664598899993],[146.05731510900023,-36.20366608099988],[146.04526540900008,-36.12235728999997],[146.24878190900017,-36.223603538999896],[146.23439625100002,-36.317721322999944],[146.27131087600003,-36.40945583999991],[146.21860800900004,-36.55278779799994],[146.35313569300024,-36.622211888999914],[146.55709908500012,-36.46586511399994],[146.49183403400014,-36.316577347999896],[146.43064073400012,-36.267218355999944],[146.43317308500013,-36.194004280999934],[146.54266051700006,-36.15731649799989],[146.60182012600012,-36.08799508999988],[146.71918033400016,-36.15123976499996],[146.76819855000008,-36.07749507399984],[146.85424635900006,-36.10969456499993],[146.91439751000007,-36.184604739999884],[147.03077465800004,-36.15565803199996],[146.99017000100014,-36.086159997999914],[146.91404000100022,-36.112719997999875],[146.56476221000014,-35.90691540599988],[146.48152561500012,-35.90290655399991],[146.3224835870002,-35.748232273999974],[146.3444562530001,-35.677290591999906],[146.1706431150003,-35.633856557999934],[146.11738964300002,-35.55103218399984],[146.16865928800007,-35.464263507999874],[146.27064925000013,-35.493068035999954],[146.28500781000014,-35.57863892099988],[146.34614990500006,-35.61611059399996],[146.4546095940002,-35.50370313799988],[146.37572164000005,-35.42482344699994],[146.30275397800017,-35.426795696999875],[146.2593729780001,-35.332138097999916],[146.267262124,-35.23945653499993],[146.37868264300016,-35.19467971299997],[146.36398827100004,-35.09668842499997],[146.40314269400005,-35.04656765999994],[146.3547870240002,-34.84127289499992],[146.54063944300003,-34.74238505799997],[146.53381866300003,-34.68611832699992],[146.43150824400016,-34.645197845999974],[146.45367882500022,-34.55824192699998],[146.39740387200004,-34.464464789999965],[146.14506861300003,-34.40478788899992],[146.0241422890001,-34.295267726999896],[146.1403687080001,-34.24043889199987],[146.27978844300003,-34.23922553999995],[146.3488954070001,-34.2996163329999],[146.70349433800004,-34.31460779299988],[146.75943263500005,-34.25781433299994],[146.6636666620002,-34.00341962099998],[146.60565264200034,-33.92363879499993],[146.65287805000003,-33.78262416599995],[146.78875763300005,-33.71455057799983],[146.81147829200017,-33.64344831499983],[146.9170842970001,-33.58522079999989],[146.90542679900022,-33.51045996499988],[147.05040185000007,-33.378345888999945],[147.00584654300008,-33.1651266799999],[146.9211297080002,-33.181007260999934],[146.80026467200014,-33.07195248499994],[147.14764752500014,-33.078899358999934],[147.32915111300008,-33.014633395999965],[147.4863476590001,-33.02418579799996],[147.51500264000003,-32.86699677699994],[147.50545000600016,-32.75670612499994],[147.53059553800006,-32.63911818699995],[147.61735589600005,-32.474196847999906],[147.52391002600007,-32.30147857999992],[147.618789213,-32.28845865499994],[147.73413129500022,-32.44007376699989],[147.88740627200002,-32.49140754699994],[147.91700894700023,-32.59432816899994],[148.02252358600015,-32.57982038499995],[148.13780426300013,-32.64695453699994],[148.2404346190001,-32.59800766899991],[148.26008745500008,-32.51550306399997],[148.21632430600016,-32.41750726299995],[148.33525146700003,-32.39086473799989],[148.30670192700018,-32.31856124099983],[148.4211124190001,-32.21596445599994],[148.54071116200032,-32.32780713899996],[148.59744422500012,-32.438097520999975],[148.96583744300005,-32.36133283999982],[149.04945559400005,-32.281784660999904],[149.03039733900016,-32.233547815999884],[149.1046767580001,-32.15805087899997],[149.1629658500002,-32.27700415199996],[149.24603458800004,-32.324756064999974],[149.39834757900007,-32.248160113999916],[149.31178453200016,-32.20027843399998],[149.3822493450001,-32.140879481999946],[149.34468205100006,-32.03056645399988],[149.49194406100003,-31.903233367999974],[149.55046142600008,-31.901486069999976],[149.6500097710002,-31.966852155999902],[149.7408917570001,-32.13293540799998],[149.9201060270001,-32.15607415199992],[149.97793705700008,-32.22536807599988],[150.17448656000022,-32.22006093699997],[150.2788418030001,-32.28376632899989],[150.31593604800003,-32.20211250999995],[150.43910438400007,-32.21660068099993],[150.50325197700022,-32.13550749199993],[150.56155569400016,-32.176160995999965],[150.64328137600012,-32.14080266899998],[150.735612198,-32.17941136099995],[150.77331611500006,-32.05058841299996],[150.68386916900022,-31.93126974699993],[150.79212993800002,-31.88903729499998],[150.88037185200005,-31.80507433899993],[150.79245099500008,-31.740191787999947],[150.7080245640002,-31.567441196999937],[150.5810106150002,-31.424619046999908],[150.53474620400004,-31.23603234199993],[150.56601195300016,-31.13753881499997],[150.4967214840001,-31.066680770999938],[150.45894,-30.870129856999938],[150.33961606700007,-30.810416911999937],[150.23883160200023,-30.54364569699993],[150.27548330800016,-30.506582077999894],[150.0474547470003,-30.270538166999927],[149.97198460200002,-30.260282573999973],[149.94035257100018,-30.12811447799993],[149.9622792780001,-30.063806272999955],[150.0521839710001,-29.995597027999963],[150.13889991400004,-30.010304444999974],[150.1988357150002,-29.78041308899998],[150.25321788800022,-29.706029912999952],[150.25703189900003,-29.51425351599994],[150.28941120100012,-29.474118811999915],[150.41032233500016,-29.47156089899994],[150.4685199080002,-29.544238375999953],[150.52989072100002,-29.518467915999963],[150.6077726100002,-29.64920316699994],[150.74090549000005,-29.534651389999965],[150.61959756300007,-29.452389435999976],[150.68134990300018,-29.3765032849999],[150.81448271800014,-29.308896961999892],[150.8727246320002,-29.071659046999912],[150.812589182,-29.00352109399995],[150.92585673900032,-28.848969273999842],[150.96335009600023,-28.870191928999873],[151.10675072000004,-28.846096287999956],[151.08529075500007,-28.668483883999954],[151.22748264300003,-28.437824983999974],[151.29902266400006,-28.417783429999872],[151.3296307080002,-28.28907545899989],[151.25465220600017,-28.24872703299991],[151.2453567130001,-28.131642083999907],[151.31802404500002,-28.078233069999953],[151.4552315830001,-28.093514793999873],[151.5700040260001,-28.153554579999934],[151.59428720900019,-28.016090799999972],[151.7133345100002,-27.985668486999884],[151.81917784700022,-28.154897991999974],[152.02884432500002,-28.304746438999928],[152.12842500300007,-28.443405098999847],[152.21630999600006,-28.44891000499996],[152.25319294200006,-28.372094862999973],[152.32332000400004,-28.352092091999964],[152.32501482400016,-28.22874549999989],[152.3755204590001,-28.168226987999958],[152.33390902700023,-28.118524127999876],[152.38249211900006,-28.05980613899993],[152.18835338600013,-27.918863160999877],[152.11399607700014,-27.786410562999947],[151.98869078200005,-27.753546262999976],[152.00640460500017,-27.60089577499997],[151.96399947500004,-27.505500564999977],[152.013498227,-27.449796169999843],[151.95970947400008,-27.318651803999956],[152.02689245200008,-27.21871406999992],[151.95764733500005,-27.130528763999905],[151.83981892500003,-27.11648826499993],[151.7340593880001,-27.005371420999893],[151.59608921200015,-26.935720546999903],[151.52719518900005,-26.85095083899995],[151.50398564600005,-26.757897437999873],[151.57438863100026,-26.703285735999884],[151.6195531000002,-26.586582679999935],[151.809828325,-26.496224614999903],[151.73441845900004,-26.38259725499995],[151.70634093900003,-26.251101533999872],[151.63457879300006,-26.211797495999917],[151.56656959600002,-26.09319158699998],[151.6484776560003,-26.037618734999967],[151.6489797160001,-25.867729415999918],[151.5193700540002,-25.65722222599993],[151.46673947200009,-25.39679726099996],[151.3653748370001,-25.331327795999982],[151.39152685800002,-25.237859929999956],[151.4134046700001,-24.944908927999904],[151.30166490300007,-24.70686975899997],[151.1802208140001,-24.650907695999933],[151.12855443800004,-24.568413070999952],[150.98553473100003,-24.55929374199991],[150.91908310000008,-24.515878761999886],[150.8673097100002,-24.406369238999957],[150.90232763400002,-24.303022571999975],[150.7899929020001,-24.207110496999917],[150.94808777000003,-24.213828482999872],[151.0696991650001,-24.145927732999894],[150.99966300300002,-24.319004295999946],[151.07282873400004,-24.36858163099987],[151.1342609750002,-24.460946211999897],[151.22772007500032,-24.39200780699997],[151.188473648,-24.25446406899988],[151.2647360510001,-24.22072797399983],[151.2732495590002,-24.07556930899989],[151.2465011050001,-24.00130133399989],[151.1589774470001,-23.91042992399997],[151.12493529500023,-23.827622865999956],[151.15869999400013,-23.749080007999908],[151.12225999400005,-23.672730007999974],[151.0541499940001,-23.63985000799994],[151.0157399940001,-23.565740007999864],[150.89277999400008,-23.61490000799995],[150.85065999400013,-23.544180007999955],[150.86727999400023,-23.472520007999833],[150.79314999400003,-23.321600007999905],[150.8254999940001,-23.23960000799991],[150.73884144800002,-23.116573551999977],[150.73328539900012,-23.03157239899997],[150.62860767700022,-22.98127210399997],[150.51022947900003,-22.843651653999814],[150.36448136800004,-22.81460294899989],[150.47929800500015,-22.68482265299997],[150.45712079500015,-22.63280034499985],[150.55781999400017,-22.56335000799993],[150.45199999400006,-22.52301000799997],[150.30093999400003,-22.419440007999924],[150.1753699940001,-22.355070007999927],[150.1512399940002,-22.25873000799993],[150.04268999400017,-22.127970007999977],[149.96388999400017,-22.1748300079999],[149.91292999400002,-22.34520000799995],[149.9619899940002,-22.538760007999883],[149.88719999400007,-22.491550007999933],[149.8515299940002,-22.417510007999965],[149.70322999400003,-22.45358000799996],[149.70841999400022,-22.38461000799998],[149.57283999400033,-22.232930007999983],[149.53533346000017,-22.15881206599994],[149.4682805860001,-22.15315597999995],[149.41442996600006,-22.219252393999966],[149.4340414820001,-22.288654665999843],[149.34246176300007,-22.33302494299994],[149.48338722900007,-22.615852177999898],[149.47614508300023,-22.760011533999887],[149.38988820600002,-22.70969007899987],[149.31106513600014,-22.502468150999846],[149.28338456400002,-22.31503397599994],[149.24762582400012,-22.280369540999914],[149.29309358900002,-22.119945607999853],[149.27127709500007,-22.034047889999954],[149.206330137,-22.00993293299996],[149.20408213100018,-21.849730424999905],[149.12099331500008,-21.870966899999928],[149.01514580700018,-21.6733589829999],[148.95886901500012,-21.687746576999928],[148.9054565910002,-21.55502232499998],[149.0144603780002,-21.515476276999948],[149.0080561970001,-21.445174931999873],[148.92193787800022,-21.37704189999988],[148.8074230310002,-21.389577533999955],[148.7256914410001,-21.57647190299997],[148.67352720700023,-21.50944362199988],[148.67594827100004,-21.44206142099995],[148.56266370400022,-21.39651734499995],[148.48414552000008,-21.297348623999937],[148.49530032000018,-21.23185074499986],[148.43628435200003,-21.12068489099994],[148.47509982600002,-21.027800924999895],[148.47132121800018,-20.83752186499993],[148.25533078500018,-20.59601227899998],[148.2457172600001,-20.512571401999878],[148.18394384700014,-20.501474342999927],[148.2566608520002,-20.269850994999956],[148.31544490900023,-20.22976241099991],[148.31884470600005,-20.140104736999945],[148.27549999300004,-20.09667000899998],[148.26719999300008,-19.98894000899986],[148.11267999300003,-19.94194000899995],[148.08020999300004,-19.881480008999972],[147.98578999300003,-19.926600008999912],[147.86280999300016,-19.846450008999966],[147.8528799930001,-19.745880008999904],[147.75431999300008,-19.70793000899988],[147.77134999300017,-19.830660008999814],[147.67617999300023,-19.83061000899994],[147.59366999300005,-19.731900008999958],[147.56483999300008,-19.561310008999953],[147.47799999300003,-19.44173000899997],[147.31475999300005,-19.40824000899994],[147.13485999300008,-19.407770008999876],[147.06606999300016,-19.340020008999943],[147.04136999300033,-19.210760008999955],[146.96089999300023,-19.293230008999842],[146.88409999300006,-19.30440000899989],[146.77485999300018,-19.19143000899993],[146.68874999300021,-19.193940008999846],[146.60376317700002,-19.152372604999925],[146.47361115100023,-19.338535772999876],[146.40231413300023,-19.35043467299994],[146.37614736400008,-19.267380232999926],[146.2426793520001,-19.104903487999934],[146.08477539600005,-19.05758729299987],[146.04625627300004,-18.902696465999952],[145.90935343200033,-18.909517136999966],[145.76849122900012,-18.822525820999942],[145.74084882900002,-18.721691440999905],[145.6293736890001,-18.665371963999917],[145.6573583080002,-18.555199073999972],[145.64774869100006,-18.439540575999956],[145.54979339400006,-18.294505345999937],[145.5896726440002,-18.176330969999924],[145.47930538100013,-18.075266817999875],[145.45616107700005,-17.985445917999982],[145.51077170700023,-17.954923882999935],[145.43651928800034,-17.867811692999908],[145.417380685,-17.74246887199996],[145.43776391000017,-17.597738197999945],[145.36411559200008,-17.538486630999955],[145.32306829300012,-17.388043687999982],[145.34568295200006,-17.288573157999963],[145.42545515100016,-17.179456611999967],[145.52003335200015,-17.135807310999894],[145.56307488300024,-17.02252087499994],[145.53958385300007,-16.868717981999964],[145.43757002700033,-16.766686032999928],[145.374620595,-16.761188973999936],[145.33585982800003,-16.678549526999973],[145.24762217000023,-16.63927802899991],[145.21329421400014,-16.51493554599989],[145.12654341000007,-16.484470372999965],[145.14641890200005,-16.36616030499988],[145.08362825600034,-16.311991879999823],[144.99052430100016,-16.334041586999888],[144.94311250200008,-16.293770269999925],[144.89956053200012,-16.17626267399993],[144.9852578650001,-16.084533246999968],[145.08203369600005,-16.093893402999925],[145.08143703500014,-15.933172185999979],[145.24869004900006,-15.697849810999855],[145.31752960400001,-15.662288849999982],[145.3206999920002,-15.5897400099999],[145.23147999200023,-15.463690009999937],[145.28821999200022,-15.37591000999987],[145.23456999200016,-15.142170009999973],[145.34872999200002,-14.982830009999873],[145.28117999200003,-14.95445000999996],[145.17764999200006,-14.842010009999967],[145.02306999200016,-14.794690009999954],[144.9508699920002,-14.727650009999877],[144.89666999200006,-14.610540009999909],[144.68293999200012,-14.55208000999994],[144.6188399920003,-14.477170009999895],[144.64713999200012,-14.35142001099996],[144.52418999200017,-14.170740010999907],[144.4579899920002,-14.23710000999995],[144.33942999200008,-14.306210009999916],[144.2609899920002,-14.290050009999902],[144.08478999200008,-14.451980009999886],[143.9757199920001,-14.488400009999964],[143.89740999200023,-14.484290009999881],[143.80354999200006,-14.42923000999997],[143.74234999200007,-14.32551000999996],[143.69850999200003,-14.187540009999964],[143.68031999200002,-14.013930009999967],[143.62212999200005,-13.963110009999923],[143.53174999200007,-13.751770009999973],[143.5582699920002,-13.592780009999956],[143.5872199920001,-13.543570009999883],[143.58286999200004,-13.37593001099998],[143.51593999200009,-13.259950010999887],[143.50302999200005,-12.92634001099998],[143.45004999100001,-12.848770010999942],[143.3512199920002,-12.891320010999891],[143.35675999100033,-12.804740010999922],[143.43617999100013,-12.623540010999932],[143.27419999100005,-12.51453001099992],[143.2722399910001,-12.404480010999976],[143.1803899910002,-12.34315001099992],[143.08440999100014,-12.348120010999821],[143.08583999100017,-12.17356001099995],[143.183929991,-11.99343001099993],[143.10573999100018,-11.896690010999976],[142.96979999100017,-11.930650010999898],[142.85637999100004,-11.844910010999968],[142.85921999100003,-11.635770010999863],[142.83327999100015,-11.430970010999943],[142.86824999100008,-11.382370010999978],[142.7853499910001,-11.220920010999919],[142.78566999100008,-11.074910010999929],[142.71930999100005,-10.968330010999978],[142.6090699910003,-10.93719001099987],[142.59065999100005,-10.868090010999879],[142.51497999100013,-10.858760010999958],[142.60614999100028,-10.74644001199988],[142.54088999100009,-10.708200011999963],[142.42435999100007,-10.725810010999965],[142.35170999100012,-10.88303001099996],[142.18738999100015,-10.916580010999894],[142.12615999100012,-10.982460010999887],[142.15463999100007,-11.120160010999882],[142.11682999100015,-11.372900010999956],[141.95196999100006,-11.86999001099997],[141.93139999200002,-12.074870010999973],[141.85029999200003,-11.984960010999885],[141.74267999200003,-12.205430009999873],[141.59141999200006,-12.56301000999997],[141.75547999200023,-12.53688000999989],[141.82746999200003,-12.649460009999927],[141.75738999200018,-12.827510009999912],[141.6294099920001,-12.915900009999973],[141.58369999200022,-12.997120009999946],[141.619219992,-13.046270009999944],[141.62974999200014,-13.15969000999985],[141.6968099920001,-13.263730009999847],[141.67260999200005,-13.346910009999874],[141.5517399920003,-13.505560009999954],[141.50321999200014,-13.658600009999873],[141.46641999200017,-13.870470008999916],[141.50118999200004,-13.9817200089999],[141.5982499920001,-14.110560008999812],[141.60227999200015,-14.224580008999965],[141.5250699930001,-14.48412000899998],[141.55089999300003,-14.580670008999903],[141.5890599930001,-14.850460008999846],[141.66639999300003,-15.018040008999947],[141.62871999300012,-15.160340008999924],[141.47205999300002,-15.52127000799993],[141.43529999300017,-15.66158000799993],[141.41427999300004,-15.846230007999964],[141.37554999300005,-15.919030007999936],[141.430859993,-16.08293000799989],[141.3510799930001,-16.217860007999946],[141.29026999300004,-16.397080007999875],[141.30486999300012,-16.457180007999966],[141.23540999400007,-16.589810007999915],[141.20705999400002,-16.69108000799997],[141.09419999400006,-16.808080007999877],[140.95903999400002,-16.996430006999958],[140.94978999400007,-17.151290006999943],[140.88285999400023,-17.3820800069999],[140.84463999400032,-17.43841000699996],[140.7106299940001,-17.509240006999903],[140.5960299940001,-17.596500006999918],[140.3862899940001,-17.677920006999898],[140.12324999400016,-17.719550006999953],[140.00347999400014,-17.714570006999907],[139.9350999940002,-17.629590006999877],[139.81773999400002,-17.570360006999977],[139.7567499940002,-17.577850006999938],[139.62155999400022,-17.522020006999867],[139.53319999400003,-17.439630006999835],[139.41574999400007,-17.37430000699993],[139.34101999400002,-17.375460005999912],[139.2412099940002,-17.32296000599996],[139.15599999400013,-17.16731000699997],[139.15327999400006,-17.037060006999866],[139.08298999400006,-16.995700006999982],[139.0389399940001,-16.91331000699995],[138.8952099940002,-16.88423000699993],[138.62812999400012,-16.768050006999886],[138.4276199940001,-16.777780005999887],[138.1937499940002,-16.696540005999907],[137.86152999400008,-16.423580005999952],[137.7255799940001,-16.23112000599997],[137.57057999400013,-16.174720005999916],[137.46440999400022,-16.159740005999936],[137.32102999400013,-16.09945000599987],[137.2506199940001,-16.01022000599994],[137.04877999400003,-15.92196000599995],[137.00823999400018,-15.877420005999909],[136.81331999400015,-15.900330005999876],[136.70691999500013,-15.932000005999953],[136.71412999400013,-15.856410005999976],[136.62543999400032,-15.772070005999979],[136.54430999400006,-15.741430005999973],[136.40928999400035,-15.625420005999956],[136.33884999400004,-15.61236000599996],[136.27067999400003,-15.536780005999901],[136.24058999400017,-15.41742000599993],[136.16337999400002,-15.391100005999931],[135.920589994,-15.243700005999926],[135.86271999400014,-15.182180005999896],[135.63788999400003,-15.044070005999913],[135.57784999400008,-15.043740005999894],[135.47390999400022,-14.973300005999874],[135.4139399940002,-14.868940005999889],[135.42504999400012,-14.727610005999964],[135.51676999400001,-14.650660005999896],[135.5375499940002,-14.559310005999976],[135.62099999400016,-14.423710005999908],[135.67634999400002,-14.390140006999843],[135.78959999400013,-14.232040006999966],[135.87905999400016,-14.169370006999884],[135.91424999400033,-14.033930006999924],[136.01620999400006,-13.824040006999951],[136.03466999400018,-13.715470006999965],[135.91326999400007,-13.745090006999874],[135.84458999400022,-13.615320006999923],[135.86170999400008,-13.436380006999968],[135.91871999400018,-13.269850006999945],[136.00033999400011,-13.213450006999949],[136.04902999400008,-13.24293000699987],[136.10774999400007,-13.17232000699994],[136.20088999400002,-13.247140006999928],[136.2431399940001,-13.169320006999953],[136.31019999300008,-13.165950006999822],[136.30854999300004,-13.072440007999944],[136.36473999300017,-13.056420007999975],[136.36637999300012,-13.196570006999877],[136.39184999300005,-13.254470006999895],[136.47239999300007,-13.215010007999979],[136.52914999300015,-13.146610007999925],[136.53542999300032,-13.023520007999878],[136.63528999300001,-12.952390007999895],[136.47797999300008,-12.832170007999935],[136.58214999300003,-12.766690007999898],[136.67842999300024,-12.668040007999934],[136.9269099930002,-12.341810007999982],[136.87447999300002,-12.220970007999938],[136.7791199930001,-12.161350007999886],[136.7406699930002,-12.273100007999915],[136.66333999300014,-12.28166000799996],[136.6001799930001,-12.20289000799994],[136.58902999300005,-12.09302000799994],[136.41490999300004,-11.958330007999962],[136.33160999300003,-12.059420007999961],[136.26695999300023,-12.072910007999951],[136.1973099930002,-12.162180007999837],[136.22826999300014,-12.213850007999952],[136.33916999300027,-12.204600007999943],[136.3635999930001,-12.256990007999946],[136.30411999300009,-12.400170007999861],[136.22311999300018,-12.462110007999911],[135.99617999300006,-12.43958000799995],[136.02145999300024,-12.315170007999882],[135.8961099930002,-12.186380007999844],[135.67425999300008,-12.23817000799994],[135.6519699930003,-12.167750007999928],[135.772449993,-12.047050007999928],[135.72708999300016,-12.009620007999956],[135.58264999300025,-12.091290007999817],[135.53413999300005,-12.151610007999864],[135.39349999300032,-12.179630007999833],[135.34718999300003,-12.243070007999904],[135.21919999300007,-12.29670000699997],[135.1254799930001,-12.237500006999937],[135.05583999300006,-12.262260006999895],[134.97056999300014,-12.158530006999968],[134.8420299930001,-12.11379000699992],[134.7714299930003,-11.958230006999884],[134.6878099930001,-11.966610006999929],[134.6096799940001,-12.047790006999946],[134.41950999400012,-12.065910006999957],[134.28548999400016,-11.983020006999936],[134.22735999400015,-12.04141000699991],[134.17357999400008,-11.960850006999863],[134.037799994,-11.855000006999944],[133.98006999400002,-11.89782000699995],[133.87838999400003,-11.911160006999978],[133.82322999400003,-11.84126000699996],[133.9245599940001,-11.768650006999906],[133.79777999400017,-11.72632000699997],[133.73954999400007,-11.783090006999885],[133.60418999400008,-11.839410006999913],[133.53434999400008,-11.760950006999963],[133.46038999400002,-11.802560006999954],[133.41340999400006,-11.759340006999821],[133.32132999400017,-11.771070006999935],[133.15688999400015,-11.710180006999963],[133.0092599940001,-11.43566000699991],[132.9172199940001,-11.33198000699997],[132.7341399940001,-11.518080006999867],[132.6594799940001,-11.510010006999948],[132.61838999400027,-11.408180006999942],[132.43593999400014,-11.211800006999908],[132.30850999400013,-11.174250006999955],[132.2373799940002,-11.340060006999977],[132.09924999400016,-11.306330006999872],[132.0671299940002,-11.191810006999901],[131.93205999400004,-11.24404000699991],[131.94025999400026,-11.396900005999953],[132.06052999400015,-11.436050006999949],[132.1062599940002,-11.531310005999842],[132.2378799940002,-11.45593000699995],[132.3550399940001,-11.441320006999888],[132.45699999400006,-11.457240006999939],[132.5546999940001,-11.555390006999971],[132.5481199940001,-11.609500006999895],[132.65756999400003,-11.649570006999909],[132.65085999400014,-11.718840006999926],[132.5804499940001,-11.787490006999974],[132.65213999400032,-11.88379000699996],[132.61838999400027,-12.018610005999903],[132.56384999400007,-12.092910005999897],[132.4405499940002,-12.146870005999972],[132.4153799940002,-12.20237000599991],[132.27852999400022,-12.226470005999829],[132.24026999400007,-12.174760005999929],[132.0645199940002,-12.304060005999872],[131.96163999400017,-12.281410005999874],[131.873039994,-12.215480005999893],[131.7541299950002,-12.273810005999962],[131.44633999500013,-12.28083000599986],[131.34646999500023,-12.22718000599997],[131.28945999500002,-12.045110005999959],[131.221379995,-12.22627000599988],[131.15850999500003,-12.169460005999895],[130.99491999500003,-12.16909000599992],[131.03070999500005,-12.240640005999865],[130.98398999500034,-12.342520005999916],[130.8936699950002,-12.332030005999911],[130.85185999500027,-12.450480004999974],[130.88190999500011,-12.606610004999936],[130.7693899950002,-12.528360004999968],[130.76487999500011,-12.43790000499996],[130.61745999500022,-12.386130004999927],[130.53087999500008,-12.712010004999854],[130.43927999500022,-12.633630004999873],[130.3526499950002,-12.669920004999938],[130.35053999500008,-12.840140004999967],[130.2798799950001,-12.932700004999958],[130.14601999500007,-12.927910004999944],[130.11716999500027,-13.167240004999883],[130.15868999500003,-13.174630004999926],[130.2459299960003,-13.28951000499984],[130.23728999600007,-13.33845000499997],[130.1368199960001,-13.460540004999928],[130.00680999600002,-13.53322000399993],[129.9292399960001,-13.528550003999953],[129.87823999600027,-13.459260003999873],[129.79030999600002,-13.665410003999966],[129.7851499960001,-13.766760003999877],[129.720969996,-13.850230003999911],[129.7522799960002,-13.953100003999907],[129.72545999600015,-14.010110003999955],[129.494069996,-14.130930003999822],[129.4155999960002,-14.230300003999957],[129.35536999600015,-14.419640003999973],[129.52618999600008,-14.55223000399991],[129.74911999600022,-14.601080003999925],[129.62307999600011,-14.685530003999872],[129.67246999600013,-14.763400003999948],[129.64547999600018,-14.833720003999872],[129.60591999700023,-15.120620002999942],[129.47997999600022,-14.938380002999907],[129.3166199970002,-14.859170002999917],[129.1890599970002,-14.98568000299997],[129.06374999700006,-14.890160002999892],[128.91136999700018,-14.856750002999888],[128.81927999700008,-14.86299000299988],[128.67726999700005,-14.79578000299989],[128.54879999700006,-14.768990002999885],[128.4340099970001,-14.811650002999897],[128.47627999700012,-14.911680002999844],[128.3546599970001,-14.887710002999938],[128.35955999700002,-15.05417000299991],[128.28711999700022,-14.974030002999882],[128.23531999700026,-14.997350002999838],[128.19472999700008,-15.097370002999924],[128.22377999700007,-15.135650002999967],[128.1895899970002,-15.230620002999956],[128.06676999700005,-15.312370002999955],[128.0998099970003,-15.167250002999936],[128.0769299970001,-15.096910002999948],[128.10770999700026,-14.950670002999914],[128.1839599970001,-14.744400002999953],[128.1303299970001,-14.664350002999981],[127.83006999700024,-14.454050002999907],[127.77989999700014,-14.33355000299997],[127.67036999700008,-14.191780002999849],[127.53794999700017,-14.088230002999978],[127.44853999700013,-14.054390002999924],[127.4560799970003,-13.980570002999968],[127.36022999700003,-13.908950002999916],[127.31355999700031,-13.959560002999922],[127.16975999700014,-13.910200002999886],[127.11363999700029,-13.964700002999962],[127.08134999700007,-13.84011000299995],[127.01605999700007,-13.824300002999962],[126.96411999700001,-13.747260002999894],[126.743569997,-13.789250002999893],[126.80889999700014,-13.916170002999934],[126.70350999700008,-14.131950002999929],[126.57475999700011,-14.230310002999886],[126.45544999700007,-14.099170002999927],[126.43086999700006,-13.989670002999901],[126.34967999700007,-14.049990002999948],[126.25737999700004,-14.238320001999966],[126.19151999700023,-14.08223000299995],[126.20065999700012,-14.005980002999877],[126.08877999700007,-13.921270002999847],[126.10077999700013,-14.074930001999974],[126.16468999700021,-14.149770001999968],[126.01516999800003,-14.413140001999864],[126.04519999800016,-14.475340001999939],[125.90197999800012,-14.569510001999959],[125.79473999800018,-14.466440001999956],[125.68857999800002,-14.4945600019999],[125.65960999800006,-14.44009000199992],[125.67607999800009,-14.351840001999904],[125.62961999800007,-14.233820001999959],[125.58996999800013,-14.245470001999934],[125.58945999800005,-14.370580001999883],[125.62160999800005,-14.410220001999846],[125.60697999800016,-14.515150001999928],[125.49611999800015,-14.512180001999866],[125.42428999800006,-14.599780001999932],[125.34472999800005,-14.550280001999965],[125.25850999800002,-14.593250001999934],[125.18275999800028,-14.707440001999942],[125.19870999800003,-14.83686000199998],[125.3055799980001,-14.88195000199994],[125.25652999800013,-14.946620001999861],[125.28548999800012,-14.999510001999852],[125.373699998,-15.003000001999965],[125.36851999800001,-15.109190001999934],[125.31517999800019,-15.155440001999978],[125.23061999800007,-15.102360001999955],[125.14535999800023,-15.136090000999957],[125.09642999800008,-15.057290001999945],[124.97857999800021,-15.13413000099996],[124.867169998,-15.129400000999965],[124.87798999800009,-15.309760000999916],[124.92025999800012,-15.356350000999896],[125.02521999800013,-15.301750000999903],[125.08880999800022,-15.338630000999956],[125.03034999800002,-15.512390000999972],[124.95267999800024,-15.387030000999971],[124.78208999800017,-15.311740000999976],[124.71549999800004,-15.258790000999966],[124.66865999800007,-15.429740000999914],[124.6215899990001,-15.50107000099996],[124.48396999900001,-15.476080000999957],[124.42811999900016,-15.559040000999971],[124.43544999900018,-15.640220000999818],[124.39268999900003,-15.746410000999958],[124.46130999900004,-15.82837000099994],[124.47912999900007,-15.929190000999881],[124.58058999900004,-15.999810000999958],[124.58797999900003,-16.112380000999963],[124.50945999900011,-16.15720000099998],[124.44991999900014,-16.12140000099987],[124.40628999900014,-16.240770000999873],[124.4177399990001,-16.359570000999952],[124.57089999900018,-16.32945000099994],[124.67294999900002,-16.350470000999906],[124.69982999900014,-16.40084000099995],[124.45275999900014,-16.408080000999917],[124.4034799990003,-16.367640000999927],[124.33953999900007,-16.42261],[124.21907999900009,-16.413189999999872],[124.12633999900027,-16.28074],[123.94168999900035,-16.289149999999836],[123.87998999900003,-16.35299],[123.78557999900022,-16.28583],[123.81125999900007,-16.22176],[123.71945999900004,-16.14112],[123.60519999900009,-16.16178],[123.56648999900017,-16.200689999999895],[123.59243999900002,-16.316889999999887],[123.6605799990001,-16.31458],[123.66589999900009,-16.43475999999987],[123.62937999900021,-16.514839999999822],[123.50290999900005,-16.48767],[123.47155999900008,-16.54203],[123.61628999900017,-16.56805],[123.52190999900017,-16.63575999999989],[123.6238899990002,-16.68451],[123.71210999900029,-16.77176],[123.78900999900009,-16.90755],[123.82927000000018,-17.13320999999985],[123.65912,-17.009639999999877],[123.60055000000034,-17.01021],[123.58819000000017,-17.093979999999874],[123.62456,-17.19686],[123.56768000000011,-17.4131],[123.52038000000016,-17.4257],[123.42614,-17.32569],[123.29639,-17.11092],[123.23505000000011,-16.96973],[123.16586000000018,-16.92316],[123.1529800000003,-16.802],[122.96046000000013,-16.5739999999999],[122.9975,-16.48584],[122.98517,-16.38289],[122.92853,-16.391],[122.9057,-16.48632],[122.7789,-16.57914],[122.71613000000013,-16.78513],[122.57694000000015,-16.78087],[122.53383000000031,-16.8360899999999],[122.57103000000018,-16.931409998999982],[122.48440000000016,-16.94141999899989],[122.37012000000016,-16.99375999899985],[122.25710000000015,-17.110839998999893],[122.17358,-17.26279999899998],[122.14944,-17.35575999899993],[122.14717,-17.564259998999944],[122.19962000000021,-17.68264999899992],[122.21320000100002,-17.878519998999934],[122.2552300010002,-17.958569998999906],[122.35347000100035,-17.976599998999916],[122.38290000100005,-18.068339998999875],[122.31303000100013,-18.172859998999968],[122.21804000100008,-18.202379998999902],[122.13515000100006,-18.304679998999973],[122.06351000100005,-18.325869998999906],[122.01846000100011,-18.390219998999896],[121.90486000100009,-18.464099997999938],[121.82373000100017,-18.44663999799991],[121.75992000100007,-18.55775999799988],[121.78060000100015,-18.66285999799993],[121.65243000100008,-18.76672999799996],[121.51047000100016,-19.095419997999954],[121.31730000200002,-19.359809997999946],[121.19836000200007,-19.47655999799997],[120.96412000200007,-19.630649997999967],[120.64209000200003,-19.766019996999887],[120.19460000200002,-19.913849996999943],[119.97795000200006,-19.932309996999948],[119.76473000300018,-19.97657999699993],[119.60291000300003,-20.079139996999857],[119.46938000300008,-20.011519996999937],[119.17937000300014,-19.95311999699993],[119.10126000300022,-19.961489996999887],[118.99327000300002,-20.03752999699998],[118.97013000300012,-20.109689996999975],[118.81823000300005,-20.280699995999953],[118.67004000300028,-20.32922999599998],[118.53414000300006,-20.312669995999954],[118.48468000300011,-20.346189995999907],[118.329010003,-20.34041999599998],[118.20430000300018,-20.37586999599995],[118.1804700030001,-20.336339995999936],[117.9898200030002,-20.47313999599993],[117.7925500040003,-20.653489995999962],[117.70283000400002,-20.689199995999843],[117.63685000400017,-20.662869995999813],[117.5219700040002,-20.715029995999885],[117.33160000400005,-20.735649995999893],[117.21172000400031,-20.697129995999944],[117.0909100040002,-20.628039995999927],[116.98767000400005,-20.658919995999838],[116.898260004,-20.724219994999885],[116.82986000400024,-20.708829994999917],[116.7705200040001,-20.5886999949999],[116.69114000400009,-20.681649994999873],[116.52778000400008,-20.75281999499998],[116.46071000400002,-20.822699994999937],[116.34491000400021,-20.83861999499993],[116.30145000400034,-20.87760999499983],[116.19108000400001,-20.887679994999928],[116.1881200040001,-20.968549994999933],[115.9910300050002,-21.039619994999953],[115.88244000500003,-21.117809994999902],[115.81818000500016,-21.252519994999943],[115.70208000500031,-21.27829999499994],[115.5510000050001,-21.41036999499994],[115.46136000500007,-21.52939999499995],[115.41131000500002,-21.52487999499988],[115.3030300050001,-21.5928199949999],[115.24306000500007,-21.57655999399998],[115.04967000500017,-21.681129993999946],[114.913340005,-21.692919993999965],[114.77572000500004,-21.791919993999954],[114.64482000500016,-21.849079993999908],[114.61553000600009,-21.975009993999834],[114.47579000600012,-22.15443999399986],[114.37124000600011,-22.490229993999947],[114.2614200060001,-22.440909993999924],[114.18848000600008,-22.521379993999915],[114.1207500060001,-22.469969993999882],[114.18139000600002,-22.344159993999938],[114.08035000600012,-22.15497999399986],[114.14095000600003,-21.943099993999965],[114.16532000600012,-21.78515999399997],[113.99603000600007,-21.874849993999874],[113.94591000600008,-21.95433999399995],[113.81593000600003,-22.317379993999907],[113.75026000600019,-22.407539993999876],[113.70781000600005,-22.525789993999922],[113.65393000600011,-22.582909993999976],[113.71042000600005,-22.71557999399988],[113.76710000600019,-22.775969993999922],[113.82620000600002,-22.953539992999822],[113.82743000600033,-23.04433999299988],[113.77069000600022,-23.12815999299994],[113.79545000700011,-23.302319992999912],[113.75457000700021,-23.52799999299998],[113.61360000700006,-23.631599992999895],[113.56787000700012,-23.751999992999856],[113.47073000700004,-23.89862999299993],[113.45933000700006,-24.014309992999927],[113.42245000700018,-24.04318999299994],[113.44510000700006,-24.145899992999944],[113.39282000700018,-24.238309992999973],[113.40776000700009,-24.48492999299998],[113.62436000700018,-24.74661999299991],[113.62449000700008,-24.876309992999893],[113.68043000700015,-24.92669999299983],[113.66447000700009,-25.018499992999978],[113.6963000070001,-25.08543999299991],[113.81055000700019,-25.16475999299996],[114.00369000800026,-25.617639992999955],[114.23182000800011,-25.874609992999922],[114.19535000800022,-25.982079991999854],[114.25375000800022,-26.156649991999927],[114.1912600080002,-26.167879991999882],[114.23768000800021,-26.28236999199987],[114.20923000800008,-26.37286999199989],[114.08977000800007,-26.46763999199993],[113.98017000800007,-26.353369991999955],[113.93484000800004,-26.18058999199991],[113.87973000800014,-26.071589991999872],[113.77555000800032,-26.21411999199995],[113.7024700080002,-26.13403999199994],[113.70094000800009,-26.04174999199995],[113.76117000800002,-25.877329991999886],[113.60838000800004,-25.716579991999936],[113.57196000800002,-25.637519991999852],[113.47317000800001,-25.557409991999975],[113.4145100080002,-25.72451999199984],[113.55884000800006,-25.94546999199997],[113.58506000800003,-26.09514999199996],[113.69696000800013,-26.221089991999975],[113.8368800080001,-26.280219991999957],[113.8832200080002,-26.340309991999902],[113.88917000800006,-26.47974999199988],[113.8649800080002,-26.535129991999952],[113.69203000800007,-26.659989991999964],[113.59144000800018,-26.579019991999928],[113.5603600080002,-26.35304999199991],[113.47895000800008,-26.269419991999882],[113.4457600080002,-26.170199991999823],[113.38719000800018,-26.11085999199986],[113.35604000800015,-26.256599991999906],[113.27639000800013,-26.29215999199988],[113.32851000800008,-26.434229991999928],[113.5432000080001,-26.627699991999975],[113.75679000800017,-26.89390999199992],[113.96446000800029,-27.229439991999925],[114.10154000800014,-27.496989991999953],[114.16272000900005,-27.706909991999964],[114.10456000900001,-27.84980999199996],[114.17441000900021,-28.11024999199998],[114.2389000090003,-28.187559991999876],[114.32313000900001,-28.232429991999936],[114.43566000900034,-28.397419991999982],[114.53123000900007,-28.495519991999913],[114.60206000900018,-28.624559991999945],[114.6028600090001,-28.77576999199988],[114.63444000900006,-28.873279991999937],[114.8721800080001,-29.11700000099995],[114.9265700090001,-29.3123699919999],[114.99253000900012,-29.477239991999966],[114.96034000900022,-29.66352999099996],[114.98286000900009,-29.918779990999894],[114.95582000900015,-30.04383999099997],[115.0424300100002,-30.274019990999932],[115.05853001000003,-30.504089990999944],[115.17831001000002,-30.76072999099995],[115.3113400100001,-30.97081999099987],[115.44074001000013,-31.277159990999905],[115.53954001000022,-31.40909999099989],[115.68590001000018,-31.653389990999983],[115.75014001000022,-31.8399099909999],[115.7470800100001,-32.06049999099997],[115.77457001000005,-32.18148999099998],[115.7299800100003,-32.30967999099994],[115.74622001000023,-32.47313999099998],[115.63442001100009,-32.59393999099996],[115.6068600110001,-32.685209990999965],[115.68859001100009,-33.11951999099995],[115.67863001100022,-33.28706999099995],[115.59328001100005,-33.42141999099994],[115.44054001100017,-33.597389989999954],[115.30803001100026,-33.65506998999996],[115.13462001100004,-33.628599989999884],[115.08491001100003,-33.565829989999884],[114.98007001200006,-33.715919989999975],[115.00063001200022,-33.79265998999989],[114.98261001200012,-33.96098998999997],[114.99552001200016,-34.10411998999996],[115.05441001200006,-34.27801998999996],[115.17101001200001,-34.32350998999988],[115.26120001200002,-34.30665998999996],[115.38377001200013,-34.32710998999994],[115.67392001200017,-34.484359989999916],[115.95186001200011,-34.72550998999992],[115.99632001200007,-34.83079998999989],[116.26372001200014,-34.880259989999956],[116.47653001200001,-35.001319989999956],[116.63569001200005,-35.054819989999885],[116.76738001200022,-35.01498998999995],[116.85926001200005,-35.05110998999987],[116.96974001100023,-35.01964998999995],[117.14106001100015,-35.05275998999997],[117.20210001100008,-35.01701998999994],[117.39823001100001,-35.03335999099994],[117.56438001100014,-35.08960999099992],[117.64722001100006,-35.06041999099989],[117.86480001100006,-35.05862999099992]],[[150.3746811430001,-22.695551501999944],[150.25603018100003,-22.626473071999897],[150.26783730500006,-22.55188333399991],[150.3563562290002,-22.527208834999897],[150.3746811430001,-22.695551501999944]],[[140.71228065700006,-37.946144250999964],[140.67617768000002,-37.884341923999955],[140.52174356600017,-37.76340125599984],[140.3881991500001,-37.534137598999905],[140.50798009300013,-37.52934261699994],[140.611175752,-37.62054062199991],[140.63157661700006,-37.70114128899996],[140.72846991200004,-37.71223827599994],[140.9293666870002,-37.78093746099995],[140.80906662900009,-37.95333836599997],[140.71228065700006,-37.946144250999964]],[[144.16041341800008,-36.04967039699994],[144.23550675100012,-36.070138896999936],[144.28912982700012,-36.17059016399992],[144.1875747260002,-36.169597447999934],[144.16041341800008,-36.04967039699994]],[[145.6328697680001,-36.3133493979999],[145.74834841000018,-36.30120040699984],[145.70544122600006,-36.40646444799995],[145.6328697680001,-36.3133493979999]],[[145.96412871000007,-36.325524714999915],[146.1431614090002,-36.39277598999996],[146.0463662090002,-36.45285948999998],[145.95521829300014,-36.463252614999874],[145.9157412930001,-36.37044809799994],[145.96412871000007,-36.325524714999915]],[[145.78977785900008,-36.49068743999993],[145.7053944510002,-36.56719341499985],[145.6269654680001,-36.48556747199996],[145.69583836800007,-36.43761691399993],[145.78977785900008,-36.49068743999993]]],[[[119.53333265100002,34.607158822000144],[119.51546461300006,34.53681772300007],[119.69984469000008,34.38612987900018],[119.89775869000005,34.14869436600003],[119.9760815410001,33.94323313199999],[120.23847953400013,33.73104592400017],[120.46428666500003,33.29997436600007],[120.53613265100023,33.12549566400014],[120.79273254700001,32.81759013800007],[120.90693664900016,32.833596723000085],[120.88581861100022,32.97303437700015],[120.81498767400012,33.046923200000094],[120.74942057100031,33.267474542000116],[120.66304053300018,33.32358669000013],[120.64749159900009,33.423856716000046],[120.4885866410001,33.636070746000144],[120.50749168800019,33.72106726800018],[120.45192754900006,33.77301377800018],[120.33637966100014,34.14300640700003],[120.25388362900003,34.30799478300014],[120.10247762300003,34.36327645200015],[119.9274676760001,34.45326992900016],[119.78613269500033,34.47299942100011],[119.6480406720002,34.527716149000184],[119.53333265100002,34.607158822000144]]],[[[118.00305160400012,38.18097032800006],[117.80053660900023,38.273185848000026],[117.67851252700007,38.27399067800019],[117.78082254000003,38.0947756970001],[118.09885357200017,37.752583997000045],[118.21549261700011,37.72152150200003],[118.38207959000033,37.71314479600005],[118.54003856700012,37.74473719400015],[118.67523162400005,37.72429859400012],[118.74025759100005,37.62448555000003],[118.67629964700006,37.565919684000164],[118.51995854400002,37.602188849000186],[118.44186368200008,37.53621120100013],[118.6114116460003,37.33473003000012],[118.71042656500003,37.26709326800011],[118.78960453700006,37.13326512000003],[119.01318359100003,37.00571149600006],[119.44687667200003,36.87988219800013],[119.53272965700023,36.87213547600004],[119.71478258200011,36.94119498200007],[119.81160764600008,36.99943278000012],[119.76721155400003,37.14932082300004],[119.3874965880002,37.12098512900013],[119.23275760300021,37.1415459370001],[118.97109956300005,37.26876445200014],[118.93887366000001,37.345704959000045],[118.95247665100032,37.53153812300019],[118.97998069300002,37.610142772000074],[119.09387164600003,37.719583774000114],[119.03166166400013,37.78069438600005],[119.03692667200005,37.87068886900016],[118.94831855600012,38.04069180200008],[118.86360165500002,38.04735960600004],[118.83055164300015,38.15429894500011],[118.61637859400003,38.13680524200015],[118.54749259300013,38.065418417000046],[118.45999155900017,38.109026442000186],[118.17803959100002,38.14402206100016],[118.08360253200021,38.13180007200009],[118.00305160400012,38.18097032800006]]],[[[118.94747952800014,39.17539328700019],[119.1140056480001,39.28518951300015],[118.88979359400025,39.401036970000064],[118.6698075270001,39.42390565200009],[118.30580862900024,39.4185534720001],[118.06536066100011,39.373475093000025],[117.76710455000011,39.257330917000104],[117.62812069300003,39.10196429500013],[117.6519626810001,39.05185895400018],[117.87996654100016,39.19344405100014],[118.05165054900033,39.22206154500009],[118.14305168300007,39.19289403000005],[118.24275157200009,39.06595882400006],[118.34583255200005,39.04234633200019],[118.50138860500022,39.113451022000106],[118.60498054700031,39.18733314000019],[118.74832165300006,39.14067175600013],[118.84915158900003,39.184556048000104],[118.94747952800014,39.17539328700019]]],[[[117.38680268300004,53.509062459],[117.57800261200009,53.53448426800014],[117.9196015440001,53.66472798000012],[117.99490355600005,53.755020020000075],[117.98500067300006,53.84431310500008],[117.60209656000018,53.952885741000046],[117.3764035910001,54.08482779400009],[117.22660054100004,54.06299226600015],[117.11789664400021,53.99322348300018],[117.0451965420001,53.87568187500011],[117.02729765800007,53.63169640800015],[117.20909862400015,53.54552424100012],[117.38680268300004,53.509062459]]],[[[118.07460053600005,54.69032239799998],[118.09179668000002,54.74879187300013],[117.84329957000023,54.79284497600014],[117.96199754500014,55.01760839299999],[117.84909867400006,55.062550649000116],[117.70770267300009,55.03575990700011],[117.51370268500011,54.86099253200018],[117.42099766300021,54.64797015000016],[117.48000357900003,54.54724884300015],[117.81169862200034,54.55839895300005],[118.07460053600005,54.69032239799998]]],[[[116.94319967700005,55.493383154000014],[117.14070162300015,55.47832171300007],[117.34580260300004,55.507364504000066],[117.49749761700014,55.55564376400008],[117.64659859800008,55.56295295100006],[118.11489854700017,55.62512655600011],[118.2097015600001,55.713027910000164],[118.21399661500027,55.81527975299997],[118.0798036860001,55.86350218300004],[117.73000356400007,55.83110311000013],[116.94960060100004,55.63658696500005],[116.89209756000014,55.57673615300007],[116.94319967700005,55.493383154000014]]],[[[118.7935026250002,55.97243809000014],[118.98899861500001,56.00915518500011],[119.04620359500029,56.0761281],[119.0904005320001,56.37485762100016],[119.27660367400006,56.48524276000006],[119.4004975900001,56.47633950200009],[119.4393006050002,56.38522704100018],[119.41120161600008,55.95348560200017],[119.57289858700005,55.906762526000136],[119.83010063900008,55.881653697],[120.27020269100024,55.95410368300003],[120.61250268600008,56.05489858300001],[120.7307966530002,56.12976071300017],[120.75229657000011,56.23799488800012],[120.28269960600016,56.344984853000085],[120.0917965640001,56.43655831900003],[120.09909854300008,56.53546142400012],[120.31860365600005,56.73597917900008],[120.33840154300026,56.79422016300009],[120.1386036260003,56.825317862000134],[120.00080061100005,56.80413142800012],[119.62819668400016,56.805779478000034],[119.491302603,56.825180901000124],[119.20449868700007,56.9109956640001],[118.88880167900015,56.88569170500011],[118.63169853400007,56.793407956000124],[118.4988026210001,56.665775208000184],[118.05760153300014,56.522441981000156],[117.76139865300024,56.50768966400017],[117.59880062800016,56.464319350000096],[117.38860361800016,56.370757529],[117.20059954200019,56.315767047000065],[116.67530064000016,56.238657729000124],[116.50350163200017,56.18432019800008],[116.21499652400018,55.94641362200014],[116.30480157600005,55.86117201400009],[116.45010354400017,55.85908089700018],[116.90769963500009,56.06786890800004],[117.29329668500009,56.06613670400003],[117.41760265700009,56.04735721700007],[117.66609959900006,56.10012666200004],[117.75589761000015,56.18125309200019],[117.92310367000016,56.208356981],[118.14340154400031,56.13536887700002],[118.57019766000019,56.06254757300019],[118.64459962400008,55.9930649480001],[118.7935026250002,55.97243809000014]]],[[[116.08769955500009,56.69826631400019],[116.15809664500023,56.533233179000035],[116.27660368000011,56.54305257800007],[116.43430365700021,56.70187539400018],[116.5868985510001,56.736948295],[116.65380055500009,56.704205228000035],[116.512100626,56.599752298000055],[116.45210262800003,56.51399989600003],[116.4739986740002,56.446179906000054],[116.60330160000012,56.43873744600012],[116.91040061900014,56.53759026],[117.16509966700005,56.697053285000095],[117.39459952900006,56.746138549000136],[117.61679858600019,56.7620800900001],[117.72290057200019,56.806439469],[117.81320166500007,57.01740576900005],[117.9694976720001,57.168304502000126],[118.1281966040001,57.22030415300014],[118.33519759400019,57.340367707000155],[118.46060159400008,57.450540281000144],[118.52059959200017,57.555916730000035],[118.43620254400014,57.629917032000094],[118.26750165500005,57.63725622700014],[118.14119760600022,57.59540370800016],[117.8713985600001,57.45750933100015],[117.6803966110001,57.478819146000035],[117.84549764100007,57.69373784900017],[117.85530061200006,57.77983491500015],[117.55660260700006,57.79049015800007],[117.00270062800007,57.59057472600011],[116.85179854300009,57.57817219100019],[116.7554016270002,57.501032866],[116.7710035340001,57.373667668],[117.02089656700002,57.356405306000056],[117.37210065700026,57.357614479],[117.50430254800017,57.30745365000007],[117.51979867600016,57.2369826310001],[117.40110053300009,57.12142787],[116.99690253100005,57.16635923000007],[116.85870355500015,57.11826185800004],[116.66629763800006,57.10796971900015],[116.46479769100029,57.12951925600015],[116.25849960800008,57.01112655000003],[115.79799667300006,56.848390727000094],[116.08769955500009,56.69826631400019]]],[[[120.00070153700005,58.03107911000012],[119.87840252900003,57.93457574400014],[119.9542005830001,57.776378721000185],[119.94960059400012,57.573552254000106],[119.71849861500016,57.46615761100003],[119.60320268700013,57.5079489420001],[119.64160169400031,57.79343907900011],[119.60510252900008,57.88351805100001],[119.49330168700021,57.94035506600011],[119.30529761000014,57.974234216000184],[119.01940162200003,57.94745437000006],[119.06909960200016,57.81709800600004],[119.393997592,57.55790474900016],[119.42299663000006,57.407497029000126],[119.40419753000003,57.21489078400015],[119.49790167600008,57.06174905500018],[119.68489858300006,57.003405309000016],[119.88200356200014,56.99707613400011],[120.11640164100015,57.06003596099998],[120.5169986100002,57.42305836700018],[120.8470006760001,57.5707141420001],[120.91829664200009,57.639427307000176],[120.866996545,57.721826780000185],[120.67710167800021,57.816571958],[120.8280025900001,58.026218947000075],[120.76450363800018,58.13759248000002],[120.98919664600032,58.33446796300012],[120.89250167000012,58.37844965300013],[120.57689652900024,58.43204035700012],[120.44200153200006,58.481331982000086],[120.27580264100015,58.42805006800012],[120.26869964800017,58.19443335000017],[120.20469660900005,58.11265162400019],[120.00070153700005,58.03107911000012]]],[[[119.88069967400008,70.34860669700015],[119.7282026800001,70.29388510700005],[119.78469855100002,70.16850424000017],[120.09549767700003,70.11823142900005],[120.3188016360001,70.23944581900003],[120.25189963200012,70.32693713000003],[119.88069967400008,70.34860669700015]]],[[[120.85009762200002,70.23059587000012],[120.85350067500019,70.14166270400011],[121.10009760700007,70.08297312100007],[121.3470006470003,70.09328185600009],[122.01879862000021,70.31554562100007],[121.96459955800015,70.38738842200007],[121.61450154400029,70.43587639100019],[121.27539857500005,70.37864525900011],[120.9446025750002,70.23534857700014],[120.85009762200002,70.23059587000012]]],[[[76.93849154300017,71.13653962700016],[76.66078953500016,71.229768686],[76.08399155000006,71.2058946790001],[75.414039607,71.33017014000012],[75.19715853300016,71.42240745200013],[75.41275751100017,71.48016463200003],[75.50708057700007,71.56102669600011],[75.37812063799998,71.6296414590002],[75.44165764300004,71.70668020200003],[75.20034751200012,71.80769956900002],[75.25289953000015,71.98348400500004],[75.35954265200013,71.97705961100019],[75.46401251400005,72.22055809000017],[75.59813654400011,72.30188551700013],[75.47503656100014,72.49451606900004],[75.64514158600014,72.56829643000015],[75.29382350200012,72.68861211300015],[75.52635157800017,72.73491793700009],[75.41206349000004,72.80611248100018],[74.95497148700002,72.8869735400001],[74.69096349700015,72.80545651400013],[74.94776154200008,72.68568280500006],[75.023780542,72.59484929400014],[75.02218663900004,72.32087555700014],[74.878967574,72.11058198800009],[74.35540758200011,71.97171011300003],[74.22914862800019,71.99427251999998],[73.78427861300014,71.89405395900019],[73.54044351800019,71.81116364200005],[73.51513654000007,71.67173520900013],[73.15386964000004,71.5026500940001],[73.07232663000008,71.43663740900007],[73.51019255800014,71.30974461500006],[73.75137360800011,71.14803021000006],[73.82331062200018,71.04160887300003],[73.99588059700005,70.96806555200004],[74.12890659800007,70.76499668100018],[74.30444359900014,70.70388891800002],[74.42149352400014,70.59592665300005],[74.27852658699999,70.43723476200006],[73.72276265200003,70.15403690800008],[73.86195354200004,70.08449929800014],[73.82253261400012,69.974393109],[73.55293255300018,69.78802719100008],[73.62741062500015,69.6703675660001],[73.79486864500012,69.58234266300002],[73.9061965800002,69.42004018400007],[73.81226360900018,69.20845043700018],[73.89842253300009,69.09672620599997],[74.26640350500003,69.16209197500018],[74.76170357500013,69.13254928700007],[74.98702254400013,69.09136296100007],[75.25002252600012,69.09707740800008],[75.20448264000015,69.17925895100018],[75.52001150600017,69.2536801930001],[76.20984649700011,69.2311337110001],[76.55245963900006,69.12352264700013],[76.78350864500015,69.115442325],[76.91506160900008,69.00638203000017],[77.63884749900006,68.90855298200006],[77.80077363100008,68.68211553200013],[77.74815355100014,68.62970567100007],[77.87339762500017,68.471196841],[78.12912764700008,68.29465820200005],[77.76537350100011,68.24495770700014],[77.51579261000012,68.15196585600017],[77.5164334910001,68.01119514500004],[77.61736250100017,67.96738478100019],[77.48535155000008,67.90093674000013],[77.59642065200018,67.77091012000005],[77.80332960800013,67.79442504700012],[77.99825261100011,67.76658371700012],[78.06678757700007,67.69181194400005],[78.32421862300004,67.69094994900007],[78.41359753900014,67.64555255600004],[78.91929653300014,67.64477438000017],[78.93596663000017,67.59023652100007],[78.566398628,67.53990989800008],[78.24627664600007,67.5671792460002],[77.99550653200004,67.55771775400018],[77.73087358700019,67.58757325500017],[77.53655961400011,67.68322049300019],[77.37557963100011,67.71529602500004],[77.14791859100006,67.8330393010001],[77.31951157200007,67.88637938600004],[77.24623161000011,68.0062737940001],[77.27429958600004,68.19268581200015],[77.37625856500017,68.27042595200004],[77.20990762700018,68.30574394000013],[77.29029058100002,68.38119464700003],[77.26978257800005,68.5649821240001],[76.67806949900012,68.75794744900014],[76.69896659000011,68.90575258800015],[76.57218963400015,68.96927836200007],[76.11369349500012,68.97330620200012],[75.77088958000013,68.90406682000014],[75.36786655200012,68.8865327170002],[74.73697662500018,68.78196579200011],[74.56852752900011,68.72284269700009],[74.47720350900005,68.63223180900019],[74.49510155400009,68.51891334000004],[74.34741258800011,68.35759657200003],[74.65325951800003,68.19817897600007],[74.765502589,67.906056407],[74.76839451300003,67.72541382000009],[74.59087351500006,67.62499727900007],[74.14540050700015,67.49884678600012],[73.92360663099998,67.30102113100008],[73.9925536520002,67.19590603000017],[73.84559659400009,67.01346921300012],[73.4724195120001,66.82446450500015],[73.15373251200003,66.76036624700009],[72.94303158200012,66.66265219900015],[72.6036525130001,66.63197275700009],[72.38156862400007,66.54672528100008],[72.46202064600016,66.36497578100017],[72.235946635,66.2783774770001],[72.49474359600015,66.17297236300004],[73.29567752800006,65.92863703500018],[73.97786755200008,65.6987666930001],[74.41739661800005,65.56186573900015],[75.0343625270001,65.53151436500008],[75.31877156600018,65.60711007900017],[76.39325762600009,65.81218306300008],[76.686561541,65.78122148600005],[77.59718357200006,66.03342390100005],[78.319633554,66.21856019300009],[78.99358349700015,66.12542367000003],[79.89704855700018,65.9319711890002],[80.3800426520001,65.94404062600006],[81.4333265200001,66.26541486400004],[82.06247753800017,66.3446500010001],[82.97139754000017,66.34719793200014],[83.57875058000013,66.3310002390001],[84.08228251700018,66.20956507000005],[84.64459255100013,66.2792934520001],[84.91783857100017,66.39686858700003],[84.97109953100005,66.61443982700018],[84.92671165400009,66.7488986300001],[85.28320355100004,66.79753093500005],[85.45250659600015,66.91577813200018],[85.410789529,67.00949401200012],[85.11588265900008,67.10844506100005],[84.66589364900005,67.29092680500014],[84.75183062000019,67.5374767990001],[85.4052276330001,67.72895366600005],[85.83374053100005,68.14198485300005],[86.43505055400016,68.36447090600018],[87.02424654800012,68.29774056300005],[87.3270416270002,68.21773412400017],[87.65178656300003,68.16489008000013],[87.93018359900015,68.21587267100006],[88.11752366100006,68.3420699350001],[88.26318353600004,68.53595056400019],[88.48314663600001,68.66712969500003],[88.77610052300014,68.72458294800009],[89.21167752100013,68.68226053900014],[89.4589465150001,68.78461430600004],[90.3308865670001,68.64321025800001],[91.15029857200011,68.62891240800008],[91.25453156100008,68.6431872920001],[92.07147258200007,68.64542341600003],[92.38712365600009,68.62891240800008],[92.77825963600009,68.56143389600015],[92.80641159900017,68.4632466060001],[92.32829258600015,68.39418860900014],[91.67601053400006,68.37730376800005],[91.42626954900015,68.40147533200002],[91.10518666600018,68.39795795000015],[90.49285863100005,68.236290316],[92.18753863900014,68.22729452300013],[93.01508360500009,68.23735817100004],[93.24915361600011,68.20452759699998],[93.20175160600007,68.13736977700012],[92.68393657100012,68.00982168600018],[92.58470154300005,67.96414249300017],[92.4399336690002,67.80799115700012],[92.26096360800017,67.73582833500018],[92.13423962500019,67.581331922],[91.99517865500019,67.5273668820002],[91.54524965900004,67.42871389400011],[90.70218660500007,67.36182362400018],[90.64096853700016,67.26899840500016],[90.39787255700014,67.04646088700014],[91.46034952900015,67.29370372900001],[92.3443295140001,67.45822523400011],[92.69915760400016,67.38706287600002],[92.52378052900019,67.28520447900007],[92.23039966900018,67.22273214300009],[92.12931861000004,67.06815191100003],[92.57235751399998,67.05223618600007],[92.9563906690002,67.0735082830002],[93.84942662999998,67.00334488000004],[94.4241866390002,66.9133210600001],[94.7783205400001,66.72462128600012],[94.90334366700006,66.39110049700008],[95.12889867000007,66.11464303400015],[95.27738961700015,65.63514955700009],[95.5285186440002,65.4466869900001],[96.23085055000018,65.14165629000001],[96.6404035830002,64.90664381800008],[97.15969852700016,64.75587282500015],[97.43802666300007,64.74764028800013],[97.24867259700011,64.84450809900017],[97.11624858500005,65.01851238500018],[97.05889155700004,65.21149883300006],[96.61535661200014,65.41428372600006],[95.94479362800007,65.63759154000007],[95.55740352100014,65.84955428100005],[95.4232325530001,66.05521433400008],[95.50464664900005,66.7041201560001],[95.38359855600004,66.90276841200006],[95.10337862400007,67.0577685770001],[94.62959255300012,67.22589061200006],[94.3903425260001,67.22344125200004],[94.17175254900013,67.26516821000007],[94.0850065570001,67.35802310100007],[94.17252351600007,67.41529195200019],[94.49176053700006,67.45667625800002],[94.76019266300005,67.42296072300007],[95.60019665700003,67.27635402800007],[95.96851357600019,67.14769986100009],[95.92014362500004,66.66804662400017],[96.02278153800006,66.33715054400017],[96.37116260300019,66.27694333400018],[96.48023966200003,66.11768734100002],[96.47000854300006,65.93117725500002],[96.75727866100016,65.74142471300019],[97.18331152200017,65.59649741600003],[97.97794360400019,65.54047964799997],[98.42958066400013,65.43259449600009],[98.832527584,65.44396991200017],[98.8229526,65.54627020200019],[98.6597975140001,65.65943561800003],[97.55568662300016,65.88479582600019],[97.1978606620001,65.92911011000018],[96.7737425630001,66.12161694500008],[96.66858655900006,66.27742445500013],[96.96822367200014,66.32127957800003],[97.28903950700004,66.2222606360001],[97.71705653200007,66.33162620000013],[97.93811766100004,66.16856197300018],[97.96241763700016,66.01161804399999],[98.13864866000006,65.9321001020001],[98.6316525920002,65.89318829000018],[98.69174161700005,66.06854390700016],[98.44246666700008,66.25079598700006],[97.92637662700008,66.46799305899998],[97.54358650800003,66.6663982390001],[97.3115006610002,66.9275196690001],[97.26426662500006,67.06952587300003],[97.57541661700014,67.09038524500005],[97.9225385530001,67.0304529610001],[98.09156063700016,66.81211963800001],[98.23493158200012,66.74329147200018],[98.47432661600016,66.51751066100013],[99.0037536050001,66.53598940400008],[99.47128258600014,66.49456738000009],[99.6001126050001,66.42825026500009],[99.91565655900013,66.2035986630001],[99.97292356600008,66.00591868500015],[100.15239754700013,65.88030178500003],[100.5343015310001,65.86936071900016],[100.8265996180001,65.90978311700019],[101.1284026150002,66.01175517200016],[101.11640157300019,66.20931311000015],[100.92739854100017,66.40191197800016],[100.67250067500015,66.48539690700011],[100.40039861600013,66.8024454130001],[99.89375263400012,66.86858768100012],[98.38667252800013,67.09433764700003],[98.2189865200001,67.22533321600014],[98.26419062700012,67.32043143900012],[98.42694053200017,67.34643344400007],[98.92925256700016,67.25554813200006],[99.18657666000007,67.30264638200003],[98.88807663500012,67.48197669700005],[98.61711853900016,67.61334693700013],[98.19323764900014,68.05058019900008],[97.88510162100016,68.0857157960001],[97.48420759700014,68.32782505800014],[97.31326253700013,68.51271039599999],[96.64629354600015,68.74328263900003],[96.55697665600007,68.80432217200018],[96.6222225640002,68.98773514500016],[97.25997961700006,69.08928810500015],[97.81993064700004,69.02750979000012],[98.26097851399999,68.80304678200014],[98.35777256400007,68.6207480990002],[98.66504659700018,68.36933140399998],[99.11276260300008,68.08434200200014],[99.63292658300014,67.892757512],[100.0478975100001,67.90129598900012],[100.18740054200003,67.94047501600005],[100.13289654600015,68.08699705400005],[99.9989396520001,68.21210366400004],[100.14430264000015,68.30607971900014],[100.595901647,68.367881335],[100.36479966800005,68.54173357400009],[100.25070151300008,68.68512849100011],[99.62528966300016,68.82773752200012],[99.05586959700008,69.10687518200001],[98.56302659800019,69.40622261600004],[98.56015059900017,69.62526823300004],[99.00251760900011,69.73857832100015],[99.89555357000012,69.57871849600014],[100.50559954800019,69.5451238280001],[100.82949858300009,69.68811440200017],[101.12370254600006,69.66651440600015],[101.28399655400005,69.7814960120001],[101.30480161100007,70.00413461600016],[100.9248965430001,70.23879018600007],[100.26599865400004,70.26293878500019],[99.66081267200008,70.24084207600004],[99.37905851700009,70.35499957400003],[99.64314261400017,70.48920189100005],[100.21730063500013,70.60294699900004],[100.35520155000012,70.67865754600012],[100.50779761800015,70.83087257200009],[100.51699860100018,71.01066204900013],[100.75789651000014,71.06610146500009],[100.64610254100018,71.26434018100008],[101.05269659500004,71.23485013100009],[101.64009852600014,70.94628232700006],[101.83090266100004,70.67668914000018],[101.7835006520001,70.44344457900002],[101.77639765900011,70.11451506100019],[102.1292035310002,69.91506348400014],[102.04489851700015,69.66783455500001],[102.15309866100017,69.5233863680001],[102.49109656000007,69.46223367900018],[102.73529861500003,69.48294770800015],[103.06340067100012,69.56372561800003],[102.99729964200003,69.67496772300012],[102.80400054900008,69.80350806400014],[102.89099866900006,69.87126099900013],[102.86710354000013,69.9998005010001],[103.06469752000004,70.09075571800014],[103.63539867600008,70.19469768800013],[103.49690264600014,70.32985252400016],[103.21219655200008,70.44255978500019],[103.22460160100019,70.5118466080001],[103.38050064200007,70.5851998280001],[103.05969955800003,70.69116301000014],[102.76889764200013,70.88728797700008],[102.31939662600018,71.08208541900012],[102.35289758400006,71.10336539500014],[102.95379655800019,70.98245543600018],[103.21019763600009,70.98805572000009],[103.3274995210001,71.05924875600004],[103.73719756100007,70.994334772],[104.06960255100006,70.97870922800018],[104.8227006260002,70.89555136100012],[105.36379958300006,70.88240434500017],[105.77510057800009,70.91644141000006],[106.57440154800008,70.83222373500007],[107.276702608,70.77079611900007],[108.10399662000015,70.78221746800011],[108.66799963000017,70.69253663600011],[108.66609962000018,70.60762359800003],[107.96790368100017,70.4822730750002],[107.40750153700014,70.48153328800015],[106.4184036010002,70.44819812400016],[105.89250153800003,70.55957048300019],[105.47389957000019,70.71724900100014],[105.13020365300008,70.75768011700018],[104.902801614,70.6400201570001],[105.03639959500015,70.55886154100017],[104.84110259200008,70.48773673400007],[104.40599866800017,70.39787233900006],[104.3672025260002,70.27431403300005],[104.58860060800009,70.15422114200004],[104.6050036580001,70.04735690500013],[104.23889956100015,69.99558926600008],[103.62370256800011,70.07777785000019],[103.32080053600015,70.01906563500017],[103.52890056100011,69.8603651950001],[103.97499852400011,69.75726342700017],[104.24089864500013,69.56298566400011],[104.5236965150001,69.40806998800014],[105.29799661400011,69.44540181100018],[105.54440260700017,69.62770116500013],[105.317100648,69.892601324],[105.14510365900014,70.14060155500016],[105.45909863700007,70.34314286900019],[105.99710064800001,70.20304388400001],[106.125999567,70.01811965400015],[106.35700264000013,69.86574486800015],[106.21340152700014,69.55880443500007],[106.18189965300013,69.4166455130001],[106.3243026560001,69.33738707500004],[106.51049758300007,69.29671254800019],[106.40869853100008,69.20155296900009],[106.5986026170001,69.10907191100017],[106.86440265800019,69.06462066700004],[107.191497545,69.04653034000006],[107.49949661200009,69.06921378200019],[107.85919961700017,69.14793024700009],[108.04350258000005,69.286473215],[107.9560015460001,69.35727816900004],[107.5995026080002,69.42211554300007],[107.24279764200008,69.4495371070002],[107.81639860200005,69.90264250900015],[107.99469760800014,69.98269421000003],[108.33020055000009,69.84469355100015],[108.78500362200015,69.72551596300008],[109.07550060500017,69.76184866400007],[109.33879864800008,69.97350077100009],[109.68019859400016,69.96576444200008],[110.15509761400011,69.89763733900008],[110.32039662400013,69.90999712600018],[110.77960153700013,70.00853679100015],[110.84329964200003,70.07512967100018],[110.7509996330001,70.19604750900015],[110.10259957500006,70.48681338400007],[109.93599667700016,70.62603444900003],[110.22589854500006,70.69515363400006],[110.82949867100007,70.50723773500005],[111.05760160500012,70.47842008100008],[111.29759963300012,70.51556197100007],[111.65489954600014,70.68293768100017],[111.74259956700013,70.86726763400014],[111.54209857600011,70.887577824],[111.15450260900013,70.83346677100008],[110.70909866700009,70.86021727999997],[110.54370158900014,70.91076535299999],[110.52320062700011,71.00842692999998],[111.57209757500004,71.32343259800012],[111.80149853000012,71.25870871500007],[112.21330260700017,71.21747746300008],[112.41230055600022,71.2454711760002],[112.57969655000022,71.20067593800019],[113.27239966000002,71.26910847800019],[113.56189768800004,71.34605485200012],[114.06459763700002,71.41091703600011],[114.29869866100023,71.41745525600004],[114.26699863900012,71.24930103500009],[114.15930157600008,71.19334378400015],[114.19689960900007,71.04392931900003],[114.5419996620002,71.04776621900004],[114.95369762400014,71.16629655600013],[115.40650161300005,71.0167052330001],[115.72840156400014,71.008891791],[116.37180366000018,71.09079907800015],[116.52760362700019,71.13041983100004],[116.8184965710002,71.06317098400018],[117.25579856500008,70.82589003400011],[117.73100268700023,70.81217925200008],[118.02249862500003,70.83433698000005],[118.3851016010002,70.80181905200016],[118.56510163100029,70.83509939800007],[119.03720059300008,70.81512465300017],[119.5594025490002,70.67697144200008],[119.69300053000029,70.60936351400011],[120.00050355700023,70.60683033500004],[120.97619665000013,70.76199830600012],[121.16390266600013,70.84871965600007],[121.72889658500014,71.19778384600016],[122.1137005400002,71.30488462000005],[122.76180253700034,71.28812148400004],[123.07299762500008,71.25540574299998],[123.22229759300012,71.2839939000001],[123.23410065400014,71.06900059800006],[123.01460258200007,70.92438376600018],[122.99240160200009,70.76404332300018],[123.35269955500019,70.68875220700005],[123.81529964100002,70.73631582000007],[124.33920262100003,70.7355606100001],[124.62860056800025,70.69030822400009],[124.86579853800004,70.58420791400005],[125.25260157700006,70.58361296600003],[125.55030062600008,70.72417731500013],[125.64520254600006,70.82160989900012],[125.9129025960001,70.85595206500011],[126.28469867600006,70.72521516200015],[126.59320065700001,70.68917934900003],[127.3112026980001,70.88401450900017],[127.96260062800002,70.85943893600006],[128.077606542,70.70233290200008],[128.10920765800006,70.57326617700005],[127.6181025630001,70.23633261200013],[127.70649761100003,70.15100098200003],[128.05990563900014,70.02846627500014],[128.06019565300016,69.81592199700009],[128.3383945400003,69.73606844400001],[128.66690060400015,69.77572037800007],[128.89920069200002,69.68970897600008],[128.74740559900022,69.59347416600014],[128.18730168300021,69.36299211300013],[128.07870457100023,69.26832203700008],[128.1179965870001,69.16580750500009],[128.27409360800004,69.04845298100008],[128.19979859700004,68.96409013200014],[127.22250355500012,68.722644549],[126.69239763200005,68.60714460500014],[126.4682995710001,68.49561231900009],[126.57050363700012,68.33254054900016],[126.8504025420001,68.32394876300015],[127.42209661900017,68.47095996900015],[127.97129869600008,68.48485330800008],[128.21150157800014,68.44083725300015],[128.34390262400007,68.2904229940001],[128.074996585,68.21148558300018],[127.82579757400015,68.20115404900014],[127.51629663800009,68.24836796800014],[127.23639655900001,68.22200721800004],[127.55680067600008,68.09362009800003],[127.87940269500018,68.10385909600006],[128.14370757200004,68.06358203999997],[128.170303686,67.9788602770002],[127.81759655300004,67.85410553800011],[127.25389864400017,67.96032051300011],[127.0475006480001,68.02994898200018],[126.77829755500011,68.00956285299998],[126.65110066500017,67.93466870400016],[126.93650061300013,67.74924910300007],[127.63670368300018,67.68901155000015],[127.64920059700012,67.55496362800005],[127.3955995790003,67.4341462050001],[127.11489869300021,67.36968216100018],[126.93840062300012,67.28737958300007],[127.13829761400007,67.13431764900002],[127.16369662500006,66.95462104400008],[126.95110356500004,66.86330741800015],[127.12339760800023,66.63099576200017],[127.33329756300009,66.5304883610001],[127.55799861700007,66.24321992],[127.54750061900006,66.17744360500018],[127.34829764900007,66.06870400200017],[127.0669025750002,65.97913733100006],[127.34929660400019,65.88514686000008],[128.1228026020002,65.97278234000015],[128.44349656500003,65.94961073600012],[128.40429658300013,65.75582214000013],[128.19000266700004,65.69534855300009],[127.74539970000012,65.63713338500008],[127.71040357800018,65.53978462100014],[128.06820657300023,65.47719879400012],[128.319396621,65.3696562940001],[127.82689660900007,65.23379369000008],[127.57430259300008,65.19632373300004],[127.69460268500006,65.11827111500003],[128.2234955790002,64.91763148700016],[128.57189961000006,64.90300489800012],[128.3883055880001,64.55627020600019],[128.55799855900034,64.47020750700011],[128.95930463800028,64.527635949],[129.17329362000032,64.46432491900009],[129.27209463300005,64.363688604],[129.38600168000005,64.40894048800016],[129.44439655600002,64.502809087],[129.85589569900003,64.5399967410001],[129.9617006300001,64.33085786300006],[130.12849463600003,64.34471247900012],[130.51679954500014,64.48655003800008],[130.76890556700005,64.45719879300009],[130.92289755700017,64.35060277700006],[131.2145996900001,64.40563617400011],[131.5162045390001,64.43388151200003],[131.53320354200002,64.35189996100013],[131.41760268000007,64.27876131700009],[131.43069454200008,64.18531198200009],[131.94590766700014,64.26402861400015],[132.02569567400008,64.220775646],[132.01069659400002,64.08821551200003],[132.7810055660001,64.25030995300006],[132.88800056000014,64.08005220900009],[133.33859256500034,64.01902927200007],[133.4860996440001,63.945951984000146],[133.80020157500007,63.99081494800009],[134.06779467200022,64.1148287260001],[134.29789769600006,64.00306727800006],[134.3818966030001,63.83050568500016],[134.79809564700008,63.74292485500018],[135.2601016250003,63.76440549300008],[135.44599966400017,63.66520013700017],[135.6417995820002,63.72470092100008],[135.73919662600008,63.82659552700011],[135.6940005660001,63.992325031000064],[135.59390270500012,64.04806049600012],[135.29479968600003,64.12442717800002],[135.05400068400002,64.38895065500003],[134.84750361400006,64.72428545600008],[134.47390760500014,64.86144591300007],[133.9678035960003,64.92836619000008],[133.67100560200004,65.04388088600012],[133.48989865800002,65.17004646599997],[133.35809356500022,65.31315036400014],[133.38439966600015,65.46995716499998],[133.1219936250002,65.52478503700019],[132.78469863300006,65.44774696500014],[132.79049656300003,65.324717223],[132.92829857200002,65.19844519200012],[132.9550936720001,64.95892359200013],[133.0858005670001,64.77519160300005],[133.0751035820001,64.56889787900008],[132.83210768300012,64.60022557700006],[132.7877955780001,64.76462437000015],[132.66929659000004,64.95777946200013],[132.61920164200012,65.2056543000001],[132.49180559900014,65.43309036900018],[132.42149366900003,65.61390025900016],[132.5881956410002,65.78492980800013],[132.27389556200012,66.05570216100006],[131.7561036610001,66.0418167000002],[131.38439961400002,65.99821236400015],[131.3435976830001,65.92284564300007],[131.75100662500006,65.6065228430001],[131.8302006910002,65.43243473700011],[131.6564946320001,65.25185266800003],[131.2850956870002,65.10136347500014],[130.8636016270001,65.14978992100004],[130.68690457000002,65.31357767300005],[130.73190265000005,65.45926085000008],[131.02549758400005,65.58663174800017],[130.90669265600002,65.70139877800017],[130.56019567500005,65.63762138000004],[130.29949954300002,65.53568737900002],[130.00399755800015,65.534688759],[129.73539762600012,65.71012014900015],[129.64270065000005,65.919053335],[129.94259659700015,66.16458777700012],[129.79110761100003,66.3078289710001],[128.8307036120002,66.27207512400008],[128.97360265600003,66.47164840700009],[129.29580670200016,66.7266041090001],[129.57600366700024,66.84813147900007],[129.60859669800004,67.00379465300006],[129.56359861800013,67.06890779100002],[129.65710461600008,67.2297974170001],[129.4906006230001,67.42665378900011],[129.66799958100012,67.68616572600007],[129.95179757900007,67.88542519000015],[130.00779757700002,68.07858950200006],[130.44659456800014,68.23007865600016],[130.863998594,68.22195323900013],[131.22210669000003,68.37159636200016],[130.89990264400012,68.53412733200014],[131.13110369700007,68.67913911900013],[131.21949757200014,68.91261216999999],[130.81460554700016,69.003246192],[131.1974025390001,69.13819466600006],[131.16209360500022,69.37361282200004],[131.3372036320003,69.51848127800014],[131.3780975970002,69.69155584400016],[131.1537016430001,69.82134643000012],[131.34649664800008,69.95866094700006],[131.9676055650002,70.1606755430002],[132.1976926630001,70.26179348199997],[132.80160560200034,70.27747350800007],[132.950302576,70.38694569000006],[133.30650362200015,70.341579142],[133.8569026350002,70.32521314000019],[134.33889760800002,70.4002065310001],[135.1237025790001,70.28484354800008],[134.98480270800007,70.20212103600005],[135.1116026310001,70.09611208900003],[135.84109458500006,69.97495804900007],[136.25199861300007,69.79288768900005],[135.8861996180001,69.63112751900007],[135.25019857400025,69.48873943600012],[135.16380261000006,69.42203960300003],[135.7115936780002,69.32788736100002],[135.82949855700008,69.09855815500015],[136.0041046650001,68.96747005000003],[136.20899961700002,68.96966745000009],[136.4277035880001,69.06407165200017],[136.43260163700018,69.2210625190001],[136.6300967100002,69.25094098700009],[136.98199465400023,69.25894436300007],[137.10209659800023,69.38263141500005],[136.94900465700005,69.44183162299998],[136.9501036920002,69.5106757150001],[137.11689769800012,69.54268234700015],[137.60200470400002,69.53355696900007],[138.17030360700005,69.56094064700005],[138.63110359600012,69.42864705700015],[138.88800054600017,69.15469075400017],[139.19619759400018,68.99766082700017],[139.35470558600002,68.77480965900014],[139.53849758900003,68.71154322100006],[139.52290356100002,68.48698968800011],[139.67149358200015,68.35288141600012],[139.92629958300006,68.27071613400005],[140.3190006320002,68.09005711900005],[140.4703065570003,68.08173288300014],[140.8211056340001,68.28788998300018],[141.15390055000023,68.34787607900017],[141.3610996880002,68.31586860800013],[141.50660667800003,68.11036697300005],[141.61090068700014,68.09567249100013],[141.89880363900033,68.18028679800011],[142.0928036260002,68.31673060300011],[142.50669865300006,68.44884867600018],[142.57940663400007,68.52842009400007],[142.5196076220003,68.66335348000013],[141.99110364800015,68.84608751900004],[141.641692615,68.86568843200013],[141.17720056500013,68.73122812100002],[140.77220158800003,68.68006246900018],[140.61390666400007,68.72510195500013],[140.59379562800018,68.79206045400014],[140.91659562800032,68.95082945800004],[140.84930470300003,69.05675425100003],[140.727798623,69.09643719800005],[140.23379556900022,68.97609150800014],[140.0563966110002,69.03793922500006],[140.4445037070002,69.23857315300017],[140.26300063400015,69.305745893],[140.04859959700002,69.31019416900017],[139.8065946060002,69.3863397360002],[139.86450165500014,69.4477831100001],[140.50390659000016,69.60642990600002],[140.70829762200003,69.68962482100017],[140.76339757200003,69.77412580500004],[140.9225006790001,69.82815270300006],[141.25639362400022,69.79505374100006],[141.2763066790002,69.66022009900007],[141.13369764900028,69.53433464200003],[141.32179258600002,69.45110100200003],[141.62300063500027,69.68497822900008],[141.76170369900012,69.70827941700014],[141.93370068700006,69.59225325799997],[141.89149462000034,69.31851086100016],[142.01300070000002,69.24668365100013],[142.4150997060001,69.22644873000019],[142.82800265100013,69.43512408900011],[143.24099762800017,69.45763285200007],[143.65879862100007,69.40404063900007],[144.34030166500008,69.38671356900011],[144.83219868200024,69.42470940700014],[145.24760463100006,69.4947896610002],[145.56480367500012,69.47878274100009],[145.89549255400016,69.55762091000014],[146.28239466800028,69.5207854630001],[146.4398036240001,69.39341305700003],[146.8666996530003,69.38011315600016],[147.61059557200008,69.62513781100012],[147.96760563900023,69.65670271700003],[148.77319370700013,69.55143406000013],[149.12759364900012,69.53683814900012],[149.58149767900022,69.60319465900017],[149.9808046730002,69.79188035200013],[150.45829755800003,69.82015586400018],[150.70109564400013,69.770570201],[151.10060162500008,69.74230139500014],[151.7339016850001,69.87420639900012],[152.12669359400024,69.82569546400003],[152.35159262900004,69.70686874300014],[152.60200466900005,69.64457913300004],[153.04060367800014,69.60188188500007],[153.37120069200012,69.5976175080001],[154.23599265600024,69.25715113900003],[154.84550470700003,69.05066580400012],[155.65460160700002,68.92124838000012],[156.8791046230001,68.92832907700006],[158.81889360800005,68.89040113300018],[159.17990066900006,68.81536180900008],[159.71620165700006,68.73707215100006],[159.9821016100001,68.6739891100001],[160.60879572400006,68.58892435899998],[160.92709363600022,68.60511517900011],[161.11610370800008,68.68171856600014],[161.27059961800012,68.81211147500011],[161.80900563700015,68.94101760200016],[161.85249363300022,69.18121897500004],[161.79119861900006,69.43100522200012],[161.4436036090001,69.28137584500013],[161.35760461200016,69.39792905900015],[161.4060055760002,69.49800998800009],[161.1483006100001,69.46338585500013],[161.20899967100002,69.34314728600009],[161.03590364700005,69.33227444900012],[160.97219866800015,69.49151652800003],[161.03169257900015,69.58101429900006],[160.90409872200007,69.63749776500015],[160.53680473100007,69.68587140500011],[160.3020016390002,69.68482634900016],[159.90919464300032,69.78131311900017],[159.72959862100004,69.7342903070001],[159.70350659400026,69.97750631500003],[159.83549458000016,70.07487854900018],[159.74630760900004,70.14190661700013],[159.9897006430001,70.18680009100012],[160.0659027040001,70.34220476700017],[159.83419773100002,70.58278902500018],[159.6145016790001,70.70767401800003],[159.08999671100003,70.8699148070001],[158.21270766400016,71.00948774400001],[157.7324987080002,71.0521006690002],[157.45599363600013,71.05338930300007],[156.21719360800012,71.09262197400017],[155.75399756800005,71.07931603800006],[155.52110270000014,71.00875499800014],[155.37370257400028,71.0614007260001],[154.6257935670002,70.99550186800013],[153.69529770700024,70.86166751700017],[153.4445036200002,70.8701127870001],[153.1246035920003,70.82502116600017],[152.63119464600004,70.81734568900009],[152.27389557100014,70.83940283500004],[152.0791016500001,70.922476883],[152.00689658300018,71.05669395200005],[151.50770563400022,71.31030201200008],[151.01269557700004,71.35968969400011],[150.7068935750001,71.3058684880001],[150.580993701,71.37498733800004],[150.54739366800004,71.50726634300008],[149.98249865600008,71.50010199500008],[149.99940461900007,71.62226320500008],[149.81239363100008,71.66276254900009],[149.50720266800033,71.64532869400011],[149.22450269900025,71.68375200800011],[148.97329655800013,71.67408515900007],[148.89610258200014,71.82520953300019],[149.21119659600004,71.79793297600008],[149.33369459000005,71.87375131300007],[149.63439955800027,71.74392887600004],[149.8054046320001,71.76684902300013],[150.0776827100002,71.86721979900017],[149.89819364100015,72.05531859100017],[149.61369357500007,72.12736809],[149.08419768700003,72.21003008399998],[147.7433925790001,72.31432191400012],[147.34480257200005,72.3170911270002],[147.00819355500016,72.25976863300019],[146.6690065990001,72.09207943900014],[146.54190056900006,71.97108515800011],[146.19979855500003,71.78699945300008],[145.464004584,71.67283407600002],[145.3632966880001,71.62572744500017],[144.92010456300022,71.68841419000006],[145.05949360100033,71.78570243800016],[145.39559970400023,71.8746438180001],[145.76339761600013,71.89516104100011],[145.84120162600016,72.00492323700007],[145.65220664100013,72.05731734000005],[145.78010559900008,72.18161610300012],[145.9568936830002,72.11344289900006],[146.26690658700022,72.07995619000008],[145.99670370000013,71.99730073400008],[146.19889867400002,71.91201470100015],[146.82910162000007,72.23182822900014],[146.82330369000022,72.28008686900017],[146.44410655800016,72.29955836500011],[145.79820263100032,72.30211417500004],[145.04139656900009,72.27060224200011],[144.7079926240001,72.22485348000009],[144.5171967030002,72.25325220600007],[144.85079963400005,72.42207848800007],[145.33459470400032,72.40382085900012],[145.45899958200005,72.33658559000014],[145.7395936820002,72.35377553200016],[146.82220465500006,72.31823626300007],[146.5809015650001,72.40821515500011],[145.47540263100018,72.56698449500004],[144.2409975700001,72.66453224600019],[142.88119471100015,72.71392847800007],[142.10600260900026,72.74896483300006],[141.6607966480002,72.79338556700014],[141.1324006330001,72.90720074799998],[140.67840557600005,72.88494394600019],[140.74110355300024,72.80595221900006],[141.06669657100008,72.627825545],[140.93099959300014,72.5301022770002],[140.67880271100012,72.48764978100019],[140.00799564600015,72.45605403000013],[139.53750567400016,72.45838906000006],[139.2248995780002,72.35051061400003],[139.1309966130001,72.20696968300018],[139.25100669200003,72.13452405600003],[139.50570657800006,72.13778931000002],[139.69900466500007,72.235368074],[139.89930767600003,72.14958499500017],[139.6302946840001,72.04224885700006],[139.65400658500016,71.96858215400016],[139.40640265000013,71.94756956100014],[139.74560569900007,71.85803356800011],[139.76499957900035,71.68577439400013],[139.98219262800023,71.52622654300012],[139.93530258500016,71.47154367700006],[139.56249967200017,71.49169327000004],[139.2158965760001,71.41165665500012],[139.04580663800016,71.60241821100016],[138.75860558600004,71.64524453900015],[138.54130558500003,71.57553057400008],[138.42170756100006,71.62168351200017],[138.15969865500017,71.56922118000011],[138.10879569200006,71.4772656670001],[137.9400936300001,71.39728990600008],[138.27459761600016,71.35391422700019],[138.02879361200007,71.29440891700006],[137.8482967030002,71.2082987760001],[137.6815945620001,71.20877872400007],[137.48260466000033,71.27949315300009],[137.4954987100001,71.34837513000008],[137.1873016620001,71.37684946100018],[137.0740966830001,71.44619697000013],[136.5484926800001,71.55370108100004],[136.43229670300013,71.60176190800013],[135.98680156700016,71.66225846200001],[135.70970154700024,71.6602905580001],[135.26170357400008,71.56163673100008],[134.85079954600008,71.50167410500012],[134.8065037020002,71.38187692700012],[134.52999863000014,71.39125443300009],[134.08830267500002,71.3688993940001],[133.67129561500008,71.41116866100009],[133.20829755600016,71.54936780400004],[133.0066066700001,71.69409896500008],[132.77659567900002,71.76173002700006],[132.73809860400002,71.93060861200001],[132.47250358500003,71.87772668200006],[132.28959654300002,71.74223556400011],[132.21650668300003,71.56438381600009],[131.98019367500012,71.32936095100007],[131.98730454600002,71.24745534000004],[131.80960065500005,71.18862846100018],[131.67869561100008,70.98504929900008],[131.33459468100023,70.78964886400018],[131.05380260100014,70.76869662000013],[130.941894638,70.89539143400009],[130.23420770200016,70.95407984400015],[130.33940159300005,71.02522795200014],[130.13729865200014,71.09324776699998],[130.0027005420003,71.06678039900015],[129.76620464100006,71.11978420200012],[129.76220664100003,71.25143037400017],[129.42050159400003,71.39481003600002],[129.22610463900003,71.59855767400006],[128.87440467600004,71.72174952200004],[129.53540055500002,71.7538932830002],[129.09140058200023,71.98591023000017],[129.09240758400006,71.80541047100019],[128.8097996480002,71.79008935800005],[128.66479456700006,71.82692631400005],[128.41709859900016,72.02780583200007],[127.81629953700008,72.30021433300004],[127.02915953500019,72.40124845300011],[126.72303767900007,72.39430605800004],[126.88581859700025,72.29763505400007],[126.91526757600002,72.17317770500006],[127.04721063400007,72.00568649300016],[127.31886258400004,71.90900023400008],[127.13303361200008,71.84371945700013],[126.79942363900011,72.01818391000012],[126.77361257400003,72.11456523600015],[126.40054361900013,72.34124794000013],[126.11775161600008,72.26569732000019],[125.88220253500003,72.33097843200005],[125.67165365300002,72.33596734100007],[125.23081969300017,72.46153981800018],[125.16638163300001,72.52015245500007],[124.72971364600028,72.62515523800016],[124.34304756700021,72.63960630999998],[124.10887160900018,72.71016651200017],[123.7877736390003,72.75516828000002],[123.34387156600008,72.726265131],[122.65358764100017,72.81098756400019],[122.37415359700003,72.86905085100011],[122.05330658100013,72.89073567300005],[121.88723760900018,72.96426390700015],[120.89219656900002,72.95536769000012],[119.92469762400003,73.01673445300014],[119.65969855800006,72.9770055730001],[119.34570358000008,73.06136205300015],[118.33149765400026,73.23817578600017],[118.43009968100012,73.36803678000007],[118.31249956700003,73.41860698100015],[118.95939658300006,73.42048419200012],[118.97309864700003,73.46041205800009],[118.45010359600008,73.55110056300009],[118.15609761300004,73.57306701600015],[117.22350359500001,73.59431614700014],[116.6257015660002,73.6466874510001],[115.53040357600014,73.69851711700005],[115.19750254500002,73.6768101670001],[114.80999760500026,73.58454988800008],[114.23319962000005,73.58120752100018],[113.6043015680001,73.52438777200013],[113.64550063400009,73.43775862400014],[114.02690153700007,73.31158332100011],[113.56359854400011,73.32169290200017],[113.2785035300002,73.46331119100006],[113.5112996590002,73.62164618000003],[113.25859868900022,73.85964478900007],[112.94750267600023,73.96141232500008],[112.79579961600018,73.96253348900012],[112.97499867100021,73.7953170350001],[112.86509666500001,73.72472548400003],[112.44889862700006,73.68198280700017],[111.90229762100017,73.7257028140001],[111.44129965200011,73.79280699000014],[111.22630266200014,73.87972632000009],[111.28990152600005,73.96409755200011],[111.20010368200013,74.03021081900016],[110.85800166800004,73.91907348799998],[110.35279854700013,74.01113545200008],[109.93080157300017,73.94967749300008],[109.51719656100005,73.75294115000014],[109.63050061300015,73.67934384900013],[110.38780254800008,73.70082113500007],[110.72339668500007,73.78171303800008],[110.76899759100013,73.6687378920002],[110.157699525,73.56366604100009],[110.14060262100008,73.51218791200017],[109.62329854700005,73.45851992700011],[109.26069657700015,73.44457193800008],[109.18499759800017,73.3642446390001],[108.88839758300014,73.32899488000004],[108.41940260700005,73.34330027500016],[108.22949952700014,73.32140305500008],[108.10659752400005,73.228211547],[107.83640268400018,73.18715597900018],[107.09860258800006,73.18271474400012],[106.82649952400004,73.162250998],[106.45279656100018,73.19849367700016],[106.20629853500009,73.14767017499997],[106.28649859600017,72.97962273900015],[106.00180054900017,72.94419796600016],[105.9634015420001,72.88761425200016],[105.52320058300006,72.79451461000002],[105.20010352900016,72.82392067300015],[105.63359863000011,72.91783621000013],[105.93070256400017,73.14433602100019],[106.16310155900015,73.28222369300005],[106.44309953800013,73.32492831600018],[107.00050364300012,73.35179315400006],[107.04329661100019,73.44424370200011],[107.22709666100013,73.54680416700006],[107.18890368100017,73.60582215300019],[107.6038965690002,73.63215976900017],[107.85959658400009,73.58749495400019],[108.34950256400003,73.69680771200012],[108.86319755900018,73.92745153600009],[109.09230062100005,73.98745288700013],[109.62590062500004,74.0747918150002],[109.94960067300008,74.20652197300006],[110.01599859000004,74.38155891100001],[110.38960264600018,74.43085506200003],[110.43759960300014,74.49416827100004],[110.71759758200011,74.50368273700013],[111.0595016150001,74.55718341900013],[111.05280263000014,74.61204984900013],[111.50189963800005,74.7003582280002],[111.84819763300015,74.6653979800002],[112.22889663500007,74.88358260800015],[112.72650156100008,74.93106357500005],[113.6961975700001,75.29267363100007],[113.74520152900004,75.48056036100013],[113.39830054000004,75.49920054000006],[113.28559864300007,75.60409603500017],[113.65679960700004,75.58065671300005],[113.95050065700002,75.81032454800015],[113.8637995910002,75.89570362000006],[113.65460153700008,75.89956365400008],[113.42169962800017,76.07292270200014],[113.37539665400016,76.23273843800013],[113.1126025320001,76.19113301800007],[113.0025025450002,76.06851298300006],[112.58879862600008,76.24227587100012],[112.77940360800017,76.2659740260001],[112.79840068800013,76.36739019300006],[112.1602015740001,76.50687277300011],[111.98650356200011,76.58774238100011],[111.70680263800011,76.62493070600016],[111.68460065300013,76.70297645000011],[111.342201584,76.69575141700011],[111.1445995580001,76.75482891500002],[110.5831986250002,76.75184629900019],[109.92839864900014,76.6711753420002],[109.5506975190001,76.77903199600001],[109.23539764600008,76.73918845100019],[108.01020060900004,76.75614906500005],[108.14050265800012,76.63653561800004],[107.68389865000012,76.52705421700011],[107.15630360900002,76.54514420800007],[106.67069955700003,76.525070052],[106.88790165900019,76.70721098800016],[107.59249852200008,76.937764287],[107.32450057800014,77.03525219200003],[106.83170368000009,77.06941045900004],[106.67819951700011,77.02260892900011],[106.20760359700006,77.07674278000019],[105.88600153900006,77.00807420600017],[105.71970357400005,77.04750452200005],[105.75299867300004,77.1369198160001],[105.0328976360002,77.0894851170001],[104.60320255400012,77.09327692200009],[104.50930059600006,77.13794324600008],[105.06240059400005,77.1789753440001],[105.63770257700014,77.27972950900016],[105.85939754600014,77.3544793210001],[106.26540352500012,77.37831510700016],[105.91999853900012,77.55504686500007],[105.42469763000008,77.55032383000014],[105.09909857800011,77.58864907700013],[104.841697539,77.69745841800005],[104.56729867200005,77.66586350400013],[104.43849966600004,77.75779672100009],[104.18489864700013,77.73994209400007],[103.7125016240002,77.64563629500009],[103.29409763700005,77.6362680100001],[102.42459856300019,77.37898633000003],[102.0850986270001,77.33133772500008],[101.53340159200013,77.10497386800012],[101.42240155700017,77.00503006600019],[101.07659960300015,76.920367983],[101.29460167300005,76.68969264300011],[101.29599759500013,76.53889549900003],[101.97959862900018,76.45944578500013],[101.91459663500018,76.40603613100018],[100.99279767000007,76.52217092000012],[100.53279865600018,76.45879736100011],[100.36009959900008,76.51287823900014],[99.98657953000009,76.48792849799997],[98.86662265100011,76.49973122400007],[99.06202660700006,76.34973505500017],[99.34916663800016,76.33267503200017],[99.97569261100017,76.08947930800008],[99.58164962000006,76.08191849600013],[99.57998665000014,76.14293456000007],[99.32393660700006,76.21415274200012],[98.369499517,76.15597311300019],[97.81813055000003,76.08004849300005],[97.37950857400017,75.92507833500002],[97.14803360000013,75.96933126400006],[96.93215164900005,75.8626041550001],[96.57312053700008,75.98746752300008],[96.31060754400016,75.91911159400007],[95.75243364400012,75.86375616400011],[96.28780357000016,76.08059851400003],[95.7255015840002,76.140279341],[95.2568125470001,76.10338890800011],[95.06118060300014,76.15368518900004],[94.58785251900014,76.13350424800012],[93.9250565420001,76.13330610000008],[94.11486054900001,76.03315526500018],[93.69450357800014,76.02691359700015],[93.44006353100008,75.92677935900008],[94.2194596600001,75.88421991000007],[93.12896751800014,75.79240940400007],[92.05956256800016,75.7361157040001],[91.78205166700008,75.74171582100007],[91.50509665500005,75.65663581600012],[90.9818265090002,75.67847167900004],[90.63276650900008,75.60782732300015],[90.33007050400005,75.60730831500001],[90.15998056600006,75.52084563100016],[89.60031854400006,75.46922216000019],[89.37464150000017,75.49981040699998],[88.15197764200019,75.13134043400004],[87.47576156700018,75.17431210500001],[87.35072352100013,75.10214073400005],[87.35408751400007,74.94161538500003],[87.19795260700005,74.87858481500007],[87.01435053800003,74.65287022000018],[86.72502165700001,74.68820396500007],[86.67135652200005,74.74378721500005],[86.33244365399997,74.76878288900019],[85.88141662900017,74.74997574200006],[85.76992759400008,74.68828107900003],[86.37337449900008,74.64282886800015],[86.85484359100008,74.57836348300003],[86.93166356600011,74.49102539300003],[87.21176950300014,74.49911258800012],[87.33627362300007,74.3960708350001],[87.12223854000018,74.32959982800014],[86.77559655200014,74.36154560800014],[86.70291857800004,74.44532222700008],[86.47132860500005,74.49442827800016],[86.15618161800006,74.45794218800017],[85.88226353599998,74.35360358700018],[86.45172853000008,74.30645035300012],[86.68855249900008,74.26510359800005],[86.77857950300012,74.15317367400013],[86.94058258100011,74.10734042200005],[87.33280150299998,74.09264577200014],[87.43013752700017,74.00649724200014],[87.04305252100016,74.0326286630002],[87.17236366200012,73.87897094300007],[87.40415161600009,73.81509430300008],[87.38847360100004,73.70459835600008],[87.14312758400018,73.59952667300013],[86.43068660000006,73.54682713300019],[86.09224664000004,73.4968061140001],[86.02047759900012,73.54727036800017],[86.20845753600014,73.6139854560002],[86.72682963300008,73.71811836500007],[87.02268952600008,73.80104740700011],[86.8002626490001,73.88355618000008],[86.07704957900006,73.85158022500019],[85.57969661300012,73.78761859200017],[85.51336659000009,73.7246111550001],[85.0593336460002,73.69142921200006],[84.78543853100012,73.75051492400013],[83.14119763200006,73.6558889370001],[81.91783857800016,73.6573842680001],[81.14234958900016,73.60436386900017],[80.54680665100011,73.59821473800002],[80.55959358000001,73.48681840600005],[80.47003160300017,73.347940161],[80.59535949600007,73.23546004900004],[80.62127650800005,73.05801968499998],[80.82272364900001,72.92986105600016],[80.64222757800019,72.77160217400018],[80.75773657400009,72.62843541200016],[80.69320664800006,72.52914808100007],[80.8385396290002,72.45259766800012],[81.52454358700015,72.34948835700004],[82.0813825850002,72.31222425900006],[82.1911315370001,72.32512585200004],[82.3742216390001,72.19560080500008],[82.2303776190002,72.10157798000006],[82.74401058800015,71.9074064990001],[83.05760155899998,71.91098456500004],[83.43556252800016,71.84535292200002],[83.74826853700011,71.63376921100013],[83.67214157800004,71.53892244400015],[83.44116264500013,71.48320894000005],[83.36984254000004,71.35519531700015],[83.18456258100014,71.273098431],[83.26275651800017,71.18702634400006],[83.11839265300011,71.12670480400004],[83.33740960300014,71.04869728100016],[83.52433057100006,70.93476860900006],[83.80812856900013,70.5036672120001],[83.50734766100015,70.35232977100003],[82.95700849400009,70.36013516600002],[83.12021655500007,70.22996957400017],[83.15218362500019,70.14385172200002],[83.41226150800009,70.07020161500009],[83.68866750600012,69.93877018799998],[83.72396051500004,69.87171077200009],[83.97663851800013,69.75292260700019],[84.4544064970001,69.7190764820001],[84.46040358100015,69.59801380500011],[84.24297366000008,69.59454252300014],[83.8983996550001,69.71651212300009],[83.48384061400003,69.75074783900004],[83.33696754200008,69.84901995400008],[83.39337154800012,69.89084699199998],[83.29210659000017,70.00043450900017],[83.13076752700016,70.07154339000016],[82.71777355500012,70.13463498100015],[82.61466256700015,70.22904639200016],[82.67252351500014,70.30856500400012],[82.94819660000019,70.50027220600003],[82.93509652300014,70.60296208700004],[83.08130658700009,70.88632674100018],[82.80333753100001,70.99953037800003],[82.50126664900012,70.93199855800015],[82.40524256000003,70.66329854600014],[82.29525757300001,70.70182881400012],[82.30108651700004,70.862071357],[82.11139650400008,71.01231797700018],[82.29955262800007,71.13721839300018],[82.19286357400017,71.26887948400008],[82.728469534,71.39015539700011],[83.00845359900012,71.41026039800016],[82.96634660500013,71.55116840500006],[83.28415652300004,71.59624561000004],[83.41323062300006,71.65121899200005],[83.346610586,71.73822214100011],[82.79759961600018,71.78570981400003],[81.98680152500009,71.67497045600004],[81.78132654400008,71.6715905370001],[81.3695836550001,71.74605771200015],[81.13596358500007,71.9151047740001],[80.70802250000008,72.08491492400003],[80.64395156799998,72.17645100600004],[80.00517259400004,72.25831085200008],[79.51924852000019,72.39535899200013],[78.70581063300017,72.43099029500019],[78.12481649900008,72.40494168700013],[77.5310215230001,72.19338848600012],[77.60999262900003,72.11081869300006],[77.86460852900018,72.15359942400005],[78.09024852400012,72.14382461600007],[78.26378661000007,72.07134948400005],[78.21611051200011,71.97142026700004],[77.78061649500012,71.87526944400014],[77.54107662100017,71.89828095300015],[77.28373760900018,72.01400318500015],[76.79743148900019,72.09266684300007],[76.32084653200008,72.03406225200007],[76.0473936460001,71.92559556400005],[76.03724651400006,71.79032623100017],[76.2547305830002,71.6018613170001],[76.499076639,71.52357115600006],[76.92375163100002,71.43618629500003],[77.1729436010001,71.41169487700006],[77.37355054,71.33558719600018],[77.52736651000009,71.35331140100004],[77.92569751600018,71.26151698800004],[78.33936354800005,71.28812936300005],[78.43987262600018,71.23479715700017],[78.34838851100005,71.10766061700008],[78.49548353600017,70.94985217900006],[78.85118854100017,70.98114215900011],[78.96260063000017,70.92524626400012],[78.49031056100011,70.91126810000014],[78.06139365500019,70.98480471500011],[77.97016854100008,71.10723364300009],[77.44082654500016,71.18377634500018],[77.23869359700018,71.19068856500013],[76.93849154300017,71.13653962700016]]],[[[119.73570263900001,73.06397921800004],[120.28399662200002,73.01704726600019],[120.22429668400025,73.13926999900008],[119.74800056700008,73.15267601500011],[119.73570263900001,73.06397921800004]]],[[[122.15609754700006,57.325196463000054],[122.02729753500023,57.29128613200015],[121.92240153700016,57.209401644000195],[121.89679767300004,57.121229890000166],[121.947303669,57.053474775000154],[122.12010163200011,56.997591285],[122.49349966100021,56.921973778000165],[122.77700060400025,56.839513285000066],[123.02020253100022,56.74064857000019],[123.19899757800022,56.61918473400016],[123.43840065900008,56.53115111400018],[123.9507976320001,56.46467021600017],[124.21549964400003,56.361678252000104],[124.31839756300008,56.22984248200004],[124.33229861500024,56.116534238000156],[124.43129760800002,56.118510188000016],[124.65280163800003,56.29994654000012],[124.71829967300027,56.43542927700008],[124.71289854200006,56.559064193000154],[124.64689658700001,56.74736666500013],[124.43969761600033,56.93693229000007],[124.05519859500032,56.90346519500008],[123.90920260500013,57.016215707000185],[123.47869867000009,57.17387058800006],[123.27629867500025,57.34383597100003],[123.09490154900004,57.390937406000035],[122.72530354000014,57.38101893200002],[122.49739858700002,57.3115468690001],[122.27429964900011,57.30326454200002],[122.15609754700006,57.325196463000054]]],[[[123.55774655500022,72.78321496600017],[123.1874766520001,72.86683786100019],[122.72331267000004,72.88212896700009],[122.68193054400001,72.83212286800011],[123.55774655500022,72.78321496600017]]],[[[124.56788999800006,-15.26844000099993],[124.5047399980001,-15.281180000999882],[124.4609699990001,-15.36902000099991],[124.62529999800006,-15.374750000999938],[124.56788999800006,-15.26844000099993]]],[[[125.18422999800009,-14.460650001999966],[125.11973999800011,-14.49518000199987],[125.1003399980001,-14.632590001999915],[125.21076999800005,-14.607210001999817],[125.18422999800009,-14.460650001999966]]],[[[124.96430165800007,57.77795083000012],[124.79009955900005,57.75165881200007],[124.61589863200004,57.598153810000156],[124.78199761100007,57.46901097800014],[125.21589655200023,57.43597873600015],[125.42189758100005,57.44662207700014],[125.61370067200005,57.56009376700007],[125.53980262800007,57.65114571100003],[125.23509966000017,57.76847844200012],[124.96430165800007,57.77795083000012]]],[[[126.25599669200005,73.40608676400012],[126.4578015730001,73.49413597500006],[126.31990065700006,73.5652386540001],[125.96779668600004,73.52199960100012],[125.63899960200001,73.41422777200012],[125.62519863100022,73.57820093200019],[125.38289658500003,73.55605158500015],[125.19779968800003,73.59308015100004],[125.2573016450001,73.68650836500012],[124.96569858600003,73.67716841000015],[124.27120158100001,73.81205686900012],[123.98349761600002,73.64811388400011],[123.38729854200005,73.65962760100018],[123.35399657000028,73.55132184500013],[123.4897996630001,73.47194773600012],[123.21790363200023,73.43986432500003],[123.65039860400032,73.20602397900007],[123.37049869400005,73.15264550500007],[123.45999864400017,73.070265813],[123.28410356800009,72.9443496790002],[123.08509857800004,72.91276314700008],[122.73269654600006,73.01117272500005],[122.51361069600011,72.94821792700014],[122.97026063700002,72.88962138300002],[123.25166359100012,72.8868442910001],[123.67025768000019,72.79627782699998],[124.16693154400002,72.75127673000009],[124.47331256900031,72.66460164800009],[124.76499961400009,72.6696061470002],[124.90054353800019,72.59710754600013],[125.15609754000013,72.55903375700018],[125.29443364400015,72.4801409370001],[125.7241516920003,72.36403028800004],[126.16581764000034,72.3006875750001],[126.3830415340002,72.38847677900014],[126.24803153700009,72.53043721800009],[126.27332258900014,72.70461216000018],[126.38165265300006,72.79766570200019],[126.3299866020003,72.92572542500017],[126.56553668900006,72.98461315600014],[126.71499658400023,73.0832366410001],[126.55609162500002,73.23380462300003],[126.49665856700017,73.36833400200015],[126.25599669200005,73.40608676400012]]],[[[126.15799766000009,58.18428286600016],[126.2596966320001,58.32134944600011],[126.23130058800018,58.40760660600006],[126.1242975470002,58.47468278600007],[125.87719770000012,58.55132623800017],[125.69950068200012,58.549506360000066],[125.53610268800003,58.46550359600013],[125.46759756100016,58.320998746999976],[125.64880357900006,58.18322188400015],[126.04940054900021,58.14074072300019],[126.15799766000009,58.18428286600016]]],[[[130.37821999500022,-11.40089000599994],[130.33708999500004,-11.318290005999927],[130.25118999500023,-11.346610005999935],[130.1786999950001,-11.433820005999905],[130.19935999500012,-11.508710005999944],[130.19646999500026,-11.654440005999902],[130.15650999500008,-11.704890005999971],[130.06900999500021,-11.686460004999901],[130.04949999500013,-11.823960004999947],[130.1335399950001,-11.823360004999927],[130.31110999500004,-11.770950005999964],[130.51115999500018,-11.83035000599989],[130.6057499950001,-11.826960005999979],[130.639199995,-11.7661800059999],[130.48503999500008,-11.66969000599994],[130.46501999500026,-11.577200005999941],[130.37620999500018,-11.507550005999917],[130.37821999500022,-11.40089000599994]]],[[[130.44973999500007,-11.212740005999876],[130.36532999500002,-11.257900005999943],[130.42668999500017,-11.427290005999907],[130.43171999500032,-11.499250005999897],[130.4934999950002,-11.566440005999937],[130.4940399950001,-11.65663000599983],[130.5572599950001,-11.674250005999966],[130.6859899950001,-11.795800005999922],[130.85295999500033,-11.850390005999884],[130.965569995,-11.938570005999907],[131.08231999500015,-11.835700005999911],[131.28129999400005,-11.740020005999895],[131.38579999400008,-11.58845000599996],[131.4552799940002,-11.547360005999906],[131.53813999400006,-11.415550005999933],[131.43313999400016,-11.310510005999959],[131.25175999400005,-11.192650005999951],[131.0404699940002,-11.318570005999845],[130.90978999400022,-11.310930005999978],[130.85158999400005,-11.353220005999844],[130.65722999500008,-11.400010005999945],[130.60319999500018,-11.321660005999888],[130.49815999500015,-11.268920005999973],[130.44973999500007,-11.212740005999876]]],[[[132.58560999400004,-11.02800000699989],[132.4767599940002,-11.159180006999975],[132.544689994,-11.254840006999927],[132.61961999400012,-11.28679000699998],[132.58560999400004,-11.02800000699989]]],[[[131.76803563500005,43.46504078300012],[131.72964467400016,43.40876585799998],[131.80740359000015,43.33329319000012],[131.99363657100002,43.31759539400019],[132.13723768300008,43.479139647000125],[132.4161076250001,43.97252713400013],[132.563003664,44.17634970600011],[132.8589016100001,44.44551809800009],[133.01629665300015,44.62145894000008],[133.33329754900012,44.933317706000025],[133.45179754300023,45.175539789000084],[133.5592035860002,45.45259002000006],[133.88830560300005,45.76922563200003],[134.2634886420002,46.06784954100016],[134.20297264200008,46.228230888000155],[134.11958360200015,46.34288928900014],[133.72348067400003,46.32204215500008],[133.51499960800027,46.3637372610001],[133.43160956200006,46.35331520300019],[133.21272269800033,46.2178049740001],[132.92085259200007,46.16568881500018],[132.68110669100008,46.06144828200013],[132.52474966300008,45.94678904300008],[132.1916355640002,45.838977819000036],[131.99348469100005,45.86773277600008],[131.70429964300013,45.813785841000026],[131.68969769700004,45.73072855700002],[131.60819961400023,45.62260854400017],[131.50016761100017,45.54744734700006],[131.26872264500014,45.459602152000116],[131.1545255840001,45.38219007900011],[131.04153468000004,45.34936503800009],[130.7539976820002,45.32440909500019],[130.70817566100004,45.26160785300016],[130.90338163700028,45.20690101500003],[130.94061254200017,45.092528940000136],[131.12326058300005,45.12609795900005],[131.30967763000012,45.23291274200011],[131.4656376910002,45.27186881100005],[131.6533205730001,45.27585490900003],[131.81970269200008,45.02553087900009],[131.79969760400002,44.920397841000124],[131.87840266900014,44.67116077600019],[131.75270060800017,44.300590299000135],[131.8533325640003,44.087711751000086],[131.84790058800013,43.876137427000174],[131.8173215610002,43.779316554000104],[131.8296506700002,43.657464134000065],[131.76803563500005,43.46504078300012]]],[[[133.10847462100003,46.45755171300016],[133.30653362900023,46.48882174400012],[133.50457754900015,46.582636195000134],[133.67135663600027,46.738989870000125],[133.89025858700018,47.218481671],[133.98406968500012,47.34356632099997],[134.14042654600007,47.41653363800009],[134.2655026460002,47.41653363800009],[134.70330755400016,47.34356632099997],[134.9221955910001,47.34356632099997],[135.09756462000007,47.40481171400012],[135.35499566500005,47.554973677000135],[135.59095763900018,47.941104320000136],[135.8054805490002,48.370143098000085],[135.97709666400021,48.927895388000195],[135.6338656070002,49.07805902800004],[134.947402656,48.927895388000195],[134.7135616390001,48.74907150700017],[134.53820769800006,48.690619132000165],[134.30503857500014,48.675073886],[134.14959768900007,48.581807108000135],[133.5900116060002,48.50408607900016],[133.434554627,48.50408607900016],[132.6107176480001,48.34863999600009],[132.33360254100012,48.317175673000065],[132.19670058100007,48.345453867000174],[132.0274045770003,48.33431465300009],[131.72038267100004,48.23364095500017],[131.63142368900003,48.13102081200009],[131.24281267300023,47.86676689700016],[131.10403467600008,47.73788993900013],[130.92367556500005,47.6458561390001],[130.8673855530002,47.552044537000086],[130.7735746220003,47.51034926300002],[130.62763965300007,47.58331389800014],[130.5129856110001,47.53119639700009],[130.38789358500003,47.33314426200019],[130.15858466300017,47.10382176200011],[130.02307158400004,46.89534773600019],[129.87713661500004,46.7285688180001],[129.6373905470001,46.593058421000194],[129.50503560200002,46.46705075600016],[129.68331868300004,46.44228172900006],[130.04425064200007,46.4977669110001],[130.2419737030001,46.67644779700015],[130.58595259300023,46.69729593700009],[130.69018558200003,46.6556004950001],[130.8673855530002,46.540942094000116],[131.00289963800003,46.47839968500011],[131.21136461100002,46.44712680500004],[131.49281265900015,46.44712680500004],[131.5553585880001,46.41585761200014],[131.53449955100018,46.2178049740001],[131.77424662500005,46.35331520300019],[132.09738156600008,46.4054315300001],[132.26416065200021,46.4054315300001],[132.54560870000034,46.3637372610001],[132.74238561200002,46.40746447700019],[133.10847462100003,46.45755171300016]]],[[[129.2834926810001,50.45604709600019],[129.26860055300006,50.58281215000011],[129.30949368000017,50.880175420000114],[129.18040465900015,50.93104519100007],[128.89880355800017,50.990655275],[128.7247007000002,51.05343807600019],[128.72340368400035,51.130938494000134],[128.78990168000018,51.213009732000046],[129.06329354600007,51.413951947000044],[129.1806946730003,51.57078473100012],[129.20979261800028,51.72458444000006],[129.06649761200015,51.794939621000026],[128.66029365300017,51.749768707000044],[128.26119955900015,51.55977459800016],[128.077499589,51.490975267000124],[127.93469961900007,51.51044659500019],[127.79949968800008,51.65358804400017],[127.63909956600003,51.71011911900018],[127.34429964900016,51.633575915],[127.23989868600017,51.63841596100008],[127.18840060800017,51.712659170999984],[127.21730057200034,51.87708294300006],[127.16179661500007,51.924733895000145],[126.77980059800007,51.90649168800002],[126.68080160400018,51.75504897000019],[126.73027059100002,51.64207482900014],[126.68193064600007,51.56513063500006],[126.80246761100011,51.53485704400009],[126.9716496210001,51.288744083000154],[126.89887961400007,51.17346223600015],[126.94109356100012,51.045400166000036],[127.072715592,50.94176128600009],[127.18129761600005,50.56173484900012],[127.22347267000032,50.18211023900005],[127.22347267000032,49.92967715500009],[127.3754576980001,49.77230709000003],[127.594352608,49.62637413200008],[127.94876059700016,49.532562196000185],[128.28231759600033,49.522135946000105],[128.45951857300008,49.574257638],[128.79307557200002,49.55340933000008],[128.7409666210002,49.49086658600015],[128.82435566100014,49.31366041200005],[128.94943260000002,49.209423399000116],[129.00061065700015,49.127928502000145],[129.44976767900005,48.92797937500012],[129.8875576680001,48.87586187400012],[130.10646062500007,48.823741356000085],[130.3566285830001,48.83416743800018],[130.4191746800002,48.87586187400012],[130.63807663100022,48.84458949600008],[130.78399668100008,48.92798339800004],[130.8882445900001,49.15730573100018],[130.8882445900001,49.298379532000126],[130.7346956670002,49.565578512000116],[130.41870160600013,49.64387655200011],[130.28379856200013,49.74048871499997],[130.28810166300002,49.99769395200002],[130.14050255100005,50.163334273000146],[129.95629866100012,50.22462995800004],[129.68179367900018,50.2648674510001],[129.3529055680001,50.358076897000046],[129.2834926810001,50.45604709600019]]],[[[133.941406636,50.33546738400014],[134.0287016430001,50.23228917300003],[134.18049656900018,50.1864855930001],[134.32910167800014,50.22139806300004],[134.4920956640002,50.21264366800017],[134.77969368200024,50.1314738210001],[135.00100660400005,50.33442149000007],[135.09550468300006,50.36382604400012],[135.03759763400012,50.534459465],[134.968994607,50.59821238800015],[134.82949861500003,50.64461091600015],[134.5296936960001,50.554586594000114],[134.3807985740001,50.54147126200013],[133.98699966400034,50.53872048900013],[133.90910362000022,50.45679928800007],[133.941406636,50.33546738400014]]],[[[133.27969360200018,51.06988739400015],[133.31689466700004,51.03604696800011],[133.86669957200013,51.096407903000056],[134.84840366300023,51.26789946300016],[135.048797701,51.29667118400016],[135.05000268300023,51.5525344780001],[134.8334956100001,51.60014603500014],[134.62739567500012,51.610736235000104],[134.40559358500002,51.58346487400007],[134.2089995660001,51.52525507100012],[133.99259961300015,51.419464054],[133.7664945900001,51.27066180300011],[133.55830370500007,51.17046000600004],[133.27969360200018,51.06988739400015]]],[[[134.27720663300022,52.20451595600019],[134.36700464400008,52.14722581500007],[134.32659867400014,51.99679412200015],[134.43200663800008,51.9719218300001],[134.6333005580001,52.02473385500008],[135.06790156700004,52.08659381000007],[135.09970066400012,52.169626284000174],[134.9900965510002,52.33218541700006],[135.06779461400004,52.406881753000164],[135.30830360300013,52.5509846060001],[135.3538056030003,52.765416991000166],[135.1782986080001,52.90432876400013],[135.26539563500012,53.00162069900006],[135.42300458400007,53.096150630000125],[135.45080568000014,53.16261526599999],[135.3471986510001,53.25100796800007],[135.12030070000014,53.38506276300012],[134.9826046380001,53.556815670000105],[135.13049359700017,53.74443082700009],[135.13859554400005,53.81838050300007],[135.0690006020002,53.888511216000154],[135.11259454600008,53.98924442600003],[135.5796965520001,54.208770492999975],[135.58450357400022,54.27126797500006],[135.41639662600005,54.307672089],[134.9579926880001,54.21578564300012],[134.55589267600033,54.25732082400009],[134.51370270200005,54.169599513000094],[134.6520996580001,54.02995549700006],[134.5455016310001,53.88335701600005],[134.44270362300006,53.79918007700019],[134.48319961500033,53.70561909400004],[134.61839267200014,53.625356001],[134.6235966610002,53.53446499000012],[134.44279465000022,53.375361548000114],[134.39050263900015,53.253308129],[134.56289659400022,53.04665364800013],[134.56179755900018,52.96579191900014],[134.35780366100005,52.79917762100018],[134.1876066020002,52.78122928400006],[134.0522006440001,52.89070934500006],[133.94389354700002,52.88872953900005],[133.9402006480001,52.74706850200016],[133.74510162600018,52.67801704300018],[133.60029569900018,52.70143557700004],[133.3764956990001,52.83853836800006],[133.21440159300005,52.766217966000056],[133.23210165800003,52.5763033180001],[133.34919768400005,52.486351415000115],[133.53390465500013,52.4243803170001],[133.69659454600003,52.412126980000096],[133.75900267700013,52.36928020000016],[133.51229862300033,52.217108256000074],[133.41580162800005,52.04792406700017],[133.63099659800002,51.991602036000074],[134.1269985690002,52.192506700000024],[134.27720663300022,52.20451595600019]]],[[[132.05670167500034,55.42167228500011],[132.4353026870001,55.483002838],[132.83110068100018,55.480343763],[133.08920261400033,55.53174394000001],[133.25250270800018,55.531874027000015],[133.63020367000001,55.40647086500019],[133.9313045990001,55.475060649000056],[134.41999855600022,55.5603440000001],[134.7171016520001,55.59239572700005],[135.12690765100012,55.66246676100013],[135.4815065800001,55.69559757500008],[135.885803656,55.74855896500003],[136.24079854600018,55.86520438000014],[136.2613065490001,56.05245743800009],[136.14540058600016,56.10367874500008],[135.70860267900014,56.018127509000124],[135.08779869700004,55.85837195500011],[134.4001005880002,55.77840994000019],[133.77569557200002,55.71780023000014],[133.46820059300012,55.762787413000126],[133.31530763800015,55.84342165700019],[133.19839467300028,55.94618446100009],[133.15580756400027,56.06387878700019],[133.24409465300005,56.19223154100018],[133.51170367600002,56.40063851100007],[133.39520259800008,56.48213072700008],[133.27859456600004,56.50100643700006],[133.0366056690001,56.41014878600009],[132.8912966600002,56.302365558000076],[132.58760069400023,55.95496584600005],[132.32200668100006,55.920674809000104],[132.13189656700013,55.95576380300008],[132.03660555900012,56.01272621100014],[131.99530054600007,56.10361789299998],[132.14329562000012,56.26833369000019],[132.11439565600006,56.32295419400009],[131.86390667000023,56.369765615],[131.25630167000008,56.018066489000034],[131.03759770000022,55.98081546700007],[130.9344025570001,55.997416832000056],[130.85910054500005,56.10442305800012],[130.9293056900002,56.19653145700016],[131.06759669900032,56.29338535400012],[131.1029056340003,56.38707692700007],[130.9790036700001,56.40871849800004],[130.7731935810001,56.395679274000145],[130.5487976280001,56.32630729100015],[130.41259756800002,56.25683120400004],[130.34860257600008,56.143070002000115],[130.4483036380003,56.04139818699997],[130.45249961800005,55.91303353100005],[130.19880656600003,55.75732107100009],[130.02259867700013,55.7201112890001],[129.76879867200023,55.723129444000165],[129.61520364900002,55.764531520000105],[129.49110454300012,55.87518337100005],[129.5265046730001,55.95949777300012],[129.71290562700005,56.14234899100006],[129.53320365800005,56.19822443400017],[129.3751065470002,56.06480984900014],[129.31579569700034,55.96694509400004],[129.03169259800018,55.82160104900004],[128.68640160500024,55.77816166800005],[128.54969762500014,55.727989272000116],[128.5068055830002,55.61353321000007],[128.59500164400004,55.53445313900011],[128.9261936060002,55.500531242000136],[129.42439264100017,55.607716170000174],[129.69920356300008,55.59904492300012],[129.9008025830001,55.47067339400007],[130.26280256500002,55.379038069000046],[130.61650060700003,55.45258005000011],[130.93879668600005,55.59256386800007],[131.15870664500017,55.59542494700008],[131.25750765800024,55.558894936000115],[131.32319663400006,55.46153326400014],[131.35969563100014,55.249044642000115],[131.15750166300006,54.97320827800007],[130.69180261900033,54.53891756600012],[130.23100263000015,54.211428562000094],[130.12449663600012,54.02470624600011],[130.10870362200012,53.91092258100008],[130.19830365200005,53.78627865200008],[130.37130764300014,53.66682597000016],[130.8155976290002,53.57713692400017],[131.21539261800012,53.568255962000194],[131.31010460400023,53.60574771200004],[131.1994016230002,53.726428343000066],[130.92449967400012,53.853823213000055],[130.80439756300007,53.942803485000184],[130.79420466600016,54.04820591800012],[131.0003056070001,54.33794249500011],[131.31430058500007,54.592274750000115],[131.52310167200028,54.65874760100007],[132.13800060400013,54.67822613800013],[132.36180161000004,54.71836086999997],[132.44119265000006,54.814433406000035],[132.3486026270001,54.88482731100004],[132.17610155100033,54.919827960000134],[131.71960466300015,54.94064961300012],[131.85020460500004,55.10094261500018],[131.95579563100023,55.35186913600012],[132.05670167500034,55.42167228500011]]],[[[130.74490365200006,58.117362924000076],[130.79820266600007,58.18968416400014],[130.73089564800011,58.27349598700016],[130.55909764600005,58.325896629000056],[130.21130364900012,58.33797813600006],[129.9488986140001,58.310248286],[129.56990063600006,58.16918353799997],[129.3045956310002,58.036489125],[128.99749761800024,57.93390468900009],[128.15359469700002,57.78287201300009],[127.89330257300003,57.724527932],[127.73599956300006,57.64515633800016],[127.74259964200007,57.54660141800008],[127.62809764700023,57.39722752100005],[127.49710057000004,57.321515298],[127.06040157100017,57.30599670800012],[126.74359865500003,57.20728068700009],[126.69180268400021,56.99138498900004],[126.5926975760002,56.90239315000008],[126.14040354200006,56.82210994000013],[126.04440258700004,56.67666648500011],[125.80220062200021,56.47738053400002],[125.79519653600005,56.38310591700014],[125.91490168000007,56.32843545600008],[126.12010156700012,56.29688328999998],[126.30789961600033,56.297303391000014],[126.4438016150001,56.33351740400013],[126.52149967800017,56.45156980500008],[126.48650355600023,56.607084619000034],[126.55490156200005,56.63909829200003],[126.8908995390002,56.64845584900007],[127.08159655400016,56.68393761900006],[127.26580061100003,56.89686109300004],[127.35140264100005,56.92064290000019],[127.781501563,56.958103972000174],[128.02389564200007,56.99992631600003],[128.24630759900003,57.13471536600002],[128.16540563700005,57.24333460500003],[128.31919864100018,57.29905364200016],[128.7639006820002,57.33495467400019],[129.2223056260002,57.50567208200016],[129.8708035840001,57.80254048500018],[130.0957946530002,57.962637685000175],[130.22720361600022,58.01424036900016],[130.58439657600002,58.05310960100013],[130.74490365200006,58.117362924000076]]],[[[132.245101545,57.81496196200004],[131.9591066500002,57.757037982000156],[131.65429656200013,57.754520058000196],[131.5444946360002,57.63517718000014],[131.61579864800012,57.57063401100015],[132.02259856100022,57.48681129100004],[132.16949459900025,57.39156638399999],[132.41940255100008,57.33267764700014],[132.62179567400017,57.45821944500011],[132.64729258500006,57.59269568300016],[132.5966036960001,57.711847622000164],[132.42210370400016,57.78979915400009],[132.245101545,57.81496196200004]]],[[[126.28929866400017,58.091711786000076],[126.0419996630003,57.90323279000012],[126.15619655600028,57.806809555000086],[126.45079765400021,57.77268951000002],[126.63230156500015,57.83970483700011],[126.75509661400008,57.95224647200007],[126.80529767700011,58.07242016500004],[126.60939767900004,58.12879215200019],[126.28929866400017,58.091711786000076]]],[[[127.3656005790001,64.53261831900016],[127.52809869200007,64.67351023300006],[127.45870156300032,64.82267106200004],[127.6472016810003,64.90331787800005],[127.60030359200016,64.95976245300017],[127.15319862700028,64.98658873400012],[126.98000369600004,65.05800355500008],[126.74040263500012,65.08591378400018],[126.74710061400003,64.88108471300018],[126.94789866000019,64.66118715900006],[127.30020161800007,64.50934848000009],[127.3656005790001,64.53261831900016]]],[[[134.14599565000003,65.95691254700006],[134.50779765100003,66.00793285700018],[135.1056975800003,66.03242427500015],[135.36189263000006,66.07790548700007],[135.45480368000017,66.15721723500013],[135.42179859500004,66.26313381300002],[135.30529768500003,66.35813162200009],[135.11970558500002,66.38943685600003],[134.4001005880002,66.21848442100003],[134.0941006050001,66.179129541],[133.88619956600007,66.08329203400012],[133.89289855100003,66.01935420600006],[134.14599565000003,65.95691254700006]]],[[[127.48490154900026,68.96791999100003],[127.49210361500002,69.06627676300008],[127.24109662800015,69.37274294800017],[127.03209655400008,69.42116972900016],[126.72959869700003,69.39551808800007],[126.32479853900008,68.9853620610001],[126.70890059300007,68.89074479099997],[127.08979757600014,68.94270387300014],[127.48490154900026,68.96791999100003]]],[[[133.90789763200007,70.15269530000006],[133.56959563700002,70.08768140400014],[133.55529761900004,69.94895554100015],[133.28309665400002,69.69289778700005],[133.3202056870001,69.5566600090001],[133.0715945830001,69.45040714900006],[132.5411986460001,69.07558436400006],[132.16740465600026,68.69322390100007],[132.33459462300016,68.42528831900006],[132.93629457200007,68.46783955400014],[133.33149761900006,68.73399699900017],[133.7277066620003,68.95025714200011],[133.91619856600016,69.280796823],[133.85440063700014,69.49770471900018],[134.08340462600006,69.71619226900009],[134.3708036580001,70.06260224600004],[134.20359759700034,70.15405316900006],[133.90789763200007,70.15269530000006]]],[[[129.40269457600016,72.15423929800005],[129.27990757300017,72.26717706200009],[129.37680069700002,72.33226723400008],[129.28019758700032,72.42937242000016],[129.00129663200016,72.47323693100014],[128.698242552,72.47306862300007],[127.95832853900026,72.62126402400008],[127.16470362700011,72.58904985500016],[126.90442659000007,72.50904308100013],[126.70110357900012,72.50182525600007],[126.65358757600018,72.43013517300011],[127.50444060300026,72.43819269700015],[127.8093266320002,72.351792542],[128.46429458100033,72.20997610400013],[128.49439969500008,72.15088234600012],[128.90190167700007,72.09633694300015],[129.33949267900016,72.11995915800003],[129.40269457600016,72.15423929800005]]],[[[128.60940561000007,72.52625582200017],[128.97219868700017,72.58959987600014],[128.68829356800006,72.67099486100017],[128.12329059700016,72.63460063700018],[128.33828758700008,72.55680702100011],[128.60940561000007,72.52625582200017]]],[[[129.2901616580001,72.70892330800018],[128.5346985450002,72.78350498000003],[127.87859367400006,72.76072263200007],[127.6383205520001,72.69515117100008],[128.0061035440002,72.65237781600013],[128.63442961400006,72.69933273500004],[129.18370059100016,72.67259697800012],[129.2901616580001,72.70892330800018]]],[[[129.27320858800033,72.84138570900012],[128.75833157700004,72.89046074700002],[128.4160766780002,72.89795282700015],[128.32247965300007,72.82240254300012],[128.83914167400007,72.79404958200013],[129.22839356900022,72.80471588900008],[129.27320858800033,72.84138570900012]]],[[[129.05276470200022,73.02212133500018],[129.13099669300004,73.11860860800016],[128.7924046840003,73.14566438500015],[128.95880155600003,73.22132229300001],[128.69419861900008,73.27309010100015],[128.5596925420001,73.24419667500013],[128.26609760700023,73.28712995600017],[128.42430167100008,73.36464881400008],[128.0648036880001,73.36473280100017],[128.11990363700022,73.42818313800012],[127.47979764000013,73.48758149400015],[127.2238005710002,73.53949514700014],[127.03849764600011,73.48468236200006],[126.73139963300002,73.48365960200016],[126.57026659700011,73.36657899900013],[126.60054069000023,73.25631187800008],[126.76277158800008,73.17241472600006],[126.77998365900021,73.08824181099999],[126.66526759000021,72.99433365000004],[126.36192366400007,72.91627985800017],[126.44999668000014,72.78432858600013],[126.3338776490001,72.71460741200008],[126.38442957700022,72.60514880900013],[126.30220059300018,72.50626615600015],[126.92414853800005,72.57070773599997],[127.31775667600004,72.70461216000018],[127.64637757200023,72.7157218700001],[128.17413354500013,72.80654733500006],[128.37606767400007,72.91905711800007],[128.64221154100005,72.93378294900003],[129.05276470200022,73.02212133500018]]],[[[136.61602999400031,-15.542820005999886],[136.51265999400005,-15.54372000599983],[136.51418999400005,-15.653190005999932],[136.59073999400005,-15.645270005999862],[136.61602999400031,-15.542820005999886]]],[[[136.72792999400008,-13.670540006999886],[136.58941999400008,-13.724880006999967],[136.60095999400005,-13.805890006999846],[136.43463999400012,-13.880790006999916],[136.40863999400005,-13.977700006999896],[136.4433499940003,-14.115250006999815],[136.4023199940001,-14.176340006999965],[136.491599994,-14.237790006999887],[136.72735999400015,-14.263160006999897],[136.93476999400013,-14.299030006999942],[136.95214999400002,-14.243260006999947],[136.762989994,-14.196680006999884],[136.69981999400022,-14.11140000699993],[136.77804999400007,-14.024890006999897],[136.79306999400012,-13.913890006999907],[136.8405399940001,-13.836860006999927],[136.7212199940002,-13.835610006999957],[136.68281999400017,-13.730560006999895],[136.72792999400008,-13.670540006999886]]],[[[136.25494999400007,-13.674840006999943],[136.16105999400008,-13.750660006999965],[136.25541999400002,-13.828290006999964],[136.25494999400007,-13.674840006999943]]],[[[135.54557999300016,-12.08583000799996],[135.30545999300034,-12.12472000799994],[135.26905999300004,-12.180000007999979],[135.4280799930001,-12.182730007999908],[135.54557999300016,-12.08583000799996]]],[[[135.93069999300008,-11.778930007999975],[135.73361999300005,-11.939340007999931],[135.59379999300018,-11.952530007999883],[135.55381999300016,-12.049080007999919],[135.73461999300002,-12.00233000799983],[135.8282099930002,-11.929210007999927],[135.93069999300008,-11.778930007999975]]],[[[136.37343999300003,-11.581690007999896],[136.2644499930002,-11.572200007999925],[136.26621999300005,-11.658610007999869],[136.37343999300003,-11.581690007999896]]],[[[136.74756999300018,-11.073260008999966],[136.5882499930001,-11.279230008999832],[136.57747999300022,-11.331370008999954],[136.49496999300004,-11.406310008999867],[136.53455999300013,-11.443500008999877],[136.70937999300008,-11.207670008999969],[136.74756999300018,-11.073260008999966]]],[[[135.83605957600014,-3.910831697999868],[135.89091460600014,-3.901507165999931],[135.94015459900004,-3.788542747999941],[135.80934158900004,-3.78764085499995],[135.81219462100023,-3.86863384499992],[135.6941066810001,-3.819366358999901],[135.66694663200008,-3.880159799999944],[135.717727555,-3.924370650999833],[135.83605957600014,-3.910831697999868]]],[[[136.16136157300014,-3.437648787999876],[136.25567659200033,-3.503105751999954],[136.42147868400002,-3.520306590999951],[136.44157362600004,-3.436695597999972],[136.16136157300014,-3.437648787999876]]],[[[135.9380036350001,63.338624425000035],[136.1526036580002,63.53818446400004],[135.9841005820001,63.655803688000105],[135.73350564900022,63.61492799600006],[135.5444945710002,63.502781820000166],[135.499404625,63.41723008100013],[135.72729465900022,63.32280341500018],[135.9380036350001,63.338624425000035]]],[[[135.77009567400012,64.20652289100013],[135.90539568500003,64.1462932170001],[136.1446986850001,64.21203131000004],[136.16600062200018,64.37712378900011],[136.23370360100012,64.54396389599998],[135.79060367700026,64.55560736500013],[135.8372037050002,64.62471749800017],[136.14689658800012,64.71613707199998],[136.24989358200003,64.80944944800012],[136.2462006830001,65.0115611060001],[135.61090070100022,64.99295227500005],[135.33520465100014,64.97049832900012],[135.16130061100012,64.79446377800008],[135.43829367800015,64.46648409700009],[135.4062955950002,64.27864749100007],[135.5803986200001,64.21757862100009],[135.77009567400012,64.20652289100013]]],[[[136.37919667600033,65.23838630200015],[136.78419464700005,65.39281247499997],[136.74380460300017,65.46333529400005],[136.43960555500018,65.48914652600013],[136.2592925450001,65.3805142110001],[136.37919667600033,65.23838630200015]]],[[[135.44949357700034,65.52604416700012],[135.49639870700014,65.6378354540002],[135.68969763200005,65.81573162600012],[135.49310260800019,65.91011872900009],[135.3128056910001,65.85630657500008],[135.09539756200002,65.72618088100012],[135.01300060400013,65.61846370200016],[134.72439558400004,65.56523777900009],[134.44110066800022,65.73751069900015],[134.21879566400025,65.73418442500008],[134.07809469000017,65.57826962600018],[134.0872956730002,65.43712642300017],[134.04060361100005,65.32670138700007],[134.04750057600006,65.18238429200017],[134.24319454600004,65.148667752],[134.4642027020002,65.251845962],[134.55900554700008,65.34305112700014],[134.81880163100016,65.40708819700006],[135.0785975460002,65.37405846900009],[135.35389663000012,65.37956018300002],[135.44949357700034,65.52604416700012]]],[[[136.9826965550003,66.2197356710002],[136.84140063400025,66.27268599799999],[136.59910562900006,66.26829103000017],[136.4172055890001,66.14984702700013],[136.35719267100023,65.9681280370001],[136.15739458600012,65.72203770600004],[136.24240066300013,65.63717143900004],[136.4275966350001,65.66363159899998],[136.69700659400007,65.865722135],[137.0272976680002,65.97163821000015],[137.03689561700003,66.16354205100015],[136.9826965550003,66.2197356710002]]],[[[136.16110257300022,74.08067524100011],[135.58819563400004,74.23511080100008],[135.42840554700024,74.17847428099998],[135.67149364700015,74.1128800210002],[135.77810659400018,74.00793121800012],[136.13380455800007,73.88487632900018],[136.35769659100004,73.93798105000019],[136.16110257300022,74.08067524100011]]],[[[135.91819770100005,75.39710493600012],[135.92219570100008,75.50485379800011],[136.13659657000017,75.62152201200001],[135.58670063800014,75.78102560600018],[135.46929967900007,75.67042270500019],[135.58859260100007,75.53969200500006],[135.41259761300023,75.43810015400015],[135.49639870700014,75.37561893300006],[135.91819770100005,75.39710493600012]]],[[[137.6052700030001,-35.59155999599989],[137.3289200040001,-35.57849999599995],[137.07054000400012,-35.66911999499996],[136.7836700040001,-35.699999994999985],[136.58696000400005,-35.748349994999955],[136.53864000400006,-35.898919994999915],[136.75663000400004,-36.049319994999905],[137.17702000400027,-36.00954999499993],[137.20860000400023,-35.973589994999884],[137.368450004,-35.9970899949999],[137.45668000400008,-36.066759994999984],[137.6165700040002,-35.98944999599996],[137.5980600040001,-35.938529995999886],[137.74352000400017,-35.85266999599992],[137.93752000300003,-35.86461999599993],[138.04293000300015,-35.90378999599983],[138.11952000300005,-35.82005999599994],[137.97344000300018,-35.71988999599995],[137.8220800030001,-35.79978999599996],[137.78069000300013,-35.72427999599995],[137.58994000300015,-35.733959995999896],[137.63942000300017,-35.657499995999956],[137.6052700030001,-35.59155999599989]]],[[[139.66388999400021,-16.452250006999975],[139.55894999400005,-16.396840006999923],[139.4635599940002,-16.44684000699982],[139.3094299940002,-16.460450006999963],[139.16074999400018,-16.60959000699995],[139.23001999400003,-16.732180006999954],[139.28873999400003,-16.734740006999914],[139.3822399940002,-16.65584000699988],[139.45151999400014,-16.666400006999936],[139.4780099940001,-16.532180006999965],[139.66388999400021,-16.452250006999975]]],[[[137.01890999400018,-15.598010005999924],[136.93522999400034,-15.703340005999905],[136.99343999400003,-15.791190005999965],[137.07269999400012,-15.83821000599994],[137.07542999400005,-15.649640005999856],[137.01890999400018,-15.598010005999924]]],[[[141.28439370700016,-8.079032624999911],[141.05020165600013,-8.19400450899991],[141.01567056200008,-8.058198230999949],[140.86766056800013,-7.949746797999978],[140.83059663100005,-7.967846678999933],[140.58354171100007,-7.99851857799996],[140.46171560900007,-8.041906325999946],[140.29994169300005,-8.0067149059999],[140.21228056400003,-7.942625364999969],[140.12802165000005,-7.931928379999874],[140.06083667300004,-7.878265256999953],[140.059661698,-8.095261497999957],[139.93730166900002,-8.152658424999913],[139.98977657400008,-8.218119746999832],[140.16127064800003,-8.332502550999834],[140.49310265200006,-8.603985856999884],[140.51832564200015,-8.670552249999957],[140.61706563500002,-8.79174551799997],[140.80120867200003,-8.936035454999967],[140.88240064800004,-9.043094821999944],[140.98321566500022,-9.096448820999967],[141.10539263300006,-9.230203375999963],[141.17199657600008,-9.240229808999914],[141.3092036380001,-9.149277273999928],[141.39540061500009,-9.141877561999877],[141.51310768200005,-9.20502313299994],[141.62359658900004,-9.218132429999969],[141.7561946090001,-9.18820434099996],[141.9073945870001,-9.203453369999977],[142.06440758200006,-9.180983834999893],[142.1858067100003,-9.13831810299996],[142.27630662100012,-9.196045778999917],[142.4150997060001,-9.230275459999973],[142.55160570500027,-9.326549664999959],[142.6253966280002,-9.338743824999938],[142.85259968100013,-9.213372681999942],[142.99147055000003,-9.110129092999955],[143.13059958100007,-9.076382208999973],[143.260772717,-9.018883526999957],[143.18603564500017,-8.962448507999909],[143.02328456600003,-9.01921528299988],[142.97030657900018,-9.064629271999934],[142.7886357010002,-9.128965575999928],[142.5729066360003,-9.102473564999968],[142.51612862900015,-9.045706622999944],[142.4858547040002,-8.935957334999955],[142.5653386150002,-8.82242227699993],[142.60696364900014,-8.625628433999964],[142.51234470300005,-8.515879313999903],[142.37988263700004,-8.485603376999961],[142.239852551,-8.36828388999993],[142.19821159100002,-8.36828388999993],[142.16415357100004,-8.478034014999935],[142.11872868500006,-8.515879313999903],[141.91813666600012,-8.409912946999953],[141.83488458700003,-8.30773235099997],[141.88407864700002,-8.182844339999974],[141.8651576740001,-8.137431523999908],[141.72860758600007,-8.079512572999931],[141.66619861700008,-8.089331804999972],[141.626907608,-8.201617791999922],[141.50489760800008,-8.200290097999925],[141.43589761300007,-8.15311825599997],[141.46279866100008,-8.099618243999942],[141.3802035540001,-7.992427951999957],[141.35220363900032,-8.074206157999981],[141.28439370700016,-8.079032624999911]]],[[[141.05870057000004,-5.042632875999971],[141.2512665820002,-5.132857358999956],[141.34819055200023,-5.21437706699993],[141.41996763800012,-5.13232125199994],[141.33174157000008,-5.043555723999873],[141.2253266030002,-4.977346735999902],[141.12319965100016,-4.951859714999898],[140.98268157000018,-4.818226361999962],[140.8529506640001,-4.830578604999971],[140.8247066670001,-4.876322002999927],[140.88197367400005,-4.954002464999917],[141.00292956600003,-5.037534164999897],[141.05870057000004,-5.042632875999971]]],[[[140.33277863700005,-4.530710653999961],[140.1951596890002,-4.602912367999977],[139.9774327130001,-4.506798424999943],[139.91671755900006,-4.442691282999931],[139.80540471100005,-4.438969382999971],[139.72483869600023,-4.394272883999975],[139.70428459300012,-4.318683204999957],[139.6162566720002,-4.255324900999938],[139.54096958000002,-4.287944585999981],[139.42337064000003,-4.286819734999938],[139.2873685610001,-4.254049007999868],[139.10665858400012,-4.26719602299994],[139.12567159000002,-4.36216717699989],[139.20274369300012,-4.343154505999905],[139.34051569500002,-4.354975671999966],[139.42355370100017,-4.389236197999878],[139.50212063200001,-4.370418657999949],[139.59750367300012,-4.435923733999971],[139.68583669500003,-4.443603233999966],[139.80984460500008,-4.543340672999932],[139.82948256600014,-4.646075983999879],[139.9887236390001,-4.601255433999938],[139.99353066100014,-4.666523469999902],[140.11244170400005,-4.753960130999815],[140.1872555540001,-4.658009131999961],[140.2518915950002,-4.745210764999911],[140.3297116980002,-4.785338790999958],[140.45133965200012,-4.773571772999958],[140.4883425690001,-4.696917255999949],[140.375732706,-4.674778973999878],[140.33277863700005,-4.530710653999961]]],[[[137.85833755200008,-3.903260994999812],[137.8231045570003,-3.837529942999936],[137.73278770700006,-3.893068936999953],[137.67481963800003,-4.050097354999878],[137.54701254500014,-4.012821019999933],[137.43653855900004,-4.039886016999901],[137.2945405690001,-4.010555223999859],[137.28216569500012,-3.883811459999947],[137.33923354700005,-3.847952168999882],[137.36849963300017,-3.765001334999965],[137.2922365520002,-3.758919928999944],[137.2767945710001,-3.838485982999941],[137.1522825730001,-3.815126624999948],[137.05343663300027,-3.865665812999907],[136.9506376190002,-3.853071835999913],[136.89221156300005,-3.906844929999977],[136.72108461600033,-3.902427163999903],[136.61819457500008,-3.948296625999888],[136.78225658400004,-4.041946791999976],[136.97195464300023,-4.038882200999979],[137.12030058300002,-4.158469159999925],[137.23930366000013,-4.136468675999936],[137.4286035780002,-4.138120581999885],[137.46871970200004,-4.199786075999896],[137.5522616290001,-4.170544297999925],[137.79336556500016,-4.145112261999941],[138.07495157900019,-4.231084772999907],[138.19584661800013,-4.187077098999964],[138.27947957200013,-4.211978223999893],[138.39779667300002,-4.199308139999971],[138.53327957700003,-4.251079299999958],[138.6735225640001,-4.352819846999921],[138.71235659200022,-4.32008415599995],[138.92269860800013,-4.391857051999921],[138.96545369000012,-4.260475748999966],[138.93418868900005,-4.203843922999909],[138.74974055000007,-4.251242243999911],[138.68110667700012,-4.209486284999855],[138.5971986300002,-4.081049040999972],[138.53634668300015,-4.053490013999919],[138.40452566500005,-4.064987302999896],[138.2775265890001,-3.964590710999914],[138.23379568500002,-3.893598839999811],[138.29356368400022,-3.826678730999902],[138.22251867300008,-3.757966067999973],[138.11343356700002,-3.820827156999883],[137.98779269400018,-3.756670896999935],[137.90155062200006,-3.816972654999972],[137.85833755200008,-3.903260994999812]]],[[[138.0810696980002,-3.557899594999924],[138.06394966000016,-3.655190523999977],[138.18023666500005,-3.66921462199997],[138.27854968400015,-3.627951517999975],[138.25198357700003,-3.567444067999872],[138.0810696980002,-3.557899594999924]]],[[[137.93023667900013,-3.469362388999855],[137.88165265400005,-3.510252330999947],[137.7929836850002,-3.489609714999915],[137.77740457700008,-3.569065965999869],[137.82797259900008,-3.613532632999977],[137.9598846440001,-3.548005427999897],[137.93023667900013,-3.469362388999855]]],[[[136.72810362200005,57.18918315200011],[136.55029261000004,57.08353965600003],[136.6038965570001,56.932694232000074],[136.74690255400026,56.871451354000044],[136.89779659300007,56.85601289400006],[137.19410659400023,56.885771668000075],[137.35119670300003,56.93210213500004],[137.59970068600012,57.09876421000013],[137.61030563800023,57.20892454600016],[137.47320569700025,57.229471273000115],[137.18789660900006,57.074246640000126],[137.05729666700006,57.05266189800011],[136.9210966070001,57.155201073000114],[136.72810362200005,57.18918315200011]]],[[[137.6291966030002,57.445588085],[137.76179462400012,57.41359721000015],[137.995803614,57.412048067000114],[138.16949458500017,57.46154152899999],[138.46150165200004,57.754969999000195],[138.38909860500007,57.823770169000056],[138.2539065530001,57.84007079100019],[138.03680469900007,57.764911439000116],[137.78500361100032,57.61050320400017],[137.5937956350001,57.518493544000194],[137.6291966030002,57.445588085]]],[[[138.5229036190002,58.12491200100004],[138.83360266500006,58.07942039500017],[138.97309865700004,58.11032044900014],[139.32319667100035,58.25306426000009],[139.7872005590002,58.46149419700015],[139.85800165700005,58.560904742000105],[139.6076047040002,58.6310902730001],[139.33529661900002,58.55323731200019],[139.02890067400006,58.439181738000116],[138.82739268100022,58.407159348000164],[138.60949655800005,58.32793795700019],[138.51359568300006,58.21954335300006],[138.5229036190002,58.12491200100004]]],[[[140.00149564800006,59.72981528800011],[139.93189970000003,59.62856240100018],[139.92669655000032,59.501478834000125],[140.00280758400004,59.40849553200002],[140.01960760000009,59.29144141600017],[139.83219863800002,58.814373327000055],[140.05740361300002,58.73579164300003],[140.1983035730001,58.752104336000116],[140.30329864500015,58.81739567300019],[140.37840267700005,59.174814106999975],[140.61909455900002,59.32303230600007],[140.66020159100003,59.38463376300001],[140.4485017070001,59.520998610000106],[140.49890158800008,59.659809633000066],[140.41329955700007,59.752148031000104],[140.22779865200005,59.79842870900006],[140.00149564800006,59.72981528800011]]],[[[138.3849946570001,60.733474266000144],[138.44569355000021,60.63926251200007],[138.39689662500007,60.57598903400003],[138.2109065520001,60.49549594100006],[138.231506587,60.431605722000086],[138.48390161800012,60.373127196000155],[138.61010759900012,60.37266216800003],[138.75909458700016,60.42502442000017],[138.74360667400003,60.53986671900009],[138.60639961200002,60.658302341000024],[138.73100263800006,60.75021309400012],[138.6943966880001,60.815130431000114],[138.53889461400001,60.82878388100005],[138.3849946570001,60.733474266000144]]],[[[139.34100368900022,60.74365559600005],[139.1439976160002,60.772228833000156],[138.93870569600028,60.73648756000006],[138.97239658800004,60.68163018300004],[139.18980371100008,60.615709532000096],[139.1078945800001,60.52831930600007],[139.29319767200002,60.48050759000006],[139.56050058800008,60.54301798000017],[139.63229360000014,60.61292053800008],[139.58110062300022,60.674034838000125],[139.34100368900022,60.74365559600005]]],[[[140.6107025970001,61.10607014700014],[140.49319468500016,61.23528623700014],[140.12339768900006,61.32160860800019],[139.572204574,61.282696796000096],[139.20489465700007,61.16647433200012],[138.89300554800002,61.01992631000007],[138.8303985990002,60.94257358100003],[138.97790567800007,60.86967147500002],[139.28010564200008,60.98353728300009],[139.587005674,60.90673608400016],[139.78120464800008,60.90903306000013],[139.73359661100017,61.06266831700009],[139.89039570100033,61.13507002300008],[140.18719470200006,61.064129282000124],[140.41040059200031,60.94137547200012],[140.61059564400023,60.97195483399997],[140.6107025970001,61.10607014700014]]],[[[145.75489769600006,62.437087874000156],[146.14340159000005,62.56033118700009],[145.93339568800013,62.57072273500012],[145.69050556800005,62.817212380000115],[145.2946926540002,63.0483014510001],[145.06939665200002,62.95154914200003],[145.4178006840002,62.4612671500002],[145.11759963600002,62.3556025310001],[144.80859356700012,62.34762228900007],[144.51080365700022,62.451553697000065],[144.34069863200023,62.457787989],[144.2061006900002,62.380006442000195],[144.02270464800029,62.366921118000164],[143.70019566800022,62.533099892000166],[143.4803006290001,62.577372099000115],[143.40109265,62.45764683800013],[143.35020460700025,62.282109334000154],[143.0061947040001,62.26526657000011],[143.0108946050001,62.492949570000064],[142.72569263700018,62.814313415000186],[142.42480460900003,62.893536649],[141.98620559900007,62.95747749500015],[141.90710457300008,62.991577927000094],[141.56120270700012,62.94603703500019],[140.7371975860001,62.73658886500016],[140.63189657500004,62.765128072000095],[140.59359764800013,62.89328485700014],[140.93499759300016,63.085123319000104],[141.0928955500002,63.14182672600015],[141.15150466700015,63.2089875640001],[141.0733036900001,63.260763083000086],[140.81230161800022,63.267103322000196],[140.31840568500002,63.131164275000174],[139.45869466200008,62.94839804900016],[138.77070670800003,62.89700005100008],[138.44869963600001,62.835142276000056],[138.04049659200007,62.785251009000035],[137.38279765100015,62.67173623600013],[137.47120661300005,62.516399453000076],[137.78790257600008,62.471807393],[138.25759861400002,62.4548466120001],[138.92349271000012,62.47323768100006],[138.86599754800022,62.399115505000054],[138.43780567700026,62.30050090600008],[138.38529959100015,62.16835450200006],[138.47889661600016,62.10891105100012],[138.7088016590002,62.05691089700014],[139.1325077030001,62.07561058700014],[139.38769558400008,61.991066186000126],[139.45779461300003,61.88132058600013],[139.29429670700017,61.80048718800009],[139.071594569,61.75090621900017],[138.66439869400006,61.62752594600005],[138.31689471100015,61.476866097000084],[138.21490455200012,61.347309702000075],[138.2539065530001,61.256195732000094],[138.57319654700018,61.2404555240002],[139.11419659700005,61.3063989740001],[139.3979945960001,61.36187124700007],[139.67340063300003,61.46354423600013],[139.99960368500012,61.62419615099998],[140.14900155400028,61.77132688199998],[140.5265047040001,62.25502824300003],[140.76910363600018,62.30105830200017],[140.88560471400012,62.268207947],[140.90409871300005,62.17262290300016],[140.5502927120001,61.965605987],[140.65229762400008,61.82956032200008],[140.86070258300003,61.801800130000174],[141.1322936800002,62.07519853300016],[141.3390956840003,62.03356377600011],[141.17590354900005,61.65648441500008],[141.75570661400013,61.41835354000011],[141.92480463800007,61.441464458999974],[142.0435026130001,61.518237495000164],[142.0532076830001,61.627221180000106],[141.85580464300006,61.800197342000104],[141.84379555500016,61.89078107300014],[142.03120468500015,61.985515857000166],[142.313003599,61.9480044930001],[142.42990063800005,61.880351638000036],[142.47889655100028,61.672052962000066],[142.58959969900013,61.619636898000124],[142.72779867400004,61.639512570000136],[142.84300256900008,61.71780491000004],[142.79440261800016,61.83477973400011],[142.82460060400012,61.925443260000065],[143.00320471100008,61.93992400300016],[143.0529026920001,61.8857536070002],[142.99769562200015,61.79593313300012],[143.01649455400002,61.63283219300007],[143.19059758000003,61.49794675200019],[143.4532926280002,61.486014442000055],[143.59049968900013,61.58848421400006],[143.5350036110001,61.939683946000116],[143.6786037180002,61.966655066000044],[143.95260662400017,61.82143909600012],[144.07949858000006,61.89643131399998],[144.0021056180002,62.04037323400007],[144.11999457200022,62.14608261200004],[144.29600565400017,62.132632004000016],[144.80110165400015,61.98033466700008],[144.543792649,61.90688354700018],[144.40519771200002,61.83685073400005],[144.3578035820001,61.63632258500007],[144.21879558500018,61.52439903200002],[144.180206644,61.352955920000056],[144.287093679,61.262669411000104],[144.48240660800013,61.328479924000135],[144.55439760100012,61.46000439],[144.67170770000018,61.50532098200017],[144.80059857200013,61.41874262800013],[144.6746976930002,61.32612980599998],[144.77330055800007,61.25603597300011],[144.89869667900018,61.24183635900016],[145.1403955630002,61.27536581500004],[145.47140463100015,61.20879607000012],[145.60110469200015,61.248775736000084],[145.77119463000008,61.39452244800009],[145.84550456000034,61.52246868000003],[145.78089869500002,61.75571642600016],[145.59570255500034,61.88737466700019],[145.47839362900004,62.17776486499997],[145.52639762700028,62.291657662000034],[145.75489769600006,62.437087874000156]]],[[[137.7243955770001,62.92870527100001],[137.88659663600004,62.929155211000136],[137.96919258000003,62.99278408200013],[138.02799967800013,63.184206635000066],[137.83689865500003,63.30056387899998],[137.66020159800007,63.34163453400015],[137.32189960400012,63.36341742400015],[137.05250557100032,63.43416772800009],[136.85659769500012,63.389667701000064],[136.97929367000006,63.24311113000016],[137.1004946490001,63.16907679600013],[137.3693996820001,63.09469461400005],[137.7243955770001,62.92870527100001]]],[[[136.39390557500008,64.0387602720001],[136.2911985950002,63.89461869500019],[136.31019567600003,63.78718465600019],[136.56399568100005,63.64120811300012],[136.92469764100008,63.61221561200017],[137.26559467200013,63.647239395000156],[137.74090558000023,63.75784447500007],[137.87060564100022,63.6512984150001],[138.14630169200007,63.58217721800008],[138.35859669100034,63.64732740500017],[138.40930167400006,63.720691689000034],[138.39880367500018,63.867850081000086],[138.2243046880002,63.96543404200008],[137.40939359800007,63.98817481600014],[136.82730059600033,64.09954616900006],[136.39390557500008,64.0387602720001]]],[[[140.49740558600013,63.51226225500005],[140.05220063000002,63.49924180700009],[139.95550565400015,63.55389416200006],[139.99209567900004,63.625987415],[140.22009266600003,63.71747152900019],[140.89849859600008,63.896529601],[140.969802608,63.973300123000115],[140.83439665000014,64.04387960300011],[139.91479458300012,64.24477873500018],[139.8502046430001,64.29437210900016],[139.92759659900014,64.38579956199999],[140.04559367900004,64.39612170800018],[140.46040367400008,64.32593668000015],[140.7062987060001,64.33346698200006],[140.79769866700008,64.4173331200002],[140.82000760500011,64.53461723600009],[139.88389570200013,64.69953403099998],[140.07179265900004,64.83866289500008],[140.22540260100016,65.01108098999998],[140.14909358700004,65.09988339900008],[139.86250257100028,65.15129262800014],[139.50039664200017,65.09077377900007],[139.22169467300012,64.94924886400008],[139.09199561800006,64.84883332800001],[138.1846006190002,64.99656118700005],[137.28140260600014,65.06120812400007],[137.59390258800022,65.17286999400005],[137.67309564800019,65.29435863999998],[137.46299754500012,65.58773111900013],[137.33149755400007,65.60468385300015],[137.20010367800012,65.36669614100003],[137.19999655700008,65.2976931290001],[136.95030167300013,65.177836775],[137.04449465100026,65.0622914010001],[136.64300567900023,64.6016525120001],[136.53190657000005,64.45076652000017],[136.52479569900026,64.26561547600016],[136.75219757000002,64.21592235700018],[137.1363066660001,64.38549446100006],[137.33659358300008,64.36387920900006],[137.20550564700022,64.24364986000012],[137.35180657,64.19253047700005],[137.84010356000022,64.36010198800011],[138.0213925590001,64.36783865200005],[138.07200668100006,64.20308178400012],[138.211105706,64.18763226000004],[138.51519763300007,64.28662773400004],[138.71119670400003,64.27646501099997],[138.78089859900012,64.20916302300009],[139.03919968600007,64.13822898799998],[139.3883976520001,64.07044654800012],[139.4833066120001,64.0130779530001],[139.37640365100003,63.899890912000046],[139.00309765600014,63.89133047400014],[138.8128966820001,63.82779765900011],[138.92190568000012,63.71913047600009],[138.8751066650001,63.640578967000124],[138.6336055940002,63.54790361600004],[138.58959959600008,63.461107835000064],[138.85839868200014,63.35007695500008],[138.6282956580003,63.207659367000076],[138.8451996990001,63.08897949700014],[139.1614986940001,63.09363363300014],[139.8836056890002,63.1934379600001],[140.44529764000004,63.32055371299998],[140.784805623,63.45765968800015],[141.00660670700006,63.51857148100004],[141.16560369900003,63.62625848500005],[141.0164036430001,63.640288953000095],[140.75959755200006,63.55312302700014],[140.49740558600013,63.51226225500005]]],[[[137.62879963600028,65.75670760500009],[137.7088015490002,65.8273590020001],[137.63470468700007,65.87647159000011],[137.33340460400007,65.91520838800011],[137.06019563200005,65.82585579100015],[137.16650364500015,65.76419147100006],[137.62879963600028,65.75670760500009]]],[[[141.98919659800004,66.56937033400015],[141.23399365900002,66.53460169700008],[140.81979369900023,66.68240532700008],[140.53930655200008,66.84418729100008],[140.49229463600022,66.93270823500006],[140.60240166300002,67.24147106100014],[140.391296559,67.37390898700016],[139.70809970000005,67.45714229200007],[139.48660271200015,67.61987811600011],[138.92300454700012,67.79879688000011],[138.57679758000006,67.99375374500005],[138.67790261100026,68.32278200200017],[138.51489269900014,68.38423208100016],[138.00869766300013,68.44002135800008],[137.82919266900012,68.49164399099999],[138.08489955700009,68.65189357500003],[138.05310062800004,68.74182586400019],[137.84590165800012,68.7993781900002],[137.27900655600013,68.78303482000013],[136.77540555100006,68.8154389230001],[136.60719265700004,68.72269048200019],[136.8298036000001,68.59565351900005],[137.16099556100005,68.44621625500008],[137.2371065950001,68.20055189300001],[136.80450466900004,68.15014916200016],[136.0106046630002,68.43290981600018],[135.69479366200017,68.28628769800008],[135.64909368100018,68.03679347700012],[136.35290566300012,67.80919630700015],[136.85870356400017,67.59194542300003],[137.12300056200002,67.44284360300009],[137.96629361500004,67.23705312800013],[137.63929763500016,66.86761873300009],[137.24099764200014,66.65995121500009],[136.9270936920002,66.39759345400006],[137.39270070200018,66.06902402300011],[137.77499360700006,65.94457455300011],[138.32380659600017,65.95297506400016],[138.62449664400003,65.92057967900018],[138.79310566800018,65.79210203500014],[139.17489666400002,65.63098408600013],[139.15260365100005,65.47887668300012],[139.21769767900003,65.36014182800017],[139.42959571200015,65.30095788000017],[140.33549470900005,65.37953688100009],[140.45050062300004,65.33295747200015],[140.40089467600023,65.11628695100018],[140.5355985660001,64.94258743000012],[140.79469258100005,64.93801040800014],[141.15679968300003,64.97728850900006],[141.45765669800016,65.04615472900008],[141.79150371100002,64.96058672900017],[142.47590655800025,64.93932251100006],[142.8135986850001,65.03566310000019],[142.63240071400003,65.20138221100007],[142.3300015960001,65.36302587300014],[141.8410037110001,65.48890227800018],[141.62370270300005,65.6029979170001],[141.6455995870001,65.71411043700004],[142.12480170900017,65.89610351600015],[142.13349961000017,65.97500220300009],[141.5449986440001,66.18877409400017],[141.47889660900012,66.27591370099998],[141.57730065500004,66.35546148200012],[141.7816926940003,66.36325866400011],[142.06269868000015,66.31780846499998],[142.69290162600032,66.18031273100007],[142.9075016490002,66.25241436500005],[142.91679366000017,66.33124415300006],[142.69549565800003,66.40728310200012],[142.37229969700002,66.46686401700003],[141.98919659800004,66.56937033400015]]],[[[137.47079455900007,71.4636541270001],[137.83369458900006,71.4491567870001],[137.92340056700004,71.59632171700002],[137.4626005780001,71.60898761100015],[137.12780758300028,71.5783916530001],[137.08610560300008,71.52804290200004],[137.36920170100018,71.43765933100008],[137.47079455900007,71.4636541270001]]],[[[140.7740935510003,73.419157337],[141.33720355300022,73.33292398100014],[141.9049076760001,73.29704088600005],[142.4456026250001,73.23813069100004],[142.7333986240002,73.26421668300014],[143.13630665200003,73.19747158800004],[143.45829763000006,73.26001315800005],[143.45230071400022,73.37776481600008],[143.58369459000005,73.42934989800005],[143.47189358000003,73.52205358000009],[143.23039267700028,73.61968515000018],[142.8798976950003,73.69175761500014],[142.59609969700023,73.79221992200007],[141.95289558100023,73.89623045500008],[141.3627016380002,73.85460139800011],[141.15229759500005,73.89293418800014],[140.8759006500003,73.77808183000019],[140.81860363600003,73.62802430600004],[140.56039458200019,73.49282286600004],[140.3105925770002,73.44792905700012],[139.85060161,73.465790223],[139.89999365000017,73.37811568300009],[140.24070762100007,73.36648813900007],[140.51359556700004,73.42829009100018],[140.7740935510003,73.419157337]]],[[[140.1867975670002,74.24475535400006],[139.97070254800008,74.14761932200014],[140.25610366900014,73.95385117799998],[140.482406673,73.90933002900005],[141.0498046890001,73.97523760400009],[141.07690455500006,74.17523216100017],[140.6654055800003,74.2650279930001],[140.1867975670002,74.24475535400006]]],[[[141.04989655500003,75.80054303500009],[141.1855926940002,75.714096444],[141.00399758800006,75.60759866500007],[140.5279997,75.65453749000005],[140.60389666000015,75.75880702500007],[140.4559015860001,75.81110993300007],[139.9976956290003,75.85300553500014],[140.05129957600002,75.93057988100014],[139.37368757900003,76.05129957100007],[139.1528016320001,76.11471185400012],[139.15220668400013,76.21327431800012],[138.80360366600019,76.21542628800017],[138.26789863200008,76.12859060900013],[138.27270464700007,76.01707911000011],[137.67050161600014,76.00033894100011],[137.47470069300016,75.92610008900004],[137.87649560400007,75.741876251],[137.37089568400006,75.7608676320001],[137.1708986120001,75.71721669200008],[137.5554046750001,75.58711932800014],[137.2908936030002,75.52905620800016],[137.1920015620003,75.35577293300003],[136.93020656300007,75.31026908900003],[137.11149556200007,75.17069464300005],[137.72309856200013,74.953976178],[138.04119866100007,74.77595561900017],[138.3990936890002,74.71728129000013],[139.15899669600003,74.64024975600006],[139.42239364500028,74.65254148200012],[139.59269765700003,74.78902501700009],[139.56869456900017,74.97916932900006],[139.83149757600006,74.97012072900009],[139.9929965660001,74.83652123900009],[140.28030356400006,74.81300564200018],[140.4396976910001,74.85733585200006],[141.5379026930002,74.93184963000016],[141.9463045550002,75.01997444500012],[141.9974056660002,74.93481732700013],[142.23359663400015,74.8397868290001],[142.64460761500015,74.82408433900014],[142.925506648,74.87426662600006],[143.53590366000003,74.90615155300009],[143.73089556200011,74.94685742800004],[142.68339571,75.12357275700009],[142.48109462100012,75.20766218900002],[142.28529369800003,75.34836433599997],[142.1266175650003,75.54723856800018],[142.17260755900008,75.63147183400014],[142.65020756400008,75.73088154099997],[143.09820570500017,75.70227762500014],[143.0229036920001,75.5786963540001],[142.80020155400018,75.5596359060001],[142.51210062200005,75.40162177600013],[142.91690061300005,75.16142543200004],[143.3813936680001,75.05913872000008],[143.6723935660001,75.06252618300016],[144.03320264600006,74.99645164000009],[144.49670362000006,75.03065584000007],[144.9313966630002,75.26236114800014],[144.76570169200033,75.33371545200015],[144.84899869900005,75.40793133699998],[145.3856046200001,75.4781646450001],[145.28340156000013,75.55938528700005],[144.73501571200018,75.63188422300004],[144.5668946830001,75.70311648600017],[144.29190070000016,75.72222169400015],[143.68420366700002,75.85724778400004],[143.31739767000033,75.80290036200017],[142.49400359000015,75.89409982700016],[141.7803956780001,76.1112244790001],[141.65220670600002,75.99768388899997],[141.13200366700028,76.04403614900002],[141.00070165600005,76.0019573190001],[141.04989655500003,75.80054303500009]]],[[[142.22894999100015,-10.63192001099992],[142.18714999100018,-10.599140010999918],[142.11145999100006,-10.672280010999941],[142.15425999100023,-10.764800010999977],[142.27834999100014,-10.706370010999876],[142.22894999100015,-10.63192001099992]]],[[[142.3242599910002,-10.135440011999947],[142.22800999100002,-10.124050011999884],[142.18631999100023,-10.19142001199998],[142.277229991,-10.260800011999947],[142.33191999100018,-10.200030011999957],[142.3242599910002,-10.135440011999947]]],[[[143.84428360100003,-5.802398084999936],[143.70759571500014,-5.723989739999979],[143.73294057800024,-5.629473554999947],[143.65023768100002,-5.572717844999943],[143.61216758000012,-5.633602480999969],[143.65364056600004,-5.783324393999976],[143.71325668500003,-5.829739014999916],[143.67048668300015,-5.938793107999913],[143.79910262800013,-5.93547521499994],[143.8007816910001,-6.081443544999956],[143.92459061500017,-6.126317403999906],[143.9547116550002,-5.983517601999949],[143.8880156780001,-5.928211792999889],[143.84428360100003,-5.802398084999936]]],[[[143.1994476960001,-5.835412725999959],[143.12100263700006,-5.900534748999974],[143.11967460900007,-5.997557792999885],[143.2964937060002,-5.90973003199997],[143.2835386370001,-5.795151426999951],[143.20216360000006,-5.641556738999952],[143.17967260700016,-5.542353226999921],[143.29252655100015,-5.53728737199998],[143.35675070500008,-5.454740713999968],[143.02606165800012,-5.470754339999871],[142.93884259100025,-5.543039033999833],[143.02088968900011,-5.607621430999927],[143.060867679,-5.692378229999974],[143.1994476960001,-5.835412725999959]]],[[[142.06623869300017,-5.007393510999975],[141.99081464000017,-5.04057293999989],[141.99353071200005,-5.097257739999975],[142.13836664600012,-5.094826148999971],[142.2786716590001,-5.140406770999959],[142.2342526010001,-5.015250036999873],[142.18075560700004,-4.985996188999877],[142.06623869300017,-5.007393510999975]]],[[[144.82739266700003,63.55360398100015],[144.76210065900023,63.69346039400011],[144.4004976440001,63.82856845900011],[144.08030659500002,63.99392429800014],[144.21350056900008,64.18074987900019],[144.0480956120001,64.2684768900001],[143.7615966290001,64.31801628500017],[143.55619758900002,64.31694004800005],[143.42160065200005,64.36654163700007],[143.21420269500027,64.38331214900018],[142.88900765100004,64.19655060499997],[143.0661927020002,63.96447263700003],[143.27609265700005,63.78402568500002],[143.45239257900005,63.67957074200018],[143.64320358800023,63.61499672800005],[144.06739762600023,63.53458309600012],[144.3522946600001,63.45370326200015],[144.62229956600004,63.47561271900008],[144.82739266700003,63.55360398100015]]],[[[141.3408966190002,67.35236967500003],[141.2882996740001,67.24977166000014],[141.4008025840002,67.09733652500017],[141.81050062400004,67.04952799300008],[141.99119568100002,67.08899720200003],[142.26229861700006,67.23800715599998],[142.21299760400018,67.47795623400003],[142.4685977060002,67.60977641300013],[142.8674006130001,67.69656515400004],[142.8925015630001,67.77609047200019],[142.5503995490003,67.8229069210002],[142.1920016070003,67.77414503199998],[141.74079856100002,67.63299361499998],[141.3699037040003,67.44307293200018],[141.3408966190002,67.35236967500003]]],[[[157.8944781670001,-83.2573077649999],[157.90319334000003,-83.16618252699999],[156.84174927300035,-83.19588448299993],[156.36542162000023,-83.30535989399988],[157.8944781670001,-83.2573077649999]]],[[[155.56377809600008,-79.96281350399994],[155.34161800700008,-80.04999455199999],[156.05979920200002,-80.107750749],[155.80879262100007,-79.98606524699983],[155.56377809600008,-79.96281350399994]]],[[[156.55712453500007,-79.74174155799994],[156.2363281910001,-79.69897556299998],[156.00775577700017,-79.80732511599996],[156.3893843180001,-79.91184648299998],[156.38963040800013,-80.00812055799992],[157.0114149840001,-79.92154200199997],[156.98940409800002,-79.87183679399999],[156.3573825300001,-79.81465911599997],[156.55712453500007,-79.74174155799994]]],[[[146.44154253400006,-37.37318413899993],[146.32001545100024,-37.34060439699988],[146.33272008500023,-37.46191126399998],[146.42729911800006,-37.546980963999886],[146.3633375930001,-37.599516372999915],[146.17580551000015,-37.5068396719999],[146.08370266800011,-37.6882518889999],[146.07225631000017,-37.845393054999874],[146.2022429430001,-37.80572338899992],[146.338644218,-37.91252112199993],[146.36621938500014,-37.85083293899993],[146.28234351800018,-37.751996604999874],[146.1742007260001,-37.74096888099996],[146.15760313400006,-37.648771213999964],[146.287176734,-37.60322064699983],[146.474970202,-37.666995529999895],[146.5206223350001,-37.58397093099995],[146.4062679850001,-37.47418258099998],[146.44154253400006,-37.37318413899993]]],[[[145.95723253400024,-37.37811909699997],[145.77043179300006,-37.42657127199993],[145.92790201000014,-37.507027696999955],[145.95723253400024,-37.37811909699997]]],[[[146.42947964200016,-36.98433244799992],[146.3874563180002,-37.02448382299991],[146.42079323400014,-37.17692483999991],[146.49925881000001,-37.31075928099989],[146.66802812700007,-37.31307313099995],[146.68670290900013,-37.39075755599998],[146.75671408400024,-37.466098088999956],[146.85820018400022,-37.518317630999945],[147.01857579300008,-37.52987670599998],[147.06824862700012,-37.50005797299997],[147.02180780200013,-37.41243885599988],[146.93148124300023,-37.36771557199995],[146.80175384300014,-37.35808723999992],[146.70754555100018,-37.08862445599988],[146.55794268400007,-37.043115430999876],[146.5063957440001,-37.09308498999991],[146.42947964200016,-36.98433244799992]]],[[[147.55241882600023,-37.161625072999925],[147.42571901800022,-37.137069147999966],[147.33748613500018,-37.16547880699994],[147.36543192600004,-37.26053873899997],[147.5252289760001,-37.397444763999886],[147.58817114200008,-37.32818668099998],[147.53335426800004,-37.267441130999885],[147.55241882600023,-37.161625072999925]]],[[[147.39596334200007,-36.67932824799993],[147.2395942920001,-36.733332089999976],[147.2432187510001,-36.81748380699992],[147.1266389760001,-36.80647449899993],[147.10762985900033,-36.93398136399992],[147.01069539300022,-36.96726373899992],[146.9809557760001,-37.04215288899991],[146.90333758500003,-37.0748982479999],[146.97220333400026,-37.26318796499987],[147.03439434300014,-37.14337573099988],[147.10410616800004,-37.23465593899988],[147.21167684300008,-37.286056746999975],[147.29460737600004,-37.17053429799989],[147.31380742600004,-37.0540551229999],[147.45684128400012,-36.97697542299994],[147.5792426170002,-36.88172328999991],[147.53136466800004,-36.77418998999997],[147.37597440900004,-36.73026905699993],[147.39596334200007,-36.67932824799993]]],[[[148.80711317600003,-35.40036470299992],[148.761352976,-35.44633903199997],[148.7397174680001,-35.56123708699988],[148.61457150800004,-35.51348964399995],[148.56327115800002,-35.55464249599993],[148.43402856800026,-35.57797329599998],[148.51160436200007,-35.65931023999991],[148.44100092500014,-35.857960480999964],[148.34229186200014,-35.81895540499994],[148.23018574100013,-35.61140247999998],[148.1363897020001,-35.62486541199985],[148.0747892180001,-35.72114846199992],[148.1426606780002,-35.73821873199995],[148.28322462300014,-35.83243284399998],[148.23700519800013,-36.00070626499996],[148.17886872400004,-36.12269684499989],[148.221776534,-36.19189512999992],[148.22224944200013,-36.35231874499988],[148.17027764600016,-36.47453024899988],[148.16533,-36.57748999899985],[148.0715726330002,-36.57395576499988],[148.04600288400002,-36.5093406069999],[147.8881039920002,-36.452347148999934],[147.88077147600006,-36.58978743999995],[147.83819660900008,-36.60892964799996],[147.906358876,-36.75892533899997],[147.8959744340002,-36.825675972999875],[147.96758741700012,-36.95705173999994],[147.90471891700008,-36.99498741499991],[147.85449367600017,-37.21518432299996],[147.93241355100008,-37.27521166499997],[148.15372163500012,-37.12239193199997],[148.10383070800015,-37.04478442299995],[148.3801006330002,-36.86368555199988],[148.34048931200005,-36.77384566399991],[148.39395651700022,-36.66783537799995],[148.45935550600007,-36.414303601999904],[148.5331773590002,-36.386971072999984],[148.60898320500007,-36.28797599899997],[148.58948281200003,-36.17529713199991],[148.649084785,-36.03584398399994],[148.63150716300004,-35.944882305999954],[148.7584309670001,-35.89230871099994],[148.80814436000014,-35.92443634699998],[148.92032801300002,-35.89742454199984],[149.01159147900023,-35.91653549499995],[149.08130763400015,-35.87605263399996],[148.97325866500023,-35.79055551599998],[148.9444374090001,-35.60674009599984],[148.98295537000024,-35.52407230499989],[148.8298082240001,-35.505400617999896],[148.80711317600003,-35.40036470299992]]],[[[151.07209999400027,-23.47447000799997],[150.97845999400022,-23.48711000799989],[151.04587999400007,-23.620650007999927],[151.1366499940002,-23.676480007999885],[151.1920399940002,-23.773970007999935],[151.30103999400012,-23.74401000799992],[151.2267099940002,-23.61427000799995],[151.2347699940002,-23.49757000799991],[151.15801999400003,-23.510460007999825],[151.07209999400027,-23.47447000799997]]],[[[147.531921688,-8.947363596999935],[147.60003672100027,-8.905761528999903],[147.5143585830001,-8.813701912999875],[147.5081636860001,-8.722538657999962],[147.41375764000009,-8.711800265999898],[147.42169161400022,-8.786704137999948],[147.531921688,-8.947363596999935]]],[[[147.3976135920002,-8.34041104399995],[147.3389287020001,-8.29275841599997],[147.31991569600007,-8.471137385999953],[147.40911859200003,-8.456607523999935],[147.3976135920002,-8.34041104399995]]],[[[145.98991368800012,-6.845055878999972],[146.05741868600012,-6.811638236999897],[146.0437317090002,-6.712547377999954],[145.95330757000022,-6.735355876999904],[145.98991368800012,-6.845055878999972]]],[[[147.15792871100007,-6.403433013999972],[147.1753696080001,-6.316024515999914],[147.017608611,-6.217420644999947],[147.0007326550001,-6.150644536999948],[146.86959861800005,-6.176804624999932],[146.7429805830002,-6.235971305999954],[146.78625467300026,-6.281291082999928],[146.86100767000016,-6.257016923999913],[147.02482559800023,-6.299391802999935],[147.08131359000015,-6.370588526999938],[147.15792871100007,-6.403433013999972]]],[[[144.4547575590001,-6.034310090999952],[144.5911406790002,-6.11313317399987],[144.7545016250001,-6.162400826999942],[144.76502963100006,-6.058109163999973],[144.65879856300023,-5.99853763699997],[144.50328056400008,-5.950168188999896],[144.39054866000015,-5.954838752999876],[144.314300666,-5.995661973999972],[144.35470563000024,-6.072703398999977],[144.4547575590001,-6.034310090999952]]],[[[146.49447659900022,-5.933186284999977],[146.3921965930001,-5.914014692999956],[146.3267216920001,-5.850238635999915],[146.1033176530001,-5.761452990999885],[146.09741159600003,-5.817503950999935],[146.16293360400005,-5.88122535899987],[146.35452262100011,-5.966671987999973],[146.44377161700004,-6.033063031999973],[146.5389405840001,-6.043384339999875],[146.49447659900022,-5.933186284999977]]],[[[144.97991966800032,-5.837349447999884],[145.07600360300034,-5.839236214999971],[145.09049960200014,-5.775979834999873],[145.03187556500018,-5.721328987999925],[144.94451870000012,-5.712270497999953],[144.93637065200005,-5.792355726999972],[144.97991966800032,-5.837349447999884]]],[[[146.65359462600009,59.44268783000007],[146.6920016800002,59.39860421600014],[147.02830459000018,59.37317436000018],[147.0989077080003,59.32523339400012],[147.31790169200008,59.31170198500007],[147.44389359900003,59.23806830700016],[147.5942996440001,59.30528178200012],[147.78779571100006,59.26952558900007],[147.79229763100022,59.36140583300016],[147.91999860800001,59.39671493500009],[148.1385956260001,59.38944480800012],[148.2299955860001,59.46857952900018],[148.21690355600026,59.56141698599998],[148.11289956100006,59.622782408000035],[147.8896946760002,59.66725594800005],[147.60710166,59.67306611500004],[147.15409868500012,59.650905368999986],[146.68189964300007,59.75602315200018],[146.48030062200007,59.76809745200018],[146.28289758200015,59.74622671900005],[146.0010066340003,59.66813386800004],[145.58090162300016,59.37474630200006],[145.91499355500014,59.33963400700014],[145.8034976470002,59.292883439000036],[145.77319371400006,59.21223058700019],[145.93649263400005,59.13662766500005],[146.14179964100015,59.19065758],[146.2411035680003,59.264661403000105],[146.27780172000007,59.42197698600012],[146.40409856100007,59.466545576000044],[146.65359462600009,59.44268783000007]]],[[[152.70840471500003,60.61150969600004],[152.1817016770002,60.57838508500015],[151.5316005960002,60.64320267700003],[151.35650666200013,60.61885274600013],[151.00489755800027,60.44811606000013],[150.90299959900005,60.35415274600018],[150.90609771800018,60.28187593000007],[151.11309870800005,60.24001620300004],[151.5339966470001,60.32063938300007],[151.8768005610002,60.319658365000066],[152.15679971300017,60.240348126000015],[152.5979007210002,60.13705340700005],[152.80310060800002,60.18555512200004],[152.8625026520001,60.28079667600008],[152.81210361000012,60.43579365700009],[152.8569945690001,60.59039769300006],[152.70840471500003,60.61150969600004]]],[[[149.31950369300012,60.22474571600014],[149.61039764300006,60.07843104700015],[149.78540071700024,60.074100955000176],[150.2095945880002,60.159008126],[150.31100472000003,60.39302197800009],[150.6078945810001,60.54693903400005],[150.67469767900002,60.62776019400013],[150.59429963700018,60.70424405500006],[150.39889568100023,60.78943738400011],[150.25430265400007,60.960385126000176],[150.09770171300022,61.01994542100016],[149.7245026700001,60.96698453300007],[149.70350667300022,60.82707900200012],[149.62559470400004,60.667949744000055],[149.5344996770002,60.60927055400009],[149.22230563500023,60.475884299000086],[149.10279863900007,60.39555113400013],[149.31950369300012,60.22474571600014]]],[[[148.50599657100008,60.90256306900011],[148.69529766300013,60.731826384000044],[148.9510037130001,60.585801560000164],[149.23939566500007,60.65203100100001],[149.27250669700004,60.69669481000011],[149.12399261600012,60.905282997000086],[148.82600372000002,61.00932102300004],[148.64050264700018,60.9967246990002],[148.50599657100008,60.90256306900011]]],[[[145.52160669900002,60.43447367400006],[145.65179458700015,60.378510389000155],[145.76649456200005,60.38927191500005],[145.97009266600026,60.544363778000104],[146.15939359100014,60.61533955500016],[146.4476016440002,60.63588242600014],[146.60659763,60.624369044],[147.0207065630002,60.77061867000003],[147.2221065970001,60.67208889500017],[147.3894046910002,60.62638003000012],[147.6506045750001,60.71578442700013],[147.75230371500004,60.817617677000044],[148.18569957500006,60.94461457500012],[148.28439363500001,60.99716743100004],[148.25140363800006,61.073857654000165],[148.11210663300017,61.118849364000084],[148.07049568000014,61.22887391300003],[147.87390166100022,61.26163592300003],[147.58009365900023,61.151012906000176],[147.44090260100018,61.17473369200013],[147.38609367200002,61.28415826400004],[147.58120761400016,61.47468395300001],[147.32820171000014,61.51518665000003],[146.97059669600003,61.35704109200003],[146.67089856200016,61.29088826200018],[146.0899966300002,61.38823149500013],[146.03939860000003,61.25624485000009],[146.21130355600008,61.13662319000008],[146.4911955870001,61.00076494400008],[146.36689766300026,60.87364282100003],[146.14739959100007,60.79126866200011],[145.80380258000014,60.70020498300016],[145.51379359200007,60.57439798100012],[145.52160669900002,60.43447367400006]]],[[[151.33140571100023,61.39804385300005],[151.11659262000012,61.21313320200011],[151.1342926850001,61.122992706000105],[151.3143005940001,61.07018772200013],[151.49960368600023,61.07656987100012],[151.7117007050001,60.99248664099997],[151.8099055980001,60.90520705700004],[151.97149662100003,60.85409186400017],[152.18609664400014,60.833831128000156],[152.5337986080001,60.76925661100006],[152.81080659400004,60.696313936000195],[152.95680258400023,60.79120747400003],[152.8916926300002,60.843058430000156],[152.62980660300002,60.91353447800009],[152.40089464800008,61.024782785000184],[152.47529560600015,61.169159391000164],[152.20590157300012,61.32913589200007],[151.94389367300005,61.406104059000086],[151.71740760800003,61.266007253000055],[151.51260368300018,61.422393785],[151.33140571100023,61.39804385300005]]],[[[150.99310271100023,61.44689274700005],[151.09719857300013,61.58201807900019],[151.33200065900007,61.733494324],[151.34089670800006,61.80579025100019],[151.15060470700007,61.87149716300007],[150.84039264900014,61.75772640600019],[150.47579964200008,61.482474094000054],[150.6549986970001,61.40205291799998],[150.84049960300013,61.39896267800009],[150.99310271100023,61.44689274700005]]],[[[152.80720556100005,61.61717982700014],[153.00480658100003,61.61633258400013],[153.09530666100022,61.651994062000085],[153.13560467200034,61.78841758300001],[153.39030472600018,61.91823314700008],[153.21600372000012,62.02261935700005],[152.96290561500007,61.98020558600018],[152.70730568000033,61.83159075500009],[152.6347046520001,61.75698645200009],[152.68699666400005,61.674284895000085],[152.80720556100005,61.61717982700014]]],[[[146.5852046660001,61.95105952900013],[146.59249859900012,61.82946175100017],[146.7037046610002,61.704273333000174],[146.92629967900007,61.62997111400006],[147.28390469300007,61.759668661000035],[147.3587036240002,61.8115127440002],[147.1477046340001,61.9153831320001],[146.74420165800007,62.02728472500007],[146.5364986000002,62.223806827000146],[146.37590066500002,62.28999888400011],[146.19689959000004,62.32142498600007],[146.10139467700014,62.291409893000036],[146.0785975760001,62.19973500700007],[146.15660057300033,62.127782738000064],[146.5202947050002,62.00030539000005],[146.5852046660001,61.95105952900013]]],[[[152.87309268400008,62.5375714700001],[152.71650666300002,62.53300115400015],[152.23030062200007,62.461476027000174],[152.21220359000017,62.30930156900018],[152.0413966650001,62.14148262300006],[152.15350361400021,62.03843919400009],[152.3426975850001,62.023008613000115],[152.49710062400004,62.09510153000019],[152.53269957300006,62.15693214700008],[152.76040671300007,62.1898852650001],[153.13450664300035,62.16495530500009],[153.30320769900015,62.19994488900005],[153.39059457200017,62.299860025000044],[153.2489016840001,62.434990051],[152.97090161500012,62.52943096600018],[152.87309268400008,62.5375714700001]]],[[[148.345001668,62.695457189000024],[148.31809961500016,62.813695333],[147.99769566600003,62.93663673000003],[147.71180755600005,62.966953236],[147.17790261900018,62.968688961],[147.0933075910001,62.86354050000011],[147.85169967600007,62.629783971999984],[148.0626066330001,62.584254312000155],[148.24789463800016,62.612682710000115],[148.345001668,62.695457189000024]]],[[[149.45790064900007,63.13161438300011],[149.22250361500005,63.28714344600007],[148.98550463200002,63.29506635700005],[148.8981937000001,63.246629182000106],[148.9573975960002,63.16789394200009],[149.28799461000017,62.98368971700006],[149.2557066810001,62.809921800000154],[149.3217005900001,62.77769053300011],[149.66839571900005,62.771350461000054],[149.9020996080003,62.86816379000004],[149.79580668200015,62.97747135100013],[149.45790064900007,63.13161438300011]]],[[[157.2489016190002,63.34247373000011],[157.2313997020001,63.41281969100004],[157.0841977240001,63.53907261100005],[157.25830058200006,63.63413965400014],[157.1856997220002,63.703661841000155],[156.7742005780002,63.78880186100014],[156.68080170200005,63.99556027800014],[156.46429462800006,64.0636712880002],[156.3518066370002,64.02541561100008],[156.33020060600018,63.92110567600014],[156.37789967000003,63.815665860000024],[156.23519860600004,63.721362576],[156.24999970600004,63.669297211000014],[156.43159464400014,63.579217233],[156.49780262700006,63.45349069700006],[156.34469559800004,63.24340935800012],[156.39190666800016,63.19311793900005],[156.6405947180001,63.111113253999974],[156.95030168200014,63.14550487300011],[157.11250257300003,63.20751871900012],[157.2489016190002,63.34247373000011]]],[[[155.82820171800006,64.45927381700017],[155.81779458000017,64.33818197000005],[155.88949572700017,64.22299584500013],[156.1065067200002,64.14028104500005],[156.4217076870002,64.12943134200003],[156.9270937010001,64.26205970500001],[157.24079866500017,64.44598229800005],[157.24290470200003,64.52858193000003],[157.09060669500013,64.59799045900007],[156.78329460800023,64.61498225300016],[156.53660564200015,64.42577118200006],[156.24920661000033,64.4438080320001],[156.1576996970001,64.54159835500013],[155.89750664700023,64.57893839300004],[155.82820171800006,64.45927381700017]]],[[[147.83580071500023,64.33882318600018],[147.7489926960002,64.41914109700014],[147.3715976730001,64.51645164000018],[147.22639461100016,64.67499014200007],[146.97419756100032,64.75217975900011],[146.5252987010001,64.79357864900015],[146.3860016960001,64.8531976180002],[146.352401664,64.97377816800014],[146.53320266800017,65.27289560300005],[146.55389356400008,65.413459617],[146.37669359300003,65.47969291300012],[145.93089268400013,65.53299427300016],[145.56889370900012,65.62230898399997],[145.3592986870002,65.74340083000016],[145.08489965200022,65.7316051460001],[144.98269659200002,65.59213329400012],[144.85890158200004,65.50618408600008],[144.51240560700012,65.4614730020001],[144.27549765100014,65.56175895300004],[144.381805664,65.8709710500001],[144.06719964600018,65.98048061500003],[143.73049960100002,65.93474828100011],[143.60110464100012,65.87859237900017],[143.6287996220002,65.72659980800006],[143.91239964000022,65.49408262900005],[143.94340564100014,65.34490503700005],[143.78430169600017,65.12847960200014],[143.47889666000003,64.96556172400011],[143.66659563500002,64.71938003000008],[143.9649965860002,64.47757754600019],[144.50100655400024,64.47416644700013],[144.92959555900018,64.500374647],[144.9992976220002,64.44896625500013],[144.78489658500007,64.33474086400008],[144.69340559800003,64.23129728200018],[144.70339967600012,64.12511315300003],[145.0765076910002,64.06519746500004],[145.33970665900006,64.14749937199997],[145.60859660500012,64.15164942000018],[145.77380358100004,64.04976939900001],[146.39169267300008,64.03596004600007],[146.48120167600007,63.956293241000196],[146.35650661700026,63.82958652500014],[146.07620269900008,63.8182451400001],[145.83459467500018,63.75878207400012],[146.0540925800001,63.66425013200012],[146.4416045600001,63.61232575100013],[146.36109956500002,63.437803965000114],[146.97470064300023,63.30793408699998],[147.09989962200018,63.179586530000165],[147.25399756000013,63.14895302000002],[147.55029264000018,63.140506744],[147.76539557800004,63.18329451599999],[147.8746035620003,63.266710210000156],[147.81260664700017,63.435647804000155],[147.57550071100002,63.60440652900019],[147.5639957110002,63.68680717500018],[147.6428985890002,63.77202397300016],[147.82710264600007,63.88091998300007],[147.93769867300023,63.984863461000145],[147.91040065900017,64.19359045200008],[147.83580071500023,64.33882318600018]]],[[[155.61656168000002,65.9414316750001],[155.5839996630001,66.00002855400015],[155.2301026350002,66.07663110300012],[154.63130165100006,66.03240902000005],[154.34779366600014,65.93577037000006],[154.4530026440001,65.87504499],[154.75160258100004,65.8241998630001],[155.17160063900008,65.82231561100019],[155.42930560500008,65.85866373400017],[155.61656168000002,65.9414316750001]]],[[[146.79049658600002,66.41035825400019],[146.571502602,66.52228666900004],[146.19880664100003,66.56117601800014],[146.09779364300005,66.59388455100009],[145.91729757300016,66.77129976900005],[145.69079558200008,66.85867641600015],[145.10119658700012,66.98050151200005],[145.22900367900024,67.04803316400012],[145.26010171300004,67.1607167890001],[145.47030660200016,67.24430112700003],[145.4898065960001,67.39804920400007],[145.37910462200034,67.43265825000015],[144.8816066490001,67.35794732900018],[144.7872006030001,67.46565713200005],[144.59950263300004,67.48097757500017],[144.52529865000008,67.36864397900007],[144.28120455400006,67.28498336500007],[144.1139986610001,67.34996691900017],[144.11939962400015,67.49582544600008],[143.8623965590001,67.51750875800019],[143.6573946530001,67.43486319300007],[143.5478976600001,67.26031626200006],[143.89480569000023,67.05099331700018],[144.13040171000011,66.95574220800012],[144.2315976010001,66.786292312],[144.07620264800005,66.56576913300017],[144.08639571300012,66.4700843440001],[144.2456966330002,66.39202300900001],[144.6996006620002,66.31419921700018],[145.26690664500006,66.10782904900009],[145.57269255500023,66.06847467300008],[146.09060666400023,66.07031399800013],[146.25840767200032,65.98055772900017],[146.32330372000013,65.86885696600012],[146.71080061200007,65.75023727800004],[147.21969562700008,65.69669937999998],[147.28880257400021,65.60561508300015],[147.2633976960002,65.47033099800012],[147.33189360300003,65.36893930600013],[147.6593936710001,65.13023477300015],[147.6752016060002,64.94972998499998],[147.99490365400015,64.87063214400013],[148.4954985720001,64.93225723700004],[148.66920463100018,65.0137132430001],[148.94580056300015,65.2236450490002],[149.17649870200023,65.26944745600014],[149.3766935860001,65.1388250500001],[149.32220467700017,65.07076802000006],[148.792007559,64.83553493600016],[148.63890069800004,64.74177329100007],[148.7633976090001,64.61026676199998],[149.06869468600007,64.5959761200001],[149.35369867300005,64.67369279100006],[149.65769957200007,64.85191652800006],[149.98150657400004,64.87996287900006],[150.281600668,64.96644702000003],[150.25070162100008,65.02802567800012],[149.73319956500018,65.22990247500013],[149.59280369300006,65.33350665400013],[149.5581056310001,65.51102832300006],[149.7259066390002,65.72527982600008],[149.2971955930002,65.83184516400001],[148.96749862800016,65.81539551100013],[148.875900687,65.88848872500012],[148.87879965200023,66.01505948599998],[148.5635986860001,66.0317451730001],[148.21060170600003,66.12440878899997],[147.3894046910002,66.1570182480001],[146.97639462600011,66.26100481000003],[146.79049658600002,66.41035825400019]]],[[[155.2422946160001,66.44789610500004],[155.07879671000023,66.41730048200009],[154.99850461500012,66.34385673700018],[155.03750561000004,66.26324076600008],[155.23139965100006,66.2262358370001],[155.8515925930002,66.18015230100008],[156.2947996370002,66.22142998900006],[156.67100560400002,66.2375054740001],[156.90269465100005,66.19751759300004],[156.94990572100016,66.05924334800005],[157.05720564900014,65.97601725200013],[157.25799564800013,65.92083851200005],[157.7765047050001,65.87552527300005],[158.08970658800013,65.87238222700006],[158.42810061500006,65.91154599900005],[158.4528956260001,65.9857298660001],[157.9364015790003,66.08733596700017],[157.61590559600006,66.131718144],[157.41780065600017,66.27506662600018],[157.7301026570001,66.41492873900006],[157.66470369600017,66.46886326800018],[157.39320362600017,66.45421337800019],[157.10729959000003,66.40864080199998],[156.87489372200014,66.41532453200006],[156.71319557800018,66.54890759400007],[156.60299668500022,66.58286000100009],[156.28979463500013,66.55198928400017],[156.01390060400013,66.488845222],[155.65109260700012,66.44770516500006],[155.2422946160001,66.44789610500004]]],[[[153.85949667600005,66.65573159700006],[153.71470667500012,66.76284611700015],[153.55859356000008,66.79514276300017],[153.32589767900004,66.71696072900016],[153.2586055810001,66.60912938900009],[152.9602966640001,66.39678443300016],[152.98930358100006,66.26001272800016],[153.33000162600013,66.24509679600004],[153.64419559100008,66.35607956400014],[153.8937986090002,66.31504629200015],[154.0393066040001,66.19482432000018],[154.26010169200003,66.20256869500014],[154.70840459900023,66.40528401800009],[154.9953007160002,66.64058683900015],[154.89059465200023,66.70681343000018],[154.6174926330001,66.7315945260001],[154.06260661900012,66.6355654080001],[153.85949667600005,66.65573159700006]]],[[[148.9084927120001,67.50298191400015],[148.9328005660002,67.57316057200018],[148.8231045880002,67.77770030000016],[149.33450361200016,67.89761113600014],[149.3616946730001,67.9574051190001],[148.90249663300006,68.04514755200006],[148.68730166300008,68.14703645900005],[148.5805966820002,68.25599818200016],[148.44410660900007,68.28167161700014],[148.19709762200023,68.21698595500015],[148.02020258500022,68.06572596300003],[147.5491025780001,67.81894747800004],[147.63890058900017,67.75142336900018],[148.1259005630002,67.64694864500018],[148.27929660000007,67.58062314800003],[148.344100614,67.42703499800012],[148.4759975720002,67.35755807400005],[148.65130658500004,67.3662936930001],[148.82940660500003,67.42665378900011],[148.9084927120001,67.50298191400015]]],[[[149.40260355700013,69.15849781500015],[149.0946046580002,69.20536070000009],[148.68710368200027,69.11568758000016],[148.5328976180001,69.04300541499998],[148.11990364700011,68.74762513500013],[148.13529969400008,68.64983363800002],[148.43980367500012,68.51670018200008],[148.65179458000023,68.60355111600006],[148.76989760700008,68.77103361100018],[149.43310563800026,68.97046138400009],[149.59759562700003,69.05023044800015],[149.40260355700013,69.15849781500015]]],[[[150.05830358300022,75.19753651500014],[149.7203977170002,75.18836570700006],[149.37809772200012,75.24226335600008],[148.89237967600025,75.17137391300014],[148.5275876830001,75.2058994750002],[148.54289270300012,75.33083945300012],[148.296905637,75.3696746550001],[147.94659455500016,75.3604731690001],[147.46760566800003,75.39896555100017],[147.18020663700008,75.27544546700017],[146.85650658800012,75.30607998200009],[146.66709871000012,75.38556104300005],[146.74600259400006,75.48944853100011],[146.4033966600001,75.5369529670001],[146.24909956900012,75.35190468500008],[146.2100985730001,75.17991926300016],[147.1336976350002,74.98138248700019],[147.56370569700005,74.94272917300015],[148.02760363700008,74.80986276400017],[148.4100036630001,74.76627301200006],[149.43530270300005,74.70674507000018],[149.85240162800005,74.79618986800006],[150.3903045650003,74.83024989900008],[150.75309764200006,74.90481698600007],[150.70030171100007,75.02118043399997],[150.88989264900022,75.09643316000012],[150.28149472100006,75.14155713600013],[150.05830358300022,75.19753651500014]]],[[[149.48269666600004,76.78893555000019],[148.78971862900016,76.75394445700005],[148.4870906850001,76.6424026150001],[149.26820359600003,76.64379853800006],[149.23550461800005,76.69928371900016],[149.48269666600004,76.78893555000019]]],[[[159.6316678510001,-79.82316691899985],[158.9601666650002,-79.79376754899994],[158.63391268800012,-79.7188219059999],[158.33098623000012,-79.74963111199992],[159.15875213400022,-79.90675464299994],[159.6316678510001,-79.82316691899985]]],[[[157.4717328590002,-79.5226428819999],[157.05199011800016,-79.56295716999995],[157.40820924000002,-79.64045493599997],[157.74988156300003,-79.57994595299982],[157.4717328590002,-79.5226428819999]]],[[[159.36048015000006,-75.65303382999997],[158.91688752800007,-75.67425631499998],[159.27912385600007,-75.75790774099994],[159.36048015000006,-75.65303382999997]]],[[[157.5316926150001,51.43869431900015],[157.63259865900022,51.536097231000156],[157.77999861800015,51.549814215000026],[158.0092926200001,51.69964693700018],[158.08110072000022,51.79267064000015],[157.82429462900018,52.01945459800015],[157.71040367600006,52.22916746800007],[157.70950362700012,52.37402938600019],[157.85760464800012,52.382696442],[157.97090166000032,52.28405753500016],[158.15420566800003,52.33462656200015],[158.33859261800012,52.283638607000114],[158.38670356900025,52.386305354],[158.26469457500002,52.40657279600009],[158.1251067180001,52.511932816000126],[158.10490465500004,52.61645397500013],[158.29919465600005,52.7335862110001],[158.39379868200012,52.71879684600003],[158.47050466400003,52.82624731200008],[158.28269957300017,52.89231162900012],[158.1793976460001,53.083806601000106],[158.1847996150001,53.27760844000005],[158.10600268400003,53.43416680100012],[157.97099268700015,53.47171186000003],[157.88040158,53.45014321200017],[157.78590366900016,53.27847043500009],[157.47720370600018,53.12937750000009],[157.48350572400022,53.017784194000114],[157.39779657300005,52.866440047000026],[157.16889970500006,52.71302875500004],[157.05650358000003,52.56748404700005],[157.0800015760001,52.49162363199997],[157.2261967190001,52.38482159000017],[157.36909459000003,52.34513981600014],[157.42239360300005,52.27565031800009],[157.312499644,52.22337641100006],[157.04660069700003,52.143864840000106],[156.97149666500013,52.03565597800002],[157.1405026560002,51.81675989400003],[157.03089871000032,51.75657095600019],[156.45329270900004,51.629485714000054],[156.46209756300004,51.40042472800013],[156.54600561100006,51.26030042900004],[156.68119766300003,51.20483871699997],[156.6721956660001,51.080549677000135],[156.75270066100006,50.9861340760001],[156.73300168000003,50.88269351200006],[157.2492067200002,51.236760189999984],[157.51510667300022,51.37824956500009],[157.5316926150001,51.43869431900015]]],[[[158.69889861700017,64.20564580800016],[158.58430459000033,64.23108304000004],[158.27059962500016,64.45068253400012],[158.1477966970001,64.50197793700016],[157.86599761500008,64.49685055900011],[157.6853945910002,64.39739592500018],[157.63299562600014,64.25441507400018],[157.68150371200022,64.08475931800007],[157.91099569500034,63.8489167030001],[157.9535066960001,63.730972093000105],[157.802993699,63.58925758000004],[157.61300663100008,63.47982060200019],[157.65159557200002,63.346559573000036],[157.8769986950001,63.273641542000064],[158.14639272800002,63.273653444],[158.3907925970002,63.30261174600008],[158.56359860700002,63.35741614900019],[158.87420662500017,63.574345168000036],[159.30589257600002,63.83186070300019],[159.5314026520001,63.91975468099997],[160.27949572600016,64.08952074200005],[160.62480163800012,64.17754480700006],[160.83270267700016,64.26991908000008],[160.8190006120002,64.3667704630002],[161.01460271700012,64.53750932800011],[160.85719258600022,64.58270069399998],[160.54829363800002,64.59169598500006],[160.41160558400009,64.68466436700015],[160.6558986670001,64.76517338500014],[160.74600261700004,64.84076172300018],[160.66850270200018,64.91245029700008],[160.4972996480002,64.93971143100009],[160.2982936520001,65.05110608700011],[160.38079856900015,65.13779625500013],[160.22419762800007,65.27281178400011],[160.03709360000016,65.31331079400013],[159.71710170600034,65.31045759400013],[159.47869858600018,65.25923109000018],[159.36050469900022,65.18684748800013],[159.39549260700005,65.02979610400001],[159.7075956220002,64.70949173200012],[159.86990363300015,64.35935415500012],[159.7879946690001,64.24682291400012],[159.68760662700004,64.20763734899998],[159.48179670500008,64.25884725700013],[159.46490465600016,64.5239656810001],[159.3634036640002,64.58817089200016],[159.072006632,64.56756297700008],[159.00120570200022,64.38692055800004],[158.89689660500017,64.25673417900009],[158.69889861700017,64.20564580800016]]],[[[157.5328975970001,65.73371135000014],[157.73049962400012,65.6341194210001],[158.076598632,65.60637817100019],[158.29890464200002,65.52570822000013],[158.5682066420003,65.48431704100011],[158.82069370500005,65.60356285700016],[158.62309268500007,65.72547076600006],[158.01919567100003,65.74816175100017],[157.64460758000007,65.78689787900015],[157.5328975970001,65.73371135000014]]],[[[160.42995341200003,-83.8472536679999],[160.03315999500023,-83.7548198479999],[159.44479207100005,-83.83174999099998],[160.42995341200003,-83.8472536679999]]],[[[160.7047803700001,-77.80137044099996],[160.6479388040001,-77.7321687509999],[160.26824011700012,-77.74805313399997],[160.00789290700004,-77.84722801899994],[160.44276817500008,-77.94051612399994],[160.75829917500027,-77.92720431499993],[161.1482415600002,-77.83227737999988],[160.7047803700001,-77.80137044099996]]],[[[158.61450156900014,53.819700652000165],[158.72639461200015,53.82665075900013],[158.84860259300012,53.970285064],[158.93530265300012,53.913574783000115],[159.2151036570001,53.877043934000085],[159.38749660700012,53.897922248999976],[159.45860263800012,53.97396622800011],[159.4134976050001,54.05686509400016],[159.2828976630002,54.17859899500007],[159.18780564200017,54.406864370000164],[159.24029563400018,54.45045646900019],[159.38209564300018,54.426735851000046],[159.59269666100022,54.32338145200015],[159.72810362400025,54.31233410400017],[159.94180259300003,54.43372401100004],[160.18139661300017,54.68777027600004],[160.34139960100003,54.760102916000164],[160.58470160800027,54.81354425400019],[161.07800259400017,54.87954805400017],[161.57229566200022,54.901936620000015],[161.87879973400027,54.88284398600018],[162.0411986050001,54.83424688400004],[162.12100270500002,54.88825718600009],[161.96200571300005,55.03133090900013],[161.80020162200015,55.12814239400012],[161.72430466200012,55.221059814000114],[161.6878966920001,55.364419527],[161.74029565700016,55.626778629000114],[161.9105986630001,55.852381912],[162.03619360300002,56.109138047000044],[162.43829361500002,56.245341794000126],[162.3014986080002,56.29703634400005],[162.0102997250002,56.31002594700004],[161.8722077020002,56.277606924000054],[161.70172163500024,56.11749245700008],[161.28990163300023,55.95458463700004],[161.02250668400006,55.75330010500011],[160.7548976610002,55.398359362000065],[160.68440267000005,55.15843207700016],[160.45919769500017,55.07421306100014],[160.10620172200015,54.831885870000065],[159.77549758700013,54.694892379],[159.39950569400003,54.60883822900007],[158.79870562600001,54.54214845500019],[158.62219263600014,54.46900796800014],[158.5325926060002,54.34433285800009],[158.4709926580001,54.17673385400002],[158.50889562400005,53.882221101000084],[158.61450156900014,53.819700652000165]]],[[[162.50089334000006,-84.193928482],[160.93427579100023,-84.17160209999986],[161.07138450900015,-84.26261418199988],[161.90766542100005,-84.27430912099987],[162.50089334000006,-84.193928482]]],[[[161.9816392670001,-77.28613934299989],[162.05283115400005,-77.22758569199988],[161.58434964000014,-77.14681445599996],[161.44506330800016,-77.25031189099991],[161.0081557640002,-77.31408830799995],[160.83244803700006,-77.26429190399995],[160.8390110710002,-77.17237072099994],[160.4233052210003,-77.22094554499989],[160.34988776700015,-77.41628637899993],[160.5111541370003,-77.44592832099994],[160.4017390790001,-77.60455623699988],[160.58173515600015,-77.65298186299998],[161.18841888600002,-77.71494795699988],[161.83239137300006,-77.8248268719999],[162.65418818800003,-77.80322971599998],[163.24071896500004,-77.68340751299996],[163.6073231030001,-77.65837360799998],[163.69552054300016,-77.60351838799988],[163.25615307300006,-77.53044006599998],[162.96245274900002,-77.57196101299996],[162.81995413300024,-77.49881446299997],[162.78280384800019,-77.37026770099999],[161.9816392670001,-77.28613934299989]]],[[[160.73295011300002,-76.58074106099997],[160.55627947200003,-76.54561936399989],[160.30428818400014,-76.68442272899995],[160.47904121100032,-76.70743391299999],[160.7016552580002,-76.83232767199996],[160.69837625800017,-76.94113051799997],[161.0361717840001,-77.00238096399994],[161.1210779810002,-76.91723102099996],[161.46351289100016,-76.83320760399994],[161.17242218700028,-76.71279514799994],[160.63853128900007,-76.63660076699989],[160.73295011300002,-76.58074106099997]]],[[[161.4331108780001,-71.95501950399995],[161.62769851200017,-71.98083225599999],[161.65945923200013,-71.86347818899992],[161.35687592800002,-71.89016634699993],[161.4331108780001,-71.95501950399995]]],[[[161.74250414500023,-71.45761035199985],[161.66259674700007,-71.57508712899994],[161.87653803800004,-71.56391019199992],[161.74250414500023,-71.45761035199985]]],[[[160.8948975720001,56.4552630390001],[160.73730471600004,56.46623025600013],[160.53799462600023,56.391307106000056],[160.49609365900017,56.2436669220001],[160.6103056400001,56.03362799500013],[160.71659873300018,55.94078215700006],[160.8224026590002,55.90242539400015],[161.02049268000007,55.92737379400006],[161.13729869200006,56.033115861],[160.99380470000006,56.422528186000136],[160.8948975720001,56.4552630390001]]],[[[162.7608946280003,57.088677930000074],[162.67469765100032,57.36741862400004],[162.47720358300012,57.404345936000084],[161.85659758100007,57.40370874400014],[161.74470571100017,57.33159755400004],[161.85060167000006,57.15980106100005],[161.7021026770002,56.98132553200003],[161.75729365300003,56.821190948000094],[161.3903045950001,56.66149507300014],[161.32229567700017,56.60659243300017],[161.47689870800002,56.47834981800014],[161.74499471900003,56.45561809600008],[162.0014957090002,56.524089863000086],[162.19569367700024,56.649024645000054],[162.3247986230001,56.664585145000046],[162.58030669200002,56.59935616900009],[162.76820364800005,56.66947531500017],[162.71339471800002,56.90791246500015],[162.7608946280003,57.088677930000074]]],[[[162.76919129800024,-74.3420374399999],[162.33147623900015,-74.34468360799997],[162.5553765740002,-74.48848191899998],[162.63238047900018,-74.58876355099994],[162.39030934200002,-74.67858338999991],[162.5244817040001,-74.73157061799998],[162.7934284160001,-74.69266381999995],[162.66669801600005,-74.52050968599997],[162.76919129800024,-74.3420374399999]]],[[[164.3840782320001,-78.39525701399998],[163.73917485100003,-78.4036892119999],[163.78014695100012,-78.50792224199989],[164.13932857600003,-78.4779946459999],[164.3840782320001,-78.39525701399998]]],[[[164.53374237100013,-77.94027036599994],[164.3201370280001,-77.85144797399994],[163.84712609400003,-77.86323846699992],[163.69306347100007,-77.91976336199997],[163.78222650400016,-78.01949379899997],[163.50166431200012,-78.14899291299997],[162.9663505010002,-78.11718173399993],[162.77478773000018,-78.15166355699995],[162.59467112100026,-78.30629061999991],[162.8213594460001,-78.3919114599999],[163.52548267400016,-78.34585204499996],[163.4471265970002,-78.24379546099993],[164.1922301410001,-78.14305936199992],[164.38043327900004,-78.09152270699997],[164.53374237100013,-77.94027036599994]]],[[[165.56704435300003,-78.26846257399995],[165.36166417700008,-78.22124410899988],[164.76084023400006,-78.29642947499997],[164.82552022400023,-78.37364678299991],[165.48182148800015,-78.39519079699994],[165.56704435300003,-78.26846257399995]]],[[[167.29650843000002,-85.26478492899997],[167.53219557000023,-85.18536921399993],[167.1267449920001,-85.0710753809999],[165.41327190900017,-85.18167832599988],[167.29650843000002,-85.26478492899997]]],[[[165.41168639100022,-78.17795692699997],[165.6221193460001,-78.11009013899996],[165.42575139600024,-78.01497997499996],[165.14083815900017,-78.16528348399987],[165.41168639100022,-78.17795692699997]]],[[[166.23995961600008,-50.60540615699989],[166.27499362400022,-50.5398462629999],[166.10830657100018,-50.53456616699992],[166.0877377160001,-50.667067962999965],[165.9080196530001,-50.76068258999993],[165.96386760400014,-50.841791583999964],[166.12188760100014,-50.820406499999876],[166.2294005970001,-50.75207621899989],[166.1413575890001,-50.69595350999987],[166.23995961600008,-50.60540615699989]]],[[[166.37368885900003,-78.14719147499994],[166.02364200500006,-78.12993983399991],[166.17960514600009,-78.24879962699998],[166.48649222100016,-78.26565312599985],[166.74582656300004,-78.19755047099994],[166.37368885900003,-78.14719147499994]]],[[[162.65190172400003,59.25462088900014],[162.9028015900002,59.476967802000104],[163.1354066120001,59.543949267000016],[163.2908017330002,59.627082324000185],[163.30340560100012,59.78280031600008],[163.49240058600014,59.896344426000155],[163.60479771700022,59.91842520900002],[163.56739766500016,60.01134262900018],[163.79930061800007,60.05495015100013],[163.78320267000004,60.20490407500006],[164.02850359300032,60.29860034200004],[164.42039461500008,60.32425935900005],[164.62600672300005,60.371113192000166],[164.78819269400014,60.06253040900009],[164.84199562800006,59.8247706840001],[164.9409025880002,59.86957246000014],[165.05209373100013,60.01691693000015],[165.0070956510002,60.09819205400015],[165.16769358700014,60.11740371100012],[165.38420066100014,60.265213210000184],[165.51240572500035,60.243007536000164],[165.67869564400007,60.29882967000003],[165.84719872000016,60.40434458800013],[165.98759459200005,60.36777115900014],[166.02200364600014,60.45742366100012],[166.16209357900004,60.50449123200008],[166.3027957260001,60.472584009],[166.18069469900001,60.360141784000064],[166.22120661600013,60.21378537200013],[166.12210066900002,60.094311736000066],[166.06869470200013,59.84838049400014],[166.17480473500018,59.801640822000195],[166.3307956420001,59.840392372],[166.71060163500022,60.084370463000084],[166.82769766100012,60.19934570000015],[166.86259470900006,60.30968993500005],[167.13760361100015,60.34588936300008],[167.4205017290002,60.41733402400018],[168.27670257800014,60.58823851500006],[168.69659468800035,60.511544604000164],[169.10479773200007,60.5493272060001],[169.20840459300018,60.542109884000126],[169.57200669200006,60.42376143500002],[169.7534026430003,60.28688897900014],[169.90739463300008,60.22789597100012],[169.7592007410001,60.1889855],[169.87300066700016,60.06734883000007],[170.0534057110002,60.02041905700008],[170.1128996210001,59.929003506000186],[170.2671046790001,59.94040591200019],[170.41690068800017,60.09143171400018],[170.44380173600018,60.26915723000019],[170.57659857500028,60.31976934099998],[170.75889558200015,60.445525213999986],[170.7248995880003,60.52652625000002],[170.93870567800002,60.53230942800019],[171.24639863800007,60.58823851500006],[171.35499558100014,60.676015146000054],[171.50639370800013,60.72121690600011],[171.65949973000022,60.848170719999985],[171.97695962000012,60.831920054000136],[172.0588836710001,60.940066386000126],[171.99400371700006,61.03945949700005],[172.20770268500007,61.001424935000045],[172.21018959600008,61.19254540400004],[172.45840473900023,61.15102363400018],[172.6117246680002,61.20629004800003],[172.60935963000009,61.40995353200003],[172.8392026470002,61.443558593000034],[173.04801966000014,61.37013764800008],[173.20208759000025,61.43182811999998],[173.25439468900015,61.54663990900002],[173.43569961400033,61.559438405000094],[173.4217066970001,61.66737183700013],[173.4881436730002,61.73061128500012],[173.82820167600005,61.660802604000025],[174.10585071100002,61.78911579600015],[174.49621572300032,61.817306818000134],[174.60275273000002,61.965433991],[174.80061359,61.936631760000125],[175.12716667000018,62.00655862500008],[175.14469859400003,62.125932684000134],[175.37438973100018,62.1129471050001],[175.6138607050002,62.175724877000164],[176.28027364100012,62.31128958800008],[176.44079563600008,62.41017777300016],[176.6905217010003,62.494631483000035],[177.17303467500017,62.586852535000105],[176.94912772200007,62.64574596600016],[177.0136107090001,62.77603058100004],[177.1474916630001,62.787147164000146],[177.2505496780002,62.70325135400003],[177.26553367100018,62.572965733000046],[177.51248163800005,62.57130293100016],[177.68330365100007,62.5160675300001],[177.86523470400004,62.55546297800004],[178.14080770800012,62.515460345],[178.19970667100006,62.459156922000034],[178.84829666300004,62.36878709700011],[178.9573056610002,62.264606579000144],[179.14971962500033,62.330455313000016],[179.1305237250001,62.47684659300006],[179.4024656890001,62.536022327000126],[179.42358372700005,62.605751547000125],[179.60467575100006,62.70602861300006],[179.50915575000022,62.860476411000036],[179.41998269300018,62.881870381],[179.27723670300009,63.04105713900003],[179.41247569300003,63.05826166600008],[179.3274536910002,63.19243079000012],[178.89443971100002,63.3327190390001],[178.96812468600012,63.42526732000016],[178.70840471100007,63.540186230000074],[178.64581268100017,63.62329028600004],[178.75027466400002,63.678017743],[178.66525266100007,63.94691305300017],[178.37966965300018,63.99525534500003],[178.48745774300005,64.11663670200011],[178.36746174600034,64.27220700400005],[178.23080470500008,64.30664757400001],[177.99801662300013,64.20775117500017],[177.8027647140001,64.25304094500007],[177.41552766100006,64.44747830000006],[177.37579358400012,64.57443747800005],[177.46997063600008,64.72222535100008],[177.31747464800014,64.77223027700018],[177.00219774200002,64.70777461500006],[176.73080462500002,64.57027117000007],[176.55773961400007,64.67110580000019],[176.42526262900014,64.67499718300019],[176.22024563500008,64.86027865000005],[176.45968660200003,64.80638234200018],[176.65887465200012,64.86000372300009],[176.89553869500003,64.83250655400008],[177.03579660100002,64.76888941800007],[177.2958065900002,64.82057290400013],[177.1441347110001,64.94777599600008],[177.44052165800008,64.9166776260002],[177.48773172100016,64.81334066200003],[177.71469069300008,64.70583655100012],[177.90246560900005,64.70333438600011],[178.29385371600006,64.65638114299998],[178.89581266600032,64.69805395399999],[179.25582865100023,64.80694627600013],[179.46691866900005,64.81250079600017],[179.76913472600017,65.00446582400014],[179.99998860100004,65.06727075400005],[179.99998860100004,65.93052128700015],[179.99998860100004,66.69255313000014],[179.99998860100004,67.45458581100019],[179.99998860100004,68.21661815700014],[179.99998860100004,68.97865016800012],[179.2983706660002,69.26707799400009],[178.66598473700014,69.29726189800016],[178.75204458700023,69.41023620700003],[178.18823268400024,69.44830111200014],[177.93147269300005,69.50888249000019],[177.5701135920001,69.53070393700011],[177.52542061400004,69.58293744300005],[177.07130469000003,69.62321483500017],[176.2959286890001,69.78409809000016],[176.0328525990002,69.86717046200016],[175.38418566200005,69.80585013500018],[174.16870174100006,69.89012899800008],[173.95675660200004,69.84703679500007],[173.6820067000001,69.86162432500015],[173.5015106300001,69.91927606000013],[173.42378272700012,69.79303940200009],[172.93125874300006,69.87900570900018],[172.7035215950001,69.9815194030001],[172.43290665400002,69.97585776300008],[171.86419670300018,70.01956938800004],[171.41418472600014,70.09687501000019],[170.9484097420002,70.09009254200015],[170.61137358300005,70.12858475600018],[170.5089566170002,69.85623811400012],[170.53904764900017,69.74892427200007],[170.16506959200024,69.70090233700012],[170.16345171700004,69.54281947500016],[170.57943769300005,69.53679992800011],[170.8427426090002,69.33511272900012],[170.9115146160001,69.1641822540002],[171.03350869100007,69.07669144599998],[170.98448159800012,69.01051732600018],[170.5863187330002,68.82440320100017],[170.09342963400002,68.838648245],[169.87225367200006,68.78423997000016],[169.6134486650002,68.80017061600006],[169.42349261100003,68.91926455200013],[169.37872268600006,69.08057461400011],[169.242950607,69.15239478300003],[169.02326964200017,69.14616820300017],[168.77796972500016,69.2024912390001],[168.379745672,69.2123716590001],[168.25567657300007,69.34744234100015],[168.23715172900017,69.56777675900008],[168.00524860800022,69.67661610800019],[168.01394667700004,69.73319144000004],[167.80799862200013,69.79900614300004],[167.64691168600007,69.76540527300006],[167.22734060200014,69.59574767300018],[166.87712071500005,69.51867104400003],[166.15638768200017,69.53515908600002],[165.6757966790001,69.57629914300003],[165.2415006030002,69.57165271900016],[164.6688996040001,69.54107218400009],[164.3554995740002,69.58611083200014],[164.0231936570001,69.76293998700004],[163.84010271700004,69.68607760000003],[163.63029462800012,69.65948685000006],[163.24800071800007,69.70380968400008],[162.8726956380002,69.64685230500015],[162.43189973200003,69.67460998300004],[162.19090258100005,69.6507436870001],[162.04539458600004,69.51149160900013],[162.20410173100004,69.44718682100006],[162.17669659600017,69.14854849599999],[162.40280161900023,69.11787626200004],[162.71029659900023,69.25235216400006],[163.0032955800002,69.25126117500014],[163.11090060900005,69.18472914800009],[163.36039768100034,69.15420929800013],[163.70410164400005,69.19619693300012],[164.08790563800005,69.02509831700019],[164.23510761600016,68.99464753300009],[164.54409759200007,69.00046122100008],[164.77360566800007,69.10580581900012],[165.01229863400022,69.08928810500015],[165.3011936680001,69.0269294270002],[165.36250259500002,68.85676120200009],[165.1119996960001,68.76429590200007],[165.08670059700023,68.66091149700014],[165.25210572200024,68.60954048800005],[166.04640169000015,68.6744782780001],[166.33540367700016,68.5861928650001],[166.63169859000004,68.42547842099998],[167.30795271800014,68.45432692000014],[167.55026264200012,68.44903173600005],[167.82260157300016,68.3225754720001],[167.79499862500018,68.15563494999998],[168.09942666600034,68.12867120600009],[168.47352559000024,68.15865696200012],[168.7252197260002,68.10185297100008],[168.6210326690001,68.03387925700002],[168.1708527190001,67.87299650400013],[168.1890867110002,67.78252257700012],[168.46928367600026,67.58185076200016],[168.6393736140002,67.50269978000006],[168.92140169000004,67.45438028700005],[169.61413564600014,67.37619707900012],[169.88484161400015,67.24346193100007],[169.9124147230001,67.02246483900012],[169.63058462800007,67.03179624400013],[168.74139361400012,67.1061177420001],[167.9381866770002,67.08071856400016],[167.66560366500005,67.13910958300005],[167.38209568100024,67.28396127600013],[167.00318873000015,67.63918884700013],[166.80403169300007,67.643774586],[166.3011015760003,67.5493631760001],[166.01969862300007,67.5404139850001],[165.80780059000006,67.58352228100017],[165.65020773400033,67.76699610700012],[165.5196986520001,67.80052170800013],[165.06950361400027,67.80527491700008],[164.58520462400008,67.98180551000007],[163.90330461400004,67.87908478300017],[163.40170269400016,67.98755096900004],[163.22068761600008,67.98848186300012],[163.00810260200035,67.9310517450001],[162.98107867500005,67.8385257600001],[163.04640169700008,67.74316752900012],[163.39070161300003,67.42853787400014],[163.6614986090001,67.37677023400016],[163.91090364700005,67.43073510600004],[164.0057986940003,67.639028753],[164.2082067360003,67.66985353700017],[164.44540369900005,67.57720450500005],[164.41960168700007,67.48998812000008],[164.9416966900003,67.36569874600019],[165.21620167200012,67.22151106800004],[166.07279965600014,67.27807768200006],[166.32789567100008,67.25972902600012],[166.49479663000022,67.17480945000005],[165.93980366300002,67.0437446470001],[165.86369363500023,66.97616739700015],[165.92919971700007,66.86570346800016],[166.12150572200005,66.78404931500017],[166.38999970600003,66.77464196900019],[166.9024047260001,66.83313189600005],[167.46644562200015,66.82140511000006],[167.85227971300014,66.77877022400008],[168.13999960400008,66.77896015800019],[168.52650458300013,66.81303477400007],[168.99931365900022,66.8812451930001],[169.22248870500005,66.71293959500014],[169.0709536180001,66.63796179500002],[168.49937470900022,66.54490121200007],[168.06163065300007,66.54761007500008],[167.6360016330002,66.49188232100005],[167.0662846790001,66.52245481],[166.7004546710001,66.59052759899998],[166.5578007140001,66.51254337700016],[166.5424956940002,66.43477339700013],[166.40879863800012,66.36175562099999],[166.07240268900023,66.30879004000013],[165.89430266900013,66.38929235200015],[165.649902633,66.39892869100015],[165.6018986350001,66.25029994600015],[165.43879669000012,66.20290380400007],[165.16889957500007,66.31905971500015],[164.96229572000004,66.510788542],[164.83560157700026,66.54681630900018],[164.53930666400015,66.55063124800006],[164.3018946200001,66.512833559],[163.94410671300034,66.40491806400019],[163.66540558200006,66.42959204000016],[163.5119936200001,66.59184741300015],[163.1083986110002,66.63949585100016],[163.00889569800006,66.51266558500015],[162.8509067130001,66.46277465400016],[162.5932005740002,66.5781218790001],[162.58009362400003,66.71457959800006],[162.48410071600017,66.80917457200007],[162.09779371800005,66.87399702600015],[162.11129763500026,66.92794681100008],[162.5886996590002,66.97492452800009],[162.44490073400016,67.08286265400011],[161.97720361200015,67.07119605100019],[161.6916046780001,67.09771086100005],[161.26519765000012,67.1650279370001],[161.006698582,67.12122494900018],[160.928695585,67.04723068100003],[161.09559671200032,66.92679446700015],[161.5034026210002,66.75923033200019],[161.51739469900008,66.68555625300019],[161.28790271600008,66.52914625100004],[161.377197646,66.38640814000007],[161.2788997140002,66.36579184300018],[161.0301965770003,66.4233438340001],[160.78779562500029,66.52435414900003],[160.59030172500013,66.50060251800011],[160.5679936250001,66.43409463100011],[160.8791965910002,66.2987496930001],[161.34699966000005,66.16177984000007],[161.56120271600003,66.14967117500015],[161.82409658400013,66.17880935200009],[162.2140956420002,66.14518467700003],[162.97199973300008,65.96161278300013],[163.17199663700023,65.92494380100015],[163.6369015790001,66.01856161300014],[163.95660362800004,66.1632517020002],[164.3468016730002,66.2005846990001],[164.52360568300003,66.14798507100011],[164.32400457200015,66.0476922470001],[164.0074006430001,65.97656626600008],[164.0187076630002,65.91294913000007],[164.212905631,65.8699409140001],[164.4951016800003,65.92736985900012],[164.65170262100014,65.92612581700007],[164.78840660000003,65.85793149100004],[164.9678956690001,65.87265748900012],[165.41889972800016,66.0653465470001],[165.6703947100001,66.01056494200009],[165.73510769600023,65.93152795300011],[165.6519017170001,65.83865043100008],[165.48150667800007,65.75792750700015],[165.10150169700023,65.66265477200011],[165.08770759900005,65.57465333800013],[165.33410671900015,65.3838709960001],[165.04330463500003,65.37337953500008],[164.64549263700007,65.47313155900008],[164.4521947170001,65.47209337700019],[164.2727046430001,65.2788848080001],[164.12179568400006,65.21708386299997],[163.93359362700005,65.28321925800009],[163.90299968000022,65.34564532600012],[164.23669464500006,65.56170564500002],[164.06469765700012,65.58770010600011],[163.84950268600005,65.56152979200016],[163.62309272900018,65.49144367100018],[163.42449962600006,65.48714727500015],[162.98559568300004,65.58241313600018],[162.68730168600007,65.58886720200002],[162.4275056030002,65.56915229500015],[162.24719259300014,65.49188539700015],[162.28829962500015,65.40061803800006],[162.85009769200008,65.41649571000016],[162.96530158700023,65.33835172900018],[162.91209360100015,65.18275862800004],[163.17170762900014,65.03989059700012],[163.02760259700005,64.92455896200005],[162.6246945690002,64.90992516500006],[162.33909563500015,64.944197761],[161.8946986950001,64.9512633700001],[161.7906036720002,64.88720383700019],[161.82550072000026,64.82013101000018],[162.53399667700023,64.66561263600005],[162.62399266800014,64.55797944400001],[162.28970359400023,64.42627510200003],[162.3049006550002,64.29505791600013],[162.40499868400002,64.19482628000003],[162.70700066700022,63.99710539800009],[162.6958006010001,63.89374848500012],[162.59370466100006,63.83024685200019],[162.20599369500007,63.80946677200012],[162.11779763300024,63.854207695000184],[162.29200761200002,63.996384387000035],[162.21569859700003,64.06660059600006],[161.89750663300003,64.10526162100012],[161.80490068400002,63.95747257500011],[161.67120362900005,63.908692078000115],[161.47819572300034,63.92821218900008],[161.42340070800014,64.01481837100005],[161.6714016090001,64.13238445400009],[161.72160367700008,64.1942774330002],[161.31559769800003,64.19530756900014],[161.18490572300004,64.14321119100003],[161.02279669700022,63.918892854000035],[160.73500069900012,63.776773159000186],[160.4756015830003,63.692583647000106],[160.15429657900006,63.64227295],[159.82589763600015,63.61237570700018],[159.65170257700004,63.43446863800011],[159.44880670800012,63.39514175400012],[159.08009366000022,63.360724318999985],[158.8399967260002,63.27829249200016],[158.73449672800007,63.20259736800017],[158.62669371800007,63.049442563000184],[158.2733006100001,62.89868598700008],[157.90049769600012,62.861762530000135],[157.41189560500015,62.95715345000008],[156.98599266400004,62.917161714000144],[156.75329560900025,62.94760411600009],[156.38000470100008,63.033369928000184],[156.36869768100019,62.93562553800018],[156.7109066480001,62.81461030200012],[156.82189964200018,62.66407584700005],[156.63529970200022,62.60514821800018],[156.30439758700015,62.594012692000035],[156.13619961200015,62.56501566500003],[156.25239558900012,62.44062419900007],[156.1837006960002,62.388254067],[155.817596599,62.340892962000055],[155.6842956720002,62.271766903000184],[155.7241977230002,62.175369820000185],[156.30490066900018,62.10616111600007],[156.16909757700012,62.01692318400012],[155.93760667700008,61.974013539000055],[155.52839663200018,61.96057382800012],[155.25779761600006,62.01808726200011],[155.08729562400003,62.12468160100008],[155.0547025940001,62.30333147400012],[155.15159571800007,62.399443572999985],[155.6479036280001,62.71387206300011],[155.6018066810002,62.79753569400009],[155.40809670800002,62.969509214000084],[155.60589570900015,63.11478352100016],[155.53199766500018,63.217098061000115],[155.25999468100008,63.29502444700017],[155.17059363700014,63.392238766000105],[155.24169966800002,63.50438376900013],[155.17340056900002,63.64502338700015],[154.95190458600007,63.74970313200015],[154.75230364300012,63.80734564800014],[154.37080366700002,63.782206476000056],[154.18339571100012,63.70993318100017],[154.21440171200004,63.64247897700011],[154.37899764800022,63.61961616200017],[154.66369670100016,63.51216334900005],[154.70320161600023,63.44446405800005],[154.55160567700023,63.21216178999998],[154.38999956600014,63.10888534400004],[154.37629666300006,62.99300922000009],[154.65480065200006,62.681807428000184],[154.61549371700005,62.589651420000166],[154.35910068600003,62.48522413799998],[154.20629859100006,62.389333992000104],[154.26759360500023,62.29050967699999],[154.45219462900013,62.1202024800001],[154.83869960700008,61.99775729100014],[154.79240468000012,61.928914541000154],[154.5505066420003,61.85817966000013],[154.23579367000013,61.870528215000036],[153.98269657100013,61.93563297200012],[153.74620067000012,61.94082086700013],[153.66859464000015,61.856489701000044],[153.83279461500024,61.591719629000124],[153.75869758500016,61.491957546000094],[153.59120167800006,61.45231382700007],[153.32919260500023,61.45960323300011],[153.13349964100018,61.496996914000135],[152.90919471500013,61.495566626000084],[152.75180067800022,61.45745629200002],[152.57569856800023,61.29801757300004],[152.62719765200006,61.205015831000026],[153.00810268100008,61.0205256160001],[153.42739867100022,60.783086248000075],[153.63589465700022,60.77868692200008],[153.75079361800033,60.836898234000046],[153.79440264800007,61.00922614000007],[154.05999766800005,61.10423082200009],[154.06419364800013,61.212485281000056],[154.23440562700011,61.21800560200006],[154.34109468200006,61.046218496],[154.47740169400004,60.96164341700012],[154.62510658600024,60.94377454000016],[154.72720369900003,61.01428847400007],[154.74679572700006,61.20226489099997],[154.6656035840001,61.39973398000018],[154.75520361400015,61.454922945000135],[154.95269768200023,61.46166333700006],[155.04220567900006,61.40064090200008],[155.1004025740002,61.21370937400019],[155.3753967240001,61.120272779000175],[155.50939971900004,61.179143746000136],[155.56709269400005,61.35592696900011],[155.4454955860001,61.41282232200007],[155.15319867300002,61.72609411000002],[155.2413027020001,61.783667559000094],[155.47279360100003,61.77869742500013],[155.6732027270001,61.74052556800001],[156.0843045680001,61.54682246700003],[156.27659565200008,61.5054049690001],[156.2709046760001,61.42552191100003],[156.48970067900007,61.202982717000054],[156.6295016040001,61.214606237000055],[156.62139865100005,61.37496394800007],[156.68420358100002,61.49786678800018],[156.92889363100016,61.562337538000065],[157.0151977290002,61.64633275700015],[157.36450164200016,61.70961361200011],[157.37820471300017,61.767690980000054],[157.5260006320001,61.813877782000134],[157.94259664300023,61.77941843700006],[158.06239365300007,61.73703450500011],[158.3547976870002,61.807609459000105],[158.61149565100015,61.83334860700006],[158.89830057400002,61.82420009500004],[158.97300763800013,61.91017294100004],[159.1786956870002,61.91926713800012],[159.36770659800004,61.84126095600004],[159.5554045670002,61.82177102000003],[159.49119566900004,61.68508413900014],[159.86669956700007,61.69019257400015],[159.9467926750001,61.724637],[159.9575045800001,61.84221096100009],[160.29890469300028,61.92457338600002],[160.3786927000001,61.76985787000012],[160.28080766100004,61.700885033000134],[160.18969771500008,61.54216849900007],[160.03779566900005,61.475774774000115],[160.15949972900012,61.433933319000175],[159.92100558200013,61.26468743800018],[159.87789963400007,61.03469405000004],[159.77709970400008,60.98611606000003],[159.90750166600014,60.92604379800002],[160.1327056350001,61.031959203000156],[160.42289768400008,61.02930800700017],[160.29179365400012,60.89084047500006],[160.15710468400027,60.85710113500005],[160.21789561100013,60.751777157000106],[160.09559660200011,60.69946385600002],[160.16079657700016,60.614366583000105],[160.31640661000006,60.74398785500006],[160.55880773000013,60.72813717300005],[160.78869667900005,60.82009771500009],[160.93550068500008,60.94961572100004],[161.29750066600002,61.09451049600017],[161.40100057400002,61.18291191500009],[161.76849372000004,61.380430122000064],[162.07260157300004,61.499315852000166],[162.1356966840001,61.56694976400013],[162.35290565900004,61.65773248100015],[162.59370466100006,61.59020853900017],[162.58200067500013,61.711544467000124],[162.74270656900012,61.736432684000135],[162.83970664700018,61.68594244600018],[162.74609369600012,61.60792939100003],[162.90029858600008,61.52783594800019],[163.05140669900004,61.64287287500008],[163.2978056510001,61.68396213800014],[163.21119661900002,61.76989978000006],[162.9138026710001,61.827161253999975],[163.14300564600023,62.0803909550001],[163.06329357900017,62.10157085000003],[163.174499641,62.31611069100012],[163.24040269000022,62.50491306100008],[163.6338956610001,62.58699335100005],[163.95179761200018,62.58914062600019],[164.01759370800016,62.64590589200009],[164.3578035910001,62.69932543800007],[164.61430357500012,62.640534601000184],[164.66780073700022,62.57436199000006],[165.14050269300026,62.46299901900005],[165.0758056320002,62.38086474900007],[164.5171967120002,62.46520714700017],[164.3059995740001,62.366047724000055],[164.17529267800012,62.345390020000195],[164.05290264300015,62.26993981600009],[164.00770557700025,62.11388520700012],[164.05340572500018,61.94322429400012],[164.04159562300003,61.771716138000045],[163.98910563100014,61.70621541999998],[163.8533937330002,61.67816404000018],[163.71879562300035,61.55734829400012],[163.71180763100006,61.452602835],[163.8619996010001,61.43702339100008],[163.9929046440002,61.376569753000126],[163.86099259900004,61.22501689600017],[163.53410357200005,61.13957227800017],[163.55000270100004,61.06908835200011],[163.4694056730001,60.992871371000035],[163.67950461400005,60.928012035999984],[163.63279763200012,60.84152554700006],[163.41529864400013,60.82238966200009],[163.26210058700008,60.75946839200009],[163.17840560800016,60.79653668800012],[163.01669271200024,60.744170748000045],[162.8202056460002,60.771385782000095],[162.74180568200006,60.67680421800014],[162.60040264000008,60.61636985800004],[162.47430461800002,60.62399185800007],[162.37829561700016,60.566547826000146],[162.16149869700007,60.532515622000176],[161.89280673200017,60.40963189300015],[161.91769360800015,60.23384712200004],[161.73719770500009,60.143283676000124],[161.49330158900023,60.06423964600003],[161.07989472500014,59.75986927200006],[160.83920267500002,59.67461525900012],[160.72459372800006,59.592031049000184],[160.39610258400012,59.498357749000036],[160.29499872600013,59.3764664360001],[160.3536987030002,59.27433160500016],[160.3059996390001,59.18125744300005],[159.97250366000014,58.93147739900013],[159.94309960900023,58.86840726600019],[160.05999765400009,58.72426334100004],[160.20910668200008,58.608918463],[160.01690662500016,58.39503995400014],[160.24429357600002,58.14525286900016],[160.16569563200005,58.07498754200009],[159.98680067200007,58.015697479000096],[159.77630660800014,57.99711580600018],[159.53109771900006,57.94624519700011],[159.47099260000027,57.86930368400016],[159.55760163200011,57.703939296000044],[159.36959872900002,57.58228435300009],[159.07910157800018,57.51267214400008],[158.85009758900003,57.41836936300018],[158.7052006350002,57.2498419800001],[158.6163026730003,57.083416945000124],[158.53540071100008,57.061512014000186],[158.31109662300014,57.07496765100018],[158.24890172800008,57.256372991000035],[158.1470946290001,57.30512666600009],[158.03790257000003,57.289383105000184],[157.8403017170001,57.137759338000194],[157.99180562300023,56.83881943100005],[157.73469560500007,56.6199937560001],[157.662002711,56.524746166000114],[157.5933986780002,56.26137956000014],[157.63360566100005,56.11230825000007],[157.40609767500018,55.89933515400003],[157.23629758300012,55.79762042400017],[157.1900936830002,55.72707732100008],[157.20379658600007,55.57916623400013],[157.312606597,55.468762487000106],[157.18460068600007,55.28003622600016],[157.19520563800017,55.217565734000175],[157.4622036200002,55.087778333000074],[157.46530157200004,54.95050673100019],[157.3312077170001,54.883717045000026],[157.32780466400015,54.713222931000075],[157.29049664500008,54.63199089000017],[157.18119763400023,54.563938217999976],[157.19259668700022,54.47298601900019],[157.46560667300014,54.309201954],[157.4831996170002,54.251529599000094],[157.39520270900005,54.04835494800017],[157.46940568700006,53.931393200000116],[157.62890659900006,53.813329233000104],[157.80540466900004,53.725139540999976],[157.92399569100007,53.740409692000185],[158.0095977220002,53.81657135300014],[158.03010572400024,54.08982860500009],[158.28309670800002,54.65719141700009],[158.37910470300017,54.79469503000007],[158.59759560600014,55.02682865400004],[158.76890561400012,55.168072607000056],[158.8630975860002,55.30277582600013],[158.95869470100024,55.794790358000114],[159.0601956920001,55.97311719200019],[159.35420268100017,56.10161880900017],[159.69000267800027,56.222021160000054],[160.09139961600022,56.63034725],[160.1163025850002,56.71161768000013],[160.2843015740002,57.01487661400017],[160.55369560700012,57.30875468900018],[160.89340157000004,57.41313218200003],[160.993697579,57.476500041000065],[161.06449867700007,57.59348492300012],[161.20680260600022,57.66421192500002],[161.29299958400009,57.759300090000124],[161.14089972500017,57.95443549000004],[161.09269657300013,58.08745076100007],[161.39689662700016,58.33133581300012],[161.43640171000004,58.42466193500013],[161.40080259400008,58.53888598499998],[161.47500557100022,58.60899842599997],[162.0326996900002,58.70100037500015],[162.1739956120001,58.76837495100017],[162.40199259800033,58.99539075200005],[162.4355926310002,59.102256665000084],[162.65190172400003,59.25462088900014]]],[[[168.16904126000009,-85.4318487299999],[167.5501393930001,-85.31390256499998],[166.71089732200005,-85.38890285799988],[168.16904126000009,-85.4318487299999]]],[[[168.66827357800003,69.94828465400013],[168.16473359500014,70.00633168000002],[167.91886873700003,69.9341686910002],[167.85794068300004,69.818958258],[168.08287073100018,69.77012730200005],[168.25784262500008,69.68823644300005],[168.71650673700003,69.5612993920002],[169.15309157600007,69.56004730400014],[169.28784173300028,69.59777726700008],[169.25370760600015,69.71533815300012],[169.45347568400007,69.827572675],[169.41394059400022,69.89084699199998],[168.89309667400005,69.94355307000012],[168.66827357800003,69.94828465400013]]],[[[172.20710853200023,-85.49158825399996],[171.72232386600012,-85.40055689399986],[170.99736154100026,-85.4228403589999],[171.12020626000003,-85.50603413399995],[172.20710853200023,-85.49158825399996]]],[[[170.19641489100002,-84.93391403099992],[169.1780189540002,-84.96399971099993],[169.2790133860002,-85.05947448799998],[169.8189563510001,-85.18631553099988],[170.87663074400007,-85.1811941869999],[170.56462852200013,-85.05955797099989],[169.81929917200034,-85.05572257899996],[170.19641489100002,-84.93391403099992]]],[[[171.68191562200002,-43.54147912999997],[171.53192163200004,-43.38591569999983],[171.34747265600004,-43.30702925099996],[171.42498765800008,-43.2436972669999],[171.50332660200002,-43.35703182999998],[171.5574646440001,-43.373419791999936],[171.6499936460001,-43.49870141599985],[171.93637058900015,-43.68591055299993],[172.1921996850001,-43.79453046299989],[172.25637874400013,-43.87702615999996],[172.38693258600017,-43.86119509199989],[172.39025869300008,-43.76175437199987],[172.51303060800012,-43.72729955299985],[172.5571896590002,-43.76508047899989],[172.43664565400013,-43.85313924499991],[172.71524067000007,-43.80619538999997],[172.8707886760003,-43.90230195699991],[172.96524065500012,-43.89841090999994],[173.11077865700008,-43.83118921999994],[173.1005247400003,-43.69508069099993],[172.80386370500025,-43.59369385999997],[172.72717264400023,-43.423139564999985],[172.74410962000002,-43.27119326199988],[172.81802359000005,-43.15869068699993],[172.95303358600006,-43.09063700899992],[173.1069026980001,-43.05564138999995],[173.1685785850002,-42.9900895429999],[173.28552273100001,-42.95591786499995],[173.53137166300007,-42.530085163999956],[173.59805272000017,-42.458362726999894],[173.5907747130001,-42.373119274999965],[173.7503966600001,-42.25647520099989],[173.80180371100016,-42.12599411399992],[173.75814858000024,-42.02324170399987],[173.80964665700003,-41.90629973799997],[173.61517359500021,-41.89412669999996],[173.51809674000003,-41.9319074579999],[173.2534026070001,-41.90949558999989],[172.97535660600022,-42.0741022549999],[172.90538062300016,-42.04169379399991],[172.94618272200023,-41.82349038999996],[172.92643764000002,-41.78264671699998],[172.7371977350001,-41.897147872999824],[172.5368957300003,-41.98917697899998],[172.40727261500012,-42.072252535999894],[172.2387846260001,-42.338673507999886],[171.86624171900007,-42.54802629199992],[171.3735967010001,-42.75888597499994],[170.86282363700013,-43.02404848799989],[170.76887474000011,-43.086578155999916],[170.31768762100023,-43.311736024999846],[169.95657360600012,-43.47868526399998],[169.80705269100008,-43.56072800299995],[169.84719865500017,-43.65967268199989],[169.9815976110002,-43.70094450199997],[169.8016817350001,-43.7563985029999],[169.69033770700003,-43.81853221099993],[169.4643557300002,-43.852128051999955],[169.4144596010001,-43.96321877899993],[169.27021760900004,-43.935234789999924],[169.1787566280001,-43.95095488099997],[169.0878146550001,-43.901929129999985],[168.7915956820002,-44.035476651999886],[168.7110896810002,-44.04672265199997],[168.39884970600008,-44.37711699099992],[168.2169037330001,-44.41541591799995],[168.12145967200013,-44.54404393399989],[168.10266074000003,-44.61459290399995],[168.13107271,-44.770941717999904],[168.00164757500022,-44.96058143899995],[167.98614457400015,-45.064536484999905],[167.89039558000002,-45.15221672399997],[167.80563358400002,-45.17310677399996],[167.7814026750002,-45.30126875499997],[167.70939659500027,-45.45688582899993],[167.60491969200018,-45.56336215099998],[167.6840976640002,-45.62394319399988],[167.96012865600017,-45.53071916399995],[168.11979670300013,-45.56869806999998],[168.23300168100002,-45.685817229999884],[168.33215372900008,-45.74510528099984],[168.4789126390002,-45.88976284799992],[168.8844906380001,-46.05962412799988],[168.66160560700018,-46.16333140499995],[168.87742570000012,-46.2137807389999],[168.9993585870002,-46.087117272999876],[169.20181272900004,-46.11461745999998],[169.48568767300014,-46.24035790999994],[169.78350859600005,-46.38875430899998],[169.91192672900002,-46.338140185999976],[170.23773164100032,-46.15202840799992],[170.31524664300002,-45.98924715399994],[170.4244076890002,-45.93729796299988],[170.6644286830001,-45.90619288699992],[170.61691268000015,-45.83729967799991],[170.75970460300005,-45.75925041299996],[170.69384765400002,-45.68368939999988],[170.8599546800001,-45.4853630099999],[170.91137665000008,-45.395083876999934],[170.87356571700002,-45.355914740999935],[170.9755246960001,-45.148966556999824],[171.07995566600005,-45.065081642999985],[171.1985777010001,-44.917857536999975],[171.21524058900013,-44.74535679599995],[171.19607570300002,-44.55813894199997],[171.26330560700012,-44.463412874999904],[171.29357869500006,-44.34147210899994],[171.5394286320003,-44.167858418999856],[171.86746162200006,-44.06091757199994],[171.95523070900003,-44.004528820999894],[172.18969768700003,-43.90702499199989],[172.07412767000005,-43.757031336999944],[171.93609666800012,-43.70897470099993],[171.74383559000012,-43.56147516599998],[171.68191562200002,-43.54147912999997]]],[[[179.5828417670001,52.01683940000015],[179.48244879600009,51.98283239500006],[179.52185281300012,51.89676341300009],[179.61434880100023,51.87177042600007],[179.73475676900011,51.90760443300019],[179.77390674200012,51.970691429],[179.5828417670001,52.01683940000015]]],[[[177.60108084800015,51.922298399000056],[177.53820819200007,51.97889518600016],[177.67593713100007,52.09216518200009],[177.5633811480003,52.12195716500014],[177.4974261970001,51.99332618000011],[177.34556223800007,51.96300316900016],[177.2004082860003,51.89474416400009],[177.2934092810002,51.845608183000195],[177.40952123300008,51.93081918000013],[177.60108084800015,51.922298399000056]]],[[[173.50299453200034,52.38453169700006],[173.58877994500006,52.4009707030001],[173.7256819260001,52.35657672500008],[173.70772689600028,52.47737470100009],[173.62386890900007,52.50694568700004],[173.50299453200034,52.38453169700006]]],[[[173.1668849360001,52.79522658900015],[173.42166786200005,52.84547460600004],[173.29538486900015,52.92698457800009],[173.10723489400004,52.99322554700018],[172.74655197400034,53.010747507000076],[172.62906300600002,53.001321496000116],[172.6403580250003,52.92543851100015],[172.76335249700003,52.823654011000144],[172.90361400700033,52.76166456800007],[172.99845797700016,52.79697657100013],[173.1668849360001,52.79522658900015]]],[[[179.46606472100007,71.41313673200011],[179.2241207500001,71.3111866380001],[178.84912060400006,71.20618469300007],[178.61773665800013,71.03422324300004],[178.79101574300023,70.79507312800013],[179.09551972400016,70.86615367900009],[179.44192467200014,70.87088375500014],[179.7477415950001,70.91672354500008],[179.99998474500023,70.9958829090001],[179.99998860100004,71.53457257200012],[179.46606472100007,71.41313673200011]]]]},"properties":{"name":"Global Rangeland System","area_km2":76304708.85871154,"percentage":51.88605366400662}}]} \ No newline at end of file diff --git a/client/src/containers/map/layer-manager/mask.tsx b/client/src/containers/map/layer-manager/mask.tsx index 060fcd6..b19e15a 100644 --- a/client/src/containers/map/layer-manager/mask.tsx +++ b/client/src/containers/map/layer-manager/mask.tsx @@ -2,17 +2,14 @@ // import { ReactElement, cloneElement, useCallback } from "react"; -import { CompositeLayer, Layer as DLayer, GeoJsonLayer, MVTLayer } from "deck.gl"; +import { GeoJsonLayer } from "@deck.gl/layers"; import { Layer } from "react-map-gl"; - +import { DataFilterExtension, DataFilterExtensionProps } from "@deck.gl/extensions"; // import { useAtomValue, useSetAtom } from "jotai"; -import { parseConfig } from "@/lib/json-converter"; - // import { layersInteractiveAtom, layersInteractiveIdsAtom } from "@/store/map"; import DeckLayer from "@/components/map/layers/deck-layer"; -import { env } from "@/env.mjs"; import { useMemo } from "react"; // import MapboxLayer from "@/components/map/layers/mapbox-layer"; @@ -22,433 +19,20 @@ interface MaskProps { id: string; } -const PORTUGAL_GEOJSON = { - type: "FeatureCollection", - features: [ - { - type: "Feature", - properties: { - scalerank: 1, - featurecla: "Admin-0 country", - labelrank: 2, - sovereignt: "Portugal", - sov_a3: "PRT", - adm0_dif: 0, - level: 2, - type: "Sovereign country", - admin: "Portugal", - adm0_a3: "PRT", - geou_dif: 0, - geounit: "Portugal", - gu_a3: "PRT", - su_dif: 1, - subunit: "Portugal", - su_a3: "PR1", - brk_diff: 0, - name: "Portugal", - name_long: "Portugal", - brk_a3: "PR1", - brk_name: "Portugal", - brk_group: null, - abbrev: "Port.", - postal: "P", - formal_en: "Portuguese Republic", - formal_fr: null, - note_adm0: null, - note_brk: null, - name_sort: "Portugal", - name_alt: null, - mapcolor7: 1, - mapcolor8: 7, - mapcolor9: 1, - mapcolor13: 4, - pop_est: 10707924, - gdp_md_est: 208627, - pop_year: -99, - lastcensus: 2011, - gdp_year: 0, - economy: "2. Developed region: nonG7", - income_grp: "1. High income: OECD", - wikipedia: -99, - fips_10: null, - iso_a2: "PT", - iso_a3: "PRT", - iso_n3: "620", - un_a3: "620", - wb_a2: "PT", - wb_a3: "PRT", - woe_id: -99, - adm0_a3_is: "PRT", - adm0_a3_us: "PRT", - adm0_a3_un: -99, - adm0_a3_wb: -99, - continent: "Europe", - region_un: "Europe", - subregion: "Southern Europe", - region_wb: "Europe & Central Asia", - name_len: 8, - long_len: 8, - abbrev_len: 5, - tiny: -99, - homepart: 1, - filename: "PRT.geojson", - }, - geometry: { - type: "MultiPolygon", - coordinates: [ - [ - [ - [-17.190869140624926, 32.868603515624976], - [-17.054492187499932, 32.81586914062498], - [-16.92919921875, 32.84140625000003], - [-16.77397460937499, 32.77353515624998], - [-16.693261718749966, 32.75800781250001], - [-16.765283203124994, 32.70971679687503], - [-16.837402343749943, 32.648291015625034], - [-17.018261718749926, 32.66279296874998], - [-17.17119140624999, 32.721875], - [-17.226025390624983, 32.76684570312503], - [-17.241015625000017, 32.80737304687503], - [-17.190869140624926, 32.868603515624976], - ], - ], - [ - [ - [-25.02734375, 36.95996093750003], - [-25.03154296874999, 36.94155273437502], - [-25.08837890625, 36.948876953124994], - [-25.15991210937503, 36.94335937500003], - [-25.198388671874934, 36.99653320312501], - [-25.163525390624955, 37.01855468749997], - [-25.082910156249966, 37.02402343750003], - [-25.044335937499994, 37.00019531249998], - [-25.02734375, 36.95996093750003], - ], - ], - [ - [ - [-25.648974609374985, 37.84091796875], - [-25.585498046874932, 37.83403320312502], - [-25.2666015625, 37.84863281249997], - [-25.18193359374996, 37.837890625], - [-25.19072265624999, 37.764355468749955], - [-25.251123046874937, 37.73500976562502], - [-25.43901367187493, 37.71533203125], - [-25.73447265624992, 37.76289062500001], - [-25.833691406249983, 37.82607421874999], - [-25.847851562499923, 37.872412109375034], - [-25.84589843749998, 37.89404296875], - [-25.783740234375014, 37.9111328125], - [-25.648974609374985, 37.84091796875], - ], - ], - [ - [ - [-28.14726562499996, 38.45268554687502], - [-28.064794921875034, 38.412744140624966], - [-28.18974609374999, 38.404150390625006], - [-28.231152343749983, 38.384667968750016], - [-28.33242187500002, 38.41289062500002], - [-28.45449218750002, 38.40864257812504], - [-28.53115234374999, 38.462548828124994], - [-28.54882812499997, 38.51855468750003], - [-28.51025390625, 38.553027343750045], - [-28.402148437500014, 38.55336914062502], - [-28.14726562499996, 38.45268554687502], - ], - ], - [ - [ - [-28.641308593749983, 38.525], - [-28.74384765624998, 38.52236328125002], - [-28.842041015625, 38.5984375], - [-28.697753906249996, 38.638476562500045], - [-28.65541992187499, 38.614062500000045], - [-28.624218749999955, 38.58632812499999], - [-28.605810546875034, 38.55073242187501], - [-28.641308593749983, 38.525], - ], - ], - [ - [ - [-27.778466796874966, 38.55561523437504], - [-27.825878906249923, 38.54355468749998], - [-28.09233398437496, 38.62055664062504], - [-28.18725585937503, 38.65537109375003], - [-28.310644531250002, 38.74389648437503], - [-27.962646484375, 38.63632812500006], - [-27.778466796874966, 38.55561523437504], - ], - ], - [ - [ - [-27.075244140624957, 38.643457031249994], - [-27.09531249999995, 38.63403320312503], - [-27.30283203124995, 38.66103515625002], - [-27.361914062500006, 38.69785156250006], - [-27.38593750000001, 38.765820312499955], - [-27.35102539062501, 38.788964843749966], - [-27.259667968749966, 38.80268554687501], - [-27.127001953125017, 38.78984374999995], - [-27.04194335937501, 38.7412109375], - [-27.041992187500025, 38.67890625000001], - [-27.075244140624957, 38.643457031249994], - ], - ], - [ - [ - [-31.137109374999937, 39.40693359375001], - [-31.18134765624998, 39.35893554687502], - [-31.25761718749999, 39.3759765625], - [-31.282958984375, 39.39409179687496], - [-31.26083984375003, 39.49677734375001], - [-31.199853515624937, 39.520849609375034], - [-31.13862304687498, 39.479443359374955], - [-31.137109374999937, 39.40693359375001], - ], - ], - [ - [ - [-8.173535156249955, 41.819970703124994], - [-8.152490234374937, 41.81196289062498], - [-8.094433593749926, 41.81420898437499], - [-7.990966796874972, 41.851904296875034], - [-7.920849609374982, 41.883642578125], - [-7.896386718749994, 41.87055664062501], - [-7.693066406249955, 41.88847656250002], - [-7.644677734374937, 41.87397460937498], - [-7.612597656249988, 41.85795898437502], - [-7.512597656249966, 41.83598632812498], - [-7.40361328124996, 41.83369140624995], - [-7.268554687499972, 41.864404296874994], - [-7.209619140624966, 41.89526367187497], - [-7.198339843749978, 41.92939453125001], - [-7.195361328124989, 41.95522460937502], - [-7.177929687499983, 41.9716796875], - [-7.147119140625023, 41.98115234374998], - [-7.09912109375, 41.964208984375006], - [-7.030468749999955, 41.95063476562498], - [-6.865527343749932, 41.945263671874955], - [-6.833203124999926, 41.96416015624999], - [-6.777294921874983, 41.958496093749964], - [-6.70361328125, 41.9345703125], - [-6.61826171874992, 41.9423828125], - [-6.575341796874966, 41.91308593749997], - [-6.557519531249966, 41.874121093750034], - [-6.552587890624948, 41.78955078125003], - [-6.558984375000023, 41.70405273437501], - [-6.542187499999954, 41.672509765624994], - [-6.48466796874996, 41.664404296875034], - [-6.391699218749949, 41.66538085937503], - [-6.308056640624954, 41.642187500000034], - [-6.243115234374955, 41.60180664062497], - [-6.221679687499943, 41.560449218749994], - [-6.2125, 41.53203125], - [-6.244335937499955, 41.51591796874995], - [-6.28935546874996, 41.45502929687501], - [-6.403125, 41.37539062500002], - [-6.56591796875, 41.3037109375], - [-6.690136718749983, 41.21450195312502], - [-6.775781249999937, 41.10771484375002], - [-6.8828125, 41.06240234375002], - [-6.915527343749999, 41.038037109374955], - [-6.928466796874972, 41.009130859375], - [-6.857714843749932, 40.87832031250002], - [-6.835888671874926, 40.777490234374994], - [-6.818359375, 40.65405273437497], - [-6.829833984374943, 40.619091796874955], - [-6.835693359374971, 40.48315429687497], - [-6.852050781249943, 40.44326171875002], - [-6.847949218749988, 40.410986328125006], - [-6.82177734375, 40.37626953124996], - [-6.8101562499999, 40.343115234375034], - [-6.85888671875, 40.30073242187504], - [-6.948437499999955, 40.251611328124966], - [-7.01469726562496, 40.208349609375034], - [-7.032617187499965, 40.16791992187498], - [-7.027832031249972, 40.14262695312496], - [-6.91640625, 40.05683593749998], - [-6.896093749999949, 40.02182617187506], - [-6.911181640624989, 39.937109375000034], - [-6.975390624999932, 39.79838867187502], - [-7.03671875, 39.713964843750034], - [-7.04741210937496, 39.70556640625], - [-7.117675781249972, 39.681689453125045], - [-7.454101562499943, 39.6806640625], - [-7.535693359374961, 39.66157226562501], - [-7.524218749999932, 39.644726562499955], - [-7.44511718749996, 39.53618164062496], - [-7.362695312499966, 39.47832031249999], - [-7.335449218749999, 39.46513671874996], - [-7.30576171874992, 39.33813476562502], - [-7.172412109374932, 39.13520507812498], - [-7.042968749999942, 39.10708007812502], - [-6.997949218749993, 39.05644531250002], - [-7.00625, 38.98525390624999], - [-7.046044921874937, 38.907031250000045], - [-7.125488281249971, 38.82695312499999], - [-7.219921874999925, 38.77050781250002], - [-7.28154296874996, 38.71455078125001], - [-7.286376953124972, 38.649365234374955], - [-7.30595703124996, 38.56684570312501], - [-7.335791015625006, 38.50146484375003], - [-7.343017578124943, 38.45742187500002], - [-7.106396484374982, 38.181005859375006], - [-6.974804687499982, 38.194433593750006], - [-6.957568359374932, 38.18789062499999], - [-6.981103515624937, 38.121972656249966], - [-7.022851562500023, 38.04472656249996], - [-7.072509765625, 38.030029296875], - [-7.185449218749994, 38.00634765625006], - [-7.292236328125, 37.90644531250004], - [-7.378906249999971, 37.786376953125], - [-7.443945312499921, 37.72827148437497], - [-7.503515624999977, 37.58549804687502], - [-7.496044921874954, 37.523583984375016], - [-7.467187499999937, 37.42802734374999], - [-7.406152343749937, 37.17944335937497], - [-7.493603515624983, 37.168310546875034], - [-7.834130859374994, 37.00571289062503], - [-7.939697265625, 37.00541992187496], - [-8.136767578124932, 37.077050781249994], - [-8.484326171874955, 37.10004882812498], - [-8.597656249999943, 37.12133789062506], - [-8.739111328124977, 37.07460937500002], - [-8.8484375, 37.07568359374997], - [-8.935351562499987, 37.01601562499999], - [-8.997802734375028, 37.03227539062502], - [-8.92626953125, 37.16606445312502], - [-8.814160156249983, 37.43081054687502], - [-8.818554687500011, 37.59243164062502], - [-8.791845703124977, 37.73281250000002], - [-8.822656249999936, 37.871875], - [-8.87895507812496, 37.95869140625001], - [-8.80224609374997, 38.18383789062497], - [-8.810937499999966, 38.299755859374955], - [-8.881103515624943, 38.44667968750005], - [-8.668310546874947, 38.42431640625003], - [-8.73398437499992, 38.48242187500006], - [-8.798876953124989, 38.518164062500034], - [-8.861621093749987, 38.50996093749998], - [-8.914794921874972, 38.512109374999966], - [-9.09599609374996, 38.45522460937502], - [-9.186718749999953, 38.438183593750004], - [-9.213281249999937, 38.44809570312498], - [-9.203369140624972, 38.53896484375002], - [-9.250390624999964, 38.65673828125002], - [-9.17783203124992, 38.68779296874996], - [-9.09331054687493, 38.69667968749999], - [-9.021484374999943, 38.746875], - [-8.977050781249972, 38.80292968749998], - [-9.000488281249943, 38.90302734375004], - [-8.93808593749992, 38.998095703125045], - [-8.79160156249992, 39.07817382812502], - [-8.867480468749932, 39.06596679687502], - [-8.954296874999955, 39.016064453124955], - [-9.091015625000011, 38.834667968749955], - [-9.13579101562496, 38.74277343749997], - [-9.252294921875004, 38.712792968749994], - [-9.35673828124996, 38.697900390624994], - [-9.410205078124932, 38.70751953125], - [-9.474121093749972, 38.73085937500002], - [-9.479736328124972, 38.79877929687501], - [-9.474755859374937, 38.852929687500016], - [-9.431445312499987, 38.96044921875], - [-9.41435546874996, 39.11210937499999], - [-9.35283203124996, 39.248144531250006], - [-9.35722656249996, 39.28427734374997], - [-9.374755859374972, 39.338281249999966], - [-9.319628906249932, 39.39111328125], - [-9.251416015624983, 39.426025390625], - [-9.148291015624949, 39.542578125000034], - [-9.004052734374966, 39.820556640625], - [-8.837841796874926, 40.11567382812498], - [-8.851318359375028, 40.151806640624976], - [-8.886621093750023, 40.179443359375], - [-8.8726562499999, 40.25908203124999], - [-8.772412109374926, 40.60566406249998], - [-8.731591796874966, 40.65092773437495], - [-8.684619140624989, 40.75253906250006], - [-8.673974609374936, 40.91650390624997], - [-8.655566406249932, 41.02949218749998], - [-8.659814453124994, 41.086279296875006], - [-8.674609374999989, 41.154492187499955], - [-8.73837890624992, 41.28466796875003], - [-8.805664062499943, 41.56000976562498], - [-8.810839843749932, 41.65195312500006], - [-8.75541992187493, 41.69838867187502], - [-8.846386718749983, 41.70517578124998], - [-8.887597656249937, 41.764599609375004], - [-8.878222656249989, 41.83208007812499], - [-8.777148437500017, 41.941064453124994], - [-8.68295898437492, 42.008496093749955], - [-8.589648437499989, 42.05273437499999], - [-8.538085937499972, 42.0693359375], - [-8.322558593749932, 42.115087890625006], - [-8.266064453124983, 42.13740234375001], - [-8.213085937499926, 42.133691406249966], - [-8.204199218749977, 42.11186523437496], - [-8.17358398437497, 42.06938476562501], - [-8.139306640624994, 42.039941406249966], - [-8.129980468749977, 42.01816406250006], - [-8.213330078124983, 41.92709960937498], - [-8.224755859374994, 41.895849609375006], - [-8.18125, 41.83696289062502], - [-8.173535156249955, 41.819970703124994], - ], - ], - ], - }, - }, - ], -}; - -class CompositeMask extends CompositeLayer { - renderLayers() { - return [ - new MVTLayer({ - data: `https://api.mapbox.com/v4/grass2024.6i7whpd0/{z}/{x}/{y}.mvt?access_token=${env.NEXT_PUBLIC_MAPBOX_TOKEN}`, - binary: false, - renderSubLayers: (props) => { - if (!props.data) return null; - - console.log(props.data); - return new GeoJsonLayer(props, { - data: props.data, - operation: "mask", - }); - }, - }), - ]; - } -} -const Mask = ({ id, settings }: MaskProps) => { - // const c = parseConfig({ - // config: { - // id, - // "@@type": "MVTLayer", - // data: { - // dataUrls: "https://api.mapbox.com/v4/grass2024.6i7whpd0/{z}/{x}/{y}.mvt", - // "@@function": "setDataWithMapboxToken", - // }, - // binary: false, - // getFillColor: [255, 255, 255, 1], - // operation: "mask", - // }, - // params_config: [], - // settings, - // }); - +const Mask = ({ id }: MaskProps) => { const c = useMemo(() => { - return new GeoJsonLayer({ - id, - data: PORTUGAL_GEOJSON, - operation: "mask", - }); - - return new CompositeMask({ + return new GeoJsonLayer< + { + biome_num: number; + }, + DataFilterExtensionProps + >({ id, + data: "/data/rangeland-ecoregions.json", operation: "mask", + getFilterCategory: (f) => f.properties.biome_num, + filterCategories: [7, 8, 9, 10, 11, 12, 13], + extensions: [new DataFilterExtension({ categorySize: 1 })], }); }, [id]); diff --git a/client/src/types/generated/dataset.ts b/client/src/types/generated/dataset.ts new file mode 100644 index 0000000..1bb132c --- /dev/null +++ b/client/src/types/generated/dataset.ts @@ -0,0 +1,420 @@ +/** + * Generated by orval v6.29.1 🍺 + * Do not edit manually. + * DOCUMENTATION + * OpenAPI spec version: 1.0.0 + */ +import { useMutation, useQuery } from "@tanstack/react-query"; +import type { + MutationFunction, + QueryFunction, + QueryKey, + UseMutationOptions, + UseMutationResult, + UseQueryOptions, + UseQueryResult, +} from "@tanstack/react-query"; +import type { + DatasetListResponse, + DatasetLocalizationRequest, + DatasetLocalizationResponse, + DatasetRequest, + DatasetResponse, + Error, + GetDatasetsIdParams, + GetDatasetsParams, +} from "./strapi.schemas"; +import { API } from "../../services/api/index"; +import type { ErrorType } from "../../services/api/index"; + +type SecondParameter any> = Parameters[1]; + +export const getDatasets = ( + params?: GetDatasetsParams, + options?: SecondParameter, + signal?: AbortSignal, +) => { + return API({ url: `/datasets`, method: "GET", params, signal }, options); +}; + +export const getGetDatasetsQueryKey = (params?: GetDatasetsParams) => { + return [`/datasets`, ...(params ? [params] : [])] as const; +}; + +export const getGetDatasetsQueryOptions = < + TData = Awaited>, + TError = ErrorType, +>( + params?: GetDatasetsParams, + options?: { + query?: Partial>, TError, TData>>; + request?: SecondParameter; + }, +) => { + const { query: queryOptions, request: requestOptions } = options ?? {}; + + const queryKey = queryOptions?.queryKey ?? getGetDatasetsQueryKey(params); + + const queryFn: QueryFunction>> = ({ signal }) => + getDatasets(params, requestOptions, signal); + + return { queryKey, queryFn, ...queryOptions } as UseQueryOptions< + Awaited>, + TError, + TData + > & { queryKey: QueryKey }; +}; + +export type GetDatasetsQueryResult = NonNullable>>; +export type GetDatasetsQueryError = ErrorType; + +export const useGetDatasets = < + TData = Awaited>, + TError = ErrorType, +>( + params?: GetDatasetsParams, + options?: { + query?: Partial>, TError, TData>>; + request?: SecondParameter; + }, +): UseQueryResult & { queryKey: QueryKey } => { + const queryOptions = getGetDatasetsQueryOptions(params, options); + + const query = useQuery(queryOptions) as UseQueryResult & { queryKey: QueryKey }; + + query.queryKey = queryOptions.queryKey; + + return query; +}; + +export const postDatasets = ( + datasetRequest: DatasetRequest, + options?: SecondParameter, +) => { + return API( + { + url: `/datasets`, + method: "POST", + headers: { "Content-Type": "application/json" }, + data: datasetRequest, + }, + options, + ); +}; + +export const getPostDatasetsMutationOptions = < + TError = ErrorType, + TContext = unknown, +>(options?: { + mutation?: UseMutationOptions< + Awaited>, + TError, + { data: DatasetRequest }, + TContext + >; + request?: SecondParameter; +}): UseMutationOptions< + Awaited>, + TError, + { data: DatasetRequest }, + TContext +> => { + const { mutation: mutationOptions, request: requestOptions } = options ?? {}; + + const mutationFn: MutationFunction< + Awaited>, + { data: DatasetRequest } + > = (props) => { + const { data } = props ?? {}; + + return postDatasets(data, requestOptions); + }; + + return { mutationFn, ...mutationOptions }; +}; + +export type PostDatasetsMutationResult = NonNullable>>; +export type PostDatasetsMutationBody = DatasetRequest; +export type PostDatasetsMutationError = ErrorType; + +export const usePostDatasets = , TContext = unknown>(options?: { + mutation?: UseMutationOptions< + Awaited>, + TError, + { data: DatasetRequest }, + TContext + >; + request?: SecondParameter; +}): UseMutationResult< + Awaited>, + TError, + { data: DatasetRequest }, + TContext +> => { + const mutationOptions = getPostDatasetsMutationOptions(options); + + return useMutation(mutationOptions); +}; +export const getDatasetsId = ( + id: number, + params?: GetDatasetsIdParams, + options?: SecondParameter, + signal?: AbortSignal, +) => { + return API({ url: `/datasets/${id}`, method: "GET", params, signal }, options); +}; + +export const getGetDatasetsIdQueryKey = (id: number, params?: GetDatasetsIdParams) => { + return [`/datasets/${id}`, ...(params ? [params] : [])] as const; +}; + +export const getGetDatasetsIdQueryOptions = < + TData = Awaited>, + TError = ErrorType, +>( + id: number, + params?: GetDatasetsIdParams, + options?: { + query?: Partial>, TError, TData>>; + request?: SecondParameter; + }, +) => { + const { query: queryOptions, request: requestOptions } = options ?? {}; + + const queryKey = queryOptions?.queryKey ?? getGetDatasetsIdQueryKey(id, params); + + const queryFn: QueryFunction>> = ({ signal }) => + getDatasetsId(id, params, requestOptions, signal); + + return { queryKey, queryFn, enabled: !!id, ...queryOptions } as UseQueryOptions< + Awaited>, + TError, + TData + > & { queryKey: QueryKey }; +}; + +export type GetDatasetsIdQueryResult = NonNullable>>; +export type GetDatasetsIdQueryError = ErrorType; + +export const useGetDatasetsId = < + TData = Awaited>, + TError = ErrorType, +>( + id: number, + params?: GetDatasetsIdParams, + options?: { + query?: Partial>, TError, TData>>; + request?: SecondParameter; + }, +): UseQueryResult & { queryKey: QueryKey } => { + const queryOptions = getGetDatasetsIdQueryOptions(id, params, options); + + const query = useQuery(queryOptions) as UseQueryResult & { queryKey: QueryKey }; + + query.queryKey = queryOptions.queryKey; + + return query; +}; + +export const putDatasetsId = ( + id: number, + datasetRequest: DatasetRequest, + options?: SecondParameter, +) => { + return API( + { + url: `/datasets/${id}`, + method: "PUT", + headers: { "Content-Type": "application/json" }, + data: datasetRequest, + }, + options, + ); +}; + +export const getPutDatasetsIdMutationOptions = < + TError = ErrorType, + TContext = unknown, +>(options?: { + mutation?: UseMutationOptions< + Awaited>, + TError, + { id: number; data: DatasetRequest }, + TContext + >; + request?: SecondParameter; +}): UseMutationOptions< + Awaited>, + TError, + { id: number; data: DatasetRequest }, + TContext +> => { + const { mutation: mutationOptions, request: requestOptions } = options ?? {}; + + const mutationFn: MutationFunction< + Awaited>, + { id: number; data: DatasetRequest } + > = (props) => { + const { id, data } = props ?? {}; + + return putDatasetsId(id, data, requestOptions); + }; + + return { mutationFn, ...mutationOptions }; +}; + +export type PutDatasetsIdMutationResult = NonNullable>>; +export type PutDatasetsIdMutationBody = DatasetRequest; +export type PutDatasetsIdMutationError = ErrorType; + +export const usePutDatasetsId = , TContext = unknown>(options?: { + mutation?: UseMutationOptions< + Awaited>, + TError, + { id: number; data: DatasetRequest }, + TContext + >; + request?: SecondParameter; +}): UseMutationResult< + Awaited>, + TError, + { id: number; data: DatasetRequest }, + TContext +> => { + const mutationOptions = getPutDatasetsIdMutationOptions(options); + + return useMutation(mutationOptions); +}; +export const deleteDatasetsId = (id: number, options?: SecondParameter) => { + return API({ url: `/datasets/${id}`, method: "DELETE" }, options); +}; + +export const getDeleteDatasetsIdMutationOptions = < + TError = ErrorType, + TContext = unknown, +>(options?: { + mutation?: UseMutationOptions< + Awaited>, + TError, + { id: number }, + TContext + >; + request?: SecondParameter; +}): UseMutationOptions< + Awaited>, + TError, + { id: number }, + TContext +> => { + const { mutation: mutationOptions, request: requestOptions } = options ?? {}; + + const mutationFn: MutationFunction< + Awaited>, + { id: number } + > = (props) => { + const { id } = props ?? {}; + + return deleteDatasetsId(id, requestOptions); + }; + + return { mutationFn, ...mutationOptions }; +}; + +export type DeleteDatasetsIdMutationResult = NonNullable< + Awaited> +>; + +export type DeleteDatasetsIdMutationError = ErrorType; + +export const useDeleteDatasetsId = , TContext = unknown>(options?: { + mutation?: UseMutationOptions< + Awaited>, + TError, + { id: number }, + TContext + >; + request?: SecondParameter; +}): UseMutationResult< + Awaited>, + TError, + { id: number }, + TContext +> => { + const mutationOptions = getDeleteDatasetsIdMutationOptions(options); + + return useMutation(mutationOptions); +}; +export const postDatasetsIdLocalizations = ( + id: number, + datasetLocalizationRequest: DatasetLocalizationRequest, + options?: SecondParameter, +) => { + return API( + { + url: `/datasets/${id}/localizations`, + method: "POST", + headers: { "Content-Type": "application/json" }, + data: datasetLocalizationRequest, + }, + options, + ); +}; + +export const getPostDatasetsIdLocalizationsMutationOptions = < + TError = ErrorType, + TContext = unknown, +>(options?: { + mutation?: UseMutationOptions< + Awaited>, + TError, + { id: number; data: DatasetLocalizationRequest }, + TContext + >; + request?: SecondParameter; +}): UseMutationOptions< + Awaited>, + TError, + { id: number; data: DatasetLocalizationRequest }, + TContext +> => { + const { mutation: mutationOptions, request: requestOptions } = options ?? {}; + + const mutationFn: MutationFunction< + Awaited>, + { id: number; data: DatasetLocalizationRequest } + > = (props) => { + const { id, data } = props ?? {}; + + return postDatasetsIdLocalizations(id, data, requestOptions); + }; + + return { mutationFn, ...mutationOptions }; +}; + +export type PostDatasetsIdLocalizationsMutationResult = NonNullable< + Awaited> +>; +export type PostDatasetsIdLocalizationsMutationBody = DatasetLocalizationRequest; +export type PostDatasetsIdLocalizationsMutationError = ErrorType; + +export const usePostDatasetsIdLocalizations = < + TError = ErrorType, + TContext = unknown, +>(options?: { + mutation?: UseMutationOptions< + Awaited>, + TError, + { id: number; data: DatasetLocalizationRequest }, + TContext + >; + request?: SecondParameter; +}): UseMutationResult< + Awaited>, + TError, + { id: number; data: DatasetLocalizationRequest }, + TContext +> => { + const mutationOptions = getPostDatasetsIdLocalizationsMutationOptions(options); + + return useMutation(mutationOptions); +}; diff --git a/client/src/types/generated/ecoregion.ts b/client/src/types/generated/ecoregion.ts new file mode 100644 index 0000000..a1ebe10 --- /dev/null +++ b/client/src/types/generated/ecoregion.ts @@ -0,0 +1,425 @@ +/** + * Generated by orval v6.29.1 🍺 + * Do not edit manually. + * DOCUMENTATION + * OpenAPI spec version: 1.0.0 + */ +import { useMutation, useQuery } from "@tanstack/react-query"; +import type { + MutationFunction, + QueryFunction, + QueryKey, + UseMutationOptions, + UseMutationResult, + UseQueryOptions, + UseQueryResult, +} from "@tanstack/react-query"; +import type { + EcoregionListResponse, + EcoregionLocalizationRequest, + EcoregionLocalizationResponse, + EcoregionRequest, + EcoregionResponse, + Error, + GetEcoregionsIdParams, + GetEcoregionsParams, +} from "./strapi.schemas"; +import { API } from "../../services/api/index"; +import type { ErrorType } from "../../services/api/index"; + +type SecondParameter any> = Parameters[1]; + +export const getEcoregions = ( + params?: GetEcoregionsParams, + options?: SecondParameter, + signal?: AbortSignal, +) => { + return API({ url: `/ecoregions`, method: "GET", params, signal }, options); +}; + +export const getGetEcoregionsQueryKey = (params?: GetEcoregionsParams) => { + return [`/ecoregions`, ...(params ? [params] : [])] as const; +}; + +export const getGetEcoregionsQueryOptions = < + TData = Awaited>, + TError = ErrorType, +>( + params?: GetEcoregionsParams, + options?: { + query?: Partial>, TError, TData>>; + request?: SecondParameter; + }, +) => { + const { query: queryOptions, request: requestOptions } = options ?? {}; + + const queryKey = queryOptions?.queryKey ?? getGetEcoregionsQueryKey(params); + + const queryFn: QueryFunction>> = ({ signal }) => + getEcoregions(params, requestOptions, signal); + + return { queryKey, queryFn, ...queryOptions } as UseQueryOptions< + Awaited>, + TError, + TData + > & { queryKey: QueryKey }; +}; + +export type GetEcoregionsQueryResult = NonNullable>>; +export type GetEcoregionsQueryError = ErrorType; + +export const useGetEcoregions = < + TData = Awaited>, + TError = ErrorType, +>( + params?: GetEcoregionsParams, + options?: { + query?: Partial>, TError, TData>>; + request?: SecondParameter; + }, +): UseQueryResult & { queryKey: QueryKey } => { + const queryOptions = getGetEcoregionsQueryOptions(params, options); + + const query = useQuery(queryOptions) as UseQueryResult & { queryKey: QueryKey }; + + query.queryKey = queryOptions.queryKey; + + return query; +}; + +export const postEcoregions = ( + ecoregionRequest: EcoregionRequest, + options?: SecondParameter, +) => { + return API( + { + url: `/ecoregions`, + method: "POST", + headers: { "Content-Type": "application/json" }, + data: ecoregionRequest, + }, + options, + ); +}; + +export const getPostEcoregionsMutationOptions = < + TError = ErrorType, + TContext = unknown, +>(options?: { + mutation?: UseMutationOptions< + Awaited>, + TError, + { data: EcoregionRequest }, + TContext + >; + request?: SecondParameter; +}): UseMutationOptions< + Awaited>, + TError, + { data: EcoregionRequest }, + TContext +> => { + const { mutation: mutationOptions, request: requestOptions } = options ?? {}; + + const mutationFn: MutationFunction< + Awaited>, + { data: EcoregionRequest } + > = (props) => { + const { data } = props ?? {}; + + return postEcoregions(data, requestOptions); + }; + + return { mutationFn, ...mutationOptions }; +}; + +export type PostEcoregionsMutationResult = NonNullable>>; +export type PostEcoregionsMutationBody = EcoregionRequest; +export type PostEcoregionsMutationError = ErrorType; + +export const usePostEcoregions = , TContext = unknown>(options?: { + mutation?: UseMutationOptions< + Awaited>, + TError, + { data: EcoregionRequest }, + TContext + >; + request?: SecondParameter; +}): UseMutationResult< + Awaited>, + TError, + { data: EcoregionRequest }, + TContext +> => { + const mutationOptions = getPostEcoregionsMutationOptions(options); + + return useMutation(mutationOptions); +}; +export const getEcoregionsId = ( + id: number, + params?: GetEcoregionsIdParams, + options?: SecondParameter, + signal?: AbortSignal, +) => { + return API( + { url: `/ecoregions/${id}`, method: "GET", params, signal }, + options, + ); +}; + +export const getGetEcoregionsIdQueryKey = (id: number, params?: GetEcoregionsIdParams) => { + return [`/ecoregions/${id}`, ...(params ? [params] : [])] as const; +}; + +export const getGetEcoregionsIdQueryOptions = < + TData = Awaited>, + TError = ErrorType, +>( + id: number, + params?: GetEcoregionsIdParams, + options?: { + query?: Partial>, TError, TData>>; + request?: SecondParameter; + }, +) => { + const { query: queryOptions, request: requestOptions } = options ?? {}; + + const queryKey = queryOptions?.queryKey ?? getGetEcoregionsIdQueryKey(id, params); + + const queryFn: QueryFunction>> = ({ signal }) => + getEcoregionsId(id, params, requestOptions, signal); + + return { queryKey, queryFn, enabled: !!id, ...queryOptions } as UseQueryOptions< + Awaited>, + TError, + TData + > & { queryKey: QueryKey }; +}; + +export type GetEcoregionsIdQueryResult = NonNullable>>; +export type GetEcoregionsIdQueryError = ErrorType; + +export const useGetEcoregionsId = < + TData = Awaited>, + TError = ErrorType, +>( + id: number, + params?: GetEcoregionsIdParams, + options?: { + query?: Partial>, TError, TData>>; + request?: SecondParameter; + }, +): UseQueryResult & { queryKey: QueryKey } => { + const queryOptions = getGetEcoregionsIdQueryOptions(id, params, options); + + const query = useQuery(queryOptions) as UseQueryResult & { queryKey: QueryKey }; + + query.queryKey = queryOptions.queryKey; + + return query; +}; + +export const putEcoregionsId = ( + id: number, + ecoregionRequest: EcoregionRequest, + options?: SecondParameter, +) => { + return API( + { + url: `/ecoregions/${id}`, + method: "PUT", + headers: { "Content-Type": "application/json" }, + data: ecoregionRequest, + }, + options, + ); +}; + +export const getPutEcoregionsIdMutationOptions = < + TError = ErrorType, + TContext = unknown, +>(options?: { + mutation?: UseMutationOptions< + Awaited>, + TError, + { id: number; data: EcoregionRequest }, + TContext + >; + request?: SecondParameter; +}): UseMutationOptions< + Awaited>, + TError, + { id: number; data: EcoregionRequest }, + TContext +> => { + const { mutation: mutationOptions, request: requestOptions } = options ?? {}; + + const mutationFn: MutationFunction< + Awaited>, + { id: number; data: EcoregionRequest } + > = (props) => { + const { id, data } = props ?? {}; + + return putEcoregionsId(id, data, requestOptions); + }; + + return { mutationFn, ...mutationOptions }; +}; + +export type PutEcoregionsIdMutationResult = NonNullable< + Awaited> +>; +export type PutEcoregionsIdMutationBody = EcoregionRequest; +export type PutEcoregionsIdMutationError = ErrorType; + +export const usePutEcoregionsId = , TContext = unknown>(options?: { + mutation?: UseMutationOptions< + Awaited>, + TError, + { id: number; data: EcoregionRequest }, + TContext + >; + request?: SecondParameter; +}): UseMutationResult< + Awaited>, + TError, + { id: number; data: EcoregionRequest }, + TContext +> => { + const mutationOptions = getPutEcoregionsIdMutationOptions(options); + + return useMutation(mutationOptions); +}; +export const deleteEcoregionsId = (id: number, options?: SecondParameter) => { + return API({ url: `/ecoregions/${id}`, method: "DELETE" }, options); +}; + +export const getDeleteEcoregionsIdMutationOptions = < + TError = ErrorType, + TContext = unknown, +>(options?: { + mutation?: UseMutationOptions< + Awaited>, + TError, + { id: number }, + TContext + >; + request?: SecondParameter; +}): UseMutationOptions< + Awaited>, + TError, + { id: number }, + TContext +> => { + const { mutation: mutationOptions, request: requestOptions } = options ?? {}; + + const mutationFn: MutationFunction< + Awaited>, + { id: number } + > = (props) => { + const { id } = props ?? {}; + + return deleteEcoregionsId(id, requestOptions); + }; + + return { mutationFn, ...mutationOptions }; +}; + +export type DeleteEcoregionsIdMutationResult = NonNullable< + Awaited> +>; + +export type DeleteEcoregionsIdMutationError = ErrorType; + +export const useDeleteEcoregionsId = , TContext = unknown>(options?: { + mutation?: UseMutationOptions< + Awaited>, + TError, + { id: number }, + TContext + >; + request?: SecondParameter; +}): UseMutationResult< + Awaited>, + TError, + { id: number }, + TContext +> => { + const mutationOptions = getDeleteEcoregionsIdMutationOptions(options); + + return useMutation(mutationOptions); +}; +export const postEcoregionsIdLocalizations = ( + id: number, + ecoregionLocalizationRequest: EcoregionLocalizationRequest, + options?: SecondParameter, +) => { + return API( + { + url: `/ecoregions/${id}/localizations`, + method: "POST", + headers: { "Content-Type": "application/json" }, + data: ecoregionLocalizationRequest, + }, + options, + ); +}; + +export const getPostEcoregionsIdLocalizationsMutationOptions = < + TError = ErrorType, + TContext = unknown, +>(options?: { + mutation?: UseMutationOptions< + Awaited>, + TError, + { id: number; data: EcoregionLocalizationRequest }, + TContext + >; + request?: SecondParameter; +}): UseMutationOptions< + Awaited>, + TError, + { id: number; data: EcoregionLocalizationRequest }, + TContext +> => { + const { mutation: mutationOptions, request: requestOptions } = options ?? {}; + + const mutationFn: MutationFunction< + Awaited>, + { id: number; data: EcoregionLocalizationRequest } + > = (props) => { + const { id, data } = props ?? {}; + + return postEcoregionsIdLocalizations(id, data, requestOptions); + }; + + return { mutationFn, ...mutationOptions }; +}; + +export type PostEcoregionsIdLocalizationsMutationResult = NonNullable< + Awaited> +>; +export type PostEcoregionsIdLocalizationsMutationBody = EcoregionLocalizationRequest; +export type PostEcoregionsIdLocalizationsMutationError = ErrorType; + +export const usePostEcoregionsIdLocalizations = < + TError = ErrorType, + TContext = unknown, +>(options?: { + mutation?: UseMutationOptions< + Awaited>, + TError, + { id: number; data: EcoregionLocalizationRequest }, + TContext + >; + request?: SecondParameter; +}): UseMutationResult< + Awaited>, + TError, + { id: number; data: EcoregionLocalizationRequest }, + TContext +> => { + const mutationOptions = getPostEcoregionsIdLocalizationsMutationOptions(options); + + return useMutation(mutationOptions); +}; diff --git a/client/src/types/generated/layer.ts b/client/src/types/generated/layer.ts new file mode 100644 index 0000000..5e5eb2f --- /dev/null +++ b/client/src/types/generated/layer.ts @@ -0,0 +1,414 @@ +/** + * Generated by orval v6.29.1 🍺 + * Do not edit manually. + * DOCUMENTATION + * OpenAPI spec version: 1.0.0 + */ +import { useMutation, useQuery } from "@tanstack/react-query"; +import type { + MutationFunction, + QueryFunction, + QueryKey, + UseMutationOptions, + UseMutationResult, + UseQueryOptions, + UseQueryResult, +} from "@tanstack/react-query"; +import type { + Error, + GetLayersIdParams, + GetLayersParams, + LayerListResponse, + LayerLocalizationRequest, + LayerLocalizationResponse, + LayerRequest, + LayerResponse, +} from "./strapi.schemas"; +import { API } from "../../services/api/index"; +import type { ErrorType } from "../../services/api/index"; + +type SecondParameter any> = Parameters[1]; + +export const getLayers = ( + params?: GetLayersParams, + options?: SecondParameter, + signal?: AbortSignal, +) => { + return API({ url: `/layers`, method: "GET", params, signal }, options); +}; + +export const getGetLayersQueryKey = (params?: GetLayersParams) => { + return [`/layers`, ...(params ? [params] : [])] as const; +}; + +export const getGetLayersQueryOptions = < + TData = Awaited>, + TError = ErrorType, +>( + params?: GetLayersParams, + options?: { + query?: Partial>, TError, TData>>; + request?: SecondParameter; + }, +) => { + const { query: queryOptions, request: requestOptions } = options ?? {}; + + const queryKey = queryOptions?.queryKey ?? getGetLayersQueryKey(params); + + const queryFn: QueryFunction>> = ({ signal }) => + getLayers(params, requestOptions, signal); + + return { queryKey, queryFn, ...queryOptions } as UseQueryOptions< + Awaited>, + TError, + TData + > & { queryKey: QueryKey }; +}; + +export type GetLayersQueryResult = NonNullable>>; +export type GetLayersQueryError = ErrorType; + +export const useGetLayers = < + TData = Awaited>, + TError = ErrorType, +>( + params?: GetLayersParams, + options?: { + query?: Partial>, TError, TData>>; + request?: SecondParameter; + }, +): UseQueryResult & { queryKey: QueryKey } => { + const queryOptions = getGetLayersQueryOptions(params, options); + + const query = useQuery(queryOptions) as UseQueryResult & { queryKey: QueryKey }; + + query.queryKey = queryOptions.queryKey; + + return query; +}; + +export const postLayers = (layerRequest: LayerRequest, options?: SecondParameter) => { + return API( + { + url: `/layers`, + method: "POST", + headers: { "Content-Type": "application/json" }, + data: layerRequest, + }, + options, + ); +}; + +export const getPostLayersMutationOptions = < + TError = ErrorType, + TContext = unknown, +>(options?: { + mutation?: UseMutationOptions< + Awaited>, + TError, + { data: LayerRequest }, + TContext + >; + request?: SecondParameter; +}): UseMutationOptions< + Awaited>, + TError, + { data: LayerRequest }, + TContext +> => { + const { mutation: mutationOptions, request: requestOptions } = options ?? {}; + + const mutationFn: MutationFunction< + Awaited>, + { data: LayerRequest } + > = (props) => { + const { data } = props ?? {}; + + return postLayers(data, requestOptions); + }; + + return { mutationFn, ...mutationOptions }; +}; + +export type PostLayersMutationResult = NonNullable>>; +export type PostLayersMutationBody = LayerRequest; +export type PostLayersMutationError = ErrorType; + +export const usePostLayers = , TContext = unknown>(options?: { + mutation?: UseMutationOptions< + Awaited>, + TError, + { data: LayerRequest }, + TContext + >; + request?: SecondParameter; +}): UseMutationResult< + Awaited>, + TError, + { data: LayerRequest }, + TContext +> => { + const mutationOptions = getPostLayersMutationOptions(options); + + return useMutation(mutationOptions); +}; +export const getLayersId = ( + id: number, + params?: GetLayersIdParams, + options?: SecondParameter, + signal?: AbortSignal, +) => { + return API({ url: `/layers/${id}`, method: "GET", params, signal }, options); +}; + +export const getGetLayersIdQueryKey = (id: number, params?: GetLayersIdParams) => { + return [`/layers/${id}`, ...(params ? [params] : [])] as const; +}; + +export const getGetLayersIdQueryOptions = < + TData = Awaited>, + TError = ErrorType, +>( + id: number, + params?: GetLayersIdParams, + options?: { + query?: Partial>, TError, TData>>; + request?: SecondParameter; + }, +) => { + const { query: queryOptions, request: requestOptions } = options ?? {}; + + const queryKey = queryOptions?.queryKey ?? getGetLayersIdQueryKey(id, params); + + const queryFn: QueryFunction>> = ({ signal }) => + getLayersId(id, params, requestOptions, signal); + + return { queryKey, queryFn, enabled: !!id, ...queryOptions } as UseQueryOptions< + Awaited>, + TError, + TData + > & { queryKey: QueryKey }; +}; + +export type GetLayersIdQueryResult = NonNullable>>; +export type GetLayersIdQueryError = ErrorType; + +export const useGetLayersId = < + TData = Awaited>, + TError = ErrorType, +>( + id: number, + params?: GetLayersIdParams, + options?: { + query?: Partial>, TError, TData>>; + request?: SecondParameter; + }, +): UseQueryResult & { queryKey: QueryKey } => { + const queryOptions = getGetLayersIdQueryOptions(id, params, options); + + const query = useQuery(queryOptions) as UseQueryResult & { queryKey: QueryKey }; + + query.queryKey = queryOptions.queryKey; + + return query; +}; + +export const putLayersId = ( + id: number, + layerRequest: LayerRequest, + options?: SecondParameter, +) => { + return API( + { + url: `/layers/${id}`, + method: "PUT", + headers: { "Content-Type": "application/json" }, + data: layerRequest, + }, + options, + ); +}; + +export const getPutLayersIdMutationOptions = < + TError = ErrorType, + TContext = unknown, +>(options?: { + mutation?: UseMutationOptions< + Awaited>, + TError, + { id: number; data: LayerRequest }, + TContext + >; + request?: SecondParameter; +}): UseMutationOptions< + Awaited>, + TError, + { id: number; data: LayerRequest }, + TContext +> => { + const { mutation: mutationOptions, request: requestOptions } = options ?? {}; + + const mutationFn: MutationFunction< + Awaited>, + { id: number; data: LayerRequest } + > = (props) => { + const { id, data } = props ?? {}; + + return putLayersId(id, data, requestOptions); + }; + + return { mutationFn, ...mutationOptions }; +}; + +export type PutLayersIdMutationResult = NonNullable>>; +export type PutLayersIdMutationBody = LayerRequest; +export type PutLayersIdMutationError = ErrorType; + +export const usePutLayersId = , TContext = unknown>(options?: { + mutation?: UseMutationOptions< + Awaited>, + TError, + { id: number; data: LayerRequest }, + TContext + >; + request?: SecondParameter; +}): UseMutationResult< + Awaited>, + TError, + { id: number; data: LayerRequest }, + TContext +> => { + const mutationOptions = getPutLayersIdMutationOptions(options); + + return useMutation(mutationOptions); +}; +export const deleteLayersId = (id: number, options?: SecondParameter) => { + return API({ url: `/layers/${id}`, method: "DELETE" }, options); +}; + +export const getDeleteLayersIdMutationOptions = < + TError = ErrorType, + TContext = unknown, +>(options?: { + mutation?: UseMutationOptions< + Awaited>, + TError, + { id: number }, + TContext + >; + request?: SecondParameter; +}): UseMutationOptions< + Awaited>, + TError, + { id: number }, + TContext +> => { + const { mutation: mutationOptions, request: requestOptions } = options ?? {}; + + const mutationFn: MutationFunction>, { id: number }> = ( + props, + ) => { + const { id } = props ?? {}; + + return deleteLayersId(id, requestOptions); + }; + + return { mutationFn, ...mutationOptions }; +}; + +export type DeleteLayersIdMutationResult = NonNullable>>; + +export type DeleteLayersIdMutationError = ErrorType; + +export const useDeleteLayersId = , TContext = unknown>(options?: { + mutation?: UseMutationOptions< + Awaited>, + TError, + { id: number }, + TContext + >; + request?: SecondParameter; +}): UseMutationResult< + Awaited>, + TError, + { id: number }, + TContext +> => { + const mutationOptions = getDeleteLayersIdMutationOptions(options); + + return useMutation(mutationOptions); +}; +export const postLayersIdLocalizations = ( + id: number, + layerLocalizationRequest: LayerLocalizationRequest, + options?: SecondParameter, +) => { + return API( + { + url: `/layers/${id}/localizations`, + method: "POST", + headers: { "Content-Type": "application/json" }, + data: layerLocalizationRequest, + }, + options, + ); +}; + +export const getPostLayersIdLocalizationsMutationOptions = < + TError = ErrorType, + TContext = unknown, +>(options?: { + mutation?: UseMutationOptions< + Awaited>, + TError, + { id: number; data: LayerLocalizationRequest }, + TContext + >; + request?: SecondParameter; +}): UseMutationOptions< + Awaited>, + TError, + { id: number; data: LayerLocalizationRequest }, + TContext +> => { + const { mutation: mutationOptions, request: requestOptions } = options ?? {}; + + const mutationFn: MutationFunction< + Awaited>, + { id: number; data: LayerLocalizationRequest } + > = (props) => { + const { id, data } = props ?? {}; + + return postLayersIdLocalizations(id, data, requestOptions); + }; + + return { mutationFn, ...mutationOptions }; +}; + +export type PostLayersIdLocalizationsMutationResult = NonNullable< + Awaited> +>; +export type PostLayersIdLocalizationsMutationBody = LayerLocalizationRequest; +export type PostLayersIdLocalizationsMutationError = ErrorType; + +export const usePostLayersIdLocalizations = < + TError = ErrorType, + TContext = unknown, +>(options?: { + mutation?: UseMutationOptions< + Awaited>, + TError, + { id: number; data: LayerLocalizationRequest }, + TContext + >; + request?: SecondParameter; +}): UseMutationResult< + Awaited>, + TError, + { id: number; data: LayerLocalizationRequest }, + TContext +> => { + const mutationOptions = getPostLayersIdLocalizationsMutationOptions(options); + + return useMutation(mutationOptions); +}; diff --git a/client/src/types/generated/rangeland.ts b/client/src/types/generated/rangeland.ts new file mode 100644 index 0000000..8ea6de3 --- /dev/null +++ b/client/src/types/generated/rangeland.ts @@ -0,0 +1,425 @@ +/** + * Generated by orval v6.29.1 🍺 + * Do not edit manually. + * DOCUMENTATION + * OpenAPI spec version: 1.0.0 + */ +import { useMutation, useQuery } from "@tanstack/react-query"; +import type { + MutationFunction, + QueryFunction, + QueryKey, + UseMutationOptions, + UseMutationResult, + UseQueryOptions, + UseQueryResult, +} from "@tanstack/react-query"; +import type { + Error, + GetRangelandsIdParams, + GetRangelandsParams, + RangelandListResponse, + RangelandLocalizationRequest, + RangelandLocalizationResponse, + RangelandRequest, + RangelandResponse, +} from "./strapi.schemas"; +import { API } from "../../services/api/index"; +import type { ErrorType } from "../../services/api/index"; + +type SecondParameter any> = Parameters[1]; + +export const getRangelands = ( + params?: GetRangelandsParams, + options?: SecondParameter, + signal?: AbortSignal, +) => { + return API({ url: `/rangelands`, method: "GET", params, signal }, options); +}; + +export const getGetRangelandsQueryKey = (params?: GetRangelandsParams) => { + return [`/rangelands`, ...(params ? [params] : [])] as const; +}; + +export const getGetRangelandsQueryOptions = < + TData = Awaited>, + TError = ErrorType, +>( + params?: GetRangelandsParams, + options?: { + query?: Partial>, TError, TData>>; + request?: SecondParameter; + }, +) => { + const { query: queryOptions, request: requestOptions } = options ?? {}; + + const queryKey = queryOptions?.queryKey ?? getGetRangelandsQueryKey(params); + + const queryFn: QueryFunction>> = ({ signal }) => + getRangelands(params, requestOptions, signal); + + return { queryKey, queryFn, ...queryOptions } as UseQueryOptions< + Awaited>, + TError, + TData + > & { queryKey: QueryKey }; +}; + +export type GetRangelandsQueryResult = NonNullable>>; +export type GetRangelandsQueryError = ErrorType; + +export const useGetRangelands = < + TData = Awaited>, + TError = ErrorType, +>( + params?: GetRangelandsParams, + options?: { + query?: Partial>, TError, TData>>; + request?: SecondParameter; + }, +): UseQueryResult & { queryKey: QueryKey } => { + const queryOptions = getGetRangelandsQueryOptions(params, options); + + const query = useQuery(queryOptions) as UseQueryResult & { queryKey: QueryKey }; + + query.queryKey = queryOptions.queryKey; + + return query; +}; + +export const postRangelands = ( + rangelandRequest: RangelandRequest, + options?: SecondParameter, +) => { + return API( + { + url: `/rangelands`, + method: "POST", + headers: { "Content-Type": "application/json" }, + data: rangelandRequest, + }, + options, + ); +}; + +export const getPostRangelandsMutationOptions = < + TError = ErrorType, + TContext = unknown, +>(options?: { + mutation?: UseMutationOptions< + Awaited>, + TError, + { data: RangelandRequest }, + TContext + >; + request?: SecondParameter; +}): UseMutationOptions< + Awaited>, + TError, + { data: RangelandRequest }, + TContext +> => { + const { mutation: mutationOptions, request: requestOptions } = options ?? {}; + + const mutationFn: MutationFunction< + Awaited>, + { data: RangelandRequest } + > = (props) => { + const { data } = props ?? {}; + + return postRangelands(data, requestOptions); + }; + + return { mutationFn, ...mutationOptions }; +}; + +export type PostRangelandsMutationResult = NonNullable>>; +export type PostRangelandsMutationBody = RangelandRequest; +export type PostRangelandsMutationError = ErrorType; + +export const usePostRangelands = , TContext = unknown>(options?: { + mutation?: UseMutationOptions< + Awaited>, + TError, + { data: RangelandRequest }, + TContext + >; + request?: SecondParameter; +}): UseMutationResult< + Awaited>, + TError, + { data: RangelandRequest }, + TContext +> => { + const mutationOptions = getPostRangelandsMutationOptions(options); + + return useMutation(mutationOptions); +}; +export const getRangelandsId = ( + id: number, + params?: GetRangelandsIdParams, + options?: SecondParameter, + signal?: AbortSignal, +) => { + return API( + { url: `/rangelands/${id}`, method: "GET", params, signal }, + options, + ); +}; + +export const getGetRangelandsIdQueryKey = (id: number, params?: GetRangelandsIdParams) => { + return [`/rangelands/${id}`, ...(params ? [params] : [])] as const; +}; + +export const getGetRangelandsIdQueryOptions = < + TData = Awaited>, + TError = ErrorType, +>( + id: number, + params?: GetRangelandsIdParams, + options?: { + query?: Partial>, TError, TData>>; + request?: SecondParameter; + }, +) => { + const { query: queryOptions, request: requestOptions } = options ?? {}; + + const queryKey = queryOptions?.queryKey ?? getGetRangelandsIdQueryKey(id, params); + + const queryFn: QueryFunction>> = ({ signal }) => + getRangelandsId(id, params, requestOptions, signal); + + return { queryKey, queryFn, enabled: !!id, ...queryOptions } as UseQueryOptions< + Awaited>, + TError, + TData + > & { queryKey: QueryKey }; +}; + +export type GetRangelandsIdQueryResult = NonNullable>>; +export type GetRangelandsIdQueryError = ErrorType; + +export const useGetRangelandsId = < + TData = Awaited>, + TError = ErrorType, +>( + id: number, + params?: GetRangelandsIdParams, + options?: { + query?: Partial>, TError, TData>>; + request?: SecondParameter; + }, +): UseQueryResult & { queryKey: QueryKey } => { + const queryOptions = getGetRangelandsIdQueryOptions(id, params, options); + + const query = useQuery(queryOptions) as UseQueryResult & { queryKey: QueryKey }; + + query.queryKey = queryOptions.queryKey; + + return query; +}; + +export const putRangelandsId = ( + id: number, + rangelandRequest: RangelandRequest, + options?: SecondParameter, +) => { + return API( + { + url: `/rangelands/${id}`, + method: "PUT", + headers: { "Content-Type": "application/json" }, + data: rangelandRequest, + }, + options, + ); +}; + +export const getPutRangelandsIdMutationOptions = < + TError = ErrorType, + TContext = unknown, +>(options?: { + mutation?: UseMutationOptions< + Awaited>, + TError, + { id: number; data: RangelandRequest }, + TContext + >; + request?: SecondParameter; +}): UseMutationOptions< + Awaited>, + TError, + { id: number; data: RangelandRequest }, + TContext +> => { + const { mutation: mutationOptions, request: requestOptions } = options ?? {}; + + const mutationFn: MutationFunction< + Awaited>, + { id: number; data: RangelandRequest } + > = (props) => { + const { id, data } = props ?? {}; + + return putRangelandsId(id, data, requestOptions); + }; + + return { mutationFn, ...mutationOptions }; +}; + +export type PutRangelandsIdMutationResult = NonNullable< + Awaited> +>; +export type PutRangelandsIdMutationBody = RangelandRequest; +export type PutRangelandsIdMutationError = ErrorType; + +export const usePutRangelandsId = , TContext = unknown>(options?: { + mutation?: UseMutationOptions< + Awaited>, + TError, + { id: number; data: RangelandRequest }, + TContext + >; + request?: SecondParameter; +}): UseMutationResult< + Awaited>, + TError, + { id: number; data: RangelandRequest }, + TContext +> => { + const mutationOptions = getPutRangelandsIdMutationOptions(options); + + return useMutation(mutationOptions); +}; +export const deleteRangelandsId = (id: number, options?: SecondParameter) => { + return API({ url: `/rangelands/${id}`, method: "DELETE" }, options); +}; + +export const getDeleteRangelandsIdMutationOptions = < + TError = ErrorType, + TContext = unknown, +>(options?: { + mutation?: UseMutationOptions< + Awaited>, + TError, + { id: number }, + TContext + >; + request?: SecondParameter; +}): UseMutationOptions< + Awaited>, + TError, + { id: number }, + TContext +> => { + const { mutation: mutationOptions, request: requestOptions } = options ?? {}; + + const mutationFn: MutationFunction< + Awaited>, + { id: number } + > = (props) => { + const { id } = props ?? {}; + + return deleteRangelandsId(id, requestOptions); + }; + + return { mutationFn, ...mutationOptions }; +}; + +export type DeleteRangelandsIdMutationResult = NonNullable< + Awaited> +>; + +export type DeleteRangelandsIdMutationError = ErrorType; + +export const useDeleteRangelandsId = , TContext = unknown>(options?: { + mutation?: UseMutationOptions< + Awaited>, + TError, + { id: number }, + TContext + >; + request?: SecondParameter; +}): UseMutationResult< + Awaited>, + TError, + { id: number }, + TContext +> => { + const mutationOptions = getDeleteRangelandsIdMutationOptions(options); + + return useMutation(mutationOptions); +}; +export const postRangelandsIdLocalizations = ( + id: number, + rangelandLocalizationRequest: RangelandLocalizationRequest, + options?: SecondParameter, +) => { + return API( + { + url: `/rangelands/${id}/localizations`, + method: "POST", + headers: { "Content-Type": "application/json" }, + data: rangelandLocalizationRequest, + }, + options, + ); +}; + +export const getPostRangelandsIdLocalizationsMutationOptions = < + TError = ErrorType, + TContext = unknown, +>(options?: { + mutation?: UseMutationOptions< + Awaited>, + TError, + { id: number; data: RangelandLocalizationRequest }, + TContext + >; + request?: SecondParameter; +}): UseMutationOptions< + Awaited>, + TError, + { id: number; data: RangelandLocalizationRequest }, + TContext +> => { + const { mutation: mutationOptions, request: requestOptions } = options ?? {}; + + const mutationFn: MutationFunction< + Awaited>, + { id: number; data: RangelandLocalizationRequest } + > = (props) => { + const { id, data } = props ?? {}; + + return postRangelandsIdLocalizations(id, data, requestOptions); + }; + + return { mutationFn, ...mutationOptions }; +}; + +export type PostRangelandsIdLocalizationsMutationResult = NonNullable< + Awaited> +>; +export type PostRangelandsIdLocalizationsMutationBody = RangelandLocalizationRequest; +export type PostRangelandsIdLocalizationsMutationError = ErrorType; + +export const usePostRangelandsIdLocalizations = < + TError = ErrorType, + TContext = unknown, +>(options?: { + mutation?: UseMutationOptions< + Awaited>, + TError, + { id: number; data: RangelandLocalizationRequest }, + TContext + >; + request?: SecondParameter; +}): UseMutationResult< + Awaited>, + TError, + { id: number; data: RangelandLocalizationRequest }, + TContext +> => { + const mutationOptions = getPostRangelandsIdLocalizationsMutationOptions(options); + + return useMutation(mutationOptions); +}; diff --git a/client/src/types/generated/strapi.schemas.ts b/client/src/types/generated/strapi.schemas.ts new file mode 100644 index 0000000..949022f --- /dev/null +++ b/client/src/types/generated/strapi.schemas.ts @@ -0,0 +1,1958 @@ +/** + * Generated by orval v6.29.1 🍺 + * Do not edit manually. + * DOCUMENTATION + * OpenAPI spec version: 1.0.0 + */ +export type GetRangelandsIdPopulateOneOf = { [key: string]: any }; + +export type GetRangelandsIdParams = { + /** + * Relations to return + */ + populate?: string | GetRangelandsIdPopulateOneOf; +}; + +export type GetRangelandsPopulateOneOf = { [key: string]: any }; + +export type GetRangelandsParams = { + /** + * Sort by attributes ascending (asc) or descending (desc) + */ + sort?: string; + /** + * Return page/pageSize (default: true) + */ + "pagination[withCount]"?: boolean; + /** + * Page number (default: 0) + */ + "pagination[page]"?: number; + /** + * Page size (default: 25) + */ + "pagination[pageSize]"?: number; + /** + * Offset value (default: 0) + */ + "pagination[start]"?: number; + /** + * Number of entities to return (default: 25) + */ + "pagination[limit]"?: number; + /** + * Fields to return (ex: ['title','author','test']) + */ + fields?: string[]; + /** + * Relations to return + */ + populate?: string | GetRangelandsPopulateOneOf; + /** + * Filters to apply + */ + filters?: { [key: string]: any }; + /** + * Locale to apply + */ + locale?: string; +}; + +export type GetLayersIdPopulateOneOf = { [key: string]: any }; + +export type GetLayersIdParams = { + /** + * Relations to return + */ + populate?: string | GetLayersIdPopulateOneOf; +}; + +export type GetLayersPopulateOneOf = { [key: string]: any }; + +export type GetLayersParams = { + /** + * Sort by attributes ascending (asc) or descending (desc) + */ + sort?: string; + /** + * Return page/pageSize (default: true) + */ + "pagination[withCount]"?: boolean; + /** + * Page number (default: 0) + */ + "pagination[page]"?: number; + /** + * Page size (default: 25) + */ + "pagination[pageSize]"?: number; + /** + * Offset value (default: 0) + */ + "pagination[start]"?: number; + /** + * Number of entities to return (default: 25) + */ + "pagination[limit]"?: number; + /** + * Fields to return (ex: ['title','author','test']) + */ + fields?: string[]; + /** + * Relations to return + */ + populate?: string | GetLayersPopulateOneOf; + /** + * Filters to apply + */ + filters?: { [key: string]: any }; + /** + * Locale to apply + */ + locale?: string; +}; + +export type GetEcoregionsIdPopulateOneOf = { [key: string]: any }; + +export type GetEcoregionsIdParams = { + /** + * Relations to return + */ + populate?: string | GetEcoregionsIdPopulateOneOf; +}; + +export type GetEcoregionsPopulateOneOf = { [key: string]: any }; + +export type GetEcoregionsParams = { + /** + * Sort by attributes ascending (asc) or descending (desc) + */ + sort?: string; + /** + * Return page/pageSize (default: true) + */ + "pagination[withCount]"?: boolean; + /** + * Page number (default: 0) + */ + "pagination[page]"?: number; + /** + * Page size (default: 25) + */ + "pagination[pageSize]"?: number; + /** + * Offset value (default: 0) + */ + "pagination[start]"?: number; + /** + * Number of entities to return (default: 25) + */ + "pagination[limit]"?: number; + /** + * Fields to return (ex: ['title','author','test']) + */ + fields?: string[]; + /** + * Relations to return + */ + populate?: string | GetEcoregionsPopulateOneOf; + /** + * Filters to apply + */ + filters?: { [key: string]: any }; + /** + * Locale to apply + */ + locale?: string; +}; + +export type GetDatasetsIdPopulateOneOf = { [key: string]: any }; + +export type GetDatasetsIdParams = { + /** + * Relations to return + */ + populate?: string | GetDatasetsIdPopulateOneOf; +}; + +export type GetDatasetsPopulateOneOf = { [key: string]: any }; + +export type GetDatasetsParams = { + /** + * Sort by attributes ascending (asc) or descending (desc) + */ + sort?: string; + /** + * Return page/pageSize (default: true) + */ + "pagination[withCount]"?: boolean; + /** + * Page number (default: 0) + */ + "pagination[page]"?: number; + /** + * Page size (default: 25) + */ + "pagination[pageSize]"?: number; + /** + * Offset value (default: 0) + */ + "pagination[start]"?: number; + /** + * Number of entities to return (default: 25) + */ + "pagination[limit]"?: number; + /** + * Fields to return (ex: ['title','author','test']) + */ + fields?: string[]; + /** + * Relations to return + */ + populate?: string | GetDatasetsPopulateOneOf; + /** + * Filters to apply + */ + filters?: { [key: string]: any }; + /** + * Locale to apply + */ + locale?: string; +}; + +/** + * every controller of the api + */ +export type UsersPermissionsPermissionsTreeControllers = { + [key: string]: { + [key: string]: { + enabled?: boolean; + policy?: string; + }; + }; +}; + +export interface UsersPermissionsPermissionsTree { + [key: string]: { + /** every controller of the api */ + controllers?: UsersPermissionsPermissionsTreeControllers; + }; +} + +export type UsersPermissionsRoleRequestBody = { + description?: string; + name?: string; + permissions?: UsersPermissionsPermissionsTree; + type?: string; +}; + +export interface UsersPermissionsUser { + blocked?: boolean; + confirmed?: boolean; + createdAt?: string; + email?: string; + id?: number; + provider?: string; + updatedAt?: string; + username?: string; +} + +export interface UsersPermissionsUserRegistration { + jwt?: string; + user?: UsersPermissionsUser; +} + +export interface UsersPermissionsRole { + createdAt?: string; + description?: string; + id?: number; + name?: string; + type?: string; + updatedAt?: string; +} + +export type UploadFileProviderMetadata = { [key: string]: any }; + +export interface UploadFile { + alternativeText?: string; + caption?: string; + createdAt?: string; + ext?: string; + formats?: number; + hash?: string; + height?: number; + id?: number; + mime?: string; + name?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: UploadFileProviderMetadata; + size?: number; + updatedAt?: string; + url?: string; + width?: number; +} + +export type RangelandResponseMeta = { [key: string]: any }; + +export interface RangelandResponse { + data?: RangelandResponseDataObject; + meta?: RangelandResponseMeta; +} + +export type RangelandUpdatedByDataAttributes = { [key: string]: any }; + +export type RangelandUpdatedByData = { + attributes?: RangelandUpdatedByDataAttributes; + id?: number; +}; + +export type RangelandUpdatedBy = { + data?: RangelandUpdatedByData; +}; + +export type RangelandLocalizations = { + data?: RangelandListResponseDataItemLocalized[]; +}; + +export type RangelandEcoregionsDataItem = { + attributes?: RangelandEcoregionsDataItemAttributes; + id?: number; +}; + +export type RangelandEcoregions = { + data?: RangelandEcoregionsDataItem[]; +}; + +export interface Rangeland { + code?: string; + color?: string; + createdAt?: string; + createdBy?: RangelandCreatedBy; + ecoregions?: RangelandEcoregions; + locale?: string; + localizations?: RangelandLocalizations; + publishedAt?: string; + slug?: string; + title: string; + updatedAt?: string; + updatedBy?: RangelandUpdatedBy; +} + +export interface RangelandResponseDataObject { + attributes?: Rangeland; + id?: number; +} + +export type RangelandEcoregionsDataItemAttributesUpdatedByDataAttributes = { [key: string]: any }; + +export type RangelandEcoregionsDataItemAttributesUpdatedByData = { + attributes?: RangelandEcoregionsDataItemAttributesUpdatedByDataAttributes; + id?: number; +}; + +export type RangelandEcoregionsDataItemAttributesUpdatedBy = { + data?: RangelandEcoregionsDataItemAttributesUpdatedByData; +}; + +export type RangelandEcoregionsDataItemAttributesRangeland = { + data?: RangelandEcoregionsDataItemAttributesRangelandData; +}; + +export type RangelandEcoregionsDataItemAttributes = { + code?: string; + color?: string; + createdAt?: string; + createdBy?: RangelandEcoregionsDataItemAttributesCreatedBy; + locale?: string; + localizations?: RangelandEcoregionsDataItemAttributesLocalizations; + publishedAt?: string; + rangeland?: RangelandEcoregionsDataItemAttributesRangeland; + slug?: string; + title?: string; + updatedAt?: string; + updatedBy?: RangelandEcoregionsDataItemAttributesUpdatedBy; +}; + +export type RangelandEcoregionsDataItemAttributesRangelandDataAttributesUpdatedByDataAttributes = { + [key: string]: any; +}; + +export type RangelandEcoregionsDataItemAttributesRangelandDataAttributesUpdatedByData = { + attributes?: RangelandEcoregionsDataItemAttributesRangelandDataAttributesUpdatedByDataAttributes; + id?: number; +}; + +export type RangelandEcoregionsDataItemAttributesRangelandDataAttributesUpdatedBy = { + data?: RangelandEcoregionsDataItemAttributesRangelandDataAttributesUpdatedByData; +}; + +export type RangelandEcoregionsDataItemAttributesRangelandDataAttributesLocalizations = { + data?: unknown[]; +}; + +export type RangelandEcoregionsDataItemAttributesRangelandDataAttributesEcoregionsDataItemAttributes = + { [key: string]: any }; + +export type RangelandEcoregionsDataItemAttributesRangelandDataAttributesEcoregionsDataItem = { + attributes?: RangelandEcoregionsDataItemAttributesRangelandDataAttributesEcoregionsDataItemAttributes; + id?: number; +}; + +export type RangelandEcoregionsDataItemAttributesRangelandDataAttributesEcoregions = { + data?: RangelandEcoregionsDataItemAttributesRangelandDataAttributesEcoregionsDataItem[]; +}; + +export type RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributes = { + blocked?: boolean; + createdAt?: string; + createdBy?: RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesCreatedBy; + email?: string; + firstname?: string; + isActive?: boolean; + lastname?: string; + preferedLanguage?: string; + registrationToken?: string; + resetPasswordToken?: string; + roles?: RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRoles; + updatedAt?: string; + updatedBy?: RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesUpdatedBy; + username?: string; +}; + +export type RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByData = { + attributes?: RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributes; + id?: number; +}; + +export type RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedBy = { + data?: RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByData; +}; + +export type RangelandEcoregionsDataItemAttributesRangelandDataAttributes = { + code?: string; + color?: string; + createdAt?: string; + createdBy?: RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedBy; + ecoregions?: RangelandEcoregionsDataItemAttributesRangelandDataAttributesEcoregions; + locale?: string; + localizations?: RangelandEcoregionsDataItemAttributesRangelandDataAttributesLocalizations; + publishedAt?: string; + slug?: string; + title?: string; + updatedAt?: string; + updatedBy?: RangelandEcoregionsDataItemAttributesRangelandDataAttributesUpdatedBy; +}; + +export type RangelandEcoregionsDataItemAttributesRangelandData = { + attributes?: RangelandEcoregionsDataItemAttributesRangelandDataAttributes; + id?: number; +}; + +export type RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesUpdatedByDataAttributes = + { [key: string]: any }; + +export type RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesUpdatedByData = + { + attributes?: RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesUpdatedByDataAttributes; + id?: number; + }; + +export type RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesUpdatedBy = + { + data?: RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesUpdatedByData; + }; + +export type RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItem = + { + attributes?: RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributes; + id?: number; + }; + +export type RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRoles = + { + data?: RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItem[]; + }; + +export type RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesUsersDataItemAttributes = + { [key: string]: any }; + +export type RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesUsersDataItem = + { + attributes?: RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesUsersDataItemAttributes; + id?: number; + }; + +export type RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesUsers = + { + data?: RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesUsersDataItem[]; + }; + +export type RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesUpdatedByDataAttributes = + { [key: string]: any }; + +export type RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesUpdatedByData = + { + attributes?: RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesUpdatedByDataAttributes; + id?: number; + }; + +export type RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesUpdatedBy = + { + data?: RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesUpdatedByData; + }; + +export type RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributes = + { + action?: string; + actionParameters?: unknown; + conditions?: unknown; + createdAt?: string; + createdBy?: RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesCreatedBy; + properties?: unknown; + role?: RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesRole; + subject?: string; + updatedAt?: string; + updatedBy?: RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesUpdatedBy; + }; + +export type RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItem = + { + attributes?: RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributes; + id?: number; + }; + +export type RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissions = + { + data?: RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItem[]; + }; + +export type RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributes = + { + code?: string; + createdAt?: string; + createdBy?: RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesCreatedBy; + description?: string; + name?: string; + permissions?: RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissions; + updatedAt?: string; + updatedBy?: RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesUpdatedBy; + users?: RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesUsers; + }; + +export type RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesUpdatedByDataAttributes = + { [key: string]: any }; + +export type RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesUpdatedByData = + { + attributes?: RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesUpdatedByDataAttributes; + id?: number; + }; + +export type RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesUpdatedBy = + { + data?: RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesUpdatedByData; + }; + +export type RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesRoleDataAttributes = + { [key: string]: any }; + +export type RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesRoleData = + { + attributes?: RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesRoleDataAttributes; + id?: number; + }; + +export type RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesRole = + { + data?: RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesRoleData; + }; + +export type RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesCreatedByDataAttributes = + { [key: string]: any }; + +export type RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesCreatedByData = + { + attributes?: RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesCreatedByDataAttributes; + id?: number; + }; + +export type RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesCreatedBy = + { + data?: RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesCreatedByData; + }; + +export type RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesCreatedByDataAttributes = + { [key: string]: any }; + +export type RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesCreatedByData = + { + attributes?: RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesCreatedByDataAttributes; + id?: number; + }; + +export type RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesCreatedBy = + { + data?: RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesRolesDataItemAttributesCreatedByData; + }; + +export type RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesCreatedByData = + { + attributes?: RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesCreatedByDataAttributes; + id?: number; + }; + +export type RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesCreatedBy = + { + data?: RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesCreatedByData; + }; + +export type RangelandEcoregionsDataItemAttributesRangelandDataAttributesCreatedByDataAttributesCreatedByDataAttributes = + { [key: string]: any }; + +export type RangelandEcoregionsDataItemAttributesLocalizations = { + data?: unknown[]; +}; + +export type RangelandEcoregionsDataItemAttributesCreatedByDataAttributes = { [key: string]: any }; + +export type RangelandEcoregionsDataItemAttributesCreatedByData = { + attributes?: RangelandEcoregionsDataItemAttributesCreatedByDataAttributes; + id?: number; +}; + +export type RangelandEcoregionsDataItemAttributesCreatedBy = { + data?: RangelandEcoregionsDataItemAttributesCreatedByData; +}; + +export type RangelandCreatedByDataAttributes = { [key: string]: any }; + +export type RangelandCreatedByData = { + attributes?: RangelandCreatedByDataAttributes; + id?: number; +}; + +export type RangelandCreatedBy = { + data?: RangelandCreatedByData; +}; + +export type RangelandListResponseMetaPagination = { + page?: number; + /** @maximum 1 */ + pageCount?: number; + /** @minimum 25 */ + pageSize?: number; + total?: number; +}; + +export type RangelandListResponseMeta = { + pagination?: RangelandListResponseMetaPagination; +}; + +export interface RangelandListResponseDataItem { + attributes?: Rangeland; + id?: number; +} + +export interface RangelandListResponse { + data?: RangelandListResponseDataItem[]; + meta?: RangelandListResponseMeta; +} + +export type RangelandLocalizationListResponseMetaPagination = { + page?: number; + /** @maximum 1 */ + pageCount?: number; + /** @minimum 25 */ + pageSize?: number; + total?: number; +}; + +export type RangelandLocalizationListResponseMeta = { + pagination?: RangelandLocalizationListResponseMetaPagination; +}; + +export interface RangelandListResponseDataItemLocalized { + attributes?: Rangeland; + id?: number; +} + +export interface RangelandLocalizationListResponse { + data?: RangelandListResponseDataItemLocalized[]; + meta?: RangelandLocalizationListResponseMeta; +} + +export type RangelandLocalizationResponseMeta = { [key: string]: any }; + +export interface RangelandResponseDataObjectLocalized { + attributes?: Rangeland; + id?: number; +} + +export interface RangelandLocalizationResponse { + data?: RangelandResponseDataObjectLocalized; + meta?: RangelandLocalizationResponseMeta; +} + +export type RangelandRequestDataEcoregionsItem = number | string; + +export type RangelandRequestData = { + code?: string; + color?: string; + ecoregions?: RangelandRequestDataEcoregionsItem[]; + locale?: string; + slug?: string; + title: string; +}; + +export interface RangelandRequest { + data: RangelandRequestData; +} + +export type RangelandLocalizationRequestEcoregionsItem = number | string; + +export interface RangelandLocalizationRequest { + code?: string; + color?: string; + ecoregions?: RangelandLocalizationRequestEcoregionsItem[]; + locale: string; + slug?: string; + title: string; +} + +export type DefaultLegendComponentType = + (typeof DefaultLegendComponentType)[keyof typeof DefaultLegendComponentType]; + +// eslint-disable-next-line @typescript-eslint/no-redeclare +export const DefaultLegendComponentType = { + Basic: "Basic", + Gradient: "Gradient", + Choropleth: "Choropleth", +} as const; + +export type DefaultLegendComponentItemsItem = { + color?: string; + id?: number; + name?: string; +}; + +export interface DefaultLegendComponent { + id?: number; + items?: DefaultLegendComponentItemsItem[]; + type?: DefaultLegendComponentType; +} + +export type LayerResponseMeta = { [key: string]: any }; + +export interface LayerResponse { + data?: LayerResponseDataObject; + meta?: LayerResponseMeta; +} + +export type LayerUpdatedByDataAttributes = { [key: string]: any }; + +export type LayerUpdatedByData = { + attributes?: LayerUpdatedByDataAttributes; + id?: number; +}; + +export type LayerUpdatedBy = { + data?: LayerUpdatedByData; +}; + +export type LayerType = (typeof LayerType)[keyof typeof LayerType]; + +// eslint-disable-next-line @typescript-eslint/no-redeclare +export const LayerType = { + Mapbox: "Mapbox", + GEE: "GEE", +} as const; + +export type LayerLocalizations = { + data?: LayerListResponseDataItemLocalized[]; +}; + +export interface Layer { + config: unknown; + createdAt?: string; + createdBy?: LayerCreatedBy; + description: string; + interaction_config?: unknown; + legend: DefaultLegendComponent; + locale?: string; + localizations?: LayerLocalizations; + params_config?: unknown; + publishedAt?: string; + slug?: string; + title: string; + type: LayerType; + updatedAt?: string; + updatedBy?: LayerUpdatedBy; +} + +export interface LayerResponseDataObject { + attributes?: Layer; + id?: number; +} + +export type LayerCreatedByDataAttributesUpdatedByData = { + attributes?: LayerCreatedByDataAttributesUpdatedByDataAttributes; + id?: number; +}; + +export type LayerCreatedByDataAttributesUpdatedBy = { + data?: LayerCreatedByDataAttributesUpdatedByData; +}; + +export type LayerCreatedByDataAttributes = { + blocked?: boolean; + createdAt?: string; + createdBy?: LayerCreatedByDataAttributesCreatedBy; + email?: string; + firstname?: string; + isActive?: boolean; + lastname?: string; + preferedLanguage?: string; + registrationToken?: string; + resetPasswordToken?: string; + roles?: LayerCreatedByDataAttributesRoles; + updatedAt?: string; + updatedBy?: LayerCreatedByDataAttributesUpdatedBy; + username?: string; +}; + +export type LayerCreatedByData = { + attributes?: LayerCreatedByDataAttributes; + id?: number; +}; + +export type LayerCreatedBy = { + data?: LayerCreatedByData; +}; + +export type LayerCreatedByDataAttributesUpdatedByDataAttributes = { [key: string]: any }; + +export type LayerCreatedByDataAttributesRolesDataItem = { + attributes?: LayerCreatedByDataAttributesRolesDataItemAttributes; + id?: number; +}; + +export type LayerCreatedByDataAttributesRoles = { + data?: LayerCreatedByDataAttributesRolesDataItem[]; +}; + +export type LayerCreatedByDataAttributesRolesDataItemAttributesUsersDataItemAttributes = { + [key: string]: any; +}; + +export type LayerCreatedByDataAttributesRolesDataItemAttributesUsersDataItem = { + attributes?: LayerCreatedByDataAttributesRolesDataItemAttributesUsersDataItemAttributes; + id?: number; +}; + +export type LayerCreatedByDataAttributesRolesDataItemAttributesUsers = { + data?: LayerCreatedByDataAttributesRolesDataItemAttributesUsersDataItem[]; +}; + +export type LayerCreatedByDataAttributesRolesDataItemAttributes = { + code?: string; + createdAt?: string; + createdBy?: LayerCreatedByDataAttributesRolesDataItemAttributesCreatedBy; + description?: string; + name?: string; + permissions?: LayerCreatedByDataAttributesRolesDataItemAttributesPermissions; + updatedAt?: string; + updatedBy?: LayerCreatedByDataAttributesRolesDataItemAttributesUpdatedBy; + users?: LayerCreatedByDataAttributesRolesDataItemAttributesUsers; +}; + +export type LayerCreatedByDataAttributesRolesDataItemAttributesUpdatedByDataAttributes = { + [key: string]: any; +}; + +export type LayerCreatedByDataAttributesRolesDataItemAttributesUpdatedByData = { + attributes?: LayerCreatedByDataAttributesRolesDataItemAttributesUpdatedByDataAttributes; + id?: number; +}; + +export type LayerCreatedByDataAttributesRolesDataItemAttributesUpdatedBy = { + data?: LayerCreatedByDataAttributesRolesDataItemAttributesUpdatedByData; +}; + +export type LayerCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributes = { + action?: string; + actionParameters?: unknown; + conditions?: unknown; + createdAt?: string; + createdBy?: LayerCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesCreatedBy; + properties?: unknown; + role?: LayerCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesRole; + subject?: string; + updatedAt?: string; + updatedBy?: LayerCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesUpdatedBy; +}; + +export type LayerCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItem = { + attributes?: LayerCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributes; + id?: number; +}; + +export type LayerCreatedByDataAttributesRolesDataItemAttributesPermissions = { + data?: LayerCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItem[]; +}; + +export type LayerCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesUpdatedByDataAttributes = + { [key: string]: any }; + +export type LayerCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesUpdatedByData = + { + attributes?: LayerCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesUpdatedByDataAttributes; + id?: number; + }; + +export type LayerCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesUpdatedBy = + { + data?: LayerCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesUpdatedByData; + }; + +export type LayerCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesRoleDataAttributes = + { [key: string]: any }; + +export type LayerCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesRoleData = + { + attributes?: LayerCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesRoleDataAttributes; + id?: number; + }; + +export type LayerCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesRole = { + data?: LayerCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesRoleData; +}; + +export type LayerCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesCreatedByDataAttributes = + { [key: string]: any }; + +export type LayerCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesCreatedByData = + { + attributes?: LayerCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesCreatedByDataAttributes; + id?: number; + }; + +export type LayerCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesCreatedBy = + { + data?: LayerCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesCreatedByData; + }; + +export type LayerCreatedByDataAttributesRolesDataItemAttributesCreatedByDataAttributes = { + [key: string]: any; +}; + +export type LayerCreatedByDataAttributesRolesDataItemAttributesCreatedByData = { + attributes?: LayerCreatedByDataAttributesRolesDataItemAttributesCreatedByDataAttributes; + id?: number; +}; + +export type LayerCreatedByDataAttributesRolesDataItemAttributesCreatedBy = { + data?: LayerCreatedByDataAttributesRolesDataItemAttributesCreatedByData; +}; + +export type LayerCreatedByDataAttributesCreatedByDataAttributes = { [key: string]: any }; + +export type LayerCreatedByDataAttributesCreatedByData = { + attributes?: LayerCreatedByDataAttributesCreatedByDataAttributes; + id?: number; +}; + +export type LayerCreatedByDataAttributesCreatedBy = { + data?: LayerCreatedByDataAttributesCreatedByData; +}; + +export type LayerListResponseMetaPagination = { + page?: number; + /** @maximum 1 */ + pageCount?: number; + /** @minimum 25 */ + pageSize?: number; + total?: number; +}; + +export type LayerListResponseMeta = { + pagination?: LayerListResponseMetaPagination; +}; + +export interface LayerListResponseDataItem { + attributes?: Layer; + id?: number; +} + +export interface LayerListResponse { + data?: LayerListResponseDataItem[]; + meta?: LayerListResponseMeta; +} + +export type LayerLocalizationListResponseMetaPagination = { + page?: number; + /** @maximum 1 */ + pageCount?: number; + /** @minimum 25 */ + pageSize?: number; + total?: number; +}; + +export type LayerLocalizationListResponseMeta = { + pagination?: LayerLocalizationListResponseMetaPagination; +}; + +export interface LayerListResponseDataItemLocalized { + attributes?: Layer; + id?: number; +} + +export interface LayerLocalizationListResponse { + data?: LayerListResponseDataItemLocalized[]; + meta?: LayerLocalizationListResponseMeta; +} + +export type LayerLocalizationResponseMeta = { [key: string]: any }; + +export interface LayerResponseDataObjectLocalized { + attributes?: Layer; + id?: number; +} + +export interface LayerLocalizationResponse { + data?: LayerResponseDataObjectLocalized; + meta?: LayerLocalizationResponseMeta; +} + +export type LayerRequestData = { + config: unknown; + description: string; + interaction_config?: unknown; + legend: DefaultLegendComponent; + locale?: string; + params_config?: unknown; + slug?: string; + title: string; + type: LayerRequestDataType; +}; + +export interface LayerRequest { + data: LayerRequestData; +} + +export type LayerRequestDataType = (typeof LayerRequestDataType)[keyof typeof LayerRequestDataType]; + +// eslint-disable-next-line @typescript-eslint/no-redeclare +export const LayerRequestDataType = { + Mapbox: "Mapbox", + GEE: "GEE", +} as const; + +export type LayerLocalizationRequestType = + (typeof LayerLocalizationRequestType)[keyof typeof LayerLocalizationRequestType]; + +// eslint-disable-next-line @typescript-eslint/no-redeclare +export const LayerLocalizationRequestType = { + Mapbox: "Mapbox", + GEE: "GEE", +} as const; + +export interface LayerLocalizationRequest { + config: unknown; + description: string; + interaction_config?: unknown; + legend: DefaultLegendComponent; + locale: string; + params_config?: unknown; + slug?: string; + title: string; + type: LayerLocalizationRequestType; +} + +export type EcoregionResponseMeta = { [key: string]: any }; + +export interface EcoregionResponseDataObject { + attributes?: Ecoregion; + id?: number; +} + +export interface EcoregionResponse { + data?: EcoregionResponseDataObject; + meta?: EcoregionResponseMeta; +} + +export type EcoregionUpdatedByDataAttributes = { [key: string]: any }; + +export type EcoregionUpdatedByData = { + attributes?: EcoregionUpdatedByDataAttributes; + id?: number; +}; + +export type EcoregionUpdatedBy = { + data?: EcoregionUpdatedByData; +}; + +export type EcoregionRangelandData = { + attributes?: EcoregionRangelandDataAttributes; + id?: number; +}; + +export type EcoregionRangeland = { + data?: EcoregionRangelandData; +}; + +export interface Ecoregion { + code?: string; + color?: string; + createdAt?: string; + createdBy?: EcoregionCreatedBy; + locale?: string; + localizations?: EcoregionLocalizations; + publishedAt?: string; + rangeland?: EcoregionRangeland; + slug?: string; + title: string; + updatedAt?: string; + updatedBy?: EcoregionUpdatedBy; +} + +export type EcoregionRangelandDataAttributesUpdatedByDataAttributes = { [key: string]: any }; + +export type EcoregionRangelandDataAttributesUpdatedByData = { + attributes?: EcoregionRangelandDataAttributesUpdatedByDataAttributes; + id?: number; +}; + +export type EcoregionRangelandDataAttributesUpdatedBy = { + data?: EcoregionRangelandDataAttributesUpdatedByData; +}; + +export type EcoregionRangelandDataAttributesLocalizations = { + data?: unknown[]; +}; + +export type EcoregionRangelandDataAttributesEcoregionsDataItem = { + attributes?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributes; + id?: number; +}; + +export type EcoregionRangelandDataAttributesEcoregions = { + data?: EcoregionRangelandDataAttributesEcoregionsDataItem[]; +}; + +export type EcoregionRangelandDataAttributes = { + code?: string; + color?: string; + createdAt?: string; + createdBy?: EcoregionRangelandDataAttributesCreatedBy; + ecoregions?: EcoregionRangelandDataAttributesEcoregions; + locale?: string; + localizations?: EcoregionRangelandDataAttributesLocalizations; + publishedAt?: string; + slug?: string; + title?: string; + updatedAt?: string; + updatedBy?: EcoregionRangelandDataAttributesUpdatedBy; +}; + +export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributesUpdatedByDataAttributes = { + [key: string]: any; +}; + +export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributesUpdatedByData = { + attributes?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributesUpdatedByDataAttributes; + id?: number; +}; + +export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributesUpdatedBy = { + data?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributesUpdatedByData; +}; + +export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributesRangelandDataAttributes = { + [key: string]: any; +}; + +export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributesRangelandData = { + attributes?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributesRangelandDataAttributes; + id?: number; +}; + +export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributesRangeland = { + data?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributesRangelandData; +}; + +export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributesLocalizations = { + data?: unknown[]; +}; + +export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByData = { + attributes?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributes; + id?: number; +}; + +export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedBy = { + data?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByData; +}; + +export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributes = { + code?: string; + color?: string; + createdAt?: string; + createdBy?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedBy; + locale?: string; + localizations?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributesLocalizations; + publishedAt?: string; + rangeland?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributesRangeland; + slug?: string; + title?: string; + updatedAt?: string; + updatedBy?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributesUpdatedBy; +}; + +export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesUpdatedByDataAttributes = + { [key: string]: any }; + +export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesUpdatedByData = + { + attributes?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesUpdatedByDataAttributes; + id?: number; + }; + +export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesUpdatedBy = + { + data?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesUpdatedByData; + }; + +export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItem = + { + attributes?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributes; + id?: number; + }; + +export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRoles = + { + data?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItem[]; + }; + +export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributes = { + blocked?: boolean; + createdAt?: string; + createdBy?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesCreatedBy; + email?: string; + firstname?: string; + isActive?: boolean; + lastname?: string; + preferedLanguage?: string; + registrationToken?: string; + resetPasswordToken?: string; + roles?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRoles; + updatedAt?: string; + updatedBy?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesUpdatedBy; + username?: string; +}; + +export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesUsersDataItemAttributes = + { [key: string]: any }; + +export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesUsersDataItem = + { + attributes?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesUsersDataItemAttributes; + id?: number; + }; + +export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesUsers = + { + data?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesUsersDataItem[]; + }; + +export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesUpdatedByData = + { + attributes?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesUpdatedByDataAttributes; + id?: number; + }; + +export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesUpdatedBy = + { + data?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesUpdatedByData; + }; + +export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributes = + { + code?: string; + createdAt?: string; + createdBy?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesCreatedBy; + description?: string; + name?: string; + permissions?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesPermissions; + updatedAt?: string; + updatedBy?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesUpdatedBy; + users?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesUsers; + }; + +export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesUpdatedByDataAttributes = + { [key: string]: any }; + +export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItem = + { + attributes?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributes; + id?: number; + }; + +export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesPermissions = + { + data?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItem[]; + }; + +export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesUpdatedByDataAttributes = + { [key: string]: any }; + +export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesUpdatedByData = + { + attributes?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesUpdatedByDataAttributes; + id?: number; + }; + +export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesUpdatedBy = + { + data?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesUpdatedByData; + }; + +export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributes = + { + action?: string; + actionParameters?: unknown; + conditions?: unknown; + createdAt?: string; + createdBy?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesCreatedBy; + properties?: unknown; + role?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesRole; + subject?: string; + updatedAt?: string; + updatedBy?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesUpdatedBy; + }; + +export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesRoleDataAttributes = + { [key: string]: any }; + +export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesRoleData = + { + attributes?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesRoleDataAttributes; + id?: number; + }; + +export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesRole = + { + data?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesRoleData; + }; + +export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesCreatedByDataAttributes = + { [key: string]: any }; + +export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesCreatedByData = + { + attributes?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesCreatedByDataAttributes; + id?: number; + }; + +export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesCreatedBy = + { + data?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesCreatedByData; + }; + +export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesCreatedByDataAttributes = + { [key: string]: any }; + +export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesCreatedByData = + { + attributes?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesCreatedByDataAttributes; + id?: number; + }; + +export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesCreatedBy = + { + data?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesRolesDataItemAttributesCreatedByData; + }; + +export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesCreatedByDataAttributes = + { [key: string]: any }; + +export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesCreatedByData = + { + attributes?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesCreatedByDataAttributes; + id?: number; + }; + +export type EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesCreatedBy = + { + data?: EcoregionRangelandDataAttributesEcoregionsDataItemAttributesCreatedByDataAttributesCreatedByData; + }; + +export type EcoregionRangelandDataAttributesCreatedByDataAttributes = { [key: string]: any }; + +export type EcoregionRangelandDataAttributesCreatedByData = { + attributes?: EcoregionRangelandDataAttributesCreatedByDataAttributes; + id?: number; +}; + +export type EcoregionRangelandDataAttributesCreatedBy = { + data?: EcoregionRangelandDataAttributesCreatedByData; +}; + +export type EcoregionCreatedByDataAttributes = { [key: string]: any }; + +export type EcoregionCreatedByData = { + attributes?: EcoregionCreatedByDataAttributes; + id?: number; +}; + +export type EcoregionCreatedBy = { + data?: EcoregionCreatedByData; +}; + +export type EcoregionListResponseMetaPagination = { + page?: number; + /** @maximum 1 */ + pageCount?: number; + /** @minimum 25 */ + pageSize?: number; + total?: number; +}; + +export type EcoregionListResponseMeta = { + pagination?: EcoregionListResponseMetaPagination; +}; + +export interface EcoregionListResponseDataItem { + attributes?: Ecoregion; + id?: number; +} + +export interface EcoregionListResponse { + data?: EcoregionListResponseDataItem[]; + meta?: EcoregionListResponseMeta; +} + +export type EcoregionLocalizationListResponseMetaPagination = { + page?: number; + /** @maximum 1 */ + pageCount?: number; + /** @minimum 25 */ + pageSize?: number; + total?: number; +}; + +export type EcoregionLocalizationListResponseMeta = { + pagination?: EcoregionLocalizationListResponseMetaPagination; +}; + +export interface EcoregionListResponseDataItemLocalized { + attributes?: Ecoregion; + id?: number; +} + +export type EcoregionLocalizations = { + data?: EcoregionListResponseDataItemLocalized[]; +}; + +export interface EcoregionLocalizationListResponse { + data?: EcoregionListResponseDataItemLocalized[]; + meta?: EcoregionLocalizationListResponseMeta; +} + +export type EcoregionLocalizationResponseMeta = { [key: string]: any }; + +export interface EcoregionResponseDataObjectLocalized { + attributes?: Ecoregion; + id?: number; +} + +export interface EcoregionLocalizationResponse { + data?: EcoregionResponseDataObjectLocalized; + meta?: EcoregionLocalizationResponseMeta; +} + +export type EcoregionRequestDataRangeland = number | string; + +export type EcoregionRequestData = { + code?: string; + color?: string; + locale?: string; + rangeland?: EcoregionRequestDataRangeland; + slug?: string; + title: string; +}; + +export interface EcoregionRequest { + data: EcoregionRequestData; +} + +export type EcoregionLocalizationRequestRangeland = number | string; + +export interface EcoregionLocalizationRequest { + code?: string; + color?: string; + locale: string; + rangeland?: EcoregionLocalizationRequestRangeland; + slug?: string; + title: string; +} + +export interface DefaultSourceComponent { + id?: number; + name?: string; + url?: string; +} + +export interface DefaultCitationsComponent { + id?: number; + name?: string; + url?: string; +} + +export type DefaultLayerComponentLayerData = { + attributes?: DefaultLayerComponentLayerDataAttributes; + id?: number; +}; + +export type DefaultLayerComponentLayer = { + data?: DefaultLayerComponentLayerData; +}; + +export interface DefaultLayerComponent { + id?: number; + layer?: DefaultLayerComponentLayer; + name?: string; +} + +export type DefaultLayerComponentLayerDataAttributesUpdatedByDataAttributes = { + [key: string]: any; +}; + +export type DefaultLayerComponentLayerDataAttributesUpdatedByData = { + attributes?: DefaultLayerComponentLayerDataAttributesUpdatedByDataAttributes; + id?: number; +}; + +export type DefaultLayerComponentLayerDataAttributesUpdatedBy = { + data?: DefaultLayerComponentLayerDataAttributesUpdatedByData; +}; + +export type DefaultLayerComponentLayerDataAttributesType = + (typeof DefaultLayerComponentLayerDataAttributesType)[keyof typeof DefaultLayerComponentLayerDataAttributesType]; + +// eslint-disable-next-line @typescript-eslint/no-redeclare +export const DefaultLayerComponentLayerDataAttributesType = { + Mapbox: "Mapbox", + GEE: "GEE", +} as const; + +export type DefaultLayerComponentLayerDataAttributesLocalizations = { + data?: unknown[]; +}; + +export type DefaultLayerComponentLayerDataAttributes = { + config?: unknown; + createdAt?: string; + createdBy?: DefaultLayerComponentLayerDataAttributesCreatedBy; + description?: string; + interaction_config?: unknown; + legend?: DefaultLayerComponentLayerDataAttributesLegend; + locale?: string; + localizations?: DefaultLayerComponentLayerDataAttributesLocalizations; + params_config?: unknown; + publishedAt?: string; + slug?: string; + title?: string; + type?: DefaultLayerComponentLayerDataAttributesType; + updatedAt?: string; + updatedBy?: DefaultLayerComponentLayerDataAttributesUpdatedBy; +}; + +export type DefaultLayerComponentLayerDataAttributesLegendType = + (typeof DefaultLayerComponentLayerDataAttributesLegendType)[keyof typeof DefaultLayerComponentLayerDataAttributesLegendType]; + +// eslint-disable-next-line @typescript-eslint/no-redeclare +export const DefaultLayerComponentLayerDataAttributesLegendType = { + Basic: "Basic", + Gradient: "Gradient", + Choropleth: "Choropleth", +} as const; + +export type DefaultLayerComponentLayerDataAttributesLegendItemsItem = { + color?: string; + id?: number; + name?: string; +}; + +export type DefaultLayerComponentLayerDataAttributesLegend = { + id?: number; + items?: DefaultLayerComponentLayerDataAttributesLegendItemsItem[]; + type?: DefaultLayerComponentLayerDataAttributesLegendType; +}; + +export type DefaultLayerComponentLayerDataAttributesCreatedByData = { + attributes?: DefaultLayerComponentLayerDataAttributesCreatedByDataAttributes; + id?: number; +}; + +export type DefaultLayerComponentLayerDataAttributesCreatedBy = { + data?: DefaultLayerComponentLayerDataAttributesCreatedByData; +}; + +export type DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesUpdatedByDataAttributes = + { [key: string]: any }; + +export type DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesUpdatedByData = { + attributes?: DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesUpdatedByDataAttributes; + id?: number; +}; + +export type DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesUpdatedBy = { + data?: DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesUpdatedByData; +}; + +export type DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItem = { + attributes?: DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributes; + id?: number; +}; + +export type DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRoles = { + data?: DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItem[]; +}; + +export type DefaultLayerComponentLayerDataAttributesCreatedByDataAttributes = { + blocked?: boolean; + createdAt?: string; + createdBy?: DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesCreatedBy; + email?: string; + firstname?: string; + isActive?: boolean; + lastname?: string; + preferedLanguage?: string; + registrationToken?: string; + resetPasswordToken?: string; + roles?: DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRoles; + updatedAt?: string; + updatedBy?: DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesUpdatedBy; + username?: string; +}; + +export type DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesUsersDataItemAttributes = + { [key: string]: any }; + +export type DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesUsersDataItem = + { + attributes?: DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesUsersDataItemAttributes; + id?: number; + }; + +export type DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesUsers = + { + data?: DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesUsersDataItem[]; + }; + +export type DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributes = + { + code?: string; + createdAt?: string; + createdBy?: DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesCreatedBy; + description?: string; + name?: string; + permissions?: DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissions; + updatedAt?: string; + updatedBy?: DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesUpdatedBy; + users?: DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesUsers; + }; + +export type DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesUpdatedByDataAttributes = + { [key: string]: any }; + +export type DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesUpdatedByData = + { + attributes?: DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesUpdatedByDataAttributes; + id?: number; + }; + +export type DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesUpdatedBy = + { + data?: DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesUpdatedByData; + }; + +export type DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItem = + { + attributes?: DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributes; + id?: number; + }; + +export type DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissions = + { + data?: DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItem[]; + }; + +export type DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesUpdatedByDataAttributes = + { [key: string]: any }; + +export type DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesUpdatedByData = + { + attributes?: DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesUpdatedByDataAttributes; + id?: number; + }; + +export type DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesUpdatedBy = + { + data?: DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesUpdatedByData; + }; + +export type DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributes = + { + action?: string; + actionParameters?: unknown; + conditions?: unknown; + createdAt?: string; + createdBy?: DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesCreatedBy; + properties?: unknown; + role?: DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesRole; + subject?: string; + updatedAt?: string; + updatedBy?: DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesUpdatedBy; + }; + +export type DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesRoleDataAttributes = + { [key: string]: any }; + +export type DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesRoleData = + { + attributes?: DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesRoleDataAttributes; + id?: number; + }; + +export type DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesRole = + { + data?: DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesRoleData; + }; + +export type DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesCreatedByData = + { + attributes?: DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesCreatedByDataAttributes; + id?: number; + }; + +export type DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesCreatedBy = + { + data?: DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesCreatedByData; + }; + +export type DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesPermissionsDataItemAttributesCreatedByDataAttributes = + { [key: string]: any }; + +export type DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesCreatedByDataAttributes = + { [key: string]: any }; + +export type DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesCreatedByData = + { + attributes?: DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesCreatedByDataAttributes; + id?: number; + }; + +export type DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesCreatedBy = + { + data?: DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesRolesDataItemAttributesCreatedByData; + }; + +export type DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesCreatedByDataAttributes = + { [key: string]: any }; + +export type DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesCreatedByData = { + attributes?: DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesCreatedByDataAttributes; + id?: number; +}; + +export type DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesCreatedBy = { + data?: DefaultLayerComponentLayerDataAttributesCreatedByDataAttributesCreatedByData; +}; + +export type DatasetResponseMeta = { [key: string]: any }; + +export interface DatasetResponseDataObject { + attributes?: Dataset; + id?: number; +} + +export interface DatasetResponse { + data?: DatasetResponseDataObject; + meta?: DatasetResponseMeta; +} + +export type DatasetUpdatedByDataAttributes = { [key: string]: any }; + +export type DatasetUpdatedByData = { + attributes?: DatasetUpdatedByDataAttributes; + id?: number; +}; + +export type DatasetUpdatedBy = { + data?: DatasetUpdatedByData; +}; + +export type DatasetType = (typeof DatasetType)[keyof typeof DatasetType]; + +// eslint-disable-next-line @typescript-eslint/no-redeclare +export const DatasetType = { + Group: "Group", + Temporal: "Temporal", +} as const; + +export type DatasetLocalizations = { + data?: DatasetListResponseDataItemLocalized[]; +}; + +export type DatasetCreatedByDataAttributes = { [key: string]: any }; + +export type DatasetCreatedByData = { + attributes?: DatasetCreatedByDataAttributes; + id?: number; +}; + +export type DatasetCreatedBy = { + data?: DatasetCreatedByData; +}; + +export interface Dataset { + citations?: DefaultCitationsComponent[]; + createdAt?: string; + createdBy?: DatasetCreatedBy; + layers: DefaultLayerComponent[]; + locale?: string; + localizations?: DatasetLocalizations; + publishedAt?: string; + slug?: string; + sources?: DefaultSourceComponent[]; + title: string; + type: DatasetType; + updatedAt?: string; + updatedBy?: DatasetUpdatedBy; +} + +export type DatasetListResponseMetaPagination = { + page?: number; + /** @maximum 1 */ + pageCount?: number; + /** @minimum 25 */ + pageSize?: number; + total?: number; +}; + +export type DatasetListResponseMeta = { + pagination?: DatasetListResponseMetaPagination; +}; + +export interface DatasetListResponseDataItem { + attributes?: Dataset; + id?: number; +} + +export interface DatasetListResponse { + data?: DatasetListResponseDataItem[]; + meta?: DatasetListResponseMeta; +} + +export type DatasetLocalizationListResponseMetaPagination = { + page?: number; + /** @maximum 1 */ + pageCount?: number; + /** @minimum 25 */ + pageSize?: number; + total?: number; +}; + +export type DatasetLocalizationListResponseMeta = { + pagination?: DatasetLocalizationListResponseMetaPagination; +}; + +export interface DatasetListResponseDataItemLocalized { + attributes?: Dataset; + id?: number; +} + +export interface DatasetLocalizationListResponse { + data?: DatasetListResponseDataItemLocalized[]; + meta?: DatasetLocalizationListResponseMeta; +} + +export type DatasetLocalizationResponseMeta = { [key: string]: any }; + +export interface DatasetResponseDataObjectLocalized { + attributes?: Dataset; + id?: number; +} + +export interface DatasetLocalizationResponse { + data?: DatasetResponseDataObjectLocalized; + meta?: DatasetLocalizationResponseMeta; +} + +export type DatasetRequestDataType = + (typeof DatasetRequestDataType)[keyof typeof DatasetRequestDataType]; + +// eslint-disable-next-line @typescript-eslint/no-redeclare +export const DatasetRequestDataType = { + Group: "Group", + Temporal: "Temporal", +} as const; + +export type DatasetRequestData = { + citations?: DefaultCitationsComponent[]; + layers: DefaultLayerComponent[]; + locale?: string; + slug?: string; + sources?: DefaultSourceComponent[]; + title: string; + type: DatasetRequestDataType; +}; + +export interface DatasetRequest { + data: DatasetRequestData; +} + +export type DatasetLocalizationRequestType = + (typeof DatasetLocalizationRequestType)[keyof typeof DatasetLocalizationRequestType]; + +// eslint-disable-next-line @typescript-eslint/no-redeclare +export const DatasetLocalizationRequestType = { + Group: "Group", + Temporal: "Temporal", +} as const; + +export interface DatasetLocalizationRequest { + citations?: DefaultCitationsComponent[]; + layers: DefaultLayerComponent[]; + locale: string; + slug?: string; + sources?: DefaultSourceComponent[]; + title: string; + type: DatasetLocalizationRequestType; +} + +export type ErrorErrorDetails = { [key: string]: any }; + +export type ErrorError = { + details?: ErrorErrorDetails; + message?: string; + name?: string; + status?: number; +}; + +export interface Error { + /** @nullable */ + data?: ErrorData; + error: ErrorError; +} + +export type ErrorDataOneOfTwoItem = { [key: string]: any }; + +export type ErrorDataOneOf = { [key: string]: any }; + +/** + * @nullable + */ +export type ErrorData = ErrorDataOneOf | ErrorDataOneOfTwoItem[] | null; diff --git a/cms/src/extensions/documentation/documentation/1.0.0/full_documentation.json b/cms/src/extensions/documentation/documentation/1.0.0/full_documentation.json index 4ec5571..2f9aaed 100644 --- a/cms/src/extensions/documentation/documentation/1.0.0/full_documentation.json +++ b/cms/src/extensions/documentation/documentation/1.0.0/full_documentation.json @@ -21,11 +21,15 @@ "name": "Apache 2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" }, +<<<<<<< HEAD <<<<<<< HEAD "x-generation-date": "2024-06-13T08:40:32.783Z" ======= "x-generation-date": "2024-06-10T15:12:02.509Z" >>>>>>> b45498b (Masks: first steps) +======= + "x-generation-date": "2024-06-11T07:40:26.624Z" +>>>>>>> f9c9c30 (Masks: geojson) }, "servers": [ { From bd30f5997f7fe17c98eb704cc80efd06f3fd1eb5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Barrenechea=20S=C3=A1nchez?= Date: Wed, 12 Jun 2024 12:50:34 +0200 Subject: [PATCH 10/19] Masks: remove clone, improve masking --- .../map/layers/deck-layer/index.tsx | 27 +++++++++++++++---- client/src/components/map/provider.tsx | 5 ++-- .../containers/map/layer-manager/index.tsx | 6 ++++- .../src/containers/map/layer-manager/item.tsx | 10 ++++--- .../src/containers/map/layer-manager/mask.tsx | 19 ++++++------- 5 files changed, 44 insertions(+), 23 deletions(-) diff --git a/client/src/components/map/layers/deck-layer/index.tsx b/client/src/components/map/layers/deck-layer/index.tsx index 96ea82b..d679cb0 100644 --- a/client/src/components/map/layers/deck-layer/index.tsx +++ b/client/src/components/map/layers/deck-layer/index.tsx @@ -4,7 +4,8 @@ import { Layer } from "deck.gl"; import { LayerProps } from "@/types/layers"; -import { useDeckMapboxOverlay } from "@/components/map/provider"; +import { useDeckMapboxOverlayContext } from "@/components/map/provider"; +import { useEffect } from "react"; export type DeckLayerProps = LayerProps & Partial & { @@ -12,10 +13,26 @@ export type DeckLayerProps = LayerProps & }; const DeckJsonLayer = ({ id, config }: DeckLayerProps) => { - useDeckMapboxOverlay({ - id: `${id}`, - layer: config, - }); + const i = `${id}-deck`; + const { addLayer, removeLayer } = useDeckMapboxOverlayContext(); + + useEffect(() => { + if (!config) return; + // Give the map a chance to load the background layer before adding the Deck layer + setTimeout(() => { + // https://github.com/visgl/deck.gl/blob/c2ba79b08b0ea807c6779d8fe1aaa307ebc22f91/modules/mapbox/src/resolve-layers.ts#L66 + + addLayer(config); + }, 10); + }, [i, id, config, addLayer]); + + useEffect(() => { + if (!config) return; + return () => { + console.log("removeLayer", i); + removeLayer(i); + }; + }, []); // eslint-disable-line react-hooks/exhaustive-deps return null; }; diff --git a/client/src/components/map/provider.tsx b/client/src/components/map/provider.tsx index 6ecf8ce..315fa37 100644 --- a/client/src/components/map/provider.tsx +++ b/client/src/components/map/provider.tsx @@ -118,9 +118,7 @@ export const useDeckMapboxOverlay = ({ // Give the map a chance to load the background layer before adding the Deck layer setTimeout(() => { // https://github.com/visgl/deck.gl/blob/c2ba79b08b0ea807c6779d8fe1aaa307ebc22f91/modules/mapbox/src/resolve-layers.ts#L66 - layer.id = i; - // @ts-expect-error not typed - layer.beforeId = id; + addLayer(layer); }, 10); }, [i, id, layer, addLayer]); @@ -128,6 +126,7 @@ export const useDeckMapboxOverlay = ({ useEffect(() => { if (!layer) return; return () => { + console.log("removeLayer", i); removeLayer(i); }; }, [i, removeLayer]); // eslint-disable-line react-hooks/exhaustive-deps diff --git a/client/src/containers/map/layer-manager/index.tsx b/client/src/containers/map/layer-manager/index.tsx index 3ad3a14..761e3e0 100644 --- a/client/src/containers/map/layer-manager/index.tsx +++ b/client/src/containers/map/layer-manager/index.tsx @@ -89,7 +89,11 @@ const LayerManager = () => { ); })} - + ); diff --git a/client/src/containers/map/layer-manager/item.tsx b/client/src/containers/map/layer-manager/item.tsx index 07490dd..37d1dda 100644 --- a/client/src/containers/map/layer-manager/item.tsx +++ b/client/src/containers/map/layer-manager/item.tsx @@ -105,14 +105,18 @@ const LayerManagerItem = ({ id, beforeId, settings }: LayerManagerItemProps) => // The only layer type we are using for now is DeckLayer, but the CMS doesn't support the type "Deck", so we are using the type "Mapbox" for now if (type === "Mapbox") { - const { config, params_config } = data.data.attributes; + const { config, params_config } = data.data.attributes as unknown as LayerTyped; const c = parseConfig({ - config, + config: { + ...config, + id: `${id}-layer-deck`, + beforeId: `${id}-layer`, + }, params_config, settings, }); - return ; + return ; } // We are not using component layers for now, but the component will remain in case of future uses diff --git a/client/src/containers/map/layer-manager/mask.tsx b/client/src/containers/map/layer-manager/mask.tsx index b19e15a..15f2991 100644 --- a/client/src/containers/map/layer-manager/mask.tsx +++ b/client/src/containers/map/layer-manager/mask.tsx @@ -1,17 +1,10 @@ "use client"; -// import { ReactElement, cloneElement, useCallback } from "react"; - import { GeoJsonLayer } from "@deck.gl/layers"; -import { Layer } from "react-map-gl"; import { DataFilterExtension, DataFilterExtensionProps } from "@deck.gl/extensions"; -// import { useAtomValue, useSetAtom } from "jotai"; - -// import { layersInteractiveAtom, layersInteractiveIdsAtom } from "@/store/map"; import DeckLayer from "@/components/map/layers/deck-layer"; import { useMemo } from "react"; -// import MapboxLayer from "@/components/map/layers/mapbox-layer"; interface MaskProps { beforeId?: string; @@ -19,7 +12,7 @@ interface MaskProps { id: string; } -const Mask = ({ id }: MaskProps) => { +const Mask = ({ id, beforeId }: MaskProps) => { const c = useMemo(() => { return new GeoJsonLayer< { @@ -27,18 +20,22 @@ const Mask = ({ id }: MaskProps) => { }, DataFilterExtensionProps >({ - id, + id: `${id}-layer-deck`, data: "/data/rangeland-ecoregions.json", + // @ts-expect-error - TS doesn't know about the beforeId prop + beforeId, operation: "mask", + visible: true, + opacity: 1, + pickable: false, getFilterCategory: (f) => f.properties.biome_num, filterCategories: [7, 8, 9, 10, 11, 12, 13], extensions: [new DataFilterExtension({ categorySize: 1 })], }); - }, [id]); + }, [id, beforeId]); return ( <> - ; ); From 510884696ec99681293e6411b1eb2aa78d200d35 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Barrenechea=20S=C3=A1nchez?= Date: Wed, 12 Jun 2024 12:57:38 +0200 Subject: [PATCH 11/19] Masks: masking depending on the biomes --- .../src/containers/datasets/group-layers.tsx | 4 ++-- .../src/containers/map/layer-manager/mask.tsx | 23 +++++++++++++++++-- client/src/store/map.ts | 6 ++--- 3 files changed, 26 insertions(+), 7 deletions(-) diff --git a/client/src/containers/datasets/group-layers.tsx b/client/src/containers/datasets/group-layers.tsx index b0ce652..64f9f72 100644 --- a/client/src/containers/datasets/group-layers.tsx +++ b/client/src/containers/datasets/group-layers.tsx @@ -20,7 +20,7 @@ import { DefaultLayerComponent } from "@/types/generated/strapi.schemas"; import { useSyncDatasets, useSyncLayers, - useSyncRangelandRegion, + useSyncRangelandRegions, useSyncRangelandType, } from "@/store/map"; import { useTranslations } from "@/i18n"; @@ -42,7 +42,7 @@ const RangelandLayers = ({ layers, slug: datasetSlug }: RangelandLayersProps) => const [syncDatasets] = useSyncDatasets(); const [syncLayers, setSyncLayers] = useSyncLayers(); const [rangelandType, setRangelandType] = useSyncRangelandType(); - const [rangelandRegion, setRangelandRegion] = useSyncRangelandRegion(); + const [rangelandRegion, setRangelandRegion] = useSyncRangelandRegions(); const datasetLayers = useMemo( () => layers?.map((l) => l.layer?.data?.attributes?.slug), diff --git a/client/src/containers/map/layer-manager/mask.tsx b/client/src/containers/map/layer-manager/mask.tsx index 15f2991..548c374 100644 --- a/client/src/containers/map/layer-manager/mask.tsx +++ b/client/src/containers/map/layer-manager/mask.tsx @@ -5,6 +5,8 @@ import { DataFilterExtension, DataFilterExtensionProps } from "@deck.gl/extensio import DeckLayer from "@/components/map/layers/deck-layer"; import { useMemo } from "react"; +import { useSyncRangelandRegions } from "@/store/map"; +import { useGetRangelands } from "@/types/generated/rangeland"; interface MaskProps { beforeId?: string; @@ -13,6 +15,23 @@ interface MaskProps { } const Mask = ({ id, beforeId }: MaskProps) => { + const [rangelandRegions] = useSyncRangelandRegions(); + const { data: rangelandsData } = useGetRangelands({ + populate: "*", + sort: "title:asc", + }); + + console.log(rangelandsData); + + const biomes = useMemo(() => { + return rangelandsData?.data + ?.filter((r) => { + if (rangelandRegions.length === 0) return true; + return rangelandRegions.includes(r.attributes?.code || ""); + }) + ?.map((r) => +(r.attributes?.code || 0)); + }, [rangelandRegions, rangelandsData]); + const c = useMemo(() => { return new GeoJsonLayer< { @@ -29,10 +48,10 @@ const Mask = ({ id, beforeId }: MaskProps) => { opacity: 1, pickable: false, getFilterCategory: (f) => f.properties.biome_num, - filterCategories: [7, 8, 9, 10, 11, 12, 13], + filterCategories: biomes, extensions: [new DataFilterExtension({ categorySize: 1 })], }); - }, [id, beforeId]); + }, [id, beforeId, biomes]); return ( <> diff --git a/client/src/store/map.ts b/client/src/store/map.ts index 3dbeb40..10804b6 100644 --- a/client/src/store/map.ts +++ b/client/src/store/map.ts @@ -35,8 +35,8 @@ export const useSyncRangelandType = () => { return useQueryState("rangeland-type", rangelandsTypeParser); }; -export const useSyncRangelandRegion = () => { - return useQueryState("rangeland-region", rangelandRegionsParser); +export const useSyncRangelandRegions = () => { + return useQueryState("rangeland-regions", rangelandRegionsParser); }; const searchParams = { @@ -58,7 +58,7 @@ export const useSyncSearchParams = () => { const [layersSettings] = useSyncLayersSettings(); const [mapStyle] = useSyncMapStyle(); const [rangelangType] = useSyncRangelandType(); - const [rangelandRegion] = useSyncRangelandRegion(); + const [rangelandRegion] = useSyncRangelandRegions(); return serialize({ datasets, From 85def168e5901650cee35eb6f6714206bbb321c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Barrenechea=20S=C3=A1nchez?= Date: Wed, 12 Jun 2024 15:00:17 +0200 Subject: [PATCH 12/19] Masks: masking for every layer --- .../src/containers/map/layer-manager/mask.tsx | 68 +++++++++++++++---- 1 file changed, 56 insertions(+), 12 deletions(-) diff --git a/client/src/containers/map/layer-manager/mask.tsx b/client/src/containers/map/layer-manager/mask.tsx index 548c374..b95a681 100644 --- a/client/src/containers/map/layer-manager/mask.tsx +++ b/client/src/containers/map/layer-manager/mask.tsx @@ -5,7 +5,7 @@ import { DataFilterExtension, DataFilterExtensionProps } from "@deck.gl/extensio import DeckLayer from "@/components/map/layers/deck-layer"; import { useMemo } from "react"; -import { useSyncRangelandRegions } from "@/store/map"; +import { useSyncRangelandRegions, useSyncRangelandType } from "@/store/map"; import { useGetRangelands } from "@/types/generated/rangeland"; interface MaskProps { @@ -15,27 +15,62 @@ interface MaskProps { } const Mask = ({ id, beforeId }: MaskProps) => { + const [rangelandType] = useSyncRangelandType(); const [rangelandRegions] = useSyncRangelandRegions(); const { data: rangelandsData } = useGetRangelands({ populate: "*", sort: "title:asc", }); - console.log(rangelandsData); - const biomes = useMemo(() => { - return rangelandsData?.data - ?.filter((r) => { - if (rangelandRegions.length === 0) return true; - return rangelandRegions.includes(r.attributes?.code || ""); - }) - ?.map((r) => +(r.attributes?.code || 0)); + return ( + rangelandsData?.data + ?.map((r) => +(r.attributes?.code || 0) ?? []) + ?.filter((r) => { + if (rangelandRegions.length === 0) return true; + return rangelandRegions.includes(`${r}`); + }) ?? [] + ); + }, [rangelandRegions, rangelandsData]); + + const ecoregions = useMemo(() => { + return ( + rangelandsData?.data + ?.map((r) => r.attributes?.ecoregions?.data?.map((e) => +(e.attributes?.code || 0)) ?? []) + ?.flat() + ?.filter((r) => { + if (rangelandRegions.length === 0) return true; + return rangelandRegions.includes(`${r}`); + }) ?? [] + ); }, [rangelandRegions, rangelandsData]); + const filterCategories = useMemo(() => { + if (rangelandType === "rangeland-biomes") return biomes; + if (rangelandType === "rangeland-ecoregions") return ecoregions; + return [-1]; + }, [rangelandType, biomes, ecoregions]); + const c = useMemo(() => { return new GeoJsonLayer< { + objectid: number; + eco_name: string; biome_num: number; + biome_name: string; + realm: string; + eco_biome_: string; + nnh: number; + nnh_name: string; + eco_id: number; + shape_leng: number; + shape_area: number; + color: string; + color_bio: string; + color_nnh: string; + license: string; + area_km2: number; + percentage: number; }, DataFilterExtensionProps >({ @@ -47,11 +82,20 @@ const Mask = ({ id, beforeId }: MaskProps) => { visible: true, opacity: 1, pickable: false, - getFilterCategory: (f) => f.properties.biome_num, - filterCategories: biomes, + getFilterCategory: (f) => { + if (rangelandType === "rangeland-ecoregions") return f.properties.eco_id; + if (rangelandType === "rangeland-biomes") return f.properties.biome_num; + + return -1; + }, + filterCategories, extensions: [new DataFilterExtension({ categorySize: 1 })], + updateTriggers: { + getFilterCategory: rangelandType, + filterCategories: filterCategories, + }, }); - }, [id, beforeId, biomes]); + }, [id, beforeId, rangelandType, filterCategories]); return ( <> From f04fa92ee73b818f2f587ef8a73fe49fa6038ca0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Barrenechea=20S=C3=A1nchez?= Date: Wed, 12 Jun 2024 17:11:54 +0200 Subject: [PATCH 13/19] Masks: multiselect popover --- .../map/layers/deck-layer/index.tsx | 1 - client/src/components/ui/multi-select.tsx | 26 +++++++++---------- client/src/components/ui/select.tsx | 4 +-- .../src/containers/datasets/group-layers.tsx | 2 +- 4 files changed, 16 insertions(+), 17 deletions(-) diff --git a/client/src/components/map/layers/deck-layer/index.tsx b/client/src/components/map/layers/deck-layer/index.tsx index d679cb0..9408201 100644 --- a/client/src/components/map/layers/deck-layer/index.tsx +++ b/client/src/components/map/layers/deck-layer/index.tsx @@ -29,7 +29,6 @@ const DeckJsonLayer = ({ id, config }: DeckLayerProps) => { useEffect(() => { if (!config) return; return () => { - console.log("removeLayer", i); removeLayer(i); }; }, []); // eslint-disable-line react-hooks/exhaustive-deps diff --git a/client/src/components/ui/multi-select.tsx b/client/src/components/ui/multi-select.tsx index 5e6ab71..40b1f1e 100644 --- a/client/src/components/ui/multi-select.tsx +++ b/client/src/components/ui/multi-select.tsx @@ -13,7 +13,7 @@ import { import { Collapsible, CollapsibleContent, CollapsibleTrigger } from "./collapsible"; import { ScrollArea } from "./scroll-area"; -import { DialogTrigger, Dialog, DialogContent } from "@radix-ui/react-dialog"; +import { Popover, PopoverTrigger, PopoverContent } from "@/components/ui/popover"; interface MultiSelectOption { label: string; @@ -94,27 +94,27 @@ export const MultiSelect = forwardRef( // }; return ( - + - + span]:line-clamp-1", + "border-input placeholder:text-muted-foreground group flex h-10 w-full items-center justify-between gap-2 rounded-md border bg-background px-3 py-2 text-sm ring-offset-background hover:bg-orange-100 focus:bg-orange-100 focus:outline-none focus:ring-2 focus:ring-orange-100 focus:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50 disabled:hover:bg-background data-[state=open]:rounded-b-none data-[state=open]:border-b-0 [&>span]:line-clamp-1", )} >
{triggerLabel}
- +
-
- - + + + {/* */} - + {options.map((group) => { if (group.options?.length) { return ( @@ -123,7 +123,7 @@ export const MultiSelect = forwardRef( key={group.label} className="w-full" > - + ( {group.icon && } - + {group.options?.map((option) => { const isSelected = selectedValues.includes(option.value); return ( @@ -179,9 +179,9 @@ export const MultiSelect = forwardRef( - +
-
+ ); }, ); diff --git a/client/src/components/ui/select.tsx b/client/src/components/ui/select.tsx index 3d84f2e..58cc47b 100644 --- a/client/src/components/ui/select.tsx +++ b/client/src/components/ui/select.tsx @@ -19,14 +19,14 @@ const SelectTrigger = React.forwardRef< span]:line-clamp-1", + "border-input placeholder:text-muted-foreground group flex h-10 w-full items-center justify-between gap-2 rounded-md border bg-background px-3 py-2 text-sm ring-offset-background hover:bg-orange-100 focus:bg-orange-100 focus:outline-none focus:ring-2 focus:ring-orange-100 focus:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50 data-[state=open]:rounded-b-none data-[state=open]:border-b-0 [&>span]:line-clamp-1", className, )} {...props} > {children} - + )); diff --git a/client/src/containers/datasets/group-layers.tsx b/client/src/containers/datasets/group-layers.tsx index 64f9f72..95ece6f 100644 --- a/client/src/containers/datasets/group-layers.tsx +++ b/client/src/containers/datasets/group-layers.tsx @@ -143,7 +143,7 @@ const RangelandLayers = ({ layers, slug: datasetSlug }: RangelandLayersProps) => defaultValue={selectedLayer?.layer?.data?.attributes?.slug} value={selectedLayer?.layer?.data?.attributes?.slug} > - +
From a11381b432d199e83bfb2c8babc504a782a33cc4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Barrenechea=20S=C3=A1nchez?= Date: Thu, 13 Jun 2024 09:30:28 +0200 Subject: [PATCH 14/19] Filter rangeland layer --- .../src/containers/map/layer-manager/item.tsx | 10 +++- .../src/containers/map/layer-manager/mask.tsx | 33 ++----------- client/src/lib/filters.ts | 46 +++++++++++++++++++ client/src/lib/json-converter/index.ts | 7 ++- 4 files changed, 64 insertions(+), 32 deletions(-) create mode 100644 client/src/lib/filters.ts diff --git a/client/src/containers/map/layer-manager/item.tsx b/client/src/containers/map/layer-manager/item.tsx index 37d1dda..4107623 100644 --- a/client/src/containers/map/layer-manager/item.tsx +++ b/client/src/containers/map/layer-manager/item.tsx @@ -16,6 +16,7 @@ import DeckLayer from "@/components/map/layers/deck-layer"; import { useLocale } from "next-intl"; import { useGetBySlug } from "@/lib/localized-query"; import { LayerResponse } from "@/types/generated/strapi.schemas"; +import { useBiomes, useEcoregions } from "@/lib/filters"; // import MapboxLayer from "@/components/map/layers/mapbox-layer"; interface LayerManagerItemProps { @@ -27,6 +28,9 @@ interface LayerManagerItemProps { const LayerManagerItem = ({ id, beforeId, settings }: LayerManagerItemProps) => { const locale = useLocale(); + const biomes = useBiomes(); + const ecoregions = useEcoregions(); + const { data } = useGetBySlug(`layer/${id}`, { populate: "dataset,metadata", locale, @@ -113,7 +117,11 @@ const LayerManagerItem = ({ id, beforeId, settings }: LayerManagerItemProps) => beforeId: `${id}-layer`, }, params_config, - settings, + settings: { + ...settings, + biomes, + ecoregions, + }, }); return ; diff --git a/client/src/containers/map/layer-manager/mask.tsx b/client/src/containers/map/layer-manager/mask.tsx index b95a681..0cfaa2e 100644 --- a/client/src/containers/map/layer-manager/mask.tsx +++ b/client/src/containers/map/layer-manager/mask.tsx @@ -5,8 +5,8 @@ import { DataFilterExtension, DataFilterExtensionProps } from "@deck.gl/extensio import DeckLayer from "@/components/map/layers/deck-layer"; import { useMemo } from "react"; -import { useSyncRangelandRegions, useSyncRangelandType } from "@/store/map"; -import { useGetRangelands } from "@/types/generated/rangeland"; +import { useSyncRangelandType } from "@/store/map"; +import { useBiomes, useEcoregions } from "@/lib/filters"; interface MaskProps { beforeId?: string; @@ -16,34 +16,9 @@ interface MaskProps { const Mask = ({ id, beforeId }: MaskProps) => { const [rangelandType] = useSyncRangelandType(); - const [rangelandRegions] = useSyncRangelandRegions(); - const { data: rangelandsData } = useGetRangelands({ - populate: "*", - sort: "title:asc", - }); - const biomes = useMemo(() => { - return ( - rangelandsData?.data - ?.map((r) => +(r.attributes?.code || 0) ?? []) - ?.filter((r) => { - if (rangelandRegions.length === 0) return true; - return rangelandRegions.includes(`${r}`); - }) ?? [] - ); - }, [rangelandRegions, rangelandsData]); - - const ecoregions = useMemo(() => { - return ( - rangelandsData?.data - ?.map((r) => r.attributes?.ecoregions?.data?.map((e) => +(e.attributes?.code || 0)) ?? []) - ?.flat() - ?.filter((r) => { - if (rangelandRegions.length === 0) return true; - return rangelandRegions.includes(`${r}`); - }) ?? [] - ); - }, [rangelandRegions, rangelandsData]); + const biomes = useBiomes(); + const ecoregions = useEcoregions(); const filterCategories = useMemo(() => { if (rangelandType === "rangeland-biomes") return biomes; diff --git a/client/src/lib/filters.ts b/client/src/lib/filters.ts new file mode 100644 index 0000000..4939369 --- /dev/null +++ b/client/src/lib/filters.ts @@ -0,0 +1,46 @@ +import { useSyncRangelandRegions } from "@/store/map"; +import { useGetRangelands } from "@/types/generated/rangeland"; +import { useMemo } from "react"; + +export const useBiomes = () => { + const [rangelandRegions] = useSyncRangelandRegions(); + const { data: rangelandsData } = useGetRangelands({ + populate: "*", + sort: "title:asc", + }); + + const biomes = useMemo(() => { + return ( + rangelandsData?.data + ?.map((r) => +(r.attributes?.code || 0) ?? []) + ?.filter((r) => { + if (rangelandRegions.length === 0) return true; + return rangelandRegions.includes(`${r}`); + }) ?? [] + ); + }, [rangelandRegions, rangelandsData]); + + return biomes; +}; + +export const useEcoregions = () => { + const [rangelandRegions] = useSyncRangelandRegions(); + const { data: rangelandsData } = useGetRangelands({ + populate: "*", + sort: "title:asc", + }); + + const ecoregions = useMemo(() => { + return ( + rangelandsData?.data + ?.map((r) => r.attributes?.ecoregions?.data?.map((e) => +(e.attributes?.code || 0)) ?? []) + ?.flat() + ?.filter((r) => { + if (rangelandRegions.length === 0) return true; + return rangelandRegions.includes(`${r}`); + }) ?? [] + ); + }, [rangelandRegions, rangelandsData]); + + return ecoregions; +}; diff --git a/client/src/lib/json-converter/index.ts b/client/src/lib/json-converter/index.ts index b9051e4..91dbf84 100644 --- a/client/src/lib/json-converter/index.ts +++ b/client/src/lib/json-converter/index.ts @@ -9,12 +9,15 @@ import { ParamsConfig } from "@/types/layers"; import * as Layers from "@deck.gl/layers"; import * as GeoLayers from "@deck.gl/geo-layers"; import * as AggregationLayers from "@deck.gl/aggregation-layers"; -import { MaskExtension } from "@deck.gl/extensions"; +import { MaskExtension, DataFilterExtension } from "@deck.gl/extensions"; import { CSVLoader } from "@loaders.gl/csv"; export const JSON_CONFIGURATION = new JSONConfiguration({ React, - classes: Object.assign({}, Layers, GeoLayers, AggregationLayers, { MaskExtension, CSVLoader }), + classes: Object.assign({}, Layers, GeoLayers, AggregationLayers, { + MaskExtension, + DataFilterExtension, + }), functions: FUNCTIONS, constants: { CSVLoader, From d6a247a6c38ba665568907c5b591612cf5f22239 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Barrenechea=20S=C3=A1nchez?= Date: Thu, 13 Jun 2024 09:43:34 +0200 Subject: [PATCH 15/19] Multiselect: remove warning hydration --- client/src/containers/datasets/group-layers.tsx | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/client/src/containers/datasets/group-layers.tsx b/client/src/containers/datasets/group-layers.tsx index 95ece6f..b797bf5 100644 --- a/client/src/containers/datasets/group-layers.tsx +++ b/client/src/containers/datasets/group-layers.tsx @@ -28,7 +28,6 @@ import { useEffect, useMemo } from "react"; import { useGetRangelands } from "@/types/generated/rangeland"; import { MultiSelect } from "@/components/ui/multi-select"; -import { Button } from "@/components/ui/button"; import { XIcon } from "lucide-react"; import { Tooltip, TooltipContent, TooltipTrigger, TooltipProvider } from "@/components/ui/tooltip"; @@ -192,16 +191,15 @@ const RangelandLayers = ({ layers, slug: datasetSlug }: RangelandLayersProps) => - + {t("Remove all filters")} From bfa833fc3d21dd60eb63531012be1667113a2538 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Barrenechea=20S=C3=A1nchez?= Date: Thu, 13 Jun 2024 10:16:05 +0200 Subject: [PATCH 16/19] Use CPU data filtering --- .../src/containers/map/layer-manager/mask.tsx | 69 ++-- client/src/data/rangeland-ecoregions.json | 372 ++++++++++++++++++ 2 files changed, 415 insertions(+), 26 deletions(-) create mode 100644 client/src/data/rangeland-ecoregions.json diff --git a/client/src/containers/map/layer-manager/mask.tsx b/client/src/containers/map/layer-manager/mask.tsx index 0cfaa2e..b4f99fb 100644 --- a/client/src/containers/map/layer-manager/mask.tsx +++ b/client/src/containers/map/layer-manager/mask.tsx @@ -1,13 +1,14 @@ "use client"; import { GeoJsonLayer } from "@deck.gl/layers"; -import { DataFilterExtension, DataFilterExtensionProps } from "@deck.gl/extensions"; import DeckLayer from "@/components/map/layers/deck-layer"; import { useMemo } from "react"; import { useSyncRangelandType } from "@/store/map"; import { useBiomes, useEcoregions } from "@/lib/filters"; +import DATA from "@/data/rangeland-ecoregions.json"; + interface MaskProps { beforeId?: string; settings: Record; @@ -20,14 +21,9 @@ const Mask = ({ id, beforeId }: MaskProps) => { const biomes = useBiomes(); const ecoregions = useEcoregions(); - const filterCategories = useMemo(() => { - if (rangelandType === "rangeland-biomes") return biomes; - if (rangelandType === "rangeland-ecoregions") return ecoregions; - return [-1]; - }, [rangelandType, biomes, ecoregions]); - - const c = useMemo(() => { - return new GeoJsonLayer< + const D = useMemo(() => { + const d = DATA as GeoJSON.FeatureCollection< + GeoJSON.Geometry, { objectid: number; eco_name: string; @@ -46,31 +42,52 @@ const Mask = ({ id, beforeId }: MaskProps) => { license: string; area_km2: number; percentage: number; - }, - DataFilterExtensionProps - >({ + } + >; + + const features = d.features.filter((f) => { + if (rangelandType === "rangeland-biomes") return biomes.includes(f.properties.biome_num); + if (rangelandType === "rangeland-ecoregions") return ecoregions.includes(f.properties.eco_id); + + return true; + }); + + return { + ...d, + features, + }; + }, [rangelandType, biomes, ecoregions]); + + const c = useMemo(() => { + return new GeoJsonLayer<{ + objectid: number; + eco_name: string; + biome_num: number; + biome_name: string; + realm: string; + eco_biome_: string; + nnh: number; + nnh_name: string; + eco_id: number; + shape_leng: number; + shape_area: number; + color: string; + color_bio: string; + color_nnh: string; + license: string; + area_km2: number; + percentage: number; + }>({ id: `${id}-layer-deck`, - data: "/data/rangeland-ecoregions.json", + data: D, // @ts-expect-error - TS doesn't know about the beforeId prop beforeId, operation: "mask", visible: true, opacity: 1, pickable: false, - getFilterCategory: (f) => { - if (rangelandType === "rangeland-ecoregions") return f.properties.eco_id; - if (rangelandType === "rangeland-biomes") return f.properties.biome_num; - - return -1; - }, - filterCategories, - extensions: [new DataFilterExtension({ categorySize: 1 })], - updateTriggers: { - getFilterCategory: rangelandType, - filterCategories: filterCategories, - }, }); - }, [id, beforeId, rangelandType, filterCategories]); + }, [id, D, beforeId]); return ( <> diff --git a/client/src/data/rangeland-ecoregions.json b/client/src/data/rangeland-ecoregions.json new file mode 100644 index 0000000..dfac6a4 --- /dev/null +++ b/client/src/data/rangeland-ecoregions.json @@ -0,0 +1,372 @@ +{"type":"FeatureCollection", "features": [ + {"type":"Feature","geometry":null,"properties":{"objectid":1,"eco_name":"Adelie Land tundra","biome_num":11,"biome_name":"Tundra","realm":"Antarctica","eco_biome_":"AN11","nnh":1,"eco_id":117,"shape_leng":9.74978020742,"shape_area":0.0389483162871,"nnh_name":"Half Protected","color":"#63CFAB","color_bio":"#9ED7C2","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":176.7559789941643,"percentage":0.0020684934172123426}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[27.232137500000135,35.46486422300006],[27.153270497000165,35.626901163000184],[27.045911560000036,35.58208631200006],[27.113607499000068,35.466027128000064],[27.232137500000135,35.46486422300006]]],[[[23.06277852900007,36.14394037000011],[23.112169564000112,36.247392836000074],[23.00110649700008,36.32817493700003],[22.906972528000097,36.34054595600014],[22.95638250600001,36.16917777700007],[23.06277852900007,36.14394037000011]]],[[[30.51460444500003,36.43925275600003],[30.38714252000011,36.434369627000024],[30.180231552000066,36.34272776500012],[30.03492153700006,36.346843615000125],[29.994840450000083,36.37552212900016],[29.813283565000063,36.36517617800007],[29.717300548000026,36.30590874700016],[29.58080058400003,36.30695363500007],[29.537572595000142,36.20134701900008],[29.676794498000163,36.12014062600019],[29.77837545300008,36.13095143700019],[29.923198479,36.22138446100007],[30.03877654200005,36.253209877000074],[30.10396059200002,36.23660499200008],[30.187385506000112,36.30299452600019],[30.271129604000066,36.304997466000145],[30.417308487000184,36.206221766000056],[30.49510746800007,36.313782539000044],[30.51460444500003,36.43925275600003]]],[[[28.239955578000036,36.43325567200014],[28.150567610000053,36.42517283500007],[27.880151488000024,36.322342306000166],[27.795585461000144,36.25513955900004],[27.769754447000025,36.189918126000066],[27.696914535000076,36.16045389300018],[27.762523546000125,36.09074529200018],[27.72673751400015,35.941086913000106],[27.8056065290001,35.8932859250001],[27.956138469000052,36.04446344000007],[28.070116595000172,36.11435795100016],[28.176708587000178,36.24754203400016],[28.24447258600003,36.38036586300018],[28.239955578000036,36.43325567200014]]],[[[24.451364509000143,36.76405167200005],[24.340278475000048,36.765184569999974],[24.314920536000045,36.679359414000146],[24.530736605000186,36.69260432900012],[24.451364509000143,36.76405167200005]]],[[[25.292831480000075,36.80660374500019],[25.248624485000164,36.74205605000003],[25.349412512000185,36.649658978000105],[25.37355256100011,36.74680188299999],[25.292831480000075,36.80660374500019]]],[[[27.28865650600011,36.89377503500003],[27.143791570000076,36.88042819500009],[27.035043585000096,36.82119060300005],[27.09134248100014,36.74151122600006],[27.156616552000173,36.7923290280001],[27.3445114970001,36.853229758000055],[27.28865650600011,36.89377503500003]]],[[[26.027284515000076,36.93857010500005],[25.845569548000128,36.865325515000166],[25.855482490000156,36.79108599200009],[26.027284515000076,36.93857010500005]]],[[[26.93836554000012,37.07124624500017],[26.90825053500015,36.96612728800011],[26.984468522000157,36.94161491500006],[27.046977571000014,36.986360029000025],[26.93836554000012,37.07124624500017]]],[[[25.221734501000185,37.15259378800005],[25.131389487000092,37.12002841800012],[25.099462483000025,37.0432927650001],[25.160104546000184,36.999062803000186],[25.266374506000034,37.06323951500008],[25.221734501000185,37.15259378800005]]],[[[25.568204493,37.17486735500006],[25.496866450000027,37.207523417],[25.362918439999987,37.124991175000105],[25.34890356300008,37.076026109000054],[25.446929585000134,36.93399325100006],[25.54170946400012,36.989910938000094],[25.58721146400012,37.08966782400017],[25.568204493,37.17486735500006]]],[[[24.979721464000136,37.678164431000084],[25.10895951400005,37.551248],[25.18862346900005,37.52323735599998],[25.24003052000006,37.57981620900006],[25.17558659200006,37.643379198000105],[24.979721464000136,37.678164431000084]]],[[[24.27954052200016,37.52714734600005],[24.386028579000026,37.612304801000164],[24.285966592000023,37.65293892600005],[24.27954052200016,37.52714734600005]]],[[[26.33148155100008,37.652453782000066],[26.064048548000017,37.63076828900017],[25.979522587000133,37.544992083000125],[26.06722260700019,37.52727324300008],[26.219001607000166,37.57341545200006],[26.33148155100008,37.652453782000066]]],[[[23.552215458000035,37.76657574000018],[23.420474571000113,37.75969905900007],[23.45683644100012,37.68686635600005],[23.527914477000138,37.68630543900008],[23.552215458000035,37.76657574000018]]],[[[26.93307153000012,37.76669074000006],[26.767051509000055,37.812497003000146],[26.665960559999974,37.789609210000094],[26.569601530000057,37.72993643000012],[26.621484505000183,37.67579151500007],[26.717470540000136,37.72107977600007],[26.789010586000188,37.63489520300004],[27.05968051299999,37.711889857000074],[27.022123551000107,37.770054733000165],[26.93307153000012,37.76669074000006]]],[[[20.80820448800017,37.83853555300004],[20.691377522000096,37.93189469900011],[20.61760151800013,37.81413700600007],[20.813030453000067,37.648707909],[20.906698556000038,37.772835681],[20.80820448800017,37.83853555300004]]],[[[24.86630844600012,37.90157634900015],[24.7739796030001,37.99579749100013],[24.67547447100003,37.91825700700008],[24.755647543000123,37.87247790200013],[24.942275479000102,37.685755418000156],[24.982379533000085,37.755430156000045],[24.86630844600012,37.90157634900015]]],[[[23.531740480000053,37.962991225],[23.41263346900007,37.926042957],[23.466300448000027,37.87458796200008],[23.531740480000053,37.962991225]]],[[[21.909431501000086,38.33202261700018],[21.772766581000155,38.31638584100011],[21.69894950700018,38.20128806100013],[21.59744046900005,38.14763482900014],[21.450794546000168,38.20992779200009],[21.404478496000138,38.18388538600004],[21.279386470000077,37.99386361800009],[21.193243472,37.93386679300005],[21.125596484000027,37.93370284300016],[21.099348554000187,37.84338733300001],[21.248496475000138,37.809228061000056],[21.312437488,37.700636984000084],[21.56071851200005,37.539704946000086],[21.673555525000097,37.374776249000035],[21.672571490000166,37.29466889100007],[21.569217595000055,37.20477767400013],[21.57807156700011,37.07683529800016],[21.693510490000165,36.951875873000176],[21.701223517000187,36.8377649790001],[21.808595529000115,36.83059426000017],[21.89042453000019,36.740336083000045],[21.939006544000165,36.78899923400007],[21.940759535000154,36.99980661300009],[22.017198469,37.03884901500015],[22.15136155800019,37.02694704800007],[22.13850958600011,36.9365830910001],[22.22209358900011,36.904227604000084],[22.30012156400005,36.823243499000114],[22.35142752900009,36.71134492400006],[22.395399496000095,36.47652070900011],[22.502782572000058,36.4871907050001],[22.47561850000011,36.619565599],[22.520870551000144,36.72530649200007],[22.59074343700013,36.80938066900006],[22.788148489000093,36.81927550600017],[22.851430517000097,36.6981658900001],[22.978506539000136,36.53216850000001],[23.038763539000115,36.534133553000174],[23.096164488000113,36.45502934200016],[23.209802476000164,36.468564104],[23.038684581000155,36.65534995500019],[23.029735558000027,36.743441075000135],[23.107061465000186,36.79258115600015],[23.016996574000075,36.95190671900002],[22.9550534710001,37.12459437600006],[22.76132556100015,37.43458599000007],[22.726160459000027,37.549084966000066],[22.977796592000118,37.51806438099999],[23.014198527000133,37.463523505000126],[23.137845513000116,37.4453999860001],[23.088554558000055,37.36390458500006],[23.19357444000019,37.34341586099998],[23.275485584000023,37.416176313000165],[23.49742848900013,37.43345309200015],[23.49843247399997,37.47256439300014],[23.310077530000115,37.536249087000044],[23.16069659300007,37.62697648400007],[23.128385530000173,37.73678427700014],[23.143295594000165,37.835578417000136],[23.01818848100004,37.840358449000064],[22.953437440000073,37.94914851100009],[22.864019465000013,37.932664828000156],[22.725099478000118,38.04528776700016],[22.503358576000096,38.13878890300009],[22.179645452000045,38.20066193300016],[22.010557487000142,38.318617942000174],[21.909431501000086,38.33202261700018]],[[21.836297552000076,38.07536304200016],[21.927043556000115,38.08625012800019],[21.966970584000023,37.973729951],[21.86170745900006,37.90113747300006],[21.767332594000038,37.94832037900011],[21.836297552000076,38.07536304200016]],[[22.12668054100004,37.90839603300009],[22.144830547000083,38.028175945000044],[22.260982602000183,38.04995363800009],[22.38439556500009,37.962839344000145],[22.580402516000106,37.90476516100006],[22.58403355600018,37.759576013000185],[22.540475488000027,37.741426175000186],[22.231945510000173,37.814023012],[22.12668054100004,37.90839603300009]],[[22.068603507000148,37.6797243040001],[22.137569471000063,37.741426175000186],[22.24283444100007,37.73053959200013],[22.333578601000113,37.65431590500003],[22.3480965600001,37.59623803300008],[22.213794499000187,37.52001451400014],[22.144830547000083,37.567200606000085],[22.068603507000148,37.6797243040001]],[[22.631219480000084,37.218750306000175],[22.66751848500013,37.316752356000165],[22.736484448999988,37.27682432200004],[22.801820547000148,37.09533969000017],[22.725595519000024,37.05541249400005],[22.631219480000084,37.218750306000175]],[[22.38439556500009,37.073562164000066],[22.424322594000103,36.95378275600012],[22.417062524000187,36.866668631000096],[22.300910469000087,36.91385539300006],[22.253723539000077,37.0263752350001],[22.300910469000087,37.106230464000134],[22.38439556500009,37.073562164000066]]],[[[20.611673501000155,38.322401869000146],[20.54043956200013,38.38384390100015],[20.482852534000074,38.30976413800016],[20.39518755,38.342550623000136],[20.331085437000127,38.170205450000026],[20.372905601000184,38.14526191200014],[20.486824550000108,38.18959916200009],[20.491125473000068,38.112341652],[20.619438496000043,38.11353154700015],[20.699089543000014,38.06629549900015],[20.803100580000148,38.10176385800003],[20.692647547000092,38.25894901800018],[20.611673501000155,38.322401869000146]]],[[[26.009351601000105,38.60380716900016],[25.88328744200004,38.59015137200009],[25.827619535000053,38.54362409800012],[26.002172501000132,38.346033471000055],[25.855411579000076,38.24180618100007],[26.003761542000063,38.13842211100007],[26.101011568000047,38.21866659700004],[26.155672473000152,38.3167300020001],[26.115898498000035,38.49895073400012],[26.070680478000043,38.59347747900006],[26.009351601000105,38.60380716900016]]],[[[20.692663472999982,38.68993776200011],[20.72068551700005,38.742175794000104],[20.677040444000113,38.85116719000007],[20.597631466000166,38.77826223400001],[20.561777540000094,38.67835296600015],[20.640499537000153,38.58825153000009],[20.692663472999982,38.68993776200011]]],[[[24.59329644900015,38.88005173100015],[24.593374568000115,38.92969975600016],[24.461278456000173,38.955600675000085],[24.48391344999999,38.87344478000017],[24.625087499000074,38.773551437000094],[24.672477606000143,38.83634731500018],[24.59329644900015,38.88005173100015]]],[[[23.33229845900007,39.0376802940001],[23.138048523000066,39.01612757100003],[23.003112454000075,38.92477086100007],[22.858739537000133,38.88883345100004],[22.84628251999999,38.83766327400008],[23.054985539000143,38.86312598699999],[23.217149549000112,38.83333452300013],[23.42628859500013,38.68911365300005],[23.511787527000024,38.59552936900019],[23.625112535000085,38.534286323000174],[23.640632467000046,38.40106753900005],[23.929120475000047,38.372167910000144],[24.04463148300016,38.374304122000126],[24.118833454000082,38.208039852000184],[24.21235655100014,38.147841023000126],[24.201566527000182,38.081455009000024],[24.322002573000077,38.03912388400005],[24.338067497000054,37.97061691200008],[24.44550757000019,38.00701633300008],[24.474891505000016,37.95413742000011],[24.587236500000074,38.02166806700018],[24.561443540000084,38.13745701900018],[24.410348502999966,38.133658005000086],[24.261409460000095,38.194485979000035],[24.18569958400019,38.3867086680001],[24.216186578000077,38.53824107200006],[24.14973853700002,38.584886364000056],[24.150133493000055,38.662209085000086],[23.957538480000096,38.671788092000156],[23.751171496999973,38.72063011200015],[23.716438567000125,38.763907387000074],[23.599754596000082,38.77476027500006],[23.468105574,38.850897293],[23.426874490000046,38.96012857900013],[23.33229845900007,39.0376802940001]]],[[[26.363700581000103,39.37713412900007],[26.17652648100011,39.37610013800003],[26.11385951699998,39.30812307100018],[25.852592577000053,39.257350027000086],[25.87656549100012,39.14315179300007],[26.048717544000056,39.09108927800014],[26.11541352200004,39.11581891000009],[26.171113448000142,39.20227874400007],[26.26616456500011,39.16123239700005],[26.10004848699998,39.08899849599999],[26.15765747500012,39.013823721],[26.429948462000084,38.96456126400017],[26.53451555400011,39.001937847000136],[26.58794448700013,39.06452384200003],[26.46484953300012,39.22734449000012],[26.39453559100002,39.26523169900014],[26.363700581000103,39.37713412900007]]],[[[19.83518958100018,39.82939782100016],[19.663923494000187,39.80514428100014],[19.63124446500018,39.747848943000065],[19.72052950400007,39.640435357000115],[19.92327651000005,39.487319779000075],[19.90792656300016,39.61598769200015],[19.83932655300015,39.709316495999985],[19.949523602000113,39.792350479000106],[19.83518958100018,39.82939782100016]]],[[[25.432611451000128,40.01044139700008],[25.364248481000175,40.014721365000185],[25.283355571000016,39.94631749100006],[25.235774524000192,40.00590947],[25.03023148300008,39.985676897000076],[25.04708246100006,39.83095786000018],[25.231475446000104,39.85970963200003],[25.295454513000152,39.793986291000124],[25.432611451000128,40.01044139700008]]],[[[25.98159945499998,40.20789908700016],[25.916275595000172,40.23358677100015],[25.718269561000056,40.16242458000016],[25.764541522000115,40.07385585900005],[25.99550654100011,40.10671929000017],[25.98159945499998,40.20789908700016]]],[[[27.04131844500006,40.396014643000115],[26.758094607000032,40.40729467300008],[26.52703654900006,40.22003289800017],[26.40425658700019,40.17020650699999],[26.41010849700018,40.12427401300005],[26.284776581000187,39.99353878700009],[26.182838557000082,39.99789067100011],[26.13754258400013,39.840914723000026],[26.159345591000147,39.67006421100007],[26.063419570000065,39.48410079299998],[26.14021657900014,39.454514183000185],[26.368619585000147,39.481506761000105],[26.48278848200016,39.526080046000175],[26.92597759000006,39.57908837499997],[26.880752528000016,39.47479268900008],[26.780311512000026,39.37154926699998],[26.7030585280001,39.34249675300015],[26.688386509000054,39.268553950000125],[26.769197444000042,39.16869430200006],[26.88801745900014,39.07205062300005],[26.80018651300003,39.031546250000076],[26.802198505000035,38.9584733210001],[26.95252760400018,38.93864894600006],[27.04674354800011,38.893525473000125],[26.82830059000014,38.759982645000036],[26.730161579000082,38.724624089000145],[26.75910747600011,38.61562095900007],[26.85076358800012,38.59609028600016],[26.873861598000076,38.50683978100011],[26.95443549200013,38.437469977000035],[27.062498509000136,38.46286060500012],[27.084588511000163,38.39969441500011],[26.774908537000158,38.36384803300018],[26.707586600000127,38.431309948000035],[26.60028449300006,38.43308691200019],[26.627111444000093,38.52800341600016],[26.47859149600015,38.67317697300007],[26.35556745300005,38.64814827500004],[26.35887947800012,38.57550248800004],[26.426012488000026,38.47641028700019],[26.51530054400007,38.43104306900011],[26.444679489000123,38.34582744400012],[26.27967250500012,38.297881281000116],[26.315216468000187,38.23996417400019],[26.503211492000105,38.18193642600005],[26.61624145700017,38.11347455000015],[26.653730525000128,38.20940476100003],[26.76617258200008,38.217346782],[26.824815562000083,38.160291670000106],[26.861766512000145,38.050159665000194],[26.955373595000026,38.076335175000054],[27.12359956500012,37.99429763300003],[27.23823550200018,37.98732472800015],[27.277254603000017,37.92926596700005],[27.239812474000132,37.73079540700007],[27.097259602000065,37.684645319000026],[27.089729467999973,37.641910186000075],[27.21681454300017,37.58657923100009],[27.224605522000104,37.48027306200015],[27.190729557000168,37.352979613000116],[27.383291545000134,37.354661693000025],[27.49852745900006,37.31668329000013],[27.555267578999974,37.136792895000156],[27.477191492000145,37.085287944000186],[27.336948506000056,37.15495446800014],[27.273109584000167,37.135138140000095],[27.224687497000048,37.05490471800016],[27.265190530000098,36.96604346900017],[27.33587646000018,37.01806340400009],[27.485980588000075,36.98693603300006],[27.82072446500007,37.01112855300016],[27.928056579000042,37.03117823300016],[28.24897752400011,37.03757110999999],[28.19674451999998,36.943582818000095],[28.042350534000036,36.923178248000056],[27.986824449000096,36.80211774999998],[27.819509591999974,36.81594956700019],[27.773784466000166,36.78883913900006],[27.434335492000173,36.74743102900004],[27.398328512000035,36.67983634400014],[27.483579508000048,36.650951970000165],[27.60404053300016,36.68131239700017],[27.6673565910001,36.661510989000135],[27.72249744400017,36.756574847000024],[28.01639345700005,36.75707491100019],[28.023284555000032,36.66466979300003],[28.14714460800019,36.65379393800015],[28.260232576000192,36.73166533900013],[28.262355544000116,36.84861803500013],[28.40184047100007,36.785429046000104],[28.489669573000015,36.81839456800009],[28.620582496000054,36.81991253100017],[28.666854457000113,36.720255725000015],[28.83170855500009,36.64014518300013],[28.93251049600019,36.753844023000056],[29.099914537000075,36.67694861100006],[29.069360489000132,36.61440083700006],[29.129957458000092,36.571119875000136],[29.217395460000148,36.577215696999986],[29.28240751300018,36.50220939900004],[29.250890551000168,36.434266697000055],[29.308713445000024,36.37366805200014],[29.278087480000067,36.28476120500011],[29.364036521000173,36.22847219900018],[29.476505568000164,36.21301563400016],[29.44443355700014,36.33207302500017],[29.490951611000014,36.50294935300013],[29.475612560000172,36.54701922099997],[29.50736253900004,36.74069818100003],[29.437067541000147,36.90889246800003],[29.27741659200018,36.85600668200016],[29.225278472000127,36.906962786000065],[29.119348483000067,36.905848831000185],[29.110956521000105,36.99468677900012],[29.01517450199998,37.01063653500012],[28.91767855100005,36.92048933399997],[28.70602644300004,37.04198485300009],[28.542148501000042,37.07192517900006],[28.529365596000105,37.27200238100011],[28.60036048400019,37.38639205800007],[28.59236750100007,37.481288110000094],[28.690837597000098,37.501806674000136],[28.806758479000166,37.45803754900004],[28.78088957900013,37.51701966000019],[28.859321562000105,37.55458584200011],[28.867111535000106,37.62663634600017],[28.816921537000155,37.706114055],[28.873704572,37.7382712270001],[28.883094483000036,37.81614396900011],[29.018329450000067,37.85087522300017],[29.108337512,37.86275807900017],[29.041711608000128,38.015389184000185],[29.180162543000108,38.13142221600009],[29.18104750500015,38.19355508500013],[29.094413494000094,38.30738401300016],[28.91930749000005,38.459179609000046],[28.9835475700001,38.47378239300019],[29.162546465000048,38.594713139000135],[29.240314601000136,38.68666865200004],[29.308706572000062,38.718757427000185],[29.336812602000123,38.796461861000125],[29.258058587000107,38.90035722700014],[29.120223554000063,38.79957791700002],[29.04373952500015,38.82886747200007],[29.070310494000125,38.93844962400004],[28.90318858700016,38.9619405790001],[28.788202455000146,38.879613861000166],[28.612091460000045,38.82460259200013],[28.55666159900005,38.69954744600017],[28.59909649300016,38.63908844300005],[28.476261546000046,38.586058489000095],[28.424398520000068,38.624619937000034],[28.43988056500018,38.744605876000094],[28.278488528000082,38.778731286000095],[28.1515105740001,38.712070345000086],[28.105808582000066,38.625672872000166],[27.974533562000033,38.67128802700006],[27.86480556400005,38.81538987500005],[27.88481149100005,38.91988421200017],[27.775068573000055,39.066980745000194],[27.83220046400004,39.15890256299997],[27.658754579000174,39.32710087300006],[27.501171447000104,39.216926455000134],[27.413818604000085,39.23397843200013],[27.27774460900008,39.21274958500004],[27.25234744200003,39.27887659900006],[27.00666044899998,39.25789585700011],[26.933675530000187,39.21249762500014],[26.946540578000054,39.38476702600019],[27.0434135860001,39.43110738300004],[27.086730591000105,39.53986274500005],[27.05707558500012,39.57895946200006],[26.880630488000065,39.63684253800011],[26.77139652000011,39.615754843000104],[26.63490158500008,39.62422358300006],[26.396104516000094,39.54659576000017],[26.228923601000076,39.648362458000065],[26.265922496000087,39.71842628400003],[26.369932526000184,39.75869378500016],[26.43181259700009,39.83579472200017],[26.547611607000192,39.817107100999976],[26.637987466000084,39.87042053100009],[26.74077256600009,39.84349266100003],[26.952630533000104,39.86183763000008],[26.90366949000014,39.957066108000106],[26.95466448600007,40.0107386200001],[27.182653594000158,40.02722951100003],[27.122228454000094,40.09950934500006],[27.116914495000174,40.24905540500015],[27.276142492000133,40.22574801500008],[27.348260555000138,40.307476935000125],[27.182781501000136,40.395339900000124],[27.04131844500006,40.396014643000115]],[[27.368631597000046,38.58434941900009],[27.62311355300011,38.5247954940001],[27.668045584000026,38.462914585000135],[27.96073946399997,38.481148242000074],[28.248268582000037,38.44139186900014],[28.488237609,38.37224016200008],[28.625602585000024,38.29169443100011],[28.725030565000054,38.263442891000125],[28.760374536000086,38.19690801399997],[28.920154565000075,38.046176752000065],[28.742462576000037,38.015732171000025],[28.564693474000137,38.04421957800014],[28.357551501000046,37.98420867100015],[28.0963435700001,37.88188876800001],[27.898229577000052,37.86417311200006],[27.75397149100013,37.91254306400009],[27.785619545000145,38.03570574300011],[27.93634058200007,38.067184316000066],[27.950082544,38.13273130200008],[28.077157561000092,38.10851145700008],[28.19907351600017,38.17578628900003],[27.970710576000045,38.229759375000015],[27.74092857900007,38.20089813499999],[27.65106753600014,38.218300643000134],[27.47681648600019,38.185533269000075],[27.403978585000118,38.26807389300012],[27.256698488000154,38.23558446200019],[27.190292525000075,38.25663393600007],[27.20691149200013,38.41478133800007],[27.324075579000123,38.463684379000085],[27.21466056100013,38.509864642000025],[27.205415490000178,38.580610420000085],[27.368631597000046,38.58434941900009]]],[[[25.568050601000095,40.50595252400012],[25.4459284510001,40.48082173400019],[25.581832461000147,40.39531291100013],[25.683979529999988,40.453871065000044],[25.568050601000095,40.50595252400012]]],[[[24.683679516000097,40.776308632000166],[24.56655348400011,40.749934806000056],[24.514627593000114,40.64810976900003],[24.66122054200008,40.562471026000026],[24.76813356100007,40.60924623699998],[24.77979647700016,40.73476708099997],[24.683679516000097,40.776308632000166]]],[[[29.2557694890001,41.000256153000066],[29.136444548000156,41.09214310200008],[29.017667448000054,41.030875916000184],[29.042100528000162,40.97251943000009],[29.291896498000085,40.85594358500009],[29.35839248300016,40.76390777400013],[29.68954655800013,40.783575406000125],[29.780658516000074,40.748583643000075],[29.823144539000054,40.81443623300015],[29.591455492000193,40.82670801000006],[29.479606537000166,40.89074139100012],[29.331584474000124,40.9342778350001],[29.2557694890001,41.000256153000066]]],[[[20.467874576000156,39.2491221840001],[20.677148570000156,39.07903878400015],[20.9421845170001,39.03310344000016],[21.086421480000126,39.04120522000011],[21.144214535000117,38.98528317300003],[21.062271541000086,38.88222281200012],[20.964628571000162,38.94802863100011],[20.85045850000006,38.92615605500009],[20.74195459600014,38.86863893200007],[20.772058536000145,38.76182146700012],[20.87092945500018,38.78676919600008],[20.897003544000086,38.69406953700013],[20.97375244,38.66570400400019],[21.071165578000148,38.542693036],[21.122266521000086,38.42966910700011],[21.096191594000118,38.34789945000017],[21.148700529,38.30915812600011],[21.37736656000004,38.403581607000035],[21.483180544000163,38.370619102000035],[21.506263467000053,38.30353135500002],[21.63887556900005,38.35583342500013],[21.751243530000067,38.34251240100019],[21.837064496000096,38.394410631000085],[21.940460469000072,38.41060027700007],[22.174806579000176,38.34003370500011],[22.34728049800009,38.34763558800017],[22.450763474999974,38.42437526500015],[22.531711537000092,38.34319955000012],[22.636415590000126,38.38632779400007],[22.773700603000123,38.24433231900019],[22.944814474000168,38.176519538000036],[23.166406513000027,38.16026451300007],[23.20418743900018,38.08082502500008],[23.05471044500007,38.05302074400004],[22.952293478000115,38.07705601900017],[22.871776581000063,38.044082785000114],[23.011495531000094,37.92836189400015],[23.09172643800008,37.90875109100011],[23.258600575000173,37.968370227000094],[23.370738537000022,37.96945702500017],[23.552299445000187,38.04053472500016],[23.56692150700013,37.95411143600012],[23.677444445000162,37.928171961000146],[23.792392524000093,37.797886172000176],[23.888719534000074,37.78658032600015],[23.935228536000125,37.67019173299997],[24.02671248300004,37.644588204000115],[24.08116752900014,37.76175480500012],[24.028438484000162,38.00352962900007],[23.987829505000036,38.10536053200008],[24.06196056500005,38.19029016600007],[23.948781570000108,38.27497052299998],[23.63826558500017,38.36200904300006],[23.57143348600016,38.4474226480001],[23.40391343900012,38.49325891800004],[23.319257558000118,38.58005369300014],[23.33351148800017,38.6349305170001],[23.230464537000103,38.664014212000154],[23.094884571000023,38.64437641900008],[23.03972058400018,38.759562544000175],[22.760747545000072,38.79802206800019],[22.59850658800002,38.85665297800011],[22.582096498000112,38.91049614500008],[22.74017751600013,38.89397139000016],[22.913375464000183,38.93211776700008],[23.007575483000096,38.98855597100015],[22.998226475000024,39.076612558000136],[22.872266587000126,39.19564078000013],[22.812223494000136,39.28123744600009],[22.92505246100012,39.29718250800005],[22.95546351400003,39.35164459400005],[23.120590527000104,39.30384327100006],[23.213800476000188,39.188392948000114],[23.346090545000095,39.19371093000012],[23.26219758500008,39.33666781000005],[23.210809477000055,39.36501440000012],[23.073110566000082,39.52948712200015],[22.899385564000113,39.62130165100007],[22.826118510000185,39.809333220999974],[22.70664956800016,39.88977199900006],[22.6824225150001,39.97146705600005],[22.62086447700011,40.00281151900009],[22.56426047900004,40.181410429000096],[22.65960345400009,40.365951104000146],[22.607690472000172,40.46644811100009],[22.65741158600008,40.542448168000135],[22.949344557000074,40.61765311800008],[22.959554553000032,40.54011297],[22.825939473000176,40.51706122800016],[22.90485945000006,40.42431563700012],[23.038646527000026,40.331821670000124],[23.297477518000107,40.240033628],[23.315521576000094,40.10780240000008],[23.387535536000087,40.00627961499998],[23.587329598000167,39.93851662100019],[23.657026464000182,39.99431662700016],[23.493034528000123,40.04382316500005],[23.364368458000115,40.179716279000104],[23.425447554000073,40.283635282000034],[23.540449445000093,40.23687465600011],[23.669208554000022,40.22863591600003],[23.77264258000008,40.12665095300008],[23.817604450000033,40.03245227499997],[23.98589848200004,39.95648742200018],[24.023925500000132,40.02755724400009],[23.922933457000056,40.157385716000135],[23.776374539000017,40.203813245000106],[23.711755598000025,40.333999456000186],[23.855630463000125,40.37653308900002],[23.950008513000114,40.368240201000106],[24.030504456000187,40.307914974000084],[24.138231525000094,40.2903449960001],[24.308797555000126,40.11927722500013],[24.38808449200019,40.18757816900012],[24.162992506000023,40.36765330100019],[23.930957453000133,40.38994597800007],[23.831590494000125,40.49859874500015],[23.706584466000095,40.69487341299998],[23.85530658600004,40.7773424560001],[24.06248845700003,40.71039904500009],[24.154396529000167,40.73164281100014],[24.320886439000105,40.81659893200009],[24.31959545800015,40.86819658600001],[24.51721559000015,40.94489368300003],[24.61142952300014,40.85873945300011],[24.80822554500014,40.84327886500006],[25.067998495000097,40.99551032000005],[25.26763950300017,40.92663672400016],[25.561054562000038,40.848394675],[25.923765496000044,40.83536400100013],[26.046785516000057,40.772959558000025],[26.06442858400004,40.633335995000095],[26.115070534000097,40.58738455700018],[26.306322598000065,40.57798458800005],[26.79411851800006,40.643276932000106],[26.841340484000114,40.58375670200013],[26.69566149800005,40.496507795000184],[26.60221853300004,40.490945732000114],[26.233703466000065,40.32140782600004],[26.27751751700015,40.19434923800014],[26.217802492000146,40.12715805800019],[26.190835563000064,40.03027717100014],[26.33394449000002,40.088610524000046],[26.344421533000116,40.19225527100019],[26.59728645300015,40.33189761],[26.638801517000047,40.404860569000164],[26.763578551000137,40.471109958000056],[26.98089950800005,40.55256395200013],[27.031042567000156,40.6577457730001],[26.89934744500016,40.677501583000094],[26.87300848800004,40.802607356000124],[26.47792446400001,40.822362831000135],[26.319890553000107,40.94088461800004],[26.1091785590001,41.00673318500003],[25.924806529000136,40.9935652150001],[25.766773455000134,41.15817959100019],[25.64472054000015,41.22598902000004],[25.32559751300016,41.19110337200016],[25.13463948600014,41.204272012000104],[24.818572502000166,41.184519219000094],[24.640785462000167,41.21744400500012],[24.634201477000147,41.10550201200016],[24.581521551000037,41.08575022500003],[24.37739555400009,41.08575022500003],[24.14034644700007,41.184519219000094],[24.008651493000116,41.184519219000094],[23.844032591000087,41.07257823100019],[23.653076576000046,41.10550201200016],[23.534551603000068,41.184519219000094],[23.020334583000135,41.45112559900008],[22.84117559400005,41.52244922500017],[22.63349952500016,41.66534173100007],[22.457714587000112,41.73933935100007],[22.270282491000046,41.731046296000045],[22.263698507000072,41.55325976000012],[22.322959567999987,41.40839800900005],[22.4744094940001,41.14501061500016],[22.500747446000048,41.05282543800013],[22.48099347900012,40.69067039200013],[22.47876556900019,40.43812431900011],[22.46244449500017,40.35098622100014],[22.23975157700005,40.1926782220001],[22.076396498000065,40.16063571500018],[21.98841048700018,40.10402232900003],[22.027360520000173,39.98436395500016],[22.00606948000012,39.89774117700006],[22.026882584000077,39.756180052000104],[21.965471565000087,39.69043475100011],[21.83967059700018,39.657849096],[21.64661944100004,39.72732635600016],[21.607883481999977,39.58458237800011],[21.632207597000047,39.48990945200018],[21.60773244000012,39.41816455100013],[21.7566545520001,39.37211018400012],[21.880723483000168,39.19706000400009],[22.057083587000022,39.09841724100011],[22.09064858300019,38.99552485300012],[22.03383051100019,38.95514352600003],[22.126228589000164,38.846281379000175],[22.276494488000026,38.85261323600014],[22.35020259700019,38.80652902900016],[22.389511544000186,38.707691304000036],[22.45357560300016,38.66239616900015],[22.35055145200016,38.608011196000064],[22.29713660100009,38.541945035000026],[22.111850440000012,38.59534329100006],[21.72555953500006,38.59650619600012],[21.43545549600003,38.675022836000096],[21.38946550200012,38.72156938800009],[21.391386466000085,38.91913704900003],[21.160539465000113,39.26889392000015],[21.16743659800011,39.33232279900017],[21.082620455000153,39.429722525000045],[20.995557459,39.30450326200008],[20.955224579000117,39.18348417000004],[20.89653952200007,39.204978723000124],[20.88059043600009,39.313803151000116],[20.775964503000125,39.27796464800019],[20.693487582000046,39.1545003870001],[20.644140468000046,39.273741845000075],[20.584651586000177,39.33368871400012],[20.467874576000156,39.2491221840001]]]]},"properties":{"objectid":3,"eco_name":"Aegean and Western Turkey sclerophyllous and mixed forests","biome_num":12,"biome_name":"Mediterranean Forests, Woodlands & Scrub","realm":"Palearctic","eco_biome_":"PA12","nnh":4,"eco_id":785,"shape_leng":162.523043817,"shape_area":13.8449517466,"nnh_name":"Nature Imperiled","color":"#FF7F7C","color_bio":"#FE0000","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":133754.4856073615,"percentage":4.049002099692765}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[64.00556948600018,34.34107899300017],[64.03108953100008,34.36080848500012],[64.50373063500007,34.37123322500008],[64.68409762400006,34.39343454000016],[64.92987849500008,34.45299600900006],[65.11698956400016,34.46419557200011],[65.50521853200013,34.460326654000085],[65.85194350100005,34.44363023800008],[66.0768205760001,34.46884149400012],[66.0550306450001,34.51463535100004],[65.83374052200003,34.50399251400006],[65.81236247800007,34.57559291000018],[66.04756957800015,34.60436295400012],[66.17634561799997,34.63740810500019],[66.1647415430001,34.702508335000175],[65.94850151700012,34.72371773499998],[65.71524857399999,34.693646652000155],[65.41215560200004,34.72044795500017],[65.28029653100009,34.77954054000003],[65.18907158400009,34.78273320700009],[65.03034951900008,34.73048075800011],[64.90382351700003,34.664648452000165],[64.67703251800009,34.58202065600017],[64.4847794870002,34.49599399900006],[64.3216855880001,34.47925533800003],[64.12482452200004,34.48887910400015],[63.944045478000135,34.46859774799998],[63.885864509000044,34.373919290000174],[64.00556948600018,34.34107899300017]]],[[[68.75035063700005,35.394060778000096],[68.53234856700016,35.476795862000074],[68.32816356100017,35.473038925000026],[68.26918748400004,35.529212429000154],[68.38023362000018,35.67707389500015],[68.25032853700009,35.69694872800011],[68.12510659200007,35.57677637600017],[68.01441953700004,35.513446907000116],[67.81607051500015,35.491463354000075],[67.53027360100009,35.50134327100017],[67.35647550900006,35.41889820100016],[67.24675757000017,35.391437074000066],[67.24984764200019,35.33721940400011],[67.36941549100015,35.3137827650001],[67.42001352000005,35.252745243],[67.41857149700019,35.16241565100012],[67.47827948200012,35.11488187800012],[67.79220556100017,35.16042478200018],[67.80455763600014,35.03092186300012],[67.74623853300017,34.97971916300003],[67.5781555580001,34.95977677200011],[67.4494785920001,34.96970949500013],[67.31941961800015,34.91796079800008],[67.25831554400008,34.81643834800008],[67.27777061100016,34.76046383100015],[67.37252853000007,34.70527419500007],[67.73723553100007,34.68835582700018],[67.91369655300014,34.71316223700006],[67.96855158400018,34.80709671700015],[68.07981849800012,34.89481752500018],[67.98186456000019,35.034297926000136],[68.07790356900006,35.1582268790001],[68.11647759000016,35.29689926500009],[68.2706526410002,35.386085229],[68.38065355300006,35.38205319800011],[68.57679763100009,35.29073839800003],[68.68383755300005,35.39822289500012],[68.75035063700005,35.394060778000096]]],[[[70.85282163300013,36.715506539000046],[70.88035551500008,36.89142893999997],[70.81069955200002,36.94688277400013],[70.62831855900004,36.984700915000076],[70.50423454100007,37.059398424000165],[70.49975558700004,36.80414684100009],[70.46270757500014,36.711409632000084],[70.57456960500008,36.663105898000026],[70.57829251100009,36.57455259900013],[70.50612650400018,36.460828110000136],[70.43394457100004,36.29005504700007],[70.4199595340001,36.21295461400007],[70.33796658300014,36.16445172500016],[70.33331261500001,36.071039940000105],[70.44013963600003,36.07824854500012],[70.49433853100015,36.11914887900008],[70.57617155400004,36.09602941100013],[70.69255059199998,35.99646346500003],[70.7686465380001,36.0345406080001],[70.7860485430001,36.09730731600007],[70.73671752200005,36.25009398800012],[70.7847066,36.45815026000008],[70.75155650800019,36.68364726000016],[70.85282163300013,36.715506539000046]]]]},"properties":{"objectid":4,"eco_name":"Afghan Mountains semi-desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Palearctic","eco_biome_":"PA13","nnh":4,"eco_id":807,"shape_leng":15.0840370878,"shape_area":1.3555360977,"nnh_name":"Nature Imperiled","color":"#FA774D","color_bio":"#CC6767","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":13713.246207149816,"percentage":0.05197920295576814}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-160.91114109999995,58.56505228000009],[-160.716303825,58.77483271900013],[-161.05313002499994,58.699590200000046],[-161.07540447199997,58.5476994280001],[-160.91114109999995,58.56505228000009]]],[[[-157.50626448099996,60.21713703200015],[-157.91353778199996,60.22087702400012],[-157.87922368199997,60.35028441300011],[-157.90699687099993,60.43793194800003],[-158.02635262099992,60.523791399000174],[-158.08365746399997,60.61708107500016],[-158.29977072399993,60.59743950800009],[-158.38043683999996,60.64387656200006],[-158.31721088799992,60.796945910000034],[-158.39331272899994,60.81205119800018],[-158.52227121899998,60.693282194000176],[-158.88527731899998,60.68721703800014],[-158.88005678699994,60.8120655300001],[-158.74486314599997,60.942338213000085],[-158.19647596399994,60.94385593400017],[-158.15949300599993,61.09734403300001],[-157.74554326999996,61.250091250000025],[-157.57150101099992,61.34726127800013],[-157.59244950399994,61.395884803000115],[-157.82922242499998,61.38910791400008],[-157.91947146499996,61.45683240100004],[-158.07991732399995,61.45747704600018],[-158.25089125099996,61.534275050000076],[-158.74588705399995,61.47943769700004],[-159.01948797999998,61.494172478],[-159.19314901099992,61.47971742000004],[-159.25349987699994,61.326249819000054],[-159.40455890299998,61.31335805600003],[-159.52533468699994,61.35181749300011],[-160.074753928,61.373565858],[-160.38961051099992,61.24094870500005],[-160.63406283599994,61.225851275000196],[-160.66119835099994,61.13014936000019],[-160.90558911099993,61.077212748000136],[-160.85081338899997,60.90687915400008],[-161.04621314899998,60.80768931000006],[-161.08852132499993,60.69957681400018],[-161.23586117199991,60.68470116399999],[-161.40596054699992,60.70997652300008],[-161.44666963599997,60.537776839],[-161.51678355299998,60.48514411399998],[-161.73485806299996,60.459530698000094],[-161.68903424699994,60.31759073600011],[-161.77129031599998,60.282129865],[-161.68386263099995,60.16867761100008],[-161.84429010099996,60.127426414000126],[-161.81192866599994,60.05348399700017],[-161.94752833999996,60.030745808],[-161.953843997,59.94723844200007],[-162.04010478599994,59.84597791700003],[-161.94730322399997,59.792518021000035],[-161.8707758779999,59.65728168300018],[-161.7040667109999,59.50153627000003],[-161.9428302499999,59.37396351900003],[-161.93819381799997,59.25745444000006],[-162.02179378399993,59.2149998860001],[-161.91343008599995,59.08663627800007],[-161.62456650599998,59.13448177300012],[-161.60087556099998,59.06847269100007],[-161.793302766,58.981727216000195],[-161.75308449099998,58.80949996500004],[-161.69242083299991,58.76098179800016],[-161.97522985199996,58.680245401000036],[-161.75060254199997,58.57558180800015],[-161.36000262699991,58.65920004000003],[-161.34222993899994,58.72907276300009],[-160.98399368,58.85349098700016],[-160.750039186,58.904318291000095],[-160.5329301699999,59.005200132000084],[-160.33483930799997,59.05355470200004],[-160.31226653199997,58.96493653300013],[-160.16252103599996,58.86750020100004],[-160.0084028759999,58.88070931500016],[-159.89872100599993,58.77633661300007],[-159.80736648299998,58.80002753400015],[-159.71705747299995,58.930745717000036],[-159.52701383499996,58.834447757000135],[-159.26850597699996,59.02462951400008],[-159.07683760399993,58.94919120800006],[-159.02963797999993,59.06999837700005],[-158.8293109079999,59.045305788],[-158.74897972699995,59.14761888100014],[-158.51685721799993,59.23365291800013],[-158.47127669699998,59.39886461400005],[-158.6258436399999,59.45461682300004],[-158.83347800599998,59.463297288000035],[-158.80846145699994,59.560762366000176],[-158.66427108699992,59.60219356800002],[-158.66520842899993,59.68414759600006],[-158.40882101599996,59.72408261700019],[-158.30139199799996,59.83336047400013],[-158.07369366799998,59.96858694300016],[-157.93606160099995,60.02104455400007],[-157.90345149799995,60.08697044900009],[-157.60174669699995,60.112703183000065],[-157.50626448099996,60.21713703200015]]]]},"properties":{"objectid":5,"eco_name":"Ahklun and Kilbuck Upland Tundra","biome_num":11,"biome_name":"Tundra","realm":"Nearctic","eco_biome_":"NE11","nnh":1,"eco_id":404,"shape_leng":22.5900871701,"shape_area":8.19657305054,"nnh_name":"Half Protected","color":"#4C82B6","color_bio":"#9ED7C2","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":50654.02987562746,"percentage":0.5927806682933878}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[56.32562892500016,25.21915853700017],[56.33830936500004,25.365028573000075],[56.307462619000034,25.38166603100018],[56.353015258000084,25.565890175],[56.26467488600014,25.623007202000167],[56.27138875300011,25.704166667000095],[56.35006510500017,25.77493591300015],[56.42977041800003,25.937357123000083],[56.419551596000076,26.03878173800007],[56.33750000000015,26.154960124000127],[56.386533610000185,26.195833333000053],[56.44613807900009,26.337195705],[56.345611572000166,26.36272176100016],[56.289166260000115,26.222499593],[56.18742182400007,26.23719075000008],[56.17589314800006,26.17916666700006],[56.09618173100006,26.080159081000147],[56.05914637300015,25.9017862500001],[56.05917276800011,25.900218368000026],[56.026694277,25.839960546000157],[56.03253986900012,25.73914654400005],[55.99076140300019,25.401591665000183],[55.99332943000013,25.385802913000134],[56.01131587000009,25.28615803100007],[55.92417156300007,24.968607416],[55.94953244499999,24.905115280000075],[55.89179597000009,24.854573381000023],[55.917426648,24.738021243000105],[55.973724208000135,24.618591276000018],[55.97588258100012,24.53261608700012],[56.03271973400018,24.511392087000104],[55.92210312300017,24.36156503500007],[55.975342988000136,24.271902626000042],[55.956367293000085,24.153911574000063],[56.08065359900007,24.04104665699998],[56.08307359300011,23.8976129670001],[56.11581709100005,23.79580153500018],[56.25835963600002,23.60496539700017],[56.404139739000016,23.569981769000037],[56.55990231800013,23.45450881900007],[56.57680957200017,23.36961281700019],[56.507871580000085,23.320560461000184],[56.37832919699997,23.274284680000164],[56.45153401100015,23.226350815000046],[56.581216250000125,23.22086495100018],[56.584453809000195,23.134170306000044],[56.710179032000156,22.949449557000094],[56.65217276000004,22.883799048000128],[56.68382889600002,22.7912588100001],[56.78356371000007,22.680282469000133],[56.935818933000064,22.570924908],[57.09140164700011,22.54430497600015],[57.30148327600011,22.442681584000184],[57.35526273500011,22.437285652000128],[57.59367301000009,22.496910704000015],[57.90025189500011,22.53836945],[58.17904172900006,22.45554189],[58.36798929100007,22.353199041000153],[58.55783617500015,22.327388498000175],[58.67312926200003,22.467233076000127],[58.72537987200013,22.408777143000066],[58.831050213000026,22.36183253300004],[58.99175906200014,22.342137380000167],[59.051743843000054,22.285300226000174],[59.091943538000066,22.156787107000127],[59.283319270000106,21.9600154420001],[59.314975406000144,22.038346393000097],[59.373341407000055,22.038346393000097],[59.439981170000124,22.10912303800012],[59.54583137500015,22.281702939000127],[59.54412266300017,22.42586426200012],[59.605816155000184,22.535041959000125],[59.43503489900007,22.490795314000138],[59.41426056000006,22.609955485000114],[59.385032593000176,22.674167079000085],[59.36749581300012,22.692333384000108],[59.365877034,22.69395216400011],[59.34420337200015,22.71751440200012],[59.33664906700011,22.72740694400005],[59.32333910100016,22.736669961000075],[59.32082099899998,22.740537046000043],[59.319741813000064,22.74170616500004],[59.26497310000008,22.809065386000157],[59.23475587899998,22.8441389460001],[59.16415909900019,22.951697863000106],[59.05678004600014,23.057548067000027],[59.05498140200018,23.05934671099999],[59.05417201200015,23.06087555900001],[59.05255323300008,23.06339366100019],[59.051743843000054,23.064292982999973],[59.0508445210001,23.064203051],[59.046977436000134,23.070858034000082],[59.04418953800001,23.07337613500016],[59.033307741000044,23.078322407000144],[59.029170860000136,23.09837728800011],[58.97817930000008,23.177517627999976],[58.861627162,23.206655663000106],[58.90245638300007,23.28579600300003],[58.846518552000134,23.360799461000113],[58.77502244900006,23.439130412000168],[58.777540551000186,23.443357225],[58.777540551000186,23.447494107000182],[58.77349360200009,23.461703395000086],[58.77367346600005,23.465030885999965],[58.77088556800015,23.47663214100004],[58.76926678800015,23.47834085300019],[58.76917685600017,23.4824777340001],[58.76647889000003,23.488323327000103],[58.76333126300011,23.491650819000085],[58.63176044700009,23.523396887000104],[58.64084359999998,23.554693295000163],[58.63247990600007,23.558020786000043],[58.59920498900016,23.580863566000062],[58.59830566700015,23.585809838000046],[58.458371157000045,23.587518549000094],[58.355039053999974,23.508378210000103],[58.28830935800005,23.559189905000096],[58.19415034000019,23.54830810800007],[58.067525795999984,23.581672957000137],[57.908345795000116,23.54084373500018],[57.799977487000035,23.572499871],[57.65662555300008,23.570791159],[57.51417294100003,23.641657737000173],[57.41416832900006,23.654158313000096],[57.198331038000106,23.769990992000032],[56.9791662560001,23.894187367000143],[56.877542865,23.992483267000125],[56.7707933370001,24.060831742],[56.74831028600016,24.15004448900015],[56.583374623000054,24.28080591400004],[56.51835363900011,24.368309951000185],[56.484269333999976,24.486930528000073],[56.31070018000014,24.83245005800012],[56.32311082299998,24.944955246000063],[56.26168712700013,25.144964469000058],[56.32562892500016,25.21915853700017]],[[57.7475,23.130833333000112],[57.728333333000194,23.000000000000114],[57.619166667000115,23.00500000000011],[57.535,23.0425],[57.48416666700007,23.112500000000125],[57.421666667000125,23.10333333300008],[57.32837300600005,23.166635833000157],[57.1575,23.19833333300005],[57.146709953000084,23.259176071000184],[57.06833333300017,23.2675],[57.038333333000026,23.360000000000184],[57.26254263200008,23.295868410000026],[57.28664446300007,23.2275199340001],[57.38997656600009,23.180035730000156],[57.46417063500013,23.199191290000044],[57.58333080600005,23.170862645000113],[57.735000000000184,23.179166667000118],[57.7475,23.130833333000112]],[[58.74833333300012,23.116666667000175],[58.5808333330001,23.13916666700004],[58.6408333330001,23.191666667000163],[58.74833333300012,23.116666667000175]],[[57.09666666700019,22.99083333300007],[57.036666667000134,23.0775],[56.95083333300016,23.112500000000125],[57.0425,23.174166667000122],[57.09666666700019,22.99083333300007]],[[58.96416666700003,22.94083333300017],[59.075,22.88],[59.125000000000114,22.80750000000012],[58.98833333300013,22.7525],[58.99833333300006,22.869166667000115],[58.96416666700003,22.94083333300017]],[[59.12166666700011,22.74333333300001],[59.243333333000066,22.72666666700019],[59.2658333330001,22.482500000000186],[59.20916666700015,22.475833333000026],[59.13000000000011,22.61583333300007],[59.12166666700011,22.74333333300001]]],[[[55.694182185000045,24.048402360000125],[55.76346271400013,23.949675537000076],[55.83082193500002,23.985018894000063],[55.82623539200006,24.082685268000034],[55.77254586600009,24.143839167000067],[55.70491684800015,24.054176759000143],[55.694182185000045,24.048402360000125]]]]},"properties":{"objectid":6,"eco_name":"Al-Hajar foothill xeric woodlands and shrublands","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Palearctic","eco_biome_":"PA08","nnh":3,"eco_id":722,"shape_leng":51.2669645778,"shape_area":4.09966818057,"nnh_name":"Nature Could Recover","color":"#CA6634","color_bio":"#FEFF73","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":46590.1535796174,"percentage":0.4397248168895076}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[59.12166666700011,22.74333333300001],[59.13000000000011,22.61583333300007],[59.20916666700015,22.475833333000026],[59.2658333330001,22.482500000000186],[59.243333333000066,22.72666666700019],[59.12166666700011,22.74333333300001]]],[[[58.96416666700003,22.94083333300017],[58.99833333300006,22.869166667000115],[58.98833333300013,22.7525],[59.125000000000114,22.80750000000012],[59.075,22.88],[58.96416666700003,22.94083333300017]]],[[[57.09666666700019,22.99083333300007],[57.0425,23.174166667000122],[56.95083333300016,23.112500000000125],[57.036666667000134,23.0775],[57.09666666700019,22.99083333300007]]],[[[58.74833333300012,23.116666667000175],[58.6408333330001,23.191666667000163],[58.5808333330001,23.13916666700004],[58.74833333300012,23.116666667000175]]],[[[57.7475,23.130833333000112],[57.735000000000184,23.179166667000118],[57.58333080600005,23.170862645000113],[57.46417063500013,23.199191290000044],[57.38997656600009,23.180035730000156],[57.28664446300007,23.2275199340001],[57.26254263200008,23.295868410000026],[57.038333333000026,23.360000000000184],[57.06833333300017,23.2675],[57.146709953000084,23.259176071000184],[57.1575,23.19833333300005],[57.32837300600005,23.166635833000157],[57.421666667000125,23.10333333300008],[57.48416666700007,23.112500000000125],[57.535,23.0425],[57.619166667000115,23.00500000000011],[57.728333333000194,23.000000000000114],[57.7475,23.130833333000112]]]]},"properties":{"objectid":7,"eco_name":"Al-Hajar montane woodlands and shrublands","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Palearctic","eco_biome_":"PA08","nnh":3,"eco_id":723,"shape_leng":16.6840097297,"shape_area":0.188713310624,"nnh_name":"Nature Could Recover","color":"#FCA673","color_bio":"#FEFF73","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":2150.1530205092117,"percentage":0.020293464832909853}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[69.48539761300009,43.64946092500003],[69.40029950300016,43.640034972000194],[69.23779250500007,43.73543259700011],[69.09982252300011,43.784611738000194],[68.9381175050001,43.900452322000035],[68.67933663800005,43.99250087400003],[68.47878250500008,44.032329834000166],[68.3050685680002,44.130100544000015],[68.02426156800016,44.14495461700011],[67.86927062300015,44.26325931300005],[67.75393664100011,44.30937922700008],[67.47046654200011,44.478324029000134],[67.28562160500013,44.60553282100017],[67.20263657200013,44.620718818000114],[67.14814749600009,44.558509003000154],[67.26193954300015,44.47356009100014],[67.42186759700007,44.39588113800005],[67.49237851400017,44.289638336000166],[67.62449658600013,44.20378149600015],[67.66355860200002,44.10322983900011],[67.58558661800015,44.05536296900016],[67.52555056600016,43.94554226700018],[67.36871359000008,43.819321534000096],[67.52648950700012,43.71994183500004],[67.59443656700012,43.552591270000164],[67.72447961500018,43.4095517450001],[67.81347648400003,43.366122088],[67.91842662900018,43.263361463000194],[67.93668358800005,43.17690179700003],[68.05039248600008,43.10255414800008],[68.10131053600008,43.01637259300014],[68.17946658700015,42.96877293800003],[68.27890060099998,42.78632489],[68.28914664000018,42.61927674400005],[68.26033049500006,42.57078810500008],[68.31800855000006,42.38796639100008],[68.32589759700011,42.26669818900007],[68.24986250400019,42.11884141700011],[68.2672884800001,42.019919034000054],[68.17365256300013,41.89908987600012],[68.16390256600016,41.792522862000055],[68.11134350700019,41.653383102000134],[68.15498355099999,41.41232710999998],[68.11422755200016,41.2559414160001],[67.96987961200011,41.13560762900005],[67.87447360500005,41.17480727500015],[67.89219663600016,41.29504534100005],[67.97387660700014,41.45054573900006],[67.91873960900011,41.70468252900014],[67.96468350300012,41.790302664000194],[67.96013648800005,41.87488629300009],[68.04444150300003,41.9693253640001],[67.95587948700017,42.00926915600013],[67.70654251000013,41.95464261600006],[67.529418647,41.82580253800006],[67.11868259200003,41.756482020000135],[66.91251359000006,41.60675239500006],[66.61932350100011,41.50511511300016],[66.53794863200017,41.32985002100014],[66.31876354100018,41.17217954900019],[66.16101059100009,41.13240691500005],[66.00668349200009,40.94815156100009],[65.83100148400001,40.79130033600018],[65.73274948500006,40.74028287700003],[65.55742655700004,40.70286924600015],[65.339469582,40.61360231200007],[65.22926348099998,40.53077519500005],[65.2049866390002,40.42184347800014],[65.06059259900007,40.3375855700001],[65.05943254300018,40.27070720299997],[65.19164248200019,40.16770048600006],[65.38121749500004,40.137580116000095],[65.42597954000007,40.06175993500017],[65.50626358800008,40.01868030500003],[65.60549962200008,39.89030324400005],[65.68068663500003,39.86230349600004],[65.91430653700019,39.84534372100006],[66.02931261900005,39.783874531000095],[66.1196975310001,39.67014400700009],[66.121200574,39.55855858000018],[66.07057153200014,39.466136866],[66.08527355700005,39.32673106300007],[65.99826856400017,39.21530154000004],[65.85420259199998,39.09115432200019],[65.82109860000008,38.97542236700002],[65.9607696060001,38.74498272600016],[65.95150760300015,38.60042004200011],[65.72933151300003,38.52257144000015],[65.58673052900008,38.38562572600006],[65.61885048500011,38.20568973400009],[65.59269760600006,38.07489030300002],[65.46956661000013,37.86319310000016],[65.49226363000008,37.74265831499997],[65.66517659300013,37.776543667000055],[66.01078056600016,37.79426619600014],[66.2677685450002,37.82971175500006],[66.66654161200017,37.97149801799998],[66.75827064600003,38.050990647],[66.68681358000003,38.07069029900015],[66.61711151700007,38.22611643200014],[66.93112962900017,38.409905250000065],[66.9505085890001,38.4977838050001],[66.84435262400018,38.629392593000034],[66.76242857300002,38.781970221000165],[66.85565159700008,38.856348045000175],[67.00773653600015,38.90920734300005],[67.09732852000013,38.98254698500017],[67.13127154000017,39.067129943000054],[67.01757856700016,39.17850196699999],[66.75272350200004,39.28539939600017],[66.6594464980002,39.42704853100014],[66.66310855200015,39.49199671300016],[66.8150635720001,39.51990828300012],[67.14201361900018,39.42916932000003],[67.5053485030001,39.411377557000094],[67.66536758400014,39.47469680000006],[67.55529760500002,39.687107806000085],[67.67791764000009,39.74378623500019],[67.80756355400018,39.925946784000075],[68.02242257800009,39.92282284900017],[68.16899859600011,39.890202996000085],[68.41686253700016,39.94833132700006],[68.72604362000015,39.9762960380001],[68.76473951400015,40.017841612000154],[68.95176659700019,40.03630107700013],[69.09271953000012,40.15360883000011],[69.51979057300002,40.133658056000115],[69.61701964400015,40.14366001400009],[69.81108853100017,40.08764962200013],[70.07688153100014,40.2016471930001],[70.306861508,40.23129784100013],[70.56459061400017,40.30969696600005],[70.84953358000013,40.35770817200006],[71.02667957200015,40.45100713700003],[71.17463659200007,40.370056057000056],[71.3318095140001,40.34893852200008],[71.62993654400003,40.44156542600018],[71.93592864800002,40.44552537200008],[72.08077950200015,40.470766971000046],[72.23200261400012,40.607583435000095],[72.46172359100018,40.778113423000036],[72.59436754400008,40.8337997700001],[72.62198658600016,40.94760975500003],[72.52422358700011,40.983700218000024],[72.34932763400019,40.979218247000176],[72.21697956200018,41.11936886500007],[72.11338762000003,41.16099842500017],[71.74909250600007,41.113909899000134],[71.46173856900003,41.05179949300009],[71.22973654100014,41.020377918000065],[70.97106950000006,40.95676866000014],[70.84467358500007,40.91080213600003],[70.66512249000004,40.801321237000025],[70.52897657800008,40.642501941000035],[70.38308754200006,40.55191586300003],[70.19274156100016,40.504465407000055],[70.04567754900012,40.407855590000054],[69.91874653400004,40.37310824300016],[69.71278355900017,40.38711105100003],[69.57494349600006,40.358116371000165],[69.42784159800004,40.37164710999997],[69.36637861100019,40.412406629000145],[69.34033151200003,40.55912580900008],[69.27913657800008,40.68542164399997],[69.32359352100002,40.766741695000064],[69.4154965640002,40.828612043000135],[69.54528849000008,40.86958161200005],[69.57533258400008,40.94355861300005],[69.52114056300019,41.08390721200004],[69.53240952900018,41.303006138000114],[69.34126257300005,41.440406821000124],[69.28666654400013,41.650674909000145],[69.15923362000018,41.73693223600014],[69.123413557,41.83312245399998],[69.25582164300016,41.97564246900009],[69.24109648300004,42.053991638000184],[69.30042258800017,42.134569053000064],[69.47508954800008,42.18641078900009],[69.52140056900004,42.236558374000026],[69.6566165930002,42.254277382000055],[69.7806166250001,42.384208280999985],[69.80184161500017,42.50338670700012],[69.7094425320002,42.77884504700012],[69.7584764980001,42.91193407900016],[69.73404660300014,43.03563353600015],[69.66697662600018,43.14873793100014],[69.51051348300018,43.242533440000045],[69.43486764500005,43.403650886000094],[69.52406350000018,43.513574517000166],[69.46468358300001,43.58879237500008],[69.48539761300009,43.64946092500003]]]},"properties":{"objectid":8,"eco_name":"Alai-Western Tian Shan steppe","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Palearctic","eco_biome_":"PA08","nnh":4,"eco_id":721,"shape_leng":33.9987519249,"shape_area":13.6728682328,"nnh_name":"Nature Imperiled","color":"#FCEC35","color_bio":"#FEFF73","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":127804.55468285635,"percentage":1.2062384449865893}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[96.88292657500017,45.22379574600018],[96.758293542,45.38155288700017],[96.68626365699998,45.43757601900012],[96.3083345390001,45.575313152000035],[96.08541866200017,45.69112758500012],[95.92913053400014,45.711982430000035],[95.59662663700004,45.67819564900003],[95.41126252400011,45.678512653000155],[95.32525665400004,45.59172843900012],[95.15609761000002,45.51683714000018],[94.911910642,45.47922502600011],[94.63951152900012,45.50458531200002],[94.37886065900017,45.50610729800019],[94.3122406220001,45.34399005900008],[94.33419064800012,45.19034893500009],[94.65267966700003,44.897665784000026],[94.66448960100001,44.99115686199997],[94.96134157500018,45.12020799600003],[95.07812462100014,45.15517394300008],[95.27545155300004,45.108843979000085],[95.55421454200018,44.93091863800015],[95.69889859600016,44.77653085500009],[95.74201963200017,44.679301783000085],[95.66828151600015,44.54166691000006],[95.58119957600019,44.50924989900011],[95.25987261200004,44.518942900000184],[95.15848561400009,44.55525498100019],[95.86909464900009,44.10227581000015],[96.06084459800007,43.72044072500012],[96.06084459800007,43.390531866000174],[95.97097064700017,43.191840863000095],[95.86782060000007,43.00461278300003],[95.80458064900012,42.83233768200006],[95.75594365000012,42.782147852000094],[95.52565756600006,42.623632819000136],[95.22130563200005,42.33902378800019],[94.92403456200003,42.30609196100011],[94.78446967200017,42.25171017300005],[94.68766053400009,42.142628923000075],[94.58827966100012,42.09641429400017],[94.31635261700012,42.01571198900007],[94.18585158100018,41.918673690000105],[94.1478495400001,41.67703079800009],[94.09944958200009,41.585482478000074],[94.15153456000019,41.474868513000104],[94.20382657200014,41.275914485000044],[94.16770962200019,41.206198006000136],[93.85075365300014,41.12179475500005],[93.77672552200016,41.12179475500005],[93.51705164700013,41.066711570000166],[93.48699162700018,40.981213307000075],[93.71150157500017,40.84246665800009],[93.78370664099998,40.74967094300018],[93.71640062900013,40.63119911200016],[93.5537645500001,40.46536483400007],[93.513488667,40.27611638000019],[93.63021857100006,40.230286648000174],[94.08589151800004,40.24290258600007],[94.18143465300011,40.20286005500009],[94.14476751500007,40.13508499200009],[94.01792853199998,40.07677376700008],[94.21280660800011,40.04601302100008],[94.49118050900017,39.85019550200013],[94.60877257600009,39.6978728520001],[94.70117953800008,39.48071266000005],[94.74015756700004,39.395424951000166],[94.94660954200009,39.377210237000156],[95.19133764600008,39.54878880100017],[95.57197562700003,39.73775914400005],[95.7735136280001,39.8738314630001],[95.90388457600011,39.92849857100009],[96.07133455000013,39.91246197800007],[96.44329055600014,39.83097697100004],[96.68690453800019,39.73456614100007],[96.86002352800011,39.60904881800013],[96.98000359900004,39.56976954300006],[97.2229235580001,39.571425304],[97.62814365000014,39.6037009960001],[97.80030056500016,39.588267062000114],[98.09011861400012,39.477786873000184],[98.34158358900004,39.49132565800011],[98.48214760200011,39.41901045300011],[98.69230655800015,39.39532202100003],[98.77479554900015,39.332395721000125],[99.03603365499998,39.24387310100019],[99.38948862200004,39.0818696880001],[99.75611155800004,38.84867625600003],[99.97543361000015,38.7370831180001],[100.27960164500013,38.61550679700008],[100.76683765400008,38.437367047],[100.96056355300016,38.39945770999998],[101.10263060900013,38.31392206500004],[101.19532054500007,38.28826153900013],[101.4311755650001,38.26880663900016],[101.51659352900003,38.26360684100018],[101.70043951100007,38.202604020000024],[101.93159463200016,38.18588011200006],[102.16795357200016,38.12799318000009],[102.25092351800004,38.08567395600011],[102.3705825620001,37.939599680000185],[102.5417785750002,37.7880942650001],[102.61456266400006,37.64934091000009],[102.70539064300004,37.560601534000114],[102.84967052200011,37.471850255],[103.22192358300009,37.374913209],[103.49555953000004,37.34778769400015],[103.6501845210002,37.361463607000076],[103.78275253400017,37.34885974000002],[103.85649853000012,37.31083540300011],[103.83317554900015,37.15019773800003],[103.7360836060002,37.0591194750001],[103.632308604,36.87816642300015],[103.51783762200017,36.86548259100016],[103.50186154700003,36.97919216100007],[103.352577672,37.02453641300019],[103.18982659400012,37.03276492700019],[103.10958864600019,36.98520416400004],[103.10003662900004,36.91329062000017],[103.13902253700007,36.80000081700007],[103.2717206370001,36.60230809800004],[103.58095553300018,36.44095746800002],[103.98807563400015,36.205042768000055],[104.21240252100012,36.13304238700016],[104.45349153800004,36.201704926000104],[104.57711756900005,36.32165918100003],[104.6624295850001,36.32010718800012],[104.74233259200014,36.38359373400016],[104.796348593,36.47378586200006],[104.62748761000006,36.72779038600004],[104.50940654300007,36.83799799600007],[104.39919256300004,36.885231025999985],[104.29685254300006,36.98756501100007],[104.3362196600001,37.15287977900016],[104.43067951700004,37.2316019430001],[104.68259460000007,37.27096134900012],[104.77706166700011,37.373296172000096],[104.89514156000001,37.389043086000186],[105.09159057200009,37.44557600600007],[105.00535554000004,37.73541048300018],[105.01322966800018,37.947957611000106],[105.06832861100014,38.05029260200007],[105.09982260700008,38.231354451000016],[105.09982260700008,38.42028104000002],[105.27301066400008,38.75878068000014],[105.29662365800004,39.05005097700007],[105.44619754700005,39.27046871200008],[105.58789865000006,39.38067799800007],[105.713851665,39.43578448500017],[105.84767964600013,39.58535233900011],[105.96576658000004,39.632585705000054],[106.03661361100006,39.62471157700014],[106.19406162700011,39.69556179300014],[106.38299559199999,39.67981789700008],[106.63490262800019,39.632585705000054],[106.737243654,39.49088661400003],[106.74511761400015,39.7979003050001],[106.69788357800013,40.00257581900013],[106.72149657300014,40.097037354000065],[106.78447752300008,40.097037354000065],[106.8946836240001,40.20724999300006],[106.97341165500012,40.22299388900012],[107.10723863000015,40.325332736000064],[107.26467860000008,40.348945228000105],[107.55318454600013,40.55053888400005],[107.89991756100017,40.632397221000076],[108.01449566300016,40.629830180000056],[108.25919359200009,40.58053671000016],[108.65489955300012,40.550004957000056],[108.79934656700004,40.64478701500008],[108.83644068000012,40.768267704000095],[108.95719859100006,40.87326260900005],[108.91356659400014,40.96425755500013],[108.79193864100012,41.21945784100012],[108.71743056300011,41.27823845200004],[108.59608457700006,41.27492625899998],[108.40994262400005,41.32767173200011],[108.19077261900009,41.317323099000134],[107.95720652900008,41.24518777000014],[107.51908864000006,41.221903010000176],[107.170486628,41.09761698800003],[106.78087665700008,40.921144063000156],[106.63100454000005,40.82298493600001],[106.48204051900007,40.76356763600006],[106.32055661600015,40.61305732100004],[106.03061652700018,40.43915445500011],[105.45116466300016,40.177034405000086],[104.98190264000004,39.93988957700009],[104.78543066200007,39.95018926000006],[104.571479565,40.10354539900004],[104.40746265100006,40.31741384900005],[104.27270461500012,40.33529664000008],[104.02386451700005,40.33648737300007],[103.88108064000016,40.22168094800014],[103.80811365900007,40.19848822200015],[103.65753159400009,40.264645243000075],[103.41477960800017,40.43107128300005],[103.3199006550002,40.52343935300007],[103.35745258700007,40.66486770800003],[103.43987267900008,40.70897227699999],[103.61674458300018,40.75359283600005],[103.8114925710002,40.76787057000013],[103.97238957300016,40.71046811200006],[104.27529864600007,40.644836972],[104.55172761000006,40.67425158400005],[104.66738865400015,40.63963013300008],[104.77624560400017,40.561781028000155],[104.95259062100013,40.32200260600001],[105.13513958800019,40.25251847300018],[105.2681275340002,40.292400909000094],[105.37493158900008,40.36426902300013],[105.5085905900001,40.408541565000064],[105.7682346260001,40.524236471999984],[105.81038654700012,40.57386186500008],[105.72816460300015,40.74324789100001],[105.74366760300018,40.81368521400009],[106.0231165670001,40.93140200400006],[106.424323572,41.00392206200007],[106.60058560800013,41.06766828000008],[106.8942415620001,41.21865686700011],[107.0996625630001,41.286313410000105],[107.55083459600019,41.40416028599998],[107.8526075850001,41.427684936000105],[108.09304063400009,41.60723351600018],[108.4342806530002,41.74717006100019],[108.81123361500016,41.82468858300018],[108.98970763500012,41.8894689600001],[109.16366565400011,41.928328805000035],[109.77426165200006,42.14742488100006],[109.84968553700003,42.212075506000076],[109.94666264900013,42.37729254000004],[110.05161262600012,42.645689798000035],[110.15571552800009,42.708566309000105],[110.3373795330001,42.90536920500017],[110.44335160000008,43.102172101],[110.41307868000013,43.208144670000024],[110.32224265400009,43.25355849200008],[109.80752557000005,43.238421781000056],[109.61072552400003,43.28383526800019],[109.5350345920001,43.22328071099997],[109.29280865400011,43.16272699300015],[109.02031666900018,43.17786705700013],[108.79323565700014,43.26869838900018],[108.77809157000007,43.32925311300011],[108.83865367000004,43.3898068310001],[108.99003553500012,43.45036189100006],[109.32308962000002,43.48063849900012],[109.80752557000005,43.42008394200013],[109.89836159600009,43.46549759600015],[109.7923885240001,43.556333287000086],[109.6864166250001,43.5714701660001],[109.65614353700016,43.662301833000015],[109.7923885240001,43.76827356500007],[109.837806537,43.949936229000116],[109.91349763700003,44.08618574100012],[110.00433366300007,44.19215764000012],[110.09516164200005,44.22243458300011],[110.201133541,44.177017744000125],[110.3525236210001,44.19215764000012],[110.32224265400009,44.31326641800007],[110.15571552800009,44.40409808600015],[109.85294358300013,44.464652139000066],[109.95891565000011,44.525207031000036],[109.95891565000011,44.60090182000005],[109.88322455000014,44.66145587300019],[109.51988966600004,44.61603886600017],[109.27767160700012,44.60090182000005],[109.08087156100015,44.61603886600017],[108.76295452300002,44.58576091700007],[108.35420967300001,44.57062487700006],[108.00601954800004,44.464652139000066],[107.7486646100001,44.31326641800007],[107.4307475720002,44.14673962700016],[107.11283858000007,43.91965928600007],[107.06742056700011,43.85910540000003],[107.02200356000009,43.647164954],[107.052284526,43.435220821000144],[107.052284526,43.26869838900018],[106.99172963400008,43.11730931500017],[106.67381259600012,42.84481548600007],[106.56784052900014,42.78426093000013],[106.43159453700002,42.75398398700014],[106.31048559200013,42.69343043600003],[106.12882259200012,42.69343043600003],[105.91687762100014,42.72370721100003],[105.82604260100004,42.708566309000105],[105.79576867499998,42.58745820200011],[105.85632356700012,42.46634975900008],[105.76548754100008,42.3906553060001],[105.64437859500009,42.43607315100019],[105.53840652899999,42.526904315000195],[105.26889766400012,42.66822672400008],[105.00234258100011,42.72680415700012],[104.875121552,42.79345101600006],[104.70024856499998,42.944512190000125],[104.58555563100009,42.99379375700016],[104.48539758700002,43.13273201700008],[104.39816259500009,43.162219887000106],[104.23661063100008,43.11174406600003],[104.07223564200007,43.13841209700007],[103.47002456400008,43.442022903],[103.28836055900001,43.45716263200012],[103.01586153400001,43.43445370900008],[102.97801154200005,43.51771735600005],[103.32620267300007,43.532854570000154],[103.47002456400008,43.51014564800005],[103.56085153800007,43.52528554400004],[103.5230105980001,43.62368523200013],[103.30349760600006,43.60854919100018],[103.09155263400004,43.61611721100019],[103.03099858100006,43.68424397900009],[103.02538253800014,43.896954219000065],[103.04808760500003,43.96507713100016],[103.16162853000009,44.07104886200011],[103.23731963000006,44.10132580500016],[103.68403651300014,44.091979816],[103.70709965500004,44.16093052499997],[103.64673654100017,44.20796155100004],[103.479545568,44.245143338000105],[103.01781451800014,44.214866395000115],[102.75288351300014,44.25271236500015],[102.2457356220001,44.419238150000126],[102.08678456300015,44.48736123000009],[102.01108558400011,44.48736123000009],[101.96567561800003,44.396530065000036],[101.98838051700011,44.30569839800006],[102.07163963800019,44.16944855000003],[101.99594853700012,44.12403053700007],[101.86727157100012,44.12403053700007],[101.36778256100018,44.19214238500018],[100.97875965900005,44.163001693000126],[100.82736957900016,44.132724582000094],[100.63813755400008,44.125156562000086],[100.274810549,44.07973871700017],[99.95689351100009,44.07973871700017],[99.5784306330001,44.041892747000134],[98.82817067000013,43.99157014800011],[98.73734252400004,44.006706859000076],[98.25669066700004,44.31326641800007],[97.84037058900014,44.517639179000184],[97.63600151700007,44.59333396700015],[96.9740985480002,44.90044673200009],[96.88292657500017,45.22379574600018]]]},"properties":{"objectid":9,"eco_name":"Alashan Plateau semi-desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Palearctic","eco_biome_":"PA13","nnh":2,"eco_id":808,"shape_leng":75.5063575591,"shape_area":72.7246536311,"nnh_name":"Nature Could Reach Half Protected","color":"#F9AB58","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":674924.4490942877,"percentage":2.5582589555630455}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-150.80494658699996,62.91198153000016],[-151.01588472399993,62.80803788400004],[-151.02635170899998,62.721184268],[-151.22398357499995,62.648122068000134],[-151.16469986999994,62.50354976200015],[-150.9804733199999,62.487102156000105],[-150.85234024199994,62.40644858900015],[-150.66888818199993,62.50456670500017],[-150.47153523999995,62.6509578460001],[-150.52436857999996,62.71706791500003],[-150.67196668699992,62.75317966900013],[-150.69111665299997,62.85067981000009],[-150.80494658699996,62.91198153000016]]],[[[-150.45095869899998,63.08481704400009],[-150.37565567999997,63.01581805500001],[-150.5882416999999,62.8511607640001],[-150.6138765769999,62.797283567000136],[-150.40338388599994,62.701551728000084],[-150.1740920299999,62.85913797200004],[-150.00115513899996,62.93264595200003],[-150.23310867599994,63.04947273800008],[-150.45095869899998,63.08481704400009]]],[[[-141.62568039099995,62.53673996000009],[-141.76740412299995,62.56216269800018],[-141.73836439999997,62.652702457000146],[-142.11280676799993,62.74064131199998],[-142.24119613799996,62.89207469500019],[-142.57585336299996,63.06886394100002],[-142.57872298299998,63.18941558],[-142.79183486699992,63.24360603700012],[-143.1702559539999,63.25536974500005],[-143.35384950899993,63.32091090100005],[-143.62851104799995,63.370339632000196],[-144.00381091199992,63.46877192100004],[-144.14537480499993,63.66565768400005],[-144.55896979299996,63.677162641000166],[-144.86659393099993,63.74578541700009],[-145.17389876599995,63.76407847200011],[-145.57739379499998,63.85623829200006],[-145.74106491699996,63.81388084100007],[-145.9185404079999,63.83161874500007],[-145.98143806499996,63.66764867000012],[-146.12803027799993,63.695266401000026],[-146.09096981299996,63.83602598900006],[-146.3200255959999,63.90605724700015],[-146.52238806799997,63.920668722000016],[-146.67257281499997,64.07323148000017],[-147.13465070399994,64.07788715100003],[-147.35043578499992,64.10972553400006],[-147.795727172,64.22213508900012],[-148.096404396,64.1612806930001],[-148.5557798829999,64.21915197800013],[-148.97732857699998,64.20279577300016],[-149.11341645099998,64.15180701300017],[-149.03278738599997,63.977445119000095],[-149.25828299199995,63.94374095900008],[-149.36079658899996,64.06021374300019],[-149.67437304199993,63.996067911000125],[-149.97095334199994,63.96029453200009],[-150.03276388099997,63.839021506],[-150.27648217599992,63.76686559500007],[-150.33469182799996,63.818109564999986],[-150.31840945799996,64.03025590200008],[-150.4900687519999,63.94596600200009],[-150.60187282099994,63.8103692160002],[-150.99340779399992,63.59010266100006],[-151.36034759499998,63.45307056700011],[-151.33330302699997,63.33080506200008],[-151.82270880499993,63.267873478000126],[-151.95702726599998,63.18544597500011],[-152.42106830399993,63.021702485],[-152.69653911999998,62.967825773000186],[-152.82039244499992,62.84559405700003],[-153.063032016,62.781653471000084],[-153.3229355539999,62.66157171400005],[-153.35951173799995,62.581511637000176],[-153.5989821519999,62.48786123000008],[-153.87248666199997,62.48402843100007],[-154.29526900299996,62.37834123200008],[-154.55427670799995,62.26362516500012],[-155.14619518,62.128400187000125],[-155.31864014199994,62.048174314000164],[-155.30230736399992,61.95974307300003],[-155.175748453,61.856287858000144],[-155.12303830899998,61.75407597700007],[-155.19408751399993,61.63205239500007],[-154.98566865599997,61.64586460800007],[-154.68632275899998,61.80045953300004],[-154.56730227299997,61.74345105100008],[-154.52393725599998,61.57245445500007],[-154.35434127399998,61.454893514000105],[-154.44431855799994,61.38491116800009],[-154.44180292899998,61.21978969600002],[-154.2830548199999,61.1174472940001],[-154.12337164899995,61.08580066500008],[-153.94306219499998,61.19646763300011],[-153.83913533599994,61.16976994800012],[-153.80720237099996,61.089982052000096],[-153.82502580999994,60.90050252200007],[-154.1694995089999,60.88434482800005],[-154.49194349399994,60.842194326000026],[-154.82032882199994,60.75693313900001],[-154.921210098,60.604536723000194],[-155.07912709599992,60.564378218],[-155.17918535799998,60.485263977000045],[-155.15643132299996,60.41038914300009],[-154.83228314099998,60.302251636],[-154.61024066099998,60.28782396200012],[-154.2014272449999,60.32433860100008],[-154.21219893699995,60.21892535300003],[-154.51531732399997,60.09076566200014],[-154.57974131399996,60.01918549600009],[-154.52008429999995,59.885888189000184],[-154.27873304699992,59.78672401199998],[-154.23131157599994,59.70662255900004],[-154.62949692499996,59.58096039999998],[-154.64764329799993,59.49338130400014],[-154.80230455999995,59.422297028000116],[-154.32630082199998,59.397520310000175],[-154.0878217249999,59.36796473300018],[-153.69904907099996,59.463601151000034],[-153.76101275499994,59.54341931700009],[-153.5854309469999,59.551473890000125],[-153.46457646899992,59.65171026500013],[-153.2141764669999,59.63427394200016],[-153.04874923799994,59.695355781000046],[-152.9944856619999,59.791264874000035],[-153.14439475999993,59.80761939400014],[-153.22584933399992,59.861319378000076],[-153.00254026699994,59.88672850300003],[-152.8611039019999,59.87501034400009],[-152.70645847799994,59.91528309200004],[-152.56914040099994,60.07174674000015],[-152.7657222899999,60.195219426000165],[-152.5250790409999,60.25320946100004],[-152.46573694799994,60.560692135000124],[-152.37449647699992,60.85428915200015],[-152.188261845,60.915605025000104],[-152.11824792099998,61.03561341900013],[-151.97840343599995,61.168268411000156],[-151.79196203299995,61.205446585000175],[-151.76192007399993,61.2690944200001],[-151.8946265349999,61.35914847600014],[-151.91473304999997,61.43420437900005],[-151.594982988,61.60075038400015],[-151.58924454899991,61.68717223400017],[-151.80408962899992,61.92402400500015],[-152.03632896799994,61.943053590000034],[-152.08395245499992,62.00169998900003],[-152.01151652199997,62.08505570000011],[-152.0018846399999,62.21612341300016],[-152.10964846399997,62.296450539000034],[-152.08186207999998,62.417654713000104],[-151.90602591999993,62.4622855720001],[-151.54215870199994,62.378628434],[-151.4126078109999,62.387374991000115],[-151.40523941099997,62.46599789600009],[-151.28777222399995,62.49811896800003],[-151.4089356339999,62.65528339800005],[-151.35679667499997,62.74325013100008],[-151.42929058299993,62.77959791900014],[-151.59498572099994,62.68159067199997],[-151.9352116979999,62.691837045],[-151.97526562799993,62.60939415400014],[-152.10742158599993,62.524554877000014],[-152.34294166699996,62.54011940099997],[-152.42021158199992,62.5978495920001],[-152.17088365799998,62.68100259700009],[-152.15379362799993,62.74470338500009],[-151.95805372499993,62.874672002000125],[-151.70338468399993,62.90364220700019],[-151.66076656199994,63.005594816000155],[-151.45996063699997,63.0318055300001],[-151.31437670199995,63.09278639000007],[-151.22377067499994,63.18486662600003],[-150.85284463699995,63.200858459000074],[-150.37156665299995,63.28754711900018],[-150.2149357039999,63.209822737000195],[-150.1083525969999,63.30318372700003],[-149.99589561899992,63.204219434000095],[-150.06312569099998,63.13264418400013],[-150.05973856399996,63.02817499200006],[-149.75600805299993,62.89731760000012],[-149.9439995639999,62.789905541],[-150.08403753099998,62.67262460300003],[-150.00359796599994,62.52250192300016],[-149.8094572359999,62.517796843999974],[-149.660564981,62.4207936790001],[-149.62144436199992,62.34302304400012],[-149.79670365899992,62.2568621530001],[-149.70632116099992,62.00498063600014],[-149.6857505879999,61.778162747000124],[-149.5822900439999,61.72485549200002],[-149.37608732799998,61.71197821700014],[-148.880987455,61.82443004500004],[-148.70684989699998,61.78156624600007],[-148.65722560899994,61.795003785000176],[-147.65567208999994,61.81216439800011],[-147.25981110999996,61.8614102140001],[-147.03587935799996,61.939028250000035],[-146.99001874599992,62.23110575400017],[-146.99863988199994,62.35902049100008],[-147.331826304,62.47219763900017],[-147.3534510929999,62.59229610000011],[-147.19815005799998,62.670281855000155],[-146.6355605889999,62.71733129800009],[-145.69952381399997,62.736993021000046],[-145.63384819499993,62.77530676900005],[-145.27607359999996,62.793606865000186],[-144.57148179499995,62.87747682500009],[-144.51913809799996,62.71436847899997],[-144.24104982899996,62.63507709100003],[-143.96100017599997,62.67803101200013],[-143.86140287799998,62.740878978000126],[-143.5849483909999,62.70217389900017],[-143.49659271399992,62.55065699700003],[-143.60250167499998,62.52745895400005],[-143.85280752499995,62.534125453],[-144.11697789199997,62.56944004500019],[-144.39969093499997,62.489690941],[-144.56753052699997,62.4070685210001],[-144.650346692,62.25726306100006],[-144.81338123699996,62.20564820000004],[-144.91151484699995,62.05342326700003],[-144.89182012799992,61.959039171000086],[-144.75768084899997,61.8963694790001],[-144.59519752099996,61.90087990100011],[-144.5995585569999,61.79910837800003],[-144.24664304199993,61.663217138000164],[-144.20893857599998,61.602231540000105],[-144.05907762999993,61.55675288900011],[-143.75455008899996,61.514802698000096],[-143.53722494699997,61.359708779000016],[-143.44550006699995,61.34656012000005],[-143.232820463,61.4132877130001],[-142.74835652699988,61.41042313200012],[-142.64150087999997,61.35435586500017],[-142.76168915499994,61.21731692600008],[-142.73984894199992,61.145929582],[-142.32341149299992,61.1516570930001],[-142.181179048,61.12135312100003],[-141.991795831,61.07843041800015],[-141.23453484399994,60.851699142000086],[-140.93948389899998,60.862904604000164],[-140.60029515899993,60.82292499800013],[-139.89151341999997,60.674880894000125],[-139.61171043099995,60.50112475200007],[-139.41591362499997,60.349700075000044],[-139.090358499,60.35899433999998],[-139.08054708599997,60.28989672600005],[-139.18936287099996,60.088441698000054],[-139.04723962699995,59.996310935000054],[-138.6894970279999,59.9068520830001],[-138.6164025089999,59.77392957300003],[-137.73009127999995,59.311486479],[-137.54643268599983,59.37636736200005],[-137.2748566759999,59.22497191800005],[-137.20581891299992,59.209432966000065],[-137.14866324399998,59.22713680200013],[-137.259887602,59.30063871100009],[-137.0315296099999,59.308247586000164],[-137.02199236299992,59.31707282400009],[-137.19459559399996,59.327640509000105],[-137.29853856999995,59.368520057000126],[-137.17799355799997,59.45892022400005],[-137.0181276979999,59.42711207400009],[-136.95304308699997,59.34805675900003],[-136.90276300499994,59.3508061710001],[-136.87526499799998,59.35795925100007],[-136.8620197329999,59.363485174000175],[-136.840419603,59.376465357000086],[-136.81751847599998,59.509749006000106],[-137.07193100799998,59.60124323800011],[-137.35578820799998,59.66552221600017],[-137.55366096199998,59.87528538400011],[-137.66389903699996,59.943665273000136],[-137.9160426009999,59.95882051900014],[-138.02784874999998,60.18907672900019],[-137.95897103099998,60.340380686000174],[-137.80126991599997,60.467364437000185],[-137.85767717799985,60.63505742400008],[-138.08321580599994,60.734561138],[-138.60664106099995,60.81522699200002],[-138.65100096999998,60.92883861100012],[-138.4947514999999,61.01911266299999],[-138.57610877499985,61.125211751999984],[-138.855239322,61.25811851200007],[-139.08447458299997,61.32264235000014],[-139.43960490099988,61.48818508700015],[-139.6608728399999,61.548777756000106],[-140.08805643499983,61.729980374000036],[-140.2643707499999,61.856639444999985],[-140.56626801899995,61.983541790000174],[-140.88380383699996,62.13578765300008],[-140.98974831199996,62.165525575],[-141.06242453599998,62.25651918800003],[-141.56031822499995,62.32086499500019],[-141.62568039099995,62.53673996000009]]]]},"properties":{"objectid":10,"eco_name":"Alaska-St. Elias Range tundra","biome_num":11,"biome_name":"Tundra","realm":"Nearctic","eco_biome_":"NE11","nnh":2,"eco_id":405,"shape_leng":98.4007274691,"shape_area":28.388010196,"nnh_name":"Nature Could Reach Half Protected","color":"#61D2F2","color_bio":"#9ED7C2","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":164682.52242904945,"percentage":1.9272033427828732}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[22.598936081000147,-33.48720550499996],[22.818931580000083,-33.480655669999976],[23.010395050000113,-33.43757247899998],[22.913816452000106,-33.460594176999905],[22.642753601000095,-33.47464370699993],[22.613920212000153,-33.484069823999846],[22.60693740800002,-33.486244201999966],[22.598936081000147,-33.48720550499996]]],[[[24.021545409999987,-33.49978256199989],[23.780355453000084,-33.42256164599996],[23.665708542000175,-33.454513549999945],[23.696794510000075,-33.47175598099989],[23.83847236600019,-33.44935607899998],[24.021545409999987,-33.49978256199989]]],[[[22.298444748000065,-33.412212371999885],[22.261775970000087,-33.41794204699994],[22.24868774400005,-33.45969390899995],[22.20895385700004,-33.47620773299991],[22.197435379000183,-33.479648589999954],[22.046663284000147,-33.48831939699983],[21.821697235000045,-33.49881744399988],[21.760358810000184,-33.44584655799997],[21.681882858000165,-33.438774108999894],[21.674648285000103,-33.43941116299993],[21.613756180000053,-33.42699050899995],[21.561912537000126,-33.453716277999945],[21.56402587900004,-33.45589828499993],[21.5698471070001,-33.464859008999895],[21.569126129000153,-33.46725845299994],[21.49312210100004,-33.46449279799998],[21.496410370000035,-33.46849822999991],[21.511993408000137,-33.473060607999855],[21.606601715000068,-33.514198302999944],[21.513328552000075,-33.56675720199996],[21.463525772000025,-33.5947036739999],[21.302585602000022,-33.60488510099998],[21.517396927,-33.58380889899996],[21.62049102800006,-33.65810775799997],[21.661785126000098,-33.7243423459999],[21.688760757000182,-33.730087279999964],[21.720790863000047,-33.73759841899988],[21.72102356000005,-33.73758697499994],[21.75108337400013,-33.673732757999915],[21.994020462000094,-33.69606780999993],[22.00679779100011,-33.70055770899995],[22.0071544650001,-33.69773483299991],[21.962570190000065,-33.64371490499997],[21.77438736000005,-33.66377258299997],[21.688396454000156,-33.625423430999945],[21.68531990100007,-33.50420761099991],[21.914485931000172,-33.53492355299994],[22.029062270999987,-33.51764678999996],[22.13336563100006,-33.62580490099998],[22.22358131400017,-33.540306090999934],[22.41471862800006,-33.56373596199984],[22.444400787000063,-33.54417800899995],[22.322053909000147,-33.5116958619999],[22.25762176500018,-33.46854400599989],[22.26362228400012,-33.456951140999934],[22.271440506000033,-33.438644408999835],[22.273843765000038,-33.43687820399998],[22.298444748000065,-33.412212371999885]]],[[[21.629728317000115,-33.3476219179999],[21.620159149000074,-33.345989226999905],[21.522659302000136,-33.365833281999926],[21.56378746000013,-33.389324187999875],[21.75631523100003,-33.36164855999988],[21.74386596700009,-33.353107451999904],[21.629728317000115,-33.3476219179999]]],[[[22.861640930000135,-33.40334320099993],[22.790967941000133,-33.36912155199997],[22.541143417000114,-33.354709624999884],[22.480758667000032,-33.311401366999974],[22.36598587000003,-33.28720092799995],[22.559194565000155,-33.36430358899992],[22.770185471000104,-33.370143889999895],[22.861640930000135,-33.40334320099993]]],[[[23.171007156000087,-33.28066635099998],[23.136953354000127,-33.26882934599996],[23.14007759100008,-33.27584075899995],[23.154291153000145,-33.27613067599998],[23.171007156000087,-33.28066635099998]]],[[[23.080059052000024,-33.27307891799995],[22.89963913000014,-33.281730651999965],[22.939804077000133,-33.28049850499997],[23.06766700700007,-33.2823829649999],[23.08231544500012,-33.28621673599997],[23.080059052000024,-33.27307891799995]]],[[[22.09833717300006,-33.26586914099994],[21.62708282500006,-33.295806884999934],[21.498758316000192,-33.32812118499987],[21.508626938000134,-33.34086227399996],[21.680961609000065,-33.30394363399995],[22.0241661070001,-33.28862762499995],[22.104618073000154,-33.28346252399996],[22.128234863000046,-33.28697967499994],[22.168607711999982,-33.276451110999915],[22.16839790300014,-33.27338409399988],[22.09833717300006,-33.26586914099994]]],[[[23.382722855000054,-33.20416259799998],[23.46594619800004,-33.23509597799989],[23.467905045,-33.237033843999825],[23.426118851000126,-33.21022415199997],[23.382722855000054,-33.20416259799998]]],[[[23.087944031000063,-33.292274474999886],[22.76608657800017,-33.29518127399996],[22.563146591000077,-33.27561950699993],[22.51502227800006,-33.24422454799998],[22.24511337300015,-33.206203460999916],[22.094491959000038,-33.23376846299993],[22.082466125000167,-33.235580443999936],[22.042398453000146,-33.237930297999924],[22.030044556000178,-33.23942184399988],[21.984117508000168,-33.24660873399995],[21.96972656200012,-33.24791717499994],[21.90445137000006,-33.25024032599998],[21.87367820700001,-33.249919890999934],[21.76122093200013,-33.254329680999945],[21.75218963599997,-33.25495529199992],[21.56135749800012,-33.255542754999965],[21.597351074000187,-33.2614517209999],[21.556921005000163,-33.26987457299998],[21.52314186100017,-33.274475097999925],[21.49814224199997,-33.28274536099997],[21.496047974000078,-33.28455734299996],[21.49616432200014,-33.28579330399998],[21.52472305300006,-33.28511810299989],[21.53863716100011,-33.28364944499998],[21.604835510000044,-33.274738311999954],[21.61737632800009,-33.274169921999885],[21.617406845000062,-33.274169921999885],[21.622434616000135,-33.27414703399995],[21.749530792000087,-33.26080703699995],[22.12146186800004,-33.254226684999935],[22.121559143000184,-33.25371169999988],[22.318607330000134,-33.233516692999956],[22.55550766000016,-33.28293228099989],[22.807653427000105,-33.303833007999856],[22.811277390000043,-33.30715560899995],[22.891050339000117,-33.30347824099988],[22.89558410600017,-33.303558349999946],[23.08405494700014,-33.294635772999925],[23.08748245200013,-33.29467391999998],[23.087944031000063,-33.292274474999886]]],[[[24.07289505000017,-33.22549056999998],[24.027587891,-33.28084182699996],[24.242116928000087,-33.33784103399995],[24.218574524000132,-33.26463317899987],[24.07289505000017,-33.22549056999998]]],[[[23.52957534800015,-33.1677780149999],[23.503786087000037,-33.16166686999992],[23.28031730700002,-33.21391296399992],[23.52957534800015,-33.1677780149999]]],[[[24.501014709000174,-33.24581909199992],[24.460987091000106,-33.19628524799998],[24.26026916500018,-33.15716552699996],[24.237325668000096,-33.20304870599995],[24.418346405000023,-33.27397918699995],[24.50060081500004,-33.26870346099997],[24.609500885000102,-33.274936675999925],[24.501014709000174,-33.24581909199992]]],[[[24.280303955000136,-33.14144515999993],[24.187868117999983,-33.20354461699992],[23.958671570000035,-33.17131805399998],[23.955286026000067,-33.17033386199989],[23.842914581000116,-33.14305877699985],[23.917873383000085,-33.18558502199994],[24.2354640960001,-33.20820999099993],[24.280303955000136,-33.14144515999993]]],[[[23.59218025200005,-33.12965011599994],[23.52727127100019,-33.10121917699996],[23.441492081000035,-33.13287353499993],[23.45914650000003,-33.13148498499993],[23.573228836,-33.124851226999965],[23.59218025200005,-33.12965011599994]]],[[[24.10127449000015,-33.1196327209999],[23.760618210000132,-33.038249968999935],[23.668531418000157,-33.03549575799997],[23.44884109500009,-33.07607650799986],[23.490203857000097,-33.076190947999976],[23.580530167000063,-33.10398864699994],[23.6006984710001,-33.15507888799988],[23.69979858400012,-33.173160552999946],[23.840955734000147,-33.13989639299996],[23.947362900000144,-33.100830077999944],[24.10127449000015,-33.1196327209999]],[[23.648973465000097,-33.09937667799994],[23.714302063000105,-33.05720138499987],[23.796806334999985,-33.09440994299996],[23.71754264800012,-33.09647369399988],[23.750398636000057,-33.10547637899998],[23.79335212700005,-33.12023925799991],[23.665847778000114,-33.116619109999874],[23.666730881000092,-33.114112853999984],[23.659788132000074,-33.100406646999886],[23.648973465000097,-33.09937667799994]]],[[[26.83124160800014,-32.55907821699992],[26.78749465900006,-32.531749724999884],[26.646099091000053,-32.550685882999915],[26.616403580000167,-32.68450927699996],[26.73624801600016,-32.74461364699994],[26.779607773000123,-32.694576262999874],[26.720390320000092,-32.62932968099989],[26.83124160800014,-32.55907821699992]]],[[[24.570779800000025,-33.20522308299991],[24.84134864800012,-33.25196838399995],[24.834619522000082,-33.315895080999894],[24.617908478,-33.27744674699994],[24.49816513100012,-33.301841735999915],[24.480827332000104,-33.29525375399993],[24.439147949000073,-33.287723540999934],[24.38503646900017,-33.33288574199992],[24.66020393400015,-33.36429595899989],[24.82632064800015,-33.34632873499993],[24.87133789100011,-33.498989104999964],[24.71630668600011,-33.49513626099997],[24.638523102000192,-33.44967651399992],[24.545629501000178,-33.504402160999916],[24.293264389000115,-33.54623413099989],[24.395618439000145,-33.57910156299994],[24.657491684000092,-33.58325195299989],[24.646986008,-33.64080810499996],[24.466756821000047,-33.69223403899997],[24.45343017600004,-33.648399352999945],[23.994297028,-33.54283523599997],[23.933725357000185,-33.512134551999964],[23.757741928000144,-33.50834655799997],[23.718702316000133,-33.56210327099984],[23.716894150000087,-33.57447433499988],[23.72185897800017,-33.57296371499996],[23.725109100000168,-33.56579208399995],[23.722484588999976,-33.5511054989999],[23.829004288000192,-33.5260620119999],[23.867923737000126,-33.57634353599991],[23.85606765700004,-33.58581542999997],[23.85732078600006,-33.58700942999991],[23.867456436000055,-33.586170196999944],[23.865892410000185,-33.58809280399993],[23.86901092500017,-33.592380523999964],[23.869585037000093,-33.587635039999896],[23.903484344000162,-33.57958221399991],[23.906766891000018,-33.575027465999824],[23.93227195700001,-33.55270004299996],[24.116369247000023,-33.64416503899997],[24.112440109000033,-33.63420867899998],[24.113418579000154,-33.63262557999997],[24.111227036000116,-33.63196182299998],[24.100421906000122,-33.62925338699995],[24.14341354400011,-33.64511871299993],[24.1487045290001,-33.64888381999998],[24.15341758700015,-33.65106964099988],[24.152837753000142,-33.649307250999925],[24.18228912400008,-33.659713744999976],[24.181680679000067,-33.66114807099996],[24.18914604200006,-33.66410827599992],[24.18732070900012,-33.66180801399997],[24.22735214200003,-33.675796508999895],[24.2268943790001,-33.67734527599998],[24.230182648000095,-33.67849731399997],[24.23053932200014,-33.67693710299994],[24.235738754000067,-33.67905807499994],[24.236047745000178,-33.68054962199989],[24.242624283000055,-33.68289565999993],[24.24222564700011,-33.6812820429999],[24.26275062600007,-33.66664123499993],[24.354848862000097,-33.65906143199987],[24.33266830399998,-33.795242309999935],[24.251775742000063,-33.8585166929999],[23.913433075000057,-33.766662597999925],[23.902320862000124,-33.75227355999988],[23.889308929000094,-33.74784851099997],[23.898252487000036,-33.757900237999934],[24.22220802300012,-33.862663268999825],[24.334825516000137,-33.805103301999964],[24.41142845200011,-33.703956603999984],[24.49196052600007,-33.6943244929999],[24.589143753000087,-33.77654266399992],[24.694437027000106,-33.81774902299992],[24.69855690000003,-33.8203811649999],[24.70507621800016,-33.82450103799994],[24.715154648,-33.8301849369999],[24.715726852000103,-33.83044815099993],[24.76682472200008,-33.85438919099994],[24.780401230000052,-33.86438369799998],[24.799270630000024,-33.86732482899998],[24.81456565899998,-33.88309097299998],[24.821527481000146,-33.89009475699993],[24.827974319000077,-33.89627838099989],[24.836753844999976,-33.90590667699996],[24.8412666320001,-33.905826568999885],[24.840824127000133,-33.92236328099989],[24.851247787000034,-33.934055327999886],[24.856163025000114,-33.93904113799988],[24.86909675600009,-33.95788955699993],[24.879081726000038,-33.96917343099983],[24.875875473000065,-33.97913742099985],[24.880788803000144,-33.97872924799998],[24.892896652,-33.981910705999894],[24.884754181000176,-33.985382079999965],[24.89700126600019,-34.00074768099989],[24.900592804000155,-34.00534820599995],[24.903152466,-34.00818633999995],[24.904352188000132,-34.00940322899993],[24.907432556000117,-34.01225280799997],[24.91032409700017,-34.014823913999976],[24.911218643000097,-34.01562118499987],[24.914152145000173,-34.0182495119999],[24.909149170000035,-34.03139877299998],[24.91890525800011,-34.0403518679999],[24.91103172300012,-34.043201446999944],[24.881088257000044,-34.03655242899998],[24.880847931000062,-34.03841018699984],[24.86712837200008,-34.03566360499997],[24.86187553400015,-34.03425979599996],[24.883157730000164,-34.08523559599996],[24.806438446000186,-34.131961822999926],[24.68908500700013,-34.09460449199992],[24.695186615000125,-34.09721374499992],[24.722419739000088,-34.11079025299995],[24.742523193000125,-34.11966705299989],[24.796035766999978,-34.14691543599997],[24.60833740200019,-34.17760086099997],[24.454837799000074,-34.146434783999894],[24.592817307000075,-34.18655013999995],[24.648122787000034,-34.16998290999982],[24.82723236099997,-34.21057510399987],[24.84307861300016,-34.14149475099998],[24.921972149999988,-34.08014131599998],[24.938507080000136,-34.00170135499991],[25.01470947300004,-33.96236801099985],[25.183839798000122,-33.95659255999993],[25.408071518000156,-34.03295898399989],[25.592010498000036,-34.04970931999992],[25.681768417000114,-34.019828795999956],[25.61320114100016,-33.94995117199994],[25.632576740000047,-33.864176192999935],[25.718013763000044,-33.77531433099989],[25.915822983000055,-33.69128036499984],[26.157712936000166,-33.696273803999816],[26.32990646400009,-33.751491546999944],[26.50408363300005,-33.761718749999886],[26.735059738000075,-33.65375900299995],[27.1134452820001,-33.51981353799994],[27.17264556900011,-33.46629714999989],[27.608816147000027,-33.21809005699993],[27.72726821900011,-33.12176132199994],[27.90809249900002,-33.0391311649999],[27.96688652000006,-32.974201201999904],[28.096036911000056,-32.890960692999954],[28.116903305000108,-32.830829619999975],[28.348260880000055,-32.703769683999894],[28.176179886000057,-32.70287322999991],[28.135890961000143,-32.80305099499998],[27.995456696000133,-32.796558379999965],[27.94686889600007,-32.8410415649999],[27.826925278000033,-32.78471755999993],[27.765813828000034,-32.89205932599998],[27.703741074000106,-32.91531753499987],[27.623128891000135,-32.88071823099989],[27.462511063000022,-32.90019607499988],[27.347307205000163,-32.96468353299997],[27.21154594400008,-32.93361663799993],[27.235322952000104,-32.85541534399994],[27.106060028000115,-32.87499618499993],[27.073297501000127,-32.93493270899995],[26.97377395600006,-32.97665405299989],[26.732110977000104,-32.886230468999884],[26.712511063000193,-32.77275466899988],[26.561105727999973,-32.73834228499993],[26.508434296000075,-32.7688026429999],[26.405721664,-32.70078659099994],[26.384454727000104,-32.64818954499992],[26.265756607000128,-32.57955551099997],[26.23803710900006,-32.65710067699996],[26.12201118500019,-32.63359832799995],[26.051673889000142,-32.471290587999874],[26.150175095000066,-32.43040466299993],[26.058147430000076,-32.410476684999935],[25.903541565000126,-32.3889312739999],[25.807477951000067,-32.427345275999926],[25.78728485100015,-32.44745635999993],[25.70494842500011,-32.542507171999944],[25.608745575000114,-32.45172119099993],[25.665311813000073,-32.31787872299992],[25.565221786000052,-32.18080139199998],[25.46768760700013,-32.20686340299994],[25.34222602800014,-32.21533966099997],[25.267490387000066,-32.18900680499996],[25.213876724000045,-32.12009048499988],[25.060819626000068,-32.17147064199992],[24.992900848000147,-32.083099364999896],[25.004936218000125,-32.03449630699998],[24.92877578700012,-31.95834350599995],[24.95812797500008,-31.87842559799992],[24.86871910100018,-31.759523391999892],[24.953153610000186,-31.710853576999966],[24.91647911100017,-31.606994628999928],[24.773849487000177,-31.719572066999945],[24.74662208600006,-31.829912185999945],[24.672927856000058,-31.893291472999977],[24.567455292000147,-31.93611907999997],[24.509071350000056,-32.04661560099987],[24.639039993000097,-32.113220214999956],[24.734994888000074,-32.21139144899996],[24.70979881300019,-32.28734207199983],[24.856891632000043,-32.335357665999936],[25.16677665700007,-32.35554885899995],[25.296495438000193,-32.577808379999965],[25.370929718000127,-32.67047119099993],[25.345390320000092,-32.76502990699987],[25.365430832000072,-32.88137817399996],[25.247371674000135,-32.86028671299994],[25.19252586400006,-32.76493072499994],[25.141975403,-32.76839065599995],[25.09358978300014,-32.85869216899988],[24.772306442000115,-32.77899932899993],[24.7246456150001,-32.84052276599988],[24.501258850000056,-32.86373138399995],[24.447792053000114,-33.008819579999965],[24.343069077,-33.044342040999936],[24.453468323000095,-33.163822173999904],[24.570779800000025,-33.20522308299991]],[[25.456676483000138,-33.326148986999954],[25.261152267000057,-33.280052184999874],[25.443073273000095,-33.23091125499997],[25.72458457900018,-33.240028380999945],[25.83837318400009,-33.26713180499996],[25.797784805000106,-33.36700057999997],[25.456676483000138,-33.326148986999954]],[[26.365535736000027,-33.41809463499993],[26.205894470000032,-33.40809631299993],[26.317213058000164,-33.33789062499994],[26.358182907000128,-33.27828216599988],[26.55860137900015,-33.349666594999974],[26.494970321999972,-33.38272094699994],[26.316923141000075,-33.34236144999994],[26.365535736000027,-33.41809463499993]],[[25.39438056900019,-33.86073684699994],[25.520879745000173,-33.89468765299989],[25.66413116500007,-33.99034881599994],[25.573287964000087,-34.00666427599998],[25.368154526000183,-33.99442291299988],[25.30413818400018,-33.93368530299995],[25.102504730000135,-33.8885345459999],[24.910839081000177,-33.86886215199996],[24.917877197000053,-33.80202865599995],[24.85407447800003,-33.710380553999926],[24.72214317300012,-33.68162536599988],[24.677848816000107,-33.520904540999936],[24.855646133000107,-33.556060790999936],[24.953151703000117,-33.55442810099993],[25.338373184000034,-33.606113433999894],[25.456968307000125,-33.68552780199991],[25.29706955000006,-33.70845413199987],[25.26632118200007,-33.83009338399995],[25.39438056900019,-33.86073684699994]],[[24.674650192000115,-33.80604553199993],[24.67627143900006,-33.80724334699994],[24.668481827,-33.80221939099994],[24.670642853000118,-33.80350875899984],[24.674650192000115,-33.80604553199993]]]]},"properties":{"objectid":12,"eco_name":"Albany thickets","biome_num":12,"biome_name":"Mediterranean Forests, Woodlands & Scrub","realm":"Afrotropic","eco_biome_":"AF12","nnh":3,"eco_id":88,"shape_leng":137.049799551,"shape_area":3.54619015837,"nnh_name":"Nature Could Recover","color":"#FF7F7E","color_bio":"#FE0000","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":36817.892581021464,"percentage":1.1145474762202205}}, + {"type":"Feature","geometry":null,"properties":{"objectid":15,"eco_name":"Aldabra Island xeric scrub","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Afrotropic","eco_biome_":"AF13","nnh":1,"eco_id":91,"shape_leng":1.52739876935,"shape_area":0.0130979403194,"nnh_name":"Half Protected","color":"#FA647F","color_bio":"#CC6767","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":160.13146038009643,"percentage":0.0006069682956877756}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-176.28170686299993,51.86391706600011],[-176.42435228999997,51.850617052000075],[-176.40374317299998,51.751244341000074],[-176.26356138799994,51.781635263000055],[-176.28170686299993,51.86391706600011]]],[[[-178.0906520119999,51.919398672],[-178.2278337909999,51.873525937000124],[-177.95029744899995,51.765680530000054],[-177.95071559299998,51.6392169130001],[-177.71990659499994,51.8157987300001],[-177.92433384399993,51.857516882000084],[-177.95211567199993,51.91534414300003],[-178.0906520119999,51.919398672]]],[[[-177.14396128199996,51.94344423000001],[-177.20568850699993,51.820635150000044],[-177.45758844299996,51.75405331400009],[-177.27513390799996,51.68050789100005],[-177.14867030199994,51.70704426500015],[-177.13699760799994,51.81448970400015],[-177.04510673999994,51.89860788400017],[-177.14396128199996,51.94344423000001]]],[[[-176.57936285799997,52.00302729500015],[-176.62960683299997,51.96261701200012],[-176.77404317299997,51.965889721999986],[-176.79209766099999,51.78554429300016],[-176.86581579999998,51.68219884600012],[-176.581897668,51.69004433100008],[-176.53047951299993,51.74628069200003],[-176.42421589499997,51.74491706800018],[-176.4264886489999,51.83627160000009],[-176.62650680399997,51.86418975400011],[-176.5448795629999,51.9272443000001],[-176.57936285799997,52.00302729500015]]],[[[179.7044177460001,52.00487541500007],[179.5828417670001,52.01683940000015],[179.48244879600009,51.98283239500006],[179.52185281300012,51.89676341300009],[179.61434880100023,51.87177042600007],[179.73475676900011,51.90760443300019],[179.7044177460001,52.00487541500007]]],[[[-176.13443423599998,52.11255341000003],[-176.21187057199995,52.06553522600012],[-176.15885237799992,51.996526151000126],[-176.02185240099996,51.984844350000174],[-175.98157969299996,52.02856253100015],[-176.13443423599998,52.11255341000003]]],[[[177.6672411390001,52.07627218400012],[177.5633811480003,52.12195716500014],[177.4974261970001,51.99332618000011],[177.34556223800007,51.96300316900016],[177.2004082860003,51.89474416400009],[177.2934092810002,51.845608183000195],[177.40952123300008,51.93081918000013],[177.53820819200007,51.97889518600016],[177.6672411390001,52.07627218400012]]],[[[-173.5190710459999,52.15220825500006],[-173.89008007399994,52.14154457700005],[-173.9301709499999,52.056371856000055],[-173.45135284099996,52.0485082780001],[-173.5190710459999,52.15220825500006]]],[[[-172.4291894689999,52.38708108000009],[-172.57722579999998,52.35019924900013],[-172.608953035,52.253017440000065],[-172.41141671199995,52.280844733000094],[-172.30256219799995,52.330644738000046],[-172.4291894689999,52.38708108000009]]],[[[-174.14316193599998,52.41597178000006],[-174.33093461899998,52.37018994700003],[-174.44897091699994,52.21954450000004],[-174.56499815599994,52.17227176500012],[-174.609798128,52.110880859000076],[-174.77139809399992,52.08454448100008],[-174.92006171399993,52.109271733000185],[-174.9878071409999,52.05961718700007],[-174.78320716599993,52.03228994200009],[-174.4442344999999,52.04844452500009],[-174.32726181699994,52.12261725500019],[-174.21845273299996,52.09430818100003],[-174.09018913099996,52.13911728000005],[-173.9852164769999,52.31759908700019],[-174.14316193599998,52.41597178000006]]],[[[173.70772689600028,52.47737470100009],[173.62386890900007,52.50694568700004],[173.5300909460002,52.449965687000144],[173.7256819260001,52.35657672500008],[173.70772689600028,52.47737470100009]]],[[[-170.6626080119999,52.69831761700016],[-170.81796251499992,52.63627215100013],[-170.78325339899993,52.54207216700013],[-170.5799261999999,52.68202672000007],[-170.6626080119999,52.69831761700016]]],[[[-169.773526386,52.894454065000104],[-169.8870354459999,52.85011769300007],[-169.73909907699993,52.77842681200019],[-169.6763082079999,52.87111771800005],[-169.773526386,52.894454065000104]]],[[[173.1830614700001,52.95483273700006],[173.10723489400004,52.99322554700018],[172.74655197400034,53.010747507000076],[172.62906300600002,53.001321496000116],[172.6403580250003,52.92543851100015],[172.75422201100002,52.87748753200003],[172.76335249700003,52.823654011000144],[172.90361400700033,52.76166456800007],[172.99845797700016,52.79697657100013],[173.1668849360001,52.79522658900015],[173.42166786200005,52.84547460600004],[173.29538486900015,52.92698457800009],[173.1830614700001,52.95483273700006]]],[[[-167.96652883999994,53.55539706300004],[-168.23388135699992,53.528336000000195],[-168.40822674999995,53.4195269010001],[-168.38387215199995,53.26126328600003],[-168.55571758099993,53.254445084000054],[-168.7664629829999,53.18024506600017],[-168.75970840299996,53.08146326000008],[-168.85731745699997,53.013681438000106],[-168.86289015899993,52.94099053700012],[-168.64761747199998,52.977163288000156],[-168.4559357059999,53.05740875600003],[-168.27076306799992,53.24280875700009],[-168.12438127999997,53.27457240800004],[-167.8423449919999,53.38649061300015],[-167.78411776799993,53.50104515300012],[-167.96652883999994,53.55539706300004]]],[[[-166.11863628099994,53.854590783000106],[-166.30843623299998,53.78733622000016],[-166.23833621599996,53.71149987400008],[-166.13044533799993,53.7691544270001],[-166.11863628099994,53.854590783000106]]],[[[-166.65733627699998,54.01374524000005],[-166.89076351399996,53.98970884800008],[-167.070454377,53.92796337600004],[-167.14930887599996,53.82874519600011],[-166.78723615799993,53.73455434500005],[-167.02239975799995,53.71546340800006],[-167.09139971899992,53.633436135000125],[-167.17669964799992,53.461917962000086],[-167.26791782399997,53.47811794800003],[-167.5122904909999,53.39301792800012],[-167.70765409999996,53.38283608500012],[-167.81392678999995,53.32212698800009],[-167.622190424,53.250363384000195],[-167.13415418499991,53.426445245000195],[-166.93199968099992,53.473436174000085],[-166.83870877299998,53.447490735000144],[-166.6740724459999,53.48732711600013],[-166.56271794199992,53.568990757000165],[-166.55549068899992,53.62097257000016],[-166.27491801899993,53.68725441700013],[-166.37923624799993,53.84656347600003],[-166.23652718699992,53.88134531000003],[-166.264536309,53.97755438600018],[-166.44295444499994,53.90459982500005],[-166.57786350999993,53.8805907200001],[-166.64679988099996,53.92378161400006],[-166.65733627699998,54.01374524000005]]],[[[-165.92945462599997,54.22127258400013],[-166.11226365599995,54.12252711600007],[-166.04798181599995,54.04477258800006],[-165.71589096199992,54.090363535999984],[-165.72978189099996,54.14721807300009],[-165.92945462599997,54.22127258400013]]],[[[-165.47847288699998,54.2953362720001],[-165.6052455999999,54.29421807400013],[-165.68413648299997,54.24990897700013],[-165.54923644399994,54.112199920000194],[-165.48133647899994,54.179963556000075],[-165.55327285699994,54.23959990500015],[-165.47847288699998,54.2953362720001]]],[[[-170.11746444299996,57.242444385000056],[-170.42048255399993,57.190144350000025],[-170.26180073799995,57.139489833000084],[-170.11746444299996,57.242444385000056]]]]},"properties":{"objectid":16,"eco_name":"Aleutian Islands tundra","biome_num":11,"biome_name":"Tundra","realm":"Nearctic","eco_biome_":"NE11","nnh":1,"eco_id":406,"shape_leng":60.6210825778,"shape_area":1.63927284991,"nnh_name":"Half Protected","color":"#4DA6A2","color_bio":"#9ED7C2","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":12257.10174655897,"percentage":0.14343918899454147}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[81.42543764100009,47.477028012],[81.27381856700003,47.46942914700003],[81.34683952900008,47.383776657000055],[81.55853254000016,47.37555635700011],[81.66578653500017,47.3209670330001],[81.90682257800012,47.31036610500013],[82.157096652,47.18633422200014],[82.37394755100019,47.19883549600013],[82.44435855500006,47.2239745],[82.70680264900011,47.23132559600003],[82.83883656800009,47.18134531400017],[83.08488465300019,47.188852314000144],[83.62756359900015,46.996827103000044],[83.944816623,46.94673584300011],[83.99751264200012,46.991627138000126],[83.81316357800006,47.1111468740001],[83.80799865000012,47.248636741000155],[83.7148205520001,47.260465786000054],[83.45252951200013,47.235944696000104],[83.34301760000011,47.259897828000135],[83.24765752500008,47.338217326000176],[83.0111386580001,47.33096630900019],[82.80776250600013,47.29116685300016],[82.37551865500012,47.32741003500007],[81.97445665800012,47.41794867100003],[81.51605255200002,47.45477690900009],[81.42543764100009,47.477028012]]],[[[85.65242756000009,47.4408257340001],[85.54591352000011,47.44147885200016],[85.42407953900005,47.49322939299998],[85.18900252700013,47.48578609499998],[84.85485862700011,47.391196653000065],[84.74819153300012,47.34070138599998],[84.73203256500017,47.233946618000175],[84.91467255900005,47.13948608900017],[84.91177359400007,47.096055928000055],[84.71853652700014,46.977036256000076],[84.63805366000008,46.9547281560001],[84.64483663200014,46.79191236900016],[84.69910459300013,46.717288788000076],[84.84156761100019,46.676581572000146],[84.99760461699998,46.69015086700011],[85.08579263200005,46.771560270000066],[85.30966957800007,46.852966487000174],[85.71670552600006,46.880104742000185],[85.79811861600007,46.961514145000194],[85.87274152700007,47.131113071000186],[85.85238657800011,47.2532258330001],[85.79133564500006,47.35498750200003],[85.65242756000009,47.4408257340001]]],[[[90.83295452100009,46.31451235600008],[90.86763766200016,46.361585459000025],[91.11715652700019,46.48994273900007],[91.21002952300017,46.646372690000135],[91.10615561400004,46.93584892500007],[91.02235451900009,47.24849156700009],[91.11788960800016,47.23852364000015],[91.30590055800019,47.06521773300017],[91.47364758600008,46.88011580600005],[91.64641554200006,46.72267885400004],[91.68926953100015,46.52350907700003],[91.8512875290001,46.397062535000146],[91.85466761500015,46.25412912500008],[91.96634658400018,46.26629797200019],[92.1723256520001,46.40083556500008],[92.32334860500009,46.393568621999975],[92.40898164800012,46.35699234400005],[92.53221859100006,46.46043290800009],[92.72018461400017,46.41117665400009],[92.98567955300007,46.23148893400008],[93.35195162300005,46.11150064900016],[93.44093357200006,46.15916182700016],[93.24157754900006,46.350458315000026],[92.83879860200011,46.54433307700009],[92.57355461700018,46.656840681],[92.44080354300007,46.73138798700006],[92.08870661300006,46.87332545900017],[91.96115164800005,46.99284821300017],[91.80226865000014,47.181535414999985],[91.7853546400001,47.291808069000126],[91.83687551700012,47.50843416600014],[91.66533651499998,47.66430051700013],[91.56739766500004,47.706052788000136],[91.4392395380001,47.71189262800016],[91.33013163400011,47.52672230500008],[91.26760062500017,47.50776646300005],[90.95687056600008,47.57308965200008],[90.84216355000007,47.55345152300015],[90.78857452300014,47.447895032000076],[90.82719464400003,47.32656430100013],[90.78301966800018,47.300200030000155],[90.63762650400014,47.51057825600009],[90.40234363200017,47.64857237800004],[90.19307751700018,47.66941951300004],[89.9590455600001,47.64188512800007],[89.6974795540001,47.32525119200011],[89.61473055600004,47.09355275700017],[89.73523751300002,46.94079290600013],[89.90864551100009,46.92661676100005],[90.09457355800015,46.73324893700004],[90.25068650500009,46.6999548440001],[90.31126352500013,46.71969892000004],[90.40748559500008,46.63546649300008],[90.42350760300008,46.48460581400013],[90.5854186470001,46.35462345000013],[90.83295452100009,46.31451235600008]]],[[[91.01467854000009,48.07444464100007],[90.99916062000011,48.17791521300012],[90.88534560600016,48.2141287230001],[90.81809256800005,48.04857624400012],[90.9163896610001,47.820940517999986],[91.03020450700018,47.78990015100004],[91.14919266400011,47.81059439900008],[91.2216185100001,47.872675971000035],[91.24231762000016,48.002013934000104],[91.13367457600009,48.14169801500003],[91.01467854000009,48.07444464100007]]],[[[90.2256856350001,48.00755705400013],[90.27342962600011,48.05042344800006],[90.24374360700011,48.13589589400004],[90.0676425040001,48.250714892000076],[89.74096654400006,48.346113691000085],[89.67893962200014,48.348387869000135],[89.56613965700012,48.24910204600019],[89.59696963800008,48.18921049800008],[89.73297155000006,48.12251804100009],[90.1080245010001,48.023071119000065],[90.2256856350001,48.00755705400013]]],[[[88.52365151300006,48.52584130900004],[88.15633354900007,48.62413538400011],[87.9856106100001,48.61379043900013],[87.97165658500006,48.47080992300005],[88.08237465300004,48.490067010000075],[88.10162352600014,48.40823348400005],[88.31343053100005,48.34083879100007],[88.37120062000002,48.27344326100007],[88.35675860100014,48.19160939900007],[88.4771046250001,48.09533351800013],[88.5974506500001,48.1290291040001],[88.6648406490001,48.06644847300015],[88.73223165300004,47.9027780670001],[88.84776261000007,47.926848379000035],[89.14621754000018,47.820944541000074],[89.2473066450001,47.91240636000009],[89.47200753200013,48.033543133000194],[89.36175566500003,48.184384366000074],[89.21689559100008,48.2671642090001],[89.15481552800014,48.3344177510001],[89.06686354800019,48.55688167500006],[88.93235763900003,48.59826799300009],[88.87545055100014,48.49479708600012],[88.87027757600015,48.40684845800007],[88.78749857000008,48.37063511600013],[88.69954659000007,48.44306180000018],[88.52365151300006,48.52584130900004]]],[[[91.25184650200003,48.605737107000095],[91.10787960400006,48.65057157200005],[91.01036856600018,48.60747333400013],[90.81159257000013,48.598542081],[90.79304459100018,48.52261025300004],[90.91608456000012,48.49364105400019],[91.26322158300019,48.47824098300009],[91.25184650200003,48.605737107000095]]],[[[90.54285450400005,48.41853635200005],[90.61334966300006,48.5637868550001],[90.51190952400009,48.62272051900004],[90.22222156200007,48.652307799000084],[90.10460652900008,48.570428004000064],[90.23384055600008,48.47026794900012],[90.49789464600008,48.405486231000054],[90.54285450400005,48.41853635200005]]],[[[89.07004565300008,49.05117574899998],[89.07530261500006,49.118658452000034],[88.75999452800005,49.19239405400003],[88.6246485850001,49.190036225000085],[88.51090951100008,49.12517437600019],[88.53395052500008,49.06950579800008],[89.01884463000005,49.04027759900015],[89.07004565300008,49.05117574899998]]],[[[87.12245160800006,49.129054527000164],[87.0362775960001,49.19712429800006],[86.91137651000008,49.19815426600019],[86.76521254700009,49.16143381900014],[86.52593955400016,49.20958349400013],[86.40099354100005,49.27882404900009],[86.18472250100018,49.29678428800014],[85.90998852500007,49.22266345400004],[85.66546661600017,49.21451138200018],[85.44154357000008,49.26357300800004],[85.12975353500002,49.20756127600015],[84.88564250700011,49.21746466200011],[84.74122650700008,49.168810899000164],[84.4722515690001,49.19584220200005],[84.26181751899998,49.09758232400003],[84.34024849600013,49.03623048100013],[84.5363766480001,49.06017187900005],[84.76300855800014,49.01672948000015],[84.88923649999998,48.86264763600008],[84.88336162400009,48.792068156000084],[84.97630351900006,48.72301736700018],[85.40709663000007,48.727926480000065],[85.55075859500016,48.630796483000154],[85.86573760800007,48.62927751400014],[86.08406053800007,48.68796810300012],[86.20503252300017,48.695227167000155],[86.44106255800006,48.627908414000046],[86.75134250900004,48.66946186700011],[87.02638259200012,48.77881586400014],[87.13502463000015,48.8439975660001],[87.16979259700014,48.97871503500011],[87.12245160800006,49.129054527000164]]],[[[89.62517558100012,49.08937694400004],[89.69342053400015,49.17059289200006],[89.63228561400018,49.30690845400005],[89.49660456200013,49.382326472000045],[89.37354263300011,49.34872593600011],[89.32131952000003,49.26347007900017],[89.62517558100012,49.08937694400004]]],[[[91.67946656000004,49.31810852000007],[91.76047564300012,49.48812067400013],[91.72820263300002,49.70527835100006],[91.59623761400019,49.7917514290001],[91.48608364800015,49.93648611000009],[91.38357565500007,49.94737738700019],[91.25151860200009,49.79747325200003],[91.21960450600005,49.699785020000036],[91.23226151500006,49.583706725000184],[91.31933557500008,49.4505560020001],[91.33806661400007,49.36097910500007],[91.45838162600012,49.326947740000094],[91.67946656000004,49.31810852000007]]],[[[87.76466364200007,50.544320606000156],[87.36151857400012,50.59199016600013],[87.25910965400016,50.54289048600009],[87.17913858700018,50.45550629600007],[87.10575854500007,50.30498709600005],[87.18125954300012,50.12377554600005],[87.02208753700012,50.06947992400006],[86.81393453900012,49.989579767000066],[86.7658006210001,49.88848965600005],[86.7880096470002,49.799632430000145],[86.57738465800003,49.78140531100007],[85.96972651700008,49.75536173200004],[85.61381565300019,49.816130530000066],[85.36206854300008,49.981069788000184],[85.28394350600007,50.07655609400001],[85.20581863600017,50.24149434700013],[84.86726350800006,50.415115748000176],[84.60684163200006,50.475880523000114],[84.2769696530001,50.51060607700009],[84.21482052300007,50.43354386500016],[84.0118106600001,50.34355877000007],[83.91220850500014,50.339266565000116],[83.71465257900013,50.38836239000011],[83.51653255100018,50.333857388000126],[83.53687258000014,50.209145733000014],[83.69458764400002,50.138312951000046],[83.70253754400005,50.035192408000114],[83.8137125930001,49.98909579600007],[83.97113764300019,50.0355134350001],[84.13353752000006,50.16863331200011],[84.32396664900006,50.115115531000015],[84.63844258100016,50.104804449000085],[84.73454260900019,50.00521302200008],[84.75118253100015,49.87484023000013],[84.85768165200005,49.7588298280001],[84.99820761100017,49.66848867000016],[85.12539662200004,49.5732955630001],[85.31217157700019,49.537868108000055],[85.5809936280001,49.418115690000036],[85.86596660200019,49.4368769030001],[86.02118654100019,49.40413467500014],[86.28608653300017,49.40388372100011],[86.51545764899998,49.419904891000044],[86.74701660900018,49.303113463000045],[86.93598963400012,49.30838467500007],[87.02890755700003,49.25390280700009],[87.17247765600013,49.24543373200004],[87.27776358000011,49.20273246100004],[87.30603758300015,49.09860810100008],[87.3049465950001,48.91609216000006],[87.41565661600009,48.843883405000156],[87.69486250500006,48.77649173000003],[87.9548035950001,48.728354460000105],[88.03302753900005,48.747607691000155],[88.16667950000016,48.71726117800006],[88.29084063200008,48.727606291000086],[88.42018161200019,48.7948641910001],[88.43569953200017,48.88798897900011],[88.39430952700008,48.97076479900011],[88.42018161200019,49.15183972400007],[88.47191656300015,49.301873277000084],[88.52882365000016,49.35878120300009],[88.69954659000007,49.374300129000176],[88.84857951000004,49.420560691000105],[89.36006151500004,49.40678670900019],[89.62136064100014,49.48671653800011],[89.65328965800006,49.684206079000035],[89.73609950800005,49.74676759900012],[89.58647951900014,49.95452245700017],[89.38411757700004,50.169094317000145],[89.226020634,50.25779429900018],[88.80406154600001,50.3051850760001],[88.63519251600002,50.38458634200009],[88.53726154500015,50.45995021300013],[88.27675652000005,50.481198673000165],[87.81522361700019,50.554838554000185],[87.76466364200007,50.544320606000156]]]]},"properties":{"objectid":19,"eco_name":"Altai alpine meadow and tundra","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Palearctic","eco_biome_":"PA10","nnh":2,"eco_id":749,"shape_leng":57.4604516409,"shape_area":11.0406175599,"nnh_name":"Nature Could Reach Half Protected","color":"#B8823C","color_bio":"#D6C39D","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":90360.7524545528,"percentage":1.850401790708572}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[82.13135565900012,50.277703666000036],[81.73696163400012,50.242604278000044],[81.20748150300005,50.31032821200006],[81.19231461700014,50.300214943000185],[81.28563654800007,50.20269870800013],[81.29842364400008,50.07327206400009],[81.18108353700012,49.82995966400017],[81.25380660600007,49.73795956000009],[81.1305775420002,49.7101991990001],[81.11002360600003,49.64204929700003],[81.28031152500012,49.4046466420001],[81.28797962500005,49.305245484000125],[81.17401155800019,49.12928268200011],[80.984680626,49.07369088300004],[80.92994663100006,48.96839992900004],[80.7584386420001,48.90939736600018],[80.74707060200006,48.850959742999976],[80.85025753000014,48.782619069000134],[80.83274052600007,48.713358397000036],[80.6382066110001,48.56636479300005],[80.64958152500014,48.40304525300007],[80.70812962100013,48.34341287400014],[80.72660065400015,48.24676299200013],[80.66641255400003,48.140374177000126],[80.4798436260001,48.01100201600002],[80.49904656700011,47.87459106800014],[80.45951063800015,47.80431937100013],[80.27343758400008,47.69000747800004],[80.19248952200019,47.61333888100006],[79.98522165200006,47.52845735900013],[80.24925260800006,47.365771491000146],[80.34403952800017,47.173566237000045],[80.36083954400004,47.05336454800005],[80.50670662000005,47.006764184000076],[80.72131351700011,47.076104652000026],[80.80998265300013,47.07207983000012],[80.97923255700016,46.98037426500014],[81.14959758900017,46.96145295700012],[81.25891856100003,46.922512814000015],[81.3780285900001,46.94924605600005],[81.53756755600011,46.86887349500006],[81.86685162900005,46.81339233700015],[82.04773762500014,46.84859465400018],[82.28748352600013,46.779098283],[82.34509251400004,46.73101381900017],[82.44999655900011,46.73838385900018],[82.5424425810001,46.80967328600019],[83.16737364500005,46.80388625300003],[83.5924836580001,46.82487839400005],[84.02474963700018,46.89898363800012],[84.19754055900012,46.99977635900018],[84.43803362200009,46.99925332800018],[84.51693750600003,46.97535015200003],[84.71853652700014,46.977036256000076],[84.91177359400007,47.096055928000055],[84.91467255900005,47.13948608900017],[84.73203256500017,47.233946618000175],[84.74819153300012,47.34070138599998],[84.85485862700011,47.391196653000065],[85.18900252700013,47.48578609499998],[85.42407953900005,47.49322939299998],[85.54591352000011,47.44147885200016],[85.65242756000009,47.4408257340001],[85.61854556100019,47.58774272800008],[85.24999964800014,47.65738025000013],[85.09378863300003,47.57858667200014],[84.85558366100008,47.55046169900004],[84.68184659000008,47.59774887600008],[84.05729656700015,47.681119644000034],[83.98705253000008,47.71869471000008],[83.77549765200018,47.698979635000114],[83.53314263300012,47.73999983100009],[83.3272936520001,47.71214090000012],[83.12433659500005,47.714158758999986],[83.03205150600013,47.687543702000085],[82.84532164600006,47.696904611000036],[82.73145265300019,47.74508781400016],[82.39923055600019,47.821169679000036],[82.22165658400007,47.92521239900003],[82.1252286560001,48.04111132100002],[82.12806660000007,48.12425276000016],[82.41013356800005,48.276953099000025],[82.56784058500011,48.45262488100013],[82.65978252000014,48.495735189000186],[82.8785936110001,48.41655336100001],[83.01142850400015,48.43510452400011],[83.12895955000005,48.505734129000075],[83.20350652100012,48.64804258400005],[83.35056265400016,48.77131976000004],[83.39186062599998,48.864158893000194],[83.49481151900011,48.92693046300019],[83.5756305000001,48.914017136000155],[83.71042659100004,48.98890407600004],[84.07796449600005,49.09227624400012],[84.26181751899998,49.09758232400003],[84.4722515690001,49.19584220200005],[84.74122650700008,49.168810899000164],[84.88564250700011,49.21746466200011],[85.12975353500002,49.20756127600015],[85.44154357000008,49.26357300800004],[85.66546661600017,49.21451138200018],[85.90998852500007,49.22266345400004],[86.18472250100018,49.29678428800014],[86.40099354100005,49.27882404900009],[86.52593955400016,49.20958349400013],[86.76521254700009,49.16143381900014],[86.91137651000008,49.19815426600019],[87.0362775960001,49.19712429800006],[87.12245160800006,49.129054527000164],[87.30603758300015,49.09860810100008],[87.27776358000011,49.20273246100004],[87.17247765600013,49.24543373200004],[87.02890755700003,49.25390280700009],[86.93598963400012,49.30838467500007],[86.74701660900018,49.303113463000045],[86.51545764899998,49.419904891000044],[86.28608653300017,49.40388372100011],[86.02118654100019,49.40413467500014],[85.86596660200019,49.4368769030001],[85.5809936280001,49.418115690000036],[85.31217157700019,49.537868108000055],[85.12539662200004,49.5732955630001],[84.99820761100017,49.66848867000016],[84.81764951500003,49.581478815000025],[84.68340260600007,49.67211686000013],[84.571197589,49.69924019600006],[84.42736865600017,49.84202876700016],[84.30323753200008,49.876072368999985],[83.81591049600013,49.87504927400016],[83.63211866000017,49.90844076500014],[83.4111326330002,50.01103425399998],[83.07697264000006,50.03528058500018],[82.98676257400012,49.99017471400015],[82.56810763300001,49.94092332200006],[82.31568158900006,49.94092332200006],[82.20486461500008,49.99633206100009],[82.13135565900012,50.277703666000036]],[[81.42543764100009,47.477028012],[81.51605255200002,47.45477690900009],[81.97445665800012,47.41794867100003],[82.37551865500012,47.32741003500007],[82.80776250600013,47.29116685300016],[83.0111386580001,47.33096630900019],[83.24765752500008,47.338217326000176],[83.34301760000011,47.259897828000135],[83.45252951200013,47.235944696000104],[83.7148205520001,47.260465786000054],[83.80799865000012,47.248636741000155],[83.81316357800006,47.1111468740001],[83.99751264200012,46.991627138000126],[83.944816623,46.94673584300011],[83.62756359900015,46.996827103000044],[83.08488465300019,47.188852314000144],[82.83883656800009,47.18134531400017],[82.70680264900011,47.23132559600003],[82.44435855500006,47.2239745],[82.37394755100019,47.19883549600013],[82.157096652,47.18633422200014],[81.90682257800012,47.31036610500013],[81.66578653500017,47.3209670330001],[81.55853254000016,47.37555635700011],[81.34683952900008,47.383776657000055],[81.27381856700003,47.46942914700003],[81.42543764100009,47.477028012]]]},"properties":{"objectid":21,"eco_name":"Altai steppe and semi-desert","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Palearctic","eco_biome_":"PA08","nnh":3,"eco_id":724,"shape_leng":33.2274014084,"shape_area":10.1192707405,"nnh_name":"Nature Could Recover","color":"#D9FC7E","color_bio":"#FEFF73","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":83125.5392511116,"percentage":0.7845512349207584}}, + {"type":"Feature","geometry":null,"properties":{"objectid":24,"eco_name":"Amsterdam-Saint Paul Islands temperate grasslands","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Afrotropic","eco_biome_":"AF08","nnh":4,"eco_id":67,"shape_leng":0.428208454469,"shape_area":0.00709841264987,"nnh_name":"Nature Imperiled","color":"#B3FB35","color_bio":"#FEFF73","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":69.34921190001941,"percentage":0.0006545282030902917}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[135.8054805490002,48.370143098000085],[135.97709666400021,48.927895388000195],[135.6338656070002,49.07805902800004],[134.947402656,48.927895388000195],[134.7135616390001,48.74907150700017],[134.53820769800006,48.690619132000165],[134.30503857500014,48.675073886],[134.14959768900007,48.581807108000135],[133.5900116060002,48.50408607900016],[133.434554627,48.50408607900016],[132.6107176480001,48.34863999600009],[132.33360254100012,48.317175673000065],[132.19670058100007,48.345453867000174],[132.0274045770003,48.33431465300009],[131.72038267100004,48.23364095500017],[131.63142368900003,48.13102081200009],[131.24281267300023,47.86676689700016],[131.10403467600008,47.73788993900013],[130.92367556500005,47.6458561390001],[130.8673855530002,47.552044537000086],[130.7735746220003,47.51034926300002],[130.62763965300007,47.58331389800014],[130.5129856110001,47.53119639700009],[130.38789358500003,47.33314426200019],[130.15858466300017,47.10382176200011],[130.02307158400004,46.89534773600019],[129.87713661500004,46.7285688180001],[129.6373905470001,46.593058421000194],[129.50503560200002,46.46705075600016],[129.68331868300004,46.44228172900006],[129.82466154200006,46.45234185700002],[130.04425064200007,46.4977669110001],[130.12434358300015,46.48488090799998],[130.14816260500027,46.57221128700013],[130.2419737030001,46.67644779700015],[130.58595259300023,46.69729593700009],[130.69018558200003,46.6556004950001],[130.8673855530002,46.540942094000116],[131.00289963800003,46.47839968500011],[131.21136461100002,46.44712680500004],[131.49281265900015,46.44712680500004],[131.5553585880001,46.41585761200014],[131.53449955100018,46.2178049740001],[131.77424662500005,46.35331520300019],[132.09738156600008,46.4054315300001],[132.26416065200021,46.4054315300001],[132.54560870000034,46.3637372610001],[132.74238561200002,46.40746447700019],[133.30653362900023,46.48882174400012],[133.50457754900015,46.582636195000134],[133.67135663600027,46.738989870000125],[133.89025858700018,47.218481671],[133.98406968500012,47.34356632099997],[134.14042654600007,47.41653363800009],[134.2655026460002,47.41653363800009],[134.70330755400016,47.34356632099997],[134.9221955910001,47.34356632099997],[135.08531161800022,47.36803326400013],[135.09756462000007,47.40481171400012],[135.35499566500005,47.554973677000135],[135.59095763900018,47.941104320000136],[135.8054805490002,48.370143098000085]]],[[[127.23989868600017,51.63841596100008],[127.18840060800017,51.712659170999984],[127.21730057200034,51.87708294300006],[127.16179661500007,51.924733895000145],[126.77980059800007,51.90649168800002],[126.68080160400018,51.75504897000019],[126.73027059100002,51.64207482900014],[126.68193064600007,51.56513063500006],[126.80246761100011,51.53485704400009],[126.9716496210001,51.288744083000154],[126.89887961400007,51.17346223600015],[126.94109356100012,51.045400166000036],[127.072715592,50.94176128600009],[127.18129761600005,50.56173484900012],[127.22347267000032,50.18211023900005],[127.22347267000032,49.92967715500009],[127.3754576980001,49.77230709000003],[127.594352608,49.62637413200008],[127.94876059700016,49.532562196000185],[128.28231759600033,49.522135946000105],[128.45951857300008,49.574257638],[128.79307557200002,49.55340933000008],[128.7409666210002,49.49086658600015],[128.82435566100014,49.31366041200005],[128.94943260000002,49.209423399000116],[129.00061065700015,49.127928502000145],[129.44976767900005,48.92797937500012],[129.8875576680001,48.87586187400012],[130.10646062500007,48.823741356000085],[130.3566285830001,48.83416743800018],[130.4191746800002,48.87586187400012],[130.63807663100022,48.84458949600008],[130.78399668100008,48.92798339800004],[130.8882445900001,49.15730573100018],[130.8882445900001,49.298379532000126],[130.7346956670002,49.565578512000116],[130.41870160600013,49.64387655200011],[130.28379856200013,49.74048871499997],[130.28810166300002,49.99769395200002],[130.14050255100005,50.163334273000146],[129.95629866100012,50.22462995800004],[129.68179367900018,50.2648674510001],[129.3529055680001,50.358076897000046],[129.2834926810001,50.45604709600019],[129.26860055300006,50.58281215000011],[129.30799868300005,50.75483445200007],[129.30949368000017,50.880175420000114],[129.18040465900015,50.93104519100007],[128.89880355800017,50.990655275],[128.7247007000002,51.05343807600019],[128.72340368400035,51.130938494000134],[128.78990168000018,51.213009732000046],[129.06329354600007,51.413951947000044],[129.1806946730003,51.57078473100012],[129.20979261800028,51.72458444000006],[129.06649761200015,51.794939621000026],[128.66029365300017,51.749768707000044],[128.45320163500003,51.66304819500016],[128.26119955900015,51.55977459800016],[128.077499589,51.490975267000124],[127.93469961900007,51.51044659500019],[127.79949968800008,51.65358804400017],[127.63909956600003,51.71011911900018],[127.34429964900016,51.633575915],[127.23989868600017,51.63841596100008]]]]},"properties":{"objectid":25,"eco_name":"Amur meadow steppe","biome_num":9,"biome_name":"Flooded Grasslands & Savannas","realm":"Palearctic","eco_biome_":"PA09","nnh":3,"eco_id":741,"shape_leng":30.3453174053,"shape_area":15.1187686367,"nnh_name":"Nature Could Recover","color":"#68BED9","color_bio":"#BEE7FF","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":123508.50404537468,"percentage":10.680773530082172}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[28.873704572,37.7382712270001],[28.816921537000155,37.706114055],[28.867111535000106,37.62663634600017],[28.859321562000105,37.55458584200011],[28.78088957900013,37.51701966000019],[28.806758479000166,37.45803754900004],[28.912757536000072,37.43684005100016],[29.008407456000157,37.46343147100015],[29.067790558000127,37.52405040100007],[29.14025160800003,37.50133779000009],[29.186258534000103,37.572381293000035],[29.277025493000053,37.45360888700009],[29.326738561000184,37.317907215000105],[29.464229601000056,37.20925260400003],[29.488637535000066,37.11717823600003],[29.61598345500005,37.12015029100013],[29.67263455900013,37.074588277000146],[29.804000607000035,37.09055580300003],[29.782627592000097,37.186887004000084],[29.684192533000044,37.27648502300008],[29.63978051600003,37.37228917100015],[29.55204747100015,37.41515338500005],[29.470499600000096,37.57407829300013],[29.352590529000054,37.65494102800017],[29.26910358800012,37.657725663000065],[29.134469604000174,37.60511094800012],[29.07382754000014,37.65391089200017],[28.873704572,37.7382712270001]]],[[[27.368631597000046,38.58434941900009],[27.205415490000178,38.580610420000085],[27.21466056100013,38.509864642000025],[27.324075579000123,38.463684379000085],[27.20691149200013,38.41478133800007],[27.190292525000075,38.25663393600007],[27.256698488000154,38.23558446200019],[27.403978585000118,38.26807389300012],[27.47681648600019,38.185533269000075],[27.65106753600014,38.218300643000134],[27.74092857900007,38.20089813499999],[27.970710576000045,38.229759375000015],[28.19907351600017,38.17578628900003],[28.077157561000092,38.10851145700008],[27.950082544,38.13273130200008],[27.93634058200007,38.067184316000066],[27.785619545000145,38.03570574300011],[27.75397149100013,37.91254306400009],[27.898229577000052,37.86417311200006],[28.0963435700001,37.88188876800001],[28.357551501000046,37.98420867100015],[28.564693474000137,38.04421957800014],[28.742462576000037,38.015732171000025],[28.920154565000075,38.046176752000065],[28.760374536000086,38.19690801399997],[28.725030565000054,38.263442891000125],[28.625602585000024,38.29169443100011],[28.488237609,38.37224016200008],[28.248268582000037,38.44139186900014],[27.96073946399997,38.481148242000074],[27.668045584000026,38.462914585000135],[27.62311355300011,38.5247954940001],[27.368631597000046,38.58434941900009]]],[[[31.202453595000065,39.813308255000095],[31.216987480000114,39.90883077],[30.941394527000114,39.89141703100012],[30.815555506000123,39.93106963600013],[30.729320474000133,39.91419367900011],[30.49483254200004,40.04245708200011],[30.65860554200009,40.032005352000056],[30.576948538000124,40.13591982900016],[30.479768585000045,40.14444975700013],[30.430133469000168,40.192842172000155],[30.282627563000062,40.217770958000074],[30.259109452000075,40.14914194600016],[30.18208847900013,40.13987189599999],[30.071966532000147,40.204214067000066],[29.866552572000103,40.14559070100006],[29.74383547400015,40.06217601300017],[29.590669604000027,40.152120707000165],[29.53417960000013,40.21000495700014],[29.299394445000075,40.226479923000056],[29.24816157100014,40.27150432200011],[29.044103467000014,40.28413802900013],[29.05983948500017,40.36851110500015],[28.923561474000167,40.36524903500003],[28.808666536000032,40.40082065900003],[28.589443558000028,40.37901698200011],[28.524204523000037,40.39960478000006],[28.150491502000193,40.40087866200008],[27.960212577,40.35897031900015],[27.905090500000085,40.390303885000094],[28.03910254699997,40.48293883500014],[27.8649294490001,40.52488925500012],[27.687538538000126,40.50435459800008],[27.792280475999974,40.39846383600013],[27.781846515999973,40.31893985900018],[27.63071845400009,40.334045557000024],[27.55145649500014,40.30905994200009],[27.433155487000136,40.33104751800005],[27.317878502000156,40.38674878500012],[27.293657484000164,40.46960708300014],[27.12229752000013,40.45774300200003],[27.04131844500006,40.396014643000115],[27.182781501000136,40.395339900000124],[27.348260555000138,40.307476935000125],[27.276142492000133,40.22574801500008],[27.116914495000174,40.24905540500015],[27.122228454000094,40.09950934500006],[27.182653594000158,40.02722951100003],[26.95466448600007,40.0107386200001],[26.90366949000014,39.957066108000106],[26.952630533000104,39.86183763000008],[26.74077256600009,39.84349266100003],[26.637987466000084,39.87042053100009],[26.547611607000192,39.817107100999976],[26.43181259700009,39.83579472200017],[26.369932526000184,39.75869378500016],[26.265922496000087,39.71842628400003],[26.228923601000076,39.648362458000065],[26.396104516000094,39.54659576000017],[26.63490158500008,39.62422358300006],[26.77139652000011,39.615754843000104],[26.880630488000065,39.63684253800011],[27.05707558500012,39.57895946200006],[27.086730591000105,39.53986274500005],[27.0434135860001,39.43110738300004],[26.946540578000054,39.38476702600019],[26.933675530000187,39.21249762500014],[27.00666044899998,39.25789585700011],[27.25234744200003,39.27887659900006],[27.27774460900008,39.21274958500004],[27.413818604000085,39.23397843200013],[27.501171447000104,39.216926455000134],[27.658754579000174,39.32710087300006],[27.83220046400004,39.15890256299997],[27.775068573000055,39.066980745000194],[27.88481149100005,38.91988421200017],[27.86480556400005,38.81538987500005],[27.974533562000033,38.67128802700006],[28.105808582000066,38.625672872000166],[28.1515105740001,38.712070345000086],[28.278488528000082,38.778731286000095],[28.43988056500018,38.744605876000094],[28.424398520000068,38.624619937000034],[28.476261546000046,38.586058489000095],[28.59909649300016,38.63908844300005],[28.55666159900005,38.69954744600017],[28.612091460000045,38.82460259200013],[28.788202455000146,38.879613861000166],[28.90318858700016,38.9619405790001],[29.070310494000125,38.93844962400004],[29.04373952500015,38.82886747200007],[29.120223554000063,38.79957791700002],[29.258058587000107,38.90035722700014],[29.336812602000123,38.796461861000125],[29.308706572000062,38.718757427000185],[29.240314601000136,38.68666865200004],[29.162546465000048,38.594713139000135],[28.9835475700001,38.47378239300019],[28.91930749000005,38.459179609000046],[29.094413494000094,38.30738401300016],[29.18104750500015,38.19355508500013],[29.180162543000108,38.13142221600009],[29.041711608000128,38.015389184000185],[29.108337512,37.86275807900017],[29.018329450000067,37.85087522300017],[29.109031534000053,37.774670480000054],[29.222743450000166,37.768818905000046],[29.381406507000122,37.81418998000015],[29.477930492000098,37.80838785900016],[29.60924155500004,37.72743845500014],[29.766574572000025,37.78278047400016],[29.94011148300018,37.80620219300016],[30.037422529000025,37.90141541700018],[30.098560467000084,38.049163727],[30.167095601000028,37.92007286300003],[30.163284517000193,37.856830230000014],[30.04029048100017,37.72521456900017],[29.86422961100004,37.63573439900006],[29.81747250500007,37.5863242530001],[29.78572453800018,37.35936846700008],[29.97818560800016,37.39564182300006],[30.078777499000125,37.38435810500005],[30.05032546400014,37.287527845],[30.07657657900012,37.21031643500004],[30.030260528000156,37.10791271200003],[30.09800759600006,36.97606437000019],[30.238143462000153,36.98902295900007],[30.328893489999984,36.95334086200012],[30.413646601000096,36.84021400300003],[30.574298516000113,36.95792157200009],[30.617448553000145,37.06040559400003],[30.596054584000058,37.14014599200004],[30.689559575000033,37.19580585200015],[30.74195854000004,37.27442525400011],[30.69838152800014,37.34621977500018],[30.79037660400013,37.37165918700009],[30.89537452600007,37.450320666000096],[31.0343976100001,37.457454671000164],[31.06593150300006,37.56265761499998],[30.969902553000054,37.587918156000114],[30.945779603000176,37.67110368400006],[30.75032652900012,37.62483641600011],[30.67182145600009,37.673541644000125],[30.563610583000127,37.583260333000055],[30.512695551000036,37.648307925000154],[30.604549475000113,37.823921704000156],[30.697011590000102,37.82813277300016],[30.72128658700018,37.91617108700018],[30.697334461000082,37.991761772000075],[30.581047457000125,38.126784342000064],[30.69207548700018,38.28643746900019],[30.933425516,38.281688450000104],[30.942399517000126,38.386697772000105],[31.03346654800015,38.44216266900014],[30.964767464000147,38.657296284000154],[31.04287959300018,38.73823495900007],[31.193605491000028,38.756106685000134],[31.327751481000064,38.73027399500006],[31.376476490000073,38.8545171020001],[31.43265150200017,38.92021194400007],[31.360076458000094,38.99148511100003],[31.240970452000113,39.007899560000055],[31.081083470000067,39.27337186800014],[31.01489459800007,39.236045408999985],[30.995746475000146,39.0836964400001],[31.0188595730001,38.947399653000105],[30.877574548000098,38.90095251000014],[30.770879459000128,38.98968099000007],[30.70140052199997,38.95252267200004],[30.615249477000077,38.96887643600013],[30.63090150800008,39.04892612600014],[30.517745480000144,39.047186043000124],[30.536224559000118,39.14209869100017],[30.307332552000048,39.32982901500003],[30.258817594000107,39.47358284500018],[30.28710350000017,39.56895750400014],[30.372159533000058,39.622766640000066],[30.463371571000096,39.58774822200019],[30.598682478000057,39.617211786000155],[30.672079451000172,39.503719475000025],[30.509950477000075,39.36673922800003],[30.55880557400019,39.29721352100006],[30.638917457000105,39.28767240000013],[30.653024536000032,39.39826675100011],[30.770042610000075,39.43578448500017],[30.875621565000074,39.37746907000013],[30.947475598000096,39.48096864300004],[31.03638847999997,39.49428145200011],[31.364688517000047,39.43516925400013],[31.485448607000137,39.37740134500012],[31.493312509000134,39.30361411000001],[31.761007529999972,39.24195012400014],[31.860864496000033,39.23502717500014],[31.984809542000164,39.267275710000035],[32.016639484000166,39.32370201100008],[31.878978459000166,39.42668643200011],[31.841863559000046,39.54373082500018],[31.672315595000157,39.55664750600016],[31.70349845400017,39.62843867400005],[31.467300446000024,39.71639652200014],[31.215332557000067,39.63898662900016],[31.100975570000116,39.768493739000064],[31.202453595000065,39.813308255000095]]],[[[29.553068554000163,40.70029834800005],[29.384963451000033,40.70978129800005],[29.3448674440001,40.68042753800012],[28.99614355900019,40.65225680000003],[28.801015535000033,40.55926679200013],[28.85247958200017,40.51449033000006],[29.033370608000098,40.59837842900015],[29.305910537000102,40.626973292000116],[29.400453543000083,40.61034829000016],[29.87870951600007,40.700248392],[29.87080152600015,40.73459609000014],[29.553068554000163,40.70029834800005]]]]},"properties":{"objectid":26,"eco_name":"Anatolian conifer and deciduous mixed forests","biome_num":12,"biome_name":"Mediterranean Forests, Woodlands & Scrub","realm":"Palearctic","eco_biome_":"PA12","nnh":4,"eco_id":786,"shape_leng":45.0703985242,"shape_area":8.99012681504,"nnh_name":"Nature Imperiled","color":"#A80000","color_bio":"#FE0000","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":86513.69096827335,"percentage":2.6189335990645124}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[14.406481270000029,-13.948992716999896],[14.42550000000017,-13.91081],[14.58125,-13.80158],[14.64047,-13.6818],[14.76562,-13.54231],[14.84966,-13.40049],[14.89522558100009,-13.175739590999967],[14.895240000000115,-13.07132],[14.848240000000146,-13.01053],[14.791007618000094,-13.140936449999913],[14.79666,-13.276609999999891],[14.721300000000156,-13.37819],[14.6645,-13.38078],[14.61858,-13.454069999999888],[14.5161,-13.542279999999835],[14.46024,-13.51248],[14.268507469999975,-13.684325694999927],[14.085960000000114,-13.75059],[14.088640000000169,-13.806039999999825],[14.24214,-13.90186],[14.27493,-13.96291],[14.258650000000102,-14.09732],[14.31235,-14.09787],[14.406481270000029,-13.948992716999896]]],[[[16.105910000000165,-12.80392],[16.18968000000018,-12.72839],[16.11139,-12.52328],[16.011800000000108,-12.597559999999874],[15.988470000000177,-12.6951],[16.020570000000134,-12.80087],[16.105910000000165,-12.80392]]],[[[15.004734982000173,-13.323676897999917],[15.04099,-13.33376],[15.148600000000101,-13.2655],[15.299910000000125,-13.33053],[15.3628700000001,-13.32012],[15.495360000000119,-13.15275],[15.67195,-13.1387],[15.77086,-13.10914],[15.79034,-13.05637],[15.69834,-12.956329999999866],[15.659890000000132,-12.849129999999889],[15.6953,-12.72362],[15.59729,-12.55895],[15.64576,-12.45478],[15.549760000000106,-12.39181],[15.61991,-12.34582],[15.515620000000126,-12.26296],[15.417030000000125,-12.149169999999856],[15.28599,-12.2302],[15.2032,-12.19627],[15.210320000000138,-12.077449999999885],[15.144880000000114,-11.96304],[15.22948,-11.92912],[15.21647,-11.750549999999862],[15.12417,-11.71525],[14.98551,-11.81029],[14.994330000000105,-11.697609999999884],[14.936,-11.623149999999896],[14.88298,-11.65649999999988],[14.78515,-11.58123],[14.713910000000112,-11.65191],[14.83745000000016,-11.74982],[14.822920000000181,-11.81329],[14.73721,-11.79175],[14.602753242000063,-11.821961430999863],[14.602123136000102,-11.82789883099997],[14.77855,-11.965169999999887],[14.822130000000186,-12.09231],[14.77998,-12.196359999999856],[14.71685,-12.27768],[14.94775,-12.295],[14.933650000000114,-12.380039999999894],[15.048860000000161,-12.456529999999816],[14.89149,-12.484109999999873],[14.68013,-12.41709],[14.57935,-12.511429999999848],[14.60113,-12.574239999999861],[14.51508,-12.69451],[14.56596,-12.712059999999894],[14.69756000000018,-12.65877],[14.76154,-12.69921],[14.73579000000018,-12.75518],[14.787440000000174,-12.81125999999989],[14.863930000000153,-12.766689999999869],[14.99527,-12.62091],[15.13715,-12.76782],[15.230840000000114,-12.79384],[15.36616,-12.928539999999828],[15.33652,-13.02619],[15.289740000000108,-13.05635],[15.18976,-13.03198],[15.14876,-12.87551],[15.03073,-12.89618],[14.99354000000011,-12.85216],[14.827580000000125,-12.924589999999853],[14.92407,-13.01221],[14.954810000000123,-13.128799999999899],[14.939447274000145,-13.194205975999864],[15.004734982000173,-13.323676897999917]]],[[[14.640090772000121,-11.393948964999936],[14.69544,-11.516599999999869],[14.75186,-11.41537],[14.866800000000126,-11.31922],[14.87321,-11.24357],[14.75221,-11.19493],[14.662765545000127,-11.217344343999912],[14.670030000000168,-11.35058999999984],[14.640090772000121,-11.393948964999936]]],[[[15.54770000000019,-11.0138],[15.57273,-10.92239],[15.4736,-10.861019999999883],[15.380020000000172,-10.68085],[15.30138,-10.61756],[15.26119,-10.66146],[15.32921,-10.746529999999893],[15.22038,-10.83330999999987],[15.219940000000122,-10.89036],[15.31721000000016,-10.93788],[15.180920000000128,-11.072969999999884],[15.310410000000104,-11.15228],[15.419210000000191,-11.144109999999898],[15.54770000000019,-11.0138]]]]},"properties":{"objectid":28,"eco_name":"Angolan montane forest-grassland","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Afrotropic","eco_biome_":"AF10","nnh":4,"eco_id":77,"shape_leng":15.9006650861,"shape_area":1.43531524782,"nnh_name":"Nature Imperiled","color":"#B57454","color_bio":"#D6C39D","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":17359.196064283875,"percentage":0.3554805223514232}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[14.268507469999975,-13.684325694999927],[14.15708825400003,-13.545022450999966],[14.08717005700015,-13.490914943999883],[13.96703628600011,-13.23282826299993],[13.87855120800009,-13.18504842599998],[13.678413051,-13.192948117999947],[13.599304387000075,-13.277195579999955],[13.599769672000093,-13.395851119999975],[13.55597358000017,-13.497558712999819],[13.45631512600005,-13.56924958199994],[13.427713597000093,-13.502338774999885],[13.328948940000146,-13.541444777999914],[13.321798558000069,-13.675225469999873],[13.403581056000121,-13.798948396999947],[13.39821826900004,-13.85839891899991],[13.130525830000181,-14.102549802999874],[13.067066187000137,-14.19138558799989],[12.983496092999985,-14.460712446999878],[12.932549619000156,-14.75261924799986],[12.918695753000122,-14.912461926999981],[13.039358455000183,-15.278354543999967],[13.096114615000033,-15.627256249999846],[13.074216569000043,-15.820404962999874],[13.106393290000085,-15.887899095999956],[13.13186652700017,-16.052025830999867],[13.257892016000085,-16.181255673999942],[13.266829994000148,-16.264072898999927],[13.184153698000046,-16.376871231999814],[13.167618439000137,-16.460034307999933],[13.235100172000045,-16.612549994999938],[13.221246306000069,-16.823558452999976],[13.16969231100012,-16.96379184499989],[12.984609022000143,-16.982998961999954],[12.808094205000032,-17.115066245999913],[12.612896082000134,-17.20937067899996],[12.473862374000134,-17.253677018999838],[12.548744027000055,-17.385818099999938],[12.54538222900004,-17.422797878999972],[12.683215949999976,-17.621143964999874],[12.622703585000124,-17.81612825299993],[12.434442893000039,-17.799319262999916],[12.50840245,-17.947238377999952],[12.484869864000188,-17.99430355099986],[12.51176424800019,-18.098519290999832],[12.594128301000126,-18.15554055799987],[12.636657072000048,-18.219361754999966],[12.787431690000062,-18.344771],[12.774824947000127,-18.470838426999876],[12.833656414000188,-18.500254159999884],[12.867274394000162,-18.57589461699996],[13.102600259000042,-18.78600699599997],[13.211858697000025,-18.84063621499996],[13.098398012000075,-18.886860937999927],[13.106802507000111,-18.97510813799994],[13.23286993400012,-18.996119375999967],[13.353702984000165,-18.865938168999946],[13.392555343000083,-18.983512632999975],[13.476600295000082,-19.02973735599994],[13.35473511500004,-19.096973317999982],[13.34633061900007,-19.19782725999994],[13.368462440000144,-19.33157392399994],[13.439824699000155,-19.36913300799995],[13.650155566000137,-19.38040073299993],[13.687714650000032,-19.45551889999996],[13.78536826700008,-19.45927480799992],[13.800391900000136,-19.515613432999885],[14.052037760000019,-19.49307798299992],[14.1083763850001,-19.6696056749999],[14.175982735000105,-19.72970020899993],[14.258612719000098,-19.733456116999946],[14.314951344000178,-19.80857428399986],[14.303683619000026,-19.88744835999995],[14.202274094000074,-19.943786984999917],[14.179738643000178,-20.056464234999908],[14.266124535000074,-20.041440601999966],[14.408849053000097,-20.150361943999883],[14.495234945,-20.37196053699995],[14.649227187000122,-20.390740077999965],[14.713077629000054,-20.420787344999894],[14.795707613000047,-20.510929144999977],[14.698053996,-20.578535495999915],[14.570353112000134,-20.616094578999935],[14.570353112000134,-20.751307279999878],[14.525282212000036,-20.815157721999924],[14.570353112000134,-20.909055429999967],[14.641715370000043,-20.961638146999974],[14.758148529000152,-20.94285860499997],[14.867069871000183,-20.863984529999982],[14.810731246000103,-20.781354545999932],[14.885849413000017,-20.751307279999878],[15.009794388000103,-20.751307279999878],[15.06237710500011,-20.84144907999996],[15.017306205000182,-20.886519979999946],[15.03232983900017,-21.160701289999963],[15.272707973000138,-21.34849670699998],[15.331263350000143,-21.656773544999965],[15.220125256000188,-21.806717525999943],[15.368803878999984,-21.854413386999965],[15.400408857000059,-22.020804301999874],[15.463917283000114,-22.077043690999915],[15.56191291600004,-22.020804301999874],[15.580692457000168,-21.926906592999842],[15.663322441000162,-21.964465675999918],[15.603227908,-22.22362335199989],[15.723830970000108,-22.323766966999983],[15.971306926000125,-22.32127696999993],[16.016911072000084,-22.539525384999877],[15.969898460000081,-22.586537996999937],[15.864263538000046,-22.59827520999994],[15.852526324,-22.69804152599994],[15.77036582900007,-22.674567098999944],[15.74689140200013,-22.791939234999973],[15.805577470000173,-22.791939234999973],[15.782103043000063,-22.950391617999912],[15.858394931000191,-23.061895146999973],[15.98750428,-23.16753006999994],[15.999241494000046,-23.331851059999963],[16.110745023000106,-23.45509180299996],[16.234280233000106,-23.45872693599989],[16.291546582000024,-23.34217347299989],[16.411516799000026,-23.19643505199997],[16.350091425000187,-23.099909462999904],[16.313892432000046,-22.98226273599994],[16.060499480000033,-22.90986474899995],[15.997151242000086,-22.70172053899995],[16.196245704000034,-22.54787481799997],[16.368190922000167,-22.37592960099994],[16.350091425000187,-22.249233124999932],[16.40438991500008,-22.213034131999905],[16.531086390000098,-22.25828287299987],[16.68493211100008,-22.113486900999874],[16.4586884040001,-22.00488992199996],[16.1781462080001,-21.950591431999953],[16.07859897700007,-21.860093948999918],[16.23244469700012,-21.73339747299991],[16.02430048700012,-21.35330804599988],[15.770907535000106,-21.199462324999843],[15.618356139000014,-20.98267876199992],[15.760047837000059,-20.904440530999977],[15.745568240000068,-20.730685363999896],[15.846925421000151,-20.607608787999823],[15.93380300400014,-20.45557301699995],[15.926563206000083,-20.35421583599998],[16.01344078900007,-20.303537245999905],[15.891383259000122,-20.187301681999884],[16.00180411800011,-20.189157445999967],[16.168270204000066,-20.105924410999933],[16.257905787000027,-20.112326952999865],[16.398761701000183,-19.97787358799991],[16.590837943999986,-19.965068505999852],[16.61644810900009,-19.843420222999896],[16.654863358000057,-19.805004975999964],[16.795719267000095,-19.805004975999964],[16.840537056000073,-19.683356692999894],[17.192676825000035,-19.632136362999972],[17.16706666000016,-19.766589728999975],[17.211884449000138,-19.830615140999896],[17.512054572000125,-19.730719353999973],[17.798981428000047,-19.780619675999958],[17.973632558000077,-19.718244284999855],[18.077591564000045,-19.739036073999955],[18.2231084390001,-19.739057529999968],[18.41553044800014,-19.680709865999916],[18.664077903000077,-19.47598268099989],[18.681481484000074,-19.343449608999947],[18.624752130000104,-19.130251915999906],[18.341990845999987,-18.93614437499997],[18.246335688000045,-18.910396812999977],[18.160273320000044,-18.845924470999933],[17.994500439000035,-18.823088906999942],[17.69696828200017,-18.710893231999876],[17.60421467000009,-18.7094520629999],[17.50772448800012,-18.649733935999905],[17.371863291000125,-18.655248680999875],[17.18403766700004,-18.696407087999944],[17.163581739,-18.626357738999957],[17.058735286000058,-18.659816916999944],[17.12274285900014,-18.67137791199991],[17.124170679000144,-18.672045020999974],[17.118211589000055,-18.734570026999847],[16.881825193999987,-18.860790583999915],[16.732954580000182,-18.844539727999916],[16.681055451000134,-18.948348685999974],[16.52957393600019,-18.93444609099987],[16.41187176300008,-18.98366236499993],[16.374831034000124,-19.038353018999942],[16.289955008000106,-19.06777236199997],[16.190286058000027,-19.044335390999947],[16.098250962000066,-19.117052095999952],[16.043593008000073,-19.24193799999989],[15.916411798000013,-19.185673622999957],[15.739788315000112,-19.07207404499991],[15.57943654200011,-19.110960144999922],[15.561749753000129,-19.159650830999965],[15.456735803000129,-19.104676411999947],[15.361195897000073,-19.2033022949999],[15.182212410000147,-19.22162541499995],[15.18838827900015,-19.074620035999885],[15.25225204000003,-19.068753801999833],[15.343143352000027,-19.181056947999878],[15.397284917000036,-19.154457373999946],[15.447016948000055,-19.005872644999954],[15.600709946000052,-18.861382078999895],[15.67890608800019,-18.917855154999813],[15.721469157000172,-18.830552358999967],[15.834799283000109,-18.81680664299995],[15.878801731000067,-18.742808505999903],[15.998576541000148,-18.655218826999885],[16.226275836000127,-18.56457187199993],[16.365744277000147,-18.484163312999897],[16.3764000540001,-18.435557584999913],[16.312970585000073,-18.315101357999936],[16.261502206000102,-18.2664982579999],[16.30218017100009,-18.150762929999814],[16.272782260000156,-18.083137336999982],[16.27375810400008,-17.92912351899986],[16.23700847300006,-17.826536650999913],[16.25089780600007,-17.76762120299992],[16.21447539000002,-17.686680330999877],[16.138318237000135,-17.616472875999932],[16.12077619700017,-17.480607434999968],[16.18979859800004,-17.46716311499995],[16.16747349100018,-17.362889320999955],[16.02006245500013,-17.25818371399987],[15.867444932000183,-17.173777507999887],[15.693512100000078,-17.036820098999897],[15.599636004000047,-17.02038427799988],[15.500249575000112,-16.923598057999925],[15.55174981600004,-16.786543273999882],[15.525999695000166,-16.738529050999887],[15.342134802999965,-16.61605971299997],[15.216546497000081,-16.503907947999892],[15.133423303000143,-16.523398457999974],[15.119870608000099,-16.650687967999943],[15.01777364000003,-16.70608015399995],[14.87772912700018,-16.91495400699995],[14.823970105000114,-16.95946662699987],[14.69476774800006,-16.815086520999955],[14.617517387000134,-16.80254531999998],[14.374924150000084,-16.674491263999982],[14.179947722000179,-16.511949499999957],[14.126447056000188,-16.452966668999863],[13.746871355000053,-16.133073800999966],[13.627022626000098,-16.089856304999955],[13.475809949000052,-16.15195125699995],[13.418681596000056,-16.154917360999946],[13.363263903000131,-16.030777846999968],[13.382930865000105,-15.984243972999877],[13.521734236000157,-15.899873745999969],[13.534215193000136,-15.77907549899993],[13.419995526000037,-15.606121590999976],[13.325929643,-15.496871755999962],[13.188275240000166,-15.251835059999962],[13.154229315000066,-15.05715972899992],[13.17352005600003,-14.894815779999817],[13.282040449000021,-14.695664115999932],[13.331294502000048,-14.497226933999968],[13.273933425000166,-14.387452701999962],[13.307166430000166,-14.231736577999982],[13.385013605000097,-14.146113073999913],[13.491541318000031,-14.075029887999904],[13.680923919000122,-14.059132481999939],[13.818408404000138,-14.151851741999906],[14.019237738000072,-14.392379447999929],[14.073396441000057,-14.430609000999937],[14.189907000000176,-14.410420096999871],[14.386819475000095,-14.106172238999932],[14.406481270000029,-13.948992716999896],[14.31235,-14.09787],[14.258650000000102,-14.09732],[14.27493,-13.96291],[14.24214,-13.90186],[14.088640000000169,-13.806039999999825],[14.085960000000114,-13.75059],[14.268507469999975,-13.684325694999927]],[[15.750505519000114,-18.534335301999874],[15.804044476000172,-18.634697056999926],[15.719519664000074,-18.658854452999947],[15.675013760000184,-18.58387560099993],[15.750505519000114,-18.534335301999874]],[[14.993562900000029,-19.24659855999994],[15.04036129300016,-19.129338412999914],[15.128264933000025,-19.13001352499998],[15.094119485000135,-19.223070971999903],[14.993562900000029,-19.24659855999994]]]},"properties":{"objectid":29,"eco_name":"Angolan mopane woodlands","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Afrotropic","eco_biome_":"AF07","nnh":2,"eco_id":34,"shape_leng":54.1420143311,"shape_area":16.4058554245,"nnh_name":"Nature Could Reach Half Protected","color":"#B09200","color_bio":"#FEAA01","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":192668.3837129964,"percentage":0.898681104883323}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[14.189907000000176,-14.410420096999871],[14.185626293999974,-14.48227295099997],[14.242702374000032,-14.525097242999891],[14.341158611000083,-14.540290967999908],[14.469579791000058,-14.446349425999927],[14.538071086,-14.363426855999819],[14.615123794000056,-14.190572948999886],[14.623685206000175,-14.04942631899985],[14.655077050000159,-13.962203970999951],[14.737837365000189,-13.926197808999973],[14.849135721000096,-13.91650288299985],[14.894796584,-13.874948597999946],[14.921907722000014,-13.769644467999967],[14.85627023100011,-13.594956920999948],[14.991825920000053,-13.386827621999885],[15.004734982000173,-13.323676897999917],[14.939447274000145,-13.194205975999864],[14.89522558100009,-13.175739590999967],[14.84966,-13.40049],[14.76562,-13.54231],[14.64047,-13.6818],[14.58125,-13.80158],[14.42550000000017,-13.91081],[14.406481270000029,-13.948992716999896],[14.386819475000095,-14.106172238999932],[14.189907000000176,-14.410420096999871]]],[[[15.291571405000013,-9.257856087999926],[15.40420059600018,-9.125147193999908],[15.45984977300003,-8.972959813999921],[15.425604125000177,-8.90107129099988],[15.425604125000177,-8.760072491999892],[15.475545695000164,-8.669805136999855],[15.698142406000045,-8.535774602999936],[15.688154092000104,-8.205436948999932],[15.598259266000127,-7.785767800999963],[15.50448868500007,-7.577749956999924],[15.335772231000078,-7.149710379999931],[15.265146739000159,-7.020245588999899],[15.15822759100007,-6.873215603999881],[15.000301143000058,-6.867372406999948],[14.874744712000052,-6.915089744999932],[14.757035559000087,-7.021219143999815],[14.584395466000046,-7.286922451999942],[14.493170872,-7.312219403999904],[14.39017536300014,-7.299571106999849],[14.330339876000096,-7.260651026999938],[14.239115282000057,-7.118564283999831],[14.157699784000044,-7.062106599999936],[14.042933359000187,-7.052371818999973],[13.970346047000135,-6.935538558999895],[13.956613313000048,-6.83425960299985],[13.891873278000105,-6.717372621999971],[13.691767717000118,-6.456224314999872],[13.582886750000114,-6.400664016999826],[13.570134925000104,-6.337298408999914],[13.462234867000063,-6.206643291999967],[13.157222236000166,-5.924797647999924],[13.151479596000172,-5.90551058199992],[13.09428953500003,-5.967834893999964],[12.92370053899998,-6.066814776999877],[12.79164952200017,-6.160282719999941],[12.76877044600019,-6.218812543999888],[12.609370452000121,-6.232944600999929],[12.499210451000181,-6.196039248999909],[12.431819447000066,-6.203575752999882],[12.290710441999977,-6.153815410999925],[12.374970530000041,-6.289092454999889],[12.574560576000124,-6.674068406999936],[12.741490536000072,-6.85090745399998],[12.821290446000035,-6.973883383999919],[12.84751054800006,-7.100029350999932],[12.855079574000115,-7.270256081999946],[12.915379488000099,-7.349523404999957],[12.973389467000061,-7.528216359999931],[13.072890536000045,-7.758535804999951],[13.180720536000024,-7.962156204999928],[13.268890446000057,-8.170367206999913],[13.346460434000107,-8.28231489999996],[13.39898043300019,-8.402419525999903],[13.358539594000149,-8.486921346999964],[13.408800503,-8.699423044999946],[13.366189590000033,-8.771323177999875],[13.304160489000026,-8.752313524999977],[13.222359484000151,-8.80713636799993],[13.104359554000041,-8.950558442999977],[13.059379579000108,-9.040133830999878],[12.99989053000013,-9.092293240999936],[13.08133044200008,-9.210375815999896],[13.169329529000152,-9.38060791099997],[13.194160582000052,-9.553173527999945],[13.241559574000178,-9.628851217999966],[13.20827956300002,-9.707405575999871],[13.318949519000114,-9.861683723999931],[13.344610548000162,-9.937917468999956],[13.313730443000168,-9.98451900699996],[13.439319516000182,-10.117548694999925],[13.456399488000102,-10.184393031999889],[13.53415052400004,-10.295086456999968],[13.528840589000026,-10.386439813999914],[13.642049591000102,-10.50037083299992],[13.77478054800008,-10.66843033899994],[13.723440553000046,-10.757094109999912],[13.831549502000087,-10.909882291999963],[13.865059512000016,-11.007676470999911],[13.77085044100005,-11.571566827999959],[13.793419554000025,-11.806591369999921],[13.759791925000059,-11.960567032999961],[14.002443139000036,-12.020189749999872],[14.07284130500011,-12.071456964999982],[14.093246023000177,-12.148409839999943],[14.045855816000142,-12.37664681299998],[13.92738029800006,-12.594773963999955],[13.88883068000007,-12.771111023999936],[13.881696170000055,-12.897714966999843],[13.900245896000115,-13.065957204999847],[13.96703628600011,-13.23282826299993],[14.08717005700015,-13.490914943999883],[14.15708825400003,-13.545022450999966],[14.268507469999975,-13.684325694999927],[14.46024,-13.51248],[14.5161,-13.542279999999835],[14.61858,-13.454069999999888],[14.6645,-13.38078],[14.721300000000156,-13.37819],[14.79666,-13.276609999999891],[14.791007618000094,-13.140936449999913],[14.727849051000135,-13.099313993999942],[14.607989284000041,-12.971421861999943],[14.533790380000028,-12.91996839899997],[14.43961484900018,-12.7126570019999],[14.426772731000028,-12.471740867999927],[14.451030065,-12.209681913999873],[14.562328420000142,-12.011571381999943],[14.602123136000102,-11.82789883099997],[14.602753242000063,-11.821961430999863],[14.640090772000121,-11.393948964999936],[14.670030000000168,-11.35058999999984],[14.662765545000127,-11.217344343999912],[14.692176501000176,-11.052488789999927],[14.809182465000106,-10.810114041999896],[14.819170779000046,-10.693760394999913],[14.764948503000028,-10.330396078999854],[14.806328661000066,-10.115546076999976],[14.903357996000182,-10.015795404999949],[14.983264508000047,-9.98769107299995],[15.084574549000138,-9.99050161599996],[15.408481301000052,-10.076211465999961],[15.548317697000016,-10.077616356999954],[15.612528286000042,-9.966611230999888],[15.593978559999982,-9.797923656999899],[15.532621775000052,-9.653065],[15.445580753000115,-9.578501737999943],[15.15734655099999,-9.537696031999872],[15.107404981000172,-9.429326201999913],[15.13023541299998,-9.361753729999975],[15.291571405000013,-9.257856087999926]]]]},"properties":{"objectid":30,"eco_name":"Angolan scarp savanna and woodlands","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Afrotropic","eco_biome_":"AF07","nnh":4,"eco_id":35,"shape_leng":26.5924631412,"shape_area":11.2098963369,"nnh_name":"Nature Imperiled","color":"#FC8939","color_bio":"#FEAA01","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":137036.48752354362,"percentage":0.6391920648508594}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[14.939447274000145,-13.194205975999864],[14.954810000000123,-13.128799999999899],[14.92407,-13.01221],[14.827580000000125,-12.924589999999853],[14.99354000000011,-12.85216],[15.03073,-12.89618],[15.14876,-12.87551],[15.18976,-13.03198],[15.289740000000108,-13.05635],[15.33652,-13.02619],[15.36616,-12.928539999999828],[15.230840000000114,-12.79384],[15.13715,-12.76782],[14.99527,-12.62091],[14.863930000000153,-12.766689999999869],[14.787440000000174,-12.81125999999989],[14.73579000000018,-12.75518],[14.76154,-12.69921],[14.69756000000018,-12.65877],[14.56596,-12.712059999999894],[14.51508,-12.69451],[14.60113,-12.574239999999861],[14.57935,-12.511429999999848],[14.68013,-12.41709],[14.89149,-12.484109999999873],[15.048860000000161,-12.456529999999816],[14.933650000000114,-12.380039999999894],[14.94775,-12.295],[14.71685,-12.27768],[14.77998,-12.196359999999856],[14.822130000000186,-12.09231],[14.77855,-11.965169999999887],[14.602123136000102,-11.82789883099997],[14.562328420000142,-12.011571381999943],[14.451030065,-12.209681913999873],[14.426772731000028,-12.471740867999927],[14.43961484900018,-12.7126570019999],[14.533790380000028,-12.91996839899997],[14.607989284000041,-12.971421861999943],[14.727849051000135,-13.099313993999942],[14.791007618000094,-13.140936449999913],[14.848240000000146,-13.01053],[14.895240000000115,-13.07132],[14.89522558100009,-13.175739590999967],[14.939447274000145,-13.194205975999864]]],[[[21.602697598000077,-10.166470259999926],[21.48083344300005,-10.179543429999967],[21.315843558000097,-10.116088902999934],[21.290460473000167,-10.027255145999902],[21.34122647500004,-9.824204378999923],[21.303152518000047,-9.690952737999964],[21.15719944400007,-9.64653502199991],[20.973171574000105,-9.659225893999974],[20.826681555000164,-9.61861305799988],[20.52782245100002,-9.42321966299994],[20.424371493000024,-9.285295613999835],[20.343910587000096,-9.112888749999968],[20.297931489000177,-8.883014216999925],[20.274944455000025,-8.676128729999846],[20.205976479000128,-8.457748468999966],[20.102525521000075,-8.239368039999931],[19.99907456300008,-8.170406098999933],[19.884130508000112,-8.009493673999941],[19.792173486000024,-7.814100613999926],[19.688722528000028,-7.641695259999949],[19.59676550600011,-7.36584716099992],[19.530899505000093,-7.240709201999891],[19.569313600000157,-7.065963787999976],[19.503740463000042,-7.035636887999942],[19.197450465000088,-7.035049148999974],[19.16031058800013,-6.93808310199995],[19.206460508000134,-6.674738120999848],[19.20561946800018,-6.488990955999896],[19.263759534000144,-6.304371323999931],[19.166019502000154,-6.06774768199989],[18.973388447000048,-6.050236880999933],[18.53558957400014,-6.339163765999899],[18.35171358400015,-6.365429800999891],[17.957693559000177,-6.374184362999927],[17.598697484000127,-6.251610092999954],[17.445508480000058,-6.175020619999941],[17.515029494000032,-6.31962404099994],[17.537649568000063,-6.517577603999882],[17.718349487000125,-6.69645462699998],[17.77069044900003,-6.83407374199993],[17.85246044100012,-7.195591428999933],[17.909730465000052,-7.323638243999937],[18.023036529000137,-7.457955559999903],[18.155349565000108,-7.506949962999897],[18.42440044300014,-7.479335950999939],[18.41348049900006,-7.569393297999966],[18.62418947499998,-7.834005454999954],[18.666650521000122,-8.067147421999948],[18.582130593999977,-8.166481355999906],[18.4603594780001,-8.261630709999963],[18.407320471000048,-8.350798233999967],[18.4786705840001,-8.501191537999944],[18.551540503000183,-8.54264038399998],[18.550739528000065,-8.59944822999995],[18.406639525000173,-8.65868615699992],[18.420429600000148,-8.705078817999947],[18.573030529000164,-8.811646334999978],[18.603530599000067,-8.868928260999951],[18.55455044500019,-8.928482018999887],[18.465469589000065,-8.92944694299996],[18.422359449000055,-9.000942565999935],[18.448020478000046,-9.060480397999925],[18.554220533000034,-9.124783005999973],[18.639690464000125,-9.210041880999881],[18.70786048300016,-9.325705606999975],[18.739889579000078,-9.443131209999876],[18.797159435000026,-9.563255951999963],[18.86968955200001,-9.624558341999943],[19.063089563000176,-9.732576933999951],[19.135259594000047,-9.816248108999957],[19.063119570000083,-9.89641346999997],[18.91444958600016,-9.861094643999934],[18.974189589000105,-9.972793897999964],[18.91572950300008,-10.022534457999939],[18.75587051600013,-9.928184905999899],[18.641199542000095,-9.953540330999942],[18.633789437000075,-10.134817426999916],[18.581050502000153,-10.20469165399993],[18.527450578000128,-10.16738514399998],[18.482809568000107,-10.010066208999945],[18.398000465,-10.134846428999936],[18.34333050800018,-10.171724790999917],[18.23246056000005,-10.101799936999896],[18.2350405090001,-10.005236723999928],[18.13080047900013,-9.976631802999975],[18.028619547000062,-9.88559109099998],[17.93852951100007,-9.877226789999952],[17.853269462000185,-9.781686336999883],[17.775539548000097,-9.919713651999928],[17.54578957000018,-10.00726665399992],[17.472450599000183,-9.920222600999864],[17.34337951599997,-9.86187885499993],[17.28544044900002,-9.791514621999966],[17.280370571000105,-9.723032628999931],[17.32098944100011,-9.6563373219999],[17.18601045700018,-9.501032055999872],[17.01395948900017,-9.330970280999964],[16.97632055300005,-9.267837785999973],[17.064519465000046,-9.057319581999877],[16.809949498000037,-9.029119674999947],[16.775850575000163,-9.061793338999848],[16.835269551000067,-9.204498090999948],[16.73884950100006,-9.222161945999972],[16.816600538000046,-9.342550550999931],[16.917039543000158,-9.560008969999899],[16.90142053700015,-9.647146900999928],[16.732040546000064,-9.722773627999914],[16.440175469000167,-9.729459033999944],[16.10177054500008,-9.48446254199996],[15.92802945000011,-9.444479354999942],[15.833930516000066,-9.380716875999894],[15.843009459000143,-9.331219390999934],[16.1015395390001,-9.231702227999904],[16.134830447000013,-9.078446336999889],[16.03042043200014,-9.06532010899997],[15.797380557000054,-9.147521432999952],[15.677570471000081,-9.209844906999933],[15.388290540000014,-9.277146224999967],[15.291571405000013,-9.257856087999926],[15.13023541299998,-9.361753729999975],[15.107404981000172,-9.429326201999913],[15.15734655099999,-9.537696031999872],[15.445580753000115,-9.578501737999943],[15.532621775000052,-9.653065],[15.593978559999982,-9.797923656999899],[15.612528286000042,-9.966611230999888],[15.548317697000016,-10.077616356999954],[15.408481301000052,-10.076211465999961],[15.084574549000138,-9.99050161599996],[14.983264508000047,-9.98769107299995],[14.903357996000182,-10.015795404999949],[14.806328661000066,-10.115546076999976],[14.764948503000028,-10.330396078999854],[14.819170779000046,-10.693760394999913],[14.809182465000106,-10.810114041999896],[14.692176501000176,-11.052488789999927],[14.662765545000127,-11.217344343999912],[14.75221,-11.19493],[14.87321,-11.24357],[14.866800000000126,-11.31922],[14.75186,-11.41537],[14.69544,-11.516599999999869],[14.640090772000121,-11.393948964999936],[14.602753242000063,-11.821961430999863],[14.73721,-11.79175],[14.822920000000181,-11.81329],[14.83745000000016,-11.74982],[14.713910000000112,-11.65191],[14.78515,-11.58123],[14.88298,-11.65649999999988],[14.936,-11.623149999999896],[14.994330000000105,-11.697609999999884],[14.98551,-11.81029],[15.12417,-11.71525],[15.21647,-11.750549999999862],[15.22948,-11.92912],[15.144880000000114,-11.96304],[15.210320000000138,-12.077449999999885],[15.2032,-12.19627],[15.28599,-12.2302],[15.417030000000125,-12.149169999999856],[15.515620000000126,-12.26296],[15.61991,-12.34582],[15.549760000000106,-12.39181],[15.64576,-12.45478],[15.59729,-12.55895],[15.6953,-12.72362],[15.659890000000132,-12.849129999999889],[15.69834,-12.956329999999866],[15.79034,-13.05637],[15.77086,-13.10914],[15.67195,-13.1387],[15.495360000000119,-13.15275],[15.3628700000001,-13.32012],[15.299910000000125,-13.33053],[15.148600000000101,-13.2655],[15.04099,-13.33376],[15.004734982000173,-13.323676897999917],[14.991825920000053,-13.386827621999885],[14.85627023100011,-13.594956920999948],[14.921907722000014,-13.769644467999967],[14.894796584,-13.874948597999946],[14.849135721000096,-13.91650288299985],[14.737837365000189,-13.926197808999973],[14.655077050000159,-13.962203970999951],[14.623685206000175,-14.04942631899985],[14.615123794000056,-14.190572948999886],[14.538071086,-14.363426855999819],[14.469579791000058,-14.446349425999927],[14.341158611000083,-14.540290967999908],[14.242702374000032,-14.525097242999891],[14.185626293999974,-14.48227295099997],[14.189907000000176,-14.410420096999871],[14.073396441000057,-14.430609000999937],[14.019237738000072,-14.392379447999929],[13.818408404000138,-14.151851741999906],[13.680923919000122,-14.059132481999939],[13.491541318000031,-14.075029887999904],[13.385013605000097,-14.146113073999913],[13.307166430000166,-14.231736577999982],[13.273933425000166,-14.387452701999962],[13.331294502000048,-14.497226933999968],[13.282040449000021,-14.695664115999932],[13.17352005600003,-14.894815779999817],[13.154229315000066,-15.05715972899992],[13.188275240000166,-15.251835059999962],[13.325929643,-15.496871755999962],[13.419995526000037,-15.606121590999976],[13.534215193000136,-15.77907549899993],[13.521734236000157,-15.899873745999969],[13.382930865000105,-15.984243972999877],[13.363263903000131,-16.030777846999968],[13.418681596000056,-16.154917360999946],[13.475809949000052,-16.15195125699995],[13.627022626000098,-16.089856304999955],[13.746871355000053,-16.133073800999966],[14.126447056000188,-16.452966668999863],[14.179947722000179,-16.511949499999957],[14.402014043000179,-16.326950604999922],[14.482920343000046,-16.221010077999892],[14.404370538000023,-16.14029112799983],[14.307754277000186,-16.236848237999936],[14.236273954000183,-16.227043812999966],[14.174612357000058,-16.158399181999982],[14.172648612000046,-16.067464956999913],[14.206817777000026,-15.841648163999935],[14.107059524000078,-15.68289640699993],[14.116878250000184,-15.634112075999894],[14.253162162000024,-15.56412976699994],[14.200926542000104,-15.239253327999904],[14.204853996000168,-15.08499378599987],[14.261707637000029,-15.037239947999979],[14.402664297000172,-15.11097776399987],[14.627723976000027,-14.95015102799988],[14.764980103000141,-14.980701177999947],[15.056649373000084,-14.84774385899982],[15.138397508000025,-14.862051276999921],[15.291128590000085,-14.944950568999843],[15.287428057000056,-15.103832486999863],[15.463035161000107,-15.256753663999973],[15.492975836000028,-15.418320008999956],[15.563622372000054,-15.57781648699995],[15.749528273000067,-15.735381872999938],[16.086683634999986,-15.751721229999873],[16.15735202999997,-15.719801262999965],[16.368567626000072,-15.566591958999823],[16.37448955900004,-15.46654507799991],[16.288029343000062,-15.374824667999974],[16.30895350500009,-15.259450848999961],[16.363830080000128,-15.194310869999981],[16.491743824000025,-15.120385017999922],[16.654004776000022,-15.219835952999915],[16.82495123000018,-15.279636335999953],[17.08472667300009,-15.404133930999933],[17.202770529000134,-15.399566524999955],[17.40074675799997,-15.364186116999917],[17.404248211000038,-15.273930468999936],[17.328158760000065,-15.09237113499995],[17.286374328000136,-14.823655616999929],[17.32664629600015,-14.736098476999928],[17.410183576000065,-14.730485098999964],[17.44797161800011,-14.682692011999904],[17.51459135800002,-14.485886443999902],[17.62746580600009,-14.472644988999889],[17.76471351800012,-14.599184113999911],[17.917374203000122,-14.696403873999941],[18.070524567,-14.6634858299999],[18.1605224220001,-14.595214243999976],[18.20676133900008,-14.507256148999943],[18.209241316000032,-14.399611542999878],[18.293773746,-14.405244764999964],[18.39571339400004,-14.47193237099998],[18.523503239000092,-14.423748250999893],[18.565263983000023,-14.285180457999957],[18.6224455950001,-14.253054403999897],[18.65626488400011,-14.363916574999905],[18.721407690999968,-14.421763315999954],[18.771125682000047,-14.305287765999935],[18.75271936600018,-14.165106228999946],[18.594581412000082,-13.93814962099998],[18.593582314000173,-13.8590224699999],[18.67413414600003,-13.819669292999947],[18.76911169600004,-13.875511255999982],[18.95161896700006,-14.174367893999943],[19.01178602800013,-14.175981637999882],[19.16692274200011,-14.097676240999874],[19.307637686000135,-13.992056256999888],[19.363322626000183,-13.875179750999962],[19.255905708000114,-13.678755295999906],[19.2489396630001,-13.600029099999972],[19.311590648000163,-13.56187879099997],[19.425961768000093,-13.633387785999957],[19.450832607999985,-13.778791666999837],[19.53138838700005,-13.80731904199996],[19.608457196000074,-13.728602767999973],[19.746202484000094,-13.860765192999963],[19.869016582000086,-13.756348075999938],[19.934653016000027,-13.751937563999945],[20.06145955599999,-13.896148499999981],[20.166372808000062,-13.792934248999927],[20.326986793000117,-13.844365700999845],[20.34487974300015,-13.707401729999901],[20.30907015500003,-13.574046359999898],[20.33840337500004,-13.498537729999896],[20.422931857000094,-13.436290399999905],[20.51044578600016,-13.407782866999923],[20.596960619000185,-13.300148182999862],[20.596952723000015,-13.164387079999926],[20.525835071000074,-12.971180190999974],[20.662071842000046,-12.814950508999914],[20.83958362700008,-12.718171390999942],[20.941687641000044,-12.694340195999871],[20.860213568,-12.575956737999888],[20.730660494000176,-12.475242721999905],[20.720024959000114,-12.290504419999877],[20.66881627000015,-12.195403400999908],[20.655697053000097,-12.03132737199985],[20.6743180900001,-11.905136371999902],[20.910851958000137,-11.728666956999973],[20.76800889200007,-11.570013754999877],[20.77922310600013,-11.47091616199998],[20.674322171000142,-11.317822949999936],[20.66228911200011,-11.221990782999967],[20.75299613900006,-11.134959340999956],[21.0319475660001,-11.114942471999939],[21.103993727000045,-11.182847264999964],[21.218976670000075,-11.188393945999962],[21.33869510300019,-10.951307045999954],[21.468549780000046,-10.964964387999942],[21.61035977000006,-11.06116281099986],[21.63581047399998,-10.450725322999972],[21.602697598000077,-10.166470259999926]],[[15.54770000000019,-11.0138],[15.419210000000191,-11.144109999999898],[15.310410000000104,-11.15228],[15.180920000000128,-11.072969999999884],[15.31721000000016,-10.93788],[15.219940000000122,-10.89036],[15.22038,-10.83330999999987],[15.32921,-10.746529999999893],[15.26119,-10.66146],[15.30138,-10.61756],[15.380020000000172,-10.68085],[15.4736,-10.861019999999883],[15.57273,-10.92239],[15.54770000000019,-11.0138]],[[16.105910000000165,-12.80392],[16.020570000000134,-12.80087],[15.988470000000177,-12.6951],[16.011800000000108,-12.597559999999874],[16.11139,-12.52328],[16.18968000000018,-12.72839],[16.105910000000165,-12.80392]]]]},"properties":{"objectid":31,"eco_name":"Angolan wet miombo woodlands","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Afrotropic","eco_biome_":"AF07","nnh":4,"eco_id":36,"shape_leng":63.0758963313,"shape_area":37.084843102,"nnh_name":"Nature Imperiled","color":"#C7AB01","color_bio":"#FEAA01","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":449655.4612957664,"percentage":2.097369890101182}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[169.20523070200034,-52.439315275999945],[169.12716668400014,-52.457099494999966],[169.02832057700004,-52.55710062899993],[169.23718268400012,-52.55626847399992],[169.20523070200034,-52.439315275999945]]],[[[166.15026872500005,-50.530118225999956],[166.0877377160001,-50.667067962999965],[165.9080196530001,-50.76068258999993],[165.96386760400014,-50.841791583999964],[166.12188760100014,-50.820406499999876],[166.2346806930001,-50.85235077099992],[166.2294005970001,-50.75207621899989],[166.1413575890001,-50.69595350999987],[166.20831273400017,-50.65289986399989],[166.27499362400022,-50.5398462629999],[166.15026872500005,-50.530118225999956]]]]},"properties":{"objectid":32,"eco_name":"Antipodes Subantarctic Islands tundra","biome_num":11,"biome_name":"Tundra","realm":"Australasia","eco_biome_":"AU11","nnh":4,"eco_id":196,"shape_leng":5.38276912358,"shape_area":0.113542820514,"nnh_name":"Nature Imperiled","color":"#6BB3F3","color_bio":"#9ED7C2","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":876.3948376241017,"percentage":0.01025604317783324}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[46.54487220200019,15.436961632000077],[46.60197926600017,15.44945380200005],[46.682432531000075,15.538200826999969],[46.33607449900006,15.61363661200005],[46.04518539100019,15.574375505000091],[45.85244904900003,15.483361122000133],[45.65942930699998,15.313797121000107],[45.54244730500005,15.306112172000098],[45.59676792200014,15.224083836000148],[45.68959689100012,15.224716852000142],[45.8074946700001,15.274512598000172],[45.82160890400013,15.230776244000026],[45.73347610200011,15.124289809000118],[45.81900574700012,15.094506988000091],[45.87988573700011,15.175010560000032],[46.0362624120001,15.317393716000083],[46.22542956200016,15.397700525000118],[46.36462803100005,15.435177036000027],[46.54487220200019,15.436961632000077]]],[[[47.42646250500013,15.834926485000153],[47.36757084500016,15.925940869000044],[47.28904863100007,15.929510060000041],[47.187326673000086,15.888464358000078],[46.98031356600018,15.711789378000105],[46.91071433200011,15.624344186000144],[46.9874519490001,15.577944697000191],[47.14985016300011,15.679666655000176],[47.369355440000106,15.676097463000076],[47.57636854800012,15.776034825000181],[47.526399867000066,15.836711081000033],[47.42646250500013,15.834926485000153]]],[[[45.2543450120001,20.517053219],[45.10910450200009,20.44465779500007],[44.816105379000135,20.474335422000024],[44.87600022700019,20.41893718400007],[45.13941165500012,20.392676980000147],[45.2543450120001,20.517053219]]],[[[56.51952275800011,20.895308073000024],[56.5820256400001,20.86023451300008],[56.57941760600016,20.781363969000097],[56.447936723000055,20.766525155000124],[56.44272065500013,20.698536408],[56.341546925000046,20.638012036000134],[56.433367706000126,20.54286376300007],[56.569704928000135,20.676413087000128],[56.61152340300015,20.6622937300001],[56.76422828600005,20.708788680000055],[56.807575609000025,20.75978024000011],[56.75595452400006,20.847104410000043],[56.51952275800011,20.895308073000024]]],[[[42.892363065000154,20.868323534000126],[42.784626809000144,20.898365767000087],[42.67796721400009,20.867069360000073],[42.74370765600008,20.803487291000067],[42.82725467400013,20.82471129100003],[42.892363065000154,20.868323534000126]]],[[[44.195033574000036,19.95335816100004],[44.19269533700009,20.046527925000078],[44.25636733700003,20.07782433200009],[44.156632523000155,20.15444657],[44.131631370000036,20.29465087699998],[44.1662552680001,20.40077087900005],[44.33991435600012,20.4407907100001],[44.42418083100006,20.522988745000134],[44.82365968400018,20.518671999],[44.911163719000115,20.494750033000116],[45.1064964680001,20.508329796000055],[44.9432695160001,20.66148434000013],[44.811338972000044,20.575868881000133],[44.4155473400001,20.55761264400013],[44.141344048000065,20.782353223000086],[44.14575072600013,20.682168747000105],[43.99124719800005,20.702133697000022],[43.95707296100011,20.650422679000144],[44.03558377500019,20.45949660800011],[44.005096758000036,20.40670640400009],[43.84420804400003,20.392856844999983],[43.779276992000064,20.340246505000152],[43.59230793900019,20.365607387000125],[43.53744929400017,20.2368244700001],[43.59221800600011,20.20247036799998],[43.68556763500004,20.224323893000133],[43.68988438100013,20.15165867200011],[43.75922211000017,20.06235599300004],[43.74465309300007,19.99580616200012],[43.85014356900007,19.97710026300018],[43.908509570000035,20.152468062000082],[44.055368860000044,20.221895724000035],[44.13477899700018,20.188530876000016],[44.160859336000044,20.09077457000012],[44.14404201399998,19.942116635000048],[44.195033574000036,19.95335816100004]]],[[[44.72347520800008,21.288131942000177],[44.66807697000013,21.214207670000178],[44.773117785000125,21.14154244800011],[44.885982702000035,20.990186548000167],[44.90657717700009,21.04720356600012],[44.80846114200011,21.22976594100004],[44.72347520800008,21.288131942000177]]],[[[43.98818950300006,21.319608213000095],[44.03126702900005,21.169421432000036],[44.149168150000094,21.150175940000167],[43.98818950300006,21.319608213000095]]],[[[44.39099584800016,21.68743093],[44.30978706700006,21.586616929000172],[44.35061628800008,21.480676792000168],[44.41617686500007,21.45387699500003],[44.47328381500017,21.49722431700019],[44.48308642500018,21.266098552000187],[44.576615918000016,21.211060042000156],[44.65566632600013,21.26510929700015],[44.59559161300007,21.38489899400014],[44.60620361300005,21.442005944000073],[44.7004525640001,21.452887741000097],[44.70917598799997,21.514491301000135],[44.55862947700018,21.61656435300017],[44.39099584800016,21.68743093]]],[[[45.57000705000013,21.8105481180001],[45.349763081000106,21.714140795000162],[45.42170884500018,21.669084760000146],[45.51793630400016,21.735184931000163],[45.57000705000013,21.8105481180001]]],[[[43.439153394000186,21.973505273000058],[43.38762224100003,21.900210526000023],[43.39328797000013,21.802004559000125],[43.30389535800015,21.655954659000088],[43.249936036,21.68203499800012],[43.170885628000065,21.50918530100006],[43.173583594000036,21.407292113000096],[43.11638671200012,21.3338175020001],[42.981038744000045,21.3338175020001],[42.976092473000165,21.26313078900006],[43.06764345700003,21.274012586000083],[43.17286413599999,21.185968957000057],[43.27565664600007,21.19253400800011],[43.320173088000104,21.080658346000064],[43.257040680000046,21.05862495600013],[43.19903440800016,21.101072956000053],[43.1253799320001,20.985150344000033],[43.038055762,20.972919565000097],[42.97771125200006,20.894228886000178],[43.044171152000104,20.815268410000044],[43.06485555900008,20.740894477000097],[43.03167057500008,20.642508645000078],[43.10172776300004,20.578207119000126],[43.25272393400013,20.670747357000153],[43.334382376,20.762388274000102],[43.26018830700019,20.845845359],[43.262076883000134,20.981013463000124],[43.40398990200009,21.040458650000176],[43.49590061500015,21.049901532000035],[43.53825868400003,20.99846031100003],[43.639342482000075,21.057905498000082],[43.78215482300004,21.058984684000052],[43.83566448400012,21.122836550000102],[43.80400834800014,21.180033432000187],[43.536549972000046,21.388406350000082],[43.42134681800019,21.49299750400013],[43.33429244400003,21.629604523000182],[43.471618920000026,21.728979609000078],[43.578098650000186,21.605502692000186],[43.629899600000044,21.645522523000068],[43.557594108000046,21.740221134000024],[43.540596921000144,21.813156152000033],[43.439153394000186,21.973505273000058]]],[[[43.60354946400014,22.733792130999973],[43.55786390400016,22.6542021300001],[43.44113190300004,22.70033735100003],[43.35191915600012,22.692063588000167],[43.272688883000114,22.72965524900019],[43.19813508600015,22.695031351000125],[43.2582097990001,22.385035041000094],[43.40767712300004,22.314528193000058],[43.44436946200011,22.171895716000108],[43.48951542900011,22.093564766000156],[43.47899336100011,21.97773208700005],[43.59869312500018,21.921434527000088],[43.70939966900016,21.935823679000123],[43.74654167000011,21.88204422100017],[43.82352363700005,21.863068526000177],[43.851402620000044,21.989603138000177],[43.751398009000184,22.211735682999972],[43.763179127000114,22.274508362],[43.72199017800011,22.398255075000066],[43.858057603000134,22.483241009000096],[43.95563404500007,22.509411280000165],[43.97478960500018,22.613013180000053],[43.85652875599999,22.61589101100003],[43.77001397500004,22.54637341600005],[43.70094604200011,22.580367790000082],[43.60354946400014,22.733792130999973]],[[43.40713752900018,22.460578093000095],[43.54752170100005,22.384045787000105],[43.483669835000114,22.34006893900016],[43.391219529000125,22.39582690600014],[43.40713752900018,22.460578093000095]]],[[[45.16459267300013,23.04585688200001],[45.13644389200016,22.919232337000096],[45.21045809600008,22.873276980000128],[45.12178494200015,22.77597033500018],[45.31064257200006,22.610944739000047],[45.29076755500006,22.535221823000086],[45.336543047000134,22.432699110000044],[45.354349624000065,22.313538939000125],[45.44077447200016,22.242942158000176],[45.48349226900012,22.16622998800011],[45.42503633600006,22.116767275000143],[45.312171420000084,21.870712762999972],[45.3493134200001,21.838337170000045],[45.30066009700016,21.746246592000148],[45.55696688100005,21.83312110200012],[45.577921084000195,21.959565781000094],[45.75445800200009,22.158675682000137],[45.73620176400004,22.253014565],[45.59986454199998,22.17333463200015],[45.52360203300009,22.17531314000007],[45.640334034000034,22.445919144000186],[45.73512257800007,22.579918129000077],[45.59231023700016,22.560942434000083],[45.536822067,22.453113720000033],[45.353000640000175,22.57587117999998],[45.36001535200006,22.704654097000173],[45.426834980000194,22.75483626700003],[45.36990789500015,22.832807489000174],[45.25029806300017,22.929934269000057],[45.19777765500015,22.942344913],[45.16459267300013,23.04585688200001]],[[45.249848402,22.81086403000012],[45.32260355500017,22.797014471000182],[45.323053216000176,22.699078300000053],[45.21288626600011,22.722100944000147],[45.249848402,22.81086403000012]]],[[[46.183614482,23.114205356000184],[46.01589092100005,23.01779803300002],[45.953657835000115,22.84225037000016],[45.96912617400005,22.75393694500019],[45.92604864800006,22.7192231140001],[45.9558162080001,22.63144928200012],[46.179657465000105,22.823904200000072],[46.368425163000154,23.072926474000155],[46.242699941000126,23.082639152000127],[46.183614482,23.114205356000184]]],[[[44.40484540700004,23.14487223800006],[44.57994341,22.9952250500001],[44.592713783000136,22.875345421000134],[44.660972326000035,22.80852579300017],[44.94965470300008,22.933711422000044],[44.42022381400017,23.1185221020001],[44.40484540700004,23.14487223800006]]],[[[43.85526970500018,23.302253597000174],[44.0845968270001,23.187859832000072],[44.120209980000084,23.265651189000152],[43.85526970500018,23.302253597000174]]],[[[46.2559199750001,23.389038174000063],[46.21787865200014,23.374199360000148],[46.25025424600017,23.167535154000063],[46.362669502000074,23.187320239000087],[46.3403663150001,23.293530172000033],[46.2559199750001,23.389038174000063]]],[[[43.472877972000106,23.738154993000023],[43.50453410700004,23.65622675300017],[43.49868851300005,23.55226512500019],[43.591768345000105,23.42537078400011],[43.738267908000125,23.434903598000176],[43.60570783800017,23.619084753000095],[43.616769499000156,23.677540686000043],[43.472877972000106,23.738154993000023]]],[[[43.98944855400009,23.772239298000102],[43.85499990799997,23.758299807000014],[43.75103828000016,23.7811425860001],[43.75364631400015,23.677450755000166],[43.84438790799999,23.666029364000053],[43.98944855400009,23.772239298000102]]],[[[42.43038385500017,23.816665806000174],[42.46239972000018,23.727003398000022],[42.528769687000135,23.734647636000147],[42.64936877300005,23.61962434600008],[42.65089762100007,23.459095361000152],[42.71726758800003,23.46512081900005],[42.72158433400017,23.579604515000028],[42.58353840000018,23.734018110000136],[42.43038385500017,23.816665806000174]]],[[[45.072771891000116,24.379191746000174],[44.94668694000006,24.350053712000147],[44.92492334700012,24.30553727200015],[45.03976677200012,24.223159371000122],[45.09165765400019,24.276129439999977],[45.04075602600011,24.322174729000153],[45.072771891000116,24.379191746000174]]],[[[48.64299048200019,24.89441334600008],[48.60476929500015,24.794318803000067],[48.69874844800006,24.637207241000112],[48.68777672000016,24.586755275000144],[48.748840686000165,24.44852947600009],[48.8403017390001,24.41300625500014],[48.763949297000124,24.652855445000114],[48.705493364,24.708343615000047],[48.69838871999997,24.84989690500015],[48.64299048200019,24.89441334600008]]],[[[44.371390627000096,25.00871717900003],[44.230646727000135,24.92067355],[44.25447876100009,24.856821685000057],[44.22435147300013,24.74593527700017],[44.30016432100001,24.63136164800011],[44.44450551000017,24.61094703800012],[44.60539422400012,24.55950581700006],[44.683815106000054,24.49988076500017],[44.81376714200019,24.50275859600015],[44.819253006000054,24.614544326000043],[44.667717241000105,24.603302800000165],[44.51528215500002,24.695843039000124],[44.37750601699997,24.92561982100011],[44.371390627000096,25.00871717900003]]],[[[42.488929720000044,25.395605523000143],[42.589024264000045,25.429779761000134],[42.65251639999997,25.35108908100011],[42.67913633300009,25.559102271000086],[42.58299880600009,25.534280982000098],[42.51626911100004,25.48230016800011],[42.449089754000056,25.50990935500016],[42.38838551600003,25.464763388],[42.36032666800014,25.292723081000076],[42.4040337190001,25.196045961000095],[42.43757843100019,25.032279416000108],[42.44036633000002,24.821568261000152],[42.49423572000018,24.59880619000012],[42.61249656900014,24.473710493],[42.72176419800013,24.462199171000066],[42.817182267000135,24.354999983000084],[42.903247387000135,24.35041344100017],[42.84991759000013,24.46076025600013],[42.929057930000056,24.526140969000096],[42.95612752300008,24.599255851000066],[42.87240064100013,24.62551605500005],[42.810347420000085,24.58594588500017],[42.66816460400014,24.568499037000095],[42.61249656900014,24.675698225000076],[42.50709602600017,24.785145718000024],[42.51123290700008,24.951700161000076],[42.540191077000145,24.983536161000018],[42.49423572000018,25.10080775600005],[42.54531721300009,25.127067959999977],[42.51536978800016,25.24757711400008],[42.53335622900005,25.346952200000032],[42.488929720000044,25.395605523000143]]],[[[47.584308569000086,25.988528547999977],[47.79528952100014,25.800030647000142],[47.85671321700016,25.809563461000153],[47.66479789200014,25.96037976800011],[47.584308569000086,25.988528547999977]]],[[[44.104741641000146,26.04914285400008],[43.93117248600004,26.014518955000085],[43.908419638000055,25.98726949700017],[44.008154453000145,25.876383089000115],[43.96723530000014,25.71882186600004],[44.01768726600011,25.632307085000036],[44.10240340300015,25.57223237300002],[44.18226320100007,25.55883247400004],[44.34818811800011,25.425822744000186],[44.37894493200014,25.45954732000007],[44.290901304000045,25.602809321999985],[44.22471120100005,25.811721833000036],[44.104741641000146,26.04914285400008]]],[[[46.728333846000055,26.647911472000146],[47.02987652800016,26.451949198000023],[47.05586693500004,26.477579876000107],[46.946329509000066,26.590264929000057],[46.728333846000055,26.647911472000146]]],[[[44.34477069500002,27.93052457400006],[44.444145781000145,27.825753556000052],[44.45187995000015,27.731324741000037],[44.614117647000114,27.766038572000127],[44.34477069500002,27.93052457400006]]],[[[45.04084595800009,19.242534016000036],[45.027895721000164,19.046032149000155],[44.95478083800009,18.990094317000114],[45.049029789000144,18.942610113],[44.98247995700018,18.882265604000168],[44.917548906000036,18.748536416000093],[45.008650229000125,18.749885399000107],[45.06854507700018,18.70285085600017],[45.04264460200005,18.599428821000117],[44.92132605800015,18.454278241999987],[44.84083673500004,18.28232786700005],[44.789395514000034,18.081599186000176],[44.709805513000106,17.929074167000067],[44.890029651000134,18.009743355000182],[44.94201046500012,18.00380782900004],[45.008650229000125,18.086995119000164],[45.143368672000065,18.14032491600011],[45.263608029000125,18.093560170000046],[45.12394331500013,17.948319659000106],[44.974565923000114,17.945082100000036],[44.774826497000106,17.784103454000046],[44.62706788500009,17.632477757000117],[44.529581375000134,17.615660434000176],[44.35832430400018,17.631486840000093],[44.38116713000011,17.564386039000055],[44.363305309000054,17.457119937000073],[44.41755702000012,17.39406422100012],[44.56127646500016,17.37431469400002],[44.5757911770001,17.34671294600014],[44.52368098100004,17.184433706],[44.54200283100005,17.1270886960001],[44.82181215700018,17.0818451720001],[44.86419630600005,16.999277875000075],[45.02745707400004,16.979111943000078],[45.09077472000013,16.901532385000166],[45.04913415200019,16.81825125],[45.06519551400004,16.766200540000114],[45.22521426700007,16.835502342000098],[45.20528628100004,16.693924412000058],[45.31295689100011,16.71533956100012],[45.32855311700001,16.613386451000054],[45.37593335300005,16.697812354000064],[45.53349457500002,16.59564937],[45.61794091500002,16.58305886100004],[45.67163044100005,16.49591455500007],[45.76902701900019,16.604642590000026],[45.7869235280001,16.539441742000065],[45.71057108600013,16.46192018100004],[45.59042166100005,16.378553028000056],[45.63592735600008,16.263619670000026],[45.69600206900003,16.351303570000027],[45.74465539200014,16.478377775000183],[45.82910173200014,16.562194590000047],[45.97038522500003,16.748803914000064],[46.20582773700005,16.82821405100003],[46.35043872200009,16.834329441000136],[46.75315513400011,16.94359706900019],[46.87492333900019,16.997916121],[46.90577008500003,17.041803037000022],[46.811611067,17.15511761500011],[46.94965700100005,17.199364259],[47.06980642600013,17.209256802000084],[47.05676625700005,17.34055782000013],[47.10874707100004,17.38354541400014],[47.15578161400015,17.516645077000078],[47.2532681240001,17.43399738100004],[47.27763975100004,17.364389855000127],[47.24031788600013,17.312678837000078],[47.25335805600008,17.20134276800019],[47.4011166680001,17.143606292000015],[47.39464154900003,17.0786752410001],[47.58466829800011,17.09702141000008],[47.65454562100018,17.065545139000164],[47.82991342000008,17.218070158000103],[47.91112220100018,17.231290192000017],[48.28380125600012,17.464394466000044],[48.377150885,17.52321012800013],[48.4047600720001,17.465923314000065],[48.47625617400007,17.48804663599998],[48.51843437800011,17.53687982300005],[48.73607031300003,17.635625384000036],[48.84812584000008,17.66215538400013],[48.96503770600009,17.736259521000136],[49.00559713100017,17.81566965700017],[49.09013340300015,17.760091555000088],[49.44869310300004,17.922778913],[49.59807049500006,17.839951353],[49.64510503800017,18.078721356000074],[49.794482429000084,18.10039501700004],[49.79583141200004,18.15741203500005],[49.961936194000145,18.270007155000087],[50.22750599500006,18.268298443000106],[50.375894132000155,18.21146128999999],[50.41231667500011,18.384221055000125],[50.565651084000024,18.496546379000108],[50.69290515300003,18.505269802000043],[50.769977053,18.562826413000153],[50.87321922400008,18.532968921000133],[50.95406827600016,18.539444040000035],[50.98176739500002,18.47406332700001],[50.972864106000145,18.30418139300008],[51.01387319200006,18.22477125600011],[51.089416244,18.18484135700004],[51.13411254900012,18.36947217300019],[51.11585631200012,18.496456446000025],[51.21361261800001,18.612289126000064],[51.36874567100011,18.654377398000122],[51.51605462200013,18.65033044800009],[51.64151004800004,18.708426653000117],[51.68881438700009,18.67677051700008],[51.82164425300016,18.68819190700009],[51.884776661000046,18.640797635000126],[51.925066289000085,18.72596343200007],[52.04746401900013,18.65087004200018],[52.1341586640001,18.68837177100005],[52.19216493599998,18.66912627900018],[52.361327413000026,18.724434585000154],[52.42490948200009,18.813737264000054],[52.405124397000066,18.853757095000105],[52.61088928100014,18.93289743500003],[52.706307350000145,18.81337753500003],[52.583639823000055,18.77272817900007],[52.626537485000085,18.686573127000088],[52.73931246900014,18.708426653000117],[52.802984470000126,18.748086755000145],[52.98024084499997,18.676051059000088],[53.0093788800001,18.57874441400014],[53.23492884900003,18.406164513000135],[53.420908648000136,18.419294615000126],[53.48539003900015,18.493308819000106],[53.66399539700018,18.549246649999986],[53.78018780500014,18.689181161000022],[53.97983730000004,18.82371973900007],[54.003939130000106,18.94611746900017],[54.18874981100009,19.167170828],[54.232906523000054,19.16591177700019],[54.35512438900014,19.28372296499998],[54.36726523700014,19.407289815000127],[54.45719744200011,19.483822121000117],[54.794982802000106,19.624116360000073],[54.852989074,19.61800097000014],[54.93635622800008,19.691745378000178],[55.08987050100012,19.744175853000172],[55.152823044000115,19.79498754900004],[55.28205562200009,19.795617074000177],[55.393121895000036,19.882941244999984],[55.47388101500013,19.88518955000012],[55.47271189700007,19.996795416000055],[55.34590748800019,19.872329245],[55.15021501000018,19.813513583000088],[55.016305958000146,19.81621154900006],[54.933298533000084,19.84463012600014],[55.05416741600004,20.033577687000104],[55.13924328100018,20.067661993000115],[55.36928986100014,20.041761518000158],[55.46245962500018,20.078363925000076],[55.46578711600006,20.130074943000125],[55.60859945700014,20.250404233000097],[55.64969847500004,20.223244707000163],[55.60248406700009,20.06451436599997],[55.79269068100001,20.152737859000126],[55.71462952800016,20.03726490800011],[55.58296877999999,19.963520500000072],[55.50454789700018,19.835906702000102],[55.33232772500003,19.65640202100019],[55.496364066000126,19.73563229399997],[55.67451976300015,19.85056565100018],[55.75644800200007,19.984114975000068],[55.86958271500009,19.987352533999967],[55.95969478400019,20.116944841000134],[55.99629719100005,20.118383756000128],[56.1146479730001,20.22297491000012],[56.06329668400008,20.260746436000034],[56.129576719000056,20.322799657000076],[56.13146529500017,20.42775054000009],[55.993239496000115,20.358053082000083],[55.84970769800009,20.415339896000148],[55.683153255000036,20.4073359300001],[55.60365318600009,20.493490982000083],[55.746915188,20.691791493000153],[55.89557312199997,20.73630793400008],[55.96284241100011,20.64988308600016],[56.04692902300019,20.73432942600016],[56.07885495500011,20.674254713000096],[56.20952644800008,20.69323040800009],[56.29019563600019,20.742243460000054],[56.31339814500018,20.807714105],[56.412413502000106,20.8856853260001],[56.3048545850001,20.914823360000128],[56.342895908,21.075981871000124],[56.155746990000125,21.050980718000176],[56.128137803000186,21.138844482000138],[56.131637440000134,21.291194994000136],[56.07647343999997,21.323443994000172],[56.11221980300013,21.40135658700018],[56.23587658400015,21.404144486000177],[56.36618834899997,21.493447165000077],[56.24846709300016,21.546237369000096],[56.12265193900015,21.65046879400012],[56.17705544000012,21.743998995000084],[56.16500044000014,21.81436199500007],[56.06694310700004,21.775162081000133],[56.03255444000018,21.85663799500003],[55.762508009999976,21.92221041100015],[55.6570014400001,22.00583299500005],[55.47118304900005,22.014514358000042],[55.433861184000136,22.087269512000148],[55.444742981000104,22.2076887340001],[55.38295955600006,22.318665074000137],[55.404453353000065,22.443311110000025],[55.38772596299998,22.51678572100002],[55.430533692000154,22.62641307900003],[55.32747138900004,22.655551113000058],[55.266497353000034,22.82048677600011],[55.31011447000003,22.871208539000122],[55.27827847000003,22.932902032000072],[55.32342443700003,22.98047616800011],[55.41794318400002,22.951787795000087],[55.441505422000034,23.062134610000044],[55.419202237000036,23.11258657700006],[55.28430392900003,23.14460244100019],[55.24230558800008,23.26079485000008],[55.275580508000075,23.28102959600011],[55.402654710000036,23.2029684420001],[55.614714850000155,23.273025630000063],[55.765800954000156,23.25737742600012],[55.841254071000094,23.30369251100018],[55.76427210500003,23.39974010600008],[55.65059779800015,23.447853835000103],[55.69403505500014,23.552714785999967],[55.569928610000034,23.624390753],[55.486831254000094,23.64651407500014],[55.49582447300014,23.740493229000037],[55.664267492000135,23.759648789000096],[55.819310613000084,23.725294687000144],[55.80914827600009,23.781412382000042],[55.68243379800009,23.859473536],[55.74214878100008,23.931239435000066],[55.694182185000045,24.048402360000125],[55.70491684800015,24.054176759000143],[55.68342305200002,24.16281486200012],[55.58485735700003,24.082595336000054],[55.50688613700004,24.110834048000072],[55.867154547999974,24.47469974800009],[55.74196892000003,24.522183952000148],[55.782258546000094,24.600874631000067],[55.71894627300003,24.88146310900015],[55.77479417300003,24.98668378900004],[55.76076474900009,25.068432162000192],[55.83208098800003,25.088666909000153],[55.88631010800009,25.195506369000043],[55.80168390200009,25.356754811000087],[55.881723563000094,25.350189760000035],[55.99332943000013,25.385802913000134],[55.99076140300019,25.401591665000183],[55.887749022000094,25.597952983000084],[55.93972983500004,25.695529425000075],[55.89442740500016,25.74428564800013],[55.784168957000134,25.69440629200011],[55.647234967000145,25.5858916950001],[55.6358866380001,25.539113363000126],[55.52054203800009,25.51857473900003],[55.45809497100015,25.39937589699997],[55.26592773300018,25.25267560800006],[55.1116340960001,25.056201383000143],[55.11001531699998,24.970495992000167],[55.0000282310001,24.976071788000183],[54.87754233100003,24.903272422000157],[54.89014474100003,24.847709978000125],[54.88877564799998,24.847766787000126],[54.83329182500012,24.87516074400014],[54.793378891000145,24.851501714000165],[54.80991155000004,24.800524125000095],[54.7144035500001,24.664276835000067],[54.6826212150001,24.659241926000107],[54.619177102000094,24.54814695900012],[54.6255505310001,24.540032850000102],[54.6269264770001,24.537279088],[54.65432883700004,24.3726266970001],[54.62132371500013,24.288090423000142],[54.73481816000009,24.19752869400014],[54.71575253000003,24.087451675000125],[54.609542597000086,24.03286282700003],[54.31510455800009,24.053007640000146],[54.201879913000084,23.968021708000094],[54.01922760500008,23.93699509600009],[53.81076475500004,23.92026770600006],[53.57622156499997,23.98843631700015],[53.49878993700008,23.970000215000084],[53.36874796900008,23.886363265000114],[53.272340646000146,23.948146690000158],[53.17242596700004,23.916310689000113],[53.08051525399998,23.945718520000185],[52.97565430300011,23.92314553700004],[52.85811291200014,23.865409061000037],[52.65675470500008,23.903090655000142],[52.59569073900008,23.844274993000056],[52.550904501000105,23.745169704000148],[52.37283873600012,23.57330926100019],[52.35692073500013,23.459814819000144],[52.2732837850001,23.558290583000087],[52.234523005000085,23.41754668200008],[52.17157046200009,23.437241835000123],[52.12417619000013,23.205936205000114],[52.01733673100017,23.172481425000115],[52.07606246000017,23.108449695000104],[52.09629720600003,23.00808535500005],[52.03901039200014,22.969684303000065],[51.940534628000194,23.10782017000014],[51.877492153,23.299105969000152],[51.8267703890001,23.247125155000163],[51.882258559000036,23.195234273000096],[51.833335440000155,23.064292982999973],[51.746730727,23.024992609000037],[51.71696316700013,23.09361088100013],[51.77056276100012,23.136778340000035],[51.773890253000104,23.209083832000033],[51.700055913000085,23.232915866000155],[51.75734272700004,23.321139359000085],[51.72352821800001,23.430047259000105],[51.57397096200009,23.35387468200014],[51.541055775000075,23.43841095400012],[51.38448380700004,23.52717404000009],[51.32782651800011,23.46215305600009],[51.23447689000011,23.424381530000176],[51.21694011,23.37195105500018],[50.90109820700013,23.421683564000034],[50.859009935000074,23.490571633000172],[50.82141827400005,23.66728841500003],[50.776002511000115,23.768462145000115],[50.845070444000044,23.818284586000175],[50.8544245650001,23.876829279000106],[50.715208340000174,23.88492435000012],[50.69056691600008,24.018473674000063],[50.62986267800005,24.108765607000123],[50.54370762600007,24.45509452700003],[50.554769287,24.559415884000032],[50.47454976100016,24.60546117300015],[50.37382569200008,24.831460803000084],[50.40143487800009,24.944325720000165],[50.3284099280001,25.192268808000108],[50.33146762300004,25.259807894000062],[50.23658914700019,25.28274060600006],[50.24126562200013,25.347221997000076],[50.19035313200004,25.45586948900018],[50.40450543100002,25.41059198400012],[50.30459391300013,25.545406087000174],[50.26760253900011,25.559269206000124],[50.156436757,25.694123828000045],[50.135505349000084,25.72277888300016],[50.1301154300001,25.730465073000175],[50.05312745000009,25.802638681000076],[49.98235080500018,25.983762141000057],[50.01065125700018,26.0750393780001],[49.98868284600019,26.12545074400009],[49.92713243200012,26.108767905000093],[49.82396540200011,26.235136528000112],[49.730990293000104,26.225679771000102],[49.68539466500016,26.177566042000024],[49.62334144400012,26.266329128000166],[49.554273511000076,26.239439399000105],[49.62478035900011,26.127743600000088],[49.532240121000086,25.90785936000009],[49.43916028900003,25.899046004000013],[49.36874337300014,25.990686921000133],[49.23015784600017,26.069647396],[49.269817948000195,25.947159733999968],[49.28366750600003,25.791487087],[49.323057813,25.70883939099997],[49.45121120400012,25.70542196800011],[49.54393130700004,25.674395357000094],[49.60022886700011,25.69579922200012],[49.68143764800004,25.41817850600006],[49.76903161600006,25.367456743000048],[49.89412731200002,25.116455960000167],[49.90923592200011,24.988122704000034],[49.903300397000066,24.83101114200008],[49.85095985400005,24.845580159],[49.76696317500006,25.006828601999985],[49.7429512760001,24.868243075000066],[49.82658822600007,24.80574019300002],[49.81804466600016,24.48180439200013],[49.83684049800013,24.254365846000155],[49.74861700499997,24.259042321000095],[49.72586415700016,24.318307644000186],[49.73215941200016,24.450418052000032],[49.714083039000116,24.713739547000102],[49.67487259700016,24.945944500000166],[49.633054122000146,24.978679822000117],[49.631435342000145,25.097929926000177],[49.68557453,25.1948768420001],[49.62253455000018,25.284177156000055],[49.562996935000115,25.262685724000164],[49.54635947700018,25.141457113000115],[49.598879884000155,24.94495524500013],[49.54851785000017,24.8465694140001],[49.59357388400008,24.59332032500015],[49.582422291000114,24.494934494000063],[49.62936690200007,24.239527033000115],[49.631345410000165,24.118658150000158],[49.53233005300007,24.141950591000125],[49.44473608600015,24.10417906500004],[49.50112357800003,23.976385402],[49.51047652700004,23.802546450000023],[49.67676117399998,23.659104584000147],[49.748976734000166,23.742831466000155],[49.93010019399998,23.694627805000096],[49.855366532000176,23.652539533000095],[49.928481413999975,23.595072854000136],[49.944759143000056,23.514493599000104],[50.004833856000175,23.4490229540001],[49.94314036400016,23.329233258000045],[50.045483212000136,23.344701597000096],[50.055195891000096,23.45217058100002],[50.016075382,23.651370414000098],[50.074621247000096,23.646064413999966],[50.113471959000094,23.518270752000035],[50.246661554000184,23.41233061500003],[50.30538728400012,23.276353121000113],[50.21770338400012,23.15107756000009],[50.058523382000146,23.13075288200008],[49.918858668000155,23.089563932000033],[49.936755177000066,23.038122711000028],[50.052048263000074,23.049454169000057],[50.10888541700007,23.10017593200007],[50.35089297900004,23.14460244100019],[50.47104240500005,23.139206509000132],[50.39639867500006,23.02049599900016],[50.21608460500005,23.01483027000006],[50.16410379000013,22.970313829000133],[50.07641989100006,22.999631728],[49.899433312000156,22.824084064000033],[49.7971803960001,22.66778189300004],[49.782521446000146,22.598444163000124],[49.829645921,22.560133044000054],[49.915711041,22.6914340620001],[49.84106731100019,22.307873210000025],[49.75985853100019,22.37109555],[49.75823975100019,22.23484825999998],[49.693308699,22.133224868000184],[49.693308699,22.073509885000192],[49.62028374900018,22.03447930800013],[49.55526276500018,22.095183546000158],[49.46919764500018,22.023597511000105],[49.33438927100019,22.051476494000156],[49.2840272360001,22.173874225000077],[49.27422462600015,22.30679402300018],[49.355433406000145,22.453203652000184],[49.30669015200016,22.614002433999985],[49.34239323700007,22.708521181000037],[49.33178123700009,22.858977760000073],[49.24661543900004,22.488097348],[49.11342584400012,22.39654636400013],[49.09561926700002,22.31947446400011],[48.947590859000115,22.096352664999984],[48.61664034600011,21.771517542000083],[48.69452163500006,21.786266422999972],[48.80828587400009,21.763783372000034],[48.91215757000009,21.886540831000104],[48.96413838400014,21.88051537300015],[49.00316896100003,21.794450254000083],[48.82294482300017,21.595879945999968],[48.92034140100003,21.614226116000054],[49.011262859,21.672232388000168],[49.05838733500019,21.635450116000015],[48.9902187240001,21.472582893000038],[49.06171482600007,21.419702757000096],[49.16720530200007,21.548575606000043],[49.30848879600012,21.63419106500004],[49.01953662200009,21.265289161999988],[49.06009604700017,21.27266360300007],[49.18833937000011,21.439038181000114],[49.28096954100016,21.463409809000098],[49.31010757500019,21.57915255600011],[49.46605001800009,21.729519202000063],[49.56677408700017,21.686801405000097],[49.37027222000006,21.457024622000176],[49.22575116700017,21.38975533300004],[49.102364183000134,21.255666416000167],[48.96269946900014,21.18848705900001],[48.80837580600007,21.07796038000015],[48.7336421440001,21.133718346000023],[48.52742759900019,20.969502141000135],[48.45107515700016,21.002327395000066],[48.25951956100016,20.872285428],[48.31635671400005,20.849532580000186],[48.42400556300004,20.94072383500003],[48.54532410700017,20.911945530000025],[48.40889695300018,20.78819881600009],[48.27903485000007,20.71823156100004],[48.150701594000054,20.582523864000166],[48.098810712000045,20.60689549200015],[47.97047745600008,20.527845084000035],[47.83081274200009,20.380985794000026],[47.70095063800005,20.2880858260001],[47.570998603000135,20.28394894500019],[47.44914046499997,20.318392979000123],[47.34203121000007,20.239972097000077],[47.30623819200008,20.272527555000067],[47.09840486700017,20.23529562200008],[47.044805274000055,20.264253792000147],[47.10649876600007,20.394835353000133],[47.19256388600007,20.44960406600012],[47.20713290300017,20.49906677900003],[47.33060982000006,20.541244982000137],[47.39230331200008,20.509498914000176],[47.52873046700017,20.546011389000057],[47.57585494200009,20.510757965000153],[47.74960396100016,20.575958813000113],[47.90707525099998,20.611571966000042],[47.89088745400005,20.66616081500007],[48.12471118600007,20.840449427000124],[48.01751199900019,20.83703200300016],[47.82262891099998,20.766525155000124],[47.60013663700016,20.823811969000076],[47.71704850300017,20.946929157000113],[47.84043548800008,20.987578514000177],[47.790073453,21.057905498000082],[47.64393362100003,20.935417835000123],[47.60004670500018,20.98146312400013],[47.83881670800008,21.203415805000134],[47.9021289800001,21.355401231000087],[48.01733213400013,21.473931876],[48.04008498200011,21.618542861000094],[48.12282261000013,21.852366593000113],[48.24791830700002,22.00785937500018],[48.31608691800011,22.228912734000062],[48.29000657900008,22.44394063500016],[48.37930925800015,22.521821924999983],[48.392259495000076,22.65087463800012],[48.44747786800019,22.701596402],[48.42985115700003,22.819587454000157],[48.49361309,22.958712575000163],[48.52589875100017,23.11627379700019],[48.55602604000006,23.388678445000096],[48.504584819,23.387779123000087],[48.59433715900008,23.656496550000043],[48.59910356600005,23.762436687000047],[48.57113465000009,23.859563467999976],[48.55746495400007,24.089610047],[48.518074649000084,24.120097065000095],[48.34477529100019,24.108226014000138],[48.32184257900019,24.159487370000136],[48.472479022000186,24.192762286000118],[48.520592751000095,24.244113575000142],[48.471040106000146,24.456263646000025],[48.42076800400014,24.480275544000108],[48.435337021000066,24.61112690200008],[48.383176343000116,24.702318157000093],[48.35313898600003,24.829212498000118],[48.21491318800008,25.027962670000193],[48.124891051000134,25.03641629800012],[48.01607308300015,25.130125655000143],[47.92704020100007,25.23543626600008],[47.628735078000034,25.52528776200012],[47.58385890800008,25.59273691500016],[47.35192375200006,25.7679248500001],[47.10910680000006,25.963887124000053],[46.88040920400016,26.101933058000043],[46.89686679700003,26.154183669000076],[47.00307673100008,26.19896990700005],[47.28114710700015,26.01011227700019],[47.51173328100015,25.864242241000113],[47.748254978000034,25.680061085999967],[47.78108023300001,25.559192203000066],[47.76120521500013,25.485267931000067],[47.83072281000011,25.363859455000124],[47.92326304800008,25.321141657000055],[48.064816338000014,25.389130404000014],[48.09026715200014,25.43823338800013],[47.98243843900019,25.49453094800009],[47.93864145500004,25.58392355900014],[47.681435351000175,25.760910138000042],[47.51587016100012,25.887894411000104],[47.180602903000135,26.113264516000072],[46.98482049300014,26.272444518000043],[47.02250208700008,26.342321841000114],[46.88139845800015,26.449880757000074],[46.693530082,26.626777404000165],[46.48290885900019,26.735145710000097],[46.40898458700019,26.73379672700014],[46.36986407800015,26.67615018400005],[46.148810719000096,26.800166694000097],[46.06139661600008,26.88236472900013],[45.68197264500009,27.095144325000092],[45.71452810300008,27.141459411000085],[45.602112847000114,27.197397242000193],[45.40830894600015,27.408018465000055],[45.222149283000135,27.55703612800005],[45.39436945500012,27.54489528100015],[45.17601406199998,27.704524944000127],[44.96674182200013,27.61216457000006],[44.89020951600003,27.63248924800007],[44.79119415800017,27.786273318000156],[44.78705727700009,27.85183389500014],[44.61097001999997,28.0798120340001],[44.44576456000004,28.213451290000137],[44.413299035000136,28.31138746100015],[44.221743439000136,28.40482702100013],[44.087744454000074,28.452850818000172],[43.96480713000011,28.607084549000092],[43.778017940000154,28.613739532000125],[43.569465159,28.70016438100015],[43.5241393280001,28.654478821000055],[43.61335207500019,28.574798888000146],[43.62953987100019,28.516522818999988],[43.926855740000065,28.42964831000012],[44.0818089280001,28.329733630000135],[44.409971543000154,28.03133857500012],[44.42193252600015,27.980616812000108],[44.5828212400001,27.845448708],[44.651349580000044,27.75740508000007],[44.70054249600008,27.753897724000126],[44.81565571800013,27.56728840000011],[44.83175358300008,27.440573923000045],[44.77761439500006,27.34038944700012],[44.624639715000114,27.21439442900015],[44.529491443000154,27.224556768000127],[44.21661730300019,27.441832974000192],[44.15744191200008,27.51971426300014],[43.908509570000035,27.720442944000183],[43.60615749800007,27.92773667600011],[43.10811294900003,28.22271430700016],[42.97267504900003,28.267500545000132],[42.70872402800012,28.43216641099997],[42.67059277400011,28.42254366500015],[42.50880473800015,28.520569768000087],[42.62751524800012,28.613289871000177],[42.79586833500014,28.65079160100015],[42.805760877000125,28.696387228],[42.90468630200007,28.718240754000192],[43.04561006700004,28.690721500000166],[43.06773338900018,28.73685672100015],[43.27709556200011,28.71734143200007],[43.295261867000136,28.749267365000094],[43.36262108800008,28.768063196000128],[43.269451324000045,28.88947167200007],[43.10577471200014,28.914292960000125],[43.083291661000146,28.83398350200008],[42.928248540000084,28.82346143400008],[42.68525172300019,28.917530520000128],[42.804052165000144,28.991634656000087],[42.51590938200019,29.07212397900014],[42.247012090000055,29.06070258900013],[42.06705774900007,28.963845605000188],[42.012289036000084,29.003595639000025],[41.88701347500006,28.983900487000085],[41.842676898000036,29.066008589000035],[41.71200540500013,29.104229776000125],[41.58996740300017,29.087682251000103],[41.51649279200018,29.13876374300014],[41.217558144,29.205493439000122],[40.954236649000165,29.34228032200008],[40.94902058100007,29.44408357800006],[40.87617549500004,29.546876087000044],[40.70971098400014,29.591752258000042],[40.49953942200011,29.626376156000106],[40.45457332000018,29.702728598000135],[40.31562806400018,29.72422239500014],[40.22317775700009,29.702009140000087],[40.08333317900008,29.71576876800009],[39.93350612600011,29.677997242],[39.63448154600013,29.702818530000116],[39.655885410999986,29.62826473300015],[39.72792110700004,29.626196292000145],[39.80580239600016,29.53014869700013],[39.767401344,29.47537998500019],[40.0638178910001,29.38239008500011],[40.01336592400003,29.32384422000007],[40.096912942000074,29.29137869400006],[40.20123430000018,29.29722428700012],[40.226235452000026,29.227436897000075],[39.866236836999974,29.148566353000092],[39.60120663000015,29.07805950600016],[39.53195883300009,29.177704388000052],[39.41990330600004,29.21466652400011],[39.30604913500014,29.175815811000177],[39.11503313200012,29.152703235000104],[38.98157374100009,29.264129236000144],[38.817357535000156,29.256484999000122],[38.63416563400017,29.303339677000167],[38.48352919200005,29.28715188100017],[38.47903258100007,29.234271744000125],[38.63299651700015,29.147127438000155],[38.67625390600017,29.100092895000046],[38.863312892000124,29.021042487000102],[39.014488928000105,28.91204465500016],[39.11053652200019,28.81392862000007],[39.23815032000016,28.72048905900016],[39.42457978100015,28.638021228000184],[39.74662700500005,28.601868481000167],[39.724143954000056,28.475243937000187],[39.676210089000165,28.366066241000055],[39.58357991800011,28.24061081600007],[39.311624932000086,27.992128134000097],[39.323136254000076,27.923599794000154],[39.16539516700004,27.85417213200003],[39.04596519900019,27.848596336000014],[38.98076435100006,27.886277929000073],[38.80512675500012,27.790410199000064],[38.91916079200013,27.69184450300014],[38.84676536600017,27.498310399],[38.986250215000155,27.36197317699998],[39.09542791200016,27.286969718000137],[39.23770066000009,27.35235043100016],[39.390315611000176,27.342997481000054],[39.60138649500004,27.214034700000127],[39.61082937600003,27.285350938000136],[39.75454103900012,27.333914329000095],[39.964622669000164,27.352530295000122],[39.95248182200004,27.176443038000173],[39.984767483000155,27.15072242800011],[40.05410521300013,27.396327279000104],[40.036208704000046,27.55370863700017],[40.05590385700009,27.6087471460001],[40.411136065000164,27.640673079000123],[40.47246982900003,27.6842901980001],[40.612584203000154,27.69571158800011],[40.783815121000146,27.675207045000036],[40.70368552700012,27.56728840000011],[40.887686816999974,27.619808807000084],[41.02222539500002,27.634018095000158],[41.03598502200015,27.599394197000095],[40.930224750000036,27.520793450000156],[40.762860917000125,27.49858019500016],[40.64774769500008,27.38706426200008],[40.50655413400017,27.349472600000183],[40.43460837000009,27.30666487100018],[40.42876277700003,27.177162496],[40.3580760640001,27.197577106000153],[40.36356192900007,27.0794061900001],[40.45691155700007,27.100360393000017],[40.58227705000013,27.190382530000136],[40.71213915400011,27.22653527600005],[40.916105394000056,27.317726532000165],[41.262164517000144,27.440573923000045],[41.33276129800004,27.431670635000046],[41.38887899400004,27.46350663600009],[41.42026533300003,27.58383592500013],[41.5002150630001,27.664774909000187],[41.46954818100005,27.73905891000004],[41.600579403000154,27.734562300000107],[41.78835784600005,27.805249013000036],[41.68304723500006,27.836365556000032],[41.79231486200007,27.93367220100015],[41.91795015200012,27.970004812000127],[42.05887391800019,27.97989735400006],[42.21328751400017,27.92198101500003],[42.28163598900005,27.967216914000176],[42.39755859999997,27.92297026900019],[42.65908145100008,27.857679487999974],[42.84218342100013,27.74211660500015],[43.10649416900003,27.666033960000163],[43.22889190000018,27.59103050200008],[43.33537163000017,27.489317178000135],[43.42782193599999,27.521782704000145],[43.583674447000135,27.464405958000043],[43.59302739600008,27.426634432000128],[43.73862763600005,27.28301270100002],[43.780805840000085,27.30675480300016],[43.88467753600008,27.241913683000178],[43.97649831800004,27.228513785000075],[44.09071221700003,27.150542563000045],[44.20843347200014,27.01915161300002],[44.41788557700005,26.862129983000102],[44.38622944100001,26.80844045700013],[44.39935954300017,26.685233337000057],[44.386499238000056,26.557619539000086],[44.32372655900019,26.499163606000025],[44.17174113300007,26.55060482700003],[44.206454964000045,26.417864893000115],[44.13154143700018,26.302212077000036],[43.963997741000014,26.296276552000165],[43.881889637000086,26.157241364000015],[43.82361356900003,26.151755499000103],[43.81048346700004,26.01415922600006],[43.89573919700007,26.021803463000083],[43.996912927000096,26.10831824400009],[44.136757505000105,26.164795669000057],[44.18900811600008,26.279279365000093],[44.32768357600014,26.32649377300004],[44.39180523800013,26.018835701000057],[44.36563496600019,25.876473021000095],[44.42948683100019,25.72574664600012],[44.4890219510001,25.673496035000085],[44.51024595100006,25.565487457000074],[44.592713783000136,25.492552439000065],[44.66852663100008,25.381036506000044],[44.752613243000155,25.204229791000103],[44.827436837000164,25.111599621000096],[44.88463371900008,24.99333877200013],[44.872672736000084,24.915997076000167],[45.03203260200007,24.81887029500018],[45.154520264999974,24.716257649000056],[45.20200446900009,24.629203275000123],[45.37719240400003,24.477487646000156],[45.46622528600011,24.364622729000075],[45.68997661100008,24.186197235000066],[45.73323400200013,24.18583750600004],[45.54680454100014,24.416693476000148],[45.38888359000015,24.561034664000033],[45.23905653700018,24.754298972000186],[45.17520467200018,24.86770348200008],[45.1137809760001,24.92445070300016],[45.114320569000085,24.99369850000005],[45.02447829700003,25.123740468],[45.018093110999985,25.23687518200012],[45.10092067099998,25.35819372600008],[45.019172297000125,25.580146407000086],[44.96107609300003,25.545162779000123],[45.024028636000025,25.41790871000012],[44.88085656600009,25.409365150000042],[44.69622575000017,25.67394569600009],[44.59586141000011,25.862713393999968],[44.51123520500005,26.062542752000127],[44.393783746000054,26.221452958000043],[44.34027408400004,26.376136350000138],[44.37327920300004,26.462021605000075],[44.47418313700018,26.49808441900018],[44.58497961300009,26.312464349000095],[44.76628293800013,26.124326177000057],[44.91916768500016,25.807405088],[44.95226273700018,25.716663493000055],[45.076908772000195,25.572322305],[45.09255697600014,25.521060948000127],[45.20092528200007,25.390299523000067],[45.26459728300006,25.40109138700018],[45.31657809800015,25.32995501300013],[45.29724267400013,25.265023961999987],[45.40012511600003,25.14622351900016],[45.49887067600008,25.16726765500016],[45.610746339,25.036056569000095],[45.54158847400015,25.032998874000157],[45.43834630300006,24.95835514400011],[45.29940104700012,24.926968805000172],[45.371886403000076,24.84998683700013],[45.46685481200012,24.798635549000153],[45.61686172900011,24.68397198800011],[45.79654627400015,24.50401764600008],[45.85050559600006,24.506805545000077],[45.929286208000065,24.409948560000032],[46.04484909100006,24.311652661000153],[46.06895092100012,24.20769103200007],[46.00312054800008,24.10912533600009],[46.049615497000104,24.041676182000117],[46.07398712500009,23.926832757000113],[46.04412963300007,23.819093976000147],[45.91426752900003,23.85677557000008],[45.944664615000136,23.69840495699998],[46.02533380199998,23.666299160000165],[46.029380751000076,23.564945566000176],[46.06949051500004,23.430856649000077],[46.1263276680001,23.35090691900018],[46.12767665100006,23.579334719000087],[46.04116187000011,23.699574076000033],[46.07821393800015,23.89256858700014],[46.141256414000054,23.970899537000093],[46.17525078700015,23.732938924000166],[46.276874178000014,23.937174961000153],[46.411592621000125,24.081426217000057],[46.47481496100016,24.0800772340001],[46.504762385,24.01226835200015],[46.587859742000035,24.08799126800011],[46.465372079000076,24.129809743000123],[46.29504048400014,24.082865132000165],[46.23496577100008,24.08907045400008],[46.193327160000194,24.158138387000122],[46.267970890000015,24.306976186000156],[46.349449469000035,24.31237211800004],[46.380655943000136,24.261740287],[46.52580652100005,24.314170762],[46.56897397900019,24.390343340000072],[46.46842977400007,24.485851341000057],[46.354125942,24.534234867000123],[46.28613719500004,24.522903409000094],[46.23460604200005,24.59017269800006],[46.16104149900008,24.60222361400008],[46.071469023000134,24.67515863200009],[46.029920345000164,24.8220179220001],[45.85814983400019,25.01483256800003],[45.938189496000064,25.07949382400011],[45.949880682000185,25.164659621000055],[45.874967156000025,25.260527351000178],[45.75985393399998,25.308281352000165],[45.50507599800011,25.34506362400009],[45.44733952300004,25.31079945400012],[45.28519175800011,25.43454616700012],[45.071153111000115,25.733031154000116],[44.98301955100004,25.948598649000132],[44.91646971900019,26.167763432000072],[44.87725927800017,26.436300994000078],[44.91467107500006,26.492148894000138],[45.01683406000018,26.410220655000046],[45.14606663800015,26.388367129000187],[45.01449582100008,26.56301547099997],[44.99686911000009,26.691168862000097],[45.06719609400017,26.802235135000046],[44.964673381000125,26.84567239000006],[45.00972941500004,26.907725611000103],[44.91080399000009,27.004942324000012],[44.93526555000011,27.061329817000058],[44.8740217190001,27.19874622499998],[44.90360941400007,27.339580058000024],[45.07735843300003,27.08273368100015],[45.24795982500018,26.957278256000166],[45.275658945000146,26.91689869600009],[45.379530641000144,26.916538967000122],[45.47737687800014,26.83524025400004],[45.4882586760001,26.76113611800008],[45.6692922040001,26.636669946000154],[45.89034556300015,26.545478691000085],[45.84448013900004,26.486033504000034],[46.03279817500004,26.404105265000112],[46.27858289,26.245914517000074],[46.4053872990001,26.19896990700005],[46.56483709800011,26.098065973000132],[46.77590798200009,25.770982545000095],[46.94902747600008,25.628529933000152],[47.067018528000176,25.593366441000057],[47.14678839400017,25.493092033000096],[47.287802090000014,25.445517896000126],[47.32512395500015,25.34659247100018],[47.38151144800014,25.28570836900019],[47.49734412700013,25.24523887700019],[47.56254497500004,25.162771045000113],[47.64618192600017,25.146403384000052],[47.797717691000116,25.00233199200011],[47.790613046000146,24.95214982200008],[47.88908881000009,24.873728939000102],[47.917237590000184,24.807358972000145],[48.03855613400009,24.662388259000124],[48.08900810100016,24.5743446300001],[48.11239047400011,24.40239425500016],[48.167249119000076,24.23907737200011],[48.18262752600003,24.102920014000063],[48.24225257800015,24.060382081000057],[48.263926239000114,23.88519414600006],[48.23856535800002,23.523306955000123],[48.237935832000176,23.281569189000038],[48.21500312000006,23.225271629000133],[48.2447706800001,23.12095027200013],[48.19045162800006,22.89692915000012],[48.19917505200016,22.745393385000114],[48.137211763000096,22.597275044000128],[48.22345674700006,22.47703568700001],[48.12111389800015,22.27324931100003],[48.05942040600013,22.271360735000087],[47.96040504900003,22.13502351300008],[47.95069237100006,22.02143913800012],[47.82244904700002,21.769359169000154],[47.78179969000013,21.633291743000086],[47.69744328200011,21.541830690999973],[47.59833799300003,21.382560757000192],[47.61137816300004,21.312503569000057],[47.52207548300004,21.133628414000043],[47.37917321000009,20.998999904000186],[47.32071727700003,20.882267902000137],[47.19894907200012,20.748358850000102],[47.12268656300017,20.595833831],[47.025200053,20.52847460900017],[46.95055632300017,20.443488676000015],[46.86772876300017,20.541874507999978],[46.801088999,20.530543050000176],[46.64523648800008,20.341955217000134],[46.59487445400009,20.36938453900018],[46.53156218200007,20.29851796200012],[46.33344153500019,20.181965825000134],[46.10123658300017,20.122610570000063],[45.95824437700003,20.122700502000043],[45.85113512200007,20.088616197000135],[45.62216772900018,19.90227666900006],[45.56533057600012,19.894362635000164],[45.43052220100003,19.81810012500017],[45.341219522000074,19.738779921000116],[45.43214098100003,19.617641241000115],[45.31846667400009,19.561973206000175],[45.29580375800009,19.44029493400012],[45.31693782600007,19.287859847000163],[45.26657579200008,19.203593371000125],[45.27799718200009,19.11060347200015],[45.35596840300013,19.08398353900003],[45.37224613200004,18.960506622000082],[45.34949328400006,18.806632620000187],[45.45183613300014,18.826777434000064],[45.524951016000045,18.720387636000055],[45.453544845000124,18.493039023000165],[45.27646833400007,18.50886709100007],[45.149843790000034,18.48035858200018],[45.114050773000145,18.52667366700007],[45.11072328100016,18.671734313000115],[45.07133297600018,19.24631116800009],[45.04084595800009,19.242534016000036]],[[46.317523535000134,18.53422797200011],[46.476703537000105,18.396901496000112],[46.658636387000115,18.289342579000106],[46.436144113000125,18.28079902000013],[46.374450620000175,18.385929767000107],[46.317523535000134,18.53422797200011]],[[45.583496881000144,18.158850950000158],[45.58025932200019,18.10363257700004],[45.74924193400017,18.11658281399997],[45.869391359000076,18.04544644000009],[45.85805990199998,18.014419830000122],[46.056180547999986,17.830868200000168],[45.840163393000125,17.889863726000044],[45.760573392000026,17.96082023600013],[45.70049867900008,17.91603399800016],[45.520274541000106,17.913425964],[45.469912506000185,17.965406778000045],[45.396797624000044,17.953895456000055],[45.32368274200019,18.01585874500006],[45.40489152300012,18.248063697000077],[45.458491116,18.295727766000027],[45.583496881000144,18.158850950000158]],[[46.218508178000036,18.327473834000045],[46.27210777200003,18.407243699000105],[46.36797550199998,18.342942173000097],[46.218508178000036,18.327473834000045]],[[47.90392762400006,20.152198265000095],[47.959145998000054,20.279452335000144],[48.118326,20.342674675000126],[48.24171298500016,20.438452473000154],[48.36680868100012,20.500595626000177],[48.540557701000125,20.614809526000045],[48.65585078700013,20.63063759400012],[48.49505200500016,20.480181016000188],[48.45287380100012,20.483418575000087],[48.22876274700013,20.30175552200012],[47.90392762400006,20.152198265000095]],[[49.07961133500015,21.003856243000087],[49.06018597900015,21.050710922000064],[49.20632581100017,21.194692381000095],[49.29724727000007,21.17913411],[49.254439541000124,21.089291837000076],[49.16099998000004,21.01797559900001],[49.07961133500015,21.003856243000087]],[[53.419919393999976,23.70083312700018],[53.388533054000106,23.759918585000037],[53.237087222000184,23.80740278900015],[53.231421493000084,23.867477502000042],[53.344376341999975,23.866847977000077],[53.39123102000008,23.81216919600007],[53.46497542800006,23.818374518000155],[53.466953937000085,23.743011331],[53.419919393999976,23.70083312700018]],[[53.143917458000146,23.77376814500019],[52.98770521800003,23.83986831500016],[53.106775457000026,23.88681292600006],[53.18582586500014,23.812978586000042],[53.143917458000146,23.77376814500019]],[[55.246802201000094,24.349963780000166],[55.22512853800015,24.376044119000085],[55.415874743000074,24.459681069000055],[55.41407610100009,24.393670831000122],[55.246802201000094,24.349963780000166]],[[55.36425366000009,24.556268257000056],[55.3543611180001,24.592870664000145],[55.47487027200003,24.67461903800006],[55.56003606900015,24.638196496000035],[55.386017253000034,24.54124957900018],[55.36425366000009,24.556268257000056]],[[51.53296187700005,23.31997024000009],[51.46955967200017,23.347489495000048],[51.47900255400009,23.415208445000133],[51.56542740300006,23.39695220800013],[51.53296187700005,23.31997024000009]],[[49.86355036300006,23.733928178000156],[49.701042869000105,23.796071332000054],[49.710036089000084,23.990864487000124],[49.77163964900012,23.931059571000105],[49.770920192000176,23.85803462100006],[49.86355036300006,23.733928178000156]],[[49.70158246200009,25.702274340000088],[49.58961686700013,25.724667459000102],[49.557421138000166,25.80317827400006],[49.6690270040001,25.82988813900016],[49.763545751000095,25.729343934000042],[49.70158246200009,25.702274340000088]],[[47.39230331200008,20.598262],[47.46209070300017,20.64952335700019],[47.59851785700016,20.68900359500003],[47.58880517900019,20.63054766200014],[47.39230331200008,20.598262]],[[47.82631613200016,25.268531318000157],[47.546806840000045,25.473037151000085],[47.50759639800009,25.440751489000036],[47.42306012600011,25.49767857500018],[47.11441280000014,25.75326590100002],[46.96017906900005,25.848953765999966],[46.92357666200013,26.039969769000038],[47.20758256400018,25.86855898700003],[47.51829833100015,25.620525967000106],[47.82631613200016,25.268531318000157]],[[46.35691384000012,26.374427638000157],[46.56798472500003,26.310845569000094],[46.75468398000015,26.202836991000083],[46.73265059000016,26.164705737000077],[46.35691384000012,26.374427638000157]],[[45.982885802000055,26.61679492900015],[45.70157786600015,26.690809134000176],[45.679364611000096,26.7472865580001],[45.982885802000055,26.61679492900015]],[[45.731165561000125,26.884523102000117],[45.54572535500006,26.98857466300018],[45.270892538000055,27.175723581000057],[45.157398095000076,27.281303989000037],[45.229613656000026,27.30198839600007],[45.30434731800017,27.253964599000028],[45.41415454000014,27.232380870000043],[45.477466811000056,27.102248970000062],[45.674418340000045,26.956648730000097],[45.85113512200007,26.859971610000116],[46.00428966600015,26.799087508000127],[46.00518898800016,26.75798849000006],[45.731165561000125,26.884523102000117]],[[44.009233639000115,27.374024092000127],[43.83728326400012,27.43670683900018],[43.524858785,27.64714819700015],[43.503904582000075,27.75497691099997],[43.430070242000056,27.841581624000128],[43.237615324000046,28.00031196500015],[43.125559797000165,28.11470572900015],[43.15352871200014,28.137818306000156],[43.34418498600019,28.053641762000098],[43.52422925900015,27.950309659000084],[43.822804179,27.665404435000028],[43.7273861110001,27.652634062000118],[43.74663160200009,27.569536705000075],[43.880001061000144,27.452804703000027],[44.009233639000115,27.374024092000127]],[[43.42980044500018,27.603800875000047],[43.322871054000075,27.646878401000038],[43.23788512100009,27.719004029000075],[42.96745898100011,27.895720811000103],[42.87114159000009,28.180266306000135],[43.01125596500009,28.235124951000103],[43.017731083000115,28.148430305999966],[43.14840257700013,28.024054067000122],[43.16396084799999,27.93619030300016],[43.258839324,27.889425557000095],[43.4586686830001,27.671969486000137],[43.42980044500018,27.603800875000047]],[[42.12740225800013,28.70897773700017],[42.05302832500013,28.730741331000047],[42.0121991040001,28.81132058600008],[42.06651815500004,28.873014078000097],[42.24368459800007,28.826698993000036],[42.233881988000064,28.79837034900015],[42.42273961800015,28.758890111000085],[42.61168718000005,28.797471026000096],[42.84182369100006,28.8007085860001],[42.84757935200014,28.740364077000095],[42.686151044999974,28.741982856000163],[42.527150907000134,28.71725150000009],[42.28757151400009,28.732360110000116],[42.12740225800013,28.70897773700017]],[[40.80719749400009,27.371236194000176],[40.831029528000045,27.4608986020001],[41.01530061600005,27.53023633100014],[41.04515810800007,27.46764351700017],[41.12142061700018,27.416831821000073],[40.911249055000155,27.322762735000026],[40.818798749000166,27.311161481000113],[40.80719749400009,27.371236194000176]],[[45.75526739200012,25.215381385000114],[45.82487491800015,25.166638130000024],[45.78035847600012,25.099548705000075],[45.69582220400014,25.184174910000138],[45.75526739200012,25.215381385000114]],[[45.63520789900019,25.01618155200009],[45.72235220500011,24.989921348000166],[45.735392374000185,24.920943347000048],[45.87397790200009,24.837486261000038],[45.91444739400009,24.715718056000128],[45.895291834000034,24.60681015600011],[45.65751108500007,24.761943209000037],[45.517666507000115,24.87678663400004],[45.52243291400009,24.96653897500005],[45.63520789900019,25.01618155200009]]]]},"properties":{"objectid":38,"eco_name":"Arabian sand desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Palearctic","eco_biome_":"PA13","nnh":2,"eco_id":810,"shape_leng":436.688913395,"shape_area":62.457848682,"nnh_name":"Nature Could Reach Half Protected","color":"#FFAA01","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":717036.2455548489,"percentage":2.7178810889361227}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-62.98420356999998,10.521364567000091],[-62.92369863399989,10.561530981999965],[-62.7506485429999,10.609587450000163],[-62.67464848599997,10.592717864000065],[-62.35834462899999,10.567698386000131],[-62.31846655099997,10.540579409000088],[-62.246730535999916,10.634516907000034],[-62.15037955299994,10.689723977000028],[-62.35967248999998,10.716148933000056],[-62.31927154899995,10.634550937000029],[-62.46963450999988,10.618937966000033],[-62.70346060799983,10.635918696000147],[-62.756011619999924,10.66533766800012],[-62.75101852099988,10.736963545000094],[-62.89658351299994,10.69361653300001],[-63.001365516999954,10.72001785100008],[-63.16615255999989,10.714033173000189],[-63.287937589999956,10.663100873000076],[-63.39227652699998,10.68015771100005],[-63.536537629999884,10.625212324000131],[-63.77172863599998,10.663901680000151],[-63.908969560999935,10.623944477000123],[-64.02980760299994,10.631999820999965],[-64.12826562899983,10.613620152000067],[-64.25597347899992,10.659031962000086],[-64.29164853499992,10.630193186000156],[-64.2482755389999,10.519285855000021],[-64.19774657699998,10.549767819000067],[-64.0080485179999,10.57480204899997],[-63.815185618999976,10.545229857000095],[-63.73728957499998,10.492676832000086],[-63.789207586999964,10.43905930700015],[-64.06764250799984,10.443631970000183],[-64.12699157899993,10.355143380000072],[-64.32978854199996,10.39652248900012],[-64.33606759299988,10.347655658000122],[-63.89621750099991,10.32211449000016],[-63.49626157899996,10.409266670000022],[-63.38109557099989,10.415843949000077],[-63.17847462799995,10.378848743000049],[-63.13010450899992,10.396498349000069],[-63.107376475999956,10.484435242000131],[-62.98420356999998,10.521364567000091]]],[[[-63.842365616999984,11.118103100000155],[-63.88876749699989,11.155742539000073],[-64.01000954799997,11.05321862000011],[-64.02404051799988,10.99318374100011],[-64.12873853599996,10.994790887000022],[-64.20580259199994,11.078744867000125],[-64.38041657799994,11.039598530000092],[-64.39408159499993,10.966440776000127],[-64.24036453099995,10.934516789000043],[-64.2045825219999,10.978207962000113],[-63.87757463899999,10.933203848000062],[-63.777439561999984,10.996330643000078],[-63.842365616999984,11.118103100000155]]]]},"properties":{"objectid":40,"eco_name":"Araya and Paria xeric scrub","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Neotropic","eco_biome_":"NO13","nnh":4,"eco_id":597,"shape_leng":10.2588961868,"shape_area":0.434595627609,"nnh_name":"Nature Imperiled","color":"#B29841","color_bio":"#CC6767","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":5293.230487027064,"percentage":0.020063659444354447}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-142.254252845,69.85851152000009],[-142.36149571399994,69.91863879400017],[-142.88441415099987,70.0622568730002],[-143.22525060499999,70.10775680700004],[-143.88871422699992,70.07932032100018],[-144.01055054899996,70.04886575600017],[-144.4020959949999,70.03308386700007],[-144.5689435799999,69.98954393600013],[-144.4086000229999,69.9300894800001],[-143.93542793799986,69.92679583800009],[-142.885908998,69.79680138500004],[-142.62882037799983,69.80878596200017],[-142.254252845,69.85851152000009]]],[[[-145.40505931799996,70.03549202300002],[-145.85910534699997,70.16899268000009],[-146.08946894999994,70.14548354800007],[-146.52034175599994,70.19149255700006],[-146.85735993499995,70.18622885800016],[-146.9868144229999,70.14974701900013],[-147.25194175799996,70.18703787700008],[-147.68705086999998,70.20000143200019],[-148.06096923299995,70.31069226300013],[-148.50138742599995,70.31911945400014],[-148.49452387499997,70.37091945200007],[-148.73428758199992,70.41483758600015],[-148.8930693549999,70.38945574100018],[-149.16757860699997,70.48944659100005],[-149.4624241079999,70.51851017200005],[-149.7781695129999,70.49350102300014],[-150.43591480299995,70.40428272700018],[-150.42796041899993,70.49998272100015],[-150.79486948699991,70.4953190170001],[-151.0690602589999,70.41800988099999],[-151.56386936799993,70.43859160600005],[-151.87805116099997,70.4313188220001],[-151.72393316899996,70.54304611500004],[-151.975305922,70.56522788500007],[-152.5249149489999,70.54202778500019],[-152.41894233999997,70.61062779800005],[-152.47039700899995,70.68560960200017],[-152.26739727399993,70.83580053600019],[-152.5931518909999,70.88630956400004],[-153.24027919299996,70.92524580400004],[-153.50400637899992,70.88454575800017],[-153.88606999199996,70.88653659700009],[-154.16416977499998,70.770118374],[-154.35323351299996,70.83689106000014],[-154.56379711299994,70.82525465900005],[-154.64321543299994,70.90943645400012],[-154.6118338169999,71.02371827000007],[-154.77235209299997,71.08524550800018],[-155.14657938099998,71.11148179900005],[-155.26507920899994,71.01906360400011],[-155.50765177999995,70.94098174800018],[-155.5047970939999,70.85813630000013],[-155.97646063399995,70.82546348900013],[-155.98783359399994,70.96322711300019],[-155.71696092199994,70.98130897900006],[-155.50960656799995,71.07992719100008],[-155.56367943899994,71.1641817200001],[-155.9539885309999,71.18573619100016],[-156.1761522719999,71.25635432500013],[-156.34168862899995,71.25986338500007],[-156.63842510399994,71.34023605000004],[-156.81227044599999,71.2865360240001],[-157.23967907899996,71.05241778300018],[-157.49915160099994,70.94892683600011],[-158.00876043799997,70.83483584400011],[-158.9941147529999,70.76734476100012],[-159.660387425,70.78552645600018],[-160.05957802199995,70.627662762],[-159.90999619899992,70.61370824500011],[-159.73002328899992,70.48666283400001],[-159.97810504899994,70.47020824500004],[-159.90133251899994,70.58613552100013],[-160.216723333,70.55494455900009],[-160.74015932799992,70.36879902700002],[-161.31552268299995,70.24403529900019],[-161.5366499129999,70.23762616900012],[-161.92422266899996,70.29212609500019],[-162.15933150899997,70.15366243000017],[-162.31455868799995,70.10910786000017],[-162.33535857799998,70.04038059100003],[-162.60034925499994,69.91317146400007],[-162.96363990399993,69.78037141300007],[-162.92691251399992,69.69481688400015],[-163.11029414199996,69.58466231500012],[-163.02549409899993,69.54476233400004],[-163.0898301789999,69.42149565600005],[-162.70668633099993,69.42841025000018],[-162.235692614,69.50802842800005],[-162.06709949999998,69.62761724500007],[-161.6632205889999,69.75165783100016],[-160.63750037499997,69.75438053800013],[-160.0834576729999,69.71180471900016],[-159.57673195599997,69.72827825400009],[-159.39829676199994,69.77878376500018],[-159.33701534699992,69.94473386600015],[-159.0934307859999,69.99243434599998],[-158.63063157999994,70.03133405900007],[-158.34600695499998,69.99410500900012],[-156.80467076999994,70.06335660600013],[-156.13756793699997,70.0306941830001],[-155.75634128399992,69.98343855200017],[-154.42209670699998,70.00499688000008],[-153.87324110999995,69.93344046800007],[-153.3704441159999,69.91235858200014],[-152.68399675799995,69.90574186700007],[-151.99838186299996,69.93923563300007],[-151.63704815799997,70.12360645500013],[-151.50662959299993,70.1527918760001],[-150.30172664899993,70.16873093700019],[-149.77910666699992,70.1808840540001],[-149.71866303099995,70.09901475900006],[-149.68188032699996,69.76421757300005],[-149.46349584399994,69.73732788100006],[-149.15196212499998,69.75883442800006],[-148.68018612299997,70.05207951500006],[-148.41674233299995,70.07473013700013],[-148.06104362499997,70.04139157700001],[-147.90915678599998,69.95394218600018],[-147.87823123299995,69.86891207200017],[-147.93650747199993,69.73859850600013],[-147.71305893899995,69.73624077900018],[-147.2327874369999,69.94860601400006],[-147.06989049099994,69.97203813400012],[-146.55617942099997,69.95412009100005],[-146.33014077899992,69.96339168500015],[-145.78307436799994,70.03345956100009],[-145.40505931799996,70.03549202300002]]]]},"properties":{"objectid":41,"eco_name":"Arctic coastal tundra","biome_num":11,"biome_name":"Tundra","realm":"Nearctic","eco_biome_":"NE11","nnh":2,"eco_id":407,"shape_leng":74.8247647328,"shape_area":11.9284484691,"nnh_name":"Nature Could Reach Half Protected","color":"#78F3F1","color_bio":"#9ED7C2","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":49782.545927703584,"percentage":0.582582094984893}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-7.970249561999879,71.17423874500008],[-8.347913308999921,71.13371626600019],[-8.517211491999944,71.00926595900006],[-9.116265441999928,70.86600867200008],[-9.043915535999872,70.800887822],[-8.61850058899995,70.95861914700015],[-8.386982532999923,70.95861914700015],[-8.006423508999944,71.02808098500003],[-7.970249561999879,71.17423874500008]]],[[[19.174163527000132,74.51528748200013],[18.7902815810001,74.47498712400005],[19.051654468000038,74.34303585100014],[19.18193858000012,74.3586003750001],[19.29999148400003,74.46749470800006],[19.174163527000132,74.51528748200013]]],[[[54.880573536999975,73.46125879800019],[55.06384250900004,73.46344815100002],[55.375820634000036,73.37576590000009],[55.72549452400011,73.37040952900003],[56.322639579000054,73.2983529890002],[56.63804255000008,73.30587608300004],[57.08378260500018,73.40472135200008],[57.10337061000001,73.54755233500015],[57.575603515000125,73.6805563750001],[57.25295656900016,73.82582213300003],[56.84614156900017,73.85867567300016],[56.84893458600004,73.91755569300011],[57.32984963400003,73.85076315700007],[57.55500063000011,73.76105885500004],[57.874034473000165,73.81069179200006],[57.78888355600003,73.94320716700014],[57.533996586,74.04975121500007],[57.307533488000104,74.08271941900011],[57.601474595000184,74.15721811000014],[57.67492253000012,74.06144765800019],[57.96462256199999,74.00195693199998],[58.06798551000003,74.07677564400012],[58.29262152100006,74.12279966900007],[58.81501760200018,74.29833952000001],[58.71027750700017,74.42204249700018],[58.477828556000134,74.50787922100011],[59.04341859600004,74.47007264600006],[59.23056453400005,74.67723993300007],[59.46255147400012,74.67334083900005],[59.74187454200012,74.60464946600007],[59.85358050100007,74.74335336800016],[60.20507460500011,74.74796877900019],[60.36141553900006,74.8376963820001],[60.66271947800004,74.88842768299997],[60.588710626000136,74.96511556000013],[60.24553254300008,74.97601102800013],[60.40957259100003,75.05773458400006],[60.86270850300019,75.06640985400003],[60.95359448500011,75.17277033800008],[61.18151050200004,75.24291965900011],[61.62322959200003,75.28509052300006],[61.644138584000075,75.34871553800008],[61.88626461000007,75.44108360800004],[62.40306459700014,75.47251826000002],[62.85837159000005,75.56429054400007],[63.43353258900004,75.63995649900005],[64.53495758300005,75.74453951700013],[64.84262053600003,75.7993221270001],[65.25987251500004,75.81190403400012],[65.86544758500003,75.96579057999998],[66.39511161400003,76.0082432430001],[66.75290656300018,76.09487323000019],[67.28613256600005,76.14352950800009],[67.98867049800003,76.27126937700007],[68.38955664300005,76.44403364500016],[68.66433755800017,76.482877228],[68.89272363200001,76.5976078810001],[68.78096755000013,76.6441579540001],[69.07533261300011,76.72432532500017],[68.8062896140001,76.92027662000004],[68.43646948500009,77.03555678999999],[68.04237351900014,77.05557763600007],[67.28383659500003,77.020244059],[66.72847750600016,76.94431072100008],[65.86666849300019,76.7837240180001],[65.7863155460002,76.72337096200016],[65.96720154300016,76.59196920700003],[65.48973849800007,76.62021555000013],[65.2556995,76.52560498500014],[64.92561361500015,76.54028387700015],[64.75913258900005,76.47511743000013],[64.16546652700004,76.37528024600016],[63.752460485000086,76.38865558400016],[63.47010752700004,76.3251750730002],[62.94402357600012,76.26084765400014],[62.58260747800017,76.24604471000015],[62.215461511000115,76.3194059760001],[61.68558156400019,76.34923934900019],[60.93610748800012,76.2988206930001],[60.856197608000116,76.15259403300018],[60.955821556000046,76.08770888200019],[60.663764534000165,76.03830561000012],[60.40367860400005,76.1449026310001],[60.093063545000064,76.08292533000014],[60.19292453300005,76.02628897800008],[59.416915531000086,75.95560505900005],[59.12907762300006,75.88656952500008],[58.84261652700013,75.88689759300001],[58.42794751500003,75.80231999900019],[58.38595149800011,75.73723804100013],[57.95599356000014,75.69153454000019],[58.12554152400003,75.61741823200015],[57.442508616000055,75.50461742900018],[57.64785350900013,75.4551524650002],[57.605731596000055,75.36697333500007],[57.28578161100006,75.43393418000005],[56.68457049400013,75.33963559000006],[56.90889352500017,75.29003450500005],[56.51082252600003,75.14869013600008],[56.375358565000056,75.1435099520001],[55.99733355800009,75.24678103400015],[55.71608349100012,75.11583642800008],[55.84112556100007,75.00143417900017],[56.23763652000014,75.06142765100003],[56.299995533000015,74.99764991700005],[56.565780486000165,74.96207846100009],[55.82741947300008,74.88937349700012],[55.842151506000164,74.80183575000018],[56.36735954700009,74.79529686000006],[56.46791455800019,74.64035670900012],[56.10968358300005,74.70503566500008],[55.58401151900006,74.72895560500018],[55.45842747500012,74.63631327900009],[55.546428574000174,74.54124405700009],[55.73604951900006,74.55503195200004],[55.99375163600007,74.50211867400014],[55.31820259300014,74.45681297800019],[55.22614649800016,74.39091361700008],[55.643432507000114,74.368794278],[55.60682253300007,74.3111735550001],[55.13082447700009,74.31992493200005],[55.18060661200019,74.26207521600014],[55.445606516000055,74.2529189930001],[55.80308949000005,74.18135145300005],[55.55445860500015,74.1314280000002],[54.94357661600009,74.16776975300019],[54.601245608000056,74.07658470400014],[54.77509348900014,73.99694438700016],[55.096725554000045,73.8413707310001],[55.06663552700002,73.74888196199998],[55.082527616,73.68787344100008],[54.880573536999975,73.46125879800019]]],[[[107.69429757400007,78.19947658300003],[107.08509867100014,78.16398274400018],[107.4197005580001,78.0980599130001],[107.85900163600007,78.08316627700003],[107.69429757400007,78.19947658300003]]],[[[22.86553943900003,78.24914707099998],[22.45611146400006,78.20024017500015],[21.83750354000017,78.20829769800008],[20.934160521000024,78.12162127500005],[20.870273487000077,78.08023646700013],[21.352218503000188,77.96355987100003],[21.630559547000132,77.93604593900011],[21.55694548300005,77.85437569200019],[21.254714506000084,77.72604054000004],[21.185279490000084,77.59991804300012],[20.8833375210001,77.56631616600015],[20.89277655000012,77.44213173300017],[21.12054856700007,77.43407437700017],[21.619159488000037,77.48574428400008],[22.086942441000133,77.4921376640001],[22.436111573000062,77.56964294400007],[22.641374491000192,77.53964193300015],[22.40748754100008,77.419912984],[22.501943543000152,77.33241379400005],[22.77083047100018,77.26240160000009],[22.958047487000044,77.35073998700011],[23.390281447000177,77.37268448000015],[23.890558524000028,77.49685282000013],[24.175832575000072,77.66742773500016],[24.90859749500015,77.75437858100008],[24.290277573000083,77.90522182500018],[23.890277563000154,77.84660851700016],[23.657506579000028,77.86160877100014],[23.11277758799997,77.98771651600009],[23.05638347200005,78.05133449100009],[23.47303949800005,78.14635694200001],[23.219152489000066,78.22135921800003],[22.86553943900003,78.24914707099998]]],[[[106.88970158799998,78.29844506700005],[106.68609661099998,78.35347913400017],[106.09809855900005,78.25775428000009],[106.38150059600014,78.20859441700003],[106.609702604,78.29021889900014],[106.88970158799998,78.29844506700005]]],[[[21.227212475000158,78.61721471200008],[21.055822504000048,78.5485919030001],[20.171112456000174,78.48775085300008],[20.663888567000186,78.38636368800002],[20.843896476000168,78.22329728199998],[21.09944343700016,78.20246808400003],[21.778327471000182,78.25274843900007],[22.1633285690001,78.24357813400007],[22.242774593999968,78.476930654],[21.80499248500007,78.58999179900019],[21.227212475000158,78.61721471200008]]],[[[11.2649934800001,78.53110373300012],[11.271937552000168,78.60610550500007],[11.064162577000104,78.68443388800006],[11.183597489000135,78.72610921300014],[10.825835564999977,78.87666244400015],[10.488614501000143,78.89557000600013],[10.536655547000123,78.77306379700008],[10.900564591000148,78.61555174300008],[11.073324500000126,78.45498699900008],[11.322503562000179,78.44636570900013],[11.85388755800011,78.29636166100016],[11.872488510000153,78.40136478000011],[11.464435502000185,78.53581939200012],[11.2649934800001,78.53110373300012]]],[[[20.237222538000026,79.10585066600015],[20.123891495000066,79.04613798800005],[20.34249153000019,78.99001326700011],[20.829162599000085,79.05891133800003],[20.237222538000026,79.10585066600015]]],[[[103.40380065600004,79.29189840700013],[102.80650355300008,79.40894112400008],[102.43789662000012,79.39747384200018],[102.53299752600009,79.24949150900005],[102.40869859600014,79.22528172300014],[101.7520975160001,79.32280717800006],[101.77809851500018,79.24009891600014],[101.43229656100016,79.21303593000005],[101.28630057200007,79.10952747200008],[101.43139651200005,79.04787857400004],[101.1239015330001,79.00957562400004],[100.94660164900012,78.87373313600011],[101.357597543,78.79687661600013],[100.65830256900011,78.77749681800015],[100.47299964400008,78.68807414800017],[100.36939965600016,78.47999139000012],[100.07820161100005,78.42992393500009],[100.237701517,78.3688383010001],[99.98137654700008,78.31503955900013],[99.58210760700018,78.15674161700014],[99.50670652000014,78.08841586300008],[99.57454662700007,77.94494282600004],[99.90458658,77.92374683700012],[100.28130367400018,77.94521725000016],[100.61280056900006,78.0381041600001],[101.06089761600009,78.09433667200017],[101.45099658700019,78.19687450500004],[102.104896515,78.18951988800018],[103.36019866600014,78.23213348400014],[103.98130054199999,78.27855296700017],[104.43379959700013,78.34063034700011],[104.81970258700005,78.33479335800007],[105.05729651800016,78.37409509600013],[105.55950160000003,78.54904838200008],[105.39739961600009,78.77520000900012],[104.71700264800006,78.93729763400017],[104.26809658000013,79.01915932400004],[104.21099855200004,79.11342706900007],[103.686599532,79.119866382],[102.9166025340001,79.01637368200011],[103.05850262200016,79.13719429000002],[103.08699757300013,79.26987864400013],[103.40380065600004,79.29189840700013]]],[[[76.12542748800013,79.68830341900019],[76.43225057500007,79.58123215000006],[76.87424459100009,79.52223830300005],[77.46386755800012,79.53466715700006],[77.617843623,79.5872840510001],[76.76550264000008,79.6784235020001],[76.12542748800013,79.68830341900019]]],[[[16.819156516000135,79.87146795200005],[16.521669528000018,80.04341582300015],[16.02276255800018,80.00815013900012],[15.731107531000077,79.87285683400006],[15.647497544000089,79.7642523470002],[15.892498562000128,79.49587688200018],[15.973892542000158,79.3239286770002],[16.151107433000163,79.2272578400001],[16.13220557,79.0530663020001],[15.630001494000169,79.30337423800012],[15.48971659800003,79.33282522900004],[15.291664463000075,79.59978046300006],[14.845265590000054,79.76730369500007],[14.557785589000048,79.80534663900005],[13.890822465000099,79.52894499900003],[13.914719439000123,79.35754530500009],[13.274999511999965,79.59672961800015],[12.701395535000017,79.59700370600007],[13.015838442000188,79.6878306800001],[13.884723457000177,79.72562937500004],[13.8247145630001,79.87451997100004],[13.095836499000143,79.82812915400012],[12.050840490000155,79.68505375500007],[11.83999053000008,79.83591225400016],[11.238320588000136,79.75868173400016],[11.366101529000161,79.63423813200012],[10.963882493000085,79.63979248400017],[10.697785566000107,79.51339439000003],[10.918342440000174,79.44226874400016],[10.843886496999971,79.36392561000014],[11.129174462000151,79.24169382400015],[11.236380513000086,79.09225337500015],[11.916390572000125,79.1819662260001],[11.755265582000163,79.07502470900016],[12.109154564000107,78.9955677870002],[12.444166493000068,78.99140147800017],[12.251111482000056,78.89224239000015],[11.602489471000013,78.97557761800005],[11.646676518000106,78.86750689100018],[11.875279516000148,78.84390009900005],[11.641674533000185,78.73776760200008],[11.925548471000127,78.62637093600006],[12.355558545000179,78.58915126199997],[12.540279430000169,78.49887430900014],[12.584173445000147,78.3927579060001],[12.871102587999985,78.35358558500019],[12.979167448000055,78.20497041800013],[13.62777152100017,78.19328168600003],[13.757510475000117,78.24914707099998],[14.325269583000079,78.30524312600005],[14.364999469,78.38553941100014],[14.67472152,78.43803426500006],[14.385552566000172,78.49692149300017],[14.588062532000095,78.55275703900008],[15.240825537999967,78.60831799300018],[15.298052478999978,78.4997143440001],[15.464176436000173,78.4508208580001],[16.01445357700004,78.47859395900008],[16.309438566000154,78.56220260500004],[16.364711518000036,78.64778083100009],[16.831108439000047,78.67109744200008],[16.464155591000065,78.52470984900009],[16.40665255000016,78.42970215000014],[16.851388454000187,78.38358626000007],[16.818881589000057,78.33303064300014],[16.102500441000075,78.35552381600007],[15.76583258200003,78.33441918900013],[14.994994544000178,78.1330201610001],[14.552492584999982,78.09357324800004],[13.876935496000158,78.09189586200017],[13.588888543000166,78.04855806900002],[13.721661578000067,77.75965767100007],[14.47916149300005,77.75105113300009],[15.133879495000087,77.79660241800019],[15.600007524000034,77.88216438300003],[15.814715506000084,77.82939560900007],[16.66472246400008,77.85632968100015],[16.85527648300007,77.80354481300003],[15.66665555700007,77.74632139300007],[14.752227470000037,77.66187321500007],[15.913893537000092,77.56408875900013],[15.440556567999977,77.52519136400008],[15.00166251600018,77.56631616600015],[14.52693448600013,77.50103471900019],[14.32583955299998,77.58243087800014],[13.914161540000066,77.52686925400019],[13.968616585,77.40518782400005],[14.13749550600005,77.3007338880002],[14.467214431000116,77.17072017600009],[14.739726532000077,77.17545142500012],[15.072488592000127,77.11877668300008],[15.250548546000118,77.01488752000012],[15.72832758900006,76.9976595240002],[15.568610591000095,76.91154804100017],[15.978615576000152,76.74932083100009],[16.28054849300014,76.70764584100016],[16.331659494000178,76.60597033800008],[16.822500560000094,76.56818689800008],[17.198329508000086,76.69374395200003],[16.94361453400012,76.8143119290001],[17.32026658600006,76.97154972700014],[17.32583049300007,77.04293420600004],[17.6230524450001,77.43268583100019],[17.80055651100008,77.48740708600019],[18.284717535000084,77.50019552300006],[18.449153544000183,77.76188625200012],[18.333892485000092,77.89745431600011],[18.552486485000088,78.05438600700018],[18.859447537,78.03079430200012],[19.07109847200013,78.08467703100018],[18.91999052700004,78.173015921],[19.06499057900004,78.35775222900014],[18.965545500000133,78.45526259600007],[19.681383501000028,78.51137206200008],[19.57777747800003,78.56971094700009],[20.13167359000016,78.63694571200017],[20.619728510000073,78.6325058180002],[21.331935471000122,78.65527307900004],[21.534728578000056,78.8419471150001],[20.960836598000185,78.91446113900008],[20.516376459000128,78.93445164300016],[20.044445470000028,79.01308613200007],[19.670841582000037,79.14725039500013],[19.34806253700009,79.18391937700011],[18.978614564000168,79.15336935200008],[18.822778555000014,79.24949150900005],[18.88583360100006,79.44115478900011],[18.742488472000105,79.533384893],[18.35694355700008,79.62755389900013],[17.747493532000192,79.59923128100007],[18.098325466000176,79.71951008300016],[17.566944488000104,79.88924513100005],[17.03917543900002,79.956205808],[16.819156516000135,79.87146795200005]]],[[[91.98007966200015,80.11558702700006],[91.12626665000016,80.09436069500003],[91.52593959800004,79.96341608900019],[91.50950654200017,79.87255843800006],[91.7897715680001,79.82897639700013],[92.38503253900018,79.79973881000012],[92.19103959200004,79.6976961800001],[92.46734651600002,79.65351114500004],[93.13110356200008,79.67531716900004],[93.54810358100002,79.73425938200006],[94.05137651700005,79.88786429600009],[93.58453351100013,79.99104401600005],[92.70274355000004,80.07410331200003],[91.98007966200015,80.11558702700006]]],[[[51.28417548400006,79.93786335400006],[51.62694955900014,79.96915350200015],[51.19001050200012,80.09917526100014],[50.853736593,80.09278908900006],[50.19703660699997,79.9899446450001],[50.33985149600011,79.9428918260001],[50.994914497000195,79.91579765900019],[51.28417548400006,79.93786335400006]]],[[[59.304695594000066,79.97784436199998],[59.743347577000065,80.06768663000008],[59.37854351400017,80.14038488800003],[59.00013361000009,80.11508327500013],[58.600814545000105,80.03345074600014],[59.057266506000076,79.96097377000018],[59.304695594000066,79.97784436199998]]],[[[97.87951659100008,80.16402923099997],[97.72705061000005,80.1953884450001],[96.74944258800008,80.19461848300017],[96.56915254400013,80.11734974100006],[95.87029259100007,80.12035633000005],[95.51934062800018,80.07990208000001],[95.13777963100006,80.11783790300012],[94.56773360400018,79.90030086100012],[94.82745358000005,79.83600395200011],[94.344436518,79.78851443600013],[93.7208326450002,79.58979359300008],[94.05679357300005,79.58886974000012],[94.17839856000018,79.5153636340001],[94.60759760100012,79.45075324200013],[94.5331575830001,79.3306427490001],[94.9294665380001,79.09955619200014],[95.28624761200007,79.05111348600019],[95.74619264700004,79.100853208],[95.94570960300013,78.99920737700006],[96.49517051400016,79.03101636400015],[97.08448754199998,78.95445790500008],[97.52455154100011,78.84333515800012],[98.48312359100015,78.79213078200002],[98.79675261500017,78.81868230499998],[99.49446860600011,78.81710315400016],[100.14649953700007,78.93961724200005],[99.94204765200016,79.0939555720002],[99.48075061600014,79.21553071900013],[99.64954353800005,79.30194713500009],[99.97651655200019,79.3632071130001],[99.97453255599999,79.750884552],[100.27580263100003,79.78310559400006],[99.53588861900016,80.0089596630001],[98.95200356700019,80.0721955910002],[98.48416160600016,80.02011379700019],[98.6347126570002,79.97050416200017],[98.42855857500018,79.87982269800017],[97.93798858000008,79.9022618910002],[98.15033755900009,80.06870184600007],[97.87951659100008,80.16402923099997]]],[[[33.50888848300008,80.1912068810002],[33.28665556400017,80.24176400700014],[32.87054855300005,80.19259660100005],[31.493602523000106,80.11008665400016],[31.55471246400009,80.06954037100007],[32.28749046000013,80.08731855600013],[33.50888848300008,80.1912068810002]]],[[[50.345016593000025,80.18170884400007],[50.297531602000106,80.25584107800006],[49.93002655400011,80.25893048000006],[49.53611750599998,80.17798526700011],[49.955078554000124,80.06819088500015],[50.09145748300011,80.16105415800013],[50.345016593000025,80.18170884400007]]],[[[56.24251160200009,80.350481817],[56.030559590000166,80.30991340600008],[55.956584601000145,80.18123509900005],[55.75770148400005,80.13764534600006],[56.03782250900008,80.07157717400008],[56.72677253800015,80.10674462200018],[56.98186151300007,80.16624238800006],[57.003250621,80.31698706100013],[56.88479253600008,80.35368672200008],[56.24251160200009,80.350481817]]],[[[53.963951571999985,80.24925591900006],[53.81610150500018,80.32351069700007],[53.316154508000125,80.40663134800008],[52.808822551000105,80.39987084000006],[52.82073960600013,80.33599336200018],[52.38707351400018,80.2790894600002],[52.41271258200004,80.20742854600007],[52.81271762100016,80.16547175600004],[53.54679850000008,80.17812206000013],[53.963951571999985,80.24925591900006]]],[[[58.349910488000035,80.18338656500009],[58.042571579000025,80.2729995040001],[58.58000160900019,80.3560442160001],[59.080604574000176,80.36237724600005],[59.22346455900009,80.4166871180002],[58.90780258799998,80.46619751100019],[57.82762957400007,80.51354151800012],[57.19921147100001,80.50128818100012],[56.95567661500013,80.46707559900017],[57.160835597000016,80.36636736800017],[57.18078251500003,80.18614052400011],[57.58939761300013,80.10711007300011],[57.845798523000155,80.17890040300011],[58.349910488000035,80.18338656500009]]],[[[23.30112247300019,80.40122854100008],[22.40832556400005,80.42594912100014],[22.53276849500014,80.3162321870002],[22.37609446400012,80.10286748900012],[21.856119579000108,80.14287984500015],[21.872493460000157,80.25650458900014],[21.293064562999973,80.2567791800002],[20.826665462000165,80.21316629400013],[20.329446439000037,80.42039543900017],[19.701118525000084,80.49901383500008],[19.4847085130001,80.38900621800013],[19.91693157700007,80.37455514600015],[19.827762544000166,80.27956203100013],[19.385539535000134,80.31343866600008],[18.787778577000097,80.19232083600008],[18.14222149300008,80.18287543700006],[18.239711576000104,80.04147725700017],[18.736104479000062,80.02315005800017],[18.812778441000034,79.97535644600003],[18.188602587000048,79.89786793000019],[18.471658451000167,79.78201427000016],[18.707494529000087,79.74645924300006],[19.57028053600004,79.7111786390002],[20.39192950400013,79.79339790000006],[21.699447560000067,79.83313516200008],[21.952506437000068,79.7650766230002],[21.77609855600008,79.7006340370001],[21.279987452000057,79.71563378800016],[20.49083545900004,79.68366470600017],[19.642768576000037,79.6092272030001],[19.67333050400009,79.55227736800009],[20.273321551000038,79.45421748299998],[20.743339454000136,79.45865821500007],[20.968877525000153,79.36392561000014],[21.37499649300014,79.39421529300012],[21.694431494000185,79.3625363930002],[22.14637751099997,79.40505024400017],[22.65581852200006,79.35920995100014],[22.661382597000113,79.2911505740002],[22.926660445000095,79.21836078500019],[23.759162468000113,79.17335968800012],[24.23250044400004,79.22420515100004],[24.281671536999966,79.30419834700018],[24.776948474000164,79.36781699200003],[25.149164486000018,79.32560706900017],[25.632770461000177,79.39255249100006],[25.97359457000016,79.50394882300003],[25.81611855800014,79.61755898300004],[26.44971651000003,79.70924040700004],[26.62776556800003,79.77812288800004],[27.18860860100017,79.86701146200011],[27.101121480000018,79.96675007500016],[27.236650484000165,80.09510165600017],[26.800001608000116,80.17149180700017],[25.94610544800014,80.18508893000012],[25.543617521000158,80.23370614800018],[23.960828545000084,80.2767690140002],[23.55750443900007,80.12786400100015],[23.047508546000074,80.24426600500004],[23.308334597000055,80.28261438500004],[23.30112247300019,80.40122854100008]]],[[[54.37319162400013,80.47069976600011],[54.112342606000084,80.57805183000016],[53.812931469000034,80.49448928400005],[54.37319162400013,80.47069976600011]]],[[[57.90044350300013,80.56789782400006],[58.02633650300004,80.65146070500003],[57.23835361700003,80.63621553200011],[57.292468525000174,80.56793537500005],[57.90044350300013,80.56789782400006]]],[[[56.76245463600003,80.67245837900009],[56.405006530000094,80.76132298100009],[55.790859623000074,80.74587345700007],[55.50967057500003,80.69620129300012],[55.645149623000066,80.63417085100014],[56.47316347300011,80.63143902100006],[56.76245463600003,80.67245837900009]]],[[[48.536548561000075,80.82311822700018],[48.375011517000075,80.84907597500012],[47.279933468000195,80.88653805300004],[46.913101487000176,80.79253098600009],[46.04825956700017,80.70959255700006],[45.69395048400003,80.71339291200013],[44.88163359200007,80.64558499100008],[44.874198509000166,80.60236236600008],[45.44557155900014,80.54976793499998],[45.96849854900006,80.55449851400016],[46.21399661500004,80.46894493100012],[46.63590960200003,80.54600731100004],[47.03688861900008,80.5464039420001],[47.278514580000035,80.69363056300006],[47.91927755100011,80.75129101600004],[48.49301949400012,80.65065168400014],[48.63409061300001,80.72121322700019],[48.28572061099999,80.76812942200007],[48.536548561000075,80.82311822700018]]],[[[54.62402762100004,80.89965372000012],[54.17228360800004,80.8831046580001],[53.96116660100006,80.82838340300009],[54.506717521000155,80.79480415800003],[54.97849260700008,80.71841350400007],[55.68857961700013,80.799449912],[55.040058524000074,80.90110429200007],[54.62402762100004,80.89965372000012]]],[[[62.166042480000044,80.87393468800019],[61.77267859000011,80.92136134100008],[60.94864262400006,80.8915058400001],[60.37982957500003,80.81712114300012],[59.74583063200009,80.85025866200004],[59.27340662000012,80.68072813200018],[59.35827255200019,80.49977692400006],[59.67074956700003,80.43191686800003],[60.349010490000126,80.50252384100008],[61.011566577,80.43542653800012],[61.35119257700006,80.4606196900001],[61.37521360300019,80.5322578040001],[62.10003247800012,80.67109145800009],[62.02278854600007,80.74929796700008],[62.166042480000044,80.87393468800019]]],[[[58.625648616000035,80.79748200800009],[59.036746601000175,80.85112719400013],[58.79752758700016,80.93874239000013],[57.82724350400014,80.81943371000006],[58.35425952200018,80.75714208800014],[58.625648616000035,80.79748200800009]]],[[[49.925785479000126,80.91691340000017],[48.990535572,80.84400945000004],[48.8596035380001,80.78623517100004],[49.54867946400003,80.75444160600017],[49.22784854100013,80.60912119800008],[48.93598162000012,80.55227144200012],[48.43461254900018,80.60516242500017],[47.93613858700007,80.60909873399999],[47.54456758600003,80.53608799900019],[48.17071955900019,80.49174974300018],[47.58172959200016,80.44214044300008],[47.817501465000134,80.34533968699998],[47.26297754900014,80.35606718200006],[47.091373504000046,80.41442886500016],[46.55562957700005,80.31487348100006],[46.93860661300016,80.19607525800018],[47.381206472000144,80.21134255900017],[47.6296955360001,80.29486034600018],[48.01891759200004,80.2027747460001],[48.014156504000084,80.12664259000007],[48.38778352600019,80.10775883200006],[48.43502058000007,80.2167453670001],[48.84807557200003,80.18454645300011],[49.128032479000126,80.23133256000011],[48.86608157600017,80.31142483000008],[48.500656581000044,80.33330042400013],[48.84003447700019,80.43085555100004],[49.52660756600005,80.40665431500008],[49.6527406240001,80.52262800400018],[50.47106147300019,80.58205100300017],[51.06584149100013,80.60145443900018],[51.65867254800003,80.71407218100012],[51.69303851900003,80.77722412200012],[51.11415059000018,80.84501661899998],[50.62424846500011,80.75849258000011],[50.23538247200008,80.77471424499998],[50.506423550000136,80.87903859699998],[49.925785479000126,80.91691340000017]]],[[[79.85583457100017,80.98374365500001],[79.24234061400017,80.9482188020001],[79.1030196370001,80.88721749000018],[79.42783364000002,80.80471525500019],[80.3367915290001,80.84182680200013],[80.60626250800016,80.88685153600011],[80.6597675490001,80.96830050100016],[79.85583457100017,80.98374365500001]]],[[[57.89049150100004,80.87666500900008],[58.22574952400009,80.93865035700009],[57.558784556000035,81.05850956100005],[56.875949628000114,81.08738924100015],[56.90208859300003,80.97897519000009],[57.245468512000116,80.9542469000001],[57.59696563400007,80.87248428400011],[57.89049150100004,80.87666500900008]]],[[[55.991710475,81.05075814400004],[55.34075946799999,81.06324081000008],[54.55250551200015,81.15134299400006],[54.29541762100018,81.14616247500015],[54.34324258100003,81.015019553],[55.290851605,80.9696970940002],[55.94495353700006,80.83169408700007],[57.20703849200004,80.71665783000009],[57.59626758900009,80.80569107700012],[56.86606552000012,80.89786116600015],[56.56359448500018,80.97251978400016],[55.991710475,81.05075814400004]]],[[[61.556957571,81.04951376700018],[61.73624463600004,81.16444374100018],[61.15245849100012,81.16895337300008],[60.62824655400004,81.12374574600017],[60.03569763200011,81.00803759600007],[60.52506247600007,80.96449360900016],[61.07686948200018,80.97992184200012],[61.556957571,81.04951376700018]]],[[[64.22469355800018,80.74182902100011],[64.94438958100011,80.84038461200015],[65.41295657700016,80.96406713700003],[65.1954346220001,81.04878890000015],[65.39303564300019,81.12303546300006],[65.15200060600006,81.19304748900004],[64.61201459800003,81.2323428570001],[64.05256648200009,81.14837496200016],[64.17366050800007,81.0694284980001],[63.84489058100007,81.0087698390002],[63.04740848400019,80.97934181500017],[62.56077563700006,80.831038455],[63.027446479000105,80.69058592100004],[64.22469355800018,80.74182902100011]]],[[[91.51341250800004,81.03065264100013],[92.00685162800016,81.1863649330001],[91.59179654700017,81.23502741300018],[90.82259365000016,81.21313857500007],[90.34665661400015,81.15384616600005],[90.3817516430002,81.1076767990001],[91.20868657400018,81.01612579700009],[91.51341250800004,81.03065264100013]]],[[[57.7952885040001,81.15198404200015],[58.182659501000046,81.22033242800012],[57.82542748100008,81.26676079500015],[57.356555551000156,81.22331571500013],[57.25292957900007,81.13372624500005],[57.7952885040001,81.15198404200015]]],[[[97.95879363700016,80.81097871600019],[97.50965857500012,80.84403241600018],[96.84224651700015,80.953742477],[96.42935161900016,81.16198633500005],[96.11704257700006,81.26670044600007],[95.48928865500011,81.28117414800016],[95.29309059800016,81.16719015600012],[94.87071962300007,81.07876644200019],[94.07000764400016,81.01620156900015],[93.43308257900014,80.99442588800008],[93.55821953200012,80.90649838200017],[93.0965726350002,80.85827679000016],[92.78063154700016,80.76541318200003],[93.58773757700004,80.73753363100013],[93.07731655400005,80.58001302700012],[92.23079663500016,80.46836440100003],[92.65818065900015,80.41265911000016],[92.00068657100013,80.38004864500016],[92.00071758400009,80.28965551900018],[92.36528058400006,80.27264947600008],[92.50892662300004,80.18552277700007],[93.03320360300012,80.13885066400013],[93.73162065700018,80.02626343200018],[94.38762662099998,80.07022735200013],[94.810752638,80.15620187400009],[95.25428054200012,80.15543023600003],[95.94638065800012,80.22915108600006],[97.24120365100015,80.22052962800012],[97.5733796470002,80.32721046900014],[97.30506151500015,80.36472686200017],[97.15471665900003,80.5288089870001],[97.41216262400013,80.66372141800008],[97.9258266060001,80.67431899300004],[97.95879363700016,80.81097871600019]]],[[[57.350482527000054,81.38270531500007],[56.50188054400019,81.44558450900013],[56.37942462700005,81.32561013800012],[55.68431456899998,81.37527375200006],[55.36957159000008,81.31826239400004],[55.630020624,81.19993003700017],[56.43123652300011,81.1885234400001],[57.01992457300014,81.2632132390001],[57.90548756400011,81.32610601100004],[57.350482527000054,81.38270531500007]]],[[[59.15763862300014,81.33453837300016],[59.38560057300009,81.389039352],[58.876232485000116,81.47485947900009],[58.54787461300015,81.40761767200013],[58.73167751200003,81.342762864],[59.15763862300014,81.33453837300016]]],[[[58.494815489000075,81.4451947500001],[58.3911395610001,81.4894636040001],[57.48173860500009,81.63590500800018],[56.787177562000124,81.58206821200008],[56.825527619000184,81.51959369600013],[57.26345456800004,81.46970310000006],[58.293357619000176,81.41520195400005],[58.494815489000075,81.4451947500001]]],[[[63.72271361300017,81.61887482499998],[63.481872534000104,81.73641492400003],[62.73753354700017,81.74642442500016],[62.21361950300013,81.71526419700018],[62.720916592000094,81.62201150099997],[63.72271361300017,81.61887482499998]]],[[[58.279209637,81.72690716300019],[58.61901048400006,81.78146161900014],[59.28467156300019,81.79997942200009],[59.072830527000065,81.90184687100009],[57.95565761300014,81.85946310700012],[58.279209637,81.72690716300019]]]]},"properties":{"objectid":42,"eco_name":"Russian Arctic desert","biome_num":11,"biome_name":"Tundra","realm":"Palearctic","eco_biome_":"PA11","nnh":2,"eco_id":778,"shape_leng":431.3518737,"shape_area":65.45524143,"nnh_name":"Nature Could Reach Half Protected","color":"#558CB8","color_bio":"#9ED7C2","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":161815.25868581547,"percentage":1.893649082202602}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-136.12362942199996,69.00552987300006],[-136.02897070699993,68.9371107290001],[-135.81593369399997,68.89288778000014],[-136.12362942199996,69.00552987300006]]],[[[-138.87893427099988,69.59232751500019],[-139.14489555999984,69.63682393800008],[-139.2350910749999,69.5711171270001],[-139.10561599399995,69.51574485400005],[-138.87893427099988,69.59232751500019]]],[[[-145.40505931799996,70.03549202300002],[-145.78307436799994,70.03345956100009],[-146.33014077899992,69.96339168500015],[-146.55617942099997,69.95412009100005],[-147.06989049099994,69.97203813400012],[-147.2327874369999,69.94860601400006],[-147.71305893899995,69.73624077900018],[-147.93650747199993,69.73859850600013],[-147.87823123299995,69.86891207200017],[-147.90915678599998,69.95394218600018],[-148.06104362499997,70.04139157700001],[-148.41674233299995,70.07473013700013],[-148.68018612299997,70.05207951500006],[-149.15196212499998,69.75883442800006],[-149.46349584399994,69.73732788100006],[-149.68188032699996,69.76421757300005],[-149.71866303099995,70.09901475900006],[-149.77910666699992,70.1808840540001],[-150.30172664899993,70.16873093700019],[-151.50662959299993,70.1527918760001],[-151.63704815799997,70.12360645500013],[-151.99838186299996,69.93923563300007],[-152.68399675799995,69.90574186700007],[-153.3704441159999,69.91235858200014],[-153.87324110999995,69.93344046800007],[-154.42209670699998,70.00499688000008],[-155.75634128399992,69.98343855200017],[-156.13756793699997,70.0306941830001],[-156.80467076999994,70.06335660600013],[-158.34600695499998,69.99410500900012],[-158.63063157999994,70.03133405900007],[-159.0934307859999,69.99243434599998],[-159.33701534699992,69.94473386600015],[-159.39829676199994,69.77878376500018],[-159.57673195599997,69.72827825400009],[-160.0834576729999,69.71180471900016],[-160.63750037499997,69.75438053800013],[-161.6632205889999,69.75165783100016],[-162.06709949999998,69.62761724500007],[-162.235692614,69.50802842800005],[-162.70668633099993,69.42841025000018],[-163.0898301789999,69.42149565600005],[-163.09444839999992,69.38218961100011],[-163.63045701199997,69.09978954400015],[-163.96600225799997,68.98604404300005],[-164.25243849299994,68.92626218100008],[-164.604665702,68.92340757500017],[-165.34373821299997,68.85868927100017],[-165.79582903899995,68.85638010300005],[-166.22250170899994,68.87224366400017],[-166.19656521999997,68.77288913400014],[-166.23325586699997,68.5755436930001],[-166.35156472199992,68.4076346010001],[-166.6293009409999,68.3327709240001],[-166.24601908699998,68.24611645300013],[-165.99220081299993,68.13550741700004],[-165.63479173499994,68.09480748200008],[-165.3069644169999,68.01170754800006],[-164.804382463,67.82934401500006],[-164.686591566,67.82336221800011],[-164.52330965399997,67.72150771100013],[-164.1065732149999,67.60259870400017],[-163.8748094,67.41875330800019],[-163.75487287099992,67.25817152600007],[-163.73821817999993,67.12855336000013],[-163.57424543799996,67.09401702800005],[-162.97102726299994,67.02214441100006],[-162.68773641299998,67.03929900300017],[-162.44745456899997,66.98603541300008],[-162.25793745899995,66.99124638900008],[-162.34886681199998,67.1312715250001],[-162.4717749369999,67.19966509500006],[-162.30744220999998,67.27708528200003],[-161.8663972889999,67.37947177400008],[-161.61856839799992,67.46811015400016],[-161.8216375369999,67.48569001300018],[-161.69251455399993,67.56658485600019],[-161.71163996599992,67.65120607800009],[-161.88255542699994,67.6314692680001],[-162.10041904499994,67.66957309800011],[-162.299060654,67.75774451100006],[-162.064911881,67.7913495840001],[-161.43701909799995,67.92976178300012],[-161.2324229669999,67.94348968499997],[-160.92244157199997,67.8521886100001],[-160.78986764599992,67.77376317300013],[-160.45282559099996,67.77265781000006],[-160.567826834,67.88753061900019],[-160.2845237079999,67.876940219],[-159.82642549799996,67.93935209900013],[-159.3514843259999,67.96178098800004],[-159.23629262699995,68.00175410000003],[-158.9545462989999,67.90816815700015],[-158.7545094159999,67.66200424500016],[-158.4767560159999,67.62924235600002],[-157.85608327099996,67.60111719400015],[-157.89441260899994,67.6985825500002],[-157.79949104199997,67.82312962400005],[-156.84425553099996,67.87721513500003],[-156.77424589899994,67.93419555300017],[-157.22578582499992,68.01880352400013],[-157.1218906389999,68.13383525799998],[-157.36903940599993,68.09875515300013],[-158.21741803299997,68.2385195670002],[-158.73593267999993,68.35063989700006],[-158.90795983099994,68.43068164300013],[-159.47127777099996,68.48458618],[-159.74708336699996,68.4898461950001],[-160.01783757099992,68.52730758200005],[-160.13897942499997,68.3546402070001],[-159.94394113599992,68.12147659800007],[-159.93760634199998,68.0655597390001],[-160.22347054399995,68.02873337100004],[-160.474991585,68.06384262600005],[-160.7066535239999,68.12706373400016],[-160.94882359899995,68.15425954500017],[-160.95646992099995,68.0755835430001],[-161.290486771,68.06279068700013],[-161.29426626599997,68.38067082700002],[-161.43350689799996,68.42363314400018],[-161.61683510199995,68.40356469300013],[-161.960157955,68.15121403500007],[-162.20082100799993,68.14718732900013],[-162.32802423199996,68.3013851720001],[-162.822022977,68.1447568370001],[-163.04379007099993,68.2361497920001],[-163.2976494989999,68.13719503400017],[-163.52051924499995,68.16011465200012],[-163.87223042499994,68.30121851000018],[-163.83106663499993,68.37041178800001],[-163.42840059399992,68.44304334300011],[-163.1203913349999,68.54146457300016],[-162.69833898699991,68.73046448800017],[-162.42214563899995,68.60214731299999],[-162.15473386799997,68.60563303000004],[-162.14995553299994,68.69540873900019],[-161.777462893,68.72043667100013],[-161.06019146799997,68.80909544600007],[-160.85991560699992,69.00514306900004],[-160.62163300899994,69.0551133670001],[-160.158826541,69.05858668000019],[-160.24949416899995,68.93625213500013],[-160.21701983699992,68.87388043000004],[-159.607865561,68.91341047800017],[-159.38604998399995,68.81801999800007],[-158.9744394489999,68.79387098600017],[-158.1386344169999,68.79186622700013],[-158.0161408879999,68.60634738000016],[-157.86322169199997,68.60193881900017],[-157.50397530799992,68.69197791200008],[-157.18212545699993,68.66159596400018],[-156.63227976999994,68.65314974300009],[-156.60705572099994,68.60374718700007],[-156.86501605299995,68.52635109300002],[-156.85884994199992,68.43330562800008],[-156.40499375499996,68.45931748600003],[-155.98901886499993,68.55689696100018],[-155.2148209819999,68.52547953900006],[-154.69428216399996,68.54983718700015],[-154.28506130199995,68.61892799700007],[-153.814620349,68.76619100500011],[-153.63007402299993,68.74598079900017],[-153.63745666199998,68.57052534899998],[-153.27332030699998,68.59850117100012],[-153.02506363099997,68.66993983300017],[-152.93308885499994,68.574611071],[-152.7811757229999,68.56322325800005],[-152.62180062199994,68.6552971500002],[-152.437552,68.62596231600003],[-152.23391637899996,68.52808666700008],[-152.04779703099996,68.47991698900012],[-151.944739569,68.58046359800011],[-151.73060650499994,68.66239825900004],[-151.27523643799995,68.72008839300008],[-151.22208309499993,68.64968864900004],[-150.67795925099998,68.68909635000006],[-150.25123141899994,68.83892843900009],[-150.08052625199997,68.78315323600015],[-149.9549753579999,68.81927166400004],[-150.04899314199994,68.90007430600019],[-149.89570748399996,68.95507863100016],[-149.523883322,68.90387402900006],[-149.08527856299992,68.91073186400001],[-148.98222565199998,68.86921708200003],[-148.52753887699996,68.81398813400006],[-148.179323395,68.95309543900004],[-147.51462056199995,69.23747826800007],[-147.36046936599993,69.32218202200005],[-146.74191205299994,69.42117948300012],[-146.4776472329999,69.56573936100011],[-146.18771914699997,69.59033396000018],[-145.97645805699995,69.64704825100006],[-145.45662730299998,69.64979486800019],[-144.62637061999996,69.69689935800011],[-144.29746339899992,69.60098749000002],[-144.0290819969999,69.56146846400014],[-143.1380102299999,69.5341808500001],[-142.71740187399985,69.49163092800006],[-142.0599592029999,69.45708573900004],[-141.4442795529999,69.43752370400017],[-141.00269500499996,69.51107436900008],[-140.18591284699994,69.55799928800013],[-140.00790528999994,69.52271276500005],[-139.90803402699999,69.40198511699998],[-139.72320746399993,69.35746874500018],[-139.29339670399997,69.19621340800012],[-139.20315423799997,69.2280645300001],[-138.94729731299998,69.13536067600006],[-138.93629156499992,69.04497442500019],[-138.77419404099993,69.02563358800018],[-138.47636616699998,68.92008297900009],[-138.1080446599999,68.87341222200001],[-137.86184647599993,68.87052099300018],[-137.85393785899998,68.7927076380002],[-137.48283947999994,68.71453200200017],[-137.22125336099998,68.71811845300016],[-136.76585828099996,68.61574031999999],[-136.43809232299992,68.49746626500018],[-136.185694077,68.48106908500006],[-136.1717598599999,68.55836059100017],[-135.89706428799997,68.53748372000018],[-136.0289606199999,68.65251917900014],[-135.72328568199993,68.62632935900012],[-135.83786807899992,68.71984042700018],[-135.8728347349999,68.83163738700011],[-136.13760570199997,68.8826177150001],[-136.527779115,68.90435013300004],[-136.7551209059999,68.86258372600008],[-137.00696606499992,68.93929963100004],[-137.21116802999995,68.93291870600012],[-138.08152255099998,69.13286605400009],[-138.27940231999992,69.20618465200005],[-138.59921916399992,69.248278734],[-138.74308622099994,69.34629232800012],[-139.0688808939999,69.47562590100017],[-139.5244906609999,69.54083322600019],[-139.86849399499994,69.61338695700005],[-140.38086358799995,69.58933904200012],[-140.94329904199998,69.63690742900013],[-141.18699497799986,69.68385532600018],[-141.37971337699997,69.62044808300004],[-141.470940773,69.69789351600014],[-141.69382271899997,69.77209347200005],[-142.254252845,69.85851152000009],[-142.62882037799983,69.80878596200017],[-142.885908998,69.79680138500004],[-143.93542793799986,69.92679583800009],[-144.4086000229999,69.9300894800001],[-144.5689435799999,69.98954393600013],[-144.6295595429999,69.9707838280001],[-145.25220505899995,69.99883825800015],[-145.40505931799996,70.03549202300002]]]]},"properties":{"objectid":43,"eco_name":"Arctic foothills tundra","biome_num":11,"biome_name":"Tundra","realm":"Nearctic","eco_biome_":"NE11","nnh":2,"eco_id":408,"shape_leng":93.6503392114,"shape_area":29.269386725,"nnh_name":"Nature Could Reach Half Protected","color":"#4D99B3","color_bio":"#9ED7C2","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":129689.06987129412,"percentage":1.5176911629225296}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[136.2255899940002,-13.663110006999943],[136.16105999400008,-13.750660006999965],[136.25541999400002,-13.828290006999964],[136.27107999400027,-13.736810006999917],[136.2255899940002,-13.663110006999943]]],[[[136.7261299940002,-13.650760006999917],[136.58941999400008,-13.724880006999967],[136.60095999400005,-13.805890006999846],[136.43463999400012,-13.880790006999916],[136.40863999400005,-13.977700006999896],[136.4433499940003,-14.115250006999815],[136.4023199940001,-14.176340006999965],[136.491599994,-14.237790006999887],[136.62522999400005,-14.26490000699988],[136.72735999400015,-14.263160006999897],[136.93476999400013,-14.299030006999942],[136.95214999400002,-14.243260006999947],[136.762989994,-14.196680006999884],[136.69981999400022,-14.11140000699993],[136.77804999400007,-14.024890006999897],[136.79306999400012,-13.913890006999907],[136.85957999400023,-13.90797000699996],[136.91005999400022,-13.768490006999969],[136.8371199940001,-13.748170006999885],[136.8405399940001,-13.836860006999927],[136.7212199940002,-13.835610006999957],[136.68281999400017,-13.730560006999895],[136.7261299940002,-13.650760006999917]]],[[[135.52679999300005,-12.064330007999956],[135.4693799930003,-12.110170007999898],[135.397269993,-12.082500007999954],[135.30545999300034,-12.12472000799994],[135.26905999300004,-12.180000007999979],[135.30967999300015,-12.241000007999958],[135.36834999300004,-12.181350007999924],[135.4280799930001,-12.182730007999908],[135.56953999300003,-12.100600007999901],[135.52679999300005,-12.064330007999956]]],[[[135.88086999300003,-11.760210007999945],[135.87085999300018,-11.83419000799995],[135.73361999300005,-11.939340007999931],[135.59379999300018,-11.952530007999883],[135.55381999300016,-12.049080007999919],[135.73461999300002,-12.00233000799983],[135.8282099930002,-11.929210007999927],[135.9381699930002,-11.803100007999944],[135.88086999300003,-11.760210007999945]]],[[[132.5534899940002,-11.636050006999938],[132.50308999400022,-11.682900006999944],[132.59282999400023,-11.729960006999931],[132.64235999400012,-11.651380006999943],[132.5534899940002,-11.636050006999938]]],[[[136.36173999300001,-11.55191000799988],[136.2644499930002,-11.572200007999925],[136.26621999300005,-11.658610007999869],[136.3777399930002,-11.58416000799997],[136.36173999300001,-11.55191000799988]]],[[[130.35389999500023,-11.339000005999935],[130.25118999500023,-11.346610005999935],[130.1786999950001,-11.433820005999905],[130.19935999500012,-11.508710005999944],[130.19646999500026,-11.654440005999902],[130.15650999500008,-11.704890005999971],[130.06900999500021,-11.686460004999901],[130.04949999500013,-11.823960004999947],[130.1335399950001,-11.823360004999927],[130.31110999500004,-11.770950005999964],[130.51115999500018,-11.83035000599989],[130.6057499950001,-11.826960005999979],[130.639199995,-11.7661800059999],[130.5512399950003,-11.69035000599996],[130.48503999500008,-11.66969000599994],[130.46501999500026,-11.577200005999941],[130.37620999500018,-11.507550005999917],[130.403249995,-11.44894000599993],[130.35389999500023,-11.339000005999935]]],[[[130.39829999500023,-11.165410005999945],[130.36532999500002,-11.257900005999943],[130.42668999500017,-11.427290005999907],[130.43171999500032,-11.499250005999897],[130.4934999950002,-11.566440005999937],[130.4940399950001,-11.65663000599983],[130.5572599950001,-11.674250005999966],[130.6859899950001,-11.795800005999922],[130.85295999500033,-11.850390005999884],[130.965569995,-11.938570005999907],[131.08231999500015,-11.835700005999911],[131.28129999400005,-11.740020005999895],[131.38579999400008,-11.58845000599996],[131.4552799940002,-11.547360005999906],[131.53813999400006,-11.415550005999933],[131.43313999400016,-11.310510005999959],[131.25175999400005,-11.192650005999951],[131.0404699940002,-11.318570005999845],[131.03266999400034,-11.366780005999942],[130.90978999400022,-11.310930005999978],[130.85158999400005,-11.353220005999844],[130.65722999500008,-11.400010005999945],[130.60319999500018,-11.321660005999888],[130.49815999500015,-11.268920005999973],[130.39829999500023,-11.165410005999945]]],[[[135.6486685870002,-14.420222219999914],[135.78959999400013,-14.232040006999966],[135.87905999400016,-14.169370006999884],[135.91424999400033,-14.033930006999924],[136.01620999400006,-13.824040006999951],[136.03466999400018,-13.715470006999965],[135.91326999400007,-13.745090006999874],[135.84458999400022,-13.615320006999923],[135.86170999400008,-13.436380006999968],[135.91871999400018,-13.269850006999945],[136.00033999400011,-13.213450006999949],[136.04902999400008,-13.24293000699987],[136.10774999400007,-13.17232000699994],[136.20088999400002,-13.247140006999928],[136.2431399940001,-13.169320006999953],[136.31019999300008,-13.165950006999822],[136.30854999300004,-13.072440007999944],[136.36473999300017,-13.056420007999975],[136.36637999300012,-13.196570006999877],[136.39184999300005,-13.254470006999895],[136.47239999300007,-13.215010007999979],[136.52914999300015,-13.146610007999925],[136.53542999300032,-13.023520007999878],[136.63528999300001,-12.952390007999895],[136.5590199930001,-12.913600007999946],[136.47797999300008,-12.832170007999935],[136.58214999300003,-12.766690007999898],[136.67842999300024,-12.668040007999934],[136.9269099930002,-12.341810007999982],[136.87447999300002,-12.220970007999938],[136.7791199930001,-12.161350007999886],[136.7406699930002,-12.273100007999915],[136.66333999300014,-12.28166000799996],[136.6001799930001,-12.20289000799994],[136.58902999300005,-12.09302000799994],[136.41490999300004,-11.958330007999962],[136.33160999300003,-12.059420007999961],[136.26695999300023,-12.072910007999951],[136.1973099930002,-12.162180007999837],[136.22826999300014,-12.213850007999952],[136.33916999300027,-12.204600007999943],[136.3635999930001,-12.256990007999946],[136.30411999300009,-12.400170007999861],[136.22311999300018,-12.462110007999911],[135.99617999300006,-12.43958000799995],[136.02145999300024,-12.315170007999882],[135.8961099930002,-12.186380007999844],[135.67425999300008,-12.23817000799994],[135.6519699930003,-12.167750007999928],[135.772449993,-12.047050007999928],[135.72708999300016,-12.009620007999956],[135.58264999300025,-12.091290007999817],[135.53413999300005,-12.151610007999864],[135.39349999300032,-12.179630007999833],[135.34718999300003,-12.243070007999904],[135.21919999300007,-12.29670000699997],[135.1254799930001,-12.237500006999937],[135.05583999300006,-12.262260006999895],[134.97056999300014,-12.158530006999968],[134.8420299930001,-12.11379000699992],[134.7714299930003,-11.958230006999884],[134.6878099930001,-11.966610006999929],[134.6096799940001,-12.047790006999946],[134.41950999400012,-12.065910006999957],[134.28548999400016,-11.983020006999936],[134.22735999400015,-12.04141000699991],[134.17357999400008,-11.960850006999863],[134.037799994,-11.855000006999944],[133.98006999400002,-11.89782000699995],[133.87838999400003,-11.911160006999978],[133.82322999400003,-11.84126000699996],[133.9245599940001,-11.768650006999906],[133.79777999400017,-11.72632000699997],[133.73954999400007,-11.783090006999885],[133.60418999400008,-11.839410006999913],[133.53434999400008,-11.760950006999963],[133.46038999400002,-11.802560006999954],[133.41340999400006,-11.759340006999821],[133.32132999400017,-11.771070006999935],[133.33533999400004,-11.693810006999911],[133.22893999400014,-11.73298000699998],[133.15688999400015,-11.710180006999963],[133.0092599940001,-11.43566000699991],[132.9172199940001,-11.33198000699997],[132.7341399940001,-11.518080006999867],[132.6594799940001,-11.510010006999948],[132.61838999400027,-11.408180006999942],[132.50670999400006,-11.271980006999911],[132.43593999400014,-11.211800006999908],[132.30850999400013,-11.174250006999955],[132.2373799940002,-11.340060006999977],[132.09924999400016,-11.306330006999872],[132.0671299940002,-11.191810006999901],[131.93205999400004,-11.24404000699991],[131.87904999400007,-11.185530006999954],[131.82944999400013,-11.233220006999943],[131.9268599940002,-11.336980006999966],[131.94025999400026,-11.396900005999953],[132.06052999400015,-11.436050006999949],[132.04187999400017,-11.49137000599984],[132.1062599940002,-11.531310005999842],[132.2378799940002,-11.45593000699995],[132.3550399940001,-11.441320006999888],[132.45699999400006,-11.457240006999939],[132.5546999940001,-11.555390006999971],[132.5481199940001,-11.609500006999895],[132.65756999400003,-11.649570006999909],[132.65085999400014,-11.718840006999926],[132.5804499940001,-11.787490006999974],[132.65213999400032,-11.88379000699996],[132.61838999400027,-12.018610005999903],[132.56384999400007,-12.092910005999897],[132.4405499940002,-12.146870005999972],[132.4153799940002,-12.20237000599991],[132.27852999400022,-12.226470005999829],[132.24026999400007,-12.174760005999929],[132.0645199940002,-12.304060005999872],[131.96163999400017,-12.281410005999874],[131.873039994,-12.215480005999893],[131.7541299950002,-12.273810005999962],[131.66252999500034,-12.286020005999944],[131.44633999500013,-12.28083000599986],[131.34646999500023,-12.22718000599997],[131.28945999500002,-12.045110005999959],[131.221379995,-12.22627000599988],[131.15850999500003,-12.169460005999895],[130.99491999500003,-12.16909000599992],[131.03070999500005,-12.240640005999865],[130.98398999500034,-12.342520005999916],[130.8936699950002,-12.332030005999911],[130.85185999500027,-12.450480004999974],[130.88190999500011,-12.606610004999936],[130.7693899950002,-12.528360004999968],[130.76487999500011,-12.43790000499996],[130.61745999500022,-12.386130004999927],[130.57669999500013,-12.407270004999873],[130.5903099950002,-12.501950004999912],[130.53087999500008,-12.712010004999854],[130.43927999500022,-12.633630004999873],[130.3526499950002,-12.669920004999938],[130.35053999500008,-12.840140004999967],[130.2798799950001,-12.932700004999958],[130.14601999500007,-12.927910004999944],[130.11716999500027,-13.167240004999883],[130.15868999500003,-13.174630004999926],[130.2459299960003,-13.28951000499984],[130.23728999600007,-13.33845000499997],[130.1368199960001,-13.460540004999928],[130.00680999600002,-13.53322000399993],[129.9292399960001,-13.528550003999953],[129.87823999600027,-13.459260003999873],[129.79030999600002,-13.665410003999966],[129.7851499960001,-13.766760003999877],[129.720969996,-13.850230003999911],[129.7522799960002,-13.953100003999907],[129.72545999600015,-14.010110003999955],[129.494069996,-14.130930003999822],[129.4155999960002,-14.230300003999957],[129.35536999600015,-14.419640003999973],[129.52618999600008,-14.55223000399991],[129.67161999600012,-14.579780003999815],[129.77959549700017,-14.539892271999975],[129.92611693300012,-14.34846981499993],[130.12014776600006,-14.064403763999906],[130.2349701160001,-13.87130550199987],[130.36193851400003,-13.730032043999927],[130.5931243120001,-13.622074136999913],[130.72850043100004,-13.522858553999981],[130.851669312,-13.373127085999954],[130.90980535500012,-13.34194942399995],[131.05734244100006,-13.416253151999967],[131.3060455780003,-13.480330454999944],[131.41787726600012,-13.52689745899994],[131.56915284900003,-13.666136796999979],[131.752136166,-13.950120705999893],[131.83773802800022,-14.039882674999888],[132.06182854500003,-14.189551445999939],[132.30445865900003,-14.31269736199988],[132.3919219740003,-14.372296381999945],[132.68486027000006,-14.487785428999928],[132.95841977400016,-14.546582300999887],[132.9863281590001,-14.374080721999974],[133.05654906100017,-14.213320679999981],[133.09594719100016,-14.175127029999885],[133.19462599600013,-14.20210720199998],[133.27656547000004,-14.121561973999974],[133.43470767600013,-13.882845706999944],[133.75335695700016,-13.909429583999895],[133.92973332200017,-13.90290544599992],[134.27415460800034,-13.849065798999959],[134.41702264000003,-13.840551462999883],[134.7100524660001,-13.890706088999877],[134.86466974600023,-13.961563848999901],[135.08738713900004,-14.137163211999962],[135.24719231400002,-14.249868461999881],[135.42359919000023,-14.339977272999818],[135.6486685870002,-14.420222219999914]]],[[[136.76212999200004,-11.026850008999872],[136.70312999300006,-11.133500008999874],[136.5882499930001,-11.279230008999832],[136.57747999300022,-11.331370008999954],[136.49496999300004,-11.406310008999867],[136.53455999300013,-11.443500008999877],[136.70937999300008,-11.207670008999969],[136.76212999200004,-11.026850008999872]]],[[[132.59622999400017,-10.971480006999911],[132.4767599940002,-11.159180006999975],[132.544689994,-11.254840006999927],[132.61961999400012,-11.28679000699998],[132.57931999400023,-11.005230006999966],[132.59622999400017,-10.971480006999911]]]]},"properties":{"objectid":45,"eco_name":"Arnhem Land tropical savanna","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Australasia","eco_biome_":"AU07","nnh":2,"eco_id":181,"shape_leng":88.0187382797,"shape_area":13.1720564673,"nnh_name":"Nature Could Reach Half Protected","color":"#FCD357","color_bio":"#FEAA01","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":159054.44654730568,"percentage":0.7418924838891258}}, + {"type":"Feature","geometry":null,"properties":{"objectid":46,"eco_name":"Ascension scrub and grasslands","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Afrotropic","eco_biome_":"AF07","nnh":4,"eco_id":37,"shape_leng":0.366228459066,"shape_area":0.00761929988336,"nnh_name":"Nature Imperiled","color":"#FBA87E","color_bio":"#FEAA01","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":93.51396633554465,"percentage":0.00043618591161088504}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-69.42980950199984,-25.180359959999976],[-69.42931362799993,-25.081602867999948],[-69.29160348499994,-25.012951057999942],[-69.24347660899986,-24.946248374999982],[-69.26538053299993,-24.66949771299994],[-69.07690455499994,-24.443544737999957],[-68.95071449999989,-24.211949064999885],[-68.88306449499999,-23.92438356799994],[-68.75329553399996,-23.70424444799994],[-68.74536155999994,-23.60415563999993],[-68.84267461799988,-23.454342195999914],[-68.86688255999991,-23.359255203999965],[-68.84399459999986,-23.20503388499992],[-68.7951735339999,-23.163410191999958],[-68.6766354859999,-22.983526335999954],[-68.59925057099991,-22.797217079999882],[-68.50491359199992,-22.670369714999822],[-68.44464854599994,-22.520505812999886],[-68.42628463399996,-22.292448643999876],[-68.44403063199996,-22.247885249999968],[-68.57416554599996,-22.22546248499998],[-68.70269750499989,-22.17759008399986],[-68.82582062199998,-22.22982627199991],[-68.87607549599994,-22.198447778999878],[-68.8651734899999,-21.904012642999874],[-68.90821053999991,-21.328870082999913],[-68.88040156399984,-21.015115162999848],[-68.88652052099997,-20.737664779999875],[-68.94244357299988,-20.58323542199986],[-68.99058553699996,-20.290553779999982],[-69.0475925369999,-20.050113522999936],[-69.11131260299999,-19.916511182999955],[-69.19622061199988,-19.660234156999877],[-69.20417755299997,-19.59488079399995],[-69.27910656999995,-19.40883774699995],[-69.38990057799998,-19.243249393999974],[-69.41379553999991,-19.1490029389999],[-69.47132858799995,-18.76688454599997],[-69.50992557599994,-18.582643272999917],[-69.55802948599995,-18.455489969999974],[-69.62741856899999,-18.39400250699987],[-69.90974453699994,-18.479706460999978],[-70.12089557499996,-18.40865172699995],[-70.31594849699991,-18.422723936999944],[-70.35959658699994,-18.794199826999886],[-70.26765448499998,-19.141921236999906],[-70.28260059199982,-19.283999021999875],[-70.22444962999998,-19.402946106999877],[-70.20541348999996,-19.58329649999996],[-70.17078348899992,-19.65074148399998],[-70.15641757799995,-19.82253680399998],[-70.12281050499996,-19.992676865999954],[-70.12390149299989,-20.094227981999893],[-70.15851556799998,-20.213610254999935],[-70.14411160299994,-20.320825190999983],[-70.18295250399996,-20.354906176999975],[-70.1639026169999,-20.48239006299997],[-70.19975251999989,-20.528215435999925],[-70.18141962099986,-20.65453524299994],[-70.19419850299988,-20.81500124799993],[-70.14711752099987,-20.864400496999963],[-70.13388853099997,-20.950676767999937],[-70.17842862299983,-21.021457916999907],[-70.1263126309999,-21.086056405999955],[-70.06727553399998,-21.31195087599997],[-70.05627462199988,-21.43240620099988],[-70.09222460499996,-21.584800767999923],[-70.14301256799996,-21.628867450999962],[-70.14223455899997,-21.82843268599987],[-70.21219662899995,-22.09843910099994],[-70.23957058399992,-22.377069320999908],[-70.23716749199997,-22.488410499999873],[-70.31277460599995,-22.800399855999956],[-70.28524055699995,-22.896583870999905],[-70.30879957199994,-22.958491769999966],[-70.30363464299995,-23.111401823999813],[-70.31999159199995,-23.311596540999915],[-70.37762455199999,-23.547298339999884],[-70.39394361499984,-24.09544278999988],[-70.36634854599993,-24.246632373999887],[-70.3507005379999,-24.538839097999983],[-70.30373354999989,-24.769691630999944],[-70.31024964099998,-25.073855139999978],[-70.29781357899998,-25.267439719999913],[-70.31328556599993,-25.458562702999927],[-70.36721758099998,-25.834119239999893],[-70.36677551999992,-26.058761788999902],[-70.27693157599998,-26.238980753999954],[-70.1118625659999,-26.299983071999975],[-70.00304450699997,-26.31445140999989],[-69.8710635629999,-26.18854902199996],[-69.77498650099989,-25.939821408999933],[-69.72080956599984,-25.742412501999922],[-69.4956055969999,-25.366350032999947],[-69.42980950199984,-25.180359959999976]]]},"properties":{"objectid":47,"eco_name":"Atacama desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Neotropic","eco_biome_":"NO13","nnh":2,"eco_id":598,"shape_leng":18.7866390877,"shape_area":9.20086032278,"nnh_name":"Nature Could Reach Half Protected","color":"#F18650","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":105405.99943431145,"percentage":0.39953485517492243}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-16.352029530999914,19.81698220100003],[-16.414640503999976,19.81399137000011],[-16.451040594999938,19.6902404490001],[-16.376260438999907,19.694869103000087],[-16.352029530999914,19.81698220100003]]],[[[-16.378608961999873,21.09402448000003],[-16.454079918999867,21.313570066000125],[-16.464809919999936,21.471380063000026],[-16.441040007999902,21.64635992800015],[-16.34139,22.03485993300012],[-16.2760399469999,22.201310223000178],[-16.20345001599992,22.47423006100007],[-15.92251000399989,22.967489934000128],[-15.803580000999887,23.226840042000106],[-15.582560001999923,23.633909978000077],[-15.464679957999863,23.78044008800009],[-15.24615979399988,24.010050037000042],[-15.098200049999946,24.194320060000052],[-14.870409970999901,24.51351994900017],[-14.744760053999926,24.724869939000143],[-14.58462007999998,24.859039927000083],[-14.419620019999911,24.919320077000066],[-14.493400020999957,25.096899932000042],[-14.499840062999908,25.361130017000107],[-14.463219988999981,25.48320989700011],[-14.396330113999966,25.612899825000113],[-14.055040070999894,26.033289896000042],[-13.763329924999937,26.336100037000108],[-13.498929980999947,26.56990999900006],[-13.395440097999881,26.70152998600014],[-13.218430017999822,27.037730059000125],[-13.185708116999933,27.15617484700016],[-13.448255462999953,27.012326406000113],[-13.52826944599991,26.803874508999968],[-13.620200483999895,26.683889744],[-13.757120547999818,26.59734391100011],[-14.042739430999973,26.442571566000026],[-14.184860466999908,26.421891735000088],[-14.304940449999947,26.292018503],[-14.396519447999935,26.26240993300013],[-14.49318944599986,26.144554340000127],[-14.486818336999931,26.114807723000126],[-14.482760120999956,26.107703874000038],[-14.479228601999978,26.09713286200008],[-14.478203943999915,26.087624033000168],[-14.483958533999896,26.054341329000067],[-14.483622271999877,26.051463274000014],[-14.534059438999975,25.90654500200003],[-14.627389583999957,25.782441872999982],[-14.68525140599985,25.59384320700002],[-14.684837353999967,25.589692624000065],[-14.785619463999979,25.428197331000092],[-14.813973411999939,25.341823702000056],[-14.813796752999963,25.329374565000023],[-14.82823376499988,25.290498839000065],[-14.823615623999956,25.274032266000177],[-14.842715858999895,25.21123952500011],[-14.83868231599996,25.183509641000057],[-14.844297295999922,25.123370195000177],[-14.822124403999965,25.028496027000187],[-14.835180395999942,24.950391467000145],[-14.828320237999947,24.921616832000097],[-14.885616039999888,24.743050038000092],[-14.884301654999945,24.729498230000047],[-15.009043431999942,24.573863958000118],[-15.008055691999914,24.566715818000034],[-15.135919481999963,24.510152453000046],[-15.407839485999943,24.253325408000023],[-15.59169954899994,24.05066423200003],[-15.76239952199984,23.9488794290001],[-15.902529520999963,23.818986081],[-15.923874155999954,23.77062684200007],[-15.922009456999945,23.75988289500009],[-15.856501321999929,23.83727298000008],[-15.79025816799998,23.89646586800012],[-15.778115694999883,23.901439828000093],[-15.766374433999943,23.911972022000043],[-15.774036869999918,23.89036433700005],[-15.772712600999967,23.880087696000146],[-15.770072882999955,23.877586397000073],[-15.712957284999902,23.894572590000166],[-15.742158662999941,23.821655187000033],[-15.708238496999911,23.823295067],[-15.800968118999947,23.724904486000128],[-15.79355690899996,23.723843948000138],[-15.876186995999944,23.619249216000128],[-15.87564472799994,23.613981376000027],[-15.9691796219999,23.499492307000025],[-15.963819798999907,23.494244259000084],[-15.964374662999887,23.49016358300014],[-15.952523258999975,23.472469756000123],[-16.059476937999875,23.327709378000065],[-16.056032447999883,23.311909262000142],[-16.113659175999942,23.225060737000092],[-16.11209662499988,23.2090818370001],[-16.206472799999915,23.08344086700015],[-16.13861508599996,23.02036941600005],[-16.212810477999938,22.915252130000056],[-16.30139406199993,22.859220554000046],[-16.30042492799987,22.853789184999982],[-16.2907448549999,22.84769470300006],[-16.287355781999963,22.838822909000157],[-16.328739548999977,22.768694756000116],[-16.32678664799994,22.76307431000015],[-16.341324634999978,22.704423272000156],[-16.338852828999904,22.688748278000105],[-16.344746282999836,22.654479002000073],[-16.341941797999937,22.648739198000158],[-16.359790502999886,22.572491298000102],[-16.424560485999905,22.51958187600019],[-16.44984029999989,22.444382012000176],[-16.449426468999945,22.437138559000118],[-16.45893917299992,22.403566241000192],[-16.457142115999943,22.390675010000166],[-16.491224142999897,22.33398862400003],[-16.49101444299987,22.33291232199997],[-16.61354055199996,22.265897373000143],[-16.6982705289999,22.279585692000182],[-16.80891952999997,22.161440922000168],[-16.87036265199987,22.00377220600012],[-16.870057550999945,21.99493425300011],[-16.89804218699993,21.933545187000107],[-16.8894715269999,21.91896076600011],[-16.963480266999966,21.785943850000024],[-16.94805127199993,21.761767693000138],[-16.972009535999916,21.666078764000133],[-16.970975089999968,21.655370510000125],[-17.013369187999956,21.41797956300013],[-17.010441219999905,21.40229357400017],[-17.028100375999884,21.333316143000104],[-17.02764753999992,21.311620311000183],[-17.02601382699993,21.30112091799998],[-17.024436468999966,21.294838961000096],[-17.047756277999895,21.184103357000026],[-17.047831175999875,21.183666271000106],[-17.043795314999898,21.172886341000094],[-17.039061619999927,21.163346806000106],[-17.050352249999946,21.12343721600007],[-17.04964324899987,21.115153834000182],[-17.059975329999872,21.07981164800003],[-17.05620781199991,21.068591105000053],[-17.06167560299997,21.053875235000135],[-17.058236112999964,21.035370702000023],[-17.062917348999974,21.016756546000124],[-17.060627774999944,21.00221837400005],[-17.09206395699988,20.91902839500017],[-17.075903587999903,20.889056663000076],[-17.102997435999896,20.84300669099997],[-17.045008699999926,20.77004297200017],[-17.04517892799987,20.789240226000118],[-17.041519388999973,20.801853163000033],[-17.03911320199984,20.810146310000107],[-17.02722840399997,20.85110821600017],[-17.05175573799994,20.888996295000027],[-17.040525988999946,20.90703812099997],[-17.014965779999898,20.916301830000066],[-17.003275929999916,20.96564740100007],[-17.008536506999974,20.979210982000097],[-17.00188912199991,21.012188489000096],[-17.022792049999964,21.035397717000023],[-16.997208427999965,21.052311411000062],[-16.994831949999877,21.055651462000128],[-16.974076832999913,21.11444531799998],[-16.97465234899994,21.10999943100012],[-16.959670029999927,21.111721149000118],[-16.96295130599998,21.116793890000167],[-16.94783062499988,21.126918489000047],[-16.9446683729999,21.134560387000136],[-16.944410752999886,21.137287093000168],[-16.946244770999954,21.172746675999974],[-16.93272365699994,21.206341026000132],[-16.935027313999967,21.217445996000038],[-16.902240606999953,21.265369338000085],[-16.905551001999925,21.255192577000116],[-16.845122159999903,21.25317452400003],[-16.862123128999883,21.167295022000133],[-16.796199732999924,21.103593247000106],[-16.81221143199997,21.081751305000182],[-16.754708186999892,20.992490871000143],[-16.757463333999965,20.98482474499997],[-16.75734583899998,20.97351815500008],[-16.85820483999987,21.082889252000086],[-16.856792390999885,21.06439288500013],[-16.86143604499989,21.050727983000115],[-16.850356476999934,21.025084753999977],[-16.844406886999877,21.01871909199997],[-16.811775981999972,20.968585711000173],[-16.804772911999976,20.937698970000156],[-16.803448275999813,20.935265091000133],[-16.78696772799998,20.93284140000003],[-16.768396892999817,20.91000695700012],[-16.73440431599994,20.824380479000183],[-16.733254830999954,20.82318475000011],[-16.7114792509999,20.77571240900005],[-16.708606674999885,20.771534294000105],[-16.680219596999848,20.682654098000057],[-16.5394594469999,20.56214093800014],[-16.526399435999963,20.736621148999973],[-16.384559528999944,20.536962036000148],[-16.30282055099991,20.331753768000112],[-16.23247945199995,20.281696706000105],[-16.199510575999966,20.203030031000026],[-16.25173955599996,20.123815681000053],[-16.232650441999965,19.97912274200013],[-16.30731056899998,19.906307976000107],[-16.24745958899996,19.780294276000177],[-16.34193956299987,19.65872147500005],[-16.43910945799996,19.469113438000022],[-16.348550537999927,19.43959522400013],[-16.51045051799997,19.352070218000165],[-16.470169438999903,19.259845478000102],[-16.347520569999972,19.186168885000086],[-16.260400576999814,19.07898613600014],[-16.178829570999937,18.895766114000025],[-16.135219534999976,18.658700076000173],[-16.055719529999863,18.454103351000185],[-16.024040461999903,17.993000943000084],[-16.044349478999948,17.741986077000035],[-16.069328768999924,17.590229972000145],[-15.88117981199997,17.775180079999984],[-15.78607901199996,17.885006987000054],[-15.777196450999952,17.89526498900011],[-15.736649992999958,17.942089958000054],[-15.73562846499982,18.13765484700008],[-15.682839984999873,18.393340025000043],[-15.477379974999963,18.892569966999986],[-15.472279971999967,18.987500000000125],[-15.504469975999882,19.09253991500009],[-15.5843800479999,19.171319939000057],[-15.829699955999956,19.28004008],[-15.857009981999965,19.36495],[-15.831320043999881,19.804980027000113],[-15.83892991499988,20.007079992000115],[-15.882640072999834,20.253569905000177],[-15.939859939999963,20.38940997000003],[-16.133959973999936,20.63855003900011],[-16.223999995999918,20.775870080000175],[-16.24058001999998,20.835369933000152],[-16.378608961999873,21.09402448000003]],[[-15.749609814999872,19.08590994700006],[-15.625650041999904,19.113020014000085],[-15.517340027999921,19.081139982000025],[-15.52106003299997,18.97743993100005],[-15.571420049999972,18.84961000600009],[-15.683760040999971,18.776000040000156],[-15.830960082999923,18.729520031999982],[-15.896810032999952,18.671399999000187],[-15.823209923999968,18.454480033000095],[-15.916179973999931,18.28404007500012],[-16.005279872999836,18.318899949000183],[-16.04789008299997,18.57068999900008],[-16.09277992699998,18.666109894999977],[-16.059520073999977,18.84186002299998],[-16.016900006999947,18.892220040000097],[-16.059520073999977,18.996810048000043],[-16.016900006999947,19.05879002300003],[-15.920059981999941,19.07815996400018],[-15.827089931999922,19.039420081000173],[-15.749609814999872,19.08590994700006]]]]},"properties":{"objectid":49,"eco_name":"Saharan Atlantic coastal desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Palearctic","eco_biome_":"PA13","nnh":2,"eco_id":839,"shape_leng":32.2420105396,"shape_area":3.49040426927,"nnh_name":"Nature Could Reach Half Protected","color":"#B43D41","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":40008.83542520887,"percentage":0.15165099095986342}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[146.43763881000007,-37.33480131399995],[146.33615976800013,-37.40321279799991],[146.42729911800006,-37.546980963999886],[146.3633375930001,-37.599516372999915],[146.17580551000015,-37.5068396719999],[146.08370266800011,-37.6882518889999],[146.07225631000017,-37.845393054999874],[146.2022429430001,-37.80572338899992],[146.338644218,-37.91252112199993],[146.36621938500014,-37.85083293899993],[146.28234351800018,-37.751996604999874],[146.1742007260001,-37.74096888099996],[146.15760313400006,-37.648771213999964],[146.287176734,-37.60322064699983],[146.474970202,-37.666995529999895],[146.5206223350001,-37.58397093099995],[146.4047114440002,-37.45881726399995],[146.43763881000007,-37.33480131399995]]],[[[145.93819307600018,-37.34632866499993],[145.77043179300006,-37.42657127199993],[145.92790201000014,-37.507027696999955],[145.9630366440001,-37.42062846399989],[145.93819307600018,-37.34632866499993]]],[[[147.56665791800015,-37.13501063199982],[147.42571901800022,-37.137069147999966],[147.33748613500018,-37.16547880699994],[147.36543192600004,-37.26053873899997],[147.5252289760001,-37.397444763999886],[147.54811130100006,-37.31650574799983],[147.5193740010002,-37.211700822999944],[147.56665791800015,-37.13501063199982]]],[[[146.4066975930001,-36.97921292299998],[146.3874563180002,-37.02448382299991],[146.42079323400014,-37.17692483999991],[146.49925881000001,-37.31075928099989],[146.66802812700007,-37.31307313099995],[146.68670290900013,-37.39075755599998],[146.75671408400024,-37.466098088999956],[146.85820018400022,-37.518317630999945],[147.01857579300008,-37.52987670599998],[147.06824862700012,-37.50005797299997],[147.02180780200013,-37.41243885599988],[146.93148124300023,-37.36771557199995],[146.80175384300014,-37.35808723999992],[146.78204863500002,-37.263855630999956],[146.70754555100018,-37.08862445599988],[146.55794268400007,-37.043115430999876],[146.5063957440001,-37.09308498999991],[146.4066975930001,-36.97921292299998]]],[[[147.3848251510003,-36.66631821499993],[147.2395942920001,-36.733332089999976],[147.2432187510001,-36.81748380699992],[147.1266389760001,-36.80647449899993],[147.10762985900033,-36.93398136399992],[147.01069539300022,-36.96726373899992],[146.9809557760001,-37.04215288899991],[146.90333758500003,-37.0748982479999],[146.97220333400026,-37.26318796499987],[147.03439434300014,-37.14337573099988],[147.10410616800004,-37.23465593899988],[147.21167684300008,-37.286056746999975],[147.29460737600004,-37.17053429799989],[147.31380742600004,-37.0540551229999],[147.45684128400012,-36.97697542299994],[147.5792426170002,-36.88172328999991],[147.53136466800004,-36.77418998999997],[147.37597440900004,-36.73026905699993],[147.3848251510003,-36.66631821499993]]],[[[148.80431219700006,-35.35456165299996],[148.7397174680001,-35.56123708699988],[148.61457150800004,-35.51348964399995],[148.56327115800002,-35.55464249599993],[148.43402856800026,-35.57797329599998],[148.51160436200007,-35.65931023999991],[148.44100092500014,-35.857960480999964],[148.34229186200014,-35.81895540499994],[148.23018574100013,-35.61140247999998],[148.1363897020001,-35.62486541199985],[148.0747892180001,-35.72114846199992],[148.1426606780002,-35.73821873199995],[148.28322462300014,-35.83243284399998],[148.2602752580001,-35.88492269099987],[148.29564482400008,-35.99181767999994],[148.23700519800013,-36.00070626499996],[148.17886872400004,-36.12269684499989],[148.221776534,-36.19189512999992],[148.22224944200013,-36.35231874499988],[148.17027764600016,-36.47453024899988],[148.16533,-36.57748999899985],[148.0715726330002,-36.57395576499988],[148.04600288400002,-36.5093406069999],[147.8881039920002,-36.452347148999934],[147.88077147600006,-36.58978743999995],[147.83819660900008,-36.60892964799996],[147.906358876,-36.75892533899997],[147.8959744340002,-36.825675972999875],[147.96758741700012,-36.95705173999994],[147.90471891700008,-36.99498741499991],[147.85449367600017,-37.21518432299996],[147.93241355100008,-37.27521166499997],[148.15372163500012,-37.12239193199997],[148.10383070800015,-37.04478442299995],[148.3801006330002,-36.86368555199988],[148.34048931200005,-36.77384566399991],[148.39395651700022,-36.66783537799995],[148.5045489800002,-36.65348693899983],[148.4159443100002,-36.57335728099986],[148.45935550600007,-36.414303601999904],[148.5331773590002,-36.386971072999984],[148.60898320500007,-36.28797599899997],[148.58948281200003,-36.17529713199991],[148.649084785,-36.03584398399994],[148.63150716300004,-35.944882305999954],[148.7584309670001,-35.89230871099994],[148.80814436000014,-35.92443634699998],[148.92032801300002,-35.89742454199984],[149.01159147900023,-35.91653549499995],[149.08130763400015,-35.87605263399996],[148.97325866500023,-35.79055551599998],[148.9444374090001,-35.60674009599984],[148.98295537000024,-35.52407230499989],[148.8298082240001,-35.505400617999896],[148.78232447900007,-35.452537504999896],[148.80431219700006,-35.35456165299996]]]]},"properties":{"objectid":53,"eco_name":"Australian Alps montane grasslands","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Australasia","eco_biome_":"AU10","nnh":1,"eco_id":193,"shape_leng":63.3376262961,"shape_area":1.24282124149,"nnh_name":"Half Protected","color":"#F87C3E","color_bio":"#D6C39D","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":12353.732701563316,"percentage":0.2529789592489836}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[46.65341956500009,38.934772819000045],[46.832439583000166,38.81659569500016],[46.99087549000012,38.849374301000125],[47.05250159000008,38.903939317000095],[47.38233551500019,38.99652079100014],[47.54561951500011,39.01757344900011],[47.738819534000015,39.10283416800007],[47.8052905400001,39.169957120000106],[47.985374557000114,39.16415550200003],[48.13323250200011,39.198203798000065],[48.13971758100013,39.279654775000154],[48.33283948000013,39.262854759000106],[48.60583857000006,39.11032222600005],[48.66225447800019,39.095716424000045],[48.815139554000154,38.96894030600009],[48.90388848600003,38.98221221100016],[48.89113659300017,39.08809442400019],[48.96084955300006,39.20924377100005],[49.03840260900006,39.2145236990001],[49.115203473000065,39.14622275500017],[49.095645476000186,38.99306510000008],[49.203552589000026,39.05729897700007],[49.243526555000074,39.306567222000126],[49.377941605000046,39.39118689300017],[49.28247457700019,39.5676445630001],[49.373203483000054,39.68254989400009],[49.376724552000155,39.817935065000086],[49.44826560500002,39.99555279000003],[49.43230461700017,40.108386283000186],[49.56627257600013,40.21630982400018],[49.859062512000094,40.361950086000036],[49.99071153300008,40.35068531100012],[50.157161546000054,40.37437391100008],[50.327873589000035,40.322242831000096],[50.354907574000094,40.46821099300013],[50.25050761699998,40.46008591100019],[50.02719862900011,40.61339645300018],[49.763614596000195,40.59566537500001],[49.520019558000115,40.68513850300013],[49.478855528,40.793944156000066],[49.30313462800012,40.952446616000145],[49.01126854400002,41.42985182500007],[48.75519553500004,41.71115235200017],[48.75043847000018,41.494666232999975],[48.78131052800012,41.34819079800019],[48.85411456500009,41.20841803700006],[48.66784252500008,41.22173906000012],[48.69903158700015,41.105331021000154],[48.754650544000185,41.02799589400013],[48.72858852400009,40.95887067399997],[48.593959569000106,40.920044860000075],[48.47760349800018,40.84425585900004],[48.283767628000135,40.82647599900014],[48.27695062600009,40.73820802000006],[48.06826755600014,40.69329828600013],[47.90741749300008,40.70749622400018],[47.660266516000036,40.80253527100007],[47.82651553100004,40.92876187200011],[47.67642548400016,41.024879838],[47.249004581000065,41.11139214300016],[47.07640459800018,41.18847111900004],[46.85204351300018,41.31636504700009],[46.639606524000044,41.40207704800014],[46.439838614000166,41.42613210400003],[46.17462949800017,41.49983132900013],[45.914974565000136,41.64417088700003],[45.77012656100004,41.697610717000146],[45.17974855200009,41.819614682000065],[44.97523447300017,41.82123272500007],[44.76361857500018,41.73616931600009],[44.664508604000105,41.57432851100009],[44.69499559800016,41.46245156200007],[44.82906749200015,41.35534760300004],[45.15516258600013,41.23341991300015],[45.37671657100003,41.10352304500009],[45.563446597999985,41.06100466700019],[45.705539471000066,41.00339903200012],[46.037242561000085,40.78656640500009],[46.08610955900019,40.739241844000105],[46.12792553300005,40.57169866400005],[46.397758610000096,40.53471502500008],[46.533054597000046,40.47124691800002],[46.690166499000156,40.4280764290001],[46.82796448500005,40.213171137000074],[46.95687446800008,40.100070429000084],[47.01123848600008,40.021084570000085],[47.03894855500016,39.90425291000014],[47.029441465000104,39.63629654100015],[47.08334749600016,39.52577494500002],[46.862274464000166,39.46824290200004],[46.772010587000125,39.52797200900011],[46.66670655799999,39.496749588],[46.6438945380001,39.41007668500009],[46.69729648200007,39.29832328500004],[46.80580155900003,39.16996818400014],[46.74453353500007,39.1227390090001],[46.722572614000114,39.02611829700015],[46.65341956500009,38.934772819000045]]]},"properties":{"objectid":54,"eco_name":"Azerbaijan shrub desert and steppe","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Palearctic","eco_biome_":"PA13","nnh":4,"eco_id":812,"shape_leng":19.0202838928,"shape_area":6.7947966252,"nnh_name":"Nature Imperiled","color":"#B7393D","color_bio":"#CC6767","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":64159.684519447605,"percentage":0.24319327552623063}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[69.31153162800007,37.11488930600018],[69.24133251800009,37.306334657000036],[69.0812835970001,37.46868055400006],[69.04579964800018,37.53035912400003],[69.07232652800013,37.655146719000015],[69.03262363100004,37.71616580099999],[68.80917349200013,37.74036620000015],[68.74764261100017,37.783547586],[68.75549360500014,37.91257307100017],[68.65563948900018,37.88201466400017],[68.64629349900014,37.688796373000116],[68.5429075850002,37.37338418200005],[68.46310449100014,37.24491492000004],[68.17356857700014,37.03950096000017],[68.04212960600012,37.00857659800016],[67.89328762500008,37.089759018999985],[67.85269155300006,37.16514350900019],[67.94345851200018,37.28835581000004],[67.92903158100012,37.48149028200015],[67.95124848600005,37.54585106000002],[67.91779362800008,37.746336126000074],[67.9793925690002,37.910002006000184],[67.95865657900009,37.995232550000026],[68.03449251900014,38.18621924400003],[68.19376359900008,38.40717442600004],[68.1677325930001,38.44857465700011],[67.96250152600015,38.51567464200008],[67.87924961400006,38.47250448800003],[67.84015658500016,38.391336652000064],[67.72528863700012,38.296275476000176],[67.70739763200015,38.16499844400016],[67.65634161600013,38.095480951000184],[67.54229760900017,38.085941004000176],[67.46269953500007,38.01115129300007],[67.31426256800012,38.03426003300001],[67.23140762300011,37.97285186300019],[67.12212353100006,38.04169092500007],[67.00640062800011,38.07722030399998],[66.92813159000019,38.05639261600015],[66.84722158200003,38.0882599410001],[66.75827064600003,38.050990647],[66.66654161200017,37.97149801799998],[66.2677685450002,37.82971175500006],[66.01078056600016,37.79426619600014],[65.66517659300013,37.776543667000055],[65.49226363000008,37.74265831499997],[65.40384662200017,37.6215473580001],[65.32409650099999,37.57106952500004],[65.12763961000007,37.52256931900007],[65.01744055,37.560788618000174],[65.09557363400012,37.65590276700004],[65.03222656200006,37.72151747900017],[64.859947606,37.774644496],[64.58457157700019,37.89149342300004],[64.43982650200019,37.91744915900006],[64.25765254200013,37.718748768000125],[64.11067151100008,37.61016858900018],[63.92251957800005,37.50985950300003],[63.82992150800004,37.488710956000034],[63.590858565000076,37.49136215200019],[63.27746959900003,37.56897052900007],[62.97798956200012,37.58527115100003],[62.82022051900009,37.54151292300003],[62.714870557000154,37.46039169000005],[62.54833555200008,37.28916801600013],[62.316284574,37.12079821200001],[61.99118458000015,37.08763403900002],[61.78878056100001,36.98794286700007],[61.722225568000056,36.845452022000075],[61.66414249900009,36.562522054000056],[61.646419635000086,36.31440447600011],[61.531925520000186,36.18134226600017],[61.345123576,36.030836812000075],[61.0704155840001,35.94222366700018],[60.88057754700003,35.77160768100009],[60.96348563300012,35.51193196200006],[60.94464847900008,35.45298153400017],[61.11472349800016,35.25102829400015],[61.22992353700016,35.13583144000012],[61.36990752300011,35.027912927000045],[61.53673555900019,34.915747808000106],[61.71243248700006,34.90441530700008],[61.9164696360001,34.70038352300003],[62.41812151300019,34.65183889200006],[62.48827753900014,34.69276169000011],[62.64035761700012,34.92297267300006],[62.76298854900011,35.07380200300014],[62.851604544000054,35.1535539680001],[63.02883955100009,35.20672239200013],[63.321269569000094,35.25102829400015],[63.782077605000154,35.295339225000134],[64.01248153900019,35.39281405300005],[64.06565063300008,35.49028854700009],[64.1631246230001,35.57890135600013],[64.36694350700014,35.614350436999985],[64.730270512,35.747270490000176],[65.0758744850001,36.02197613500016],[65.21766661500004,36.101728267000055],[65.43920148900008,36.19920309600002],[66.0063475450001,36.34984970000011],[66.192443566,36.429601833000106],[66.41751057400006,36.61238599600006],[66.78590360100009,36.595510207000075],[66.9757996410001,36.496612467000034],[67.04273249100004,36.57990461200018],[67.17546864500014,36.55162725600013],[67.30703753500018,36.561942026000054],[67.53927660300013,36.614861842000096],[67.70006564600016,36.63574351000017],[67.82488257800014,36.569689754000024],[67.8735655100001,36.61164989700018],[68.00228153500007,36.61604067300004],[68.09211760000005,36.67366843700006],[68.19728852500003,36.57764267200008],[68.32173950300012,36.58747648800016],[68.32373858700015,36.68787425400018],[68.4057925570001,36.76502849900015],[68.49202758900014,36.72071756800017],[68.65363353200001,36.705847737000056],[68.75248751900011,36.734007243000065],[68.89472154300006,36.81808946700016],[68.98829660700005,36.8992569670001],[69.22755451300009,37.03218104400008],[69.31153162800007,37.11488930600018]]]},"properties":{"objectid":56,"eco_name":"Badghyz and Karabil semi-desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Palearctic","eco_biome_":"PA13","nnh":4,"eco_id":813,"shape_leng":23.6056246007,"shape_area":13.4659961339,"nnh_name":"Nature Imperiled","color":"#B86847","color_bio":"#CC6767","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":133906.41062101297,"percentage":0.5075638830956795}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-111.99398759599995,24.53147970300006],[-111.75006063399996,24.351653345999978],[-111.76538862099989,24.454742206000105],[-111.87338256999993,24.523227887000132],[-111.99398759599995,24.53147970300006]]],[[[-115.57467662099998,30.831377815000053],[-115.73549667699996,30.953771539000115],[-115.83339663599986,31.20164000600016],[-115.96620168899983,31.251027018000116],[-116.06700161899988,31.419234548000134],[-116.15630358899989,31.461023029000103],[-116.21130362599996,31.5578995570001],[-116.35970253899984,31.565448467000124],[-116.54080160399985,31.699894864999976],[-116.67675758199994,31.705822714000135],[-116.64379859799988,31.662381322000044],[-116.68402854799996,31.573200219000057],[-116.64378367799998,31.514749185000085],[-116.50221266299997,31.41210154800001],[-116.35211155199994,31.233069628000067],[-116.30322259299999,31.127614557000072],[-116.33699764,30.980080656000098],[-116.27941865899999,30.96579521100017],[-116.05292555299997,30.785641289000125],[-116.0279766509999,30.62282835200017],[-116.04647064999995,30.483293134000064],[-115.98117864099993,30.38614972500011],[-115.86430356299996,30.369432523],[-115.7940595259999,30.245839013000136],[-115.77803768599995,30.079595195000138],[-115.80056757099999,29.981308663],[-115.73025564099999,29.938471271000026],[-115.68383766699992,29.828763390000177],[-115.69694562199993,29.750324534000015],[-115.51125360999993,29.623593342999982],[-115.24521652899995,29.510553488000028],[-115.19007852599992,29.432411519000027],[-114.96354652799988,29.371823770000105],[-114.80722755399995,29.21044128800014],[-114.74154662499996,29.178555355000185],[-114.70449861299994,29.102438454000094],[-114.6293335609999,29.09441982300018],[-114.59303254399998,28.983121057000062],[-114.52642055399997,28.921272669000018],[-114.40899662799995,28.880836189000092],[-114.33512155099999,28.74722965800015],[-114.18379265899995,28.66137198000007],[-114.044807629,28.467840709000086],[-114.1089476279999,28.24228218500008],[-114.08512860599996,28.151277683000103],[-114.26242061099992,27.941079500000114],[-114.12934163699987,27.881561952000027],[-114.17644457999995,27.82091871500012],[-114.12604553699998,27.710836163000124],[-113.98772468899989,27.75388729400015],[-113.91363553799994,27.711240339000028],[-113.94966866899989,27.65386772000005],[-114.04418954699992,27.660673323000083],[-114.07573668399993,27.61498222700004],[-114.23534354299983,27.69936586400013],[-114.31478168999996,27.78112512700011],[-114.33456465699999,27.86819164300016],[-114.47069564999998,27.780909209000185],[-114.61159560999988,27.773898585000097],[-114.85886359799991,27.82877641400006],[-115.04837759099985,27.815562847000024],[-115.00572962899997,27.718621778000113],[-114.87585455399994,27.696571840000047],[-114.73310068399996,27.522566213],[-114.64451553499998,27.498752220000085],[-114.49358360999997,27.39024177800013],[-114.483573606,27.22551290500013],[-114.31316364699995,27.144416483000157],[-114.23218557699994,27.147904359999984],[-114.09880066399995,27.093411931000105],[-114.0157086779999,26.981884842000056],[-113.84121656499997,26.965219272000127],[-113.77494068899989,26.909881947000144],[-113.73049966999997,26.798070711000094],[-113.62121557899997,26.7197582550001],[-113.54334266899991,26.725146142000142],[-113.50583666999995,26.786533189000124],[-113.36174052199993,26.794699845000082],[-113.1987996769999,26.8523934910001],[-113.13957264599998,26.852402543000096],[-113.077621664,26.729131905000145],[-113.00132756999994,26.66316180000007],[-112.99898566599995,26.58029143200008],[-112.88804665099997,26.51980812200003],[-112.79239656299995,26.406030492000184],[-112.48303962799997,26.231062286000167],[-112.39904759299998,26.238007866000032],[-112.32629367899995,26.151784905000056],[-112.30153655499993,26.064138863000153],[-112.18812554899995,25.986225553000168],[-112.12666356799991,25.815990440000178],[-112.06462055299994,25.72486741800003],[-112.02937364399986,25.432252160000132],[-112.04438764399998,25.291675909000105],[-112.11064960599998,25.022536854000123],[-112.056823539,24.94806431500018],[-112.02628357199995,24.817887491000022],[-111.83029958799995,24.646505902000058],[-111.62775458499988,24.562253022000107],[-111.52387967099997,24.46217879800008],[-111.444877551,24.322912639000094],[-111.2334975199999,24.221803920000127],[-111.04530367699988,24.109621366000113],[-110.93486053499998,24.01728497900018],[-110.89314262999994,24.11228010500008],[-110.90698266099986,24.209715539000115],[-110.98189558499996,24.290865270000154],[-110.98522152399988,24.37703928100018],[-111.0431515389999,24.503024986000185],[-111.10556067599987,24.57719829100006],[-111.09835056299988,24.748504108000134],[-111.20992257899985,24.817243593000057],[-111.25495955099996,24.95374590400013],[-111.18614161099998,25.106343648000177],[-111.17490365799995,25.20566786000012],[-111.21643866999995,25.304524361000063],[-111.35449967999995,25.344638472999975],[-111.38397967199995,25.402845594000098],[-111.33655553399984,25.56839572600012],[-111.35217252799998,25.62787404600016],[-111.47542556499997,25.658031631000085],[-111.49993156799991,25.724804721000055],[-111.50271553299996,25.869406968000135],[-111.63517759899997,25.999293778000037],[-111.65577662899994,26.23540511800013],[-111.69998161299986,26.32601885500003],[-111.89144154799993,26.469322410000075],[-111.97541061599998,26.509571806],[-112.09258258199992,26.673737247000133],[-112.1249385719999,26.757374560000073],[-112.13710758699995,26.95219094400005],[-112.17247754199991,27.024284867000063],[-112.40971356499983,27.27966771100006],[-112.53726165599994,27.49305856100017],[-112.66284955599997,27.516291520000152],[-112.81335467399998,27.67463472300011],[-112.8536075909999,27.85832916100003],[-112.94680060799993,27.900260134000064],[-113.13305655499994,28.20794840100001],[-113.12963858199993,28.33404441099998],[-113.28722355899993,28.35772328800016],[-113.37553361399995,28.473255418],[-113.40900456499992,28.615000945000133],[-113.44690652599996,28.62306048000005],[-113.52251464499994,28.510759908000068],[-113.62907361299989,28.503554489000123],[-113.5698546289999,28.647603363000144],[-113.56996962799991,28.707026195000026],[-113.63088259499983,28.830383335000192],[-113.59503168599986,28.894297526000173],[-113.63266760499982,28.977624372000093],[-113.77710757799997,28.986072157000024],[-113.8171846429999,29.12618740300013],[-113.95406363599983,29.21944797900005],[-114.07011460599983,29.235385162000057],[-114.12525964999998,29.310852130000114],[-114.14407366999995,29.398732697000128],[-114.22904152499996,29.437334378000116],[-114.246642684,29.494839263000188],[-114.38523057999998,29.571929303000104],[-114.45478059499999,29.6794731440001],[-114.45423157999994,29.741203850000147],[-114.5359036719999,29.868926955],[-114.53958852399995,29.94685015600004],[-114.76079566599986,30.165532837000057],[-114.82672855499999,30.175343352000084],[-114.81314065099997,30.28522641400008],[-114.95395662499999,30.387415896000164],[-115.01995857999998,30.470846845000096],[-115.10639159299996,30.461407146000056],[-115.13149254299998,30.548496964000094],[-115.24959556999988,30.635747882000146],[-115.36131259299992,30.664211652000176],[-115.45777153499989,30.80882546600003],[-115.52776361199989,30.762887105000175],[-115.57467662099998,30.831377815000053]]]]},"properties":{"objectid":60,"eco_name":"Baja California desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Nearctic","eco_biome_":"NE13","nnh":1,"eco_id":426,"shape_leng":31.1232410861,"shape_area":7.11070081572,"nnh_name":"Half Protected","color":"#E0B45B","color_bio":"#CC6767","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":77885.50818626888,"percentage":0.295220152557054}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[71.60415649200019,35.24721033700018],[71.5502625310001,35.29269523700003],[71.57648464400017,35.35669291200003],[71.47831763800019,35.44104570400009],[71.40605155100013,35.44476073100009],[71.2707595870001,35.52299875600005],[71.21171561700015,35.49891335700016],[71.22851563299997,35.31713183800019],[71.20865655800009,35.250922346000095],[71.09517648500008,35.20953753800018],[70.94565557000016,35.044498702],[70.85867354300007,35.01608723500016],[70.7938235960001,35.155320873],[70.84275848800013,35.26464318700016],[70.77493263100018,35.30358215600012],[70.81021155800016,35.37419851700008],[70.64378350600015,35.26986494500005],[70.6143345270001,35.071655063000094],[70.69528158399999,34.968267640000136],[70.68424261700011,34.88123783600008],[70.69231455800019,34.8319991840001],[70.54859961900019,34.80367874500013],[70.48493152100002,34.75211310900005],[70.39116652300015,34.77013353000007],[70.39769753400003,34.86354129100016],[70.36874359100005,34.93762843100012],[70.36349450799997,35.140657069000156],[70.33128352400007,35.227286888000094],[70.26121550700003,35.25693015900009],[70.04549448900002,35.27260398300018],[70.11562352600015,35.04042878500013],[70.20010355400012,34.90762322900014],[70.1417235990001,34.82777219000013],[69.96121964900004,34.90868303700006],[69.90972157099998,34.8020806510001],[69.79778259500006,34.73436744600019],[69.68053452200002,34.84103588100004],[69.65875263700019,34.97419934499999],[69.59107949800006,35.042678488000035],[69.40119955100005,35.068531127000085],[69.35865753700011,35.15159696100011],[69.41807550800002,35.295972394000046],[69.34497056000015,35.32111458300011],[69.18712658200002,35.26175930900013],[69.00904064400004,35.14804605200004],[69.11007660800004,35.11476369400009],[69.34864853900012,34.97045364000013],[69.38152353700008,34.863820241000155],[69.35873448300009,34.698998329000176],[69.45306358300013,34.530629867000016],[69.43666858100005,34.43888138699998],[69.60413364200014,34.338878241000145],[69.64640056200017,34.214259457000026],[69.77438350600016,34.21000564100012],[69.88571948800012,34.165962931000024],[69.99452262700004,34.18619919200006],[70.17469750300006,34.12154202900007],[70.50063350800008,34.113523397999984],[70.67717751100014,34.12559300300006],[70.90804261700015,34.10899549400017],[71.04837059700014,34.07730720600017],[71.09509249800016,33.971025344000054],[71.16117056200017,33.899086319000105],[71.1458816350002,33.852376655000114],[71.27916764200012,33.799009915000056],[71.25447053200014,33.75941129000006],[71.0872195440001,33.786819443000184],[70.98729653000015,33.692282136000074],[70.72042058800008,33.67762269000019],[70.57903263300005,33.58821594700004],[70.42722362600006,33.596474803000035],[70.44452655700019,33.69041313900004],[70.35022763100017,33.868558086000064],[70.1714785170002,33.94833687300013],[69.92118063800018,33.982583988000044],[69.95982355900014,34.08714605100005],[69.78274562800016,34.127499718000024],[69.73207048600017,34.07251627800008],[69.82621753100017,34.0112621670001],[69.77645853000007,33.85780427200007],[69.69301551100006,33.879387840000106],[69.56616261400006,33.99113570900016],[69.50193762200018,33.84213799200006],[69.62859354400013,33.80485495200003],[69.64431749100004,33.75005742100012],[69.54956057900012,33.644836541000075],[69.54557749800017,33.53141681800008],[69.42903149300014,33.471985604],[69.42253149500004,33.349804948000155],[69.31101949300006,33.23485636600009],[69.3194195010002,33.16667042200004],[69.41503153600007,33.17742406800005],[69.48133859200004,33.13463545800016],[69.34369651000009,32.954899794000085],[69.30915854300014,32.87092955300011],[69.22174853600012,32.86646266900016],[69.14249462400005,32.7665815630001],[69.22607460400013,32.72925577500013],[69.20148461500008,32.637362791000044],[69.14438658699999,32.57621563400005],[69.08032252800007,32.58621340000019],[68.83699755500004,32.754551185000025],[68.78460663700002,32.7280967260001],[68.76447263500017,32.556295035000176],[68.503707603,32.26940931100006],[68.54885052200012,32.208021426000016],[68.25281561600008,31.958868516000166],[68.07165553099998,31.693359159000124],[67.98054457800004,31.63391604300017],[67.8819276320001,31.63613590600005],[67.73803751100019,31.52892080300012],[67.58110062300017,31.531697728000097],[67.61471557600015,31.46716679700006],[67.82321960800004,31.51369122100016],[67.88907655700018,31.496111688000155],[67.87274961500003,31.360062502000176],[67.77169755799997,31.22166806100006],[67.78707851800004,31.15356861800018],[67.90131363299997,31.17773280600005],[67.95623052100007,31.223866131000193],[68.11659963100004,31.29635769100014],[68.33357961100012,31.29558773000008],[68.49461357400014,31.338646237000034],[68.55049153100009,31.294127770000102],[68.71086852000008,31.35872558900013],[68.8230135230001,31.46381202400005],[68.97612759200013,31.46553165500012],[68.88305661600009,31.286898043000065],[68.64614849300006,31.179401476000066],[68.23693056800005,31.096165489000157],[68.23677064100008,31.05852487600015],[68.41584061500015,31.02805682600001],[68.35314163200019,30.95668022700005],[68.2022786070001,30.98438929000008],[68.13712355900003,31.020957186000032],[68.07803348800002,30.93051041600006],[67.68701954900013,30.858061939000038],[67.52730556900013,30.738953921000075],[67.60327964200019,30.747783753000192],[67.72196152400011,30.71657474300008],[67.83654750500011,30.762572279999972],[67.94101753500007,30.72114455600007],[68.04996450600004,30.712459899000123],[68.00151861500018,30.624369114000103],[68.00373059900005,30.511523383000053],[68.1601255130002,30.417776490000108],[68.16939556200009,30.33479062000015],[68.10848259599999,30.269373050000013],[67.9107665750002,30.203152494999983],[67.78177662900003,30.091953641000032],[67.71711762200005,30.00749188500015],[67.64853655500013,30.05522011800008],[67.52119449100007,30.02641017600007],[67.37068954000011,30.128085343000123],[67.27217854100019,30.075711189000117],[67.28398864200011,30.003429847000177],[67.22296855500014,29.937430406000146],[67.1137315690001,29.924872974000095],[67.04203059000014,30.016759420000028],[66.94515255300013,30.046778200000062],[66.95668756100008,30.109385988000042],[67.059715568,30.246744929000158],[66.93678255200007,30.302944752000087],[66.94856247899997,30.36827028800002],[67.08467050500008,30.407600860000173],[67.40350351799998,30.70555237200017],[67.26200056300007,30.648341189000178],[67.24741353700017,30.698148469000103],[67.32894162700012,30.763337213000113],[67.38996154700015,30.853973079000127],[67.33966057300006,30.881713155000114],[67.20761156700013,30.83505462000005],[66.98739650700008,30.86599272800015],[66.91197161600019,30.824713028000076],[66.82488263599998,30.86611258900001],[66.61123664100018,30.845264281000027],[66.51831855000006,30.684191092000162],[66.50901061500008,30.619686480000098],[66.4413684880002,30.59115347500017],[66.34255959600006,30.49403688900003],[66.25386062000007,30.536536324000053],[66.13825255000012,30.335753700000055],[66.0226436420001,30.086294850000115],[65.9131245210001,29.81858574800009],[65.89100652300004,29.65452809800007],[65.8062205540001,29.495604028000116],[65.6931225290001,29.428145632999986],[65.49632248300009,29.358850428000153],[65.4446795660001,29.29496373],[65.31810763100009,29.217209005000086],[65.34652748000008,29.08784991900012],[65.00164049400013,28.963513773000102],[64.91092650900015,28.975303423000184],[64.712531555,28.884187106000127],[64.50303661300018,28.804961356999968],[64.36925557100011,28.84791039700019],[64.26544150900008,28.75200147600009],[64.05189559399997,28.671922449000192],[63.90761957100011,28.57456060900006],[63.864730545999976,28.4805644380001],[63.911369635000085,28.42004676100015],[64.09587862500001,28.381987389000017],[64.35178349400013,28.37333776800017],[64.56649063800012,28.468304731000103],[64.68303664300015,28.536381040000038],[64.87944056000009,28.540021803000116],[65.01763148900011,28.66524592800016],[65.308776561,28.730104089000065],[65.32498950899998,28.585770063000098],[65.21737660100007,28.44763546000013],[65.18814856900002,28.35894922500006],[65.423019555,28.413485910000077],[65.58400758400012,28.400296649999973],[65.55782352400007,28.303091552000183],[65.46943652300007,28.18758540500005],[65.43285353900012,28.070620137000105],[65.37483953700007,28.02206209600007],[65.07312052700013,27.848070550000045],[65.00560748200007,27.771704706000037],[64.99992354500006,27.664787161000163],[64.92278254300004,27.603002811000067],[64.79412854400005,27.54952124000016],[64.58943961799997,27.557918901000164],[64.44943249800008,27.496808289000057],[64.21673561100016,27.45336807000018],[64.07422649300014,27.292937102000053],[64.02497057400012,27.181454940000094],[64.09208648500015,27.106316374000187],[64.24958060200004,27.136232057000143],[64.50646263200008,27.234971547000043],[64.62985262900003,27.343726071000106],[64.9824145880001,27.544478184000184],[65.06695563700004,27.539876687],[65.13407858800014,27.46473778600017],[65.05505350200013,27.367314925000187],[64.87424461900014,27.258934738000107],[64.74948149800008,27.22723689500009],[64.58576163900005,27.131676158],[64.34178958300004,27.018488949000073],[64.14582856600015,26.985167698000055],[63.980403492000164,26.908944850000125],[63.98999054500018,26.82994440699997],[63.94588061200011,26.746778158000154],[63.69171850900011,26.65080134300007],[63.628868484000066,26.688968507000027],[63.45513962700005,26.737358575000144],[63.19411056600018,26.704193060000023],[63.1763835110001,26.629390441999988],[62.991378479000105,26.64911138400015],[62.772766542000056,26.64800363100005],[62.74748957200012,26.61272403300012],[62.61415863800016,26.578836669000054],[62.44609862900006,26.567171239000118],[62.310272570000166,26.501065013000073],[62.273879520000094,26.428288300000077],[62.28788752400004,26.360153486000172],[62.39836151100019,26.321489107000048],[62.36297261300007,26.221689809000168],[62.48643150900017,26.228714347000164],[62.72209961300018,26.185640250000176],[62.96453459600008,26.16693821200016],[63.07693860000012,26.171816815000113],[63.19533164100005,26.13512654200008],[63.227729541000144,26.075626262000185],[62.88878247500014,26.02809852400003],[62.89102949600016,25.967488311000068],[63.07994049500007,25.970950037000136],[63.20063051300008,25.925887417000183],[63.42568260200005,25.888887852000096],[63.559940574000166,25.94481425700019],[63.69699055800015,25.898860641000056],[63.54058860400016,25.786403831000086],[63.50373857200009,25.65918866900006],[63.586536521000085,25.621688537000068],[63.652759591,25.684067331000108],[63.82763660100011,25.732283055000153],[63.978946550000046,25.748788364],[64.19280259500005,25.706901311000024],[64.308402619,25.772089217000143],[64.4916685730002,25.74404873300017],[64.5825805390001,25.78465570100002],[64.728446609,25.801457058000096],[64.79295356900008,25.883175250000136],[64.94626662500013,25.88582493700011],[64.94586949000006,25.929835126000057],[65.11976648800004,26.01109516200006],[65.26402256300008,25.997742958000174],[65.19864656800007,25.860101212000018],[65.2904666290001,25.791354350000177],[65.35475951400014,25.797349255000142],[65.43047358100017,25.74835552200011],[65.51465655500004,25.77850321600016],[65.56097461700011,25.595217481000077],[65.53942859900013,25.407940450000126],[65.64267755300017,25.348601102000032],[65.85640753500007,25.420806839000193],[65.9304965180001,25.49724309100003],[66.00102956300009,25.461876824000115],[66.0959016430001,25.492954574],[66.17318748400015,25.5981095730001],[66.21984853300012,25.716766979000113],[66.30118551600015,25.88664317900009],[66.27339162800013,26.133530796],[66.21652963500014,26.287362691000112],[66.24912249800008,26.355445706000012],[66.37150549300009,26.485536867000064],[66.34500158000014,26.623933488000034],[66.35044864300005,26.785513447000085],[66.41668663300004,26.774845966000044],[66.48705254300012,26.497161225000184],[66.58912652200019,26.39132410700006],[66.73226947900008,26.061038900000085],[66.85353064000014,25.658677540000156],[66.95157661100018,25.698535669000137],[67.05120056000015,25.569661728000085],[67.07858256100013,25.427546560000167],[67.14116654400016,25.446117505000075],[67.1995315800001,25.641497489000187],[67.18093163400016,25.745582454000157],[67.23013256800004,25.761461801000166],[67.26097864200017,25.89694654900012],[67.35878757300009,25.832328614],[67.39124263700012,25.88243713999998],[67.37019349900004,26.035760086000153],[67.42505657600003,26.09229769900014],[67.54447958600014,25.870535843000027],[67.60025763099998,25.823819976000152],[67.6184616160001,25.745133519000035],[67.73739663100008,25.58457095500006],[67.74453751000004,25.34677233800005],[67.81519360100009,25.325283485000114],[67.91349756700004,25.24299817400015],[67.949096516,25.356672875000072],[67.96018258800012,25.481285959000104],[67.91237657100015,25.64409621400017],[67.9133076330001,25.720484688000113],[67.96196759900016,25.88925598500009],[67.91638161200018,26.02881048300003],[67.90994263400012,26.157943592000038],[67.87426757800012,26.273788199000137],[67.80925753700006,26.251330398000107],[67.81249948900006,26.096159578000027],[67.72222857100007,26.06648780800009],[67.67323249200007,26.164664202000097],[67.41219354000015,26.49340747399998],[67.33370958900008,26.50190890300007],[67.29469250000005,26.733038541999974],[67.3014525050001,26.86481278900004],[67.33120759100018,26.94192059800008],[67.38345350200018,27.206894853999984],[67.35366857700018,27.270805022000104],[67.3935625810002,27.358718278000083],[67.40167257500013,27.497254206000093],[67.37230657700007,27.59244127800008],[67.49545249300019,27.742782781000187],[67.51776863900011,27.9394855970001],[67.48947954900018,28.018991134000146],[67.36959050500008,28.22623369000013],[67.3850175660001,28.413336880000145],[67.31513260999998,28.510112155000172],[67.30966157400013,28.64431665100011],[67.35652948800004,28.786972787000025],[67.439437575,28.87348760700013],[67.44290952700004,29.015552819000106],[67.59290351700008,29.162587997000117],[67.58203855800008,29.214583960000027],[67.69936357800015,29.299751808000053],[67.79222148600013,29.43546554900007],[67.73078163300005,29.498933991000058],[67.75644651800002,29.597160173000134],[67.91847256200015,29.667016463000152],[68.04189256600006,29.619346233000158],[68.14727052300009,29.527644021000185],[68.20060759100005,29.52828272200003],[68.312728622,29.450204958000086],[68.26094052999997,29.31374103700017],[68.43409757400002,29.190914807000183],[68.46237157700006,29.107189149000135],[68.54666854500016,29.16202691300009],[68.82685059100015,29.078719345000138],[69.01415259900011,29.081109360000085],[69.10839855100005,29.023801450000065],[69.05061354300011,28.950394251000148],[68.73544358900011,28.95728518100009],[68.6112675380001,28.989222914000038],[68.49691055000011,28.95289423700001],[68.58457151100009,28.79954044500016],[68.70803862200006,28.758421008000084],[68.91091152400014,28.753792353],[69.13741250900011,28.780160144000092],[69.25659948400016,28.772901584000067],[69.44249752400015,28.830718275000038],[69.82289159200002,28.999462414999982],[69.89758256300013,29.078809199000148],[70.02192658800004,29.328268719000107],[70.0502475310002,29.43704620900013],[70.05496251900007,29.58696945500003],[70.14865157700007,29.808452362000082],[70.30886863900008,29.928894611000032],[70.35545358000013,30.03023500600017],[70.5217976460001,30.311512398000048],[70.53810162100001,30.514843119999966],[70.47193152400007,30.94644357600015],[70.37171950200019,31.183654621000187],[70.35439259900016,31.36122641300011],[70.23043062100004,31.576108069000156],[70.21427953200009,31.85001978000014],[70.19023855700004,31.97981556200017],[70.14821655600008,32.05500324500014],[70.16542862699998,32.148880058000145],[70.33524363800018,32.236226363000014],[70.33582249200015,32.40400188900014],[70.40335062499997,32.456239251000056],[70.57196853300019,32.452500587000145],[70.57613350100019,32.55242745700008],[70.44341260200014,32.59761496800013],[70.39256261300017,32.65687401800017],[70.41573354600007,32.73938061100017],[70.37362655200008,32.784300236000036],[70.22902648500019,32.84744714800007],[70.25393649500012,33.01303399200009],[70.46781953000004,33.20699827300018],[70.52134653200005,33.30987339400008],[70.62304651000017,33.37004154500005],[70.75917850800005,33.315461944000106],[70.73806751200004,33.25336478200006],[70.61148048900003,33.174856188000035],[70.64894860200013,33.07605936600015],[70.79077962400015,33.104981458000054],[70.85399660900015,33.197896532000186],[71.03856662000015,33.199018366000075],[71.08889056100008,33.25175512100003],[70.88667262000007,33.2584266130001],[70.91072851500019,33.35092208800006],[71.08155052800004,33.38989173500005],[71.31305651500003,33.40989213000012],[71.57270055000004,33.4668976210001],[71.78585855100016,33.47409935200011],[71.90714251100007,33.46193067300004],[72.00116751500019,33.36400255100011],[72.0110476000001,33.189195948000076],[72.03791059399998,33.09962156700004],[72.04772949000011,32.93055573000004],[72.02362850100019,32.80631044300014],[71.89054164800007,32.55184743000012],[71.89830060800011,32.449861461000125],[71.93894948600007,32.41879963700006],[72.15239750100017,32.39581226700005],[72.58827255900019,32.5620669810001],[73.01509851500015,32.606575726000074],[73.14376056200007,32.651534243000185],[73.36640955900015,32.69406284600018],[73.74114249000019,32.61421633300017],[73.86150360200014,32.56729695400003],[74.05024763300014,32.41144066100014],[74.19773861900018,32.33312317500008],[74.30034652500007,32.24571719100015],[74.40618850400017,32.11995008700006],[74.51088752800007,32.03073495400008],[74.73416164700018,31.93591417100015],[74.80323054100006,31.949255646000097],[74.8834225560002,32.02642430800012],[74.69523659200013,32.14566040200003],[74.44371059700012,32.34180213300016],[74.37442762900008,32.34586484100004],[74.20342255500009,32.43131113600009],[74.1302795530001,32.52630928000008],[74.13514759499998,32.62656388200014],[74.02192652300005,32.783900252000024],[73.7307965390001,32.98024415500015],[73.46111249200015,33.10519821400004],[73.32032049100002,33.189538768000034],[73.05664861500009,33.41269906200006],[72.94341262400019,33.54394843400007],[72.8461686330001,33.72401233400018],[72.84414658300011,33.80346607000007],[73.10529349300009,33.95613371900009],[73.08347355500018,34.034061447000056],[72.96130362800005,33.98544473200013],[72.86667663500015,34.14029838200008],[72.78763562400019,34.175476391000075],[72.67662854800011,34.13832964000005],[72.55113251400019,34.2280071190001],[72.52100359500014,34.28734646800007],[72.43701960800013,34.25795515699997],[72.32412760900013,34.32505430300017],[72.27361256100005,34.38885282400014],[72.14230351000015,34.360731371000156],[72.14803354600014,34.4984698450001],[72.09604663599998,34.524218046000044],[72.06501750100011,34.67109514100002],[71.99495652500019,34.753962995000165],[71.87770861900009,34.79464204700014],[71.90519757400017,34.91913962899997],[71.81198863100019,35.0113073710001],[71.73082750100002,35.03104507699999],[71.53831463100005,35.020352115000094],[71.44565554100018,35.10393813000002],[71.60415649200019,35.24721033700018]],[[69.50367753800009,32.85091105300006],[69.63021862700003,32.811365234000164],[69.87702158700012,32.85561782700012],[69.88588762900008,32.81730800300005],[69.78391255700012,32.69408195700004],[69.81582648600005,32.55687523100005],[69.89727763000008,32.45757046500006],[69.66362755200004,32.436528871000064],[69.80637354300018,32.32947352700006],[69.74217252300014,32.28332494700004],[69.58188656200002,32.40119093400017],[69.50327252400018,32.39765125700012],[69.24746656200017,32.33142215200013],[69.1927035650001,32.35576353400012],[69.17445364800005,32.465280140000175],[69.22312953900007,32.574799595],[69.30223056500012,32.635642657000176],[69.36915553600016,32.86684773300004],[69.45434551100016,32.909438195000064],[69.50367753800009,32.85091105300006]],[[66.82438659500008,29.98736861200007],[66.77787759400013,29.98715034700018],[66.83258862300016,30.19312589500015],[66.91451250600005,30.13917594200018],[66.82438659500008,29.98736861200007]],[[67.41125459900013,29.8342350960001],[67.51349655100017,29.67693627799997],[67.48895249399999,29.57800987100012],[67.40116161400005,29.616048457000147],[67.3674165750001,29.680217122000045],[67.43318953700015,29.734544092000135],[67.36544062500008,29.78081219799998],[67.41125459900013,29.8342350960001]],[[66.90711950000014,29.54378136400004],[66.99932060300006,29.509172653000064],[66.88307148400008,29.326590494000072],[66.77938851500016,29.36713912400006],[66.76383958200017,29.425465939000162],[66.86480748499997,29.563621496000053],[66.90711950000014,29.54378136400004]],[[66.76463351600012,29.26877195800006],[66.71781958100019,29.177005374000146],[66.60881762400015,29.189825997000128],[66.52458955500015,29.160045095000044],[66.53079249900003,29.28712128600006],[66.76463351600012,29.26877195800006]],[[66.92326354800008,29.27261288200009],[67.11358656200008,29.183045373000084],[66.90895061000015,29.141136863000042],[66.93776658800016,29.02827219000011],[66.80874663399999,28.836349070000097],[66.76631157300017,28.832670085000075],[66.71180757700012,28.663925946000177],[66.71040360800004,28.583300084000086],[66.4177166020001,28.36196821900012],[66.32446256400016,28.469124648000047],[66.35462953700016,28.582039278000025],[66.4473804920001,28.707843933000163],[66.50334964500013,28.925796382000158],[66.61627148300005,29.02509259900006],[66.72255753500013,29.088339925000184],[66.71585050400006,29.153686416000028],[66.92326354800008,29.27261288200009]],[[66.93374662700018,28.970813573000157],[66.98811349500005,28.798110325000152],[66.92327863600008,28.739111785000034],[66.93145752900011,28.634906959000148],[66.8774334810002,28.597688459000153],[66.81388859700013,28.669195480999974],[66.8977966440001,28.81159982500003],[66.86237354800016,28.867818758000112],[66.93374662700018,28.970813573000157]],[[66.36289258400018,29.138126922000083],[66.36876662200001,29.08242934300017],[66.26257360900007,28.901716180000108],[66.21803251000006,28.726944279000122],[66.11675263300015,28.76732275600017],[66.18855251900004,28.839678865000167],[66.19270357200003,28.958414223000034],[66.27039358900015,29.103248314000098],[66.31807756600017,29.11326787300004],[66.37325261700005,29.369649001000028],[66.43750761600012,29.27350186600006],[66.36289258400018,29.138126922000083]],[[66.9595335520001,29.803142426000193],[66.9254684920001,29.642237545000057],[66.81050851000015,29.575640977999967],[66.72293052999999,29.402736564000065],[66.68025256100015,29.419976966000092],[66.73426856300011,29.526741960000095],[66.87644156699997,29.744203565000134],[66.9595335520001,29.803142426000193]],[[64.33533451200003,26.63942592700016],[64.46307354300012,26.62422165700019],[64.54859963300015,26.586572160000173],[64.65009358400016,26.592043866000097],[64.68350955000011,26.551733953000053],[64.61154152400013,26.48416894000013],[64.27680954900006,26.400146731000177],[64.2489925270001,26.349803847000146],[64.15518964300009,26.321273189000124],[64.09741251400004,26.176737830000093],[64.01897449600011,26.239854902000104],[63.86785163200011,26.268718489000037],[63.670619582000086,26.32919995500015],[63.52116354300006,26.296096299000112],[63.59175157300007,26.44071782400016],[63.73954061900014,26.54539622800013],[64.20340754700015,26.62736235600005],[64.33533451200003,26.63942592700016]],[[64.93479951000018,26.31111767600015],[64.84410849100016,26.259008892000054],[64.61560054400007,26.166444183000067],[64.33960760600007,26.117915310000114],[64.51364860600006,26.277837161000093],[64.597412485,26.27742913000003],[64.82290663500004,26.338366405000045],[64.93479951000018,26.31111767600015]],[[62.71958956900016,26.316187386000024],[62.787158605000116,26.281158071000107],[63.02450962800003,26.271599517000027],[63.10776858100007,26.31095758100014],[63.20653958700012,26.30502788800004],[63.31187848500002,26.229761247000113],[63.24686861100008,26.183412340000075],[63.11388049700008,26.197331663000057],[63.0110814840001,26.179783479000093],[62.937759612000036,26.213371944000187],[62.84656953500007,26.20594138700011],[62.751190517,26.23571005100007],[62.71958956900016,26.316187386000024]]]},"properties":{"objectid":65,"eco_name":"Baluchistan xeric woodlands","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Palearctic","eco_biome_":"PA13","nnh":4,"eco_id":814,"shape_leng":112.211253187,"shape_area":27.0215269751,"nnh_name":"Nature Imperiled","color":"#D94F5C","color_bio":"#CC6767","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":289391.40032535075,"percentage":1.0969200219946884}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-88.60044852199997,16.34291986900007],[-88.71200561799992,16.387203978000173],[-88.72946964899984,16.31740535600011],[-88.60044852199997,16.34291986900007]]],[[[-88.50007657199995,16.369438031000072],[-88.4750215549999,16.443587532000095],[-88.39652251699994,16.54689616500019],[-88.55072053399994,16.61628357100011],[-88.58058156699991,16.57862116600012],[-88.50007657199995,16.369438031000072]]],[[[-88.33767652699999,16.71268652200007],[-88.4203645049999,16.736519123000164],[-88.4564895019999,16.695705792000183],[-88.36115256199997,16.641066008999985],[-88.33767652699999,16.71268652200007]]],[[[-88.75484451899996,17.065247642000145],[-88.83496059399988,17.13698919000018],[-88.92666666199989,17.084237515000098],[-88.92916061299991,16.879990315000157],[-88.7956166109999,16.893732278000016],[-88.67526253999995,16.97369647300019],[-88.6614835289999,17.087500422000176],[-88.75484451899996,17.065247642000145]]],[[[-88.39947562899994,17.532377812000163],[-88.45723750299999,17.543489366000074],[-88.55228459699993,17.483095071000037],[-88.51807352399999,17.39311936400003],[-88.34430661299996,17.475738275000083],[-88.39947562899994,17.532377812000163]]],[[[-88.46250150599997,17.935479462000046],[-88.54366263599991,17.933640639999965],[-88.61437957999993,17.876625929000113],[-88.67167659399996,17.726559184],[-88.66270460499999,17.612645097000154],[-88.74125661599999,17.56406593300005],[-88.71939057799989,17.512792322000053],[-88.61881260099989,17.61954776099998],[-88.62654859499997,17.764817878000088],[-88.58559461599998,17.863137770000094],[-88.47341155899994,17.666888918000097],[-88.34697758999988,17.630288834999988],[-88.30471050199998,17.77393822700003],[-88.25429553399994,17.842337072000134],[-88.27158354399995,17.929797705000055],[-88.3716275939999,17.870217461000095],[-88.46250150599997,17.935479462000046]]]]},"properties":{"objectid":67,"eco_name":"Belizian pine savannas","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Neotropic","eco_biome_":"NO07","nnh":3,"eco_id":564,"shape_leng":11.0412966966,"shape_area":0.239735268467,"nnh_name":"Nature Could Recover","color":"#FFAA01","color_bio":"#FEAA01","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":2837.6396943277014,"percentage":0.013235867383192124}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-65.28311150899992,-16.180115899999976],[-65.20059955099993,-15.99449865399987],[-65.20960959399997,-15.91301767099992],[-65.3122106269999,-15.955767220999974],[-65.29494457699997,-16.030592469999874],[-65.38793961299984,-16.124718560999895],[-65.39340260299997,-16.186933404999877],[-65.28311150899992,-16.180115899999976]]],[[[-65.19845562799998,-15.760606506999977],[-65.24937451599988,-15.707681829999956],[-65.35298154499992,-15.759372523999957],[-65.49694861099994,-15.866900773999873],[-65.43769056699989,-15.93567328399996],[-65.34214055899992,-15.92755675199993],[-65.24042549299998,-15.853417476999937],[-65.19845562799998,-15.760606506999977]]],[[[-64.87989854699987,-15.565073972999812],[-64.88767259499997,-15.437985209999852],[-64.9612345239999,-15.30676265999989],[-65.0152055989999,-15.36992851499997],[-65.00473760799991,-15.457620991999931],[-65.06743658999983,-15.574383249999926],[-65.14120454699992,-15.784825010999839],[-65.1392515629999,-15.973092949999966],[-65.16759463399995,-16.137341539999852],[-65.11642462399993,-16.16884760499994],[-65.14394358499999,-16.27781687299995],[-65.07453958299993,-16.366224995999914],[-65.01589157399991,-16.227376757999878],[-64.88474261699992,-16.06947896899993],[-64.81457552599994,-15.933676379999952],[-64.84310148999992,-15.827082207999979],[-64.81264450299994,-15.653839500999936],[-64.87989854699987,-15.565073972999812]]],[[[-68.06552148599991,-13.723756088999949],[-68.07587464499989,-13.815706907999925],[-67.98364252999988,-13.792932606999955],[-68.06552148599991,-13.723756088999949]]],[[[-67.56675751099988,-13.48717385499998],[-67.80753354699993,-13.48536906299995],[-67.96496563799991,-13.554278532999945],[-68.03464557199999,-13.640676508999888],[-68.08787551899997,-13.552528391999942],[-68.20235454699986,-13.587005170999817],[-68.22872954599995,-13.633786248999968],[-68.16966260999993,-13.739177114999848],[-68.07604949199998,-13.699630624999884],[-67.93396751599983,-13.729608668999958],[-67.94139857599998,-13.59940753799998],[-67.66096456999998,-13.55159548599994],[-67.6601406289999,-13.651774818999968],[-67.58866864399988,-13.644131529999925],[-67.53730752599989,-13.559559969999953],[-67.56675751099988,-13.48717385499998]]],[[[-67.9970016069999,-12.924329725999883],[-68.10029548799997,-12.967726694999953],[-68.21521758299991,-12.983896559999891],[-68.31053155699993,-13.119487589999892],[-68.28561349999984,-13.14664462099995],[-68.08699759899997,-13.045383350999941],[-68.00398255899995,-12.969623686999967],[-67.9970016069999,-12.924329725999883]]],[[[-67.65265659599993,-12.943534174999911],[-67.62171949399982,-12.869444185999896],[-67.73198661499998,-12.884890189999908],[-67.77985348499993,-12.946644196999955],[-67.89540053499991,-12.981123657999944],[-68.02517653599989,-13.048848262999911],[-68.04247259399995,-13.19231073799989],[-68.07686655999998,-13.292681849999894],[-67.95771059799995,-13.259905087999982],[-67.98406950399988,-13.156410040999958],[-67.84649648899995,-13.142880978999926],[-67.76170347999994,-13.062274394999974],[-67.68740863699992,-13.043562466999902],[-67.65265659599993,-12.943534174999911]]],[[[-68.65718863299998,-12.836707321999938],[-68.76363360599993,-12.898086489999855],[-68.80426052299993,-12.970161469999937],[-68.74443854499998,-13.153970236999896],[-68.6478495159999,-13.067773090999879],[-68.68042762699997,-12.939435424999886],[-68.65718863299998,-12.836707321999938]]],[[[-67.18046559999993,-12.633511213999896],[-67.27829749799992,-12.614349344999937],[-67.40308358399994,-12.672720415999947],[-67.42033354099993,-12.826889263999874],[-67.32807963199997,-12.959046395999906],[-67.46131853299988,-12.977042173999962],[-67.6137545069999,-12.96267005999988],[-67.64392851999992,-13.04229059699992],[-67.74645947999994,-13.094321092999962],[-67.76131455899991,-13.146218652999892],[-67.57326555599997,-13.169727208999973],[-67.37355749199997,-13.149297325999953],[-67.2733156299999,-13.068262761999904],[-67.2700275769999,-13.001223294999875],[-67.15757763999994,-12.841702097999928],[-67.10854350699998,-12.644866512999954],[-67.18046559999993,-12.633511213999896]]],[[[-68.67061660899998,-12.654720613999928],[-68.77572651299988,-12.769985025999858],[-68.82055661899994,-12.789573533999942],[-68.83843957699997,-12.884327428999882],[-68.9401325149999,-12.963299875999951],[-68.92280561199988,-13.056824816999892],[-68.85962651399996,-13.04300942899988],[-68.84028661399992,-12.951356669999939],[-68.7728275479999,-12.853224532999832],[-68.75737752099991,-12.77472080099983],[-68.6723555189999,-12.744204638999918],[-68.67061660899998,-12.654720613999928]]],[[[-67.50969653099992,-12.387253747999978],[-67.54679852299995,-12.368455317999974],[-67.75017551299993,-12.605509118999976],[-67.87287148799987,-12.648666029999958],[-67.95386464499995,-12.619396255999959],[-68.02824364199995,-12.69856484099995],[-68.06109651199989,-12.820345679999889],[-68.13021854699986,-12.793429376999939],[-68.18323559299995,-12.829299898999977],[-68.29686754599993,-12.812297207999848],[-68.18756853399992,-12.670409859999893],[-68.12462664399999,-12.68216095299988],[-68.09342953599997,-12.513059240999894],[-68.2325825399999,-12.64923499299988],[-68.29685262599992,-12.73802399099992],[-68.36944560799998,-12.661032186999876],[-68.40051262899993,-12.780386296999893],[-68.52571848099996,-12.824939297999947],[-68.63126357399989,-13.002042373999814],[-68.52587153499985,-13.024963861999822],[-68.4847645019999,-12.9774119839999],[-68.3702925149999,-12.942591210999979],[-68.28431648399999,-12.961123095999938],[-68.11924764199983,-12.911864494999975],[-68.04836255699996,-12.853441456999917],[-67.99325556699995,-12.880780374999858],[-67.82942959299993,-12.79421727599987],[-67.65058861299997,-12.768372179999972],[-67.75511161599997,-12.702266623999947],[-67.61866764299998,-12.679069203999973],[-67.5253825929999,-12.569398706999948],[-67.42983258399994,-12.561969154999929],[-67.36033654899995,-12.513574392999885],[-67.24424752499982,-12.517434929999922],[-67.19911952599989,-12.485754353999937],[-67.26452653399986,-12.407688492999966],[-67.31238552499997,-12.47082115499984],[-67.54461654599999,-12.529773091999914],[-67.50969653099992,-12.387253747999978]]],[[[-67.57702651599993,-12.050101917999939],[-67.65008553099989,-12.02666142299995],[-67.69956960499991,-12.127115682999943],[-67.71123453199988,-12.247053340999969],[-67.61218256399997,-12.218878243999882],[-67.62171161499998,-12.101473261999956],[-67.57702651599993,-12.050101917999939]]],[[[-65.6649554789999,-11.80619842599998],[-65.70323948599992,-11.919026721999899],[-65.80796851699984,-12.040505476999954],[-65.89958154499993,-12.04515022499993],[-65.90031462599995,-12.118392132999873],[-65.8241045179999,-12.12488861099996],[-65.70294159299988,-12.05997429099989],[-65.60639162399997,-11.804153744999951],[-65.6649554789999,-11.80619842599998]]],[[[-65.29894257699982,-11.614208754999936],[-65.35288263899992,-11.683939818999932],[-65.33727251699992,-11.87178815999988],[-65.41196449499995,-11.883592225999905],[-65.50946061299999,-11.551786877999973],[-65.58395360399999,-11.606081325999924],[-65.49305756399986,-11.755174931999818],[-65.50587449999995,-11.858190868999884],[-65.45130160499997,-11.92491551199987],[-65.47333561599999,-11.978583664999974],[-65.46160162299998,-12.105649125999946],[-65.63119551999989,-12.033330064999973],[-65.68298361099994,-12.10201221799997],[-65.78509564399997,-12.167512935999923],[-65.86947659899994,-12.182479829999977],[-65.82805658599995,-12.280021042999977],[-65.85626252799995,-12.39624920599988],[-65.96224951499994,-12.400627073999942],[-66.01132153399993,-12.281708151999965],[-66.07298250199995,-12.312786907999964],[-66.12007153099984,-12.15516454799996],[-66.19146757699997,-12.180426095999962],[-66.17924458299984,-12.258781802999977],[-66.28176850199998,-12.390613549999898],[-66.40440362499993,-12.446896855999967],[-66.34869363999996,-12.217207562999931],[-66.45407863899993,-12.196361937999939],[-66.39113658099984,-12.131073281999818],[-66.40194655399995,-12.0471850159999],[-66.51167253899996,-12.098215550999953],[-66.48077349199997,-11.94259110199988],[-66.62032362999997,-11.761979695999912],[-66.67378961099996,-11.778505455999891],[-66.55011747899988,-11.945730962999903],[-66.62770054299989,-12.108171742999957],[-66.62946359199992,-12.193166252999902],[-66.68120558399988,-12.27186779799996],[-66.66826660699985,-12.348835629999883],[-66.59455162499995,-12.435836766999955],[-66.59111755899994,-12.556040467999935],[-66.65171050499998,-12.663808272999972],[-66.67194358099988,-12.795192258999975],[-66.82169348999997,-13.126614889999928],[-66.8344195659999,-12.939097465999907],[-66.78088351199995,-12.783349131999898],[-66.71988655799998,-12.685594683999966],[-66.67801660499993,-12.570676611999886],[-66.82568361099999,-12.577350114999888],[-66.78143353199988,-12.355666042999871],[-66.69334459099991,-12.21182168799993],[-66.79315159999999,-12.153981693999981],[-66.67091361199994,-12.089407343999937],[-66.73747262899997,-11.917726856999934],[-66.81455261099995,-12.033184890999962],[-66.8246155889999,-12.188696351999909],[-66.87619748599991,-12.222832155999924],[-66.91418460599994,-12.477989860999855],[-66.96540054899987,-12.592961074999948],[-66.96752150599991,-12.75395916199983],[-66.99465154699982,-12.87052813399987],[-67.04072552799994,-12.932269902999963],[-67.07464558099991,-13.055782778999912],[-67.04612749699987,-13.083267876999969],[-67.03776554299998,-13.259752201999959],[-67.13152349999984,-13.421248341999842],[-67.06237749299999,-13.531074910999962],[-67.07907860199998,-13.648278224999956],[-67.14393659599989,-13.68870129399994],[-67.09300261999994,-13.745774510999922],[-67.17764257499994,-13.781817364999881],[-67.19744850999984,-14.004746485999874],[-67.26974460399992,-14.06766624799991],[-67.43752264499989,-14.154596641999944],[-67.46455361199992,-14.368585623999877],[-67.23157458999992,-14.393578782999953],[-67.15526557599998,-14.498185102999912],[-67.04682151799983,-14.557708181999942],[-66.94773049099996,-14.692937281999946],[-66.94719656399991,-14.963087865999967],[-66.93241155699997,-15.05110002799995],[-66.83987450799998,-15.012943592999875],[-66.79264851899984,-14.890048631999889],[-66.72109958699991,-14.820912179999937],[-66.63947259099996,-14.67848419899991],[-66.57163952499991,-14.660152640999968],[-66.52719163299997,-14.55800003999991],[-66.42893963499995,-14.513593219999905],[-66.32356251499982,-14.531330835999881],[-66.21753663699991,-14.379787869999973],[-66.08074950899999,-14.352443587999915],[-66.02675664099996,-14.371843501999876],[-65.96789556499982,-14.318100750999918],[-65.8626255659999,-14.273877829999947],[-65.76127662199991,-14.353476405999857],[-65.96031949799993,-14.36319203699992],[-65.96202052099989,-14.460277609999878],[-65.99627652099997,-14.590357035999943],[-66.09033957999998,-14.762907900999892],[-66.14270049099997,-14.708952248999935],[-66.27972449099997,-14.685168765999947],[-66.44178758299995,-14.841161683999928],[-66.25151854899997,-14.877438393999967],[-66.21620961399998,-14.820591990999901],[-66.09822057999992,-14.845862255999918],[-66.05873158999987,-14.76100906499994],[-65.98029357299998,-14.70461746399991],[-65.93852956699993,-14.56655075499998],[-65.86840052999992,-14.655992869999977],[-65.74082159299996,-14.656682867999962],[-65.76721955899995,-14.776355825999872],[-65.75103762399988,-14.856761746999894],[-65.79369363299992,-14.956831109999882],[-65.78152461799988,-15.177518070999895],[-65.83496863799996,-15.27730043799994],[-65.83656354699997,-15.62899101399995],[-65.81703957999997,-15.654450373999964],[-65.88465857199998,-15.874532329999909],[-65.67215754499995,-15.89997961999984],[-65.61056564399996,-15.852663776999975],[-65.53487353799983,-15.846346000999972],[-65.45864850999988,-15.756835656999897],[-65.32511154899993,-15.647980550999932],[-65.30221554299999,-15.548364145999926],[-65.21683462699986,-15.439772063999897],[-65.14928453399995,-15.515753010999958],[-65.05815849399988,-15.328017321999937],[-65.00669863799993,-15.266934202999948],[-64.98673260899994,-15.155241486999955],[-65.05860860199994,-15.076519322999843],[-65.07755254199998,-14.945001059999925],[-65.06891649899995,-14.638528000999884],[-65.00401357899989,-14.453352984999981],[-65.06422447699998,-14.409805812999934],[-65.08741753899989,-14.291781742999945],[-65.0372166439999,-14.267329215999894],[-65.08983655599991,-14.158102288999885],[-65.08478562099998,-14.007451325999966],[-65.16264361099996,-13.956054835999964],[-65.19661764399996,-13.99182142299992],[-65.32212859799995,-13.817006773999935],[-65.31391952899992,-13.72748771299996],[-65.41564951499998,-13.641672446999962],[-65.35384353999984,-13.332839044999957],[-65.2935635739999,-13.158397892999972],[-65.2942195419999,-13.016764515999967],[-65.22466248599994,-12.982876481999938],[-65.16391749299999,-12.908617513999957],[-65.11130562799991,-12.708652963999896],[-64.9910355429999,-12.683127721999938],[-64.96590458599997,-12.756576830999961],[-65.00337957199991,-12.888747038999895],[-65.08393049999995,-12.95412873299989],[-65.12129953799996,-13.032752325999866],[-65.17830653799996,-13.06000742599997],[-65.21046454799983,-13.176949726999908],[-65.19766253199992,-13.225245246999975],[-65.26967649199986,-13.427038727999957],[-65.29749250799983,-13.54948358199988],[-65.15217561999998,-13.734211339999945],[-65.14711764399988,-13.817092771999967],[-65.10071559599999,-13.903553108999972],[-65.00123548099998,-13.96830800499987],[-64.98178058099984,-14.132988094999916],[-64.89193764299989,-14.443072579999978],[-64.93954450599983,-14.560786854999947],[-64.93107559799995,-14.682344064999882],[-64.96379854899988,-14.83176238599998],[-64.91299449199988,-14.938236527999948],[-64.8965525509999,-15.073570736999955],[-64.84412357899987,-15.298182105999956],[-64.7591785219999,-15.405159161999961],[-64.61709553999992,-15.435481367999898],[-64.51358758499998,-15.515067202999887],[-64.43421163299985,-15.505654660999937],[-64.23801458099985,-15.657630970999946],[-64.11603559399998,-15.692207830999962],[-63.87960456899998,-15.68712604999996],[-63.79026052099994,-15.657622085999947],[-63.83411748899994,-15.499291119999953],[-63.90820663999989,-15.409181134999926],[-63.92435454399998,-15.336375588999942],[-64.04162558399986,-15.233372391999922],[-64.15360261299992,-15.186306328999876],[-64.18610361099996,-15.07524158599989],[-64.27924348599998,-15.060893611999973],[-64.33000948899985,-14.96202101699987],[-64.41371150899988,-14.891653598999937],[-64.41357454899992,-14.84363451299987],[-64.5765304819999,-14.885282010999958],[-64.66793060999998,-15.013254393999944],[-64.72116055599986,-14.926140268999916],[-64.56352260599982,-14.822681934999821],[-64.55084950399998,-14.765268747999926],[-64.46827652599995,-14.747890882999968],[-64.36151153099996,-14.601526424999918],[-64.45011159999996,-14.48282409199993],[-64.45197254999988,-14.313211250999927],[-64.51387055799995,-14.217505339999946],[-64.44280962099998,-14.04266101899998],[-64.29141250099985,-13.988294485999972],[-64.16681651599998,-13.81281531899998],[-64.17881755699989,-13.705094284999973],[-64.0706256279999,-13.71107292899984],[-64.06674949999984,-13.770814943999937],[-63.946361565999894,-13.771889838999982],[-63.94815847799998,-13.92666670999995],[-64.00778163799993,-14.087975933999928],[-64.12051354199986,-14.188425332999941],[-64.08013154399998,-14.21688038499991],[-64.0830236359999,-14.368210617999921],[-64.03488150399988,-14.364150926999969],[-63.92822647999998,-14.426098723999928],[-63.72503255099997,-14.383196454999961],[-63.68045054899994,-14.310061331999918],[-63.81987764099989,-14.156050566999966],[-63.86341861099993,-14.06646528799996],[-63.84915562899994,-13.96516713899996],[-63.78726549999993,-13.828374310999891],[-63.80032349899989,-13.72480500099988],[-63.78201658399996,-13.565794597999968],[-63.70078655499998,-13.569152555999892],[-63.65026848899993,-13.613788369999952],[-63.701320481999915,-13.686267524999835],[-63.63776352799994,-13.75259620699984],[-63.546417546999976,-13.690954181999928],[-63.51285154499993,-13.799594207999917],[-63.36960951299989,-13.845800119999865],[-63.30631658899989,-13.933895095999958],[-63.16719862099984,-13.866466707999905],[-63.02193856299988,-13.883643574999951],[-63.004138585999954,-13.924655891999862],[-63.10356555899995,-14.027105882999933],[-63.02864056499993,-14.065047405999962],[-62.90646762099993,-14.218461379999894],[-62.77078656899994,-14.261944513999879],[-62.762523520999935,-14.416667405999931],[-62.679275631999985,-14.54438397399997],[-62.65863452499991,-14.346664935999911],[-62.567848622999975,-14.318192783999905],[-62.62208959499998,-14.245936587999836],[-62.56306456799996,-14.18827026699995],[-62.4526516009999,-14.207710079999913],[-62.46726259899992,-14.078931524999973],[-62.62182656999988,-13.915673508999873],[-62.740085500999896,-13.909060689999933],[-62.76480054899997,-13.849427807999973],[-62.697799637999935,-13.806572477999907],[-62.763263474999974,-13.638343824999879],[-62.773700620999875,-13.558251051999946],[-62.90242754299993,-13.463601595999933],[-62.86391051899989,-13.400864558999842],[-62.8851584759999,-13.313924273999817],[-63.00644662699989,-13.350855106999973],[-63.071323562999964,-13.232021009999926],[-63.05016763899994,-13.144849887999953],[-63.11582157799995,-13.013930426999934],[-63.05965461299991,-12.959734214999969],[-63.09638562099997,-12.86562136799995],[-63.22375450699991,-12.832109680999906],[-63.191692553999985,-12.92590351299998],[-63.181747593999944,-13.05574187499991],[-63.24834449699995,-13.10826925099991],[-63.30357755099993,-13.208407344999898],[-63.45597848799997,-13.278671665999866],[-63.549922522999964,-13.245327113999963],[-63.60726563799983,-13.279147925999837],[-63.70433461399989,-13.192271678999873],[-63.72114150399989,-13.055559651999943],[-63.765628622999884,-12.99430889499996],[-63.85924961999996,-12.95370662099998],[-63.86959054099992,-12.893304614999977],[-63.94057050899994,-12.853271303999975],[-63.95594459599994,-12.71551656899993],[-64.02864855299993,-12.690345378999837],[-64.10655951699994,-12.551199917999895],[-64.18407451899992,-12.496348575999889],[-64.21511857399997,-12.544190299999968],[-64.14064050299999,-12.718245548999846],[-64.1471175349999,-12.793244303999927],[-64.26040649999999,-12.696093854999958],[-64.28942850499993,-12.560139050999965],[-64.35958050799996,-12.543247168999926],[-64.38466653799992,-12.713695851999887],[-64.46039552499997,-12.733106327999906],[-64.52284958799999,-12.826721289999966],[-64.63452956399993,-12.843216875999929],[-64.43460055299994,-12.63934585599992],[-64.43588248099996,-12.440020342999901],[-64.54386855199988,-12.479643610999972],[-64.63629948599998,-12.463215750999836],[-64.80158256999994,-12.39087774799998],[-64.81729159799994,-12.334306438999874],[-64.9436264929999,-12.214077592999956],[-65.00759147799988,-12.060349297999949],[-64.9981385349999,-11.977040891999934],[-65.13657354499992,-11.988155965999908],[-65.15312160199989,-12.139558785999895],[-65.18990357199993,-12.189160541999968],[-65.17735250999988,-12.336948414999881],[-65.09214057399998,-12.424234536999847],[-65.11427349199994,-12.533866980999903],[-65.19943949599997,-12.533292987999914],[-65.30084962799987,-12.286835865999933],[-65.2658085779999,-12.170914479999908],[-65.3292386309999,-12.055183530999898],[-65.34939559899988,-11.969962206999924],[-65.29087851599996,-11.957210313999894],[-65.28438555799983,-11.7308965819999],[-65.29894257699982,-11.614208754999936]],[[-64.95893855299994,-12.553405699999871],[-64.93106051099988,-12.52147165499997],[-64.83077958899997,-12.6024582739999],[-64.90122948499999,-12.677459375999888],[-64.95893855299994,-12.553405699999871]],[[-64.85666659399993,-12.523140658999978],[-65.01531255199995,-12.485309274999906],[-64.99940453799991,-12.322380331999966],[-64.89965050199999,-12.320242610999912],[-64.88442259599998,-12.427253027999939],[-64.8238604959999,-12.468035512999904],[-64.85666659399993,-12.523140658999978]]],[[[-67.15331259299995,-11.516483474999916],[-67.22947659999988,-11.598424959999875],[-67.36897259099987,-11.583635929999957],[-67.33296158799988,-11.678098469999952],[-67.22006958999987,-11.76696122899989],[-67.15547160299997,-11.74795358699987],[-67.12550361699994,-11.62377116499988],[-67.15331259299995,-11.516483474999916]]],[[[-66.37538161999993,-11.345751147999863],[-66.43867454499986,-11.491533063999896],[-66.35632351899994,-11.50317837699987],[-66.3398745369999,-11.639891073999934],[-66.22650963199999,-11.831009865999874],[-66.22142751599995,-11.91872899699996],[-66.15413659199993,-11.938746489999858],[-66.12474863299991,-11.84496690799989],[-66.23394756499994,-11.776811640999938],[-66.24460548999997,-11.648702297999876],[-66.27626762699992,-11.563890345999937],[-66.20844260699994,-11.465756028999976],[-66.2857975149999,-11.446829188999914],[-66.32213557999995,-11.358589373999905],[-66.37538161999993,-11.345751147999863]]],[[[-65.30000255299996,-11.540286905999892],[-65.41341355799983,-11.339495732999922],[-65.41135462799991,-11.47352538299998],[-65.30000255299996,-11.540286905999892]]],[[[-65.56447556999996,-11.31198750099992],[-65.62219955799998,-11.108476734999897],[-65.68777453899997,-11.148217014999886],[-65.66753358399995,-11.251401762999933],[-65.56447556999996,-11.31198750099992]]],[[[-66.27895352399986,-11.062984961999973],[-66.24301963399995,-10.98609726099994],[-66.3627016449999,-10.981910332999973],[-66.44178054299988,-11.055231197999888],[-66.62578561299983,-11.128432369999928],[-66.65961463899993,-11.195980451999901],[-66.58789052599991,-11.241538442999968],[-66.56169858699985,-11.30910379099987],[-66.41061360899994,-11.266140836999966],[-66.34483360599995,-11.192198704999896],[-66.36097748699996,-11.121467678999977],[-66.27895352399986,-11.062984961999973]]],[[[-65.47162654599998,-10.953931203999957],[-65.43596657799998,-10.818315866999967],[-65.51557956999994,-10.776255811999874],[-65.52301750399994,-10.953863310999907],[-65.47162654599998,-10.953931203999957]]]]},"properties":{"objectid":68,"eco_name":"Beni savanna","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Neotropic","eco_biome_":"NO07","nnh":1,"eco_id":565,"shape_leng":107.657886182,"shape_area":10.4945362569,"nnh_name":"Half Protected","color":"#FCF238","color_bio":"#FEAA01","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":126340.4811237474,"percentage":0.5893016849973249}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-179.99998860099998,65.9307504480002],[-179.99998860099998,65.06728617700003],[-179.72610471699997,65.15030071400014],[-179.56723060399997,65.26696054500013],[-179.51171859999994,65.44252084900006],[-179.32861374599997,65.54726211700012],[-179.40615858799995,65.65587934400008],[-179.7517087489999,65.80836795600015],[-179.81515472699994,65.93202399500012],[-179.99998860099998,65.9307504480002]]],[[[179.99998860100004,65.93052128700015],[179.71339372900002,65.93919638900007],[179.59948768800007,65.97758131500012],[179.3560487210001,66.23186713500013],[179.30483965100018,66.35217342900012],[179.12014760000022,66.46915294700005],[178.9228816870003,66.52090600200012],[178.44140672800006,66.41640864700014],[178.26963772800013,66.41363859600017],[178.21038873600003,66.53974365900007],[177.99844359700012,66.63355945100011],[177.79592860200023,66.59418948500013],[177.73760966600003,66.45345045700003],[177.79399070600016,66.25611447200004],[177.75694269400003,66.17106497700013],[177.44578566000007,66.13340408000005],[177.20002758900034,66.20051563200019],[177.14298974300004,66.34549690800009],[177.25677458200005,66.46276677500015],[177.27337661700017,66.62267890300012],[177.02001968000002,66.72117230000003],[176.7800597060002,66.63819062100015],[176.8549496640003,66.41000705300019],[176.76042174500003,66.19406139900002],[176.56924461500012,66.15730809400009],[176.28425571500009,66.17075233200012],[176.11059559000023,66.20701697100014],[176.0741426930001,66.27447134300019],[176.08273263500007,66.4803987790001],[176.22268661300006,66.77053651300014],[176.38157665200015,67.14896703700015],[176.35989367500008,67.37675414100016],[176.2039186940002,67.52253018900012],[175.98176573800004,67.54347287700006],[175.7419886570001,67.49095706800011],[175.49830661500016,67.3896486930002],[175.3986965800002,67.3152360000002],[175.21600361200024,67.27745306300017],[175.01130664000016,67.2968399020001],[174.868896596,67.47751366900007],[174.55349765000005,67.52469590500004],[174.33079567900006,67.51554839900012],[174.1291966580003,67.4407073910001],[173.96479769700022,67.33949809],[173.84689365600013,67.1368357410002],[173.68850669900007,66.98311850900012],[173.48829672700003,66.83737414400008],[173.28669770600015,66.73550099600004],[173.0222017220002,66.63642053000012],[172.76460270300004,66.48468712800008],[172.9562986730001,66.4171782740001],[173.51080364600023,66.51398556800007],[173.7474976950001,66.49957288500008],[173.82069367100007,66.34281201700009],[173.6994936970002,66.19576259000019],[173.29310567100003,66.01855339900015],[173.03140270500023,65.92280758900012],[172.83760069800007,65.89076223200016],[172.6428986420001,65.92375357100008],[172.58090172800007,65.98860703800017],[172.51820358300017,66.17754234400007],[172.31629962900013,66.22152839300003],[172.07528672000024,66.20196570100018],[171.8690186440001,66.0881220220001],[171.40202359000023,66.2076350530001],[171.19499158700035,66.06665211200004],[170.61592059800012,65.864973798],[170.28961159800008,65.79180447700003],[169.33798261400023,65.61070423900003],[168.91725164200022,65.54046389000013],[168.78330966800013,65.43983478400014],[168.60479759300006,65.41920373500011],[168.09599260100015,65.39900083400016],[167.73229964200004,65.48251577000019],[167.61619569900017,65.8139303550002],[167.73229964200004,65.86901706100014],[167.76710465700023,65.97175220399998],[167.92269859600003,66.11825965700012],[167.9265596360001,66.19358832400007],[167.76565559400012,66.25639627200007],[167.63551363900012,66.35379029900014],[167.33944671300014,66.3551035750001],[167.0549925790001,66.32887911500012],[166.84034762900012,66.24480678200007],[166.78897058600012,65.89322718200003],[166.68650869300018,65.81739442800006],[166.29550162700014,65.6837587280001],[166.1517027010002,65.54089153500007],[165.93229666200023,65.49926365100009],[165.75199857200016,65.42798612600018],[165.73159769000006,65.21672578800013],[165.67610161200002,65.14508281200006],[165.49920657500002,65.10485068200012],[165.06669668300015,65.05401309800004],[164.9028016420002,65.00707494300008],[164.84770169200021,64.93007526000008],[164.56140169600008,64.86114751800017],[164.15789771500022,64.99191526600015],[163.85609471800012,65.03277201400005],[163.6060026990001,64.99075504300015],[163.538894668,64.912099431],[163.69670059100008,64.74906755800009],[163.7136995940001,64.63804606500014],[163.48500070600016,64.57378804900003],[163.24139359900005,64.53628037300012],[162.99429358400016,64.43359166500011],[163.01750173300013,64.33286398800004],[163.14779657400015,64.24274897300006],[163.38760366200006,64.19667264600002],[163.64559964800014,64.18201571400004],[163.76060472400013,64.09879816800009],[163.62660273500012,63.97807344900019],[163.07659867600012,63.95562252100012],[162.87609869100015,63.87863088500018],[162.9754026180001,63.631541767000044],[162.92990061900002,63.517553583000165],[162.7886967310002,63.391883876],[162.52699259100018,63.31632236000013],[162.0545955680002,63.379371204000165],[161.8769076030003,63.33891460700005],[161.68949864100023,63.39002560800009],[161.72090160900007,63.64278810100012],[161.68389869200007,63.73095331800005],[161.48739670600003,63.74318368799999],[161.29089371500004,63.65100840200017],[161.27389571800006,63.51182304300016],[161.3170016670001,63.23363991400004],[161.04879769600007,63.10959529100006],[160.2263946930001,63.148216922000074],[160.15159559500034,63.08476423800016],[159.80099466600007,62.9969004350001],[159.7411036210002,62.791221271000154],[159.487197669,62.776740696000104],[159.22000170600006,62.69565500200014],[159.14329572500003,62.57579278100002],[158.97920270300017,62.63263734000003],[158.63690170300004,62.60396134000001],[158.6013025860001,62.53313107300016],[158.63209568700017,62.40761089900002],[158.5888066780002,62.30602843500009],[158.50239562600018,62.25019406400003],[158.22920257900012,62.25401721700007],[157.76100170500013,62.3836346330001],[157.52969369900006,62.4077637850001],[157.22639470000001,62.312528601000054],[157.22360268800014,62.129133901000046],[156.70010371600017,61.937056051000184],[156.6441037180001,61.86641186300017],[156.62089556900003,61.657964324000034],[156.27659565200008,61.5054049690001],[156.2709046760001,61.42552191100003],[156.48970067900007,61.202982717000054],[156.6295016040001,61.214606237000055],[156.62139865100005,61.37496394800007],[156.68420358100002,61.49786678800018],[156.92889363100016,61.562337538000065],[157.0151977290002,61.64633275700015],[157.36450164200016,61.70961361200011],[157.37820471300017,61.767690980000054],[157.5260006320001,61.813877782000134],[157.94259664300023,61.77941843700006],[158.06239365300007,61.73703450500011],[158.3547976870002,61.807609459000105],[158.61149565100015,61.83334860700006],[158.89830057400002,61.82420009500004],[158.97300763800013,61.91017294100004],[159.1786956870002,61.91926713800012],[159.36770659800004,61.84126095600004],[159.5554045670002,61.82177102000003],[159.49119566900004,61.68508413900014],[159.86669956700007,61.69019257400015],[159.9467926750001,61.724637],[159.9575045800001,61.84221096100009],[160.29890469300028,61.92457338600002],[160.3786927000001,61.76985787000012],[160.28080766100004,61.700885033000134],[160.18969771500008,61.54216849900007],[160.03779566900005,61.475774774000115],[160.15949972900012,61.433933319000175],[159.92100558200013,61.26468743800018],[159.87789963400007,61.03469405000004],[159.77709970400008,60.98611606000003],[159.90750166600014,60.92604379800002],[160.1327056350001,61.031959203000156],[160.42289768400008,61.02930800700017],[160.29179365400012,60.89084047500006],[160.15710468400027,60.85710113500005],[160.21789561100013,60.751777157000106],[160.09559660200011,60.69946385600002],[160.16079657700016,60.614366583000105],[160.31640661000006,60.74398785500006],[160.55880773000013,60.72813717300005],[160.78869667900005,60.82009771500009],[160.93550068500008,60.94961572100004],[161.29750066600002,61.09451049600017],[161.40100057400002,61.18291191500009],[161.76849372000004,61.380430122000064],[162.07260157300004,61.499315852000166],[162.1356966840001,61.56694976400013],[162.35290565900004,61.65773248100015],[162.59370466100006,61.59020853900017],[162.58200067500013,61.711544467000124],[162.74270656900012,61.736432684000135],[162.83970664700018,61.68594244600018],[162.74609369600012,61.60792939100003],[162.90029858600008,61.52783594800019],[163.05140669900004,61.64287287500008],[163.17750572700004,61.633652445999985],[163.2978056510001,61.68396213800014],[163.21119661900002,61.76989978000006],[162.9138026710001,61.827161253999975],[163.14300564600023,62.0803909550001],[163.06329357900017,62.10157085000003],[163.174499641,62.31611069100012],[163.24040269000022,62.50491306100008],[163.6338956610001,62.58699335100005],[163.95179761200018,62.58914062600019],[164.01759370800016,62.64590589200009],[164.3578035910001,62.69932543800007],[164.61430357500012,62.640534601000184],[164.66780073700022,62.57436199000006],[164.93449361800015,62.52496391400007],[165.14050269300026,62.46299901900005],[165.0758056320002,62.38086474900007],[164.5171967120002,62.46520714700017],[164.3059995740001,62.366047724000055],[164.17529267800012,62.345390020000195],[164.05290264300015,62.26993981600009],[164.00770557700025,62.11388520700012],[164.05340572500018,61.94322429400012],[164.04159562300003,61.771716138000045],[163.98910563100014,61.70621541999998],[163.8533937330002,61.67816404000018],[163.71879562300035,61.55734829400012],[163.71180763100006,61.452602835],[163.8619996010001,61.43702339100008],[163.9929046440002,61.376569753000126],[163.86099259900004,61.22501689600017],[163.53410357200005,61.13957227800017],[163.69290157700016,61.07935785900008],[164.05099458600012,60.86121027900003],[164.4714967320001,60.576020215000085],[164.62600672300005,60.371113192000166],[164.78819269400014,60.06253040900009],[164.84199562800006,59.8247706840001],[164.9409025880002,59.86957246000014],[165.05209373100013,60.01691693000015],[165.0070956510002,60.09819205400015],[165.16769358700014,60.11740371100012],[165.38420066100014,60.265213210000184],[165.51240572500035,60.243007536000164],[165.67869564400007,60.29882967000003],[165.84719872000016,60.40434458800013],[165.98759459200005,60.36777115900014],[166.02200364600014,60.45742366100012],[166.16209357900004,60.50449123200008],[166.3027957260001,60.472584009],[166.18069469900001,60.360141784000064],[166.22120661600013,60.21378537200013],[166.12210066900002,60.094311736000066],[166.06869470200013,59.84838049400014],[166.17480473500018,59.801640822000195],[166.3307956420001,59.840392372],[166.71060163500022,60.084370463000084],[166.82769766100012,60.19934570000015],[166.86259470900006,60.30968993500005],[167.13760361100015,60.34588936300008],[167.4205017290002,60.41733402400018],[168.27670257800014,60.58823851500006],[168.69659468800035,60.511544604000164],[169.10479773200007,60.5493272060001],[169.20840459300018,60.542109884000126],[169.57200669200006,60.42376143500002],[169.7534026430003,60.28688897900014],[169.90739463300008,60.22789597100012],[169.7592007410001,60.1889855],[169.87300066700016,60.06734883000007],[170.0534057110002,60.02041905700008],[170.1128996210001,59.929003506000186],[170.2671046790001,59.94040591200019],[170.41690068800017,60.09143171400018],[170.44380173600018,60.26915723000019],[170.57659857500028,60.31976934099998],[170.50540168400005,60.46075479700005],[170.66879263700002,60.41561305100015],[170.75889558200015,60.445525213999986],[170.7248995880003,60.52652625000002],[170.93870567800002,60.53230942800019],[171.24639863800007,60.58823851500006],[171.35499558100014,60.676015146000054],[171.50639370800013,60.72121690600011],[171.65949973000022,60.848170719999985],[171.7951356880003,60.820867677000194],[171.97695962000012,60.831920054000136],[172.0588836710001,60.940066386000126],[171.99400371700006,61.03945949700005],[172.20770268500007,61.001424935000045],[172.21018959600008,61.19254540400004],[172.45840473900023,61.15102363400018],[172.6117246680002,61.20629004800003],[172.63879368900018,61.31315914600009],[172.80592364200004,61.34947290399998],[172.60935963000009,61.40995353200003],[172.8392026470002,61.443558593000034],[173.04801966000014,61.37013764800008],[173.20208759000025,61.43182811999998],[173.25439468900015,61.54663990900002],[173.43569961400033,61.559438405000094],[173.4217066970001,61.66737183700013],[173.4881436730002,61.73061128500012],[173.82820167600005,61.660802604000025],[174.10585071100002,61.78911579600015],[174.49621572300032,61.817306818000134],[174.60275273000002,61.965433991],[174.80061359,61.936631760000125],[175.12716667000018,62.00655862500008],[175.14469859400003,62.125932684000134],[175.37438973100018,62.1129471050001],[175.6138607050002,62.175724877000164],[176.28027364100012,62.31128958800008],[176.44079563600008,62.41017777300016],[176.6905217010003,62.494631483000035],[177.17303467500017,62.586852535000105],[176.94912772200007,62.64574596600016],[177.0136107090001,62.77603058100004],[177.1474916630001,62.787147164000146],[177.2505496780002,62.70325135400003],[177.26553367100018,62.572965733000046],[177.51248163800005,62.57130293100016],[177.68330365100007,62.5160675300001],[177.86523470400004,62.55546297800004],[178.14080770800012,62.515460345],[178.19970667100006,62.459156922000034],[178.84829666300004,62.36878709700011],[178.9573056610002,62.264606579000144],[179.14971962500033,62.330455313000016],[179.1305237250001,62.47684659300006],[179.4024656890001,62.536022327000126],[179.42358372700005,62.605751547000125],[179.55773960700003,62.64186179200016],[179.60467575100006,62.70602861300006],[179.50915575000022,62.860476411000036],[179.41998269300018,62.881870381],[179.27723670300009,63.04105713900003],[179.41247569300003,63.05826166600008],[179.3274536910002,63.19243079000012],[178.89443971100002,63.3327190390001],[178.96812468600012,63.42526732000016],[178.70840471100007,63.540186230000074],[178.64581268100017,63.62329028600004],[178.75027466400002,63.678017743],[178.66525266100007,63.94691305300017],[178.37966965300018,63.99525534500003],[178.48745774300005,64.11663670200011],[178.36746174600034,64.27220700400005],[178.23080470500008,64.30664757400001],[177.99801662300013,64.20775117500017],[177.8027647140001,64.25304094500007],[177.41552766100006,64.44747830000006],[177.37579358400012,64.57443747800005],[177.46997063600008,64.72222535100008],[177.31747464800014,64.77223027700018],[177.00219774200002,64.70777461500006],[176.73080462500002,64.57027117000007],[176.55773961400007,64.67110580000019],[176.42526262900014,64.67499718300019],[176.22024563500008,64.86027865000005],[176.45968660200003,64.80638234200018],[176.65887465200012,64.86000372300009],[176.89553869500003,64.83250655400008],[177.03579660100002,64.76888941800007],[177.2958065900002,64.82057290400013],[177.1441347110001,64.94777599600008],[177.44052165800008,64.9166776260002],[177.48773172100016,64.81334066200003],[177.71469069300008,64.70583655100012],[177.90246560900005,64.70333438600011],[178.29385371600006,64.65638114299998],[178.89581266600032,64.69805395399999],[179.25582865100023,64.80694627600013],[179.46691866900005,64.81250079600017],[179.76913472600017,65.00446582400014],[179.99998860100004,65.06727075400005],[179.99998860100004,65.93052128700015]]]]},"properties":{"objectid":69,"eco_name":"Russian Bering tundra","biome_num":11,"biome_name":"Tundra","realm":"Palearctic","eco_biome_":"PA11","nnh":2,"eco_id":779,"shape_leng":102.559511315,"shape_area":86.0109975427,"nnh_name":"Nature Could Reach Half Protected","color":"#4FACB3","color_bio":"#9ED7C2","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":475306.5264966788,"percentage":5.56229230157416}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-163.76596428799996,55.053318240000124],[-163.89470972199996,55.03911822300017],[-164.03072786199996,54.96981821300017],[-164.14675511699994,54.95820910700013],[-164.34355506899993,54.894136360000175],[-164.43530052999998,54.933127251000144],[-164.55161866699999,54.85517269900009],[-164.72075797699995,54.65497124700005],[-164.56519892699998,54.67080530800001],[-163.95443027399998,54.90221363100011],[-163.76107154699997,54.88956728100004],[-163.4249007139999,54.948170226],[-163.53375522099998,55.05361827200011],[-163.76596428799996,55.053318240000124]]],[[[-161.1303922289999,56.01237305700005],[-161.80785575099992,55.891954791000046],[-162.24699197899992,55.68000929600004],[-162.48371005799993,55.49523655400009],[-162.484710012,55.390345656000136],[-162.64992816599997,55.36415472600004],[-162.80110994499998,55.30594561900011],[-162.86757352299995,55.182336532000136],[-163.14900985699992,55.17882740300013],[-163.16847346999998,55.12906376900008],[-163.00418328899997,55.08164129000005],[-162.6064794259999,55.158291136000116],[-162.71806446099998,55.21980018600016],[-162.66198268199994,55.29430018600016],[-162.5131372239999,55.25237293800012],[-162.37283456999995,55.302264364999985],[-162.24364517399994,55.442376354000146],[-161.90688574499998,55.55181184899999],[-161.86189258999994,55.72363019000005],[-161.77357683699998,55.73709189099998],[-161.50260157399995,55.693890783000086],[-161.3955244269999,55.74263349100005],[-160.9557353339999,55.843083249000074],[-161.0171376479999,55.91101853700013],[-160.86647404399997,55.953673101000106],[-160.898701333,55.999018547],[-161.07640129299995,55.94208216200008],[-161.1303922289999,56.01237305700005]]],[[[-154.27873304699992,59.78672401199998],[-154.4173404469999,59.7705587960001],[-155.16946176499997,59.72682909600013],[-155.49473302299998,59.747116799000196],[-155.6050262489999,59.72467791600013],[-155.63046346799996,59.8519300050001],[-155.79849052699993,59.912585274000094],[-155.81069727499997,59.96178655600016],[-155.59660569399998,60.06162261800006],[-155.48130706999996,60.178874346999976],[-155.50098438099994,60.282817205000015],[-155.62374303599992,60.391147589000184],[-155.84620668299993,60.42235089200011],[-156.00048455099997,60.27076176900016],[-156.16849952299998,60.21799397700005],[-156.33609109199998,60.22554075800019],[-156.54363611499994,60.359227408000095],[-156.7439957699999,60.403638161000174],[-156.93393560099992,60.372098113],[-157.11213680299997,60.227749691999975],[-157.50626448099996,60.21713703200015],[-157.60174669699995,60.112703183000065],[-157.90345149799995,60.08697044900009],[-157.93606160099995,60.02104455400007],[-158.07369366799998,59.96858694300016],[-158.30139199799996,59.83336047400013],[-158.40882101599996,59.72408261700019],[-158.66520842899993,59.68414759600006],[-158.66427108699992,59.60219356800002],[-158.80846145699994,59.560762366000176],[-158.83347800599998,59.463297288000035],[-158.6258436399999,59.45461682300004],[-158.47127669699998,59.39886461400005],[-158.51685721799993,59.23365291800013],[-158.74897972699995,59.14761888100014],[-158.8293109079999,59.045305788],[-159.02963797999993,59.06999837700005],[-159.07683760399993,58.94919120800006],[-159.26850597699996,59.02462951400008],[-159.52701383499996,58.834447757000135],[-159.385348317,58.76459123799998],[-159.04796633599997,58.42700950300008],[-158.88641178599997,58.39450043900018],[-158.78746634699996,58.411309542000026],[-158.74819367799992,58.51140044800019],[-158.85553922499997,58.693064052000125],[-158.7709120069999,58.77530951300014],[-158.769221149,58.864827686000126],[-158.61538482499992,58.914273160000164],[-158.50427570999997,58.85750045500009],[-158.56442112899995,58.80432772400013],[-158.35114837499992,58.726564126000085],[-158.33437561299993,58.662909589000094],[-158.14194832599992,58.61288235000018],[-157.55528480999996,58.753509701000155],[-157.30373032899993,58.836900640000124],[-157.11643944899998,58.86501884900008],[-157.0082667,58.81520068800006],[-157.068066635,58.70821886900018],[-157.483721023,58.479173372],[-157.5560118409999,58.32165519200004],[-157.4020208599999,58.17069159200008],[-157.57758445999994,58.12547338700011],[-157.67189335799992,57.772082494000074],[-157.692129635,57.61033705000011],[-157.60059327599998,57.60795524700012],[-157.5733750459999,57.51596434900006],[-157.77329323199996,57.547555225],[-157.93312954799998,57.47712793500017],[-158.0106295059999,57.40137338500011],[-158.25058399099993,57.314282447000096],[-158.45629300699994,57.19632788299998],[-158.63812928899992,57.05687332200006],[-158.68992924199998,56.97406423100011],[-158.65308370999995,56.80885516000012],[-158.78361095899993,56.780746052000154],[-158.95549279499997,56.843746021000186],[-159.23789272099992,56.730245989000196],[-159.32443813899997,56.67035507400004],[-159.82807440199997,56.54393683100017],[-159.93835618099996,56.47419136700006],[-160.14410158199996,56.40102770700008],[-160.3926923939999,56.237673141000016],[-160.488728677,56.077218597000126],[-160.56837409099995,56.00406404900019],[-160.48021847599992,55.92097428200009],[-160.1105791969999,56.09288829200017],[-159.78163808099998,56.111462857],[-159.67181802299996,56.14141288700006],[-159.55315629099994,56.32108986500009],[-159.01175412899994,56.342602624999984],[-158.89879437099998,56.33483916000006],[-158.77054926299994,56.38680178900006],[-158.8860043159999,56.51125585900007],[-158.83715201199996,56.587528728000166],[-158.345393244,56.62480799200017],[-158.40071279999992,56.81065116000008],[-158.34864738199994,56.913353814000175],[-158.08459221099997,57.01072101200003],[-157.6960232799999,57.07019866000002],[-157.34009886899992,57.1812160180001],[-157.12360958999994,57.2881414790001],[-156.8229117159999,57.51177030200006],[-156.64838905899995,57.58276358900014],[-156.31772834999995,57.64612438600017],[-156.19094245699992,57.63392983500006],[-155.72435316099998,57.778688682999984],[-155.58496417399996,57.84300115300016],[-155.45405838699995,57.96972419300016],[-155.52658904999998,58.025643631000094],[-155.83278351599998,57.94529356400017],[-155.97404612399993,57.93061210899998],[-156.03131750899996,57.98204901700012],[-155.97121538499994,58.086149286000136],[-155.66980007899997,58.14804318000017],[-155.74283427499995,58.24594878500011],[-156.01803318099994,58.28047201400011],[-156.00278179299997,58.384160658999974],[-155.87456921199993,58.43999785000011],[-155.58209121699994,58.466681471000186],[-155.495603856,58.553625968],[-155.3925589259999,58.54684788399999],[-155.1993622319999,58.42977324000003],[-155.08234155199997,58.42623775000004],[-155.03637415699995,58.49464050800009],[-154.77339389699992,58.52029769200004],[-154.76238157499995,58.66273679500017],[-155.17626645699997,58.6939697680001],[-155.47731352699992,58.76248124000006],[-155.33024908099998,58.90288174200015],[-155.34047216699994,58.97059987200004],[-155.5923261229999,59.036690345000125],[-155.55695716899993,59.083575677000056],[-155.36188322599995,59.13225723199997],[-155.12363408899998,59.15160628900003],[-154.8673904579999,59.20827581200007],[-154.9204619489999,59.31032353400019],[-154.80230455999995,59.422297028000116],[-154.64764329799993,59.49338130400014],[-154.62949692499996,59.58096039999998],[-154.23131157599994,59.70662255900004],[-154.27873304699992,59.78672401199998]]],[[[-166.1584212889999,60.42722640400012],[-166.387203032,60.35967183200012],[-166.48373939899997,60.38662636000009],[-166.759139314,60.31074450799997],[-166.81194834699997,60.229389963000074],[-166.9379937719999,60.20587176600009],[-167.31893009999996,60.23778079600004],[-167.4170936929999,60.19173533200018],[-167.27357545499993,60.06555354900013],[-167.10492997999995,59.989171766000084],[-166.86042999799997,59.959626351000054],[-166.56383906399995,59.84732640700008],[-166.38862999899993,59.85259916100006],[-166.03696635399996,59.757853769],[-165.7968482789999,59.881026519000045],[-165.53479377699998,59.89677201100005],[-165.71322112799993,60.06705378200019],[-165.66590297199997,60.09947197000014],[-165.677539437,60.26927194900003],[-165.88347582,60.343899183000076],[-166.08518487099997,60.32529006200019],[-166.1584212889999,60.42722640400012]]],[[[-172.519427134,60.38486699100014],[-172.75183340899997,60.445167235000156],[-172.72074439399998,60.36008226400014],[-172.5914675729999,60.319910750000076],[-172.519427134,60.38486699100014]]],[[[-161.79254781699998,62.07404631900005],[-161.66423330599994,62.24447498400002],[-161.60782756199993,62.41023896300004],[-161.6489458499999,62.48625728000002],[-161.938439723,62.47066469400005],[-162.281494711,62.32586662700015],[-162.50372692399995,62.270429622999984],[-162.76049416299992,62.04204992700011],[-162.42223395399998,62.03645890700011],[-162.168754289,61.94142058300014],[-162.0449080889999,61.825676007000084],[-161.90925425499995,61.89387758700019],[-161.79254781699998,62.07404631900005]]],[[[-164.72212310299992,62.785271827000145],[-164.85551395699997,62.73639908399997],[-164.73401389199995,62.627226387000064],[-164.50958673399998,62.741153684000096],[-164.72212310299992,62.785271827000145]]],[[[-168.90337132999994,63.32896583800016],[-169.23516827199998,63.327643782000166],[-169.5240046149999,63.36554373300015],[-169.65995918499996,63.42952552300011],[-169.98902017399993,63.472219455000186],[-170.241614785,63.428028514000175],[-170.49473562499995,63.334375426000065],[-170.3683134929999,63.285170885000014],[-170.26058615699992,63.17778909600014],[-170.07004073299998,63.172125489],[-169.83337706999993,63.07814371900014],[-169.69819518099993,62.952543755000136],[-169.53563158899993,62.97697105000003],[-169.53844075299995,63.07396194700016],[-169.379122656,63.150871054000106],[-168.99396198999992,63.17079809200004],[-169.00054453099995,63.188607251],[-168.98202572499997,63.23819020600013],[-168.90337132999994,63.32896583800016]]],[[[-162.25249674199992,63.54170851200007],[-162.28367849199992,63.463063061000184],[-162.16651483999996,63.425272173999986],[-162.07317855899998,63.513763089000065],[-162.25249674199992,63.54170851200007]]],[[[-159.52533468699994,61.35181749300011],[-159.49676599599997,61.424724445000095],[-159.57439238999993,61.48165304200012],[-159.98679479799995,61.49037999300003],[-160.28889973899996,61.446972656000185],[-160.58828281899991,61.357878515000095],[-160.9357387519999,61.13549917900008],[-161.05654036499996,61.144927748999976],[-161.00204440799996,61.44856951000014],[-160.7722329439999,61.47607346400014],[-160.523243339,61.55282816600004],[-160.38169538399995,61.656084735000036],[-160.32430868099996,61.847841454000104],[-160.50136185299996,61.82612535600009],[-161.05264597199997,61.683363035000184],[-161.5822341129999,61.564174332],[-161.9022453519999,61.47650839900018],[-162.02067947699993,61.42269158500011],[-162.26638279399998,61.53242694300019],[-162.49965954999996,61.69856862800003],[-162.73220159399995,61.77351798500018],[-162.76862145699994,61.90252108100003],[-162.83571572199995,61.92809120700002],[-163.069012863,61.905458347000035],[-163.2639400669999,61.95602427400013],[-163.39632382299993,62.026397351000185],[-163.37403386999998,62.10287403800004],[-163.17879856699994,62.22940764700007],[-163.05007418399993,62.375056625000184],[-163.05053091799996,62.50107958800004],[-163.16741275299998,62.68151122799998],[-163.14845011399998,62.76946458000009],[-162.7088373489999,63.065816820000066],[-162.41819616399994,63.22176817700017],[-161.82321926699996,63.17693374000004],[-161.60280065699993,63.21437129300011],[-161.40124335599998,63.14021643800015],[-161.23048034299995,63.15634619700006],[-161.1914676439999,63.30403176700008],[-160.97570051499991,63.2810947120002],[-160.73264868899994,63.5058155120002],[-160.77650366799998,63.5898239230001],[-160.95994575199995,63.62475264800008],[-161.14282410999994,63.5027723340001],[-161.52147857299997,63.45327227700011],[-162.02557850899998,63.44753583200003],[-162.29274205499996,63.37339943200004],[-162.437087496,63.377835771000036],[-162.6679418919999,63.227126657000156],[-163.0405235359999,63.06215388600003],[-163.3636143809999,63.034590201000185],[-163.41770532299998,63.083872006000036],[-163.616296253,63.14121742100008],[-163.72583265699993,63.21061739700019],[-164.0365872019999,63.26119916000016],[-164.4189962039999,63.21396274000017],[-164.54540522899995,63.153280908],[-164.44348696799992,63.03614457200007],[-164.7073778239999,63.01080817000019],[-164.78823230499998,62.941571801000066],[-164.844468559,62.80848089500006],[-164.49759584899996,62.769453683000165],[-164.53494125099996,62.70686277500016],[-164.72329569199997,62.60194457400013],[-165.04606832899992,62.54041725600001],[-165.26929548799995,62.4273535960001],[-165.67563158399997,62.13558992800017],[-165.75683147899994,62.00633538300008],[-165.60012230999993,61.85959906],[-166.09210401599995,61.80073535400004],[-165.90380394899992,61.66363539800011],[-166.13495843999996,61.63308991100007],[-166.07774019699994,61.53008993100008],[-165.89199478199998,61.550026322],[-165.75434021999996,61.498708167000075],[-165.87176743099997,61.43018997399997],[-165.859012813,61.31886271500014],[-165.649276461,61.29548093200003],[-165.57814906899995,61.10036278300004],[-165.4030308879999,61.067062814],[-165.30799461399997,61.18182645200005],[-165.07673092999997,61.06490831800011],[-165.19498540599994,60.97991740000015],[-165.14185810399994,60.92337196000011],[-164.96068537399995,60.88759926400007],[-164.86642171399998,60.83211746600011],[-165.03209437599995,60.760026540000126],[-164.97127617099997,60.7114356460001],[-165.28327604399996,60.5763265220001],[-165.19047600699994,60.497999271000026],[-165.05745787199993,60.54462655900011],[-164.99797602099994,60.48033566600003],[-165.06917595699994,60.393472028000076],[-164.85037593099992,60.30361752600004],[-164.66666685699997,60.29595391700019],[-164.38638493899992,60.07730852900016],[-164.09243036799998,59.97538131100009],[-164.17683942299993,59.93399039500002],[-164.086248457,59.82165405600017],[-163.90427573199992,59.789117724000164],[-163.46764851099996,59.790190518000145],[-163.12700311899994,59.82878147400015],[-162.88417592,59.90681786700014],[-162.51700327799995,59.98103609700007],[-162.46193970199997,60.069736097000145],[-162.45675796399996,60.197545176],[-162.56736706499998,60.23613606400005],[-162.53883076899993,60.33798151299999],[-162.3372670679999,60.19727246700012],[-162.19220342199995,60.15974522000005],[-162.2108306119999,60.02677250300019],[-162.07493056299992,59.922227080000084],[-162.04010478599994,59.84597791700003],[-161.953843997,59.94723844200007],[-161.94752833999996,60.030745808],[-161.81192866599994,60.05348399700017],[-161.84429010099996,60.127426414000126],[-161.68386263099995,60.16867761100008],[-161.77129031599998,60.282129865],[-161.68903424699994,60.31759073600011],[-161.73485806299996,60.459530698000094],[-161.51678355299998,60.48514411399998],[-161.44666963599997,60.537776839],[-161.40596054699992,60.70997652300008],[-161.23586117199991,60.68470116399999],[-161.08852132499993,60.69957681400018],[-161.04621314899998,60.80768931000006],[-160.85081338899997,60.90687915400008],[-160.90558911099993,61.077212748000136],[-160.66119835099994,61.13014936000019],[-160.63406283599994,61.225851275000196],[-160.38961051099992,61.24094870500005],[-160.074753928,61.373565858],[-159.52533468699994,61.35181749300011]]],[[[-160.48646525499996,64.95040916700003],[-160.693644263,65.05574644600011],[-160.81315669299997,65.17378026],[-161.0392466289999,65.15439221700018],[-161.13288686799999,65.0206307310001],[-161.26579585999994,64.96883080800006],[-161.48259096899992,64.94678855000006],[-161.33246480199995,64.8256122160002],[-161.19522534299998,64.91818128200009],[-160.88421619199997,64.81649043300013],[-160.78342520499996,64.71716318600016],[-160.80207055899993,64.61035410300019],[-161.02420679899996,64.4997177140001],[-161.19805223099993,64.49662677400016],[-161.38864314899996,64.53278128500011],[-161.47397033999994,64.45247218800006],[-161.25667939599998,64.38399041200006],[-161.02789749599995,64.26247228000017],[-160.96971922599994,64.28725971600011],[-160.71298925699995,64.58713806900005],[-160.6767105589999,64.68361177000003],[-160.48646525499996,64.95040916700003]]],[[[-163.64698394699997,66.05923153400016],[-163.84742617299995,66.12210798900003],[-163.92990807599995,66.21601705700016],[-163.83010814899995,66.27199888600018],[-163.87313553599998,66.38901704800008],[-163.76199016699996,66.45487160600015],[-163.75419936199998,66.55128068900007],[-163.9855811889999,66.59036246300019],[-164.40995384299995,66.58085330300014],[-164.6625537689999,66.5495896270001],[-164.9883263069999,66.41805322100015],[-165.14198084499998,66.43443501300004],[-165.38719896299995,66.41111679200003],[-165.69635338399996,66.33818038300018],[-165.87754416299992,66.240307637],[-165.568816852,66.15577133400012],[-165.73364403899996,66.09622585700015],[-166.05392581699996,66.10827125700007],[-166.232798579,66.17108940300005],[-166.65963477199992,66.07362570700013],[-166.77846197999995,66.02746205600016],[-166.88667094599992,65.92282568500002],[-167.15382537299993,65.84678019500006],[-167.32604355799992,65.88171652700004],[-167.535625282,65.82359831700006],[-167.49029795699994,65.76091651299998],[-167.5857887969999,65.70868014000007],[-167.7932978519999,65.70751647000009],[-168.09727977199995,65.60540967700018],[-167.4514375649999,65.7278037750001],[-166.97996040699994,65.78132919500018],[-166.3881068089999,65.99818870600012],[-166.19827184699997,66.02360344800013],[-165.69932658899992,65.94895221800004],[-165.2242302639999,65.92780165100015],[-164.89887712299995,65.94442371500003],[-164.65935763099995,66.01094324100006],[-163.95540592199995,66.01548074800002],[-163.64698394699997,66.05923153400016]]],[[[-159.4764877879999,66.288383259],[-159.24826488499994,66.34469662600014],[-159.0014036469999,66.29296034300017],[-158.81228044099998,66.28218905400007],[-158.2133714779999,66.41550374200011],[-157.19656779899995,66.52617982700013],[-157.18004936599993,66.57225147100002],[-157.36270260399994,66.63581620300016],[-157.38767033099995,66.70336881700018],[-158.146492214,66.73098884500018],[-158.10536648099995,66.77884176900005],[-157.72599605199997,66.80252473000019],[-157.27817838699997,66.78683489200017],[-156.93622126999995,66.84098395200016],[-157.048678,66.91159600100008],[-157.47510043499992,66.93727244000013],[-157.90788116599992,67.07860227900017],[-158.12452351199997,67.02780304800012],[-158.14713622099998,66.933194174],[-158.74857684599993,66.85653525300017],[-159.183084192,66.81864888200005],[-159.78088682299992,66.78625722700008],[-160.1815334579999,66.86313369700008],[-160.59756724399992,66.74783612600015],[-160.81528713499995,66.73849620600004],[-161.09287654299993,66.7668615820001],[-161.19744355199992,66.98100797400019],[-161.38823468099991,67.03237323100018],[-161.6148037419999,67.00146677500004],[-161.7929454439999,66.87878099000005],[-161.8823907089999,66.71616280900002],[-161.49374509999998,66.52709925800008],[-161.29756329699993,66.52078111000009],[-161.141699809,66.6382811260001],[-160.82120895399999,66.65428117800019],[-160.65309981399997,66.58967212300007],[-160.33597259599995,66.60580854000006],[-160.18480884499994,66.483281305],[-160.22465419599993,66.39125403300017],[-160.54352685699996,66.36363580000005],[-160.79205410799992,66.36975393900008],[-161.07528147799994,66.49159933300007],[-161.24225421299997,66.52092657400004],[-161.58064499599996,66.440553797],[-161.9183632559999,66.55410827300005],[-162.06865423699992,66.64112642000015],[-162.01084527799998,66.75329914700018],[-162.22738173399995,66.86309000800009],[-162.28417270599996,66.92598999299997],[-162.59919990299997,66.89697175900011],[-162.62042711999993,66.84928085200005],[-162.50364519499993,66.73663542700018],[-162.22776338099993,66.70690820600004],[-162.09753601599996,66.60580823700008],[-161.87181773799995,66.49035374100004],[-161.92183576199992,66.34767192800007],[-161.70605402299995,66.39694468800019],[-161.5326813199999,66.39909926400014],[-161.10168130199997,66.33118116100013],[-160.98039305699996,66.2409074410001],[-160.628843194,66.25550642900009],[-160.29708812099997,66.30864310400005],[-160.07247226699994,66.36616904300013],[-159.70978403599997,66.29755304000014],[-159.4764877879999,66.288383259]]]]},"properties":{"objectid":70,"eco_name":"Beringia lowland tundra","biome_num":11,"biome_name":"Tundra","realm":"Nearctic","eco_biome_":"NE11","nnh":1,"eco_id":409,"shape_leng":150.048729084,"shape_area":25.576305527,"nnh_name":"Half Protected","color":"#69F6D6","color_bio":"#9ED7C2","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":152978.236439159,"percentage":1.7902335007383312}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-168.99396198999992,63.17079809200004],[-168.86218637899995,63.1465802260002],[-168.72847737299998,63.22799842000006],[-168.696386527,63.30189841600003],[-168.90337132999994,63.32896583800016],[-168.98202572499997,63.23819020600013],[-169.00054453099995,63.188607251],[-168.99396198999992,63.17079809200004]]],[[[-169.98902017399993,63.472219455000186],[-170.0802137789999,63.58757998400017],[-170.28553199799998,63.68460721300005],[-170.46891379499996,63.70079809100014],[-170.91076815699995,63.57166167500014],[-171.38526811199992,63.63018886800012],[-171.627322652,63.684170643000186],[-171.745949886,63.66502517100008],[-171.83544071299994,63.58188880500006],[-171.85299518199994,63.4865706330001],[-171.74290420299997,63.36564339100005],[-171.43687694299996,63.307116172000065],[-171.10441345999996,63.42297075500011],[-170.86895895099994,63.41378897500016],[-170.49473562499995,63.334375426000065],[-170.241614785,63.428028514000175],[-169.98902017399993,63.472219455000186]]],[[[-168.09727977199995,65.60540967700018],[-168.0752249489999,65.57635280200003],[-167.72389766799998,65.50258014000013],[-167.39847944599995,65.40026202200005],[-166.6113068079999,65.35149852000018],[-166.39555220199998,65.2505803840001],[-166.69647922699997,65.03585308600009],[-166.69084281999997,64.98537127300006],[-166.41565185299993,64.87192587700014],[-166.4838244439999,64.73341678900005],[-166.3924243749999,64.63816226900013],[-166.23696071399993,64.58355321000005],[-165.33592440599995,64.48763518500004],[-165.00198804399992,64.4339170630002],[-164.84194266199998,64.4906079930002],[-164.33973370299992,64.55941715900008],[-163.97437920099995,64.55137176500017],[-163.59786108099993,64.56335364299997],[-163.253051953,64.46949916400007],[-163.04346108499996,64.48541737900007],[-163.36116113299997,64.58401731700013],[-163.18998848399997,64.64805370200008],[-163.01486114999997,64.5533537410002],[-162.83406866699994,64.50972568400005],[-162.85578502699997,64.67677122500004],[-163.012255022,64.70939344600015],[-163.5035988909999,64.68575804400012],[-163.68771354099994,64.70949748400005],[-163.892879886,64.79013605100005],[-163.85368439999996,64.91838683300011],[-163.68042704999996,65.01484884500007],[-163.35096915999992,65.01930789800019],[-163.01609020899997,64.95637036000011],[-162.74379888399994,64.86522030300006],[-162.7543762329999,64.79164566400016],[-162.5991228869999,64.76131221500009],[-162.30546000099994,64.83811236300016],[-162.2752495189999,65.02072145900013],[-162.1675104169999,65.13016264400011],[-161.92392618199995,65.17699375300009],[-161.551365972,65.19751971900001],[-161.25075334299993,65.1573347210001],[-161.12025307099995,65.28103744700013],[-161.16724234399996,65.48023108600017],[-161.14668983499993,65.60774708900016],[-160.70295183199997,65.67993566000013],[-160.54292531999994,65.60228608200009],[-160.08625669799997,65.63369214200003],[-160.04545346199995,65.67157926900018],[-160.11169668399998,65.81577398500019],[-159.91918118599995,65.80678019800007],[-159.78846449899993,65.71820476199997],[-159.5734001769999,65.72924105200008],[-159.56442518899993,65.65000479500014],[-159.35257719799992,65.6072936720002],[-159.17695433599994,65.78521919200006],[-159.1166804739999,65.93330703200013],[-159.13135985099998,66.04406625000018],[-159.4764877879999,66.288383259],[-159.70978403599997,66.29755304000014],[-160.07247226699994,66.36616904300013],[-160.29708812099997,66.30864310400005],[-160.628843194,66.25550642900009],[-160.98039305699996,66.2409074410001],[-161.1969538969999,66.21561751900015],[-161.34880847499997,66.26530839800012],[-161.55844478299994,66.23853563800003],[-161.82720814099994,65.99932652400014],[-161.987917284,66.07123558100011],[-162.39191718899994,66.02872642600016],[-162.62888989299992,66.03812638400007],[-162.76353538899994,66.09518999300002],[-163.09302621899994,66.06296266800013],[-163.49587163899994,66.0853898690001],[-163.64698394699997,66.05923153400016],[-163.95540592199995,66.01548074800002],[-164.65935763099995,66.01094324100006],[-164.89887712299995,65.94442371500003],[-165.2242302639999,65.92780165100015],[-165.69932658899992,65.94895221800004],[-166.19827184699997,66.02360344800013],[-166.3881068089999,65.99818870600012],[-166.97996040699994,65.78132919500018],[-167.4514375649999,65.7278037750001],[-168.09727977199995,65.60540967700018]]]]},"properties":{"objectid":71,"eco_name":"Beringia upland tundra","biome_num":11,"biome_name":"Tundra","realm":"Nearctic","eco_biome_":"NE11","nnh":2,"eco_id":410,"shape_leng":36.7424915132,"shape_area":9.10003338988,"nnh_name":"Nature Could Reach Half Protected","color":"#5ACFC7","color_bio":"#9ED7C2","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":47024.040719067554,"percentage":0.5503005852001633}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[117.83110054800022,38.25513491600003],[117.67221067700018,38.38457279100004],[117.67851252700007,38.27399067800019],[117.78082254000003,38.0947756970001],[118.09885357200017,37.752583997000045],[118.21549261700011,37.72152150200003],[118.38207959000033,37.71314479600005],[118.54003856700012,37.74473719400015],[118.67523162400005,37.72429859400012],[118.74025759100005,37.62448555000003],[118.67629964700006,37.565919684000164],[118.51995854400002,37.602188849000186],[118.44186368200008,37.53621120100013],[118.6114116460003,37.33473003000012],[118.71042656500003,37.26709326800011],[118.78960453700006,37.13326512000003],[119.01318359100003,37.00571149600006],[119.44687667200003,36.87988219800013],[119.53272965700023,36.87213547600004],[119.71478258200011,36.94119498200007],[119.81160764600008,36.99943278000012],[119.76721155400003,37.14932082300004],[119.64276158200005,37.13014822500014],[119.3874965880002,37.12098512900013],[119.23275760300021,37.1415459370001],[118.97109956300005,37.26876445200014],[118.93887366000001,37.345704959000045],[118.95247665100032,37.53153812300019],[118.97998069300002,37.610142772000074],[119.09387164600003,37.719583774000114],[119.03166166400013,37.78069438600005],[119.03692667200005,37.87068886900016],[118.94831855600012,38.04069180200008],[118.86360165500002,38.04735960600004],[118.83055164300015,38.15429894500011],[118.61637859400003,38.13680524200015],[118.54749259300013,38.065418417000046],[118.45999155900017,38.109026442000186],[118.17803959100002,38.14402206100016],[118.08360253200021,38.13180007200009],[117.90415956300012,38.24179930800011],[117.83110054800022,38.25513491600003]]],[[[119.05165065900019,39.224281575000134],[119.1140056480001,39.28518951300015],[118.88979359400025,39.401036970000064],[118.6698075270001,39.42390565200009],[118.30580862900024,39.4185534720001],[118.06536066100011,39.373475093000025],[117.76710455000011,39.257330917000104],[117.62812069300003,39.10196429500013],[117.6519626810001,39.05185895400018],[117.87996654100016,39.19344405100014],[118.05165054900033,39.22206154500009],[118.14305168300007,39.19289403000005],[118.24275157200009,39.06595882400006],[118.34583255200005,39.04234633200019],[118.50138860500022,39.113451022000106],[118.60498054700031,39.18733314000019],[118.74832165300006,39.14067175600013],[118.84915158900003,39.184556048000104],[118.94859365000013,39.18095417700005],[119.05165065900019,39.224281575000134]]]]},"properties":{"objectid":75,"eco_name":"Bohai Sea saline meadow","biome_num":9,"biome_name":"Flooded Grasslands & Savannas","realm":"Palearctic","eco_biome_":"PA09","nnh":3,"eco_id":742,"shape_leng":11.8505088713,"shape_area":1.18760179715,"nnh_name":"Nature Could Recover","color":"#3370A6","color_bio":"#BEE7FF","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":11583.712934499676,"percentage":1.001736807089989}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[147.96242213400012,-28.949548535999952],[147.94144510500018,-29.006372259999978],[147.84870283400005,-29.040729016999933],[147.8816035440002,-29.107086003999882],[147.8218598090001,-29.274618201999942],[147.68343136900012,-29.3296074779999],[147.59964528500007,-29.44250977099989],[147.59023076800008,-29.543733141999894],[147.49872358400012,-29.531797126999948],[147.34900474800008,-29.69006580499996],[147.37271705100022,-29.728087020999908],[147.27855558100032,-29.8368425299999],[147.29447091900022,-29.893872448999957],[147.38466649200006,-29.976101980999942],[147.38935143600008,-30.033602988999974],[147.55071342200017,-30.016686395999898],[147.54781345300012,-29.92656565999988],[147.58757749300003,-29.85541006099993],[147.74199657400004,-29.799371702999906],[147.84349820400007,-29.73170417599988],[147.78519347500003,-29.6233093809999],[147.85549035800022,-29.450891904999935],[147.9152286210001,-29.392124398999954],[147.90528018800012,-29.302610503999972],[147.93733882400034,-29.108109937999984],[148.06064527500018,-29.076617273999943],[148.05474447600034,-28.96898480799996],[147.96242213400012,-28.949548535999952]]],[[[151.06020999400005,-23.448090007999895],[150.97845999400022,-23.48711000799989],[151.04587999400007,-23.620650007999927],[151.1366499940002,-23.676480007999885],[151.1920399940002,-23.773970007999935],[151.30103999400012,-23.74401000799992],[151.2267099940002,-23.61427000799995],[151.2347699940002,-23.49757000799991],[151.15801999400003,-23.510460007999825],[151.06020999400005,-23.448090007999895]]],[[[148.34126281700003,-32.27128543999993],[148.4211124190001,-32.21596445599994],[148.54071116200032,-32.32780713899996],[148.59744422500012,-32.438097520999975],[148.6526201920001,-32.45573627599998],[148.7387255770002,-32.40871974899994],[148.96583744300005,-32.36133283999982],[149.04945559400005,-32.281784660999904],[149.03039733900016,-32.233547815999884],[149.1046767580001,-32.15805087899997],[149.1629658500002,-32.27700415199996],[149.24603458800004,-32.324756064999974],[149.39834757900007,-32.248160113999916],[149.31178453200016,-32.20027843399998],[149.3822493450001,-32.140879481999946],[149.34468205100006,-32.03056645399988],[149.49194406100003,-31.903233367999974],[149.55046142600008,-31.901486069999976],[149.6500097710002,-31.966852155999902],[149.7408917570001,-32.13293540799998],[149.9201060270001,-32.15607415199992],[149.97793705700008,-32.22536807599988],[150.17448656000022,-32.22006093699997],[150.2788418030001,-32.28376632899989],[150.31593604800003,-32.20211250999995],[150.43910438400007,-32.21660068099993],[150.50325197700022,-32.13550749199993],[150.56155569400016,-32.176160995999965],[150.64328137600012,-32.14080266899998],[150.735612198,-32.17941136099995],[150.7831734250002,-32.117048457999886],[150.77331611500006,-32.05058841299996],[150.68386916900022,-31.93126974699993],[150.79212993800002,-31.88903729499998],[150.88037185200005,-31.80507433899993],[150.79245099500008,-31.740191787999947],[150.7080245640002,-31.567441196999937],[150.5810106150002,-31.424619046999908],[150.53474620400004,-31.23603234199993],[150.56601195300016,-31.13753881499997],[150.4967214840001,-31.066680770999938],[150.45894,-30.870129856999938],[150.33961606700007,-30.810416911999937],[150.23883160200023,-30.54364569699993],[150.27548330800016,-30.506582077999894],[150.0474547470003,-30.270538166999927],[149.97198460200002,-30.260282573999973],[149.94035257100018,-30.12811447799993],[149.9622792780001,-30.063806272999955],[150.0521839710001,-29.995597027999963],[150.13889991400004,-30.010304444999974],[150.1988357150002,-29.78041308899998],[150.25321788800022,-29.706029912999952],[150.25703189900003,-29.51425351599994],[150.28941120100012,-29.474118811999915],[150.41032233500016,-29.47156089899994],[150.4685199080002,-29.544238375999953],[150.52989072100002,-29.518467915999963],[150.6077726100002,-29.64920316699994],[150.74090549000005,-29.534651389999965],[150.61959756300007,-29.452389435999976],[150.68134990300018,-29.3765032849999],[150.81448271800014,-29.308896961999892],[150.8727246320002,-29.071659046999912],[150.812589182,-29.00352109399995],[150.92585673900032,-28.848969273999842],[150.96335009600023,-28.870191928999873],[151.10675072000004,-28.846096287999956],[151.08529075500007,-28.668483883999954],[151.14694763700004,-28.550414658999955],[151.2060963350001,-28.51559949599988],[151.22748264300003,-28.437824983999974],[151.29902266400006,-28.417783429999872],[151.3296307080002,-28.28907545899989],[151.25465220600017,-28.24872703299991],[151.2453567130001,-28.131642083999907],[151.31802404500002,-28.078233069999953],[151.4552315830001,-28.093514793999873],[151.5700040260001,-28.153554579999934],[151.59428720900019,-28.016090799999972],[151.7133345100002,-27.985668486999884],[151.81917784700022,-28.154897991999974],[152.02884432500002,-28.304746438999928],[152.12842500300007,-28.443405098999847],[152.21630999600006,-28.44891000499996],[152.25319294200006,-28.372094862999973],[152.32332000400004,-28.352092091999964],[152.32501482400016,-28.22874549999989],[152.3755204590001,-28.168226987999958],[152.33390902700023,-28.118524127999876],[152.38249211900006,-28.05980613899993],[152.18835338600013,-27.918863160999877],[152.11399607700014,-27.786410562999947],[151.98869078200005,-27.753546262999976],[152.00640460500017,-27.60089577499997],[151.96399947500004,-27.505500564999977],[152.013498227,-27.449796169999843],[151.95970947400008,-27.318651803999956],[152.02689245200008,-27.21871406999992],[151.95764733500005,-27.130528763999905],[151.83981892500003,-27.11648826499993],[151.7340593880001,-27.005371420999893],[151.59608921200015,-26.935720546999903],[151.52719518900005,-26.85095083899995],[151.50398564600005,-26.757897437999873],[151.57438863100026,-26.703285735999884],[151.6195531000002,-26.586582679999935],[151.809828325,-26.496224614999903],[151.73441845900004,-26.38259725499995],[151.70634093900003,-26.251101533999872],[151.63457879300006,-26.211797495999917],[151.56656959600002,-26.09319158699998],[151.6484776560003,-26.037618734999967],[151.6489797160001,-25.867729415999918],[151.56359077600007,-25.755238532999897],[151.5193700540002,-25.65722222599993],[151.46673947200009,-25.39679726099996],[151.3653748370001,-25.331327795999982],[151.39152685800002,-25.237859929999956],[151.4134046700001,-24.944908927999904],[151.30166490300007,-24.70686975899997],[151.1802208140001,-24.650907695999933],[151.12855443800004,-24.568413070999952],[150.98553473100003,-24.55929374199991],[150.91908310000008,-24.515878761999886],[150.8673097100002,-24.406369238999957],[150.90232763400002,-24.303022571999975],[150.7899929020001,-24.207110496999917],[150.94808777000003,-24.213828482999872],[151.0696991650001,-24.145927732999894],[150.99966300300002,-24.319004295999946],[151.07282873400004,-24.36858163099987],[151.1342609750002,-24.460946211999897],[151.22772007500032,-24.39200780699997],[151.188473648,-24.25446406899988],[151.2647360510001,-24.22072797399983],[151.2732495590002,-24.07556930899989],[151.2465011050001,-24.00130133399989],[151.1589774470001,-23.91042992399997],[151.12493529500023,-23.827622865999956],[151.15869999400013,-23.749080007999908],[151.12225999400005,-23.672730007999974],[151.0541499940001,-23.63985000799994],[151.0157399940001,-23.565740007999864],[150.89277999400008,-23.61490000799995],[150.85065999400013,-23.544180007999955],[150.86727999400023,-23.472520007999833],[150.81989999400002,-23.421270007999908],[150.79314999400003,-23.321600007999905],[150.8254999940001,-23.23960000799991],[150.73884144800002,-23.116573551999977],[150.73328539900012,-23.03157239899997],[150.62860767700022,-22.98127210399997],[150.51022947900003,-22.843651653999814],[150.36448136800004,-22.81460294899989],[150.47929800500015,-22.68482265299997],[150.45712079500015,-22.63280034499985],[150.55781999400017,-22.56335000799993],[150.45199999400006,-22.52301000799997],[150.30093999400003,-22.419440007999924],[150.1753699940001,-22.355070007999927],[150.1512399940002,-22.25873000799993],[150.04268999400017,-22.127970007999977],[149.96388999400017,-22.1748300079999],[149.91292999400002,-22.34520000799995],[149.9619899940002,-22.538760007999883],[149.88719999400007,-22.491550007999933],[149.8515299940002,-22.417510007999965],[149.70322999400003,-22.45358000799996],[149.70841999400022,-22.38461000799998],[149.57283999400033,-22.232930007999983],[149.53533346000017,-22.15881206599994],[149.4682805860001,-22.15315597999995],[149.41442996600006,-22.219252393999966],[149.4340414820001,-22.288654665999843],[149.34246176300007,-22.33302494299994],[149.48338722900007,-22.615852177999898],[149.47614508300023,-22.760011533999887],[149.38988820600002,-22.70969007899987],[149.31106513600014,-22.502468150999846],[149.28338456400002,-22.31503397599994],[149.24762582400012,-22.280369540999914],[149.29309358900002,-22.119945607999853],[149.27127709500007,-22.034047889999954],[149.206330137,-22.00993293299996],[149.20408213100018,-21.849730424999905],[149.12099331500008,-21.870966899999928],[149.01514580700018,-21.6733589829999],[148.95886901500012,-21.687746576999928],[148.9054565910002,-21.55502232499998],[148.9232348510002,-21.505435032999856],[149.0144603780002,-21.515476276999948],[149.0080561970001,-21.445174931999873],[148.92193787800022,-21.37704189999988],[148.8074230310002,-21.389577533999955],[148.7256914410001,-21.57647190299997],[148.67352720700023,-21.50944362199988],[148.67594827100004,-21.44206142099995],[148.56266370400022,-21.39651734499995],[148.48414552000008,-21.297348623999937],[148.49530032000018,-21.23185074499986],[148.43628435200003,-21.12068489099994],[148.47509982600002,-21.027800924999895],[148.47132121800018,-20.83752186499993],[148.25533078500018,-20.59601227899998],[148.2457172600001,-20.512571401999878],[148.18394384700014,-20.501474342999927],[148.2566608520002,-20.269850994999956],[148.31544490900023,-20.22976241099991],[148.31884470600005,-20.140104736999945],[148.27549999300004,-20.09667000899998],[148.26719999300008,-19.98894000899986],[148.18663999300009,-19.943740008999953],[148.11267999300003,-19.94194000899995],[148.08020999300004,-19.881480008999972],[147.98578999300003,-19.926600008999912],[147.92611999300016,-19.914820008999925],[147.86280999300016,-19.846450008999966],[147.8528799930001,-19.745880008999904],[147.75431999300008,-19.70793000899988],[147.77134999300017,-19.830660008999814],[147.67617999300023,-19.83061000899994],[147.59366999300005,-19.731900008999958],[147.56483999300008,-19.561310008999953],[147.47799999300003,-19.44173000899997],[147.31475999300005,-19.40824000899994],[147.26260999300007,-19.42666000899993],[147.13485999300008,-19.407770008999876],[147.06606999300016,-19.340020008999943],[147.04136999300033,-19.210760008999955],[146.96089999300023,-19.293230008999842],[146.88409999300006,-19.30440000899989],[146.77485999300018,-19.19143000899993],[146.68874999300021,-19.193940008999846],[146.60376317700002,-19.152372604999925],[146.53239408800005,-19.279167971999925],[146.46854016900022,-19.34198231599987],[146.59909450400005,-19.45044264299986],[146.6119497100002,-19.521478698999886],[146.67116504000012,-19.595839221999825],[146.77802329700012,-19.63586910299989],[146.7490695790002,-19.715685505999886],[146.76629538600002,-19.787420484999927],[146.68145472900005,-19.831411169999967],[146.72486958000013,-19.90285060499997],[147.0011016740002,-19.905086887999914],[146.97736581400022,-19.98585610599997],[147.20889644800002,-20.239903332999916],[147.29010080600017,-20.440883850999967],[147.37697764900008,-20.508139463999896],[147.36657243000025,-20.588156798999933],[147.44700580000006,-20.612305660999937],[147.5399370780001,-20.75595525599988],[147.66084908400012,-20.814244737999957],[147.6339547990002,-20.912700256999926],[147.50965454200002,-20.840895911999837],[147.39113187500004,-20.812121839999975],[147.30054584000004,-20.8188824639999],[147.2795651370002,-20.86883554499991],[147.17489006800008,-20.887104610999927],[147.04848867400005,-20.843526456999882],[147.08790995700008,-20.675814665999894],[147.1765917140002,-20.615368583999896],[147.10080338800014,-20.538080987999876],[147.00319672100022,-20.567301215999976],[146.90524224700005,-20.46231368399998],[146.79734647500015,-20.565834801999927],[146.76270993900016,-20.542165614999874],[146.72084486200004,-20.40315961999994],[146.58606245800001,-20.31759766899995],[146.45104781500027,-20.311044050999897],[146.38916333300006,-20.39017129599989],[146.39715399600004,-20.494644522999863],[146.53023723600006,-20.693076578999978],[146.4484736400002,-20.78527183999995],[146.5119542990002,-20.889839150999933],[146.49744397000018,-21.00268161599996],[146.3969571130001,-21.03031472399988],[146.3290288310003,-20.97948974999997],[146.18846756200014,-21.034205129999975],[146.15959028500004,-21.13187387399995],[146.25276387300005,-21.13249962599997],[146.32047197400027,-21.16989619599991],[146.31382283200026,-21.233932737999908],[146.363912077,-21.356889683999952],[146.3184560310002,-21.466083396999863],[146.34046631400008,-21.526590169999906],[146.45073235500013,-21.54559778299989],[146.4560066570001,-21.752128679999885],[146.53320780800004,-21.839974009999935],[146.42131878200007,-21.907797319999872],[146.4677185930001,-21.968715619999955],[146.38585415900002,-21.99946233299994],[146.35574428900009,-22.071806787999947],[146.42443325500017,-22.121676410999953],[146.48553852800023,-22.24158486899995],[146.5211532950001,-22.369163388999937],[146.50289042300005,-22.50121341499994],[146.45442693100006,-22.57998893599995],[146.5210059460003,-22.68824367699989],[146.4906275940001,-22.780381256999874],[146.55235290700023,-22.81203699499997],[146.61089257600008,-23.023701909999886],[146.6065559540001,-23.181672176999882],[146.6645558130001,-23.223051276999968],[146.6669871800001,-23.300606506999827],[146.57686950700008,-23.38439306899994],[146.59416266000005,-23.512126970999816],[146.65441304600017,-23.58032421599995],[146.58002883000017,-23.707687370999963],[146.52099456500014,-23.75016448699995],[146.4176936580002,-23.742489767999814],[146.29187115900004,-23.611435927999935],[146.2320173730002,-23.59894849699998],[146.28929911400007,-23.75822736599997],[146.33836897700007,-23.792600652999965],[146.29548048100003,-23.94689135599998],[146.2447500310003,-24.000918733999868],[146.16425843900015,-24.00097243099998],[146.1154494320001,-23.91354336099988],[146.04469074400004,-23.932015238999895],[146.00561153400008,-24.136976133999895],[146.02225201600015,-24.198766426999953],[146.09432273300013,-24.270980911999857],[146.05161584500024,-24.43979656099998],[145.96486270100002,-24.50281175399988],[145.9603192640002,-24.584915784999964],[146.1576844210001,-24.538872296999898],[146.23503820100007,-24.609136943999943],[146.25668208100012,-24.69983059699996],[146.18250954600012,-24.728094081999927],[146.2158159620002,-24.85371704599993],[146.43007953400001,-24.856161125999904],[146.47744433100013,-24.995560981999915],[146.50395617700008,-25.16308614499991],[146.48036658300032,-25.282008806999954],[146.54616627400003,-25.34658090099998],[146.54413617500018,-25.48609223299991],[146.47506779000003,-25.551912057999914],[146.4854222170003,-25.713190921999853],[146.4169129070002,-25.826907653999967],[146.4074551210001,-25.99568815999993],[146.4877783080001,-25.907366530999923],[146.58013237600017,-25.848994626999968],[146.5781617240002,-25.80460605399992],[146.72220296600005,-25.632063052999968],[146.93316621500003,-25.59457021299994],[147.0357378880002,-25.650833866999903],[147.05524835900007,-25.76020892999992],[147.01224597100008,-25.841312407999908],[147.0401967160002,-25.894304914999964],[147.01878815700013,-26.020882363999874],[147.06742948300018,-26.101160012999912],[147.03922045000002,-26.278419708999877],[146.97358489300007,-26.34184418399991],[147.03998121200004,-26.398498434999965],[147.02069392900023,-26.480643229999885],[147.09578199300006,-26.582196008999972],[147.0762517600001,-26.637513470999977],[147.1843492370001,-26.70837933499996],[147.31641047000016,-26.66155391999996],[147.35231809700008,-26.712826052999844],[147.45100010500005,-26.63771242499996],[147.546980404,-26.69846079399997],[147.62016419400004,-26.58581685199988],[147.7063015010001,-26.695675865999874],[147.80441783100014,-26.741011778999848],[147.848270242,-26.713994368999977],[147.97795039000005,-26.749850800999866],[148.05243022500008,-26.88590874399995],[148.19970552500024,-26.79608072199983],[148.26900828300018,-26.91806670299991],[148.34737186100006,-26.93627820399996],[148.41878865800004,-27.044681643999922],[148.53005492800003,-27.009205758999883],[148.6095685560001,-27.07845652599991],[148.66975018500023,-27.18816865799988],[148.7733630460002,-27.267678516999922],[148.81423211900017,-27.33595995099995],[148.71530122800016,-27.406090630999927],[148.73182685400002,-27.518163344999948],[148.67278361400008,-27.573972073999926],[148.71758956000008,-27.68927028699983],[148.6293458890001,-27.85663498799994],[148.66399770400005,-27.87701329899994],[148.84060566300002,-28.132775606999928],[148.8207494080002,-28.251278332999902],[148.77174699900002,-28.306885452999836],[148.8991813240001,-28.527734221999935],[148.87845494800013,-28.615771961999883],[148.90838280900005,-28.755326976999868],[148.84061624700007,-28.802682270999924],[148.74170630300023,-28.98008916299989],[148.55417647800016,-29.186719787999948],[148.57714093200002,-29.252077148999888],[148.47292341000002,-29.373961190999978],[148.49411893500007,-29.541772069999922],[148.6672296900001,-29.419887852999977],[148.66899954500002,-29.340398874999835],[148.60010555600002,-29.269741023999984],[148.63013489000002,-29.146091095999907],[148.77321666600017,-29.117827580999972],[148.82798049100006,-29.066599802999917],[148.77573089800012,-28.991685987999915],[148.89905070500004,-28.968019980999884],[148.94178097100007,-28.89146412799994],[149.01033352600018,-28.893712026999935],[149.16667427800007,-28.77539184199992],[149.2219653860002,-28.646321526999884],[149.3072349470002,-28.638009884999974],[149.37728323000022,-28.524222934999898],[149.4704780930001,-28.50272016499997],[149.55082951600014,-28.426224078999894],[149.6997972570001,-28.329283985999894],[149.94147498600023,-28.22549964399991],[149.90174328900002,-28.37009770399993],[150.0423360210001,-28.382137526999884],[150.16070120100005,-28.30110394499991],[150.1808164680001,-28.353372829999955],[150.28724864100013,-28.41615891799995],[150.39400862000014,-28.59131387099984],[150.4807509730001,-28.645268770999905],[150.56192399700012,-28.653923896999913],[150.68377845500004,-28.59784939499997],[150.74724909200006,-28.66137644299988],[150.67989692800006,-28.716411434999884],[150.73429540300003,-28.798122627999874],[150.54015622100007,-28.74922563499996],[150.43040963200008,-28.76371363399994],[150.26003486000002,-28.721332987999972],[150.1430608720001,-28.755671495999934],[149.87830527200015,-28.800393568999937],[149.88006033300007,-28.853753750999942],[149.79392448200008,-28.927108801999907],[149.66308034300005,-28.959740136999926],[149.65545113800022,-29.00863895699996],[149.7143657680001,-29.095513073999882],[149.78847843000005,-29.264731134999977],[149.90353035500016,-29.421778212999982],[149.73435589300004,-29.46232519299997],[149.64396293400023,-29.565564584999947],[149.6345638260002,-29.67053403099993],[149.48911718800002,-29.74409342799993],[149.4496887580001,-29.846110223999972],[149.54572823400008,-29.963316612999904],[149.60426147200008,-30.08727337099998],[149.67162940900005,-30.16529344199995],[149.70740413700014,-30.26166696699994],[149.49291840100022,-30.22017034399994],[149.25030410900013,-30.308168636999937],[149.08790480200025,-30.306447040999956],[148.89901623300022,-30.35189574499998],[148.54981865100012,-30.400685259999932],[148.45895259400015,-30.475270557999977],[148.51438803200017,-30.561673500999973],[148.73432875100002,-30.70885336799995],[148.8822326170001,-30.88845124799991],[148.8925780830001,-30.932615720999934],[148.81120285400004,-31.015017501999978],[148.79412828900013,-31.102461980999976],[148.7176510810001,-31.257549267999934],[148.74490353900012,-31.278388878999976],[148.70663434900007,-31.413122565999913],[148.59281843100007,-31.394510881999906],[148.56088169200018,-31.49282164499988],[148.67341580900006,-31.68795698499997],[148.66694593800003,-31.739720565999846],[148.55946261600002,-31.740407374999904],[148.5079486840001,-31.68123946099996],[148.43197476900002,-31.692657052999834],[148.39396519700017,-31.767478818999905],[148.22639326700005,-31.953438665999954],[148.2741843340002,-32.06149970599995],[148.27390999800002,-32.13302919599994],[148.34126281700003,-32.27128543999993]],[[146.62312858300027,-25.13591167299984],[146.7737573840002,-25.123193973999946],[146.81883089200028,-25.184685401999957],[146.79490502900012,-25.24310411099998],[146.86907831200006,-25.3424628599999],[146.73801785900025,-25.5684290829999],[146.68158134200007,-25.572599380999975],[146.66042081000023,-25.689535814999886],[146.61017730000026,-25.767419634999953],[146.49344366100001,-25.817775410999957],[146.52815918400006,-25.706534567999938],[146.51939777700022,-25.609795196999983],[146.69533628200008,-25.42046473399995],[146.67396679900003,-25.23046752199997],[146.62312858300027,-25.13591167299984]],[[150.3748694740001,-22.702511400999924],[150.25603018100003,-22.626473071999897],[150.26783730500006,-22.55188333399991],[150.3563562290002,-22.527208834999897],[150.37857712700009,-22.59735701799991],[150.33539217500004,-22.6536968609999],[150.3748694740001,-22.702511400999924]]]]},"properties":{"objectid":82,"eco_name":"Brigalow tropical savanna","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Australasia","eco_biome_":"AU07","nnh":2,"eco_id":182,"shape_leng":145.696797959,"shape_area":36.7541572261,"nnh_name":"Nature Could Reach Half Protected","color":"#8BFC3A","color_bio":"#FEAA01","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":410677.8621400929,"percentage":1.9155630404257353}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-135.89706428799997,68.53748372000018],[-136.1717598599999,68.55836059100017],[-136.185694077,68.48106908500006],[-136.43809232299992,68.49746626500018],[-136.76585828099996,68.61574031999999],[-137.22125336099998,68.71811845300016],[-137.48283947999994,68.71453200200017],[-137.85393785899998,68.7927076380002],[-137.86184647599993,68.87052099300018],[-138.1080446599999,68.87341222200001],[-138.47636616699998,68.92008297900009],[-138.77419404099993,69.02563358800018],[-138.93629156499992,69.04497442500019],[-138.94729731299998,69.13536067600006],[-139.20315423799997,69.2280645300001],[-139.29339670399997,69.19621340800012],[-139.72320746399993,69.35746874500018],[-139.90803402699999,69.40198511699998],[-140.00790528999994,69.52271276500005],[-140.18591284699994,69.55799928800013],[-141.00269500499996,69.51107436900008],[-141.4442795529999,69.43752370400017],[-142.0599592029999,69.45708573900004],[-142.71740187399985,69.49163092800006],[-143.1380102299999,69.5341808500001],[-144.0290819969999,69.56146846400014],[-144.29746339899992,69.60098749000002],[-144.62637061999996,69.69689935800011],[-145.45662730299998,69.64979486800019],[-145.97645805699995,69.64704825100006],[-146.18771914699997,69.59033396000018],[-146.4776472329999,69.56573936100011],[-146.74191205299994,69.42117948300012],[-147.36046936599993,69.32218202200005],[-147.51462056199995,69.23747826800007],[-148.179323395,68.95309543900004],[-148.52753887699996,68.81398813400006],[-148.98222565199998,68.86921708200003],[-149.08527856299992,68.91073186400001],[-149.523883322,68.90387402900006],[-149.89570748399996,68.95507863100016],[-150.04899314199994,68.90007430600019],[-149.9549753579999,68.81927166400004],[-150.08052625199997,68.78315323600015],[-150.25123141899994,68.83892843900009],[-150.67795925099998,68.68909635000006],[-151.22208309499993,68.64968864900004],[-151.27523643799995,68.72008839300008],[-151.73060650499994,68.66239825900004],[-151.944739569,68.58046359800011],[-152.04779703099996,68.47991698900012],[-152.23391637899996,68.52808666700008],[-152.437552,68.62596231600003],[-152.62180062199994,68.6552971500002],[-152.7811757229999,68.56322325800005],[-152.93308885499994,68.574611071],[-153.02506363099997,68.66993983300017],[-153.27332030699998,68.59850117100012],[-153.63745666199998,68.57052534899998],[-153.63007402299993,68.74598079900017],[-153.814620349,68.76619100500011],[-154.28506130199995,68.61892799700007],[-154.69428216399996,68.54983718700015],[-155.2148209819999,68.52547953900006],[-155.98901886499993,68.55689696100018],[-156.40499375499996,68.45931748600003],[-156.85884994199992,68.43330562800008],[-156.86501605299995,68.52635109300002],[-156.60705572099994,68.60374718700007],[-156.63227976999994,68.65314974300009],[-157.18212545699993,68.66159596400018],[-157.50397530799992,68.69197791200008],[-157.86322169199997,68.60193881900017],[-158.0161408879999,68.60634738000016],[-158.1386344169999,68.79186622700013],[-158.9744394489999,68.79387098600017],[-159.38604998399995,68.81801999800007],[-159.607865561,68.91341047800017],[-160.21701983699992,68.87388043000004],[-160.24949416899995,68.93625213500013],[-160.158826541,69.05858668000019],[-160.62163300899994,69.0551133670001],[-160.85991560699992,69.00514306900004],[-161.06019146799997,68.80909544600007],[-161.777462893,68.72043667100013],[-162.14995553299994,68.69540873900019],[-162.15473386799997,68.60563303000004],[-162.42214563899995,68.60214731299999],[-162.69833898699991,68.73046448800017],[-163.1203913349999,68.54146457300016],[-163.42840059399992,68.44304334300011],[-163.83106663499993,68.37041178800001],[-163.87223042499994,68.30121851000018],[-163.52051924499995,68.16011465200012],[-163.2976494989999,68.13719503400017],[-163.04379007099993,68.2361497920001],[-162.822022977,68.1447568370001],[-162.32802423199996,68.3013851720001],[-162.20082100799993,68.14718732900013],[-161.960157955,68.15121403500007],[-161.61683510199995,68.40356469300013],[-161.43350689799996,68.42363314400018],[-161.29426626599997,68.38067082700002],[-161.290486771,68.06279068700013],[-160.95646992099995,68.0755835430001],[-160.94882359899995,68.15425954500017],[-160.7066535239999,68.12706373400016],[-160.474991585,68.06384262600005],[-160.22347054399995,68.02873337100004],[-159.93760634199998,68.0655597390001],[-159.94394113599992,68.12147659800007],[-160.13897942499997,68.3546402070001],[-160.01783757099992,68.52730758200005],[-159.74708336699996,68.4898461950001],[-159.47127777099996,68.48458618],[-158.90795983099994,68.43068164300013],[-158.73593267999993,68.35063989700006],[-158.21741803299997,68.2385195670002],[-157.36903940599993,68.09875515300013],[-157.1218906389999,68.13383525799998],[-157.22578582499992,68.01880352400013],[-156.77424589899994,67.93419555300017],[-156.84425553099996,67.87721513500003],[-157.79949104199997,67.82312962400005],[-157.89441260899994,67.6985825500002],[-157.85608327099996,67.60111719400015],[-158.4767560159999,67.62924235600002],[-158.7545094159999,67.66200424500016],[-158.9545462989999,67.90816815700015],[-159.23629262699995,68.00175410000003],[-159.3514843259999,67.96178098800004],[-159.82642549799996,67.93935209900013],[-160.2845237079999,67.876940219],[-160.567826834,67.88753061900019],[-160.45282559099996,67.77265781000006],[-160.78986764599992,67.77376317300013],[-160.92244157199997,67.8521886100001],[-161.2324229669999,67.94348968499997],[-161.43701909799995,67.92976178300012],[-162.064911881,67.7913495840001],[-162.299060654,67.75774451100006],[-162.10041904499994,67.66957309800011],[-161.88255542699994,67.6314692680001],[-161.71163996599992,67.65120607800009],[-161.69251455399993,67.56658485600019],[-161.8216375369999,67.48569001300018],[-161.61856839799992,67.46811015400016],[-161.42075254199992,67.50292494600006],[-161.36069889099997,67.44327671600013],[-161.13642458199996,67.49104426100013],[-160.97370096299994,67.48522531900011],[-160.71269635199994,67.36881839300014],[-160.35045498399998,67.4449644300002],[-160.3881739249999,67.32680342400005],[-160.26935303399995,67.16969378400012],[-160.00242588299992,67.15493960700013],[-160.04288573299993,67.49474464100007],[-159.91330639799997,67.69985004200004],[-159.80896574499997,67.685932277],[-159.7057676599999,67.45498383000017],[-159.2456042329999,67.39912443900016],[-158.6741176069999,67.365546574],[-158.5426413929999,67.42749985500012],[-157.5595079469999,67.33651237200007],[-156.30723155,67.14566090600005],[-155.76497843699994,67.07753731700012],[-155.16302407199993,67.02376810100014],[-154.39153656,67.05423748200008],[-153.54546679399994,67.11545323700011],[-152.731097974,67.18189123800016],[-151.83153295299996,67.20165382],[-151.0462236639999,67.1721673150002],[-150.52302557999997,67.18472559600019],[-150.23743451099995,67.17554367100013],[-149.9757790019999,67.23284941800011],[-149.04665247199992,67.33217409600013],[-148.25366735999998,67.3247730760001],[-147.76797069699998,67.49708985200004],[-147.3793609779999,67.58133707000007],[-147.14574345199992,67.66255611400004],[-146.70122957099997,67.64770110400019],[-146.52115181399998,67.69674486800017],[-146.60504751899998,67.8263600790001],[-145.97331858599998,68.00098021800017],[-145.80775314499994,67.89124369900009],[-145.41418283899998,67.88678761100016],[-145.2181300149999,68.05837064299999],[-144.96350215699994,68.09698134000018],[-144.47020491499995,68.08362986800017],[-144.079183033,68.03926273900015],[-143.7564678259999,68.10118491300005],[-143.88496801399992,68.17529120900019],[-143.92789025299993,68.31099834700012],[-143.41421242799998,68.35251139500019],[-143.032030089,68.32190247200003],[-142.61155774599996,68.3105436680001],[-141.9488161499999,68.36849076700014],[-141.57444036499993,68.6627943920002],[-141.06983488799983,68.7300747320001],[-140.86712282999997,68.5931076620002],[-140.7370302619999,68.59855623200013],[-140.41784187599995,68.71285138500008],[-140.33342880499987,68.80484460600007],[-139.94683432199992,68.77087209100017],[-139.70271393099983,68.67659061100017],[-139.32262468999988,68.64332799599998],[-139.5791509139999,68.55394891300017],[-139.55368777699994,68.41887372700012],[-139.2529212789999,68.34649112200003],[-138.937116678,68.39905587300012],[-138.75124282799987,68.47283579700007],[-138.29390376899994,68.42106736600016],[-138.10867205299996,68.27142917300017],[-137.91452550999998,68.2427697240002],[-138.21503840099996,68.10444533600008],[-138.34753519799995,67.94816537300017],[-138.07400826599996,67.95910083700011],[-137.96184002599995,67.92892557800013],[-137.6322702459999,68.03171852600008],[-137.47227622999998,68.0454494230001],[-137.46328767299985,67.84053121600016],[-137.56216489899998,67.60783408200007],[-137.42124322799998,67.54108175800019],[-137.113936143,67.47470070100002],[-136.86765271999997,67.478343789],[-136.76922790899994,67.37453377500015],[-137.0012055719999,67.26753939200012],[-136.83136992099992,67.13726528100005],[-136.8649227209999,67.10721149300008],[-136.62025020299996,67.17973829000005],[-136.51778429299992,67.09411216000012],[-136.652436729,66.97953884300006],[-136.60941143099996,66.92379968700016],[-136.340016005,66.7833260290002],[-136.21606288699996,66.56604617300013],[-136.32632256999995,66.34501593300018],[-136.096055456,65.96297443000009],[-135.68801880899997,65.88773262900008],[-135.60689774099984,65.92197164900006],[-135.32498700399998,65.84936097600013],[-134.99511308799998,65.94978850900003],[-135.1201899849999,66.09945547400008],[-135.32668418899988,66.19750711600011],[-135.46871387799996,66.3026399310001],[-135.674837014,66.56537035600013],[-135.844850905,66.73015778000007],[-135.87540491699997,67.00085942500004],[-135.78817002899996,67.21213214700003],[-136.00778166299995,67.33187869600005],[-136.037687582,67.47154035500006],[-135.949128154,67.70332441100004],[-135.69716969899991,67.84681568100007],[-135.60191071799994,67.96998517600014],[-135.60879820899999,68.15740409900008],[-135.6667596459999,68.35083593799999],[-135.84873888899983,68.42761258500019],[-135.89706428799997,68.53748372000018]]]},"properties":{"objectid":84,"eco_name":"Brooks-British Range tundra","biome_num":11,"biome_name":"Tundra","realm":"Nearctic","eco_biome_":"NE11","nnh":1,"eco_id":411,"shape_leng":87.11275438,"shape_area":34.7836248459,"nnh_name":"Half Protected","color":"#66BECA","color_bio":"#9ED7C2","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":159831.10604481006,"percentage":1.8704294621364561}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-122.13345849099989,40.20819757000004],[-122.19910587599992,40.21749026500004],[-122.32029181099989,40.132449538000174],[-122.31240916799993,40.051591857000176],[-122.36402432299997,39.95401102000011],[-122.31308337099995,39.82178105500003],[-122.34687114299993,39.80581256400012],[-122.27250238899995,39.64786579600019],[-122.29718441399996,39.49859451100019],[-122.28319461899997,39.327791360000106],[-122.28991910799994,39.138970831000165],[-122.15897201699994,39.02890477700009],[-122.13380701099993,38.93770738000012],[-122.00508850899996,38.90507219000011],[-121.87279035199992,38.76269679900008],[-121.90782435199998,38.70296539100008],[-122.03089101099994,38.79874617500013],[-122.07965102599991,38.67230981500006],[-121.99915543399993,38.61405523200011],[-121.977197075,38.362163765000105],[-121.87197840999988,38.226780630000064],[-121.71983541799995,38.217358811000054],[-121.71637350899994,38.111885879000056],[-121.83474192199992,38.08018296500006],[-121.90343609099989,38.21734762100016],[-121.96220808799995,38.18793948300004],[-122.12636931599997,38.19864522400019],[-122.10721119599992,38.02203283800009],[-122.02045892799993,38.05203343900013],[-121.68003694099991,38.00398784200007],[-121.68822997599995,37.89236405700018],[-121.58679955599996,37.772777764000125],[-121.56691366499996,37.69368775200013],[-121.27984278099996,37.5377201390001],[-121.18863171699996,37.46084970700019],[-121.05759321799997,37.12821505100004],[-121.07603006199992,37.06647047600018],[-120.94505930999992,37.03586959300003],[-120.79398727599994,36.86952015400004],[-120.77217036199994,36.784271993],[-120.714661617,36.74631643000009],[-120.68577400399988,36.65386945000017],[-120.42727690199996,36.476183695000145],[-120.39208724399998,36.392675067000084],[-120.26006168099997,36.29599690700019],[-120.2630777729999,36.239496471000166],[-120.19467156499996,36.131527606000134],[-119.95674310899989,36.00067600600016],[-119.89590109499989,35.877449828000124],[-119.88348264899992,35.76102365100007],[-119.98521081399997,35.75082978600017],[-120.09546086199998,35.651702280999984],[-119.77298706899995,35.38940117000004],[-119.49014833999996,35.33581725300019],[-119.34108514699989,35.28615600100005],[-119.46396795699997,35.21836542799997],[-119.47669363299991,35.13009747300009],[-119.41131071899991,35.11328925500004],[-119.39365141099995,35.03540701600008],[-119.26128074999991,34.978855805000194],[-119.02076342599997,35.033153676000154],[-118.97261809899999,34.93258836100006],[-118.85522611799996,34.933945133],[-118.75041900699989,35.020655457000146],[-118.72966639099985,35.081663224000124],[-118.79443095899995,35.15681718100018],[-118.70952089699995,35.214698587999976],[-118.66609903599988,35.30165629700002],[-118.82266864699989,35.45826190000008],[-118.8453604689999,35.5582185130001],[-118.91900661399995,35.72689634000017],[-118.91632863799998,35.88650726600014],[-118.97348932699992,36.03187426300019],[-118.92250773099994,36.06060694900009],[-118.96638432999987,36.16519499100002],[-119.09179288399997,36.27432812500018],[-119.05500837699992,36.36535459900017],[-119.130104771,36.4967572270001],[-119.23649875899991,36.52450137400018],[-119.23654854599994,36.60307823900007],[-119.30639297,36.69868531100019],[-119.51852828899996,36.85582234200018],[-119.695752546,36.9002184470001],[-119.74054837699993,37.01287028600012],[-119.87621478299997,37.02121858400005],[-120.05318099899989,37.18641392900008],[-120.15688505499998,37.25124365900007],[-120.23565695299988,37.36592023700007],[-120.30241049999995,37.38853759000011],[-120.32477073899997,37.5241700680001],[-120.55002189199996,37.70385932900018],[-120.61295776299994,37.675398373],[-120.71864390599995,37.71181882200017],[-120.84047195599993,37.86133433100014],[-120.980982929,37.96846467800003],[-120.99442972199995,38.1339082180001],[-121.05749021799988,38.19553318200013],[-121.05217442299988,38.297985638000114],[-121.1821728459999,38.48363526500003],[-121.14046012999995,38.656562849000125],[-121.29554729699998,38.776700225000184],[-121.26270048399994,38.900378372000034],[-121.51964880599996,39.40181486400013],[-121.51047065499995,39.50717022800018],[-121.60894484599999,39.58190398400018],[-121.58137333599996,39.62225176600009],[-121.75226277799999,39.664896247],[-121.9492135459999,40.01508898900005],[-122.13345849099989,40.20819757000004]]]},"properties":{"objectid":89,"eco_name":"California Central Valley grasslands","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Nearctic","eco_biome_":"NE08","nnh":4,"eco_id":385,"shape_leng":27.9933284021,"shape_area":4.72769383328,"nnh_name":"Nature Imperiled","color":"#DEFC4E","color_bio":"#FEFF73","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":46573.58759140337,"percentage":0.43956846462246557}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-115.17147053299993,28.120123155000044],[-115.17263762899995,28.27428965600012],[-115.24759665399995,28.23675029700013],[-115.34283468799998,28.135125420000122],[-115.25114454599998,28.046472042000175],[-115.18312858699989,28.03548353400015],[-115.17147053299993,28.120123155000044]]],[[[-118.30056759299993,29.189284024000187],[-118.40416758099991,29.151508630000137],[-118.33750965799993,29.030957081000167],[-118.30223056299985,28.87929526000005],[-118.23806759699988,28.945126728000105],[-118.24056959499995,29.040123698000173],[-118.31111169199988,29.121785563000117],[-118.30056759299993,29.189284024000187]]],[[[-118.58741251499993,33.02889770300004],[-118.49855434899996,32.85427100700002],[-118.42669840699995,32.80775058200004],[-118.36495305499989,32.83552513800004],[-118.50303910299994,32.94019890400017],[-118.58741251499993,33.02889770300004]]],[[[-118.60444856499998,33.47871386300011],[-118.48822126799996,33.418950227000096],[-118.4575758019999,33.32187749000013],[-118.3109575979999,33.33652295400009],[-118.36622124799993,33.40613205000005],[-118.53205764299992,33.47235932000001],[-118.60444856499998,33.47871386300011]]],[[[-120.05188017599988,34.035781090000114],[-120.22395785099991,33.98850534900015],[-120.12383363899988,33.895199005000165],[-120.0016231969999,33.9419225960001],[-120.05188017599988,34.035781090000114]]],[[[-119.91716700899997,34.07744112700016],[-119.85178517099996,33.96942293800015],[-119.72086696799988,33.959422943000106],[-119.75812152799983,34.059232043000065],[-119.91716700899997,34.07744112700016]]],[[[-116.76672166599997,33.93335123000003],[-116.87149251699992,33.95088817400011],[-116.97469905199989,34.05482332100013],[-117.36375750299993,34.21189086800007],[-117.46516020399997,34.17236328600018],[-117.8943557369999,34.14845083100005],[-118.04834449299989,34.171847998000146],[-118.26880028099987,34.25238154200008],[-118.28802880299992,34.288566171000184],[-118.48812849399991,34.341350766000176],[-118.41184209499994,34.37808948900016],[-118.39052676999995,34.47437269600016],[-118.48597239299994,34.463933193000116],[-118.585636793,34.494932253000115],[-118.7553546559999,34.508386708000046],[-118.81974441299997,34.45746434300014],[-119.040601359,34.42476830700008],[-119.20104243599997,34.47695610400001],[-119.37754659699993,34.441762103000144],[-119.66949977699994,34.45361294400004],[-119.76865768999994,34.48366968100015],[-120.05962725799998,34.497900267000034],[-120.22070518699991,34.48610129300005],[-120.44938290999994,34.44809204500001],[-120.29580346599994,34.47037750900006],[-120.00311250999994,34.45871388900014],[-119.8557306639999,34.40886843700008],[-119.72916700699989,34.39615026200016],[-119.60186698699994,34.41994118100018],[-119.459166961,34.37313209300015],[-119.28228510399993,34.27002300200007],[-119.23025781399991,34.15959572000014],[-119.13058506499988,34.10025935600015],[-118.80861227799994,34.00126845400018],[-118.74399408799997,34.03248664300014],[-118.54531223599997,34.03859574600011],[-118.44053948399994,33.938023014000066],[-118.39146673999994,33.84018664100017],[-118.39941218799993,33.73659572100007],[-118.28603943899992,33.70685027000019],[-118.18316669899997,33.763268464000134],[-118.09629395499991,33.73832301200008],[-117.92942118999997,33.60695936800005],[-117.78397570599998,33.540932097000166],[-117.469711997,33.29529572200005],[-117.3286574149999,33.12201389100005],[-117.27976648999999,33.0116320620001],[-117.25158465499999,32.876104775000044],[-117.28077556599999,32.822268404000056],[-117.21609882099995,32.72800991399998],[-117.12893916699988,32.68425930400008],[-117.12186463699993,32.477692732000094],[-117.03376764899997,32.28001308900008],[-116.93410464099992,32.240105172000085],[-116.88289657699983,32.12015225800013],[-116.88180558899995,32.03222592599997],[-116.755699688,31.956520577000163],[-116.74094368199997,31.903624230000162],[-116.60728468099984,31.844519072000082],[-116.61343364499993,31.774746434000065],[-116.67675758199994,31.705822714000135],[-116.54080160399985,31.699894864999976],[-116.35970253899984,31.565448467000124],[-116.21130362599996,31.5578995570001],[-116.15630358899989,31.461023029000103],[-116.06700161899988,31.419234548000134],[-115.96620168899983,31.251027018000116],[-115.83339663599986,31.20164000600016],[-115.73549667699996,30.953771539000115],[-115.57467662099998,30.831377815000053],[-115.59560355099995,31.006410561],[-115.55037664599996,31.10957619900006],[-115.58123763999998,31.25561409800008],[-115.73431365499994,31.328123428000026],[-115.69355765699999,31.37947465500008],[-115.55961568199984,31.34544580400012],[-115.51533459099994,31.430732843000158],[-115.50940657299998,31.500293587000044],[-115.56580353799995,31.595574536000072],[-115.64707162199988,31.65199145000014],[-115.67708554099994,31.745519240000135],[-115.77914459999988,31.799043727000026],[-115.84879268299989,31.78477119000013],[-115.97516663699997,31.864459620000105],[-116.01784561199992,32.01482056900005],[-116.10083768499993,32.05110431900016],[-116.280090552,32.19502863800005],[-116.15406763199991,32.293940460000044],[-116.13394938799996,32.38630266300015],[-116.16232263299992,32.475868830000024],[-116.07868163299997,32.60958566700003],[-116.20071825399998,32.61097607600004],[-116.25004726599991,32.73288871300019],[-116.3445579729999,32.840101526000126],[-116.40531417699998,32.77005731400004],[-116.50914750399994,32.71525473500003],[-116.63455503299997,32.75277206100009],[-116.6776307859999,32.86924275300015],[-116.62627480799989,32.908956681],[-116.73056150099995,33.12548632600004],[-116.88775073599999,33.19278954700013],[-116.9155937569999,33.311780825000085],[-116.98280761799987,33.34975401900016],[-117.01410311899997,33.46287465800009],[-116.85770034099988,33.42926338000012],[-116.81678189999985,33.46500659300017],[-116.86805473199996,33.54442106100004],[-116.8829685909999,33.68415912200015],[-116.8312805199999,33.76702458200009],[-116.95367169599984,33.84886458400007],[-116.87135762999998,33.906673436000176],[-116.76509846799996,33.89922425800006],[-116.76672166599997,33.93335123000003]]]]},"properties":{"objectid":90,"eco_name":"California coastal sage and chaparral","biome_num":12,"biome_name":"Mediterranean Forests, Woodlands & Scrub","realm":"Nearctic","eco_biome_":"NE12","nnh":4,"eco_id":422,"shape_leng":28.8721687044,"shape_area":3.17225841169,"nnh_name":"Nature Imperiled","color":"#FF7F7E","color_bio":"#FE0000","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":32967.87207353293,"percentage":0.9980000494337853}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-118.92979209499993,34.91556033500012],[-118.83720030899991,34.9295439280001],[-118.62193077499995,35.06632091800009],[-118.66286517099991,35.231674904000045],[-118.5752681969999,35.227240336000136],[-118.57389133999993,35.381597030000194],[-118.66869005099994,35.43065727600015],[-118.67281116299995,35.51015214000006],[-118.41483582999996,35.60529140000017],[-118.30949835599989,35.72754043300006],[-118.38500241499986,35.79827148499999],[-118.42328559999999,35.884411957000054],[-118.50402973699994,35.88402512900018],[-118.48552597599996,35.7876499190001],[-118.5532495409999,35.67217986500003],[-118.55747631799994,35.60378478800004],[-118.6466699529999,35.55930578200008],[-118.67440446899997,35.67163072799997],[-118.58891252999996,35.7385039780001],[-118.67187593099993,35.82348881500019],[-118.63681868999998,35.906142793000186],[-118.7043142629999,36.07708213000018],[-118.76787430899998,36.11420502500016],[-118.73897543399994,36.249743415000125],[-118.84929940699993,36.270629270000086],[-118.8658025869999,36.33286064600003],[-118.77415145199996,36.35977465000008],[-118.84579416799988,36.434175523000135],[-118.89381604299996,36.55791789300008],[-118.98058759199989,36.6334213560001],[-118.97706267099994,36.68069975200018],[-119.14372446699997,36.796696935000114],[-119.11360293199994,36.91969124700012],[-119.38756055299984,37.01007880100019],[-119.46970014699986,37.097387032000086],[-119.44162758099998,37.178221308],[-119.61961905399988,37.24484241900012],[-119.61765923899992,37.34587647000012],[-119.93175791899995,37.47374425000015],[-119.99864099299998,37.561640644000136],[-120.12932644699998,37.60943710000015],[-120.06913982399988,37.65396665500009],[-120.18300423499988,37.70370999600016],[-120.26832022899998,37.79083160199997],[-120.23752356699987,37.84327691000004],[-120.31103552899992,37.97109695500012],[-120.41761213999985,38.00317628200003],[-120.40711415799996,38.09012632800011],[-120.49516352199998,38.10737785400016],[-120.51619863199988,38.16458256700014],[-120.61104791799988,38.18547183200019],[-120.681023128,38.26690041300003],[-120.702767038,38.47160309700013],[-120.75479108899992,38.53473848900006],[-120.7242349149999,38.585024596000096],[-120.80968455699997,38.63497648200007],[-120.77333332299997,38.70357312800019],[-120.8249654299999,38.797605229000055],[-120.9515714829999,38.92823512600012],[-121.02263550599992,38.96218516900012],[-121.00288489499991,39.06897376100005],[-121.1330356599999,39.16420541800005],[-121.17510484299999,39.249512943000184],[-121.19006726999993,39.368713270000114],[-121.25183919299985,39.436951370000145],[-121.35328170299994,39.472479878000115],[-121.31544321299992,39.54123384100012],[-121.41086540899988,39.59905675500016],[-121.48294381899996,39.71257609900016],[-121.60697535999998,39.73978719600018],[-121.632606351,39.84600396800005],[-121.75283362599998,39.894463653000116],[-121.74772523099989,40.07305138000015],[-121.65058365299984,40.13703493800011],[-121.78852312999999,40.230572645000166],[-121.820258578,40.301457584000104],[-121.76863807899997,40.36670815800005],[-121.87900344999991,40.42015170400015],[-121.88083289699995,40.54483180400018],[-121.91496859199992,40.67529985900018],[-122.02029715399988,40.74438488200008],[-122.15166434799988,40.715153575000045],[-122.4357857839999,40.73381505500009],[-122.53347896899993,40.63175772900007],[-122.49260655899997,40.59618885100019],[-122.55225222299998,40.51443884000008],[-122.76077170399992,40.45737479300004],[-122.80343642299994,40.48713184200005],[-122.92492905299997,40.44222322600007],[-122.94173089799983,40.31327476000013],[-122.85555639899991,40.201758426000026],[-122.77144887299988,40.15954868500012],[-122.69745422399996,40.06557540500006],[-122.67571344299995,39.97071115900013],[-122.68778885799992,39.84022424200003],[-122.63999644699993,39.76870731700018],[-122.74984291999994,39.74300483100018],[-122.75321182299996,39.65831438100008],[-122.65782159199995,39.61072489800006],[-122.63501336899992,39.55041889300003],[-122.70221316399994,39.329127689000074],[-122.61605476499989,39.2904697780001],[-122.69145223499999,39.22229467300019],[-122.80730310399997,39.31576767500013],[-122.86017989899995,39.398244953000074],[-122.94401896199997,39.39418183099997],[-122.81285182199997,39.24523911000017],[-122.6591121759999,39.14463244600012],[-122.77971288899994,39.12165245600016],[-122.82255885799998,39.18617010900016],[-122.93592237799999,39.19798606600017],[-123.02826519899992,39.27407503000006],[-123.24507519699995,39.27542798400009],[-123.21534325399995,39.1295534890001],[-123.26884421099993,39.06155700500011],[-123.411503848,39.03752690100015],[-123.27445715099992,38.895439743000054],[-123.2813753399999,38.83618993800019],[-123.2276211269999,38.710761327000114],[-123.08057917699995,38.61594906400012],[-122.95591283499988,38.60567062300015],[-122.8915070299999,38.38699122600002],[-122.98917844999988,38.35629475600007],[-123.00307699799987,38.29592312500006],[-122.90090424099998,38.165068577],[-122.75467660099991,38.032496012000024],[-122.70392739299996,38.049728201],[-122.62794824099996,37.96235441000016],[-122.50330414899992,37.88945040200002],[-122.48742235399999,38.10977769300007],[-122.39932234599996,38.14478679400008],[-122.26148595099988,38.05555043400011],[-122.38313141499987,37.97641405500008],[-122.32238594199998,37.90573223400003],[-122.30559501899995,37.79374131800006],[-122.16163134599998,37.66821404500013],[-122.10552222899992,37.499241308000194],[-122.37847682599994,37.60637766100001],[-122.41048594499995,37.80937767500018],[-122.51357686699998,37.78235039300017],[-122.49423139499993,37.66107765600003],[-122.24371493099989,37.388106211000036],[-122.12326244299993,37.34945068600007],[-121.979848426,37.169217397000125],[-121.78347935099993,37.07645161300013],[-121.778162281,37.006486843000175],[-121.86193121899998,36.93105945800005],[-121.78860392099995,36.80420490500012],[-121.84082209399992,36.63113216000005],[-121.62010953999993,36.512592062000124],[-121.48783858099995,36.42085095800019],[-121.25795767799991,36.20330670800013],[-121.1493456469999,36.135056391000035],[-121.02036257399999,36.019428204000064],[-120.87149762699994,35.85055079200009],[-120.78131069499995,35.690718795000066],[-120.76777660399995,35.62169046900016],[-120.83663963799995,35.532538535000185],[-121.01244368699997,35.582262332000084],[-121.17440066499995,35.68795762800016],[-121.29848555199999,35.6984866570001],[-121.1639037079999,35.63292302300016],[-121.00404002999994,35.460959381000066],[-120.90585819499995,35.44838665900005],[-120.83356726499994,35.34051392600003],[-120.894385447,35.24563209400009],[-120.78434905999995,35.176277549000076],[-120.65111267299994,35.14775028200006],[-120.63028539099992,35.08705027700012],[-120.67114901799994,34.90204116500013],[-120.616558097,34.86701389300009],[-120.63708536399997,34.757341153000084],[-120.60188535299994,34.709632060000104],[-120.64525807599995,34.57705931700008],[-120.5143762319999,34.52466841100011],[-120.44938290999994,34.44809204500001],[-120.22070518699991,34.48610129300005],[-120.19767237099984,34.526873629000136],[-119.95981967299997,34.57101589900009],[-119.91227926499994,34.54112519500012],[-119.77034103099993,34.54337120800011],[-119.79187135299998,34.631214574000126],[-120.09306529899999,34.81688690500016],[-120.04983517099998,34.85510967500011],[-120.13656713799992,34.92352908900011],[-120.0760899679999,35.030359373000124],[-119.99264451899995,35.01821289499998],[-119.91745776799996,34.96275892700004],[-119.78326954599993,34.920284425000034],[-119.73064474899996,34.874545848000025],[-119.44680430499994,34.787072314000056],[-119.37373805199996,34.92445250500009],[-119.11586085699997,34.95333525800004],[-118.92979209499993,34.91556033500012]],[[-122.13345849099989,40.20819757000004],[-121.9492135459999,40.01508898900005],[-121.75226277799999,39.664896247],[-121.58137333599996,39.62225176600009],[-121.60894484599999,39.58190398400018],[-121.51047065499995,39.50717022800018],[-121.51964880599996,39.40181486400013],[-121.26270048399994,38.900378372000034],[-121.29554729699998,38.776700225000184],[-121.14046012999995,38.656562849000125],[-121.1821728459999,38.48363526500003],[-121.05217442299988,38.297985638000114],[-121.05749021799988,38.19553318200013],[-120.99442972199995,38.1339082180001],[-120.980982929,37.96846467800003],[-120.84047195599993,37.86133433100014],[-120.71864390599995,37.71181882200017],[-120.61295776299994,37.675398373],[-120.55002189199996,37.70385932900018],[-120.32477073899997,37.5241700680001],[-120.30241049999995,37.38853759000011],[-120.23565695299988,37.36592023700007],[-120.15688505499998,37.25124365900007],[-120.05318099899989,37.18641392900008],[-119.87621478299997,37.02121858400005],[-119.74054837699993,37.01287028600012],[-119.695752546,36.9002184470001],[-119.51852828899996,36.85582234200018],[-119.30639297,36.69868531100019],[-119.23654854599994,36.60307823900007],[-119.23649875899991,36.52450137400018],[-119.130104771,36.4967572270001],[-119.05500837699992,36.36535459900017],[-119.09179288399997,36.27432812500018],[-118.96638432999987,36.16519499100002],[-118.92250773099994,36.06060694900009],[-118.97348932699992,36.03187426300019],[-118.91632863799998,35.88650726600014],[-118.91900661399995,35.72689634000017],[-118.8453604689999,35.5582185130001],[-118.82266864699989,35.45826190000008],[-118.66609903599988,35.30165629700002],[-118.70952089699995,35.214698587999976],[-118.79443095899995,35.15681718100018],[-118.72966639099985,35.081663224000124],[-118.75041900699989,35.020655457000146],[-118.85522611799996,34.933945133],[-118.97261809899999,34.93258836100006],[-119.02076342599997,35.033153676000154],[-119.26128074999991,34.978855805000194],[-119.39365141099995,35.03540701600008],[-119.41131071899991,35.11328925500004],[-119.47669363299991,35.13009747300009],[-119.46396795699997,35.21836542799997],[-119.34108514699989,35.28615600100005],[-119.49014833999996,35.33581725300019],[-119.77298706899995,35.38940117000004],[-120.09546086199998,35.651702280999984],[-119.98521081399997,35.75082978600017],[-119.88348264899992,35.76102365100007],[-119.89590109499989,35.877449828000124],[-119.95674310899989,36.00067600600016],[-120.19467156499996,36.131527606000134],[-120.2630777729999,36.239496471000166],[-120.26006168099997,36.29599690700019],[-120.39208724399998,36.392675067000084],[-120.42727690199996,36.476183695000145],[-120.68577400399988,36.65386945000017],[-120.714661617,36.74631643000009],[-120.77217036199994,36.784271993],[-120.79398727599994,36.86952015400004],[-120.94505930999992,37.03586959300003],[-121.07603006199992,37.06647047600018],[-121.05759321799997,37.12821505100004],[-121.18863171699996,37.46084970700019],[-121.27984278099996,37.5377201390001],[-121.56691366499996,37.69368775200013],[-121.58679955599996,37.772777764000125],[-121.68822997599995,37.89236405700018],[-121.68003694099991,38.00398784200007],[-122.02045892799993,38.05203343900013],[-122.10721119599992,38.02203283800009],[-122.12636931599997,38.19864522400019],[-121.96220808799995,38.18793948300004],[-121.90343609099989,38.21734762100016],[-121.83474192199992,38.08018296500006],[-121.71637350899994,38.111885879000056],[-121.71983541799995,38.217358811000054],[-121.87197840999988,38.226780630000064],[-121.977197075,38.362163765000105],[-121.99915543399993,38.61405523200011],[-122.07965102599991,38.67230981500006],[-122.03089101099994,38.79874617500013],[-121.90782435199998,38.70296539100008],[-121.87279035199992,38.76269679900008],[-122.00508850899996,38.90507219000011],[-122.13380701099993,38.93770738000012],[-122.15897201699994,39.02890477700009],[-122.28991910799994,39.138970831000165],[-122.28319461899997,39.327791360000106],[-122.29718441399996,39.49859451100019],[-122.27250238899995,39.64786579600019],[-122.34687114299993,39.80581256400012],[-122.31308337099995,39.82178105500003],[-122.36402432299997,39.95401102000011],[-122.31240916799993,40.051591857000176],[-122.32029181099989,40.132449538000174],[-122.19910587599992,40.21749026500004],[-122.13345849099989,40.20819757000004]]]},"properties":{"objectid":91,"eco_name":"California interior chaparral and woodlands","biome_num":12,"biome_name":"Mediterranean Forests, Woodlands & Scrub","realm":"Nearctic","eco_biome_":"NE12","nnh":3,"eco_id":423,"shape_leng":71.8610034675,"shape_area":7.33097827232,"nnh_name":"Nature Could Recover","color":"#FFA77F","color_bio":"#FE0000","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":72098.17383541772,"percentage":2.182548539722046}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-115.24959556999988,30.635747882000146],[-115.19845556699988,30.732288296000036],[-115.29271660599983,30.847183234000113],[-115.26219960599991,30.98836616800014],[-115.29991967899991,31.047596216000045],[-115.39902461999998,31.097473401000173],[-115.47854658499995,31.274654429000122],[-115.58123763999998,31.25561409800008],[-115.55037664599996,31.10957619900006],[-115.59560355099995,31.006410561],[-115.57467662099998,30.831377815000053],[-115.52776361199989,30.762887105000175],[-115.45777153499989,30.80882546600003],[-115.36131259299992,30.664211652000176],[-115.24959556999988,30.635747882000146]]],[[[-115.67708554099994,31.745519240000135],[-115.68372367299997,31.82609967200017],[-115.74462859299996,31.859332745000188],[-115.78961963199998,32.007393868000065],[-115.77711466999995,32.09185998200013],[-115.87153664199997,32.25297172899997],[-115.85279068299997,32.42457024200013],[-115.90464767399999,32.48878534300013],[-116.01107068699997,32.52946406000018],[-116.07868163299997,32.60958566700003],[-116.16232263299992,32.475868830000024],[-116.13394938799996,32.38630266300015],[-116.15406763199991,32.293940460000044],[-116.280090552,32.19502863800005],[-116.10083768499993,32.05110431900016],[-116.01784561199992,32.01482056900005],[-115.97516663699997,31.864459620000105],[-115.84879268299989,31.78477119000013],[-115.77914459999988,31.799043727000026],[-115.67708554099994,31.745519240000135]]],[[[-116.76509846799996,33.89922425800006],[-116.87135762999998,33.906673436000176],[-116.95367169599984,33.84886458400007],[-116.8312805199999,33.76702458200009],[-116.8829685909999,33.68415912200015],[-116.86805473199996,33.54442106100004],[-116.81678189999985,33.46500659300017],[-116.85770034099988,33.42926338000012],[-117.01410311899997,33.46287465800009],[-116.98280761799987,33.34975401900016],[-116.9155937569999,33.311780825000085],[-116.88775073599999,33.19278954700013],[-116.73056150099995,33.12548632600004],[-116.62627480799989,32.908956681],[-116.6776307859999,32.86924275300015],[-116.63455503299997,32.75277206100009],[-116.50914750399994,32.71525473500003],[-116.40531417699998,32.77005731400004],[-116.3445579729999,32.840101526000126],[-116.49110058199994,33.003522788000055],[-116.5718529959999,33.15813678800009],[-116.47430612299996,33.2668264400001],[-116.57784325599994,33.416376952000064],[-116.5549988269999,33.51509517300008],[-116.44949901099994,33.484124422000036],[-116.4010570769999,33.57052506100018],[-116.52462321399997,33.651005876000056],[-116.58320415399993,33.75245637400013],[-116.58330515099993,33.819750326000076],[-116.76509846799996,33.89922425800006]]],[[[-118.92979209499993,34.91556033500012],[-119.11586085699997,34.95333525800004],[-119.37373805199996,34.92445250500009],[-119.44680430499994,34.787072314000056],[-119.73064474899996,34.874545848000025],[-119.78326954599993,34.920284425000034],[-119.91745776799996,34.96275892700004],[-119.99264451899995,35.01821289499998],[-120.0760899679999,35.030359373000124],[-120.13656713799992,34.92352908900011],[-120.04983517099998,34.85510967500011],[-120.09306529899999,34.81688690500016],[-119.79187135299998,34.631214574000126],[-119.77034103099993,34.54337120800011],[-119.91227926499994,34.54112519500012],[-119.95981967299997,34.57101589900009],[-120.19767237099984,34.526873629000136],[-120.22070518699991,34.48610129300005],[-120.05962725799998,34.497900267000034],[-119.76865768999994,34.48366968100015],[-119.66949977699994,34.45361294400004],[-119.37754659699993,34.441762103000144],[-119.20104243599997,34.47695610400001],[-119.040601359,34.42476830700008],[-118.81974441299997,34.45746434300014],[-118.7553546559999,34.508386708000046],[-118.585636793,34.494932253000115],[-118.48597239299994,34.463933193000116],[-118.39052676999995,34.47437269600016],[-118.41184209499994,34.37808948900016],[-118.48812849399991,34.341350766000176],[-118.28802880299992,34.288566171000184],[-118.26880028099987,34.25238154200008],[-118.04834449299989,34.171847998000146],[-117.8943557369999,34.14845083100005],[-117.46516020399997,34.17236328600018],[-117.36375750299993,34.21189086800007],[-116.97469905199989,34.05482332100013],[-116.87149251699992,33.95088817400011],[-116.76672166599997,33.93335123000003],[-116.64692662199997,33.96444397300007],[-116.65954063799995,34.006295542000146],[-116.5382402269999,34.15686470700007],[-116.57481402699995,34.269887437000136],[-116.76627838499996,34.33346320200019],[-116.88303454399994,34.34545419300014],[-117.03635744199994,34.39590978000018],[-117.1765178629999,34.41538384600011],[-117.28511564099989,34.30409666700018],[-117.52577084199999,34.32102090500018],[-117.71805214699998,34.42784066400014],[-117.87290051399998,34.41034755200013],[-118.20628002799992,34.568882094],[-118.19337414999995,34.60342644800005],[-118.5327745489999,34.749373569000056],[-118.68405316399992,34.77572967400016],[-118.74442004599996,34.81712873100014],[-118.84537577099991,34.827552524000055],[-118.92979209499993,34.91556033500012]]]]},"properties":{"objectid":92,"eco_name":"California montane chaparral and woodlands","biome_num":12,"biome_name":"Mediterranean Forests, Woodlands & Scrub","realm":"Nearctic","eco_biome_":"NE12","nnh":3,"eco_id":424,"shape_leng":21.9419341075,"shape_area":1.93039358438,"nnh_name":"Nature Could Recover","color":"#A93800","color_bio":"#FE0000","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":19891.178516934546,"percentage":0.6021437203747797}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-44.47125661799993,-22.680579375999912],[-44.44112753199988,-22.620309301999896],[-44.611972511999966,-22.573864840999875],[-44.74243146999987,-22.60254737799994],[-44.802093521999836,-22.65059881699989],[-44.82320753599993,-22.742156189999946],[-44.71030849699997,-22.700700134999977],[-44.63345348599995,-22.78319683799998],[-44.5200275599999,-22.750771612999927],[-44.47125661799993,-22.680579375999912]]],[[[-45.90411748599996,-22.370965451999894],[-46.04668058399989,-22.397944115999962],[-46.1549415799999,-22.312371756999937],[-46.2417485929999,-22.34809174099985],[-46.27638647299989,-22.537649821999878],[-46.18955649399993,-22.62647419099983],[-46.03514456999994,-22.59668675099988],[-46.02918654599989,-22.78210199399996],[-45.96196753799995,-22.781254917999888],[-45.76833350499993,-22.640952252999966],[-45.75162552199993,-22.556393768999897],[-45.896842496999966,-22.578964725999867],[-45.95073360799984,-22.561080593999918],[-45.90411748599996,-22.370965451999894]]],[[[-42.63901147399997,-22.256130695999957],[-42.679935613999874,-22.171971190999898],[-42.75279245699983,-22.241011585999843],[-42.63901147399997,-22.256130695999957]]],[[[-44.40663147399994,-21.87414121599994],[-44.493133552999836,-21.972799736999832],[-44.65797457599996,-21.905696398999964],[-44.78048748999987,-21.98835906399995],[-44.81088261799988,-22.04411514899988],[-44.944351517999905,-22.020848158999968],[-45.109981612999945,-21.94019681599991],[-45.188594476999924,-21.962668362999977],[-45.29730256499988,-21.858282990999953],[-45.35680351599996,-21.86782846999995],[-45.40965258899985,-22.033318753999822],[-45.30430949999993,-22.109970587999896],[-45.18413161699988,-22.111200548999875],[-45.212951616999874,-22.19405515899996],[-45.16422660799998,-22.329936705999955],[-45.22641747999995,-22.37584036599992],[-45.44742546799995,-22.458532869999942],[-45.574466621999875,-22.545933489999925],[-45.615173501999834,-22.67236259699996],[-45.54704254299992,-22.687330998999983],[-45.38566961699996,-22.611929912999983],[-45.172866505999934,-22.470741279999856],[-45.062625535999985,-22.4248776849999],[-44.870571491999954,-22.42278572999993],[-44.78541152299988,-22.441487766999956],[-44.678649545999974,-22.41843300699992],[-44.39607262299995,-22.23778857699989],[-44.14046849699997,-22.00630203599991],[-44.13068346299991,-21.926592315999926],[-44.317623540999875,-22.016761477999978],[-44.358577519999926,-21.97336601799998],[-44.31917955799992,-21.894938058999912],[-44.23634355499996,-21.761640316999944],[-44.23627448899998,-21.680113567999854],[-44.40663147399994,-21.87414121599994]]],[[[-45.85968049099995,-21.936386737999953],[-45.850482525999894,-21.763857330999883],[-45.94128049799997,-21.648039544999904],[-46.08686057799997,-21.623071866999965],[-46.1116795609999,-21.692154004999963],[-46.10854355499998,-21.91166833799997],[-46.195312513999966,-21.906623605999926],[-46.39342449599985,-21.680283720999967],[-46.520233470999926,-21.647652468999922],[-46.57815946299996,-21.684298652999928],[-46.54298346499996,-21.79363253299988],[-46.40003546999998,-21.93874171699997],[-46.24391950599994,-21.938312731999815],[-46.252525540999955,-22.03834739299998],[-46.19532760199996,-22.071936528999913],[-46.04744752799985,-22.053771603999962],[-45.91416554399996,-21.990992992999963],[-45.85968049099995,-21.936386737999953]]],[[[-44.72034850799997,-21.5956724319999],[-44.63891261899994,-21.571930522999878],[-44.54351449099988,-21.601483940999913],[-44.48319261599994,-21.564725103999933],[-44.46195253799988,-21.47542598399997],[-44.5443875499999,-21.379602054999964],[-44.819076598999914,-21.36513388399993],[-44.78494649499993,-21.456403086999956],[-44.83783362199995,-21.592881425999906],[-44.79867957299996,-21.63367011299988],[-44.72034850799997,-21.5956724319999]]],[[[-43.7673185729999,-21.362775048999936],[-44.01200459899991,-21.36402814399986],[-43.912147465999965,-21.47037001999996],[-43.922092593999935,-21.61037546299991],[-43.83004756199995,-21.643202683999903],[-43.81904547599993,-21.54305503499984],[-43.742179567999926,-21.460240657999975],[-43.7673185729999,-21.362775048999936]]],[[[-42.51111251699996,-20.735249785999827],[-42.284816552999985,-20.53682616499998],[-42.14487447699997,-20.464681112999926],[-42.125637505999975,-20.38226772599984],[-42.24607858199988,-20.376518913999973],[-42.301120527999956,-20.46285218199995],[-42.45514252599992,-20.49941622299997],[-42.520812557999875,-20.56812637099995],[-42.54757345999997,-20.72787823699997],[-42.51111251699996,-20.735249785999827]]],[[[-44.21298956199996,-20.467519057999937],[-44.27146155099996,-20.370587375999833],[-44.33431258099995,-20.40520044599998],[-44.27955662499994,-20.64497082099996],[-44.37643047099988,-20.631335643999932],[-44.43758047799986,-20.695307],[-44.38786657199995,-20.76547207899995],[-44.254623479999964,-20.743453321999937],[-44.10845549399994,-20.861240854999892],[-43.97241955199996,-20.845888728999853],[-43.88181352599997,-20.875663092999957],[-43.85647151199987,-20.815613293999945],[-43.9249615519999,-20.753110782999897],[-44.05525253699989,-20.743287359999954],[-44.09816754599984,-20.666014762999964],[-44.11109160299998,-20.526210484999865],[-44.21298956199996,-20.467519057999937]]],[[[-41.88467757099983,-20.31224061299997],[-41.92275957499993,-20.310316798999963],[-41.963455558999954,-20.444966037999848],[-41.90153156699989,-20.559854773999973],[-41.77259459399994,-20.587856029999898],[-41.7320174649999,-20.459165484999914],[-41.79646658999991,-20.342127964999918],[-41.88467757099983,-20.31224061299997]]],[[[-43.51861560299989,-20.428602048999892],[-43.512439480999944,-20.369437546999904],[-43.41656458999989,-20.15893141299989],[-43.45948747799997,-20.08165998899989],[-43.61208756999997,-20.018520284999965],[-43.64412353899996,-20.128698055999962],[-43.63521961099991,-20.447583203999955],[-43.57588545899989,-20.476540499999942],[-43.59233460899998,-20.565618505999907],[-43.516624564999915,-20.587025215999972],[-43.449508486999946,-20.543158524999967],[-43.51861560299989,-20.428602048999892]]],[[[-43.838821570999926,-20.416240752999954],[-43.797466601999986,-20.30110123099996],[-43.77283855899992,-20.145977013999982],[-43.804698507999944,-20.052341431999935],[-43.97049355899986,-20.010193031999904],[-43.87940557299993,-20.25507485999998],[-43.867832510999904,-20.413057976999937],[-43.838821570999926,-20.416240752999954]]],[[[-43.52413156599994,-19.031576666999968],[-43.55690346599988,-18.85880183699993],[-43.46568254299996,-18.650777416999915],[-43.470573550999916,-18.607978748999926],[-43.61323555499985,-18.59193193099992],[-43.69768155299988,-18.699774334999972],[-43.65060057099987,-18.858608885999956],[-43.579788575999885,-19.002525324999965],[-43.58124149499997,-19.14299127099997],[-43.54928548899983,-19.279648310999903],[-43.50048856399991,-19.334005120999848],[-43.43524148199998,-19.299282080999944],[-43.42066551999983,-19.21934973799995],[-43.52413156599994,-19.031576666999968]]],[[[-43.37189055499988,-18.34314866199992],[-43.29294559999994,-18.35745673899993],[-43.206718614999886,-18.22892042099994],[-43.232879540999875,-18.184842170999843],[-43.32608060399991,-18.20047408599993],[-43.37189055499988,-18.34314866199992]]],[[[-42.954807555999935,-17.975212783999893],[-42.98137651199988,-18.055450060999817],[-42.897952602999965,-18.085557186999893],[-42.739570507999986,-18.082759307999936],[-42.67367148199992,-18.059328702999835],[-42.6181065049999,-17.982028277999916],[-42.74326357399991,-17.940271814999903],[-42.91048455499998,-17.952531353999973],[-42.954807555999935,-17.975212783999893]]],[[[-43.505939482999906,-18.426705507999884],[-43.5198095209999,-18.297754453999914],[-43.5747145069999,-18.221035899999947],[-43.67407258199995,-17.99918234499995],[-43.660865551999905,-17.812881806999883],[-43.674583542999926,-17.77370395299988],[-43.79361746399985,-17.884695438999927],[-43.81414759499995,-18.0530392579999],[-43.81871757599998,-18.27987937499995],[-43.84504647499995,-18.40564798799994],[-43.80823147999996,-18.460555656999873],[-43.65874057199994,-18.42872940299992],[-43.58024253999997,-18.491755614999875],[-43.48326861399994,-18.513452505999908],[-43.505939482999906,-18.426705507999884]]],[[[-44.24585751899991,-17.873914969999873],[-44.22452155199994,-17.82763680599993],[-44.21971855299989,-17.66210796499996],[-44.28657160699993,-17.710489817999928],[-44.30541647299998,-17.799678464999886],[-44.24585751899991,-17.873914969999873]]],[[[-43.305568578999896,-16.81591493999997],[-43.37747558499996,-16.860002241999894],[-43.28969157799992,-16.923875193999947],[-43.25947950999995,-17.071934137999847],[-43.20384948999998,-17.078422736999983],[-43.185005462999925,-16.989232245999858],[-43.22659646599993,-16.800876967999955],[-43.305568578999896,-16.81591493999997]]],[[[-42.63446060399991,-15.582952907999925],[-42.61672248499997,-15.481958349999957],[-42.71136858899996,-15.506716647999951],[-42.716598560999955,-15.70623393999989],[-42.65672645899997,-15.650110727999902],[-42.63446060399991,-15.582952907999925]]],[[[-42.562347569999986,-15.078182459999937],[-42.63988855699989,-15.041452624999977],[-42.63341856599993,-15.15104869199996],[-42.562347569999986,-15.078182459999937]]],[[[-43.05031950999995,-15.824170334999849],[-42.960239531999946,-15.85772443399992],[-42.90345750199998,-15.802128946999915],[-42.89823155299996,-15.598182992999966],[-42.84634354899998,-15.317708922999941],[-42.888050557999975,-15.131009069999948],[-42.841735513999936,-14.95317039799994],[-42.846603555999934,-14.893380270999955],[-42.91944849699996,-14.855233725999938],[-43.00188451499997,-14.947990716999925],[-43.064613504999954,-15.06472632099991],[-43.069999547999885,-15.135129780999932],[-42.9553035969999,-15.129941047999864],[-42.9207994919999,-15.232206468999948],[-42.9817424659999,-15.343423259999895],[-42.948242513999844,-15.459835657999975],[-42.98129252599989,-15.601524690999952],[-43.070976542999915,-15.53375012999993],[-43.116783475999966,-15.545741280999891],[-43.114559589999885,-15.76168039699985],[-43.05031950999995,-15.824170334999849]]],[[[-41.24888255399992,-13.595754536999948],[-41.2110174739999,-13.213569255999971],[-41.28207053199992,-13.18968166999997],[-41.37281754199995,-13.32295778699995],[-41.379489536999984,-13.497632289999956],[-41.32167452199991,-13.583272374999979],[-41.24888255399992,-13.595754536999948]]],[[[-41.381187542999896,-12.847803788999954],[-41.411437496999895,-12.740506039999957],[-41.40950747999989,-12.602251240999976],[-41.473361488999956,-12.625616633999982],[-41.561714459999905,-12.75877976199996],[-41.57123948699996,-12.84300816599989],[-41.50859448299997,-12.887663928999928],[-41.381187542999896,-12.847803788999954]]],[[[-41.739322461999905,-13.133845454999914],[-41.74507948799993,-12.869167415999982],[-41.82563058399995,-12.598891438999829],[-41.79664260999982,-12.477530700999978],[-41.71783461499996,-12.304050617999906],[-41.693210594999925,-12.148924053999849],[-41.71581658799994,-12.13185514599985],[-41.87984858899995,-12.20284936299987],[-41.92094757499984,-12.322504215999913],[-41.90323661299993,-12.462081846999979],[-41.9724235249999,-12.594361857999957],[-41.97348450599992,-12.741600045999974],[-41.907855544999904,-12.87896166999991],[-41.880596589999925,-13.058860445999926],[-41.90830950899988,-13.243567081999913],[-41.841598611999984,-13.358231517999855],[-41.775997478999955,-13.371049626999934],[-41.7264934559999,-13.230624920999958],[-41.66400552999988,-13.1484765699999],[-41.739322461999905,-13.133845454999914]]],[[[-42.251914565999925,-11.835102413999948],[-42.376556483999934,-11.757081981999931],[-42.4208035449999,-11.82253458799994],[-42.36442149899989,-11.883332386999825],[-42.256088585999976,-11.887376990999883],[-42.297878575999846,-12.036501776999955],[-42.24672348599995,-12.13150930899991],[-42.136779569999874,-12.121893086999819],[-42.01554858399993,-12.141191580999816],[-41.985122610999895,-12.04467832399996],[-42.03713651099997,-12.01764500999991],[-42.14594652199992,-11.798495959999968],[-42.251914565999925,-11.835102413999948]]],[[[-42.52879347099997,-11.273776247999933],[-42.55919647799993,-11.342073335999942],[-42.50545154699989,-11.523009121999962],[-42.46023151399993,-11.557150792999892],[-42.42667758199991,-11.390290066999967],[-42.456008543999985,-11.298802598999941],[-42.52879347099997,-11.273776247999933]]]]},"properties":{"objectid":94,"eco_name":"Campos Rupestres montane savanna","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Neotropic","eco_biome_":"NO07","nnh":1,"eco_id":566,"shape_leng":38.8940645507,"shape_area":2.26341528223,"nnh_name":"Half Protected","color":"#FCB25D","color_bio":"#FEAA01","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":26451.471857906385,"percentage":0.12338006629288983}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-109.96125772199997,49.91692469100008],[-110.21478211999994,49.93345107000016],[-110.47754557999991,49.90294911900014],[-110.72775348599993,49.83650220500016],[-110.88893152899993,49.72365462000005],[-110.85384392399999,49.61421541900006],[-110.7611622849999,49.634994525000195],[-110.72667821199997,49.51545066400013],[-110.6070928279999,49.47456670900016],[-110.56784782099993,49.36258020500003],[-110.4409473529999,49.33357087900015],[-110.1889810859999,49.338631550000116],[-110.00028071999998,49.42257909600005],[-109.9561223689999,49.39207298700006],[-109.75768198599991,49.3803619250001],[-109.63803839499991,49.41566463600009],[-109.4550177029999,49.429864149000196],[-109.19844731899997,49.39452755700012],[-108.90033658999994,49.44386992900013],[-108.77848096199983,49.51763497400003],[-108.77686149199997,49.51859918200006],[-108.77686150399995,49.51859920300012],[-108.77806055099995,49.520141995000074],[-108.64482048799994,49.62030703100015],[-108.53817694799994,49.80707508600011],[-108.56144644999995,49.89487534000011],[-108.83262779399996,49.92665608300007],[-108.93256330299994,49.86535855600005],[-109.09903050299988,49.855556819000185],[-109.22647906099996,49.910691150000105],[-109.52120270599994,49.83440547500004],[-109.95982375499989,49.91622768500014],[-109.96125772199997,49.91692469100008]]],[[[-99.47739395799994,50.41860931400004],[-99.65907282799998,50.3500529800001],[-99.79727878899996,50.42911020200006],[-100.117721669,50.399597013000175],[-100.36251061099989,50.48345909000005],[-100.50496688599986,50.61564071200013],[-100.65325199699998,50.6177988230001],[-100.73721364799997,50.666547208000054],[-100.87616777699986,50.68925291100015],[-100.94197140699993,50.76715980100016],[-101.13938153399994,50.84456340600019],[-101.13387328099992,50.99311479200003],[-101.39894828699994,51.08623891100012],[-101.51934029699999,51.24235409700003],[-101.48999749399991,51.292120929000134],[-101.77950972399992,51.342764808000084],[-101.8823700609999,51.31021290800004],[-102.04898103299996,51.32271202700014],[-102.18234260899999,51.41093706900017],[-102.20870996199989,51.52844258200014],[-102.07717891899989,51.55266411400015],[-102.02961798499996,51.48666496200008],[-101.91738201599992,51.53455482700008],[-102.01853932699998,51.64111777300019],[-102.14399774899994,51.71020258000004],[-102.348297501,51.724037957],[-102.47136719999992,51.869210064000185],[-102.56889286299997,51.94577341400003],[-102.68363957899999,51.937861429000066],[-102.68052719699995,51.867332712000064],[-102.84652702999995,51.81515244600013],[-103.24984000199993,51.86932477800008],[-103.49220274899989,51.932305848],[-103.51207763499997,52.091342840000095],[-103.5680927219999,52.20769503100007],[-103.70255302099997,52.34679948100006],[-103.8029487099999,52.39549053600007],[-104.03649139999999,52.403064507000124],[-104.49613895299996,52.55382049000008],[-104.6250693749999,52.429978807],[-104.73298640999997,52.45753760800005],[-104.77131653299989,52.56660855200016],[-104.945036787,52.593195115000185],[-105.03433122899986,52.53941978100005],[-105.03147126999994,52.46107673100005],[-105.40474668999997,52.48731861400012],[-105.36225885599993,52.624065850000136],[-105.36379302499995,52.73256832900006],[-105.4136448839999,52.78072392900009],[-105.60241856399995,52.730640550000146],[-105.76272578899989,52.724443840000106],[-105.86875273899994,52.78051338900008],[-105.97449362799989,52.71307898800018],[-106.02541685399996,52.62486655000015],[-106.16731521699995,52.58733481600018],[-106.23838727999993,52.664678253000034],[-106.27705841999995,52.78359924200009],[-106.40824926699986,52.84390635200009],[-106.61202635899997,52.874942163000014],[-106.64142191199988,53.00950360500019],[-106.79211159899995,53.04349006800004],[-107.091281359,52.96416437200003],[-107.17154016599994,52.894074498000066],[-107.33395452399992,52.897325264000074],[-107.29064924799991,53.02692096200008],[-107.32639434599992,53.08807899900012],[-107.48195569099994,53.0363254290001],[-107.633162874,53.08326914000014],[-107.76892945599997,53.023671739000065],[-107.8965829309999,53.12057315800007],[-108.04457888199994,53.2775345710001],[-108.15413770799995,53.26711279700004],[-108.20189789999995,53.17000567000008],[-108.54387646599997,53.24965213200011],[-108.68762279499998,53.083272695000176],[-108.5564426659999,53.04637872300003],[-108.56468117599997,52.943857573],[-108.81257534399987,53.012824319000174],[-109.06294254799991,53.22597119700015],[-109.1015160209999,53.29175943100006],[-109.22849352599991,53.32950033800017],[-109.30769370099989,53.39427694900007],[-109.45675633199994,53.370420331000105],[-109.56729938699988,53.42958216300002],[-109.54460167399998,53.477746263000085],[-109.63123331599996,53.57775234500019],[-109.75228863899997,53.600349999000116],[-109.83090197799999,53.54686707100018],[-110.0000233689999,53.59770207100007],[-110.07895579699994,53.589380679000044],[-110.3359379929999,53.6688415480001],[-110.63143326699998,53.849011915],[-110.88375044799989,53.872728760000086],[-110.89256276299994,53.74663092200018],[-110.98000395399993,53.69102801300005],[-111.00428546299992,53.473646517000134],[-111.31239409099999,53.537105982000185],[-111.37901314399994,53.614728580000076],[-111.47049667599993,53.55262427400004],[-111.61710216499984,53.58782873700005],[-111.60592745899999,53.806351187000075],[-111.67520189599992,53.841857214000186],[-111.88746589899989,53.76463335400001],[-112.01967766399997,53.87624921700018],[-112.02472725299998,53.953206454],[-112.16352236499989,53.98731079200007],[-112.23600636299989,54.05707417500014],[-112.35588853799999,54.01525980200012],[-112.36025185099999,53.939019843000096],[-112.5039979039999,53.96050315400015],[-112.64862760799991,53.94091582200002],[-112.77632982799992,53.98502710200012],[-112.95082823399991,53.891662042000064],[-113.15500761299995,54.00377321000008],[-113.24461209299994,53.96968776700004],[-113.37248139199994,54.008575578000034],[-113.49762903599998,54.11262296800004],[-113.65779849299992,54.112835137000104],[-114.01098726899988,53.997559044000184],[-114.03891624399995,53.889083498000105],[-113.970901546,53.809851411000125],[-113.9941085459999,53.734606300000166],[-113.89511113599997,53.64591208600007],[-114.02039271499996,53.580283467000186],[-114.08497628999999,53.416897845],[-114.05728992899998,53.31059488000017],[-113.83072637399994,53.11577999300005],[-113.87191878999994,52.92393535500008],[-113.94320600899994,52.890783918000125],[-113.89877303599997,52.81493898700012],[-113.88491847099993,52.634448952000184],[-113.8056321009999,52.568721457000095],[-113.92505707499993,52.53975369900013],[-114.0742053599999,52.563710796000066],[-114.10630752199995,52.38776427300019],[-114.09435248599993,52.170559582000124],[-114.15440570299995,52.16578457100019],[-114.3073806239999,52.24340039000015],[-114.379807385,52.163854055000115],[-114.36798901599991,52.06759070700008],[-114.1589962939999,51.939963761000115],[-114.31860166699994,51.877425190000054],[-114.490494,51.70429403100013],[-114.60604221799991,51.37696588500012],[-114.56228667999989,51.151759196000114],[-114.48959409999992,51.03675605800015],[-114.34969444799992,50.943853368000134],[-114.36456275799992,50.819105207000064],[-114.4481755519999,50.73932418000015],[-114.33080263199992,50.71839842800017],[-114.40178076599994,50.58204382300005],[-114.55214862899993,50.50660332900003],[-114.53531475899996,50.40788168800003],[-114.46122717699996,50.30551875200018],[-114.28003564499983,50.24742346700009],[-114.22091662499992,50.188259471000094],[-114.22757770899995,50.093094908000126],[-113.95587141099992,50.1232667860001],[-113.90918759699997,50.22981818800014],[-114.22337368299992,50.42903171900002],[-114.25129665199995,50.50477294300009],[-114.16902961299996,50.57057775599998],[-113.89167059299996,50.65526515300013],[-113.92511757199998,50.80855725400011],[-114.01679262599998,50.83590874600014],[-114.09441357599997,50.99892134000015],[-114.08109255199997,51.09311884400012],[-114.14082367099996,51.23861409900019],[-114.09697759999989,51.29466807700004],[-114.05812865199994,51.541704053000046],[-113.86628767499985,51.69135790600012],[-113.6542816839999,51.727594549000116],[-113.54360166999993,51.68884383800014],[-113.34674060299989,51.532435010000086],[-113.23453444699987,51.49514020000004],[-113.16254969099987,51.57894137300019],[-113.22519917799991,51.72234261400018],[-113.21520854699992,51.77603173700004],[-113.05818696299997,51.808238111000094],[-112.90334410299994,51.78847666900015],[-112.58071218499998,51.934437164000144],[-112.54340199899997,52.124064194000084],[-112.2693328549999,52.29133639800017],[-111.98351154599993,52.4147096640001],[-111.81867259199998,52.43562117700003],[-111.63854127899992,52.3455698570001],[-111.30151309499996,52.24862103300018],[-111.19664083499993,52.25293894200013],[-111.07718729199996,52.337678648000065],[-110.79560808199989,52.36724009900007],[-110.72608266799989,52.34771092600005],[-110.79591395699998,52.198530514000026],[-110.61364091699988,52.17607644300011],[-110.5123673039999,52.121976523000114],[-110.49079119299995,52.10783742400008],[-110.30613801399994,52.077677971000185],[-110.16394196899995,52.11452188100009],[-110.05564021799984,52.094732773000146],[-109.97911074699994,52.169174357000145],[-109.979148222,52.17011449800003],[-109.97914817999992,52.17011449000006],[-109.97650015699992,52.16963020500003],[-109.89832478499994,52.3121887640001],[-109.78251698999998,52.2821964580001],[-109.83329616399993,52.43458739600004],[-109.75206642799998,52.53386140600014],[-109.44535724999997,52.492365708000136],[-109.29593669399992,52.53163375500014],[-109.26734031499996,52.621714115000145],[-109.074226566,52.657803612000066],[-109.03502695699996,52.60633774200005],[-108.88487889999988,52.587740515000064],[-108.82244877299996,52.53005338100007],[-108.56635155899988,52.57831474800008],[-108.528838684,52.51892406000019],[-108.56868839099997,52.43896906400005],[-108.56797714499993,52.437583311000026],[-108.55908990899991,52.41166297600006],[-108.55728091499998,52.409582544000045],[-108.33595178999997,52.43259864800018],[-108.16782333099997,52.381049611000094],[-108.0259403899999,52.377903002000096],[-107.96436408499994,52.30101189800007],[-107.7785044009999,52.24880756100015],[-107.58468564699996,52.41376306300003],[-107.44827355199999,52.34551775000011],[-107.24617776999997,52.34255842600004],[-107.14015129799992,52.38482468500018],[-106.91655751699983,52.34296355900011],[-106.73873213899998,52.34549816600014],[-106.64627189299989,52.31020513100003],[-106.6437307359999,52.309219371000154],[-106.55323099199995,52.298139375000176],[-106.44104803999988,52.35190882800009],[-106.35566757699996,52.27709585100007],[-106.24764235499993,52.35806878500006],[-106.17196598399994,52.365707062000126],[-106.06678722199996,52.30143937200012],[-105.78980179699983,52.38060668500003],[-105.64470631399996,52.352926275000186],[-105.47216021499986,52.284651829000154],[-105.31128659099988,52.28635249000007],[-105.30281056399997,52.2365953150001],[-105.39952110599995,52.14321103500009],[-105.45163801499996,52.02676594700017],[-105.38538349299995,51.85765781600003],[-105.26619670099984,51.71791775100007],[-105.18830949699998,51.74033060099998],[-104.85936709699996,51.71795109600009],[-104.73419930799986,51.737356553000154],[-104.65438022299992,51.81232328700003],[-104.44946975699997,51.74087392600012],[-104.55642741799988,51.630837767000116],[-104.60566796099982,51.49447751200006],[-104.70848060399987,51.377078799],[-104.52857262799989,51.0924657060001],[-104.44129191699994,51.049344565000126],[-104.2563923909999,51.016119490999984],[-104.38067592699991,50.859677067],[-104.52343034299997,50.829159829000105],[-104.69574742199995,50.722604092000154],[-104.58386187199989,50.59599535800004],[-104.20762593999996,50.421052895000116],[-104.18338029899996,50.32001158100019],[-104.12019360499988,50.28736785000012],[-104.06345373599993,50.08803943900011],[-103.88536075299999,50.006697932],[-103.89452308199992,49.873121714000035],[-103.89354701699989,49.87238395100019],[-103.88722324299988,49.73248103300017],[-103.88596388199994,49.728749801],[-103.87684665599994,49.66235815600004],[-103.7002798119999,49.47688063500016],[-103.68850797799996,49.38882245400015],[-103.29929293799995,49.19187453100011],[-103.27272458099998,49.127342197000075],[-103.32917303799996,49.07165344500004],[-103.53765676999996,48.99918889500003],[-103.66981047099995,48.999438956],[-103.57001448499994,48.90301158900019],[-103.45369163399994,48.94846187700006],[-103.36055889799991,48.909831581000105],[-103.35204860599998,48.78723846999998],[-103.07837613999999,48.847828102000165],[-102.6264001319999,48.78283686100002],[-102.41598957399998,48.726867544000186],[-102.28133535899997,48.65182352000011],[-102.09307335899996,48.50980587900017],[-101.97117485999996,48.47248648600009],[-101.88137477399988,48.36458954200009],[-101.74692049699996,48.2577734890001],[-101.61335271599995,48.21135084600019],[-101.37909683599997,48.067197262000036],[-101.22473639999998,47.99470091800009],[-101.18192012099996,47.9218656700001],[-101.03960201699994,47.94090001000012],[-100.40972510199998,47.682347924000055],[-100.37366425699992,47.583992750000164],[-100.18424370799994,47.59258431000012],[-100.09561100399992,47.62969441800004],[-100.04462113499994,47.553088516],[-99.95015990399997,47.58065217300009],[-99.90707516599991,47.49371251600007],[-99.70114259399998,47.477789861000076],[-99.57240807799991,47.417672267000114],[-99.19669015399984,47.31408643000003],[-99.02857026599992,47.140743576000034],[-98.9820359069999,47.05546147300009],[-99.00376325099995,46.98189276800014],[-98.95549022399996,46.78522341600012],[-98.8746694159999,46.65863613500005],[-98.80810195899994,46.183167093],[-98.84253209599996,46.05342944700004],[-98.80055200299995,46.001720214000045],[-98.9203696319999,45.82392838599998],[-98.96953294899993,45.64900843800012],[-98.96035073499996,45.55177176300009],[-99.02393905799988,45.42736216900005],[-99.01718169799989,45.29806713100004],[-99.04083952299999,45.11914245999998],[-99.08133479199984,45.06695658100017],[-99.21708605199996,45.03055551700015],[-99.13638221499997,44.934420876],[-99.19635974399995,44.79333243700006],[-99.37631332499996,44.74625202500016],[-99.62261981699999,44.6527160120001],[-99.58993008599992,44.55018201000013],[-99.40831249399997,44.49719724800019],[-99.10403459699995,44.455013829],[-99.00491411999997,44.34897130400009],[-98.82716049699991,44.49051856400001],[-98.60515160299997,44.13176019600007],[-98.54209398799998,43.98593062000015],[-98.57751544099995,43.76238114100016],[-98.48873375199997,43.666908350000085],[-98.28505624399997,43.58253107000007],[-98.2018616289999,43.523598079000124],[-98.14980950899997,43.41147343900013],[-97.86568520399999,43.12934943900018],[-97.8923111499999,43.02619739400012],[-97.97500902799999,42.908758020000164],[-97.84215763299994,42.86814251800013],[-97.68651777199995,42.84244373600012],[-97.43912679799985,42.847116482],[-97.26228995799988,42.92695109599998],[-97.1599258849999,42.941585990000135],[-96.98136894899983,42.873542678000035],[-96.95470585799995,42.78433690800006],[-96.6491075809999,42.758991360000095],[-96.76802771299998,42.86521684900009],[-96.79291961999996,43.00599871300017],[-96.73176580099994,43.06245598300018],[-96.71377797699995,43.16397091400012],[-96.62040671299991,43.16924076100014],[-96.53150843099996,43.2993257010001],[-96.52149025799991,43.37594389500009],[-96.65592342799994,43.52477215100015],[-96.75970843999988,43.49983792900014],[-96.96442258199994,43.68717617300007],[-96.9668569609999,43.73800096600007],[-96.8548326849999,43.87094445600013],[-96.76656502699996,43.92399382600007],[-96.73305563399998,44.13313228800007],[-96.57790784799994,44.048374942000066],[-96.45665510899994,44.009921288000044],[-95.98627279899995,44.019259471000055],[-95.85785651599986,44.05207354600003],[-95.61574059099996,44.226065107000124],[-95.59113817699995,44.28930113100006],[-95.97830206299994,44.515401595000185],[-96.26577826399995,44.70640956100016],[-96.38476299899997,44.815767837000124],[-96.34688929999993,45.01139958000016],[-96.25620274499994,45.09175939600004],[-95.92381507399995,45.253379884000026],[-95.73437441299995,45.27605982500012],[-95.57987779699988,45.379791555000054],[-95.62571185899986,45.502844051000125],[-95.7646397829999,45.68700146400005],[-95.77262674299993,45.84297467900018],[-95.98812921899997,45.969841695000184],[-96.13960275699998,45.87840927400009],[-96.17572821199991,45.75278029700013],[-96.27641473399984,45.66593733200017],[-96.42104765199997,45.633403250000185],[-96.51867589699992,45.67989859400012],[-96.70421371899994,45.86494596400007],[-96.86562590799997,45.925190700000144],[-96.91705025599992,46.0242292640001],[-97.01214351799996,46.09788978600011],[-97.11681246599989,46.09812127900017],[-97.37190438799996,46.181378003000134],[-97.43595784299993,46.252216273000045],[-97.62122880199996,46.347815708000155],[-97.49366340899991,46.43024165300005],[-97.45156608299993,46.55427231300018],[-97.54385312099998,46.63798951900009],[-97.47237288999997,46.78288368800014],[-97.42304034099993,47.08930456300004],[-97.4236269889999,47.32260218200008],[-97.47214387799994,47.37992658700017],[-97.58903981399993,47.419579383000155],[-97.64067509899996,47.534258836000106],[-97.63789915999996,47.67520390400017],[-97.71827834199996,47.999636740000085],[-97.83647212799997,48.13374649200017],[-97.88984690999996,48.310007566000195],[-97.91058625699998,48.55178974199998],[-97.8896503869999,48.66768436500013],[-98.0137232049999,48.877039732000014],[-98.04496583499991,49.00265659100006],[-98.19236781899997,49.259835749],[-98.20265962199994,49.35526939100015],[-98.3794707269999,49.53239308000002],[-98.47096215999989,49.58198366400018],[-98.49501072699991,49.743921231000115],[-98.73004134299993,49.84046556700014],[-98.92548384799994,49.89361216000003],[-99.13142397799999,50.03440186100016],[-99.22316734399999,50.19924922900009],[-99.36486856399989,50.23187443700016],[-99.47739395799994,50.41860931400004]]]]},"properties":{"objectid":95,"eco_name":"Canadian Aspen forests and parklands","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Nearctic","eco_biome_":"NE08","nnh":4,"eco_id":386,"shape_leng":86.8369776334,"shape_area":40.6774120892,"nnh_name":"Nature Imperiled","color":"#DB931A","color_bio":"#FEFF73","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":327342.55444786046,"percentage":3.0895078413671793}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-79.61271863899992,56.371355071000096],[-79.86961059399988,56.31879162600012],[-80.04540009199997,56.311309213000186],[-80.10647454199994,56.18927784500005],[-80.02543386199989,56.17690897099999],[-79.70559925699996,56.298725901000125],[-79.61271863899992,56.371355071000096]]],[[[-78.65901046899995,56.41464693700004],[-78.77025182999995,56.42078630000009],[-78.81715036899999,56.266052664000085],[-78.94434372499995,56.10125660000011],[-78.67777015599995,56.17233970300015],[-78.65901046899995,56.41464693700004]]],[[[-79.02881373299988,56.42523667300014],[-79.13761110099995,56.54044322200019],[-79.2904595199999,56.56147257600003],[-79.38471873099996,56.25405598100019],[-79.43988918299988,56.19507469100006],[-79.57179579999996,56.240713303000064],[-79.77237919899989,56.12560174200007],[-79.85152737999994,56.02297137000005],[-80.01110662899998,55.92185656600009],[-79.85394094799994,55.83320852900016],[-79.56807268499995,56.111379473000056],[-79.47080168299993,56.100883580000186],[-79.63342640999997,55.89266923499997],[-79.50323040299998,55.85582927600012],[-79.32781754999996,55.99989879100019],[-79.15872474399993,56.23833671600016],[-79.10204017399997,56.22892549700009],[-79.02881373299988,56.42523667300014]]],[[[-79.75423511899993,56.83988080400019],[-79.88654214999997,56.93626813200018],[-79.9740629449999,56.82017341300002],[-79.75423511899993,56.83988080400019]]],[[[-77.68511639199994,60.73404389500013],[-77.84491970399989,60.65694320100005],[-77.79917051999996,60.589765474000046],[-77.58826217499995,60.519176677000075],[-77.77863419399995,60.40578921700018],[-77.6655941169999,60.36385677700008],[-77.52643238399997,60.21553260600007],[-77.56551167899988,60.043004777000135],[-77.34382487499994,60.02828723300007],[-77.43438344299994,59.92220916800005],[-77.29982663899995,59.80942980500009],[-77.57821924899997,59.7622202120001],[-77.5982512189999,59.66588982000019],[-77.8283798409999,59.68789399300016],[-77.76887402299997,59.53883603600019],[-77.90857378999993,59.51191747900003],[-77.93992762699997,59.428438941000195],[-77.80816713599995,59.316447734000064],[-78.0347405199999,59.25824853900008],[-78.15292646799992,59.201182602000074],[-78.15473031599993,59.09780439500014],[-78.28565178999997,59.05240834300014],[-78.38042070699998,58.91069586100019],[-78.59299571199989,58.914011641000116],[-78.51155291299989,58.724055120000116],[-78.50382273299988,58.62581907000015],[-78.38091417399994,58.61681227000008],[-78.31967046999995,58.529751194000085],[-78.06702266999991,58.42750660200005],[-78.07036131699994,58.382651208000084],[-77.52799188199992,58.23104814800013],[-77.48681769199999,58.1635891250001],[-77.21499200099998,58.026049890000195],[-76.85381710399997,57.672439239000084],[-76.84002927499995,57.592588394000074],[-76.64096814999994,57.322458262000055],[-76.56838987399993,57.115021605000095],[-76.57220712999992,56.96414758999998],[-76.53693921699988,56.817075075],[-76.53793732199995,56.641570613000056],[-76.41768082399989,56.583982942000034],[-76.35723258499996,56.83603224400008],[-76.41725987699988,56.976200581000114],[-76.37590785599991,57.128165852999985],[-76.44409184199998,57.39043512900008],[-76.25249542099994,57.473893159000056],[-76.13752177099997,57.57002103900004],[-76.23931916399988,57.70664407200019],[-76.4194726159999,57.755511425000066],[-76.29001005099991,57.8466595540001],[-76.38439874199992,57.99403802900014],[-76.28160665299998,58.10963973400004],[-75.95793879899992,58.03533664300005],[-75.87874452199998,58.085901101000104],[-76.08938691099996,58.23930192400019],[-76.11153498599992,58.3318546270001],[-76.01451146499988,58.458823193000114],[-75.8216327099999,58.49029741700019],[-75.67847541499992,58.456525763000116],[-75.48988377199993,58.23993856800013],[-75.3677147809999,58.14287165800005],[-75.29851728099993,58.255811999000116],[-75.12070421199996,58.29161166900013],[-74.75042805599998,58.26468549100019],[-74.42085365499997,58.18619024600008],[-73.98520525299995,58.15751759400018],[-73.64703484599988,58.18709044400015],[-73.28960492099992,58.18051127200005],[-73.18796503399994,58.19894085600009],[-73.22912674999986,58.35348473700009],[-73.14478441399996,58.3946218530001],[-72.91904423199998,58.394532671000036],[-72.7375397749999,58.456421097000145],[-72.47801080199997,58.46025211200015],[-72.3439264559999,58.37236635600016],[-71.98267429299989,58.34687619800013],[-71.86547758699999,58.39399494300011],[-71.78790861799996,58.27581857000018],[-71.46410455799992,58.18712634100018],[-71.34834167399993,58.198377494],[-70.92681029199997,58.40437261300008],[-70.52734378599996,58.48021049500011],[-70.29207595499997,58.69904381200013],[-70.15851953499993,58.78258101600005],[-70.01344352799993,58.80475285200015],[-70.11360847099996,58.89484466100015],[-70.01331366099993,58.946045714000036],[-70.18666719399988,59.03073490000003],[-70.31288842499993,59.147081790000186],[-70.29426607299985,59.29159952200007],[-70.06553435899997,59.33684612700006],[-69.85892431399992,59.293664540000066],[-69.75508784199991,59.22879119200002],[-69.7228016279999,59.13478009200003],[-69.59540605199987,58.96441280000005],[-69.46965669799988,59.011246112000094],[-69.42573124099982,59.10820280000013],[-69.49850025299997,59.20069077500017],[-69.22539412399993,59.23147162500004],[-69.24879455099995,59.332197203000135],[-69.43571599099994,59.35616035800001],[-69.64106662199998,59.29847042000017],[-69.62714721299989,59.39006832900009],[-69.73945577099994,59.516732294000064],[-69.52263981399994,59.61536569500004],[-69.63729707599992,59.691825446999985],[-69.54892572799997,59.86978135600003],[-69.66424975499996,59.879968778000034],[-69.72470071299983,59.966347486000075],[-69.86405474799994,59.99492642200016],[-69.83346562699995,60.069569842000135],[-69.62328474899988,60.072627720000014],[-69.60168077999998,60.22660740400016],[-69.76082053099992,60.30728694800007],[-69.68474135999998,60.36271211300004],[-69.81044677099999,60.51968469600007],[-69.68675652099995,60.54246842300006],[-69.64369608799996,60.626345393],[-69.6938924339999,60.692173973000024],[-69.41562276099984,60.78384352100011],[-69.37912858199991,60.90526645900019],[-69.49933137799991,61.065566151999974],[-69.67602724499994,61.02690221200015],[-69.6471319929999,60.87732468899998],[-69.83360423199997,60.87833687400018],[-69.90481800499998,60.80040230700013],[-70.04562394699997,60.84428551000008],[-70.14585559799997,61.001848861000155],[-70.13329361999996,61.09242685000004],[-70.40924305499988,61.09079385400014],[-70.6358274509999,61.036791245000074],[-70.73647982099999,61.08810583500019],[-71.21367959599996,61.162760355000046],[-71.44112858399996,61.17256325900007],[-71.73173275399995,61.28488708600014],[-71.5693791839999,61.40344866200002],[-71.73996103799988,61.469629083000086],[-71.7918393779999,61.53490936500003],[-71.54404905999985,61.561959058000014],[-71.63915785899991,61.65657083000019],[-71.9099231859999,61.708943935000036],[-71.96527147099982,61.59992884400003],[-72.13582340899995,61.59653177400014],[-72.26828073099995,61.56732107000016],[-72.46051006099992,61.675159518999976],[-72.54941630699989,61.54787029400018],[-72.82015884099997,61.48573915700007],[-73.36164136299988,61.485735014],[-73.58799828099995,61.45910872700006],[-73.87648864799996,61.39252864500003],[-74.25375559999998,61.36145685400015],[-74.86212883499996,61.35873389200009],[-75.66549841499994,61.17033983800019],[-75.89055127099988,61.14780998700007],[-76.41876281699996,61.16261649900002],[-76.78955115499997,61.10017139900003],[-76.95176754599999,61.01780327700004],[-77.18717057499993,60.84621575200009],[-77.54200100799989,60.74005656700007],[-77.68511639199994,60.73404389500013]]],[[[-79.55636520999997,62.40300940800006],[-79.96131173599991,62.361434698000096],[-80.2164324289999,62.14829017000011],[-80.28098222299991,61.98557992500014],[-80.21642542199987,61.800851998999974],[-80.0178392979999,61.734989595],[-79.85537378399994,61.57605284100009],[-79.68623961999992,61.61194084300013],[-79.54041701099999,61.814141499000186],[-79.45297065499994,61.885170419000076],[-79.45952923999988,61.95347408400016],[-79.35646962299995,62.04681378700013],[-79.26999102999991,62.23543996800015],[-79.46158385299998,62.37573008700008],[-79.55636520999997,62.40300940800006]]],[[[-82.26038103699989,62.99663781700002],[-82.44381612799992,62.933104055],[-82.72776486199996,62.94634315800005],[-83.04615829499994,62.84543769900006],[-83.35032344599989,62.92773400400006],[-83.58169945699996,62.82441420200007],[-83.5928811839999,62.69068882700003],[-83.76046288299989,62.56046075500012],[-83.95765599599997,62.46828935800016],[-83.95486551899995,62.42203709800003],[-83.7345905659999,62.27306939300013],[-83.74172606699995,62.15910588900016],[-83.32003055999996,62.260774936000075],[-83.12117274299999,62.18044520200016],[-82.82458359599991,62.28063787800005],[-82.5884615729999,62.42402338900018],[-82.48824055199998,62.45064967000013],[-82.37216930699998,62.556671402],[-82.19135169899994,62.60362040200005],[-81.952288233,62.72625043200014],[-81.98196543699993,62.796975299],[-81.87957824599994,62.91227094400011],[-82.26038103699989,62.99663781700002]]],[[[-80.5003338269999,63.704204078000146],[-80.83181808999984,63.738027122],[-81.26733560199989,63.990991024000095],[-81.39429499999989,64.00828623800004],[-81.72308275599983,63.94722509200017],[-81.92207283399989,63.866788168000085],[-81.92279142499996,63.70655807400004],[-82.01795750899998,63.65118242900007],[-81.6832392959999,63.561558482000066],[-81.52036146099994,63.55839646300018],[-81.06841916999997,63.43690588600015],[-80.93219411799998,63.51254155100008],[-80.52082481199983,63.661397125000065],[-80.5003338269999,63.704204078000146]]],[[[-84.73359962399996,65.25773625400012],[-84.90452172499994,65.21910793600006],[-84.97922277599997,65.4007141800002],[-85.24706808499991,65.51938864700008],[-85.0189013079999,65.62409711300006],[-85.18834860999988,65.81615512700006],[-85.34628181499994,65.83757552100013],[-85.48981694599996,65.92605946100008],[-85.73986036799988,65.85893878600018],[-85.9897184059999,65.72049681100003],[-86.13543325299997,65.37817676600008],[-86.1098173929999,65.16260422500017],[-86.20311217699998,64.97096242100014],[-86.1238335249999,64.92276700300016],[-86.30200093299999,64.66743876700008],[-86.39310989499995,64.59123273],[-86.30226100499993,64.22852003500014],[-86.1946277699999,64.17409799800004],[-86.1780696699999,64.08636082099997],[-86.82760932699989,63.93970276900012],[-87.02547466299984,63.84218461200004],[-87.20542988499989,63.71468865200006],[-87.21082496699995,63.62013014200005],[-87.07620400599995,63.5522521260001],[-86.87074646599996,63.556566590000045],[-86.55082219099995,63.66247481000016],[-86.27898227799994,63.63620069800015],[-85.80906031099994,63.699122988],[-85.60515696999994,63.671417625000174],[-85.60029919099992,63.505663638000044],[-85.65956623799997,63.42001084200007],[-85.621616626,63.18608731600017],[-85.45701061699992,63.098816009000075],[-85.22043922699987,63.10892715700004],[-84.95239170799994,63.171716384000035],[-84.4672671209999,63.37240860500009],[-84.44391812399988,63.47812182700005],[-84.28390862599991,63.60938217400019],[-84.07366268199996,63.5926709310001],[-83.99165551999988,63.65771157200004],[-83.58156648799996,63.81533437800016],[-83.66111652199993,64.01124220400004],[-83.52723460999994,64.09919349500007],[-83.07403522699997,64.17763136600018],[-82.93636582399995,64.13016262300005],[-83.15407628999998,63.9838056160001],[-83.06923286099999,63.936170269],[-82.89148588799998,63.97366064000005],[-82.54916380699996,63.95514831400004],[-82.41974547199999,63.91548607900012],[-82.33208527599999,63.98923721500017],[-82.13158489499989,64.08253333100004],[-82.19240459499997,64.13483489200019],[-82.69000891699983,64.19451282900013],[-82.77300198699993,64.28080988200003],[-83.042662437,64.39471633400007],[-83.6025012149999,64.43754551800009],[-83.55119330799988,64.31748977700016],[-83.72131276099998,64.20716171400016],[-84.02544279299991,64.17686611200008],[-84.1371847399999,64.08490529699998],[-84.43079261199995,64.2679235710001],[-84.51499862899988,64.35692753800015],[-84.62682354499998,64.38076165400008],[-84.75591978199992,64.54433453300004],[-84.75121419799996,64.90273947200018],[-84.58520501499999,65.01733503600019],[-84.69859240699998,65.04769308300018],[-84.62699855799997,65.25689132600002],[-84.73359962399996,65.25773625400012]]],[[[-107.91723537799993,67.61217906700017],[-108.10753343699997,67.66953205800013],[-108.12463490899995,67.53262972900012],[-107.89271243799993,67.55470301700007],[-107.91723537799993,67.61217906700017]]],[[[-95.21890534799991,67.3192646600001],[-95.10164579699995,67.31127753800007],[-94.9195096499999,67.42546693000003],[-94.5531458129999,67.47070364300009],[-94.41196425499999,67.6085392390001],[-94.14019798499999,67.6288897300002],[-94.0191493989999,67.72816156400006],[-93.71089893599998,67.81132307900009],[-93.57801068799989,67.87928301200014],[-93.75403643399989,68.10673369300014],[-93.45722189799994,68.2115144390001],[-93.40966073999994,68.4058340040001],[-94.15618199099998,68.29107578000009],[-94.65337982699987,68.11814999400019],[-94.82095174199992,68.04191787200017],[-95.24693072199989,68.0833746130001],[-95.51566970399983,67.92656687600004],[-95.4926825529999,67.86762862900014],[-95.69259562199994,67.74054774700005],[-95.47016658099994,67.65395882600012],[-95.28989317199995,67.53002665600013],[-95.36916954999992,67.46024000600005],[-95.21890534799991,67.3192646600001]]],[[[-104.60428310799989,68.57139703000007],[-104.93727540099997,68.59565355300009],[-104.99654905699998,68.50059547400019],[-104.73610914199998,68.4170177200001],[-104.41740828799993,68.43220723500002],[-104.40849041699994,68.4926186690002],[-104.60428310799989,68.57139703000007]]],[[[-135.81593369399997,68.89288778000014],[-135.83936522199997,68.99992528700017],[-136.12362942199996,69.00552987300006],[-135.81593369399997,68.89288778000014]]],[[[-125.15488580699991,69.3843834170001],[-125.39270643599997,69.33293357900016],[-125.94014130599987,69.396015788],[-126.26962183799998,69.51661757600016],[-126.68870691299998,69.73627366900007],[-126.87905371099998,69.98422752300019],[-127.16242835799994,70.23555038900014],[-127.49950620499999,70.40504659700014],[-128.0175341329999,70.56637983000007],[-128.14046724399986,70.50289865400009],[-128.20679946699988,70.36855644600013],[-128.02623162699996,70.27087720700013],[-127.591197,70.23581680700016],[-127.75359931499997,70.18820455500014],[-128.2697887849999,70.1412633220001],[-128.38521198499996,70.09500002000016],[-128.3264727039999,70.01043759900006],[-128.3835178719999,69.93774169600016],[-128.58789386799992,69.87393108300006],[-128.81356433199983,69.74804941200011],[-129.14095520299998,69.68875515200006],[-129.147552535,69.85076687300011],[-129.58467397299995,69.81253223000016],[-130.07345169299998,69.70560961500007],[-130.32161075099998,69.68601007500018],[-130.619804489,69.42690238800014],[-130.90372595099996,69.35926383499998],[-131.0267757939999,69.45990307199997],[-130.7897468,69.65063214200018],[-130.6136803049999,69.68240532100003],[-130.33712308299994,69.81658736700007],[-130.0752752979999,69.86274316600009],[-129.52263531699998,69.99536381700017],[-129.37227231699995,70.10087695400006],[-129.5672224559999,70.17628562900018],[-129.78143706299988,70.20633977400007],[-129.87568668799986,70.08675169400016],[-130.29061074099997,70.06924833199997],[-130.52797864799993,70.130965576],[-130.991986334,70.06362891700019],[-131.09017504399998,69.88637777700012],[-131.4488444949999,69.89314757900019],[-131.63602206399997,69.86659545400016],[-131.88192595299995,69.76987296000016],[-132.09403773799983,69.72639703000004],[-132.56240633,69.73428715600011],[-132.6591384919999,69.65407879300017],[-132.97503754599995,69.62723723800019],[-132.98901937199986,69.46454640900004],[-133.2141293929999,69.39009404200016],[-133.55127108899995,69.39471695700013],[-133.94789124099992,69.26942435400008],[-134.012402222,69.369993222],[-133.78129024999993,69.48967911400007],[-134.147941651,69.52602429000007],[-134.18282430899995,69.64568418700014],[-134.34034588199995,69.68623644100012],[-134.48332640499996,69.53598689100005],[-134.41831281999998,69.47108782600014],[-135.15340353699997,69.465874068],[-135.29369773899992,69.42313307400019],[-135.20893611699995,69.26813971600018],[-135.473584099,69.32929562600015],[-135.77625970299994,69.31169746300003],[-136.003262227,69.19260775900017],[-135.94006859799993,69.08350571000017],[-135.585363633,69.0102416100001],[-135.80389658299993,68.97526844900017],[-135.3302923529999,68.82423410900003],[-135.13502019099997,68.87306612999998],[-135.05579352799998,68.9630769910001],[-134.710911426,69.01486821300017],[-134.59682214499992,68.98864992600005],[-134.36814998499995,68.817337969],[-134.09909392699996,68.69361421000013],[-133.82966892199994,68.52801780800019],[-133.65591359099994,68.30943262700009],[-133.23631593599993,68.28073281800016],[-133.1657960799999,68.41064139300005],[-132.73309440499986,68.40743428100006],[-132.76910102499994,68.314016766],[-132.66217566099994,68.24135871900006],[-132.33294629699998,68.30953203100012],[-132.16652191599997,68.26024810500019],[-131.9994631439999,68.40295981900005],[-131.7592407279999,68.40943575500012],[-131.58115581699997,68.45538969800015],[-131.6428183149999,68.51158727500007],[-131.23506548199998,68.56990984300006],[-131.09231614199996,68.55833605800018],[-130.7512262099999,68.69092943000004],[-130.37780876499994,68.77254425100011],[-130.068626409,68.81325787200018],[-129.80790441099992,68.74979336800004],[-129.6548664319999,68.68178128200003],[-129.58740883399992,68.56192375600017],[-128.83214319799998,68.40812149900006],[-128.68119092699993,68.33665305700004],[-128.47067581599993,68.15753291599998],[-128.2178111849999,68.10825320300012],[-127.74410403099989,68.16151988100012],[-127.56657251899992,68.0970481080002],[-127.49332705999996,67.99497916900003],[-126.9638503939999,67.9701498340001],[-126.43219607999998,67.91932270800015],[-126.22140966999996,67.95573246200019],[-125.94280356899998,67.96090294400005],[-125.68599235599999,67.8973518030001],[-125.466658038,67.918453844],[-125.27284247999995,67.97513910600009],[-125.02793494699989,67.98443825700008],[-124.85476916999994,67.90728116600019],[-124.73821803699997,67.69490137900016],[-124.64124008099992,67.6337816910002],[-124.36329126299995,67.56964843300011],[-124.26860109399996,67.51286897500012],[-124.26934478099992,67.36873809100007],[-124.5177242819999,67.28638034800008],[-124.86748125799994,67.36905155800014],[-124.95457276199988,67.28602370099998],[-124.89014280799995,67.19295972700019],[-124.93028728399992,66.9959629110001],[-124.70703607999991,66.91272918400011],[-124.4405053079999,66.85380860900017],[-124.28982478199998,66.72359805500008],[-124.07164392999994,66.67942619700017],[-123.81734077299996,66.692069032],[-123.46697137499996,66.75182376000004],[-123.05024958799993,66.5740395970002],[-122.89138101099996,66.60691947400011],[-122.70316202899994,66.5831595050002],[-122.27133252899995,66.60369977199997],[-121.9579987279999,66.6442023940001],[-121.54041301099994,66.75427380600007],[-121.40086945799999,66.93583532900016],[-121.08911630699998,66.94199229000003],[-120.59266455299996,67.05195423700007],[-120.18845159099993,67.07797886300006],[-119.90691316799996,67.06961644100005],[-119.570154517,67.02551584600008],[-119.32925774699999,67.03246620200014],[-119.3552687959999,66.95470346600013],[-118.94323856399996,66.9087163550002],[-118.75626241699996,66.92870801400011],[-118.73782445899991,67.20312730600006],[-118.80963974899993,67.2904980780001],[-118.64998519199986,67.37339698900007],[-118.43113396799993,67.38416803300004],[-118.23385094499997,67.26614011000015],[-118.088017676,67.24290252000003],[-117.98150775399995,67.13220252900004],[-117.7540332769999,67.11427757700017],[-117.62189931399996,66.93597816800013],[-117.42936813099988,66.91465748900009],[-117.30896777799995,66.84431353100001],[-117.15017813099996,66.95800050700018],[-116.86852271299995,67.01044487500019],[-116.75414318599996,67.00248083700006],[-116.38399818699992,66.88779042100003],[-116.25247792499994,66.79588956900017],[-116.08434813799994,66.76016755000012],[-115.84180766799989,66.82083126000015],[-115.4494738119999,66.70512258300016],[-115.11281734199997,66.68480074700005],[-114.89989057099996,66.61789318300009],[-114.72571108399995,66.52639157500005],[-114.58985094699989,66.40679599800012],[-113.95975428599996,66.08266973000019],[-113.79899996799998,65.861048433],[-113.42498445399997,65.70332855900006],[-113.38481369199997,65.60515050100003],[-113.07193547299988,65.44310325200007],[-113.26258574199994,65.12857981800005],[-113.15320286999992,64.99528031800003],[-112.86517954999994,65.00607828100004],[-112.64654541799996,64.98751940600005],[-112.65597048699988,64.83260470900012],[-112.70865556399997,64.73751782500005],[-112.35135014299993,64.56761207199997],[-112.30185719499997,64.46533852500016],[-112.37137209399992,64.2813502410001],[-112.17197369499996,64.23073541000002],[-111.70163138299995,64.35630049100007],[-111.48922611799992,64.25938264400014],[-111.35748257199992,64.15338378100006],[-111.14137836399993,64.17148038300007],[-110.90261018399991,64.15949413300007],[-110.46433330899998,64.03897641100014],[-110.24854109999995,64.11593082000013],[-109.98431126299988,64.2522038960002],[-109.74912583099996,64.20354542000007],[-109.54238012499997,64.09732464100011],[-109.45858004399997,63.983933857000125],[-109.54558114899993,63.82596575600013],[-109.84857498499997,63.67591931200002],[-109.81530775399989,63.62229770500005],[-109.368085469,63.70416076700002],[-109.17856689599995,63.687145292000196],[-108.98660877499987,63.75822214900006],[-108.85700587499997,63.869678298999986],[-108.56416574999997,64.03970375500012],[-108.0271607709999,64.05275687000005],[-107.63045548499997,63.95365897400012],[-107.63744449499995,63.86322201900015],[-107.38914539499996,63.806628473000046],[-107.04255736699992,63.838025557000094],[-106.28629999799995,63.857071852000104],[-105.99906797099999,63.84529255000018],[-105.43676753299997,63.86703207900007],[-105.36004634299991,63.902318364000166],[-104.79212937999995,63.89496668400011],[-104.5031598619999,63.93599443800014],[-104.22252699099988,64.01335267100012],[-104.06700117799994,64.13101281600012],[-103.69499186399992,64.341153813],[-103.94413099399998,64.46753120800008],[-103.88857210999993,64.53262353300005],[-103.58936276299988,64.40052812300019],[-103.39324251499994,64.40023995900015],[-103.24532952999994,64.43964994400017],[-102.94116165499997,64.45032419500006],[-102.81173718799994,64.3508670870001],[-102.94383161299999,64.21915328900019],[-103.09319420899999,64.18396152500003],[-103.261138744,63.98967856900009],[-103.62245199599988,63.918914340000185],[-103.86428087299993,63.83282136400004],[-104.01616609699994,63.71888548000004],[-104.09368908599998,63.52045561900013],[-104.03185987899997,63.456049663000044],[-104.21367728699988,63.323888230000136],[-103.79437885099992,63.2710931040001],[-103.61659285599995,63.18385331200005],[-103.2082509409999,63.171893195000166],[-103.09261314999998,63.22016098000017],[-102.888817024,63.08590014300006],[-102.91977741399995,62.97515621700006],[-103.05520612099997,62.893925180999986],[-102.98899194199998,62.82352257600019],[-102.75142625299998,62.785636350000175],[-102.46288285399999,62.65387390500007],[-102.3334505979999,62.721978395000065],[-101.95081336599992,62.83387025300004],[-101.76241347999996,62.73454895900011],[-101.67053226799987,62.63971646699997],[-101.43814012799999,62.56758297400012],[-101.20839690599996,62.56372750100007],[-101.01294671999995,62.610842197000125],[-100.92906216899996,62.66498537000007],[-100.86131243199998,62.79294475300014],[-100.62828855699996,62.850053570000114],[-100.50225855499997,62.77469704900005],[-100.50591252799995,62.7211476490001],[-100.33599097299998,62.63758030800011],[-100.23781376699998,62.73527424200017],[-99.97562220599997,62.81923322500012],[-99.44715423799988,62.85945964700011],[-99.28323895099999,62.918904290000114],[-98.8149221029999,62.94890185700007],[-98.56899549199994,62.99509266700011],[-98.14941669599995,63.015122193000195],[-98.00415867999999,62.96064416900015],[-97.7033881449999,62.94880820500015],[-97.58961550099997,62.97075407400007],[-97.42913015199997,63.07471792000007],[-97.20971695599991,62.925969756000086],[-96.9623335679999,62.88005399000008],[-96.86656244199992,62.768269965000115],[-96.54197719199993,62.74101653900004],[-96.43619525899987,62.64603365800019],[-96.187263423,62.5866355620002],[-96.41919704299994,62.49426551100015],[-96.20155343799996,62.31113197800005],[-96.33358014099991,62.23931825100016],[-96.57717881699983,62.31026870200003],[-96.65844711899996,62.24177728500001],[-96.84674018699997,62.17248043000018],[-96.96533191399993,62.032157980000136],[-96.81976313799993,61.81935180800008],[-96.66279597999988,61.7697844540001],[-96.6293795659999,61.61868703400006],[-96.51274896899997,61.54082248100008],[-96.29946124699995,61.45417402500016],[-96.09114845999989,61.17295848400016],[-96.1992568689999,61.151911841000185],[-95.9988325359999,60.99136635100001],[-95.71683495999986,60.91329244800016],[-95.61710350499999,60.820872246000135],[-95.44857785799991,60.54749232400019],[-95.39927696099988,60.32964768300002],[-95.22122185299992,60.1507822100001],[-95.04926286299997,60.03248186400015],[-94.93260958099995,59.99977288700018],[-94.96189174099999,59.90504574900007],[-94.87577082999991,59.824556032000146],[-94.93144245499985,59.650548882000066],[-95.081763976,59.55577778400004],[-94.98747281399989,59.48297205100016],[-94.98654925599993,59.23621302000004],[-95.08185563899991,59.15287992700007],[-95.08490734299994,59.02853237000005],[-95.01840212899998,58.87809179100009],[-94.9089889569999,58.78538524600009],[-94.78676595899987,59.00627030700008],[-94.80958988199995,59.08840660400017],[-94.76802130299995,59.3394743930001],[-94.71571542499998,59.38439887500016],[-94.80135190299995,59.524314382],[-94.83109938499996,59.647514350000165],[-94.77608274299985,59.784770517000084],[-94.84445423999995,59.97224086700015],[-94.72991230499991,60.132012503000055],[-94.71304729499991,60.29251370600002],[-94.64773757999995,60.38732686200018],[-94.77011113499992,60.53481258700009],[-94.56187417299992,60.53536260100009],[-94.52394499699994,60.63734496200004],[-94.44222865399996,60.6917732],[-94.37380557599994,60.84654033600009],[-94.22512539999997,60.8931216200001],[-94.17906936699995,61.040934235],[-93.93139125399989,61.292223307000086],[-93.82206574399999,61.33778694100005],[-93.96763805299986,61.39499206200003],[-93.99162989999996,61.46048559800005],[-93.89390087399988,61.536777102000144],[-93.46330317399992,61.70644399000008],[-93.60408009799994,61.70755350100012],[-93.64494312399995,61.7675020480001],[-93.34409010299987,61.74450746900004],[-93.55147207999994,61.85076290100011],[-93.35668438999983,61.88910468300014],[-93.23243398999995,61.96363474300017],[-93.34245669899997,62.02925915600008],[-93.08658852999997,62.04610439400011],[-92.99444790699982,62.11443117699997],[-92.99259087899992,62.20028160900017],[-92.74723424499985,62.22495448800015],[-92.53757381999992,62.1838548930001],[-92.54537514299994,62.29836879200002],[-92.73726940499995,62.36869481800005],[-92.75827206299988,62.46404741300012],[-92.54328212299998,62.4679223010001],[-92.46476166999992,62.53357029799997],[-92.25839716399997,62.58450139600018],[-92.03066178499984,62.53176223200012],[-91.91146361599993,62.5667989100001],[-91.88434717799993,62.64083413500009],[-92.14445180599989,62.66721028600011],[-92.31311964899993,62.71077498200009],[-92.42890533499997,62.796555801000125],[-92.3700219719999,62.84803679100014],[-92.10547215799994,62.86323723600009],[-91.6771909869999,62.81221211500002],[-91.43983529299999,62.79878015900016],[-91.22168383899998,62.857195796999974],[-91.02511258599998,62.94381195900013],[-90.81483879799993,62.929453234],[-90.64992305799984,63.048128002000055],[-90.69821038499992,63.227057982000076],[-90.76730352099997,63.32451585700011],[-90.99387295799988,63.46935245100008],[-91.29185865899996,63.50860341200013],[-91.38771039099987,63.49433802900006],[-91.63701971799998,63.58767893400017],[-91.62812189699997,63.618032852000056],[-91.7165725729999,63.682630521000135],[-91.92186653999994,63.70205493800012],[-92.23122416399997,63.58037406400007],[-92.10354618799994,63.56041179600004],[-92.211700109,63.41696266200012],[-92.4317934959999,63.34340813100005],[-92.74157716499991,63.392416506000075],[-92.87995166199994,63.493481833000146],[-93.17821496499994,63.53659633500013],[-93.3270418919999,63.49733248300004],[-93.69267263599988,63.514197024],[-93.82815555899992,63.59876463500018],[-93.89160120699995,63.692629393000175],[-93.76341994299992,63.80747959300015],[-93.96453882699996,63.9151060050001],[-94.19976014999992,63.91893658000009],[-94.52880065299996,64.01876787000009],[-94.74233234399992,64.04323465200014],[-94.90805797899998,64.11856716900002],[-95.53152465999995,64.04328845300006],[-95.84030167299989,64.04218474200013],[-96.17967221899994,64.21426415700012],[-96.0525437309999,64.3200449740001],[-96.22067228599991,64.32668129600012],[-96.39091486599995,64.42765764500007],[-96.40785940099994,64.48027682200006],[-96.30836492799995,64.58760000900008],[-96.68065622099982,64.77529702300006],[-96.73718977599992,64.93057893500014],[-96.97795144699995,65.0069742770001],[-96.66117081699997,65.12891265800005],[-96.72523496599996,65.20135290000019],[-96.30490067699998,65.32870375200008],[-96.10157028999998,65.41998158600006],[-96.21382943399993,65.52073228100005],[-96.27615430499998,65.6412749210001],[-96.53283603899996,65.6823924860002],[-97.4534753399999,65.71084410300017],[-97.57430215099998,65.79034839000008],[-97.45806209699998,65.86317031800019],[-97.13995343999994,66.18185350099998],[-96.838172537,66.24272592500012],[-96.74705455499998,66.32398523300003],[-96.63081413599986,66.32886072100018],[-96.03948206699988,66.48319307300017],[-96.08633472299988,66.51014266600004],[-95.79293057699994,66.61362415000008],[-95.73260790199998,66.75747903500013],[-95.47930889699995,66.70048922300015],[-95.41782330599989,66.83872138400017],[-95.26300602099991,66.99103346300006],[-95.21381739399993,67.096791393],[-95.35135555199992,67.1571433680001],[-95.53272269599995,67.22342508800017],[-95.52802916899998,67.32643712600009],[-95.69470177599999,67.38168250300009],[-96.09030063799992,67.22550331700006],[-96.21999966299995,67.31051571600011],[-96.17150106299994,67.43397702600004],[-96.36136480899995,67.45623625100012],[-96.42371206299987,67.51310417299999],[-96.13498622299994,67.69309214800012],[-96.20161169699998,67.84099323599997],[-95.99466225499998,68.11832312500019],[-96.06506195499998,68.15341133200002],[-96.00917701499998,68.25415584500001],[-96.41551241899998,68.16813288800006],[-96.48874855599996,68.06973728300011],[-96.76144891199993,68.08741658100007],[-96.48080695199997,68.2096332230002],[-96.53070850799998,68.27283060700012],[-96.98715557099996,68.27982945800005],[-96.9856230229999,68.34909798600012],[-97.32707133299994,68.50951425100016],[-97.6143729879999,68.5118133250001],[-97.84318611599991,68.56642229800008],[-97.85364771299999,68.40512455000015],[-98.07511745899996,68.38052853500017],[-98.66486119699994,68.39177279800015],[-98.65918171599992,68.34104259300017],[-98.35236015199996,68.19768325100017],[-98.559394022,68.16693288700014],[-98.27923589099998,67.97628882900005],[-97.99460983199998,67.91614939100003],[-97.72057555799995,67.99234755200013],[-97.54009792999994,67.9657275150002],[-97.43145557299988,67.89044391400006],[-97.24462716899995,67.87601096100008],[-97.11975940499991,67.81365513100013],[-97.14919816499992,67.63034830000004],[-97.59827590899994,67.62255853800019],[-98.06414229599994,67.7739854850002],[-98.17463072099997,67.87008944300004],[-98.56791968699991,68.11665220100014],[-98.72305115299997,68.07654174300018],[-98.71228023899994,67.964683068],[-98.37580735699993,67.78908558500012],[-98.68499690399995,67.78778646200016],[-98.94178519799993,67.71698944000013],[-99.18653576099996,67.71886100300014],[-99.29948550199998,67.77518070400009],[-100.02801390999997,67.81957471800007],[-100.20381979899997,67.85524553099998],[-100.69431574099997,67.85544750000008],[-100.87687052399991,67.7714644620001],[-101.08768754199997,67.74140442200013],[-101.20884152299988,67.76752806700006],[-101.53638650399989,67.67557455700012],[-101.97147597299988,67.7680587910001],[-102.21183518399994,67.7182142210001],[-102.41658717699988,67.79299651700006],[-102.83559214799999,67.84610653100003],[-102.95221733899996,67.92011708000013],[-103.08318655399995,67.90000457300005],[-103.51694380899994,68.06823447000016],[-103.78756328499992,68.03014960100018],[-103.98289660499995,68.0537635660001],[-104.16906563499998,68.02142415900016],[-104.48882164499992,68.02611922500012],[-104.64871306499998,68.14669138600004],[-104.59121532499995,68.26233022500014],[-104.85809389399992,68.24140083100019],[-105.07304564899988,68.27385263400004],[-105.32103965999994,68.37851779400017],[-105.33407023299986,68.52156723600007],[-105.49187567699988,68.69369470600003],[-105.67159537899983,68.78728737000006],[-105.91941727599993,68.85291087000019],[-106.34026121399995,68.84055048700003],[-107.04357634999997,68.68220162300008],[-107.435602529,68.63184738600006],[-107.60355915099996,68.55097756700013],[-107.47444394399986,68.3363387890002],[-107.22510169099996,68.25875325200019],[-106.78279646199996,68.41013799000001],[-106.60327967499995,68.32534448899997],[-106.45264923799994,68.40060916300007],[-106.60795846099995,68.46682084700012],[-106.4784299499999,68.53485013300019],[-105.86910573899996,68.63958882800006],[-105.69499614499995,68.4397717560002],[-106.43116823899999,68.34034334600011],[-106.75871742199996,68.19621700200008],[-106.72603769399996,68.1172262980001],[-107.01842759999994,68.11242329700019],[-107.38284431299996,68.04236268400007],[-107.67538898199996,68.05144520300007],[-107.74907015699989,67.98608303900005],[-107.69772874899996,67.89547074200016],[-108.02854896199983,67.78281825000016],[-107.95103208999996,67.68997643800009],[-107.5704006169999,67.50288766900007],[-107.69448463799995,67.39034716400016],[-107.49736893,67.20364684200007],[-107.221400873,67.09377507100004],[-107.36287422999999,67.02986890200015],[-107.74847500999994,67.0049137060002],[-107.68565197499993,66.79121446600016],[-107.52582594499995,66.5768369480001],[-107.42480378699997,66.54503758000016],[-107.16147472499995,66.37523801300017],[-107.22001010199995,66.35204217400019],[-107.71520221099996,66.62776121700017],[-107.78602765699998,66.72636438000006],[-108.09619984699998,66.84736290000018],[-108.09316964099992,66.92470311200003],[-108.3213823509999,67.00189884000014],[-108.136257947,67.0814165430001],[-107.98963269499995,67.08634890400009],[-107.86888820499996,67.15588721500018],[-107.963926072,67.27616646100012],[-108.40824989699996,67.42653496700007],[-108.56640917299995,67.58242677100009],[-108.70235210899995,67.61045766500018],[-108.72272994199989,67.45714087800013],[-108.83249784599997,67.35592252400005],[-108.980690488,67.45045631900007],[-108.93757548399992,67.5504862460001],[-109.03190863999998,67.7279138350001],[-109.46769018799995,67.75476415000009],[-109.71598101099994,67.73342726600004],[-109.78621058799996,67.86753136300013],[-109.937778042,67.8956275170001],[-110.00959291899989,67.99940836900004],[-110.33701036899993,67.96538061200016],[-110.7027309479999,67.87169582300004],[-110.829548951,67.80440512000013],[-111.039241974,67.7658473570001],[-111.27957321199989,67.82279110500019],[-111.37326243499996,67.7563101340001],[-111.62276437299988,67.73189423400004],[-111.84257881099995,67.76490580100017],[-112.67113460199994,67.67207038300006],[-113.1033784739999,67.6803031250002],[-113.15544982899996,67.70839355700008],[-113.70049443199997,67.69198979600003],[-113.98024048499997,67.72759899500016],[-114.35934019399991,67.74323867600003],[-114.72282761499997,67.82162470900016],[-114.99936190099987,67.79715522700008],[-115.5518520789999,67.92256243600013],[-115.14936928899994,67.99928185600015],[-115.210533855,68.02747760000017],[-115.15216129499993,68.18895487400016],[-114.89273909599996,68.15147006000018],[-114.42436821999996,68.26117771100019],[-114.27417014199989,68.22769554600018],[-114.51982424,68.31237341900004],[-114.68447551599996,68.27019187000019],[-114.89129991899989,68.29903093000019],[-115.1776412239999,68.408643756],[-115.39962762399995,68.52461253700005],[-115.67668833399989,68.53877915400011],[-115.84743039099999,68.47963212100018],[-116.00850693599995,68.52619305600018],[-115.97975583999988,68.64492448200014],[-115.80980374899997,68.6652896440001],[-115.28088906,68.64055294300016],[-115.42131836599992,68.71220390100018],[-115.937261235,68.88064226500006],[-116.123131431,68.89699450400008],[-116.0006829809999,68.80570592800007],[-116.4202269569999,68.86404237800014],[-116.97027484599994,68.9081516500001],[-117.14904775899993,68.90021789500008],[-117.39018069099996,68.96137496300008],[-118.00837282499992,69.02134699100014],[-118.40110209699986,69.11317417700013],[-118.70105516999996,69.23503694500016],[-119.15409592799989,69.2860627660001],[-119.9596254519999,69.34539365500007],[-120.40396544399994,69.43936821900013],[-120.94914707699985,69.66120326400016],[-121.38376027199996,69.7636688390001],[-121.87828713399989,69.81339973900009],[-122.34224693299996,69.81606339300004],[-123.1122392019999,69.76917235200011],[-123.13071287499997,69.55345214400018],[-123.41105178099991,69.4759597690001],[-123.43571715399997,69.3990543600001],[-123.68498935199995,69.34033070600015],[-123.98670696899995,69.39317501900007],[-124.15008103999992,69.33271752100018],[-124.4942658839999,69.36665434100007],[-124.51395155299997,69.41914410200019],[-124.56533997599996,69.30506195599997],[-125.15488580699991,69.3843834170001]]]]},"properties":{"objectid":96,"eco_name":"Canadian Low Arctic tundra","biome_num":11,"biome_name":"Tundra","realm":"Nearctic","eco_biome_":"NE11","nnh":2,"eco_id":413,"shape_leng":315.133458842,"shape_area":160.988011053,"nnh_name":"Nature Could Reach Half Protected","color":"#4DB18F","color_bio":"#9ED7C2","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":837266.9293012337,"percentage":9.798147375633459}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-17.920150511999964,27.75646221500017],[-17.917667456999936,27.84914326600017],[-17.99916855699996,27.822073406000186],[-18.041931517999956,27.76352598000011],[-18.15395146399993,27.766024793000156],[-18.169637524999928,27.7213167270001],[-18.046798553999963,27.690968035000083],[-17.981571589999874,27.63752133300011],[-17.920150511999964,27.75646221500017]]],[[[-15.685044446999939,27.754482242],[-15.56816852999998,27.75496621300016],[-15.432926521999889,27.803585275000046],[-15.391921580999963,27.852983351000034],[-15.375944499999889,28.005955766],[-15.414101437999875,28.10218873200006],[-15.529704478999975,28.14833077300017],[-15.703557555999964,28.156280506000087],[-15.718897444999982,28.06665415600014],[-15.816394568999954,28.01211059700006],[-15.837346476999869,27.92770215000013],[-15.794781495999928,27.845323632000145],[-15.685044446999939,27.754482242]]],[[[-17.28353457099996,28.215183157000183],[-17.351205531999938,28.166422106000027],[-17.33414852599992,28.089566256000126],[-17.26313251599987,28.017588506000095],[-17.180271535999964,28.01783627599997],[-17.105802516999915,28.068087294],[-17.21287948599985,28.212196349000124],[-17.28353457099996,28.215183157000183]]],[[[-16.12684249299997,28.562951002000034],[-16.320274522999966,28.56601794000011],[-16.38349553099988,28.532795094000164],[-16.46674157599989,28.436810065000145],[-16.607679589999975,28.384743191000155],[-16.914451545999952,28.34032312700009],[-16.834882474999915,28.243570819000126],[-16.785625549999963,28.127568799000073],[-16.631620483999882,27.996442138000134],[-16.546197491999976,28.035279519000028],[-16.451269587999946,28.13405136300014],[-16.333629576999897,28.385893188000182],[-16.12684249299997,28.562951002000034]]],[[[-17.89588154899991,28.850769297000113],[-18.005113505999873,28.757145114000025],[-17.963102568999943,28.650317255000118],[-17.820259515999965,28.44626367800015],[-17.76624250799989,28.545890476000125],[-17.737434577999977,28.763147731000117],[-17.756639529999973,28.80275825800004],[-17.89588154899991,28.850769297000113]]]]},"properties":{"objectid":97,"eco_name":"Canary Islands dry woodlands and forests","biome_num":12,"biome_name":"Mediterranean Forests, Woodlands & Scrub","realm":"Palearctic","eco_biome_":"PA12","nnh":1,"eco_id":787,"shape_leng":6.58764010589,"shape_area":0.456483245523,"nnh_name":"Half Protected","color":"#FFA77F","color_bio":"#FE0000","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":4985.407848131864,"percentage":0.15091775616532835}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[171.62023973400005,-43.46487238999998],[171.5754396350003,-43.573122154999965],[171.40595973200016,-43.664124812999944],[171.2673186950002,-43.546785041999954],[171.25904860600008,-43.493902273999936],[171.14413472500007,-43.335638865999954],[171.11489864700013,-43.32772316399996],[171.15184071200008,-43.41862373099991],[171.13012672100012,-43.542154207999886],[171.0566707390002,-43.58459999799993],[170.98185772700003,-43.530782311999985],[170.81826761900015,-43.53210631799993],[170.86561564900035,-43.61268004399989],[170.8518527320001,-43.69858650499998],[170.89540074200022,-43.744908589999966],[170.82762165600002,-43.91854206199997],[170.75152571000012,-43.95651694499992],[170.65351863000012,-44.087055530999976],[170.52755773600006,-44.03926879299996],[170.6256866880001,-43.84963326199994],[170.61500562900005,-43.69368476799997],[170.42298863200028,-43.888852019999945],[170.20532267700003,-43.8580520459999],[170.11868263100007,-43.90008209399991],[170.09217871800013,-44.103843477999874],[169.99290463000023,-44.177841265999916],[170.01820356100006,-44.21614438399996],[169.80824258600035,-44.337871243999984],[169.84992964600008,-44.37788007899991],[169.8021846490003,-44.51238598799995],[169.6813357100001,-44.55275675499996],[169.64456161900023,-44.46499990499996],[169.5681307320002,-44.46969192599994],[169.49035672900004,-44.53932492199988],[169.35476670400033,-44.55660974799997],[169.28724661800015,-44.6104918069999],[169.14660666500004,-44.61836576599984],[169.10385158300005,-44.76324360999996],[168.97567769800003,-44.913603553999906],[168.9467006210001,-44.988730551999936],[169.0385746620001,-45.05045974899997],[168.99743661600007,-45.17212256999994],[168.87622071700002,-45.33783296399997],[168.69441271100004,-45.44376697699994],[168.6478886220001,-45.506740047999926],[168.5510556800001,-45.509357045999934],[168.47581468800013,-45.58793621499996],[168.2205506990001,-45.652187357999935],[168.4789126390002,-45.88976284799992],[168.70237769800008,-45.98935813099996],[168.81600965100006,-46.00857615799998],[168.8844906380001,-46.05962412799988],[168.66160560700018,-46.16333140499995],[168.87742570000012,-46.2137807389999],[168.9993585870002,-46.087117272999876],[169.20181272900004,-46.11461745999998],[169.48568767300014,-46.24035790999994],[169.78350859600005,-46.38875430899998],[169.91192672900002,-46.338140185999976],[170.23773164100032,-46.15202840799992],[170.31524664300002,-45.98924715399994],[170.4244076890002,-45.93729796299988],[170.6644286830001,-45.90619288699992],[170.61691268000015,-45.83729967799991],[170.75970460300005,-45.75925041299996],[170.69384765400002,-45.68368939999988],[170.8599546800001,-45.4853630099999],[170.91137665000008,-45.395083876999934],[170.87356571700002,-45.355914740999935],[170.9755246960001,-45.148966556999824],[171.07995566600005,-45.065081642999985],[171.1985777010001,-44.917857536999975],[171.21524058900013,-44.74535679599995],[171.19607570300002,-44.55813894199997],[171.26330560700012,-44.463412874999904],[171.29357869500006,-44.34147210899994],[171.5394286320003,-44.167858418999856],[171.86746162200006,-44.06091757199994],[171.95523070900003,-44.004528820999894],[172.18969768700003,-43.90702499199989],[172.07412767000005,-43.757031336999944],[171.93609666800012,-43.70897470099993],[171.62023973400005,-43.46487238999998]]],[[[171.6419217060003,-43.45454957399994],[171.93637058900015,-43.68591055299993],[172.1921996850001,-43.79453046299989],[172.25637874400013,-43.87702615999996],[172.38693258600017,-43.86119509199989],[172.39025869300008,-43.76175437199987],[172.51303060800012,-43.72729955299985],[172.5571896590002,-43.76508047899989],[172.43664565400013,-43.85313924499991],[172.71524067000007,-43.80619538999997],[172.8707886760003,-43.90230195699991],[172.96524065500012,-43.89841090999994],[173.11077865700008,-43.83118921999994],[173.1005247400003,-43.69508069099993],[172.80386370500025,-43.59369385999997],[172.72717264400023,-43.423139564999985],[172.74410962000002,-43.27119326199988],[172.81802359000005,-43.15869068699993],[172.95303358600006,-43.09063700899992],[173.1069026980001,-43.05564138999995],[173.1685785850002,-42.9900895429999],[173.28552273100001,-42.95591786499995],[173.53137166300007,-42.530085163999956],[173.59805272000017,-42.458362726999894],[173.5907747130001,-42.373119274999965],[173.7503966600001,-42.25647520099989],[173.80432163400008,-42.176610583999945],[173.78132672100003,-42.10241129399998],[173.6477966330001,-42.218465449999826],[173.47177163700007,-42.30627460299996],[173.2390896700001,-42.37494334399997],[173.18284559000017,-42.41100312999998],[173.08874464600012,-42.542949205999946],[172.709808693,-42.578546813999935],[172.6528627140001,-42.708242012999904],[172.47702061100006,-42.758515829999965],[172.43756062200032,-42.858159391999834],[172.36817958600022,-42.89479115899985],[172.3824916860001,-42.96189164699996],[172.33377070000017,-43.04047433599982],[172.15858473300023,-43.11169000299998],[172.09089667400008,-43.21419866699989],[171.8883816780001,-43.264125305999926],[171.6419217060003,-43.45454957399994]]]]},"properties":{"objectid":99,"eco_name":"Canterbury-Otago tussock grasslands","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Australasia","eco_biome_":"AU08","nnh":3,"eco_id":190,"shape_leng":31.0843567225,"shape_area":6.07684924448,"nnh_name":"Nature Could Recover","color":"#FCDC79","color_bio":"#FEFF73","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":53599.555912036805,"percentage":0.5058806013271111}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[145.12369299600027,-15.88997554599996],[145.24869004900006,-15.697849810999855],[145.31752960400001,-15.662288849999982],[145.3206999920002,-15.5897400099999],[145.23147999200023,-15.463690009999937],[145.28821999200022,-15.37591000999987],[145.23456999200016,-15.142170009999973],[145.34872999200002,-14.982830009999873],[145.28117999200003,-14.95445000999996],[145.17764999200006,-14.842010009999967],[145.02306999200016,-14.794690009999954],[144.9508699920002,-14.727650009999877],[144.89666999200006,-14.610540009999909],[144.781369992,-14.593260009999938],[144.68293999200012,-14.55208000999994],[144.6188399920003,-14.477170009999895],[144.64713999200012,-14.35142001099996],[144.52418999200017,-14.170740010999907],[144.4579899920002,-14.23710000999995],[144.33942999200008,-14.306210009999916],[144.2609899920002,-14.290050009999902],[144.08478999200008,-14.451980009999886],[143.9757199920001,-14.488400009999964],[143.89740999200023,-14.484290009999881],[143.80354999200006,-14.42923000999997],[143.74234999200007,-14.32551000999996],[143.69850999200003,-14.187540009999964],[143.68031999200002,-14.013930009999967],[143.62212999200005,-13.963110009999923],[143.53174999200007,-13.751770009999973],[143.5582699920002,-13.592780009999956],[143.5872199920001,-13.543570009999883],[143.58286999200004,-13.37593001099998],[143.5397099920002,-13.352950010999848],[143.51593999200009,-13.259950010999887],[143.50302999200005,-12.92634001099998],[143.54068999100002,-12.840860010999961],[143.45004999100001,-12.848770010999942],[143.3512199920002,-12.891320010999891],[143.35675999100033,-12.804740010999922],[143.43617999100013,-12.623540010999932],[143.27419999100005,-12.51453001099992],[143.2722399910001,-12.404480010999976],[143.1803899910002,-12.34315001099992],[143.08440999100014,-12.348120010999821],[143.08583999100017,-12.17356001099995],[143.183929991,-11.99343001099993],[143.10573999100018,-11.896690010999976],[142.96979999100017,-11.930650010999898],[142.85637999100004,-11.844910010999968],[142.85921999100003,-11.635770010999863],[142.83421999100028,-11.558690010999953],[142.83327999100015,-11.430970010999943],[142.86824999100008,-11.382370010999978],[142.7853499910001,-11.220920010999919],[142.78566999100008,-11.074910010999929],[142.71930999100005,-10.968330010999978],[142.6090699910003,-10.93719001099987],[142.59065999100005,-10.868090010999879],[142.51497999100013,-10.858760010999958],[142.60614999100028,-10.74644001199988],[142.54088999100009,-10.708200011999963],[142.42435999100007,-10.725810010999965],[142.35170999100012,-10.88303001099996],[142.2899399910002,-10.91535001099993],[142.18738999100015,-10.916580010999894],[142.12615999100012,-10.982460010999887],[142.15463999100007,-11.120160010999882],[142.11682999100015,-11.372900010999956],[141.95196999100006,-11.86999001099997],[141.93139999200002,-12.074870010999973],[141.85029999200003,-11.984960010999885],[141.74267999200003,-12.205430009999873],[141.59141999200006,-12.56301000999997],[141.75547999200023,-12.53688000999989],[141.82746999200003,-12.649460009999927],[141.75738999200018,-12.827510009999912],[141.6294099920001,-12.915900009999973],[141.58369999200022,-12.997120009999946],[141.619219992,-13.046270009999944],[141.62974999200014,-13.15969000999985],[141.6968099920001,-13.263730009999847],[141.67260999200005,-13.346910009999874],[141.5517399920003,-13.505560009999954],[141.50321999200014,-13.658600009999873],[141.46641999200017,-13.870470008999916],[141.50118999200004,-13.9817200089999],[141.5982499920001,-14.110560008999812],[141.60227999200015,-14.224580008999965],[141.5250699930001,-14.48412000899998],[141.55089999300003,-14.580670008999903],[141.5890599930001,-14.850460008999846],[141.6630442930001,-15.033886451999933],[141.69740579400002,-15.094355486999973],[141.67286532900016,-15.1813297999999],[141.69773733700015,-15.237966435999908],[141.78576250200024,-15.203439685999967],[141.98343157600004,-15.333856770999887],[142.11354465400018,-15.39390645899988],[142.27930859700007,-15.545014812999852],[142.33061908800005,-15.619240093999963],[142.43999066300012,-15.57974330999997],[142.50830499300014,-15.67449664399993],[142.7144666590002,-15.775551412999903],[142.7690560970002,-15.773394626999902],[142.84024674400007,-15.91078577799982],[142.9345411290002,-15.964855805999946],[143.1258288780001,-16.024765781999974],[143.24510826200026,-15.989091344999963],[143.35074152400023,-15.861382997999954],[143.50624386900006,-15.862121891999891],[143.5131549140002,-16.022786717999907],[143.59426963600004,-16.076172475999897],[143.54681656700018,-16.170104763999973],[143.7329160910001,-16.25991123299991],[143.81220678900002,-16.356359019999957],[143.87449614100012,-16.382531642999822],[144.0143110260002,-16.369320407999965],[144.10680967000008,-16.46724158899997],[144.07595097800004,-16.229017380999835],[144.10056234700005,-16.088363243999936],[144.04659439800002,-15.817291796999939],[144.04199282000002,-15.591710669999884],[144.11711462100004,-15.668116877999978],[144.1793507640001,-15.79400612899991],[144.12776709800005,-15.862474721999945],[144.22926458300003,-15.912066821999929],[144.36392127300007,-15.948455835999937],[144.50752481100005,-15.861301792999882],[144.39442654700008,-15.742609759999937],[144.58402694000006,-15.637496031999945],[144.63394789900008,-15.6851170139999],[144.70305173300017,-15.667387542999961],[144.84510247100002,-15.736365606999982],[144.93543010700012,-15.7009752969999],[145.12369299600027,-15.88997554599996]]],[[[142.1983099910002,-10.594490010999948],[142.1267099910001,-10.64467001099996],[142.15425999100023,-10.764800010999977],[142.27834999100014,-10.706370010999876],[142.1983099910002,-10.594490010999948]]],[[[142.276239991,-10.12180001199988],[142.18631999100023,-10.19142001199998],[142.277229991,-10.260800011999947],[142.33191999100018,-10.200030011999957],[142.276239991,-10.12180001199988]]],[[[142.17854999100007,-10.059830011999907],[142.08975999100016,-10.12959001199988],[142.1674199910002,-10.173100011999963],[142.17854999100007,-10.059830011999907]]]]},"properties":{"objectid":101,"eco_name":"Cape York Peninsula tropical savanna","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Australasia","eco_biome_":"AU07","nnh":2,"eco_id":183,"shape_leng":53.9267191581,"shape_area":10.2570907679,"nnh_name":"Nature Could Reach Half Protected","color":"#F8FD6F","color_bio":"#FEAA01","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":123293.13635867524,"percentage":0.5750876707015754}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-69.12181848099988,12.364871468000047],[-69.14979559699998,12.279915347000042],[-69.06224058299995,12.176122575000022],[-69.06856556799988,12.337438337000151],[-69.12181848099988,12.364871468000047]]],[[[-59.46704853299997,13.17691192500007],[-59.52910948499988,13.217555941000171],[-59.60083057999992,13.325211764000017],[-59.64330654499997,13.308092062000185],[-59.638469516999976,13.14504208500017],[-59.61063355199997,13.07086693600013],[-59.530631637999875,13.040791829000113],[-59.44979857599998,13.087008805000153],[-59.46704853299997,13.17691192500007]]],[[[-60.90907249699984,14.65745576400019],[-60.85279455499983,14.484198305000064],[-60.959903542999825,14.489274720000083],[-61.05858251599989,14.551861889],[-61.086864565999974,14.466202526000131],[-60.818977598999936,14.45900196800011],[-60.840469636999956,14.557274419000066],[-60.90907249699984,14.65745576400019]]],[[[-61.25681653799995,15.872355466000045],[-61.20092349299989,15.941891231000113],[-61.27306351599998,16.00037847600015],[-61.321483591999936,15.910697308000067],[-61.25681653799995,15.872355466000045]]],[[[-61.45084753799995,16.491350634000185],[-61.53151648299996,16.423309696000103],[-61.4700585249999,16.357532041000127],[-61.534976532999906,16.242140224000025],[-61.461536476999925,16.2125609900001],[-61.268516500999965,16.303541352000025],[-61.37995960399991,16.341630900000098],[-61.45084753799995,16.491350634000185]]],[[[-61.83070751199995,17.17385296800012],[-61.89908959199994,17.11825345700015],[-61.76935550099995,17.012229926000145],[-61.69472152599991,17.087382405000085],[-61.78554548199986,17.121787267000116],[-61.83070751199995,17.17385296800012]]],[[[-61.84287250299997,17.728144034000024],[-61.83215758099993,17.5971890350001],[-61.74057355399998,17.562780987000167],[-61.7446595639999,17.64417999600016],[-61.84287250299997,17.728144034000024]]],[[[-63.039283569999895,18.12908566800013],[-63.122184615999856,18.037254375000032],[-63.0289646089999,18.019563194000057],[-63.039283569999895,18.12908566800013]]]]},"properties":{"objectid":104,"eco_name":"Caribbean shrublands","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Neotropic","eco_biome_":"NO13","nnh":3,"eco_id":599,"shape_leng":20.275441327,"shape_area":0.262595063429,"nnh_name":"Nature Could Recover","color":"#D98944","color_bio":"#CC6767","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":3136.0236830451427,"percentage":0.011886901834381841}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[115.23000714900024,-21.59291172299993],[115.04967000500017,-21.681129993999946],[114.913340005,-21.692919993999965],[114.77572000500004,-21.791919993999954],[114.64482000500016,-21.849079993999908],[114.61553000600009,-21.975009993999834],[114.47579000600012,-22.15443999399986],[114.37124000600011,-22.490229993999947],[114.2614200060001,-22.440909993999924],[114.18848000600008,-22.521379993999915],[114.1207500060001,-22.469969993999882],[114.18139000600002,-22.344159993999938],[114.08035000600012,-22.15497999399986],[114.14095000600003,-21.943099993999965],[114.16532000600012,-21.78515999399997],[113.99603000600007,-21.874849993999874],[113.94591000600008,-21.95433999399995],[113.81593000600003,-22.317379993999907],[113.75026000600019,-22.407539993999876],[113.70781000600005,-22.525789993999922],[113.65393000600011,-22.582909993999976],[113.71042000600005,-22.71557999399988],[113.76710000600019,-22.775969993999922],[113.82620000600002,-22.953539992999822],[113.82743000600033,-23.04433999299988],[113.77069000600022,-23.12815999299994],[113.79545000700011,-23.302319992999912],[113.77864000700015,-23.47725999299996],[113.75457000700021,-23.52799999299998],[113.61360000700006,-23.631599992999895],[113.56787000700012,-23.751999992999856],[113.47073000700004,-23.89862999299993],[113.45933000700006,-24.014309992999927],[113.42245000700018,-24.04318999299994],[113.44510000700006,-24.145899992999944],[113.39282000700018,-24.238309992999973],[113.40776000700009,-24.48492999299998],[113.62436000700018,-24.74661999299991],[113.62449000700008,-24.876309992999893],[113.68043000700015,-24.92669999299983],[113.66447000700009,-25.018499992999978],[113.6963000070001,-25.08543999299991],[113.81055000700019,-25.16475999299996],[113.88982000700014,-25.334259992999932],[114.00369000800026,-25.617639992999955],[114.23182000800011,-25.874609992999922],[114.25865000800013,-25.982809991999943],[114.19535000800022,-25.982079991999854],[114.25375000800022,-26.156649991999927],[114.1912600080002,-26.167879991999882],[114.23768000800021,-26.28236999199987],[114.20923000800008,-26.37286999199989],[114.08977000800007,-26.46763999199993],[113.98017000800007,-26.353369991999955],[113.93484000800004,-26.18058999199991],[113.87973000800014,-26.071589991999872],[113.77555000800032,-26.21411999199995],[113.7024700080002,-26.13403999199994],[113.70094000800009,-26.04174999199995],[113.76117000800002,-25.877329991999886],[113.60838000800004,-25.716579991999936],[113.57196000800002,-25.637519991999852],[113.47317000800001,-25.557409991999975],[113.4145100080002,-25.72451999199984],[113.51385000800008,-25.854099991999874],[113.55884000800006,-25.94546999199997],[113.58506000800003,-26.09514999199996],[113.69696000800013,-26.221089991999975],[113.81855455600032,-26.268409032999898],[113.87840271900018,-26.218109051999875],[113.9157791340001,-26.334589008999956],[113.96569068500003,-26.372762709999904],[114.02602379200005,-26.491256668999824],[114.0836029410001,-26.506048214999964],[114.13543696500017,-26.590347360999942],[114.19926448800027,-26.597902305999924],[114.26884467700006,-26.74070546099989],[114.37615969200021,-26.646747511999934],[114.48455044100012,-26.745767627999953],[114.66642768100007,-26.553218883999932],[114.7290572620002,-26.612203509999972],[114.70713037100006,-26.703630459999886],[114.65457164700001,-26.710357606999878],[114.52565009700004,-26.863054257999977],[114.56906131500011,-26.90903285299993],[114.6649551490001,-26.913070750999907],[114.67826846100013,-26.775199841999893],[114.86862181700019,-26.63623811399998],[114.8976211910001,-26.52432629499998],[114.9550018560002,-26.485010139999815],[115.07688897800006,-26.53042027399988],[115.23945615700029,-26.712932527999953],[115.39295193800012,-26.760417853999968],[115.39797202800014,-26.630378660999952],[115.4452820030001,-26.522087152999973],[115.45439145600005,-26.359313946999976],[115.51758581000001,-26.200786508999954],[115.58339699300018,-25.945196129999943],[115.48475640900006,-25.900337189999902],[115.43965908800021,-25.845899577999944],[115.59282680100023,-25.592378690999965],[115.53540037100015,-25.52905827299992],[115.50140387400018,-25.166547833999914],[115.55816645800007,-25.111465486999975],[115.50378416700005,-25.05219269099996],[115.62462623300019,-25.002155411999922],[115.67123414100001,-24.839229652999904],[115.66262810500007,-24.714544317999923],[115.6321488230003,-24.645702405999828],[115.51154329500002,-24.553737672999944],[115.46907805900014,-24.462173593999864],[115.46839141200007,-24.38556283199989],[115.38492593,-24.246284434999893],[115.26923370500015,-24.129728370999942],[115.16252134900003,-23.89476971099998],[115.18392940000012,-23.756175947999964],[115.02555853600006,-23.637611412999888],[114.99435421900012,-23.580203925999967],[115.13836671600018,-23.547851623999918],[115.09481049000021,-23.41693685699994],[115.030570914,-23.390699320999943],[115.0446318920001,-23.139673222999875],[115.10849746800022,-23.19517516799982],[115.14505765300021,-23.12041479499993],[115.06877143800011,-23.07481405599998],[114.98101810800006,-22.94564239099998],[115.09197254500009,-22.940156937999973],[115.08979040100007,-22.86835286099989],[115.2288971370001,-22.785099104999972],[115.2538071470002,-22.714168757999914],[115.26349645900007,-22.586549755999954],[115.39159406800002,-22.60160449199992],[115.48819734700021,-22.558053966999978],[115.51264953700013,-22.47904011299994],[115.33125308300009,-22.508344586999954],[115.2281570140002,-22.391586351999877],[115.23094181800002,-22.277030881999963],[115.28762812600019,-22.13696290999991],[115.35653692500023,-22.11950491399989],[115.33665471600034,-21.98015208499993],[115.26839450800003,-21.799133317999974],[115.22259528600011,-21.76353453799993],[115.23000714900024,-21.59291172299993]]],[[[115.43717000500021,-20.665579994999973],[115.32486000500012,-20.80335999499988],[115.30706000500015,-20.86151999499998],[115.39644000500016,-20.885919994999938],[115.47774000500021,-20.73525999499998],[115.43717000500021,-20.665579994999973]]]]},"properties":{"objectid":105,"eco_name":"Carnarvon xeric shrublands","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Australasia","eco_biome_":"AU13","nnh":2,"eco_id":207,"shape_leng":34.7076666949,"shape_area":7.50096814132,"nnh_name":"Nature Could Reach Half Protected","color":"#F27C62","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":84676.92990966457,"percentage":0.3209626122770978}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[139.5501099940003,-16.391140006999933],[139.4635599940002,-16.44684000699982],[139.3094299940002,-16.460450006999963],[139.16074999400018,-16.60959000699995],[139.16614999400008,-16.66868000699992],[139.23001999400003,-16.732180006999954],[139.28873999400003,-16.734740006999914],[139.3822399940002,-16.65584000699988],[139.45151999400014,-16.666400006999936],[139.4780099940001,-16.532180006999965],[139.5762199940001,-16.501070006999953],[139.59830999400015,-16.55376000699988],[139.6996899940002,-16.51055000699995],[139.67553999400025,-16.451400006999904],[139.5501099940003,-16.391140006999933]]],[[[136.67228999400004,-15.665430005999895],[136.61644999400005,-15.711350005999975],[136.68361999400008,-15.77851000599992],[136.72500999400006,-15.698160005999853],[136.67228999400004,-15.665430005999895]]],[[[136.99455999400004,-15.584340005999877],[136.99343999400003,-15.791190005999965],[137.07269999400012,-15.83821000599994],[137.07542999400005,-15.649640005999856],[136.99455999400004,-15.584340005999877]]],[[[136.590439994,-15.51730000599997],[136.51265999400005,-15.54372000599983],[136.51418999400005,-15.653190005999932],[136.59073999400005,-15.645270005999862],[136.590439994,-15.51730000599997]]],[[[135.6486685870002,-14.420222219999914],[135.42359919000023,-14.339977272999818],[135.24719231400002,-14.249868461999881],[135.08738713900004,-14.137163211999962],[134.86466974600023,-13.961563848999901],[134.7100524660001,-13.890706088999877],[134.41702264000003,-13.840551462999883],[134.27415460800034,-13.849065798999959],[133.92973332200017,-13.90290544599992],[133.75335695700016,-13.909429583999895],[133.43470767600013,-13.882845706999944],[133.27656547000004,-14.121561973999974],[133.19462599600013,-14.20210720199998],[133.09594719100016,-14.175127029999885],[133.05654906100017,-14.213320679999981],[132.9863281590001,-14.374080721999974],[132.95841977400016,-14.546582300999887],[132.93959049900002,-14.64646726199993],[132.8559722980002,-14.773215383999911],[132.97256473800007,-14.861936655999955],[133.1214600290001,-14.93444078799996],[133.19445802300004,-14.933683399999893],[133.327819803,-14.99532408399989],[133.4583436370001,-15.002037149999978],[133.48818975000017,-15.111233566999829],[133.59432979100018,-15.19536205899982],[133.669494675,-15.314256672999932],[133.7363433700001,-15.371580172999927],[133.89682010400008,-15.59365366999998],[133.98170464300006,-15.93110372699988],[134.1272582360001,-16.080911638999964],[134.37886050600014,-16.229255734999924],[134.49453730800008,-16.309087661999968],[134.64775078600007,-16.447551674999886],[134.71801762200005,-16.56680302199993],[134.7462005980003,-16.66922183199989],[134.87416074400016,-16.716890386999978],[135.02670283200018,-16.73036362499994],[135.302581776,-16.69962115199985],[135.42419430600023,-16.736412006999956],[135.48608393300003,-16.851154393999877],[135.48762519700006,-16.988422475999982],[135.43403616900002,-17.08536153299997],[135.43493655400016,-17.168602044999943],[135.61640928400027,-17.353645465999932],[135.54045096800007,-17.41730115899992],[135.3968047620001,-17.491195681999955],[135.31616213600012,-17.435123432999887],[135.2758941310001,-17.329895008999813],[135.17176826300022,-17.40458497399993],[135.0904693340001,-17.31630894999995],[135.0212554340003,-17.291843346999883],[134.96688839700016,-17.365236296999967],[134.80773919000012,-17.318592011999954],[134.7081908470002,-17.389186914999982],[134.5168609990002,-17.328445441999975],[134.50303655800008,-17.466980028999956],[134.3132934040001,-17.645765352999945],[134.3223418360002,-17.785614054999883],[134.4691771890001,-17.854093364999926],[134.5670318860001,-17.84023472699988],[134.70684806600002,-17.741378728999848],[134.72912599100005,-17.80498697999991],[134.83204654200017,-17.821048718999975],[134.9348908180002,-17.88515099899996],[135.05601501800004,-17.86913485899987],[135.1088257020001,-17.904411103999905],[135.1988067750001,-17.779705147999948],[135.55065912100008,-17.80260668699998],[135.76457216300003,-17.743003812999916],[135.83843986400007,-17.53420456999993],[135.94934082500004,-17.537260107999884],[136.05970769100009,-17.50258836599994],[136.2215728020003,-17.51588625599993],[136.26640324400023,-17.577297106999936],[136.23995968100007,-17.659669925999935],[136.45550535000007,-17.83377831599995],[136.45216365300007,-17.911394067999936],[136.35462948100007,-18.034744334999914],[136.38316349100023,-18.08085821399993],[136.5261383080001,-18.176183753999908],[136.53646850000018,-18.23807153699994],[136.49687188600012,-18.36499970199992],[136.61100759200008,-18.520534463999923],[136.66508478100002,-18.55732917599994],[136.720871041,-18.81344996199988],[136.62545782600023,-18.943517652999958],[136.71238704600012,-18.986412042999973],[137.03594963200032,-18.978588039999977],[137.09257508800022,-18.899999649999927],[137.08410651500003,-18.82703216599998],[136.95576482500007,-18.689760228999944],[136.99475073300005,-18.66247176899992],[137.11193845700018,-18.709077832999924],[137.22105407300012,-18.700372723999976],[137.37808215600012,-18.757131619999825],[137.47264092000012,-18.823913594999965],[137.61486807100016,-18.836465829999952],[137.7505492900002,-18.788774476999947],[137.80236822700022,-18.740106465999872],[137.9363403760002,-18.697231186999943],[137.98674025800028,-18.612030146999928],[138.1463881620001,-18.62823906199992],[138.32841154200014,-18.683342651999908],[138.46622978300002,-18.68713901599989],[138.60389485300016,-18.618195070999946],[138.5997896780002,-18.507519610999907],[138.64634292900007,-18.396815310999898],[138.7452333780003,-18.358715701999927],[138.9097515510001,-18.464976129999968],[138.84328657600008,-18.515632178999965],[138.86089526100022,-18.59076419299987],[138.92711660900022,-18.62326077599994],[138.993827817,-18.754085215999908],[139.1319178330001,-18.80863060999991],[139.02806883900007,-18.910357692999924],[139.19429523400015,-18.91033181699993],[139.20029235100014,-18.998372984999946],[139.26344740200022,-19.00632234899996],[139.3347498080003,-18.8997699169999],[139.39343390800002,-18.87414239599991],[139.5474227510001,-18.87617644699992],[139.54301345000022,-18.95609041399996],[139.64007358100002,-19.10019328599992],[139.65759094700013,-19.24622292399988],[139.6913124780002,-19.32959059799998],[139.747143477,-19.32937090699994],[139.7671779220002,-19.43168840499993],[139.85184796500016,-19.46005953899993],[139.87430902100016,-19.54887866099989],[139.96435008200024,-19.568386330999942],[140.03647838200015,-19.750243344999888],[140.1200802430002,-19.773876442999892],[140.11324481200006,-19.889844709999977],[140.0147666800001,-20.059991940999964],[140.0468113080001,-20.28456831999989],[140.1450754330001,-20.12643505999995],[140.1287024950002,-20.03096126999992],[140.1818928030001,-19.754110279999907],[140.20136153400006,-19.493498575999922],[140.24043893600003,-19.510422217999974],[140.2593147010001,-19.677583535999815],[140.24572007800032,-19.82207055799995],[140.2065205780002,-19.858405441999878],[140.2146692340001,-19.997402895999926],[140.32277777800005,-20.206032713999946],[140.29735811000023,-20.34476760099983],[140.3280892790001,-20.391102400999955],[140.29214085700005,-20.54106719899994],[140.3940225350001,-20.56643149899992],[140.53394376100005,-20.525790411999935],[140.8402163710001,-20.746089655999924],[140.7825392430001,-20.795047756999907],[140.86028287600004,-20.922703691999914],[140.98721955300005,-20.952058575999956],[140.8847742920002,-21.071888229999956],[140.92420288300013,-21.099468027999933],[140.93703730800007,-21.347415123999838],[140.95632480600023,-21.44870843899986],[140.94488158000001,-21.551993189999962],[141.0147065330002,-21.557206975999975],[141.14275140100017,-21.484353676999945],[141.1868086940001,-21.394531522999955],[141.30638092900006,-21.245123770999953],[141.37013823900008,-21.13178484799988],[141.38779166100005,-21.050578981999934],[141.48293123700023,-20.896607985999935],[141.47493790200008,-20.669306029999973],[141.43328076300008,-20.59479497799998],[141.49774075800008,-20.50627458199989],[141.38542766400008,-20.417560424999976],[141.2537679410001,-20.154548096999974],[141.3462191560002,-20.138025530999982],[141.40099439800008,-20.20159482899993],[141.5420974000001,-20.207338976999836],[141.6276484140002,-20.0773274849999],[141.7587726050001,-20.15673679699995],[141.84823711100012,-20.262044518999858],[141.96642398100028,-20.351885586999913],[142.00617571500004,-20.503375318999872],[142.11662862300034,-20.547738991999893],[142.15835755800003,-20.696412085999896],[142.1982562830002,-20.76098380399992],[142.35288759300022,-20.874279291999926],[142.4401301370001,-20.83640107399998],[142.44231036200017,-20.786933846999943],[142.61753959400005,-20.752761310999915],[142.76636597000015,-20.793821355999967],[142.8513741700001,-20.676716724999835],[142.98751871800016,-20.651716025999917],[142.91109733400015,-20.537758012999973],[142.94517399600022,-20.327997143999937],[143.10366158400006,-20.367267005999906],[143.36297153200007,-20.271256952999863],[143.54529520100004,-20.305429541999956],[143.5202169590002,-20.31745790399998],[143.61534358000006,-20.429534141999852],[143.45035678200009,-20.50446552799997],[143.50180339400015,-20.535959957999978],[143.27271389100008,-20.641756974999964],[143.22738848800032,-20.71942667899998],[143.31776646000014,-20.732997627999907],[143.39359242500018,-20.643453418999968],[143.45821883100018,-20.640943407999885],[143.55000653700006,-20.56445105699993],[143.66972252200003,-20.520054320999975],[143.78882699400026,-20.41867600599994],[143.7497105010002,-20.353493379999975],[143.9282359650001,-20.252292910999927],[143.9748067930002,-20.274583436999933],[144.0921934390002,-20.241329649999898],[144.17942335100008,-20.251990937999892],[144.20298293700012,-20.17346595299989],[144.26936995900007,-20.166616720999855],[144.25775934800004,-20.027201840999908],[144.35042445800002,-19.946637892999888],[144.30673790600008,-19.830269511999916],[144.28504957200005,-19.689502164999908],[144.15277453900035,-19.79099019399996],[144.1026357410002,-19.887656491999962],[144.0355643140001,-19.904334366999933],[144.0993178880002,-19.75267035299987],[144.0332433010002,-19.746855903999915],[143.967417715,-19.82803959099988],[143.89506714100003,-19.80701106899994],[143.86320283100008,-19.746733925999877],[144.00343413600012,-19.644280494999975],[144.09130271800018,-19.604617250999922],[144.06473337000023,-19.538733851999837],[143.97091391000004,-19.61295015199994],[143.88742892400035,-19.601493542999947],[143.71184844100003,-19.517606128999944],[143.54637378000018,-19.296694409999873],[143.70869688300013,-19.129911664999838],[143.6440041090001,-19.041082003999975],[143.54838984900027,-19.026199214999963],[143.53920348800023,-18.96107026699997],[143.41848812800026,-18.91383986099993],[143.30138075300022,-18.950332137999965],[143.21460355300007,-18.875517264999928],[143.20964712600005,-18.826715038999907],[143.11035941700015,-18.769589466999946],[143.01229090100014,-18.818485329999874],[142.85511343500013,-18.692173973999843],[142.79408692500022,-18.841956877999905],[142.72282375800023,-18.850674932999937],[142.6195167310001,-18.737444842999935],[142.62318403400002,-18.656964733999928],[142.55246833600017,-18.65235809899997],[142.47758685400004,-18.374611409999943],[142.52369466200025,-18.241363342999875],[142.42625151000016,-18.236533986999973],[142.24220042600007,-18.188425690999964],[142.18615883700022,-18.111514336999903],[142.2245112400003,-18.06437305499992],[142.38470449700003,-18.03453254799996],[142.40138784600015,-18.00315540699995],[142.54624087200023,-17.993821529999934],[142.60268703800023,-17.958398959999954],[142.67414824900004,-18.075144119999948],[142.8335766560001,-18.24179584599989],[142.9245874610001,-18.273647495999967],[142.9670937840002,-18.38337586499989],[143.0902054720001,-18.369578671999875],[143.24848832100008,-18.304617907999898],[143.18066554200016,-18.213678108999886],[143.16337152400013,-18.07458541799997],[143.27790038900002,-18.057238947999963],[143.31660585600002,-18.01843973099983],[143.4082092240003,-18.02968631099992],[143.41615460900005,-17.961498726999935],[143.5212353830001,-17.89705358599997],[143.55105256900015,-17.825307540999916],[143.47885281100002,-17.743491493999954],[143.54871767200018,-17.655553918999942],[143.69881740100016,-17.750837016999924],[143.79425773800006,-17.689219140999967],[143.92907999400006,-17.65013255399998],[143.9174233970001,-17.500228123999875],[143.8478303380001,-17.455430590999867],[143.98260012200012,-17.375118632999886],[144.0390551160001,-17.38990131299994],[144.02839317300015,-17.1745312889999],[144.00020387300015,-17.08786353299996],[144.03657852700007,-17.001129174999846],[144.10852473100022,-16.958856632999925],[144.06383803300014,-16.891664763999927],[144.17050979200008,-16.878393757999902],[144.13091333900002,-16.808734751999964],[144.25791879300016,-16.75095376099995],[144.1885352070002,-16.619097026999896],[144.11068859400007,-16.61072277999989],[144.10680967000008,-16.46724158899997],[144.0143110260002,-16.369320407999965],[143.87449614100012,-16.382531642999822],[143.81220678900002,-16.356359019999957],[143.7329160910001,-16.25991123299991],[143.54681656700018,-16.170104763999973],[143.59426963600004,-16.076172475999897],[143.5131549140002,-16.022786717999907],[143.50624386900006,-15.862121891999891],[143.35074152400023,-15.861382997999954],[143.24510826200026,-15.989091344999963],[143.1258288780001,-16.024765781999974],[142.9345411290002,-15.964855805999946],[142.84024674400007,-15.91078577799982],[142.7690560970002,-15.773394626999902],[142.7144666590002,-15.775551412999903],[142.50830499300014,-15.67449664399993],[142.43999066300012,-15.57974330999997],[142.33061908800005,-15.619240093999963],[142.27930859700007,-15.545014812999852],[142.11354465400018,-15.39390645899988],[141.98343157600004,-15.333856770999887],[141.78576250200024,-15.203439685999967],[141.69773733700015,-15.237966435999908],[141.67286532900016,-15.1813297999999],[141.69740579400002,-15.094355486999973],[141.6630442930001,-15.033886451999933],[141.62871999300012,-15.160340008999924],[141.47205999300002,-15.52127000799993],[141.43529999300017,-15.66158000799993],[141.41427999300004,-15.846230007999964],[141.37554999300005,-15.919030007999936],[141.430859993,-16.08293000799989],[141.3510799930001,-16.217860007999946],[141.29026999300004,-16.397080007999875],[141.30486999300012,-16.457180007999966],[141.23540999400007,-16.589810007999915],[141.20705999400002,-16.69108000799997],[141.09419999400006,-16.808080007999877],[140.95903999400002,-16.996430006999958],[140.94978999400007,-17.151290006999943],[140.9128099940001,-17.232360006999897],[140.88285999400023,-17.3820800069999],[140.84463999400032,-17.43841000699996],[140.7106299940001,-17.509240006999903],[140.5960299940001,-17.596500006999918],[140.3862899940001,-17.677920006999898],[140.12324999400016,-17.719550006999953],[140.00347999400014,-17.714570006999907],[139.9350999940002,-17.629590006999877],[139.81773999400002,-17.570360006999977],[139.7567499940002,-17.577850006999938],[139.62155999400022,-17.522020006999867],[139.53319999400003,-17.439630006999835],[139.41574999400007,-17.37430000699993],[139.34101999400002,-17.375460005999912],[139.2412099940002,-17.32296000599996],[139.15599999400013,-17.16731000699997],[139.15327999400006,-17.037060006999866],[139.08298999400006,-16.995700006999982],[139.0389399940001,-16.91331000699995],[138.8952099940002,-16.88423000699993],[138.62812999400012,-16.768050006999886],[138.4276199940001,-16.777780005999887],[138.1937499940002,-16.696540005999907],[137.86152999400008,-16.423580005999952],[137.7255799940001,-16.23112000599997],[137.57057999400013,-16.174720005999916],[137.46440999400022,-16.159740005999936],[137.32102999400013,-16.09945000599987],[137.2506199940001,-16.01022000599994],[137.04877999400003,-15.92196000599995],[137.00823999400018,-15.877420005999909],[136.81331999400015,-15.900330005999876],[136.70691999500013,-15.932000005999953],[136.71412999400013,-15.856410005999976],[136.62543999400032,-15.772070005999979],[136.54430999400006,-15.741430005999973],[136.40928999400035,-15.625420005999956],[136.33884999400004,-15.61236000599996],[136.27067999400003,-15.536780005999901],[136.24058999400017,-15.41742000599993],[136.16337999400002,-15.391100005999931],[135.920589994,-15.243700005999926],[135.86271999400014,-15.182180005999896],[135.63788999400003,-15.044070005999913],[135.57784999400008,-15.043740005999894],[135.47390999400022,-14.973300005999874],[135.4139399940002,-14.868940005999889],[135.37932999400005,-14.723680005999938],[135.42504999400012,-14.727610005999964],[135.51676999400001,-14.650660005999896],[135.5375499940002,-14.559310005999976],[135.62099999400016,-14.423710005999908],[135.6486685870002,-14.420222219999914]],[[142.17051014800018,-20.066133682999975],[142.2313413530003,-20.070344451999972],[142.31618106900032,-20.131624082999906],[142.44340181500013,-20.160466741999926],[142.50974393800004,-20.27617800199988],[142.58864147200018,-20.245993590999888],[142.70378531000006,-20.40676737899986],[142.87107873300033,-20.452453385999945],[142.91440226700013,-20.58002179899995],[142.84909910300019,-20.63171206699991],[142.5892462610002,-20.61657995099995],[142.5096038470001,-20.544811249999952],[142.33225600700007,-20.485328119999963],[142.25921109100022,-20.33712799199992],[142.17051956400007,-20.247598376999974],[142.0859350720001,-20.242182106999905],[142.10299953400022,-20.0684780549999],[142.17051014800018,-20.066133682999975]]]]},"properties":{"objectid":108,"eco_name":"Carpentaria tropical savanna","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Australasia","eco_biome_":"AU07","nnh":2,"eco_id":184,"shape_leng":136.211134954,"shape_area":31.1519326935,"nnh_name":"Nature Could Reach Half Protected","color":"#C5FC7D","color_bio":"#FEAA01","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":368033.363246998,"percentage":1.7166523284350736}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[54.039958502,38.283672614000125],[53.983341596000116,38.482384237000076],[53.982971619000125,38.560121695000134],[54.05484057100006,38.65870008500019],[54.109928618000026,38.79980003800006],[54.27956056900018,38.91780516400007],[54.19530148700005,39.00730478000003],[54.04140052500003,39.03092448000018],[53.95959851400005,39.087163530000055],[53.86588246600013,39.24142022000018],[53.652400589000194,39.44096835700009],[53.66516857500005,39.494277597000064],[53.76491154600012,39.54424597700017],[53.80290956300007,39.645364251000046],[53.63237354000006,39.792293315000165],[53.67643351700008,39.84444266600019],[53.80674361300004,39.80259618200006],[54.024711485000125,39.76689866200019],[54.056560537999985,39.84717466400008],[53.975234619,39.91272198500019],[53.77039750200004,40.00420056700011],[53.59095352700018,40.02885040400014],[53.42497256600012,39.985352014000114],[53.49332447200004,39.94439049200008],[53.399852505000126,39.77908276500011],[53.460578555000154,39.67703393100015],[53.570850538000116,39.68034880700014],[53.52360962900019,39.58746524900016],[53.283378584,39.54882668700009],[53.20675256600009,39.565447666000125],[53.09268961600009,39.43336932400007],[53.15652049100015,39.33962075400012],[53.22829858400007,39.39320894300016],[53.528999527999986,39.30201936900016],[53.562229583000146,39.20661554100019],[53.64935259400016,39.11223413800013],[53.77118255100004,39.04556515000007],[53.88050050600009,39.02375745000012],[53.93259453700017,38.93580697800007],[53.98895261000001,38.9262050050001],[53.85137959499997,38.63717049600007],[53.83381246700009,38.49525498500009],[53.86897253900008,38.38142572200019],[53.86236156400014,38.21088081400006],[53.8238026300001,38.051280493000036],[53.813014618000125,37.81221403000012],[53.88380448400011,37.498480735000044],[53.91860162000012,37.26432338400008],[54.00971961300013,37.034882196000126],[54.03365749,36.87335940100019],[54.13351462300011,36.83572817600003],[54.61956761000005,36.94614600400007],[54.82960150800005,37.00621457800008],[54.95365551900011,37.11588541100008],[54.97396453500005,37.328478136000115],[54.904388536000056,37.56499650100005],[54.74589948700009,37.64958482399999],[54.39796450699998,37.63844309500013],[54.29234347400012,37.669814715000086],[54.156009472,37.872962711000184],[54.10945856100011,38.16504873500014],[54.039958502,38.283672614000125]]],[[[53.05097959000011,40.00688244100013],[53.08998159100014,40.12284020400017],[52.97843958200008,40.291057961000035],[53.04470053799997,40.503725452000026],[53.137565488000064,40.653411994000066],[53.19519056900015,40.689830525],[53.647754500000076,40.730681909],[53.74142059200017,40.60140345800005],[54.149490531000026,40.659210930000086],[54.36687049600005,40.65032192100011],[54.57163653500004,40.66715261500019],[54.67678047000004,40.70760736800014],[54.788150482,40.81643112600011],[54.87420262100011,40.97382030100016],[54.89078856300017,41.087829104000036],[54.828441620000035,41.18138740500012],[54.53836054700014,41.38946932500011],[54.40966061500018,41.435214902000155],[54.31087150400015,41.50160527500003],[54.38092057700004,41.55079581500007],[54.37710949400008,41.61209334400007],[54.19770860199998,41.72085323100015],[54.04988854300012,41.92004379600013],[54.036800536000044,42.00648016100001],[53.884590539000044,42.15680104500012],[53.75946062700007,42.20576946500012],[53.55868957000007,42.17484795300015],[53.42089460200003,42.210477747000084],[53.2799104880001,42.13622816700018],[53.20101163300018,42.139558967000085],[52.99551050100007,42.06415469600012],[52.75423859200009,41.73344117400012],[52.818172564,41.59902444800019],[52.77970449000003,41.46550358000019],[52.72232449500018,41.418044909000116],[52.77017259000007,41.38291635300004],[52.85692947900003,41.15556644900016],[52.88756952600005,41.16844859600013],[52.81795161700012,41.37652632500016],[52.95190063300009,41.67526389200009],[53.17384353800003,41.73743213300003],[53.33802054600011,41.702302571000075],[53.365390478,41.66858468900017],[53.51226455600005,41.666791800000055],[53.715530569000066,41.62732527400004],[53.827079619000074,41.57456454600003],[54.08678853100008,41.38726136400015],[54.12298946800013,41.25953842600018],[54.231639552000104,41.068942329000095],[54.27389959900006,40.91194995300009],[54.22813055200004,40.84599460100003],[54.23260849999997,40.74360177500017],[54.066020521000155,40.72117213700011],[53.99960751700013,40.67914242500012],[53.759216546,40.65594165200008],[53.68202961100019,40.75633187400018],[53.648208632000035,40.873880523000025],[53.53062058800003,40.86244056600003],[53.48463847300013,40.76590669000018],[53.329929495000044,40.79395119700018],[53.04108056200016,40.87140048499998],[52.94001358500009,40.949169627000174],[52.83125654700018,40.73188387400006],[52.85485847799998,40.661533890000044],[52.73855957100017,40.49833454700013],[52.7063785950001,40.290128240000115],[52.76691052100011,40.150598888000104],[52.733760596000195,40.079329577000124],[52.771926587000166,40.001369664000094],[52.909358618000056,39.987984770000025],[53.05097959000011,40.00688244100013]]],[[[47.94558348300012,45.63648243800003],[47.90440352799999,45.607448363000174],[47.92341653400018,45.46171523000015],[48.043117488,45.451534235000054],[48.04475346800001,45.60430548500017],[47.94558348300012,45.63648243800003]]],[[[52.09153347500012,49.07482378100019],[52.01906152800012,48.99650713300019],[52.010002535000126,48.87812800500012],[51.87452348700003,48.848525638000126],[51.88360561400003,49.11592042000012],[51.77531461000012,49.24645984400007],[51.69052562400003,49.29479727400002],[51.66884247900015,49.15824500700006],[51.68324661200012,48.98345701300008],[51.51826862900009,48.93994957100006],[51.05109755600017,49.14023481200019],[50.96239455600005,49.15595171900003],[50.84632447600006,49.110640323000155],[50.7940675000001,48.970913830000086],[50.703414535000036,48.948349746000076],[50.515712542000074,48.955189547000145],[49.84173561000017,49.084376133000035],[49.41565346400006,49.20965541000004],[49.228706511999974,49.20590232900008],[48.47992360800015,49.14839878600014],[48.165031599000145,49.207332450000024],[47.880050579000056,49.10611241900011],[47.743190528000184,49.12116145600015],[47.33967548300012,49.27405625500012],[47.25042749300019,49.257908015000055],[47.233093549000046,49.17250011000016],[47.43613861600005,48.97287486000016],[47.454360538000174,48.88676488600004],[47.38499861300011,48.84765241100007],[47.23230749400011,48.90559801700016],[47.04780956800016,48.916466160000084],[46.969619487000045,48.883502985000064],[46.94796349900008,48.765032830000166],[46.83745548200011,48.66968784300019],[46.83148957800012,48.61338911400003],[46.970794462000015,48.494686110000146],[46.91348252900008,48.41329146000004],[46.99382357300004,48.21324376100006],[46.95646660400007,48.157548362000114],[46.832153592,48.118614924000155],[46.695857476000185,48.13205782100016],[46.568492614000036,48.255186134000155],[46.486625559,48.27623929600003],[46.391742583000166,48.21108056000003],[46.32468450800013,48.11368686800006],[46.32468450800013,48.02437601300005],[46.19895160100009,47.89864226900016],[45.86803456700011,47.763849028000095],[45.48250155400018,47.67179242900005],[45.086212547,47.73437674800016],[44.83527747700015,47.661725261000015],[44.699172468000086,47.58178386500009],[44.619808585000044,47.47567316200019],[44.64353959700014,47.20924950700015],[44.58537254200019,46.91506985100017],[44.59326561299997,46.76683405],[44.65816451000006,46.503397035000035],[44.76982855900013,46.27773005000017],[44.959739519000095,45.94487394600014],[45.17390452100017,45.619304230000125],[45.367683562000025,45.45855709600016],[45.71919258600008,45.235496045000104],[45.81602452200008,45.13693173700011],[45.82545852200013,45.01970595900002],[45.75780147600017,44.878298726000025],[45.80065546400016,44.82628566400018],[45.99774954700018,44.766775996000035],[46.21156351600007,44.74300692999998],[46.594314575000055,44.788863987000184],[46.74495648600015,44.68973088300004],[46.67230952500006,44.49782100700003],[46.76745653199998,44.502127964000124],[46.82187251800008,44.52994917700016],[46.83363350100018,44.661581937000165],[46.92068459500001,44.71859279300014],[46.93351360100013,44.80514767800008],[47.01766254400013,44.84039592800008],[47.14575562700003,44.81961769300011],[47.17357650500014,44.90258679900012],[47.31692850700006,45.170126923000055],[47.409820614000125,45.21997795700008],[47.56249647700014,45.48548127800012],[47.58562047200019,45.60345019500011],[47.55477959400014,45.72938544100009],[47.765266617000066,45.67867643500017],[48.06415556200005,45.74424370500009],[48.21443151900007,45.72839771700012],[48.28527050300005,45.83091392500006],[48.40193150800019,45.866176760000144],[48.45860256100019,45.9339640610001],[48.651565540000036,45.9664731040001],[48.780918590000056,46.04279435600017],[48.941093575000195,46.08588857000012],[49.11388349100008,46.291471007000155],[49.23693050100019,46.30174034700019],[49.216899596000076,46.39523159200007],[49.350490537000155,46.44901072100009],[49.61297955800006,46.430356628000084],[49.84297562800009,46.499563991000116],[49.95454060400016,46.61191854200007],[50.39960457500007,46.816219385000124],[50.893012515000066,46.96644723000003],[51.064479599000094,46.976140230000055],[51.34804156300015,47.029423486000155],[51.58860754900007,47.018246218000115],[51.68262450700007,46.882312703000025],[51.962551575000134,46.81083317400004],[52.341884494000055,46.76748213800016],[52.473499485000104,46.851802408000026],[52.60997363300004,46.87426372900018],[52.619461612000066,46.800853345000064],[52.71038061900009,46.742632980999986],[52.928218571000116,46.77736222300007],[53.017749534000075,46.672652639000034],[53.007125472000155,46.47870897800004],[53.057250594000095,46.39935163300004],[52.98574055500012,46.35782030800016],[52.909046476000185,46.20198195300014],[52.976837633000116,46.109406681999985],[52.9037554840001,45.86185873800008],[52.924026613000194,45.75968954100017],[52.83874862800002,45.75020977600013],[52.719478504000165,45.66881546100018],[52.741935467000076,45.519149372000186],[52.713176486000066,45.48931817800019],[52.767208581000034,45.349547931000075],[52.62649956100017,45.36899897600017],[52.56194650100019,45.42573909600014],[52.43484147700019,45.43672911200014],[52.30252056200004,45.41094503700003],[52.054470543000036,45.413448040000105],[51.933776501000125,45.39360690200016],[51.73133862000003,45.44012009500011],[51.56772956900011,45.349750103000076],[51.42601053000004,45.365229969000154],[51.282039608000105,45.25381787900011],[51.23704957500007,45.15820970100009],[51.248104467000076,45.068117820000055],[51.16477946400005,45.06404086300017],[51.07513048400017,45.001337857000124],[50.95244959600018,44.97822878200003],[50.870319518000144,44.89710889000014],[50.86609252400018,44.81038988800003],[51.05779251700011,44.814448908000145],[51.17501058300007,44.75185268800004],[51.267463478000025,44.57025791700005],[51.421054478000144,44.58464008900006],[51.492423534000125,44.526691131000064],[51.581394586000044,44.42216812800007],[51.81177555400012,44.39974905100007],[51.95526853900003,44.366512123],[52.18119452500014,44.382690370000034],[52.33604851000018,44.31657039700019],[52.51916862000019,44.287429537000094],[52.708770623000134,44.19902040700015],[52.96580151600017,44.12911952600007],[53.08129861000015,44.146079636000195],[53.10472854400001,44.25585155500016],[53.32806049800007,44.40158016200013],[53.36333456500017,44.50825111200015],[53.49384347900008,44.576727908000066],[53.5622025940001,44.77529100300018],[53.68657260300017,44.87491880800013],[53.86580250300017,44.926867664000156],[54.04021850900011,44.93636972500008],[54.18273148200012,45.03847790200007],[54.45497150700004,45.12765799900018],[54.66318150200004,45.06587884600009],[54.806980595000084,45.178080846000114],[54.82057956300008,45.26948902099997],[54.909732502000054,45.375389171000165],[54.76897050800005,45.54172820700006],[54.57509960200014,45.64907038000007],[54.50350155300015,45.70949568700007],[54.41915848400009,45.68885038900015],[54.27590958000019,45.7096554470001],[54.17639962499999,45.79792057500009],[53.985649469,45.92080011400009],[53.83200046700006,45.92319901500008],[53.78351551500015,46.01055940100014],[53.50883049000009,46.00064109500016],[53.46936748400003,46.08359947300016],[53.63616149000012,46.25747803100006],[53.62593053900014,46.430723588000035],[53.74932858200009,46.614493295000045],[53.92287857000014,46.68873181100008],[54.028049494000186,46.69868783600009],[54.029571480000186,46.776195127000165],[53.91473052200007,46.98503611200016],[53.94327559600009,47.12187386600016],[54.07588954200003,47.17861733900014],[54.13698959300007,47.2557057030001],[54.056648548,47.430567794000126],[54.076751537000064,47.551067543000045],[54.00944854199997,47.66949930800013],[53.88199248400008,47.75832921000011],[53.686859599000115,47.82852044000015],[53.62474047600017,47.89697896400014],[53.51830656700014,48.12044201200018],[53.52875863200018,48.25859991600004],[53.38755457700006,48.26452508300008],[53.21855562700017,48.369765075000146],[53.168189609000194,48.42848567100003],[53.12979848100019,48.62619146500015],[53.00833850100008,48.791476896],[53.02128954700015,48.857467620000136],[52.874328465000076,48.91006909200013],[52.680988469,48.86998783600012],[52.468418543000155,48.86182755100003],[52.39337150800009,48.88560885400011],[52.23371553100003,49.02829952400003],[52.09153347500012,49.07482378100019]]]]},"properties":{"objectid":110,"eco_name":"Caspian lowland desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Palearctic","eco_biome_":"PA13","nnh":3,"eco_id":815,"shape_leng":74.6646166566,"shape_area":31.3331728805,"nnh_name":"Nature Could Recover","color":"#B85349","color_bio":"#CC6767","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":267901.5134724172,"percentage":1.015463948549239}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[66.14120448900002,31.277779370000133],[66.29222157400011,31.305161372000157],[66.38275953900006,31.357106540000018],[66.4085766390001,31.43905674299998],[66.32170055900013,31.5176959260001],[66.20539058900005,31.48549500100006],[66.06064551400004,31.39265016800016],[66.03004452700009,31.320404701000086],[66.14120448900002,31.277779370000133]]],[[[60.88005853900006,32.6200452760001],[60.984939618,32.62405417300005],[61.20190048800009,32.77190340100009],[61.254226530000096,32.88531407200003],[61.162666475000094,32.90102242900008],[61.03438563800006,32.84939594000019],[60.942733550000185,32.77732330800012],[60.88005853900006,32.6200452760001]]],[[[61.26105157800009,34.011951998000086],[61.33693663600013,34.03712821800019],[61.61741657400012,34.252286476000165],[61.69603362900017,34.38649968900006],[61.60620460500013,34.41624203400005],[61.289924553000105,34.27314500900019],[61.16365051100013,34.03173044000016],[61.26105157800009,34.011951998000086]]],[[[70.11562352600015,35.04042878500013],[70.04158751600016,35.02869093600003],[69.91171260800019,35.06289228600008],[69.91546652700015,34.98866801800017],[69.78327955600008,34.93963941700008],[69.72408253200007,35.055954417000066],[69.70617660700009,35.17219247100013],[69.54818762300005,35.128583608000156],[69.4102095940001,35.19947757700015],[69.43777448900005,35.26722213100004],[69.51509050499999,35.295358168],[69.65459454300003,35.27040289500013],[69.61019157800007,35.39774194200004],[69.80059053300005,35.52804550000013],[69.87590059200005,35.61620049000004],[69.8234935800001,35.66279247300014],[69.61867557300013,35.53295042200011],[69.4032365220001,35.44136974800006],[68.97206857200018,35.33174551800016],[68.91969257300008,35.232245957000146],[68.73943354300002,35.17997423000014],[68.45272048600009,35.04460146400015],[68.23769348900004,34.96849663300014],[68.25910958700013,34.911220071],[68.41601562900007,34.94902698100003],[68.46183060900006,34.89769050600012],[68.27166752200009,34.79461908100018],[68.23436755000012,34.747700372000054],[68.26280248600006,34.647928902],[68.48870064400012,34.810705629000154],[68.60488153300014,34.785605182000154],[68.94977555900016,34.98792387300011],[69.00595057200013,34.954477900000086],[68.85859654600006,34.8098964400001],[68.81482658300007,34.65511973700018],[68.80928061300017,34.481437315000164],[68.70567358400012,34.47730621000005],[68.66050753100006,34.5816805180001],[68.51522048300012,34.56613996700008],[68.49523953400006,34.46596583000019],[68.67150157000015,34.317451582],[68.51068151400017,34.28224255900011],[68.40789758800008,34.32973039900014],[68.21170858300013,34.31935175900014],[68.11108350000006,34.37844317100013],[68.04039757000015,34.369372108000164],[67.82580559300004,34.24603458200016],[67.80612153200002,34.201735720000045],[67.81018055200013,34.02297688300018],[67.92879454000013,34.05103714800015],[68.06888564700012,34.05046784900003],[68.12234458700004,34.15576617800019],[68.22600559500006,34.10117970400006],[68.2719265230001,34.019771811000055],[68.18363155500015,33.93503915100018],[68.08083354700017,33.89515319500009],[67.9237675780002,33.785724431000176],[67.8926006440002,33.616043362000084],[67.94831062800017,33.61550625000001],[68.01653261500007,33.717508480000106],[68.08631849700015,33.71935434200003],[68.01245850700013,33.56111373300007],[68.0079956460001,33.39323779100016],[67.90779854300007,33.40509332300019],[67.79588354000009,33.26433568700003],[67.7219466040001,33.23785842800015],[67.62467947900006,33.284285120000106],[67.58280952600006,33.34734418900007],[67.48774751200011,33.34665821400006],[67.44424459600015,33.393847658000084],[67.43984962900004,33.50240755400006],[67.34143854200016,33.51438127000006],[67.12023156800012,33.459344688000044],[67.14905559200008,33.37105542],[67.21833051300007,33.30411754100015],[67.37762455900008,33.293390715999976],[67.30375652300012,33.13515044300004],[67.16413161800011,33.102806355000155],[67.11799661700019,33.17130544700012],[67.03554551200017,33.155710748000104],[67.00511953799997,33.08204387700016],[66.87757161500008,33.039061310000136],[66.87067448200003,32.97844003400019],[67.00002250300008,32.948499205000076],[66.98740354800003,32.87603329300015],[66.89484353200015,32.796739651000166],[66.61788952500012,32.727914],[66.55241361800012,32.661901819000036],[66.44300061200005,32.69032485200012],[66.47197752200009,32.83407650400005],[66.56816053200004,32.94225820800017],[66.63391857400006,32.97677622600003],[66.6612925290001,33.11898778600005],[66.73783154200015,33.19720267800017],[66.85440856100007,33.27095722300004],[66.94075054500007,33.35699477700007],[66.8502885200001,33.421068895000076],[66.77655761100004,33.40749641400015],[66.6043095010001,33.435972589000016],[66.525184503,33.39338983900012],[66.47716558500008,33.17101140900013],[66.40018451000003,33.21307800200009],[66.37523661300003,33.28444186100006],[66.22170261000014,33.16092563299998],[66.07795749700011,33.11827901300012],[66.04821062600007,33.27238751100009],[66.16191063900015,33.413268193000135],[66.3465725160001,33.44435315100014],[66.50273156300011,33.546561408000116],[66.80812855300013,33.51561726600005],[67.02214854800013,33.541522542999985],[66.97406760500019,33.61132133300009],[66.77638259700012,33.569330513000125],[66.67817653200007,33.594213031000095],[66.65229757300011,33.64402735200014],[66.87268848600007,33.734814930000084],[67.06164558500012,33.77478789100019],[67.26541853600014,33.75273543900005],[67.42545354300012,33.83801895700003],[67.36219062600003,33.88531149900007],[66.98452754900018,33.919970669],[66.9170684840002,34.00135123700005],[66.99762762600005,34.04689397300007],[67.27995258800013,34.130406730000175],[67.3527225950001,34.19547594700015],[67.51979052200016,34.23826472500008],[67.65928651300015,34.3684794350001],[67.81275161700017,34.381220095],[67.94447356100005,34.46315772500009],[67.77899953700012,34.494955816000015],[67.66712158100006,34.45589095000008],[67.57457749100007,34.463966579000044],[67.53067056800012,34.4123052220001],[67.41912855900006,34.44344734500015],[67.28182259100004,34.333915316000116],[67.145370572,34.2903294190001],[67.07994059700019,34.326015540000185],[66.9910275470001,34.20256770800012],[66.87967664600006,34.159240980000106],[66.81036350300013,34.211855695000054],[66.86037463200012,34.286843386000044],[66.68714147999998,34.35249263100002],[66.61901052100018,34.29346525700004],[66.687080627,34.16342572900004],[66.74996149700002,34.104654505999974],[66.77522254200017,34.01612601800008],[66.70201147900013,33.910922907000156],[66.6280215700001,33.855798483000115],[66.42084456000009,33.78881819100019],[66.30570956500009,33.80539172900012],[66.31822156700008,33.90792805300015],[66.48892254500015,34.06697768400011],[66.51608259400018,34.196284969000146],[66.48783859800005,34.22159144300019],[66.25065655399999,34.10675232900013],[66.03074659500004,34.157787893000034],[66.08959962500006,34.04431502900019],[66.061035608,33.92637259900005],[65.99357553700008,33.847341645000085],[65.90898855500018,33.586683232000155],[65.75196851800013,33.418532028000186],[65.62885261000014,33.36868652600015],[65.55197949400008,33.3806840470001],[65.5027995150001,33.51772598500014],[65.53070857000012,33.58263225800016],[65.72433455700013,33.803382083000145],[65.76950061000014,33.94679493800004],[65.68981151000014,34.0545649230001],[65.48810553600015,34.20566063000007],[65.41108657400008,34.23340104200008],[65.25926952100008,34.241773893000186],[65.26850151600019,34.152161289000105],[65.20259058800013,34.04602007600016],[65.339614589,34.02662669900019],[65.45481161000015,34.038700160000076],[65.55364950400008,33.97948586900009],[65.54759961400003,33.89743826900013],[65.42877959800006,33.85647339400009],[65.41860162100005,33.764122086999976],[65.37134562400007,33.725126288000126],[65.19831850000014,33.803675953000095],[65.16655762500005,33.77002395300019],[65.20374259700014,33.59922876200005],[65.13795454799998,33.550387076000106],[64.89669755800014,33.526934847000064],[64.78762049900007,33.46514680900003],[64.70680956500013,33.30500652500018],[64.65473950600011,33.26138659800017],[64.57772054400004,33.28912986000006],[64.5390925430001,33.369591436000064],[64.45358254600006,33.42254494800005],[64.28251662000002,33.339379202000146],[64.36477661700008,33.26902351799998],[64.29649361100019,33.13837328400018],[64.12621357100016,33.09250382200008],[64.04144252300011,33.154097902000046],[63.96858953500009,33.13342242900006],[63.91229248200011,32.94915517300018],[63.80828848599998,32.846173266000164],[63.704357581000124,32.85920779600002],[63.69879149400015,32.918985853000095],[63.61667248000015,32.97359914900011],[63.61053458000015,33.09635966500019],[63.715412641,33.19224377600017],[63.91984558300004,33.31059809300007],[63.99478164100009,33.3872718880001],[64.06805456300003,33.521125182000105],[64.15409848700006,33.55128310200013],[64.25785052300012,33.539668465999966],[64.4183195440001,33.57771426000005],[64.57745349700008,33.65577308000019],[64.74324754200012,33.767227079000065],[64.81949654099998,33.876930769000126],[64.6102295880001,33.82699424000009],[64.53661351200003,33.78335537000004],[64.2275546360001,33.68371449000011],[64.11769856300009,33.67199977400003],[63.690158637000195,33.528555907000055],[63.592033540000045,33.50904048900003],[63.40785261700012,33.37199855100016],[63.26591849800002,33.343797135000045],[63.254104541000174,33.39599158200019],[63.60057050900002,33.58552720000006],[64.27207159500011,33.77408984600004],[64.44754757600009,33.836065136000116],[64.53781849400008,33.84645685200019],[64.700134552,33.913272690000156],[64.77252150600003,33.966856185000154],[64.78458356800007,34.029259621999984],[64.48136855500007,33.99876139700018],[64.18208348200017,33.89262035100012],[64.02217051600007,33.86463619400013],[63.80892953400013,33.78865440900012],[63.5044245470001,33.73944962000007],[63.37500360300004,33.653369151000106],[63.10825758100003,33.530806783000116],[62.96433661500015,33.489578883000036],[62.87862360900016,33.52962493500007],[62.96385549400003,33.59553703600011],[63.094787527,33.64018274],[63.1497575570001,33.70404664],[62.877967641000055,33.637000635000106],[62.8093605900001,33.68393241900014],[63.022777591000136,33.75849615400017],[63.37926060400008,33.80834467300002],[63.54953762600002,33.854215644000135],[63.5712014930001,33.911532942000065],[63.86522658700011,33.97292099500015],[64.36812552300006,34.14580227500011],[64.55879957100012,34.15724189600007],[64.79721861600012,34.18909413400013],[64.79262550100015,34.284749419000036],[64.37009460000019,34.23187486500018],[64.16573357400006,34.229536984000106],[64.030731624,34.27628084700012],[64.00556948600018,34.34107899300017],[63.885864509000044,34.373919290000174],[63.944045478000135,34.46859774799998],[63.860481592000156,34.50202058700006],[63.52608858200017,34.46801772000015],[63.03300049600017,34.541692805000025],[62.69293947500012,34.485019237000074],[62.664600596000014,34.451012180000134],[62.49457151000013,34.451012180000134],[62.364215482000134,34.52469112099999],[62.41812151300019,34.65183889200006],[61.9164696360001,34.70038352300003],[61.71243248700006,34.90441530700008],[61.53673555900019,34.915747808000106],[61.36990752300011,35.027912927000045],[61.45874060900019,34.8703430380001],[61.46669050900016,34.76202772700003],[61.516559480000126,34.69234661900015],[61.662361512000075,34.61625251600009],[62.07374951200006,34.54090272700006],[62.29534155100009,34.44701032400013],[62.593204550000166,34.38977684500014],[62.729415506,34.40613329100006],[63.03649155800019,34.49274802300005],[63.07947563400012,34.44981826200012],[62.847000532000095,34.36966916200004],[62.7667575550002,34.30696196500014],[62.512229498000124,34.31842455300011],[62.417808532000095,34.283402447000185],[62.283233556000084,34.2829144530001],[62.11736256600017,34.21585336000015],[61.95845458900004,34.07765522200003],[61.753967500000044,34.01801798100007],[61.582561603000045,34.02506263600003],[61.46639663899998,33.977116976000104],[61.48342162600011,33.86798225000001],[61.56107761200013,33.805906880000066],[61.775958596000066,33.73734375099997],[61.91844960900005,33.775607641000136],[62.07621362400005,33.87935666000004],[62.12474853100014,33.84969059000019],[62.014320477000126,33.74054463200008],[61.81808855600019,33.628467856999976],[61.78103652100003,33.535735677000105],[61.841854605000094,33.50833138000007],[61.93997953400003,33.52784294200012],[62.15287350400007,33.60667155600004],[62.27450950400015,33.551863297000125],[62.189388595000196,33.455880950000164],[62.06195449699999,33.38282411500006],[61.77933851500006,33.33080451500007],[61.54061151900004,33.40348735000009],[61.44542662599997,33.34550218200013],[61.348415484999975,33.3461122170001],[61.26904657300014,33.276301189000094],[61.306278484000075,33.20720044400014],[61.40599463300009,33.14088735200016],[61.43556950800013,32.99303778900003],[61.497672538000074,32.97950000900005],[61.67691450799998,33.054620972],[61.66586648900005,32.96937249100017],[61.580047535,32.87907408000012],[61.55619062700015,32.79582485000003],[61.63492553200018,32.739551602000176],[61.73665652300008,32.861000685000135],[61.753154623,32.91654102000007],[61.94808148100009,33.08295599600007],[62.01126862600012,33.08005619300019],[62.29231249900016,32.984448014000066],[62.41410859300015,33.00126647100012],[62.490039583000055,33.12813562800005],[62.56839361400006,33.06038068100008],[62.80321162600006,32.99029573300015],[63.02344847900008,33.00946011600013],[63.05910459199998,32.9531449590001],[62.832286604000046,32.856193831000155],[62.65167955700002,32.80676038399997],[62.593883485000106,32.75129716300006],[62.49020755600003,32.71851419900008],[62.40673855300014,32.72577007700005],[62.23730458300014,32.65847311700003],[62.12832257400015,32.63965943300019],[62.0624694820001,32.562166056000024],[62.24184053300013,32.53417100200005],[62.37910056800018,32.54200556700005],[62.50310562900006,32.51170666300004],[62.72156551900002,32.53075302900015],[62.77596256200019,32.49718501600012],[63.06784456999998,32.47392389300012],[63.16743063300004,32.51072246000007],[63.22006663800016,32.40399099300015],[63.676132528000096,32.65105312100019],[63.78721654900011,32.65282321199999],[63.60069254900003,32.50559994400004],[63.509624512000016,32.45791328500019],[63.55914362300018,32.39107448000016],[63.65396457300005,32.364537207000126],[63.79318262000015,32.371071068000106],[63.90965251800003,32.314481822000175],[64.00162563300006,32.36938496500011],[64.08558648700006,32.34354489800006],[64.28180650500019,32.52866694100004],[64.44167353800009,32.45495346700005],[64.48017162000008,32.47760455499997],[64.50160951100008,32.59506703700009],[64.58782962200019,32.62380221300015],[64.67686454500017,32.55676827800016],[65.08124560800013,32.611282332000144],[65.138099555,32.64519853000007],[65.39961962800004,32.89774678100014],[65.51191751700009,33.04998594800003],[65.57931556200003,33.100369400000034],[65.6319195480001,32.97931326000014],[65.50079355800011,32.84871717400017],[65.49121052800018,32.78075318200018],[65.53985557400006,32.721017202000155],[65.6443405230001,32.71804514700017],[65.78472851700008,32.77335632000012],[65.8154605970002,32.74248945900018],[65.7773286370001,32.64395029700012],[65.67338549400012,32.569615891000126],[65.52911349400011,32.53123398300016],[65.35202064400005,32.54075884200017],[65.25047254600008,32.505260812000074],[65.18770550200009,32.37355093800011],[65.06885547900004,32.31826172500001],[64.97287749100013,32.222981614000105],[64.92166154800009,32.084886239000184],[64.90657848100011,31.944939804000057],[64.94803654700002,31.856071682000106],[65.0902256440001,31.83845728000017],[65.17411055800017,31.85701179600011],[65.22105458000016,31.752761037000084],[65.28727748200009,31.754367177000063],[65.44428259900019,31.83514827200014],[65.48228463900017,31.87638421800017],[65.66917459300015,31.947723770000152],[65.84441353500017,31.982470446000093],[65.94851660400002,31.968016189000082],[65.74813061300011,31.831312545000117],[65.80371855600004,31.77347841900007],[66.00907853700011,31.82601283600013],[66.32743059600006,31.93773690000006],[66.60107458900012,31.96050818400016],[66.52582555100014,31.90100119700014],[66.43499757100005,31.880547845000137],[66.03746049900013,31.69759084700013],[66.11141151700019,31.651022669000156],[66.36381560000018,31.729650956000114],[66.59961664100013,31.782808316000114],[66.6510315700001,31.68601929400006],[66.89914663400003,31.916179818000046],[66.93994856500012,31.934689240000125],[67.07854450700017,31.90251027500011],[67.04155751600007,31.83842542800005],[66.7560345220001,31.678787555999975],[66.8105465640001,31.61515063800016],[66.99384353200014,31.671924789000172],[66.95965559299998,31.585112746999982],[66.77649659100018,31.512592186000063],[66.62623555400012,31.420808334000128],[66.48286460900016,31.238078486000063],[66.43051157700012,31.13421631200015],[66.40816458500012,31.025794047000147],[66.42881759400018,30.952438648000054],[66.5662385620002,30.97583170200005],[66.58569362900005,31.107853047000106],[66.64218849499997,31.218487296000035],[66.73870057800008,31.336185142000033],[66.9129025100001,31.40915883000008],[67.06591063200011,31.45152817700017],[67.26364861300016,31.442112617000078],[67.61471557600015,31.46716679700006],[67.58110062300017,31.531697728000097],[67.73803751100019,31.52892080300012],[67.8819276320001,31.63613590600005],[67.98054457800004,31.63391604300017],[68.07165553099998,31.693359159000124],[68.25281561600008,31.958868516000166],[68.54885052200012,32.208021426000016],[68.503707603,32.26940931100006],[68.31352959600002,32.20932129100004],[68.25674454900019,32.29142270400007],[68.41371949100017,32.35788046700003],[68.52864058,32.488815183000156],[68.59506951000014,32.66373678499997],[68.66863261300017,32.76610178300001],[68.7209856450001,32.93864242200016],[68.84913656200018,33.093388783000194],[68.90694453700013,33.236221275000105],[69.114715488,33.57537235600006],[69.16034656900018,33.68587316500009],[69.04352563800012,33.74530454700016],[68.85279056900009,33.705217760000096],[68.64684251400018,33.62829183700018],[68.63439957900016,33.71481855899998],[68.87968457600016,33.79296807200012],[69.04533361400019,33.92016579900019],[69.1355745250001,34.076648388000024],[69.17337053800014,34.26539392800004],[69.30969263800017,34.41209517100003],[69.43666858100005,34.43888138699998],[69.45306358300013,34.530629867000016],[69.35873448300009,34.698998329000176],[69.38152353700008,34.863820241000155],[69.34864853900012,34.97045364000013],[69.11007660800004,35.11476369400009],[69.00904064400004,35.14804605200004],[69.18712658200002,35.26175930900013],[69.34497056000015,35.32111458300011],[69.41807550800002,35.295972394000046],[69.35865753700011,35.15159696100011],[69.40119955100005,35.068531127000085],[69.59107949800006,35.042678488000035],[69.65875263700019,34.97419934499999],[69.68053452200002,34.84103588100004],[69.79778259500006,34.73436744600019],[69.90972157099998,34.8020806510001],[69.96121964900004,34.90868303700006],[70.1417235990001,34.82777219000013],[70.20010355400012,34.90762322900014],[70.11562352600015,35.04042878500013]],[[68.0957794860002,34.29863420900011],[68.05901360900009,34.174408704000086],[67.9576495770001,34.13748675600016],[67.91323052000001,34.177456532000065],[68.001914576,34.27367876900013],[68.0957794860002,34.29863420900011]],[[66.33546448300018,32.761840927000094],[66.37558748000004,32.71298717200011],[66.38881663800004,32.576379416000066],[66.28544648100006,32.43906573700019],[66.20660361800014,32.5254090630001],[66.25408156700013,32.664678911000124],[66.33546448300018,32.761840927000094]],[[63.202358526000125,34.15160406000007],[63.15850457600004,34.04122512400005],[63.042545640000185,34.00618122500015],[62.956371628000056,34.07913932200006],[62.870628614000054,34.10486053300008],[62.66987951800019,34.044044294000116],[62.41935348500016,34.00239646099999],[62.41269657700019,34.06248783300015],[62.49057049300012,34.10068768600007],[62.81901151300002,34.188747123000155],[62.96978351100017,34.1889003440001],[63.12725063900018,34.23676889100011],[63.22206857100019,34.210227426000074],[63.202358526000125,34.15160406000007]]]]},"properties":{"objectid":117,"eco_name":"Central Afghan Mountains xeric woodlands","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Palearctic","eco_biome_":"PA13","nnh":4,"eco_id":816,"shape_leng":86.8813927097,"shape_area":13.4786406879,"nnh_name":"Nature Imperiled","color":"#A93800","color_bio":"#CC6767","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":139709.08445941692,"percentage":0.5295585557338232}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[32.99270255400006,37.99204373900005],[32.730854581000074,37.98292288700003],[32.71352348800008,37.9036284070001],[32.553966584000136,37.78318548699997],[32.54774453000016,37.62976849600017],[32.699733581000146,37.488184908],[32.81395360800008,37.472556514000075],[32.897079456000085,37.418789455000024],[32.99623854400005,37.456431744000156],[33.08082954900004,37.444640753000044],[33.06662356400017,37.55524181000004],[33.167358450000165,37.64707913800015],[33.40698247800009,37.63119945400007],[33.406127524000055,37.51802247100011],[33.20318957800009,37.36402243500004],[33.20364354200018,37.297491916000126],[33.303661607000095,37.219944392],[33.46619760600004,37.338761893000026],[33.39773556200009,37.387811114000044],[33.563896567000086,37.46969543500006],[33.705581575999986,37.443126981000034],[33.825973534000184,37.48894799600009],[33.930328564000035,37.497740780000186],[34.08980550400008,37.57973239000012],[34.31373257300004,37.627567240000076],[34.39632449400017,37.7025631460001],[34.37230648600013,37.76055703100019],[34.2272035040001,37.75838192700013],[34.12657557200009,37.71916082300004],[34.047172462000105,37.73706624400012],[33.96090658500009,37.67740939000004],[33.79304556200009,37.641754282000136],[33.624320534000105,37.68448522500012],[33.73945955199997,37.83689135800017],[33.59270047400008,37.861293090000174],[33.52026356400006,37.744859235000035],[33.47566245100006,37.83287458300009],[33.34281146500018,37.85191307000014],[33.27128248300011,37.77141679200014],[33.14400848000014,37.74708714500014],[33.038013614000135,37.801259218000155],[32.984237502999974,37.902503388000014],[32.99270255400006,37.99204373900005]]],[[[33.98220852100013,39.666959219000034],[33.8745235290001,39.73763324700019],[33.814331573000175,39.622464892000096],[33.743595519000166,39.605729919000055],[33.71669346500005,39.512817361000145],[33.779819590000045,39.45198519500019],[33.906627559000185,39.5844480990001],[34.04449461100012,39.58792726000007],[33.98220852100013,39.666959219000034]]],[[[31.03638847999997,39.49428145200011],[31.018743568000048,39.350847643000066],[31.181426585000054,39.24884709000008],[31.338905447000172,39.08662641800004],[31.584432514000127,39.070623856000054],[31.708286533000148,38.9577595180001],[31.819744555000057,38.897881381000104],[31.915946508000104,38.894440609000185],[31.854343543000027,39.00551574600013],[31.977756506000162,39.00149075600018],[32.102539575000094,39.03956823400017],[32.009258548,39.12008412500012],[32.016143611000075,39.19646086500018],[32.172687555000095,39.19994371400014],[32.28170057600016,39.094446398000116],[32.42609059300008,39.04466929200004],[32.43298755800009,39.11038408400003],[32.33643758900007,39.165860213000144],[32.44333652700004,39.23471419499998],[32.43590546600012,39.27966265400016],[32.30854747700005,39.30295411900005],[32.245239465000054,39.3690504540001],[32.11000047500016,39.393178098000135],[32.117504457,39.480090890000156],[32.33630750200001,39.56592845200015],[32.21379861100013,39.63093363200005],[32.338699529000166,39.73234627800019],[32.40054657600018,39.69363864899998],[32.43866747100009,39.533855100000096],[32.50659961100007,39.642797377000136],[32.46928455200003,39.728230429000064],[32.55248650800007,39.79111431600006],[32.43169758300019,39.84705580800005],[32.28897858300007,39.84215759200009],[32.11098048700006,39.89031028500017],[31.87210244900018,39.82485499700016],[31.85962447700018,39.732464128000174],[31.615077590000112,39.746018168000035],[31.508583498,39.78088772399997],[31.37983746599997,39.76694861900012],[31.202453595000065,39.813308255000095],[31.100975570000116,39.768493739000064],[31.215332557000067,39.63898662900016],[31.467300446000024,39.71639652200014],[31.70349845400017,39.62843867400005],[31.672315595000157,39.55664750600016],[31.841863559000046,39.54373082500018],[31.878978459000166,39.42668643200011],[32.016639484000166,39.32370201100008],[31.984809542000164,39.267275710000035],[31.860864496000033,39.23502717500014],[31.761007529999972,39.24195012400014],[31.493312509000134,39.30361411000001],[31.485448607000137,39.37740134500012],[31.364688517000047,39.43516925400013],[31.03638847999997,39.49428145200011]]],[[[33.508800473000065,39.94028956200003],[33.41366151400007,39.905705829],[33.4457814700001,39.82830683200001],[33.38199652700018,39.68004705800013],[33.379333597000084,39.556235787000105],[33.25507758200001,39.495414518000075],[33.21566754899999,39.346601538000186],[33.37418358800005,39.40554878100011],[33.33305761200006,39.217693399000154],[33.16964352500014,39.16844217500005],[33.11524145300018,39.18526499000012],[33.03959645300006,39.11118522600003],[33.16779749400007,39.07786347299998],[33.186176494000165,39.02377639300016],[33.05611751900011,38.9483727920001],[32.99906559200019,38.98669401500007],[32.859992552000165,39.00619082500015],[32.79561651800003,38.894028555000034],[32.94088747300003,38.80110795000007],[32.967853564000166,38.68230084200013],[32.88634458500013,38.663430161000065],[32.866428512000084,38.57539972600006],[32.80551554600004,38.54451308300008],[32.801815606000105,38.44212394500016],[32.71456954900003,38.37849993500009],[32.73582857000014,38.19703793400009],[32.78921157000019,38.19573706200009],[32.91913257900018,38.31386892400013],[33.03268456800009,38.36605716700018],[33.07476054800014,38.289050276000125],[33.00675950900006,38.17457342700004],[33.23001451800019,38.061447574000056],[33.29358253600003,38.08869093900006],[33.42655958600005,38.08477306900011],[33.55394356,38.172185591000186],[33.60394647400011,38.10748551200004],[33.85139450500003,38.08633394700007],[33.89040757000009,38.13798021700012],[34.00646960500006,38.17511540100014],[34.04830955100016,38.25347211400015],[34.12387861000008,38.29650027900004],[34.27408952400009,38.26775370399997],[34.26909256900012,38.4195990880001],[34.12085358200005,38.44202084700015],[34.00113653500006,38.48722093100008],[33.829788473000065,38.654851283000085],[33.711235505,38.72377818700011],[33.508144506000065,38.925954051000076],[33.58868453700006,39.03525423600013],[33.45419354800015,39.15475150900005],[33.62680057100005,39.175263032000146],[33.878227492000065,39.01362574100017],[33.98628648500005,38.96419531100014],[34.02081255000007,39.02556157100008],[34.14419550600013,39.006945699000084],[34.22777146200002,38.89143452400003],[34.28453454900006,38.90112450700008],[34.418823534000126,38.789565063000055],[34.777534457,38.72782128200009],[34.778320512000164,38.77604924400009],[34.62541146400014,38.796968966000065],[34.52646259400012,38.86368288000017],[34.414005449,38.87797687500006],[34.30493945400019,38.98250507500006],[34.29126756400018,39.036032412],[34.14377557200004,39.06751081700014],[34.01530848900006,39.14438376500004],[33.85961547599999,39.14348371699998],[33.73620653600011,39.21026971500004],[33.52661553799999,39.4378823080001],[33.48737347900004,39.549608719000105],[33.52990761400008,39.643338513000174],[33.551639542000146,39.779491634000124],[33.64198355000019,39.86005245200016],[33.76362659100005,39.88746814900003],[33.77989553000009,39.939565533000064],[33.508800473000065,39.94028956200003]]],[[[34.02966350400004,40.25351457800008],[33.97307945500012,40.11813628000016],[34.0010074540001,39.97304603900005],[34.0728914930001,40.0076064700001],[34.11616860100008,40.12855414800009],[34.235740473000135,40.149286785000186],[34.502983542000095,40.14433190699998],[34.46448546099998,40.19273924200019],[34.21827359200006,40.17318543500011],[34.188632501000086,40.22622477800019],[34.02966350400004,40.25351457800008]]]]},"properties":{"objectid":123,"eco_name":"Central Anatolian steppe","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Palearctic","eco_biome_":"PA08","nnh":4,"eco_id":725,"shape_leng":30.5029031721,"shape_area":2.5835261459,"nnh_name":"Nature Imperiled","color":"#737400","color_bio":"#FEFF73","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":24970.854216769236,"percentage":0.23567864568807056}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-98.04112529299994,42.02538264900011],[-98.1348942439999,41.979600557000026],[-98.1704771879999,41.90687707800015],[-98.0894753529999,41.77937409600014],[-98.14330184099992,41.75093018400014],[-98.28426363099987,41.78565319000006],[-98.4403192019999,41.77018006500015],[-98.42418699599995,41.642864455000165],[-98.51312160699996,41.638579113000105],[-98.53323904499996,41.536198132000095],[-98.66801415899994,41.55781192600017],[-98.71324928599995,41.63411809400009],[-98.86179820299998,41.75917469600017],[-99.14318431799995,41.80551039800014],[-99.29546229199997,41.76498030300013],[-99.48190665299995,41.805151956000145],[-99.80983543299993,41.59366191200007],[-100.06485339299991,41.50415211600017],[-100.32121186699999,41.48508599400003],[-100.49527387899997,41.408288196000115],[-100.2898006499999,41.36268052100013],[-100.20047219399993,41.253848539000046],[-100.24313452699994,41.07685176500007],[-100.16454417399996,40.948892625000155],[-100.35398008999994,41.01174440600016],[-100.47387234799999,41.0870087510001],[-100.63969464699994,41.1183922190001],[-100.83402407099993,41.22817174600016],[-101.07418238599996,41.21766000900004],[-101.14677626699995,41.13755763400019],[-100.99208466599998,41.13596263599999],[-100.81787848499988,41.091338791000055],[-100.67473365299998,40.96323319200019],[-100.70138860599997,40.81589081300007],[-100.80129701499999,40.72667586800014],[-100.76706836699992,40.60718359500004],[-100.79796242599997,40.48629632400019],[-101.04017556399998,40.72693371800011],[-101.14276935699996,40.70710304600016],[-101.20103124499997,40.66713718600005],[-101.10909503599993,40.470945835000066],[-101.11260486499998,40.37677602400015],[-101.04977568699991,40.25498163600014],[-101.13739009999995,40.133729684],[-101.26070422499987,40.09392061200009],[-101.29100856199994,40.04709282200014],[-101.16676972399995,39.939296406000096],[-101.2121814649999,39.87265590000004],[-101.31641457199999,39.830692456000065],[-101.35919728599998,39.66978614400006],[-101.29604356599998,39.619475074000036],[-101.1215178199999,39.69593319700016],[-101.04287295599994,39.67959519700014],[-101.03556706299997,39.53239102800006],[-100.95477056699997,39.50187484600008],[-100.70166236899996,39.62568778100007],[-100.6166848439999,39.59093414900008],[-100.56677270499983,39.49706712400018],[-100.43250058399997,39.477193125999975],[-100.42002351999997,39.39090088200004],[-100.56813976099994,39.34487088200018],[-100.60648069099989,39.294970813000134],[-100.53122025299996,39.208988971999986],[-100.34292907799994,39.14020857500009],[-100.37269096099999,39.06205787100015],[-100.60598025099989,39.045236821000174],[-100.67942305699995,39.061264631000086],[-100.8286176229999,38.991895397],[-100.96518759899999,38.95276296800006],[-101.2887519279999,38.92833502500008],[-101.26959984099994,38.855131460000166],[-101.04123768499994,38.68952845500013],[-100.9611372739999,38.662037855000165],[-100.784372309,38.66638792700019],[-100.55262950999997,38.61603227000012],[-100.42657691699992,38.63110961400008],[-100.39204282799994,38.36717141000008],[-100.51708116299989,38.25814795300005],[-100.61816028099997,38.20154549000017],[-100.64187203699998,38.13462275200004],[-100.59707524099991,38.034160713000176],[-100.48906904499995,38.06820303300009],[-100.19021089699999,38.05974956700015],[-100.03892473299999,37.98372868300004],[-99.98914072899993,37.850454890000094],[-100.00013007799998,37.73494300900006],[-100.1205663739999,37.73194385400012],[-100.22610263299998,37.641444949000174],[-100.38865775499988,37.543062293000105],[-100.32494586899998,37.35542466200019],[-100.26520404199988,37.340553685000145],[-100.24209665899997,37.25208183300015],[-100.06460797699998,37.36328543299999],[-99.97829173999997,37.3320073160001],[-99.84525510299994,37.35796408900006],[-99.95687639899995,37.43494762900008],[-99.83523788199994,37.4959520970001],[-99.74237682399996,37.43429691500006],[-99.4957162529999,37.50533758800009],[-99.35958000799991,37.50532416700014],[-99.20265109899992,37.57889092700003],[-98.73974452399995,37.53437197800008],[-98.60611920099996,37.48439956500005],[-98.52065960399989,37.382532390999984],[-98.37285796699996,37.37922950400019],[-98.29471612899988,37.35229970600011],[-98.39246440499994,37.20330977200018],[-98.39019193899998,37.08309692000006],[-98.4677107149999,37.00346533300012],[-98.62725399199996,37.05311726800005],[-98.78927494399989,37.00221095300003],[-99.02934475899997,36.99960637600009],[-99.04274407799983,36.89586596200013],[-99.22794060599995,36.941749469],[-99.28787280399996,36.991406809000125],[-99.4607519349999,36.99451250200019],[-99.53758690399997,36.95888045200019],[-99.75693372699993,36.95936141200019],[-99.86836013599992,36.92063577800019],[-99.97225400499991,36.92453152200011],[-99.98259856399989,36.846805332000145],[-100.08600690899993,36.80769221600008],[-99.87862206299991,36.70204193100011],[-99.82129787599996,36.56628477800018],[-99.77183689299989,36.534823077],[-99.65210864599999,36.56561592500003],[-99.5956203799999,36.53929356599997],[-99.57085161799995,36.43418614300015],[-99.59337756799988,36.334572660000106],[-99.6639906669999,36.212219584000024],[-99.78579198499989,36.15090471400009],[-99.80347266899997,36.083960360000106],[-99.95147313599995,35.91838487100006],[-99.99147486599998,35.70709749600019],[-100.09388565899991,35.642421568000145],[-100.18080995999992,35.665858031000084],[-100.3714257769999,35.57237836500019],[-100.38109762699992,35.47081504400012],[-100.32378151299997,35.411909586000036],[-100.39504135299995,35.37098922600018],[-100.55101723799999,35.35589466000005],[-100.54754544199994,35.30496737599998],[-100.63417225199998,35.21865756000017],[-100.54777833399993,35.16681098200007],[-100.40047300599997,35.20116034500012],[-100.325269516,35.172847294],[-100.05027694899991,35.21299605100006],[-99.920051818,35.12751478000018],[-99.76230581999988,35.16374592600016],[-99.66129568799994,35.14891268300005],[-99.65740975199986,35.04390235200003],[-99.81023262899993,35.006212404000166],[-99.75593815299999,34.89120088200019],[-99.79222596399995,34.80956363700017],[-100.04299464599995,34.862058504000174],[-100.08194838699995,34.91450083200016],[-100.29026122299996,34.97001614200019],[-100.36734979,35.027085062000026],[-100.55157927699992,34.980867934000116],[-100.90138212999994,34.989592600000094],[-101.00682491299995,35.02060856700018],[-100.9857827219999,34.91801126600018],[-100.81831312199995,34.818377512000154],[-100.62487207599997,34.83625465200015],[-100.51904888699988,34.91236682000016],[-100.3784977499999,34.88504220500016],[-100.30110886699998,34.77294207900019],[-100.19330864899996,34.71670290100013],[-100.14997287599994,34.65785732600011],[-100.03313957199987,34.64187346000011],[-100.0003902599999,34.57785484500016],[-100.11659055599995,34.55137994600017],[-100.10872162399988,34.48638159899997],[-100.18520627599997,34.4346765790001],[-100.05410910799992,34.25391432700013],[-99.9488912939999,34.26052102200009],[-99.65834368299994,34.13396478700014],[-99.758205079,34.01765084300007],[-99.78824910599991,33.93720042000018],[-99.76684814699996,33.86181193800019],[-99.6283831099999,33.88103981000006],[-99.53871735299998,33.920061718],[-99.36726675699998,33.950922899000034],[-99.26851021099998,33.862908195000045],[-99.165673874,33.81361400600019],[-99.14532345399994,33.69715446000015],[-99.22686064599992,33.63167715300017],[-99.32831155399992,33.67758735400014],[-99.47366747799998,33.63871684900016],[-99.5156182579999,33.68359036900006],[-99.62308321999996,33.61994818700009],[-99.66571943599996,33.54080411000018],[-99.79895496899991,33.510567387000094],[-99.98959017999994,33.416230603000145],[-100.01713693999989,33.323606199000096],[-99.94497772299991,33.24321482200014],[-100.02485230399992,33.16528360600006],[-100.05307109799992,33.09188346299999],[-99.98921500499995,33.060450544000105],[-99.98265656099989,32.978210322],[-100.07086096899997,32.98705982400003],[-100.34540611199998,32.942515637999975],[-100.37698966199991,32.966727602000105],[-100.5289226729999,32.879710434],[-100.58867202399989,32.9103250070001],[-100.65799152599999,32.802341359000025],[-100.63467544599996,32.74556607700015],[-100.67538496099996,32.627288078],[-100.56459389999992,32.50182359700017],[-100.50124631599994,32.53617550900009],[-100.47201915099993,32.41928181100019],[-100.51032789599998,32.36114257800017],[-100.42221247499998,32.32921076500003],[-100.28244596699989,32.38414626300005],[-100.26515081199983,32.45877681300004],[-100.18987876399996,32.4482105730001],[-100.13752104999998,32.33336320500007],[-99.86308686999996,32.32103274200006],[-99.84274600799989,32.26054573600004],[-99.8984015229999,32.158897816000035],[-99.96146315099998,32.168379697000034],[-100.0483260879999,32.119119722000164],[-100.12404636699989,32.20218085700003],[-100.18094465499996,32.15765674800019],[-100.15468596499989,32.074901628000134],[-100.21311850799992,32.006085540000186],[-100.15404008599995,31.895505446000072],[-100.15791359299999,31.831489891000047],[-100.08181216599996,31.783776383000145],[-100.07982198199994,31.723284215999968],[-100.18220077399991,31.694174469000075],[-100.30364969299995,31.708839055],[-100.38840657999998,31.585737528000095],[-100.70170749399989,31.624224956999967],[-100.5652890429999,31.508318575000033],[-100.52947252599995,31.407459084000152],[-100.62062617399994,31.36357770700016],[-100.490441493,31.242283718000067],[-100.42408091599992,31.313298182000153],[-100.363549418,31.270717892000107],[-100.23078723599997,31.30171417100013],[-100.02204301499995,31.242160753000064],[-99.878863573,31.315901259000157],[-99.71450969599994,31.276503550000086],[-99.81488498699991,31.220283080000115],[-99.61405160899994,31.180195174000062],[-99.54784599699997,31.114715374000127],[-99.4451502529999,31.153204668000058],[-99.27808843099996,31.13928400300017],[-99.11647190799988,31.253506577000053],[-99.18695076799992,31.312590132000025],[-99.18010027499997,31.452679269000043],[-99.09712090799991,31.539054369000098],[-98.98905803599996,31.549881839000136],[-98.99330866499992,31.622215164000067],[-98.92238939299989,31.659705574000157],[-99.04513288199996,31.774968180000144],[-99.17095663199996,31.816977917000145],[-99.24778921299998,32.006410073000154],[-99.31320554599989,32.060018194000065],[-99.31608572699997,32.14327863300008],[-99.37246153099994,32.188672293000025],[-99.39909175399993,32.34501068200018],[-99.33550069399996,32.38821406800008],[-99.19808661699983,32.322031939000055],[-99.08662857599995,32.4000047400001],[-99.14731891499991,32.50342948200006],[-99.07509811399984,32.61540704900011],[-99.01643706899983,32.86414050900004],[-98.85625693099996,32.99376781500018],[-98.87023405099995,33.076743747000194],[-98.81848031099997,33.16240947400013],[-98.64643647799994,33.140101875000084],[-98.47535713699995,33.19302133000002],[-98.44594925499996,33.24326891900006],[-98.56371100999996,33.287291653000125],[-98.62021451499999,33.36961842900007],[-98.51745537199997,33.38128266100006],[-98.44892976099993,33.437187512000094],[-98.0694115309999,33.517565107000166],[-97.97614107099997,33.561547295000025],[-97.88830989699994,33.56023679400005],[-97.83530655699997,33.696114752000085],[-97.70410298899992,33.78777064000013],[-97.69244946499998,33.88447691300013],[-97.57965833699996,33.94165250900005],[-97.51224166599991,34.07602575700008],[-97.51943429399995,34.23090381000003],[-97.6037490519999,34.24594975600007],[-97.74199408699997,34.37544378700011],[-97.845603198,34.40761243700007],[-97.95597312699988,34.38942606300009],[-98.04250544999991,34.44580098300003],[-97.98178387399992,34.537433243],[-98.10433033799995,34.660610311000084],[-98.090376301,34.76476825300017],[-98.13548867499998,34.83744311000004],[-98.10849851099994,34.90425536000009],[-98.25279841199995,34.969722144],[-98.23793354999998,35.01026899400006],[-98.28705061099998,35.13592635100008],[-98.39510928699997,35.21871140000019],[-98.41065764399997,35.329378560000066],[-98.46471752199994,35.427281564000054],[-98.34386369699996,35.456518272000096],[-98.3010451699999,35.523596581],[-98.12071527099994,35.41888220400017],[-98.12344775399998,35.353266508],[-98.0632369949999,35.281303120000075],[-98.11808617499997,35.24141377500018],[-98.14969511599992,35.076082807000034],[-98.03134436799996,34.99557130000005],[-98.05936523899999,34.91423016700003],[-97.89217030899988,34.83966883599999],[-97.85710848399998,34.74295415900019],[-97.77319212499998,34.735877175000155],[-97.79240660499994,34.84512209900009],[-97.71965907199996,35.1667120140001],[-97.61568468899998,35.14668486500011],[-97.50428074399997,35.021469723000166],[-97.67702073599997,34.93048838100003],[-97.719308072,34.87539971500007],[-97.61272525499999,34.78215725000018],[-97.53676111699997,34.759350438000126],[-97.44851976099994,34.61182260800007],[-97.33446883599999,34.55663818700009],[-97.1611357349999,34.60495907400008],[-97.16606579599988,34.767628709],[-97.03784607499995,34.89073881600012],[-97.05647449399993,34.92993791400005],[-97.22977797499993,34.95324704100011],[-97.25976915799993,35.067368277000185],[-97.36853120999984,35.19039726500006],[-97.39315591199988,35.314489810000055],[-97.37812733099997,35.41472797300008],[-97.40245217699999,35.49557334100007],[-97.51168690099996,35.520646747],[-97.47659790499995,35.63255794400004],[-97.48641109999994,35.763334590000056],[-97.3832467709999,35.86351537100012],[-97.21806292199989,35.92803352599998],[-97.27717514399995,35.99359305800016],[-97.182911489,36.140652727000145],[-97.11435649999999,36.066230364000035],[-97.17563864799996,35.97029058900006],[-97.07844810499995,35.86129420300006],[-96.81833525499991,35.871352822000176],[-96.81498430999994,35.69470241100015],[-96.62179398499995,35.74636338800008],[-96.66358580999997,35.93224669700015],[-96.55020274599997,36.23954695300006],[-96.58104081099998,36.29001997600011],[-96.54589433599995,36.44262701800017],[-96.64015471599998,36.46439720100011],[-96.73688888199996,36.57312164400008],[-96.83459223999995,36.55948755999998],[-96.91712584199996,36.63777315300018],[-96.89103572599998,36.75093803900012],[-96.96018692599995,36.89551763100019],[-96.92083825399993,36.99261071100011],[-96.95351912099989,37.1064225290001],[-96.92074477799991,37.13376558300013],[-97.02507221299999,37.27261632300008],[-97.02930086399994,37.51867954700009],[-96.99296683699993,37.66732281100013],[-97.04988297199998,37.892186551000066],[-97.04062323099998,38.026042748],[-97.16260803799997,38.11992515800006],[-97.32431312699998,38.275153689000035],[-97.36771768899996,38.3755619100001],[-97.27601760199991,38.484473037999976],[-97.10326908999991,38.583893556000135],[-97.0748450239999,38.628930509000156],[-97.05796965199994,38.8211904960001],[-97.02000017299997,38.925134525000146],[-96.93482488199999,39.03242649200007],[-96.95889157099998,39.15096073800004],[-97.05110348699998,39.28793063799998],[-96.95807014799993,39.40124693700011],[-96.92816471299994,39.482427060000134],[-96.85459684699987,39.536270635000164],[-96.85474985899998,39.6566797640001],[-96.82050263399992,39.717480442000124],[-96.687820693,39.68589870500017],[-96.67378724499991,39.88383785100007],[-96.5948434149999,40.00010694100018],[-96.60777556199992,40.079021373000046],[-96.75271198599995,40.2441200400001],[-96.91843306499999,40.39429264200015],[-97.014733875,40.732372748000046],[-97.00086148599996,40.96426138900006],[-97.0333927659999,41.0255953140001],[-97.01766413599995,41.195057339000186],[-97.09880590799992,41.294168155000136],[-97.07426811699997,41.34011212400003],[-96.88899808999997,41.42176556600003],[-96.91858234499995,41.483493385000145],[-97.26591516499997,41.532765226000095],[-97.588321222,41.640565505000154],[-97.89449017699997,41.7596825280001],[-97.99598454399995,41.85123941600011],[-98.04273624799998,41.93228267000006],[-98.04112529299994,42.02538264900011]]]},"properties":{"objectid":126,"eco_name":"Central-Southern US mixed grasslands","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Nearctic","eco_biome_":"NE08","nnh":4,"eco_id":389,"shape_leng":64.9324816266,"shape_area":28.0459889635,"nnh_name":"Nature Imperiled","color":"#FD9943","color_bio":"#FEFF73","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":275448.51484460273,"percentage":2.599724157284575}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-65.16043062099988,-22.980186481999908],[-65.14993262299993,-22.588632077999932],[-65.16686255799988,-22.559989605999874],[-65.16817449399997,-22.340888164999967],[-65.13977057099993,-22.311076752999895],[-65.15668458099992,-22.203269384999942],[-65.20180553899996,-22.124320909999938],[-65.28075451799992,-22.124320909999938],[-65.38366651899997,-22.225105415999963],[-65.38883949499996,-22.794460438999977],[-65.30917352799997,-22.9725249199999],[-65.23268849399994,-23.00689223199987],[-65.16043062099988,-22.980186481999908]]],[[[-67.40080253299993,-16.70996852199994],[-67.48638159699988,-16.708533539999962],[-67.47213755799993,-16.833859923999967],[-67.52178960599997,-16.97646191399997],[-67.62292464399997,-17.020194325999967],[-67.61663855199998,-17.134855073999972],[-67.74430851599988,-17.113439478999965],[-67.9011615849999,-16.99959244599995],[-68.02536764399991,-16.878334972999937],[-68.05854757499998,-16.924789156999964],[-68.21562159099994,-16.915968712999927],[-68.20520757899993,-17.070336211999972],[-68.14996362899996,-17.125654760999907],[-68.20493349099996,-17.206792757999892],[-68.18229648499988,-17.28370895699993],[-68.25555448599982,-17.293086629999834],[-68.33062750499994,-17.223365623999882],[-68.33423658499993,-17.143582813999956],[-68.42093664499998,-17.12228909199996],[-68.43490558899998,-17.05430531899998],[-68.52984656799993,-16.96223782399983],[-68.47577658699993,-16.84414032899997],[-68.55969955499995,-16.724720671999933],[-68.77396363099996,-16.70618794899997],[-68.92172954399985,-16.831157933999975],[-69.00817160799994,-16.88054008399996],[-69.19435848799992,-16.947877779999942],[-69.33672360499997,-17.05174246899992],[-69.53180653399988,-17.17840543099993],[-69.57810950899994,-17.266059015999815],[-69.43389148799997,-17.36926170199996],[-69.48010259699998,-17.4512328589999],[-69.57169349699996,-17.49566918399995],[-69.60169953699994,-17.651829571999883],[-69.61032049199997,-17.88917103999995],[-69.63632953799998,-18.005101980999882],[-69.7502895579999,-18.167543096999964],[-69.71045657499997,-18.312588410999922],[-69.62741856899999,-18.39400250699987],[-69.55802948599995,-18.455489969999974],[-69.50992557599994,-18.582643272999917],[-69.47132858799995,-18.76688454599997],[-69.41379553999991,-19.1490029389999],[-69.38990057799998,-19.243249393999974],[-69.27910656999995,-19.40883774699995],[-69.20417755299997,-19.59488079399995],[-69.19622061199988,-19.660234156999877],[-69.11131260299999,-19.916511182999955],[-69.0475925369999,-20.050113522999936],[-68.99058553699996,-20.290553779999982],[-68.94244357299988,-20.58323542199986],[-68.88652052099997,-20.737664779999875],[-68.88040156399984,-21.015115162999848],[-68.90821053999991,-21.328870082999913],[-68.8651734899999,-21.904012642999874],[-68.87607549599994,-22.198447778999878],[-68.82582062199998,-22.22982627199991],[-68.70269750499989,-22.17759008399986],[-68.57416554599996,-22.22546248499998],[-68.44403063199996,-22.247885249999968],[-68.42628463399996,-22.292448643999876],[-68.44464854599994,-22.520505812999886],[-68.50491359199992,-22.670369714999822],[-68.59925057099991,-22.797217079999882],[-68.6766354859999,-22.983526335999954],[-68.7951735339999,-23.163410191999958],[-68.84399459999986,-23.20503388499992],[-68.86688255999991,-23.359255203999965],[-68.84267461799988,-23.454342195999914],[-68.74536155999994,-23.60415563999993],[-68.75329553399996,-23.70424444799994],[-68.88306449499999,-23.92438356799994],[-68.95071449999989,-24.211949064999885],[-69.07690455499994,-24.443544737999957],[-69.26538053299993,-24.66949771299994],[-69.24347660899986,-24.946248374999982],[-69.29160348499994,-25.012951057999942],[-69.42931362799993,-25.081602867999948],[-69.42980950199984,-25.180359959999976],[-69.41230054399995,-25.262854986999912],[-69.24242350599985,-25.4096579859999],[-69.19107848199997,-25.496253941999953],[-69.21618664099998,-25.983680555999968],[-69.18832351799995,-26.101450150999938],[-69.09739663199991,-26.191329968999923],[-69.09183456899996,-26.321793956999898],[-69.14326458599993,-26.40544702699998],[-69.26844763899999,-26.47974974899995],[-69.31421651899996,-26.62301055599994],[-69.41484864299991,-26.758893276999913],[-69.31663553599992,-26.861498835999896],[-69.31699361099999,-26.91309162899995],[-69.14844560799997,-26.97143503999996],[-68.51128350299996,-26.89179539199995],[-68.32013654799982,-26.78029646599998],[-68.25897262699993,-26.72422874299997],[-68.17389664499996,-26.495069017999867],[-68.18881961699998,-26.300667872999952],[-68.1577306349999,-26.270035369999903],[-68.12220762699997,-26.06719146899991],[-68.02459751399994,-25.85923024799996],[-67.68857556499995,-25.380120661999968],[-67.59819048599991,-25.31770733499991],[-67.58161158399997,-25.258056179999983],[-67.49651364199997,-25.185942642999976],[-67.52166756499992,-25.093544062999968],[-67.79735556999998,-25.074900027999945],[-67.92741353799994,-24.905753221999873],[-67.97199252199994,-24.903970390999973],[-67.98767053699993,-25.225624919999973],[-68.02503152899988,-25.257421333999957],[-68.13282749799998,-25.252317425999877],[-68.20063055699995,-25.21902031499991],[-68.26932561799998,-25.09355730599998],[-68.25578347999993,-24.927467044999958],[-68.16512263599992,-24.845062039999846],[-68.0051116009999,-24.761143263999884],[-67.93653858099992,-24.478449999999896],[-67.88171355799994,-24.39657489899986],[-67.56949654899995,-24.298404875999893],[-67.30281858799992,-24.27100326099992],[-67.31206550399986,-24.534239108999884],[-67.33592961999994,-24.563951614999837],[-67.3593065799999,-24.788742858999967],[-67.22267954699998,-24.89404873199993],[-67.18019855299997,-24.841726209999877],[-67.15872160199996,-24.505570653999825],[-67.05807455899992,-24.357889900999965],[-66.98175062499996,-24.287783327999932],[-67.02540558799996,-24.195325906999926],[-67.10959660899988,-24.121718714999872],[-67.14530150499996,-24.030487062999953],[-67.1404415099999,-23.922794359999898],[-67.07373849199985,-23.887361372999862],[-66.93264759199997,-23.999608802999944],[-66.82834654099997,-24.19413198799998],[-66.81597853999989,-24.30072967999996],[-66.73802164399984,-24.370556130999887],[-66.69451151999993,-24.30013858799998],[-66.68874359699998,-24.19961056799997],[-66.82099963599995,-24.06488823799998],[-66.91581756799991,-23.830924006999965],[-66.9036336339999,-23.573624053999822],[-66.8341825249999,-23.475845129999982],[-66.82803356099998,-23.322643050999886],[-66.85418660799996,-23.154900548999933],[-66.8021235899999,-23.1084820719999],[-66.70645858199998,-23.12928981099998],[-66.64235663599993,-23.260062084999902],[-66.60803257499998,-23.40386570399994],[-66.62599951999994,-23.63843997099997],[-66.6534805949999,-23.676634794999927],[-66.6798705139999,-24.002134437999928],[-66.67120362599985,-24.089560034999863],[-66.53204358199997,-24.178694701999973],[-66.47828658099996,-24.109440064999944],[-66.39223460999983,-24.116866933999972],[-66.38141658999996,-23.98760625299991],[-66.31486561999992,-23.944660397999883],[-66.27680255999996,-23.808256155999914],[-66.28162349499996,-23.63226418399995],[-66.34262849499993,-23.60580134199995],[-66.39411953199993,-23.87983358499997],[-66.47000861299995,-23.984965281999962],[-66.60125748199994,-23.91028822499993],[-66.59542049299989,-23.772640107999905],[-66.56800848399996,-23.749995054999943],[-66.5334545909999,-23.568154526999876],[-66.48623648099988,-23.442601663999824],[-66.39646948299992,-23.362639816999945],[-66.16056852899999,-23.46003602299993],[-66.05284162699996,-23.425390598999968],[-66.0384825889999,-23.118899603999978],[-66.06565051599989,-23.088957098999913],[-66.07591247999989,-22.920131654999977],[-66.10172253999997,-22.873423163999917],[-66.09903748099993,-22.7333394339999],[-66.12728164499998,-22.568084176999946],[-66.16462754899993,-22.530932061999977],[-66.15673062299999,-22.38725165699998],[-66.1166994919999,-22.241204537999977],[-66.21057848399983,-22.233926027999928],[-66.25463862799995,-22.412273313999833],[-66.2719425649999,-22.702007208999873],[-66.24117259799988,-22.81580327899991],[-66.2415776119999,-23.04568217099984],[-66.3790666399999,-23.171127577999982],[-66.52667949899995,-23.16830891199993],[-66.60645258599982,-23.05548078299995],[-66.64748351099985,-22.429136529999937],[-66.60582763099995,-22.376758351999854],[-66.6248096249999,-22.308453887999974],[-66.60666649199993,-22.181448608999972],[-66.46150953099988,-21.95465375499998],[-66.22562450299995,-21.736928622999983],[-66.15503664099998,-21.71921062099983],[-66.00128152299993,-21.786089993999838],[-66.05375659599997,-21.62952962099996],[-66.03730057299998,-21.536164606999932],[-66.16328460099993,-21.490899982999906],[-66.13555156599989,-21.42683759999983],[-65.96173855399985,-21.47944275999987],[-65.9222255919999,-21.553157574999943],[-65.83173355899999,-21.46215575499997],[-65.95373551299997,-21.190243462999945],[-65.89486655699983,-21.098720455999967],[-65.96227248099996,-21.05417499899994],[-66.13639864099991,-21.090356992999943],[-66.24098149099996,-21.010775348999857],[-66.24508661199997,-20.823209980999934],[-66.32545447899997,-20.772517906999894],[-66.28472848699994,-20.72047869299996],[-66.29739354299988,-20.624504057999843],[-66.25602750999991,-20.55622289499985],[-66.32147961199996,-20.391445071999954],[-66.26527358699997,-20.345541913999966],[-66.27001154199985,-20.176630303999957],[-66.23078155299999,-20.112851899999953],[-66.2849955349999,-20.04578074899996],[-66.3067095259999,-19.935349174999942],[-66.52538248299993,-19.971772063999936],[-66.57089252899993,-20.232156389999943],[-66.64590452799996,-20.17452460299984],[-66.60366057399989,-20.06270884099996],[-66.60501860999983,-19.92487665699997],[-66.53847451299993,-19.861985393999873],[-66.49943563099998,-19.679022025999927],[-66.5023116299999,-19.60165337099994],[-66.59568753999997,-19.537209275999885],[-66.59322359599992,-19.447722401999954],[-66.62673159499985,-19.35255678699997],[-66.58869150099991,-19.263220283999885],[-66.55717453899996,-19.086514677999958],[-66.43080159099992,-18.983225657999924],[-66.43455450399995,-18.87131316899996],[-66.50511152099995,-18.767021338999825],[-66.51429758399996,-18.64719532699985],[-66.59640452799994,-18.53225227699994],[-66.70529148499998,-18.298620304999815],[-66.71106762299996,-18.216084373999877],[-66.80016356499993,-18.143674621999878],[-66.85773449999988,-18.051402272999894],[-66.84494052999992,-17.942510788999982],[-66.73335258899988,-17.906667926999944],[-66.7255704939999,-17.818102223999972],[-66.88729864599998,-17.643569038999942],[-66.89229560099989,-17.496773917999974],[-66.8297885639999,-17.41490384699989],[-66.8954775389999,-17.35376758599989],[-67.01879159599991,-17.340615541999966],[-67.16992954799991,-17.45025770799998],[-67.27646655499996,-17.337523792999946],[-67.28799452199996,-17.25364005299997],[-67.3827894879999,-17.192314695999983],[-67.47171058399988,-17.081903405999924],[-67.4112316319999,-17.026992049999933],[-67.40736355199988,-16.918968763999885],[-67.42323250599998,-16.841195430999903],[-67.4044795069999,-16.73792300799994],[-67.40080253299993,-16.70996852199994]]]]},"properties":{"objectid":127,"eco_name":"Central Andean dry puna","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Neotropic","eco_biome_":"NO10","nnh":2,"eco_id":587,"shape_leng":44.7799655834,"shape_area":22.2035844506,"nnh_name":"Nature Could Reach Half Protected","color":"#F4A733","color_bio":"#D6C39D","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":256197.64666014173,"percentage":5.246399252747286}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-66.34561161499994,-27.42746203799993],[-66.16725158799989,-27.41941541099993],[-65.98623650999997,-27.309427070999902],[-65.89929957799995,-27.159815798999944],[-65.89675147899999,-27.028181361999884],[-65.85803949199982,-26.995839956999873],[-65.88350656299997,-26.91089657599997],[-65.93956758199994,-26.908540590999962],[-66.00899454999995,-27.06172506799993],[-66.26747853099988,-27.27925456699984],[-66.34561161499994,-27.42746203799993]]],[[[-65.86623363999996,-26.845067622999977],[-65.73840358199993,-26.740774283999826],[-65.71559156199993,-26.260841762999974],[-65.68646260399993,-26.23564894699996],[-65.67095155699997,-26.086014540999827],[-65.63685648899997,-25.969843038999954],[-65.70296455999994,-26.005896454999913],[-65.79268663099998,-26.197545485999854],[-65.80290953499986,-26.429730070999938],[-65.84796863499992,-26.53150749799994],[-65.85977957499989,-26.66435546699995],[-65.89307349999996,-26.672765030999926],[-65.86623363999996,-26.845067622999977]]],[[[-65.37863955699987,-23.881475432999935],[-65.20754261699994,-23.758587678999845],[-65.12731958899997,-23.49957882399997],[-65.03149448699992,-23.467885674999877],[-64.97023048599993,-23.50340885099996],[-64.87575553999989,-23.470434276999924],[-64.82976554599998,-23.387499702999946],[-64.84402450499994,-23.23916432399983],[-64.82949849899984,-23.1217434159999],[-64.87552654699988,-23.034686957999952],[-65.02028654099985,-22.87044021199995],[-65.0332716179999,-22.677763391999974],[-64.85305751399994,-22.473053343999936],[-64.84362049699996,-22.368829742999935],[-64.95535260799994,-22.229511111999955],[-64.8776096169999,-22.116747188999966],[-64.78312662499985,-22.108873732999825],[-64.58353456799995,-22.217735878999918],[-64.52910651199988,-22.172377042999983],[-64.42930553699989,-21.981868452999947],[-64.35672764299994,-22.06351606899989],[-64.25240362699998,-22.07162975199998],[-64.22356451499991,-21.859702046999928],[-64.16642759599995,-21.704623258999902],[-64.19953158699997,-21.54035824099998],[-64.26162757599997,-21.478513708999913],[-64.35305754299992,-21.44515054999988],[-64.46226452199994,-21.454381874999967],[-64.51926448099994,-21.40563473799989],[-64.63507053199993,-21.385535939999954],[-64.73207848799984,-21.235783180999874],[-64.82415050899994,-21.218316132999973],[-64.94988257799997,-21.15128873499998],[-65.06060751899992,-21.14118015999992],[-65.08125248099998,-21.18447403099998],[-65.08474756699997,-21.43668415699989],[-65.04139753799996,-21.563580973999876],[-65.10095263599999,-21.73871162099988],[-65.1150965949999,-21.865230749999967],[-65.07163961199996,-21.936853944999882],[-65.13101952899984,-21.99624559699987],[-65.23674751399994,-21.902162588999943],[-65.31845061899992,-21.874281193999877],[-65.35018148599988,-21.927998463999927],[-65.58253454799996,-22.041744075999873],[-65.44074258599994,-21.8511033879999],[-65.50299850099992,-21.754019825999933],[-65.54311361899994,-21.627795404999915],[-65.64390550199994,-21.51364779799991],[-65.72454863099995,-21.560031405999894],[-65.72454863099995,-21.636379982999927],[-65.80744950899998,-21.66066788799992],[-65.81404858099984,-21.556024352999827],[-65.74880954699995,-21.520090295999978],[-65.73446660199988,-21.43640587799996],[-65.86266361999998,-21.224987624999983],[-65.72771464299996,-21.26432842299988],[-65.62208556399997,-21.415417088999902],[-65.5356066189999,-21.465386475999935],[-65.44680052299998,-21.55265281699991],[-65.40374754799996,-21.69129804499994],[-65.31205757299995,-21.70427440399982],[-65.32138864299992,-21.551626703999943],[-65.41040059899996,-21.34379422899991],[-65.47344256999997,-21.233240111999976],[-65.4088135699999,-20.98795360599985],[-65.42849763099991,-20.928639905999944],[-65.39516447899996,-20.832418506999886],[-65.53939054599982,-20.805563894999977],[-65.66989862199989,-20.869491329999903],[-65.71965058199993,-20.989984540999842],[-65.82131150099991,-20.920061698999973],[-65.88735955699997,-20.78085018899992],[-65.92977148399996,-20.78073435099992],[-66.02425363799995,-20.86381376399987],[-66.08174159099991,-20.86550657299989],[-66.01205461599994,-20.705523365999966],[-65.92093662299993,-20.670481478999875],[-65.99931361999995,-20.584541489999935],[-66.04383057799998,-20.440033455999924],[-65.98674763799994,-20.427631256999973],[-65.9080965529999,-20.4952613129999],[-65.85681154299994,-20.472872578999954],[-65.87961551599994,-20.206297714999835],[-65.78606459199989,-20.230662398999982],[-65.66818251099994,-20.312244803999874],[-65.66661861599994,-20.416564797999968],[-65.62843351499998,-20.436051548999956],[-65.52909857399993,-20.159486294999965],[-65.45083657699996,-20.14386041599994],[-65.41596953599992,-20.22278173399991],[-65.4167326239999,-20.367194549999965],[-65.46432456799994,-20.487672840999892],[-65.46074650099985,-20.561582451999982],[-65.36866760599997,-20.579739664999977],[-65.28348550899995,-20.506382757999972],[-65.27633658399998,-20.420322739999847],[-65.1776425239999,-20.315456581999968],[-65.08438161399994,-20.35640720799995],[-64.98269655499996,-20.35412917399998],[-64.96450061699994,-20.402049687999977],[-65.00765953899992,-20.549797159999912],[-65.06935856099994,-20.64962663299997],[-65.0088884939999,-20.671754521999958],[-64.99725357399996,-20.77844340899992],[-64.83736457999998,-20.84977642299998],[-64.85160861799994,-20.678576049999947],[-64.80529759799992,-20.63541142799994],[-64.90662357499997,-20.561688733999915],[-64.89035748599997,-20.426521157999957],[-64.92011257199988,-20.287458174999927],[-65.0521086039999,-20.186261781999917],[-65.12181854599999,-20.032563660999926],[-65.10387456799998,-19.87320574399996],[-65.04026061599996,-19.798585180999964],[-64.93597448599996,-19.735833559999833],[-64.85752858899991,-19.758556228999907],[-64.93793450999993,-19.545494787999928],[-65.01131455199993,-19.454343937999965],[-65.09917449899984,-19.49282072899996],[-65.09801461099988,-19.587127365999947],[-65.14949056099994,-19.723174370999914],[-65.41561850199992,-19.834475986999962],[-65.40959962499994,-19.737713620999955],[-65.44194052799992,-19.659467045999918],[-65.41716747699991,-19.50007325399997],[-65.45449058399993,-19.434291239999936],[-65.43542460399993,-19.36164025599993],[-65.46083853399989,-19.22773918499996],[-65.60102854699994,-19.065093717999957],[-65.4643636269999,-19.01149496799991],[-65.35840647999999,-19.077248985999972],[-65.32614855799994,-18.9810366399999],[-65.22884354699994,-18.96461481499989],[-65.1639936009999,-19.000192641999945],[-65.10364557399993,-19.149797710999962],[-65.04514357799997,-19.21062736199997],[-64.76119956699995,-19.332954197999925],[-64.8549196379999,-19.2379235329999],[-64.97233551699992,-19.180869090999977],[-65.05284855799994,-19.100120852999964],[-65.14334863799996,-18.956551256999944],[-65.22087051299991,-18.90100857599998],[-65.21814756799995,-18.790787889999933],[-65.27417757399996,-18.79696367599996],[-65.30826559999991,-18.88524338899998],[-65.41275054999994,-18.98254152699991],[-65.53246357299997,-18.972480392999955],[-65.62728854699986,-18.904247342999838],[-65.65930959599996,-18.818055393999828],[-65.76014757999997,-18.69492456599994],[-65.79542550099995,-18.5272217939999],[-65.85231750199995,-18.501618096999948],[-65.98629752999989,-18.514437379999947],[-66.13443761099984,-18.495892586999958],[-66.07507361899991,-18.435115071999974],[-65.92126452299988,-18.43531724299993],[-65.90814952599999,-18.396209629999873],[-66.08184854399997,-18.36813125999987],[-66.13167560599993,-18.317618222999897],[-66.13921361899986,-18.242695743999832],[-66.2010345139999,-18.24026499199988],[-66.2661585489999,-18.299346344999947],[-66.38447548199997,-18.202568219999932],[-66.49393458799995,-18.15652374399997],[-66.47713457199995,-18.060049714999877],[-66.52676348599988,-17.97429479799996],[-66.51985947999992,-17.914148607999948],[-66.64627852799998,-17.85230424399998],[-66.64434063199997,-17.72758085399994],[-66.42715462499996,-17.680453770999918],[-66.43650061399984,-17.602777500999935],[-66.61679048999997,-17.54813486799992],[-66.68514256399993,-17.45488468699989],[-66.35266163299991,-17.316277008999975],[-66.26602158799994,-17.246022411999945],[-66.17438559399989,-17.247599214999923],[-66.06597154299993,-17.300556078999932],[-65.95086655499995,-17.324458584999945],[-65.92115052899987,-17.37785030299989],[-65.84164448899998,-17.396417223999947],[-65.80283359499998,-17.31916675399998],[-65.71849052699997,-17.3736405759999],[-65.67369059499993,-17.50363567999983],[-65.8114775169999,-17.70233523199994],[-65.90225956299992,-17.73011956499994],[-65.97658558699993,-17.666265723999913],[-66.0342026209999,-17.717709318999937],[-65.89241753199997,-17.761502918999952],[-65.81464352899997,-17.738769018999903],[-65.75133551699992,-17.8153276459999],[-65.59851062299998,-17.829001714999947],[-65.46336349899991,-17.912563589999877],[-65.38495649399994,-18.081069347999914],[-65.31902360499998,-18.11802432099995],[-65.26617453199992,-18.045533598999896],[-65.24210354999991,-17.914465443999916],[-65.31492653099991,-17.889080179999894],[-65.21372963499988,-17.732257620999917],[-65.31439260399998,-17.64470981599993],[-65.39027363799994,-17.63337547099985],[-65.56365162899982,-17.51996748299996],[-65.71939862199997,-17.33287686599988],[-65.83271759399997,-17.306202631999952],[-65.97686755399991,-17.219234854999968],[-66.05960850499986,-17.04522470099994],[-66.20037049899997,-17.06740640199996],[-66.39002949899998,-16.930594798999948],[-66.49416358199994,-16.871392410999874],[-66.56047851799997,-16.906300354999928],[-66.66165160899982,-16.864357143999825],[-66.62397763699988,-17.006138041999918],[-66.56085955899988,-17.05589016999994],[-66.53356959099983,-17.12828852299998],[-66.60337055999997,-17.18808786999989],[-66.66392561999993,-17.148686219999945],[-66.79322854599997,-17.16182552299989],[-66.87095661699982,-17.216485254999952],[-66.94467159999988,-17.206174675999932],[-67.10685757099992,-17.259220555999946],[-67.16888449199996,-17.211882584999955],[-67.19734155599997,-17.119800001999977],[-67.18877458099996,-17.02958373399997],[-67.32217458199989,-16.935996599999953],[-67.40736355199988,-16.918968763999885],[-67.4112316319999,-17.026992049999933],[-67.47171058399988,-17.081903405999924],[-67.3827894879999,-17.192314695999983],[-67.28799452199996,-17.25364005299997],[-67.27646655499996,-17.337523792999946],[-67.16992954799991,-17.45025770799998],[-67.01879159599991,-17.340615541999966],[-66.8954775389999,-17.35376758599989],[-66.8297885639999,-17.41490384699989],[-66.89229560099989,-17.496773917999974],[-66.88729864599998,-17.643569038999942],[-66.7255704939999,-17.818102223999972],[-66.73335258899988,-17.906667926999944],[-66.84494052999992,-17.942510788999982],[-66.85773449999988,-18.051402272999894],[-66.80016356499993,-18.143674621999878],[-66.71106762299996,-18.216084373999877],[-66.70529148499998,-18.298620304999815],[-66.59640452799994,-18.53225227699994],[-66.51429758399996,-18.64719532699985],[-66.50511152099995,-18.767021338999825],[-66.43455450399995,-18.87131316899996],[-66.43080159099992,-18.983225657999924],[-66.55717453899996,-19.086514677999958],[-66.58869150099991,-19.263220283999885],[-66.62673159499985,-19.35255678699997],[-66.59322359599992,-19.447722401999954],[-66.59568753999997,-19.537209275999885],[-66.5023116299999,-19.60165337099994],[-66.49943563099998,-19.679022025999927],[-66.53847451299993,-19.861985393999873],[-66.60501860999983,-19.92487665699997],[-66.60366057399989,-20.06270884099996],[-66.64590452799996,-20.17452460299984],[-66.57089252899993,-20.232156389999943],[-66.52538248299993,-19.971772063999936],[-66.3067095259999,-19.935349174999942],[-66.2849955349999,-20.04578074899996],[-66.23078155299999,-20.112851899999953],[-66.27001154199985,-20.176630303999957],[-66.26527358699997,-20.345541913999966],[-66.32147961199996,-20.391445071999954],[-66.25602750999991,-20.55622289499985],[-66.29739354299988,-20.624504057999843],[-66.28472848699994,-20.72047869299996],[-66.32545447899997,-20.772517906999894],[-66.24508661199997,-20.823209980999934],[-66.24098149099996,-21.010775348999857],[-66.13639864099991,-21.090356992999943],[-65.96227248099996,-21.05417499899994],[-65.89486655699983,-21.098720455999967],[-65.95373551299997,-21.190243462999945],[-65.83173355899999,-21.46215575499997],[-65.9222255919999,-21.553157574999943],[-65.96173855399985,-21.47944275999987],[-66.13555156599989,-21.42683759999983],[-66.16328460099993,-21.490899982999906],[-66.03730057299998,-21.536164606999932],[-66.05375659599997,-21.62952962099996],[-66.00128152299993,-21.786089993999838],[-66.15503664099998,-21.71921062099983],[-66.22562450299995,-21.736928622999983],[-66.46150953099988,-21.95465375499998],[-66.60666649199993,-22.181448608999972],[-66.6248096249999,-22.308453887999974],[-66.60582763099995,-22.376758351999854],[-66.64748351099985,-22.429136529999937],[-66.60645258599982,-23.05548078299995],[-66.52667949899995,-23.16830891199993],[-66.3790666399999,-23.171127577999982],[-66.2415776119999,-23.04568217099984],[-66.24117259799988,-22.81580327899991],[-66.2719425649999,-22.702007208999873],[-66.25463862799995,-22.412273313999833],[-66.21057848399983,-22.233926027999928],[-66.1166994919999,-22.241204537999977],[-66.15673062299999,-22.38725165699998],[-66.16462754899993,-22.530932061999977],[-66.12728164499998,-22.568084176999946],[-66.09903748099993,-22.7333394339999],[-66.10172253999997,-22.873423163999917],[-66.07591247999989,-22.920131654999977],[-66.06565051599989,-23.088957098999913],[-66.0384825889999,-23.118899603999978],[-66.05284162699996,-23.425390598999968],[-66.16056852899999,-23.46003602299993],[-66.39646948299992,-23.362639816999945],[-66.48623648099988,-23.442601663999824],[-66.5334545909999,-23.568154526999876],[-66.56800848399996,-23.749995054999943],[-66.59542049299989,-23.772640107999905],[-66.60125748199994,-23.91028822499993],[-66.47000861299995,-23.984965281999962],[-66.39411953199993,-23.87983358499997],[-66.34262849499993,-23.60580134199995],[-66.28162349499996,-23.63226418399995],[-66.27680255999996,-23.808256155999914],[-66.31486561999992,-23.944660397999883],[-66.38141658999996,-23.98760625299991],[-66.39223460999983,-24.116866933999972],[-66.47828658099996,-24.109440064999944],[-66.53204358199997,-24.178694701999973],[-66.67120362599985,-24.089560034999863],[-66.6798705139999,-24.002134437999928],[-66.6534805949999,-23.676634794999927],[-66.62599951999994,-23.63843997099997],[-66.60803257499998,-23.40386570399994],[-66.64235663599993,-23.260062084999902],[-66.70645858199998,-23.12928981099998],[-66.8021235899999,-23.1084820719999],[-66.85418660799996,-23.154900548999933],[-66.82803356099998,-23.322643050999886],[-66.8341825249999,-23.475845129999982],[-66.9036336339999,-23.573624053999822],[-66.91581756799991,-23.830924006999965],[-66.82099963599995,-24.06488823799998],[-66.68874359699998,-24.19961056799997],[-66.69451151999993,-24.30013858799998],[-66.73802164399984,-24.370556130999887],[-66.81597853999989,-24.30072967999996],[-66.82834654099997,-24.19413198799998],[-66.93264759199997,-23.999608802999944],[-67.07373849199985,-23.887361372999862],[-67.1404415099999,-23.922794359999898],[-67.14530150499996,-24.030487062999953],[-67.10959660899988,-24.121718714999872],[-67.02540558799996,-24.195325906999926],[-66.98175062499996,-24.287783327999932],[-67.05807455899992,-24.357889900999965],[-67.15872160199996,-24.505570653999825],[-67.18019855299997,-24.841726209999877],[-67.22267954699998,-24.89404873199993],[-67.3593065799999,-24.788742858999967],[-67.33592961999994,-24.563951614999837],[-67.31206550399986,-24.534239108999884],[-67.30281858799992,-24.27100326099992],[-67.56949654899995,-24.298404875999893],[-67.88171355799994,-24.39657489899986],[-67.93653858099992,-24.478449999999896],[-68.0051116009999,-24.761143263999884],[-68.16512263599992,-24.845062039999846],[-68.25578347999993,-24.927467044999958],[-68.26932561799998,-25.09355730599998],[-68.20063055699995,-25.21902031499991],[-68.13282749799998,-25.252317425999877],[-68.02503152899988,-25.257421333999957],[-67.98767053699993,-25.225624919999973],[-67.97199252199994,-24.903970390999973],[-67.92741353799994,-24.905753221999873],[-67.79735556999998,-25.074900027999945],[-67.52166756499992,-25.093544062999968],[-67.49651364199997,-25.185942642999976],[-67.58161158399997,-25.258056179999983],[-67.59819048599991,-25.31770733499991],[-67.68857556499995,-25.380120661999968],[-68.02459751399994,-25.85923024799996],[-68.12220762699997,-26.06719146899991],[-68.1577306349999,-26.270035369999903],[-68.18881961699998,-26.300667872999952],[-68.17389664499996,-26.495069017999867],[-68.11939952199998,-26.49669795699998],[-67.92163052799992,-26.275782169999957],[-67.65773049699999,-25.912944668999955],[-67.53430948699992,-25.575668283999903],[-67.45088960199996,-25.441292629999907],[-67.35234054799997,-25.350088805999974],[-67.27806062499997,-25.42494758299995],[-67.31602461199998,-25.522743941999977],[-67.33000160299991,-25.712891940999896],[-67.2947235129999,-25.749110144999975],[-67.08596752099993,-25.752013132999934],[-66.99210361599995,-25.587529850999886],[-66.93898062299996,-25.54479387899994],[-66.8575826199999,-25.41364307799995],[-66.83622754199985,-25.182772774999876],[-66.7551654859999,-25.049156352999944],[-66.6257016269999,-24.91091295399991],[-66.57410464199995,-24.821344103999934],[-66.56795450499993,-24.622667014999877],[-66.62216161399994,-24.462054829999886],[-66.61772959899992,-24.35792896099997],[-66.57825452299994,-24.29823371699996],[-66.3669816119999,-24.40662664499996],[-66.30161248999997,-24.40557538699983],[-66.15381657099994,-24.338758709999922],[-66.06242348399996,-24.46691063399993],[-66.06639851699998,-24.57464424099993],[-66.20514650799998,-24.570930387999965],[-66.3045505149999,-24.53963806099995],[-66.32665258799994,-24.984881404999953],[-66.39637761699998,-25.023013532999926],[-66.50394459199993,-24.98438553199992],[-66.47415949899994,-25.09460621799991],[-66.63764952699995,-25.190943621999963],[-66.68167849099996,-25.300859205999927],[-66.7020114789999,-25.62989869499995],[-66.65038264399993,-26.087315579999938],[-66.5283815279999,-26.36546283499996],[-66.78733858299995,-26.35111066899998],[-66.84864851699996,-26.3794834119999],[-66.99591855599994,-26.81769081899995],[-67.10942863499992,-26.970003074999966],[-67.25904057799988,-27.094377442999928],[-67.2701264829999,-27.01052622499998],[-67.03684956799987,-26.477561066999954],[-67.03241755299996,-26.27775610799995],[-67.07549248899994,-26.19845760499993],[-67.39403548799987,-25.879819219999888],[-67.48390155999994,-25.87294840599992],[-67.60095249099999,-26.11699221099991],[-67.82598848599997,-26.438541630999907],[-67.84942663399988,-26.57462853499993],[-67.8850094899999,-26.635176888999922],[-67.82977257999988,-26.760316355999976],[-67.53713955299997,-26.901383115999977],[-67.58444248799998,-26.94393015999998],[-67.79814162399992,-26.867195511999967],[-67.94596050999996,-26.931033595999963],[-68.01544950499994,-27.085564038999905],[-68.02264352499992,-27.188332542999945],[-68.07256362599998,-27.211527447999856],[-68.22768348499994,-27.20795055499991],[-68.30220061599994,-27.25339153399989],[-68.36551650699988,-27.399448375999953],[-68.33556360799986,-27.630778342999974],[-68.30262758999999,-27.661230131999957],[-68.31082157099996,-27.79504252299995],[-68.34383352899994,-27.829167094999946],[-68.36550158699998,-28.021342844999936],[-68.46739149899997,-28.17500877899994],[-68.50949849299997,-28.012808390999965],[-68.58882851199996,-27.892950527999915],[-68.66109459899997,-27.87602997999994],[-68.7214736389999,-27.922678120999876],[-68.74066953799996,-28.202091377999977],[-68.71960464199998,-28.32926010499989],[-68.76996663699998,-28.395200704999922],[-68.93508962699991,-28.352289383999846],[-68.94651063999999,-28.52061543399992],[-69.07924662699997,-28.570267313999977],[-69.26339754299994,-28.613770732999967],[-69.40573851999994,-28.742934351999963],[-69.41264353099996,-28.830010926999933],[-69.27824356999992,-28.95885284799988],[-69.28176162199998,-29.02689730599991],[-69.35434756199999,-29.084860848999938],[-69.46339461399992,-29.009186008999905],[-69.5432666079999,-29.07880525899992],[-69.47480053999988,-29.186964834999912],[-69.52705349199994,-29.35785138899996],[-69.53566757399989,-29.568984153999907],[-69.40125252499985,-29.75893383799996],[-69.38111148199994,-29.484574197999905],[-69.30966162499988,-29.310891943999934],[-69.24426249599986,-29.214644728999872],[-69.1223296089999,-29.111474899999962],[-68.96617156799994,-29.068122522999943],[-68.91724354899992,-29.074765181999965],[-68.78351548099988,-28.909032994999905],[-68.80998251299997,-28.781752956999924],[-68.80681650099984,-28.663460665999935],[-68.66776257099991,-28.417567645999952],[-68.52165962799995,-28.244575892999933],[-68.08290052399991,-28.251970407999977],[-67.97046651299996,-28.23450000699995],[-67.95337648299989,-28.111548383999946],[-67.88417062899998,-28.01084736099989],[-67.86022956599999,-27.55543358299991],[-67.89933064199994,-27.487916513999835],[-67.8767544889999,-27.263336326999934],[-67.83853954799997,-27.137038814999983],[-67.76750157699996,-27.04105177499997],[-67.66056860899988,-27.037569093999934],[-67.57953655999995,-27.070803507999983],[-67.48449751299995,-27.160372692999886],[-67.34212451699995,-27.4453584069999],[-67.26136052099992,-27.41859348099996],[-67.06419351599993,-27.129490072999943],[-66.99276763099988,-27.066595624999877],[-66.95051562999998,-26.96996787099988],[-66.92804760299992,-26.83490490099996],[-66.88063050699998,-26.740677221999874],[-66.66574851599995,-26.687996624999982],[-66.59678657499995,-26.490850405999936],[-66.54991949899994,-26.42402534799993],[-66.4063644869999,-26.423304336999934],[-66.27998349199999,-26.375739550999924],[-66.2441485089999,-26.393757624999864],[-66.14963550999994,-26.265829330999964],[-66.14684249199985,-26.15692644799998],[-66.21245552699997,-25.76907416199998],[-66.35095256299996,-25.669464965999964],[-66.37790658499995,-25.42164142499996],[-66.43939957899988,-25.296991628999933],[-66.44307755799991,-25.221577968999952],[-66.37182651999996,-25.15713504799993],[-66.25334161299992,-25.096344120999902],[-66.24338558799991,-24.713318638999965],[-66.16596949199993,-24.63921205299988],[-66.10054052399994,-24.70271301599996],[-65.96943649399986,-24.973265930999958],[-65.84954057699997,-25.298770435999927],[-65.76129958799999,-25.31301581599996],[-65.71413461899982,-25.20999551999995],[-65.77085847799992,-25.131094318999942],[-65.80001861699992,-24.987502258999882],[-65.88148451299998,-24.945693157999983],[-65.88686351599995,-24.805647145999956],[-65.95115656899992,-24.71231348099991],[-65.87916557599993,-24.62608263999988],[-65.91587059999989,-24.577032077999945],[-65.89513360399997,-24.325632481999946],[-65.86000856799996,-24.19272617599995],[-65.7884445489999,-24.058565600999884],[-65.72174052599996,-24.157820912999966],[-65.72402962399997,-24.307460348999882],[-65.69779963099995,-24.352898980999896],[-65.69591554699997,-24.59230926999993],[-65.65912653599997,-24.64250597399996],[-65.52087357999983,-24.49250226099997],[-65.51974453799994,-24.443419679999977],[-65.43379247899998,-24.366511526999943],[-65.42987058699998,-24.073210126999925],[-65.46398962699993,-24.019467710999947],[-65.5373916289999,-23.90358655799986],[-65.53646861399989,-23.795839874999956],[-65.43201450999993,-23.581199785999956],[-65.3764114789999,-23.529509426999823],[-65.3798296189999,-23.35233929599997],[-65.41366551799996,-23.324929968999925],[-65.40899663099992,-23.20878394899995],[-65.27619157699996,-23.095689778999883],[-65.26239060599994,-23.252461542999924],[-65.23245262699999,-23.276262292999945],[-65.24010463399992,-23.52530959099994],[-65.27242257099988,-23.55060332499994],[-65.32700351299997,-23.796265004999952],[-65.37863955699987,-23.881475432999935]],[[-65.16043062099988,-22.980186481999908],[-65.23268849399994,-23.00689223199987],[-65.30917352799997,-22.9725249199999],[-65.38883949499996,-22.794460438999977],[-65.38366651899997,-22.225105415999963],[-65.28075451799992,-22.124320909999938],[-65.20180553899996,-22.124320909999938],[-65.15668458099992,-22.203269384999942],[-65.13977057099993,-22.311076752999895],[-65.16817449399997,-22.340888164999967],[-65.16686255799988,-22.559989605999874],[-65.14993262299993,-22.588632077999932],[-65.16043062099988,-22.980186481999908]]],[[[-74.47044350399995,-13.259367974999975],[-74.82403559799997,-13.152747316999978],[-75.0065455049999,-13.078140163999876],[-75.10852057699992,-13.143621938999956],[-75.13760360199996,-13.289756061999924],[-75.07129654499994,-13.460566675999928],[-74.89621753099993,-13.650439917999904],[-74.87142956099996,-13.754035211999962],[-74.75274650599988,-13.845098219999954],[-74.6860885829999,-14.009521319999976],[-74.71814751799991,-14.154390614999954],[-74.6630405279999,-14.239924080999913],[-74.5817716059999,-14.152963678999981],[-74.51851656799994,-14.179069954999818],[-74.49332459099998,-14.290824696999948],[-74.51406862799996,-14.377689879999934],[-74.49157763399995,-14.492648519999932],[-74.39111365199989,-14.727901217999886],[-74.33525849299997,-14.730948877999879],[-74.3360445479999,-14.637921821999953],[-74.40448764899998,-14.453740060999962],[-74.32296760499997,-14.336099714999875],[-74.28650649399998,-14.347823817999938],[-74.24045564699998,-14.477110315999937],[-74.19141363499995,-14.522683393999841],[-73.97820249299997,-14.593915824999954],[-73.95084362599988,-14.708388481999918],[-74.05309261899993,-14.742867105999949],[-73.9696045039999,-14.930764899999929],[-73.89851355999997,-14.847450458999958],[-73.80113964999998,-14.846696422999912],[-73.69862360899992,-14.960021094999945],[-73.63415554199997,-14.961376783999924],[-73.61525753599989,-14.88539969299984],[-73.71003758199993,-14.806776937999928],[-73.71226448599998,-14.745193921999942],[-73.58913449599993,-14.669938847999958],[-73.52675653999995,-14.66760817599993],[-73.40317560399996,-14.740291178999883],[-73.08930149299988,-14.678335167999933],[-73.06567357799997,-14.739348382999879],[-73.20614656399988,-14.79206585999998],[-73.30984461999992,-14.871229749999884],[-73.27081261199999,-14.959538967999947],[-73.28029656799998,-15.06597807399993],[-73.20928156399992,-15.060914565999951],[-73.16790060999989,-15.179091857999936],[-73.09944158399992,-15.162445732999913],[-72.8116455849999,-14.961794872999974],[-72.73238362699988,-14.927437954999903],[-72.66535958199995,-14.945899934999943],[-72.52160658899993,-14.870241858999975],[-72.45442161199986,-14.887520816999938],[-72.51391552299992,-15.019496229999902],[-72.64923849999997,-15.121943538999915],[-72.86024453099986,-15.240383853999901],[-72.95807659599984,-15.314276029999917],[-72.98294855199993,-15.375203078999903],[-72.81362153499998,-15.443615669999872],[-72.85959660899988,-15.590911524999967],[-72.78289062799996,-15.681111531999932],[-72.72148161999996,-15.69710973499997],[-72.62166555899995,-15.662248728999941],[-72.52568052999993,-15.571014562999892],[-72.3881226019999,-15.583344844999942],[-72.43473855699995,-15.28366615799996],[-72.42698663699997,-15.213283651999916],[-72.33149764899997,-15.201756355999976],[-72.2139666029999,-15.460862775999942],[-72.10111953099994,-15.488403027999937],[-71.94091755699998,-15.487188154999956],[-71.70444462199998,-15.515324359999966],[-71.63115661399996,-15.504381952999893],[-71.50072464499993,-15.3480328039999],[-71.42945063999986,-15.348321979999923],[-71.34280355399994,-15.463454628999898],[-71.49559056099997,-15.598822699999914],[-71.59224664499999,-15.65062369999987],[-71.71554561499988,-15.677499769999883],[-71.9850155879999,-15.675475874999961],[-72.21668250699997,-15.845361126999933],[-72.14141854799993,-15.869197750999945],[-72.00036654099995,-15.811890343999949],[-71.81899254899986,-15.84792280499994],[-71.69709050799997,-15.932403503999865],[-71.63715352999998,-15.880471745999841],[-71.58240562099991,-15.926856862999955],[-71.58719654899994,-16.111325285999953],[-71.49523952699997,-16.15470347899992],[-71.43295259899998,-16.04318460399992],[-71.34240759299996,-16.012868432999937],[-71.21338663299997,-16.134669891999977],[-71.37069651599995,-16.270505337999907],[-71.37053658899998,-16.375053486999946],[-71.3204724869999,-16.467153838999877],[-71.18581352499996,-16.563143729999865],[-71.11078660599992,-16.658278833999873],[-71.03391248399993,-16.578752677999944],[-70.90344950199994,-16.53290165599998],[-70.84696955599992,-16.374612598999875],[-70.76727257699997,-16.318042128999934],[-70.75668355099992,-16.225489991999837],[-70.68110661199995,-16.094784269999934],[-70.64908556299997,-15.98519809399994],[-70.53334053199995,-16.13489687399982],[-70.53963450299989,-16.187500356999976],[-70.62719756399997,-16.25407211399994],[-70.66734352699996,-16.4367848629999],[-70.50607252499998,-16.554117257999962],[-70.51375554499998,-16.607756073999838],[-70.69313849899993,-16.554775405999976],[-70.6547245719999,-16.70955479199995],[-70.67820764699991,-16.88756143699993],[-70.54760753699998,-17.12048396499989],[-70.4590684879999,-17.17183904799998],[-70.32166260799994,-17.122926116999906],[-70.22953761299988,-17.114505320999967],[-70.06039449499997,-17.216529343999923],[-70.05184964699993,-17.30833163599982],[-69.97397656999982,-17.340157553999916],[-69.93443259499998,-17.40644348899997],[-69.94609852799994,-17.4794538889999],[-69.8955685599999,-17.715023589999873],[-69.83461753899996,-17.847544663999884],[-69.7502895579999,-18.167543096999964],[-69.63632953799998,-18.005101980999882],[-69.61032049199997,-17.88917103999995],[-69.60169953699994,-17.651829571999883],[-69.57169349699996,-17.49566918399995],[-69.48010259699998,-17.4512328589999],[-69.43389148799997,-17.36926170199996],[-69.57810950899994,-17.266059015999815],[-69.53180653399988,-17.17840543099993],[-69.33672360499997,-17.05174246899992],[-69.2686466259999,-16.891969311999958],[-69.19019352099991,-16.840070411999932],[-69.13034857599985,-16.726088597999876],[-69.00801050799993,-16.683276183999965],[-69.00782761499988,-16.560021973999937],[-69.08228255199992,-16.468665766999948],[-69.01835662599996,-16.401447094999924],[-69.03662163199988,-16.26902341799996],[-68.9555966229999,-16.169978658999923],[-69.04094652599997,-16.096756196999934],[-69.11219756499992,-16.238455119999912],[-69.27428462899985,-16.2877329989999],[-69.40209959999993,-16.188879347999944],[-69.50125164699989,-16.193785945999934],[-69.73559557899995,-16.32556270799995],[-69.85317959899999,-16.34080486299996],[-69.95317855399992,-16.312141603999976],[-70.09208663799984,-16.241588945999865],[-70.1993255459999,-16.148954833999824],[-70.30992157299994,-15.970794128999898],[-70.37448854699994,-15.90302543599995],[-70.47554060399989,-15.67606981699987],[-70.52275854699997,-15.53231196299987],[-70.56880151499985,-15.30223374999997],[-70.64884952799997,-15.201334410999948],[-70.7593456429999,-15.145695840999906],[-70.84773264499984,-15.132963896999968],[-71.1666335509999,-14.981872548999888],[-71.31330160099998,-14.93995515399996],[-71.34772456899998,-14.85601776999988],[-71.47389249599985,-14.878693331999955],[-71.71920750099991,-14.894420129999958],[-71.81736763399988,-14.843022466999969],[-72.01107056599994,-14.673914719999914],[-72.07550057999998,-14.682175923999921],[-72.09319259799997,-14.59957729699994],[-72.00616463799992,-14.472366660999967],[-72.07013649699996,-14.358007159999943],[-72.12379459099998,-14.465672202999826],[-72.24954258499997,-14.572974309999893],[-72.28112056699996,-14.503242742999873],[-72.42411063899993,-14.424865912999906],[-72.58186358899991,-14.406164210999975],[-72.64524049999994,-14.337796546999925],[-72.70134761799994,-14.299679171999912],[-72.82426454099993,-14.307323634999875],[-72.91792258599997,-14.366042722999964],[-72.92743654899988,-14.447630323999874],[-73.00556963299994,-14.406822022999961],[-73.05804453799988,-14.30500788299986],[-73.15657062399998,-14.222892053999942],[-73.23182653599997,-14.192611254999974],[-73.14680453399984,-14.409569945999976],[-73.25578352399992,-14.53196584899996],[-73.30688463499996,-14.49301447399995],[-73.26288551099992,-14.391203016999953],[-73.36180152399999,-14.253183245999878],[-73.35547653999998,-14.135052892999965],[-73.32190651399998,-14.01191401899996],[-73.27056148999998,-13.917298256999914],[-73.15937755599998,-13.820914584999969],[-73.12383258699992,-13.749066586999902],[-73.15451051999997,-13.600868335999962],[-73.26329052399996,-13.665602947999957],[-73.30052159699989,-13.745285845999888],[-73.40880555999996,-13.86802255699996],[-73.4522625429999,-13.999581723999938],[-73.46370652299998,-14.219879429999821],[-73.48598461599994,-14.361874904999922],[-73.57517259199994,-14.269041973999947],[-73.76535059899993,-14.133909098999936],[-73.79722563599995,-14.074790026999949],[-73.7457575649999,-13.947503283999936],[-73.85095262999994,-13.931125379999912],[-73.99572754399998,-14.024510174999932],[-73.87619758099999,-14.270539149999934],[-73.82420362999994,-14.341329351999946],[-73.82465356999995,-14.424309857999901],[-73.93261751199998,-14.366548821999913],[-74.06271353499989,-14.354927480999947],[-74.24692563799994,-14.181612018999829],[-74.21588158399993,-14.095293502999823],[-74.21239454399989,-13.986554737999882],[-74.17432360499998,-13.86658975499995],[-74.03658261599992,-13.78638902299997],[-74.02561154299997,-13.699613860999932],[-74.15007056799993,-13.66266307899997],[-74.2379536489999,-13.70090769199993],[-74.36377758299994,-13.811346474999937],[-74.45824464899994,-13.828541278999978],[-74.61856061799995,-13.824037346999887],[-74.59877764999993,-13.73024066499994],[-74.51162764999998,-13.747685416999957],[-74.39469155099994,-13.709342065999977],[-74.38808459899991,-13.61902605299997],[-74.48967762499996,-13.591586048999943],[-74.71860449999997,-13.605154170999981],[-74.83161954399998,-13.578009879999911],[-74.91715954799997,-13.525627343999815],[-74.93067955799995,-13.409259202999863],[-74.80162054499993,-13.374007264999875],[-74.69544261899989,-13.415288640999847],[-74.36632551399998,-13.446871651999913],[-74.25222752699995,-13.39783265699998],[-74.34671755999989,-13.318778066999869],[-74.35425557299999,-13.244467130999965],[-74.47044350399995,-13.259367974999975]]]]},"properties":{"objectid":128,"eco_name":"Central Andean puna","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Neotropic","eco_biome_":"NO10","nnh":1,"eco_id":588,"shape_leng":130.764930269,"shape_area":18.3834224152,"nnh_name":"Half Protected","color":"#AA66CD","color_bio":"#D6C39D","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":212540.2302850859,"percentage":4.352385433210497}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-71.71920750099991,-14.894420129999958],[-71.61982763299994,-14.78048877499998],[-71.66300952199998,-14.721327458999895],[-71.58200060699988,-14.64741935699982],[-71.60046359299997,-14.589898042999948],[-71.56582655099999,-14.397931505999964],[-71.65194658299998,-14.273984614999904],[-71.69476352399988,-14.39759254099988],[-71.7608486279999,-14.395575854999834],[-71.74594862199996,-14.231146719999913],[-71.76063555999997,-14.134853906999922],[-71.83432757599991,-14.124368648999962],[-71.87448862699983,-14.364017821999937],[-71.83020753599999,-14.457619875999967],[-71.82112155299995,-14.563839879999932],[-71.87396257899991,-14.641815718999965],[-71.98559561599996,-14.598777495999968],[-72.01107056599994,-14.673914719999914],[-71.81736763399988,-14.843022466999969],[-71.71920750099991,-14.894420129999958]]],[[[-72.28112056699996,-14.503242742999873],[-72.20846555999992,-14.427910722999968],[-72.25122852099992,-14.365458838999814],[-72.24101248999983,-14.271017085999972],[-72.30554962399992,-14.216314438999973],[-72.33792153999991,-14.10646892699998],[-72.27154558399991,-14.032893586999876],[-72.30215461799997,-13.947226177999937],[-72.24235560599993,-13.847923758999968],[-72.27014161499983,-13.771611056999973],[-72.37397763699988,-13.72367914399996],[-72.41129252899998,-13.890852011999982],[-72.49117256999995,-13.973824470999944],[-72.56145449199994,-14.120297893999862],[-72.52584062399995,-14.23255940599995],[-72.58186358899991,-14.406164210999975],[-72.42411063899993,-14.424865912999906],[-72.28112056699996,-14.503242742999873]]],[[[-72.64524049999994,-14.337796546999925],[-72.65571553199987,-14.188374370999952],[-72.79353363399991,-14.17452243699995],[-72.86684460899988,-14.114707331999966],[-72.7829814879999,-13.976275506999968],[-72.67645252799997,-13.881516750999936],[-72.62635757999993,-13.75203713399992],[-72.65380060199988,-13.672418608999976],[-72.72676858999989,-13.605896807999898],[-72.80187949499992,-13.639927836999846],[-72.78173861899995,-13.739609955999867],[-72.81999949299984,-13.817157983999948],[-72.88730651099996,-13.856157469999914],[-72.9070586329999,-13.91999823599997],[-72.98309355899994,-13.98233310899991],[-73.07498151399989,-13.970444719999932],[-73.09962464499995,-14.036151296999947],[-72.99659764299986,-14.187032427999952],[-72.82426454099993,-14.307323634999875],[-72.70134761799994,-14.299679171999912],[-72.64524049999994,-14.337796546999925]]],[[[-68.02536764399991,-16.878334972999937],[-68.11408254499997,-16.72852152999991],[-68.08027648599995,-16.579788680999968],[-68.01162752499994,-16.50445146499993],[-67.8750605059999,-16.506472508999934],[-67.78845247999993,-16.662499457999957],[-67.62848653999998,-16.674413829999878],[-67.7120665199999,-16.51198495199992],[-67.87580850699999,-16.354465018999974],[-67.92887852699994,-16.26537863099992],[-68.02105750099997,-16.177346183999873],[-67.98257450799991,-16.105971428999965],[-68.11581458199998,-16.123625560999812],[-68.11033650499996,-15.987132972999973],[-68.04181662599996,-15.88485045199991],[-68.17762759699986,-15.890769249999892],[-68.22380853099992,-15.851291826999898],[-68.22764559899997,-15.722107084999891],[-68.31140863899992,-15.713579503999881],[-68.40721848699991,-15.743810681999946],[-68.45551249799996,-15.636287292999953],[-68.36849962599996,-15.569832714999905],[-68.51038362199984,-15.50634382099986],[-68.6204455539999,-15.484139321999919],[-68.67234059899982,-15.529678368999953],[-68.68885060099996,-15.61164198299997],[-68.66791562499998,-15.785644928999886],[-68.7830885059999,-15.747577341999943],[-68.85080757899993,-15.635666361999881],[-68.98538255499989,-15.59874189899989],[-69.05455052299988,-15.406347045999894],[-68.92414856099998,-15.322994550999908],[-68.86880453099997,-15.24262768899996],[-68.94155157099988,-15.208474786999943],[-68.81900060299995,-15.057533809999882],[-68.79896550699993,-14.960004162999951],[-68.93201464199996,-14.86503300899983],[-69.08679955999992,-14.808524732999956],[-69.0721895669999,-14.752995461999888],[-69.13392664299994,-14.621287934999941],[-69.2051775139999,-14.554542504999915],[-69.32692750699982,-14.494131446999972],[-69.38066053599994,-14.43538302199994],[-69.3685076139999,-14.23334830999994],[-69.40884351199998,-14.16698677099987],[-69.56050851799989,-14.30263278699988],[-69.6445156399999,-14.291945692999889],[-69.62709854799994,-14.201365481999972],[-69.76476258999998,-14.120093039999972],[-69.80386349799983,-14.067492406999918],[-70.02692454999988,-14.073345992999919],[-69.97748556999989,-13.964990280999814],[-70.08094055099997,-13.98440779699996],[-70.24352248299988,-13.980629067999871],[-70.32369957799989,-13.933122116999925],[-70.29325851699997,-13.844754225999907],[-70.27703852899987,-13.658406580999952],[-70.37619761699995,-13.650335981999945],[-70.41941856599993,-13.735644477999926],[-70.45368948499998,-13.904620125999884],[-70.55547361799995,-13.91934511799991],[-70.54070252499997,-13.759695845999886],[-70.62690754999994,-13.773063975999946],[-70.72553254299999,-13.739493950999929],[-70.7172316089999,-13.663810058999957],[-70.60870356499998,-13.595159756999976],[-70.57646961499995,-13.533524772999897],[-70.65108464699989,-13.456415789999937],[-70.75376161899993,-13.565846732999944],[-70.91084250799997,-13.541556312999887],[-70.97959154899996,-13.581290724999974],[-71.03110454699998,-13.554004444999919],[-71.03832253899998,-13.442889912999817],[-71.23495461099998,-13.41274892499996],[-71.34940363199996,-13.298796447999905],[-71.42116563099995,-13.314088559999902],[-71.40428162799998,-13.605210999999883],[-71.33088649899997,-13.621193780999931],[-71.34622957299996,-13.730781800999864],[-71.39759856899997,-13.757552760999943],[-71.74414064499996,-13.34982597699991],[-71.72892749099992,-13.221968593999861],[-71.87265751699994,-13.055827705999889],[-71.92710853899996,-13.023830963999956],[-71.97154251699999,-12.869494141999951],[-72.04808052399989,-12.871834201999945],[-72.0274426019999,-13.10395240299988],[-72.07085449099992,-13.12084244099998],[-72.1744305069999,-13.012380612999891],[-72.3149795999999,-13.006148165999889],[-72.43563055899995,-12.91049857999991],[-72.48780052999996,-13.028841665999948],[-72.44851656099996,-13.07481439299994],[-72.22585264399999,-13.13664936899994],[-71.93067151899999,-13.30166909399992],[-71.75144161799989,-13.463190546999954],[-71.58842449799994,-13.713548774999879],[-71.45901461799997,-13.865371695999897],[-71.38185852899989,-13.932312424999907],[-71.33069656499998,-14.017219762999957],[-71.14689651599986,-14.119655001999945],[-71.15476963699996,-14.18481356999996],[-71.23931856499996,-14.209436919999973],[-71.18676755299992,-14.326736457999914],[-71.31985457299987,-14.385024379999948],[-71.3554915759999,-14.35167681099989],[-71.46621651699996,-14.098449289999962],[-71.53663657399989,-13.877785797999934],[-71.62397751299994,-13.751589371999842],[-71.72418249499998,-13.660285300999874],[-71.78010554799994,-13.523494484999901],[-71.88053164399997,-13.436867347999964],[-72.29529553899988,-13.319360943999982],[-72.36242653699992,-13.249822663999964],[-72.5820545279999,-13.19718917299997],[-72.67083749099999,-13.227138215999958],[-72.7546615519999,-13.200121162999892],[-72.97741649599999,-13.024827739999921],[-73.00907159199988,-12.954232500999865],[-72.93764453299991,-12.863724710999975],[-73.12371859299998,-12.811049310999977],[-73.20852652199989,-12.838926346999926],[-73.13568157999993,-12.940608387999873],[-73.15689852399987,-12.996419625999977],[-73.29872149999983,-13.01945410199994],[-73.32954360199994,-13.113399813999877],[-73.17644461999993,-13.288793148999957],[-72.97858459799988,-13.271750392999877],[-72.86304458899997,-13.296259580999902],[-72.52458149499995,-13.428771602999973],[-72.17647552299991,-13.621604996999906],[-71.98630556299997,-13.648506044999976],[-71.85105148499997,-13.706375374999936],[-71.75205953199992,-13.920561164999981],[-71.56386552099997,-14.16124516699989],[-71.4898145919999,-14.290162861999931],[-71.43123648799991,-14.437684022999974],[-71.36495960599984,-14.47301676199993],[-71.41137657399992,-14.56202888599995],[-71.40043651399998,-14.660492442999953],[-71.31463650299997,-14.722464547999891],[-71.15542560499989,-14.923915375999854],[-71.1666335509999,-14.981872548999888],[-70.84773264499984,-15.132963896999968],[-70.7593456429999,-15.145695840999906],[-70.64884952799997,-15.201334410999948],[-70.56880151499985,-15.30223374999997],[-70.52275854699997,-15.53231196299987],[-70.47554060399989,-15.67606981699987],[-70.37448854699994,-15.90302543599995],[-70.30992157299994,-15.970794128999898],[-70.1993255459999,-16.148954833999824],[-70.09208663799984,-16.241588945999865],[-69.95317855399992,-16.312141603999976],[-69.85317959899999,-16.34080486299996],[-69.73559557899995,-16.32556270799995],[-69.50125164699989,-16.193785945999934],[-69.44124560299997,-16.000821290999966],[-69.62306953399991,-15.994128676999821],[-69.76014751399993,-15.90553715699997],[-69.77404755999993,-15.832106990999876],[-69.83332052299994,-15.797468273999925],[-69.88784748599994,-15.886954309999908],[-69.9643015069999,-15.858137158999966],[-70.02114053399998,-15.79103449199988],[-69.91129250699998,-15.626757906999899],[-69.7894514859999,-15.732059421999907],[-69.81866459799994,-15.605859475999978],[-69.89237958099994,-15.511993558999961],[-69.93532560299997,-15.404399426999873],[-69.83078751199997,-15.28975376699998],[-69.75991852099992,-15.318891776999976],[-69.67449150499993,-15.254653037999901],[-69.62681557499997,-15.358452179999972],[-69.5663835609999,-15.35214362499994],[-69.43330358199984,-15.482823194999924],[-69.35999260699998,-15.47964142499984],[-69.26627354099992,-15.702523102999976],[-69.17507960799998,-15.68509947399997],[-69.10621657399997,-15.732399223999948],[-68.98870849399998,-15.887221524999916],[-68.92059362799989,-15.929346790999887],[-68.7602156339999,-15.95231337399997],[-68.90151256099995,-16.091955544999905],[-68.84762563999982,-16.165591905999975],[-68.67176057099988,-16.217418386999896],[-68.60045655899995,-16.196027769999887],[-68.58525849199998,-16.3159334099999],[-68.64892558499992,-16.315830479999818],[-68.82188448099993,-16.48563677399983],[-68.82652252299988,-16.52738887799984],[-68.85823059199993,-16.592212002999872],[-69.00782761499988,-16.560021973999937],[-69.00801050799993,-16.683276183999965],[-69.13034857599985,-16.726088597999876],[-69.19019352099991,-16.840070411999932],[-69.2686466259999,-16.891969311999958],[-69.33672360499997,-17.05174246899992],[-69.19435848799992,-16.947877779999942],[-69.00817160799994,-16.88054008399996],[-68.92172954399985,-16.831157933999975],[-68.77396363099996,-16.70618794899997],[-68.55969955499995,-16.724720671999933],[-68.47577658699993,-16.84414032899997],[-68.52984656799993,-16.96223782399983],[-68.43490558899998,-17.05430531899998],[-68.42093664499998,-17.12228909199996],[-68.33423658499993,-17.143582813999956],[-68.33062750499994,-17.223365623999882],[-68.25555448599982,-17.293086629999834],[-68.18229648499988,-17.28370895699993],[-68.20493349099996,-17.206792757999892],[-68.14996362899996,-17.125654760999907],[-68.20520757899993,-17.070336211999972],[-68.21562159099994,-16.915968712999927],[-68.05854757499998,-16.924789156999964],[-68.02536764399991,-16.878334972999937]]],[[[-77.70737458599996,-8.353334094999923],[-77.82476062599994,-8.234463619999872],[-77.91980755199995,-8.283790114999874],[-77.99779562899994,-8.429681497999866],[-77.98151361499993,-8.516819092999981],[-77.85752062399996,-8.47859811799998],[-77.74143260599999,-8.586054283999943],[-77.82256356099998,-8.64862871199989],[-77.83553355099991,-8.729990001999909],[-77.6810755269999,-9.065097987999877],[-77.50968153199989,-9.283472717999928],[-77.45367449399993,-9.449151762999918],[-77.41619162799992,-9.744195089999891],[-77.47397663699991,-9.762508877999949],[-77.60018949099998,-9.515835334999963],[-77.59394849299997,-9.41963388499994],[-77.6562345829999,-9.374986168999953],[-77.65098549999993,-9.318014037999887],[-77.73973057699999,-9.281074654999884],[-77.74127955199998,-9.201344482999957],[-77.8204955779999,-9.133533377999925],[-77.81318655899992,-9.078924104999885],[-77.94700649299995,-8.811210140999947],[-78.03667458399997,-8.789543926999897],[-78.08870658899997,-8.818040720999875],[-78.08901252899994,-8.893101502999968],[-77.96700252899984,-8.96388835099998],[-77.95611560999993,-9.217706460999977],[-77.89985661099996,-9.311251685999935],[-77.81497156899991,-9.398430351999934],[-77.72837862999995,-9.431940027999929],[-77.68142656099991,-9.487028074999955],[-77.67097449499994,-9.567193602999964],[-77.731925516,-9.70867459599998],[-77.62773158599992,-9.752228473999935],[-77.60153160099992,-9.934133542999973],[-77.50208249899998,-9.961873785999956],[-77.45303361299995,-10.113459163999948],[-77.38970950799984,-10.159502802999953],[-77.36414352999998,-10.250618280999959],[-77.27020251199997,-10.197412138999823],[-77.17244755999997,-10.034262751999847],[-77.0874175109999,-10.039925230999927],[-77.1365205439999,-10.166496326999948],[-77.07837662299994,-10.205598743999929],[-77.0817875539999,-10.426702117999866],[-76.99309561899992,-10.488936910999882],[-77.02690151099989,-10.561174666999875],[-76.97141264099997,-10.645188829999825],[-77.07155660299992,-10.720316665999917],[-77.17961157299993,-10.889070025999956],[-76.91413155299995,-10.737207374999912],[-76.84069853799997,-10.613266183999883],[-76.74712364099992,-10.729903048999972],[-76.73724355699989,-10.832804823999936],[-76.64044162699997,-10.894641476999936],[-76.64067062099991,-10.974497041999882],[-76.75429553299995,-11.039787541999885],[-76.77085163599986,-11.142192269999953],[-76.60533855199998,-11.200402408999935],[-76.58198556399998,-11.303013331999978],[-76.53809355999994,-11.332655261999946],[-76.57286052099994,-11.41264057899997],[-76.53510256199996,-11.48466560299994],[-76.6214525929999,-11.564781006999908],[-76.60029549599989,-11.644757606999917],[-76.52658051299989,-11.584138676999828],[-76.43113762599995,-11.666534125999931],[-76.41826654299996,-11.750574272999927],[-76.25956761099997,-11.742496967999955],[-76.26423649899994,-11.814252093999869],[-76.38886249099994,-11.948127683999871],[-76.38693951499988,-12.15851848299991],[-76.22509753699995,-12.072244223999917],[-76.06705457399994,-12.215297494999902],[-76.10077664599999,-12.339215216999946],[-76.03226464599999,-12.32906573799994],[-75.92436256199994,-12.213264715999856],[-75.92425560899989,-12.091519918999893],[-75.84718350699995,-12.07388020399992],[-75.79609664499992,-12.11887425999987],[-75.73715258699997,-12.388925937999886],[-75.80029262599999,-12.520117809999874],[-75.74350757899998,-12.598304537999923],[-75.7034756089999,-12.78367300899987],[-75.72861461299988,-12.877811671999893],[-75.80641962899989,-12.981811812999979],[-75.78653758699994,-13.057545492999907],[-75.7279816119999,-13.093151314999943],[-75.6461566349999,-13.04694221799997],[-75.59854859799998,-12.930641298999944],[-75.48818961099994,-12.92120763499986],[-75.3991315539999,-12.98483549999986],[-75.47395361899993,-13.045218395999939],[-75.46740751999994,-13.098718742999893],[-75.52403264099996,-13.162524471999973],[-75.47226751499994,-13.229303261999917],[-75.39908562099993,-13.160995612999955],[-75.37426764399993,-13.07348854299994],[-75.32576760599983,-13.025966839999853],[-75.25513464899996,-13.089532511999948],[-75.30663255899992,-13.257727133999936],[-75.31034054499997,-13.371540638999875],[-75.20716048999998,-13.40134266299998],[-75.20095855299991,-13.489909539999928],[-75.29536459899992,-13.544242041999894],[-75.12076553199995,-13.735145251999938],[-75.14579054199999,-13.78984689299989],[-75.09626053499994,-13.855557325999825],[-75.03233360399997,-13.823985378999964],[-75.00106055499987,-13.748210459999939],[-74.91182765199994,-13.812256413999933],[-74.87142956099996,-13.754035211999962],[-74.89621753099993,-13.650439917999904],[-75.07129654499994,-13.460566675999928],[-75.13760360199996,-13.289756061999924],[-75.10852057699992,-13.143621938999956],[-75.0065455049999,-13.078140163999876],[-74.82403559799997,-13.152747316999978],[-74.47044350399995,-13.259367974999975],[-74.49221750899994,-13.23861136599993],[-74.60400359899995,-12.927114361999884],[-74.68418857299997,-12.861723782999888],[-74.73862450799999,-12.99417377899988],[-74.89185357699984,-12.96356994099989],[-74.94045252199999,-12.862941672999852],[-74.82466859999994,-12.813944084999946],[-74.78717751999994,-12.757465982999975],[-74.78233361799994,-12.635347017999834],[-74.82427951199998,-12.553279803999942],[-74.87261962399992,-12.566031695999982],[-74.90849249299987,-12.701940735999926],[-75.11597460399986,-12.77321289699995],[-75.08955350399992,-12.67536725299982],[-75.02864858399988,-12.56273509399989],[-75.0631025639999,-12.456337058999907],[-75.12863949199988,-12.450983704999942],[-75.26394654299992,-12.622069915999873],[-75.36738559899993,-12.631092531999968],[-75.37086459199992,-12.564185832999954],[-75.25469258699997,-12.40099705199998],[-75.38196558399994,-12.31930735799989],[-75.50878864099997,-12.05804527999993],[-75.78767350299995,-11.938864339999839],[-75.85252361699992,-11.82196545699992],[-75.85517162799988,-11.738295286999914],[-75.93927748899989,-11.687975537999876],[-76.02140857299997,-11.57127664599983],[-75.93384551199995,-11.548411316999932],[-75.71236461699988,-11.752750214999935],[-75.63235448999995,-11.779143486999942],[-75.54212162599998,-11.681822046999912],[-75.42810058499998,-11.718175534999943],[-75.32045750199995,-11.819807619999892],[-75.14136456199998,-12.102605153999889],[-75.05601449199992,-12.051290639999934],[-75.04723360999992,-11.914718255999958],[-75.09051557899994,-11.814611844999888],[-74.99291954799997,-11.750252239999895],[-74.93269356199994,-11.655197769999972],[-74.9613874989999,-11.50260555799997],[-75.02537561799988,-11.43530792799993],[-75.0736005629999,-11.525450937999892],[-75.08660860599997,-11.660712558999933],[-75.24057762999996,-11.70580535399995],[-75.34311663599982,-11.649781383999937],[-75.40650964099984,-11.539572767999971],[-75.37829565199996,-11.399759437999933],[-75.46320349299998,-11.30080117999995],[-75.46492764999988,-11.460260349999942],[-75.59978459299998,-11.518918417999942],[-75.76987453099997,-11.425083849999965],[-75.83760852299997,-11.31261262299995],[-75.75399048999992,-11.222647643999949],[-75.72885165299994,-11.091866652999954],[-75.95638260599986,-10.961211725999874],[-76.00241853299991,-10.867101392999814],[-75.9663845639999,-10.800256888999854],[-75.98233063099997,-10.699947132999966],[-75.8719025769999,-10.753614446999961],[-75.7792205209999,-10.738471365999942],[-75.74012749199989,-10.697680162999973],[-75.83778353799988,-10.599503936999838],[-75.88480349999992,-10.498535027999935],[-75.88356750399998,-10.271282018999841],[-75.94805954399999,-10.10948429799987],[-75.92281358699995,-10.045201973999895],[-76.02355953699998,-10.022948355999915],[-76.07051059999992,-10.107531482999946],[-76.07211254899994,-10.220469580999975],[-76.04698963799996,-10.427482975999908],[-76.07198363599991,-10.565049452999915],[-76.11941565199999,-10.652736230999892],[-76.21262358899997,-10.640742062999948],[-76.2006225479999,-10.57145004199998],[-76.26340451099998,-10.52846697199982],[-76.25409657499989,-10.384542150999948],[-76.41306255399996,-10.48521098699996],[-76.44029954899997,-10.561471721999851],[-76.57351648899993,-10.552900387999955],[-76.59318563099993,-10.497749140999929],[-76.55219259199993,-10.399767039999972],[-76.44488562299989,-10.279394360999959],[-76.39170864999988,-10.144652919999885],[-76.38721460899995,-10.062522673999865],[-76.42546860899995,-9.686931100999914],[-76.47885864999995,-9.504718919999902],[-76.5710066119999,-9.318394240999908],[-76.67227156899997,-9.156248502999915],[-76.83035258699988,-9.0363490659999],[-76.63596351199999,-9.36260810999994],[-76.57146459899997,-9.48542444899988],[-76.52313253399996,-9.654874344999882],[-76.51779963099989,-9.857105192999882],[-76.54188553299997,-10.04981352999988],[-76.57548556599994,-10.12129758499998],[-76.6675036069999,-10.21662396399995],[-76.77769462099991,-10.248929494999913],[-76.78754453099998,-10.159479835999946],[-76.73843361899998,-10.075418566999929],[-76.74944257799996,-10.026411255999903],[-76.86701955799998,-10.029174098999874],[-76.77918961799998,-9.859289014999945],[-76.84207149299982,-9.755793129999915],[-76.90927155799989,-9.819866744999956],[-77.02469656799997,-9.848731671999928],[-77.02241551599997,-9.784735170999966],[-76.95340764299988,-9.598090303999925],[-76.94779964699995,-9.42271188799998],[-77.00558465499995,-9.32750754899996],[-77.0867305299999,-9.33477013299995],[-77.22385360499999,-9.482063640999911],[-77.27559660199995,-9.471600175999981],[-77.32218154299989,-9.360255141999971],[-77.33142862699992,-9.273252494999895],[-77.29205363099993,-9.18972632699996],[-77.19853958699991,-9.136875912999926],[-77.16434460699992,-9.065358161999939],[-77.23565649799997,-9.03607212799983],[-77.38213360899988,-9.128029819999938],[-77.4382625209999,-9.11521154299993],[-77.48266565299997,-9.025435827999956],[-77.55492352499994,-8.971447653999974],[-77.57917756799998,-8.862460616999897],[-77.46667448999989,-8.762026641999967],[-77.53684258699997,-8.68572734999998],[-77.68536354099996,-8.61267436999998],[-77.68693565099994,-8.473279296999976],[-77.59196449699988,-8.428024563999884],[-77.63150763399989,-8.374559420999901],[-77.70737458599996,-8.353334094999923]]]]},"properties":{"objectid":129,"eco_name":"Central Andean wet puna","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Neotropic","eco_biome_":"NO10","nnh":3,"eco_id":589,"shape_leng":80.8779337311,"shape_area":9.76349008009,"nnh_name":"Nature Could Recover","color":"#F5C47F","color_bio":"#D6C39D","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":117573.98986631402,"percentage":2.4076727503879622}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[59.06341161400013,44.604887917999974],[59.036804604000054,44.700739842000075],[59.10032249900013,44.79862873600018],[58.95633347199998,44.8013298890001],[58.99195052500011,44.73516783900004],[58.839099480000186,44.57418785600004],[58.84265860400012,44.418929193000054],[58.89962352700013,44.43489018100013],[58.96847549700004,44.565490123000075],[59.06341161400013,44.604887917999974]]],[[[59.22469753700017,45.651309521000144],[59.119758623000166,45.638870274000055],[59.08810051000006,45.57069019700009],[58.96348960600005,45.56573045800013],[58.906467518,45.415428181000095],[58.95989963599999,45.37548791000006],[58.88238949500004,45.30248991500008],[58.88673752400001,45.15811884100003],[58.98019457100014,45.092017811],[58.99102063700008,44.98263883600009],[58.91173152100009,44.95141892900017],[58.96333353400007,44.869719681000106],[59.18399048900005,44.965689958000155],[59.17290860700007,45.06508977400017],[59.25371954100018,45.0722499310001],[59.32934962100012,44.93084973900005],[59.437412637000136,45.06657387400003],[59.46007160400012,45.19024986100004],[59.440368599000124,45.3244391020001],[59.283969494000075,45.37032599800017],[59.285091496,45.44602900100017],[59.21503052000014,45.476966270000105],[59.33335147700012,45.613929418000055],[59.22469753700017,45.651309521000144]]],[[[60.08739050500003,45.757800595],[59.79573061700012,45.72317847400018],[59.79715755200016,45.57910546000011],[59.914649539000095,45.59074021300012],[60.24813462100008,45.71300468700014],[60.08739050500003,45.757800595]]],[[[65.8177106350002,44.42702812300013],[65.77361260400005,44.56122893100013],[65.62695360600009,44.66043395200012],[65.55464158600006,44.66137993300015],[65.46566064300015,44.7281977830001],[65.03014349199998,44.81364391000011],[64.92674249000004,44.78367894200011],[64.77391860200015,44.80895892900003],[64.646179571,44.86032792600008],[64.30551957900002,44.86715984700004],[63.934810633000154,44.93891095000009],[63.80341357200007,45.10042871600007],[63.786598636,45.18364978300019],[63.96789953700005,45.28778001],[64.00087763200008,45.38203015300019],[63.81859956800014,45.42996893900005],[63.74533854900005,45.58166127000004],[63.56327053700005,45.61845044900008],[63.44149053600006,45.594230269000036],[63.22723048300003,45.509601210000085],[62.94955060300009,45.60123050000004],[62.66691953300017,45.61303741600011],[62.53984451600007,45.672420350000095],[62.213897615,45.61120932300014],[62.180736627000044,45.559760196000184],[62.0176775970001,45.55596922800004],[61.87297862300011,45.40697017000008],[61.67758154000012,45.33525812700003],[61.603778547000104,45.33719987900014],[61.52410855700009,45.24359782500005],[61.458145494000064,45.23247084800016],[61.39493555000013,45.314098013000034],[61.36336863200006,45.46929917600005],[61.24671953000012,45.54254125200009],[61.16624454200013,45.781021652000106],[61.08590651500015,45.88599107599998],[60.91219760600018,45.948571036000146],[60.81898849600003,45.806320751000044],[60.88143954200001,45.641639487000134],[60.845001565000075,45.528980338],[60.90563960500015,45.38169018300016],[60.95929753200005,45.00048776400001],[61.002712605,44.86181973700019],[61.06333958100004,44.76637969900003],[61.00271947800013,44.72313997500015],[60.89702954600011,44.72313997500015],[60.69953162300004,44.66249774400018],[60.68048861000017,44.532458886000086],[60.5610355930001,44.41979923400004],[60.54364062900004,44.3251184290001],[60.44655958300007,44.33316036300005],[60.31848963400006,44.211879420000116],[60.28205148900008,44.1338507750001],[60.16257852300009,44.08182882800014],[59.92866860700008,43.90853935000018],[59.805149529000175,43.90855125200011],[59.89781951500004,43.63761310500007],[60.07848355900006,43.49227341800014],[60.309699532000195,43.36878099500018],[60.38045855300004,43.04229362799998],[60.3174206060001,42.96050301700012],[60.14701852600007,42.88511333000008],[59.97285850300011,42.71493739400012],[59.75328449100016,42.592756905000044],[59.69165051300007,42.522956607000026],[59.815189540000176,42.413318296000114],[59.95404062799997,42.3718914100001],[60.18479961900016,42.216107536000095],[60.365173482000046,42.268048179],[60.59957156000013,42.39233822400007],[60.815578570000184,42.44719694200012],[61.03585850600007,42.47972761200003],[61.25204857600016,42.45086603700008],[61.40697062200013,42.52251739500008],[61.55498162100014,42.493335631000036],[61.70655057100009,42.55493826100013],[61.961433518000035,42.52573738700005],[62.20433051100014,42.57786813100006],[62.380153502999974,42.71573417700006],[62.71155953800019,42.789624845000105],[62.817653477000135,42.83833459900018],[62.8983685230001,42.9284140740001],[62.92469054900005,43.01019261500005],[63.03464150500014,43.06293440000002],[63.27214055200005,43.05956252800013],[63.380168532000084,43.14390492600006],[63.518791632000045,43.17304176300007],[63.70275160800003,43.30155444300016],[63.99369048500006,43.36472197400019],[64.25006859600006,43.48471243900008],[64.361816632,43.51050355500013],[64.63535350500007,43.50303041800004],[64.79247261500012,43.551431382000146],[64.85475149700005,43.618192235000095],[64.89452362700013,43.80088168300017],[65.06590253400003,43.951771027],[65.24513260300012,44.05426091600003],[65.38030956700004,44.233795583000074],[65.48330656100018,44.30141021600019],[65.74772660500008,44.35976033200012],[65.8177106350002,44.42702812300013]]],[[[54.028049494000186,46.69868783600009],[53.92287857000014,46.68873181100008],[53.74932858200009,46.614493295000045],[53.62593053900014,46.430723588000035],[53.63616149000012,46.25747803100006],[53.46936748400003,46.08359947300016],[53.50883049000009,46.00064109500016],[53.78351551500015,46.01055940100014],[53.83200046700006,45.92319901500008],[53.985649469,45.92080011400009],[54.17639962499999,45.79792057500009],[54.27590958000019,45.7096554470001],[54.41915848400009,45.68885038900015],[54.50350155300015,45.70949568700007],[54.57509960200014,45.64907038000007],[54.76897050800005,45.54172820700006],[54.909732502000054,45.375389171000165],[54.82057956300008,45.26948902099997],[54.806980595000084,45.178080846000114],[54.66318150200004,45.06587884600009],[54.45497150700004,45.12765799900018],[54.18273148200012,45.03847790200007],[54.04021850900011,44.93636972500008],[53.86580250300017,44.926867664000156],[53.68657260300017,44.87491880800013],[53.5622025940001,44.77529100300018],[53.49384347900008,44.576727908000066],[53.36333456500017,44.50825111200015],[53.32806049800007,44.40158016200013],[53.10472854400001,44.25585155500016],[53.08129861000015,44.146079636000195],[52.96580151600017,44.12911952600007],[52.708770623000134,44.19902040700015],[52.51916862000019,44.287429537000094],[52.33604851000018,44.31657039700019],[52.18119452500014,44.382690370000034],[51.95526853900003,44.366512123],[51.81177555400012,44.39974905100007],[51.581394586000044,44.42216812800007],[51.492423534000125,44.526691131000064],[51.28576251400011,44.54125904600011],[51.21979861200009,44.48638909700003],[51.09281948500018,44.4740899950001],[50.90903049900004,44.60081397700014],[50.81386957900014,44.63357883700007],[50.73884953400017,44.602989080999976],[50.31145461400013,44.63978882100014],[50.24059249600003,44.532427873000074],[50.26787961400004,44.35210011100003],[50.40348858200019,44.29272036200007],[50.60935952300008,44.27973947600003],[50.82998261400007,44.198219600000016],[50.86939952000006,44.02700095500006],[50.99792460600008,43.92908121500011],[51.020370504000084,43.80618340400014],[51.15740959200008,43.625855977000015],[51.27188459700017,43.55627226700017],[51.30706059500011,43.4728106390001],[51.31312959500008,43.33229306200019],[51.282062574000065,43.14747192900006],[51.652324598000064,43.18052277900017],[51.663448557000095,43.09805340100013],[51.773750547000134,43.023937763000106],[51.91202948600011,42.82671862199999],[52.17155047500012,42.86955752300008],[52.21905860000015,42.954372828000146],[52.45442948200008,42.97342388800007],[52.68292955000015,42.95653603000005],[52.8322905390001,42.97306497500011],[53.103767474999984,42.95575399799998],[53.284599492000154,42.92799397300007],[53.46231847100006,42.960514919],[53.593353602000036,42.91862518500005],[53.79399155300007,42.93656597800009],[54.03218462199999,42.871895404000156],[54.16416958999997,42.79840975000019],[54.300350539000135,42.79095572300014],[54.479545571000074,42.6139550740001],[54.54327351600011,42.602236000000175],[54.90116150300008,42.71465542600009],[55.07188058700007,42.71493739400012],[55.22726849900016,42.66072659700012],[55.51189060600012,42.68507552200009],[55.7304385060001,42.559855086000084],[55.86428056800008,42.547427405000064],[55.985210476000134,42.500998535000065],[56.11374662600008,42.529338420000045],[56.30038847600014,42.50666755100019],[56.57245248100003,42.52395556199997],[56.70764553800012,42.463958737000155],[56.880630586000166,42.48718582900011],[57.08286663100006,42.46059792900007],[57.2460515570001,42.50566775800013],[57.4596294910001,42.522677489000046],[57.609069605000116,42.49578767300005],[57.84769048600009,42.30484791900017],[57.9467045670001,42.30536692600003],[57.96664058900012,42.42210705600007],[58.089263474,42.48765873600007],[58.28742960200009,42.420886987000074],[58.36909448500006,42.30308989900004],[58.51187852900006,42.2919699630001],[58.53730352400004,42.35952760000009],[58.33309957500006,42.53180253199997],[58.35385149100006,42.6316479300001],[58.48109850400016,42.62026497100004],[58.63248858400004,42.69672653500015],[58.62878059800005,42.91979328700006],[58.608501589000184,43.10307332300016],[58.435829522,43.18946392300012],[58.35576256500008,43.255763603],[58.293521570000166,43.370821150000154],[58.30535849299997,43.449361762000194],[58.38656958000007,43.598791147000156],[58.32220058700011,43.75733249900003],[58.43563053499997,43.94398910100006],[58.410083500000155,44.051978859000144],[58.459163567000076,44.095500886000025],[58.31602060900002,44.29853036200012],[58.29182859300016,44.39377912500015],[58.34085853500005,44.572478954000076],[58.29209849,44.72473773400009],[58.28556848500017,44.84405781400005],[58.340339528000186,45.02770866500015],[58.42467455000002,45.097380721000036],[58.447494616000085,45.23338984000014],[58.57434047200013,45.411399],[58.688285572000154,45.788921764000065],[58.77767152900003,45.842258831000095],[58.68574853800004,45.98824023600008],[58.645458572999985,46.109391427000105],[58.53770853700007,46.16564288200004],[58.23685051600006,46.210640794000085],[57.98907056200011,46.168629857000155],[57.54679156100008,46.20807777600015],[57.442390599000134,46.24054105400012],[57.16928053300012,46.37239258200009],[57.087688572000104,46.389673384000105],[56.76892848200009,46.3699435580001],[56.620464525000045,46.4239637500001],[56.45050450700006,46.54099909100012],[56.15880555900014,46.49775886400005],[55.87253959300011,46.539052981000054],[55.74613948700005,46.60212244400009],[55.38919060800009,46.57055133500012],[54.98278447700011,46.66981469400014],[54.873191595000094,46.65687454400006],[54.63190459800012,46.66852069600003],[54.56089060000005,46.59814321900012],[54.480850633000045,46.60216435300009],[54.28728449300013,46.690272740000125],[54.12063951700014,46.678942754000104],[54.028049494000186,46.69868783600009]]],[[[80.208808584,46.91468478700011],[80.12861657000013,46.889148648000116],[79.93260157300017,46.905025649000095],[79.70356757700017,46.78270317200014],[79.5186465320001,46.75832289700003],[79.34607655600013,46.86717263900016],[78.94600664100017,46.92771596400013],[78.77953349400008,46.90768489200008],[78.43518865100015,46.790275048000126],[78.17343857800006,46.775611076000075],[78.02648956600012,46.82880431000018],[77.51081057500011,46.792068272000165],[77.3444135360001,46.79984215200017],[77.10513249600007,46.75866320300014],[76.94812754700001,46.75383304700017],[76.71761364200006,46.79121432400018],[76.26914259500018,46.93393382700009],[76.13002764500015,46.96296421400018],[75.99698655700001,46.95853521599997],[75.83602149400002,46.92006378899998],[75.69328355000016,47.00542525900005],[75.28778853200009,47.09603665000009],[75.08940162400012,47.05254446300012],[74.86499762400018,47.09956476100001],[74.72074155000007,47.0523736400001],[74.56864956900012,47.04197438000017],[74.40743254600005,46.95746300299999],[74.04679160700016,46.85022359300007],[73.5676875530001,46.80606437400019],[73.51117659400018,46.77915209500003],[73.31984758400006,46.607722226000135],[73.07376848500007,46.52806313200011],[72.91532151299998,46.51558214300013],[72.74098161500012,46.4118787220001],[72.38249163900014,46.33048826300006],[72.3140865920002,46.19778580400015],[72.18612661400005,46.19542780699999],[72.09504650700012,46.136082759000146],[71.89605761100006,46.09389949000018],[71.72099251100002,46.15858967800017],[71.51274161200001,46.136555666000106],[71.3328626170001,46.15284857700004],[71.21662154500018,46.22028098800013],[70.99913764400003,46.24044181300019],[70.88102757600018,46.287431097000194],[70.84317758300011,46.35471129300004],[70.60267664100007,46.54876207500007],[70.46273054200014,46.57794015000013],[70.09073648100008,46.511510885000064],[69.90936249000003,46.58834343299998],[69.58616652900008,46.60683324100006],[69.43884251100013,46.587191257000086],[69.21476758400019,46.444372846000135],[69.05605356500013,46.42212157600011],[69.00012263400004,46.45456172000013],[68.83747062900011,46.41584269200018],[68.56092063000011,46.43401164100004],[68.57791862700014,46.374582606000104],[68.51631951800005,46.311353049000104],[68.41194956800018,46.29024322600009],[68.30500050700016,46.37067228],[68.20699359500014,46.38079242300006],[68.05053749300009,46.232400047000056],[67.97341962500019,46.18583069600004],[67.6011506390002,46.22280997600012],[67.38831349700001,46.20058988600016],[67.14808664400005,46.13090978400015],[67.07417250700007,46.20399998000005],[67.16623648100011,46.30563122600017],[67.04129750900012,46.363172321000036],[67.01748653400006,46.45958181000003],[66.84612254600006,46.58927416000017],[66.60427060900008,46.594431209000106],[66.39273852999997,46.717036995000115],[66.10501863900004,46.73410405900006],[65.9927296350001,46.864704504000144],[65.96798659199999,47.009835481000096],[65.84768650000018,47.14932409600016],[65.89810163600009,47.250375818000066],[65.88900760600012,47.318335116000185],[65.78134155700013,47.377578575000086],[65.56231656000006,47.38959856000014],[65.46389055300006,47.432086930000025],[65.32054156800012,47.59562791900015],[65.29234350500013,47.77372928000011],[65.10649860600006,47.88345996000015],[65.01236748700012,47.89033010300005],[64.96520955800014,47.77379013300009],[64.97737153200012,47.63149022700003],[64.90377054300012,47.52567741700017],[64.93296052099998,47.45858715500003],[65.0499195860001,47.378535621000026],[65.052429631,47.29127782900014],[64.96903958500019,47.14241590000006],[64.979606483,47.053963687000135],[64.89761353200004,46.99292415300005],[64.76576954800004,46.99515608700017],[64.62857858000007,46.952304948000176],[64.41261264200006,46.99195537300005],[64.47074851600001,46.81752428000016],[64.40841649300006,46.746582030000184],[64.28642258600013,46.734324838000134],[64.181419635,46.774265110000044],[63.83646056600003,46.665003649000084],[63.59967062800007,46.45599167300003],[63.38068049900005,46.36374044700017],[63.19533952000006,46.19963183500005],[63.0431975840001,46.11963746500015],[62.87569061300013,46.09598641700012],[62.790031586000055,46.02641025000008],[62.60308849100005,45.96173129400012],[62.49275548700007,45.96997908700018],[62.25033156900008,46.05449046400014],[62.07763653500007,46.01619019500009],[62.09118655200007,45.90845893500011],[62.163650620000055,45.85089487400012],[62.31383856700006,45.79156860100011],[62.59803051500006,45.814838776000045],[62.72837849700011,45.74819979600011],[63.00653061300005,45.72214448200009],[63.145801634000065,45.64907038000007],[63.27759163900015,45.63931652700012],[63.45862951600009,45.71710964100015],[63.671459617000096,45.76176875600015],[63.758060602000114,45.75537856100016],[63.948348580000015,45.63159930800009],[64.01033057500018,45.55543127800013],[64.18279259100012,45.541919147000044],[64.35579658200004,45.488338334000105],[64.48171254900012,45.38101896000012],[64.57183862700003,45.40706991500008],[64.58601359900013,45.47803831600015],[64.72183949000004,45.47822908800015],[64.77336154100016,45.41953598400005],[64.95758856400016,45.39609096300006],[65.08479350000005,45.41933012500016],[65.29251064000005,45.356490159000145],[65.35146358200012,45.259547915999974],[65.46775863300019,45.212280017000126],[65.60415650600015,45.108778936000135],[65.60987849600019,44.97252171200017],[65.65986649000013,44.92767970300014],[65.81626157200009,44.9194786810001],[65.92144758300003,44.723254807000046],[66.04477656000017,44.685347818000025],[66.09367356600006,44.574469823000186],[66.20320861200008,44.539813168000194],[66.24595648600013,44.46855911200015],[66.35819251600014,44.46995905800014],[66.45451349200016,44.42240818600004],[66.5240175740002,44.241119354000034],[66.68414360800011,44.24317945900009],[66.75657649500005,44.19824944000004],[66.89089951100004,44.188518553],[66.98722048700006,44.14384066200006],[67.16394051000015,44.118640638000045],[67.21946760200007,44.056411879999985],[67.20374248100006,43.94204014100012],[67.36007654200006,43.86983540900013],[67.36871359000008,43.819321534000096],[67.52555056600016,43.94554226700018],[67.58558661800015,44.05536296900016],[67.66355860200002,44.10322983900011],[67.62449658600013,44.20378149600015],[67.49237851400017,44.289638336000166],[67.42186759700007,44.39588113800005],[67.26193954300015,44.47356009100014],[67.14814749600009,44.558509003000154],[67.20263657200013,44.620718818000114],[67.28562160500013,44.60553282100017],[67.47046654200011,44.478324029000134],[67.75393664100011,44.30937922700008],[67.86927062300015,44.26325931300005],[68.02426156800016,44.14495461700011],[68.3050685680002,44.130100544000015],[68.47878250500008,44.032329834000166],[68.67933663800005,43.99250087400003],[68.9381175050001,43.900452322000035],[69.09982252300011,43.784611738000194],[69.23779250500007,43.73543259700011],[69.40029950300016,43.640034972000194],[69.48539761300009,43.64946092500003],[69.59342961600015,43.77098578100015],[69.72213759500016,43.77430048800005],[70.00714862300003,43.62600098400003],[70.09957151000003,43.539041421000036],[70.18752248499999,43.51869049500016],[70.28717057400007,43.41180295700019],[70.42720049200005,43.34066306200009],[70.594383586,43.1872819460001],[70.61833956800007,43.055793522000045],[70.66909752400016,43.0100866680001],[70.82997156000016,42.9796449370001],[71.06333162300007,42.98032387100017],[71.15660862700014,42.95979407600015],[71.2831876030001,42.87319644300004],[71.36583752700011,42.77154709100006],[71.50798756400013,42.85269665500016],[71.52284951600006,42.94384398400007],[71.60777261200008,43.04525344600012],[71.91198758600012,43.08969547000004],[72.2031785900001,43.03806344900005],[72.57821662200007,43.03326464200006],[72.82684348500004,42.99125286700007],[73.03019750800007,42.933082962000185],[73.21292148900005,42.91986520299997],[73.45704659799998,42.857186505000186],[73.85061651500001,42.83548475200001],[74.13318656500013,42.87590547400009],[74.38079050000016,42.88793618700015],[74.8252865130001,42.83635462600006],[75.14585156200019,42.7338771420001],[75.36695057800006,42.76175518400015],[75.362129643,42.85852543000004],[75.06797764700019,42.93872498900009],[74.94566355100011,43.056964473000164],[74.85697949500013,43.2157926540001],[74.78491960300005,43.28537250900007],[74.59834262900006,43.39452198700013],[74.40808063500009,43.41708188000007],[74.2704776130002,43.52353054100007],[74.29897356900017,43.63659017800012],[74.2830885210002,43.715729761000034],[74.32631651100019,43.77822254800003],[74.4915315340001,43.79983260400013],[74.77992264800002,43.68634197000006],[74.93010757700017,43.576181131000055],[75.04438057800007,43.43860074000014],[75.25662260400014,43.311072262000096],[75.39488260000007,43.26444155500019],[75.69518255400004,43.299914440000066],[75.83318354900018,43.30033437300011],[76.1345366060001,43.22369276500018],[76.43414253800006,43.19269481100008],[76.58598356400012,43.231181661],[76.79406749600008,43.42200289500005],[77.143623536,43.46852363100015],[77.26323664700016,43.50589149700005],[77.48014856700013,43.51655059500001],[77.62593853000004,43.485242678000134],[77.80738862900012,43.50951147300009],[77.92817654700019,43.47289060300017],[78.16404749400004,43.489431450000154],[78.19564861000009,43.574983357000065],[78.09404753800004,43.64596298900017],[78.06964865600008,43.76677454500003],[78.08724964700008,43.854008532000194],[77.92443855400012,43.86291950100008],[77.82447849100015,43.83666335700008],[77.70610858400005,43.85160544000013],[77.6883625860001,43.955119933],[77.71971861500003,44.02719893600016],[77.95683259800006,44.22092064399999],[77.98728958400011,44.26488842000009],[77.99247764700016,44.43415810500011],[77.88964862600017,44.68931899600017],[77.93646256200003,44.76805792400006],[78.19352765300005,44.83462096400012],[78.33009349900016,44.947909929000105],[78.361518595,45.04493967900015],[78.33598363000016,45.18504989600012],[78.26965360700012,45.341017836000105],[78.31437659200009,45.421298196],[78.41129251500001,45.443260123000016],[78.67014362300011,45.40536805300013],[78.926582586,45.47961025800004],[79.27767150900002,45.46765129400012],[79.41401657600005,45.487079037000115],[79.51003261800008,45.53324840300013],[79.66442861500008,45.56103826800006],[79.91117860200018,45.678638549000084],[79.99191259000014,45.753639651000185],[80.20120955100003,45.799930891000145],[80.40714251900016,45.88372092100019],[80.67400354100005,46.043110522],[80.78955863700008,46.09095056899997],[81.067397605,46.12975073400003],[81.04051952400005,46.21444098100005],[80.93100761199997,46.26489819400018],[80.67916059000015,46.30466211099997],[80.53646053300008,46.3771685910001],[80.548019512,46.461881804000086],[80.35993161700014,46.53179408500017],[80.28495063100013,46.59394321500008],[80.25003061700005,46.693141698000034],[80.18192262399998,46.755541950000065],[80.208808584,46.91468478700011]],[[74.13504064200015,45.24077899100001],[74.13720652600011,45.07712870100016],[74.01696762200015,45.08317088000018],[73.97444958000011,45.20790801600015],[73.87072755100013,45.21509901900015],[73.82195258600007,45.297160868000105],[73.71800256900008,45.34563006200017],[73.61653862600002,45.49169528600004],[73.51702850300006,45.5610883920001],[73.44410661600011,45.560081222000065],[73.42389650700011,45.660209426000165],[73.51773861800007,45.66402453300009],[73.55446660900009,45.75234950900017],[73.40695953,45.779598741000086],[73.47036762200014,45.836528962000045],[73.57528658600012,45.792419700000096],[73.66754150100002,45.996422147000146],[73.62313049000011,46.13810061900017],[73.65825653100006,46.1664208900001],[73.86509658800003,46.20259198800011],[73.95485654600003,46.25721886200017],[74.07189155100019,46.43361065000016],[74.2220225010002,46.451730649000126],[74.38780950500012,46.51979287600011],[74.392196593,46.56347533200005],[74.53930653800006,46.59670136400007],[74.55211660100014,46.70553166000002],[74.62165052300014,46.767753041000105],[75.00939954300003,46.75861307900004],[75.09049965300011,46.789493184000094],[75.30410759400013,46.69541486999998],[75.52243756399997,46.715633026000035],[75.75393651000019,46.80050214300013],[76.17356861400003,46.803192399000125],[76.38323253400017,46.71384399300007],[76.48757163900007,46.63110639399997],[76.59501657300012,46.66796480800019],[76.83245057700009,46.591864335000025],[76.88552864400015,46.63565340900004],[77.05045365300003,46.63559238900018],[77.14864362600008,46.531770951000055],[77.23596964600011,46.546473144000174],[77.28885660500003,46.613181359],[77.45860255000002,46.63464255200017],[77.62068961400007,46.622424587000125],[77.87619064300014,46.6494625950001],[77.9300535910001,46.61733140700005],[78.21578261200011,46.53796199200008],[78.4833985080001,46.658522761000086],[78.62748761500018,46.74904211900008],[78.75084659800012,46.74260314100019],[79.01702164500017,46.815178353000135],[79.12477151400014,46.802913281000144],[79.24611649400015,46.64367539300014],[79.21523253300018,46.58846145000007],[79.09282657200004,46.53221016300017],[79.02631365600007,46.43214281100012],[78.94583162700008,46.37688243300005],[78.83756258400012,46.35904842500008],[78.53706364300012,46.406999617000054],[78.41990659700008,46.39408343900004],[78.1596525270001,46.30521213100019],[78.06500960800014,46.31333319000004],[77.89481355500004,46.40458160500003],[77.72869865100017,46.38641148300013],[77.5259325340001,46.436902559000146],[77.40215261100019,46.50086100700014],[77.23316154100007,46.44364362100015],[76.81712359700003,46.47711390100011],[76.69183359000004,46.52982199100006],[76.44808164300008,46.53029892100011],[76.29559353400015,46.56001528200011],[76.27590159400012,46.49874709100004],[76.07929952799998,46.45916187600005],[76.01806654000006,46.49895697300019],[75.7137065600001,46.512343040000076],[75.62127663100006,46.464776746000155],[75.45797754400007,46.59908232700019],[75.42368349000009,46.50342402500013],[75.22989657000005,46.41512168100013],[75.0557025170001,46.44786256800006],[75.01154363400008,46.38064054300014],[74.88297261500003,46.400590646000126],[74.85487362600009,46.2688799340001],[74.7854764970001,46.18734094700005],[74.79736354400018,46.108307479000075],[74.81611654400018,46.024521304000075],[74.73764064000017,45.98125509400012],[74.80921153200012,45.84963976800003],[74.85897053200011,45.640769278000164],[75.03951253600013,45.53350036299997],[75.38417857400015,45.20785789300015],[75.58145152700007,45.08466269100006],[75.74624661700017,45.04595891800017],[75.98944049700003,44.89247772099998],[76.18698150300008,44.87085978700014],[76.48285665100019,44.64834205100016],[76.65879061900017,44.557350121000184],[76.69049064200016,44.497889906000125],[76.69087252100019,44.34392926400017],[76.74726864800004,44.25032754600005],[76.64865857500007,44.22644046300013],[76.587097519,44.27803040600003],[76.54612761400006,44.48779993900007],[76.35933656700018,44.600489933000176],[76.2694316030001,44.708227731000136],[76.05679361500012,44.75485894100018],[75.80673261000015,44.85671884600009],[75.69210857500019,44.930498705000105],[75.49083762200019,44.979769711000074],[75.40022254300004,44.95506975100011],[75.10114249100013,44.96222990800004],[75.03172256300013,44.98348876100016],[74.76500654800009,44.97878986600011],[74.52368954400004,45.016909756000075],[74.446487521,45.059729882000056],[74.33422064500013,45.193278746000146],[74.23303950700011,45.24388096600012],[74.13504064200015,45.24077899100001]],[[72.67868060500012,44.601580921],[72.79945360400012,44.535339076000184],[73.05555762700004,44.50136906600005],[73.24331661700018,44.29658827500009],[73.27545149200006,44.20429949800018],[73.43132756700015,44.12495053500015],[73.60812353000011,43.99575087300008],[73.57980359400011,43.906151346000115],[73.4949876180001,43.914570297000125],[73.40364851100009,44.032779775000165],[73.2712635580001,44.07553066600008],[73.20628352400013,44.154739483000014],[72.92698660800016,44.25629026400014],[72.69930260200016,44.27439433700016],[72.60681953200009,44.26078028200004],[72.46666757300017,44.2991901850001],[72.43258658700006,44.37316115200014],[72.27416962200004,44.47135900300009],[72.05684648600004,44.46322201900006],[71.92104356200014,44.491030995000074],[71.82949054800014,44.564287990000025],[71.67534651000005,44.574489102000086],[71.60105854,44.61068987100015],[71.39259356700006,44.64317980400017],[71.31842763800006,44.694670841],[71.11364751700017,44.75792990300005],[70.98193362000012,44.741068866000035],[70.92137152000015,44.77762888400008],[70.65109252600007,44.82869965200007],[70.460632551,44.78451897600013],[70.39304356600007,44.80892892200012],[70.27429161200007,44.76293071400005],[70.13802349100018,44.77588997400011],[69.72631848800012,44.71006001500007],[69.43418854300018,44.741381846000195],[69.2352826280001,44.735407729000144],[69.0347826420001,44.69971004100006],[68.85405757800004,44.727587916000175],[68.58231359400003,44.856749859000104],[68.2886195860001,44.87351886200014],[68.11353252500015,44.96143966200003],[67.68148062,45.00590079699998],[67.70294164500018,45.09269993100014],[67.81638349600019,45.11152987600019],[67.95747355700007,45.09276883000007],[68.05045350600017,45.04991886400012],[68.31477363800013,45.07086876100004],[68.33027663900003,44.99615784000008],[68.6416095240001,44.9298197710001],[68.94661759300016,44.82063978200006],[69.11060349400015,44.86143064900011],[69.30211657100011,44.86344079700018],[69.48239152700006,44.91203974200005],[69.58981349499999,44.96737974900009],[69.70726055500006,44.943159905000186],[69.79543264500012,45.005530652000175],[69.96363061900018,45.032278814000165],[70.16870863300016,44.9953679300001],[70.27259863500007,45.030058951000115],[70.40519749300006,45.01639896300014],[70.59026354500008,45.027808913000115],[70.8550104840001,44.91575191900017],[71.14346362300017,44.90811885600016],[71.3314435600002,44.82492779600011],[71.40570051700007,44.82755166700008],[71.57501261400006,44.74455976100012],[71.73725860000008,44.750750803000074],[71.81405661400015,44.70180099100003],[71.97939250400003,44.72848779700013],[72.1692736240002,44.7186077130001],[72.27271251200011,44.656462941000086],[72.39552348700016,44.66289789600006],[72.50417357200001,44.608730014000116],[72.67868060500012,44.601580921]]]]},"properties":{"objectid":130,"eco_name":"Central Asian northern desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Palearctic","eco_biome_":"PA13","nnh":2,"eco_id":817,"shape_leng":152.363861151,"shape_area":75.4713474969,"nnh_name":"Nature Could Reach Half Protected","color":"#DE8E59","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":663899.9239186728,"percentage":2.5164711816882144}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[59.805149529000175,43.90855125200011],[59.634258616000125,43.899910181],[59.60826147300003,43.96056397900014],[59.31204954100008,43.94316113600007],[58.948219622000124,43.99517084600012],[58.81834052300002,44.09061473900016],[58.62963052300012,44.09059864600016],[58.489150496000036,44.05582497900019],[58.459163567000076,44.095500886000025],[58.410083500000155,44.051978859000144],[58.43563053499997,43.94398910100006],[58.32220058700011,43.75733249900003],[58.38656958000007,43.598791147000156],[58.30535849299997,43.449361762000194],[58.293521570000166,43.370821150000154],[58.35576256500008,43.255763603],[58.435829522,43.18946392300012],[58.608501589000184,43.10307332300016],[58.62878059800005,42.91979328700006],[58.66807948600018,42.91730620800007],[58.85220358000009,42.711687394000194],[59.02421163300005,42.598796067000194],[59.03055958300018,42.54417740600019],[58.91935352100012,42.46455687000014],[58.977249504999975,42.4173962590001],[59.21788053500012,42.32480673900011],[59.31986952100016,42.24924924600009],[59.320712573000094,42.16839774300007],[59.20380061400016,42.0425627460001],[59.194129574000044,41.910530001000154],[59.31542258600018,41.85259244200017],[59.52144959900005,41.80117080700012],[59.6643405960001,41.640142209000146],[59.863483552000105,41.49964424500013],[60.12937160200016,41.462813660000165],[60.323501509000096,41.36967546000005],[60.43444052400014,41.34175584400015],[60.79320157100011,41.34723777600004],[61.01332459700018,41.298627264],[61.11389151000003,41.29977508200011],[61.27909060700006,41.22931881500011],[61.557598619000146,41.18197816100019],[61.72196958500007,41.11657601500008],[61.83190947700018,40.99120705100006],[61.861152596000125,40.87602025500013],[61.976245514000084,40.65229485400016],[62.14366950400006,40.54048311500003],[62.22323958100009,40.39137593100014],[62.29782862900004,40.09876939000003],[62.43560063100011,39.97412613100005],[62.48086156700009,39.823924103000024],[62.52848050000006,39.764907625000035],[62.78784960900009,39.599238135000064],[62.88386950700004,39.51632233700008],[62.939731539000036,39.37352924100003],[63.12546160500011,39.242763001000185],[63.202869487000044,39.1375516760001],[63.47969860300009,39.00921954199998],[63.57434856300006,38.98008706400009],[63.81465554800013,38.835497557],[63.92536154600003,38.69059088000017],[64.023277598,38.62217091300005],[64.06226350600002,38.50457365000011],[64.2340925210001,38.42355400600013],[64.35704749700005,38.28837938800001],[64.50795762900003,38.22762752200015],[64.58476251600007,38.16509064500008],[64.81630756300012,38.06735916300005],[65.1455074810001,37.86039304200011],[65.18554649100003,37.771840581000106],[65.27931249500006,37.676577402000134],[65.40384662200017,37.6215473580001],[65.49226363000008,37.74265831499997],[65.35443161400002,37.79991610100018],[65.22457850000006,38.0134132340001],[65.06648256200003,38.14552879200005],[64.97501353500013,38.18734912400009],[64.76133753300002,38.228249627000025],[64.55123859200006,38.352205402000095],[64.26201649600011,38.62068396300015],[64.17288954000009,38.65025028900004],[64.07875858800008,38.854436971000155],[63.78839152500012,39.09678444600013],[63.73691959800004,39.24778694600013],[63.58884053800017,39.236286137000036],[63.38323949400012,39.312689029000126],[63.18539053600006,39.415818792000096],[63.122432553000124,39.49185153900004],[63.09082054000015,39.59318807799997],[62.88609356100005,39.77275476300002],[62.776512582000066,39.82476313100017],[62.6017795730001,40.01083065300014],[62.50672962900006,40.179708400000095],[62.471309550000115,40.32932352800003],[62.411701478,40.45094611700017],[62.29988454200003,40.61115328800014],[62.15650152700016,40.76106161500013],[62.09286863300008,40.956929425000055],[62.02115659000009,41.06995737800014],[61.81866053699997,41.233297705000155],[61.622638500000164,41.29237520200019],[61.54061856000004,41.336376674000064],[61.27964062799998,41.34502461800008],[61.21985251299998,41.41672492700019],[60.97945751800012,41.51979400500005],[60.693191552000144,41.707994386000166],[60.66210961100012,41.78095684200014],[60.491451547000054,41.84607333300016],[60.41144158700013,42.03106193600013],[60.27140060500011,42.10367821900013],[60.18479961900016,42.216107536000095],[59.95404062799997,42.3718914100001],[59.815189540000176,42.413318296000114],[59.69165051300007,42.522956607000026],[59.75328449100016,42.592756905000044],[59.97285850300011,42.71493739400012],[60.14701852600007,42.88511333000008],[60.3174206060001,42.96050301700012],[60.38045855300004,43.04229362799998],[60.309699532000195,43.36878099500018],[60.07848355900006,43.49227341800014],[59.89781951500004,43.63761310500007],[59.805149529000175,43.90855125200011]]],[[[72.67868060500012,44.601580921],[72.50417357200001,44.608730014000116],[72.39552348700016,44.66289789600006],[72.27271251200011,44.656462941000086],[72.1692736240002,44.7186077130001],[71.97939250400003,44.72848779700013],[71.81405661400015,44.70180099100003],[71.73725860000008,44.750750803000074],[71.57501261400006,44.74455976100012],[71.40570051700007,44.82755166700008],[71.3314435600002,44.82492779600011],[71.14346362300017,44.90811885600016],[70.8550104840001,44.91575191900017],[70.59026354500008,45.027808913000115],[70.40519749300006,45.01639896300014],[70.27259863500007,45.030058951000115],[70.16870863300016,44.9953679300001],[69.96363061900018,45.032278814000165],[69.79543264500012,45.005530652000175],[69.70726055500006,44.943159905000186],[69.58981349499999,44.96737974900009],[69.48239152700006,44.91203974200005],[69.30211657100011,44.86344079700018],[69.11060349400015,44.86143064900011],[68.94661759300016,44.82063978200006],[68.6416095240001,44.9298197710001],[68.33027663900003,44.99615784000008],[68.31477363800013,45.07086876100004],[68.05045350600017,45.04991886400012],[67.95747355700007,45.09276883000007],[67.81638349600019,45.11152987600019],[67.70294164500018,45.09269993100014],[67.68148062,45.00590079699998],[68.11353252500015,44.96143966200003],[68.2886195860001,44.87351886200014],[68.58231359400003,44.856749859000104],[68.85405757800004,44.727587916000175],[69.0347826420001,44.69971004100006],[69.2352826280001,44.735407729000144],[69.43418854300018,44.741381846000195],[69.72631848800012,44.71006001500007],[70.13802349100018,44.77588997400011],[70.27429161200007,44.76293071400005],[70.39304356600007,44.80892892200012],[70.460632551,44.78451897600013],[70.65109252600007,44.82869965200007],[70.92137152000015,44.77762888400008],[70.98193362000012,44.741068866000035],[71.11364751700017,44.75792990300005],[71.31842763800006,44.694670841],[71.39259356700006,44.64317980400017],[71.60105854,44.61068987100015],[71.67534651000005,44.574489102000086],[71.82949054800014,44.564287990000025],[71.92104356200014,44.491030995000074],[72.05684648600004,44.46322201900006],[72.27416962200004,44.47135900300009],[72.43258658700006,44.37316115200014],[72.46666757300017,44.2991901850001],[72.60681953200009,44.26078028200004],[72.69930260200016,44.27439433700016],[72.92698660800016,44.25629026400014],[73.20628352400013,44.154739483000014],[73.2712635580001,44.07553066600008],[73.40364851100009,44.032779775000165],[73.4949876180001,43.914570297000125],[73.57980359400011,43.906151346000115],[73.60812353000011,43.99575087300008],[73.43132756700015,44.12495053500015],[73.27545149200006,44.20429949800018],[73.24331661700018,44.29658827500009],[73.05555762700004,44.50136906600005],[72.79945360400012,44.535339076000184],[72.67868060500012,44.601580921]]],[[[74.13504064200015,45.24077899100001],[74.23303950700011,45.24388096600012],[74.33422064500013,45.193278746000146],[74.446487521,45.059729882000056],[74.52368954400004,45.016909756000075],[74.76500654800009,44.97878986600011],[75.03172256300013,44.98348876100016],[75.10114249100013,44.96222990800004],[75.40022254300004,44.95506975100011],[75.49083762200019,44.979769711000074],[75.69210857500019,44.930498705000105],[75.80673261000015,44.85671884600009],[76.05679361500012,44.75485894100018],[76.2694316030001,44.708227731000136],[76.35933656700018,44.600489933000176],[76.54612761400006,44.48779993900007],[76.587097519,44.27803040600003],[76.64865857500007,44.22644046300013],[76.74726864800004,44.25032754600005],[76.69087252100019,44.34392926400017],[76.69049064200016,44.497889906000125],[76.65879061900017,44.557350121000184],[76.48285665100019,44.64834205100016],[76.18698150300008,44.87085978700014],[75.98944049700003,44.89247772099998],[75.74624661700017,45.04595891800017],[75.58145152700007,45.08466269100006],[75.38417857400015,45.20785789300015],[75.03951253600013,45.53350036299997],[74.85897053200011,45.640769278000164],[74.80921153200012,45.84963976800003],[74.73764064000017,45.98125509400012],[74.81611654400018,46.024521304000075],[74.79736354400018,46.108307479000075],[74.51010851400008,45.99332821900015],[74.42092154300013,46.042691259000094],[74.23526758500009,45.98843017000013],[74.28766654900005,45.815250663000086],[74.25727863000009,45.7276807290001],[74.34541350400013,45.67900064700018],[74.20236157400018,45.569015325000066],[74.06498754500006,45.51276035000018],[74.08412963300009,45.37202014900009],[74.15557865200003,45.29187004400006],[74.13504064200015,45.24077899100001]]],[[[62.07763653500007,46.01619019500009],[61.98667159600012,46.04000938500002],[61.93989957000019,46.139580528000124],[61.86643956500012,46.15509157499997],[61.62803661300012,46.13205056100014],[61.52555460299999,46.15403059300013],[61.45447958500006,46.22206298100008],[61.224441605000095,46.29993220300014],[60.985637495000105,46.09122951900014],[60.92456057800007,46.001778184000045],[60.91219760600018,45.948571036000146],[61.08590651500015,45.88599107599998],[61.16624454200013,45.781021652000106],[61.24671953000012,45.54254125200009],[61.36336863200006,45.46929917600005],[61.39493555000013,45.314098013000034],[61.458145494000064,45.23247084800016],[61.52410855700009,45.24359782500005],[61.603778547000104,45.33719987900014],[61.67758154000012,45.33525812700003],[61.87297862300011,45.40697017000008],[62.0176775970001,45.55596922800004],[62.180736627000044,45.559760196000184],[62.213897615,45.61120932300014],[62.53984451600007,45.672420350000095],[62.66691953300017,45.61303741600011],[62.94955060300009,45.60123050000004],[63.22723048300003,45.509601210000085],[63.44149053600006,45.594230269000036],[63.56327053700005,45.61845044900008],[63.74533854900005,45.58166127000004],[63.81859956800014,45.42996893900005],[64.00087763200008,45.38203015300019],[63.96789953700005,45.28778001],[63.786598636,45.18364978300019],[63.80341357200007,45.10042871600007],[63.934810633000154,44.93891095000009],[64.30551957900002,44.86715984700004],[64.646179571,44.86032792600008],[64.77391860200015,44.80895892900003],[64.92674249000004,44.78367894200011],[65.03014349199998,44.81364391000011],[65.46566064300015,44.7281977830001],[65.55464158600006,44.66137993300015],[65.62695360600009,44.66043395200012],[65.77361260400005,44.56122893100013],[65.8177106350002,44.42702812300013],[65.98499263500014,44.41247127200012],[66.1160735310001,44.37100934900013],[66.33017751300008,44.161518599000146],[66.37830355200003,44.04122202800016],[66.43340249500005,43.98997892700015],[66.64074764600008,43.90044109000013],[66.83175663500003,43.85146428900009],[67.0239105920001,43.832692346000044],[67.24539148700018,43.76932264400011],[67.32454649300007,43.66470090200005],[67.31461360200007,43.5847412330001],[67.48381053200018,43.36657605099998],[67.6785125880001,43.21998159400016],[67.76567063400012,43.13075606700005],[67.78589650200013,43.05930336000017],[67.97422060000008,42.89360537100009],[68.06069954500015,42.8538863820001],[68.11078661300013,42.62015785000011],[68.06613956800004,42.57761617100016],[68.14127360700019,42.42245825800018],[68.1542965700001,42.2540021210001],[68.08029157300007,42.132181216000106],[68.04444150300003,41.9693253640001],[67.96013648800005,41.87488629300009],[67.96468350300012,41.790302664000194],[67.91873960900011,41.70468252900014],[67.97387660700014,41.45054573900006],[67.89219663600016,41.29504534100005],[67.87447360500005,41.17480727500015],[67.96987961200011,41.13560762900005],[68.11422755200016,41.2559414160001],[68.15498355099999,41.41232710999998],[68.11134350700019,41.653383102000134],[68.16390256600016,41.792522862000055],[68.17365256300013,41.89908987600012],[68.2672884800001,42.019919034000054],[68.24986250400019,42.11884141700011],[68.32589759700011,42.26669818900007],[68.31800855000006,42.38796639100008],[68.26033049500006,42.57078810500008],[68.28914664000018,42.61927674400005],[68.27890060099998,42.78632489],[68.17946658700015,42.96877293800003],[68.10131053600008,43.01637259300014],[68.05039248600008,43.10255414800008],[67.93668358800005,43.17690179700003],[67.91842662900018,43.263361463000194],[67.81347648400003,43.366122088],[67.72447961500018,43.4095517450001],[67.59443656700012,43.552591270000164],[67.52648950700012,43.71994183500004],[67.36871359000008,43.819321534000096],[67.36007654200006,43.86983540900013],[67.20374248100006,43.94204014100012],[67.21946760200007,44.056411879999985],[67.16394051000015,44.118640638000045],[66.98722048700006,44.14384066200006],[66.89089951100004,44.188518553],[66.75657649500005,44.19824944000004],[66.68414360800011,44.24317945900009],[66.5240175740002,44.241119354000034],[66.45451349200016,44.42240818600004],[66.35819251600014,44.46995905800014],[66.24595648600013,44.46855911200015],[66.20320861200008,44.539813168000194],[66.09367356600006,44.574469823000186],[66.04477656000017,44.685347818000025],[65.92144758300003,44.723254807000046],[65.81626157200009,44.9194786810001],[65.65986649000013,44.92767970300014],[65.60987849600019,44.97252171200017],[65.60415650600015,45.108778936000135],[65.46775863300019,45.212280017000126],[65.35146358200012,45.259547915999974],[65.29251064000005,45.356490159000145],[65.08479350000005,45.41933012500016],[64.95758856400016,45.39609096300006],[64.77336154100016,45.41953598400005],[64.72183949000004,45.47822908800015],[64.58601359900013,45.47803831600015],[64.57183862700003,45.40706991500008],[64.48171254900012,45.38101896000012],[64.35579658200004,45.488338334000105],[64.18279259100012,45.541919147000044],[64.01033057500018,45.55543127800013],[63.948348580000015,45.63159930800009],[63.758060602000114,45.75537856100016],[63.671459617000096,45.76176875600015],[63.45862951600009,45.71710964100015],[63.27759163900015,45.63931652700012],[63.145801634000065,45.64907038000007],[63.00653061300005,45.72214448200009],[62.72837849700011,45.74819979600011],[62.59803051500006,45.814838776000045],[62.31383856700006,45.79156860100011],[62.163650620000055,45.85089487400012],[62.09118655200007,45.90845893500011],[62.07763653500007,46.01619019500009]]]]},"properties":{"objectid":131,"eco_name":"Central Asian riparian woodlands","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Palearctic","eco_biome_":"PA13","nnh":3,"eco_id":818,"shape_leng":67.8490801785,"shape_area":9.89430225414,"nnh_name":"Nature Could Recover","color":"#D06F42","color_bio":"#CC6767","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":88832.60135756231,"percentage":0.33671442525739304}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[58.62878059800005,42.91979328700006],[58.63248858400004,42.69672653500015],[58.48109850400016,42.62026497100004],[58.35385149100006,42.6316479300001],[58.33309957500006,42.53180253199997],[58.53730352400004,42.35952760000009],[58.51187852900006,42.2919699630001],[58.36909448500006,42.30308989900004],[58.28742960200009,42.420886987000074],[58.089263474,42.48765873600007],[57.96664058900012,42.42210705600007],[57.9467045670001,42.30536692600003],[57.84769048600009,42.30484791900017],[57.609069605000116,42.49578767300005],[57.4596294910001,42.522677489000046],[57.2460515570001,42.50566775800013],[57.08286663100006,42.46059792900007],[56.880630586000166,42.48718582900011],[56.70764553800012,42.463958737000155],[56.57245248100003,42.52395556199997],[56.30038847600014,42.50666755100019],[56.11374662600008,42.529338420000045],[55.985210476000134,42.500998535000065],[55.86428056800008,42.547427405000064],[55.7304385060001,42.559855086000084],[55.51189060600012,42.68507552200009],[55.22726849900016,42.66072659700012],[55.07188058700007,42.71493739400012],[54.90116150300008,42.71465542600009],[54.54327351600011,42.602236000000175],[54.479545571000074,42.6139550740001],[54.300350539000135,42.79095572300014],[54.16416958999997,42.79840975000019],[54.03218462199999,42.871895404000156],[53.79399155300007,42.93656597800009],[53.593353602000036,42.91862518500005],[53.46231847100006,42.960514919],[53.284599492000154,42.92799397300007],[53.103767474999984,42.95575399799998],[52.8322905390001,42.97306497500011],[52.68292955000015,42.95653603000005],[52.45442948200008,42.97342388800007],[52.21905860000015,42.954372828000146],[52.17155047500012,42.86955752300008],[52.29486855500011,42.783524999000065],[52.42802447500014,42.83678562300008],[52.60877250600009,42.80364391300009],[52.73834952100003,42.72402438300014],[52.74679948500017,42.64303474600007],[52.55892951900012,42.29231697400013],[52.43873956500016,42.16962988300003],[52.41904058400013,42.08841946700011],[52.4915425370001,41.93661079499998],[52.442935546000115,41.76231498600015],[52.57830059999998,41.68988176400006],[52.59915946900003,41.63695306300008],[52.55617857800013,41.54259378800009],[52.72232449500018,41.418044909000116],[52.77970449000003,41.46550358000019],[52.818172564,41.59902444800019],[52.75423859200009,41.73344117400012],[52.99551050100007,42.06415469600012],[53.20101163300018,42.139558967000085],[53.2799104880001,42.13622816700018],[53.42089460200003,42.210477747000084],[53.55868957000007,42.17484795300015],[53.75946062700007,42.20576946500012],[53.884590539000044,42.15680104500012],[54.036800536000044,42.00648016100001],[54.04988854300012,41.92004379600013],[54.19770860199998,41.72085323100015],[54.37710949400008,41.61209334400007],[54.38092057700004,41.55079581500007],[54.31087150400015,41.50160527500003],[54.40966061500018,41.435214902000155],[54.53836054700014,41.38946932500011],[54.828441620000035,41.18138740500012],[54.89078856300017,41.087829104000036],[54.87420262100011,40.97382030100016],[54.788150482,40.81643112600011],[54.67678047000004,40.70760736800014],[54.57163653500004,40.66715261500019],[54.36687049600005,40.65032192100011],[54.149490531000026,40.659210930000086],[53.74142059200017,40.60140345800005],[53.647754500000076,40.730681909],[53.19519056900015,40.689830525],[53.137565488000064,40.653411994000066],[53.04470053799997,40.503725452000026],[52.97843958200008,40.291057961000035],[53.08998159100014,40.12284020400017],[53.05097959000011,40.00688244100013],[53.170589516000064,40.00745073400003],[53.2836986050001,39.957532142000105],[53.42497256600012,39.985352014000114],[53.59095352700018,40.02885040400014],[53.77039750200004,40.00420056700011],[53.975234619,39.91272198500019],[54.056560537999985,39.84717466400008],[54.024711485000125,39.76689866200019],[53.80674361300004,39.80259618200006],[53.67643351700008,39.84444266600019],[53.63237354000006,39.792293315000165],[53.80290956300007,39.645364251000046],[53.76491154600012,39.54424597700017],[53.66516857500005,39.494277597000064],[53.652400589000194,39.44096835700009],[53.86588246600013,39.24142022000018],[53.95959851400005,39.087163530000055],[54.04140052500003,39.03092448000018],[54.19530148700005,39.00730478000003],[54.27956056900018,38.91780516400007],[54.109928618000026,38.79980003800006],[54.05484057100006,38.65870008500019],[53.982971619000125,38.560121695000134],[53.983341596000116,38.482384237000076],[54.039958502,38.283672614000125],[54.33591059500003,38.39480357500014],[54.410804577000135,38.466202303000046],[54.40658160600003,38.56907172399997],[54.30990959700006,38.64434138200011],[54.35607561100011,38.71397018700003],[54.50428056700014,38.76573866500007],[54.53460361000003,38.83205242800017],[54.52642454900018,38.98196427500005],[54.66860157600013,39.07464482200004],[54.701454613000124,39.15374434000012],[54.663623564000034,39.247352093000075],[54.72894256200016,39.38751008700007],[54.88352949900013,39.4564820870001],[55.07270050500006,39.49277069800013],[55.138923575000035,39.43819830600012],[55.24530451099997,39.410740700000076],[55.484874559000104,39.40811967899998],[55.749252526000134,39.42929957400014],[56.10083363400014,39.357759360000045],[56.231735491999984,39.29902149700007],[56.449088636000056,39.23505014199998],[56.54152258700003,39.17738398900008],[56.752178590000085,38.93161485300004],[56.95790854800015,38.89311761000005],[57.03871160300008,38.77988731800019],[57.248420618000125,38.69030086600014],[57.34729354800004,38.62680979300018],[57.53298153800006,38.58387232100006],[57.705779501000166,38.47753513900017],[57.81502553900003,38.33883542800015],[58.026241620000064,38.28475153300013],[58.133979586000066,38.190999275000024],[58.37123455300019,38.09247888800007],[58.48773160700017,38.026100921000136],[58.69855156000011,37.95188335900002],[58.88594861900003,37.966623271000174],[59.033100473000104,37.89054358500016],[59.180309492,37.854274252000096],[59.27238453100017,37.79234439300018],[59.37788050500012,37.79829520900017],[59.512214585000095,37.74580521700011],[59.724548476999985,37.588330043000155],[59.90002060300009,37.499941868000064],[60.0605015270001,37.35412374200018],[60.28956955300009,37.30058567700007],[60.373035539000114,37.264506445],[60.456272532000185,37.174176351000085],[60.59371160400002,37.12382709700006],[60.732009486000095,36.97060138000006],[60.839054604000125,36.91500337800011],[60.87477458800015,36.84642482600009],[61.13245055200014,36.693725158],[61.24529259500014,36.58486351400012],[61.38977447700006,36.33270602600004],[61.531925520000186,36.18134226600017],[61.646419635000086,36.31440447600011],[61.66414249900009,36.562522054000056],[61.722225568000056,36.845452022000075],[61.78878056100001,36.98794286700007],[61.99118458000015,37.08763403900002],[62.316284574,37.12079821200001],[62.54833555200008,37.28916801600013],[62.714870557000154,37.46039169000005],[62.82022051900009,37.54151292300003],[62.97798956200012,37.58527115100003],[63.27746959900003,37.56897052900007],[63.590858565000076,37.49136215200019],[63.82992150800004,37.488710956000034],[63.92251957800005,37.50985950300003],[64.11067151100008,37.61016858900018],[64.25765254200013,37.718748768000125],[64.43982650200019,37.91744915900006],[64.58457157700019,37.89149342300004],[64.859947606,37.774644496],[65.03222656200006,37.72151747900017],[65.09557363400012,37.65590276700004],[65.01744055,37.560788618000174],[65.12763961000007,37.52256931900007],[65.32409650099999,37.57106952500004],[65.40384662200017,37.6215473580001],[65.27931249500006,37.676577402000134],[65.18554649100003,37.771840581000106],[65.1455074810001,37.86039304200011],[64.81630756300012,38.06735916300005],[64.58476251600007,38.16509064500008],[64.50795762900003,38.22762752200015],[64.35704749700005,38.28837938800001],[64.2340925210001,38.42355400600013],[64.06226350600002,38.50457365000011],[64.023277598,38.62217091300005],[63.92536154600003,38.69059088000017],[63.81465554800013,38.835497557],[63.57434856300006,38.98008706400009],[63.47969860300009,39.00921954199998],[63.202869487000044,39.1375516760001],[63.12546160500011,39.242763001000185],[62.939731539000036,39.37352924100003],[62.88386950700004,39.51632233700008],[62.78784960900009,39.599238135000064],[62.52848050000006,39.764907625000035],[62.48086156700009,39.823924103000024],[62.43560063100011,39.97412613100005],[62.29782862900004,40.09876939000003],[62.22323958100009,40.39137593100014],[62.14366950400006,40.54048311500003],[61.976245514000084,40.65229485400016],[61.861152596000125,40.87602025500013],[61.83190947700018,40.99120705100006],[61.72196958500007,41.11657601500008],[61.557598619000146,41.18197816100019],[61.27909060700006,41.22931881500011],[61.11389151000003,41.29977508200011],[61.01332459700018,41.298627264],[60.79320157100011,41.34723777600004],[60.43444052400014,41.34175584400015],[60.323501509000096,41.36967546000005],[60.12937160200016,41.462813660000165],[59.863483552000105,41.49964424500013],[59.6643405960001,41.640142209000146],[59.52144959900005,41.80117080700012],[59.31542258600018,41.85259244200017],[59.194129574000044,41.910530001000154],[59.20380061400016,42.0425627460001],[59.320712573000094,42.16839774300007],[59.31986952100016,42.24924924600009],[59.21788053500012,42.32480673900011],[58.977249504999975,42.4173962590001],[58.91935352100012,42.46455687000014],[59.03055958300018,42.54417740600019],[59.02421163300005,42.598796067000194],[58.85220358000009,42.711687394000194],[58.66807948600018,42.91730620800007],[58.62878059800005,42.91979328700006]],[[54.23997149899998,40.048411922000014],[54.2763905330001,40.07528681800005],[54.434791572,39.97740982600004],[54.60022351900011,39.94016031300009],[54.68954460000015,39.89620410400016],[54.91404348300017,39.83725267000017],[55.10311155800014,39.7140053330001],[55.06724556200015,39.619786874000056],[54.76200447600013,39.53061616400015],[54.64237259000009,39.517383151000104],[54.43426552400018,39.57261553400008],[54.34104149400008,39.68095481800009],[54.31063060800011,39.84402357100004],[54.19464149600009,39.922162690000164],[54.17496162600014,39.99020094500014],[54.23997149899998,40.048411922000014]]],[[[68.04444150300003,41.9693253640001],[68.08029157300007,42.132181216000106],[68.1542965700001,42.2540021210001],[68.14127360700019,42.42245825800018],[68.06613956800004,42.57761617100016],[68.11078661300013,42.62015785000011],[68.06069954500015,42.8538863820001],[67.97422060000008,42.89360537100009],[67.78589650200013,43.05930336000017],[67.76567063400012,43.13075606700005],[67.6785125880001,43.21998159400016],[67.48381053200018,43.36657605099998],[67.31461360200007,43.5847412330001],[67.32454649300007,43.66470090200005],[67.24539148700018,43.76932264400011],[67.0239105920001,43.832692346000044],[66.83175663500003,43.85146428900009],[66.64074764600008,43.90044109000013],[66.43340249500005,43.98997892700015],[66.37830355200003,44.04122202800016],[66.33017751300008,44.161518599000146],[66.1160735310001,44.37100934900013],[65.98499263500014,44.41247127200012],[65.8177106350002,44.42702812300013],[65.74772660500008,44.35976033200012],[65.48330656100018,44.30141021600019],[65.38030956700004,44.233795583000074],[65.24513260300012,44.05426091600003],[65.06590253400003,43.951771027],[64.89452362700013,43.80088168300017],[64.85475149700005,43.618192235000095],[64.79247261500012,43.551431382000146],[64.63535350500007,43.50303041800004],[64.361816632,43.51050355500013],[64.25006859600006,43.48471243900008],[63.99369048500006,43.36472197400019],[63.70275160800003,43.30155444300016],[63.518791632000045,43.17304176300007],[63.380168532000084,43.14390492600006],[63.27214055200005,43.05956252800013],[63.03464150500014,43.06293440000002],[62.92469054900005,43.01019261500005],[62.8983685230001,42.9284140740001],[62.817653477000135,42.83833459900018],[62.71155953800019,42.789624845000105],[62.380153502999974,42.71573417700006],[62.20433051100014,42.57786813100006],[61.961433518000035,42.52573738700005],[61.70655057100009,42.55493826100013],[61.55498162100014,42.493335631000036],[61.40697062200013,42.52251739500008],[61.25204857600016,42.45086603700008],[61.03585850600007,42.47972761200003],[60.815578570000184,42.44719694200012],[60.59957156000013,42.39233822400007],[60.365173482000046,42.268048179],[60.18479961900016,42.216107536000095],[60.27140060500011,42.10367821900013],[60.41144158700013,42.03106193600013],[60.491451547000054,41.84607333300016],[60.66210961100012,41.78095684200014],[60.693191552000144,41.707994386000166],[60.97945751800012,41.51979400500005],[61.21985251299998,41.41672492700019],[61.27964062799998,41.34502461800008],[61.54061856000004,41.336376674000064],[61.622638500000164,41.29237520200019],[61.81866053699997,41.233297705000155],[62.02115659000009,41.06995737800014],[62.09286863300008,40.956929425000055],[62.15650152700016,40.76106161500013],[62.29988454200003,40.61115328800014],[62.411701478,40.45094611700017],[62.471309550000115,40.32932352800003],[62.50672962900006,40.179708400000095],[62.6017795730001,40.01083065300014],[62.776512582000066,39.82476313100017],[62.88609356100005,39.77275476300002],[63.09082054000015,39.59318807799997],[63.122432553000124,39.49185153900004],[63.18539053600006,39.415818792000096],[63.38323949400012,39.312689029000126],[63.58884053800017,39.236286137000036],[63.73691959800004,39.24778694600013],[63.78839152500012,39.09678444600013],[64.07875858800008,38.854436971000155],[64.17288954000009,38.65025028900004],[64.26201649600011,38.62068396300015],[64.55123859200006,38.352205402000095],[64.76133753300002,38.228249627000025],[64.97501353500013,38.18734912400009],[65.06648256200003,38.14552879200005],[65.22457850000006,38.0134132340001],[65.35443161400002,37.79991610100018],[65.49226363000008,37.74265831499997],[65.46956661000013,37.86319310000016],[65.59269760600006,38.07489030300002],[65.61885048500011,38.20568973400009],[65.58673052900008,38.38562572600006],[65.72933151300003,38.52257144000015],[65.95150760300015,38.60042004200011],[65.9607696060001,38.74498272600016],[65.82109860000008,38.97542236700002],[65.85420259199998,39.09115432200019],[65.99826856400017,39.21530154000004],[66.08527355700005,39.32673106300007],[66.07057153200014,39.466136866],[66.121200574,39.55855858000018],[66.1196975310001,39.67014400700009],[66.02931261900005,39.783874531000095],[65.91430653700019,39.84534372100006],[65.68068663500003,39.86230349600004],[65.60549962200008,39.89030324400005],[65.50626358800008,40.01868030500003],[65.42597954000007,40.06175993500017],[65.38121749500004,40.137580116000095],[65.19164248200019,40.16770048600006],[65.05943254300018,40.27070720299997],[65.06059259900007,40.3375855700001],[65.2049866390002,40.42184347800014],[65.22926348099998,40.53077519500005],[65.339469582,40.61360231200007],[65.55742655700004,40.70286924600015],[65.73274948500006,40.74028287700003],[65.83100148400001,40.79130033600018],[66.00668349200009,40.94815156100009],[66.16101059100009,41.13240691500005],[66.31876354100018,41.17217954900019],[66.53794863200017,41.32985002100014],[66.61932350100011,41.50511511300016],[66.91251359000006,41.60675239500006],[67.11868259200003,41.756482020000135],[67.529418647,41.82580253800006],[67.70654251000013,41.95464261600006],[67.95587948700017,42.00926915600013],[68.04444150300003,41.9693253640001]]]]},"properties":{"objectid":132,"eco_name":"Central Asian southern desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Palearctic","eco_biome_":"PA13","nnh":4,"eco_id":819,"shape_leng":73.3485845861,"shape_area":60.3621429579,"nnh_name":"Nature Imperiled","color":"#F7BA4F","color_bio":"#CC6767","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":567973.421208628,"percentage":2.152867766575404}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[30.537820816000135,-22.58949470499988],[30.413526535000074,-22.606178283999895],[30.182443619000026,-22.69098281899994],[30.03070831300016,-22.718935012999907],[30.01895904500003,-22.771396636999896],[29.867633820000037,-22.87200164799998],[29.511220932000185,-22.92473792999988],[29.422885895000036,-22.95668411299988],[29.378461838000078,-22.891838073999907],[29.284372330000167,-22.827419280999948],[29.200239182000132,-22.833164214999897],[29.102016449000075,-22.717882155999916],[28.960601807000046,-22.72833061199998],[28.96959114100008,-22.63638114899993],[28.84646606400014,-22.602561950999927],[28.813028336000173,-22.54409027099996],[28.614826202000188,-22.581228255999918],[28.572336197000027,-22.55874443099998],[28.341682434000063,-22.57463836699992],[28.209922791000167,-22.66420936599991],[28.16217994700014,-22.756053924999833],[28.04064750700013,-22.83434104899993],[28.039596558000085,-22.90995979299987],[27.938846657,-22.976381427999968],[27.812739764000128,-22.957571427999937],[27.697198286000173,-22.863448915999868],[27.59903709600013,-22.901609359999952],[27.637775385000168,-22.989338973999963],[27.611397872000055,-23.114144493999902],[27.465603111000064,-23.1366291249999],[27.373482803000172,-23.03763571399992],[27.249831132000054,-22.94224554899995],[27.22320126700015,-22.85541568699989],[27.150182619000134,-22.80778244699991],[27.067102632000115,-22.81310748999988],[27.064469705000135,-22.871908723999923],[26.95430074000018,-22.889471045999983],[26.96404757800019,-22.789634933999935],[26.80662068400011,-22.782990482999935],[26.729732895000154,-22.748962353999957],[26.634625513000174,-22.789483157999882],[26.610995681000077,-22.73341077699996],[26.49629516300007,-22.728278622999937],[26.472780609000154,-22.689824029999897],[26.364606945000162,-22.66640501199987],[26.355405626000106,-22.724856718999945],[26.442683256000066,-22.780797860999883],[26.488623924000137,-22.82163007899993],[26.333295324000176,-22.865624589999925],[26.30198004900018,-22.84614193599998],[26.068279330000166,-22.8341818909999],[26.076676799000154,-22.90921793699988],[26.00138531099998,-22.933568068999875],[26.002677778000077,-23.00317125999993],[26.145216499000128,-23.070350135999945],[26.078931654000087,-23.117216984999914],[26.08190876200007,-23.22979965199994],[26.006117856000174,-23.237661011999876],[25.851192245,-23.182536209999967],[25.630907779999973,-23.407019202999948],[25.642565886,-23.488209852999944],[25.78363183700003,-23.522070020999877],[25.72745674400005,-23.784482177999905],[25.841975756000124,-23.58941068699994],[25.931333219000123,-23.604047861999902],[26.07095573400011,-23.58191728099996],[26.049707709000188,-23.70342560099988],[26.17645648200005,-23.702954460999877],[26.011253519000093,-23.85684606199993],[25.858419061000063,-23.90344715799995],[25.826887678000162,-24.02172394999991],[25.756757162000156,-24.10612657699994],[25.64053313200003,-24.047497716999942],[25.516499605000092,-24.105465429999867],[25.546692422000092,-24.196620855999868],[25.45799999800016,-24.281812426999977],[25.508328547000133,-24.360851844999956],[25.405408288000046,-24.381346768999947],[25.33265326500009,-24.44601505099996],[25.27980483700003,-24.580629851999902],[25.225273231000017,-24.596585927999968],[25.225795039000047,-24.705604405999907],[25.079403825000043,-24.676627557999836],[25.046381577000147,-24.763308815999835],[24.964279313000134,-24.742410091999943],[24.77327937200016,-24.767910676999918],[24.631663509000077,-24.71657731799985],[24.542756046000022,-24.737241270999846],[24.478883551000138,-24.699636347999956],[24.381458442000167,-24.714562444999956],[24.350185624000062,-24.79220736499991],[24.424011569000186,-24.83700225599989],[24.573597017000168,-24.8530462679999],[24.688984569000183,-24.841098444999886],[24.862116403000073,-24.925054574999933],[24.785132005000037,-25.065127695999877],[24.657387866000192,-25.108446302999937],[24.592009606000147,-25.19890618399984],[24.661790054000107,-25.237050332999956],[24.650941439000178,-25.294186411999874],[24.707844366000188,-25.366166103999944],[24.89010169200003,-25.404524597999966],[25.07773578600012,-25.601627031999953],[25.082891576,-25.66589444199991],[25.17432402000003,-25.654054616999872],[25.19741685000008,-25.76033148399995],[25.342472076000092,-25.768367766999972],[25.58155441300005,-25.637720107999883],[25.69029617300015,-25.37393951399997],[25.735279083000023,-25.360385894999865],[25.898609161000024,-25.49729156499984],[25.990283966000106,-25.594535827999948],[26.048542022999982,-25.745178222999982],[26.11656379700014,-25.785844802999975],[26.33793830899998,-25.765804290999938],[26.442131042000028,-25.85910987899996],[26.503473282000073,-25.80820846599994],[26.509386063000193,-25.74373054499995],[26.679033279000123,-25.74059867899996],[26.753770828000143,-25.836481093999907],[26.85557937600015,-25.83445358299997],[26.95345306400003,-25.882450103999872],[27.14076995800019,-25.92259788499996],[27.26613616900005,-25.928752898999846],[27.332496643000013,-25.97008323699987],[27.24474525500011,-26.09569358799996],[27.45195198100015,-26.068971633999922],[27.580810547000112,-26.024963378999928],[27.63788414000004,-26.04033660899995],[27.702877045000093,-25.939020156999902],[27.853204727000048,-25.820434569999975],[28.171255112000097,-25.77782058699995],[28.435140610000133,-25.928339004999884],[28.503149033000113,-25.88926887499997],[28.504005432000042,-25.733133315999908],[28.535039902000108,-25.62508583099998],[28.67403602600001,-25.680772780999973],[28.843215941999972,-25.59602928199996],[28.961977005000165,-25.650638579999907],[29.0530662540001,-25.628929137999933],[29.172304153000084,-25.652067183999918],[29.264802933,-25.546810149999942],[29.496629714999983,-25.461389541999893],[29.661767960000134,-25.43537712099993],[29.63204193100006,-25.358833312999934],[29.697324753000032,-25.23682594299993],[29.535768509000036,-25.146350860999917],[29.69556808500016,-25.004886626999962],[29.748132706000035,-24.90904998799988],[29.808835983000108,-24.91086387599995],[29.790746689000173,-25.031169890999934],[29.809833527000023,-25.199447631999874],[29.920339583999976,-25.145631789999925],[29.962270737000097,-25.05727577199991],[30.09171867400005,-25.08161926299988],[30.144615173000034,-25.13592719999997],[30.17308235200005,-24.925508498999932],[30.238559723000037,-24.872535705999894],[30.301471710000044,-24.948553084999958],[30.427572250000082,-24.909805297999924],[30.41441535900009,-24.862863540999967],[30.517873764000115,-24.762348174999943],[30.616130829000156,-24.743705749999947],[30.68212890600006,-24.586772918999884],[30.860427856000115,-24.52525329599996],[30.802494049000074,-24.505178451999882],[30.664583206000145,-24.490198134999957],[30.635643005000077,-24.45619010899992],[30.515827179000155,-24.43310546899994],[30.415229797000165,-24.388675689999957],[30.33153915400004,-24.314243316999864],[30.29779243500019,-24.210052489999896],[30.165283203000172,-24.188196181999956],[30.140888214000142,-24.05715179399988],[30.103670120000174,-24.04436111499996],[30.006660461000138,-24.045778274999975],[29.88902092,-24.1398315429999],[29.77394485500014,-24.11277008099995],[29.810388565000153,-24.05005836499987],[29.881511688000103,-24.035091399999885],[29.907648087000155,-23.923860549999915],[29.880426407000073,-23.83667564399991],[29.992984772000057,-23.76122856099994],[29.9191608430001,-23.761346816999946],[29.87488746600019,-23.700458526999967],[29.94464683500007,-23.63130569499998],[29.958400726000093,-23.503086089999954],[30.023750305000135,-23.478630065999937],[30.062316895000095,-23.38703155499985],[30.02568054200009,-23.31857681299988],[29.91287040700007,-23.334001540999907],[29.918655396000077,-23.240476607999938],[30.026643753000087,-23.226978301999907],[30.13463211100003,-23.129594802999975],[30.151819229000125,-23.0634937289999],[30.335075378000113,-23.058141707999937],[30.43199539200009,-22.981601714999954],[30.602724075000026,-22.92669677699996],[30.6333103180001,-22.88916587799997],[30.431123734000096,-22.8192234039999],[30.61700439500015,-22.677473067999927],[30.558822631999988,-22.79998207099993],[30.672960281000087,-22.83079719499989],[30.899908066000023,-22.732908248999934],[30.89095306400003,-22.64000701899988],[30.781429291000165,-22.661844253999902],[30.77680587800012,-22.57821273799982],[30.58325004600016,-22.624912261999896],[30.537820816000135,-22.58949470499988]]]},"properties":{"objectid":134,"eco_name":"Central bushveld","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Afrotropic","eco_biome_":"AF07","nnh":3,"eco_id":38,"shape_leng":52.5223891507,"shape_area":13.8503170774,"nnh_name":"Nature Could Recover","color":"#FDAE38","color_bio":"#FEAA01","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":156375.7238779804,"percentage":0.729397868001699}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-88.33399404899995,37.01837370000004],[-88.48766220699997,37.30530490700011],[-88.40726101899992,37.41156318700001],[-88.32761041099997,37.39627852700016],[-88.04447428599997,37.485541122000086],[-87.99178267399992,37.35236097400019],[-88.01041495799996,37.24800180799997],[-87.87881355199994,37.23217738400018],[-87.75927609299993,37.09766489599997],[-87.61691845699988,37.05234019000005],[-87.45528933399993,37.070858427000076],[-87.27405740499995,37.004606755000054],[-87.24139568299995,36.965253623000024],[-87.04445936299999,36.956313794000096],[-86.94657369599992,37.02996639300005],[-86.77008373499996,37.09144018800009],[-86.69819806399988,37.15488228000004],[-86.53859691299988,37.13229952200004],[-86.26866211899994,37.13450381700011],[-86.20319322199992,37.18502756400005],[-86.02461805399986,37.22144511800019],[-85.97180277299992,37.26673005300012],[-85.79288906899995,37.33914851900005],[-85.93720015799994,37.35857263200006],[-85.99422820399991,37.32917001900012],[-86.1229384479999,37.32979517300015],[-86.07561311099994,37.407249002000015],[-86.35051944099996,37.49438920200015],[-86.47644186299988,37.478796552000176],[-86.58974354399993,37.66768240500005],[-86.57868165799994,37.759026501000164],[-86.75384391699998,37.89831050100014],[-86.80224125699988,37.97750216700018],[-86.78014246399994,38.060041964000106],[-86.88650479799998,38.151385681000136],[-86.83685602799989,38.23269428300006],[-86.95525266699991,38.54034637000018],[-86.89478730399992,38.64186041900007],[-86.91964640999993,38.82747265400013],[-86.8794859539999,38.964262824000116],[-86.93250839499984,39.20649093300017],[-86.89776393399984,39.303354077999984],[-86.98377956799999,39.39548035200005],[-86.94970747799994,39.52223487700007],[-87.00217561699992,39.55316155200018],[-87.05098664499997,39.68303555400013],[-86.93845624599999,39.74175383400018],[-87.027147873,39.785525380000024],[-87.11524977899995,39.71482528100006],[-87.29464309299993,39.77285536100004],[-87.33330655499992,39.914612323000085],[-87.40811254899995,40.0065812470001],[-87.38238833299994,40.10826345000004],[-87.47763728699982,40.20584049700017],[-87.33411579599994,40.308475916000134],[-87.35914287099996,40.425252177000175],[-87.21636748899988,40.393566075000194],[-87.13807796299994,40.40623085600009],[-87.04925057899993,40.47119767000004],[-86.94090725299992,40.48136839900019],[-86.91538216099997,40.632538970000155],[-86.93613366899996,40.68147916600009],[-86.76690493799993,40.74813434500004],[-86.81768327599991,40.85053314400011],[-86.73995815499995,40.93591490600011],[-86.64717346799995,41.16258248300011],[-86.58992942599997,41.23420122900012],[-86.40915394699982,41.289113225],[-86.43940184099984,41.34139022000011],[-86.42978192999993,41.46241549500019],[-86.33584194199994,41.586675045000106],[-86.31760138399989,41.673144861000026],[-86.47296980499993,41.600436978],[-86.50780486799994,41.55207752100006],[-86.6912701899999,41.480227532000185],[-86.92393148899993,41.28834590200006],[-87.00157155599999,41.29302363200003],[-87.08698557199983,41.42061725600007],[-86.99966785799995,41.52177451800003],[-87.02361189099997,41.606689289000144],[-87.22053444099998,41.601587527000106],[-87.41154202699994,41.64368964400012],[-87.52843297699991,41.715998741000135],[-87.60132391799993,41.827971483000056],[-87.68142396599995,42.074653339000065],[-87.81062401999998,42.22648972100012],[-87.83447857999982,42.3023351870001],[-87.80286039799995,42.39019884000015],[-87.8159422459999,42.642680700000085],[-87.75780588099997,42.782044363000125],[-87.84370591499999,42.873580737000054],[-87.84525137999998,42.962180751000176],[-87.91080036399995,43.25585030700006],[-87.87388782399995,43.37470266500003],[-87.80420596699997,43.46300810900016],[-87.78854233899989,43.56641721799997],[-87.70384232699996,43.68378087800005],[-87.73540487999998,43.87207011700008],[-87.64743814499991,44.10279527100005],[-87.51820114699984,44.17964389900004],[-87.54116052899997,44.29315371400003],[-87.45973908899987,44.56300825799997],[-87.63431551999992,44.66123697600011],[-87.69701926099987,44.751871172000165],[-87.77311891599999,44.639856768000186],[-87.88355555199996,44.60283614300016],[-87.93059823099998,44.53535257500016],[-88.03381742399989,44.56854609700014],[-88.17538587799993,44.51972242199997],[-88.3068234399999,44.384116003000145],[-88.39049289499985,44.362070002999985],[-88.63755108399994,44.24541848700005],[-88.73074662099998,44.23417987300007],[-88.80102100599987,44.27778860400008],[-89.00271702599991,44.104986921000034],[-89.17489498599997,43.980048538000176],[-89.12387464499994,43.892123778000155],[-89.10645253499996,43.74720049300015],[-89.23250146099997,43.735088556000164],[-89.49337409999987,43.64247641600008],[-89.58470593099997,43.52658832100013],[-89.50825049999997,43.47315684600011],[-89.68754764899995,43.40574578400003],[-89.53552228999996,43.320110973000055],[-89.59513052699992,43.2444259400001],[-89.60131414699998,43.07356829900016],[-89.54240584099995,42.95400670400005],[-89.5438868789999,42.824832512000114],[-89.67847880499994,42.599373249000166],[-89.80382183599994,42.575115649000054],[-90.01907483899987,42.360082469000076],[-89.92139793199993,42.285854845000074],[-90.06614564799997,42.101411525000174],[-90.16571016599994,42.08687206400003],[-90.14416317699994,42.01166676500003],[-90.19584786899998,41.80614518400006],[-90.32365078399994,41.72956947800009],[-90.3422907879999,41.59143968900014],[-90.4564246079999,41.527425744000084],[-90.60070324499992,41.509592330000146],[-90.65879492399989,41.462327329000175],[-90.84746118399994,41.45502577899998],[-90.93213393199994,41.421562132000076],[-91.17142654399993,41.426954825000166],[-91.07784512899991,41.58813096600005],[-91.23915006699997,41.55790782800011],[-91.38015344299998,41.47412522200011],[-91.53789261399993,41.62431205100006],[-91.54430537099995,41.48890324800004],[-91.44543558699996,41.40023386700011],[-91.28766914299996,41.18743298000004],[-91.2028882009999,41.129906824000045],[-91.08006787099998,41.09651549200004],[-91.03037743299996,40.99927200500014],[-91.10557376099996,40.84403165100019],[-91.09910541699998,40.76359676400017],[-91.1864932229999,40.75968893500004],[-91.30190188699987,40.62930318300005],[-91.44898814999993,40.60623440800009],[-91.38124871399998,40.52557362600015],[-91.38576644599988,40.39236904800015],[-91.5249111149999,40.410805338000046],[-91.58544903099988,40.365304016000096],[-91.52190691299995,40.21536974600019],[-91.50271603799996,40.06334133500013],[-91.52453797799996,39.93429927400018],[-91.65849378299993,39.83294148900006],[-91.74321915399992,39.87600600000013],[-91.84186290799994,39.87902070200016],[-91.93652195599998,39.93545018900011],[-91.94838381799991,39.80741684200018],[-91.86447964299992,39.808920204],[-91.77769675699994,39.67844315800011],[-91.70708844899997,39.72470995600003],[-91.50277676499985,39.733897233000164],[-91.49445340699987,39.67552989700005],[-91.7519729149999,39.603460323000036],[-91.78637163299999,39.54433127600004],[-91.95215526499987,39.65718254700005],[-91.93630926799989,39.56658236800007],[-91.99119928399989,39.46809121300015],[-91.89062426699996,39.43983770100016],[-91.77758916199986,39.32134503100008],[-91.77834692899995,39.456555255000126],[-91.66306302999999,39.44661923300009],[-91.59613620299996,39.51756007400007],[-91.45272366499984,39.56225653300015],[-91.56526926799995,39.424029400000165],[-91.38941323199998,39.355778630000145],[-91.33306530099998,39.41340217100009],[-91.11073924599987,39.311452376000034],[-91.20793919699986,39.26094644800003],[-91.35749154999996,39.23299689200013],[-91.31874585199989,39.16410389100014],[-91.24417271299995,39.15883766800005],[-91.24318026999998,39.07936236600011],[-91.39867860599992,39.17646886400013],[-91.33988311699989,39.03199717900003],[-91.25557525799996,38.955534565000164],[-91.04123488599998,38.99469529900006],[-90.92871585799992,38.980337705000125],[-90.9549294439999,38.90299725900013],[-91.06241961399991,38.95427899800006],[-91.07747614999994,38.855588101000194],[-90.92958215099992,38.764999623],[-91.1549125119999,38.79234698400012],[-91.38985249399991,38.87688575600015],[-91.50689663799994,38.884770595000134],[-91.56295961899991,39.06089678300003],[-91.71567134299994,39.09659258200003],[-91.77879134299991,39.07159958600016],[-91.67143056299989,38.902625921000094],[-91.73914474399987,38.88388488500004],[-91.82160120799989,38.974480888000016],[-91.95276901699992,38.980437137000024],[-92.00266138999996,38.86572072500013],[-92.30110251999997,38.777329728000154],[-92.30841622499997,38.92011475800001],[-92.3871219959999,39.04682989700018],[-92.47039608599994,39.08718450600003],[-92.45340649399998,39.27642357800005],[-92.59778766799997,39.305903972000124],[-92.73709742699998,39.19230274900008],[-92.96471093899999,39.12445273100013],[-93.00161862399983,39.00881433600006],[-93.23824234599994,39.029191395000055],[-93.26538143099998,38.92767470000007],[-93.15614972899994,38.822890163000125],[-93.142867331,38.765493626000136],[-93.03178270099994,38.69199220300004],[-92.87603696599996,38.826621602000046],[-92.71072711199992,38.88476194000003],[-92.56581356199996,38.84404236300003],[-92.545392672,38.78439289900007],[-92.69489389299986,38.75732052700005],[-92.67939699899989,38.63643524100007],[-92.50467557699989,38.51000677100012],[-92.53070020599989,38.46984380400016],[-92.41201802399996,38.40354926000015],[-92.36301151299995,38.451350859000115],[-92.27002500799995,38.44002584100008],[-92.18704395399999,38.48299978200015],[-91.97418706899998,38.53111486200004],[-91.90155286099997,38.58246856400018],[-91.79590120099994,38.58189909000015],[-91.57012399199994,38.64343064100018],[-91.39591909599994,38.6355618770001],[-91.23054903899992,38.507565007000096],[-91.13595494099997,38.524029573000064],[-91.00421140399999,38.455278907000036],[-90.85820917199999,38.47264287500019],[-90.67697829799994,38.58211655200017],[-90.61378671499995,38.56865438500017],[-90.47046575799993,38.630412885000055],[-90.31078216899994,38.47272772500014],[-90.38385804799998,38.26008670600015],[-90.37127803699997,38.174723650000146],[-90.13561475599994,37.88859891600009],[-90.03519192299996,37.84976698400004],[-89.92514548999986,37.7043921340001],[-89.98210106799996,37.62710754200009],[-89.85234944899997,37.530651775000024],[-89.76142644499998,37.29294590100017],[-89.61049339899989,37.21923953900006],[-89.70037386799999,37.12936560400016],[-89.6148549209999,37.05054531600007],[-89.44421641399987,37.16374655200019],[-89.33462461999989,37.18734480800015],[-89.17361306999987,37.05926587400006],[-89.09682652899994,36.95347320500014],[-89.05969751299989,37.09429589700005],[-88.98000836099993,37.198110845000144],[-88.80186969499994,37.16036017900018],[-88.74180356999995,37.09370120000011],[-88.66284716099995,37.08654047300013],[-88.55674306799995,36.931837120000125],[-88.49418190399996,37.019153461000144],[-88.33399404899995,37.01837370000004]],[[-88.28718594299994,37.70295021900006],[-88.30492042499992,37.67048479000016],[-88.13588231299997,37.575474940000106],[-88.09568861899993,37.483948465000026],[-88.31910133799988,37.44587319400017],[-88.46927853499989,37.40354332200019],[-88.51588095099987,37.30302485400017],[-88.61705800099986,37.358383295000124],[-88.81410223399996,37.323515091000104],[-89.05922137299984,37.33298961400004],[-89.26480708499997,37.275773781000055],[-89.32135827399992,37.542743814000175],[-89.3782984579999,37.5913993850001],[-89.34439439199997,37.69458865100012],[-89.23656152899997,37.640858670000114],[-89.16649702399997,37.66371458200007],[-88.84272771799994,37.61488531700019],[-88.73250046999988,37.64731986200019],[-88.50889777099991,37.63177289400011],[-88.40392375699992,37.70129675400011],[-88.28718594299994,37.70295021900006]],[[-88.62491297299988,37.325651679000146],[-88.48891996599997,37.24250868500013],[-88.56869483399998,37.21339711700017],[-88.62491297299988,37.325651679000146]]]},"properties":{"objectid":140,"eco_name":"Central US forest-grasslands transition","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Nearctic","eco_biome_":"NE08","nnh":4,"eco_id":387,"shape_leng":62.9558568999,"shape_area":24.1736924333,"nnh_name":"Nature Imperiled","color":"#A3FC62","color_bio":"#FEFF73","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":228582.80927941512,"percentage":2.157398639665645}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-99.65211460299997,19.71584917500013],[-99.75776664899996,19.70806154800016],[-99.86877456299993,19.772587786000088],[-99.9411776099999,19.737915708000116],[-99.95568064999998,19.650504696000098],[-99.8862156269999,19.601014754000175],[-99.86710354699989,19.497611573000086],[-99.95902251399991,19.451471374999983],[-99.92237850999993,19.360864511000102],[-99.85449263799995,19.32953832100003],[-99.7746806589999,19.21761594100002],[-99.68925464899996,19.199745221000057],[-99.59580967099993,19.116480903000138],[-99.42449966399994,19.118038764000175],[-99.47950757999996,19.24371651700011],[-99.48218559799994,19.327241680000157],[-99.67314965999992,19.555515269000068],[-99.64360864799988,19.600939651999965],[-99.65211460299997,19.71584917500013]]],[[[-100.80616755499983,22.454532272000165],[-100.90573165699993,22.552059236000105],[-100.97588365999991,22.546276561000127],[-101.09484063599996,22.6733259290001],[-101.14665957299997,22.59632591100018],[-101.22083254299991,22.60122563600015],[-101.28286751199994,22.655065785000033],[-101.33834062299997,22.590391355000122],[-101.42857365499992,22.626119218000156],[-101.35190555999992,22.71933453100013],[-101.46503459899992,22.776483520000113],[-101.48046853199992,22.585153504000118],[-101.54493760499997,22.543190679000077],[-101.5148616599999,22.42704281500005],[-101.58979067799999,22.38931771200015],[-101.59047665299988,22.50536583200011],[-101.62430551099999,22.590538206000133],[-101.81336956399991,22.518751061000103],[-101.8958666019999,22.547006457000123],[-101.90883659099995,22.62139148900002],[-102.00055657199994,22.689552958000093],[-101.97076460599999,22.731423917000143],[-102.0808565459999,22.843367922000084],[-102.16077463999994,22.882134895000036],[-102.13205756899993,22.985519636000163],[-102.28742251499995,23.00541559200019],[-102.31109652999993,22.97033028600015],[-102.57532462799992,23.00726648400007],[-102.60688752299995,22.843794058000185],[-102.67779557399996,22.795385550000162],[-102.72679852699997,22.85516846900009],[-102.79446462599986,22.801908012000183],[-102.84169765599995,22.808330729000033],[-102.9016495539999,22.848796546000187],[-103.00848361499999,22.791019584000026],[-103.04935461299993,22.66288341900014],[-103.18473056399989,22.62474240600011],[-103.24359164099997,22.439499329000057],[-103.2443696489999,22.368478792000076],[-103.35457658899992,22.334283812000137],[-103.38982366499994,22.44164107200004],[-103.51598354499998,22.389048821000188],[-103.50640051599993,22.272439113000132],[-103.56678760199992,22.195991295000056],[-103.66394056499996,22.193553334000057],[-103.64155551899984,22.125538046000145],[-103.55659453699997,22.155397235000066],[-103.40745566899989,22.111528700000065],[-103.35540757099994,22.031214813000133],[-103.44445757999989,21.998947838000106],[-103.5898815889999,22.079901265000046],[-103.66094956699999,22.041033374000108],[-103.60830652099992,21.960716637000075],[-103.63597853599998,21.881285867000145],[-103.74064654599988,21.87217339700004],[-103.72639462899991,21.701779699000042],[-103.5683136109999,21.788891142000182],[-103.52294153099996,21.739176565000037],[-103.53675859499998,21.565278226000032],[-103.63270557099997,21.500340772000186],[-103.59667160099997,21.422278934000133],[-103.678123584,21.351337020000187],[-103.61725654999998,21.20219597300013],[-103.64651458799989,21.143235487000084],[-103.51557953799994,21.112953012000162],[-103.55338259199993,21.250768430999983],[-103.42704065599997,21.322835532000056],[-103.3338695999999,21.34883301100001],[-103.42668962199997,21.422523015000024],[-103.25471459399995,21.611900551000133],[-103.19660151799997,21.711005156000112],[-103.23889157299999,21.79305476900015],[-103.23363461099996,21.972275281000066],[-103.19832651399997,22.050568963000103],[-103.21739953499997,22.118499426000028],[-103.11083251999997,22.127965613000185],[-103.12344359699995,22.060525490000146],[-103.00399762099988,21.947169637000115],[-103.0268245609999,21.838336492000167],[-103.08673857199994,21.791067921999968],[-103.118102648,21.694816013000093],[-103.06185152799992,21.64142295500011],[-103.14446255999997,21.521631477000085],[-103.1265185819999,21.462466640000116],[-103.04058060499995,21.402671148000138],[-102.89182260999996,21.560132408000015],[-102.88227059299993,21.646906564000062],[-102.79373154399997,21.763042526],[-102.571647655,21.842609251000113],[-102.48955563099992,21.81518047800006],[-102.55094167199996,21.724674364000123],[-102.6011506129999,21.71235212800019],[-102.63543662099994,21.53821071400006],[-102.76488455399993,21.426877749000084],[-102.69148255099998,21.277350799000146],[-102.62060551299999,21.345039194000094],[-102.49047059899988,21.276467849000085],[-102.41243759499991,21.31507674000011],[-102.33988166199998,21.29924282100012],[-102.2094346049999,21.18416113500001],[-102.06108866499994,21.1654440100001],[-101.77391862699994,21.162026372000128],[-101.63191963199989,21.107633353000097],[-101.45664263699996,21.10390659100011],[-101.40044365299991,21.223485001000142],[-101.28583554399995,21.243117933000065],[-101.168067625,21.31852069600012],[-101.10888652699992,21.252572217000022],[-101.04956863599995,21.13314904000015],[-100.96541566899992,21.128487193000183],[-101.06521563799993,20.907102354000074],[-100.86864458499991,20.866296567000177],[-100.79127458999994,20.81115973800007],[-100.74114259399994,20.89280333],[-100.66789951299995,20.883568820000107],[-100.53664360299996,20.739590857000053],[-100.38545954999995,20.657098345000065],[-100.36844663399995,20.51977209400019],[-100.440635607,20.40247473500017],[-100.39337961099994,20.389860473000056],[-100.21764362299996,20.42869936300019],[-100.08253455199997,20.367697883000062],[-99.96777355699993,20.244728825000152],[-99.82595862799991,20.212086677000116],[-99.71159359399996,20.25680698000008],[-99.67739861399997,20.31310269200003],[-99.59782451299992,20.321666315000073],[-99.54334264599987,20.421445831000085],[-99.46956664199996,20.37622915200012],[-99.45561261799998,20.307837180000092],[-99.48143759699997,20.19274660900004],[-99.45516167099993,20.06158407300012],[-99.45785561499991,19.954975317000105],[-99.27362054499997,19.782517324000082],[-99.28189063299999,19.68484485000016],[-99.23233061899998,19.605074613000056],[-99.26679951999995,19.47186722800012],[-99.18422654199992,19.39426170100012],[-99.19901255399998,19.319395045000135],[-99.09145362499999,19.214284303000056],[-98.91141554199999,19.16397829900012],[-98.85845951599993,19.203686727000047],[-98.84835865199994,19.44758250800004],[-98.78556059499988,19.56449094600009],[-98.63124053699994,19.70806356000014],[-98.52054560399995,19.64981084200008],[-98.45604652299988,19.686828847000072],[-98.3612896109999,19.602568591000022],[-98.22791257599994,19.61188407100019],[-98.41004965599996,19.72194684200008],[-98.52520761799997,19.732024069000147],[-98.54990355499996,19.841394829000023],[-98.52935062499995,19.96079990200019],[-98.62467951899998,20.069819796000047],[-98.77894559699996,20.128593197999976],[-98.84177366099993,20.189937832999988],[-98.8737796229999,20.28646634500012],[-98.95983863499987,20.403696648000107],[-99.0103525099999,20.39995899000013],[-99.10584267099989,20.46507615200005],[-99.11375451699996,20.562489625000126],[-99.17404152299991,20.595763937000072],[-99.28301967599987,20.57841792300019],[-99.30880760699989,20.75447292600012],[-99.450652543,20.749173384000187],[-99.52115658599996,20.710637584000096],[-99.69815052999996,20.750983037000083],[-99.76860864099996,20.749560293000172],[-100.01911958699998,20.940135770000154],[-100.04575358699992,20.875884291000148],[-100.11879751499993,20.84583600600007],[-100.23757159699989,20.860551946000157],[-100.33020051199998,20.801872254000102],[-100.40030658299997,20.857636385000035],[-100.38171350999988,20.981339194000157],[-100.27828266899996,21.01521633200008],[-100.2159425989999,21.09779601600019],[-100.0432125289999,21.126086280000038],[-99.99377455599989,21.084547748000034],[-99.90837067399991,21.12321531100008],[-100.03418756699989,21.158394494000163],[-100.11507460899998,21.152148970000155],[-100.15534965299992,21.243102678000184],[-100.21535452499984,21.263830622000114],[-100.27279654599988,21.354529855000123],[-100.18749257599995,21.394757626000114],[-100.18785852999997,21.478273903000172],[-100.21076157699997,21.515188978000026],[-100.30741866699998,21.36293522700015],[-100.53480561899994,21.371524666000028],[-100.57676659999993,21.454565187000128],[-100.69078864599999,21.505570409000086],[-100.62783854199995,21.5729629220001],[-100.48741165599995,21.52118053000015],[-100.48949455899998,21.58489825000015],[-100.35691866699995,21.637456303000192],[-100.33213052899998,21.65683006600011],[-100.51464060399991,21.754348984000103],[-100.50815552499989,21.815056761],[-100.66925067499989,21.902580762000184],[-100.63709266599994,21.94304071200014],[-100.7084426109999,22.063981349000187],[-100.69484766699992,22.13106457000015],[-100.73514550999988,22.19557907300009],[-100.75981864799996,22.316216620000034],[-100.70825167099991,22.318182679000074],[-100.63860358799997,22.252245264000067],[-100.54774459499998,22.254185005000068],[-100.53777365099995,22.44890583600005],[-100.53378252399995,22.582738678000112],[-100.61232766199998,22.55866182900013],[-100.70433765699983,22.58947739300004],[-100.76232953099998,22.516275215000064],[-100.80616755499983,22.454532272000165]],[[-102.71445466599994,22.509073651],[-102.64875060299994,22.456792200999985],[-102.51352653299989,22.43708634600017],[-102.508766617,22.286553232000074],[-102.44574761399997,22.232688273000065],[-102.518569588,22.160861900000043],[-102.44351953599994,22.112304529000028],[-102.37437453499996,21.995634807000158],[-102.50729358199993,21.934094204000132],[-102.55408454999997,21.862008160000187],[-102.65467861999997,21.88423696700005],[-102.6491165569999,21.96376446400012],[-102.71237964199992,21.995401958000173],[-102.74966452699988,21.905778626000142],[-102.83650154599991,21.802841311000066],[-102.88667260099999,21.897469142000034],[-102.78119657599996,22.117759472000103],[-102.816932652,22.179843055000163],[-102.68891852699994,22.435356321000086],[-102.71445466599994,22.509073651]],[[-101.20048564099994,22.193437161000134],[-101.13095054599995,22.200888841000108],[-101.10825352499995,22.119312303000072],[-101.14931462499999,22.075508645000014],[-101.28083758199995,22.08511296500012],[-101.20048564099994,22.193437161000134]],[[-101.04359451799996,22.07620652200012],[-100.92129567799992,22.032755910000162],[-100.98392458799998,21.86963250700012],[-101.0369416339999,21.811108885000067],[-101.14615665899998,21.91523911200005],[-101.14374552099997,22.036703786000146],[-101.04359451799996,22.07620652200012]],[[-100.877853615,21.808099111000047],[-100.768783596,21.757446767000033],[-100.78052563699998,21.704682519000016],[-100.88700866499994,21.739810740000166],[-100.877853615,21.808099111000047]],[[-101.07155554099995,21.728077417000065],[-101.21940661399998,21.64191094900019],[-101.24052465099999,21.737071870000022],[-101.20584067099992,21.837268470000083],[-101.07211260299994,21.757457832000114],[-101.07155554099995,21.728077417000065]],[[-100.86850762499995,21.652584465000132],[-100.82058761399986,21.57413957400007],[-100.95628358599993,21.47108541500012],[-101.03811660899999,21.385289931000045],[-101.11497463799998,21.398831398000027],[-101.1344605509999,21.488704511000094],[-101.04589065699997,21.518684734999965],[-100.92695664699983,21.644587794000074],[-100.86850762499995,21.652584465000132]],[[-101.25693557999989,21.48230962200006],[-101.28330957299994,21.398581282000123],[-101.36070253499992,21.331089863000102],[-101.38647454099998,21.25379329300017],[-101.44616659899992,21.267258485000127],[-101.40555560799993,21.365448960000037],[-101.46314263499988,21.505991516],[-101.33698258699997,21.527225224000063],[-101.25693557999989,21.48230962200006]],[[-101.52745060799992,21.33693556999998],[-101.46559165999992,21.28153772700017],[-101.50758365399997,21.166849152000168],[-101.56040154599998,21.16411011400004],[-101.770408622,21.235674132000156],[-101.74938965799998,21.39072777400014],[-101.71492763099991,21.43018658900013],[-101.73035452399995,21.548757998000042],[-101.77584864399995,21.56414314900013],[-101.79730262899994,21.657984087000102],[-101.75346359899993,21.733052915000144],[-101.59672552899991,21.533646767000164],[-101.57884257099988,21.458307036000065],[-101.482208615,21.435435337000058],[-101.45175162899994,21.36862301900004],[-101.52745060799992,21.33693556999998]],[[-102.03900855299986,21.35007587900003],[-102.13273667099992,21.353459821000058],[-102.14002255599996,21.43931615800011],[-102.07937663699994,21.508370131999982],[-102.05884566799995,21.621172277000028],[-101.94528965599994,21.623974012000133],[-101.84670254799994,21.687580419000028],[-101.82691958099997,21.58879499600016],[-101.90170258499995,21.535647695000023],[-101.96401264799994,21.557376438000063],[-102.01141365199999,21.49882783900017],[-101.9598615939999,21.42300899800017],[-102.03900855299986,21.35007587900003]],[[-101.8491135189999,21.75294887100017],[-101.88732158699997,21.77490375700006],[-101.89583558899994,21.887833642000032],[-101.81801565199993,21.958792990000177],[-101.8491135189999,21.75294887100017]],[[-103.26985164099995,22.263658567000164],[-103.24459059599991,22.192260174000182],[-103.29109959799996,22.155120464000163],[-103.38101964899988,22.21629595200011],[-103.26985164099995,22.263658567000164]],[[-103.357299534,21.817673592000062],[-103.44939452099999,21.62893274600009],[-103.48357357599991,21.67034437600006],[-103.357299534,21.817673592000062]],[[-100.51564760599996,21.00272310600002],[-100.42514752699998,20.927395277000187],[-100.49633067199994,20.86465974900011],[-100.59114055799995,20.934726760000103],[-100.51564760599996,21.00272310600002]],[[-99.5038605289999,20.56813349600003],[-99.43543251499995,20.574590076000106],[-99.3627625879999,20.464143414000148],[-99.52225461499995,20.44374353800015],[-99.5038605289999,20.56813349600003]],[[-99.31758161499994,20.326047200000062],[-99.27834357999996,20.221565101000124],[-99.36588266799993,20.20049232600013],[-99.39671365499999,20.256414204000066],[-99.31758161499994,20.326047200000062]],[[-99.01709759499994,20.231435462000093],[-99.032760522,20.140360720000047],[-99.13632966499989,20.219108365000068],[-99.01709759499994,20.231435462000093]],[[-101.10165361499992,22.534995190000075],[-101.18489865399994,22.442943117000084],[-101.25205261799988,22.529311421000102],[-101.21070066599998,22.55831884100013],[-101.10165361499992,22.534995190000075]]]]},"properties":{"objectid":143,"eco_name":"Central Mexican matorral","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Nearctic","eco_biome_":"NE13","nnh":4,"eco_id":427,"shape_leng":54.6943488926,"shape_area":5.15728259103,"nnh_name":"Nature Imperiled","color":"#CC9141","color_bio":"#CC6767","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":59487.29279635399,"percentage":0.22548286662706654}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[48.695098463000136,37.336172053000155],[48.63952661200011,37.354939804000026],[48.49585760600013,37.24797766700004],[48.50518750300017,37.1524865],[48.59775154200008,37.05719767200014],[48.75327658200018,36.942407843000126],[48.86848852300011,36.89848281500019],[49.13779052299998,36.740111113000125],[49.24985154000018,36.54479919000005],[49.46344355499997,36.49221062600003],[49.63610858100003,36.41982803100018],[49.76379061600005,36.4482544170001],[49.9804644890001,36.41772618500016],[50.03688056500005,36.52525678300003],[49.69034553000006,36.59164246200004],[49.33118852200016,36.70241098900004],[49.1406365150001,36.836930141000096],[48.931858561000126,37.09362676400019],[48.824783604000174,37.17024725000016],[48.695098463000136,37.336172053000155]]],[[[60.87643454000016,35.77998069900008],[60.80456558700013,35.94222366700018],[60.68049950600016,36.08400573900008],[60.547576603000095,36.19920309600002],[60.199569539000095,36.398210600000084],[60.19312653700007,36.45473631100015],[60.08406858900014,36.60557318500008],[59.950691555000105,36.718135774000075],[59.86378060599998,36.74726691100011],[59.5906256130001,36.704451814000095],[59.39929157400019,36.75100591000012],[59.13154559100019,36.88851103200017],[59.0123175440001,36.97242545000017],[58.676677475000076,37.07641234700003],[58.54371651800005,37.136057132000076],[58.29559357599999,37.33274318400004],[58.09599648900013,37.464797554000086],[58.00160251300008,37.508085725],[57.75028254500012,37.57228557100012],[57.559959531000175,37.56176879800006],[57.31105757500012,37.63909504000003],[57.152412623000146,37.66583951300015],[57.09217456700014,37.70401992],[56.976901605000194,37.6845194230001],[56.923660594000125,37.645874155],[56.941299471000036,37.57413931300016],[57.073875531000056,37.48417617900009],[57.262546472000054,37.43124814800012],[57.392848522000065,37.37500121900018],[57.72160352800017,37.26164234900017],[57.84927751600014,37.24713076000006],[58.09066056900008,37.106676549000156],[58.316028488000086,36.850727927000094],[58.47132453500012,36.710242704000166],[58.58640655700009,36.66218992299997],[58.796089588000086,36.507430989000056],[58.89702262200012,36.45438544400014],[59.070907550000186,36.315487417999975],[59.12980249000009,36.247315723000156],[59.11718353500004,36.108093987000075],[59.02534855400006,36.15213787100009],[58.66197159300009,36.2632386570001],[58.4863506050001,36.34310159800003],[58.40645547700012,36.33858492600007],[58.42603660900005,36.240782029000115],[58.395656569000096,36.18822833500013],[58.163505511000096,36.226206403000106],[57.80724763600017,36.243490055000166],[57.388572577,36.307972371000176],[57.14094953199998,36.30054986100015],[56.74400757500001,36.38613378600019],[56.62266963600018,36.457459088000064],[56.60294349800017,36.5255427730001],[56.87410762100018,36.52669059100003],[57.040542546000154,36.505768187000115],[57.20291861900017,36.52431482399999],[57.504615501000046,36.534999572000174],[57.67529653100007,36.51968801400017],[57.82186550700004,36.46628305300004],[58.007312601000194,36.36539025200017],[58.08391162900017,36.42646985100009],[58.03689954500004,36.52818977800018],[58.02626760400011,36.63631146800009],[58.107707516,36.725428365000084],[58.03387049300005,36.8223543470001],[57.925147486000185,36.84479605399997],[57.76620849700015,36.82766042700018],[57.62089160900001,36.86339968800007],[57.43974661100003,37.04378176500006],[57.42610154300007,37.12548704900013],[57.089397475000055,37.20661951300019],[56.911453526000116,37.201752645000056],[56.822441570000194,37.25058762400005],[56.79282361200006,37.17172732600005],[56.600856571000065,37.04571178200018],[56.388149517000045,36.93469112800017],[56.335353585000064,37.08127502400015],[55.95942355100004,36.92537212800005],[55.838596573000075,36.79835293500014],[55.57513860400013,36.688511111000025],[55.28841062700002,36.495872512000176],[54.84503158600012,36.244761086000096],[54.42281349700005,36.056933197000035],[53.93424661000017,35.818344670000045],[53.59032454900017,35.62481842800008],[53.42821854200008,35.571554451000054],[53.137466581000126,35.497784315],[52.9315265730001,35.46280009500015],[52.444011614000146,35.355224906000046],[52.18614554800007,35.40237679900008],[52.013790485000186,35.38132816400014],[51.960067514,35.455007440000145],[51.88715350600012,35.657928454000114],[51.502067584000145,35.78412739400005],[51.32630158900014,35.80069422600019],[51.12924555900014,35.838802381000164],[50.94217254400019,35.991722829000025],[50.79687862300011,36.078630759000134],[50.626781477000065,36.12078167400011],[50.22880955200014,36.23908117400015],[49.994705510000074,36.278379224000105],[49.75271963000006,36.26105651200015],[49.55783049000013,36.21121855400014],[49.303581551000036,36.26483339800018],[49.15082957900006,36.35010166000012],[48.970626540000126,36.40119036600004],[49.00783950800019,36.280660107000074],[49.20587554900004,36.10832314900017],[49.22395749400016,36.003944482000065],[49.0364913680001,35.90868968399997],[49.02480649199998,35.82942956900018],[49.077152483000134,35.735788623000076],[49.320026509,35.714839230000166],[49.59708746900009,35.796864367000126],[49.85986751000007,35.77017387300009],[50.139194601000156,35.78892251400015],[50.305988607000074,35.72083899600011],[50.459358493000195,35.68151781200004],[50.51230647199998,35.63521701700006],[50.41146061000006,35.555774009000174],[50.51373659200004,35.48205986500017],[50.65183247100015,35.50496727100017],[51.03304260100009,35.48406263600003],[51.37865462100018,35.559645778000174],[51.517398588000106,35.542857161000086],[51.4734836180001,35.48355167600005],[51.42787550300011,35.231810769],[51.28227648000018,35.23830272099997],[51.14144558700002,35.272130741000126],[50.86536748900011,35.27890583300007],[50.688262569000074,35.26133619100011],[50.43885753100017,35.268587040000114],[50.25231559300005,35.22629111800012],[50.00598151700018,35.20489144900006],[50.04863752500012,35.12507041700013],[50.15180551000009,35.076292770000066],[50.17384354500018,35.00435760000016],[50.35716649700004,34.90446107200006],[50.37592352000013,34.840470941000035],[50.200641495000184,34.87405789800016],[50.26878351800002,34.740253554000105],[50.124584609000124,34.7389535210001],[49.93880056299997,34.64903464300011],[49.70544452300015,34.51013846000018],[49.63881660700008,34.39361357700017],[49.52168655000003,34.37557823600014],[49.280540537000036,34.08039007000019],[49.222446572000194,33.98674191500004],[49.2160945980001,33.849637784000095],[49.23681248300005,33.64425634500003],[49.296066504000066,33.59212291900019],[49.468551487000184,33.75858332600012],[49.71889848300009,33.890430495000146],[50.52693959900006,34.436100606000025],[50.599044586000105,34.40066326100009],[50.519878516000176,34.32026253700013],[50.47921756800014,34.10925835000006],[50.48546258900018,33.83973087700008],[50.47809959000017,33.50935330200008],[50.869445620000135,33.312860201000035],[51.03197457900018,33.207742250000024],[51.01169959300006,33.35931069700018],[51.074001609000106,33.38115997200015],[51.42438561400007,33.134818352000025],[51.761779513000135,32.94873892700019],[51.88117251500006,32.855972884000096],[51.97688261800005,32.645175563000066],[52.08304260700015,32.22290885900003],[52.10380558700018,32.054717087000085],[52.054531563000126,31.95501736600005],[52.114700552000045,31.897511476000147],[52.254207608000115,31.953339645000028],[52.45315560000017,31.89284342600007],[52.47724150199997,31.801662401000158],[52.27647748600015,31.795667664000064],[52.2377965120001,31.68056468700007],[52.042785499000104,31.612741847000052],[51.9406774900001,31.59415162400012],[51.888019524000185,31.549384047],[51.90571958900017,31.257221915000116],[51.893627521000155,31.07783627800012],[51.907775503000096,30.74679686800016],[52.01672750300003,30.56811933500012],[52.0897524880001,30.49356985000003],[52.28890952500018,30.441616802],[52.26972552800015,30.637322674000075],[52.29458256500004,30.764373048000152],[52.34451658000006,30.855624984000144],[52.419853628000055,30.913811821000138],[52.39775859600013,31.03188769100018],[52.34088855700003,31.14669663100011],[52.440669582000055,31.19141911300011],[52.5178565170001,31.114049956000088],[52.69552252200009,31.068298511000137],[52.794410539000125,30.913685757],[52.63467459800006,30.72007083400007],[52.95949949800007,30.61101556800014],[53.072265600000094,30.562359459000163],[53.27037858800014,30.528783734000058],[53.37685356900016,30.346551268000155],[53.45014962400012,30.282977717000108],[53.61268260600008,30.203991356000074],[53.663852616000156,30.147913573999972],[53.576427522000074,30.082994895000013],[54.0119094690001,29.827351542000088],[54.074172593000185,29.669537572000138],[54.0886194740001,29.570817192],[54.21656050800016,29.74391573100013],[54.26094855300016,29.42549779],[54.28273747800006,29.365709172000095],[54.391380522000134,29.415885088000152],[54.500812471000074,29.43558356600016],[54.61380756600005,29.493700330000024],[54.71579755800019,29.507079524000176],[54.878787522000096,29.463056428000073],[55.0628665210001,29.26346906400005],[55.403011528000036,29.028348465000136],[55.461597511000036,29.03306127400009],[55.522705608000024,29.111853008000082],[55.651451474000055,28.960347929000193],[55.69471349300011,28.85750600000017],[55.75997147100003,28.79512854700016],[55.91469151300009,28.76193101299998],[55.99242059000005,28.85969602300014],[56.16572163500001,28.897173524000095],[56.26448459400001,28.965419818000157],[56.26580859900008,29.06651277900005],[56.304313553999975,29.116189972000143],[56.31246562500007,29.245334648000096],[56.351295630000095,29.337656115000016],[56.19307362900008,29.47898170800005],[56.24291963400009,29.574668174000124],[56.14536651800006,29.64658943000012],[55.92301960500015,29.71710872800014],[55.676826512000105,29.839098109000076],[55.359992583,29.97443097600018],[55.12063560300015,30.111709787000052],[54.76638754100014,30.32735201600019],[54.65969463100009,30.525857779000148],[54.56813859900018,30.60441297600005],[54.53276847700016,30.723669521000033],[54.32076650800013,30.898668572000133],[54.242389511000056,31.027609735000055],[54.138793546000045,30.9196927320001],[54.13304557200013,30.798905987000012],[54.01883660900006,30.788553330000127],[53.95108753,30.897792328000094],[54.060188561000075,31.048394173000077],[54.05180749600004,31.163265306000085],[53.91704158000016,31.25603185200015],[53.698009542000136,31.356385529000136],[53.557945593000056,31.505535461000193],[53.50684749900006,31.656060528000182],[53.4064175470001,31.691549171000133],[53.248100495000074,31.617214598000032],[53.20162552400012,31.646588643000143],[53.157504527000185,31.769789711000044],[53.17775352800004,31.872806319000176],[53.14836154700009,32.10796044500012],[53.109928509000156,32.19791955600016],[52.88863754800013,32.41471362600015],[52.78013951100007,32.46685912200007],[52.6684535010001,32.5655538530001],[52.53198656100017,32.61295737100011],[52.37526659700018,32.71983803600011],[52.32661853400015,32.96815543900004],[52.24380449200004,33.27106853500004],[51.94186051200012,33.50563056300018],[51.5423734740001,33.70915071600007],[51.18568460200015,34.00042839000014],[50.98878062000006,34.207560640000054],[50.84041556900007,34.416054950000046],[50.97992363100008,34.560693239000045],[51.11978557600014,34.62654432000005],[51.25173148400006,34.59401314800016],[51.37668956700014,34.52618594900008],[51.48423759900004,34.350909625000156],[51.4492414770001,34.3179248240001],[51.43485662300003,34.06172474500005],[51.57265863100014,34.07040353500014],[51.771591536000074,33.94732584800005],[51.82381448100011,33.88489961200003],[52.128684584000155,33.7388887030001],[52.29809961100011,33.57837123400003],[52.293601547000094,33.44547029100005],[52.42111259000018,33.2209898480001],[52.52121346900003,32.8971707770001],[52.614963547000116,32.87055940800013],[52.72535757100013,32.97823400700008],[52.77768361300008,32.97875603100016],[52.942707529000074,32.900603501000035],[53.149871630000064,32.85050302200011],[53.19520951200019,32.78300305300013],[53.16175063100013,32.730667789999984],[53.005386563000116,32.709676487000024],[52.93972759500008,32.66237103800006],[53.07776262000016,32.622658082999976],[53.203762574000166,32.45477040600014],[53.27268562300014,32.31156408200019],[53.37840254400015,32.19002782700011],[53.53008247000008,31.852408957000193],[53.65326359000011,31.704638687000113],[53.75216250400007,31.65227945200013],[54.079097631000195,31.55857279200012],[54.15592163000019,31.56721134900016],[54.40324762100016,31.398706094000147],[54.4575725790001,31.15032448600016],[54.4363554680001,31.02050322300005],[54.69030752000003,30.786747533000153],[54.95351453500018,30.643172572000026],[55.271041480000065,30.554115689000184],[55.457569503,30.478324341000075],[55.58570449600006,30.35757078800009],[55.43330355800015,30.262083309000047],[55.440830507000044,30.214689179000118],[55.74175256600006,30.03247867300007],[55.79777955399999,29.971745918000067],[55.96296356400012,29.907733323000116],[56.59469252000014,29.707385887999976],[57.01417961700014,29.639541758000178],[57.20525750500008,29.577302103000193],[57.418746591000115,29.484404632000064],[57.39907459900013,29.566987501000142],[57.173557482000035,29.780795267000087],[57.084091562000026,29.958982458000037],[57.03145958100009,30.140465917000085],[56.676952518000064,30.334717529000045],[56.46890261600004,30.386200855000084],[56.21640348300019,30.48441815300015],[55.948860508999985,30.64867914700011],[55.86619952100011,30.725706658000092],[55.759586574000025,30.889866568000173],[55.55487853800014,31.061391823000122],[55.382507549000024,31.131992090000153],[55.12430151200016,31.273172509000062],[54.88380057000012,31.423795141000085],[54.771770566999976,31.363276292000023],[54.769485492,31.444656357000042],[54.85494955700011,31.55537291600018],[54.91532155500005,31.55874277700002],[55.07006456400018,31.458182905000115],[55.17758560600015,31.409798872000124],[55.51365650600002,31.29410882700006],[55.8013306310001,31.05390795700015],[56.123245502000145,30.72013571000008],[56.46822753800018,30.48536011100009],[56.79432648699998,30.33392862500017],[57.049240615000144,30.177403288000164],[57.313133605000075,29.93418560400005],[57.48991347500004,29.753458192000153],[57.378013559000124,29.981268765000095],[57.18988760900004,30.17498142100004],[57.10389749700005,30.394854332000136],[56.97034058700018,30.575357779000058],[56.74601755600014,30.71425496700016],[56.627956605,30.76223516000016],[56.315978481000116,30.94109206600018],[56.209121621000065,31.01544725900004],[56.148090469000124,31.116782792000095],[56.219135480000034,31.189065307000078],[56.377033605000065,31.20183480100019],[56.41687061099998,31.254018184000188],[56.20915950700015,31.42804024000003],[56.128204571000026,31.52560777200017],[56.14954757900006,31.63495422600016],[55.90189754400012,32.03600281200005],[55.88537949500005,32.13161065500009],[55.986801529000104,32.13835557300007],[56.160800618999986,31.88381092000003],[56.25843856000017,31.762478680000015],[56.360015492,31.715567515000032],[56.511432561000106,31.60066335700003],[56.48338352800005,31.542046193000033],[56.515888548000135,31.42310614900009],[56.66289858100009,31.529873658000156],[56.703449558000045,31.421342429000163],[56.80017051800013,31.33580225700007],[56.850822526000115,31.066589441000133],[56.8160745080001,31.030865937000044],[56.79412448300019,30.897619493000093],[56.874011564000114,30.880070134000164],[57.099540583000135,30.97987043800009],[57.231193628000085,30.905851025000118],[57.17158857300012,30.789823189000117],[57.470470477,30.637391741000158],[57.56786349800018,30.509770225000125],[57.54414757400008,30.435109931000113],[57.62865056900006,30.309026493000147],[57.87847855800004,30.26184828100014],[58.11324359600013,30.252201548000187],[58.39463062400006,30.276244702000156],[58.555915540000115,30.243346067000118],[58.90320947200007,30.30049187200018],[58.99514051000017,30.206718324000065],[59.03247451300018,29.871237845999985],[58.73045358600001,29.92300397700012],[58.76134157000007,29.829073520000065],[58.87965347500017,29.584116758000164],[59.10268049600012,29.215279826000085],[59.19464858100008,29.127948441],[59.31520851200003,29.136946917000103],[59.424838609000176,29.1945766930001],[59.48670962800003,29.534559594000143],[59.52834656400006,29.868089100000077],[59.57914357900006,29.98945335900015],[59.805477597000106,30.166627849000065],[59.93667952700014,30.21960801500012],[60.04074856600005,30.20880927400009],[59.9764675830001,30.33395360300011],[59.97487653000019,30.5174411750001],[60.00289958000013,30.617375421000133],[60.03164263400015,30.84891108000005],[60.04437256600005,31.089865651000082],[59.90933256200009,31.157637529000112],[59.847541507000074,31.30185236400007],[59.820018522000055,31.52462289900012],[59.68478053800004,31.536711280000134],[59.53471362500005,31.484551031000137],[59.41722448799999,31.46990181200016],[59.409072585000104,31.568731156000013],[59.46623649400004,31.744754308000097],[59.525218605000134,31.800202609000166],[59.665416497000194,31.797946536000097],[59.68209849600015,31.849624992000145],[59.53567855000006,31.94566383299997],[59.3788715820001,31.94635668100011],[59.28495755300003,32.057975133000184],[59.41991860000013,32.17931223400012],[59.29051961700003,32.26787525500015],[59.10590350500007,32.332036377000065],[59.08356858300016,32.408056719000115],[59.20605853100005,32.51033370700014],[59.350383504000035,32.5621390660001],[59.17077256300007,32.77365438100003],[59.16487857600009,32.91622804000008],[58.937496485999986,32.925302623000164],[58.93029358100006,33.03187047600005],[59.17295051600007,33.16468240200004],[59.21118557300002,33.25526780900003],[59.14318855700003,33.474583491000146],[58.86189255700003,33.66097187200006],[58.6069836260001,33.88439267500007],[58.486171568000145,34.03286065500015],[58.34520757000013,34.14073642000011],[58.23122458300003,34.323142559000075],[58.243942612000126,34.37019638400017],[58.432575499000166,34.43954121000013],[58.568702636000125,34.34060206300012],[58.68630962300017,34.16692785600003],[58.81853062500011,34.12531405300007],[58.88069953600012,34.05129195800009],[58.96336756500017,34.04111515400001],[59.06809659500004,34.07225727700006],[59.26397647600004,33.95553072500013],[59.41297553400017,33.94609404300019],[59.48372650800013,33.91497773700007],[59.398292619000074,33.76083403399997],[59.29746653800004,33.81313560100017],[59.200511555000105,33.7979541310001],[59.18266262700013,33.73688978700011],[59.315772614000196,33.615349173000084],[59.39397459800011,33.493904784000165],[59.492778628,33.42806091099999],[59.70047347200011,33.619824103000155],[59.825611599000126,33.60451573100005],[59.87301260200019,33.56936454300006],[59.94459958699997,33.3876800860001],[60.03177657700013,33.47799039900008],[60.11046253200004,33.5125841900001],[60.27664549700012,33.44174420000019],[60.35930648500016,33.22723067800007],[60.36643948500006,33.08154414800009],[60.34077460000009,32.95615892300003],[60.2337075210001,32.92184290900008],[60.12051763000011,32.949380143000155],[60.041938629000015,33.068631324000194],[59.95569957400011,33.05686380200012],[59.97153852100013,32.9390585000001],[60.061366540000165,32.83908552899999],[60.17137952200011,32.61642446200017],[60.241073538000194,32.5676629080001],[60.26287453300006,32.40196508700018],[60.30141050000003,32.38821742500011],[60.449130480000065,32.482323566000105],[60.473827590000155,32.406412860000046],[60.61119860100018,32.49276406500019],[60.88005853900006,32.6200452760001],[60.942733550000185,32.77732330800012],[61.03438563800006,32.84939594000019],[61.162666475000094,32.90102242900008],[61.254226530000096,32.88531407200003],[61.43556950800013,32.99303778900003],[61.40599463300009,33.14088735200016],[61.306278484000075,33.20720044400014],[61.26904657300014,33.276301189000094],[61.348415484999975,33.3461122170001],[61.44542662599997,33.34550218200013],[61.54061151900004,33.40348735000009],[61.77933851500006,33.33080451500007],[62.06195449699999,33.38282411500006],[62.189388595000196,33.455880950000164],[62.27450950400015,33.551863297000125],[62.15287350400007,33.60667155600004],[61.93997953400003,33.52784294200012],[61.841854605000094,33.50833138000007],[61.78103652100003,33.535735677000105],[61.81808855600019,33.628467856999976],[62.014320477000126,33.74054463200008],[62.12474853100014,33.84969059000019],[62.07621362400005,33.87935666000004],[61.91844960900005,33.775607641000136],[61.775958596000066,33.73734375099997],[61.56107761200013,33.805906880000066],[61.48342162600011,33.86798225000001],[61.46639663899998,33.977116976000104],[61.582561603000045,34.02506263600003],[61.753967500000044,34.01801798100007],[61.95845458900004,34.07765522200003],[62.11736256600017,34.21585336000015],[62.283233556000084,34.2829144530001],[62.417808532000095,34.283402447000185],[62.512229498000124,34.31842455300011],[62.7667575550002,34.30696196500014],[62.847000532000095,34.36966916200004],[63.07947563400012,34.44981826200012],[63.03649155800019,34.49274802300005],[62.729415506,34.40613329100006],[62.593204550000166,34.38977684500014],[62.29534155100009,34.44701032400013],[62.07374951200006,34.54090272700006],[61.662361512000075,34.61625251600009],[61.516559480000126,34.69234661900015],[61.46669050900016,34.76202772700003],[61.45874060900019,34.8703430380001],[61.36990752300011,35.027912927000045],[61.22992353700016,35.13583144000012],[61.11472349800016,35.25102829400015],[60.94464847900008,35.45298153400017],[60.87909361500016,35.465858987000104],[60.74150450600007,35.611745676000055],[60.65311063200011,35.57690244000014],[60.41837660700003,35.61787938600003],[60.32233458100018,35.75723824900007],[60.230079498,35.8109209860001],[60.28492363200013,35.85535379000015],[60.71895953400019,35.83518223700008],[60.87643454000016,35.77998069900008]],[[58.167961498000125,35.47867676100003],[58.112716542000044,35.52180064700008],[57.99605553700013,35.53773447700007],[57.60334359100011,35.89956095300005],[57.68402863,35.95942048300003],[57.87541547500018,35.82002658300007],[57.97764250700004,35.78248353600014],[58.05429048600001,35.67281706099999],[58.11787761500011,35.65187152300018],[58.378578608000055,35.62497835500005],[58.50167859100003,35.595250929000144],[58.62454555700003,35.59713886900005],[58.770606591000046,35.56105695500014],[58.901653624000176,35.55463289700009],[59.01746755300019,35.520659870000145],[59.231670610000094,35.55999295600009],[59.21844061400003,35.68355897300006],[59.29350256800018,35.77485063900019],[59.393905531000144,35.819385702000034],[59.538715481000054,35.825103502000104],[59.64128851800018,35.67570898500003],[59.63691752400001,35.60165990000007],[59.69221461500007,35.54833909300015],[59.95998758800016,35.567861719000064],[60.05506150400004,35.52539061600004],[60.50186153600015,35.21435931100007],[60.49916859800004,35.10639402800018],[60.389388633000124,35.054191200000105],[60.272369553000146,35.158638766000024],[60.09866349400005,35.25953106400004],[59.95403660500011,35.371707415],[59.89613760200007,35.23390875900003],[59.683265592000055,35.114988664000066],[59.58759354400013,35.12099681200016],[59.52852258400003,35.16864843500014],[59.63819157300003,35.276139805000184],[59.5116005270001,35.36047784400017],[59.29872147600014,35.44002277599998],[59.296283516000074,35.348670928000104],[59.24658955899997,35.296453347000124],[59.03458759100005,35.32857162700003],[58.89736561000012,35.329441333000034],[58.70222853300015,35.35943178300005],[58.49385458800009,35.45059738499998],[58.36922054899998,35.455022359],[58.30534759700015,35.416338199999984],[58.188541585,35.409433523000075],[58.167961498000125,35.47867676100003]],[[56.976184617,34.09636161900016],[57.189876545000175,34.36706440200004],[57.24999960100013,34.42393963800015],[57.37326454000004,34.34994771800007],[57.28355755700005,34.051975083],[57.20123251500007,33.91054186600013],[57.22357548400004,33.866814986000065],[57.36622256800001,33.83557697400005],[57.433826473000124,33.74898537600018],[57.44379859100013,33.619584213],[57.64093056000013,33.22067401800007],[57.70426556100011,33.006198215000154],[57.657855633999986,32.979348297000115],[57.4430505900001,33.20086054000012],[57.394672591000074,33.324895944000104],[57.21740355300011,33.64117046400003],[57.075611591000154,33.84550684699997],[56.81372053500007,33.95343659100001],[56.70605850900017,33.93991004300011],[56.69124953000011,33.99399645300008],[56.89902852800009,34.04961406800015],[56.976184617,34.09636161900016]],[[61.26105157800009,34.011951998000086],[61.16365051100013,34.03173044000016],[61.289924553000105,34.27314500900019],[61.60620460500013,34.41624203400005],[61.69603362900017,34.38649968900006],[61.61741657400012,34.252286476000165],[61.33693663600013,34.03712821800019],[61.26105157800009,34.011951998000086]]]]},"properties":{"objectid":145,"eco_name":"Central Persian desert basins","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Palearctic","eco_biome_":"PA13","nnh":2,"eco_id":820,"shape_leng":123.843813102,"shape_area":56.3571821485,"nnh_name":"Nature Could Reach Half Protected","color":"#FDA87F","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":582193.4509051124,"percentage":2.2067679006840764}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[147.5721125780001,-8.94372182799998],[147.5143585830001,-8.813701912999875],[147.5081636860001,-8.722538657999962],[147.41375764000009,-8.711800265999898],[147.42169161400022,-8.786704137999948],[147.531921688,-8.947363596999935],[147.5721125780001,-8.94372182799998]]],[[[147.40911859200003,-8.456607523999935],[147.42565960700017,-8.376406288999874],[147.38706966000018,-8.289997416999938],[147.3389287020001,-8.29275841599997],[147.31991569600007,-8.471137385999953],[147.40911859200003,-8.456607523999935]]],[[[145.96739168200008,-6.907745473999967],[146.05741868600012,-6.811638236999897],[146.0437317090002,-6.712547377999954],[145.95330757000022,-6.735355876999904],[145.98991368800012,-6.845055878999972],[145.96739168200008,-6.907745473999967]]],[[[147.0872035540002,-6.241329017999874],[147.017608611,-6.217420644999947],[147.0007326550001,-6.150644536999948],[146.86959861800005,-6.176804624999932],[146.7429805830002,-6.235971305999954],[146.78625467300026,-6.281291082999928],[146.86100767000016,-6.257016923999913],[147.02482559800023,-6.299391802999935],[147.08131359000015,-6.370588526999938],[147.15792871100007,-6.403433013999972],[147.1753696080001,-6.316024515999914],[147.0872035540002,-6.241329017999874]]],[[[144.65879856300023,-5.99853763699997],[144.50328056400008,-5.950168188999896],[144.39054866000015,-5.954838752999876],[144.314300666,-5.995661973999972],[144.35470563000024,-6.072703398999977],[144.4547575590001,-6.034310090999952],[144.5911406790002,-6.11313317399987],[144.7545016250001,-6.162400826999942],[144.79821760900018,-6.126382447999958],[144.76502963100006,-6.058109163999973],[144.65879856300023,-5.99853763699997]]],[[[146.1033176530001,-5.761452990999885],[146.09741159600003,-5.817503950999935],[146.16293360400005,-5.88122535899987],[146.35452262100011,-5.966671987999973],[146.44377161700004,-6.033063031999973],[146.5389405840001,-6.043384339999875],[146.49447659900022,-5.933186284999977],[146.3921965930001,-5.914014692999956],[146.3267216920001,-5.850238635999915],[146.20481864500005,-5.788529890999882],[146.1033176530001,-5.761452990999885]]],[[[144.9924006570002,-5.636329281999963],[144.94451870000012,-5.712270497999953],[144.93637065200005,-5.792355726999972],[145.02510064100022,-5.866331386999889],[145.09049960200014,-5.775979834999873],[144.9924006570002,-5.636329281999963]]],[[[143.85462955200012,-5.860090892999949],[143.80851768500008,-5.758354368999903],[143.70759571500014,-5.723989739999979],[143.73294057800024,-5.629473554999947],[143.65023768100002,-5.572717844999943],[143.61216758000012,-5.633602480999969],[143.65364056600004,-5.783324393999976],[143.71325668500003,-5.829739014999916],[143.67048668300015,-5.938793107999913],[143.79910262800013,-5.93547521499994],[143.8007816910001,-6.081443544999956],[143.92459061500017,-6.126317403999906],[143.9547116550002,-5.983517601999949],[143.85462955200012,-5.860090892999949]]],[[[143.35675070500008,-5.454740713999968],[143.02606165800012,-5.470754339999871],[142.93884259100025,-5.543039033999833],[142.94140661500012,-5.599860793999881],[143.02088968900011,-5.607621430999927],[143.21940567800027,-5.877841416999843],[143.12100263700006,-5.900534748999974],[143.11967460900007,-5.997557792999885],[143.2964937060002,-5.90973003199997],[143.2835386370001,-5.795151426999951],[143.20216360000006,-5.641556738999952],[143.17967260700016,-5.542353226999921],[143.29252655100015,-5.53728737199998],[143.35675070500008,-5.454740713999968]]],[[[142.2608187080001,-5.074201470999924],[142.18075560700004,-4.985996188999877],[141.99081464000017,-5.04057293999989],[141.99353071200005,-5.097257739999975],[142.13836664600012,-5.094826148999971],[142.2786716590001,-5.140406770999959],[142.2608187080001,-5.074201470999924]]],[[[141.4053957000001,-5.203543121999871],[141.41996763800012,-5.13232125199994],[141.33174157000008,-5.043555723999873],[141.2253266030002,-4.977346735999902],[141.12319965100016,-4.951859714999898],[140.98268157000018,-4.818226361999962],[140.8529506640001,-4.830578604999971],[140.8247066670001,-4.876322002999927],[140.88197367400005,-4.954002464999917],[141.00292956600003,-5.037534164999897],[141.05870057000004,-5.042632875999971],[141.2512665820002,-5.132857358999956],[141.34819055200023,-5.21437706699993],[141.4053957000001,-5.203543121999871]]],[[[139.42337064000003,-4.286819734999938],[139.2873685610001,-4.254049007999868],[139.10665858400012,-4.26719602299994],[139.12567159000002,-4.36216717699989],[139.20274369300012,-4.343154505999905],[139.34051569500002,-4.354975671999966],[139.42355370100017,-4.389236197999878],[139.50212063200001,-4.370418657999949],[139.59750367300012,-4.435923733999971],[139.68583669500003,-4.443603233999966],[139.80984460500008,-4.543340672999932],[139.82948256600014,-4.646075983999879],[139.9887236390001,-4.601255433999938],[139.99353066100014,-4.666523469999902],[140.11244170400005,-4.753960130999815],[140.1872555540001,-4.658009131999961],[140.2518915950002,-4.745210764999911],[140.3297116980002,-4.785338790999958],[140.45133965200012,-4.773571772999958],[140.4883425690001,-4.696917255999949],[140.375732706,-4.674778973999878],[140.35865759500007,-4.54507555999993],[140.1951596890002,-4.602912367999977],[139.9774327130001,-4.506798424999943],[139.91671755900006,-4.442691282999931],[139.80540471100005,-4.438969382999971],[139.72483869600023,-4.394272883999975],[139.70428459300012,-4.318683204999957],[139.6162566720002,-4.255324900999938],[139.54096958000002,-4.287944585999981],[139.42337064000003,-4.286819734999938]]],[[[135.91430665400003,-3.831461444999945],[135.80934158900004,-3.78764085499995],[135.81219462100023,-3.86863384499992],[135.6941066810001,-3.819366358999901],[135.66694663200008,-3.880159799999944],[135.717727555,-3.924370650999833],[135.89091460600014,-3.901507165999931],[135.91430665400003,-3.831461444999945]]],[[[137.33923354700005,-3.847952168999882],[137.36849963300017,-3.765001334999965],[137.2922365520002,-3.758919928999944],[137.2767945710001,-3.838485982999941],[137.22566261500003,-3.856865484999901],[137.1522825730001,-3.815126624999948],[137.05343663300027,-3.865665812999907],[136.9506376190002,-3.853071835999913],[136.89221156300005,-3.906844929999977],[136.72108461600033,-3.902427163999903],[136.61819457500008,-3.948296625999888],[136.61294566000004,-4.015257973999951],[136.69953960500004,-4.004036784999926],[136.78225658400004,-4.041946791999976],[136.97195464300023,-4.038882200999979],[137.12030058300002,-4.158469159999925],[137.23930366000013,-4.136468675999936],[137.4286035780002,-4.138120581999885],[137.46871970200004,-4.199786075999896],[137.5522616290001,-4.170544297999925],[137.79336556500016,-4.145112261999941],[138.07495157900019,-4.231084772999907],[138.19584661800013,-4.187077098999964],[138.27947957200013,-4.211978223999893],[138.39779667300002,-4.199308139999971],[138.53327957700003,-4.251079299999958],[138.6735225640001,-4.352819846999921],[138.71235659200022,-4.32008415599995],[138.92269860800013,-4.391857051999921],[138.96545369000012,-4.260475748999966],[138.93418868900005,-4.203843922999909],[138.74974055000007,-4.251242243999911],[138.68110667700012,-4.209486284999855],[138.5971986300002,-4.081049040999972],[138.53634668300015,-4.053490013999919],[138.40452566500005,-4.064987302999896],[138.2775265890001,-3.964590710999914],[138.23379568500002,-3.893598839999811],[138.29356368400022,-3.826678730999902],[138.22251867300008,-3.757966067999973],[138.11343356700002,-3.820827156999883],[137.98779269400018,-3.756670896999935],[137.90155062200006,-3.816972654999972],[137.8231045570003,-3.837529942999936],[137.7109836940001,-3.828441780999924],[137.73278770700006,-3.893068936999953],[137.67481963800003,-4.050097354999878],[137.54701254500014,-4.012821019999933],[137.43653855900004,-4.039886016999901],[137.2945405690001,-4.010555223999859],[137.28216569500012,-3.883811459999947],[137.33923354700005,-3.847952168999882]]],[[[138.2351835610001,-3.66027330999998],[138.25198357700003,-3.567444067999872],[138.0810696980002,-3.557899594999924],[138.06394966000016,-3.655190523999977],[138.2351835610001,-3.66027330999998]]],[[[137.96467557300014,-3.490099888999964],[137.88165265400005,-3.510252330999947],[137.7929836850002,-3.489609714999915],[137.77740457700008,-3.569065965999869],[137.82797259900008,-3.613532632999977],[137.9598846440001,-3.548005427999897],[137.96467557300014,-3.490099888999964]]],[[[136.44157362600004,-3.436695597999972],[136.35034163900002,-3.447612020999941],[136.20697069400023,-3.432163167999931],[136.25567659200033,-3.503105751999954],[136.42147868400002,-3.520306590999951],[136.44157362600004,-3.436695597999972]]]]},"properties":{"objectid":148,"eco_name":"Papuan Central Range sub-alpine grasslands","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Australasia","eco_biome_":"AU10","nnh":2,"eco_id":195,"shape_leng":25.7689856599,"shape_area":1.26400962628,"nnh_name":"Nature Could Reach Half Protected","color":"#D3AE79","color_bio":"#D6C39D","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":15605.852435867191,"percentage":0.3195756620927454}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[129.77754201900007,-26.936206663999883],[129.64013706700018,-27.00350793499996],[129.50154106500008,-27.006212536999953],[129.3130490960002,-27.035213441999872],[129.29093935900005,-27.07651517399995],[129.4127501700001,-27.165610972999957],[129.54754654400017,-27.16351121599996],[129.65783711200015,-27.211910039999964],[129.77453640300007,-27.29710956999986],[129.87783798600003,-27.414209310999865],[130.00123598800008,-27.438810453999906],[130.1537478560001,-27.54490657799994],[130.1511381900002,-27.613008519999937],[130.2374418750003,-27.708505883999862],[130.42004388400017,-27.688903654999933],[130.61814895400005,-27.730400199999963],[130.6990359030002,-27.613702832999934],[130.58514400700017,-27.488704492999943],[130.4327394610001,-27.451203994999958],[130.35704017900002,-27.372804660999975],[130.2313382540002,-27.403205764999882],[130.18493677400033,-27.229105045999916],[130.12254343100005,-27.18310559799994],[130.06004318400005,-27.05770502499996],[129.95384209700012,-26.969806964999975],[129.83364852600005,-26.966707493999934],[129.77754201900007,-26.936206663999883]]],[[[135.78422538100028,-22.154865320999875],[135.6995849220001,-22.153165806999937],[135.60317996000026,-22.082973401999823],[135.5112152270002,-22.062557265999885],[135.40657035100014,-22.10098460399996],[135.23777776400004,-22.22896570299997],[135.1075134340001,-22.251222673999962],[134.80343625900002,-22.197164595999936],[134.69303871500006,-22.123657315999935],[134.61833198500017,-22.034532539999873],[134.42294311700005,-21.937007922999953],[134.20837393900013,-21.788152697999976],[134.1642303100001,-21.71150773699992],[134.24716186600006,-21.57039638499998],[134.2807922410002,-21.43966870299994],[134.16543579600022,-21.312677337999958],[134.14245613800006,-21.221958322999967],[133.89511103600012,-21.060481964999894],[133.66856378300008,-20.94225890799993],[133.61718741100015,-20.945505218999926],[133.50176994500032,-21.31018824699987],[133.37094117700008,-21.31967924399993],[133.28073111100014,-21.387706769999966],[133.18038933600008,-21.390295101999982],[133.1514586950001,-21.3153285329999],[133.1996306660002,-21.192804386999967],[133.15325929500023,-21.138233168999875],[133.01388551200023,-21.12704081299995],[132.95124822100001,-21.192272136999918],[132.8021393590002,-21.42745593399991],[132.9151611100001,-21.55720142599995],[133.0632934790002,-21.686943060999965],[133.12261958400018,-21.874937078999892],[133.1020659840001,-21.933427843999937],[132.97953798200012,-21.927701997999918],[132.6169433880001,-21.805263513999876],[132.41572574500015,-21.81379293899994],[132.13671884200005,-21.88422204799997],[131.8788604870001,-22.010229041999935],[131.73001096300015,-22.00896069299995],[131.6181945300001,-21.956209184999977],[131.5201110070002,-21.85724640099994],[131.31771855600016,-21.833337859999915],[131.11929325900007,-21.843307463999963],[130.90852359800022,-21.993129791999934],[130.82502743700002,-22.013801576999924],[130.63841241000034,-22.000310902999956],[130.44749428000011,-22.066881151999894],[130.31141659700006,-22.16137671699994],[130.2191923600003,-22.248327226999947],[130.1424712920002,-22.43480881499994],[130.16137701000002,-22.50539583899996],[130.47904963200017,-22.604898417999948],[130.71133429700012,-22.615024762999894],[130.80186455100022,-22.40041736299986],[130.92709353700002,-22.273881974999938],[131.04016122000007,-22.309051601999954],[131.22445680800013,-22.446172664999892],[131.32859809900015,-22.436092420999955],[131.44102473400005,-22.338340821999964],[131.52801514200007,-22.34147079199994],[131.66131590100008,-22.43833357299991],[131.8353577390002,-22.523460349999937],[132.1181334810002,-22.579793947999974],[132.35310370800016,-22.58128542399993],[132.52247615500028,-22.690521235999938],[132.84733575500002,-22.77850154799995],[133.10258482500012,-22.788455895999903],[133.1742247830001,-22.848924621999913],[133.25575253800014,-23.022287357999915],[133.43116766700007,-23.25887680099987],[133.2688140580001,-23.257343079999885],[133.19021611300002,-23.237142525999957],[132.9346312660001,-23.12216376899994],[132.85105899700022,-23.115724622999892],[132.47731010200005,-23.132720942999924],[132.24633787500022,-23.16619876799996],[132.04502870100032,-23.24137303999987],[131.84088141400002,-23.244426734999934],[131.7392731340001,-23.201810791999947],[131.4234924750001,-23.240532],[131.30972305900002,-23.240867610999885],[131.19192530100008,-23.291341754999905],[131.19549565600005,-23.39882273199987],[131.3067322290002,-23.47451785599992],[131.44433592100017,-23.64080425399993],[131.5778502520003,-23.698770478999904],[131.64442435500007,-23.802278600999955],[131.64691160200016,-23.913391120999904],[131.4331512780002,-24.012214596999968],[131.36230475000013,-24.063619635999828],[131.313461221,-24.188068435999924],[131.4116667840001,-24.296316187999935],[131.50129698900014,-24.344789572999957],[131.76992793300008,-24.424266778999936],[131.81552129600016,-24.476125780999894],[132.00474544200017,-24.551179856999852],[132.23527527300007,-24.536394179999945],[132.40209962100016,-24.58042331199988],[132.348968581,-24.640108161999876],[131.94645684900024,-24.649618100999874],[131.80140684200012,-24.700744692999933],[131.7049408590001,-24.708166197999958],[131.60781857300003,-24.773324933999902],[131.5252075420001,-24.879833274999953],[131.5176544410001,-25.009029415999976],[131.60054023200007,-25.15279581899989],[131.6880340570001,-25.442148168999893],[131.69334416100014,-25.510868039999878],[131.55690002100016,-25.771863908999876],[131.45814510800017,-25.744821542999944],[131.31283576400006,-25.757924971999955],[131.2617950030002,-25.69894403299992],[131.25737002800008,-25.598718599999984],[131.08712770700004,-25.672958289999883],[130.9927520040003,-25.670780167999965],[130.8795012600002,-25.62344169399995],[130.55651853500024,-25.39981452899991],[130.44161990800012,-25.269658994999872],[130.41957097700003,-25.156503637999833],[130.32687383400003,-25.14149282199986],[130.2002563010002,-25.042287800999873],[130.05700689400032,-24.824123456999928],[130.03518678800003,-24.71030039699997],[129.94453432600028,-24.656322449999948],[129.58666997600005,-24.590091667999957],[129.41027835500017,-24.584573693999914],[129.18882629300003,-24.619046617999913],[129.03208856000003,-24.72387086699996],[128.94169610500023,-24.679880123999908],[128.7531280930001,-24.646091497999976],[128.49468987800003,-24.50059121399994],[128.4301452000002,-24.43209648099986],[128.3566741310001,-24.295524599999965],[128.41281125600005,-24.243093616999943],[128.35420230700004,-24.176870378999865],[128.4166565390001,-24.126863441999944],[128.6303100770001,-24.081033709999872],[128.76167294000004,-23.948993756999982],[128.88513183600014,-23.915306049999913],[129.02650550700002,-23.80902417599998],[129.1478794200002,-23.78452668999995],[129.19242030700002,-23.742212847999895],[129.1868526950002,-23.653131076999955],[129.11113319000003,-23.613044279999883],[128.96781914400026,-23.582963923999955],[128.7778473310001,-23.50723644599998],[128.7077789790003,-23.50638953899994],[128.578018401,-23.699008858999946],[128.43940737000003,-23.69186596799983],[128.466827426,-23.7768477379999],[128.41828916500003,-23.81262404699993],[128.43893429600018,-23.884376658999884],[128.25242622100006,-23.953092506999894],[128.16326909100007,-24.03935050499996],[128.03611763100014,-24.029638225999975],[127.70086665000008,-24.23963541099988],[127.54170989900001,-24.30990593399997],[127.51731101700011,-24.395038577999912],[127.44333653100023,-24.419473669999945],[127.37108620100014,-24.502885843999877],[127.2787094140001,-24.563835188999974],[127.30435183500015,-24.759532845999956],[127.26100163800004,-24.90984333699987],[127.00331092100032,-25.034341755999947],[126.91504663100011,-25.19382087499997],[126.88097386000004,-25.33850677199996],[126.81459052800017,-25.43969914299987],[126.88797761000012,-25.531400684999937],[126.88011169700007,-25.639057177999916],[126.69277197000008,-25.73791502099988],[126.5847625990001,-25.86388396199993],[126.49514764800006,-25.896383281999874],[126.53862776500011,-25.984540954999886],[126.5029602530002,-26.030387952999888],[126.50399022100032,-26.182769779999887],[126.58111580000025,-26.18807803899989],[126.64968094200003,-26.286756507999826],[126.85314946200003,-26.367151197999874],[127.01128395600006,-26.334150303999877],[127.19404599000006,-26.334978099999887],[127.22476197700018,-26.357976869999902],[127.39663692500017,-26.285858136999934],[127.49926763000008,-26.358732246999978],[127.54407493800022,-26.21275335699994],[127.61451712200005,-26.151050646999977],[127.6857451950001,-26.16992937499998],[127.83290861600005,-26.123573259999887],[127.90744016400015,-26.197576579999918],[128.02888488800022,-26.232265420999965],[127.98985288000029,-26.089347769999904],[128.1369475680001,-26.09833518099998],[128.1983642890002,-26.038852669999926],[128.40025332300002,-26.059507355999983],[128.4817505670003,-26.03837590799992],[128.60400397700016,-26.11893085799983],[128.53926098400018,-26.146705635999922],[128.57577490100016,-26.28986937999997],[128.65303040000003,-26.332542487999888],[128.6847381340002,-26.40229601599998],[128.7840729070001,-26.41216469999989],[128.92710874400007,-26.490940173999945],[129.09085883800014,-26.379796786999975],[129.4209290990001,-26.31680652299997],[129.6824341560001,-26.349306138999964],[129.78492749500003,-26.411207054999977],[129.8724215860001,-26.385906362999947],[129.9269256770002,-26.450202888999854],[130.04283136000004,-26.44370665699995],[130.1171267740002,-26.356601921999925],[130.22842443500008,-26.31220217699996],[130.26292434900017,-26.266899258999956],[130.35162358200012,-26.268699508999873],[130.48962416200004,-26.225297766999972],[130.56002824600012,-26.250198470999976],[130.67012028800002,-26.395797704999893],[130.92123444900005,-26.415193295999927],[131.1428223690002,-26.680694356999936],[131.291824259,-26.712291882999978],[131.41072096200003,-26.62968994599987],[131.54571568000017,-26.571689566999908],[131.61831698900005,-26.569288118999907],[131.9185182330002,-26.69398681699994],[132.03190616600023,-26.75178742299994],[132.02771009700018,-26.847187217999874],[132.15270966300022,-26.87718230899992],[132.2731173730001,-26.70038246999991],[132.49841345200002,-26.671981631999984],[132.57301348600015,-26.63028150199989],[132.66160612500005,-26.66337981299995],[132.7507172490001,-26.74847994299995],[132.84800744200004,-26.775181100999873],[132.86621119300003,-26.87127878399997],[132.92602926500024,-26.96189714299993],[133.04300269300018,-26.962924621999946],[133.01524763500004,-27.030587927999875],[132.92232376100003,-27.122930416999964],[132.7914084990001,-27.121407230999978],[132.8281704540001,-27.06100711099998],[132.61051917400005,-26.86038042099989],[132.4287108750002,-26.872484200999963],[132.33320598000012,-26.99448400999995],[132.14460787500013,-27.0770890899999],[132.110610715,-27.120685856999955],[132.21681194100006,-27.206483921999904],[132.3283078190001,-27.234985555999913],[132.49591062100012,-27.179382445999977],[132.6422122150002,-27.22918126399992],[132.746821941,-27.222501209999905],[132.8602667020001,-27.142543110999952],[133.00610934600002,-27.16015102299997],[133.15181415400014,-27.278293332999965],[133.35219222900025,-27.26609513399984],[133.30448029100012,-27.422867381999936],[133.16605442900016,-27.476255183999967],[133.20478154700027,-27.568971531999978],[133.31627687900027,-27.552519587999882],[133.35726176800006,-27.597156151999968],[133.4950823580001,-27.594190330999936],[133.51897098100017,-27.432935114999907],[133.44166032700014,-27.39627623399997],[133.49270955300028,-27.3142318269999],[133.5227886360001,-27.274073272999942],[133.4909184810001,-27.148698509999974],[133.60250123600008,-27.11489792899988],[133.61258997700008,-27.172633703999907],[133.74681201900023,-27.142213684999945],[133.81080190600005,-27.067642012999954],[133.7653074200001,-26.924134450999873],[133.90342209400012,-26.945891719999906],[134.05601617000002,-26.909809672999984],[134.19346688400015,-26.92954546099992],[134.2395196540001,-26.91132608099997],[134.31302567500006,-26.98337132699993],[134.34023287200023,-27.067771276999963],[134.41064731000006,-27.129680730999894],[134.57139548700002,-27.160786253999902],[134.7208067050002,-27.12685927299998],[134.87561451400006,-27.146451499999955],[135.001299033,-27.1024298669999],[135.26638882400016,-27.157145927999977],[135.25700935700002,-27.068929379999872],[135.0919751350001,-27.016095839999934],[135.0623084800003,-26.970217208999827],[135.1663036210001,-26.913734017999957],[135.2027251830001,-26.82703906699993],[135.32286006200002,-26.718568708999896],[135.2971158460001,-26.669692682999937],[135.20979521200002,-26.671660750999877],[135.05185644800008,-26.73436011499996],[134.91860584100004,-26.72847554899988],[134.7769743900002,-26.758353464999857],[134.70110295400002,-26.748603686999957],[134.61123407500008,-26.786058675999982],[134.45752457800006,-26.748288034999973],[134.41262252800004,-26.648065639999913],[134.24898657100005,-26.596612076999918],[134.1863217460001,-26.496158307999906],[134.33323707300008,-26.39920493099993],[134.3337398880002,-26.35080600699996],[134.15968090400008,-26.167134380999926],[134.05826769200007,-26.16036063199988],[133.95947032300012,-26.29264354599991],[134.01912773700008,-26.426012732999936],[133.91260176100002,-26.42554069599987],[133.8423480990001,-26.50604271599991],[133.76216234900005,-26.503219729999955],[133.62992075500017,-26.56835960599983],[133.59721232100014,-26.65229670399998],[133.4645954030001,-26.65963125399992],[133.50135971800023,-26.584880716999976],[133.48474977800026,-26.45153799399992],[133.65460628800008,-26.380138945999875],[133.933455986,-26.363364625999907],[133.9208650270001,-26.317449118999946],[133.7428846910002,-26.259492904999888],[133.6834537640001,-26.261104476999947],[133.65609562100008,-26.170098944999893],[133.66828928600012,-25.99855999899995],[133.71927901100014,-25.960153901999945],[133.96692559400014,-25.921184135999965],[134.06057874300006,-25.947583009999903],[134.22585726700004,-25.87231338399988],[134.38449000100002,-25.76471900699994],[134.45208134000018,-25.828172100999893],[134.6493376960001,-25.928869401999975],[134.72520552600008,-25.85713981899994],[134.84245580800007,-25.843345667999984],[135.03005625900005,-25.91507525199995],[135.07646372300007,-25.860402244999875],[134.9004363370001,-25.66292196799992],[134.77471918900017,-25.557413085999883],[134.6658785000002,-25.51259236699991],[134.49890143300013,-25.517511369999966],[134.42254631900005,-25.47090513899991],[134.44905090300017,-25.314653388999943],[134.57200621400023,-25.285024701999816],[134.6567078600002,-25.222360419999973],[134.63627630100018,-25.025630949999936],[134.608169599,-24.92086604499991],[134.48863226100002,-24.778221140999904],[134.34750364200022,-24.655549975999975],[134.31423955700006,-24.564016407999873],[134.34794620700006,-24.382150733999936],[134.2648010790001,-24.108932540999945],[134.22644046100015,-24.0640201249999],[134.10275273900015,-24.031055439999932],[134.05531317900022,-23.969444261999968],[134.0423737000001,-23.76100728399996],[134.19857784100031,-23.745365143999948],[134.23300164700004,-23.778303173999973],[134.37669378700002,-23.781656269999928],[134.45211784000003,-23.726932500999908],[134.67959598700008,-23.76094056499994],[134.82948285600014,-23.867116981999914],[135.03378319600017,-23.93434722199993],[135.17367548400034,-24.000347164999937],[135.32151800700012,-24.00530807799987],[135.42126466700006,-23.925169037999922],[135.5023956220001,-23.768478409999943],[135.57760627200014,-23.69474029299988],[135.58212277600023,-23.54579756199996],[135.61517329000014,-23.402357047999942],[135.6999359570001,-23.322370556999886],[135.87922671000013,-23.276710474999902],[135.95527655600006,-23.2874813869999],[135.98548895800002,-23.233633023999914],[135.9492948940001,-23.11601832599996],[136.00704956000015,-22.936164812999948],[136.1999054170002,-22.758237794999957],[136.02500912900007,-22.655254379999974],[135.80221546000007,-22.488317378999966],[135.7315826700002,-22.38088032299993],[135.72991936500011,-22.252164799999946],[135.78422538100028,-22.154865320999875]]]]},"properties":{"objectid":149,"eco_name":"Central Ranges xeric scrub","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Australasia","eco_biome_":"AU13","nnh":2,"eco_id":208,"shape_leng":67.7239499042,"shape_area":25.6205460196,"nnh_name":"Nature Could Reach Half Protected","color":"#CC5247","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":288673.8777974879,"percentage":1.0942002976830463}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-68.65896855699998,-70.76572051699998],[-68.3735451949999,-70.92822036999996],[-68.31484016699989,-70.86305674699997],[-68.40091111399994,-70.76706011299996],[-68.65896855699998,-70.76572051699998]]]},"properties":{"objectid":150,"eco_name":"Central South Antarctic Peninsula tundra","biome_num":11,"biome_name":"Tundra","realm":"Antarctica","eco_biome_":"AN11","nnh":1,"eco_id":118,"shape_leng":381.5574418,"shape_area":1.18922203362,"nnh_name":"Half Protected","color":"#74E4F7","color_bio":"#9ED7C2","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":4934.208619807934,"percentage":0.0577427598619568}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-90.16571016599994,42.08687206400003],[-90.36183212799995,42.12140930300012],[-90.46128157799996,42.178197975000046],[-90.60065393999986,42.30091466900018],[-90.69379942399985,42.324129446000086],[-90.71437182999989,42.396231430000114],[-90.94682572699998,42.437127591000035],[-91.00290551799992,42.48026386800018],[-91.022144229,42.57063545500006],[-91.24207086399997,42.598274669000034],[-91.329965384,42.58173258100004],[-91.40849008599992,42.65805998500008],[-91.53058122599992,42.68960250700013],[-91.6187362419999,42.75184676800012],[-91.80921054499998,42.83493548000007],[-91.78921712399995,42.91701196499997],[-91.96061722899987,43.15407824500005],[-91.99262632199992,43.23826676500005],[-91.92141914099994,43.29465409900013],[-91.94096511299983,43.37484248200019],[-92.20555747499992,43.481149422000044],[-92.24162110499992,43.54240832500005],[-92.41079432099997,43.5948454760001],[-92.57450911099983,43.71572548200015],[-92.59677442999998,43.82360119300006],[-92.75122821799988,43.959912088000124],[-92.68817547799995,44.02532672300009],[-92.70967405599993,44.094835993000174],[-92.81908201999988,44.159297569000046],[-92.86757846199998,44.260214634000135],[-92.97496481799999,44.280006942000114],[-92.99759988299985,44.47562692800017],[-92.77375093899997,44.608480647000135],[-92.77944578099988,44.74541390100012],[-92.58091746699989,44.764774197000065],[-92.42107048899999,44.73030878300017],[-92.23416186899993,44.75058502800016],[-92.14497033099991,44.84453421000018],[-92.26331328499992,45.05678612400004],[-92.56263281099996,45.10687647900005],[-92.66246261199984,45.02148974400012],[-92.87324300899996,44.91478284200019],[-92.93795693599998,44.8115169190001],[-93.2002921109999,44.731069850000154],[-93.23011384999995,44.60030980200008],[-93.15694994999996,44.41824663300008],[-93.22977788999992,44.272443096000075],[-93.33125398299995,44.2668591740001],[-93.45704630699987,44.16756982000015],[-93.76228188399989,44.10861046000008],[-93.90822483599999,44.177594054],[-94.03123014599993,44.300617715000044],[-93.97370982399997,44.422675705000074],[-94.05679874499992,44.51824727700006],[-94.01389517699994,44.62837378300014],[-94.02520591099994,44.81024361600015],[-94.14142491499996,44.91627998200005],[-94.4223983249999,44.932416621000186],[-94.50705164199991,44.95920352100018],[-94.51480215299983,45.07620244100008],[-94.5548535989999,45.13504979300018],[-94.67320838499995,45.182346353000185],[-94.90413209499997,45.12071155200016],[-95.00280547599993,45.165797349000115],[-95.336439752,45.26937563000013],[-95.57987779699988,45.379791555000054],[-95.73437441299995,45.27605982500012],[-95.92381507399995,45.253379884000026],[-96.25620274499994,45.09175939600004],[-96.34688929999993,45.01139958000016],[-96.38476299899997,44.815767837000124],[-96.26577826399995,44.70640956100016],[-95.97830206299994,44.515401595000185],[-95.59113817699995,44.28930113100006],[-95.61574059099996,44.226065107000124],[-95.85785651599986,44.05207354600003],[-95.98627279899995,44.019259471000055],[-96.45665510899994,44.009921288000044],[-96.57790784799994,44.048374942000066],[-96.73305563399998,44.13313228800007],[-96.76656502699996,43.92399382600007],[-96.8548326849999,43.87094445600013],[-96.9668569609999,43.73800096600007],[-96.96442258199994,43.68717617300007],[-96.75970843999988,43.49983792900014],[-96.65592342799994,43.52477215100015],[-96.52149025799991,43.37594389500009],[-96.53150843099996,43.2993257010001],[-96.62040671299991,43.16924076100014],[-96.71377797699995,43.16397091400012],[-96.73176580099994,43.06245598300018],[-96.79291961999996,43.00599871300017],[-96.76802771299998,42.86521684900009],[-96.6491075809999,42.758991360000095],[-96.95470585799995,42.78433690800006],[-96.98136894899983,42.873542678000035],[-97.1599258849999,42.941585990000135],[-97.26228995799988,42.92695109599998],[-97.43912679799985,42.847116482],[-97.68651777199995,42.84244373600012],[-97.84215763299994,42.86814251800013],[-97.97200494299994,42.69209618400009],[-97.98414705699997,42.58500288500011],[-98.05307107699997,42.346773824000024],[-98.05822855099984,42.17355796100014],[-98.03354590699996,42.11874322500017],[-98.04112529299994,42.02538264900011],[-98.04273624799998,41.93228267000006],[-97.99598454399995,41.85123941600011],[-97.89449017699997,41.7596825280001],[-97.588321222,41.640565505000154],[-97.26591516499997,41.532765226000095],[-96.91858234499995,41.483493385000145],[-96.88899808999997,41.42176556600003],[-97.07426811699997,41.34011212400003],[-97.09880590799992,41.294168155000136],[-97.01766413599995,41.195057339000186],[-97.0333927659999,41.0255953140001],[-97.00086148599996,40.96426138900006],[-97.014733875,40.732372748000046],[-96.91843306499999,40.39429264200015],[-96.75271198599995,40.2441200400001],[-96.60777556199992,40.079021373000046],[-96.5948434149999,40.00010694100018],[-96.67378724499991,39.88383785100007],[-96.687820693,39.68589870500017],[-96.57187993799988,39.62514879100007],[-96.46979230899996,39.651742487000035],[-96.307398359,39.54645275100012],[-96.17419201599995,39.52029830200013],[-95.91121049099996,39.39661635500016],[-95.86028401799996,39.30549734400006],[-95.95195468999998,39.075905139000156],[-95.90649350899992,38.95668723800003],[-95.97862882599998,38.852074729000094],[-96.1040909859999,38.81583514000005],[-96.13761311099995,38.7589739070001],[-96.05153390599992,38.626628635000145],[-96.10806104199992,38.54354741300011],[-96.0870210519999,38.15887637700013],[-96.0102832639999,38.04342962200013],[-95.88042556799991,37.98560397100016],[-95.87537361199998,37.82448936800006],[-95.96154120099993,37.7587186830001],[-95.7804572039999,37.850211854000065],[-95.74747680799993,37.80405788000007],[-95.8406819519999,37.72509615700011],[-95.94743750099997,37.57821428500017],[-95.94001651499997,37.44563477500003],[-95.88996451599985,37.36649092900018],[-95.93308360099991,37.278625889000125],[-95.83842408099997,37.24791088699999],[-95.98320179499996,37.01457009100017],[-95.98928286699999,36.623323218000166],[-95.97317873899993,36.57147553700008],[-96.01316814299997,36.38741435100019],[-96.05862330899993,36.307082917000116],[-95.99326278799992,36.25353880900013],[-96.04631784499998,36.193306580000126],[-96.00302932199997,36.08225633500007],[-96.0741631549999,35.874583396000105],[-96.1726138269999,35.745516324000164],[-96.05691022799994,35.74198954700012],[-95.97473006499996,35.84084976100007],[-95.82385428399988,35.91028115600005],[-95.72471773999996,35.89703839300006],[-95.80045590499986,35.78771362100008],[-95.88536044099993,35.80792081100009],[-95.94725120399994,35.75336848200004],[-95.98080165299996,35.62725208900008],[-95.87315326599986,35.51204650500006],[-95.68711627499994,35.48685139000003],[-95.59638403899993,35.45558987900006],[-95.55750877199995,35.38171547000002],[-95.39256822399989,35.49115392400006],[-95.29409554799986,35.38324913900004],[-95.29573927999996,35.31844643800008],[-95.22510369199995,35.35290632500016],[-95.16197963699989,35.5390436940001],[-95.2094565559999,35.59512907800007],[-95.14076096499997,35.674042402000055],[-95.28885388699996,35.676198837000015],[-95.24775388399996,35.869308634000106],[-95.27746694099994,35.955068740000115],[-95.25008626699997,36.00850734100004],[-95.27310534699996,36.15109000700005],[-95.15899082799996,36.374371937000035],[-95.17909995799994,36.44115036700009],[-95.12834490399996,36.58173523200014],[-95.00873994299997,36.59103916400005],[-94.82163467399994,36.72749788900012],[-94.81511874799992,36.78327555400011],[-94.67884685299998,37.15022019600008],[-94.6213154589999,37.151991621000036],[-94.57360606799995,37.30608846100006],[-94.3945013209999,37.30886441900009],[-94.3591031819999,37.34774674500005],[-94.24676907999998,37.35215442500004],[-94.14382350499994,37.467311017000156],[-94.05976495199997,37.41907275200009],[-93.99468941399988,37.43557648900003],[-94.00165342699995,37.58520871700017],[-93.93106559699993,37.71423334300016],[-93.99482015999996,37.73364511400001],[-93.9577551569999,37.8264686870001],[-93.82212637199996,37.94079495500006],[-93.9394734309999,38.06184092700016],[-93.84112573899989,38.12316491300015],[-93.70129304799997,38.10547617200007],[-93.62324869499992,38.25673900400011],[-93.51551576199984,38.29622357700009],[-93.4621682149999,38.37436824300005],[-93.27162450199995,38.365036939000106],[-93.15246587899986,38.49997904100019],[-93.14974159299987,38.58691089800004],[-93.25157898299994,38.63008907300008],[-93.19669066499989,38.68126050900008],[-93.08190189699997,38.655320250000045],[-93.03178270099994,38.69199220300004],[-93.142867331,38.765493626000136],[-93.15614972899994,38.822890163000125],[-93.26538143099998,38.92767470000007],[-93.23824234599994,39.029191395000055],[-93.00161862399983,39.00881433600006],[-92.96471093899999,39.12445273100013],[-92.73709742699998,39.19230274900008],[-92.59778766799997,39.305903972000124],[-92.45340649399998,39.27642357800005],[-92.47039608599994,39.08718450600003],[-92.3871219959999,39.04682989700018],[-92.30841622499997,38.92011475800001],[-92.30110251999997,38.777329728000154],[-92.00266138999996,38.86572072500013],[-91.95276901699992,38.980437137000024],[-91.82160120799989,38.974480888000016],[-91.73914474399987,38.88388488500004],[-91.67143056299989,38.902625921000094],[-91.77879134299991,39.07159958600016],[-91.71567134299994,39.09659258200003],[-91.56295961899991,39.06089678300003],[-91.50689663799994,38.884770595000134],[-91.38985249399991,38.87688575600015],[-91.1549125119999,38.79234698400012],[-90.92958215099992,38.764999623],[-91.07747614999994,38.855588101000194],[-91.06241961399991,38.95427899800006],[-90.9549294439999,38.90299725900013],[-90.92871585799992,38.980337705000125],[-91.04123488599998,38.99469529900006],[-91.25557525799996,38.955534565000164],[-91.33988311699989,39.03199717900003],[-91.39867860599992,39.17646886400013],[-91.24318026999998,39.07936236600011],[-91.24417271299995,39.15883766800005],[-91.31874585199989,39.16410389100014],[-91.35749154999996,39.23299689200013],[-91.20793919699986,39.26094644800003],[-91.11073924599987,39.311452376000034],[-91.33306530099998,39.41340217100009],[-91.38941323199998,39.355778630000145],[-91.56526926799995,39.424029400000165],[-91.45272366499984,39.56225653300015],[-91.59613620299996,39.51756007400007],[-91.66306302999999,39.44661923300009],[-91.77834692899995,39.456555255000126],[-91.77758916199986,39.32134503100008],[-91.89062426699996,39.43983770100016],[-91.99119928399989,39.46809121300015],[-91.93630926799989,39.56658236800007],[-91.95215526499987,39.65718254700005],[-91.78637163299999,39.54433127600004],[-91.7519729149999,39.603460323000036],[-91.49445340699987,39.67552989700005],[-91.50277676499985,39.733897233000164],[-91.70708844899997,39.72470995600003],[-91.77769675699994,39.67844315800011],[-91.86447964299992,39.808920204],[-91.94838381799991,39.80741684200018],[-91.93652195599998,39.93545018900011],[-91.84186290799994,39.87902070200016],[-91.74321915399992,39.87600600000013],[-91.65849378299993,39.83294148900006],[-91.52453797799996,39.93429927400018],[-91.50271603799996,40.06334133500013],[-91.52190691299995,40.21536974600019],[-91.58544903099988,40.365304016000096],[-91.5249111149999,40.410805338000046],[-91.38576644599988,40.39236904800015],[-91.38124871399998,40.52557362600015],[-91.44898814999993,40.60623440800009],[-91.30190188699987,40.62930318300005],[-91.1864932229999,40.75968893500004],[-91.09910541699998,40.76359676400017],[-91.10557376099996,40.84403165100019],[-91.03037743299996,40.99927200500014],[-91.08006787099998,41.09651549200004],[-91.2028882009999,41.129906824000045],[-91.28766914299996,41.18743298000004],[-91.44543558699996,41.40023386700011],[-91.54430537099995,41.48890324800004],[-91.53789261399993,41.62431205100006],[-91.38015344299998,41.47412522200011],[-91.23915006699997,41.55790782800011],[-91.07784512899991,41.58813096600005],[-91.17142654399993,41.426954825000166],[-90.93213393199994,41.421562132000076],[-90.84746118399994,41.45502577899998],[-90.65879492399989,41.462327329000175],[-90.60070324499992,41.509592330000146],[-90.4564246079999,41.527425744000084],[-90.3422907879999,41.59143968900014],[-90.32365078399994,41.72956947800009],[-90.19584786899998,41.80614518400006],[-90.14416317699994,42.01166676500003],[-90.16571016599994,42.08687206400003]]]},"properties":{"objectid":151,"eco_name":"Central Tallgrass prairie","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Nearctic","eco_biome_":"NE08","nnh":4,"eco_id":388,"shape_leng":62.8119068745,"shape_area":36.7793240461,"nnh_name":"Nature Imperiled","color":"#DEFC4E","color_bio":"#FEFF73","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":342780.44999202614,"percentage":3.235213001572692}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[85.01522857499998,29.730851026000153],[85.07926162100011,29.81994562800014],[84.99520856700019,29.805597318000082],[85.01522857499998,29.730851026000153]]],[[[82.01161950200014,30.7953812290001],[81.93077051400007,30.862746752000135],[81.82682753800003,30.85163100700015],[81.8318254990001,30.78909128100014],[81.94797554300015,30.76806510900019],[82.01161950200014,30.7953812290001]]],[[[80.23779253500015,32.73165568200005],[80.17313352800005,32.808664417000045],[80.08839449900006,32.81817016600007],[79.92439250500007,32.91003331000019],[80.08030663300019,32.80120251200003],[80.23779253500015,32.73165568200005]]],[[[80.20033263600004,34.12206791000017],[80.00739262400003,34.112875141000075],[79.93139659000002,34.05533170000018],[80.09768650900008,34.00098947400005],[80.19607563500011,34.0607598200001],[80.20033263600004,34.12206791000017]]],[[[81.16645862500008,34.509318375000134],[81.05354349300018,34.43807638900017],[80.84005759200011,34.60487793800007],[80.75249453200018,34.604042095000125],[80.59639751100008,34.526915007000184],[80.71742263700008,34.552064237000025],[80.78112057499999,34.50763948000019],[80.87416053900017,34.50093781300018],[80.97893550200018,34.35761145900011],[81.16645862500008,34.509318375000134]]],[[[80.26259659800013,34.5107483270001],[80.12807459600003,34.451804940000045],[79.99076058200006,34.432865694999975],[79.92456852400016,34.46479370500009],[79.96560665800013,34.55912532000008],[80.07942150400004,34.59656225200001],[80.2062685320002,34.583328568000184],[80.24932854800016,34.67383401200004],[80.06847356500009,34.69678668000006],[79.96675849900015,34.786113125000156],[79.86618756300004,34.798204859],[79.6011355230001,35.03718985000012],[79.47753162100008,35.257914195000126],[79.283286546,35.399180779000176],[79.00695749400012,35.46730503300006],[78.60343959900013,35.40359368400016],[78.28331761800013,35.296739338000066],[77.89643863900017,35.12867547400009],[77.86868263700012,35.0694878380001],[78.09578661500012,34.977277347000154],[78.20279652900007,34.715725926000175],[78.36293061000009,34.69870848300019],[78.44194060900014,34.635352024000156],[78.58281760300008,34.59883106600017],[78.58281760300008,34.54069250900005],[78.68344855300018,34.49000915200003],[78.61561565500006,34.421437808000064],[78.77438365300003,34.395349637000095],[78.81846659700011,34.311637894],[78.88363656400008,34.25039132700016],[79.08454156400006,34.16691662400018],[79.2312166550002,34.090673993999985],[79.19464155000009,34.00768007700003],[79.26761657800006,33.95355879900018],[79.48825861300014,33.90504819900008],[79.57177757200009,33.969469160000074],[79.62496158600015,34.04222525300014],[79.80328355900008,34.02710362900007],[79.81630652200016,34.12481901800004],[79.86734057800015,34.19104326200011],[79.8564834980001,34.28007265200006],[79.792419607,34.33761223800013],[79.83259557700012,34.42664079100007],[79.92162362700009,34.35824043700006],[79.96614058500018,34.401670430000024],[80.19197051400005,34.412526001000174],[80.26259659800013,34.5107483270001]],[[78.47176358800004,35.30783194900016],[78.70230062700017,35.289045421000026],[78.78171563900008,35.25147840200009],[78.76377853400004,35.14218726900009],[78.68522652200011,35.121694689000094],[78.66986065000009,35.02179816100016],[78.56739758300017,35.03204386500005],[78.45383453000005,35.10547101300011],[78.34283449500009,35.042289568],[78.24037159500011,35.08925152700016],[78.26683862800019,35.15328692100013],[78.17292057700013,35.20366249400007],[78.18231149300016,35.254893189000086],[78.3385615680001,35.24891555100004],[78.35649163200003,35.297586245000105],[78.47176358800004,35.30783194900016]],[[78.75338765600003,34.71328427700007],[78.93939952200003,34.726112948000036],[79.01252760400018,34.65940758300002],[79.1279836270001,34.66325655300017],[79.26781455900016,34.54010175200011],[79.72067252700003,34.55934609900015],[79.75145758100007,34.45928595700019],[79.46537752600011,34.3887277660001],[79.30886861800013,34.40540440100017],[79.22035253500013,34.370768365000174],[78.96762859900002,34.36948610100012],[78.97403756900007,34.51829421999997],[78.85986364300015,34.51188156100011],[78.87012460100004,34.398992412000155],[78.75338765600003,34.4387593460001],[78.63536056900006,34.5413877040001],[78.75338765600003,34.71328427700007]]],[[[100.69499954700012,37.62603754300011],[100.5061876220002,37.72753367300004],[100.08427463500016,37.86386784300015],[99.91653464700016,37.944601497000065],[99.6704255410001,38.034393976],[99.50409656300013,38.07597307700013],[99.18865956300004,38.18888619800009],[99.155853632,38.09345571500012],[99.2288055260002,38.010407316000055],[99.48733560700009,37.913226021000185],[99.7388225420001,37.799111271000186],[99.79185467600018,37.73768449400012],[99.70568854300006,37.68242931100019],[99.7441105170002,37.616005578000056],[99.66964753299999,37.56797542900017],[99.5753705680001,37.58706018500004],[99.25647754100015,37.71543372600013],[98.89396659900018,37.63166833800011],[98.83169559600009,37.68953213599997],[98.84365858300004,37.94754958000004],[98.66979963900019,37.99294378800005],[98.56308761800011,38.189080155000056],[98.43994153400013,38.30805104500007],[98.36540261100015,38.26784473100014],[98.33312960100011,38.09639675700009],[98.38775664300005,37.86317415700012],[98.61988054400018,37.621105631000034],[98.65222966100004,37.48637307500013],[98.94094867500013,37.324556076000135],[99.10896258300005,37.11120160400003],[99.29108457500007,36.91745642600006],[99.1965256430002,36.88135121000016],[99.10176051700012,36.96352956900017],[98.53949759000011,36.85540368800014],[97.89931464600011,36.804192774000114],[97.88407165300003,36.711112745000094],[96.69577762000017,36.85540368800014],[96.29341860700015,36.55070826400015],[95.87634264800016,36.26645060200002],[95.13373553100013,36.112812999000084],[94.33551767000017,36.50508925300011],[94.38007352100016,36.21044775400014],[94.33969152300011,36.128670721000105],[94.14411959400019,36.147446185000035],[93.89347856000018,36.24492084500008],[93.805419626,36.24178500800008],[93.68555455500018,36.160484906000136],[93.8534856500001,36.002056374000176],[93.86538661200018,35.92746112400005],[93.7891696310001,35.85275992600009],[93.52050063200011,35.82944130400017],[92.99122652900002,35.818012579000026],[92.783180651,35.79045237899999],[92.65643353500019,35.72609176700013],[92.48661064400005,35.74694225400003],[92.2446596330002,35.807342919000064],[92.16547361400012,35.80268895100011],[92.13885453400019,35.714476293000075],[92.20999861900009,35.58917824000014],[92.23274257800017,35.454804430000024],[92.18846852700017,35.373859217000074],[92.03558361900002,35.30377711900019],[91.98938759800006,35.200366562000056],[91.9324416180001,35.15216575700009],[91.6915205750002,35.08167177200016],[91.54676862700012,35.067157166000186],[91.01898952100004,35.123353636000104],[90.88862661900015,35.14622315600019],[90.53285254700018,35.12679859800005],[90.38249159800006,35.07143696500003],[90.2659605120001,34.93904430200013],[90.16534464900008,34.769122505000155],[90.06050866600015,34.724548717000175],[89.86041252000012,34.696355515],[89.63419350300006,34.690087696000035],[89.47269451300019,34.72454486100003],[89.53347051900016,34.83196012400009],[89.9853516600001,35.02637518300014],[90.07118955700003,35.0960532740001],[90.05115563500016,35.14511992900009],[89.89523362800014,35.100073067000096],[89.25335653500008,34.999680833000184],[88.55342051300005,34.770068486000184],[88.23625952200007,34.81237664600013],[88.1301116030001,34.797899758000085],[87.92263753900016,34.730354526000156],[87.89610261300004,34.65556951000019],[88.02154550500018,34.60973374300016],[88.1310956390002,34.647345857000175],[88.15836364600011,34.56552205300011],[87.92604863800005,34.50270773500006],[87.82089950700015,34.57440687100018],[87.60369857900008,34.554490295],[87.67877964400009,34.670427104000055],[87.6490096390001,34.77697634800012],[87.56615452600005,34.77245665800007],[87.51699851900008,34.65275084300009],[87.4589845180002,34.58317668800004],[87.36711165000014,34.53504796800013],[87.3853835290002,34.452668109000115],[87.31905350600016,34.41584489900015],[87.01605960800003,34.42417265500018],[86.83573151000013,34.369646363000015],[86.89963564300018,34.23014718700006],[86.72817258200007,34.20024089200018],[86.64195263800002,34.11408431500013],[86.48114750100012,34.229730942000174],[86.39503451000019,34.199473948000104],[86.3087465050001,34.22638924500018],[86.25668365500007,34.29626112500006],[86.123428661,34.29879028000016],[85.94738757100009,34.21853540100011],[85.7709426420002,34.18368931500015],[85.63376659400006,34.25610929400011],[85.4110106440001,34.30148724100013],[85.2792585250001,34.41935507300013],[85.12643463700005,34.41959479500008],[84.98153650900014,34.488711969000065],[84.9622805950001,34.54644148900019],[85.02973966100018,34.63373515500007],[85.11872060400015,34.623996557000055],[85.24549051900016,34.68825692000007],[85.08705863500006,34.83106812200015],[84.86811863000008,34.81487864400003],[84.75551564000011,34.78369427600012],[84.54634055200012,34.545274560000166],[84.41091162800012,34.55278927200004],[84.2623675390002,34.633052365000026],[84.18740851500007,34.59764117100002],[84.05283353900018,34.36429133300015],[83.90563960700018,34.34474506999999],[83.81420159300006,34.36215847400018],[83.88182058500007,34.43794345200013],[83.86080162200011,34.48039242700003],[83.48770165400009,34.57168694300003],[83.43166360200013,34.53957956000005],[83.47185549800008,34.44839518200018],[83.39371453500019,34.37882504999999],[83.12468762900016,34.330543444],[82.9878616100001,34.41906103600007],[83.05310064399998,34.46338671900003],[82.84337654200004,34.52955782100014],[82.77489454900012,34.43293459400007],[82.83724249700009,34.33330125800012],[82.71925363100019,34.30054109200006],[82.58648663200006,34.37783313600016],[82.52989956500005,34.45510087200006],[82.42376757199997,34.357386489000135],[82.42678053100013,34.242540837000035],[82.20027954600005,34.38122797400007],[82.12210052900014,34.46283368100012],[82.03880352300007,34.39384659400014],[82.05148349800015,34.33102724700018],[82.17251549800017,34.24210162500009],[82.24392663100014,34.108637419000104],[82.32875065300016,34.05462594300013],[82.246475567,33.98568881300014],[82.17768059400015,34.08347595100014],[82.09226263000005,34.07971817599997],[81.93992656900014,34.22965902500016],[81.80399355700013,34.251672417000066],[81.79151960900009,34.336959288000116],[81.62588465300018,34.47935038900016],[81.48409252300019,34.64208101600002],[81.33747057200003,34.59113346100003],[81.2552186210001,34.49684492900013],[81.1996995770001,34.493555871000126],[81.22451755399999,34.36180358400014],[81.15662363500007,34.31821869400005],[80.9780956350001,34.288044513000045],[80.90181763400011,34.10616542800011],[80.7928545690001,34.18830522900015],[80.7316665080001,34.34671682900017],[80.74927554600009,34.40957825300018],[80.61013058800012,34.392812770000035],[80.54465451400011,34.429791716000125],[80.42099763700008,34.42068578400006],[80.34154557700015,34.46185668600003],[80.3255155220001,34.305042845000116],[80.16156750800013,34.278985855000144],[80.06276649400013,34.21601429200018],[79.93465463600012,34.2594431120001],[79.91402459300019,34.18670227400014],[80.0291136560001,34.179103576000045],[80.19758555100003,34.13746764500007],[80.27269763000015,34.0512428400001],[80.39493561800009,34.03954723500004],[80.49820753800009,34.094671659000085],[80.5148466220001,33.95921960100014],[80.63526959199999,33.78672757700008],[80.45688659900003,33.70341682400016],[80.37870758300005,33.62393593000013],[80.22644058800017,33.591287076000015],[79.98217751300012,33.5758385580001],[79.92169152000014,33.43242067400007],[79.77990760400013,33.35987463100014],[79.76451859800011,33.26750840500017],[79.88544465000007,33.14038041500004],[80.00920060100015,33.07475430400018],[80.08284752300011,32.95279794800007],[80.16283451599998,32.97972129100009],[80.2673726070002,32.96863639200012],[80.39646162700018,32.909239209000134],[80.347366641,32.83875729400012],[80.55881456600008,32.79520274499998],[80.4194335740001,32.74055860400017],[80.32248663800016,32.67231264500009],[80.49025763800006,32.622703010000066],[80.463813572,32.58008354700007],[80.34988355900009,32.57832435299997],[80.09828162400004,32.54207865700005],[79.96524053600007,32.57442676800002],[79.7303695510002,32.68735698800009],[79.59226964900017,32.69458872600018],[79.41081955000004,32.769175427000164],[79.35004454900013,32.76336559500015],[79.46238753300008,32.61557034600003],[79.70731361700012,32.45420647200018],[79.92608665500006,32.242901040000106],[80.05090358700011,32.03134113300007],[80.20900757100003,31.803599626000164],[80.21488965500004,31.740358502000163],[80.28118162499999,31.63724315600001],[80.38014256400004,31.57138838700007],[80.52277355500007,31.420724347000032],[80.58152063800009,31.328239601000178],[80.67939763100014,31.28476887200003],[80.70654259200018,31.38850028800016],[80.85807063700008,31.260469735000072],[81.02714552700002,31.204949852000084],[81.239875547,31.062427658000104],[81.34804551700006,31.00638558300011],[81.4537735020001,30.993878107000114],[81.58255758900015,30.945682667000142],[81.67209659900016,30.86758361300008],[81.76985959800004,30.935037985000122],[81.91319265700008,30.886961735000057],[82.10202050700013,31.002675753000062],[82.17655959800015,30.901178281000057],[82.36132859600013,30.80681766500004],[82.43666061500016,30.88214683500013],[82.47313664600006,30.804436869000085],[82.41762564900012,30.677565365000078],[82.32102153200003,30.646314277000158],[82.47850056200014,30.581123858000126],[82.58412159400012,30.580897882000045],[82.67075359300003,30.42222241900015],[82.64297462400015,30.367540392000024],[82.51650964300006,30.27625375500014],[82.61125951400004,30.170361651000064],[82.60865056300008,30.050910981000186],[82.68595165900007,30.06088662000019],[83.03275256800003,29.88403935900004],[83.08013161100001,29.821702810000033],[83.2372285940001,29.736924050000084],[83.30705252899998,29.644665447000193],[83.40429652000006,29.56986031400004],[83.56244660500005,29.371035871000174],[83.60836065900008,29.33879320400007],[83.67504858900014,29.29403702600007],[83.71115849900002,29.35810242700012],[83.6609495580002,29.442499307000162],[83.65097056700012,29.607068756000103],[83.7182995450001,29.60457597800007],[83.76478558000008,29.696834581000132],[83.51631965000007,29.691849695000144],[83.43402864000007,29.819016745000113],[83.32680565800007,29.928730660999975],[83.22209154700005,30.08322103900008],[83.25686655499999,30.16533686800011],[83.35319557700012,30.201691529000072],[83.3970716550001,30.131354286000146],[83.57122765400015,30.02290503100005],[83.66590862700008,29.930422632000102],[83.85189853200012,29.865531111000053],[83.85407263000008,29.78803287200003],[83.93362460300017,29.686582842],[84.006767605,29.415149157000087],[84.05111659000016,29.38974813500016],[84.13590255800017,29.401889824000136],[84.23434465800017,29.36123021800006],[84.29510457100014,29.289823946000183],[84.53985564100009,29.234049254000183],[84.58254266200004,29.26116303400005],[84.56025652300019,29.41977613500012],[84.48916658500002,29.512385604000087],[84.384941642,29.479460650000078],[84.26831064400017,29.525889856000106],[84.07803356300013,29.51189140700012],[84.01672362900007,29.56727935900011],[83.995498639,29.711171826000054],[84.12458061800004,29.772055624000075],[84.19556460900003,29.71062985200018],[84.24700954600019,29.745680457000105],[84.35165358400019,29.72893827600012],[84.444770661,29.669967396000175],[84.62777761500007,29.617734392999978],[84.70768766200018,29.653072161000125],[84.85942860800014,29.590115519000108],[84.92184461800008,29.63339698400017],[84.90725759200018,29.698923351000133],[84.8129196070002,29.835780216000046],[84.81092052300016,29.915166227000157],[84.70568053200003,29.908216456000048],[84.62310755300001,29.966392396000117],[84.6062165100002,30.05084124399997],[84.65313756600005,30.131533994000108],[84.64562956000003,30.259144279000054],[84.48986060599998,30.354851028000155],[84.51238261200007,30.463695909000137],[84.48235360600006,30.510611432000132],[84.50675165000013,30.61570239300005],[84.57807158800011,30.64384932700017],[84.7244496240001,30.50498063700013],[84.80702260200013,30.493721730000175],[84.9083635,30.38112393600005],[85.05850249700006,30.304182759000128],[85.07350962400017,30.22348984200005],[85.17109660200015,30.189709934],[85.20487952800005,30.266651278999973],[85.27806863000018,30.281663603000084],[85.37190252700003,30.178449517000104],[85.46199055200009,30.174695431000032],[85.5370555240001,30.048964033000175],[85.52954852400018,29.98328059],[85.59147654000003,29.94011932],[85.65341159600013,29.759964058000037],[85.5370555240001,29.679271141000186],[85.488258599,29.735568026000124],[85.38691753300014,29.669886427000108],[85.30809763600018,29.78248304700014],[85.31748151200014,29.95325460100014],[85.2761915870002,30.026444877000188],[85.12418359300017,30.095879557000103],[85.11104563000015,30.045210281000095],[85.18048064600015,29.913846245000173],[85.1562115160001,29.84002414100013],[85.13144651200002,29.74470346200019],[85.24182863300007,29.66082894200008],[85.23077357400007,29.616458332000036],[85.07161766100006,29.619941348000054],[85.07000749700006,29.559653503000106],[85.30145263100007,29.531250586000056],[85.35869549800015,29.4629553420001],[85.49811554900009,29.424361874],[85.542549527,29.446540893000076],[85.6074145610001,29.349986901000136],[85.82487465700007,29.33746819300012],[86.02346759199997,29.385035326000036],[86.00463865200015,29.280978356000162],[86.08876764700005,29.24671162700008],[86.23444361600014,29.319216934000167],[86.28192860600012,29.210148257000128],[86.49668151500003,29.25015860100018],[86.73372659800003,29.213691120000078],[87.04370865700008,29.186341137000113],[87.16612266400011,29.211952043000167],[87.10031852200018,29.284422145000065],[87.09074353900013,29.404525765000017],[86.85426356300007,29.43999714100005],[86.4888836630002,29.464639434000162],[86.29527259600002,29.414989063000178],[86.2026676530001,29.462484447000122],[86.03728465600017,29.450767719],[85.85905454900018,29.416507025000158],[85.75930051400007,29.53407562300015],[85.80496260800004,29.637754736000147],[85.89994063500006,29.50960163900004],[86.05853261300007,29.51206541600004],[86.21781157300006,29.54847724100017],[86.30034649700019,29.61354947600006],[86.3965685660001,29.559707650000064],[86.88748959500009,29.533789632000037],[87.2875745980001,29.425343898000108],[87.55030853800008,29.439852134000034],[87.61173263300009,29.483538614000167],[87.63719165800006,29.654524074000108],[87.58506057900019,29.89611684300013],[87.6548385820002,29.879742460000045],[87.71203652200006,29.75154342999997],[87.690574659,29.627488078000113],[87.71191364300012,29.532923782000125],[87.93061861900009,29.46512038700007],[87.96048753100018,29.51520527600013],[87.8685605170001,29.62457402600006],[87.93582160200009,29.653141228000095],[88.03587353000006,29.465163303000054],[88.1971356480002,29.56571931899998],[88.23620554300015,29.482243610000125],[88.31060063300004,29.59106351200012],[88.35411059000018,29.550963146000072],[88.34629865600004,29.431196646000103],[88.47953755700013,29.446739041000114],[88.46948262600012,29.54033355200005],[88.54745460900011,29.62467511100016],[88.55097953500007,29.8467407280001],[88.53240959600004,29.930291539000166],[88.40243561400018,30.03240675700016],[88.18891853300005,30.088106850000145],[88.16106463100004,30.19022290600003],[88.10536152000014,30.26449008900005],[88.04037461200016,30.27377304700019],[87.91040750400015,30.199507540000127],[87.77114855300005,30.27377304700019],[87.74330152300013,30.440871651000066],[87.76187163000014,30.580121717000054],[87.75258666100007,30.691520899000125],[87.83613562700009,30.821486163000145],[87.94754050900008,30.867903634000186],[87.89627058600018,31.05245788700006],[88.00566062500019,31.026028908000114],[88.16682450700017,31.122972659000027],[88.26523559400005,31.118278794000048],[88.52597061800003,31.049725219000095],[88.6690295890001,31.060544580000112],[88.90689861300012,31.009853679000173],[89.01194766500004,31.011810351000065],[89.2009275630001,31.06053770700015],[89.3100586010001,31.115443699000082],[89.48054450000018,31.102558367000086],[89.71583558700019,31.128751311000144],[89.84095762000015,31.18623524100019],[89.98095652600006,31.3215548660001],[90.25801061200008,31.784359135000045],[90.4914705880002,31.937228118000064],[90.61975058700017,31.99719108000005],[90.82329555100006,32.160082807000094],[90.87804463300012,32.222363868000116],[90.83834861100019,32.455659223],[90.9129636420002,32.54489346800011],[91.07804857800011,32.62615199600015],[91.28904756800017,32.674448354000106],[91.64348556400012,32.715317173000074],[91.70740562300006,32.7616038860001],[91.71096055500004,32.850124998000126],[91.6197505290001,32.915362021000135],[91.4183575350001,32.967388662000076],[91.47837866800018,33.05740979900014],[91.73580954600016,33.37919206800018],[92.21849853900011,33.797511063],[92.67679552500005,34.059390720000124],[92.92736866500019,34.12772502399997],[93.17703253600013,34.25255352300019],[93.45790860300008,34.19013919000014],[93.6763606130001,34.19013919000014],[93.86360964800008,34.314968862000114],[93.98844166800006,34.47100469500009],[94.08206953799998,34.54902428800011],[94.23810553900017,34.611438788999976],[94.55019363400004,34.68945469400006],[94.78424855700007,34.72066202900015],[94.92469053000013,34.814287384000124],[95.4708325430002,35.063945053000054],[95.84532960700017,35.251189394000164],[96.11059555200018,35.32920546600013],[96.39147161900013,35.391623823000145],[96.53190655100008,35.45403849200005],[96.85959655400012,35.53205456400002],[96.98442857300006,35.54766015900009],[97.1716766020001,35.61007449300007],[97.48375665000003,35.734903662000136],[97.85825354700012,35.79731816300017],[98.13912961400007,35.79731816300017],[98.49732152899998,35.89590677900003],[98.94921155500009,35.933565161],[99.41014062500005,36.010383292000085],[99.84546666900007,36.061598229000026],[100.741722622,36.13841736600017],[101.12583154999999,36.24084707300017],[101.45872453400005,36.343272589000094],[101.75290653700011,36.46094227200018],[101.56320965100008,36.55391216300012],[101.4916535120002,36.614289861000145],[101.38181252600009,36.82505851600007],[101.32442465200018,37.04491080800017],[101.26353465200003,37.18299998000015],[101.10710855700012,37.387463936000074],[100.69499954700012,37.62603754300011]],[[80.33724951600004,32.14282228900015],[80.41460459200005,32.10353563800004],[80.40846250100014,32.01268050199997],[80.55580160700009,32.02127429900008],[80.54720261200009,31.92305348200017],[80.81732151200009,31.69468802600005],[80.80750261500009,31.606289123000124],[80.87380263100005,31.537533377000045],[80.85169955300012,31.425807301000134],[80.7055966100001,31.45159120900007],[80.73997465100013,31.532622420000052],[80.63315550900018,31.643122726000115],[80.56562050300016,31.63207202400008],[80.54475358800016,31.722926992999987],[80.41091957200013,31.864120320000097],[80.31269858600012,32.053199125000106],[80.33724951600004,32.14282228900015]],[[82.21012861800011,31.185409456000173],[82.18000053700018,31.29144472300004],[82.36195355100006,31.232402932000184],[82.44630449800007,31.176974579000102],[82.57764456200016,31.0323835640001],[82.66680957200015,30.967316862000075],[82.85960357100004,30.94321889000014],[82.91142250800004,31.013105355000107],[83.06083663800007,30.99262115700003],[83.19820362600018,31.087809737000157],[83.20784750800004,30.98900721500013],[83.04637953100018,30.880561984000167],[83.1849515020001,30.798627875000136],[83.1186756260002,30.760070282000072],[82.96805550800019,30.770914789000074],[82.86804163300008,30.872128281000016],[82.81381960400017,30.804652618999967],[82.8740695620001,30.770914789000074],[82.8969645630001,30.696208729000034],[82.80658753000006,30.603428773000076],[82.75839259300005,30.669701464000184],[82.66320066000014,30.698619365000184],[82.61861463400004,30.66367588100013],[82.49329361500014,30.708259056000088],[82.50896458900019,30.782963607000056],[82.61499750800004,30.77573488600018],[82.4029236230001,30.92032573299997],[82.2751995110001,31.16974703200009],[82.21012861800011,31.185409456000173]],[[83.36067156400009,30.879262119000032],[83.41734362300019,30.94386195000004],[83.37200959700004,31.096861355000158],[83.39127355700003,31.13766010100005],[83.56015063400002,31.17052889600012],[83.58847861700008,31.052659891000076],[83.50574453900003,30.89059478700011],[83.459274597,30.84979419700005],[83.47514355100009,30.77499493100015],[83.4558795910001,30.6231270830001],[83.51594565000005,30.485994118000065],[83.47061162400001,30.456528208000123],[83.25413556299998,30.490527051000072],[83.25980357300017,30.632194961000096],[83.2053986520001,30.816928419000135],[83.31080661600004,30.836193553000044],[83.36067156400009,30.879262119000032]],[[84.1075205950001,30.72930350100006],[84.07894165800008,30.64854721600011],[84.26779951600014,30.5926372400001],[84.26158852500004,30.540456037000126],[84.3150095800001,30.423669471000153],[84.18579851900006,30.349124177000135],[84.24542955700014,30.247246838000024],[84.18952159200018,30.162761947000092],[84.08391564700014,30.141640892000055],[84.09012563200014,30.23979130200007],[83.95594058199998,30.195064796000054],[83.89009050600015,30.207489291000172],[83.85530057900013,30.27457972100018],[83.7273255140002,30.328002787000116],[83.70744363900019,30.42615520800007],[83.75714866000004,30.554123736000065],[83.86524151600008,30.593881282000154],[83.9621505660001,30.542941104000136],[84.05409250000014,30.320549263000146],[84.11124450700004,30.387639693000153],[84.03048654600008,30.54791190700007],[84.04912555200008,30.715637980999986],[84.1075205950001,30.72930350100006]],[[86.26319857300018,30.390851638000072],[86.33797453700015,30.437768],[86.31158461700011,30.23690122200003],[86.33357252900004,30.137199993000024],[86.29398362700005,30.10054643300009],[86.25439455700007,29.952461673000073],[86.25292956800007,29.857160439999973],[86.17375159600005,29.785316968000018],[86.07845254200004,29.785316968000018],[86.14443153100018,29.64016553900018],[86.12536655700012,29.563924418000113],[85.87464153700006,29.594713160000083],[85.7896046140001,29.691482735000193],[85.80279555100009,29.833701169000108],[85.75001554400012,29.89234817199997],[85.69869264800019,30.0345677790001],[85.76174165900017,30.11374273400014],[85.8130645550001,30.075622173],[85.87757855500007,30.13426917600009],[85.94062052600015,30.097614275000126],[85.85118059000018,30.033102622000115],[85.83505263400014,29.868890075000024],[85.95822151700014,29.914340274000097],[86.16495562600005,29.917274276000057],[86.14882649800012,30.08735164100011],[86.10484363400013,30.12987018600012],[86.23680161300013,30.286751250000123],[86.26319857300018,30.390851638000072]]]]},"properties":{"objectid":152,"eco_name":"Central Tibetan Plateau alpine steppe","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Palearctic","eco_biome_":"PA10","nnh":2,"eco_id":750,"shape_leng":130.98088872,"shape_area":60.9734061571,"nnh_name":"Nature Could Reach Half Protected","color":"#E67938","color_bio":"#D6C39D","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":630873.7763852588,"percentage":12.918993410568314}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[36.72374677200014,-16.589147263999962],[36.69731852100006,-16.500602661999892],[36.625717455000085,-16.44916778399994],[36.52593961400015,-16.49806998599996],[36.43233454300008,-16.43773754999995],[36.31499460400005,-16.454456764999975],[36.23086560900015,-16.426098271999933],[36.24856953000011,-16.337651087999973],[36.31167252000017,-16.21935644999985],[36.30851208600018,-16.15026371999994],[36.196787382000025,-16.279496048999874],[36.174416259000054,-16.365850321999915],[36.192818628000055,-16.438151306999885],[36.283321954000144,-16.51126412499997],[36.49963272200006,-16.649460725999916],[36.60256357100013,-16.659514380999894],[36.72374677200014,-16.589147263999962]]],[[[36.81572134100014,-16.511130146999903],[36.897416133000036,-16.396461847999888],[37.04310682400012,-16.347074859999964],[37.253940322000176,-16.35553461399985],[37.31211313600005,-16.26677460699989],[37.30862616500008,-16.15953095699996],[37.42000394100012,-16.061539050999954],[37.439887189000046,-15.947068278999893],[37.52590444700013,-15.833810294999978],[37.59154088100007,-15.829399783999975],[37.83121792100013,-15.892488711999874],[38.040558695000186,-15.884078565999914],[38.11762750400004,-15.805362291999927],[38.059940421000135,-15.696103942999912],[37.875956217000066,-15.651899613999944],[37.74368425100016,-15.581593484999928],[37.523400781000134,-15.534171588999982],[37.45278860000019,-15.48234910399998],[37.3786894480001,-15.323282968999877],[37.35480981000012,-15.121245134999981],[37.31452205000005,-14.93728006799995],[37.20413152800012,-14.910757469999965],[36.91126137000009,-15.060542097999928],[36.79341907100013,-15.153311660999975],[36.77453491900013,-15.346909583999945],[36.785987033000026,-15.6120065799999],[36.715884271,-15.769449049999935],[36.645279985000116,-15.853387667999925],[36.52594496200004,-15.929287331999944],[36.40313086400005,-16.03370444899997],[36.322662912000055,-16.134676455999966],[36.40315261200004,-16.194622124999967],[36.40543751900003,-16.239018047999934],[36.562255551000135,-16.227138041999922],[36.67038746700007,-16.306524890999924],[36.788322520000065,-16.303033995999897],[36.77548245100019,-16.432574968999916],[36.81572134100014,-16.511130146999903]],[[37.14077752600002,-15.119277590999957],[37.20771758400019,-15.133223735999934],[37.25513451400002,-15.20016144699997],[37.257926525000016,-15.286621952999951],[37.377860496000096,-15.328457204999893],[37.37304660100011,-15.436593142999868],[37.31869850900017,-15.477292647999832],[37.171596611000155,-15.457970013999955],[37.05774656099999,-15.492432711999925],[36.93484858200003,-15.437929050999912],[36.840557535000016,-15.34387504499989],[36.89715147500016,-15.29300560999991],[36.89549252900002,-15.23292043999993],[36.963542518999986,-15.140885298999876],[37.14077752600002,-15.119277590999957]]],[[[28.144166667000093,-14.418333332999964],[28.086666667000145,-14.385833332999937],[28.0375,-14.435833332999891],[28.078333333000046,-14.533333333999963],[28.179166667000175,-14.4625],[28.144166667000093,-14.418333332999964]]],[[[35.96253628799997,-15.463696794999976],[36.00779189900015,-15.568133755999952],[36.05901051100017,-15.604289208999887],[36.267845814,-15.45449465999991],[36.40557531000013,-15.315134876999934],[36.50253526300014,-15.257708934999982],[36.83418071699998,-14.935616716999903],[36.7973799290001,-14.858895298999926],[36.69146363100003,-14.815101845999948],[36.464222011000174,-14.824714858999982],[36.363273564,-14.70139329999995],[36.257349369999986,-14.521838743999922],[36.212089811000055,-14.349521230999812],[36.18721502400007,-14.13623679899996],[36.21802517600008,-13.806075860999954],[36.26127864500012,-13.684377966999875],[36.22099483300019,-13.568293450999874],[36.15535839900008,-13.572703962999924],[36.07232264200019,-13.651821191999886],[35.966418188000034,-13.811669395999843],[35.799849098000095,-13.96428055499996],[35.67951497800004,-13.961053067999899],[35.544755139000074,-13.862630440999908],[35.46867753100008,-13.884712762999868],[35.35250000000019,-14.019999999999868],[35.484166666000135,-14.1675],[35.5875,-14.334923872999923],[35.73225000100018,-14.421361730999877],[35.83916934400003,-14.612162886999897],[35.87049681100012,-14.627028007999968],[35.90133459900011,-14.772030932999883],[35.916265788000146,-15.00861047599983],[35.94959145000007,-15.181729898999947],[35.92672275299998,-15.262460872999952],[35.96253628799997,-15.463696794999976]]],[[[24.87500000000017,-12.79166666599997],[24.79333333300002,-12.925833333999947],[24.834166666000044,-12.9675],[24.87500000000017,-12.79166666599997]]],[[[29.526015257000097,-7.002092886999947],[29.66753166100017,-6.901901700999815],[29.632774585999982,-6.826994050999815],[29.557220446000144,-6.784775242999899],[29.46265845000005,-6.667005770999936],[29.409861110000122,-6.72684275599994],[29.361287557000082,-6.877491164999981],[29.429572117000077,-6.992941347999931],[29.526015257000097,-7.002092886999947]]],[[[31.215000000000146,-4.839166666999915],[31.161666666000144,-4.959166666999977],[31.259166666,-4.969166665999978],[31.215000000000146,-4.839166666999915]]],[[[25.682500000000175,-15.770833333999974],[25.80500000000012,-15.859166666999897],[25.852500000000134,-15.78166666699991],[25.924166667000122,-15.74583333299995],[26.024166666000156,-15.538333332999912],[26.05833333300012,-15.58416666699992],[26.015833334000035,-15.689166666999938],[26.0375,-15.748333332999948],[26.077500000000157,-15.759999999999877],[26.090833334000024,-15.766666666999924],[26.156666667000025,-15.76166666599994],[26.173333333000187,-15.763333333999924],[26.15750000000014,-15.618333332999896],[26.18916666600012,-15.56999999999988],[26.2875,-15.54833333299996],[26.406666666000035,-15.4725],[26.30333333300007,-15.4275],[26.36666666700006,-15.377499999999884],[26.45416666600005,-15.36],[26.49333333300018,-15.465833332999978],[26.5925,-15.440833332999944],[26.705,-15.3566666669999],[26.594166667000138,-15.285833332999971],[26.556666667000115,-15.204166666999924],[26.560000000000173,-15.013333332999878],[26.626666667000165,-15.065],[26.713333334000083,-15.215833333999967],[26.78416666700008,-15.188333332999946],[26.83416666700009,-15.234166666999954],[26.91166666700019,-15.11],[26.983333333000076,-15.128333333999876],[27.078333333000046,-15.23],[27.1925,-15.221666666999965],[27.161666667000134,-15.158333333999906],[27.30333333300007,-15.138333332999935],[27.390833333000103,-15.148333332999925],[27.385,-15.05416666699989],[27.45916666700009,-15.0525],[27.59750000000014,-15.134166665999885],[27.61833333300001,-14.941666666999822],[27.71833333400008,-14.91083333399996],[27.766666667000152,-14.863333332999957],[27.80083333300007,-14.758333332999939],[27.803333333000126,-14.655833332999919],[27.560833333000062,-14.569166666999877],[27.481666667000127,-14.486666666999895],[27.375,-14.545833333999894],[27.3275,-14.46],[27.18416666700017,-14.3975],[27.079166667000095,-14.385833332999937],[27.276666667000086,-14.208333332999814],[27.34020633400013,-14.086012621999942],[27.435833333000176,-14.07666666699987],[27.52333333399997,-14.019166666999922],[27.804166667000175,-13.930833332999839],[27.790000000000134,-13.861666666999952],[27.917500000000132,-13.903333332999978],[27.95083333400015,-13.975833332999912],[27.875833334000163,-14.08666666699986],[27.90583333400008,-14.228333332999966],[28.03166666600015,-14.254166666999936],[28.03833333300014,-14.319166666999934],[28.078333334000092,-14.37],[28.1625,-14.38083333399993],[28.2525,-14.368333332999953],[28.370833334000054,-14.5175],[28.463333334000083,-14.534166666999965],[28.521666666999977,-14.585],[28.51250000000016,-14.724166665999974],[28.59083333300015,-14.725833332999855],[28.616666667000118,-14.82333333299988],[28.694166667000047,-14.8325],[28.829166667000095,-14.740833332999898],[29.159166667000193,-14.6275],[29.235000000000127,-14.54],[29.264166667000154,-14.463333332999923],[29.5475,-14.224166665999974],[29.66500000000019,-14.08],[30.006666667000104,-13.730833333999954],[30.15083333399997,-13.536666666999963],[30.265,-13.429999999999893],[30.355833333000135,-13.395],[30.712500000000148,-13.31999999999988],[30.905000000000143,-13.21166666699986],[31.080833333000044,-12.9775],[31.423333333000073,-12.134166666999874],[31.535833333000028,-11.9175],[31.669166667000013,-11.752499999999827],[32.00833333400004,-11.493333332999839],[32.140833333000046,-11.372499999999889],[32.155833334000135,-11.251666665999892],[32.0716666670001,-11.120833332999894],[32.17916666700012,-11.049166666999838],[32.28083333300009,-11.064166666999881],[32.27416666700003,-10.9375],[32.33583333400003,-10.893333333999976],[32.40916666700008,-10.89666666699992],[32.487500000000125,-10.760833332999937],[32.4525,-10.72916666599997],[32.245,-10.731666666999956],[32.23750000000018,-10.648333332999925],[32.28416666700019,-10.5575],[32.51833333300016,-10.215],[32.62333333300012,-10.184166665999896],[32.62,-10.30833333399994],[32.755833333000055,-10.359166666999954],[32.77666666700003,-10.176666666999893],[32.8375,-10.078333332999932],[32.955,-9.996666665999953],[33.04416666700001,-10.000833332999946],[33.11833333300018,-10.117499999999893],[33.11416666600013,-10.1575],[33.1025,-10.191666666999879],[33.095,-10.216666666999913],[33.0833333330001,-10.250833332999889],[33.0833333330001,-10.266666666999981],[33.07916666700015,-10.283333332999973],[33.130833333000055,-10.36333333399989],[33.18083333300012,-10.449166666999815],[33.13416666600011,-10.608333332999962],[33.15,-10.694166665999944],[33.215833333000035,-10.682499999999834],[33.25083333300012,-10.7525],[33.2583333340001,-10.90083333299998],[33.294166667000184,-11.0375],[33.285833333000085,-11.181666666999945],[33.23916666700012,-11.31],[33.1075,-11.501666666999938],[33.075833333,-11.640833332999932],[32.96666666700014,-11.952499999999873],[32.95833333300004,-12.157499999999857],[32.9775,-12.305833332999896],[32.95916666600016,-12.39],[32.8375,-12.552499999999895],[32.720833333000144,-12.739999999999895],[32.646666666000044,-12.915],[32.650833333000094,-12.95916666599993],[32.8025,-13.181666665999842],[32.799166667000065,-13.386666666999872],[32.787500000000136,-13.405833332999975],[32.7325,-13.49166666699989],[32.66416666600014,-13.549166666999952],[32.56916666600017,-13.530833332999975],[32.52166666700009,-13.619166666999888],[32.38666666600017,-13.608333332999962],[32.269166667000036,-13.622499999999889],[32.15583333300003,-13.788333332999969],[31.98833333400006,-13.964166666999972],[31.951666666000108,-14.002499999999884],[31.86,-14.084166666999977],[31.86,-14.085],[31.859166667000125,-14.088333333999913],[31.766666666000162,-14.163333333999901],[31.63750000000016,-14.302499999999895],[31.611666667000065,-14.386666666999872],[31.645833333000155,-14.524166666999974],[31.474166667000134,-14.61999999999989],[31.2725,-14.6575],[31.54941906000016,-14.702431594999894],[31.725453913000024,-14.860304784999926],[31.730935131000024,-15.057922184999939],[31.787627064000162,-15.155933934999894],[31.92784443300019,-15.04469065099994],[32.025799536000136,-14.99851130799982],[31.915902640000184,-14.909731457999897],[31.98899085100004,-14.786028786999964],[31.9830199540001,-14.718549189999976],[31.882075456000166,-14.663108182999906],[31.871132760000137,-14.607276141999876],[31.97704116200009,-14.515308489999882],[32.184885264000116,-14.422147893999977],[32.38676636600002,-14.397268804999953],[32.454886726000154,-14.353094239999962],[32.448333333000164,-14.1425],[32.47083333300003,-13.98],[32.591666667000084,-13.776666666999972],[32.69416666600006,-13.685],[32.764166667000154,-13.67],[32.88500000000016,-13.826666666999927],[32.9025,-13.98],[32.87333333400011,-14.122499999999889],[32.99190025200011,-14.113366581999855],[33.03267769100012,-14.167193844999929],[32.94268378300012,-14.303345982999929],[32.959095853000065,-14.35315376899996],[33.11175259000004,-14.38249297699997],[33.115737136000064,-14.495359926999924],[33.233093704000055,-14.600608719999855],[33.38426166500017,-14.680958580999913],[33.52299420600002,-14.68860650199997],[33.66768974700017,-14.62797291499993],[33.77906752300004,-14.529981007999936],[33.814166667,-14.541666666999959],[33.91333333300008,-14.474166665999917],[33.86833333400011,-14.376666666999881],[33.85666666600008,-14.28416666599992],[33.64500000000015,-14.2725],[33.62583333300017,-14.163333332999912],[33.382500000000164,-14.064166665999892],[33.375000000000114,-13.995],[33.28083333300009,-13.878333332999944],[33.281666666000035,-13.7775],[33.5225,-13.643333332999873],[33.5825,-13.588333332999923],[33.57833333300016,-13.510833333999926],[33.750000000000114,-13.3525],[33.765,-13.246666665999953],[33.83166666600016,-13.133333332999939],[33.82661825000008,-12.968147011999974],[33.878441987000144,-12.902685448999875],[33.759792904000165,-12.87131844999982],[33.70251403700013,-12.717211020999969],[33.70933294900016,-12.41990642299993],[33.73797238300011,-12.377629162999881],[33.82661825000008,-12.403541031999964],[33.89753494300015,-12.381720510999855],[33.91390033300013,-12.257616297999903],[34.005,-12.208333332999928],[34.11166666700012,-11.973333332999971],[34.191666667000106,-11.92],[34.184166667000056,-11.823333332999937],[34.30250000000012,-11.7275],[34.328333333000046,-11.667499999999848],[34.276666667000086,-11.515],[34.27583333300004,-11.383333332999825],[34.22166666700002,-11.276666666999915],[34.2125,-11.186666665999951],[34.24416666700006,-11.13],[34.25000000000017,-10.979166666999902],[34.17916666700006,-10.561666666999884],[34.237500000000125,-10.38083333399993],[34.14916666600004,-10.283333333999906],[34.075,-10.236666665999962],[33.99250000000018,-10.10249999999985],[33.943333333000055,-9.97],[33.89583333300004,-9.741666666999947],[33.943333333000055,-9.706666666999922],[33.94916666600017,-9.5725],[34.036666667000134,-9.49166666699989],[34.30916666600018,-9.743333332999896],[34.343333332999975,-9.805833332999953],[34.501666666000176,-9.975833332999969],[34.57083333300011,-10.294999999999845],[34.541666667000186,-10.415833333999956],[34.54750000000013,-10.509166666999931],[34.59416666700014,-10.58083333399992],[34.65000000000015,-10.748333332999948],[34.64916666700003,-10.9075],[34.60166666700002,-11.001666666999938],[34.62833333300006,-11.104166666999959],[34.73083333300008,-11.189999999999884],[34.78333333300003,-11.326666666999813],[34.8975,-11.368333332999953],[35.109338605,-11.165577663999954],[35.363940932,-10.859816924999905],[35.43889395400004,-10.582609716999968],[35.45436045100013,-10.45411882299993],[35.51027778400015,-10.210224069999924],[35.503139401000055,-9.927068209999959],[35.579282154000055,-9.604651243999967],[35.632820026000104,-9.447606817999883],[35.66137355800004,-9.303649426999925],[35.90553630300013,-9.15981226799994],[35.89205646300013,-8.94363974099997],[35.82984047700006,-8.98555178499987],[35.76924735600011,-8.87454065299994],[35.848863836000135,-8.80540072499997],[35.86086581400019,-8.660743657999888],[35.94160669500013,-8.573860283999977],[35.87544519700009,-8.451231365999888],[35.8625,-8.454166665999935],[35.74750000000017,-8.559999999999889],[35.66166666700008,-8.668333332999907],[35.47333333300003,-8.7225],[35.42000000000013,-8.671666666999954],[35.328900347,-8.693333333999874],[35.32833333299999,-8.693763025999885],[35.32780069500018,-8.694166666999877],[35.2049929370001,-8.757563125999923],[35.11742877200015,-8.767080969999881],[34.99179323100003,-8.826091602999952],[34.944204011000124,-8.797538070999906],[34.96895040600015,-8.62621687799998],[35.08887524,-8.519617024999889],[35.033671745000106,-8.452992116999894],[35.07745382700011,-8.401595758999974],[35.18976438700008,-8.39017434699997],[35.235450038000124,-8.306417318999877],[35.138333333000105,-8.268333332999873],[34.9558333330001,-8.321666666999874],[34.899166667000145,-8.270833333999974],[34.7558333340001,-8.316666666999879],[34.683333333000064,-8.363333332999957],[34.721666667000136,-8.44499999999988],[34.586666666000156,-8.493333332999896],[34.7975,-8.534166666999909],[34.780833333000146,-8.626666666999881],[34.84250000000014,-8.6625],[34.685,-8.83083333299993],[34.5766666670001,-8.8725],[34.48000000000019,-8.825833333999924],[34.428333333000126,-8.832499999999868],[34.301666667,-8.77916666699997],[34.22833333300008,-8.826666666999927],[34.199166666999986,-8.89],[34.12833333400005,-8.855],[33.998333334000165,-8.875],[33.7558333340001,-8.793333333999897],[33.70583333300016,-8.814166665999892],[33.607500000000186,-8.769166666999979],[33.6625,-8.604166666999959],[33.68166666700006,-8.4875],[33.54916666600019,-8.442499999999882],[33.383495725000046,-8.34841271599987],[33.353433229000075,-8.154509620999875],[33.263245743000084,-7.954594025999938],[33.13548013800005,-7.841859668999916],[32.80028331400018,-7.611881578999942],[32.70408332900013,-7.535222215999966],[32.45757086700007,-7.404450360999931],[32.27418964499998,-7.366872240999953],[32.14943028900012,-7.213553514999944],[32.13439904100005,-6.997103547999927],[32.114858419000086,-6.923450433999903],[32.03669593100011,-6.8723441919999],[31.954024069000184,-6.768628582999838],[31.910433450000085,-6.652887975999931],[31.866842832000145,-6.421406760999957],[31.859327208000025,-6.302659903999881],[31.87886783000016,-6.185416171999975],[32.000620937000065,-5.854728722999937],[32.11335529399997,-5.454897533999883],[32.17348028500015,-5.041538221999929],[32.16596466100003,-4.61314766299995],[32.10133029600013,-4.135153985999921],[32.0772803000001,-3.742838420999931],[32.062249052000084,-3.663172807999899],[32.062249052000084,-3.367057228999954],[32.08479592400005,-3.26033536999995],[32.08479592400005,-3.132569764999914],[32.046666667000125,-2.95499999999987],[31.964166667000086,-2.973333332999971],[31.9075,-2.926666666999949],[31.836666665999985,-2.9325],[31.794166666000024,-3.035833332999914],[31.726666666000085,-3.045833332999962],[31.707500000000152,-2.889166666999927],[31.724166667000077,-2.749166666999884],[31.710833332999982,-2.6625],[31.4375,-2.663333332999969],[31.63750000000016,-2.489166666999949],[31.656666666000092,-2.418333333999954],[31.605833333000078,-2.389166666999927],[31.600000000000136,-2.2325],[31.508333333000053,-2.065833332999944],[31.3825,-2.088333333999969],[31.39583333300004,-2.1775],[31.338333333000094,-2.284166666999909],[31.405833332999975,-2.360833333999892],[31.325,-2.398333332999869],[31.365833334000172,-2.503333332999887],[31.34416666700008,-2.6075],[31.2975,-2.65],[31.210833333000096,-2.9258333329999],[31.10166666700019,-3.059999999999832],[31.05666666600007,-3.0325],[31.134166666000112,-2.905],[31.060833334000165,-2.83],[31.000000000000114,-2.92],[30.8975,-3],[30.840000000000146,-2.9775],[30.745000000000175,-2.997499999999889],[30.644166666000046,-2.9475],[30.613333333000185,-3.040833332999966],[30.535833333000085,-2.99916666699994],[30.641666666000106,-2.939166666999881],[30.57333333300005,-2.888333333999981],[30.42416666600019,-2.994999999999891],[30.415,-3.04833333299996],[30.24166666700006,-3.260833332999937],[30.130833334000044,-3.33083333299993],[29.989166667000063,-3.394166666999979],[30.045833334000065,-3.444999999999823],[30.079166666000106,-3.52916666699997],[30.076666667000097,-3.6275],[30.13583333400004,-3.690833332999887],[30.080833333000044,-3.815],[30.020833334000145,-3.875833332999889],[30.003333334000047,-3.942499999999882],[29.92666666700012,-3.944999999999879],[29.915000000000134,-4.05833333399994],[29.833333334000088,-4.078333332999875],[29.75000000000017,-4.139999999999873],[29.74583333300012,-4.188333333999879],[29.670833333000132,-4.195833332999939],[29.645833334000088,-4.098333333999904],[29.560000000000116,-4.125833333999935],[29.581666667000036,-4.016666665999878],[29.571666667000045,-3.909166666999965],[29.589166667000086,-3.829166666999868],[29.459166667000034,-3.82],[29.331666667000093,-3.763333333999981],[29.37166666700017,-3.884166666999931],[29.440833333000114,-3.985833332999903],[29.458333332999985,-4.063333332999832],[29.595833333000144,-4.3475],[29.662500000000136,-4.410833333999904],[29.636666667000043,-4.596666666999965],[29.59166666699997,-4.72333333399996],[29.59083333400008,-4.87],[29.82,-5.137499999999875],[29.78166666700008,-5.202499999999873],[29.79833333300013,-5.259166665999828],[29.75000000000017,-5.4225],[29.770000000000152,-5.508333332999939],[29.829166666000162,-5.559166666999943],[29.928333333000182,-5.770833332999928],[29.94416666700016,-5.869166666999888],[29.904166667000084,-5.935],[29.72083333300003,-6.0525],[29.715833333000035,-6.294166665999967],[29.858333334000065,-6.453333333999922],[29.967500000000143,-6.5275],[30.13,-6.484999999999843],[30.35750000000013,-6.7075],[30.405,-6.823333333999869],[30.483333333000132,-6.92],[30.555,-6.961666666999918],[30.56250000000017,-7.033333333999906],[30.525000000000148,-7.2175],[30.6025,-7.380833332999828],[30.59416666700008,-7.475],[30.639166667000154,-7.605],[30.739166667000063,-7.7025],[30.8,-7.868333332999953],[30.85666666700007,-7.9125],[30.91666666700013,-8.030833333999908],[30.921666667000068,-8.11666666699989],[30.98000000000019,-8.155833332999975],[30.953333333000103,-8.220833332999973],[30.981666667000127,-8.305],[31.04333333300002,-8.313333332999946],[31.144166667000036,-8.42],[31.136666666000053,-8.490833332999898],[31.2,-8.6125],[31.199166667000043,-8.73916666699995],[31.029166667000084,-8.80833333299995],[30.84916666700019,-8.628333332999944],[30.794166666000024,-8.61083333299996],[30.65833333300003,-8.714166666999859],[30.51666666600005,-8.65],[30.533333332999973,-8.594166666999968],[30.541666666000026,-8.571666666999931],[30.54416666600008,-8.5675],[30.575,-8.541666666999902],[30.575,-8.5375],[30.575,-8.529166666999913],[30.575,-8.524166665999928],[30.56666666700005,-8.51416666599988],[30.56166666600012,-8.51416666599988],[30.49166666600013,-8.5275],[30.483333333000132,-8.523333333999915],[30.483333333000132,-8.5225],[30.47750000000019,-8.516666665999935],[30.475833333000026,-8.515833332999932],[30.45000000000016,-8.475833332999912],[30.465833334000138,-8.408333332999916],[30.475,-8.369166665999956],[30.566666666000117,-8.2925],[30.5741666670001,-8.26333333399998],[30.573307439000075,-8.253333333999933],[30.296666667000125,-8.289166665999971],[30.22666666700013,-8.349166666999906],[30.154166666000094,-8.48],[30.191666666000117,-8.550833333999947],[30.025833333000037,-8.524166666999918],[29.965,-8.5925],[30.11,-8.6025],[30.185,-8.639999999999873],[30.1,-8.719166665999921],[30.044166666000024,-8.681666665999956],[29.950000000000102,-8.7025],[29.812500000000114,-8.858333332999848],[29.808333333000064,-8.931666666999945],[29.554166667000175,-8.958333332999871],[29.45000000000016,-8.937499999999886],[29.50916666600017,-8.8525],[29.481666665999967,-8.750833333999935],[29.576666666000108,-8.536666665999917],[29.626666666000176,-8.4875],[29.725,-8.495833333999883],[29.78166666700008,-8.425],[29.79543867700005,-8.348333332999971],[29.918649453000057,-8.29679899599995],[30.128639597000188,-8.29591621399993],[30.39501949700019,-8.25772390499992],[30.46750049600007,-8.07236498899988],[30.54075648600019,-8.097438445999956],[30.52749648300005,-8.059406230999969],[30.272777486000166,-7.843865422999954],[30.268753502000095,-7.771545859999947],[30.156610511000054,-7.792237425999929],[30.096279583000182,-7.841092856999978],[30.04492120000009,-7.993446727999981],[29.964988093000045,-8.002325399999961],[29.89952060800016,-7.945153346999973],[29.69888672100012,-8.042403436999962],[29.580460608000124,-8.026434560999917],[29.58148738,-7.871846079999955],[29.426855610000132,-7.846470609999869],[29.344385333000105,-7.882947847999958],[29.2412352770001,-7.994644103999917],[29.155655276000175,-7.995551495999962],[29.013546613000017,-7.83021126899996],[28.851104645000134,-7.797147505999931],[28.73833140700009,-7.746610432999944],[28.672439678000103,-7.671867853999913],[28.65861946300015,-7.507474601999888],[28.685983265000118,-7.382552898999904],[28.741826571000104,-7.266095908999944],[28.81638855800003,-7.173680384999955],[28.886975919000065,-7.003094262999923],[28.90238409800014,-6.745807598999875],[28.879880526000136,-6.640526712999872],[28.866790508000122,-6.434293840999885],[28.800210537,-6.225489064999977],[28.845220519,-6.139527283999882],[28.91251664100014,-6.104500365999968],[29.193054581000126,-6.085104256999898],[29.181663574000083,-5.919282383999871],[29.324996466000187,-5.82262344999998],[29.350555571000086,-5.721242151999945],[29.18428685700013,-5.604252161999966],[29.112050691000036,-5.519682991999844],[29.057169473000044,-5.523603770999955],[29.01481506700003,-5.611881773999926],[28.85681885600019,-5.402965097999925],[29.038133785000127,-5.385832978999929],[29.064480532000175,-5.343497219999904],[28.955245354000112,-5.038695834999942],[28.87948547200017,-4.895985359999884],[28.668062546000158,-4.681038717999911],[28.580413816000032,-4.537378493999938],[28.372592491000034,-4.548929390999945],[28.140451491000192,-4.587892332999957],[28.019901451000067,-4.629340508999974],[27.852479473000074,-4.759696872999939],[27.686927497000056,-4.954997395999897],[27.441219549000152,-5.317711515999974],[27.26100544500008,-5.568894020999892],[26.95967652900009,-5.957470502999968],[26.80432549699998,-6.12357551599996],[26.624170570000103,-6.219814516999918],[26.320474604000026,-6.279853250999963],[26.061477483000033,-6.395669527999928],[25.729276509000044,-6.584140979999916],[25.45699859800004,-6.687111486999981],[25.113290444000086,-6.847905558999969],[24.99977349100004,-6.923636221999914],[24.87884945000019,-7.040001680999922],[24.396751548000054,-7.580638626999928],[24.124204578000047,-7.868302693999965],[24.009826468000085,-8.038415430999919],[23.965478489000077,-8.258806845999914],[23.85087758800006,-8.445231269999908],[23.453868576000104,-8.874845716999971],[23.321107444000063,-8.81529799499998],[23.149772458000143,-8.777226552999934],[22.991126501000167,-8.789916753999933],[22.788063497000167,-8.764535512999885],[22.69352954300001,-8.79917624199993],[22.635765489000107,-8.910478193999893],[22.591342576000045,-9.056420873999969],[22.527885534000177,-9.170635704999881],[22.37558752600006,-9.3102327819999],[22.280401460000178,-9.64653502199991],[22.051952521000032,-9.995528300999922],[21.956766455000093,-10.065326587999948],[21.810813549000102,-10.116088902999934],[21.602697598000077,-10.166470259999926],[21.63581047399998,-10.450725322999972],[21.61035977000006,-11.06116281099986],[21.685723940000173,-11.085022153999944],[21.76428625400007,-11.027999955999974],[21.94181670300003,-11.133726975999934],[22.00146783000008,-11.05207495299993],[22.084418001000188,-11.07437994299994],[22.120359129000178,-11.173602060999883],[22.288088086000073,-11.210284153999908],[22.50024361100003,-11.065281302999836],[22.45347952300017,-10.952601952999885],[22.537418538000054,-10.902720096999929],[22.650900245000173,-11.042412144999957],[22.73654472400011,-11.081358971999975],[22.901609781000047,-11.079907],[22.937611610000147,-11.15769342699997],[22.82922512199997,-11.294917325999904],[22.84983921500003,-11.423562912999898],[22.761429096000086,-11.424284384999908],[22.561058556999967,-11.505916903999946],[22.544748773000038,-11.565483473999961],[22.598827126000117,-11.611616365999964],[22.686387508000166,-11.571171534999905],[22.809095077,-11.563330161999943],[23.055440973000145,-11.51426654599993],[23.132965653000156,-11.583439191999958],[23.061641583000153,-11.636626343999922],[23.08322882200008,-11.708169173999977],[23.04527087200006,-11.774914407999972],[22.746990246000166,-11.994550267999955],[22.751642908,-12.12864968699995],[22.58090659800007,-12.278159753999887],[22.59791861500014,-12.39524643899989],[22.52876280700019,-12.510996740999872],[22.67078055400009,-12.755706956999916],[22.705429498000115,-12.860009850999916],[22.70782269800003,-13.000529884999878],[22.707521146000147,-13.00166671999989],[22.685000000000116,-13.001666666999881],[22.703333334000035,-13.09166666599998],[22.7725,-13.075],[22.88416666600017,-13.126666665999949],[22.972473829000137,-13.059999999999889],[23.016231093000044,-12.999166666999884],[22.73245716600013,-13.001666666999881],[22.76030146000005,-12.955233467999903],[22.929841545000045,-12.800643009999874],[23.01971046699998,-12.757644852999874],[23.236531707999973,-12.726116702999889],[23.3506183610001,-12.50238342699987],[23.551148818000115,-12.334013539999887],[23.56143865200005,-12.261101388999975],[23.450338354000053,-12.174592392999841],[23.435785515000077,-12.077198622999958],[23.462163885000166,-12.006934615999967],[23.53971955700007,-11.94702734699996],[23.620226525000078,-11.840733243999978],[23.72851421700011,-11.785237250999842],[23.90423328200012,-11.661962763999895],[23.971666667000136,-11.654166666999913],[24.023333334000142,-11.8125],[24.070000000000107,-11.806666666999945],[24.039166667000075,-11.77583333299998],[24.11666666600007,-11.6225],[24.038333333000026,-11.538333333999901],[24.035,-11.456666666999865],[24.1325,-11.3175],[24.23,-11.373333332999948],[24.33,-11.335833333999915],[24.285833333000085,-11.265833332999932],[24.285833333000085,-11.135],[24.193333333,-11.02916666699997],[24.320833333000166,-11.0525],[24.38000000000011,-11.08833333299998],[24.39833333399997,-11.26833333299993],[24.35,-11.36666666699989],[24.475,-11.46],[24.58500000000015,-11.45583333399992],[24.66583333300008,-11.3575],[24.741666667000118,-11.304166665999958],[24.985833333000016,-11.25],[24.959166667000034,-11.389999999999873],[24.77,-11.435833332999948],[24.50166666700011,-11.667499999999848],[24.439166667,-11.610833332999903],[24.34,-11.64916666699986],[24.246666667,-11.7325],[24.25666666700016,-11.749166665999894],[24.21000000000015,-11.81666666599989],[24.177500000000123,-12.085833333999972],[24.070000000000107,-12.09166666699997],[24.15416666700014,-12.1175],[24.243333333000066,-12.258333332999939],[24.15833333400019,-12.5441666669999],[24.325,-12.539166665999915],[24.4525,-12.559999999999889],[24.53916666700013,-12.5975],[24.632500000000107,-12.69416666699982],[24.66416666700019,-12.640833332999932],[24.56333333300006,-12.5975],[24.609166667000125,-12.525],[24.73000000000019,-12.440833332999944],[24.848333333000085,-12.4975],[24.80666666600007,-12.55166666599996],[24.8125,-12.634166666999874],[24.876666666000062,-12.775],[24.9725,-12.856666666999956],[25.009166667000102,-12.942499999999882],[24.89666666700009,-13.000833332999946],[24.7525,-13.01],[24.68333333300012,-13.1025],[24.565,-13.149166666999918],[24.49666666700017,-13.149166665999928],[24.248333333000062,-13.30833333299995],[24.204166667000038,-13.127499999999884],[24.273333334000085,-13.070833332999882],[24.280000000000143,-12.896666666999977],[24.22750000000019,-12.859166666999954],[24.1475,-12.8825],[24.129166666000117,-12.951666666999927],[24.039166666000142,-12.923333333999949],[24.0275,-13.01749999999987],[24.071666667000045,-13.11083333299996],[24.167500000000132,-13.190833333999876],[24.215000000000146,-13.294166666999843],[24.169166667000127,-13.346666666999965],[24.10750000000013,-13.315833332999944],[24.0675,-13.22166666599992],[24.016666667000038,-13.248333332999835],[24.0525,-13.331666665999933],[24.0425,-13.396666666999977],[23.93083333300018,-13.40666666699991],[23.904166666000094,-13.360833333999835],[23.93916666700011,-13.250833332999889],[23.872500000000116,-13.251666666999938],[23.86,-13.375],[23.93416666600001,-13.5625],[23.79833333400012,-13.65],[23.685833333000062,-13.65],[23.590000000000146,-13.6875],[23.53166666599998,-13.7625],[23.44083333400016,-13.7475],[23.332500000000152,-13.8025],[23.29500000000013,-13.70583333299993],[23.343333333000032,-13.653333332999864],[23.23416666700018,-13.535],[23.213333334000083,-13.3725],[23.30666666700006,-13.4191666669999],[23.35500000000019,-13.346666666999965],[23.503333333000057,-13.254166665999946],[23.596666667000136,-13.23916666599996],[23.72583333300014,-13.15],[23.72583333400007,-13.081666666999979],[23.655,-13.040833332999966],[23.601719855000056,-12.95025725399995],[23.59489268800013,-12.839693476999969],[23.370833334000167,-13.08333333399986],[23.29416666600008,-13.029166666999913],[23.405396899000095,-12.843729828999926],[23.175,-13.01833333399992],[23.23583333400012,-13.060833333999824],[23.229166666000083,-13.124166666999884],[23.15666666600015,-13.2175],[23.066952398000012,-13.179166665999844],[22.96916666700008,-13.2775],[22.975833333000082,-13.293333333999897],[23.05416666700006,-13.314999999999827],[23.06833333300017,-13.46],[23.18250000000012,-13.702499999999873],[23.193333334000158,-13.725],[23.239166666000074,-13.79],[23.216666667000084,-13.843333332999975],[23.240833333000182,-13.998333332999948],[23.228333333000137,-14.093333332999975],[23.2975,-14.200833332999935],[23.23916666700012,-14.2575],[23.239166666000074,-14.40083333299998],[23.27333333300004,-14.382499999999823],[23.28083333300009,-14.266666665999878],[23.393333334000033,-14.253333333999876],[23.456666667000093,-14.1725],[23.52833333400008,-14.1775],[23.55333333300007,-14.280833332999975],[23.605000000000132,-14.26833333299993],[23.660833334000188,-14.27],[23.6575,-14.23],[23.71916666700008,-14.1675],[23.72916666600014,-14.164166665999858],[23.8925,-14.045833332999905],[24.050000000000125,-14.04166666599997],[24.09916666600003,-13.980833332999964],[24.22750000000019,-13.945833333999872],[24.35583333400018,-13.9775],[24.4175,-14.020833332999871],[24.612500000000182,-14.07666666599988],[24.6575,-14.228333332999966],[24.72666666600003,-14.21666666599998],[24.872500000000116,-14.3425],[24.856666667000184,-14.420833332999962],[24.918333333000135,-14.530833332999862],[24.875833333000116,-14.590833332999978],[25.04583333400018,-14.651666666999972],[25.201666666,-14.887499999999875],[25.2125,-14.970833332999973],[25.08,-15.2075],[25.106666667000127,-15.241666666999834],[25.185833334,-15.2525],[25.253333333000057,-15.3525],[25.214166666000096,-15.389166666999927],[25.35583333400018,-15.541666665999912],[25.682500000000175,-15.770833333999974]],[[23.311666667000054,-13.9475],[23.419166665999967,-14.023333333999972],[23.40333333300009,-14.09416666699991],[23.299166666000076,-14.114999999999895],[23.311666667000054,-13.9475]],[[25.0275,-12.8525],[25.025833334000026,-12.68666666699994],[25.113333334000117,-12.6675],[25.133333334000042,-12.758333333999929],[25.04916666700018,-12.801666666999836],[25.0275,-12.8525]],[[24.650833333000094,-12.439166666999881],[24.604166666000083,-12.45499999999987],[24.49000000000018,-12.3875],[24.5825,-12.2175],[24.6575,-12.195],[24.671666667000068,-12.331666666999865],[24.650833333000094,-12.439166666999881]],[[29.875,-10.87499999999983],[29.906666667000138,-10.833333333999974],[30.0075,-10.839166666999972],[30.11416666700012,-10.809515246999922],[30.16000000000014,-10.877499999999884],[30.11416666700012,-10.9525],[30.150000000000148,-11.041666666999959],[30.26333333399998,-11.039379372999974],[30.3825,-11.095],[30.48166666700007,-11.1075],[30.570833333000166,-11.197499999999877],[30.688333333000173,-11.177499999999895],[30.736666666000076,-11.21666666699997],[30.729166667000072,-11.345833333999906],[30.808333333000064,-11.351666666999904],[30.791666667000015,-11.42583333399989],[30.6875,-11.51833333299993],[30.7525,-11.695833332999882],[30.664166667000075,-11.7],[30.655,-11.808333333999883],[30.568333334000158,-11.794166666999956],[30.543333334000067,-11.928333332999955],[30.5775000000001,-12.071666666999931],[30.495,-12.099166666999963],[30.481666666000137,-12.188333332999889],[30.36833333300018,-12.24166666699989],[30.19833333300005,-12.189166666999938],[30.16000000000014,-12.229166666999902],[30.19,-12.305],[30.105,-12.350833333999958],[29.96,-12.253333332999944],[29.878333333000114,-12.305833332999896],[29.816666667000163,-12.2775],[29.787050555000064,-12.403590747999829],[29.67826049300004,-12.361833781999962],[29.529729480000185,-12.378451407999819],[29.46149056200005,-12.306056574999957],[29.57916666600005,-12.155833332999975],[29.562414257000114,-12.11333333399989],[29.62833333300017,-11.944166666999877],[29.595,-11.889166665999937],[29.596666667000136,-11.669166665999967],[29.66500000000019,-11.625],[29.737500000000125,-11.501666666999938],[29.705833333000044,-11.44166666599989],[29.605833333000135,-11.468333333999965],[29.54166666700013,-11.3625],[29.575,-11.241666666999834],[29.525,-11.208333332999871],[29.616666667000118,-11.1375],[29.65,-11.054166665999901],[29.716666667000084,-11.05],[29.804166667000118,-10.91666666599997],[29.875,-10.87499999999983]],[[24.626666667,-12.138333332999935],[24.608333333000132,-11.8975],[24.65,-11.921666666999954],[24.661666667000134,-12.1075],[24.626666667,-12.138333332999935]],[[25.10833333300019,-11.903333333999967],[25.10083333300014,-11.934166666999886],[24.943333333000055,-12.0225],[24.86916666700006,-12.0875],[24.835,-12.033333333999906],[25.000833334000106,-11.975833332999969],[25.10833333300019,-11.903333333999967]],[[31.872500000000116,-10.583333333999917],[31.80750000000012,-10.518333333999976],[31.607020897000098,-10.56916666799998],[31.55670444200007,-10.480833332999964],[31.5775000000001,-10.3975],[31.653333334000138,-10.384166665999942],[31.744166666000126,-10.25666666699982],[31.844166666999968,-10.2275],[31.84583333300003,-10.185833332999948],[31.9825,-10.125833332999889],[31.961666667000145,-10.061666666999827],[31.87416666600018,-10.000833333999935],[31.947500000000105,-9.938333332999889],[31.918333333000135,-9.82583333399998],[31.940833334000104,-9.7325],[31.99083333300007,-9.66666666599997],[32.085,-9.624999999999886],[32.039166667000075,-9.54333333299985],[32.234166667000125,-9.415833332999966],[32.208333333000155,-9.349166666999963],[32.254166666000174,-9.258333332999882],[32.413333333000026,-9.276666666999972],[32.52333333300015,-9.359166666999954],[32.629166667000106,-9.601666666999904],[32.70750000000015,-9.631666666999934],[32.65833333300003,-9.758333332999882],[32.738333333000185,-9.758333332999882],[32.67583333300007,-9.928333332999841],[32.5775000000001,-10.0725],[32.523333334000085,-9.9725],[32.55250000000012,-9.875833332999946],[32.483333333000076,-9.793333332999964],[32.406666667000025,-9.81166666699994],[32.30500000000012,-9.876666666999881],[32.19166666700016,-9.88666666599994],[32.18583333300012,-9.985],[32.12500000000017,-10.045],[32.17916666700012,-10.1325],[32.141666667000095,-10.16583333299991],[32.12166666600007,-10.273333332999925],[32.020833333000155,-10.504166665999946],[31.9675,-10.555],[31.872500000000116,-10.583333333999917]],[[28.45636587200005,-9.525917618999927],[28.352811213000052,-9.499637375999953],[28.374205570000186,-9.430878111999903],[28.328703862000168,-9.372732837999934],[28.36036719500015,-9.200435568999978],[28.33594647400008,-9.1473998969999],[28.6712198460001,-8.747061500999962],[28.725358396000104,-8.713933247999819],[28.887430618999986,-8.47624498499988],[29.0125,-8.541666666999902],[29.150000000000148,-8.645833333999974],[29.108333333000132,-8.804166665999901],[29.016666667000095,-9],[28.945833333000053,-9.025],[28.725,-9.312499999999886],[28.729166666000026,-9.493333332999953],[28.70000000000016,-9.536666666999963],[28.741666667,-9.645],[28.741666667,-9.856666665999967],[28.708333333000155,-9.975],[28.640833333000046,-10.071666666999874],[28.6366666670001,-10.317499999999882],[28.577500000000157,-10.225],[28.58450595500011,-10.04272575099992],[28.463125595000065,-10.02276328399995],[28.417398457000047,-9.961799689999964],[28.371671487000015,-9.66205679799998],[28.33793248300003,-9.568268497999952],[28.37172404200004,-9.52015989399996],[28.45636587200005,-9.525917618999927]],[[33.56000000000017,-9.4925],[33.455,-9.564166665999892],[33.34833333300003,-9.486666666999895],[33.31916666600017,-9.333333332999871],[33.26083333300011,-9.309166665999953],[33.25916666600017,-9.230833332999964],[33.156666667000025,-9.202499999999816],[33.123333333000176,-9.141666665999935],[33.21916666700014,-9.0425],[33.275833333000094,-8.953333333999979],[33.42666666700012,-8.986666666999952],[33.5150000000001,-8.9525],[33.44000000000011,-8.859166666999954],[33.56500000000017,-8.875],[33.60333333300014,-8.9925],[33.42833333300018,-9.068333332999885],[33.5150000000001,-9.160833332999914],[33.535,-9.274166666999974],[33.5083333340001,-9.315833333999933],[33.55750000000012,-9.395833333999917],[33.56000000000017,-9.4925]],[[34.14916666600004,-9.509166665999942],[34.006666667,-9.405833332999975],[33.9575,-9.263333332999878],[33.895833334000145,-9.235],[33.81166666700011,-9.115],[33.750000000000114,-9.195833332999939],[33.68,-9.195],[33.60583333300019,-9.133333332999939],[33.685833333000176,-9.06083333399988],[33.7225,-8.9191666669999],[33.86083333300013,-8.950833332999878],[33.982500000000186,-8.939166666999938],[34.125000000000114,-9.109166665999908],[34.2075,-9.117499999999836],[34.30333333300007,-9.054999999999893],[34.375,-9.095],[34.46083333300015,-9.194166666999877],[34.545000000000186,-9.18333333299995],[34.57500000000016,-9.301666666999893],[34.62583333300012,-9.3],[34.7325,-9.1775],[34.8075,-9.034166666999909],[34.810000000000116,-8.965833332999864],[34.934166667000056,-8.95916666599993],[34.995,-8.984166665999851],[35.10083333300008,-8.954166666999981],[35.13416666700016,-9.063333332999889],[35.278333334000024,-9.109166666999897],[35.335833333000096,-9.21333333299998],[35.33666666600004,-9.2125],[35.335833333000096,-9.21333333299998],[35.30666666600007,-9.455833333999976],[35.213333333000094,-9.461666666999974],[35.22,-9.5508333329999],[35.31333333300006,-9.566666666999936],[35.29750000000013,-9.644166666999979],[35.35,-9.650833332999866],[35.34583333300003,-9.68333333299995],[35.326666667000154,-9.82583333399998],[35.24166666600007,-9.8575],[35.11583333400017,-9.778333332999921],[34.97083333300003,-9.889999999999873],[34.950833333000105,-9.795],[34.82250000000016,-9.821666665999942],[34.70833333300004,-9.785833332999971],[34.615,-10.044166665999967],[34.565833333000114,-10.03916666699996],[34.49166666700012,-9.901666665999926],[34.36166666600013,-9.724166666999963],[34.25250000000011,-9.640833332999875],[34.237500000000125,-9.590833332999978],[34.21666666600015,-9.519166666999922],[34.14916666600004,-9.509166665999942]],[[33.57666666600005,-10.01333333299982],[33.636666667000156,-10.014166665999937],[33.694166666,-10.090833332999978],[33.61333333300007,-10.145],[33.57666666600005,-10.01333333299982]],[[33.481666667000184,-10.151666665999869],[33.38750000000016,-10.125833332999889],[33.44333333300011,-10.048333332999903],[33.481666667000184,-10.151666665999869]],[[33.79000000000019,-10.345833332999916],[33.84583333299997,-10.43583333399988],[33.959166667000034,-10.46],[33.96000000000015,-10.6025],[33.995,-10.681666666999888],[33.98,-10.76],[33.915,-10.740833332999898],[33.83,-10.650833332999923],[33.76166666700004,-10.687499999999886],[33.70083333300016,-10.665833333999899],[33.7116666660001,-10.570833332999939],[33.79000000000019,-10.345833332999916]],[[34.10833333300019,-10.574999999999818],[34.1275,-10.715833333999967],[34.05416666600007,-10.697499999999877],[34.10833333300019,-10.574999999999818]],[[34.173333333000016,-10.790833332999966],[34.21,-10.834166665999874],[34.225833333000026,-10.990833332999955],[34.21416666700014,-11.064999999999827],[34.15333333300009,-11.163333333999958],[34.054166667000175,-11.168333332999964],[34.0375,-11.095],[34.0925,-10.9725],[34.1175,-10.8325],[34.173333333000016,-10.790833332999966]],[[34.1225,-11.299999999999898],[34.1400000000001,-11.434166665999896],[34.04500000000013,-11.44],[34.1225,-11.299999999999898]],[[34.03166666700014,-11.49499999999989],[33.96583333300009,-11.570833332999939],[33.9591666660001,-11.668333333999954],[33.923333334000176,-11.724166666999963],[33.911666666000144,-11.86416666599996],[33.729166667000015,-12.14249999999987],[33.68750000000017,-12.11416666699995],[33.8216666670001,-11.961666666999918],[33.705,-11.895],[33.7975,-11.798333333999835],[33.74500000000012,-11.655],[33.90166666600015,-11.5],[34.0125000000001,-11.449166666999872],[34.03166666700014,-11.49499999999989]],[[34.82000000000011,-10.684999999999889],[34.87916666600012,-10.71333333299998],[34.9025,-10.824166666999929],[34.968333333000146,-10.970833333999963],[34.99583333300018,-11.110833333999949],[34.975,-11.220833332999916],[34.87583333300006,-11.2],[34.845,-11.053333333999888],[34.788333333000026,-10.998333333999938],[34.779166667000084,-10.878333332999944],[34.85500000000019,-10.741666666999947],[34.82000000000011,-10.684999999999889]],[[33.40083333400008,-8.853333333999956],[33.265833334000035,-8.817499999999825],[33.50416666700005,-8.76083333299988],[33.5025,-8.828333332999932],[33.40083333400008,-8.853333333999956]],[[31.69000000000011,-8.3575],[31.631666666000115,-8.26166666599994],[31.563333334000163,-8.316666666999879],[31.49666666700017,-8.28],[31.498333333000062,-8.124166666999884],[31.535833333000028,-8.085833332999869],[31.628333333000114,-8.131666666999877],[31.693333333000112,-8.244166665999956],[31.69000000000011,-8.3575]],[[31.11916666700006,-7.978333332999966],[30.995833333000064,-7.88583333299988],[30.98083333400018,-7.805],[31.070000000000107,-7.765833332999819],[31.16416666700013,-7.626666666999881],[31.159166667000136,-7.496666665999953],[31.30416666600007,-7.720833332999916],[31.2675,-7.773333332999869],[31.17416666600002,-7.786666666999963],[31.120833334000054,-7.880833332999885],[31.11916666700006,-7.978333332999966]],[[31.51000000000016,-7.356666666999899],[31.61166666600019,-7.381666666999934],[31.823333333000164,-7.469999999999857],[32.05833333300018,-7.62916666599989],[32.18166666700017,-7.764999999999873],[32.31,-7.846666665999919],[32.43000000000018,-7.989166666999949],[32.50083333300012,-8.005],[32.61833333300012,-8.165],[32.66583333300008,-8.18],[32.79916666600013,-8.335],[32.93,-8.416666666999902],[32.8275,-8.508333332999939],[32.586666667000145,-8.47916666599997],[32.51083333300011,-8.411666666999963],[32.53750000000019,-8.360833333999949],[32.4175,-8.289166665999971],[32.43333333300018,-8.238333332999957],[32.366666666000185,-8.139166666999927],[32.2025,-8.0775],[32.09333333300009,-8.1475],[32.0783333330001,-8.090833333999967],[31.983333334000065,-8.045],[31.87166666700017,-7.893333332999873],[31.79083333400007,-7.8175],[31.77666666700003,-7.757499999999879],[31.700000000000102,-7.749166666999884],[31.68416666700017,-7.690833333999876],[31.54583333300019,-7.604166665999969],[31.549166666000076,-7.553333332999955],[31.446666666,-7.516666665999878],[31.38416666700016,-7.40416666699997],[31.51000000000016,-7.356666666999899]],[[31.955833333000157,-8.295],[31.716666667000027,-8.0775],[31.66500000000019,-7.928333332999955],[31.689166667000165,-7.851666665999915],[31.819166667000047,-7.9883333329999],[31.91750000000019,-8.137499999999875],[31.955833333000157,-8.295]],[[31.55166666600013,-7.244166666999888],[31.463333334000026,-7.144166665999876],[31.36583333300007,-7.1225],[31.383333334000042,-7.056666665999899],[31.5,-7.074999999999875],[31.545,-7.1375],[31.55166666600013,-7.244166666999888]],[[31.245833333000178,-7.11],[31.035,-7.070833333999929],[31.07416666600011,-6.989999999999895],[31.1425,-6.96],[31.064166667000052,-6.889166666999927],[30.96583333300015,-6.9375],[30.9075,-6.86083333299996],[31.02833333300009,-6.8475],[31.0683333340001,-6.762499999999818],[31.044166665999967,-6.7075],[31.13166666700016,-6.6525],[31.258333334000156,-6.85],[31.321666666000112,-6.845],[31.33,-6.671666666999897],[31.430000000000177,-6.776666666999915],[31.405,-6.886666666999929],[31.332500000000152,-6.93],[31.319166666000058,-7.048333333999892],[31.245833333000178,-7.11]],[[30.884166667000102,-6.726666665999971],[30.916666666000026,-6.55833333299995],[30.991666666000185,-6.55],[31.048333333000016,-6.635833332999937],[30.884166667000102,-6.726666665999971]],[[30.0125,-6.425],[29.78916666700013,-6.241666666999947],[29.82,-6.16],[30.021666667000034,-6.379999999999882],[30.0125,-6.425]],[[30.47583333400013,-6.129166666999936],[30.530833334000192,-5.9825],[30.645,-6.066666666999879],[30.579166666000162,-6.164166666999961],[30.47583333400013,-6.129166666999936]],[[30.419166666000024,-3.831666666999865],[30.474166667000134,-3.866666666999947],[30.490833333000182,-3.944999999999879],[30.567500000000166,-3.9775],[30.68666666600018,-4.124166666999884],[30.780833333000032,-4.078333333999979],[30.824166667000043,-4.130833332999941],[30.76833333400009,-4.1775],[30.769166666000103,-4.359166666999954],[30.8325,-4.375],[30.786666667000077,-4.511666666999872],[30.785,-4.7025],[30.84916666700019,-4.726666666999904],[30.92333333300013,-4.6825],[30.850833333000026,-4.603333333999899],[30.9625,-4.601666666999961],[31.0216666660001,-4.67],[31.138333333000162,-4.731666665999967],[31.12500000000017,-4.7775],[31.005833334000158,-4.840833332999978],[31.021666667000034,-4.927499999999895],[31.098333333000085,-4.908333333999906],[31.256666666000115,-4.764166666999927],[31.36583333300007,-4.77916666699997],[31.405,-4.706666666999979],[31.308333334000054,-4.619166666999888],[31.209166667000034,-4.580833333999976],[31.19583333300011,-4.420833332999962],[31.30500000000012,-4.439999999999884],[31.31333333400005,-4.195],[31.271666667000147,-4.094166665999978],[31.288333333000026,-3.9725],[31.243333334,-3.8875],[31.2558333340001,-3.793333332999907],[31.161666666000144,-3.789166666999961],[31.118333334000113,-3.840833333999967],[31.11083333300013,-3.9625],[31.058333333000178,-3.978333333999956],[30.806666667000172,-3.759166666999931],[30.950833333000162,-3.744166666999888],[31.0525,-3.693333333999874],[31.1325,-3.58],[31.21416666700003,-3.606666666999956],[31.2775,-3.7225],[31.359166667000068,-3.785833332999857],[31.3925,-3.920833332999962],[31.453333334000092,-4.003333332999944],[31.617500000000177,-3.951666666999927],[31.565,-4.093333332999919],[31.545,-4.259166665999942],[31.51416666700004,-4.37],[31.55250000000018,-4.414166666999904],[31.624166667000168,-4.3525],[31.610833333000073,-4.193333333999874],[31.62916666600006,-4.094166666999968],[31.70583333400009,-4.074166666999929],[31.769166666000046,-4.2],[31.73916666600013,-4.406666666999968],[31.77583333400014,-4.520833332999928],[31.645,-4.550833333999947],[31.65083333300015,-4.624166665999951],[31.820000000000164,-4.73916666599996],[31.725000000000193,-4.77916666699997],[31.663333333000026,-4.705833333999919],[31.53833333300014,-4.7325],[31.565,-4.8575],[31.490833333000182,-4.910833332999971],[31.4575,-4.99166666699989],[31.402500000000146,-4.9775],[31.268333333000044,-5.028333332999978],[31.278333333000035,-5.226666666999904],[31.391666667000038,-5.345833332999973],[31.3675,-5.448333333999869],[31.484166667000125,-5.486666666999895],[31.43333333400011,-5.556666666999945],[31.354166667000072,-5.515833332999932],[31.305833333000066,-5.333333332999871],[31.238333333000128,-5.27083333399986],[31.024166667000145,-5.270833332999928],[30.996666667000113,-5.288333332999969],[31.071666667000102,-5.451666665999824],[31.079166666000106,-5.57],[31.162500000000193,-5.606666665999967],[31.15416666699997,-5.692499999999825],[31.06500000000017,-5.66],[31.03,-5.5775],[31.030833333000146,-5.4925],[30.985000000000127,-5.374166666999827],[30.92750000000018,-5.309999999999889],[31.050000000000182,-5.1725],[31.1325,-5.18333333299995],[31.18833333300006,-5.148333333999972],[31.196666666000056,-5.054166666999947],[31.12416666600018,-4.993333332999953],[31.031666667000025,-4.993333332999953],[30.946666667000045,-5.0375],[30.875833333000173,-5.139166665999937],[30.84916666700019,-4.983333332999905],[30.87750000000011,-4.814999999999827],[30.85916666600008,-4.781666665999978],[30.739166666000187,-4.748333332999835],[30.73,-4.656666665999978],[30.669166666000137,-4.609166665999908],[30.652500000000146,-4.416666666999902],[30.73583333300013,-4.327499999999873],[30.70416666600005,-4.169166666999956],[30.64,-4.145833333999974],[30.519166667000036,-4.214166666999972],[30.47916666700013,-4.155833332999975],[30.500833333000173,-4.091666665999981],[30.476666666000142,-4.015],[30.34916666600003,-4.035],[30.348333333000085,-3.960833332999869],[30.419166666000024,-3.831666666999865]],[[30.074166667000043,-3.930833332999953],[30.073333333000164,-3.841666666999913],[30.18,-3.682499999999891],[30.21833333400008,-3.6975],[30.179166667000118,-3.868333333999942],[30.074166667000043,-3.930833332999953]],[[30.111666667,-3.583333332999871],[30.146666667000147,-3.5275],[30.295000000000186,-3.45583333299993],[30.2325,-3.398333332999869],[30.49916666600018,-3.218333332999919],[30.583333334000145,-3.1725],[30.611666667000122,-3.090833333999967],[30.703333333000103,-3.17],[30.741666667000175,-3.236666666999895],[30.5,-3.24166666699989],[30.4525,-3.348333332999971],[30.3925,-3.384166666999931],[30.3675,-3.4625],[30.261666667000043,-3.516666666999868],[30.195833333000166,-3.609166666999954],[30.111666667,-3.583333332999871]],[[30.529166667000027,-5.525],[30.416666667000186,-5.494166666999888],[30.498333333000062,-5.427499999999895],[30.529166667000027,-5.525]],[[29.99916666600012,-4.823333332999937],[29.954166667000152,-4.6925],[30.01583333400015,-4.61666666699989],[30.015833333000046,-4.541666666999902],[29.920833333000076,-4.451666666999927],[29.985000000000184,-4.385833333999869],[30.120833333000178,-4.291666665999969],[30.193333334000158,-4.285],[30.1525,-4.425],[30.169166667000184,-4.483333332999905],[30.080000000000155,-4.545],[30.125,-4.661666665999974],[30.0675,-4.67666666599996],[30.04333333400018,-4.783333332999916],[29.99916666600012,-4.823333332999937]]]]},"properties":{"objectid":153,"eco_name":"Central Zambezian wet miombo woodlands","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Afrotropic","eco_biome_":"AF07","nnh":3,"eco_id":39,"shape_leng":454.856079642,"shape_area":84.0652569766,"nnh_name":"Nature Could Recover","color":"#FFAA01","color_bio":"#FEAA01","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":1024260.7271360642,"percentage":4.777554802776616}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-55.29526551499998,-22.89863089999983],[-55.437812518999976,-22.866463669999973],[-55.569351569999924,-22.93967070899987],[-55.52480359899994,-23.032328792999976],[-55.57530557099989,-23.10954389099993],[-55.74485353499995,-23.237953138999956],[-55.78676657199992,-23.39071248699986],[-55.74818752099992,-23.52139591299988],[-55.624118589999966,-23.699536668999883],[-55.56756555399994,-23.84819223599993],[-55.4039804759999,-23.972003171999972],[-55.28067060999996,-23.995626895999976],[-55.26551059699989,-23.887632107999877],[-55.09799557999992,-23.71290110999996],[-55.24599048599998,-23.612055247999933],[-55.279663607999964,-23.743157433999897],[-55.42885947299993,-23.763786470999946],[-55.43089661099992,-23.684626603999902],[-55.341312505999895,-23.61167236299997],[-55.343402617999914,-23.53250528699988],[-55.268001530999925,-23.437805035999872],[-55.16553863199988,-23.521853731999897],[-55.03486258199996,-23.547038333999865],[-55.02759161599988,-23.431053412999972],[-54.958652473999905,-23.43495518899988],[-54.916435509999985,-23.498796792999883],[-54.79005451499995,-23.570883339999966],[-54.71441655599995,-23.67905280599996],[-54.563232503999984,-23.715089121999938],[-54.561000570999965,-23.622087715999953],[-54.64214359599998,-23.488802378999935],[-54.74876056599993,-23.482031644999893],[-54.814498491999984,-23.356518344999927],[-54.69469460799996,-23.332179476999954],[-54.790428515999906,-23.122092438999914],[-54.94239862299992,-23.066354290999982],[-55.15476654499997,-23.064977143999897],[-55.24987449199989,-23.04974605299998],[-55.33120761899994,-23.267315951999933],[-55.41173960399993,-23.220878196999934],[-55.287620548999826,-23.024810225999943],[-55.29526551499998,-22.89863089999983]]],[[[-54.55342450299992,-22.64396521199984],[-54.61636354399997,-22.602297429999965],[-54.787540614999955,-22.56074045699995],[-54.8231925369999,-22.6759386519999],[-54.72545250499991,-22.795338191999917],[-54.71656047899995,-22.88706538199989],[-54.66533263399998,-22.89218420999987],[-54.61743558899991,-22.76761756199994],[-54.5687025339999,-22.775033366999878],[-54.59501651299985,-22.920012631999953],[-54.50563055599997,-23.04053652099998],[-54.46356949599988,-23.017017737999936],[-54.41273861699989,-22.854459275999886],[-54.24289359799997,-22.865803678999896],[-54.32290657599998,-22.6511429709999],[-54.41658758699998,-22.70641977799994],[-54.55342450299992,-22.64396521199984]]],[[[-54.98511850099993,-22.39875598699996],[-55.18885054899994,-22.40991967599996],[-55.2519345959999,-22.544771421999883],[-55.38759251399995,-22.542444437999904],[-55.31236660899998,-22.81843318499989],[-55.15402256799996,-22.71606148099994],[-55.125022523999974,-22.643479228999865],[-55.04887762699997,-22.657665599999916],[-54.94938661599991,-22.556786880999937],[-55.02444052399994,-22.527715422999904],[-55.02437950299998,-22.438182950999874],[-54.98511850099993,-22.39875598699996]]],[[[-54.49372054199995,-21.983051474999854],[-54.54588347299995,-21.976856577999854],[-54.535228564999954,-22.094972345999963],[-54.62200959399996,-22.252225901999907],[-54.557662560999916,-22.313397701999918],[-54.50289554099999,-22.24608716399996],[-54.45025651899988,-22.27407182399992],[-54.422527506999984,-22.15543922799992],[-54.33651358999998,-22.108295548999934],[-54.33313752699996,-22.02099031599994],[-54.40846250499993,-22.03813432499993],[-54.49372054199995,-21.983051474999854]]],[[[-49.93609253799997,-20.8963427569999],[-49.96469846499997,-20.864240737999978],[-50.06499849699992,-20.98406708499988],[-50.02520759099991,-21.018033070999934],[-50.08195860799998,-21.14873275799988],[-50.21086456699993,-21.29601989599996],[-50.21318451099995,-21.40621476499996],[-50.11145754299986,-21.44119680599988],[-50.101982471999975,-21.563529006999943],[-49.96188750999988,-21.59572322599996],[-49.82399346699992,-21.50635034499993],[-49.784633558999985,-21.602166059999945],[-49.719703480999954,-21.589118788999883],[-49.65482755099998,-21.501534606999883],[-49.41199157799991,-21.367254673999923],[-49.34015246499996,-21.275844822999943],[-49.38000858199996,-21.221440905999884],[-49.40161159599995,-21.017226228999903],[-49.508609607999915,-21.02185303999994],[-49.578399512999965,-20.957199396999954],[-49.60901257099988,-21.035307],[-49.80172358899995,-21.12820715299989],[-49.86281156999985,-21.11466887099988],[-49.875530604999824,-21.003964716999974],[-49.8406865309999,-20.908521326999846],[-49.93609253799997,-20.8963427569999]]],[[[-43.7673185729999,-21.362775048999936],[-43.79684851999991,-21.170589743999926],[-43.94708256799993,-21.078627692999873],[-44.0983465839999,-21.070732275999887],[-44.21953951599994,-21.025188533999938],[-44.26269558899992,-20.911191129999963],[-44.321426577999944,-20.901864586999977],[-44.44215347699986,-20.945998156999963],[-44.41956759999994,-21.02288887499998],[-44.33969460099996,-21.090996028999882],[-44.44279050099988,-21.18396089099997],[-44.71092255499997,-21.284333510999886],[-44.89607661699995,-21.256575832999886],[-45.0339815559999,-21.261759704999974],[-45.084171553999965,-21.34278521599998],[-44.98400462599989,-21.35852927999997],[-44.956077464999964,-21.530913847999955],[-44.982383564999964,-21.704879409999933],[-44.83783362199995,-21.592881425999906],[-44.78494649499993,-21.456403086999956],[-44.819076598999914,-21.36513388399993],[-44.5443875499999,-21.379602054999964],[-44.46195253799988,-21.47542598399997],[-44.48319261599994,-21.564725103999933],[-44.54351449099988,-21.601483940999913],[-44.63891261899994,-21.571930522999878],[-44.72034850799997,-21.5956724319999],[-44.693897568999944,-21.65898698099994],[-44.755844526999965,-21.76033441699991],[-44.751865469999984,-21.806752893999942],[-44.623725615999945,-21.854308123999942],[-44.507297460999894,-21.79558048699994],[-44.42815050199988,-21.79309458299997],[-44.40663147399994,-21.87414121599994],[-44.23627448899998,-21.680113567999854],[-44.23634355499996,-21.761640316999944],[-44.31917955799992,-21.894938058999912],[-44.19956946399998,-21.81112757699998],[-44.145584474999964,-21.832042436999927],[-44.04352960699998,-21.767320062999943],[-43.922092593999935,-21.61037546299991],[-43.912147465999965,-21.47037001999996],[-44.01200459899991,-21.36402814399986],[-43.7673185729999,-21.362775048999936]]],[[[-50.71712850199998,-20.681703840999887],[-50.7134396269999,-20.62305817899994],[-50.7761345859999,-20.53348832399996],[-50.87399649099996,-20.60346313399998],[-50.91947552399995,-20.72437661299989],[-50.888706562999914,-20.78527499599994],[-50.821140544999935,-20.782916159999957],[-50.73015247099994,-20.840504863999968],[-50.64854056199988,-20.791681619999963],[-50.58495359999989,-20.86853126699998],[-50.447769505999986,-20.936879483999974],[-50.40505247699997,-20.844652900999904],[-50.498092607999865,-20.771262799999874],[-50.59040854299997,-20.741385506999904],[-50.6561395949999,-20.670340662999934],[-50.71712850199998,-20.681703840999887]]],[[[-60.90527348299992,-14.74722167199991],[-60.901328624999906,-14.822511949999978],[-60.96472548499992,-14.943806134999932],[-60.89964252099986,-14.953779258999873],[-60.86629863899992,-14.782938637999905],[-60.90527348299992,-14.74722167199991]]],[[[-61.012245510999946,-15.065963153999917],[-61.02622551999997,-14.93480464199996],[-60.97068049099994,-14.899276100999828],[-60.95432253699988,-14.786179416999914],[-61.10830647999995,-14.702933706999943],[-61.16769461099989,-14.805301890999942],[-61.10361848199983,-14.872136671999954],[-61.093402617999914,-15.00960172899994],[-61.012245510999946,-15.065963153999917]]],[[[-59.598358589999975,-14.598124377999909],[-59.624198487999934,-14.519762803999924],[-59.767391569999916,-14.38898734399993],[-59.89620549599988,-14.383288487999948],[-59.93729760899993,-14.554352402999939],[-59.90124151099991,-14.650076084999966],[-59.767368602999966,-14.773927085999844],[-59.6840476239999,-14.688321535999933],[-59.568481630999884,-14.783133600999975],[-59.50210550699995,-14.78196365499997],[-59.47130150999993,-14.71370998499998],[-59.51750155499991,-14.577702038999917],[-59.598358589999975,-14.598124377999909]]],[[[-61.34732449599994,-13.964725244999897],[-61.33649457399986,-14.127762313999938],[-61.27009950799993,-14.033743511999944],[-61.34732449599994,-13.964725244999897]]],[[[-60.66936163299988,-13.702642577999882],[-60.70645155499989,-13.671628530999897],[-60.823223535999944,-13.767386074999933],[-60.81899251899989,-13.882520734999957],[-60.7486955089999,-14.007544196999902],[-60.77261360499995,-14.122012830999893],[-60.76142460199992,-14.21073393599994],[-60.80225754599991,-14.31941872099992],[-60.74911460399994,-14.387189257999921],[-60.79729462199998,-14.475446675999876],[-60.723842494999985,-14.505449529999964],[-60.704185590999884,-14.559927206999873],[-60.57402452499991,-14.653186105999907],[-60.521942563999914,-14.648411102999887],[-60.45755362199998,-14.739267413999926],[-60.38698151799997,-14.771646369999871],[-60.32233055699999,-14.890012421999927],[-60.25529863299994,-14.889366679999966],[-60.25679748499988,-14.814607479999893],[-60.301013532999946,-14.63201542999991],[-60.45461660299998,-14.461773444999892],[-60.44958159399994,-14.3905079889999],[-60.51576660999996,-14.26890316999993],[-60.63832059599997,-14.27317995199985],[-60.65260654399992,-14.214183591999813],[-60.520244557999945,-14.08529825099987],[-60.42322553799988,-14.084426365999946],[-60.38644457299995,-14.034134611999889],[-60.4679984789999,-13.883953537999844],[-60.54679457199995,-13.862962736999975],[-60.66936163299988,-13.702642577999882]]],[[[-61.60161953599999,-13.605785998999977],[-61.629138497999975,-13.638064875999873],[-61.55276460799996,-13.834219682999958],[-61.47814555299988,-13.883906598999943],[-61.44702153499992,-13.772539938999842],[-61.55739259199993,-13.61141947599998],[-61.60161953599999,-13.605785998999977]]],[[[-61.42432753199995,-13.556113163999953],[-61.45687060599994,-13.667531958999973],[-61.267970503999834,-13.629960245999882],[-61.29592163699988,-13.581673442999886],[-61.42432753199995,-13.556113163999953]]],[[[-62.36244555899992,-13.12695586599989],[-62.43740056099995,-13.158798882999918],[-62.32343651699995,-13.324003680999965],[-62.310432496999965,-13.416173434999962],[-62.230739540999934,-13.552889483999877],[-62.102672609999956,-13.582248440999876],[-61.96846761099988,-13.539720508999892],[-61.950523632999875,-13.458093679999934],[-62.095245572999886,-13.47891550099996],[-62.17817360799995,-13.419599453999922],[-62.26592660299997,-13.404185301999973],[-62.25723658099997,-13.341264700999943],[-62.146266552999975,-13.325460790999898],[-62.157752609999875,-13.2512485929999],[-62.27483354799995,-13.111624023999923],[-62.36244555899992,-13.12695586599989]]],[[[-43.63994549499995,-12.857209959999977],[-43.812560565999945,-12.854332452999927],[-43.85414151099991,-12.914530107999894],[-43.93328059099997,-12.898660315999905],[-44.08343551299993,-12.941527379999968],[-44.135887618999845,-12.994104040999957],[-44.12155154699991,-13.081131162999895],[-44.15970647399985,-13.17697453799991],[-44.06697060499988,-13.326424709999912],[-44.017532463999885,-13.365834909999933],[-43.85020453099992,-13.375608375999946],[-43.750190488999976,-13.339678677999927],[-43.68231148999996,-13.18848372899987],[-43.78778047499998,-13.161035677999905],[-43.731414522999955,-13.085624700999915],[-43.59612255899992,-13.01804543899982],[-43.59360547299997,-12.949934931999906],[-43.63994549499995,-12.857209959999977]]],[[[-48.82025955499995,-10.205971570999964],[-48.89420353199995,-10.080277220999903],[-48.948516587999904,-10.132210822999923],[-48.90934761899996,-10.270753959999922],[-48.92184453399983,-10.320147676999909],[-48.85640751899996,-10.374782597999967],[-48.764503470999955,-10.381050417999973],[-48.785903474999884,-10.484404144999928],[-48.780441491999966,-10.602471800999979],[-48.81120257399982,-10.697862050999902],[-48.86665355699995,-10.75904105899997],[-48.863830531999895,-10.830122112999902],[-48.91754947899989,-10.976163699999972],[-48.846458534999954,-10.979081607999888],[-48.736709582999936,-10.855556159999878],[-48.65966061399996,-10.880178502999911],[-48.50964348999986,-10.850308417999827],[-48.63523055099989,-10.724081313999932],[-48.59785447199994,-10.588514926999892],[-48.63347655399991,-10.490192519999937],[-48.62383250399989,-10.375484665999977],[-48.55809759599998,-10.300489095999978],[-48.647567538999965,-10.133743704999915],[-48.72039051999997,-10.193858546999934],[-48.82025955499995,-10.205971570999964]]],[[[-43.52519958799985,-10.085077033999937],[-43.588340463999884,-10.067186364999827],[-43.66349746999998,-10.136812319999876],[-43.752769599999965,-10.146676813999932],[-43.716133474999936,-10.329561894999927],[-43.75164759899985,-10.404055723999875],[-43.76958453599997,-10.534861693999915],[-43.82889555399993,-10.637135496999974],[-43.884750544999974,-10.63839445899987],[-43.93902554699997,-10.707678599999895],[-43.92903146899994,-10.786876856999982],[-44.011955480999916,-10.877260762999924],[-43.97788958199993,-10.937765530999968],[-43.86386854199992,-11.02701134199998],[-43.73342148499995,-11.069257474999915],[-43.70747345999996,-10.988125010999852],[-43.65068053399989,-10.975422738999953],[-43.601097552999875,-11.046761955999898],[-43.5362395599999,-11.030440042999885],[-43.51607555099997,-10.906415703999926],[-43.546676537999986,-10.610236125999904],[-43.540222472999915,-10.392497582999965],[-43.506561587999954,-10.23990319099994],[-43.52519958799985,-10.085077033999937]]],[[[-43.32866658899985,-10.024763373999974],[-43.40499856999992,-9.971829140999887],[-43.43780550699995,-10.095619456999941],[-43.39289057499997,-10.472933845999876],[-43.388984608999976,-10.63255361399996],[-43.427749569999946,-10.94277522699997],[-43.42538453199984,-11.079799561999891],[-43.38719155199988,-11.201168178999978],[-43.31277450099998,-11.318024314999889],[-43.230529589999946,-11.105679861999931],[-43.17716955699996,-11.031563050999921],[-43.056518597999855,-10.967310565999924],[-42.93105357699994,-10.823762259999853],[-42.72965957799994,-10.73368781299996],[-42.67131851399989,-10.56714040299994],[-42.59518451399998,-10.49849211299994],[-42.51645245899988,-10.311735263999935],[-42.54837761999994,-10.24329182699995],[-42.74613554999996,-10.069108167999957],[-42.979286568999896,-9.924682275999885],[-43.02478756199997,-9.924689316999945],[-43.26378261199983,-10.015886770999884],[-43.32866658899985,-10.024763373999974]]],[[[-48.98027058999992,-8.75820399099996],[-49.013839608999945,-9.080674916999897],[-48.97401450499996,-9.187179569999955],[-49.006118535999974,-9.269920520999904],[-48.929313479999905,-9.341837417999898],[-48.99493456199997,-9.445373200999938],[-49.05981451599996,-9.460584007999842],[-49.08966062899992,-9.52955533699992],[-49.019271585999945,-9.698998191999976],[-48.96554559799989,-9.770994213999927],[-48.859207576999836,-9.686694228999954],[-48.7682184979999,-9.77333092099991],[-48.69300851899993,-9.732758821999937],[-48.62892149299995,-9.579893694999896],[-48.674621472999945,-9.496462409999936],[-48.814125510999986,-9.428421471999968],[-48.81795453199982,-9.35733941299992],[-48.769889513999885,-9.230949197999962],[-48.80552651699992,-9.035029251999958],[-48.72290760599998,-8.860350724999876],[-48.7487106239999,-8.780204474999948],[-48.88014959499992,-8.807652357999928],[-48.98027058999992,-8.75820399099996]]],[[[-49.87528954099997,-8.08289047999989],[-49.93190762099994,-8.03926535599993],[-49.99661256099989,-8.094419451999897],[-50.05783062899991,-8.081795467999882],[-50.111045487999945,-8.312716732999945],[-50.09947946799997,-8.378194316999952],[-50.14804857299998,-8.557427234999977],[-50.13875555699997,-8.709072626999898],[-50.09246062999995,-8.750397421999935],[-49.996414579999964,-8.736524533999955],[-49.916473519999954,-8.821427344999961],[-49.858657498999946,-8.773111875999916],[-49.76139858799996,-8.801669858999901],[-49.688728492999985,-8.731431856999905],[-49.681892547999894,-8.553501653999831],[-49.7074204729999,-8.489249169999937],[-49.72261853899994,-8.32391009399987],[-49.76080347299995,-8.28376379599996],[-49.83592946499988,-8.303358505999938],[-49.869476523999936,-8.227586938999934],[-49.844093606999934,-8.136845628999936],[-49.87528954099997,-8.08289047999989]]],[[[-49.57830848599997,-7.564614774999825],[-49.619636464999985,-7.53821060599995],[-49.73942559599993,-7.561087837999935],[-49.93180854699983,-7.626922154999818],[-49.943397533999985,-7.719959603999939],[-49.98843349999993,-7.763595456999951],[-49.85106651199982,-7.899109708999958],[-49.70788550099991,-7.869177596999975],[-49.669799473999944,-7.815181544999973],[-49.714836612999875,-7.763540471999931],[-49.587161619999904,-7.655606033999902],[-49.57830848599997,-7.564614774999825]]],[[[-47.95440660999992,-6.520559549999973],[-47.887969465999845,-6.352078769999935],[-47.925033570999915,-6.226191971999924],[-47.898704503999966,-6.129959173999964],[-47.94831849799988,-6.025821737999877],[-47.95532258399987,-5.935359376999941],[-48.01860846799991,-5.902219678999927],[-48.07044249199993,-5.772836118999976],[-48.138275557999975,-5.80610087499997],[-48.149742504999836,-5.878276436999954],[-48.10823850499992,-6.0088398339999],[-48.09661062599997,-6.134826544999896],[-48.0470355249999,-6.208063423999931],[-48.00167048499992,-6.495469495999942],[-47.95440660999992,-6.520559549999973]]],[[[-48.98027058999992,-8.75820399099996],[-48.96565255099995,-8.630827225999951],[-49.160156625999946,-8.578696984999965],[-49.25282258899995,-8.533067244999927],[-49.29460956199995,-8.463165189999927],[-49.36532549899994,-8.417486331999953],[-49.41493261999989,-8.537247802999957],[-49.51510658899997,-8.637852768999949],[-49.59628649499996,-8.752174552999975],[-49.588905557999965,-8.81740285799998],[-49.78554550999985,-8.91309183899989],[-49.830543589999934,-9.023413944999902],[-49.92175260999994,-9.12315808999989],[-49.950908556999934,-9.195253018999892],[-50.052982535999945,-9.279822901999978],[-50.179904498999974,-9.276593186999946],[-50.276515488999905,-9.351771649999932],[-50.3383335339999,-9.538615670999945],[-50.246383552999816,-9.612995170999966],[-50.207740464999915,-9.699888181999881],[-50.29098550399988,-9.828095258999895],[-50.31113861599982,-9.929841001999876],[-50.43798061599995,-10.088703715999827],[-50.47497950999997,-10.174847719999946],[-50.42108554899988,-10.267882151999913],[-50.348365497999964,-10.319006731999934],[-50.39968856199988,-10.381913082999915],[-50.465183579999916,-10.378068471999882],[-50.622554482999874,-10.308996224999873],[-50.7159535269999,-10.335069475999887],[-50.75292258199994,-10.383863216999885],[-50.87806355799995,-10.272453976999884],[-51.037074463999886,-10.261853551999877],[-51.20149655899991,-10.143171],[-51.26295853999994,-10.237987423999812],[-51.36004662799991,-10.281843384999888],[-51.34825848699995,-10.36643941899996],[-51.21347061099988,-10.440179212999965],[-51.13909949199996,-10.511522283999966],[-51.023940524999944,-10.526499236999882],[-51.03429452199998,-10.597765026999923],[-50.95880861099994,-10.782882376999964],[-50.98865153899993,-10.840487341999903],[-51.07324254399998,-10.83477255999992],[-51.163455626999905,-10.75437015999995],[-51.23631649399994,-10.956627159999869],[-51.39180347999991,-10.890577762999897],[-51.5935825439999,-10.931557054999928],[-51.61884358799995,-10.86428356499988],[-51.69568250699996,-10.840921188999914],[-51.78416858199989,-10.855135387999951],[-51.807022511999946,-10.997164390999842],[-51.78158561499998,-11.073148186999958],[-51.59295658299993,-11.16895551999994],[-51.560363552999945,-11.203506059999881],[-51.52911347099996,-11.348470068999916],[-51.483673496999984,-11.396819568999945],[-51.39852157499996,-11.418733048999968],[-51.30048348299988,-11.386583253999959],[-51.2065126249999,-11.44812804799983],[-51.29425857899997,-11.670034743999963],[-51.18434148499989,-11.66657318599988],[-51.13293460299997,-11.771185036999952],[-51.03598749899993,-11.730888702999948],[-51.019569529999956,-11.813647926999977],[-51.08376350899994,-11.932104],[-51.01827955499982,-11.952739574999896],[-50.99716956399993,-12.023987763999969],[-51.06026450799993,-12.079239927999936],[-51.13659246499992,-12.248725362999949],[-51.05091449499997,-12.276202415999933],[-51.03805548199995,-12.389765803999921],[-51.09720657299994,-12.42253954899985],[-51.321041608999906,-12.430009835999954],[-51.39538959299989,-12.468903207999972],[-51.564479569999946,-12.619723149999857],[-51.723941589999924,-12.74142285299996],[-51.797443504999876,-12.85850010299987],[-51.854328464999924,-12.894533568999975],[-52.07658753599998,-12.932486994999977],[-52.23125058099998,-13.0273275589999],[-52.32921256499998,-13.170231128999944],[-52.41961256499991,-13.242673235999916],[-52.66390950299996,-13.314090570999895],[-52.83516653699991,-13.327214619999893],[-52.90360662099994,-13.284971503999941],[-53.0204086089999,-13.29905645499997],[-53.216083468999955,-13.490994493999892],[-53.33506357899995,-13.46466827699993],[-53.34658048099993,-13.37044881199995],[-53.46522849999997,-13.412016010999878],[-53.546173544999874,-13.616357422999954],[-53.61552054999987,-13.585461391999957],[-53.58792849899993,-13.374121426999977],[-53.68284651099998,-13.362136310999972],[-53.83326361999991,-13.41565358899993],[-53.87254758799992,-13.464760477999903],[-54.04552458899991,-13.45751583099991],[-54.14356251399994,-13.405092390999869],[-54.29131652399985,-13.41567068799992],[-54.51798263199987,-13.309935829999858],[-54.63105349999995,-13.340500774999896],[-54.76481258099989,-13.336764960999972],[-54.85954652799995,-13.255233349999912],[-55.02124048099995,-13.198794977999967],[-55.228507511999965,-12.922904634999952],[-55.296153493999896,-12.814391845999978],[-55.450500541999986,-12.660895226999912],[-55.48361257999983,-12.477066678999961],[-55.575595584999974,-12.475894049999908],[-55.62566354299997,-12.432738815999869],[-55.634338476999915,-12.3073353179999],[-55.7506445919999,-12.335185532999958],[-55.92821856399996,-12.265799132999916],[-55.89627060499993,-12.177948069999957],[-55.927741633999915,-12.105764963999945],[-56.0208355769999,-12.098719470999981],[-56.08892462599988,-12.04285224299997],[-56.168502581999974,-12.065806754999926],[-56.206016627999986,-12.2025725929999],[-56.27977352099998,-12.196753875999946],[-56.38959153999991,-11.990871031999916],[-56.46086453899994,-11.924103472999946],[-56.58099347199993,-11.715877886999976],[-56.708583472999976,-11.812139183999932],[-56.662189471999966,-11.997260388999962],[-56.425952570999925,-12.06897461099993],[-56.3664776039999,-12.256409724999912],[-56.31846656499994,-12.25532778899992],[-56.31629162899998,-12.416248929999938],[-56.45137756599996,-12.614855443999886],[-56.39872362299997,-12.687365611999951],[-56.41896860199995,-12.859720004999929],[-56.29589862599994,-12.987531455999886],[-56.21491653299995,-13.03363108499991],[-56.23268549699998,-13.153147300999933],[-56.32322647999996,-13.18632002399994],[-56.433891574999905,-13.27112627699995],[-56.55660649299989,-13.431678446999967],[-56.766979521999986,-13.370060561999821],[-56.85952763599994,-13.27663184599993],[-56.90189748599994,-13.286794400999952],[-56.93311353699994,-13.43600417999994],[-57.03055953199993,-13.393042063999928],[-57.04774461299996,-13.296469463999927],[-57.19239463599996,-13.300320445999887],[-57.340454585999964,-13.080129021999937],[-57.40015049999994,-13.043029544999968],[-57.50579852299995,-13.032040199999926],[-57.57578657599993,-12.956954272999894],[-57.53776156899994,-12.886013028999912],[-57.42506755199997,-12.886706044999869],[-57.4187206069999,-12.80406383299993],[-57.56172157499998,-12.776783419999958],[-57.62114759199994,-12.712105804999965],[-57.51952355399993,-12.588739277999878],[-57.60475158399987,-12.528511447999904],[-57.670379538999896,-12.525796381999953],[-57.687419611999985,-12.440729283999929],[-57.77775959699994,-12.279417210999952],[-57.7957835389999,-12.170245603999888],[-57.87285949699998,-12.142179638999949],[-58.04558152099992,-12.229313713999943],[-58.121166505999895,-12.311355111999887],[-58.181541521999975,-12.097448774999918],[-58.110431634999884,-11.978657760999965],[-58.12291748599995,-11.9269253249999],[-58.32653453299997,-11.939098529999853],[-58.355323520999946,-11.883796241999903],[-58.36227463299991,-11.731162622999875],[-58.41937249299991,-11.710047267999926],[-58.62985247599994,-11.721999358999938],[-58.77083960699997,-11.549857027999906],[-58.84561154799991,-11.551449924999929],[-58.914001507999956,-11.617280553999933],[-59.04410557699998,-11.657235745999856],[-59.13587953799993,-11.715865816999951],[-59.23272354399995,-11.701059855999972],[-59.30319255099994,-11.628093711999952],[-59.2806965289999,-11.495437856999956],[-59.50323857299992,-11.550193980999893],[-59.563285521999944,-11.49222406799987],[-59.626243504999934,-11.483454584999947],[-59.77376148099995,-11.512549847999878],[-59.82239562999996,-11.570315744999903],[-59.970809630999895,-11.574091624999937],[-60.105480495999984,-11.67981726399995],[-60.10874960599995,-11.744989745999874],[-60.05218550599989,-11.877380732999882],[-59.95810350399995,-12.005738012999814],[-59.98043456999994,-12.093547836999846],[-60.06351850899995,-12.092349056999865],[-60.1575245709999,-12.039478693999968],[-60.17779955699996,-12.14099862899991],[-60.25897560699991,-12.09172108499996],[-60.378391575999956,-12.093302079999944],[-60.43960159699992,-12.18610248799996],[-60.580478590999974,-12.276403580999897],[-60.579849612999965,-12.375875649999955],[-60.666744634999986,-12.45212045799991],[-60.731128547999845,-12.447562714999947],[-60.83738761099994,-12.489092027999959],[-60.86902963099993,-12.674766269999907],[-60.75990663899984,-12.736197406999963],[-60.62710560899984,-12.724873957999932],[-60.58851247699988,-12.796439317999955],[-60.71028560499997,-12.843398930999967],[-60.78772751699995,-12.902539124999919],[-60.64318461399989,-12.974339177999923],[-60.47607461099989,-12.965915700999915],[-60.36029051999992,-12.999988472999974],[-60.28255859399991,-12.925777448999952],[-60.18018353799994,-12.919475933999934],[-60.14543551999998,-12.94981791999993],[-60.09952548899986,-13.154382961999943],[-60.008975620999934,-13.15702007599998],[-60.06238158799994,-13.045067520999908],[-60.06553251299994,-12.952261747999955],[-60.010536498999954,-12.895884563999914],[-59.97651653399987,-12.753261116999965],[-60.00241057899996,-12.608559796999884],[-59.98761350299992,-12.487388991999921],[-59.90930557199994,-12.508029596999961],[-59.88420462199991,-12.708855973999903],[-59.844055473999845,-12.771315903999948],[-59.75547049199997,-12.817313776999981],[-59.734432584999865,-12.902407025999935],[-59.64596561999997,-12.959852231999946],[-59.715618564999886,-13.131838658999982],[-59.63134355799997,-13.313005449999821],[-59.60247058399983,-13.500231853999935],[-59.61044361799998,-13.557407161999947],[-59.55587759599996,-13.60981182699993],[-59.39546154699997,-13.680983069999911],[-59.40335847399996,-13.734742249999897],[-59.50918150999996,-13.789313635999918],[-59.67137955099997,-13.824588540999855],[-59.78940948799993,-13.827253314999894],[-59.69769252399993,-13.985722917999965],[-59.60593448899982,-14.076591632999964],[-59.51858147899992,-14.2934515849999],[-59.448398629999986,-14.410342924999952],[-59.24053547799997,-14.65320806699998],[-59.10660557299991,-14.871982612999943],[-58.978031536999936,-14.989744161999965],[-58.95725648699994,-14.949906819999853],[-58.84242256899995,-15.04218872399997],[-58.75608058499995,-15.059468519999939],[-58.725242556999945,-14.977287814999954],[-58.638725557999976,-14.980752726999981],[-58.53108951599995,-15.09003849499993],[-58.43886561499994,-15.023498923999966],[-58.296523631999946,-15.022938844999828],[-58.20703558399987,-14.978061799999978],[-58.1695974779999,-14.919931457999894],[-58.075366613999904,-14.86814990399995],[-58.02215560999991,-14.769960433999927],[-58.00807954499993,-14.671349689999886],[-57.9349095529999,-14.579064768999956],[-57.951873518999946,-14.500804949999974],[-57.65356460299995,-14.348455980999972],[-57.56121849299984,-14.334277655999927],[-57.4341205099999,-14.255974083999888],[-57.18178549399994,-14.163459162999914],[-57.052894621999826,-14.143540408999968],[-57.015483505999896,-14.213867593999964],[-56.931808474999855,-14.256854016999966],[-56.79328947799996,-14.20581023799997],[-56.71083854099987,-14.267119333999858],[-56.66858653999998,-14.615682453999966],[-56.77359351399997,-14.784191564999958],[-56.747848498999986,-14.848701373999972],[-56.87201650399999,-15.013588664999872],[-56.98620954099982,-15.068092157999956],[-57.18936156099983,-15.109267418999934],[-57.17709347199997,-15.21738139699994],[-57.1276476189999,-15.275195573999895],[-57.17740259699997,-15.419647281999914],[-57.26838262399991,-15.503995882999902],[-57.43284947799998,-15.8151649859999],[-57.66466157199983,-16.010562738999965],[-57.7226985399999,-16.196041012999842],[-57.78059351899992,-16.14718507899994],[-57.72384652499994,-16.083467023999845],[-57.73048348399993,-15.926042141999858],[-57.76729160599996,-15.805060601999912],[-57.81570447299998,-15.549583041999881],[-57.885745499999985,-15.539661718999866],[-57.98447761399996,-15.74758438299989],[-58.06566958999997,-15.670868342999938],[-58.25184255599993,-15.714552475999938],[-58.336688538999965,-15.563108248999981],[-58.47273252699989,-15.511989535999874],[-58.512424526999894,-15.544740481999952],[-58.63256050099994,-15.466212441999915],[-58.74015463299992,-15.50713859299998],[-58.8988795489999,-15.47037908599998],[-58.97090960199995,-15.514010412999937],[-59.022426621999955,-15.680651700999931],[-59.21155957399998,-15.60990927599994],[-59.241405519999944,-15.54864208999993],[-59.3633955709999,-15.456005127999845],[-59.337749628999916,-15.350976695999975],[-59.343913512999904,-15.161721871999873],[-59.47522356999991,-15.004767213999969],[-59.518657586999836,-14.91348392999987],[-59.673496483999884,-14.887877550999974],[-59.78031562599989,-14.832120292999946],[-59.84860651199989,-14.931681879999928],[-59.83066555099998,-14.984707475999869],[-59.62295159599995,-15.040023678999887],[-59.50683256499991,-15.113107168999932],[-59.42300749899982,-15.137466655999901],[-59.43218249699993,-15.251935121999907],[-59.64987561099986,-15.27215596099984],[-59.783519524999974,-15.304056645999822],[-59.867118614999924,-15.208542009999917],[-59.94290158099989,-15.372015272999931],[-60.028049479999936,-15.40926310999987],[-60.05122762199994,-15.468817034999972],[-59.97812250599998,-15.525431426999887],[-59.951827637999884,-15.676875820999953],[-59.806693474999975,-15.716204380999898],[-59.67832948999995,-15.840329302999976],[-59.58712063699994,-15.900267789999873],[-59.54871358299994,-15.976229792999902],[-59.612094516999946,-16.169335598999908],[-59.659122525999976,-16.20666406999993],[-59.798534530999916,-16.1709725849999],[-59.822227488999886,-15.998302529999933],[-59.895980525999846,-16.017583253999874],[-59.99188659699996,-16.23495047899985],[-60.12256650299997,-16.194440907999876],[-60.153758581999966,-16.23796930499998],[-59.82599247199994,-16.25332226899991],[-59.267223624999986,-16.279495767999947],[-59.14800647499993,-16.190405188999932],[-58.968490583999824,-16.141456215999938],[-58.93657263199998,-16.10886335299989],[-58.78649549399984,-16.138892358999897],[-58.5830536279999,-16.131146977999947],[-58.30578647299984,-16.26074595299997],[-58.338542615999984,-16.49343931999988],[-58.462051634999966,-16.67167914999993],[-58.47170658199991,-16.79349133799991],[-58.37091453099998,-16.822527758999968],[-58.33245048099997,-16.771890837999877],[-58.3368456149999,-16.67024098299993],[-58.30445056499997,-16.59356785899996],[-58.177570511999875,-16.566893625999967],[-58.05755657799989,-16.722135021999975],[-58.00747252699989,-16.838118601999895],[-57.86828247499989,-16.864498127999923],[-57.86920549099989,-16.75693366699994],[-57.951614518999975,-16.71653926399989],[-58.00434155099998,-16.650199349999923],[-58.04695548199999,-16.52005957399996],[-58.14241747999989,-16.396828330999938],[-58.18134655899985,-16.29859426899992],[-58.07659154499993,-16.218572574999826],[-58.07261651099992,-16.138209401999973],[-58.208423626999945,-16.01956691499987],[-58.21187562999995,-15.965187641999933],[-58.088878576999946,-15.879307834999906],[-57.94787250199988,-15.892684011999961],[-57.86850761299996,-16.039434707999817],[-57.833389617999956,-16.2404602389999],[-57.80528660599998,-16.30788996799987],[-57.663757499999974,-16.202895398999942],[-57.62430153499997,-16.09772497699987],[-57.44254247899988,-16.067083923999917],[-57.34431059699995,-16.100175845999956],[-57.390994611999986,-16.185308488999908],[-57.34062155299989,-16.21485385999989],[-57.23863558499994,-16.205340399999955],[-57.08987859599995,-16.26074192999988],[-56.91791546999991,-16.206029391999834],[-56.74941658499989,-16.25405736199997],[-56.6155015999999,-16.235869469999955],[-56.48692655799994,-16.12539145999989],[-56.39373354099996,-16.091862505999927],[-56.32484049999988,-16.113992071999974],[-56.18049255999995,-16.22081741599993],[-56.024791499999935,-16.16429287899996],[-55.927577515999985,-16.184929626999917],[-55.84543654099997,-16.160696203999976],[-55.624511533999964,-15.99462253899992],[-55.61383449799996,-16.0926693479999],[-55.75069857199992,-16.1777200169999],[-55.83198157499993,-16.313129662999927],[-55.76274856299989,-16.359904705999952],[-55.70145757299997,-16.33577421299998],[-55.521171551999885,-16.152172646999873],[-55.44696052899991,-16.204711421999946],[-55.409728617999974,-16.366347203999908],[-55.41883454899994,-16.440919320999967],[-55.494201604999944,-16.666260249999937],[-55.623138577999896,-16.71113545099996],[-55.77980456299997,-16.68756386299998],[-55.83472061299983,-16.595748829999934],[-55.99431959399993,-16.66544653499983],[-56.11782056699997,-16.614200584999878],[-56.23835753099996,-16.64090381899996],[-56.276107611999976,-16.720329895999896],[-56.18092355699997,-16.77183484699998],[-55.798896526999954,-16.765749249999942],[-55.61127047399998,-16.79853204699998],[-55.453540489999966,-16.79358756199997],[-55.17645254099989,-16.663145534999956],[-54.97610057899993,-16.63019258499986],[-54.952457576999905,-16.749324071999922],[-55.031326591999914,-16.850723977999962],[-54.99767660399988,-17.080884501999947],[-55.053596470999935,-17.15246310499998],[-55.281478625999966,-17.20574870799993],[-55.36134760199991,-17.246745433999877],[-55.437076587999854,-17.210816573999978],[-55.530349568999895,-17.27552168199992],[-55.73859761799997,-17.34822111299991],[-55.92950853899998,-17.27751053999998],[-56.07588556999991,-17.19333862999997],[-56.162025550999886,-17.248250153999948],[-56.03816951999988,-17.29124462299984],[-55.741050497999936,-17.498411741999973],[-55.46753659199993,-17.62967469299997],[-55.28690356099992,-17.72960089299994],[-55.1755595329999,-17.82302307099991],[-55.01704449999994,-17.91110664799993],[-54.88624154799999,-17.955652104999956],[-54.81280149199989,-18.064688426999908],[-54.79908752499995,-18.247773500999926],[-54.81706955699991,-18.295297382999934],[-54.913570575999984,-18.328428531999975],[-55.05899458399989,-18.229650484999866],[-55.29835860499992,-18.267721088999906],[-55.33602151399998,-18.347325364999847],[-55.234569471999976,-18.412497511999902],[-55.09733156499988,-18.447649369999965],[-55.05074662399994,-18.492047639999953],[-55.049484476999964,-18.59253861299993],[-55.1077765899999,-18.71263167199993],[-55.12707156399989,-18.867746501999818],[-55.27210648399995,-18.944989929999906],[-55.23466854599985,-19.053383528999973],[-55.13411755899995,-19.210734314999968],[-55.100040596999975,-19.33805374799988],[-55.11884656999996,-19.435230012999966],[-55.24634151999987,-19.556052967999904],[-55.382801585999914,-19.792762439999933],[-55.44383961099999,-19.95298721399996],[-55.51816161099998,-20.05418947399994],[-55.64564147399989,-20.126251210999897],[-55.68999062599994,-20.22712255399989],[-55.77035849299989,-20.241945781999902],[-55.79377350699997,-20.147525989999906],[-55.90145849999993,-20.03597341899996],[-55.94515654599985,-20.072924200999978],[-55.9357225469999,-20.160361365999904],[-55.87613257899994,-20.226169698999854],[-55.86917861699993,-20.312437754999962],[-55.95221360599993,-20.314186722999978],[-56.06566953899983,-20.087877348999882],[-56.15125262599997,-20.063543007999954],[-56.22837451699996,-20.204651844999887],[-56.32135362799994,-20.21810295599994],[-56.36974352799996,-20.084714688999952],[-56.46894452599997,-20.09811701699988],[-56.592132518999904,-20.079621006999957],[-56.69887555299994,-20.094100073999982],[-56.76966055799994,-19.885011989999896],[-56.85010151499995,-19.796498086999975],[-56.94039556699988,-19.783628847999978],[-57.163635487999954,-19.985891212999945],[-57.13480358499993,-20.134829752999963],[-57.1537165119999,-20.27548881799987],[-57.087066634999985,-20.303857200999914],[-56.95376252299991,-20.267135244999963],[-56.954910508999944,-20.41017024399997],[-57.1337275169999,-20.579266590999907],[-57.15650550599992,-20.715188035999915],[-57.20810651399995,-20.826553689999855],[-57.20551650599998,-20.912908078999976],[-57.25525253999996,-21.016873182999973],[-57.35979063099995,-21.13242576499988],[-57.43387961399998,-21.156510325999932],[-57.49642554299999,-21.050853250999978],[-57.589153531999955,-21.024738760999924],[-57.713519517999885,-21.080432651999956],[-57.748149518999924,-21.17401341599998],[-57.721916507999936,-21.3413812469999],[-57.74108860299987,-21.424752684999874],[-57.695312514999955,-21.45911882399986],[-57.61555853899989,-21.382130874999973],[-57.58130253899998,-21.461066777999918],[-57.679107613999975,-21.62502283899994],[-57.74624263599998,-21.645056593999925],[-57.77724461299994,-21.699759575999906],[-57.79522362799992,-21.85878020499996],[-57.836330492999934,-21.94741011399998],[-57.83121451399995,-22.02200435899988],[-57.76465952099994,-22.086539648999917],[-57.54635653999992,-22.106792673999962],[-57.42011652899993,-22.10071998499984],[-57.389507494999975,-22.181892681999955],[-57.45402551799998,-22.24873802499991],[-57.659763522999924,-22.22657727899997],[-57.755870591999894,-22.242776479999918],[-57.74262953199991,-22.34241618599998],[-57.587165511999956,-22.42476788199997],[-57.54432661099992,-22.481484700999943],[-57.55063248499994,-22.63730763399991],[-57.47518563299991,-22.716175474999943],[-57.44947850299991,-22.79250728799991],[-57.482070527999895,-22.93107707899992],[-57.36721062699996,-22.903427694999948],[-57.23442853999995,-22.7898644739999],[-57.00223154899999,-22.679791309999814],[-56.864715530999945,-22.46790534699994],[-56.574367577999965,-22.24502433899994],[-56.49623449399991,-22.12609066499988],[-56.417385595999974,-22.131263471999887],[-56.37591160299996,-22.208945274999905],[-56.40024560899985,-22.320765394999967],[-56.451461551999955,-22.381192043999874],[-56.46187556399991,-22.54648635999996],[-56.57978463399991,-22.611383915999852],[-56.56436947599997,-22.658998322999878],[-56.35397347999992,-22.68345705099989],[-56.32201361899996,-22.738475192999942],[-56.344234546999985,-22.83804499499996],[-56.19428648999991,-22.78893944699996],[-56.138965593999956,-22.705051012999945],[-56.17339761399995,-22.617597587999967],[-56.20195056699998,-22.454782303999934],[-56.14091857699998,-22.376121494999893],[-56.12262758799994,-22.290508735999936],[-55.85555651599992,-22.263897199999974],[-55.82340655299993,-22.326846968999916],[-55.748142593999944,-22.365597009999874],[-55.75086252199992,-22.48488356199988],[-55.54562357599997,-22.674429741999916],[-55.56139362399989,-22.58617031299991],[-55.41696152899988,-22.47036644099984],[-55.32640847699997,-22.44898755899993],[-55.248874530999956,-22.379462018999902],[-55.14231153999998,-22.35324342599995],[-55.17708956499985,-22.252562016999946],[-55.07437554399996,-22.225181523999936],[-54.998443547999955,-22.332311633999893],[-54.79586049199992,-22.419637151999893],[-54.73894451899997,-22.320248398999922],[-54.83591458999996,-22.230685919999928],[-54.94546153799996,-22.21007833999994],[-55.065067607999936,-22.081602204999967],[-55.10248157399997,-21.968331176999925],[-55.04877855299992,-21.811677429999975],[-54.95869052799986,-21.791219550999983],[-54.85098659299996,-21.877276885999947],[-54.67312947999994,-21.924529529999973],[-54.60528149399988,-21.906452614999978],[-54.542388553999956,-21.666823389999934],[-54.47803850399998,-21.597068353999873],[-54.41719862799988,-21.612297265999928],[-54.22961062899998,-21.725527222999972],[-54.02773651399991,-21.734973794999974],[-53.98804451399991,-21.799768085999915],[-53.81887457399989,-21.95073320299997],[-53.6193276109999,-22.058477203999928],[-53.48207059299989,-22.092576462999887],[-53.30490146799997,-22.180853660999958],[-52.90288158599998,-22.12953160299992],[-52.54948847799989,-21.99809749399998],[-52.2647134849999,-21.947006273999875],[-52.16819352299996,-21.867448601999968],[-52.08013157199997,-21.76052334499991],[-52.00317748599991,-21.62173076299996],[-51.97144661799996,-21.60934163899998],[-51.83703257499997,-21.3172886399999],[-51.84081650099989,-21.17390445099994],[-51.7608145879999,-21.03033837499987],[-51.6416624819999,-20.986572937999938],[-51.62813157499994,-20.712958113999946],[-51.529079607999904,-20.597424642999954],[-51.49928261299988,-20.43809555999991],[-51.427299498999844,-20.360083845999952],[-51.38098948399983,-20.219736085999898],[-51.20656157499997,-20.19807221899987],[-51.114788619999956,-20.162921366999967],[-51.09813662899995,-20.02350215299998],[-51.22754248499996,-20.000189397999918],[-51.17910346599996,-19.761035259999915],[-51.09976154399993,-19.598908465999955],[-51.04669957099992,-19.550104498999872],[-51.00910556199989,-19.449009190999902],[-50.86671462899983,-19.254871572999946],[-50.82809852999992,-19.121592438999926],[-50.88383449799994,-19.00298130099992],[-51.01270659499994,-18.94070795099998],[-51.14876952599991,-18.77985369699985],[-51.2019956179999,-18.65299610699992],[-51.1904185329999,-18.537841161999893],[-51.112453589999916,-18.546833602999982],[-51.004558546999874,-18.70630685499998],[-50.91009148099988,-18.794994766999935],[-50.86376151699989,-18.79917733699989],[-50.847751578999976,-18.616174405999914],[-50.674114586999906,-18.464534545999925],[-50.6029855889999,-18.454040905999875],[-50.454654568999956,-18.374256921999915],[-50.435844571999894,-18.30016106599993],[-50.22803858399993,-18.16992892199994],[-50.176307488999896,-18.19097588099993],[-50.13830561699996,-18.316891344999874],[-50.05733157099991,-18.425122836999947],[-49.92293546399992,-18.476213721999954],[-49.86516554399992,-18.465966342999934],[-49.78425251799996,-18.321784866999963],[-49.768859487999975,-18.231748306999975],[-49.711543530999904,-18.104535994999935],[-49.65811157999991,-18.05428413899989],[-49.59558157699996,-18.07245308699993],[-49.59582146699995,-18.17449571799989],[-49.55408059499996,-18.26683428399997],[-49.56167962799998,-18.339358868999966],[-49.508007619999944,-18.504564838999954],[-49.404392543999904,-18.618393095999977],[-49.247951529999966,-18.51332862199996],[-49.28702561599994,-18.27772857799988],[-49.24155848499993,-18.188740929999938],[-49.28976448599997,-18.0646733399999],[-49.284923601999935,-18.012899497999967],[-49.199657517999924,-17.973842845999968],[-49.18043546699988,-18.12430873699998],[-49.09943359299996,-18.14725654399996],[-48.99750160399992,-18.126879801999905],[-49.0165295299999,-18.058951684999897],[-48.97642161999988,-18.012555671999962],[-49.01435861699997,-17.95345319599994],[-48.90940059299987,-17.873356902999888],[-48.79962146599985,-17.869063356999902],[-48.672340589999976,-17.9723059399999],[-48.651576603999956,-18.072200959999975],[-48.51438848599997,-18.197756336999873],[-48.436313571999904,-18.185025064999877],[-48.31355255299991,-18.21600021999984],[-48.36259456599987,-18.34310859699991],[-48.361026478999975,-18.41862099499997],[-48.472167497999976,-18.427199704999907],[-48.439170627999886,-18.52418083999993],[-48.27515052899997,-18.572628910999924],[-48.220210505999944,-18.645599579999953],[-48.16187262699992,-18.646249680999915],[-48.09485646199988,-18.716298418999884],[-47.97002460999988,-18.79721647399998],[-47.95391459199982,-18.889141979999863],[-47.99105446999994,-18.964231594999887],[-48.23134653499994,-18.75376619699989],[-48.335132600999884,-18.63156726899996],[-48.50185351699997,-18.69430866399989],[-48.53665953799998,-18.63291038499989],[-48.64111347399995,-18.609037718999957],[-48.62161247299997,-18.516502345999925],[-48.6876945599999,-18.50573998199991],[-48.81567750399995,-18.614584526999977],[-48.888076527999885,-18.623517958999912],[-48.85044060999991,-18.47861144899997],[-48.894794623999985,-18.41638839099994],[-48.9637605879999,-18.46868023499985],[-49.0647735849999,-18.610590549999927],[-49.161418604999824,-18.620465940999964],[-49.31033350899992,-18.781533597999953],[-49.2785225099999,-18.861593848999917],[-49.212711493999905,-18.889754193999977],[-49.20809155699993,-18.959486934999973],[-49.38240446499998,-18.926725762999865],[-49.453426509999986,-18.94229313699998],[-49.596858475999966,-18.891985959999886],[-49.71310457599992,-18.87602379899988],[-49.64524854399991,-18.791870998999855],[-49.48434450099995,-18.854129261999958],[-49.44336654999995,-18.795105742999965],[-49.47938157599998,-18.67503782999995],[-49.57082361399989,-18.640922813999907],[-49.73330362199994,-18.61875921799998],[-49.839061614999935,-18.751395291999927],[-49.822376597999835,-18.825300878999883],[-49.88682153199994,-18.851916438999922],[-49.84542448499991,-18.961563802999876],[-49.89508860299998,-18.993338088999963],[-49.955627568999944,-18.91768738899998],[-50.022602495999934,-18.776856663999922],[-50.09147257099988,-18.757676018999916],[-50.21162748799992,-18.817265483999904],[-50.322849475999874,-18.917773554999883],[-50.35042560199997,-19.04272392699994],[-50.39760247399994,-19.10756834199998],[-50.5184856109999,-19.128010126999982],[-50.543147516999966,-19.20923127199984],[-50.58367150499987,-19.497621547999927],[-50.68531750299991,-19.548288475999982],[-50.80683162999998,-19.561715781999965],[-50.935600628999964,-19.732584733999943],[-50.76187160399991,-19.738076556999943],[-50.672843554999986,-19.763639181999906],[-50.49505249199996,-19.719371669999873],[-50.36087749999996,-19.657058253999935],[-50.24266047899994,-19.679022025999927],[-50.16695747599988,-19.761054370999943],[-49.922759611999936,-19.835283834999927],[-49.696502540999916,-19.783728089999954],[-49.66553861699998,-19.663180898999883],[-49.695003520999876,-19.60818723299991],[-49.813449535999894,-19.55562414999997],[-49.683101553999904,-19.497598413999867],[-49.5781705199999,-19.548345472999927],[-49.517166524999936,-19.623790312999972],[-49.56440357899993,-19.683094792999896],[-49.57510760499997,-19.81656503399995],[-49.44672048499996,-19.86622026599997],[-49.365135564999946,-19.759553171999983],[-49.30118549999992,-19.76712873599996],[-49.283252585999946,-19.930301424999925],[-49.34168249699991,-20.03486365599997],[-49.34464650599995,-20.098049961999948],[-49.26901256999997,-20.2610027099999],[-49.30102557299995,-20.33118756999994],[-49.221805523999876,-20.46413427699997],[-49.26992753899992,-20.531602395999926],[-49.33629947199995,-20.531070479999983],[-49.40419758099995,-20.451465700999904],[-49.368522524999946,-20.404059500999892],[-49.40905355299992,-20.330136646999847],[-49.53743748799985,-20.239286706999962],[-49.614532556999905,-20.242523629999937],[-49.795360550999874,-20.15249276999998],[-49.93905252299993,-20.172045570999956],[-49.98073958299989,-20.304480143999854],[-50.055824503999986,-20.352193457999874],[-50.1822705429999,-20.37778005499996],[-50.209651537999946,-20.45112070199997],[-50.305450488999895,-20.45019986599982],[-50.394931496999845,-20.53734902799988],[-50.311042559999976,-20.65580744899995],[-50.268497527999955,-20.672538229999873],[-50.16732460399987,-20.518321939999964],[-50.09910161199997,-20.613176585999895],[-49.969314545999964,-20.681440816999896],[-49.856487591999894,-20.649347515999978],[-49.74328948599998,-20.702046719999885],[-49.58591053699996,-20.701186736999887],[-49.5060345199999,-20.773465731999977],[-49.40004753299996,-20.825071936999905],[-49.33835957599996,-20.65957125799997],[-49.21768950699993,-20.68635060099996],[-49.17741362399994,-20.75104397399997],[-49.18098062599995,-20.89975854999983],[-49.06682949799995,-20.79951618399997],[-49.05456560099998,-20.729068131999952],[-48.986312600999895,-20.693886098999883],[-48.978420535999874,-20.588123244999963],[-49.13169453299997,-20.50108103599996],[-49.14288353499995,-20.4511627789999],[-49.09142652899993,-20.21282621199998],[-48.9999425819999,-20.227059521999934],[-48.98612953999992,-20.30319938899993],[-49.009799531999874,-20.41310910699991],[-48.90710847799994,-20.473736585999916],[-48.827842495999846,-20.440300335999893],[-48.74024154899996,-20.515257348999967],[-48.72951556299995,-20.62127316899995],[-48.61213254099994,-20.873389081999903],[-48.52106450399998,-21.001826828999924],[-48.48803762599982,-21.126175044999968],[-48.51099046199994,-21.177682342999958],[-48.60575055999993,-21.247569477999946],[-48.53494661199994,-21.36207314899991],[-48.5217055519999,-21.48395339699988],[-48.61460453199993,-21.48162658099983],[-48.65597961699996,-21.36337787599996],[-48.859947531999865,-21.339884406999886],[-48.87763552699994,-21.24334164599992],[-48.993350549999946,-21.226954521999915],[-49.06426949799993,-21.37687139899998],[-49.137512578999974,-21.46271851599988],[-49.12184948399994,-21.546794871999907],[-49.14363052999994,-21.693312047999882],[-49.07567257399995,-21.713108929999976],[-48.99087956499994,-21.79051982999988],[-48.8667335209999,-21.860276038999928],[-48.7933125749999,-21.973607751999964],[-48.64819349999982,-22.12118088099993],[-48.574592510999935,-22.147323701999824],[-48.52774052199993,-22.266374219999932],[-48.38180957599997,-22.33458145399993],[-48.39757560099997,-22.382329132999814],[-48.50740853999986,-22.398190040999964],[-48.50764055099995,-22.539051611999867],[-48.64311959899993,-22.67066676999997],[-48.72631853699994,-22.63469683799991],[-48.738445474999935,-22.53449286199998],[-48.7883875359999,-22.489970203999974],[-48.8386035179999,-22.353798642999948],[-48.829177564999895,-22.236502792999886],[-48.93097661799993,-22.10733883799992],[-48.98670956799998,-21.977071657999886],[-49.100116550999985,-21.94569031499998],[-49.197509571999944,-21.95703572399998],[-49.33616653499996,-22.009154062999983],[-49.35108162799992,-22.078587065999955],[-49.44380961699983,-22.13315124499985],[-49.46628149999992,-22.248760990999926],[-49.34177754799998,-22.275292564999972],[-49.272495585999934,-22.337478406999935],[-49.26856246199986,-22.432415194999976],[-49.364482614999986,-22.40811354399989],[-49.4649844839999,-22.460751895999977],[-49.50935358599992,-22.351530499999967],[-49.623378481999964,-22.503252670999927],[-49.69704049099994,-22.475489124999854],[-49.91819348599995,-22.484862439999915],[-50.005226474999915,-22.43687118299988],[-50.20090451999988,-22.43103855199996],[-50.25524858899996,-22.38732575299997],[-50.48155947199996,-22.33532861699996],[-50.63777551599992,-22.34579811699996],[-50.6940004839999,-22.396067407999908],[-50.78958854699994,-22.372026432999917],[-50.91003750099998,-22.289150867999865],[-51.02890059999993,-22.300210285999924],[-51.012489503999916,-22.217022914999973],[-51.02021761799995,-22.061238202999903],[-51.077442547999965,-22.027641020999965],[-51.19828058999991,-22.138466879999953],[-51.25472248199998,-22.155277121999916],[-51.34680154499995,-22.276522692999947],[-51.312221499999964,-22.36489695399996],[-51.33213455499998,-22.458511915999964],[-51.277450515999874,-22.580635406999875],[-51.20178254999996,-22.542520545999935],[-51.13265246799989,-22.588361174999818],[-51.06706658999997,-22.57806970599995],[-50.96212750899991,-22.49751877899996],[-50.86375447599994,-22.58465922299996],[-50.66416560299996,-22.61866544299994],[-50.5400395069999,-22.717238467999948],[-50.42913049999993,-22.688894726999933],[-50.30266954099994,-22.72638882399997],[-50.16685856999993,-22.698034521999887],[-49.85881055199991,-22.772454422999942],[-49.67350762799998,-22.7129236319999],[-49.54099661099997,-22.718583260999935],[-49.43036252999991,-22.872963164999874],[-49.30679651299994,-22.939546656999937],[-49.302761464999946,-23.125018225999952],[-49.27354852099995,-23.422769745999915],[-49.25539046899996,-23.49984972799996],[-49.28169656899996,-23.65578112199995],[-49.33351148299994,-23.69486208099994],[-49.29533761399995,-23.791644228999814],[-49.30813258899997,-23.854121929999963],[-49.538040481999985,-23.860095544999922],[-49.678501564999976,-23.891597083999955],[-49.716045618999885,-23.965472327999976],[-49.660568483999896,-24.059309745999826],[-49.56585348099998,-24.063087637999956],[-49.60153960099984,-24.147224343999824],[-49.682380542999965,-24.21388494899992],[-49.74883260599995,-24.221416759999954],[-49.84993746899994,-24.170808001999887],[-49.86642450499983,-24.07407195399992],[-49.97766158099995,-24.0914531709999],[-50.04262149799996,-24.175611837999895],[-50.32053355599999,-24.31780981999998],[-50.183143601999916,-24.33856575899995],[-50.19506048899996,-24.40213059199982],[-50.299175628999876,-24.41671594199994],[-50.433185496999954,-24.388839240999914],[-50.454841484999974,-24.436719018999952],[-50.37387447899994,-24.642217803999984],[-50.20696647999989,-24.713381502999937],[-50.16179657099997,-24.8032401989999],[-50.15488854199998,-25.20313476499996],[-49.94961958799996,-25.28378895799989],[-49.855682593999916,-25.256744243999947],[-49.81716959199997,-25.37770466199993],[-49.76205857899993,-25.45204929399995],[-49.76970656299994,-25.520025857999883],[-49.67113454299982,-25.527031452999893],[-49.62955057999994,-25.45177419999993],[-49.69749059999998,-25.332213726999896],[-49.77242648999999,-25.28973189499993],[-49.80358856199996,-25.18680061499998],[-49.976623565999944,-24.971961874999977],[-50.04316749499992,-24.84180835299992],[-50.16159456699995,-24.709206811999934],[-50.140396565999936,-24.60511866199994],[-50.056621622999955,-24.489229294999973],[-49.88718446799993,-24.449043433999975],[-49.76484656799988,-24.378186008999876],[-49.59086256499995,-24.331240142999945],[-49.43616850699988,-24.257501858999944],[-49.37309250599998,-24.389812211999867],[-49.21186056299996,-24.363688501999945],[-49.07213256099993,-24.211228220999942],[-48.96112850299983,-24.150667126999906],[-48.851882464999846,-24.14514747599992],[-48.86062260999995,-23.919801516999883],[-48.75109460499982,-23.90160859599996],[-48.58218752099998,-23.928373186999977],[-48.384822534999955,-23.92705940699983],[-48.404716478999944,-23.852515956999923],[-48.7477455319999,-23.8131939349999],[-48.89604553899994,-23.72903023899994],[-48.82337158799993,-23.68525356999993],[-48.63897357399998,-23.723926665999898],[-48.589866517999894,-23.645750498999917],[-48.47384253799993,-23.635078156999896],[-48.37461454999993,-23.656149087999836],[-48.24976761099998,-23.645987538999975],[-48.10232959899997,-23.692887974999906],[-47.99122948399997,-23.683271585999876],[-47.91442157899985,-23.630864238999948],[-47.95196546399984,-23.482972597999947],[-47.99938960199995,-23.467302461999964],[-48.20390351299983,-23.502609720999885],[-48.29443762299985,-23.556768046999935],[-48.45235452299994,-23.558321883999895],[-48.58798260099991,-23.454297268999937],[-48.78859758699997,-23.45198134899988],[-48.881240582999965,-23.53688114399995],[-48.953319585999964,-23.399489847999916],[-48.851055505999966,-23.37146445199994],[-48.69266553099982,-23.36114297599994],[-48.551784513999905,-23.391683445999888],[-48.50523360299985,-23.43507907399993],[-48.37136052799997,-23.471536496999818],[-48.32470350199992,-23.456440018999956],[-48.2897915339999,-23.35605415499998],[-48.32301354299989,-23.188296900999944],[-48.46332961899998,-23.184262187999877],[-48.63554755499996,-23.21039176499994],[-48.60618256299995,-23.097730436999825],[-48.390388621999875,-23.03149211199991],[-48.371028604999935,-22.96173556699989],[-48.2365984679999,-23.014145762999874],[-48.22285449299994,-23.092437767999968],[-48.06614659899992,-22.90756449999992],[-48.01541160999989,-22.93913862599993],[-47.90307952299992,-22.900867693999885],[-47.695083600999965,-22.8571119799999],[-47.693290543999865,-22.75399026399998],[-47.8069224969999,-22.619587619999947],[-47.68298750899993,-22.385971739999945],[-47.62972252599991,-22.32687999399991],[-47.60580862099994,-22.200776606999852],[-47.46414557199989,-22.183540563999884],[-47.44502661899992,-22.117222107999908],[-47.48057561099989,-22.012838746999932],[-47.455429565999964,-21.94388753499993],[-47.54167549399989,-21.914464204999945],[-47.52292651799996,-21.86076202199996],[-47.5492175309999,-21.762688222999884],[-47.62898257099988,-21.75457470799995],[-47.64640837999991,-21.696029796999937],[-47.53627050799997,-21.601747131999844],[-47.50815156999988,-21.72832694599998],[-47.355083600999876,-21.70358239399991],[-47.252365555999916,-21.72167439699996],[-47.21957052199991,-21.548187943999892],[-47.30685060899992,-21.42624265199987],[-47.36087750699994,-21.39386822199998],[-47.39178460199986,-21.20570371599996],[-47.24075360299997,-21.23255916599993],[-47.14489748799997,-21.22702258299995],[-47.089347597999904,-21.282119347999924],[-47.19525562699994,-21.395791365999912],[-47.207645587999934,-21.486868287999982],[-47.15954251699998,-21.521818476999954],[-47.13284648999996,-21.62319373999992],[-47.19613656499996,-21.801902956999925],[-47.18091150799995,-21.98745515899998],[-47.24805457599996,-22.183580461999895],[-47.332645580999895,-22.29034897699995],[-47.26956957999994,-22.303817186999936],[-47.219673618999934,-22.431290343999876],[-47.34234646099992,-22.43850900699988],[-47.52299156199996,-22.600043535999816],[-47.523525488999894,-22.701923221999948],[-47.428535558999954,-22.705565996999894],[-47.159061562999966,-22.79601712599998],[-47.0677796199999,-22.764196906999814],[-47.048767618999875,-22.69899726799997],[-46.91428350299998,-22.524983424999903],[-46.78067361999996,-22.479022767999936],[-46.755313500999875,-22.332258827999965],[-46.78684655599989,-22.15471821699998],[-46.77379962099997,-22.043030026999872],[-46.81282861199992,-21.913948047999952],[-46.86694754299998,-21.83263034399988],[-46.927215605999834,-21.62702175599992],[-46.94751758199982,-21.280637594999973],[-46.91383356299997,-21.196320174999983],[-47.06213759299982,-21.100986586999966],[-47.12682761299993,-21.092165974999887],[-47.13083248699985,-20.958588445999965],[-47.02503157799998,-20.93872936999992],[-46.919387578999874,-20.953121600999964],[-46.848686560999965,-20.921915439999964],[-46.965976543999886,-20.700886832999856],[-46.97147356399995,-20.61888549999992],[-46.86851847899993,-20.59686976099988],[-46.81658554799992,-20.692121205999968],[-46.65624661399994,-20.7705717959999],[-46.56139347699997,-20.789981769999883],[-46.475406549999946,-20.874999077999973],[-46.34719846699994,-20.843102751999822],[-46.20616154699991,-20.88683533099993],[-46.09330357899995,-20.981326201999934],[-46.00632054599993,-20.97462235599994],[-45.99146261699991,-21.0581517089999],[-45.91427953799996,-21.018918031999817],[-45.75358554599984,-21.089461134999908],[-45.7538225859999,-21.19903021199997],[-45.581302566999966,-21.195546189999902],[-45.54763447299996,-21.089560208999956],[-45.44034158599993,-21.151831546999972],[-45.344734580999955,-21.128228107999917],[-45.45939247899997,-20.987736681999934],[-45.405860615999984,-20.75832147699998],[-45.27126351199996,-20.764049166999882],[-45.27007261099993,-20.68530168899997],[-45.310184543999924,-20.61276469899991],[-45.435127539999826,-20.570972026999925],[-45.48212051199994,-20.390478302999895],[-45.64085062399994,-20.467066937999903],[-45.68651154499997,-20.382192791999955],[-45.75534054899998,-20.347854648999885],[-45.88419353499984,-20.331011717999957],[-45.937015617999975,-20.27957968899989],[-45.86476562399997,-20.21108143499987],[-45.741405466999936,-20.25453389199987],[-45.65349556399991,-20.232881256999974],[-45.57879654499993,-20.280493483999976],[-45.541656499999874,-20.21989299499984],[-45.38090148799995,-20.12492720499995],[-45.213684530999956,-20.116071723999823],[-45.1274416199999,-20.02707804099998],[-45.047714465999945,-20.028527942999972],[-45.02367047399997,-20.163627122999856],[-45.09191861199997,-20.372256380999886],[-45.04323953499994,-20.490863495999918],[-44.92272553699996,-20.476845433999927],[-44.66075149999995,-20.329821822999975],[-44.63047455699996,-20.173977599999944],[-44.64130347299994,-20.009651896999912],[-44.80817459299993,-19.75817032599997],[-45.033260543999916,-19.645855840999843],[-45.018943582999896,-19.57767794299997],[-44.93029758099988,-19.618416339999953],[-44.78630855399996,-19.647346813999945],[-44.77474957399994,-19.54521080899997],[-44.64526760999985,-19.622846342999935],[-44.531806480999876,-19.864234425999882],[-44.229850597999985,-19.90420990099983],[-44.03982547699991,-19.877935651999962],[-43.8346596209999,-19.82876724099998],[-43.693962502999966,-19.842176608999864],[-43.566173515999935,-19.8757506579999],[-43.5260205109999,-19.830695077999962],[-43.449729601999934,-19.83513581099993],[-43.38023356599996,-19.734476696999934],[-43.33921856699993,-19.630324844999905],[-43.36223259099995,-19.562829736999845],[-43.35671646099996,-19.429603408999924],[-43.31589860399998,-19.29486247099993],[-43.37170447699992,-19.170800580999924],[-43.52413156599994,-19.031576666999968],[-43.42066551999983,-19.21934973799995],[-43.43524148199998,-19.299282080999944],[-43.50048856399991,-19.334005120999848],[-43.54928548899983,-19.279648310999903],[-43.58124149499997,-19.14299127099997],[-43.579788575999885,-19.002525324999965],[-43.65060057099987,-18.858608885999956],[-43.69768155299988,-18.699774334999972],[-43.69643348799991,-18.620103171999972],[-43.63678350599997,-18.591965625999876],[-43.58024253999997,-18.491755614999875],[-43.65874057199994,-18.42872940299992],[-43.80823147999996,-18.460555656999873],[-43.84504647499995,-18.40564798799994],[-43.81871757599998,-18.27987937499995],[-43.81414759499995,-18.0530392579999],[-43.86965557499997,-18.06214753699993],[-43.948722570999905,-18.01082464099983],[-43.991455524999935,-18.11490725899995],[-43.853790476999905,-18.612028548999888],[-43.70133958299988,-18.886229435999837],[-43.617671592999955,-19.101600761999862],[-43.596809538999935,-19.262466079999854],[-43.67103548299991,-19.264526016999923],[-43.77912850599989,-19.079295008999907],[-43.882804601999965,-18.824291865999953],[-43.94339754799995,-18.736555299999964],[-44.07736248899988,-18.45727196199988],[-44.210823509999955,-18.457406910999964],[-44.23149847999997,-18.409935666999957],[-44.23091560299997,-18.24502255999988],[-44.18354058299997,-18.073527814999977],[-44.122848562999934,-18.028467541999873],[-44.101158544999976,-17.948556320999955],[-44.02052647999989,-17.864634526999907],[-43.930751602999976,-17.711920776999932],[-43.87309249099991,-17.50350743599995],[-43.88968262399993,-17.39673020399988],[-43.85148947699986,-17.2964593399999],[-43.799076597999886,-17.272454742999912],[-43.766006468999876,-17.405329533999975],[-43.782760552999946,-17.454171721999955],[-43.70784360499988,-17.502384596999946],[-43.65497257099986,-17.684914619999972],[-43.674583542999926,-17.77370395299988],[-43.660865551999905,-17.812881806999883],[-43.67407258199995,-17.99918234499995],[-43.5747145069999,-18.221035899999947],[-43.5198095209999,-18.297754453999914],[-43.505939482999906,-18.426705507999884],[-43.37189055499988,-18.34314866199992],[-43.32608060399991,-18.20047408599993],[-43.232879540999875,-18.184842170999843],[-43.17746359399996,-18.071799968999983],[-43.15585353899991,-17.819612139999947],[-43.08869152799997,-17.900897321999878],[-42.954807555999935,-17.975212783999893],[-42.91048455499998,-17.952531353999973],[-42.74326357399991,-17.940271814999903],[-42.77909855699994,-17.827086952999878],[-42.76794861499991,-17.758288961999938],[-42.70820257599985,-17.677965854999968],[-42.68822447799994,-17.58475255299993],[-42.6118395229999,-17.58813532199997],[-42.50364256399996,-17.63890635399997],[-42.49703561299998,-17.71651137799995],[-42.320972562999884,-17.739370168999926],[-42.27275449199993,-17.667812519999927],[-42.334270619999984,-17.598959543999854],[-42.28264262299996,-17.524905261999947],[-42.26654048399996,-17.43093205699995],[-42.340312463999965,-17.315456923999875],[-42.30245257999991,-17.14973244899994],[-42.2412645199999,-17.032067626999947],[-42.10562554499995,-17.09763355599995],[-42.01517860699994,-17.042192965999902],[-41.98952059499993,-16.975838132999968],[-42.03202857899993,-16.886381599999936],[-41.86988049399997,-16.840241402999936],[-41.822864555999956,-16.86942467499989],[-41.69215346899995,-16.86395397399997],[-41.59566150299992,-16.78317204099983],[-41.67840949499998,-16.61794025399996],[-41.855838459999916,-16.537623516999872],[-42.04446749099992,-16.609319801999902],[-42.15658550499995,-16.57580409199994],[-42.245803487999865,-16.484005655999965],[-42.213306513999896,-16.396839394999972],[-42.26418349299996,-16.287485229999845],[-42.284404498999834,-16.155535465999947],[-42.24299957399995,-16.10394066099991],[-42.2679484759999,-16.00172821299998],[-42.37311956799988,-15.974178908999932],[-42.41040746999994,-15.911230815999943],[-42.283424486999934,-15.760911608999834],[-42.14353957499992,-15.80520761999992],[-42.11051554699998,-15.93391459299994],[-42.04317852199995,-15.996834522999961],[-41.91733547799993,-16.012521421999907],[-41.78564856999992,-15.953183414999955],[-41.76214956899992,-15.860025266999969],[-41.87102546199992,-15.772013774999948],[-41.934452496999825,-15.801453868999943],[-41.9783555649999,-15.880304778999971],[-42.074092489999884,-15.80587951299998],[-42.066436458999874,-15.766916068999876],[-41.955368530999976,-15.69003306199994],[-42.03569046499996,-15.567032990999962],[-42.129661489999876,-15.57258365499996],[-42.112518486999875,-15.456131023999944],[-42.20771746099996,-15.4605756119999],[-42.27130157299996,-15.302277000999936],[-42.322841559999915,-15.314897128999974],[-42.33792160999991,-15.537516789999927],[-42.415283558999874,-15.463759394999897],[-42.468799495999974,-15.27860650599996],[-42.47941953499998,-15.169640590999961],[-42.562347569999986,-15.078182459999937],[-42.63341856599993,-15.15104869199996],[-42.599712585999896,-15.283027959999913],[-42.59626058299983,-15.518108157999961],[-42.63446060399991,-15.582952907999925],[-42.65672645899997,-15.650110727999902],[-42.541511499999956,-15.764341147999971],[-42.504253604999974,-15.85902329399994],[-42.57855649499993,-15.98076255899997],[-42.686454554999955,-16.056219636999913],[-42.68153353999992,-15.8566793789999],[-42.77015657599998,-15.824319364999894],[-42.77841157699993,-15.494342444999916],[-42.714321532999975,-15.409628057999953],[-42.73238755199992,-15.05436796499987],[-42.705123567999976,-14.907665547999954],[-42.79646250799982,-14.801788196999894],[-42.92794456199994,-14.78456539799987],[-42.91944849699996,-14.855233725999938],[-42.846603555999934,-14.893380270999955],[-42.841735513999936,-14.95317039799994],[-42.888050557999975,-15.131009069999948],[-42.84634354899998,-15.317708922999941],[-42.89823155299996,-15.598182992999966],[-42.90345750199998,-15.802128946999915],[-42.960239531999946,-15.85772443399992],[-43.05031950999995,-15.824170334999849],[-43.11334656099996,-15.907584017999909],[-43.21995548399997,-15.834259798999938],[-43.230945499999905,-15.957091058999879],[-43.390560573999835,-16.095984055999963],[-43.4792255189999,-16.368765047999943],[-43.50330756499994,-16.511230915999874],[-43.566699563999975,-16.62567088399993],[-43.674217588999966,-16.612281798999845],[-43.853721576999874,-16.71697210499991],[-43.91633657399984,-16.604203152999958],[-43.849121588999935,-16.471085454999923],[-43.850311483999974,-16.386000922999813],[-43.89671353199998,-16.274269985999922],[-43.98528258899995,-16.236720233999904],[-44.07143346599986,-16.2876072709999],[-44.074546504999944,-16.158516405999933],[-44.218780617999926,-16.11920561599993],[-44.173423457999945,-16.06078559399998],[-44.205757487999904,-15.994908696999971],[-44.0808525459999,-15.797190329999921],[-44.120063591999894,-15.718143114999918],[-44.119819510999946,-15.597140954999873],[-44.22304952199988,-15.676316747999977],[-44.3697584759999,-15.819613596999943],[-44.430656522999925,-15.839152651999939],[-44.61691246999993,-15.820443572999977],[-44.663932599999896,-15.9346014059999],[-44.617790557999854,-15.992181895999863],[-44.68501258399988,-16.033898292999936],[-44.79553954399995,-16.22702186899994],[-44.87822349899989,-16.27985970999987],[-44.699615534999964,-16.420319787999972],[-44.676811561999955,-16.51847656799987],[-44.786148459999936,-16.57628085499988],[-44.803859588999956,-16.682765222999876],[-44.74910748899998,-16.75192011499996],[-44.74650155499984,-16.854160725999918],[-44.64590446699998,-16.793774477999932],[-44.62216959999989,-16.880492139999888],[-44.74591046299997,-16.92814392999992],[-44.85716245799989,-16.896781865999912],[-44.91944452499985,-16.715476270999943],[-44.910610501999884,-16.56333684899994],[-44.971626565999884,-16.354413050999938],[-44.96647655699991,-16.298478263999982],[-44.89397460299995,-16.154940518999922],[-44.99143954099998,-16.017602196999917],[-45.12660259199993,-15.942767894999974],[-45.08800560399993,-15.88805150099995],[-44.938240607999944,-15.815012099999876],[-44.78715546199993,-15.71458030399998],[-44.70387253599989,-15.61519373099992],[-44.641807560999894,-15.587744505999922],[-44.55512258899995,-15.454563943999972],[-44.520225540999945,-15.29995102199996],[-44.482738483999924,-15.227456779999955],[-44.456565488999956,-15.051242017999868],[-44.35223359299994,-15.068521981999936],[-44.27646655299998,-14.809139628999958],[-44.345207545999926,-14.777216982999903],[-44.47351051199996,-14.621031113999948],[-44.45969747099991,-14.540722422999977],[-44.533500463999985,-14.486483797999938],[-44.59239154799985,-14.382531769999957],[-44.59291860199994,-14.291603710999937],[-44.66111762199995,-14.149208083999952],[-44.63600946299988,-14.083677190999936],[-44.57254051899997,-14.076149906999945],[-44.48341356299994,-13.831459018999965],[-44.52259057799995,-13.666656888999853],[-44.50366558199994,-13.587366263999911],[-44.54745851199988,-13.476076717999888],[-44.73144547699985,-13.448468404999971],[-44.7442096069999,-13.288477989999876],[-44.65811958299997,-13.088359380999975],[-44.56935858099996,-13.028050748999874],[-44.452171526999905,-13.141952095999898],[-44.420177467999906,-13.254375377999963],[-44.29847357499989,-13.215489885999887],[-44.2546315269999,-12.982203749999883],[-44.330661591999956,-12.913549257999932],[-44.44782651699995,-12.663869292999891],[-44.39761355199994,-12.595218823999971],[-44.296218506999935,-12.617111181999917],[-44.15194348999995,-12.586615470999902],[-44.102848503999894,-12.520307743999979],[-44.104949511999905,-12.397163336999938],[-44.072677507999856,-12.311816953999823],[-44.07681246899995,-12.186390657999937],[-44.14730846499998,-12.08945713299994],[-44.14351649199983,-12.012150336999866],[-44.3961715289999,-12.058249462999925],[-44.393768604999934,-12.015008397999907],[-44.288513526999964,-11.969240356999876],[-44.20382646499985,-11.807007447999979],[-44.06187457599998,-11.646821398999975],[-43.932762588999935,-11.62544503099997],[-43.7800754939999,-11.656735848999972],[-43.69928752599998,-11.738695103999873],[-43.629989470999874,-11.929466214999934],[-43.47625748699994,-12.06919471999987],[-43.45073660399987,-12.14100449599988],[-43.469268488999944,-12.211354815999925],[-43.45590957899998,-12.320876450999947],[-43.39132651199998,-12.364782367999908],[-43.43553954299995,-12.565505647999885],[-43.47869846499998,-12.572445192999965],[-43.56639848599991,-12.463920836999932],[-43.640201478999984,-12.244095534999872],[-43.69789847699991,-12.223409165999954],[-43.75248746499989,-12.270726685999932],[-43.82717156399997,-12.238746036999828],[-43.83741760199996,-12.371758961999944],[-43.747207536999895,-12.412354194999978],[-43.76638046999983,-12.477544781999882],[-43.882385506999924,-12.51822886399998],[-43.93074053899994,-12.588785210999959],[-43.83393056299991,-12.684012850999977],[-43.768501593999986,-12.71608469499995],[-43.515197462999936,-12.793418312999904],[-43.38042450599994,-12.761629609999886],[-43.25701958999997,-12.533774947999916],[-43.32795747999995,-12.210835807999956],[-43.39817050399995,-11.97495295899995],[-43.530334508999886,-11.897286411999914],[-43.559455587999935,-11.776793703999942],[-43.64877348299996,-11.673737701999926],[-43.69260446699991,-11.520679287999883],[-43.88687854199998,-11.274865224999928],[-43.99834461099988,-11.153854347999925],[-44.06110360899993,-10.99444965999993],[-44.1025695539999,-10.83731361799994],[-44.17887152799989,-10.66186881699997],[-44.16098756399998,-10.569553217999896],[-44.31892357399988,-10.530868722999855],[-44.42279848899989,-10.347828576999973],[-44.578590575999954,-10.349771333999968],[-44.687972568999896,-10.40532172699983],[-44.837371610999924,-10.616311831999894],[-44.90209147099995,-10.5800324409999],[-44.87646447199984,-10.462376503999963],[-44.81234760699988,-10.349701428999879],[-44.926300586999844,-10.288116736999825],[-44.90209951799994,-10.213734051999893],[-44.772407502999954,-10.187473883999871],[-44.71876550199988,-10.256971930999953],[-44.593009461999884,-10.22373114699991],[-44.53266160299995,-10.158936017999963],[-44.544937569999945,-10.06484446099995],[-44.647560563999946,-10.02940979799996],[-44.68905651699998,-9.984699049999904],[-44.63483448799991,-9.901860867999915],[-44.473922565999885,-9.81368827599988],[-44.407150480999974,-9.80792538199995],[-44.36838551999995,-9.684512083999948],[-44.35964956599997,-9.528748159999907],[-44.29256450099996,-9.454859335999913],[-44.2514574679999,-9.48251358199991],[-44.18045855699995,-9.433541976999948],[-44.08747860799997,-9.444329318999962],[-44.1074215029999,-9.306229919999907],[-44.07984956699988,-9.229696605999948],[-44.09734360499988,-9.158505413999876],[-44.011283587999856,-9.111595757999964],[-43.96576650099996,-9.000742740999897],[-43.82726259099991,-8.94563759499988],[-43.72602847899992,-8.999875716999952],[-43.71322646299984,-8.945175584999845],[-43.74633749499998,-8.776828579999972],[-43.82246361599988,-8.695037465999917],[-43.92935953699998,-8.703637968999942],[-43.91912053899995,-8.55373969999988],[-43.77238459499995,-8.402830573999893],[-43.70082057599984,-8.25205824099993],[-43.68994857699994,-8.136275491999925],[-43.717704578999985,-7.98481148399992],[-43.697532522999836,-7.865501964999964],[-43.68848459399993,-7.612622292999959],[-43.67189747799995,-7.477518083999826],[-43.62796758799993,-7.398742610999875],[-43.524055457999964,-7.320313477999946],[-43.32479850899989,-7.215723921999938],[-43.23227654699997,-7.23483566699997],[-43.23980751899995,-7.436405015999924],[-43.17681852199996,-7.509070584999961],[-42.9950145389999,-7.55685145599989],[-42.90761961999982,-7.541804430999946],[-42.72624546099996,-7.453719680999939],[-42.624145497999905,-7.330625732999977],[-42.50917059699992,-7.261290629999905],[-42.43174745999988,-7.156297234999897],[-42.39471051199996,-7.155853160999925],[-42.33588061599988,-7.251609363999933],[-42.18896060599991,-7.197859403999928],[-42.13472751299997,-7.043152605999978],[-42.16610349099989,-6.913552791999962],[-42.051937610999914,-7.005761102999941],[-42.003250487999935,-7.206749753999929],[-41.91402445799997,-7.330309567999961],[-41.81750147899987,-7.313642823999942],[-41.88339245799989,-7.243250091999926],[-41.96999361099995,-7.10039530499995],[-41.93635150099993,-7.001943648999941],[-41.83931353799983,-7.047379263999971],[-41.687438480999845,-6.977684241999896],[-41.67124548199985,-6.877824594999936],[-41.59521860299998,-6.845261738999966],[-41.473701458999926,-6.720670782999889],[-41.56489958299994,-6.598417874999939],[-41.65867648299985,-6.647434406999878],[-41.63564250999997,-6.283712781999952],[-41.57001857899991,-6.251740179999956],[-41.49459050199994,-6.284679718999939],[-41.40127561299994,-6.381008572999974],[-41.372337594999976,-6.356165450999924],[-41.396602533999896,-6.200724731999969],[-41.441066518999946,-6.162024814999825],[-41.42488458399998,-6.056682396999975],[-41.46907850399998,-5.862584675999926],[-41.54006953599992,-5.822609535999959],[-41.535892497999896,-5.731932262999919],[-41.72154260099995,-5.684711637999953],[-41.91260959299996,-5.860867894999899],[-41.9846074589999,-5.98885938899997],[-42.169628583999895,-6.175544656999875],[-42.35255456899989,-6.437994450999895],[-42.55688860399994,-6.417921133999926],[-42.64232249399993,-6.338790938999978],[-42.741702528999895,-6.339300725999976],[-42.81726857099994,-6.384109374999923],[-42.91825860199998,-6.401636101999941],[-42.901752622999936,-6.326317660999905],[-42.83877955199995,-6.284278895999876],[-42.862682560999986,-6.209414083999945],[-42.96297052399996,-6.158955026999934],[-43.003387557999986,-6.102779008999903],[-43.01621253999991,-5.985563624999941],[-43.121383464999894,-6.04158340399988],[-43.11307146599995,-6.132972970999901],[-43.149314480999976,-6.264554098999952],[-43.30515652399998,-6.125492289999954],[-43.306152461999886,-6.04283331299996],[-43.48177361799998,-6.070888213999979],[-43.52034361599988,-5.971430729999952],[-43.671424570999875,-5.976954236999916],[-43.71415752499996,-5.91726351899996],[-43.798168501999896,-5.924835059999907],[-43.85323760599988,-5.813355243999979],[-43.98338660199994,-5.882680121999897],[-44.0593264769999,-5.859269968999968],[-44.094253532999915,-5.759452230999898],[-44.179981458999976,-5.657970684999952],[-44.3203355899999,-5.638959019999959],[-44.47644451299993,-5.56701630699996],[-44.657207463999896,-5.513992218999874],[-44.83813453199991,-5.422180874999981],[-44.788314510999896,-5.196430573999976],[-44.78858960499991,-5.020115396999927],[-44.80990260599998,-4.969605376999937],[-44.91991860499991,-4.989023731999907],[-45.00339548799997,-4.940444400999979],[-45.105205603999934,-4.754647278999926],[-45.18720257799998,-4.713894297999957],[-45.39828454899998,-4.743109924999942],[-45.39377558799998,-4.846652244999973],[-45.33613256899997,-4.88247867899986],[-45.29051255199994,-5.007508343999973],[-45.36005049799991,-5.031320659999949],[-45.460342483999966,-4.89085404399998],[-45.52422750599993,-4.875715320999973],[-45.57312048799997,-4.967255426999941],[-45.71448162099989,-5.051403364999942],[-45.84627162599992,-5.182051586999876],[-46.03018550099995,-5.200249368999948],[-46.13978156699994,-5.127113575999886],[-46.1861725519999,-5.262082835999877],[-46.31031054999994,-5.274993649999828],[-46.36440651399988,-5.242372287999899],[-46.44305759999992,-5.052845219999938],[-46.58595262099993,-5.054782947999968],[-46.663066464999986,-5.095902888999888],[-46.738494541999955,-5.264993535999906],[-46.79737456199996,-5.189004207999972],[-46.844623516999945,-5.226977246999922],[-46.857471465999936,-5.332536420999929],[-46.930301487999884,-5.290096497999969],[-46.92926062299995,-5.100252593999812],[-47.08912262799993,-5.037391169999978],[-47.205696460999945,-5.222632570999963],[-47.22373951299983,-5.311252085999968],[-47.28446153999994,-5.324454086999935],[-47.459117603999914,-5.193272775999901],[-47.59348252899997,-5.134105088999888],[-47.78989046999993,-5.00215297799997],[-47.90864946499994,-5.11997923499996],[-47.93694358499994,-5.216996914999868],[-47.80413048499992,-5.340438878999919],[-47.7270126169999,-5.373768343999927],[-47.628051509999864,-5.470208509999907],[-47.551040594999904,-5.496454427999936],[-47.486495581999975,-5.589078816999972],[-47.52441447299998,-5.665790162999883],[-47.588836607999895,-5.625813848999883],[-47.70032446999983,-5.661422352999978],[-47.80611448099995,-5.610019157999886],[-47.91988356199994,-5.669648687999938],[-47.79434947499993,-5.887061677999952],[-47.72062661299998,-5.971667769999954],[-47.71587357099992,-6.072394106999923],[-47.788223476999974,-6.145799964999924],[-47.73514557799996,-6.223535243999947],[-47.74415562099989,-6.322002991999966],[-47.8453136249999,-6.388631243999953],[-47.83458747099991,-6.551192388999937],[-47.875602470999866,-6.729921386999933],[-47.83493850499991,-6.854602196999906],[-47.88409451199993,-6.981848874999969],[-48.01699059299989,-7.022835039999904],[-48.13883261999996,-7.199643072999891],[-48.17645261299998,-7.290243567999823],[-48.188713492999966,-7.42890958299995],[-48.2553176049999,-7.52194585899997],[-48.264846486999886,-7.775211433999914],[-48.32704154999993,-7.815558729999964],[-48.32894155999992,-7.926716680999959],[-48.396766578999916,-8.01179936799997],[-48.45264453699997,-8.20571855399993],[-48.37817350599994,-8.326874940999971],[-48.492378613999904,-8.383546664999926],[-48.474723475999895,-8.459127458999944],[-48.40630350899994,-8.502352263999967],[-48.433731610999985,-8.572396139999967],[-48.41719847399992,-8.645660176999968],[-48.46201349299997,-8.711215376999917],[-48.5245134889999,-8.708084567999947],[-48.56195846799989,-8.86989888599993],[-48.533821592999914,-8.943121682999902],[-48.564720472999966,-9.016642708999939],[-48.643112557999984,-9.089274413999817],[-48.55365753399997,-9.139239944999929],[-48.50994155099994,-9.0816970059999],[-48.41934960599991,-9.12588287999995],[-48.38270560099994,-9.050032354999928],[-48.278282510999986,-9.0814919849999],[-48.254814522999936,-9.131763454999941],[-48.29556247399984,-9.287836168999888],[-48.29496752699998,-9.382942606999961],[-48.325477486999944,-9.506897710999965],[-48.31163762399996,-9.669516355999917],[-48.26334361199997,-9.771155146999945],[-48.30098757699983,-9.863089536999894],[-48.238586487999896,-9.98177728599984],[-48.24028751099996,-10.060847634999902],[-48.14480556399991,-10.088721820999979],[-48.128410560999896,-10.24552476599996],[-48.07612659599994,-10.376785704999975],[-48.0846255109999,-10.467344122999975],[-47.993614470999944,-10.497434986999963],[-47.985565496999925,-10.61187529099982],[-48.018478547999905,-10.699237185999891],[-48.11386158899995,-10.829578126999934],[-48.30424461699994,-10.898943236999969],[-48.35903158599996,-10.89256276499998],[-48.404838519999885,-10.98235842899993],[-48.465469518999896,-10.978304772999934],[-48.56116453499993,-11.098335302999942],[-48.550514487999976,-11.252989630999934],[-48.67387347199997,-11.28386655099996],[-48.72695958499986,-11.35080476499985],[-48.78414159899995,-11.491175155999883],[-48.83624250399987,-11.542065713999818],[-48.94636562399995,-11.492495137999924],[-48.95418560499991,-11.387039228999924],[-49.01554147099995,-11.292294889999823],[-49.12034660899997,-11.318286165999893],[-49.20474248399995,-11.254615552999894],[-49.24384355899997,-11.157344403999957],[-49.17757455599997,-10.943511157999922],[-49.18846851599989,-10.677381540999875],[-49.280380609999895,-10.684798015999888],[-49.29928548999993,-10.630979994999961],[-49.21817062799988,-10.567413149999936],[-49.141151498999875,-10.400608079999927],[-49.152137491999895,-10.301996664999933],[-49.20965561999992,-10.19215769199991],[-49.307357597999896,-10.174279929999955],[-49.36175547899995,-9.954192274999969],[-49.41259758899997,-10.01639588699993],[-49.481475542999874,-9.927144040999849],[-49.48058354099987,-9.849082705999933],[-49.234603516999925,-9.820505780999895],[-49.17907759899998,-9.775497977999976],[-49.16662561099997,-9.707750742999906],[-49.236419539999986,-9.66445452499994],[-49.33376361099994,-9.694695592999949],[-49.58288550799995,-9.808135432999904],[-49.61402846899995,-9.869093326999973],[-49.53930648399995,-9.988208887999974],[-49.61444052299993,-10.09182463399992],[-49.67635361899988,-9.986422871999878],[-49.747299555999916,-9.953355257999931],[-49.794738613999925,-10.014374171999975],[-49.918106481999985,-9.910227180999925],[-49.928733561999934,-9.835604437999962],[-49.88033259699995,-9.675833963999935],[-49.93495159299994,-9.63921946399995],[-49.93880458599995,-9.430193070999962],[-50.02130162399993,-9.31433555599989],[-49.83621260599995,-9.100371550999967],[-49.82101453899992,-9.185332700999936],[-49.691497538999954,-9.05299116699996],[-49.686691522999865,-9.142539732999978],[-49.74312553599998,-9.311475649999977],[-49.82601954099988,-9.35061796499997],[-49.86344959999997,-9.433471065999868],[-49.819290548999845,-9.47586187099995],[-49.7382435799999,-9.42169600099993],[-49.675476536999895,-9.482377459999952],[-49.58398454299993,-9.44077438599993],[-49.488388601999986,-9.604622990999928],[-49.403625599999884,-9.627262343999917],[-49.262351471999864,-9.556698118999975],[-49.219711556999926,-9.489967104999948],[-49.19140653999989,-9.309702709999897],[-49.264793622999946,-9.204409409999869],[-49.30759447099996,-9.226362619999975],[-49.39577460699991,-9.188802473999942],[-49.42606361999992,-9.125762682999948],[-49.4254374919999,-8.922600436999971],[-49.44528147999995,-8.859525944999916],[-49.41538255999984,-8.7779507489999],[-49.36326556299986,-8.788138784999887],[-49.332832548999875,-8.92233020499998],[-49.29678349199986,-8.972707621999916],[-49.14654558899997,-8.880415156999902],[-49.19187156799984,-8.819748449999963],[-49.296142611999926,-8.785654890999979],[-49.21774247999997,-8.677549797999916],[-49.11704246299996,-8.690999734999878],[-48.98027058999992,-8.75820399099996]],[[-49.759986572999935,-8.965869329999975],[-49.69644956699989,-8.880770213999881],[-49.65351159199997,-8.936950422999814],[-49.759986572999935,-8.965869329999975]],[[-49.47098559199998,-10.36345965299995],[-49.386032487999955,-10.375686502999883],[-49.36001556399998,-10.463945595999974],[-49.481224588999964,-10.41630168499995],[-49.47098559199998,-10.36345965299995]],[[-49.07682458299996,-14.96956623899996],[-49.040626495999845,-15.008274872999948],[-49.058597463999945,-15.116716751999832],[-49.11334956399992,-15.173872278999966],[-49.414066601999934,-15.223220062999872],[-49.475746512999876,-15.288605780999944],[-49.616935480999985,-15.306468454999958],[-49.83380146799993,-15.431369540999924],[-49.828403521999974,-15.536714808999932],[-49.93034758099992,-15.555293632999962],[-50.01219552499987,-15.599506663999932],[-50.02860662099988,-15.69876331699993],[-50.09250253899995,-15.71478649799991],[-50.11007352299998,-15.631635671999902],[-50.22693250799989,-15.448630394999896],[-50.21938359899997,-15.364596953999978],[-50.047260545999904,-15.373554357999922],[-49.93828557899997,-15.414457710999955],[-49.892555591999894,-15.333666724999887],[-49.87944746799997,-15.24256784299996],[-49.95528759899997,-15.16264874299992],[-49.87116262799998,-14.997911655999928],[-49.62392850299983,-15.075043437999852],[-49.47340058599991,-15.027058717999978],[-49.39362347499991,-15.026373748999902],[-49.27057260999993,-14.97815768899983],[-49.07682458299996,-14.96956623899996]],[[-44.99909959499996,-15.492580735999923],[-44.97293062299997,-15.56460508899994],[-45.072868556999936,-15.631448922999937],[-45.153442618999975,-15.60204470399998],[-45.11196845899997,-15.526772362999907],[-44.99909959499996,-15.492580735999923]],[[-49.39564552499996,-15.634170694999966],[-49.41235753199993,-15.690996812999913],[-49.31908052799997,-15.943092944999933],[-49.202964513999916,-15.971791239999902],[-49.082130494999944,-16.051810084999943],[-49.14776649699991,-16.110604441999953],[-49.16095357699999,-16.191372125999976],[-49.220729622999954,-16.22126433899996],[-49.26161554099997,-16.299694309999893],[-49.35848653699992,-16.332169155999964],[-49.446544464999874,-16.319547015999945],[-49.520572595999965,-16.185930593999956],[-49.60993960899992,-16.168683486999953],[-49.57037752899993,-16.395411285999955],[-49.57748052099993,-16.594088877999923],[-49.53112457299994,-16.66684614499991],[-49.613426480999976,-16.707862652999893],[-49.55105254799997,-16.78917951899996],[-49.558536581999874,-16.921356431999982],[-49.6461024919999,-16.982082817999924],[-49.67882946599997,-17.060185726999975],[-49.749340549999886,-17.043381016999888],[-49.80189860299993,-16.93869121399996],[-50.03182560699992,-16.873793490999958],[-50.145900626999946,-16.876778285999933],[-50.27522651999993,-16.980079878999845],[-50.45706956199996,-17.00480515199996],[-50.67186354299997,-17.049995344999957],[-50.827960563999966,-17.02531700999998],[-50.90015758399994,-17.057521119999933],[-50.9092864829999,-17.13704107399991],[-51.089462531999914,-17.180697545999863],[-51.19491961499995,-17.15988360399996],[-51.28482860199989,-17.20514772499996],[-51.303722585999935,-17.146005518999914],[-51.25337249299986,-17.070963010999947],[-51.17382052099998,-17.04094909199995],[-51.209457522999855,-16.950180791999912],[-51.18887357999989,-16.885235793999982],[-51.108287615999984,-16.852873600999942],[-51.073425604999954,-16.78517783099994],[-50.99675750999995,-16.77931318099985],[-50.90783356399993,-16.84650721099996],[-50.84251758299996,-16.85816945499988],[-50.672676586999955,-16.836495697999908],[-50.5583995639999,-16.902676522999855],[-50.43576460899993,-16.872075535999954],[-50.49529657299996,-16.76163541199992],[-50.54131355699991,-16.625456977999875],[-50.62331052999991,-16.551304626999865],[-50.685543478999875,-16.425942367999937],[-50.580848479999986,-16.307670864999977],[-50.53927256299994,-16.393519322999964],[-50.551475608999965,-16.483463849999964],[-50.49482752199998,-16.49073230099998],[-50.42977959399997,-16.3094597299999],[-50.31900452999997,-16.260893809999857],[-50.36853453699996,-16.218988316999855],[-50.46326060399997,-16.216478439999946],[-50.5711405589999,-16.15008287099988],[-50.64426059499988,-16.245493738999926],[-50.70530649799997,-16.27964563599994],[-50.828945604999944,-16.273330877999967],[-50.87247048199998,-16.228800843999863],[-50.903316555999936,-16.102332676999822],[-50.825984613999935,-15.988493020999897],[-50.772453589999884,-16.013181413999916],[-50.65966753799995,-15.988847909999947],[-50.618884549999905,-16.121819427999924],[-50.56456361499994,-16.13379297699987],[-50.44480851399993,-16.039090881999982],[-50.18261352999997,-16.04154359499995],[-49.98802161299989,-15.999073496999927],[-49.83580356899995,-16.005030012999953],[-49.77063762499995,-15.813366061999943],[-49.72417455599998,-15.750863215999914],[-49.75390650799994,-15.695749687999978],[-49.87225361599991,-15.634662711999908],[-49.810607567999966,-15.563603116999957],[-49.73375356299994,-15.54474433699994],[-49.62561058299991,-15.561406219999924],[-49.49293159299998,-15.535804869999936],[-49.39616352699994,-15.565390975999946],[-49.39564552499996,-15.634170694999966]],[[-43.305568578999896,-16.81591493999997],[-43.22659646599993,-16.800876967999955],[-43.185005462999925,-16.989232245999858],[-43.20384948999998,-17.078422736999983],[-43.25947950999995,-17.071934137999847],[-43.28969157799992,-16.923875193999947],[-43.37747558499996,-16.860002241999894],[-43.305568578999896,-16.81591493999997]],[[-55.21975361999989,-17.31270615099993],[-55.176864594999984,-17.28032736199998],[-55.04727148699993,-17.26707423199997],[-54.998294517999966,-17.330358103999913],[-54.99902759899993,-17.56919657899988],[-55.08501452599995,-17.520522531999973],[-55.20643661999992,-17.39769714099998],[-55.24961850899996,-17.406426556999975],[-55.28167358899998,-17.52853814599996],[-55.51110857499998,-17.477543149999974],[-55.587837521999916,-17.474674191999952],[-55.61444855599996,-17.405140437999933],[-55.554302532999884,-17.35732251899998],[-55.21975361999989,-17.31270615099993]],[[-50.71134146899993,-17.47032968399992],[-50.623168540999984,-17.47423229899988],[-50.545154479999894,-17.55764531099993],[-50.44095652699991,-17.508108095999944],[-50.3039355439999,-17.55605224599998],[-50.30945251299994,-17.628549841999813],[-50.46176560799984,-17.744125892999932],[-50.505351503999975,-17.832883541999877],[-50.63950352899991,-17.80079225199995],[-50.897987508999904,-17.801440508999917],[-51.030193591999875,-17.81952832099995],[-51.1044616129999,-17.803540175999956],[-51.17044848099994,-17.714916636999817],[-51.107845554999926,-17.609589976999928],[-50.964805526999896,-17.594663818999948],[-50.90364059999996,-17.487044539999943],[-50.797012565999864,-17.50074677299989],[-50.71134146899993,-17.47032968399992]],[[-49.40612458099997,-17.505899295999882],[-49.26671257599992,-17.49451516299996],[-49.18492162999996,-17.696355917999938],[-49.34616061299988,-17.787828129999923],[-49.409870620999925,-17.900494487999936],[-49.46323048699992,-17.896918599999935],[-49.48548846299991,-17.80607704199997],[-49.46850153099996,-17.701043413999912],[-49.525855540999885,-17.55310952799988],[-49.40612458099997,-17.505899295999882]],[[-44.24585751899991,-17.873914969999873],[-44.30541647299998,-17.799678464999886],[-44.28657160699993,-17.710489817999928],[-44.21971855299989,-17.66210796499996],[-44.22452155199994,-17.82763680599993],[-44.24585751899991,-17.873914969999873]],[[-54.91512256899995,-17.834222299999908],[-55.04272061599988,-17.73995924899998],[-55.24518163199991,-17.69369902199992],[-55.22476951899995,-17.636730243999978],[-55.12071657199988,-17.640336138999885],[-54.90798152299993,-17.71708536999995],[-54.86006553499993,-17.780342587999826],[-54.91512256899995,-17.834222299999908]],[[-54.835697497999945,-21.15038080799991],[-54.79874755499998,-21.148797800999944],[-54.74521652999988,-21.264113510999948],[-54.68579051299997,-21.51367394899995],[-54.788330524999935,-21.513769670999977],[-54.84331849199998,-21.470786097999962],[-54.87701055799994,-21.275998713999968],[-54.835697497999945,-21.15038080799991]],[[-45.923786459999974,-18.968584484999894],[-45.86711859199994,-18.926323934999914],[-45.76413752399992,-18.938238139999896],[-45.765846593999925,-19.03530862499997],[-45.8116645909999,-19.05868206499997],[-45.898761617999924,-19.327648285999942],[-46.00309351399994,-19.352335001999904],[-46.06581160699989,-19.397266361999982],[-46.13710354899996,-19.38905176199995],[-46.08942057899992,-19.19665506499996],[-46.02014548999995,-19.053198623999947],[-45.923786459999974,-18.968584484999894]],[[-44.79222148399998,-11.055555242999958],[-44.790237486999956,-10.98386331599994],[-44.67509461299994,-10.808661590999975],[-44.54315155399996,-10.715020811999977],[-44.435020476999966,-10.708232475999978],[-44.37005653699998,-10.64324607199984],[-44.28949756199995,-10.654045315999952],[-44.25638552399988,-10.730560860999958],[-44.19114648899989,-10.78363607699987],[-44.17944350899995,-10.88898486599993],[-44.26190148699993,-10.89987999899995],[-44.27524547699994,-10.825224398999922],[-44.345741473999965,-10.849466538999877],[-44.418991595999955,-10.961255981999898],[-44.57279247899993,-10.962266671999942],[-44.65524257799996,-11.02880305799988],[-44.79222148399998,-11.055555242999958]],[[-47.35858153599992,-10.785975130999873],[-47.376136594999934,-10.875412720999975],[-47.573020626999835,-10.871996926999941],[-47.6074675669999,-10.812872155999855],[-47.59835057099997,-10.6903297369999],[-47.52941846999994,-10.607176395999943],[-47.44380956599997,-10.664562592999914],[-47.494483534999915,-10.713191209999934],[-47.45638258899993,-10.785983177999924],[-47.35858153599992,-10.785975130999873]],[[-47.489707526999894,-10.300085088999936],[-47.48105656499996,-10.346903717999965],[-47.56429255099994,-10.503418659999966],[-47.641502619999926,-10.461893538999902],[-47.624793463999936,-10.390760684999861],[-47.65412157499998,-10.306469416999903],[-47.61093147199989,-10.235679382999876],[-47.612434514999904,-10.082806208999898],[-47.49766547299993,-10.20520948799998],[-47.489707526999894,-10.300085088999936]],[[-47.681602482999836,-9.531759106999914],[-47.70520759899989,-9.481591571999957],[-47.669296507999945,-9.337076832999912],[-47.68161052999994,-9.24560830799993],[-47.639411502999906,-9.159432452999852],[-47.574897502999875,-9.113131657999872],[-47.540023588999986,-8.982396934999883],[-47.48046848999991,-9.016739603999952],[-47.517341487999886,-9.184137776999933],[-47.49169956999998,-9.20338430299995],[-47.33605952999994,-9.108247019999851],[-47.237808537999854,-9.111394759999882],[-47.24156949699989,-9.208636068999908],[-47.32599655299998,-9.227706574999957],[-47.38808449499993,-9.283163760999912],[-47.384597622999934,-9.414695267999946],[-47.440002505999985,-9.441504449999911],[-47.49378951399996,-9.523233537999886],[-47.64002254399992,-9.511945460999925],[-47.681602482999836,-9.531759106999914]],[[-47.58972156899995,-8.995377149999968],[-47.632514537999896,-9.002576701999942],[-47.74162260999992,-8.887341793999894],[-47.68984960499989,-8.841192207999939],[-47.66201749599992,-8.684192455999948],[-47.5796964779999,-8.62452755499993],[-47.51067351699993,-8.730433068999957],[-47.48280352099994,-8.894984412999975],[-47.519714572999874,-8.912431847999926],[-47.61994956199982,-8.822799462999967],[-47.58972156899995,-8.995377149999968]],[[-48.17723062099992,-8.640424504999942],[-48.151061480999886,-8.768589168999881],[-48.186393549999934,-8.865022461999956],[-48.27298749499988,-8.90905427599995],[-48.28039558799992,-8.824316419999889],[-48.204902468999876,-8.657767332999924],[-48.17723062099992,-8.640424504999942]],[[-43.74792452499997,-7.322326139999916],[-43.75675955399993,-7.424566750999929],[-43.80049850399996,-7.603149903999963],[-43.85343156399995,-7.939539818999947],[-43.90557856799995,-8.084344236999925],[-43.90048957999994,-8.190883590999874],[-43.97174061799984,-8.366669031999947],[-44.07365450299994,-8.504426113999955],[-44.12062048599989,-8.384853738999936],[-44.19206950499989,-8.32463814599987],[-44.33532746199984,-8.33129957999995],[-44.25921659599993,-8.159869878999928],[-44.20406350499991,-8.138650419999976],[-44.085945557999935,-8.155094205999944],[-44.00509656999998,-8.07447689299994],[-44.039230528999894,-8.031853070999887],[-44.13558151199993,-8.07977257999994],[-44.181220471999836,-7.956701597999881],[-44.039237569999955,-7.950163880999924],[-43.96608752799989,-7.896928737999929],[-43.93756055799997,-7.791041327999892],[-43.986206609999954,-7.780364124999949],[-44.07050357799994,-7.86210025399987],[-44.130607522999924,-7.858390422999946],[-44.108871571999885,-7.759351698999978],[-44.0122835489999,-7.645718740999939],[-44.08966058499993,-7.553701368999953],[-44.09442854699989,-7.451631748999887],[-44.00964358499988,-7.405164153999976],[-43.90948453499993,-7.452772693999975],[-43.829521513999964,-7.323364322999964],[-43.74792452499997,-7.322326139999916]],[[-47.68890362399998,-8.372332683999957],[-47.694236525999884,-8.443326565999882],[-47.76833355599996,-8.430064383999934],[-47.787681502999874,-8.28365801599989],[-47.68708760099997,-8.288762762999909],[-47.68890362399998,-8.372332683999957]],[[-47.684127614999966,-7.418409237999981],[-47.78763556999996,-7.495564823999814],[-47.91862459999987,-7.470251476999977],[-47.93107658799988,-7.404558142999974],[-47.860908490999975,-7.351605301999882],[-47.684127614999966,-7.418409237999981]],[[-47.67990162699988,-7.036089007999919],[-47.64902453999986,-7.106211842999812],[-47.753295582999954,-7.139385403999938],[-47.75823252399988,-7.050120146999916],[-47.67990162699988,-7.036089007999919]],[[-47.27445958299995,-6.452495478999879],[-47.4029234809999,-6.499582998999927],[-47.38379648099988,-6.355366654999841],[-47.286132555999984,-6.40334600999995],[-47.27445958299995,-6.452495478999879]],[[-47.757953574999874,-6.568097010999907],[-47.83296557299991,-6.536012426999889],[-47.824249566999924,-6.410887543999934],[-47.68267050499992,-6.357365570999946],[-47.675579582999944,-6.217437743999938],[-47.48170850899993,-6.300753526999927],[-47.3977204979999,-6.300029665999887],[-47.454620544999955,-6.5463766499999],[-47.602497600999925,-6.514095090999945],[-47.757953574999874,-6.568097010999907]]]]},"properties":{"objectid":154,"eco_name":"Cerrado","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Neotropic","eco_biome_":"NO07","nnh":3,"eco_id":567,"shape_leng":345.449464711,"shape_area":161.003728408,"nnh_name":"Nature Could Recover","color":"#E69800","color_bio":"#FEAA01","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":1921063.308733411,"percentage":8.960594694223815}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[146.95959461000007,59.70018626600017],[146.68189964300007,59.75602315200018],[146.48030062200007,59.76809745200018],[146.28289758200015,59.74622671900005],[146.0010066340003,59.66813386800004],[145.58090162300016,59.37474630200006],[145.91499355500014,59.33963400700014],[145.8034976470002,59.292883439000036],[145.77319371400006,59.21223058700019],[145.93649263400005,59.13662766500005],[146.14179964100015,59.19065758],[146.2411035680003,59.264661403000105],[146.27780172000007,59.42197698600012],[146.40409856100007,59.466545576000044],[146.56210363800005,59.47150866900006],[146.6920016800002,59.39860421600014],[147.02830459000018,59.37317436000018],[147.0989077080003,59.32523339400012],[147.31790169200008,59.31170198500007],[147.44389359900003,59.23806830700016],[147.5942996440001,59.30528178200012],[147.78779571100006,59.26952558900007],[147.79229763100022,59.36140583300016],[147.91999860800001,59.39671493500009],[148.1385956260001,59.38944480800012],[148.2299955860001,59.46857952900018],[148.21690355600026,59.56141698599998],[148.11289956100006,59.622782408000035],[147.8896946760002,59.66725594800005],[147.60710166,59.67306611500004],[147.15409868500012,59.650905368999986],[146.95959461000007,59.70018626600017]]],[[[151.9775996520001,60.603811253000174],[151.5316005960002,60.64320267700003],[151.35650666200013,60.61885274600013],[151.00489755800027,60.44811606000013],[150.90299959900005,60.35415274600018],[150.90609771800018,60.28187593000007],[151.11309870800005,60.24001620300004],[151.5339966470001,60.32063938300007],[151.8768005610002,60.319658365000066],[152.15679971300017,60.240348126000015],[152.5979007210002,60.13705340700005],[152.80310060800002,60.18555512200004],[152.8625026520001,60.28079667600008],[152.81210361000012,60.43579365700009],[152.8569945690001,60.59039769300006],[152.70840471500003,60.61150969600004],[152.1817016770002,60.57838508500015],[151.9775996520001,60.603811253000174]]],[[[139.4199986000001,60.49251701300011],[139.56050058800008,60.54301798000017],[139.63229360000014,60.61292053800008],[139.58110062300022,60.674034838000125],[139.34100368900022,60.74365559600005],[139.1439976160002,60.772228833000156],[138.93870569600028,60.73648756000006],[138.97239658800004,60.68163018300004],[139.18980371100008,60.615709532000096],[139.1078945800001,60.52831930600007],[139.29319767200002,60.48050759000006],[139.4199986000001,60.49251701300011]]],[[[138.75909458700016,60.42502442000017],[138.74360667400003,60.53986671900009],[138.60639961200002,60.658302341000024],[138.73100263800006,60.75021309400012],[138.6943966880001,60.815130431000114],[138.53889461400001,60.82878388100005],[138.3849946570001,60.733474266000144],[138.44569355000021,60.63926251200007],[138.39689662500007,60.57598903400003],[138.2109065520001,60.49549594100006],[138.231506587,60.431605722000086],[138.48390161800012,60.373127196000155],[138.61010759900012,60.37266216800003],[138.75909458700016,60.42502442000017]]],[[[149.23939566500007,60.65203100100001],[149.27250669700004,60.69669481000011],[149.12399261600012,60.905282997000086],[148.82600372000002,61.00932102300004],[148.64050264700018,60.9967246990002],[148.50599657100008,60.90256306900011],[148.69529766300013,60.731826384000044],[148.9510037130001,60.585801560000164],[149.23939566500007,60.65203100100001]]],[[[150.2095945880002,60.159008126],[150.291107591,60.28685796600013],[150.31100472000003,60.39302197800009],[150.6078945810001,60.54693903400005],[150.67469767900002,60.62776019400013],[150.59429963700018,60.70424405500006],[150.39889568100023,60.78943738400011],[150.25430265400007,60.960385126000176],[150.09770171300022,61.01994542100016],[149.7245026700001,60.96698453300007],[149.70350667300022,60.82707900200012],[149.62559470400004,60.667949744000055],[149.5344996770002,60.60927055400009],[149.22230563500023,60.475884299000086],[149.10279863900007,60.39555113400013],[149.31950369300012,60.22474571600014],[149.61039764300006,60.07843104700015],[149.78540071700024,60.074100955000176],[150.2095945880002,60.159008126]]],[[[140.56309456100007,61.17563390800018],[140.49319468500016,61.23528623700014],[140.12339768900006,61.32160860800019],[139.572204574,61.282696796000096],[139.20489465700007,61.16647433200012],[138.89300554800002,61.01992631000007],[138.8303985990002,60.94257358100003],[138.97790567800007,60.86967147500002],[139.28010564200008,60.98353728300009],[139.587005674,60.90673608400016],[139.78120464800008,60.90903306000013],[139.73359661100017,61.06266831700009],[139.89039570100033,61.13507002300008],[140.18719470200006,61.064129282000124],[140.41040059200031,60.94137547200012],[140.5594026680002,60.91759349800003],[140.61059564400023,60.97195483399997],[140.6107025970001,61.10607014700014],[140.56309456100007,61.17563390800018]]],[[[151.60749856100017,61.32743788600004],[151.51260368300018,61.422393785],[151.33140571100023,61.39804385300005],[151.11659262000012,61.21313320200011],[151.1342926850001,61.122992706000105],[151.3143005940001,61.07018772200013],[151.49960368600023,61.07656987100012],[151.7117007050001,60.99248664099997],[151.8099055980001,60.90520705700004],[151.97149662100003,60.85409186400017],[152.18609664400014,60.833831128000156],[152.5337986080001,60.76925661100006],[152.81080659400004,60.696313936000195],[152.95680258400023,60.79120747400003],[152.8916926300002,60.843058430000156],[152.62980660300002,60.91353447800009],[152.40089464800008,61.024782785000184],[152.47529560600015,61.169159391000164],[152.20590157300012,61.32913589200007],[151.94389367300005,61.406104059000086],[151.79840059700007,61.289579512000046],[151.60749856100017,61.32743788600004]]],[[[147.44740259900027,61.34586365600012],[147.58120761400016,61.47468395300001],[147.32820171000014,61.51518665000003],[146.97059669600003,61.35704109200003],[146.67089856200016,61.29088826200018],[146.0899966300002,61.38823149500013],[146.03939860000003,61.25624485000009],[146.21130355600008,61.13662319000008],[146.4911955870001,61.00076494400008],[146.36689766300026,60.87364282100003],[146.14739959100007,60.79126866200011],[145.80380258000014,60.70020498300016],[145.51379359200007,60.57439798100012],[145.52160669900002,60.43447367400006],[145.65179458700015,60.378510389000155],[145.76649456200005,60.38927191500005],[145.97009266600026,60.544363778000104],[146.15939359100014,60.61533955500016],[146.4476016440002,60.63588242600014],[146.60659763,60.624369044],[147.0207065630002,60.77061867000003],[147.2221065970001,60.67208889500017],[147.3894046910002,60.62638003000012],[147.6506045750001,60.71578442700013],[147.75230371500004,60.817617677000044],[148.18569957500006,60.94461457500012],[148.28439363500001,60.99716743100004],[148.25140363800006,61.073857654000165],[148.11210663300017,61.118849364000084],[148.07049568000014,61.22887391300003],[147.87390166100022,61.26163592300003],[147.58009365900023,61.151012906000176],[147.44090260100018,61.17473369200013],[147.38609367200002,61.28415826400004],[147.44740259900027,61.34586365600012]]],[[[150.99310271100023,61.44689274700005],[151.09719857300013,61.58201807900019],[151.33200065900007,61.733494324],[151.34089670800006,61.80579025100019],[151.15060470700007,61.87149716300007],[150.84039264900014,61.75772640600019],[150.47579964200008,61.482474094000054],[150.6549986970001,61.40205291799998],[150.84049960300013,61.39896267800009],[150.99310271100023,61.44689274700005]]],[[[153.09530666100022,61.651994062000085],[153.13560467200034,61.78841758300001],[153.39030472600018,61.91823314700008],[153.21600372000012,62.02261935700005],[152.96290561500007,61.98020558600018],[152.70730568000033,61.83159075500009],[152.6347046520001,61.75698645200009],[152.68699666400005,61.674284895000085],[152.80720556100005,61.61717982700014],[153.00480658100003,61.61633258400013],[153.09530666100022,61.651994062000085]]],[[[147.16299456600007,61.72169595700018],[147.3587036240002,61.8115127440002],[147.1477046340001,61.9153831320001],[146.74420165800007,62.02728472500007],[146.5364986000002,62.223806827000146],[146.37590066500002,62.28999888400011],[146.19689959000004,62.32142498600007],[146.10139467700014,62.291409893000036],[146.0785975760001,62.19973500700007],[146.15660057300033,62.127782738000064],[146.5202947050002,62.00030539000005],[146.5852046660001,61.95105952900013],[146.59249859900012,61.82946175100017],[146.7037046610002,61.704273333000174],[146.92629967900007,61.62997111400006],[147.16299456600007,61.72169595700018]]],[[[153.30320769900015,62.19994488900005],[153.39059457200017,62.299860025000044],[153.2489016840001,62.434990051],[152.97090161500012,62.52943096600018],[152.71650666300002,62.53300115400015],[152.23030062200007,62.461476027000174],[152.21220359000017,62.30930156900018],[152.0413966650001,62.14148262300006],[152.15350361400021,62.03843919400009],[152.3426975850001,62.023008613000115],[152.49710062400004,62.09510153000019],[152.53269957300006,62.15693214700008],[152.76040671300007,62.1898852650001],[153.13450664300035,62.16495530500009],[153.30320769900015,62.19994488900005]]],[[[147.17790261900018,62.968688961],[147.0933075910001,62.86354050000011],[146.98240663,62.861194405000106],[147.85169967600007,62.629783971999984],[148.0626066330001,62.584254312000155],[148.24789463800016,62.612682710000115],[148.345001668,62.695457189000024],[148.31809961500016,62.813695333],[148.1744996760001,62.88998456600018],[147.99769566600003,62.93663673000003],[147.71180755600005,62.966953236],[147.17790261900018,62.968688961]]],[[[140.63189657500004,62.765128072000095],[140.59359764800013,62.89328485700014],[140.93499759300016,63.085123319000104],[141.0928955500002,63.14182672600015],[141.15150466700015,63.2089875640001],[141.0733036900001,63.260763083000086],[140.81230161800022,63.267103322000196],[140.31840568500002,63.131164275000174],[139.45869466200008,62.94839804900016],[138.77070670800003,62.89700005100008],[138.44869963600001,62.835142276000056],[138.04049659200007,62.785251009000035],[137.38279765100015,62.67173623600013],[137.47120661300005,62.516399453000076],[137.78790257600008,62.471807393],[138.25759861400002,62.4548466120001],[138.92349271000012,62.47323768100006],[138.86599754800022,62.399115505000054],[138.43780567700026,62.30050090600008],[138.38529959100015,62.16835450200006],[138.47889661600016,62.10891105100012],[138.7088016590002,62.05691089700014],[139.1325077030001,62.07561058700014],[139.29179370300017,62.048052566000024],[139.38769558400008,61.991066186000126],[139.45779461300003,61.88132058600013],[139.29429670700017,61.80048718800009],[139.071594569,61.75090621900017],[138.66439869400006,61.62752594600005],[138.31689471100015,61.476866097000084],[138.21490455200012,61.347309702000075],[138.2539065530001,61.256195732000094],[138.57319654700018,61.2404555240002],[139.11419659700005,61.3063989740001],[139.3979945960001,61.36187124700007],[139.67340063300003,61.46354423600013],[139.99960368500012,61.62419615099998],[140.14900155400028,61.77132688199998],[140.5265047040001,62.25502824300003],[140.76910363600018,62.30105830200017],[140.88560471400012,62.268207947],[140.90409871300005,62.17262290300016],[140.5502927120001,61.965605987],[140.65229762400008,61.82956032200008],[140.74220258800017,61.77378713900009],[140.86070258300003,61.801800130000174],[141.1322936800002,62.07519853300016],[141.3390956840003,62.03356377600011],[141.17590354900005,61.65648441500008],[141.28610261000006,61.596950104000086],[141.51370262900002,61.52828588800014],[141.75570661400013,61.41835354000011],[141.92480463800007,61.441464458999974],[142.0435026130001,61.518237495000164],[142.0532076830001,61.627221180000106],[141.85580464300006,61.800197342000104],[141.84379555500016,61.89078107300014],[142.03120468500015,61.985515857000166],[142.313003599,61.9480044930001],[142.42990063800005,61.880351638000036],[142.47889655100028,61.672052962000066],[142.58959969900013,61.619636898000124],[142.72779867400004,61.639512570000136],[142.84300256900008,61.71780491000004],[142.79440261800016,61.83477973400011],[142.82460060400012,61.925443260000065],[143.00320471100008,61.93992400300016],[143.0529026920001,61.8857536070002],[142.99769562200015,61.79593313300012],[143.01649455400002,61.63283219300007],[143.19059758000003,61.49794675200019],[143.4532926280002,61.486014442000055],[143.59049968900013,61.58848421400006],[143.57580571000017,61.754495183000074],[143.51890566300006,61.857881767000094],[143.5350036110001,61.939683946000116],[143.6786037180002,61.966655066000044],[143.95260662400017,61.82143909600012],[144.07949858000006,61.89643131399998],[144.0021056180002,62.04037323400007],[144.009292597,62.11119210200013],[144.11999457200022,62.14608261200004],[144.29600565400017,62.132632004000016],[144.5581055870001,62.0507389660001],[144.8397066880001,62.021455614000104],[144.80110165400015,61.98033466700008],[144.543792649,61.90688354700018],[144.40519771200002,61.83685073400005],[144.3578035820001,61.63632258500007],[144.21879558500018,61.52439903200002],[144.180206644,61.352955920000056],[144.287093679,61.262669411000104],[144.48240660800013,61.328479924000135],[144.55439760100012,61.46000439],[144.67170770000018,61.50532098200017],[144.80059857200013,61.41874262800013],[144.6746976930002,61.32612980599998],[144.77330055800007,61.25603597300011],[144.89869667900018,61.24183635900016],[145.1403955630002,61.27536581500004],[145.47140463100015,61.20879607000012],[145.60110469200015,61.248775736000084],[145.77119463000008,61.39452244800009],[145.84550456000034,61.52246868000003],[145.78089869500002,61.75571642600016],[145.59570255500034,61.88737466700019],[145.47839362900004,62.17776486499997],[145.52639762700028,62.291657662000034],[145.75489769600006,62.437087874000156],[146.14340159000005,62.56033118700009],[145.93339568800013,62.57072273500012],[145.69050556800005,62.817212380000115],[145.2946926540002,63.0483014510001],[145.06939665200002,62.95154914200003],[145.4178006840002,62.4612671500002],[145.11759963600002,62.3556025310001],[144.80859356700012,62.34762228900007],[144.51080365700022,62.451553697000065],[144.34069863200023,62.457787989],[144.2061006900002,62.380006442000195],[144.02270464800029,62.366921118000164],[143.70019566800022,62.533099892000166],[143.4803006290001,62.577372099000115],[143.40109265,62.45764683800013],[143.35020460700025,62.282109334000154],[143.0061947040001,62.26526657000011],[143.0108946050001,62.492949570000064],[142.72569263700018,62.814313415000186],[142.42480460900003,62.893536649],[141.98620559900007,62.95747749500015],[141.90710457300008,62.991577927000094],[141.56120270700012,62.94603703500019],[140.7371975860001,62.73658886500016],[140.63189657500004,62.765128072000095]]],[[[149.83219855900006,62.812840379000136],[149.9020996080003,62.86816379000004],[149.79580668200015,62.97747135100013],[149.45790064900007,63.13161438300011],[149.22250361500005,63.28714344600007],[148.98550463200002,63.29506635700005],[148.8981937000001,63.246629182000106],[148.9573975960002,63.16789394200009],[149.28799461000017,62.98368971700006],[149.2557066810001,62.809921800000154],[149.3217005900001,62.77769053300011],[149.66839571900005,62.771350461000054],[149.83219855900006,62.812840379000136]]],[[[137.88659663600004,62.929155211000136],[137.96919258000003,62.99278408200013],[138.02799967800013,63.184206635000066],[137.83689865500003,63.30056387899998],[137.66020159800007,63.34163453400015],[137.32189960400012,63.36341742400015],[137.05250557100032,63.43416772800009],[136.85659769500012,63.389667701000064],[136.97929367000006,63.24311113000016],[137.1004946490001,63.16907679600013],[137.3693996820001,63.09469461400005],[137.7243955770001,62.92870527100001],[137.88659663600004,62.929155211000136]]],[[[135.9380036350001,63.338624425000035],[136.1526036580002,63.53818446400004],[135.9841005820001,63.655803688000105],[135.73350564900022,63.61492799600006],[135.5444945710002,63.502781820000166],[135.499404625,63.41723008100013],[135.72729465900022,63.32280341500018],[135.9380036350001,63.338624425000035]]],[[[156.95030168200014,63.14550487300011],[157.11250257300003,63.20751871900012],[157.2489016190002,63.34247373000011],[157.2313997020001,63.41281969100004],[157.0841977240001,63.53907261100005],[157.25830058200006,63.63413965400014],[157.1856997220002,63.703661841000155],[156.7742005780002,63.78880186100014],[156.68080170200005,63.99556027800014],[156.46429462800006,64.0636712880002],[156.3518066370002,64.02541561100008],[156.33020060600018,63.92110567600014],[156.37789967000003,63.815665860000024],[156.23519860600004,63.721362576],[156.24999970600004,63.669297211000014],[156.43159464400014,63.579217233],[156.49780262700006,63.45349069700006],[156.34469559800004,63.24340935800012],[156.39190666800016,63.19311793900005],[156.6405947180001,63.111113253999974],[156.95030168200014,63.14550487300011]]],[[[138.41960169200001,63.79588239000009],[138.39880367500018,63.867850081000086],[138.2243046880002,63.96543404200008],[137.40939359800007,63.98817481600014],[136.82730059600033,64.09954616900006],[136.39390557500008,64.0387602720001],[136.2911985950002,63.89461869500019],[136.31019567600003,63.78718465600019],[136.56399568100005,63.64120811300012],[136.92469764100008,63.61221561200017],[137.26559467200013,63.647239395000156],[137.74090558000023,63.75784447500007],[137.87060564100022,63.6512984150001],[138.14630169200007,63.58217721800008],[138.35859669100034,63.64732740500017],[138.41960169200001,63.79588239000009]]],[[[143.42160065200005,64.36654163700007],[143.21420269500027,64.38331214900018],[142.88900765100004,64.19655060499997],[143.0661927020002,63.96447263700003],[143.27609265700005,63.78402568500002],[143.45239257900005,63.67957074200018],[143.64320358800023,63.61499672800005],[144.06739762600023,63.53458309600012],[144.3522946600001,63.45370326200015],[144.62229956600004,63.47561271900008],[144.82739266700003,63.55360398100015],[144.76210065900023,63.69346039400011],[144.4004976440001,63.82856845900011],[144.08030659500002,63.99392429800014],[144.21350056900008,64.18074987900019],[144.0480956120001,64.2684768900001],[143.7615966290001,64.31801628500017],[143.55619758900002,64.31694004800005],[143.42160065200005,64.36654163700007]]],[[[157.24079866500017,64.44598229800005],[157.24290470200003,64.52858193000003],[157.09060669500013,64.59799045900007],[156.78329460800023,64.61498225300016],[156.53660564200015,64.42577118200006],[156.38740558600023,64.40913059000007],[156.24920661000033,64.4438080320001],[156.1576996970001,64.54159835500013],[155.89750664700023,64.57893839300004],[155.82820171800006,64.45927381700017],[155.81779458000017,64.33818197000005],[155.88949572700017,64.22299584500013],[156.1065067200002,64.14028104500005],[156.4217076870002,64.12943134200003],[156.9270937010001,64.26205970500001],[157.24079866500017,64.44598229800005]]],[[[135.79060367700026,64.55560736500013],[135.8372037050002,64.62471749800017],[136.14689658800012,64.71613707199998],[136.24989358200003,64.80944944800012],[136.2462006830001,65.0115611060001],[135.61090070100022,64.99295227500005],[135.33520465100014,64.97049832900012],[135.16130061100012,64.79446377800008],[135.2884976690002,64.66942740800005],[135.43829367800015,64.46648409700009],[135.4062955950002,64.27864749100007],[135.5803986200001,64.21757862100009],[135.77009567400012,64.20652289100013],[135.90539568500003,64.1462932170001],[136.1446986850001,64.21203131000004],[136.16600062200018,64.37712378900011],[136.23370360100012,64.54396389599998],[135.79060367700026,64.55560736500013]]],[[[127.15319862700028,64.98658873400012],[126.98000369600004,65.05800355500008],[126.74040263500012,65.08591378400018],[126.74710061400003,64.88108471300018],[126.94789866000019,64.66118715900006],[127.30020161800007,64.50934848000009],[127.52809869200007,64.67351023300006],[127.45870156300032,64.82267106200004],[127.6472016810003,64.90331787800005],[127.60030359200016,64.95976245300017],[127.15319862700028,64.98658873400012]]],[[[160.83270267700016,64.26991908000008],[160.8190006120002,64.3667704630002],[161.01460271700012,64.53750932800011],[160.85719258600022,64.58270069399998],[160.54829363800002,64.59169598500006],[160.41160558400009,64.68466436700015],[160.6558986670001,64.76517338500014],[160.74600261700004,64.84076172300018],[160.66850270200018,64.91245029700008],[160.4972996480002,64.93971143100009],[160.2982936520001,65.05110608700011],[160.38079856900015,65.13779625500013],[160.22419762800007,65.27281178400011],[160.03709360000016,65.31331079400013],[159.71710170600034,65.31045759400013],[159.47869858600018,65.25923109000018],[159.36050469900022,65.18684748800013],[159.39549260700005,65.02979610400001],[159.7075956220002,64.70949173200012],[159.86990363300015,64.35935415500012],[159.7879946690001,64.24682291400012],[159.68760662700004,64.20763734899998],[159.48179670500008,64.25884725700013],[159.46490465600016,64.5239656810001],[159.3634036640002,64.58817089200016],[159.072006632,64.56756297700008],[159.01600663400018,64.52865099700017],[159.00120570200022,64.38692055800004],[158.89689660500017,64.25673417900009],[158.69889861700017,64.20564580800016],[158.58430459000033,64.23108304000004],[158.27059962500016,64.45068253400012],[158.1477966970001,64.50197793700016],[157.86599761500008,64.49685055900011],[157.6853945910002,64.39739592500018],[157.63299562600014,64.25441507400018],[157.68150371200022,64.08475931800007],[157.91099569500034,63.8489167030001],[157.9535066960001,63.730972093000105],[157.802993699,63.58925758000004],[157.61300663100008,63.47982060200019],[157.65159557200002,63.346559573000036],[157.8769986950001,63.273641542000064],[158.14639272800002,63.273653444],[158.3907925970002,63.30261174600008],[158.56359860700002,63.35741614900019],[158.87420662500017,63.574345168000036],[159.30589257600002,63.83186070300019],[159.5314026520001,63.91975468099997],[160.27949572600016,64.08952074200005],[160.62480163800012,64.17754480700006],[160.83270267700016,64.26991908000008]]],[[[136.54060363300016,65.2999280790001],[136.78419464700005,65.39281247499997],[136.74380460300017,65.46333529400005],[136.43960555500018,65.48914652600013],[136.2592925450001,65.3805142110001],[136.30009464400007,65.26746329200006],[136.54060363300016,65.2999280790001]]],[[[138.96940559000006,64.87520246100019],[138.1846006190002,64.99656118700005],[137.28140260600014,65.06120812400007],[137.59390258800022,65.17286999400005],[137.67309564800019,65.29435863999998],[137.59790058800002,65.36672732100016],[137.46299754500012,65.58773111900013],[137.33149755400007,65.60468385300015],[137.20010367800012,65.36669614100003],[137.19999655700008,65.2976931290001],[137.0260926850002,65.24381140500003],[136.95030167300013,65.177836775],[137.04449465100026,65.0622914010001],[136.64300567900023,64.6016525120001],[136.53190657000005,64.45076652000017],[136.52479569900026,64.26561547600016],[136.75219757000002,64.21592235700018],[137.1363066660001,64.38549446100006],[137.33659358300008,64.36387920900006],[137.20550564700022,64.24364986000012],[137.35180657,64.19253047700005],[137.84010356000022,64.36010198800011],[138.0213925590001,64.36783865200005],[138.07200668100006,64.20308178400012],[138.211105706,64.18763226000004],[138.51519763300007,64.28662773400004],[138.71119670400003,64.27646501099997],[138.78089859900012,64.20916302300009],[139.03919968600007,64.13822898799998],[139.3883976520001,64.07044654800012],[139.4833066120001,64.0130779530001],[139.37640365100003,63.899890912000046],[139.00309765600014,63.89133047400014],[138.8128966820001,63.82779765900011],[138.92190568000012,63.71913047600009],[138.8751066650001,63.640578967000124],[138.6336055940002,63.54790361600004],[138.58959959600008,63.461107835000064],[138.85839868200014,63.35007695500008],[138.6282956580003,63.207659367000076],[138.8451996990001,63.08897949700014],[139.1614986940001,63.09363363300014],[139.8836056890002,63.1934379600001],[140.44529764000004,63.32055371299998],[140.784805623,63.45765968800015],[141.00660670700006,63.51857148100004],[141.16560369900003,63.62625848500005],[141.0164036430001,63.640288953000095],[140.75959755200006,63.55312302700014],[140.49740558600013,63.51226225500005],[140.05220063000002,63.49924180700009],[139.95550565400015,63.55389416200006],[139.99209567900004,63.625987415],[140.22009266600003,63.71747152900019],[140.89849859600008,63.896529601],[140.969802608,63.973300123000115],[140.83439665000014,64.04387960300011],[139.91479458300012,64.24477873500018],[139.8502046430001,64.29437210900016],[139.92759659900014,64.38579956199999],[140.04559367900004,64.39612170800018],[140.46040367400008,64.32593668000015],[140.7062987060001,64.33346698200006],[140.79769866700008,64.4173331200002],[140.82000760500011,64.53461723600009],[139.88389570200013,64.69953403099998],[140.07179265900004,64.83866289500008],[140.22540260100016,65.01108098999998],[140.14909358700004,65.09988339900008],[139.86250257100028,65.15129262800014],[139.50039664200017,65.09077377900007],[139.22169467300012,64.94924886400008],[139.09199561800006,64.84883332800001],[138.96940559000006,64.87520246100019]]],[[[158.01919567100003,65.74816175100017],[157.64460758000007,65.78689787900015],[157.5502017010001,65.68149276399998],[157.73049962400012,65.6341194210001],[158.076598632,65.60637817100019],[158.29890464200002,65.52570822000013],[158.5682066420003,65.48431704100011],[158.82069370500005,65.60356285700016],[158.7624966430002,65.678448624],[158.62309268500007,65.72547076600006],[158.01919567100003,65.74816175100017]]],[[[135.49639870700014,65.6378354540002],[135.68969763200005,65.81573162600012],[135.49310260800019,65.91011872900009],[135.3128056910001,65.85630657500008],[135.09539756200002,65.72618088100012],[135.01300060400013,65.61846370200016],[134.72439558400004,65.56523777900009],[134.44110066800022,65.73751069900015],[134.21879566400025,65.73418442500008],[134.07809469000017,65.57826962600018],[134.0872956730002,65.43712642300017],[134.04060361100005,65.32670138700007],[134.04750057600006,65.18238429200017],[134.24319454600004,65.148667752],[134.4642027020002,65.251845962],[134.55900554700008,65.34305112700014],[134.81880163100016,65.40708819700006],[135.0785975460002,65.37405846900009],[135.35389663000012,65.37956018300002],[135.46229559300002,65.47146858899998],[135.49639870700014,65.6378354540002]]],[[[137.62879963600028,65.75670760500009],[137.7088015490002,65.8273590020001],[137.63470468700007,65.87647159000011],[137.33340460400007,65.91520838800011],[137.2048035780001,65.90064248400017],[137.06019563200005,65.82585579100015],[137.16650364500015,65.76419147100006],[137.62879963600028,65.75670760500009]]],[[[144.35270671400008,65.51355412500016],[144.27549765100014,65.56175895300004],[144.381805664,65.8709710500001],[144.06719964600018,65.98048061500003],[143.73049960100002,65.93474828100011],[143.60110464100012,65.87859237900017],[143.6287996220002,65.72659980800006],[143.91239964000022,65.49408262900005],[143.94340564100014,65.34490503700005],[143.78430169600017,65.12847960200014],[143.47889666000003,64.96556172400011],[143.66659563500002,64.71938003000008],[143.9649965860002,64.47757754600019],[144.50100655400024,64.47416644700013],[144.92959555900018,64.500374647],[144.9992976220002,64.44896625500013],[144.78489658500007,64.33474086400008],[144.69340559800003,64.23129728200018],[144.70339967600012,64.12511315300003],[145.0765076910002,64.06519746500004],[145.33970665900006,64.14749937199997],[145.60859660500012,64.15164942000018],[145.77380358100004,64.04976939900001],[146.39169267300008,64.03596004600007],[146.48120167600007,63.956293241000196],[146.35650661700026,63.82958652500014],[146.07620269900008,63.8182451400001],[145.83459467500018,63.75878207400012],[146.0540925800001,63.66425013200012],[146.4416045600001,63.61232575100013],[146.36109956500002,63.437803965000114],[146.97470064300023,63.30793408699998],[147.09989962200018,63.179586530000165],[147.25399756000013,63.14895302000002],[147.55029264000018,63.140506744],[147.76539557800004,63.18329451599999],[147.8746035620003,63.266710210000156],[147.81260664700017,63.435647804000155],[147.57550071100002,63.60440652900019],[147.5639957110002,63.68680717500018],[147.6428985890002,63.77202397300016],[147.82710264600007,63.88091998300007],[147.93769867300023,63.984863461000145],[147.91040065900017,64.19359045200008],[147.7489926960002,64.41914109700014],[147.3715976730001,64.51645164000018],[147.22639461100016,64.67499014200007],[146.97419756100032,64.75217975900011],[146.5252987010001,64.79357864900015],[146.3860016960001,64.8531976180002],[146.352401664,64.97377816800014],[146.53320266800017,65.27289560300005],[146.55389356400008,65.413459617],[146.37669359300003,65.47969291300012],[145.93089268400013,65.53299427300016],[145.56889370900012,65.62230898399997],[145.3592986870002,65.74340083000016],[145.08489965200022,65.7316051460001],[144.98269659200002,65.59213329400012],[144.85890158200004,65.50618408600008],[144.51240560700012,65.4614730020001],[144.35270671400008,65.51355412500016]]],[[[155.42930560500008,65.85866373400017],[155.62750257900018,65.92173973500007],[155.5839996630001,66.00002855400015],[155.2301026350002,66.07663110300012],[154.8231966070001,66.03462133900001],[154.63130165100006,66.03240902000005],[154.34779366600014,65.93577037000006],[154.4530026440001,65.87504499],[154.75160258100004,65.8241998630001],[155.17160063900008,65.82231561100019],[155.42930560500008,65.85866373400017]]],[[[136.4275966350001,65.66363159899998],[136.69700659400007,65.865722135],[137.0272976680002,65.97163821000015],[137.03689561700003,66.16354205100015],[136.97470055500003,66.24802710900013],[136.59910562900006,66.26829103000017],[136.4172055890001,66.14984702700013],[136.35719267100023,65.9681280370001],[136.15739458600012,65.72203770600004],[136.24240066300013,65.63717143900004],[136.4275966350001,65.66363159899998]]],[[[135.36189263000006,66.07790548700007],[135.45480368000017,66.15721723500013],[135.42179859500004,66.26313381300002],[135.30529768500003,66.35813162200009],[135.11970558500002,66.38943685600003],[134.4001005880002,66.21848442100003],[134.0941006050001,66.179129541],[133.88619956600007,66.08329203400012],[133.89289855100003,66.01935420600006],[134.14599565000003,65.95691254700006],[134.50779765100003,66.00793285700018],[135.1056975800003,66.03242427500015],[135.36189263000006,66.07790548700007]]],[[[156.80329869100024,66.46378199100008],[156.60299668500022,66.58286000100009],[156.28979463500013,66.55198928400017],[156.01390060400013,66.488845222],[155.65109260700012,66.44770516500006],[155.2422946160001,66.44789610500004],[155.07879671000023,66.41730048200009],[154.99850461500012,66.34385673700018],[155.03750561000004,66.26324076600008],[155.23139965100006,66.2262358370001],[155.8515925930002,66.18015230100008],[156.2947996370002,66.22142998900006],[156.67100560400002,66.2375054740001],[156.90269465100005,66.19751759300004],[156.94990572100016,66.05924334800005],[157.05720564900014,65.97601725200013],[157.25799564800013,65.92083851200005],[157.7765047050001,65.87552527300005],[158.08970658800013,65.87238222700006],[158.42810061500006,65.91154599900005],[158.4528956260001,65.9857298660001],[157.9364015790003,66.08733596700017],[157.61590559600006,66.131718144],[157.41780065600017,66.27506662600018],[157.7301026570001,66.41492873900006],[157.66470369600017,66.46886326800018],[157.39320362600017,66.45421337800019],[156.96090663400003,66.39733344700011],[156.80329869100024,66.46378199100008]]],[[[153.85949667600005,66.65573159700006],[153.71470667500012,66.76284611700015],[153.55859356000008,66.79514276300017],[153.32589767900004,66.71696072900016],[153.2586055810001,66.60912938900009],[152.9602966640001,66.39678443300016],[152.98930358100006,66.26001272800016],[153.33000162600013,66.24509679600004],[153.64419559100008,66.35607956400014],[153.8937986090002,66.31504629200015],[154.0393066040001,66.19482432000018],[154.26010169200003,66.20256869500014],[154.3986056010001,66.24976618600004],[154.70840459900023,66.40528401800009],[154.9953007160002,66.64058683900015],[154.89059465200023,66.70681343000018],[154.6174926330001,66.7315945260001],[154.06260661900012,66.6355654080001],[153.85949667600005,66.65573159700006]]],[[[144.15029867200008,67.31534982700015],[144.11939962400015,67.49582544600008],[143.8623965590001,67.51750875800019],[143.6573946530001,67.43486319300007],[143.5478976600001,67.26031626200006],[143.89480569000023,67.05099331700018],[144.13040171000011,66.95574220800012],[144.2315976010001,66.786292312],[144.07620264800005,66.56576913300017],[144.08639571300012,66.4700843440001],[144.2456966330002,66.39202300900001],[144.6996006620002,66.31419921700018],[145.26690664500006,66.10782904900009],[145.57269255500023,66.06847467300008],[146.09060666400023,66.07031399800013],[146.25840767200032,65.98055772900017],[146.32330372000013,65.86885696600012],[146.71080061200007,65.75023727800004],[147.21969562700008,65.69669937999998],[147.28880257400021,65.60561508300015],[147.2633976960002,65.47033099800012],[147.33189360300003,65.36893930600013],[147.55029264000018,65.18915972000013],[147.6593936710001,65.13023477300015],[147.6752016060002,64.94972998499998],[147.99490365400015,64.87063214400013],[148.4954985720001,64.93225723700004],[148.66920463100018,65.0137132430001],[148.94580056300015,65.2236450490002],[149.17649870200023,65.26944745600014],[149.3766935860001,65.1388250500001],[149.32220467700017,65.07076802000006],[148.792007559,64.83553493600016],[148.63890069800004,64.74177329100007],[148.7633976090001,64.61026676199998],[149.06869468600007,64.5959761200001],[149.35369867300005,64.67369279100006],[149.65769957200007,64.85191652800006],[149.98150657400004,64.87996287900006],[150.281600668,64.96644702000003],[150.25070162100008,65.02802567800012],[149.73319956500018,65.22990247500013],[149.59280369300006,65.33350665400013],[149.5581056310001,65.51102832300006],[149.7259066390002,65.72527982600008],[149.2971955930002,65.83184516400001],[148.96749862800016,65.81539551100013],[148.875900687,65.88848872500012],[148.87879965200023,66.01505948599998],[148.5635986860001,66.0317451730001],[148.21060170600003,66.12440878899997],[147.3894046910002,66.1570182480001],[146.97639462600011,66.26100481000003],[146.79049658600002,66.41035825400019],[146.571502602,66.52228666900004],[146.19880664100003,66.56117601800014],[146.09779364300005,66.59388455100009],[145.91729757300016,66.77129976900005],[145.69079558200008,66.85867641600015],[145.38529968600005,66.9193251850001],[145.2032926940002,66.93013700200004],[145.10119658700012,66.98050151200005],[145.22900367900024,67.04803316400012],[145.26010171300004,67.1607167890001],[145.47030660200016,67.24430112700003],[145.4898065960001,67.39804920400007],[145.37910462200034,67.43265825000015],[144.8816066490001,67.35794732900018],[144.7872006030001,67.46565713200005],[144.59950263300004,67.48097757500017],[144.52529865000008,67.36864397900007],[144.28120455400006,67.28498336500007],[144.15029867200008,67.31534982700015]]],[[[141.99119568100002,67.08899720200003],[142.26229861700006,67.23800715599998],[142.21299760400018,67.47795623400003],[142.4685977060002,67.60977641300013],[142.8674006130001,67.69656515400004],[142.8925015630001,67.77609047200019],[142.5503995490003,67.8229069210002],[142.1920016070003,67.77414503199998],[141.74079856100002,67.63299361499998],[141.3699037040003,67.44307293200018],[141.2882996740001,67.24977166000014],[141.4008025840002,67.09733652500017],[141.81050062400004,67.04952799300008],[141.99119568100002,67.08899720200003]]],[[[169.9124147230001,67.02246483900012],[169.63058462800007,67.03179624400013],[168.74139361400012,67.1061177420001],[167.9381866770002,67.08071856400016],[167.66560366500005,67.13910958300005],[167.38209568100024,67.28396127600013],[167.10511770200014,67.52473379100019],[167.00318873000015,67.63918884700013],[166.80403169300007,67.643774586],[166.3011015760003,67.5493631760001],[166.01969862300007,67.5404139850001],[165.80780059000006,67.58352228100017],[165.65020773400033,67.76699610700012],[165.5196986520001,67.80052170800013],[165.06950361400027,67.80527491700008],[164.58520462400008,67.98180551000007],[163.90330461400004,67.87908478300017],[163.40170269400016,67.98755096900004],[163.22068761600008,67.98848186300012],[163.00810260200035,67.9310517450001],[162.98107867500005,67.8385257600001],[163.04640169700008,67.74316752900012],[163.39070161300003,67.42853787400014],[163.6614986090001,67.37677023400016],[163.91090364700005,67.43073510600004],[164.0057986940003,67.639028753],[164.2082067360003,67.66985353700017],[164.44540369900005,67.57720450500005],[164.41960168700007,67.48998812000008],[164.9416966900003,67.36569874600019],[165.21620167200012,67.22151106800004],[166.07279965600014,67.27807768200006],[166.32789567100008,67.25972902600012],[166.49479663000022,67.17480945000005],[165.93980366300002,67.0437446470001],[165.86369363500023,66.97616739700015],[165.92919971700007,66.86570346800016],[166.12150572200005,66.78404931500017],[166.38999970600003,66.77464196900019],[166.9024047260001,66.83313189600005],[167.46644562200015,66.82140511000006],[167.85227971300014,66.77877022400008],[168.13999960400008,66.77896015800019],[168.52650458300013,66.81303477400007],[168.99931365900022,66.8812451930001],[169.22248870500005,66.71293959500014],[169.0709536180001,66.63796179500002],[168.49937470900022,66.54490121200007],[168.06163065300007,66.54761007500008],[167.6360016330002,66.49188232100005],[167.0662846790001,66.52245481],[166.7004546710001,66.59052759899998],[166.5578007140001,66.51254337700016],[166.5424956940002,66.43477339700013],[166.40879863800012,66.36175562099999],[166.07240268900023,66.30879004000013],[165.89430266900013,66.38929235200015],[165.649902633,66.39892869100015],[165.6018986350001,66.25029994600015],[165.43879669000012,66.20290380400007],[165.16889957500007,66.31905971500015],[164.96229572000004,66.510788542],[164.83560157700026,66.54681630900018],[164.53930666400015,66.55063124800006],[164.3018946200001,66.512833559],[163.94410671300034,66.40491806400019],[163.66540558200006,66.42959204000016],[163.5119936200001,66.59184741300015],[163.1083986110002,66.63949585100016],[163.00889569800006,66.51266558500015],[162.8509067130001,66.46277465400016],[162.6634067240002,66.51648756600014],[162.5932005740002,66.5781218790001],[162.58009362400003,66.71457959800006],[162.48410071600017,66.80917457200007],[162.09779371800005,66.87399702600015],[162.11129763500026,66.92794681100008],[162.5886996590002,66.97492452800009],[162.44490073400016,67.08286265400011],[161.97720361200015,67.07119605100019],[161.6916046780001,67.09771086100005],[161.26519765000012,67.1650279370001],[161.006698582,67.12122494900018],[160.928695585,67.04723068100003],[161.09559671200032,66.92679446700015],[161.5034026210002,66.75923033200019],[161.51739469900008,66.68555625300019],[161.28790271600008,66.52914625100004],[161.377197646,66.38640814000007],[161.2788997140002,66.36579184300018],[161.0301965770003,66.4233438340001],[160.78779562500029,66.52435414900003],[160.59030172500013,66.50060251800011],[160.5679936250001,66.43409463100011],[160.8791965910002,66.2987496930001],[161.34699966000005,66.16177984000007],[161.56120271600003,66.14967117500015],[161.82409658400013,66.17880935200009],[162.2140956420002,66.14518467700003],[162.97199973300008,65.96161278300013],[163.17199663700023,65.92494380100015],[163.6369015790001,66.01856161300014],[163.95660362800004,66.1632517020002],[164.3468016730002,66.2005846990001],[164.52360568300003,66.14798507100011],[164.32400457200015,66.0476922470001],[164.0074006430001,65.97656626600008],[164.0187076630002,65.91294913000007],[164.212905631,65.8699409140001],[164.4951016800003,65.92736985900012],[164.65170262100014,65.92612581700007],[164.78840660000003,65.85793149100004],[164.9678956690001,65.87265748900012],[165.41889972800016,66.0653465470001],[165.6703947100001,66.01056494200009],[165.73510769600023,65.93152795300011],[165.6519017170001,65.83865043100008],[165.48150667800007,65.75792750700015],[165.10150169700023,65.66265477200011],[165.08770759900005,65.57465333800013],[165.33410671900015,65.3838709960001],[165.04330463500003,65.37337953500008],[164.64549263700007,65.47313155900008],[164.4521947170001,65.47209337700019],[164.2727046430001,65.2788848080001],[164.12179568400006,65.21708386299997],[163.93359362700005,65.28321925800009],[163.90299968000022,65.34564532600012],[164.1354975810001,65.47503156900012],[164.23669464500006,65.56170564500002],[164.06469765700012,65.58770010600011],[163.84950268600005,65.56152979200016],[163.62309272900018,65.49144367100018],[163.42449962600006,65.48714727500015],[163.22019962100012,65.54827716500006],[162.98559568300004,65.58241313600018],[162.68730168600007,65.58886720200002],[162.4275056030002,65.56915229500015],[162.24719259300014,65.49188539700015],[162.28829962500015,65.40061803800006],[162.85009769200008,65.41649571000016],[162.96530158700023,65.33835172900018],[162.91209360100015,65.18275862800004],[163.17170762900014,65.03989059700012],[163.02760259700005,64.92455896200005],[162.6246945690002,64.90992516500006],[162.33909563500015,64.944197761],[161.8946986950001,64.9512633700001],[161.7906036720002,64.88720383700019],[161.82550072000026,64.82013101000018],[162.53399667700023,64.66561263600005],[162.62399266800014,64.55797944400001],[162.28970359400023,64.42627510200003],[162.3049006550002,64.29505791600013],[162.40499868400002,64.19482628000003],[162.70700066700022,63.99710539800009],[162.6958006010001,63.89374848500012],[162.59370466100006,63.83024685200019],[162.20599369500007,63.80946677200012],[162.11779763300024,63.854207695000184],[162.29200761200002,63.996384387000035],[162.21569859700003,64.06660059600006],[161.89750663300003,64.10526162100012],[161.80490068400002,63.95747257500011],[161.67120362900005,63.908692078000115],[161.47819572300034,63.92821218900008],[161.42340070800014,64.01481837100005],[161.6714016090001,64.13238445400009],[161.72160367700008,64.1942774330002],[161.31559769800003,64.19530756900014],[161.18490572300004,64.14321119100003],[161.02279669700022,63.918892854000035],[160.73500069900012,63.776773159000186],[160.4756015830003,63.692583647000106],[160.15429657900006,63.64227295],[159.82589763600015,63.61237570700018],[159.65170257700004,63.43446863800011],[159.44880670800012,63.39514175400012],[159.08009366000022,63.360724318999985],[158.8399967260002,63.27829249200016],[158.73449672800007,63.20259736800017],[158.62669371800007,63.049442563000184],[158.2733006100001,62.89868598700008],[157.90049769600012,62.861762530000135],[157.41189560500015,62.95715345000008],[156.98599266400004,62.917161714000144],[156.75329560900025,62.94760411600009],[156.38000470100008,63.033369928000184],[156.36869768100019,62.93562553800018],[156.7109066480001,62.81461030200012],[156.82189964200018,62.66407584700005],[156.63529970200022,62.60514821800018],[156.30439758700015,62.594012692000035],[156.13619961200015,62.56501566500003],[156.25239558900012,62.44062419900007],[156.1837006960002,62.388254067],[155.817596599,62.340892962000055],[155.6842956720002,62.271766903000184],[155.7241977230002,62.175369820000185],[156.30490066900018,62.10616111600007],[156.16909757700012,62.01692318400012],[155.93760667700008,61.974013539000055],[155.52839663200018,61.96057382800012],[155.25779761600006,62.01808726200011],[155.08729562400003,62.12468160100008],[155.0547025940001,62.30333147400012],[155.15159571800007,62.399443572999985],[155.6479036280001,62.71387206300011],[155.6018066810002,62.79753569400009],[155.40809670800002,62.969509214000084],[155.60589570900015,63.11478352100016],[155.53199766500018,63.217098061000115],[155.25999468100008,63.29502444700017],[155.17059363700014,63.392238766000105],[155.24169966800002,63.50438376900013],[155.17340056900002,63.64502338700015],[154.95190458600007,63.74970313200015],[154.75230364300012,63.80734564800014],[154.59750363800003,63.81492607400014],[154.37080366700002,63.782206476000056],[154.18339571100012,63.70993318100017],[154.21440171200004,63.64247897700011],[154.37899764800022,63.61961616200017],[154.66369670100016,63.51216334900005],[154.70320161600023,63.44446405800005],[154.55160567700023,63.21216178999998],[154.38999956600014,63.10888534400004],[154.37629666300006,62.99300922000009],[154.65480065200006,62.681807428000184],[154.61549371700005,62.589651420000166],[154.35910068600003,62.48522413799998],[154.20629859100006,62.389333992000104],[154.26759360500023,62.29050967699999],[154.45219462900013,62.1202024800001],[154.83869960700008,61.99775729100014],[154.79240468000012,61.928914541000154],[154.5505066420003,61.85817966000013],[154.23579367000013,61.870528215000036],[153.98269657100013,61.93563297200012],[153.74620067000012,61.94082086700013],[153.66859464000015,61.856489701000044],[153.83279461500024,61.591719629000124],[153.75869758500016,61.491957546000094],[153.59120167800006,61.45231382700007],[153.32919260500023,61.45960323300011],[153.13349964100018,61.496996914000135],[152.90919471500013,61.495566626000084],[152.75180067800022,61.45745629200002],[152.57569856800023,61.29801757300004],[152.62719765200006,61.205015831000026],[153.00810268100008,61.0205256160001],[153.42739867100022,60.783086248000075],[153.63589465700022,60.77868692200008],[153.75079361800033,60.836898234000046],[153.79440264800007,61.00922614000007],[154.05999766800005,61.10423082200009],[154.06419364800013,61.212485281000056],[154.23440562700011,61.21800560200006],[154.34109468200006,61.046218496],[154.47740169400004,60.96164341700012],[154.62510658600024,60.94377454000016],[154.72720369900003,61.01428847400007],[154.74679572700006,61.20226489099997],[154.6656035840001,61.39973398000018],[154.75520361400015,61.454922945000135],[154.95269768200023,61.46166333700006],[155.04220567900006,61.40064090200008],[155.1004025740002,61.21370937400019],[155.3753967240001,61.120272779000175],[155.50939971900004,61.179143746000136],[155.56709269400005,61.35592696900011],[155.4454955860001,61.41282232200007],[155.15319867300002,61.72609411000002],[155.2413027020001,61.783667559000094],[155.47279360100003,61.77869742500013],[155.6732027270001,61.74052556800001],[156.0843045680001,61.54682246700003],[156.27659565200008,61.5054049690001],[156.62089556900003,61.657964324000034],[156.6441037180001,61.86641186300017],[156.70010371600017,61.937056051000184],[157.22360268800014,62.129133901000046],[157.22639470000001,62.312528601000054],[157.52969369900006,62.4077637850001],[157.76100170500013,62.3836346330001],[158.22920257900012,62.25401721700007],[158.50239562600018,62.25019406400003],[158.5888066780002,62.30602843500009],[158.63209568700017,62.40761089900002],[158.6013025860001,62.53313107300016],[158.63690170300004,62.60396134000001],[158.97920270300017,62.63263734000003],[159.14329572500003,62.57579278100002],[159.22000170600006,62.69565500200014],[159.487197669,62.776740696000104],[159.7411036210002,62.791221271000154],[159.80099466600007,62.9969004350001],[160.15159559500034,63.08476423800016],[160.2263946930001,63.148216922000074],[161.04879769600007,63.10959529100006],[161.3170016670001,63.23363991400004],[161.27389571800006,63.51182304300016],[161.29089371500004,63.65100840200017],[161.48739670600003,63.74318368799999],[161.68389869200007,63.73095331800005],[161.72090160900007,63.64278810100012],[161.68949864100023,63.39002560800009],[161.8769076030003,63.33891460700005],[162.0545955680002,63.379371204000165],[162.52699259100018,63.31632236000013],[162.7886967310002,63.391883876],[162.92990061900002,63.517553583000165],[162.9754026180001,63.631541767000044],[162.87609869100015,63.87863088500018],[163.07659867600012,63.95562252100012],[163.62660273500012,63.97807344900019],[163.76060472400013,64.09879816800009],[163.64559964800014,64.18201571400004],[163.38760366200006,64.19667264600002],[163.14779657400015,64.24274897300006],[163.01750173300013,64.33286398800004],[162.99429358400016,64.43359166500011],[163.24139359900005,64.53628037300012],[163.48500070600016,64.57378804900003],[163.7136995940001,64.63804606500014],[163.69670059100008,64.74906755800009],[163.538894668,64.912099431],[163.6060026990001,64.99075504300015],[163.85609471800012,65.03277201400005],[164.15789771500022,64.99191526600015],[164.56140169600008,64.86114751800017],[164.84770169200021,64.93007526000008],[164.9028016420002,65.00707494300008],[165.06669668300015,65.05401309800004],[165.49920657500002,65.10485068200012],[165.67610161200002,65.14508281200006],[165.73159769000006,65.21672578800013],[165.75199857200016,65.42798612600018],[165.93229666200023,65.49926365100009],[166.1517027010002,65.54089153500007],[166.29550162700014,65.6837587280001],[166.68650869300018,65.81739442800006],[166.78897058600012,65.89322718200003],[166.84034762900012,66.24480678200007],[167.0549925790001,66.32887911500012],[167.33944671300014,66.3551035750001],[167.63551363900012,66.35379029900014],[167.76565559400012,66.25639627200007],[167.9265596360001,66.19358832400007],[168.2590026800001,66.24207562200019],[168.60769672600009,66.25942582700003],[168.8849796390001,66.23401022000007],[169.0400386450002,66.1605124960002],[169.29780563700012,66.20559791500017],[169.2976535890001,66.38042564000011],[169.3982086000001,66.50283109800012],[169.89050258400027,66.72279721600017],[170.18267863000005,66.77959433300015],[169.9124147230001,67.02246483900012]]],[[[148.65130658500004,67.3662936930001],[148.82940660500003,67.42665378900011],[148.9328005660002,67.57316057200018],[148.8231045880002,67.77770030000016],[149.33450361200016,67.89761113600014],[149.3616946730001,67.9574051190001],[148.90249663300006,68.04514755200006],[148.68730166300008,68.14703645900005],[148.5805966820002,68.25599818200016],[148.44410660900007,68.28167161700014],[148.19709762200023,68.21698595500015],[148.02020258500022,68.06572596300003],[147.5491025780001,67.81894747800004],[147.63890058900017,67.75142336900018],[148.1259005630002,67.64694864500018],[148.27929660000007,67.58062314800003],[148.344100614,67.42703499800012],[148.4759975720002,67.35755807400005],[148.65130658500004,67.3662936930001]]],[[[137.27900655600013,68.78303482000013],[136.77540555100006,68.8154389230001],[136.60719265700004,68.72269048200019],[136.8298036000001,68.59565351900005],[137.16099556100005,68.44621625500008],[137.2371065950001,68.20055189300001],[136.80450466900004,68.15014916200016],[136.0106046630002,68.43290981600018],[135.69479366200017,68.28628769800008],[135.64909368100018,68.03679347700012],[136.35290566300012,67.80919630700015],[136.85870356400017,67.59194542300003],[137.12300056200002,67.44284360300009],[137.96629361500004,67.23705312800013],[137.63929763500016,66.86761873300009],[137.24099764200014,66.65995121500009],[136.9270936920002,66.39759345400006],[137.39270070200018,66.06902402300011],[137.77499360700006,65.94457455300011],[138.32380659600017,65.95297506400016],[138.62449664400003,65.92057967900018],[138.79310566800018,65.79210203500014],[139.17489666400002,65.63098408600013],[139.15260365100005,65.47887668300012],[139.21769767900003,65.36014182800017],[139.42959571200015,65.30095788000017],[140.33549470900005,65.37953688100009],[140.45050062300004,65.33295747200015],[140.40089467600023,65.11628695100018],[140.5355985660001,64.94258743000012],[140.79469258100005,64.93801040800014],[141.15679968300003,64.97728850900006],[141.45765669800016,65.04615472900008],[141.79150371100002,64.96058672900017],[142.47590655800025,64.93932251100006],[142.8135986850001,65.03566310000019],[142.63240071400003,65.20138221100007],[142.3300015960001,65.36302587300014],[141.8410037110001,65.48890227800018],[141.62370270300005,65.6029979170001],[141.6455995870001,65.71411043700004],[142.12480170900017,65.89610351600015],[142.13349961000017,65.97500220300009],[141.5449986440001,66.18877409400017],[141.47889660900012,66.27591370099998],[141.57730065500004,66.35546148200012],[141.7816926940003,66.36325866400011],[142.06269868000015,66.31780846499998],[142.69290162600032,66.18031273100007],[142.9075016490002,66.25241436500005],[142.91679366000017,66.33124415300006],[142.69549565800003,66.40728310200012],[142.37229969700002,66.46686401700003],[141.98919659800004,66.56937033400015],[141.23399365900002,66.53460169700008],[140.81979369900023,66.68240532700008],[140.53930655200008,66.84418729100008],[140.49229463600022,66.93270823500006],[140.60240166300002,67.24147106100014],[140.391296559,67.37390898700016],[139.70809970000005,67.45714229200007],[139.48660271200015,67.61987811600011],[138.92300454700012,67.79879688000011],[138.57679758000006,67.99375374500005],[138.67790261100026,68.32278200200017],[138.51489269900014,68.38423208100016],[138.00869766300013,68.44002135800008],[137.82919266900012,68.49164399099999],[138.08489955700009,68.65189357500003],[138.05310062800004,68.74182586400019],[137.84590165800012,68.7993781900002],[137.27900655600013,68.78303482000013]]],[[[148.65179458000023,68.60355111600006],[148.76989760700008,68.77103361100018],[149.05320761100006,68.86899978700006],[149.43310563800026,68.97046138400009],[149.59759562700003,69.05023044800015],[149.40260355700013,69.15849781500015],[149.0946046580002,69.20536070000009],[148.68710368200027,69.11568758000016],[148.5328976180001,69.04300541499998],[148.11990364700011,68.74762513500013],[148.13529969400008,68.64983363800002],[148.3101956480001,68.54500687500013],[148.43980367500012,68.51670018200008],[148.65179458000023,68.60355111600006]]],[[[127.08979757600014,68.94270387300014],[127.48490154900026,68.96791999100003],[127.49210361500002,69.06627676300008],[127.24109662800015,69.37274294800017],[127.03209655400008,69.42116972900016],[126.72959869700003,69.39551808800007],[126.32479853900008,68.9853620610001],[126.70890059300007,68.89074479099997],[127.08979757600014,68.94270387300014]]],[[[132.93629457200007,68.46783955400014],[133.33149761900006,68.73399699900017],[133.7277066620003,68.95025714200011],[133.91619856600016,69.280796823],[133.85440063700014,69.49770471900018],[134.08340462600006,69.71619226900009],[134.3708036580001,70.06260224600004],[134.20359759700034,70.15405316900006],[133.90789763200007,70.15269530000006],[133.56959563700002,70.08768140400014],[133.55529761900004,69.94895554100015],[133.28309665400002,69.69289778700005],[133.3202056870001,69.5566600090001],[133.0715945830001,69.45040714900006],[132.5411986460001,69.07558436400006],[132.16740465600026,68.69322390100007],[132.33459462300016,68.42528831900006],[132.93629457200007,68.46783955400014]]],[[[145.24760463100006,69.4947896610002],[145.09410063500002,69.65123956000019],[144.36379966000004,69.59386358900008],[143.87019357300005,69.66911648400014],[143.77699267600008,69.80043307900013],[144.16679358700003,69.84321330700004],[144.60710166700028,69.97825414900012],[144.1524965750001,70.09253335200015],[143.44590766800002,70.10085825800007],[143.09919761900017,69.98058096500006],[142.80859368300003,69.80997855700019],[142.50430260200017,69.71636828900012],[142.08819559100004,69.72861374700005],[142.1284946080001,69.9450113530001],[141.72970561600016,70.11732987100004],[139.6103975540002,70.18731088400017],[139.23500060900005,70.2256513860001],[138.00489764400004,70.30543687800008],[137.2048035780001,70.2238050200001],[136.28509556400002,70.34103666500016],[135.78089860600005,70.33350669800018],[135.1237025790001,70.28484354800008],[134.98480270800007,70.20212103600005],[135.1116026310001,70.09611208900003],[135.84109458500006,69.97495804900007],[136.25199861300007,69.79288768900005],[135.8861996180001,69.63112751900007],[135.25019857400025,69.48873943600012],[135.16380261000006,69.42203960300003],[135.7115936780002,69.32788736100002],[135.82949855700008,69.09855815500015],[136.0041046650001,68.96747005000003],[136.20899961700002,68.96966745000009],[136.4277035880001,69.06407165200017],[136.43260163700018,69.2210625190001],[136.6300967100002,69.25094098700009],[136.98199465400023,69.25894436300007],[137.10209659800023,69.38263141500005],[136.94900465700005,69.44183162299998],[136.9501036920002,69.5106757150001],[137.11689769800012,69.54268234700015],[137.60200470400002,69.53355696900007],[138.17030360700005,69.56094064700005],[138.63110359600012,69.42864705700015],[138.88800054600017,69.15469075400017],[139.19619759400018,68.99766082700017],[139.35470558600002,68.77480965900014],[139.53849758900003,68.71154322100006],[139.52290356100002,68.48698968800011],[139.67149358200015,68.35288141600012],[139.92629958300006,68.27071613400005],[140.3190006320002,68.09005711900005],[140.4703065570003,68.08173288300014],[140.8211056340001,68.28788998300018],[141.15390055000023,68.34787607900017],[141.3610996880002,68.31586860800013],[141.50660667800003,68.11036697300005],[141.61090068700014,68.09567249100013],[141.89880363900033,68.18028679800011],[142.0928036260002,68.31673060300011],[142.50669865300006,68.44884867600018],[142.57940663400007,68.52842009400007],[142.5196076220003,68.66335348000013],[141.99110364800015,68.84608751900004],[141.641692615,68.86568843200013],[141.17720056500013,68.73122812100002],[140.77220158800003,68.68006246900018],[140.61390666400007,68.72510195500013],[140.59379562800018,68.79206045400014],[140.91659562800032,68.95082945800004],[140.84930470300003,69.05675425100003],[140.727798623,69.09643719800005],[140.23379556900022,68.97609150800014],[140.0563966110002,69.03793922500006],[140.4445037070002,69.23857315300017],[140.26300063400015,69.305745893],[140.04859959700002,69.31019416900017],[139.8065946060002,69.3863397360002],[139.86450165500014,69.4477831100001],[140.50390659000016,69.60642990600002],[140.70829762200003,69.68962482100017],[140.76339757200003,69.77412580500004],[140.9225006790001,69.82815270300006],[141.25639362400022,69.79505374100006],[141.2763066790002,69.66022009900007],[141.13369764900028,69.53433464200003],[141.14509569600023,69.46441582300008],[141.32179258600002,69.45110100200003],[141.62300063500027,69.68497822900008],[141.76170369900012,69.70827941700014],[141.93370068700006,69.59225325799997],[141.89149462000034,69.31851086100016],[142.01300070000002,69.24668365100013],[142.4150997060001,69.22644873000019],[142.82800265100013,69.43512408900011],[143.24099762800017,69.45763285200007],[143.65879862100007,69.40404063900007],[144.34030166500008,69.38671356900011],[144.83219868200024,69.42470940700014],[145.24760463100006,69.4947896610002]]],[[[153.37120069200012,69.5976175080001],[153.36129764100008,69.7216936480001],[153.2451936970001,69.784365138],[153.46609456500005,69.88390359100003],[153.1573025690002,69.99928115900013],[152.70230067800014,70.07068944200006],[151.97219868900004,70.12532671000008],[150.66259756300008,70.25095970400014],[150.36239668300027,70.41376509800006],[149.69810470400012,70.60294699900004],[149.19590766900023,70.62440148600018],[148.9183955950001,70.53198916000008],[148.88740568700007,70.39947412000015],[149.69909661900022,70.17105988300017],[149.6938016030001,69.96413148000016],[149.0458065580001,69.83814711700012],[148.50199857100006,69.67055062700007],[148.59849556600022,69.57665805600016],[149.12759364900012,69.53683814900012],[149.58149767900022,69.60319465900017],[149.9808046730002,69.79188035200013],[150.45829755800003,69.82015586400018],[150.70109564400013,69.770570201],[151.10060162500008,69.74230139500014],[151.7339016850001,69.87420639900012],[152.12669359400024,69.82569546400003],[152.35159262900004,69.70686874300014],[152.60200466900005,69.64457913300004],[153.04060367800014,69.60188188500007],[153.37120069200012,69.5976175080001]]],[[[130.26585357800002,70.87340871900017],[129.87130767200028,70.94329920700017],[129.51080369200008,70.93404374200009],[129.36199959700002,70.88139767899997],[129.2162015880001,71.18271536400005],[128.65950055700023,71.23195803900006],[128.48390169700008,71.28248314600017],[128.47250365000002,71.5046570560001],[128.22309861200006,71.63756956600008],[127.69539661800013,71.72561743500006],[127.3973996760003,71.71632425200005],[127.37270357200009,71.57202107100005],[127.69509855800004,71.39857904200016],[127.99939768600007,71.18199100000015],[127.96260062800002,70.85943893600006],[128.077606542,70.70233290200008],[128.10920765800006,70.57326617700005],[127.6181025630001,70.23633261200013],[127.70649761100003,70.15100098200003],[128.05990563900014,70.02846627500014],[128.06019565300016,69.81592199700009],[128.3383945400003,69.73606844400001],[128.66690060400015,69.77572037800007],[128.89920069200002,69.68970897600008],[128.74740559900022,69.59347416600014],[128.18730168300021,69.36299211300013],[128.07870457100023,69.26832203700008],[128.1179965870001,69.16580750500009],[128.27409360800004,69.04845298100008],[128.19979859700004,68.96409013200014],[127.22250355500012,68.722644549],[126.69239763200005,68.60714460500014],[126.4682995710001,68.49561231900009],[126.57050363700012,68.33254054900016],[126.8504025420001,68.32394876300015],[127.42209661900017,68.47095996900015],[127.97129869600008,68.48485330800008],[128.21150157800014,68.44083725300015],[128.34390262400007,68.2904229940001],[128.074996585,68.21148558300018],[127.82579757400015,68.20115404900014],[127.51629663800009,68.24836796800014],[127.23639655900001,68.22200721800004],[127.55680067600008,68.09362009800003],[127.87940269500018,68.10385909600006],[128.14370757200004,68.06358203999997],[128.170303686,67.9788602770002],[127.81759655300004,67.85410553800011],[127.25389864400017,67.96032051300011],[127.0475006480001,68.02994898200018],[126.77829755500011,68.00956285299998],[126.65110066500017,67.93466870400016],[126.93650061300013,67.74924910300007],[127.14910155200016,67.742168407],[127.63670368300018,67.68901155000015],[127.64920059700012,67.55496362800005],[127.3955995790003,67.4341462050001],[127.11489869300021,67.36968216100018],[126.93840062300012,67.28737958300007],[127.13829761400007,67.13431764900002],[127.16369662500006,66.95462104400008],[126.95110356500004,66.86330741800015],[127.12339760800023,66.63099576200017],[127.33329756300009,66.5304883610001],[127.55799861700007,66.24321992],[127.54750061900006,66.17744360500018],[127.34829764900007,66.06870400200017],[127.0669025750002,65.97913733100006],[127.34929660400019,65.88514686000008],[128.1228026020002,65.97278234000015],[128.44349656500003,65.94961073600012],[128.40429658300013,65.75582214000013],[128.19000266700004,65.69534855300009],[127.74539970000012,65.63713338500008],[127.71040357800018,65.53978462100014],[128.06820657300023,65.47719879400012],[128.319396621,65.3696562940001],[127.82689660900007,65.23379369000008],[127.57430259300008,65.19632373300004],[127.69460268500006,65.11827111500003],[128.2234955790002,64.91763148700016],[128.57189961000006,64.90300489800012],[128.3883055880001,64.55627020600019],[128.55799855900034,64.47020750700011],[128.95930463800028,64.527635949],[129.17329362000032,64.46432491900009],[129.27209463300005,64.363688604],[129.38600168000005,64.40894048800016],[129.44439655600002,64.502809087],[129.85589569900003,64.5399967410001],[129.9617006300001,64.33085786300006],[130.12849463600003,64.34471247900012],[130.51679954500014,64.48655003800008],[130.76890556700005,64.45719879300009],[130.92289755700017,64.35060277700006],[131.2145996900001,64.40563617400011],[131.5162045390001,64.43388151200003],[131.53320354200002,64.35189996100013],[131.41760268000007,64.27876131700009],[131.43069454200008,64.18531198200009],[131.94590766700014,64.26402861400015],[132.02569567400008,64.220775646],[132.01069659400002,64.08821551200003],[132.7810055660001,64.25030995300006],[132.88800056000014,64.08005220900009],[133.33859256500034,64.01902927200007],[133.4860996440001,63.945951984000146],[133.80020157500007,63.99081494800009],[134.06779467200022,64.1148287260001],[134.29789769600006,64.00306727800006],[134.3818966030001,63.83050568500016],[134.79809564700008,63.74292485500018],[135.2601016250003,63.76440549300008],[135.44599966400017,63.66520013700017],[135.6417995820002,63.72470092100008],[135.73919662600008,63.82659552700011],[135.6940005660001,63.992325031000064],[135.59390270500012,64.04806049600012],[135.29479968600003,64.12442717800002],[135.05400068400002,64.38895065500003],[134.84750361400006,64.72428545600008],[134.47390760500014,64.86144591300007],[133.9678035960003,64.92836619000008],[133.67100560200004,65.04388088600012],[133.48989865800002,65.17004646599997],[133.35809356500022,65.31315036400014],[133.38439966600015,65.46995716499998],[133.1219936250002,65.52478503700019],[132.78469863300006,65.44774696500014],[132.79049656300003,65.324717223],[132.92829857200002,65.19844519200012],[132.9550936720001,64.95892359200013],[133.0858005670001,64.77519160300005],[133.0751035820001,64.56889787900008],[132.83210768300012,64.60022557700006],[132.7877955780001,64.76462437000015],[132.66929659000004,64.95777946200013],[132.61920164200012,65.2056543000001],[132.49180559900014,65.43309036900018],[132.42149366900003,65.61390025900016],[132.5881956410002,65.78492980800013],[132.27389556200012,66.05570216100006],[131.7561036610001,66.0418167000002],[131.38439961400002,65.99821236400015],[131.3435976830001,65.92284564300007],[131.75100662500006,65.6065228430001],[131.8302006910002,65.43243473700011],[131.6564946320001,65.25185266800003],[131.2850956870002,65.10136347500014],[130.8636016270001,65.14978992100004],[130.68690457000002,65.31357767300005],[130.73190265000005,65.45926085000008],[131.02549758400005,65.58663174800017],[130.90669265600002,65.70139877800017],[130.56019567500005,65.63762138000004],[130.29949954300002,65.53568737900002],[130.00399755800015,65.534688759],[129.73539762600012,65.71012014900015],[129.64270065000005,65.919053335],[129.94259659700015,66.16458777700012],[129.79110761100003,66.3078289710001],[128.8307036120002,66.27207512400008],[128.97360265600003,66.47164840700009],[129.29580670200016,66.7266041090001],[129.57600366700024,66.84813147900007],[129.60859669800004,67.00379465300006],[129.56359861800013,67.06890779100002],[129.65710461600008,67.2297974170001],[129.4906006230001,67.42665378900011],[129.66799958100012,67.68616572600007],[129.95179757900007,67.88542519000015],[130.00779757700002,68.07858950200006],[130.44659456800014,68.23007865600016],[130.863998594,68.22195323900013],[131.22210669000003,68.37159636200016],[130.89990264400012,68.53412733200014],[131.13110369700007,68.67913911900013],[131.21949757200014,68.91261216999999],[130.81460554700016,69.003246192],[131.1974025390001,69.13819466600006],[131.16209360500022,69.37361282200004],[131.3372036320003,69.51848127800014],[131.3780975970002,69.69155584400016],[131.1537016430001,69.82134643000012],[131.34649664800008,69.95866094700006],[131.9676055650002,70.1606755430002],[132.1976926630001,70.26179348199997],[131.87629663200005,70.36219510300003],[131.64050263100012,70.49426674000017],[131.45329265600026,70.5473790050001],[130.85729960900005,70.62894162800012],[130.53550761700012,70.6875388430002],[130.39259365300006,70.82646335600015],[130.26585357800002,70.87340871900017]]]]},"properties":{"objectid":160,"eco_name":"Cherskii-Kolyma mountain tundra","biome_num":11,"biome_name":"Tundra","realm":"Palearctic","eco_biome_":"PA11","nnh":2,"eco_id":771,"shape_leng":455.376552216,"shape_area":109.668886596,"nnh_name":"Nature Could Reach Half Protected","color":"#5085A5","color_bio":"#9ED7C2","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":558029.6809851653,"percentage":6.530363093205617}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-105.23399357499994,25.981622715000128],[-105.19704463699998,26.05834814200017],[-105.32066362699993,26.170644019000065],[-105.36138157199997,26.12773403900013],[-105.32380667299992,26.047093593000056],[-105.23399357499994,25.981622715000128]]],[[[-105.64496666999986,26.312608481000098],[-105.74735262299993,26.311960560000045],[-105.7343065259999,26.149642825000058],[-105.67015060099999,26.14037344600007],[-105.62691456499994,26.06156913900014],[-105.56376664699997,26.103565157],[-105.64496666999986,26.312608481000098]]],[[[-105.41087352499994,26.402400625000098],[-105.44673164199997,26.303829946000064],[-105.352729604,26.286185872000146],[-105.41087352499994,26.402400625000098]]],[[[-107.76807357699994,28.890370939000093],[-107.78281365699996,29.01158013200012],[-107.85239451699994,29.11053805500012],[-107.89817865199996,29.036097870000162],[-107.76807357699994,28.890370939000093]]],[[[-107.93122866399983,29.386809272000107],[-108.04567768399988,29.48295657500006],[-108.04504367699991,29.383257524000044],[-107.9357295779999,29.328061686000126],[-107.87628159999997,29.256870326000126],[-107.80707557799985,29.23978314600015],[-107.7059326609999,29.298179866000055],[-107.836921524,29.471969073000082],[-107.93122866399983,29.386809272000107]]],[[[-107.30506864499989,29.42184395100014],[-107.35517867899989,29.521064059000025],[-107.43377662399996,29.58902251800015],[-107.45162957499991,29.38936307],[-107.49210360599989,29.32480565200018],[-107.44314557999996,29.272799798000108],[-107.49010452199997,29.145210636],[-107.58626557099996,29.001295537000146],[-107.55655658599994,28.822921429000075],[-107.47288557799999,28.792906672000072],[-107.45110352599994,28.88922396000015],[-107.36061853499996,28.918607727000165],[-107.33172561099997,28.78777476800019],[-107.246917683,28.79968142900009],[-107.26148257999995,28.877643187000047],[-107.39826166199998,28.999954600000137],[-107.37973061499997,29.203573492000146],[-107.29615063499989,29.146160808000104],[-107.26658665699989,29.20613533700009],[-107.27500158399994,29.344156952000105],[-107.30506864499989,29.42184395100014]],[[-107.34205664199999,29.408773379000138],[-107.31902367499998,29.301731446000076],[-107.40276358199998,29.312267330000168],[-107.40945451999988,29.378975713000045],[-107.34205664199999,29.408773379000138]]],[[[-107.75854452699991,29.901834642000097],[-107.84191864699994,29.829510385000106],[-107.80523658899995,29.75675211300012],[-107.81410263099997,29.674910372000056],[-107.691421575,29.576750909000054],[-107.69585459599989,29.721362544000044],[-107.788741674,29.758011242000123],[-107.75854452699991,29.901834642000097]]],[[[-111.14585868699999,31.05995969100013],[-111.19810459799999,31.154371604000175],[-111.21834555299989,31.08167988400004],[-111.14585868699999,31.05995969100013]]],[[[-100.599922613,25.854446444000075],[-100.51453365099997,25.863557070000184],[-100.50998663599995,25.896232746000123],[-100.54290756699999,25.979905765000183],[-100.51927160499991,26.077878311000063],[-100.54525751699992,26.155370683000058],[-100.47842357399992,26.170247052000036],[-100.49797067499998,26.262504816000103],[-100.54448654999999,26.372666829000025],[-100.58586867599996,26.605497491000108],[-100.561424532,26.69376060800016],[-100.49946567099988,26.753968657000087],[-100.43088560999985,26.75475873500011],[-100.44171167599995,26.84535654800004],[-100.50212860199986,26.895851647000143],[-100.51620466699995,27.069767756000033],[-100.63117956799988,27.18448382400004],[-100.69554856099995,27.17260147000013],[-100.73873866499991,27.04512982199998],[-100.84306351999993,26.99428218000014],[-100.90991254999994,27.040644163000024],[-100.91232251499991,27.09813848700003],[-100.98063653499997,27.20743381],[-101.08167266599986,27.233857759999978],[-101.19824264399989,27.35059956600014],[-101.24082153799992,27.35137170700017],[-101.35093661199994,27.514557639000145],[-101.44195553099996,27.506341027000133],[-101.53789563299989,27.61626616700005],[-101.4488295299999,27.638747270000067],[-101.48412354499999,27.7601390210001],[-101.5308915469999,27.72183791400016],[-101.70381155099994,27.809538941000028],[-101.87893666599996,27.810923966000132],[-101.94647955,27.83655599400015],[-102.036125514,27.956986844000028],[-102.13227063699998,28.15279464000014],[-102.1473615829999,28.231186557000058],[-102.11368561099994,28.34502084900015],[-102.20563458599997,28.338696200000072],[-102.21920052899998,28.256750523000107],[-102.31648257299997,28.157049629000028],[-102.37380255299996,28.176760680000143],[-102.34684752599992,28.26153524900002],[-102.38037865899997,28.33012436300004],[-102.25215951299992,28.329276450000123],[-102.24724553799996,28.399499699000046],[-102.37160465099993,28.62757346400008],[-102.46013665899994,28.639580876000082],[-102.45270559899996,28.48947490400019],[-102.53086852299992,28.48164922300009],[-102.48176565699993,28.37536149400006],[-102.48511456299991,28.303718350000167],[-102.56648255899995,28.303041428000142],[-102.61975860599989,28.422165539000105],[-102.65756953899995,28.605573147000086],[-102.54361756499998,28.72942129900008],[-102.69124567899996,29.020824533000052],[-102.66243758099995,29.07072267400008],[-102.79647862899998,29.09543068000005],[-102.89232917899994,29.248952557000052],[-102.84104956699997,29.31467612200015],[-102.77309462799997,29.274123804000055],[-102.67607158399994,29.282126510000126],[-102.60510251299996,29.225825601000167],[-102.6023946549999,29.128651515000115],[-102.53141753699998,29.00712632400007],[-102.41041554499992,28.990824696],[-102.47139757799988,28.813759003000143],[-102.37861661599993,28.795531716000028],[-102.4146886389999,28.67489249300013],[-102.34707651999997,28.666805800000077],[-102.19744161099993,28.599429548000103],[-102.0960995399999,28.51512604200019],[-101.99679561199997,28.51173103600013],[-101.96022067499996,28.384354103000135],[-102.00649263599996,28.362667940000165],[-101.90944662599998,28.146680041000025],[-101.85179153699988,28.06407035100011],[-101.801895576,28.06541832800019],[-101.7920076129999,28.181523613000138],[-101.67706255099989,28.24763168300018],[-101.72885852199988,28.32765254000003],[-101.66771656099996,28.355487499000162],[-101.45071461999993,28.34423697300008],[-101.33814264299991,28.36908479000016],[-101.32773567199985,28.45377151600013],[-101.21877260699983,28.518381741000155],[-101.28787251399996,28.606122330000176],[-101.30751751499997,28.833404005000034],[-101.27339160199989,28.968053580000117],[-101.29166465399993,29.041584664000084],[-101.4419476519999,29.001518496000017],[-101.46566055899996,29.055685204000042],[-101.40397662499993,29.104994432000183],[-101.43727155599998,29.172301617000016],[-101.52478767799988,29.23705198700003],[-101.71212757199999,29.259101421000082],[-101.72017654599989,29.228236404000086],[-101.69238265799999,29.165328880000175],[-101.51557160799996,29.060870920000127],[-101.576339567,28.81095190400015],[-101.46999366799992,28.792893596000056],[-101.39788851299988,28.744471509000107],[-101.43061867199992,28.67891915900003],[-101.50102263499997,28.684528161000117],[-101.52301054699984,28.523630488000038],[-101.6388165969999,28.52736546500006],[-101.70960260799995,28.570410561000074],[-101.81021159799991,28.524879392000173],[-101.86840865999989,28.562855951000074],[-101.87400056299992,28.639678775999982],[-101.81190457399993,28.655103322000116],[-101.88713852599994,28.83747593300012],[-101.98428360999992,28.81093983400001],[-101.9377365549999,28.73890978100019],[-101.98554961299993,28.610045060000175],[-102.13233165699995,28.702740360000064],[-102.22794352399995,28.690678634],[-102.28472857099996,28.757372095999983],[-102.29734752599995,28.930970196000146],[-102.250602658,28.954945121000094],[-102.24880960199994,29.04456158],[-102.33222965499994,29.135390063000045],[-102.29498265599995,29.335421332000124],[-102.33755467799995,29.396613919000174],[-102.307830605,29.450760007999975],[-102.19864659299998,29.468620167000097],[-102.0405806629999,29.42026496800014],[-102.06240060099998,29.34378496300019],[-102.02390251999998,29.269927823000046],[-101.89344758399994,29.28417337000019],[-101.85665857299989,29.234557197000186],[-101.80221559699993,29.378460561000054],[-101.71927666499994,29.393500042000028],[-101.78743763099993,29.518243381000048],[-101.91683963199989,29.468045169000106],[-101.89080057899997,29.673978136000187],[-101.8048626019999,29.716376653000054],[-101.72045851399997,29.646088192000036],[-101.60182960599991,29.726977413000157],[-101.39701757799997,29.733968618000176],[-101.36322665699998,29.65264133100004],[-101.30003573199997,29.640704968000136],[-101.2611811729999,29.536786768000184],[-101.15189023499994,29.477014033000046],[-101.06016293999994,29.45866857800013],[-101.00664474099995,29.365995835999968],[-100.92918065099997,29.38813404400014],[-100.9191600659999,29.475549427000033],[-100.97235195399992,29.568584495000096],[-100.93292075599999,29.656665527000087],[-101.00959083999999,29.65267371500005],[-101.08447639499991,29.745793649000063],[-101.07364080399992,29.83491599600012],[-101.21502426599994,29.963122434000127],[-101.33673816199996,30.163352588000066],[-101.42748959599993,30.123391418000153],[-101.65304774399993,30.21961957900004],[-101.74331639799993,30.303072639000106],[-101.65893747299992,30.35126470100016],[-101.73111807199996,30.418985894000173],[-101.63778607699999,30.560630979000166],[-101.64657179599999,30.63734078500005],[-101.7587242109999,30.659334627000135],[-101.82067494299997,30.76016712000012],[-101.87330615299993,30.9660808700001],[-101.98785450899999,31.007987672000013],[-101.99233794399993,31.24696265900019],[-102.24878245799994,31.408362451000187],[-102.34208850199997,31.426159851000136],[-102.39437362399991,31.367429386000083],[-102.48324430399998,31.340655718000107],[-102.63318110299997,31.368112653000026],[-102.78913393199997,31.362100641000154],[-102.85383858699998,31.40068741200008],[-102.80610997499997,31.4977105480001],[-102.9111827029999,31.615245727000115],[-102.95436748499998,31.719291863000137],[-103.04544712899991,31.74149448500009],[-103.10726602999989,31.966981794],[-103.0897440789999,32.08363707900003],[-103.16021605299989,32.19382303100002],[-103.23397550699991,32.177010784000174],[-103.3490395799999,32.22060610199998],[-103.30924215099998,32.30878498300018],[-103.33916954899985,32.40183774900015],[-103.54518375499998,32.46186483600019],[-103.6675876,32.46415513700009],[-103.69495113799991,32.50182045300005],[-103.65637230899989,32.60686568400013],[-103.75584393899993,32.61840769600013],[-104.04280670199995,32.792151524000076],[-104.03653027699994,32.93019182600011],[-103.95454387799998,33.07151414700007],[-104.03847798599998,33.127739741000084],[-104.05335294199989,33.243714239000155],[-103.96742810599994,33.383321765],[-104.03549579299994,33.42276399500014],[-104.00883736399993,33.51294398000016],[-104.22952774799995,33.66098047200006],[-104.18687229699998,33.774348175],[-104.30674033199989,33.828507186000024],[-104.39473899899991,33.76926052100009],[-104.48293346999998,33.79657551100007],[-104.61368115099998,33.76071239400005],[-104.63989338799996,33.70910515600008],[-104.59105445699993,33.592381745000125],[-104.62147114599998,33.46115643500008],[-104.76604324499993,33.329034185000125],[-104.712458444,33.24404357200012],[-104.69614187399992,33.079456139000115],[-104.58268706099994,33.04947969299997],[-104.58641434299989,33.002659535000134],[-104.74332353499994,32.95565280500011],[-104.8140926179999,32.86472207500003],[-104.77536980499997,32.74873284500018],[-104.87224194699985,32.70951248200004],[-104.97756644899988,32.7025458490001],[-105.09178015499992,32.646939622000104],[-105.08191926999984,32.61961543100011],[-104.87333290899994,32.52335222700009],[-104.64592810299985,32.2336616230001],[-104.42601339699996,32.22434025000007],[-104.48133582799994,32.15837133600013],[-104.72252945799994,32.01470017300005],[-104.8264071889999,31.86911210300019],[-104.93354437999983,31.91950230800012],[-104.96433093199983,32.037585879000176],[-105.00752041599992,32.06614754300011],[-105.01801662699984,32.22198647000016],[-104.94153411199983,32.28608223700007],[-105.12953017399991,32.4129357760001],[-105.18133076799995,32.504079263999984],[-105.30508843099989,32.43622215700009],[-105.37117397699996,32.437859993000075],[-105.40357648499997,32.3531830120001],[-105.5804001969999,32.518676224000046],[-105.80757935899999,32.53930775800018],[-105.93402703599986,32.813655425000036],[-105.88599912599989,32.99401982900008],[-105.92391898299991,33.13807238000015],[-105.98353217999994,33.17133940400004],[-105.93809469799999,33.33552591000017],[-106.02607351699987,33.42638438700004],[-105.85906916899995,33.55696980200014],[-105.71918464099997,33.62652683400006],[-105.80654201599998,33.70297692100007],[-105.81198210499997,33.80195793900009],[-105.97363106499995,33.84827593900013],[-106.05670302399994,33.846752978000154],[-106.183035051,33.728315630000054],[-106.39356995299994,33.69956803399998],[-106.35249938599992,33.847063779],[-106.27161186699988,33.810540599000035],[-106.29235757199996,33.97936014100003],[-106.3366807829999,34.039015923000136],[-106.36012616599993,34.150924729999986],[-106.42096107799995,34.164716625000096],[-106.5682510709999,34.062981416000014],[-106.67951264699991,34.066954723000094],[-106.73168361599994,34.11003064600004],[-106.6694614889999,34.27010943200014],[-106.7208477829999,34.32749918800005],[-106.96165925699995,34.249213648000136],[-106.98597196199995,34.12618560700008],[-106.95271134099983,34.054384366000136],[-107.0284617829999,34.00248160000001],[-107.04561524399998,33.90043546300018],[-107.13190557999997,33.85343727400004],[-107.21475178999998,33.87159702400015],[-107.32367381499989,33.84219848000009],[-107.31470467199995,33.73910796000001],[-107.2630215289999,33.72583757100011],[-107.28951632099995,33.60787066800009],[-107.26220350399996,33.54828424200019],[-107.33450681799997,33.41955062200009],[-107.50273607099996,33.452766461000124],[-107.48752407899997,33.344892643000094],[-107.54185135399996,33.22455901100011],[-107.51629261299996,33.131304119000106],[-107.51817502999984,32.94935779999997],[-107.59893163099997,32.91193312900009],[-107.56698005999988,32.70027719500018],[-107.69698760899985,32.460972316000095],[-107.77439073799991,32.48475680400014],[-107.83622104799997,32.56733636000007],[-107.95139379899996,32.58229336700009],[-108.05121892199998,32.65747480200014],[-108.132515647,32.77934706500014],[-108.2798191739999,32.80770402100018],[-108.35400984899991,32.7316564460001],[-108.32039979399997,32.656736795000086],[-108.34106570299997,32.54203254000004],[-108.45208121399997,32.499107224],[-108.48198634499994,32.41561517900004],[-108.57305738699989,32.43981349500007],[-108.5383409929999,32.52405969900019],[-108.54431889099999,32.61022729600006],[-108.67900646999993,32.741503994000084],[-108.78445721299994,32.80466468700007],[-108.90480336599995,32.76737647699997],[-108.97686467999984,32.79307112700019],[-109.13855401399996,32.99781529800015],[-109.16605278099996,33.07230647700004],[-109.41807639799993,33.08604866000013],[-109.45062322899992,33.12129675300008],[-109.46818830299992,33.264191296000035],[-109.43911277699993,33.33747218400009],[-109.51863654799996,33.356731524000054],[-109.52251211999999,33.177452832000085],[-109.57578617799999,33.143066881000095],[-109.72103106599991,33.20778001800011],[-109.7687459309999,33.289178989000106],[-109.88742475099991,33.32819292800008],[-109.95369051499995,33.39006117600013],[-110.07461484699996,33.443540229],[-110.38723153799998,33.53578456000014],[-110.41175598099994,33.485525098000096],[-110.3118171619999,33.43943247200008],[-110.36726414499998,33.3447613080001],[-110.23629702399995,33.325782654000136],[-109.97110323499999,33.15691338100004],[-110.00036148099997,33.10847696700017],[-110.10479162099995,33.1291398350001],[-110.01621279699998,32.9969550350001],[-110.1275497119999,33.00648124000003],[-110.1635306689999,33.126946113000145],[-110.2764418239999,33.15664517200014],[-110.51686685699997,33.09879690200012],[-110.62231535299998,33.137698052000076],[-110.6776765859999,32.95481494100005],[-110.56522979299996,32.877134791000174],[-110.57502631999995,32.8239865380001],[-110.51682274099988,32.65963770800005],[-110.45015605799989,32.58036207200013],[-110.41924049499994,32.39047313100008],[-110.34834230699988,32.31327070599997],[-110.36223245599996,32.25629582100004],[-110.53455378199993,32.38814984700019],[-110.60473262099993,32.54124631200017],[-110.71877667799998,32.69505306800005],[-110.73921471099993,32.79027949400006],[-110.81092470799996,32.85329422900003],[-110.8621022939999,32.952671156000065],[-110.97266687699994,32.97951880400012],[-111.03691795199995,32.81786607300006],[-111.00460769499995,32.68091786500014],[-111.08647267299995,32.562969361000114],[-111.04954215999999,32.46516534700015],[-110.89472214899996,32.48508259100004],[-110.86433655099995,32.447054728000126],[-110.95216470399998,32.371274816000096],[-110.89317394999995,32.33940267300005],[-110.70494175799996,32.310075962000155],[-110.64205917599998,32.25932952600016],[-110.70483679799997,32.173177886000076],[-110.62467319899991,32.149804838000136],[-110.66041444299998,32.01584985500011],[-110.79784860199999,31.93774888300004],[-110.94099558799991,31.797185109999987],[-111.000323257,31.711673390000158],[-111.07874907999997,31.73223285],[-111.0523190479999,31.917007377],[-111.09297468799997,31.99193726599998],[-111.23170361599989,32.00424027800011],[-111.31870489799991,31.942367744000023],[-111.40388973699999,31.751781411000024],[-111.45193879599992,31.81638039800015],[-111.47088589999998,32.007523420000155],[-111.61991971799989,32.04960917900007],[-111.70000270899999,32.009072029000095],[-111.72089470899994,31.91450954200002],[-111.65776835099996,31.761656665000146],[-111.68633110199988,31.70421678500003],[-111.66204736399999,31.52799827000007],[-111.53428664199993,31.466757927000174],[-111.54727155099988,31.339706212000067],[-111.44325263499996,31.27990921200012],[-111.3426515249999,31.371978048000187],[-111.26325260599992,31.3472630010001],[-111.29981262299987,31.26717441900007],[-111.1969376699999,31.258220032000054],[-111.17274464699994,31.182948530000147],[-111.17848155699988,31.3456340620001],[-111.07483795299999,31.332241228000044],[-110.62703320999998,31.33300718800018],[-110.48194858799997,31.32132587199999],[-110.42341658399988,31.270605635000152],[-110.43518863199995,31.20561269300015],[-110.24895464599996,30.984086368000078],[-110.27647360699996,30.945890873000167],[-110.44547255699996,31.00361284899998],[-110.62850163899998,31.014179412000033],[-110.65619661999989,30.831720802000063],[-110.74911454299996,30.858796864],[-110.84804564399991,30.957862243000193],[-110.89838366599997,30.938094027000034],[-110.8448486179999,30.83636454400005],[-110.95246856699998,30.623163125000076],[-110.927116663,30.51809311900007],[-110.84152267899998,30.472226674000126],[-110.80349767199993,30.391215580000164],[-110.73148354499989,30.46411684800006],[-110.79326655399996,30.500771749000023],[-110.82121265699993,30.618067264000047],[-110.81127959899999,30.722021805999987],[-110.69949367599992,30.713692877000028],[-110.70169057299995,30.558542675000183],[-110.63385767499994,30.620691302000125],[-110.6852035369999,30.743682991000185],[-110.60614056499998,30.808760758000176],[-110.60084554899998,30.906128298000056],[-110.5418625989999,30.982172444000128],[-110.42855066799996,30.94016905100011],[-110.3965986849999,30.83474164000006],[-110.33320651899999,30.759574409000038],[-110.35334756199995,30.66028087500007],[-110.25938458299999,30.647725287000014],[-110.21864367199998,30.510577402000024],[-110.31116462799997,30.4653548550001],[-110.26468663999992,30.363176605000035],[-110.29409052399984,30.257644421000123],[-110.15586858199993,30.26209621700002],[-110.08395352899998,30.07927618000008],[-109.95895353599985,29.983088644000134],[-109.8641285619999,29.936198434000175],[-109.81359054799998,29.862728035000146],[-109.73171259699996,29.885868290000133],[-109.64981067399998,29.63633065100015],[-109.64223460699992,29.446811964000176],[-109.66554266799994,29.384503243000154],[-109.51744852099989,29.38396529200014],[-109.39385953699997,29.633091716000138],[-109.40820365599984,29.680494898000063],[-109.50654567599992,29.72256333500019],[-109.57176157699996,29.859579121000024],[-109.62469463599996,30.02116327200008],[-109.67197460499995,30.082737905999977],[-109.69014757699989,30.25908845500004],[-109.87157454199996,30.532428353000057],[-109.80825060499996,30.622984088000123],[-109.91280361499992,30.812194488000046],[-110.03614063799989,30.724827732000165],[-110.02248366799995,30.670967466000093],[-110.18262462299987,30.623678110000128],[-110.28378262699988,30.744870707000075],[-110.29297656899996,30.849224228000026],[-110.25382251999997,30.913786005000134],[-110.12056752599989,30.914954945000034],[-110.12124662799994,31.001779895000027],[-110.04608157599995,31.08304898400013],[-109.92314956599995,31.147967661999985],[-109.83860767899995,31.084609024000088],[-109.8074645499999,30.846145219000107],[-109.74210364199996,30.767340913000112],[-109.73977665799998,30.679518348999977],[-109.68298356499997,30.60371275100016],[-109.45347565599997,30.585385552000105],[-109.4181286679999,30.5076792750001],[-109.5205005389999,30.380290943000148],[-109.48850262399998,30.289391382000076],[-109.4039835349999,30.219428810000124],[-109.40361054099992,30.138546797000117],[-109.50376154299994,30.07981815400018],[-109.50462353799986,30.022378312000058],[-109.3777086159999,30.001451885000108],[-109.34545857299997,29.88843214700006],[-109.22734867199995,29.988693288000036],[-109.16535963699994,30.169705851000174],[-109.25012163199995,30.261789272000158],[-109.31333157599988,30.481220457000063],[-109.30802951899994,30.582217696000043],[-109.23858662499993,30.63313692000014],[-109.23788455699986,30.73547425800018],[-109.11556962299983,30.720173764000037],[-109.08494566899998,30.614422644000115],[-109.01192453999982,30.555725518000088],[-108.96649965399996,30.252508661000093],[-108.85354663599992,30.29303432500012],[-108.85211165399994,30.418806458000063],[-108.8027955529999,30.55926251300008],[-108.8857725389999,30.599177973999986],[-108.90389253699993,30.697619404000136],[-108.95153762199999,30.750281728],[-108.96072368499995,30.855624984000144],[-108.85905455199992,30.87737501700019],[-108.83277158599998,30.663029804000075],[-108.74835157099994,30.657110839000154],[-108.68894164699998,30.759894430000088],[-108.60224158799991,30.748687825000047],[-108.50167065199997,30.645654286000024],[-108.49926755999991,30.57962081500017],[-108.37379465999999,30.617790325000158],[-108.32032767399994,30.53407640300003],[-108.24359855799997,30.49781478100016],[-108.12993659799992,30.275889812000116],[-108.07630163799985,30.05418394700007],[-108.03638466799998,30.05469909900006],[-107.97295361,30.176944463000098],[-107.83988167699988,30.124303261000193],[-107.67305766399988,29.919022908000102],[-107.59603166199992,29.874838544000056],[-107.49800865699996,29.706119215000058],[-107.427390619,29.715436873999977],[-107.39556855599994,29.851333508000153],[-107.26581552099998,29.88552714700006],[-107.18423462499999,29.82613851300016],[-107.1197276659999,29.598780227000077],[-107.12690760399988,29.527828758000112],[-107.07604956899996,29.452377715000182],[-107.06558962399993,29.33382541800006],[-107.13160666699991,29.226443683000184],[-107.09110262899998,29.022281476000046],[-107.00061763699995,29.052986231000148],[-106.99369066399993,29.145063617],[-106.91519162699996,29.145771553000145],[-106.84023260199996,29.075183523000135],[-106.70923653099993,28.997789387000125],[-106.80899861299991,28.95523530300011],[-106.85371355199993,28.90125735500004],[-106.92172263799989,28.69913748300013],[-107.01287063799998,28.760210879000113],[-107.11276968099992,28.86456088],[-107.17472854099992,28.787205972000038],[-107.13944257299988,28.692992542000127],[-107.00359354799997,28.58719180100013],[-106.99454461299996,28.44058393300014],[-106.93881954099999,28.342996954000114],[-106.99819962499998,28.248796936000076],[-107.09739659999991,28.365030128000058],[-107.12156665599991,28.432461366000155],[-107.24325562899986,28.5316092220001],[-107.39541667599997,28.594882532999975],[-107.52571067899993,28.68580807700016],[-107.65087160399997,28.735778134000157],[-107.56670354999983,28.566122714000073],[-107.44240562499994,28.552466246999984],[-107.45434564599992,28.440267935000122],[-107.5187525259999,28.415741983000146],[-107.51850157199993,28.30118768600005],[-107.42412553299994,28.312400158000173],[-107.45251453599997,28.399656441000047],[-107.36824757499988,28.442266851000113],[-107.27464267099998,28.423771511000155],[-107.23969264999994,28.326590720000127],[-107.10207353399989,28.16268126200015],[-107.05324559499991,28.071720178000078],[-106.951721637,28.0551766480001],[-106.8884426269999,28.132855433000145],[-106.901710676,28.20553038900016],[-106.83731066999997,28.32117165200009],[-106.80456559199996,28.43824588500013],[-106.75349465599999,28.422545574000026],[-106.64083064499994,28.475618444000133],[-106.70994563999989,28.611877847000017],[-106.76339753899993,28.60712128500012],[-106.87015566099996,28.729984228000035],[-106.71984852299994,28.795462482000175],[-106.72883559999991,28.865812633000132],[-106.64676654099998,28.940451805000123],[-106.67894751799997,29.07327764500019],[-106.73837252899995,29.150741351000136],[-106.67251557999998,29.21355801500016],[-106.839515614,29.276885641000035],[-106.79668459099997,29.357612421000113],[-106.85153157499997,29.424164732000065],[-106.95935855699986,29.431818416000056],[-107.02201060099992,29.529430707000074],[-107.04036763899995,29.654943170000138],[-106.93240352899988,29.77703028300016],[-106.86454062399997,29.662230731000136],[-106.72760765099991,29.675271296000062],[-106.73140766999995,29.626756003000025],[-106.56991555299993,29.496433165999974],[-106.51313067399991,29.510753648000048],[-106.467437567,29.374577728000077],[-106.394302612,29.258108166000056],[-106.38850367599997,29.12603854100007],[-106.33458658099994,29.075993382000092],[-106.37434362399989,28.934184153000047],[-106.3653416279999,28.77470235200002],[-106.25509663399993,28.703988258000095],[-106.2684786779999,28.55944200200014],[-106.32293657399993,28.456309221000083],[-106.47284657699998,28.409314237000103],[-106.42143265299995,28.306461412000147],[-106.33864560099994,28.305170431000136],[-106.27905261599994,28.08938520700019],[-106.32469157599985,27.96113286800005],[-106.40742464899995,27.97760800200018],[-106.47055865199991,28.031976714000052],[-106.56890067299992,27.92636305700006],[-106.65191654999995,27.954724065000107],[-106.71714066499987,28.07149319600012],[-106.80588557399989,27.975088234000054],[-106.77397952399991,27.856790076000152],[-106.64815558999999,27.80780623400011],[-106.61649362199995,27.712616144000094],[-106.53536953899993,27.709680131000084],[-106.52672561799989,27.9130066620001],[-106.45610053999997,27.924965291000035],[-106.41724354599995,27.81423297400005],[-106.2938615949999,27.726964454000097],[-106.52529868299996,27.478890294000166],[-106.41208666299991,27.500928330000193],[-106.48072053699997,27.308385620000024],[-106.43736262799996,27.256399883000086],[-106.4271846499999,27.151713265000126],[-106.48318464799985,27.077639369000167],[-106.46666760499994,26.992737060000024],[-106.38742056599989,26.922794436000117],[-106.32148767799998,26.913312828000073],[-106.32806361599995,27.01303434100015],[-106.23941057299999,26.990925395000147],[-106.05912756999999,27.05127275100017],[-106.13108067699994,27.14338668200014],[-106.02716854699997,27.152259262000086],[-105.93740054299991,27.072245614000053],[-105.73445153299991,27.11887967400014],[-105.82229655999993,26.871578661000115],[-105.77519261199996,26.814820101000066],[-105.63862659799992,26.718385299000033],[-105.6352235459999,26.657142923000038],[-105.47879057799992,26.679530148000083],[-105.38867958599991,26.535045584000102],[-105.3216015619999,26.354797785000187],[-105.19446552499994,26.32868882700012],[-105.21657564499998,26.27736324900019],[-105.14338654299996,26.220589768000025],[-105.06600967399993,26.211640242999977],[-105.10181464999994,26.128273834000083],[-105.03684953599986,26.020805765000148],[-104.96661354599996,26.04278294700009],[-104.86080157299989,25.95739482300013],[-104.8135226099999,25.868567772000176],[-104.87014756299993,25.771526288000018],[-104.94331353099989,25.764168821000112],[-105.08588366899994,25.949352220000037],[-105.164108619,25.976835810000125],[-105.23525957699991,25.905956089000085],[-105.15847765599989,25.821651075000034],[-105.23965454499995,25.784751925000023],[-105.28443854999989,25.711865242000158],[-105.26399257399999,25.645880386000158],[-105.2721635879999,25.506260677000057],[-105.3947445639999,25.516385346000163],[-105.39700365399995,25.440412949000063],[-105.34802266199983,25.405752438000093],[-105.2342225679999,25.40081667100003],[-105.11173261999994,25.438959862000047],[-105.07567551699998,25.389432202000137],[-104.86225164199988,25.30224331000005],[-104.74340061399994,25.288250226000116],[-104.75657662999987,25.224462098000174],[-104.67662852899991,25.10900171700007],[-104.7247086349999,24.997195008000176],[-104.7038115439999,24.857814519000158],[-104.64053353899999,24.82675118600008],[-104.44483152299989,24.874233997000147],[-104.45030959899992,24.788427951000074],[-104.3865055469999,24.700492231],[-104.29635666899998,24.68724496900012],[-104.24816860499999,24.777232578000053],[-104.1509246139999,24.718512485000133],[-104.06756558099988,24.67238553100009],[-104.136993556,24.616996406000055],[-104.13712364299994,24.521135932000163],[-104.18155661399999,24.474685268000144],[-104.18826263999983,24.379655944000035],[-104.09892261599992,24.19188823700017],[-104.00876652999995,24.218064082000183],[-103.8742445279999,24.200829716000044],[-103.77848061299989,24.283312672000136],[-103.71120460799995,24.381896762000167],[-103.66903659499997,24.52443002000018],[-103.5398555409999,24.62038219200008],[-103.49333966599994,24.713839741000015],[-103.49269057199996,24.87221395800003],[-103.52479560799998,24.952204137000024],[-103.64085361899993,25.06674468800003],[-103.60740663999991,25.203480183000067],[-103.45696254199993,25.480236880000064],[-103.32851456899994,25.56667006000015],[-103.16925857699988,25.64885294400011],[-102.99525462499992,25.542270172000144],[-102.73017861299985,25.510758742000178],[-102.43202157699989,25.435111060000054],[-102.3226776379999,25.477999079000085],[-102.22254960199996,25.42879060200005],[-102.19657860999996,25.333202036999978],[-102.13446753399995,25.318167585000026],[-102.04446466899992,25.38053464400008],[-101.93599663899994,25.347638189],[-101.859580672,25.27491277400003],[-101.766448675,25.262250232000042],[-101.77439857499996,25.195852316000128],[-101.74343062799989,25.17711440400018],[-101.71076953699998,25.311993978000032],[-101.58012366099996,25.30222034400009],[-101.45114159399998,25.264731276000134],[-101.30859358399982,25.255328792000057],[-101.2579425809999,25.18966781200004],[-101.12506058199995,25.133743419000155],[-101.11409755599988,25.13415731700013],[-101.06796255499995,25.16082417500013],[-101.07851453299992,25.27845060700008],[-101.03118863099996,25.360525533000157],[-100.80200962799995,25.425650741000084],[-100.80702954999998,25.526937827000097],[-100.77484153299997,25.6113870100001],[-100.65719565499995,25.679739754000025],[-100.5899045619999,25.689894262],[-100.59587063399982,25.740956984000093],[-100.51057454299996,25.7965933750001],[-100.599922613,25.854446444000075]],[[-101.4065096359999,25.885953013],[-101.52323953999996,25.827826693000134],[-101.64501166199994,25.895776603000172],[-101.65662361499994,26.04979357100018],[-101.52863362999994,26.187296346000096],[-101.44754760199999,26.116433390000054],[-101.47221353099991,26.0294724850001],[-101.42002059299995,26.003987812000105],[-101.4065096359999,25.885953013]],[[-101.53263867099997,26.40656827400005],[-101.57272361399998,26.37554266000018],[-101.72248056399991,26.382073504000175],[-101.84044663099996,26.482982901000128],[-101.93924764399998,26.597279874000094],[-101.90198555899997,26.62110677400011],[-101.72529554199997,26.479004011000086],[-101.55624361899993,26.45734701700019],[-101.55796861499994,26.5014371690001],[-101.70884655999993,26.567501151000045],[-101.77825156799992,26.695249234000016],[-101.84188060699995,26.75144402799998],[-101.79841658399994,26.82436373600018],[-101.61568455599996,26.72507908700004],[-101.65972156699996,26.590688177000118],[-101.57089267099997,26.538467412000045],[-101.47713454599995,26.550579765000123],[-101.48551158799984,26.428816192000056],[-101.53263867099997,26.40656827400005]],[[-102.58037556299996,26.759696347000045],[-102.61561559899997,26.854493157000093],[-102.42536953099994,26.855837112000188],[-102.41223156799992,26.78806137800018],[-102.47953757999989,26.7514609590001],[-102.58037556299996,26.759696347000045]],[[-102.24311057799997,26.997881034000045],[-102.45690157999996,27.018635967000023],[-102.52167558599996,27.080145390000155],[-102.58278653399998,27.06785098200004],[-102.69351164299985,27.128904262],[-102.66692357499994,27.174494440000046],[-102.50137361099996,27.178793182000106],[-102.50009151499995,27.13842979200018],[-102.38362865899995,27.082188228000064],[-102.215614583,27.040474010000082],[-102.24311057799997,26.997881034000045]],[[-104.10340156999996,27.252094937000038],[-104.17311855199995,27.289275216000135],[-104.10049455799998,27.431519298000012],[-104.0575565829999,27.35371344400005],[-103.96933755499992,27.31671304100007],[-103.98421459499986,27.18619272700016],[-104.05460363799989,27.157936996000046],[-104.10340156999996,27.252094937000038]],[[-102.63215661399994,27.37325752700019],[-102.69084954999994,27.480564160000085],[-102.69453456999992,27.55635869300005],[-102.77906053199996,27.64780676600003],[-102.72879761099989,27.689479242000118],[-102.60037964599991,27.59722198000003],[-102.54672255699995,27.447402502000045],[-102.50191457899996,27.391364785000064],[-102.60736864399996,27.32203588400006],[-102.63215661399994,27.37325752700019]],[[-102.9284815339999,28.005396861000065],[-102.99201166699999,27.98753871300005],[-103.03347761199996,28.084151547000033],[-103.14813953299995,28.262991186000136],[-103.11920151599998,28.36240307200012],[-102.97771465399995,28.225180588000057],[-102.92260766399994,28.11962107900007],[-102.9284815339999,28.005396861000065]],[[-106.01094855799994,28.21958482900004],[-106.0010605949999,28.114868372000046],[-106.11505162799995,28.112205274000132],[-106.07910164499992,28.20151981600003],[-106.12914261299989,28.31157604900011],[-106.03342463199988,28.309753153000088],[-106.01094855799994,28.21958482900004]],[[-106.0279386759999,28.343660801000055],[-106.09760251699998,28.35736839800012],[-106.13356758799995,28.436318047000157],[-106.08119963599995,28.46999871300011],[-105.97687561899983,28.390929035],[-106.0279386759999,28.343660801000055]],[[-101.95172863399995,27.613779256999976],[-101.85607167199993,27.531629732000056],[-101.76494563199998,27.40100430900003],[-101.82951361199997,27.342184136000185],[-101.74742862799991,27.10270444500003],[-101.92811563899994,27.178464947000066],[-101.99749751299998,27.180765109000106],[-102.00279252899998,27.059745179],[-102.11498262699996,27.219015254000112],[-102.01708266799989,27.303085575000182],[-101.94451851999997,27.325665751000088],[-101.98313160099997,27.443689486000153],[-102.03007461799996,27.493501628000104],[-101.95172863399995,27.613779256999976]],[[-101.2802126279999,26.86647793800006],[-101.21466865899998,26.847233759],[-101.0743556,26.68987878100006],[-101.09426865499995,26.659983047000026],[-101.24759663099996,26.746935067000038],[-101.31781753299998,26.816522968000186],[-101.2802126279999,26.86647793800006]],[[-103.55904356099984,28.596621610000113],[-103.53903159999987,28.526682339000047],[-103.64447761799994,28.509584095000037],[-103.68016055399994,28.599763315000075],[-103.61325854899997,28.646291427000108],[-103.55904356099984,28.596621610000113]],[[-104.4849476469999,29.18328023400005],[-104.67121163999997,29.234393247000128],[-104.687385528,29.42985068000013],[-104.65198556599995,29.44513021900002],[-104.47966755099992,29.24793454700017],[-104.4849476469999,29.18328023400005]],[[-106.66682460299995,29.887650283000028],[-106.69911957399995,29.895031052000093],[-106.69949357399997,30.069005499000184],[-106.65139754299997,30.05166401200006],[-106.66682460299995,29.887650283000028]],[[-103.45287590399994,30.118683902000043],[-103.52783416499994,30.165679454000042],[-103.55961838299999,30.286543892000054],[-103.48879354199994,30.297779550000087],[-103.45287590399994,30.118683902000043]],[[-103.43223552299992,30.287838562000047],[-103.25473441299988,30.492376869000168],[-103.03999221799995,30.503698323000037],[-102.9486485249999,30.45805742500005],[-103.07395491999995,30.383998134000024],[-103.34588395999992,30.29460953800003],[-103.43223552299992,30.287838562000047]],[[-104.09078116599989,30.753349939000145],[-104.0546863059999,30.871101840000108],[-104.11415214599998,30.929345521000016],[-104.07120176899991,31.01117362500014],[-103.96856706599993,30.87815203800011],[-103.85108075699992,30.80737710200009],[-103.85452938399999,30.76883683800014],[-103.70749047199996,30.689939900000127],[-103.75589685399996,30.613703207000015],[-103.70001200399997,30.510849022000116],[-103.79071836199995,30.48836595800003],[-103.8524546559999,30.524861934000114],[-103.78693349699995,30.616455307000024],[-103.855177428,30.664786554000102],[-104.04156577999993,30.552089438000166],[-104.20616878899989,30.58374223200002],[-104.18737253599988,30.74850926900018],[-104.09078116599989,30.753349939000145]],[[-107.69692261799997,30.814076561000093],[-107.75243361599985,30.78687728500006],[-107.81345353599988,30.878873031000126],[-107.73916657199999,30.900392226000122],[-107.69692261799997,30.814076561000093]],[[-108.92958860199991,30.98591127600008],[-108.99499560999993,30.9570983160001],[-109.0975185239999,30.974635772000056],[-109.10194366599995,31.02879091300008],[-109.03016657899997,31.178409561000024],[-108.920852648,31.308742288000133],[-108.74750566999995,31.32782553500016],[-108.67595657099992,31.259987775000184],[-108.79397561099995,31.09138964800013],[-108.79724857699995,31.00556952100004],[-108.92958860199991,30.98591127600008]],[[-109.29720932299989,31.74688000800012],[-109.34443848599994,31.882245136000165],[-109.41281686099995,31.942120901000123],[-109.33013529399989,31.98309609100005],[-109.17287344799996,31.80949750200017],[-109.29720932299989,31.74688000800012]],[[-110.49983747499988,32.092278252000085],[-110.59642814299991,32.21654183400017],[-110.52215484099997,32.25558598100014],[-110.49983747499988,32.092278252000085]],[[-106.55601969699995,32.45052220200017],[-106.5829648269999,32.509072902000185],[-106.53057680599994,32.61614593900015],[-106.45098438999992,32.56829690100005],[-106.45454506799996,32.508481410000115],[-106.55601969699995,32.45052220200017]],[[-106.72045527399996,33.094748442000025],[-106.77444907299997,33.233324677999974],[-106.7030949849999,33.312277590000065],[-106.60913633899997,33.26244541800003],[-106.67001694799995,33.130847626000104],[-106.72045527399996,33.094748442000025]],[[-109.98385901299997,32.69411336400009],[-109.88905142999994,32.75337863800007],[-109.82889192299996,32.73417477100003],[-109.82176242299988,32.593673310000156],[-109.98385901299997,32.69411336400009]],[[-110.6869673629999,32.361898753000105],[-110.76045153399997,32.38580176500005],[-110.87618391099994,32.35822498300007],[-110.80713026199987,32.513906809],[-110.66384562199994,32.40985655500015],[-110.6869673629999,32.361898753000105]],[[-110.00790368299982,30.317020314000104],[-109.88306462299994,30.270351051000034],[-109.91860154499994,30.19950368500008],[-110.01296953799994,30.19159183900007],[-110.00790368299982,30.317020314000104]],[[-103.94170359299994,25.7398358210001],[-103.88794659199988,25.711333159000105],[-103.82717159199984,25.581825379000065],[-103.83527353899996,25.52286405400008],[-103.76956159799994,25.366783462000058],[-103.88072155999998,25.332643132000044],[-103.92868767099998,25.498512111000025],[-103.91948652099995,25.61364174200014],[-103.98499260299991,25.699635878000095],[-103.94170359299994,25.7398358210001]]]]},"properties":{"objectid":164,"eco_name":"Chihuahuan desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Nearctic","eco_biome_":"NE13","nnh":2,"eco_id":428,"shape_leng":187.000564126,"shape_area":46.8072953603,"nnh_name":"Nature Could Reach Half Protected","color":"#E18C78","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":503623.45938530954,"percentage":1.908953256817222}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-70.30879957199994,-22.958491769999966],[-70.40814959999994,-23.083373242999926],[-70.57710261599993,-23.098869537999917],[-70.59088849999989,-23.21659454099995],[-70.58771561399993,-23.433103290999952],[-70.61836957599996,-23.49326423399998],[-70.54662350199999,-23.532637385999976],[-70.50489050899995,-23.460441874999958],[-70.4298406239999,-23.495223251999903],[-70.39130348299989,-23.610500236999883],[-70.44646461999986,-23.740546805999884],[-70.49987762799998,-23.807783248999954],[-70.50068664899993,-24.15771278699998],[-70.54140459399991,-24.407421416999966],[-70.57729355599992,-24.550460270999906],[-70.55574049799998,-24.58027604199998],[-70.5802076089999,-24.714127491999932],[-70.51721157099996,-24.9287779739999],[-70.47186262499997,-25.027415372999883],[-70.50679755899989,-25.092920281999966],[-70.46015964399993,-25.14478967799988],[-70.43704252299989,-25.246194947999925],[-70.44842548299994,-25.349484134999955],[-70.53353163999998,-25.474271059999978],[-70.62788353899987,-25.50979356599987],[-70.73120155899989,-25.780974620999814],[-70.69478654899996,-25.896648236999965],[-70.63106564399999,-25.989486196999962],[-70.67368359899996,-26.16550398499993],[-70.62813549899994,-26.33490844999983],[-70.69396260799994,-26.38617401399989],[-70.70939654099988,-26.53217838599994],[-70.6865385879999,-26.566240931999857],[-70.82936051899992,-26.880672103999927],[-70.78950456899986,-26.99416005599994],[-70.81099660699988,-27.05286941999998],[-70.93086251699998,-27.110216724999816],[-70.96979561899997,-27.167124483999885],[-70.93110659799993,-27.32047173799998],[-70.9611585699999,-27.368105757999956],[-70.89842957999991,-27.457370008999874],[-70.9375836289999,-27.65854339699996],[-71.04103861099998,-27.71653191799993],[-71.0796055909999,-27.780992943999934],[-71.14509557999997,-27.978975676999823],[-71.1686475539999,-28.122499675999904],[-71.15692160699996,-28.216969759999984],[-71.19825763299991,-28.292492718999938],[-71.16591656299988,-28.352476467999963],[-71.2565685219999,-28.464075640999965],[-71.31008948799996,-28.689757545999953],[-71.39767450899996,-28.80407010999994],[-71.49520164099994,-28.85379809699998],[-71.52128562099995,-28.917179534999832],[-71.46635448299992,-29.104448182999874],[-71.50284560099993,-29.13440979899991],[-71.45999161299994,-29.247726423999893],[-71.33963754099989,-29.32877842199997],[-71.30854051299997,-29.415674115999934],[-71.32904063599983,-29.544581080999876],[-71.29196161099992,-29.596984906999978],[-71.32887249499993,-29.731610006999915],[-71.27706948399992,-29.859279132999916],[-71.29368560099994,-29.94805974899998],[-71.40270951899998,-29.991903975999946],[-71.37319164099989,-30.08306957799988],[-71.51702861999996,-30.285550206999915],[-71.64875056399995,-30.26372306099995],[-71.6884615059999,-30.39973704199997],[-71.71434750599997,-30.605316628999958],[-71.68486064099994,-30.913512670999978],[-71.65344962599988,-30.97377553699988],[-71.67146250399992,-31.147082449999914],[-71.63078361899989,-31.262900402999833],[-71.61830849699993,-31.397469007999973],[-71.57202949499992,-31.499323548999882],[-71.57329549799994,-31.580161807999957],[-71.51174148299992,-31.75542773899997],[-71.52238448799994,-31.920936296999912],[-71.49497952099995,-31.967761965999955],[-71.54355650499997,-32.18619369299989],[-71.47792854999994,-32.26950025499991],[-71.47814949699989,-32.33844878499997],[-71.41082755999997,-32.384414303999904],[-71.44400061799996,-32.49696381699994],[-71.48686952599985,-32.523626986999886],[-71.43859864899997,-32.63111081299991],[-71.50055650399997,-32.770846359999894],[-71.57884264099994,-33.02026279699987],[-71.6612774859999,-33.02154858099988],[-71.71987956199996,-33.20852017499993],[-71.6547466419999,-33.30297718299994],[-71.70948750999986,-33.42770241699998],[-71.60082250599999,-33.537497301999906],[-71.6377945779999,-33.67066143599993],[-71.69160455199983,-33.73811061099991],[-71.78198259099997,-33.768516802999955],[-71.82930748699994,-33.894768213999896],[-71.93702650999995,-34.02788943199994],[-71.91262863399993,-34.14780110699991],[-71.7426686149999,-34.22753396099989],[-71.7220005179999,-34.26674400099989],[-71.79354056499989,-34.40911984699994],[-71.79863759999995,-34.548993358999894],[-71.90327459699995,-34.67769094499994],[-71.90806552599997,-34.76098577199997],[-71.8574906309999,-34.816698102999965],[-71.77011850999997,-34.83390581499998],[-71.72055061699996,-34.89107927999993],[-71.61730954199999,-34.907748873999935],[-71.68274655699992,-35.04605547299991],[-71.78894761699996,-35.159417360999896],[-71.93658461599983,-35.44275452199997],[-72.02075954299994,-35.52936539799998],[-71.88193561299994,-35.62335721099993],[-71.89533257699998,-35.68869749899994],[-71.97418952199996,-35.7102119999999],[-72.10603350599985,-35.810959793999984],[-72.15789753799993,-35.92270414199993],[-72.22840862199996,-35.96335721099996],[-72.38024160099985,-36.207281657999886],[-72.3663325039999,-36.38248371899988],[-72.48389456299998,-36.47602860799998],[-72.50468453299999,-36.580465277999906],[-72.4832915689999,-36.74251797599993],[-72.50413551799994,-36.84696269199998],[-72.61222854199991,-37.01168117199995],[-72.6253965109999,-37.10944634899988],[-72.73565659199994,-37.22210298399989],[-72.64123562599997,-37.38275573699997],[-72.67077663799984,-37.48083808599995],[-72.61268652899997,-37.51217148399991],[-72.55311550499994,-37.835918302999914],[-72.56977051399997,-38.07672803499992],[-72.66194160899988,-38.280067473999964],[-72.81992355299997,-38.51056645899996],[-72.95641362599991,-38.65601108699991],[-73.04630249699994,-38.70303741899994],[-73.15703548499994,-38.7089771709999],[-73.03227957299998,-38.813547447999895],[-72.94724265099995,-38.98847592399994],[-72.88844259399991,-39.00448954999996],[-72.68770556799996,-39.30161125399991],[-72.40865357099995,-39.33028658299986],[-72.25033551299992,-39.47672664599992],[-72.16600049099998,-39.38172699299997],[-72.22632555099995,-39.246635021999964],[-72.09927350099997,-39.180332825999926],[-72.08766959399998,-38.93857275499994],[-72.18817850399995,-38.82044038999993],[-72.1969065799999,-38.733317714999885],[-72.12084952599997,-38.64413627699997],[-72.02262853999986,-38.45453745899994],[-72.00003864099995,-38.233548246999874],[-71.83808853599999,-37.95481325299994],[-71.73904461599989,-37.81903161799988],[-71.94618960599996,-37.753892830999916],[-71.98046153199988,-37.68407023699996],[-71.93347962399997,-37.5539266049999],[-71.84396357999998,-37.19804457499998],[-71.79000859899998,-37.121733212999914],[-71.84252960399988,-36.85695241199994],[-71.76495358099999,-36.609464818999925],[-71.72264056099993,-36.267240092999884],[-71.59377248699985,-36.159648810999954],[-71.50546259899994,-35.95329741799998],[-71.48506959599996,-35.83623911099994],[-71.43536356899989,-35.80566075499996],[-71.27832760699994,-35.55966882799987],[-71.17298854199998,-35.52725550599996],[-71.08847850599989,-35.171032331999925],[-70.98054457099994,-34.996979764999935],[-70.96545463099989,-34.83721381699996],[-70.97920262899993,-34.751292771999886],[-70.89990948899998,-34.6732958099999],[-70.9161296449999,-34.55908701499993],[-70.82159451799998,-34.42154082199988],[-70.82639349299984,-34.30556176799996],[-70.70017259199983,-34.16785061899998],[-70.65529655299997,-34.081171849999976],[-70.65026053799994,-33.95616749899983],[-70.68141959199994,-33.87022080399993],[-70.68591363399997,-33.72993976399994],[-70.60254655399984,-33.630149685999925],[-70.57596552699994,-33.54783101499987],[-70.5975645179999,-33.46915528699992],[-70.72035956799988,-33.34121006099997],[-70.73780063199996,-33.26315626999991],[-70.71865854399994,-33.141513060999955],[-70.76933251299988,-33.05644445499996],[-70.85917662499992,-33.0285104219999],[-70.90913360599995,-33.063165567999874],[-70.89257062999991,-33.367653288999975],[-70.91966261799985,-33.438127324999925],[-71.01081849699995,-33.428388558999984],[-71.10236363199988,-33.247760892999906],[-71.2971194989999,-33.17159906499995],[-71.34050758299992,-33.12109776299991],[-71.29836253499991,-33.03213743899988],[-71.1478956389999,-32.919508632999964],[-70.82248651999987,-32.79216271299998],[-70.74466658399996,-32.8032011759999],[-70.52548953899998,-33.01418289999998],[-70.49272149399991,-33.0931825049999],[-70.3171615259999,-33.074602004999974],[-70.19094062499988,-33.02453153299996],[-70.12875360899994,-32.95393880899991],[-70.1745146099999,-32.86858320599998],[-70.33162651199984,-32.844669971999906],[-70.37190256199995,-32.78912192599989],[-70.37624354999991,-32.61998802799985],[-70.4289476159999,-32.56506577499994],[-70.53882548199994,-32.56376875899997],[-70.50751454699997,-32.49494176699994],[-70.51792151799998,-32.371547914999894],[-70.61862153599992,-32.190389505999974],[-70.47879060299994,-32.14703293799988],[-70.45967852299992,-31.953466462999927],[-70.49064663799993,-31.85753742499992],[-70.62868451299988,-31.636736972999927],[-70.68942263399998,-31.591267326999912],[-70.73561060799994,-31.45506106499988],[-70.81157663499994,-31.41211252899984],[-70.8145595869999,-31.349130739999907],[-70.72331955299984,-31.310719998999957],[-70.67233260299992,-31.248181947999967],[-70.59688558399995,-31.22833963699992],[-70.51770761199987,-31.07796108499997],[-70.43164055399996,-31.021155753999835],[-70.50305956599988,-30.8945023469999],[-70.42568956999997,-30.809836239999925],[-70.44172649799987,-30.704559199999892],[-70.60134157199997,-30.590522066999938],[-70.59040050599992,-30.522510633999957],[-70.52639059299992,-30.465061739999953],[-70.57588154099989,-30.366981234999912],[-70.49159261899996,-30.352726969999935],[-70.46306648799992,-30.441058650999878],[-70.3609614959999,-30.500920359999952],[-70.29994157699986,-30.467250757999977],[-70.31298851199995,-30.29753196999991],[-70.46868152499991,-30.063979290999953],[-70.39907853599988,-30.032605658999955],[-70.26806653999995,-30.116891394999925],[-70.19087256399996,-30.1964425299999],[-70.1098175489999,-30.176808256999948],[-70.10432455199998,-29.934166408999943],[-70.1845546209999,-29.833493213999873],[-70.28437755599992,-29.78586791099997],[-70.37126151399991,-29.64032839899994],[-70.41849554999999,-29.613364486999956],[-70.53069252099988,-29.64732427099989],[-70.46504260599994,-29.497396832999925],[-70.4626924879999,-29.398222825999937],[-70.4107515099999,-29.153929239999968],[-70.36209053899995,-29.060699844999874],[-70.26942457599995,-28.971048349999876],[-70.24500255999999,-28.790007622999894],[-70.15331258599997,-28.69608236299996],[-70.00354758899994,-28.59992936099991],[-69.97734860999992,-28.49309345499995],[-70.02460460599997,-28.409699888999967],[-70.00309764899993,-28.35674101299992],[-69.83296948899994,-28.310203009999952],[-69.72669248899996,-28.14913971099992],[-69.69698350399995,-28.032153655999934],[-69.73245253299996,-27.731335196999964],[-69.70158349199988,-27.604067563999934],[-69.62277264699998,-27.495122268999978],[-69.51092553699988,-27.399175293999917],[-69.39601148899999,-27.127234167999973],[-69.33784460099992,-27.020230959999935],[-69.31699361099999,-26.91309162899995],[-69.31663553599992,-26.861498835999896],[-69.41484864299991,-26.758893276999913],[-69.31421651899996,-26.62301055599994],[-69.26844763899999,-26.47974974899995],[-69.14326458599993,-26.40544702699998],[-69.09183456899996,-26.321793956999898],[-69.09739663199991,-26.191329968999923],[-69.18832351799995,-26.101450150999938],[-69.21618664099998,-25.983680555999968],[-69.19107848199997,-25.496253941999953],[-69.24242350599985,-25.4096579859999],[-69.41230054399995,-25.262854986999912],[-69.42980950199984,-25.180359959999976],[-69.4956055969999,-25.366350032999947],[-69.72080956599984,-25.742412501999922],[-69.77498650099989,-25.939821408999933],[-69.8710635629999,-26.18854902199996],[-70.00304450699997,-26.31445140999989],[-70.1118625659999,-26.299983071999975],[-70.27693157599998,-26.238980753999954],[-70.36677551999992,-26.058761788999902],[-70.36721758099998,-25.834119239999893],[-70.31328556599993,-25.458562702999927],[-70.29781357899998,-25.267439719999913],[-70.31024964099998,-25.073855139999978],[-70.30373354999989,-24.769691630999944],[-70.3507005379999,-24.538839097999983],[-70.36634854599993,-24.246632373999887],[-70.39394361499984,-24.09544278999988],[-70.37762455199999,-23.547298339999884],[-70.31999159199995,-23.311596540999915],[-70.30363464299995,-23.111401823999813],[-70.30879957199994,-22.958491769999966]]]},"properties":{"objectid":165,"eco_name":"Chilean Matorral","biome_num":12,"biome_name":"Mediterranean Forests, Woodlands & Scrub","realm":"Neotropic","eco_biome_":"NO12","nnh":3,"eco_id":596,"shape_leng":49.7403637604,"shape_area":14.1063964375,"nnh_name":"Nature Could Recover","color":"#CD6667","color_bio":"#FE0000","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":148839.82882038027,"percentage":4.50566406558303}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-172.63270557799993,64.59869252700008],[-172.83259569599997,64.67887330999997],[-172.88949574299994,64.61974233600012],[-172.63270557799993,64.59869252700008]]],[[[-172.40800469099997,64.72726840700005],[-172.25340266599997,64.78629242800008],[-172.3197016759999,64.83440572600017],[-172.56080661800002,64.877117725],[-172.78660570199997,64.77943284600008],[-172.76400758799997,64.69261510500002],[-172.40800469099997,64.72726840700005]]],[[[-179.81515472699994,65.93202399500012],[-179.76196266699992,66.11532934400009],[-179.43670660200002,66.12534001900013],[-179.12722762599995,66.25841832200007],[-178.99447671899995,66.1675628500002],[-178.7683406829999,66.21923158300001],[-178.64639270899994,66.35922294500006],[-178.51531969199993,66.35366842600013],[-178.56500258499995,66.19199308000009],[-178.69110060699992,66.0747852400001],[-178.947540744,66.04367094500009],[-178.65472364999994,65.75976666400015],[-178.4769597439999,65.6780975900001],[-178.56307960799992,65.51477453000012],[-178.36947658799997,65.47390923200004],[-177.50033558899997,65.48417907500004],[-177.26959269099996,65.51437856900014],[-177.181670718,65.59365142500019],[-176.73446667899992,65.57143301100018],[-176.17834466899996,65.47615290000005],[-175.95150773799995,65.37139620900012],[-175.87789970799992,65.16597252600008],[-176.00469963099994,64.99680526800012],[-175.83850074,64.92532188299998],[-175.69599866299998,64.92632922000013],[-175.5827026569999,64.87052519100007],[-175.51429760899998,64.77048348800014],[-175.18310564799992,64.78184415200008],[-175.02009573599994,64.8162314130002],[-174.79148871499999,64.73305175300004],[-174.39750674299998,64.65374788500009],[-174.19299366999996,64.53811165100012],[-174.07519574399993,64.3994109350001],[-173.78680462999998,64.32081617600011],[-173.65809665099997,64.32586727800009],[-173.43389867799996,64.50419796800008],[-173.36109966999993,64.39741168300009],[-173.51040667899997,64.2850408720002],[-173.23339869299994,64.23397429400018],[-172.986495653,64.32048123500005],[-172.98530558999994,64.41021437],[-172.74429368699998,64.35778271600003],[-172.31370559799993,64.40192097900012],[-172.59330761499993,64.55472206900009],[-172.93989562399994,64.58770485800017],[-173.2223966059999,64.66886280300014],[-172.957702642,64.73464682899998],[-173.08920263299999,64.83813684600017],[-172.664398727,64.91530450300019],[-172.29049661099995,65.01867952100014],[-172.17790267299998,65.08768353900018],[-172.264007617,65.26017723900003],[-172.20010365199997,65.47586255100009],[-172.3491057269999,65.49967570500007],[-172.57769766199993,65.61134528700012],[-172.64071666499993,65.70119275100006],[-172.367095639,65.66147292400018],[-172.2801965929999,65.58569414900012],[-171.88020362299991,65.52284680600013],[-171.48609961099993,65.52514411800013],[-171.1672055779999,65.46276281000007],[-171.04821758999998,65.54575203300004],[-171.10819966199995,65.61351938500007],[-171.39160169899995,65.70576290000014],[-171.47560161299995,65.76375678500017],[-171.42039470999993,65.83625505100014],[-171.22161871499998,65.70550373200018],[-170.79499861799997,65.59826750600013],[-170.56051671999995,65.6443438340001],[-170.51551864099994,65.70436697800011],[-170.61039759399992,65.84637184000007],[-170.37510667499996,65.90696780400003],[-170.072799591,66.02183474600014],[-169.82099866899998,65.9797336200001],[-169.69650259699998,66.05039993700012],[-169.79060370899998,66.11538349100005],[-170.172103686,66.11536035700004],[-170.19630458700001,66.18334882400018],[-170.34739660599993,66.28658788700017],[-170.55700671499997,66.20674187700013],[-170.68840059099998,66.23817636100006],[-170.53250171799996,66.31642025400015],[-170.919799624,66.49228649700012],[-171.1302036669999,66.54500816500013],[-171.371002669,66.64264677600016],[-171.50300574199997,66.79968324000009],[-171.70640569899996,66.86394846600007],[-171.78869670999998,66.98535379500015],[-172.0234986279999,67.00899109800008],[-172.20880172099996,66.98574254800008],[-172.62289472799998,67.01913035100011],[-172.7328036069999,66.9359961200002],[-173.03469863699996,66.95832936600016],[-173.12480158099999,67.00068932500017],[-173.3829957149999,66.86268229500018],[-173.34100372199993,67.08811894600018],[-173.7182005969999,67.14211583700012],[-173.78900169499994,67.09642876500004],[-174.16509970199994,67.11989775800004],[-174.38349873899992,67.09357439100012],[-174.32130468199998,67.01467520100005],[-174.15800458899997,66.96312850800018],[-174.08459470699992,66.89310977700012],[-174.12109370499996,66.69363674200008],[-174.3372036439999,66.58108203200015],[-174.034896727,66.53146569100011],[-173.8146975919999,66.44147187900012],[-173.823394655,66.3655019970002],[-173.96150159699997,66.32283676800012],[-174.04040564899998,66.21928539500004],[-174.175704654,66.24794999500017],[-174.0690006789999,66.36605201700002],[-174.10839864199994,66.45504553300003],[-174.32640071199992,66.41968178100007],[-174.59129366299996,66.29031816900005],[-174.67300363999993,66.44534012700012],[-174.664199624,66.55198928400017],[-175.02389558799993,66.63482562200016],[-174.99729964199992,66.74366497000017],[-174.84049971399995,66.7405061660001],[-174.82769769799995,66.91524386900011],[-174.98370369199995,66.9751835290001],[-175.04530363999993,67.07652258300004],[-174.91400162899998,67.3187760130001],[-175.06390358599995,67.40582358700004],[-175.16879270999996,67.34386221100004],[-175.44799759299994,67.35047771200004],[-175.24339265499998,67.48945419300003],[-175.47599767599996,67.62638649600018],[-175.44412263999996,67.67965717800013],[-175.778594607,67.75851965600015],[-176.04620362999995,67.73238689300018],[-175.972396614,67.63934206800008],[-175.8058926219999,67.61890128900018],[-175.8110966099999,67.5088111930001],[-176.27569561299993,67.63441250300014],[-176.12602264999998,67.84694806400012],[-176.38999962699998,67.91564698000013],[-176.638793624,67.8909497030001],[-177.0057986079999,67.97191000300012],[-176.94749459199994,68.06307778400003],[-177.15840171600001,68.16843026100008],[-177.3804926459999,68.196271926],[-177.42089861599993,68.25951539700009],[-177.6786956159999,68.19810303600019],[-177.87409973999996,68.32439903900013],[-178.057998695,68.36431802000016],[-178.11090074199993,68.42951464200007],[-178.37280269499993,68.45116057200016],[-178.78269972099994,68.56668331500009],[-178.84699964699996,68.68039053700011],[-179.00509659099995,68.7391788590001],[-179.32870460599995,68.79703561600019],[-179.55233763799998,68.90762175300017],[-179.75192265599992,68.91462650900013],[-179.99998860099998,68.97818178699998],[-179.99998860099998,68.21632361700006],[-179.99998860099998,67.45446611800014],[-179.99998860099998,66.69260845100018],[-179.99998860099998,65.9307504480002],[-179.81515472699994,65.93202399500012]]],[[[168.32089264200033,70.00016628800006],[168.16473359500014,70.00633168000002],[167.91886873700003,69.9341686910002],[167.85794068300004,69.818958258],[168.08287073100018,69.77012730200005],[168.25784262500008,69.68823644300005],[168.71650673700003,69.5612993920002],[169.15309157600007,69.56004730400014],[169.28784173300028,69.59777726700008],[169.25370760600015,69.71533815300012],[169.45347568400007,69.827572675],[169.41394059400022,69.89084699199998],[168.89309667400005,69.94355307000012],[168.66827357800003,69.94828465400013],[168.32089264200033,70.00016628800006]]],[[[179.99998860100004,65.93052128700015],[179.99998860100004,66.69255313000014],[179.99998860100004,67.45458581100019],[179.99998860100004,68.21661815700014],[179.99998860100004,68.97865016800012],[179.2983706660002,69.26707799400009],[178.66598473700014,69.29726189800016],[178.75204458700023,69.41023620700003],[178.18823268400024,69.44830111200014],[177.93147269300005,69.50888249000019],[177.5701135920001,69.53070393700011],[177.52542061400004,69.58293744300005],[177.07130469000003,69.62321483500017],[176.2959286890001,69.78409809000016],[176.0328525990002,69.86717046200016],[175.38418566200005,69.80585013500018],[174.16870174100006,69.89012899800008],[173.95675660200004,69.84703679500007],[173.6820067000001,69.86162432500015],[173.5015106300001,69.91927606000013],[173.42378272700012,69.79303940200009],[172.93125874300006,69.87900570900018],[172.7035215950001,69.9815194030001],[172.43290665400002,69.97585776300008],[171.86419670300018,70.01956938800004],[171.41418472600014,70.09687501000019],[170.9484097420002,70.09009254200015],[170.61137358300005,70.12858475600018],[170.5089566170002,69.85623811400012],[170.53904764900017,69.74892427200007],[170.16506959200024,69.70090233700012],[170.16345171700004,69.54281947500016],[170.57943769300005,69.53679992800011],[170.8427426090002,69.33511272900012],[170.9115146160001,69.1641822540002],[171.03350869100007,69.07669144599998],[170.98448159800012,69.01051732600018],[170.5863187330002,68.82440320100017],[170.09342963400002,68.838648245],[169.87225367200006,68.78423997000016],[169.6134486650002,68.80017061600006],[169.42349261100003,68.91926455200013],[169.37872268600006,69.08057461400011],[169.242950607,69.15239478300003],[169.02326964200017,69.14616820300017],[168.77796972500016,69.2024912390001],[168.379745672,69.2123716590001],[168.25567657300007,69.34744234100015],[168.23715172900017,69.56777675900008],[168.00524860800022,69.67661610800019],[168.01394667700004,69.73319144000004],[167.80799862200013,69.79900614300004],[167.64691168600007,69.76540527300006],[167.22734060200014,69.59574767300018],[166.87712071500005,69.51867104400003],[166.15638768200017,69.53515908600002],[165.6757966790001,69.57629914300003],[165.2415006030002,69.57165271900016],[164.6688996040001,69.54107218400009],[164.3554995740002,69.58611083200014],[164.0231936570001,69.76293998700004],[163.84010271700004,69.68607760000003],[163.63029462800012,69.65948685000006],[163.24800071800007,69.70380968400008],[162.8726956380002,69.64685230500015],[162.43189973200003,69.67460998300004],[162.19090258100005,69.6507436870001],[162.04539458600004,69.51149160900013],[162.20410173100004,69.44718682100006],[162.17669659600017,69.14854849599999],[162.40280161900023,69.11787626200004],[162.71029659900023,69.25235216400006],[163.0032955800002,69.25126117500014],[163.11090060900005,69.18472914800009],[163.36039768100034,69.15420929800013],[163.70410164400005,69.19619693300012],[164.08790563800005,69.02509831700019],[164.23510761600016,68.99464753300009],[164.54409759200007,69.00046122100008],[164.77360566800007,69.10580581900012],[165.01229863400022,69.08928810500015],[165.3011936680001,69.0269294270002],[165.36250259500002,68.85676120200009],[165.1119996960001,68.76429590200007],[165.08670059700023,68.66091149700014],[165.25210572200024,68.60954048800005],[166.04640169000015,68.6744782780001],[166.33540367700016,68.5861928650001],[166.63169859000004,68.42547842099998],[167.30795271800014,68.45432692000014],[167.55026264200012,68.44903173600005],[167.82260157300016,68.3225754720001],[167.79499862500018,68.15563494999998],[168.09942666600034,68.12867120600009],[168.47352559000024,68.15865696200012],[168.7252197260002,68.10185297100008],[168.6210326690001,68.03387925700002],[168.1708527190001,67.87299650400013],[168.1890867110002,67.78252257700012],[168.46928367600026,67.58185076200016],[168.6393736140002,67.50269978000006],[168.92140169000004,67.45438028700005],[169.61413564600014,67.37619707900012],[169.75985771500007,67.33393569100014],[169.88484161400015,67.24346193100007],[169.9124147230001,67.02246483900012],[170.18267863000005,66.77959433300015],[169.89050258400027,66.72279721600017],[169.3982086000001,66.50283109800012],[169.2976535890001,66.38042564000011],[169.29780563700012,66.20559791500017],[169.0400386450002,66.1605124960002],[168.8849796390001,66.23401022000007],[168.60769672600009,66.25942582700003],[168.2590026800001,66.24207562200019],[167.9265596360001,66.19358832400007],[167.92269859600003,66.11825965700012],[167.76710465700023,65.97175220399998],[167.73229964200004,65.86901706100014],[167.61619569900017,65.8139303550002],[167.73229964200004,65.48251577000019],[168.09599260100015,65.39900083400016],[168.60479759300006,65.41920373500011],[168.78330966800013,65.43983478400014],[168.91725164200022,65.54046389000013],[169.33798261400023,65.61070423900003],[170.28961159800008,65.79180447700003],[170.61592059800012,65.864973798],[171.19499158700035,66.06665211200004],[171.40202359000023,66.2076350530001],[171.8690186440001,66.0881220220001],[172.07528672000024,66.20196570100018],[172.31629962900013,66.22152839300003],[172.51820358300017,66.17754234400007],[172.58090172800007,65.98860703800017],[172.6428986420001,65.92375357100008],[172.83760069800007,65.89076223200016],[173.03140270500023,65.92280758900012],[173.29310567100003,66.01855339900015],[173.6994936970002,66.19576259000019],[173.82069367100007,66.34281201700009],[173.7474976950001,66.49957288500008],[173.51080364600023,66.51398556800007],[172.9562986730001,66.4171782740001],[172.76460270300004,66.48468712800008],[173.0222017220002,66.63642053000012],[173.28669770600015,66.73550099600004],[173.48829672700003,66.83737414400008],[173.68850669900007,66.98311850900012],[173.84689365600013,67.1368357410002],[173.96479769700022,67.33949809],[174.1291966580003,67.4407073910001],[174.33079567900006,67.51554839900012],[174.55349765000005,67.52469590500004],[174.868896596,67.47751366900007],[175.01130664000016,67.2968399020001],[175.21600361200024,67.27745306300017],[175.3986965800002,67.3152360000002],[175.49830661500016,67.3896486930002],[175.7419886570001,67.49095706800011],[175.98176573800004,67.54347287700006],[176.2039186940002,67.52253018900012],[176.35989367500008,67.37675414100016],[176.38157665200015,67.14896703700015],[176.22268661300006,66.77053651300014],[176.08273263500007,66.4803987790001],[176.0741426930001,66.27447134300019],[176.11059559000023,66.20701697100014],[176.28425571500009,66.17075233200012],[176.56924461500012,66.15730809400009],[176.76042174500003,66.19406139900002],[176.8549496640003,66.41000705300019],[176.7800597060002,66.63819062100015],[177.02001968000002,66.72117230000003],[177.27337661700017,66.62267890300012],[177.25677458200005,66.46276677500015],[177.14298974300004,66.34549690800009],[177.20002758900034,66.20051563200019],[177.44578566000007,66.13340408000005],[177.75694269400003,66.17106497700013],[177.79399070600016,66.25611447200004],[177.73760966600003,66.45345045700003],[177.79592860200023,66.59418948500013],[177.99844359700012,66.63355945100011],[178.21038873600003,66.53974365900007],[178.26963772800013,66.41363859600017],[178.44140672800006,66.41640864700014],[178.9228816870003,66.52090600200012],[179.12014760000022,66.46915294700005],[179.30483965100018,66.35217342900012],[179.3560487210001,66.23186713500013],[179.59948768800007,65.97758131500012],[179.71339372900002,65.93919638900007],[179.99998860100004,65.93052128700015]]]]},"properties":{"objectid":171,"eco_name":"Chukchi Peninsula tundra","biome_num":11,"biome_name":"Tundra","realm":"Palearctic","eco_biome_":"PA11","nnh":2,"eco_id":772,"shape_leng":115.582405191,"shape_area":63.2552294445,"nnh_name":"Nature Could Reach Half Protected","color":"#5EC0AB","color_bio":"#9ED7C2","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":298808.0377534326,"percentage":3.4968121735984883}}, + {"type":"Feature","geometry":null,"properties":{"objectid":172,"eco_name":"Clipperton Island shrub and grasslands","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Neotropic","eco_biome_":"NO07","nnh":4,"eco_id":568,"shape_leng":0.365059287969,"shape_area":0.0023745574521,"nnh_name":"Nature Imperiled","color":"#FBE97B","color_bio":"#FEAA01","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":28.951641566333038,"percentage":0.0001350418409580661}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-107.68956984499994,40.203195789000176],[-107.78052860399998,40.287733446000175],[-107.8400720489999,40.259181438000155],[-107.96330322799997,40.28904719700006],[-108.00264196199998,40.479107305000184],[-108.22194042799987,40.40232508700012],[-108.31102993299999,40.44266102200004],[-108.3766255029999,40.55529325900005],[-108.45958585699998,40.57318146799997],[-108.64635622299994,40.56449763400019],[-108.80600049799995,40.614199311],[-108.94720232099996,40.78413840600018],[-109.2473347369999,40.89676178900015],[-109.30525516199992,40.78918009400007],[-109.36868123899984,40.73879700300017],[-109.53613986999994,40.67597973599999],[-109.6134669029999,40.58892490900013],[-109.93002164299992,40.59775134400007],[-110.0171794929999,40.56495425300005],[-110.09220164899989,40.61431096100017],[-110.15433601999996,40.55318458300002],[-110.57712283299998,40.52053211000009],[-110.57322550499998,40.39899245700008],[-110.6965586039999,40.477492786000084],[-110.81886896299989,40.48739760000018],[-110.96300383799985,40.45523165600008],[-110.86533407999997,40.36988142299998],[-110.892480106,40.29698742300019],[-110.98410585999994,40.23866343100008],[-110.92693083199998,40.14050335600001],[-110.9727653569999,40.09135215500015],[-110.81326830899997,40.026685746000055],[-110.81630184199997,39.965026113000135],[-110.75032196499996,39.91248693500012],[-110.45553628199997,39.81957891000013],[-110.47510723899995,39.752970697000194],[-110.57034340299992,39.72183060900005],[-110.73489656899994,39.72345886300013],[-110.94060736899985,39.803798093000125],[-111.189428008,39.60223573000002],[-111.22748429499995,39.53802059900005],[-111.14131759199995,39.211014723000176],[-111.21417387399998,39.19016010000013],[-111.24873189899989,39.11195877400013],[-111.23702671799998,39.01687702200013],[-111.37826526299989,38.917900346000124],[-111.4239384469999,38.84660934700014],[-111.407013195,38.631492569000045],[-111.46521485499989,38.580083058000184],[-111.42163158299996,38.45661327100015],[-111.41285048599997,38.347545127000046],[-111.47427648799993,38.307847189000086],[-111.34470976099993,38.18691181500009],[-111.27258853699993,38.057203704000074],[-111.39073277499995,37.975748371000066],[-111.66474420799995,37.93610952299997],[-111.93538869299994,37.76014951100018],[-112.04465678499997,37.73704515200018],[-112.14151628999997,37.67267406600013],[-112.17673225399989,37.58292869899998],[-112.26457957999992,37.51032258499998],[-112.25186080299994,37.460803247000115],[-112.39108640399996,37.40516413400019],[-112.5074395179999,37.431120314],[-112.7000812089999,37.41866329200013],[-112.77776267199982,37.50174036400017],[-112.83227198999992,37.414195262000135],[-112.89486038799993,37.473464673000194],[-113.07167776799997,37.4399436330001],[-113.17652981099991,37.533774566000034],[-113.2377123469999,37.40277511700015],[-113.28305529699992,37.313329433000035],[-113.26886087499992,37.213912515000175],[-113.30448456199991,37.12205804399997],[-113.30107858199995,37.00016822400005],[-113.35921721899996,36.912929597000016],[-113.43761438699994,36.93963968300005],[-113.57186748099991,36.886352971],[-113.69506990999992,36.95531532200005],[-113.8607535829999,36.87306311200007],[-113.917597393,36.74392929900017],[-114.0168413529999,36.66808302600009],[-114.13904030299994,36.63810059700006],[-114.1714515939999,36.58512675800006],[-114.08760667899992,36.53667634700008],[-114.01331111499996,36.63768606400015],[-113.74794112799998,36.550951521000115],[-113.81467099099996,36.307053511],[-113.784477531,36.237359174000176],[-113.83148833299992,36.189327972000115],[-113.81623788299993,36.07447146200013],[-113.70608863899992,36.01294179800004],[-113.5555936319999,36.073771678000185],[-113.44745798699995,35.975002642000106],[-113.39436041699992,36.11126751400019],[-113.44939840599994,36.188718285],[-113.25774423099995,36.22763033300015],[-113.13405933599995,36.13728891000005],[-113.20967564699998,36.072537432],[-113.26773892499989,35.8946033360001],[-113.28455153999994,35.77575312000016],[-113.23027521799997,35.718578535],[-113.41080417399996,35.616150491999974],[-113.4048617009999,35.70424171000013],[-113.56632779199998,35.76100264500013],[-113.60517969799997,35.69625448600004],[-113.74251350199995,35.86670939800018],[-113.81110972399989,36.015381159000185],[-113.94516250299989,36.054233500000066],[-114.041197464,35.780368913000075],[-113.86176631299992,35.73379288000007],[-113.88200469399999,35.67290334300003],[-113.81874380099998,35.58556220000008],[-113.74527701699998,35.557404345000066],[-113.737380638,35.47600904200016],[-113.650399054,35.37000846800004],[-113.51029344799997,35.311999974000116],[-113.41292503199998,35.209123177000095],[-113.27805956999993,35.17575154400015],[-113.1284808559999,35.255302621000055],[-112.98964785399988,35.22738821500019],[-112.921869303,35.1257804010001],[-112.8213406019999,35.18365177900006],[-112.76463768299999,35.013253015000146],[-112.66239633299989,34.98422562500019],[-112.68929581799995,34.77209878900004],[-112.60955341599998,34.74306005400018],[-112.6098305999999,34.85843595900019],[-112.51337232499998,34.870020064000016],[-112.52217038799989,34.688079862000166],[-112.41490843699995,34.61555338700009],[-112.22254396499989,34.53567812900013],[-112.20623592899994,34.61230165700016],[-112.26783588999996,34.66091782900014],[-112.28695057999994,34.75973597600006],[-112.41943358299989,34.80454242500019],[-112.49462329099998,34.97787835400004],[-112.68021881799996,35.10104320700003],[-112.59749842799994,35.17563504600014],[-112.45773266499992,35.22141113200013],[-112.60571617999989,35.28126204100016],[-112.73414624599991,35.18198505700019],[-112.81988812299988,35.21591113600016],[-112.76709757999998,35.314896757999975],[-112.79014249,35.504302604000145],[-112.66533474699992,35.45577416400016],[-112.59906033599998,35.4015033930001],[-112.43437416599994,35.48844603100008],[-112.31571237999998,35.46191081900014],[-112.11752329299992,35.51285420500005],[-112.07108700399993,35.553364944000066],[-112.08181865199998,35.78432540700004],[-112.19482142799984,35.84172322100005],[-112.24117993299996,35.89810188500013],[-112.26308894099986,36.02016805599999],[-112.37298111099983,36.0661814880001],[-112.43957049699998,36.15044166700005],[-112.17223795899992,36.05735613300004],[-112.05937138899998,36.04267483300015],[-111.94303180399999,35.98364894700006],[-111.75428168999997,36.077333243000055],[-111.72551409299996,35.834825338000144],[-111.76014070499991,35.720965789],[-111.75939509599993,35.60098198000014],[-111.6401181089999,35.58827137500015],[-111.58722911099994,35.52012393900009],[-111.44423292999988,35.46898529300017],[-111.41331510399993,35.418413209],[-111.27518074299991,35.31881163800006],[-111.26170512799996,35.176772159000166],[-111.2905364529999,35.13981665799997],[-111.16830282599994,35.00315570800018],[-111.19574034999994,34.957484751000095],[-111.12315248499993,34.86512630100003],[-110.98060176899992,34.79718792600016],[-110.81960633499989,34.68014332700011],[-110.52472126799995,34.602700563000155],[-110.44868406699993,34.48278195100005],[-110.07345002899996,34.37881066400007],[-109.943700316,34.41074640400012],[-109.80453335799996,34.38617113500004],[-109.66621930899998,34.27023573000008],[-109.58251855799995,34.282206009000106],[-109.38368115399999,34.164569947000075],[-109.32445449199997,34.109490129000164],[-109.23855088999994,34.17642632700017],[-109.1220702949999,34.15954269800005],[-109.050227598,34.1970581920001],[-108.96750853699984,34.11646947200006],[-108.88185513899998,34.155394661000116],[-108.79683326699995,34.127857215000176],[-108.66828868799996,34.16431722200019],[-108.60728168399993,34.26617665900005],[-108.52898332299998,34.24069959800016],[-108.42962916699997,34.27542744300007],[-108.34040584899998,34.199358007],[-108.24445680099984,34.280435090000026],[-108.16773318499997,34.26843322999997],[-108.03808472799994,34.36150360000016],[-107.93101445599996,34.372948235000024],[-107.81343165899995,34.34731891700005],[-107.71828659799996,34.43731094400016],[-107.6358918819999,34.44770099100003],[-107.58738546499995,34.38817084400006],[-107.41748159799988,34.34288181000005],[-107.31855508299986,34.3667274070001],[-107.2719969069999,34.32793690400018],[-107.19913572099995,34.16728227400006],[-107.46273775599991,34.078926373000115],[-107.56920627299996,34.183446128000185],[-107.57644493399988,34.2681285650001],[-107.68051149799987,34.28160340300019],[-107.80530999799987,34.19191576600019],[-107.7759761019999,34.087306815000034],[-107.83660138299996,34.04736647400017],[-107.97326330799996,34.07103098700003],[-108.03328925999989,33.99870229700008],[-108.19773532899995,33.9027684830001],[-108.35415647799994,33.87184275800007],[-108.37790203899993,33.785584688000085],[-108.26872334199993,33.68478611400013],[-108.2035957949999,33.78065621500008],[-108.04349524099996,33.80231016700009],[-107.81929600199987,33.88868597200013],[-107.76838730699995,33.77442922400007],[-107.64302319799992,33.807220016000144],[-107.69282687899994,33.88325244600014],[-107.67021558399983,33.92907503500015],[-107.55698476199996,33.976507408000145],[-107.41281286299994,33.939869566000084],[-107.32367381499989,33.84219848000009],[-107.21475178999998,33.87159702400015],[-107.29010974899995,34.03065634000012],[-107.17581749199996,34.129564752000135],[-107.0284617829999,34.00248160000001],[-106.95271134099983,34.054384366000136],[-106.98597196199995,34.12618560700008],[-106.96165925699995,34.249213648000136],[-106.7208477829999,34.32749918800005],[-106.6694614889999,34.27010943200014],[-106.66218747499994,34.2738941500001],[-106.4976801819999,34.47076713500019],[-106.52409443,34.62814485700005],[-106.43809675699998,34.86302408600011],[-106.49628486899991,35.01600696000003],[-106.4716727149999,35.15138082200008],[-106.5047145989999,35.26319173900015],[-106.37776254299996,35.317229919000056],[-106.27960473399997,35.26739448600017],[-106.21679309399997,35.36417509400019],[-106.14040993499992,35.40102811000014],[-106.08556070399993,35.35268027300009],[-106.08698363499997,35.278164760000095],[-106.01861049899992,35.29095754500014],[-105.89590368799998,35.25576638300004],[-105.85840254299995,35.38976944700005],[-105.85287161999992,35.50354233400009],[-105.93027035599988,35.59959825900012],[-105.90166722599997,35.66769499000014],[-105.92267207699996,35.77131021800005],[-105.91103265199996,35.92055572700008],[-105.85292918799996,36.01754134500004],[-105.90439529599985,36.05473544400019],[-105.87111315599998,36.17277564500006],[-105.71804114599996,36.304643794000185],[-105.6004652979999,36.32969737500002],[-105.51651066499994,36.44772168800017],[-105.56203132999991,36.54177928000013],[-105.66504393999998,36.5708165850001],[-105.62263376599998,36.6781858650001],[-105.57402681599996,36.70141540300011],[-105.53252302199996,36.943434984000135],[-105.45412004299999,36.9280040430001],[-105.38578897199994,36.99021456500009],[-105.34442188399998,37.12876170099997],[-105.40049972199995,37.27676592000017],[-105.39622689899988,37.3678585240001],[-105.48662645099989,37.495714909000185],[-105.58953926099997,37.54970960600008],[-105.59228853399998,37.623695241000064],[-105.50423957799995,37.751597272000026],[-105.5070514539999,37.808405601],[-105.63862684899993,37.89201878900019],[-105.74757766999994,38.04663412600007],[-105.85467083499992,38.26942651100012],[-106.05088439999997,38.42905613900018],[-106.02140404899995,38.234508586000175],[-105.95568511699997,38.188368396000044],[-106.09165735899995,38.12035979600017],[-106.17771877999985,38.146417412],[-106.22338051299994,38.071147131000146],[-106.14374650099995,38.05159465600019],[-106.31135763699996,37.811335983],[-106.33013441199995,37.73376167700019],[-106.45000583099988,37.74047915900019],[-106.55163610599999,37.70048015200007],[-106.41813009599991,37.61669455600003],[-106.29992914299993,37.6340068290001],[-106.21214458999987,37.46830478000004],[-106.24808583899994,37.380076781000014],[-106.20314361899995,37.172493248000194],[-106.21796791899993,37.1268982360001],[-106.10600896399995,37.05010993200011],[-106.16006813499996,36.996446663000086],[-106.0743246159999,36.87817092800009],[-106.10801145199997,36.82719127600018],[-106.03769868499995,36.69629600900004],[-105.98571302499988,36.69619079700004],[-105.91226411199995,36.44902865400013],[-106.06232843999999,36.31964454400003],[-106.20348668299982,36.364299004000145],[-106.26306120999999,36.300219926000125],[-106.55513388999992,36.320677874000125],[-106.59859656899982,36.1759851060001],[-106.43120236899989,36.23119998200019],[-106.24522462399989,36.1590512730001],[-106.14043511999989,35.9900319410001],[-106.17164241699999,35.84872942300012],[-106.27550829299986,35.73268032900012],[-106.500099477,35.56610512300017],[-106.56800811399995,35.543857957000114],[-106.73943143899999,35.628000579],[-106.85404425299993,35.566631621000056],[-106.92070528999989,35.696956231000115],[-106.89901065099997,35.760137018000194],[-106.91528568399991,35.97462942400011],[-106.944755623,36.0448510010001],[-107.02832434499999,36.06556719000008],[-107.22485821099997,36.240458028000035],[-107.16353197799998,36.31110672000011],[-107.32062479499996,36.41036048400008],[-107.25671984499996,36.47090548900019],[-107.32856951699995,36.51865570800004],[-107.2419800099999,36.59084434700003],[-107.3270220679999,36.61700051800017],[-107.3297454829999,36.81840911500012],[-107.26841610599985,36.855378773000155],[-107.28461590999996,36.92916952400003],[-107.40834972699997,36.97122071000018],[-107.44195492199987,37.04045363200015],[-107.5234650129999,37.06045491200018],[-107.54973812299994,37.1461336270001],[-107.50287935699998,37.21890952000018],[-107.6544783899999,37.27856683800013],[-107.73177539499994,37.250425113],[-107.84846572499993,37.322045635],[-107.90614390999997,37.20653807100001],[-107.99752421799991,37.184907863000035],[-108.02413390999999,37.27853322400017],[-108.15875032799994,37.31988408500007],[-108.2262422309999,37.39377610200012],[-108.40332093299997,37.40379988500018],[-108.48477780699989,37.54810346500017],[-108.69779762099995,37.646570792000034],[-108.6927110179999,37.712455126],[-108.77545023599998,37.88962882600009],[-108.68678895899984,37.86171531900004],[-108.5281547759999,37.77080387100011],[-108.47285539799992,37.834821187000045],[-108.51043371899993,37.932830391000095],[-108.41661996599998,37.980354900000066],[-108.34619748499983,37.923790976000134],[-108.28077183299996,37.96250588900017],[-108.17425261999989,37.947027956],[-108.23763621999996,38.157951874000105],[-108.16703510399992,38.20125609900015],[-108.51063171399989,38.372319306000065],[-108.50439147499998,38.409796101000154],[-108.63385051199992,38.461308006000024],[-108.832832812,38.62276264600007],[-108.77100006099994,38.75024602700017],[-108.6391350479999,38.77595033100016],[-108.58591244799993,38.755233179000186],[-108.61612682699985,38.64818163900014],[-108.49061847099989,38.60224282300004],[-108.47413312299994,38.55431402200003],[-108.3308501699999,38.554011373000094],[-108.18008452999999,38.43324251299998],[-108.06418454199985,38.38997064000017],[-108.02638447199996,38.33301348400005],[-107.87371781399997,38.25898394900014],[-107.72403557099994,38.135601534000045],[-107.6844590039999,38.20652933000008],[-107.72202716499993,38.28281454200004],[-107.69987323899994,38.402793712000175],[-107.58075267199996,38.416781558000025],[-107.54993974399991,38.34893246399997],[-107.43394680599994,38.39676351500009],[-107.57074869199994,38.51167321000008],[-107.53846836799988,38.7290271],[-107.57099994099997,38.80374221800008],[-107.50372573399994,38.86411153600011],[-107.54259264199999,38.92668224100015],[-107.75416787899997,38.88660173700015],[-107.93603791999993,38.97341579900012],[-108.04379730799991,38.947919175000095],[-108.12345096999985,38.8747473140001],[-108.20009460999995,38.874837273000026],[-108.2313262049999,38.98813621700003],[-108.2862398119999,39.057124582000085],[-108.24094926399988,39.11636847300019],[-108.13483626099998,39.10477100000014],[-107.78370757799985,39.27622967600013],[-108.07022284299995,39.334239860000025],[-107.97373508399988,39.453654332000156],[-107.81419277999987,39.490247871000065],[-107.71960906699996,39.42304653200006],[-107.71925151999989,39.36265462800009],[-107.61158616999995,39.35817208100019],[-107.49520134999995,39.49209046400017],[-107.41269020699991,39.54392425800006],[-107.436428262,39.593150036000054],[-107.56444536399994,39.66945508700013],[-107.81032703099993,39.685353518000056],[-107.89074095399997,39.72512727700018],[-107.92384084199989,39.863639929000044],[-107.84638721699991,39.944394234000185],[-107.68060615599995,39.98561789000013],[-107.67129252399997,40.037412956000026],[-107.74170020499992,40.11610107600018],[-107.68956984499994,40.203195789000176]],[[-108.68792380699995,38.929509652000036],[-108.63466561899997,38.838407781000114],[-108.76071437599984,38.785985443000186],[-108.84816813599997,38.806299134000085],[-108.92618986699989,38.75936359900015],[-109.00069793599994,38.79997654400006],[-108.94985761599992,38.857857126000056],[-108.84538028799989,38.81680761700011],[-108.7961595239999,38.88179017100009],[-108.68792380699995,38.929509652000036]],[[-109.19388089199998,38.61251343700019],[-109.06482243899995,38.46468124800003],[-109.08253960399992,38.41346926600005],[-109.21422030399992,38.33056717100004],[-109.32792389199989,38.388913623],[-109.33631226199992,38.53056780600008],[-109.29357129299996,38.59103140200011],[-109.19388089199998,38.61251343700019]],[[-110.77185798,38.153001491000055],[-110.7158413329999,38.02262431800017],[-110.74034044799998,37.945974958000136],[-110.80681070499998,37.92263266400005],[-110.88051158999997,38.079720858000144],[-110.77185798,38.153001491000055]],[[-109.4962414869999,37.91796430400012],[-109.35838887699998,37.871913137000035],[-109.34988252199997,37.785158115000115],[-109.45477304699989,37.7213944450001],[-109.54067964099994,37.753567516000146],[-109.6084665489999,37.86493091900019],[-109.4962414869999,37.91796430400012]],[[-112.15144444799995,36.88991031800009],[-112.07649508999987,36.88220179800004],[-112.0897311249999,36.79499968699997],[-112.00695046699997,36.60399594900019],[-112.00082318499994,36.460724605000166],[-111.88162628299989,36.32343020300004],[-111.97993173199995,36.29416605900002],[-112.00211373999997,36.18477387900015],[-112.13121569099997,36.241346422],[-112.20369735199989,36.244455391000145],[-112.27108868999989,36.307445029000064],[-112.39816475699996,36.34203715600006],[-112.53869396999988,36.48881322100004],[-112.48029325399995,36.57907431300015],[-112.37204708399997,36.681230484000025],[-112.333545303,36.77996084400013],[-112.21192929099993,36.89747246800016],[-112.15144444799995,36.88991031800009]],[[-109.13480526199993,36.88355085800009],[-109.04826670899996,36.81555929500007],[-109.06847581999995,36.75080666100007],[-109.21038344199991,36.64710438600014],[-109.21118374899999,36.58920338900015],[-109.08096928899994,36.50919240600001],[-108.92285789699997,36.531745742000055],[-108.86204857499996,36.34242537800003],[-108.86399666899985,36.26418635900018],[-108.71277363399997,36.121099711000056],[-108.66272252999994,35.97381802700005],[-108.670928313,35.89459625700016],[-108.87761058499996,35.765571178000016],[-109.01194050899988,35.728995804000135],[-109.06929718499998,35.772021820000134],[-109.11240051199997,35.64462247200015],[-109.10198974699995,35.556795021000084],[-109.17047589599991,35.48637321899997],[-109.1748765619999,35.413600357000064],[-109.33564705099997,35.423004799000125],[-109.42275442399995,35.56579974300013],[-109.37058086499997,35.74151615000011],[-109.43622160399991,35.86060867700019],[-109.33303079399991,36.09004969500012],[-109.34522836399992,36.23379949000014],[-109.2067280689999,36.364728735000085],[-109.21735429599988,36.430175022000185],[-109.33494745599995,36.55852708800012],[-109.28243198299998,36.606259399000066],[-109.29989980599993,36.828585723000174],[-109.24793451099998,36.88552645500005],[-109.13480526199993,36.88355085800009]],[[-107.31889814699991,35.61305447800015],[-107.21793746699996,35.586058448000074],[-107.14980504499994,35.377643692000106],[-107.21125809699993,35.31828623600012],[-107.25720058599984,35.21034603100003],[-107.37750940899997,35.14504910700009],[-107.36071130099998,35.078438014000085],[-107.43026233899991,35.05027758000017],[-107.66492747799998,35.119684783000025],[-107.7205842159999,35.083988569999974],[-107.86147807699984,35.16351096500017],[-107.76670633099997,35.22732238500009],[-107.78627545299997,35.33078481300015],[-107.68258647099998,35.310267997000096],[-107.63600197699998,35.40424369100003],[-107.51045840999996,35.46409175200017],[-107.40578384399993,35.58798808800003],[-107.31889814699991,35.61305447800015]],[[-108.49664477699997,35.46879298500005],[-108.05638723299995,35.32021384300003],[-108.01631823599985,35.15320794700017],[-107.93353514399996,35.067588857000146],[-107.94133901199996,34.95256853200004],[-108.01947435699986,34.913883435000116],[-108.04956729799994,35.00149381199998],[-108.12363479199996,34.97782781300003],[-108.0940046149999,34.90164267900019],[-108.20955584899986,34.79221449500017],[-108.33571870599997,34.777075291000074],[-108.26269988999991,34.916279880000104],[-108.15231853699999,35.00535651400003],[-108.29025019799991,35.10876291699998],[-108.50559351899994,35.15457391100006],[-108.65066919799989,35.407498356000076],[-108.63992467299988,35.44389533300006],[-108.49664477699997,35.46879298500005]],[[-107.75529446899992,34.98355032300009],[-107.71910198599994,34.88503056400015],[-107.65186607299995,34.83671873200018],[-107.76541479799994,34.70509934700016],[-107.86162903499996,34.688405566000085],[-107.91824730299999,34.76827793800004],[-107.8679035529999,34.86077763600002],[-107.75529446899992,34.98355032300009]]]},"properties":{"objectid":174,"eco_name":"Colorado Plateau shrublands","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Nearctic","eco_biome_":"NE13","nnh":2,"eco_id":429,"shape_leng":95.1227504038,"shape_area":28.7327900993,"nnh_name":"Nature Could Reach Half Protected","color":"#FF7F7E","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":283959.84452132933,"percentage":1.0763320490787198}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[119.11207580600012,-29.69329640399991],[119.02079771900003,-29.669557512999972],[118.88595603100009,-29.69451513299998],[118.7579345290003,-29.7454702309999],[118.65184025500002,-29.732875750999938],[118.587081839,-29.758810029999893],[118.53728478400012,-29.837802929999953],[118.36967471700007,-29.868492094999965],[118.14265438900009,-29.881694764999907],[117.76216895800007,-29.837011342999915],[117.67452995800011,-29.862417225999877],[117.68519593000008,-30.000022930999876],[117.74617008400014,-30.008443892999935],[117.8321151020001,-30.081182552999962],[117.88108067200005,-30.16361421099998],[117.95123284300007,-30.17032057299997],[117.98262793200013,-30.249385891999964],[118.16527546900033,-30.296249446999923],[118.2169113460003,-30.290462413999933],[118.33728788100018,-30.34699047199996],[118.42758176500013,-30.416740478999884],[118.41850282300015,-30.536062235999964],[118.60629265800003,-30.750501660999873],[118.79491431300005,-30.86025228999995],[118.85911566900006,-30.922031441999934],[118.94836433000012,-30.938796924999963],[119.03490446300009,-30.99874882299997],[119.25889590600025,-31.226266867999925],[119.18314361700027,-31.27423281199998],[119.30303953400016,-31.423667895999984],[119.322929455,-31.477186179999933],[119.41914364500008,-31.45377921299996],[119.48178864900012,-31.568731315999912],[119.57691956200017,-31.61826132199991],[119.59372712100003,-31.723148267999818],[119.69258110900012,-31.84426877999988],[119.60707094400016,-31.93375012299998],[119.4703445020001,-31.95891376999998],[119.38887022300003,-32.02354042299993],[119.48085792200004,-32.02032847799995],[119.48455819700007,-32.14489747299996],[119.62400825600002,-32.25893779199993],[119.59098825100023,-32.38780586499996],[119.69339013000001,-32.54849616899992],[119.8520431280001,-32.53909687099991],[119.90863807400001,-32.43978120899993],[119.97956087700004,-32.518981978999875],[120.1893463350001,-32.45508572599988],[120.33763125500013,-32.477367338999954],[120.26627343200016,-32.59232329699995],[120.30088801000011,-32.68014904599988],[120.41039271300019,-32.67545702399997],[120.58192450500007,-32.630664803999935],[120.60826882800029,-32.66032785699997],[120.74253082300015,-32.58938594299991],[120.93148037800006,-32.605636608999816],[121.23601537300021,-32.59268958599989],[121.32759856100006,-32.63204949499993],[121.37789920100033,-32.600318962999836],[121.4915847970002,-32.63388446199997],[121.50148768100019,-32.700527129999955],[121.63593290500012,-32.67288210399994],[121.71621712100034,-32.705577896999955],[121.9007262790002,-32.71064760699994],[121.93009194100023,-32.58113462999995],[121.90882118600018,-32.5426712499999],[122.27673342700018,-32.33947748799983],[122.38498688000016,-32.31270988099993],[122.43423458400014,-32.262107828999945],[122.59037787300008,-32.27568818799995],[122.6582260260002,-32.23276513199994],[122.72357184600003,-32.3035544949999],[122.85824572900015,-32.351718922999964],[122.84218600200018,-32.42920676799997],[122.93160247000003,-32.48860160499993],[122.94247430100006,-32.63343804199991],[122.99721533700006,-32.70327371199994],[123.14586637800005,-32.769828704999895],[123.29036720400018,-32.68477636099993],[123.35916133900014,-32.75099942999992],[123.32741555100017,-32.8123740719999],[123.38144680800008,-32.8934592629999],[123.31552129500017,-32.93958286399993],[123.292419429,-33.01943591399993],[123.19689171700009,-33.10779575899994],[123.20711512400021,-33.278327925999974],[123.35112007700002,-33.31563560999996],[123.45114132700019,-33.31008142499991],[123.70085146600002,-33.23434070399992],[123.7833862230002,-33.23800275699995],[123.83821862100024,-33.144618967999975],[123.9526748510001,-33.08774188799998],[123.88246920400002,-32.99306108299993],[123.9174881240001,-32.90676503099991],[124.06864166700007,-32.864738503999945],[124.15605904900008,-32.78911965599997],[124.28427132200011,-32.83494955599997],[124.52623742100013,-32.762401500999886],[124.56065385100021,-32.72285467599994],[124.69551079400003,-32.71502681699991],[124.76202387800004,-32.64366915999989],[125.01126094200015,-32.66308215099997],[125.08186339000008,-32.63418201999991],[125.09697730100015,-32.559303292999914],[125.24744419800015,-32.49975205099997],[125.34333032100017,-32.49283597499988],[125.38605506100009,-32.440216062999866],[125.55553429300005,-32.32921602899995],[125.67563623700005,-32.29597859699987],[125.80818932900002,-32.16071697499996],[125.89742273600007,-32.123428402999934],[126.00146478500005,-32.12206265599991],[126.4751128900001,-31.98801993099994],[126.5677719800002,-31.936378521999984],[126.2193604050002,-31.960933474999933],[126.04159549400003,-32.03070443699994],[125.96624000400004,-32.017471255999965],[125.87519074400018,-32.10292056799989],[125.68963619500005,-32.088234131999855],[125.64908605500011,-32.19348535499995],[125.51330559400003,-32.19358442999982],[125.35961920800003,-32.2499656359999],[125.2929230640002,-32.227157638999984],[125.2471008760001,-32.30225379199993],[125.07144166600017,-32.28804009599992],[124.95584868300011,-32.318046638999874],[124.8295059090002,-32.42313005699998],[124.64624029000015,-32.47121804099993],[124.56400292400008,-32.45378116799992],[124.42271421100031,-32.5677643219999],[124.23799902600024,-32.556064525999886],[123.98731993800004,-32.50738528199997],[123.79454806700005,-32.52151867999987],[123.71459963100006,-32.422981192999885],[123.68904874000009,-32.33172607199998],[123.71234892200005,-32.267807019999964],[123.80481724000003,-32.27743531199991],[123.81340785200007,-32.211418100999936],[123.92029572500019,-32.14929964999993],[123.92553709800029,-32.08057022299988],[123.83213050900008,-32.054054239999914],[123.94209286500029,-31.980886427999906],[123.89556877600012,-31.89827338399988],[123.78411109000001,-31.8701190729999],[123.74591827700021,-31.815975163999894],[123.8217010750003,-31.74355132999989],[123.93827826100016,-31.725570638999955],[123.93889617500008,-31.675264299999867],[124.06889345800005,-31.564859379999916],[124.04493714000012,-31.449434203999942],[123.9926833500001,-31.378759336999906],[124.13694763800004,-31.23760993199994],[124.23013311100021,-31.243341476999944],[124.27675627500025,-31.15129091299997],[124.14590454000017,-30.970808085999977],[124.2527999570002,-30.80699535499997],[124.37916569700008,-30.71764393199993],[124.1065292080001,-30.748792591999973],[124.01853179800003,-30.572397283999976],[123.8755113840001,-30.587543550999953],[123.74999992700009,-30.6428012479999],[123.67565160800007,-30.61360355899984],[123.53197472300019,-30.61579509099988],[123.4640655500001,-30.652181602999974],[123.38029479800002,-30.59767525999996],[123.05911250500003,-30.66147981599994],[122.85438535900016,-30.651065803999984],[122.8175432060001,-30.70359619699991],[122.73309318500026,-30.70335764799995],[122.63020331100017,-30.658515974999943],[122.529449483,-30.65307997499997],[122.43206031700004,-30.69142332699994],[122.34918207000021,-30.627424309999924],[122.14329537000015,-30.60843460599989],[122.08435064200023,-30.566566496999883],[121.98367308800016,-30.622102807999966],[121.86804959600022,-30.72859002599995],[121.77333073700015,-30.744830969999953],[121.61434179200023,-30.683193134999897],[121.50923926400014,-30.67924492399993],[121.5075149390002,-30.62094694299992],[121.21632393400012,-30.433593804999873],[120.99051663500006,-30.207084606999956],[120.86219020100009,-30.16885189599992],[120.86598971800015,-30.12488562799996],[120.67732246400021,-30.102073608999945],[120.66439052900012,-30.014467297999943],[120.56882476300007,-29.96321682099989],[120.4917374050001,-29.87996474199997],[120.45130913900005,-29.934412074999955],[120.34700758600013,-29.951198512999895],[120.28588104800008,-29.896942117999913],[120.14043424100021,-29.87693786899996],[120.10745245800001,-29.926609025999937],[119.9544981480002,-29.94171137199993],[119.83940120600005,-29.810274077999964],[119.81278229300017,-29.8596535449999],[119.6444626120001,-29.847734478999882],[119.36528002500006,-29.77544777199995],[119.11207580600012,-29.69329640399991]]]},"properties":{"objectid":179,"eco_name":"Coolgardie woodlands","biome_num":12,"biome_name":"Mediterranean Forests, Woodlands & Scrub","realm":"Australasia","eco_biome_":"AU12","nnh":2,"eco_id":197,"shape_leng":38.6159795482,"shape_area":12.2438682088,"nnh_name":"Nature Could Reach Half Protected","color":"#FF7F7E","color_bio":"#FE0000","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":129520.93172025503,"percentage":3.9208443896898553}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-77.70737458599996,-8.353334094999923],[-77.61903351799992,-8.274195684999881],[-77.72846261699988,-8.186121999999898],[-77.73091851399994,-8.025373356999978],[-77.81034861399996,-8.02324167199987],[-77.85486557199994,-7.944474412999909],[-77.95158351499992,-7.93649886399993],[-78.02949565199992,-7.840526743999931],[-78.09677852999994,-7.864090116999932],[-78.10328657499997,-7.932718290999958],[-78.23609950699989,-7.828688813999975],[-78.27407053399997,-7.907601917999898],[-78.37728160199993,-7.861028375999922],[-78.49755051299996,-7.892467050999869],[-78.36495953399998,-7.991434025999979],[-78.43148049699988,-8.042305136999971],[-78.35543065099995,-8.084669119999887],[-78.33964551599996,-8.173325850999959],[-78.40926359199989,-8.243652867999913],[-78.31439251799998,-8.373833379999894],[-78.24013556099999,-8.324858087999871],[-78.23486351199995,-8.199376134999909],[-78.27303352499996,-8.100921126999879],[-78.20502460699993,-8.020677982999871],[-78.11620358999988,-7.988161059999868],[-78.08851665599997,-8.052775642999961],[-78.01490761999992,-8.011182627999972],[-77.94107059699996,-8.090070920999949],[-77.86757656099996,-8.07668669799989],[-77.85808556399991,-8.199778969999954],[-77.82476062599994,-8.234463619999872],[-77.70737458599996,-8.353334094999923]]],[[[-78.65247356499998,-6.624199938999936],[-78.76977561799998,-6.714422408999894],[-78.75692750199994,-6.76880151499995],[-78.90793653999998,-6.768395327999883],[-78.99047850499994,-6.840669293999952],[-78.95040864899994,-6.951684080999883],[-78.79352557299995,-6.899955835999947],[-78.75253253399995,-6.957738664999908],[-78.75789661699986,-7.063547954999933],[-78.67813157699993,-7.073073317999899],[-78.60573556999992,-7.131001153999819],[-78.58027654499995,-7.062834990999932],[-78.3979946259999,-6.997353886999974],[-78.2679596239999,-7.059405450999918],[-78.26420553699995,-7.153967567999871],[-78.12667862299992,-7.198999342999912],[-78.08148155699996,-7.143814065999834],[-78.17715461099993,-7.018940304999887],[-78.29296854099994,-6.974931457999958],[-78.29178652499996,-6.858777054999905],[-78.36140460099989,-6.802291073999925],[-78.37836454399991,-6.728276353999831],[-78.51467155599994,-6.842024982999931],[-78.58028459199988,-6.818729662999885],[-78.64627062199997,-6.682786759999942],[-78.65247356499998,-6.624199938999936]]],[[[-76.67227156899997,-9.156248502999915],[-76.68837756399995,-9.073325496999928],[-76.76183354599993,-8.921446248999871],[-76.6569065349999,-8.919943373999956],[-76.64864365499994,-8.818229816999974],[-76.52968550499992,-8.799795161999953],[-76.61303749799998,-8.67054219199997],[-76.72940848899998,-8.760491747999879],[-76.83567861599994,-8.745997760999956],[-76.93622557899994,-8.760716884999965],[-77.02888450199998,-8.654297559999975],[-76.99224854399989,-8.598141323999926],[-76.87051363799998,-8.60666471299993],[-76.81516256699996,-8.53669292099994],[-76.95159161999999,-8.494779884999957],[-76.9748006069999,-8.440760864999959],[-76.89566052099991,-8.37160060899987],[-76.88043965499998,-8.270536984999978],[-76.95091251799994,-8.29041852399996],[-76.99889354899994,-8.369852813999955],[-77.14044159799988,-8.26337934199995],[-77.22446464499995,-8.15875609099993],[-77.22071860499995,-8.049155833999976],[-77.06258360799995,-8.051799653999979],[-77.11004663799997,-7.918481124999971],[-77.23362757399985,-7.954094490999921],[-77.26114653599996,-7.798009036999929],[-77.33387765099997,-7.810915826999974],[-77.39951365299993,-7.761930475999918],[-77.40946163099989,-7.689361633999965],[-77.47899655799995,-7.636682378999922],[-77.445114559,-7.571689100999947],[-77.55471749799995,-7.351780985999881],[-77.52605457399994,-7.181186457999956],[-77.54349563899996,-7.080356688999814],[-77.61022162299997,-7.037455760999933],[-77.67043252199994,-7.048754063999979],[-77.73457352699995,-6.992496070999948],[-77.71685753599996,-6.934484247999819],[-77.77924353899988,-6.843230132999906],[-77.85562161999997,-6.800315123999951],[-77.90497560699998,-6.871318896999981],[-77.79014554499997,-6.994821042999945],[-77.78567463799999,-7.100884472999894],[-77.65859962099984,-7.166391560999955],[-77.72348058099993,-7.256791894999935],[-77.67100550799984,-7.290899367999884],[-77.6329955889999,-7.448417121999853],[-77.55741160999992,-7.549572946999945],[-77.51767753299998,-7.685040930999889],[-77.53550751699999,-7.780613234999976],[-77.46092249299994,-7.846042370999953],[-77.41616061499985,-7.931714138999837],[-77.43226660999994,-7.991759075999937],[-77.3978656029999,-8.072111184999926],[-77.26143654999993,-8.168802137999933],[-77.24311052399986,-8.225539239999875],[-77.29601257099995,-8.315820719999977],[-77.28305062799996,-8.391776352999898],[-77.2211915119999,-8.408193986999947],[-77.12319951999996,-8.483536734999973],[-77.08452558699997,-8.636735628999872],[-77.19741054399998,-8.593963782999936],[-77.00551558799992,-8.846222690999923],[-76.90185558499991,-8.899648774999946],[-76.90060450299995,-8.963636390999966],[-76.83035258699988,-9.0363490659999],[-76.67227156899997,-9.156248502999915]]],[[[-79.26012449799998,-6.171255971999869],[-79.27389562999997,-6.201792921999981],[-79.2137905109999,-6.371140558999969],[-79.17217251699998,-6.307102985999904],[-79.20183556999996,-6.172639991999972],[-79.26012449799998,-6.171255971999869]]],[[[-79.30987561999996,-5.583354982999936],[-79.36362457399997,-5.628512653999906],[-79.2828905849999,-5.783963262999976],[-79.26696061099989,-5.653831868999873],[-79.30987561999996,-5.583354982999936]]],[[[-79.31794755999994,-5.370285662999947],[-79.2838975869999,-5.266935455999942],[-79.33795164199995,-5.25405414699992],[-79.36002353999999,-5.349158237999973],[-79.31794755999994,-5.370285662999947]]],[[[-79.30597652599994,-4.430120104999901],[-79.33824953499999,-4.46465270799996],[-79.33953850399996,-4.5773043129999],[-79.4961166469999,-4.785326720999933],[-79.55340561399998,-4.809574057999953],[-79.50173956299989,-4.9380325919999],[-79.45304858399999,-4.969445282999914],[-79.37792158599996,-4.886859228999924],[-79.34293350999997,-4.73712558099993],[-79.35436257099997,-4.673676082999918],[-79.29243455499989,-4.610685912999941],[-79.30597652599994,-4.430120104999901]]]]},"properties":{"objectid":181,"eco_name":"Cordillera Central páramo","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Neotropic","eco_biome_":"NO10","nnh":3,"eco_id":590,"shape_leng":33.4948647964,"shape_area":0.993052030124,"nnh_name":"Nature Could Recover","color":"#BD9A64","color_bio":"#D6C39D","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":12198.549066843976,"percentage":0.24980111856292073}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-71.90905760799996,8.112253544000112],[-71.9885105059999,7.982403782000063],[-71.94615155299994,7.953941856000029],[-71.87905156799997,8.001489543000105],[-71.90905760799996,8.112253544000112]]],[[[-70.74810752299999,9.163362308000046],[-70.8193966149999,9.109156205000033],[-70.88780954099997,9.015549960000044],[-70.88774164799997,8.9301980460001],[-70.96394354099994,8.93487447700005],[-71.10952764399997,8.7872341260001],[-71.30191763599998,8.760258981999982],[-71.30066655299987,8.625888692000046],[-71.21823858199997,8.624595867000096],[-71.09796162399988,8.7164472770001],[-70.94735759899993,8.722270688000094],[-70.98020962999993,8.638564812000084],[-71.15278664699997,8.490082415000131],[-71.10415652099988,8.43647410900013],[-71.14920053299988,8.356059135000123],[-71.0456235119999,8.351602310000033],[-70.93269362699988,8.52663086500013],[-70.88169863099989,8.531653302000109],[-70.76902053899983,8.68367638300009],[-70.63394952199997,8.811520355000084],[-70.70639062299995,8.873530010000025],[-70.64063258099992,8.976537733000043],[-70.51746353099992,8.936871382000163],[-70.54792051699991,9.085999689000062],[-70.77023356799998,8.954628276000108],[-70.81144755399998,9.069629161000023],[-70.74810752299999,9.163362308000046]]]]},"properties":{"objectid":182,"eco_name":"Cordillera de Merida páramo","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Neotropic","eco_biome_":"NO10","nnh":4,"eco_id":591,"shape_leng":10.1258374139,"shape_area":0.22988818816,"nnh_name":"Nature Imperiled","color":"#F4B158","color_bio":"#D6C39D","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":2815.580654334049,"percentage":0.05765728309184343}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.090312555000025,42.550791398000115],[8.904342431000146,42.55593419900015],[8.754098493000185,42.45843489500015],[8.75956349400019,42.40233632600007],[8.651267461000145,42.34973150200011],[8.719647530000145,42.2598433010001],[8.674654479000026,42.20295063100008],[8.750346585000102,42.15485895800009],[8.783430459999977,41.97839340900015],[8.892194539000059,41.92307284800012],[8.83494848700019,41.83833733900008],[8.86433443400017,41.786037951000026],[9.07678651000009,41.66395385500016],[9.054971434000038,41.55521274300014],[9.130385428000181,41.55496078300007],[9.30623054900019,41.72358036700001],[9.338912427000139,41.874484967000114],[9.333338461999972,41.98387433600004],[9.262516577000099,42.08899144800006],[9.326550461000124,42.176915769000175],[9.23281848800002,42.205243584000186],[9.140127547000077,42.29819905800008],[9.130857497000079,42.43737804600005],[9.090312555000025,42.550791398000115]]]},"properties":{"objectid":185,"eco_name":"Corsican montane broadleaf and mixed forests","biome_num":12,"biome_name":"Mediterranean Forests, Woodlands & Scrub","realm":"Palearctic","eco_biome_":"PA12","nnh":1,"eco_id":788,"shape_leng":3.53167501289,"shape_area":0.395384331148,"nnh_name":"Half Protected","color":"#FF7F7E","color_bio":"#FE0000","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":3636.1659121240273,"percentage":0.1100736423617268}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[23.881416550000154,35.502651351],[23.799901535000117,35.524997840000026],[23.76437953300018,35.6438528920001],[23.713119501000165,35.64009880500004],[23.723550444000182,35.495502426000144],[23.579385565000052,35.45797144800002],[23.51727851200019,35.256850364000115],[23.573749573000043,35.212749483000096],[23.983219458000065,35.22151930100006],[24.040193601000112,35.17232239000015],[24.179185504000145,35.18931183800004],[24.493921443000033,35.1389560450001],[24.59332260000008,35.08347673100019],[24.74179460400012,35.05423327700015],[24.752777579000167,34.94020335100004],[24.921386603000144,34.92520460600008],[25.206108454000173,34.94520818600017],[25.380275518000133,34.99659092900015],[25.504444529000068,34.9793721530001],[25.59694251800005,35.00770667300009],[25.80777755800011,34.995759947000124],[25.978610468000056,35.03381395500014],[26.146720601000027,34.99937958800001],[26.236917590000076,35.0337638310001],[26.276325443000076,35.11063577400017],[26.270160552999982,35.25075454100016],[26.134532475000015,35.19252378300013],[26.061309510000058,35.22874399800003],[25.888551445000076,35.17440831100015],[25.80911044800007,35.105601100000115],[25.708108515000106,35.135560201000146],[25.74821256900009,35.330231411],[25.62292457400008,35.33091436900003],[25.450464569000076,35.277703701000064],[25.349061478000124,35.32165253300002],[25.127817455000127,35.3385623530001],[24.974643539000056,35.413393470000074],[24.797807510000155,35.39080306700009],[24.71765153800004,35.41004054100006],[24.513408529000174,35.349082982000084],[24.291938531000028,35.34104624600019],[24.243881559000158,35.45208131700002],[24.18102047100018,35.43189803000013],[24.16716149700011,35.562406943999974],[24.079095522000046,35.55661287000004],[24.03131649500017,35.49557132500007],[23.881416550000154,35.502651351]]]},"properties":{"objectid":187,"eco_name":"Crete Mediterranean forests","biome_num":12,"biome_name":"Mediterranean Forests, Woodlands & Scrub","realm":"Palearctic","eco_biome_":"PA12","nnh":3,"eco_id":789,"shape_leng":8.03977846644,"shape_area":0.811084337208,"nnh_name":"Nature Could Recover","color":"#F5A27A","color_bio":"#FE0000","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":8211.02592929276,"percentage":0.2485633366041544}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-95.29573927999996,35.31844643800008],[-95.29409554799986,35.38324913900004],[-95.39256822399989,35.49115392400006],[-95.55750877199995,35.38171547000002],[-95.59638403899993,35.45558987900006],[-95.68711627499994,35.48685139000003],[-95.87315326599986,35.51204650500006],[-95.98080165299996,35.62725208900008],[-95.94725120399994,35.75336848200004],[-95.88536044099993,35.80792081100009],[-95.80045590499986,35.78771362100008],[-95.72471773999996,35.89703839300006],[-95.82385428399988,35.91028115600005],[-95.97473006499996,35.84084976100007],[-96.05691022799994,35.74198954700012],[-96.1726138269999,35.745516324000164],[-96.0741631549999,35.874583396000105],[-96.00302932199997,36.08225633500007],[-96.04631784499998,36.193306580000126],[-95.99326278799992,36.25353880900013],[-96.05862330899993,36.307082917000116],[-96.01316814299997,36.38741435100019],[-95.97317873899993,36.57147553700008],[-95.98928286699999,36.623323218000166],[-95.98320179499996,37.01457009100017],[-95.83842408099997,37.24791088699999],[-95.93308360099991,37.278625889000125],[-95.88996451599985,37.36649092900018],[-95.94001651499997,37.44563477500003],[-95.94743750099997,37.57821428500017],[-95.8406819519999,37.72509615700011],[-95.74747680799993,37.80405788000007],[-95.7804572039999,37.850211854000065],[-95.96154120099993,37.7587186830001],[-96.0509399909999,37.69232725600017],[-96.09246135899991,37.60852193800008],[-96.10036768599986,37.43945213100011],[-96.15578824299996,37.432811604000165],[-96.23485158699998,37.27989604600015],[-96.20104398399997,37.19475135900018],[-96.24708061899992,37.10748992100014],[-96.3460396029999,37.04380870400007],[-96.35690984499996,36.87739972800006],[-96.32928332999984,36.83319760699999],[-96.38400694999996,36.70371086800009],[-96.394325601,36.59836360800017],[-96.4798861679999,36.61485017200005],[-96.54589433599995,36.44262701800017],[-96.58104081099998,36.29001997600011],[-96.55020274599997,36.23954695300006],[-96.66358580999997,35.93224669700015],[-96.62179398499995,35.74636338800008],[-96.81498430999994,35.69470241100015],[-96.81833525499991,35.871352822000176],[-97.07844810499995,35.86129420300006],[-97.17563864799996,35.97029058900006],[-97.11435649999999,36.066230364000035],[-97.182911489,36.140652727000145],[-97.27717514399995,35.99359305800016],[-97.21806292199989,35.92803352599998],[-97.3832467709999,35.86351537100012],[-97.48641109999994,35.763334590000056],[-97.47659790499995,35.63255794400004],[-97.51168690099996,35.520646747],[-97.40245217699999,35.49557334100007],[-97.37812733099997,35.41472797300008],[-97.39315591199988,35.314489810000055],[-97.36853120999984,35.19039726500006],[-97.25976915799993,35.067368277000185],[-97.22977797499993,34.95324704100011],[-97.05647449399993,34.92993791400005],[-97.03784607499995,34.89073881600012],[-97.16606579599988,34.767628709],[-97.1611357349999,34.60495907400008],[-97.33446883599999,34.55663818700009],[-97.44851976099994,34.61182260800007],[-97.53676111699997,34.759350438000126],[-97.61272525499999,34.78215725000018],[-97.719308072,34.87539971500007],[-97.67702073599997,34.93048838100003],[-97.50428074399997,35.021469723000166],[-97.61568468899998,35.14668486500011],[-97.71965907199996,35.1667120140001],[-97.79240660499994,34.84512209900009],[-97.77319212499998,34.735877175000155],[-97.85710848399998,34.74295415900019],[-97.89217030899988,34.83966883599999],[-98.05936523899999,34.91423016700003],[-98.03134436799996,34.99557130000005],[-98.14969511599992,35.076082807000034],[-98.11808617499997,35.24141377500018],[-98.0632369949999,35.281303120000075],[-98.12344775399998,35.353266508],[-98.12071527099994,35.41888220400017],[-98.3010451699999,35.523596581],[-98.34386369699996,35.456518272000096],[-98.46471752199994,35.427281564000054],[-98.41065764399997,35.329378560000066],[-98.39510928699997,35.21871140000019],[-98.28705061099998,35.13592635100008],[-98.23793354999998,35.01026899400006],[-98.25279841199995,34.969722144],[-98.10849851099994,34.90425536000009],[-98.13548867499998,34.83744311000004],[-98.090376301,34.76476825300017],[-98.10433033799995,34.660610311000084],[-97.98178387399992,34.537433243],[-98.04250544999991,34.44580098300003],[-97.95597312699988,34.38942606300009],[-97.845603198,34.40761243700007],[-97.74199408699997,34.37544378700011],[-97.6037490519999,34.24594975600007],[-97.51943429399995,34.23090381000003],[-97.51224166599991,34.07602575700008],[-97.57965833699996,33.94165250900005],[-97.69244946499998,33.88447691300013],[-97.70410298899992,33.78777064000013],[-97.83530655699997,33.696114752000085],[-97.88830989699994,33.56023679400005],[-97.97614107099997,33.561547295000025],[-98.0694115309999,33.517565107000166],[-98.44892976099993,33.437187512000094],[-98.51745537199997,33.38128266100006],[-98.62021451499999,33.36961842900007],[-98.56371100999996,33.287291653000125],[-98.44594925499996,33.24326891900006],[-98.47535713699995,33.19302133000002],[-98.64643647799994,33.140101875000084],[-98.81848031099997,33.16240947400013],[-98.87023405099995,33.076743747000194],[-98.85625693099996,32.99376781500018],[-99.01643706899983,32.86414050900004],[-99.07509811399984,32.61540704900011],[-99.14731891499991,32.50342948200006],[-99.08662857599995,32.4000047400001],[-99.19808661699983,32.322031939000055],[-99.33550069399996,32.38821406800008],[-99.39909175399993,32.34501068200018],[-99.37246153099994,32.188672293000025],[-99.31608572699997,32.14327863300008],[-99.31320554599989,32.060018194000065],[-99.24778921299998,32.006410073000154],[-99.17095663199996,31.816977917000145],[-99.04513288199996,31.774968180000144],[-98.92238939299989,31.659705574000157],[-98.99330866499992,31.622215164000067],[-98.98905803599996,31.549881839000136],[-99.09712090799991,31.539054369000098],[-99.18010027499997,31.452679269000043],[-99.18695076799992,31.312590132000025],[-99.11647190799988,31.253506577000053],[-99.00241150399995,31.27688627600014],[-98.93043795199998,31.199114653000038],[-98.79962890899992,31.173322141000085],[-98.68702617599996,31.17979971600016],[-98.51218872599998,31.222737887999983],[-98.412247257,31.182618616000184],[-98.34228981599995,31.098026876000063],[-98.33485010899994,30.980072110000094],[-98.23814033399992,30.901150365000035],[-98.11862778199998,30.89214881800018],[-97.91176970899988,30.845071807000124],[-97.86222466599992,30.7748337970001],[-97.67449953299996,30.667959846000144],[-97.65853727099994,30.801349958000174],[-97.56153862199989,30.982964501000026],[-97.44458788499998,31.007346423000172],[-97.39308324399991,31.188877795000167],[-97.3952652289999,31.349054547000037],[-97.20992771799996,31.54924542900011],[-97.12238442099994,31.622295712000152],[-97.16175427699994,31.770562768000104],[-97.12581066799993,31.844893192000143],[-97.22790412199998,31.998015061000103],[-97.27336457199993,32.22546666900007],[-97.14945484699996,32.354085017000045],[-97.2581488589999,32.43068239300004],[-97.12265802499991,32.57066382300013],[-97.13059157099997,32.66886109400002],[-97.03927876299991,32.77044042700004],[-97.09177077499993,32.91601638700007],[-97.02820914699993,32.98624429800003],[-97.05635978599997,33.06218863300012],[-96.9926635519999,33.13648889500013],[-96.91348449399999,33.50686053800007],[-96.91857307899983,33.65623219200012],[-96.75135777999998,33.73577571000004],[-96.6813799649999,33.790475336999975],[-96.6530773099999,33.90988321700013],[-96.5023903579999,34.0202637970001],[-96.29564795499994,34.03381045700007],[-96.26049723099999,34.08295298300004],[-96.14078652799998,34.049256126000046],[-96.08589741199995,34.09148431400007],[-96.16256452199985,34.15556625200003],[-96.33548733499998,34.19115257500005],[-96.40523222699994,34.183650233000094],[-96.51369387599993,34.233372152000186],[-96.48417374699983,34.2904238750001],[-96.36773116799992,34.24490864800009],[-96.41229924199996,34.3941806900001],[-96.36275157199992,34.4682638160001],[-96.47557793299995,34.497625099000174],[-96.505465486,34.54243638100007],[-96.64412906099994,34.59715969100017],[-96.57756835599992,34.70258958300013],[-96.65863427999989,34.73210288800004],[-96.57448790999996,34.82984073800003],[-96.37609267699997,34.90689703200019],[-96.33462409999987,34.999305271000026],[-96.18015606599994,35.04677481400006],[-96.10164115099997,35.188773762000096],[-95.84772437399994,35.32337631300004],[-95.80155037299983,35.28999791400008],[-95.71685075399989,35.364889401000084],[-95.55667588999995,35.31490154200003],[-95.31813809199997,35.29237006700015],[-95.29573927999996,35.31844643800008]]]},"properties":{"objectid":191,"eco_name":"Cross-Timbers savanna-woodland","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Nearctic","eco_biome_":"NE08","nnh":4,"eco_id":390,"shape_leng":34.4602219189,"shape_area":8.56895647834,"nnh_name":"Nature Imperiled","color":"#FBDA4D","color_bio":"#FEFF73","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":88419.33404565744,"percentage":0.8345148595888833}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-75.78664353499988,20.066414899000108],[-75.92906950399993,20.053149532000077],[-75.89357750799996,19.972416214000134],[-75.70251453999998,19.96054190700005],[-75.58786049799988,19.89502258100009],[-75.49392652099993,19.88552839900018],[-75.48783857699993,19.939244161000033],[-75.65480055599994,19.968462638000062],[-75.78664353499988,20.066414899000108]]],[[[-74.23160553099996,20.12083993800013],[-74.15579255799997,20.168887018000078],[-74.19938650099982,20.22396484000018],[-74.26280263899997,20.123141776000125],[-74.49423251799988,20.139296721],[-74.55725856299995,20.10922832],[-74.76347349799994,20.13509705200005],[-74.95503250699988,20.08790157300018],[-75.13607055199992,20.14984501100008],[-75.22917153599997,20.122085656000138],[-75.4018786389999,19.88959513100008],[-75.22119162899997,19.90640101500003],[-75.21384455499987,19.98483668500012],[-75.13277461999996,20.059705353000084],[-75.07156359299995,20.004570368000145],[-75.12951657399998,19.943463108000174],[-75.07827749699999,19.900426394000135],[-74.97834056799991,19.92640794700003],[-74.97950749699993,19.979101787000047],[-74.87879960099997,19.991224199000158],[-74.83675362799994,20.03392278700005],[-74.64311255299998,20.044077295000022],[-74.36193054699999,20.081139053000186],[-74.27758764599992,20.066654789000097],[-74.23160553099996,20.12083993800013]]],[[[-82.01924150199989,23.188918084000022],[-81.95917560999999,23.12673022900009],[-81.88103464699998,23.138820622000082],[-81.65257263199999,23.1202954420001],[-81.56573460699997,23.087544329000025],[-81.55568654899992,23.005902580000168],[-81.43873552999997,23.06578222600018],[-81.59963957299988,23.158854712],[-81.85809354599996,23.152388911000173],[-82.01924150199989,23.188918084000022]]]]},"properties":{"objectid":192,"eco_name":"Cuban cactus scrub","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Neotropic","eco_biome_":"NO13","nnh":4,"eco_id":600,"shape_leng":17.563619749,"shape_area":0.282603984934,"nnh_name":"Nature Imperiled","color":"#F76A63","color_bio":"#CC6767","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":3272.083094041857,"percentage":0.01240262653088391}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-77.29799656799997,20.732677296000077],[-77.19973752799996,20.668067742],[-77.16172760899991,20.585159320000116],[-77.10182164399993,20.57883668300019],[-77.01151250399988,20.441611685000055],[-76.99105864899997,20.55089946400011],[-77.07907852299996,20.704443861000016],[-77.29799656799997,20.732677296000077]]],[[[-78.62096364399991,21.68928932200015],[-78.74317162499989,21.660465130000148],[-78.63536861499995,21.56891597200007],[-78.49542955699991,21.402941044999977],[-78.43898749699991,21.432381307000185],[-78.6273655739999,21.57804151800019],[-78.62096364399991,21.68928932200015]]],[[[-78.64588957999996,22.173262255999987],[-78.54814150199991,22.128577827000186],[-78.44052859399994,22.17138957100002],[-78.40589859299985,22.13435647800003],[-78.30252055799991,22.14656673200011],[-78.42232561399993,22.23482817300004],[-78.49042555999995,22.239251806000027],[-78.61266354799983,22.154428287000144],[-78.64588957999996,22.173262255999987]]],[[[-82.13755055599995,22.743032350000078],[-82.16458152399997,22.76802282700004],[-82.37238365599995,22.740424405000056],[-82.7353825919999,22.749697807000132],[-82.73931856599995,22.724539190000087],[-82.07762162499984,22.685896269000125],[-81.86815652299998,22.69465083199998],[-81.76068862199998,22.670538946000192],[-81.67316462099996,22.619836646000067],[-81.520057593,22.464895992000038],[-81.74614752899987,22.3914116790001],[-81.7302856149999,22.328204921000122],[-81.65583050999987,22.272943033000104],[-81.5280074929999,22.297868634000167],[-81.44436649199992,22.282158601000162],[-81.37796052899995,22.195430042000112],[-81.33059657399991,22.28308161600006],[-81.38283561199995,22.34456421700014],[-81.44409961299988,22.305745276000152],[-81.54817150199995,22.37086092900006],[-81.46073165599995,22.415381576000186],[-81.38527658999999,22.363674285000172],[-81.27716059999995,22.36829388800004],[-81.18540960499996,22.31946645200003],[-81.03160050799994,22.156118414000105],[-80.86289257899995,22.14163716700017],[-80.67723861999991,22.10358114700017],[-80.91010264199991,22.2684171410001],[-81.02645150499995,22.44016418100017],[-81.2180256019999,22.538786995],[-81.33339663199996,22.65263402700009],[-81.44839449999995,22.675358707999976],[-81.50393651099984,22.6418426620001],[-81.6975475779999,22.709932047000052],[-82.13755055599995,22.743032350000078]]]]},"properties":{"objectid":196,"eco_name":"Cuban wetlands","biome_num":9,"biome_name":"Flooded Grasslands & Savannas","realm":"Neotropic","eco_biome_":"NO09","nnh":1,"eco_id":579,"shape_leng":23.6011696193,"shape_area":0.494292598757,"nnh_name":"Half Protected","color":"#7F99A6","color_bio":"#BEE7FF","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":5673.758121018233,"percentage":0.49065548986648705}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[34.597919492000074,35.697474441],[34.35860861200007,35.62019832300018],[34.29720647800019,35.57490050600006],[34.18795054900011,35.56145777800015],[34.129329530000064,35.504917315000114],[33.98458445500006,35.44161785199998],[33.77327349100011,35.40681367600013],[33.68273150200014,35.36378048200004],[33.51283250400019,35.333016383000086],[33.367515449000166,35.32865946900017],[33.125698548,35.36108771200003],[33.01624245900007,35.35964166600007],[32.9459915490001,35.29155848400006],[32.91494347100013,35.18011521300019],[32.82374953800007,35.140546092000136],[32.65591047600003,35.1920857450001],[32.54950758000018,35.15517871600008],[32.447837609000146,35.04737436500017],[32.27495146800004,35.04451345399997],[32.31819152700007,34.974252318000026],[32.318126483000015,34.89077040700016],[32.39144852300012,34.83595393300004],[32.42447255100012,34.75176626500013],[32.50117450800019,34.70076137900003],[32.71277951000013,34.63915221100007],[32.88683660300018,34.66239455800019],[32.949832472000026,34.57386875200012],[33.02133949400019,34.646635742000115],[33.15434655100012,34.708569289000025],[33.272132575000114,34.70136454100003],[33.611698561000026,34.81376452100011],[33.695812468000156,34.96959851800011],[33.91431057900013,34.9654176250001],[34.088726585000074,34.984331054000165],[33.92148548800003,35.15755968000008],[33.91647746900003,35.24603167400011],[33.96398559300013,35.30935410200004],[34.05171260300017,35.316399930000046],[34.132995607000055,35.402605625000035],[34.30229546600009,35.48297969500004],[34.45374254300003,35.60194572300003],[34.56991957700018,35.64432982200009],[34.597919492000074,35.697474441]]]},"properties":{"objectid":197,"eco_name":"Cyprus Mediterranean forests","biome_num":12,"biome_name":"Mediterranean Forests, Woodlands & Scrub","realm":"Palearctic","eco_biome_":"PA12","nnh":4,"eco_id":790,"shape_leng":6.62806285944,"shape_area":0.916110729503,"nnh_name":"Nature Imperiled","color":"#A80000","color_bio":"#FE0000","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":9293.961718824372,"percentage":0.2813458579957555}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[120.05098759200007,51.549547168],[119.99872558800007,51.739084462],[119.92221859300003,51.882527157000084],[119.76921868500028,52.00684637100011],[119.65881359700006,52.032325010000136],[119.52279659900012,51.90621257100014],[119.32170066000003,51.782961211000156],[118.97820255600004,51.704106948000174],[118.42870359100004,51.776369179000085],[118.2702026400002,51.75482802300013],[118.12609861300018,51.654308217000164],[117.82379957500018,51.50917573100003],[117.6829986890001,51.51068682099998],[117.35340163700016,51.57817773700009],[117.21810162600002,51.54434435300004],[116.98950164500002,51.36217424800003],[116.79620355900022,51.33736264100014],[116.53040368600011,51.532655957000145],[116.30419958800007,51.58063380300007],[116.11289957900021,51.46722497600007],[115.95379664000006,51.4776431790001],[115.90149658200016,51.58057697300018],[116.06809964800004,51.77751817100011],[116.80629754900019,52.37226717500016],[117.27210254000022,52.67620521000009],[117.352302602,52.75798978700004],[117.34950254300009,52.84186145700011],[117.164100544,52.8685311640001],[116.944900533,52.83201925900005],[116.77320059900012,52.886540521000086],[116.6557005650003,52.98849363300019],[116.674201605,53.07660336100008],[116.62059765800018,53.160967049000135],[116.41999859800023,53.18140766100015],[116.10459864500012,53.01038297300016],[115.83699766900008,52.597364694000134],[115.66549655400001,52.40040069800011],[115.4506985500002,52.24774880600006],[115.19850166800006,52.17231536600008],[114.90670062800018,52.13279486000005],[114.5663985440001,52.121724378000124],[114.45587963000025,52.04955602400014],[114.32927668200011,51.89812135200009],[114.37757857300005,51.438602286000105],[114.34197962400003,51.274331735000146],[114.1647796530001,51.14158971400013],[113.9581836770003,51.099497808000194],[113.76187866600003,51.093057824000084],[113.58377864600004,51.00502839500018],[113.33988152400002,50.69285161900018],[113.14517963700007,50.61798747700004],[112.84137755600011,50.55211058000003],[112.75868253700014,50.45557033300008],[112.75917857800005,50.312685036000175],[112.70427660900009,50.18095437500017],[112.56668062800009,50.02265425400009],[112.08306157800018,49.79468040100011],[111.94996667800001,49.665040690000126],[111.92716253700013,49.55159045700009],[111.9542005450001,49.403730667000104],[111.8642115940001,49.30956769599999],[111.7068405240002,49.06352095200015],[111.5593265720002,48.91365118200008],[111.43853764700015,48.83614757900011],[111.3261255970001,48.837001359000055],[111.10710864600014,48.733855335000044],[110.95653563399998,48.70947908400012],[110.90892759700006,48.761355857000126],[110.94441255200002,48.851459639000154],[111.09839666300007,48.94849458600015],[111.12416062200009,49.01591626800018],[111.03511061200004,49.11980727600019],[110.93617263800002,49.17422410000012],[110.72344965900004,49.23358976700018],[110.54535668000005,49.23358976700018],[110.14958953000018,49.11485943800011],[110.01943165000006,48.990067987000145],[110.02853355800016,48.88533409500019],[109.86963664600012,48.567978980000134],[109.74236264300009,48.468623923000166],[109.645309592,48.35595605700013],[109.51033764900006,48.26206415600012],[109.40280151900009,48.235101753000095],[109.26674663500017,48.26715314500012],[109.22053552600016,48.38877422500019],[109.143440624,48.482475018],[109.0676955450001,48.482711890000076],[108.7409666120002,48.39178031100005],[108.5113906420001,48.29699523500011],[108.4487766520001,48.244180863000054],[108.11557756000019,48.108025731],[107.76438855700002,48.17318144900014],[107.6575466170001,48.17455038200018],[107.5114825660001,48.124062826000056],[107.37435161200011,48.12014881300013],[107.1012415460001,48.2327179400001],[107.07791856500012,48.31832349100017],[107.1231766520001,48.38847314700013],[107.09095762200008,48.546188546],[106.85600265000011,48.61005529600004],[106.80988357400014,48.71417110600004],[106.82305858500018,48.94472541100015],[106.74829066700005,49.006029143000035],[106.54234361800002,49.03946170400002],[106.33437368000011,49.130598641],[106.29631062000004,49.198566153000115],[106.37093353000012,49.26309591100011],[106.37037663700016,49.39452163800007],[106.4689865430002,49.52288394700008],[106.58021557100017,49.58399975599997],[107.02255257500013,49.652142617000095],[107.120620674,49.69996808100018],[107.31968651600005,49.74919768000018],[107.57870459100019,49.75935302600004],[107.84230756700015,49.75019663500012],[108.06649766100014,49.83362892600019],[108.16069768000006,50.04465356500015],[108.1268996670002,50.15559408799999],[108.04499858300011,50.22250883300012],[107.61289957100013,50.40893945900007],[107.39050253400012,50.43164871700003],[107.27629860000013,50.50034092800013],[107.3546985640001,50.594050103000086],[107.4817965470001,50.68379245799997],[108.02110261500007,50.85985433400003],[108.25810260400004,50.98734727300007],[108.24520168100014,51.081396753000035],[108.15090158200007,51.11955922300018],[107.94219956900002,51.12668920500016],[107.53070059400017,50.99504538000008],[107.36710361300004,51.008637307000186],[107.2925036690001,51.062948184000106],[107.3769986170002,51.159709712000165],[107.87149855100012,51.329672748000064],[108.14279963500002,51.45425465200003],[108.18669867900013,51.55445326300014],[107.55329854000013,51.54927626500006],[107.38425466300015,51.58024471500005],[107.03359958800013,51.4466026450001],[106.92320254700013,51.266309583000066],[106.72859956500008,51.14060953400008],[106.61009957100009,51.01253656800009],[106.53878768000015,51.00106945400006],[106.39768957100011,50.82186754900016],[106.34946462700003,50.51484815800018],[106.11072556000005,49.903469793000056],[105.85608652700006,49.65070042700012],[105.57865156600019,49.4696343870001],[105.24860356700009,49.22117264800016],[104.97011567200019,49.07612079600011],[104.88766456700017,49.00306831900019],[104.88481857600016,48.82992535700009],[104.79737856200006,48.77810591700012],[104.71411156200014,48.558594769000024],[104.54001658300018,48.41477539200008],[104.45675662400004,48.26338413899998],[104.44175754400015,48.135522061000074],[104.5708995380001,48.101601673000175],[104.83618157700016,47.96476676800006],[105.00984153500008,47.903407213000094],[105.26079554799998,47.88599716200008],[105.42986255900013,47.91407720800015],[105.63063864500009,47.99639504099997],[105.85774966400004,47.99848884100004],[106.19399256000014,48.03983727200006],[106.47216060200014,48.11144672100011],[106.58689159,48.07938057700011],[106.85109756000014,47.95496362900013],[106.72402958400005,47.881991115],[106.60842855500005,47.86236472100006],[106.43975063200014,47.77203228000002],[106.36645457700018,47.623608221000154],[105.97811161400006,47.39311158300006],[105.87823453200019,47.26051959800009],[105.96932251800007,47.19468829800019],[106.15043667100014,47.22976572400012],[106.30990556400013,47.34913123400008],[106.35265360500011,47.421416767000096],[106.45053059800017,47.384436648000076],[106.431686571,47.25838288300008],[106.49675763200014,47.22124652499997],[106.77008864500004,47.17808726800007],[107.04550960200004,47.21592552599998],[107.19546453200007,47.26808376200012],[107.39038854000006,47.40099677500007],[107.6504436240001,47.52087827399998],[107.90795865600012,47.466099184000086],[108.05001867200008,47.5182805550001],[108.31219454500018,47.71045060500012],[108.39321167400004,47.82345039500012],[108.55238368099998,47.858602923000035],[108.64154064400014,47.92560517500016],[108.70602463699998,47.88262109900012],[108.61054956300018,47.77501104100003],[108.53143361700012,47.632081319000065],[108.59133153500005,47.54119164900004],[108.80659456700005,47.46418693700008],[109.01900456600009,47.425746691000086],[109.34235358100011,47.422152865999976],[109.44039167300008,47.45152590400011],[109.50111353200009,47.536777571000016],[109.48968464000018,47.639024385000084],[109.54216759100007,47.69724458100012],[109.76854653500016,47.69617270400016],[109.90626556300009,47.78489112500006],[110.05099454400016,47.933432531000165],[110.15971352800011,47.89520518600011],[110.08770761600005,47.784914427],[110.10478959900007,47.73729884700009],[110.23753363200007,47.73631481100017],[110.5955356130001,47.83879380400015],[110.68493665800014,47.82723868000011],[110.89675154200006,47.855135665000034],[111.098579556,47.92124122100006],[111.20705462700016,47.840292823000084],[111.29129057500018,47.83601956100006],[111.49336267000018,47.911528271],[111.54472362000001,47.984885850000126],[111.45819052800005,48.05723625899998],[111.64504963700006,48.14594412000008],[111.7590336290001,48.097218775000044],[112.09370458300032,48.21443365599998],[112.22186254200028,48.21380367300003],[112.60115858100005,48.34638492900012],[112.80191756700003,48.43888861800019],[112.87098662900007,48.51117716900012],[112.87509158200021,48.62859858000013],[112.9846955270001,48.714117294000175],[113.00813267,48.848644661000094],[113.1881566720001,48.919152225],[113.27494859700016,48.98045092700005],[113.37999764800031,48.96984178400004],[113.53663664300029,48.87979885400006],[113.75972753500025,48.83591037100001],[114.09668758600014,48.8790897450001],[114.5170975310001,49.00214932700004],[114.85176060600008,49.14832569500004],[115.01708962300006,49.320103749],[115.05351268000004,49.41327162000016],[115.02204852400007,49.483901560000106],[114.86473059500008,49.47359047800012],[114.4653855470001,49.241642765000165],[114.31904556400002,49.18321603800018],[114.26454961400009,49.25342202100012],[114.44129964500019,49.342161062000116],[114.42111954200016,49.400041624000096],[114.2575606160002,49.42968590100003],[114.04629558400006,49.378805234000026],[113.78581268800019,49.37370819900008],[113.69084958000008,49.33442490100015],[113.45310963700001,49.17285902300006],[113.27495563800028,49.16093375400004],[113.2156675870001,49.26597593200012],[113.26976053400017,49.359815027000195],[113.37617466200004,49.426282848000085],[113.61885858700009,49.500895701000104],[114.11454757800004,49.58577772500013],[114.5356066170001,49.6943572350001],[114.82467666500031,49.857235048000064],[115.17452959200023,50.00895503900017],[115.30193368200003,50.09534731500008],[115.79861458700009,50.131690577000086],[115.9379276860002,50.21043470200004],[116.15598256200019,50.2770637910001],[116.37403861100006,50.264947582000104],[116.60420952800007,50.174091440000154],[116.67083761200001,50.06506282800012],[116.71323361300017,49.78642925600019],[116.79197656500003,49.628945197000064],[116.90100852900002,49.47145728300012],[117.08271762900029,49.33820078100007],[117.28865864300008,49.25945682300011],[117.43402867200007,49.23522977100015],[117.51277162300005,49.29580042000009],[117.7974545830001,49.44723006300018],[117.88581861800003,49.540382176000094],[118.17221064800015,49.666772894000076],[118.23719755500008,49.72870845300014],[118.58332858200004,49.92483207900011],[118.91137665900021,49.98288480600007],[119.17414865300032,49.99928081400009],[119.31387363800002,50.08649401400004],[119.35942056500005,50.33983167300016],[119.22747767400006,50.350115765000055],[119.20110368100006,50.407329631000096],[119.26470958500033,50.47622334300007],[119.29193166000005,50.59511426900008],[119.50221265600021,50.740120188000105],[119.51914963200022,50.89762486600006],[119.74664253100002,51.07151650000014],[119.75861356600024,51.21040379800013],[119.92082267100011,51.33429184700009],[120.05098759200007,51.549547168]],[[112.23657965500001,48.87903593300007],[112.09956353400003,48.88908415900016],[112.05577060400003,48.997148181000114],[112.18814868300012,49.15051991000013],[112.39019060400028,49.50870478500019],[112.45906067900012,49.56497535000011],[112.61347159600018,49.622040353000045],[112.83501468500003,49.65224940300004],[113.03976463100003,49.63882142600005],[113.0892406590001,49.596237838000036],[112.8609776300002,49.38319249000011],[112.575691677,49.157477895],[112.39236453400008,48.96099166800019],[112.23657965500001,48.87903593300007]]]},"properties":{"objectid":200,"eco_name":"Daurian forest steppe","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Palearctic","eco_biome_":"PA08","nnh":2,"eco_id":726,"shape_leng":65.6698826658,"shape_area":26.2527953299,"nnh_name":"Nature Could Reach Half Protected","color":"#7FFC4A","color_bio":"#FEFF73","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":209403.0150896768,"percentage":1.9763768820608187}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-62.14647624799983,65.63833156100009],[-62.17702026799998,65.70496718900012],[-62.44782275099993,65.73829268600014],[-62.46882114899989,65.64806498900003],[-62.328633736999905,65.59664500700012],[-62.14647624799983,65.63833156100009]]],[[[-63.88989686199989,67.4839908960002],[-63.766656875999956,67.54901239300011],[-63.95432375799993,67.62980446900008],[-64.01847219399986,67.5004222660001],[-63.88989686199989,67.4839908960002]]],[[[-66.23393221399988,68.23089611400013],[-66.39761543199995,68.24117854700012],[-66.48321578699989,68.17230620700013],[-66.30994809999993,68.14635642400003],[-66.23393221399988,68.23089611400013]]],[[[-67.71260005499988,69.6527888440001],[-67.89196376999996,69.7111962800002],[-68.21797628199994,69.59791852400014],[-67.91961494799995,69.5196881230001],[-67.71260005499988,69.6527888440001]]],[[[-63.600417142999845,65.64808386400011],[-63.44739909599997,65.67106177100015],[-63.031563827999946,65.62060224700008],[-62.859717296999975,65.638567862],[-62.66307790899998,65.57268751700008],[-62.58299746999995,65.7622583960001],[-62.28421341799992,65.7943202690002],[-62.38074289599996,65.94177650900002],[-62.19731265399997,65.9980390550001],[-62.00115912699994,66.00923028700004],[-62.177889563999884,66.13647498800015],[-62.44497655299983,66.1708446020001],[-62.4967124019999,66.21289393700005],[-62.31345581099998,66.29438078100014],[-62.58792236499988,66.42710349000015],[-62.20833038899997,66.4032188160001],[-62.17640040499998,66.30074749600016],[-61.89291367199996,66.2716690640001],[-61.49333122599995,66.35310763600006],[-61.579474447999985,66.53092995300005],[-61.42635576199996,66.5300035480002],[-61.27931780299991,66.59463948600012],[-61.275521185999935,66.66958940400008],[-61.82816876499999,66.96805931500006],[-61.973361599999976,66.9517078180001],[-62.019149154999866,67.05083676900017],[-62.271299527999986,67.04735323800014],[-62.2703117019999,66.94368727200009],[-62.970532652999964,66.94601298100008],[-63.23729470899997,66.95734037200003],[-63.28696129299982,67.10782085200015],[-63.00985380899988,67.16717362100019],[-62.95687140699988,67.21863097600016],[-63.0781855059999,67.32474965500018],[-63.28854340099997,67.3013788720001],[-63.410655270999825,67.1969564210001],[-63.55384038799997,67.2315947730001],[-64.01209602399996,67.2044578230001],[-63.946111780999956,67.40910058800017],[-64.11818463299988,67.4770200850001],[-64.06281177499989,67.60666817700019],[-64.24615346699994,67.71284932100014],[-64.50156035899994,67.81015469500005],[-64.74549317799989,67.81307117700015],[-65.03031071099997,67.77132083400011],[-65.0363409869999,67.84944951200015],[-64.90896791199998,67.92621103500016],[-64.71100857499994,67.98356148800008],[-65.06642795099992,68.04046004999998],[-65.20746366999998,67.94066808000002],[-65.4086839339999,67.91794620400015],[-65.4643132889999,67.99716550000016],[-65.73506137599998,67.96216450200018],[-65.76286942699983,67.86550843200013],[-65.91947831599998,67.8685852110001],[-65.97950660399994,67.94091773000008],[-66.1376416629999,67.97403480700007],[-66.2892612789999,68.12517014800017],[-66.50091210499994,68.14931751600005],[-66.84047012799994,68.10271825300009],[-66.7844374579999,68.2434155570001],[-67.03876993699993,68.32845384600012],[-66.7932664469999,68.47691968300012],[-67.17080534899992,68.41048276500004],[-67.2235815169999,68.48210240000003],[-67.65914172499987,68.567525396],[-67.8553802319999,68.54004501100013],[-68.11408667499995,68.57239901600002],[-68.04388600799984,68.68184404300013],[-68.72781911099992,68.76459559600016],[-68.48955975699994,68.79210281800005],[-68.40857829099991,68.84445152100005],[-67.86266331799999,68.77715696600012],[-68.03886554799993,68.94491275800004],[-67.77681572799997,69.0435027530001],[-68.04932416699995,69.11813737000017],[-68.19039127399998,69.31396116800005],[-67.70156885399996,69.18148071100018],[-67.35632485899993,69.19411652500008],[-66.97508739899996,69.18249039700004],[-66.75961982899997,69.13962459400005],[-66.64723974899994,69.24835312100004],[-66.84274155999998,69.36689860300004],[-67.18164744499995,69.45862226200006],[-67.76516657799993,69.48666740700014],[-67.97996305999993,69.46180128400005],[-68.55185649499992,69.58193551900013],[-68.29080713799993,69.62764249700007],[-68.08711175899992,69.75946785600007],[-67.7673226899999,69.77841067800011],[-67.40277030799996,69.71399915600011],[-67.11057783099989,69.73197153100006],[-67.21038607199995,69.94168698400011],[-67.41253594299991,70.08497413800018],[-67.77566379999996,70.25034409900007],[-68.13641947799982,70.29798713700018],[-68.34911721699996,70.1928618720001],[-68.21152739599995,70.10372420500016],[-68.51676157899988,70.04878408800016],[-68.65703748699991,69.94935140900003],[-68.92102488699999,69.95236529200008],[-68.63367707799983,70.16600295400019],[-68.67023166999996,70.20804081900002],[-69.19012352999982,70.19494853000009],[-69.63033736499995,70.14776315900014],[-69.76690752499997,70.09285173400019],[-69.76114160199995,69.96557805600014],[-70.05319247599994,69.95942748500005],[-70.32164047799995,69.84421480600008],[-70.41327922099998,69.83931817500019],[-70.33368742699992,69.70437697400013],[-70.05893225099993,69.44614895100017],[-69.8518929249999,69.13353141700014],[-69.38520121999994,68.86286668200006],[-69.35138840499991,68.77274305100008],[-69.39438985999993,68.58266696200013],[-69.52893470199996,68.37009445900014],[-69.34772166999994,68.17329507600016],[-69.3848400899999,68.06354189100011],[-69.11473466899997,67.89548258800005],[-69.15764855599991,67.79976757700018],[-69.02778605399988,67.73090086800005],[-68.72473329299999,67.34170419300006],[-68.52037044599996,67.28068309200017],[-68.01283068599997,67.40834022200016],[-67.72442905999998,67.42783435799998],[-67.51437067699999,67.34792594200013],[-67.34063466299989,67.17017318000012],[-66.72766272899992,67.09355147100018],[-66.54403640399988,66.91513983800013],[-66.16397057899985,66.79728882900014],[-65.96572786099995,66.67547390200008],[-65.85141575899996,66.61978980000009],[-65.83165031899995,66.47396761500016],[-65.56852541099994,66.34845709100011],[-65.57233432999993,66.24447707000013],[-65.50956116599997,66.234763208],[-65.05582349599996,66.16739816800009],[-64.83562479899985,66.16710645600011],[-64.75734968999984,66.1721207870001],[-64.53219101899992,66.01758677100014],[-64.23479868999993,65.91360640500017],[-64.10037489699988,65.69984095500013],[-63.93991618199988,65.64605632500013],[-63.600417142999845,65.64808386400011]]],[[[-71.27007969499988,70.3407523670001],[-71.15901039299996,70.5465128460001],[-71.48888713899998,70.56758724400015],[-71.68293894999994,70.36491032600009],[-71.39875848499986,70.37073701499997],[-71.27007969499988,70.3407523670001]]],[[[-70.43049382099997,69.85689659000008],[-70.25541752599997,69.890838648],[-70.13191957999993,69.96969634200019],[-69.80355105899991,70.00339423999998],[-69.90015567299992,70.08310191200013],[-69.78567431599987,70.15817910700002],[-69.36958840599988,70.25840253299998],[-68.87382067999994,70.2961023960001],[-68.42498952999995,70.37547165200016],[-68.27169014599997,70.51067286900002],[-68.34831333699998,70.57852588300005],[-69.43357204599994,70.79007618400004],[-69.7631463429999,70.71551219200006],[-70.00699379199989,70.62347282400009],[-70.15858912099992,70.653899211],[-69.91731280199997,70.74505874700003],[-69.76242948499993,70.86023256800019],[-70.06951462399996,70.82431289300013],[-70.5867074229999,70.72561468400016],[-70.82086719799992,70.64503606500017],[-70.99256275199991,70.62995325300011],[-71.1997752929999,70.29926628900017],[-71.05181517499983,70.1309582500001],[-70.5998076869999,70.00857376800008],[-70.43049382099997,69.85689659000008]]],[[[-71.56462416799997,71.02115945600013],[-71.85229385399998,71.07431771],[-71.98507101699988,71.055984185],[-72.04589583699988,70.94990758699998],[-72.2130812929999,70.88591158700007],[-72.08690000399997,70.81289384400003],[-71.58476911299982,70.90789985200013],[-71.40284907299991,70.91878675400017],[-71.37381666499994,71.01876793800011],[-71.56462416799997,71.02115945600013]]],[[[-71.74286099699992,70.36778063500014],[-71.73253879099985,70.49117060600014],[-71.5798398039999,70.54333276600005],[-71.59305595299998,70.60767223300007],[-71.1552981339999,70.59104179000008],[-71.06170279999992,70.6749449720001],[-70.73157177999997,70.76913081600003],[-70.68326092399997,70.84273260600014],[-70.50186030499998,70.9236020400001],[-70.59945562899998,71.06279967300014],[-70.76423023799987,71.12092641500004],[-71.20621075999998,71.00535612400012],[-71.27154510399998,70.87808288300016],[-71.66044158099993,70.85490885100018],[-71.9176490449999,70.79064158400007],[-72.1671996639999,70.77816103500015],[-72.30943023099985,70.67120373900008],[-72.53725934399989,70.61277323900003],[-72.23003303399997,70.46225214100008],[-71.74286099699992,70.36778063500014]]],[[[-73.16244473699993,71.42821766100008],[-73.04559470399988,71.53016030200013],[-73.35839683199998,71.52285328200003],[-73.24074949999988,71.35654831500017],[-73.07025689799997,71.30312635400003],[-72.98581136899992,71.42226062000009],[-72.82505379299988,71.46351847200015],[-72.97936251099998,71.52377763400011],[-73.16244473699993,71.42821766100008]]],[[[-72.6014894889999,70.64033278100004],[-72.36905658899997,70.68155506500017],[-72.16554265599996,70.83093268100004],[-72.29892435599993,70.93966981000017],[-72.15575489599996,70.96469915600005],[-72.08185193399993,71.07095366800002],[-71.85920117099988,71.11386085200013],[-71.46402082799983,71.06561804300009],[-71.32593056299999,71.17737768400019],[-71.13288897099994,71.2509649590001],[-71.29711688599997,71.38563732700004],[-71.54428566599995,71.49802735000009],[-72.5767720149999,71.652073352],[-72.77745678699995,71.41924449200008],[-72.97894871799991,71.40832455300011],[-73.03292048899988,71.28340526600005],[-73.4004032339999,71.3453193630001],[-73.59505223199989,71.2317319890002],[-73.67962786699997,71.07919688400011],[-73.79362798299991,71.05870151000005],[-73.85692453999997,70.96066051500009],[-73.55751970599988,70.87261787799997],[-73.1617995549999,70.83420140800018],[-73.01082450699988,70.7558380960001],[-72.6014894889999,70.64033278100004]]],[[[-72.74554458099982,71.53107493300018],[-72.6511183099999,71.59549309900007],[-72.75050109099993,71.66062442300012],[-73.02030596999987,71.58167842400019],[-72.74554458099982,71.53107493300018]]],[[[-74.81606141999993,71.522801856],[-74.60089912299998,71.65103474700015],[-75.08241047099989,71.58010787600011],[-74.81606141999993,71.522801856]]],[[[-73.83477262799994,71.07592813200006],[-73.70301118599997,71.09981465300012],[-73.58952763799994,71.3056518750002],[-73.3653034699999,71.39869134400004],[-73.62711464099993,71.44866917500013],[-73.54742277799988,71.55041883600012],[-73.73298199599998,71.58895320300019],[-73.78008192399989,71.66203780300015],[-73.58514724399998,71.77601282000006],[-74.28390876199995,71.72288172800012],[-74.7382843829999,71.52746213600017],[-74.61985705199993,71.37369112900012],[-74.27838779599995,71.22871839400017],[-73.83477262799994,71.07592813200006]]],[[[-75.22553285499998,71.57486199800019],[-74.92359796699992,71.6475560040002],[-74.86827636399994,71.70845301700007],[-74.52322867999999,71.79165738000012],[-74.23419171899997,71.81912993700007],[-74.10202834099988,71.9566619200001],[-74.20690966199993,72.06293878300005],[-75.20690197199997,72.13217120500013],[-74.92303221999993,72.24819179900015],[-75.19016027299989,72.45913828700014],[-75.16043045799995,72.49181047200011],[-75.8047977839999,72.58946258300006],[-76.3925697379999,72.61449737300018],[-76.6565758879999,72.64367403500006],[-76.74107444699996,72.72407906200004],[-77.36683390299999,72.75874163300006],[-77.27820024999994,72.49760710200013],[-77.49553486199994,72.20001342900014],[-77.50449492399991,72.18583835600015],[-77.55667213099991,72.10280122900014],[-77.41750688699994,71.8973121320002],[-77.11730378199991,71.79219395899997],[-76.65729143199997,71.76197684800013],[-76.27095974699995,71.70474099100011],[-76.04553350899994,71.6279970540001],[-75.7612541659999,71.57521758900003],[-75.22553285499998,71.57486199800019]]],[[[-77.68703149699996,72.8983414760001],[-76.97182585999997,72.83920295700017],[-76.30909154899996,72.82062535600005],[-76.11677245599992,72.84899138500003],[-76.05733689399989,72.91564169900005],[-76.32640077099995,72.97102280500019],[-76.28557211199995,73.10185138600013],[-76.51981265299992,73.1251598410002],[-76.69398716299997,73.30556689300005],[-77.04247821399997,73.37078932200006],[-77.18834726799986,73.51049843600003],[-77.75227513199997,73.59215087000013],[-78.13682026299989,73.67196167800012],[-78.80334591499997,73.65842126700005],[-78.96227445399995,73.63529066000012],[-79.46812402099994,73.63687568400019],[-79.97182294199996,73.71725337100008],[-80.16170093199997,73.70862810500017],[-80.51472549699992,73.54277602300004],[-80.35051862399985,73.42022606299997],[-79.437194719,73.12636538400017],[-79.23936006299994,73.0145580750002],[-79.00483461799996,72.96715200200009],[-78.29354534299989,72.96230140400019],[-77.88160688699998,72.9361024530001],[-77.68703149699996,72.8983414760001]]]]},"properties":{"objectid":201,"eco_name":"Davis Highlands tundra","biome_num":11,"biome_name":"Tundra","realm":"Nearctic","eco_biome_":"NE11","nnh":2,"eco_id":415,"shape_leng":155.688051038,"shape_area":22.4957385794,"nnh_name":"Nature Could Reach Half Protected","color":"#4CB9BB","color_bio":"#9ED7C2","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":98049.67910575139,"percentage":1.147430015913212}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[80.25354749600018,9.819979816],[80.02261365800018,9.813389294000046],[79.91059153300017,9.765512701000091],[79.94888258200018,9.685788228999968],[79.99858056200014,9.680898729000091],[80.11856851200008,9.605373926000084],[80.09372756800013,9.572247302999983],[80.1842725750002,9.481943864000073],[80.14872760500015,9.43227622600017],[80.0556105280001,9.390539377000152],[80.11789661800009,9.304896443000075],[80.07810956800006,9.06162343800014],[79.9453425690001,8.944481815000188],[79.91889950800004,8.818990978000102],[80.04799657500007,8.897365125000135],[80.15014649400018,9.06652534300008],[80.1796645390001,9.367967750000162],[80.21881858800009,9.41012872300007],[80.3782506010001,9.399373735000154],[80.43430357300002,9.461699053000189],[80.49413259200003,9.412728789000084],[80.62698357800008,9.45178594400005],[80.35376756500011,9.668039716000067],[80.25354749600018,9.819979816]]],[[[81.15148150500005,15.998774682000146],[80.91430650200016,16.14681535300008],[80.73081960100006,16.310174958000175],[80.66589354600006,16.42518674000013],[80.54811858600004,16.496902304000173],[80.27124756100017,16.566668907000178],[80.21494262900012,16.599455727000077],[80.18125156900015,16.688260147000108],[80.18250265200004,16.82003288599998],[80.10553750200012,16.86838909100004],[79.93448649500016,16.62493419800012],[79.85217251800015,16.56424888400005],[79.82792652200004,16.500762841000096],[79.73922754600005,16.408667685000182],[79.70372063100007,16.329542519000086],[79.42569759600008,16.13083609300014],[79.3258436480001,16.022882042000106],[79.2346195400001,15.81412621700008],[79.25084656900009,15.740440067000065],[79.34155250800012,15.630447872000161],[79.36427249500014,15.540634774000011],[79.21441663900015,15.381982949000133],[79.14196061800004,15.191155344000038],[79.12761649900011,15.014277741000058],[79.23320752500007,14.794009875000086],[79.35671252100008,14.620042468000065],[79.36945351700018,14.523938584000064],[79.25570656400015,14.436884305000035],[78.98381757400006,14.408495134000077],[78.86506662500005,14.48715108100015],[78.7072065550002,14.562245055000119],[78.62174953100003,14.650791313000013],[78.54228959200009,14.697928286000092],[78.47743964500012,14.77579214300016],[78.3955685680001,14.827968820000137],[78.10218049900016,14.896205223000152],[77.90664662300014,14.95531038100006],[77.7501065350001,15.041844982000043],[77.76880656100013,15.154897578000146],[77.83988962600012,15.27297981800018],[77.7901916450001,15.410481252000068],[77.77393360300016,15.581530080000107],[77.78220352400007,15.759039846000064],[77.86142759700004,15.934677598],[78.13760359500009,16.13256611800017],[78.18966661300016,16.216669631000116],[78.19159663000005,16.339073078000013],[77.97344251300007,16.39641837199997],[77.79174062100003,16.407918846000143],[77.72802759600017,16.429016264000097],[77.54386159200016,16.580547997999986],[77.39909355200012,16.752217254000072],[77.36450160500016,16.848061132000055],[77.32173964900016,17.167890416999967],[77.24204250200006,17.407844692000026],[77.25256363500012,17.554186686000037],[77.3028335960002,17.755325205000076],[77.27179758800014,17.925314896000145],[77.30834151200008,18.11054389200018],[77.29519650900005,18.18146870700008],[77.19699849000011,18.347529631999976],[77.10188249700002,18.42810369300014],[76.88889364300013,18.64264085200017],[76.7024304950001,19.223676728000157],[76.57618763400018,19.40422526900005],[76.52111065100007,19.448973401000103],[76.34420756700001,19.53283668900019],[76.13641364900008,19.670908763],[75.97329762200013,19.715258083000094],[75.8385466260001,19.712898074000123],[75.57592751800019,19.769632829999978],[75.41280361200018,19.852800085000126],[75.17701749000014,19.86977126000005],[74.71826151200008,20.00343244100003],[74.54110764100017,20.076128352000126],[74.48858663600015,20.126094553000144],[74.49752057100011,20.314764656000023],[74.62084150100014,20.569650452000133],[74.79345657100015,20.627857238000104],[75.0059125040001,20.616125591000127],[75.1070705080001,20.639485285000035],[75.50382957200009,20.620186623000052],[75.76406050800011,20.719301958000074],[75.92980157900007,20.859233976000155],[75.94016261800016,20.99922718200014],[75.8417126390001,21.040913906000185],[75.69307752300006,21.061882914000023],[75.56934353300011,21.047762760000182],[75.46518748900019,21.072771174000138],[75.2638625570001,21.065341790000048],[75.03453050000007,21.093039118000036],[74.8027576340001,21.361636368000063],[74.73368052600006,21.49591797700009],[74.68434162600016,21.92165495600011],[74.61723359500007,21.957022900000084],[74.48484059600014,21.893126311000174],[74.474868646,21.82449009100003],[74.52748151700018,21.695837097000037],[74.46138752800016,21.564094198000078],[74.1827465790002,21.421282997000105],[74.02449758800003,21.286960483000144],[74.01534253800014,21.1985954430001],[74.17993964700008,21.047782541000174],[74.13758857300019,20.963966191000054],[74.03237959500018,20.947789118000117],[74.10791764100014,20.75105931200011],[74.08347349700017,20.65945433100012],[74.125556518,20.572980080000093],[74.09024054300016,20.508821808000107],[73.86313656400006,20.386989671000038],[73.91475651500014,20.26349758300006],[73.89650760300009,20.148043237000024],[73.85449951600003,20.08471695300011],[73.85890152400015,19.96656346600014],[73.78415657300019,19.779894459000047],[73.71408855600015,19.67701933800015],[73.70260652200011,19.524400136000168],[73.74620851200012,19.40955465100012],[73.81345350400011,19.346087551000096],[73.78344763100012,19.279534234000096],[73.80873851500019,19.191618463000168],[73.9159314900001,19.108056420000082],[73.90824863799998,18.93887541600003],[73.9208525050002,18.819701349000127],[73.99756653300011,18.72450522400004],[73.9943775540001,18.652499312000145],[73.92906962000018,18.55099832000019],[73.91886163600009,18.413824451000096],[74.009460622,18.31219169500008],[73.99420153400013,18.221776106000107],[74.03813963900018,18.11036301000013],[73.97586863600009,18.035437512999977],[73.96759754100009,17.893595930000117],[74.01154352400005,17.753225371000042],[74.08537250100005,17.601373616000046],[74.1587066100002,17.36815889500008],[74.27417755300007,17.12521194500016],[74.26386261500016,16.886217734000184],[74.37358055400006,16.683971463000148],[74.42671159400004,16.135714864000136],[74.42671159400004,16.010352773000022],[74.3953706530001,15.881081027],[74.3518905360001,15.81256634400006],[74.43087756800014,15.744300772000031],[74.523956591,15.71082177400018],[74.80972249300004,15.413032032999979],[74.96130351200003,15.326657359000137],[75.0459676070002,15.143549151000059],[75.14141049500017,15.126470353000059],[75.24059254900016,14.978388946000052],[75.27364356700008,14.839409112000055],[75.40457962400006,14.651592287000028],[75.39192948800019,14.552706617000126],[75.44920353499998,14.470452151000131],[75.661239534,14.375967315000139],[75.81823761000015,14.378828059000057],[75.9085465820001,14.3178220530001],[76.08908858500018,13.93852802500004],[76.12390852000004,13.799557412000013],[76.3386386300001,13.465378476000183],[76.41325349400006,13.300400660000093],[76.43943051300016,13.155879215000141],[76.55274965300003,12.904276274000154],[76.65569250000004,12.97579234900013],[76.70120958700016,13.036547233000078],[77.00367760400019,13.198937219000129],[77.10111957600009,13.179387771000108],[77.24743659200016,13.090073563999965],[77.43376160600013,13.048915401999977],[77.55110154500011,13.091194559000087],[77.72469360999997,13.095303368000145],[77.85984056700005,13.166358606000074],[77.97873652300007,13.123521548000099],[78.10041862300005,13.003959567000095],[78.18411259700014,12.884438489000047],[78.24346954700007,12.834721733000151],[78.32936058500007,12.678880360000107],[78.39938350700004,12.618086416000097],[78.57586649000018,12.584467776000054],[78.63404058700007,12.719228495000095],[78.75208259400006,12.841340252],[78.99817661200012,12.905405987000108],[79.16909049100008,12.97061166200018],[79.2797926340001,12.936905012000182],[79.3351665040002,12.774965972000132],[79.33896652300012,12.58166889100005],[79.27822153000017,12.4631469360001],[79.17964951000005,12.205723434000049],[79.01127652100018,11.91925412300003],[78.96376051800019,11.770283228000153],[78.90805053400004,11.668181254],[78.81839753000014,11.55564783400007],[78.72792863100005,11.497154052000155],[78.70874061100011,11.42171625200018],[78.7521746270001,11.320826134000129],[78.75466958400006,11.22877540200011],[78.59107260400015,11.196445899000082],[78.52857964800012,11.154219546999968],[78.53054855700003,11.037954839000065],[78.59203350500019,10.880244804000085],[78.43003864200006,10.455075447000127],[78.4377976020001,10.354002268000158],[78.34593160800006,10.172834974000068],[78.3064875450001,10.02501541800018],[78.24075364300006,9.918139111000187],[78.05902057100008,9.786643143000163],[77.9901885490001,9.702663179000183],[77.9676135690001,9.57816593300015],[77.97466258200006,9.350204150000138],[77.95171360200015,9.157632774000092],[77.92548360900014,9.06664134800019],[77.90032163900014,8.820217921000108],[77.8704686530001,8.721377680000103],[77.75321957300008,8.59683282500015],[77.61593657200007,8.538956956999982],[77.65611254300006,8.323155472000167],[77.7348635410001,8.228339215000062],[77.78368360100006,8.210564551],[77.95876362100006,8.319066779000025],[78.059646531,8.363412411000127],[78.13363660800002,8.486684726000135],[78.12191049300014,8.641971385000147],[78.17434650600006,8.760554024999976],[78.1691205570001,8.865456393000045],[78.19503052800013,8.92758222100008],[78.40628064000003,9.101605787000096],[78.65200049100014,9.150075148000042],[78.86585955300012,9.248704332000102],[79.07656853000009,9.288593306000053],[78.98329957200019,9.354201815000067],[78.90075660200011,9.47515016300008],[78.7773436380001,9.591964054000073],[78.8048936130001,9.890973866000024],[78.86918649900002,10.06802128600009],[78.90440356800008,10.246088785000097],[78.93044262000018,10.284548141000073],[79.07749154500016,10.355450158000053],[79.19171157200014,10.659321138000053],[79.29805763900015,10.908502714000122],[79.27699257500018,11.083571670000083],[79.36723365400007,11.316254308],[79.51730358300011,11.572366713000065],[79.59452052500006,11.826620514000183],[79.62310750900014,12.02611567700012],[79.61746950600019,12.186836827000093],[79.64147158800017,12.47403620200015],[79.63878653000006,12.662742514000115],[79.52887765100013,12.99498992500014],[79.56009655200012,13.235353739000175],[79.64665261000005,13.391763573000105],[79.77176659700001,14.011692150000101],[79.92239358800015,14.206610291000118],[80.00081651800019,14.202280535000114],[80.05571764900014,14.453544176000094],[80.05001862500006,14.641971874000149],[80.11459364600017,14.696058451],[80.05426758000016,15.02257699800009],[80.05287953700014,15.098951224000132],[80.09484856400019,15.222904149000158],[80.11331959600011,15.350175973000091],[80.15309860000019,15.400367648000099],[80.09185756600016,15.471247368000093],[80.13124865500004,15.56286140200018],[80.17062365100008,15.772219048000181],[80.26648764500015,15.763518464000072],[80.59207161000018,15.966814653000085],[80.6783825820001,15.891820424000116],[80.87747960500013,15.838403729000106],[80.94737964800015,15.93385784800006],[81.09156062000005,16.014932645000044],[81.15148150500005,15.998774682000146]]]]},"properties":{"objectid":202,"eco_name":"Deccan thorn scrub forests","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Indomalayan","eco_biome_":"IN13","nnh":4,"eco_id":315,"shape_leng":55.5937841427,"shape_area":28.6472841235,"nnh_name":"Nature Imperiled","color":"#C9A63E","color_bio":"#CC6767","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":341002.58203401143,"percentage":1.2925489816368474}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[39.954071464000094,15.87931110400001],[40.00744055000007,15.858687850000024],[39.9819485000001,15.733810317000064],[40.12038049300014,15.594229501000086],[40.300109620000114,15.554131985000083],[40.41564158199998,15.554661721000059],[40.31212960400006,15.681374807000111],[40.247138506000056,15.613589015000116],[40.15911058500012,15.62501723700018],[40.13370855700015,15.76824820500019],[40.09368161700013,15.82530549600017],[39.954071464000094,15.87931110400001]]],[[[42.096772998000176,13.641880737000179],[42.06420502900011,13.719311585000014],[41.963710536,13.847393100999966],[41.85589948000006,13.861902175000182],[41.79917947600012,13.925677897000185],[41.6816905070001,13.942516806000128],[41.648399599000186,14.024401294000086],[41.54304846400004,14.13248425900008],[41.480789531000084,14.24654670700005],[41.33852047100004,14.407696339000154],[41.288989458000174,14.512159495000049],[41.18376153700012,14.617762423000158],[40.90024148200007,14.719626854000069],[40.74597959500011,14.732414956000184],[40.74554055100003,14.807030994],[40.686069607000036,14.881575282000142],[40.61902946900017,14.885674871000163],[40.54280653700005,14.998432675000174],[40.364379539000026,14.957640383000069],[40.29722959800006,14.896474283000032],[40.16062955400014,14.977489903000048],[40.07727856800017,15.151607848000083],[40.0189894720001,15.232402690000129],[40.085571455000036,15.319087159000105],[39.88811158600009,15.462368753000078],[39.82849848400008,15.467627391000121],[39.77476847300005,15.389342427000088],[39.78168153200011,15.26014176000001],[39.84601004000018,15.156593572000133],[39.77750047100011,15.05590512200007],[39.6933285610001,15.120899908000013],[39.712341567000124,15.23879221400017],[39.653499601000135,15.340165634000016],[39.61436047200016,15.482286502000022],[39.54014961500013,15.528824505000102],[39.45917858700011,15.520294912],[39.43872054000019,15.589149733000056],[39.47269055000015,15.645736129000056],[39.42221053800017,15.750649226],[39.43059160300004,15.799026218000108],[39.30205947600018,15.891901393000182],[39.234981619999985,16.075269775000095],[39.19435151700009,16.28650630800007],[39.186569591000136,16.424557762000177],[39.146930565000105,16.53004015800002],[39.14767051900003,16.63749347400011],[39.11499048500002,16.78051539700016],[39.062271499000076,16.890188745000046],[38.931541469000194,17.369138069000087],[38.81612048300008,17.612893033000034],[38.60076960900017,17.924304205999988],[38.54182856900019,18.08276559400008],[38.49369850700009,18.051106475000097],[38.410278454000036,18.10428411900017],[38.391590498000085,18.181384720000153],[38.276569496000036,18.017718338],[38.16141298200017,17.792106526],[38.25827029600015,17.72679723000016],[38.27056822400016,17.463292155000033],[38.34860927500017,17.231237321000037],[38.33269824400003,17.05938802100019],[38.452487861000066,16.840117373000112],[38.55857829700011,16.820411915000022],[38.55883025700018,16.76383658300017],[38.48747930600007,16.635294566000027],[38.555179267000085,16.48171295399999],[38.584689266000055,16.11180649000005],[38.64739931300005,16.05645106100019],[38.802501235000136,15.981175535000148],[38.88714923700013,15.730710522000152],[39.00746123100009,15.607068398000024],[39.11264020200019,15.3950121150001],[39.25872034600002,15.200824539999985],[39.444179341,15.219643421],[39.51744824000008,15.08489209000004],[39.70779019600019,14.94609095800007],[39.72788932999998,14.874486874000013],[39.719089338000174,14.752493638000033],[39.74618819900013,14.61173298500006],[39.70750000000015,14.4625],[39.6075,14.38000000000011],[39.73666666700018,14.343333333000032],[39.80666666700017,14.276666667000143],[39.774166667000145,14.12],[39.87,14.08333333400003],[39.83833333300015,14.011666667000043],[39.84666666700008,13.831666666000046],[39.79083333400007,13.7575],[39.80666666600007,13.51916666600016],[39.72,13.444166667000047],[39.77166666700009,13.286666667000134],[39.70916666700015,13.161666667000077],[39.77916666700014,13.135833333000107],[39.764166666999984,13.0183333330001],[39.73000000000019,12.995000000000175],[39.70083333300005,12.879166667000106],[39.62416666700017,12.79166666600014],[39.62250000000017,12.674166667000065],[39.58416666700009,12.649166667000145],[39.59166666700014,12.545833333000076],[39.5125000000001,12.354166667000129],[39.505,12.266666667000038],[39.6025,12.086666666000042],[39.61000000000013,11.959166666000044],[39.6975,11.774166666000099],[39.6125,11.685000000000173],[39.64083333300016,11.6225],[39.62666666700005,11.499166666000065],[39.58166666700015,11.454166666000162],[39.62666666700005,11.394166666000103],[39.808333333000064,11.399166667000031],[39.914166666000085,11.199166667000156],[39.843333333000146,11.143333333000044],[39.86083333300019,11.015000000000157],[39.95666666699998,10.9575],[39.865,10.91583333400007],[39.81666666700016,10.96],[39.730833333000135,10.97416666600003],[39.68000000000012,10.88000000000011],[39.75083333300012,10.814166666000062],[39.781666667000025,10.659166666000033],[39.899166666000156,10.481666667000127],[39.8958333330001,10.21],[39.77583333300004,9.9725],[39.869166667000115,9.803333333000182],[39.81666666700016,9.79],[39.84666666600015,9.7],[39.775,9.58916666600004],[39.81750000000011,9.4725],[39.723333333000085,9.456666666000103],[39.68833333300017,9.40833333300003],[39.649166665999985,9.245833334000054],[39.585,9.154166667000084],[39.415,9.069166667000104],[39.334166666000044,9.070833333000166],[39.440833333000114,8.825000000000102],[39.30916666700017,8.735833334000176],[39.317500000000166,8.649166667000031],[39.24750000000017,8.558333333000064],[39.145833333999974,8.538333334000185],[39.133333333,8.598333333000141],[38.98083333400018,8.59583333300003],[38.89,8.630833334000044],[38.890833334000035,8.52],[38.8275000000001,8.456666667000036],[38.735,8.484166665999965],[38.72583333400007,8.364166666000074],[38.68916666600012,8.310833333000176],[38.674166667000065,8.1375],[38.579166666,8.000833334000106],[38.575,7.920833333000189],[38.48083333300019,7.791666667000186],[38.24083333400017,7.5875],[38.28416666700008,7.510000000000161],[38.33916666700014,7.580833333000101],[38.37166666700011,7.296666665999965],[38.40583333300003,7.176666666000074],[38.29833333400012,7.002500000000168],[38.36416666700006,6.960833334000029],[38.55416666600007,6.9575],[38.60166666600003,6.994166667000172],[38.62333333300012,7.104166667000072],[38.52333333300004,7.146666666000158],[38.53166666700014,7.220833334000133],[38.67583333300013,7.440000000000111],[38.81750000000011,7.475],[38.85416666600008,7.595833333000087],[38.834166667000034,7.741666667000118],[38.730833333000135,7.760000000000105],[38.76000000000016,7.828333334000035],[38.864166666000074,7.79],[38.90833333300003,7.862500000000125],[39.069166666000115,7.953333334000092],[39.105,8.072500000000161],[38.9566666660001,8.178333333000012],[38.98416666700007,8.237500000000125],[39.073333333000164,8.167500000000132],[39.1525,8.245833333000121],[39.27583333300015,8.25],[39.396666667000034,8.21083333300004],[39.43166666700017,8.2875],[39.668333334000124,8.435833333000062],[39.79250000000013,8.4275],[39.92416666700018,8.491666667000118],[39.98333333300019,8.550833333000128],[40.06166666700011,8.538333333000082],[40.11500000000018,8.661666667000077],[40.17083333300019,8.679166666000071],[40.31333333400005,8.796666667000125],[40.44583333300005,8.798333333000187],[40.45416666700015,8.8900000000001],[40.529166666000094,8.965000000000146],[40.71,9.050833333000071],[40.745833333000064,9.095],[40.843333333000146,9.08083333400009],[40.8958333330001,9.113333333000185],[40.90916666700019,9.200000000000102],[40.983333334000065,9.170000000000186],[41.02583333300015,9.361666667000065],[41.09666666700019,9.39083333300016],[41.16,9.300833333000185],[41.2091666660001,9.387500000000102],[41.293333333000135,9.376666667000052],[41.40666666699997,9.440000000000111],[41.47250000000014,9.443333333000112],[41.52916666700014,9.495000000000118],[41.819166666000115,9.464166667000086],[41.95833333400009,9.490000000000123],[42.071666667000045,9.559166667000056],[42.17166666700018,9.535833332999971],[42.17916666700006,9.59583333300003],[42.26000000000016,9.625],[42.30833333400017,9.59333333300009],[42.3841666670001,9.626666666000062],[42.566666667000106,9.645000000000152],[42.64500000000015,9.600833334000072],[42.68416666700011,9.69250000000011],[42.775,9.73166666700007],[42.8725,9.6991666670001],[43.00843865100006,9.745173154000042],[43.201666666000165,9.87177626100015],[43.31295159399997,10.006844001000104],[43.47891886300016,10.160037034000027],[43.71646000200013,10.409081535999974],[43.97118496700017,10.66371652500004],[43.88251876800018,10.651734352000062],[43.82308960000012,10.693817139000089],[43.828660006,10.79390044500019],[43.69219962100004,10.94001162900014],[43.564090729000156,11.126223564000043],[43.467178345000036,11.201981544000091],[43.483699612,11.348502340000152],[43.325157166000054,11.37293720200006],[43.279978242000084,11.468968092000011],[43.191236995000054,11.528020684000012],[43.09682846100003,11.525362968000024],[43.03306955300019,11.59715518600018],[42.80368050000004,11.582675951000056],[42.66025959900003,11.51846152000013],[42.70341148000006,11.636273528000174],[42.771739582000066,11.732805728000073],[42.87582052300007,11.779142732000082],[42.946361615000114,11.765703692000159],[43.08821161100008,11.844209642000123],[43.08120346100003,11.920044899000061],[43.23453521700003,12.027014732000168],[43.32615493500009,12.067356400000108],[43.03908960400014,12.433408111000062],[42.83686059900009,12.70236980499999],[42.73896047300019,12.787135154],[42.47338858800009,12.964272093000147],[42.3783495400001,13.010799032000136],[42.30430950700003,13.084734124000136],[42.1520306110001,13.354175934000068],[42.10203959900008,13.518215143000191],[42.096772998000176,13.641880737000179]],[[39.91000000000014,10.848333333000028],[39.944166666,10.836666666999974],[39.9875,10.720000000000141],[39.92916666600007,10.705000000000155],[39.88,10.785000000000139],[39.91000000000014,10.848333333000028]]]]},"properties":{"objectid":204,"eco_name":"Djibouti xeric shrublands","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Afrotropic","eco_biome_":"AF13","nnh":3,"eco_id":92,"shape_leng":114.343417483,"shape_area":19.6616982241,"nnh_name":"Nature Could Recover","color":"#F5A27A","color_bio":"#CC6767","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":238175.3845052536,"percentage":0.9027889139634873}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[30.945764542000063,-28.52565956099994],[30.969753265000122,-28.62625503499993],[30.929346085000077,-28.71556472799989],[30.861547470000062,-28.69042968799988],[30.704095840000093,-28.69698905899986],[30.7214965820001,-28.60964202899993],[30.78426551800004,-28.54721832299998],[30.656162262000123,-28.461137771999972],[30.629262924000045,-28.387998580999977],[30.512613297000144,-28.50235748299997],[30.544408798000063,-28.641969680999978],[30.61554908800008,-28.682067870999845],[30.569980621000127,-28.741048812999964],[30.465158463000023,-28.717161178999845],[30.43374443100015,-28.652215957999886],[30.35148048400015,-28.588825225999983],[30.340662003000034,-28.518909453999925],[30.216213226000036,-28.554195403999984],[30.037574768000127,-28.538610457999937],[30.04174804700017,-28.488918303999924],[29.82482528700001,-28.532253264999895],[29.813341141000024,-28.607368468999937],[29.684209824000163,-28.74322318999998],[29.852363586000138,-28.70237922699988],[29.868396759000063,-28.759983062999822],[29.79032707200014,-28.863153457999886],[29.936775208000086,-29.022319793999884],[29.99656295800014,-29.012233733999892],[30.110574722000024,-29.079038619999892],[30.195707321000043,-29.002458571999966],[30.295862198000066,-28.98181724499989],[30.33047676100017,-29.064447402999974],[30.445600510000133,-29.027971267999874],[30.461233139000115,-28.960668563999945],[30.52602386500007,-28.931390761999978],[30.61593246500007,-28.972133635999967],[30.71323585500005,-28.95504379299996],[30.782396317000064,-28.898927688999947],[30.88565444900007,-28.896385192999958],[30.92542457600007,-28.98635673499996],[30.847520828000143,-29.009168624999973],[30.836156845,-29.108547210999916],[30.715833664000115,-29.13683700599995],[30.68942832900018,-29.277711867999983],[30.63150215100012,-29.354537963999974],[30.53135490400018,-29.337444304999963],[30.468278885000075,-29.279548644999977],[30.345546722000165,-29.352558135999857],[30.284276962000035,-29.451686858999892],[30.357757568000125,-29.542352675999894],[30.285324097000114,-29.652585982999938],[30.353887558000167,-29.726865767999982],[30.296945572000027,-29.871767043999967],[30.233325957999966,-29.84751701399989],[30.15943718000011,-29.938598632999913],[30.060312271000157,-29.918796538999914],[30.12977981600011,-30.11171531699995],[30.192531586000086,-30.17794609099991],[30.216938019000054,-30.26846885699996],[30.198755264000056,-30.34623718299997],[30.095405579000158,-30.31138801599991],[30.091531754000187,-30.262914657999943],[29.93218803400015,-30.220746993999853],[29.90915679900013,-30.25959396399992],[29.981348038000192,-30.356626510999945],[29.85999679600019,-30.42089462299998],[29.832025528000088,-30.532444],[29.89209747300015,-30.611959456999955],[29.84448432900018,-30.66126060499994],[29.768917084000066,-30.629341124999883],[29.711801529000013,-30.733675002999973],[29.870813370000064,-30.82876777599995],[29.875242233000108,-30.877504348999935],[29.759162903000117,-30.970546721999938],[29.523183823000124,-31.01637268099995],[29.53746795700016,-30.901880263999942],[29.444892883000136,-30.937900542999955],[29.369821548000175,-30.87831497199994],[29.319324493000124,-30.947999953999897],[29.39349746700009,-30.979042052999944],[29.421302795000145,-31.054273604999878],[29.206851959000062,-31.01200103799988],[29.155982971000014,-30.945194243999936],[29.028194427000187,-30.93576431299988],[29.191082001000154,-31.05993652299992],[29.118299484000033,-31.15709114099991],[28.998430252000105,-31.065362929999935],[28.980937958000027,-30.99500656099991],[28.813585281000144,-31.07403182999991],[28.938739777000023,-31.16253471399989],[28.896787643000096,-31.237916945999928],[28.68533706700009,-31.167774199999826],[28.615547180000135,-31.264949798999908],[28.766847610000127,-31.27308464099997],[28.919229507000125,-31.25183296199998],[28.99661064100013,-31.33007621799993],[29.162448882999968,-31.424331664999954],[29.130971909000095,-31.557291030999977],[28.96284103400012,-31.51805114699988],[28.85344314600013,-31.617988585999967],[28.744647980000025,-31.605091094999977],[28.793952942000146,-31.72322082499994],[28.70397758500019,-31.789670943999965],[28.564826965000066,-31.853876113999945],[28.496450424000045,-31.784500121999884],[28.330545425000025,-31.806217193999885],[28.39284324600004,-31.902027129999965],[28.326278687000126,-31.969758986999977],[28.560482025000113,-32.011844634999875],[28.48464965800008,-32.1275863649999],[28.371646881000117,-32.18341445899989],[28.169610977,-32.22443008399989],[28.115287781000177,-32.26915359499992],[28.07155799900005,-32.40280532799994],[27.99090385400001,-32.40245437599998],[27.878976822000027,-32.26353073099989],[27.858886719000168,-32.17424774199992],[27.714334488000134,-32.146556853999925],[27.50073814400008,-32.16391754199998],[27.455318450999982,-32.074596404999966],[27.379449844000135,-32.06429290799991],[27.228603363,-32.107734679999965],[27.155130386000167,-32.243957519999924],[27.206190109000033,-32.279808043999935],[27.276931763000164,-32.415401458999895],[27.510730743000067,-32.33288955699982],[27.629379272000108,-32.32746505699998],[27.68950653100012,-32.41790389999983],[27.613115311000115,-32.494651793999935],[27.65016174300007,-32.57692718499993],[27.779726028000027,-32.588649749999945],[27.441707611000027,-32.69552612299998],[27.309408188000077,-32.67638397199994],[27.245859146000043,-32.61757278399995],[27.175355911,-32.64665985099998],[27.014902115000154,-32.65358352699991],[27.016716003000113,-32.77205657999997],[26.946699142000057,-32.78830337499994],[26.90486145000017,-32.66911697399996],[26.769319534000033,-32.79149246199995],[26.766351700000143,-32.794147490999876],[26.752054214000054,-32.79637908899997],[26.745121002000133,-32.78804016099991],[26.751956940000184,-32.78319930999987],[26.728908539000145,-32.77204894999994],[26.712511063000193,-32.77275466899988],[26.732110977000104,-32.886230468999884],[26.97377395600006,-32.97665405299989],[27.073297501000127,-32.93493270899995],[27.106060028000115,-32.87499618499993],[27.235322952000104,-32.85541534399994],[27.21154594400008,-32.93361663799993],[27.347307205000163,-32.96468353299997],[27.462511063000022,-32.90019607499988],[27.623128891000135,-32.88071823099989],[27.703741074000106,-32.91531753499987],[27.765813828000034,-32.89205932599998],[27.826925278000033,-32.78471755999993],[27.94686889600007,-32.8410415649999],[27.995456696000133,-32.796558379999965],[28.135890961000143,-32.80305099499998],[28.176179886000057,-32.70287322999991],[28.348260880000055,-32.703769683999894],[28.35779571500018,-32.69976043699995],[28.36332511900008,-32.69586181599993],[28.310588837000125,-32.64287948599997],[28.312664032000157,-32.63182067899993],[28.424903870000094,-32.50048446699998],[28.561185837000096,-32.460124968999935],[28.613262177000024,-32.39313888499987],[28.77980423000008,-32.34358978299997],[28.806713104000096,-32.20525741599994],[28.93295478800019,-32.12040710399998],[28.910797119000165,-32.03156661999992],[29.09552002000015,-31.92408561699989],[29.102895477000118,-31.84687581199995],[29.208538055000133,-31.81083297699996],[29.179838181000093,-31.72444915799997],[29.267419814999982,-31.708040236999977],[29.233539581000173,-31.63996314999997],[29.35787773100003,-31.622262954999883],[29.430627823,-31.576761245999876],[29.480712891000053,-31.497966765999877],[29.61209487900004,-31.39286994899993],[29.704759598000123,-31.37151336699992],[29.79981994600007,-31.28704070999987],[29.97343635600015,-31.052656173999935],[30.094425201000035,-30.98316383399998],[30.177885056000036,-30.791980742999954],[30.16139030500011,-30.68506622299998],[30.21001243600017,-30.65351104699988],[30.170104980000076,-30.555807113999947],[30.31700515700004,-30.431158065999966],[30.38825607300015,-30.447376250999923],[30.411815643000125,-30.356435775999955],[30.530370712000092,-30.332046508999895],[30.564723969000056,-30.26193237299998],[30.534488678000116,-30.200740813999914],[30.622501373000034,-30.14462661699997],[30.59272003200016,-30.09284019499995],[30.718891144000168,-30.018306731999928],[30.78633499100016,-29.802495955999973],[30.845888138000078,-29.800577163999947],[30.872810364000088,-29.669048308999947],[30.833381653000117,-29.580619811999952],[30.975294113000075,-29.50419235199996],[30.978391647000024,-29.455322265999882],[31.13388061500018,-29.36468696599991],[31.101854323999987,-29.283473968999942],[31.04432296800013,-29.282873153999958],[31.05944252000006,-29.17826652499997],[31.199270248,-29.252355575999957],[31.219120026000155,-29.186752318999936],[31.304733276000093,-29.194154738999885],[31.356584549000104,-29.14381027199994],[31.305418015000157,-28.943418502999975],[31.51000404400014,-28.896244048999904],[31.526025772000082,-28.81970786999989],[31.642295837,-28.758882522999954],[31.574476242,-28.715274810999972],[31.547729492000144,-28.625368117999926],[31.61972618100009,-28.58401489299996],[31.642641068000103,-28.51844978299988],[31.54300308200004,-28.479877471999885],[31.329368591000105,-28.534818648999874],[31.278190613000106,-28.586200713999972],[31.17961120600006,-28.607372283999894],[31.10749435400004,-28.67489433299994],[30.945764542000063,-28.52565956099994]]]},"properties":{"objectid":205,"eco_name":"Drakensberg Escarpment savanna and thicket","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Afrotropic","eco_biome_":"AF07","nnh":4,"eco_id":40,"shape_leng":116.977467241,"shape_area":3.29209561164,"nnh_name":"Nature Imperiled","color":"#FCD135","color_bio":"#FEAA01","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":35081.597235201676,"percentage":0.16363436468832593}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[26.058147430000076,-32.410476684999935],[26.020462036000026,-32.350185393999936],[26.028841019000083,-32.2526245119999],[25.844795227000077,-32.23420333899986],[25.74972534200009,-32.376491546999944],[25.78728485100015,-32.44745635999993],[25.807477951000067,-32.427345275999926],[25.903541565000126,-32.3889312739999],[26.058147430000076,-32.410476684999935]]],[[[31.31060028100012,-27.292871474999913],[31.236032486000113,-27.231908797999893],[31.048223495000173,-27.236743926999964],[31.07306480400007,-27.388925551999876],[31.049617767000086,-27.492805480999948],[30.921844482000154,-27.47239875799994],[30.891380309999988,-27.539924621999944],[30.935417175000055,-27.62059402499989],[30.870002747,-27.717357634999928],[30.80662918100012,-27.753929137999933],[30.56865501400017,-27.74609184299993],[30.480888367000148,-27.68801307699988],[30.418178558000136,-27.70713043199993],[30.214960098000063,-27.576227187999905],[30.03810882600004,-27.51601982099993],[29.918142319000026,-27.50891303999998],[29.8786468510001,-27.427553176999936],[29.694755554000153,-27.332489013999975],[29.657958984000118,-27.361181258999977],[29.71406745900009,-27.459861754999906],[29.781713486000115,-27.470619201999966],[29.788496017000114,-27.596290587999874],[29.667552948000036,-27.65386962899987],[29.70741081200009,-27.815586089999954],[29.66749763500019,-27.944410323999875],[29.601320267000062,-27.99434661899994],[29.662237167000114,-28.14649200399998],[29.58500099200012,-28.2626075739999],[29.376306534000094,-28.37836646999989],[29.209390640000038,-28.50112152099996],[29.012981415000183,-28.540325164999956],[28.976381302000107,-28.514173507999942],[28.854862213000047,-28.534400939999955],[28.796966553000175,-28.57924461399989],[28.655038834000095,-28.534154891999947],[28.620229721000044,-28.457281112999965],[28.488870621,-28.457868575999896],[28.426773071000127,-28.50353431699989],[28.332418442,-28.497173308999947],[28.227508544999978,-28.573379516999978],[28.259712219,-28.620504378999954],[28.362791061000166,-28.63544082599998],[28.47100067100007,-28.729375838999943],[28.332141876000037,-28.831533431999958],[28.152471542000058,-29.06012153599994],[28.028575897000167,-29.074420928999928],[28.003961563000132,-29.14762687699988],[27.927272797,-29.233644484999957],[27.82529640200005,-29.220464705999973],[27.71136093100006,-29.29161834699994],[27.791177750000088,-29.491361617999928],[27.65777206400014,-29.524507522999897],[27.635723114000086,-29.629495620999933],[27.70266723600008,-29.837755202999915],[27.538272858000084,-29.947029113999974],[27.565898895000146,-30.16341972399988],[27.551944733000028,-30.2626457209999],[27.643167496000046,-30.2828330989999],[27.643167496000046,-30.187332152999886],[27.800167084000066,-30.127332686999978],[27.88716697700005,-30.015333175999842],[27.974666595000087,-30.036832808999975],[28.001167297000052,-29.98283386199995],[28.101167679000184,-30.04733276399992],[28.219167708999976,-29.956832885999972],[28.607667923000065,-30.030332564999924],[28.713167191000082,-29.899833678999983],[28.732166290000066,-30.03283309899996],[28.660667419000106,-30.03133392299992],[28.50216674800015,-30.114332198999932],[28.363666534,-30.069833754999934],[28.15566635100015,-30.06833267199994],[28.07216644300013,-30.162332534999905],[28.00516700700007,-30.116333007999913],[27.944667816000162,-30.155832290999967],[28.023166656000114,-30.219333648999964],[27.91916656500007,-30.288333892999958],[28.001167297000052,-30.434833526999967],[27.860166550000088,-30.363332747999948],[27.764167786000087,-30.44683265699996],[27.76366615300003,-30.55583381699995],[27.625566483000057,-30.67908668499996],[27.44931221000013,-30.640100478999898],[27.37982177700013,-30.695724486999893],[27.251550674000043,-30.66047859199989],[27.166103363000047,-30.802604674999884],[27.22230720500005,-30.86040878299997],[27.256778717000145,-30.965660094999976],[27.16082954400008,-30.974740981999958],[27.064115524000044,-31.10210800199991],[26.889387131000092,-31.144556045999877],[26.870788574000187,-31.04493331899988],[26.755968094000025,-30.96590232799997],[26.65078926100017,-30.938383101999932],[26.543394089000117,-30.958370208999952],[26.520492554000157,-31.03915405299989],[26.431089401000122,-31.044916152999974],[26.489315033000025,-31.156768798999963],[26.467353821000188,-31.212341308999953],[26.374628067000117,-31.27206993099992],[26.372270583999978,-31.321763991999887],[26.46780776999998,-31.39672279399997],[26.413133621000156,-31.431413650999957],[26.46380615200019,-31.56039428699995],[26.396680832000186,-31.565601348999962],[26.324167252,-31.63385581999995],[26.175838470000087,-31.59825897199994],[26.077026367000087,-31.59713554399997],[26.103754044000084,-31.485359191999976],[26.064872742000034,-31.597082137999905],[25.979175568000073,-31.634893416999887],[26.015752792000114,-31.763433455999973],[26.08742904700017,-31.80285263099995],[26.002925873000095,-31.709728240999937],[26.137418747000083,-31.631513595999934],[26.2525138850001,-31.626611709999906],[26.267894745000092,-31.686683654999968],[26.19124412500014,-31.786371230999976],[26.091320038000163,-31.82252693199996],[26.125005722000026,-31.882112502999973],[25.90359306300013,-32.05258941699998],[25.988843918000157,-32.03752136199995],[26.105222702000106,-32.11366271999998],[26.18319702100007,-32.09836959799992],[26.23446273800016,-32.02948379499992],[26.32278251600019,-32.06431198099983],[26.433776855000076,-32.163345336999896],[26.542081833000054,-32.15865707399996],[26.546274185000186,-32.04341506999998],[26.66156959500006,-32.20405578599997],[26.564691544000027,-32.2830772399999],[26.477266312000097,-32.27627563499988],[26.29981422400016,-32.358600615999876],[26.25189399700014,-32.32168197599992],[26.128231049000192,-32.3884696959999],[26.150175095000066,-32.43040466299993],[26.051673889000142,-32.471290587999874],[26.12201118500019,-32.63359832799995],[26.23803710900006,-32.65710067699996],[26.265756607000128,-32.57955551099997],[26.384454727000104,-32.64818954499992],[26.405721664,-32.70078659099994],[26.508434296000075,-32.7688026429999],[26.561105727999973,-32.73834228499993],[26.712511063000193,-32.77275466899988],[26.728908539000145,-32.77204894999994],[26.751956940000184,-32.78319930999987],[26.745121002000133,-32.78804016099991],[26.752054214000054,-32.79637908899997],[26.766351700000143,-32.794147490999876],[26.769319534000033,-32.79149246199995],[26.90486145000017,-32.66911697399996],[26.946699142000057,-32.78830337499994],[27.016716003000113,-32.77205657999997],[27.014902115000154,-32.65358352699991],[27.175355911,-32.64665985099998],[27.245859146000043,-32.61757278399995],[27.309408188000077,-32.67638397199994],[27.441707611000027,-32.69552612299998],[27.779726028000027,-32.588649749999945],[27.65016174300007,-32.57692718499993],[27.613115311000115,-32.494651793999935],[27.68950653100012,-32.41790389999983],[27.629379272000108,-32.32746505699998],[27.510730743000067,-32.33288955699982],[27.276931763000164,-32.415401458999895],[27.206190109000033,-32.279808043999935],[27.155130386000167,-32.243957519999924],[27.228603363,-32.107734679999965],[27.379449844000135,-32.06429290799991],[27.455318450999982,-32.074596404999966],[27.50073814400008,-32.16391754199998],[27.714334488000134,-32.146556853999925],[27.858886719000168,-32.17424774199992],[27.878976822000027,-32.26353073099989],[27.99090385400001,-32.40245437599998],[28.07155799900005,-32.40280532799994],[28.115287781000177,-32.26915359499992],[28.169610977,-32.22443008399989],[28.371646881000117,-32.18341445899989],[28.48464965800008,-32.1275863649999],[28.560482025000113,-32.011844634999875],[28.326278687000126,-31.969758986999977],[28.39284324600004,-31.902027129999965],[28.330545425000025,-31.806217193999885],[28.496450424000045,-31.784500121999884],[28.564826965000066,-31.853876113999945],[28.70397758500019,-31.789670943999965],[28.793952942000146,-31.72322082499994],[28.744647980000025,-31.605091094999977],[28.85344314600013,-31.617988585999967],[28.96284103400012,-31.51805114699988],[29.130971909000095,-31.557291030999977],[29.162448882999968,-31.424331664999954],[28.99661064100013,-31.33007621799993],[28.919229507000125,-31.25183296199998],[28.766847610000127,-31.27308464099997],[28.615547180000135,-31.264949798999908],[28.68533706700009,-31.167774199999826],[28.896787643000096,-31.237916945999928],[28.938739777000023,-31.16253471399989],[28.813585281000144,-31.07403182999991],[28.980937958000027,-30.99500656099991],[28.998430252000105,-31.065362929999935],[29.118299484000033,-31.15709114099991],[29.191082001000154,-31.05993652299992],[29.028194427000187,-30.93576431299988],[29.155982971000014,-30.945194243999936],[29.206851959000062,-31.01200103799988],[29.421302795000145,-31.054273604999878],[29.39349746700009,-30.979042052999944],[29.319324493000124,-30.947999953999897],[29.369821548000175,-30.87831497199994],[29.444892883000136,-30.937900542999955],[29.53746795700016,-30.901880263999942],[29.523183823000124,-31.01637268099995],[29.759162903000117,-30.970546721999938],[29.875242233000108,-30.877504348999935],[29.870813370000064,-30.82876777599995],[29.711801529000013,-30.733675002999973],[29.768917084000066,-30.629341124999883],[29.84448432900018,-30.66126060499994],[29.89209747300015,-30.611959456999955],[29.832025528000088,-30.532444],[29.85999679600019,-30.42089462299998],[29.981348038000192,-30.356626510999945],[29.90915679900013,-30.25959396399992],[29.93218803400015,-30.220746993999853],[30.091531754000187,-30.262914657999943],[30.095405579000158,-30.31138801599991],[30.198755264000056,-30.34623718299997],[30.216938019000054,-30.26846885699996],[30.192531586000086,-30.17794609099991],[30.12977981600011,-30.11171531699995],[30.060312271000157,-29.918796538999914],[30.15943718000011,-29.938598632999913],[30.233325957999966,-29.84751701399989],[30.296945572000027,-29.871767043999967],[30.353887558000167,-29.726865767999982],[30.285324097000114,-29.652585982999938],[30.357757568000125,-29.542352675999894],[30.284276962000035,-29.451686858999892],[30.345546722000165,-29.352558135999857],[30.468278885000075,-29.279548644999977],[30.53135490400018,-29.337444304999963],[30.63150215100012,-29.354537963999974],[30.68942832900018,-29.277711867999983],[30.715833664000115,-29.13683700599995],[30.836156845,-29.108547210999916],[30.847520828000143,-29.009168624999973],[30.92542457600007,-28.98635673499996],[30.88565444900007,-28.896385192999958],[30.782396317000064,-28.898927688999947],[30.71323585500005,-28.95504379299996],[30.61593246500007,-28.972133635999967],[30.52602386500007,-28.931390761999978],[30.461233139000115,-28.960668563999945],[30.445600510000133,-29.027971267999874],[30.33047676100017,-29.064447402999974],[30.295862198000066,-28.98181724499989],[30.195707321000043,-29.002458571999966],[30.110574722000024,-29.079038619999892],[29.99656295800014,-29.012233733999892],[29.936775208000086,-29.022319793999884],[29.79032707200014,-28.863153457999886],[29.868396759000063,-28.759983062999822],[29.852363586000138,-28.70237922699988],[29.684209824000163,-28.74322318999998],[29.813341141000024,-28.607368468999937],[29.82482528700001,-28.532253264999895],[30.04174804700017,-28.488918303999924],[30.037574768000127,-28.538610457999937],[30.216213226000036,-28.554195403999984],[30.340662003000034,-28.518909453999925],[30.35148048400015,-28.588825225999983],[30.43374443100015,-28.652215957999886],[30.465158463000023,-28.717161178999845],[30.569980621000127,-28.741048812999964],[30.61554908800008,-28.682067870999845],[30.544408798000063,-28.641969680999978],[30.512613297000144,-28.50235748299997],[30.629262924000045,-28.387998580999977],[30.656162262000123,-28.461137771999972],[30.78426551800004,-28.54721832299998],[30.7214965820001,-28.60964202899993],[30.704095840000093,-28.69698905899986],[30.861547470000062,-28.69042968799988],[30.929346085000077,-28.71556472799989],[30.969753265000122,-28.62625503499993],[30.945764542000063,-28.52565956099994],[30.995628357000157,-28.40752410899995],[30.9571304320001,-28.34435462999994],[30.947565079000128,-28.193681716999947],[30.986763000000167,-28.161901473999876],[31.124422073000062,-28.17564964299993],[31.062242508000054,-28.071571349999886],[31.077932358000112,-28.005437850999954],[31.211265564000087,-27.856748580999863],[31.384281158000135,-27.95960617099996],[31.366407394000078,-27.862943648999874],[31.415613174000157,-27.807716369999923],[31.31351280200016,-27.730859755999973],[31.45867538500005,-27.50255012499997],[31.367393494000112,-27.498470305999888],[31.41904068000008,-27.35475158699984],[31.31060028100012,-27.292871474999913]],[[26.83124160800014,-32.55907821699992],[26.720390320000092,-32.62932968099989],[26.779607773000123,-32.694576262999874],[26.73624801600016,-32.74461364699994],[26.616403580000167,-32.68450927699996],[26.646099091000053,-32.550685882999915],[26.78749465900006,-32.531749724999884],[26.83124160800014,-32.55907821699992]]]]},"properties":{"objectid":206,"eco_name":"Drakensberg grasslands","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Afrotropic","eco_biome_":"AF07","nnh":4,"eco_id":41,"shape_leng":168.504073682,"shape_area":10.7547173371,"nnh_name":"Nature Imperiled","color":"#FDBD7F","color_bio":"#FEAA01","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":115164.73963045012,"percentage":0.5371736320208295}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-59.10432854499999,-18.623451071999966],[-59.34162860599997,-18.55755187799997],[-59.612068532999956,-18.442223595999906],[-59.69711249699998,-18.315203396999948],[-59.807437620999906,-18.239443732999973],[-59.93813663699996,-18.187973985999975],[-60.0585094839999,-18.03730592299985],[-60.08833363699995,-17.88201339699998],[-60.25899153199998,-17.81693646799988],[-60.26718148999993,-17.754801252999926],[-60.36441056099994,-17.71351585299982],[-60.34488257099997,-17.660905999999898],[-60.439437478999935,-17.576425132999873],[-60.523860510999896,-17.584126760999936],[-60.72111552699994,-17.676025108999966],[-60.72964059299994,-17.77659101599994],[-60.653064530999984,-17.86013193599996],[-60.488376561999985,-17.955293023999843],[-60.47541461999998,-18.039168046999976],[-60.51790248699996,-18.100884167999936],[-60.64357755799989,-18.048003410999968],[-60.787860621999926,-18.09125570799995],[-60.87919654399997,-18.08103347399998],[-61.01816950499983,-18.02856762199997],[-61.19248157499999,-18.02845446599997],[-61.49211852099995,-17.97338904999998],[-61.70456355699997,-17.966223360999948],[-61.72890057999996,-17.90935365699994],[-61.819499565999934,-17.903269232999946],[-61.862350536999884,-17.963948511999945],[-62.07936857199985,-17.97788057699995],[-62.420566513999916,-18.030123637999964],[-62.559856477999915,-18.065752258999908],[-62.97133248699993,-18.19958912399983],[-63.13089358099995,-18.129776419999928],[-63.17984758399996,-18.029124514999978],[-63.21347862899995,-17.846489717999816],[-63.28097960399998,-17.688063365999938],[-63.42206949799993,-17.58807832499997],[-63.37832652499986,-17.729472649999877],[-63.435745578999956,-17.90526496399997],[-63.55698058899998,-17.9591077959999],[-63.65917157899992,-17.933047284999873],[-63.664150596999946,-18.022544050999954],[-63.71916153099994,-18.09641543999993],[-63.63712348599989,-18.116708194999944],[-63.62716662299994,-18.171580994999943],[-63.679222599999946,-18.263053541999966],[-63.64850661299994,-18.299509121999904],[-63.534374595999964,-18.186634892999848],[-63.50756859899991,-18.310162687999934],[-63.56227459899998,-18.372631838999837],[-63.62406163099996,-18.379177602999903],[-63.659271490999856,-18.46019657599993],[-63.72729851499997,-18.516867293999894],[-63.70167151599992,-18.77616096599985],[-63.748493497999846,-18.833059503999948],[-63.748405487999946,-18.931169680999915],[-63.9057195609999,-18.954455445999884],[-63.964939550999986,-19.05080475199992],[-63.9070775969999,-19.128567020999867],[-63.86193048699994,-19.019858430999932],[-63.6906855229999,-19.056605364999882],[-63.741104514999904,-19.269667811999852],[-63.835586500999966,-19.27845841599992],[-63.831798550999906,-19.40003523999991],[-63.67979055799992,-19.551573343999905],[-63.60765053499995,-19.84378241399986],[-63.632595580999975,-19.969313316999887],[-63.72079449299997,-20.01607159599996],[-63.72336153499998,-19.847849145999874],[-63.77635159099992,-19.813587110999947],[-63.853374575999965,-19.867885079999894],[-63.796161548999976,-19.961199634999844],[-63.749519609999936,-20.10016773399991],[-63.89677053899993,-20.201818090999893],[-63.869537567999885,-20.26316239099998],[-63.63803459799988,-20.194228444999965],[-63.533863634999875,-20.259656743999983],[-63.52843853199988,-20.34564467699994],[-63.61947656199993,-20.479124305999846],[-63.617725581999935,-20.547514432999947],[-63.48537851599991,-20.723682423999946],[-63.499671504999924,-20.819792007999922],[-63.460361552999984,-20.849638623999965],[-63.48601554099997,-20.976899215999936],[-63.59438349099986,-21.014090223999972],[-63.68046161299998,-20.81833120999994],[-63.731689625999934,-20.854183124999906],[-63.81349951599992,-20.805910067999946],[-63.84368559899997,-20.885176552999894],[-63.92466350099994,-20.93914963899988],[-64.0768205249999,-20.911627994999947],[-63.903118488999894,-21.170484801999976],[-63.81176362299993,-21.1848557429999],[-63.79327062999994,-21.29875457599985],[-63.874557488999926,-21.599723237999967],[-63.78149455899984,-21.594396537999955],[-63.621871606999946,-21.927437211999973],[-63.621871606999946,-22.11794697499994],[-63.6467365229999,-22.215839892999895],[-63.934554481999896,-23.083838102999948],[-64.02623758299995,-23.18315024499998],[-64.06254563999983,-23.26857256699998],[-64.21223452899994,-23.312240605999932],[-64.2840495019999,-23.37049248599982],[-64.31422452099997,-23.445023530999833],[-64.49456753799996,-23.670697221999887],[-64.54908762799988,-23.67600698999985],[-64.68161054599994,-23.808855125999912],[-64.71036550299982,-23.7959317399999],[-64.85237153899993,-23.919151751999948],[-64.87663262299992,-23.974388996999835],[-64.98922756599995,-24.069737000999964],[-65.08671563799999,-24.10985228699991],[-65.25880449299996,-24.120362690999855],[-65.26485454999994,-24.20179153899994],[-65.11876652699988,-24.379369701999963],[-65.0609055789999,-24.604049801999963],[-65.09424560499997,-24.701209973999937],[-65.03039561899988,-24.825285944999962],[-65.16532162899995,-25.043941635999943],[-65.25550051399995,-25.122219894999944],[-65.32142652899995,-25.08782743699993],[-65.32137254999992,-24.858012582999947],[-65.38733661899994,-24.78288809999998],[-65.34719048799997,-24.68815666799992],[-65.34637459399994,-24.592393423999965],[-65.40660862599998,-24.59025151299994],[-65.52405551799995,-24.68881984399991],[-65.59967051099994,-24.803959197999973],[-65.54184761699997,-25.1928033989999],[-65.69652558199988,-25.414634991999947],[-65.62577058399995,-25.705314365999982],[-65.37069652999992,-25.47344326299998],[-65.33641052199994,-25.474492174999966],[-65.34429956999992,-25.72107770799994],[-65.23752552299993,-25.68225943799996],[-65.26570162499996,-25.610591650999936],[-65.2271886239999,-25.441643495999983],[-65.05073548099989,-25.250312641999983],[-65.01125353199996,-25.250053640999965],[-64.93744651499998,-25.413500082999917],[-65.0183635649999,-25.672568784999896],[-65.17056249799992,-26.0050233959999],[-65.34314756099991,-26.16747004399997],[-65.43309761999996,-26.21572566599997],[-65.54412849999989,-26.321432026999958],[-65.54588350299997,-26.552408611999965],[-65.34134662499997,-26.717948182999976],[-65.26271062699993,-26.72115191399996],[-65.1578825229999,-26.660733646999915],[-65.14144862799998,-26.363864908999915],[-65.08763161299993,-26.28095983899982],[-65.0293954899999,-26.099881058999983],[-64.95993063499992,-26.01203804299996],[-64.94004859299997,-25.86589369299992],[-64.80491655599991,-25.887579855999945],[-64.83808860899995,-26.01230492299993],[-64.80870852899989,-26.036001065999983],[-64.81632952299992,-26.20000456899993],[-64.85418655699988,-26.26253758999985],[-64.7038495789999,-26.414420859999893],[-64.71810149699996,-26.567706926999904],[-64.81108060799994,-26.71210431999998],[-65.0640635449999,-26.89587620599997],[-65.60361453199994,-27.170059154999876],[-65.66896856599993,-27.239632136999887],[-65.8102495679999,-27.606049548999977],[-65.76690657899991,-27.777089323999974],[-65.60856655999987,-28.038760439999976],[-65.60142551399991,-28.147619903999953],[-65.46483653399986,-28.468983412999933],[-65.4670795319999,-28.561115951999966],[-65.55169652099988,-28.737286625999957],[-65.5758975899999,-29.129752142999905],[-65.6345745999999,-29.10360932199984],[-65.61972052599992,-28.695620519999977],[-65.54972057099991,-28.56620058199985],[-65.54328159299996,-28.48721673499989],[-65.60883360799994,-28.337873850999983],[-65.74706259099997,-28.210178238999845],[-65.84999051799997,-28.01171740199993],[-65.91071355099996,-27.944770302999927],[-66.01313051699998,-28.13264228099996],[-65.91037760399996,-28.344387595999933],[-65.90763051899995,-28.39343664899991],[-66.06336963299992,-28.639911541999936],[-66.29855359899994,-28.841778615999942],[-66.40855451099992,-28.82833320499992],[-66.77637455099989,-28.965484777999905],[-66.91989854899998,-29.044729469999936],[-67.05440563199994,-29.152592325999933],[-67.04840854799994,-29.232785011999965],[-66.99210361599995,-29.333687032999933],[-67.01248957799993,-29.73662774999997],[-67.09846460299997,-29.953626505999978],[-67.20293463299998,-30.074703935999935],[-67.22130558499998,-30.226424429999952],[-67.30413052299997,-30.345218963999912],[-67.41436763799993,-30.34048318899994],[-67.52787754999991,-30.280610583999874],[-67.61734061999988,-30.274749621999888],[-67.7200854859999,-30.399001278999947],[-67.65148161999997,-30.502724480999916],[-67.36106862399993,-30.770365857999877],[-67.2837826149999,-30.894323476999944],[-67.26477849399998,-31.030835510999964],[-67.22367062299992,-31.074282937999897],[-67.23564148999998,-31.35398050999993],[-67.32563060799993,-31.510917061999976],[-67.40148951399993,-31.54358703899993],[-67.4093326279999,-31.878285819999974],[-67.2883075019999,-32.14141438099995],[-67.26160460199992,-32.344933527999956],[-67.18634064399993,-32.40544064299996],[-67.22307550799997,-32.51627723099989],[-67.09947948399997,-33.13789308499992],[-66.99125654099993,-33.24399993299994],[-67.07382163999995,-33.36405644699988],[-67.07331051199998,-33.554128841999955],[-66.99903159399992,-33.67428442999994],[-66.97434957199994,-33.7677228689999],[-66.90670761299998,-33.86864986799998],[-66.72328156399988,-33.52678271499997],[-66.50428053899992,-33.41908196499992],[-66.45077549799993,-33.549589873999935],[-66.34941062799993,-33.54872419099996],[-66.34540558699996,-33.62046087699997],[-66.26824161899987,-33.619458065999936],[-66.12237554899997,-33.53481241099996],[-65.98256657699994,-33.116439938999974],[-65.77315562299992,-32.78505971999988],[-65.69093351099997,-32.82194663199988],[-65.59709156699995,-32.90656932099989],[-65.35797849999994,-33.04544706299998],[-65.39399754999988,-33.17474194299996],[-65.39604960799994,-33.290716637999935],[-65.33847062699994,-33.37530512799998],[-65.23266552699982,-33.41653302799989],[-65.0095675959999,-33.3539896129999],[-64.89395851999996,-33.14620105999995],[-64.93235048599996,-33.02698759799995],[-64.75915555599994,-32.92975031199995],[-64.70822157999999,-32.82522781199992],[-64.54249559599998,-32.65604295199984],[-64.46154753399998,-32.51401143499993],[-64.4541935869999,-32.28318656199997],[-64.33176449199993,-32.28282882199994],[-64.3364486349999,-32.56501565099995],[-64.18573748899985,-32.52680087799996],[-64.18330355199998,-32.17677193099996],[-64.32550857399985,-31.932454036999957],[-64.31393450699994,-31.411025562999953],[-64.27110247899992,-31.31360873799997],[-64.15678354599987,-31.176910625999938],[-64.15927162999992,-31.047820095999896],[-64.26552549599995,-31.085160804999873],[-64.27079050499987,-30.947729610999943],[-64.41060651699996,-30.713955648999956],[-64.38404862499988,-30.646667071999957],[-64.27304858899998,-30.666762348999953],[-64.22663162099991,-30.784514174999913],[-64.17463649599989,-30.824444890999928],[-64.07904055499995,-30.824261829999898],[-63.99871459799988,-30.75608728599991],[-63.943427563999876,-30.621310975999904],[-63.881755532999875,-30.53303914199995],[-63.916541603999974,-30.3913182579999],[-63.79884358999993,-30.28895325999997],[-63.755851634999885,-30.42213030199997],[-63.69432863399999,-30.51550872699994],[-63.53795651799987,-30.63817553299998],[-62.95021461699997,-30.864741393999964],[-62.830097585999965,-30.8941254959999],[-62.56837047999994,-30.850396771999954],[-62.37513358099994,-30.796136856999965],[-62.26296963499993,-30.690196473999947],[-62.258369478999896,-30.594482180999933],[-62.33620450199999,-30.471241548999956],[-62.32744558099995,-30.263088215999915],[-62.12956259299989,-30.079365782999957],[-61.74356857599997,-29.854795149999916],[-61.58668147599997,-29.745726472999877],[-61.55268447699984,-29.08410195099998],[-61.64297048199995,-28.22106180499992],[-61.76688350999996,-28.054125641999974],[-61.977039615999956,-28.01624513899992],[-62.04983560699992,-28.050621837999984],[-62.15508263899994,-28.045251049999933],[-62.378837543999964,-27.919875212999955],[-62.4332275459999,-27.861538674999963],[-62.43942663399997,-27.754129111999873],[-62.32849449199995,-27.656809348999957],[-62.21225358899994,-27.524608965999903],[-62.129188592999924,-27.523511942999903],[-61.824981497999886,-27.839666601999852],[-61.69715160699991,-27.877547104999962],[-61.59605764099996,-27.75131027799989],[-61.62925752099994,-27.592298198999856],[-61.560981554999955,-27.52323416599984],[-61.46457256999997,-27.587005361999957],[-61.386917588999836,-27.456648829999892],[-61.295822562999945,-27.489419556999962],[-61.36360550499984,-27.6290454679999],[-61.334339586999874,-27.78092806799998],[-61.36628754599997,-27.819029350999926],[-61.32660661099993,-28.085200373999896],[-61.28227656899992,-28.113537241999893],[-61.14791147599993,-28.106451515999936],[-61.0140345449999,-27.885530531999905],[-60.75199563199993,-27.802969120999876],[-60.74060462499989,-27.677197322999916],[-60.679363590999856,-27.58533451399984],[-60.66712953199993,-27.506085630999905],[-60.57260161299996,-27.550158850999935],[-60.50678255099996,-27.41987356599992],[-60.390842556999985,-27.359157237999966],[-60.3896675819999,-27.30302664999988],[-60.479041636999966,-27.25169771899988],[-60.490623582999945,-27.179360720999966],[-60.35593058999996,-27.125065098999926],[-60.38897657799993,-26.943823206999923],[-60.35784149599988,-26.900813146999894],[-60.35055560999996,-26.672614155999895],[-60.293113589999905,-26.492532318999963],[-60.25741556699995,-26.250089121999963],[-60.292182527999955,-26.21568191299997],[-60.301380492999954,-26.08122176899991],[-60.396968554999944,-25.960875408999982],[-60.4129945869999,-25.87319148099988],[-60.49006652199995,-25.775905915999886],[-60.423973538999974,-25.751896959999897],[-60.33290047199995,-25.81041739699998],[-60.28804052699991,-25.893368565999936],[-60.11330751699995,-26.011614085999952],[-60.01523556199999,-25.993260902999907],[-60.00122051699992,-25.90560513899993],[-60.1307185739999,-25.714090888999976],[-60.22000461799996,-25.665178292999826],[-60.22550549399983,-25.60574188199996],[-60.15400350099998,-25.561139092999895],[-60.03860447599993,-25.686482240999908],[-60.00586660599993,-25.787713502999964],[-59.93613051199998,-25.786008623999862],[-59.87738460299988,-25.69886164099995],[-59.79430753699995,-25.651214712999888],[-59.79710357199991,-25.546399851999922],[-59.90486953399983,-25.521124054999973],[-60.050605516999894,-25.311234828999943],[-60.050361603999875,-25.10128575599998],[-60.022659580999914,-24.997589878999918],[-59.87721662999985,-25.053666990999943],[-59.701568483999836,-25.058217860999946],[-59.64925350599998,-25.03213404899998],[-59.76501462899989,-24.9428553809999],[-59.77235063899997,-24.87519380899994],[-59.855224526999905,-24.70345297099982],[-59.88238558199998,-24.400200742999914],[-59.841648525999915,-24.083369495999932],[-59.72606258399992,-23.632394103999957],[-59.72487252199994,-23.515272093999897],[-59.80138052199993,-23.381433886999957],[-59.76607158699994,-23.329898425999943],[-59.78253163399995,-23.195812617999877],[-59.89186450799997,-23.127537154999914],[-59.88879354699992,-23.04030735899994],[-59.763767569999914,-22.890803375999837],[-59.63549762899993,-22.908964277999928],[-59.54926662099996,-22.788397472999975],[-59.62525561399991,-22.6661329989999],[-59.70668462999993,-22.58022955499996],[-59.47910657099993,-22.54195661199998],[-59.309692548999976,-22.49054436499995],[-59.2413555629999,-22.502546578999954],[-59.21768154799997,-22.57312086299993],[-59.247596560999966,-22.700759143999903],[-59.198402500999975,-22.83016449699994],[-59.079502521999984,-22.91841487299996],[-58.968910517999916,-22.935413875999927],[-58.714885541999934,-22.85806584099987],[-58.61437948199995,-22.84020584899997],[-58.46866260999985,-22.777673330999903],[-58.37891354899995,-22.704938024999876],[-58.23577461499991,-22.499062892999916],[-58.06506357799992,-22.293853785999943],[-58.14369555299987,-22.212279092999893],[-58.34712551699994,-22.20243169799994],[-58.431915507999975,-22.15481913499997],[-58.53831454899995,-22.173830967999947],[-58.63956860999997,-22.15867195999988],[-58.68985751499997,-22.110901482999907],[-58.605247565999946,-22.029808748999926],[-59.03566349199997,-21.922896567999942],[-59.05338652299997,-21.860828909999896],[-58.867626616999985,-21.821250233999933],[-58.63175952599994,-21.86229792199987],[-58.50769461899995,-21.84035091499993],[-58.33116955799994,-21.772675595999885],[-58.11175949599988,-21.78056816399993],[-58.05207850099987,-21.744513238999957],[-57.990444522999894,-21.502770266999903],[-58.08952750399993,-21.469969029999902],[-58.23511462399995,-21.536416399999894],[-58.255649615999914,-21.473161863999962],[-58.18439857799996,-21.393834190999883],[-58.20157259499996,-21.342504254999938],[-58.30212358099982,-21.357112402999974],[-58.50390650099996,-21.436920861999965],[-58.74740950599988,-21.50915207999992],[-58.649375603999886,-21.399059972999908],[-58.45034060799992,-21.32524423999996],[-58.38618451499997,-21.232779274999928],[-58.54493759399992,-21.215864090999958],[-58.957458490999954,-21.222006852999925],[-58.943687526999895,-21.194146411999895],[-58.77943457899994,-21.132471865999946],[-58.56942750299993,-21.12764807999997],[-58.33021150699989,-21.084498545999907],[-58.043907486999956,-20.99159252499993],[-58.00138458299995,-20.733069987999954],[-58.0269205539999,-20.38072981499994],[-58.13239255699989,-20.1663309569999],[-58.14702953899996,-20.10127565399995],[-58.23229562199998,-20.101252686999885],[-58.24259161699996,-19.81837300999996],[-58.458717481999884,-19.696799874999954],[-58.54998752299997,-19.681648913999936],[-58.579067529999975,-19.63215981099995],[-58.56713857299991,-19.45204913999993],[-58.63241163799995,-19.295032455999944],[-58.616619629999946,-19.203498720999903],[-58.67721559299997,-19.156492336999975],[-58.76173350799996,-19.222574590999955],[-58.79761861499992,-19.1557485269999],[-58.774475508999956,-19.081713858999933],[-58.83924850999995,-19.018053638999902],[-58.81034854599989,-18.97367632299995],[-58.88558953799998,-18.885516471999892],[-59.065448584999956,-18.82789289899995],[-59.00073962099992,-18.75637497999992],[-59.04307158499995,-18.659478838999917],[-59.10432854499999,-18.623451071999966]],[[-64.71134953899997,-24.986840255999937],[-64.81662758399989,-24.962582524999846],[-64.81410949199994,-24.81415544799995],[-64.69302351299996,-24.606092806999982],[-64.54596754799991,-24.416846866999947],[-64.57935350699995,-24.353730968999912],[-64.56957249599998,-23.941914486999963],[-64.51847054699988,-23.855252815999904],[-64.25587457299991,-23.737609954999982],[-64.12113162299994,-23.795867031999876],[-64.04222153699988,-23.940880662999973],[-64.04256452399994,-24.00430836799984],[-63.97993058499998,-24.09444299599994],[-63.98746859799991,-24.36138884299993],[-64.03165463899995,-24.460088937999956],[-64.21607260199988,-24.6394869799999],[-64.44969149899998,-24.69952219399994],[-64.5796886149999,-24.903066150999962],[-64.67518648799984,-24.930272970999965],[-64.71134953899997,-24.986840255999937]],[[-64.68325758999998,-25.157732006999936],[-64.75521052899995,-25.194260508999946],[-64.75790363499993,-25.05784771599997],[-64.67611654399997,-25.088256254999976],[-64.68325758999998,-25.157732006999936]]]},"properties":{"objectid":208,"eco_name":"Dry Chaco","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Neotropic","eco_biome_":"NO07","nnh":2,"eco_id":569,"shape_leng":82.962400814,"shape_area":70.6246291031,"nnh_name":"Nature Could Reach Half Protected","color":"#D4D20E","color_bio":"#FEAA01","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":790164.6167544662,"percentage":3.6856384900306347}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[37.75789783800013,-5.241276395999819],[37.821857424000086,-5.193103926999868],[37.8353148540001,-5.118580213999962],[37.74177359100014,-5.078696290999972],[37.730181619000064,-5.197185547999936],[37.75789783800013,-5.241276395999819]]],[[[37.910334127,-4.802836807999938],[37.861623129,-4.797297607999894],[37.719629669000085,-4.953636177999897],[37.79978290200006,-5.020385896999926],[37.90356831500014,-4.970488656999919],[37.88830890100019,-4.895972079999979],[37.910334127,-4.802836807999938]]],[[[38.11583333300018,-4.47],[38.105,-4.465833332999978],[38.086666665999985,-4.485],[38.01916666700015,-4.5625],[38.0175,-4.568333332999885],[38.099166667000134,-4.665],[38.15500000000014,-4.576666666999927],[38.11583333300018,-4.47]]],[[[35.51141940800011,-4.5725],[35.55419292800019,-4.509365116999959],[35.479284495,-4.463862221999932],[35.41675654799997,-4.53618662599996],[35.50416666600006,-4.578333332999875],[35.51141940800011,-4.5725]]],[[[35.89583333300004,-3.442499999999825],[35.81437369600013,-3.419051789999912],[35.73196153300012,-3.597667834999925],[35.752879710000116,-3.670296489999942],[35.73066660200004,-3.74760478099995],[35.777414821000036,-3.775585088999946],[35.87825210699998,-3.66293486099994],[35.864191579000135,-3.57429865499995],[35.90166666700003,-3.476666666999961],[35.89583333300004,-3.442499999999825]]],[[[35.333333333000155,-3.475833332999969],[35.340000000000146,-3.413333332999912],[35.288333334000185,-3.330833333999919],[35.185000000000116,-3.447499999999877],[35.079166667000095,-3.524166665999871],[34.967315592000034,-3.611594615999934],[34.81565946500007,-3.63256728399989],[34.73968059900005,-3.690183325999953],[34.87083357600005,-3.757257656999911],[35.079640250000125,-3.700662612999963],[35.17608877900011,-3.652081679999981],[35.22490143400006,-3.54634217399996],[35.333333333000155,-3.475833332999969]]],[[[36.268888398000115,-3.077162264999913],[36.12239373200009,-3.074140710999927],[36.15337174600012,-3.185356559999889],[36.268888398000115,-3.077162264999913]]],[[[35.92916666700006,-2.574999999999875],[36.011666667000156,-2.586666666999918],[36.084166667000034,-2.443333332999941],[36.12416666700011,-2.307499999999891],[36.108333334000065,-2.191666665999946],[36.00250000000011,-2.145],[35.96833333400019,-2.190833332999944],[35.97666666700002,-2.341666665999981],[36.02500000000015,-2.508333333999815],[35.9500000000001,-2.498333332999835],[35.92916666700006,-2.574999999999875]]]]},"properties":{"objectid":210,"eco_name":"East African halophytics","biome_num":9,"biome_name":"Flooded Grasslands & Savannas","realm":"Afrotropic","eco_biome_":"AF09","nnh":3,"eco_id":69,"shape_leng":11.2567516124,"shape_area":0.307354702988,"nnh_name":"Nature Could Recover","color":"#C3E8FA","color_bio":"#BEE7FF","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":3800.4392014924547,"percentage":0.32865453872775147}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[78.45071992300018,-68.41025459199994],[78.22799992700016,-68.43594815299991],[78.20980884100015,-68.53840991799996],[78.02724924300014,-68.54130519699999],[77.8855462410001,-68.62858464699991],[78.23736637200005,-68.65343666499996],[78.5729467270001,-68.60935940399986],[78.45071992300018,-68.41025459199994]]],[[[100.73398812699998,-66.20960449099988],[100.48539754600006,-66.27106381499988],[100.534086866,-66.32625548299995],[100.82305108100007,-66.34901487399998],[100.96484745800012,-66.33100483999993],[101.13211309500008,-66.20628123299997],[100.73398812699998,-66.20960449099988]]]]},"properties":{"objectid":213,"eco_name":"East Antarctic tundra","biome_num":11,"biome_name":"Tundra","realm":"Antarctica","eco_biome_":"AN11","nnh":1,"eco_id":120,"shape_leng":39.7922609386,"shape_area":0.228137691898,"nnh_name":"Half Protected","color":"#75CCFA","color_bio":"#9ED7C2","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":1080.5690664625668,"percentage":0.012645399683452295}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[57.55904911100015,20.881998106000026],[57.55653100900014,20.756812477000153],[57.64088741699999,20.754833968000128],[57.55904911100015,20.881998106000026]]],[[[58.21609379800003,20.62569132300007],[58.31340044300015,20.760319833000096],[58.28839929000003,20.83127634200008],[58.13965142400002,20.859964716000036],[58.00322426900016,20.776957290999974],[58.05340644000006,20.99198519200013],[58.02067111700006,20.99855024300018],[57.9355952520001,20.729922748000092],[57.84908047100009,20.521729694000157],[57.76805155400018,20.502034541000114],[57.74008263900015,20.63468454300005],[57.63306331500013,20.653120645000115],[57.490610703000186,20.53072291500007],[57.30436110700009,20.234576165000192],[57.27648212400004,20.026562976000093],[57.330531379000035,19.903535720000036],[57.31173554800017,19.769446803000164],[57.346089650000124,19.65802080100019],[57.411920024000096,19.548573308000073],[57.54115260200007,19.573034868000036],[57.616335925000044,19.516017850000082],[57.7029406370001,19.58544551200015],[57.71355263800018,19.643811513000117],[57.69091420500013,19.646241360000147],[57.679030378000164,19.651275886000178],[57.67526620700005,19.654960124000183],[57.66439072999998,19.659575902000142],[57.6740626510001,19.714893343000085],[57.740277100000185,19.804166667000175],[57.816884741000024,19.981686805000095],[57.835984294000184,20.097349040000154],[57.826041667000084,20.204166667000095],[57.99213053400018,20.43286946600017],[58.06599528000004,20.459004720000053],[58.079781433,20.56183945700019],[58.08928938900016,20.61552898300016],[58.21609379800003,20.62569132300007]]],[[[59.283319270000106,21.9600154420001],[59.091943538000066,22.156787107000127],[59.051743843000054,22.285300226000174],[58.99175906200014,22.342137380000167],[58.831050213000026,22.36183253300004],[58.72537987200013,22.408777143000066],[58.67312926200003,22.467233076000127],[58.55783617500015,22.327388498000175],[58.50324732700017,22.18394663200013],[58.40441183400003,22.01838144300018],[58.4338196650001,21.879166390000023],[58.48867831000007,21.794450254000083],[58.501628547000166,21.618273065000153],[58.537151768000115,21.532567674000177],[58.62456587100007,21.470694317000095],[58.59974458300019,21.235071941000115],[58.534813531,21.106109160000187],[58.51700695400007,21.015187701000116],[58.601453294000066,20.91176566500019],[58.69201502400017,20.878041089000078],[58.74650298200015,20.872866042000112],[58.80416666700006,20.98988037100014],[59.0253519690001,21.24131469700012],[59.183864340000184,21.3661356610001],[59.29951377600014,21.408217229000115],[59.32181025300014,21.54201055500016],[59.2524725240001,21.583649166000157],[59.33700879500003,21.82520706800011],[59.283319270000106,21.9600154420001]]]]},"properties":{"objectid":214,"eco_name":"East Arabian fog shrublands and sand desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Palearctic","eco_biome_":"PA13","nnh":2,"eco_id":821,"shape_leng":11.7632800052,"shape_area":1.53083092483,"nnh_name":"Nature Could Reach Half Protected","color":"#734C00","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":17694.4556245043,"percentage":0.06706972850953452}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[26.04019431500012,29.142545803000075],[26.013837658000114,29.09176828200009],[25.843243434000044,29.111436081000136],[25.574178617000143,29.097674395000126],[25.307336025000154,29.201408947000175],[25.30590510800016,29.23138687100004],[25.608831985000165,29.25757575800003],[25.570297419000156,29.27823473100011],[25.268279619000168,29.348389722000036],[23.521770946000117,29.418250069000123],[22.520712990000163,29.404897724000193],[22.333025800000144,29.395434504000036],[22.15982024000016,29.36557620100018],[22.049360837000165,29.321580323000035],[21.897728324000184,29.186540521000097],[21.809622736999984,29.061157327000103],[21.569694638000044,28.612031020000188],[21.283293832000084,28.201098447999982],[21.11639193900004,27.996183557000165],[20.98127761900014,27.853159364000078],[20.821991400000115,27.712593491000064],[20.67982092200009,27.61349005800014],[20.517244339,27.530561447000025],[20.306965813000033,27.486689285000182],[20.09006739800003,27.492808713999977],[19.643331665000176,27.560325545000183],[19.301755815000092,27.58559242300015],[19.14349474,27.56460021400011],[19.02495002700016,27.523435592999988],[18.86923498400006,27.41827197800012],[18.52451397300007,27.09637079400005],[18.374796074000074,27.01017767800016],[18.258344506000128,26.983082744000058],[17.793152656000075,26.98863715400006],[17.64274526500003,26.959691858000042],[17.568768816000045,26.9207862720001],[17.44912919500007,26.79870478099997],[17.315348642000117,26.633076325000047],[17.220501033000062,26.56405215900014],[17.11118377600002,26.57216750400005],[17.041039305000083,26.618246923000186],[16.91760112999998,26.749878893000073],[16.752678872000047,26.957433063999986],[16.558172723999974,27.138362599],[15.778163151000058,27.398365790000128],[13.717646136000155,27.591539260000047],[13.631418649000125,27.63506754200006],[13.282760714000176,27.87240646500004],[13.152995199000088,27.92032184599998],[12.949784164000164,27.937102103000086],[12.738700035000022,27.911474098000156],[12.568557639,27.868883058000108],[12.296584800000062,27.770049244000177],[12.04640558300008,27.628829770000152],[11.878595365000137,27.503118353000104],[11.588202239000054,27.234217435000176],[11.50663562700015,27.125020091000067],[11.338245106000045,26.831860151000058],[11.239220282000133,26.683215698000026],[11.135924249000027,26.582405526],[10.979956601000083,26.522371650000025],[10.859645699000055,26.51908480500009],[10.451139566,26.5797924310001],[10.281180784000071,26.593313999000088],[10.13089860100007,26.550777852000067],[10.080713140000057,26.491351134000013],[10.046016873000099,26.36820761900003],[10.046450618000051,26.194895795000093],[10.084673283000086,25.861787038000102],[10.058092951000106,25.38334106100018],[9.906509962000143,25.097809956000162],[10.027459970000109,24.794060044000048],[10.128229993000105,24.657920041000068],[10.170599935000155,24.51654995600012],[10.233279941000092,24.514469928000153],[10.288309944000048,24.574489745000164],[10.30199989700003,24.690149825000105],[10.248030063000158,24.936119950000148],[10.230829920000133,25.080279951000023],[10.348219924000091,25.466840041000125],[10.34639002,25.566669941000043],[10.452539917000138,25.572879925000166],[10.473419934000162,25.473420019000116],[10.482819928000083,25.194930028000044],[10.532959920000167,24.627939968000135],[10.564750006000054,24.40025004400013],[10.626270040000065,24.270490060000043],[10.76091000100007,24.0896100060001],[10.796570062000171,23.928930004000165],[10.885939976000088,23.799839952000127],[11.039140186000168,23.689220028000022],[11.118059971000037,23.653000046999978],[11.276989983000135,23.692350015000102],[11.35155996200018,23.632419969000182],[11.456640009000068,23.443159956000102],[11.72650009300014,23.238570188000097],[11.813760055000046,23.127030032000107],[11.922180258000083,22.87055996300012],[12.050729928000067,22.726829979],[12.485179946000073,22.471659994000163],[12.545589999000185,22.337729922000165],[12.46800004500011,22.272320022000144],[12.345479939000086,22.25593995600002],[12.208929986000157,22.285870039000145],[12.024260046000165,22.372080042000107],[11.762700007000035,22.521970021000186],[11.643219942000087,22.61018999600003],[11.469820033000076,22.87448996100005],[11.345790027000021,22.935020059000067],[11.151629971000148,22.93799004400006],[10.982029980000164,22.908329976000175],[10.670680054,22.734450235999986],[10.520209913000087,22.736319920000142],[10.380259958000067,22.79446001900004],[10.282980059000181,22.90534995800016],[10.287850004000177,23.035730059000116],[10.42771001300008,23.336659955000187],[10.42571993100006,23.473770004000073],[10.36086995100004,23.598030068000014],[10.272610019000126,23.679180201000065],[10.103829753000014,23.747960003000173],[9.893190002999972,23.81479003200019],[9.734999979,23.88370994600018],[9.66233999299999,23.988530012000183],[9.660579969000025,24.06099004000015],[9.60298975600017,24.203169992000085],[9.439559970000118,24.343530074000057],[9.233509940000033,24.362339919000192],[9.082549935999964,24.268350010000063],[8.856159920000096,24.291289988000074],[8.78344994400004,24.40121005700007],[8.647749991000069,24.384669988000155],[8.603530079000052,24.453169919000118],[8.514689985000132,24.518879933000107],[8.403380062999986,24.520629923000115],[8.367260061000138,24.3687899950001],[8.322929785000042,24.32795001800008],[8.123599846000104,24.370429973000057],[8.117290058000094,24.241029951000087],[8.203619931000048,24.117489985000077],[8.29980991400015,24.11258008400017],[8.518559960000118,24.14964003200015],[8.532789941999965,24.10253004800012],[8.422639990999983,23.98366006800012],[8.570499932000132,23.878189960000157],[8.552380084000163,23.773429916],[8.424570050000113,23.66171004299997],[8.289760054000169,23.63086993700017],[8.406059967000033,23.546820227000126],[8.316439927999966,23.396330020000164],[8.377830060000122,23.381680054000014],[8.583679955000036,23.52330994400012],[8.801939961000187,23.553830046000087],[8.920370067000022,23.492800051000188],[8.899539864000019,23.4235499240001],[8.731100021000145,23.37393007100013],[8.814219994000041,23.277389984000024],[8.827649965999967,23.218739955000046],[8.777690042000017,23.14636001700012],[8.626749752000023,23.10372991700001],[8.520610065000028,23.01656993400013],[9.072474235000072,22.405057545000147],[9.160646287000134,22.35114875500011],[9.334165256000176,22.29000638400015],[9.818893163999974,22.210033068000087],[10.044864459000166,22.146802508000064],[10.23129513400005,22.026487644000042],[10.454847224,21.742349054000044],[10.55622397500008,21.63561347600006],[10.673424566000108,21.559495535000167],[10.965510894999966,21.462441446000184],[11.17633317900004,21.435079125000073],[11.37547431900009,21.433906199000035],[11.701519873000052,21.475086368000177],[11.918194530000164,21.53126587700018],[12.179454267000153,21.635557435000123],[12.402315117000114,21.7803216100001],[12.546704838000153,21.91143721500015],[12.824238630000082,22.134798204000163],[12.967385694000086,22.231528136000065],[13.300103897000156,22.42494775400013],[13.74631063400011,22.633390790000135],[14.11781597200013,22.76957313200012],[14.537897454000017,22.88635088900014],[14.909081282000159,22.95472801699998],[15.32178599200006,23.012522049000154],[15.578104622000183,23.011653074000094],[15.771593620000147,22.9373222210001],[15.980830678000132,22.770408809000116],[16.211103827000045,22.521555462000094],[16.517059614000175,22.093769944000087],[16.559339962000138,22.109090018000074],[16.91847983700012,22.11364999100016],[17.395679824000126,22.04242016700016],[17.974119807000022,21.85383008600013],[18.03939980500013,21.907639918000086],[18.30756992000005,21.928619914000137],[18.45264980200011,21.97153006200017],[18.60349979299997,22.055579948],[18.66841982900013,22.1237600500001],[18.70558979000009,22.245369957000037],[18.766269857,22.270300017000068],[18.918329810000046,22.280410075000077],[19.014599882000084,22.353789983000183],[18.980309961000046,22.435810007000157],[18.863099849000037,22.594829966000134],[19.068399857000088,22.76161997400004],[19.189019828000028,22.78889004300015],[19.330579838000176,22.741340009000112],[19.399199814000042,22.816909957],[19.574999932000082,23.079139927000085],[19.687569805000123,23.060920101000136],[19.690270127000076,22.967850071000043],[19.637829907000082,22.72114999100006],[19.576499798000043,22.499090065000132],[19.555829949000156,22.369950024000104],[19.56613979000008,22.13376995300007],[19.6001598740001,22.055319966000184],[19.571859911000104,21.859379996000143],[19.499649832000102,21.792799915000046],[19.10878992700009,21.55897992000007],[19.062720045000162,21.385199983000064],[18.959069807000162,21.079900215000123],[18.94618989800017,20.999179923000042],[19.548571412000058,21.02799262100018],[20.848225374000037,21.15828920900009],[22.255986637000092,21.03031091200006],[22.702152391000084,21.01277587100003],[23.06935123500017,21.00591837400009],[23.51037884700014,21.0079051190001],[24.007265135000182,21.02555252700006],[24.3013966150001,21.04471645300015],[24.788329518000182,21.09258485500004],[25.56260141100006,21.229529752000133],[25.952695843000186,21.30458231300014],[26.388813853000045,21.367590179],[26.65426360500004,21.376258481000093],[26.963446309000062,21.363434626000185],[27.253519551000124,21.367520165000087],[27.57386436200011,21.348716245000162],[28.266246910000064,21.290478461000077],[28.919804269000053,21.264595001000032],[29.73513325100015,21.248417839000183],[29.96808438900007,21.264595001000032],[30.547226800000146,21.348716245000162],[30.699996663000093,21.397952268000154],[30.75781308200004,21.549500564000027],[30.73814944300011,21.761111334000077],[30.618061792000162,22.00243957900011],[30.5157094220001,22.24606362500009],[30.479655954000066,22.380721998000183],[30.468540232000123,22.55608952000017],[30.524934411000174,22.80258496300013],[30.58633141000007,22.959558183000127],[30.705809436000095,23.156885572000135],[30.873553687000026,23.27558437800002],[31.051819442000067,23.336518617000024],[31.208263328000157,23.368171098000175],[31.58388942900001,23.418706480000083],[31.89491146400013,23.48609630400017],[32.04821790000017,23.551475735000054],[32.163979895000125,23.63884899100009],[32.67837056000013,24.603331488000094],[32.727084350000155,24.731205188000047],[32.680084555000064,24.846022355],[32.38985059700008,25.183664023],[32.338195609000024,25.3272681520001],[32.32702655600002,25.529256597000142],[32.35258851100019,25.644022453],[32.44490059000009,25.754111208000097],[32.487010601,25.860357195000176],[32.20586061300003,25.88913008900016],[32.09628650700017,25.93292687500019],[31.81978445300018,26.132942889000162],[31.694143580000116,26.261188858000082],[31.43159253300007,26.641951730000187],[31.364534457000104,26.72209814700011],[31.185312603000057,26.886898936000023],[31.005721789000063,27.08526900900017],[30.78033659300013,27.38248918800008],[30.687206122000077,27.653847106000114],[30.635776591000138,27.905840973000068],[30.60296244500006,28.22842874300011],[30.61238253099998,28.368609871000046],[30.667577531,28.63636406900008],[30.704698466000025,28.754096113000116],[30.798909960000117,28.958384936000186],[30.626904886000148,28.98711636300004],[30.468908719000126,28.970700734000104],[30.37065961600001,28.937737673000072],[30.28892344899998,28.8655051450001],[30.075047359000052,28.51002483500008],[30.015146255000047,28.44468498200007],[29.891455395000094,28.38902211800007],[29.765999744000112,28.377458239000134],[29.544205622000106,28.40690119700014],[29.01249614500017,28.540724095000144],[28.789539426000033,28.555775407000056],[28.679606414000148,28.5214728090001],[28.593310060000192,28.427208636000046],[28.497866953000084,28.163152391000153],[28.429216566000093,28.09354508700011],[28.254317695000054,27.995660236000106],[28.09633372500008,27.95000056300006],[27.959230559000105,27.935967870000127],[27.831090933000155,27.95079243500004],[27.751582168000027,27.985456360000114],[27.691318148,28.061692611000183],[27.55211654600015,28.293695280000065],[27.479042889000084,28.362831063999977],[27.06406489000011,28.660739582000133],[26.937477564000176,28.72450913700004],[26.718071970000153,28.803518300000064],[26.648269962000143,28.777530069000136],[26.611740544000156,28.86731715500008],[26.44649358600003,28.966465330000176],[26.366750140000136,28.938630232000094],[26.32209282900004,29.041105785000184],[26.204409794000128,29.107217914000103],[26.04019431500012,29.142545803000075]],[[24.99369980200015,22.035069925000073],[25.027309935000062,22.083579972000052],[25.198909863999972,22.05064998100005],[25.269359920000113,21.9441600130001],[25.18773981300012,21.824660057000017],[25.021169831000066,21.80597993800012],[24.98916992900007,21.779340197000124],[24.83609979700003,21.80248999100013],[24.78195992800005,21.930690085000094],[24.817809914000122,22.018380064000155],[24.99369980200015,22.035069925000073]]]},"properties":{"objectid":218,"eco_name":"East Sahara Desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Palearctic","eco_biome_":"PA13","nnh":2,"eco_id":822,"shape_leng":81.1761409611,"shape_area":137.457208457,"nnh_name":"Nature Could Reach Half Protected","color":"#D47A55","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":1544403.878801744,"percentage":5.8539664095038715}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[24.58826991800015,12.770310016000053],[24.620639990000086,12.83683007400009],[24.55708991700004,12.932540051000046],[24.565200037000125,13.018719954000062],[24.527209999000092,13.068709977000083],[24.580720069000165,13.150210038000125],[24.560790032,13.20675997300009],[24.45409993000004,13.35013017200015],[24.354700047000108,13.289280069000029],[24.30816001500017,13.11580992800009],[24.213159927,13.006139983000025],[24.190930013000127,12.93652003800014],[24.26208995700017,12.813349890000097],[24.41898993100017,12.76933997000009],[24.510660074000043,12.707060057000149],[24.58826991800015,12.770310016000053]]],[[[22.527620008000042,15.826840062000144],[22.362330042000053,15.674860022000075],[22.358080040000118,15.614029986000105],[22.279990014000077,15.589760001000116],[22.177480033,15.66267996800002],[22.133770051000113,15.56147007200019],[22.083499981000102,15.530130069000109],[22.04728,15.403280047000123],[21.990429951000124,15.424840029000165],[21.87180006300008,15.343050063000021],[21.854619986000102,15.199640083000133],[21.87197995500003,15.10576001000004],[21.803679983000166,14.958800060000044],[21.871699907000107,14.845440032999988],[22.00773993100006,14.80657007100018],[22.124349991000145,14.829250068000078],[22.211800054000093,14.894019959000161],[22.275999993000084,15.005490060000113],[22.209709993000047,15.092189927000163],[22.27964976700008,15.13267997600019],[22.323629940000046,15.07305004400007],[22.387990056999968,15.086380036000037],[22.34323997200005,15.270879940000157],[22.305529983000042,15.338599925999972],[22.375759837000032,15.401329922000116],[22.456949927000096,15.419640047000144],[22.55716003000009,15.623020030000191],[22.57891997100012,15.774620042000095],[22.527620008000042,15.826840062000144]]],[[[23.833374260000085,17.51992273100018],[23.875580034000052,17.56477003600014],[23.96439002800014,17.582709815000044],[24.06734973900012,17.74347008300009],[24.007609970000033,17.851109989000122],[23.859829943000136,17.828049965000105],[23.730690078000066,17.856650042000126],[23.607729922000033,17.75372993500008],[23.464799949000167,17.60292007600009],[23.440149937000058,17.654669946000183],[23.323019913999985,17.649710055000014],[23.24235999600012,17.49548998500012],[23.187059979000026,17.487929928000142],[23.004470067000057,17.70351003000019],[22.98385003200019,17.798480019000067],[22.902829801999985,17.76833994400016],[22.96669987900009,17.572530052000047],[22.833110053000155,17.517880077000086],[22.830749977000096,17.42932003100009],[22.76502993000014,17.382640063999986],[22.603650072000164,17.395609920000027],[22.66454998800009,17.475999999000067],[22.61172005900005,17.572659955000063],[22.451379951000035,17.533800027000154],[22.346670073000098,17.46773005200015],[22.147050054000147,17.544339751],[22.04315990100008,17.408749986000146],[21.942233299000065,17.42278360800009],[21.963299994000067,17.311129841000024],[21.88738997500019,17.275849983],[21.86596992900013,17.21823002200017],[22.017789967000112,17.132250077000037],[22.023299920000113,17.014850040000056],[22.202889924000033,17.047199870000043],[22.253309963000106,17.002160056000093],[22.25662001900008,16.908219960000054],[22.422770018000108,16.79699998400008],[22.553629950000072,16.848530004999986],[22.56014990600005,16.71320004600011],[22.60045002900017,16.654570084000113],[22.47037004100008,16.644129987000042],[22.47780002000013,16.548950007000087],[22.404539806000173,16.532889945000022],[22.357179874000053,16.46913991300005],[22.36729996600002,16.383550028000172],[22.454480015000172,16.442630074000135],[22.56757002700016,16.44663998500016],[22.634290044000124,16.39144998100005],[22.545420027000148,16.332739929000127],[22.58384993800007,16.22670004400004],[22.689790019000043,16.159250073000067],[22.750429954000026,16.162440083000092],[22.757640084000116,16.066390035000097],[23.113310077000108,15.979989929999988],[23.104900019000013,16.13008004400018],[23.01906001000009,16.200590122000108],[22.988150024,16.313469967],[23.04052001200006,16.355570070000056],[23.13507001800008,16.329679998000188],[23.236759921000157,16.237920084999985],[23.340679997000052,16.226309984000125],[23.45167994800005,16.278199966000045],[23.352829951000103,16.388820066000108],[23.284770071000025,16.42459999700003],[23.15901999800019,16.442310070000133],[23.165179817000137,16.540560015000096],[23.396439954000186,16.711949952000055],[23.388010006000115,16.81136004500013],[23.488410035000186,16.848210000999984],[23.455790015000048,16.94310007700011],[23.657220048,16.992330045000017],[23.760349970000107,17.053740067000035],[23.67896995500007,17.124309817000096],[23.795490069000152,17.312269922000098],[23.80443998000004,17.49086998900009],[23.833374260000085,17.51992273100018]]]]},"properties":{"objectid":219,"eco_name":"East Saharan montane xeric woodlands","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Palearctic","eco_biome_":"PA13","nnh":2,"eco_id":823,"shape_leng":23.836105312,"shape_area":2.35131477481,"nnh_name":"Nature Could Reach Half Protected","color":"#FA774D","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":27933.09471820375,"percentage":0.10587865029238626}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[35.040000000000134,1.25416666700005],[35.06,1.38666666600011],[35.049166666000076,1.476666666000028],[34.98916666600019,1.4675],[34.91166666700019,1.379166667000106],[35.040000000000134,1.25416666700005]]],[[[33.68750000000017,7.974166667000191],[33.583333333000155,7.95],[33.46083333299998,7.958333333000041],[33.59166666599998,7.85],[33.775,7.93],[33.68750000000017,7.974166667000191]]],[[[29.115533543000083,9.377667288000112],[28.860439540000073,9.490954074000058],[28.547920448000013,9.599248431000149],[28.176609513000187,9.670742377000124],[27.762649443000157,9.732065219000049],[27.324624593000067,9.810277428000177],[27.02808283500002,9.810277428000177],[26.89193474700005,9.825551814999983],[26.786785381000186,9.858849115000055],[26.393329211000037,10.030143126000098],[26.140452914000093,10.095837686000039],[25.85606662900011,10.106609894000087],[25.739726785000187,10.089374361000182],[25.580298110000115,10.022586673000035],[25.3445272780001,9.955682890000162],[25.02303159600001,9.948825929000066],[24.41509249300009,10.04687391200008],[23.760044732000097,10.258786288000067],[23.46230930200005,10.277604111000187],[23.100557685000126,10.132914535000111],[22.767774597000084,10.1057028030001],[22.159835494000163,10.08609216700006],[21.89975560000005,10.158011243000033],[21.59263244100015,10.38135761400008],[21.26904152500009,10.640423466000186],[21.085208451000085,10.647926779000102],[20.88665055200005,10.604813957000033],[20.739780498000187,10.542519317000028],[20.723459591000108,10.490111802000115],[20.769329556000116,10.421296713],[20.98188054000019,10.414128174000098],[21.05091054100012,10.374051109000106],[21.064039452000088,10.25212844900011],[20.901100451000048,10.079960637000056],[20.659389497000063,9.94404606500018],[20.44791944399998,9.924925435000148],[20.342390445000092,9.954554290000033],[20.104759466000075,9.943067058999986],[19.99773949400003,9.965196624000043],[19.86352946600016,9.940011352000056],[19.626640453000107,9.836007692000123],[19.55446053200012,9.849887620000118],[19.5628504820001,9.963914864],[19.675090536000084,10.084220152000114],[19.7409494960001,10.258388222000178],[19.737451560000068,10.511513483000158],[19.79444146100019,10.642553308000174],[19.763219542000115,10.680818708000118],[19.94408426500013,10.875340508000022],[19.937695401000155,11.008632011000032],[19.83810506800006,11.105753993000064],[19.464597478000087,11.245809441000063],[18.615272472000186,11.391398238000022],[17.935815451000053,11.48845564800007],[17.368085110000095,11.52251654100013],[17.303299593000133,11.498791067000127],[17.293750250000073,11.36263267400011],[17.44156043600009,11.188614351000126],[17.535588492000045,11.046217814000101],[17.705730532000075,10.925051608],[17.853010461000167,10.77109331400004],[17.95138953000003,10.610923358000036],[18.008735494000177,10.454650485000172],[17.950080444000037,10.28940696300009],[17.814559486000064,10.204311703000087],[17.586509526000157,10.20395295700007],[17.522880487000123,10.277636592000135],[17.54334054500015,10.340453424000145],[17.428800497000054,10.373391118000143],[17.267509546000156,10.516890977000116],[17.024200499000187,10.675898866000182],[16.92584054100007,10.88241538200009],[16.79487045400009,11.078971011000021],[16.589040584000145,11.216931438000131],[16.440650555000047,11.284776742000076],[16.27882953200009,11.405519398000138],[16.19507956700005,11.437976977000062],[16.151216565000084,11.522109324000098],[15.970239541000183,11.452059245000157],[15.703309452000155,11.221544167000161],[15.57283959700004,10.981222765000041],[15.639089489000071,10.81838887300006],[15.657640485000059,10.566356444000121],[15.683219539000106,10.416747016000102],[15.758609561000071,10.234770868000055],[15.73383952800009,10.084630363000088],[15.592439504000026,9.977040756000179],[15.432900538000183,9.957405310000183],[15.245400549000067,10.007115696000085],[15.00341953000003,10.009025596000015],[14.744788531000154,9.996177480000142],[14.489990577000071,10.081104431000028],[14.307991463000121,10.23882435700017],[14.247326433000126,10.493603536000023],[14.259460579000063,10.809044727000185],[14.147878505,10.912036524000143],[14.091039478000141,10.70492791100014],[14.103679556000031,10.599455238000075],[14.041600498000093,10.460564923000106],[13.996749437,10.44121613800013],[13.915989465000052,10.498541315000125],[13.951020456000094,10.305175669999983],[13.914299506000077,10.26390753700008],[13.781270488000075,10.202232153000125],[13.759099516000049,10.08767098200019],[13.652919578000024,9.967726618000086],[13.585530585000129,9.951607715000023],[13.483329537000145,10.016895030000114],[13.480469464,9.937143735000177],[13.397330539000109,9.90227418000012],[13.30292047,10.049842782000042],[13.28582943400005,10.143252220000022],[13.223353578000172,9.981188457000087],[13.173978468000143,9.775473084000055],[13.099916474999986,9.610901791000117],[12.877729488000114,9.413415603000033],[12.869500471000038,9.108958224000105],[12.820608494000112,8.945997766000119],[12.83421450200018,8.924971259000074],[12.921565499999986,8.954087308000112],[13.150682477000032,8.99103876100014],[13.246763563000115,9.020599386000015],[13.416751577000127,8.99103876100014],[13.59413242900007,8.887573889],[13.764121449000186,8.673255330000131],[13.904547497000124,8.518058525000129],[13.99323758800017,8.525448682000103],[14.118881478,8.458936436000158],[14.488423496000166,8.16332364200008],[14.554941442000029,8.037688972000069],[14.739711445000182,8.11159154100011],[14.924482454000099,8.11159154100011],[14.954045594000092,7.985956536],[14.739711445000182,7.675563932000045],[14.998391562000052,7.646003139000129],[14.998391562000052,7.468635865000067],[14.894919481000159,7.269097283000178],[14.754493434000153,7.069559708000099],[14.747102440000049,6.995656300000064],[14.857965514000114,6.980875149000155],[15.168380582000168,7.054778725000062],[15.419668530000138,7.143462445000182],[15.545312588000172,7.209974523000085],[15.744865587000106,7.232145831000082],[15.900073455999973,7.158242423000047],[16.09962444200005,6.847850824999966],[16.24005149500016,6.581799327000112],[16.39525953200001,6.345310467000047],[16.653938475000132,6.212285305000137],[17.001308515000062,6.19011399700014],[17.407802489000176,6.227065282000126],[17.872863502000143,6.416324298000177],[18.020416513999976,6.377497143000085],[18.191268535000177,6.439620624000042],[18.47861056900001,6.486213109000118],[18.657230434999974,6.532805930000109],[19.084360486000037,6.618225570000163],[19.38723351700014,6.625990899999977],[19.98521659500011,6.680349051000121],[20.948200544000088,6.688114381000162],[21.196712574000173,6.657052892000024],[21.71703547499999,6.618225570000163],[22.097570527000073,6.633756398000173],[22.633424591,6.618225570000163],[22.827573441000027,6.602695580000045],[23.091617473000042,6.625990899999977],[23.483268605000035,6.589450664000026],[24.467224578000128,6.72012202000019],[24.959203571000103,6.81236134400018],[25.72791847300016,6.781614678999972],[26.465887548000126,6.81236134400018],[27.111608581999974,6.996840160000147],[27.84957547800002,7.027586825000128],[28.495298524000077,7.150572814000043],[28.803291557000023,7.317518700000107],[28.9067805680001,7.41568755000003],[29.01021744500008,7.482915778000063],[29.175714602000085,7.555316646000108],[29.42610149700016,7.696167321000132],[29.425743589000035,7.842888010000138],[29.458162444000152,8.080222772000184],[29.40327858000012,8.238905442000089],[29.240915583000117,8.36905594700005],[29.086284557000113,8.439602067000123],[28.754873493000105,8.64484839000005],[28.27518253800008,8.892733453000062],[27.845031481000035,9.079752153000072],[27.820425566000097,9.173895678000122],[27.849866498000154,9.225473049000016],[27.977687504000187,9.336878098000113],[28.222961605000023,9.373882356000138],[28.406572559000097,9.38560159800005],[28.930053593000025,9.38560159800005],[29.115533543000083,9.377667288000112]],[[16.35106058300005,10.694248528000173],[16.402879520000056,10.681188685000052],[16.538059502000067,10.570387301000096],[16.689540441000133,10.533419755000125],[16.822299562000126,10.481412393000028],[16.937070447,10.367680360000122],[17.05837050000008,10.148165859000073],[17.11491951300013,9.97260706500009],[17.113729451000097,9.699414521000165],[17.256130442000085,9.284158944000126],[17.353160527000057,9.060588776000145],[17.379480541000135,8.894812333000118],[17.351320531000056,8.827928266000072],[17.195850476000146,8.767055700000128],[16.966360505000182,8.760394937000171],[16.838649470000064,8.805815967000058],[16.497789486000045,9.02060039200012],[16.348119541000074,9.180024191000143],[16.182460444000185,9.290825239000071],[15.902239507000047,9.622569736],[15.806759570999986,9.691428914000142],[15.755370458000016,9.818501919000028],[15.758469583000021,9.98429931700008],[15.825710552000146,10.087100007000117],[15.975150498000176,10.237590541000031],[16.038160449000088,10.369811375000154],[16.073799463000114,10.55710818700004],[16.197969479999983,10.66187996500014],[16.32169944700007,10.718585887000074],[16.35106058300005,10.694248528000173]]],[[[37.17000000000013,12.326666667000097],[37.07416666600017,12.246666667000113],[37.025,12.163333334000072],[37.0025,12.0175],[37.005000000000166,11.875833334000106],[37.079166666000106,11.79916666700018],[37.277500000000146,11.792500000000189],[37.291666667000186,11.645],[37.496666667000056,11.439166666],[37.62916666600012,11.433333334000167],[37.69916666700004,11.2725],[37.80833333400017,11.217500000000143],[37.75416666700005,11.156666667000138],[37.7691666660001,11.103333333000137],[37.892500000000155,11.185833334000108],[38.03250000000014,11.120833333],[38.05166666700018,11.075833333000105],[38.2075,11.064166666000176],[38.306666667000115,11.0808333330001],[38.38833333300016,11.031666667000081],[38.43583333300012,10.946666667000102],[38.475833333000026,10.705000000000155],[38.44166666700016,10.68416666600018],[38.34083333299998,10.72416666700019],[38.35500000000019,10.53],[38.44166666700016,10.524166667000088],[38.4575,10.41166666600003],[38.32333333300011,10.23250000000013],[38.14166666600005,10.089166666000153],[38.05583333300012,10.108333333000132],[37.70916666699998,9.9725],[37.662500000000136,10.0175],[37.585833334000085,10.164166667000075],[37.51583333300016,10.15],[37.43666666600012,10.21833333300009],[37.36333333300007,10.1675],[37.30000000000018,10.194166667000161],[37.2375,10.339166666000096],[37.186666667000054,10.352500000000191],[37.1991666670001,10.455],[37.3875,10.640000000000157],[37.11083333300019,10.626666667000109],[37.12083333300018,10.55166666700012],[37.005000000000166,10.43750000000017],[36.93333333400011,10.475],[36.83333333300004,10.48416666700001],[36.80333333400006,10.551666666000017],[36.83083333400003,10.648333333000153],[36.65833333300009,10.643333333000157],[36.62833333300017,10.75],[36.53416666700008,10.711666667000088],[36.47666666700013,10.742500000000177],[36.49166666700006,10.848333333000028],[36.62500000000017,10.905833332999975],[36.60166666700019,11.081666666000046],[36.57083333300005,11.12],[36.5725,11.226666666000085],[36.630000000000166,11.249166666000121],[36.76083333300011,11.369166667000115],[36.78916666700019,11.476666667000131],[36.68916666700005,11.57666666700004],[36.73166666700007,11.65],[36.8425,11.613333333000014],[36.90083333300015,11.704166666000106],[36.941666667000106,11.866666667000061],[36.825,11.84],[36.730833334000124,11.935833333000062],[36.72916666600008,11.999166667000054],[36.810833333000176,12.1525],[36.906666667000025,12.134166667000102],[36.93333333300018,12.250000000000114],[37.01833333300016,12.323333333000164],[36.9583333330001,12.451666666000051],[37.041666667000015,12.6],[37.0808333330001,12.603333333000023],[37.11833333300012,12.711666667000088],[37.178333333000126,12.696666666],[37.19833333399998,12.575],[37.27250000000015,12.6975],[37.366666667000175,12.714166667000143],[37.368333333000066,12.761666667000156],[37.55083333300007,12.812500000000114],[37.6075,12.928333333000182],[37.70000000000016,12.98583333300013],[37.70333333400009,13.123333333000062],[37.65083333400008,13.28],[37.585,13.284166667000079],[37.51333333400015,13.323333333000107],[37.47083333400019,13.225000000000136],[37.39333333300016,13.253333334000047],[37.36333333300007,13.328333333000103],[37.270833332999985,13.360000000000184],[37.19916666600005,13.33083333400009],[37.18333333300012,13.415],[37.27666666700003,13.459166667000034],[37.433333333000064,13.499166667000111],[37.3925,13.625000000000114],[37.3375,13.635833333],[37.22801368900002,13.763333334000095],[37.1697794910001,13.846370667000087],[36.99852343600003,14.268333333000044],[36.97999954700009,14.546185160999983],[36.909751487000165,14.850574143000074],[36.816085563000115,15.037892077000095],[36.58192854800012,15.24862150500013],[36.441429578000054,15.272036184000058],[36.300933458000145,15.201791644000082],[36.09018760200007,15.014476560000105],[35.996524528000066,14.733502927000018],[35.97311051900016,14.569600510000043],[35.809196535000126,14.218382506000069],[35.66870158900019,13.77350712700013],[35.621868543000176,13.492533663000188],[35.481372590000035,13.188145016000021],[34.755474461000176,12.392052639000042],[34.45106553100004,12.368638463000082],[34.21690348700008,12.27498175900007],[34.12324158600012,12.204737555000065],[33.935913593,12.111079845000177],[33.81485745400005,12.08793238100003],[33.62245958300008,11.82197057000019],[33.54584161200006,11.637733153000056],[33.47237054300018,11.300406476000092],[33.476589490000094,11.147317050000083],[33.53102156900013,10.875424874000089],[33.65298060700013,10.53491978000011],[33.713409603000116,10.17416400899998],[33.71590053699998,9.92430048100016],[33.69248954600016,9.65225458100008],[33.60718155300003,9.230605624000077],[33.60440060500014,9.092401283000186],[33.64170057700011,8.907908554000073],[33.644599542000094,8.649314938000146],[33.627948557000025,8.506246244000067],[33.56750000000011,8.451762919000032],[33.679166667000175,8.438333333000116],[33.69166666700005,8.379166667000106],[33.77,8.363333333000128],[33.903333334000024,8.4825],[34.024166666000156,8.49000000000018],[34.1400000000001,8.595],[34.15833333300009,8.681666667000059],[34.24666666700017,8.689166667000109],[34.191666667000106,8.465],[34.27500000000015,8.398333334000142],[34.23083333400007,8.269166667000036],[34.29,8.237500000000125],[34.40666666700014,8.229166667000129],[34.459166666000044,8.229166667000129],[34.40666666700014,8.229166667000129],[34.35083333400013,8.172500000000127],[34.09916666700008,8.091666666000094],[34.11083333300007,7.99],[34.006666667,7.905833333000032],[34.095,7.85],[34.10666666700013,7.77583333299998],[33.975000000000136,7.810000000000173],[33.899166666999974,7.783333333000087],[34.09083333300015,7.625833333000173],[33.959166667000034,7.565833333000114],[34.03500000000014,7.458333334000031],[33.95666666600005,7.446666666000169],[33.93916666700005,7.508333333000166],[33.87500000000017,7.51416666700004],[33.795833334,7.603333334000069],[33.67166666700007,7.693333333999988],[33.54197064100015,7.701666666000108],[33.62330246800008,7.492836263000129],[33.6376995600001,7.243523258999971],[33.62607553600003,7.124226648000104],[33.52650053800011,6.603735606000157],[33.45967849700003,6.363097368000126],[33.393497504000095,6.217614686000104],[33.235031590000176,5.999503652000101],[33.09556946099997,5.84252234000013],[32.79841657700018,5.545816043000059],[32.59310956900015,5.32711525700006],[32.451080567000076,5.201224436000075],[32.31560856000016,5.11631860600005],[31.669931447000067,4.789387670000053],[31.479839605000052,4.409233827000037],[31.25597556800011,4.138261817000171],[30.973926537000068,3.913904420000108],[31.07788460000006,3.745758078000051],[30.98000000000019,3.700833333000105],[30.874166666,3.54],[30.93333333300012,3.484166667000181],[30.935833333,3.401666665999983],[30.829166667000038,3.255833333000055],[30.768333333000157,3.033333334000019],[30.875833333000173,2.89416666700015],[30.952500000000157,2.796666666000021],[30.876666667,2.681666667000172],[30.95166666700004,2.624166667000054],[30.90833333300003,2.534166667000079],[30.996666667000113,2.46666666700014],[30.965733113,2.406666667000081],[31.01781652900013,2.335018896000065],[31.052537557000107,2.175313801000073],[30.990039573000104,2.057271626000102],[30.84421155600006,1.869791586000133],[30.698383540000123,1.751749411000105],[30.608108599000047,1.640650805000064],[30.524778567000055,1.592044651000037],[30.46650556400016,1.601756594999983],[30.355983465000122,1.466225746000021],[30.24023256800018,1.291034917000161],[30.15836149000006,1.118066969000154],[30.17333333300013,0.918333334000181],[30.159522476000063,0.820808974000045],[30.227829594000127,0.828053669000042],[30.23888134500004,0.760401530000081],[30.340960222000092,0.797878040000057],[30.40663334500016,0.886393989999988],[30.614166667000177,0.976666667000075],[30.69000000000011,1.105000000000132],[30.75333333300017,1.109166666000135],[30.7825,1.245833333000121],[30.844166667000025,1.328333334000092],[30.942500000000166,1.359166667000125],[31.094166666000035,1.5025],[31.169166667000127,1.511666667000043],[31.286666667000134,1.650833333000037],[31.553333333000126,1.871666666000181],[31.643333333000044,1.959166666999977],[31.800833333000128,2.025833333000094],[31.908333333000144,2.241666666000071],[31.857500000000186,2.4491666670001],[31.75500000000011,2.395000000000152],[31.6825,2.582500000000152],[31.703333333000103,2.611666667000179],[31.715,2.701666667000154],[31.693333333000112,2.71000000000015],[31.748333333000176,2.803333334000058],[31.685833334000165,2.8425],[31.605833333000078,3.003333334000104],[31.746666667000113,3.150833333000094],[31.858333333000076,3.180000000000121],[32.01,3.13583333400004],[32.0625,3.043333333000078],[32.22333333300014,3.035],[32.328333333000046,3.04916666600019],[32.4625,3.008333333000166],[32.47583333400007,2.920000000000186],[32.525,2.808333333000121],[32.68083333400011,2.755],[32.849166667000134,2.62916666700005],[32.86166666700018,2.509166666000056],[32.9491666670001,2.419166666000081],[32.965000000000146,2.311666667000168],[32.94166666700016,2.260833333000051],[33.0175,2.22],[33.074166667000156,2.1475],[33.071666667000045,2.04166666600014],[33.17333333300007,1.993333333000066],[33.33416666700009,2.016666667000152],[33.3933333330001,1.980833333000021],[33.42833333400006,1.899166667000145],[33.420000000000186,1.785833334000188],[33.425000000000125,1.791666666000026],[33.42166666600002,1.76],[33.433333334000054,1.74583333400011],[33.455833333000044,1.735000000000127],[33.4325,1.741666667000061],[33.46083333299998,1.69583333300011],[33.45916666700015,1.686666666000121],[33.47333333400013,1.67],[33.53,1.54],[33.62083333300018,1.410833334000188],[33.7125,1.4675],[33.70953047500018,1.37],[33.763333333000105,1.350833334000129],[33.721666667000136,1.265833333000046],[33.806666667000115,1.15],[33.85833333400012,1.116666667000118],[33.88833333300016,1.113333333000185],[33.8975,1.110000000000127],[33.95166666600005,1.08416666700009],[33.958333332999985,1.076666666999984],[33.99416666600001,1.046666667000068],[34.1966666670001,1.130000000000109],[34.4,1.300833333000185],[34.413333333000026,1.408333334000076],[34.510000000000105,1.406666667000138],[34.62416666600018,1.435833334000108],[34.7058333330001,1.36],[34.6991666670001,1.291666667000015],[34.82916666600005,1.468333334000135],[34.86083333300013,1.469166666000149],[34.7975,1.541666666000083],[34.7225,1.5575],[34.719166667000025,1.574166666999986],[34.77166666699998,1.634166666000112],[34.74500000000012,1.684166666000181],[34.626666667000165,1.703333334000092],[34.64166666700015,1.843333333000032],[34.7325,1.80916666700017],[34.8250000000001,1.879166667000163],[34.860000000000184,1.896666666000158],[34.870000000000175,2.023333333000153],[34.745833333,2.189166666000062],[34.705,2.290833332999966],[34.54750000000013,2.351666666000142],[34.425000000000125,2.469166667000025],[34.399166666000156,2.40166666600004],[34.27416666700003,2.421666665999965],[34.364166666000074,2.51],[34.3375,2.65],[34.25250000000011,2.755833333000169],[34.0875,2.83083333400009],[34.14083333400009,3.15166666600004],[34.10500000000019,3.224166667000077],[34.12166666600018,3.331666667000093],[34.20583333400015,3.408333333000144],[34.3425,3.448333334000154],[34.364166666000074,3.485000000000127],[34.36416666700018,3.486666667000065],[34.36333333300013,3.489166667000177],[34.36250000000018,3.489166667000177],[34.36333333300013,3.491666666000128],[34.364166666000074,3.496666667000056],[34.365833334000115,3.5],[34.36583333300001,3.500833333000173],[34.36750000000018,3.511666667000043],[34.26500000000016,3.556666667000115],[34.279166666000094,3.556666666000183],[34.325,3.585],[34.31416666700011,3.6125],[34.312500000000114,3.614166666000131],[34.290833334000126,3.616666666000015],[34.28166666600015,3.61500000000018],[34.25083333400005,3.724166666000031],[34.25000000000017,3.725833333000026],[34.24833333300006,3.7275],[34.24250000000012,3.721666667000079],[34.1975,3.7275],[34.11500000000012,3.666666667000186],[33.96333333300015,3.682500000000118],[33.94916666600017,3.775000000000148],[33.831666667000036,3.7875],[33.834166666000044,3.830833334000033],[33.966666667000084,3.822500000000105],[34.07250000000016,3.846666667000136],[34.11500000000012,3.856666667000127],[34.16083333300014,3.850833333000082],[34.16416666599997,3.850833333000082],[34.16583333300014,3.851666667000131],[34.19833333400004,3.866666667000061],[34.18000000000018,3.865000000000123],[34.175833334,3.863333333000128],[34.0925,3.865833333000069],[34.09,3.865000000000123],[34.09,3.865833334000115],[34.08333333300004,3.898333333000039],[33.99250000000018,3.940833333000057],[33.93250000000012,4.059166667000056],[33.90666666700008,4.056666667000172],[33.93333333400017,3.975833333000139],[33.82000000000011,3.95666666600016],[33.77833333300009,3.894166667000093],[33.615,3.8525],[33.80120129500017,4.037500000000136],[33.654220459000044,4.093133315000102],[33.54571554800009,4.110452003000091],[33.433261588000164,4.230096127000024],[33.372009490000096,4.227317191000111],[33.26842861200015,4.329694595000149],[33.3239865490001,4.37025881500017],[33.44299649800007,4.35898767000009],[33.33147460599997,4.471155137000039],[33.33537655000009,4.546047777000069],[33.46289061000016,4.561889406000091],[33.634868488000166,4.435569767000175],[33.75546245000015,4.497187316],[33.82916653600006,4.418339088000153],[33.897785489000114,4.241517141000145],[34.00250000000011,4.221666667000136],[34.05703995400012,4.274166666000042],[34.01822010200016,4.35698087500009],[33.86414010200008,4.520425472000056],[33.781312147000165,4.675091200000111],[33.65202011600013,4.707934680999983],[33.42916207500019,4.693478916000061],[33.34925202800008,4.788591724000071],[33.23827110200017,4.809928194000122],[33.15344305800005,5.036352568000041],[33.34178207500008,5.302473971000097],[33.412892130000046,5.456877680000048],[33.57157211900011,5.626520024000115],[33.78030112100015,5.759158278000143],[34.07645045000015,5.906632667000167],[34.21828046600007,5.81155539800011],[34.35622060800006,5.739460973000064],[34.51014569000006,5.706026234000092],[34.57337299600016,5.725652961000151],[34.809379487,5.866905631000066],[35.015251602000035,5.872454954000148],[35.13000000000011,5.691666667000106],[35.138333333000105,5.6125],[35.30333333400017,5.503333333000057],[35.294166666000024,5.3675],[35.35083333400013,5.335],[35.470833333000144,5.406666667000025],[35.545833334,5.417500000000132],[35.67916666700012,5.383333333000166],[35.86166666700012,5.315000000000111],[35.82916666600005,5.233333333000132],[35.864166667,5.175833333000185],[35.83250000000015,5.12],[35.83,5.11833333400017],[35.87000000000012,5.025833333000037],[36.01416666600011,5.03],[36.045,5.17750000000018],[36.105833334000124,5.190833333000171],[36.18333333300012,5.213333333000037],[36.13333333300011,5.279166667000084],[36.18333333300012,5.315833333000057],[36.2033333330001,5.415],[36.185000000000116,5.439166667000052],[36.100833334000185,5.55],[36.21416666600004,5.595],[36.23000000000019,5.5225],[36.23000000000019,5.508333333000053],[36.22916666700007,5.505833333000112],[36.23000000000019,5.465833333000035],[36.228333334000126,5.449166667000043],[36.23000000000019,5.428333334000115],[36.2275,5.42],[36.22250000000014,5.2025000000001],[36.19416666600006,5.14666666700009],[36.16666666700013,5.060000000000173],[36.1675,4.798333333000073],[36.154166667000084,4.713333334000026],[36.224166665999974,4.624166666000065],[36.28,4.444166667000047],[36.37833333400016,4.436666667000168],[36.63666666600017,4.447500000000105],[36.670833334000065,4.5225],[36.64416666700015,4.580833333000157],[36.68250000000012,4.631666667000047],[36.65583333300003,4.710833333000039],[36.74333333400017,4.7725],[36.71416666700003,4.984166667000068],[36.77000000000015,5.068333333000169],[36.826666666999984,5.085833333000039],[36.91500000000019,5.345],[36.875000000000114,5.419166667000127],[36.79250000000019,5.45333333300016],[36.828333333000046,5.605000000000132],[36.88666666700004,5.645],[36.96666666700003,5.624166666000065],[36.925833334000174,5.546666667000068],[36.987500000000125,5.49],[37.00416666600012,5.406666667000025],[37.108333334,5.455833333000101],[37.135,5.3575],[37.31000000000017,5.205833334000033],[37.44,5.247500000000173],[37.47833333400007,5.385833334000154],[37.41416666700013,5.406666666000149],[37.43833333300006,5.588333333000037],[37.40916666600009,5.759166666000112],[37.415,5.865],[37.560000000000116,6.018333333000101],[37.564166667000165,6.10333333300008],[37.62833333300017,6.16],[37.72666666700002,6.198333333000051],[37.77500000000015,6.310833333000062],[37.737500000000125,6.460833333000039],[37.77166666700009,6.5925],[37.83583333400003,6.6675],[37.9275,6.710833334000085],[37.91083333400019,6.875833333000116],[37.935000000000116,6.9125],[37.79083333300002,6.791666666000083],[37.64583333300004,6.797500000000127],[37.574166667000156,6.838333333000151],[37.638333333000105,6.980000000000132],[37.7708333330001,7.11833333300018],[37.75,7.209166666000101],[37.639166667000154,7.255],[37.525,7.245],[37.50250000000017,7.291666667000072],[37.52333333300004,7.401666667000029],[37.5575,7.430833333000066],[37.558333334000054,7.571666666000056],[37.64750000000015,7.62],[37.619166666000126,7.750000000000114],[37.66750000000013,7.778333333000091],[37.73166666700001,7.916666667000072],[37.686666666000065,8.055833333000066],[37.65416666700014,8.09],[37.698333333000164,8.20333333300016],[37.82666666600005,8.24666666700017],[37.85500000000013,8.399166667000088],[37.80583333300018,8.495000000000175],[37.68666666700011,8.53],[37.61166666700012,8.480833334000067],[37.49833333300012,8.51083333300005],[37.298333333000016,8.618333333000066],[37.23500000000013,8.692500000000166],[37.3025,8.78333333300003],[37.40666666600015,8.83333333400003],[37.395833334000145,8.947500000000105],[37.26416666600005,9.029166667000027],[37.21583333300015,9.025833333000094],[37.16166666600003,9.115833333000069],[37.06583333400005,9.170000000000186],[36.88333333400004,9.0275],[36.76416666700004,9.059166666000067],[36.69000000000017,9.02833333400008],[36.59,8.900833333000037],[36.6975,8.821666667000102],[36.698333333,8.644166667000036],[36.525,8.66333333300014],[36.453333333000046,8.726666667000131],[36.43083333300018,8.878333333000171],[36.368333333000066,9.012500000000102],[36.400833333000094,9.15],[36.58750000000015,9.173333333000016],[36.688333334000106,9.229166667000129],[36.75666666700016,9.23250000000013],[36.791666666000026,9.297500000000127],[36.90750000000014,9.243333334000113],[36.97250000000014,9.441666666000117],[36.9325,9.551666666000074],[36.88750000000016,9.588333334000026],[36.981666667000184,9.765],[36.955833333000044,9.870833333000064],[36.90833333300003,9.904166666000037],[36.78916666700019,9.89416666700015],[36.68500000000017,9.73166666700007],[36.65583333300003,9.738333333000128],[36.58166666600016,9.774166667000088],[36.515,9.752500000000168],[36.44250000000011,9.670833334000122],[36.350833333000026,9.790833334000183],[36.250000000000114,9.713333334000083],[36.181666667000115,9.803333333000182],[36.13750000000016,9.986666667],[36.244166666000126,10.06250000000017],[36.30250000000012,10.008333333000053],[36.410833333000085,10.079166666000162],[36.3908333330001,10.174166667],[36.48833333300013,10.2025],[36.505,10.113333333000128],[36.48583333300007,10.013333333000048],[36.574166667000156,10.025000000000148],[36.635000000000105,10.054166666000071],[36.67583333300013,10.125833333],[36.78833333400007,10.001666666000062],[36.91500000000019,10.155833333000146],[37.03750000000019,10.119166667000172],[37.09666666700008,10.000833333000116],[37.215,9.964166666000096],[37.228333334000126,9.844166665999978],[37.32333333400004,9.77333333300004],[37.35,9.686666666000121],[37.46333333299998,9.605],[37.505,9.831666667000036],[37.595,9.8525],[37.60166666700013,9.75],[37.57000000000011,9.71],[37.56333333300012,9.532500000000141],[37.50583333300017,9.534166667000079],[37.57750000000016,9.378333333000057],[37.47583333300008,9.358333334000065],[37.41416666700013,9.2525],[37.5375,9.2075],[37.69416666700005,9.193333334000044],[37.76083333300011,9.138333334000038],[37.86666666700006,9.201666666000165],[37.80583333400011,9.295],[37.83333333300004,9.403333334000138],[37.93833333300012,9.415000000000134],[37.96666666700003,9.45583333400009],[37.889166666,9.543333333000078],[37.73583333300019,9.511666667000043],[37.65583333400008,9.655833333000032],[37.670000000000186,9.752500000000168],[37.70916666699998,9.770833333000155],[37.88,9.65083333399997],[37.89,9.69],[38.00916666699999,9.730833333000078],[38.0675,9.67],[38.059166667000056,9.5125],[38.113333334000174,9.431666667000059],[38.16333333400007,9.4925],[38.16000000000014,9.615833333000126],[38.23500000000013,9.66833333400001],[38.338333334000026,9.635000000000161],[38.36166666700018,9.532500000000141],[38.510833333000164,9.564166667000052],[38.57583333300016,9.421666666000021],[38.63666666700004,9.4975],[38.41833333400018,9.635833333000107],[38.23166666700013,9.721666667000136],[38.165000000000134,9.726666666000028],[38.2025000000001,9.821666667000045],[38.125,9.863333334000117],[38.219166667000025,10.013333333000048],[38.34916666700008,10.075833333000162],[38.380000000000166,10.008333334000099],[38.46333333300015,9.988333333000071],[38.586666666999974,10.030000000000143],[38.68000000000018,9.9675],[38.79583333300019,9.78],[38.88333333300005,9.856666667000127],[38.945,9.829166667000152],[39.013333333000105,9.889166667000154],[39.08,9.891666667000095],[39.066666666,10.01],[38.95916666700009,9.954166666000106],[38.86833333300012,9.991666667],[39.00083333400016,10.163333333000026],[39.03416666700008,10.245833333000121],[39.0025,10.396666667000147],[38.89833333400014,10.461666666999974],[38.73833333300007,10.495833333000064],[38.662500000000136,10.411666667000077],[38.57,10.5625],[38.575,10.708333332999985],[38.63333333300011,10.82],[38.59,10.979166666000026],[38.5975,11.048333334000176],[38.52,11.090000000000146],[38.60000000000019,11.166666667000129],[38.70416666700015,11.17416666700018],[38.737500000000125,11.23583333300013],[38.69500000000011,11.323333334000097],[38.775,11.360833333000187],[38.87,11.320000000000164],[38.97916666600014,11.343333334000022],[38.94000000000011,11.40083333399997],[38.75833333300017,11.415],[38.72333333400019,11.461666667000145],[38.74666666600007,11.543333334000124],[38.70666666600016,11.6425],[38.61083333300007,11.64666666700009],[38.63833333400004,11.5375],[38.6925,11.526666666999972],[38.63166666700005,11.406666667000081],[38.585,11.493333333000123],[38.510833333000164,11.376666667000165],[38.575,11.315833334],[38.45416666700004,11.223333333000028],[38.484166667000125,11.138333333000048],[38.41166666700002,11.125],[38.21333333400014,11.24333333300018],[38.16833333400007,11.346666666000147],[38.13583333300011,11.194166667000161],[38.04833333300007,11.2425],[38.0675,11.381666667000161],[38.03916666700013,11.301666666000074],[37.97166666700019,11.305833333000123],[37.885,11.225],[37.75,11.305000000000177],[37.61583333300007,11.53333333300003],[37.54833333300019,11.516666667000038],[37.51666666699998,11.569166666000058],[37.41083333300003,11.601666667000188],[37.47083333300009,11.81250000000017],[37.55500000000012,11.8375],[37.63000000000011,11.803333333000126],[37.67750000000012,11.921666667000125],[37.75416666700005,11.984166665999965],[37.64166666700004,12.11416666700012],[37.56083333300006,12.2425],[37.451666667000154,12.348333333000085],[37.338333333000094,12.3875],[37.2975,12.370833334000054],[37.270833332999985,12.26250000000016],[37.182500000000175,12.196666667000045],[37.17000000000013,12.326666667000097]],[[38.64166666700004,10.36],[38.73666666700018,10.316666667000163],[38.794166666000024,10.2575],[38.74000000000018,10.149166665999985],[38.61333333400006,10.145833333000155],[38.52916666700003,10.076666666999984],[38.44166666700016,10.110833333000073],[38.50750000000011,10.340833334000138],[38.64166666700004,10.36]],[[35.68916666700011,10.376666667],[35.62333333400011,10.47833333400007],[35.6,10.634166667000045],[35.612500000000125,10.720833334000133],[35.72666666599997,10.74583333400011],[35.76333333400015,10.640000000000157],[35.8241666670001,10.556666666000012],[35.82,10.451666666000108],[35.7641666670001,10.4491666670001],[35.690833333000114,10.52],[35.68916666700011,10.376666667]],[[36.12666666700005,11.380833333000112],[36.13333333300011,11.445833334000042],[36.19000000000011,11.511666667000043],[36.21583333300015,11.363333333000071],[36.12666666700005,11.380833333000112]],[[35.902500000000146,6.730833333000135],[35.86166666700012,6.794166666000024],[35.80500000000012,6.711666667000031],[35.744166667000115,6.859166667000125],[35.687500000000114,6.9125],[35.6366666670001,6.854166667000129],[35.5150000000001,6.915833333000023],[35.446666667000045,6.875],[35.17666666600002,6.784166667000136],[35.100000000000136,6.889166666000165],[34.938333334000106,6.965833333000091],[34.90750000000014,7.017500000000155],[34.81083333300006,7.010833334000097],[34.590833333000035,7.040833334000183],[34.415000000000134,7.16166666700002],[34.386666666999986,7.308333334],[34.411666667000134,7.4375],[34.5025,7.394166666000046],[34.62166666700017,7.448333333000164],[34.5575,7.545833333000189],[34.445833333,7.500000000000171],[34.365833334000115,7.564166667000052],[34.36750000000018,7.644166667000093],[34.43916666600006,7.645],[34.61916666600018,7.792500000000132],[34.68416666700011,7.880833333000112],[34.545833334000065,7.998333334],[34.56916666700005,8.04],[34.51166666600017,8.1075],[34.530833332999975,8.1925],[34.598333333000085,8.19166666600006],[34.65916666700019,8.11833333300018],[34.80916666700017,8.191666667000106],[34.91416666700013,8.210833334000142],[34.926666666000074,8.25],[34.85666666600008,8.429166666000128],[34.90416666700014,8.562500000000114],[34.974166667000134,8.569166667000047],[34.90083333300004,8.759166667000159],[35.0125000000001,8.91],[35.0875,8.870000000000175],[35.1825,8.858333333000076],[35.2650000000001,8.905],[35.385833333000164,8.7825],[35.425000000000125,8.931666667000172],[35.49500000000012,8.988333334],[35.4625,9.11166666600019],[35.53166666600009,9.135000000000105],[35.537500000000136,9.278333333000148],[35.5150000000001,9.386666666999986],[35.46416666600015,9.448333333000107],[35.372500000000116,9.464166665999983],[35.39416666600016,9.566666667000106],[35.36750000000018,9.636666667000156],[35.428333333000126,9.694166667000104],[35.57333333400004,9.71666666700014],[35.624166667000054,9.47],[35.6525,9.4075],[35.7225,9.360833333000016],[35.746666667000056,9.286666667000077],[35.870833333000064,9.20333333300016],[35.91083333300014,9.078333333000046],[35.84083333400008,8.956666667000093],[35.82583333300016,8.8675],[35.85916666700007,8.770833333000155],[35.96166666700009,8.78333333300003],[36.01000000000016,8.726666667000131],[36.08583333400003,8.728333333000023],[36.234166666000135,8.556666667000172],[36.27083333300004,8.585833334000142],[36.19083333300006,8.751666666000176],[36.30833333400011,8.810833334000165],[36.341666667000084,8.7683333330001],[36.30083333300013,8.684166667000113],[36.316666667000106,8.610833333000187],[36.508333333999985,8.379166667000106],[36.66333333300008,8.286666667000077],[36.6475,8.199166667000043],[36.528333333000035,8.089166667000086],[36.43,8.0625],[36.490833334000115,7.995],[36.515,7.8875],[36.60083333300014,7.810000000000173],[36.71666666599998,7.810833333000119],[36.839166667000086,7.862500000000125],[36.79166666700007,7.942500000000109],[36.871666667000056,8.145833333000041],[36.9325,8.243333333000066],[36.91500000000019,8.326666667000154],[36.95666666600016,8.440833333000057],[36.86000000000013,8.510000000000105],[36.9125,8.547500000000127],[36.976666666000085,8.4975],[37.03833333300008,8.542500000000132],[37.05,8.632500000000107],[36.97250000000014,8.72],[36.99250000000012,8.799166667000065],[36.89916666700009,8.906666667000081],[37.05333333300007,8.91],[37.131666666000115,8.852500000000134],[37.0925,8.786666667000134],[37.105833334000124,8.683333334],[37.05833333400017,8.520833333000041],[37.05750000000012,8.461666667000031],[36.97083333299997,8.309166667000113],[36.87916666700016,8.089166667000086],[36.8625,7.961666667000145],[36.91666666600008,7.906666667000081],[36.96833333400019,7.9625],[36.99583333300012,8.08],[37.06916666700005,8.075],[37.02166666600016,8.1325],[37.065833333000114,8.203333334000092],[37.16583333300008,8.26416666700004],[37.16583333300008,8.265833334000035],[37.16583333400018,8.295],[37.20583333300016,8.384166666000056],[37.19166666600012,8.459166667000147],[37.23500000000013,8.555833334000056],[37.29416666700007,8.5275],[37.31833333300017,8.322500000000105],[37.29583333300013,8.249166667000054],[37.352500000000134,8.129166667],[37.3925,7.958333333000041],[37.3325,7.870833333000121],[37.26250000000016,7.900000000000148],[37.194166667000104,7.782500000000141],[37.09500000000014,7.723333334000131],[37.090000000000146,7.8275],[37.065,7.8375],[36.91333333400013,7.682500000000175],[36.875000000000114,7.66583333300008],[36.828333333000046,7.706666667000036],[36.71416666700003,7.603333333000137],[36.73916666600002,7.567500000000109],[36.870833333000064,7.586666667000088],[36.92333333300019,7.533333333000144],[37.05333333300007,7.544166667000127],[37.09666666700008,7.622500000000173],[37.28,7.65],[37.3325,7.710833333000153],[37.408333333000144,7.933333333000064],[37.42833333400017,8.083333333000098],[37.507500000000164,8.133333334000042],[37.57250000000016,8.03],[37.57750000000016,7.935833333000176],[37.54083333400018,7.767500000000155],[37.48166666700007,7.670833333000076],[37.38083333300011,7.696666666000112],[37.3958333330001,7.495000000000175],[37.29083333400007,7.395],[37.11583333300018,7.370000000000118],[37.145,7.300000000000125],[36.97833333400018,7.312500000000171],[36.92416666600013,7.388333333000105],[36.86583333300007,7.3275000000001],[36.764166666000165,7.33],[36.73,7.395],[36.555833333000066,7.4425],[36.52666666699997,7.5225],[36.4675,7.575833333000105],[36.35833333400018,7.546666667000011],[36.26166666600017,7.560833334000051],[36.220833334000076,7.620833333000178],[36.1341666670001,7.5775000000001],[36.05166666700006,7.623333333000062],[35.90416666700014,7.589166667000029],[35.86416666600013,7.469166667000138],[35.9625,7.463333333000094],[36.125,7.544166667000127],[36.0925,7.423333333000187],[36.03083333300003,7.390833332999989],[35.9625,7.294166667000184],[35.99,7.231666666000137],[35.888333333000105,7.215000000000146],[35.851666666000085,7.1400000000001],[35.738333334,7.085],[35.84916666700008,7.038333333000026],[35.84833333300003,6.900833333999969],[35.97166666700002,6.760000000000105],[35.902500000000146,6.730833333000135]],[[37.429166666000185,6.695000000000107],[37.340833333000035,6.753333334000047],[37.35666666600008,6.801666667000177],[37.43916666700011,6.799166667000065],[37.5525,6.867500000000121],[37.5525,6.76916666700015],[37.429166666000185,6.695000000000107]],[[36.7175,7.138333333000162],[36.83083333300016,7.155833333000032],[36.9533333330001,7.100833333000139],[36.975,7.155833333000032],[37.08500000000015,7.143333334000033],[37.0875,7.085833332999982],[37.192500000000166,7.093333333999965],[37.26083333300005,7.048333333000187],[37.24166666700012,6.865833334000058],[36.98,6.860833333000187],[36.93083333400017,6.888333333000048],[36.97666666700019,6.974166666000144],[36.96833333300009,7.064166667000165],[36.845,7.119166667000059],[36.72750000000019,7.098333334000131],[36.59250000000014,7.043333334000124],[36.43166666700006,7.028333333000035],[36.37083333300018,6.918333333000135],[36.32916666700004,6.955833334000033],[36.326666666,7.064166666000062],[36.27666666700003,7.14666666700009],[36.30000000000018,7.219166666000092],[36.25166666700011,7.255],[36.28583333299997,7.365833334000172],[36.44250000000011,7.378333334000047],[36.500833334000106,7.405833333000146],[36.54333333300019,7.336666666999974],[36.605833333000135,7.309166666000067],[36.64666666700009,7.234166666000021],[36.656666667000025,7.25],[36.6575,7.250833334000049],[36.72833333300014,7.219166666000092],[36.69000000000017,7.129166666000117],[36.7175,7.138333333000162]],[[36.12250000000017,6.84],[36.17333333300019,7.024166665999985],[36.07666666600005,7.09],[36.06666666700016,7.155833333000032],[35.99333333400017,7.160833334000074],[36.029166666000094,7.331666666999979],[36.09083333300009,7.396666666000101],[36.16833333300019,7.29083333300008],[36.235833334,7.237500000000182],[36.20250000000016,7.141666666000162],[36.20583333400009,7.038333333000026],[36.2375,6.9675],[36.15666666700014,6.916666667000072],[36.12250000000017,6.84]],[[37.3925,6.664166667000018],[37.444166667000104,6.544166667000127],[37.3375,6.579166667000038],[37.3925,6.664166667000018]],[[37.63916666600005,6.5775000000001],[37.684166667000056,6.516666667000095],[37.715,6.273333334000142],[37.63333333300017,6.225000000000136],[37.59833333400013,6.148333334000085],[37.48583333400012,6.112500000000125],[37.479166667000186,6.04416666700007],[37.3908333330001,5.978333334000126],[37.37416666600018,5.895833333000098],[37.28666666700019,5.872500000000116],[37.287500000000136,5.796666667000181],[37.3375,5.7675],[37.38583333300011,5.648333333000096],[37.3275,5.59],[37.34583333300003,5.533333334000076],[37.244166666000126,5.482500000000186],[37.189166667000165,5.566666666000117],[37.29583333300013,5.629166667000163],[37.295000000000186,5.785],[37.135,5.954166666],[37.195,6.151666667000086],[37.25833333300011,6.175],[37.32000000000011,6.29083333300008],[37.408333333000144,6.310000000000116],[37.419166666000024,6.38333333300011],[37.47416666600009,6.42583333400006],[37.58583333300015,6.422500000000127],[37.63916666600005,6.5775000000001]],[[36.734166667000125,5.719166667000138],[36.59250000000014,5.811666667000168],[36.6175,5.8975],[36.56833333300011,6.048333333000187],[36.67416666600019,6.203333333000046],[36.7025,6.28],[36.836666667000145,6.365000000000123],[36.94583333300005,6.50416666700005],[36.96166666700003,6.40083333299998],[36.80250000000018,6.241666667000061],[36.78333333299997,6.167500000000189],[36.8325,6.07333333400004],[36.68666666700017,5.885],[36.765,5.769166666999979],[36.734166667000125,5.719166667000138]],[[35.54166666600008,6.032500000000141],[35.573333333000164,6.211666667000145],[35.6333333340001,6.141666666],[35.54166666600008,6.032500000000141]],[[36.594166666000035,6.307500000000175],[36.54833333300019,6.436666666000065],[36.630000000000166,6.456666667000093],[36.6425,6.535],[36.75666666700016,6.6525],[36.80166666600013,6.528333333000148],[36.744166667000115,6.491666666000071],[36.688333334000106,6.3675],[36.594166666000035,6.307500000000175]],[[35.0775000000001,6.663333333000026],[35.0225,6.698333333000107],[34.961666665999985,6.808333333],[34.9675,6.885000000000161],[35.065,6.905833333000089],[35.12000000000012,6.758333333000166],[35.0775000000001,6.663333333000026]],[[34.76583333300016,8.483333333000019],[34.71333333300004,8.49333333300018],[34.57916666699998,8.693333333000055],[34.591666667000084,8.7825],[34.65583333300009,8.80500000000012],[34.61833333400017,8.885000000000161],[34.53,8.9525],[34.54083333300014,9.03083333300009],[34.626666667000165,9.02],[34.66083333300003,8.960833333000096],[34.753333333000114,8.916666667000015],[34.79500000000013,8.991666666000128],[34.870000000000175,8.985],[34.905,8.880833333999988],[34.785,8.73333333300019],[34.8900000000001,8.713333333000037],[34.90083333300004,8.627500000000111],[34.83,8.629166667000106],[34.76583333300016,8.483333333000019]],[[33.01778053800007,4.129172481000012],[32.98479054100011,4.2546482300001],[33.00149148300011,4.331892665000112],[33.05218556900007,4.37905193500012],[33.18755347300015,4.372329648],[33.22349155300009,4.279981358999976],[33.23404654800004,4.15066301000013],[33.174617513999976,4.064073256000086],[33.098281510000106,4.042055002000097],[33.01778053800007,4.129172481000012]],[[32.968399561000126,4.067439093000132],[33.055843599000184,4.019376758000078],[33.1001734730001,3.891041103000134],[33.03333333400013,3.8275000000001],[32.96666666700014,3.855000000000132],[32.961666667000145,3.745833334000054],[32.79750000000013,3.75333333400016],[32.76922257500013,3.894702821000067],[32.620037607000086,3.951586607000024],[32.55516452600017,4.013014223000027],[32.54720658000019,4.088487729000121],[32.61207161400006,4.107225305999975],[32.74674951900005,3.993179622000184],[32.81620750100012,4.03493558200006],[32.84258652400007,4.122408956000072],[32.968399561000126,4.067439093000132]],[[33.42112761000004,3.872041507000176],[33.49093260300015,3.863316448999967],[33.561666666000065,3.801666666000131],[33.510000000000105,3.749166666000178],[33.43879485800005,3.755],[33.42112761000004,3.872041507000176]],[[31.471759451000082,2.400029105000158],[31.458053529999972,2.331214183000156],[31.356109471000025,2.250387155000112],[31.405830585000103,2.038179997000043],[31.412776501000167,1.92180079200017],[31.375831586000174,1.826252125],[31.292221599000186,1.699317589000145],[31.19832953100007,1.615712799000107],[31.050830499000085,1.580992441000092],[30.939720493000152,1.507109820000039],[30.822923534000154,1.330693892],[30.70581057700008,1.266269746000035],[30.702220608000175,1.154913145000023],[30.588333510000155,1.022423083000035],[30.494441610000024,1.045477508000033],[30.505275555000026,1.205465409000169],[30.392497549999973,1.25546178500008],[30.496108602000106,1.502665232000027],[30.6411094930001,1.644321575000049],[30.81638749300015,1.790699780000125],[30.90388852800004,1.895135946000153],[30.988609452,1.928744193000114],[31.05611059500012,1.997350238000138],[31.14055257000001,2.03651434600016],[31.23860960500008,2.117341373000102],[31.37110855200001,2.316493549000029],[31.439441514000123,2.337602869000079],[31.471759451000082,2.400029105000158]],[[34.51916666600005,2.108333333000132],[34.537500000000136,2.000833333000116],[34.476666666000085,2.000833333000116],[34.51916666600005,2.108333333000132]],[[34.24416666600018,1.914166666000028],[34.25250000000011,1.99333333400017],[34.21916666700014,2.090833334000024],[34.25416666700005,2.134166667000102],[34.3425,2.139166666],[34.3841666670001,2.0825],[34.24416666600018,1.914166666000028]]]]},"properties":{"objectid":221,"eco_name":"East Sudanian savanna","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Afrotropic","eco_biome_":"AF07","nnh":3,"eco_id":43,"shape_leng":505.574629105,"shape_area":86.7161984598,"nnh_name":"Nature Could Recover","color":"#E0B51B","color_bio":"#FEAA01","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":1062140.7284602306,"percentage":4.954242024556052}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[46.74453353500007,39.1227390090001],[46.57662959800007,38.94515682300016],[46.15652056300013,38.90818911000008],[46.13143956200014,38.98121225000011],[45.96884556000009,39.09154743300013],[45.74135551100005,39.49783336800016],[45.737384501000065,39.54575287600005],[45.640094577000184,39.63705962900002],[45.409995576000085,39.66832798400003],[45.30002953300004,39.70074549700007],[45.36304049000006,39.80326019700004],[45.57448556500003,39.831465971],[45.66436756300004,39.89763808000015],[45.58148160400009,40.02088927200009],[45.50805646800018,40.04477317000004],[45.26995459400007,40.052570184],[45.00762952300005,40.108821304],[44.87483955700009,40.199144190000084],[44.81229346000015,40.37499215999998],[44.90795561800019,40.4416452210001],[44.99568547800004,40.40336976300006],[45.12480148800017,40.24137255300002],[45.28623962600011,40.185858370000176],[45.38248047100018,40.193884378000064],[45.65830660800009,40.168058728],[45.760173554000175,40.20748317700003],[45.72317851600019,40.29337404800009],[45.11390652300014,40.62479802000007],[44.99329747400003,40.63461406699997],[44.81179859200006,40.57476577000017],[44.75189949999998,40.47085380700008],[44.686370620000105,40.43630527900007],[44.44476360100009,40.41660965000017],[44.174556524000025,40.44690218400012],[44.05510350700018,40.51985743100016],[44.02666454800004,40.63078705800018],[44.06070748000013,40.71632723000005],[44.16050359299999,40.764090499000076],[44.38153052400003,40.79039224100006],[44.401252471000134,40.85230868900004],[44.1293634810001,40.9788362000001],[44.031490512000175,41.04011981400015],[44.011737552000056,41.15646666500004],[44.073722564000036,41.295785296000076],[44.190418605,41.30759506200002],[44.35032251900003,41.035484789000066],[44.520343558000036,40.958500529],[44.48653749800013,41.206183086000124],[44.3272625620001,41.66425895600008],[44.072158501,41.72654119100008],[43.730564598000115,41.56460064200019],[43.50268160500002,41.5351441200001],[43.254611469000054,41.615690186000165],[43.13732550900005,41.633188247000135],[42.762424605000035,41.623762126000145],[42.83135955600011,41.51726099400014],[43.120971578000194,41.50677439500015],[43.154308586000184,41.31353498200019],[43.00413857600017,41.278169217000084],[42.978702518000034,41.199679064000065],[43.10791056099998,41.17429631500016],[43.23228861700011,40.92331799300007],[43.10817358500009,40.79960127000004],[43.06634554100009,40.652874881000116],[42.928737490000174,40.5368063090001],[43.01508349800014,40.44506336200004],[43.10796755800004,40.440631179000036],[43.145988541000065,40.597291632],[43.33566246100014,40.68059165600005],[43.50568752300006,40.6009454710001],[43.500392507000186,40.53740813000002],[43.40879054300018,40.442431276000036],[43.41342154400007,40.35990909300017],[43.263503495,40.30324189500004],[43.244270547000156,40.24768144400008],[43.04880154700015,40.183744286000035],[42.78573249900012,40.13558505600008],[42.573623577000035,40.30059505800017],[42.42047849400012,40.25238536800009],[42.363223558000186,40.295990878000055],[42.40276351000006,40.36507804500013],[42.34125861300009,40.42778356500003],[42.253475611000056,40.37598005100011],[42.14796857300013,40.35837118100011],[42.04440362100007,40.255776518000175],[41.76079555700011,40.284833056000025],[41.697807566,40.335399402000064],[41.580379617,40.365486076000025],[41.47358360900017,40.325935730000026],[41.40838246100003,40.238084668000056],[41.186164461000146,40.11885310100007],[41.111240472000134,40.180643485000076],[41.11019860200008,40.292526973000065],[41.04396061200015,40.36750024700018],[40.9519655360001,40.40591769400015],[40.78702946300018,40.18255439100011],[40.718704547000016,39.98963298700005],[40.738800495000135,39.78867233200015],[40.718704547000016,39.66810016400018],[40.62224158200007,39.587717209],[40.590087595,39.51135220400016],[40.574012614000026,39.330491856000094],[40.61420450999998,39.18982005100014],[40.762916572,39.105417303000024],[40.99201158800008,39.02101438799997],[41.056316543000094,38.92053716200019],[41.012107535999974,38.739676981],[41.09249149600015,38.69546579500019],[41.34971953200005,38.65527423400016],[41.357757609000146,38.55479281700008],[41.06033751000018,38.42216227400007],[41.028182517000175,38.245320211000035],[41.07332258600019,38.14545989200019],[41.312950470000146,38.098273801000175],[41.45494845899998,38.13237607700006],[41.71708259000019,38.13950890900014],[42.01769250700016,38.17520642900001],[42.2375144560001,38.141390143000194],[42.38594052700017,38.05496568100011],[42.59636653000018,37.97417989200005],[42.851882478000164,37.962907070000085],[43.25756055800008,37.79808113500019],[43.53060155700018,37.74207527000016],[43.726631473,37.68606839800009],[43.985668492000116,37.57405247700012],[44.24470551000013,37.518045605000054],[44.363723506000156,37.55304893600015],[44.20641362300006,37.91076509500016],[44.187599603000194,38.03172283100008],[44.21178860200007,38.149991987000135],[44.321998559000065,38.343523426000104],[44.437580478000086,38.2306294170001],[44.5988615390001,38.174184507],[44.64993247500013,38.04247664500008],[44.70906847800018,37.78712146100003],[44.74938962300007,37.53714226300002],[44.89185347900002,37.46725429000014],[44.92679562200004,37.391992007000056],[44.918731560000026,36.92429237100015],[45.09076358500016,36.983426195000106],[45.28161248000009,36.93235626500018],[45.35956149700007,36.72269737400018],[45.46217359400009,36.60100018600019],[45.58649850900014,36.54292248200005],[45.75441351000018,36.595155150000096],[45.869159586000194,36.60421213100011],[46.00186958800015,36.53332872300018],[46.192493513000045,36.55342400100005],[46.371871605000024,36.46904103400004],[46.45034449100018,36.299175731000105],[46.567928512000094,36.15291185600006],[46.61907957900007,36.05709329200005],[46.68851861700006,36.19579987500009],[46.71171553400012,36.37786805600018],[46.66315447500017,36.661190799999986],[46.646347586,36.89948981700019],[46.66741952300009,37.079498061000095],[46.746246461000055,37.083883975000106],[46.76074262700007,36.895804797000096],[46.81302256900011,36.75344286500007],[46.939521581,36.763013657000045],[47.01360654100017,36.64248708600019],[47.26524753600012,36.72875531000011],[47.329601609000065,36.795869041000174],[47.407932506000066,36.80191993700004],[47.42468256600006,36.72131251600018],[47.50275446200004,36.64944909500008],[47.746868508000034,36.52932284400015],[47.81613555000018,36.83123128500006],[47.97352556300012,36.84156801600005],[48.09991460499998,36.75171501900007],[48.29934355100005,36.648556255000074],[48.64849860100003,36.50671416900008],[48.76739153900019,36.562991105000094],[48.78490049700008,36.69370202400006],[48.62928057400006,36.73471719000014],[48.464996612000164,36.80281998600003],[48.273479512000165,37.01065966900012],[48.237857597000186,37.11184952500008],[48.24201150100015,37.2076305380001],[48.28889450300005,37.29260191399999],[48.410655561,37.34802372800016],[48.355419489000155,37.58834898600003],[48.29625649600018,37.525823341000034],[48.18164453100013,37.5518048940001],[47.94642653500006,37.716051807000156],[47.78284447400006,37.680388318000155],[47.50875054,37.692187188000105],[47.28814656000009,37.67539957700012],[47.16048061900017,37.70785782600012],[46.97105446900014,37.69513627700013],[46.74085957900019,37.73511745200017],[46.85808150100007,37.83889748300015],[47.45902255300018,37.955053395000164],[47.55606051700016,37.944612393000114],[47.59060653100016,38.02211029600011],[47.43997551600012,38.09643481100005],[47.13090859400006,38.15838076400007],[46.93274648900007,38.23697317600016],[46.72094350700007,38.40675549800005],[46.72741349800009,38.457150685000045],[46.44504159700017,38.44617575700005],[46.31279746000013,38.45547547800004],[46.15629559300015,38.50047674300015],[45.92992754599999,38.52760628100009],[45.79594047600011,38.60899892000009],[45.769187621000185,38.66208335700003],[45.89483251700011,38.713924422000105],[46.14081153600017,38.770861349000086],[46.24921049900007,38.74238182099998],[46.5247726070001,38.799253873000055],[46.65341956500009,38.934772819000045],[46.722572614000114,39.02611829700015],[46.74453353500007,39.1227390090001]],[[45.02609250800009,38.17430235699999],[45.104705540000054,38.26846264500011],[45.340827607999984,38.26235190300008],[45.45331559900018,38.194009049000044],[45.50083160200012,38.128733134000186],[45.45887749500008,37.94290751400018],[45.40608961000004,37.895697282000185],[45.41081247700009,37.80347505700013],[45.47721056100016,37.74820110000002],[45.67581958900007,37.750138996000146],[45.798606592000056,37.66458457500005],[45.692756566000185,37.64263505300005],[45.72664661200008,37.55819458600013],[45.86831653400009,37.40874575600009],[45.80888347600006,37.3159815570001],[45.740272569000126,37.27514224200013],[45.622207595000134,37.26348452400009],[45.57166254000015,37.12126022300015],[45.458320601000025,37.111540400000024],[45.34915150900014,37.20348049000006],[45.28443148200006,37.35570658100016],[45.31998449700018,37.387642973000084],[45.26054356100002,37.50903170700013],[45.29165651500006,37.566815541000096],[45.23359658000004,37.660975830000154],[45.263053605000096,37.74735402500005],[45.16915852000017,37.830131689000154],[45.05721250300007,37.854026148],[45.043609513000035,37.943746375000046],[45.084159484000054,38.00764145500011],[45.17165347700006,38.02512794900008],[45.204162521000114,38.113741597000114],[45.02609250800009,38.17430235699999]]]},"properties":{"objectid":223,"eco_name":"Eastern Anatolian montane steppe","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Palearctic","eco_biome_":"PA08","nnh":4,"eco_id":727,"shape_leng":46.7146364143,"shape_area":17.4747392713,"nnh_name":"Nature Imperiled","color":"#FDF674","color_bio":"#FEFF73","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":168624.62186274258,"percentage":1.5915043260148416}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[146.62312858300027,-25.13591167299984],[146.67396679900003,-25.23046752199997],[146.69533628200008,-25.42046473399995],[146.51939777700022,-25.609795196999983],[146.52815918400006,-25.706534567999938],[146.49344366100001,-25.817775410999957],[146.61017730000026,-25.767419634999953],[146.66042081000023,-25.689535814999886],[146.68158134200007,-25.572599380999975],[146.73801785900025,-25.5684290829999],[146.86907831200006,-25.3424628599999],[146.79490502900012,-25.24310411099998],[146.81883089200028,-25.184685401999957],[146.7737573840002,-25.123193973999946],[146.62312858300027,-25.13591167299984]]],[[[146.4074551210001,-25.99568815999993],[146.27074745100003,-25.962434004999977],[146.14236950600014,-26.045009396999887],[146.12934420300007,-25.85821237599987],[145.9206132800001,-25.64846869199988],[145.76148250800009,-25.617443523999953],[145.73054663400023,-25.491966240999943],[145.82533817000012,-25.37398735499994],[145.78982832400015,-25.3535013959999],[145.7781885820002,-25.23822837299997],[145.71879000500007,-25.19214643999993],[145.82308541200007,-24.98297645299988],[145.8229028390001,-24.89490095699989],[145.86914257000024,-24.75453876599994],[145.75936490300012,-24.812924103999933],[145.7121432570001,-24.99723193699998],[145.60558588300012,-25.13070296799998],[145.5573864470001,-25.240614518999962],[145.4655282550001,-25.274201294999898],[145.53614121800013,-25.38304851299995],[145.41560076100018,-25.49375708899987],[145.33077441700016,-25.445676705999915],[145.17611491800005,-25.590066441999966],[145.1092832520003,-25.535958609999966],[145.08627371700015,-25.459847264999894],[145.01909349900018,-25.414953372999832],[145.08815454000023,-25.2533548159999],[145.0214944080002,-25.12390603199998],[145.13173562300005,-25.06837652799993],[145.20143372100017,-24.992473392999898],[144.95581298800005,-25.024446551999915],[144.91466949600022,-24.93595329199991],[144.809664042,-24.838549715999875],[144.8275186420001,-24.782033765999984],[144.72469718000013,-24.655424589999825],[144.61783593000018,-24.67594475699991],[144.59936045300014,-24.77899169799997],[144.5057806000002,-24.87169067799988],[144.44796990600014,-24.89182401599993],[144.37795404800022,-24.836739361999832],[144.21578398400004,-24.876668862999963],[144.23713558300005,-24.922807805999923],[144.11399838000023,-25.136894112999926],[144.04803559800007,-25.07518353599994],[143.98328272800006,-25.080521570999906],[143.97158197600004,-25.158532733999948],[143.90020480600015,-25.320409393999967],[143.85894317100008,-25.324105403999965],[143.86787356300033,-25.47767701299989],[143.94732263900005,-25.737759292999954],[144.00851829900023,-25.863192079999976],[143.98024801600002,-26.00304680399995],[144.00821171000018,-26.12836993299993],[143.92682710500014,-26.144571681999935],[143.8652995670002,-26.005790108999918],[143.88272559600023,-25.938449525999943],[143.82064679100006,-25.858268833999944],[143.7579689700001,-25.695654523999906],[143.79011793900008,-25.650870409999925],[143.74086644400006,-25.572435295999924],[143.8667172160001,-25.57130042499989],[143.842181653,-25.487812279999957],[143.78658237100012,-25.452099202999932],[143.68940053300025,-25.298984394999934],[143.5451566180002,-25.311110223999947],[143.55885784200018,-25.24832687399993],[143.4985049820001,-25.173738961999902],[143.31989897300014,-25.197918865999952],[143.1715353950001,-25.43503302199997],[143.1283614450001,-25.427552869999943],[143.0023020010002,-25.540171390999888],[142.86446070600016,-25.593464771999948],[142.87129991300003,-25.798565891999942],[142.7931388170001,-25.864133485999957],[142.7423955920001,-25.81413180699991],[142.6870941530001,-25.8864791499999],[142.67401040200014,-25.993943255999966],[142.59182355200005,-25.954406735999953],[142.58662624400006,-25.89903974899994],[142.46070100500003,-25.915376232999904],[142.40051477800012,-25.866406306999977],[142.3100965540001,-25.984845502999974],[142.32918205600004,-26.01988652499989],[142.28024040100001,-26.168153347999862],[142.39162714700012,-26.193832424999925],[142.51306718900014,-26.179772539999874],[142.60146784300014,-26.09263859399988],[142.75138762900008,-26.201276417999907],[142.83771964000005,-26.316448531999924],[142.8584255000003,-26.427369669999962],[142.92337673500015,-26.544551012999875],[143.06857585700004,-26.727638703999958],[143.0538716970001,-26.794145280999828],[143.12015126100016,-26.91929833499995],[143.0285272210001,-27.064100120999967],[143.25834470200016,-27.08274525099995],[143.3219046910001,-27.206662357999903],[143.46674318400005,-27.251996951999956],[143.541978706,-27.338385855999945],[143.46190833700007,-27.45966932099998],[143.419085794,-27.635455393999962],[143.53367333000006,-27.818761967999933],[143.70149123600015,-27.958566622999967],[143.80782653600022,-27.99856298799989],[143.73219803000006,-28.080738528999973],[143.55562148700017,-28.063049833999912],[143.52344057300013,-28.149667790999956],[143.4153674910001,-28.215976809999916],[143.35053179600004,-28.22344118799998],[143.30762220000008,-28.39810886099997],[143.23774024800014,-28.56853525899993],[143.33313005500008,-28.581948047999845],[143.39171890500006,-28.45133364499992],[143.51008267400005,-28.463250127999856],[143.50604711000005,-28.543138772999953],[143.6313063470002,-28.685327247999965],[143.72879525700023,-28.64218281199993],[143.7914142630002,-28.66726636599998],[143.79530212900022,-28.79459258099996],[143.70319833300005,-28.901154103999943],[143.68867363000004,-29.149682445999872],[143.6118940670002,-29.13971473999993],[143.51835725500018,-29.187990122999906],[143.33657914600008,-29.19560830899991],[143.3165146760001,-29.365530529999944],[143.22064470500004,-29.582078191999926],[143.06268688600017,-29.75535190399995],[143.05002263300014,-29.847095816999968],[142.85231472700002,-29.840284639999936],[142.81590747500002,-29.888651508999885],[142.7301228230001,-29.894440196999938],[142.74802149300012,-30.053706485999953],[142.66277121600012,-30.162126642999908],[142.68048691400008,-30.21623834199994],[142.82137137100017,-30.267552467999906],[142.87438075100022,-30.403494380999973],[142.98853235900003,-30.525222927999835],[142.96746056200016,-30.60988508699984],[142.8823928190002,-30.636841619999927],[142.82930695200014,-30.536174537999955],[142.85373578500014,-30.445193209999957],[142.70790735500032,-30.32070278599997],[142.60941998200008,-30.38617874499994],[142.54650019400003,-30.289593406999984],[142.43277650100026,-30.240116514999954],[142.27603855400014,-30.303317025999945],[142.15846934900014,-30.288979614999903],[142.19260362600028,-30.364674922999882],[142.33913496700006,-30.567295884999908],[142.4861226080002,-30.539227205999907],[142.66098761100022,-30.58130799099996],[142.70452179100016,-30.745133746999954],[142.67147084400017,-30.79396017099998],[142.71845314400025,-30.922810103999893],[142.78101448500001,-30.94741510399996],[142.8485348500003,-31.035998094999968],[142.82285415,-31.106614143999877],[142.90186440100013,-31.152268207999896],[143.01682435200019,-31.067017756999974],[143.10108337600013,-31.04085532299996],[143.29886667400012,-31.105029811999884],[143.33385466500033,-31.18661640499988],[143.22715057300013,-31.218079882999973],[143.27060744400012,-31.279193608999947],[143.13477374600006,-31.348570610999843],[143.13477338000018,-31.45645193199988],[142.98490160400013,-31.567574186999934],[142.94290946200022,-31.62957993099991],[143.03528589600035,-31.772993628999984],[143.00206752400004,-31.85247451299989],[143.11797320800008,-31.820148926999934],[143.1561964550002,-31.75359587999992],[143.2836374300001,-31.65589217099989],[143.28223376600022,-31.54827565499994],[143.33319781900002,-31.542610832999912],[143.47197650400017,-31.433579139999893],[143.53946591700003,-31.469288576999816],[143.6418979880002,-31.444906814999968],[143.7863215740001,-31.331625568999982],[143.9619041740001,-31.266489343999865],[144.00014246600006,-31.168785036999964],[144.11851990600007,-31.027300855999954],[144.1063435100001,-30.88841301499997],[144.22528600400005,-30.97195878699995],[144.32724539700007,-30.906820453999956],[144.47025089800002,-30.874252451999894],[144.60761022700012,-30.746812992999878],[144.61469037800032,-30.66043483699991],[144.6812339930001,-30.66043463999989],[144.8782403160002,-30.563560953999968],[145.04656031000002,-30.44740258199988],[145.08780078000007,-30.352920645999973],[145.16144387600025,-30.361270081999976],[145.2509060120001,-30.289469382999926],[145.35787018800022,-30.247244245999866],[145.48970650700005,-30.267887269999903],[145.5158291910002,-30.20633857099989],[145.63515250500006,-30.111954773999855],[145.73843905400008,-30.083460570999875],[145.76158635900003,-30.02647467199995],[145.89693211500014,-30.06209026499988],[146.01268534500002,-30.037159057999872],[146.02039036200006,-29.895734852999965],[146.09612005600002,-29.947129792999874],[146.22263456300016,-29.89272923799996],[146.26486673800002,-29.82387428599992],[146.36897752100003,-29.784425843999884],[146.42705201,-29.69128197499998],[146.56253436700013,-29.580483467999954],[146.58046340600004,-29.47102641799995],[146.73775097200007,-29.332214460999978],[146.7594187850001,-29.23600389799998],[146.97188300100015,-29.0989159639999],[146.94481219000022,-28.92637767399998],[147.06446268900004,-28.77374426199998],[147.11467145400002,-28.82030340599988],[147.212698756,-28.808471431999976],[147.24658171400006,-28.731458849999967],[147.48609914700012,-28.80224880999998],[147.6257313870001,-28.697313902999895],[147.84590816800016,-28.586115153999913],[148.1750699470001,-28.47620997699994],[148.36094863000017,-28.30469016199993],[148.47488442000008,-28.132109518999926],[148.5874001740002,-28.014348430999917],[148.67448807300002,-27.96026518799988],[148.6293458890001,-27.85663498799994],[148.71758956000008,-27.68927028699983],[148.67278361400008,-27.573972073999926],[148.73182685400002,-27.518163344999948],[148.71530122800016,-27.406090630999927],[148.81423211900017,-27.33595995099995],[148.7733630460002,-27.267678516999922],[148.66975018500023,-27.18816865799988],[148.6095685560001,-27.07845652599991],[148.53005492800003,-27.009205758999883],[148.41878865800004,-27.044681643999922],[148.34737186100006,-26.93627820399996],[148.26900828300018,-26.91806670299991],[148.19970552500024,-26.79608072199983],[148.05243022500008,-26.88590874399995],[147.97795039000005,-26.749850800999866],[147.848270242,-26.713994368999977],[147.80441783100014,-26.741011778999848],[147.7063015010001,-26.695675865999874],[147.62016419400004,-26.58581685199988],[147.546980404,-26.69846079399997],[147.45100010500005,-26.63771242499996],[147.35231809700008,-26.712826052999844],[147.31641047000016,-26.66155391999996],[147.1843492370001,-26.70837933499996],[147.0762517600001,-26.637513470999977],[147.09578199300006,-26.582196008999972],[147.02069392900023,-26.480643229999885],[147.03998121200004,-26.398498434999965],[146.97358489300007,-26.34184418399991],[147.03922045000002,-26.278419708999877],[147.06742948300018,-26.101160012999912],[147.01878815700013,-26.020882363999874],[147.0401967160002,-25.894304914999964],[147.01224597100008,-25.841312407999908],[147.05524835900007,-25.76020892999992],[147.0357378880002,-25.650833866999903],[146.9907359990001,-25.78844387999993],[146.8937577900001,-25.837931770999944],[146.91800065600012,-25.915971697999964],[146.79500759200005,-26.053972407999936],[146.70299134100014,-26.123472696999897],[146.42136475100006,-26.133866544999876],[146.54634753100015,-26.029283429999964],[146.5239282990001,-25.987385825999922],[146.58013237600017,-25.848994626999968],[146.4877783080001,-25.907366530999923],[146.4074551210001,-25.99568815999993]]],[[[143.65081576900002,-25.021355960999983],[143.57112059300005,-24.980416691999835],[143.58765775700022,-24.865621760999943],[143.6413197290002,-24.73812800199994],[143.60832252900025,-24.604794125999888],[143.49207803100023,-24.59092272099997],[143.42103557300015,-24.514402398999948],[143.3203318430002,-24.33192859099995],[143.27112258400007,-24.450379951999878],[143.2186006950002,-24.4979684569999],[143.21130332000007,-24.61530279699997],[143.11486811200007,-24.72593738099988],[143.13616047300013,-24.798636594999948],[143.30235474300014,-24.792652958999952],[143.39224089200002,-24.9242631489999],[143.30470357600007,-24.96753998199995],[143.24453230900008,-25.052240249999898],[143.3320751030002,-25.077506894999885],[143.35542656300015,-25.13265386799992],[143.4695070240001,-25.108208440999874],[143.65081576900002,-25.021355960999983]]]]},"properties":{"objectid":225,"eco_name":"Eastern Australia mulga shrublands","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Australasia","eco_biome_":"AU08","nnh":2,"eco_id":191,"shape_leng":84.860573534,"shape_area":23.0956938726,"nnh_name":"Nature Could Reach Half Protected","color":"#FDB666","color_bio":"#FEFF73","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":252837.70892184708,"percentage":2.386319999319797}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[108.91356659400014,40.96425755500013],[109.07307454699998,40.95950468100011],[109.17716253000003,41.006466138000064],[109.36205256200014,41.15144976100004],[109.4788815400002,41.12933695900006],[109.6120076200001,41.13780067000005],[109.82106066700004,41.23403363600005],[110.40567058700015,41.33636192100016],[110.5902405980001,41.39219344300011],[110.89433252500004,41.53247699800005],[111.05481764000007,41.58605848200017],[111.23927265100014,41.57774564600015],[111.57257852800012,41.597864393000066],[111.7402645360001,41.68041390100012],[111.81005058599999,41.79331294000002],[111.88455967000004,41.83464444000015],[112.07614868700011,41.87124620000009],[112.2823716690001,41.870613031000175],[112.46524853500023,41.90598684200006],[112.74767257200006,41.99150404700009],[112.8514785870002,42.04824668200018],[113.12969155600013,42.26011739000012],[113.21205867400022,42.37813542500004],[113.09298653100007,42.552211460000194],[113.16339166800014,42.70775846100008],[113.27466562400014,42.71919825000009],[113.3913195880001,42.78453200000018],[113.42525456100009,42.84155056700018],[113.39370759200017,42.980568958000106],[113.30438265600003,43.191451775000075],[113.28672768500007,43.27928439700014],[113.52883962900012,43.492254475000095],[113.51895166600013,43.52511455300004],[113.63694757300004,43.6246810020001],[113.68862954900021,43.70570098100018],[113.74052459400014,43.91635933000009],[113.96052558100007,44.03175399700001],[114.02391053800034,44.08521662600015],[114.05354257800002,44.23978730200014],[113.99842066800022,44.392814200000146],[114.00344863600003,44.46502194900012],[114.10105154000007,44.64579697000016],[114.11517353800002,44.868182943000136],[114.04215961800003,44.97173582400018],[113.82996352500004,45.061083727000096],[113.67361454300021,45.10575373900019],[113.26596856100002,45.19510180900005],[113.07052655100017,45.2565260720001],[112.80249055400009,45.40171421400004],[112.72431153700006,45.463138309000044],[112.71884955400014,45.534191200000066],[112.80730461600001,45.669368499000086],[112.76609063100011,45.790622620000136],[112.67774956200014,45.78536565800016],[112.49346956500005,45.655528301000174],[112.22732553100013,45.51570105700006],[112.07913968500009,45.50955930100008],[111.92581154200019,45.568595224000035],[111.9754255360001,45.668537518000164],[112.16196462300013,45.80579772000016],[112.23055256400005,45.90438885000009],[112.1202545970001,45.95759197500007],[111.7485426720001,45.76155468200005],[111.34117161600005,45.6615755090001],[111.241714635,45.658401450000156],[111.17668162700011,45.71945154400004],[111.197799665,45.78017776200011],[111.33629552700012,45.868041901000026],[111.38591756800008,45.94031905200006],[111.34525259700013,46.02491843900003],[111.02151466200007,46.138359619000084],[110.98316963400015,46.40650340800016],[110.81587254599998,46.40923171700018],[110.649749596,46.35383421000006],[110.27175861900008,46.35848834600017],[110.06481965500018,46.33205618200003],[109.85482766700005,46.22215803200004],[109.67687265400014,46.16055758099998],[109.42992368200004,46.11628068100009],[109.15283154100013,46.090588471000046],[108.59495553500005,45.94120418099999],[108.21128062200006,45.82108664700013],[108.06356852100004,45.802650651000135],[107.77336155200004,45.8347627280001],[107.44017754800007,45.818721777000064],[106.9377666060002,45.900246011000036],[106.35173763100016,46.091320379000194],[106.09592462800003,46.07795861900007],[105.95674161699998,46.00198421100009],[105.91256764600013,45.85467980600009],[105.84479560000011,45.733722573000136],[105.77677159400014,45.708408387000134],[105.2779615190002,45.658286618000034],[105.18582965000013,45.56010016600004],[105.1565325520001,45.41699911800015],[105.10201263000016,45.38182814900017],[104.9537585560002,45.387865969000075],[104.7786946290002,45.543086243000175],[104.6404346330001,45.58552532800019],[104.347076571,45.53836035900014],[104.25943757100003,45.49489935200012],[104.32239555400008,45.26022701800008],[104.32239555400008,45.01800879100011],[104.25427264200016,44.87419075500003],[104.2088546290002,44.647108905000096],[104.04233554900014,44.42002822800015],[103.90608251600008,44.31406018500013],[103.64673654100017,44.20796155100004],[103.70709965500004,44.16093052499997],[103.68403651300014,44.091979816],[103.23731963000006,44.10132580500016],[103.16162853000009,44.07104886200011],[103.04808760500003,43.96507713100016],[103.02538253800014,43.896954219000065],[103.03099858100006,43.68424397900009],[103.09155263400004,43.61611721100019],[103.30349760600006,43.60854919100018],[103.5230105980001,43.62368523200013],[103.56085153800007,43.52528554400004],[103.47002456400008,43.51014564800005],[103.32620267300007,43.532854570000154],[102.97801154200005,43.51771735600005],[103.01586153400001,43.43445370900008],[103.28836055900001,43.45716263200012],[103.47002456400008,43.442022903],[104.07223564200007,43.13841209700007],[104.23661063100008,43.11174406600003],[104.39816259500009,43.162219887000106],[104.48539758700002,43.13273201700008],[104.58555563100009,42.99379375700016],[104.70024856499998,42.944512190000125],[104.875121552,42.79345101600006],[105.00234258100011,42.72680415700012],[105.26889766400012,42.66822672400008],[105.53840652899999,42.526904315000195],[105.64437859500009,42.43607315100019],[105.76548754100008,42.3906553060001],[105.85632356700012,42.46634975900008],[105.79576867499998,42.58745820200011],[105.82604260100004,42.708566309000105],[105.91687762100014,42.72370721100003],[106.12882259200012,42.69343043600003],[106.31048559200013,42.69343043600003],[106.43159453700002,42.75398398700014],[106.56784052900014,42.78426093000013],[106.67381259600012,42.84481548600007],[106.99172963400008,43.11730931500017],[107.052284526,43.26869838900018],[107.052284526,43.435220821000144],[107.02200356000009,43.647164954],[107.06742056700011,43.85910540000003],[107.11283858000007,43.91965928600007],[107.4307475720002,44.14673962700016],[107.7486646100001,44.31326641800007],[108.00601954800004,44.464652139000066],[108.35420967300001,44.57062487700006],[108.76295452300002,44.58576091700007],[109.08087156100015,44.61603886600017],[109.27767160700012,44.60090182000005],[109.51988966600004,44.61603886600017],[109.88322455000014,44.66145587300019],[109.95891565000011,44.60090182000005],[109.95891565000011,44.525207031000036],[109.85294358300013,44.464652139000066],[110.15571552800009,44.40409808600015],[110.32224265400009,44.31326641800007],[110.3525236210001,44.19215764000012],[110.201133541,44.177017744000125],[110.09516164200005,44.22243458300011],[110.00433366300007,44.19215764000012],[109.91349763700003,44.08618574100012],[109.837806537,43.949936229000116],[109.7923885240001,43.76827356500007],[109.65614353700016,43.662301833000015],[109.6864166250001,43.5714701660001],[109.7923885240001,43.556333287000086],[109.89836159600009,43.46549759600015],[109.80752557000005,43.42008394200013],[109.32308962000002,43.48063849900012],[108.99003553500012,43.45036189100006],[108.83865367000004,43.3898068310001],[108.77809157000007,43.32925311300011],[108.79323565700014,43.26869838900018],[109.02031666900018,43.17786705700013],[109.29280865400011,43.16272699300015],[109.5350345920001,43.22328071099997],[109.61072552400003,43.28383526800019],[109.80752557000005,43.238421781000056],[110.32224265400009,43.25355849200008],[110.41307868000013,43.208144670000024],[110.44335160000008,43.102172101],[110.3373795330001,42.90536920500017],[110.15571552800009,42.708566309000105],[110.05161262600012,42.645689798000035],[109.94666264900013,42.37729254000004],[109.84968553700003,42.212075506000076],[109.77426165200006,42.14742488100006],[109.16366565400011,41.928328805000035],[108.98970763500012,41.8894689600001],[108.81123361500016,41.82468858300018],[108.4342806530002,41.74717006100019],[108.09304063400009,41.60723351600018],[107.8526075850001,41.427684936000105],[107.55083459600019,41.40416028599998],[107.0996625630001,41.286313410000105],[106.8942415620001,41.21865686700011],[106.60058560800013,41.06766828000008],[106.424323572,41.00392206200007],[106.0231165670001,40.93140200400006],[105.74366760300018,40.81368521400009],[105.72816460300015,40.74324789100001],[105.81038654700012,40.57386186500008],[105.7682346260001,40.524236471999984],[105.5085905900001,40.408541565000064],[105.37493158900008,40.36426902300013],[105.2681275340002,40.292400909000094],[105.13513958800019,40.25251847300018],[104.95259062100013,40.32200260600001],[104.77624560400017,40.561781028000155],[104.66738865400015,40.63963013300008],[104.55172761000006,40.67425158400005],[104.27529864600007,40.644836972],[103.97238957300016,40.71046811200006],[103.8114925710002,40.76787057000013],[103.61674458300018,40.75359283600005],[103.43987267900008,40.70897227699999],[103.35745258700007,40.66486770800003],[103.3199006550002,40.52343935300007],[103.41477960800017,40.43107128300005],[103.65753159400009,40.264645243000075],[103.80811365900007,40.19848822200015],[103.88108064000016,40.22168094800014],[104.02386451700005,40.33648737300007],[104.27270461500012,40.33529664000008],[104.40746265100006,40.31741384900005],[104.571479565,40.10354539900004],[104.78543066200007,39.95018926000006],[104.98190264000004,39.93988957700009],[105.45116466300016,40.177034405000086],[106.03061652700018,40.43915445500011],[106.32055661600015,40.61305732100004],[106.48204051900007,40.76356763600006],[106.63100454000005,40.82298493600001],[106.78087665700008,40.921144063000156],[107.170486628,41.09761698800003],[107.51908864000006,41.221903010000176],[107.95720652900008,41.24518777000014],[108.19077261900009,41.317323099000134],[108.40994262400005,41.32767173200011],[108.59608457700006,41.27492625899998],[108.71743056300011,41.27823845200004],[108.79193864100012,41.21945784100012],[108.91356659400014,40.96425755500013]]]},"properties":{"objectid":233,"eco_name":"Eastern Gobi desert steppe","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Palearctic","eco_biome_":"PA13","nnh":2,"eco_id":824,"shape_leng":53.8522284101,"shape_area":31.6341622251,"nnh_name":"Nature Could Reach Half Protected","color":"#B2863B","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":282447.6201926832,"percentage":1.0706000572435288}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[87.77420057100016,27.69857092400008],[87.78379064200004,27.594970266000075],[87.64694266200007,27.538404489000072],[87.66120949900005,27.471975560000033],[87.7615276370002,27.526365226000053],[87.80749550200017,27.67030882300014],[87.77420057100016,27.69857092400008]]],[[[87.99868051100015,27.688979177000192],[87.91985357400011,27.650207846000058],[87.94127654500011,27.498519203000058],[87.99890162600002,27.494947339000134],[88.02353654200016,27.390842760000112],[88.08342758800006,27.313953383000182],[88.1461565780001,27.418267677000017],[88.19332154699998,27.438288020000186],[88.37349659100005,27.43731706000011],[88.38868761700019,27.50643490500005],[88.3460235620002,27.600729974000046],[88.17903157500018,27.596888213000057],[88.05623652600019,27.541249475000086],[87.99868051100015,27.571947189000184],[87.99868051100015,27.688979177000192]]],[[[90.52120254000016,27.916167478000148],[90.46842152800002,27.98766444200004],[90.34556562600011,28.013317424000036],[90.2618555590002,27.925564262000137],[90.28346259700004,27.77030878400018],[90.23341358200008,27.685288290000074],[90.30281054400012,27.621790177000037],[90.49046358600003,27.769330783000157],[90.55213159500016,27.874262488],[90.52120254000016,27.916167478000148]]],[[[88.07427957900012,28.053957920000187],[88.15792057900012,28.030482722999977],[88.4495546510002,28.020889300000192],[88.5553136490002,28.09511507600007],[88.43695866200011,28.061428375],[88.28101352100015,28.07098810300016],[88.07427957900012,28.053957920000187]]],[[[94.3544465220001,28.412766911000176],[94.3935165850001,28.287283115000037],[94.4729916120001,28.391246877000015],[94.3544465220001,28.412766911000176]]],[[[93.6730725600001,28.40099637200018],[93.72496760500019,28.44316472100013],[93.73188066400013,28.53173109500017],[93.62799854100007,28.529572420000136],[93.59152251000012,28.46103410000012],[93.6730725600001,28.40099637200018]]],[[[95.48757153900016,28.890036669000153],[95.45982358300006,28.997702383000046],[95.37941766300003,28.965013799000076],[95.48757153900016,28.890036669000153]]],[[[95.51023855200009,28.707994975000076],[95.39913156400007,28.799408347000053],[95.32691962400014,29.02398853400007],[95.25343363400003,28.972654406000117],[95.31611652400017,28.913926769000113],[95.36740153400012,28.78419116900011],[95.25659159999998,28.682194974000083],[95.19422152300007,28.72107342600009],[95.13498661400018,28.666746624000154],[95.19026157700017,28.618398800000023],[95.40284759700012,28.696564574000092],[95.51023855200009,28.707994975000076]]],[[[97.24140951000004,29.034383100000184],[96.97458654200011,29.06043422300013],[96.89165465100007,28.99900157800016],[96.6797026390002,28.946726665000085],[96.74639157500013,28.888016966000123],[96.79033655200004,28.773088500000085],[96.8695525780002,28.7108050920001],[96.94152060500005,28.70343320799998],[96.9672396360001,28.636573952000163],[97.03220357700008,28.622661669000024],[96.96898659300012,28.79952150200012],[96.95175155600003,28.940561943000148],[97.01551051400008,29.015668657000106],[97.09724463100008,28.997286473000088],[97.01923358800008,28.868490819000044],[97.13906865200005,28.75156628700006],[97.20760361800012,28.77751733000008],[97.18788955000002,28.871032715000183],[97.23410753100006,28.926923413000054],[97.29035161100006,28.802609228000165],[97.26187862100016,28.705561206000027],[97.30679355200004,28.665680781000162],[97.40140562500011,28.712407041000063],[97.39860556700012,28.839344930000152],[97.33543350900015,28.97326662100005],[97.24140951000004,29.034383100000184]]],[[[92.9165345520002,29.001526542000192],[92.9342656300002,28.835119110000107],[92.82244852700012,28.767013632000157],[92.75645461800019,28.861971040000128],[92.81095157300007,28.929237154000077],[92.66849559600013,28.997774635000155],[92.65661659600016,28.88392005900016],[92.58002460800003,28.84186067500019],[92.51881458700018,28.901465394000127],[92.52309455400018,29.031652108000173],[92.42768854700012,29.02798821100015],[92.26333652500011,29.13293936200006],[92.2925415900001,29.029119432000073],[92.18697353100015,29.007038147000117],[92.06111154300015,29.087332924000066],[91.98299354700009,28.957283002000167],[91.96994761700017,28.84503657800019],[91.72362561100005,28.901762281000117],[91.65460164400008,28.867091880000032],[91.50290663100003,28.94325756300009],[91.50082356000007,29.084088121000093],[91.37178064000017,29.066310775000034],[91.25371566700005,29.09328390700017],[91.2104266570002,29.018216756000186],[91.13531457900012,29.024331354000026],[90.88045459800014,29.135118992000116],[90.80004851000012,29.238520161000167],[90.74399553799998,29.195915785000068],[90.857398665,29.115138882],[91.02810651700014,29.02615156800016],[91.0947185070001,28.946304553000118],[91.25341056600013,28.941483617000017],[91.71844458900017,28.816446576000033],[91.62640358100009,28.668453515000067],[91.5375976520001,28.631805152000084],[91.56387357700015,28.752278414000102],[91.53474462000008,28.784195863000093],[91.30180365100006,28.82772241600003],[91.38478851600019,28.72618839900008],[91.24288155400012,28.74420647300019],[91.1971515670001,28.690427680000028],[90.94561752500005,28.70531025200006],[91.01093266800012,28.597957518000158],[90.90618855000008,28.612314880000042],[90.80692250900017,28.67794032000012],[90.69565559400013,28.716453824000155],[90.46408054000005,28.691649593000136],[90.32403553400019,28.792450696],[90.34056062400003,28.92347660700017],[90.37796050800011,28.978393328000152],[90.31750452300008,29.038374898000086],[90.3046875870001,29.18028940300013],[90.45789352200006,29.157938220000062],[90.34447463700013,29.258478311000033],[90.20812253000008,29.306051311000033],[90.146446643,29.22085680900011],[90.05596165100008,29.256500517000177],[89.91835762300019,29.195741609000038],[89.80766252100017,29.17060763500001],[89.8100205180001,29.253231575000086],[89.76780657200015,29.320350000000133],[89.39509552400017,29.302635518000102],[89.48595451600016,29.257028242000047],[89.66114065100015,29.250587587000155],[89.74709354800018,29.07306860100016],[89.5686725010001,29.010250092000035],[89.68341053000006,28.96451574600013],[89.70272059000013,28.887052041000118],[89.8283235770001,28.85333332099998],[89.98052955100019,28.85580732300008],[89.99183657100014,28.758327969000106],[90.0386196610001,28.693322621],[89.9632945140001,28.625982244000056],[90.11597456900012,28.531769316],[90.02462758200016,28.45004441900005],[90.11874361400015,28.45748637600019],[90.16329963200008,28.39268470900015],[90.20245351400013,28.252277772000127],[90.36986560100013,28.36838272200015],[90.45492565799998,28.272528953000176],[90.55483257900016,28.28062956000008],[90.60343957100008,28.338682957000117],[90.69119256599998,28.277930587000185],[90.61153464600005,28.205026469000188],[90.59533661800009,28.132123692999983],[90.89100657600017,28.04301920100005],[90.89640753900017,28.00116617900011],[90.6655426010002,28.052469964000124],[90.68849158100011,27.93501485800016],[90.60073858700002,27.887761879000095],[90.58392365100019,27.75831427999998],[90.63903064100003,27.696086025000056],[90.70597053100016,27.72484668200002],[90.94605254600009,27.684464349000052],[90.95007351300018,27.856688990000123],[91.01711264500017,27.839879754000037],[91.00399060800004,27.978824886000154],[91.06849656100013,28.044412105],[91.14104461500011,28.061205584000163],[91.18758362400007,27.995692126000108],[91.179206583,27.859611089000055],[91.33895157600011,27.760374217000162],[91.43385366300004,27.852989386000047],[91.53672761000001,27.780163387000073],[91.67319455000012,27.764036103000137],[91.71909351600016,27.916901565000046],[91.69581563000003,28.05889569900006],[91.70512356600017,28.145023945000162],[91.80988360900005,28.21718609600009],[91.83781462500019,28.177613623000127],[91.9029926400001,27.944835263000073],[92.044547562,27.91764537500012],[92.11074850400013,28.001700106000158],[92.28336357400008,27.99371818700007],[92.34023260700013,28.02364895800008],[92.47393066900008,27.97875196399997],[92.51483955300006,28.107458602000122],[92.63257562100006,28.13639125500015],[92.67049350700017,28.21121935500014],[92.89997861700004,28.21620926900016],[92.68745462300006,28.113443448000112],[92.75929256300009,28.063559390000023],[92.71140255900013,27.898935458000096],[92.64654557100005,27.78519722300001],[92.69425955500014,27.772492773000124],[92.6843715920001,27.65412755900013],[92.88633757200012,27.732636488000082],[92.79252664100005,27.828991159000168],[92.83690663900018,27.86743676900005],[92.97545664900014,27.891868676000172],[92.95411665900014,27.9801240810001],[93.01042963700013,28.04544224100016],[93.08901266200002,28.07479080500019],[93.27391057300014,28.010162643],[93.3647236320001,28.05673266500014],[93.1970905980001,28.126868910000155],[93.20294166900004,28.19935477100006],[93.28222659400012,28.23228542400011],[93.34671762800014,28.19321502700012],[93.43565364400018,28.193844172000183],[93.50312058800006,28.14688808000011],[93.64824653600016,28.21482407600007],[93.73018651300004,28.158436666000114],[93.80465653800013,28.214105244000052],[93.81537665700012,28.270451918000163],[93.69315358900013,28.289670951000062],[93.41797654500016,28.306030582000176],[93.26914965200012,28.347629632000064],[93.24672655200004,28.442954838000105],[93.28811655700014,28.474224701000026],[93.37875359700001,28.414265930000113],[93.48718256700016,28.411496214000124],[93.59638954500019,28.56247993900007],[93.72992650700019,28.584109943000044],[93.88932063300012,28.537331044000155],[93.84678666600007,28.648047436000184],[93.79232759700011,28.64330462000015],[93.71584356800014,28.71626171100013],[93.5548855460001,28.719568539000193],[93.56517064400003,28.79583866200005],[93.63061553800014,28.88598787400008],[93.76093250800011,28.96425976300003],[93.61543255900006,29.05514909800013],[93.53283661400008,29.02252958000014],[93.47689059600009,29.066800949000083],[93.39136450600012,28.98176117700018],[93.46916952200007,28.825742441999978],[93.32408866800012,28.870797687000106],[93.12261956700007,28.886120979000168],[93.04732560100007,28.825887449],[93.00250253600018,28.972823553000183],[92.9165345520002,29.001526542000192]],[[93.29553253000006,28.64041671900003],[93.059142576,28.664253846000122],[93.06378162400017,28.691214740000134],[93.31607858600012,28.713210028000162],[93.29553253000006,28.64041671900003]]],[[[86.28192860600012,29.210148257000128],[86.26734962600017,29.160918993000053],[86.06659650700004,29.126384378000182],[85.85440058100005,29.16528898200005],[85.67273758200008,29.162511890000133],[85.5555726570002,29.214636096000106],[85.38333158800003,29.233718169000042],[85.27951065300005,29.276747507000152],[85.14838466200013,29.269566731000168],[85.08904263200003,29.231421360000184],[85.19552649700006,29.151418608000142],[85.20297951800006,29.009337135000067],[85.10584264800008,28.938761845999977],[84.83174150600013,29.171548587000075],[84.78455357000018,29.14440362600004],[84.83118461200002,29.029628382000055],[84.72193153300003,29.036759034000113],[84.63477365400013,29.158127316000105],[84.57191457700003,29.178988364000077],[84.38041658800006,29.138750870000024],[84.29510457100014,29.289823946000183],[84.23434465800017,29.36123021800006],[84.13590255800017,29.401889824000136],[84.05111659000016,29.38974813500016],[83.99822963000014,29.00536511900009],[83.91751860800008,28.97077149600011],[83.85614061299998,28.8791153840001],[83.82757559000004,28.770839635000073],[83.68040462500011,28.68830471100017],[83.68692054900009,28.652674247000107],[83.79209164100013,28.548511498000096],[83.74121851800004,28.503989342000125],[83.95218649500015,28.45119860700015],[84.00827064700002,28.521475501000168],[84.21629355900012,28.377596613000037],[84.30456556000019,28.40075061400006],[84.33703655099998,28.490117796000106],[84.41990658300017,28.54880050600019],[84.45545155200011,28.39424692800003],[84.53070863800008,28.405280362000042],[84.6867295510001,28.280850339000153],[84.75476059800019,28.287795081000127],[84.83841651800014,28.35139042500009],[84.84412358800017,28.494550649000132],[84.90623449700018,28.553197484],[84.97248858000012,28.453122422000092],[84.90792060000012,28.42819430600008],[84.94802063100008,28.19707388700016],[85.0957945900002,28.242245137],[85.1361995540002,28.178122572],[85.22385364200005,28.16109825600006],[85.23865558000017,28.264740154000094],[85.30687756600014,28.381649263000156],[85.17348460599999,28.438502874000164],[85.45557353500016,28.455997415000184],[85.46432457700018,28.347951665000153],[85.38126360400014,28.106441542000027],[85.45398751100004,28.046144310000102],[85.64804851900004,28.062450464000108],[85.71516459700018,28.019871234000163],[85.75550066200009,28.126689872999975],[85.71063954200014,28.14662388300019],[85.71811653499998,28.257524508000074],[85.63587162500005,28.228865440000106],[85.57979551900013,28.28244642100009],[85.54864451100019,28.408296171000075],[85.48634350100019,28.409543231000043],[85.49132553700014,28.540378704000034],[85.4701386000001,28.662491801999977],[85.605964659,28.593957841000076],[85.60472061700011,28.535395160000178],[85.7305755640001,28.486797053000032],[85.84770964300014,28.501750536000145],[85.89381463700016,28.412033997000094],[85.86390649800012,28.302383616000043],[85.7592396610001,28.23384932000016],[85.84147652500008,28.202697809000085],[85.81442259100004,28.06498749800005],[85.9563446410001,28.023033056000088],[86.01101661000007,28.097380872000144],[86.07549255600009,27.87569545800011],[86.20144657700013,27.86702957600005],[86.17477452300005,27.96155280100004],[86.23625159199997,28.018660384000157],[86.36912554500009,28.058802660000083],[86.48847160800011,28.176776774000075],[86.6174315470002,28.174033712000096],[86.64212061100017,28.293378937000114],[86.76147455400019,28.287892144000068],[86.80674756000008,28.165804192000053],[86.86161751000003,28.24399611700011],[86.92884054100006,28.205585710000037],[87.05093352200004,28.19872495500016],[87.16616859700014,28.24399611700011],[87.26631960000003,28.195982899000114],[87.34588666000008,28.095840948999978],[87.36508960000015,27.99021354600012],[87.34313957500007,27.898301451000123],[87.24162265700005,27.929853952000144],[87.21144059700015,27.83245707600014],[87.14285265700005,27.741917099000148],[87.04544857200005,27.669211967000138],[86.88494166400005,27.636288521999973],[86.78617065800017,27.762495174000094],[86.84241456900003,27.854408274000036],[86.81085955400016,27.960032660000138],[86.69837156300014,27.946315172000084],[86.57901762000017,27.96140561500016],[86.6476136070001,27.726828499000135],[86.58998852600018,27.71311000600008],[86.42399566200015,27.82559631999999],[86.35814659300013,27.847545340000124],[86.34553551599998,27.746212824000054],[86.51072656700006,27.716343074000065],[86.50403562900016,27.621826051000028],[86.6464845650001,27.652139707000117],[86.72763060800014,27.76048016400017],[86.767303664,27.642947106000065],[86.8417735210001,27.61424646400019],[87.10958052500013,27.666868220000083],[87.28791859100005,27.784120987000165],[87.36526461400007,27.783957037000107],[87.41349760500003,27.86467476400003],[87.5130695860002,27.824116411000034],[87.51709759400006,27.650610848000042],[87.59192653100018,27.696653983000147],[87.55738856400006,27.884671806000142],[87.7300646540001,27.926880053000048],[87.79721861900009,28.072691138000096],[87.93727854399998,28.114899217000186],[88.04826366000009,28.05632279000008],[87.93464662700012,28.262847185000055],[87.8471905200002,28.29469489600018],[87.79309053100013,28.41698803700018],[87.63294957700003,28.399284452000074],[87.5307845710002,28.318531017],[87.47245758899999,28.30895938700013],[87.36468458600007,28.37374378700008],[87.41841158000011,28.434225086000083],[87.41088865400008,28.497167479000098],[87.34349060900018,28.55450321700016],[86.94693757300013,28.531801335000125],[86.75714865300012,28.551724281000077],[86.71357750900012,28.52767241000015],[86.69019350800005,28.406829171000027],[86.61737857400016,28.402374357000042],[86.5279235500002,28.507562212000153],[86.52500161900008,28.562474071999986],[86.60433163900007,28.670366600000193],[86.71687360900017,28.68510986500013],[86.7929075290001,28.757851206000055],[86.85949655300016,28.73952082200003],[87.08872266200012,28.789023671000052],[87.16308556600018,28.8401076830001],[87.28968063500014,28.803526376000036],[87.42213465400016,28.689404752000144],[87.60962659600017,28.660419963000095],[87.74752063800003,28.59813035300016],[87.78591159900014,28.659953090999977],[88.00942963200004,28.77374446800019],[88.10852065900013,28.785251144000142],[88.21125060500003,28.744088624000142],[88.20598559700011,28.519516650000185],[88.40414451700008,28.501826308000034],[88.4934925870001,28.458039079],[88.56457565200014,28.36837685400019],[88.73604558700015,28.308130417000086],[88.63283552500013,28.26157028500012],[88.679420634,28.145886108000127],[88.57033552900003,28.101603004000083],[88.6279906170002,28.022808085000065],[88.72583760200007,27.992110371000138],[88.84671755400012,28.04391237600015],[88.9426496100001,27.99978500900005],[88.9829405800001,27.930717959000162],[88.99636855700015,27.821358430000032],[88.950324583,27.750372595000044],[88.77188861700017,27.683222319000095],[88.72609760900019,27.57755082700004],[88.64543151400005,27.501494108000088],[88.65500666500014,27.386090053000032],[88.89363056400003,27.40948210099998],[89.02741261200003,27.497974379000084],[89.14819365700015,27.365099924000162],[89.25861366500004,27.40910122700012],[89.29546352800014,27.597131119999972],[89.39585157100015,27.502685176000057],[89.56033351300005,27.601950715000044],[89.66079766300004,27.714346169000123],[89.5935136120001,27.804321206000054],[89.69460255000007,27.955436024000107],[89.65178661500016,28.053188796000143],[89.8446736530002,27.957304853000096],[89.7922825670002,27.833919885000114],[89.84967764900017,27.77379347599998],[89.95706961000002,27.81524399900013],[89.96115863800014,27.991914402000134],[90.00849962700005,28.00442405700005],[90.06188162100011,27.88942686000007],[90.16059864800008,27.921515467000063],[90.2618555590002,27.994416400000034],[90.32666057900008,28.080821752000134],[90.2780606280001,28.129422709000153],[90.19570155600013,28.107822712000086],[90.15114553800004,28.15642350100012],[89.81227156200003,28.09972277600008],[89.7744675020001,28.248228643],[89.84602364200009,28.271178964000114],[89.88247653900004,28.20637763200017],[89.98913558700013,28.245527993000053],[90.13224753100008,28.23877804700004],[90.06879451200001,28.31168132600004],[89.9413755020002,28.317532900000117],[89.76741765100007,28.249546613000177],[89.70793162000018,28.194127145000095],[89.56210360300014,28.147925089000182],[89.46263153500018,28.08022864800006],[89.40354163200004,28.17033595100014],[89.33390763000011,28.11183227900011],[89.33666259400013,27.940149612000084],[89.27112566699998,27.879874171999973],[89.18475350699998,27.902747213000055],[89.14956661300005,27.98588177800019],[89.08686863600019,28.023272107000082],[89.02653452300012,28.120249050999973],[89.02101856100006,28.344432942000083],[89.14683562100004,28.318299843999966],[89.30127755200016,28.355708278000066],[89.47750052800006,28.457111370000064],[89.52854950400001,28.518408729999976],[89.5636296130001,28.64210282300013],[89.44489257800018,28.648402326000053],[89.28083761000005,28.686898898000095],[89.50620251200002,28.748429444000124],[89.52215561999998,28.806813088000183],[89.43184664900014,28.830457263000085],[89.40714266500015,28.9934296240001],[89.31033352800017,28.988100913000153],[89.35486557300015,28.814771872],[89.2858806660002,28.783439145000045],[89.25360061600009,28.889731903000154],[89.19022353700018,28.885534078000035],[89.13573462900013,28.776126437000187],[89.04878260900011,28.90475126800004],[88.83106250600014,28.899729502000014],[88.7667696210001,29.012118921000024],[88.92440053000007,28.970718690000183],[89.06517761200013,28.96261204800004],[89.03366065000006,29.033032105000075],[88.93546263100012,29.03147826800017],[88.8615726340002,29.075639330000115],[88.75869751300013,29.076829561000125],[88.64826962600006,29.191793901000096],[88.54830956300015,29.20844639500018],[88.38759662800004,29.129708306000055],[88.44880665,29.074695528000177],[88.4207916470001,29.026475445000074],[88.27191161200011,29.037298997000164],[88.26288564400011,29.100832482000044],[88.37738059700007,29.15216845300006],[88.357833664,29.220235878000153],[88.28699451200004,29.254877444999977],[88.19786051500006,29.247673701999986],[88.23670158400006,29.169974633000038],[88.0348286420001,29.097912729000143],[88.0573196360001,29.055361327000185],[87.98405459300005,28.955643334],[88.04776761900018,28.91298279900019],[87.96002166500017,28.854147204000128],[87.95517759600006,28.95935299700011],[87.78425550200018,29.04746859200003],[87.57917061600017,28.993738581000173],[87.55283350200011,29.103834376000123],[87.47817253800008,29.151308638000103],[87.18773657500014,29.19110608200009],[87.16612266400011,29.211952043000167],[87.04370865700008,29.186341137000113],[86.73372659800003,29.213691120000078],[86.49668151500003,29.25015860100018],[86.28192860600012,29.210148257000128]],[[84.46158559700007,28.989805960000126],[84.48997460000004,28.940977853000106],[84.57855254100019,28.920539588000054],[84.50928466100015,28.787684746000025],[84.56265257400008,28.697976422000067],[84.71595758300009,28.372086685000113],[84.65917957700003,28.368677932000082],[84.53426357100017,28.44589370100016],[84.45137057100004,28.536736097000187],[84.52177453500008,28.594645660000026],[84.45023365000003,28.643473767000046],[84.26059761700014,28.644608676000075],[84.3412166060001,28.817207653000025],[84.25264754900013,28.788819823999972],[84.11183962200016,28.836510841000063],[84.0368886440001,28.829698198000074],[84.06755065200008,28.93643704100009],[84.14930756800015,28.969365683000035],[84.46158559700007,28.989805960000126]]],[[[94.92141756500013,29.36870302000017],[94.97959166100009,29.406074406000187],[95.12733460700008,29.418350038000142],[95.12950853700016,29.529985925000176],[95.24974861500004,29.57378103299999],[95.27910656600005,29.618560345000105],[95.25438665700011,29.74862149900008],[95.00138058600004,29.715081816000122],[94.94686854300011,29.652239],[94.91374963200013,29.49690322300006],[94.83813463900015,29.38876225500013],[94.66684759800017,29.342066170000123],[94.51358751600009,29.27485353200018],[94.42535356800005,29.266315055000064],[94.27822853600009,29.119794693000017],[94.26058161200012,29.06685291700012],[94.35781051500004,29.001623269999982],[94.34133152600015,28.9641838230001],[94.44467150800006,28.861120947000074],[94.46054850900003,28.67343555000008],[94.5134966560002,28.722694654000122],[94.48815162500006,28.82461725600018],[94.36636357700019,29.037351132000083],[94.38684056700015,29.090349906000142],[94.5997085530002,29.062252090000186],[94.66409263400016,29.117730901000186],[94.63784051300007,29.250532769000074],[94.67302656900011,29.293159943999967],[94.78807053700012,29.14595679300004],[94.84659566800008,29.203701400000057],[94.92141756500013,29.36870302000017]]],[[[96.01154358500003,29.519569231000162],[95.98460364500016,29.587578484000062],[95.7954026330001,29.658281010999985],[95.69768556700006,29.76245700300018],[95.57226564100006,29.78039830000006],[95.45193453600001,29.730057092000152],[95.40607462900016,29.61755854000012],[95.57699554900006,29.48665835800017],[95.67212663000015,29.492628117000038],[95.83386953299998,29.4641333350001],[95.8904576060001,29.427670715000147],[95.7437136150001,29.308290452999984],[95.68171653300004,29.122367602],[95.81757360500012,29.185815257000115],[95.88288858000016,29.267451976000075],[95.97174865600016,29.17330677500007],[95.9142605340001,29.08922907800013],[96.09942666600011,29.10983799800016],[95.96788761600004,29.001942453000026],[95.93586757200018,28.838209015000075],[95.85788754200013,28.79968142900009],[95.86624161700007,28.729633194000087],[95.99607059200014,28.812339779000126],[96.12519867200012,29.02780146200007],[96.20182066600006,28.8782483600001],[96.074928543,28.77908122600013],[96.15667758000006,28.75536211600013],[96.35867356700015,28.924096365000082],[96.4489825390001,28.917445660000055],[96.52068351800006,28.833138969000117],[96.50916259200005,28.776481327000056],[96.3915326400001,28.730043068999976],[96.44158165400017,28.623108424000122],[96.31674963500006,28.564970873000107],[96.03759755800007,28.51409992900011],[96.15809663600004,28.45024441200019],[96.21534754900006,28.53096431800003],[96.3179626640001,28.463402994000035],[96.2727666040002,28.42014583499997],[96.40131365000008,28.323559656000157],[96.45279664100019,28.21480513299997],[96.59307064000006,28.35729933100015],[96.67495764300014,28.34707860600014],[96.62671660500013,28.190945207000027],[96.73055262800011,28.169015969000156],[96.7262265600001,28.096110175000092],[96.80811356300018,28.063311285],[96.837898656,27.99579337900019],[96.91649660000019,28.01493362200017],[96.90561655500011,28.110349520000057],[96.83824164400016,28.139548383000033],[96.79386851900017,28.346258688000148],[96.78728453400015,28.535297092000064],[96.67021164200014,28.652365457000144],[96.65978958400007,28.805283223000174],[96.59169751700006,28.920509581000147],[96.57598865700004,29.072400563000087],[96.49916851400019,29.10033258500016],[96.34098859000017,29.06667270600019],[96.26901251700014,29.164320034000184],[96.42340851400019,29.202278488000104],[96.49740563200015,29.141084895000176],[96.59703058600019,29.118316629000105],[96.6185985640002,29.184802052000066],[96.589424512,29.283425202000103],[96.52552054700016,29.343156991000058],[96.40467060200001,29.35148977600005],[96.22269462300011,29.473728937000033],[96.01154358500003,29.519569231000162]]],[[[96.75492066400017,29.59463135300018],[96.77451353100014,29.4482290090001],[96.82510351300016,29.389729192000118],[96.86169454400016,29.573743147000073],[96.96031953700009,29.595968266],[97.06034062000009,29.56818728600018],[97.06311754500013,29.64875414],[97.1923066450002,29.655698882000138],[97.13951859200012,29.53068279600018],[97.24787162200005,29.415387371000065],[97.06589463700004,29.382050530000186],[97.05061358900008,29.188968864],[97.1595615670002,29.218161859000077],[97.10700250800005,29.33425943300017],[97.23233056800007,29.356288415000165],[97.23322257000012,29.212185227000077],[97.32532459900006,29.132220362000055],[97.35111253000008,29.207010240000102],[97.30010261400014,29.399949749000143],[97.387496527,29.34256606600013],[97.40663962100012,29.117101756000068],[97.48002653600014,29.066846714000064],[97.50212860900001,28.904858221000097],[97.57613360500011,28.810935810000046],[97.54197651200008,28.736938022000174],[97.58770767300012,28.655921061000186],[97.475341555,28.576509232999967],[97.38271364600013,28.387152150000077],[97.06494865500008,28.390266865000115],[97.08306865399999,28.255374383000117],[97.07971958000019,27.993644259000177],[97.10022758300016,27.920407548000185],[97.21056360400007,27.858489088],[96.89605766500006,27.61294928000018],[96.92391961400011,27.495704392000107],[96.98057558000005,27.472139342000105],[97.03073154700013,27.61258131500017],[97.16114055000014,27.632642730000157],[97.21130355800005,27.76806394300013],[97.3015895630001,27.748001522000095],[97.4771426580001,27.76806394300013],[97.53733863700012,27.7329553350001],[97.66774764000013,27.76806394300013],[97.65270262600018,27.82323765300015],[97.55238365000014,27.963675770000123],[97.5423505120001,28.013832576000027],[97.6376495660001,28.134208440000123],[97.70787851600005,28.03389583400002],[97.66273459100006,27.948629080000046],[97.76304652600015,27.858347936000087],[97.84330760800009,27.833268109000187],[97.93359361300014,27.763049888000126],[97.92356164800015,27.903487],[98.10413365900007,27.89345754900006],[98.13422351800006,27.813207029000125],[98.1442566560001,27.672768744000166],[98.24958767500016,27.61759436400007],[98.22554066499998,27.830727218000163],[98.14749156800008,28.01210858600018],[98.15220655600007,28.135714333000067],[97.99944251500011,28.282786391000116],[97.91818264600005,28.463987883000186],[97.84685566700011,28.564236954000023],[97.80655665000006,28.698136348000162],[97.83130656600008,28.870479677000105],[97.8112635920001,28.965619643000082],[97.7358395390001,29.090110016000153],[97.76068852900016,29.18339406000007],[97.73408453600013,29.246185747000084],[97.55734255200014,29.42965353800014],[97.49932067100008,29.467473188000156],[97.38598661100013,29.652179991000025],[97.31149261400014,29.742183862000047],[97.14536262300004,29.894840950000173],[96.96749863700012,30.011409586000013],[96.76940157600018,30.00229309300005],[96.71925365500005,29.96582527600009],[96.75492066400017,29.59463135300018]]]]},"properties":{"objectid":237,"eco_name":"Eastern Himalayan alpine shrub and meadows","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Palearctic","eco_biome_":"PA10","nnh":2,"eco_id":751,"shape_leng":149.112745627,"shape_area":11.1612771857,"nnh_name":"Nature Could Reach Half Protected","color":"#E8A382","color_bio":"#D6C39D","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":121456.54521410183,"percentage":2.4871794739700293}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[39.526652833000014,23.656676414000174],[39.494187307,23.63419336300018],[39.47916862900013,23.57915485400008],[39.57413703700013,23.550016820000053],[39.602465681000126,23.66252200800011],[39.526652833000014,23.656676414000174]]],[[[38.98580055400015,24.42748534000009],[38.91916079100008,24.45581398500019],[38.964126893000184,24.30751577900014],[38.963317503000155,24.30832516900017],[38.964126893000184,24.30751577900014],[38.97752679100006,24.375864255000124],[38.98499116400012,24.426675950000117],[38.98580055400015,24.42748534000009]]],[[[37.27421083600012,26.52002787700019],[37.18580747800013,26.449161300000128],[37.249209683000174,26.387467807],[37.27421083600012,26.52002787700019]]],[[[35.354158268000106,28.757541128000128],[35.292464775000155,28.730021873],[35.23913497800004,28.64251783800006],[35.31413843800016,28.631636041000036],[35.350021386000094,28.511666480000088],[35.49580149000019,28.58001495600007],[35.354158268000106,28.757541128000128]]],[[[35.64113193300011,30.915014716000087],[35.61783949300002,30.852601766000078],[35.51756508400001,30.78029627400008],[35.514687253000034,30.509870134000096],[35.42844226900007,30.407257489000074],[35.37322389500008,30.061737959000027],[35.404430370000114,29.923242364000032],[35.467832574000056,29.94509588900013],[35.491125016000126,30.064885586000116],[35.557674847000044,30.123701249000135],[35.645898341000134,30.37829932000011],[35.64823657700015,30.464814101000115],[35.70705223800013,30.601511051000045],[35.662715662000096,30.77211244400013],[35.718833357000165,30.887405529000034],[35.64113193300011,30.915014716000087]]],[[[35.72225078100013,30.923738140000182],[35.800311936000185,31.136787534000064],[35.92864519200015,31.236522348000108],[35.88709651200003,31.36692404400003],[35.77108396799997,31.384550756000067],[35.67800413800012,31.283287094000173],[35.63690511900012,31.053600243000062],[35.64717623200005,30.952896835000047],[35.72225078100013,30.923738140000182]]],[[[35.537106154000014,30.984855304000064],[35.602371153000036,31.1184413630001],[35.612353627000175,31.408202926000058],[35.537106154000014,30.984855304000064]]],[[[35.617120034000095,31.638249506000136],[35.681691358000194,31.750215100000162],[35.65147413600005,31.87576045800006],[35.59391752500011,31.8638894070001],[35.62701257700019,31.756960016000107],[35.617120034000095,31.638249506000136]]],[[[35.64535874500007,31.905797814000096],[35.647876849000056,32.09186754600006],[35.60506911900018,32.09861246100007],[35.592748407000045,31.90687700100011],[35.64535874500007,31.905797814000096]]],[[[36.90297635400009,32.27464053100016],[37.02280056200004,32.43393500700006],[36.98392848100008,32.593246991000115],[36.79959148700016,32.79349384300019],[36.766300579000074,32.94655024500014],[36.652194546000146,32.973255324000036],[36.56874850800011,32.835045619000084],[36.59167452200006,32.72501805200005],[36.52869457800017,32.46737008300016],[36.54491054300013,32.388515485000084],[36.62140583600012,32.29912492400018],[36.721569261000184,32.26239833400007],[36.90297635400009,32.27464053100016]]],[[[40.55437046200018,36.363200396000025],[40.44023861199997,36.41680719300018],[40.221595494000155,36.420809049000184],[40.220371569000065,36.548217330000114],[40.042423597000095,36.437421813000185],[40.03175360199998,36.3709402450001],[40.09795353800018,36.31224848300013],[40.20771757700004,36.287419106000186],[40.21968458800012,36.34656080899998],[40.51839449500005,36.34158262900007],[40.55437046200018,36.363200396000025]]],[[[42.03441256000002,36.76172854400005],[41.90864947900019,36.763200741000105],[41.74679157600019,36.71565556900009],[41.64899857000006,36.733161341000084],[41.52659260900015,36.71673566100009],[41.47065346300019,36.65461000100004],[41.655109480000135,36.65671587000014],[41.960739487000126,36.690731309],[42.03441256000002,36.76172854400005]]],[[[36.205055550000054,36.71948576400018],[36.266235564,36.818116456000155],[36.222663582000166,36.96680236599997],[36.26630345800015,37.061729599000046],[36.2783395350001,37.207127624000066],[36.345947464000176,37.33409719600019],[36.29637554700008,37.40270257100019],[36.20042052500014,37.42495032100015],[36.118148457000075,37.499037964000024],[35.815593604000185,37.5856371050001],[35.66221248700009,37.4903781160001],[35.52487148299997,37.48567100700012],[35.277568459000065,37.29954380600009],[35.157882592000135,37.28847785000005],[34.94009359000012,37.15404268400016],[34.705940599000144,37.07291340500012],[34.54642845500018,36.89238682400003],[34.40273245900005,36.823761333000164],[34.230583591000084,36.66270490700015],[34.00134658500019,36.50972025400017],[33.877117560000045,36.48869743500006],[33.71815845400005,36.52983766000011],[33.63598646600008,36.58088546200014],[33.543567602,36.52624081800019],[33.59743155600006,36.43107369500018],[33.79551353000005,36.40708334700014],[33.812515550000114,36.332264132000034],[33.66116352400013,36.28775086200011],[33.33755450300009,36.255265623000184],[33.10958450600009,36.16334179300003],[32.906944453000165,36.19117323199998],[32.780166491000045,36.11782588000017],[32.660045604,36.149098090000166],[32.603778559000034,36.20191497700017],[32.47804649100016,36.20659174300005],[32.35392760300016,36.34986076500019],[32.19464445300014,36.43116572800005],[32.07876950300016,36.58220846200004],[31.841314545000102,36.65201999200008],[31.76670051900004,36.78852615900013],[31.587272470000073,36.87169240800017],[31.436511536000182,36.89049502900008],[31.37623056500007,36.949407738000104],[31.282123585000136,36.970086229000174],[31.176076584000157,37.10720762700004],[31.04613160400004,37.059375458000034],[30.985038594000173,37.196930704000124],[30.911542546000078,37.26935537600019],[30.89537452600007,37.450320666000096],[30.79037660400013,37.37165918700009],[30.69838152800014,37.34621977500018],[30.74195854000004,37.27442525400011],[30.689559575000033,37.19580585200015],[30.596054584000058,37.14014599200004],[30.617448553000145,37.06040559400003],[30.574298516000113,36.95792157200009],[30.413646601000096,36.84021400300003],[30.46054653400006,36.76514668400006],[30.589961611000092,36.80990353200008],[30.702638529000183,36.88646618300015],[30.756677497000112,36.84893503800015],[31.00871445300004,36.85914972800015],[31.299488542000063,36.81762041500008],[31.57392345100004,36.70755697400017],[31.789031585000146,36.60461597100016],[32.026142551000135,36.542002316000094],[32.09770958700017,36.491546444000164],[32.29812659200019,36.23385103400017],[32.512298467000164,36.09617425000016],[32.67116151700003,36.04082351500011],[32.808124497000165,36.017040200000054],[32.962657455000056,36.09947722300012],[33.09360558100019,36.08426457200005],[33.14727356600008,36.131199374000175],[33.400581553999984,36.12557277000002],[33.48331848200013,36.15207316300007],[33.57357448000016,36.13128352800004],[33.70272049700014,36.16702279000003],[33.80050646200016,36.225191522000046],[33.8787615870001,36.31163844800005],[34.00644647100006,36.286785937000104],[34.083747567000046,36.31516354100012],[34.08708155300002,36.40809822800014],[34.18051546600003,36.47241693000012],[34.28697552700004,36.58791150899998],[34.42840958200014,36.66026795300013],[34.57769345700012,36.775205471],[34.725192489000165,36.81479772600005],[34.83581148300016,36.798799019000114],[34.911769462999985,36.729910337000035],[35.02538649600018,36.707640961000095],[35.34614952600003,36.54871638800017],[35.44557951700011,36.59336645100018],[35.55625148400014,36.57810049100004],[35.63786356100019,36.61061590500009],[35.608459509,36.73377120900011],[35.795051571000045,36.76713369800018],[36.02020658900011,36.93146711300011],[36.144931488000054,36.868030522000026],[36.213287585000046,36.77271051300016],[36.205055550000054,36.71948576400018]]],[[[41.07332258600019,38.14545989200019],[40.79868651100014,38.22225673300011],[40.75817459400008,38.20397697600009],[40.5502816020001,38.21849560600003],[40.49274855400006,38.19473022800008],[40.22561646100007,38.15905986600012],[40.237735520000115,38.080462927000156],[40.37066261300015,38.05856336100004],[40.74769553800007,38.07429133200014],[40.923816591000104,38.0364079790001],[41.08684946900007,38.036968896000076],[41.17368648900015,37.982048823000184],[41.13204150600012,37.862346025000136],[41.194629513000166,37.77082570100015],[41.00712952300012,37.784684507],[40.80806351399997,37.70328398900017],[40.630298602000096,37.75177899900007],[40.561038601000064,37.73654723700008],[40.28699445600017,37.74032714000009],[40.19438146600015,37.88255278200006],[40.02202254700018,37.94528043100013],[39.96809757300008,38.03440101600006],[39.8653485160001,38.07958500700016],[40.112792524000156,38.22952334100006],[40.07627860700012,38.393231633000084],[39.95421948800009,38.42753306300011],[39.91899856400005,38.28765452099998],[39.73314645700003,38.220776657000044],[39.66100358400007,38.24452627700009],[39.5510445810001,38.14076803800015],[39.31944656100006,38.094359787000144],[39.26299259900014,38.036582993000025],[39.29848459500005,37.969442105000155],[39.08626553500011,37.849506123000026],[38.93851051900003,37.800522113],[38.836692523000124,37.850452104000055],[38.72879446300004,37.84441344600009],[38.46204357900001,37.76367677500019],[38.38256855300011,37.787900475000185],[38.20833560800014,37.74424132100006],[38.007465477000096,37.79407944700006],[37.89822061300015,37.77685664699999],[37.78693358100014,37.70726690200013],[37.77248351500003,37.65131384300014],[37.656311511000126,37.5569126580001],[37.39522545200015,37.408924625000054],[37.30132248799998,37.25598171400014],[37.25321556100016,37.103819661000045],[37.11380355600005,37.101546657000085],[37.047260465000136,37.02315641600018],[36.96949048500011,37.012795378000135],[36.898223521000034,36.9020798250001],[36.80984858900007,36.8934469670001],[36.81938551900009,37.012028434000115],[36.86221352300004,37.100748700000054],[37.19375651900015,37.34882487100009],[37.227790566000124,37.42993906200019],[37.406852492999974,37.50301987000017],[37.5521775950001,37.61498248300006],[37.42183346900015,37.60855188700015],[37.2765045110001,37.56253959700018],[37.11125545700014,37.417614480000054],[37.00031258700017,37.398167794000074],[37.000617520000105,37.494365053000024],[36.8137475150001,37.542436105000036],[36.80268860000018,37.62562548900013],[36.701820609000094,37.5890242320001],[36.821315535999986,37.43278119800016],[36.76782256500002,37.33380718200016],[36.745292512000105,37.22341232100018],[36.664390550000064,37.06296961800007],[36.619022493000045,37.01966133000019],[36.51294347300018,36.761228647000166],[36.37963852300004,36.52242990200017],[36.241622608000114,36.43448077099998],[36.156394579,36.30448265000018],[35.8808445410001,36.182037293],[35.98772051200007,36.01767705700007],[35.92172258000011,35.928457062000064],[36.14339458200004,36.03328265200014],[36.196617488000186,36.024436056000184],[36.224678591000156,35.85404889500006],[36.15483856200012,35.818145851000054],[35.89652657900018,35.89580787200015],[35.81719555300009,35.83484243500004],[35.85413745000005,35.753828323000164],[35.77433050000019,35.66087352000005],[35.74344654000015,35.56295679700008],[35.924159534000125,35.421576051000045],[35.928653575000055,35.27338970300019],[35.96302759300005,35.19871583000008],[35.89731950700008,35.10571894900005],[35.88036761000018,34.907642004000024],[35.93910949700012,34.77322762600011],[35.99739859300013,34.54742938000015],[35.82326857700008,34.40898615600014],[35.73380249000013,34.363932420000026],[35.6643795440001,34.28355147700006],[35.63665053200009,34.1514982810001],[35.64404655600009,33.990582671000084],[35.57986850200007,33.90617003300002],[35.482734482000126,33.902237244000105],[35.492404516000136,33.823568221000016],[35.358123577000185,33.512985180000044],[35.29983850500008,33.46439478499997],[35.21552259400016,33.26351174600012],[35.21137254600012,33.20509843000008],[35.11890456300017,33.113567209000166],[35.08096656100014,32.9597596210001],[35.09027047300009,32.906386344000055],[35.034126474000175,32.813688362000164],[34.96520258700008,32.82536100100009],[34.89236049600004,32.4705478300001],[34.78449261000014,32.118661118000034],[34.64022848900015,31.813790009000172],[34.55429051200008,31.675664794000056],[34.38136648500006,31.469527643000163],[34.23045752700017,31.328554593000092],[34.319904504000135,31.333006222000108],[34.41976951600009,31.403374981000184],[34.51485851900003,31.552412764000053],[34.68021754400013,31.55462072400013],[34.738334475000045,31.49965455000006],[34.90927852900012,31.511409164000042],[34.914535491000095,31.40079503100003],[35.052486530000124,31.343213871000103],[35.1881214820001,31.380142693000096],[35.27962856300019,31.47961945500009],[35.36573753000016,31.703886830000158],[35.38146248400005,31.89906916800004],[35.45782061600016,32.027126040999974],[35.54325023400003,32.086531003000175],[35.56991670200017,32.19547743500016],[35.558955081000136,32.4263314050001],[35.57722873200015,32.592607042],[35.57251366100019,32.60744887500016],[35.66829145800011,32.66410616400009],[35.69167383200016,32.598995247],[35.698418747000176,32.45384466900015],[35.679532984000105,32.18665608900017],[35.686997357000166,32.15428049600007],[35.68079203500014,32.10805534200006],[35.67449678100007,32.08035622299997],[35.692483222000135,31.89878310199998],[35.69491139100006,31.895005950000098],[35.77432152799997,31.863439746000097],[35.748690849000184,31.782770558000152],[35.799052884000105,31.58590896300018],[35.788710680000065,31.532039572000144],[35.77836847700007,31.501372690000096],[35.78943013800006,31.41296933300015],[35.8725274950001,31.405594892000067],[35.91650434300004,31.50083309700011],[36.00481776800018,31.850219712000126],[36.023074006000115,31.981700595000063],[36.085756752000066,32.214085412000145],[36.01138281900012,32.35500917600001],[36.049244277000184,32.58559534900013],[36.04864152500005,32.69114091400019],[35.96369948600011,32.74632619099998],[35.83045555600006,32.77392444600008],[35.927612543000066,32.90337640300015],[35.93589352800018,32.97720705600011],[35.865867588000185,33.13985017600015],[35.92540357600018,33.253014083000096],[36.04865661300005,33.32342676400009],[36.06762351900011,33.43072384100009],[36.239189510000074,33.619904067],[36.265792497000064,33.69921296400014],[36.25498956500007,33.8316099860001],[36.13933958500019,33.830649253000104],[36.05998257600004,33.775672853],[36.0337825900001,33.64421460400018],[36.05770454200018,33.53645668900009],[35.782733526000015,33.339799470000116],[35.80908958200007,33.48870112999998],[35.90358749400008,33.55756198600011],[35.84356652900016,33.63739056100019],[36.039768610000124,33.784618355000134],[36.07981449400012,33.86881021400012],[36.20772954500006,33.904011022000134],[36.30287152200009,34.02694370200004],[36.41508056300012,34.12947198000012],[36.66050755000015,34.45396814200012],[36.71483250800014,34.54246662300011],[36.81098551000008,34.564572048000116],[36.878482462000136,34.404966195000156],[36.80503855000006,34.153313298000114],[37.047378482000056,34.29508631700003],[36.99584553500006,34.46260887800008],[36.9931225900001,34.5633942230001],[37.12018956000014,34.67966312300018],[37.1833725140001,34.88442279100008],[37.253921484000045,34.929026419000024],[37.31139753600013,35.03690788300014],[37.29367048100005,35.1684655410001],[37.344470514000136,35.247774606000064],[37.37701057100003,35.42358603200017],[37.55396646100013,35.41167635300019],[37.736606455000185,35.44346354700019],[37.85232147800019,35.52825856800018],[37.818016528000044,35.621487292000154],[37.84120154300018,35.75153537000011],[37.920967588999986,35.913152545],[37.87919251900013,36.04704154600006],[37.77489448600011,36.05463337100019],[37.761829613000145,35.94081986600014],[37.83251152100007,35.87378257800009],[37.65701659600012,35.87178332600007],[37.646728481000025,35.93713501400009],[37.553417614000125,36.02693101300014],[37.60887161500017,36.128708608000125],[37.81841651200011,36.120018753000124],[37.93885054700013,36.32685897800013],[38.0847474630001,36.33100098000017],[38.24330557800005,36.42202593400003],[38.337551530000155,36.66977772500002],[38.403221562,36.742537171000095],[38.486579589000144,36.66743883900017],[38.46456150299997,36.53612861400012],[38.49407150200017,36.42069002600016],[38.54808448600005,36.36599341400017],[38.63822950800011,36.40066733500004],[38.78363759100006,36.51402687600017],[39.013629471000115,36.481865681000045],[39.095519491000175,36.55297422800004],[39.12099846500013,36.6383903470001],[39.27315850600007,36.7322983410001],[39.73285258700008,36.87020428500006],[39.95695450300019,36.950647924000066],[40.261501568000085,36.95639573100004],[40.44060557200015,36.855323725],[40.614364604000116,36.83152817200016],[40.7519954550001,36.834652107000124],[40.83839762100013,36.81014359000005],[40.98463450700018,36.72105770600007],[41.070903569000166,36.6968720590001],[41.31141658100012,36.80167887400012],[41.624168523000094,36.79670505200016],[41.93947258700018,36.87249740600015],[42.22774551600003,36.79111197600014],[42.45463558800009,36.81426748700011],[42.59354752900009,36.90687075300019],[42.64019751400019,37.00794343000018],[42.681945594000126,37.06142751600004],[42.64825855800012,37.24138697700005],[42.437526615000024,37.285517865000145],[42.271758554000144,37.411636674000135],[42.04254552100019,37.45640576000011],[41.95277449900016,37.50958876800013],[41.96190256000017,37.67194254500009],[41.93352545900018,37.70826585700007],[42.065998589,37.90844230200008],[41.878524584000104,37.995972505000054],[41.73957861300016,38.00932051800004],[41.63791249700006,38.053073550000136],[41.43936549500012,38.091300057000126],[41.45494845899998,38.13237607700006],[41.312950470000146,38.098273801000175],[41.07332258600019,38.14545989200019]],[[41.655445595000174,37.698947025000166],[41.806789574000106,37.68000744400007],[41.87952454500015,37.61114575100004],[41.90159661000007,37.40757446800012],[41.78936058000005,37.301313561000086],[41.581199535,37.240119801],[41.42226758600003,37.21245650300017],[41.37342053700007,37.276980058000106],[41.424045555000134,37.391392869000185],[41.56026053500017,37.40613278100011],[41.64036554500012,37.49595476400003],[41.620964457000184,37.56904764200016],[41.37286749900011,37.52525940700008],[41.193519581000146,37.54959291],[41.095348552000075,37.509622631000184],[41.12903558800008,37.4379878690001],[41.05139955100003,37.386029122000025],[40.96533148700013,37.43537908500008],[40.78676945600006,37.401028705000044],[40.65909949200011,37.4342461870001],[40.57247151700017,37.41071751400011],[40.46557257900014,37.54107488400007],[40.53034256300015,37.61125253600005],[40.603900469000166,37.58368412200008],[40.76664350100009,37.608852630000115],[40.85155855100015,37.659514697000134],[41.00272349200003,37.63444140700017],[41.14757149600007,37.66734272400009],[41.23526749399997,37.61078683800008],[41.440010566000126,37.67499037200008],[41.52479150500017,37.65921395400005],[41.655445595000174,37.698947025000166]],[[36.353046600000084,35.820201597000164],[36.34187654100003,35.68436380300005],[36.4095845490001,35.344223155000066],[36.408489537000094,35.03825384900017],[36.35466749300019,35.01399745900011],[36.297698547000095,35.11723887000011],[36.22987352700011,35.16491764900019],[36.23372249700009,35.44312056000018],[36.1861805100001,35.59877987800019],[36.23322260000003,35.696498452000185],[36.353046600000084,35.820201597000164]],[[36.08204257100016,34.45969398800014],[36.244934466000075,34.53131282400017],[36.441307538000046,34.664419291000115],[36.50985356900014,34.653025602000184],[36.43282656100007,34.46706369200007],[36.35457948300018,34.35382384500008],[36.06810346600014,34.073222201000135],[36.035747476000154,33.97041128600006],[35.953746479000074,33.84923377600006],[35.859989527000096,33.795756228000016],[35.73989848000019,33.65262936400012],[35.683727491000184,33.46659151400013],[35.58270661500012,33.41867301200017],[35.56386158200007,33.49721982600016],[35.62239056800007,33.66987160900004],[35.69994345600014,33.72918396800014],[35.70656247800014,33.817522522000104],[35.789943471000186,33.89503920100009],[35.86526157700001,34.197097007000025],[36.049335547000055,34.38693772700003],[36.08204257100016,34.45969398800014]],[[35.425476528000104,33.110436066000034],[35.45526849400005,33.211766067000156],[35.55857058900011,33.300722367000105],[35.60594560900006,33.29316976900009],[35.53835260100004,33.105923249000114],[35.425476528000104,33.110436066000034]]]]},"properties":{"objectid":242,"eco_name":"Eastern Mediterranean conifer-broadleaf forests","biome_num":12,"biome_name":"Mediterranean Forests, Woodlands & Scrub","realm":"Palearctic","eco_biome_":"PA12","nnh":4,"eco_id":791,"shape_leng":107.355031771,"shape_area":14.2211078937,"nnh_name":"Nature Imperiled","color":"#F5A27A","color_bio":"#FE0000","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":142871.73736261702,"percentage":4.324998611756098}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-100.30364969299995,31.708839055],[-100.45809386499997,31.745616858000062],[-100.53076776899997,31.817827261000048],[-100.72297573599997,31.886052120000045],[-100.76873176599997,31.986410274000093],[-100.83741147199999,31.97596536000009],[-100.94792850799996,32.035683094000035],[-101.02714542099994,32.01231171400019],[-101.15263452899995,32.02767457300007],[-101.18928129899996,32.068077359000085],[-101.41471984699996,32.150735576000045],[-101.44345770199999,31.931134364000172],[-101.54515379299994,31.858487142000115],[-101.49370659799996,31.76608161000007],[-101.35057477099997,31.781444734000047],[-101.25751179199995,31.68624610100011],[-101.26663560499998,31.61715582300002],[-101.35099531199995,31.61107271300017],[-101.47944764499994,31.46162499600007],[-101.70106906199999,31.413089608000064],[-101.81189820999992,31.308527671000036],[-101.99233794399993,31.24696265900019],[-101.98785450899999,31.007987672000013],[-101.87330615299993,30.9660808700001],[-101.82067494299997,30.76016712000012],[-101.7587242109999,30.659334627000135],[-101.64657179599999,30.63734078500005],[-101.63778607699999,30.560630979000166],[-101.73111807199996,30.418985894000173],[-101.65893747299992,30.35126470100016],[-101.74331639799993,30.303072639000106],[-101.65304774399993,30.21961957900004],[-101.42748959599993,30.123391418000153],[-101.33673816199996,30.163352588000066],[-101.21502426599994,29.963122434000127],[-101.07364080399992,29.83491599600012],[-101.08447639499991,29.745793649000063],[-101.00959083999999,29.65267371500005],[-100.93292075599999,29.656665527000087],[-100.94271609999998,29.779914007],[-100.67009363699992,29.829558865000024],[-100.60009531599997,29.776118264000104],[-100.65311167099992,29.729744658000072],[-100.75075867099997,29.740349663000075],[-100.77137729399993,29.683577194],[-100.68623697599998,29.616672242000107],[-100.56403262299995,29.567995113],[-100.4400816729999,29.567977896000116],[-100.06107942099993,29.433513126000094],[-99.93191120899996,29.329013496000186],[-99.8555063419999,29.323408135000136],[-99.554385589,29.46721642600005],[-99.28390468999999,29.514396365000096],[-99.20562730799998,29.483350249000125],[-99.08901392499996,29.50463797600014],[-99.01395691,29.466585420000058],[-98.87656908499997,29.51696175600017],[-98.65738853599998,29.577653294000015],[-98.47915334399988,29.56127279300017],[-98.25935415299995,29.63807967600019],[-98.16962281199994,29.69770587200003],[-97.92741574199994,29.895560918000058],[-97.90184447799999,30.006785339000146],[-97.84023542699998,30.0956547240001],[-97.83518997099992,30.176405092000152],[-97.71016691099999,30.419069721000085],[-97.67449953299996,30.667959846000144],[-97.86222466599992,30.7748337970001],[-97.91176970899988,30.845071807000124],[-98.11862778199998,30.89214881800018],[-98.23814033399992,30.901150365000035],[-98.33485010899994,30.980072110000094],[-98.34228981599995,31.098026876000063],[-98.412247257,31.182618616000184],[-98.51218872599998,31.222737887999983],[-98.68702617599996,31.17979971600016],[-98.79962890899992,31.173322141000085],[-98.93043795199998,31.199114653000038],[-99.00241150399995,31.27688627600014],[-99.11647190799988,31.253506577000053],[-99.27808843099996,31.13928400300017],[-99.4451502529999,31.153204668000058],[-99.54784599699997,31.114715374000127],[-99.61405160899994,31.180195174000062],[-99.81488498699991,31.220283080000115],[-99.71450969599994,31.276503550000086],[-99.878863573,31.315901259000157],[-100.02204301499995,31.242160753000064],[-100.23078723599997,31.30171417100013],[-100.363549418,31.270717892000107],[-100.42408091599992,31.313298182000153],[-100.490441493,31.242283718000067],[-100.62062617399994,31.36357770700016],[-100.52947252599995,31.407459084000152],[-100.5652890429999,31.508318575000033],[-100.70170749399989,31.624224956999967],[-100.38840657999998,31.585737528000095],[-100.30364969299995,31.708839055]]],[[[-100.21311850799992,32.006085540000186],[-100.15468596499989,32.074901628000134],[-100.18094465499996,32.15765674800019],[-100.12404636699989,32.20218085700003],[-100.0483260879999,32.119119722000164],[-99.96146315099998,32.168379697000034],[-99.8984015229999,32.158897816000035],[-99.84274600799989,32.26054573600004],[-99.86308686999996,32.32103274200006],[-100.13752104999998,32.33336320500007],[-100.18987876399996,32.4482105730001],[-100.26515081199983,32.45877681300004],[-100.28244596699989,32.38414626300005],[-100.42221247499998,32.32921076500003],[-100.51032789599998,32.36114257800017],[-100.66265546499989,32.254243003],[-100.64239893099995,32.152762973000165],[-100.67595454199983,32.07841721200003],[-100.55470318299996,32.080015064000065],[-100.49571926499988,32.01133983400007],[-100.21311850799992,32.006085540000186]]]]},"properties":{"objectid":246,"eco_name":"Edwards Plateau savanna","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Nearctic","eco_biome_":"NE08","nnh":2,"eco_id":391,"shape_leng":19.3825278921,"shape_area":7.05160838864,"nnh_name":"Nature Could Reach Half Protected","color":"#93FC7C","color_bio":"#FEFF73","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":75207.44483973771,"percentage":0.7098190791401333}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[145.12369299600027,-15.88997554599996],[144.93543010700012,-15.7009752969999],[144.84510247100002,-15.736365606999982],[144.70305173300017,-15.667387542999961],[144.63394789900008,-15.6851170139999],[144.58402694000006,-15.637496031999945],[144.39442654700008,-15.742609759999937],[144.50752481100005,-15.861301792999882],[144.36392127300007,-15.948455835999937],[144.22926458300003,-15.912066821999929],[144.12776709800005,-15.862474721999945],[144.1793507640001,-15.79400612899991],[144.11711462100004,-15.668116877999978],[144.04199282000002,-15.591710669999884],[144.04659439800002,-15.817291796999939],[144.10056234700005,-16.088363243999936],[144.07595097800004,-16.229017380999835],[144.10680967000008,-16.46724158899997],[144.11068859400007,-16.61072277999989],[144.1885352070002,-16.619097026999896],[144.25791879300016,-16.75095376099995],[144.13091333900002,-16.808734751999964],[144.17050979200008,-16.878393757999902],[144.06383803300014,-16.891664763999927],[144.10852473100022,-16.958856632999925],[144.03657852700007,-17.001129174999846],[144.00020387300015,-17.08786353299996],[144.02839317300015,-17.1745312889999],[144.0390551160001,-17.38990131299994],[143.98260012200012,-17.375118632999886],[143.8478303380001,-17.455430590999867],[143.9174233970001,-17.500228123999875],[143.92907999400006,-17.65013255399998],[143.79425773800006,-17.689219140999967],[143.69881740100016,-17.750837016999924],[143.54871767200018,-17.655553918999942],[143.47885281100002,-17.743491493999954],[143.55105256900015,-17.825307540999916],[143.5212353830001,-17.89705358599997],[143.41615460900005,-17.961498726999935],[143.4082092240003,-18.02968631099992],[143.31660585600002,-18.01843973099983],[143.27790038900002,-18.057238947999963],[143.16337152400013,-18.07458541799997],[143.18066554200016,-18.213678108999886],[143.24848832100008,-18.304617907999898],[143.0902054720001,-18.369578671999875],[142.9670937840002,-18.38337586499989],[142.9245874610001,-18.273647495999967],[142.8335766560001,-18.24179584599989],[142.67414824900004,-18.075144119999948],[142.60268703800023,-17.958398959999954],[142.54624087200023,-17.993821529999934],[142.40138784600015,-18.00315540699995],[142.38470449700003,-18.03453254799996],[142.2245112400003,-18.06437305499992],[142.18615883700022,-18.111514336999903],[142.24220042600007,-18.188425690999964],[142.42625151000016,-18.236533986999973],[142.52369466200025,-18.241363342999875],[142.47758685400004,-18.374611409999943],[142.55246833600017,-18.65235809899997],[142.62318403400002,-18.656964733999928],[142.6195167310001,-18.737444842999935],[142.72282375800023,-18.850674932999937],[142.79408692500022,-18.841956877999905],[142.85511343500013,-18.692173973999843],[143.01229090100014,-18.818485329999874],[143.11035941700015,-18.769589466999946],[143.20964712600005,-18.826715038999907],[143.21460355300007,-18.875517264999928],[143.30138075300022,-18.950332137999965],[143.41848812800026,-18.91383986099993],[143.53920348800023,-18.96107026699997],[143.54838984900027,-19.026199214999963],[143.6440041090001,-19.041082003999975],[143.70869688300013,-19.129911664999838],[143.54637378000018,-19.296694409999873],[143.71184844100003,-19.517606128999944],[143.88742892400035,-19.601493542999947],[143.97091391000004,-19.61295015199994],[144.06473337000023,-19.538733851999837],[144.09130271800018,-19.604617250999922],[144.00343413600012,-19.644280494999975],[143.86320283100008,-19.746733925999877],[143.89506714100003,-19.80701106899994],[143.967417715,-19.82803959099988],[144.0332433010002,-19.746855903999915],[144.0993178880002,-19.75267035299987],[144.0355643140001,-19.904334366999933],[144.1026357410002,-19.887656491999962],[144.15277453900035,-19.79099019399996],[144.28504957200005,-19.689502164999908],[144.30673790600008,-19.830269511999916],[144.35042445800002,-19.946637892999888],[144.25775934800004,-20.027201840999908],[144.26936995900007,-20.166616720999855],[144.20298293700012,-20.17346595299989],[144.17942335100008,-20.251990937999892],[144.0921934390002,-20.241329649999898],[143.9748067930002,-20.274583436999933],[143.9282359650001,-20.252292910999927],[143.7497105010002,-20.353493379999975],[143.78882699400026,-20.41867600599994],[143.66972252200003,-20.520054320999975],[143.6484168310002,-20.59816637399996],[143.71744538300004,-20.630232598999953],[143.89904808300014,-20.621138404999897],[144.0584003570001,-20.594832500999928],[144.0548044100001,-20.75083550499994],[144.19394910900007,-20.685173628999962],[144.29819678400008,-20.68060136899993],[144.45485619600004,-20.619275270999935],[144.58600108200017,-20.62960547699987],[144.65976892100002,-20.567347409999968],[144.67134701200018,-20.42723291699997],[144.76577355700033,-20.30217993499997],[144.85108937300015,-20.350013830999956],[145.1372535280002,-20.44977425299993],[145.2380406100002,-20.560140894999904],[145.46980782200023,-20.43467487399994],[145.41929069200023,-20.368719848999945],[145.50565021600005,-20.34280390699996],[145.54766197800018,-20.423676324999917],[145.6158945520001,-20.35669442899996],[145.69811302200003,-20.213942998999926],[145.80187312300006,-20.16779354499988],[145.62318264300018,-20.06034903399984],[145.59436596000012,-19.998669059999884],[145.6607740400002,-19.936678160999975],[145.7405858010003,-19.925130195999884],[145.91879711400009,-19.836449432999927],[146.1127403050001,-19.899687662999952],[146.26461247200018,-19.91463080699998],[146.25682492300018,-19.972037389999855],[146.13210801500009,-20.139915164999877],[146.10226263500022,-20.21926129899998],[146.0320313520001,-20.276990667999883],[146.08812771700002,-20.36354311899987],[146.17260080200003,-20.3637934759999],[146.31690045900007,-20.432205245999967],[146.38916333300006,-20.39017129599989],[146.45104781500027,-20.311044050999897],[146.58606245800001,-20.31759766899995],[146.72084486200004,-20.40315961999994],[146.76270993900016,-20.542165614999874],[146.79734647500015,-20.565834801999927],[146.90524224700005,-20.46231368399998],[147.00319672100022,-20.567301215999976],[147.10080338800014,-20.538080987999876],[147.1765917140002,-20.615368583999896],[147.08790995700008,-20.675814665999894],[147.04848867400005,-20.843526456999882],[147.17489006800008,-20.887104610999927],[147.2795651370002,-20.86883554499991],[147.30054584000004,-20.8188824639999],[147.39113187500004,-20.812121839999975],[147.50965454200002,-20.840895911999837],[147.6339547990002,-20.912700256999926],[147.66084908400012,-20.814244737999957],[147.5399370780001,-20.75595525599988],[147.44700580000006,-20.612305660999937],[147.36657243000025,-20.588156798999933],[147.37697764900008,-20.508139463999896],[147.29010080600017,-20.440883850999967],[147.20889644800002,-20.239903332999916],[146.97736581400022,-19.98585610599997],[147.0011016740002,-19.905086887999914],[146.72486958000013,-19.90285060499997],[146.68145472900005,-19.831411169999967],[146.76629538600002,-19.787420484999927],[146.7490695790002,-19.715685505999886],[146.77802329700012,-19.63586910299989],[146.67116504000012,-19.595839221999825],[146.6119497100002,-19.521478698999886],[146.59909450400005,-19.45044264299986],[146.46854016900022,-19.34198231599987],[146.39836863000016,-19.342049429999918],[146.37614736400008,-19.267380232999926],[146.2426793520001,-19.104903487999934],[146.08477539600005,-19.05758729299987],[146.04625627300004,-18.902696465999952],[145.90935343200033,-18.909517136999966],[145.76849122900012,-18.822525820999942],[145.74084882900002,-18.721691440999905],[145.6293736890001,-18.665371963999917],[145.6573583080002,-18.555199073999972],[145.64774869100006,-18.439540575999956],[145.54979339400006,-18.294505345999937],[145.5896726440002,-18.176330969999924],[145.47930538100013,-18.075266817999875],[145.45616107700005,-17.985445917999982],[145.51077170700023,-17.954923882999935],[145.43651928800034,-17.867811692999908],[145.417380685,-17.74246887199996],[145.43776391000017,-17.597738197999945],[145.36411559200008,-17.538486630999955],[145.32306829300012,-17.388043687999982],[145.34568295200006,-17.288573157999963],[145.42545515100016,-17.179456611999967],[145.52003335200015,-17.135807310999894],[145.56307488300024,-17.02252087499994],[145.53958385300007,-16.868717981999964],[145.43757002700033,-16.766686032999928],[145.374620595,-16.761188973999936],[145.33585982800003,-16.678549526999973],[145.24762217000023,-16.63927802899991],[145.21329421400014,-16.51493554599989],[145.12654341000007,-16.484470372999965],[145.14641890200005,-16.36616030499988],[145.08362825600034,-16.311991879999823],[144.99052430100016,-16.334041586999888],[144.94311250200008,-16.293770269999925],[144.89956053200012,-16.17626267399993],[144.9852578650001,-16.084533246999968],[145.08203369600005,-16.093893402999925],[145.06320870900004,-16.00323113999997],[145.12369299600027,-15.88997554599996]]]},"properties":{"objectid":247,"eco_name":"Einasleigh upland savanna","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Australasia","eco_biome_":"AU07","nnh":2,"eco_id":185,"shape_leng":112.876737935,"shape_area":9.95456771596,"nnh_name":"Nature Could Reach Half Protected","color":"#CEFC39","color_bio":"#FEAA01","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":116880.83007698045,"percentage":0.5451781526839857}}, + {"type":"Feature","geometry":null,"properties":{"objectid":249,"eco_name":"Ellsworth Land tundra","biome_num":11,"biome_name":"Tundra","realm":"Antarctica","eco_biome_":"AN11","nnh":1,"eco_id":121,"shape_leng":16.0134589737,"shape_area":0.0620223223725,"nnh_name":"Half Protected","color":"#72EBD8","color_bio":"#9ED7C2","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":218.39399384490133,"percentage":0.002555763834397964}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-84.7889042,-78.47980563999994],[-85.64250313799994,-78.6659592339999],[-85.06258283399995,-78.62923474799993],[-84.7889042,-78.47980563999994]]],[[[-86.03601286099996,-78.23242205199989],[-86.30256402699996,-78.27996489599997],[-86.01899423899994,-78.45478330299989],[-85.78554405899996,-78.41031091799988],[-85.82042771399989,-78.30369809699988],[-86.03601286099996,-78.23242205199989]]],[[[-86.19691328,-77.77800537399986],[-86.28014862899983,-77.8558003629999],[-86.08736913699988,-78.0299753729999],[-85.89652351899997,-77.97100061499998],[-86.13097617299997,-77.8893088779999],[-86.02166136099999,-77.8150059589999],[-86.19691328,-77.77800537399986]]]]},"properties":{"objectid":250,"eco_name":"Ellsworth Mountains tundra","biome_num":11,"biome_name":"Tundra","realm":"Antarctica","eco_biome_":"AN11","nnh":1,"eco_id":122,"shape_leng":166.309322236,"shape_area":1.23655424508,"nnh_name":"Half Protected","color":"#5AB1D2","color_bio":"#9ED7C2","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":2946.2399834473445,"percentage":0.034478482968261226}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[82.73910549900012,45.236971930000095],[82.93395256100018,45.14917685900019],[83.40505960900009,44.980662886000175],[83.57079363900004,45.010809910000035],[84.03831457400014,44.948260963],[84.07797958300011,44.985712816000046],[84.5497055510001,45.025599946],[84.66370362500004,45.104262934000076],[84.69922663400018,45.257208862000084],[84.78836850900012,45.38718401700015],[85.09151462200009,45.50092325800006],[85.09236153000018,45.643165329000055],[85.0450285870001,45.70014550700017],[84.9993975060001,45.87244776400013],[84.68995658400019,45.92608289200007],[84.55171955500009,46.010693343000014],[84.48542054400014,46.09495644800006],[84.6841125540002,46.073185293],[84.81594865900018,46.171444835000045],[84.88482661300009,46.13647168000011],[85.11142751000011,46.24352383799999],[85.44255861800002,46.273157051000055],[85.51192456700011,46.26391399099998],[85.70931252000014,46.31397407000014],[85.7836304970001,46.37967846800018],[85.922698508,46.65227472300006],[86.51414454000013,46.62805856700015],[86.73465765999998,46.63194156700007],[86.85928365200004,46.66936760300018],[86.9334415350001,46.730982805999986],[86.89265452400014,46.91425798000006],[86.73338361100019,47.02084444000013],[86.5634155460001,47.1848814710001],[86.35188262900016,47.29114388700003],[85.77587857700013,47.50106026999998],[85.61854556100019,47.58774272800008],[85.65242756000009,47.4408257340001],[85.79133564500006,47.35498750200003],[85.85238657800011,47.2532258330001],[85.87274152700007,47.131113071000186],[85.79811861600007,46.961514145000194],[85.71670552600006,46.880104742000185],[85.30966957800007,46.852966487000174],[85.08579263200005,46.771560270000066],[84.99760461699998,46.69015086700011],[84.84156761100019,46.676581572000146],[84.69910459300013,46.717288788000076],[84.64483663200014,46.79191236900016],[84.63805366000008,46.9547281560001],[84.71853652700014,46.977036256000076],[84.51693750600003,46.97535015200003],[84.43803362200009,46.99925332800018],[84.19754055900012,46.99977635900018],[84.02474963700018,46.89898363800012],[83.5924836580001,46.82487839400005],[83.16737364500005,46.80388625300003],[82.5424425810001,46.80967328600019],[82.44999655900011,46.73838385900018],[82.34509251400004,46.73101381900017],[82.28748352600013,46.779098283],[82.04773762500014,46.84859465400018],[81.86685162900005,46.81339233700015],[81.53756755600011,46.86887349500006],[81.3780285900001,46.94924605600005],[81.25891856100003,46.922512814000015],[81.14959758900017,46.96145295700012],[80.97923255700016,46.98037426500014],[80.80998265300013,47.07207983000012],[80.72131351700011,47.076104652000026],[80.50670662000005,47.006764184000076],[80.36083954400004,47.05336454800005],[80.24021155200006,46.987504247000174],[80.208808584,46.91468478700011],[80.18192262399998,46.755541950000065],[80.25003061700005,46.693141698000034],[80.28495063100013,46.59394321500008],[80.35993161700014,46.53179408500017],[80.548019512,46.461881804000086],[80.53646053300008,46.3771685910001],[80.67916059000015,46.30466211099997],[80.93100761199997,46.26489819400018],[81.04051952400005,46.21444098100005],[81.067397605,46.12975073400003],[81.23280356800012,46.064663412000016],[81.4397425320002,45.92150888800012],[81.53838361800013,45.82322671400004],[81.82303657100016,45.70818341699999],[81.9609755400001,45.55971543600003],[82.09690050500018,45.48368403100005],[82.31133255500015,45.44656711900012],[82.73520657200004,45.28761606000012],[82.73910549900012,45.236971930000095]]]},"properties":{"objectid":251,"eco_name":"Emin Valley steppe","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Palearctic","eco_biome_":"PA08","nnh":3,"eco_id":728,"shape_leng":18.5212925282,"shape_area":7.59403598652,"nnh_name":"Nature Could Recover","color":"#FD9057","color_bio":"#FEFF73","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":65116.93112793775,"percentage":0.6145833060564521}}, + {"type":"Feature","geometry":null,"properties":{"objectid":252,"eco_name":"Enderby Land tundra","biome_num":11,"biome_name":"Tundra","realm":"Antarctica","eco_biome_":"AN11","nnh":1,"eco_id":123,"shape_leng":89.6381789895,"shape_area":0.453849802876,"nnh_name":"Half Protected","color":"#4CAD9E","color_bio":"#9ED7C2","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":2141.678126432834,"percentage":0.025063067917268252}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-71.60343162499987,18.52335312700012],[-71.72042857599996,18.569161233000102],[-71.80419161699984,18.491143987000044],[-71.62831162799989,18.40575116900004],[-71.49903854099995,18.429057722000096],[-71.51927161699984,18.48928203100013],[-71.60343162499987,18.52335312700012]]],[[[-71.91083557699989,18.475116950000086],[-71.87812050599996,18.501378459000023],[-71.99132548499995,18.646642708000172],[-72.06893151399998,18.59863753700006],[-72.0184245129999,18.513818544],[-71.91083557699989,18.475116950000086]]]]},"properties":{"objectid":254,"eco_name":"Enriquillo wetlands","biome_num":9,"biome_name":"Flooded Grasslands & Savannas","realm":"Neotropic","eco_biome_":"NO09","nnh":1,"eco_id":580,"shape_leng":1.6898677104,"shape_area":0.0537589158955,"nnh_name":"Half Protected","color":"#46A6FA","color_bio":"#BEE7FF","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":631.8210233627187,"percentage":0.054638644636184286}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[43.32615493500009,12.067356400000108],[43.41550059200017,12.090542170000049],[43.398818593000044,12.239162030999978],[43.35580853300013,12.382142547000058],[43.16490146800004,12.631035618000169],[43.098949468000114,12.74586668600017],[43.08034851600007,12.828202121],[42.891178517000185,12.800184101000127],[42.824771548,12.858830266000155],[42.77439848900008,12.844140310000057],[42.73588146500015,12.955023669000184],[42.73818950600008,13.035667133000118],[42.66572158200012,13.052526158000148],[42.5540100070001,13.196651977000045],[42.4923705810001,13.176658959000122],[42.388278575000186,13.20189720500008],[42.3521886150001,13.391504572000088],[42.28937161500005,13.552233599999965],[42.096772998000176,13.641880737000179],[42.10203959900008,13.518215143000191],[42.1520306110001,13.354175934000068],[42.30430950700003,13.084734124000136],[42.3783495400001,13.010799032000136],[42.47338858800009,12.964272093000147],[42.73896047300019,12.787135154],[42.83686059900009,12.70236980499999],[43.03908960400014,12.433408111000062],[43.32615493500009,12.067356400000108]]]},"properties":{"objectid":255,"eco_name":"Eritrean coastal desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Afrotropic","eco_biome_":"AF13","nnh":3,"eco_id":93,"shape_leng":7.10644006024,"shape_area":0.381010762862,"nnh_name":"Nature Could Recover","color":"#E74E6A","color_bio":"#CC6767","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":4603.510184530636,"percentage":0.017449317730903434}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[126.0394265770002,-32.2700143749999],[126.30407713900001,-32.156745964999914],[126.49423989000013,-32.02185063299993],[126.5962067480001,-31.92329017999998],[126.5677719800002,-31.936378521999984],[126.4751128900001,-31.98801993099994],[126.00146478500005,-32.12206265599991],[125.89742273600007,-32.123428402999934],[125.80818932900002,-32.16071697499996],[125.67563623700005,-32.29597859699987],[125.55553429300005,-32.32921602899995],[125.38605506100009,-32.440216062999866],[125.34333032100017,-32.49283597499988],[125.24744419800015,-32.49975205099997],[125.09697730100015,-32.559303292999914],[125.08186339000008,-32.63418201999991],[125.01126094200015,-32.66308215099997],[124.76202387800004,-32.64366915999989],[124.69551079400003,-32.71502681699991],[124.56065385100021,-32.72285467599994],[124.52623742100013,-32.762401500999886],[124.28427132200011,-32.83494955599997],[124.15605904900008,-32.78911965599997],[124.06864166700007,-32.864738503999945],[123.9174881240001,-32.90676503099991],[123.88246920400002,-32.99306108299993],[123.9526748510001,-33.08774188799998],[123.83821862100024,-33.144618967999975],[123.7833862230002,-33.23800275699995],[123.70085146600002,-33.23434070399992],[123.45114132700019,-33.31008142499991],[123.35112007700002,-33.31563560999996],[123.20711512400021,-33.278327925999974],[123.19689171700009,-33.10779575899994],[123.292419429,-33.01943591399993],[123.31552129500017,-32.93958286399993],[123.38144680800008,-32.8934592629999],[123.32741555100017,-32.8123740719999],[123.35916133900014,-32.75099942999992],[123.29036720400018,-32.68477636099993],[123.14586637800005,-32.769828704999895],[122.99721533700006,-32.70327371199994],[122.94247430100006,-32.63343804199991],[122.93160247000003,-32.48860160499993],[122.84218600200018,-32.42920676799997],[122.85824572900015,-32.351718922999964],[122.72357184600003,-32.3035544949999],[122.6582260260002,-32.23276513199994],[122.59037787300008,-32.27568818799995],[122.43423458400014,-32.262107828999945],[122.38498688000016,-32.31270988099993],[122.27673342700018,-32.33947748799983],[121.90882118600018,-32.5426712499999],[121.93009194100023,-32.58113462999995],[121.9007262790002,-32.71064760699994],[121.71621712100034,-32.705577896999955],[121.63593290500012,-32.67288210399994],[121.50148768100019,-32.700527129999955],[121.4915847970002,-32.63388446199997],[121.37789920100033,-32.600318962999836],[121.32759856100006,-32.63204949499993],[121.23601537300021,-32.59268958599989],[120.93148037800006,-32.605636608999816],[120.74253082300015,-32.58938594299991],[120.60826882800029,-32.66032785699997],[120.58192450500007,-32.630664803999935],[120.41039271300019,-32.67545702399997],[120.30088801000011,-32.68014904599988],[120.26627343200016,-32.59232329699995],[120.33763125500013,-32.477367338999954],[120.1893463350001,-32.45508572599988],[119.97956087700004,-32.518981978999875],[119.90863807400001,-32.43978120899993],[119.8520431280001,-32.53909687099991],[119.69339013000001,-32.54849616899992],[119.59098825100023,-32.38780586499996],[119.62400825600002,-32.25893779199993],[119.48455819700007,-32.14489747299996],[119.48085792200004,-32.02032847799995],[119.38887022300003,-32.02354042299993],[119.28466036700013,-31.976770408999982],[119.12060540000027,-32.156223267999906],[118.8674316910002,-32.150917019999895],[118.68181612100011,-32.13290028599994],[118.57127357000002,-32.072349584999984],[118.41854858900001,-32.1437033869999],[118.32438662400023,-32.21010582899987],[118.19461816600017,-32.147846225999956],[118.1905593140001,-32.21583167499989],[118.13145449100011,-32.30599597499997],[118.03479773600009,-32.314739137999936],[117.97124480600007,-32.37298967699991],[117.98062901700018,-32.512882300999934],[118.02938084900018,-32.68629448899998],[117.98918157600008,-32.85353089199998],[117.99720004000005,-33.01256560299993],[117.87815857400005,-33.2090759699999],[117.87724310300007,-33.30765536599995],[117.91975410400016,-33.42034150499995],[117.996505683,-33.42329025799995],[118.12525171600032,-33.48374171699987],[117.96903232000034,-33.6388892359999],[117.9745787930002,-33.73889539899983],[117.85377511500019,-33.72763816899993],[117.85061647900011,-33.80989078999994],[117.92329411800029,-33.84963995399988],[117.92203498900017,-33.91607290699989],[117.85638423500006,-34.02486045499995],[117.6928863280001,-34.16554634099998],[117.81105037600003,-34.32006840299988],[117.68238833000021,-34.31275552799991],[117.75186911100013,-34.391620686999886],[117.73428337500025,-34.47878258999998],[117.90076440100006,-34.61620322199991],[118.07573696500003,-34.65936281499995],[118.27655026700006,-34.767181413999936],[118.23199459600005,-34.91638016499991],[118.38927001100012,-34.90794999099995],[118.43012001100021,-34.771579990999896],[118.5216200110001,-34.71662999099982],[118.64982001100009,-34.68909999099998],[118.75371001000008,-34.621259990999874],[118.75021001000005,-34.55092999099992],[118.90656001000002,-34.49962999099995],[118.96391001000018,-34.45149999099988],[119.11615001000007,-34.4703799909999],[119.25776001000008,-34.521279990999915],[119.27203001000021,-34.46643999099996],[119.36600001000022,-34.46394999099988],[119.40399001000003,-34.38125999099992],[119.5041100100002,-34.35176999099991],[119.51112001000001,-34.265139990999955],[119.58083001000023,-34.15393999099996],[119.66223001000003,-34.08177999099996],[119.85373001000005,-33.97107999099984],[119.94622001000005,-33.976189990999956],[120.04989001000001,-33.923439990999896],[120.12010001000021,-33.95219999099993],[120.30655000900026,-33.94062999199997],[120.4370600090001,-33.971119991999956],[120.6007400090001,-33.88568999199998],[120.80681000900017,-33.888559991999955],[120.86609000900012,-33.85671999199997],[121.00574000900019,-33.87025999199989],[121.26871000900019,-33.850929991999976],[121.31861000900017,-33.821349991999966],[121.5301900090002,-33.82597999199987],[121.66150000900006,-33.88430999199994],[121.78593000900003,-33.90800999199996],[122.0188800090001,-33.8369799919999],[122.08319000900019,-33.899599991999935],[122.12030000900006,-34.013439991999974],[122.25353000900009,-34.00424999199993],[122.28007000900004,-33.95359999199991],[122.39504000900013,-33.911419991999935],[122.5750400080002,-33.947719991999975],[122.6030000080001,-33.89791999199991],[122.83050000800017,-33.90926999199996],[123.00217000800012,-33.883569991999934],[123.12521000800018,-33.89644999199987],[123.1728400080001,-33.99286999199984],[123.25341000800017,-33.997439991999954],[123.3526800080001,-33.901689991999945],[123.57227000800026,-33.88879999199992],[123.74390000800008,-33.80821999199992],[123.75594000800015,-33.72437999199997],[123.868480008,-33.607399992999945],[123.97981981900011,-33.55306031999993],[124.0165400080001,-33.376829992999944],[124.10073000700015,-33.17808999299996],[124.23947000700002,-33.017259992999925],[124.36898000700023,-32.95588999299997],[124.74822000700021,-32.89878999299998],[124.89984000700008,-32.82926999299997],[125.02606000700007,-32.72857999299998],[125.10144000700006,-32.716419992999874],[125.31713000700017,-32.60715999299998],[125.53120000600006,-32.54978999299988],[125.71177000600005,-32.4218499939999],[125.94882000600023,-32.291559993999954],[126.0394265770002,-32.2700143749999]]]},"properties":{"objectid":256,"eco_name":"Esperance mallee","biome_num":12,"biome_name":"Mediterranean Forests, Woodlands & Scrub","realm":"Australasia","eco_biome_":"AU12","nnh":2,"eco_id":198,"shape_leng":41.3375994508,"shape_area":9.98783469057,"nnh_name":"Nature Could Reach Half Protected","color":"#E54C00","color_bio":"#FE0000","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":103465.95004009089,"percentage":3.1321106507696634}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-62.07879256699988,-39.07387745899996],[-62.077979522999954,-39.141308360999915],[-61.86025656999993,-39.231098157999895],[-61.874637568999844,-39.13402666699989],[-62.07879256699988,-39.07387745899996]]],[[[-59.99734858099998,-30.17567737099995],[-60.22245062499991,-30.387452524999958],[-60.272212475999936,-30.383685696999976],[-60.431701485999895,-30.531410202999893],[-60.60474352999995,-30.642543342999886],[-60.59130448899998,-30.53696204099998],[-60.62845660499988,-30.41318949399988],[-60.63464747799998,-30.27499772599998],[-60.668765511999936,-30.20358910799996],[-60.67609062499986,-29.965182970999876],[-60.74511760899992,-29.79966116999998],[-60.848297496999976,-29.655717740999876],[-61.140289475999964,-29.410062263999976],[-61.32012153199997,-29.384272153999916],[-61.470786576999956,-29.553106817999947],[-61.529663579999976,-29.704392793999943],[-61.58668147599997,-29.745726472999877],[-61.74356857599997,-29.854795149999916],[-62.12956259299989,-30.079365782999957],[-62.32744558099995,-30.263088215999915],[-62.33620450199999,-30.471241548999956],[-62.258369478999896,-30.594482180999933],[-62.26296963499993,-30.690196473999947],[-62.37513358099994,-30.796136856999965],[-62.56837047999994,-30.850396771999954],[-62.830097585999965,-30.8941254959999],[-62.95021461699997,-30.864741393999964],[-63.53795651799987,-30.63817553299998],[-63.69432863399999,-30.51550872699994],[-63.755851634999885,-30.42213030199997],[-63.79884358999993,-30.28895325999997],[-63.916541603999974,-30.3913182579999],[-63.881755532999875,-30.53303914199995],[-63.943427563999876,-30.621310975999904],[-63.99871459799988,-30.75608728599991],[-64.07904055499995,-30.824261829999898],[-64.17463649599989,-30.824444890999928],[-64.22663162099991,-30.784514174999913],[-64.27304858899998,-30.666762348999953],[-64.38404862499988,-30.646667071999957],[-64.41060651699996,-30.713955648999956],[-64.27079050499987,-30.947729610999943],[-64.26552549599995,-31.085160804999873],[-64.15927162999992,-31.047820095999896],[-64.15678354599987,-31.176910625999938],[-64.27110247899992,-31.31360873799997],[-64.31393450699994,-31.411025562999953],[-64.32550857399985,-31.932454036999957],[-64.18330355199998,-32.17677193099996],[-64.18573748899985,-32.52680087799996],[-64.3364486349999,-32.56501565099995],[-64.33176449199993,-32.28282882199994],[-64.4541935869999,-32.28318656199997],[-64.46154753399998,-32.51401143499993],[-64.54249559599998,-32.65604295199984],[-64.70822157999999,-32.82522781199992],[-64.75915555599994,-32.92975031199995],[-64.93235048599996,-33.02698759799995],[-64.89395851999996,-33.14620105999995],[-65.0095675959999,-33.3539896129999],[-65.23266552699982,-33.41653302799989],[-65.33847062699994,-33.37530512799998],[-65.39604960799994,-33.290716637999935],[-65.39399754999988,-33.17474194299996],[-65.35797849999994,-33.04544706299998],[-65.59709156699995,-32.90656932099989],[-65.69093351099997,-32.82194663199988],[-65.77315562299992,-32.78505971999988],[-65.98256657699994,-33.116439938999974],[-66.12237554899997,-33.53481241099996],[-66.26824161899987,-33.619458065999936],[-66.34540558699996,-33.62046087699997],[-66.35305759499988,-33.74356957699996],[-66.32456951699999,-33.77831256499991],[-66.33265654499996,-34.018566576999945],[-66.4134825669999,-34.10797332099986],[-66.33631859899992,-34.2181800919999],[-66.34557356099998,-34.369958924999935],[-66.42393463299999,-34.472507151999935],[-66.61952952799999,-34.57446344799996],[-66.6678005739999,-34.64831472099985],[-66.58939356899992,-34.80887829099993],[-66.49279749899989,-34.891777324999964],[-66.37474057199984,-35.087012468999944],[-66.38446860899995,-35.299717846999954],[-66.46870455699997,-35.49780719799992],[-66.54992653999989,-36.047171213999945],[-66.59476452499996,-36.13897015299989],[-66.83589159499985,-36.37173007199988],[-66.83794348499998,-36.42548170799995],[-66.6222075469999,-36.810345509999934],[-66.56185164099998,-37.09022463399987],[-66.30490858999997,-37.356397333999894],[-65.88414761099995,-37.48815096099992],[-65.75076252999997,-37.47360919699997],[-65.60173748799997,-37.591474010999946],[-65.43529552199988,-37.762822575999905],[-65.42436954399994,-37.812938644999974],[-65.31369757599992,-37.893580097999916],[-65.2813875189999,-37.96148088899997],[-65.16574860299988,-38.04672635399993],[-65.12104757799995,-38.121657214999914],[-64.98807555799993,-38.22450752599997],[-64.95986961499995,-38.29115237299993],[-64.84335361699993,-38.37486881099994],[-64.82095348399997,-38.44630860999996],[-64.70562754899993,-38.52511911899995],[-64.6723865969999,-38.59641106099991],[-64.47901961099984,-38.74454477199998],[-64.44534263299988,-38.820539296999925],[-64.34683263899996,-38.855016746999866],[-64.12712853999989,-39.25176977499984],[-63.98169748999999,-39.448764951999976],[-63.87597654599983,-39.68331675499991],[-63.362331506999965,-40.46316768599996],[-63.28252757399997,-40.73590760699983],[-63.233409621999954,-40.784880216999966],[-63.06787457699994,-40.870321314999956],[-62.89334860099996,-41.08484992399997],[-62.326709481999956,-40.880804225999896],[-62.173252592999916,-40.59776814299988],[-62.40493057599991,-40.46811569099992],[-62.48482553599996,-40.334965470999975],[-62.436222567999835,-40.24386357099996],[-62.35452650399992,-40.20110496799998],[-62.33121861099994,-39.91588355499994],[-62.26150850199991,-39.859549453999875],[-62.11386161199994,-39.845564583999874],[-62.11546758499992,-39.66999187599998],[-62.01192861699991,-39.36308815499996],[-62.138240544999974,-39.28954919199987],[-62.26226052599998,-39.27289468599997],[-62.35733460999984,-39.10125493399994],[-62.29991957899989,-39.027854272999946],[-62.32287962299989,-38.90565199199989],[-62.37621652299998,-38.803251788999944],[-62.24351154999994,-38.79240694799989],[-62.1429136239999,-38.82710819399995],[-62.09266662899995,-38.899083093999934],[-62.15686060799999,-38.74256463099994],[-62.31038254099997,-38.603056066999955],[-62.31731454199996,-38.556711685999915],[-62.43390647999996,-38.47436216899996],[-62.714736613999946,-38.14227887599998],[-62.90814550999994,-37.9660238809999],[-62.953437626999914,-37.891970436999884],[-63.18423852799992,-37.687532967999914],[-63.61932350799998,-37.04854561999986],[-63.896144577999905,-36.57354936899992],[-64.06314058799995,-36.171375260999866],[-64.27466562599994,-35.25097925899996],[-64.28478258299992,-35.046783356999924],[-64.31465954199996,-34.86555604899996],[-64.53811655499993,-34.609111721999966],[-64.62873062799991,-34.46076946999989],[-64.69603747799994,-34.40055236799992],[-64.83406847999993,-34.116284815999904],[-64.91612261799997,-33.765613646999896],[-64.89912462199999,-33.63994930399997],[-64.74790150999996,-33.42334583899992],[-64.53279153099999,-33.33014427199993],[-64.31911452299988,-33.33460746799989],[-63.83145556399995,-33.53380859399988],[-63.67132550599996,-33.38510089099992],[-63.57282255299998,-33.34138205699992],[-63.23128162399985,-33.29121251099997],[-63.015674598999965,-33.188241500999936],[-62.916706617999864,-33.01137881799997],[-63.10680348899996,-32.74826014799993],[-63.26046757899991,-32.625041979999935],[-63.30102961999995,-32.49684881799993],[-63.247932609999964,-32.341530642999885],[-63.14407362099996,-32.197004335999964],[-62.90026853299992,-32.133899501999906],[-62.29258356899999,-32.12590869799993],[-62.112258488999885,-32.0416524659999],[-62.06119157699993,-31.924205238999946],[-61.87691459699994,-31.72246389299994],[-61.74537252899995,-31.66558496899995],[-61.39565253799992,-31.76327655299997],[-61.26062762199996,-31.83472724899991],[-60.93582552099997,-32.07047548399987],[-60.8395115859999,-32.08806406999997],[-60.84720650799994,-31.825777555999878],[-60.56169156099992,-31.37707952599993],[-60.44432060899993,-31.268219390999946],[-60.34019457199986,-31.220704895999972],[-60.28054861399988,-31.104708072999927],[-60.10849747799995,-30.45153921499991],[-59.99734858099998,-30.17567737099995]]],[[[-57.550743628999896,-28.677761198999917],[-57.695075474999896,-28.72247529999987],[-57.99824556099992,-28.73261991699991],[-58.103290588999926,-28.71614461599995],[-58.33327861299995,-28.909952657999952],[-58.47768354899989,-28.952393250999933],[-58.528636635999874,-29.11486957099993],[-58.6145325359999,-29.181604942999968],[-58.66153757799998,-29.26265895299997],[-58.702434559999915,-29.636280442999976],[-58.74399555699995,-29.706927816999894],[-58.90258451799997,-29.84618257699998],[-58.957443570999885,-29.938300195999943],[-59.09075153899994,-30.059316604999935],[-59.11288060099997,-30.110812838999948],[-59.23197151999989,-30.17987921899993],[-59.28583547399984,-30.335194375999947],[-59.50835455099991,-30.53188126599997],[-59.56915654199997,-30.538695920999942],[-59.57757163699989,-30.62682392199997],[-59.673740564999946,-30.796935819999874],[-59.78662149999991,-30.928794220999976],[-59.87448463199985,-31.106502805999924],[-59.990058503999876,-31.25516792899998],[-60.06859961899988,-31.324219556999935],[-60.09293748099992,-31.392675062999956],[-60.17087560199985,-31.460763776999954],[-60.31719949099988,-31.633996928999977],[-60.61041656999993,-31.761055683999928],[-60.64209362599996,-31.841504855999972],[-60.65138647399988,-32.03298172299998],[-60.603919588999986,-32.08417721399991],[-60.36355258899994,-32.086100021999926],[-60.30572852199998,-32.05498807399994],[-60.17054753399998,-32.05168828699993],[-59.53964955999999,-31.82583354699989],[-59.369209593999926,-31.821516698999858],[-59.22019159299998,-31.892309414999886],[-59.03771554899993,-31.921407359999876],[-58.84022148199989,-31.915053541999896],[-58.61868258399983,-31.839511973999947],[-58.28162748099993,-31.829756276999944],[-58.18138863599995,-31.85492444999994],[-58.03722358999994,-31.784473883999908],[-57.97917153399993,-31.60836691299994],[-58.00666853499996,-31.52670655599991],[-58.07917048899998,-31.45948385999992],[-57.991393521999896,-31.404483822999964],[-57.975006565999934,-31.323656292999885],[-57.90778353499991,-31.23310240199993],[-57.91278049099992,-31.154772342999877],[-57.852226604999885,-31.038943157999938],[-57.89972651499994,-30.926720370999874],[-57.81361352299996,-30.910334923999926],[-57.81222547999988,-30.716454629999873],[-57.889724556999965,-30.602566860999957],[-57.87833355099991,-30.506463311999937],[-57.66889158299995,-30.352857895999932],[-57.62583961399997,-30.283969212999978],[-57.62751062999985,-30.184512063999875],[-57.6149025709999,-30.04502713699992],[-57.719085603999986,-29.936904105999872],[-57.69678856899998,-29.778436179999915],[-57.55700658699993,-29.592270254999903],[-57.51622058099986,-29.486008341999934],[-57.57129655799997,-29.319543576999877],[-57.65091357399996,-29.196154585999977],[-57.56345361099994,-29.018108544999905],[-57.59965153099995,-28.960967937999953],[-57.5897335599999,-28.733159711999917],[-57.550743628999896,-28.677761198999917]]]]},"properties":{"objectid":257,"eco_name":"Espinal","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Neotropic","eco_biome_":"NO08","nnh":3,"eco_id":575,"shape_leng":57.7344315342,"shape_area":29.2930476287,"nnh_name":"Nature Could Recover","color":"#829A2C","color_bio":"#FEFF73","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":299481.9328008408,"percentage":2.826555139757644}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[38.04250000000013,4.970092773000147],[37.98416666700007,4.9025],[38.058333333000064,4.855833334000124],[38.07500000000016,4.780833334000135],[38.1458333330001,4.745833333000121],[38.16000000000014,4.83166666700015],[38.12083333300018,4.914166667000018],[38.04250000000013,4.970092773000147]]],[[[38.049166667000065,5.619079590000183],[37.97833333300002,5.560833334000108],[37.911666667000134,5.42],[37.9533333330001,5.320833334000099],[38.02583333300004,5.370000000000175],[38.09583333400013,5.528333334000081],[38.049166667000065,5.619079590000183]]],[[[38.215,5.5275],[38.246666667000056,5.740833333000126],[38.192500000000166,5.815833333000114],[38.197500000000105,5.6975],[38.116666667,5.680000000000121],[38.111666667,5.492500000000121],[38.215,5.5275]]],[[[37.882500000000164,6.039166665999971],[37.878333333000114,5.985833333000073],[37.751666667000165,5.849166666999963],[37.80250000000018,5.723333334000188],[37.77833333400008,5.48],[37.89166666700004,5.4475],[37.87333333300012,5.590833333000091],[37.905,5.755000000000166],[37.882500000000164,6.039166665999971]]],[[[35.54166666600008,6.032500000000141],[35.6333333340001,6.141666666],[35.573333333000164,6.211666667000145],[35.54166666600008,6.032500000000141]]],[[[36.734166667000125,5.719166667000138],[36.765,5.769166666999979],[36.68666666700017,5.885],[36.8325,6.07333333400004],[36.78333333299997,6.167500000000189],[36.80250000000018,6.241666667000061],[36.96166666700003,6.40083333299998],[36.94583333300005,6.50416666700005],[36.836666667000145,6.365000000000123],[36.7025,6.28],[36.67416666600019,6.203333333000046],[36.56833333300011,6.048333333000187],[36.6175,5.8975],[36.59250000000014,5.811666667000168],[36.734166667000125,5.719166667000138]]],[[[37.63916666600005,6.5775000000001],[37.58583333300015,6.422500000000127],[37.47416666600009,6.42583333400006],[37.419166666000024,6.38333333300011],[37.408333333000144,6.310000000000116],[37.32000000000011,6.29083333300008],[37.25833333300011,6.175],[37.195,6.151666667000086],[37.135,5.954166666],[37.295000000000186,5.785],[37.29583333300013,5.629166667000163],[37.189166667000165,5.566666666000117],[37.244166666000126,5.482500000000186],[37.34583333300003,5.533333334000076],[37.3275,5.59],[37.38583333300011,5.648333333000096],[37.3375,5.7675],[37.287500000000136,5.796666667000181],[37.28666666700019,5.872500000000116],[37.37416666600018,5.895833333000098],[37.3908333330001,5.978333334000126],[37.479166667000186,6.04416666700007],[37.48583333400012,6.112500000000125],[37.59833333400013,6.148333334000085],[37.63333333300017,6.225000000000136],[37.715,6.273333334000142],[37.684166667000056,6.516666667000095],[37.63916666600005,6.5775000000001]],[[37.49166666600013,6.264166667000097],[37.303333334000115,6.096666667000022],[37.2650000000001,6.122500000000116],[37.366666667000175,6.220833333000087],[37.49166666600013,6.264166667000097]]],[[[37.3925,6.664166667000018],[37.3375,6.579166667000038],[37.444166667000104,6.544166667000127],[37.3925,6.664166667000018]]],[[[37.429166666000185,6.695000000000107],[37.5525,6.76916666700015],[37.5525,6.867500000000121],[37.43916666700011,6.799166667000065],[37.35666666600008,6.801666667000177],[37.340833333000035,6.753333334000047],[37.429166666000185,6.695000000000107]]],[[[36.72750000000019,7.098333334000131],[36.845,7.119166667000059],[36.96833333300009,7.064166667000165],[36.97666666700019,6.974166666000144],[36.93083333400017,6.888333333000048],[36.98,6.860833333000187],[37.24166666700012,6.865833334000058],[37.26083333300005,7.048333333000187],[37.192500000000166,7.093333333999965],[37.0875,7.085833332999982],[37.08500000000015,7.143333334000033],[36.975,7.155833333000032],[36.9533333330001,7.100833333000139],[36.83083333300016,7.155833333000032],[36.7175,7.138333333000162],[36.72750000000019,7.098333334000131]]],[[[36.73,7.17416666600019],[36.69000000000017,7.129166666000117],[36.72833333300014,7.219166666000092],[36.6575,7.250833334000049],[36.73,7.17416666600019]]],[[[36.764166666000165,7.33],[36.86583333300007,7.3275000000001],[36.92416666600013,7.388333333000105],[36.97833333400018,7.312500000000171],[37.145,7.300000000000125],[37.11583333300018,7.370000000000118],[37.29083333400007,7.395],[37.3958333330001,7.495000000000175],[37.38083333300011,7.696666666000112],[37.48166666700007,7.670833333000076],[37.54083333400018,7.767500000000155],[37.57750000000016,7.935833333000176],[37.57250000000016,8.03],[37.507500000000164,8.133333334000042],[37.42833333400017,8.083333333000098],[37.408333333000144,7.933333333000064],[37.3325,7.710833333000153],[37.28,7.65],[37.09666666700008,7.622500000000173],[37.05333333300007,7.544166667000127],[36.92333333300019,7.533333333000144],[36.870833333000064,7.586666667000088],[36.73916666600002,7.567500000000109],[36.71416666700003,7.603333333000137],[36.85833333300019,7.487500000000125],[36.85833333300019,7.38666666600011],[36.764166666000165,7.33]]],[[[37.090000000000146,7.8275],[37.09500000000014,7.723333334000131],[37.194166667000104,7.782500000000141],[37.26250000000016,7.900000000000148],[37.3325,7.870833333000121],[37.3925,7.958333333000041],[37.352500000000134,8.129166667],[37.29583333300013,8.249166667000054],[37.31833333300017,8.322500000000105],[37.29416666700007,8.5275],[37.23500000000013,8.555833334000056],[37.19166666600012,8.459166667000147],[37.20583333300016,8.384166666000056],[37.16583333400018,8.295],[37.16583333300008,8.265833334000035],[37.16583333300008,8.26416666700004],[37.1375000000001,8.03],[37.05833333400017,7.995],[37.00583333300011,7.921666666000135],[37.03,7.834166667000147],[37.090000000000146,7.8275]]],[[[40.6525,8.820000000000107],[40.5875,8.71],[40.636666666999986,8.666666667000072],[40.73666666700012,8.730833334000181],[40.71666666700003,8.814166667],[40.6525,8.820000000000107]]],[[[37.05833333400017,8.520833333000041],[37.105833334000124,8.683333334],[37.0925,8.786666667000134],[37.131666666000115,8.852500000000134],[37.05333333300007,8.91],[36.89916666700009,8.906666667000081],[36.99250000000012,8.799166667000065],[36.97250000000014,8.72],[37.05,8.632500000000107],[37.03833333300008,8.542500000000132],[37.05833333400017,8.520833333000041]]],[[[43.069166667000104,9.457500000000152],[43.025833334000026,9.435000000000116],[43.08,9.3275000000001],[43.16416666600014,9.351666667000075],[43.15750000000014,9.425000000000125],[43.069166667000104,9.457500000000152]]],[[[38.64166666700004,10.36],[38.50750000000011,10.340833334000138],[38.44166666700016,10.110833333000073],[38.52916666700003,10.076666666999984],[38.61333333400006,10.145833333000155],[38.74000000000018,10.149166665999985],[38.794166666000024,10.2575],[38.73666666700018,10.316666667000163],[38.64166666700004,10.36]]],[[[39.91000000000014,10.848333333000028],[39.88,10.785000000000139],[39.92916666600007,10.705000000000155],[39.9875,10.720000000000141],[39.944166666,10.836666666999974],[39.91000000000014,10.848333333000028]]],[[[36.12666666700005,11.380833333000112],[36.21583333300015,11.363333333000071],[36.19000000000011,11.511666667000043],[36.13333333300011,11.445833334000042],[36.12666666700005,11.380833333000112]]],[[[37.585,13.284166667000079],[37.47166666700008,13.35750000000013],[37.49250000000018,13.54916666700018],[37.42833333300007,13.60833333300019],[37.42,13.7025],[37.36083333300013,13.722500000000139],[37.30416666700006,13.80916666600018],[37.22801368900002,13.763333334000095],[37.3375,13.635833333],[37.3925,13.625000000000114],[37.433333333000064,13.499166667000111],[37.27666666700003,13.459166667000034],[37.18333333300012,13.415],[37.19916666600005,13.33083333400009],[37.270833332999985,13.360000000000184],[37.36333333300007,13.328333333000103],[37.39333333300016,13.253333334000047],[37.47083333400019,13.225000000000136],[37.51333333400015,13.323333333000107],[37.585,13.284166667000079]]],[[[38.24083333400017,7.5875],[38.48083333300019,7.791666667000186],[38.575,7.920833333000189],[38.579166666,8.000833334000106],[38.674166667000065,8.1375],[38.68916666600012,8.310833333000176],[38.72583333400007,8.364166666000074],[38.735,8.484166665999965],[38.8275000000001,8.456666667000036],[38.890833334000035,8.52],[38.89,8.630833334000044],[38.98083333400018,8.59583333300003],[39.133333333,8.598333333000141],[39.145833333999974,8.538333334000185],[39.24750000000017,8.558333333000064],[39.317500000000166,8.649166667000031],[39.30916666700017,8.735833334000176],[39.440833333000114,8.825000000000102],[39.334166666000044,9.070833333000166],[39.415,9.069166667000104],[39.585,9.154166667000084],[39.649166665999985,9.245833334000054],[39.68833333300017,9.40833333300003],[39.723333333000085,9.456666666000103],[39.81750000000011,9.4725],[39.775,9.58916666600004],[39.84666666600015,9.7],[39.81666666700016,9.79],[39.869166667000115,9.803333333000182],[39.77583333300004,9.9725],[39.8958333330001,10.21],[39.899166666000156,10.481666667000127],[39.781666667000025,10.659166666000033],[39.75083333300012,10.814166666000062],[39.68000000000012,10.88000000000011],[39.730833333000135,10.97416666600003],[39.81666666700016,10.96],[39.865,10.91583333400007],[39.95666666699998,10.9575],[39.86083333300019,11.015000000000157],[39.843333333000146,11.143333333000044],[39.914166666000085,11.199166667000156],[39.808333333000064,11.399166667000031],[39.62666666700005,11.394166666000103],[39.58166666700015,11.454166666000162],[39.62666666700005,11.499166666000065],[39.64083333300016,11.6225],[39.6125,11.685000000000173],[39.6975,11.774166666000099],[39.61000000000013,11.959166666000044],[39.6025,12.086666666000042],[39.505,12.266666667000038],[39.5125000000001,12.354166667000129],[39.59166666700014,12.545833333000076],[39.58416666700009,12.649166667000145],[39.62250000000017,12.674166667000065],[39.62416666700017,12.79166666600014],[39.70083333300005,12.879166667000106],[39.73000000000019,12.995000000000175],[39.764166666999984,13.0183333330001],[39.77916666700014,13.135833333000107],[39.70916666700015,13.161666667000077],[39.77166666700009,13.286666667000134],[39.72,13.444166667000047],[39.80666666600007,13.51916666600016],[39.79083333400007,13.7575],[39.84666666700008,13.831666666000046],[39.83833333300015,14.011666667000043],[39.87,14.08333333400003],[39.774166667000145,14.12],[39.80666666700017,14.276666667000143],[39.73666666700018,14.343333333000032],[39.6075,14.38000000000011],[39.70750000000015,14.4625],[39.74618819900013,14.61173298500006],[39.719089338000174,14.752493638000033],[39.72788932999998,14.874486874000013],[39.70779019600019,14.94609095800007],[39.51744824000008,15.08489209000004],[39.444179341,15.219643421],[39.25872034600002,15.200824539999985],[39.11264020200019,15.3950121150001],[39.00746123100009,15.607068398000024],[38.88714923700013,15.730710522000152],[38.802501235000136,15.981175535000148],[38.64739931300005,16.05645106100019],[38.584689266000055,16.11180649000005],[38.555179267000085,16.48171295399999],[38.48747930600007,16.635294566000027],[38.55883025700018,16.76383658300017],[38.55857829700011,16.820411915000022],[38.452487861000066,16.840117373000112],[38.33269824400003,17.05938802100019],[38.34860927500017,17.231237321000037],[38.27056822400016,17.463292155000033],[38.25827029600015,17.72679723000016],[38.16141298200017,17.792106526],[37.97098156699997,17.895307012000103],[37.744628607000095,17.735335540000165],[37.75308946800004,17.596135094000033],[37.85807045800016,17.4778124610001],[37.86729859800005,17.234197139000116],[37.90219849600004,17.11524351600002],[38.014869547000046,17.06888656200016],[38.15703953400015,16.83143210600008],[38.17247061700016,16.539759310000022],[38.24029161300018,16.332493452000108],[38.35272948000011,16.22963911800008],[38.33686052600018,16.194282070999975],[38.34421145500011,16.01792347500009],[38.402828619000104,15.812956271000076],[38.39944853200012,15.75824892999998],[38.447910517000025,15.583801072000085],[38.4514505300001,15.316037320000078],[38.5028605980001,15.195625078000035],[38.401908452999976,15.08122333100016],[38.213409509000144,15.06856431000017],[38.157150510000065,14.961951028000158],[38.214420534,14.923162598000147],[38.36640958400011,14.942317426000159],[38.28237949600009,14.812849711000183],[38.27046948200018,14.748633939000172],[38.41875859300012,14.644500862000143],[38.39155948500013,14.497220262000042],[38.44000000000017,14.425833333000128],[38.52,14.418333333000078],[38.69916666600011,14.47083333300003],[38.89833333300004,14.506666666000058],[39.07833333300016,14.638333333000105],[39.17833333300007,14.585833333000096],[39.14500000000015,14.520000000000152],[39.00916666700016,14.3825],[38.881666667,14.3875],[38.8975,14.310000000000116],[38.81750000000011,14.286666667000134],[38.78916666700013,14.230833333000078],[38.68000000000018,14.2025000000001],[38.553333333000126,14.226666666000028],[38.48,14.175],[38.40583333300003,14.256666666000115],[38.246666667000056,14.230833334000124],[38.26583333300016,14.14666666700009],[38.197500000000105,14.122500000000116],[38.26583333400009,14.03],[38.362500000000125,13.981666666000024],[38.43333333400017,13.872500000000173],[38.518333333000044,13.875],[38.49583333300018,13.994166667],[38.60500000000013,13.961666666000099],[38.57166666600011,13.845833334000133],[38.58833333400014,13.759166667000045],[38.755000000000166,13.886666666999986],[38.79250000000019,13.852500000000191],[38.87666666700005,13.974166667000077],[38.9075,14.061666667000111],[38.97,14.035833333000141],[38.9075,13.939166667000165],[38.9875,13.90583333300009],[39.070000000000164,13.953333333000103],[39.126666667000165,14.073333333000164],[39.2,14.029166667000084],[39.3075,14.00500000000011],[39.28583333400019,13.863333333000128],[39.20833333300004,13.77166666700009],[39.0875,13.701666667000097],[39.04250000000013,13.768333333000157],[39.0025,13.804166667000118],[38.881666667,13.716666667000027],[38.9725,13.628333334000047],[38.9616666660001,13.585],[39.09333333400019,13.511666667000156],[39.066666667000106,13.432500000000118],[39.14666666700009,13.275],[39.08916666700014,13.243333333000123],[39.091666667000084,13.171666665999965],[39.21916666600009,13.175833333000014],[39.33750000000015,13.135833333000107],[39.23333333300013,13.047500000000127],[39.2975,12.945833333000053],[39.21000000000015,12.916666666000026],[39.15000000000015,12.760000000000161],[39.1475,12.680833333000123],[39.2025000000001,12.649166667000145],[39.225000000000136,12.494166667000115],[39.138333334000095,12.5375],[39.16333333300014,12.614166667],[39.09666666700002,12.66166666700019],[38.991666666000185,12.786666665999974],[38.913333333000026,12.8],[38.9,12.9],[38.80333333300007,12.955833332999987],[38.76833333300016,12.89583333400003],[38.91666666700013,12.76833333400009],[38.871666666000124,12.700833334000151],[38.755000000000166,12.634166667000159],[38.65,12.610000000000184],[38.71916666700014,12.5225],[38.525833333000094,12.525],[38.554166667000175,12.325000000000102],[38.65333333300009,12.325000000000102],[38.63166666700005,12.249166666000065],[38.518333333000044,12.203333334000149],[38.58083333300016,12.119166667000115],[38.68083333400017,12.130833333000169],[38.73833333300007,12.043333334000181],[38.72166666700019,11.991666666000071],[38.5925,11.9425],[38.52333333300004,12.05],[38.370833334,12.072500000000105],[38.390833333000046,12.163333332999969],[38.351666666000085,12.293333334000124],[38.365833333000126,12.3875],[38.23666666700012,12.315000000000111],[38.15166666700014,12.36],[38.21833333300003,12.444166667000047],[37.96,12.422500000000127],[37.8975,12.343333334000022],[37.840000000000146,12.35750000000013],[37.81416666700011,12.468333332999975],[37.88666666700004,12.535],[37.959166666000044,12.670833334000065],[37.913333333000026,12.7775],[38.058333333000064,12.923333334000063],[38.24000000000012,12.87],[38.31583333400016,12.8308333330001],[38.41916666700013,12.885],[38.40083333400014,12.933333333000121],[38.42666666700018,13.042500000000132],[38.54333333400007,13.064166667000052],[38.52,13.141666667000152],[38.6275,13.193333333000055],[38.60583333300008,13.284166666000147],[38.5175,13.482500000000186],[38.50750000000011,13.56666666700005],[38.41083333300003,13.620833334000167],[38.33166666600016,13.600833333000082],[38.310000000000116,13.515833333000103],[38.21583333300009,13.504166666000174],[38.186666667000054,13.425],[38.09,13.417500000000132],[38.023333333000096,13.280833333000146],[37.86166666600019,13.238333333000128],[37.77500000000015,13.19],[37.64583333300004,13.293333334000124],[37.585,13.284166667000079],[37.65083333400008,13.28],[37.70333333400009,13.123333333000062],[37.70000000000016,12.98583333300013],[37.6075,12.928333333000182],[37.55083333300007,12.812500000000114],[37.368333333000066,12.761666667000156],[37.366666667000175,12.714166667000143],[37.27250000000015,12.6975],[37.19833333399998,12.575],[37.178333333000126,12.696666666],[37.11833333300012,12.711666667000088],[37.0808333330001,12.603333333000023],[37.041666667000015,12.6],[36.9583333330001,12.451666666000051],[37.01833333300016,12.323333333000164],[36.93333333300018,12.250000000000114],[36.906666667000025,12.134166667000102],[36.810833333000176,12.1525],[36.72916666600008,11.999166667000054],[36.730833334000124,11.935833333000062],[36.825,11.84],[36.941666667000106,11.866666667000061],[36.90083333300015,11.704166666000106],[36.8425,11.613333333000014],[36.73166666700007,11.65],[36.68916666700005,11.57666666700004],[36.78916666700019,11.476666667000131],[36.76083333300011,11.369166667000115],[36.630000000000166,11.249166666000121],[36.5725,11.226666666000085],[36.57083333300005,11.12],[36.60166666700019,11.081666666000046],[36.62500000000017,10.905833332999975],[36.49166666700006,10.848333333000028],[36.47666666700013,10.742500000000177],[36.53416666700008,10.711666667000088],[36.62833333300017,10.75],[36.65833333300009,10.643333333000157],[36.83083333400003,10.648333333000153],[36.80333333400006,10.551666666000017],[36.83333333300004,10.48416666700001],[36.93333333400011,10.475],[37.005000000000166,10.43750000000017],[37.12083333300018,10.55166666700012],[37.11083333300019,10.626666667000109],[37.3875,10.640000000000157],[37.1991666670001,10.455],[37.186666667000054,10.352500000000191],[37.2375,10.339166666000096],[37.30000000000018,10.194166667000161],[37.36333333300007,10.1675],[37.43666666600012,10.21833333300009],[37.51583333300016,10.15],[37.585833334000085,10.164166667000075],[37.662500000000136,10.0175],[37.70916666699998,9.9725],[38.05583333300012,10.108333333000132],[38.14166666600005,10.089166666000153],[38.32333333300011,10.23250000000013],[38.4575,10.41166666600003],[38.44166666700016,10.524166667000088],[38.35500000000019,10.53],[38.34083333299998,10.72416666700019],[38.44166666700016,10.68416666600018],[38.475833333000026,10.705000000000155],[38.43583333300012,10.946666667000102],[38.38833333300016,11.031666667000081],[38.306666667000115,11.0808333330001],[38.2075,11.064166666000176],[38.05166666700018,11.075833333000105],[38.03250000000014,11.120833333],[37.892500000000155,11.185833334000108],[37.7691666660001,11.103333333000137],[37.75416666700005,11.156666667000138],[37.80833333400017,11.217500000000143],[37.69916666700004,11.2725],[37.62916666600012,11.433333334000167],[37.496666667000056,11.439166666],[37.291666667000186,11.645],[37.277500000000146,11.792500000000189],[37.079166666000106,11.79916666700018],[37.005000000000166,11.875833334000106],[37.0025,12.0175],[37.025,12.163333334000072],[37.07416666600017,12.246666667000113],[37.17000000000013,12.326666667000097],[37.182500000000175,12.196666667000045],[37.270833332999985,12.26250000000016],[37.2975,12.370833334000054],[37.338333333000094,12.3875],[37.451666667000154,12.348333333000085],[37.56083333300006,12.2425],[37.64166666700004,12.11416666700012],[37.75416666700005,11.984166665999965],[37.67750000000012,11.921666667000125],[37.63000000000011,11.803333333000126],[37.55500000000012,11.8375],[37.47083333300009,11.81250000000017],[37.41083333300003,11.601666667000188],[37.51666666699998,11.569166666000058],[37.54833333300019,11.516666667000038],[37.61583333300007,11.53333333300003],[37.75,11.305000000000177],[37.885,11.225],[37.97166666700019,11.305833333000123],[38.03916666700013,11.301666666000074],[38.0675,11.381666667000161],[38.04833333300007,11.2425],[38.13583333300011,11.194166667000161],[38.16833333400007,11.346666666000147],[38.21333333400014,11.24333333300018],[38.41166666700002,11.125],[38.484166667000125,11.138333333000048],[38.45416666700004,11.223333333000028],[38.575,11.315833334],[38.510833333000164,11.376666667000165],[38.585,11.493333333000123],[38.63166666700005,11.406666667000081],[38.6925,11.526666666999972],[38.63833333400004,11.5375],[38.61083333300007,11.64666666700009],[38.70666666600016,11.6425],[38.74666666600007,11.543333334000124],[38.72333333400019,11.461666667000145],[38.75833333300017,11.415],[38.94000000000011,11.40083333399997],[38.97916666600014,11.343333334000022],[38.87,11.320000000000164],[38.775,11.360833333000187],[38.69500000000011,11.323333334000097],[38.737500000000125,11.23583333300013],[38.70416666700015,11.17416666700018],[38.60000000000019,11.166666667000129],[38.52,11.090000000000146],[38.5975,11.048333334000176],[38.59,10.979166666000026],[38.63333333300011,10.82],[38.575,10.708333332999985],[38.57,10.5625],[38.662500000000136,10.411666667000077],[38.73833333300007,10.495833333000064],[38.89833333400014,10.461666666999974],[39.0025,10.396666667000147],[39.03416666700008,10.245833333000121],[39.00083333400016,10.163333333000026],[38.86833333300012,9.991666667],[38.95916666700009,9.954166666000106],[39.066666666,10.01],[39.08,9.891666667000095],[39.013333333000105,9.889166667000154],[38.945,9.829166667000152],[38.88333333300005,9.856666667000127],[38.79583333300019,9.78],[38.68000000000018,9.9675],[38.586666666999974,10.030000000000143],[38.46333333300015,9.988333333000071],[38.380000000000166,10.008333334000099],[38.34916666700008,10.075833333000162],[38.219166667000025,10.013333333000048],[38.125,9.863333334000117],[38.2025000000001,9.821666667000045],[38.165000000000134,9.726666666000028],[38.23166666700013,9.721666667000136],[38.41833333400018,9.635833333000107],[38.63666666700004,9.4975],[38.57583333300016,9.421666666000021],[38.510833333000164,9.564166667000052],[38.36166666700018,9.532500000000141],[38.338333334000026,9.635000000000161],[38.23500000000013,9.66833333400001],[38.16000000000014,9.615833333000126],[38.16333333400007,9.4925],[38.113333334000174,9.431666667000059],[38.059166667000056,9.5125],[38.0675,9.67],[38.00916666699999,9.730833333000078],[37.89,9.69],[37.88,9.65083333399997],[37.70916666699998,9.770833333000155],[37.670000000000186,9.752500000000168],[37.65583333400008,9.655833333000032],[37.73583333300019,9.511666667000043],[37.889166666,9.543333333000078],[37.96666666700003,9.45583333400009],[37.93833333300012,9.415000000000134],[37.83333333300004,9.403333334000138],[37.80583333400011,9.295],[37.86666666700006,9.201666666000165],[37.76083333300011,9.138333334000038],[37.69416666700005,9.193333334000044],[37.5375,9.2075],[37.41416666700013,9.2525],[37.47583333300008,9.358333334000065],[37.57750000000016,9.378333333000057],[37.50583333300017,9.534166667000079],[37.56333333300012,9.532500000000141],[37.57000000000011,9.71],[37.60166666700013,9.75],[37.595,9.8525],[37.505,9.831666667000036],[37.46333333299998,9.605],[37.35,9.686666666000121],[37.32333333400004,9.77333333300004],[37.228333334000126,9.844166665999978],[37.215,9.964166666000096],[37.09666666700008,10.000833333000116],[37.03750000000019,10.119166667000172],[36.91500000000019,10.155833333000146],[36.78833333400007,10.001666666000062],[36.67583333300013,10.125833333],[36.635000000000105,10.054166666000071],[36.574166667000156,10.025000000000148],[36.585,9.97416666600003],[36.69000000000017,10.01],[36.675,9.8825],[36.698333333,9.810000000000116],[36.65583333300003,9.738333333000128],[36.68500000000017,9.73166666700007],[36.78916666700019,9.89416666700015],[36.90833333300003,9.904166666000037],[36.955833333000044,9.870833333000064],[36.981666667000184,9.765],[36.88750000000016,9.588333334000026],[36.9325,9.551666666000074],[36.97250000000014,9.441666666000117],[36.90750000000014,9.243333334000113],[36.791666666000026,9.297500000000127],[36.75666666700016,9.23250000000013],[36.688333334000106,9.229166667000129],[36.790000000000134,9.249166666000121],[36.84333333300003,9.11333333400006],[36.76416666700004,9.059166666000067],[36.88333333400004,9.0275],[37.06583333400005,9.170000000000186],[37.16166666600003,9.115833333000069],[37.21583333300015,9.025833333000094],[37.26416666600005,9.029166667000027],[37.395833334000145,8.947500000000105],[37.40666666600015,8.83333333400003],[37.3025,8.78333333300003],[37.23500000000013,8.692500000000166],[37.298333333000016,8.618333333000066],[37.49833333300012,8.51083333300005],[37.61166666700012,8.480833334000067],[37.68666666700011,8.53],[37.80583333300018,8.495000000000175],[37.85500000000013,8.399166667000088],[37.82666666600005,8.24666666700017],[37.698333333000164,8.20333333300016],[37.65416666700014,8.09],[37.686666666000065,8.055833333000066],[37.73166666700001,7.916666667000072],[37.66750000000013,7.778333333000091],[37.619166666000126,7.750000000000114],[37.64750000000015,7.62],[37.558333334000054,7.571666666000056],[37.5575,7.430833333000066],[37.52333333300004,7.401666667000029],[37.50250000000017,7.291666667000072],[37.525,7.245],[37.639166667000154,7.255],[37.75,7.209166666000101],[37.7708333330001,7.11833333300018],[37.638333333000105,6.980000000000132],[37.574166667000156,6.838333333000151],[37.64583333300004,6.797500000000127],[37.79083333300002,6.791666666000083],[37.935000000000116,6.9125],[37.94583333300005,7.013333333000105],[37.999166667000054,7.115833333000126],[38.035,7.3241666670001],[38.11333333300007,7.33416666700009],[38.14166666600005,7.230833333000021],[38.23083333400018,7.030833333000146],[38.218333334000135,6.940833333000171],[38.24083333400017,6.792500000000132],[38.2875,6.759166667000159],[38.35083333300014,6.834166666999977],[38.40416666700014,6.834166666999977],[38.46916666600009,6.7575],[38.34583333299997,6.664166666000142],[38.29583333300013,6.547500000000184],[38.338333334000026,6.531666667000081],[38.345833334000076,6.386666667000043],[38.289166667000075,6.280833334000022],[38.22083333300009,6.322500000000161],[38.17000000000013,6.241666666000128],[38.06916666700005,6.172500000000127],[38.0975,6.017500000000155],[38.158333333000144,5.995833333000064],[38.190833334000104,5.819166666000172],[38.26666666700004,5.860833333000187],[38.309166666000124,5.960833333000153],[38.35833333400012,5.9875],[38.3875,6.122500000000116],[38.483333334,6.15083333400014],[38.50166666600012,6.2225],[38.596666667000136,6.338333333000037],[38.62666666700005,6.4425],[38.75000000000017,6.440000000000168],[38.776666667000086,6.4425],[38.8275000000001,6.475],[38.82333333300005,6.557500000000118],[38.9025,6.69166666700005],[39.056666667000115,6.750000000000114],[39.10750000000013,6.924166666000076],[39.21583333300009,6.88],[39.26,6.918333333000135],[39.3975,6.88583333400004],[39.540000000000134,6.994166667000172],[39.55416666600007,7.102500000000134],[39.62250000000017,7.176666667000177],[39.61666666700006,7.255],[39.73083333400007,7.312500000000171],[39.78583333300003,7.12916666700005],[39.820000000000164,7.1225],[39.8958333330001,7.009166667000102],[40.013333333000105,6.900833333000094],[39.964166667000086,6.797500000000127],[39.98416666700018,6.695833333000053],[40.060833334000165,6.868333333000066],[40.20666666700015,6.89333333400009],[40.299166666000076,6.880833333000112],[40.40166666700003,6.72],[40.48,6.73583333300013],[40.41916666600014,6.88],[40.540833333000194,6.909166667000022],[40.47333333400019,6.966666666000037],[40.497500000000116,7.085833332999982],[40.59500000000014,7.102500000000134],[40.64166666699998,7.07666666700004],[40.74666666700011,7.1225],[40.80000000000018,7.243333333000066],[40.795000000000186,7.318333333999988],[40.73916666600013,7.358333334000065],[40.74166666700012,7.425000000000182],[40.600000000000136,7.5325],[40.42500000000018,7.436666666],[40.32250000000016,7.449166666000053],[40.278333333000035,7.485],[40.18,7.41],[39.93416666700011,7.458333333000098],[39.86083333300019,7.390833332999989],[39.77166666700009,7.3575],[39.69833333400004,7.420000000000186],[39.57833333400015,7.453333333000103],[39.585833333000096,7.519166666999979],[39.705,7.528333334000024],[39.62000000000012,7.661666667000134],[39.6975,7.655],[39.81750000000011,7.55],[39.92000000000013,7.540833333000023],[39.99166666700012,7.494166666000126],[40.1,7.498333333],[40.17083333300019,7.62083333400011],[40.18333333400017,7.716666666000094],[40.14416666699998,7.835833333000039],[40.0775,7.808333333000178],[40.00500000000011,7.855833332999964],[40.05416666700006,7.903333334000081],[39.97416666700002,7.9725],[39.98916666700018,8.081666667000036],[40.1325,8.08083333400009],[40.0425,8.160833334000074],[40.045000000000186,8.306666666000126],[40.14416666699998,8.355833333000078],[40.22416666700019,8.5275],[40.31333333400005,8.581666667000093],[40.36916666700017,8.69833333300005],[40.49833333300006,8.818333333000169],[40.735000000000184,8.908333333000087],[40.78,8.7475],[40.99000000000012,8.834166667000147],[40.9625,8.96000000000015],[41.099166665999974,8.93833333300006],[41.16666666600008,8.998333333000062],[41.31,9.071666667000045],[41.33583333300015,8.98916666700012],[41.459166666000044,9.158333333000087],[41.50583333300011,9.039166666000085],[41.65000000000015,9.289166666000028],[41.594166667000025,9.110000000000127],[41.516666667000095,8.945000000000164],[41.660833333000085,8.970833334000133],[41.75416666700016,8.965833333000091],[41.9025,9.011666667000156],[41.91416666700013,9.160833333000141],[41.958333332999985,9.275],[42.040000000000134,9.259166666000112],[42.14416666700015,9.1725],[42.1400000000001,9.31],[42.20333333300016,9.388333333000048],[42.305,9.35333333400007],[42.41416666700002,9.361666666000133],[42.55166666700018,9.431666666000183],[42.608333333000076,9.430833333000066],[42.71666666600004,9.355833334000124],[42.70916666700009,9.478333333000023],[42.90083333400014,9.476666667000131],[42.94916666600011,9.52250000000015],[42.92169189500015,9.640000000000157],[42.8725,9.6991666670001],[42.775,9.73166666700007],[42.68416666700011,9.69250000000011],[42.64500000000015,9.600833334000072],[42.566666667000106,9.645000000000152],[42.3841666670001,9.626666666000062],[42.30833333400017,9.59333333300009],[42.26000000000016,9.625],[42.17916666700006,9.59583333300003],[42.17166666700018,9.535833332999971],[42.071666667000045,9.559166667000056],[41.95833333400009,9.490000000000123],[41.819166666000115,9.464166667000086],[41.52916666700014,9.495000000000118],[41.47250000000014,9.443333333000112],[41.40666666699997,9.440000000000111],[41.293333333000135,9.376666667000052],[41.2091666660001,9.387500000000102],[41.16,9.300833333000185],[41.09666666700019,9.39083333300016],[41.02583333300015,9.361666667000065],[40.983333334000065,9.170000000000186],[40.90916666700019,9.200000000000102],[40.8958333330001,9.113333333000185],[40.843333333000146,9.08083333400009],[40.745833333000064,9.095],[40.71,9.050833333000071],[40.529166666000094,8.965000000000146],[40.45416666700015,8.8900000000001],[40.44583333300005,8.798333333000187],[40.31333333400005,8.796666667000125],[40.17083333300019,8.679166666000071],[40.11500000000018,8.661666667000077],[40.06166666700011,8.538333333000082],[39.98333333300019,8.550833333000128],[39.92416666700018,8.491666667000118],[39.79250000000013,8.4275],[39.668333334000124,8.435833333000062],[39.43166666700017,8.2875],[39.396666667000034,8.21083333300004],[39.27583333300015,8.25],[39.1525,8.245833333000121],[39.073333333000164,8.167500000000132],[38.98416666700007,8.237500000000125],[38.9566666660001,8.178333333000012],[39.105,8.072500000000161],[39.069166666000115,7.953333334000092],[38.90833333300003,7.862500000000125],[38.864166666000074,7.79],[38.76000000000016,7.828333334000035],[38.730833333000135,7.760000000000105],[38.834166667000034,7.741666667000118],[38.85416666600008,7.595833333000087],[38.81750000000011,7.475],[38.67583333300013,7.440000000000111],[38.53166666700014,7.220833334000133],[38.52333333300004,7.146666666000158],[38.62333333300012,7.104166667000072],[38.60166666600003,6.994166667000172],[38.55416666600007,6.9575],[38.36416666700006,6.960833334000029],[38.29833333400012,7.002500000000168],[38.40583333300003,7.176666666000074],[38.37166666700011,7.296666665999965],[38.33916666700014,7.580833333000101],[38.28416666700008,7.510000000000161],[38.24083333400017,7.5875]],[[38.18750000000017,7.983333333000132],[38.112500000000125,8.02],[38.135,8.15],[38.182500000000175,8.238333333000071],[38.31833333300017,8.3425],[38.31166666700011,8.4],[38.46416666700003,8.454166666000049],[38.3825,8.240833333000182],[38.2925,8.199166667000043],[38.260833333,8.130833333000055],[38.26916666700009,8.053333333000126],[38.18750000000017,7.983333333000132]],[[37.9275,8.75416666600006],[37.840000000000146,8.774166665999985],[37.85500000000013,8.837500000000148],[37.93000000000012,8.816666667000106],[37.9275,8.75416666600006]],[[39.48250000000013,9.340000000000146],[39.586666667000145,9.350000000000136],[39.579166667000095,9.2725],[39.45916666699998,9.231666667000184],[39.48250000000013,9.340000000000146]],[[39.65083333300015,9.561666666000065],[39.61916666600007,9.645833333999974],[39.681666667000115,9.827500000000157],[39.734166666000135,9.806666667000115],[39.75916666699999,9.679166667000118],[39.7425,9.623333333000062],[39.65083333300015,9.561666666000065]],[[38.59083333300015,9.687500000000114],[38.5375,9.79083333300008],[38.6225,9.8675],[38.68083333400017,9.82666666700004],[38.68666666700011,9.755833333000169],[38.59083333300015,9.687500000000114]],[[39.6675,10.0775000000001],[39.620833333000064,10.203333333000103],[39.6075,10.411666667000077],[39.72416666700008,10.414166667000188],[39.72333333400013,10.53333333300003],[39.65416666600015,10.591666667000027],[39.67333333300019,10.71333333299998],[39.723333333000085,10.70000000000016],[39.76166666600017,10.53],[39.81083333300012,10.42750000000018],[39.8225,10.27916666700014],[39.76916666700015,10.216666667000027],[39.775,10.156666666000092],[39.6675,10.0775000000001]],[[38.9875,11.039166666000085],[39.04083333300014,11.0808333330001],[38.99000000000012,11.14833333300004],[39.07833333300016,11.173333333000187],[39.10583333300019,11.135833333000164],[39.26583333300016,11.112500000000182],[39.317500000000166,11.020833333000098],[39.3925,11.050833333000185],[39.59,10.974166667000134],[39.543333333000135,10.8475],[39.381666667000104,10.873333334000051],[39.32000000000011,10.77333333300004],[39.2275,10.745],[39.22833333400007,10.82666666700004],[39.1525,10.810000000000116],[39.017500000000155,10.841666666000094],[38.96916666700008,10.811666667000054],[38.812500000000114,10.905833334000079],[38.83833333400008,10.9725],[38.9125,10.96833333300009],[38.910833333000085,11.04166666600014],[38.9875,11.039166666000085]],[[39.50666666600006,11.447500000000105],[39.43583333300012,11.520833333000155],[39.57166666699999,11.523333334000142],[39.50666666600006,11.447500000000105]],[[39.193333333000055,11.58916666600004],[39.13916666600011,11.66166666700002],[39.03250000000014,11.6375],[38.96666666699997,11.67416666600019],[39.02583333400008,11.843333334000135],[39.1375,11.850833334000185],[39.211666667000145,11.9125],[39.34,11.955],[39.324166667000156,12.044166666000024],[39.12833333300006,12.030833333000032],[39.05416666600013,12.08500000000015],[39.13250000000011,12.154166667000027],[39.22083333300009,12.18083333300001],[39.389166667000154,12.112500000000182],[39.41916666700007,12.071666667000159],[39.40166666600015,11.898333333000096],[39.468333333000146,11.752500000000111],[39.525833333000094,11.726666667000075],[39.455000000000155,11.636666666000167],[39.42666666700018,11.725],[39.25083333300017,11.659166666000033],[39.193333333000055,11.58916666600004]],[[38.49416666600001,11.738333333000071],[38.515833334000035,11.668333333000078],[38.41416666600003,11.654166666000037],[38.3275,11.733333333000076],[38.288333333000026,11.69916666600011],[38.26666666700004,11.585833332999982],[38.22083333300009,11.551666666000187],[38.123333334000165,11.74333333400017],[38.25083333300006,11.813333333000116],[38.355833333000135,11.7675],[38.49416666600001,11.738333333000071]],[[37.97166666600009,13.12166666700017],[37.98916666700006,13.204166667000095],[38.115,13.300000000000125],[38.34666666700019,13.384166666999988],[38.45000000000016,13.379166666000117],[38.45166666600005,13.2975],[38.545833333000076,13.233333333000132],[38.43,13.078333334000092],[38.31583333400016,13.069166667000047],[38.25166666700005,13.214166667000029],[38.24333333300012,13.020833333000041],[38.16166666700008,13.02916666700014],[38.059166667000056,13.143333332999987],[37.97166666600009,13.12166666700017]],[[37.60500000000019,10.86333333400006],[37.64083333400015,10.822500000000161],[37.79916666700012,10.800833334000117],[37.87250000000017,10.8425],[37.9533333330001,10.83],[38.02833333300009,10.774166666000156],[38.06416666700005,10.683333333000064],[37.9825,10.6375],[37.9275,10.526666666000096],[37.87000000000012,10.507500000000164],[37.733333333000076,10.596666667000022],[37.754166666000174,10.743333334],[37.60500000000019,10.81250000000017],[37.60500000000019,10.86333333400006]],[[37.13833333300005,9.273333334000085],[37.090000000000146,9.274166666999974],[37.05,9.414166666000142],[36.93833333400005,9.535833332999971],[36.93833333300017,9.5825],[37.0175,9.661666667000077],[36.999166667000054,9.837500000000148],[37.12250000000017,9.81666666700005],[37.161666667000134,9.62916666700005],[37.12583333300017,9.616666667000175],[37.0825,9.4491666670001],[37.090000000000146,9.344166667000025],[37.13833333300005,9.273333334000085]],[[39.05833333300018,7.248333333000062],[38.954166667000095,7.421666667000125],[39.045000000000186,7.468333333000089],[39.22083333300009,7.435833334000165],[39.245833333,7.3775],[39.165,7.281666667000138],[39.05833333300018,7.248333333000062]],[[39.280833333000146,7.525833333000037],[39.331666667000036,7.68416666700017],[39.29333333300019,7.8175],[39.19083333400005,7.852500000000134],[39.17,7.906666667000081],[39.240833334000115,7.982500000000186],[39.37166666600001,7.993333334],[39.44583333300011,8.045833333000076],[39.5125000000001,8.025],[39.509166667000045,7.927500000000123],[39.379166667,7.525833333000037],[39.395,7.38333333300011],[39.36083333300013,7.3241666670001],[39.29500000000013,7.3525],[39.280833333000146,7.525833333000037]]],[[[37.1562885730001,18.568945316000054],[37.21002948100005,18.752404389000162],[37.16971956700013,18.873577372],[37.120510587000126,18.918395576000137],[37.01152053200019,18.94883278100008],[36.94324859000017,18.870147330000066],[36.95468150600004,18.76217383300002],[37.020099577999986,18.683879481000133],[37.07123958100016,18.535798241000066],[37.1562885730001,18.568945316000054]]],[[[36.38420980000018,21.534850047000077],[36.445599931,21.589930039000023],[36.390230035000116,21.641279992000136],[36.31800006500015,21.602969950000045],[36.38420980000018,21.534850047000077]]],[[[36.55223001100018,21.812310144000037],[36.51877002400005,21.944800021000162],[36.45080994600005,21.921870076000175],[36.46252002700004,21.82048996800006],[36.55223001100018,21.812310144000037]]],[[[36.39863991700014,21.757260076000136],[36.410219918,21.81755008300007],[36.35809002100001,21.960800060000167],[36.308139955,22.00974998100014],[36.226150030000156,21.979849997000088],[36.39863991700014,21.757260076000136]]]]},"properties":{"objectid":259,"eco_name":"Ethiopian montane grasslands and woodlands","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Afrotropic","eco_biome_":"AF10","nnh":4,"eco_id":79,"shape_leng":627.855907705,"shape_area":18.297061176,"nnh_name":"Nature Imperiled","color":"#B57454","color_bio":"#D6C39D","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":222528.50967301516,"percentage":4.556924788665926}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[37.49166666600013,6.264166667000097],[37.366666667000175,6.220833333000087],[37.2650000000001,6.122500000000116],[37.303333334000115,6.096666667000022],[37.49166666600013,6.264166667000097]]],[[[39.964166667000086,6.797500000000127],[40.013333333000105,6.900833333000094],[39.8958333330001,7.009166667000102],[39.820000000000164,7.1225],[39.78583333300003,7.12916666700005],[39.73083333400007,7.312500000000171],[39.61666666700006,7.255],[39.62250000000017,7.176666667000177],[39.55416666600007,7.102500000000134],[39.540000000000134,6.994166667000172],[39.3975,6.88583333400004],[39.26,6.918333333000135],[39.21583333300009,6.88],[39.10750000000013,6.924166666000076],[39.056666667000115,6.750000000000114],[39.1441666660001,6.780833333000032],[39.3625,6.776666667000029],[39.445000000000164,6.703333333000103],[39.487500000000125,6.8225],[39.65833333300003,6.831666666],[39.66833333300019,6.765833333000046],[39.87083333300018,6.712500000000148],[39.97333333300003,6.759166667000159],[39.964166667000086,6.797500000000127]]],[[[39.05833333300018,7.248333333000062],[39.165,7.281666667000138],[39.245833333,7.3775],[39.22083333300009,7.435833334000165],[39.045000000000186,7.468333333000089],[38.954166667000095,7.421666667000125],[39.05833333300018,7.248333333000062]]],[[[39.280833333000146,7.525833333000037],[39.29500000000013,7.3525],[39.36083333300013,7.3241666670001],[39.395,7.38333333300011],[39.379166667,7.525833333000037],[39.509166667000045,7.927500000000123],[39.5125000000001,8.025],[39.44583333300011,8.045833333000076],[39.37166666600001,7.993333334],[39.240833334000115,7.982500000000186],[39.17,7.906666667000081],[39.19083333400005,7.852500000000134],[39.29333333300019,7.8175],[39.331666667000036,7.68416666700017],[39.280833333000146,7.525833333000037]]],[[[38.18750000000017,7.983333333000132],[38.26916666700009,8.053333333000126],[38.260833333,8.130833333000055],[38.2925,8.199166667000043],[38.3825,8.240833333000182],[38.46416666700003,8.454166666000049],[38.31166666700011,8.4],[38.31833333300017,8.3425],[38.182500000000175,8.238333333000071],[38.135,8.15],[38.112500000000125,8.02],[38.18750000000017,7.983333333000132]]],[[[37.9275,8.75416666600006],[37.93000000000012,8.816666667000106],[37.85500000000013,8.837500000000148],[37.840000000000146,8.774166665999985],[37.9275,8.75416666600006]]],[[[39.48250000000013,9.340000000000146],[39.45916666699998,9.231666667000184],[39.579166667000095,9.2725],[39.586666667000145,9.350000000000136],[39.48250000000013,9.340000000000146]]],[[[38.59083333300015,9.687500000000114],[38.68666666700011,9.755833333000169],[38.68083333400017,9.82666666700004],[38.6225,9.8675],[38.5375,9.79083333300008],[38.59083333300015,9.687500000000114]]],[[[39.65083333300015,9.561666666000065],[39.7425,9.623333333000062],[39.75916666699999,9.679166667000118],[39.734166666000135,9.806666667000115],[39.681666667000115,9.827500000000157],[39.61916666600007,9.645833333999974],[39.65083333300015,9.561666666000065]]],[[[39.6675,10.0775000000001],[39.775,10.156666666000092],[39.76916666700015,10.216666667000027],[39.8225,10.27916666700014],[39.81083333300012,10.42750000000018],[39.76166666600017,10.53],[39.723333333000085,10.70000000000016],[39.67333333300019,10.71333333299998],[39.65416666600015,10.591666667000027],[39.72333333400013,10.53333333300003],[39.72416666700008,10.414166667000188],[39.6075,10.411666667000077],[39.620833333000064,10.203333333000103],[39.6675,10.0775000000001]]],[[[37.60500000000019,10.86333333400006],[37.60500000000019,10.81250000000017],[37.754166666000174,10.743333334],[37.733333333000076,10.596666667000022],[37.87000000000012,10.507500000000164],[37.9275,10.526666666000096],[37.9825,10.6375],[38.06416666700005,10.683333333000064],[38.02833333300009,10.774166666000156],[37.9533333330001,10.83],[37.87250000000017,10.8425],[37.79916666700012,10.800833334000117],[37.64083333400015,10.822500000000161],[37.60500000000019,10.86333333400006]]],[[[38.9875,11.039166666000085],[38.910833333000085,11.04166666600014],[38.9125,10.96833333300009],[38.83833333400008,10.9725],[38.812500000000114,10.905833334000079],[38.96916666700008,10.811666667000054],[39.017500000000155,10.841666666000094],[39.1525,10.810000000000116],[39.22833333400007,10.82666666700004],[39.2275,10.745],[39.32000000000011,10.77333333300004],[39.381666667000104,10.873333334000051],[39.543333333000135,10.8475],[39.59,10.974166667000134],[39.3925,11.050833333000185],[39.317500000000166,11.020833333000098],[39.26583333300016,11.112500000000182],[39.10583333300019,11.135833333000164],[39.07833333300016,11.173333333000187],[38.99000000000012,11.14833333300004],[39.04083333300014,11.0808333330001],[38.9875,11.039166666000085]]],[[[39.50666666600006,11.447500000000105],[39.57166666699999,11.523333334000142],[39.43583333300012,11.520833333000155],[39.50666666600006,11.447500000000105]]],[[[38.49416666600001,11.738333333000071],[38.355833333000135,11.7675],[38.25083333300006,11.813333333000116],[38.123333334000165,11.74333333400017],[38.22083333300009,11.551666666000187],[38.26666666700004,11.585833332999982],[38.288333333000026,11.69916666600011],[38.3275,11.733333333000076],[38.41416666600003,11.654166666000037],[38.515833334000035,11.668333333000078],[38.49416666600001,11.738333333000071]]],[[[39.193333333000055,11.58916666600004],[39.25083333300017,11.659166666000033],[39.42666666700018,11.725],[39.455000000000155,11.636666666000167],[39.525833333000094,11.726666667000075],[39.468333333000146,11.752500000000111],[39.40166666600015,11.898333333000096],[39.41916666700007,12.071666667000159],[39.389166667000154,12.112500000000182],[39.22083333300009,12.18083333300001],[39.13250000000011,12.154166667000027],[39.05416666600013,12.08500000000015],[39.12833333300006,12.030833333000032],[39.324166667000156,12.044166666000024],[39.34,11.955],[39.211666667000145,11.9125],[39.1375,11.850833334000185],[39.02583333400008,11.843333334000135],[38.96666666699997,11.67416666600019],[39.03250000000014,11.6375],[39.13916666600011,11.66166666700002],[39.193333333000055,11.58916666600004]]],[[[37.97166666600009,13.12166666700017],[38.059166667000056,13.143333332999987],[38.16166666700008,13.02916666700014],[38.24333333300012,13.020833333000041],[38.25166666700005,13.214166667000029],[38.31583333400016,13.069166667000047],[38.43,13.078333334000092],[38.545833333000076,13.233333333000132],[38.45166666600005,13.2975],[38.45000000000016,13.379166666000117],[38.34666666700019,13.384166666999988],[38.115,13.300000000000125],[37.98916666700006,13.204166667000095],[37.97166666600009,13.12166666700017]]]]},"properties":{"objectid":260,"eco_name":"Ethiopian montane moorlands","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Afrotropic","eco_biome_":"AF10","nnh":3,"eco_id":80,"shape_leng":100.686667019,"shape_area":1.28900902779,"nnh_name":"Nature Could Recover","color":"#A93800","color_bio":"#D6C39D","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":15730.09758274912,"percentage":0.32211994637582286}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[14.993562900000029,-19.24659855999994],[15.094119485000135,-19.223070971999903],[15.128264933000025,-19.13001352499998],[15.04036129300016,-19.129338412999914],[14.993562900000029,-19.24659855999994]]],[[[15.750505519000114,-18.534335301999874],[15.675013760000184,-18.58387560099993],[15.719519664000074,-18.658854452999947],[15.804044476000172,-18.634697056999926],[15.750505519000114,-18.534335301999874]]],[[[17.058735286000058,-18.659816916999944],[16.913754864000055,-18.797851640999966],[16.865797512000086,-18.762616698999977],[16.89338743100018,-18.679661582999927],[16.829581344000076,-18.62060818699996],[16.80493608400019,-18.495627893999824],[16.74396906300018,-18.439460227999973],[16.623506609,-18.417808230999924],[16.522309299000142,-18.44519993299997],[16.47597836300008,-18.502294270999926],[16.365744277000147,-18.484163312999897],[16.226275836000127,-18.56457187199993],[15.998576541000148,-18.655218826999885],[15.878801731000067,-18.742808505999903],[15.834799283000109,-18.81680664299995],[15.721469157000172,-18.830552358999967],[15.67890608800019,-18.917855154999813],[15.600709946000052,-18.861382078999895],[15.447016948000055,-19.005872644999954],[15.397284917000036,-19.154457373999946],[15.343143352000027,-19.181056947999878],[15.25225204000003,-19.068753801999833],[15.18838827900015,-19.074620035999885],[15.182212410000147,-19.22162541499995],[15.361195897000073,-19.2033022949999],[15.456735803000129,-19.104676411999947],[15.561749753000129,-19.159650830999965],[15.57943654200011,-19.110960144999922],[15.739788315000112,-19.07207404499991],[15.916411798000013,-19.185673622999957],[16.043593008000073,-19.24193799999989],[16.098250962000066,-19.117052095999952],[16.190286058000027,-19.044335390999947],[16.289955008000106,-19.06777236199997],[16.374831034000124,-19.038353018999942],[16.41187176300008,-18.98366236499993],[16.52957393600019,-18.93444609099987],[16.681055451000134,-18.948348685999974],[16.732954580000182,-18.844539727999916],[16.881825193999987,-18.860790583999915],[17.118211589000055,-18.734570026999847],[17.124170679000144,-18.672045020999974],[17.12274285900014,-18.67137791199991],[17.058735286000058,-18.659816916999944]]]]},"properties":{"objectid":261,"eco_name":"Etosha Pan halophytics","biome_num":9,"biome_name":"Flooded Grasslands & Savannas","realm":"Afrotropic","eco_biome_":"AF09","nnh":1,"eco_id":70,"shape_leng":15.5064351995,"shape_area":0.659231647253,"nnh_name":"Half Protected","color":"#5993B9","color_bio":"#BEE7FF","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":7731.899548151296,"percentage":0.6686395294757141}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-80.04599243099995,26.85559573800009],[-80.0975956289999,26.82162481500012],[-80.14448082799998,26.703074137999977],[-80.21119721199983,26.668396905000066],[-80.30862847699996,26.676759675000085],[-80.37098773099996,26.751394091000066],[-80.57145608199988,26.937697534000108],[-80.63410370799988,27.072446153000044],[-80.75278771799998,27.200179686000013],[-80.82612393699998,27.201170074000117],[-81.01368985899984,27.020307859000127],[-81.13633542499997,26.965818266000156],[-81.1773941919999,26.864380816000107],[-81.15838577599999,26.761479899],[-80.99825593999992,26.64341945400008],[-80.96387930999998,26.46080115100017],[-80.92202349999991,26.38922649800014],[-80.97603004199993,26.31213574200018],[-81.05789427899998,26.336870078000175],[-81.10625192699996,26.422618221000164],[-81.22217266199993,26.38670931200005],[-81.16775303399993,26.2943276150001],[-81.20823781699988,26.24883835800017],[-81.35310141199983,26.321418861999973],[-81.39747457999982,26.274492836000093],[-81.58842169999991,26.27372419800008],[-81.54910577399994,26.38356230800008],[-81.64667934399995,26.416030729000056],[-81.75154882799995,26.519373875000042],[-81.80010655099994,26.387072133000174],[-81.7848888979999,26.17243031999999],[-81.78273426199996,26.167185325000105],[-81.77202871499998,26.145441842000025],[-81.77219392099988,26.143295451000142],[-81.77567856199988,26.125959633000036],[-81.77636804699995,26.123782472000073],[-81.77916259799997,26.11562581800007],[-81.69857729699993,26.018803076000097],[-81.56984845699998,25.989535706000026],[-81.40495180899995,25.90720635500014],[-81.36307329499988,25.911965277000036],[-81.24195872999996,25.83748814800009],[-81.15848277599997,25.71355769100012],[-81.05931624399994,25.625111259000107],[-80.87842021599994,25.41969425600007],[-80.85486355199998,25.335223391000113],[-80.73803201699997,25.226719968999987],[-80.49389931699989,25.286206494000112],[-80.38991687099997,25.352593456000136],[-80.33096677699996,25.54802215300009],[-80.23837541899996,25.726977401000056],[-80.18909358799982,25.75775922800011],[-80.17086631299998,25.867668347000063],[-80.12942642899998,25.929211806000183],[-80.03681174699994,26.594423078000148],[-80.04599243099995,26.85559573800009]]]},"properties":{"objectid":263,"eco_name":"Everglades flooded grasslands","biome_num":9,"biome_name":"Flooded Grasslands & Savannas","realm":"Neotropic","eco_biome_":"NO09","nnh":2,"eco_id":581,"shape_leng":16.4507100444,"shape_area":1.78860361144,"nnh_name":"Nature Could Reach Half Protected","color":"#2AA6BE","color_bio":"#BEE7FF","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":19889.469900199885,"percentage":1.7200024020967535}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[137.96452366100016,-32.765647723999905],[137.92091134400005,-32.74509669099996],[137.8972400020001,-32.77572999699993],[137.95131000200013,-33.00905999699995],[138.04057000200032,-33.07291999699987],[138.0224700020002,-33.14043999699987],[137.83619000200008,-33.20189999699994],[137.8111500020002,-33.27626999699993],[137.88462000200002,-33.33534999699998],[137.87278000200013,-33.4008299969999],[137.9412300020001,-33.54972999699987],[137.59989000200017,-33.87674999699988],[137.56761000300014,-34.04402999599995],[137.5188600030001,-34.132779995999954],[137.47195000300007,-34.39797999599989],[137.5093200030002,-34.62568999599995],[137.45988000300008,-34.80773999599995],[137.45728000300005,-34.89059999599988],[137.37784000300007,-34.95383999599994],[137.2914200030002,-34.900719995999964],[137.09420000300008,-34.91925999599988],[137.008720003,-34.89635999599989],[136.93576000300004,-35.032109995999974],[136.94153000300003,-35.128299995999896],[136.8461800030002,-35.19226999599988],[136.88329000400017,-35.30107999599994],[137.00240000300005,-35.223489995999955],[137.13713000300015,-35.24367999599997],[137.2125300030002,-35.18153999599997],[137.30121000300005,-35.16781999599988],[137.4261100030002,-35.097709995999935],[137.5593900030002,-35.11913999599989],[137.6362100030001,-35.168059995999954],[137.75507000300001,-35.11095999599996],[137.72663000300008,-35.049569995999946],[137.83197000300004,-34.81229999599998],[137.86407000300017,-34.777529995999885],[137.88536000300007,-34.512609995999924],[137.9165600030002,-34.42944999599996],[138.01618000300016,-34.32609999599987],[138.0094900030001,-34.23507999699996],[138.09052000200018,-34.13258999699997],[138.15578000200003,-34.20951999699997],[138.1553100030003,-34.271809996999934],[138.22408000200005,-34.31412999699995],[138.26309000300023,-34.47315999599988],[138.33174000300005,-34.51993999599989],[138.4292600030002,-34.66569999599989],[138.54198000300005,-34.75477999599997],[138.4765300030001,-34.85966999599992],[138.51650134200008,-35.03534571599994],[138.59342010700016,-34.94410532299992],[138.5960116330001,-34.861034907999965],[138.67438324800014,-34.77517687099987],[138.5828880780001,-34.724265687999946],[138.5751636120001,-34.63887498999986],[138.71688921900034,-34.616076272999976],[138.76564000400003,-34.56174852999993],[138.78294405300005,-34.457447233999915],[138.66934210600016,-34.33714666099985],[138.69074999500015,-34.287944677999974],[138.6079410110001,-34.10944739499996],[138.5723417500002,-33.89624790599987],[138.39204390400016,-33.608146936999844],[138.32734659500022,-33.57514540799997],[138.29454021300023,-33.40584572999995],[138.16484057700018,-33.2196462199999],[138.0984344520001,-33.01044844299997],[138.0403287260001,-32.95084752799994],[137.96452366100016,-32.765647723999905]]],[[[133.01412961200015,-31.766668328999913],[132.90617409000015,-31.78209878799987],[132.85276778000014,-31.829498433999902],[132.6560672600002,-31.809299558999953],[132.48156752400007,-31.85290150999998],[132.35237141000027,-31.829402919999893],[132.279281566,-31.864204666999967],[132.19587731500008,-31.75330566899987],[132.1130829750001,-31.759505975999957],[132.12979161600015,-31.83550675999993],[132.09202759700008,-31.933260996999934],[132.150870004,-32.00249999599998],[132.27014000300017,-32.03287999599996],[132.43724000300017,-31.994769995999945],[132.5592100030001,-31.932189995999977],[132.74847000300008,-31.948949995999897],[132.93510000300012,-32.054289995999966],[133.0559600030001,-32.10405999599993],[133.14052000300023,-32.17870999599995],[133.25681000300017,-32.207219995999935],[133.47413000300025,-32.10075999599991],[133.55048000300008,-32.16973999599992],[133.60071000300013,-32.084629995999876],[133.67248000300003,-32.11235999599995],[133.71557000300004,-32.194959995999966],[133.80814000300018,-32.23212999599997],[133.9026900030002,-32.318609995999964],[133.84695000300007,-32.50689999599996],[133.99143000300023,-32.505159995999975],[134.0499800030002,-32.45949999599998],[134.13662000300008,-32.45783999599996],[134.25741000300002,-32.55928999599996],[134.290150003,-32.69283999599992],[134.23164000300017,-32.76237999599988],[134.16213000300002,-32.72095999599992],[134.06075000300007,-32.723219995999955],[134.1383300030002,-32.83996999599998],[134.074550003,-32.882379995999884],[134.20545000300012,-32.9760999959999],[134.259800003,-33.152799995999885],[134.32872000300006,-33.1995799959999],[134.41596000300012,-33.14944999599993],[134.60046000300008,-33.140769995999904],[134.71577000300022,-33.19152999599987],[134.69633000300007,-33.263569995999944],[134.8025400030001,-33.329429995999874],[134.86287000300024,-33.548639995999906],[134.84248000300022,-33.63037999599993],[135.043750003,-33.758459995999885],[135.25336000300013,-33.98288999599998],[135.28121000300007,-34.06990999599998],[135.24445000300022,-34.15251999599997],[135.306540003,-34.188359995999974],[135.35141000400006,-34.28693999599983],[135.44738000400002,-34.63042999599992],[135.37703000400018,-34.64505999499994],[135.31800000400006,-34.517269995999925],[135.25077000400006,-34.55021999499996],[135.68577000400012,-34.94501999499994],[135.7137900040001,-34.86478999499991],[135.80095000400001,-34.862959994999926],[135.92801000400004,-34.948399994999875],[135.9913000040001,-34.923179995999874],[135.96008000400002,-34.84810999599995],[136.0034200040002,-34.775219995999976],[135.85543000400003,-34.74961999599998],[135.86043000400002,-34.637199995999936],[135.93422000300006,-34.5274799959999],[136.0255300030002,-34.483729995999965],[136.11241000300015,-34.515979995999885],[136.1277000030001,-34.345229995999944],[136.18691000300032,-34.33498999599993],[136.32423000300014,-34.18234999599997],[136.36092000300005,-34.07129999599994],[136.50056000300015,-33.991879995999966],[136.59301000300002,-33.89945999599996],[136.9886000030001,-33.72527999599993],[137.2092900030002,-33.663589996999974],[137.27956000200004,-33.56308999699996],[137.37924687400005,-33.356802850999884],[137.11154189400008,-33.289859608999905],[137.06465786800015,-33.12916317799994],[136.97026480700004,-33.150260748999926],[136.90873001100022,-33.111525790999906],[136.80714718700006,-33.10669654399993],[136.55234057000018,-33.023103123999874],[136.3951831290001,-32.82916139899987],[136.26122297600023,-32.82119353699994],[136.16477945600002,-32.84626124999994],[135.97763793800004,-32.85172884899998],[135.90952880300006,-32.80936870399995],[135.72956410200015,-32.81551756199997],[135.58661731800032,-32.78852223699994],[135.24290643900008,-32.573006549999945],[135.17959539000003,-32.64485699499994],[135.08375414900001,-32.50920053899995],[134.9792825850002,-32.428815852999946],[134.70515452100005,-32.262080941999955],[134.61465481900018,-32.26568241199993],[134.44325269100023,-32.19018522999994],[134.39976465700022,-32.12878384099986],[134.22375451400023,-32.07608444399989],[134.13815271600004,-31.984285297999918],[134.03805561700028,-32.01388572299993],[133.93936168900007,-31.973686235999935],[133.8283687720001,-31.96488771399993],[133.8092651940001,-31.87218645799993],[133.67807037600016,-31.87869052699989],[133.30886809400022,-31.794992327999978],[133.2589720530001,-31.860195464999947],[133.16906742000015,-31.83979416199992],[133.09597807900002,-31.779396],[133.01412961200015,-31.766668328999913]]]]},"properties":{"objectid":264,"eco_name":"Eyre and York mallee","biome_num":12,"biome_name":"Mediterranean Forests, Woodlands & Scrub","realm":"Australasia","eco_biome_":"AU12","nnh":3,"eco_id":199,"shape_leng":45.5655263979,"shape_area":5.93820627596,"nnh_name":"Nature Could Recover","color":"#E54C00","color_bio":"#FE0000","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":61365.68700895496,"percentage":1.8576557968884484}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-6.923813540999959,61.59510675600018],[-6.861862558999974,61.48721506600009],[-6.745346560999906,61.410548312],[-6.651648450999971,61.428845001000184],[-6.742454468999938,61.57198577899999],[-6.923813540999959,61.59510675600018]]],[[[-6.961266565999949,61.926114483000106],[-6.869383472999971,61.82046210200008],[-6.62085451199988,61.83399367900017],[-6.822412460999885,61.908958571000085],[-6.961266565999949,61.926114483000106]]],[[[-7.214883510999869,62.13734749500003],[-7.387509476999924,62.13751144500009],[-7.412931453999875,62.0674514750001],[-7.242197450999868,62.02762771200008],[-7.076407428999971,62.09691772100007],[-7.214883510999869,62.13734749500003]]],[[[-6.991668567999966,62.17570191100003],[-7.123083565999934,62.28505825500014],[-7.257724423999889,62.280717435000156],[-7.271887492999895,62.19040058400003],[-7.048889473999964,62.10354780600005],[-6.917963474999965,61.99924943800005],[-6.77481749999987,62.050257342],[-6.991668567999966,62.17570191100003]]],[[[-6.970301587999927,62.266071568000086],[-6.955032441999833,62.170684671],[-6.727397553999936,62.09038235100007],[-6.623627580999937,62.11957350200015],[-6.645923442999958,62.20259189400008],[-6.868454422999946,62.301100379],[-6.970301587999927,62.266071568000086]]]]},"properties":{"objectid":265,"eco_name":"Faroe Islands boreal grasslands","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Palearctic","eco_biome_":"PA08","nnh":4,"eco_id":729,"shape_leng":9.69614963638,"shape_area":0.250002535977,"nnh_name":"Nature Imperiled","color":"#FCC960","color_bio":"#FEFF73","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":1451.3124082954494,"percentage":0.013697702925503591}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[140.60221857800002,-32.593040601999974],[140.55985300200018,-32.50296108799989],[140.59802165800022,-32.432499065999934],[140.61137003700003,-32.31615892899998],[140.66486960100008,-32.30754326999988],[140.65597908900008,-32.19478795899994],[140.5618106820001,-32.22070371099994],[140.48756771900014,-32.17373900999996],[140.34811092400003,-32.22841531399996],[140.30831029800026,-32.17264251699993],[140.23309026700008,-32.22175257799995],[140.1373522470002,-32.15038330599998],[140.11465972100007,-32.23904833499989],[139.972436506,-32.179218749999905],[140.0119593490001,-32.11922749099989],[139.84713376700017,-32.04798536699997],[139.73925440000016,-32.06912256299995],[139.61614470200016,-31.967596008999976],[139.4621861620002,-31.928753850999954],[139.3166448100003,-31.962897941999927],[139.29626749800002,-31.891862037999942],[139.3508777420002,-31.800318874999903],[139.13782726500006,-31.782343784999966],[139.27793488600003,-31.672982283999943],[139.24723749300006,-31.58865394999998],[139.25553182500028,-31.491140775999895],[139.35558975900005,-31.417939558999933],[139.37097845200014,-31.35660091999989],[139.31509434400027,-31.304917831999944],[139.33426766500008,-31.241759497999965],[139.24444970500008,-31.199184705999926],[139.2133095160001,-31.121878917999936],[139.24753210400002,-31.019757779999964],[139.420952155,-30.865857063999897],[139.4058480010002,-30.78992500299995],[139.3076060110002,-30.648107491999838],[139.42739002000008,-30.45364127099998],[139.49724298500007,-30.416975299999933],[139.48761877400023,-30.35129842399988],[139.5366353400001,-30.260884791999956],[139.49929233700004,-30.194844079999882],[139.51764189500022,-30.124922519999984],[139.67766585200013,-30.02375270999994],[139.73488997200002,-29.916618315999983],[139.6829307060002,-29.858829836999973],[139.5367430760001,-29.83005656699993],[139.5389091730002,-29.75780739499993],[139.3499301410002,-29.81159917799988],[139.30463777400018,-29.85556804999993],[139.19729519800023,-29.856414204999965],[139.15602384600015,-29.935385836999956],[139.17016776000014,-30.01045069099996],[139.085059354,-30.07381780599991],[138.96604288100025,-30.056702035999933],[138.88233767700012,-29.962138896999875],[138.73163992000002,-30.150557380999942],[138.6730123250003,-30.10288153199997],[138.57651300200018,-30.113320717999898],[138.47300385100004,-30.17086582299993],[138.53290010100022,-30.32607557599988],[138.5110480290001,-30.401437738999903],[138.39859880400002,-30.38801577399994],[138.38082322900016,-30.472703725999963],[138.25668334700003,-30.363898126999914],[138.1591107700001,-30.36069736299993],[138.19863995100002,-30.490450818999932],[138.17341944700001,-30.712491238999917],[138.12092132800012,-30.735569101999943],[138.17302118000032,-30.98960191799995],[138.30451075800022,-31.076729977999946],[138.35409056100002,-31.24086587699992],[138.2960968110001,-31.389656463999984],[138.3238676630001,-31.43044277599995],[138.2048996860001,-31.485865829999966],[138.29363712600002,-31.626464720999934],[138.09258090000014,-31.863295214999937],[138.06198186200004,-31.982431068999972],[138.01018100700014,-31.97243900999996],[137.90456520400028,-32.049948342999926],[137.83252966200007,-32.187093638999954],[137.85766944900013,-32.24656881799996],[137.83906122000008,-32.49917460099988],[137.98123174200032,-32.59534809999997],[137.96452366100016,-32.765647723999905],[138.0403287260001,-32.95084752799994],[138.0984344520001,-33.01044844299997],[138.16484057700018,-33.2196462199999],[138.29454021300023,-33.40584572999995],[138.32734659500022,-33.57514540799997],[138.39204390400016,-33.608146936999844],[138.5723417500002,-33.89624790599987],[138.6079410110001,-34.10944739499996],[138.69074999500015,-34.287944677999974],[138.66934210600016,-34.33714666099985],[138.78294405300005,-34.457447233999915],[138.76564000400003,-34.56174852999993],[138.71688921900034,-34.616076272999976],[138.5751636120001,-34.63887498999986],[138.5828880780001,-34.724265687999946],[138.67438324800014,-34.77517687099987],[138.5960116330001,-34.861034907999965],[138.59342010700016,-34.94410532299992],[138.51650134200008,-35.03534571599994],[138.46759000300028,-35.12150999599987],[138.46913000300003,-35.24198999599997],[138.43911000300022,-35.351489995999884],[138.33288000300013,-35.40207999599994],[138.4139711260002,-35.41325389199994],[138.5968629460001,-35.26774970599996],[138.6762540860002,-35.164451772999826],[138.8305512600001,-35.222351241999945],[138.9194642570003,-35.119648269999914],[138.94155856200007,-35.02664592399998],[138.88446012400016,-34.95294600599988],[139.05804438600023,-34.80204407999997],[138.97784393400013,-34.71314617699994],[138.96473712600016,-34.65024551199997],[139.0429383070001,-34.60764301399996],[139.04113797200023,-34.54374324299994],[139.12763946400014,-34.52604283999989],[139.1656497810003,-34.39324192799984],[139.25863662100016,-34.261939910999956],[139.11332665100008,-33.98633928299995],[139.15241971200032,-33.8979377849999],[139.08102437900004,-33.66713697399996],[139.20112594600027,-33.62614045199996],[139.1537320220002,-33.48523693499993],[139.17503392400022,-33.39204045999992],[139.32432588100016,-33.39743448199994],[139.3209227540001,-33.30073520899998],[139.2302245730001,-33.2897338059999],[139.36320520200002,-33.14673629799995],[139.51031034400012,-33.1188049239999],[139.637103098,-33.11954478799993],[139.63514781600009,-33.02538484299993],[139.75054898300004,-32.945765811999934],[139.81215278000002,-32.992695309999874],[139.87757242600026,-32.93604353799992],[139.98570108900014,-32.91027878299997],[140.03867704000015,-32.83986767999994],[140.11117169500005,-32.88338009399996],[140.34781280400023,-32.7993884899999],[140.3861273800003,-32.71129737099989],[140.5254221470002,-32.590681847999974],[140.60221857800002,-32.593040601999974]]],[[[137.989298544,-29.676351480999983],[137.8141100370001,-29.7287180969999],[137.59137194800007,-29.87529062199991],[137.63875984100025,-29.948446041999887],[137.58633332800002,-30.03693136399994],[137.7295475520001,-30.1141569589999],[137.82371368200018,-30.13285554099997],[137.85666210500005,-30.185370430999967],[138.0637683650001,-30.30761096799995],[138.1243914580001,-30.291520956999932],[138.18650344300022,-30.127574404999905],[138.25555257400015,-30.069339970999977],[138.19897511500005,-29.98890253299993],[138.12880295000014,-29.954705280999974],[138.0912210910002,-29.763946907999923],[137.989298544,-29.676351480999983]]]]},"properties":{"objectid":270,"eco_name":"Flinders-Lofty montane woodlands","biome_num":12,"biome_name":"Mediterranean Forests, Woodlands & Scrub","realm":"Australasia","eco_biome_":"AU12","nnh":2,"eco_id":200,"shape_leng":37.0003535706,"shape_area":6.32736621226,"nnh_name":"Nature Could Reach Half Protected","color":"#A80000","color_bio":"#FE0000","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":66350.96778288622,"percentage":2.008569706276581}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-96.687820693,39.68589870500017],[-96.82050263399992,39.717480442000124],[-96.85474985899998,39.6566797640001],[-96.85459684699987,39.536270635000164],[-96.92816471299994,39.482427060000134],[-96.95807014799993,39.40124693700011],[-97.05110348699998,39.28793063799998],[-96.95889157099998,39.15096073800004],[-96.93482488199999,39.03242649200007],[-97.02000017299997,38.925134525000146],[-97.05796965199994,38.8211904960001],[-97.0748450239999,38.628930509000156],[-97.10326908999991,38.583893556000135],[-97.27601760199991,38.484473037999976],[-97.36771768899996,38.3755619100001],[-97.32431312699998,38.275153689000035],[-97.16260803799997,38.11992515800006],[-97.04062323099998,38.026042748],[-97.04988297199998,37.892186551000066],[-96.99296683699993,37.66732281100013],[-97.02930086399994,37.51867954700009],[-97.02507221299999,37.27261632300008],[-96.92074477799991,37.13376558300013],[-96.95351912099989,37.1064225290001],[-96.92083825399993,36.99261071100011],[-96.96018692599995,36.89551763100019],[-96.89103572599998,36.75093803900012],[-96.91712584199996,36.63777315300018],[-96.83459223999995,36.55948755999998],[-96.73688888199996,36.57312164400008],[-96.64015471599998,36.46439720100011],[-96.54589433599995,36.44262701800017],[-96.4798861679999,36.61485017200005],[-96.394325601,36.59836360800017],[-96.38400694999996,36.70371086800009],[-96.32928332999984,36.83319760699999],[-96.35690984499996,36.87739972800006],[-96.3460396029999,37.04380870400007],[-96.24708061899992,37.10748992100014],[-96.20104398399997,37.19475135900018],[-96.23485158699998,37.27989604600015],[-96.15578824299996,37.432811604000165],[-96.10036768599986,37.43945213100011],[-96.09246135899991,37.60852193800008],[-96.0509399909999,37.69232725600017],[-95.96154120099993,37.7587186830001],[-95.87537361199998,37.82448936800006],[-95.88042556799991,37.98560397100016],[-96.0102832639999,38.04342962200013],[-96.0870210519999,38.15887637700013],[-96.10806104199992,38.54354741300011],[-96.05153390599992,38.626628635000145],[-96.13761311099995,38.7589739070001],[-96.1040909859999,38.81583514000005],[-95.97862882599998,38.852074729000094],[-95.90649350899992,38.95668723800003],[-95.95195468999998,39.075905139000156],[-95.86028401799996,39.30549734400006],[-95.91121049099996,39.39661635500016],[-96.17419201599995,39.52029830200013],[-96.307398359,39.54645275100012],[-96.46979230899996,39.651742487000035],[-96.57187993799988,39.62514879100007],[-96.687820693,39.68589870500017]]]},"properties":{"objectid":271,"eco_name":"Flint Hills tallgrass prairie","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Nearctic","eco_biome_":"NE08","nnh":4,"eco_id":392,"shape_leng":9.46111589042,"shape_area":2.87363603356,"nnh_name":"Nature Imperiled","color":"#A87001","color_bio":"#FEFF73","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":27976.66771225605,"percentage":0.2640479616777304}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[19.587980270000116,-34.151393889999895],[19.4801712040001,-34.16359710699993],[19.43087768600003,-34.22402572599998],[19.583246231000032,-34.22888183599997],[19.587980270000116,-34.151393889999895]]],[[[22.690799557000105,-33.98134388599988],[22.78012,-34.02772],[22.97373962400013,-34.08644485499991],[22.97817294000015,-33.99740729999991],[22.88446946500011,-34.0258226229999],[22.690799557000105,-33.98134388599988]]],[[[23.651119569000173,-33.97648389099993],[23.38497955800017,-34.00674507599996],[23.316589599000054,-33.990472616999966],[23.217145023000057,-34.03488714799994],[23.27049,-34.09980999999988],[23.3751297,-34.09860992399996],[23.44815444900013,-34.00542068499993],[23.651119569000173,-33.97648389099993]]],[[[19.819160461000138,-33.83156204199997],[19.778207779000127,-33.84217452999991],[19.775678635000077,-33.846115111999836],[19.744827271000077,-33.85399627699991],[19.819160461000138,-33.83156204199997]]],[[[24.674650192000115,-33.80604553199993],[24.670642853000118,-33.80350875899984],[24.668481827,-33.80221939099994],[24.67627143900006,-33.80724334699994],[24.674650192000115,-33.80604553199993]]],[[[19.687379837000037,-33.797420501999966],[19.73718452500009,-33.77932739299996],[19.712127686000144,-33.77968597399996],[19.69519043000014,-33.78577804599996],[19.69171714800018,-33.78564071699998],[19.67958259600016,-33.78631591799996],[19.688570023000068,-33.79365158099995],[19.68829536400017,-33.795505523999964],[19.687379837000037,-33.797420501999966]]],[[[20.870609283000135,-33.80113983199993],[20.879774094000027,-33.76154327399985],[20.599855423000065,-33.74577331499995],[20.55946922300018,-33.7567863459999],[20.77602767899998,-33.81748199499992],[20.870609283000135,-33.80113983199993]]],[[[20.483644485000127,-33.74792480499997],[20.350103378000085,-33.78934478799994],[20.472345352000048,-33.848407744999975],[20.483644485000127,-33.74792480499997]]],[[[22.646211624000102,-33.72903823899986],[22.619935989000055,-33.72756957999991],[22.614183426000068,-33.72750854499992],[22.651163101000066,-33.738937377999946],[22.661705017000145,-33.73928451499995],[22.668048859000123,-33.7340164179999],[22.646211624000102,-33.72903823899986]]],[[[24.236047745000178,-33.68054962199989],[24.235738754000067,-33.67905807499994],[24.23053932200014,-33.67693710299994],[24.230182648000095,-33.67849731399997],[24.236047745000178,-33.68054962199989]]],[[[21.994020462000094,-33.69606780999993],[21.75108337400013,-33.673732757999915],[21.72102356000005,-33.73758697499994],[21.74225044300016,-33.74095916699997],[21.942792892000057,-33.76021194499998],[22.028450012000064,-33.725040435999915],[22.0071544650001,-33.69773483299991],[22.00679779100011,-33.70055770899995],[21.994020462000094,-33.69606780999993]]],[[[21.661785126000098,-33.7243423459999],[21.62049102800006,-33.65810775799997],[21.517396927,-33.58380889899996],[21.302585602000022,-33.60488510099998],[21.33304786700012,-33.655792235999854],[21.40810203600006,-33.71520233199993],[21.502559662000124,-33.728500365999935],[21.510078430000135,-33.729339599999946],[21.557064056000172,-33.72766113299997],[21.661785126000098,-33.7243423459999]]],[[[18.80272483800013,-33.53532409699994],[18.683815002000017,-33.60621643099989],[18.679250717000116,-33.67340850799991],[18.79368400600015,-33.6780700679999],[18.85865020800003,-33.63719558699995],[18.80272483800013,-33.53532409699994]]],[[[25.26632118200007,-33.83009338399995],[25.29706955000006,-33.70845413199987],[25.456968307000125,-33.68552780199991],[25.338373184000034,-33.606113433999894],[24.953151703000117,-33.55442810099993],[24.855646133000107,-33.556060790999936],[24.677848816000107,-33.520904540999936],[24.72214317300012,-33.68162536599988],[24.85407447800003,-33.710380553999926],[24.917877197000053,-33.80202865599995],[24.910839081000177,-33.86886215199996],[25.102504730000135,-33.8885345459999],[25.30413818400018,-33.93368530299995],[25.368154526000183,-33.99442291299988],[25.573287964000087,-34.00666427599998],[25.66413116500007,-33.99034881599994],[25.520879745000173,-33.89468765299989],[25.39438056900019,-33.86073684699994],[25.26632118200007,-33.83009338399995]]],[[[20.32267570500011,-33.52207183799982],[20.376798630000167,-33.511344909999934],[20.36749267600004,-33.51130294799998],[20.332162857000128,-33.51291274999994],[20.325082779000127,-33.51512908899991],[20.323362349999968,-33.520290374999945],[20.32267570500011,-33.52207183799982]]],[[[23.046264648000033,-33.58098220799985],[23.050306320000118,-33.54172515899995],[23.084615707000182,-33.50732803299991],[22.962385178000034,-33.5651893619999],[22.651762009000095,-33.58102798499982],[22.491315842000063,-33.55419540399993],[22.518188477000137,-33.63574218799994],[22.555242538000073,-33.677425384999935],[22.563642502000164,-33.69082260099998],[22.83603477500003,-33.69099426299988],[23.05743598900017,-33.62929153399989],[23.046264648000033,-33.58098220799985]]],[[[20.319849014000056,-33.48052978499993],[20.31930160500019,-33.47883605999988],[20.28275108300005,-33.49461364699988],[20.32238578800019,-33.48599243199993],[20.319849014000056,-33.48052978499993]]],[[[21.31836319000007,-33.52822112999996],[21.191490172999977,-33.507404326999904],[21.281480789000057,-33.532798766999974],[21.285301208000078,-33.53361511199995],[21.31836319000007,-33.52822112999996]]],[[[20.736322403000145,-33.55089569099994],[20.736703873000067,-33.47013091999992],[20.496994019000113,-33.49652099599996],[20.45893859900019,-33.52854537999997],[20.736322403000145,-33.55089569099994]]],[[[20.314420700000028,-33.47214126599988],[20.29547500600006,-33.45869827299998],[20.234178543000155,-33.47216415399993],[20.23974990800008,-33.475955962999876],[20.234567642000115,-33.47930908199993],[20.317752838,-33.47619628899997],[20.314420700000028,-33.47214126599988]]],[[[20.11509132400016,-33.45665740999988],[20.121360779000156,-33.48018646199995],[20.118236541999977,-33.45592880199996],[20.11509132400016,-33.45665740999988]]],[[[20.170351028000027,-33.44246292099996],[20.167444229000125,-33.441783904999966],[20.15860366800007,-33.440696715999934],[20.125602722,-33.48181533799993],[20.128400803000147,-33.48220825199991],[20.180768967000063,-33.44243240399982],[20.170351028000027,-33.44246292099996]]],[[[20.329183578000084,-33.476348876999964],[20.378231049000078,-33.449626922999926],[20.356002808000085,-33.45581436199984],[20.32709884600007,-33.47032546999992],[20.329183578000084,-33.476348876999964]]],[[[22.261775970000087,-33.41794204699994],[22.18795585600003,-33.40143203699989],[21.975532532000045,-33.41795730599995],[21.93160438500007,-33.481880187999934],[21.821697235000045,-33.49881744399988],[22.046663284000147,-33.48831939699983],[22.24868774400005,-33.45969390899995],[22.261775970000087,-33.41794204699994]]],[[[20.74259758000005,-33.406276702999946],[20.600009918000126,-33.438728332999915],[20.59092521700012,-33.44076919599996],[20.744588852000106,-33.41492080699987],[20.7440338130001,-33.41341781599988],[20.740804672000024,-33.40655517599998],[20.74259758000005,-33.406276702999946]]],[[[20.155744553000034,-33.38740920999987],[20.130292892000114,-33.37963104199997],[20.121870040999966,-33.382392882999966],[20.155744553000034,-33.38740920999987]]],[[[20.11631393400006,-33.37821960399998],[20.09727287300018,-33.37921523999995],[20.098608017000117,-33.37988281299994],[20.113155365000125,-33.38054656999998],[20.11631393400006,-33.37821960399998]]],[[[23.748241425,-33.3746032709999],[23.751535415999967,-33.390579223999964],[23.751932144000136,-33.389038085999914],[23.752655029000152,-33.38434600799991],[23.748241425,-33.3746032709999]]],[[[23.72361564600004,-33.330223082999964],[23.730663300000174,-33.34618377699991],[23.731290817000115,-33.344676970999956],[23.737440109000033,-33.33428573599991],[23.72361564600004,-33.330223082999964]]],[[[21.01371002200017,-33.36808395399987],[21.252571106,-33.34820175199991],[21.49805831900005,-33.30262756299993],[21.500654221000104,-33.29974365199996],[21.253408432000015,-33.34577941899994],[21.175699234000035,-33.3365707399999],[21.00111961400006,-33.36275863599997],[20.99678039600002,-33.36505889899996],[20.993143082000188,-33.367259978999925],[21.01371002200017,-33.36808395399987]]],[[[24.490610123000124,-33.296627044999866],[24.480827332000104,-33.29525375399993],[24.49816513100012,-33.301841735999915],[24.50666236900014,-33.29693603499993],[24.490610123000124,-33.296627044999866]]],[[[22.956052780000107,-33.41547775299995],[22.725576401000012,-33.383041381999874],[22.519594193000046,-33.39069747899998],[22.397397995000176,-33.29932022099996],[22.0241661070001,-33.28862762499995],[21.680961609000065,-33.30394363399995],[21.508626938000134,-33.34086227399996],[21.286426544000108,-33.38030624399988],[21.12646102900004,-33.39052963299997],[21.113910675000056,-33.45953750599995],[21.20531463600014,-33.47527313199987],[21.417427063000048,-33.45413207999991],[21.41609191900011,-33.50993728599997],[21.513328552000075,-33.56675720199996],[21.606601715000068,-33.514198302999944],[21.511993408000137,-33.473060607999855],[21.496410370000035,-33.46849822999991],[21.49312210100004,-33.46449279799998],[21.569126129000153,-33.46725845299994],[21.5698471070001,-33.464859008999895],[21.56402587900004,-33.45589828499993],[21.561912537000126,-33.453716277999945],[21.614963531000058,-33.42504882799989],[21.61582756000007,-33.4235610959999],[21.66947174100011,-33.44020080599989],[21.674648285000103,-33.43941116299993],[21.681882858000165,-33.438774108999894],[21.85333633400012,-33.432014464999895],[21.99405479400008,-33.38727188099989],[22.19179916400003,-33.35835647599998],[22.298444748000065,-33.412212371999885],[22.273843765000038,-33.43687820399998],[22.4065418240001,-33.43157195999987],[22.642753601000095,-33.47464370699993],[22.913816452000106,-33.460594176999905],[23.010395050000113,-33.43757247899998],[23.09293174700008,-33.40649795499996],[23.317108154000096,-33.40645599399994],[23.24918746900005,-33.36755752599993],[23.09763336200018,-33.37733459499998],[22.956052780000107,-33.41547775299995]],[[21.751682281,-33.34857559199992],[21.75631523100003,-33.36164855999988],[21.56378746000013,-33.389324187999875],[21.522659302000136,-33.365833281999926],[21.620159149000074,-33.345989226999905],[21.629728317000115,-33.3476219179999],[21.751682281,-33.34857559199992]]],[[[24.73090934800007,-33.294841765999934],[24.617046356000117,-33.27310180699993],[24.617908478,-33.27744674699994],[24.834619522000082,-33.315895080999894],[24.83194351200018,-33.314559936999956],[24.7473888400001,-33.29702758799988],[24.73090934800007,-33.294841765999934]]],[[[26.365535736000027,-33.41809463499993],[26.316923141000075,-33.34236144999994],[26.494970321999972,-33.38272094699994],[26.55860137900015,-33.349666594999974],[26.358182907000128,-33.27828216599988],[26.317213058000164,-33.33789062499994],[26.205894470000032,-33.40809631299993],[26.365535736000027,-33.41809463499993]]],[[[20.155744553000034,-33.38740920999987],[20.16276931800013,-33.42663192699996],[20.169487000000117,-33.42686080899989],[20.198017120000145,-33.44301223799994],[20.386703491000162,-33.439334868999936],[20.492452621000098,-33.371452331999876],[20.484617233000165,-33.315017699999885],[20.302440643000068,-33.31336975099998],[20.275075912000148,-33.26364135699998],[20.279531479000127,-33.35449600199996],[20.149749756000062,-33.358337401999904],[20.163961411000116,-33.370552062999934],[20.155744553000034,-33.38740920999987]]],[[[20.78550148000005,-33.26464462299987],[20.71726989700005,-33.256114959999934],[20.45251274100019,-33.2762794489999],[20.541706084999987,-33.33681106599988],[20.58207511900008,-33.42125320399998],[20.58289909400014,-33.42250060999993],[20.638706207000098,-33.33163070699993],[20.85010910000011,-33.32394027699996],[20.90144920300014,-33.34212112399996],[20.918243408000137,-33.313533782999855],[20.773200989000088,-33.29565048199987],[20.76046562200014,-33.28980255099998],[20.760581970000032,-33.287925719999976],[20.789224624999974,-33.265827178999984],[20.78550148000005,-33.26464462299987]]],[[[24.612560272000167,-33.27236556999992],[24.50149917600004,-33.24544525099998],[24.501014709000174,-33.24581909199992],[24.609500885000102,-33.274936675999925],[24.612560272000167,-33.27236556999992]]],[[[21.56135749800012,-33.255542754999965],[21.31609535200016,-33.290473937999934],[21.063508986999977,-33.29467391999998],[21.065553665000095,-33.29642486599994],[21.113082886000086,-33.30605697599992],[21.03425788900006,-33.32373809799992],[21.038331985000184,-33.33382034299996],[21.015203476000067,-33.34124374399994],[21.012434006000092,-33.35421371499996],[21.170175552000046,-33.32840347299998],[21.28166008000005,-33.335266112999875],[21.52472305300006,-33.28511810299989],[21.49616432200014,-33.28579330399998],[21.52314186100017,-33.274475097999925],[21.556921005000163,-33.26987457299998],[21.597351074000187,-33.2614517209999],[21.56135749800012,-33.255542754999965]]],[[[22.807653427000105,-33.303833007999856],[22.55550766000016,-33.28293228099989],[22.318607330000134,-33.233516692999956],[22.121559143000184,-33.25371169999988],[22.324373245000174,-33.23751449599996],[22.491939545000037,-33.26835632299992],[22.619468689000087,-33.29835891699997],[22.807653427000105,-33.303833007999856]]],[[[25.456676483000138,-33.326148986999954],[25.797784805000106,-33.36700057999997],[25.83837318400009,-33.26713180499996],[25.72458457900018,-33.240028380999945],[25.443073273000095,-33.23091125499997],[25.261152267000057,-33.280052184999874],[25.456676483000138,-33.326148986999954]]],[[[19.75063133200007,-33.22296142599987],[19.72104072600007,-33.22148132299998],[19.841878891000135,-33.28488922099996],[19.90770530700013,-33.231685637999874],[19.904930115000013,-33.22823333699995],[19.80847740200005,-33.229209899999944],[19.812635422000028,-33.23747253399995],[19.73875427200005,-33.24024200399998],[19.75798225400007,-33.22978210399987],[19.75063133200007,-33.22296142599987]]],[[[23.54040145900018,-33.173820495999905],[23.540307999000106,-33.169940947999976],[23.52957534800015,-33.1677780149999],[23.28031730700002,-33.21391296399992],[23.233463287000063,-33.252124785999854],[23.186830521000047,-33.2594604489999],[23.129583359000037,-33.26229858399989],[23.11517143200018,-33.26596450799991],[23.106410980000078,-33.267585753999924],[23.091894150000144,-33.271007537999935],[23.080059052000024,-33.27307891799995],[23.08231544500012,-33.28621673599997],[23.08695411700006,-33.28967285199991],[23.087944031000063,-33.292274474999886],[23.08748245200013,-33.29467391999998],[23.171007156000087,-33.28066635099998],[23.154291153000145,-33.27613067599998],[23.14007759100008,-33.27584075899995],[23.136953354000127,-33.26882934599996],[23.347698212000182,-33.25558853099983],[23.46594619800004,-33.23509597799989],[23.382722855000054,-33.20416259799998],[23.54040145900018,-33.173820495999905]]],[[[20.02206230200005,-33.172443389999955],[20.031904221,-33.15481948899992],[20.015367508000168,-33.163562774999946],[20.01811790500011,-33.167968749999886],[20.02206230200005,-33.172443389999955]]],[[[23.750398636000057,-33.10547637899998],[23.71754264800012,-33.09647369399988],[23.659788132000074,-33.100406646999886],[23.666730881000092,-33.114112853999984],[23.750398636000057,-33.10547637899998]]],[[[24.10127449000015,-33.1196327209999],[23.947362900000144,-33.100830077999944],[23.840955734000147,-33.13989639299996],[23.842914581000116,-33.14305877699985],[23.955286026000067,-33.17033386199989],[23.958671570000035,-33.17131805399998],[24.187868117999983,-33.20354461699992],[24.280303955000136,-33.14144515999993],[24.280012130999978,-33.1402664179999],[24.249271393000072,-33.13399505599989],[24.227460861000054,-33.13163757299998],[24.20794677700013,-33.12941360499997],[24.17358207700005,-33.12770843499993],[24.148872375000167,-33.12538528399995],[24.10127449000015,-33.1196327209999]]],[[[23.490203857000097,-33.076190947999976],[23.44884109500009,-33.07607650799986],[23.44812202500009,-33.08309555099993],[23.490203857000097,-33.076190947999976]]],[[[23.796806334999985,-33.09440994299996],[23.714302063000105,-33.05720138499987],[23.648973465000097,-33.09937667799994],[23.796806334999985,-33.09440994299996]]],[[[17.965789374000053,-33.02988798799993],[17.960308141000155,-33.02680986699988],[17.962514877000103,-33.02991485599995],[17.96430778500013,-33.030910491999975],[17.965789374000053,-33.02988798799993]]],[[[19.329925537000122,-32.26854705799991],[19.263145447000056,-32.330898284999876],[19.27190589900016,-32.38610839799992],[19.385868073000154,-32.5574913019999],[19.47342872600018,-32.5211257929999],[19.329925537000122,-32.26854705799991]]],[[[18.487472534000062,-31.769893645999957],[18.393541336000112,-31.671115874999884],[18.313945769999975,-31.720170974999917],[18.316659927000103,-31.86650848399995],[18.413858414000174,-31.94471359299996],[18.38426017800009,-32.00796127299992],[18.433988571000157,-32.11434173599997],[18.441696166999975,-32.220664977999945],[18.401597977000108,-32.32061767599998],[18.377857208000023,-32.323238372999924],[18.376594543000067,-32.32386398299997],[18.315616608000028,-32.31692123399995],[18.336952209000117,-32.46677780199997],[18.317098618000102,-32.56995773299997],[18.24931716900005,-32.676956176999965],[18.137210000000152,-32.77397],[18.01478795600002,-32.740006294999944],[17.89493000000016,-32.74866999999989],[17.88055,-32.85366999999985],[17.896570000000168,-33.02917],[17.933557510000014,-33.031562804999965],[17.94927414200015,-33.01585126899994],[17.970561981000174,-32.995162963999974],[17.97130012500014,-32.995025634999934],[18.04146766700012,-33.04628372199994],[17.95211968000001,-33.10585031999989],[18.043333054000016,-33.170028686999956],[18.14232063300011,-33.28684997599993],[18.158923128000083,-33.36426527699996],[18.290670395,-33.45935058599997],[18.421533585000077,-33.65993499799998],[18.48938,-33.87027],[18.434949875000086,-33.91672134399994],[18.381744566000123,-33.91921601299998],[18.31137657200003,-34.043533324999885],[18.318794250000053,-34.14519119299996],[18.387742996000156,-34.27558517499995],[18.47477000000015,-34.233851],[18.42641,-34.17718999999988],[18.501905441000133,-34.097305297999924],[18.71484756500007,-34.07220077499994],[18.813380000000166,-34.10133],[18.85277,-34.2381],[18.81286031200017,-34.31164248099992],[18.83348655700013,-34.38411712599998],[18.842195696000147,-34.37814107599996],[18.844329372000118,-34.378815647999886],[18.855297089000146,-34.38448333699989],[18.856773673000134,-34.38868803399998],[18.86093711899997,-34.38742828399995],[18.856697082999972,-34.37488555899989],[18.85853576700009,-34.37248229999989],[18.869842529000152,-34.36845397899992],[18.884986877000188,-34.37392806999998],[18.905261993000124,-34.359161376999964],[18.977861404000066,-34.35710525499991],[19.05035400400004,-34.343105315999935],[19.059183121000046,-34.345798491999915],[19.05945396400017,-34.34586715699993],[19.090400696000074,-34.36164855999988],[19.142671585000187,-34.42348098799994],[19.294921875000057,-34.41645049999988],[19.35774000000015,-34.48547999999988],[19.404449463000162,-34.60610580399998],[19.517034531000093,-34.66960906999998],[19.645610000000147,-34.78053],[19.87246322599998,-34.765609740999935],[19.987108231000093,-34.832206725999924],[20.057750702000078,-34.75680541999992],[20.234070000000145,-34.68734],[20.270551682000075,-34.63249206499995],[20.39934349100008,-34.57089233399995],[20.454811096000185,-34.503444671999944],[20.61651,-34.45197999999982],[20.84599304200009,-34.47380065899995],[20.880666733000112,-34.38052368199993],[21.005050659000176,-34.36195754999994],[21.00149465200019,-34.365011736999975],[21.001605948000133,-34.365185065999924],[21.010292053000057,-34.36653137199994],[21.011071061,-34.36660983799993],[21.032493591000105,-34.36986923199987],[21.05578613300014,-34.37094116199995],[21.073862076000125,-34.37297058099989],[21.29937,-34.438832577999904],[21.422580719000166,-34.376869201999966],[21.512685776000012,-34.35795593299997],[21.695762634000175,-34.394611358999896],[21.88040351900014,-34.34442138699984],[21.88695037600013,-34.34332242499994],[21.951416016000167,-34.228046416999916],[22.090095520000034,-34.20862197899993],[22.121562958000027,-34.11615371699992],[22.249368668000045,-34.05342483499993],[22.250579487000152,-33.93951684799998],[22.384000443000104,-33.901016083999934],[22.423000600000137,-33.9480157619999],[22.598070562000032,-33.93288692999994],[22.87815051600012,-33.8580871609999],[23.098524497000085,-33.916457393999906],[23.160150596000108,-33.906585690999975],[23.30392051900003,-33.94480381699998],[23.382428983000068,-33.92450109499987],[23.53700046000006,-33.968705987999954],[23.70798449600011,-33.934550402999946],[23.92283052800019,-33.91913541199989],[23.94687452000005,-33.970842450999896],[24.310927844000105,-34.02781578299988],[24.490745037000124,-34.08720489199993],[24.454837799000074,-34.146434783999894],[24.60833740200019,-34.17760086099997],[24.796035766999978,-34.14691543599997],[24.742523193000125,-34.11966705299989],[24.722419739000088,-34.11079025299995],[24.695186615000125,-34.09721374499992],[24.68908500700013,-34.09460449199992],[24.585319519000052,-34.018672942999956],[24.61787414600019,-33.98593521099997],[24.86187553400015,-34.03425979599996],[24.86712837200008,-34.03566360499997],[24.880847931000062,-34.03841018699984],[24.881088257000044,-34.03655242899998],[24.91103172300012,-34.043201446999944],[24.91890525800011,-34.0403518679999],[24.909149170000035,-34.03139877299998],[24.914152145000173,-34.0182495119999],[24.911218643000097,-34.01562118499987],[24.91032409700017,-34.014823913999976],[24.907432556000117,-34.01225280799997],[24.904352188000132,-34.00940322899993],[24.903152466,-34.00818633999995],[24.900592804000155,-34.00534820599995],[24.89700126600019,-34.00074768099989],[24.884754181000176,-33.985382079999965],[24.875875473000065,-33.97913742099985],[24.879081726000038,-33.96917343099983],[24.86909675600009,-33.95788955699993],[24.856163025000114,-33.93904113799988],[24.851247787000034,-33.934055327999886],[24.840824127000133,-33.92236328099989],[24.780401230000052,-33.86438369799998],[24.76682472200008,-33.85438919099994],[24.715726852000103,-33.83044815099993],[24.715154648,-33.8301849369999],[24.70507621800016,-33.82450103799994],[24.69855690000003,-33.8203811649999],[24.694437027000106,-33.81774902299992],[24.589143753000087,-33.77654266399992],[24.49196052600007,-33.6943244929999],[24.41142845200011,-33.703956603999984],[24.334825516000137,-33.805103301999964],[24.22220802300012,-33.862663268999825],[23.898252487000036,-33.757900237999934],[23.889308929000094,-33.74784851099997],[23.902320862000124,-33.75227355999988],[23.913433075000057,-33.766662597999925],[24.251775742000063,-33.8585166929999],[24.33266830399998,-33.795242309999935],[24.354848862000097,-33.65906143199987],[24.26275062600007,-33.66664123499993],[24.24222564700011,-33.6812820429999],[24.242624283000055,-33.68289565999993],[24.2268943790001,-33.67734527599998],[24.22735214200003,-33.675796508999895],[24.18732070900012,-33.66180801399997],[24.18914604200006,-33.66410827599992],[24.181680679000067,-33.66114807099996],[24.18228912400008,-33.659713744999976],[24.152837753000142,-33.649307250999925],[24.15341758700015,-33.65106964099988],[24.1487045290001,-33.64888381999998],[24.14341354400011,-33.64511871299993],[24.113418579000154,-33.63262557999997],[24.112440109000033,-33.63420867899998],[24.116369247000023,-33.64416503899997],[23.93227195700001,-33.55270004299996],[23.906766891000018,-33.575027465999824],[23.903484344000162,-33.57958221399991],[23.869585037000093,-33.587635039999896],[23.86901092500017,-33.592380523999964],[23.865892410000185,-33.58809280399993],[23.85606765700004,-33.58581542999997],[23.867923737000126,-33.57634353599991],[23.722484588999976,-33.5511054989999],[23.725109100000168,-33.56579208399995],[23.72185897800017,-33.57296371499996],[23.716894150000087,-33.57447433499988],[23.718702316000133,-33.56210327099984],[23.757741928000144,-33.50834655799997],[23.933725357000185,-33.512134551999964],[23.994297028,-33.54283523599997],[24.45343017600004,-33.648399352999945],[24.466756821000047,-33.69223403899997],[24.646986008,-33.64080810499996],[24.657491684000092,-33.58325195299989],[24.395618439000145,-33.57910156299994],[24.293264389000115,-33.54623413099989],[24.26692581200018,-33.52387237499994],[24.021545409999987,-33.49978256199989],[23.83847236600019,-33.44935607899998],[23.696794510000075,-33.47175598099989],[23.563837051000178,-33.42215347299998],[23.407236099000045,-33.39937210099998],[23.305482864000112,-33.41811752299998],[23.328634262000037,-33.4583969119999],[23.412158966000163,-33.51306915299995],[23.18855285600017,-33.57164001499996],[23.021074295000062,-33.6704521179999],[23.11763763400012,-33.65747451799996],[23.11783599900008,-33.66284942599998],[23.09353065500011,-33.671550750999984],[23.045572281000034,-33.696006774999944],[22.987110138000105,-33.7066993709999],[22.897859573000062,-33.71595382699985],[22.88418769800012,-33.71760940599995],[22.850475311000082,-33.72426986699992],[22.819417953000084,-33.72957992599993],[22.784690857000157,-33.73011398299997],[22.76142692600007,-33.73184585599989],[22.70920181300005,-33.741798400999926],[22.69707679700008,-33.74362564099988],[22.657447815000126,-33.75077056899988],[22.647777557000097,-33.75068664599996],[22.633857727000134,-33.76929092399996],[22.347290039000086,-33.79757308999996],[22.321577072000025,-33.799808501999905],[22.25352859500009,-33.80940246599988],[22.239313126000127,-33.814281463999976],[22.213630676000037,-33.81789398199993],[22.203666687000066,-33.81996917699985],[22.19321441699998,-33.80830764799998],[22.156343460000073,-33.7871780399999],[22.15717506400017,-33.783512114999894],[22.02967834499998,-33.73684692399996],[21.863002777000133,-33.81042480499991],[21.716995239000084,-33.835494994999976],[21.650623322000115,-33.91616821299988],[21.353994370000123,-33.92144775399993],[21.24684333800002,-33.92138671899994],[21.051443100000085,-33.91545867899998],[20.94327163700018,-33.87715530399993],[20.767572403000088,-33.89655303999996],[20.66874694800009,-33.93301773099995],[20.53278923000005,-33.93957138099995],[20.476699828999983,-33.89953613299997],[20.391204834000177,-33.93310546899994],[20.245164870999986,-33.88346862799989],[20.176692963000107,-33.81724548299991],[20.092411041000048,-33.74995040899995],[19.96367073100015,-33.671314239999845],[19.92591667199997,-33.67176055899989],[19.831340790000127,-33.68700027499989],[19.72158241300002,-33.59280395499991],[19.69198417700011,-33.58248519899996],[19.841762543000073,-33.625267028999815],[19.97028732300015,-33.635761260999914],[20.003446579000126,-33.63574600199996],[20.055135727000163,-33.64438247699985],[20.108695984,-33.679023742999846],[20.123245239000084,-33.69421005199996],[20.128797531000146,-33.72749328599991],[20.199056625000082,-33.73662185699993],[20.310825348000037,-33.608882903999984],[20.220380783000167,-33.57684707599992],[20.104412079000042,-33.600090026999965],[20.012832642000035,-33.58437728899992],[19.925344467000173,-33.60967636099991],[19.73802948000008,-33.48151016199989],[19.72417068500016,-33.417026519999865],[19.772968292000087,-33.393249511999954],[19.709499359000176,-33.28489303599986],[19.596448898,-33.3414916989999],[19.5039043430001,-33.230300902999886],[19.69677162200003,-33.221939086999896],[19.727827072000082,-33.20215988199993],[19.71862220800017,-33.072147368999936],[19.660753250000027,-33.000057219999974],[19.71660041800004,-32.88457870499991],[19.67565727200008,-32.83563613899997],[19.628751755000167,-32.68989944499998],[19.43854522700002,-32.62646102899993],[19.445707321000043,-32.734745025999985],[19.43155860900015,-32.73780822799995],[19.36886215200002,-32.61193084699994],[19.337282181000035,-32.492229461999955],[19.270242691000192,-32.404502868999884],[19.17012786900017,-32.20737838699989],[19.193439484000123,-32.00443649299996],[19.150661469000113,-31.9255542759999],[19.050392151000096,-31.887716292999926],[18.95558929400005,-31.97097015399993],[18.830379486000027,-31.88113784799998],[18.64864540100001,-31.89979171799996],[18.556119919000025,-31.858144759999902],[18.487472534000062,-31.769893645999957]],[[20.39190864600016,-33.6730079649999],[20.382501602000048,-33.67013549799992],[20.41114425699999,-33.67787933299991],[20.402013779000015,-33.67538833599997],[20.39190864600016,-33.6730079649999]],[[23.06766700700007,-33.2823829649999],[22.939804077000133,-33.28049850499997],[22.984071732000075,-33.28049850499997],[23.001083374000018,-33.280845641999974],[23.06766700700007,-33.2823829649999]],[[19.931913376000182,-33.22156524699989],[20.023082733000024,-33.17675399799998],[20.0169830320001,-33.183895110999856],[20.016878128000087,-33.18836975099998],[19.98279190100004,-33.20733261099991],[19.97594261200004,-33.20534896899994],[19.963724136000053,-33.21009826699998],[19.959943771000155,-33.209606170999905],[19.94943237300015,-33.20854568499993],[19.93020439100013,-33.21623992899998],[19.931913376000182,-33.22156524699989]],[[18.928173065000124,-32.6062431339999],[19.030469894000078,-32.80984115599995],[19.027490616000136,-33.05262374899996],[18.965219498000124,-33.21561813399995],[19.022327423000092,-33.26913833599997],[19.02619171100008,-33.44196319599996],[19.065870285000187,-33.525913238999976],[19.053377151000177,-33.65601730299983],[18.980243683000083,-33.67157363899997],[18.960868835000156,-33.79265594499998],[18.851707458000078,-33.76792144799998],[18.875911713000164,-33.95158004799987],[18.747413635000044,-34.03956222499994],[18.71030998200007,-33.913600921999944],[18.790176391999978,-33.82848739599996],[18.718528748000097,-33.78367614699988],[18.632543564000116,-33.88981628399989],[18.55032157900007,-33.791477202999886],[18.53644943200004,-33.67099761999992],[18.63870430000003,-33.566249846999824],[18.62483024600016,-33.43966674799998],[18.52707290600017,-33.3995590209999],[18.533849716000077,-33.50791549699994],[18.451038361000087,-33.50860214199997],[18.271869659000174,-33.37261199999989],[18.232305527000108,-33.29109954799992],[18.359163284000147,-33.198799132999966],[18.40693664600019,-33.09579086299988],[18.496433258000025,-33.02252578699989],[18.494426727000018,-32.94817733799988],[18.59097290000011,-32.899085998999965],[18.74518013000005,-32.93801879899996],[18.786609650000116,-32.69702148399995],[18.790937424000106,-32.49096298199993],[18.928173065000124,-32.6062431339999]],[[19.177251816000137,-33.215602874999945],[19.2340755460001,-33.39138793899991],[19.151977539000143,-33.43774032599998],[19.078386307000187,-33.29583740199996],[19.177251816000137,-33.215602874999945]],[[19.298065185999974,-33.35313796999998],[19.32185173000005,-33.241413115999876],[19.524707794,-33.3085708619999],[19.48541068999998,-33.41297149699989],[19.399330139000085,-33.41696166999998],[19.298065185999974,-33.35313796999998]],[[19.468332291000138,-33.775554656999816],[19.53810882600004,-33.75908660899995],[19.51361846900005,-33.7194862369999],[19.509693146000075,-33.72186660799997],[19.50519752499997,-33.723789214999954],[19.413770676000183,-33.654754638999975],[19.433568954000123,-33.59359359699988],[19.45651817300012,-33.58302307099996],[19.464542389000087,-33.583786010999916],[19.567094803000145,-33.58819580099993],[19.78285217300015,-33.70026779199998],[19.881071090999967,-33.76791000399993],[20.046831131000147,-33.772857665999936],[20.078893661,-33.82268142699991],[20.088138580000134,-33.826858520999906],[20.168504715000154,-33.87217712399996],[20.23266601600011,-33.956340789999956],[20.519330978000085,-34.033863067999846],[20.620729446000098,-34.00278091399997],[20.766597748000038,-34.00402069099988],[20.81480217,-34.04996871899988],[21.055694580000136,-34.07222366299982],[21.133962631000088,-34.03551864599996],[21.27546882600012,-34.08455657999991],[21.44201088000011,-34.112869262999936],[21.50247383100003,-33.99037933299991],[21.63329315200008,-33.985713958999895],[21.613548279000042,-34.06015777599998],[21.679683685000043,-34.13642120399987],[21.64499855000014,-34.20027542099996],[21.527759552000077,-34.202831267999954],[21.33474922200014,-34.166858672999865],[21.16002655,-34.212158202999944],[21.082666397000025,-34.21102142299992],[20.93350791900002,-34.27900695799997],[20.6871623990001,-34.350528716999975],[20.527843475000168,-34.337020873999904],[20.42304992700008,-34.38059997599993],[20.253051758000026,-34.41186141999998],[20.182771683,-34.48376846299993],[20.078653336000116,-34.509494780999944],[20.210697174000188,-34.634471892999954],[20.048618317000034,-34.64038085899995],[20.061759949000077,-34.54511642499995],[19.936048508000056,-34.50093078599991],[19.89287376400017,-34.452430724999886],[19.76139068600014,-34.398029326999904],[19.525606155,-34.3786010739999],[19.35713386500015,-34.291389464999895],[19.194906235000076,-34.28451156599988],[19.227891922000026,-34.14578628499993],[19.378688812000064,-34.06895828199998],[19.58399772600012,-34.04954528799993],[19.7076969150001,-34.11915969799992],[20.021062851000067,-34.12154388399995],[19.994974136000167,-34.04531097399996],[19.835510254000155,-33.9725570679999],[19.81804466200009,-33.97377777099996],[19.807373047000056,-33.956008910999856],[19.809682846000157,-33.9469604489999],[19.81643104600016,-33.94168472299992],[19.821779251000123,-33.92950820899989],[19.82582473800005,-33.92343902599998],[19.816728592000118,-33.91226196299988],[19.82546806300013,-33.87562560999993],[19.71590995800011,-33.93676376299993],[19.58866119400011,-33.98754882799983],[19.51104545600009,-33.92110824599996],[19.498630524000134,-33.92229461699998],[19.46070480300017,-33.922744750999925],[19.427497863999974,-33.91891860999982],[19.42473411600014,-33.91947555499996],[19.400917053000114,-33.92023467999991],[19.371351242000117,-33.82860183699995],[19.426073074000044,-33.803829192999956],[19.468332291000138,-33.775554656999816]],[[21.940231323000148,-34.050651549999884],[21.881441116000076,-34.17904663099995],[21.79596138000005,-34.14345169099994],[21.7973728180001,-34.071136474999946],[21.74969291700006,-33.96952056899994],[21.940231323000148,-34.050651549999884]],[[19.167972565000184,-34.07712554899996],[19.303066254000044,-33.96437072799989],[19.285615921000158,-34.087318419999974],[19.167972565000184,-34.07712554899996]]],[[[19.111104965000152,-31.32670974699994],[19.11707687400019,-31.21979713399992],[19.03238868700015,-31.1849861149999],[18.980333328000086,-31.263977050999983],[18.98137092600018,-31.353981017999956],[19.116348267000035,-31.49926185599992],[19.057659149000074,-31.672698974999946],[18.977378844999976,-31.673156737999932],[18.99998855600012,-31.7612590789999],[19.001581192000117,-31.760313033999978],[19.003292084000066,-31.766551970999956],[18.96374702500009,-31.77587509199998],[18.964246750000143,-31.78181266799993],[18.906234741000162,-31.778650283999923],[18.840303420999987,-31.7090129849999],[18.76262092600018,-31.749979018999966],[18.74971008300014,-31.74774169899996],[18.68226051300013,-31.72644042999997],[18.646537781000063,-31.802591323999934],[18.680019379000157,-31.84319305399987],[18.778833389,-31.86822128299991],[18.871526718000155,-31.82824325599995],[19.137817383000026,-31.90587043799991],[19.216552734000118,-31.848934173999965],[19.213045120000118,-31.638952254999936],[19.19138526900008,-31.57276534999994],[19.111104965000152,-31.32670974699994]]]]},"properties":{"objectid":273,"eco_name":"Fynbos shrubland","biome_num":12,"biome_name":"Mediterranean Forests, Woodlands & Scrub","realm":"Afrotropic","eco_biome_":"AF12","nnh":3,"eco_id":89,"shape_leng":261.043544304,"shape_area":5.20432407433,"nnh_name":"Nature Could Recover","color":"#CD8966","color_bio":"#FE0000","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":53809.08596762345,"percentage":1.628903143517937}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-90.42221863299989,-1.22861345899986],[-90.4766535629999,-1.231690287999868],[-90.51042961499996,-1.312027141999863],[-90.4327625649999,-1.356542759999911],[-90.35252361099998,-1.270897310999885],[-90.42221863299989,-1.22861345899986]]],[[[-89.3256915209999,-0.690372563999915],[-89.41752650199999,-0.72599514999996],[-89.48265053699998,-0.815510354999958],[-89.60182963299997,-0.879910528999972],[-89.55424456299988,-0.951068192999969],[-89.40952262299999,-0.921235322999905],[-89.24066163999993,-0.717765628999928],[-89.3256915209999,-0.690372563999915]]],[[[-90.24758151299994,-0.477018761999943],[-90.48384054199994,-0.520359571999961],[-90.53037250999989,-0.562150231999965],[-90.53489655799996,-0.690286900999979],[-90.39535564,-0.769646927999929],[-90.23521451799996,-0.744467690999898],[-90.19742554499993,-0.697567253999978],[-90.16676353799994,-0.569181642999979],[-90.24758151299994,-0.477018761999943]]],[[[-91.46165459199989,-0.256378068999936],[-91.66187260999999,-0.302205621999917],[-91.60546860399995,-0.475843786999974],[-91.52056864199989,-0.497157289999905],[-91.38839759599995,-0.45136460599997],[-91.37963850699998,-0.347187439999914],[-91.46165459199989,-0.256378068999936]]],[[[-90.78679655299999,-0.141547671999945],[-90.82645452199995,-0.159877552999831],[-90.83225261999996,-0.325055192999912],[-90.59532957699992,-0.373673415999974],[-90.54622654399992,-0.300442906999933],[-90.6424635329999,-0.195976565999899],[-90.78679655299999,-0.141547671999945]]],[[[-91.35916151799984,0.165519328000187],[-91.38755052099998,0.127032143000122],[-91.48952458699989,0.099120070000026],[-91.5939555569999,-0.005768886999931],[-91.54712653499996,-0.051249595999934],[-91.46434752899995,-0.013602445999936],[-91.40802750999995,-0.043700183999931],[-91.39064763399989,-0.233384999999885],[-91.32056452999984,-0.339684127999931],[-91.22800451399996,-0.384202762999962],[-91.21417252999993,-0.47737650199997],[-91.0778576379999,-0.598126701999945],[-91.0923236299999,-0.635095923999927],[-91.32889563899994,-0.690981592999947],[-91.48919651999995,-0.845170054999869],[-91.50241863699995,-0.919360458999961],[-91.4194485239999,-1.010186929999975],[-91.30953260399991,-1.011699695999937],[-91.210906605,-1.041576318999944],[-91.0166776239999,-0.987303662999977],[-90.86003862899992,-0.914059072999976],[-90.82483664699998,-0.78887048799993],[-90.7813265229999,-0.761405337999975],[-90.8977045549999,-0.60480422899991],[-90.95433755399989,-0.605500932999917],[-90.94049852899997,-0.478826570999956],[-91.01316057799988,-0.362695134999967],[-91.10842861899988,-0.308013441999947],[-91.17464464799991,-0.220741736999969],[-91.1983035749999,-0.020189950999963],[-91.27082061699991,0.04322551700011],[-91.31032553199998,0.133345728000165],[-91.35916151799984,0.165519328000187]]],[[[-90.47323558999989,0.38811769900002],[-90.5394055189999,0.320367781000186],[-90.47727952299982,0.280700424000145],[-90.40151264999997,0.329596089000063],[-90.47323558999989,0.38811769900002]]]]},"properties":{"objectid":274,"eco_name":"Galápagos Islands xeric scrub","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Neotropic","eco_biome_":"NO13","nnh":1,"eco_id":601,"shape_leng":11.6906818383,"shape_area":0.648200808387,"nnh_name":"Half Protected","color":"#F5984B","color_bio":"#CC6767","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":8032.001180398078,"percentage":0.030444798641419142}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[17.54776914100006,-27.596926937999967],[17.509998742,-27.550130099999876],[17.431579738000096,-27.637891437999883],[17.447397700000067,-27.828319345999944],[17.515625995000107,-27.746229398999958],[17.54776914100006,-27.596926937999967]]],[[[22.386854172000085,-29.12234878499993],[22.26510810900004,-28.9881820679999],[22.181861877000188,-28.96786308299994],[22.056930542000032,-28.840639113999828],[21.886350632000074,-28.785953521999943],[21.823820114000057,-28.669527053999957],[21.77784919700008,-28.637405395999963],[21.766090393000013,-28.51821327199997],[21.71558380100015,-28.45536231999995],[21.545629501000064,-28.38177299499995],[21.41898727400013,-28.359767913999917],[21.320327759000122,-28.234056472999953],[21.262161255000137,-28.10892105099998],[20.882890701000065,-27.836305617999926],[20.844761327000015,-27.909699726999918],[20.770215988000075,-27.906032561999893],[20.63345035100008,-27.847961350999867],[20.650122299000145,-27.951716851999947],[20.733898163000106,-28.04235076899994],[20.650718689000144,-28.07390594499998],[20.48781013500019,-27.918140410999968],[20.430734900000118,-27.741489500999933],[20.278044675,-27.565646723999976],[20.113073349000103,-27.47088050799988],[20.075336456000116,-27.29619216899988],[20.17393684400008,-27.14210128799988],[20.13660812400002,-27.019042968999884],[20.25417137100004,-27.039724349999915],[20.345016479000094,-26.97114372299984],[20.30176544200009,-26.920383452999943],[20.285429001000125,-26.81946372999994],[20.197708130000137,-26.715896605999944],[20.028463364000174,-26.650806426999964],[19.999443054000096,-26.588373964999903],[19.80618905100016,-26.59117395199985],[19.729370820999975,-26.573879153999883],[19.642976997000176,-26.473411666999937],[19.42574570700009,-26.313082321999957],[19.347640037000133,-26.237481623999884],[19.4173430030001,-26.21162751999998],[19.62152577100005,-26.37983468999994],[19.729606179000086,-26.41243410899989],[19.56780941700015,-26.18733402499987],[19.439008213000136,-25.98127829599997],[19.184684807000053,-25.68348840099992],[19.049105175000022,-25.48864474499993],[18.861864906999983,-25.244560089999936],[18.332350501,-24.713711866999972],[18.294267468000044,-24.69568341099989],[18.138154016999977,-24.533113010999955],[18.018503853000084,-24.56072458699998],[18.000096135000092,-24.385851269999876],[17.880445970999972,-24.303016540999977],[17.76079580700008,-24.25699724699996],[17.71477651300006,-24.063716211999974],[17.482856055000127,-23.671462480999878],[17.36770489700018,-23.54488159999994],[17.31417722599997,-23.456874608999954],[17.199031594000132,-23.37550202899996],[17.040722408000022,-23.350144635999925],[16.832665583000107,-22.942987324999933],[16.74395755,-22.925245718999975],[16.411516799000026,-23.19643505199997],[16.291546582000024,-23.34217347299989],[16.234280233000106,-23.45872693599989],[16.249412819000042,-23.50255314599991],[16.167266167000037,-23.691784303999896],[16.15503194000007,-23.770793789999914],[16.172019778000163,-23.990433589999896],[16.269722832000127,-24.204725644999883],[16.254693256000053,-24.33823748899988],[16.212537515,-24.501232413999958],[16.233177722000107,-24.628764265999905],[16.342949547000046,-24.867883434999897],[16.397195062000094,-25.052559481999936],[16.447935969000127,-25.16446040199986],[16.46567959200013,-25.28416577099989],[16.519719653000095,-25.409086011999932],[16.667689176000067,-25.504386990999933],[16.742854836000106,-25.721541018999915],[16.713906324000106,-25.86976560399995],[16.792270685000062,-25.99649492899988],[16.75961848200012,-26.123865158999877],[16.802513176000105,-26.295920590999913],[16.794281551000154,-26.413121018999902],[16.754466080000157,-26.438135613999975],[16.79489821499999,-26.563844901999914],[16.67400364499997,-26.816756022999982],[16.739999221000176,-26.89457667499994],[16.87800353000017,-26.925493647999872],[17.02391233600008,-27.027453734999938],[17.05668561500005,-27.201976721999927],[16.99341959800006,-27.347972907999917],[17.07090501000016,-27.425309778999917],[17.093374693999976,-27.59344230699992],[17.055314606000024,-27.686796707999974],[17.148093617000143,-27.714530378999882],[17.167769684000064,-27.642219949999912],[17.158213701000136,-27.43720041499995],[17.21749863500014,-27.391260573999887],[17.305500233000146,-27.397171216999936],[17.377689572,-27.46241704199997],[17.50375011400007,-27.512638367999955],[17.55699080500017,-27.49210624299991],[17.56717229100002,-27.398709991999965],[17.660460361000105,-27.36758217599987],[17.726947865000113,-27.41311321099994],[17.602055530000143,-27.58735851299997],[17.600055989000168,-27.7303266429999],[17.682552332000057,-27.772405680999896],[17.64445950700008,-27.880987010999945],[17.57111400400015,-27.951015492999886],[17.41883141000011,-28.235083561999943],[17.214561462000063,-28.247920989999955],[17.18039703400018,-28.20472526599997],[17.191585541000165,-28.110885619999976],[17.080961227000103,-28.033761977999973],[16.91153144800012,-28.092170714999952],[16.91001892100013,-28.200849532999882],[16.986179352000136,-28.23352813699995],[17.047670364000112,-28.175823211999898],[17.078182220000087,-28.248836516999916],[17.064273834000062,-28.28768730199988],[17.054279327000074,-28.30198478699998],[17.10829925500002,-28.35819244399994],[17.16803169300016,-28.410615920999874],[17.175050735000013,-28.4325695039999],[17.18373489400011,-28.404680251999935],[17.23082542400016,-28.448263167999983],[17.249732971000014,-28.63282775899995],[17.320646286,-28.797243117999926],[17.415576935,-28.847602843999937],[17.417306900000085,-28.913064956999904],[17.54957199100005,-28.987670897999976],[17.639225006000174,-28.97584915199991],[17.655681610000045,-28.92299842799997],[17.833906174000163,-28.94904136699995],[17.937946320000094,-29.04242134099991],[17.961690903000147,-29.119529723999904],[17.888750076000065,-29.176557540999966],[18.020885468000074,-29.317434310999886],[18.08653068500007,-29.30192375199988],[18.119989395,-29.323404311999923],[18.08024978600008,-29.330240249999974],[18.02101707500003,-29.496221541999944],[18.057693481000115,-29.530395507999913],[18.053588867000144,-29.639217376999966],[18.055189133,-29.639932631999898],[18.13286972000003,-29.64540290799988],[18.203683852999973,-29.69586753799996],[18.22149276700003,-29.65262794499995],[18.33974838300003,-29.632534026999963],[18.463417053000057,-29.692045211999982],[18.36242866500004,-29.77983093299997],[18.474634171,-29.90462303199996],[18.46095085100012,-29.962093352999943],[18.33974838300003,-29.906921386999954],[18.297143936000168,-29.94771194499998],[18.381664276000095,-29.972570418999965],[18.56988525400004,-30.04878425599992],[18.517988205000165,-30.13985443099989],[18.540430068999967,-30.22169876099997],[18.51021003700015,-30.344402312999932],[18.618190765000122,-30.403772353999898],[18.680671692000033,-30.374532699999918],[18.70189094500006,-30.307817458999978],[18.775190353000028,-30.250844954999877],[18.732622147000086,-30.100572585999885],[18.810626984000123,-30.00657272299992],[19.022422791000167,-30.090570449999916],[19.060403824000048,-30.263977050999927],[19.16349029500003,-30.335201262999817],[19.275800705000165,-30.270101546999967],[19.274887085000046,-30.42692565899989],[19.357444763000103,-30.504793166999946],[19.548032761000172,-30.583332061999897],[19.74902534500012,-30.822336196999913],[19.891395569000167,-30.834007262999933],[19.871726990000184,-30.94219398499996],[19.97953033400006,-31.04286003099992],[20.015651703000174,-31.28724479699997],[20.015651703000174,-31.2899513239999],[20.048122406000118,-31.294460296999944],[20.254667282000128,-31.20967674299993],[20.34263229400011,-31.209890365999854],[20.470706940000184,-31.09726524399997],[20.652979307000123,-31.126287582999907],[20.752386092999984,-31.22529220599995],[20.81247711200001,-31.185714721999886],[20.818735123000124,-31.02611160299989],[20.86222076400003,-30.982383727999945],[21.007970810000074,-31.072179793999965],[21.064182281000114,-31.058618545999934],[21.171316147000027,-30.951286315999937],[21.214536667000118,-30.973285674999943],[21.3834781650001,-30.855901717999984],[21.57525444000015,-30.60846328699995],[21.657617569000024,-30.63348007199994],[21.76333236700009,-30.772523879999937],[21.604721069000107,-30.777999877999946],[21.579814911000085,-30.828771590999906],[21.778959274000158,-30.93729019199992],[21.871980667000116,-30.92093276999998],[21.924524307000127,-30.817594527999972],[22.043642044000137,-30.806777953999926],[22.00491333000008,-30.62748718299997],[22.092836380000108,-30.562101363999943],[22.045824051000068,-30.501735686999893],[22.095241547000114,-30.43264198299994],[22.017532349000078,-30.404823302999887],[22.02384567300004,-30.306367873999932],[22.24980163600003,-30.416301726999905],[22.269552231000034,-30.441080092999982],[22.466627120999988,-30.45542716999995],[22.489440918000184,-30.379625319999946],[22.579051971000183,-30.31824684099996],[22.602743149,-30.115837096999826],[22.67593002300009,-30.146589278999897],[22.78609848000019,-30.110971450999955],[22.881961823000097,-30.20894241299993],[23.04348754900019,-30.21031951899994],[22.975139618000185,-29.87329292299995],[22.904159546000074,-29.88190841699992],[22.86866569500006,-29.759092330999977],[22.729879379000067,-29.690643310999974],[22.640623092999988,-29.559926986999983],[22.72131347700008,-29.502674102999947],[22.676879883000026,-29.398677825999926],[22.60161018400015,-29.360525130999918],[22.51594734200006,-29.400253295999903],[22.405351639000116,-29.341302871999915],[22.384601593000127,-29.25931739799995],[22.313524246000043,-29.27251052899993],[22.292608261000055,-29.19066047699988],[22.386854172000085,-29.12234878499993]],[[18.01410947500011,-27.742149854999923],[17.94558435600004,-27.70663015199989],[17.936861406,-27.646888222999905],[18.03694561200018,-27.635199294999893],[18.01410947500011,-27.742149854999923]],[[18.163505554000153,-29.282649993999883],[18.103525162000153,-29.24650382999988],[18.131055832000072,-29.15443229699997],[18.187776566000025,-29.11662864699997],[18.223806381000145,-29.27428054799998],[18.163505554000153,-29.282649993999883]]]]},"properties":{"objectid":275,"eco_name":"Gariep Karoo","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Afrotropic","eco_biome_":"AF13","nnh":2,"eco_id":94,"shape_leng":70.9380413228,"shape_area":23.0419740659,"nnh_name":"Nature Could Reach Half Protected","color":"#C17D4C","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":252628.519219431,"percentage":0.9575726180775133}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[66.33546448300018,32.761840927000094],[66.25408156700013,32.664678911000124],[66.20660361800014,32.5254090630001],[66.28544648100006,32.43906573700019],[66.38881663800004,32.576379416000066],[66.37558748000004,32.71298717200011],[66.33546448300018,32.761840927000094]]],[[[63.202358526000125,34.15160406000007],[63.22206857100019,34.210227426000074],[63.12725063900018,34.23676889100011],[62.96978351100017,34.1889003440001],[62.81901151300002,34.188747123000155],[62.49057049300012,34.10068768600007],[62.41269657700019,34.06248783300015],[62.41935348500016,34.00239646099999],[62.66987951800019,34.044044294000116],[62.870628614000054,34.10486053300008],[62.956371628000056,34.07913932200006],[63.042545640000185,34.00618122500015],[63.15850457600004,34.04122512400005],[63.202358526000125,34.15160406000007]]],[[[69.34153750000013,34.08052719800014],[69.50199160200003,34.19161624900005],[69.42317153700009,34.29228642600009],[69.3426135690001,34.24674469600012],[69.31828358600006,34.1090332120001],[69.34153750000013,34.08052719800014]]],[[[68.0957794860002,34.29863420900011],[68.001914576,34.27367876900013],[67.91323052000001,34.177456532000065],[67.9576495770001,34.13748675600016],[68.05901360900009,34.174408704000086],[68.0957794860002,34.29863420900011]]],[[[62.99419060800017,34.60304297200014],[62.98492055800017,34.67832805300003],[62.82054154600007,34.642881990000035],[62.81349957400005,34.598007292000034],[62.99419060800017,34.60304297200014]]],[[[63.65876757100011,34.71666017300015],[63.30873862400006,34.68729970700019],[63.300472558000195,34.652365779000036],[63.531379574000084,34.58488156699997],[63.58374048500019,34.59701219300007],[63.65876757100011,34.71666017300015]]],[[[64.13227854900015,34.719979071000125],[64.03241756000006,34.80203874100016],[63.84136163200003,34.77911624800009],[63.78636159500002,34.700925329000086],[63.83704361100007,34.59549322400005],[63.963272558000085,34.605445896],[64.09406260200012,34.66583834700009],[64.13227854900015,34.719979071000125]]],[[[64.94999657100004,34.85825851300007],[64.76760853700006,34.80870671300016],[64.79114559200019,34.74870720600006],[64.91999857800016,34.737354421000134],[65.03833059900018,34.79690398800011],[64.94999657100004,34.85825851300007]]],[[[67.53027360100009,35.50134327100017],[67.51970653500007,35.58030549300008],[67.41711455500007,35.553328002],[67.33532763200009,35.678146108000135],[67.2371215660001,35.70302544000003],[67.17649056600004,35.655964574000166],[67.18823948000016,35.57511759800008],[67.12883760300014,35.51811193900005],[67.07660661100005,35.402868649000084],[67.07788049300012,35.33420242200003],[66.99166155500018,35.30546691100005],[67.00580551299998,35.42386816600009],[66.97097753200018,35.53180243700007],[66.86628756100009,35.52186988100016],[66.79404460800004,35.45253947200018],[66.60023455500004,35.39362273900019],[66.55165857600014,35.321594698000126],[66.44077253500018,35.24536045100007],[66.35112757800005,35.11326500900003],[66.45874048600012,34.997353849000035],[66.4779965670001,34.92847371600004],[66.3969425570001,34.90151617400011],[66.28348561900015,35.03565277700005],[66.12213850900008,35.16512350900018],[66.1302946030001,35.230129024000064],[66.27088963000006,35.29834128700003],[66.37556451300003,35.38132011700009],[66.45891550000005,35.5645507000001],[66.24215663400014,35.59002112400003],[66.10251664100014,35.47030709500012],[66.01122262800016,35.48276578800005],[65.86641653300012,35.36127060500013],[65.53229560000017,35.36306366100018],[65.432472497,35.29903128600017],[65.3207246290001,35.317269804000034],[65.28948963400018,35.2793517500001],[65.16390961400009,35.32243758300018],[65.05621355700009,35.32232761200004],[65.00550857500014,35.253020337000066],[65.08477053400009,35.19248572900017],[65.33870649300019,35.15663280900003],[65.58857756500015,35.212173311000015],[65.45322458100003,35.10134409900007],[65.40213755200017,35.020554287000095],[65.52069052000007,35.019963363000045],[65.59589362600019,34.97777322100012],[65.55744164500004,34.89640438700002],[65.42749750300015,34.81458544499998],[65.28029653100009,34.77954054000003],[65.41215560200004,34.72044795500017],[65.71524857399999,34.693646652000155],[65.94850151700012,34.72371773499998],[66.1647415430001,34.702508335000175],[66.17634561799997,34.63740810500019],[66.04756957800015,34.60436295400012],[65.81236247800007,34.57559291000018],[65.83374052200003,34.50399251400006],[66.0550306450001,34.51463535100004],[66.0768205760001,34.46884149400012],[65.85194350100005,34.44363023800008],[65.50521853200013,34.460326654000085],[65.11698956400016,34.46419557200011],[64.92987849500008,34.45299600900006],[64.68409762400006,34.39343454000016],[64.50373063500007,34.37123322500008],[64.03108953100008,34.36080848500012],[64.00556948600018,34.34107899300017],[64.030731624,34.27628084700012],[64.16573357400006,34.229536984000106],[64.37009460000019,34.23187486500018],[64.79262550100015,34.284749419000036],[64.79721861600012,34.18909413400013],[64.55879957100012,34.15724189600007],[64.36812552300006,34.14580227500011],[63.86522658700011,33.97292099500015],[63.5712014930001,33.911532942000065],[63.54953762600002,33.854215644000135],[63.37926060400008,33.80834467300002],[63.022777591000136,33.75849615400017],[62.8093605900001,33.68393241900014],[62.877967641000055,33.637000635000106],[63.1497575570001,33.70404664],[63.094787527,33.64018274],[62.96385549400003,33.59553703600011],[62.87862360900016,33.52962493500007],[62.96433661500015,33.489578883000036],[63.10825758100003,33.530806783000116],[63.37500360300004,33.653369151000106],[63.5044245470001,33.73944962000007],[63.80892953400013,33.78865440900012],[64.02217051600007,33.86463619400013],[64.18208348200017,33.89262035100012],[64.48136855500007,33.99876139700018],[64.78458356800007,34.029259621999984],[64.77252150600003,33.966856185000154],[64.700134552,33.913272690000156],[64.53781849400008,33.84645685200019],[64.44754757600009,33.836065136000116],[64.27207159500011,33.77408984600004],[63.60057050900002,33.58552720000006],[63.254104541000174,33.39599158200019],[63.26591849800002,33.343797135000045],[63.40785261700012,33.37199855100016],[63.592033540000045,33.50904048900003],[63.690158637000195,33.528555907000055],[64.11769856300009,33.67199977400003],[64.2275546360001,33.68371449000011],[64.53661351200003,33.78335537000004],[64.6102295880001,33.82699424000009],[64.81949654099998,33.876930769000126],[64.74324754200012,33.767227079000065],[64.57745349700008,33.65577308000019],[64.4183195440001,33.57771426000005],[64.25785052300012,33.539668465999966],[64.15409848700006,33.55128310200013],[64.06805456300003,33.521125182000105],[63.99478164100009,33.3872718880001],[63.91984558300004,33.31059809300007],[63.715412641,33.19224377600017],[63.61053458000015,33.09635966500019],[63.61667248000015,32.97359914900011],[63.69879149400015,32.918985853000095],[63.704357581000124,32.85920779600002],[63.80828848599998,32.846173266000164],[63.91229248200011,32.94915517300018],[63.96858953500009,33.13342242900006],[64.04144252300011,33.154097902000046],[64.12621357100016,33.09250382200008],[64.29649361100019,33.13837328400018],[64.36477661700008,33.26902351799998],[64.28251662000002,33.339379202000146],[64.45358254600006,33.42254494800005],[64.5390925430001,33.369591436000064],[64.57772054400004,33.28912986000006],[64.65473950600011,33.26138659800017],[64.70680956500013,33.30500652500018],[64.78762049900007,33.46514680900003],[64.89669755800014,33.526934847000064],[65.13795454799998,33.550387076000106],[65.20374259700014,33.59922876200005],[65.16655762500005,33.77002395300019],[65.19831850000014,33.803675953000095],[65.37134562400007,33.725126288000126],[65.41860162100005,33.764122086999976],[65.42877959800006,33.85647339400009],[65.54759961400003,33.89743826900013],[65.55364950400008,33.97948586900009],[65.45481161000015,34.038700160000076],[65.339614589,34.02662669900019],[65.20259058800013,34.04602007600016],[65.26850151600019,34.152161289000105],[65.25926952100008,34.241773893000186],[65.41108657400008,34.23340104200008],[65.48810553600015,34.20566063000007],[65.68981151000014,34.0545649230001],[65.76950061000014,33.94679493800004],[65.72433455700013,33.803382083000145],[65.53070857000012,33.58263225800016],[65.5027995150001,33.51772598500014],[65.55197949400008,33.3806840470001],[65.62885261000014,33.36868652600015],[65.75196851800013,33.418532028000186],[65.90898855500018,33.586683232000155],[65.99357553700008,33.847341645000085],[66.061035608,33.92637259900005],[66.08959962500006,34.04431502900019],[66.03074659500004,34.157787893000034],[66.25065655399999,34.10675232900013],[66.48783859800005,34.22159144300019],[66.51608259400018,34.196284969000146],[66.48892254500015,34.06697768400011],[66.31822156700008,33.90792805300015],[66.30570956500009,33.80539172900012],[66.42084456000009,33.78881819100019],[66.6280215700001,33.855798483000115],[66.70201147900013,33.910922907000156],[66.77522254200017,34.01612601800008],[66.74996149700002,34.104654505999974],[66.687080627,34.16342572900004],[66.61901052100018,34.29346525700004],[66.68714147999998,34.35249263100002],[66.86037463200012,34.286843386000044],[66.81036350300013,34.211855695000054],[66.87967664600006,34.159240980000106],[66.9910275470001,34.20256770800012],[67.07994059700019,34.326015540000185],[67.145370572,34.2903294190001],[67.28182259100004,34.333915316000116],[67.41912855900006,34.44344734500015],[67.53067056800012,34.4123052220001],[67.57457749100007,34.463966579000044],[67.66712158100006,34.45589095000008],[67.77899953700012,34.494955816000015],[67.94447356100005,34.46315772500009],[67.81275161700017,34.381220095],[67.65928651300015,34.3684794350001],[67.51979052200016,34.23826472500008],[67.3527225950001,34.19547594700015],[67.27995258800013,34.130406730000175],[66.99762762600005,34.04689397300007],[66.9170684840002,34.00135123700005],[66.98452754900018,33.919970669],[67.36219062600003,33.88531149900007],[67.42545354300012,33.83801895700003],[67.26541853600014,33.75273543900005],[67.06164558500012,33.77478789100019],[66.87268848600007,33.734814930000084],[66.65229757300011,33.64402735200014],[66.67817653200007,33.594213031000095],[66.77638259700012,33.569330513000125],[66.97406760500019,33.61132133300009],[67.02214854800013,33.541522542999985],[66.80812855300013,33.51561726600005],[66.50273156300011,33.546561408000116],[66.3465725160001,33.44435315100014],[66.16191063900015,33.413268193000135],[66.04821062600007,33.27238751100009],[66.07795749700011,33.11827901300012],[66.22170261000014,33.16092563299998],[66.37523661300003,33.28444186100006],[66.40018451000003,33.21307800200009],[66.47716558500008,33.17101140900013],[66.525184503,33.39338983900012],[66.6043095010001,33.435972589000016],[66.77655761100004,33.40749641400015],[66.8502885200001,33.421068895000076],[66.94075054500007,33.35699477700007],[66.85440856100007,33.27095722300004],[66.73783154200015,33.19720267800017],[66.6612925290001,33.11898778600005],[66.63391857400006,32.97677622600003],[66.56816053200004,32.94225820800017],[66.47197752200009,32.83407650400005],[66.44300061200005,32.69032485200012],[66.55241361800012,32.661901819000036],[66.61788952500012,32.727914],[66.89484353200015,32.796739651000166],[66.98740354800003,32.87603329300015],[67.00002250300008,32.948499205000076],[66.87067448200003,32.97844003400019],[66.87757161500008,33.039061310000136],[67.00511953799997,33.08204387700016],[67.03554551200017,33.155710748000104],[67.11799661700019,33.17130544700012],[67.16413161800011,33.102806355000155],[67.30375652300012,33.13515044300004],[67.37762455900008,33.293390715999976],[67.21833051300007,33.30411754100015],[67.14905559200008,33.37105542],[67.12023156800012,33.459344688000044],[67.34143854200016,33.51438127000006],[67.43984962900004,33.50240755400006],[67.44424459600015,33.393847658000084],[67.48774751200011,33.34665821400006],[67.58280952600006,33.34734418900007],[67.62467947900006,33.284285120000106],[67.7219466040001,33.23785842800015],[67.79588354000009,33.26433568700003],[67.90779854300007,33.40509332300019],[68.0079956460001,33.39323779100016],[68.01245850700013,33.56111373300007],[68.08631849700015,33.71935434200003],[68.01653261500007,33.717508480000106],[67.94831062800017,33.61550625000001],[67.8926006440002,33.616043362000084],[67.9237675780002,33.785724431000176],[68.08083354700017,33.89515319500009],[68.18363155500015,33.93503915100018],[68.2719265230001,34.019771811000055],[68.22600559500006,34.10117970400006],[68.12234458700004,34.15576617800019],[68.06888564700012,34.05046784900003],[67.92879454000013,34.05103714800015],[67.81018055200013,34.02297688300018],[67.80612153200002,34.201735720000045],[67.82580559300004,34.24603458200016],[68.04039757000015,34.369372108000164],[68.11108350000006,34.37844317100013],[68.21170858300013,34.31935175900014],[68.40789758800008,34.32973039900014],[68.51068151400017,34.28224255900011],[68.67150157000015,34.317451582],[68.49523953400006,34.46596583000019],[68.51522048300012,34.56613996700008],[68.66050753100006,34.5816805180001],[68.70567358400012,34.47730621000005],[68.80928061300017,34.481437315000164],[68.81482658300007,34.65511973700018],[68.85859654600006,34.8098964400001],[69.00595057200013,34.954477900000086],[68.94977555900016,34.98792387300011],[68.60488153300014,34.785605182000154],[68.48870064400012,34.810705629000154],[68.26280248600006,34.647928902],[68.23436755000012,34.747700372000054],[68.27166752200009,34.79461908100018],[68.46183060900006,34.89769050600012],[68.41601562900007,34.94902698100003],[68.25910958700013,34.911220071],[68.23769348900004,34.96849663300014],[68.45272048600009,35.04460146400015],[68.73943354300002,35.17997423000014],[68.91969257300008,35.232245957000146],[68.97206857200018,35.33174551800016],[69.4032365220001,35.44136974800006],[69.35214261900018,35.47426704200012],[69.34095764000011,35.56446369600019],[69.09925858800011,35.53798627000003],[68.91873150400005,35.44415857500019],[68.75035063700005,35.394060778000096],[68.68383755300005,35.39822289500012],[68.57679763100009,35.29073839800003],[68.38065355300006,35.38205319800011],[68.2706526410002,35.386085229],[68.11647759000016,35.29689926500009],[68.07790356900006,35.1582268790001],[67.98186456000019,35.034297926000136],[68.07981849800012,34.89481752500018],[67.96855158400018,34.80709671700015],[67.91369655300014,34.71316223700006],[67.73723553100007,34.68835582700018],[67.37252853000007,34.70527419500007],[67.27777061100016,34.76046383100015],[67.25831554400008,34.81643834800008],[67.31941961800015,34.91796079800008],[67.4494785920001,34.96970949500013],[67.5781555580001,34.95977677200011],[67.74623853300017,34.97971916300003],[67.80455763600014,35.03092186300012],[67.79220556100017,35.16042478200018],[67.47827948200012,35.11488187800012],[67.41857149700019,35.16241565100012],[67.42001352000005,35.252745243],[67.36941549100015,35.3137827650001],[67.24984764200019,35.33721940400011],[67.24675757000017,35.391437074000066],[67.35647550900006,35.41889820100016],[67.53027360100009,35.50134327100017]]]]},"properties":{"objectid":276,"eco_name":"Ghorat-Hazarajat alpine meadow","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Palearctic","eco_biome_":"PA10","nnh":4,"eco_id":752,"shape_leng":63.1071704144,"shape_area":6.50954678192,"nnh_name":"Nature Imperiled","color":"#BA3D4D","color_bio":"#D6C39D","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":66646.10528893958,"percentage":1.3647747414723115}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[128.7077789790003,-23.50638953899994],[128.48916620400007,-23.540424423999923],[128.48883059200034,-23.49331661899987],[128.5872954910002,-23.38825030099997],[128.44717404200014,-23.334075881999922],[128.50280758300016,-23.273708408999937],[128.4990845090001,-23.203237557999955],[128.56948847300032,-23.184232766999912],[128.58296204700014,-23.11692239599995],[128.44300840400012,-23.063440321999906],[128.3233185140001,-23.079768938999962],[128.14920040200013,-23.054922127999816],[127.90939331300001,-23.068891575999942],[127.8209000290002,-23.031393120999894],[127.84574130700003,-22.97004882099992],[127.78819267000017,-22.92597191199991],[127.65759256000001,-22.960803916999964],[127.50581356000009,-22.899429441999928],[127.40383144600014,-23.0088520029999],[127.2973175730001,-22.98877549999986],[127.27327727000022,-22.913715389999936],[127.49803917700001,-22.72023960699994],[126.81255322000015,-22.26196106199984],[126.7291946910002,-22.24283020699994],[126.56130215200005,-22.26320258899989],[126.23552708000011,-22.184503559999882],[126.13401787300006,-22.098300881999876],[125.84068294600013,-21.999271377999946],[125.84317019200023,-22.093275092999875],[125.6615982200002,-22.07835966399989],[125.5527649070001,-22.145317155999976],[125.33888237500003,-22.18793661899997],[125.19293969400007,-22.187168165999935],[125.14486696500023,-22.231029491999834],[125.06974767800034,-22.220439962999933],[124.91085059900001,-22.28396992799992],[124.84764870100014,-22.285085725999977],[124.47052005500007,-22.431575745999965],[124.44489289000012,-22.492742516999897],[124.57827763600017,-22.575386237999965],[124.60913108600016,-22.625869936999834],[124.54585274600015,-22.68402676599993],[124.602668805,-22.760961573999907],[124.7707672040001,-22.839397412999972],[124.78398898600005,-22.93256779799998],[124.69248961600022,-22.909646980999923],[124.49050905100012,-23.034959786999934],[124.60032639900021,-23.103109519999975],[124.54265588800013,-23.19205291299994],[124.403488132,-23.262142219999873],[124.47514351400002,-23.384971633999953],[124.38129419400002,-23.529189989999963],[124.45192715100018,-23.580858219999925],[124.41574867800011,-23.674610142999825],[124.34825893400034,-23.721931518999952],[124.36781307600017,-23.78017417799998],[124.24119571100016,-23.810173008999982],[124.33651739700008,-23.871780332999947],[124.36683658400023,-23.939001016999953],[124.24334717800025,-23.97417064499996],[124.26290886400022,-24.10301591999996],[124.13898460500002,-24.159664173999943],[124.19955458400011,-24.24284366699993],[124.34762576500009,-24.278051348999895],[124.44391639800017,-24.27916144799991],[124.48831936300019,-24.334535651999943],[124.39795691400013,-24.38146408399996],[124.36440281600028,-24.50302883799992],[124.29664619200025,-24.537296236999964],[124.12416841700019,-24.55130943899991],[123.9785308380001,-24.63426396099993],[123.94883744300023,-24.721353275999945],[124.0363922900001,-24.773931277999964],[124.05702970900018,-24.85548401099993],[123.92761999700008,-24.97736928899991],[123.94920356500018,-25.06502153199989],[124.05857080600003,-25.120408980999912],[124.06040962800012,-25.156598852999878],[123.9337310750002,-25.212161986999888],[123.92276000100014,-25.31310843199998],[124.03105167600017,-25.395492481999895],[124.11835473000008,-25.49132345099997],[124.12193296400005,-25.547182129999896],[124.18964382200022,-25.62156112699995],[124.23836514300024,-25.806690211999978],[124.41587826300008,-25.94207387399996],[124.47073362800006,-26.00215904399994],[124.4481506010003,-26.09193609999994],[124.50002284800007,-26.19694139799998],[124.66019447900021,-26.297113354999908],[124.71051791800005,-26.3062534849999],[124.81297310500008,-26.39981647999997],[124.87607576000005,-26.35560797499994],[124.95856475200003,-26.41653250899998],[125.14910133700005,-26.45153801899994],[125.21591952200015,-26.639968901999964],[125.45190429500019,-26.7380733789999],[125.43913262100023,-26.767860483999982],[125.58015445500007,-26.88368983599986],[125.61959080600013,-27.033603694999954],[125.6900405350001,-27.112766243999886],[125.71503436500007,-27.202753015999917],[125.78909300500004,-27.20619009899991],[125.86544040800004,-27.29973414999995],[125.97116856200034,-27.235498429999893],[125.92266081100001,-27.186080907999894],[126.00966647500002,-27.109638285999893],[126.16058348100012,-27.09123045299998],[126.21934514700001,-27.11483188099993],[126.34594725800002,-27.1041239999999],[126.33657830200002,-27.05541223399996],[126.40270229700002,-26.94177441399995],[126.58272546100011,-26.927337591999958],[126.603538565,-26.854124014999968],[126.55352777200005,-26.72564704099989],[126.69031523500007,-26.690017748999878],[126.7497332050001,-26.603822615999945],[126.84587866400011,-26.59191511699987],[126.96060160500008,-26.536851879999915],[127.06678774500006,-26.52819253599995],[127.16462701900014,-26.444026995999934],[127.22476197700018,-26.357976869999902],[127.19404599000006,-26.334978099999887],[127.01128395600006,-26.334150303999877],[126.85314946200003,-26.367151197999874],[126.64968094200003,-26.286756507999826],[126.58111580000025,-26.18807803899989],[126.50399022100032,-26.182769779999887],[126.5029602530002,-26.030387952999888],[126.53862776500011,-25.984540954999886],[126.49514764800006,-25.896383281999874],[126.5847625990001,-25.86388396199993],[126.69277197000008,-25.73791502099988],[126.88011169700007,-25.639057177999916],[126.88797761000012,-25.531400684999937],[126.81459052800017,-25.43969914299987],[126.88097386000004,-25.33850677199996],[126.91504663100011,-25.19382087499997],[127.00331092100032,-25.034341755999947],[127.26100163800004,-24.90984333699987],[127.30435183500015,-24.759532845999956],[127.2787094140001,-24.563835188999974],[127.37108620100014,-24.502885843999877],[127.44333653100023,-24.419473669999945],[127.51731101700011,-24.395038577999912],[127.54170989900001,-24.30990593399997],[127.70086665000008,-24.23963541099988],[128.03611763100014,-24.029638225999975],[128.16326909100007,-24.03935050499996],[128.25242622100006,-23.953092506999894],[128.43893429600018,-23.884376658999884],[128.41828916500003,-23.81262404699993],[128.466827426,-23.7768477379999],[128.43940737000003,-23.69186596799983],[128.578018401,-23.699008858999946],[128.7077789790003,-23.50638953899994]]]},"properties":{"objectid":277,"eco_name":"Gibson desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Australasia","eco_biome_":"AU13","nnh":1,"eco_id":209,"shape_leng":28.3896751293,"shape_area":13.9094866012,"nnh_name":"Half Protected","color":"#CF5167","color_bio":"#CC6767","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":156985.46558834173,"percentage":0.595043598988817}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[71.36583752700011,42.77154709100006],[71.2831876030001,42.87319644300004],[71.15660862700014,42.95979407600015],[71.06333162300007,42.98032387100017],[70.82997156000016,42.9796449370001],[70.66909752400016,43.0100866680001],[70.61833956800007,43.055793522000045],[70.594383586,43.1872819460001],[70.42720049200005,43.34066306200009],[70.28717057400007,43.41180295700019],[70.18752248499999,43.51869049500016],[70.09957151000003,43.539041421000036],[70.00714862300003,43.62600098400003],[69.72213759500016,43.77430048800005],[69.59342961600015,43.77098578100015],[69.48539761300009,43.64946092500003],[69.46468358300001,43.58879237500008],[69.52406350000018,43.513574517000166],[69.43486764500005,43.403650886000094],[69.51051348300018,43.242533440000045],[69.66697662600018,43.14873793100014],[69.73404660300014,43.03563353600015],[69.7584764980001,42.91193407900016],[69.7094425320002,42.77884504700012],[69.80184161500017,42.50338670700012],[69.7806166250001,42.384208280999985],[69.6566165930002,42.254277382000055],[69.52140056900004,42.236558374000026],[69.47508954800008,42.18641078900009],[69.30042258800017,42.134569053000064],[69.24109648300004,42.053991638000184],[69.25582164300016,41.97564246900009],[69.123413557,41.83312245399998],[69.15923362000018,41.73693223600014],[69.28666654400013,41.650674909000145],[69.34126257300005,41.440406821000124],[69.53240952900018,41.303006138000114],[69.52114056300019,41.08390721200004],[69.57533258400008,40.94355861300005],[69.54528849000008,40.86958161200005],[69.4154965640002,40.828612043000135],[69.32359352100002,40.766741695000064],[69.27913657800008,40.68542164399997],[69.34033151200003,40.55912580900008],[69.36637861100019,40.412406629000145],[69.42784159800004,40.37164710999997],[69.57494349600006,40.358116371000165],[69.71278355900017,40.38711105100003],[69.91874653400004,40.37310824300016],[70.04567754900012,40.407855590000054],[70.19274156100016,40.504465407000055],[70.38308754200006,40.55191586300003],[70.52897657800008,40.642501941000035],[70.66512249000004,40.801321237000025],[70.84467358500007,40.91080213600003],[70.97106950000006,40.95676866000014],[71.22973654100014,41.020377918000065],[71.46173856900003,41.05179949300009],[71.74909250600007,41.113909899000134],[72.11338762000003,41.16099842500017],[72.21697956200018,41.11936886500007],[72.34932763400019,40.979218247000176],[72.52422358700011,40.983700218000024],[72.62198658600016,40.94760975500003],[72.59436754400008,40.8337997700001],[72.46172359100018,40.778113423000036],[72.23200261400012,40.607583435000095],[72.08077950200015,40.470766971000046],[71.93592864800002,40.44552537200008],[71.62993654400003,40.44156542600018],[71.3318095140001,40.34893852200008],[71.17463659200007,40.370056057000056],[71.02667957200015,40.45100713700003],[70.84953358000013,40.35770817200006],[70.56459061400017,40.30969696600005],[70.306861508,40.23129784100013],[70.07688153100014,40.2016471930001],[69.81108853100017,40.08764962200013],[69.61701964400015,40.14366001400009],[69.51979057300002,40.133658056000115],[69.09271953000012,40.15360883000011],[68.95176659700019,40.03630107700013],[68.76473951400015,40.017841612000154],[68.72604362000015,39.9762960380001],[68.41686253700016,39.94833132700006],[68.16899859600011,39.890202996000085],[68.02242257800009,39.92282284900017],[67.80756355400018,39.925946784000075],[67.67791764000009,39.74378623500019],[67.55529760500002,39.687107806000085],[67.66536758400014,39.47469680000006],[67.5053485030001,39.411377557000094],[67.14201361900018,39.42916932000003],[66.8150635720001,39.51990828300012],[66.66310855200015,39.49199671300016],[66.6594464980002,39.42704853100014],[66.75272350200004,39.28539939600017],[67.01757856700016,39.17850196699999],[67.13127154000017,39.067129943000054],[67.09732852000013,38.98254698500017],[67.00773653600015,38.90920734300005],[66.85565159700008,38.856348045000175],[66.76242857300002,38.781970221000165],[66.84435262400018,38.629392593000034],[66.9505085890001,38.4977838050001],[66.93112962900017,38.409905250000065],[66.61711151700007,38.22611643200014],[66.68681358000003,38.07069029900015],[66.75827064600003,38.050990647],[66.84722158200003,38.0882599410001],[66.92813159000019,38.05639261600015],[67.00640062800011,38.07722030399998],[67.12212353100006,38.04169092500007],[67.23140762300011,37.97285186300019],[67.31426256800012,38.03426003300001],[67.46269953500007,38.01115129300007],[67.54229760900017,38.085941004000176],[67.65634161600013,38.095480951000184],[67.70739763200015,38.16499844400016],[67.72528863700012,38.296275476000176],[67.84015658500016,38.391336652000064],[67.87924961400006,38.47250448800003],[67.96250152600015,38.51567464200008],[68.1677325930001,38.44857465700011],[68.19376359900008,38.40717442600004],[68.03449251900014,38.18621924400003],[67.95865657900009,37.995232550000026],[67.9793925690002,37.910002006000184],[67.91779362800008,37.746336126000074],[67.95124848600005,37.54585106000002],[67.92903158100012,37.48149028200015],[67.94345851200018,37.28835581000004],[67.85269155300006,37.16514350900019],[67.89328762500008,37.089759018999985],[68.04212960600012,37.00857659800016],[68.17356857700014,37.03950096000017],[68.46310449100014,37.24491492000004],[68.5429075850002,37.37338418200005],[68.64629349900014,37.688796373000116],[68.65563948900018,37.88201466400017],[68.75549360500014,37.91257307100017],[68.74764261100017,37.783547586],[68.80917349200013,37.74036620000015],[69.03262363100004,37.71616580099999],[69.07232652800013,37.655146719000015],[69.04579964800018,37.53035912400003],[69.0812835970001,37.46868055400006],[69.24133251800009,37.306334657000036],[69.31153162800007,37.11488930600018],[69.40998864699998,37.17320723500018],[69.4119265430001,37.29459680700012],[69.38114953600012,37.444220820000055],[69.51220662700013,37.57487222700007],[69.65914960400005,37.56903557200002],[69.91804463300014,37.60986767800006],[69.95864053700012,37.563004458000194],[70.13499460700007,37.52697535000004],[70.28637664000007,37.70026700700009],[70.23414648600004,37.82298259600009],[70.15914957500007,37.91602909700015],[70.33331261500001,37.99918059400005],[70.46415764400012,38.109110596],[70.52063759000004,38.19776313600005],[70.59297961700014,38.17879623000016],[70.61353254700015,38.06829441499997],[70.62918055400019,38.13600426700003],[70.723541506,38.30279123300011],[70.78399648500016,38.19085410100013],[70.83751661400004,38.164392600000156],[70.90393062300012,38.25194593700007],[70.96819249600009,38.254851943000176],[71.06105057200006,38.14224107400014],[71.20671849400014,38.169263492000084],[71.15124555,38.0366138390001],[70.99945850300003,37.898890452000046],[70.99542261700003,37.84419249900003],[71.08071854000008,37.778336724000155],[71.18543952400006,37.80259428700003],[71.28378255000018,37.89220337000012],[71.39157851900012,37.90535625200016],[71.44864653900004,37.85187116100013],[71.46179154300017,37.75965983200007],[71.38304155000009,37.48077731700005],[71.32503559500014,37.41240764100007],[71.36520351900009,37.30483463100006],[71.31927454600014,37.13845301499998],[71.33545664800005,37.05074276800002],[71.47410556400018,36.79942498000014],[71.47884351900007,36.745173112000145],[71.56139353000009,36.76538674200003],[71.58561656000006,36.966382601000134],[71.51654850400007,37.13654881400009],[71.51721151300012,37.29395575900003],[71.59224664500005,37.323168200000055],[71.64864361100018,37.25631648800015],[71.74507858000015,37.28184424400007],[71.69373355600015,37.49402508300017],[71.85545349300008,37.60319199500009],[71.9056926090002,37.6771465330001],[71.8448565880002,37.74292117100009],[71.70596359100017,37.68688144300012],[71.59200256400015,37.716631835000044],[71.58838661100003,37.90659224800015],[71.64095254400002,37.95537324800006],[71.80269662100017,37.985863762000065],[71.86196857900018,38.05046074300003],[71.75846062400018,38.08912193600014],[71.61476161100006,38.03543098500012],[71.49195851500002,38.028485069000055],[71.4085926090001,38.094328942000175],[71.44370255700005,38.31673687600011],[71.52996860200005,38.35061552200017],[71.53031158900012,38.453072722],[71.48358164100006,38.49471284300017],[71.29415163500005,38.46931550900007],[71.19865460000011,38.50707179200003],[71.16381857200008,38.61949289500018],[71.24623849700004,38.67427902600019],[71.33197748800012,38.7381739380001],[71.34595464600017,38.79920794000009],[71.35829163400007,38.906571403000044],[71.22458653200005,38.87108376600003],[71.21339451200004,38.94961951600004],[71.1268235340001,38.98833401800016],[70.97102356700009,38.98944395000012],[70.85439257000013,38.953529674000094],[70.68231159500004,38.84109717200016],[70.45909162200013,38.858877032000066],[70.36356357400001,38.95910632199997],[70.20319362700008,38.95354040300015],[70.19991261400014,39.03643323400013],[70.46334057600018,39.07069258700017],[70.60121148400009,39.12527604400009],[70.71695752100015,39.08743460100004],[70.86872864200006,39.140183594000064],[71.10151655700008,39.116163071000074],[71.19731148400018,39.059904910000114],[71.48688562000012,39.136277627000084],[71.50000748900004,39.136162626999976],[71.61633254700018,39.13986675800015],[71.67458358900012,39.24310230100019],[71.91322358100018,39.28278256600004],[71.99954964000017,39.31891896200017],[71.989517508,39.47403697700008],[71.88745861700016,39.51835612200006],[71.79061863400011,39.5014984390001],[71.65173351500005,39.41809950800018],[71.55016362400016,39.414788656000155],[71.44856255200006,39.46893675600006],[71.33223749400014,39.46160896100008],[71.16678660400015,39.415360637000106],[71.06268353400003,39.32879083200004],[70.95684054900005,39.30774521500018],[70.79067954400006,39.32237096500006],[70.6134266000002,39.22191653800007],[70.51101650600015,39.218212407000124],[70.42430856800007,39.16634418400014],[70.31659658600012,39.19428274400019],[70.25919362500008,39.282339666000155],[70.16211660100004,39.29539028900018],[70.0607606160001,39.250846173000184],[70.0357976320002,39.177699987000096],[69.95113353700003,39.150254618000076],[69.90209152400007,39.0340453980001],[69.78595757400018,38.99350682600004],[69.72499850600019,39.05070409500007],[69.51828753000012,38.937824837000164],[69.45480349900004,38.943130582000094],[69.39909351400013,39.08078154900005],[69.29060352400006,39.096143230000166],[69.21233364700015,39.034148160000086],[69.09203355500011,39.0110355650001],[69.06822157400018,38.92713606700005],[68.99054748300011,38.88879556500012],[68.93328852300004,38.94607581500003],[68.88955661400018,39.063772823000136],[68.80058254400018,39.08167455700004],[68.68196855600007,39.025523517000124],[68.65573152200005,38.936126664000085],[68.58345051600014,38.910237144000064],[68.43814050100013,38.914918102000115],[68.35452263500014,38.858946099000036],[68.21172350300014,38.859646994],[68.16069062100007,38.970340419000024],[67.99275952600016,39.01475847100011],[67.83601357800012,38.986445911000146],[67.9127505720001,39.099252414000034],[68.03658263000017,39.13513668200011],[68.15778360900003,39.22735253700017],[68.33821061300017,39.31405527900017],[68.38155360200017,39.22683755300005],[68.24929052300018,39.11684200500014],[68.23406948900003,39.04815499100005],[68.33595252800012,39.027335517000154],[68.59529850299998,39.170033395000075],[68.79530362200006,39.153622467000105],[68.9084775870001,39.17507628300007],[69.27863349600017,39.14745858300006],[69.40249656700007,39.229682371000024],[69.28106659500014,39.268263936000096],[69.58336663800014,39.393460903],[69.86797349000017,39.40441990700015],[70.0500026110002,39.44702914400017],[70.23709859300016,39.41900743600013],[70.39389751400006,39.434998263000125],[70.39082353499998,39.504356500000085],[70.21025051900006,39.53896588100008],[70.05845659900012,39.542658948],[69.96697952500017,39.59065523400005],[70.0074465150002,39.65404622700004],[70.12859351500015,39.677526117000184],[70.44445061700014,39.70010478500012],[70.61287657900004,39.76590674800019],[70.73210160800005,39.735386059000064],[70.88343854700008,39.7786445590001],[70.95127060700014,39.69213963000004],[71.13957961700015,39.81349500300007],[71.3600235030001,39.83310178400012],[71.4526064850001,39.89107706100003],[71.62441253399999,39.910531794000065],[71.66929662000007,39.94845722300005],[71.83683058000008,39.99370290400009],[71.97458648900016,39.957311195000045],[71.91256761400018,39.839193751000096],[71.9692765530001,39.769023810000135],[72.23515353900012,39.802165352000145],[72.24643759300011,39.860563581000065],[72.17862648700003,39.92734253900005],[72.16246064600017,40.00671061200006],[72.23200948800013,40.056942017000154],[72.34322359600014,40.07326476800006],[72.48578652600014,39.98777086400008],[72.67608657400018,40.03310036400006],[72.75306664300012,40.01927257100016],[72.85256955699998,39.936131467000166],[73.03093762999998,39.941396476000136],[73.07009151200009,40.05938282700015],[73.13881658000008,40.12057826400007],[73.28943653000005,40.094088600000134],[73.35825363200007,39.96952094600016],[73.4641795980001,39.926549778000094],[73.57740050200005,40.003479724000044],[73.6126095250001,40.222996739000166],[73.57673648800017,40.28643902900012],[73.38085157800003,40.499715550000076],[73.26702851800019,40.55602383400003],[73.2522964850001,40.635574968000185],[73.33747053500008,40.65282492500006],[73.44111662400019,40.60503449800012],[73.76431258500014,40.49531370900013],[73.8651586150001,40.48485376500008],[73.8966526100001,40.385283796000124],[73.9902196270001,40.35982527400006],[74.08759353800008,40.25853852299997],[74.33390850300003,40.25461663100003],[74.44217654100004,40.319786766],[74.42948164600006,40.402247594000016],[74.22509748599998,40.54291302900015],[74.13757348500019,40.642254004],[74.15045160900007,40.69319133300007],[74.00626359600017,40.84077669900017],[73.87465665200006,40.781882597000106],[73.80239056500005,40.84491987400003],[73.83827952700011,40.92281893500018],[73.81701665100013,40.988243210000064],[73.71221955900012,41.035049769000125],[73.66589361800004,41.10214925100013],[73.48230764300013,41.26487535100006],[73.32700355000009,41.36258755500006],[73.17955061800018,41.38774533500009],[73.06195855100009,41.45964781500015],[72.9618526430001,41.38499523200005],[72.82808652100005,41.36854658600009],[72.76448061600013,41.45672571600005],[72.772247623,41.517085309000095],[72.86270160200013,41.55835277200015],[73.22384662899998,41.58777459300012],[73.5158764950001,41.69229273500014],[73.72917162300013,41.765431042000046],[73.73362761000016,41.882553220000034],[73.60637657400014,41.94837144400009],[73.36338754700006,41.98802119900006],[73.10211155500008,42.04963975400017],[72.98977661800012,42.049330797000096],[72.90104662900018,42.12113018000019],[72.79604351100016,42.16151988900015],[72.7018966330001,42.08038943600013],[72.57644653199998,42.05957281200011],[72.41204857700018,42.09626945500014],[72.23338361700007,42.04331074700008],[72.17194359600018,41.98530127100008],[72.17340858500012,41.82881248000007],[71.85294361600018,41.831421599000066],[71.5781405730001,41.74011333600009],[71.42598757300016,41.60479237100003],[71.21602659700011,41.53220307800012],[70.9668425070002,41.52674411200019],[70.88948055800006,41.39377611400005],[70.79963661400006,41.39346732500013],[70.7096325760001,41.31040719100008],[70.53436262100013,41.338257740000074],[70.5181575530001,41.434463884000024],[70.72295359900016,41.544443841000145],[70.9719775960001,41.62026419100016],[71.30690755000006,41.84682133400014],[71.67127257000016,41.964110311000184],[71.69978361300008,42.02900987900006],[71.63725260400014,42.07641859400019],[71.44669355600018,42.06861353300019],[71.37212361900015,42.08875843100009],[71.16761054500006,42.047830939000164],[70.98632858700006,41.975531325000134],[70.86692049800001,42.00039221700007],[70.88353762100013,42.06944870600012],[71.04438751600003,42.17831990500014],[71.02159158900008,42.24281043600007],[70.89668262400016,42.24133823800008],[70.81249260900017,42.272858050000025],[70.80416854100014,42.3648304940001],[70.85266858000017,42.393707324],[71.07407353500014,42.39784630800017],[71.12140664499998,42.581805278000104],[71.32582064400015,42.72314612700012],[71.36583752700011,42.77154709100006]]]},"properties":{"objectid":278,"eco_name":"Gissaro-Alai open woodlands","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Palearctic","eco_biome_":"PA08","nnh":4,"eco_id":730,"shape_leng":68.2981184051,"shape_area":17.7634116643,"nnh_name":"Nature Imperiled","color":"#FCFA58","color_bio":"#FEFF73","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":168398.81523129126,"percentage":1.5893731293554938}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[79.63588756500008,10.324994512000046],[79.70854156600006,10.276147966000053],[79.86873650000018,10.280316454000172],[79.87071965800016,10.324874316000034],[79.72786755300012,10.293525663000025],[79.63588756500008,10.324994512000046]]],[[[80.00081651800019,14.202280535000114],[79.99797052700018,14.131104263000168],[80.05715162500013,13.934938392000163],[80.12613653200009,13.808485647000055],[80.10948957000011,13.712653169000134],[80.13157655500015,13.594439836],[80.21785751900006,13.477468868000074],[80.23645763300004,13.338627000000145],[80.21211960400007,13.22039472400013],[80.23338365400014,13.126071156000023],[80.29708863300004,13.12396226900006],[80.34792353400019,13.29410099],[80.33830261800011,13.374534571000083],[80.23681654600017,13.636178025000106],[80.25817162400011,13.77625890600018],[80.16171251400004,13.978505513000073],[80.12876157700015,14.20160981500004],[80.17339353500012,14.347761205000154],[80.19862356600004,14.573885172000132],[80.11459364600017,14.696058451],[80.05001862500006,14.641971874000149],[80.05571764900014,14.453544176000094],[80.00081651800019,14.202280535000114]]],[[[81.15148150500005,15.998774682000146],[81.09156062000005,16.014932645000044],[80.94737964800015,15.93385784800006],[80.87747960500013,15.838403729000106],[80.6783825820001,15.891820424000116],[80.59207161000018,15.966814653000085],[80.26648764500015,15.763518464000072],[80.17062365100008,15.772219048000181],[80.13124865500004,15.56286140200018],[80.09185756600016,15.471247368000093],[80.15309860000019,15.400367648000099],[80.2045135300001,15.463008795000064],[80.24575064900012,15.617577963000144],[80.36833162500005,15.767758366000066],[80.55294052800002,15.868191839000076],[80.74432351700005,15.87677239300001],[80.81186657000012,15.836054951999984],[80.81247761000003,15.718093578000037],[80.93109159900013,15.707707227000128],[81.01236756100013,15.74780742500019],[80.99176065200015,15.823134751000055],[81.15148150500005,15.998774682000146]]],[[[82.25858255600019,16.890838510000037],[82.22641750500009,16.81749417499998],[82.29497560600004,16.70250318],[82.23525957500016,16.61404778200017],[82.12247453000009,16.532227834000025],[81.82613351600014,16.42165795900013],[81.62931050400005,16.40175596800003],[81.49219564400016,16.434927014000152],[81.31748962400002,16.412812369000108],[81.3265226330002,16.37334986500008],[81.7612606030001,16.326273744000105],[81.95014964100005,16.396038336000174],[82.18359352400017,16.508641327000078],[82.275573512,16.571907429000134],[82.34658063700016,16.708040098000026],[82.36766062100008,16.855819589000077],[82.25858255600019,16.890838510000037]]],[[[86.96569861900008,20.773228776000167],[86.86322750600004,20.773499847000096],[86.74234051299999,20.70092010900015],[86.59880058800007,20.431667059000063],[86.52078250400012,20.31835361900005],[86.17105061100011,19.99329302000018],[86.11863756500009,19.911356731000126],[86.20313251300018,19.886469184000134],[86.40162654200009,19.970183275000068],[86.38481864700003,20.004902291000178],[86.49738358300004,20.12851424100012],[86.53347052600014,20.201480049000054],[86.65505254599998,20.25565698300005],[86.76450360600018,20.330243852000024],[86.71439357100013,20.395379286000093],[86.72834055499999,20.452905964000138],[86.80637355900012,20.538461055000084],[87.00125163500007,20.667394005000176],[86.96569861900008,20.773228776000167]]]]},"properties":{"objectid":279,"eco_name":"Godavari-Krishna mangroves","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Indomalayan","eco_biome_":"IN13","nnh":4,"eco_id":316,"shape_leng":16.5759477632,"shape_area":0.591342978906,"nnh_name":"Nature Imperiled","color":"#E600AA","color_bio":"#CC6767","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":7019.193530811346,"percentage":0.026605814525056146}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[103.34910555300007,46.41224065300014],[103.22539553500013,46.38772760900014],[102.9486235830002,46.40914756300015],[102.98482552600018,46.264017089],[102.93005364400017,46.18929393100018],[102.50904053800008,46.02225534100012],[102.24060053300002,45.88834789900005],[102.06291960800007,45.848438976000125],[101.81732967700003,45.89011799000002],[101.70646660300014,45.98214810200011],[101.58770760700003,45.96318907500006],[101.49460561800004,45.99850136200013],[101.27572663300009,46.20778776200012],[100.928871577,46.35325435000004],[100.78847453100019,46.4341185940001],[100.46134159000007,46.670260611000174],[100.26726566300016,46.75627117500011],[99.93353264400014,46.82765548599997],[99.73019354000019,46.909202854000114],[99.65536460200013,47.011586293000164],[99.3438496620002,47.042855486000065],[99.05282562500008,47.05038159700007],[98.67315659100012,46.85469047700019],[98.4825896640001,46.7944101760001],[98.26786760000016,46.80935645000011],[98.08370159700007,46.686900868000066],[97.96461453400008,46.68364282200014],[97.69068857300016,46.80271127700013],[97.49111160300009,46.91113270400007],[97.14984157700007,46.975667156000156],[97.04972058100009,47.03529031500017],[96.83062752300015,46.85547636400008],[96.57118264100012,46.39249959500012],[96.82351665100009,46.318128141000045],[97.01807353200002,46.22103603000011],[97.18135853800004,46.19704165900015],[97.38346064100006,46.12550865300011],[97.48670959500004,46.04472822900004],[97.65256466000017,45.98795407800003],[97.67971766800008,45.921822036000094],[97.52397151300005,45.92338190800001],[97.0524906330001,46.07063753000017],[96.71382855200017,46.11434261700009],[96.57740067200012,46.165158576000124],[96.4852146570002,46.13989350800006],[96.45538363100019,46.078446446000044],[96.32733966600006,46.09458647100007],[96.3026655230002,45.998242194],[96.19020854500019,45.888599859000124],[96.41653451600001,45.78306985400013],[96.60819964000007,45.76625072700017],[96.80750252200016,45.77830155700019],[96.94299364000017,45.70111043200018],[97.2384875790001,45.577182149000066],[97.36701953800014,45.507041042000026],[97.49642153900015,45.47858029000008],[97.65425864300005,45.481387221000034],[97.86775158400019,45.425666173000195],[98.1861495760001,45.27635882900012],[98.45501655500016,45.112349962],[98.44121558400019,45.018481866000116],[98.22773756200013,45.01626082900009],[97.89564555200013,45.14787984300017],[97.64945262700013,45.21678093200012],[97.53547651300005,45.22094975500016],[97.4533085490001,45.11310466800012],[97.33284752400016,45.10983170300011],[97.16466564300009,45.187308986000176],[96.88292657500017,45.22379574600018],[96.9740985480002,44.90044673200009],[97.63600151700007,44.59333396700015],[97.84037058900014,44.517639179000184],[98.25669066700004,44.31326641800007],[98.73734252400004,44.006706859000076],[98.82817067000013,43.99157014800011],[99.5784306330001,44.041892747000134],[99.95689351100009,44.07973871700017],[100.274810549,44.07973871700017],[100.63813755400008,44.125156562000086],[100.82736957900016,44.132724582000094],[100.97875965900005,44.163001693000126],[101.36778256100018,44.19214238500018],[101.86727157100012,44.12403053700007],[101.99594853700012,44.12403053700007],[102.07163963800019,44.16944855000003],[101.98838051700011,44.30569839800006],[101.96567561800003,44.396530065000036],[102.01108558400011,44.48736123000009],[102.08678456300015,44.48736123000009],[102.2457356220001,44.419238150000126],[102.75288351300014,44.25271236500015],[103.01781451800014,44.214866395000115],[103.479545568,44.245143338000105],[103.64673654100017,44.20796155100004],[103.90608251600008,44.31406018500013],[104.04233554900014,44.42002822800015],[104.2088546290002,44.647108905000096],[104.25427264200016,44.87419075500003],[104.32239555400008,45.01800879100011],[104.32239555400008,45.26022701800008],[104.25943757100003,45.49489935200012],[104.2391355950001,45.57057117400012],[104.102889603,45.71438971300017],[103.94393167100009,45.82793080600004],[103.85309564500005,45.92633518800011],[103.61087758600013,46.107998522],[103.46706357300013,46.19126284000009],[103.36865952700003,46.32750832900007],[103.34910555300007,46.41224065300014]]]},"properties":{"objectid":280,"eco_name":"Gobi Lakes Valley desert steppe","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Palearctic","eco_biome_":"PA13","nnh":2,"eco_id":825,"shape_leng":25.8132900767,"shape_area":16.0621912504,"nnh_name":"Nature Could Reach Half Protected","color":"#D16B54","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":139699.9905431919,"percentage":0.5295240858125527}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-111.73424774699998,42.03614508000004],[-111.80449479099991,42.066114262999974],[-111.80077426499992,42.16566833600007],[-111.85854739699994,42.27945730000016],[-112.03518611599992,42.33968930900011],[-111.99152277299987,42.15656046600003],[-111.99899496599994,42.060809463],[-112.07814485399996,42.07518269400009],[-112.15191921899998,41.90953501600018],[-112.20727530199997,42.074561863000156],[-112.2332132009999,42.22220920600006],[-112.38379541499995,42.27800049000007],[-112.37592378999994,42.192168240000115],[-112.4404937079999,42.0761660500001],[-112.39764504599992,41.992855819000056],[-112.6324472789999,42.01948614000014],[-112.62006130099996,42.09334013900008],[-112.7109060649999,42.11573644800018],[-112.83273346499993,42.056213087],[-112.91927332099988,42.10695124300008],[-113.1358481339999,41.96316391700003],[-113.17247901799993,41.84601616900005],[-113.24407850399996,41.81349897900003],[-113.58093841499993,41.800363527000115],[-113.68790573499996,41.63995123300015],[-113.68269734299986,41.45496964400007],[-113.85160450099988,41.49467940000011],[-113.84443368199999,41.62318552600004],[-113.88235662099999,41.724520416000075],[-113.97879725599995,41.62962698300015],[-113.95180370499997,41.4693952020001],[-114.0379174869999,41.41734623600013],[-114.10342961099997,41.46660176000006],[-114.18293683599995,41.44740950900007],[-114.25708581299995,41.25052062100019],[-114.25326530299998,41.15435884300007],[-114.44190968699996,41.088388081000176],[-114.53088824899999,41.16721574600007],[-114.62396405099997,41.20464287800007],[-114.69960636199994,41.184819237000056],[-114.79349611199996,41.23879131100017],[-114.94896829599992,41.1754590810001],[-115.01909522399995,41.36705423700016],[-115.11997803399993,41.49746036700009],[-115.14438617999986,41.62367699800018],[-115.2726077339999,41.681561006000095],[-115.34068539599997,41.55347620000009],[-115.3923715219999,41.517475196000134],[-115.48112494399993,41.60779803500003],[-115.59776242699996,41.503540367000085],[-115.78165447499998,41.61148019300009],[-115.89503316799994,41.61741341100003],[-115.9454494499999,41.48998696000018],[-115.9291813609999,41.340302314000155],[-115.96339855099995,41.28439483300008],[-116.17635185299997,41.17284556300001],[-116.16987279699998,41.12741322400018],[-116.27118373899992,40.97061154400012],[-116.34579939399993,41.093206726000176],[-116.30002870299995,41.22255440000009],[-116.39413923899997,41.241896323],[-116.38247522199998,41.31233874600014],[-116.50596501999996,41.36187933400004],[-116.65053379699998,41.34339535400011],[-116.73314598099995,41.25784317100016],[-116.98699343399988,41.16544788300007],[-117.10336317699989,41.31797638100005],[-117.05872038399997,41.44062964400018],[-117.11172181399996,41.516720073000045],[-117.20885740499995,41.514886454000134],[-117.32782329899999,41.45452244100011],[-117.383549282,41.54463423600015],[-117.50092206899996,41.57827018200004],[-117.58489910299994,41.541899619000105],[-117.61989843799995,41.33864298400016],[-117.68470337699995,41.31732368200011],[-117.76393367599991,41.39071503700018],[-117.76922960599995,41.5648956980001],[-117.70266588899995,41.762259167000025],[-117.87437506799995,41.81073313100012],[-117.97170933799993,41.71287708800003],[-117.99481528199993,41.544569028000126],[-118.05983533199992,41.58816801800009],[-118.23803032899991,41.90603572400016],[-118.3271535159999,41.880879870000115],[-118.2690325559999,41.66695553000011],[-118.26599093499993,41.55471630400018],[-118.43103119399996,41.67586559200015],[-118.47321015299997,41.754017268000155],[-118.58530449199998,41.82870844700011],[-118.59654308199993,41.655477586000075],[-118.56023246799992,41.55369744700016],[-118.60971785999993,41.473544194],[-118.70774631799992,41.51952199200019],[-118.78942471299996,41.497932733000084],[-118.8874934829999,41.39537371400007],[-118.87756794599994,41.284574239000165],[-119.00648144099989,41.153978781000035],[-119.11751582899996,41.27157394000017],[-119.20434024499991,41.41834663700007],[-119.25861948799991,41.339252625000086],[-119.19015428599988,41.31411510800001],[-119.15713308999983,41.14852010000004],[-119.16177502899995,41.03291041400013],[-119.250270904,40.92585856500017],[-119.33494189699991,40.982016620000024],[-119.41088429299998,40.90815549500019],[-119.35810172599992,40.78648846100003],[-119.30383935299989,40.74657364900003],[-119.37176400599998,40.676499657000136],[-119.49221321399989,40.79645289200016],[-119.67095223699994,40.655879090999974],[-119.8372682129999,40.688988958000095],[-119.85396892499989,40.54458885400015],[-119.91952421899998,40.515743579000116],[-119.89566654099997,40.39182701600009],[-119.92936101699996,40.26360715200008],[-120.00448575599995,40.25981643600011],[-120.1898145589999,40.32166786500011],[-120.27653681699991,40.40516662600015],[-120.35904323999989,40.38408281000005],[-120.52683373299993,40.41508427000008],[-120.56975830299996,40.335674784000105],[-120.37814293599996,40.16846687000003],[-120.1814727819999,40.08245227600014],[-120.03992357099997,39.902521094],[-120.18145008599998,39.82376805900009],[-120.291897759,39.84376271200006],[-120.43124005799996,39.824130703000094],[-120.38398283499998,39.744566862000056],[-120.43700320099987,39.65746814700003],[-120.25067979899995,39.6691669870001],[-120.15419955099998,39.76342607600009],[-120.10384989199997,39.76708915000012],[-120.05318449499998,39.640054179000174],[-119.94229173899993,39.616789877000144],[-119.96401905699997,39.50111664700012],[-119.83867468099993,39.44894857300011],[-119.81674573299989,39.32815724599999],[-119.84736487999999,39.277236544000175],[-119.8065114129999,39.16798539000018],[-119.84482857799992,39.08922887900013],[-119.84435159099996,38.88996802100013],[-119.74152211099994,38.72799185100007],[-119.607854939,38.71770288000005],[-119.58158734399996,38.558208606],[-119.45245950699996,38.42128611600009],[-119.47535282399991,38.36394615500012],[-119.31856470499997,38.237113433000104],[-119.31508465299999,38.14693090000003],[-119.16781227199994,38.030899817000034],[-119.10605605899991,37.93263312600004],[-119.11991270199997,37.87516868400019],[-119.05175776199991,37.81751921700004],[-118.99099349599999,37.84901291600016],[-118.82671218299998,37.86140044300009],[-118.65036266499999,37.787761597999975],[-118.63198977699994,37.74226102600005],[-118.8635210679999,37.759232637000025],[-118.86201768299992,37.65393532000007],[-118.7462604349999,37.55848263800016],[-118.65334107499996,37.544455163000066],[-118.6163073749999,37.37536882600017],[-118.41442165299998,37.31913319400019],[-118.32059580599997,37.09799945300006],[-118.37532639599993,37.0429080510001],[-118.25816827199998,36.84128445400006],[-118.28305807599997,36.77698029800007],[-118.22750055899996,36.63016821400004],[-118.075674957,36.501220403000104],[-118.05529904999986,36.547942440999975],[-118.09613977999987,36.67156479300013],[-118.17073580399995,36.80858372200015],[-118.07296825199995,36.785497706000115],[-117.99192159499995,36.60798876600006],[-117.82328882699989,36.48103491900008],[-117.74645889499999,36.46353613500008],[-117.68962258199997,36.508065642000076],[-117.83145949299995,36.647173358000146],[-117.90236123199998,36.76209806800006],[-117.9462843579999,36.922874745000115],[-117.85355500299988,36.96220548600013],[-117.72535330799997,36.898677726000074],[-117.6965185439999,37.00185840800009],[-117.87859478299993,37.12136995499998],[-117.88649121799995,37.18546729500014],[-117.96455511599999,37.29981202100015],[-117.88541548799992,37.37364726700008],[-117.836651309,37.32757653000016],[-117.70860173799991,37.34123609500011],[-117.59153976299996,37.272393363000106],[-117.49568460999996,37.24881572800018],[-117.4492907959999,37.14756907300006],[-117.27622029799983,37.029889572],[-117.22160245499987,37.03392738900004],[-117.13353238099995,37.15532865000017],[-117.04841896299996,36.95349578300005],[-116.85184719399984,36.978194976000054],[-116.77946427799992,37.05256486900009],[-116.68840915399994,37.06197135100018],[-116.54517371299994,37.13157283200013],[-116.51734924199997,37.04629652600005],[-116.38446191499992,37.01219761500016],[-116.32948529299995,37.09954663300016],[-116.25223712199994,37.138044388000026],[-116.19823361099998,37.07995232500019],[-116.14704951899995,37.22704876600005],[-116.03375341699996,37.23303139600017],[-115.88280138999994,37.17369421400008],[-115.617552,37.19168126500017],[-115.51890208999987,37.15876210100015],[-115.40495807999991,37.0338153080001],[-115.35450182399995,37.135282352000104],[-115.20514995399992,37.12468285700004],[-114.98880869999994,37.182239073000176],[-114.90100342199992,37.29210778700008],[-114.80338266299992,37.231251881000105],[-114.619097523,37.31924217600016],[-114.55925778499983,37.46522963200016],[-114.41164414199983,37.38670895400014],[-114.27330528699991,37.28768023200013],[-114.16177489999995,37.31689257100015],[-114.02605365799991,37.30802261400015],[-113.93392603199993,37.346343197000124],[-113.89265077099986,37.282321319000175],[-113.78955950999995,37.2223443150001],[-113.67013451699984,37.22031143800018],[-113.63149805199993,37.27742150300014],[-113.52364084699997,37.217866718000096],[-113.56882761699995,37.346305681],[-113.43217978999996,37.4723836230001],[-113.35283591799993,37.49778242000008],[-113.2377123469999,37.40277511700015],[-113.17652981099991,37.533774566000034],[-113.04628333499988,37.72008662300004],[-112.98432078899992,37.768198638000115],[-112.81537942499989,37.83611353600014],[-112.75265531199994,37.887708091000036],[-112.61096405199999,38.12118040400003],[-112.5043770609999,38.14959438000017],[-112.5832487639999,38.25523208200008],[-112.53983774699992,38.32691373200015],[-112.59893395699999,38.505791827999985],[-112.57518592399998,38.69562406700015],[-112.386354897,38.77167015700019],[-112.37197471299987,38.87913629200017],[-112.30914041799997,38.96449098500011],[-112.23514618399997,39.00016671700013],[-112.17502590599992,39.08211631700016],[-112.09791625899999,39.02693217100017],[-112.02546058099983,38.86895658300017],[-112.23344922699988,38.66558412100011],[-112.27740571299995,38.59451011000016],[-112.16092430899994,38.51714537200007],[-112.01424384699999,38.70360695800014],[-111.92540464799998,38.74636549700011],[-111.7953273419999,38.99604631700009],[-111.74871319899995,39.00458172600014],[-111.694553795,39.17587335400003],[-111.82027281999996,39.214160449000076],[-111.91549162799998,39.398068597000076],[-111.8289554669999,39.55625409700019],[-111.82955885699994,39.784309634000124],[-111.79762237099999,39.94934026700008],[-111.72451006199987,40.018872842000064],[-111.65182197699994,40.02358845800012],[-111.55181570999997,40.1350218390001],[-111.62572699499998,40.21657484000008],[-111.65262385399984,40.309728959000154],[-111.77941836099995,40.473276661],[-111.845956388,40.497173684000074],[-111.78908109499991,40.584367835000194],[-111.81292694599995,40.75136923600007],[-111.91542906299998,40.82344528300018],[-111.85169338199984,40.891249202000154],[-111.90216647799997,41.04843766600004],[-111.89460026899991,41.134707715],[-111.95260299799997,41.33761763400008],[-112.02463763899993,41.366018242000166],[-111.98737136699992,41.508613254000124],[-112.048972231,41.6139487260001],[-112.02087812499991,41.72501663300005],[-111.92362704799996,41.59462276400018],[-111.77365861599998,41.518761422000125],[-111.80376405799996,41.662774626000044],[-111.78617427499995,41.83580749800012],[-111.73424774699998,42.03614508000004]],[[-115.258663421,40.77247351800008],[-115.41396016999994,40.49397517700004],[-115.51440881899998,40.630574017000015],[-115.30788072799987,40.72357626100006],[-115.258663421,40.77247351800008]],[[-113.85014589199983,39.91934000100014],[-113.85573377199995,39.83458902100017],[-113.98000182899995,39.789064309000025],[-113.90209522599997,39.924446003000185],[-113.85014589199983,39.91934000100014]],[[-114.62319538499997,39.64549766100009],[-114.57533800099998,39.51493913200011],[-114.54362969299996,39.317713707],[-114.62220563699998,39.23711607000007],[-114.68750405999998,39.25824292700008],[-114.6265514399999,39.50882947400015],[-114.6867717859999,39.54040544100019],[-114.62319538499997,39.64549766100009]],[[-114.17690036,39.32205777600018],[-114.09631473699994,39.2706203190001],[-114.1192366439999,39.19322309900019],[-114.19477876999991,39.17402690200004],[-114.29292269899992,39.24411297700016],[-114.25400309799988,39.32613357200006],[-114.17690036,39.32205777600018]],[[-114.30762742099989,39.04852505200017],[-114.17310422599996,38.94183629100007],[-114.29654231299992,38.805069878000154],[-114.3630070609999,39.04354284700014],[-114.30762742099989,39.04852505200017]],[[-116.257980004,38.70505146000011],[-116.26749241399995,38.597928153000055],[-116.38347597699999,38.636014257000056],[-116.3744710869999,38.689115181000034],[-116.257980004,38.70505146000011]],[[-116.48574872499995,39.20466663000013],[-116.3518673769999,39.03716466100019],[-116.430869068,39.024663366000084],[-116.51353334999999,38.90719811800017],[-116.55108069599999,38.64504604400014],[-116.66716124799996,38.63237121300011],[-116.6733854719999,38.739689737],[-116.61869995999996,38.87915355400003],[-116.53860322499992,38.93843069400009],[-116.47759223399999,39.06386592400008],[-116.48574872499995,39.20466663000013]],[[-116.44685030899996,39.41197078400006],[-116.4368075029999,39.22680171200017],[-116.52557152099996,39.25392367799998],[-116.55294529499992,39.35411747600017],[-116.44685030899996,39.41197078400006]],[[-117.03375294099999,39.45737928199998],[-117.1003533149999,39.242938158000186],[-117.18799874599995,39.28855189300015],[-117.06516381799986,39.4512530720001],[-117.03375294099999,39.45737928199998]],[[-117.17943646299989,39.23427837700018],[-117.13578021799998,39.16944349400006],[-117.18776327799998,39.1287664780001],[-117.28571205899993,38.94269264200011],[-117.23217798299993,38.74945969200007],[-117.44259503899997,38.66670373300019],[-117.47923418499994,38.824604997999984],[-117.31715635199998,39.01138276000012],[-117.24456779899992,39.18124630500006],[-117.17943646299989,39.23427837700018]],[[-116.85011826799996,39.17009315800016],[-116.75769306499996,39.07863908300004],[-116.79128083799992,38.994893176000176],[-116.85990239699993,38.97219171900008],[-116.85011826799996,39.17009315800016]],[[-116.87306779299996,38.841298395000024],[-116.82331396399996,38.735673595000094],[-116.88452638599995,38.64538177100013],[-117.00077706699994,38.638004266000166],[-116.95634420099998,38.71904086500018],[-116.99109006699985,38.82265007100017],[-116.87306779299996,38.841298395000024]],[[-118.75649399499991,38.5790625840001],[-118.72028244399996,38.461470219000034],[-118.79378508899998,38.44203806700017],[-118.82503444399998,38.53243010200015],[-118.75649399499991,38.5790625840001]],[[-118.27499762999997,37.88841034100005],[-118.27810599099996,37.832190438000055],[-118.21651993899997,37.730931156],[-118.19858723699997,37.62401271400017],[-118.06233240599994,37.53352134500011],[-118.06907796899986,37.46931225700018],[-118.13983354899995,37.386479596000186],[-118.21804507499985,37.37597892100007],[-118.33005741799991,37.70731581100017],[-118.40059655899995,37.79968269000011],[-118.37890481,37.88149165100015],[-118.27499762999997,37.88841034100005]],[[-118.7958948719999,38.298662066000134],[-118.98016529799997,38.1847856440001],[-119.10524501899994,38.22743303000004],[-118.94292128199999,38.277265881],[-118.7958948719999,38.298662066000134]],[[-119.2808754799999,38.51692240200009],[-119.22942932999996,38.36938769600016],[-119.32687038199998,38.39550592000006],[-119.37670871199998,38.46960185300014],[-119.2808754799999,38.51692240200009]],[[-119.467805081,39.21201124700002],[-119.48375021499999,39.08795771800004],[-119.44908373999988,39.01121196400004],[-119.48537790399996,38.77815286400005],[-119.55288783299989,38.83445019100003],[-119.47582171199991,38.970779971000184],[-119.50149774599993,39.071597090000125],[-119.467805081,39.21201124700002]],[[-116.28522123599993,39.887558346000105],[-116.25162632299993,39.81059419300004],[-116.35810353699998,39.77811146300007],[-116.38816956799985,39.830117594000114],[-116.28522123599993,39.887558346000105]]]},"properties":{"objectid":283,"eco_name":"Great Basin shrub steppe","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Nearctic","eco_biome_":"NE13","nnh":2,"eco_id":430,"shape_leng":100.55720677,"shape_area":31.5161691988,"nnh_name":"Nature Could Reach Half Protected","color":"#FFA77F","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":301267.7524302401,"percentage":1.1419365926234828}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[96.09924360600007,50.12550355900015],[95.99460560300014,50.30492993100006],[95.86627162399998,50.39531350200002],[95.48547354800002,50.473572482000066],[95.31828257500007,50.59301225600012],[95.24101266000008,50.68963648800019],[95.08084052500016,50.79055225600007],[94.13356761600005,50.83976173900015],[93.82704158400009,50.92817707100011],[93.30245262900002,51.129447521000145],[92.8337785130002,51.15841973700009],[92.52771750900013,51.15832871000015],[92.24713866400003,51.11112904000015],[92.00578260100008,51.04003692200018],[91.69564061600016,50.87097443800013],[91.5062025630001,50.78741206000012],[91.28237959600006,50.744942465000065],[90.88684060300017,50.744282474000045],[90.56905365200004,50.655696151000086],[90.44064356500019,50.65246090400018],[90.13629951100012,50.68738158900004],[89.99096653000015,50.68070255300006],[89.97113058800011,50.604720433000125],[90.07962057800017,50.540349428000184],[90.05658761100017,50.43077867500017],[89.94873850100004,50.39531635200012],[89.73191861500004,50.457470176000186],[89.6280666670001,50.429427848000046],[89.69271863300008,50.25729138400004],[89.789649644,50.18242355500007],[89.96729251500005,50.09993741300008],[90.1154636080002,49.97963463900015],[90.16506150900011,49.89887667800008],[90.183257615,49.516136012000175],[90.14050253200014,49.44015808300014],[90.12619060000009,49.397371485000065],[90.35880266300012,49.144030808000196],[90.43871254300012,49.12097051600017],[90.58031457100003,49.13844259300015],[90.78758260800004,49.203636366000126],[91.04930166800011,49.1867443160001],[91.18947558700006,49.09652922200007],[91.37321461600015,48.877734727000075],[91.49098957600017,48.76207955000007],[91.50154859500014,48.572648034999986],[91.43656152,48.491772225000034],[91.18743157600011,48.34802895600018],[91.13345362900014,48.27921520700016],[91.28591156300013,48.079933615000186],[91.38484165700004,47.90567334400009],[91.43266259400019,47.869421781000085],[91.94166556700009,47.62402815400014],[92.06483461699997,47.50938031500016],[92.08615164100001,47.41519873600015],[92.05090355900018,47.28650886200012],[92.0794146020001,47.24646951600016],[92.31144764300018,47.12151897700005],[92.39793362900019,47.101315740000075],[92.59176664900019,47.179742358000055],[92.6930545730001,47.18038323900009],[93.04484556400013,47.037850316000174],[93.36682162300008,46.84778965600003],[93.36173263400008,46.7823412410001],[93.21614853100016,46.78406104000004],[93.08467066800011,46.84747349000014],[92.83353460000018,46.922302763000175],[92.74374362900016,46.862243410000076],[93.09159060000019,46.633315361000086],[93.2562175490001,46.56237311200016],[93.37711359400015,46.47139593500009],[93.5815125060002,46.46739776700019],[93.4875025880001,46.60027926300012],[93.455963666,46.774214986000175],[93.54978951700008,46.823341488000096],[93.73909765000002,46.727306],[93.86468454300007,46.68604574600016],[93.99472055100011,46.59017823200003],[94.00510355000006,46.50072002300004],[93.91964753200017,46.367177362000064],[94.04146558700012,46.20902375700018],[94.30271157200002,46.008297293],[94.69187964900004,45.889210062000075],[95.01139863600008,45.85885701100017],[95.17227166600014,45.91292213100013],[95.28081563600006,45.91550912100013],[95.41068266400009,45.97776805400008],[95.54271658300013,45.952481026000044],[95.78490463400004,45.87122786200007],[96.071205637,45.896626035],[96.19020854500019,45.888599859000124],[96.3026655230002,45.998242194],[96.32733966600006,46.09458647100007],[95.94908851600019,46.427988573000164],[95.76016259700003,46.50866187600013],[95.68268564900012,46.62082129600003],[95.48468062000018,46.69613169000013],[95.26099360800009,46.80520640200007],[95.23551161700016,46.90725389400012],[95.35308859600019,47.01129242400009],[95.17861157000016,47.186033480000106],[95.18684360500015,47.25947789500009],[95.31008155400019,47.26507365300017],[95.37458750700006,47.36738131900012],[95.52230866000008,47.38883563900015],[95.60005952900008,47.289137930000095],[95.65191652000004,47.13648402700011],[95.74360666200005,47.034325558000035],[95.85329459400009,46.96048400900003],[96.11917862100006,46.87817053400005],[96.21656057800016,46.748843970999985],[96.18065652800004,46.602763492],[96.36408961800004,46.44914868700016],[96.57118264100012,46.39249959500012],[96.83062752300015,46.85547636400008],[97.04972058100009,47.03529031500017],[96.93931566100008,47.140264097000056],[96.81598651700006,47.41111674900003],[96.753936629,47.50334517700014],[96.51557961000003,47.597085029000084],[96.35732257199999,47.70630776600012],[96.29782866200009,47.970641811000064],[96.06281266900015,48.1120198750001],[95.91919663700003,48.2404348230001],[95.75234965800013,48.48236488000015],[95.6045306040001,48.846301584000116],[95.61575363700007,48.90838734700003],[95.73443551900016,49.113215244000116],[95.75088466900013,49.295853394],[95.98220860000015,49.552536271],[96.03568262800007,49.67622499900011],[96.10526265000016,49.929566011000134],[96.09924360600007,50.12550355900015]],[[91.13486463800012,50.414359701000194],[91.46377554800017,50.42114267200003],[91.66383364000006,50.390624162000165],[91.75777465800019,50.331907422000086],[91.99794753300017,49.677281789000176],[91.94048355100017,49.36201611400014],[91.74394954700017,49.255977831],[91.67819251100019,49.16579408500013],[91.57091554900018,49.162955804000035],[91.49890159000006,49.21978359900004],[91.23521462700018,49.275094270000125],[91.18170154000012,49.3447009460001],[91.12209363500011,49.5637975250001],[91.17291261100007,49.697309173000065],[91.11228965800012,49.79762529900006],[90.99009659700005,49.843036942000026],[90.8542026450001,49.930169172000035],[90.78682756600011,50.062624700000185],[90.79238862400013,50.1193576120001],[90.97210651900008,50.36010682600005],[91.13486463800012,50.414359701000194]],[[93.11357163800005,49.70252824900007],[93.37653356600009,49.828196615000195],[93.51659366000013,49.82439374500012],[93.89405858800018,49.75472487500019],[94.09244566300009,49.69268219500003],[94.25885058100016,49.67727793300003],[94.51695251400014,49.62239105200018],[94.77729761200004,49.60489701400013],[94.93331953200004,49.62729010700008],[95.17768855500009,49.77049911400013],[95.32151061400009,49.79642048400012],[95.43189256700009,49.73258843600013],[95.61895753600004,49.66472771000019],[95.70388063200005,49.54212527700014],[95.60685758800008,49.466109294000034],[95.55964651800019,49.29695645200019],[95.35176056700016,49.226253590000056],[95.16655755500017,49.22526167600006],[94.9676516400001,49.25379987700012],[94.88969457600001,49.20505123100003],[94.73681654000012,49.22533057499999],[94.55530558900011,49.19932924100016],[94.34502459300012,49.20703137200019],[94.11228965100014,49.278321302000165],[94.0582196700002,49.36196699599998],[93.72572365300005,49.42225467300011],[93.29500564400018,49.57521451600013],[92.8154065550001,49.58563674200008],[92.74378956200013,49.62823625600015],[92.77687058700019,49.691934194000055],[93.05187261600014,49.68357609500015],[93.11357163800005,49.70252824900007]],[[93.17202753400005,47.28289290900017],[92.80988355099998,47.50018318800011],[92.74188955200015,47.568176683000104],[92.54086251300009,47.70194750000013],[92.437393617,48.002013934000104],[92.45291153800014,48.1468741760001],[92.54603565600013,48.20378243700003],[92.63398763600009,48.188260325000044],[92.7167585950001,48.08996272900009],[92.73745753700018,47.98649165500018],[92.90300766899998,47.836462629000096],[93.20824456400015,47.61399903900019],[93.32205957700018,47.41223070400008],[93.31171463200013,47.24667956700006],[93.17202753400005,47.28289290900017]],[[94.33338162600018,46.279698959000086],[94.189803648,46.507833912000024],[93.97840165600019,46.67660872900012],[93.96592754000011,46.79059909200009],[94.15356465700017,46.75133909600015],[94.3654095490001,46.64103257900018],[94.72558562800009,46.561163100000044],[94.68030558200007,46.45576284700013],[94.58010864600004,46.437707557000124],[94.43121352400016,46.28436801400011],[94.33338162600018,46.279698959000086]],[[94.6456836280002,46.273008189000166],[94.75504265400019,46.31537032700015],[94.94657852900008,46.339925448000145],[95.2266006480001,46.446912731000054],[95.53059366800011,46.49359775200003],[95.67705552400008,46.441797758000064],[95.95799261100018,46.22634294800008],[95.94326761900004,46.12498545500017],[95.8185505990001,46.057320362000155],[95.4784235300001,46.12066374500017],[95.35601052700008,46.11806150000007],[94.95127859800004,46.0735525880001],[94.76864665000011,46.03995942900019],[94.56398052300005,46.12127361300003],[94.58282455000005,46.23433107000005],[94.6456836280002,46.273008189000166]]]},"properties":{"objectid":284,"eco_name":"Great Lakes Basin desert steppe","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Palearctic","eco_biome_":"PA13","nnh":3,"eco_id":826,"shape_leng":46.7804842136,"shape_area":19.2961979653,"nnh_name":"Nature Could Recover","color":"#F9CD64","color_bio":"#CC6767","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":157569.93449310752,"percentage":0.5972589918551914}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[136.58563238700026,-21.53625672699991],[136.72026067200022,-21.499685309999904],[136.73582452500023,-21.458665784999937],[136.85638428800007,-21.407400220999875],[136.90599073800013,-21.326324417999956],[136.8944243830001,-21.248132660999943],[137.00846855700001,-21.089910492999877],[137.1058044130001,-20.982330441999977],[137.41967768600023,-21.001092996999944],[137.6384584350002,-21.04702750299998],[137.76545717700003,-21.117130220999968],[137.71267700300018,-20.941650383999956],[137.53405763900014,-20.672393813999918],[137.37347412100019,-20.582792274999974],[137.2357787300001,-20.47077182699985],[137.1286772860002,-20.429090465999934],[137.00714119800023,-20.14727026099996],[136.8264769870001,-19.886405988999968],[136.6408386190002,-19.849849825999968],[136.33242799900006,-19.76705740999995],[136.25637815400012,-19.698801057999958],[136.25245659600023,-19.529117642999893],[136.0322571270001,-19.390796626999872],[135.96824637600014,-19.376476311999852],[135.89428714500002,-19.41272351799995],[135.67622371900018,-19.41023258399997],[135.5801391130002,-19.381002372999944],[135.3435821920001,-19.37161262899997],[135.18373108300023,-19.30571360299996],[135.2585603570003,-19.245778971999982],[135.29646298700004,-19.136758742999973],[135.27185053500023,-19.01595305399985],[135.09506228200019,-18.992780779999975],[135.03880311600005,-19.09203726599992],[134.94007871300005,-18.988811445999886],[134.8722228490003,-19.010286383999926],[134.84553520400027,-19.125892610999927],[134.70930480200002,-19.112794880999957],[134.63162233000014,-19.04855915999991],[134.58677680100016,-18.93339348699982],[134.53320319600004,-18.884717930999898],[134.49038692500028,-18.78350443799991],[134.3923949340001,-18.649309161999952],[134.24888602200008,-18.55721668999996],[134.11462402700022,-18.442249331999903],[134.06852724700002,-18.353185743999973],[133.96942130000002,-18.27998742099993],[133.91796865300012,-18.201393164999956],[133.8687286590001,-18.06635483699995],[133.78062429500005,-17.975128214999927],[133.60339347900015,-17.987216929999875],[133.48309321900012,-18.055492392999952],[133.3796080630001,-18.068218300999945],[133.1094055120002,-18.23625584699988],[132.86830140900008,-18.451881478999894],[132.68576048800014,-18.466512761999923],[132.36535637200018,-18.39409060299994],[132.2151489790001,-18.37593070799994],[131.64193727500003,-18.37128260699984],[131.34124756200004,-18.372955299999944],[130.72145074900016,-18.271274598999923],[130.44197077200022,-18.213468635999902],[130.25271611500023,-18.158706644999825],[130.14070120000008,-18.152967387999865],[129.98761009600014,-18.200017859999946],[129.87199398000007,-18.2706280189999],[129.57490530100017,-18.567283687999975],[129.41215506000003,-18.661548582999956],[129.2673187910002,-18.671842565999896],[129.10540774600008,-18.6414489469999],[129.00051999800007,-18.652488136999978],[128.95236224100006,-18.692552572999887],[128.76890568200008,-18.677419716999964],[128.66839593400005,-18.619905443999983],[128.53800956300006,-18.675026180999964],[128.46626281800002,-18.747364015999892],[128.34881592600016,-18.774360617999832],[128.23628233800002,-18.915147757999875],[128.20216363400004,-19.14706797799994],[128.02607728300018,-19.16164025199987],[127.92285917400011,-19.267270838999934],[127.72709664100012,-19.38523489399995],[127.7169875620001,-19.478202773999897],[127.64909364300001,-19.474748591999912],[127.51929467600019,-19.401838270999974],[127.48733514900005,-19.293201429999954],[127.33006281700011,-19.295536124999956],[127.0804061550001,-19.34486194899995],[126.78652958900034,-19.360157077999872],[126.68591305600012,-19.327385009999944],[126.56618494500003,-19.321661007999978],[126.54590610400021,-19.253751834999946],[126.3672485190001,-19.25200655499998],[126.29249568900025,-19.191493906999938],[126.17906959600009,-19.19998930099996],[126.07909394300009,-19.27749256999988],[125.89017489800005,-19.27872085399997],[125.77574917900017,-19.31149677699983],[125.5028533540002,-19.302120277999904],[125.36598207200018,-19.346918028999937],[125.04530336500011,-19.265338976999885],[124.8756256490002,-19.162555721999865],[124.76696014200013,-19.11663814699989],[124.73211673700007,-19.068615038999894],[124.79085543900021,-18.97334297499998],[124.74182130500014,-18.91599466399998],[124.635154714,-18.811634100999925],[124.47943135800006,-18.754880905999926],[124.27593232800007,-18.846282876999908],[124.02780921800013,-18.900381021999863],[123.88830568300023,-18.843219793999936],[123.75351713600003,-18.811872481999842],[123.72061917200028,-18.877140014999952],[123.5111924590002,-18.925474092999934],[123.29765308300023,-18.91488271999998],[123.23018647300034,-18.825372709999954],[123.09499358300002,-18.83789627999994],[122.74119562900012,-18.900247581999906],[122.28833766200012,-19.073768566999888],[122.10074614200005,-19.16390805599991],[121.98514561600018,-19.24728972099996],[121.85505680200004,-19.388706173999935],[121.85272981800006,-19.468116826999903],[121.96566775000008,-19.545619926999905],[121.93840024500003,-19.701847035999833],[121.7007446240001,-19.685032099999887],[121.37350456200011,-19.676456406999876],[121.27616116200022,-19.704742479999936],[121.25948335400017,-19.747577693999972],[121.14981838900019,-19.766138076999823],[121.07146452500012,-19.749406791999945],[121.03435515800004,-19.856668497999976],[120.78090669000005,-19.857097651999936],[120.6534194510001,-19.912572774999887],[120.39736169700006,-19.996795646999942],[120.20686333300011,-20.089254408999977],[120.02786259400023,-20.08935934999994],[119.5026550560001,-20.252923975999977],[119.39915464400019,-20.25716019099991],[119.41519157300024,-20.317861597999922],[119.62039950500014,-20.33016204099988],[119.80202478600017,-20.363697029999912],[119.98385626100003,-20.420789691999914],[120.03927606400009,-20.40504462299998],[120.18711104300007,-20.521682660999943],[120.30144506400006,-20.47828871099989],[120.38698573900024,-20.584010995999904],[120.46987907400012,-20.528896293999935],[120.63150781500008,-20.578762080999923],[120.61782067000013,-20.634298392999938],[120.75218961900009,-20.68536379699998],[121.09581764300003,-20.78218835699988],[121.17671960400014,-20.90254209299991],[121.09805292800013,-20.975177821999978],[121.13660431800008,-21.062393200999907],[121.11409002400012,-21.119302802999982],[121.20300290700004,-21.287605215999974],[121.25736994200008,-21.312080372999844],[121.32646180200027,-21.47880547999989],[121.3430710460002,-21.595108074999928],[121.31076048600005,-21.674232402999962],[121.38182075200018,-21.812002224999958],[121.39997109300009,-21.998794613999905],[121.35562127000014,-22.1995257719999],[121.40473939000003,-22.309953658999973],[121.40242028600017,-22.41602127999988],[121.20717625600003,-22.428249301999983],[121.19100186600019,-22.469606450999947],[121.23974615300017,-22.61402697699998],[121.23247535400014,-22.678447937999863],[121.15075682800011,-22.8275606549999],[121.24612427800002,-22.851278255999944],[121.30738073600014,-22.91119193199995],[121.26654812700019,-23.076482726999927],[121.20756534500015,-23.102706852999972],[121.09854125900029,-23.07314103099992],[120.95266731000004,-23.143068230999972],[120.90269473900003,-23.23893742199988],[120.838073785,-23.287691096999936],[120.89686579500017,-23.368804953999813],[120.87232978600014,-23.491067918999875],[120.77785484100002,-23.597511216999976],[120.79603569100004,-23.723161477999838],[120.73987576700017,-23.79645367699993],[120.49910744200008,-23.848236068999938],[120.4223099310002,-23.9177493709999],[120.28433994900001,-23.87004661999987],[120.20851138500007,-23.926788247999866],[120.13142402700021,-23.939868878999903],[120.0290221480002,-24.0278532129999],[120.06952669000009,-24.124013926999964],[119.99111180700027,-24.127656868999964],[119.94197088800001,-24.325420331999965],[119.83625798900016,-24.38791077199994],[119.90869909000003,-24.428039468999884],[119.95443712400004,-24.54814727999991],[120.05647271400005,-24.581047087999877],[120.10349267600009,-24.63341319599988],[120.27799216600022,-24.66427804599988],[120.27624504200003,-24.81792252199989],[120.31740571900002,-24.905288775999907],[120.25252526200018,-24.966257062999944],[120.10395049600015,-25.044069287999946],[120.01097876100005,-25.046630796999864],[120.03587334900033,-25.175670698999966],[120.15128327100001,-25.181152295999937],[120.35348511900008,-25.134273484999937],[120.47534944100005,-25.181837096999914],[120.50262449000002,-25.134185810999952],[120.58763894800006,-25.137092654999947],[120.64719387900016,-25.407764424999982],[120.72145083600003,-25.385766957999977],[120.83846287400002,-25.28959082199998],[120.95067593800024,-25.273193136999907],[121.05014046300005,-25.294847448999974],[121.16052241700015,-25.212207750999937],[121.22381584400011,-25.240409836999902],[121.31232455000008,-25.106597949999923],[121.37270359000001,-25.08702285299995],[121.32941441300022,-24.994863491999922],[121.39005278900015,-24.952230618999977],[121.44383996500005,-24.80472756299997],[121.57022095900015,-24.76280597699997],[121.67761224900005,-24.75737953299995],[121.79719552100028,-24.79185111599992],[121.83128354800033,-24.843332261999876],[122.01813511300008,-24.881284680999954],[122.09091182600002,-24.98392292999995],[122.19842532400014,-24.927228909999883],[122.44906619000017,-25.07067680199998],[122.48031610400017,-25.12744927599988],[122.56124120000027,-25.10590560499992],[122.67138678400033,-25.165126767999936],[122.83163452300016,-25.015710794999904],[123.0013734270002,-25.023597663999965],[122.99259941900004,-25.105781553999975],[123.03126530600014,-25.168218685999932],[123.13071424000009,-25.223562212999923],[123.11262508700008,-25.308559404999926],[123.15514380000013,-25.341516544999934],[123.12165072100004,-25.46050268999994],[123.17633828100008,-25.556915195999977],[123.0992430440001,-25.689394024999956],[123.14210507900032,-25.791030636999892],[123.20639042100004,-25.725915821999934],[123.30319972600023,-25.792076027999883],[123.39341733600008,-25.78391272499988],[123.4733352620002,-25.736043842999948],[123.50549310400015,-25.79366104599984],[123.58650973000022,-25.829721501999927],[123.55622105200007,-25.913722923999956],[123.67918390700004,-25.987489706999895],[123.7192153740001,-25.894624757999964],[123.81720736600005,-25.80429466299995],[124.00602717000015,-25.724548397999968],[124.10588832600001,-25.64652830299991],[124.18964382200022,-25.62156112699995],[124.12193296400005,-25.547182129999896],[124.11835473000008,-25.49132345099997],[124.03105167600017,-25.395492481999895],[123.92276000100014,-25.31310843199998],[123.9337310750002,-25.212161986999888],[124.06040962800012,-25.156598852999878],[124.05857080600003,-25.120408980999912],[123.94920356500018,-25.06502153199989],[123.92761999700008,-24.97736928899991],[124.05702970900018,-24.85548401099993],[124.0363922900001,-24.773931277999964],[123.94883744300023,-24.721353275999945],[123.9785308380001,-24.63426396099993],[124.12416841700019,-24.55130943899991],[124.29664619200025,-24.537296236999964],[124.36440281600028,-24.50302883799992],[124.39795691400013,-24.38146408399996],[124.48831936300019,-24.334535651999943],[124.44391639800017,-24.27916144799991],[124.34762576500009,-24.278051348999895],[124.19955458400011,-24.24284366699993],[124.13898460500002,-24.159664173999943],[124.26290886400022,-24.10301591999996],[124.24334717800025,-23.97417064499996],[124.36683658400023,-23.939001016999953],[124.33651739700008,-23.871780332999947],[124.24119571100016,-23.810173008999982],[124.36781307600017,-23.78017417799998],[124.34825893400034,-23.721931518999952],[124.41574867800011,-23.674610142999825],[124.45192715100018,-23.580858219999925],[124.38129419400002,-23.529189989999963],[124.47514351400002,-23.384971633999953],[124.403488132,-23.262142219999873],[124.54265588800013,-23.19205291299994],[124.60032639900021,-23.103109519999975],[124.49050905100012,-23.034959786999934],[124.69248961600022,-22.909646980999923],[124.78398898600005,-22.93256779799998],[124.7707672040001,-22.839397412999972],[124.602668805,-22.760961573999907],[124.54585274600015,-22.68402676599993],[124.60913108600016,-22.625869936999834],[124.57827763600017,-22.575386237999965],[124.44489289000012,-22.492742516999897],[124.47052005500007,-22.431575745999965],[124.84764870100014,-22.285085725999977],[124.91085059900001,-22.28396992799992],[125.06974767800034,-22.220439962999933],[125.14486696500023,-22.231029491999834],[125.19293969400007,-22.187168165999935],[125.33888237500003,-22.18793661899997],[125.5527649070001,-22.145317155999976],[125.6615982200002,-22.07835966399989],[125.84317019200023,-22.093275092999875],[125.84068294600013,-21.999271377999946],[126.13401787300006,-22.098300881999876],[126.23552708000011,-22.184503559999882],[126.56130215200005,-22.26320258899989],[126.7291946910002,-22.24283020699994],[126.81255322000015,-22.26196106199984],[127.49803917700001,-22.72023960699994],[127.27327727000022,-22.913715389999936],[127.2973175730001,-22.98877549999986],[127.40383144600014,-23.0088520029999],[127.50581356000009,-22.899429441999928],[127.65759256000001,-22.960803916999964],[127.78819267000017,-22.92597191199991],[127.84574130700003,-22.97004882099992],[127.8209000290002,-23.031393120999894],[127.90939331300001,-23.068891575999942],[128.14920040200013,-23.054922127999816],[128.3233185140001,-23.079768938999962],[128.44300840400012,-23.063440321999906],[128.58296204700014,-23.11692239599995],[128.56948847300032,-23.184232766999912],[128.4990845090001,-23.203237557999955],[128.50280758300016,-23.273708408999937],[128.44717404200014,-23.334075881999922],[128.5872954910002,-23.38825030099997],[128.48883059200034,-23.49331661899987],[128.48916620400007,-23.540424423999923],[128.7077789790003,-23.50638953899994],[128.7778473310001,-23.50723644599998],[128.96781914400026,-23.582963923999955],[129.11113319000003,-23.613044279999883],[129.1868526950002,-23.653131076999955],[129.19242030700002,-23.742212847999895],[129.1478794200002,-23.78452668999995],[129.02650550700002,-23.80902417599998],[128.88513183600014,-23.915306049999913],[128.76167294000004,-23.948993756999982],[128.6303100770001,-24.081033709999872],[128.4166565390001,-24.126863441999944],[128.35420230700004,-24.176870378999865],[128.41281125600005,-24.243093616999943],[128.3566741310001,-24.295524599999965],[128.4301452000002,-24.43209648099986],[128.49468987800003,-24.50059121399994],[128.7531280930001,-24.646091497999976],[128.94169610500023,-24.679880123999908],[129.03208856000003,-24.72387086699996],[129.18882629300003,-24.619046617999913],[129.41027835500017,-24.584573693999914],[129.58666997600005,-24.590091667999957],[129.94453432600028,-24.656322449999948],[130.03518678800003,-24.71030039699997],[130.05700689400032,-24.824123456999928],[130.2002563010002,-25.042287800999873],[130.32687383400003,-25.14149282199986],[130.41957097700003,-25.156503637999833],[130.44161990800012,-25.269658994999872],[130.55651853500024,-25.39981452899991],[130.8795012600002,-25.62344169399995],[130.9927520040003,-25.670780167999965],[131.08712770700004,-25.672958289999883],[131.25737002800008,-25.598718599999984],[131.2617950030002,-25.69894403299992],[131.31283576400006,-25.757924971999955],[131.45814510800017,-25.744821542999944],[131.55690002100016,-25.771863908999876],[131.69334416100014,-25.510868039999878],[131.6880340570001,-25.442148168999893],[131.60054023200007,-25.15279581899989],[131.5176544410001,-25.009029415999976],[131.5252075420001,-24.879833274999953],[131.60781857300003,-24.773324933999902],[131.7049408590001,-24.708166197999958],[131.80140684200012,-24.700744692999933],[131.94645684900024,-24.649618100999874],[132.348968581,-24.640108161999876],[132.40209962100016,-24.58042331199988],[132.23527527300007,-24.536394179999945],[132.00474544200017,-24.551179856999852],[131.81552129600016,-24.476125780999894],[131.76992793300008,-24.424266778999936],[131.50129698900014,-24.344789572999957],[131.4116667840001,-24.296316187999935],[131.313461221,-24.188068435999924],[131.36230475000013,-24.063619635999828],[131.4331512780002,-24.012214596999968],[131.64691160200016,-23.913391120999904],[131.64442435500007,-23.802278600999955],[131.5778502520003,-23.698770478999904],[131.44433592100017,-23.64080425399993],[131.3067322290002,-23.47451785599992],[131.19549565600005,-23.39882273199987],[131.19192530100008,-23.291341754999905],[131.30972305900002,-23.240867610999885],[131.4234924750001,-23.240532],[131.7392731340001,-23.201810791999947],[131.84088141400002,-23.244426734999934],[132.04502870100032,-23.24137303999987],[132.24633787500022,-23.16619876799996],[132.47731010200005,-23.132720942999924],[132.85105899700022,-23.115724622999892],[132.9346312660001,-23.12216376899994],[133.19021611300002,-23.237142525999957],[133.2688140580001,-23.257343079999885],[133.43116766700007,-23.25887680099987],[133.25575253800014,-23.022287357999915],[133.1742247830001,-22.848924621999913],[133.10258482500012,-22.788455895999903],[132.84733575500002,-22.77850154799995],[132.52247615500028,-22.690521235999938],[132.35310370800016,-22.58128542399993],[132.1181334810002,-22.579793947999974],[131.8353577390002,-22.523460349999937],[131.66131590100008,-22.43833357299991],[131.52801514200007,-22.34147079199994],[131.44102473400005,-22.338340821999964],[131.32859809900015,-22.436092420999955],[131.22445680800013,-22.446172664999892],[131.04016122000007,-22.309051601999954],[130.92709353700002,-22.273881974999938],[130.80186455100022,-22.40041736299986],[130.71133429700012,-22.615024762999894],[130.47904963200017,-22.604898417999948],[130.16137701000002,-22.50539583899996],[130.1424712920002,-22.43480881499994],[130.2191923600003,-22.248327226999947],[130.31141659700006,-22.16137671699994],[130.44749428000011,-22.066881151999894],[130.63841241000034,-22.000310902999956],[130.82502743700002,-22.013801576999924],[130.90852359800022,-21.993129791999934],[131.11929325900007,-21.843307463999963],[131.31771855600016,-21.833337859999915],[131.5201110070002,-21.85724640099994],[131.6181945300001,-21.956209184999977],[131.73001096300015,-22.00896069299995],[131.8788604870001,-22.010229041999935],[132.13671884200005,-21.88422204799997],[132.41572574500015,-21.81379293899994],[132.6169433880001,-21.805263513999876],[132.97953798200012,-21.927701997999918],[133.1020659840001,-21.933427843999937],[133.12261958400018,-21.874937078999892],[133.0632934790002,-21.686943060999965],[132.9151611100001,-21.55720142599995],[132.8021393590002,-21.42745593399991],[132.95124822100001,-21.192272136999918],[133.01388551200023,-21.12704081299995],[133.15325929500023,-21.138233168999875],[133.1996306660002,-21.192804386999967],[133.1514586950001,-21.3153285329999],[133.18038933600008,-21.390295101999982],[133.28073111100014,-21.387706769999966],[133.37094117700008,-21.31967924399993],[133.50176994500032,-21.31018824699987],[133.61718741100015,-20.945505218999926],[133.66856378300008,-20.94225890799993],[133.89511103600012,-21.060481964999894],[134.14245613800006,-21.221958322999967],[134.16543579600022,-21.312677337999958],[134.2807922410002,-21.43966870299994],[134.24716186600006,-21.57039638499998],[134.1642303100001,-21.71150773699992],[134.20837393900013,-21.788152697999976],[134.42294311700005,-21.937007922999953],[134.61833198500017,-22.034532539999873],[134.69303871500006,-22.123657315999935],[134.80343625900002,-22.197164595999936],[135.1075134340001,-22.251222673999962],[135.23777776400004,-22.22896570299997],[135.40657035100014,-22.10098460399996],[135.5112152270002,-22.062557265999885],[135.60317996000026,-22.082973401999823],[135.6995849220001,-22.153165806999937],[135.78422538100028,-22.154865320999875],[135.9647521290001,-21.968420110999944],[136.15728763100003,-21.837118100999874],[136.48344424700008,-21.656778267999982],[136.58563238700026,-21.53625672699991]]]},"properties":{"objectid":285,"eco_name":"Great Sandy-Tanami desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Australasia","eco_biome_":"AU13","nnh":2,"eco_id":210,"shape_leng":88.8335147444,"shape_area":71.7890304516,"nnh_name":"Nature Could Reach Half Protected","color":"#FF7F7E","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":827851.0729847959,"percentage":3.137917768689342}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[127.22476197700018,-26.357976869999902],[127.16462701900014,-26.444026995999934],[127.06678774500006,-26.52819253599995],[126.96060160500008,-26.536851879999915],[126.84587866400011,-26.59191511699987],[126.7497332050001,-26.603822615999945],[126.69031523500007,-26.690017748999878],[126.55352777200005,-26.72564704099989],[126.603538565,-26.854124014999968],[126.58272546100011,-26.927337591999958],[126.40270229700002,-26.94177441399995],[126.33657830200002,-27.05541223399996],[126.34594725800002,-27.1041239999999],[126.21934514700001,-27.11483188099993],[126.16058348100012,-27.09123045299998],[126.00966647500002,-27.109638285999893],[125.92266081100001,-27.186080907999894],[125.97116856200034,-27.235498429999893],[125.86544040800004,-27.29973414999995],[125.78909300500004,-27.20619009899991],[125.71503436500007,-27.202753015999917],[125.6900405350001,-27.112766243999886],[125.61959080600013,-27.033603694999954],[125.58015445500007,-26.88368983599986],[125.43913262100023,-26.767860483999982],[125.45190429500019,-26.7380733789999],[125.21591952200015,-26.639968901999964],[125.14910133700005,-26.45153801899994],[124.95856475200003,-26.41653250899998],[124.87607576000005,-26.35560797499994],[124.81297310500008,-26.39981647999997],[124.71051791800005,-26.3062534849999],[124.66019447900021,-26.297113354999908],[124.50002284800007,-26.19694139799998],[124.4481506010003,-26.09193609999994],[124.47073362800006,-26.00215904399994],[124.41587826300008,-25.94207387399996],[124.23836514300024,-25.806690211999978],[124.18964382200022,-25.62156112699995],[124.10588832600001,-25.64652830299991],[124.00602717000015,-25.724548397999968],[123.81720736600005,-25.80429466299995],[123.7192153740001,-25.894624757999964],[123.67918390700004,-25.987489706999895],[123.55622105200007,-25.913722923999956],[123.50452415600012,-25.9863757519999],[123.51857759000006,-26.184984277999945],[123.4452895820001,-26.38479040899989],[123.39983368300011,-26.41148760899995],[123.36878208400026,-26.56723208699998],[123.20864113000016,-26.617053951999935],[123.14312750400006,-26.658088731999953],[123.02690889600012,-26.642644907999852],[122.89159396600007,-26.66631892299995],[122.74613944700002,-26.774030737999965],[122.73598477200017,-26.875984184999936],[122.90537264200009,-27.006338033999953],[122.961776815,-27.130712568999854],[122.89593512200008,-27.21385199599996],[122.89974218200018,-27.30394555299995],[122.77161406300002,-27.335212733999924],[122.68865199700008,-27.42078777399996],[122.42978664000009,-27.60059351099983],[122.48992159900001,-27.718255985999917],[122.56756585100004,-27.765062376999822],[122.50131227000008,-28.00049394399997],[122.42768093900008,-28.01782604399989],[122.44311520700012,-28.204194978999965],[122.49961845600012,-28.243104946999892],[122.50543968800002,-28.403190579999944],[122.56764983800008,-28.578924221999955],[122.54206843700013,-28.642747887999974],[122.71337123500007,-28.809242324999957],[122.6520232490002,-28.886917085999926],[122.62786861600011,-29.016189501999918],[122.72752374400011,-29.1853180359999],[122.86314394400017,-29.25755143399988],[122.77497101600022,-29.372068515999956],[122.7659988600002,-29.4292698079999],[122.63296514800015,-29.42119216799989],[122.56178300900012,-29.44819061399994],[122.59935757200014,-29.547161107999955],[122.71398931800013,-29.617166595999947],[122.77989203200002,-29.707252441999913],[122.90151210600004,-29.793954847999885],[122.81975552500012,-29.918130899999937],[122.96426389500016,-29.938583413999936],[123.0147553060001,-30.08692935399995],[123.09519961600006,-30.120685624999965],[123.31124870300016,-30.27824595899989],[123.43360135500018,-30.32040793799996],[123.66048438700022,-30.49434852299993],[123.63502502600022,-30.56256480899998],[123.76470949700001,-30.592880308999895],[123.74999992700009,-30.6428012479999],[123.8755113840001,-30.587543550999953],[124.01853179800003,-30.572397283999976],[124.1065292080001,-30.748792591999973],[124.37916569700008,-30.71764393199993],[124.4455185190003,-30.75307088299985],[124.52908324400028,-30.707769378999956],[124.52125555200007,-30.583103153999957],[124.5580826160002,-30.48454303699998],[124.63452155100015,-30.428951237999968],[124.63134765900008,-30.345764200999895],[124.72367097000017,-30.331075753999983],[124.8345717630001,-30.432323444999952],[124.93494421500031,-30.365713130999893],[124.87271126600001,-30.26655571899994],[124.87448118900033,-30.166192989999956],[124.96945955100011,-30.063087533999976],[124.97776031800004,-30.008802473999936],[124.85481238300008,-30.01170730499996],[124.91494750800018,-29.89438630999996],[124.90791324800011,-29.790348115999905],[125.07366940600014,-29.743097315999933],[125.08691398700023,-29.68453983199987],[125.19113926500006,-29.65954968999995],[125.04681395700004,-29.55525014799997],[125.1021118860001,-29.461236877999966],[125.19268807400022,-29.440656456999932],[125.25002297300023,-29.344015123999895],[125.36938479500009,-29.30632405299997],[125.46217346900005,-29.195301050999888],[125.45706939300032,-29.140886071999944],[125.65819550600008,-29.063527977999968],[125.86953731500034,-28.961219808999886],[126.49240106700017,-28.893392610999967],[126.74160762200006,-28.917684538999936],[126.82373032400005,-28.940662352999937],[127.06200402600018,-28.93452260999993],[127.12715907500012,-29.012592493999932],[127.2432100450003,-28.975738438999826],[127.41577918200016,-29.052326235999942],[127.50388337800007,-29.007947913999942],[127.53632352300019,-29.059808759999953],[127.73646543400002,-29.09032827599998],[127.91516878300001,-29.06559763799993],[128.01976018200003,-29.1149006629999],[128.0903473740001,-29.18279072699994],[128.21545415300022,-29.254085518999887],[128.22167972700004,-29.316850718999945],[128.33596798300005,-29.36356356799996],[128.41255192300014,-29.449720312999943],[128.51387002200022,-29.384727537999936],[128.62716686600004,-29.39232070399993],[128.76281740700017,-29.447694741999896],[128.90348820600002,-29.342410996999945],[128.99971329400012,-29.316466826999942],[129.06193625700007,-29.337005154999872],[129.40847791400006,-29.530023891999974],[129.51947040800007,-29.511421439999936],[129.6331790800001,-29.54532061699996],[129.77098112800002,-29.526218551999875],[129.92607122500021,-29.56371892699991],[129.83187852000003,-29.707721832999937],[129.88636742600022,-29.765819825999984],[129.98147579500016,-29.796319826999934],[129.97247286200002,-29.856218250999973],[130.1113736640002,-29.93731876499993],[130.271270694,-29.890214828999945],[130.32698040700006,-29.84631907699992],[130.42688007200002,-29.851913259999947],[130.41157514800022,-29.953914845999975],[130.44667090300015,-30.075616924999906],[130.5008695570001,-30.12021440599989],[130.60757433400022,-30.13261381999996],[130.91267422900034,-30.13071039199997],[131.30686984600015,-30.207708486999934],[131.47216799700016,-30.274603162999938],[131.65287746700017,-30.375203851999913],[131.7229614260001,-30.392102869999974],[131.82806377800034,-30.477600028999973],[132.01826512900016,-30.55850241099995],[132.07788067400008,-30.680801520999978],[132.0300752400001,-30.74260126699994],[132.10006699300004,-30.80279907299996],[132.1458739220003,-30.902799589999972],[132.2153622630002,-30.929937364999944],[132.32476811800007,-31.04119872699988],[132.36036698500004,-30.99760028299994],[132.57017495200012,-31.046998886999972],[132.6395724260002,-31.142497903999924],[132.74357634000012,-31.156396936999954],[132.7211762520002,-31.251796929999955],[132.7623752610001,-31.345996747999948],[132.86927811300006,-31.41749540799998],[132.84207144900017,-31.5206963629999],[132.9732664190003,-31.566495690999943],[132.85697927500019,-31.648197429999982],[132.85408007800015,-31.710697062999884],[133.01412961200015,-31.766668328999913],[133.09597807900002,-31.779396],[133.16906742000015,-31.83979416199992],[133.2589720530001,-31.860195464999947],[133.30886809400022,-31.794992327999978],[133.67807037600016,-31.87869052699989],[133.8092651940001,-31.87218645799993],[133.8283687720001,-31.96488771399993],[133.93936168900007,-31.973686235999935],[134.03805561700028,-32.01388572299993],[134.13815271600004,-31.984285297999918],[134.22375451400023,-32.07608444399989],[134.39976465700022,-32.12878384099986],[134.44325269100023,-32.19018522999994],[134.61465481900018,-32.26568241199993],[134.70515452100005,-32.262080941999955],[134.9792825850002,-32.428815852999946],[135.08375414900001,-32.50920053899995],[135.17959539000003,-32.64485699499994],[135.24290643900008,-32.573006549999945],[135.16645056900006,-32.518941502999894],[135.19425352200017,-32.44559666499998],[135.11756747800007,-32.28824360099998],[134.95654936000005,-32.16914741799991],[134.87381557100014,-32.063524507999944],[134.70934854700022,-31.94952111299989],[134.6495668140002,-31.853927962999876],[134.76644394300024,-31.84722639399996],[134.87933314500015,-31.894623342999978],[134.98975044300028,-31.904319621999946],[135.1043554260001,-31.950749526999914],[135.48889475700025,-31.913724292999973],[135.5496084350002,-31.980638216999978],[135.52369262600007,-32.077788859999885],[135.6327082150002,-32.03898750399998],[135.57897630900004,-31.918245700999876],[135.45719487300005,-31.881836474999886],[135.36245480900004,-31.797890262999942],[135.301886093,-31.82474893799997],[135.16109166100023,-31.829683719999935],[134.9254575340001,-31.776434062999954],[134.6453887030001,-31.691018106999934],[134.54502246500022,-31.5912801099999],[134.77578693800012,-31.624112322999963],[134.75192408500004,-31.54866778899998],[134.811833846,-31.355055531999938],[134.88397715100018,-31.40541100899992],[134.9842413330001,-31.423724088999904],[135.06351911800027,-31.386152798999888],[135.09901292500012,-31.292054062999966],[134.97330343600004,-31.273227352999925],[134.89326850400005,-31.214536572999975],[134.66538532000004,-31.160961245999943],[134.57695261900017,-31.175074872999915],[134.521332324,-31.133714882999925],[134.30543542500016,-31.140478345999895],[134.29206843100008,-31.10146710999993],[134.385147468,-31.012279178999904],[134.37243682400026,-30.920774420999976],[134.27554302400029,-30.917276479999884],[134.0875753480003,-30.95365024299997],[134.0028397110001,-30.680264171999966],[134.02764745500008,-30.575548658999935],[133.8718047010002,-30.506519143999924],[133.79162478900002,-30.42584747799998],[133.73153045200013,-30.436061643999892],[133.48745507100023,-30.35925009999994],[133.45650461000002,-30.318025407999926],[133.27442817700035,-30.316887055999814],[133.23454675000005,-30.218868676999932],[133.11738857500018,-30.27936535799995],[133.0960923550001,-30.19673395899997],[133.04253367700028,-30.158497651999937],[132.8164027790001,-30.09567303299997],[132.64112565400012,-30.135969445999876],[132.55929887300022,-30.020658099999878],[132.55584242600014,-29.77704781799997],[132.39828591700007,-29.788635110999905],[132.308477583,-29.770527340999934],[132.30504683800007,-29.710707916999922],[132.3834701410001,-29.662955324999928],[132.5555434360001,-29.681272565999905],[132.6874763410001,-29.644549559999973],[132.61179749000019,-29.52617585699994],[132.74477579000006,-29.483913927999822],[132.81220394900004,-29.515682348999974],[132.9502902700001,-29.525919451999926],[133.0552440780001,-29.47877603099988],[133.1335632590002,-29.494524290999948],[133.3612711200003,-29.48370490399992],[133.40314764200002,-29.564275444999964],[133.4692866700002,-29.523302541999954],[133.6218873900001,-29.50153512099996],[133.70586471800004,-29.519867027999908],[133.89667252700008,-29.485882230999948],[133.99563044900015,-29.54520769399994],[134.1904446850001,-29.525518164999937],[134.21134780500017,-29.47240374299986],[134.11077173700016,-29.443464416999916],[134.07308384500004,-29.38484807799989],[134.2043604500003,-29.362924696999983],[134.3898508840001,-29.30575637899983],[134.36508011900003,-29.256454108999947],[134.4108771450002,-29.118390751999925],[134.2615107050002,-29.055443008999873],[134.16206853900007,-28.91468309499993],[134.0432419880002,-28.494669272999943],[134.13301185100022,-28.400676329999953],[134.23477461400023,-28.33954327999993],[134.18408766900006,-28.199362347999966],[134.03101285800017,-28.16282308199993],[134.07407258500018,-28.0992991089999],[134.05188492700006,-28.012716791999935],[134.09553058100016,-27.814288500999965],[133.98161079300007,-27.832601383999872],[133.89729893900005,-27.792766059999906],[133.88262735500007,-27.70711815599998],[133.801365464,-27.654562083999963],[133.80437003800012,-27.60157799299992],[133.73015114700013,-27.54319441599995],[133.74236043000008,-27.48330449599996],[133.61557175200016,-27.36814058199991],[133.524382155,-27.37321950299986],[133.49270955300028,-27.3142318269999],[133.44166032700014,-27.39627623399997],[133.51897098100017,-27.432935114999907],[133.4950823580001,-27.594190330999936],[133.35726176800006,-27.597156151999968],[133.31627687900027,-27.552519587999882],[133.20478154700027,-27.568971531999978],[133.16605442900016,-27.476255183999967],[133.30448029100012,-27.422867381999936],[133.35219222900025,-27.26609513399984],[133.15181415400014,-27.278293332999965],[133.00610934600002,-27.16015102299997],[132.8602667020001,-27.142543110999952],[132.746821941,-27.222501209999905],[132.6422122150002,-27.22918126399992],[132.49591062100012,-27.179382445999977],[132.3283078190001,-27.234985555999913],[132.21681194100006,-27.206483921999904],[132.110610715,-27.120685856999955],[132.14460787500013,-27.0770890899999],[132.33320598000012,-26.99448400999995],[132.4287108750002,-26.872484200999963],[132.61051917400005,-26.86038042099989],[132.8281704540001,-27.06100711099998],[132.7914084990001,-27.121407230999978],[132.92232376100003,-27.122930416999964],[133.01524763500004,-27.030587927999875],[133.04300269300018,-26.962924621999946],[132.92602926500024,-26.96189714299993],[132.86621119300003,-26.87127878399997],[132.84800744200004,-26.775181100999873],[132.7507172490001,-26.74847994299995],[132.66160612500005,-26.66337981299995],[132.57301348600015,-26.63028150199989],[132.49841345200002,-26.671981631999984],[132.2731173730001,-26.70038246999991],[132.15270966300022,-26.87718230899992],[132.02771009700018,-26.847187217999874],[132.03190616600023,-26.75178742299994],[131.9185182330002,-26.69398681699994],[131.61831698900005,-26.569288118999907],[131.54571568000017,-26.571689566999908],[131.41072096200003,-26.62968994599987],[131.291824259,-26.712291882999978],[131.1428223690002,-26.680694356999936],[130.92123444900005,-26.415193295999927],[130.67012028800002,-26.395797704999893],[130.56002824600012,-26.250198470999976],[130.48962416200004,-26.225297766999972],[130.35162358200012,-26.268699508999873],[130.26292434900017,-26.266899258999956],[130.22842443500008,-26.31220217699996],[130.1171267740002,-26.356601921999925],[130.04283136000004,-26.44370665699995],[129.9269256770002,-26.450202888999854],[129.8724215860001,-26.385906362999947],[129.78492749500003,-26.411207054999977],[129.6824341560001,-26.349306138999964],[129.4209290990001,-26.31680652299997],[129.09085883800014,-26.379796786999975],[128.92710874400007,-26.490940173999945],[128.7840729070001,-26.41216469999989],[128.6847381340002,-26.40229601599998],[128.65303040000003,-26.332542487999888],[128.57577490100016,-26.28986937999997],[128.53926098400018,-26.146705635999922],[128.60400397700016,-26.11893085799983],[128.4817505670003,-26.03837590799992],[128.40025332300002,-26.059507355999983],[128.1983642890002,-26.038852669999926],[128.1369475680001,-26.09833518099998],[127.98985288000029,-26.089347769999904],[128.02888488800022,-26.232265420999965],[127.90744016400015,-26.197576579999918],[127.83290861600005,-26.123573259999887],[127.6857451950001,-26.16992937499998],[127.61451712200005,-26.151050646999977],[127.54407493800022,-26.21275335699994],[127.49926763000008,-26.358732246999978],[127.39663692500017,-26.285858136999934],[127.22476197700018,-26.357976869999902]],[[129.77754201900007,-26.936206663999883],[129.83364852600005,-26.966707493999934],[129.95384209700012,-26.969806964999975],[130.06004318400005,-27.05770502499996],[130.12254343100005,-27.18310559799994],[130.18493677400033,-27.229105045999916],[130.2313382540002,-27.403205764999882],[130.35704017900002,-27.372804660999975],[130.4327394610001,-27.451203994999958],[130.58514400700017,-27.488704492999943],[130.6990359030002,-27.613702832999934],[130.61814895400005,-27.730400199999963],[130.42004388400017,-27.688903654999933],[130.2374418750003,-27.708505883999862],[130.1511381900002,-27.613008519999937],[130.1537478560001,-27.54490657799994],[130.00123598800008,-27.438810453999906],[129.87783798600003,-27.414209310999865],[129.77453640300007,-27.29710956999986],[129.65783711200015,-27.211910039999964],[129.54754654400017,-27.16351121599996],[129.4127501700001,-27.165610972999957],[129.29093935900005,-27.07651517399995],[129.3130490960002,-27.035213441999872],[129.50154106500008,-27.006212536999953],[129.64013706700018,-27.00350793499996],[129.77754201900007,-26.936206663999883]]]},"properties":{"objectid":286,"eco_name":"Great Victoria desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Australasia","eco_biome_":"AU13","nnh":2,"eco_id":211,"shape_leng":83.8369368088,"shape_area":38.9245538329,"nnh_name":"Nature Could Reach Half Protected","color":"#B3493B","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":424022.1418060374,"percentage":1.6072294359583599}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-74.72095461799984,10.81084566300018],[-74.81000563299989,11.040616428000135],[-74.85954251399988,11.075163113000087],[-75.00683551899994,10.98502630500019],[-75.03517154799994,10.913588518000097],[-75.15715053599996,10.837821477000148],[-75.25900256199998,10.80519190200016],[-75.2798465109999,10.716927947000045],[-75.39115851999998,10.68220339800007],[-75.50901763399997,10.578223710000032],[-75.49967164499998,10.506206733],[-75.41638151099994,10.476634708000063],[-75.37010954999988,10.384086259000185],[-75.45304864899998,10.209308658000054],[-75.47336554499992,10.089948848],[-75.45680960899995,10.007830504000083],[-75.58232156899999,9.942679144000124],[-75.64754450999999,9.753650631000085],[-75.56667356099996,9.609048720000033],[-75.62179563899991,9.442406426000048],[-75.73129263099997,9.38484253300004],[-75.6150896129999,9.32999052000008],[-75.40196949899996,9.322226195999974],[-75.26840957199988,9.39689286000015],[-75.20909855399992,9.604867156000068],[-75.22371659299989,9.722459726000068],[-75.26730349599995,9.772549141000184],[-75.29469253799994,10.034882929000105],[-75.19894454899998,10.196403377000138],[-75.04494451199997,10.300932080000052],[-75.01325253599992,10.439270363],[-74.92091363499998,10.517070853000064],[-74.79616560199997,10.494991411],[-74.7583085689999,10.532000867000136],[-74.6981585229999,10.709647593000057],[-74.72095461799984,10.81084566300018]]],[[[-74.09254455999996,11.325324869000099],[-74.15470156899988,11.325954852999985],[-74.21398157399994,11.25984745300019],[-74.2367855469999,11.179252101000145],[-74.21555351599989,11.067569611000124],[-74.21688858499994,10.877678768000067],[-74.18320456599992,10.868563448000089],[-74.07852163599995,10.960470010999984],[-74.13850354099998,11.100953223000033],[-74.10990163799994,11.18188368300008],[-74.05120048799989,11.226266531000078],[-73.88413256099994,11.23385500300003],[-74.00951359499993,11.34497942600018],[-74.09254455999996,11.325324869000099]]],[[[-71.60325661099995,12.441489439000065],[-71.59951761099995,12.407057754],[-71.71323355099992,12.34192902500007],[-71.77375759699999,12.277076564000083],[-71.83994261299989,12.35555112700007],[-71.92393464799989,12.30040289800013],[-71.8658064839999,12.247810479000066],[-71.93112950599993,12.155352722000032],[-71.99104351699998,12.246833484000149],[-72.12847152599988,12.24297495899998],[-72.14787261399994,12.08497356900017],[-72.23473360599996,11.905550885000025],[-72.34504649299993,11.835899784000048],[-72.52111859499996,11.781504585],[-72.62509157799991,11.724549385000046],[-72.73403955499992,11.699128246000157],[-72.87524461699991,11.575333571000044],[-73.03057050299998,11.49463109900006],[-73.27778652299997,11.287985334000155],[-73.25447862999994,11.161184070000104],[-73.16209463399991,11.09381184100016],[-73.09761064099996,10.953556617000118],[-73.10640761599996,10.806991664000066],[-73.17443061599988,10.739273430000026],[-73.17872650899989,10.650647544000037],[-73.33534253799985,10.570593160000158],[-73.33117656399992,10.477312804],[-73.36774462799991,10.383794400999989],[-73.4535295519999,10.3112324330001],[-73.57163961999993,10.246705860000077],[-73.56146952199992,10.159415044000127],[-73.61423460799989,10.000891127000102],[-73.58136748899994,9.912587441000028],[-73.47457164899993,9.849515967],[-73.37422149299988,9.861900061000085],[-73.22064960399996,9.991407841000068],[-73.22076460299996,10.110616609999965],[-73.19382449599988,10.156104360000086],[-73.24301151499992,10.241255276000118],[-73.16343657599992,10.298627392000128],[-73.13867157299995,10.415609927000048],[-73.03064761599995,10.6130423030001],[-72.9403535639999,10.699652341000103],[-72.88587152899999,10.80367813000015],[-72.80474057299995,10.849190858000043],[-72.72629551499989,10.98343860500006],[-72.63195752999991,11.004651023000179],[-72.59141560499995,11.080718806000164],[-72.43711851399996,11.198860558000092],[-72.34877057199998,11.198951585000088],[-72.1964566389999,11.158087292000175],[-72.11249561799991,10.972464347000141],[-71.97529559799995,10.810671654999965],[-71.93437162599997,10.718486813000084],[-71.92701751199996,10.526956134000045],[-71.82857557899996,10.388686918000076],[-71.77403252399989,10.34232409700013],[-71.62970754999986,10.439249408000137],[-71.58998856099993,10.71347929600006],[-71.67026556799993,10.797749275000115],[-71.74440752499999,10.942335260000107],[-71.87693061099998,10.982232449000094],[-71.97561662499993,11.08382547400015],[-72.00698857899994,11.158284435000041],[-71.99141651199983,11.540934073000074],[-71.93467756499996,11.60813631700006],[-71.80020149599994,11.65564611800005],[-71.43349457299996,11.728678981000087],[-71.33624253499994,11.800487080999972],[-71.28321861599994,11.917859207000049],[-71.13586458999993,12.006249895999986],[-71.11371658399997,12.086158603000172],[-71.23753355499997,12.319680605000087],[-71.29697449199983,12.356784105000145],[-71.42905451099995,12.384465172000148],[-71.49120364099997,12.43076999100009],[-71.60325661099995,12.441489439000065]]]]},"properties":{"objectid":288,"eco_name":"Guajira-Barranquilla xeric scrub","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Neotropic","eco_biome_":"NO13","nnh":4,"eco_id":602,"shape_leng":20.596488813,"shape_area":2.60459330079,"nnh_name":"Nature Imperiled","color":"#F7975B","color_bio":"#CC6767","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":31673.88784297879,"percentage":0.12005789291014407}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-79.54486059899995,-1.759412733999909],[-79.60143257799996,-1.593465131999949],[-79.68390664999998,-1.577170544999831],[-79.7853166139999,-1.707031705999952],[-79.8023685899999,-1.890445013999852],[-79.83371757899988,-2.006851208999933],[-79.80713655199997,-2.071541564999904],[-79.85866564299988,-2.162816634999956],[-79.76776155599998,-2.173759711999878],[-79.72924050799998,-2.315173147999815],[-79.63674955999988,-2.410504052999954],[-79.61045854699995,-2.603462672999967],[-79.70205665499992,-2.716959173999953],[-79.7382435109999,-2.884577791999959],[-79.6802365499999,-2.894614952999973],[-79.61668361899996,-2.673829419999947],[-79.56298059699998,-2.615582904999883],[-79.47724965299989,-2.418383712999912],[-79.49093663099995,-2.322001716999921],[-79.61797359299993,-2.136331664999886],[-79.59814452499995,-2.065121864999981],[-79.53432454699993,-2.003268448999961],[-79.43215953999999,-1.957531922999976],[-79.42161560899996,-1.914505266999925],[-79.54486059899995,-1.759412733999909]]]},"properties":{"objectid":289,"eco_name":"Guayaquil flooded grasslands","biome_num":9,"biome_name":"Flooded Grasslands & Savannas","realm":"Neotropic","eco_biome_":"NO09","nnh":4,"eco_id":582,"shape_leng":3.68457003111,"shape_area":0.237694387105,"nnh_name":"Nature Imperiled","color":"#46B7F1","color_bio":"#BEE7FF","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":2943.5266900571337,"percentage":0.25455042305995773}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-55.81796250699995,2.227987022000093],[-55.86441048799992,2.285938830000134],[-55.978759595999975,2.304171313000097],[-56.09531062999997,2.121175926000035],[-56.05704154299997,2.004868638000175],[-56.060172518999934,1.837750084000049],[-56.10404256199996,1.84597642000017],[-56.13298761999988,1.545801021000102],[-56.16423049399998,1.37803756400001],[-56.08538846899995,1.236919003000082],[-56.07735458199994,0.988213519000112],[-55.96451555699997,0.939980360000163],[-55.86006949999995,0.973542842000143],[-55.846824583999876,1.044812320000062],[-55.764877566999985,1.120031854999979],[-55.66728254199984,1.154814071000033],[-55.65668463099996,1.062619171000165],[-55.555107530999976,1.034035372000062],[-55.596038543999896,0.940007182000045],[-55.679260616999954,0.973015620000069],[-55.76859259399998,0.894277530000181],[-55.856468633999896,0.745571839000092],[-55.925414481999894,0.715140166000026],[-55.97305252599995,0.638458660000026],[-55.971679569999935,0.541745914000103],[-55.90375547699995,0.465124925000168],[-55.81564356899986,0.465438911000035],[-55.672920544999954,0.553882239000188],[-55.633506488999956,0.487873243000138],[-55.389564607999944,0.510888440000087],[-55.32166247499998,0.551687185999981],[-55.28320362099993,0.625012914000024],[-55.188735548999944,0.932723644000134],[-55.145675532999974,1.008324219000031],[-55.044410575999905,1.068405701000017],[-55.04017654099988,1.152432269000144],[-55.08341961799988,1.178164543999969],[-55.180961501999946,1.150294548999966],[-55.260131594999905,1.248924236000164],[-55.35947458199996,1.645949341000062],[-55.301208619999954,1.759421032000091],[-55.13893849499988,1.853516109000054],[-55.230911609999964,1.936119933000043],[-55.400375586999985,1.933036901000037],[-55.52381855699997,1.954861365000113],[-55.57616454899983,1.99102558900006],[-55.76071947199995,2.226342157000147],[-55.81796250699995,2.227987022000093]]],[[[-50.75534059299997,2.034590364000167],[-50.75743858299995,2.146173109000188],[-50.79129761699994,2.186847132000025],[-50.86236559399998,2.556913354000187],[-50.94311550899994,2.509583932000112],[-50.897125514999914,2.050072409000109],[-50.911819493999985,1.807500466000079],[-50.98354360699989,1.742767362999984],[-50.97389955699998,1.684002511000187],[-50.89552356499996,1.631351586000108],[-50.92739860199998,1.545446131000062],[-50.89054152999995,1.464529081000023],[-51.093872586999964,1.188404715000047],[-51.20821348099997,1.090707096000074],[-51.25714853999989,1.009547977000182],[-51.16772452999999,0.918864670000062],[-51.18843855999995,0.799427746000049],[-51.33921860399994,0.71471503600003],[-51.37326053099997,0.632227218000082],[-51.32063257199991,0.520076515000142],[-51.227371493999954,0.465057702000024],[-51.22402158299997,0.34422167200006],[-51.28840650099994,0.313809948000142],[-51.423828552999964,0.38651072000016],[-51.473052619999976,0.270784297000091],[-51.54026760499994,0.185147734000111],[-51.36164053099998,-0.053745223999897],[-51.167968610999935,-0.091043519999914],[-51.05960049299995,-0.041952388999903],[-51.010280536999915,0.063549788000159],[-50.91340249999985,0.146593661000054],[-50.86180853299987,0.270300494000139],[-50.86512759899995,0.393401146999963],[-50.766990599999986,0.367094209000072],[-50.731231556999944,0.504735956000104],[-50.744590466999966,0.649785126000154],[-50.89127360499998,0.737586400000055],[-51.03392756199992,0.774760476000097],[-51.040214492999894,0.82889566800003],[-50.978828618999955,0.89611149100017],[-50.85977156299998,1.111082329000055],[-50.75856058499994,1.260617326000045],[-50.73908255099985,1.159204009000177],[-50.68118254299992,1.117161891000023],[-50.650360607999914,1.213424864000103],[-50.58529658799995,1.298932346000186],[-50.66172060199989,1.322791602000052],[-50.695968554999865,1.431278407000093],[-50.804511518999846,1.548659585000053],[-50.807319624999934,1.702822062999985],[-50.72821055199995,1.908917975000122],[-50.75534059299997,2.034590364000167]]],[[[-60.11413950499997,5.534489912000026],[-60.257156565999935,5.516614330000152],[-60.15883248299991,5.427235917000189],[-60.11413950499997,5.534489912000026]]],[[[-61.564681494999945,5.958784869000112],[-61.6920056219999,5.97012491300012],[-61.727004593999936,5.905688697000187],[-61.83282863599999,5.887029910000138],[-61.927295534999985,5.805117929000119],[-62.00757958299994,5.800187526000116],[-62.0794026019999,5.719305178000127],[-61.945575626999926,5.689465602000155],[-61.946918575999916,5.614065019000122],[-61.87779955799988,5.48506954100003],[-61.66527556499983,5.380376385000091],[-61.55736157899992,5.298038435000137],[-61.5471765609999,5.226867360000085],[-61.68540151999997,5.119911425000055],[-61.75473360599989,5.120207474000154],[-61.88905360399997,5.285415121000142],[-61.90621152799997,5.190003079],[-62.01485457199988,5.067422271000112],[-61.90528448899994,4.92978639200004],[-61.79504754299995,4.894817930000045],[-61.65253054599992,4.771106068000165],[-61.60476258199998,4.769554075000087],[-61.45743152299991,4.882627961000139],[-61.42010858499998,4.835868340000047],[-61.55424451699997,4.732194927000023],[-61.771099606999826,4.70720377900011],[-61.73436356999997,4.670547370000179],[-61.660816559999944,4.70506605900016],[-61.535354556999835,4.690663938000171],[-61.29648255399991,4.694389861],[-61.322593522999966,4.814857926000172],[-61.236679517999846,4.843196806000151],[-61.14129262199992,4.71279953800007],[-61.09886560699994,4.609697938000011],[-61.04558553699991,4.614049654000041],[-61.00280748799992,4.511366311000188],[-60.93893453599998,4.551543455000171],[-60.77825160799989,4.55036227800008],[-60.74273647799998,4.449678018000156],[-60.88159158899998,4.448613014000159],[-60.92868061899998,4.376604251000117],[-61.02281157099998,4.327487807000182],[-61.12723549999998,4.304682660000026],[-61.12613663199994,4.222395840000161],[-61.270946582999954,4.108363233000091],[-61.47742051799992,4.032987795000111],[-61.71247858799984,3.904076136000128],[-61.90627254799995,3.917852296000092],[-62.05308560599997,3.857440567000026],[-62.00038153999998,3.782148278000079],[-61.79980460799999,3.707847903000129],[-61.60954261399996,3.66884070500015],[-61.520400570999925,3.496308616000022],[-61.56415561399996,3.399333852000098],[-61.52309451499991,3.311327221000113],[-61.63888547799996,3.293307470000116],[-61.621856635999904,3.222491955000066],[-61.72465548199989,2.917981436000161],[-61.78218048299988,2.839395394000064],[-61.8043595019999,2.715083555000035],[-61.79679852199996,2.587256179000121],[-61.869049521999955,2.56127211200004],[-61.972495617999925,2.465824363000081],[-62.04043563699986,2.370275360000107],[-62.049980612999946,2.280217175000189],[-61.96356151499987,2.147532989000069],[-61.90879851799997,2.106212218000053],[-61.92522453399988,2.025302209000188],[-61.85428647599997,2.016964898000026],[-61.76340451699997,2.104398374000084],[-61.64184563099997,2.144915153000056],[-61.52005758299998,2.006156601000043],[-61.5366135189999,1.908049945000073],[-61.49531554599997,1.797423072000072],[-61.41891449899998,1.74900668500004],[-61.39547752399994,1.649487175000047],[-61.28511853699996,1.531141910000031],[-61.21735353199995,1.532382935000101],[-61.17402663599995,1.666087031000075],[-61.0987395439999,1.81078516700012],[-60.98478656399993,1.916428327000176],[-61.02185050199995,2.041248780000046],[-61.0018925199999,2.132595264000031],[-60.89035051099995,2.225777049000101],[-60.832252521999976,2.307649970000057],[-60.68214453899998,2.411166475000073],[-60.59394847699997,2.415323061000095],[-60.42824562699997,2.574738980000177],[-60.39697257899985,2.646681861000104],[-60.296081621999974,2.670272895000153],[-60.18973555399998,2.631983858000183],[-60.105598512999904,2.513612778000038],[-60.0969165379999,2.421957672000076],[-60.019676628999946,2.307007079000073],[-59.95129354299996,2.252786223000044],[-59.88909948599991,2.315448326000137],[-59.74434653299983,2.296765734000132],[-59.711742605999916,2.243496895000021],[-59.7295834869999,2.062403362000111],[-59.66175058799996,2.001531970000144],[-59.54829750499988,2.06218627100003],[-59.47942759799997,2.204520710000054],[-59.28044859199997,2.405350607000116],[-59.29389551199995,2.477918443000135],[-59.168418588999884,2.618562923000184],[-59.09305555599997,2.836678484000174],[-59.12375259999993,2.980944952000073],[-59.30876551099993,2.957212766000055],[-59.339973515999986,3.032625084000074],[-59.42726550499998,3.001355221000154],[-59.49993157699993,3.043130124000072],[-59.610595497999896,3.036863645000039],[-59.69415251099997,3.10154478000004],[-59.77544356099992,3.103869585000098],[-59.83134850799996,2.984697697000172],[-59.87921856299994,3.048054995000143],[-59.85633060299995,3.128786804000015],[-59.75123260099997,3.271256359],[-59.58114249599993,3.403871311000103],[-59.40563550099995,3.590018461000057],[-59.382690543999956,3.678038],[-59.40625760599994,3.767513307],[-59.37163548499984,3.807327515000168],[-59.28630050199996,3.800456869000129],[-59.11867149099987,3.838394201000085],[-59.09920150299996,3.972042139000166],[-59.31208055399992,4.011381260000178],[-59.38500562599995,3.952840540000125],[-59.502494594999916,3.956078469000033],[-59.61797358399991,4.071053035000148],[-59.63269857599988,4.137567963000151],[-59.710540472999924,4.196222510000155],[-59.66894561399994,4.316459737],[-59.54691348499995,4.433513015000187],[-59.50572548399998,4.546392776000062],[-59.519454537999934,4.653169841000079],[-59.61556261399994,4.506732795000175],[-59.74816147199988,4.513106227000094],[-60.09128155199994,4.552658249000046],[-60.05573255899992,4.608193219000157],[-59.81720354399988,4.561652534000018],[-59.74337054399996,4.624908913000127],[-59.820758476999856,4.731397975000164],[-59.87022763099998,4.741689444000031],[-59.959712493999916,4.679811887000142],[-59.96910056099989,4.776400581000075],[-59.946807547999924,4.879755147000139],[-60.07091553899994,4.831495501000177],[-60.09717553899992,5.027346213000158],[-60.16156062499988,4.909426917000076],[-60.37512950699988,4.94614015600007],[-60.4084314779999,5.01022852300008],[-60.57641252999997,4.971968152000159],[-60.63613560099992,5.108267286000057],[-60.839187540999944,5.117505652000034],[-60.885059517999935,5.150342260000059],[-60.95434147999998,5.292204631000061],[-61.05132663799992,5.359155920000148],[-61.0997046359999,5.423226015000068],[-61.214588509999885,5.431083546000139],[-61.270473507999895,5.493638863000115],[-61.04672262599996,5.552365662000057],[-61.043743529999915,5.635785548000058],[-61.11495953199994,5.707887182000036],[-61.177532618999976,5.699071934000074],[-61.16516159999992,5.845274957000015],[-61.26292459799987,5.887547912000173],[-61.27476152199995,5.806436067000107],[-61.41052656099998,5.956346070000052],[-61.564681494999945,5.958784869000112]],[[-60.23963956199998,2.99517088500005],[-60.20553560999997,2.929760692000059],[-60.11402852799989,2.899592043000155],[-60.22089360299998,2.82563432000012],[-60.310394558999974,2.793966820000094],[-60.527893547999895,2.826937371000042],[-60.517333522999934,2.885266030000082],[-60.42328655799997,2.910055173000046],[-60.39555352199994,2.969451853000123],[-60.23963956199998,2.99517088500005]],[[-61.4257816249999,2.573309363000078],[-61.32160948799998,2.561469254000031],[-61.303817556999945,2.439157338000143],[-61.23426050099988,2.374877863000165],[-61.29795055999989,2.22777797700013],[-61.370407586999875,2.402898901000128],[-61.442550627999935,2.402070936000086],[-61.55427552999993,2.519000330000097],[-61.4257816249999,2.573309363000078]],[[-61.71312751499988,2.327864606000048],[-61.74691060799984,2.201332065999964],[-61.84657260999995,2.190366693000158],[-61.934524590999956,2.235251449000089],[-61.841567607999934,2.28276678200001],[-61.7666545159999,2.391999912000074],[-61.71312751499988,2.327864606000048]],[[-61.29589062399998,1.650023112999975],[-61.35405751099995,1.684643559000108],[-61.38450661899992,1.760235753000075],[-61.29571560999989,1.870561715000179],[-61.187881586999936,1.908806663000178],[-61.17395052899997,1.748713821000138],[-61.201881543999946,1.67573007500016],[-61.29589062399998,1.650023112999975]]],[[[-61.05566460799997,5.996278966000091],[-61.01097162999997,5.853273639000179],[-60.933502559999965,5.900941858000124],[-61.05566460799997,5.996278966000091]]],[[[-60.981174633999956,6.300165704000165],[-61.04672262599996,6.297186943000156],[-61.052684505999935,6.228663041000061],[-60.972236507999924,6.175036965000174],[-60.89036559799996,6.273290640000141],[-60.981174633999956,6.300165704000165]]],[[[-60.92456460099993,6.511695436000139],[-60.87689252699994,6.583198267000057],[-60.90370958799991,6.642784881000182],[-60.99905055199986,6.624907958000108],[-61.00501259899994,6.541488073000039],[-60.92456460099993,6.511695436000139]]]]},"properties":{"objectid":294,"eco_name":"Guianan savanna","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Neotropic","eco_biome_":"NO07","nnh":1,"eco_id":570,"shape_leng":55.257953262,"shape_area":8.50414290552,"nnh_name":"Half Protected","color":"#FCD379","color_bio":"#FEAA01","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":105195.35007453916,"percentage":0.490672478855688}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-14.923069432999853,10.894813557000191],[-14.95433057899993,10.9742481830001],[-15.077989466999952,10.889444110000113],[-15.014889493999931,10.776976823000041],[-14.923069432999853,10.894813557000191]]],[[[-16.118770552999933,11.207642110000165],[-16.246969582999895,11.103839112000173],[-16.16161951299989,11.016006154000081],[-16.063470443999904,11.036244930000066],[-16.06547958599998,11.183903721999968],[-16.118770552999933,11.207642110000165]]],[[[-15.660679510999955,11.306330638000134],[-15.708820552999953,11.306535156],[-15.783670445999974,11.23433109500013],[-15.73130953499998,11.17875488600015],[-15.660679510999955,11.306330638000134]]],[[[-16.27973947199996,11.590765493000049],[-16.412740493999877,11.500601696000103],[-16.28244045599996,11.49225231500003],[-16.27973947199996,11.590765493000049]]],[[[-15.490800042999922,11.591021057999967],[-15.540590558999895,11.609205345000078],[-15.624480501999926,11.524721125000156],[-15.566530537999881,11.502552668000078],[-15.490800042999922,11.591021057999967]]],[[[-15.994950564999954,11.880255642000122],[-16.10419056799998,11.861697941000045],[-16.149179510999943,11.808970573000067],[-16.040340581999885,11.773013885000069],[-15.994950564999954,11.880255642000122]]],[[[-15.882809584999904,13.428489887000069],[-15.99481947199996,13.411972006000155],[-16.145637569999963,13.333089412000106],[-16.214836550999962,13.255988476000141],[-16.361141497999938,13.230288387000087],[-16.53314753899997,13.24214928300006],[-16.628047446999915,13.30343524500006],[-16.732719479999957,13.450629343000116],[-16.824289592999833,13.328647506000095],[-16.794160506999958,13.22870437500012],[-16.78226055099998,13.07667458900005],[-16.748880459999896,13.037037239000142],[-16.791479470999832,12.792424805999985],[-16.772199584999953,12.572178565000115],[-16.67483296699993,12.558407014000124],[-16.513179498999932,12.443827320000139],[-16.39089054899989,12.334704831000067],[-16.304750567999918,12.33170478000011],[-16.20352953099996,12.420768704000068],[-16.071159498999975,12.42641844200017],[-16.018609491999882,12.388331074000064],[-15.996190582999873,12.299908198000026],[-16.03158953999997,12.239691097000048],[-16.152490446999877,12.13638816300005],[-16.023349457999927,12.009637862000034],[-15.881030441999883,12.130889635000187],[-15.685059533999947,12.170955803000084],[-15.24722947999993,12.104311458000154],[-15.241379581999979,11.99241808000005],[-15.206669450999982,11.969179588000031],[-14.963199470999939,12.033795345000158],[-14.880169510999963,12.03345604500015],[-14.840299479999885,11.991399175000026],[-14.84805944599998,11.913813430000062],[-14.904499493999936,11.875925886000118],[-15.038800548999859,11.85656838400007],[-15.28411052499996,11.784632376000104],[-15.284079511999892,11.747134926000115],[-15.12559046299998,11.77184427400016],[-15.026679478999881,11.719236599999988],[-14.925180498999907,11.58839559400019],[-15.005829494999944,11.559738538000147],[-15.150340546999928,11.558037849000016],[-15.169799469999873,11.520020554000155],[-15.09193946899984,11.44632535300019],[-15.188619524999979,11.357521603000066],[-15.123749461999978,11.338622757999985],[-15.072999551999942,11.427517703000092],[-14.995670460999975,11.439766849000023],[-14.999540552999974,11.321345141000165],[-15.086589466999953,11.16187624800017],[-14.991270463999967,11.205661969],[-14.949754562999942,11.327831561000039],[-14.885589584999934,11.387429575],[-14.802029553999887,11.313144622000095],[-14.75104059299997,11.088190267000073],[-14.68251953999993,11.121588966000104],[-14.62716058999996,11.197352653000166],[-14.569370552999885,11.12616749600005],[-14.60848051299996,10.94079131400008],[-14.362750436999875,11.006727052000087],[-14.284749450999925,11.00175608100011],[-14.223730536999938,10.947931019000066],[-14.227390578999916,10.886254293000036],[-14.367810591999955,10.767352637999977],[-14.497839558999942,10.557887201000028],[-14.552129480999952,10.417447072000073],[-14.46345045399994,10.338523407000082],[-14.471150572999875,10.254808310999977],[-14.317090521999944,10.19705247200011],[-14.238039451999953,10.114588123000033],[-14.137599440999907,10.046332944000085],[-14.078619508999907,10.065041520000136],[-14.032739485999912,9.995554536999975],[-13.878179537999927,9.905385878],[-13.82666050499995,9.845578149000175],[-13.717709509999963,9.874726888000112],[-13.69289957999996,9.93308706199997],[-13.594710444999976,10.015296266000178],[-13.550860518999968,9.999646079000115],[-13.453060472999937,9.846645164999984],[-13.451435556999968,9.740754403000096],[-13.372534522999956,9.732221122000055],[-13.173868497999877,9.638803638000127],[-12.904731453999943,9.46582680500012],[-12.638825465999957,9.3272286830001],[-12.469089578999899,9.221508241000095],[-12.239845532999936,9.060873760000106],[-11.997127577999947,8.852465449000022],[-11.825662504999912,8.68476636500003],[-11.754996522999875,8.648425115000123],[-11.636852591999968,8.634588102],[-11.519827476999922,8.70258126200008],[-11.407070426999894,8.93633058100005],[-11.33822952099996,9.165774285000055],[-11.225230569999951,9.330352618],[-11.119007548999832,9.384159743000055],[-10.980388471999902,9.39115209400012],[-10.744183590999967,9.3493661280001],[-10.570587502999956,9.304340219999972],[-10.482567460999917,9.195849056000043],[-10.09461459299996,8.637586979000105],[-9.898488451999867,8.410646950000057],[-9.66689847799995,8.558608496000147],[-9.5456904589999,8.622416740000176],[-9.437308426999948,8.651925901000084],[-9.394556529999875,8.706343060000108],[-9.357707503999904,8.84563201900005],[-9.451747428999909,8.85451432200017],[-9.603284526999914,8.914935103000118],[-9.676959443999976,8.924210348999964],[-9.721634484999981,9.027009195000062],[-9.714920580999944,9.09611111400011],[-9.625506460999873,9.14104800600012],[-9.487113527999952,9.14101196300004],[-9.536904547999939,9.206611252000187],[-9.534811585999876,9.27667625099997],[-9.415894507999951,9.286977443000183],[-9.359119519999979,9.24269283100017],[-9.296470492999958,9.127199089999976],[-9.214260450999973,9.11445390299997],[-9.23420351399983,9.279600027000129],[-9.091124425999965,9.334742053000014],[-9.114941435999981,9.13453241700006],[-9.046071528999846,8.965685515000075],[-9.086887541999943,8.76136204100004],[-9.037912583999969,8.70842378400016],[-9.012168574999919,8.55462575100006],[-8.940340525999886,8.525396881000177],[-8.889683487999946,8.71546726500003],[-8.904140426999902,8.859413879000101],[-8.936432546999924,8.921175598000161],[-8.973025589999963,9.152582007000092],[-8.94801952299997,9.280042927000181],[-8.862925435999898,9.375482294000165],[-8.912603466999883,9.111776053000085],[-8.907039559999873,9.001301898000122],[-8.867416458999969,8.929306882000049],[-8.86537747799997,8.669622613000058],[-8.825425470999903,8.549498038000081],[-8.852480577999927,8.49842492300013],[-8.73742856399997,8.454227986000149],[-8.719144447999952,8.399991875000126],[-8.592021486999897,8.315781744000049],[-8.162296564999963,7.957460579000099],[-7.96967657499988,7.83333867500005],[-7.560275588999957,7.667294514000105],[-7.532002423999927,7.812245113000188],[-7.416940518999979,7.787293863],[-7.358716465999976,7.816403878000131],[-7.240882497999962,7.751253356000063],[-7.282471489999978,7.670854141000177],[-7.475164570999937,7.587683365000032],[-7.463328485999966,7.490853105000156],[-7.392522525999937,7.522179127000015],[-7.192718573999912,7.655516264000084],[-6.867346502999908,7.839562070000113],[-6.887896582999929,7.944500480999977],[-6.75646046199995,7.972454463000076],[-6.64970049599998,7.973324337000122],[-6.700633465999886,7.819016517000023],[-6.564864571999976,7.800167796000039],[-6.514922510999952,7.734272793000116],[-6.558864469999946,7.631288037000104],[-6.461643445999812,7.618035913000028],[-6.454854439999963,7.451604005000036],[-6.367269585999964,7.122343067000145],[-6.258336528999962,7.133234009000091],[-6.256256474999873,7.189840186000083],[-6.363028510999868,7.523619809000024],[-6.275671477999936,7.567055837000055],[-6.204659490999916,7.541811556000027],[-6.124720441999955,7.428943697000079],[-6.069753429999935,7.261934779000114],[-6.121409422999875,7.136064075000149],[-6.09033452299991,7.064739108000026],[-5.929119510999953,7.087262623000129],[-5.852408500999957,7.048098180000181],[-5.700170507999871,6.884745281000164],[-5.566891541999951,6.929149920999976],[-5.553917528999932,7.051889147000054],[-5.410555468999974,6.935041394000109],[-5.323113442999841,6.994588278000151],[-5.267226432999962,6.975656576000119],[-5.159267519999958,6.826411593000159],[-5.02731155399988,6.683696783000187],[-5.020127424999941,6.566426246000105],[-4.964557585999898,6.301289717000145],[-4.794613492999929,6.1068300660001],[-4.746907555999883,6.452244608000058],[-4.719317514999886,6.520370706000108],[-4.55185245399997,6.55351828300013],[-4.505845528999885,6.59962411500004],[-4.531040523999877,6.722849826000129],[-4.45400144599995,6.796379737000052],[-4.2840845099999,6.88217136600008],[-4.279777552999974,6.947673592000115],[-4.408240445999979,7.11385353999998],[-4.260980464999818,7.24804881600005],[-4.22728253199989,7.317277804000071],[-4.233306437999943,7.509120960000075],[-4.325473509999824,7.745987677000073],[-4.268977470999971,7.98219993400005],[-4.212750490999838,8.036804010000026],[-4.032803434999948,8.069786464000174],[-3.948700423999981,8.050715790000027],[-3.855459462999931,7.994375822000109],[-3.714767540999958,7.985798452999973],[-3.688338561999956,7.927394860000163],[-3.532318486999941,7.893741351000187],[-3.412625579999883,7.79284033600004],[-3.358747544999972,7.616430108000088],[-3.301059430999885,7.584137652000038],[-3.220007432999978,7.722454478000031],[-3.146559497999874,7.805332557000042],[-2.777340517999903,8.02708670200019],[-2.667942432999951,8.054285475000086],[-2.526774418999935,8.018539340000132],[-2.389225543999942,7.953876813000079],[-2.277813454999944,7.853756991000125],[-2.104943574999936,7.657853138000178],[-1.625123537999968,7.295082524000179],[-1.401775490999967,7.169952445000092],[-0.988799455999924,6.999141830000156],[-0.700087482999947,6.850389703000076],[-0.69888853599997,6.798662297000078],[-0.603055553999923,6.705613281000069],[-0.559444511999914,6.726167719000102],[-0.417499495999891,6.674227579999979],[-0.371388467999907,6.612287159000061],[-0.277996463999955,6.602417636000155],[-0.162499537999963,6.508128601000124],[-0.035277502999975,6.432856260000051],[-0.008194483999944,6.330780019000031],[0.074722571000109,6.470631486000116],[0.11111143100004,6.432856260000051],[0.06611150700013,6.275367508000045],[0.090000434000046,6.197595349000096],[0.117537501000072,5.986254880000047],[-0.151075506999916,5.746648287000028],[-0.417264467999928,5.53476685000004],[-0.551497461999816,5.451025100000038],[-0.822108546999914,5.334169635000023],[-1.25904542599983,5.203217317000053],[-1.36173245699996,5.148314175000166],[-1.328248429999974,5.093852256000162],[-1.246983531999945,5.100162991000161],[-1.092568422999932,5.192134932000101],[-0.809011487999953,5.213184574000081],[-0.724099455999863,5.297935170000187],[-0.495813461999944,5.378294320000066],[-0.466799503999937,5.428550535000056],[-0.33493557099996,5.50488016900016],[-0.212782574999892,5.5305331510001],[0.023361454000167,5.63722120000017],[0.069418503000179,5.688875683999981],[0.395277562000103,5.82262269600011],[0.549066542000048,5.894800437000072],[0.44658654400007,5.998768726000037],[0.526319566000041,6.050098160000118],[0.7864054960001,6.006699348000041],[1.003633581000031,6.062516285000072],[1.106220532000066,6.069169840000029],[1.434465584000122,6.182387391000134],[1.870625459000109,6.278036306000047],[2.327578490000178,6.338709048000169],[2.580795449999982,6.352603058000113],[2.844388535000121,6.38779732800009],[2.915324582000039,6.450372928999968],[2.772845471000153,6.475447057],[2.578694442000085,6.484954315000095],[2.565650524000148,6.61404601800001],[2.635752572000058,6.840199321000171],[2.762130549000176,7.031636457000161],[2.828634581000131,7.07847503500011],[2.929399474000036,7.099181521000105],[3.09760650100003,7.068909775000066],[3.227725490000068,6.98486996400004],[3.303335453000045,7.003164641000183],[3.332751575000145,7.065123167000081],[3.362405575000025,7.234989643000176],[3.441222455,7.381142206999982],[3.645900484000151,7.607482929000128],[3.729172513000094,7.679023646000132],[3.845288526000047,7.732915931000093],[3.989375453000093,7.76760242600011],[4.41727647200014,7.956151661000149],[4.643377473000044,8.085962196000082],[4.933845454000163,8.175941759000068],[5.078172439000184,8.178027679000138],[5.188559422000026,8.150439819000155],[5.404201483000179,8.027842415000066],[5.53667444600012,7.899911606000103],[5.548971536000067,7.794262410000101],[5.524579527000071,7.631909974000166],[5.518802552000011,7.409391232000075],[5.619608516000028,7.238256406000062],[5.796910579000155,7.136524912000027],[5.899371466000048,7.008116334000022],[5.954064558000084,6.991041392000113],[6.101597454000057,7.013552837000134],[6.196564584000157,7.004337437000061],[6.357419509000067,6.918593585000167],[6.557504423000069,6.675920556000108],[6.62358650900012,6.568080163000047],[6.699209549000159,6.320073395000179],[6.76850257500007,6.293138316000125],[7.114558500000044,6.417639083000154],[7.18774257299998,6.36623505],[7.26183055100006,6.148529028999974],[7.361153589000082,6.054285927000137],[7.574349475000076,5.969293931000095],[7.799216492000028,5.921227405000138],[7.890094427000065,5.931313684000088],[8.191458548000071,6.141512538000029],[8.413106578000168,6.202770001000147],[8.642021551000028,6.007590177000111],[8.724781445000076,6.258730771000103],[8.70628543500004,6.326371892000054],[8.584559581000178,6.432304061000139],[8.549212425000121,6.522613703000104],[8.574382442000058,6.569719999000029],[8.998478580000096,6.570033147000174],[9.217863496000064,6.486670258000061],[9.372847568000111,6.527184355000145],[9.413658552000186,6.637519202000135],[9.520906512000124,6.633614409000074],[9.550865446000046,6.580652180000129],[9.55467451800007,6.419109101000117],[9.623385504,6.306217270000104],[9.6846154750001,6.250017615],[9.815670554000178,6.209691273000089],[9.891278506,6.212842031000037],[9.94168459000008,6.260094842000058],[10.033045490000063,6.238043227999981],[10.075602592000166,6.122746630000051],[10.136432578000097,6.118692136000163],[10.221593553,6.167351431000043],[10.185096567000016,6.228177226000128],[10.083713592000151,6.297112177000031],[10.148598575000165,6.374157290000028],[10.172930570000176,6.455257567000046],[10.286478536,6.43903774600011],[10.363530522000133,6.540413177000062],[10.440581502000043,6.580963316000123],[10.529797474000134,6.552578336000067],[10.667678439999975,6.617457787000149],[10.809614571000111,6.613402790000123],[10.92721854000007,6.451202905000116],[10.982436507000102,6.422325740000076],[11.062782581000135,6.424679546000164],[11.086916427000176,6.579723297000101],[11.049710500000117,6.662398367000094],[10.938090538999973,6.70786901800011],[10.927755484999977,6.8050129290001],[10.8843474520001,6.883554380000135],[10.942225499000187,6.939359079000042],[10.969096540000123,7.092308025000136],[10.981498572000078,7.332066834000159],[11.091051555000035,7.387871701000108],[11.08071650100004,7.270059358000083],[11.161330460000102,7.185318485000153],[11.155127517000153,7.127445634000026],[11.241943582000033,7.119178060000024],[11.31429047000006,7.005499336000184],[11.41920256200018,6.999968957000078],[11.47155358200007,7.133216239000092],[11.533423594000112,7.052316121000047],[11.685718584000142,7.118940182000074],[11.719032459000061,7.199840300000062],[11.576256461000014,7.347364644999971],[11.561979565000058,7.45205914200011],[11.581015538000088,7.528200686000105],[11.657162446000143,7.537719008000181],[11.795179534000056,7.480613101000074],[11.790420456999982,7.56151305200018],[11.904641490000017,7.575790115000075],[11.961751588000027,7.551995736000151],[12.014337469000111,7.629392218000021],[12.014337469000111,7.709358592000058],[12.134843588000024,7.847930395000162],[12.237273462000132,7.992525936],[12.195096564000039,8.094948602000045],[12.261374452000098,8.203396012000098],[12.237273462000132,8.317370617000165],[12.172865577000152,8.368184061000022],[12.199386590000074,8.46100056299997],[12.269004498000129,8.444426523000175],[12.408993513000041,8.486562518000142],[12.502189548000047,8.622050786000102],[12.48448747100008,8.669839537000087],[12.544160587000022,8.72950829400014],[12.706603546999986,8.749396874000126],[12.796112550000146,8.828954043000124],[12.804456567000102,8.945433999000102],[12.328359437000188,8.917895927000131],[12.048990436000167,9.015840812000135],[11.88726949300019,9.052516332000096],[11.48945045400012,9.042710846999967],[11.237409475000106,8.997030313000096],[10.983440491000067,8.866567331000113],[10.862890451000112,8.793280663000132],[10.661910516999967,8.712543322000101],[10.476180451000062,8.6995574070001],[10.137669579000033,8.776242769000078],[10.001649563000171,8.841918165000038],[9.872233481000137,8.929812814000172],[9.650639430000126,9.12723882000006],[9.59116245100006,9.224429167000153],[9.568890561000103,9.321076031000132],[9.500904441000102,9.275754242000176],[9.358267583000043,9.256737715000156],[9.277441561000046,9.190178531000072],[9.015940431000104,9.11411192100013],[8.930358517000116,9.066569096000023],[8.821004520000088,9.061814713000047],[8.754441480000082,9.137882161000107],[8.659350465000102,9.194932075999986],[8.659350465000102,9.35182185800005],[8.67836850000009,9.427889473],[8.630823496000119,9.518218058000059],[8.549996468000074,9.541990645000169],[8.47867753600002,9.513464513000145],[8.374077587000045,9.570515602000171],[8.52146949900009,9.722648821],[8.603759504000095,9.934031870000183],[8.282309493000184,9.961099885000067],[7.93674256800017,9.95752031000012],[7.624342499000079,9.88783601700004],[7.438776550000171,9.90514179700017],[7.082135454000024,10.023925435000137],[6.505735442000116,10.293336566999983],[6.330444533000161,10.267737564000129],[6.063783503000138,10.127067268000076],[5.775576456000181,10.031524133],[5.301445553000121,9.836916625000072],[4.936282576000167,9.617311265000069],[4.810040553000135,9.526054803000022],[4.600642507000146,9.34435240800019],[4.227045492000116,9.111089072000027],[4.09241251300017,9.03702322300012],[3.97765855900019,8.937220404000072],[3.696098528000107,8.611578772000144],[3.485274553000181,8.423142188999975],[3.335885569000084,8.324442094000062],[3.123512448999975,8.145474044000025],[3.027317537000101,8.045122379000077],[2.695408421000138,7.772770037000043],[2.560236486000179,7.689216879000014],[2.232928531000141,7.577759023999988],[2.075459560000013,7.547220063000168],[1.70581947300002,7.520635180000113],[1.166097495000145,7.513605614000028],[1.121605515000169,7.595463783000014],[0.900164518000054,7.376693428000067],[0.780181430000084,7.183119576000024],[0.643235548000177,6.8845473],[0.520070522000083,6.794715761000077],[0.42452654900012,6.782831731000158],[0.385867535000159,6.871965225],[0.516725472000076,7.024790119000158],[0.580156530000124,7.13345512300009],[0.605391423000015,7.31009820100013],[0.566069568000046,7.766655271000161],[0.583860493000088,7.918078542999979],[0.54703946300009,8.084777498000108],[0.437696530000096,8.103323129000103],[0.010523563000106,8.23149885700019],[-0.340554462999819,8.448170384000036],[-0.710205445999918,8.625031559000092],[-1.373587484999859,8.868578485000057],[-1.582028485999956,8.910896199000092],[-1.99523451999994,8.916087112000127],[-2.499290493999979,8.893909602000122],[-2.838741479999953,8.842027130000076],[-3.115622563999978,8.79070876000003],[-3.342664516999889,8.772229346000131],[-3.614789540999936,8.770473169000013],[-4.105311423999979,8.747092856000052],[-4.490312520999964,8.763806874000124],[-4.685211550999952,8.795296678],[-5.086883583999963,8.81581725400008],[-5.407927574999974,8.81805304300002],[-5.776548421999962,8.793855662000169],[-5.990478562999897,8.766766524000047],[-6.056972535999932,8.789867049000122],[-6.197337562999962,8.776442928000051],[-6.721748485999967,8.767327609000176],[-6.924159545999885,8.790475911000044],[-7.113874536999845,8.829912095],[-7.444966585999964,8.937717284000144],[-8.124713452999913,9.223929102000113],[-8.40878453299996,9.363597089999985],[-8.65459457299994,9.511331822000159],[-9.114145490999931,9.805047959000092],[-9.37988149399996,9.962685909000015],[-9.59800845399991,10.134226754000053],[-9.80028858799983,10.347481985000059],[-9.887540512999976,10.473442879],[-9.965262547999941,10.690427889000148],[-10.076910503999954,11.080680752000035],[-10.167559445999927,11.256348679000041],[-10.294630438999889,11.392770188000043],[-10.37397956999996,11.450235343000031],[-10.801420589999964,11.595536137000067],[-11.192069581999874,11.760283953000169],[-11.428310504999956,11.87275635300017],[-11.65007051799995,11.99028924400011],[-12.051850508999905,12.227722074000155],[-12.2082095479999,12.346144788000117],[-12.395669471999895,12.520952899000065],[-12.575639494999905,12.667723040999988],[-12.778949428999965,12.782315225000104],[-13.02770051099992,12.8556205000001],[-13.78925944699995,12.966862772000184],[-14.381540483999913,12.97056271200006],[-14.932339481999918,13.03149864500017],[-15.167920582999841,13.069634963000055],[-15.40423057299995,13.13189188500013],[-15.639510595999923,13.241314445000057],[-15.828769442999885,13.36416632400011],[-15.882809584999904,13.428489887000069]],[[-12.410297568999908,12.170979775000092],[-12.220396499999936,12.16848984700016],[-11.982213489999936,12.141041964000067],[-11.902311488999942,12.029241457000126],[-11.846899564999944,11.770158170000116],[-11.831834434999905,11.636105555000029],[-11.850824474999968,11.397161802000142],[-11.884179587999938,11.24078264600007],[-11.872325564999926,11.042016541000066],[-11.8375054629999,10.965364874999977],[-11.754469468999957,10.87228719300009],[-11.71443246999985,10.708922559000086],[-11.753290469999968,10.569712222000135],[-11.847959540999966,10.36806341300013],[-11.898785556999883,10.300423131000116],[-11.965004436999948,10.284112115000084],[-12.021734497999887,10.337491595000131],[-12.058967582999912,10.567608532000122],[-12.040868538999973,10.801838135000082],[-12.037017557999832,11.061772016000134],[-12.046097505999967,11.28154685900006],[-12.06818147399997,11.434699150000029],[-12.108198523999931,11.525819993000084],[-12.234210546999975,11.660154911000177],[-12.446056444999897,11.770632083000123],[-12.523677561999875,11.843314080000141],[-12.531053468999914,11.982713680000018],[-12.594152435999945,12.098838746000126],[-12.410297568999908,12.170979775000092]],[[-11.313397461999955,10.959533249000117],[-11.244637525999963,11.046748126000125],[-11.167901536999864,11.030723100000102],[-10.91882657899987,11.030397212000139],[-10.88296343199994,10.962926076000088],[-10.907288553999933,10.88202646100018],[-10.823671525999885,10.861352832000023],[-10.800481481999952,10.808131603000106],[-10.854223562999948,10.709258673000022],[-10.992660583999964,10.720593688000065],[-11.047182517999886,10.66979918700008],[-11.220203439999977,10.624232646999985],[-11.221464580999964,10.501946882000084],[-11.191105494999874,10.441400204000104],[-11.2476585309999,10.33968547400002],[-11.220026580999956,10.265358445],[-11.261742474999949,10.225897283000108],[-11.344790539999963,10.304792785000188],[-11.575384574999816,10.363104679000173],[-11.676139577999948,10.405425914000034],[-11.709179530999961,10.50878768900003],[-11.577796551999882,10.611649399000157],[-11.541116504999877,10.750467629000127],[-11.430243539999935,10.804233012000054],[-11.40708953799998,10.909567719000052],[-11.313397461999955,10.959533249000117]],[[-12.260096546999875,11.583927872000174],[-12.260549504999972,11.474654677000103],[-12.190924554999981,11.402999463000072],[-12.202602557999967,11.295263844000033],[-12.16659943399992,11.279028097000037],[-12.128482561999931,11.157062521000057],[-12.19141355599993,11.022554768000134],[-12.339609459999963,10.953508673000101],[-12.30708851299994,10.907551871000067],[-12.17737051499995,10.859717188000047],[-12.126951522999946,10.780969543000026],[-12.13856548799987,10.660136026000146],[-12.23390544599988,10.503184889000124],[-12.293008591999978,10.493527763000088],[-12.378241483999943,10.596930440999984],[-12.414565466999875,10.790703950000136],[-12.6168554919999,10.842891188000124],[-12.654644463999944,10.924988577000022],[-12.744613465999976,10.983143562000066],[-12.73816258599993,11.090661084000146],[-12.769843496999954,11.146256236000056],[-12.889651571999877,10.996909497],[-12.981983431999936,11.045239215000038],[-12.947300457999972,11.15415668300011],[-12.896435548999932,11.217422450000072],[-12.996087492999948,11.349211281000123],[-12.940239542999905,11.41951633800005],[-12.870016460999977,11.436619109000162],[-12.760199446999934,11.42078820800009],[-12.701482538999926,11.501275769000017],[-12.654726438999944,11.506623255000022],[-12.491234567999982,11.633097792000115],[-12.432685464999906,11.636072530000035],[-12.294859483999971,11.571206825000047],[-12.260096546999875,11.583927872000174]],[[-12.88131845099997,9.849901702000068],[-12.819978509999885,9.765627868000138],[-12.845020451999858,9.668964408000022],[-12.822998509999934,9.600059464000026],[-12.840827488999935,9.511083718000066],[-12.913606547999962,9.539625774000172],[-12.944442563999928,9.674717243000032],[-12.939967465999871,9.834461733000182],[-12.88131845099997,9.849901702000068]],[[-8.640948499999922,8.898005335000164],[-8.625872472999959,8.983395303000066],[-8.506212590999894,9.002801756000054],[-8.278475442999877,8.907017557000131],[-8.309595437999974,8.845291043000088],[-8.390624469999977,8.808333723000032],[-8.455210553999962,8.719559813000046],[-8.586708532999978,8.802481143000023],[-8.582783455999845,8.881950302000064],[-8.640948499999922,8.898005335000164]],[[-7.466330547999974,8.029981309000163],[-7.465078458999869,8.108300639000163],[-7.354211528999883,8.122027681000134],[-7.352120578999973,8.050724843000125],[-7.466330547999974,8.029981309000163]],[[-7.646927536999954,7.878230304000112],[-7.659958546999974,7.962681332000159],[-7.576589454999919,7.954575864000049],[-7.569022440999902,7.887023758999987],[-7.646927536999954,7.878230304000112]],[[-6.257836463999979,7.751396519000139],[-6.229265573999953,7.85548885999998],[-6.16111047499993,7.837105335000103],[-6.174267547999932,7.772186824000187],[-6.257836463999979,7.751396519000139]],[[-6.099864578999927,7.749618717000089],[-6.042150481999954,7.834040408000078],[-5.995554475999938,7.804127742000105],[-6.00130747899982,7.722165470000107],[-6.099864578999927,7.749618717000089]],[[-5.500659586999973,7.581801784000049],[-5.438333430999933,7.499722500000132],[-5.503334587999973,7.457503691000056],[-5.531303489999971,7.538936731000092],[-5.500659586999973,7.581801784000049]],[[-5.862884538999879,7.333569709000074],[-5.775000451999915,7.245296031000123],[-5.80832354599994,7.181597758000066],[-5.868237557999976,7.190418873000112],[-5.99744643899993,7.301435838999964],[-5.862884538999879,7.333569709000074]],[[11.77504955600017,8.03337799100018],[11.665649458000132,8.12619533100019],[11.692171476000055,8.29857000800007],[11.751843586000177,8.414591809000058],[11.672280550000096,8.540558906000115],[11.685540553000067,8.633376079000016],[11.612607434000097,8.71956283000003],[11.725321568000027,8.78254663000007],[11.791625440000132,8.646635244000095],[11.834721498000079,8.633376079000016],[11.907654449000177,8.437797108000098],[12.007108580000022,8.37812734500011],[12.017054547000043,8.21901267100003],[11.914284535000036,8.109620621000147],[11.960697479000146,8.020119161000025],[11.838036541000179,8.003544451000153],[11.77504955600017,8.03337799100018]],[[10.679199534000077,7.384541906000038],[10.698450586000035,7.515008576000128],[10.763688447000106,7.497897592000129],[10.788286483000036,7.414484747000074],[10.679199534000077,7.384541906000038]]],[[[-15.902823501999933,13.452694086000122],[-16.088939526999923,13.658485623000047],[-16.487180544999944,14.069933469000034],[-16.531396838999967,13.868333665000137],[-16.62409956999994,13.781428529000095],[-16.648529464999967,13.705573646000119],[-16.54073953099993,13.550222782000048],[-16.55610288899993,13.497717255000055],[-16.36311744799991,13.42205325600014],[-16.147615531999918,13.50310894200004],[-16.05321552099997,13.438099404000127],[-15.902823501999933,13.452694086000122]]],[[[-17.214363585999877,14.674904874999982],[-17.15847054099993,14.621502093000117],[-17.06092044299993,14.451854384000114],[-17.01115959799995,14.433234489000029],[-16.93654054299992,14.331952097],[-16.873640562999924,14.180291281999985],[-16.796037549999937,14.084679416000029],[-16.703380471999935,14.07759704300014],[-16.56344945999996,14.15034006000019],[-16.723880595999958,14.372559401000103],[-16.966279535999945,14.679248544000131],[-17.04527059199995,14.741394489000186],[-17.17090056799998,14.711066417000097],[-17.214363585999877,14.674904874999982]]]]},"properties":{"objectid":295,"eco_name":"Guinean forest-savanna","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Afrotropic","eco_biome_":"AF07","nnh":4,"eco_id":44,"shape_leng":139.987316191,"shape_area":55.1630981064,"nnh_name":"Nature Imperiled","color":"#FCEE50","color_bio":"#FEAA01","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":675086.0300178927,"percentage":3.148866708984864}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-113.5225376119999,29.551590112000042],[-113.56304164999995,29.547188272000028],[-113.60391968899984,29.422442922000073],[-113.46565265199985,29.28903319800014],[-113.42446163299996,29.21668983],[-113.30123860399993,29.127744258000064],[-113.19931063799999,29.13554311600018],[-113.20178262899998,29.296800875000088],[-113.31043254599984,29.28697409900019],[-113.38759668199992,29.313173247000066],[-113.39940661599991,29.45723871600012],[-113.5225376119999,29.551590112000042]]],[[[-110.30080459599998,24.19288233000009],[-110.39403566699997,24.16857447600006],[-110.53791053199996,24.20146674000017],[-110.60734554699985,24.254540281000118],[-110.6764295289999,24.36081795200016],[-110.68489860399995,24.46708673800009],[-110.72849254699997,24.518500326000037],[-110.7246165869999,24.67680262600004],[-110.66068261499998,24.76650307200009],[-110.68566152499994,24.885185456000045],[-110.78494265299992,25.03357934100012],[-110.8576045339999,25.075833353000178],[-110.90909557099997,25.152897409000104],[-110.9342726289999,25.285576231000107],[-111.02458964699991,25.45335326600008],[-111.01683068699998,25.512206632000073],[-111.11653862199995,25.525559004000172],[-111.17946659799992,25.597510434000185],[-111.21968866999993,25.724297449],[-111.30448955799994,25.782431815000052],[-111.35528556699995,25.961567670000193],[-111.31282753999989,26.06865285300006],[-111.39075459599997,26.26009099600003],[-111.379875557,26.326960814000074],[-111.4617305409999,26.412514900000076],[-111.45139364299996,26.489745588000062],[-111.56264463199989,26.56204822000018],[-111.5574726619999,26.69339448700015],[-111.81452953999991,26.897396264000122],[-111.81578062299997,26.720011388000046],[-111.67675753799995,26.594093745000123],[-111.73802958599998,26.542140194000183],[-111.86180866999985,26.698982199000113],[-111.87206258799995,26.83290120700002],[-112.00908658799995,26.95651667700014],[-112.01171163299989,27.018604954000182],[-111.95133963399991,27.070477871000037],[-112.110679614,27.13621294700016],[-112.19731865299997,27.235640591000163],[-112.3144455239999,27.429198181000118],[-112.32971165199996,27.517193580000026],[-112.40370156099993,27.583680680000157],[-112.58863853199989,27.646883918000015],[-112.70690953299999,27.763124152000046],[-112.76922563,27.863058901000045],[-112.75630961999997,27.960812679000128],[-112.8029255749999,28.022878996000145],[-112.79044357999993,28.188653260000024],[-112.86440264399994,28.275786664000123],[-112.84159866999988,28.440305821000038],[-112.89559958399997,28.472075749000055],[-112.98014867999996,28.451484430000107],[-113.10795560399998,28.524929348000057],[-113.12612153599997,28.638568845000066],[-113.19115454299998,28.79642757400012],[-113.24688766099996,28.840931792000163],[-113.32293666899989,28.80100526700005],[-113.41898355599994,28.951588504000085],[-113.52981561799999,28.908294969000053],[-113.55922654299991,29.02007468800008],[-113.53181453399998,29.05508824500015],[-113.65168765199996,29.20973704100004],[-113.63435354099994,29.270991822000042],[-113.77252167199993,29.411353496000174],[-113.821281549,29.4317064330001],[-114.20420862899988,29.742687614000033],[-114.38679464299997,29.79009482000015],[-114.40467055999989,29.889943236000136],[-114.5265045409999,29.970294172000024],[-114.53958852399995,29.94685015600004],[-114.5359036719999,29.868926955],[-114.45423157999994,29.741203850000147],[-114.45478059499999,29.6794731440001],[-114.38523057999998,29.571929303000104],[-114.246642684,29.494839263000188],[-114.22904152499996,29.437334378000116],[-114.14407366999995,29.398732697000128],[-114.12525964999998,29.310852130000114],[-114.07011460599983,29.235385162000057],[-113.95406363599983,29.21944797900005],[-113.8171846429999,29.12618740300013],[-113.77710757799997,28.986072157000024],[-113.63266760499982,28.977624372000093],[-113.59503168599986,28.894297526000173],[-113.63088259499983,28.830383335000192],[-113.56996962799991,28.707026195000026],[-113.5698546289999,28.647603363000144],[-113.62907361299989,28.503554489000123],[-113.52251464499994,28.510759908000068],[-113.44690652599996,28.62306048000005],[-113.40900456499992,28.615000945000133],[-113.37553361399995,28.473255418],[-113.28722355899993,28.35772328800016],[-113.12963858199993,28.33404441099998],[-113.13305655499994,28.20794840100001],[-112.94680060799993,27.900260134000064],[-112.8536075909999,27.85832916100003],[-112.81335467399998,27.67463472300011],[-112.66284955599997,27.516291520000152],[-112.53726165599994,27.49305856100017],[-112.40971356499983,27.27966771100006],[-112.17247754199991,27.024284867000063],[-112.13710758699995,26.95219094400005],[-112.1249385719999,26.757374560000073],[-112.09258258199992,26.673737247000133],[-111.97541061599998,26.509571806],[-111.89144154799993,26.469322410000075],[-111.69998161299986,26.32601885500003],[-111.65577662899994,26.23540511800013],[-111.63517759899997,25.999293778000037],[-111.50271553299996,25.869406968000135],[-111.49993156799991,25.724804721000055],[-111.47542556499997,25.658031631000085],[-111.35217252799998,25.62787404600016],[-111.33655553399984,25.56839572600012],[-111.38397967199995,25.402845594000098],[-111.35449967999995,25.344638472999975],[-111.21643866999995,25.304524361000063],[-111.17490365799995,25.20566786000012],[-111.18614161099998,25.106343648000177],[-111.25495955099996,24.95374590400013],[-111.20992257899985,24.817243593000057],[-111.09835056299988,24.748504108000134],[-111.10556067599987,24.57719829100006],[-111.0431515389999,24.503024986000185],[-110.98522152399988,24.37703928100018],[-110.98189558499996,24.290865270000154],[-110.90698266099986,24.209715539000115],[-110.89314262999994,24.11228010500008],[-110.93486053499998,24.01728497900018],[-110.7581555989999,23.87982797000018],[-110.63028765499996,23.7391600200001],[-110.42846668099997,23.645080869000083],[-110.32544655299995,23.577712998000152],[-110.29511261299996,23.521998823000047],[-110.27548253099997,23.682863806000114],[-110.29759265099995,23.8717791630001],[-110.30080459599998,24.19288233000009]]]]},"properties":{"objectid":299,"eco_name":"Gulf of California xeric scrub","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Nearctic","eco_biome_":"NE13","nnh":1,"eco_id":431,"shape_leng":25.8795307062,"shape_area":2.13470240095,"nnh_name":"Half Protected","color":"#E18C78","color_bio":"#CC6767","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":23631.53282043808,"percentage":0.08957384867698287}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[129.43765078700005,-31.63658566999993],[129.31591788000003,-31.548740242999884],[128.99732042900007,-31.560631549999982],[128.70007316400017,-31.623699167999973],[128.47508243100015,-31.651792457999875],[128.34515387900012,-31.698743855999965],[128.29635628200003,-31.64830977699995],[128.00163264200012,-31.689863229999958],[127.89526360800005,-31.66168209799997],[127.8238219650002,-31.697681365999983],[127.67472098200005,-31.6944923879999],[127.43199162800022,-31.7595996579999],[127.29277039600015,-31.76690096599998],[127.12101748900022,-31.747667348999926],[127.05899056700014,-31.77646438299996],[126.90020748100028,-31.774185174999957],[126.5962067480001,-31.92329017999998],[126.49423989000013,-32.02185063299993],[126.30407713900001,-32.156745964999914],[126.0394265770002,-32.2700143749999],[126.20606000600003,-32.2324799939999],[126.42158000600011,-32.28440999399987],[126.68325000600021,-32.30906999399991],[126.7722300060002,-32.292119993999904],[126.9551300060001,-32.29768999399988],[127.22137000600003,-32.27569999399998],[127.482820005,-32.217419993999954],[127.7073900050001,-32.13646999399998],[128.02274000500006,-32.07386999399989],[128.43642000500006,-31.935259994999967],[128.64322000500022,-31.851619994999965],[128.80419000500012,-31.758109994999927],[129.0289400050001,-31.67956999499995],[129.43765078700005,-31.63658566999993]]]},"properties":{"objectid":304,"eco_name":"Hampton mallee and woodlands","biome_num":12,"biome_name":"Mediterranean Forests, Woodlands & Scrub","realm":"Australasia","eco_biome_":"AU12","nnh":2,"eco_id":201,"shape_leng":7.27139016556,"shape_area":1.0379087254,"nnh_name":"Nature Could Reach Half Protected","color":"#CD8966","color_bio":"#FE0000","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":10914.318225035558,"percentage":0.3303971243223245}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-155.72708159999996,19.171290671000122],[-155.58413662299998,19.293779613000027],[-155.3941497239999,19.490232146000153],[-155.4588316969999,19.59768395300017],[-155.47859169799997,19.69449929400014],[-155.5795746889999,19.69820895700019],[-155.71897864699991,19.578862055000172],[-155.7550196569999,19.41115676800007],[-155.78512560899998,19.358415822000097],[-155.78654466499998,19.246495286000084],[-155.72708159999996,19.171290671000122]]],[[[-155.41252168199998,19.883280541000033],[-155.502456653,19.87628785400011],[-155.513213652,19.77921938000003],[-155.41960170799993,19.76356014100014],[-155.41252168199998,19.883280541000033]]],[[[-156.12928772699993,20.704834625000046],[-156.13563567799997,20.745982561000062],[-156.2580567269999,20.768031325000095],[-156.29296869499993,20.661333051000156],[-156.12928772699993,20.704834625000046]]]]},"properties":{"objectid":306,"eco_name":"Hawai'i tropical high shrublands","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Oceania","eco_biome_":"NO07","nnh":3,"eco_id":639,"shape_leng":2.87158297009,"shape_area":0.159109306959,"nnh_name":"Nature Could Recover","color":"#E69800","color_bio":"#FEAA01","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":1857.2346144567198,"percentage":0.008662872564674611}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-155.69189470599994,19.94573074900012],[-155.83811968899997,20.10038088600004],[-155.83213769199992,19.979623980000042],[-155.92497263499996,19.855790916000046],[-155.69189470599994,19.94573074900012]]],[[[-156.53713956899995,20.579437666000103],[-156.58944666799994,20.600207519000037],[-156.67131070499997,20.50298817100014],[-156.54203761799994,20.515549291000127],[-156.53713956899995,20.579437666000103]]],[[[-156.95491072299998,20.927584373],[-157.04678358999993,20.87380926700007],[-156.98800666799994,20.821961329000032],[-156.959380624,20.73709187700001],[-156.8366087089999,20.761548594000033],[-156.80630460899994,20.807628107000028],[-156.84429960799994,20.87455827400015],[-156.95491072299998,20.927584373]],[[-156.93504360099993,20.763891503000025],[-157.00375358199997,20.886198726000146],[-156.88183561499991,20.863536909000118],[-156.85322566399998,20.77274799000014],[-156.93504360099993,20.763891503000025]]],[[[-157.24540669999993,21.220684943000094],[-157.2991026809999,21.134406828000124],[-157.2375186589999,21.09047928500007],[-157.08554067199995,21.1049476230001],[-157.10073857199993,21.1926216600001],[-157.24540669999993,21.220684943000094]]]]},"properties":{"objectid":307,"eco_name":"Hawai'i tropical low shrublands","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Oceania","eco_biome_":"NO07","nnh":4,"eco_id":640,"shape_leng":10.1392724334,"shape_area":0.131613270859,"nnh_name":"Nature Imperiled","color":"#FFAA01","color_bio":"#FEAA01","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":1525.179878663251,"percentage":0.007114038702606534}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-67.62264960399995,62.94849228600003],[-67.84809241499983,62.91601418900012],[-67.85447797499995,63.019000163000044],[-68.02751318499998,63.02615174500011],[-68.04988332999994,63.10240770799999],[-68.21308133999992,63.149582714000076],[-68.36773094999995,63.27379649800014],[-68.54311311399994,63.33118477500017],[-68.50898719299994,63.37557490700004],[-69.00861534299997,63.53428266600014],[-69.36617260199995,63.68898157400008],[-69.64176215399988,63.77905230300013],[-69.75175619899994,63.76822176200005],[-69.82795490399991,63.881372099000146],[-70.0865773619999,63.96168154700018],[-70.15067893299994,63.87809697900008],[-70.47522743799993,64.01024801300008],[-70.58541096399995,64.02433670800008],[-70.80227765199993,64.14030878100004],[-71.28928092799998,64.32702315200015],[-71.70298742099999,64.44277340700006],[-72.05654195199992,64.45911223500013],[-72.27343480699989,64.51751968000008],[-72.30781535499989,64.60104966400013],[-72.94198604999997,64.7887125040001],[-73.06534899299993,64.57537461500004],[-73.01206964799997,64.50096233500017],[-72.83130738999995,64.42275184900006],[-72.81980000299995,64.31546141000007],[-72.71279528799994,64.24819429500013],[-72.5304032119999,64.28565198400014],[-72.36423411699991,64.25138876500012],[-72.16458030199988,64.09266154100015],[-71.92717540999996,64.04650240200016],[-71.72502933099997,63.97805340000002],[-71.78108266799995,63.90795959500019],[-71.4062788299999,63.78951451800003],[-71.27270503199992,63.700333773000125],[-71.07290802899996,63.638975746000085],[-71.18438564699994,63.47329213900008],[-71.19907205399988,63.393999018000045],[-70.89684437099993,63.345903361000126],[-70.76572981899994,63.39652775000002],[-70.79516429099988,63.456100053000114],[-70.7266481979999,63.58745471300017],[-70.63552511599994,63.649797672000034],[-70.54734813799996,63.78115921699998],[-70.39122892199993,63.75839546499998],[-70.04883584599997,63.61379255600008],[-69.97381464499983,63.452420576000065],[-69.84527446599986,63.39432314500016],[-69.59476429399996,63.391822248000096],[-69.48443476199998,63.30332777300009],[-69.56415691499996,63.25287808100012],[-69.4367601319999,63.06420024900018],[-69.23740328299988,63.01786847800014],[-69.26793529599996,63.12107566800006],[-69.18244795899994,63.23746298999998],[-69.09909615099991,63.229518784000106],[-69.15147290999994,63.07813127600008],[-69.04550800599998,63.0317239420001],[-69.03776587799996,62.93338764900005],[-68.71736161499996,62.86092116900005],[-68.45934647599995,62.851060903000075],[-68.4375927399999,62.764635659000135],[-68.29019892499997,62.72542072200008],[-68.28591986799995,62.59285207200014],[-68.05962947899997,62.67086561000008],[-68.02341414799992,62.57526885600009],[-67.76966196999996,62.536094394000145],[-67.73589557699995,62.45596278100015],[-67.58998009499993,62.460949870000036],[-67.49627663599995,62.39891985700018],[-67.14839229199998,62.443861831000106],[-67.05715876199991,62.49544718600015],[-66.92015889799995,62.42732265300015],[-67.15820107399992,62.34775303000015],[-66.88144903199986,62.29821971600012],[-66.82477732699994,62.242880676000084],[-66.31853418699995,62.11907856800002],[-66.19653569699994,62.130472996000094],[-66.43551794499996,62.2975077370001],[-66.6894456249999,62.3510661250001],[-66.6535022299999,62.42161314700007],[-66.92293475099996,62.610402204000025],[-66.83141244099988,62.66586493300008],[-67.3795250629999,62.960976299000095],[-67.62264960399995,62.94849228600003]]],[[[-66.4073958319999,64.67472828200005],[-66.56987189799992,64.73762401300013],[-66.89641098699997,64.69674498800009],[-66.97967872999988,64.78806963900013],[-67.22828924499998,64.8820910770001],[-67.3142829109999,65.01361994600012],[-67.86338050199998,65.02458255000016],[-67.98686463399997,64.91965139000007],[-68.22247519199993,65.054197654],[-68.09013921099995,65.14986600100013],[-68.26068687599991,65.1932536440001],[-68.34592277699988,65.30060684900013],[-68.07610848799999,65.3843546490001],[-68.14954881799997,65.46818720300013],[-68.12753107099996,65.58603877800016],[-68.37119518499998,65.73560138200003],[-68.28554706799991,65.84006270300006],[-68.4671276759999,66.03677757100007],[-68.47797854199996,66.15261275900019],[-68.62028775599998,66.17144289400005],[-68.86942419299999,66.14023349200005],[-69.01596171799997,66.03627588200004],[-69.23800794399989,65.99696291900005],[-69.21490048799996,65.93558302600019],[-69.38352226999984,65.91498688600007],[-69.51972705399999,65.83648000000017],[-69.71578806299993,65.92199111999997],[-69.88055970599993,65.86303334400003],[-70.12731511599992,65.84659938200008],[-70.16474761699993,65.80755877600018],[-70.42484663699997,65.74573954800007],[-70.52234058799996,65.6942904620002],[-70.7838020989999,65.679707839],[-70.87937976299997,65.61733084200006],[-70.72667530999996,65.57497655400005],[-70.6359918689999,65.47130176000013],[-70.70739789699991,65.36788313100004],[-70.64988209899997,65.29114242400016],[-70.4670614609999,65.21402755000014],[-70.20106066199997,64.9483849390001],[-70.26585574799998,64.88757115600015],[-70.13414063499994,64.662161874],[-70.01764888499997,64.60168968500005],[-69.67339542899992,64.56223657900011],[-69.53763395499988,64.51111033400002],[-69.45420244499991,64.30763674500008],[-68.88693056799997,64.27069150000005],[-68.69512766799988,64.27112764400005],[-68.4704295109999,64.19415811300007],[-68.33636119499994,64.09748391500017],[-68.12201729699996,64.10079858900014],[-68.14137268499991,63.9990586290001],[-67.89968805299992,63.93509943300006],[-67.71369332699993,63.85489906800012],[-67.47433677999999,63.80712065199998],[-67.26846770399999,63.56172015100003],[-67.09756451999982,63.52680274700003],[-66.72428024599992,63.31773468000006],[-66.50620855099993,63.30407771600005],[-66.03137259899995,63.334106841000164],[-65.90367223399994,63.25269275400012],[-65.94484532199982,63.17433308500006],[-65.64788879899999,63.16898244200013],[-65.66425246199998,63.296086861000106],[-65.81046437299995,63.31221397600018],[-65.7715687679999,63.40981681400001],[-65.6134042619999,63.347366875000034],[-65.47244145699989,63.429030651],[-65.52450564599997,63.56364899100009],[-65.20062093999991,63.50957537700015],[-65.13027253299992,63.62090981000006],[-65.26710285399997,63.659520943000075],[-65.47238389099994,63.787741757],[-65.33849241699994,63.837723773],[-65.54880634299997,63.89305932100012],[-65.28026395099994,63.927581788000055],[-65.41100913099984,64.03108416700013],[-65.67471047299995,64.09696498900001],[-65.87649768599994,64.07592526900004],[-65.95419963099994,64.28465375700006],[-66.36731793799993,64.46928514900003],[-66.3701567949999,64.64850321500006],[-66.4073958319999,64.67472828200005]]],[[[-77.49553486199994,72.20001342900014],[-77.27820024999994,72.49760710200013],[-77.36683390299999,72.75874163300006],[-77.95585203299999,72.6980300510001],[-78.41820579199992,72.58670724700016],[-78.54001564599992,72.44166781900009],[-78.32961717299997,72.36592966799998],[-77.87141205799998,72.29219980100004],[-77.49553486199994,72.20001342900014]]],[[[-96.67113079099994,72.75410245800015],[-96.65896299299999,72.88954639900004],[-96.77432624199997,72.89351756299999],[-96.96824302399995,72.77624208400005],[-96.67113079099994,72.75410245800015]]],[[[-96.72890494299992,72.02975814100006],[-96.49328803199995,72.07361758100006],[-96.48944893999993,72.23820045600007],[-96.65312781399984,72.30645691100017],[-96.26919291799987,72.42339852100014],[-96.49243191999994,72.66956622000015],[-96.63904233399995,72.70871030700005],[-96.99827204799993,72.73576979600011],[-97.26052622199995,72.85231118400003],[-97.2073683559999,72.93355270500018],[-97.42837227599995,72.99773749500008],[-97.83788690399996,73.0458910970001],[-98.210254938,72.98786917700016],[-98.407867636,72.87427556200015],[-98.43541527699995,72.84019747400015],[-98.8985502409999,72.72407594100008],[-98.80819379899992,72.63188455700015],[-98.43236864299996,72.64736316000017],[-98.30130569799996,72.6113209190001],[-98.28061805399994,72.5220826060002],[-98.02510037299999,72.38985458500008],[-98.13843022799989,72.2695887700001],[-97.90367491699999,72.07146828700007],[-97.34837538099998,72.00429287400004],[-96.72890494299992,72.02975814100006]]],[[[-96.83411554099996,72.921689517],[-96.68568991799992,72.93463765700005],[-96.53904585699996,73.03044147500009],[-96.75260327599989,73.18081394500018],[-97.04189234899991,73.14171624700015],[-97.07333845099993,72.98771966700019],[-96.83411554099996,72.921689517]]],[[[-77.50449492399991,72.18583835600015],[-78.54657994099995,72.35497021900011],[-78.97705706399995,72.29460389900015],[-79.30285933199985,72.40234143000004],[-79.47176133499983,72.30278063700007],[-79.75659825099996,72.42924333000013],[-80.06053090999995,72.38772977500014],[-80.14262671699998,72.31768078300013],[-79.91835129299994,72.19308440100008],[-80.48616755899991,72.18237651900017],[-80.33292902799991,72.09337005700013],[-80.53461355799993,72.00609179100013],[-81.07679768999998,72.05578277600011],[-80.75156283899997,72.10829313800008],[-80.88626200399989,72.19072758000004],[-80.77334163099994,72.28990618000006],[-80.51104634899997,72.40754813100017],[-80.57091568199996,72.51626310800009],[-80.51973964799993,72.64006299900007],[-80.24560966799999,72.73233970100011],[-80.62781871299995,72.92973096700013],[-80.50540850799996,73.09254506200017],[-80.61696982499984,73.16697078099997],[-81.09596155399993,73.24102660200015],[-81.19804903699992,73.28414957400014],[-81.144395106,73.380489265],[-81.25929450699994,73.5797861640001],[-81.54426437899997,73.72474416199998],[-81.92919042699987,73.73484699500005],[-82.86203814099997,73.71962455100015],[-83.02171237499994,73.6573305980001],[-83.57998812799985,73.59793630000007],[-83.99041820499991,73.50413626800014],[-84.98093886099991,73.35668530700008],[-85.15039838399991,73.29610471400008],[-85.17097123799994,73.22499164600015],[-84.62234348799984,73.1248809130002],[-84.8160422659999,73.08754039200016],[-85.06455797199999,73.14294473700016],[-85.41928852799992,73.13947886200003],[-85.53978535999983,73.035007441],[-85.16050612999993,73.03197978600008],[-84.79829321199992,72.92592023400005],[-84.9120498239999,72.89410157700019],[-85.28237852699993,72.97236114000015],[-85.56299162699992,72.97127371300013],[-85.63070388899996,72.92258391000007],[-85.69051170099988,72.65582274100018],[-85.56757849099995,72.51727013200008],[-84.77076013299995,72.51612018900005],[-84.55441165799988,72.46069569800017],[-84.17774129299994,72.41903991700008],[-83.72663156399994,72.20888320700004],[-83.42557453399996,72.12781790200012],[-83.04253955399992,72.06531023300016],[-82.65297712099994,72.05599826399998],[-81.8713223009999,72.20176706200004],[-81.66563427399996,72.13891467000008],[-81.70878630999988,72.04735614900005],[-81.67707736999995,71.87495411000003],[-81.13559133299992,71.78474925300003],[-81.05513818599997,71.63000267700005],[-80.87927119799991,71.48302670300018],[-79.9937833759999,71.35019446800015],[-79.59197171099999,71.31100573100014],[-79.25930227199996,71.3145720980001],[-78.90276497899998,71.35429225000013],[-78.84840330499998,71.27397270400013],[-78.52707865099995,71.24515364300015],[-78.38242281299989,71.16673469000011],[-77.91442725399997,71.11626661400004],[-77.608679839,71.114220176],[-77.03443424099999,71.06637231300016],[-76.58529818699998,70.91425911600015],[-76.48130941199997,70.7983911840002],[-76.71616486499988,70.76087128200015],[-76.66695003199993,70.68748085900017],[-76.46786577899996,70.62599855800016],[-76.64644571199995,70.57151140000008],[-76.75914344899996,70.4705776030001],[-76.33192774299994,70.49862327400001],[-76.22100679699986,70.53832392000004],[-75.92123332699992,70.51718236800014],[-76.46143049699998,70.43153772700003],[-76.21295447099999,70.3392991290001],[-76.28044695999995,70.27273029300011],[-76.86688773499992,70.09301286000004],[-76.79427753799996,70.03200083500019],[-76.6048065999999,70.01614111600009],[-76.2527987979999,70.04504497200008],[-76.01165203199997,70.00932883600007],[-75.76355946999996,70.08022132400004],[-75.70617861599999,70.15086997900016],[-75.42798428999993,70.2031501240001],[-75.16319683499995,70.12786490800016],[-74.8073812909999,69.854705271],[-75.01578208699988,69.738062706],[-75.20343390199992,69.68944942900004],[-75.26215639399993,69.59138052300017],[-74.86784480199992,69.66052775000003],[-74.98025789299993,69.49672389800008],[-74.8162339299999,69.332340848],[-74.69737251699996,69.27202547500008],[-74.4779418309999,69.30760380300006],[-74.24133244899997,69.30252207900008],[-74.08142253999989,69.36734937700004],[-73.84334555199996,69.34803487500011],[-73.90779822999991,69.28970989800001],[-74.21203239299996,69.24418918200007],[-74.14188249399996,69.15606864100005],[-73.81195952699994,69.15860571200011],[-73.59061506099994,68.99882459200012],[-73.20193294699993,68.92035105100001],[-73.02994946399991,68.78557826500014],[-72.88166998899999,68.72189314100018],[-72.56709563099997,68.70371029700016],[-72.3026187239999,68.4493433880001],[-72.01224183899996,68.52612464400005],[-72.08109393399991,68.3324520650001],[-72.17691730999996,68.25463813300013],[-72.07175605199996,68.09714347900018],[-71.87183311299992,67.97934049000008],[-71.66873375899985,67.97366282400014],[-71.44694063599997,67.91289920800017],[-71.23655046199997,67.77829555000005],[-70.77669601999992,67.72414443200006],[-70.58067542899988,67.63118420300003],[-70.19351788199998,67.51732998900007],[-70.22637564199994,67.3666496890001],[-69.78134778899982,67.28241197000006],[-69.56300100899989,67.35406977800005],[-69.46056470799988,67.32815559400018],[-69.42910248999993,67.20429072900015],[-69.15185624199995,67.12027624000007],[-69.05344112699993,67.12142373900008],[-68.47791411699995,67.03497109000006],[-67.84403539499988,67.03432815700006],[-67.74817378899996,66.96023682800006],[-67.90697474599995,66.90960627400005],[-67.41405807099983,66.7377979850001],[-66.8624654969999,66.5990970950001],[-66.72682402999988,66.58758627200007],[-66.37238371799998,66.58700401500016],[-65.96572786099995,66.67547390200008],[-66.16397057899985,66.79728882900014],[-66.54403640399988,66.91513983800013],[-66.72766272899992,67.09355147100018],[-67.34063466299989,67.17017318000012],[-67.51437067699999,67.34792594200013],[-67.72442905999998,67.42783435799998],[-68.01283068599997,67.40834022200016],[-68.52037044599996,67.28068309200017],[-68.72473329299999,67.34170419300006],[-69.02778605399988,67.73090086800005],[-69.15764855599991,67.79976757700018],[-69.11473466899997,67.89548258800005],[-69.3848400899999,68.06354189100011],[-69.34772166999994,68.17329507600016],[-69.52893470199996,68.37009445900014],[-69.39438985999993,68.58266696200013],[-69.35138840499991,68.77274305100008],[-69.38520121999994,68.86286668200006],[-69.8518929249999,69.13353141700014],[-70.05893225099993,69.44614895100017],[-70.33368742699992,69.70437697400013],[-70.41327922099998,69.83931817500019],[-70.43049382099997,69.85689659000008],[-70.5998076869999,70.00857376800008],[-71.05181517499983,70.1309582500001],[-71.1997752929999,70.29926628900017],[-71.27007969499988,70.3407523670001],[-71.39875848499986,70.37073701499997],[-71.68293894999994,70.36491032600009],[-71.74286099699992,70.36778063500014],[-72.23003303399997,70.46225214100008],[-72.53725934399989,70.61277323900003],[-72.6014894889999,70.64033278100004],[-73.01082450699988,70.7558380960001],[-73.1617995549999,70.83420140800018],[-73.55751970599988,70.87261787799997],[-73.85692453999997,70.96066051500009],[-73.79362798299991,71.05870151000005],[-73.83477262799994,71.07592813200006],[-74.27838779599995,71.22871839400017],[-74.61985705199993,71.37369112900012],[-74.81930129799991,71.45068506600018],[-74.81606141999993,71.522801856],[-75.08241047099989,71.58010787600011],[-75.22553285499998,71.57486199800019],[-75.7612541659999,71.57521758900003],[-76.04553350899994,71.6279970540001],[-76.27095974699995,71.70474099100011],[-76.65729143199997,71.76197684800013],[-77.11730378199991,71.79219395899997],[-77.41750688699994,71.8973121320002],[-77.55667213099991,72.10280122900014],[-77.50449492399991,72.18583835600015]]],[[[-77.68703149699996,72.8983414760001],[-77.88160688699998,72.9361024530001],[-78.29354534299989,72.96230140400019],[-79.00483461799996,72.96715200200009],[-79.23936006299994,73.0145580750002],[-79.437194719,73.12636538400017],[-80.35051862399985,73.42022606299997],[-80.51472549699992,73.54277602300004],[-80.16170093199997,73.70862810500017],[-80.46107629099998,73.7698634190001],[-80.76982942899991,73.75626408099998],[-80.855409851,73.56034803700015],[-80.87245234999989,73.33888837000006],[-80.75623743299991,73.27861180100018],[-80.37107623899993,73.2419986220001],[-80.10824164799993,73.18280809500015],[-80.17429590599988,73.05040032300019],[-79.99063043699988,72.86677063600001],[-79.55987619599995,72.75334119300015],[-79.14524912999997,72.75364406200003],[-78.42586997699993,72.87912440900016],[-77.68703149699996,72.8983414760001]]],[[[-86.38773247499995,72.01555368500016],[-86.4396048449999,72.2209643010001],[-86.3992223379999,72.30424791400009],[-86.23005027599999,72.4142789060001],[-86.33425634499991,72.50168026500006],[-86.60768714599993,72.61124129800015],[-86.73302990599996,72.7267139290002],[-86.64435170299998,72.87508046100004],[-86.34524354299998,73.03898180700008],[-86.11680356799991,73.25986928500015],[-85.91579471999995,73.36731897200019],[-85.48294030799997,73.52495063900005],[-84.93207792099997,73.66883001500008],[-84.83820861499987,73.74001809300017],[-85.20220962599996,73.82016249700018],[-86.12223233699996,73.85612380000015],[-86.68517065999998,73.84593485000016],[-87.22641477999997,73.79185678100009],[-87.99870619799992,73.64986937400005],[-88.67034955999986,73.42204470500019],[-88.99038491199991,73.28560801700013],[-89.29718268899995,73.043425447],[-89.31749831899992,72.76584877700009],[-89.33283274399986,72.64405519600007],[-89.43414283299995,72.5338969070001],[-89.2263328009999,72.472787794],[-89.41558024199998,72.4070748910001],[-89.3740389539999,72.25529536599998],[-89.21047942999985,72.13524806200007],[-89.65146432199992,72.11571172000015],[-89.66708879699996,72.11511011200008],[-89.83110780999993,72.03773514700015],[-89.84421451299994,71.9553568820001],[-89.59676323499991,71.86888098100013],[-89.67035586999992,71.77054979500008],[-89.60584296299987,71.63754310900009],[-89.72080936299994,71.53435750900019],[-89.49829140699995,71.42104867700004],[-89.00559945399993,71.35595164900019],[-88.59957110099992,71.32359370300003],[-88.42222562099988,71.26690065600013],[-87.80977468199995,71.2895212950001],[-87.69802967099997,71.1636075190001],[-87.27310302499995,71.0593527420001],[-86.69822976099994,71.03048411200018],[-86.52137165799991,71.04330307800018],[-86.5291058069999,71.19819807300007],[-86.26884465099994,71.25577531800013],[-85.77358800499997,71.25388784100016],[-85.60032819799994,71.37498824300019],[-85.74516933699994,71.44976329600013],[-85.60802514599993,71.49455852200015],[-85.72746828299995,71.57536033400004],[-86.2707149929999,71.66721053400016],[-86.31093457699995,71.85251179900001],[-86.45925203699983,71.9704439410001],[-86.38773247499995,72.01555368500016]]],[[[-98.341651631,73.03921669600004],[-97.94114238999998,73.18437036400019],[-97.8242284989999,73.27410468599999],[-97.61174337699993,73.32513261300011],[-97.1445530869999,73.35523223200005],[-97.24977043899997,73.48508644000009],[-97.65767854199993,73.48736538000003],[-96.966105412,73.62440076000007],[-96.91389725699992,73.69312614100005],[-97.19036346399997,73.85377513100008],[-97.7495604849999,73.91456120000004],[-98.15419945999992,73.80795282900016],[-99.22307236499984,73.74319314500013],[-99.45046677699997,73.82402713300002],[-99.70126740699999,73.85039774000012],[-99.95203061099994,73.95106751300017],[-101.00742018799997,73.79836678400005],[-101.04232461499998,73.67489423800009],[-101.15611608199998,73.60258322400017],[-101.43874552099999,73.54950616500014],[-101.54075754099989,73.47076823500015],[-101.25052870299993,73.35866772100013],[-100.81446733299998,73.26013229300008],[-100.56505047999997,73.28019685200013],[-100.25621537299992,73.36391082800009],[-100.14525683199997,73.28570898900011],[-100.43728070099996,73.25714451700014],[-100.57913651099989,73.15532555600004],[-100.26523987899998,73.12555163700006],[-100.12535887899998,73.04755251500006],[-99.8107574089999,72.9733752510001],[-99.59712044099996,72.95446896400017],[-99.26836705299996,73.01705952800012],[-99.02982198099994,72.98011780100006],[-98.341651631,73.03921669600004]]],[[[-97.632369069,74.05347866000005],[-97.6912643199999,74.11799201100001],[-98.0086938419999,74.11032434200001],[-98.46077999899995,74.04153603499998],[-98.77095207599996,74.03390066800017],[-99.04387653999999,73.95675526300005],[-99.40311451799988,73.91787843600008],[-99.08364277299995,73.81648899900017],[-98.7669418239999,73.81587915100016],[-98.06806583299993,73.89252490000018],[-97.632369069,74.05347866000005]]],[[[-92.76533945199998,72.74791676500018],[-92.31037774299995,72.70599728100012],[-92.01287822799986,72.76779877400008],[-91.798358023,72.87247706300013],[-91.26674791199991,73.25862804400003],[-90.83044736499988,73.54047257200011],[-90.57576398699996,73.65339777400015],[-90.15967157599988,73.89755054300008],[-91.11668233199998,74.01443029100011],[-91.55363397899998,74.02944268800007],[-92.24456929699988,73.99247016700014],[-92.35351794099995,74.05957394500012],[-93.03080659099999,74.15485890100007],[-93.47301062299994,74.17662336100017],[-94.23884235499992,74.1318832550001],[-94.7869038479999,74.07394543000004],[-95.31147056099996,73.97977983200002],[-95.28429831199998,73.87722129900004],[-95.05734113199992,73.77059077100006],[-95.58111110499988,73.74850385500008],[-95.48456539299991,73.69865310300008],[-94.76075042199983,73.55640727300005],[-94.45517709299997,73.3854547580001],[-94.29579943199991,73.3395692200001],[-94.22585236499992,73.23654690500013],[-94.21627049199998,73.05224295300002],[-94.03061638799994,72.99171021600006],[-93.73506150899993,72.98830474600004],[-93.61060340899985,73.06732296600012],[-93.36837784299996,73.04755185200014],[-93.20057701499996,72.911358479],[-92.84882394999994,72.82609897900005],[-92.76533945199998,72.74791676500018]]],[[[-97.55790749899995,74.47352734000009],[-97.26233379599995,74.60144579600018],[-97.43451986299993,74.62993399400011],[-97.77973289599998,74.49701158700009],[-97.55790749899995,74.47352734000009]]],[[[-95.41069269499991,74.62356322700009],[-95.66847724699994,74.64621796800009],[-95.81347253299992,74.57100325600004],[-95.49493649499988,74.50342897800004],[-95.22937532899988,74.51315549200012],[-95.41069269499991,74.62356322700009]]],[[[-104.196046261,75.02067322300002],[-103.8494069489999,75.05834435000008],[-103.57351713399993,75.15392603200019],[-103.74936448999983,75.3064946400001],[-103.96115084699989,75.40371314000015],[-104.37467827599983,75.42695226900014],[-104.68304097299995,75.31850168700015],[-104.90025891999994,75.11859464900016],[-104.58601042899994,75.05346798600004],[-104.196046261,75.02067322300002]]],[[[-94.41319919399996,75.61003739500006],[-94.88531783199988,75.63965559200011],[-95.28077597299995,75.60848870000007],[-96.11548960799996,75.41753753300009],[-95.88924648799997,75.38180452300008],[-96.08041081099992,75.24488690300018],[-96.43969008499994,75.20149303800002],[-96.59985401499989,75.07068382300008],[-95.8429159829999,74.83042892000009],[-95.28001665999989,74.80536225700001],[-95.064527608,74.74912773500017],[-95.0619546719999,74.67983936700006],[-94.54257507099999,74.62830023600009],[-93.72131053299984,74.64377018200003],[-93.4494166419999,74.71018371000014],[-93.39351783399991,74.90297799700005],[-93.4920843999999,75.02471485400002],[-93.47386292699997,75.26366621800014],[-93.65748470099999,75.34578897300014],[-94.41319919399996,75.61003739500006]]],[[[-96.0958545599999,75.60866237800008],[-96.42258321799989,75.5860386830002],[-97.01051791099997,75.49983954600003],[-96.84214485399997,75.3787551040001],[-96.46557706999988,75.46640493700005],[-96.12706472799988,75.45917918000004],[-95.89843915799992,75.56251331900006],[-96.0958545599999,75.60866237800008]]],[[[-94.41814796599988,75.95284779600007],[-94.85548520099996,75.93723198000015],[-94.77229900599997,75.78067554900008],[-94.28941304799997,75.75984528600009],[-94.41814796599988,75.95284779600007]]],[[[-102.12655276599992,75.91166714800016],[-102.15478160999987,75.99673955600014],[-103.03648975399989,75.8991842170002],[-103.36232293199993,75.77327291100005],[-103.2053893879999,75.74582517300007],[-102.58045079099998,75.77106455900014],[-102.40021639499992,75.87557887200012],[-102.12655276599992,75.91166714800016]]],[[[-103.33840642199993,75.90541297700008],[-102.25113522099991,76.03154140300006],[-102.55376582599996,76.09049939600015],[-103.93219294399995,75.94290691100008],[-103.84708977199995,75.89809327000006],[-103.33840642199993,75.90541297700008]]],[[[-78.94208910699996,75.88346412200008],[-79.15465137399997,75.971248296],[-78.8603613549999,76.0413819800001],[-79.11806083699997,76.09189118799998],[-79.66838235599982,75.8966656560001],[-79.35305804799992,75.86953176900005],[-78.94208910699996,75.88346412200008]]],[[[-118.23838758299996,75.59891319600007],[-118.00860735399988,75.70010500900014],[-117.8194000229999,75.86196479700016],[-117.54586850799996,75.9821319560001],[-117.43800171299995,76.0952847330002],[-117.79859733399996,76.1098942800001],[-118.11511627699997,76.0004232120001],[-118.58308138799998,75.9246423370002],[-119.31448951099992,75.66217014500018],[-119.39284535599995,75.60102984400004],[-118.55569754199996,75.50022207500012],[-118.23838758299996,75.59891319600007]]],[[[-103.18949436399998,76.05068068000014],[-102.587510738,76.13892799700011],[-102.48997421099995,76.2223934210001],[-102.71459821899998,76.31655775400014],[-103.07990869099996,76.31354503100016],[-103.49465174999995,76.26908544600013],[-104.24646689899998,76.22062664700013],[-104.48054465299992,76.15340907900014],[-104.388853999,76.0876629440001],[-104.0728471679999,76.04153793900014],[-103.18949436399998,76.05068068000014]]],[[[-103.32415513799992,76.49726567700009],[-103.9151055609999,76.65335119000014],[-104.32470738099994,76.66717413800006],[-104.64527837799989,76.59686356800012],[-104.56434779799991,76.48204901000008],[-104.24610930799997,76.36113812900004],[-103.77318847499998,76.3076822930002],[-103.25767039299996,76.33829895800011],[-102.98043401299998,76.44476130300012],[-103.32415513799992,76.49726567700009]]],[[[-98.376485259,76.65775473000014],[-98.58275918099991,76.61205369500004],[-98.97171023499999,76.60886866900017],[-99.23154967399995,76.47669766000013],[-99.68081781199999,76.63055012500013],[-100.16087779599991,76.6393206460001],[-100.44197161299996,76.61377592100013],[-100.97750616499997,76.49831291900006],[-100.73302845699999,76.38192558500015],[-100.29760347699994,76.38036214900006],[-100.43417154899993,76.21350214200015],[-99.93193595999998,76.18999168900007],[-100.23098281499989,76.00419741000007],[-100.8570716399999,76.21736674400017],[-101.1062487559999,76.24519175900014],[-101.085822394,76.31203668400013],[-101.27885962299996,76.4126268340001],[-101.86814845899994,76.44638635800004],[-102.05984621099992,76.35299522600013],[-102.11308191699993,76.21613781200006],[-101.45591668799995,76.23322234600005],[-101.90537101199999,76.11038414100005],[-101.82315685999998,76.02150697600018],[-101.58624636199983,75.92344029600014],[-102.12916182499998,75.88096424300011],[-102.095327866,75.71745695200008],[-102.54489660399997,75.71424480800005],[-102.84644515899993,75.62090742599997],[-102.63315037499996,75.49686629200005],[-102.41349952899992,75.53676516600012],[-101.11914499399995,75.58919528600018],[-99.97158776799995,75.67458224200016],[-99.70019618299995,75.59448598200004],[-100.00626052399997,75.53040846400012],[-100.09028826399998,75.45128135100015],[-100.41710822499988,75.38505324800019],[-100.76926475099992,75.35184551800006],[-100.20514309799995,75.25258759300016],[-100.39637951199995,75.16519815800012],[-100.36522091799998,75.03000657700011],[-99.92876183999988,74.98015490900008],[-98.75120878199994,74.99535476200015],[-97.9336444509999,75.03286837700011],[-97.94488268399994,75.10453407199998],[-97.55328975199996,75.14273753600014],[-97.85045997499986,75.26588614300005],[-98.10150430999988,75.30933676600006],[-98.02453931199994,75.41498229800015],[-97.64784553499999,75.55274247100004],[-97.37113416499983,75.44539375000016],[-97.40499592299989,75.69658932300018],[-97.84295517099991,75.730944297],[-97.58232783699998,75.85670510400007],[-97.63146436099998,75.98445792000018],[-97.47840691099998,76.12625909600018],[-97.56398898499998,76.2307531890001],[-97.77616898399998,76.3134757150001],[-97.66142824099995,76.48523186800014],[-98.20361685899991,76.54501966500015],[-98.376485259,76.65775473000014]]],[[[-100.50246974299995,76.68223384100008],[-100.48695623899994,76.76136623400015],[-100.99186021399993,76.72352076600015],[-101.1730918849999,76.65638919000014],[-101.68864663799997,76.58882613000014],[-101.333922396,76.5540565180001],[-100.50246974299995,76.68223384100008]]],[[[-89.67167346399998,76.50618188200019],[-89.83020290999997,76.54515630100008],[-89.82924283299991,76.64618998400005],[-89.7020334259999,76.74323883700015],[-90.05185732199999,76.83955356200005],[-90.47317782199991,76.7998998020002],[-90.59407586599997,76.72478247800007],[-90.22874336999985,76.53679890800004],[-89.97312454199994,76.47118454900004],[-89.67167346399998,76.50618188200019]]],[[[-108.6195872809999,76.81469051200008],[-109.09075060299995,76.82312298200003],[-109.29369761399994,76.79538606100004],[-109.53948021799982,76.62562238700008],[-109.72680259499998,76.59600501800008],[-110.084802288,76.44549748700013],[-110.37778079799989,76.40346754300015],[-110.26419968999988,76.30201757900011],[-109.91916269099994,76.20683171600012],[-109.68496038899997,76.21848286600016],[-109.27064759599995,76.10206739900008],[-109.36727320999995,76.02250158000004],[-109.62958012499996,75.95343078000019],[-110.034954627,75.89688563599998],[-109.89878148899999,75.85083855400018],[-108.9337633639999,75.70960822800009],[-108.80128020599994,75.61910419999998],[-108.9438160919999,75.48055318100006],[-109.233222937,75.51745401900001],[-110.36009987399996,75.54092252100008],[-110.77742535199991,75.56604576000018],[-111.19811949199999,75.52125252100006],[-111.38588331299997,75.61597369400016],[-111.3115521879999,75.71006073100017],[-111.45323335999984,75.84384717400008],[-111.93256273299988,75.80723733399998],[-112.1538969099999,75.84475235800016],[-111.68552464899989,75.92244806600013],[-112.380522037,76.04341636999999],[-112.54465734799993,76.198677427],[-112.97961817599992,76.27115975599997],[-113.3387092609999,76.26581150200013],[-113.68317214299998,76.20416018900016],[-114.0236211319999,76.22321752500011],[-114.12471581699992,76.3137597000001],[-114.04484792299996,76.41730322500001],[-114.396630486,76.49471021200014],[-114.88926131499989,76.49786660000018],[-115.62236186299998,76.42077823100016],[-115.87170694799994,76.35583443900015],[-115.85639131699998,76.25617295000006],[-116.04924883199999,76.20415110600004],[-116.60682568999988,76.12023961900013],[-116.71915032099992,75.90192910000019],[-116.04976513199995,75.80909889300011],[-116.78695359199992,75.80042715400015],[-116.98245414699994,75.75233731600002],[-117.21688800499999,75.58201577200015],[-116.39698578599985,75.5611776790002],[-115.39736087699998,75.65486620899998],[-115.94169323399996,75.4927526960002],[-116.12991544699997,75.47723275800001],[-117.14511854999984,75.48186952100008],[-117.54986059999993,75.35114338000005],[-117.65380816499999,75.24669018300017],[-117.48489072599989,75.19722939600007],[-116.69144610099988,75.11732720900005],[-116.55565914299984,75.18078766999997],[-116.23230732199994,75.18136829200006],[-116.22536156699988,75.05924779200006],[-115.67619936899996,74.96893694500005],[-115.53466796499998,75.00370232800014],[-115.57506610899986,75.10337749800004],[-115.20248130999994,75.07240667300016],[-114.99402065799995,74.96387377000008],[-114.43536300999989,75.06020057600017],[-114.09560228899988,75.25019486200017],[-114.04174266999996,75.33876310000016],[-113.80282254899998,75.31916499200003],[-113.90552897799995,75.19527703300008],[-113.90363866299987,75.05513210900011],[-113.00797609699998,75.09324923600013],[-112.77304580799989,75.120827302],[-112.60716437499991,75.19954969300011],[-112.37237939199997,75.12525365000016],[-111.55553179699996,75.14263968200004],[-111.05162328799997,75.27372660000015],[-110.88960230299995,75.23657006000013],[-111.28539229599988,75.07766355500013],[-111.71318978299996,74.98861141700007],[-112.0722610059999,75.01164107400012],[-112.84158231999999,74.98115249400007],[-113.10016750199998,74.94194054600018],[-113.45395972099993,74.8384317870001],[-113.71851031299997,74.82634130000008],[-114.19457478099997,74.76094408100016],[-114.39083912999996,74.64653789200008],[-114.01729806099996,74.52542807999998],[-113.69103245499991,74.450404746],[-113.0309321229999,74.39913627200019],[-112.39995634699994,74.4169890020001],[-111.64289227899997,74.49585225400017],[-111.39470683699994,74.56255372700019],[-111.0328434249999,74.61135925300005],[-110.55491159999991,74.7079794230001],[-110.62481251999992,74.77443521000004],[-110.22411141199996,74.84104133400012],[-109.80924036599987,74.87406183799999],[-109.50535685099987,74.86213935100005],[-109.33524804399997,74.94617887900012],[-108.92721230499995,75.012233445],[-108.79428224499992,75.06986097700002],[-108.50755823999998,75.01433395800018],[-108.3397104419999,74.9142787310002],[-107.91450340299991,74.93328599900008],[-107.88890281699986,75.00000872900017],[-107.20118948199996,74.90949417100006],[-106.924239818,74.92618010100011],[-106.68070748699995,75.00278644500014],[-105.9918276649999,75.05114025600017],[-105.86793802899996,75.14041916500008],[-105.90112458699986,75.21799846800002],[-105.61640035,75.36165978700006],[-105.36853568699996,75.62873439600014],[-105.4176638379999,75.84699046200006],[-105.56643494599996,75.93462833600017],[-105.88419720599995,76.01009819200016],[-106.304787337,76.06015535800015],[-106.630539232,76.05556424600007],[-106.86850834599989,75.93635921300012],[-106.78060882099999,75.79245738000014],[-107.076435442,75.84197816800014],[-106.99963984399994,75.8947033020001],[-107.43687840199993,75.91070688400015],[-107.87592064499995,75.89188882100018],[-107.57813707099984,75.99471371100009],[-107.78368015199999,76.06074243000006],[-108.37656495099998,76.05158449200013],[-108.3294654369999,76.1760609120002],[-108.08396958099996,76.232334407],[-108.25603332199995,76.38588182000018],[-108.57248457599991,76.42349300000012],[-108.49887210399999,76.56387695100005],[-108.68154866099997,76.61840248300012],[-108.39333611999984,76.70514595100008],[-108.6195872809999,76.81469051200008]]],[[[-113.73346863499995,76.8887266480001],[-114.5803693929999,76.870920319],[-114.79220684399985,76.81653121000016],[-114.76348472399997,76.75133871100007],[-113.59732575399994,76.7099830630001],[-113.45307827899995,76.82594138800016],[-113.73346863499995,76.8887266480001]]],[[[-94.9397303159999,76.97509155600005],[-95.44110947199988,77.05784773900007],[-96.30674884599995,77.04007518300006],[-96.45753792799997,76.96945270800012],[-96.78119752099997,76.98412957400018],[-96.97259224899989,76.73430920500005],[-96.50046180799995,76.68939416600017],[-96.04198102299989,76.55273432900003],[-96.01758970099996,76.43844736700015],[-95.81321534599988,76.39318879600006],[-95.01131190899997,76.34922080800015],[-95.39917962099997,76.28697293500016],[-95.38830159399993,76.22928560899999],[-95.06400559099995,76.21664871700017],[-94.75523517199991,76.28589751500004],[-93.80723540399987,76.25498940199998],[-93.35170158399984,76.35907679700017],[-93.12092231099984,76.36393901400004],[-92.95905168499996,76.23999639200008],[-92.64678981099996,76.12561406700001],[-92.55307106299989,75.97402876800004],[-92.14791081899995,75.88114647400016],[-92.16614288899996,75.7334398750001],[-92.00378335599999,75.594187348],[-92.20768197199993,75.54900873800011],[-92.41598390199994,75.41966271000013],[-92.48661565499998,75.21615753700007],[-92.05635658399996,75.0884743110002],[-92.19934586299996,75.02775421700011],[-92.01859693199998,74.89273210900018],[-92.082934218,74.8002254020002],[-91.57786676099994,74.64909697700017],[-91.11818320999998,74.63871086300003],[-91.02513214399994,74.70583195000012],[-90.61428656499993,74.61459424800006],[-89.9540733529999,74.5296627940001],[-89.57123149399996,74.53896755500017],[-89.22549904599992,74.57980647100004],[-89.12061351199998,74.68824787500017],[-88.80689223799999,74.6762763430001],[-88.71941440299997,74.79772126400013],[-88.40812784999997,74.73870494400012],[-88.57314230399999,74.56924279000009],[-88.54223287099995,74.50587792300007],[-87.7139383569999,74.45996298500012],[-87.44459057999995,74.48557558300013],[-86.93898026999994,74.46169578100017],[-86.28601340299997,74.50107428900014],[-86.10192849399988,74.48069857200011],[-85.36498795499995,74.50310823300003],[-84.24990937799993,74.50704395700006],[-83.84525297499994,74.55237011600008],[-83.59818053499998,74.54924947700005],[-83.31534591299987,74.78358541000006],[-83.07165308599997,74.7867193830001],[-83.07407579799997,74.6162988230002],[-82.81531257999995,74.52590738600003],[-82.41037270899994,74.52471671300003],[-81.80011704299994,74.45793009200008],[-81.29743106399991,74.5659638890001],[-80.81941385999988,74.56048816000009],[-80.25168202999998,74.57821384100009],[-80.16386496599995,74.84338306600006],[-79.8694088119999,74.8157744950002],[-79.39698055099984,74.91279251000003],[-79.54849730299992,75.01258514300014],[-79.84166118799999,75.02081283100006],[-80.20204757799996,74.95891515200009],[-80.37775571099996,75.00931847700008],[-80.2697248309999,75.06347993800011],[-79.97463672199996,75.09166285300006],[-79.83085986199995,75.16925515300011],[-79.60700355599994,75.18841249300016],[-79.47532066699989,75.26855196800005],[-79.50831469899992,75.3713376730002],[-79.70277868899996,75.46894952700006],[-80.04313108499991,75.52513951300017],[-80.068107936,75.57988883200017],[-80.50901676799998,75.65318782500003],[-81.01177509299993,75.62785184600011],[-81.28438702599988,75.6505542110001],[-81.14616391899995,75.77438386200004],[-82.33680296799997,75.83869003800004],[-82.94025274499995,75.75548325000011],[-83.41354715299991,75.74556984300011],[-83.81116761899983,75.82020455000014],[-84.38587677599992,75.70226892599999],[-85.08069323899997,75.6516964400002],[-85.42215333699994,75.56491933600006],[-85.91302223599996,75.54607127700012],[-86.15871243399994,75.50466217900015],[-85.82855294099994,75.4256662470001],[-86.34502965099995,75.42083698300007],[-86.79043384699992,75.47638672900013],[-87.257701565,75.61982726000014],[-87.53126835399985,75.56099986300006],[-87.72288045199991,75.57857450200015],[-88.18230101999995,75.52312243300008],[-88.63013087099989,75.672072856],[-88.92225124499993,75.607993109],[-88.74640795799996,75.46953286500019],[-88.97335932799996,75.43576253900005],[-89.25066371299988,75.62497462700014],[-89.15001897799988,75.76332677800019],[-89.67266181399992,75.89007168400019],[-90.0367023739999,76.01042711600019],[-91.11915331899996,76.16215906300005],[-90.42315151999998,76.18083871700003],[-89.71642959399992,76.16209154800009],[-89.28723099299998,76.19397832200013],[-89.30321092799994,76.30129640900014],[-89.76346126499999,76.32687289800009],[-90.35548967099999,76.39669399900009],[-90.51174657299998,76.52635349900004],[-90.97230376999994,76.65202483000019],[-91.43024580099996,76.69134889100019],[-91.91735357299984,76.66737552500012],[-92.12558817999991,76.61576958700005],[-92.65659726199993,76.59052170400008],[-92.86980887499988,76.6196569980001],[-93.34679896199998,76.53712413200014],[-93.16840433399994,76.68092015500008],[-93.25339027899997,76.75229595300004],[-93.7071301549999,76.92017203100016],[-93.97632006799995,76.93226420700006],[-94.24605824699995,76.88919992600017],[-94.59770934699992,76.97972028600003],[-94.9397303159999,76.97509155600005]]],[[[-90.79321708499992,77.14438792200019],[-90.81414361799989,77.23845475000007],[-91.08969120999996,77.25301229100006],[-91.23253377499998,77.1787035810001],[-90.79321708499992,77.14438792200019]]],[[[-116.08457468999995,77.46578962400014],[-116.39879203099997,77.55548038500001],[-116.76136757899997,77.53319705800004],[-117.07134118199991,77.44419559500005],[-116.83330773899996,77.38601963000019],[-117.02332072099995,77.29873292700012],[-117.61240712799997,77.33224288899999],[-117.85863928199996,77.38608252000006],[-118.09874105199998,77.3600972100001],[-118.81208391599995,77.35840814900007],[-119.13413281299995,77.32503761400005],[-119.3759893969999,77.18726101100009],[-119.725774732,77.11755165200003],[-120.07193223699988,77.00234806800017],[-120.5811287969999,76.75074055700014],[-120.8705958889999,76.69873567100012],[-121.18451453299997,76.68839528900003],[-121.50470108399998,76.44017425900006],[-121.98932342499995,76.43853207300003],[-122.33689183899997,76.4056885670002],[-122.6203131829999,76.33709793400004],[-122.62215131099993,76.17842844200015],[-122.46310565699986,76.10747559700008],[-122.68213509799995,75.9039524420001],[-122.41752860799988,75.86908129900013],[-122.0971673659999,76.0243762980001],[-121.833175257,76.04276714300005],[-121.23063597999999,75.97386763300011],[-120.979015415,75.99559041100014],[-121.00961065299998,76.14458203200013],[-120.82829132599994,76.18215385200006],[-120.62099738199998,75.99244892600018],[-120.40290429899989,75.96666655100012],[-120.45628336699986,75.83034380200013],[-120.24345956599996,75.82226898500016],[-119.71738214799996,75.88491767500017],[-119.56899161499996,76.08309935000017],[-119.63373787599994,76.3090873910001],[-119.4663225949999,76.32623305200008],[-119.29014758599999,76.13902508300015],[-119.05561163499993,76.08996097600016],[-118.89721179299994,76.2641630940002],[-118.52518614899998,76.3356679630001],[-118.64958005099999,76.45135162999998],[-118.29879258099987,76.5541877980001],[-118.43494371599996,76.72480989600007],[-118.28792359199991,76.77828545100016],[-117.75509510099994,76.73837174800019],[-117.92140111999998,76.67810243800011],[-118.00296984,76.40510748600019],[-117.59238690599994,76.28516251600007],[-117.30855424499987,76.259198615],[-116.92535529799994,76.34597603900016],[-117.0289464299999,76.53186334000003],[-116.46020646599999,76.56940815100012],[-116.06798594799994,76.61641475700014],[-115.86798635899993,76.69618004500006],[-115.93512367799997,76.89910026500019],[-115.74097363999994,76.96413082100003],[-116.21461624399996,77.03935986800008],[-116.3348208249999,77.12110325000009],[-116.18029917099989,77.19657825000013],[-115.58994415499996,77.26474656300019],[-115.46177176799995,77.35954992200016],[-116.08457468999995,77.46578962400014]]],[[[-85.0356007929999,77.57541359500016],[-85.327998558,77.58476284400018],[-85.16355266799997,77.45874995700007],[-84.80607414799988,77.50372500100019],[-85.0356007929999,77.57541359500016]]],[[[-90.77962455799997,77.64642185600019],[-91.23115873199998,77.57085546800005],[-91.20871696199998,77.39471602900005],[-90.857311784,77.28892225500016],[-90.13664479899995,77.19595706500019],[-89.6413530829999,77.32201999600017],[-89.80674670699995,77.49995390200019],[-90.40642207199983,77.63670061000016],[-90.77962455799997,77.64642185600019]]],[[[-104.99584365399994,77.40603049600014],[-104.97480515999996,77.5236309350002],[-105.37721910599998,77.68705353500002],[-105.9176671749999,77.76283760600018],[-106.06983104999989,77.70982331700003],[-105.81757227099985,77.6154688970002],[-105.78793998099997,77.5318446280001],[-105.48408357799997,77.29552825300016],[-105.22464007199994,77.16362762800014],[-104.80038564499989,77.110779025],[-104.47100629699997,77.1398214130001],[-104.38491231199998,77.27721864199998],[-104.71321763099996,77.38699662800019],[-104.99584365399994,77.40603049600014]]],[[[-95.39148300599999,77.74185018200006],[-95.92835916099989,77.755261508],[-96.2563375019999,77.68821228500019],[-96.29593153599996,77.6081392480001],[-96.06949795799989,77.4937462170002],[-95.28832698099995,77.46516487500008],[-94.84647840899999,77.48275979700014],[-94.14794036299992,77.44653906600001],[-93.56943756799996,77.43949703900012],[-93.3819930809999,77.62667212000014],[-93.08185038699997,77.65718059400007],[-93.22584983299998,77.73107527300016],[-93.64901986699994,77.78071833900003],[-93.84119112299999,77.74770868600018],[-94.70581741799998,77.79238566600003],[-95.39148300599999,77.74185018200006]]],[[[-102.07089097699992,77.90048180600013],[-102.42875435299993,77.88011894700008],[-102.51251769399994,77.78450771600012],[-102.06824454999997,77.68041572900006],[-101.51849815499997,77.72258270800012],[-101.10100547299993,77.71170834200012],[-100.97653490199997,77.77665518200018],[-101.25263939199994,77.84967974400013],[-102.07089097699992,77.90048180600013]]],[[[-114.02591595899997,77.96543673800016],[-114.4974419749999,78.04080839200003],[-114.92477673999997,77.96252168500013],[-115.00063378299996,77.91304201600019],[-114.27758693399988,77.70487159100009],[-113.88399187099992,77.72235264400013],[-113.54154226299983,77.81590259400014],[-114.02591595899997,77.96543673800016]]],[[[-109.54576592199999,78.07101178100015],[-110.08465597199995,78.11616232799997],[-111.21680821099989,78.09169378400014],[-111.7501767469999,78.03762150800014],[-112.39860893399992,78.00667242300011],[-112.792391609,77.93665338599999],[-113.19988520999993,77.91279499100011],[-113.2923306319999,77.77975920900008],[-113.12339064199989,77.634969373],[-113.17700772299992,77.52226004599999],[-112.90576815899993,77.46420331900009],[-112.55782697899997,77.45032372500009],[-112.44588208199997,77.36962627400004],[-111.99409793599995,77.3278913800001],[-111.31424280999994,77.41006319200005],[-110.91975410899988,77.40333832200014],[-110.42782225499991,77.45794426800012],[-110.05550795799991,77.55613146100006],[-110.02860644299994,77.76188102200007],[-110.60483824499994,77.76190135900003],[-110.8573898699999,77.86473747600007],[-110.16992890999995,77.89443757400011],[-109.66094057399994,77.95977744700008],[-109.54576592199999,78.07101178100015]]],[[[-103.06905133799995,78.12285925600003],[-102.768050626,78.2140089940001],[-103.0339577879999,78.26538807900016],[-103.29809185799996,78.14878555300015],[-103.06905133799995,78.12285925600003]]],[[[-109.34518881499991,78.55121105800015],[-110.40843338499991,78.75890432800014],[-111.15721067799996,78.69250803200003],[-111.40215094799993,78.59633131000004],[-111.68794404299996,78.5540840910001],[-112.28867665899992,78.54285095800014],[-113.05730580499983,78.43182948800012],[-113.31087603699996,78.33596571600009],[-113.04717402599994,78.2734995690002],[-112.65148782499995,78.33942869800006],[-112.1560791419999,78.37315026300018],[-111.740294485,78.27345631000009],[-111.40331466599991,78.27592187100004],[-111.25774937699987,78.37564851600001],[-110.9329018379999,78.36886080200009],[-110.67567636599995,78.29736480200012],[-110.36666252899994,78.27665769600009],[-109.96590592599989,78.32616870300012],[-109.42602311499996,78.31412186600016],[-109.22715598199989,78.47769639500007],[-109.34518881499991,78.55121105800015]]],[[[-96.91036836099988,78.70463140300012],[-97.50492734799985,78.7989738440001],[-98.1918765389999,78.81239203500019],[-98.40536864199998,78.76669387800018],[-98.36909632699997,78.64946454200003],[-98.10875570499991,78.57820513600007],[-98.36604617299992,78.52832025900005],[-98.35749326699994,78.44353217200012],[-98.07775697699992,78.3110865910001],[-97.80768930799996,78.2575028890002],[-96.92606556499999,78.14265758],[-96.97683268199984,78.0718997800002],[-97.65831979899997,78.09116308600011],[-97.72247317899996,78.04056281500004],[-97.02668109899997,77.91894452300016],[-97.09106747099992,77.80573475900007],[-96.82033795199999,77.79149296200006],[-96.57651920999996,77.89933982600013],[-96.30667761299992,77.8591644350002],[-95.94025089199988,77.88411608900009],[-95.40164307499998,77.96480334100005],[-95.10374409699989,77.94996800400014],[-94.8932271619999,78.1063050200001],[-95.40982699699998,78.2356892250001],[-94.91029886399997,78.3274306890001],[-94.91150423999994,78.3929114450001],[-95.55682968399998,78.51287866200005],[-95.92897368199993,78.48267860600009],[-96.28898317999995,78.52502287000016],[-96.25871465599994,78.62612503700007],[-96.91036836099988,78.70463140300012]]],[[[-85.15658,79.02762960300015],[-85.8098616449999,79.06883484900015],[-86.27545362999984,78.98948657600016],[-86.32405836999999,78.88857330900004],[-85.20211040399988,78.99234956300018],[-85.15658,79.02762960300015]]],[[[-103.4608021919999,79.30933772600008],[-103.96304532699997,79.37478237300019],[-105.116197748,79.30150133700016],[-105.45640692199999,79.2998495010001],[-105.61226928299993,79.1748862820001],[-105.59917600299991,79.04100563900005],[-105.38268142099992,79.00754677200018],[-104.92566249899994,79.05057409800014],[-104.68191091799997,78.98981347600005],[-104.85438639499995,78.8752456150001],[-104.58006789999996,78.85062849000013],[-104.4494429479999,78.94239523000005],[-104.10116847499995,78.98000511800012],[-103.90205719499988,78.87227911800005],[-104.19891438199983,78.771010333],[-103.58481024599996,78.76627837299998],[-103.32733730999996,78.72556781500009],[-103.49991083099997,78.66453185800003],[-103.54335341099994,78.50488039100003],[-104.13420986999989,78.52648633100017],[-104.73578541799998,78.58162647500012],[-105.01440506599988,78.49479560800006],[-104.73759570999994,78.35923584900019],[-104.43149549499987,78.26576186200009],[-103.91470999799998,78.2442616350001],[-103.65972945099998,78.31717708999997],[-103.05761587699993,78.3674783080001],[-102.56121232399988,78.23513679300004],[-102.16259772199999,78.29266152600019],[-101.70743977199999,78.26100424400005],[-101.28458083099991,78.17582586300017],[-101.00944738399994,78.17105255500013],[-100.74280677099989,78.08551306200019],[-100.76508557399984,77.96809657000017],[-100.4580770849999,77.85592485500007],[-99.90311013399997,77.77928939400016],[-99.77152352499996,77.81785968100019],[-99.33165427599994,77.82837864200019],[-99.05035196599994,77.88746112600018],[-98.95076997999996,78.04179690100017],[-99.48771103399997,78.2715376070002],[-99.70629277399996,78.30263977400011],[-99.85171197899996,78.42875185700012],[-99.4895233929999,78.585063918],[-99.79215927299998,78.64015334600003],[-99.97425065899984,78.73417451100005],[-100.38255987999992,78.83060455100002],[-100.96632513999998,78.77057679000012],[-101.19424924499998,78.82147027800005],[-100.96802343099989,78.92295649500011],[-101.62645624999993,79.07789026600005],[-101.98907378599995,79.08480419000011],[-102.72649289999998,78.95720613400005],[-102.61628643599994,79.1007630630001],[-103.0776003169999,79.28740279800007],[-103.4608021919999,79.30933772600008]]],[[[-99.4908556719999,80.10638573200015],[-99.89021388599997,80.13399452100003],[-100.19637597599996,80.03720615400016],[-100.1387547899999,79.88863577400014],[-99.51388405499995,79.88653867800019],[-99.29599516699994,79.83847773400015],[-99.33810782599994,79.76100612200008],[-98.9922800189999,79.72347341600005],[-98.61747354399995,79.78412349500013],[-98.85963635699989,80.06912486500016],[-99.15314357599993,80.13081792700012],[-99.4908556719999,80.10638573200015]]],[[[-95.18015009599998,80.69681679900009],[-95.97077480999991,80.69405263900018],[-95.24604337599993,80.60797233200009],[-95.18015009599998,80.69681679900009]]],[[[-93.12432674199988,81.34576969200015],[-94.28725609499992,81.340031942],[-94.41354580899986,81.24536162300006],[-93.78388575799994,81.19909306100004],[-93.2901849619999,81.21043113300004],[-93.21696324499993,81.08910802800017],[-93.6005887959999,81.07721513899997],[-94.2350892479999,81.10664068500017],[-94.16823672699996,81.00320298900004],[-94.9155185709999,81.06075256100019],[-95.27615187899994,81.00355893000005],[-95.28820133499994,80.8844188160001],[-95.4942147719999,80.79460853300009],[-94.69793373899995,80.72220154600012],[-94.57723557399993,80.60242129900007],[-94.77866684599996,80.5594397100001],[-95.51087405699997,80.58979372100009],[-95.95349622599997,80.55105124300013],[-96.10770979299991,80.4851567400001],[-95.82210837399992,80.44784330700014],[-96.12433431799991,80.38089840400005],[-96.64383013199989,80.33006295600012],[-96.46650703499995,80.27189784600006],[-95.33561166899989,80.11379188500018],[-94.66707153799996,80.12545224900003],[-95.15803381399996,80.02664887900016],[-96.04220144799984,80.07211881500007],[-96.61664173899999,80.14251558800015],[-96.77133692699988,80.08592982100004],[-96.63290714699991,79.89527207100008],[-96.35927736899998,79.82626377800011],[-95.90084421299997,79.64811287100014],[-95.55394830399996,79.62877716700012],[-94.82245847499996,79.66104114600006],[-94.56964645799997,79.62376412900011],[-95.35516262599998,79.5548804710001],[-95.62859170599995,79.55111188600011],[-95.74169492499993,79.40638636100016],[-95.34680717099991,79.38582983000009],[-95.2069908499999,79.28513812099999],[-94.9918290629999,79.2638770860001],[-94.50733458899998,79.34321356700013],[-94.25351978099985,79.26612043200004],[-93.8605456549999,79.26349053300015],[-93.07264183099994,79.35717214100009],[-92.57223954499989,79.36190788000016],[-91.82930694299995,79.33623608600004],[-91.9594572719999,79.29157946500004],[-92.52299891699994,79.30295509700017],[-92.67957236199993,79.24681713300009],[-92.25692370999997,79.20141913800006],[-91.17233547599989,79.24471726600018],[-90.77450373099992,79.20650696200005],[-92.0957720639999,79.14828482400003],[-93.38262505299997,79.16164668900007],[-93.69117973999994,79.04663754200004],[-94.25323050599997,78.99201015600005],[-93.82055543799999,78.76977408400012],[-93.29649429199998,78.57979052600018],[-92.84394996399999,78.62550748100011],[-92.25067268499987,78.57455195000017],[-91.99519740599993,78.52555081900005],[-92.86119335199987,78.49858839300009],[-92.93773821999997,78.41654942000008],[-92.49497256399997,78.30351649599999],[-91.98230237199988,78.21280289600014],[-90.98031949699998,78.14031665200014],[-90.32610669299993,78.14500889900012],[-90.36212951099992,78.2569319550002],[-90.04209563299992,78.29875430300007],[-89.86265368299996,78.20898137000017],[-89.48535204999996,78.18544748300008],[-89.74528144499999,78.37794850400007],[-89.99993804499991,78.47333907600006],[-89.77027230699997,78.4928543310001],[-88.99391069099994,78.16669365600012],[-88.76302125299998,78.1656390440001],[-88.53558910899994,78.4004748810001],[-88.31556921899994,78.47860428600012],[-88.016242031,78.47775992800007],[-87.86456069499997,78.58179735200014],[-88.10021129999996,78.68117786700003],[-87.52200684199994,78.66072526300013],[-87.32606261199999,78.79804343900014],[-86.28045048699994,79.08950164700019],[-85.27202729799995,79.18846516400009],[-84.86607614699994,79.270583338],[-85.38382917299992,79.45379029000009],[-85.63233898099998,79.6056181510001],[-85.87267813399984,79.51485652200006],[-86.22921202099997,79.6326213480001],[-86.65923980199995,79.656461552],[-87.16871158499998,79.57401879100013],[-86.94203122499994,79.86207869600014],[-86.96526957099996,79.94722116300011],[-87.3607641449999,80.08069242600004],[-88.05100957699995,80.09773135400013],[-87.61817965099988,80.17282545600011],[-87.67196958799997,80.4044544360001],[-88.42354197499998,80.43754840300011],[-88.69309280899995,80.37079471100009],[-88.67972284999996,80.27269525600013],[-88.34418508899995,80.15809843700009],[-88.73805019599996,80.1250327750002],[-89.15588119499989,80.2149560100001],[-89.04796135799995,80.44913852400009],[-89.28634009099983,80.52129745800005],[-90.74169275099996,80.55597991500008],[-90.61035198399998,80.63533336600011],[-90.77362095799998,80.7123285130001],[-91.14238097799989,80.75674093800012],[-91.81148141499995,81.07492716200017],[-91.8376881179999,81.15232620200004],[-92.36561997999996,81.2616063010002],[-93.12432674199988,81.34576969200015]]],[[[-69.53694230999992,83.005125071],[-69.64178523899994,83.10665981900013],[-71.08404268699996,83.0946303360002],[-72.63078433999993,83.09456530500006],[-73.64388287599996,82.93944456000008],[-74.47694421299997,83.02958636700015],[-76.12943802299992,83.05245558100017],[-77.42504985199992,82.97269404800011],[-76.7193160779999,82.88210152900007],[-76.26261148599991,82.70695236800015],[-75.6140497319999,82.62772322400014],[-75.87655478699998,82.59255718400016],[-76.6120682369999,82.67536493800014],[-77.14565650099996,82.85958169000008],[-77.82542745299997,82.9269207280002],[-79.03052458299993,82.88935058700014],[-79.31656182299992,82.96602269200002],[-80.16173294499987,82.92889658400009],[-80.42647276899993,82.78579310900005],[-81.33742905299994,82.82170907000017],[-81.62287650099995,82.79787364600014],[-80.62575871899998,82.56160994100009],[-80.88076925099989,82.528344817],[-81.4965542349999,82.6343661630001],[-82.10178260099997,82.66802273400015],[-82.417807999,82.59769439700005],[-82.73208637499994,82.39152594200004],[-82.62999673599995,82.34823043700004],[-81.51464551999993,82.18119326200019],[-80.98257924999996,82.15548518500003],[-80.58331792699983,81.99265079700018],[-82.09431213499994,82.17349573400008],[-82.66553462899986,82.28034789300006],[-83.01294294299998,82.2165466100002],[-83.873240792,82.36089834200004],[-84.751352737,82.40500947600015],[-84.65279944699995,82.46711699899998],[-85.63525551199996,82.46605507600015],[-85.43448252899998,82.27761265200019],[-85.68401801699986,82.23314584800016],[-86.68627510299996,82.22832272500017],[-86.59875515499994,82.11201708500005],[-86.89460766799988,82.05144213900019],[-88.08654645899998,82.08782984499999],[-88.83122775899994,82.03299883900007],[-89.30434669099998,81.939405889],[-89.86948679199992,81.89628589400019],[-90.60808341699993,81.87471639200004],[-91.70902799699996,81.72438635800006],[-91.93601776299994,81.60672347200011],[-90.94672169699999,81.55446063500011],[-90.73269516099987,81.65758274000018],[-90.29542419299992,81.68894308200004],[-89.77972262399993,81.59804293200006],[-90.82167849099983,81.45554217700015],[-90.33720197699995,81.3771530750002],[-88.94074515199998,81.53552519200008],[-88.90580809599993,81.48729217300007],[-89.90151119099994,81.30266796400008],[-90.28607334499992,81.19710044200008],[-90.2490227099999,81.08485767800005],[-89.66409957199988,81.00585105400017],[-88.26338532799991,81.06627152300013],[-87.43963537099995,81.06252991100013],[-86.45609521699993,81.12033109100014],[-85.94905590799988,81.22648485500014],[-85.04322826399994,81.30259699300018],[-85.01672450899991,81.25058874600012],[-85.51003882899988,81.19372013999998],[-86.02970145299997,81.07975453400007],[-86.69649384199994,81.00333871100008],[-87.65473969399989,80.97904671400016],[-88.29520683499993,81.00035011700004],[-89.45171683999996,80.91179489300009],[-89.27065353599988,80.84255621200009],[-88.20605887099993,80.68067453100008],[-87.53774854199992,80.61829350300007],[-87.1979128509999,80.63467480399999],[-87.08717142199993,80.71635112700005],[-86.62723332299998,80.82000717600005],[-86.21053561999992,80.95897896600013],[-85.71002981499993,81.04436850000019],[-83.72533460399995,81.11614866400004],[-82.83587611799999,81.17050944200014],[-82.76694727099988,81.1262731720002],[-83.81675545399997,81.07110131500002],[-85.20298579199994,81.01370399000012],[-85.7430993299999,80.955543815],[-86.55090930099993,80.71512358100011],[-86.76126450399988,80.59384514300012],[-86.31893164299993,80.54198081400006],[-85.17594201999992,80.50505729500009],[-83.89882387999995,80.53441535700017],[-83.7316022899999,80.6155945160001],[-83.88538356499998,80.78626635100017],[-83.16021796799993,80.80838921000014],[-83.55578628499995,80.71388211800013],[-83.1030871189999,80.64506577999998],[-83.01124418599994,80.53669804700002],[-81.51346772499994,80.6085943550001],[-80.9822343379999,80.65285670800017],[-79.9718611269999,80.76823014800004],[-79.53395477599997,80.84083761400018],[-79.21336008999992,80.95979492700002],[-79.38731407699993,81.00281010500004],[-79.19250701199991,81.10161960100004],[-78.72027255199998,81.1162729190001],[-78.66728296999992,81.18776796500003],[-78.31149832099993,81.28477509200002],[-77.01110824699992,81.43848952000008],[-77.03392705299996,81.37517982000008],[-77.68507836799989,81.31735216300012],[-78.38920460999998,81.14084748800013],[-78.4806289039999,81.07889332800005],[-78.98136737199997,80.97998345600007],[-78.9545160269999,80.8507955010001],[-77.85923034399997,80.90754304100017],[-77.58703187999987,80.82977377600008],[-78.48356160399999,80.77939031900019],[-79.8848106079999,80.63352324800013],[-79.68585367499998,80.59662455600011],[-79.0661982119999,80.61778173300019],[-78.54982752699988,80.56766178400005],[-80.2517626479999,80.52675306499998],[-80.64349625199998,80.46626034100007],[-81.78232108499998,80.40026629800013],[-83.20387465399989,80.33223104400014],[-82.3091038789999,80.04256341400003],[-81.63071159499987,79.95632582500008],[-81.51460271399986,79.71255606900013],[-81.97013426999996,79.71825070800014],[-82.0902225989999,79.84145175300011],[-83.29600751699996,80.10965026800011],[-83.70945540999998,80.22889223100003],[-84.30495183099987,80.26947872000011],[-85.3765970579999,80.2683745010001],[-85.78682997599992,80.3241877690001],[-86.52712576299996,80.29879393900012],[-86.66334324499991,80.10781545000015],[-86.42701694599998,79.94912048400016],[-86.46727992899997,79.80029522800015],[-86.30603200899992,79.74437102800005],[-85.4438670379999,79.69086719000012],[-85.02298647699996,79.61012898900009],[-84.8865584589999,79.48340429900014],[-84.49952331699984,79.41246888000012],[-84.31145169999996,79.18892091600014],[-83.56219977499984,79.05046370700012],[-83.97849028999997,79.05177044700008],[-84.13726386999997,79.12078185900003],[-84.54394508099995,79.1462428050001],[-84.77654940299993,79.06902809200005],[-84.68937812899998,79.01976044100013],[-84.18434653899999,78.95609581000019],[-83.57262458999998,78.93068420600008],[-82.91970352799996,78.93306195500008],[-82.5256181719999,78.88782818900006],[-82.09386741699996,78.9122316770002],[-81.72034356799992,78.85650150900011],[-82.46136514999995,78.83161829300008],[-82.98636507999998,78.85602835300006],[-83.37476289499989,78.77623826400014],[-83.84442700299996,78.84365354800013],[-84.63865965999997,78.85328384600007],[-85.0845728029999,78.92090761000014],[-85.65650458699997,78.84585729000003],[-86.54767442499991,78.79591007300019],[-86.89590854599999,78.72196279000013],[-87.17141222899988,78.54074621100017],[-87.49580825699996,78.43470467300006],[-87.46662196499994,78.1189835290001],[-86.7313991289999,78.11452235600018],[-86.41157761899996,78.19853998700017],[-86.11910328799996,78.05228356000003],[-85.5232093429999,78.09680444500015],[-85.18219518199993,78.21393239999998],[-84.95171651999993,78.22079009300012],[-85.06090687499994,78.05556679600005],[-85.68985951799993,77.9294096910001],[-85.17682050399986,77.77755069500012],[-85.29690959499993,77.66773486200003],[-84.92677894199994,77.5979928380001],[-84.8594526259999,77.53634841300016],[-83.93714460299998,77.49416721800014],[-83.40456921499998,77.6055975060001],[-83.1241741579999,77.78786372300004],[-82.74387127599988,77.95498891200009],[-82.53451893699997,77.91557046000014],[-82.98024525799997,77.67435164900013],[-83.37947360999993,77.5120995740001],[-83.82789789399988,77.44422105400008],[-83.95103903099988,77.38427480100017],[-84.61992357499997,77.37602989800018],[-85.41132497599995,77.38780013600007],[-85.73114578899992,77.45349074400002],[-85.88468438699988,77.63053197500005],[-86.19679860199994,77.78932022100014],[-86.81621563199991,77.88200714800007],[-87.28336798499998,77.89888572900014],[-88.09691002099993,77.82070971600018],[-88.22815916299993,77.65954934500019],[-87.71095909299993,77.53192747800017],[-87.71565017299997,77.35563602000013],[-87.23151718899999,77.30178370900012],[-87.07573747899988,77.17869020400013],[-87.69728581599998,77.1349777370001],[-88.39732710599998,77.11873753200013],[-88.71984303399995,77.00010213700006],[-89.5268308759999,76.8489519060002],[-89.41035131699988,76.67488262000012],[-89.65196151299995,76.57177223000008],[-89.39830393699998,76.53297988800006],[-89.23079565299992,76.436134804],[-88.8753936359999,76.4068279600001],[-88.6993398429999,76.7194453680001],[-88.52618311399988,76.72847178700005],[-88.33327165199995,76.51501806300007],[-88.32588326299998,76.383339105],[-87.60749414999992,76.33631903000003],[-87.4121265679999,76.41222700600002],[-86.70005655699993,76.34448467000016],[-86.60142130899993,76.45120111200015],[-86.30203840299998,76.37469729500015],[-85.69812580199988,76.34567535800005],[-85.23405960299988,76.2805816340001],[-84.38822205199989,76.32134753800011],[-84.94083245899992,76.4149969180001],[-84.21835455099989,76.44602474700002],[-84.03399256299997,76.5282917460001],[-83.70123496399998,76.42299391500012],[-83.30822132599997,76.40488915400005],[-83.04488447799997,76.43109788400017],[-82.7779408479999,76.3762121060002],[-82.2752259159999,76.39032667200007],[-82.09831447499982,76.51793085000014],[-81.77461854499995,76.46563892300003],[-81.47177839999995,76.465153225],[-81.27977891999996,76.53108097400013],[-80.76090975099999,76.41602913100013],[-81.10629295499996,76.21238219100013],[-81.0823058119999,76.14231201100017],[-80.22419302399999,76.24019253600017],[-80.05528470199994,76.22682246100015],[-79.57546899599993,76.30667808100009],[-79.25174850999997,76.31706608500019],[-78.97725689199996,76.41729381800008],[-78.79357023599982,76.56204244300017],[-78.52637792099995,76.45660277200017],[-78.16691079799995,76.5195150300001],[-78.05397791899992,76.62380017000004],[-77.80512281399996,76.64911721300018],[-77.80162476899994,76.84394603600003],[-77.88531636499994,76.94258219500006],[-78.09013142399988,77.01529180200015],[-78.39526747099995,76.9973213240001],[-78.73344782599997,76.82837784600014],[-78.87091545699997,76.92139285800016],[-79.346652367,76.91553483500019],[-79.35433736499988,76.97214403600003],[-78.97708081099995,77.09648018000007],[-79.2529379579999,77.21534316000003],[-79.63316211399996,77.24278220500008],[-80.13893955699996,77.1932148160002],[-81.09237171599995,77.28418521300006],[-81.67499366699997,77.17709200500013],[-81.90518643099989,77.18760757200005],[-81.74306575499998,77.29452720200004],[-81.18026939399994,77.31716295500019],[-81.77293150299988,77.44157048300008],[-81.66925657799999,77.53588950699998],[-81.2970447209999,77.42159675700015],[-80.76920402399998,77.3286421580001],[-80.12668007699995,77.28232819600015],[-79.66130038299997,77.31376193400007],[-79.15597816499996,77.29048505900016],[-78.71968078699996,77.31154465600008],[-78.32830802899997,77.37070608700014],[-78.01974903199994,77.46149890900017],[-77.94122737799995,77.55003676500013],[-77.70516183499996,77.59546788700015],[-77.98974093699997,77.69368135600013],[-77.97497259599999,77.797369823],[-78.39525530999992,77.89843231700013],[-78.06135519699995,77.95822837200006],[-77.18605095599992,77.9384065480001],[-76.95581224499989,77.88933346300007],[-76.25978817499998,78.00338569600018],[-75.88079327199995,77.95903429300006],[-75.64275468799997,78.03962052400016],[-75.60447693199995,78.12837104400012],[-76.11941238199995,78.12920288300012],[-76.63406035699995,78.16220494900011],[-76.63269095099997,78.24813943700013],[-75.61608965799996,78.2010231660002],[-75.08349527699994,78.36285131800008],[-75.81864416199988,78.5006688700002],[-75.05099416699994,78.52680314100007],[-74.66519710299997,78.58314372400014],[-74.81171591899982,78.635573986],[-74.7419112639999,78.8142611610001],[-75.3394156029999,78.88926682000016],[-75.83065710099999,78.92096384600018],[-75.72866539199998,78.96910683800007],[-76.76046941199996,79.0215647340001],[-77.20304079299996,79.06078951000018],[-76.18120408399994,79.12410665000004],[-77.12546335499997,79.18775793300011],[-76.11655427099993,79.19759034000015],[-75.84479889099998,79.15410188800013],[-75.74217845899994,79.07403413800017],[-75.12921729999988,79.03044726900009],[-74.45542784499992,79.029210239],[-74.58945893099991,79.14293127700017],[-74.91481647599988,79.23979856000017],[-75.95661538799993,79.22948965000006],[-76.08789477799996,79.25964050100009],[-76.75798840699986,79.28107943000003],[-76.86390666199998,79.34523255100004],[-76.09299331599993,79.3320231570001],[-75.88443419999993,79.41658251000013],[-74.91466782599991,79.37238008100002],[-74.6449593029999,79.43370343700013],[-74.06168183999989,79.43585720800007],[-73.12085103499999,79.54739331000007],[-73.14672189199985,79.62912796299997],[-73.38810065499996,79.7399119050001],[-74.00079636199996,79.7895607750001],[-74.67084937899995,79.78444913100009],[-74.7455044219999,79.84556919600016],[-74.24544643599995,79.88305638999998],[-73.12819515799993,79.8115932400001],[-72.94176117099994,79.70172822300003],[-72.70817122099999,79.67172364599998],[-71.4674923209999,79.72471764900007],[-71.10510752499988,79.78512836100015],[-70.88140305299999,79.87648856800013],[-71.27044369499998,79.94941056800019],[-70.70918395299998,79.98407674100008],[-70.49265479399998,80.04794880300005],[-70.62587339099997,80.12814126300015],[-71.3658953179999,80.07054515600015],[-71.67695474299995,80.10327469800012],[-70.74334604699993,80.1991196100002],[-70.0869446349999,80.19648897700006],[-69.82956316199994,80.34388566000007],[-69.38120853099997,80.39833502800019],[-68.91107129999995,80.61669303000008],[-68.25361308099997,80.76329163300011],[-66.58730291299997,81.05638814600007],[-66.12645320799999,81.21036657700006],[-65.53876013399997,81.24702521700004],[-64.77368327499994,81.37004538700006],[-64.46004214899995,81.48072907300008],[-64.54075614099992,81.54745277500007],[-65.15037291099992,81.52587643400017],[-66.60726657799995,81.40993904300007],[-67.64755037499992,81.33665039900012],[-68.17195981999993,81.27877905200006],[-68.53830935499991,81.30239761700017],[-66.66931127699996,81.50753713200015],[-67.14686496999991,81.56467556500013],[-66.78793243199988,81.62204486900009],[-65.85072523299993,81.62853013200015],[-65.7891109599999,81.69557323300018],[-64.95650620999993,81.75091762100016],[-64.18363376299993,81.74444079500017],[-63.504018732999896,81.86032378300013],[-62.35276283099995,82.00453132900014],[-61.173492875999955,82.24611561400019],[-61.135980860999894,82.35634884100011],[-61.71955069199993,82.48814839900001],[-62.33235563099993,82.52989146800019],[-62.88724184499989,82.51410696700009],[-63.73315328499996,82.71031542400004],[-63.45586441699999,82.76584233100004],[-63.97133310199996,82.83720250900018],[-64.52895798199995,82.77760870200007],[-64.67758884999984,82.89835420100013],[-65.75667070499986,82.85099892800014],[-67.3651698299999,82.67857599100017],[-68.3916866209999,82.68489534400015],[-67.01113841599988,82.79992372600009],[-66.37590446499996,82.93129929500003],[-67.30715183399991,82.93671429500006],[-68.46121838099992,83.00914909199997],[-68.81996158099997,82.95697084900007],[-69.53694230999992,83.005125071]]]]},"properties":{"objectid":311,"eco_name":"Canadian High Arctic tundra","biome_num":11,"biome_name":"Tundra","realm":"Nearctic","eco_biome_":"NE11","nnh":2,"eco_id":412,"shape_leng":956.812491836,"shape_area":229.363222504,"nnh_name":"Nature Could Reach Half Protected","color":"#579ACE","color_bio":"#9ED7C2","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":645967.978203272,"percentage":7.559464286566222}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-65.86623363999996,-26.845067622999977],[-65.89307349999996,-26.672765030999926],[-65.85977957499989,-26.66435546699995],[-65.84796863499992,-26.53150749799994],[-65.80290953499986,-26.429730070999938],[-65.79268663099998,-26.197545485999854],[-65.70296455999994,-26.005896454999913],[-65.63685648899997,-25.969843038999954],[-65.62577058399995,-25.705314365999982],[-65.69652558199988,-25.414634991999947],[-65.76129958799999,-25.31301581599996],[-65.84954057699997,-25.298770435999927],[-65.96943649399986,-24.973265930999958],[-66.10054052399994,-24.70271301599996],[-66.16596949199993,-24.63921205299988],[-66.24338558799991,-24.713318638999965],[-66.25334161299992,-25.096344120999902],[-66.37182651999996,-25.15713504799993],[-66.44307755799991,-25.221577968999952],[-66.43939957899988,-25.296991628999933],[-66.37790658499995,-25.42164142499996],[-66.35095256299996,-25.669464965999964],[-66.21245552699997,-25.76907416199998],[-66.11869052899988,-25.857748327999843],[-66.07643148799991,-25.966687084999876],[-66.07785758499989,-26.11868233799987],[-66.04873650599995,-26.22521029299992],[-66.07939951999992,-26.433436045999883],[-66.1779026399999,-26.523101957999927],[-66.23374153799983,-26.503874877999976],[-66.2441485089999,-26.393757624999864],[-66.27998349199999,-26.375739550999924],[-66.4063644869999,-26.423304336999934],[-66.54991949899994,-26.42402534799993],[-66.59678657499995,-26.490850405999936],[-66.66574851599995,-26.687996624999982],[-66.88063050699998,-26.740677221999874],[-66.92804760299992,-26.83490490099996],[-66.95051562999998,-26.96996787099988],[-66.99276763099988,-27.066595624999877],[-67.06419351599993,-27.129490072999943],[-67.26136052099992,-27.41859348099996],[-67.34212451699995,-27.4453584069999],[-67.48449751299995,-27.160372692999886],[-67.57953655999995,-27.070803507999983],[-67.66056860899988,-27.037569093999934],[-67.76750157699996,-27.04105177499997],[-67.83853954799997,-27.137038814999983],[-67.8767544889999,-27.263336326999934],[-67.89933064199994,-27.487916513999835],[-67.86022956599999,-27.55543358299991],[-67.88417062899998,-28.01084736099989],[-67.95337648299989,-28.111548383999946],[-67.97046651299996,-28.23450000699995],[-68.08290052399991,-28.251970407999977],[-68.52165962799995,-28.244575892999933],[-68.66776257099991,-28.417567645999952],[-68.80681650099984,-28.663460665999935],[-68.80998251299997,-28.781752956999924],[-68.78351548099988,-28.909032994999905],[-68.91724354899992,-29.074765181999965],[-68.96617156799994,-29.068122522999943],[-69.02266660099997,-29.23620298399993],[-69.04385353799995,-29.49033222999992],[-68.87046062699994,-29.64003436199988],[-68.71376061199999,-29.511829296999906],[-68.68671455699996,-29.625954775999958],[-68.69273360199998,-29.800377319999882],[-68.66092662599993,-29.84166791599995],[-68.66950248599994,-29.957460555999944],[-68.70363661399995,-30.000995657999965],[-68.72069563099996,-30.12257918699987],[-68.68306759099983,-30.20583914599996],[-68.73168950299998,-30.271779745999936],[-68.73991349099992,-30.418640412999878],[-68.7024006179999,-30.458870865999927],[-68.72026060999991,-30.555323437999903],[-68.8536455229999,-30.582349542999964],[-68.87091056799994,-30.79233884899992],[-68.85018161799991,-30.93384197099988],[-68.88611550799999,-30.97606949599998],[-68.89752947999983,-31.16943966799994],[-68.86793549499998,-31.202374679999878],[-68.89224251099989,-31.360789296999883],[-69.08119960999994,-31.346828566999932],[-69.14881860299994,-31.286628731999883],[-69.28704859099997,-31.21982798199997],[-69.2609325929999,-30.944441725999923],[-69.23372661099995,-30.91883467599996],[-69.1697235719999,-30.65868889999996],[-69.09144548099994,-30.54464489299994],[-69.07034253099994,-30.400523096999905],[-69.03379860699988,-30.33324943899987],[-68.87578548199997,-30.254345554999873],[-68.91375751499999,-30.094527136999943],[-69.03434762099994,-30.08223473999982],[-69.09947953499994,-30.011388547999957],[-69.12689254999998,-29.87806834299988],[-69.17871852799993,-29.782405010999923],[-69.23259756899995,-29.410575235999943],[-69.30966162499988,-29.310891943999934],[-69.38111148199994,-29.484574197999905],[-69.40125252499985,-29.75893383799996],[-69.32342554799999,-29.93181947599993],[-69.31479654599991,-30.085011496999982],[-69.28035748599996,-30.12412229599994],[-69.28117354799997,-30.231662280999956],[-69.41643550399994,-30.51978467099991],[-69.46280653999992,-31.006097496999928],[-69.49577357099997,-31.035082285999977],[-69.53839152499995,-31.434191802999976],[-69.64956657399983,-31.641347521999933],[-69.66198754899995,-31.77958002599985],[-69.54069554299997,-31.863059422999868],[-69.49937460399991,-31.955011414999944],[-69.47557854899986,-32.17789694999988],[-69.43341858099996,-32.21489483799991],[-69.46648451899995,-32.60228444299992],[-69.51350364299986,-32.68579686399994],[-69.50312751699994,-32.78166102599988],[-69.22682159899989,-32.884680818999925],[-69.17793263999994,-32.94328809199993],[-69.06906848199992,-32.99141664499996],[-68.95910662899996,-32.96778520999993],[-68.91593949299994,-32.732197403999976],[-68.82291461599988,-32.60646147999995],[-68.76941661599994,-32.47380545699997],[-68.74769558499997,-32.315336692999836],[-68.67467462399992,-32.17707300899991],[-68.65020751299994,-32.01145246899995],[-68.60842154599999,-31.922679396999968],[-68.77427661199988,-31.564195120999955],[-68.72223655999989,-31.40634862899998],[-68.65711956599995,-31.370659825999894],[-68.4540485149999,-31.38307644199989],[-68.40280155899995,-31.449797229999945],[-68.32341755999994,-31.453648881999925],[-68.30844848599997,-31.52564942999993],[-68.22608153599998,-31.641869546999885],[-68.07218157899996,-31.759226584999965],[-67.8521886389999,-31.672952661999886],[-67.75245656399994,-31.572738123999954],[-67.66950254499994,-31.541561970999965],[-67.40148951399993,-31.54358703899993],[-67.32563060799993,-31.510917061999976],[-67.23564148999998,-31.35398050999993],[-67.22367062299992,-31.074282937999897],[-67.26477849399998,-31.030835510999964],[-67.2837826149999,-30.894323476999944],[-67.36106862399993,-30.770365857999877],[-67.65148161999997,-30.502724480999916],[-67.7200854859999,-30.399001278999947],[-67.61734061999988,-30.274749621999888],[-67.52787754999991,-30.280610583999874],[-67.41436763799993,-30.34048318899994],[-67.30413052299997,-30.345218963999912],[-67.22130558499998,-30.226424429999952],[-67.20293463299998,-30.074703935999935],[-67.09846460299997,-29.953626505999978],[-67.01248957799993,-29.73662774999997],[-66.99210361599995,-29.333687032999933],[-67.04840854799994,-29.232785011999965],[-67.05440563199994,-29.152592325999933],[-66.91989854899998,-29.044729469999936],[-66.77637455099989,-28.965484777999905],[-66.40855451099992,-28.82833320499992],[-66.14066352099991,-28.63746084099995],[-66.02264364199988,-28.44490941399988],[-66.02800755699997,-28.25826806699996],[-66.08195449099992,-28.120652806999885],[-66.06691752499995,-27.805988114999934],[-66.18118247899997,-27.737680800999897],[-66.2735215479999,-27.55804638999996],[-66.50806463299995,-27.47004227399998],[-66.34561161499994,-27.42746203799993],[-66.26747853099988,-27.27925456699984],[-66.00899454999995,-27.06172506799993],[-65.93956758199994,-26.908540590999962],[-65.88350656299997,-26.91089657599997],[-65.86623363999996,-26.845067622999977]],[[-69.13629151299995,-31.412412432999872],[-69.08026854799982,-31.446039119999853],[-68.97480056899997,-31.724605804999953],[-68.99583461999998,-31.942810548999944],[-69.04093948499991,-31.99312292299993],[-69.05316951999993,-32.19239261299998],[-69.01179460199995,-32.216092946999936],[-69.02379648199991,-32.408198791999894],[-69.10163854599989,-32.460077072999866],[-69.12930251399996,-32.56693477199991],[-69.24243155299996,-32.57362151899997],[-69.33049752699998,-32.35983336699991],[-69.38480354299998,-32.04056432799996],[-69.34947164199997,-31.994903071999943],[-69.37233764099989,-31.853305569999918],[-69.34032463799997,-31.50762733299996],[-69.21075449699993,-31.34843068399988],[-69.13629151299995,-31.412412432999872]]],[[[-65.88686351599995,-24.805647145999956],[-65.78341658099993,-24.716954204999922],[-65.65912653599997,-24.64250597399996],[-65.69591554699997,-24.59230926999993],[-65.69779963099995,-24.352898980999896],[-65.72402962399997,-24.307460348999882],[-65.72174052599996,-24.157820912999966],[-65.7884445489999,-24.058565600999884],[-65.86000856799996,-24.19272617599995],[-65.89513360399997,-24.325632481999946],[-65.91587059999989,-24.577032077999945],[-65.87916557599993,-24.62608263999988],[-65.95115656899992,-24.71231348099991],[-65.88686351599995,-24.805647145999956]]],[[[-65.37863955699987,-23.881475432999935],[-65.32700351299997,-23.796265004999952],[-65.27242257099988,-23.55060332499994],[-65.24010463399992,-23.52530959099994],[-65.23245262699999,-23.276262292999945],[-65.26239060599994,-23.252461542999924],[-65.27619157699996,-23.095689778999883],[-65.40899663099992,-23.20878394899995],[-65.41366551799996,-23.324929968999925],[-65.3798296189999,-23.35233929599997],[-65.3764114789999,-23.529509426999823],[-65.43201450999993,-23.581199785999956],[-65.53646861399989,-23.795839874999956],[-65.5373916289999,-23.90358655799986],[-65.46398962699993,-24.019467710999947],[-65.37863955699987,-23.881475432999935]]]]},"properties":{"objectid":312,"eco_name":"High Monte","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Neotropic","eco_biome_":"NO10","nnh":3,"eco_id":592,"shape_leng":36.9126921895,"shape_area":10.798834365,"nnh_name":"Nature Could Recover","color":"#DBA05E","color_bio":"#D6C39D","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":116983.30834554779,"percentage":2.3955768114534783}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[25.90359306300013,-32.05258941699998],[25.790735245000178,-31.990304946999913],[25.682846069000107,-32.06049728399995],[25.560218811000084,-32.003284453999925],[25.500017166000134,-32.03821182299998],[25.432321548000175,-32.134727477999945],[25.46768760700013,-32.20686340299994],[25.565221786000052,-32.18080139199998],[25.665311813000073,-32.31787872299992],[25.608745575000114,-32.45172119099993],[25.70494842500011,-32.542507171999944],[25.78728485100015,-32.44745635999993],[25.74972534200009,-32.376491546999944],[25.844795227000077,-32.23420333899986],[26.028841019000083,-32.2526245119999],[26.020462036000026,-32.350185393999936],[26.058147430000076,-32.410476684999935],[26.150175095000066,-32.43040466299993],[26.128231049000192,-32.3884696959999],[26.25189399700014,-32.32168197599992],[26.29981422400016,-32.358600615999876],[26.477266312000097,-32.27627563499988],[26.564691544000027,-32.2830772399999],[26.66156959500006,-32.20405578599997],[26.546274185000186,-32.04341506999998],[26.542081833000054,-32.15865707399996],[26.433776855000076,-32.163345336999896],[26.32278251600019,-32.06431198099983],[26.23446273800016,-32.02948379499992],[26.18319702100007,-32.09836959799992],[26.105222702000106,-32.11366271999998],[25.988843918000157,-32.03752136199995],[25.90359306300013,-32.05258941699998]]],[[[26.091320038000163,-31.82252693199996],[26.19124412500014,-31.786371230999976],[26.267894745000092,-31.686683654999968],[26.2525138850001,-31.626611709999906],[26.137418747000083,-31.631513595999934],[26.002925873000095,-31.709728240999937],[26.08742904700017,-31.80285263099995],[26.091320038000163,-31.82252693199996]]],[[[25.681053162000183,-30.880989074999945],[25.681348801000013,-30.964017867999928],[25.498062134,-31.07025527999997],[25.39164352400013,-31.024667739999984],[25.461879730000135,-31.228141784999877],[25.395500183000138,-31.282814025999983],[25.520816803000116,-31.321296691999976],[25.62290382400016,-31.257455825999898],[25.67922592200017,-31.25762748699998],[25.712165833000086,-31.35119438199996],[25.774583817000178,-31.40679550199991],[25.900615692000088,-31.438800811999954],[25.866767883000023,-31.328817367999875],[25.816274643000156,-31.33271598799996],[25.762809753000113,-31.22033119199989],[25.658512115,-31.21142196699992],[25.594022751000182,-31.1556892399999],[25.58878898600011,-31.087244033999923],[25.673809052000138,-31.02895164499995],[25.743625641000165,-31.034896850999928],[25.681053162000183,-30.880989074999945]]],[[[31.31060028100012,-27.292871474999913],[31.378501892000145,-27.215951919999895],[31.38735580400015,-27.150743483999975],[31.290624619000027,-27.092346190999933],[31.3932685850001,-26.95043373099992],[31.3359355930001,-26.91661262499997],[31.264087677000134,-26.978055953999956],[31.110385895000093,-26.95193481399997],[31.244743347000053,-26.796001433999947],[31.195995331000063,-26.7020988459999],[31.29613304100019,-26.647783278999896],[31.15679359400019,-26.61492156999998],[31.032930374000046,-26.621683120999876],[30.982387543000073,-26.502813338999886],[31.073310852000134,-26.48943328899992],[31.048530578999987,-26.371435164999923],[31.16457176199998,-26.357727050999927],[31.256498337000153,-26.42498397799983],[31.283964157000185,-26.321296691999976],[31.396343231000117,-26.170614242999818],[31.229047775000083,-26.083570479999935],[31.154479980000076,-26.110475539999925],[31.07361412,-26.043851851999932],[30.9842052460001,-26.029331206999927],[30.9042682650001,-26.103109359999905],[30.719493866000107,-26.059726714999897],[30.57606315600009,-25.971210479999968],[30.61700630200005,-25.942026137999846],[30.59480094900016,-25.839908599999944],[30.684757233000028,-25.826110839999956],[30.735824585000103,-25.92963600199988],[31.090454102000024,-25.99851417499991],[31.16019058200004,-25.99667358399995],[31.256511688000103,-25.900272368999936],[31.212173462000067,-25.848583220999956],[31.337179184000036,-25.760196685999972],[31.444871902000045,-25.711408614999982],[31.42972755400018,-25.64197349499983],[31.220478058000083,-25.729101180999976],[31.12825965900015,-25.717645644999948],[31.018678665000095,-25.82166671799996],[30.898250580000024,-25.825372695999818],[30.746143341,-25.73682594299993],[30.743116379000185,-25.636444091999977],[30.843206406000036,-25.50542640699996],[30.67759323100006,-25.458215713999834],[30.55377960200019,-25.294631957999968],[30.62611579900016,-25.224725722999892],[30.704750061000084,-25.23623657199994],[30.693386078000174,-25.374347686999897],[30.797687531000122,-25.38434219399994],[30.85251426700006,-25.294033050999815],[30.950487137000152,-25.239395141999978],[30.954076767000117,-25.124200820999874],[30.852457047000087,-25.051334380999947],[30.946399689000145,-24.789855956999872],[30.92483329800018,-24.728822707999882],[30.922651291000193,-24.54390144299998],[30.860427856000115,-24.52525329599996],[30.68212890600006,-24.586772918999884],[30.616130829000156,-24.743705749999947],[30.517873764000115,-24.762348174999943],[30.41441535900009,-24.862863540999967],[30.427572250000082,-24.909805297999924],[30.301471710000044,-24.948553084999958],[30.238559723000037,-24.872535705999894],[30.17308235200005,-24.925508498999932],[30.144615173000034,-25.13592719999997],[30.09171867400005,-25.08161926299988],[29.962270737000097,-25.05727577199991],[29.920339583999976,-25.145631789999925],[29.809833527000023,-25.199447631999874],[29.790746689000173,-25.031169890999934],[29.808835983000108,-24.91086387599995],[29.748132706000035,-24.90904998799988],[29.69556808500016,-25.004886626999962],[29.535768509000036,-25.146350860999917],[29.697324753000032,-25.23682594299993],[29.63204193100006,-25.358833312999934],[29.661767960000134,-25.43537712099993],[29.496629714999983,-25.461389541999893],[29.264802933,-25.546810149999942],[29.172304153000084,-25.652067183999918],[29.0530662540001,-25.628929137999933],[28.961977005000165,-25.650638579999907],[28.843215941999972,-25.59602928199996],[28.67403602600001,-25.680772780999973],[28.535039902000108,-25.62508583099998],[28.504005432000042,-25.733133315999908],[28.503149033000113,-25.88926887499997],[28.435140610000133,-25.928339004999884],[28.171255112000097,-25.77782058699995],[27.853204727000048,-25.820434569999975],[27.702877045000093,-25.939020156999902],[27.63788414000004,-26.04033660899995],[27.580810547000112,-26.024963378999928],[27.45195198100015,-26.068971633999922],[27.24474525500011,-26.09569358799996],[27.332496643000013,-25.97008323699987],[27.26613616900005,-25.928752898999846],[27.14076995800019,-25.92259788499996],[26.95345306400003,-25.882450103999872],[26.85557937600015,-25.83445358299997],[26.753770828000143,-25.836481093999907],[26.679033279000123,-25.74059867899996],[26.509386063000193,-25.74373054499995],[26.503473282000073,-25.80820846599994],[26.442131042000028,-25.85910987899996],[26.33793830899998,-25.765804290999938],[26.11656379700014,-25.785844802999975],[26.048542022999982,-25.745178222999982],[25.990283966000106,-25.594535827999948],[25.898609161000024,-25.49729156499984],[25.735279083000023,-25.360385894999865],[25.674379349000162,-25.615942000999894],[25.84715080300009,-25.606346129999963],[25.842975616000047,-25.72693252599987],[25.74960136400017,-25.706899642999872],[25.703815460000044,-25.759037017999958],[25.574045181000088,-25.82956695599995],[25.54614067099999,-25.894371032999913],[25.40275764500018,-25.94131660499994],[25.4599437710001,-25.98815154999994],[25.38534545900012,-26.041887282999937],[25.355491638000103,-26.115306853999982],[25.286283493000155,-26.145486831999904],[25.321422577000078,-26.45009231599994],[25.213333130000024,-26.450893401999963],[25.08985900900018,-26.51296615599989],[25.120014191000166,-26.62388229399994],[25.23854255700013,-26.69215393099995],[25.110660553,-26.844373702999974],[25.185146332000045,-26.86424827599984],[25.239675522000027,-26.948183059999963],[25.236118317000148,-27.05434417699996],[25.341508865000037,-27.142889022999952],[25.415111542000147,-27.073205947999952],[25.461912155000107,-27.20191001899991],[25.46822547900001,-27.33458900499994],[25.55356407200003,-27.36906623799996],[25.564287186000172,-27.260068892999925],[25.67787933300019,-27.21595001199995],[25.770790100000056,-27.259378432999938],[25.793066025000087,-27.36040115399993],[25.96347236600019,-27.3614978789999],[25.911684036000167,-27.452543258999924],[25.817411423000067,-27.44583702099993],[25.74331092800014,-27.53348731999995],[26.025385651000192,-27.669664495999882],[26.134880066000107,-27.588191985999913],[26.22065925600009,-27.610443114999953],[26.27510643000005,-27.73591995199996],[26.229742050000027,-27.771078109999905],[26.23778152500006,-27.92875099199989],[26.07097672500015,-27.915480979999984],[26.003068924000104,-28.000473021999937],[25.885126114000116,-28.00712585399998],[25.705694199000163,-27.957798003999926],[25.604120255000055,-27.996231078999983],[25.49938201900011,-27.89608192399993],[25.44138526900008,-27.94915199299993],[25.492380142000115,-28.004114150999953],[25.588180542000032,-28.03929901099997],[25.529823303000114,-28.27729415899995],[25.437244415000123,-28.263641356999983],[25.293634415000156,-28.349292754999965],[25.227506638000023,-28.451585769999838],[25.317651749000163,-28.502687453999897],[25.297573090000185,-28.68105697599998],[25.36973762500014,-28.762773513999946],[25.313667297000165,-28.818288802999916],[25.461093903000062,-28.91628456099994],[25.50257682800003,-29.013711928999896],[25.52524757400016,-29.18123245199996],[25.487461090000068,-29.23287582399996],[25.560516356999983,-29.498643874999914],[25.41880226100011,-29.50591278099995],[25.212678909000147,-29.458559035999826],[25.1458911900001,-29.50679206799998],[25.192947388000107,-29.58983230599989],[25.265806198000064,-29.611673354999937],[25.22484016400017,-29.757553100999928],[25.121675491000133,-29.72002220199994],[25.070579529000156,-29.761693953999952],[24.943798065000124,-29.775249480999946],[24.753921509000122,-29.752853393999885],[24.74610328700004,-29.894411086999924],[24.59302902200011,-29.89735031099997],[24.45064353900017,-29.781549453999958],[24.415569305000133,-29.835914611999954],[24.468561172000022,-29.995180129999937],[24.546430588000135,-29.96342849699994],[24.606683731000032,-29.99358749399994],[24.61810493500019,-30.092117309999935],[24.77401733400012,-30.194585799999913],[24.822824478000086,-30.329048156999875],[24.78142929100011,-30.415233611999895],[24.622146606000058,-30.376035689999924],[24.523841858000026,-30.383644103999984],[24.500061035000158,-30.461999892999927],[24.372367859000178,-30.50040435799997],[24.324001312000178,-30.375751494999975],[24.25162506100014,-30.31321906999989],[24.230070114,-30.489250182999967],[24.19510841400006,-30.583570479999935],[24.337579727000048,-30.641822814999955],[24.348680496000043,-30.564474105999977],[24.52031517000006,-30.438447951999876],[24.576560974000188,-30.46014785799997],[24.701265335000016,-30.415109633999975],[24.662231445000145,-30.59566116299993],[24.601474762000123,-30.644702910999968],[24.805030823000152,-30.66547203099998],[24.93141365100007,-30.584436416999893],[24.827348709000034,-30.507591247999983],[24.837583542000175,-30.385429381999984],[25.00975608800013,-30.448160171999973],[25.09562492400005,-30.433584212999904],[25.168582916,-30.498405456999876],[25.191373825000028,-30.608020781999926],[25.306772232000128,-30.667648314999894],[25.60327148400006,-30.595876693999912],[25.682365417000142,-30.678874968999935],[25.770832062000125,-30.68219375599989],[25.95167160000011,-30.548225402999947],[26.04552459700011,-30.60231018099995],[26.193569183000136,-30.55057144199992],[26.270053864000147,-30.662437438999973],[26.39990043600011,-30.556776046999914],[26.747512817000086,-30.658226012999933],[26.791406631000086,-30.717168807999883],[26.70408248900003,-30.758699416999946],[26.608350754000185,-30.72285461399997],[26.422283173000153,-30.750101088999884],[26.42241287200011,-30.941190719999895],[26.335884094000107,-30.986297606999926],[26.332511902000192,-31.068984984999872],[26.273824692000062,-31.10792922999991],[26.33058548000014,-31.167810439999982],[26.32900619500009,-31.237819671999944],[26.19085693400018,-31.32415008499987],[26.118614197000113,-31.32607078599989],[26.082683563000103,-31.395952224999974],[26.103754044000084,-31.485359191999976],[26.077026367000087,-31.59713554399997],[26.175838470000087,-31.59825897199994],[26.324167252,-31.63385581999995],[26.396680832000186,-31.565601348999962],[26.46380615200019,-31.56039428699995],[26.413133621000156,-31.431413650999957],[26.46780776999998,-31.39672279399997],[26.372270583999978,-31.321763991999887],[26.374628067000117,-31.27206993099992],[26.467353821000188,-31.212341308999953],[26.489315033000025,-31.156768798999963],[26.431089401000122,-31.044916152999974],[26.520492554000157,-31.03915405299989],[26.543394089000117,-30.958370208999952],[26.65078926100017,-30.938383101999932],[26.755968094000025,-30.96590232799997],[26.870788574000187,-31.04493331899988],[26.889387131000092,-31.144556045999877],[27.064115524000044,-31.10210800199991],[27.16082954400008,-30.974740981999958],[27.256778717000145,-30.965660094999976],[27.22230720500005,-30.86040878299997],[27.166103363000047,-30.802604674999884],[27.251550674000043,-30.66047859199989],[27.37982177700013,-30.695724486999893],[27.44931221000013,-30.640100478999898],[27.625566483000057,-30.67908668499996],[27.76366615300003,-30.55583381699995],[27.764167786000087,-30.44683265699996],[27.860166550000088,-30.363332747999948],[28.001167297000052,-30.434833526999967],[27.91916656500007,-30.288333892999958],[28.023166656000114,-30.219333648999964],[27.944667816000162,-30.155832290999967],[28.00516700700007,-30.116333007999913],[28.07216644300013,-30.162332534999905],[28.15566635100015,-30.06833267199994],[28.363666534,-30.069833754999934],[28.50216674800015,-30.114332198999932],[28.660667419000106,-30.03133392299992],[28.732166290000066,-30.03283309899996],[28.713167191000082,-29.899833678999983],[28.607667923000065,-30.030332564999924],[28.219167708999976,-29.956832885999972],[28.101167679000184,-30.04733276399992],[28.001167297000052,-29.98283386199995],[27.974666595000087,-30.036832808999975],[27.88716697700005,-30.015333175999842],[27.800167084000066,-30.127332686999978],[27.643167496000046,-30.187332152999886],[27.643167496000046,-30.2828330989999],[27.551944733000028,-30.2626457209999],[27.565898895000146,-30.16341972399988],[27.538272858000084,-29.947029113999974],[27.70266723600008,-29.837755202999915],[27.635723114000086,-29.629495620999933],[27.65777206400014,-29.524507522999897],[27.791177750000088,-29.491361617999928],[27.71136093100006,-29.29161834699994],[27.82529640200005,-29.220464705999973],[27.927272797,-29.233644484999957],[28.003961563000132,-29.14762687699988],[28.028575897000167,-29.074420928999928],[28.152471542000058,-29.06012153599994],[28.332141876000037,-28.831533431999958],[28.47100067100007,-28.729375838999943],[28.362791061000166,-28.63544082599998],[28.259712219,-28.620504378999954],[28.227508544999978,-28.573379516999978],[28.332418442,-28.497173308999947],[28.426773071000127,-28.50353431699989],[28.488870621,-28.457868575999896],[28.620229721000044,-28.457281112999965],[28.655038834000095,-28.534154891999947],[28.796966553000175,-28.57924461399989],[28.854862213000047,-28.534400939999955],[28.976381302000107,-28.514173507999942],[29.012981415000183,-28.540325164999956],[29.209390640000038,-28.50112152099996],[29.376306534000094,-28.37836646999989],[29.58500099200012,-28.2626075739999],[29.662237167000114,-28.14649200399998],[29.601320267000062,-27.99434661899994],[29.66749763500019,-27.944410323999875],[29.70741081200009,-27.815586089999954],[29.667552948000036,-27.65386962899987],[29.788496017000114,-27.596290587999874],[29.781713486000115,-27.470619201999966],[29.71406745900009,-27.459861754999906],[29.657958984000118,-27.361181258999977],[29.694755554000153,-27.332489013999975],[29.8786468510001,-27.427553176999936],[29.918142319000026,-27.50891303999998],[30.03810882600004,-27.51601982099993],[30.214960098000063,-27.576227187999905],[30.418178558000136,-27.70713043199993],[30.480888367000148,-27.68801307699988],[30.56865501400017,-27.74609184299993],[30.80662918100012,-27.753929137999933],[30.870002747,-27.717357634999928],[30.935417175000055,-27.62059402499989],[30.891380309999988,-27.539924621999944],[30.921844482000154,-27.47239875799994],[31.049617767000086,-27.492805480999948],[31.07306480400007,-27.388925551999876],[31.048223495000173,-27.236743926999964],[31.236032486000113,-27.231908797999893],[31.31060028100012,-27.292871474999913]]],[[[30.802494049000074,-24.505178451999882],[30.762527466,-24.450414657999943],[30.635643005000077,-24.45619010899992],[30.664583206000145,-24.490198134999957],[30.802494049000074,-24.505178451999882]]],[[[30.515827179000155,-24.43310546899994],[30.493934631000116,-24.355293273999962],[30.396251678000112,-24.28874015799994],[30.28307533300017,-24.1269168849999],[30.24252700800014,-24.040296554999884],[30.140888214000142,-24.05715179399988],[30.165283203000172,-24.188196181999956],[30.29779243500019,-24.210052489999896],[30.33153915400004,-24.314243316999864],[30.415229797000165,-24.388675689999957],[30.515827179000155,-24.43310546899994]]],[[[30.103670120000174,-24.04436111499996],[30.09663963300011,-23.93111991899997],[30.036289215000068,-23.88464927699988],[29.992984772000057,-23.76122856099994],[29.880426407000073,-23.83667564399991],[29.907648087000155,-23.923860549999915],[29.881511688000103,-24.035091399999885],[29.810388565000153,-24.05005836499987],[29.77394485500014,-24.11277008099995],[29.88902092,-24.1398315429999],[30.006660461000138,-24.045778274999975],[30.103670120000174,-24.04436111499996]]]]},"properties":{"objectid":313,"eco_name":"Highveld grasslands","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Afrotropic","eco_biome_":"AF10","nnh":4,"eco_id":81,"shape_leng":184.115000272,"shape_area":22.1380198128,"nnh_name":"Nature Imperiled","color":"#F8C29C","color_bio":"#D6C39D","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":242557.736464843,"percentage":4.967082031886613}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[70.39769753400003,34.86354129100016],[70.39116652300015,34.77013353000007],[70.48493152100002,34.75211310900005],[70.54859961900019,34.80367874500013],[70.69231455800019,34.8319991840001],[70.68424261700011,34.88123783600008],[70.54181664800018,34.960771871000134],[70.54356360400016,35.10698210200019],[70.46316556200009,35.13306239400015],[70.44720457500011,35.00021476100011],[70.39769753400003,34.86354129100016]]],[[[70.43394457100004,36.29005504700007],[70.34153760900006,36.41247726900019],[70.42424050700004,36.54267052200015],[70.38976255400007,36.64776315900019],[70.42124950900018,36.800278761000186],[70.31452156199998,36.83604098900008],[70.27659663500009,36.750410963000036],[70.18019049900016,36.70236589400014],[70.14743050100014,36.61851283200002],[70.03742958900011,36.622544527000116],[69.88098153400011,36.551825069000074],[69.87688462699998,36.46847592600017],[69.76716652000005,36.44101848800011],[69.69600650900009,36.377489864000154],[69.68933049100013,36.25672675599998],[69.46741457500002,36.11999964300014],[69.5484695900002,35.986541639000166],[69.54656254000014,35.9291212440001],[69.44420659400015,35.92937203000008],[69.37342863000003,35.87732929600014],[69.41014857400017,35.73944346800005],[69.45558150700009,35.676624122000135],[69.34095764000011,35.56446369600019],[69.35214261900018,35.47426704200012],[69.4032365220001,35.44136974800006],[69.61867557300013,35.53295042200011],[69.8234935800001,35.66279247300014],[69.87590059200005,35.61620049000004],[69.80059053300005,35.52804550000013],[69.61019157800007,35.39774194200004],[69.65459454300003,35.27040289500013],[69.51509050499999,35.295358168],[69.43777448900005,35.26722213100004],[69.4102095940001,35.19947757700015],[69.54818762300005,35.128583608000156],[69.70617660700009,35.17219247100013],[69.72408253200007,35.055954417000066],[69.78327955600008,34.93963941700008],[69.91546652700015,34.98866801800017],[69.91171260800019,35.06289228600008],[70.04158751600016,35.02869093600003],[70.11562352600015,35.04042878500013],[70.04549448900002,35.27260398300018],[70.01432051400008,35.337654425000096],[70.05575561400002,35.48225063700011],[70.20268249800017,35.51365293400016],[70.16521455300006,35.395109857000136],[70.18327353100017,35.35049483000017],[70.37607557700011,35.359214691000034],[70.454872507,35.33159330300009],[70.50433361500006,35.23610180000003],[70.5704425240001,35.26777902400005],[70.65795864500018,35.40259472800011],[70.66145356400006,35.534598303999985],[70.7515186220001,35.532084404000045],[70.87190253300002,35.633313151000095],[70.93858359000018,35.6020069110001],[70.81021155800016,35.37419851700008],[70.77493263100018,35.30358215600012],[70.84275848800013,35.26464318700016],[70.7938235960001,35.155320873],[70.85867354300007,35.01608723500016],[70.94565557000016,35.044498702],[71.09517648500008,35.20953753800018],[71.20865655800009,35.250922346000095],[71.22851563299997,35.31713183800019],[71.21171561700015,35.49891335700016],[71.26323649400018,35.584078355000145],[71.24901558900012,35.91827237900014],[71.18873562400006,36.0340336700001],[71.20923658499999,36.14352127500018],[71.2555466,36.20614180300015],[71.05282557800007,36.39460973400003],[71.03628556900014,36.48516161300006],[70.91999051800008,36.54033247400014],[70.85282163300013,36.715506539000046],[70.75155650800019,36.68364726000016],[70.7847066,36.45815026000008],[70.73671752200005,36.25009398800012],[70.7860485430001,36.09730731600007],[70.7686465380001,36.0345406080001],[70.69255059199998,35.99646346500003],[70.57617155400004,36.09602941100013],[70.49433853100015,36.11914887900008],[70.44013963600003,36.07824854500012],[70.33331261500001,36.071039940000105],[70.33796658300014,36.16445172500016],[70.4199595340001,36.21295461400007],[70.43394457100004,36.29005504700007]]],[[[71.47884351900007,36.745173112000145],[71.47410556400018,36.79942498000014],[71.33545664800005,37.05074276800002],[71.31927454600014,37.13845301499998],[71.36520351900009,37.30483463100006],[71.32503559500014,37.41240764100007],[71.38304155000009,37.48077731700005],[71.46179154300017,37.75965983200007],[71.44864653900004,37.85187116100013],[71.39157851900012,37.90535625200016],[71.28378255000018,37.89220337000012],[71.18543952400006,37.80259428700003],[71.08071854000008,37.778336724000155],[70.99542261700003,37.84419249900003],[70.99945850300003,37.898890452000046],[71.15124555,38.0366138390001],[71.20671849400014,38.169263492000084],[71.06105057200006,38.14224107400014],[70.96819249600009,38.254851943000176],[70.90393062300012,38.25194593700007],[70.83751661400004,38.164392600000156],[70.78399648500016,38.19085410100013],[70.723541506,38.30279123300011],[70.62918055400019,38.13600426700003],[70.61353254700015,38.06829441499997],[70.60734552900004,37.919684110000105],[70.64381451900016,37.827613765000194],[70.57711753600012,37.77155056800018],[70.47150455000013,37.8274387510001],[70.45225550900005,37.735906356999976],[70.69654859200006,37.60343976400003],[70.70066863300013,37.45332658400008],[70.76851661900008,37.38343123400006],[70.78183764200014,37.28979800000019],[70.74038661700018,37.21825024200018],[70.57000750300011,37.28982079900004],[70.53295848500011,37.19708375700009],[70.71088449700005,37.07875827400011],[70.83386964700003,37.07130726500009],[70.8408665250002,37.174901218000116],[70.92689552900003,37.27810625100011],[71.06137059300016,37.23562291000019],[71.1434175230001,37.06499032700003],[71.24543752200009,36.99453473100016],[71.28885661900017,36.90436456400005],[71.32764454700015,36.73511013400014],[71.40795156100017,36.66605364500009],[71.47884351900007,36.745173112000145]]]]},"properties":{"objectid":316,"eco_name":"Hindu Kush alpine meadow","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Palearctic","eco_biome_":"PA10","nnh":4,"eco_id":753,"shape_leng":21.1957137937,"shape_area":2.83632932427,"nnh_name":"Nature Imperiled","color":"#FA9A50","color_bio":"#D6C39D","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":28325.79918046955,"percentage":0.580053929422003}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[49.134495964000166,6.535037730000056],[49.05773776600017,6.537551169000096],[48.89007568400001,6.429687500000057],[48.69427490200013,6.24890136700003],[48.65865194700012,6.195503062000057],[48.570862633000104,5.963974860000121],[48.457713721,5.791557470000157],[48.22063981000014,5.306633560000137],[48.159912109000174,5.106079102000024],[48.15570068400018,5.026672363000159],[48.09271240200013,4.937072753999985],[48.02331543000014,4.7293090820001],[47.95410156200012,4.688720703000058],[47.915283203,4.778320312000062],[47.86248779300013,4.768127441],[47.81768798799999,4.584716797000112],[47.76068115200019,4.454284668000128],[47.58752441400014,4.340270996000129],[47.41851806600016,4.21008300800014],[47.35131835900012,4.175292969000111],[47.249328613000046,4.049072266],[47.17810058600014,3.845275879000155],[47.10272216800007,3.763916016000167],[46.92547607400007,3.627502441000161],[46.844116211000085,3.543884277000132],[46.703491211000085,3.350524902000132],[46.48968505900007,3.134521484000061],[46.39392089800003,3.020507812000062],[46.275878906000116,2.827087402000075],[46.1760864260001,2.739501953000172],[46.01307251400016,2.563375996000048],[45.77684792100018,2.362408805000143],[45.723961818000134,2.344780104000051],[45.49478870600018,2.193173276000095],[45.364336319000074,2.157915874000025],[45.25503837300016,2.04156644700015],[45.22692871100014,1.960083008000026],[45.39428710900006,2.047302246000129],[45.89831543000008,2.351684570000032],[46.10412597700014,2.515075684000124],[46.34527587900004,2.78649902300009],[46.57568359400011,2.971679687000062],[46.80688476600005,3.203918456999986],[46.87207031200012,3.293090820000145],[47.13812255900018,3.573730469000111],[47.215881348000096,3.668518066000161],[47.42852783200004,3.869323730000076],[47.624084473000096,4.095886230000076],[47.939514160000044,4.438476562000062],[48.0078735350001,4.536682129000155],[48.197509766,4.883300781000059],[48.31488037100007,5.056091309000124],[48.65148925800014,5.492309570000032],[48.98571777300009,6.044677734000174],[49.08367919900013,6.28210449200003],[49.08532714800015,6.390930176000154],[49.134495964000166,6.535037730000056]]]},"properties":{"objectid":320,"eco_name":"Hobyo grasslands and shrublands","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Afrotropic","eco_biome_":"AF13","nnh":4,"eco_id":95,"shape_leng":12.6232016519,"shape_area":1.09135605852,"nnh_name":"Nature Imperiled","color":"#E05A57","color_bio":"#CC6767","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":13478.346271899789,"percentage":0.051088829427559185}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[47.54197618200004,11.143217897000113],[47.45066694200011,11.121018315000072],[47.37820860100015,11.15770558100013],[47.15039853100018,11.06168300100012],[47.10749056300017,10.991707017000124],[47.017261554000186,10.959888977000048],[46.87051052300012,10.85767636200012],[46.666789539000035,10.744245072000126],[46.44966153400003,10.679939614000034],[46.34471859700011,10.688898024000139],[46.2362286070001,10.779601616000036],[46.096939481000106,10.761644059000105],[45.895694417000016,10.78887215300017],[45.80825208100015,10.860936699000092],[45.597209575000136,10.76414287200015],[45.4606014850001,10.663169939999989],[45.324451549000116,10.65933991300011],[45.23324956900018,10.561216996000098],[45.08797056800012,10.507730730999981],[44.943489523000096,10.410057586000107],[44.725769588,10.416786913000067],[44.6156194780001,10.381339342],[44.410400481000124,10.391029660000129],[44.28818160300017,10.430617054000152],[44.21830115100005,10.490214821000052],[44.11974334700011,10.50703811600016],[44.064441618000046,10.607943592000026],[43.97118496700017,10.66371652500004],[43.71646000200013,10.409081535999974],[43.47891886300016,10.160037034000027],[43.31295159399997,10.006844001000104],[43.201666666000165,9.87177626100015],[43.25666666600006,9.84333333300009],[43.29916666700012,9.610833333000187],[43.39833333300004,9.553333333000012],[43.48500000000013,9.40583333300009],[43.6475,9.358333334000065],[44.00666666700016,8.99583333400011],[44.27166666600016,8.911666666000144],[44.87333333300012,8.70916666700009],[45.514166666,8.4975],[46.09083333400014,8.307500000000175],[46.24166666700012,8.133333333000166],[46.316666667000106,8.1],[46.45000000000016,7.975000000000136],[46.49166666700006,7.975000000000136],[46.58333333300004,7.875000000000171],[46.616666666000185,7.766666666000162],[46.625000000000114,7.616666667000061],[46.5,7.516666667000095],[46.58333333300004,7.416666667000129],[46.66666666600008,7.225],[46.59166666699997,7.225],[46.63333333300011,7.125000000000171],[46.54083333400018,7.021666667000034],[46.51583333300016,6.935833333000176],[46.54333333400007,6.877500000000111],[46.484166667000125,6.763333334000038],[46.52415078700017,6.638349481000148],[46.59916666700008,6.5775000000001],[46.718341008000095,6.541872884000156],[47.19423320900012,6.541872884000156],[47.5749469700001,6.553770188999977],[48.562423287000115,6.553770188999977],[49.05773776600017,6.537551169000096],[49.134495964000166,6.535037730000056],[49.21110149800012,6.733143306000045],[49.39744947900016,7.048994372999971],[49.603881505000174,7.329425026000081],[49.705898068000124,7.491642680000041],[49.569755592000035,7.469782677000126],[49.50043859400006,7.536927924000111],[49.49177153800002,7.69287876500016],[49.58976755300017,7.906489220000026],[49.779266626000094,8.474949391],[49.93547060100019,8.978235571000027],[49.97018056500008,9.533586278000143],[50.10902762900008,9.880677536000064],[50.26400028000006,10.128607960000181],[50.15959,10.21624],[50.12572,10.32376],[50.1819,10.466970000000117],[50.309520000000134,10.66328],[50.39413596000014,10.758818789000088],[50.386840613,10.919386950999979],[50.172492550000186,10.90152628800007],[49.96739680400003,11.023050706000106],[49.93131000000011,10.99058],[49.95089000000013,10.85703],[49.835610000000145,10.83874],[49.7676,10.867070000000183],[49.78635,10.93109],[49.71067,10.96702],[49.681652491000136,11.055505370000105],[49.28105387700003,10.997450966000144],[49.1849,10.953680000000134],[49.04644353600003,10.959268214000133],[48.738464586000134,10.77641800200007],[48.39198654800015,10.651310720000026],[48.074382490000175,10.737923441000135],[47.49692149600003,10.439589546000036],[47.42791000000011,10.39826],[47.266031076000104,10.39204982400014],[47.28938,10.23888],[47.34857,10.187770000000171],[47.15865000000014,10.152230000000145],[46.99194000000011,10.248],[46.96903735000012,10.342136881999977],[46.87018949600014,10.327317138000012],[46.869590525000035,10.389969014000087],[46.76166000000018,10.39380000000017],[46.67488,10.34725],[46.52351000000016,10.41585],[46.42586000000017,10.44097],[46.228310000000135,10.45537],[46.14828000000011,10.51737],[46.008690000000115,10.384050000000116],[45.83195,10.37128],[45.692310000000134,10.199960000000146],[45.60220000000015,10.134960000000149],[45.47703,10.09932],[45.22126,10.08124],[45.11921,10.09984],[44.98430000000019,10.16517],[45.00202000000013,10.27370000000019],[45.04819,10.329000000000178],[45.20201,10.42756],[45.25140000000016,10.42423],[45.42032000000012,10.349080000000185],[45.49059,10.363090000000113],[45.717,10.5701],[45.72041,10.650440000000117],[45.78208000000012,10.790380000000141],[45.8743,10.803270000000111],[45.95525000000015,10.62078],[46.07706,10.60866],[46.15947000000017,10.66933],[46.24935000000016,10.57692],[46.337260000000185,10.65062],[46.45570000000015,10.57771],[46.523800000000165,10.611270000000104],[46.669660000000135,10.52746000000019],[46.721270000000175,10.54584],[46.76537000000019,10.67822],[46.82469,10.710700000000145],[46.88524000000018,10.83436],[47.023135168000124,10.862037239000074],[47.18618000000015,10.97071],[47.38829,11.07462],[47.490400000000136,11.09294],[47.54197618200004,11.143217897000113]],[[45.174910000000125,9.91304],[45.18901,9.800120000000106],[45.06065000000018,9.83613000000014],[45.06926,9.71888],[44.92213,9.687610000000177],[44.87171,9.73328],[44.86745000000019,9.82339],[44.97856,9.99366],[45.06637,9.99353],[45.174910000000125,9.91304]]]},"properties":{"objectid":324,"eco_name":"Horn of Africa xeric bushlands","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Afrotropic","eco_biome_":"AF07","nnh":4,"eco_id":45,"shape_leng":35.3475106994,"shape_area":18.9576866456,"nnh_name":"Nature Imperiled","color":"#FCBE51","color_bio":"#FEAA01","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":231992.94044645116,"percentage":1.0821063011361327}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-57.990444522999894,-21.502770266999903],[-58.05207850099987,-21.744513238999957],[-58.11175949599988,-21.78056816399993],[-58.33116955799994,-21.772675595999885],[-58.50769461899995,-21.84035091499993],[-58.63175952599994,-21.86229792199987],[-58.867626616999985,-21.821250233999933],[-59.05338652299997,-21.860828909999896],[-59.03566349199997,-21.922896567999942],[-58.605247565999946,-22.029808748999926],[-58.68985751499997,-22.110901482999907],[-58.63956860999997,-22.15867195999988],[-58.53831454899995,-22.173830967999947],[-58.431915507999975,-22.15481913499997],[-58.34712551699994,-22.20243169799994],[-58.14369555299987,-22.212279092999893],[-58.06506357799992,-22.293853785999943],[-58.23577461499991,-22.499062892999916],[-58.37891354899995,-22.704938024999876],[-58.46866260999985,-22.777673330999903],[-58.61437948199995,-22.84020584899997],[-58.714885541999934,-22.85806584099987],[-58.968910517999916,-22.935413875999927],[-59.079502521999984,-22.91841487299996],[-59.198402500999975,-22.83016449699994],[-59.247596560999966,-22.700759143999903],[-59.21768154799997,-22.57312086299993],[-59.2413555629999,-22.502546578999954],[-59.309692548999976,-22.49054436499995],[-59.47910657099993,-22.54195661199998],[-59.70668462999993,-22.58022955499996],[-59.62525561399991,-22.6661329989999],[-59.54926662099996,-22.788397472999975],[-59.63549762899993,-22.908964277999928],[-59.763767569999914,-22.890803375999837],[-59.88879354699992,-23.04030735899994],[-59.89186450799997,-23.127537154999914],[-59.78253163399995,-23.195812617999877],[-59.76607158699994,-23.329898425999943],[-59.80138052199993,-23.381433886999957],[-59.72487252199994,-23.515272093999897],[-59.72606258399992,-23.632394103999957],[-59.841648525999915,-24.083369495999932],[-59.88238558199998,-24.400200742999914],[-59.855224526999905,-24.70345297099982],[-59.77235063899997,-24.87519380899994],[-59.76501462899989,-24.9428553809999],[-59.64925350599998,-25.03213404899998],[-59.701568483999836,-25.058217860999946],[-59.87721662999985,-25.053666990999943],[-60.022659580999914,-24.997589878999918],[-60.050361603999875,-25.10128575599998],[-60.050605516999894,-25.311234828999943],[-59.90486953399983,-25.521124054999973],[-59.79710357199991,-25.546399851999922],[-59.79430753699995,-25.651214712999888],[-59.87738460299988,-25.69886164099995],[-59.93613051199998,-25.786008623999862],[-60.00586660599993,-25.787713502999964],[-60.03860447599993,-25.686482240999908],[-60.15400350099998,-25.561139092999895],[-60.22550549399983,-25.60574188199996],[-60.22000461799996,-25.665178292999826],[-60.1307185739999,-25.714090888999976],[-60.00122051699992,-25.90560513899993],[-60.01523556199999,-25.993260902999907],[-60.11330751699995,-26.011614085999952],[-60.28804052699991,-25.893368565999936],[-60.33290047199995,-25.81041739699998],[-60.423973538999974,-25.751896959999897],[-60.49006652199995,-25.775905915999886],[-60.4129945869999,-25.87319148099988],[-60.396968554999944,-25.960875408999982],[-60.301380492999954,-26.08122176899991],[-60.292182527999955,-26.21568191299997],[-60.25741556699995,-26.250089121999963],[-60.293113589999905,-26.492532318999963],[-60.35055560999996,-26.672614155999895],[-60.35784149599988,-26.900813146999894],[-60.38897657799993,-26.943823206999923],[-60.35593058999996,-27.125065098999926],[-60.490623582999945,-27.179360720999966],[-60.479041636999966,-27.25169771899988],[-60.3896675819999,-27.30302664999988],[-60.390842556999985,-27.359157237999966],[-60.50678255099996,-27.41987356599992],[-60.57260161299996,-27.550158850999935],[-60.66712953199993,-27.506085630999905],[-60.679363590999856,-27.58533451399984],[-60.74060462499989,-27.677197322999916],[-60.75199563199993,-27.802969120999876],[-61.0140345449999,-27.885530531999905],[-61.14791147599993,-28.106451515999936],[-61.28227656899992,-28.113537241999893],[-61.32660661099993,-28.085200373999896],[-61.36628754599997,-27.819029350999926],[-61.334339586999874,-27.78092806799998],[-61.36360550499984,-27.6290454679999],[-61.295822562999945,-27.489419556999962],[-61.386917588999836,-27.456648829999892],[-61.46457256999997,-27.587005361999957],[-61.560981554999955,-27.52323416599984],[-61.62925752099994,-27.592298198999856],[-61.59605764099996,-27.75131027799989],[-61.69715160699991,-27.877547104999962],[-61.824981497999886,-27.839666601999852],[-62.129188592999924,-27.523511942999903],[-62.21225358899994,-27.524608965999903],[-62.32849449199995,-27.656809348999957],[-62.43942663399997,-27.754129111999873],[-62.4332275459999,-27.861538674999963],[-62.378837543999964,-27.919875212999955],[-62.15508263899994,-28.045251049999933],[-62.04983560699992,-28.050621837999984],[-61.977039615999956,-28.01624513899992],[-61.76688350999996,-28.054125641999974],[-61.64297048199995,-28.22106180499992],[-61.55268447699984,-29.08410195099998],[-61.58668147599997,-29.745726472999877],[-61.529663579999976,-29.704392793999943],[-61.470786576999956,-29.553106817999947],[-61.32012153199997,-29.384272153999916],[-61.140289475999964,-29.410062263999976],[-60.848297496999976,-29.655717740999876],[-60.74511760899992,-29.79966116999998],[-60.67609062499986,-29.965182970999876],[-60.668765511999936,-30.20358910799996],[-60.63464747799998,-30.27499772599998],[-60.62845660499988,-30.41318949399988],[-60.59130448899998,-30.53696204099998],[-60.60474352999995,-30.642543342999886],[-60.431701485999895,-30.531410202999893],[-60.272212475999936,-30.383685696999976],[-60.22245062499991,-30.387452524999958],[-59.99734858099998,-30.17567737099995],[-59.95432259499995,-30.071111283999983],[-59.894641599999886,-29.724839272999873],[-59.812171551999825,-29.443115795999972],[-59.69000648699995,-29.171441549999884],[-59.62610252099989,-29.106398148999915],[-59.44640759299989,-28.771051445999888],[-59.44158950699995,-28.696908315999906],[-59.35948155699998,-28.562952761999952],[-59.14728948699985,-28.064949024999976],[-59.08850451799998,-27.97619104099988],[-59.087486619999936,-27.9082178299999],[-58.95697049699993,-27.687123004999876],[-58.95747760199998,-27.45006719199995],[-58.82247548399994,-27.32878624999995],[-58.78921558899992,-27.142446316999838],[-58.74206553999994,-27.04829759499995],[-58.53169250999986,-26.85148313199994],[-58.37007851999982,-26.728531843999917],[-58.331706502999964,-26.58956475099984],[-58.339000602999874,-26.420937622999872],[-58.16802955899993,-26.093012256999884],[-57.97609353199988,-25.98266030999997],[-57.836898617999964,-25.685431317999928],[-57.682468589999985,-25.583806105999884],[-57.60498862399993,-25.43955656999998],[-57.57024747899993,-25.55405940199995],[-57.662879578999934,-25.597340197999984],[-57.744022604999884,-25.729178314999956],[-57.83348450099999,-25.777402923999944],[-57.86787461199998,-25.854437307999888],[-57.85644555199991,-25.993891892999898],[-57.95119458499988,-26.06505374799997],[-58.110691473999964,-26.1332914919999],[-58.11784760799992,-26.23910866199998],[-58.221626632999914,-26.398136498999975],[-58.18763751299997,-26.640352545999974],[-58.24864955399988,-26.640333770999916],[-58.24313761399992,-26.73354153999992],[-58.414199517999975,-26.90888475199995],[-58.47875961799997,-26.921001127999943],[-58.47703160499998,-27.06592088199983],[-58.557334595999976,-27.051055575999897],[-58.63216353399997,-27.114231656999834],[-58.662151636999965,-27.186988420999967],[-58.56514351199996,-27.328360449999877],[-58.65185547399989,-27.40799691199993],[-58.76805161899995,-27.46770556699994],[-58.73506547699992,-27.643444906999946],[-58.73073555399998,-27.968380280999952],[-58.80121260699991,-28.078122694999877],[-58.86828962599992,-28.09950861799996],[-58.966022616999965,-28.20705044799996],[-59.04803853299995,-28.720068519999984],[-59.207054635999896,-29.07978024199997],[-59.29792754299996,-29.184496866999893],[-59.4192654819999,-29.409898313999975],[-59.46008249999994,-29.663470498999914],[-59.49033362699993,-29.723386353999842],[-59.501136558999974,-29.914680159999932],[-59.54235054499998,-29.933407175999832],[-59.53862763899997,-30.11684043299988],[-59.57252154099996,-30.228206254999918],[-59.54363247299983,-30.31263012499994],[-59.60620455399987,-30.364607311999976],[-59.56915654199997,-30.538695920999942],[-59.50835455099991,-30.53188126599997],[-59.28583547399984,-30.335194375999947],[-59.23197151999989,-30.17987921899993],[-59.11288060099997,-30.110812838999948],[-59.09075153899994,-30.059316604999935],[-58.957443570999885,-29.938300195999943],[-58.90258451799997,-29.84618257699998],[-58.74399555699995,-29.706927816999894],[-58.702434559999915,-29.636280442999976],[-58.66153757799998,-29.26265895299997],[-58.6145325359999,-29.181604942999968],[-58.528636635999874,-29.11486957099993],[-58.47768354899989,-28.952393250999933],[-58.33327861299995,-28.909952657999952],[-58.103290588999926,-28.71614461599995],[-57.99824556099992,-28.73261991699991],[-57.695075474999896,-28.72247529999987],[-57.550743628999896,-28.677761198999917],[-57.51696355299987,-28.615599663999944],[-57.30814754599999,-28.598702417999903],[-56.9970815399999,-28.472485372999984],[-56.95928150399993,-28.427176156999963],[-56.823493498999824,-28.365742673999932],[-56.69128456599998,-28.158352427999944],[-56.4607235549999,-27.964259401999982],[-56.43012256799989,-27.84221436499996],[-56.432479558999944,-27.66431785799989],[-56.303131537999946,-27.49347623099993],[-56.297988569999916,-27.424790221999956],[-56.169776631999866,-27.33407824899996],[-56.08073852399997,-27.307731411999953],[-55.96892963499988,-27.347972593999827],[-55.9008335449999,-27.338019083999882],[-55.835014482999895,-27.42477714699993],[-55.77689755099988,-27.439935482999942],[-55.92826851999996,-27.29433293999989],[-56.19955049299989,-27.252567760999966],[-56.22094747999989,-27.189908339999874],[-56.17563256499989,-27.078057206999972],[-56.16995952499997,-26.875913026999967],[-56.24230557499993,-26.709466534999876],[-56.18487947999989,-26.559447398999964],[-56.17063560899999,-26.454848958999946],[-56.10974158499994,-26.288142627999946],[-56.1470264699999,-26.155883570999947],[-56.05370755699994,-26.01323715799998],[-56.115879485999926,-25.95071603899987],[-56.23372250599988,-25.97291383299995],[-56.35076857599989,-26.134819512999968],[-56.500415554999904,-26.083189839999875],[-56.56835557399984,-26.1041258219999],[-56.64418748999992,-26.204633222999917],[-56.744010592999985,-26.235808873999872],[-56.881488556999955,-26.203193211999974],[-56.91957056099989,-26.169943710999917],[-56.95651648099988,-25.962077373999932],[-56.933902609999905,-25.8702977129999],[-56.74740258099996,-25.777514067999903],[-56.598380556999984,-25.772158031999936],[-56.58185949099993,-25.706729230999883],[-56.45285462499993,-25.692112029999976],[-56.47731050399989,-25.570209652999893],[-56.457038534999924,-25.40584036399997],[-56.45883159199997,-25.22889972899992],[-56.52175856299988,-25.03527910699995],[-56.47822547199996,-24.97296904399991],[-56.45159951799991,-24.8233220649999],[-56.5049174749999,-24.65710825499997],[-56.55736153499993,-24.596469040999978],[-56.69275257299984,-24.52401285199994],[-56.65261851199995,-24.430064457999947],[-56.784072569999864,-24.382016706999934],[-56.826969473999895,-24.329728382999974],[-56.71479748099995,-24.255032046999872],[-56.75337954899999,-24.188999245999923],[-56.67724957199988,-24.11962675999996],[-56.755302524999934,-23.908429118999948],[-56.77010748099991,-23.81272689499997],[-56.868347576999895,-23.728130189999888],[-57.13897659999998,-23.768387297999936],[-57.17026154999991,-23.682775711999966],[-57.14672047199997,-23.611447224999893],[-57.17441159799989,-23.53652792999992],[-57.04257146999993,-23.521324833999927],[-57.01708562299996,-23.443392747999894],[-57.12085760699995,-23.428772361999904],[-57.26629653599997,-23.486292501999912],[-57.292148503999954,-23.44993851199996],[-57.1364445939999,-23.32495695899985],[-56.993251512999905,-23.31161145999988],[-56.7597005099999,-23.14493295699998],[-56.66738155799993,-23.09933842099997],[-56.53765852999999,-22.968554076999965],[-56.344234546999985,-22.83804499499996],[-56.32201361899996,-22.738475192999942],[-56.35397347999992,-22.68345705099989],[-56.56436947599997,-22.658998322999878],[-56.57978463399991,-22.611383915999852],[-56.46187556399991,-22.54648635999996],[-56.451461551999955,-22.381192043999874],[-56.40024560899985,-22.320765394999967],[-56.37591160299996,-22.208945274999905],[-56.417385595999974,-22.131263471999887],[-56.49623449399991,-22.12609066499988],[-56.574367577999965,-22.24502433899994],[-56.864715530999945,-22.46790534699994],[-57.00223154899999,-22.679791309999814],[-57.23442853999995,-22.7898644739999],[-57.36721062699996,-22.903427694999948],[-57.482070527999895,-22.93107707899992],[-57.44947850299991,-22.79250728799991],[-57.47518563299991,-22.716175474999943],[-57.55063248499994,-22.63730763399991],[-57.54432661099992,-22.481484700999943],[-57.587165511999956,-22.42476788199997],[-57.74262953199991,-22.34241618599998],[-57.755870591999894,-22.242776479999918],[-57.659763522999924,-22.22657727899997],[-57.45402551799998,-22.24873802499991],[-57.389507494999975,-22.181892681999955],[-57.42011652899993,-22.10071998499984],[-57.54635653999992,-22.106792673999962],[-57.76465952099994,-22.086539648999917],[-57.83121451399995,-22.02200435899988],[-57.836330492999934,-21.94741011399998],[-57.79522362799992,-21.85878020499996],[-57.77724461299994,-21.699759575999906],[-57.74624263599998,-21.645056593999925],[-57.80849050399996,-21.623744933999888],[-57.89878053299992,-21.51715847399987],[-57.990444522999894,-21.502770266999903]]],[[[-57.990444522999894,-21.502770266999903],[-58.039565492999884,-21.445667544999935],[-58.06821450299992,-21.248666500999946],[-58.043907486999956,-20.99159252499993],[-58.33021150699989,-21.084498545999907],[-58.56942750299993,-21.12764807999997],[-58.77943457899994,-21.132471865999946],[-58.943687526999895,-21.194146411999895],[-58.957458490999954,-21.222006852999925],[-58.54493759399992,-21.215864090999958],[-58.38618451499997,-21.232779274999928],[-58.45034060799992,-21.32524423999996],[-58.649375603999886,-21.399059972999908],[-58.74740950599988,-21.50915207999992],[-58.50390650099996,-21.436920861999965],[-58.30212358099982,-21.357112402999974],[-58.20157259499996,-21.342504254999938],[-58.18439857799996,-21.393834190999883],[-58.255649615999914,-21.473161863999962],[-58.23511462399995,-21.536416399999894],[-58.08952750399993,-21.469969029999902],[-57.990444522999894,-21.502770266999903]]]]},"properties":{"objectid":326,"eco_name":"Humid Chaco","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Neotropic","eco_biome_":"NO07","nnh":3,"eco_id":571,"shape_leng":58.2200676629,"shape_area":26.3603189342,"nnh_name":"Nature Could Recover","color":"#FFD221","color_bio":"#FEAA01","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":292776.76698496146,"percentage":1.365625970217054}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-58.18138863599995,-31.85492444999994],[-58.28162748099993,-31.829756276999944],[-58.61868258399983,-31.839511973999947],[-58.84022148199989,-31.915053541999896],[-59.03771554899993,-31.921407359999876],[-59.22019159299998,-31.892309414999886],[-59.369209593999926,-31.821516698999858],[-59.53964955999999,-31.82583354699989],[-60.17054753399998,-32.05168828699993],[-60.30572852199998,-32.05498807399994],[-60.36355258899994,-32.086100021999926],[-60.603919588999986,-32.08417721399991],[-60.433170497999924,-32.428792960999886],[-60.20200749899982,-32.61042042099996],[-59.95031755399992,-32.9134200179999],[-59.80855962199985,-33.140228115999946],[-59.41644647999982,-33.39667043199995],[-59.387767630999974,-33.45594574199998],[-58.99538459099989,-33.48913271499998],[-58.76474747299994,-33.54255225999998],[-58.63869856899993,-33.40161843699997],[-58.58815753599998,-33.069673277999925],[-58.55928456199996,-33.010855954999954],[-58.4052845249999,-32.994815338999956],[-58.28657950999997,-33.00764819999995],[-58.240055587999905,-33.08519069499988],[-58.07823557099988,-32.98143094799991],[-58.13957953599993,-32.759986597999955],[-58.13498658799995,-32.652758921999975],[-58.198413622999965,-32.48918926699997],[-58.19216156099992,-32.399683951999975],[-58.10416750299993,-32.316938473999926],[-58.09603152499989,-32.249893641999904],[-58.17970655599993,-32.13869143599993],[-58.14049953299991,-32.01030347799991],[-58.20361358799988,-31.88974857599993],[-58.18138863599995,-31.85492444999994]]],[[[-58.55087248399997,-34.29864887699989],[-58.787425549999966,-34.23594184799987],[-58.9773904889999,-34.121816871999954],[-59.15761951199994,-33.979787701999896],[-59.254436528999975,-33.933428903999925],[-59.37713954499998,-33.755940091999946],[-59.45325460199996,-33.72908480999996],[-59.4724764849999,-33.66348183299988],[-59.58985162799996,-33.692256067999836],[-59.678047521999986,-33.63494463799992],[-59.80777356699991,-33.591553703999864],[-59.84858354499994,-33.53766527499994],[-59.97742060599995,-33.495994643999836],[-60.25412349099997,-33.27271616499996],[-60.50665263199994,-33.132961172999956],[-60.685729478999974,-32.89000667999994],[-60.723071527999934,-32.683892998999966],[-60.79544054499996,-32.57737141499996],[-60.80363050199992,-32.508640646999936],[-60.75737362799987,-32.43407272099995],[-60.7611086039999,-32.32110427999993],[-60.7176854839999,-32.24784191999987],[-60.72694363199997,-32.13629136199995],[-60.8395115859999,-32.08806406999997],[-60.93582552099997,-32.07047548399987],[-61.26062762199996,-31.83472724899991],[-61.39565253799992,-31.76327655299997],[-61.74537252899995,-31.66558496899995],[-61.87691459699994,-31.72246389299994],[-62.06119157699993,-31.924205238999946],[-62.112258488999885,-32.0416524659999],[-62.29258356899999,-32.12590869799993],[-62.90026853299992,-32.133899501999906],[-63.14407362099996,-32.197004335999964],[-63.247932609999964,-32.341530642999885],[-63.30102961999995,-32.49684881799993],[-63.26046757899991,-32.625041979999935],[-63.10680348899996,-32.74826014799993],[-62.916706617999864,-33.01137881799997],[-63.015674598999965,-33.188241500999936],[-63.23128162399985,-33.29121251099997],[-63.57282255299998,-33.34138205699992],[-63.67132550599996,-33.38510089099992],[-63.83145556399995,-33.53380859399988],[-64.31911452299988,-33.33460746799989],[-64.53279153099999,-33.33014427199993],[-64.74790150999996,-33.42334583899992],[-64.89912462199999,-33.63994930399997],[-64.91612261799997,-33.765613646999896],[-64.83406847999993,-34.116284815999904],[-64.69603747799994,-34.40055236799992],[-64.62873062799991,-34.46076946999989],[-64.53811655499993,-34.609111721999966],[-64.31465954199996,-34.86555604899996],[-64.28478258299992,-35.046783356999924],[-64.27466562599994,-35.25097925899996],[-64.06314058799995,-36.171375260999866],[-63.896144577999905,-36.57354936899992],[-63.61932350799998,-37.04854561999986],[-63.18423852799992,-37.687532967999914],[-62.953437626999914,-37.891970436999884],[-62.90814550999994,-37.9660238809999],[-62.714736613999946,-38.14227887599998],[-62.43390647999996,-38.47436216899996],[-62.31731454199996,-38.556711685999915],[-62.31038254099997,-38.603056066999955],[-62.15686060799999,-38.74256463099994],[-62.09266662899995,-38.899083093999934],[-62.02942248699998,-38.940647610999974],[-61.80459553599991,-38.99014593399994],[-61.7135506329999,-38.97342990499993],[-61.55418751999986,-39.01269845099995],[-61.3745846249999,-38.98462293099993],[-61.14433659399998,-39.00276153699997],[-60.94012862199992,-38.985438992999946],[-59.784271548999925,-38.830942243999914],[-59.64358147199988,-38.78854305799996],[-59.10226860899991,-38.695122555999944],[-58.7037696299999,-38.57543836599996],[-58.49935948599989,-38.53520506299992],[-58.196395595999945,-38.44376855799993],[-57.710037507999914,-38.22228347199996],[-57.551589529999944,-38.10753538499995],[-57.55322651599994,-37.97717382399992],[-57.47449161099996,-37.81352269599989],[-57.3387225489999,-37.68134226199993],[-57.111644554999884,-37.48934068799997],[-56.983344606999935,-37.28574677499989],[-56.66903262499994,-36.896498566999924],[-56.690154517999986,-36.443368354999905],[-56.750404475999915,-36.34030547899994],[-56.998626491999914,-36.33700954699998],[-57.08069957399994,-36.29627349699996],[-57.25619148099992,-36.158260767999934],[-57.37622854899996,-35.969647158999976],[-57.387329540999986,-35.81911840399994],[-57.29913750299994,-35.67108209099996],[-57.126316572999826,-35.46699582399992],[-57.13451357199983,-35.39148560499996],[-57.30942561799998,-35.18391079099996],[-57.46804056299993,-35.055786191999914],[-57.570327609999936,-35.013383149999925],[-57.888332490999915,-34.83111397099992],[-58.18644359499996,-34.746472171999926],[-58.35533559099997,-34.635618819999934],[-58.38245054499993,-34.57759140699994],[-58.46561863799997,-34.542142493999904],[-58.53372562499993,-34.4420590499999],[-58.497409519999906,-34.32307039099993],[-58.55087248399997,-34.29864887699989]]]]},"properties":{"objectid":327,"eco_name":"Humid Pampas","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Neotropic","eco_biome_":"NO08","nnh":4,"eco_id":576,"shape_leng":34.7647378563,"shape_area":39.60990299,"nnh_name":"Nature Imperiled","color":"#D9BD40","color_bio":"#FEFF73","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":399422.65174668125,"percentage":3.769810548074036}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-2.670354576999955,36.98268624100018],[-2.726692532999948,37.095095777000154],[-2.802672473999962,37.15864770200017],[-2.950745498999936,37.184014023000145],[-3.159701483999925,37.25355850600005],[-3.271839445999944,37.239475065000136],[-3.289106501999868,37.33344508400006],[-3.346648434999906,37.37226234800016],[-3.479578545999971,37.31630526600014],[-3.515833462999979,37.26421341400004],[-3.456241483999918,37.159948573000065],[-3.528467505999913,37.019043249000106],[-3.461701455999957,36.92499829500014],[-3.313584508999952,36.901427713000146],[-3.200531577999868,36.91296238500007],[-3.033803453999894,36.97989003800018],[-2.922154491999891,36.97817007100008],[-2.86514950399993,36.88735114400009],[-2.730674439999916,36.80870575900019],[-2.629178476999925,36.83957295500011],[-2.583266434999871,36.914229393000085],[-2.670354576999955,36.98268624100018]]],[[[-2.563555551999968,37.12140942100007],[-2.301822577999815,37.16089757200018],[-2.25148153799995,37.200230826000166],[-2.327834472999882,37.26214140700006],[-2.622874447999948,37.30211872700005],[-2.773610571999939,37.39707295000005],[-2.920623453999951,37.39924671200015],[-2.992336502999933,37.33115615400004],[-2.982899485999951,37.272063234000086],[-2.743712490999883,37.158487440000044],[-2.563555551999968,37.12140942100007]]],[[[-1.956302423999944,37.57111462000012],[-2.027216509999903,37.610992865000185],[-2.154800475999821,37.55730962500019],[-2.386033547999943,37.552258690000144],[-2.525119495999945,37.473655214000075],[-2.523315542999967,37.3924608910001],[-2.343124573999887,37.39003483300007],[-1.901843522999968,37.482844127000135],[-1.956302423999944,37.57111462000012]]],[[[-3.658534525999926,37.41009541000017],[-3.620851500999947,37.46217670000016],[-3.699536449999925,37.59510915900006],[-3.802958573999888,37.61125555400014],[-3.822736512999938,37.467597445000024],[-3.658534525999926,37.41009541000017]]],[[[-2.302955475999909,38.97054644600013],[-2.380658567999944,39.01110781700004],[-2.53139854799997,38.907910160000085],[-2.696522542999901,38.89848437500012],[-2.841931463999913,38.965984344000105],[-2.953779579999889,38.96305453399998],[-2.998530561999871,38.906003445000124],[-2.770458472999962,38.70106960000015],[-2.627647438999873,38.70891237900008],[-2.505275507999954,38.68223999000003],[-2.512536582999871,38.570093813000085],[-2.586403445999906,38.48580221000003],[-2.519181420999871,38.38201681400005],[-2.681503513999871,38.178022245000136],[-3.008174443999962,37.8508871250001],[-2.978603424999903,37.78614949600018],[-2.885778540999979,37.75898089800006],[-2.473681432999911,37.85314906600013],[-2.308313523999971,37.97496594700016],[-1.983572442999957,38.17547045900005],[-1.990989420999881,38.24215721600007],[-2.103565421999974,38.2631758440001],[-2.257971477999945,38.15590089400007],[-2.325269442999854,38.17366952300006],[-2.350280539999915,38.28672346000013],[-2.333954435999829,38.39217568100008],[-2.099752493999972,38.65849824900005],[-2.169551451999951,38.725281063000125],[-2.281916563999971,38.75623677200019],[-2.330434539999828,38.82427066900016],[-2.302955475999909,38.97054644600013]]],[[[-1.283735494999974,40.200411030000055],[-1.21596244299991,40.30475281700018],[-1.316956497999968,40.44028316200013],[-1.372775446999981,40.32639757300012],[-1.283735494999974,40.200411030000055]]],[[[-2.474596568999971,40.56868469900019],[-2.551950470999941,40.636254070000064],[-2.644566477999831,40.79968928000005],[-2.724209477999864,40.86697953400005],[-2.816668575999813,40.9989019730001],[-2.926424568999948,41.01102488700002],[-3.05285954299984,40.826448841],[-3.080902541999933,40.650386965000166],[-3.28544444899984,40.431464227000106],[-3.289103484999885,40.312271719000194],[-3.39678244199996,40.191545324000174],[-3.3575564759999,40.14065091100008],[-3.239566436999951,40.15033586400017],[-3.117906464999919,40.262845313000184],[-3.111677536999935,40.38269781100013],[-3.07298248099994,40.435538334000114],[-2.852437508999913,40.45588909200012],[-2.794546553999965,40.56033095900017],[-2.619913456999825,40.49413169300004],[-2.500695468999879,40.494981786000096],[-2.474596568999971,40.56868469900019]]],[[[-0.361214512999936,40.617867192000176],[-0.888104467999938,40.835405911],[-1.009269571999937,40.915032985000096],[-1.105265497999881,41.0771633],[-1.271710480999957,41.14456067500009],[-1.313695433999953,41.09552704400011],[-1.235974571999975,40.92496604300004],[-1.217241521999881,40.68846159200018],[-1.125527574999921,40.6326221920001],[-0.941388561999929,40.573269600000174],[-0.89621245099994,40.43858633000008],[-0.819104472999868,40.32829356000008],[-0.733806537999953,40.35635717700012],[-0.557673583999929,40.4865056700001],[-0.290421461999927,40.45719398699998],[-0.204117530999895,40.395552968000175],[-0.098069524999858,40.44892825699998],[-0.091365510999935,40.59404867300003],[-0.130120580999915,40.638062047000176],[-0.361214512999936,40.617867192000176]]],[[[-2.068160430999853,41.948768411000174],[-2.291026518999956,41.99576808900014],[-2.434678425999891,41.937938657000075],[-2.527958446999833,41.965922311000156],[-2.587657546999935,41.91181880200014],[-2.742503484999872,41.876373075000174],[-2.947720469999922,41.870777316000044],[-2.98515857599989,41.8130575190001],[-2.654818551999881,41.802795723000145],[-2.457186517999901,41.71966350400004],[-2.443556537999939,41.65879295000008],[-2.559822419999875,41.58387264900006],[-2.825245441999812,41.52757609900016],[-2.936596510999948,41.402187354000034],[-3.034782459999917,41.348995796],[-3.358950553999875,41.346008821000055],[-3.559238477999941,41.371758363000026],[-3.634243435999906,41.35427572500015],[-3.674733559999879,41.228074941000045],[-3.797179586999846,41.23245096500011],[-3.942269492999912,41.13635965300011],[-3.944811555999934,41.08319022400008],[-4.049866474999874,41.01689909300006],[-4.127843487999826,40.88075435400009],[-4.240649487999917,40.795889428000066],[-4.479300543999955,40.68824751900013],[-4.534193460999916,40.58137657700013],[-4.46827347999988,40.55456705900019],[-4.150847453999972,40.5884255900001],[-4.02687156199994,40.66656169100014],[-3.802030529999911,40.722732009000026],[-3.695523529999832,40.80858499400017],[-3.624387490999879,40.952389786000026],[-3.321389569999951,41.00474198000006],[-3.221961422999925,41.056793599000116],[-2.945083523999813,41.09886505300017],[-2.841287566999938,41.14007887100013],[-2.768874460999939,41.11516886100003],[-2.583910500999878,40.885980303],[-2.432841447999976,40.85265167600011],[-2.384813477999899,40.803862127000116],[-2.183279500999845,40.81392510400002],[-2.11008453099987,40.79001119900016],[-2.221978579999927,40.64102203200002],[-2.156917576999945,40.46946978700015],[-1.960164469999938,40.21195810800015],[-2.075485542999843,40.08265652200015],[-2.180555549999951,40.12996918099998],[-2.369837530999973,40.10190137200016],[-2.487478547999899,40.112880157],[-2.560673517999874,40.164213781000115],[-2.693767578999939,40.171228429000166],[-2.742158485999937,40.25397943800016],[-2.823654556999884,40.21998394800005],[-2.785293435999961,40.042896294],[-2.548149445999968,40.049492014000066],[-2.492998534999856,40.01087641800012],[-2.487304539999911,39.92159758200012],[-2.285910540999964,40.010811542000056],[-2.153834544999938,39.95286325500007],[-2.117308557999934,39.83738577399998],[-1.989080526999942,39.76844763800011],[-1.881530482999892,39.78028456200019],[-1.853454459999966,39.894182053000065],[-1.711181543999942,39.929761556000074],[-1.618636447999961,40.048378059000186],[-1.50007057199997,40.084235673000194],[-1.492482434999886,40.141161871000065],[-1.593422509999925,40.23477666600007],[-1.598311506999949,40.29059695600017],[-1.532256576999941,40.43201324100005],[-1.565193433999866,40.568379765000145],[-1.447384442999976,40.633671103000154],[-1.557968567999978,40.95110450499999],[-1.650268576999849,41.00634007400009],[-1.730785474999948,41.00378795200015],[-1.824050575999934,40.92102906300005],[-2.025358576999849,40.99056717600013],[-2.317362458999924,41.13426082500018],[-2.430139456999939,41.25685252900007],[-2.408211560999916,41.311269018000075],[-2.221111555999869,41.469993430000045],[-2.082935546999863,41.48371460600009],[-2.156659581999975,41.652940873000034],[-2.292742461999921,41.80121674000014],[-2.201152567999941,41.83777256700006],[-1.969848584999966,41.670877978000135],[-1.849625438999965,41.65224299500005],[-1.715010564999943,41.75692106400004],[-1.728212565999968,41.81655545500013],[-1.867533542999979,41.8745082690001],[-1.91230849599998,41.92674278100009],[-2.068160430999853,41.948768411000174]]]]},"properties":{"objectid":329,"eco_name":"Iberian conifer forests","biome_num":12,"biome_name":"Mediterranean Forests, Woodlands & Scrub","realm":"Palearctic","eco_biome_":"PA12","nnh":3,"eco_id":792,"shape_leng":33.5033176726,"shape_area":3.6348083326,"nnh_name":"Nature Could Recover","color":"#CD8966","color_bio":"#FE0000","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":34501.97088085237,"percentage":1.0444401315272318}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[1.445535563000078,42.078153480000026],[1.38345751200012,42.00731919000009],[1.295395561000021,42.06162151700005],[1.236291576000156,41.99818308300007],[1.070946466,41.9980231560001],[1.181507457000066,42.1449409870001],[1.103997484000161,42.173394867000184],[1.007116429000064,42.266953167],[0.901049479000164,42.271092318000115],[0.812272552000024,42.180344805000175],[0.812829445000034,42.070093777000125],[0.714029438000182,42.08280057500002],[0.7664165,42.16171099600001],[0.797724418000143,42.342911818],[0.740944567000042,42.36661148100012],[0.625667582000176,42.22984430200012],[0.476426455000023,42.357162562000156],[0.190200554000057,42.38692837600007],[0.112006450000081,42.498084483000184],[0.02885445000004,42.37916254300012],[-0.179664501999923,42.26745306400011],[-0.276034427999889,42.321609881000086],[-0.398552538999866,42.309486799000126],[-0.480083478999973,42.33752476800015],[-0.332562485999972,42.41132725800003],[-0.368182556999955,42.502467547000094],[-0.785862515999952,42.498172492000094],[-0.863141483999925,42.42799417000009],[-0.966521530999955,42.45947978300006],[-0.821460458999923,42.58347227100012],[-1.045658431999925,42.64688371600005],[-1.212023451999869,42.62816072300018],[-1.346412516999976,42.88786846200014],[-1.401220440999964,42.778199808000124],[-1.462319485999899,42.77154709100006],[-1.37293252399985,42.63812060400011],[-1.451714533999962,42.60093596700017],[-1.552844542999878,42.66524377200005],[-1.802401460999931,42.642969702000016],[-2.031687584999929,42.70307733600009],[-2.130622540999923,42.63603485100009],[-2.323706553999955,42.61889872000006],[-2.404447582999978,42.57720814000004],[-2.68340251799998,42.56315923200009],[-2.877822438999942,42.61245991000004],[-3.096789432999913,42.598441177000154],[-2.90105657099997,42.503115468000146],[-2.807799515999875,42.33530876100002],[-2.707686567999929,42.389881488000185],[-2.568354525999894,42.38454825100007],[-2.269176573999971,42.30183093700015],[-2.188418444999968,42.30359281300008],[-2.055959564999853,42.17113678200013],[-2.089540485999862,42.094648563000135],[-1.990663532999918,41.99763809100011],[-2.068160430999853,41.948768411000174],[-1.91230849599998,41.92674278100009],[-1.867533542999979,41.8745082690001],[-1.728212565999968,41.81655545500013],[-1.715010564999943,41.75692106400004],[-1.849625438999965,41.65224299500005],[-1.969848584999966,41.670877978000135],[-2.201152567999941,41.83777256700006],[-2.292742461999921,41.80121674000014],[-2.156659581999975,41.652940873000034],[-2.082935546999863,41.48371460600009],[-2.221111555999869,41.469993430000045],[-2.408211560999916,41.311269018000075],[-2.430139456999939,41.25685252900007],[-2.317362458999924,41.13426082500018],[-2.025358576999849,40.99056717600013],[-1.824050575999934,40.92102906300005],[-1.730785474999948,41.00378795200015],[-1.650268576999849,41.00634007400009],[-1.557968567999978,40.95110450499999],[-1.447384442999976,40.633671103000154],[-1.565193433999866,40.568379765000145],[-1.532256576999941,40.43201324100005],[-1.598311506999949,40.29059695600017],[-1.593422509999925,40.23477666600007],[-1.492482434999886,40.141161871000065],[-1.50007057199997,40.084235673000194],[-1.618636447999961,40.048378059000186],[-1.711181543999942,39.929761556000074],[-1.853454459999966,39.894182053000065],[-1.881530482999892,39.78028456200019],[-1.989080526999942,39.76844763800011],[-2.117308557999934,39.83738577399998],[-2.153834544999938,39.95286325500007],[-2.285910540999964,40.010811542000056],[-2.487304539999911,39.92159758200012],[-2.492998534999856,40.01087641800012],[-2.548149445999968,40.049492014000066],[-2.785293435999961,40.042896294],[-2.823654556999884,40.21998394800005],[-2.742158485999937,40.25397943800016],[-2.693767578999939,40.171228429000166],[-2.560673517999874,40.164213781000115],[-2.487478547999899,40.112880157],[-2.369837530999973,40.10190137200016],[-2.180555549999951,40.12996918099998],[-2.075485542999843,40.08265652200015],[-1.960164469999938,40.21195810800015],[-2.156917576999945,40.46946978700015],[-2.221978579999927,40.64102203200002],[-2.11008453099987,40.79001119900016],[-2.183279500999845,40.81392510400002],[-2.384813477999899,40.803862127000116],[-2.432841447999976,40.85265167600011],[-2.583910500999878,40.885980303],[-2.768874460999939,41.11516886100003],[-2.841287566999938,41.14007887100013],[-2.945083523999813,41.09886505300017],[-3.221961422999925,41.056793599000116],[-3.321389569999951,41.00474198000006],[-3.624387490999879,40.952389786000026],[-3.695523529999832,40.80858499400017],[-3.802030529999911,40.722732009000026],[-4.02687156199994,40.66656169100014],[-4.150847453999972,40.5884255900001],[-4.46827347999988,40.55456705900019],[-4.534193460999916,40.58137657700013],[-4.479300543999955,40.68824751900013],[-4.240649487999917,40.795889428000066],[-4.127843487999826,40.88075435400009],[-4.049866474999874,41.01689909300006],[-3.944811555999934,41.08319022400008],[-3.942269492999912,41.13635965300011],[-3.797179586999846,41.23245096500011],[-3.674733559999879,41.228074941000045],[-3.634243435999906,41.35427572500015],[-3.559238477999941,41.371758363000026],[-3.358950553999875,41.346008821000055],[-3.034782459999917,41.348995796],[-2.936596510999948,41.402187354000034],[-2.825245441999812,41.52757609900016],[-2.559822419999875,41.58387264900006],[-2.443556537999939,41.65879295000008],[-2.457186517999901,41.71966350400004],[-2.654818551999881,41.802795723000145],[-2.98515857599989,41.8130575190001],[-3.223960506999958,41.84311334800009],[-3.336416477999933,41.930129573000045],[-3.413436445999935,42.03572395100008],[-3.514733421999892,42.04896065200012],[-3.605190585999935,42.10791242099998],[-3.770649521999871,42.10044733100017],[-3.834868478999908,42.06692759700013],[-3.863589572999899,41.982776139],[-3.980703535999851,41.95576864100008],[-4.154963470999917,41.87680407200003],[-4.181309468999871,41.77592585600007],[-4.062628425999947,41.76573312600016],[-3.917066450999869,41.820118434000165],[-3.860185514999898,41.77149283500006],[-4.107416454999964,41.666039776],[-4.508599486999856,41.60923645600013],[-4.628472436999971,41.66759277500017],[-4.603281464999952,41.813801496999986],[-4.455504488999964,42.02573305699997],[-4.46312045399992,42.11479044300012],[-4.537364501999832,42.18681479600002],[-4.655185562999918,42.20892458100019],[-5.00505458299989,42.12649325700011],[-5.145663523999929,42.18610585500011],[-5.397463438999978,42.41757227900007],[-5.331072562999964,42.48936361500017],[-5.375404448999916,42.53899621700003],[-5.556428579999931,42.57424413100006],[-5.576995422999971,42.69381935600006],[-5.639001557999848,42.69259828100019],[-5.652347559999896,42.514361468],[-5.699764488999961,42.383518283000114],[-5.804546492999975,42.41654901600009],[-5.762577464999936,42.56412834800017],[-5.879573578999896,42.59896689000004],[-5.918579435999959,42.39386725100019],[-6.068789510999864,42.40000129500004],[-6.121392490999824,42.35351542800004],[-6.135029512999893,42.23722943000013],[-6.050118485999974,42.17059883100012],[-6.081349457999977,42.090074390000154],[-6.212249471999883,41.97562319000019],[-6.191074437999873,41.91866664900016],[-5.927994491999868,41.83617447300003],[-5.896575430999917,41.78492097900016],[-5.999437476999901,41.74559912400014],[-6.158926485999871,41.76902084400007],[-6.197782474999883,41.722749218000104],[-6.132963540999924,41.64824901800006],[-6.268797478999943,41.53645203200011],[-6.360488458999953,41.37111748300009],[-6.431600525999954,41.31295512100007],[-6.52608351799995,41.32844689000012],[-6.716239563999977,41.17383832700011],[-6.784277483999915,41.201979226000105],[-6.709938551999926,41.30160619200012],[-6.445916480999927,41.44113587900006],[-6.48332457999993,41.50936406800008],[-6.564459557999953,41.518844],[-6.881994548999899,41.465781692000064],[-6.957279462999963,41.48996348200018],[-7.019799575999969,41.56671774300014],[-7.175805568999976,41.598051309000084],[-7.285185549999937,41.51626505600018],[-7.436553501999867,41.48661759400011],[-7.437991500999942,41.33659879400011],[-7.642137446999925,41.196547250000094],[-7.723266557999978,41.197806044000174],[-8.035140579999961,41.13470372400013],[-8.316406572999938,41.114786981000066],[-8.363615462999917,41.067008289000114],[-8.293839471999945,41.00212917300013],[-8.212734499999954,40.99393921600006],[-7.859010474999934,41.05693843800009],[-7.634626422999929,41.036052747000156],[-7.453380507999896,41.00043116700016],[-7.383052483999961,41.02748091000012],[-7.174482569999896,40.89222917900014],[-7.19911647999993,40.71593814200003],[-7.065282464999939,40.654304834000015],[-6.875191461999918,40.68260146900013],[-6.738120521999974,40.582589606000056],[-6.758352424999941,40.438529165000034],[-6.718347444999949,40.387217836000104],[-6.441799457999878,40.41637344800017],[-6.342266536999944,40.464799894000066],[-6.364645547999942,40.57537563700009],[-6.632122471999878,40.83565787100008],[-6.551110538999978,40.96672954600007],[-6.52969846499991,41.08161140900006],[-6.365088447999881,41.21378211900014],[-6.289607564999869,41.22993672900009],[-6.182295567999972,41.18676640700005],[-6.084473560999925,41.09214712600004],[-6.067053450999936,41.03305068500009],[-6.168136520999951,40.943993634000094],[-6.359828467999876,40.95409047500016],[-6.419220454999959,40.88826923300002],[-6.382090467999944,40.803263324],[-6.291074565999963,40.70419643600019],[-6.176994516999969,40.622082284000044],[-5.986355504999892,40.5809298210001],[-5.790125427999953,40.61877931100008],[-5.685950441999978,40.58363047000017],[-5.682353431999957,40.49039286200019],[-5.637128537999956,40.45087319400005],[-5.441204568999979,40.40691681700008],[-5.294540540999947,40.50135270300012],[-5.174048503999927,40.61970215800011],[-5.054935456999942,40.63041708100019],[-4.946640428999956,40.54491211300018],[-4.835840553999958,40.513239583000086],[-4.745330583999873,40.41464962599997],[-4.553478542999869,40.37800612400014],[-4.543902553999885,40.28138826200012],[-4.851578582999878,40.24685767000011],[-5.133361571999956,40.13857186299998],[-5.520971452999959,40.07441258500006],[-5.77491344799995,39.98625692400003],[-5.849833579999881,39.98672178500004],[-5.937907433999897,40.048095924000165],[-5.878108421999968,40.18947415500014],[-5.937808527999891,40.32565359500006],[-5.942012554999963,40.41490862699999],[-6.052010449999955,40.44316737500009],[-6.117342522999934,40.374477007999985],[-6.122427488999904,40.284722248000094],[-6.34613947899993,40.166529534000176],[-6.644723489999933,40.0834234670001],[-6.761552467999934,40.081321788000025],[-6.950130537999939,40.13023589300002],[-7.103527579999934,40.09326449100007],[-7.334523443999899,39.93126074300005],[-7.405929547999904,39.81959417900009],[-7.50390058499994,39.77692777699997],[-7.365394495999965,39.66863006800014],[-7.503086534999966,39.537872043000164],[-7.158473469999933,39.44646504200006],[-7.012102473999903,39.235954214000174],[-7.230159528999934,39.135289736000175],[-7.312727477999942,39.17880706800014],[-7.333863452999935,39.15857449500004],[-7.538668551999933,39.25636582400011],[-7.510737535999965,39.31629391800004],[-7.677765564999959,39.29866325500012],[-7.7615545889999,39.26135993000014],[-7.838277501999926,39.17746797600017],[-7.852375527999925,39.00715960500003],[-7.784005516999969,38.91019925800015],[-7.639984470999934,38.77010245200006],[-7.601260580999849,38.87729777300018],[-7.465617582999869,38.89444446500016],[-7.404818442999897,38.83857539200005],[-7.478455473999929,38.759433462000175],[-7.457093522999912,38.703846357000145],[-7.706021462999956,38.62698480800003],[-7.769695428999967,38.64237750200016],[-7.897712570999943,38.74375075400019],[-7.936662436999882,38.61834088600017],[-8.098734581999906,38.60700402700013],[-8.011865542999942,38.51353055100003],[-8.040447497999935,38.475788182000144],[-7.968486511999913,38.39877056200015],[-7.763407492999931,38.42485102100005],[-7.680946496999979,38.27462770300008],[-7.561450564999916,38.23475733600014],[-7.647764553999934,38.16216452300006],[-7.891421449999939,38.207199985000045],[-7.901921459999926,38.09886070200014],[-7.964698561999967,37.879595645999984],[-8.068958540999972,37.81250387600011],[-8.144097441999975,37.727564519000055],[-8.205018454999959,37.52780717000013],[-8.049760462999927,37.46770858900015],[-7.926497535999943,37.463992388000065],[-7.843333465999933,37.352868636000096],[-7.672405504999915,37.2244652550001],[-7.578009516999941,37.37974621500007],[-7.607679442999881,37.42471328100004],[-7.528671455999927,37.48150503400012],[-7.60854646699994,37.52017041800008],[-7.645966467999926,37.62614030500009],[-7.550602537999964,37.69451819500017],[-7.397286464999922,37.74638524400007],[-7.304562498999928,37.74251314000014],[-7.266901433999919,37.660083660000055],[-7.347221523999906,37.58723117500017],[-7.304800544999978,37.495546901000125],[-7.215871569999933,37.494718768999974],[-7.009064536999972,37.63155719399998],[-7.001145482999959,37.70384507400013],[-6.921350434999965,37.712598631000105],[-6.90527746499987,37.61794666000009],[-6.803264505999891,37.61516554399998],[-6.768714468999917,37.5403568910001],[-6.687221582999939,37.50342086100005],[-6.372433508999904,37.64474109000014],[-6.341393477999929,37.75133291400016],[-6.24791949899992,37.75095103500013],[-6.060542556999962,37.874171717000024],[-5.954411568999888,37.85707397600015],[-5.850547550999977,37.77082570100015],[-5.787127556999963,37.88262067500011],[-5.697273554999981,37.954652404000115],[-5.497959440999921,37.99829546500007],[-5.402333492999958,37.870474795],[-5.376138535999928,37.97167705600009],[-5.254640502999962,37.891619487000185],[-5.181775444999971,37.88724865900002],[-5.050608550999868,37.82803369800001],[-4.877243467999961,37.87605161000005],[-4.76371947399997,37.930082867000124],[-4.656960513999877,37.90463121800008],[-4.726003423999941,37.82711453900009],[-4.673133563999897,37.758314034000136],[-4.831287503999931,37.73922944600008],[-4.910800584999947,37.59735198800013],[-4.83848755899993,37.564404738000064],[-4.810853429999952,37.46001769000003],[-4.914906543999962,37.46669354000011],[-4.981990435999819,37.39493690500018],[-4.875785519999909,37.27412736100007],[-4.966608469999869,37.20835959600004],[-5.094251443999951,37.23387209800006],[-5.24661449499996,37.196224780000136],[-5.21378358599992,37.12699310900001],[-5.354163532999962,37.061149404000105],[-5.195497458999967,36.963220444000115],[-5.215872523999963,36.906252671],[-5.342450493999934,36.89292879800013],[-5.428254527999968,36.680916268000146],[-5.302912553999874,36.58208357200016],[-5.237866469999915,36.62061886900011],[-5.102828477999935,36.61835961000014],[-5.052504536999891,36.576078775999974],[-4.978209526999876,36.65896691400002],[-4.834165514999938,36.764646787000174],[-4.775734428999954,36.90081667200013],[-4.865962431999947,36.960813497000174],[-4.639672503999975,36.98319401599997],[-4.569820571999912,36.920557395],[-4.31861744899993,36.88442921300003],[-4.219583585999885,36.93050218800016],[-3.97010445199993,36.814465634999976],[-3.848551432999898,36.7943400150001],[-3.827620479999837,36.75026210000004],[-3.724831524999956,36.72956751700008],[-3.614743440999973,36.75478598100017],[-3.473811461999901,36.701564081000186],[-3.244805461999931,36.758405622000055],[-3.007673541999907,36.73829123400009],[-2.946758562999946,36.770799607000185],[-2.796200470999963,36.776815467000176],[-2.730674439999916,36.80870575900019],[-2.86514950399993,36.88735114400009],[-2.922154491999891,36.97817007100008],[-3.033803453999894,36.97989003800018],[-3.200531577999868,36.91296238500007],[-3.313584508999952,36.901427713000146],[-3.461701455999957,36.92499829500014],[-3.528467505999913,37.019043249000106],[-3.456241483999918,37.159948573000065],[-3.515833462999979,37.26421341400004],[-3.479578545999971,37.31630526600014],[-3.346648434999906,37.37226234800016],[-3.289106501999868,37.33344508400006],[-3.271839445999944,37.239475065000136],[-3.159701483999925,37.25355850600005],[-2.950745498999936,37.184014023000145],[-2.802672473999962,37.15864770200017],[-2.726692532999948,37.095095777000154],[-2.670354576999955,36.98268624100018],[-2.418059458999835,37.027230189000136],[-2.358350467999969,36.958654654000156],[-2.209620469999891,36.984452978000036],[-2.151278567999896,36.94994988000002],[-2.015970509999875,37.00365575100005],[-1.941939529999956,37.1037055000001],[-1.968816437999919,37.22077621200009],[-1.939823434999823,37.27678610100014],[-1.826781567999944,37.35429573900012],[-1.613010514999871,37.41648141400009],[-1.444330580999974,37.53682928300009],[-1.338120467999943,37.56966136500006],[-1.035995437999873,37.588334066000016],[-0.785070425999947,37.64548104400012],[-0.871153577999905,37.701071167],[-0.754886521999879,37.786336412000026],[-0.7656425159999,37.85691807200004],[-0.651088552999965,37.99567545000008],[-0.636157533999892,38.12821831800005],[-0.525129502999846,38.19479912700001],[-0.509336488999963,38.32941366600005],[-0.414205575999858,38.34707852700018],[-0.338607514999921,38.45832851000006],[-0.071383555999944,38.576414606000014],[-0.287413531999846,38.54378402500015],[-0.34362441899998,38.49820675600017],[-0.500000557999954,38.497916910000185],[-0.631185556999924,38.59398123100016],[-0.42027457699993,38.60302228800015],[-0.381196467999928,38.665891088000194],[-0.276678493999896,38.64971652900016],[-0.178870567999866,38.73986792100004],[-0.239740451999921,38.80658183500009],[-0.341189475999954,38.82501464600017],[-0.55980342499987,38.775107454000135],[-0.649976442999957,38.80124206000016],[-0.634112516999892,38.88416054000004],[-0.85719552899991,38.81694270600019],[-0.787809463999906,38.91926613000015],[-0.812081443999944,39.01866041500017],[-0.875251489999869,39.11005920100007],[-0.874831556999936,39.19903578599997],[-1.049471526999866,39.10399808000011],[-1.140488433999963,39.17226130500006],[-1.243318460999944,39.184006195000165],[-1.185515514999963,39.27450862100011],[-1.447983581999893,39.34628051100003],[-1.434269446999906,39.40908158600007],[-1.287762496999903,39.417694494000045],[-1.146510495999962,39.35865940899998],[-1.075845520999962,39.30195533099999],[-1.000003545999959,39.32540387300003],[-0.999998516999881,39.393667098000094],[-0.881300541999963,39.41253778000009],[-0.818047514999819,39.536956068000165],[-0.883984426999916,39.577170428000045],[-0.982472459999883,39.52480599700016],[-1.023463486999901,39.6724250580001],[-0.926834559999918,39.681416996000166],[-0.832078485999887,39.60822085300009],[-0.781946490999928,39.67143398200017],[-0.696342448999872,39.64362433600007],[-0.580529524999861,39.652307317000066],[-0.58354550099989,39.73482111900006],[-0.534087578999959,39.80937512999998],[-0.584853580999948,39.921517618999985],[-0.48429052399996,39.94767150400014],[-0.580550479999886,40.06996095699998],[-0.404658420999965,40.127810170000146],[-0.216070459999969,40.166082611000036],[-0.236433455999872,40.226971773000116],[-0.17532150299985,40.291656931000034],[-0.10597751499995,40.29185189400005],[0.013429569000039,40.454264177000084],[0.086059431000024,40.47818193700016],[0.056997528000181,40.62973797900014],[0.177868428000181,40.6654128670001],[0.296292482000069,40.86719645800008],[0.232938537999985,40.922245948000125],[0.211420516000032,41.082374329000174],[0.539423498000133,41.28091244700005],[0.811772487000155,41.29641125600017],[0.934653535000052,41.33109791900017],[1.078789580000091,41.41001521300012],[1.21045050400005,41.44879190900008],[1.44189144700016,41.39890315700012],[1.510623556000155,41.40850529700009],[1.697194495000133,41.52971214400009],[1.818881456000099,41.644774049000034],[1.966358528000058,41.70762742599999],[2.038009551000187,41.826954379000085],[1.98346750200011,41.95143838200016],[1.738944419000063,42.02022095000018],[1.600286451000045,42.02234911500011],[1.473405559000128,41.98471034700003],[1.445535563000078,42.078153480000026]],[[-0.361214512999936,40.617867192000176],[-0.130120580999915,40.638062047000176],[-0.091365510999935,40.59404867300003],[-0.098069524999858,40.44892825699998],[-0.204117530999895,40.395552968000175],[-0.290421461999927,40.45719398699998],[-0.557673583999929,40.4865056700001],[-0.733806537999953,40.35635717700012],[-0.819104472999868,40.32829356000008],[-0.89621245099994,40.43858633000008],[-0.941388561999929,40.573269600000174],[-1.125527574999921,40.6326221920001],[-1.217241521999881,40.68846159200018],[-1.235974571999975,40.92496604300004],[-1.313695433999953,41.09552704400011],[-1.271710480999957,41.14456067500009],[-1.105265497999881,41.0771633],[-1.009269571999937,40.915032985000096],[-0.888104467999938,40.835405911],[-0.361214512999936,40.617867192000176]],[[-1.283735494999974,40.200411030000055],[-1.372775446999981,40.32639757300012],[-1.316956497999968,40.44028316200013],[-1.21596244299991,40.30475281700018],[-1.283735494999974,40.200411030000055]],[[-2.474596568999971,40.56868469900019],[-2.500695468999879,40.494981786000096],[-2.619913456999825,40.49413169300004],[-2.794546553999965,40.56033095900017],[-2.852437508999913,40.45588909200012],[-3.07298248099994,40.435538334000114],[-3.111677536999935,40.38269781100013],[-3.117906464999919,40.262845313000184],[-3.239566436999951,40.15033586400017],[-3.3575564759999,40.14065091100008],[-3.39678244199996,40.191545324000174],[-3.289103484999885,40.312271719000194],[-3.28544444899984,40.431464227000106],[-3.080902541999933,40.650386965000166],[-3.05285954299984,40.826448841],[-2.926424568999948,41.01102488700002],[-2.816668575999813,40.9989019730001],[-2.724209477999864,40.86697953400005],[-2.644566477999831,40.79968928000005],[-2.551950470999941,40.636254070000064],[-2.474596568999971,40.56868469900019]],[[-4.859638453999935,39.67795309100018],[-4.616053473999955,39.70031466800003],[-4.488792546999889,39.68346084000012],[-4.233397465999928,39.58117127800011],[-4.23483546499989,39.48665257900012],[-4.424637459999872,39.51276740500009],[-4.492098536999947,39.56241844600015],[-4.84832154299994,39.622655832000135],[-4.859638453999935,39.67795309100018]],[[-5.185223424999947,39.63795666100003],[-5.207396575999951,39.465949949000105],[-5.413815525999894,39.397023883000145],[-5.590913573999956,39.39125210400016],[-5.591705495999975,39.48525967500012],[-5.475978569999938,39.52529818200014],[-5.281009466999933,39.649606500000175],[-5.185223424999947,39.63795666100003]],[[-2.302955475999909,38.97054644600013],[-2.330434539999828,38.82427066900016],[-2.281916563999971,38.75623677200019],[-2.169551451999951,38.725281063000125],[-2.099752493999972,38.65849824900005],[-2.333954435999829,38.39217568100008],[-2.350280539999915,38.28672346000013],[-2.325269442999854,38.17366952300006],[-2.257971477999945,38.15590089400007],[-2.103565421999974,38.2631758440001],[-1.990989420999881,38.24215721600007],[-1.983572442999957,38.17547045900005],[-2.308313523999971,37.97496594700016],[-2.473681432999911,37.85314906600013],[-2.885778540999979,37.75898089800006],[-2.978603424999903,37.78614949600018],[-3.008174443999962,37.8508871250001],[-2.681503513999871,38.178022245000136],[-2.519181420999871,38.38201681400005],[-2.586403445999906,38.48580221000003],[-2.512536582999871,38.570093813000085],[-2.505275507999954,38.68223999000003],[-2.627647438999873,38.70891237900008],[-2.770458472999962,38.70106960000015],[-2.998530561999871,38.906003445000124],[-2.953779579999889,38.96305453399998],[-2.841931463999913,38.965984344000105],[-2.696522542999901,38.89848437500012],[-2.53139854799997,38.907910160000085],[-2.380658567999944,39.01110781700004],[-2.302955475999909,38.97054644600013]],[[-1.204253427999845,37.86243789100013],[-0.994218523999848,37.92009985200008],[-0.984084467999878,37.846458295000104],[-1.097328505999883,37.772408539000025],[-1.115811440999892,37.683306394],[-1.173354546999974,37.64783485000015],[-1.262546546999943,37.68664842600015],[-1.29624347399988,37.769890615000065],[-1.204253427999845,37.86243789100013]],[[-3.658534525999926,37.41009541000017],[-3.822736512999938,37.467597445000024],[-3.802958573999888,37.61125555400014],[-3.699536449999925,37.59510915900006],[-3.620851500999947,37.46217670000016],[-3.658534525999926,37.41009541000017]],[[-1.956302423999944,37.57111462000012],[-1.901843522999968,37.482844127000135],[-2.343124573999887,37.39003483300007],[-2.523315542999967,37.3924608910001],[-2.525119495999945,37.473655214000075],[-2.386033547999943,37.552258690000144],[-2.154800475999821,37.55730962500019],[-2.027216509999903,37.610992865000185],[-1.956302423999944,37.57111462000012]],[[-2.563555551999968,37.12140942100007],[-2.743712490999883,37.158487440000044],[-2.982899485999951,37.272063234000086],[-2.992336502999933,37.33115615400004],[-2.920623453999951,37.39924671200015],[-2.773610571999939,37.39707295000005],[-2.622874447999948,37.30211872700005],[-2.327834472999882,37.26214140700006],[-2.25148153799995,37.200230826000166],[-2.301822577999815,37.16089757200018],[-2.563555551999968,37.12140942100007]]]},"properties":{"objectid":330,"eco_name":"Iberian sclerophyllous and semi-deciduous forests","biome_num":12,"biome_name":"Mediterranean Forests, Woodlands & Scrub","realm":"Palearctic","eco_biome_":"PA12","nnh":3,"eco_id":793,"shape_leng":107.916561292,"shape_area":31.3403425833,"nnh_name":"Nature Could Recover","color":"#E54C00","color_bio":"#FE0000","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":298322.9379817483,"percentage":9.030801447814271}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[19.719123523000178,42.096075498000175],[19.609758462000116,42.14699019500017],[19.58141153600019,42.30189581300016],[19.493204578000075,42.32527562300015],[19.372501484000054,42.44194383600018],[19.40497348000008,42.54213239000006],[19.282680507000066,42.51948834300015],[19.01851057900012,42.660932624],[19.046035575000076,42.764886999000055],[18.95182650400011,42.83051076300018],[18.79510855100017,42.753514935000055],[18.56780659200018,42.76445197800018],[18.482126442000038,42.812356734000105],[18.478618448000077,43.03258151700015],[18.38682755600007,43.019519494],[18.17096153000017,43.10206615300012],[18.038150442000017,43.10432809400015],[17.899421561999986,43.299468188000105],[17.878328503000148,43.42248787200009],[17.714986500000123,43.35723408500013],[17.625749574000054,43.395892092999986],[17.414356466000186,43.42504686700016],[17.254196569000044,43.473821497000074],[17.20490846399997,43.61671215900003],[17.074893579000047,43.71438362700002],[17.075672593000036,43.78004158900018],[16.908025476000148,43.910309273000166],[16.811471484000037,43.83575945200016],[16.974660433000167,43.70333577600013],[16.949495445000082,43.65239895000019],[16.991468496000095,43.54501134700013],[16.875474523000094,43.49809045900014],[16.77537347700013,43.68799387500002],[16.61548045900014,43.82258662100014],[16.52696756199998,43.86800832200004],[16.424900456000103,43.96968499800016],[16.29430956599998,44.01545387800007],[16.035474551999982,44.16263154800015],[15.936884595000095,44.127700637000146],[15.873754447000067,44.19639167500003],[15.573190463000117,44.26098245300017],[15.305482534000078,44.379241384000125],[15.013051510000139,44.590190083000095],[14.928945482000074,44.69196281600006],[14.911010556000065,44.786200721000114],[14.945366469000078,44.98762489500007],[14.851340458000152,45.11040787500019],[14.56369449600004,45.31747407600005],[14.314125508000018,45.417449058000045],[14.17480151300009,45.22120188300005],[14.11271943800017,45.310370916000124],[13.94648651700004,45.41445521000014],[13.91897157800014,45.568462455000144],[14.10479753400017,45.55483918000016],[14.322111449999966,45.47430702800017],[14.36136859600009,45.52385329599997],[14.229548584000042,45.585845349000124],[14.174558438000133,45.65814529900018],[14.052142586000173,45.691490354],[13.902859549000084,45.924752181000144],[13.784386544000142,45.92729592100011],[13.627727433000075,45.97756219500019],[13.415999552000187,45.79727567100019],[13.397920458000158,45.68772855500009],[13.60951657400011,45.75665680100008],[13.72146745300006,45.67225656800002],[13.721855535000032,45.533965391000095],[13.544845498000143,45.52563428299999],[13.473365465000143,45.485732065000036],[13.567391476000068,45.18764795100009],[13.644589475000089,45.05887191100004],[13.868537499000126,44.8075978760001],[13.971493590000136,44.801054795000084],[14.01277345700015,44.95348691200013],[14.120203472000128,44.96164987999998],[14.124728526000126,45.04566085800002],[14.215960513000141,45.1725499640001],[14.299318540000058,45.341518068000084],[14.55250247600003,45.26322908000009],[14.732466463000094,45.130633910000086],[14.826963537000154,45.09502691500012],[14.903893482000058,44.954901778000135],[14.868504584000107,44.795222666000086],[14.879869439000117,44.69340098300012],[14.95437550600002,44.593020819000174],[15.215555441000163,44.41284510500009],[15.314318567999976,44.284061521000126],[15.181745526000043,44.29451727400004],[15.132247538000115,44.183475665],[15.282816526000147,44.04629592900011],[15.450669502000096,43.92023126700008],[15.6615794760001,43.814228355000125],[15.709150465,43.760239678000175],[15.858601475000057,43.73124064000007],[15.942802554000082,43.66254591400008],[15.91895352500012,43.574029328999984],[15.990936471000055,43.48761961800017],[16.15020554000006,43.466569642000024],[16.172288502000015,43.50184454600014],[16.333271502000173,43.54165825100017],[16.514757476000113,43.49558041500012],[16.635234593000177,43.42751181700004],[16.821403536000048,43.38638902600019],[16.88222648100009,43.39593383500011],[17.17319653900006,43.168673785000124],[17.298732471000108,43.118625106000025],[17.49373459800006,42.96381403600003],[17.690696583000033,42.87373841700014],[17.712684494000086,42.84288848700004],[17.71509546500016,42.818493795999984],[17.837825470000098,42.810261929000035],[18.311912452000172,42.49973957300017],[18.468498474000114,42.43292222600013],[18.58863059200013,42.41453920400005],[18.794372453000165,42.24435119700007],[18.9144014740001,42.20173374600006],[19.0991845530001,42.099783484000056],[19.178199581000115,41.919898789000115],[19.607633482000153,41.79324789700007],[19.532527439000148,41.47618463900011],[19.425716511000132,41.314636867000104],[19.521429464,41.23981664600018],[19.454837590000068,41.12991983700016],[19.445524457000033,41.01743402600016],[19.540933482000128,40.91972483900014],[19.453323483000133,40.88025026600013],[19.359878506000143,40.786833285000114],[19.38392450900011,40.715950044000124],[19.346574581000084,40.60135752500008],[19.463878478000083,40.58011778200017],[19.490386582000156,40.343891276000136],[19.39223650800011,40.296676853000065],[19.50186157500019,40.20193704000002],[19.83199456700015,40.05430993200008],[20.015388597000026,39.85438762700011],[19.97871743500008,39.70468566200003],[20.17725354100014,39.611159046000125],[20.135339499000168,39.53686789100004],[20.20590758000003,39.48241485700015],[20.21948844200017,39.40613266500009],[20.337352586000065,39.292364590000034],[20.467874576000156,39.2491221840001],[20.584651586000177,39.33368871400012],[20.644140468000046,39.273741845000075],[20.693487582000046,39.1545003870001],[20.775964503000125,39.27796464800019],[20.88059043600009,39.313803151000116],[20.89653952200007,39.204978723000124],[20.955224579000117,39.18348417000004],[20.995557459,39.30450326200008],[21.082620455000153,39.429722525000045],[21.03350451400013,39.553805705000116],[21.021202562000155,39.706989512],[20.86733646800019,39.870424219000085],[20.719684550000125,39.977059127000075],[20.672840440000016,40.108119236],[20.509122592000097,40.181394336000096],[20.468669516000034,40.26281430000017],[20.256559588000187,40.32679051700012],[20.166650601000185,40.42681428200018],[20.14526551600011,40.494913557000075],[20.197690465,40.56696892300016],[19.97849648800019,40.88543531100004],[19.97271347800006,40.94562978200008],[20.103097502000082,41.01131506900009],[20.03458047300012,41.115065931],[19.882122539000136,41.13952181000013],[19.813703578000116,41.236737805000075],[19.875740558000075,41.3504037890001],[19.796239547000084,41.52487109200007],[19.945983589000036,41.6239453550001],[19.98070746700006,41.67310085800017],[19.95333250600015,41.79290088600004],[19.79839151700014,41.92700966100017],[19.719123523000178,42.096075498000175]],[[16.28194659400009,43.85729641700004],[16.367818522000107,43.92102520100019],[16.548585496000044,43.79564349600008],[16.600496466000152,43.714554953000174],[16.46599558600019,43.69657694400013],[16.28194659400009,43.85729641700004]],[[17.18907555200002,43.195120701000064],[17.030033464999974,43.29432924300005],[17.062713500000086,43.38624385200012],[17.175638522999975,43.34084612300006],[17.263895437000144,43.23985156599997],[17.18907555200002,43.195120701000064]]]},"properties":{"objectid":332,"eco_name":"Illyrian deciduous forests","biome_num":12,"biome_name":"Mediterranean Forests, Woodlands & Scrub","realm":"Palearctic","eco_biome_":"PA12","nnh":3,"eco_id":794,"shape_leng":38.5983863955,"shape_area":4.44111517757,"nnh_name":"Nature Could Recover","color":"#F1873D","color_bio":"#FE0000","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":40665.39266252469,"percentage":1.2310186049291723}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[71.91483357700014,32.24247825600014],[71.8290865400001,32.25976576400018],[71.84866364800007,32.13787864300019],[71.97180151700013,32.132259582000074],[72.00346348599999,32.04000466800005],[71.93092364600017,31.98258544600003],[71.709876598,32.012714700000174],[71.67907763000005,32.05576231100008],[71.74871850500011,32.152660129000026],[71.68814852600008,32.22526685600013],[71.53500361100004,32.095311818000084],[71.48091854299997,32.21351794300017],[71.41866262700017,32.068220669000084],[71.24684149100017,31.999383115000114],[71.32357764700009,32.14667913800014],[71.24740559300011,32.15094318000018],[71.19734149100009,32.04612261900007],[71.11653156300002,31.963686266000025],[71.04763064200012,31.737493568000104],[71.05941056900019,31.591946680000092],[70.99593357800012,31.48916107800011],[70.9434125730001,31.22055326800006],[70.91763252100014,30.983069308000097],[70.91606862500004,30.784607466000125],[70.9664225730001,30.538274227000045],[71.06300355500014,30.325469943000144],[71.04711163500008,30.162588107000147],[70.99427060800002,30.13672909700017],[70.99696354600007,30.02033329600016],[70.95831257900016,29.98593463600008],[70.98844954400016,29.84814084100003],[71.0428085330002,29.866842040999984],[71.070426569,29.967376264],[71.2395626460002,30.056571784000027],[71.33428150500004,30.18983683600004],[71.40993455199998,30.35278203900009],[71.51670859900008,30.45230121400016],[71.58146651200008,30.583093773000144],[71.72118361800011,30.72892832700012],[71.82710254400007,30.76512607899997],[71.7909165260001,30.826803978000044],[71.97973649800008,30.868483327000092],[71.98258953000004,31.001327775000107],[71.94657852700004,31.017578274000073],[72.03074658100013,31.17104203600013],[72.10085248400009,31.441162612000085],[72.1057666260001,31.56267958899997],[72.14660661100015,31.704464678000193],[72.23961656800003,31.767819796000026],[72.21056355000007,31.807849251000107],[72.2550815140001,31.90145717300004],[72.23020151100019,31.992354219000106],[72.29683663600008,32.15520789200008],[72.25763648600008,32.27299425100006],[72.18846851800015,32.239918088000024],[72.0659715290002,32.24301620700015],[71.99817651700016,32.273815175000095],[71.91483357700014,32.24247825600014]]]},"properties":{"objectid":335,"eco_name":"Indus Valley desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Indomalayan","eco_biome_":"IN13","nnh":1,"eco_id":317,"shape_leng":8.96352470826,"shape_area":1.84493561854,"nnh_name":"Half Protected","color":"#FDA87F","color_bio":"#CC6767","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":19540.005345968384,"percentage":0.07406516942030347}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-4.010570436999956,14.678758371000185],[-3.879904444999966,14.928543277000074],[-3.781003519999899,15.092101533000118],[-3.838179498999978,15.235503323000046],[-3.801945536999938,15.273839969],[-3.699598475999949,15.258741815000121],[-3.649341422999896,15.346175122999966],[-3.641549437999913,15.50767478400013],[-3.61792554699997,15.538843729000064],[-3.473192541999936,15.54746250500017],[-3.49599550999983,15.612969090000092],[-3.621715507999966,15.683893737000119],[-3.571110437999835,15.750349488999973],[-3.323374571999977,15.64136647500004],[-3.131350534999854,15.667074778000028],[-3.078525433999971,15.761369512000101],[-2.93343049899994,15.796401509000077],[-2.706180506999942,15.751409464000062],[-2.61110055599994,15.765219488000128],[-2.53290343499998,15.828794379000101],[-2.391753525999945,16.03741106500007],[-2.322371483999973,16.09171758300016],[-2.165170565999972,16.17094383500006],[-2.11589050799995,16.270077275000062],[-2.188184422999939,16.29742574800008],[-2.34292156399988,16.218370655],[-2.478275553999879,16.179771991000052],[-2.675715473999958,16.20049071400007],[-2.974945561999959,16.16635306699999],[-3.052839426999867,16.176932202000046],[-3.062077457999919,16.288965055000176],[-3.015161430999967,16.39413866199999],[-3.037802459999966,16.45903437400011],[-2.958801513999845,16.548658879000186],[-2.489353579999886,16.61971462000008],[-2.187364504999891,16.715209475],[-2.015875459999904,16.7978231890001],[-1.733755517999953,16.85198101200018],[-1.46343344099995,16.918485882000027],[-1.114696479999964,16.952623697000092],[-0.955042513999899,16.95064389200013],[-0.676550427999928,16.87661844300004],[-0.552444448999836,16.886428790000082],[-0.434930501999929,16.861440325000103],[-0.335631435999971,16.704590274000054],[-0.253659440999968,16.691710977000128],[-0.185972554999978,16.76971598500012],[-0.234954552999966,16.94258536300015],[-0.287210522999942,17.047088752000093],[-0.356382513999904,17.106134231000112],[-0.448174579999829,17.064386653000042],[-0.567629440999895,17.04534883700012],[-1.151847421999946,17.167070332000094],[-1.285361583999929,17.182360432000053],[-1.641101457999923,17.104503448000116],[-1.837839476999932,17.04127908700019],[-2.201596473999814,16.95459361200011],[-2.439606481999874,16.880248143000188],[-2.684607499999913,16.82956126500011],[-2.929841535999969,16.743657822000102],[-3.142115580999871,16.694359658],[-3.247840548999932,16.650972581000076],[-3.539902432999952,16.46345532500004],[-3.611710532999837,16.350701460000096],[-3.68010954499988,16.315284566000173],[-3.789771492999932,16.32197315800005],[-4.049637481999923,16.231249784000113],[-4.113107431999936,16.129514435000033],[-4.348847452999962,16.096866251000165],[-4.385224577999963,16.000893292000114],[-4.458703525999965,16.05343022300019],[-4.514319464999971,16.03284125099998],[-4.576787442999944,15.910269328000027],[-4.868333504999896,15.787227013000177],[-4.926146508999921,15.662106153000082],[-4.917558577999898,15.6144580510001],[-4.789558534999969,15.623957597000071],[-4.659661498999981,15.668044564000184],[-4.631530490999978,15.572670743000117],[-4.528307520999874,15.546093572000132],[-4.519555472999969,15.486557248999986],[-4.651059486999941,15.43535941100015],[-4.724433493999868,15.267500233000021],[-4.814211555999975,14.85227818300001],[-4.852262546999896,14.791732176000039],[-4.865797475999955,14.733534779000024],[-4.977437552999959,14.568975723000108],[-5.032285542999944,14.309892605000186],[-5.194684581999923,14.029421048000131],[-5.148297452999941,14.008333521000168],[-4.919569563999914,13.991184650000093],[-4.766938459999949,14.021672648999981],[-4.674348436999878,14.013692072000026],[-4.649722572999906,13.88680145700016],[-4.548388548999981,13.771448029000112],[-4.659810528999969,13.698953115999984],[-4.785821546999898,13.552273666000133],[-5.127549559999977,13.423412466000116],[-5.24117748999987,13.36486638100007],[-5.280385517999889,13.260623333000012],[-5.225863584999956,13.24023351500017],[-5.041845438999928,13.277551089000156],[-4.914549474999887,13.333757450000121],[-4.833024569999907,13.234944031],[-4.757257529999947,13.242873479000082],[-4.719943475999969,13.30169046800006],[-4.713101495999979,13.447919642000159],[-4.451346561999912,13.628068702000178],[-4.255138445999876,13.828404234000118],[-4.092889442999876,14.117005231000121],[-4.070543456999872,14.228397874000052],[-4.010570436999956,14.678758371000185]]]},"properties":{"objectid":336,"eco_name":"Inner Niger Delta flooded savanna","biome_num":9,"biome_name":"Flooded Grasslands & Savannas","realm":"Afrotropic","eco_biome_":"AF09","nnh":1,"eco_id":71,"shape_leng":19.6817421499,"shape_area":3.86391797041,"nnh_name":"Half Protected","color":"#96BEE1","color_bio":"#BEE7FF","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":46132.898666279034,"percentage":3.989482722256394}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-157.25871961699994,62.55992364200017],[-157.12320589699993,62.61814542399998],[-157.05606014999992,62.69905373199998],[-156.70892035799997,62.79519418799998],[-156.64362223199998,62.92577908200013],[-156.87016514699994,62.98003879900011],[-157.17267093499996,62.95779301600004],[-157.26090315499994,62.814743051],[-157.39694173399994,62.67890354600007],[-157.38036347099995,62.55600467400012],[-157.25871961699994,62.55992364200017]]],[[[-156.11311761499996,63.15001219499999],[-155.76472129199996,63.290894642000126],[-155.51465238799992,63.34664600000019],[-155.49126939899992,63.458377882000036],[-155.63580661799992,63.511115438000104],[-155.65348142899995,63.57594514099998],[-156.0010914769999,63.58564120300008],[-156.10157498699996,63.500906624000095],[-156.08175653599994,63.349307248000116],[-156.18158538299994,63.3066536230001],[-156.11311761499996,63.15001219499999]]],[[[-159.88116493699997,63.559530276000146],[-159.93537517799996,63.62582211900019],[-160.00691217399995,63.85376192000018],[-160.15222652599994,63.88163930000013],[-160.2076903349999,63.77066201100013],[-160.37398471899996,63.61034911200005],[-160.59588453299997,63.530640245000086],[-160.37522346499995,63.48790550700005],[-160.19240169399995,63.55129027500004],[-160.1643989899999,63.34368869899998],[-160.05234032099992,63.28936514600008],[-159.82852879499993,63.3440293110001],[-159.68867427099994,63.449688872000195],[-159.88116493699997,63.559530276000146]]],[[[-151.73922498699991,64.20374695600009],[-151.56536165899996,64.26055411300018],[-151.51984294599995,64.37688223600009],[-151.658642033,64.45983064400014],[-151.91136536799993,64.52131580600013],[-152.01306740799996,64.58928192100018],[-151.90192593199998,64.66829319200014],[-152.15142153099995,64.69285869200002],[-152.41498393199993,64.611746358],[-152.31503704199994,64.52299188700016],[-151.930520583,64.40029278300005],[-151.87621831399994,64.31795046200017],[-152.38162675899997,64.29039063800013],[-152.94254203699995,64.204204817],[-153.21615071899993,64.17890369200012],[-153.66039178899996,64.16230275800001],[-153.74364226499995,64.2141555020001],[-153.941260821,64.17475544299998],[-153.90379142699993,63.997811833000185],[-154.04215273499992,63.774300618000154],[-154.21448216999997,63.743359726],[-154.49338889299997,63.78883826400005],[-154.56716646,63.746117380999976],[-154.55136166499997,63.62605159600008],[-155.09655380999993,63.514655742000116],[-154.89169329499998,63.410530390000076],[-154.66436144199994,63.47381484400012],[-154.47414874299992,63.495667240000046],[-154.2069156709999,63.43666161900012],[-153.930198855,63.58220170300007],[-153.74213836299995,63.70788492400004],[-153.43559283499997,63.7853681150001],[-153.33038132799996,63.89155577800017],[-153.40010293599994,64.06727684700013],[-153.31085866799998,64.07319784300012],[-152.94421786899997,64.01017579100017],[-152.76318697099993,64.00579230700004],[-152.47477934199992,64.11723003900005],[-152.06359811199994,64.1084946250001],[-151.73922498699991,64.20374695600009]]],[[[-159.3116849909999,64.98457916500007],[-159.34016523699995,65.05120240999997],[-159.0834196989999,65.11790505100015],[-159.09647309399992,65.2896075880002],[-159.32595168899996,65.27550069600005],[-159.53539234599998,65.09502341200005],[-159.59176876999996,64.98970769400012],[-159.88090631599997,64.90084831400003],[-159.7550293049999,64.75377263500013],[-159.96866624399996,64.71301243900018],[-160.193536722,64.54324415100001],[-160.17919578999994,64.45393500100005],[-159.87081884199995,64.50004773400008],[-159.84504285699992,64.42499757700011],[-160.05485468299995,64.30976786000008],[-160.14522124099994,64.2199446640002],[-160.00786983599997,64.18594751000012],[-159.86734320399995,64.24512863700016],[-159.69292672599997,64.224457492],[-159.56942809699999,64.28195950200012],[-159.19503684199998,64.31332203599999],[-158.95660876299993,64.39474317200018],[-158.89689309599999,64.44685420000008],[-158.9630287589999,64.53825889000012],[-158.92566900599996,64.63040243000017],[-158.97769718799998,64.74599753500019],[-158.74828488999992,64.76518470900004],[-158.69436546599994,64.85122304500015],[-158.79273165199996,64.87871739000013],[-158.96809029699992,64.83160881900011],[-159.130239329,64.83037000200005],[-159.07662153599992,64.94580302000008],[-159.3116849909999,64.98457916500007]]],[[[-152.902291318,65.43376839300015],[-152.638586911,65.44238351500007],[-152.54060712599997,65.49537746200019],[-152.76717521499995,65.59063582599998],[-153.02492219199996,65.57679572100017],[-153.40002154199996,65.42681722300017],[-153.55329315899994,65.43427206300004],[-153.8897192169999,65.30024145600004],[-153.90503129799993,65.36802446200011],[-153.78095885499997,65.49130738400004],[-154.06032114299992,65.49332547],[-154.30385527699994,65.42529148900007],[-154.4554113799999,65.42405986200004],[-154.84797132599996,65.20633719900002],[-154.93443134799995,65.1048625730001],[-155.15312366899994,65.01014459000015],[-155.13291950499996,64.93473583800005],[-154.9942811249999,64.92822742600015],[-154.5691200429999,65.04523665200003],[-154.2824493649999,65.04724629600003],[-154.00226031299994,65.07739420800016],[-153.83043288099995,65.14744128300003],[-153.5781635879999,65.16778249600009],[-153.53022629699998,65.26686271800014],[-153.30905842399997,65.36371047900013],[-152.92078416699997,65.2991536780001],[-152.80604304799996,65.35815072499997],[-152.902291318,65.43376839300015]]],[[[-150.81606738799996,65.89392504500012],[-150.96987617899998,65.94589776200007],[-151.17616679599996,65.90206109000013],[-151.44436703699992,65.89324008600005],[-151.7426686,65.91471859300003],[-152.41981681599995,65.8858523580002],[-152.119096066,65.70491168300015],[-151.88416479699993,65.66937312000016],[-151.38781289399998,65.668810285],[-151.44775081699993,65.59651143700006],[-151.80212915099997,65.54816362700012],[-152.07716379299998,65.4461302250001],[-151.95439096299998,65.34719455800007],[-151.20870135899992,65.31881020500015],[-151.20063937499998,65.22258154700012],[-151.07401109399993,65.15715811200016],[-150.86808554699994,65.15874593100017],[-150.48417622299996,65.25756381500014],[-149.4636832059999,65.26666991100006],[-149.4494652539999,65.4501619130001],[-149.02339182799992,65.5117630690001],[-148.94548859999995,65.61453407099998],[-149.53679986799995,65.53565942500006],[-149.64177322499998,65.59209842000007],[-150.14194052599996,65.50939823800013],[-150.22896470999993,65.53837938800012],[-150.25957236599996,65.6391913600001],[-150.08509645099994,65.6761031900001],[-150.04325151899997,65.77902675600018],[-150.106028532,65.83838208100008],[-150.3404542529999,65.8161735760001],[-150.45971120999997,65.9190405540001],[-150.71716244399994,65.86963190100005],[-150.81606738799996,65.89392504500012]]],[[[-142.16230060799995,65.07451357399998],[-142.40779042999992,65.12907222800015],[-143.23411617899995,65.27471930700011],[-144.0409876219999,65.38920374899999],[-145.49182252499998,65.669071062],[-145.8027730759999,65.76980423000003],[-145.63522918999996,65.88063081500007],[-145.75443064299995,65.91611152800004],[-146.0102338119999,65.92665607500004],[-146.29343222399993,65.90554446400006],[-146.44887751699991,65.86737386599998],[-146.95833429899997,65.96188516300009],[-147.61305093199996,66.03123298600008],[-147.88978711999997,66.03093485900018],[-148.126489077,65.95163957300008],[-148.28379888499998,65.8199458040001],[-147.98336522099996,65.79739321700009],[-148.0272150669999,65.73961756300002],[-148.30716463199997,65.73072488100001],[-148.54101940699996,65.6796994660001],[-148.558236841,65.62456180700013],[-148.09477481,65.59005154800013],[-148.02977930099996,65.47236284500008],[-148.16750147399992,65.41952559000003],[-148.23891847699994,65.25287036600002],[-148.18233074399996,65.21259440200004],[-147.7574866589999,65.20317967000017],[-147.68235005699998,65.07236182800011],[-147.4401204639999,65.04616507200012],[-147.21517475499996,65.13742488100013],[-146.98771588299996,65.00586180200014],[-146.4723291409999,65.02140647300018],[-146.47547615599996,64.9455236230001],[-146.88147096199998,64.81408237400012],[-146.9148737879999,64.70465844800009],[-147.03934795299998,64.62143238100003],[-146.98005963399996,64.5401352720001],[-146.85283068699994,64.50820678300005],[-146.48517676399996,64.55835800000011],[-146.50373911399998,64.39894923500009],[-146.17696816599994,64.3780178720001],[-145.95453166999994,64.44645212300014],[-145.86676157399992,64.39057239000005],[-145.52115579399998,64.30263581800011],[-145.333725663,64.30000890200017],[-145.31714247899995,64.20559793299998],[-145.12888458899994,64.150383094],[-144.96604750299997,64.1529137230001],[-144.6807931369999,64.05619579199998],[-144.74490515599993,63.89522864100019],[-144.29602666399998,63.819145189000096],[-143.9267518889999,63.72650142800012],[-143.86789478699995,63.677895812000145],[-143.769881586,63.48433139100007],[-143.43858396699994,63.45156378100012],[-143.18573239399996,63.48590398099998],[-143.0280588199999,63.47575492900012],[-142.56733327799992,63.26724820400011],[-142.2360717289999,63.14596695200004],[-141.94138317399995,63.06946785700012],[-141.69112450499995,62.98101297400018],[-141.55408932799998,62.88368648200009],[-141.40919853599996,62.68886599700005],[-141.44653211399992,62.59083718200003],[-141.62568039099995,62.53673996000009],[-141.56031822499995,62.32086499500019],[-141.06242453599998,62.25651918800003],[-140.98974831199996,62.165525575],[-140.88380383699996,62.13578765300008],[-140.56626801899995,61.983541790000174],[-140.4251406809999,61.965847785000165],[-140.41586353099996,62.095345493000195],[-140.36160179099988,62.12453053600012],[-139.97610435299993,62.05453915300018],[-139.320999165,62.36199563800011],[-139.04723973199998,62.15734061500012],[-138.6495831499999,62.144924702000196],[-138.01570034599996,61.86575628200018],[-137.73576234099994,61.89230280800018],[-137.624008001,61.85087201500011],[-137.348800263,61.878294950000054],[-137.22540453399995,62.00038212900006],[-137.12136765599996,62.02434945400012],[-136.91337423899995,62.00526366800011],[-136.73439026699998,62.07308620499998],[-136.815870992,62.17915739900013],[-136.9561906209999,62.238776761999986],[-137.29752930699993,62.31291886700018],[-137.48693809799994,62.381796629000064],[-137.73135478599988,62.435067034999975],[-137.73750274399998,62.478969948000156],[-137.3887308909999,62.41573644099998],[-137.39326404199994,62.47343833500014],[-137.74678045399997,62.58204706500004],[-137.90495194599993,62.60797120799998],[-137.63053870099998,62.69095207600009],[-137.73138325199994,62.751776945000074],[-137.91845606799995,62.766304023000146],[-137.925643665,62.93390242800007],[-138.08158926,63.050587799000084],[-138.41622886999994,63.20797389400008],[-138.7363693239999,63.215485643000136],[-138.6237943999999,63.31427463500006],[-138.42634496599993,63.328086050000195],[-138.32342393999988,63.4103084890001],[-138.339844939,63.48677910100014],[-138.22292976199998,63.53839844100003],[-137.96409504799993,63.55652595100014],[-137.98136781699992,63.69915698500006],[-138.07786688099992,63.764344121000136],[-138.31828337999997,63.839194834000125],[-138.27327104899996,63.91856442400018],[-138.338531903,63.983613251000065],[-138.72050424599996,64.02203253600004],[-138.92866732599998,64.07705752100009],[-139.01551819499997,64.06147068600018],[-139.23487927399998,64.11061935700002],[-139.59960930599993,64.26184791999998],[-139.87860182499998,64.3183135110001],[-139.98666590499994,64.43447251900017],[-140.6652333419999,64.65410418100004],[-140.99929686699988,64.70496860200012],[-141.15810088699993,64.77539115400015],[-141.8107111449999,64.99534150800014],[-142.16230060799995,65.07451357399998]]],[[[-157.08626279599991,66.38408282200004],[-157.2563522179999,66.45367990900019],[-157.35811309699997,66.37068775900008],[-157.84066402899995,66.39151338300013],[-157.79605407999992,66.30933051100004],[-157.45584662499996,66.24275169000003],[-157.21736289599994,66.23585156900009],[-156.8297076709999,66.11796365900017],[-156.74852735299996,66.18613706700006],[-156.86434727699995,66.23784141200014],[-156.81930643599995,66.31808175800012],[-157.08626279599991,66.38408282200004]]],[[[-155.70250259799994,66.09374521300003],[-155.897657933,66.15786607000007],[-155.84132264199997,66.22947632699999],[-156.11244787499996,66.36365074100013],[-156.49312735799998,66.48104993900012],[-156.62728697699993,66.42866546100015],[-156.2426860019999,66.17685235400018],[-156.20411611399993,66.09689950199999],[-155.86494476099992,66.07230575200009],[-155.70250259799994,66.09374521300003]]],[[[-152.87623621499998,67.03231629400017],[-153.129204017,67.0558005960001],[-153.40151138899995,67.0122765100001],[-153.83874433499992,67.04670019200012],[-154.0602435369999,67.04621576700009],[-154.30952003199994,66.91751000700003],[-153.54043217399993,66.91503380000006],[-153.17969652699995,66.81937713200011],[-153.01507397099994,66.82746116200019],[-152.54435333299995,66.94228112600013],[-152.506135787,66.98821642900003],[-152.87623621499998,67.03231629400017]]],[[[-157.51240219699994,67.08924354000015],[-157.4642595249999,67.03360585000007],[-156.96280885699997,66.97220669700005],[-155.56924618599993,66.8778027520001],[-155.320336978,66.91865469500004],[-155.21587628199993,67.00980217],[-155.49036745499998,67.01656527200004],[-156.61016886799996,67.08187666500015],[-157.51240219699994,67.08924354000015]]],[[[-141.11509729499994,67.4717180470002],[-141.02393322699993,67.543306991],[-141.07053835199997,67.87193934700014],[-141.02601707499997,68.14083475100011],[-141.1199155259999,68.19046656300009],[-141.53147009199995,68.14422148900002],[-141.77294845499995,68.07031255900006],[-141.76625562099986,68.00919649500008],[-141.970528694,67.9682640600002],[-142.17128853399993,67.71547878500007],[-141.93479503899994,67.6338687810001],[-141.31102444599998,67.49055688700014],[-141.11509729499994,67.4717180470002]]],[[[-150.23743451099995,67.17554367100013],[-150.06860717699993,67.14465450800009],[-150.04243668799995,67.07925479300013],[-150.57525451999996,66.99166585600005],[-150.4522650449999,66.84124305299997],[-150.56368883899995,66.76828031100018],[-150.509496088,66.63515520800007],[-150.871951797,66.47325305600009],[-150.87118406099998,66.41282181900016],[-150.58310883599995,66.40782408500019],[-150.60177682899993,66.28138783700012],[-150.90871293699996,66.23865490600014],[-151.34037604299996,66.21352621900013],[-151.61709216099993,66.10968302300017],[-152.2046480429999,65.98888389500007],[-152.38760923899997,65.93101302500014],[-151.39198116599997,65.97852175700012],[-150.7023560949999,66.07991397800009],[-150.40037682099992,66.15631419700003],[-150.17616869499997,66.24930264700015],[-150.13231765699993,66.33664677800004],[-150.261271016,66.38974715700004],[-149.84125177299998,66.44070947800003],[-149.59613600999995,66.39662755700016],[-149.23860207599992,66.52929115100017],[-149.5984464229999,66.60671624600019],[-149.47242841399998,66.68702455800008],[-149.24906066099993,66.70255791500006],[-149.16723287499997,66.77167745500003],[-148.81398498099992,66.86401863800018],[-148.59283413199998,66.99167689400008],[-148.23275538299998,67.00135682400008],[-147.61865897799998,67.07887429599998],[-147.9470305709999,67.11002466200006],[-148.41223110199996,67.20304448900004],[-148.28548796799993,67.24571145100003],[-147.88811352699997,67.2574314100001],[-147.31560282899997,67.22595191500005],[-147.27697540999995,67.09964940200013],[-147.06231098899997,67.11227976400016],[-146.37847142399997,67.25349382899998],[-146.29161053399994,67.36864743000007],[-146.0712284699999,67.43002217300011],[-145.64333697999996,67.43361521700001],[-144.69223261899998,67.49660491000009],[-144.53575322999998,67.5518781070001],[-144.5209611949999,67.61751794300011],[-144.16322125499997,67.68199192100013],[-143.87109506299998,67.7551097290002],[-143.86908325499996,67.53611650700014],[-143.65552097099993,67.50498438800008],[-142.85373550799994,67.70912603700009],[-142.65587915699996,67.80662588800004],[-142.5339080299999,67.932637349],[-142.37612709799998,67.95707084800006],[-142.30116101399994,68.08179565800009],[-142.09186360299992,68.14416404399998],[-141.94744554399995,68.25610202900015],[-141.71567026899993,68.22466826900006],[-141.51405138499996,68.24431247700005],[-141.34847118499994,68.37108820200007],[-141.22098387599993,68.61866097900014],[-141.06983488799983,68.7300747320001],[-141.57444036499993,68.6627943920002],[-141.9488161499999,68.36849076700014],[-142.61155774599996,68.3105436680001],[-143.032030089,68.32190247200003],[-143.41421242799998,68.35251139500019],[-143.92789025299993,68.31099834700012],[-143.88496801399992,68.17529120900019],[-143.7564678259999,68.10118491300005],[-144.079183033,68.03926273900015],[-144.47020491499995,68.08362986800017],[-144.96350215699994,68.09698134000018],[-145.2181300149999,68.05837064299999],[-145.41418283899998,67.88678761100016],[-145.80775314499994,67.89124369900009],[-145.97331858599998,68.00098021800017],[-146.60504751899998,67.8263600790001],[-146.52115181399998,67.69674486800017],[-146.70122957099997,67.64770110400019],[-147.14574345199992,67.66255611400004],[-147.3793609779999,67.58133707000007],[-147.76797069699998,67.49708985200004],[-148.25366735999998,67.3247730760001],[-149.04665247199992,67.33217409600013],[-149.9757790019999,67.23284941800011],[-150.23743451099995,67.17554367100013]]]]},"properties":{"objectid":339,"eco_name":"Interior Yukon-Alaska alpine tundra","biome_num":11,"biome_name":"Tundra","realm":"Nearctic","eco_biome_":"NE11","nnh":2,"eco_id":416,"shape_leng":121.006871941,"shape_area":29.0651539405,"nnh_name":"Nature Could Reach Half Protected","color":"#6EE3C6","color_bio":"#9ED7C2","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":152936.9731877279,"percentage":1.7897506160040006}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[16.232158592000133,41.321827869],[16.00222052400011,41.430194981],[15.89822859900005,41.53027607800004],[15.923344469000142,41.61358817200016],[16.055875434000086,41.67023676200017],[16.198795433000043,41.76824987600003],[16.180953546000012,41.87522525700007],[16.069421595000108,41.93241481500007],[15.444740479000075,41.89289900300008],[15.184709535000081,41.90791283500016],[15.06524243600012,41.93717171200012],[14.96624947800018,42.00313812900009],[14.816344504000028,42.041372683000134],[14.723566558000073,42.09413341099997],[14.714013536000152,42.17876967800015],[14.50893753400004,42.24852840300019],[14.394191457999966,42.36909856000011],[14.198572590000026,42.480036736000045],[14.084727570000098,42.580427964000194],[13.917971450000152,42.82550961600015],[13.831004510000128,43.096141321000175],[13.620042568000088,43.47551547900008],[13.605185477000134,43.53988849600006],[13.493485553000085,43.62529925100017],[13.420831552000095,43.61708213600019],[13.227773523000053,43.69882681500019],[12.937609469000108,43.89939938800012],[12.69329459300019,43.98109092500016],[12.525013470000033,44.08872260800018],[12.394055453000021,44.04613885200018],[12.117491540000174,44.14908253700003],[12.05286052800011,44.14624375400007],[11.808423444000027,44.2711294180001],[11.737611450000145,44.32468424700005],[11.378705564000029,44.48214299199998],[11.099038503000088,44.53306087500005],[10.99574546000008,44.51066510000004],[10.9605174940001,44.56374283100013],[10.777633587000025,44.59501588000012],[10.503197504000184,44.708121784000184],[10.418637511999975,44.7051388320001],[10.330656530000113,44.767153852000035],[10.181416576000117,44.75348179399998],[10.050622509000164,44.84994375400015],[9.880607505000057,44.883940753000104],[9.660449442000186,44.95651177400015],[9.564676475000113,44.952509918000146],[9.283061460000113,45.04059483499998],[9.124369569000066,45.03055482399998],[8.952263448000053,44.92545581600007],[8.848357520000036,44.886702925],[8.761622424,44.786551755000175],[8.609935458000052,44.82179598200014],[8.58308453400008,44.89824581200003],[8.457770555000081,44.84357786600009],[8.138665465999964,44.852892675000135],[8.26933045200019,44.933436897000036],[8.414770553000096,44.97697384300005],[8.388967535000177,45.11274290500012],[8.244064546000061,45.069094983000184],[7.950053533000073,45.050967776],[7.962854544000095,44.9774846360001],[7.816514561000133,44.90891966300006],[7.786623520000092,44.83523468699997],[7.851161493000177,44.72154590500003],[7.782052533000126,44.62359599000018],[7.796862518000125,44.50706792200015],[7.68328856800008,44.37124219900005],[7.546535471000027,44.358024273000126],[7.529386432000138,44.43206028200018],[7.691034453000157,44.52631310700008],[7.677086463000023,44.595160887000134],[7.500000485000101,44.707926821000115],[7.46292648900004,44.801588889000016],[7.499999480000099,44.997858864000136],[7.400573512000051,44.96264565000013],[7.326099464000038,44.76655873700008],[7.454020550000052,44.63745781400013],[7.440945451000118,44.47454798200005],[7.46425653,44.30767434800015],[7.620418427000118,44.30815831900014],[7.828958502000091,44.42095526600008],[7.971315572000094,44.41742313200007],[8.18622958100002,44.4518269890001],[8.275273556000059,44.37268036600011],[8.222284505,44.28414148400009],[8.044944556000189,44.23308546800007],[7.951963434000106,44.15336267200007],[7.74734458100005,44.14775065300017],[7.801887469000121,44.05007583200012],[7.59823957600014,43.93339621900009],[7.397967578000078,43.96341013800003],[7.319744472000025,43.91074814900003],[7.145458554000015,43.91529114100007],[7.151919492000104,43.74989054200006],[6.987840552000137,43.70851294200003],[7.051126436000118,43.54108241400007],[7.144568563,43.548315494000065],[7.141978555000151,43.61658223900014],[7.278828547000103,43.70087971000015],[7.492369433000022,43.743874683000115],[7.520335485000089,43.78057551600017],[7.675436569000112,43.77903073200008],[7.996005474000128,43.850209350000114],[8.184344491000047,43.952095072000134],[8.184268551000116,44.005757022000125],[8.294097467000086,44.15540366500011],[8.427714559000151,44.1866455330001],[8.465820534999978,44.28841340500014],[8.770151514000133,44.427650228000175],[9.246251493999978,44.350707374000194],[9.379169535000187,44.270934287000046],[9.517723568,44.219650450000074],[9.628223539000032,44.14289870400006],[9.749940508000122,44.09652381300003],[9.898987510000154,44.09794991000018],[9.955428564000044,44.050842776000025],[10.074279592000096,44.02794693700014],[10.18499447500011,43.93206399900015],[10.252435436000042,43.83100641000004],[10.267848582000113,43.667958780000106],[10.326815438999972,43.460584628000106],[10.383726550000176,43.43744068400008],[10.499999473000173,43.28618957700019],[10.50116958600006,42.93710392800017],[10.644484540000121,42.95333900400004],[10.774971495000045,42.888177251],[10.776194582000073,42.76673688500017],[10.9740675110001,42.719022230000064],[11.0997814750001,42.55971024600018],[11.179302434000135,42.51406039000017],[11.14805352600007,42.440791995000154],[11.533804468000028,42.33914985200016],[11.687895532000141,42.233556480000175],[11.825289510000175,42.02115888500009],[11.890028480000126,42.031337030000145],[12.117420461000052,41.91467686400017],[12.194231550999973,41.821548555000106],[12.21362157599998,41.73228245900009],[12.397782550000159,41.65203311199997],[12.607009437999977,41.442618805000166],[12.837814530000173,41.39820125600005],[12.96714444600019,41.33476399500012],[13.02838849800014,41.20921901100007],[13.253755579000028,41.26872448900008],[13.349978486000055,41.261384624000186],[13.525941456000055,41.18426725900002],[13.574656574000073,41.22643074700005],[13.715946461000158,41.223402030000045],[13.767183526000167,41.182364399000164],[13.906012486000066,41.33086473400016],[14.085610519000056,41.437939021000034],[14.274674572000094,41.30696625200005],[14.387485433000165,41.2571586360001],[14.500000581000165,41.15952153400008],[14.42301648800003,41.09503921700019],[14.482937541000013,40.9742134120001],[14.593935564,40.93980871700012],[14.62217553700009,40.83199179400009],[14.770675536000056,40.82649108600003],[14.7302554850001,40.71722023800004],[14.873475556000187,40.715343194000184],[15.14276146200018,40.61327038900009],[15.070981525000036,40.577447643000085],[14.935900450000133,40.64463882300009],[14.918853503000037,40.498060459000044],[14.9637744690001,40.42467455000008],[15.074001524999971,40.45952918500012],[15.070076448000066,40.52775033400013],[15.141367552000133,40.568314889000135],[15.228634563000185,40.45270028100015],[15.126889490000167,40.436782209000114],[15.193998528000066,40.33022760000006],[15.307286487,40.22670891600012],[15.478516531000139,40.211343882000165],[15.576765512000065,40.295201135000184],[15.627034467999977,40.292804917000126],[15.684175578000122,40.349945357000024],[15.587108446000173,40.52385526299997],[15.587108446000173,40.64923093300007],[15.506219559999977,40.71394308100008],[15.332308480000108,40.71798701400007],[15.287819517000116,40.81505112900004],[15.348485552999989,40.87976243900016],[15.47386356900006,40.887849131999985],[15.615420503000166,40.952561783000135],[15.688220517000047,40.952561783000135],[15.886397542000168,40.84336268400017],[16.056264522000106,40.65731879900011],[16.20186455000004,40.55621091800003],[16.20186455000004,40.40656561600008],[16.10479758500003,40.281190281000136],[16.19739548700005,40.07772360500013],[16.342771551000055,40.13640480600003],[16.547466512000028,40.18320331800004],[16.668441514000108,40.11750713500004],[16.848131581000075,40.355377333000035],[16.750080581000134,40.45669794600008],[16.660205456000085,40.48138667400019],[16.468242439,40.62038125999999],[16.25332859800011,40.69042949600009],[16.274764477000133,40.80121528900014],[16.40192649800008,40.77925051200003],[16.388103565999984,40.85902544300018],[16.434808536000105,40.93095491300011],[16.59451648099997,40.971878382000114],[16.33232451500004,41.13765666900014],[16.227415441000176,41.1809983170001],[16.030004522000013,41.19890407400004],[16.232158592000133,41.321827869]],[[9.342447579000066,44.45888103100009],[9.27089747400015,44.49237813400009],[9.141772579000076,44.60991186300009],[9.160075471000141,44.72580676200005],[9.236373588000163,44.74559677000008],[9.62270958800002,44.733023748000164],[9.774575592000076,44.67412076100004],[9.896780555000078,44.591940895000164],[9.938253541000165,44.4876970090001],[10.11091655600012,44.48596497200003],[10.406228440000177,44.36684421400008],[10.719491510000125,44.272025443000075],[10.781094475000032,44.2294654910001],[10.800371511000037,44.1419027660001],[10.749339467000027,44.094631682000056],[10.631922582000072,44.085025686000165],[9.952357435000067,44.38835804500013],[9.879919519000111,44.361816246000046],[9.833890465000025,44.27761047300015],[9.694135473000188,44.34810211100017],[9.342447579000066,44.45888103100009]],[[10.944602440000097,44.086822934],[10.993021509000187,44.17066962600012],[11.146989527000073,44.213539372000184],[11.345297477000088,44.15937467600014],[11.599692430000175,44.04962186800003],[11.906981550000012,43.88802430700014],[11.94852343600013,43.83912746900006],[12.017715544000112,43.63644215300019],[11.91148749399997,43.612184255000045],[11.471989441000176,43.974530074000086],[11.249232485000107,44.05695368600004],[10.994420449000131,44.04431578800012],[10.944602440000097,44.086822934]],[[12.321084448000136,43.61449615099997],[12.443737507000094,43.61858115600006],[12.667212457000062,43.51265938000006],[12.713802428000122,43.46387653600016],[12.586564467000073,43.41444979400006],[12.388972499000147,43.46648582300014],[12.291329530000041,43.55958730900005],[12.321084448000136,43.61449615099997]],[[12.781597440000155,43.09310522800007],[12.730772429000126,43.198725926],[12.797117540000158,43.272013599],[12.881787503000055,43.26011163200013],[12.948767458000077,43.18521496799997],[12.887289551000038,43.07885347800004],[12.781597440000155,43.09310522800007]],[[13.178488435000133,43.00252568900004],[13.250884442000086,42.972133914000096],[13.340503583000043,42.83811247800003],[13.429436581000061,42.77659383500003],[13.587546433000114,42.746572205000064],[13.630727483000157,42.69533329600006],[13.570387503000063,42.617979896000065],[13.583814474000178,42.56303735900002],[13.789418536000085,42.415890031000174],[13.830549541000039,42.33187167800014],[13.706183555000052,42.277871266000034],[13.537349562000031,42.36260644000009],[13.462227592000033,42.31446497900009],[13.808753575000026,42.05932085200004],[13.937316547000023,42.17085380900005],[14.056612487000109,42.15807509400014],[14.209839545000136,42.18510572600019],[14.295273434000023,42.10148836300016],[14.463968456000032,42.038336925000124],[14.516993549000176,41.92900472100001],[14.417413521000185,41.80199072500011],[14.458731442000158,41.692582581000124],[14.468789559000015,41.573698528000136],[14.644863505000046,41.40981321000004],[14.670745481000097,41.299463275000164],[14.602794565000181,41.27206937100004],[14.497570500000108,41.36007751100004],[14.3426305160001,41.40718900300004],[14.258897483000055,41.45956382800006],[14.261863503000143,41.54919286000006],[14.166749521000156,41.593927413000074],[14.036087553000073,41.52571397600019],[13.883670523000092,41.55184472700017],[13.882815569000059,41.62935822000003],[13.722818448,41.762494024000034],[13.602318531000037,41.76857090300001],[13.447363461000066,41.73737111300011],[13.145183446000033,41.89220397500014],[13.053307561000054,42.02104505900007],[13.168117506000101,42.141184051000096],[13.200584473000163,42.223241374000054],[13.119185464000168,42.35624742600015],[13.29696646900004,42.62300384100013],[13.269897448000108,42.679311623000046],[13.126356518000023,42.661203695000154],[12.982143526000073,42.5127444310001],[12.90518843500007,42.49253784200016],[12.817755462000093,42.58480717300006],[12.85238244500016,42.701650233000066],[13.032427569000106,42.86491830799997],[13.111165492000055,42.97008185600015],[13.178488435000133,43.00252568900004]],[[12.802324546000023,42.960071852000056],[12.853878447000113,42.91642124700013],[12.85887255299997,42.82718784100018],[12.789030512000181,42.75585298300007],[12.710861553000086,42.800545794000186],[12.69602742900014,42.888760296000044],[12.802324546000023,42.960071852000056]],[[14.899552494999966,40.84336268400017],[15.04515252300007,40.867628629000194],[15.15030852800004,40.81100702900011],[15.07750750800011,40.73820802000006],[14.915730574000179,40.77056451300018],[14.899552494999966,40.84336268400017]],[[15.303997596000102,40.51981133000015],[15.380842549000079,40.540033175000076],[15.457686496000179,40.47532102600013],[15.522397470999977,40.313545769000086],[15.445552518,40.26905932000017],[15.364664470000093,40.32567957900005],[15.364664470000093,40.40252268800009],[15.303997596000102,40.51981133000015]]]},"properties":{"objectid":347,"eco_name":"Italian sclerophyllous and semi-deciduous forests","biome_num":12,"biome_name":"Mediterranean Forests, Woodlands & Scrub","realm":"Palearctic","eco_biome_":"PA12","nnh":4,"eco_id":795,"shape_leng":58.0183726803,"shape_area":11.2565277491,"nnh_name":"Nature Imperiled","color":"#E54C00","color_bio":"#FE0000","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":102278.3067790697,"percentage":3.096158435517033}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[30.84916666700019,-8.628333332999944],[30.78916666600003,-8.5675],[30.6875,-8.5425],[30.533333332999973,-8.594166666999968],[30.51666666600005,-8.65],[30.65833333300003,-8.714166666999859],[30.794166666000024,-8.61083333299996],[30.84916666700019,-8.628333332999944]]],[[[29.50916666600017,-8.8525],[29.45000000000016,-8.937499999999886],[29.554166667000175,-8.958333332999871],[29.808333333000064,-8.931666666999945],[29.812500000000114,-8.858333332999848],[29.950000000000102,-8.7025],[30.044166666000024,-8.681666665999956],[30.1,-8.719166665999921],[30.185,-8.639999999999873],[30.11,-8.6025],[29.965,-8.5925],[30.025833333000037,-8.524166666999918],[30.191666666000117,-8.550833333999947],[30.154166666000094,-8.48],[30.22666666700013,-8.349166666999906],[30.296666667000125,-8.289166665999971],[30.573307439000075,-8.253333333999933],[30.587497499000165,-8.152176296999926],[30.54075648600019,-8.097438445999956],[30.46750049600007,-8.07236498899988],[30.39501949700019,-8.25772390499992],[30.128639597000188,-8.29591621399993],[29.918649453000057,-8.29679899599995],[29.79543867700005,-8.348333332999971],[29.78166666700008,-8.425],[29.725,-8.495833333999883],[29.626666666000176,-8.4875],[29.576666666000108,-8.536666665999917],[29.481666665999967,-8.750833333999935],[29.50916666600017,-8.8525]]],[[[36.10583333300008,-6.387499999999875],[36.22,-6.39333333299993],[36.23916666700006,-6.300833332999957],[36.220833333000144,-6.209166665999931],[36.12416666700011,-6.243333332999896],[36.06666666700016,-6.358333333999894],[36.10583333300008,-6.387499999999875]]],[[[36.165000000000134,-6.045833332999905],[36.025833333000094,-5.955],[35.955,-5.976666665999915],[35.9516666670001,-6.051666666999949],[36.008333333,-6.133333332999882],[36.13166666700005,-6.100833333999958],[36.165000000000134,-6.045833332999905]]],[[[35.31416666700005,-5.409166665999919],[35.27916666600004,-5.346666666999965],[35.15666666600009,-5.310833333999938],[35.15833333300003,-5.434999999999889],[35.27166666600016,-5.508333332999939],[35.31416666700005,-5.409166665999919]]],[[[34.65666666599998,-5.185833332999948],[34.585,-5.2475],[34.5825,-5.35],[34.446666667000045,-5.301666666999893],[34.305,-5.223333332999971],[34.27333333300015,-5.291666666999902],[34.17083333300013,-5.285],[34.19500000000011,-5.388333332999935],[34.14583333400009,-5.4475],[34.065,-5.431666666999945],[34.004166667000106,-5.563333333999879],[34.09333333300003,-5.618333332999953],[34.123333333000176,-5.53583333399996],[34.19083333300006,-5.545],[34.31666666700016,-5.6875],[34.4025,-5.755833333999874],[34.35666666700007,-5.789166666999904],[34.27833333300015,-5.7125],[34.30583333300018,-5.9175],[34.35916666700018,-5.83833333299998],[34.53250000000014,-5.958333332999928],[34.58166666700009,-5.91],[34.71416666700003,-5.945],[34.860000000000184,-6.013333332999878],[34.975,-6.015833332999875],[35.04166666700007,-5.941666666999936],[34.99333333400017,-5.886666666999872],[35.02333333299998,-5.780833332999975],[35.11083333300007,-5.696666666999874],[35.19416666700016,-5.51749999999987],[35.13916666600005,-5.456666665999876],[35.138333333000105,-5.3525],[35.09416666600015,-5.346666666999965],[35.11666666700006,-5.4525],[35.11166666700012,-5.591666665999924],[35.03500000000014,-5.689166666999881],[34.911666666000144,-5.92333333299996],[34.86500000000018,-5.830833332999873],[34.97333333300014,-5.744166665999956],[34.9591666660001,-5.699166666999929],[34.82583333300005,-5.740833332999898],[34.78583333400019,-5.621666666999943],[34.80083333300007,-5.458333332999928],[34.68083333400011,-5.428333333999944],[34.672500000000184,-5.321666666999931],[34.6475,-5.290833333999899],[34.65666666599998,-5.185833332999948]]]]},"properties":{"objectid":348,"eco_name":"Itigi-Sumbu thicket","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Afrotropic","eco_biome_":"AF07","nnh":3,"eco_id":46,"shape_leng":43.5815122847,"shape_area":0.90014012779,"nnh_name":"Nature Could Recover","color":"#DE5245","color_bio":"#FEAA01","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":11069.283752357796,"percentage":0.051631492210233845}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[117.85094057000003,-35.03349304999995],[117.70046239600015,-35.029643948999876],[117.48128975600014,-34.99470550999996],[117.39823001100001,-35.03335999099994],[117.56438001100014,-35.08960999099992],[117.85094057000003,-35.03349304999995]]],[[[114.9966090600002,-33.67718957899996],[114.98261001200012,-33.96098998999997],[114.99552001200016,-34.10411998999996],[115.05441001200006,-34.27801998999996],[115.17101001200001,-34.32350998999988],[115.26120001200002,-34.30665998999996],[115.38377001200013,-34.32710998999994],[115.67392001200017,-34.484359989999916],[115.95186001200011,-34.72550998999992],[115.99632001200007,-34.83079998999989],[116.26372001200014,-34.880259989999956],[116.47653001200001,-35.001319989999956],[116.63569001200005,-35.054819989999885],[116.76738001200022,-35.01498998999995],[116.85926001200005,-35.05110998999987],[116.96974001100023,-35.01964998999995],[117.14106001100015,-35.05275998999997],[117.20210001100008,-35.01701998999994],[117.304210011,-35.03293998999993],[117.36933001100022,-34.969269990999976],[117.45520988400006,-34.96730953399987],[117.36428839900009,-34.88368232399995],[117.05811306600015,-34.83482337299989],[117.00552366400007,-34.868846858999916],[116.82123545200022,-34.79359429999988],[116.6664885890001,-34.60471716399991],[116.59326176800005,-34.59369663699994],[116.43717178800011,-34.47009273499992],[116.43312081400006,-34.38698197399998],[116.33655542200006,-34.40576162799994],[116.30161294400011,-34.35005181099996],[116.17923732500003,-34.33465190799984],[116.03790284700028,-34.14553840199983],[115.93872079200025,-33.98321530399994],[115.83366403000002,-34.09221273499992],[115.77423097200005,-34.19907378599993],[115.78722376000019,-34.32305152099997],[115.62409968600002,-34.31353001499997],[115.3352966860001,-34.2118454589999],[115.29070278200004,-34.157600463999984],[115.21682737000003,-34.22057722299991],[115.14591211000027,-34.19316487899988],[115.13764956500006,-34.06543724799997],[115.04579161800018,-33.71879190699991],[114.9966090600002,-33.67718957899996]]]]},"properties":{"objectid":353,"eco_name":"Jarrah-Karri forest and shrublands","biome_num":12,"biome_name":"Mediterranean Forests, Woodlands & Scrub","realm":"Australasia","eco_biome_":"AU12","nnh":2,"eco_id":202,"shape_leng":13.3265404355,"shape_area":0.829989573222,"nnh_name":"Nature Could Reach Half Protected","color":"#F5A27A","color_bio":"#FE0000","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":8467.992492406229,"percentage":0.2563422021044229}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.568890561000103,9.321076031000132],[9.600749504000078,9.342313594000075],[9.557958547000112,9.541990645000169],[9.529431578000072,9.86527578900018],[9.557958547000112,9.917572159000144],[9.567467481000108,10.107740611000168],[9.681576532000122,10.264628549],[9.66731254400014,10.321679637000159],[9.567467481000108,10.359712858000137],[9.496223483000051,10.313616246000095],[9.320231511999964,10.307416488000115],[9.253667466000024,10.345449877000135],[9.163331505000087,10.21233335200003],[9.111031446000027,10.198070370000153],[9.096768465000025,10.107740611000168],[9.006431497000108,10.045935139000107],[8.925604470000167,10.031672996000168],[8.944622505000098,10.240858309000032],[8.96839542600003,10.312171206000073],[9.106277566000188,10.383484439000142],[9.115786500000183,10.454797336000127],[9.068241495000109,10.587915202000033],[9.034958466000091,10.611685441000134],[8.935113571000102,10.469059479000066],[8.86379547700011,10.431025923000163],[8.816249467000034,10.321679637000159],[8.840023562000056,10.202825088000054],[8.640332430000171,10.069706217000146],[8.603759504000095,9.934031870000183],[8.52146949900009,9.722648821],[8.374077587000045,9.570515602000171],[8.47867753600002,9.513464513000145],[8.549996468000074,9.541990645000169],[8.630823496000119,9.518218058000059],[8.67836850000009,9.427889473],[8.659350465000102,9.35182185800005],[8.659350465000102,9.194932075999986],[8.754441480000082,9.137882161000107],[8.821004520000088,9.061814713000047],[8.930358517000116,9.066569096000023],[9.015940431000104,9.11411192100013],[9.277441561000046,9.190178531000072],[9.358267583000043,9.256737715000156],[9.500904441000102,9.275754242000176],[9.568890561000103,9.321076031000132]]]},"properties":{"objectid":355,"eco_name":"Jos Plateau forest-grassland","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Afrotropic","eco_biome_":"AF10","nnh":4,"eco_id":82,"shape_leng":5.83578246415,"shape_area":1.09437232204,"nnh_name":"Nature Imperiled","color":"#DEBDAC","color_bio":"#D6C39D","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":13365.690094628624,"percentage":0.2737017589311865}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[86.75134250900004,48.66946186700011],[86.44106255800006,48.627908414000046],[86.20503252300017,48.695227167000155],[86.08406053800007,48.68796810300012],[85.86573760800007,48.62927751400014],[85.55075859500016,48.630796483000154],[85.40709663000007,48.727926480000065],[84.97630351900006,48.72301736700018],[84.88336162400009,48.792068156000084],[84.88923649999998,48.86264763600008],[84.76300855800014,49.01672948000015],[84.5363766480001,49.06017187900005],[84.34024849600013,49.03623048100013],[84.26181751899998,49.09758232400003],[84.07796449600005,49.09227624400012],[83.71042659100004,48.98890407600004],[83.5756305000001,48.914017136000155],[83.49481151900011,48.92693046300019],[83.39186062599998,48.864158893000194],[83.35056265400016,48.77131976000004],[83.20350652100012,48.64804258400005],[83.12895955000005,48.505734129000075],[83.01142850400015,48.43510452400011],[82.8785936110001,48.41655336100001],[82.65978252000014,48.495735189000186],[82.56784058500011,48.45262488100013],[82.41013356800005,48.276953099000025],[82.12806660000007,48.12425276000016],[82.1252286560001,48.04111132100002],[82.22165658400007,47.92521239900003],[82.39923055600019,47.821169679000036],[82.73145265300019,47.74508781400016],[82.84532164600006,47.696904611000036],[83.03205150600013,47.687543702000085],[83.12433659500005,47.714158758999986],[83.3272936520001,47.71214090000012],[83.53314263300012,47.73999983100009],[83.77549765200018,47.698979635000114],[83.98705253000008,47.71869471000008],[84.05729656700015,47.681119644000034],[84.68184659000008,47.59774887600008],[84.85558366100008,47.55046169900004],[85.09378863300003,47.57858667200014],[85.24999964800014,47.65738025000013],[85.61854556100019,47.58774272800008],[85.77587857700013,47.50106026999998],[86.35188262900016,47.29114388700003],[86.5634155460001,47.1848814710001],[86.73338361100019,47.02084444000013],[86.89265452400014,46.91425798000006],[86.9334415350001,46.730982805999986],[86.85928365200004,46.66936760300018],[86.73465765999998,46.63194156700007],[86.51414454000013,46.62805856700015],[85.922698508,46.65227472300006],[85.7836304970001,46.37967846800018],[85.70931252000014,46.31397407000014],[85.51192456700011,46.26391399099998],[85.44255861800002,46.273157051000055],[85.11142751000011,46.24352383799999],[84.88482661300009,46.13647168000011],[84.81594865900018,46.171444835000045],[84.6841125540002,46.073185293],[84.48542054400014,46.09495644800006],[84.55171955500009,46.010693343000014],[84.68995658400019,45.92608289200007],[84.9993975060001,45.87244776400013],[85.0450285870001,45.70014550700017],[85.09236153000018,45.643165329000055],[85.09151462200009,45.50092325800006],[84.78836850900012,45.38718401700015],[84.69922663400018,45.257208862000084],[84.66370362500004,45.104262934000076],[84.5497055510001,45.025599946],[84.07797958300011,44.985712816000046],[84.03831457400014,44.948260963],[83.57079363900004,45.010809910000035],[83.40505960900009,44.980662886000175],[82.93395256100018,45.14917685900019],[82.73910549900012,45.236971930000095],[82.75286858400017,45.058016956000074],[82.6910555680002,44.96971075700003],[82.6037825210002,44.9736777440001],[82.36315953899998,44.898295936000125],[82.44409955400005,44.81230498500008],[82.78215059500008,44.75872668599999],[82.88264458500004,44.67051989600009],[82.78858152600009,44.50869702900019],[82.84333060900008,44.43708707700017],[83.05033159900012,44.29426933800016],[83.27513860100015,44.26140557200006],[83.61190754500007,44.297183223000104],[83.87602952900016,44.27572253300008],[84.02530653000014,44.15353768600016],[84.21345561400005,44.16644246400017],[84.5488816100002,44.22247364300017],[84.9395066290001,44.17320666000006],[85.04706555800016,44.187583636],[85.39394358000015,44.30493547700007],[85.64953664200016,44.162181608000026],[86.01038360900003,44.10375957500008],[86.31434662200013,44.075649689000045],[86.45372057300011,44.078269704000036],[86.80696062800013,44.024814787000025],[87.19168864300008,43.911587178000104],[87.38116458200005,43.84217948700018],[87.48783854900006,43.727070643000104],[87.50024460400005,43.61178024700018],[87.55072059200006,43.54768953300004],[87.67736058800011,43.65864313300017],[87.78247853900012,43.86126441000016],[87.83969156600006,44.15011552300007],[87.95226253700014,44.26990431900009],[88.02730554900018,44.30734242400001],[88.49073762300009,44.35644914500017],[88.82892663000018,44.25026334000006],[89.19975258800014,44.15466270500008],[89.25775954900007,44.15370163600005],[89.37187161700001,44.24279741100008],[89.45359752000007,44.2428352980001],[89.84411659200003,44.10920378900005],[89.98289458900013,44.04803886200017],[90.07185357200018,43.943631194000034],[90.37422150900011,43.812840479000045],[90.57593552900005,43.804417672000056],[90.78324162000007,43.697831883000106],[90.94246660000005,43.65477086100009],[91.05020859000018,43.66227886700011],[91.41931156400005,43.41469085800014],[91.66465758100014,43.37782104500013],[91.84767157600015,43.29742752900012],[92.21173065600016,43.208148861000154],[93.13449856800014,43.04317154900008],[93.57792656000015,43.03656342400018],[93.77326966300012,43.005836708000174],[93.88187364800007,42.948125125],[94.19093352900018,42.84198458200012],[94.5490416250002,42.77083412700006],[94.70777157000015,42.759199207000165],[94.98049958800016,42.77979102800015],[95.378646527,42.92797905300006],[95.54828652500004,43.00563068100007],[95.86565354300012,43.22435678000011],[95.97097064700017,43.191840863000095],[96.06084459800007,43.390531866000174],[96.06084459800007,43.72044072500012],[95.86909464900009,44.10227581000015],[95.15848561400009,44.55525498100019],[94.87978364600013,44.6462470780001],[94.75610363500016,44.73938292999998],[94.65267966700003,44.897665784000026],[94.33419064800012,45.19034893500009],[94.3122406220001,45.34399005900008],[94.37886065900017,45.50610729800019],[94.27531465100009,45.48646112300014],[94.1263276630001,45.50290205800019],[94.05622058600017,45.57125429900003],[93.87096359500003,45.57451234500013],[93.62071952800005,45.65237050300004],[93.31897755200015,45.82055272000014],[93.23344458800011,45.78471756900012],[92.67355357200012,45.95833612000007],[92.3340836430001,45.92182991500016],[92.10068552600006,45.96672506400017],[91.70377357600017,46.11195042200018],[91.54824065700006,46.218949775000056],[91.47216063700006,46.15737279300009],[91.50533252100007,46.050988337000035],[91.12875356000006,46.01644232299998],[91.03105158200015,46.027707433000046],[91.02221655300019,46.12840745100016],[90.93135052000008,46.275189998000144],[90.83295452100009,46.31451235600008],[90.5854186470001,46.35462345000013],[90.42350760300008,46.48460581400013],[90.40748559500008,46.63546649300008],[90.31126352500013,46.71969892000004],[90.25068650500009,46.6999548440001],[90.09457355800015,46.73324893700004],[89.90864551100009,46.92661676100005],[89.73523751300002,46.94079290600013],[89.61473055600004,47.09355275700017],[89.41046156400006,47.140806071000156],[89.21697253700006,47.27705273400005],[88.92263764800009,47.43830077000007],[88.716026585,47.50748047300016],[88.28043366100013,47.62413527500007],[88.03870359600006,47.71711874400006],[87.86786666300009,47.73775683400004],[87.78201250500013,47.86906286800013],[87.41448264700017,48.110260681],[87.09288762900007,48.36294103200015],[86.75134250900004,48.66946186700011]],[[92.23861661600017,43.71759875700013],[92.4528126310002,43.792706477000195],[92.65975964200015,43.8337223150001],[92.90904951200014,44.026897858000154],[93.03915358100016,44.063285879000034],[93.13623865100016,44.03780372000011],[93.288192665,44.042060721000155],[93.67828358900005,43.949849057000165],[93.82301357600005,43.902047398000036],[94.08066556900013,43.72401191900019],[94.15906553300005,43.61960726800004],[94.16431461600013,43.520116592000136],[94.35967263900005,43.453908777000095],[94.52103466900013,43.31927713900012],[94.88026459900004,43.21975964100017],[95.1386416260001,43.132262965],[95.09619164500003,43.029239485000176],[94.93301359200012,43.00587476200013],[94.63641357800003,42.91378513899997],[94.44954659000018,42.89482644700007],[94.25839963500016,42.9373820400001],[94.10662851400008,43.01116961000014],[93.97388464900007,43.04143548900015],[93.88253766200012,43.11642033000004],[93.59410866200005,43.1627920360001],[93.31204957300008,43.16714107000007],[92.94613658400004,43.154604928000026],[92.77340651400016,43.20038587800008],[92.34088857500006,43.252631621000035],[92.17656656000014,43.284277329000076],[91.9382705610002,43.4233379640001],[91.85829161500016,43.52221860600014],[91.87620558600008,43.56126234900006],[92.02517664800007,43.56952824700011],[92.13777159200009,43.6210881830001],[92.23861661600017,43.71759875700013]]]},"properties":{"objectid":357,"eco_name":"Junggar Basin semi-desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Palearctic","eco_biome_":"PA13","nnh":3,"eco_id":827,"shape_leng":52.948669938,"shape_area":35.210626301,"nnh_name":"Nature Could Recover","color":"#B35E37","color_bio":"#CC6767","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":304897.61962394137,"percentage":1.1556953774300671}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-69.67735258399989,77.21927721100019],[-70.14917762499988,77.23961874900016],[-70.91028561499996,77.18737619100017],[-71.19388563299992,77.13240381400004],[-71.37332155999991,77.00461801200004],[-70.88722951399996,76.9340412140001],[-70.92250056199998,76.86347933500019],[-70.45417764799998,76.78431091800019],[-70.08139049199997,76.87931928800015],[-70.00805654999982,76.7626576130001],[-69.40888961199988,76.70125279600012],[-68.75527148399993,76.65568659100018],[-68.18083954299993,76.68762600100018],[-67.97666962399984,76.60485671800012],[-68.39527863299992,76.57041480800018],[-68.73444362799995,76.58318799000011],[-69.0655516029999,76.48068703700011],[-69.61500564099998,76.42123503599998],[-69.41000356699993,76.31400501300004],[-69.12304659699998,76.2787237390001],[-68.50057260399996,76.0859315830001],[-66.96085353399997,75.97002629100007],[-67.40790552599987,76.04730106800008],[-68.03833059199991,76.1081189840001],[-68.20642848699987,76.21441911800014],[-68.65719550599994,76.24303141500013],[-68.2360615319999,76.30719019000009],[-68.06981654099997,76.3969793170001],[-68.25129664699995,76.44294232100009],[-67.79344960299994,76.57395515600018],[-66.96427955299993,76.61589719300014],[-66.98705251399997,76.69094422800003],[-67.21844450599997,76.75239598400009],[-67.31349947999985,76.93297302400015],[-67.64436354099996,76.87583258400014],[-67.82596551999984,76.79188044800014],[-68.41403163299992,76.68706877200015],[-68.76116161499993,76.69119618800005],[-69.02394852899988,76.73905115600013],[-69.24871060399994,76.88768895400005],[-69.16665663399988,76.95489320900009],[-69.68328864699998,77.04207221100006],[-69.94708256299992,77.007790898],[-70.0381465769999,76.91259309700013],[-70.53201250299998,76.88846025600009],[-70.78335560499994,77.02689677500013],[-70.69493054999998,77.10549287600008],[-70.21121259299997,77.19976849900002],[-69.67735258399989,77.21927721100019]]],[[[-72.20639053599984,77.44879987200005],[-72.52749655299993,77.3874096400001],[-72.00834661499988,77.30294687800017],[-71.49804662699995,77.34880343200007],[-71.67444662899993,77.41823509400012],[-72.20639053599984,77.44879987200005]]],[[[-70.81443754599985,77.46102387200017],[-71.29137454299996,77.45325602700007],[-71.04638659999989,77.36934211200014],[-70.06916850299984,77.39296449400018],[-70.81443754599985,77.46102387200017]]],[[[-69.61397550499993,77.21748449000012],[-69.00623354499999,77.13517285900008],[-69.00132761699996,77.02689677500013],[-68.42780259699998,77.1236970280001],[-67.92944363499998,77.15709287700008],[-67.61383061399988,77.12260604000011],[-67.41539760599989,77.04404849600007],[-66.96755251899992,77.02290665400017],[-66.56858851199996,77.06180371400012],[-66.01754761199987,77.16157250200007],[-65.47576150699996,77.30371046900018],[-65.30818161399998,77.44648043200016],[-65.72940057899996,77.59543188000009],[-66.5377504839999,77.7227291850001],[-67.81100449299998,77.70312810500008],[-67.9989165369999,77.63487024400007],[-68.5067906349999,77.74951020400005],[-69.35034956199996,77.82452052600019],[-69.58613551599996,77.92494561700005],[-69.49456054199987,77.97852207200015],[-70.06063052899987,78.02400429000016],[-70.33945453899997,77.98065124300001],[-70.70004250499989,78.04690934900003],[-71.01764656299997,78.02842909700007],[-71.29553950999991,77.94673571500016],[-71.43749961399988,77.78799537700013],[-71.20223249899982,77.75826979600004],[-70.67028054599996,77.77909916000004],[-70.52084361699997,77.83771196500015],[-70.06665762099993,77.84715786700013],[-70.70861048599994,77.69381128400005],[-70.28332562699995,77.6557535880001],[-70.28778060799993,77.56909342600005],[-69.20666463099991,77.44851002600006],[-68.63695555599992,77.50797812000013],[-67.58111554299995,77.52047553800014],[-67.29777553199995,77.55990786600017],[-67.15610460399995,77.66742773500016],[-66.80973050199992,77.68047483800007],[-66.25139650799991,77.60242087900008],[-66.06417060699994,77.49712841700011],[-66.10194348699997,77.43740149000018],[-66.65666152699993,77.414908652],[-66.54526553099998,77.3321386990001],[-67.31443758199993,77.37851342300007],[-68.35834461499996,77.37184444500019],[-69.10166955899996,77.27100780300009],[-68.54055763499997,77.16516615900014],[-69.61397550499993,77.21748449000012]]],[[[-65.62390862799998,79.13642349100013],[-66.34751162399994,79.13891844800008],[-67.0066755549999,79.11251847000011],[-67.19332863699992,79.14615136000003],[-67.73083460699996,79.08308240000014],[-68.34055352299998,79.06223711000001],[-69.04695852999993,78.9722270360001],[-69.00279260599996,78.89529491200011],[-69.29499849099989,78.81527237900013],[-69.84333052699998,78.7994480160001],[-69.97084056499995,78.7527829440001],[-70.70029463299988,78.69917530900005],[-70.8088754829999,78.61498697000019],[-71.31527755099995,78.64166153900004],[-71.63500960699997,78.62386776400007],[-71.8861235469999,78.55942584800005],[-72.55221562399998,78.52026928500004],[-72.58555564899996,78.4185924410001],[-72.82166262999993,78.35080832500006],[-72.65638759299998,78.28664066500016],[-71.8355716189999,78.376604805],[-69.89682752199997,78.32969649000006],[-69.63365956599995,78.34629198800008],[-68.86785150799989,78.47981537000015],[-68.16154456899989,78.56089854900011],[-67.44195549899996,78.60606761900016],[-67.02470351999995,78.66410861100013],[-66.94494652599991,78.71529018800015],[-67.24548351999994,78.82776996400008],[-67.11199953299985,78.894440293],[-66.7204136119999,78.9510005370002],[-66.21054864399991,78.97575280000018],[-65.66873957299993,78.95561024900007],[-65.4763415349999,78.996864803],[-65.62390862799998,79.13642349100013]]],[[[-19.90831749499995,80.05841540600017],[-19.01890151099991,80.16288526800014],[-19.44168655099986,80.23843639100016],[-19.789442493999957,80.23565879600011],[-20.012481584999932,80.09203371100006],[-19.90831749499995,80.05841540600017]]],[[[-62.78638461999998,81.21906642500011],[-63.06334248199994,81.21573981500018],[-63.81221758699991,81.11461232100004],[-63.948886529999925,81.05015515000008],[-64.76082657199993,80.98765012500013],[-64.73416859899993,80.91209933800013],[-65.03250148899997,80.88432640400009],[-65.06333163699998,80.79375859900011],[-65.98638151699998,80.669299239],[-66.44470951499994,80.56457004100014],[-66.71584363099998,80.55428527800012],[-66.7886045859999,80.45651607700012],[-67.41972350599997,80.347896],[-67.50306661399992,80.20372072700013],[-67.08222148099998,80.13816385100006],[-67.06695551999996,80.05925594400009],[-66.38889358299997,80.10093009600013],[-66.10583453399994,80.02287613700014],[-65.7691576229999,80.0114769160001],[-65.22748551099994,80.08565508300006],[-64.95111857299992,79.95675415300019],[-65.04018350299998,79.88954319099997],[-64.19286361499996,79.89538722200012],[-62.60400060899997,79.95631276200015],[-62.14611852799999,80.01213288400004],[-61.608184577999964,80.01594044700005],[-61.211540513999864,79.97032059800011],[-60.49294251999993,79.99665905300003],[-59.61935860999995,80.18842308300003],[-59.531166570999915,80.27372520900019],[-60.005264617999956,80.40196195800007],[-60.77681360899993,80.5193858830001],[-61.576396545999955,80.70454145399998],[-62.02211363499998,80.95571876200017],[-61.67894762199995,81.05461097000011],[-61.30538547599997,81.00488633500004],[-60.823009629999945,80.840461055],[-60.30201751799996,80.81035376199998],[-61.03630459099992,80.98919977100013],[-61.25111751399993,81.1201663380001],[-61.61167564099998,81.07405162100008],[-62.21304651699984,81.19460467900007],[-62.78638461999998,81.21906642500011]]],[[[-20.773050450999904,81.7254808990001],[-20.81721151399995,81.626581482],[-20.206663459999902,81.66604331500008],[-20.773050450999904,81.7254808990001]]],[[[-18.585552589999963,81.64603805900003],[-18.30584143999988,81.66631790600013],[-18.835557436999864,81.80799084500012],[-19.14418447599985,81.74325824500005],[-18.585552589999963,81.64603805900003]]],[[[-19.748603514999843,81.87243376700008],[-19.885824489999948,81.97410926999999],[-20.478342566999913,82.16885625200013],[-20.745820496999954,82.06495233600009],[-20.245552472999975,81.89967243700016],[-19.748603514999843,81.87243376700008]]],[[[-51.241359548999924,81.98192304700018],[-51.84693562599995,82.1374671980002],[-52.54278161499991,82.2196876340002],[-52.558063499999946,82.2752482520001],[-53.07693448799989,82.32887214800019],[-53.345012561999965,82.19856775200014],[-53.16443652799995,82.10523794200003],[-51.93444051599994,81.9796805530001],[-51.241359548999924,81.98192304700018]]],[[[-46.00304758099986,82.64389692700013],[-46.61555046199993,82.67499613500007],[-47.559169531999885,82.64360674600005],[-46.997497528999986,82.38470735800001],[-45.55222356499996,82.19969679400015],[-45.07665650699988,82.05523150800013],[-44.73721658499994,82.09524386400017],[-45.0672265309999,82.21608559400005],[-44.461933594999834,82.34442158500019],[-44.43888453499994,82.39638100200011],[-44.962772593999944,82.50527617400013],[-46.00304758099986,82.64389692700013]]],[[[-47.56861157799989,82.78195274000018],[-47.84943349799994,82.86972819800008],[-48.413028476999955,82.86057247700006],[-48.29109961399996,82.78306652700002],[-47.56861157799989,82.78195274000018]]],[[[-39.570564524999895,82.99612595700006],[-39.277481556999874,83.08086297400007],[-40.11197260599994,83.16419853800016],[-40.36331151699994,83.08254321100009],[-39.570564524999895,82.99612595700006]]],[[[-32.52226253899988,83.6220110490001],[-33.688610568999934,83.60368318000019],[-34.08140951899992,83.56590024200005],[-34.813323506999836,83.59646418200009],[-35.199462531999984,83.5345098470001],[-36.53113153299989,83.54339097700006],[-37.21002160199993,83.449222809],[-37.95053056199998,83.48700591400006],[-38.07580950399995,83.39199737700005],[-38.79918250099996,83.43283250000019],[-38.85084553499996,83.26032019200005],[-38.70943846899996,83.2100391670001],[-37.798866560999954,83.17753565500016],[-37.82721751099996,83.12197403000005],[-38.65386946899997,83.07781212900016],[-38.67418250799983,83.03836488100012],[-39.44694855199998,82.95724381600002],[-40.55333747599997,82.96696397400012],[-41.569454476999965,83.13003071600019],[-41.97694354999987,83.22087344700014],[-42.65109650199997,83.27199417200012],[-43.231948478999925,83.20892487600014],[-44.26471361599994,83.162534898],[-45.13581447099989,83.1597568000002],[-45.48220047599989,83.10253287600017],[-46.49667747299992,83.04836030100012],[-46.88999157399991,82.96058517800009],[-46.04556260499993,82.84584631100006],[-43.800266492999924,82.8369641760001],[-42.66805661299992,82.85417842600015],[-41.603881467999884,82.82169016900008],[-40.723331524999935,82.74027875500002],[-40.13528452299994,82.71389336200014],[-39.86860253799995,82.62888058000016],[-40.011966609999945,82.55943332700014],[-40.605846578999945,82.56999368700014],[-41.379741496999884,82.72167696500014],[-42.57194853699997,82.77974042000005],[-44.21585449599985,82.76196307400016],[-45.60778451899989,82.78167831600018],[-45.66972359899995,82.72445305200006],[-44.57609159599997,82.55192498600019],[-44.43830852999997,82.48971064500017],[-43.73029352699996,82.40608691099999],[-43.83028460299994,82.33525027400015],[-44.70861049099989,82.25220573000013],[-44.793884620999904,82.18301764500006],[-44.51721559899994,82.11022886300003],[-44.92526659499998,81.98911086499999],[-44.522792581999965,81.93744045500011],[-44.289154574999884,81.80799084500012],[-45.134445537999966,81.78105727600018],[-45.95331959299995,81.96383959400009],[-46.39276550999995,82.09718075400019],[-47.60278359199998,82.17550980700003],[-47.942230553999934,82.28275692900007],[-48.76364147599992,82.3605361290002],[-49.12084952299989,82.46109885000004],[-49.61029047599993,82.50277350500005],[-50.370830507999926,82.51777375900008],[-51.10226052499996,82.50197320100011],[-50.864467607999984,82.37358356700008],[-50.67695957199993,82.17662443200015],[-50.11446362799995,82.0377284180002],[-49.43721356299994,81.92382874700007],[-49.82054850499992,81.86965583600016],[-51.0655554999999,81.93161201500016],[-51.91029761699997,81.92327872700008],[-52.76248554599994,82.03135012500007],[-53.02806849499996,82.01134436600012],[-52.930835568999896,81.86243750900007],[-53.5405575019999,81.675474129],[-53.81945761899982,81.69714252200009],[-53.581935604999956,81.80660313700008],[-53.49998456399993,81.944108594],[-53.568351557999904,82.12162724500007],[-54.07166657099992,82.31358070700014],[-54.501121594999915,82.36487024300015],[-55.34196461799996,82.29830569400008],[-55.349998504999974,82.24636086100014],[-56.08805458399996,82.25776058500009],[-57.07694246999995,82.18634341700005],[-58.589706511999964,82.10273644700004],[-59.373886527999844,82.01273240900014],[-59.41001152499996,81.97606258800016],[-58.468891603999964,81.86605480300005],[-58.3366585309999,81.75021639800013],[-57.81362156999995,81.65159291400005],[-58.43027852299997,81.64104747300013],[-58.748050553999974,81.70799323100005],[-58.84001159899992,81.85549477800015],[-60.06248854099988,81.944108594],[-61.21805157699998,81.8174528400001],[-61.453323552999905,81.73604058800015],[-60.7791675819999,81.50686678200009],[-61.30832249499991,81.35935081800011],[-61.0950166369999,81.22350682200005],[-60.45415459299994,81.32237656700016],[-59.81946950799994,81.32683171600013],[-59.293102583999826,81.42877527200011],[-58.9461746049999,81.36799507500007],[-58.205589537999856,81.36420327000013],[-56.9577715879999,81.24143722200017],[-56.04206458999994,81.26002342200002],[-55.73276548999996,81.20088507100013],[-55.258789483999976,81.22099711300012],[-54.19600657299992,81.20465391000016],[-53.33470147999998,81.30057691300016],[-52.81119949099991,81.26156502100014],[-52.462985560999925,81.17974171999998],[-52.10220346999989,81.181359595],[-51.31196249899995,81.2476031170001],[-50.77861059999998,81.2426888080002],[-49.829891476999876,81.34259589700014],[-49.82715260699996,81.43215485600012],[-50.15162261699993,81.57935934800014],[-49.328231553999956,81.64342776600017],[-48.56212258599987,81.37419064300008],[-47.959823497999935,81.3321956310001],[-46.74196649399988,81.39477676400008],[-46.50548551199995,81.43941140500004],[-46.065002585999935,81.34335060300009],[-45.18662657399983,81.41805498600002],[-45.0050735449999,81.46316270100004],[-44.91611858599998,81.60805512900004],[-43.994762520999984,81.71466070000002],[-43.88095454899991,81.78935804200006],[-43.263736510999934,81.85969830300007],[-43.13276256899991,81.98933197899999],[-42.24105061299997,82.12788366500013],[-41.957309611999904,82.19377581800012],[-42.38914459299991,82.30346458800005],[-42.05978055799994,82.35250207500019],[-41.24967950599995,82.26595540400018],[-39.8566554759999,82.22582167800005],[-38.77475361199993,82.10171335200005],[-38.57946750499991,81.97195830600003],[-38.025440467999886,81.92343865300012],[-37.6146314909999,81.95616478800014],[-37.7108074599999,82.04477843600012],[-36.84102658699993,82.07233813400012],[-36.688529592999885,82.00488879200014],[-37.12280655799998,81.94223305900016],[-37.32545448999997,81.80127593499998],[-36.47391146499996,81.75582439400011],[-35.09853352099992,81.8363813570001],[-34.85094048299993,81.78316314500006],[-35.86284658299985,81.731378238],[-36.20028356499995,81.65169148500007],[-36.14278052399993,81.53544119300011],[-35.69183346199998,81.48783952700006],[-34.84484046899996,81.5190300970001],[-34.29314058399996,81.61727270800003],[-34.00239951999998,81.72139019500003],[-33.620998449999945,81.7602507100001],[-32.61523460899991,81.44067724000007],[-31.775741574999927,81.38800133700005],[-30.874896529999887,81.35518484500011],[-29.88182255499993,81.36920827200004],[-27.80546956899991,81.47781326200015],[-27.35688251499994,81.43861026200011],[-28.80859545699991,81.27524613100002],[-29.62138760299996,81.12417976100011],[-29.92992059799991,81.02416689200004],[-29.74664659699988,80.79774134400003],[-29.45298745699995,80.75731844300003],[-29.223800574999927,80.64061737200018],[-28.518562495999902,80.59418950800011],[-28.013650562999942,80.61796511100005],[-26.955667463999816,80.4981893910001],[-27.49270857399995,80.35103938100013],[-26.27413944299991,80.30678511200006],[-25.590629603999957,80.168249184],[-25.42337744299988,80.02728602400003],[-25.06709660199988,79.87434361600015],[-24.988731506999898,79.78727223800018],[-24.32863450299982,79.62856894800018],[-23.861579601999892,79.58964875400011],[-23.262174450999964,79.58592534500013],[-21.544301548999954,79.64678215300017],[-21.171565522999913,79.69581176000014],[-20.862409584999966,79.789292612],[-20.46528657999994,79.98896899200014],[-20.043334532999893,80.23481993500008],[-19.597490540999956,80.28539131000008],[-19.08222159199994,80.24037428700007],[-18.31141255599988,80.210663458],[-17.428598492999924,80.22566471699997],[-16.90861556199991,80.25983052800007],[-16.617790511999885,80.32567758600004],[-16.607797438999967,80.40289234900007],[-16.125270550999915,80.4967865960001],[-16.21276454499997,80.53789681400019],[-17.04001446799998,80.56539431800019],[-17.53303750999993,80.62568719100005],[-17.86137543299992,80.56902619600015],[-18.547759593999956,80.5442903620002],[-18.891111517999946,80.58402645000012],[-20.12692859399982,80.643463531],[-20.05164351299993,80.6870767530001],[-19.365829488999907,80.64097695600009],[-18.67721959799991,80.61874278400018],[-17.996944502999952,80.72541004600004],[-17.06582050399993,80.73958535300011],[-16.638610488999916,80.70569363100003],[-16.004995436999934,80.727911877],[-15.938622498999905,80.81458779600018],[-15.054723482999975,80.867081644],[-14.69666048099998,80.91348754800003],[-15.140264492999961,81.08822894000008],[-14.949737463999952,81.13545777900009],[-13.975005438999972,81.15073329500012],[-13.668888444999936,81.27351325600011],[-13.19888344899988,81.32741174400013],[-13.113349479999954,81.40296269900017],[-12.60390645699988,81.4749134590001],[-12.165838524999856,81.60852887400006],[-12.534985587999927,81.64104747300013],[-13.16917546999997,81.78021824700011],[-13.910282561999963,81.8216181430002],[-14.768066584999872,81.91772471000013],[-15.663048488999948,81.9007862250001],[-15.99946354899987,81.92772012900019],[-16.883073556999875,81.91244444600005],[-17.784187492999877,81.73715437499999],[-18.06525852299984,81.5693716400001],[-17.967491500999927,81.47518771400019],[-18.395578597999872,81.44851348100013],[-18.994691556999953,81.5449109],[-19.49528144599998,81.56157378800009],[-20.305540580999946,81.45046763800013],[-20.19609253899995,81.59632029700009],[-20.76918756699996,81.57993149700013],[-21.448326578999968,81.41379714700008],[-21.759454442999925,81.24517521500013],[-22.090568451999957,81.20434109800004],[-23.032796461999908,80.93848322200017],[-23.579729557999883,80.86209223300011],[-23.90806044099992,80.88266293200013],[-23.005834560999915,81.16100297000014],[-22.231094579999876,81.4651929650002],[-21.973607542999957,81.73243922000006],[-22.031118462999927,81.95079282699999],[-22.301376501999982,82.08384313400012],[-23.514999472999875,82.04856353600013],[-24.03722154499991,82.00246273400012],[-24.21056550599991,81.70771830500018],[-24.922521511999946,81.69325130800019],[-25.135847485999932,81.64243635500009],[-26.54750046299995,81.49269147500007],[-26.9891605439999,81.40685391300008],[-27.5969274819999,81.50409036100018],[-26.865543564999882,81.55852193700008],[-25.317501600999947,81.77548800400012],[-25.238874486999975,81.99577984200016],[-27.370004551999955,82.02411620700019],[-28.997217447999958,81.99384077300004],[-30.782205588999943,81.86826729000006],[-31.71555347499998,81.82383046300009],[-32.41138454399987,81.7332629930001],[-33.05194852799997,81.67854090000003],[-33.049457593999875,81.81827560800014],[-32.77221659099996,81.85993601400008],[-29.240262464999944,82.13607798200019],[-28.010822507999876,82.18552132000019],[-26.163904507999916,82.14357023000014],[-25.068889490999936,82.15190301500007],[-23.696655598999882,82.29496533800011],[-23.04999545599992,82.28940998100006],[-22.518060601999878,82.326369312],[-22.3077544599999,82.42053831800013],[-21.398616527999934,82.55554194500002],[-21.364452560999894,82.62444018300005],[-21.798072552999884,82.6941621950001],[-24.025556450999943,82.86501287400006],[-25.13358655199994,82.89168677200013],[-24.7675285549999,82.98835878200003],[-25.188341501999957,83.16280898600013],[-26.611915556999975,83.0625210230001],[-28.26221053699993,83.07976528000017],[-28.06027758099998,83.13837825300016],[-26.868894481999973,83.14782499300014],[-26.03889244499993,83.20614761700017],[-25.6719474759999,83.27698341600012],[-26.09996248899995,83.36921603400009],[-27.432861449999848,83.4661297780001],[-28.39194144399994,83.46228550200016],[-28.613061581999887,83.5111773110001],[-29.856941545999973,83.57812256600005],[-30.84446150499997,83.5725687170002],[-32.52226253899988,83.6220110490001]]]]},"properties":{"objectid":359,"eco_name":"Kalaallit Nunaat High Arctic tundra","biome_num":11,"biome_name":"Tundra","realm":"Nearctic","eco_biome_":"NE11","nnh":1,"eco_id":418,"shape_leng":443.266127681,"shape_area":80.5619614613,"nnh_name":"Half Protected","color":"#6AFBEE","color_bio":"#9ED7C2","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":148332.5437391692,"percentage":1.7358671091571016}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[22.976662198000042,-20.34813747599992],[22.90851126800004,-20.296524612999917],[22.935055128000045,-20.245711855999957],[22.888567020000096,-20.128458965999982],[22.78390798000015,-20.013302782999915],[22.64970774400018,-19.95837660299992],[22.38618953800011,-19.94302051699998],[22.33539995900003,-20.003510050999864],[22.28553227599997,-19.89902733799994],[22.160650224000108,-19.86295444299998],[22.09401253200008,-19.663337555999874],[22.066696678000028,-19.494787773999917],[22.110876428000097,-19.348671940999964],[22.21313368200009,-19.209792968999864],[22.23552593100004,-19.033769277999966],[22.209730044000025,-18.942016993999857],[22.06827286400005,-18.7329584229999],[21.705458904000068,-18.93606721699996],[21.46724403600018,-19.136264542999925],[21.100210653000033,-19.284201467999935],[20.99580403200008,-19.305142262999937],[20.81416561600014,-19.247149435999972],[20.60516085900008,-19.245636265999906],[20.533870966,-19.166623889999926],[20.008526739000047,-19.165696417999925],[20.005324423000104,-19.220901249999883],[19.92508961600015,-19.262089755999966],[19.84994402500007,-19.25735866499997],[19.777006768000092,-19.340915172999928],[19.51557671600017,-19.34230900499989],[19.39326124900009,-19.16400027599991],[19.156859941000164,-19.167935610999848],[19.13102517400017,-19.24259058699988],[19.006681186000037,-19.313991018999957],[18.913384895999968,-19.305769049999924],[18.815736870000137,-19.33522199299989],[18.681481484000074,-19.343449608999947],[18.664077903000077,-19.47598268099989],[18.41553044800014,-19.680709865999916],[18.2231084390001,-19.739057529999968],[18.056799763000072,-19.83467837099994],[17.74810226500017,-19.862707087999922],[17.671354673000167,-19.932497566999928],[17.42002047700015,-20.092011563999904],[17.289493314000083,-20.20489992099982],[17.151910629000156,-20.282510665999837],[17.060188838999977,-20.360121411999955],[17.056661078000047,-20.430676634999884],[17.10604973400018,-20.50475961899997],[17.190716002000045,-20.536509469999885],[17.34593749300018,-20.465954245999853],[17.586430427000096,-20.272581190999915],[17.779968568000072,-20.23936044499993],[18.03751185600015,-20.30316710099993],[18.22891836000008,-20.383341802999894],[18.493383305,-20.564670327999977],[18.599603425,-20.713218646999962],[18.66489628700009,-20.856095315999937],[18.823418975000095,-21.027779505999888],[18.925973415000158,-21.108512724999912],[19.154529055000012,-21.2484542549999],[19.409527055000183,-21.385737880999955],[19.77213365500006,-21.498391010999853],[20.009475042000076,-21.4534366179999],[20.127831179999987,-21.44836240199993],[20.213961349000158,-21.50329996599993],[20.335859338000148,-21.517081194999946],[20.53951305700008,-21.59550649499994],[21.030926574000034,-21.737014910999903],[21.488473505000172,-21.52427814899994],[21.586571472,-21.48802882399991],[22.024219557000094,-21.250273762999882],[22.09372726700019,-21.163602162999894],[22.101513102000013,-21.10714657099993],[22.16987991900004,-21.044731404999823],[22.25491151900013,-20.86554450199992],[22.42012538400013,-20.842564494999976],[22.44790130000007,-20.636387120999927],[22.633481153000105,-20.564581183999962],[22.757315186000028,-20.482389212999976],[22.804732962000116,-20.48032025799995],[22.90831704400017,-20.370752626999888],[22.976662198000042,-20.34813747599992]]]},"properties":{"objectid":360,"eco_name":"Kalahari Acacia woodlands","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Afrotropic","eco_biome_":"AF07","nnh":1,"eco_id":47,"shape_leng":17.2540923739,"shape_area":9.20273673587,"nnh_name":"Half Protected","color":"#FBA141","color_bio":"#FEAA01","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":106955.66489411693,"percentage":0.49888327938514665}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[18.2231084390001,-19.739057529999968],[18.077591564000045,-19.739036073999955],[17.973632558000077,-19.718244284999855],[17.798981428000047,-19.780619675999958],[17.512054572000125,-19.730719353999973],[17.211884449000138,-19.830615140999896],[17.16706666000016,-19.766589728999975],[17.192676825000035,-19.632136362999972],[16.840537056000073,-19.683356692999894],[16.795719267000095,-19.805004975999964],[16.654863358000057,-19.805004975999964],[16.61644810900009,-19.843420222999896],[16.590837943999986,-19.965068505999852],[16.398761701000183,-19.97787358799991],[16.257905787000027,-20.112326952999865],[16.168270204000066,-20.105924410999933],[16.00180411800011,-20.189157445999967],[15.891383259000122,-20.187301681999884],[16.01344078900007,-20.303537245999905],[15.926563206000083,-20.35421583599998],[15.93380300400014,-20.45557301699995],[15.846925421000151,-20.607608787999823],[15.745568240000068,-20.730685363999896],[15.760047837000059,-20.904440530999977],[15.618356139000014,-20.98267876199992],[15.770907535000106,-21.199462324999843],[16.02430048700012,-21.35330804599988],[16.23244469700012,-21.73339747299991],[16.07859897700007,-21.860093948999918],[16.1781462080001,-21.950591431999953],[16.4586884040001,-22.00488992199996],[16.68493211100008,-22.113486900999874],[16.531086390000098,-22.25828287299987],[16.40438991500008,-22.213034131999905],[16.350091425000187,-22.249233124999932],[16.368190922000167,-22.37592960099994],[16.196245704000034,-22.54787481799997],[15.997151242000086,-22.70172053899995],[16.060499480000033,-22.90986474899995],[16.313892432000046,-22.98226273599994],[16.350091425000187,-23.099909462999904],[16.411516799000026,-23.19643505199997],[16.74395755,-22.925245718999975],[16.832665583000107,-22.942987324999933],[17.040722408000022,-23.350144635999925],[17.199031594000132,-23.37550202899996],[17.31417722599997,-23.456874608999954],[17.36770489700018,-23.54488159999994],[17.482856055000127,-23.671462480999878],[17.71477651300006,-24.063716211999974],[17.76079580700008,-24.25699724699996],[17.880445970999972,-24.303016540999977],[18.000096135000092,-24.385851269999876],[18.018503853000084,-24.56072458699998],[18.138154016999977,-24.533113010999955],[18.294267468000044,-24.69568341099989],[18.332350501,-24.713711866999972],[18.861864906999983,-25.244560089999936],[19.049105175000022,-25.48864474499993],[19.184684807000053,-25.68348840099992],[19.439008213000136,-25.98127829599997],[19.56780941700015,-26.18733402499987],[19.729606179000086,-26.41243410899989],[19.62152577100005,-26.37983468999994],[19.4173430030001,-26.21162751999998],[19.347640037000133,-26.237481623999884],[19.42574570700009,-26.313082321999957],[19.642976997000176,-26.473411666999937],[19.729370820999975,-26.573879153999883],[19.80618905100016,-26.59117395199985],[19.999443054000096,-26.588373964999903],[20.028463364000174,-26.650806426999964],[20.197708130000137,-26.715896605999944],[20.285429001000125,-26.81946372999994],[20.30176544200009,-26.920383452999943],[20.345016479000094,-26.97114372299984],[20.25417137100004,-27.039724349999915],[20.13660812400002,-27.019042968999884],[20.17393684400008,-27.14210128799988],[20.075336456000116,-27.29619216899988],[20.113073349000103,-27.47088050799988],[20.278044675,-27.565646723999976],[20.430734900000118,-27.741489500999933],[20.48781013500019,-27.918140410999968],[20.650718689000144,-28.07390594499998],[20.733898163000106,-28.04235076899994],[20.650122299000145,-27.951716851999947],[20.63345035100008,-27.847961350999867],[20.770215988000075,-27.906032561999893],[20.844761327000015,-27.909699726999918],[20.882890701000065,-27.836305617999926],[21.262161255000137,-28.10892105099998],[21.320327759000122,-28.234056472999953],[21.41898727400013,-28.359767913999917],[21.545629501000064,-28.38177299499995],[21.71558380100015,-28.45536231999995],[21.766090393000013,-28.51821327199997],[21.77784919700008,-28.637405395999963],[21.823820114000057,-28.669527053999957],[21.886350632000074,-28.785953521999943],[22.056930542000032,-28.840639113999828],[22.181861877000188,-28.96786308299994],[22.26510810900004,-28.9881820679999],[22.386854172000085,-29.12234878499993],[22.44397735600012,-29.148096084999963],[22.489883423000094,-29.233322143999942],[22.589517593000153,-29.191738128999873],[22.597534180000082,-29.09487914999994],[22.722980499000187,-29.111581801999932],[22.824632645000065,-29.075618743999883],[22.939052582000045,-29.07708167999988],[22.991308212000035,-29.12892150899995],[22.98367118800013,-29.2121620179999],[23.048458099000072,-29.284481048999965],[23.096473694000167,-29.166311263999944],[23.16017913800016,-29.091325759999904],[23.236064911000028,-28.94198226899988],[23.31522560100018,-29.099843978999957],[23.40213012700019,-29.120443343999852],[23.436258316000192,-29.198020934999874],[23.55859756500007,-29.10607719399991],[23.589281082000184,-29.04414558399992],[23.74102020300012,-29.05115127599987],[23.784172058000138,-29.279674529999966],[23.848812103000114,-29.355068206999874],[23.89790916400017,-29.503658294999923],[24.09360885600006,-29.55700492899996],[24.008563994999975,-29.464813231999926],[24.166194916000165,-29.44872283899997],[24.155513763000044,-29.366003035999938],[24.014854431000174,-29.368373870999903],[23.97059822099999,-29.29417228699998],[23.94422531100014,-29.10245895399987],[24.0491199490001,-29.10288238499993],[24.142555237000067,-29.065660476999938],[24.295623779000096,-29.123773574999973],[24.261438370000178,-29.214170455999977],[24.312334061,-29.259748458999923],[24.38981819200012,-29.24075698899992],[24.47261810300006,-29.303806304999966],[24.542505264000056,-29.27418136599988],[24.57332420300014,-29.178983687999903],[24.524362564000114,-29.125570296999967],[24.520572662000063,-29.03634262099996],[24.727426529000127,-29.01333427399993],[24.865386963000162,-29.05221939099988],[24.90668869000001,-29.008197783999947],[25.108505249000018,-29.057546615999968],[25.126773834000176,-28.925821303999953],[25.025676727000132,-28.905277251999905],[25.03898429900005,-28.843221663999884],[25.13643073999998,-28.811082839999926],[25.23795318600014,-28.726585387999876],[25.313667297000165,-28.818288802999916],[25.36973762500014,-28.762773513999946],[25.297573090000185,-28.68105697599998],[25.317651749000163,-28.502687453999897],[25.227506638000023,-28.451585769999838],[25.293634415000156,-28.349292754999965],[25.437244415000123,-28.263641356999983],[25.529823303000114,-28.27729415899995],[25.588180542000032,-28.03929901099997],[25.492380142000115,-28.004114150999953],[25.44138526900008,-27.94915199299993],[25.49938201900011,-27.89608192399993],[25.604120255000055,-27.996231078999983],[25.705694199000163,-27.957798003999926],[25.885126114000116,-28.00712585399998],[26.003068924000104,-28.000473021999937],[26.07097672500015,-27.915480979999984],[26.23778152500006,-27.92875099199989],[26.229742050000027,-27.771078109999905],[26.27510643000005,-27.73591995199996],[26.22065925600009,-27.610443114999953],[26.134880066000107,-27.588191985999913],[26.025385651000192,-27.669664495999882],[25.74331092800014,-27.53348731999995],[25.817411423000067,-27.44583702099993],[25.911684036000167,-27.452543258999924],[25.96347236600019,-27.3614978789999],[25.793066025000087,-27.36040115399993],[25.770790100000056,-27.259378432999938],[25.67787933300019,-27.21595001199995],[25.564287186000172,-27.260068892999925],[25.55356407200003,-27.36906623799996],[25.46822547900001,-27.33458900499994],[25.461912155000107,-27.20191001899991],[25.415111542000147,-27.073205947999952],[25.341508865000037,-27.142889022999952],[25.236118317000148,-27.05434417699996],[25.239675522000027,-26.948183059999963],[25.185146332000045,-26.86424827599984],[25.110660553,-26.844373702999974],[25.23854255700013,-26.69215393099995],[25.120014191000166,-26.62388229399994],[25.08985900900018,-26.51296615599989],[25.213333130000024,-26.450893401999963],[25.321422577000078,-26.45009231599994],[25.286283493000155,-26.145486831999904],[25.355491638000103,-26.115306853999982],[25.38534545900012,-26.041887282999937],[25.4599437710001,-25.98815154999994],[25.40275764500018,-25.94131660499994],[25.54614067099999,-25.894371032999913],[25.574045181000088,-25.82956695599995],[25.703815460000044,-25.759037017999958],[25.74960136400017,-25.706899642999872],[25.842975616000047,-25.72693252599987],[25.84715080300009,-25.606346129999963],[25.674379349000162,-25.615942000999894],[25.735279083000023,-25.360385894999865],[25.69029617300015,-25.37393951399997],[25.58155441300005,-25.637720107999883],[25.342472076000092,-25.768367766999972],[25.19741685000008,-25.76033148399995],[25.17432402000003,-25.654054616999872],[25.082891576,-25.66589444199991],[25.07773578600012,-25.601627031999953],[24.89010169200003,-25.404524597999966],[24.707844366000188,-25.366166103999944],[24.650941439000178,-25.294186411999874],[24.661790054000107,-25.237050332999956],[24.592009606000147,-25.19890618399984],[24.657387866000192,-25.108446302999937],[24.785132005000037,-25.065127695999877],[24.862116403000073,-24.925054574999933],[24.688984569000183,-24.841098444999886],[24.573597017000168,-24.8530462679999],[24.424011569000186,-24.83700225599989],[24.350185624000062,-24.79220736499991],[24.381458442000167,-24.714562444999956],[24.478883551000138,-24.699636347999956],[24.542756046000022,-24.737241270999846],[24.631663509000077,-24.71657731799985],[24.77327937200016,-24.767910676999918],[24.964279313000134,-24.742410091999943],[25.046381577000147,-24.763308815999835],[25.079403825000043,-24.676627557999836],[25.225795039000047,-24.705604405999907],[25.225273231000017,-24.596585927999968],[25.27980483700003,-24.580629851999902],[25.33265326500009,-24.44601505099996],[25.405408288000046,-24.381346768999947],[25.508328547000133,-24.360851844999956],[25.45799999800016,-24.281812426999977],[25.546692422000092,-24.196620855999868],[25.516499605000092,-24.105465429999867],[25.64053313200003,-24.047497716999942],[25.756757162000156,-24.10612657699994],[25.826887678000162,-24.02172394999991],[25.858419061000063,-23.90344715799995],[26.011253519000093,-23.85684606199993],[26.17645648200005,-23.702954460999877],[26.049707709000188,-23.70342560099988],[26.07095573400011,-23.58191728099996],[25.931333219000123,-23.604047861999902],[25.841975756000124,-23.58941068699994],[25.72745674400005,-23.784482177999905],[25.78363183700003,-23.522070020999877],[25.642565886,-23.488209852999944],[25.630907779999973,-23.407019202999948],[25.851192245,-23.182536209999967],[26.006117856000174,-23.237661011999876],[26.08190876200007,-23.22979965199994],[26.078931654000087,-23.117216984999914],[26.145216499000128,-23.070350135999945],[26.002677778000077,-23.00317125999993],[26.00138531099998,-22.933568068999875],[26.076676799000154,-22.90921793699988],[26.068279330000166,-22.8341818909999],[26.30198004900018,-22.84614193599998],[26.333295324000176,-22.865624589999925],[26.488623924000137,-22.82163007899993],[26.442683256000066,-22.780797860999883],[26.342278944000043,-22.81997189699996],[26.283129124000027,-22.74241905799994],[26.26881007100019,-22.647390805999862],[26.35495383300008,-22.588637303999917],[26.380028270000082,-22.508274703999973],[26.470322667000175,-22.497240958999953],[26.521763174000114,-22.434172815999943],[26.651393407000057,-22.41275320299991],[26.7048850220001,-22.31030633399996],[26.822696740000083,-22.198217770999975],[26.885137336000128,-22.109470395999892],[26.773132660000044,-22.075814260999948],[26.720634315000154,-22.09873491299993],[26.509280442999966,-22.067377369999917],[26.499121867000042,-21.974686169999927],[26.37692126100012,-21.934932375999892],[26.35819843700017,-21.80574672599988],[26.420541644000025,-21.66614365399994],[26.384489628000097,-21.550245617999963],[26.32711268600019,-21.530421032999982],[26.320787189000043,-21.432857085999956],[26.157793097000138,-21.410149580999928],[25.8815557260001,-21.45298620899996],[25.669237270000053,-21.443187213999977],[25.41498374200006,-21.51846871899994],[25.316294907000156,-21.522549576999893],[25.028329785000096,-21.41166536999998],[24.877658407000126,-21.411113804999843],[24.81652837600012,-21.37794300799993],[24.70801379200003,-21.41869743799998],[24.617015296000034,-21.484245390999945],[24.54024296700004,-21.39342442399993],[24.508611026000153,-21.299501471999918],[24.39905119700012,-21.138728632999914],[24.336420479000026,-21.00147877099988],[24.382418851000125,-20.697041327999898],[24.495639595000057,-20.45951621099988],[24.46970693700007,-20.393585970999823],[24.390977347000046,-20.422377102999917],[24.148603755000124,-20.261364019999974],[23.992648916000064,-20.35093480499995],[23.868820462000144,-20.33295061699988],[23.81560632900016,-20.234092457999907],[23.695244141000103,-20.22729834199987],[23.600329951000163,-20.18619989799987],[23.341759060000072,-20.162875571999905],[23.233083164000107,-20.238583803999916],[23.16152812200005,-20.31976928599994],[22.993241524000098,-20.34633710299994],[22.976662198000042,-20.34813747599992],[22.90831704400017,-20.370752626999888],[22.804732962000116,-20.48032025799995],[22.757315186000028,-20.482389212999976],[22.633481153000105,-20.564581183999962],[22.44790130000007,-20.636387120999927],[22.42012538400013,-20.842564494999976],[22.25491151900013,-20.86554450199992],[22.16987991900004,-21.044731404999823],[22.101513102000013,-21.10714657099993],[22.09372726700019,-21.163602162999894],[22.024219557000094,-21.250273762999882],[21.586571472,-21.48802882399991],[21.488473505000172,-21.52427814899994],[21.030926574000034,-21.737014910999903],[20.53951305700008,-21.59550649499994],[20.335859338000148,-21.517081194999946],[20.213961349000158,-21.50329996599993],[20.127831179999987,-21.44836240199993],[20.009475042000076,-21.4534366179999],[19.77213365500006,-21.498391010999853],[19.409527055000183,-21.385737880999955],[19.154529055000012,-21.2484542549999],[18.925973415000158,-21.108512724999912],[18.823418975000095,-21.027779505999888],[18.66489628700009,-20.856095315999937],[18.599603425,-20.713218646999962],[18.493383305,-20.564670327999977],[18.22891836000008,-20.383341802999894],[18.03751185600015,-20.30316710099993],[17.779968568000072,-20.23936044499993],[17.586430427000096,-20.272581190999915],[17.34593749300018,-20.465954245999853],[17.190716002000045,-20.536509469999885],[17.10604973400018,-20.50475961899997],[17.056661078000047,-20.430676634999884],[17.060188838999977,-20.360121411999955],[17.151910629000156,-20.282510665999837],[17.289493314000083,-20.20489992099982],[17.42002047700015,-20.092011563999904],[17.671354673000167,-19.932497566999928],[17.74810226500017,-19.862707087999922],[18.056799763000072,-19.83467837099994],[18.2231084390001,-19.739057529999968]]],[[[26.372417746999986,-19.360344708999946],[25.830801979000114,-18.83850334799996],[25.709668610000108,-18.873071241999924],[25.6012583160001,-18.85388932199993],[25.53621582000011,-18.880784468999877],[25.391769252000074,-18.859267652999847],[25.302876677000143,-18.80457200099994],[25.204392126000073,-18.81793042399994],[25.05375651700018,-18.92775233599997],[24.90711695800013,-18.855892527999913],[24.904069541000126,-18.794219351999914],[24.750309786000173,-18.744274308999934],[24.71808095500012,-18.69304982299991],[24.569041537000032,-18.64592617699998],[24.506937873000027,-18.698219929999937],[24.557211535000135,-18.817542853999953],[24.54479521500008,-18.871799845999817],[24.279442781000114,-19.063574484999947],[24.165586678000125,-19.108726460999947],[24.07161925300005,-19.188830140999983],[23.95952013200008,-19.243388714999924],[23.88116700100005,-19.33742126999988],[23.895661105000045,-19.42893999699993],[23.85495249100012,-19.60336569599997],[23.684301499000128,-19.825299115999883],[23.45746281200013,-20.08133990799996],[23.63365119399998,-20.09255587699994],[23.682589066000105,-20.136743748999947],[23.839816738000025,-20.134577547999868],[23.922983425000098,-20.208079880999946],[23.95412484300016,-20.278227600999912],[24.042463849,-20.203354782999952],[24.18413394400011,-20.1679087039999],[24.30132578900009,-20.222926703999917],[24.299047326000164,-20.265180713999825],[24.406964912999968,-20.35531163199994],[24.507278386,-20.34254801399993],[24.54020196900018,-20.450233012999888],[24.43241522600016,-20.643070040999874],[24.381808132000117,-20.841035096999974],[24.38653468500013,-20.952293973999872],[24.58988821500003,-20.949534410999888],[24.529309952,-20.886953681999955],[24.528445310000052,-20.806879469999956],[24.579912434,-20.73214470499994],[24.711668476000057,-20.710133408999923],[24.840439366,-20.654862853999873],[24.886663247,-20.57806635599991],[24.841913932000182,-20.52570486299993],[24.798436903000095,-20.36810828399996],[24.70809902700006,-20.22933975099994],[24.60197997400013,-20.169717662999915],[24.627798261,-20.00420699199998],[24.502141601000176,-19.95742602399997],[24.59112616900012,-19.841301231999978],[24.72926846700011,-19.726529536999976],[24.7058871320001,-19.688903548999917],[24.5993298840001,-19.742783193999912],[24.44107731500003,-19.87118660899995],[24.398707672000057,-19.866136163999954],[24.302775485000154,-19.940990652999915],[24.268515203000163,-19.892569392999917],[24.30809330700015,-19.748939451999945],[24.261947080000027,-19.59755076899995],[24.310100047000105,-19.55881392999993],[24.25090836300012,-19.383121917999915],[24.38669223100004,-19.347317724999982],[24.448934356000052,-19.262175771999978],[24.51614044900009,-19.268091595999977],[24.588305985000034,-19.398096155999895],[24.653194670000175,-19.38587415599983],[24.707421784000076,-19.31254824599995],[24.653197430000034,-19.120138499999882],[24.76888800500018,-19.263315895999824],[24.90213319000003,-19.071585119999952],[24.965328507000038,-19.13631736899987],[24.89270767900007,-19.231139088999896],[24.888952902000028,-19.32155501699998],[24.839836850000097,-19.40547525799991],[24.853507578,-19.484864140999946],[24.91623826800003,-19.49977096999993],[24.923761849000186,-19.601663799999983],[25.083122931000105,-19.589059300999907],[25.221682204,-19.53498260799995],[25.347451491000015,-19.458215091999932],[25.421678369,-19.544573053999898],[25.557209415000102,-19.59951635899995],[25.71258702000017,-19.45519847099996],[25.728863592000096,-19.522666122999965],[25.95589309800016,-19.519766035999908],[26.102394511000114,-19.48374602199982],[26.372417746999986,-19.360344708999946]]],[[[23.960188390000155,-19.185502976999942],[23.976251431000037,-18.99461474599991],[24.052567352000096,-18.63950796299997],[23.892421219000028,-18.572767942999974],[23.823154529000135,-18.612644969999906],[23.85644767600013,-18.680920437999873],[23.802880669000047,-18.81486528899984],[23.849177154000017,-18.889663888999962],[23.79453982200016,-18.94834971399996],[23.890844439000148,-18.992885439999895],[23.92786404300017,-19.05551351399987],[23.905643032000057,-19.114609076999955],[23.960188390000155,-19.185502976999942]]],[[[24.063983066000162,-18.612728805999836],[24.07596473500007,-18.53594189699993],[24.018055661000176,-18.470959377999975],[23.911929843,-18.54913880599986],[24.063983066000162,-18.612728805999836]]]]},"properties":{"objectid":361,"eco_name":"Kalahari xeric savanna","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Afrotropic","eco_biome_":"AF13","nnh":2,"eco_id":97,"shape_leng":94.5683796276,"shape_area":60.9005228902,"nnh_name":"Nature Could Reach Half Protected","color":"#E38454","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":688632.4778554996,"percentage":2.6102183821159675}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[12.146704565000107,-15.19113742099995],[12.058190581000133,-15.229342707999933],[12.016079564000108,-15.57035071599995],[11.91864044200014,-15.687643045999891],[11.8756795,-15.78540688299995],[11.78507950900007,-15.778917444999877],[11.732330516000161,-15.880311819999918],[11.809550475000094,-16.018712128999937],[11.794099442,-16.105317472999957],[11.832229558000108,-16.471473536999895],[11.831080567000186,-16.694729551999956],[11.760869555000113,-17.019679509999946],[11.761501600000088,-17.314174139999977],[11.741666861000056,-17.5847984049999],[11.807427820000044,-17.967693732999862],[11.86011197199997,-18.14378195499995],[11.963396529000022,-18.263975923999908],[12.029907363000177,-18.487594756999954],[12.32044591400006,-18.7317378809999],[12.465906950000033,-18.926722268999924],[12.478859399000157,-18.996415055999933],[12.571728079000138,-19.083995509999966],[12.694502982000074,-19.305312518999926],[12.70619917300013,-19.3810199859999],[12.859053410000115,-19.645895868999958],[12.891583933999982,-19.730970590999902],[13.033896520000042,-19.988103447999833],[13.051283617000081,-20.07803812999998],[13.143007690000161,-20.15644721299998],[13.237129428000117,-20.326033971999948],[13.245877632000088,-20.45777732099998],[13.347695676000171,-20.657515899999908],[13.390997890000108,-20.612338670999918],[13.56752558300002,-20.582291403999932],[13.544990133000113,-20.450834611999937],[13.717761917000075,-20.503417328999888],[13.706494192000093,-20.428299161999973],[13.578793308,-20.41327552799993],[13.488651507000156,-20.311866002999977],[13.522454682000046,-20.244259652999972],[13.59757284900013,-20.26303919399993],[13.616352391000191,-20.36069281099998],[13.770469533000153,-20.39568253199991],[13.856730525000046,-20.36069281099998],[13.807903717000045,-20.07524377699997],[13.864242342000068,-19.958810617999973],[13.871754158999977,-19.872424725999963],[13.807903717000045,-19.872424725999963],[13.650155566000137,-19.789794742999902],[13.6238642080001,-19.680873399999882],[13.556464985000048,-19.58131421199988],[13.37221834900015,-19.53063706699993],[13.278320640000175,-19.538148882999906],[13.210714290000112,-19.436739357999954],[13.199446564000084,-19.324062106999975],[13.124328398000046,-19.30152665699984],[13.01540705500014,-19.16255804799988],[13.08676931400015,-19.098707606999938],[13.019162964000088,-19.06490443099983],[12.955312522000156,-18.940959455999916],[12.92526525500017,-19.087439880999966],[12.831367546000024,-18.99354217299998],[12.720195729000011,-18.80701823399994],[12.741206967000153,-18.764995757999827],[12.854667651000057,-18.82382722499989],[12.926105860000177,-18.80281598699986],[12.749611462000189,-18.693557548999934],[12.732802471000014,-18.546478883999953],[12.627746282000146,-18.504456407999953],[12.652959767000084,-18.445624941999938],[12.539499082000077,-18.327962008999975],[12.623544034000076,-18.327962008999975],[12.636657072000048,-18.219361754999966],[12.594128301000126,-18.15554055799987],[12.560510320000049,-18.19349008699993],[12.428867633000038,-18.184627920999958],[12.442847388000075,-18.306950770999947],[12.308375465000097,-18.273332790999973],[12.26635298900004,-18.185085590999904],[12.298713363000047,-18.11389276899996],[12.236937256000033,-18.016995687999895],[12.236937256000033,-17.83209679399988],[12.358802436000076,-17.77326532799998],[12.29997097000006,-17.676613632999874],[12.152892304000034,-17.72704060399991],[12.19491478000009,-17.575759690999973],[12.186510285000054,-17.449692263999964],[12.148690057000067,-17.302613597999937],[12.333884449000095,-17.03022186599992],[12.366541978000043,-16.952885595999874],[12.403861145000121,-16.74425366299988],[12.406457481000189,-16.63802562199993],[12.455046057000175,-16.539916694999874],[12.439838945000133,-16.33571901499994],[12.479525798000111,-16.20896633199993],[12.419810067000071,-16.10493973399997],[12.400522998000042,-15.917768584999976],[12.409053817000029,-15.722568434999971],[12.387357035000036,-15.597230101999969],[12.294404925000038,-15.369838394999874],[12.146704565000107,-15.19113742099995]]]},"properties":{"objectid":364,"eco_name":"Kaokoveld desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Afrotropic","eco_biome_":"AF13","nnh":1,"eco_id":98,"shape_leng":16.8954004388,"shape_area":2.82985101842,"nnh_name":"Half Protected","color":"#DE5245","color_bio":"#CC6767","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":33338.26109790105,"percentage":0.12636659574424403}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[71.87159754100003,36.58280340900012],[71.94050550300011,36.57184474200017],[72.091674635,36.7295182310001],[71.87159754100003,36.58280340900012]]],[[[75.42454565200006,36.82864043900008],[75.38220262400006,36.920885295000176],[75.10752061600004,36.99359294100003],[75.02609260600019,37.14542172900019],[74.88600150000008,37.240615842000125],[74.83735662200007,37.31908235800006],[74.68426551900018,37.397674770000094],[74.41577958100015,37.340928950000034],[74.24602558999999,37.25605363100016],[74.11871353300006,37.224228383000025],[73.86408254600019,37.033257112000115],[73.75798760000004,37.043868937000184],[73.60945155900015,36.9908188660001],[73.45030956000016,36.958993450000094],[73.25933862500011,36.9908188660001],[72.97287752800008,36.94838179300007],[72.78491251100002,36.99638478500009],[72.74584161000018,36.96248853600008],[72.79028363499998,36.87899036400006],[72.87100253600005,36.91444665200004],[72.94910460700015,36.813111790000164],[72.72155756000012,36.77407257300007],[72.61393761200014,36.77733045100018],[72.54777556200008,36.715842653000095],[72.37254349400013,36.74416191900008],[72.33233651000012,36.62695055800009],[72.27191958400005,36.56735070000008],[72.26417554400007,36.46802196300018],[72.14955855000005,36.48998254900016],[72.02822849000006,36.472317856000075],[71.98945648800014,36.40212461300018],[72.02613049900009,36.34044973100009],[71.93421153200006,36.1891850450001],[71.86254860600013,36.17300746900003],[71.7695926290001,36.22274635300016],[71.75086963700011,36.329815108000105],[71.70557349700005,36.37055115700008],[71.82494353300007,36.487938538000094],[71.91934153200003,36.533538606000036],[71.86911750400009,36.58117866099997],[71.66107950500009,36.51299707600009],[71.48538257700005,36.511161942000115],[71.43847660800009,36.469323002000124],[71.42952758600006,36.367026064000186],[71.35720064600002,36.342093925000086],[71.2555466,36.20614180300015],[71.4008336490001,36.08867462600011],[71.59197959800002,36.04276141100007],[71.8192515500001,36.055594272],[71.85975659400003,35.9618272620001],[72.01139058700016,36.05116125100017],[72.09599248900008,35.955399684000156],[72.19081159500013,35.94082372200012],[72.22530363000004,35.88668702100017],[72.21708651500006,35.76241809700019],[72.2846525330001,35.749338305000094],[72.4420925030002,35.780446733000076],[72.67106648400011,35.79337816600008],[72.87993663900005,35.771046932000104],[73.04016862000014,35.79057827500014],[73.10648355600006,35.774888861000136],[73.338668644,35.781148633999976],[73.34765655900003,35.784497372000146],[73.6085355840001,35.82475665800018],[73.65119963900008,35.82528354500016],[73.96704064800008,35.80755699300005],[74.23988349900009,35.68029003100014],[74.4544825160001,35.62574110800006],[74.54116849400015,35.55479299100017],[74.55986064100011,35.461488327000154],[74.54247255000018,35.32982757100018],[74.36685960900007,35.07600392900008],[74.39498156500002,35.0221751790001],[74.63279761600006,34.97318832000013],[74.85919164700005,34.911068024000144],[75.07877353800018,34.718244017000075],[75.11524152300018,34.653349814000194],[75.26956962700018,34.63178518900003],[75.36583762900005,34.549302400000045],[75.35994749800005,34.497648754000124],[75.54859161700011,34.25789816000014],[75.69029255200013,34.2253792250001],[75.7215575530002,34.153470207000055],[75.90454858200007,34.00663116599998],[75.97818762400004,34.01348605400017],[76.05155962000003,34.07105531200017],[76.14060258900014,33.982171934000064],[76.26328263800013,33.978482891000056],[76.21483657900018,33.90042507600009],[76.34243060300008,33.80775777200006],[76.40296957000004,33.72492311100012],[76.42066963400015,33.61731825000004],[76.62915757400009,33.57514738600008],[76.56857250700006,33.48662208300004],[76.60361456200019,33.45860791900009],[76.83229065100016,33.371502343000145],[76.80432158100007,33.27768202400017],[76.98655656100016,33.268660582000166],[76.99377455300015,33.207318126000075],[77.14082364500007,33.09906467300016],[77.00984953500006,33.040102175000186],[77.06292760100007,32.999892509000176],[77.301315634,32.915182984000126],[77.40321359200016,32.91518600100011],[77.55850963900019,32.956135789000086],[77.70446757500008,33.03219150200016],[77.76175654200006,33.020022991000076],[77.96742263000016,32.809969312000135],[78.0413436400001,32.663263878],[78.24681057300012,32.77989135500002],[78.32832357600017,32.62373314600006],[78.2447665630001,32.533697927000105],[78.39409653799999,32.52216610500005],[78.4205325580001,32.56415692500019],[78.61824757200014,32.57387272400018],[78.65856955600003,32.42815618700013],[78.65856955600003,32.300814123000066],[78.70640558000008,32.19715646800006],[78.76956154400011,31.976250906000075],[78.74507850800018,31.908434101000125],[78.97535654600006,31.90097823100018],[79.01035350600006,31.829861638000068],[79.16906752500017,31.927175366000142],[79.05948654600019,32.06221989600016],[79.12274158400004,32.17721424400008],[79.14595761200019,32.300513213000045],[79.21755951700015,32.30747404800019],[79.36008456100018,32.42529930000006],[79.34944960200016,32.32614641400005],[79.4669186220001,32.299979286000166],[79.56161451500003,32.3232015160001],[79.67006661900012,32.26509430800019],[79.73242965500009,32.19411283100004],[79.83034553900006,31.995633052000073],[79.916595658,31.855342791000112],[79.97805764000009,31.711085711000123],[80.16667962999998,31.499887735000073],[80.30912756000009,31.407937922000144],[80.42435458900019,31.470053524000093],[80.38014256400004,31.57138838700007],[80.28118162499999,31.63724315600001],[80.21488965500004,31.740358502000163],[80.20900757100003,31.803599626000164],[80.05090358700011,32.03134113300007],[79.92608665500006,32.242901040000106],[79.70731361700012,32.45420647200018],[79.46238753300008,32.61557034600003],[79.35004454900013,32.76336559500015],[79.41081955000004,32.769175427000164],[79.59226964900017,32.69458872600018],[79.7303695510002,32.68735698800009],[79.96524053600007,32.57442676800002],[80.09828162400004,32.54207865700005],[80.34988355900009,32.57832435299997],[80.463813572,32.58008354700007],[80.49025763800006,32.622703010000066],[80.32248663800016,32.67231264500009],[80.31227161200013,32.67627544100003],[80.24821459400016,32.72386587600016],[80.23779253500015,32.73165568200005],[80.08030663300019,32.80120251200003],[79.92439250500007,32.91003331000019],[79.89356956400019,32.97417917700017],[79.88544465000007,33.14038041500004],[79.76451859800011,33.26750840500017],[79.77990760400013,33.35987463100014],[79.92169152000014,33.43242067400007],[79.98217751300012,33.5758385580001],[80.22644058800017,33.591287076000015],[80.37870758300005,33.62393593000013],[80.45688659900003,33.70341682400016],[80.63526959199999,33.78672757700008],[80.5148466220001,33.95921960100014],[80.49820753800009,34.094671659000085],[80.39493561800009,34.03954723500004],[80.27269763000015,34.0512428400001],[80.19758555100003,34.13746764500007],[80.20033263600004,34.12206791000017],[80.19607563500011,34.0607598200001],[80.09768650900008,34.00098947400005],[80.01174149100007,33.97716307600001],[79.96504959600009,33.88813854700004],[79.89013650400017,33.86099341900007],[79.60242449300017,33.93807926800008],[79.57177757200009,33.969469160000074],[79.48825861300014,33.90504819900008],[79.26761657800006,33.95355879900018],[79.19464155000009,34.00768007700003],[79.2312166550002,34.090673993999985],[79.08454156400006,34.16691662400018],[79.101921607,34.118238218000045],[78.95795454100005,34.05402680500015],[78.8502425590001,34.051955972000144],[78.75392158300008,33.96495634300015],[78.61721056300019,34.01570608500009],[78.60166950900003,34.101667699000075],[78.47946152800017,34.15759293000019],[78.38313250600004,34.078883171000086],[78.30856357500005,34.14930825700009],[78.31270557600004,34.254949239000155],[78.42353059700008,34.27048308400015],[78.47220665600014,34.236307718000035],[78.62860157000006,34.24873539800018],[78.70006550900018,34.220770184],[78.72698952300016,34.13998959200012],[78.82434851300007,34.17002161600004],[78.88363656400008,34.25039132700016],[78.81846659700011,34.311637894],[78.77960155500011,34.27609393000006],[78.6312715410001,34.323051364000094],[78.3934935440002,34.30814398100006],[78.31001263800016,34.36553420200005],[78.43076350900009,34.40429446900015],[78.29212163300019,34.49000915200003],[78.20279652900007,34.715725926000175],[78.09578661500012,34.977277347000154],[77.86868263700012,35.0694878380001],[77.89643863900017,35.12867547400009],[78.28331761800013,35.296739338000066],[78.1963116180001,35.37450730600011],[78.00305158600008,35.615487358],[77.68520361399999,35.82738539100018],[77.47330457600003,35.91567449200005],[77.24374352600012,35.986305772000094],[77.03183761400015,36.074598896000055],[76.8199385750001,36.251176763000046],[76.69633450500004,36.32180821100013],[76.5374065790001,36.37478200700019],[76.32550854700008,36.410097312000175],[75.90293154500011,36.622716691000164],[75.76995063900017,36.718402486000116],[75.69914250000016,36.74788197500004],[75.6941685110001,36.74912098800013],[75.59577955200012,36.76421562200011],[75.61372353100006,36.67801663300014],[75.8003995790001,36.63134854300006],[75.81268359300003,36.53801236300012],[75.95269054500011,36.481521856000086],[75.919532575,36.437306814000124],[75.79794351400017,36.40537444500012],[75.69600649500012,36.45081425100017],[75.5867076510001,36.569944732000124],[75.44670053100003,36.55643293600002],[75.45529164700014,36.637490299000035],[75.36563864300012,36.71117376500018],[75.28458362700002,36.684158221000075],[75.16054554200008,36.7283695750001],[75.1507185980002,36.79100217299998],[75.36809554600006,36.79714409700017],[75.42454565200006,36.82864043900008]],[[74.09845749000016,36.891158875000144],[74.07650763300006,36.808663849000084],[74.14852863300013,36.727400292000084],[74.23926558500017,36.717185769000025],[74.31760352200018,36.662635673000125],[74.41142250000013,36.709361766000086],[74.64677460700005,36.55754001800017],[74.82153360000018,36.505955271000175],[74.76965364300008,36.37364106200005],[74.64598855200012,36.36655734800013],[74.5467375980001,36.39963753500007],[74.48354358000012,36.31600240200015],[74.36198452600001,36.42805973000014],[74.32205951000009,36.53134070300018],[74.11405151800005,36.44131671600013],[74.11278551600009,36.548068132000026],[74.21061657500007,36.569662764999975],[74.248855488,36.656616796000094],[74.05896749400017,36.715830583000184],[74.07402055400007,36.786939129000075],[74.0288005220001,36.84710392799997],[74.09845749000016,36.891158875000144]],[[75.01605259500019,36.46695813100007],[75.33084854800006,36.38880761299998],[75.43018348800007,36.34352488400009],[75.5755305510001,36.323803104000035],[75.68655355200019,36.2522256740001],[75.84870163699998,36.323803104000035],[75.99405657900007,36.363975387000096],[76.21901663400007,36.23542616100019],[76.32857565300003,36.10103726300008],[76.29351750400014,36.05721516400018],[76.35998549400017,35.99513258700006],[76.6389996050001,35.99074969000009],[76.68720258900015,35.856360792000146],[76.77192653100019,35.82130063200003],[76.8464275680002,35.73657451100007],[76.93115251600017,35.69421371300007],[77.00273849600012,35.721967871000174],[77.07504263700008,35.66426835800013],[77.13055464000013,35.697867552000105],[77.31753562200004,35.60583660200018],[77.53519453700005,35.56639773600017],[77.62430556700019,35.49189837500006],[77.70610858400005,35.526957697000114],[77.78353155300005,35.509426108000014],[77.59362763400003,35.3195277210001],[77.69223049900012,35.273515934000045],[77.70246161800009,35.10406704400003],[77.73167456200008,35.04563562300001],[77.88359856900007,34.93754125900006],[77.95517750700014,34.934619327000064],[78.07423355700013,34.86230931900019],[78.12535864000006,34.75567608800003],[78.11367057900014,34.60083417300007],[78.17210350900018,34.552629513000056],[78.17940565500004,34.43576851500018],[78.26267265500019,34.31598676000016],[78.16772463500007,34.244409666000024],[78.01433563900014,34.39486466],[77.93107551200018,34.390485619000174],[77.86898757000006,34.46863563400012],[77.83977563200011,34.603024029000096],[77.69661758700016,34.66583834700009],[77.722907594,34.730110780000075],[77.64110558300007,34.76224884100003],[77.61042765000008,34.974058529000104],[77.51109354800013,34.97844125800009],[77.39276856800012,35.109907889000056],[77.29489157500007,35.13912334800017],[77.26714362000001,35.222389174],[77.17803158400017,35.16833931000008],[77.35040257300011,34.88641366100012],[77.42490361100005,34.871804172000054],[77.42052456900007,34.80314867300018],[77.2817455660001,34.813375601000075],[77.22988857500013,34.930964482000036],[77.1714556460002,34.97479043700008],[77.04290759300011,34.922202711000125],[76.79164864600017,35.03906287],[76.84861759200004,35.109178999000164],[76.93772862200018,35.09165042800015],[77.02245357000015,35.1544618960001],[76.790191536,35.25525528700007],[76.8223265790001,35.33267624500019],[76.73760263700007,35.37211544600012],[76.58421364100013,35.51819190200001],[76.62365753700004,35.32391061800007],[76.4775775600001,35.30930381100006],[76.43959865400012,35.614602397000056],[76.23362763300008,35.526957697000114],[76.19856261100011,35.459760146000065],[76.103614591,35.49774223800017],[76.15912659500015,35.614602397000056],[76.27160653900012,35.73146289100009],[76.10214960200005,35.69348482300012],[76.03349259500004,35.70516835800004],[76.02911355400016,35.87607838100007],[75.81583351200015,35.90529484600012],[75.76178750399998,35.81618884500011],[75.61497461400012,35.917711462],[75.5492405440001,36.01412128600009],[75.49519352900012,35.97614288200015],[75.23516862000014,35.987827758000094],[75.19718954600012,36.01996615400003],[75.09055363300013,35.932316928000034],[74.87435149200019,35.95423258700015],[74.66399354999999,36.08277644900011],[74.54713456500019,36.09300421500012],[74.50184663900012,36.056479066000065],[74.38644459600005,36.074014845000136],[74.42004362300014,36.17772631300005],[74.52230049500014,36.22739629800003],[74.61140465200015,36.15289291300019],[74.76187154900015,36.15143211500009],[74.81446061500003,36.09884824500011],[74.88603955400004,36.12075870800015],[74.94447348900007,36.069635804000086],[75.09493250600013,36.20256004800018],[74.89772761500012,36.25222181800012],[74.95177462900006,36.29750471500006],[74.92256151700019,36.36616826000005],[75.01605259500019,36.46695813100007]],[[78.07491249100013,34.20381091200011],[77.95404863300018,34.209342633000176],[77.88848153000004,34.15088724000009],[78.05318458700003,34.08137410500012],[77.97182463800004,34.03556046600016],[78.0215915170001,33.98263679400014],[78.0263286340001,33.902854990000094],[78.15745563000013,33.92339249700018],[78.13771054800014,33.82386225800013],[78.2905656170002,33.83729409000017],[78.29846153699998,33.75435331400007],[78.40984362000017,33.71011564100007],[78.43907165100006,33.55134429000009],[78.49278255200011,33.49842078500012],[78.45645152700013,33.36097383400005],[78.31426259800008,33.41152827700006],[78.3087315480002,33.48104208299998],[78.2107776100001,33.48104208299998],[78.19892861600005,33.57899250000008],[78.1507415580001,33.66588081700007],[78.06622364300011,33.69195021300004],[78.07553861999997,33.78798234800007],[77.98303258300007,33.812819604000026],[77.92222556400014,33.913882892000174],[77.912803634,34.02522675300003],[77.78793356100016,34.12788595600017],[77.84848761400008,34.14673350400017],[77.93389853700006,34.24778572900004],[78.07491249100013,34.20381091200011]],[[78.91074363899997,33.37232946900019],[79.00779752900007,33.44325445100003],[79.11045857600004,33.43112080800017],[79.10765851700006,33.2734104380001],[79.37642659000011,33.324734676000105],[79.47068058800016,33.25287997200013],[79.61813352000007,33.29767470700017],[79.73292552800018,33.20342054100007],[79.61813352000007,33.130630585000176],[79.6722645210001,33.05504090600016],[79.65639456100007,32.967320433000054],[79.5117495670001,32.99811554600012],[79.53414165300012,33.08023606900014],[79.41655763300008,33.07557019799998],[79.34189549600006,33.16609056200002],[79.22617359900005,33.13716025500008],[79.08432765700019,33.20155439400014],[78.91074363899997,33.37232946900019]]]]},"properties":{"objectid":365,"eco_name":"Karakoram-West Tibetan Plateau alpine steppe","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Palearctic","eco_biome_":"PA10","nnh":3,"eco_id":754,"shape_leng":96.9403956429,"shape_area":14.1195114163,"nnh_name":"Nature Could Recover","color":"#EECB93","color_bio":"#D6C39D","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":143602.16830907876,"percentage":2.940676147228838}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[86.64571359799999,51.30914127600005],[86.39106752300012,51.282990912000116],[86.16607662200005,51.4967054710001],[86.05461860000014,51.65481599300006],[85.90931663200018,51.808409842000174],[86.37342864600004,52.086463890000175],[86.30538150600012,52.16323625600006],[85.75005359800008,52.440451611000015],[85.6753695000001,52.53183514199998],[85.70765659100016,52.77938727700018],[85.6962206570002,52.901249756000084],[85.62206260700003,53.06430509700016],[85.33173359700015,53.31960848100016],[84.75935354600006,53.57496617900006],[84.66741161100009,53.63032613500019],[84.59264352600019,53.78204059400002],[84.59165965800014,53.90179452100011],[84.54662352500014,54.094806785],[84.34573361300016,54.19195119900013],[83.85418662400008,54.32455240400003],[83.71064753800016,54.41754559700013],[83.43908661500012,54.71825810800004],[83.29139764900003,54.85598753000011],[82.96186061100019,55.050122466],[82.52340660800007,55.107012789000066],[82.08651750600006,55.12858127000004],[81.82002260600007,55.179012667],[81.72870663200013,55.27460810500003],[81.71234163700012,55.401320521],[81.8427885260001,55.49341299400004],[82.42106658700004,55.62896077400006],[82.64489760100014,55.69584953500015],[82.85376758700016,55.78970120200006],[82.84647365500007,55.87929167700014],[82.59664164300017,55.93425516900004],[82.07965054800013,55.86234296600014],[81.66652665700008,55.830271122000056],[81.22778364600003,55.754628301000025],[80.90218358800018,55.77898996800019],[80.39089956400011,55.79107114000004],[80.03070051800012,55.87620160400019],[79.50681262600011,55.90203228300004],[78.77198056100019,55.818124906000094],[77.80153655100014,55.801019453000094],[77.33339653000019,55.83474253200018],[76.77256757900011,55.97336512900017],[76.35285953500005,56.021187407000184],[76.01817349300012,56.027405773000055],[75.31120254000007,55.965404165000166],[74.69451155700006,55.970225100000164],[74.38253058300012,56.04329819700018],[74.10513250300005,56.067937807000135],[73.14804052900007,56.015907479000134],[72.78569051900013,55.95849479399999],[72.28488957400009,55.86173226000005],[71.74677256300004,55.79348931900006],[71.16928860200005,55.81718278000017],[70.87957750700019,55.93631510500012],[70.44474750400008,56.00948727600013],[69.53591148800012,56.32042822400018],[69.16899149700009,56.42944040700013],[68.78594958500014,56.509490600000106],[67.65318264400003,56.56232106500016],[67.21820059300018,56.507563600000196],[66.17269161100006,56.33113644000014],[65.69589258000002,56.20286784100006],[65.16921955000015,55.962916081000174],[64.22277862800019,55.50082142300005],[63.74956554300019,55.41052888000013],[63.21871161900003,55.37177079200012],[62.46158956000005,55.46083119500008],[62.07960158900016,55.551344686000164],[61.74325559500005,55.53119894900016],[61.394370610000124,55.4482228010001],[61.08617054500013,55.40957569000011],[60.035427567000056,54.768243252000104],[59.58234060500007,54.622247598000115],[59.126579481000135,54.42473659900003],[58.97484959900004,54.37625466500015],[58.814468587000135,54.202681376000044],[58.59902953500017,53.99938367900006],[58.22137852900005,53.597637550000115],[58.15095159900005,53.417690662000155],[58.17092148299997,53.17010717900001],[58.13220547300011,52.93411838300011],[58.06276358400015,52.730458252000176],[58.028270544000065,52.553861610000126],[57.98086551700004,52.08017360700006],[57.92279049500013,51.889878421000105],[57.81198156700009,51.69300176400009],[57.687030525000125,51.578272956000035],[57.89241447800009,51.55408730900007],[58.19442752500015,51.089445894000164],[58.32419950300016,51.150649881000106],[58.356338569000116,51.086698809000154],[58.53787651100015,51.074938664000115],[58.60179154000019,51.0063985000001],[58.562229628000125,50.946594627000025],[58.589580616000035,50.83126668000011],[58.825660607000145,50.892623552000146],[59.21092657300011,50.92226011800017],[59.655464496000036,50.92226011800017],[59.96664047200011,50.99635044300015],[60.218543485000055,51.02598684100019],[60.55935250700014,50.99635044300015],[60.855712631000074,51.12971423400006],[61.07923552500006,51.46500477800009],[61.06130948400005,51.570555570000124],[61.12058261600015,51.69650774700017],[61.23912452000019,51.859508774],[61.279872639000075,52.003985292000095],[61.3835985230001,52.104008219000036],[61.431755575000125,52.27071019200008],[61.61698155300007,52.467052083000056],[61.90222559799997,52.878254172000084],[62.13571960400009,53.00806386800019],[62.11425053300013,53.11297394800016],[61.78966854000004,53.164626085],[61.68484462700002,53.294919920000154],[61.70074861699999,53.408642230000055],[61.69247048200015,53.67309831600005],[61.82744963300013,53.85492224800009],[61.77157955500002,53.96425394900007],[61.831428523,54.02244430600001],[61.94609061200009,53.947262322000086],[62.069740615000114,54.051314933000015],[62.3403515330001,54.03037526300017],[62.44522054100008,53.93015301400004],[62.58591061800007,53.97441600100012],[62.81082155600018,54.11054716100017],[63.138770559000136,54.10711728600012],[63.15769957800006,54.184019907000106],[63.51821847800005,54.20052622100013],[64.02908357400008,54.29940585600002],[64.31960251800007,54.38677596500008],[64.57933858700011,54.34997488400012],[64.78639255000019,54.35249213700013],[64.979721482,54.40095529600012],[65.32727056000016,54.347792907000155],[65.48174249800019,54.40270610800019],[65.76837156800019,54.430805935000194],[65.96704061000008,54.38775195400012],[66.06777164100004,54.28171232900007],[66.20250654300014,54.20296049300015],[66.4665525870002,54.185721098000045],[66.70768753600004,54.047514914000146],[66.98822748900005,54.013593854000135],[67.22962160700013,54.14432690100017],[67.42347759300003,54.18421101399997],[67.6622464990001,54.14811904200013],[67.86691262600016,54.08394249700012],[68.17185263400017,54.19240801199999],[68.35576650900003,54.23209012100017],[68.52741263100012,54.29544155200011],[68.64774356900006,54.25461950400006],[68.97545653700013,54.267471811000064],[69.1551975660002,54.24126025900006],[69.35881763100019,54.351832146000106],[69.60704048600013,54.352602946000104],[69.80666355700015,54.38270571300012],[69.99104363400005,54.45285537000018],[70.28793349400013,54.43730610100016],[70.45323149800004,54.46170565400007],[70.76421351700003,54.57984958500015],[71.0801006260001,54.55548909200007],[71.49607855600016,54.573170381000125],[71.79801951900009,54.55522908500012],[71.99372857600014,54.51106584300004],[72.2186435370001,54.366012482000144],[72.76145156400014,54.47015578600008],[72.97049757000013,54.55280688300013],[73.07874264200018,54.82139440900005],[73.04432654700014,55.02803095400003],[73.04418958700018,55.17098246900014],[73.23484050100012,55.25567472700004],[73.38804660400012,55.27245613600007],[73.69611356500013,55.162445165],[73.98110162600017,55.10197258300013],[74.18517263700016,55.08918247000014],[74.33051249200014,55.11834210500007],[74.53443162300005,55.290717620000066],[74.75170849100016,55.37872911300008],[75.02214053900013,55.41816999000014],[75.25454758000006,55.40194949900018],[75.43247962700002,55.34232818300006],[75.58750963200015,55.24600435800005],[75.6576765550002,55.13620360500005],[75.65395364900019,55.02944984200019],[75.59610762000011,54.919237036000084],[75.13607759300004,54.59186973700008],[75.02739750100005,54.49270846900009],[75.08509064300017,54.36436426500006],[75.31140152600005,54.293652518000044],[75.57940651000007,54.328802364000126],[75.88469654699998,54.38732498000013],[76.05355048900014,54.37442757800005],[76.26663959100017,54.393326087000105],[76.81974059500004,54.50201657300005],[76.93248758600015,54.48301513400003],[76.83763864000008,54.39893324500002],[76.84095753800005,54.237903307000124],[77.00256364900014,54.268082014000186],[77.24938957600011,54.353613971000016],[78.0251925500001,54.17502863900006],[78.32113659700013,54.20149952800011],[78.49481952200011,54.31917424],[78.74540758100011,54.53220735000019],[78.89911659800015,54.60302822900019],[79.2027515440002,54.54726761799998],[79.38536052500007,54.296452744000135],[79.38603962700012,54.03348830200008],[79.47042862800009,53.859053520000145],[79.72644749100004,53.741058787000156],[79.83396149200007,53.585987375000116],[79.96999357800001,53.57526792700014],[80.132728564,53.434750014000144],[80.52037063100005,53.37728083600007],[80.90724156400017,53.41343349300007],[81.09741957100016,53.395820265000054],[81.30151354900005,53.30098908900004],[81.6508865290001,53.187377588000174],[82.07074762600018,53.16046799000014],[82.44230649800005,53.19643674900004],[82.67700951000012,53.240337637000096],[82.91130851400004,53.32541848100004],[83.2024535860001,53.49706845800017],[83.26880657600003,53.5599246860001],[83.56089058800018,53.42881076500015],[83.66593964000009,53.40621248400009],[83.72569255100018,53.324289438000164],[83.60234060800013,53.18339869800013],[83.6028596160001,53.012572829000135],[83.45234661800009,52.77176913300008],[83.39453864400008,52.56698398300006],[83.38491856600007,52.327470260999974],[83.34586359100012,52.23883767000012],[83.19589960800016,52.21234834100011],[83.03708651500006,52.22554732400005],[82.88105051400004,52.299728844000185],[82.77501658900013,52.666851006000115],[82.65453360400011,52.79037729300018],[82.48095662700007,52.75212664500009],[82.43382250300016,52.60806570200003],[82.44180257800008,52.47327430500013],[82.53733850400016,52.317731328000036],[82.7897335350001,52.14819493100015],[82.97853054000007,52.0728456440001],[83.3240205190001,52.03667002100019],[83.78375952700014,51.870022028],[83.68560760800011,51.6862576850001],[83.34393357400006,51.5513554800001],[82.96517950900017,51.70025781000004],[82.82479855600019,51.70873811700011],[82.58902752200015,51.549715476000074],[82.40115353200014,51.33125961000013],[82.13545960700009,51.07053933800012],[82.0589445650001,50.879366567000034],[82.09404764100003,50.464245435000066],[82.13135565900012,50.277703666000036],[82.20486461500008,49.99633206100009],[82.31568158900006,49.94092332200006],[82.56810763300001,49.94092332200006],[82.98676257400012,49.99017471400015],[83.07697264000006,50.03528058500018],[82.91206355600013,50.08730202900017],[82.91546660900008,50.21125478700009],[82.77419264800005,50.35443781000015],[82.9152835480001,50.427047723000044],[82.93723256700014,50.50503982300012],[82.69912750800017,50.784882904000085],[82.83891250800019,50.9182049530001],[83.06792454300006,50.94470652000007],[83.27751151700005,51.088709628000174],[83.24194358200009,51.20383154800004],[83.02945764200007,51.306391174000055],[82.94835652600011,51.369094180000104],[83.06368262900008,51.4171332140001],[83.28072363000013,51.417213177],[83.43988054900012,51.370051226000044],[83.60077654500014,51.27749070700003],[83.83145155000011,51.21083881900012],[84.19833365500017,51.24962724900013],[84.41300961800016,51.30317135000007],[84.52467350000006,51.40542587500016],[84.63713064500018,51.612907483000185],[84.73934158400016,51.67965760700008],[84.885772595,51.69958994000018],[85.271293538,51.63897302200007],[85.39138056200005,51.57686462800007],[85.68379264200013,51.308161432000134],[85.75202954800011,51.16741888400014],[85.94254266400003,50.85950313300003],[86.3213725010001,50.44811714499997],[86.7542116350001,50.154675096000176],[87.02208753700012,50.06947992400006],[87.18125954300012,50.12377554600005],[87.10575854500007,50.30498709600005],[87.17913858700018,50.45550629600007],[87.25910965400016,50.54289048600009],[87.36151857400012,50.59199016600013],[87.76466364200007,50.544320606000156],[87.59864060300009,50.90579588100013],[87.51859259000008,51.03434493900005],[87.5241165990002,51.10589906700005],[87.01526651200015,51.29350818900019],[86.64571359799999,51.30914127600005]]]},"properties":{"objectid":367,"eco_name":"Kazakh forest steppe","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Palearctic","eco_biome_":"PA08","nnh":4,"eco_id":731,"shape_leng":90.1633157823,"shape_area":58.0278381876,"nnh_name":"Nature Imperiled","color":"#D8FC36","color_bio":"#FEFF73","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":421463.85010230297,"percentage":3.9778386648817734}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[72.99961060200008,48.738566635000154],[72.82042663500005,48.799682109000116],[72.79733264700008,48.956341556000154],[72.40196950600017,48.99959301399997],[72.28943658800011,49.10827143000017],[72.10077654400004,49.13958270000006],[71.94735754100003,49.232543538000016],[71.6738205010002,49.24803178700017],[71.59989949100014,49.29364442700012],[71.6000215310001,49.40858663900008],[71.33809661200013,49.443358126000135],[71.28913154500003,49.54973638000007],[71.20809161700015,49.61477726600015],[70.94750260600006,49.66950774100019],[70.75280759100008,49.804984443000194],[70.58323649300007,49.811999425000124],[70.36717248700012,49.937795196000195],[70.11679850100012,49.96137348900004],[69.96576649600007,50.04242163200013],[69.8048785470001,50.00208104000012],[69.71758253400014,49.93739001400007],[69.63619257700014,49.94786219700012],[69.35971851800008,49.843699951000076],[69.22026862700017,49.84487107000007],[69.142951606,49.89699276100009],[68.8999635850002,49.966470525000034],[68.79382354500007,49.97241362900007],[68.72673060100004,49.926442075000125],[68.533256494,49.889011513000185],[68.212226585,49.9796426850001],[67.99035660200008,49.85746420900011],[67.69458756900013,49.865532126000176],[67.540672525,49.81198048200008],[67.49501059900007,49.76451007600002],[67.34602361100019,49.72392858900008],[67.04416663400013,49.76230882100009],[66.90534957700015,49.80884866800011],[66.77411663400017,49.931851085000176],[66.64729357700014,50.116382372000146],[66.52156050299999,50.20381651800005],[66.3825835190001,50.24422634400014],[66.05496962500018,50.20918361900016],[65.60977154300014,50.33397540500005],[65.400672563,50.26178559300001],[64.96794155600003,50.35782175200018],[64.62835662700007,50.30070696100006],[64.463180496,50.37812708000018],[64.31770351400013,50.368536842000026],[64.31298852600014,50.45567728600014],[64.16731255700006,50.4872787380001],[64.14441655000019,50.59633132200014],[63.95119054800017,50.657997151000075],[63.50559952200007,50.661300291000146],[63.41761049400003,50.629881733000104],[63.259899621000045,50.62700975800004],[63.13885856900015,50.57889813600008],[63.004589532000125,50.41677855000006],[62.826221626,50.36260882400012],[62.57580154000016,50.421397649000085],[62.383201498,50.38960626400018],[62.23751061000007,50.32758537700016],[61.98720150000008,50.30705524700005],[61.75268557200019,50.203144793000035],[61.529899614000044,50.04355050600009],[61.26710163600006,49.96879348500005],[61.05950955400016,49.99612201000019],[60.87952058900015,50.088973045000046],[60.75992155900002,50.08463205800018],[60.227020607000156,49.81037065400011],[60.11082463000014,49.784880113000156],[59.896400627000105,49.867950305000136],[59.62533155400007,49.624116215000186],[59.53952450200012,49.481124467000086],[59.52608160600005,49.33872381100019],[59.55612955600003,49.16682790800013],[59.528400543000146,49.028989522000074],[59.3986734930001,48.9043202790001],[59.29895063800012,48.85216858100017],[59.236240591000126,48.68474811100015],[58.95497158000012,48.49160408400007],[58.81184052500009,48.44935560400012],[58.72932052100015,48.38983822400019],[58.63803053100003,48.251444118000165],[58.53453062300002,48.144204037000065],[58.52980457000007,48.05051028500003],[58.415370637000194,47.88471892200005],[58.32786960300007,47.81532162500008],[58.22389963799998,47.81315037700017],[58.1473125120001,47.89723109200003],[58.2895394950001,48.29278450200013],[58.30028559800007,48.483315220000065],[58.45693247200012,48.712095076000026],[58.284179602999984,48.78095894900008],[58.17248957000015,48.79584805900015],[58.04631862500008,48.86530268800004],[57.83421355900015,48.89471797099998],[57.71823852900019,48.93729133400012],[57.57889961500018,48.949993605000145],[57.405525480000165,49.070741794000185],[57.18572951500005,49.089133030000085],[56.98606151700011,49.17267613000013],[56.86481058200019,49.16461106300011],[56.67379354600013,49.19730316700003],[56.59036259600015,49.181102122000084],[56.352977543000065,49.20488325800005],[56.226432597999974,49.2779622220001],[55.70589059400004,49.34021478400018],[55.544071582000015,49.37418512900007],[55.37739559400012,49.484126530000026],[55.24226355600018,49.50100667700008],[55.08922961800016,49.556366298000114],[54.933189594000055,49.55132625900012],[54.824867577000134,49.63245838800003],[54.61656554799998,49.60383703900004],[54.48175051400017,49.64700853400012],[54.18866352300006,49.84154077200003],[54.03694152000014,49.86673040300013],[53.89498158400011,49.99214395900009],[53.8598635890001,50.12307364499998],[53.76125351600018,50.258664340000166],[53.57640053200015,50.38456723100006],[53.319702568000025,50.2935349010001],[53.2213245050001,50.34680457800005],[53.102008616000035,50.34479778300005],[52.99314848100005,50.448718966000115],[52.93281151899998,50.39482835700011],[52.791080577000116,50.406448357000045],[52.655254518,50.48693960600008],[52.27696648699998,50.488198736000186],[52.03735754600012,50.377338008000095],[51.912033509000196,50.26931941500004],[51.742530472000055,50.26026628900007],[51.528518523000116,50.13995379200003],[51.35678858200015,50.10357230900007],[51.402584619000095,50.030954350000115],[51.37026953200018,49.970685616000026],[51.481838531000164,49.83778383600003],[51.50625250000019,49.69929300200016],[51.63697850699998,49.6354192120001],[51.67754758799998,49.52108385000008],[51.82182361200017,49.42454393900016],[51.89585157500011,49.306607376000045],[52.01510661100019,49.22779049600007],[52.09153347500012,49.07482378100019],[52.23371553100003,49.02829952400003],[52.39337150800009,48.88560885400011],[52.468418543000155,48.86182755100003],[52.680988469,48.86998783600012],[52.874328465000076,48.91006909200013],[53.02128954700015,48.857467620000136],[53.00833850100008,48.791476896],[53.12979848100019,48.62619146500015],[53.168189609000194,48.42848567100003],[53.21855562700017,48.369765075000146],[53.38755457700006,48.26452508300008],[53.52875863200018,48.25859991600004],[53.51830656700014,48.12044201200018],[53.62474047600017,47.89697896400014],[53.686859599000115,47.82852044000015],[53.88199248400008,47.75832921000011],[54.00944854199997,47.66949930800013],[54.076751537000064,47.551067543000045],[54.056648548,47.430567794000126],[54.13698959300007,47.2557057030001],[54.07588954200003,47.17861733900014],[53.94327559600009,47.12187386600016],[53.91473052200007,46.98503611200016],[54.029571480000186,46.776195127000165],[54.028049494000186,46.69868783600009],[54.12063951700014,46.678942754000104],[54.28728449300013,46.690272740000125],[54.480850633000045,46.60216435300009],[54.56089060000005,46.59814321900012],[54.63190459800012,46.66852069600003],[54.873191595000094,46.65687454400006],[54.98278447700011,46.66981469400014],[55.38919060800009,46.57055133500012],[55.74613948700005,46.60212244400009],[55.87253959300011,46.539052981000054],[56.15880555900014,46.49775886400005],[56.45050450700006,46.54099909100012],[56.620464525000045,46.4239637500001],[56.76892848200009,46.3699435580001],[57.087688572000104,46.389673384000105],[57.16928053300012,46.37239258200009],[57.442390599000134,46.24054105400012],[57.54679156100008,46.20807777600015],[57.98907056200011,46.168629857000155],[58.23685051600006,46.210640794000085],[58.53770853700007,46.16564288200004],[58.645458572999985,46.109391427000105],[58.68574853800004,45.98824023600008],[58.77767152900003,45.842258831000095],[59.002059604000124,45.962220294000076],[59.181980508000095,45.936196161000055],[59.29645953600004,45.97961810800007],[59.28602557500011,45.75429981000019],[59.554420485000094,45.79771069200001],[59.6150585260001,45.98822129299998],[59.58224153100002,46.040249443000164],[59.64105952500017,46.152897528000096],[59.59085058400012,46.26556220900011],[59.74675750300014,46.23956104200005],[59.89221956600011,46.08364942900005],[60.05673553800017,46.14429166000019],[60.12795656900005,46.14429166000019],[60.34267863300016,46.05764038300009],[60.465766546,46.118290493000075],[60.51581556000008,46.06626251200004],[60.72555558900018,46.10089251200003],[60.827590508000185,46.09227038400002],[60.92456057800007,46.001778184000045],[60.985637495000105,46.09122951900014],[61.224441605000095,46.29993220300014],[61.45447958500006,46.22206298100008],[61.52555460299999,46.15403059300013],[61.62803661300012,46.13205056100014],[61.86643956500012,46.15509157499997],[61.93989957000019,46.139580528000124],[61.98667159600012,46.04000938500002],[62.07763653500007,46.01619019500009],[62.25033156900008,46.05449046400014],[62.49275548700007,45.96997908700018],[62.60308849100005,45.96173129400012],[62.790031586000055,46.02641025000008],[62.87569061300013,46.09598641700012],[63.0431975840001,46.11963746500015],[63.19533952000006,46.19963183500005],[63.38068049900005,46.36374044700017],[63.59967062800007,46.45599167300003],[63.83646056600003,46.665003649000084],[64.181419635,46.774265110000044],[64.28642258600013,46.734324838000134],[64.40841649300006,46.746582030000184],[64.47074851600001,46.81752428000016],[64.41261264200006,46.99195537300005],[64.62857858000007,46.952304948000176],[64.76576954800004,46.99515608700017],[64.89761353200004,46.99292415300005],[64.979606483,47.053963687000135],[64.96903958500019,47.14241590000006],[65.052429631,47.29127782900014],[65.0499195860001,47.378535621000026],[64.93296052099998,47.45858715500003],[64.90377054300012,47.52567741700017],[64.97737153200012,47.63149022700003],[64.96520955800014,47.77379013300009],[65.01236748700012,47.89033010300005],[65.10649860600006,47.88345996000015],[65.29234350500013,47.77372928000011],[65.32054156800012,47.59562791900015],[65.46389055300006,47.432086930000025],[65.56231656000006,47.38959856000014],[65.78134155700013,47.377578575000086],[65.88900760600012,47.318335116000185],[65.89810163600009,47.250375818000066],[65.84768650000018,47.14932409600016],[65.96798659199999,47.009835481000096],[65.9927296350001,46.864704504000144],[66.10501863900004,46.73410405900006],[66.39273852999997,46.717036995000115],[66.60427060900008,46.594431209000106],[66.84612254600006,46.58927416000017],[67.01748653400006,46.45958181000003],[67.04129750900012,46.363172321000036],[67.16623648100011,46.30563122600017],[67.07417250700007,46.20399998000005],[67.14808664400005,46.13090978400015],[67.38831349700001,46.20058988600016],[67.6011506390002,46.22280997600012],[67.97341962500019,46.18583069600004],[68.05053749300009,46.232400047000056],[68.20699359500014,46.38079242300006],[68.30500050700016,46.37067228],[68.41194956800018,46.29024322600009],[68.51631951800005,46.311353049000104],[68.57791862700014,46.374582606000104],[68.56092063000011,46.43401164100004],[68.83747062900011,46.41584269200018],[69.00012263400004,46.45456172000013],[69.05605356500013,46.42212157600011],[69.21476758400019,46.444372846000135],[69.43884251100013,46.587191257000086],[69.58616652900008,46.60683324100006],[69.90936249000003,46.58834343299998],[70.09073648100008,46.511510885000064],[70.46273054200014,46.57794015000013],[70.60267664100007,46.54876207500007],[70.84317758300011,46.35471129300004],[70.88102757600018,46.287431097000194],[70.99913764400003,46.24044181300019],[71.21662154500018,46.22028098800013],[71.3328626170001,46.15284857700004],[71.51274161200001,46.136555666000106],[71.72099251100002,46.15858967800017],[71.89605761100006,46.09389949000018],[72.09504650700012,46.136082759000146],[72.18612661400005,46.19542780699999],[72.3140865920002,46.19778580400015],[72.38249163900014,46.33048826300006],[72.74098161500012,46.4118787220001],[72.91532151299998,46.51558214300013],[73.07376848500007,46.52806313200011],[73.31984758400006,46.607722226000135],[73.51117659400018,46.77915209500003],[73.5676875530001,46.80606437400019],[74.04679160700016,46.85022359300007],[74.40743254600005,46.95746300299999],[74.56864956900012,47.04197438000017],[74.72074155000007,47.0523736400001],[74.86499762400018,47.09956476100001],[75.08940162400012,47.05254446300012],[75.28778853200009,47.09603665000009],[75.69328355000016,47.00542525900005],[75.83602149400002,46.92006378899998],[75.99698655700001,46.95853521599997],[76.13002764500015,46.96296421400018],[76.26914259500018,46.93393382700009],[76.71761364200006,46.79121432400018],[76.94812754700001,46.75383304700017],[77.10513249600007,46.75866320300014],[77.3444135360001,46.79984215200017],[77.51081057500011,46.792068272000165],[78.02648956600012,46.82880431000018],[78.17343857800006,46.775611076000075],[78.43518865100015,46.790275048000126],[78.77953349400008,46.90768489200008],[78.94600664100017,46.92771596400013],[79.34607655600013,46.86717263900016],[79.5186465320001,46.75832289700003],[79.70356757700017,46.78270317200014],[79.93260157300017,46.905025649000095],[80.12861657000013,46.889148648000116],[80.208808584,46.91468478700011],[80.24021155200006,46.987504247000174],[80.36083954400004,47.05336454800005],[80.34403952800017,47.173566237000045],[80.24925260800006,47.365771491000146],[79.98522165200006,47.52845735900013],[80.19248952200019,47.61333888100006],[80.27343758400008,47.69000747800004],[80.45951063800015,47.80431937100013],[80.49904656700011,47.87459106800014],[80.4798436260001,48.01100201600002],[80.66641255400003,48.140374177000126],[80.72660065400015,48.24676299200013],[80.70812962100013,48.34341287400014],[80.64958152500014,48.40304525300007],[80.6382066110001,48.56636479300005],[80.83274052600007,48.713358397000036],[80.85025753000014,48.782619069000134],[80.74707060200006,48.850959742999976],[80.7584386420001,48.90939736600018],[80.92994663100006,48.96839992900004],[80.984680626,49.07369088300004],[81.17401155800019,49.12928268200011],[81.28797962500005,49.305245484000125],[81.28031152500012,49.4046466420001],[81.11002360600003,49.64204929700003],[81.1305775420002,49.7101991990001],[81.25380660600007,49.73795956000009],[81.18108353700012,49.82995966400017],[81.29842364400008,50.07327206400009],[81.28563654800007,50.20269870800013],[81.19231461700014,50.300214943000185],[81.09217065500019,50.3362184020001],[80.82586652700019,50.289655757000105],[80.3799286580001,50.324595217000194],[80.12351249400007,50.405566414000134],[79.69915752300017,50.442867894000074],[79.4986575370001,50.54636964700012],[79.29389149800011,50.574498978000065],[78.9978865990002,50.540700462000075],[78.91742653100016,50.568693840000094],[78.65448756900003,50.596442298000056],[78.62380259500009,50.51978794900003],[78.68448656800018,50.38364723400002],[78.64576754000018,50.251905341],[78.577926595,50.17105534700005],[78.45094260500014,50.12098269600011],[78.0973436380001,50.050352756000166],[78.00528754200019,49.973432533],[78.02297956000012,49.88132849300007],[78.11215949000007,49.77160904500005],[78.11717957900004,49.647626448000096],[77.99497260400005,49.43774694500013],[78.17050155900017,49.38245538500013],[78.40840159700014,49.36625417200014],[78.54889654400017,49.312653578000095],[78.86258658800011,49.02720032100012],[79.07131961400012,48.98128995500019],[79.17205064400014,48.90478916300003],[79.21199058100018,48.82715949600009],[79.37133056000016,48.70488630400007],[79.5687636080001,48.62200721900018],[79.61131249500016,48.54219574300015],[79.72820249300008,48.45275463300004],[79.73825859800019,48.33143882200011],[79.85645265300013,48.25302293300018],[79.86210658200014,48.20014368500006],[79.69924955600004,48.143453018],[79.53354653800017,48.143933133000075],[79.46434755700005,48.19794242900019],[79.22843956300011,48.28288513900003],[79.11549358500014,48.41630559200007],[78.91179657400016,48.495705181000176],[78.70334652100019,48.53009445400011],[78.51180259900008,48.631665351000095],[78.27586359100002,48.594758155000136],[78.0450365390002,48.70408817900005],[77.84925858200012,48.7531876920001],[77.71481352500007,48.720598349000056],[77.69053651600018,48.56467583900013],[77.57826260000007,48.470196033000036],[77.42820758900001,48.42613555300011],[77.3340375780001,48.32819251100017],[77.29759960100012,48.20554163100013],[77.06578851300003,48.19921245500012],[76.90225959300011,48.29773133400016],[76.79485355100019,48.43383349300018],[76.68485263800011,48.48737306700019],[76.53352357900019,48.50855732100007],[76.38363654200003,48.485133925000184],[76.25418056200004,48.407554214000186],[76.08114656400005,48.41952457800011],[75.93199160300009,48.32640347800003],[75.90381650600006,48.21481453000007],[75.93311360500019,48.048153461000084],[75.9080966410001,47.95280059500004],[75.81687152700016,47.87924101300001],[75.72329763700009,47.87832906200015],[75.62003359500005,47.92592921900018],[75.51429756300018,48.15834531300004],[75.4082104970002,48.234242776000144],[75.16931150400006,48.33880483899998],[75.11071764200005,48.55752674700011],[75.18713360900006,48.70751805400005],[75.04538758000007,48.76780975400004],[74.8271335500001,48.779917916000045],[74.65766152600014,48.8227492740001],[74.51547259600017,48.797557129000154],[74.19049849900011,48.655427543000144],[73.99616960500015,48.72043825500015],[73.80888352199997,48.739409352000166],[73.53843655500015,48.71663940900004],[73.36025958900007,48.60661821200006],[73.33769952900019,48.40707326100011],[73.28488163600014,48.33649378000018],[73.39540055000003,48.21491360400012],[73.38864155100003,47.98015963000006],[73.481697608,47.88876201700015],[73.68441762500015,47.83716050600003],[73.69319163300014,47.77595316700018],[73.49295852700016,47.755621017000124],[73.4040065860001,47.639909346000195],[73.47099257700006,47.527992331],[73.34797658000008,47.48124712700013],[73.20658158500004,47.50811716200019],[73.03340962100015,47.45484899400009],[72.93073264800017,47.34855942100012],[72.77847252700008,47.317815941000106],[72.70168255900012,47.346175272000096],[72.4551466470001,47.311705030000155],[72.44669349700007,47.407298625000124],[72.32003053500006,47.505157344000054],[72.26645659500002,47.66821050699997],[72.28412648500012,47.74674407800006],[72.41313956500005,47.85135861200007],[72.41075860200016,47.89208896200017],[72.19290153900005,47.995894977000034],[72.13638253300007,48.102951662],[72.25833151300014,48.203862568000034],[72.34950264800011,48.24197592000013],[72.51093257100018,48.3797640140001],[72.58917964900007,48.483395016000145],[72.70408648900008,48.55032451200009],[72.9139785650001,48.59031792500008],[72.96987161000004,48.62567648100003],[72.99961060200008,48.738566635000154]]]},"properties":{"objectid":368,"eco_name":"Kazakh semi-desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Palearctic","eco_biome_":"PA13","nnh":2,"eco_id":828,"shape_leng":88.9248121785,"shape_area":82.3317927034,"nnh_name":"Nature Could Reach Half Protected","color":"#CE9053","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":679943.7363978818,"percentage":2.577284250486344}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[82.13135565900012,50.277703666000036],[82.09404764100003,50.464245435000066],[82.0589445650001,50.879366567000034],[82.13545960700009,51.07053933800012],[82.40115353200014,51.33125961000013],[82.58902752200015,51.549715476000074],[82.82479855600019,51.70873811700011],[82.96517950900017,51.70025781000004],[83.34393357400006,51.5513554800001],[83.68560760800011,51.6862576850001],[83.78375952700014,51.870022028],[83.3240205190001,52.03667002100019],[82.97853054000007,52.0728456440001],[82.7897335350001,52.14819493100015],[82.53733850400016,52.317731328000036],[82.44180257800008,52.47327430500013],[82.43382250300016,52.60806570200003],[82.48095662700007,52.75212664500009],[82.65453360400011,52.79037729300018],[82.77501658900013,52.666851006000115],[82.88105051400004,52.299728844000185],[83.03708651500006,52.22554732400005],[83.19589960800016,52.21234834100011],[83.34586359100012,52.23883767000012],[83.38491856600007,52.327470260999974],[83.39453864400008,52.56698398300006],[83.45234661800009,52.77176913300008],[83.6028596160001,53.012572829000135],[83.60234060800013,53.18339869800013],[83.72569255100018,53.324289438000164],[83.66593964000009,53.40621248400009],[83.56089058800018,53.42881076500015],[83.26880657600003,53.5599246860001],[83.2024535860001,53.49706845800017],[82.91130851400004,53.32541848100004],[82.67700951000012,53.240337637000096],[82.44230649800005,53.19643674900004],[82.07074762600018,53.16046799000014],[81.6508865290001,53.187377588000174],[81.30151354900005,53.30098908900004],[81.09741957100016,53.395820265000054],[80.90724156400017,53.41343349300007],[80.52037063100005,53.37728083600007],[80.132728564,53.434750014000144],[79.96999357800001,53.57526792700014],[79.83396149200007,53.585987375000116],[79.72644749100004,53.741058787000156],[79.47042862800009,53.859053520000145],[79.38603962700012,54.03348830200008],[79.38536052500007,54.296452744000135],[79.2027515440002,54.54726761799998],[78.89911659800015,54.60302822900019],[78.74540758100011,54.53220735000019],[78.49481952200011,54.31917424],[78.32113659700013,54.20149952800011],[78.0251925500001,54.17502863900006],[77.24938957600011,54.353613971000016],[77.00256364900014,54.268082014000186],[76.84095753800005,54.237903307000124],[76.83763864000008,54.39893324500002],[76.93248758600015,54.48301513400003],[76.81974059500004,54.50201657300005],[76.26663959100017,54.393326087000105],[76.05355048900014,54.37442757800005],[75.88469654699998,54.38732498000013],[75.57940651000007,54.328802364000126],[75.31140152600005,54.293652518000044],[75.08509064300017,54.36436426500006],[75.02739750100005,54.49270846900009],[75.13607759300004,54.59186973700008],[75.59610762000011,54.919237036000084],[75.65395364900019,55.02944984200019],[75.6576765550002,55.13620360500005],[75.58750963200015,55.24600435800005],[75.43247962700002,55.34232818300006],[75.25454758000006,55.40194949900018],[75.02214053900013,55.41816999000014],[74.75170849100016,55.37872911300008],[74.53443162300005,55.290717620000066],[74.33051249200014,55.11834210500007],[74.18517263700016,55.08918247000014],[73.98110162600017,55.10197258300013],[73.69611356500013,55.162445165],[73.38804660400012,55.27245613600007],[73.23484050100012,55.25567472700004],[73.04418958700018,55.17098246900014],[73.04432654700014,55.02803095400003],[73.07874264200018,54.82139440900005],[72.97049757000013,54.55280688300013],[72.76145156400014,54.47015578600008],[72.2186435370001,54.366012482000144],[71.99372857600014,54.51106584300004],[71.79801951900009,54.55522908500012],[71.49607855600016,54.573170381000125],[71.0801006260001,54.55548909200007],[70.76421351700003,54.57984958500015],[70.45323149800004,54.46170565400007],[70.28793349400013,54.43730610100016],[69.99104363400005,54.45285537000018],[69.80666355700015,54.38270571300012],[69.60704048600013,54.352602946000104],[69.35881763100019,54.351832146000106],[69.1551975660002,54.24126025900006],[68.97545653700013,54.267471811000064],[68.64774356900006,54.25461950400006],[68.52741263100012,54.29544155200011],[68.35576650900003,54.23209012100017],[68.17185263400017,54.19240801199999],[67.86691262600016,54.08394249700012],[67.6622464990001,54.14811904200013],[67.42347759300003,54.18421101399997],[67.22962160700013,54.14432690100017],[66.98822748900005,54.013593854000135],[66.70768753600004,54.047514914000146],[66.4665525870002,54.185721098000045],[66.20250654300014,54.20296049300015],[66.06777164100004,54.28171232900007],[65.96704061000008,54.38775195400012],[65.76837156800019,54.430805935000194],[65.48174249800019,54.40270610800019],[65.32727056000016,54.347792907000155],[64.979721482,54.40095529600012],[64.78639255000019,54.35249213700013],[64.57933858700011,54.34997488400012],[64.31960251800007,54.38677596500008],[64.02908357400008,54.29940585600002],[63.51821847800005,54.20052622100013],[63.15769957800006,54.184019907000106],[63.138770559000136,54.10711728600012],[62.81082155600018,54.11054716100017],[62.58591061800007,53.97441600100012],[62.44522054100008,53.93015301400004],[62.3403515330001,54.03037526300017],[62.069740615000114,54.051314933000015],[61.94609061200009,53.947262322000086],[61.831428523,54.02244430600001],[61.77157955500002,53.96425394900007],[61.82744963300013,53.85492224800009],[61.69247048200015,53.67309831600005],[61.70074861699999,53.408642230000055],[61.68484462700002,53.294919920000154],[61.78966854000004,53.164626085],[62.11425053300013,53.11297394800016],[62.13571960400009,53.00806386800019],[61.90222559799997,52.878254172000084],[61.61698155300007,52.467052083000056],[61.431755575000125,52.27071019200008],[61.3835985230001,52.104008219000036],[61.279872639000075,52.003985292000095],[61.23912452000019,51.859508774],[61.12058261600015,51.69650774700017],[61.06130948400005,51.570555570000124],[61.07923552500006,51.46500477800009],[60.855712631000074,51.12971423400006],[60.55935250700014,50.99635044300015],[60.218543485000055,51.02598684100019],[59.96664047200011,50.99635044300015],[59.655464496000036,50.92226011800017],[59.21092657300011,50.92226011800017],[58.825660607000145,50.892623552000146],[58.589580616000035,50.83126668000011],[58.51566647900012,50.76755264900015],[58.4973716340001,50.668292140000176],[58.20198062600008,50.44551909000006],[58.09576062200006,50.43607000300011],[58.01147052700014,50.50317904100018],[57.870170583,50.48244958800018],[57.760108483000124,50.60679126600013],[57.66088854200012,50.64103972300012],[57.54169050300004,50.61731960700007],[57.38360948500008,50.45649737200017],[57.37388949500013,50.36121692600011],[57.21892151600008,50.26694666600014],[57.12815053400004,50.30802721200007],[57.0410156210001,50.39782622900003],[56.843028530000026,50.50493002000019],[56.764369565000095,50.59950119000001],[56.610130477000155,50.689792727000054],[56.43762956800015,50.870310423000035],[56.12697561700014,50.99269224500017],[55.910461502000146,51.00210327800016],[55.58098263400018,51.09624395300017],[55.26091362600016,51.11506903700007],[55.1761935400001,51.19038026900006],[55.02557358900003,51.26569150200015],[54.81846950200003,51.29393600100008],[54.70550558700012,51.284520777000125],[54.416061539000054,51.38630658600016],[54.20657749399999,51.41631312900017],[53.641342512000165,51.38630658600016],[53.364440473,51.50069156900008],[53.21020557500009,51.46931190200013],[52.68145349700012,51.44495040400005],[52.49069563000012,51.36915939100004],[52.24050152000012,51.40685985100015],[51.96694553600014,51.346651969000106],[51.82489356700006,51.268933790000176],[51.65495651500015,51.24437414300019],[51.427787493000096,51.12543745100015],[51.370952490000036,50.95101943400016],[51.24496862899997,50.811719579000055],[51.24875255600017,50.69616364400002],[51.18785048500018,50.64887914900004],[51.208122621000086,50.44888710700013],[51.15110355100012,50.366396774],[51.17990159100009,50.23282008300009],[51.35678858200015,50.10357230900007],[51.528518523000116,50.13995379200003],[51.742530472000055,50.26026628900007],[51.912033509000196,50.26931941500004],[52.03735754600012,50.377338008000095],[52.27696648699998,50.488198736000186],[52.655254518,50.48693960600008],[52.791080577000116,50.406448357000045],[52.93281151899998,50.39482835700011],[52.99314848100005,50.448718966000115],[53.102008616000035,50.34479778300005],[53.2213245050001,50.34680457800005],[53.319702568000025,50.2935349010001],[53.57640053200015,50.38456723100006],[53.76125351600018,50.258664340000166],[53.8598635890001,50.12307364499998],[53.89498158400011,49.99214395900009],[54.03694152000014,49.86673040300013],[54.18866352300006,49.84154077200003],[54.48175051400017,49.64700853400012],[54.61656554799998,49.60383703900004],[54.824867577000134,49.63245838800003],[54.933189594000055,49.55132625900012],[55.08922961800016,49.556366298000114],[55.24226355600018,49.50100667700008],[55.37739559400012,49.484126530000026],[55.544071582000015,49.37418512900007],[55.70589059400004,49.34021478400018],[56.226432597999974,49.2779622220001],[56.352977543000065,49.20488325800005],[56.59036259600015,49.181102122000084],[56.67379354600013,49.19730316700003],[56.86481058200019,49.16461106300011],[56.98606151700011,49.17267613000013],[57.18572951500005,49.089133030000085],[57.405525480000165,49.070741794000185],[57.57889961500018,48.949993605000145],[57.71823852900019,48.93729133400012],[57.83421355900015,48.89471797099998],[58.04631862500008,48.86530268800004],[58.17248957000015,48.79584805900015],[58.284179602999984,48.78095894900008],[58.45693247200012,48.712095076000026],[58.30028559800007,48.483315220000065],[58.2895394950001,48.29278450200013],[58.1473125120001,47.89723109200003],[58.22389963799998,47.81315037700017],[58.32786960300007,47.81532162500008],[58.415370637000194,47.88471892200005],[58.52980457000007,48.05051028500003],[58.53453062300002,48.144204037000065],[58.63803053100003,48.251444118000165],[58.72932052100015,48.38983822400019],[58.81184052500009,48.44935560400012],[58.95497158000012,48.49160408400007],[59.236240591000126,48.68474811100015],[59.29895063800012,48.85216858100017],[59.3986734930001,48.9043202790001],[59.528400543000146,49.028989522000074],[59.55612955600003,49.16682790800013],[59.52608160600005,49.33872381100019],[59.53952450200012,49.481124467000086],[59.62533155400007,49.624116215000186],[59.896400627000105,49.867950305000136],[60.11082463000014,49.784880113000156],[60.227020607000156,49.81037065400011],[60.75992155900002,50.08463205800018],[60.87952058900015,50.088973045000046],[61.05950955400016,49.99612201000019],[61.26710163600006,49.96879348500005],[61.529899614000044,50.04355050600009],[61.75268557200019,50.203144793000035],[61.98720150000008,50.30705524700005],[62.23751061000007,50.32758537700016],[62.383201498,50.38960626400018],[62.57580154000016,50.421397649000085],[62.826221626,50.36260882400012],[63.004589532000125,50.41677855000006],[63.13885856900015,50.57889813600008],[63.259899621000045,50.62700975800004],[63.41761049400003,50.629881733000104],[63.50559952200007,50.661300291000146],[63.95119054800017,50.657997151000075],[64.14441655000019,50.59633132200014],[64.16731255700006,50.4872787380001],[64.31298852600014,50.45567728600014],[64.31770351400013,50.368536842000026],[64.463180496,50.37812708000018],[64.62835662700007,50.30070696100006],[64.96794155600003,50.35782175200018],[65.400672563,50.26178559300001],[65.60977154300014,50.33397540500005],[66.05496962500018,50.20918361900016],[66.3825835190001,50.24422634400014],[66.52156050299999,50.20381651800005],[66.64729357700014,50.116382372000146],[66.77411663400017,49.931851085000176],[66.90534957700015,49.80884866800011],[67.04416663400013,49.76230882100009],[67.34602361100019,49.72392858900008],[67.49501059900007,49.76451007600002],[67.540672525,49.81198048200008],[67.69458756900013,49.865532126000176],[67.99035660200008,49.85746420900011],[68.212226585,49.9796426850001],[68.533256494,49.889011513000185],[68.72673060100004,49.926442075000125],[68.79382354500007,49.97241362900007],[68.8999635850002,49.966470525000034],[69.142951606,49.89699276100009],[69.22026862700017,49.84487107000007],[69.35971851800008,49.843699951000076],[69.63619257700014,49.94786219700012],[69.71758253400014,49.93739001400007],[69.8048785470001,50.00208104000012],[69.96576649600007,50.04242163200013],[70.11679850100012,49.96137348900004],[70.36717248700012,49.937795196000195],[70.58323649300007,49.811999425000124],[70.75280759100008,49.804984443000194],[70.94750260600006,49.66950774100019],[71.20809161700015,49.61477726600015],[71.28913154500003,49.54973638000007],[71.33809661200013,49.443358126000135],[71.6000215310001,49.40858663900008],[71.59989949100014,49.29364442700012],[71.6738205010002,49.24803178700017],[71.94735754100003,49.232543538000016],[72.10077654400004,49.13958270000006],[72.28943658800011,49.10827143000017],[72.40196950600017,48.99959301399997],[72.79733264700008,48.956341556000154],[72.82042663500005,48.799682109000116],[72.99961060200008,48.738566635000154],[73.25070962300009,48.80203926800016],[73.41741964200003,48.772452826000176],[73.58940154300012,48.894188067000016],[73.8126065960002,48.95190149400014],[74.01412163000003,48.97205494200017],[74.09332256900007,49.04587352500005],[74.05323762500007,49.19849339800004],[74.05785354000017,49.3478330960001],[74.15264850600005,49.45177724500019],[74.37612949100003,49.51557492800009],[74.50372351500016,49.57850676000004],[74.73934954200013,49.633828327000174],[74.92556760300005,49.620957076000195],[75.19113948800015,49.56051651300004],[75.49542252300006,49.62058709900003],[75.72653958900008,49.584335870000075],[75.92829853700005,49.46933649400006],[75.9470066090002,49.31448468800005],[76.15186350800008,49.25686296000015],[76.3652416170001,49.34295784600016],[76.59047659900017,49.356263950000084],[76.60173064600008,49.27707306899998],[76.44259652600016,49.161963722],[76.39163254300018,49.017621315000156],[76.44938653800011,48.92664849600004],[76.59195751400006,48.8691977580001],[76.81094362000005,48.91095019700015],[76.99189751,48.92041822700014],[77.13925958200008,48.889279122],[77.31289657400004,48.75987863],[77.41438264600004,48.71614739100005],[77.71481352500007,48.720598349000056],[77.84925858200012,48.7531876920001],[78.0450365390002,48.70408817900005],[78.27586359100002,48.594758155000136],[78.51180259900008,48.631665351000095],[78.56217951300005,48.681306837000136],[78.53849057800016,48.804069029000175],[78.37183353300014,48.88698985600013],[78.1789325800001,48.86814867900006],[78.06343850400015,48.89617994300016],[77.99932851200003,48.96299092000004],[77.87003363200006,49.012121110000066],[77.78695656600001,49.088660123000125],[77.76780660000009,49.16730483900005],[77.80879259700009,49.27443411100012],[77.99497260400005,49.43774694500013],[78.11717957900004,49.647626448000096],[78.11215949000007,49.77160904500005],[78.02297956000012,49.88132849300007],[78.00528754200019,49.973432533],[78.0973436380001,50.050352756000166],[78.45094260500014,50.12098269600011],[78.577926595,50.17105534700005],[78.64576754000018,50.251905341],[78.68448656800018,50.38364723400002],[78.62380259500009,50.51978794900003],[78.65448756900003,50.596442298000056],[78.91742653100016,50.568693840000094],[78.9978865990002,50.540700462000075],[79.29389149800011,50.574498978000065],[79.4986575370001,50.54636964700012],[79.69915752300017,50.442867894000074],[80.12351249400007,50.405566414000134],[80.3799286580001,50.324595217000194],[80.82586652700019,50.289655757000105],[81.09217065500019,50.3362184020001],[81.19231461700014,50.300214943000185],[81.20748150300005,50.31032821200006],[81.73696163400012,50.242604278000044],[82.13135565900012,50.277703666000036]],[[67.87857855800013,53.44241425900003],[68.05396250600006,53.42079163100016],[68.21330248600015,53.35074121600013],[68.38955664300005,53.37452251900004],[68.61873648400012,53.433282008],[68.77586364100017,53.517412846000184],[68.97631048500006,53.53454528900011],[68.9903795100002,53.44842223900014],[69.20644351600015,53.373271604000195],[69.22286249100017,53.30578018400007],[69.04853851900003,53.15723693400014],[69.12870052600005,53.09153069200016],[69.37146760000013,53.09186647100012],[69.6856535180001,53.045772542000066],[69.81514755100011,53.15432589900007],[70.05420663900003,53.20046576200008],[70.24288160300011,53.127657533000104],[70.50921657700019,53.160516941000026],[70.67098261400014,53.147245873000145],[70.82987248500007,53.01403396300009],[70.71678150100018,52.85342077200005],[70.84295663600005,52.64451541400018],[70.70903762800009,52.58452445600017],[70.67365258600012,52.52150411100007],[70.68245660100013,52.39538077600008],[70.55851759,52.30988016700013],[70.43512759300006,52.29854967800014],[70.19687652099998,52.35102994700014],[70.06249952600007,52.30991805300005],[69.65763851500003,52.30547799100003],[69.47000156500002,52.19820706500013],[69.08161954400009,52.216464359000156],[69.01170357500018,52.331700440000134],[68.66298656300006,52.50559291200011],[68.53807860300014,52.514253095000186],[68.39119748500008,52.47403705800008],[68.17289752200014,52.51570199000008],[67.89769751200004,52.600973774000124],[67.65666163700007,52.554803904000096],[67.51056657300018,52.57157290700013],[67.3278425920002,52.49865353500019],[67.02120960700017,52.48815151300005],[66.90940055100015,52.54027337200006],[66.86411262500008,52.65936697300003],[66.78771258300003,52.725068186000044],[66.79778260200004,52.80538861100018],[66.6548305840002,52.92244809200008],[66.77123258800009,53.02443339000013],[66.7895586140001,53.119463217000146],[66.9919505630001,53.25424992000006],[67.11466263100004,53.46426973600012],[67.40570058200007,53.65202889400007],[67.6103135680001,53.63861248400008],[67.87857855800013,53.44241425900003]]]},"properties":{"objectid":369,"eco_name":"Kazakh steppe","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Palearctic","eco_biome_":"PA08","nnh":3,"eco_id":732,"shape_leng":101.34309317,"shape_area":105.189851573,"nnh_name":"Nature Could Recover","color":"#BDFC53","color_bio":"#FEFF73","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":806305.8594129123,"percentage":7.610034935415887}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[78.51180259900008,48.631665351000095],[78.70334652100019,48.53009445400011],[78.91179657400016,48.495705181000176],[79.11549358500014,48.41630559200007],[79.22843956300011,48.28288513900003],[79.46434755700005,48.19794242900019],[79.53354653800017,48.143933133000075],[79.69924955600004,48.143453018],[79.86210658200014,48.20014368500006],[79.85645265300013,48.25302293300018],[79.73825859800019,48.33143882200011],[79.72820249300008,48.45275463300004],[79.61131249500016,48.54219574300015],[79.5687636080001,48.62200721900018],[79.37133056000016,48.70488630400007],[79.21199058100018,48.82715949600009],[79.17205064400014,48.90478916300003],[79.07131961400012,48.98128995500019],[78.86258658800011,49.02720032100012],[78.54889654400017,49.312653578000095],[78.40840159700014,49.36625417200014],[78.17050155900017,49.38245538500013],[77.99497260400005,49.43774694500013],[77.80879259700009,49.27443411100012],[77.76780660000009,49.16730483900005],[77.78695656600001,49.088660123000125],[77.87003363200006,49.012121110000066],[77.99932851200003,48.96299092000004],[78.06343850400015,48.89617994300016],[78.1789325800001,48.86814867900006],[78.37183353300014,48.88698985600013],[78.53849057800016,48.804069029000175],[78.56217951300005,48.681306837000136],[78.51180259900008,48.631665351000095]]],[[[77.71481352500007,48.720598349000056],[77.41438264600004,48.71614739100005],[77.31289657400004,48.75987863],[77.13925958200008,48.889279122],[76.99189751,48.92041822700014],[76.81094362000005,48.91095019700015],[76.59195751400006,48.8691977580001],[76.44938653800011,48.92664849600004],[76.39163254300018,49.017621315000156],[76.44259652600016,49.161963722],[76.60173064600008,49.27707306899998],[76.59047659900017,49.356263950000084],[76.3652416170001,49.34295784600016],[76.15186350800008,49.25686296000015],[75.9470066090002,49.31448468800005],[75.92829853700005,49.46933649400006],[75.72653958900008,49.584335870000075],[75.49542252300006,49.62058709900003],[75.19113948800015,49.56051651300004],[74.92556760300005,49.620957076000195],[74.73934954200013,49.633828327000174],[74.50372351500016,49.57850676000004],[74.37612949100003,49.51557492800009],[74.15264850600005,49.45177724500019],[74.05785354000017,49.3478330960001],[74.05323762500007,49.19849339800004],[74.09332256900007,49.04587352500005],[74.01412163000003,48.97205494200017],[73.8126065960002,48.95190149400014],[73.58940154300012,48.894188067000016],[73.41741964200003,48.772452826000176],[73.25070962300009,48.80203926800016],[72.99961060200008,48.738566635000154],[72.96987161000004,48.62567648100003],[72.9139785650001,48.59031792500008],[72.70408648900008,48.55032451200009],[72.58917964900007,48.483395016000145],[72.51093257100018,48.3797640140001],[72.34950264800011,48.24197592000013],[72.25833151300014,48.203862568000034],[72.13638253300007,48.102951662],[72.19290153900005,47.995894977000034],[72.41075860200016,47.89208896200017],[72.41313956500005,47.85135861200007],[72.28412648500012,47.74674407800006],[72.26645659500002,47.66821050699997],[72.32003053500006,47.505157344000054],[72.44669349700007,47.407298625000124],[72.4551466470001,47.311705030000155],[72.70168255900012,47.346175272000096],[72.77847252700008,47.317815941000106],[72.93073264800017,47.34855942100012],[73.03340962100015,47.45484899400009],[73.20658158500004,47.50811716200019],[73.34797658000008,47.48124712700013],[73.47099257700006,47.527992331],[73.4040065860001,47.639909346000195],[73.49295852700016,47.755621017000124],[73.69319163300014,47.77595316700018],[73.68441762500015,47.83716050600003],[73.481697608,47.88876201700015],[73.38864155100003,47.98015963000006],[73.39540055000003,48.21491360400012],[73.28488163600014,48.33649378000018],[73.33769952900019,48.40707326100011],[73.36025958900007,48.60661821200006],[73.53843655500015,48.71663940900004],[73.80888352199997,48.739409352000166],[73.99616960500015,48.72043825500015],[74.19049849900011,48.655427543000144],[74.51547259600017,48.797557129000154],[74.65766152600014,48.8227492740001],[74.8271335500001,48.779917916000045],[75.04538758000007,48.76780975400004],[75.18713360900006,48.70751805400005],[75.11071764200005,48.55752674700011],[75.16931150400006,48.33880483899998],[75.4082104970002,48.234242776000144],[75.51429756300018,48.15834531300004],[75.62003359500005,47.92592921900018],[75.72329763700009,47.87832906200015],[75.81687152700016,47.87924101300001],[75.9080966410001,47.95280059500004],[75.93311360500019,48.048153461000084],[75.90381650600006,48.21481453000007],[75.93199160300009,48.32640347800003],[76.08114656400005,48.41952457800011],[76.25418056200004,48.407554214000186],[76.38363654200003,48.485133925000184],[76.53352357900019,48.50855732100007],[76.68485263800011,48.48737306700019],[76.79485355100019,48.43383349300018],[76.90225959300011,48.29773133400016],[77.06578851300003,48.19921245500012],[77.29759960100012,48.20554163100013],[77.3340375780001,48.32819251100017],[77.42820758900001,48.42613555300011],[77.57826260000007,48.470196033000036],[77.69053651600018,48.56467583900013],[77.71481352500007,48.720598349000056]]],[[[67.87857855800013,53.44241425900003],[67.6103135680001,53.63861248400008],[67.40570058200007,53.65202889400007],[67.11466263100004,53.46426973600012],[66.9919505630001,53.25424992000006],[66.7895586140001,53.119463217000146],[66.77123258800009,53.02443339000013],[66.6548305840002,52.92244809200008],[66.79778260200004,52.80538861100018],[66.78771258300003,52.725068186000044],[66.86411262500008,52.65936697300003],[66.90940055100015,52.54027337200006],[67.02120960700017,52.48815151300005],[67.3278425920002,52.49865353500019],[67.51056657300018,52.57157290700013],[67.65666163700007,52.554803904000096],[67.89769751200004,52.600973774000124],[68.17289752200014,52.51570199000008],[68.39119748500008,52.47403705800008],[68.53807860300014,52.514253095000186],[68.66298656300006,52.50559291200011],[69.01170357500018,52.331700440000134],[69.08161954400009,52.216464359000156],[69.47000156500002,52.19820706500013],[69.65763851500003,52.30547799100003],[70.06249952600007,52.30991805300005],[70.19687652099998,52.35102994700014],[70.43512759300006,52.29854967800014],[70.55851759,52.30988016700013],[70.68245660100013,52.39538077600008],[70.67365258600012,52.52150411100007],[70.70903762800009,52.58452445600017],[70.84295663600005,52.64451541400018],[70.71678150100018,52.85342077200005],[70.82987248500007,53.01403396300009],[70.67098261400014,53.147245873000145],[70.50921657700019,53.160516941000026],[70.24288160300011,53.127657533000104],[70.05420663900003,53.20046576200008],[69.81514755100011,53.15432589900007],[69.6856535180001,53.045772542000066],[69.37146760000013,53.09186647100012],[69.12870052600005,53.09153069200016],[69.04853851900003,53.15723693400014],[69.22286249100017,53.30578018400007],[69.20644351600015,53.373271604000195],[68.9903795100002,53.44842223900014],[68.97631048500006,53.53454528900011],[68.77586364100017,53.517412846000184],[68.61873648400012,53.433282008],[68.38955664300005,53.37452251900004],[68.21330248600015,53.35074121600013],[68.05396250600006,53.42079163100016],[67.87857855800013,53.44241425900003]]]]},"properties":{"objectid":370,"eco_name":"Kazakh upland steppe","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Palearctic","eco_biome_":"PA08","nnh":2,"eco_id":733,"shape_leng":33.5475524905,"shape_area":9.12043328626,"nnh_name":"Nature Could Reach Half Protected","color":"#54FC51","color_bio":"#FEFF73","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":72112.5430157015,"percentage":0.6806089342209996}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[96.66651153500015,48.04015729300016],[96.79643254300004,48.114738965000186],[96.79666153600004,48.223847875000104],[96.66944855400004,48.30243928100009],[96.56789358200007,48.30281328199999],[96.4055406440001,48.36452001500015],[96.25442465200013,48.317598456000155],[96.20318557500008,48.21935081600009],[96.2959135640001,48.12850288800013],[96.50524153800012,48.06275238900008],[96.66651153500015,48.04015729300016]]],[[[97.94947061400012,48.254544919000125],[97.79618857100007,48.197049422000134],[97.68069466300017,48.275888094000095],[97.56237756100006,48.310480544000086],[97.18988762800018,48.48638199100009],[97.11746262000008,48.40360616999999],[97.15884357300007,48.28978931300003],[97.28301258400006,48.10353873000008],[97.32440158400016,47.989722711000184],[97.31404859200006,47.79312735100012],[97.13815251000005,47.66896538100008],[97.08641856500014,47.606881127000065],[97.07607261400005,47.503410388000134],[97.14849862800008,47.4413299900001],[97.36578354199997,47.4413299900001],[97.53392753800006,47.397353496000164],[97.65259567300012,47.19843836100006],[97.79322858600005,47.18448031300011],[98.07170860200011,46.99828840400011],[98.12163557600019,46.99036834300017],[98.34116365500012,47.11813503500019],[98.58773058100007,47.048894479000126],[98.70041655200009,47.09191292100019],[98.98706858800006,47.247358668],[99.15179461100018,47.3029890250001],[99.55771660400012,47.335665204],[99.76645667100007,47.22760939600005],[100.05928063800008,47.18055121200018],[100.15402263100009,47.08237968000003],[100.36406658600015,46.92141377900015],[100.59413960300009,46.82341742800014],[100.70940351200005,46.66187552300005],[100.82682760500006,46.61960826700016],[100.97055059100012,46.50439699600008],[101.11602053200005,46.47174294500019],[101.3139725870002,46.35751554200016],[101.5649415200001,46.36376743600016],[101.45222453600007,46.22199777000009],[101.5757905530001,46.10813246499998],[101.70533756000003,46.11787558900005],[101.94936359600007,46.35194543200009],[102.15676155200009,46.427698559000135],[102.16546666200009,46.51209091300012],[102.06890864600018,46.55985904400018],[101.85889453000004,46.58991923100018],[101.63530759700012,46.685187775000145],[101.71631651200005,46.8474384540001],[101.68258656100011,46.913986910000176],[101.69840958200007,47.034649603000105],[101.59601558200012,47.12414284800013],[101.40639463600013,47.15514197500005],[101.27728265000019,47.280862980000165],[101.1397015880001,47.324473184],[100.97490666600004,47.30100083700006],[100.75959066000013,47.345195260000025],[100.57803360800017,47.42158859600005],[100.40745567600015,47.40768368900018],[100.32108251100016,47.5213744830001],[100.5448075760001,47.591447026000026],[100.62601464000016,47.657231220000085],[100.60283666600014,47.72767089000007],[100.48971567400008,47.778837212000155],[100.44429766100018,47.92884025400008],[100.34326957600018,47.933268246000125],[100.21932955900013,47.87951912400001],[100.131706651,47.78430741000017],[100.01200066900014,47.77160815600013],[99.81747463300019,47.85346079300018],[99.69581566700015,47.85466979900002],[99.47044355700007,47.768633083000054],[99.37248257800019,47.80271339900008],[99.36585953400004,47.869754040000146],[99.46097552700007,47.93920850100005],[99.60578162200011,47.99845883300003],[99.55165866700008,48.064068516000134],[99.34977751100013,48.107368925],[98.93630258600018,48.132606835000104],[98.94140666200008,48.214944785000114],[99.1587145430002,48.25558695700005],[99.64369162900005,48.23477385300015],[99.87685354400008,48.265177195000035],[99.9456636050001,48.34969192500017],[99.89080052800011,48.36759114400013],[99.50637862000019,48.379413148000026],[99.25846857800013,48.40281223700015],[98.99896250900014,48.34660570800003],[98.48536658800003,48.286650290000125],[98.39643057200016,48.24434481300011],[98.1682055980001,48.261839186000145],[97.94947061400012,48.254544919000125]]]]},"properties":{"objectid":372,"eco_name":"Khangai Mountains alpine meadow","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Palearctic","eco_biome_":"PA10","nnh":2,"eco_id":755,"shape_leng":18.6486521569,"shape_area":4.43649577822,"nnh_name":"Nature Could Reach Half Protected","color":"#C27F4B","color_bio":"#D6C39D","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":37146.57204845628,"percentage":0.7606851599838048}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[124.57034999800021,-15.247000000999947],[124.5047399980001,-15.281180000999882],[124.4609699990001,-15.36902000099991],[124.62529999800006,-15.374750000999938],[124.57034999800021,-15.247000000999947]]],[[[128.1262299970001,-15.04065000299994],[128.12687999700006,-15.155970002999936],[128.2013499970003,-15.130800002999877],[128.1262299970001,-15.04065000299994]]],[[[125.16739999800006,-14.446710001999918],[125.0956099980001,-14.551890001999936],[125.1003399980001,-14.632590001999915],[125.21076999800005,-14.607210001999817],[125.20812999800012,-14.487310001999845],[125.16739999800006,-14.446710001999918]]],[[[132.95841977400016,-14.546582300999887],[132.68486027000006,-14.487785428999928],[132.3919219740003,-14.372296381999945],[132.30445865900003,-14.31269736199988],[132.06182854500003,-14.189551445999939],[131.83773802800022,-14.039882674999888],[131.752136166,-13.950120705999893],[131.56915284900003,-13.666136796999979],[131.41787726600012,-13.52689745899994],[131.3060455780003,-13.480330454999944],[131.05734244100006,-13.416253151999967],[130.90980535500012,-13.34194942399995],[130.851669312,-13.373127085999954],[130.72850043100004,-13.522858553999981],[130.5931243120001,-13.622074136999913],[130.36193851400003,-13.730032043999927],[130.2349701160001,-13.87130550199987],[130.12014776600006,-14.064403763999906],[129.92611693300012,-14.34846981499993],[129.77959549700017,-14.539892271999975],[129.71941999600006,-14.62829000399995],[129.62307999600011,-14.685530003999872],[129.67246999600013,-14.763400003999948],[129.64547999600018,-14.833720003999872],[129.60591999700023,-15.120620002999942],[129.47997999600022,-14.938380002999907],[129.3668299970002,-14.902740002999906],[129.3166199970002,-14.859170002999917],[129.2346199970001,-14.916520002999903],[129.1890599970002,-14.98568000299997],[129.06374999700006,-14.890160002999892],[128.91136999700018,-14.856750002999888],[128.81927999700008,-14.86299000299988],[128.67726999700005,-14.79578000299989],[128.54879999700006,-14.768990002999885],[128.4340099970001,-14.811650002999897],[128.47627999700012,-14.911680002999844],[128.3546599970001,-14.887710002999938],[128.35955999700002,-15.05417000299991],[128.28711999700022,-14.974030002999882],[128.23531999700026,-14.997350002999838],[128.19472999700008,-15.097370002999924],[128.22377999700007,-15.135650002999967],[128.1895899970002,-15.230620002999956],[128.06676999700005,-15.312370002999955],[128.0998099970003,-15.167250002999936],[128.0769299970001,-15.096910002999948],[128.10770999700026,-14.950670002999914],[128.1839599970001,-14.744400002999953],[128.1303299970001,-14.664350002999981],[127.83006999700024,-14.454050002999907],[127.77989999700014,-14.33355000299997],[127.67036999700008,-14.191780002999849],[127.53794999700017,-14.088230002999978],[127.44853999700013,-14.054390002999924],[127.4560799970003,-13.980570002999968],[127.36022999700003,-13.908950002999916],[127.31355999700031,-13.959560002999922],[127.16975999700014,-13.910200002999886],[127.11363999700029,-13.964700002999962],[127.08134999700007,-13.84011000299995],[127.01605999700007,-13.824300002999962],[126.96411999700001,-13.747260002999894],[126.743569997,-13.789250002999893],[126.80889999700014,-13.916170002999934],[126.70350999700008,-14.131950002999929],[126.57475999700011,-14.230310002999886],[126.45544999700007,-14.099170002999927],[126.48710999700006,-13.99427000299994],[126.43086999700006,-13.989670002999901],[126.34967999700007,-14.049990002999948],[126.30186999700015,-14.141000002999817],[126.35269999700017,-14.178530002999878],[126.25737999700004,-14.238320001999966],[126.19151999700023,-14.08223000299995],[126.20065999700012,-14.005980002999877],[126.08877999700007,-13.921270002999847],[126.10077999700013,-14.074930001999974],[126.16468999700021,-14.149770001999968],[126.01516999800003,-14.413140001999864],[126.04519999800016,-14.475340001999939],[125.90197999800012,-14.569510001999959],[125.79473999800018,-14.466440001999956],[125.68857999800002,-14.4945600019999],[125.65960999800006,-14.44009000199992],[125.67607999800009,-14.351840001999904],[125.62961999800007,-14.233820001999959],[125.58996999800013,-14.245470001999934],[125.58945999800005,-14.370580001999883],[125.62160999800005,-14.410220001999846],[125.60697999800016,-14.515150001999928],[125.49611999800015,-14.512180001999866],[125.42428999800006,-14.599780001999932],[125.34472999800005,-14.550280001999965],[125.25850999800002,-14.593250001999934],[125.18275999800028,-14.707440001999942],[125.19870999800003,-14.83686000199998],[125.3055799980001,-14.88195000199994],[125.25652999800013,-14.946620001999861],[125.28548999800012,-14.999510001999852],[125.373699998,-15.003000001999965],[125.36851999800001,-15.109190001999934],[125.31517999800019,-15.155440001999978],[125.23061999800007,-15.102360001999955],[125.14535999800023,-15.136090000999957],[125.09642999800008,-15.057290001999945],[124.97857999800021,-15.13413000099996],[124.867169998,-15.129400000999965],[124.87798999800009,-15.309760000999916],[124.92025999800012,-15.356350000999896],[125.02521999800013,-15.301750000999903],[125.08880999800022,-15.338630000999956],[125.03034999800002,-15.512390000999972],[124.95267999800024,-15.387030000999971],[124.78208999800017,-15.311740000999976],[124.71549999800004,-15.258790000999966],[124.66865999800007,-15.429740000999914],[124.6215899990001,-15.50107000099996],[124.48396999900001,-15.476080000999957],[124.42811999900016,-15.559040000999971],[124.43544999900018,-15.640220000999818],[124.39268999900003,-15.746410000999958],[124.46130999900004,-15.82837000099994],[124.47912999900007,-15.929190000999881],[124.58058999900004,-15.999810000999958],[124.58797999900003,-16.112380000999963],[124.50945999900011,-16.15720000099998],[124.44991999900014,-16.12140000099987],[124.40628999900014,-16.240770000999873],[124.4177399990001,-16.359570000999952],[124.57089999900018,-16.32945000099994],[124.67294999900002,-16.350470000999906],[124.69982999900014,-16.40084000099995],[124.45275999900014,-16.408080000999917],[124.4034799990003,-16.367640000999927],[124.33953999900007,-16.42261],[124.21907999900009,-16.413189999999872],[124.12633999900027,-16.28074],[123.94168999900035,-16.289149999999836],[123.87998999900003,-16.35299],[123.78557999900022,-16.28583],[123.81125999900007,-16.22176],[123.71945999900004,-16.14112],[123.60519999900009,-16.16178],[123.56648999900017,-16.200689999999895],[123.59243999900002,-16.316889999999887],[123.6605799990001,-16.31458],[123.66589999900009,-16.43475999999987],[123.62937999900021,-16.514839999999822],[123.50290999900005,-16.48767],[123.47155999900008,-16.54203],[123.61628999900017,-16.56805],[123.52190999900017,-16.63575999999989],[123.6238899990002,-16.68451],[123.71210999900029,-16.77176],[123.78900999900009,-16.90755],[123.82927000000018,-17.13320999999985],[123.65912,-17.009639999999877],[123.60055000000034,-17.01021],[123.58819000000017,-17.093979999999874],[123.62456,-17.19686],[123.56768000000011,-17.4131],[123.52038000000016,-17.4257],[123.42614,-17.32569],[123.29639,-17.11092],[123.23505000000011,-16.96973],[123.16586000000018,-16.92316],[123.1529800000003,-16.802],[123.10010000000034,-16.71111],[123.05012000000033,-16.69016],[122.96046000000013,-16.5739999999999],[122.9975,-16.48584],[122.98517,-16.38289],[122.92853,-16.391],[122.9057,-16.48632],[122.7789,-16.57914],[122.7415,-16.68389999999988],[122.77466,-16.735129999999856],[122.71613000000013,-16.78513],[122.57694000000015,-16.78087],[122.53383000000031,-16.8360899999999],[122.57103000000018,-16.931409998999982],[122.48440000000016,-16.94141999899989],[122.37012000000016,-16.99375999899985],[122.25710000000015,-17.110839998999893],[122.17358,-17.26279999899998],[122.14944,-17.35575999899993],[122.14717,-17.564259998999944],[122.19962000000021,-17.68264999899992],[122.21320000100002,-17.878519998999934],[122.2552300010002,-17.958569998999906],[122.35347000100035,-17.976599998999916],[122.38290000100005,-18.068339998999875],[122.31303000100013,-18.172859998999968],[122.21804000100008,-18.202379998999902],[122.13515000100006,-18.304679998999973],[122.06351000100005,-18.325869998999906],[122.01846000100011,-18.390219998999896],[121.90486000100009,-18.464099997999938],[121.82373000100017,-18.44663999799991],[121.75992000100007,-18.55775999799988],[121.78060000100015,-18.66285999799993],[121.65243000100008,-18.76672999799996],[121.51047000100016,-19.095419997999954],[121.31730000200002,-19.359809997999946],[121.19836000200007,-19.47655999799997],[120.96412000200007,-19.630649997999967],[120.64209000200003,-19.766019996999887],[120.19460000200002,-19.913849996999943],[119.97795000200006,-19.932309996999948],[119.76473000300018,-19.97657999699993],[119.60291000300003,-20.079139996999857],[119.54338637900003,-20.064235464999967],[119.47065730800023,-20.07426085999998],[119.37258149700006,-20.136926649999964],[119.39915464400019,-20.25716019099991],[119.5026550560001,-20.252923975999977],[120.02786259400023,-20.08935934999994],[120.20686333300011,-20.089254408999977],[120.39736169700006,-19.996795646999942],[120.6534194510001,-19.912572774999887],[120.78090669000005,-19.857097651999936],[121.03435515800004,-19.856668497999976],[121.07146452500012,-19.749406791999945],[121.14981838900019,-19.766138076999823],[121.25948335400017,-19.747577693999972],[121.27616116200022,-19.704742479999936],[121.37350456200011,-19.676456406999876],[121.7007446240001,-19.685032099999887],[121.93840024500003,-19.701847035999833],[121.96566775000008,-19.545619926999905],[121.85272981800006,-19.468116826999903],[121.85505680200004,-19.388706173999935],[121.98514561600018,-19.24728972099996],[122.10074614200005,-19.16390805599991],[122.28833766200012,-19.073768566999888],[122.74119562900012,-18.900247581999906],[123.09499358300002,-18.83789627999994],[123.23018647300034,-18.825372709999954],[123.29765308300023,-18.91488271999998],[123.5111924590002,-18.925474092999934],[123.72061917200028,-18.877140014999952],[123.75351713600003,-18.811872481999842],[123.88830568300023,-18.843219793999936],[124.02780921800013,-18.900381021999863],[124.27593232800007,-18.846282876999908],[124.47943135800006,-18.754880905999926],[124.635154714,-18.811634100999925],[124.74182130500014,-18.91599466399998],[124.84188077700003,-18.803192183999897],[124.81996914100012,-18.72792822499997],[124.94226831700007,-18.612916947999963],[124.96047967800007,-18.548442844999897],[125.12667085700014,-18.53657725499994],[125.27157585800012,-18.58248711799996],[125.39311965700017,-18.55034251899997],[125.56927490700014,-18.420423522999954],[125.6166762470001,-18.45046426399989],[125.71056362100023,-18.409439038999892],[125.76602164500014,-18.326004065999882],[125.82509612500019,-18.38082690999994],[125.95967110000015,-18.442949216999978],[126.05712111900004,-18.393808298999943],[126.14369964000014,-18.425647795999964],[126.1464386790002,-18.53857985899998],[126.20323948500004,-18.58250421699995],[126.3595656660001,-18.627120919999868],[126.4201964990001,-18.688346867999883],[126.55910491800023,-18.652606934999937],[126.62348179100024,-18.756759625999962],[126.67616272300006,-18.77087206899995],[126.79982764600027,-18.708980598999972],[126.96272272600015,-18.737564061999933],[126.94692233500018,-18.805658139999935],[127.09021750800002,-18.847389289999967],[127.2159653340002,-18.749473572999932],[127.20030207200023,-18.661012643999925],[127.28503422800009,-18.593772848999947],[127.38137062600015,-18.56580931099984],[127.44613641900003,-18.47537226299994],[127.60559843800002,-18.305803176999916],[127.82748418000006,-18.13950152399991],[127.82019812600015,-18.019088778999958],[127.92910771400011,-17.762697257999832],[128.07336445900012,-17.481636118999972],[128.16250616700017,-17.379690382999968],[128.26324457300007,-17.13900755499992],[128.31983951900008,-17.09735485899995],[128.3453826980001,-16.996988273999875],[128.23980709600005,-16.86257741599991],[128.17172223700027,-16.883315920999962],[128.17755118000002,-16.75992005699993],[128.27847281400022,-16.670902400999978],[128.25762936800004,-16.628410342999928],[128.32749940500025,-16.451736420999964],[128.38525390300015,-16.487846329999968],[128.44389336200015,-16.301921802999914],[128.52629082300018,-16.317806179999934],[128.472946212,-16.484281506999935],[128.50183108800024,-16.61505126599991],[128.61703498300005,-16.552207946999886],[128.70933532700008,-16.429237380999894],[128.83409123900003,-16.299737982999943],[128.96769709900002,-16.12276080299995],[129.06840516300008,-16.057695440999908],[129.17193960500015,-16.02203278999997],[129.4029693320001,-16.083801213999948],[129.4912872650001,-16.143463096999824],[129.59065238100027,-16.30961035599995],[129.59710711700006,-16.43561366199998],[129.5212706750001,-16.666648920999933],[129.51679993500022,-16.76658065299989],[129.58805851800003,-16.912750315999972],[129.81973264600015,-17.01952553599989],[129.97250372700012,-17.006278944999963],[130.1525421460002,-16.96599602099991],[130.4851226530002,-17.000080191999928],[130.61090082200008,-16.941473086999906],[130.63571159000003,-16.870374766999873],[130.56375127500007,-16.712326102999896],[130.34431455900005,-16.52388381999998],[130.24575812900002,-16.302232771999968],[130.2885589760001,-16.07054908999993],[130.30343618400025,-15.849446385999954],[130.42616267000017,-15.70417878399985],[130.5836182290002,-15.669624388999921],[130.70912163900016,-15.685499209999875],[130.743514935,-15.76762694099989],[130.6897735250003,-15.888841666999951],[130.67718507900008,-15.975950259999934],[130.77520758100002,-16.040565513999923],[131.20742796200034,-15.908518854999897],[131.29411293400028,-15.860549893999973],[131.35652156800018,-15.785573936999981],[131.397689957,-15.647292148999838],[131.30401615300002,-15.413610387999938],[131.28120413300007,-15.32123946799993],[131.32025139600012,-15.138951346999932],[131.43148796900016,-14.978055014999939],[131.6069183530003,-14.917827519999832],[131.72625737600015,-14.962959374999969],[131.75225820700007,-15.002136223999969],[132.00186156100006,-14.933716759999982],[132.29180902600024,-14.936798114999874],[132.49072265200016,-14.910765599999934],[132.62319947000015,-14.787815987999977],[132.69686885500005,-14.755592263999972],[132.8559722980002,-14.773215383999911],[132.93959049900002,-14.64646726199993],[132.95841977400016,-14.546582300999887]]]]},"properties":{"objectid":375,"eco_name":"Kimberly tropical savanna","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Australasia","eco_biome_":"AU07","nnh":2,"eco_id":186,"shape_leng":151.51384062,"shape_area":28.6514829222,"nnh_name":"Nature Could Reach Half Protected","color":"#E8FC39","color_bio":"#FEAA01","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":340413.5637906283,"percentage":1.5878227227999284}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[30.11575560600005,69.62677127600017],[30.163217462000034,69.4244587880001],[30.019134558000076,69.33801152700016],[29.96973245900017,69.17541266300009],[29.740528478000044,69.14342882900019],[29.799966565000034,68.99902691000017],[30.118497494000053,68.9887652810001],[30.04720454599999,69.07068581200014],[30.372373606999986,69.10155669700009],[30.715726536000147,69.06613158900018],[30.943037548000063,69.09825238300004],[31.241376472000127,69.09663551400013],[31.79326260199997,69.00764115900012],[31.919853480000086,68.92078368800003],[32.211547567000025,68.91391605900014],[32.42247044900006,68.87738537800016],[32.96014053700014,68.95693349500016],[33.29800751100015,68.94100285000019],[33.16715259100005,68.78762022400008],[33.289180528000145,68.62480745500017],[33.44353847200017,68.68132109600015],[33.64989455800014,68.59806465700007],[33.92032258300003,68.57971465900005],[33.98716759000018,68.531151421],[33.946033568000075,68.29550544500006],[34.256050495000125,68.21485812500015],[34.08071549700003,68.157382912],[34.06663155300015,68.09028611300016],[34.273433555999986,68.0522284160001],[34.21723960100019,67.98008135200007],[34.239639567000154,67.86707636600005],[34.415714519,67.77870763700014],[34.641529528000035,67.78712290000016],[35.034191518,67.84359111100008],[35.250946528000156,67.9216212660001],[35.341434537000055,68.03316109500014],[35.16763661300013,68.06630615800015],[35.19575856900008,68.21039476200008],[35.32405449400011,68.20583115100004],[35.45910254400019,68.1232469410001],[35.41579861500003,67.97122268700014],[35.51438555400006,67.9413903200001],[35.7924424520001,67.97064249100009],[35.84885752200017,67.8953518780001],[35.71418749500015,67.82185348399997],[35.960498605000055,67.79321939400012],[36.12077752500005,67.82884332000015],[36.25388751200012,67.74098555200015],[36.594867524999984,67.64461411800005],[36.75755657700006,67.55147625400014],[37.131313519000116,67.52576409500017],[37.38422051600014,67.57217653700002],[37.66625546500006,67.43912857600014],[38.00512357300016,67.41870355400016],[38.123012527000185,67.31415993200017],[38.064460575000055,67.26522219000009],[38.395423542000174,67.20226906800013],[38.614486594000084,67.25124486300007],[38.60781057500009,67.1277561280001],[38.71477153900008,67.10008260400008],[39.05445453600015,67.13091543500008],[39.09828149599997,67.05212236000006],[39.351123617000155,66.99327285000015],[39.57867451900006,67.07149411100016],[39.61737846000011,66.98660487800004],[39.48539751500016,66.91395389400003],[39.700504476000106,66.89760331600007],[39.78643457400011,66.97787629900017],[40.00614957000016,67.04816191000009],[40.17589551400005,66.83594016800009],[40.539886533000185,66.84506454100017],[40.24968358700005,66.71958493500006],[39.98250153800018,66.73537158000016],[40.00762545500015,66.5967687640001],[40.168685569000104,66.50766829500003],[40.183944488000066,66.39226725800006],[40.05887961999997,66.28013248000008],[40.584762572000045,66.450353344],[40.80674755500007,66.5980129730001],[41.2238764870001,66.81639189400005],[41.351852559000065,67.02478495000014],[41.33144346299997,67.21730704000004],[41.08739446100003,67.27976395400015],[41.13768051500011,67.41214119500017],[40.97791255600009,67.46895289600008],[41.01192061900008,67.59618784000014],[40.95356346200015,67.70980302900017],[40.78864650000014,67.71860738000004],[40.565162497000074,67.79930767300016],[40.488891537000086,67.74342787100016],[40.293647508000106,67.82962116100009],[40.07840761000017,67.97738020000003],[39.822006533000035,68.05922462300015],[39.614505479000115,68.04073749800006],[38.64533250000005,68.37657890100007],[38.496280469000055,68.37087266900005],[38.03264253500015,68.54569385600007],[37.63706548700003,68.734509468],[37.09110653600004,68.8870976570002],[36.85008658600003,68.99870722400016],[36.499999468000055,68.998568923],[36.499999468000055,69.09855815500015],[36.281959512000185,69.16063402700013],[35.89209758100003,69.20841288600019],[35.76652946299998,69.24997187100007],[35.18505856700011,69.33294651000006],[35.0575295860001,69.27937759899999],[34.51588848800009,69.32557630300016],[34.23481360200009,69.37874003200005],[33.48335653600009,69.38325771000012],[33.38197758400008,69.47837068600018],[33.11915949000007,69.49206638100014],[32.81462449500009,69.47141253300009],[32.779247499000064,69.54379647000007],[32.501613552000094,69.54892368000009],[32.26655950600008,69.64054978400014],[32.30358555800012,69.70181009700008],[32.78015559500005,69.63317940900004],[32.9670864520001,69.68623752700017],[33.00838056900011,69.77028739600019],[32.795097511000165,69.82942675200002],[32.492874580000034,69.83873519100007],[32.36957561100007,69.89494306000017],[31.92884055700017,69.99870230400012],[31.746490577000145,69.998786123],[31.574707494000165,69.79465761200004],[31.713901570000132,69.73002492400019],[31.04433854700011,69.80460642800006],[30.674583461000054,69.77270641300004],[30.3902285690001,69.79921183500016],[30.2359165580001,69.87366442600012],[30.037359498000058,69.8783103470002],[30.168905589000076,69.76107082300007],[30.093914545000075,69.69767446600014],[30.11575560600005,69.62677127600017]]],[[[30.77978355500005,70.29065740300018],[30.96039060200019,70.30724485400009],[30.88396256400017,70.45382958900007],[30.66043447300018,70.45340144100015],[30.36395247600018,70.57391560700017],[30.123594529000172,70.71339684600014],[29.65329147400007,70.75649692800005],[29.215888561999975,70.69107935900001],[29.239688473,70.81813040300017],[29.18311347600013,70.88448775100005],[28.917919447000088,70.91535846800019],[28.70944257200017,70.87780452500004],[28.539346599,70.77773130600019],[28.726213587000075,70.73865101800016],[28.845893585000113,70.63484734900004],[28.797735528000146,70.55767835200004],[28.989156572000013,70.47656583700012],[29.57603647800005,70.42015059900001],[29.694463549999966,70.329829222],[29.962270553000053,70.2987836580001],[30.102754603000164,70.22481906300004],[30.317878495000173,70.29467803500012],[30.77978355500005,70.29065740300018]]]]},"properties":{"objectid":379,"eco_name":"Kola Peninsula tundra","biome_num":11,"biome_name":"Tundra","realm":"Palearctic","eco_biome_":"PA11","nnh":2,"eco_id":774,"shape_leng":58.0254310648,"shape_area":12.9626004282,"nnh_name":"Nature Could Reach Half Protected","color":"#5DE3E2","color_bio":"#9ED7C2","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":58896.252426549836,"percentage":0.6892355841994854}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[58.48773160700017,38.026100921000136],[58.37123455300019,38.09247888800007],[58.133979586000066,38.190999275000024],[58.026241620000064,38.28475153300013],[57.81502553900003,38.33883542800015],[57.705779501000166,38.47753513900017],[57.53298153800006,38.58387232100006],[57.34729354800004,38.62680979300018],[57.248420618000125,38.69030086600014],[57.03871160300008,38.77988731800019],[56.95790854800015,38.89311761000005],[56.752178590000085,38.93161485300004],[56.54152258700003,39.17738398900008],[56.449088636000056,39.23505014199998],[56.231735491999984,39.29902149700007],[56.10083363400014,39.357759360000045],[55.749252526000134,39.42929957400014],[55.484874559000104,39.40811967899998],[55.24530451099997,39.410740700000076],[55.138923575000035,39.43819830600012],[55.07270050500006,39.49277069800013],[54.88352949900013,39.4564820870001],[54.72894256200016,39.38751008700007],[54.663623564000034,39.247352093000075],[54.701454613000124,39.15374434000012],[54.66860157600013,39.07464482200004],[54.52642454900018,38.98196427500005],[54.53460361000003,38.83205242800017],[54.50428056700014,38.76573866500007],[54.35607561100011,38.71397018700003],[54.30990959700006,38.64434138200011],[54.40658160600003,38.56907172399997],[54.410804577000135,38.466202303000046],[54.33591059500003,38.39480357500014],[54.039958502,38.283672614000125],[54.10945856100011,38.16504873500014],[54.156009472,37.872962711000184],[54.29234347400012,37.669814715000086],[54.39796450699998,37.63844309500013],[54.74589948700009,37.64958482399999],[54.904388536000056,37.56499650100005],[54.97396453500005,37.328478136000115],[54.95365551900011,37.11588541100008],[54.82960150800005,37.00621457800008],[55.0058935510001,37.04943871200015],[55.189308536000055,37.14216385100008],[55.27307560000014,37.20661264000006],[55.48455856100003,37.445823942000175],[55.8465464730001,37.73581952000018],[56.19812758100005,37.85949718400008],[56.431953511000074,37.90119044700003],[56.09452859900006,37.953676248000136],[55.75785453800006,38.02381199000018],[55.556976528,38.092291972000055],[55.509593630000154,38.213700822000135],[55.44804347000007,38.26925691400004],[55.24546460500011,38.30154031700016],[55.10510259600005,38.379705923000074],[55.022472621000134,38.474834154000064],[54.99261058200017,38.61000206600016],[55.03650258500011,38.674358989000154],[54.95166062599998,38.766108642],[55.04855358300017,38.86493781899998],[54.9421845490001,38.97141632000012],[54.99266053800005,39.08184269800017],[55.139148545000126,39.12586378300017],[55.349761632000195,39.14441360500001],[55.60332862000007,39.29680934500004],[55.721660474000146,39.297411334000174],[55.83845558900015,39.220943566000074],[56.25207552200004,39.09592228300011],[56.371135595000055,39.07966474400007],[56.493522613000096,39.01536465000004],[56.49800156700013,38.93796565300005],[56.38450959200003,38.88264576300003],[56.446933480999974,38.82377865100011],[56.62071950300003,38.78953824100017],[56.884799577000024,38.61526288400006],[57.21245957100018,38.58233156000006],[57.30673955400016,38.50875487800005],[57.351249471000074,38.39267473900003],[57.552410622000195,38.27906776400016],[57.738231548000044,38.22531948100004],[57.97169152400011,38.07244010500017],[58.25299858800014,37.925573738000026],[58.36959052600014,37.94161452200012],[58.46564059900004,37.90834708300008],[58.54146949700004,37.95770844599997],[58.48773160700017,38.026100921000136]]]},"properties":{"objectid":380,"eco_name":"Kopet Dag semi-desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Palearctic","eco_biome_":"PA13","nnh":2,"eco_id":829,"shape_leng":16.6503101834,"shape_area":2.70800592564,"nnh_name":"Nature Could Reach Half Protected","color":"#FAD354","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":26326.096099160583,"percentage":0.09978742243086558}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[58.48773160700017,38.026100921000136],[58.54146949700004,37.95770844599997],[58.46564059900004,37.90834708300008],[58.36959052600014,37.94161452200012],[58.25299858800014,37.925573738000026],[57.97169152400011,38.07244010500017],[57.738231548000044,38.22531948100004],[57.552410622000195,38.27906776400016],[57.351249471000074,38.39267473900003],[57.30673955400016,38.50875487800005],[57.21245957100018,38.58233156000006],[56.884799577000024,38.61526288400006],[56.62071950300003,38.78953824100017],[56.446933480999974,38.82377865100011],[56.38450959200003,38.88264576300003],[56.49800156700013,38.93796565300005],[56.493522613000096,39.01536465000004],[56.371135595000055,39.07966474400007],[56.25207552200004,39.09592228300011],[55.83845558900015,39.220943566000074],[55.721660474000146,39.297411334000174],[55.60332862000007,39.29680934500004],[55.349761632000195,39.14441360500001],[55.139148545000126,39.12586378300017],[54.99266053800005,39.08184269800017],[54.9421845490001,38.97141632000012],[55.04855358300017,38.86493781899998],[54.95166062599998,38.766108642],[55.03650258500011,38.674358989000154],[54.99261058200017,38.61000206600016],[55.022472621000134,38.474834154000064],[55.10510259600005,38.379705923000074],[55.24546460500011,38.30154031700016],[55.44804347000007,38.26925691400004],[55.509593630000154,38.213700822000135],[55.556976528,38.092291972000055],[55.75785453800006,38.02381199000018],[56.09452859900006,37.953676248000136],[56.431953511000074,37.90119044700003],[56.46866658200008,37.79851615600006],[56.536750601999984,37.821941899000194],[56.650863509000146,37.77705144300012],[56.976901605000194,37.6845194230001],[57.09217456700014,37.70401992],[57.152412623000146,37.66583951300015],[57.31105757500012,37.63909504000003],[57.559959531000175,37.56176879800006],[57.75028254500012,37.57228557100012],[58.00160251300008,37.508085725],[58.09599648900013,37.464797554000086],[58.29559357599999,37.33274318400004],[58.54371651800005,37.136057132000076],[58.676677475000076,37.07641234700003],[59.0123175440001,36.97242545000017],[59.13154559100019,36.88851103200017],[59.39929157400019,36.75100591000012],[59.5906256130001,36.704451814000095],[59.86378060599998,36.74726691100011],[59.950691555000105,36.718135774000075],[60.08406858900014,36.60557318500008],[60.19312653700007,36.45473631100015],[60.199569539000095,36.398210600000084],[60.547576603000095,36.19920309600002],[60.68049950600016,36.08400573900008],[60.80456558700013,35.94222366700018],[60.87643454000016,35.77998069900008],[60.88057754700003,35.77160768100009],[61.0704155840001,35.94222366700018],[61.345123576,36.030836812000075],[61.531925520000186,36.18134226600017],[61.38977447700006,36.33270602600004],[61.24529259500014,36.58486351400012],[61.13245055200014,36.693725158],[60.87477458800015,36.84642482600009],[60.839054604000125,36.91500337800011],[60.732009486000095,36.97060138000006],[60.59371160400002,37.12382709700006],[60.456272532000185,37.174176351000085],[60.373035539000114,37.264506445],[60.28956955300009,37.30058567700007],[60.0605015270001,37.35412374200018],[59.90002060300009,37.499941868000064],[59.724548476999985,37.588330043000155],[59.512214585000095,37.74580521700011],[59.37788050500012,37.79829520900017],[59.27238453100017,37.79234439300018],[59.180309492,37.854274252000096],[59.033100473000104,37.89054358500016],[58.88594861900003,37.966623271000174],[58.69855156000011,37.95188335900002],[58.48773160700017,38.026100921000136]]],[[[54.23997149899998,40.048411922000014],[54.17496162600014,39.99020094500014],[54.19464149600009,39.922162690000164],[54.31063060800011,39.84402357100004],[54.34104149400008,39.68095481800009],[54.43426552400018,39.57261553400008],[54.64237259000009,39.517383151000104],[54.76200447600013,39.53061616400015],[55.06724556200015,39.619786874000056],[55.10311155800014,39.7140053330001],[54.91404348300017,39.83725267000017],[54.68954460000015,39.89620410400016],[54.60022351900011,39.94016031300009],[54.434791572,39.97740982600004],[54.2763905330001,40.07528681800005],[54.23997149899998,40.048411922000014]]]]},"properties":{"objectid":381,"eco_name":"Kopet Dag woodlands and forest steppe","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Palearctic","eco_biome_":"PA10","nnh":3,"eco_id":756,"shape_leng":19.0190743567,"shape_area":5.96729017739,"nnh_name":"Nature Could Recover","color":"#D57739","color_bio":"#D6C39D","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":58416.34636197454,"percentage":1.1962462571260228}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[60.406814609000094,26.414360092000152],[60.31805763100016,26.558592529000123],[60.181976594000105,26.567539205000173],[59.83039850300008,26.44555870900001],[59.888637475999985,26.381703526000138],[60.269393474000196,26.387396180000053],[60.406814609000094,26.414360092000152]]],[[[61.62244454300003,26.76310040500016],[61.2789766140001,26.88773293500003],[61.115844493000054,26.89983439200006],[60.95918655500003,26.859429260000184],[60.964351484000076,26.811827258000108],[61.05295960000018,26.746780002000094],[61.21805560000007,26.74078526500017],[61.46157855400003,26.63224313900008],[61.74997352300005,26.672452302000124],[61.62244454300003,26.76310040500016]]],[[[58.47248459000008,26.717353319000097],[58.30012852100015,26.927644038000096],[58.17166160500011,26.941529499000126],[57.830501550000065,26.858191085000158],[57.73013647300019,26.80059383200006],[57.791137618,26.616095905],[57.885890507000056,26.535215401000187],[57.97450247900008,26.596344956000166],[58.01325252000004,26.661278051000068],[58.11069851500014,26.664191601000084],[58.24208853500011,26.612465200000088],[58.42726154000002,26.612919164000175],[58.582023492000076,26.5858853470001],[58.84206047100014,26.514374302000192],[58.87637363600015,26.586875082000176],[58.639747480000096,26.726828055000112],[58.47248459000008,26.717353319000097]]],[[[61.60704061600012,27.095061658000134],[61.656726527000046,27.129272394999987],[61.57712962699998,27.230744721000065],[61.23084655200006,27.520254484000134],[61.01060852500018,27.651529672000038],[60.91758348200011,27.646398941000143],[60.941459501000054,27.548366046000126],[61.080959515000075,27.481565966000062],[61.10253554000013,27.425053498000068],[61.063911562000044,27.28543948900011],[61.211322585000175,27.13685600600013],[61.401607545,27.077818406000176],[61.60704061600012,27.095061658000134]]],[[[63.79941154800002,27.38648098500005],[63.7240066060001,27.47284727700014],[63.331104559000096,27.44109880800005],[63.251731624,27.409351176000087],[63.10092157200012,27.43316298900004],[62.94614453300005,27.369665882000106],[62.854865607000136,27.365697051000097],[62.60277953400015,27.21704651200008],[62.479373611000085,27.201226005000024],[62.312087588000054,27.284314470000027],[62.276313625000114,27.428124460000163],[62.12162359000013,27.682446322000146],[62.068996637000055,27.745756848000156],[61.84205660900011,27.840516778000165],[61.72031063800006,27.81045491500015],[61.66661063400011,27.83479495600011],[61.60138350200009,27.97766701000012],[61.58034861300007,28.271891761],[61.53216960100002,28.339211016000036],[61.46631952600012,28.249473690000116],[61.45716062000008,27.965090468000085],[61.41833162100016,27.924383084000112],[61.33527752200018,28.11215045600005],[61.3019296170001,28.295711789000052],[61.315528585000095,28.500255372000083],[61.294013580000126,28.621763464000026],[61.12898647900016,28.94746444000009],[61.051471477000064,29.035197150000045],[60.96736964000007,29.4491897420001],[60.83277555300009,29.27349784300003],[60.78468656300009,29.314079163000088],[60.752433502000144,29.438942195000152],[60.758975578,29.63380266900009],[60.71351951100013,29.778729295000062],[60.54867563800019,29.885249371000157],[60.45380355900005,29.87245271900008],[60.433490519000145,29.80563336000006],[60.4690165450001,29.7094298990001],[60.40124852300016,29.688587626000185],[60.2431485620001,29.77603635700018],[60.151035637,29.76140792400014],[60.115199480000115,29.827485485000068],[60.12195261200003,30.07983508500007],[60.095996540000044,30.163953854000056],[60.024204534000035,30.194147816000054],[59.922595583000145,30.096542565000107],[59.90025747600009,29.976042984000173],[59.91960559000012,29.75704514400013],[59.797401633,29.779048478000107],[59.75018352200016,29.75037046700004],[59.791938476000155,29.54545405600004],[59.862495493000154,29.33248230200013],[59.932109546000106,29.312212345000148],[60.014526621000186,29.23897999200011],[60.16372650900007,29.26208605000005],[60.219436493000046,29.226254419000156],[60.335449577000134,28.93238925200012],[60.38051253200018,28.880483311000035],[60.35978660000018,28.78460104400017],[60.29155757300009,28.74651250300002],[60.21909752900007,28.772386432000076],[60.03167348000005,28.96223083900003],[59.971870612000146,28.960303002000103],[59.978172630000074,28.81141877600004],[60.131114535,28.51905480800019],[60.131763630000194,28.398549694000053],[60.17648661500016,28.332938168000055],[60.26100553600003,28.396404598000174],[60.24105057200006,28.498891469000114],[60.33721162100005,28.54870562200017],[60.39372660300006,28.532061174000034],[60.50612658300014,28.3700837450001],[60.59489060300018,28.436424162000094],[60.67765049700006,28.459261998000045],[60.731716623000125,28.39472184700014],[60.792613496,28.23468331900017],[60.948512537000056,28.03042790600017],[61.05786854500019,27.96392571800004],[61.147823633000144,27.861088986000027],[61.53952053000012,27.590226276000124],[61.67965656400003,27.469553692000034],[61.73082355700012,27.519585273000132],[61.733928549000154,27.63141377500017],[61.946048534,27.387054978000037],[62.07266958700018,27.308425350000107],[62.13407859500006,27.300066749000166],[62.294811479000145,27.188422816000184],[62.42437759800009,27.054101644000184],[62.57051859400019,27.039585026000054],[62.697723530000076,26.938292575000048],[62.792636514000094,26.91962037700017],[62.99514748600012,26.979736896000134],[63.27360554100005,27.172748489000128],[63.37873053300018,27.20695771800007],[63.45413564300014,27.19902122900004],[63.60891352000016,27.22680103600004],[63.77559654900017,27.322043763000067],[63.79941154800002,27.38648098500005]]],[[[56.976184617,34.09636161900016],[56.89902852800009,34.04961406800015],[56.69124953000011,33.99399645300008],[56.70605850900017,33.93991004300011],[56.81372053500007,33.95343659100001],[57.075611591000154,33.84550684699997],[57.21740355300011,33.64117046400003],[57.394672591000074,33.324895944000104],[57.4430505900001,33.20086054000012],[57.657855633999986,32.979348297000115],[57.70426556100011,33.006198215000154],[57.64093056000013,33.22067401800007],[57.44379859100013,33.619584213],[57.433826473000124,33.74898537600018],[57.36622256800001,33.83557697400005],[57.22357548400004,33.866814986000065],[57.20123251500007,33.91054186600013],[57.28355755700005,34.051975083],[57.37326454000004,34.34994771800007],[57.24999960100013,34.42393963800015],[57.189876545000175,34.36706440200004],[56.976184617,34.09636161900016]]],[[[60.473827590000155,32.406412860000046],[60.449130480000065,32.482323566000105],[60.30141050000003,32.38821742500011],[60.26287453300006,32.40196508700018],[60.241073538000194,32.5676629080001],[60.17137952200011,32.61642446200017],[60.061366540000165,32.83908552899999],[59.97153852100013,32.9390585000001],[59.95569957400011,33.05686380200012],[60.041938629000015,33.068631324000194],[60.12051763000011,32.949380143000155],[60.2337075210001,32.92184290900008],[60.34077460000009,32.95615892300003],[60.36643948500006,33.08154414800009],[60.35930648500016,33.22723067800007],[60.27664549700012,33.44174420000019],[60.11046253200004,33.5125841900001],[60.03177657700013,33.47799039900008],[59.94459958699997,33.3876800860001],[59.87301260200019,33.56936454300006],[59.825611599000126,33.60451573100005],[59.70047347200011,33.619824103000155],[59.492778628,33.42806091099999],[59.39397459800011,33.493904784000165],[59.315772614000196,33.615349173000084],[59.18266262700013,33.73688978700011],[59.200511555000105,33.7979541310001],[59.29746653800004,33.81313560100017],[59.398292619000074,33.76083403399997],[59.48372650800013,33.91497773700007],[59.41297553400017,33.94609404300019],[59.26397647600004,33.95553072500013],[59.06809659500004,34.07225727700006],[58.96336756500017,34.04111515400001],[58.88069953600012,34.05129195800009],[58.81853062500011,34.12531405300007],[58.68630962300017,34.16692785600003],[58.568702636000125,34.34060206300012],[58.432575499000166,34.43954121000013],[58.243942612000126,34.37019638400017],[58.23122458300003,34.323142559000075],[58.34520757000013,34.14073642000011],[58.486171568000145,34.03286065500015],[58.6069836260001,33.88439267500007],[58.86189255700003,33.66097187200006],[59.14318855700003,33.474583491000146],[59.21118557300002,33.25526780900003],[59.17295051600007,33.16468240200004],[58.93029358100006,33.03187047600005],[58.937496485999986,32.925302623000164],[59.16487857600009,32.91622804000008],[59.17077256300007,32.77365438100003],[59.350383504000035,32.5621390660001],[59.20605853100005,32.51033370700014],[59.08356858300016,32.408056719000115],[59.10590350500007,32.332036377000065],[59.29051961700003,32.26787525500015],[59.41991860000013,32.17931223400012],[59.28495755300003,32.057975133000184],[59.3788715820001,31.94635668100011],[59.53567855000006,31.94566383299997],[59.68209849600015,31.849624992000145],[59.665416497000194,31.797946536000097],[59.525218605000134,31.800202609000166],[59.46623649400004,31.744754308000097],[59.409072585000104,31.568731156000013],[59.41722448799999,31.46990181200016],[59.53471362500005,31.484551031000137],[59.68478053800004,31.536711280000134],[59.820018522000055,31.52462289900012],[59.847541507000074,31.30185236400007],[59.90933256200009,31.157637529000112],[60.04437256600005,31.089865651000082],[60.099170599,31.197209164000185],[60.033893511000144,31.43772586400013],[60.00913253100009,31.616300803000172],[60.06042055800003,31.600348197000073],[60.08366055800002,31.86013556300003],[60.158981513000015,31.84466022300012],[60.173385479000046,31.72305121300019],[60.25513451600011,31.62189454999998],[60.31623054300013,31.680545409000047],[60.35822253700019,32.114045371000145],[60.41204055800006,32.27779305900009],[60.478774589000125,32.31720962900005],[60.473827590000155,32.406412860000046]]],[[[57.62865056900006,30.309026493000147],[57.54414757400008,30.435109931000113],[57.56786349800018,30.509770225000125],[57.470470477,30.637391741000158],[57.17158857300012,30.789823189000117],[57.231193628000085,30.905851025000118],[57.099540583000135,30.97987043800009],[56.874011564000114,30.880070134000164],[56.79412448300019,30.897619493000093],[56.8160745080001,31.030865937000044],[56.850822526000115,31.066589441000133],[56.80017051800013,31.33580225700007],[56.703449558000045,31.421342429000163],[56.66289858100009,31.529873658000156],[56.515888548000135,31.42310614900009],[56.48338352800005,31.542046193000033],[56.511432561000106,31.60066335700003],[56.360015492,31.715567515000032],[56.25843856000017,31.762478680000015],[56.160800618999986,31.88381092000003],[55.986801529000104,32.13835557300007],[55.88537949500005,32.13161065500009],[55.90189754400012,32.03600281200005],[56.14954757900006,31.63495422600016],[56.128204571000026,31.52560777200017],[56.20915950700015,31.42804024000003],[56.41687061099998,31.254018184000188],[56.377033605000065,31.20183480100019],[56.219135480000034,31.189065307000078],[56.148090469000124,31.116782792000095],[56.209121621000065,31.01544725900004],[56.315978481000116,30.94109206600018],[56.627956605,30.76223516000016],[56.74601755600014,30.71425496700016],[56.97034058700018,30.575357779000058],[57.10389749700005,30.394854332000136],[57.18988760900004,30.17498142100004],[57.378013559000124,29.981268765000095],[57.48991347500004,29.753458192000153],[57.313133605000075,29.93418560400005],[57.049240615000144,30.177403288000164],[56.79432648699998,30.33392862500017],[56.46822753800018,30.48536011100009],[56.123245502000145,30.72013571000008],[55.8013306310001,31.05390795700015],[55.51365650600002,31.29410882700006],[55.17758560600015,31.409798872000124],[55.07006456400018,31.458182905000115],[54.91532155500005,31.55874277700002],[54.85494955700011,31.55537291600018],[54.769485492,31.444656357000042],[54.771770566999976,31.363276292000023],[54.88380057000012,31.423795141000085],[55.12430151200016,31.273172509000062],[55.382507549000024,31.131992090000153],[55.55487853800014,31.061391823000122],[55.759586574000025,30.889866568000173],[55.86619952100011,30.725706658000092],[55.948860508999985,30.64867914700011],[56.21640348300019,30.48441815300015],[56.46890261600004,30.386200855000084],[56.676952518000064,30.334717529000045],[57.03145958100009,30.140465917000085],[57.084091562000026,29.958982458000037],[57.173557482000035,29.780795267000087],[57.39907459900013,29.566987501000142],[57.418746591000115,29.484404632000064],[57.20525750500008,29.577302103000193],[57.01417961700014,29.639541758000178],[56.59469252000014,29.707385887999976],[55.96296356400012,29.907733323000116],[55.79777955399999,29.971745918000067],[55.74175256600006,30.03247867300007],[55.440830507000044,30.214689179000118],[55.43330355800015,30.262083309000047],[55.58570449600006,30.35757078800009],[55.457569503,30.478324341000075],[55.271041480000065,30.554115689000184],[54.95351453500018,30.643172572000026],[54.69030752000003,30.786747533000153],[54.4363554680001,31.02050322300005],[54.4575725790001,31.15032448600016],[54.40324762100016,31.398706094000147],[54.15592163000019,31.56721134900016],[54.079097631000195,31.55857279200012],[53.75216250400007,31.65227945200013],[53.65326359000011,31.704638687000113],[53.53008247000008,31.852408957000193],[53.37840254400015,32.19002782700011],[53.27268562300014,32.31156408200019],[53.203762574000166,32.45477040600014],[53.07776262000016,32.622658082999976],[52.93972759500008,32.66237103800006],[53.005386563000116,32.709676487000024],[53.16175063100013,32.730667789999984],[53.19520951200019,32.78300305300013],[53.149871630000064,32.85050302200011],[52.942707529000074,32.900603501000035],[52.77768361300008,32.97875603100016],[52.72535757100013,32.97823400700008],[52.614963547000116,32.87055940800013],[52.52121346900003,32.8971707770001],[52.42111259000018,33.2209898480001],[52.293601547000094,33.44547029100005],[52.29809961100011,33.57837123400003],[52.128684584000155,33.7388887030001],[51.82381448100011,33.88489961200003],[51.771591536000074,33.94732584800005],[51.57265863100014,34.07040353500014],[51.43485662300003,34.06172474500005],[51.4492414770001,34.3179248240001],[51.48423759900004,34.350909625000156],[51.37668956700014,34.52618594900008],[51.25173148400006,34.59401314800016],[51.11978557600014,34.62654432000005],[50.97992363100008,34.560693239000045],[50.84041556900007,34.416054950000046],[50.98878062000006,34.207560640000054],[51.18568460200015,34.00042839000014],[51.5423734740001,33.70915071600007],[51.94186051200012,33.50563056300018],[52.24380449200004,33.27106853500004],[52.32661853400015,32.96815543900004],[52.37526659700018,32.71983803600011],[52.53198656100017,32.61295737100011],[52.6684535010001,32.5655538530001],[52.78013951100007,32.46685912200007],[52.88863754800013,32.41471362600015],[53.109928509000156,32.19791955600016],[53.14836154700009,32.10796044500012],[53.17775352800004,31.872806319000176],[53.157504527000185,31.769789711000044],[53.20162552400012,31.646588643000143],[53.248100495000074,31.617214598000032],[53.4064175470001,31.691549171000133],[53.50684749900006,31.656060528000182],[53.557945593000056,31.505535461000193],[53.698009542000136,31.356385529000136],[53.91704158000016,31.25603185200015],[54.05180749600004,31.163265306000085],[54.060188561000075,31.048394173000077],[53.95108753,30.897792328000094],[54.01883660900006,30.788553330000127],[54.13304557200013,30.798905987000012],[54.138793546000045,30.9196927320001],[54.242389511000056,31.027609735000055],[54.32076650800013,30.898668572000133],[54.53276847700016,30.723669521000033],[54.56813859900018,30.60441297600005],[54.65969463100009,30.525857779000148],[54.76638754100014,30.32735201600019],[55.12063560300015,30.111709787000052],[55.359992583,29.97443097600018],[55.676826512000105,29.839098109000076],[55.92301960500015,29.71710872800014],[56.14536651800006,29.64658943000012],[56.24291963400009,29.574668174000124],[56.19307362900008,29.47898170800005],[56.351295630000095,29.337656115000016],[56.31246562500007,29.245334648000096],[56.477649635000034,29.070048601],[56.63378554900004,28.959365905000084],[56.75713749100015,28.929614172000186],[56.87610251400014,29.1045092870001],[57.05245960100018,29.136613150000073],[57.26602563300003,28.985097006000046],[57.46860148000019,28.892300789000103],[57.64056360000012,28.85281632500005],[57.82831554900008,28.778766234000045],[57.89689259300013,28.658759173000135],[58.02265550700008,28.549684461000084],[58.13540652100011,28.499530505000052],[58.28861648000003,28.400092467000036],[58.509239571000194,28.287205330000063],[58.63796951100011,28.278082467000104],[58.580234626,28.43355403100003],[58.334266504000084,28.621151417000135],[58.352672493,28.65343415000018],[58.20146547400009,28.766107883000075],[58.19894755000013,28.80700318900017],[57.884891552000056,29.088552826000125],[57.60823057600004,29.299633791000133],[57.577938546000155,29.37433180300002],[57.7045134980001,29.4045375],[57.94958458900004,29.273783666000156],[58.080215545000044,29.130778339000017],[58.29456360800003,29.06689968800015],[58.211078511000096,29.282889430000182],[57.95944556300003,29.629590092000115],[57.984458503000155,29.843784766000113],[57.82731659400014,30.034710774000132],[57.655277528000056,30.143944742000087],[57.61601652600018,30.217385805000106],[57.62865056900006,30.309026493000147]]],[[[60.94464847900008,35.45298153400017],[60.96348563300012,35.51193196200006],[60.88057754700003,35.77160768100009],[60.87643454000016,35.77998069900008],[60.71895953400019,35.83518223700008],[60.28492363200013,35.85535379000015],[60.230079498,35.8109209860001],[60.32233458100018,35.75723824900007],[60.41837660700003,35.61787938600003],[60.65311063200011,35.57690244000014],[60.74150450600007,35.611745676000055],[60.87909361500016,35.465858987000104],[60.94464847900008,35.45298153400017]]],[[[58.167961498000125,35.47867676100003],[58.188541585,35.409433523000075],[58.30534759700015,35.416338199999984],[58.36922054899998,35.455022359],[58.49385458800009,35.45059738499998],[58.70222853300015,35.35943178300005],[58.89736561000012,35.329441333000034],[59.03458759100005,35.32857162700003],[59.24658955899997,35.296453347000124],[59.296283516000074,35.348670928000104],[59.29872147600014,35.44002277599998],[59.5116005270001,35.36047784400017],[59.63819157300003,35.276139805000184],[59.52852258400003,35.16864843500014],[59.58759354400013,35.12099681200016],[59.683265592000055,35.114988664000066],[59.89613760200007,35.23390875900003],[59.95403660500011,35.371707415],[60.09866349400005,35.25953106400004],[60.272369553000146,35.158638766000024],[60.389388633000124,35.054191200000105],[60.49916859800004,35.10639402800018],[60.50186153600015,35.21435931100007],[60.05506150400004,35.52539061600004],[59.95998758800016,35.567861719000064],[59.69221461500007,35.54833909300015],[59.63691752400001,35.60165990000007],[59.64128851800018,35.67570898500003],[59.538715481000054,35.825103502000104],[59.393905531000144,35.819385702000034],[59.29350256800018,35.77485063900019],[59.21844061400003,35.68355897300006],[59.231670610000094,35.55999295600009],[59.01746755300019,35.520659870000145],[58.901653624000176,35.55463289700009],[58.770606591000046,35.56105695500014],[58.62454555700003,35.59713886900005],[58.50167859100003,35.595250929000144],[58.378578608000055,35.62497835500005],[58.11787761500011,35.65187152300018],[58.05429048600001,35.67281706099999],[57.97764250700004,35.78248353600014],[57.87541547500018,35.82002658300007],[57.68402863,35.95942048300003],[57.60334359100011,35.89956095300005],[57.99605553700013,35.53773447700007],[58.112716542000044,35.52180064700008],[58.167961498000125,35.47867676100003]]]]},"properties":{"objectid":382,"eco_name":"Kuh Rud and Eastern Iran montane woodlands","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Palearctic","eco_biome_":"PA10","nnh":3,"eco_id":757,"shape_leng":90.0315478997,"shape_area":11.9347129586,"nnh_name":"Nature Could Recover","color":"#EB9B3C","color_bio":"#D6C39D","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":126622.98011792371,"percentage":2.5929774021404426}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-64.33606759299988,10.347655658000122],[-64.41236856099988,10.324534514],[-64.45659651099993,10.247608759000116],[-64.61808762199996,10.248592794000047],[-64.66847258299998,10.180056487000115],[-64.6411055019999,10.122261755000125],[-64.73400163199989,10.063812565000148],[-64.95194251399988,10.092548747000137],[-65.09120951199992,10.04258321600014],[-65.19449651999997,10.092751589000045],[-65.39790351699992,10.127954241],[-65.60555259499989,10.1885880910001],[-65.65499157499988,10.145896040000082],[-65.77856463299992,10.166996476000179],[-65.96572850699994,10.272285082000167],[-66.07817056499994,10.400911086000065],[-66.29862953899993,10.367746410000109],[-66.53571351399995,10.378763583000136],[-66.84056852999993,10.431016032000116],[-66.93371561399988,10.596447308000108],[-67.02912849399996,10.607885589000148],[-67.15428154099993,10.553146396999978],[-67.5371165869999,10.523665567000023],[-67.74461361699997,10.499628280000081],[-67.84171260099998,10.45903388500011],[-67.93287652699996,10.466550608000034],[-67.98207863399983,10.36700645500008],[-68.16763251299994,10.32732334000002],[-68.2045665309999,10.36078088000005],[-68.20330857499994,10.537023471],[-68.27446757999991,10.529925004000063],[-68.30778463999991,10.665624664000063],[-68.37214659199992,10.748090019000017],[-68.52075153299995,10.703223870000102],[-68.72571555299999,10.591117759000099],[-68.81685651199984,10.525180512000077],[-68.64944459199995,10.492174589],[-68.68064153299997,10.386009068000021],[-68.84944149599994,10.204287898000132],[-69.06565855599996,10.180263687000036],[-69.14317355799994,10.190310906999969],[-69.19412262199995,10.112131220000094],[-69.25038949899994,10.095597413000121],[-69.25222060999982,9.97764492400006],[-69.29328958899998,9.976318907000064],[-69.21739162299991,9.87614896100007],[-69.08636453899999,9.902430083000127],[-69.02793160999994,9.872327316000167],[-68.80316953499988,9.816965181000057],[-68.57949861599997,9.778019003000168],[-68.45900758399995,9.630025271000022],[-68.33287050199988,9.561193250000144],[-68.10498851599988,9.493480883000132],[-67.73382560499994,9.49123000700007],[-67.55944061199995,9.377705007000145],[-67.27040861799998,9.256564713000046],[-67.16133155899996,9.114195740000014],[-67.05693864299991,9.059419836000018],[-66.87793756899993,9.035427308000124],[-66.51097164499993,9.026095065000106],[-66.39904054799996,8.999416138000072],[-66.28461449399998,8.9123253140001],[-66.08348050099988,8.863941616000034],[-65.91136951799996,8.86447856],[-65.6196665469999,8.808342776000131],[-65.50234957399994,8.75885015200015],[-65.33690656299984,8.72852241400011],[-65.25050355899992,8.748158867000086],[-65.05043054699996,8.83414177100002],[-64.92398853199995,8.854058346000102],[-64.84074349299988,8.892574700000182],[-64.74464463699996,9.027779157000168],[-64.58878348299993,9.106103348000147],[-64.47920250399994,9.250381215000175],[-64.37245159099984,9.319003186000145],[-64.1794125049999,9.395126793000088],[-64.1196745129999,9.444614555000044],[-64.04492151599999,9.571750424000186],[-63.91617162699998,9.703511092000099],[-63.74668149799993,9.78579942100015],[-63.68902959399992,9.795064609000065],[-63.48431049399994,9.754715636000185],[-63.33683358999997,9.816074017000062],[-63.25400161099998,9.828199446000099],[-63.1750945419999,9.964383747],[-63.03554959999997,9.94904989400004],[-63.01274462099997,10.04173127900009],[-63.00885055599991,10.186823029000038],[-63.07515358999996,10.258166939000091],[-63.02308252499995,10.368956253000135],[-63.05311957799984,10.45352848300007],[-62.98420356999998,10.521364567000091],[-63.107376475999956,10.484435242000131],[-63.13010450899992,10.396498349000069],[-63.17847462799995,10.378848743000049],[-63.38109557099989,10.415843949000077],[-63.49626157899996,10.409266670000022],[-63.89621750099991,10.32211449000016],[-64.33606759299988,10.347655658000122]],[[-67.76686857599998,10.28128154600006],[-67.84718363699994,10.318952837000097],[-67.86616562999995,10.398799182000118],[-67.66150654399996,10.471162163000145],[-67.44932553799993,10.442848261999984],[-67.18620250999999,10.51050346400018],[-67.06582664599989,10.496632420000026],[-67.01502962999996,10.395491347000075],[-67.0323105999999,10.313657150000097],[-67.12255855199999,10.253631492000068],[-67.23212461099996,10.233035814],[-67.76686857599998,10.28128154600006]],[[-66.17971061699996,10.271551162000037],[-66.09704560499989,10.239594318000172],[-66.12287158999987,10.178783778000025],[-66.22154251599989,10.141179208000096],[-66.32074753699999,10.14764500800004],[-66.38841262999995,10.186667126000032],[-66.35620851999994,10.260876809000138],[-66.17971061699996,10.271551162000037]],[[-66.05618248599995,10.158101096999985],[-65.97546358499994,10.160443001000147],[-65.86466253599997,10.107154716000082],[-65.76310756499998,10.095628426000133],[-65.67377458199996,10.024291389000041],[-65.67533847699997,9.934928901000092],[-65.78836056299997,9.85359661300015],[-65.91789248299995,9.820258766],[-66.03052547999994,9.833138902000087],[-66.20191159599995,9.817527942000027],[-66.35762053499997,9.853039719000094],[-66.41487161599991,9.84044741800011],[-66.55274151799983,9.909903556000074],[-66.72550964199996,9.887944981000146],[-66.76096358299992,9.923981465000054],[-66.74044049399998,10.055980347000116],[-66.69002552499995,10.107918475000133],[-66.52454362199995,10.13363298000013],[-66.26484661299997,10.07205516099998],[-66.1901935279999,10.08434118700012],[-66.05618248599995,10.158101096999985]],[[-64.28794054899998,9.936566558000095],[-64.37989857699995,9.983748458000093],[-64.39627849199996,10.03058418600017],[-64.34456650799984,10.13106392700007],[-64.21990162399999,10.220195912000065],[-63.9600825739999,10.193801467000128],[-63.8718756159999,10.146611855000117],[-63.82814756199997,10.051473565000038],[-63.871810571999845,9.982717484000034],[-64.08740250999989,9.983716438999977],[-64.28794054899998,9.936566558000095]],[[-63.4413076429999,10.009743590000085],[-63.56666554299994,10.052956659000017],[-63.68194956799988,10.213305150000167],[-63.452865616999986,10.30954046200003],[-63.2727586339999,10.273543038000184],[-63.22524262999997,10.188082997000038],[-63.21494261299995,10.101054199000089],[-63.356838509999875,10.02002181500012],[-63.4413076429999,10.009743590000085]],[[-68.49195852199989,10.053637605000063],[-68.53479759099997,9.98420426600012],[-68.62227649699997,9.916395172000023],[-68.72590649199998,9.985914174000015],[-68.72233563399993,10.113294292000035],[-68.6617735339999,10.22424940100018],[-68.54202262399991,10.280750469000111],[-68.27638250999996,10.261046794000038],[-68.18867460999996,10.213602372000082],[-68.16844958099995,10.127633214000184],[-68.24109654199992,10.064669531000163],[-68.40341963999992,10.09567653800002],[-68.49195852199989,10.053637605000063]]]},"properties":{"objectid":384,"eco_name":"La Costa xeric shrublands","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Neotropic","eco_biome_":"NO13","nnh":4,"eco_id":603,"shape_leng":26.8800293324,"shape_area":5.61788226127,"nnh_name":"Nature Imperiled","color":"#FA595E","color_bio":"#CC6767","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":68614.7212000769,"percentage":0.26007981371709943}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[8.76699706800008,11.260079380000093],[8.72508252300014,11.35533761400012],[8.515725967000037,11.509434713000076],[8.482474538000133,11.548590439000122],[8.291165477000163,11.540608017000125],[8.295747528000106,11.452486051000108],[8.18130454300001,11.3416756150001],[8.222751545000108,11.242638400000146],[8.412207535000107,11.25651405400015],[8.514442445999975,11.237227881000024],[8.550169471000117,11.1429353260001],[8.695835046000013,11.111927146000028],[8.762951459000135,11.16567291500013],[8.76699706800008,11.260079380000093]]],[[[13.700549940000144,14.334720035000089],[13.613250021,14.430249944000082],[13.443720086000155,14.450840055000072],[13.34817996900017,14.43114007600019],[13.210380097000098,14.364589919000082],[12.987000022000075,14.142160176000175],[12.98320996000001,14.033230044000163],[13.051559921000035,13.874360054000022],[13.171829964000153,13.763620084000024],[13.354719990000149,13.647500064000155],[13.383890019000034,13.419439970000099],[13.488050011000098,13.327499989000103],[13.585289953000142,13.102520068000047],[13.636879997000108,13.053060042000084],[13.642349993999972,12.87373001900005],[13.678330059000075,12.766099970000027],[13.623639951000087,12.609449945000051],[13.64768005400009,12.494010066000044],[13.734230128000092,12.409849991000044],[14.006449935999967,12.387749980000137],[14.186049972000035,12.358909988999983],[14.313799984000127,12.430359838000129],[14.341739985,12.550269920000062],[14.456130257000098,12.660869954000077],[14.522219946000178,12.778330014000119],[14.66244994900012,12.71303998400009],[14.607689961,12.579470048000076],[14.59333007600003,12.373609944000066],[14.493329965000157,12.384719973000188],[14.552780005000159,12.232219970000187],[14.615830005000134,12.176389781000069],[14.79582995900006,12.105280001999972],[14.916669954000099,12.030549845],[14.968889974000149,12.090000061000069],[14.888689997000029,12.157809817000043],[14.902219947000049,12.378890015000081],[14.87000002000002,12.4497199220001],[14.813049992000117,12.686109985000087],[14.832219975000044,12.708899994000035],[14.787499990000128,12.890000073000124],[14.936109952000095,12.891669974000024],[15.054999998000142,12.948890017000167],[15.141390070000057,12.931110064000109],[15.200280014000043,12.966389922000133],[15.212500024000065,13.066670082000144],[15.274719914000059,13.04556000700012],[15.32750002900002,13.086669998000104],[15.280550047000077,13.18972018400018],[15.334169954000117,13.296939930000065],[15.283609978000072,13.344169960000102],[15.281109967000077,13.427220053000156],[15.15416999900009,13.408890037000162],[14.975560075000033,13.447780065000075],[14.841939973000137,13.543049992000078],[14.742219910000188,13.54861011100013],[14.661110085000075,13.505279979000022],[14.483609966000131,13.54583005100011],[14.365550030000179,13.500000085000124],[14.256940078000184,13.537220035000075],[14.20111006500008,13.522500189000027],[14.09971992400017,13.629440064000107],[14.14278021600012,13.746109970000191],[14.187780073000113,13.796390074000158],[14.16027994500007,13.884999933000131],[14.17805004100012,13.972499987],[14.246670017000156,14.01861000100007],[14.22110998100004,14.084440061000066],[14.12443999200002,14.124719942000127],[14.042779929000062,14.258330010000066],[13.884440111000174,14.230279996000036],[13.882780067000112,14.305000120000102],[13.836099924000052,14.339689959000054],[13.700549940000144,14.334720035000089]]]]},"properties":{"objectid":385,"eco_name":"Lake Chad flooded savanna","biome_num":9,"biome_name":"Flooded Grasslands & Savannas","realm":"Afrotropic","eco_biome_":"AF09","nnh":3,"eco_id":72,"shape_leng":13.7262585689,"shape_area":2.66761224985,"nnh_name":"Nature Could Recover","color":"#43D8F9","color_bio":"#BEE7FF","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":32180.72374007961,"percentage":2.7829259609172734}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[33.300143990000095,-23.040240017999963],[33.231218808,-23.197117400999957],[33.210696654,-23.3995207559999],[33.12861915200011,-23.55131914699996],[33.089156606000074,-23.755018794999955],[33.093890778000116,-23.80951264099997],[32.96446044400011,-24.074187603999974],[32.80504331700013,-24.213006554999822],[32.593373159000066,-24.26200723999989],[32.343583827000145,-24.2881428689999],[32.104404361000036,-24.230677239999977],[31.896519991000048,-24.078402534999952],[31.880807877000166,-23.95299529999994],[31.76865768400006,-23.885206222999955],[31.697298049999972,-23.722524642999815],[31.652004242000146,-23.816776275999928],[31.67826843300014,-23.905118941999888],[31.749570847000086,-23.943658828999958],[31.681535721000103,-24.02133941699998],[31.628343582000127,-24.235801696999943],[31.518823624000163,-24.365356444999918],[31.411262512000064,-24.356513976999963],[31.360012054000094,-24.248003005999976],[31.113086700000167,-24.092172622999954],[31.051404953000144,-24.132392882999966],[30.945598602000018,-24.074914931999956],[30.77251243600017,-24.057773589999897],[30.68540573100006,-23.98742675799997],[30.77984809900005,-23.889797210999973],[30.859680176000097,-23.882732390999934],[30.998624802,-23.793224334999877],[30.831218719,-23.750854491999917],[30.78609275800011,-23.823871612999937],[30.538423538000075,-23.830636977999973],[30.497091293000153,-23.733871459999932],[30.398166656000114,-23.667673110999942],[30.488920212000096,-23.524906157999965],[30.55476188700004,-23.51738929699991],[30.615741730000025,-23.414897918999884],[30.711593628000116,-23.392452239999898],[30.759050369000192,-23.30293655399987],[30.684850693000158,-23.240930556999956],[30.724159241000052,-23.18211746199995],[30.68495750400018,-23.11978530899995],[30.753229141000077,-23.069124221999914],[30.75661087000003,-23.008764266999947],[30.866020203,-22.922225951999962],[31.04857444800018,-22.85994148299983],[31.043956757000103,-22.781976699999916],[31.08078765900018,-22.68422889699997],[31.092664719000027,-22.499300002999973],[31.03008461000013,-22.38961601299991],[30.868530273000033,-22.420249938999973],[30.77409362800006,-22.471794127999942],[30.748659134000093,-22.538610457999937],[30.57971000700013,-22.553615569999977],[30.537820816000135,-22.58949470499988],[30.58325004600016,-22.624912261999896],[30.77680587800012,-22.57821273799982],[30.781429291000165,-22.661844253999902],[30.89095306400003,-22.64000701899988],[30.899908066000023,-22.732908248999934],[30.672960281000087,-22.83079719499989],[30.558822631999988,-22.79998207099993],[30.61700439500015,-22.677473067999927],[30.431123734000096,-22.8192234039999],[30.6333103180001,-22.88916587799997],[30.602724075000026,-22.92669677699996],[30.43199539200009,-22.981601714999954],[30.335075378000113,-23.058141707999937],[30.151819229000125,-23.0634937289999],[30.13463211100003,-23.129594802999975],[30.026643753000087,-23.226978301999907],[29.918655396000077,-23.240476607999938],[29.91287040700007,-23.334001540999907],[30.02568054200009,-23.31857681299988],[30.062316895000095,-23.38703155499985],[30.023750305000135,-23.478630065999937],[29.958400726000093,-23.503086089999954],[29.94464683500007,-23.63130569499998],[29.87488746600019,-23.700458526999967],[29.9191608430001,-23.761346816999946],[29.992984772000057,-23.76122856099994],[30.036289215000068,-23.88464927699988],[30.09663963300011,-23.93111991899997],[30.103670120000174,-24.04436111499996],[30.140888214000142,-24.05715179399988],[30.24252700800014,-24.040296554999884],[30.28307533300017,-24.1269168849999],[30.396251678000112,-24.28874015799994],[30.493934631000116,-24.355293273999962],[30.515827179000155,-24.43310546899994],[30.635643005000077,-24.45619010899992],[30.762527466,-24.450414657999943],[30.802494049000074,-24.505178451999882],[30.860427856000115,-24.52525329599996],[30.922651291000193,-24.54390144299998],[30.92483329800018,-24.728822707999882],[30.946399689000145,-24.789855956999872],[30.852457047000087,-25.051334380999947],[30.954076767000117,-25.124200820999874],[30.950487137000152,-25.239395141999978],[30.85251426700006,-25.294033050999815],[30.797687531000122,-25.38434219399994],[30.693386078000174,-25.374347686999897],[30.704750061000084,-25.23623657199994],[30.62611579900016,-25.224725722999892],[30.55377960200019,-25.294631957999968],[30.67759323100006,-25.458215713999834],[30.843206406000036,-25.50542640699996],[30.743116379000185,-25.636444091999977],[30.746143341,-25.73682594299993],[30.898250580000024,-25.825372695999818],[31.018678665000095,-25.82166671799996],[31.12825965900015,-25.717645644999948],[31.220478058000083,-25.729101180999976],[31.42972755400018,-25.64197349499983],[31.444871902000045,-25.711408614999982],[31.337179184000036,-25.760196685999972],[31.212173462000067,-25.848583220999956],[31.256511688000103,-25.900272368999936],[31.16019058200004,-25.99667358399995],[31.090454102000024,-25.99851417499991],[30.735824585000103,-25.92963600199988],[30.684757233000028,-25.826110839999956],[30.59480094900016,-25.839908599999944],[30.61700630200005,-25.942026137999846],[30.57606315600009,-25.971210479999968],[30.719493866000107,-26.059726714999897],[30.9042682650001,-26.103109359999905],[30.9842052460001,-26.029331206999927],[31.07361412,-26.043851851999932],[31.154479980000076,-26.110475539999925],[31.229047775000083,-26.083570479999935],[31.396343231000117,-26.170614242999818],[31.283964157000185,-26.321296691999976],[31.256498337000153,-26.42498397799983],[31.16457176199998,-26.357727050999927],[31.048530578999987,-26.371435164999923],[31.073310852000134,-26.48943328899992],[30.982387543000073,-26.502813338999886],[31.032930374000046,-26.621683120999876],[31.15679359400019,-26.61492156999998],[31.29613304100019,-26.647783278999896],[31.195995331000063,-26.7020988459999],[31.244743347000053,-26.796001433999947],[31.110385895000093,-26.95193481399997],[31.264087677000134,-26.978055953999956],[31.3359355930001,-26.91661262499997],[31.3932685850001,-26.95043373099992],[31.290624619000027,-27.092346190999933],[31.38735580400015,-27.150743483999975],[31.378501892000145,-27.215951919999895],[31.31060028100012,-27.292871474999913],[31.41904068000008,-27.35475158699984],[31.367393494000112,-27.498470305999888],[31.45867538500005,-27.50255012499997],[31.31351280200016,-27.730859755999973],[31.415613174000157,-27.807716369999923],[31.366407394000078,-27.862943648999874],[31.384281158000135,-27.95960617099996],[31.211265564000087,-27.856748580999863],[31.077932358000112,-28.005437850999954],[31.062242508000054,-28.071571349999886],[31.124422073000062,-28.17564964299993],[30.986763000000167,-28.161901473999876],[30.947565079000128,-28.193681716999947],[30.9571304320001,-28.34435462999994],[30.995628357000157,-28.40752410899995],[30.945764542000063,-28.52565956099994],[31.10749435400004,-28.67489433299994],[31.17961120600006,-28.607372283999894],[31.278190613000106,-28.586200713999972],[31.329368591000105,-28.534818648999874],[31.54300308200004,-28.479877471999885],[31.642641068000103,-28.51844978299988],[31.61972618100009,-28.58401489299996],[31.547729492000144,-28.625368117999926],[31.574476242,-28.715274810999972],[31.642295837,-28.758882522999954],[31.526025772000082,-28.81970786999989],[31.566823959000033,-28.859512328999983],[31.74912834200012,-28.805086135999886],[31.769744873000036,-28.764749526999935],[31.99106979400017,-28.632198333999895],[32.00874710100004,-28.578134536999983],[32.12429046600005,-28.499673842999982],[32.18240737899998,-28.41150474499989],[32.19276858300003,-28.335881137999877],[32.102081588000146,-28.260311239999965],[32.0503275260001,-28.156807475999926],[32.17834047800005,-28.052050617999953],[32.26991645800018,-27.855456933999903],[32.30573652200013,-27.730452247999892],[32.160430530000156,-27.507992680999962],[31.97394357800016,-27.349683507999885],[31.86711354000016,-27.314815125999928],[31.84765059300014,-27.211910332999935],[31.821008546000144,-26.739061190999905],[31.840990499999975,-26.386090027999956],[31.900930496000058,-26.113036455999975],[32.007492481000156,-25.899921202999963],[32.07266244900006,-25.84504588899989],[32.12071657000013,-25.726767175999953],[32.25183451400011,-25.580226194999966],[32.34083959700013,-25.38108944199996],[32.52317851300012,-25.200468145999935],[32.75371152800011,-25.013437040999975],[32.93891957000017,-24.818496267999933],[33.15032960800016,-24.69538337699987],[33.185554556000056,-24.616991124999856],[33.14807856400006,-24.436184923999917],[33.24486155100004,-24.34498964999989],[33.280601483000055,-24.40678657199993],[33.300388558000066,-24.60970901099995],[33.347969521000095,-24.68820377399993],[33.42861288700004,-24.747057044999963],[33.44102847500005,-24.616027052999925],[33.50715458700017,-24.481478736999975],[33.6259880880001,-24.332075221999844],[33.68863512600012,-24.22604436099988],[33.783095362000154,-23.93686026499995],[33.79601256500018,-23.743663296999898],[33.77859745000018,-23.54684780799988],[33.66420659000005,-23.135936053999956],[33.55430574700006,-22.979275651999956],[33.37529729000016,-22.991304318999937],[33.300143990000095,-23.040240017999963]]]},"properties":{"objectid":389,"eco_name":"Limpopo lowveld","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Afrotropic","eco_biome_":"AF07","nnh":3,"eco_id":48,"shape_leng":75.4676067349,"shape_area":7.3586582051,"nnh_name":"Nature Could Recover","color":"#FCC03C","color_bio":"#FEAA01","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":82382.0796145246,"percentage":0.38426241453736143}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-62.76751360299994,6.507861553000055],[-62.82481363399995,6.526782191000052],[-62.934482622999894,6.459549102000096],[-62.97554053799996,6.380075919000092],[-62.896263491999946,6.217426764000038],[-62.89157851099998,6.012721745000135],[-62.81933253999995,6.096248752000179],[-62.69288247799989,6.162465954000027],[-62.77344849299982,6.240616305000174],[-62.871028598999885,6.280708122000135],[-62.88889663699996,6.3284207640001],[-62.844444554999825,6.426148559000069],[-62.72997659099997,6.411000783000134],[-62.76751360299994,6.507861553000055]]],[[[-62.16754954599992,8.663468954999985],[-62.122764533999884,8.776803015000098],[-62.13786352699998,8.87871254100014],[-62.33147861799995,8.993563558000062],[-62.36506255699993,9.074711612000158],[-62.46248256799993,9.133907462000082],[-62.59031648199982,9.172623641000087],[-62.620136610999964,9.351664110000115],[-62.6965785619999,9.439812730000028],[-62.74518555399982,9.542591459000107],[-62.87585053999999,9.615592304000188],[-62.9058684819999,9.700183477],[-62.89183851699988,9.867461454000079],[-63.01057454599993,9.898830391000047],[-63.03554959999997,9.94904989400004],[-63.1750945419999,9.964383747],[-63.25400161099998,9.828199446000099],[-63.33683358999997,9.816074017000062],[-63.48431049399994,9.754715636000185],[-63.68902959399992,9.795064609000065],[-63.74668149799993,9.78579942100015],[-63.91617162699998,9.703511092000099],[-64.04492151599999,9.571750424000186],[-64.1196745129999,9.444614555000044],[-64.1794125049999,9.395126793000088],[-64.37245159099984,9.319003186000145],[-64.47920250399994,9.250381215000175],[-64.58878348299993,9.106103348000147],[-64.74464463699996,9.027779157000168],[-64.84074349299988,8.892574700000182],[-64.92398853199995,8.854058346000102],[-65.05043054699996,8.83414177100002],[-65.25050355899992,8.748158867000086],[-65.33690656299984,8.72852241400011],[-65.50234957399994,8.75885015200015],[-65.6196665469999,8.808342776000131],[-65.91136951799996,8.86447856],[-66.08348050099988,8.863941616000034],[-66.28461449399998,8.9123253140001],[-66.39904054799996,8.999416138000072],[-66.51097164499993,9.026095065000106],[-66.87793756899993,9.035427308000124],[-67.05693864299991,9.059419836000018],[-67.16133155899996,9.114195740000014],[-67.27040861799998,9.256564713000046],[-67.55944061199995,9.377705007000145],[-67.73382560499994,9.49123000700007],[-68.10498851599988,9.493480883000132],[-68.33287050199988,9.561193250000144],[-68.45900758399995,9.630025271000022],[-68.57949861599997,9.778019003000168],[-68.80316953499988,9.816965181000057],[-69.02793160999994,9.872327316000167],[-69.08636453899999,9.902430083000127],[-69.21739162299991,9.87614896100007],[-69.22487649499982,9.755318295],[-69.34281154899992,9.628983400000095],[-69.32556963899998,9.560876077999978],[-69.36638648999991,9.488646201000108],[-69.47757763199996,9.477271120000182],[-69.54727952799993,9.390229247000093],[-69.55050655999986,9.328160583000113],[-69.62213863999989,9.297946671999966],[-69.65005456899996,9.182620904000146],[-69.53444649899996,9.134411382000053],[-69.26403859099992,9.15229115500017],[-69.20797757199995,9.136418345000095],[-69.05255864699984,9.007217510000032],[-68.94542652499996,8.961234725000054],[-68.63302662299992,8.888255840000056],[-68.38848157999996,8.74475514300002],[-68.3654405669999,8.67230549300018],[-68.4665834839999,8.498303720000138],[-68.60301957699994,8.36135666600012],[-68.89927660399997,8.216555097000082],[-69.07505064599991,8.051484746000028],[-69.2070005779999,7.966388983000058],[-69.35731458899988,7.950020299000187],[-69.55039960699997,7.807422501000133],[-69.69873850699986,7.728249055000163],[-69.88488062699997,7.675331921000122],[-70.04939257599995,7.481523879000065],[-70.13774152399992,7.437250164000147],[-70.24964864899988,7.420303464000085],[-70.42767356699994,7.290326800000173],[-70.51578564199991,7.263710737000167],[-70.6524425149999,7.263350651000053],[-70.77375061499993,7.241596427000104],[-70.89297463799994,7.160751294000079],[-70.95815248499986,7.071261569000114],[-70.90715748899999,6.986169829000175],[-70.90393062299995,6.864103671000066],[-70.83409159999997,6.778768017000175],[-70.80215453699998,6.68919849700012],[-70.72747060699993,6.617847714000163],[-70.70490249999995,6.537771537000026],[-70.73889161999989,6.467822543000125],[-70.84313952899993,6.441016378000029],[-71.06636050799995,6.335922065000034],[-71.10008962099994,6.280054165000138],[-71.25093856499984,6.291254567000124],[-71.44052162499997,6.213756999000054],[-71.63869462699995,6.201909012000044],[-71.6862416429999,6.164935766000099],[-71.73956261699988,6.029629553],[-71.77274355399999,6.011248039000066],[-71.7646635669999,5.88935974400016],[-71.68561551499988,5.799475567000059],[-71.86906452999995,5.815554404000068],[-71.95424662699997,5.774318123000057],[-71.97357160799993,5.727698648000057],[-71.90003951799997,5.567710412000167],[-72.06040963399994,5.527320535000058],[-72.06091355399997,5.480521017000115],[-72.13218655299988,5.411083822000023],[-72.10536161299996,5.284451202000071],[-72.17553758799994,5.313283273000081],[-72.25101461499997,5.286014092000073],[-72.33660155799993,5.188685444000157],[-72.38321650599988,5.221905944000127],[-72.54792760899994,5.186157462000097],[-72.58167264899993,5.097669040000142],[-72.46136450999995,4.932827179000185],[-72.5414125239999,4.905618180000147],[-72.65819556899999,4.953541544000188],[-72.70688654799994,4.776479706000146],[-72.77758052499996,4.739823464000153],[-72.79254155199999,4.65123194500012],[-72.87687657299995,4.652079020000144],[-72.97916462599994,4.732451078000167],[-73.07802548599994,4.682026554000174],[-73.06583350499989,4.641901713000152],[-73.14516452999993,4.514637936000099],[-73.14569862499991,4.45864833100012],[-73.2641905729999,4.301170978000073],[-73.25073962999994,4.240410394000151],[-73.3264156429999,4.152545921000069],[-73.34346057799996,4.082779150000079],[-73.53560648899997,4.024030390000178],[-73.60099757099994,4.024638246000166],[-73.69575465099996,3.876457262000031],[-73.84725956299997,3.816586836000056],[-73.7551265219999,3.678252073000067],[-73.73984564199998,3.51909398100014],[-73.54473153199996,3.364894288000187],[-73.49871857099998,3.383640917000093],[-73.39117456199989,3.27849966499997],[-73.33213763299995,3.191320328000074],[-73.24994653499988,3.147548353000104],[-73.26447253999999,3.030872093000028],[-73.22560163199995,2.909659212000065],[-73.11252556699998,2.84120638800016],[-72.96511052099999,2.860963707000053],[-72.83000949699993,2.77594405100001],[-72.77306351699997,2.669986066000149],[-72.65756256799995,2.586380270000063],[-72.60460654199989,2.613210239000182],[-72.53401951799998,2.710882881000089],[-72.43929261199997,2.726443716000176],[-72.33890557499996,2.806123764000176],[-72.25114453399988,2.82055270800015],[-72.21707964199999,2.873429776000023],[-72.12791463199994,2.891762340000071],[-72.09847252599997,2.842705072000172],[-71.92024258699985,2.837623460000032],[-71.77953356699993,2.879066439000042],[-71.87220757599994,3.077928768000049],[-72.08940850399989,3.206403227000067],[-71.94627359299983,3.216432175000136],[-71.87302363799995,3.245593319000136],[-71.89021257499991,3.340079999000068],[-71.76766948599993,3.476971900000024],[-71.60537756699995,3.516622996000024],[-71.55606850699985,3.498782283000139],[-71.39719355599993,3.517004038000096],[-71.32460057499998,3.612302756000076],[-71.11428051899992,3.641504804000078],[-71.09677156099991,3.761509685000135],[-71.00148759499984,3.79231753800002],[-70.95195054699997,3.860481522000157],[-70.80308559899993,3.934560950000048],[-70.71000657599984,3.92393772600019],[-70.6181186209999,3.864200237000091],[-70.58045956899997,3.961462165000171],[-70.48102555399993,4.001813988000151],[-70.4161756069999,3.960227008],[-70.39255557199994,4.040807272000052],[-70.24266853499995,4.089165489000095],[-70.29196150199994,4.183826681000085],[-70.25897955099992,4.209203563000131],[-70.1364595959999,4.207337919000111],[-70.11927049199988,4.260995678000029],[-69.89266959499997,4.337100174000113],[-69.80369552499997,4.333272494000141],[-69.59991452699995,4.423879860999989],[-69.42135651999996,4.413369625000087],[-69.20987657599994,4.310481261000064],[-69.07099950499992,4.36957686400018],[-68.98334457899995,4.378194298000153],[-68.8413395479999,4.526772082000093],[-68.80101052399993,4.641433835000157],[-68.71525560799995,4.693231817000139],[-68.65752457899998,4.680231821000064],[-68.59286456599995,4.793844328000034],[-68.53730059499992,4.800606847000097],[-68.43000049899996,4.86692513600002],[-68.29511254299985,4.876090244000011],[-68.15420554199989,4.845872477000114],[-68.05022451299993,4.854146086000185],[-67.93350248799999,4.92134497700016],[-67.80966154499998,4.898234561000038],[-67.78979458999993,5.019837872000153],[-67.71595756699998,5.06091774700019],[-67.58723449999997,5.191879116999985],[-67.45095062199994,5.516555322000102],[-67.43252552199988,5.598608119000176],[-67.3369595879999,5.776620967000042],[-67.18511152199994,5.955510059000062],[-67.20185856399996,6.061395289000018],[-67.03772748899996,6.102889063000077],[-67.02072161299992,6.244601732000149],[-66.86766051699993,6.357970493000039],[-66.88466656099996,6.488346136000132],[-66.85632348999991,6.53936141600019],[-66.61822563999993,6.567704319000086],[-66.56720750999995,6.675404566000054],[-66.58421355299998,6.794442847000028],[-66.55586964399993,6.987170796000157],[-66.42548360799998,7.145888336000041],[-66.29510461299992,7.100540563000095],[-66.23841059299997,6.947491537000019],[-66.18172461999995,6.856796159999988],[-66.09101851399998,6.845458965000148],[-65.87581650199996,6.913594953000143],[-65.85292854199997,7.077866342000107],[-65.67719255399999,7.094871044000058],[-65.63184360799988,7.145888336000041],[-65.64318063499991,7.225246351000123],[-65.76222964399989,7.344284967000078],[-65.73954754399989,7.485995624000168],[-65.63751262499989,7.48032794900007],[-65.54680651799987,7.440649025000084],[-65.45610862599989,7.434980177],[-65.36540251999992,7.48032794900007],[-65.3030475299999,7.434980177],[-65.16709155199999,7.41518865900008],[-65.09264348799991,7.338396343999989],[-64.97299953099997,7.289425913000116],[-64.9375305019999,7.368884008000123],[-64.95365158399989,7.45565984000018],[-64.92041750599998,7.529115655],[-64.75666847699995,7.526108731000079],[-64.81264450299994,7.429893702000072],[-64.67239363799996,7.431257438000102],[-64.60417148399995,7.458598703000064],[-64.53266949099998,7.438136131000022],[-64.44065848999998,7.350258581000162],[-64.3426435319999,7.387090676000071],[-64.35997764299998,7.543767557000137],[-64.15263349799994,7.592239768000184],[-64.07044256699987,7.561763],[-64.02415451199988,7.491379321000181],[-64.04554747599991,7.428616636000072],[-63.93370857999997,7.335873391000064],[-63.873256617999914,7.358998895000184],[-63.82233454399994,7.455626816000063],[-63.719181478999985,7.315421883000056],[-63.67744060699994,7.367804252000155],[-63.600742504999914,7.334972672000049],[-63.654346619999956,7.273737840000024],[-63.632411514999944,7.201737292000189],[-63.53612155199994,7.18565543700015],[-63.54944961599995,7.057657573000029],[-63.59310960899995,6.927984166000101],[-63.64965459799987,6.840962409000042],[-63.80630163999996,6.740086875000145],[-63.74421654799988,6.697914670000046],[-63.751357593999955,6.6352902860001],[-63.70555451699994,6.525345365000021],[-63.646926623999946,6.54707477900007],[-63.61597057899996,6.618668470000046],[-63.49857749899991,6.721238154000162],[-63.48922748599989,6.805265056999986],[-63.27324662799998,6.947654649000015],[-63.18263657799997,7.031328505999966],[-62.94068958999992,7.154191617000095],[-62.95437254399991,7.270888161000187],[-62.88007753399995,7.374641705000045],[-62.69417161499996,7.322174344000189],[-62.57865155499991,7.398730960000023],[-62.48073952599998,7.360128608000139],[-62.42427047699988,7.222142868000105],[-62.36994954199997,7.280984498000066],[-62.24471250899995,7.255335372000047],[-62.22355658499998,7.095854744000064],[-62.123569531999976,7.061361536000163],[-62.06666948599991,7.194985669000118],[-62.130744608999976,7.358014021000031],[-62.10733747399996,7.404697534000036],[-62.011978572999965,7.370208852000189],[-61.938129479999986,7.489722386000153],[-61.88278964099993,7.650111780000032],[-61.879318526999896,7.736229465000179],[-61.932983493999984,7.865142130000038],[-62.06995351499995,7.948956133000081],[-62.20726048899991,7.931190354000137],[-62.319595592999974,7.95882649400005],[-62.43164453999992,7.952179813000157],[-62.67279055299997,7.830520847000116],[-62.81499456999984,7.71224112900012],[-62.94432063099998,7.728333209000027],[-63.00804153499996,7.896500002999971],[-62.973800621999885,8.029231295999978],[-62.882232520999935,8.11920197400002],[-62.81608153499997,8.144773987000121],[-62.68593555699994,8.297536184000137],[-62.652828547999945,8.380589278000173],[-62.492675523999935,8.491148425000063],[-62.29185451099994,8.560426196000094],[-62.16754954599992,8.663468954999985]],[[-62.24958457399998,7.689277061000041],[-62.39079248499996,7.826135100000045],[-62.294074541999976,7.87497058200006],[-62.24958457399998,7.689277061000041]]]]},"properties":{"objectid":390,"eco_name":"Llanos","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Neotropic","eco_biome_":"NO07","nnh":2,"eco_id":572,"shape_leng":57.1232399336,"shape_area":30.7487673686,"nnh_name":"Nature Could Reach Half Protected","color":"#FFAA01","color_bio":"#FEAA01","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":378245.3404987841,"percentage":1.7642850060068604}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-67.40148951399993,-31.54358703899993],[-67.66950254499994,-31.541561970999965],[-67.75245656399994,-31.572738123999954],[-67.8521886389999,-31.672952661999886],[-68.07218157899996,-31.759226584999965],[-68.22608153599998,-31.641869546999885],[-68.30844848599997,-31.52564942999993],[-68.32341755999994,-31.453648881999925],[-68.40280155899995,-31.449797229999945],[-68.4540485149999,-31.38307644199989],[-68.65711956599995,-31.370659825999894],[-68.72223655999989,-31.40634862899998],[-68.77427661199988,-31.564195120999955],[-68.60842154599999,-31.922679396999968],[-68.65020751299994,-32.01145246899995],[-68.67467462399992,-32.17707300899991],[-68.74769558499997,-32.315336692999836],[-68.76941661599994,-32.47380545699997],[-68.82291461599988,-32.60646147999995],[-68.91593949299994,-32.732197403999976],[-68.95910662899996,-32.96778520999993],[-69.06906848199992,-32.99141664499996],[-69.09255960399992,-33.377960179999945],[-69.13361349499996,-34.00059208799996],[-69.10378263699994,-34.087366913999915],[-69.08670853199993,-34.36735818799997],[-69.05621349199998,-34.40038120999998],[-69.08818860899999,-34.719738761999906],[-69.12245952899991,-34.74634593999997],[-69.15124549899991,-35.045440240999824],[-69.11192364399983,-35.08109953999991],[-69.12155964799996,-35.18119086299998],[-69.06649758399993,-35.30325500999993],[-68.76844750099997,-35.280584476999934],[-68.46259352999994,-35.42817872799992],[-68.30490159999994,-35.63082179799983],[-68.26196261899997,-35.82040435499994],[-68.28356948899983,-36.36596617199996],[-68.3345336399999,-36.440240563999964],[-68.30937954799998,-36.58885824499998],[-68.36462349899989,-36.603307807999954],[-68.45839654299994,-36.71010951499994],[-68.48117050999991,-36.818337319999955],[-68.58193959399989,-36.987000657999886],[-68.74253048899993,-37.10522337899988],[-69.0144045589999,-37.22999203099994],[-69.16305559999995,-37.24880554799995],[-69.40488457099997,-37.14535760799998],[-69.69222258299993,-36.9803209509999],[-69.87000258199987,-36.90539863899994],[-69.88319351799998,-37.07690394499991],[-69.84329951399997,-37.14268277499991],[-69.80326855099997,-37.325471966999885],[-69.65836354899994,-37.23571368599994],[-69.5890654939999,-37.25455435999987],[-69.54975855899994,-37.371572098999934],[-69.37940962099998,-37.34312961899991],[-69.28450753299995,-37.430592096999874],[-69.5855865019999,-37.55796165299989],[-69.65012363599993,-37.68135030899998],[-69.48165157299997,-38.09243672699989],[-69.49443062199987,-38.265190601999905],[-69.54875155799994,-38.292213354999944],[-69.64711754999996,-38.229493249999905],[-69.74877964199993,-37.99824223999997],[-69.76399262899986,-37.82343362599988],[-69.8408126039999,-37.65021086799982],[-70.12416049399985,-37.560643358999926],[-70.12829562199994,-37.60825340799994],[-69.93572961099983,-37.8261724969999],[-69.86010757699995,-38.13551602199993],[-69.87427550799998,-38.23175938099985],[-69.96952058299996,-38.34078849499997],[-70.17544550399992,-38.494788866999954],[-70.16489453199983,-38.57514851999997],[-70.04671455799996,-38.50170175799997],[-69.96905555499995,-38.498393755999984],[-69.94170356099994,-38.58169428299993],[-70.0839766439999,-38.703346375999956],[-70.0543824909999,-38.98730497199989],[-69.98522960999998,-39.22605912599988],[-69.85360757899986,-39.23287914499991],[-69.71028860199993,-39.280520373999934],[-69.6376416409999,-39.39025993799993],[-69.74546057599997,-39.50740809899992],[-69.98896056299998,-39.61508755999995],[-70.14233363299991,-39.85679549599985],[-70.15402957399988,-39.97335474499988],[-69.94358060399998,-40.036823185999936],[-69.73249058699997,-40.010399403999884],[-69.24982455899982,-40.046447957999874],[-68.94445053599998,-39.953138096999965],[-68.87551860299993,-40.08500253299991],[-68.46835357399993,-40.04425391099994],[-67.73007151799999,-40.337047199999915],[-67.57628656099996,-40.36670706799987],[-67.53512554899993,-40.41024753399995],[-67.5436625179999,-40.5784845689999],[-67.49008958299999,-40.63411391899996],[-67.59377255199996,-40.77600730199998],[-67.62097953999995,-41.18274904499998],[-67.49236258799993,-41.22508084099991],[-67.40097855299996,-41.16653324699996],[-67.19101757799996,-40.91339993899993],[-66.94080351899987,-40.91571183499991],[-66.86422762499996,-40.95809643799993],[-66.61067957999995,-40.95971732999993],[-66.51709764199995,-40.87540611299994],[-66.33125257599988,-40.829523741999935],[-66.22303751199996,-40.90380986799994],[-66.18399058399996,-41.01133778399998],[-66.20391051199994,-41.33605673599993],[-66.12349654499997,-41.534354795999946],[-66.15246557599994,-41.68832532799996],[-66.27667951299998,-41.685704641999905],[-66.35131851699998,-41.64610467599988],[-66.41564157799996,-41.74855902599995],[-66.65891257099992,-41.84292232399997],[-66.79872858399995,-41.78831958899997],[-67.04661549099984,-41.73021824799997],[-67.35880249299993,-41.72217312999993],[-67.79827858499988,-42.05276360599987],[-67.87808955799994,-42.260376976999964],[-67.76248953499999,-42.3791922989999],[-67.66043852199988,-42.416527139999914],[-67.60805548299999,-42.383846098999925],[-67.4455716189999,-42.38959507899989],[-67.25833163699986,-42.36673746099996],[-67.11916354499994,-42.41592783399989],[-67.01966063199995,-42.63767845799998],[-67.03314962799988,-42.963402903999906],[-67.09137753599992,-43.03924923699998],[-67.26213048299985,-43.11387985899995],[-67.49379756999991,-43.2614702539999],[-67.52924363199998,-43.56771599499996],[-67.37497755399988,-43.92768906499998],[-67.15509760299994,-44.16878931299988],[-67.06332364199983,-44.22815330499998],[-66.74108858199992,-44.205638338999904],[-66.60614748499995,-44.15035231199994],[-66.19814258899999,-44.06348075799997],[-66.14839163499994,-44.02059575599992],[-65.87904353499988,-43.91203401699994],[-65.83953861999998,-43.87021720499996],[-65.46305856499998,-43.72818451399996],[-65.34719048799997,-43.73327752599994],[-65.32807153499988,-43.644593972999985],[-65.0591205689999,-43.40515384499997],[-65.01074257099992,-43.281424380999965],[-64.88924453699991,-43.203582483999924],[-64.69480148199989,-43.12763187999997],[-64.50608058499995,-43.08200431999984],[-64.32898756699996,-43.00162941199983],[-64.52817561699999,-42.92533179699984],[-64.63915251799989,-42.91939204499988],[-64.95968655399997,-42.78578366999989],[-65.03450761299985,-42.730272168999875],[-64.98638962199988,-42.65715649299983],[-64.84324649699994,-42.61707171699993],[-64.67735253899991,-42.510306218999915],[-64.5607295879999,-42.493392376999964],[-64.57154861399988,-42.427539786999944],[-64.62047562599997,-42.39801017399992],[-64.47901961099984,-42.236978055999884],[-64.87704450899997,-42.18770352999991],[-65.01896655899998,-42.09627037699994],[-65.08551752899996,-41.97158705299995],[-65.03009051799995,-41.73729089799997],[-65.00413561899995,-41.534102667999946],[-65.08792162699996,-41.41181589799993],[-65.17156949999998,-41.09583608499997],[-65.17765057099996,-40.98226196699994],[-65.11483759399994,-40.83167872999991],[-64.9298706159999,-40.73980284499987],[-64.80799858199993,-40.73089992299998],[-64.74123353799996,-40.825307644999896],[-64.43204457599995,-40.90605303299992],[-64.23162857699992,-41.00037777499995],[-63.95914463899993,-41.07799905999997],[-63.783622556999944,-41.16178422899998],[-63.4419475169999,-41.16516733199984],[-63.095184493999966,-41.15555446299993],[-62.89334860099996,-41.08484992399997],[-63.06787457699994,-40.870321314999956],[-63.233409621999954,-40.784880216999966],[-63.28252757399997,-40.73590760699983],[-63.362331506999965,-40.46316768599996],[-63.87597654599983,-39.68331675499991],[-63.98169748999999,-39.448764951999976],[-64.12712853999989,-39.25176977499984],[-64.34683263899996,-38.855016746999866],[-64.44534263299988,-38.820539296999925],[-64.47901961099984,-38.74454477199998],[-64.6723865969999,-38.59641106099991],[-64.70562754899993,-38.52511911899995],[-64.82095348399997,-38.44630860999996],[-64.84335361699993,-38.37486881099994],[-64.95986961499995,-38.29115237299993],[-64.98807555799993,-38.22450752599997],[-65.12104757799995,-38.121657214999914],[-65.16574860299988,-38.04672635399993],[-65.2813875189999,-37.96148088899997],[-65.31369757599992,-37.893580097999916],[-65.42436954399994,-37.812938644999974],[-65.43529552199988,-37.762822575999905],[-65.60173748799997,-37.591474010999946],[-65.75076252999997,-37.47360919699997],[-65.88414761099995,-37.48815096099992],[-66.30490858999997,-37.356397333999894],[-66.56185164099998,-37.09022463399987],[-66.6222075469999,-36.810345509999934],[-66.83794348499998,-36.42548170799995],[-66.83589159499985,-36.37173007199988],[-66.59476452499996,-36.13897015299989],[-66.54992653999989,-36.047171213999945],[-66.46870455699997,-35.49780719799992],[-66.38446860899995,-35.299717846999954],[-66.37474057199984,-35.087012468999944],[-66.49279749899989,-34.891777324999964],[-66.58939356899992,-34.80887829099993],[-66.6678005739999,-34.64831472099985],[-66.61952952799999,-34.57446344799996],[-66.42393463299999,-34.472507151999935],[-66.34557356099998,-34.369958924999935],[-66.33631859899992,-34.2181800919999],[-66.4134825669999,-34.10797332099986],[-66.33265654499996,-34.018566576999945],[-66.32456951699999,-33.77831256499991],[-66.35305759499988,-33.74356957699996],[-66.34540558699996,-33.62046087699997],[-66.34941062799993,-33.54872419099996],[-66.45077549799993,-33.549589873999935],[-66.50428053899992,-33.41908196499992],[-66.72328156399988,-33.52678271499997],[-66.90670761299998,-33.86864986799998],[-66.97434957199994,-33.7677228689999],[-66.99903159399992,-33.67428442999994],[-67.07331051199998,-33.554128841999955],[-67.07382163999995,-33.36405644699988],[-66.99125654099993,-33.24399993299994],[-67.09947948399997,-33.13789308499992],[-67.22307550799997,-32.51627723099989],[-67.18634064399993,-32.40544064299996],[-67.26160460199992,-32.344933527999956],[-67.2883075019999,-32.14141438099995],[-67.4093326279999,-31.878285819999974],[-67.40148951399993,-31.54358703899993]],[[-68.78371463499991,-37.85668480399988],[-68.94654852699989,-37.936319589999925],[-69.03273058499997,-37.905463121999844],[-69.15122957299997,-37.927427730999966],[-69.20373549099997,-37.88659948099996],[-69.18060261199997,-37.663916452999956],[-69.05559557799995,-37.619457497999974],[-68.82424163899998,-37.61566937999993],[-68.71592750099995,-37.69226404999995],[-68.71988660899996,-37.84146108799996],[-68.78371463499991,-37.85668480399988]]]},"properties":{"objectid":393,"eco_name":"Low Monte","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Neotropic","eco_biome_":"NO08","nnh":2,"eco_id":577,"shape_leng":52.8613856237,"shape_area":36.4787003161,"nnh_name":"Nature Could Reach Half Protected","color":"#D6A53C","color_bio":"#FEFF73","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":354191.5934782488,"percentage":3.3429130753963245}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[47.04907255300009,-19.675873111999977],[47.12837960600007,-19.58635723599997],[47.12810149500007,-19.47412371999991],[47.18613460700004,-19.332983031999902],[47.114437484000064,-19.279118071999903],[47.050376610000114,-19.355276714999945],[47.00512355200004,-19.55006828899991],[46.91777456600005,-19.694715127999928],[47.04907255300009,-19.675873111999977]]],[[[49.17737959300018,-14.281945243999871],[49.201862629000175,-14.21610757399992],[49.16643148600019,-14.140820480999878],[49.09952948199998,-14.22814264599998],[49.17737959300018,-14.281945243999871]]],[[[48.95648157500011,-14.176514312999927],[49.01352662900007,-14.10613080099995],[49.03593849700013,-13.970108773999925],[49.02777050000009,-13.870953372999963],[48.97737162500016,-13.87645693099995],[48.92911952300017,-14.019167717999949],[48.95648157500011,-14.176514312999927]]]]},"properties":{"objectid":400,"eco_name":"Madagascar ericoid thickets","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Afrotropic","eco_biome_":"AF10","nnh":4,"eco_id":83,"shape_leng":3.48818047001,"shape_area":0.108619237022,"nnh_name":"Nature Imperiled","color":"#E600AA","color_bio":"#D6C39D","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":1280.4350466847045,"percentage":0.02622066814309727}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[45.99264547100012,-24.06162667199993],[45.86293049000011,-24.304595581999877],[45.836383494000074,-24.41355210899991],[45.85041060900011,-24.608274448999907],[45.916515495000056,-24.686710621999907],[45.88636059200019,-24.760403141999916],[45.393775588000096,-24.777513455999895],[45.14139950100008,-24.720658167999886],[45.089282503,-24.68370503899996],[44.87469052600011,-24.630931402999977],[44.77467346700007,-24.576174273999868],[44.65611262000016,-24.45847709799989],[44.62840255100002,-24.396613120999916],[44.495605544000114,-24.23771067599995],[44.39021652200017,-23.902052501999947],[44.330657568,-23.832840947999955],[44.31763846100006,-23.70476244999992],[44.40512457500006,-23.531504319999954],[44.30702948600009,-23.379073207999966],[44.27793858200005,-23.200339348999876],[44.140617527000074,-23.14278316699989],[44.113872551000156,-23.05096293799994],[43.8795695230001,-23.075436585999967],[43.85335947900006,-22.943752528999937],[43.90228246900017,-22.786755625999888],[43.973979592000035,-22.711520668999924],[43.972907547000034,-22.62687819899986],[43.8365215770001,-22.605361182999957],[43.67783354200003,-22.450128335999977],[43.63133258700003,-22.337793230999864],[43.62664760600006,-22.05630629099994],[43.50233057100013,-22.019941403999894],[43.38465150000013,-22.019086282999922],[43.23862852000002,-22.084296818999974],[43.235778506000145,-22.149942543999884],[43.30447054900003,-22.168532263999964],[43.22850049900006,-22.272856950999937],[43.262349977000156,-22.374270938999928],[43.28488958500009,-22.55447196699987],[43.37044501200012,-22.854215613999884],[43.48188057100009,-22.991449077999903],[43.589790534000144,-23.07473485299988],[43.62046846700014,-23.21231658599993],[43.61602052600011,-23.314522327999953],[43.76322954500017,-23.46127369499993],[43.72124853100013,-23.595837605999975],[43.65494960500013,-23.618596820999926],[43.63353551900002,-23.752819504999877],[43.67602958900005,-24.05941468799989],[43.67052049900008,-24.330210342999976],[43.76221458000015,-24.46691960299995],[43.835201595000115,-24.5074114869999],[43.92872955300015,-24.627276557999892],[43.91764850900006,-24.719351093999933],[44.004840503000025,-24.857350077999968],[44.027740533000156,-24.998988734999955],[44.11037059100016,-25.07315525099989],[44.19677007600018,-25.080794768999965],[44.324340463,-25.180549055999904],[44.35422848600018,-25.258905433999814],[44.68675954000014,-25.306013908999887],[44.89796103700019,-25.392685050999944],[44.972370544000114,-25.480905838999945],[45.11314058500017,-25.534093373999895],[45.18054952600011,-25.60727895599996],[45.29119852700018,-25.58413987399996],[45.5161515420001,-25.577920165999956],[45.61008049000009,-25.54820162599998],[45.871570556,-25.368440982999857],[46.031009610000126,-25.290074881999942],[46.29639860200007,-25.193179242999918],[46.522941496000044,-25.16798961199993],[46.65438046700001,-25.189059537999924],[46.74619019000011,-25.14722551499989],[46.71030050100018,-25.052540127999862],[46.68925454800012,-24.77326349599997],[46.555862594000075,-24.710413470999924],[46.60951649800012,-24.637005265999903],[46.59481447200011,-24.343814506999934],[46.71345846700018,-24.344463433999977],[46.7071604730001,-24.28546841399998],[46.56748561200004,-24.29130205099989],[46.59038547400013,-24.230400315999873],[46.758491583000136,-24.197726650999982],[46.60052456000005,-24.11649293399995],[46.540111489000026,-24.0561879899999],[46.418235600000116,-24.069225201999927],[46.4175605210001,-23.98760424099993],[46.06501348200004,-24.03446997599991],[45.99264547100012,-24.06162667199993]]]},"properties":{"objectid":403,"eco_name":"Madagascar spiny thickets","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Afrotropic","eco_biome_":"AF13","nnh":4,"eco_id":99,"shape_leng":16.0865725807,"shape_area":3.85121045761,"nnh_name":"Nature Imperiled","color":"#E05A57","color_bio":"#CC6767","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":43487.01259882941,"percentage":0.1648348042228004}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[45.99264547100012,-24.06162667199993],[45.91842254500011,-24.095045822999964],[45.79801550000019,-24.27134524199988],[45.697547494000105,-24.25253524599998],[45.72441451100002,-24.17791769999991],[45.67992353700015,-24.116858719999925],[45.782707463000065,-23.98163448199989],[45.811672470000076,-23.831822211999963],[45.88562751100005,-23.92291656799989],[45.949779580000154,-23.930002292999973],[46.00155258500007,-23.80373948299996],[46.03182952800012,-23.56118078399993],[46.08282050000008,-23.553893221999942],[46.074211615000195,-23.729154290999816],[46.23973458900008,-23.49227231899988],[46.16279961500004,-23.410555468999974],[46.167800593000095,-23.317846254999836],[46.123931556000116,-23.215842516999942],[46.05415757700007,-23.18389221099983],[45.91883057600006,-23.049784106999937],[45.93445947300006,-22.946026538999945],[45.84262046800012,-22.858547967999982],[45.751090589000114,-22.864672791999965],[45.74750548100013,-22.745161939999946],[45.67419450600016,-22.683487225999897],[45.5396114830001,-22.6763735049999],[45.55921960500012,-22.5195958729999],[45.523681509000085,-22.381441991999964],[45.55585058300005,-22.286099184999955],[45.52143448800007,-22.035351532999982],[45.51566354800008,-21.9038046039999],[45.4737585580001,-21.701444505999973],[45.55041860600011,-21.556968322999865],[45.59217456600004,-21.355319345999874],[45.561649518000195,-21.248780327999953],[45.43034750800001,-21.356524495999906],[45.34617962100009,-21.376982206999912],[45.26593061000017,-21.53630341199994],[45.23016754300011,-21.45196520499985],[45.07986459700004,-21.591140503999952],[45.033634544999984,-21.470460041999957],[44.93144657200014,-21.481294656999978],[44.96140651200011,-21.042681565999942],[44.92292050000009,-20.902923555999962],[44.97956858700013,-20.89049520599997],[45.166721565000046,-20.787238036999895],[45.15510156500011,-20.674771168999882],[45.24921759800003,-20.632981514999983],[45.284278596000036,-20.486913942999877],[45.25279952000011,-20.293990862999976],[45.20162146300004,-20.27595166599997],[45.10229155200017,-20.315038659999857],[44.979293493000114,-20.421398473999943],[44.88853860400013,-20.404353537999953],[44.98946359100012,-20.215769097999953],[44.97266357500007,-20.154956546999927],[44.743812473000105,-19.965153377999968],[44.58164946800014,-19.85713780399982],[44.473632971000086,-19.823689148999904],[44.4864194810001,-19.95279509999989],[44.44354051400006,-20.058728023999834],[44.26301946500013,-20.306263980999915],[44.23252157500019,-20.406538364999903],[44.11635946100006,-20.488103837999915],[44.04358272100018,-20.709736166999903],[44.033184495000114,-20.805830942999876],[43.96671248200005,-20.879458920999866],[43.88370023700014,-20.906356280999944],[43.86671051000013,-21.051593372999946],[43.80561045900009,-21.220492912999873],[43.72861848700012,-21.284410288999936],[43.757282584999984,-21.38509471599997],[43.71144849400008,-21.475659000999883],[43.54260259800009,-21.716644584999983],[43.42483853500016,-21.670688117999873],[43.34967046500009,-21.748235139999963],[43.32949857700015,-21.868677555999966],[43.23862852000002,-22.084296818999974],[43.38465150000013,-22.019086282999922],[43.50233057100013,-22.019941403999894],[43.62664760600006,-22.05630629099994],[43.63133258700003,-22.337793230999864],[43.67783354200003,-22.450128335999977],[43.8365215770001,-22.605361182999957],[43.972907547000034,-22.62687819899986],[43.973979592000035,-22.711520668999924],[43.90228246900017,-22.786755625999888],[43.85335947900006,-22.943752528999937],[43.8795695230001,-23.075436585999967],[44.113872551000156,-23.05096293799994],[44.140617527000074,-23.14278316699989],[44.27793858200005,-23.200339348999876],[44.30702948600009,-23.379073207999966],[44.40512457500006,-23.531504319999954],[44.31763846100006,-23.70476244999992],[44.330657568,-23.832840947999955],[44.39021652200017,-23.902052501999947],[44.495605544000114,-24.23771067599995],[44.62840255100002,-24.396613120999916],[44.65611262000016,-24.45847709799989],[44.77467346700007,-24.576174273999868],[44.87469052600011,-24.630931402999977],[45.089282503,-24.68370503899996],[45.14139950100008,-24.720658167999886],[45.393775588000096,-24.777513455999895],[45.88636059200019,-24.760403141999916],[45.916515495000056,-24.686710621999907],[45.85041060900011,-24.608274448999907],[45.836383494000074,-24.41355210899991],[45.86293049000011,-24.304595581999877],[45.99264547100012,-24.06162667199993]],[[45.31151961300003,-22.41682435299998],[45.38923662000008,-22.437885224999945],[45.354858579000165,-22.566363204999845],[45.23163957300005,-22.570214018999934],[45.215774475000046,-22.516496747999895],[45.31151961300003,-22.41682435299998]],[[44.24254649900013,-22.57678073699998],[44.22795846700012,-22.733968411999967],[44.170989521000024,-22.77825319099992],[44.0959205260001,-22.77557517299988],[44.00256355900012,-22.553242843999953],[44.013301615000046,-22.482802838999874],[44.10117748800002,-22.482047628999908],[44.202266593000104,-22.43437622499988],[44.24254649900013,-22.57678073699998]],[[45.001430602000084,-22.765722748999963],[45.076770501000055,-22.74443204399995],[45.05026658800011,-22.93848668199996],[45.08692551200011,-23.049696096999867],[44.963169561000086,-23.06164936099998],[44.942363498000134,-22.923827570999947],[44.89855950500015,-22.8808168409999],[45.001430602000084,-22.765722748999963]],[[45.11930849200007,-22.86170492799988],[45.107379535000064,-22.81309843899993],[45.20063357200007,-22.742089972999963],[45.24006254799997,-22.831135288999974],[45.11930849200007,-22.86170492799988]]]},"properties":{"objectid":405,"eco_name":"Madagascar succulent woodlands","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Afrotropic","eco_biome_":"AF13","nnh":4,"eco_id":100,"shape_leng":23.8635172018,"shape_area":6.97792406016,"nnh_name":"Nature Imperiled","color":"#F7885B","color_bio":"#CC6767","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":79874.94367525939,"percentage":0.30276098347976654}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[23.432603265000182,-20.03414030399989],[23.417513213000063,-20.014406745999963],[23.30413333100006,-20.15191292199995],[23.21146914800005,-20.217265789999885],[23.176241001000164,-20.277287742999874],[23.011769677000075,-20.3286914009999],[22.993241524000098,-20.34633710299994],[23.16152812200005,-20.31976928599994],[23.233083164000107,-20.238583803999916],[23.341759060000072,-20.162875571999905],[23.600329951000163,-20.18619989799987],[23.695244141000103,-20.22729834199987],[23.81560632900016,-20.234092457999907],[23.868820462000144,-20.33295061699988],[23.992648916000064,-20.35093480499995],[24.148603755000124,-20.261364019999974],[24.390977347000046,-20.422377102999917],[24.46970693700007,-20.393585970999823],[24.495639595000057,-20.45951621099988],[24.382418851000125,-20.697041327999898],[24.336420479000026,-21.00147877099988],[24.39905119700012,-21.138728632999914],[24.508611026000153,-21.299501471999918],[24.54024296700004,-21.39342442399993],[24.662784210000098,-21.347725643999865],[24.82909626200012,-21.216110375999904],[24.990312069000083,-21.205239769999935],[25.123720175000187,-21.038891311999976],[25.27424050000019,-21.078451807999897],[25.276481157000035,-21.128484913999955],[25.469069032000107,-21.163001195999982],[25.642132627000137,-21.131878656999902],[25.819814069000074,-21.140884101999916],[25.835755978000122,-21.172920593999947],[26.025986788000125,-21.230631080999842],[26.27253722500018,-21.231961906999913],[26.305417004000105,-21.28964677299996],[26.415243556000064,-21.14247803099994],[26.405765520999978,-21.058773458999838],[26.316745210000192,-20.98153909599995],[26.255455940000047,-20.96494227599993],[26.19702727300006,-20.778172063999932],[26.208639988000186,-20.64699595299993],[26.343286123000155,-20.411969641999974],[26.350672483000096,-20.315141586999914],[26.249808392000148,-20.268152233999842],[26.14619581500017,-20.31338099499993],[26.07285576600009,-20.295834194999884],[26.05854245300003,-20.21228222099984],[25.9282285270001,-20.29978747399997],[25.668832165000026,-20.234741047999933],[25.495535349000136,-20.287544315999924],[25.370442202000106,-20.410407904999886],[25.361081455000146,-20.471569901999885],[25.284381598000095,-20.540181238999935],[25.137232494000102,-20.54790934899995],[25.09901738500014,-20.492925200999878],[25.03156608800009,-20.547519263999902],[24.886663247,-20.57806635599991],[24.840439366,-20.654862853999873],[24.711668476000057,-20.710133408999923],[24.579912434,-20.73214470499994],[24.528445310000052,-20.806879469999956],[24.529309952,-20.886953681999955],[24.58988821500003,-20.949534410999888],[24.38653468500013,-20.952293973999872],[24.381808132000117,-20.841035096999974],[24.43241522600016,-20.643070040999874],[24.54020196900018,-20.450233012999888],[24.507278386,-20.34254801399993],[24.406964912999968,-20.35531163199994],[24.299047326000164,-20.265180713999825],[24.30132578900009,-20.222926703999917],[24.18413394400011,-20.1679087039999],[24.042463849,-20.203354782999952],[23.95412484300016,-20.278227600999912],[23.922983425000098,-20.208079880999946],[23.839816738000025,-20.134577547999868],[23.682589066000105,-20.136743748999947],[23.63365119399998,-20.09255587699994],[23.45746281200013,-20.08133990799996],[23.432603265000182,-20.03414030399989]]]},"properties":{"objectid":412,"eco_name":"Makgadikgadi halophytics","biome_num":9,"biome_name":"Flooded Grasslands & Savannas","realm":"Afrotropic","eco_biome_":"AF09","nnh":2,"eco_id":73,"shape_leng":12.7287135614,"shape_area":1.52589397534,"nnh_name":"Nature Could Reach Half Protected","color":"#2C97C3","color_bio":"#BEE7FF","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":17681.37519398939,"percentage":1.529050696606553}}, + {"type":"Feature","geometry":null,"properties":{"objectid":415,"eco_name":"Malpelo Island xeric scrub","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Neotropic","eco_biome_":"NO13","nnh":4,"eco_id":604,"shape_leng":0.11268475086,"shape_area":0.000623405736473,"nnh_name":"Nature Imperiled","color":"#B34544","color_bio":"#CC6767","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":7.7067057421515415,"percentage":0.000029211786606939194}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[13.85493350300004,11.108053868000184],[13.778860523000048,11.101089513000147],[13.641409548000183,10.90494308700005],[13.475569571000051,10.741445181000188],[13.383110473000045,10.618883819000132],[13.331959574000052,10.460424778000174],[13.28582943400005,10.143252220000022],[13.30292047,10.049842782000042],[13.397330539000109,9.90227418000012],[13.480469464,9.937143735000177],[13.483329537000145,10.016895030000114],[13.585530585000129,9.951607715000023],[13.652919578000024,9.967726618000086],[13.759099516000049,10.08767098200019],[13.781270488000075,10.202232153000125],[13.914299506000077,10.26390753700008],[13.951020456000094,10.305175669999983],[13.915989465000052,10.498541315000125],[13.996749437,10.44121613800013],[14.041600498000093,10.460564923000106],[14.103679556000031,10.599455238000075],[14.091039478000141,10.70492791100014],[14.147878505,10.912036524000143],[14.152700446000097,11.023545844000068],[14.0704495,11.085940396000183],[13.910880527000074,10.959670042000141],[13.873999483000148,10.973718112000029],[13.85493350300004,11.108053868000184]]]},"properties":{"objectid":417,"eco_name":"Mandara Plateau woodlands","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Afrotropic","eco_biome_":"AF07","nnh":4,"eco_id":49,"shape_leng":3.84702271037,"shape_area":0.617672093688,"nnh_name":"Nature Imperiled","color":"#FCE55B","color_bio":"#FEAA01","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":7525.565073868381,"percentage":0.035102194792529316}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[36.471666667000136,2.285],[36.386666667000156,2.141666666000106],[36.39666666700015,2.051666666000131],[36.47416666700019,1.91916666700007],[36.313333333,1.819166667000161],[36.28083333300003,1.69166666600006],[36.34,1.650000000000148],[36.46666666700014,1.650000000000148],[36.50833333300011,1.762500000000102],[36.49916666700017,1.815833333000057],[36.55500000000012,2.151666666999972],[36.58666666700003,2.210833332999982],[36.471666667000136,2.285]]],[[[39.49916666700011,2.736666667000065],[39.41166666700019,2.667500000000132],[39.41666666600008,2.516666667000038],[39.446666666000056,2.434166667000113],[39.43666666700017,2.355833334000124],[39.4625,2.2650000000001],[39.55,2.275],[39.565,2.431666666000126],[39.52500000000015,2.500000000000114],[39.52166666700015,2.660833334000131],[39.49916666700011,2.736666667000065]]],[[[36.33583333400014,2.866666667000118],[36.260000000000105,2.96],[36.15916666600015,2.958333333000098],[36.23166666700013,2.839166667000086],[36.30333333300007,2.663333333000082],[36.37916666700005,2.6425],[36.33583333400014,2.866666667000118]]],[[[35.6475,3.27916666700014],[35.665,3.141666666000106],[35.7625000000001,3.160833334000188],[35.6475,3.27916666700014]]],[[[34.675,4.158333332999973],[34.629166666000174,4.060000000000173],[34.79000000000019,4.105833334000124],[34.675,4.158333332999973]]],[[[34.9320466960001,4.750948615000084],[34.86542178800005,4.755707536999978],[34.803555802000176,4.705738856000153],[34.83,4.535833334000188],[34.756666666000115,4.4],[34.780833333000146,4.3275],[34.8925,4.427500000000123],[34.995833334000054,4.386666666],[35.04500000000013,4.416666667000015],[35.110833334000176,4.255000000000109],[35.131666666000115,4.080000000000155],[35.23000000000019,3.940000000000111],[35.25583333400016,3.805833334000113],[35.31916666700005,3.8],[35.3425,3.9475],[35.32416666700004,4.021666666000158],[35.34083333400014,4.144166667000036],[35.420833333000076,4.181666667000059],[35.41666666700007,4.293333333000021],[35.36666666700006,4.36833333300001],[35.36583333300018,4.4575],[35.41833333400007,4.539166667000188],[35.40080051400014,4.636734487000183],[35.26279177600003,4.736671849000061],[35.051019746000065,4.736671849000061],[34.9320466960001,4.750948615000084]]],[[[35.83,5.11833333400017],[35.736213415000066,5.13303216900016],[35.62356484600008,5.119238467000173],[35.577585838000175,5.084754211000131],[35.50861732600009,4.923827683000013],[35.529307879000044,4.781292759000053],[35.784491373000094,4.659448388000044],[35.83083333400009,4.605000000000189],[35.8366666660001,4.385833333000107],[35.81666666700005,4.303333333000182],[35.835,4.189166667000109],[35.73750000000018,3.920833333000076],[35.73166666700007,3.8241666670001],[35.790000000000134,3.761666667000156],[35.8025,3.648333333000096],[35.765,3.523333334000142],[35.82333333399998,3.301666667000177],[35.88416666700016,3.1425],[35.756666666000115,3.133333333000053],[35.67083333300019,3.084166666000101],[35.5875,3.0875],[35.54000000000019,2.987500000000125],[35.71916666600009,2.98250000000013],[35.736666667000065,2.939166666000119],[35.868333334000056,2.834166666000158],[35.86333333400012,2.958333333000098],[35.93583333300012,2.956666667000093],[35.96333333300015,2.870000000000118],[36.11416666700018,2.836666666000099],[36.19083333300006,2.85],[36.14166666699998,2.975833332999969],[36.14916666700009,3.166666666000026],[36.023333334000085,3.292500000000132],[35.945000000000164,3.335833333000039],[35.9466666670001,3.458333334000088],[35.906666667000025,3.543333334000067],[35.83416666700009,3.615833333000126],[35.864166667,3.879166667000163],[35.85833333400012,3.975833334000072],[35.9325,4.13],[35.91833333300008,4.309166666000124],[35.9425,4.513333333000048],[35.99,4.7025],[35.99,4.838333334000083],[36.05,4.937500000000171],[36.01416666600011,5.03],[35.87000000000012,5.025833333000037],[35.83,5.11833333400017]]],[[[36.63666666600017,4.447500000000105],[36.37833333400016,4.436666667000168],[36.28,4.444166667000047],[36.224166665999974,4.624166666000065],[36.154166667000084,4.713333334000026],[36.1675,4.798333333000073],[36.16666666700013,5.060000000000173],[36.19416666600006,5.14666666700009],[36.11666666600013,5.130833333000112],[36.090000000000146,5.03],[36.13,4.955833333000157],[36.11416666700018,4.83500000000015],[36.07416666600017,4.743333333000066],[36.14583333400003,4.706666667000093],[36.20416666700015,4.595833333000144],[36.22416666700008,4.507500000000107],[36.21,4.325000000000102],[36.2650000000001,4.155000000000143],[36.20166666600011,3.940000000000111],[36.29,3.75416666700005],[36.22833333300002,3.6075],[36.264166667000154,3.352500000000134],[36.315833333000114,3.190000000000111],[36.394166667000036,3.127500000000168],[36.41250000000019,3.028333334000024],[36.545833333000076,2.888333333000105],[36.68666666700017,2.8900000000001],[36.71916666699997,2.84],[36.70333333300016,2.565833333000057],[36.71083333400014,2.505000000000109],[36.7775,2.292500000000132],[36.88166666700005,2.253333333000171],[36.92666666700012,2.135833333000164],[36.892500000000155,2.016666667000152],[36.78833333300014,2.025000000000148],[36.773333334000085,2.225],[36.774166666000156,1.983333333000076],[36.688333334000106,1.930000000000177],[36.67750000000012,1.745833333000178],[36.73083333300019,1.692500000000109],[36.78000000000014,1.568333333000169],[36.8725,1.474166667000077],[36.92500000000018,1.363333333000128],[36.98666666700018,1.473333334000131],[36.98916666600019,1.723333333000141],[36.97083333299997,1.808333333000121],[37.04,1.954166666999981],[37.10916666600008,1.939166667000052],[37.30270210600008,1.828830274999973],[37.56583333300006,1.711666667000145],[37.773333334000085,1.758333334000156],[37.829166667000095,1.748333333000119],[37.87333333400005,1.82333333400004],[37.929166667000175,1.785833333000085],[38.080000000000155,1.77],[38.203333333000046,1.697500000000105],[38.330833333000044,1.71666666700014],[38.38083333300011,1.692500000000109],[38.38916666600011,1.755],[38.48750000000018,1.820833333],[38.545833333000076,1.854166667000072],[38.68333333300018,1.915833333000137],[38.75583333300011,1.90416666700014],[38.73916666600019,2.056666667000059],[38.70833333400003,2.165833334000183],[38.71,2.256666667000104],[38.76083333399998,2.299166667000065],[38.8275000000001,2.29],[38.895,2.132500000000164],[39.03333333300009,1.949166667000043],[39.0841666660001,1.993333333000066],[39.06416666700005,2.150833333000151],[39.09416666700014,2.195833334000099],[39.28916666700002,2.2525],[39.30166666700012,2.155],[39.35333333300002,2.100833333000082],[39.47916666700013,2.13666666600011],[39.42083333300013,2.325833333000105],[39.412500000000136,2.444166667000104],[39.36833333300018,2.523333333000096],[39.370000000000175,2.6475],[39.406666667000025,2.885833334000097],[39.325833333,2.900833333000151],[39.27,2.81666666700005],[39.288333333000026,2.69583333300011],[39.17416666700012,2.609166667000068],[39.1525,2.505000000000109],[39.09333333300009,2.465833333000091],[39.066666666,2.564166667000165],[39.0975,2.653333333000148],[39.09,2.74583333400011],[39.11416666700012,2.839166666000153],[39.09333333300009,2.923333333000187],[39.12166666600007,2.977500000000134],[39.06333333300017,3.0975],[38.99166666700012,3.045],[38.968333334000135,2.741666667000061],[38.9125,2.791666667000072],[38.9458333340001,2.8775],[38.900833334000026,2.955833333000044],[38.903333333000035,3.143333333000044],[38.75083333300012,3.27],[38.73166666600008,3.378333333000057],[38.60500000000013,3.296666667000181],[38.684166666000124,3.041666667000072],[38.7625,3.161666667000134],[38.80916666700011,3.064166666000176],[38.72250000000014,2.980833332999964],[38.66583333300014,3.020833333000041],[38.639166667000154,3.101666667000075],[38.5741666670001,3.116666667000061],[38.57250000000016,3.185000000000116],[38.439166666000176,3.39333333400009],[38.34583333299997,3.405833333000032],[38.32916666700015,3.450833333000105],[38.229166667000186,3.524166667000088],[38.204166667000095,3.61500000000018],[38.12666666600006,3.568333333000112],[38.083333333000155,3.653333333000091],[38.03583333300003,3.64416666700015],[37.985000000000184,3.735833334000063],[37.195,4.260833334000097],[37.04,4.375000000000171],[36.853333333000194,4.445000000000164],[36.675,4.431666667000172],[36.63666666600017,4.447500000000105]],[[37.800833333000185,3.809166667000113],[37.85666666700007,3.719166666000092],[37.92666666700012,3.726666667000075],[37.98333333300002,3.596666667000022],[37.85583333300008,3.536666667000134],[37.885833333000164,3.460833333000096],[37.871666666000124,3.344166666000035],[37.77000000000015,3.189166667000165],[37.71,3.1675],[37.61166666700012,3.296666667000181],[37.575,3.495833333],[37.610000000000184,3.55166666700012],[37.74833333300006,3.621666667000113],[37.75250000000011,3.71],[37.800833333000185,3.809166667000113]],[[36.98666666700018,2.902500000000146],[37.0325,2.615833333000126],[36.99250000000012,2.536666666999963],[36.89166666700004,2.539166666000142],[36.84833333400013,2.76083333400004],[36.910833334000074,2.884166667000159],[36.98666666700018,2.902500000000146]],[[38.0925,2.590833332999978],[38.21916666600015,2.5775],[38.316666667000106,2.464166667000086],[38.34416666700014,2.376666667000165],[38.34750000000014,2.260833334000154],[38.27250000000015,2.245000000000175],[38.2275,2.194166666000058],[38.275,2.056666667000059],[38.270833333000155,2.006666667000161],[38.15500000000014,2.024166666000099],[38.15583333300009,1.974166667000134],[37.9875,1.963333333000151],[37.88833333400015,1.998333333000062],[37.79583333300019,1.910833334000074],[37.779166666000094,2.063333334000163],[37.8425,2.14],[37.71333333300015,2.196666667000045],[37.811666667,2.2525],[37.86750000000018,2.3525],[38.00000000000017,2.443333333000055],[37.980833333000135,2.531666666000092],[38.0925,2.590833332999978]]],[[[36.2275,5.42],[36.2033333330001,5.415],[36.18333333300012,5.315833333000057],[36.13333333300011,5.279166667000084],[36.18333333300012,5.213333333000037],[36.22250000000014,5.2025000000001],[36.2275,5.42]]],[[[36.21416666600004,5.595],[36.100833334000185,5.55],[36.185000000000116,5.439166667000052],[36.21416666600004,5.595]]]]},"properties":{"objectid":425,"eco_name":"Masai xeric grasslands and shrublands","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Afrotropic","eco_biome_":"AF07","nnh":3,"eco_id":50,"shape_leng":68.4784529353,"shape_area":6.06006948608,"nnh_name":"Nature Could Recover","color":"#FFAA01","color_bio":"#FEAA01","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":74976.86661262157,"percentage":0.34972158913468454}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-13.883305574999952,28.75384817700018],[-14.015165484999898,28.700841524000168],[-14.029692495999882,28.59009395200019],[-14.198859586999959,28.32175587100005],[-14.21811147699998,28.214147321000098],[-14.366428582999959,28.114498395000055],[-14.324321589999954,28.041673235000076],[-14.212578582999981,28.161854304000087],[-13.947480442999904,28.221551727000076],[-13.87377752999987,28.337278988000037],[-13.861182546999942,28.476698369000076],[-13.82070449199989,28.55063044300016],[-13.837703494999971,28.72199443000011],[-13.883305574999952,28.75384817700018]]],[[[-13.419102532999943,29.121474762000048],[-13.372211483999877,29.186710947000165],[-13.453760528999965,29.235638128000176],[-13.526464486999885,29.131366414000126],[-13.63804253799998,29.11720988200011],[-13.747794507999913,29.073668410000096],[-13.824868453999898,29.005301081000084],[-13.82940155499989,28.919894684000155],[-13.787079481999967,28.846695524000097],[-13.716294476999963,28.905834210000137],[-13.516467557999817,28.968457755000088],[-13.462631432999956,29.01409001000013],[-13.419102532999943,29.121474762000048]]],[[[-7.36741855799994,30.808667719000027],[-7.482326571999977,30.503205518000073],[-7.544474527999967,30.402899115000082],[-7.648404427999935,30.320083062000037],[-7.914934532999951,30.153448312000023],[-7.974836473999972,30.263109254000085],[-7.961818539999967,30.432168049999973],[-8.024453484999981,30.690206784000168],[-8.093730585999936,30.771131880000155],[-8.242093456999953,30.800168972000165],[-8.390332443999966,30.765956055000117],[-8.558388429999866,30.663189731000045],[-8.788840475999962,30.636510636000025],[-8.875218502999928,30.683265897000126],[-8.94264253199998,30.877381220000075],[-8.98263544199989,31.14311487600014],[-8.909525464999945,31.185517248000053],[-8.75037558699995,31.156061563000094],[-8.295157441999947,31.212132472],[-8.024494556999969,31.279291298000146],[-7.860608567999918,31.35285574200003],[-7.530050446999894,31.5862345810001],[-7.435499560999972,31.694347218000075],[-7.134677581999881,31.832474445000173],[-7.029196526999954,31.94151998800004],[-7.015337552999881,31.992982359000052],[-7.077937461999909,32.121468217000086],[-6.97803758099991,32.17669540400016],[-6.686556562999897,32.232438580000064],[-6.386945433999927,32.3543897400001],[-6.257025430999931,32.50121704700007],[-6.211565508999968,32.60863147100008],[-6.233921552999902,32.67519250000004],[-6.379323433999957,32.80841228900016],[-6.49428458899996,32.879127220999976],[-6.628778427999862,32.93022363900019],[-7.018387559999894,33.001025575000085],[-7.368443497999976,32.983299861000035],[-7.660561540999936,32.93002163500017],[-7.823588551999933,32.87960012800011],[-8.00449550299993,32.762843738000186],[-8.204907478999814,32.68299320200015],[-8.45464159099987,32.506370910999976],[-8.651350440999863,32.309801032000166],[-8.856417557999976,31.899347280000143],[-9.07440655299996,31.67988173000009],[-9.151387459999967,31.703738805000057],[-9.236722442999962,31.848326132000125],[-9.24612542999995,32.097237979000056],[-9.285875431999955,32.149856215],[-9.402772470999935,31.981755638000095],[-9.675947580999946,31.69753401800017],[-9.681080490999818,31.619537726000033],[-9.83784856699998,31.41051451900006],[-9.799327518999974,31.314327821000177],[-9.841892499999915,31.14042395000007],[-9.808705527999905,30.81645517700008],[-9.894314430999941,30.642041518000042],[-9.792672455999934,30.607422749000136],[-9.701638448999915,30.531934491000072],[-9.663412444999892,30.44043864200006],[-9.603179585999953,30.39404061700003],[-9.646635562999904,30.156279216000087],[-9.791988492999906,29.861860173000082],[-9.967676535999942,29.69299566900014],[-10.051830508999899,29.58671062200017],[-10.083370436999871,29.498782948999974],[-10.222149439999953,29.30676042000016],[-10.325969536999878,29.229603325000085],[-10.435159583999848,29.09577953500002],[-10.635709525999914,28.950604301000112],[-11.038869513999941,28.75994198799998],[-11.106049461999874,28.688334886000064],[-11.30914046099997,28.522701606000112],[-11.450019466999834,28.34185986500006],[-11.567680432999907,28.27678276900008],[-11.698599557999955,28.24112397400006],[-12.054920464999896,28.08953021399998],[-12.554610472999912,27.992204416000163],[-12.911700502999963,27.950655992000065],[-12.95800045999988,27.918547436000097],[-13.045530495999913,27.752794629999983],[-13.156439502999945,27.69301707500017],[-13.199589540999966,27.60388978399999],[-13.299019531999932,27.32316190900002],[-13.40359953199993,27.175968313000055],[-13.448255462999953,27.012326406000113],[-13.185708116999933,27.15617484700016],[-13.02814056099993,27.349130722000098],[-12.819749516999877,27.549113041000055],[-12.675539542999957,27.66640805300011],[-12.419930555999883,27.740704069000174],[-12.112959444999944,27.810120980000136],[-11.444410464999976,27.91657752100008],[-11.18459946199988,27.994403156000033],[-10.954790474999982,28.078660897000134],[-10.555870556999935,28.160637251000026],[-10.351289589999908,28.183255482000163],[-10.21296052799994,28.23562326600006],[-10.029820468999901,28.244874037000102],[-9.59437858699988,28.342270076000148],[-9.43693258299993,28.432165317000056],[-9.500227518999907,28.477564554000082],[-9.679520450999973,28.440734807000183],[-9.68228748499996,28.530602220000105],[-9.565264548999892,28.680645160000097],[-9.445997442999953,28.74426347000019],[-9.101002498999947,28.97666347100011],[-8.973471506999886,29.04899057800003],[-8.934388535999915,29.174096686000155],[-8.62833943499993,29.35121971100017],[-8.488694580999947,29.407377624],[-8.312313521999954,29.50706276],[-8.261489515999926,29.575640977999967],[-8.128565439999875,29.675677316000076],[-8.040434589999848,29.767512632000035],[-7.995098551999945,29.897708902000147],[-7.898579427999948,29.86659008100014],[-7.787343525999916,29.87713954400016],[-7.699066494999954,29.941517254000075],[-7.549685557999965,30.101940176000028],[-7.29799544499997,30.424447479000037],[-7.174567561999936,30.533214408],[-6.967198438999958,30.636678777000157],[-7.10399646399992,30.630461081000135],[-7.229207512999949,30.664608619000035],[-7.36741855799994,30.808667719000027]]]]},"properties":{"objectid":428,"eco_name":"Mediterranean Acacia-Argania dry woodlands and succulent thickets","biome_num":12,"biome_name":"Mediterranean Forests, Woodlands & Scrub","realm":"Palearctic","eco_biome_":"PA12","nnh":3,"eco_id":796,"shape_leng":32.167136561,"shape_area":9.38389340357,"nnh_name":"Nature Could Recover","color":"#F1873D","color_bio":"#FE0000","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":100304.53963013344,"percentage":3.0364087583824095}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[30.623247489000164,31.384167682000168],[30.61226049100003,31.4766814300001],[30.48320047200002,31.450933229000157],[30.37153055500005,31.50367166100017],[30.31325956400019,31.348826729],[30.161899491000156,31.26575955400017],[30.06583952799997,31.327337541000134],[29.826250537000192,31.135444261000032],[29.780010595000192,31.127414565000038],[29.55656045500018,30.97350991500008],[29.348119454000084,30.874722312000188],[29.10902952200007,30.81632928100015],[29.229278484000133,30.779865655000094],[29.62202848300018,30.76880908700008],[29.934379603000025,30.880143225000097],[30.110202595000032,30.97073483400004],[30.323244590000172,31.09107281200005],[30.587902512000028,31.330519311000103],[30.623247489000164,31.384167682000168]]],[[[23.170919497000057,32.30583823600017],[23.087390479000078,32.36119148700004],[23.154909558999975,32.46782002400016],[23.107980457000167,32.51545655899997],[23.111040522000167,32.63371264000011],[22.86725957300007,32.691152146000036],[22.80372055600003,32.72005110400016],[22.490539461000026,32.80798950600007],[22.376480534000052,32.86701570700012],[22.211320495999985,32.87387830600011],[22.134265493000044,32.92914354699997],[22.306909564000023,32.75225018500004],[22.28950454200003,32.57712339400018],[22.233213525000167,32.47296584200012],[22.151370443000133,32.437604939000096],[21.852338503000055,32.41912736900019],[21.371040570000105,32.32864153900016],[21.15275552700018,32.256469832000164],[20.92455854800005,32.15465099900007],[20.82407947700017,32.08924600200004],[20.492391474999977,31.831707668000035],[20.2739185100001,31.71117439200009],[20.156591479000156,31.696468007000135],[20.07958458700017,31.741506655000023],[19.942926541000077,31.870914356000185],[19.92898944800004,31.721833155000127],[19.955980517000114,31.67143478300011],[19.99361056800018,31.47670037299997],[20.09700955800014,31.323196545000144],[20.17395056800018,31.170121871000106],[20.129329505999976,30.982245367000075],[20.464603455000145,31.337246290999985],[20.510520526000107,31.458832],[20.596679450000067,31.580147978000184],[20.775770546000103,31.789210916000116],[20.880340488000172,31.885027637000064],[21.0585305300001,31.98376444400003],[21.39232054500019,32.11945019000018],[21.561239532000172,32.15894990900017],[21.98685044700005,32.17995730500013],[22.027221548000057,32.217512087000046],[22.14583251900018,32.17111858800007],[22.592840589000105,32.186506924000184],[22.648586448000117,32.17984314400019],[22.851409562000185,32.2341434600001],[22.99945258000014,32.29422259500018],[23.170919497000057,32.30583823600017]]],[[[16.165670486000124,31.25152523800017],[16.03178953200012,31.280358985000134],[15.816760523000085,31.36347544600011],[15.654350588000057,31.458482139000182],[15.521530447000032,31.62452646800017],[15.407879551000178,31.846619074000103],[15.360959501000025,31.99269418900019],[15.36614052300007,32.15787099000016],[15.291110587000105,32.31065581900009],[15.221110464000162,32.379111828000134],[15.104220465000083,32.41377183600002],[14.869930513000043,32.444268720000025],[14.762319449000074,32.43953076500014],[14.643690541000126,32.48912816300009],[14.46006047700007,32.52531719700016],[14.189040522000028,32.7115713],[14.035619508000138,32.72682971700016],[13.948499515000151,32.77172050800016],[13.78913958600009,32.79905959400003],[13.588319579000142,32.79603758300016],[13.38961047100014,32.89843661200007],[13.237299556000153,32.907607252],[12.939860513000042,32.81501907300003],[12.758910478000075,32.790720774000135],[12.549469516000102,32.797929714000134],[12.313389525000048,32.83351642500003],[12.217539445000057,32.87066652800013],[11.891570583000089,33.059869720000165],[11.72977252600009,33.08821178500017],[11.754377332,33.01433959600013],[11.654161557000066,32.973683471000186],[11.601120191000064,33.00439171900007],[11.601115509000067,32.944924430000185],[11.570538099000146,32.88288919400014],[11.587155450000068,32.781047220000175],[11.66444797600002,32.770841406000045],[11.802650492,32.75432906500009],[11.89570956700004,32.59666496300014],[12.169289522000156,32.415781648],[12.231789518000085,32.341092018000154],[12.174019430000158,32.24919601700003],[12.020850543000051,32.177657311000075],[11.795599468000148,32.11970215000002],[11.565580431000058,32.08551219999998],[11.110750536000012,31.97531481500016],[10.958760480000024,31.92300738100016],[10.93490055400008,31.846787886000072],[11.028490538000085,31.816198968000094],[11.169879499000047,31.80769150400016],[11.443240519000028,31.821589873000164],[12.079719499000134,31.8327483650001],[12.46067046100012,31.78228226699997],[12.68764954900007,31.78491200600007],[13.324819532999982,31.84895008100017],[13.646989549000068,31.894377482000152],[13.868229548000102,31.90914706600006],[14.144579555000064,31.893787396],[14.448120456000026,31.827419821999968],[14.647620480000114,31.640965894000033],[14.749609467000084,31.48240207900011],[14.907729544,31.357156497000176],[15.148359568000103,31.285859860000073],[15.909848431000114,31.23885666200016],[16.165670486000124,31.25152523800017]]],[[[10.68900250500019,34.64827289500016],[10.612819554000055,34.78458342800019],[10.521209543000055,35.06931600900003],[10.517149517,35.21823124800005],[10.45014944500008,35.267752034000125],[10.359530510000127,35.2414997460001],[10.22776045400019,35.12264469400009],[9.924569582000117,34.922068601000035],[9.840523568000037,34.80400379500003],[9.727417496000157,34.561978017000115],[9.607853502000069,34.46199079700017],[9.379144557000075,34.47172939500001],[9.260029498000108,34.4560929540001],[9.153940588000125,34.574436878000085],[9.002009540000074,34.58789855000015],[8.988832518000095,34.715405234000116],[8.904371432000119,34.772872401000086],[8.960416525000028,34.87194901100003],[9.166345469000078,34.98142806600009],[9.068161531999976,35.13563312400004],[9.001811560000021,35.13143345500009],[8.819485552000174,35.0593142190001],[8.72077858400013,35.09141439400014],[8.53253847200017,35.07017481800011],[8.337908501000015,35.15430180100009],[8.344540431000041,35.24054957400017],[8.285146432000147,35.28947960400018],[8.148033584000075,35.30971988800013],[8.008676564000154,35.46506622600015],[7.946835553000085,35.50641231100013],[7.850914562000071,35.451894401],[7.663027497000087,35.5147740970001],[7.381635440000025,35.52628278600014],[7.212499530000173,35.606576892000135],[7.026388590000181,35.64518796100015],[6.962562576000096,35.71222910500012],[6.704496518000155,35.78741947100008],[6.587791424000045,35.735140535000085],[6.479581557000188,35.530112477000046],[6.521759461000158,35.48293376200007],[6.719399542000076,35.47296600200008],[6.936264523000148,35.361758767000026],[6.970586572,35.28128964600006],[6.785243582000135,35.006756501000154],[6.217216588000042,34.96062686400012],[6.048878468000112,34.988618062000114],[5.79682642500012,35.10818289400004],[5.489183588000174,35.234831774000156],[5.498989577000032,35.27902066500013],[5.645412540000052,35.41199738],[5.690676494000115,35.4893955390001],[5.668467468000188,35.56224265900016],[5.537309458999971,35.61847031000008],[5.425546503000021,35.61241270800019],[5.056918447000044,35.67549122400004],[4.642156565000107,35.84414618000005],[4.302775484000108,35.907526779000136],[4.175149441000144,35.872695277000105],[3.944535457000143,36.01558208400019],[3.774513580000018,36.029093712000076],[3.638617448000105,35.99495354900017],[3.337614420000079,35.87065461900005],[3.219122472000038,35.87120732200003],[3.269867520000105,35.96365435000013],[3.221666547000154,36.010383292000085],[2.926397579000081,35.95129473000014],[2.862071501000059,35.88606525100005],[2.837167526000144,35.79263720500012],[2.755451514000072,35.715770292000116],[2.415293431000123,35.55359203200004],[2.052534551000065,35.41837517000016],[1.892042563000075,35.330868268000074],[1.907189500000015,35.24859150700007],[2.125468509000029,35.22258313200007],[2.10283351400011,35.15027396200014],[1.92013350600007,35.130044406000025],[1.896924519000095,35.06253404300003],[1.67304053200013,35.05886411100016],[1.52170543800014,35.00375846200012],[1.422027510000021,34.80105068300014],[1.376271538000083,34.769183525000074],[0.985190544000034,34.7597428200001],[0.70599152799997,34.787532182000064],[0.547867427000028,34.87160887300013],[0.372391446000051,34.725834669],[0.233874461000084,34.63963601500018],[0.170064541000102,34.7049154500001],[-0.116819506999946,34.69361664500008],[-0.206334544999947,34.654936676000034],[-0.248411530999931,34.539418627000146],[-0.383598553999889,34.526018143000044],[-0.482103517999917,34.58897847400016],[-0.670252433999906,34.59108736100012],[-0.762454541999887,34.62815850700014],[-0.934805582999957,34.642435905000184],[-1.092851563999943,34.60799785000012],[-1.368492461999892,34.511351489000106],[-1.649888541999928,34.43199263600013],[-1.794963527999926,34.3462437550001],[-1.937669452999955,34.318225567000184],[-1.955855500999917,34.23737590800016],[-2.148118422999914,34.213786550000066],[-2.406975564999868,34.26049638200004],[-2.519866557999819,34.22420726700011],[-2.569644500999971,34.168518573000085],[-2.63640350999998,33.97287623600005],[-2.734783583999899,33.91214783800018],[-3.213201495999954,33.74835237500014],[-3.417938532999926,33.79206014400012],[-3.532460476999972,33.78934021600014],[-3.616374558999894,33.72432129000015],[-3.752538575999893,33.49456779200011],[-3.836972504999949,33.41083040000012],[-4.075856577999957,33.25210582000017],[-4.313816461999977,33.20602546900017],[-4.410648565999963,33.17133931000018],[-4.709212460999936,32.966904523000096],[-4.997014493999927,32.83298953800005],[-5.275493503999883,32.67945318900007],[-5.235592459999907,32.59544506100008],[-5.063053497999931,32.61365524900009],[-4.960094557999923,32.64573245700012],[-4.439328421999846,32.62225307000017],[-4.285142473999883,32.64072343100008],[-4.100601464999897,32.69297185700003],[-3.871503430999951,32.71341029000013],[-3.810221492999972,32.68799418000003],[-3.768088515999978,32.5833374020001],[-3.835417493999955,32.50139994000017],[-3.945194441999888,32.417570682000076],[-4.216607507999925,32.45934022000006],[-4.385811477999937,32.465150220000055],[-4.540472511999951,32.42487919900003],[-4.662961453999969,32.32933220800004],[-4.561826583999959,32.21969674700017],[-4.602529440999888,32.07919140600018],[-4.688588452999966,32.000424148000036],[-4.969982520999963,31.834389374000068],[-5.129844525999886,31.758523092000132],[-5.343661510999937,31.678325546000167],[-5.610643567999887,31.533549626000024],[-5.83902545199993,31.463311792000013],[-6.148935424999934,31.406043947],[-6.447093467999935,31.246409260000178],[-6.973086558999967,31.157273419000035],[-7.131897471999878,31.12196347800011],[-7.246489487999895,31.030947744000116],[-7.36741855799994,30.808667719000027],[-7.229207512999949,30.664608619000035],[-7.10399646399992,30.630461081000135],[-6.967198438999958,30.636678777000157],[-6.882206443999962,30.745646703000148],[-6.926692556999967,30.7855765810001],[-7.101632431999974,30.831074725000178],[-7.097743563999927,30.944019697000044],[-6.929509546999952,31.027497921000077],[-6.634693536999976,31.036847431000012],[-6.375764477999951,31.122354746000156],[-6.371013446999939,31.055185860999984],[-6.473543568999958,30.904331050000053],[-6.502750477999939,30.820645291000176],[-6.444241440999974,30.785215489000052],[-6.188567577999947,30.78738640199998],[-6.072030457999972,30.69214970900009],[-5.792745443999934,30.72412767500009],[-5.659211499999913,30.761876415000074],[-5.718324536999944,30.856053802000076],[-5.414214504999961,30.93434999800013],[-5.312104483999974,31.018737323000153],[-5.185692475999929,31.208870739000076],[-5.031901483999889,31.37828492800014],[-5.07018850899982,31.445562609000092],[-5.344182529999955,31.52194001900017],[-5.331000478999954,31.563728333000086],[-4.918560550999928,31.71233461500003],[-4.758570470999871,31.79524069000007],[-4.455575566999869,31.91152802900018],[-4.038622486999941,31.921416496000063],[-3.496732446999943,32.031413888000145],[-3.148602502999893,32.07160058700009],[-2.976933581999958,32.121750017000124],[-2.837061578999965,32.222397898999986],[-2.570516554999926,32.195989539000095],[-2.400814530999924,32.27057640800007],[-2.281065464999926,32.232968484000025],[-2.468173516999911,32.14062857699997],[-2.400829450999936,32.095892013000025],[-2.172728528999926,32.104649761000076],[-2.169634432999885,32.047324416000095],[-2.253921509999941,31.94410597200016],[-2.1802605069999,31.85187871800008],[-2.060321506999969,31.81903004000003],[-1.676035553999895,31.87381818200015],[-1.463042508999933,31.96011540800015],[-1.342844508999917,32.049014543000055],[-1.187412507999966,32.09811170900019],[-0.706504500999927,32.18014824500011],[-0.556839583999931,32.24859704600016],[-0.345391491999976,32.37212417000018],[-0.061193508999963,32.4759985820001],[0.109842578000098,32.56634694899998],[0.465192525000077,32.7146422620001],[0.774853557000085,32.8245179490001],[1.461266551000108,33.03468260400018],[2.093610571000056,33.20362623300008],[2.452218564000077,33.32075293600019],[2.711448534000112,33.35585081500011],[3.076121504000071,33.389182794000135],[3.335470497000017,33.45425989000012],[3.779655542000057,33.60152557100014],[4.268428456000038,33.85729750200005],[4.452857484000162,33.97556498300003],[5.084853487000146,34.40502335900004],[5.287847424000063,34.51669931100008],[5.45306244700015,34.587399491000156],[5.654736570000068,34.69485649600006],[5.869099553000069,34.72861578400017],[6.4295095760001,34.758712852000144],[6.746160444000054,34.803171807000126],[6.995542516000057,34.77412348300004],[7.184670438000126,34.70233650600005],[7.378052510999964,34.552968477000036],[7.530343478000077,34.45693181500013],[7.788749506000102,34.37981310900011],[8.187101467000048,34.221156422000035],[8.404247577000035,34.16997953900017],[8.927145566000092,34.113481321000165],[9.101101573000108,34.128468834000046],[9.277276438000172,34.11638011800011],[9.65771592800013,34.04841548200011],[9.662645545000089,34.04955901700015],[9.792697434000047,34.160389971000086],[9.768398464000029,34.31452562700014],[9.63502645900013,34.407762062000074],[9.704906554000104,34.444432217999974],[9.874452506000125,34.48162037600014],[9.990845458000024,34.61617657600004],[9.969043457000112,34.797603038000034],[10.031229467000173,34.7779345670001],[10.095620589000077,34.68824585600004],[10.202850444000035,34.75062230300017],[10.232279473000062,34.68808576200013],[10.04012954000018,34.49774095499998],[9.974712473000181,34.28451657000005],[9.975529541000128,34.14484942000007],[10.036227428000075,34.07958104800019],[10.02414944100019,34.1782383960001],[10.127710537000098,34.3186956240001],[10.331000523000057,34.39741342900015],[10.464850465000154,34.509970655000075],[10.567919543000187,34.527430159000176],[10.68900250500019,34.64827289500016]],[[4.18351357500012,35.42256729500019],[4.246848576000104,35.508044938000126],[4.541419499000085,35.566603763000046],[4.638196451000169,35.570631603000095],[4.878333451000117,35.52352480400003],[4.904443582000169,35.46574901600019],[5.038173494000091,35.46039331500015],[5.098888481000017,35.34436112100008],[4.936110580000161,35.31075388000005],[4.917141495000124,35.352520065000135],[4.763054454000098,35.379638204000116],[4.555276462000052,35.34686311899998],[4.514721461000136,35.38297219000009],[4.251193586999989,35.38689710000011],[4.18351357500012,35.42256729500019]],[[3.625173546000099,35.308983957000066],[3.498332552000136,35.25519829000001],[3.424354545000028,35.18165228700019],[3.340815469000177,35.22868985100007],[3.559734519000074,35.33602917400003],[3.625173546000099,35.308983957000066]],[[3.881030470000098,35.094504298000174],[4.009188429000062,35.087954344000025],[3.884433522999984,34.937400443000115],[3.804929495000181,34.881340598],[3.644678570000167,34.821752307000054],[3.366133510000054,34.742103272000065],[3.05597945500017,34.58207765300017],[2.790819457000168,34.36297554200007],[2.709125573000165,34.33679517000019],[2.703095464000114,34.427990612000144],[2.657129442000041,34.46385962599999],[2.493454510000106,34.466911644000106],[2.510513527,34.5244389930001],[2.66271950100014,34.5815894910001],[2.86755142200019,34.55516922900006],[2.88201657500008,34.63758814800008],[3.044152422000082,34.71574520400003],[3.104830528000093,34.77897224700013],[3.478374570000085,34.97638936800013],[3.550162553000177,35.07039593300004],[3.620887543000151,35.046466438000095],[3.881030470000098,35.094504298000174]],[[4.01096354800012,34.847699494000096],[4.013852455000119,34.903320127000086],[4.143484455000078,34.977228396999976],[4.257485547000158,34.917208773000084],[4.286451560000046,34.83577087300017],[4.01096354800012,34.847699494000096]],[[7.289446575000056,34.9372393430001],[7.322879472000068,35.003838760000065],[7.550106497000058,35.04111476000014],[7.685883438000189,35.04445662500018],[7.716522479000162,34.928618388000075],[7.625920476000033,34.87448990100012],[7.407256571000119,34.93936817900004],[7.289446575000056,34.9372393430001]],[[3.783265460000109,34.37665397000012],[3.890500512000074,34.55761825400009],[4.00579057300007,34.516020377000075],[3.959863443000074,34.39440348800002],[3.858114514000079,34.310516898000174],[3.783265460000109,34.37665397000012]],[[2.175918513,34.31480457700013],[2.435517454000092,34.30252508900003],[2.438754545000108,34.21935934200019],[2.300689512000076,34.15012029600007],[2.426438512000118,34.094320793],[2.42034755100002,34.04025315900003],[2.20505350600007,33.966875464000054],[2.045645465000121,33.95206380300016],[2.012655468000162,34.01853279800014],[1.865406551000149,33.959055651000085],[1.763826434000123,34.00536415700009],[2.04826849799997,34.29144723000013],[2.175918513,34.31480457700013]],[[-0.374444508999829,34.064952616000085],[-0.341430539999919,34.11577008299997],[-0.17853445399993,34.19277915400005],[-0.046155536999947,34.23323692399998],[0.162850572000025,34.26731606600009],[0.410674448000179,34.33598329900008],[0.570705430999965,34.409162175],[0.792267463000087,34.5806084730001],[0.990555465000114,34.54132668400001],[1.081076499000176,34.56750185900012],[1.064444456000103,34.36716716400019],[0.944058533000145,34.28939953100007],[0.840905468000187,34.169708804000095],[0.730622421000021,34.10149955800006],[0.576666473000103,34.083842073000085],[0.38576644900013,34.085242018000145],[0.248423433000028,34.10697059300003],[0.031666579000103,34.092729740000095],[0.029166425000028,34.14856025600011],[-0.068888431999824,34.1799474660001],[-0.374444508999829,34.064952616000085]],[[2.695476482000174,34.878074841000114],[2.578821512000104,34.87067110600009],[2.546717481999963,34.951117092],[2.885437565000132,35.04205755700008],[2.892777430000024,34.9146527960001],[2.807777556000076,34.88048966700006],[2.695476482000174,34.878074841000114]],[[1.109524510000028,33.76423993700013],[1.151057511000033,33.86167637600016],[1.213345446000119,33.91558475400012],[1.273360543000081,33.887497667000105],[1.245607559000064,33.79418914700017],[1.318819460000043,33.74826151500008],[1.3207265100001,33.61724516000004],[1.175865429999988,33.537867531000074],[1.07346254600003,33.51134836200015],[0.937315460000093,33.42856064000006],[0.899159527999984,33.506309330000136],[0.935463562000166,33.58808703300019],[1.074808512000175,33.69992274400005],[1.109524510000028,33.76423993700013]],[[0.069895433000056,33.242306202000066],[0.161807528000054,33.36400255100011],[0.29338647700007,33.368080514999974],[0.164011466000147,33.23689635400012],[0.069895433000056,33.242306202000066]],[[-3.160993470999927,32.83805958400012],[-3.132301544999848,32.897654748000036],[-2.954305460999876,33.03609327800001],[-2.769234547999872,33.204156472000136],[-2.717325420999941,33.16954625300008],[-2.853400422999925,32.98436402800007],[-3.085283426999865,32.83836854100019],[-3.160993470999927,32.83805958400012]],[[-0.608845437999889,32.88036707300006],[-0.44966052299992,33.14057839500009],[-0.381926531999909,33.179659019000155],[-0.311984578999898,33.12548761700009],[-0.384357450999971,32.91818487900008],[-0.540671563999979,32.68137130300016],[-0.684979437999914,32.57955632500011],[-0.856384495999976,32.524856193],[-0.947724441999981,32.57687545700003],[-0.662006484999949,32.799139558000036],[-0.608845437999889,32.88036707300006]],[[-0.306928446999962,32.87704817400004],[-0.202393540999878,33.05677981500003],[-0.11774855699997,32.998134656000104],[-0.207078521999847,32.87874618000018],[-0.306928446999962,32.87704817400004]],[[-1.550032581999915,32.31355495100013],[-1.56287550199994,32.366272093000134],[-1.475095517999875,32.40400188900014],[-1.434798512999976,32.31139594100006],[-1.520109522999974,32.246246928],[-1.550032581999915,32.31355495100013]],[[-1.840620424999827,32.226277714000105],[-1.650879450999923,32.19673770800006],[-1.626243527999918,32.10587050100003],[-1.78488847999995,32.10246057500012],[-1.936722465999935,32.14583910400006],[-2.082406480999964,32.14686924000006],[-2.052038509999875,32.21212922900003],[-1.840620424999827,32.226277714000105]],[[-4.059298462999948,32.21929693000004],[-3.834625571999879,32.236515371000166],[-3.814902450999966,32.15488787100014],[-3.956386461999841,32.12178907700013],[-4.094971507999958,32.12416903400015],[-4.096044558999893,32.04056072300011],[-4.141935478999869,31.98135548500011],[-4.233662500999912,32.03343191500005],[-4.38124652599987,32.05489210100018],[-4.333082433999948,32.189397843],[-4.280352551999954,32.20859726300017],[-4.059298462999948,32.21929693000004]],[[-6.036021465999966,31.124244529000123],[-5.871191507999924,31.209311627000147],[-5.805822553999917,31.32515757500005],[-5.582359505999932,31.389435373000026],[-5.509792508999965,31.353345748000095],[-5.562519540999972,31.233340699000053],[-5.435978451999915,31.136523179000164],[-5.506255512999871,31.04625511100005],[-5.646773425999925,31.015298396000105],[-5.73212450199992,31.07791523600008],[-5.800753513999837,31.085915763000116],[-5.945466569999894,31.04596627100011],[-6.088311466999869,30.94086106100019],[-6.264935432999891,30.941659856000115],[-6.278925499999957,30.983448337000084],[-6.036021465999966,31.124244529000123]],[[8.622657510000181,34.47909926700015],[8.659216522000122,34.583496542000034],[8.746285553000178,34.50084963500018],[8.6793154880001,34.299454295000146],[8.606236524000053,34.26032807300004],[8.341255563000061,34.27317585500009],[8.158826458000135,34.33041318900018],[8.14028451400003,34.42274186400016],[8.360042425000188,34.33662418000006],[8.521091475000105,34.342013911000095],[8.602495513000065,34.415760913000156],[8.622657510000181,34.47909926700015]],[[9.443804570000111,34.31903458800008],[9.610548452000103,34.32507341400003],[9.588135578,34.23512905500013],[9.523260486000027,34.22284638200006],[9.201424572,34.239927862000116],[9.035677466000038,34.2330961080001],[9.02405344300007,34.30775489299998],[9.261296507000054,34.29104724600006],[9.443804570000111,34.31903458800008]],[[7.799746563000099,35.05564546],[7.838563492000048,35.14304524100004],[8.013021575000039,35.199680587000046],[8.097226510000041,35.145573893000176],[7.867643500000099,35.063217168000165],[7.799746563000099,35.05564546]]]]},"properties":{"objectid":430,"eco_name":"Mediterranean dry woodlands and steppe","biome_num":12,"biome_name":"Mediterranean Forests, Woodlands & Scrub","realm":"Palearctic","eco_biome_":"PA12","nnh":3,"eco_id":797,"shape_leng":113.566193994,"shape_area":28.3558630225,"nnh_name":"Nature Could Recover","color":"#F5A27A","color_bio":"#FE0000","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":292848.84988985123,"percentage":8.865090413321873}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-8.383689450999952,31.06965235600012],[-8.42846155399991,31.07748507700012],[-8.49947756399996,30.950481642000113],[-8.766268512999943,30.89352057400015],[-8.744705563999958,30.853638976000127],[-8.636585550999882,30.85875679900016],[-8.575987575999932,30.918465789000095],[-8.508936541999958,30.899509444000103],[-8.385476471999937,30.962848301000065],[-8.383689450999952,31.06965235600012]]],[[[-7.414386552999929,31.282923176999986],[-7.610122431999969,31.287132066000026],[-7.622984462999966,31.227733876],[-7.71087844099992,31.177339695000114],[-7.755366564999918,31.222231157000067],[-7.842771542999969,31.1545144320001],[-8.004296516999887,31.101082313000177],[-8.059111481999935,31.013967517000026],[-7.902281546999973,31.001861702000156],[-7.834802531999969,31.050009030000012],[-7.700619493999966,31.050434161000112],[-7.617966552999917,31.132619224000166],[-7.414386552999929,31.282923176999986]]],[[[-5.836045516999945,31.95608555600012],[-5.901650505999896,31.88161385500007],[-6.02822042899993,31.892679476000183],[-6.055961510999907,31.81390098500009],[-6.22735148199996,31.855119833000117],[-6.244500520999907,31.79775073400009],[-6.379846463999968,31.761376795000103],[-6.473243496999942,31.701996711000163],[-6.488954535999937,31.613981698000032],[-6.619503516999941,31.534333334],[-6.685210428999824,31.609328065000057],[-6.795005481999908,31.5541977740001],[-6.808544434999874,31.457803037000133],[-6.742752529999962,31.430261947000076],[-6.742984540999885,31.332493417000023],[-6.607514544999958,31.313753996],[-6.597471515999871,31.374952953000047],[-6.492197494999914,31.434051741000133],[-6.386865469999975,31.391195238000023],[-6.379469445999973,31.464999907000163],[-6.289886514999978,31.466483839000034],[-6.130642424999905,31.545974959000034],[-6.024512442999935,31.515813183000034],[-5.929573474999927,31.591458686000067],[-5.957247501999973,31.672399875000053],[-5.821709444999897,31.821703867000167],[-5.75336843599996,31.86564431800008],[-5.744797436999818,31.720917181000175],[-5.656013468999902,31.690473269999984],[-5.537174509999886,31.812410348000128],[-5.50628652599994,31.916730677000032],[-5.557697431999941,32.08542033400005],[-5.701688470999954,32.11777213300013],[-5.836045516999945,31.95608555600012]]],[[[-5.502517519999913,32.27650409000012],[-5.541120542999977,32.1550711000001],[-5.451042575999963,32.120522068000184],[-5.355935466999938,32.193197863000194],[-5.208828539999956,32.24391625600009],[-4.996252578999929,32.370514175000096],[-4.842241477999949,32.39318018200015],[-4.672354549999909,32.52215939900003],[-4.70631349599995,32.575288596000064],[-4.909420420999879,32.55797812100019],[-5.00608656299994,32.5172492800001],[-5.041218471999912,32.404247144000124],[-5.263265480999962,32.33828508600004],[-5.319060457999967,32.27214818200008],[-5.441676469999948,32.291140569000106],[-5.502517519999913,32.27650409000012]]],[[[-3.861595518999934,33.53235575900004],[-3.852935503999902,33.62054528200002],[-3.989214520999894,33.53742546900014],[-3.92465157099997,33.49765484699998],[-3.861595518999934,33.53235575900004]]]]},"properties":{"objectid":431,"eco_name":"Mediterranean High Atlas juniper steppe","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Palearctic","eco_biome_":"PA10","nnh":3,"eco_id":758,"shape_leng":12.7276798653,"shape_area":0.602304940707,"nnh_name":"Nature Could Recover","color":"#D6A890","color_bio":"#D6C39D","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":6346.702822392734,"percentage":0.12996738018043083}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-6.036021465999966,31.124244529000123],[-6.278925499999957,30.983448337000084],[-6.264935432999891,30.941659856000115],[-6.088311466999869,30.94086106100019],[-5.945466569999894,31.04596627100011],[-5.800753513999837,31.085915763000116],[-5.73212450199992,31.07791523600008],[-5.646773425999925,31.015298396000105],[-5.506255512999871,31.04625511100005],[-5.435978451999915,31.136523179000164],[-5.562519540999972,31.233340699000053],[-5.509792508999965,31.353345748000095],[-5.582359505999932,31.389435373000026],[-5.805822553999917,31.32515757500005],[-5.871191507999924,31.209311627000147],[-6.036021465999966,31.124244529000123]]],[[[-1.840620424999827,32.226277714000105],[-2.052038509999875,32.21212922900003],[-2.082406480999964,32.14686924000006],[-1.936722465999935,32.14583910400006],[-1.78488847999995,32.10246057500012],[-1.626243527999918,32.10587050100003],[-1.650879450999923,32.19673770800006],[-1.840620424999827,32.226277714000105]]],[[[-4.059298462999948,32.21929693000004],[-4.280352551999954,32.20859726300017],[-4.333082433999948,32.189397843],[-4.38124652599987,32.05489210100018],[-4.233662500999912,32.03343191500005],[-4.141935478999869,31.98135548500011],[-4.096044558999893,32.04056072300011],[-4.094971507999958,32.12416903400015],[-3.956386461999841,32.12178907700013],[-3.814902450999966,32.15488787100014],[-3.834625571999879,32.236515371000166],[-4.059298462999948,32.21929693000004]]],[[[-1.550032581999915,32.31355495100013],[-1.520109522999974,32.246246928],[-1.434798512999976,32.31139594100006],[-1.475095517999875,32.40400188900014],[-1.56287550199994,32.366272093000134],[-1.550032581999915,32.31355495100013]]],[[[22.134265493000044,32.92914354699997],[21.928199587999984,32.89223785900015],[21.707979499000146,32.936635292000176],[21.631389523000053,32.92328476400007],[21.44054951300012,32.79443982400005],[21.367719492000163,32.77323059200006],[21.07980950000018,32.76253092500019],[20.90007048200016,32.68013229000002],[20.575710443000162,32.55064630300018],[20.37336945600009,32.41956239000001],[20.100530461000062,32.18616008099997],[20.034620538000127,32.062120990000096],[19.953710529999967,31.985694629000136],[19.942926541000077,31.870914356000185],[20.07958458700017,31.741506655000023],[20.156591479000156,31.696468007000135],[20.2739185100001,31.71117439200009],[20.492391474999977,31.831707668000035],[20.82407947700017,32.08924600200004],[20.92455854800005,32.15465099900007],[21.15275552700018,32.256469832000164],[21.371040570000105,32.32864153900016],[21.852338503000055,32.41912736900019],[22.151370443000133,32.437604939000096],[22.233213525000167,32.47296584200012],[22.28950454200003,32.57712339400018],[22.306909564000023,32.75225018500004],[22.134265493000044,32.92914354699997]]],[[[-0.306928446999962,32.87704817400004],[-0.207078521999847,32.87874618000018],[-0.11774855699997,32.998134656000104],[-0.202393540999878,33.05677981500003],[-0.306928446999962,32.87704817400004]]],[[[-0.608845437999889,32.88036707300006],[-0.662006484999949,32.799139558000036],[-0.947724441999981,32.57687545700003],[-0.856384495999976,32.524856193],[-0.684979437999914,32.57955632500011],[-0.540671563999979,32.68137130300016],[-0.384357450999971,32.91818487900008],[-0.311984578999898,33.12548761700009],[-0.381926531999909,33.179659019000155],[-0.44966052299992,33.14057839500009],[-0.608845437999889,32.88036707300006]]],[[[-3.160993470999927,32.83805958400012],[-3.085283426999865,32.83836854100019],[-2.853400422999925,32.98436402800007],[-2.717325420999941,33.16954625300008],[-2.769234547999872,33.204156472000136],[-2.954305460999876,33.03609327800001],[-3.132301544999848,32.897654748000036],[-3.160993470999927,32.83805958400012]]],[[[0.069895433000056,33.242306202000066],[0.164011466000147,33.23689635400012],[0.29338647700007,33.368080514999974],[0.161807528000054,33.36400255100011],[0.069895433000056,33.242306202000066]]],[[[10.91475045900006,33.88051671500017],[10.745180534000099,33.8851175420001],[10.729840478000028,33.753121510000085],[10.834779559000026,33.73712280400008],[10.892589545000021,33.667223934000106],[11.0660205100001,33.780639466000025],[10.950149583000155,33.88850869200019],[10.91475045900006,33.88051671500017]]],[[[1.109524510000028,33.76423993700013],[1.074808512000175,33.69992274400005],[0.935463562000166,33.58808703300019],[0.899159527999984,33.506309330000136],[0.937315460000093,33.42856064000006],[1.07346254600003,33.51134836200015],[1.175865429999988,33.537867531000074],[1.3207265100001,33.61724516000004],[1.318819460000043,33.74826151500008],[1.245607559000064,33.79418914700017],[1.273360543000081,33.887497667000105],[1.213345446000119,33.91558475400012],[1.151057511000033,33.86167637600016],[1.109524510000028,33.76423993700013]]],[[[10.729156515000057,33.60198255199998],[10.661049528000035,33.62571389900006],[10.466380497000102,33.589784033000115],[10.313329460000148,33.65729523400017],[10.090029524000101,33.69035211900018],[9.97415558,33.85618740300015],[9.909702432000131,33.90996586099999],[9.81078055200004,33.9356952870001],[9.892167491000123,33.715631436000024],[9.908624519,33.45712784200009],[10.005359561000034,33.261424820000116],[9.987594453000042,33.14994014300004],[10.027039521000063,33.06982943300011],[10.127779436000026,32.966114613000116],[10.168290516000127,32.88969780700012],[10.256400579000115,32.81844894800008],[10.45761051200003,32.79657989200018],[10.706910441000048,32.86194683500008],[10.828499502000057,32.87710517100004],[10.989760446000105,32.84633704900011],[11.111120513000174,32.77896029300007],[11.40276849900016,32.720700199000134],[11.397418913000024,32.770762322999985],[11.438834948000078,32.987960987000065],[11.336265079000043,33.01176877300014],[11.343898198000034,33.04933240100007],[11.32228378900004,33.06750706000008],[11.361008517000073,33.121650885000065],[11.53233947900003,33.16757047100003],[11.204030557000067,33.20663516900015],[11.131850469000142,33.28427405600007],[11.17967056700013,33.33155167800015],[11.100330489000044,33.43897029300007],[11.10746952400018,33.57319440300006],[11.01570059200003,33.638454560000014],[10.923239483000089,33.622303135000095],[10.930879588000096,33.534544609000136],[10.782070464000071,33.47868827700012],[10.70092945000016,33.49970673700011],[10.729156515000057,33.60198255199998]]],[[[2.175918513,34.31480457700013],[2.04826849799997,34.29144723000013],[1.763826434000123,34.00536415700009],[1.865406551000149,33.959055651000085],[2.012655468000162,34.01853279800014],[2.045645465000121,33.95206380300016],[2.20505350600007,33.966875464000054],[2.42034755100002,34.04025315900003],[2.426438512000118,34.094320793],[2.300689512000076,34.15012029600007],[2.438754545000108,34.21935934200019],[2.435517454000092,34.30252508900003],[2.175918513,34.31480457700013]]],[[[9.443804570000111,34.31903458800008],[9.261296507000054,34.29104724600006],[9.02405344300007,34.30775489299998],[9.035677466000038,34.2330961080001],[9.201424572,34.239927862000116],[9.523260486000027,34.22284638200006],[9.588135578,34.23512905500013],[9.610548452000103,34.32507341400003],[9.443804570000111,34.31903458800008]]],[[[8.622657510000181,34.47909926700015],[8.602495513000065,34.415760913000156],[8.521091475000105,34.342013911000095],[8.360042425000188,34.33662418000006],[8.14028451400003,34.42274186400016],[8.158826458000135,34.33041318900018],[8.341255563000061,34.27317585500009],[8.606236524000053,34.26032807300004],[8.6793154880001,34.299454295000146],[8.746285553000178,34.50084963500018],[8.659216522000122,34.583496542000034],[8.622657510000181,34.47909926700015]]],[[[3.783265460000109,34.37665397000012],[3.858114514000079,34.310516898000174],[3.959863443000074,34.39440348800002],[4.00579057300007,34.516020377000075],[3.890500512000074,34.55761825400009],[3.783265460000109,34.37665397000012]]],[[[-0.374444508999829,34.064952616000085],[-0.068888431999824,34.1799474660001],[0.029166425000028,34.14856025600011],[0.031666579000103,34.092729740000095],[0.248423433000028,34.10697059300003],[0.38576644900013,34.085242018000145],[0.576666473000103,34.083842073000085],[0.730622421000021,34.10149955800006],[0.840905468000187,34.169708804000095],[0.944058533000145,34.28939953100007],[1.064444456000103,34.36716716400019],[1.081076499000176,34.56750185900012],[0.990555465000114,34.54132668400001],[0.792267463000087,34.5806084730001],[0.570705430999965,34.409162175],[0.410674448000179,34.33598329900008],[0.162850572000025,34.26731606600009],[-0.046155536999947,34.23323692399998],[-0.17853445399993,34.19277915400005],[-0.341430539999919,34.11577008299997],[-0.374444508999829,34.064952616000085]]],[[[4.01096354800012,34.847699494000096],[4.286451560000046,34.83577087300017],[4.257485547000158,34.917208773000084],[4.143484455000078,34.977228396999976],[4.013852455000119,34.903320127000086],[4.01096354800012,34.847699494000096]]],[[[2.695476482000174,34.878074841000114],[2.807777556000076,34.88048966700006],[2.892777430000024,34.9146527960001],[2.885437565000132,35.04205755700008],[2.546717481999963,34.951117092],[2.578821512000104,34.87067110600009],[2.695476482000174,34.878074841000114]]],[[[7.289446575000056,34.9372393430001],[7.407256571000119,34.93936817900004],[7.625920476000033,34.87448990100012],[7.716522479000162,34.928618388000075],[7.685883438000189,35.04445662500018],[7.550106497000058,35.04111476000014],[7.322879472000068,35.003838760000065],[7.289446575000056,34.9372393430001]]],[[[3.881030470000098,35.094504298000174],[3.620887543000151,35.046466438000095],[3.550162553000177,35.07039593300004],[3.478374570000085,34.97638936800013],[3.104830528000093,34.77897224700013],[3.044152422000082,34.71574520400003],[2.88201657500008,34.63758814800008],[2.86755142200019,34.55516922900006],[2.66271950100014,34.5815894910001],[2.510513527,34.5244389930001],[2.493454510000106,34.466911644000106],[2.657129442000041,34.46385962599999],[2.703095464000114,34.427990612000144],[2.709125573000165,34.33679517000019],[2.790819457000168,34.36297554200007],[3.05597945500017,34.58207765300017],[3.366133510000054,34.742103272000065],[3.644678570000167,34.821752307000054],[3.804929495000181,34.881340598],[3.884433522999984,34.937400443000115],[4.009188429000062,35.087954344000025],[3.881030470000098,35.094504298000174]]],[[[7.799746563000099,35.05564546],[7.867643500000099,35.063217168000165],[8.097226510000041,35.145573893000176],[8.013021575000039,35.199680587000046],[7.838563492000048,35.14304524100004],[7.799746563000099,35.05564546]]],[[[3.625173546000099,35.308983957000066],[3.559734519000074,35.33602917400003],[3.340815469000177,35.22868985100007],[3.424354545000028,35.18165228700019],[3.498332552000136,35.25519829000001],[3.625173546000099,35.308983957000066]]],[[[4.18351357500012,35.42256729500019],[4.251193586999989,35.38689710000011],[4.514721461000136,35.38297219000009],[4.555276462000052,35.34686311899998],[4.763054454000098,35.379638204000116],[4.917141495000124,35.352520065000135],[4.936110580000161,35.31075388000005],[5.098888481000017,35.34436112100008],[5.038173494000091,35.46039331500015],[4.904443582000169,35.46574901600019],[4.878333451000117,35.52352480400003],[4.638196451000169,35.570631603000095],[4.541419499000085,35.566603763000046],[4.246848576000104,35.508044938000126],[4.18351357500012,35.42256729500019]]],[[[10.68900250500019,34.64827289500016],[10.924329466000131,34.886520782],[10.92658051,34.959619695000185],[11.009039494000092,35.01765532200017],[11.029509442,35.11377580200008],[11.088129456000104,35.16306374000004],[11.122509508000064,35.257139204000055],[11.048809445000074,35.325600410000106],[11.062809570000184,35.49610525200006],[11.049880485000017,35.63183307500003],[10.838379586000087,35.70127060500005],[10.807390517000101,35.78882746300019],[10.728750494999986,35.77113879700016],[10.655289484000093,35.8159868410001],[10.48948051900004,36.046851276000154],[10.471380469999986,36.13280937000019],[10.487890472,36.26327637500003],[10.546460530000047,36.37160409200004],[10.818920494999986,36.46360101100015],[10.919810446000156,36.65125707200019],[11.038490484000079,36.79708592600002],[11.12226945000009,36.840905175000046],[11.098059497000065,36.96126360500011],[11.034640508,37.07847915600007],[10.917260504000183,37.02431915400007],[10.757379556000103,36.905642636000096],[10.585709462000182,36.864864677000014],[10.548850545,36.76991464600002],[10.435629474000109,36.72194568400016],[10.360830543000134,36.72557739500019],[10.28520951600018,36.794243958000095],[10.355190528000037,36.87771212300004],[10.218740520000097,36.972673386999986],[10.191280567000092,37.103819661000045],[10.226840456000104,37.18648601400014],[10.066929502,37.267856357000085],[10.002440480000132,37.24910687700003],[9.868268505000174,37.136778143000186],[9.787354474000097,37.1778162760001],[9.793338481999967,37.23881490600013],[9.877618518000077,37.271796354],[9.865051531000063,37.33310494700004],[9.655833528000187,37.33471511000016],[9.341755568999986,37.2348480870001],[9.19556746600017,37.23160596600019],[9.151994478000063,37.184036989000106],[9.02493454800009,37.13914703600017],[8.886760551000066,37.01075052900018],[8.507755532000033,36.907164622000096],[8.283863498000073,36.91873433100017],[8.236195447000114,36.95348167800006],[8.03523948600008,36.87177253900012],[7.852204537000148,36.84450587300006],[7.764151470000058,36.88037421600012],[7.755253577000019,36.95947054800013],[7.624822447000042,36.96711132300004],[7.506800556000087,37.04280896200015],[7.276988552000034,37.070251313000085],[7.182830442000068,36.92966332700007],[6.917277500000068,36.88401430900012],[6.884019450000039,36.91022753700008],[6.651380565000125,36.92211425000016],[6.373477559000037,36.90490687300007],[6.314178444000163,36.81700250200004],[6.332420483000021,36.73934416900005],[6.261025443000051,36.61277877200007],[6.122698560000174,36.53300065500002],[5.743818431000022,36.376529131000154],[5.532123575000071,36.31779545900008],[5.372816453000041,36.30472673100007],[5.10504348000012,36.33674593600017],[4.995347501000026,36.333632897000086],[4.733812508000028,36.4558573060001],[4.656804443000055,36.60035528200012],[4.699466487000109,36.73081524700012],[4.882434548000049,36.85687672400019],[4.721247532000064,36.885353066000164],[4.156930536000175,36.90958364000005],[3.938889574000086,36.897884012000134],[3.879617449000136,36.92138150400007],[3.716978520000055,36.88342204300017],[3.634641576000149,36.82569637900019],[3.490293469000108,36.77206644800009],[3.222913439000138,36.772676483],[3.143027532000076,36.738867071000186],[3.024406503000137,36.813073568],[2.904886430000033,36.804055982000136],[2.818614518000174,36.70992570000004],[2.612056428000187,36.60371894000008],[2.423908518000189,36.595880184000066],[2.321571515000073,36.63957722500004],[2.102200513000071,36.582609452000156],[1.649618477000104,36.557039954000174],[1.511687555000037,36.53028072800015],[1.352905475000057,36.553592142000184],[1.292740509000055,36.51111198600006],[1.178462479000018,36.51379017100004],[0.939580418000105,36.44774328900007],[0.901283502000069,36.39163482900017],[0.634112517,36.30945647100003],[0.339333555000167,36.196109],[0.127453460000083,36.04276141100007],[0.036420459000169,35.8731943360001],[-0.107936532999929,35.792897380000056],[-0.277515509999944,35.824825725000096],[-0.337568493999925,35.910264476000066],[-0.47975155599994,35.87399531000011],[-0.511827422999943,35.786847322000085],[-0.649079578999874,35.71611998499998],[-0.828376534999904,35.771496704000015],[-0.946042529999886,35.727720706000184],[-1.18004548499988,35.58681320200003],[-1.258502445999909,35.397368779000146],[-1.382006436999916,35.31145997200019],[-1.555642422999824,35.268900020000046],[-1.764070514999901,35.129224488000034],[-2.008477423999921,35.07461488000013],[-2.20625949399988,35.08896536900011],[-2.426218570999879,35.15986352900018],[-2.53341053999992,35.09939430100002],[-2.631493558999978,35.09711324900013],[-2.739527573999965,35.131421553],[-2.813015574999895,35.114164723000044],[-2.897480515999916,35.15255484500011],[-2.967689515999894,35.37745639499997],[-3.09676043199994,35.28103064600009],[-3.338069556999926,35.19365282500013],[-3.598858560999872,35.23908173500013],[-3.699511471999926,35.29509145600014],[-3.796269479999921,35.21065149300006],[-3.884491524999873,35.212051438000174],[-3.920814502999917,35.26891896300009],[-4.109464488999947,35.21255032900012],[-4.276884455999948,35.18788205300012],[-4.359648540999956,35.15116277900006],[-4.713944547999972,35.217750126000055],[-4.910295490999886,35.31436983300017],[-5.056753491999928,35.41091745500012],[-5.170977541999946,35.536063293000154],[-5.234484539999869,35.55541509600005],[-5.274114513999905,35.670330151000144],[-5.334815585999877,35.74500854900015],[-5.356255488999864,35.92209435900003],[-5.453889572999969,35.91912632700013],[-5.587495433999948,35.839595309],[-5.718348508999895,35.839168167000025],[-5.777853483999934,35.79063946300005],[-5.89860351599998,35.81096675100008],[-6.019570472999931,35.5047340860001],[-6.079829482999912,35.39839891500014],[-6.149172465999925,35.21139144699998],[-6.378550454999981,34.720746015000145],[-6.562470532999953,34.41468199400015],[-6.625401526999951,34.34008406200019],[-6.725722513999926,34.163948927000035],[-6.831129472999919,34.04217127300012],[-6.9632624649999,33.92681432500018],[-7.127295471999957,33.83225807500014],[-7.217373438999914,33.80967991000011],[-7.375998441999911,33.71545139300014],[-7.585505452999939,33.612954463],[-7.652565539999955,33.62023615800007],[-7.77923252599993,33.55189816600006],[-8.121005465999929,33.42558892000005],[-8.299647459999903,33.378170314000045],[-8.452890442999944,33.260844792000114],[-8.515005542999916,33.26282476500006],[-8.60639343299988,33.19129779400009],[-8.70684752499983,33.03213048200007],[-8.904625571999816,32.84784713200008],[-9.113357591999943,32.67197267500018],[-9.274614512999904,32.55277832400009],[-9.23393445399995,32.458768407000036],[-9.285012430999927,32.378520904000084],[-9.242701589999967,32.30599397200007],[-9.285875431999955,32.149856215],[-9.24612542999995,32.097237979000056],[-9.236722442999962,31.848326132000125],[-9.151387459999967,31.703738805000057],[-9.07440655299996,31.67988173000009],[-8.856417557999976,31.899347280000143],[-8.651350440999863,32.309801032000166],[-8.45464159099987,32.506370910999976],[-8.204907478999814,32.68299320200015],[-8.00449550299993,32.762843738000186],[-7.823588551999933,32.87960012800011],[-7.660561540999936,32.93002163500017],[-7.368443497999976,32.983299861000035],[-7.018387559999894,33.001025575000085],[-6.628778427999862,32.93022363900019],[-6.49428458899996,32.879127220999976],[-6.379323433999957,32.80841228900016],[-6.233921552999902,32.67519250000004],[-6.211565508999968,32.60863147100008],[-6.257025430999931,32.50121704700007],[-6.386945433999927,32.3543897400001],[-6.686556562999897,32.232438580000064],[-6.97803758099991,32.17669540400016],[-7.077937461999909,32.121468217000086],[-7.015337552999881,31.992982359000052],[-7.029196526999954,31.94151998800004],[-7.134677581999881,31.832474445000173],[-7.435499560999972,31.694347218000075],[-7.530050446999894,31.5862345810001],[-7.860608567999918,31.35285574200003],[-8.024494556999969,31.279291298000146],[-8.295157441999947,31.212132472],[-8.75037558699995,31.156061563000094],[-8.909525464999945,31.185517248000053],[-8.98263544199989,31.14311487600014],[-8.94264253199998,30.877381220000075],[-8.875218502999928,30.683265897000126],[-8.788840475999962,30.636510636000025],[-8.558388429999866,30.663189731000045],[-8.390332443999966,30.765956055000117],[-8.242093456999953,30.800168972000165],[-8.093730585999936,30.771131880000155],[-8.024453484999981,30.690206784000168],[-7.961818539999967,30.432168049999973],[-7.974836473999972,30.263109254000085],[-7.914934532999951,30.153448312000023],[-7.648404427999935,30.320083062000037],[-7.544474527999967,30.402899115000082],[-7.482326571999977,30.503205518000073],[-7.36741855799994,30.808667719000027],[-7.246489487999895,31.030947744000116],[-7.131897471999878,31.12196347800011],[-6.973086558999967,31.157273419000035],[-6.447093467999935,31.246409260000178],[-6.148935424999934,31.406043947],[-5.83902545199993,31.463311792000013],[-5.610643567999887,31.533549626000024],[-5.343661510999937,31.678325546000167],[-5.129844525999886,31.758523092000132],[-4.969982520999963,31.834389374000068],[-4.688588452999966,32.000424148000036],[-4.602529440999888,32.07919140600018],[-4.561826583999959,32.21969674700017],[-4.662961453999969,32.32933220800004],[-4.540472511999951,32.42487919900003],[-4.385811477999937,32.465150220000055],[-4.216607507999925,32.45934022000006],[-3.945194441999888,32.417570682000076],[-3.835417493999955,32.50139994000017],[-3.768088515999978,32.5833374020001],[-3.810221492999972,32.68799418000003],[-3.871503430999951,32.71341029000013],[-4.100601464999897,32.69297185700003],[-4.285142473999883,32.64072343100008],[-4.439328421999846,32.62225307000017],[-4.960094557999923,32.64573245700012],[-5.063053497999931,32.61365524900009],[-5.235592459999907,32.59544506100008],[-5.275493503999883,32.67945318900007],[-4.997014493999927,32.83298953800005],[-4.709212460999936,32.966904523000096],[-4.410648565999963,33.17133931000018],[-4.313816461999977,33.20602546900017],[-4.075856577999957,33.25210582000017],[-3.836972504999949,33.41083040000012],[-3.752538575999893,33.49456779200011],[-3.616374558999894,33.72432129000015],[-3.532460476999972,33.78934021600014],[-3.417938532999926,33.79206014400012],[-3.213201495999954,33.74835237500014],[-2.734783583999899,33.91214783800018],[-2.63640350999998,33.97287623600005],[-2.569644500999971,34.168518573000085],[-2.519866557999819,34.22420726700011],[-2.406975564999868,34.26049638200004],[-2.148118422999914,34.213786550000066],[-1.955855500999917,34.23737590800016],[-1.937669452999955,34.318225567000184],[-1.794963527999926,34.3462437550001],[-1.649888541999928,34.43199263600013],[-1.368492461999892,34.511351489000106],[-1.092851563999943,34.60799785000012],[-0.934805582999957,34.642435905000184],[-0.762454541999887,34.62815850700014],[-0.670252433999906,34.59108736100012],[-0.482103517999917,34.58897847400016],[-0.383598553999889,34.526018143000044],[-0.248411530999931,34.539418627000146],[-0.206334544999947,34.654936676000034],[-0.116819506999946,34.69361664500008],[0.170064541000102,34.7049154500001],[0.233874461000084,34.63963601500018],[0.372391446000051,34.725834669],[0.547867427000028,34.87160887300013],[0.70599152799997,34.787532182000064],[0.985190544000034,34.7597428200001],[1.376271538000083,34.769183525000074],[1.422027510000021,34.80105068300014],[1.52170543800014,35.00375846200012],[1.67304053200013,35.05886411100016],[1.896924519000095,35.06253404300003],[1.92013350600007,35.130044406000025],[2.10283351400011,35.15027396200014],[2.125468509000029,35.22258313200007],[1.907189500000015,35.24859150700007],[1.892042563000075,35.330868268000074],[2.052534551000065,35.41837517000016],[2.415293431000123,35.55359203200004],[2.755451514000072,35.715770292000116],[2.837167526000144,35.79263720500012],[2.862071501000059,35.88606525100005],[2.926397579000081,35.95129473000014],[3.221666547000154,36.010383292000085],[3.269867520000105,35.96365435000013],[3.219122472000038,35.87120732200003],[3.337614420000079,35.87065461900005],[3.638617448000105,35.99495354900017],[3.774513580000018,36.029093712000076],[3.944535457000143,36.01558208400019],[4.175149441000144,35.872695277000105],[4.302775484000108,35.907526779000136],[4.642156565000107,35.84414618000005],[5.056918447000044,35.67549122400004],[5.425546503000021,35.61241270800019],[5.537309458999971,35.61847031000008],[5.668467468000188,35.56224265900016],[5.690676494000115,35.4893955390001],[5.645412540000052,35.41199738],[5.498989577000032,35.27902066500013],[5.489183588000174,35.234831774000156],[5.79682642500012,35.10818289400004],[6.048878468000112,34.988618062000114],[6.217216588000042,34.96062686400012],[6.785243582000135,35.006756501000154],[6.970586572,35.28128964600006],[6.936264523000148,35.361758767000026],[6.719399542000076,35.47296600200008],[6.521759461000158,35.48293376200007],[6.479581557000188,35.530112477000046],[6.587791424000045,35.735140535000085],[6.704496518000155,35.78741947100008],[6.962562576000096,35.71222910500012],[7.026388590000181,35.64518796100015],[7.212499530000173,35.606576892000135],[7.381635440000025,35.52628278600014],[7.663027497000087,35.5147740970001],[7.850914562000071,35.451894401],[7.946835553000085,35.50641231100013],[8.008676564000154,35.46506622600015],[8.148033584000075,35.30971988800013],[8.285146432000147,35.28947960400018],[8.344540431000041,35.24054957400017],[8.337908501000015,35.15430180100009],[8.53253847200017,35.07017481800011],[8.72077858400013,35.09141439400014],[8.819485552000174,35.0593142190001],[9.001811560000021,35.13143345500009],[9.068161531999976,35.13563312400004],[9.166345469000078,34.98142806600009],[8.960416525000028,34.87194901100003],[8.904371432000119,34.772872401000086],[8.988832518000095,34.715405234000116],[9.002009540000074,34.58789855000015],[9.153940588000125,34.574436878000085],[9.260029498000108,34.4560929540001],[9.379144557000075,34.47172939500001],[9.607853502000069,34.46199079700017],[9.727417496000157,34.561978017000115],[9.840523568000037,34.80400379500003],[9.924569582000117,34.922068601000035],[10.22776045400019,35.12264469400009],[10.359530510000127,35.2414997460001],[10.45014944500008,35.267752034000125],[10.517149517,35.21823124800005],[10.521209543000055,35.06931600900003],[10.612819554000055,34.78458342800019],[10.68900250500019,34.64827289500016]],[[8.805689442000187,36.96439139600017],[8.913399579999975,36.952424888],[9.033078573000068,36.85668561600016],[9.248498514000119,36.820782405000045],[9.332273457000042,36.76094668000019],[9.32030544100013,36.68914025700019],[9.200627453000095,36.629300676000184],[8.793722431000049,36.56946377800017],[8.482558525000059,36.40191858600008],[8.267138584000179,36.36601520700009],[8.231234534000066,36.46175498100018],[8.36288053800007,36.581430454000156],[8.554366457000071,36.72504363600018],[8.697978466000109,36.80881572900006],[8.805689442000187,36.96439139600017]],[[7.67518243000012,36.84142401500014],[7.690113449000137,36.714079771000115],[7.630037499000025,36.68188437800018],[7.461853438000162,36.65737183800002],[7.312273514000083,36.656356957000185],[7.236805540000091,36.71680355500007],[7.281402462000187,36.841721069000016],[7.477807553000105,36.8636095710001],[7.67518243000012,36.84142401500014]],[[4.326506496000036,36.47356089200008],[4.222198572000025,36.400335412000175],[3.931473434,36.36438341799999],[3.989445526000111,36.44972343000006],[4.23514844500005,36.481453627000064],[4.326506496000036,36.47356089200008]],[[-4.883793149999974,35.07690161900007],[-4.519269041999962,34.980053086000055],[-4.30099606899995,34.98248040100003],[-4.220898601999977,34.910607761000165],[-4.259979057999828,34.80587831100007],[-4.316853120999951,34.78025500100006],[-4.636521137999978,34.77218741900009],[-4.912384994999854,34.85003618900009],[-5.091168139999979,34.927094378000106],[-5.29398303999983,35.08052561799997],[-5.338226076999888,35.16900515600008],[-5.498064109999973,35.268855751000046],[-5.689707105999844,35.470702038000184],[-5.813657013999887,35.549459071000115],[-5.876015020999887,35.61869359100018],[-5.789107089999959,35.694066515000145],[-5.580321089999927,35.74027259400009],[-5.496016074999886,35.71067140000008],[-5.409673084999895,35.491480608000074],[-5.164026994999972,35.26031509500018],[-4.98927805999989,35.16713934400008],[-4.883793149999974,35.07690161900007]],[[-4.329275540999902,33.72065923700012],[-4.294663477999904,33.804106783000066],[-4.197074487999885,33.82960721500018],[-4.159570499999916,33.736672695000095],[-4.006950459999928,33.72053317300015],[-4.018705576999935,33.59847774300016],[-3.871767460999934,33.66242881400018],[-3.773405491999881,33.643798358000026],[-3.790862481999966,33.57471253300008],[-3.897840543999962,33.482255279000185],[-4.109221581999918,33.43098669800008],[-4.040673538999897,33.362484756000185],[-4.116771496999945,33.305818397],[-4.17730157799997,33.37271553900018],[-4.263238549999869,33.34651605700009],[-4.307312440999965,33.44253746300018],[-4.420509539999898,33.431806616000074],[-4.457904562999943,33.52529484300004],[-4.329275540999902,33.72065923700012]],[[-4.647844523999936,33.30902330099997],[-4.96300944799998,33.080831016000104],[-5.231160444999944,32.91831412800002],[-5.435358525999959,32.866607508000186],[-5.550407523999922,32.97156234700003],[-5.41899755399993,33.14415730000019],[-5.418589522999923,33.26583470700007],[-5.268836428999919,33.37590032700007],[-5.17817843499995,33.475987292000184],[-5.100933496999914,33.51727621200018],[-4.944332555999893,33.523127954000074],[-4.865108483999961,33.426370784000085],[-4.742525496999974,33.44276243400009],[-4.678340569999875,33.41067030600004],[-4.647844523999936,33.30902330099997]],[[-5.441676469999948,32.291140569000106],[-5.258260478999887,32.420225566],[-5.030117479999888,32.50211005400013],[-4.96744850399989,32.57320569300015],[-4.770869572999914,32.606644625],[-4.623998511999901,32.58870031099997],[-4.651724506999813,32.49449224600011],[-4.8499385799999,32.38803838700005],[-5.048108563999961,32.30046744800006],[-5.130633429999875,32.1942767810001],[-5.363559478999946,32.096566924],[-5.401841474999912,32.061929883],[-5.429615581999883,31.93286030800016],[-5.50628652599994,31.916730677000032],[-5.537174509999886,31.812410348000128],[-5.656013468999902,31.690473269999984],[-5.744797436999818,31.720917181000175],[-5.75336843599996,31.86564431800008],[-5.821709444999897,31.821703867000167],[-5.957247501999973,31.672399875000053],[-5.929573474999927,31.591458686000067],[-6.024512442999935,31.515813183000034],[-6.130642424999905,31.545974959000034],[-6.289886514999978,31.466483839000034],[-6.379469445999973,31.464999907000163],[-6.386865469999975,31.391195238000023],[-6.492197494999914,31.434051741000133],[-6.597471515999871,31.374952953000047],[-6.607514544999958,31.313753996],[-6.742984540999885,31.332493417000023],[-6.742752529999962,31.430261947000076],[-6.808544434999874,31.457803037000133],[-6.795005481999908,31.5541977740001],[-6.685210428999824,31.609328065000057],[-6.619503516999941,31.534333334],[-6.488954535999937,31.613981698000032],[-6.473243496999942,31.701996711000163],[-6.379846463999968,31.761376795000103],[-6.244500520999907,31.79775073400009],[-6.22735148199996,31.855119833000117],[-6.055961510999907,31.81390098500009],[-6.02822042899993,31.892679476000183],[-5.901650505999896,31.88161385500007],[-5.836045516999945,31.95608555600012],[-5.882047580999938,32.067217858000106],[-5.944474486999979,32.087343310000165],[-5.884436423999887,32.19436881399997],[-5.630147585999907,32.26839040700014],[-5.502517519999913,32.27650409000012],[-5.441676469999948,32.291140569000106]],[[-7.414386552999929,31.282923176999986],[-7.617966552999917,31.132619224000166],[-7.700619493999966,31.050434161000112],[-7.834802531999969,31.050009030000012],[-7.902281546999973,31.001861702000156],[-8.059111481999935,31.013967517000026],[-8.004296516999887,31.101082313000177],[-7.842771542999969,31.1545144320001],[-7.755366564999918,31.222231157000067],[-7.71087844099992,31.177339695000114],[-7.622984462999966,31.227733876],[-7.610122431999969,31.287132066000026],[-7.414386552999929,31.282923176999986]],[[-8.383689450999952,31.06965235600012],[-8.385476471999937,30.962848301000065],[-8.508936541999958,30.899509444000103],[-8.575987575999932,30.918465789000095],[-8.636585550999882,30.85875679900016],[-8.744705563999958,30.853638976000127],[-8.766268512999943,30.89352057400015],[-8.49947756399996,30.950481642000113],[-8.42846155399991,31.07748507700012],[-8.383689450999952,31.06965235600012]],[[10.119127860000049,35.86655903500008],[10.170815480000158,35.928327142000114],[10.27386159200006,35.96212448500012],[10.331334918000096,35.90227971100012],[10.290348460000132,35.838470123000036],[10.146908448000033,35.79725311900012],[10.119127860000049,35.86655903500008]],[[5.000902524000026,35.83458729000017],[5.257853454000099,35.78839646500006],[5.50707057000011,35.767888798000115],[5.532038583000144,35.707301217000065],[5.416012423000041,35.68878190500004],[5.179214438000088,35.69827943900003],[4.891407543000071,35.80428805100007],[5.000902524000026,35.83458729000017]],[[6.018144543000119,35.636932960000024],[6.064682546000142,35.591413191000015],[5.913184508000029,35.480724795000185],[5.828606578000119,35.532584636000024],[6.018144543000119,35.636932960000024]],[[6.469099484000026,35.29506027500014],[6.214625574000081,35.33511739000011],[6.331796534000034,35.405336449000174],[6.586972512000102,35.40873564600014],[6.805170551000174,35.343659053000124],[6.700610500000153,35.273420883000085],[6.469099484000026,35.29506027500014]],[[10.268998347000093,35.62373731400015],[10.409119526000097,35.687861907000126],[10.561943581000094,35.516581906000056],[10.60052849699997,35.5007579980001],[10.539443535999965,35.41741846000002],[10.476623518,35.42082017100006],[10.305919522000067,35.51053620700014],[10.268998347000093,35.62373731400015]]]]},"properties":{"objectid":432,"eco_name":"Mediterranean woodlands and forests","biome_num":12,"biome_name":"Mediterranean Forests, Woodlands & Scrub","realm":"Palearctic","eco_biome_":"PA12","nnh":4,"eco_id":798,"shape_leng":151.091087689,"shape_area":35.2182942066,"nnh_name":"Nature Imperiled","color":"#CD6667","color_bio":"#FE0000","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":359096.0148258987,"percentage":10.870517810442273}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-99.14271566899998,20.960382424999978],[-99.12518357699997,20.876460295000015],[-98.94464861499989,20.68751359000015],[-98.95857967299997,20.574021280000125],[-98.86141966899999,20.51483733200007],[-98.8678056729999,20.389758549000135],[-98.82825465699995,20.371760424],[-98.74501766499998,20.48296732400013],[-98.69675466599995,20.315727736000156],[-98.59137754699998,20.247265692000042],[-98.52309453999999,20.234751343000084],[-98.42180661599991,20.129664238000146],[-98.40756257799995,20.052030883000157],[-98.33328265499995,20.055003609000096],[-98.2666936309999,20.21843915400018],[-98.39675159899997,20.30813725200005],[-98.51623562899994,20.308991033000098],[-98.5467455889999,20.361610274000043],[-98.53749867299996,20.455318778000105],[-98.57026654999993,20.522799972000087],[-98.65790555099994,20.568078342999968],[-98.709472528,20.64059722800016],[-98.79502057899992,20.624798346000148],[-98.81358364399995,20.694860160000133],[-98.88603262399988,20.695888285000024],[-98.94091062099994,20.809632890000046],[-99.01412151599999,20.827778034],[-99.04802664999994,20.94841306700016],[-99.14271566899998,20.960382424999978]]],[[[-99.450652543,20.749173384000187],[-99.44510657299992,20.85310931900011],[-99.39286753499988,20.877636947000042],[-99.50680559399996,21.046486866000123],[-99.61775164999989,21.03310934900003],[-99.83065064999994,21.12548144200008],[-99.90837067399991,21.12321531100008],[-99.99377455599989,21.084547748000034],[-99.96945161399987,20.98415132300005],[-100.01911958699998,20.940135770000154],[-99.76860864099996,20.749560293000172],[-99.69815052999996,20.750983037000083],[-99.7163236699999,20.787621174000094],[-99.69333663499998,20.94134460800018],[-99.56640662599995,20.9919538690001],[-99.4685515939999,20.942998358000068],[-99.52115658599996,20.710637584000096],[-99.450652543,20.749173384000187]]],[[[-99.31028751599996,21.362515294000104],[-99.3539656129999,21.238259950000042],[-99.28282957399995,21.19272459000007],[-99.23224663299999,21.308697273000064],[-99.31028751599996,21.362515294000104]]],[[[-104.09886159599995,23.102660421000166],[-104.20934262299988,22.87413034500014],[-104.17491965599993,22.79952034300004],[-104.1747436359999,22.650429084],[-104.13576460099995,22.59884165500017],[-104.02148455899999,22.573729138000033],[-104.01928766299994,22.699287365000032],[-104.04282354399999,22.773614562000034],[-104.10467561899998,22.808606661000113],[-104.09879252899992,22.884154934000094],[-103.99488056599995,22.905920557],[-103.96925356799983,22.952858209],[-104.00230357999988,23.042637445000025],[-104.09886159599995,23.102660421000166]]],[[[-102.43202157699989,25.435111060000054],[-102.73017861299985,25.510758742000178],[-102.99525462499992,25.542270172000144],[-103.16925857699988,25.64885294400011],[-103.32851456899994,25.56667006000015],[-103.45696254199993,25.480236880000064],[-103.60740663999991,25.203480183000067],[-103.64085361899993,25.06674468800003],[-103.52479560799998,24.952204137000024],[-103.49269057199996,24.87221395800003],[-103.49333966599994,24.713839741000015],[-103.5398555409999,24.62038219200008],[-103.66903659499997,24.52443002000018],[-103.71120460799995,24.381896762000167],[-103.77848061299989,24.283312672000136],[-103.8742445279999,24.200829716000044],[-103.70394152199992,24.12841946000009],[-103.66565667599991,24.049411305000035],[-103.7641445409999,23.916431908000106],[-103.757125536,23.724519685000132],[-103.68513454299995,23.672736455000177],[-103.69896652699998,23.58318084900003],[-103.78672052699983,23.53455022000003],[-103.84706855399997,23.57677506300007],[-103.90573164999995,23.815317155],[-103.99103561999988,23.97842094400005],[-103.96685064399998,24.061191903000065],[-104.00016066199993,24.102054854000073],[-104.00876652999995,24.218064082000183],[-104.09892261599992,24.19188823700017],[-104.18826263999983,24.379655944000035],[-104.18155661399999,24.474685268000144],[-104.13712364299994,24.521135932000163],[-104.136993556,24.616996406000055],[-104.06756558099988,24.67238553100009],[-104.1509246139999,24.718512485000133],[-104.20259066499989,24.6216731720001],[-104.27490251699987,24.565111754000043],[-104.3865055469999,24.700492231],[-104.45030959899992,24.788427951000074],[-104.44483152299989,24.874233997000147],[-104.64053353899999,24.82675118600008],[-104.67726857099984,24.745723160000125],[-104.76214556699995,24.758503383000175],[-104.79190065299997,24.886875416000066],[-104.86305261699988,24.958801868000137],[-104.97298462999987,25.025122671000133],[-105.07717856,25.04435561800011],[-105.17112762499994,25.141665994000107],[-105.27612252899996,25.116291291000152],[-105.27387953199985,24.996567036000044],[-105.16650366399989,24.946839383000054],[-105.12870060999995,24.797102718000076],[-105.00179256099995,24.813975824000124],[-104.85973355099998,24.621534033000046],[-104.787055577,24.570724612000106],[-104.77918966399994,24.29548705100018],[-104.717185541,24.240324741],[-104.73231454099988,24.126010501000167],[-104.70291166299995,24.087561538000102],[-104.76561751899999,23.997951952000108],[-104.62935660699998,23.95408827900019],[-104.58206155,23.865919710000128],[-104.50617263699996,23.889405300000192],[-104.47881360199989,23.783574720000104],[-104.42403467999992,23.808267303000093],[-104.41494752299997,23.996788041000173],[-104.36647765899994,23.980984633000162],[-104.3703616659999,23.802247924000028],[-104.46214266699997,23.724962753000057],[-104.48252058299994,23.481861912000113],[-104.36988859099984,23.43067564100005],[-104.31229351699983,23.592153341000085],[-104.18967465499998,23.674258106000025],[-104.1147996169999,23.670993355000178],[-103.99218762899989,23.570953496000072],[-103.99287460899995,23.47874417900016],[-103.90342763199993,23.347169757000017],[-103.82522564899995,23.370926585000177],[-103.93119067499998,23.51515919000019],[-103.82565262299994,23.52299979000003],[-103.69963858799997,23.426839747000088],[-103.53775755099997,23.429582808000134],[-103.56137859199993,23.565727715000094],[-103.42752060399988,23.62241670500009],[-103.31851965299995,23.480420225000103],[-103.1692805369999,23.453739453000026],[-103.07443963799989,23.404337857000087],[-103.10905455099993,23.354658652000182],[-103.20821363899995,23.416071516000045],[-103.33278665799992,23.34790082700016],[-103.36168662199998,23.211135994000188],[-103.42571262699994,23.160566464000055],[-103.28413356599992,23.07920953200005],[-103.27687064599985,22.962328586000126],[-103.45188159999998,22.87133632200016],[-103.42790265099995,23.022445775],[-103.48265056099996,23.025188501000116],[-103.5090485259999,22.92207483100009],[-103.59622953999997,22.81789330700002],[-103.65138262999989,22.687758224999982],[-103.77076758599998,22.62870922600007],[-103.85126453399994,22.696910760000094],[-103.96419559199984,22.580175659000076],[-103.90975965699994,22.551986146000104],[-103.86991862699995,22.456410153000036],[-103.70313266799997,22.476154229000088],[-103.59935766599989,22.55186611700003],[-103.61863654599995,22.611869982000144],[-103.55030056599986,22.701993211000058],[-103.44338251799996,22.777234371000134],[-103.33290853099999,22.78428589800012],[-103.256050669,22.871876451000162],[-103.20146151299991,22.78484296000005],[-103.06861153299997,22.84089593100009],[-103.00848361499999,22.791019584000026],[-102.9016495539999,22.848796546000187],[-102.84169765599995,22.808330729000033],[-102.79446462599986,22.801908012000183],[-102.72679852699997,22.85516846900009],[-102.67779557399996,22.795385550000162],[-102.60688752299995,22.843794058000185],[-102.57532462799992,23.00726648400007],[-102.31109652999993,22.97033028600015],[-102.28742251499995,23.00541559200019],[-102.13205756899993,22.985519636000163],[-102.16077463999994,22.882134895000036],[-102.0808565459999,22.843367922000084],[-101.97076460599999,22.731423917000143],[-102.00055657199994,22.689552958000093],[-101.90883659099995,22.62139148900002],[-101.8958666019999,22.547006457000123],[-101.81336956399991,22.518751061000103],[-101.62430551099999,22.590538206000133],[-101.59047665299988,22.50536583200011],[-101.58979067799999,22.38931771200015],[-101.5148616599999,22.42704281500005],[-101.54493760499997,22.543190679000077],[-101.48046853199992,22.585153504000118],[-101.46503459899992,22.776483520000113],[-101.35190555999992,22.71933453100013],[-101.42857365499992,22.626119218000156],[-101.33834062299997,22.590391355000122],[-101.28286751199994,22.655065785000033],[-101.22083254299991,22.60122563600015],[-101.14665957299997,22.59632591100018],[-101.09484063599996,22.6733259290001],[-100.97588365999991,22.546276561000127],[-100.90573165699993,22.552059236000105],[-100.80616755499983,22.454532272000165],[-100.76232953099998,22.516275215000064],[-100.70433765699983,22.58947739300004],[-100.61232766199998,22.55866182900013],[-100.53378252399995,22.582738678000112],[-100.53777365099995,22.44890583600005],[-100.50314364999997,22.50194601600009],[-100.48738852199989,22.70615918500016],[-100.43321963499994,22.745414152000137],[-100.40357166999996,22.84678991800007],[-100.24769559499993,22.741861231000087],[-100.42160063999995,22.49252844500012],[-100.41997555699999,22.325056175000043],[-100.49457566899991,22.174164148000045],[-100.50405861899992,22.038797418000172],[-100.47293862399988,21.972689012000103],[-100.19049061499999,21.947021613000118],[-100.10865054999994,21.849944589000074],[-100.11524157599996,21.760185470000067],[-100.02572653799996,21.684200836000116],[-99.89568365699995,21.68396077800014],[-99.90699754999997,21.56385330200004],[-99.88617656699995,21.478268036000145],[-100.00267764599988,21.48142080500014],[-100.03540763599995,21.65288336300017],[-100.13829750999997,21.678424028000165],[-100.22820264099994,21.64316806700009],[-100.33213052899998,21.65683006600011],[-100.35691866699995,21.637456303000192],[-100.29515862499994,21.563249301999974],[-100.21076157699997,21.515188978000026],[-100.18785852999997,21.478273903000172],[-100.03372153299995,21.383518164000122],[-99.92586554899998,21.455335316000173],[-99.85089864599996,21.467549426000062],[-99.66143058599994,21.562776228000132],[-99.6715165299999,21.605401055000016],[-99.58988953299996,21.69569996900003],[-99.58756254899998,21.823226100000113],[-99.61878161799996,21.956393083000137],[-99.53948261199997,22.04780612000002],[-99.58045955699998,22.152727599000116],[-99.57978866899998,22.257169799999986],[-99.6281586209999,22.289830054000163],[-99.58501461799989,22.415317370000025],[-99.62908163599997,22.461419179000018],[-99.57611052299995,22.518883998000035],[-99.64923055799989,22.64309257200017],[-99.66873960499998,22.94110896000018],[-99.62481658899998,22.967406511000092],[-99.67562852399988,23.18987596800008],[-99.72178665899992,23.28363224900005],[-99.69452652999996,23.39498952000008],[-99.75324259999996,23.42328900500013],[-99.83331257499998,23.32619404400009],[-99.8441086329999,23.47324732700008],[-99.80903657099998,23.52787252500002],[-99.84499359499995,23.633265235000124],[-99.90525059399994,23.640117944000053],[-99.92774158699996,23.76863230099997],[-100.00588254999997,23.916440961000035],[-99.982673563,23.985258565000095],[-100.02116359799999,24.081792776999976],[-99.95621457699991,24.11680013100016],[-99.84126264199989,24.06621568000014],[-99.77226264699993,24.14343061000011],[-99.82405861799992,24.19733412700009],[-99.91591656599996,24.143190553000068],[-99.98808257299999,24.17514505000014],[-100.01329064399988,24.32686856200013],[-100.14753755199996,24.436795210000184],[-100.15615867499997,24.578504192000025],[-100.21829254999994,24.654493520000187],[-100.25649256999992,24.775481599000045],[-100.39925364799996,24.953397217000145],[-100.54016852799992,25.060851874000093],[-100.60107462199989,25.13317244400008],[-100.74405664699992,25.146137739000153],[-100.78829163799992,25.12084015000005],[-100.90061165499998,25.14491180200008],[-100.92318764099997,25.075417275000063],[-100.79225158399993,24.977805822000107],[-100.84450554199998,24.896849880000048],[-100.99290462299996,24.98268274800006],[-100.94045251699993,25.045782721000137],[-101.11409755599988,25.13415731700013],[-101.12506058199995,25.133743419000155],[-101.36825563599996,25.109406731000036],[-101.49022657599994,25.06676161900009],[-101.65679158899991,25.10846779000002],[-101.74343062799989,25.17711440400018],[-101.77439857499996,25.195852316000128],[-101.85739165399997,25.192215743000077],[-102.13446753399995,25.318167585000026],[-102.19657860999996,25.333202036999978],[-102.2962416179999,25.348721298000044],[-102.31502563099997,25.402099605000103],[-102.43202157699989,25.435111060000054]],[[-101.47040555499996,25.047632607000082],[-101.19228361299997,25.011657143000093],[-101.24974860099996,24.972488007000038],[-101.41760258199997,25.007585383],[-101.47040555499996,25.047632607000082]],[[-101.31014255999997,24.818025625000132],[-101.33560963199994,24.90727914700011],[-101.20626865099996,24.86425534100016],[-101.31014255999997,24.818025625000132]],[[-101.57915454599993,24.757569639000167],[-101.54487658499983,24.70312817200005],[-101.44844865599993,24.664262125000107],[-101.40125267399998,24.520232195000062],[-101.4871366719999,24.454363176000186],[-101.5371015319999,24.56706071400015],[-101.61390658699997,24.57268966500004],[-101.57915454599993,24.757569639000167]],[[-101.09970063099996,24.509433621000085],[-101.1527325969999,24.631796500000178],[-101.03891758399999,24.64041427000018],[-100.95184352399991,24.57138058000004],[-100.98727466699995,24.489656521000086],[-101.09970063099996,24.509433621000085]],[[-100.22367859299999,23.753501122000102],[-100.29486056499996,23.785100561000093],[-100.20896164699997,23.9038585510001],[-100.14248661699992,23.751725332000092],[-100.22367859299999,23.753501122000102]],[[-100.06915267599993,23.713790346000167],[-100.03258561699994,23.541277033000142],[-100.03656752399996,23.462704066000185],[-100.10755956199995,23.436778337000135],[-100.20082851899991,23.508948703000158],[-100.13380464199997,23.651668374000053],[-100.06915267599993,23.713790346000167]],[[-100.79336553899998,23.465480991],[-100.89695764799995,23.41726241599997],[-100.92612465999997,23.555865232000087],[-100.89089954399992,23.66866637100003],[-100.90083360799997,23.745616768000048],[-100.79437254099992,23.737566118000018],[-100.69805860599996,23.59027663300003],[-100.7600476419999,23.568085712000084],[-100.79336553899998,23.465480991]],[[-101.13333167699994,23.354965597000103],[-101.04422751999994,23.300755303000187],[-101.12760951899998,23.203087188000154],[-101.13333167699994,23.354965597000103]],[[-100.02791555599998,23.335209619000068],[-99.92543756999999,23.287594039000112],[-99.9941255899999,23.222602270000152],[-100.02791555599998,23.335209619000068]],[[-99.95706953099995,23.2252781090001],[-99.8738935589999,23.236671463000107],[-99.85548354699989,23.129421156000035],[-99.88043261699988,23.031228166000062],[-99.93939159399991,23.011271357000055],[-99.96170757299996,23.107715211000084],[-99.92445353399995,23.14443331200016],[-99.95706953099995,23.2252781090001]],[[-102.91307056699998,23.061979691999966],[-102.96086853799989,22.909504659000106],[-103.04401366499997,22.95133035599997],[-103.11048852699992,23.06412445300009],[-103.0463636149999,23.118658624000034],[-102.91757164899997,23.13184604000014],[-102.91307056699998,23.061979691999966]]]]},"properties":{"objectid":435,"eco_name":"Meseta Central matorral","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Nearctic","eco_biome_":"NE13","nnh":4,"eco_id":432,"shape_leng":64.3791643829,"shape_area":11.06914898,"nnh_name":"Nature Imperiled","color":"#A57024","color_bio":"#CC6767","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":125544.31347389928,"percentage":0.4758678763165515}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[35.27962856300019,31.47961945500009],[35.1881214820001,31.380142693000096],[35.052486530000124,31.343213871000103],[34.914535491000095,31.40079503100003],[34.90927852900012,31.511409164000042],[34.738334475000045,31.49965455000006],[34.68021754400013,31.55462072400013],[34.51485851900003,31.552412764000053],[34.41976951600009,31.403374981000184],[34.319904504000135,31.333006222000108],[34.333129471,31.305226248000167],[34.549541494000096,31.250463083000113],[34.594287613,31.176044859000115],[34.91816351400013,31.021018207000054],[34.90129057500019,30.950573507000172],[34.68594758000012,30.806971557000168],[34.64738445500018,30.636510636000025],[34.52247247300011,30.57986489600006],[34.52178357700012,30.525976732000174],[34.537035632000084,30.50958589200002],[34.545269383,30.406949772000132],[34.591413833000104,30.378964854000117],[34.68354046500019,30.419424708000065],[34.70148846700016,30.521922978000134],[34.811016472,30.532665561000158],[34.89327948800019,30.599977105000107],[34.90712354200008,30.65808196600011],[34.74280957300016,30.78302445900016],[34.81758855500016,30.85862084400003],[34.90539552900003,30.823259942000107],[35.05105255400014,30.95700225900009],[35.08473255000007,31.032540809000068],[35.24240855400018,31.1473437140001],[35.28652955100006,31.27421018800004],[35.27962856300019,31.47961945500009]]],[[[36.354255606000095,33.59101198200017],[36.23324254900018,33.50774732900015],[36.21307753400015,33.45672785800002],[36.44348951500001,33.429140835],[36.466560536000145,33.348492007000175],[36.621993542999974,33.31270429799997],[36.639450532000126,33.44043545000011],[36.52024059100012,33.565824866000014],[36.41495148200016,33.60601156500019],[36.354255606000095,33.59101198200017]]],[[[37.273807550000186,33.92800455500003],[37.34215560000007,33.994397610000135],[37.57567559000017,34.14300640700003],[37.63671160300004,34.199145880000174],[37.74623458000002,34.20882764900017],[37.86031747900017,34.339824055000065],[37.835025589000054,34.38503486700017],[37.50027048100014,34.19021999100016],[37.30651859700015,34.02404457000017],[37.11502848700002,33.899998102000154],[37.139083544000016,33.85419938300015],[37.273807550000186,33.92800455500003]]],[[[38.766086556000175,34.87118206700018],[38.840827484000044,34.97166231000017],[38.59563452000009,34.98761491600004],[38.44388552700008,34.93424549500003],[38.49819556600016,34.77952847000006],[38.67303452300018,34.81050362600007],[38.766086556000175,34.87118206700018]]],[[[37.80678947100006,34.88123364500018],[37.91632854100004,34.94267115100013],[37.9454264850001,34.99404702100014],[37.85664754600003,35.042621659000076],[37.73219656800006,34.93034656800012],[37.62495849900017,34.86543711000007],[37.63739355500019,34.827261229000044],[37.80678947100006,34.88123364500018]]],[[[38.16513846400005,34.88539559500009],[38.186508461000074,34.96235471000011],[38.09558157500015,35.08522653700004],[38.01034952200007,35.01010658000013],[38.080829593000146,34.853696578000154],[38.16513846400005,34.88539559500009]]],[[[40.71643858300013,35.466427950000025],[40.80437061500004,35.624200346000066],[40.609210572000165,35.59623513200012],[40.53898246099999,35.556762068000126],[40.54212550699998,35.43188294200013],[40.61527253200006,35.41524737900011],[40.71643858300013,35.466427950000025]]],[[[39.47152345400019,35.29080746500017],[39.61828253200008,35.4030937870001],[39.833286563,35.52006877800005],[39.90662754500005,35.61248948700006],[39.84781659200007,35.661823525000045],[39.753528563000145,35.59827981400019],[39.473918499000035,35.56696552600005],[39.39101058000006,35.51813490500018],[39.30766261100007,35.41871514000002],[39.23916251300017,35.41724244000005],[39.157710531000134,35.34839985700012],[39.27107945900008,35.27401868099997],[39.38747459000007,35.26115313000014],[39.47152345400019,35.29080746500017]]],[[[45.770076604999986,34.499781613000096],[45.7143366140001,34.54478271000016],[45.49341160600011,34.80428576200018],[45.31828649200014,34.91580581000011],[45.17169153100019,34.98352219999998],[45.09349860000009,35.06185510900019],[44.78865850500006,35.24787753600003],[44.76898148400011,35.239374598000154],[44.31307552100003,35.49017337900017],[43.954311624000184,35.63276011400012],[43.44662846500006,35.689540634000025],[42.73101862000004,35.66888427200013],[42.31426251400012,35.629697031000035],[41.771621455,35.51140993700011],[41.239730522000116,35.34456714800018],[41.206069469000056,35.228530092000085],[41.050262462000035,35.27583470400009],[40.97043958600011,35.250857303000146],[40.947250548000056,35.35742163499998],[40.97394959200011,35.52532976300006],[40.88205359099999,35.50306307000005],[40.84244155400012,35.42707994400007],[40.75513850100015,35.354782006000164],[40.744098528000166,35.23673882500009],[40.59429950200007,35.145485883],[40.618720512000095,35.06888903500004],[40.56284356000015,34.98326320000007],[40.353885564000166,35.051799340000116],[40.168117611000184,35.027806142000145],[40.04719155800012,34.96520858000014],[39.854122465000046,35.02154620100009],[39.62892151400018,34.98207229900004],[39.38958750000006,35.02342710000005],[39.40836749000016,34.91456595900013],[39.615467553000144,34.89118246100014],[39.57950550100003,34.810697583000035],[39.20062654500009,34.59664221600008],[38.97783254100017,34.521204249000164],[38.83581946400011,34.493731891000095],[38.7567864990001,34.52961599200006],[38.64122754700014,34.49153801100016],[38.54060347000012,34.505724550000025],[38.497852579000096,34.56624306400016],[38.395774576000065,34.549981502000094],[38.252841502000024,34.35854252100006],[38.10207755000005,34.32512638800017],[38.026996485000154,34.23978671100008],[37.932273603000056,34.246652495000035],[37.85859248300011,34.1915129840001],[37.917007475000105,34.10148866100013],[37.808784532,34.06813740400014],[37.617954581000106,34.10738935300009],[37.39382550700003,33.944175091000034],[37.20812947100006,33.84291667100007],[37.14379853200006,33.77573772900007],[37.037799475000156,33.572523683000156],[36.84952952500004,33.62084619300015],[36.76150546000008,33.527941681000016],[36.80786861600012,33.34256432500018],[36.80929957400019,33.20605229100005],[36.93556959300008,33.08515993400016],[36.98505752300008,32.97076439000017],[37.14597346800008,32.90378845700013],[37.119106618000046,32.85468006000008],[37.16930751300009,32.77030866000001],[37.097164472000145,32.65188527700013],[37.18273548900004,32.626468999],[37.22771154200018,32.540355779000095],[37.228668325,32.344215195000174],[37.24538979400006,32.300739376000024],[37.47112962300008,32.14021327500012],[37.60991781500019,32.078343841000105],[37.8155918810001,32.07165525300019],[37.88749419700008,32.0900488690001],[38.05303673900005,32.23719779400005],[38.22359572100004,32.30910011000003],[38.36405605900018,32.3141165510001],[38.62491097300011,32.26896858500004],[38.85232294900004,32.24221423500006],[39.03960340000009,32.25391926300006],[39.28833360700003,32.33022136000005],[40.03479355000019,32.516135493000036],[40.683444562000034,32.66183392500011],[41.024463467000146,32.67228146499997],[41.46731562200017,32.701394832000176],[41.79326654700003,32.75258596400005],[42.01005961100009,32.81242923300016],[42.213363511000125,32.91560207900011],[42.22441857100017,32.97630030100015],[42.49838258500017,33.160685743000045],[42.72841654200005,33.28758490700005],[42.77475757000002,33.26995055600014],[42.97459756400019,33.3855931600001],[43.15656248000016,33.36464745500018],[43.26181755900018,33.408045260999984],[43.53923458200012,33.5882471270001],[43.68156449500009,33.65524200300018],[43.96729251000005,33.74292056600018],[44.19256956900017,33.77545861100009],[44.40914956500018,33.77908277900008],[44.62940552900005,33.72472529800018],[45.037429535000115,33.58204435100009],[45.571479479,33.43649444700003],[45.71452353000012,33.36883136500012],[45.826705581,33.280929006000065],[46.02602757400001,33.174429382000085],[46.13566555,33.14147928200009],[45.94863846800007,33.305399301000136],[45.70314459400009,33.62871981700005],[45.770076604999986,34.499781613000096]]],[[[40.55437046200018,36.363200396000025],[40.698932475000106,36.33811587399998],[40.864356542999985,36.40407424400007],[40.918949555000154,36.486221589000024],[40.879871614000024,36.54532138200011],[40.70754253400008,36.56920092200005],[40.60573157900018,36.61056293200005],[40.48549250800011,36.61894768500002],[40.220371569000065,36.548217330000114],[40.221595494000155,36.420809049000184],[40.44023861199997,36.41680719300018],[40.55437046200018,36.363200396000025]]]]},"properties":{"objectid":437,"eco_name":"Mesopotamian shrub desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Palearctic","eco_biome_":"PA13","nnh":3,"eco_id":830,"shape_leng":40.007765008,"shape_area":19.9401437688,"nnh_name":"Nature Could Recover","color":"#E67938","color_bio":"#CC6767","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":204975.28960936033,"percentage":0.776946028575442}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-67.87778481199996,60.389217701],[-67.84160423099996,60.485933003000184],[-68.00298663999996,60.58607412500004],[-68.24404811199997,60.58063016900013],[-68.4403104729999,60.26615271100019],[-68.32458918399982,60.20035802900014],[-68.00520809999989,60.29470165200007],[-67.87778481199996,60.389217701]]],[[[-78.257405453,60.80711628500018],[-78.37886732199996,60.82052370100013],[-78.60268419999994,60.77970092700019],[-78.61808446899994,60.708350071000154],[-78.31982462299999,60.764510726000026],[-78.257405453,60.80711628500018]]],[[[-64.75882891499992,61.60607210000006],[-64.73322901199998,61.65032909000013],[-65.00358206699997,61.68804941400009],[-65.39153812199987,61.65246528400013],[-65.46887896499993,61.610814550999976],[-65.3116681709999,61.521882923000135],[-65.16758830399988,61.494956188],[-64.93696351199998,61.34112814700012],[-64.82300111599994,61.30864098000018],[-64.6840906999999,61.42356907100009],[-64.62436439599998,61.601553150000086],[-64.75882891499992,61.60607210000006]]],[[[-65.65921193599996,61.79771003700006],[-65.79898047899991,61.85633405400006],[-65.93589206899992,61.781121702000064],[-65.66049580899994,61.740634979000106],[-65.65921193599996,61.79771003700006]]],[[[-64.99957756999993,61.86165123800015],[-65.17617021699994,61.93101840300011],[-65.22865687699988,61.865636652000035],[-65.12044326899996,61.772052642000176],[-64.91852817499989,61.707887773000095],[-64.79315707299986,61.736847060000116],[-64.87520051199982,61.82375052200007],[-64.99957756999993,61.86165123800015]]],[[[-64.73563104999988,62.558172309000156],[-64.93197703799996,62.46956053400004],[-64.91343192099993,62.420306128],[-64.5429585689999,62.363338837000185],[-64.35035600999998,62.46326525600017],[-64.36319441699993,62.527892404000056],[-64.73563104999988,62.558172309000156]]],[[[-72.13582340899995,61.59653177400014],[-71.98139961699997,61.66349860100007],[-72.00865288699998,61.72805997700004],[-72.2539131389999,61.88830345800005],[-72.59085370499992,61.947797567000066],[-72.60030772899984,62.1134287160001],[-72.71280760699983,62.14691393100003],[-72.85820579599994,62.11421491000016],[-73.18598916899998,62.27163938500007],[-73.18689629999994,62.315127957000186],[-73.37950876199994,62.37179254199998],[-73.53906291499999,62.380405223000025],[-73.65580497599996,62.4740927310001],[-73.85070679599994,62.45988648000019],[-73.97657006599991,62.364562896999985],[-74.34937087499998,62.25863626300014],[-74.70742537499996,62.24681659200013],[-74.91758142599997,62.258731811000075],[-75.30897013999999,62.317403486000046],[-75.55590644499995,62.27708080800011],[-75.93392716199997,62.35433019800007],[-76.56651495499989,62.45752232500007],[-76.77101717099998,62.516601779000155],[-77.0806786199999,62.52718171200007],[-77.52968138299991,62.571849685000075],[-77.60308702099991,62.524509804000104],[-77.96810229999988,62.38977741400004],[-78.09891257699991,62.36469218400015],[-78.18621586699999,62.261770342000034],[-78.18900574799994,62.13759766600003],[-78.09175398399992,61.911251775000096],[-78.10362614999991,61.87009145300016],[-77.95701575599998,61.68265588200006],[-77.80656320899999,61.68929359599997],[-77.63679147399995,61.562585177000074],[-77.60772185099995,61.46439399500002],[-77.80285345599992,61.41274502500016],[-77.71534723499997,61.20196997],[-77.83393930499989,61.14721307500008],[-77.8422329949999,61.08538198500008],[-78.20642539099993,60.852889104000155],[-77.89263210699988,60.7703907770001],[-77.7196198289999,60.78185443900003],[-77.68511639199994,60.73404389500013],[-77.54200100799989,60.74005656700007],[-77.18717057499993,60.84621575200009],[-76.95176754599999,61.01780327700004],[-76.78955115499997,61.10017139900003],[-76.41876281699996,61.16261649900002],[-75.89055127099988,61.14780998700007],[-75.66549841499994,61.17033983800019],[-74.86212883499996,61.35873389200009],[-74.25375559999998,61.36145685400015],[-73.87648864799996,61.39252864500003],[-73.58799828099995,61.45910872700006],[-73.36164136299988,61.485735014],[-72.82015884099997,61.48573915700007],[-72.54941630699989,61.54787029400018],[-72.46051006099992,61.675159518999976],[-72.26828073099995,61.56732107000016],[-72.13582340899995,61.59653177400014]]],[[[-74.35509434699992,62.67561566100005],[-74.16882193499998,62.60056723400004],[-74.02915343999996,62.66804753900004],[-74.35509434699992,62.67561566100005]]],[[[-70.23923051799994,62.54567851500008],[-70.1778531949999,62.59016123400005],[-70.34477710699991,62.71610207300006],[-70.77514854699996,62.83946869400006],[-70.86681985799993,62.73329759900014],[-70.71612415299984,62.56467845200012],[-70.36790909099994,62.52198899900003],[-70.23923051799994,62.54567851500008]]],[[[-78.43660475999985,63.47580897100016],[-78.52134202299993,63.40288536800011],[-78.01333189399986,63.11652509700002],[-77.90174584699997,63.09416459900018],[-77.52650690299998,63.19746862],[-77.50217498199999,63.274207093000086],[-77.67090438399998,63.42847961300009],[-78.17019586399988,63.489140624000186],[-78.43660475999985,63.47580897100016]]],[[[-64.07223223699998,63.33228567000003],[-64.21181450699999,63.440041250000036],[-64.35024635199994,63.66973576200019],[-64.4815934689999,63.602860129000135],[-64.38957776899997,63.45873481899997],[-64.24228846999995,63.32696472900005],[-64.07223223699998,63.33228567000003]]],[[[-77.3789445839999,63.69386113900015],[-77.39922340399994,63.59049352600016],[-77.04099299699999,63.42266984000014],[-76.72276650399994,63.363657166999985],[-76.65754400399999,63.517518005000056],[-76.81720394799999,63.616900435000105],[-77.0377005929999,63.678544653000074],[-77.3789445839999,63.69386113900015]]],[[[-64.58383783499994,63.77909571000009],[-64.53586056399996,63.90115031900007],[-64.6163986979999,63.91164729400003],[-64.89820544799989,63.82693309899997],[-64.87589417999993,63.77675206000015],[-64.6661050269999,63.77436030600012],[-64.45594581499995,63.65812405900016],[-64.36308357799993,63.724393571000064],[-64.42259341499994,63.77910579000019],[-64.58383783499994,63.77909571000009]]],[[[-77.52338042999997,64.02504736900016],[-77.93064080199997,64.02130601800013],[-77.99778772699989,63.959595919000094],[-77.75494992399996,63.925847708000106],[-77.52338042999997,64.02504736900016]]],[[[-65.3541695269999,64.68294373800018],[-65.49772693399984,64.66478210100018],[-65.62429295999988,64.58367643700018],[-65.63314489899983,64.51082464000001],[-65.46433005299997,64.50281231400004],[-65.26426391399991,64.60439994700016],[-65.3541695269999,64.68294373800018]]],[[[-80.5003338269999,63.704204078000146],[-80.18795326099996,63.71893430500006],[-80.15220991199999,63.77654833000014],[-80.60715044299997,63.85396011400002],[-80.55080215299984,63.98191123300012],[-80.86290594299999,64.10901106100005],[-81.04840426999993,64.000714609],[-81.29933519899998,64.07570523700014],[-81.46681228999984,64.02717710300016],[-81.7077978499999,64.00029717100011],[-81.97573497699995,64.00022212900012],[-81.89348058999991,64.06808285400012],[-81.71943921499997,64.08371452500006],[-81.57735889599996,64.18091190100012],[-81.72654088599995,64.27143668500014],[-81.73098107599998,64.46645259500013],[-81.8158300799999,64.54567858200011],[-82.35294337999994,64.76607060900017],[-82.52555652499996,64.74587420300008],[-82.76114137399992,64.80193375100009],[-82.83131575699997,64.85642150900003],[-83.15289997599984,64.93755853600004],[-83.29232966199993,65.00561142900017],[-83.37900178899997,65.13398013800014],[-83.48374072899998,65.15805518300004],[-83.85515488899995,65.16572120900014],[-84.20776781599994,65.26091391200015],[-84.1477647769999,65.3292535380001],[-84.41075455899994,65.40883126000017],[-84.53507738599995,65.48107441600013],[-84.7046965049999,65.35880234900009],[-84.73359962399996,65.25773625400012],[-84.62699855799997,65.25689132600002],[-84.69859240699998,65.04769308300018],[-84.58520501499999,65.01733503600019],[-84.75121419799996,64.90273947200018],[-84.75591978199992,64.54433453300004],[-84.62682354499998,64.38076165400008],[-84.51499862899988,64.35692753800015],[-84.43079261199995,64.2679235710001],[-84.1371847399999,64.08490529699998],[-84.02544279299991,64.17686611200008],[-83.72131276099998,64.20716171400016],[-83.55119330799988,64.31748977700016],[-83.6025012149999,64.43754551800009],[-83.042662437,64.39471633400007],[-82.77300198699993,64.28080988200003],[-82.69000891699983,64.19451282900013],[-82.19240459499997,64.13483489200019],[-82.13158489499989,64.08253333100004],[-82.33208527599999,63.98923721500017],[-82.41974547199999,63.91548607900012],[-82.34376218599988,63.851359000000116],[-82.48671359499997,63.79236437000014],[-82.53941829199988,63.72168166400013],[-82.47653301199995,63.664006463000135],[-82.30196699099986,63.64649275200014],[-82.07530567199996,63.68011120900002],[-82.01795750899998,63.65118242900007],[-81.92279142499996,63.70655807400004],[-81.92207283399989,63.866788168000085],[-81.72308275599983,63.94722509200017],[-81.39429499999989,64.00828623800004],[-81.26733560199989,63.990991024000095],[-80.83181808999984,63.738027122],[-80.5003338269999,63.704204078000146]]],[[[-84.83687988399998,65.97543457500012],[-84.9316016539999,66.025774846],[-85.15242529799997,65.99585077000017],[-85.10408128999995,65.90583445700014],[-85.10803997799985,65.76229868100017],[-84.89146894899994,65.68110509000007],[-84.71239533799991,65.54453143400002],[-84.55313078899997,65.62382874200017],[-84.72293768899993,65.87741814100019],[-84.83687988399998,65.97543457500012]]],[[[-84.18856139399992,66.08747711300015],[-84.37520050699993,66.14451360300012],[-84.44337983799994,66.07719523000003],[-84.3705017069999,65.99888908700012],[-84.15320865199993,65.97231812300004],[-84.06628262699996,65.80594522500013],[-83.7978545499999,65.6462276470001],[-83.44141642799997,65.65528327900006],[-83.31056247399994,65.61902405000018],[-83.17264580299997,65.71057146600009],[-83.4488216439999,65.72783520600012],[-83.71064464999995,65.78734829000018],[-83.64425912799993,65.90850713100014],[-83.96359833399987,66.03490059100005],[-84.18856139399992,66.08747711300015]]],[[[-63.600417142999845,65.64808386400011],[-63.93991618199988,65.64605632500013],[-64.10037489699988,65.69984095500013],[-64.23479868999993,65.91360640500017],[-64.53219101899992,66.01758677100014],[-64.75734968999984,66.1721207870001],[-64.75993937799996,66.08167527700004],[-64.84615547699985,66.02168447200017],[-65.34252025899997,65.89851258700008],[-65.49657310399994,65.7396837730002],[-65.4521993589999,65.66737565500017],[-65.29536333199997,65.62749504900017],[-65.28751112099997,65.53918853100004],[-65.10864876799991,65.5305762210001],[-65.15619254799998,65.42591947700015],[-64.9699006429999,65.39834927300018],[-64.88639833699995,65.25876625600011],[-64.7176639199999,65.2157875420001],[-64.7055984559999,65.15490456700013],[-64.55687941099995,65.07443697200006],[-64.44857134899996,65.17971238500013],[-64.2383718509999,65.11307176400015],[-64.05471620899993,65.11625030500016],[-63.89379874699989,65.07719118300014],[-63.83145622699993,64.97150551100015],[-63.668097967999984,64.949965394],[-63.45103184799996,64.98048497900004],[-63.35695438199997,65.1771377930001],[-63.478233081999974,65.349190836],[-63.44247370599993,65.41877001600005],[-63.52143997399992,65.49865298500004],[-63.37037668399995,65.52508611300004],[-63.36759015499996,65.623309668],[-63.600417142999845,65.64808386400011]]],[[[-65.50956116599997,66.234763208],[-65.62552211799988,66.16274147600006],[-65.8809899989999,66.09393525600007],[-65.94405543399984,65.96152001799999],[-65.42111229199992,65.96946205300014],[-64.93180003699996,66.06757365300018],[-64.83562479899985,66.16710645600011],[-65.05582349599996,66.16739816800009],[-65.50956116599997,66.234763208]]],[[[-65.57233432999993,66.24447707000013],[-65.56852541099994,66.34845709100011],[-65.83165031899995,66.47396761500016],[-65.85141575899996,66.61978980000009],[-65.96572786099995,66.67547390200008],[-66.37238371799998,66.58700401500016],[-66.72682402999988,66.58758627200007],[-66.81110644199993,66.45487952800005],[-66.70691930599992,66.38820380600015],[-66.52545871199993,66.34340968100014],[-66.53488654599988,66.23647167700005],[-66.27988153599989,66.23841424500006],[-66.13547290599996,66.12746615300017],[-65.97939473899993,66.10336973800014],[-65.68948850999993,66.1771451680001],[-65.57233432999993,66.24447707000013]]],[[[-74.26095042099996,68.06802901100014],[-74.2106587049999,68.14732069600007],[-74.31753026699994,68.18072778000015],[-74.48328744299988,68.06515371100011],[-74.72108320899997,68.07609078900015],[-74.77331979699994,67.97336999700013],[-74.59329056899998,67.82767680900014],[-74.28247598399997,67.76473061000013],[-73.98957319699986,67.78716009700014],[-73.49136521799988,67.75998737200007],[-73.35048932599994,67.82643604300017],[-73.43571113899998,67.98650043100014],[-73.57483172699983,68.01685650800016],[-73.8020094979999,67.99631470800011],[-74.08316957299985,68.06491012400011],[-74.26095042099996,68.06802901100014]]],[[[-86.40641473199992,68.16986965600006],[-86.43219749999997,68.24051501700006],[-86.62689517299998,68.3042858020001],[-86.85012566099988,68.18411876000005],[-86.95136173599997,68.07895740300017],[-86.8139237499999,67.97143662500008],[-86.9210974319999,67.93073212900015],[-86.77508572299996,67.77579881800006],[-86.52796283299995,67.73976494600004],[-86.42114932499987,67.79582974699997],[-86.33822793699994,67.95250256600008],[-86.40641473199992,68.16986965600006]]],[[[-75.59004744399994,68.3046733270001],[-75.94993475199988,68.33839649200019],[-76.06209647099996,68.29421817200006],[-76.27085311299999,68.33204769600013],[-76.61703799699995,68.26993698500013],[-76.95703314499991,68.09077374900016],[-77.20557096699997,67.86044674100015],[-77.2911320099999,67.72952817900011],[-77.20527905799997,67.53366439700011],[-77.22458138499991,67.44859566000008],[-76.99464944999994,67.24453562800016],[-76.68930772499994,67.21206680000006],[-76.21636440499998,67.25232645700004],[-75.91470354999996,67.24483967600008],[-75.56142187899997,67.30823334300015],[-75.18975189799994,67.4403647900001],[-75.04191351899993,67.61064774800019],[-75.05489170499999,67.82815098200007],[-75.14279649899999,67.97433300300008],[-75.04223730599995,68.04099415900004],[-75.01808912799999,68.1665926870001],[-75.12921827599996,68.2353087800002],[-75.59004744399994,68.3046733270001]]],[[[-79.02961368699988,68.18313258799998],[-78.82011529599998,68.27889461300003],[-78.95109595899999,68.35862889800018],[-79.15212823299993,68.36626209300016],[-79.20217539499998,68.24332951400015],[-79.02961368699988,68.18313258799998]]],[[[-74.06560604099997,68.34110889800007],[-74.2574518159999,68.4546589900001],[-74.37071552099997,68.38136869400012],[-74.1968551359999,68.25378887000016],[-74.06560604099997,68.34110889800007]]],[[[-110.70165329799988,68.4836491100001],[-110.787552985,68.55560179500014],[-111.0355558949999,68.51174907900014],[-110.92838213299996,68.46303235200014],[-110.70165329799988,68.4836491100001]]],[[[-78.4825846199999,68.57218568300004],[-78.70967165499991,68.61425523700012],[-78.94839085799998,68.53025341100016],[-78.80276080899995,68.44625720300007],[-78.6526579589999,68.49325271700008],[-78.65815226399991,68.5708199020001],[-78.4825846199999,68.57218568300004]]],[[[-74.50867497699988,68.56841770700004],[-74.79905812399994,68.67523425299999],[-74.82276298599999,68.56670641300019],[-74.50867497699988,68.56841770700004]]],[[[-74.81599297199995,68.32609105300014],[-74.81514694199996,68.51081677399998],[-74.94918569499993,68.5806301290001],[-75.00139722299991,68.67625691500007],[-75.2597082769999,68.73122139000009],[-75.3849768689999,68.63662321200019],[-75.41121619399996,68.54224324300009],[-75.24219154199989,68.44333787400006],[-74.81599297199995,68.32609105300014]]],[[[-101.67376530599995,68.67778886600007],[-101.71678818799995,68.78711698799998],[-102.00314131099992,68.83085622000004],[-102.09871105899998,68.76542632800016],[-102.33458978199991,68.69728308200013],[-101.81076358699994,68.56736925100017],[-101.81050360699993,68.66192953800004],[-101.67376530599995,68.67778886600007]]],[[[-89.92801950199998,68.666087618],[-89.77550413499995,68.76436154900006],[-90.02313097099994,68.77056379800013],[-89.92801950199998,68.666087618]]],[[[-105.49187567699988,68.69369470600003],[-105.43515768499998,68.73596476500006],[-105.77071357099999,68.88156621000002],[-106.23183760599989,68.91174559200005],[-106.58135429299995,68.85126390000016],[-107.28352661199989,68.70368418600003],[-107.95653655999985,68.63559421400015],[-108.3583712439999,68.60498936600004],[-108.58705481799996,68.40313619000017],[-108.73218846999993,68.34070844500008],[-108.71073812499998,68.23074866700006],[-108.46909717099993,68.30684011900013],[-108.4230867949999,68.18791628200006],[-107.87332871599989,68.16989585200008],[-107.71108614499991,68.2002906990001],[-107.88707224399991,68.27528678300013],[-107.80966274099995,68.34461715700019],[-107.47444394399986,68.3363387890002],[-107.60355915099996,68.55097756700013],[-107.435602529,68.63184738600006],[-107.04357634999997,68.68220162300008],[-106.34026121399995,68.84055048700003],[-105.91941727599993,68.85291087000019],[-105.67159537899983,68.78728737000006],[-105.49187567699988,68.69369470600003]]],[[[-114.27417014199989,68.22769554600018],[-113.99125689799996,68.24384453300007],[-114.04152004799994,68.29641350400016],[-113.88869045299992,68.40491196900007],[-114.03945820199993,68.43563790000013],[-114.18809208099998,68.56742284700016],[-114.41750230399992,68.62411919600015],[-114.53769664199996,68.72645077900017],[-114.75483795799994,68.74765120200004],[-114.81239137299997,68.81616032500011],[-115.08797122799996,68.85765160200003],[-115.60187799899995,68.98282035200003],[-116.123131431,68.89699450400008],[-115.937261235,68.88064226500006],[-115.42131836599992,68.71220390100018],[-115.28088906,68.64055294300016],[-115.80980374899997,68.6652896440001],[-115.97975583999988,68.64492448200014],[-116.00850693599995,68.52619305600018],[-115.84743039099999,68.47963212100018],[-115.67668833399989,68.53877915400011],[-115.39962762399995,68.52461253700005],[-115.1776412239999,68.408643756],[-114.89129991899989,68.29903093000019],[-114.68447551599996,68.27019187000019],[-114.51982424,68.31237341900004],[-114.27417014199989,68.22769554600018]]],[[[-100.21706281699994,68.81909921300007],[-100.1761324019999,68.93181215200019],[-100.37651354099995,69.05896430700005],[-100.59891255999997,69.01019889100019],[-100.6159354749999,68.78864145900013],[-100.40035184499999,68.74299951700004],[-100.21706281699994,68.81909921300007]]],[[[-99.99993608999989,68.96086873800004],[-100.05075479899995,69.1253492420002],[-100.24216780299997,69.05632584000017],[-100.2187112069999,69.00497342100005],[-99.99993608999989,68.96086873800004]]],[[[-90.46293480399999,69.30040656700004],[-90.69774230599995,69.37760020200005],[-90.78035216699993,69.28857540500007],[-90.54862423899988,69.20896719500013],[-90.46293480399999,69.30040656700004]]],[[[-78.30857544099996,69.24254495000008],[-78.21042434299994,69.30057466300008],[-78.30645890199997,69.3848478180002],[-78.47657823599997,69.39888772000012],[-78.71029216099993,69.34450955200003],[-78.96278469999999,69.1086653820002],[-79.18648257699988,69.09576213400015],[-79.38421998299998,68.92556537400009],[-79.23454925299995,68.84201194200006],[-78.8248517909999,68.91656108100017],[-78.54977640599998,69.08999645500012],[-78.46862487899995,69.22621471500008],[-78.30857544099996,69.24254495000008]]],[[[-90.27311057099996,69.25729507800014],[-90.14449262199997,69.35806771000006],[-90.18242558499998,69.444475706],[-90.35249891999996,69.43292258300005],[-90.49375962799996,69.34691365100008],[-90.27311057099996,69.25729507800014]]],[[[-76.94174187799996,69.40459465900011],[-77.11479739899994,69.45398586900006],[-77.33995844299994,69.41469676000008],[-77.36840010899988,69.28694859000018],[-77.27305170199998,69.15851195900007],[-76.95434045499997,69.15584067100019],[-76.91650265899983,69.22219764200014],[-76.68859180599992,69.3200304390001],[-76.63757627499996,69.39455952400016],[-76.94174187799996,69.40459465900011]]],[[[-96.61650766399998,69.56755638300018],[-96.55095475199994,69.49365426600014],[-96.13327543699995,69.35932156600006],[-96.06163890299996,69.46435642200004],[-96.15350677799995,69.59128728500008],[-96.61650766399998,69.56755638300018]]],[[[-95.64525577799992,69.61645603200003],[-95.8840557339999,69.61408606400005],[-95.95144319699995,69.51473137400006],[-95.86420277199994,69.36521523400012],[-95.5486588149999,69.33179069700009],[-95.37593100599992,69.42249949900008],[-95.34590926799996,69.54107838000004],[-95.64525577799992,69.61645603200003]]],[[[-77.9381618349999,69.64773586600018],[-78.17297871599993,69.75861114300011],[-78.3047210179999,69.66765661600016],[-78.56366693599983,69.63693494400019],[-78.86029841399994,69.48747105200016],[-78.80992488499987,69.46315015000005],[-78.07139924899997,69.5856894640001],[-77.9381618349999,69.64773586600018]]],[[[-79.35352338099995,69.7387455550001],[-79.44171945699998,69.80533134900008],[-79.66369112799998,69.82100702800005],[-79.96407673699991,69.73326080600009],[-80.19466967599993,69.80990271400003],[-80.40633705299985,69.80722344100013],[-80.71156108799988,69.74922671800005],[-80.68867764899994,69.6762450110001],[-80.4673175669999,69.67705075300017],[-80.00322475199994,69.50016122300019],[-79.92252964699998,69.61542257000013],[-79.64215265299998,69.6171670510002],[-79.36456699499996,69.69164478300013],[-79.35352338099995,69.7387455550001]]],[[[-91.4116553799999,69.85578185700012],[-91.73713408299994,69.79972744800011],[-91.52021798699991,69.73161026600013],[-91.4116553799999,69.85578185700012]]],[[[-97.70184652199998,69.85716811100008],[-97.95830408699993,69.91323836700019],[-98.07629220499996,69.823905797],[-98.21258834899999,69.80018724300004],[-98.36544113599996,69.5819549690001],[-98.53967989199998,69.60049654099998],[-98.59304652999998,69.45305437800016],[-98.40192659599995,69.37678734700006],[-98.67955770599991,69.28407785100006],[-98.73515073599992,69.19267888000007],[-99.03900597199998,69.148399209],[-99.42268884299995,69.15935226900012],[-99.55081463199991,69.02420109700006],[-99.38876723699991,68.89849406800016],[-99.16874164199999,68.86583104300007],[-98.98892729599999,68.9690589270001],[-98.80392912699995,68.9169749450001],[-98.84074775899995,68.8524044770001],[-98.68009144799993,68.79885276100015],[-98.28491495899993,68.77796874000018],[-98.10974877199999,68.69058396400004],[-97.72832700699996,68.6712289890001],[-97.59613589899999,68.59393369300005],[-97.1320171569999,68.52140332700009],[-96.97661844799995,68.54867635200009],[-96.55270037999998,68.46028317300011],[-96.26579041899998,68.48693741200003],[-95.76101324899997,68.73810199899998],[-95.58742291199997,68.77487196600009],[-95.38973070999998,68.76728603999999],[-95.15908985999988,68.868848743],[-95.30917416299991,68.91389319800015],[-95.51834681999998,68.84701920700002],[-95.8179034289999,68.90352741200007],[-95.81710412599995,68.98166814500019],[-95.94111496999989,69.07520490400009],[-95.9110573239999,69.13483680800005],[-96.27292564499999,69.35594580500009],[-96.85218939199996,69.5030979600001],[-97.08353161199983,69.59650401900007],[-97.08308755899986,69.64893511700018],[-97.31579977699982,69.70731415300003],[-97.43938384199998,69.78396756000018],[-97.70184652199998,69.85716811100008]]],[[[-86.96343964399989,70.12072650500005],[-87.35823799799988,70.10705053400011],[-87.22684511999995,70.03041187300016],[-86.73468539999993,69.98092786600006],[-86.44057067299991,70.0203581780001],[-86.55662008999997,70.1119054580002],[-86.96343964399989,70.12072650500005]]],[[[-124.51395155299997,69.41914410200019],[-124.04684029999999,69.67411533900014],[-124.4987745709999,69.72341306600009],[-124.34818149699998,70.05408417600012],[-124.55362380899993,70.20003521000012],[-124.71879199099988,70.17758070500003],[-124.70451884099998,70.06639177900018],[-124.97194884699996,70.0392833140001],[-124.79091395499995,69.96312335500016],[-124.954746592,69.90733663200012],[-125.05527807199991,69.7313968860002],[-125.38258803499997,69.68581581200004],[-125.45688596599996,69.59975955300013],[-125.25724789599991,69.58108468800015],[-125.31753230699996,69.49592887900013],[-125.15488580699991,69.3843834170001],[-124.56533997599996,69.30506195599997],[-124.51395155299997,69.41914410200019]]],[[[-100.60604614299984,70.7126435030001],[-100.66146734999984,70.59412275900019],[-100.4868691069999,70.51894579900011],[-100.27001201799999,70.49034423400019],[-100.32893051499997,70.6289292100002],[-100.60604614299984,70.7126435030001]]],[[[-91.62812189699997,63.618032852000056],[-91.54334487899996,63.725682101000075],[-91.39009579499998,63.65203718100014],[-91.06161717399988,63.61395494700008],[-90.91706104699989,63.540668572000016],[-90.74634088999994,63.56207128900013],[-90.5761381719999,63.63373253200001],[-90.29322079599996,63.61290828400007],[-90.19438640499993,63.66148592100012],[-90.08495385899988,63.78065019200005],[-89.97556382,63.803369696000175],[-90.1935340039999,63.958769640000014],[-89.8351360339999,64.02310855300016],[-89.97155724599986,64.158859867],[-89.79872139999992,64.13725224199999],[-89.71094528899994,64.0325008530001],[-89.55633500699992,64.06974857000012],[-89.25235416399988,64.00992657800009],[-89.08833278099996,64.02077468900012],[-88.86463291899997,63.99132680400015],[-88.56983459899993,64.01146784200006],[-88.25736497499997,64.13003035500009],[-88.11114047199999,64.14076010999997],[-88.04842693499995,64.24622136200009],[-87.84477603699997,64.38036365800019],[-87.80009491499999,64.511891494],[-87.55280770999997,64.57090927800016],[-87.49181608099997,64.68923783800011],[-87.31809261099994,64.7468764800002],[-87.23707332599997,64.87635794200014],[-86.90079560899994,65.14162645300013],[-87.00528468899995,65.23819796200019],[-87.55612166399999,65.29327961100017],[-88.30786964499998,65.28091063200003],[-88.65543251699984,65.31546151700019],[-89.04118353899997,65.32553500300003],[-89.15859191899995,65.4430199580001],[-89.34223417899995,65.49904120900015],[-89.43810480899992,65.60462797700018],[-89.62523141899993,65.69086917700014],[-90.00727427399994,65.81500515300013],[-90.60758622899993,65.91251990700016],[-90.21021480099995,65.93463044400005],[-89.73255165699999,65.82668109000014],[-89.67423802699994,65.94873975100012],[-89.13320490699994,65.77140538000003],[-89.01820634799998,65.70494495200012],[-88.75218433299995,65.67888942200005],[-88.7423079209999,65.63204603800006],[-88.41805129099998,65.54354678100003],[-88.05098459999994,65.35750093000013],[-87.84103343799995,65.32148751500011],[-87.33620061699992,65.32072473700009],[-87.09340658899998,65.39555372500013],[-87.06440292499997,65.4828770740001],[-86.79714333299995,65.56418987500007],[-86.43094227299986,65.74075236300013],[-86.41231196299998,65.8685471600001],[-86.17491866399996,65.97875545400018],[-85.98448024399994,66.02223996600009],[-85.93133204099996,66.20103356600004],[-86.32067454499997,66.28936023200015],[-86.62984981099993,66.32560671400017],[-86.77091294799999,66.45026009300005],[-86.73675829999996,66.521383416],[-86.51208091399991,66.55003736900005],[-86.04372695399996,66.49432571300008],[-85.76940276199997,66.51193842000015],[-85.42756268499994,66.58630280800014],[-85.29673579199994,66.47706701100009],[-85.24020447199996,66.27654130200017],[-85.07740210599997,66.29420623900006],[-84.61590420999994,66.22570039000016],[-84.44611436399998,66.1623230720001],[-84.35773367199988,66.221459901],[-84.60868605799993,66.33282029600014],[-84.43253574699992,66.38346154600015],[-84.30495480999991,66.27151304100005],[-83.88156465399999,66.20082672200016],[-83.65925649999997,66.21957467400011],[-83.80515204299991,66.31441567500013],[-83.88029573599982,66.45489512300003],[-84.15105618299992,66.60093194400014],[-84.15122114999991,66.6942528840001],[-84.33702913999997,66.70633628600012],[-84.41447398999986,66.78497401900012],[-84.55539734299998,66.82656924100019],[-84.59572609499992,66.94041341400015],[-84.72086278599994,66.95474986100015],[-85.07522606899988,66.84269661100018],[-85.16897546799993,66.8800578850001],[-85.00611096199998,66.96252405900003],[-84.59114148999993,66.97814241900016],[-84.40694484299996,66.90838566100018],[-84.42869651599989,66.80657909700017],[-84.23061314699987,66.78461577300016],[-84.27102671199998,66.71716370399997],[-83.98012372599999,66.69090473300008],[-83.93403637799986,66.58412978600006],[-83.64756755599996,66.5258617520002],[-83.4905669829999,66.40907742700017],[-83.33611032899984,66.3494443350001],[-82.9929563579999,66.48563087999997],[-82.98694134299996,66.54917375500014],[-82.5668968459999,66.57046142800016],[-82.52728413699998,66.63635041400005],[-82.15435428699993,66.75851512500009],[-81.96105881399995,66.92072651400014],[-81.80202588799995,67.00034061700012],[-81.68457634799995,66.97267723400012],[-81.46328380699993,67.01465592900007],[-81.35296973899995,67.16403880400009],[-81.33974743099998,67.26909271900013],[-81.1912140739999,67.46483607700009],[-81.37271034899993,67.601556],[-82.07585178699992,67.91046792300017],[-82.15921695299994,68.00445047800002],[-82.09693473899995,68.10459233400019],[-82.31529589399992,68.16716448000005],[-82.19843897699997,68.25177404200008],[-82.35617747899994,68.27325943000017],[-82.34286526799991,68.36556646600008],[-82.47930880099995,68.46839873800002],[-82.21463881099999,68.45792294800015],[-82.04628347899995,68.5090093290001],[-81.9220212649999,68.42275154300017],[-81.75697237399999,68.51416139700007],[-81.53692529999995,68.54017543900005],[-81.21131915499996,68.65070302000004],[-81.19825791099998,68.78166768200015],[-81.29562910299995,68.85964393800003],[-81.53497589099987,68.85780069000009],[-81.72981615999998,68.94440403400006],[-81.54264149099998,68.99209352500014],[-81.45758350099999,69.06087953399998],[-81.28305532999991,69.09463773700014],[-81.3006201629999,69.1933417090001],[-81.61905621099999,69.25670800500018],[-81.98053912099988,69.27267283300017],[-82.14322171899994,69.31803529100006],[-82.1919580579999,69.39673461600017],[-82.43949772499997,69.49664760600018],[-82.60810897299984,69.61867926800016],[-82.53158166499992,69.6921084870001],[-83.26054300899995,69.70887010600012],[-83.54150987199989,69.68896579900013],[-83.9348712069999,69.7511440290001],[-84.08666299899994,69.82011317600018],[-84.53113582499998,69.86933835100018],[-84.84046796199993,69.8397801800001],[-85.06384237999998,69.78334698300006],[-85.36075131399997,69.85820401400008],[-85.56246898699993,69.82371203700018],[-85.39494285599994,69.72905737100018],[-85.51692023599986,69.65016680400004],[-85.38585692399994,69.58894621400009],[-85.507209016,69.52463936400005],[-85.41390758299997,69.3304556550001],[-85.4771657679999,69.31262363600018],[-85.29215604599989,69.1567172390001],[-84.97287747099995,69.14676834000016],[-84.91591529099998,69.09455773800016],[-85.05254943499989,68.96669805200008],[-84.77348919999997,68.74277718000019],[-85.51159356799991,68.78867041600012],[-85.63522140899988,68.72406470700008],[-85.71495478399993,68.56615785400004],[-85.68541700099996,68.40664727200004],[-85.87860958699997,68.18745553800011],[-85.87197161199998,68.04651606500005],[-86.10133212499994,67.96561861600014],[-86.39166823899996,67.78729224500006],[-86.50139176399995,67.67377804600005],[-86.42222489499994,67.59634104600002],[-86.51772011899993,67.44552240600018],[-86.65982796899993,67.37881555400014],[-86.84337961799991,67.41525411700013],[-86.95634729999989,67.3478289430002],[-86.96041577199998,67.25755533100016],[-87.22483093899984,67.19069540800012],[-87.34031432399996,67.24040917600013],[-87.4667168019999,67.37302952300018],[-87.54204081499995,67.3831099090001],[-87.94377696099997,67.62920119199998],[-88.11649479599998,67.68185706800006],[-88.29539424599989,67.89244036900016],[-88.34965124699994,68.03400351500005],[-88.25542301699988,68.12393559900005],[-88.36511641099992,68.25872801800006],[-88.22224674199998,68.35846108800013],[-88.09971316799994,68.24984200500018],[-87.82310477099986,68.25964456700012],[-87.76621555999998,68.38768230900018],[-87.9262437779999,68.59697805100006],[-87.92293185999989,68.73642595600012],[-88.05225977499992,68.84481985000002],[-88.29069882599998,68.95374455500007],[-88.64591267399999,69.05275328400018],[-88.86647555999991,69.16081406400002],[-88.92256460099992,69.23231913700016],[-89.09421115699996,69.28276074900015],[-89.37028113599996,69.23202851999997],[-89.46628272899989,69.12489083000014],[-89.6285854869999,69.0629028530002],[-89.74446619399993,68.96109089500004],[-89.66875133899993,68.81842834900016],[-89.72924607999988,68.69770412200012],[-89.92811744099998,68.62909953100018],[-89.82812130199994,68.54169336100006],[-89.97441397899996,68.39057888700006],[-90.14497519399998,68.31596896000008],[-90.59310050699997,68.45935403300012],[-90.46314965,68.53247855000012],[-90.533948319,68.63579330800007],[-90.42736280399998,68.88735643200005],[-90.59130074199993,69.0054950660001],[-90.63159634399995,69.08621883300003],[-91.12520108999996,69.264364],[-90.80165469599996,69.26484399700007],[-90.81604300099991,69.34638067800012],[-90.42733289199998,69.5029383280002],[-90.67450612699992,69.55254182000016],[-90.7514918359999,69.5009696030001],[-91.13014697199992,69.54974151400012],[-91.25878439399986,69.66157946700014],[-91.46099202999989,69.66925033800004],[-91.55465176199988,69.59760413100014],[-91.804185868,69.50041556600019],[-92.08784678999984,69.56316474000016],[-92.52991076899997,69.71973501200006],[-92.7369823869999,69.73880690500005],[-92.21576208,69.90149082500005],[-91.95269881999997,70.03759767000008],[-92.14583122599998,70.1048154660001],[-92.49379684099995,70.09817402300013],[-92.40168190599996,70.19011914400016],[-92.2232175989999,70.21027192700006],[-91.93209040199997,70.13018568800015],[-91.52090200299995,70.15536771600006],[-91.67348701499998,70.26433757200016],[-91.72647142899996,70.3783611560001],[-91.99511905999987,70.29702144200013],[-91.99738020899997,70.41273838400019],[-92.23022720199998,70.50844684000015],[-92.19921959899995,70.6283957340001],[-92.60290343599996,70.69374145000012],[-92.67305157299995,70.78543595000014],[-92.94519222699995,70.84529546700003],[-92.84129102399999,71.04914549500012],[-92.83714592499996,71.17276002600005],[-92.96681215199993,71.34456881099999],[-93.11744397099989,71.3874245360002],[-93.18336016799998,71.46934349100007],[-93.63132559199994,71.59536723800005],[-93.90754448099989,71.7518485390001],[-94.22534913699985,71.77823892500015],[-94.45358279999988,71.83174722100006],[-94.3663864589999,71.93970689500009],[-94.48096183899986,71.99996053000007],[-95.15590019099994,71.96104518600004],[-95.25400165799982,71.74270671800019],[-95.47517090699995,71.73744968300014],[-95.89521226799991,71.61102583100006],[-95.81898376699996,71.51870176300014],[-95.50734948099995,71.50016223800014],[-95.44895838999997,71.36829728800018],[-95.52948850199994,71.30703268700006],[-95.78620286299997,71.3414636230001],[-95.89754310099994,71.41864668700009],[-96.17966362599992,71.3999013340001],[-96.26249421599994,71.30503185700002],[-96.47199250799991,71.27825394100006],[-96.38815273999995,71.18209057000007],[-96.53346307699996,71.14183569700009],[-96.40720946999994,71.08094130700016],[-96.59717401199993,70.84114387200015],[-96.36122197099996,70.68810594600012],[-96.1663234859999,70.62472730200017],[-96.13526662199996,70.54126066000003],[-96.52374666799994,70.34273916100017],[-96.54872312799995,70.25008738100018],[-96.45453949599994,70.08683649400007],[-96.22010706299994,69.96570679900003],[-96.18239062599997,69.86970552700018],[-95.91795402099996,69.7986861600001],[-95.69552189799998,69.79753959800013],[-95.39063550499998,69.69105031700013],[-94.91156645599995,69.58658095500004],[-94.70932318599989,69.60925930100012],[-94.61759661699989,69.68461468200013],[-94.27661385,69.44721980800006],[-93.88938056799998,69.44322028400006],[-93.81335647799989,69.49829534899999],[-93.55641748599999,69.5369824030002],[-93.43843845999999,69.4781907630001],[-93.5316047199999,69.37641909700011],[-93.46576628799988,69.32390220899998],[-93.812118936,69.17734428500006],[-93.85266711499997,69.27050626000005],[-93.64790708099997,69.36185687200003],[-94.19488476099997,69.34235252700017],[-94.30194828299983,69.17315579600017],[-94.07119439299998,69.13990335000005],[-94.13556497899998,69.06189456200013],[-94.58220822499999,68.96370112700004],[-94.51860881099992,68.89683235200016],[-94.59056498899997,68.77383146000017],[-94.40858257699989,68.73096397000012],[-94.07214975699998,68.76644824500005],[-93.90411664599998,68.83934679599997],[-94.05116152899996,68.90500815500013],[-93.83334210599998,69.01547656600019],[-93.63912036099998,68.98013757600006],[-93.56791286599997,68.84501936600003],[-93.73254649399985,68.62470921900018],[-93.470060215,68.58277467300007],[-93.78731733399997,68.49552460200005],[-93.98016701499989,68.46750260500005],[-94.18597171099992,68.37715655400012],[-94.15618199099998,68.29107578000009],[-93.40966073999994,68.4058340040001],[-93.45722189799994,68.2115144390001],[-93.75403643399989,68.10673369300014],[-93.57801068799989,67.87928301200014],[-93.71089893599998,67.81132307900009],[-94.0191493989999,67.72816156400006],[-94.14019798499999,67.6288897300002],[-94.41196425499999,67.6085392390001],[-94.5531458129999,67.47070364300009],[-94.9195096499999,67.42546693000003],[-95.10164579699995,67.31127753800007],[-95.21890534799991,67.3192646600001],[-95.14491688399994,67.29807744900006],[-95.35135555199992,67.1571433680001],[-95.21381739399993,67.096791393],[-95.26300602099991,66.99103346300006],[-95.41782330599989,66.83872138400017],[-95.47930889699995,66.70048922300015],[-95.73260790199998,66.75747903500013],[-95.79293057699994,66.61362415000008],[-96.08633472299988,66.51014266600004],[-96.03948206699988,66.48319307300017],[-96.63081413599986,66.32886072100018],[-96.74705455499998,66.32398523300003],[-96.838172537,66.24272592500012],[-97.13995343999994,66.18185350099998],[-97.45806209699998,65.86317031800019],[-97.57430215099998,65.79034839000008],[-97.4534753399999,65.71084410300017],[-96.53283603899996,65.6823924860002],[-96.27615430499998,65.6412749210001],[-96.21382943399993,65.52073228100005],[-96.10157028999998,65.41998158600006],[-96.30490067699998,65.32870375200008],[-96.72523496599996,65.20135290000019],[-96.66117081699997,65.12891265800005],[-96.97795144699995,65.0069742770001],[-96.73718977599992,64.93057893500014],[-96.68065622099982,64.77529702300006],[-96.30836492799995,64.58760000900008],[-96.40785940099994,64.48027682200006],[-96.39091486599995,64.42765764500007],[-96.22067228599991,64.32668129600012],[-96.0525437309999,64.3200449740001],[-96.17967221899994,64.21426415700012],[-95.84030167299989,64.04218474200013],[-95.53152465999995,64.04328845300006],[-94.90805797899998,64.11856716900002],[-94.74233234399992,64.04323465200014],[-94.52880065299996,64.01876787000009],[-94.19976014999992,63.91893658000009],[-93.96453882699996,63.9151060050001],[-93.76341994299992,63.80747959300015],[-93.89160120699995,63.692629393000175],[-93.82815555899992,63.59876463500018],[-93.69267263599988,63.514197024],[-93.3270418919999,63.49733248300004],[-93.17821496499994,63.53659633500013],[-92.87995166199994,63.493481833000146],[-92.74157716499991,63.392416506000075],[-92.4317934959999,63.34340813100005],[-92.211700109,63.41696266200012],[-92.10354618799994,63.56041179600004],[-92.23122416399997,63.58037406400007],[-91.92186653999994,63.70205493800012],[-91.7165725729999,63.682630521000135],[-91.62812189699997,63.618032852000056]]],[[[-86.52137165799991,71.04330307800018],[-86.28597457799992,71.07154942200015],[-85.96690787299991,71.17943318800008],[-85.67917602099999,71.22011662900013],[-85.36882500999997,71.20748212600006],[-85.1647760059999,71.285575306],[-84.83042824899997,71.27888632600008],[-84.9019571899999,71.42881276900016],[-85.17288078499996,71.45809907100016],[-85.43873478699999,71.52092204700017],[-85.91113977499998,71.73464402400009],[-86.09104834999994,71.79462734700007],[-86.38773247499995,72.01555368500016],[-86.45925203699983,71.9704439410001],[-86.31093457699995,71.85251179900001],[-86.2707149929999,71.66721053400016],[-85.72746828299995,71.57536033400004],[-85.60802514599993,71.49455852200015],[-85.74516933699994,71.44976329600013],[-85.60032819799994,71.37498824300019],[-85.77358800499997,71.25388784100016],[-86.26884465099994,71.25577531800013],[-86.5291058069999,71.19819807300007],[-86.52137165799991,71.04330307800018]]],[[[-66.8624654969999,66.5990970950001],[-67.41405807099983,66.7377979850001],[-67.90697474599995,66.90960627400005],[-67.74817378899996,66.96023682800006],[-67.84403539499988,67.03432815700006],[-68.47791411699995,67.03497109000006],[-69.05344112699993,67.12142373900008],[-69.15185624199995,67.12027624000007],[-69.42910248999993,67.20429072900015],[-69.46056470799988,67.32815559400018],[-69.56300100899989,67.35406977800005],[-69.78134778899982,67.28241197000006],[-70.22637564199994,67.3666496890001],[-70.19351788199998,67.51732998900007],[-70.58067542899988,67.63118420300003],[-70.77669601999992,67.72414443200006],[-71.23655046199997,67.77829555000005],[-71.44694063599997,67.91289920800017],[-71.66873375899985,67.97366282400014],[-71.87183311299992,67.97934049000008],[-72.07175605199996,68.09714347900018],[-72.17691730999996,68.25463813300013],[-72.08109393399991,68.3324520650001],[-72.01224183899996,68.52612464400005],[-72.3026187239999,68.4493433880001],[-72.56709563099997,68.70371029700016],[-72.88166998899999,68.72189314100018],[-73.02994946399991,68.78557826500014],[-73.20193294699993,68.92035105100001],[-73.59061506099994,68.99882459200012],[-73.81195952699994,69.15860571200011],[-74.14188249399996,69.15606864100005],[-74.21203239299996,69.24418918200007],[-73.90779822999991,69.28970989800001],[-73.84334555199996,69.34803487500011],[-74.08142253999989,69.36734937700004],[-74.24133244899997,69.30252207900008],[-74.4779418309999,69.30760380300006],[-74.69737251699996,69.27202547500008],[-74.8162339299999,69.332340848],[-74.98025789299993,69.49672389800008],[-74.86784480199992,69.66052775000003],[-75.26215639399993,69.59138052300017],[-75.20343390199992,69.68944942900004],[-75.01578208699988,69.738062706],[-74.8073812909999,69.854705271],[-75.16319683499995,70.12786490800016],[-75.42798428999993,70.2031501240001],[-75.70617861599999,70.15086997900016],[-75.76355946999996,70.08022132400004],[-76.01165203199997,70.00932883600007],[-76.2527987979999,70.04504497200008],[-76.6048065999999,70.01614111600009],[-76.79427753799996,70.03200083500019],[-76.86688773499992,70.09301286000004],[-76.28044695999995,70.27273029300011],[-76.21295447099999,70.3392991290001],[-76.46143049699998,70.43153772700003],[-75.92123332699992,70.51718236800014],[-76.22100679699986,70.53832392000004],[-76.33192774299994,70.49862327400001],[-76.75914344899996,70.4705776030001],[-76.64644571199995,70.57151140000008],[-76.46786577899996,70.62599855800016],[-76.66695003199993,70.68748085900017],[-76.71616486499988,70.76087128200015],[-76.48130941199997,70.7983911840002],[-76.58529818699998,70.91425911600015],[-77.03443424099999,71.06637231300016],[-77.608679839,71.114220176],[-77.91442725399997,71.11626661400004],[-78.38242281299989,71.16673469000011],[-78.52707865099995,71.24515364300015],[-78.84840330499998,71.27397270400013],[-78.90276497899998,71.35429225000013],[-79.25930227199996,71.3145720980001],[-79.59197171099999,71.31100573100014],[-79.9937833759999,71.35019446800015],[-80.87927119799991,71.48302670300018],[-81.05513818599997,71.63000267700005],[-81.13559133299992,71.78474925300003],[-81.67707736999995,71.87495411000003],[-81.70878630999988,72.04735614900005],[-81.66563427399996,72.13891467000008],[-81.8713223009999,72.20176706200004],[-82.65297712099994,72.05599826399998],[-83.04253955399992,72.06531023300016],[-83.42557453399996,72.12781790200012],[-83.72663156399994,72.20888320700004],[-84.17774129299994,72.41903991700008],[-84.55441165799988,72.46069569800017],[-84.77076013299995,72.51612018900005],[-85.56757849099995,72.51727013200008],[-85.51459176599985,72.46414565500004],[-85.1211227359999,72.38451975600003],[-84.77355929099997,72.46857468300004],[-84.7919897239999,72.34205244800006],[-84.97030328199986,72.25110344500018],[-85.47305385399989,72.26906463900019],[-85.42130665499985,72.14307456199998],[-85.76781100899996,71.96636340100014],[-85.53710276099997,71.90444610999998],[-85.51152034699999,71.79876510600002],[-85.31782379299995,71.69949780800016],[-84.96741986099994,71.65865958800015],[-84.60771346699994,71.68121401000008],[-84.64418788599988,71.594470999],[-84.53102088699995,71.55188005900015],[-84.56193923699993,71.4461423890001],[-84.73856556099997,71.41515662600005],[-84.79504913899996,71.18494734800015],[-84.76271975299983,70.94040815800014],[-84.92941033599999,70.92935472500011],[-84.92679500599985,71.07471944900016],[-84.82949272299999,71.16200940200014],[-85.04299074699992,71.1988130800001],[-85.7393379969999,71.13380309300004],[-86.23938546199992,71.00012073900012],[-86.74960770499996,70.97431806100019],[-86.69822976099994,71.03048411200018],[-87.27310302499995,71.0593527420001],[-87.69802967099997,71.1636075190001],[-87.80977468199995,71.2895212950001],[-88.42222562099988,71.26690065600013],[-88.59957110099992,71.32359370300003],[-89.00559945399993,71.35595164900019],[-89.49829140699995,71.42104867700004],[-89.72080936299994,71.53435750900019],[-89.60584296299987,71.63754310900009],[-89.67035586999992,71.77054979500008],[-89.59676323499991,71.86888098100013],[-89.84421451299994,71.9553568820001],[-89.83110780999993,72.03773514700015],[-89.66708879699996,72.11511011200008],[-89.95804245999994,72.03041953900004],[-90.0888453629999,71.92069132700004],[-89.80206828899998,71.7710781290001],[-90.02036187399995,71.60353729000013],[-89.88520274699988,71.36642590400004],[-89.64541893999996,71.31769463700005],[-89.12677202699996,71.29911007200008],[-88.67173575599998,71.25474143100013],[-88.07003302499993,71.22672415500011],[-87.39135524999989,71.07761040800017],[-87.2714527149999,71.01423260400003],[-87.35529622399991,70.95712527800009],[-87.97580225399986,70.94084070900016],[-88.30904299599996,70.96231876100018],[-88.35003231499985,71.01353254800006],[-88.65130894099997,71.05425716400003],[-89.34222950499992,71.01913433300018],[-89.19432296799994,70.94853075700013],[-89.41722626299992,70.91175315200013],[-89.31956976599997,70.80597526100001],[-89.06742320899997,70.71388518600008],[-88.87110853599995,70.54645949400015],[-88.66431936399988,70.46880275300015],[-88.23203897199988,70.42002418200013],[-87.86848137399994,70.33212602400016],[-87.49596617199995,70.33813458900005],[-86.99172484699989,70.29223713600004],[-86.69393411599998,70.33554881600003],[-86.26519867699989,70.12706427800015],[-85.83371334999998,70.0177570510001],[-85.34091698499986,70.0433848580002],[-85.30030715499993,70.11480411600007],[-84.93340333499992,70.07545941900008],[-84.64182684799994,70.01151229300012],[-83.56631370299988,69.96684813600007],[-83.08280700099994,70.0186104120001],[-82.62884284999996,69.89030347300007],[-82.19099504699989,69.8010946350002],[-82.03662944299998,69.88101433000003],[-81.84228130099984,69.88421384100013],[-81.58791919799984,69.9725604510001],[-81.14592372899989,69.83466883500006],[-80.87947924399992,69.7301780520001],[-80.73753462699995,69.77573688200005],[-81.11628780999996,69.94550703000016],[-81.36946728399994,70.09967539600007],[-80.54309617699994,70.0581984210001],[-80.30458562199993,69.99200319700014],[-80.1931736389999,70.02589746300004],[-79.89491942299998,69.98907051800006],[-79.69806378499993,69.86508765400009],[-79.39396867599993,69.90117630100013],[-78.80798749699989,69.90001533300017],[-78.65901106399991,69.97462973100005],[-78.74477093299998,70.17229633300013],[-78.93582510099998,70.32267719300006],[-79.22107668999996,70.31915168300003],[-79.34686667799997,70.376686425],[-79.56627389599993,70.39552416800018],[-79.4025452919999,70.49591875800007],[-79.15538326199993,70.42333839900016],[-79.05767047699999,70.47509330900016],[-78.78112751499998,70.44757279600009],[-78.40311108699996,70.2340169220002],[-77.86836554099995,70.266107821],[-77.64384866799998,70.17395332100011],[-77.68969270899998,70.00989580100014],[-77.68140603899991,69.82863342700006],[-77.49083793899996,69.78617537200006],[-77.30816934199993,69.83691214400017],[-76.89658427799998,69.81622762400002],[-76.94927404499998,69.71624423300017],[-77.1829955369999,69.64049992500003],[-76.72235522999995,69.56320137200015],[-76.32363230399994,69.40979663799999],[-76.18097329999995,69.42375236900017],[-75.73009078299998,69.30105308800012],[-75.59895226299989,69.24134163400015],[-75.59232726499994,69.08717538500014],[-75.75539260299996,69.08870831400003],[-75.95054045799998,69.01983430600012],[-76.35896876599992,69.05942422300012],[-76.59177763899999,69.03418067100012],[-76.63957722399988,68.93964548200012],[-76.50202055899996,68.86432160900006],[-76.65043531799995,68.75945020200004],[-76.56721576699994,68.67532860800009],[-76.40256927399992,68.68082574900006],[-76.05652074899996,68.76059329700018],[-75.94729582099995,68.8223798250001],[-75.31441409899986,68.93737187900007],[-75.13860970399998,68.88739288300013],[-74.71535683599996,68.938724111],[-74.69591989799994,68.85984859700017],[-74.89658569899996,68.80678248700008],[-74.52089041899995,68.66854688300003],[-74.37425461599997,68.54815466700018],[-73.98802131699995,68.49817544800015],[-73.88408884299997,68.5587994920001],[-74.15747114799996,68.73343742600014],[-73.90266752299993,68.71183899300019],[-73.7171863179999,68.65545086600014],[-73.72123932699998,68.53534794000007],[-73.90435239399989,68.4370791130001],[-73.85791677199995,68.34135200100019],[-73.65360579599991,68.2700394150001],[-73.27949320199997,68.28188346400015],[-73.10751249799989,68.22176153800018],[-72.90133386399992,68.05540966100017],[-72.92120403399997,67.95480680000014],[-72.83604547999994,67.85129571100003],[-72.72388491999993,67.85454763000007],[-72.57288376599996,67.76270866300013],[-72.64671698299998,67.67068374100012],[-72.48053018899998,67.5946608070002],[-72.36222800799993,67.3148720710002],[-72.1782681759999,67.27206157100011],[-72.33089668399998,67.1090480960001],[-72.63300716099991,67.07993881500005],[-72.81888355099994,67.00951799200016],[-72.85643093599998,66.92925727100015],[-73.06912556199995,66.72283826000017],[-73.28191394799995,66.66881298900006],[-73.53230914399984,66.50349154400004],[-73.70940975799994,66.45432274000018],[-73.98157309599998,66.32690128500008],[-74.35929603899996,66.21660309400005],[-74.45713395699988,66.1561646990001],[-74.41667085999995,66.07849765600014],[-73.99501686199994,65.83190340100015],[-73.72606104999994,65.76947342700015],[-73.51243527699995,65.49649234700013],[-73.68074606599993,65.44935579900005],[-73.74915639899996,65.50684166100007],[-74.13358399899994,65.53320271300015],[-74.30570149699992,65.46972085400006],[-74.34690562799989,65.40826320800005],[-74.52798433499999,65.32704721700009],[-74.75909106099994,65.38541299300005],[-75.05746693099991,65.37921231700005],[-75.15147321899991,65.25590625900014],[-75.27245163699996,65.25013571400007],[-75.90548695099994,65.32497954800016],[-76.00735879299998,65.25261048300013],[-76.65071494999995,65.39569761600006],[-77.10939089999988,65.41076680400005],[-77.26821800699997,65.47072745900016],[-77.43242945299988,65.45865396900018],[-77.51060337799998,65.30845142100014],[-77.32577638999999,65.17411061100012],[-77.64102051999998,65.13206967000013],[-77.93765655999994,65.04581340200014],[-78.14293663199999,64.94879529600018],[-78.06777374799998,64.85420234600019],[-78.17737913099995,64.75755613300015],[-78.19018197599996,64.56751190400007],[-77.97627226299994,64.47588308300004],[-78.02122696999993,64.42348595900006],[-77.6796325769999,64.31891216400015],[-77.14775833699997,64.28886912800004],[-76.8017429119999,64.20429696000008],[-76.69062757899997,64.30248092600004],[-76.30117560099995,64.27050727800008],[-76.32479229099994,64.35414067400012],[-76.13133934499996,64.36200289400017],[-75.79141660699997,64.40989091699998],[-75.79651052899999,64.6060313050001],[-75.30029396199996,64.48841010300004],[-74.72463158399995,64.37438709100013],[-74.61812855499994,64.4978594530001],[-74.47826577499995,64.5688444810001],[-74.15319664699996,64.57706436900003],[-74.02598170099998,64.43268622800002],[-73.93968177699998,64.48396915800004],[-73.46052537199995,64.61619642700009],[-73.38519258199995,64.56505602500016],[-73.68672383199998,64.55119246599997],[-73.61308448599993,64.49398904600008],[-73.64287858699998,64.31738093900003],[-73.37419338399997,64.36037658900017],[-73.37994178299988,64.27266970500006],[-73.2117512289999,64.28833545600008],[-72.88335216299998,64.12621624600013],[-72.95132736499988,64.05673808800009],[-72.72990423799996,63.99797962500003],[-72.60607591699994,63.87161086300006],[-72.37082594299989,63.81973596500012],[-72.26732837999992,63.73524607300004],[-72.14452328399994,63.74287879200017],[-71.86223935499999,63.66053709800008],[-71.82011894799996,63.75851430700004],[-71.52570253999994,63.61270410900016],[-71.26113891599988,63.53146194600015],[-71.4288480649999,63.50606836000014],[-71.61350891199993,63.41029825500016],[-71.76566040199998,63.3717199030001],[-71.74233795399982,63.240091222000046],[-71.60320118599998,63.128624335000154],[-71.39515195099995,63.04969499100008],[-70.80395729499992,62.89442581100002],[-70.51068326899997,62.87554224500008],[-70.15999223599994,62.738135762000184],[-69.94405295199988,62.784467366000115],[-69.74916541299996,62.729194746000076],[-69.52942988799998,62.76865645900011],[-69.57429835899984,62.64928882100014],[-69.2194062829999,62.44800310600016],[-69.05060249799988,62.39375152200006],[-68.8460058949999,62.37887158900014],[-68.60656667099988,62.26286260600017],[-67.8376650429999,62.1871028970001],[-67.6960658239999,62.15211392100019],[-67.54591930999993,62.17679546900007],[-67.23754724799994,62.07040904500019],[-66.87829921499991,62.034414254000126],[-66.61929484199993,61.97326694200018],[-66.56204976299995,61.934059738000144],[-66.27018541199993,61.859371859000134],[-65.94787737499996,61.87130494400009],[-65.94201349999997,61.92251612900009],[-66.07863157699995,62.057909306000056],[-66.03767568099994,62.15299152600005],[-66.21348485999994,62.34837471500015],[-66.53453100099995,62.55922319700005],[-66.83141244099988,62.66586493300008],[-66.92293475099996,62.610402204000025],[-66.6535022299999,62.42161314700007],[-66.6894456249999,62.3510661250001],[-66.43551794499996,62.2975077370001],[-66.19653569699994,62.130472996000094],[-66.31853418699995,62.11907856800002],[-66.82477732699994,62.242880676000084],[-66.88144903199986,62.29821971600012],[-67.15820107399992,62.34775303000015],[-66.92015889799995,62.42732265300015],[-67.05715876199991,62.49544718600015],[-67.14839229199998,62.443861831000106],[-67.49627663599995,62.39891985700018],[-67.58998009499993,62.460949870000036],[-67.73589557699995,62.45596278100015],[-67.76966196999996,62.536094394000145],[-68.02341414799992,62.57526885600009],[-68.05962947899997,62.67086561000008],[-68.28591986799995,62.59285207200014],[-68.29019892499997,62.72542072200008],[-68.4375927399999,62.764635659000135],[-68.45934647599995,62.851060903000075],[-68.71736161499996,62.86092116900005],[-69.03776587799996,62.93338764900005],[-69.04550800599998,63.0317239420001],[-69.15147290999994,63.07813127600008],[-69.09909615099991,63.229518784000106],[-69.18244795899994,63.23746298999998],[-69.26793529599996,63.12107566800006],[-69.23740328299988,63.01786847800014],[-69.4367601319999,63.06420024900018],[-69.56415691499996,63.25287808100012],[-69.48443476199998,63.30332777300009],[-69.59476429399996,63.391822248000096],[-69.84527446599986,63.39432314500016],[-69.97381464499983,63.452420576000065],[-70.04883584599997,63.61379255600008],[-70.39122892199993,63.75839546499998],[-70.54734813799996,63.78115921699998],[-70.63552511599994,63.649797672000034],[-70.7266481979999,63.58745471300017],[-70.79516429099988,63.456100053000114],[-70.76572981899994,63.39652775000002],[-70.89684437099993,63.345903361000126],[-71.19907205399988,63.393999018000045],[-71.18438564699994,63.47329213900008],[-71.07290802899996,63.638975746000085],[-71.27270503199992,63.700333773000125],[-71.4062788299999,63.78951451800003],[-71.78108266799995,63.90795959500019],[-71.72502933099997,63.97805340000002],[-71.92717540999996,64.04650240200016],[-72.16458030199988,64.09266154100015],[-72.36423411699991,64.25138876500012],[-72.5304032119999,64.28565198400014],[-72.71279528799994,64.24819429500013],[-72.81980000299995,64.31546141000007],[-72.83130738999995,64.42275184900006],[-73.01206964799997,64.50096233500017],[-73.06534899299993,64.57537461500004],[-72.94198604999997,64.7887125040001],[-72.30781535499989,64.60104966400013],[-72.27343480699989,64.51751968000008],[-72.05654195199992,64.45911223500013],[-71.70298742099999,64.44277340700006],[-71.28928092799998,64.32702315200015],[-70.80227765199993,64.14030878100004],[-70.58541096399995,64.02433670800008],[-70.47522743799993,64.01024801300008],[-70.15067893299994,63.87809697900008],[-70.0865773619999,63.96168154700018],[-69.82795490399991,63.881372099000146],[-69.75175619899994,63.76822176200005],[-69.64176215399988,63.77905230300013],[-69.36617260199995,63.68898157400008],[-69.00861534299997,63.53428266600014],[-68.50898719299994,63.37557490700004],[-68.54311311399994,63.33118477500017],[-68.36773094999995,63.27379649800014],[-68.21308133999992,63.149582714000076],[-68.04988332999994,63.10240770799999],[-68.02751318499998,63.02615174500011],[-67.85447797499995,63.019000163000044],[-67.84809241499983,62.91601418900012],[-67.62264960399995,62.94849228600003],[-67.45643512099986,63.00415497500012],[-67.60987513899994,63.092610201000184],[-67.76735756299996,63.09335026000019],[-67.87178725399997,63.143765446000145],[-68.09121962799998,63.16398412700016],[-68.42040368799991,63.40691307600008],[-68.74179073999989,63.55035126800004],[-68.80927704099986,63.63852395800018],[-68.96387859299995,63.74033928800003],[-68.43781672599988,63.72244947100012],[-68.38097967899989,63.66089092000004],[-68.08018314499998,63.60477577100016],[-67.82087570399995,63.469193217000054],[-67.77658076999995,63.408257568000124],[-67.61916418499993,63.421679414000096],[-67.78972471299994,63.585279992000096],[-67.63930090099996,63.64907048100014],[-67.49430609699982,63.48522151100019],[-67.10673814299997,63.28298378700009],[-67.00600946099996,63.24709110200013],[-66.68388792099995,63.05456456200005],[-66.51395930499996,63.09307096900011],[-66.35234477299997,63.00312232800002],[-65.86745139399989,62.974281401000155],[-65.71934275799998,62.927333724000164],[-65.58150485099998,62.818764277000184],[-65.3399355499999,62.818704974000184],[-65.30169852299991,62.67303826600005],[-65.19669968999995,62.56584934300014],[-64.96662189799997,62.61035557800011],[-64.94274239499993,62.72024260500018],[-65.1790723979999,62.90169895800011],[-65.06665801999998,62.944477357000096],[-64.83954382999991,62.865566847000196],[-64.59790176199988,62.89870305300008],[-64.7642088589999,62.95736759800002],[-64.75417794899994,63.12907813400011],[-64.8761030799999,63.23276083000013],[-65.0641957819999,63.560460737000085],[-64.85341530999995,63.550531388000195],[-64.76496150799994,63.36293682799999],[-64.62285288699996,63.23944962400003],[-64.5077212459999,63.25415647700004],[-64.45624738499993,63.44372135200007],[-64.51464738099992,63.59990534100007],[-64.4996726949999,63.67984648900017],[-64.65096868499995,63.74716997000013],[-64.88483908099983,63.768283015000065],[-64.95539135499996,63.80637299800014],[-64.78696949799985,63.9198321560001],[-64.62408084199996,63.96237802100006],[-64.6923270239999,64.01192949000006],[-65.06658763299993,64.00262626799997],[-65.0270887509999,64.05877380900006],[-65.25120441799993,64.17185022700016],[-65.31080737899998,64.28059191800014],[-65.05085214299993,64.40893723500017],[-65.06821650599994,64.47635958700005],[-65.20990164799997,64.53555830400012],[-65.69951120899992,64.48544955200015],[-65.70423495399996,64.57796726000004],[-65.56453600699996,64.64487978100016],[-65.53496711199995,64.71667379600018],[-65.68898325599997,64.84071062700002],[-65.95646190899998,64.86697180800013],[-65.87128037199989,64.75477718700012],[-66.34656575899993,64.7530438020001],[-66.3701567949999,64.64850321500006],[-66.36731793799993,64.46928514900003],[-65.95419963099994,64.28465375700006],[-65.87649768599994,64.07592526900004],[-65.67471047299995,64.09696498900001],[-65.41100913099984,64.03108416700013],[-65.28026395099994,63.927581788000055],[-65.54880634299997,63.89305932100012],[-65.33849241699994,63.837723773],[-65.47238389099994,63.787741757],[-65.26710285399997,63.659520943000075],[-65.13027253299992,63.62090981000006],[-65.20062093999991,63.50957537700015],[-65.52450564599997,63.56364899100009],[-65.47244145699989,63.429030651],[-65.6134042619999,63.347366875000034],[-65.7715687679999,63.40981681400001],[-65.81046437299995,63.31221397600018],[-65.66425246199998,63.296086861000106],[-65.64788879899999,63.16898244200013],[-65.94484532199982,63.17433308500006],[-65.90367223399994,63.25269275400012],[-66.03137259899995,63.334106841000164],[-66.50620855099993,63.30407771600005],[-66.72428024599992,63.31773468000006],[-67.09756451999982,63.52680274700003],[-67.26846770399999,63.56172015100003],[-67.47433677999999,63.80712065199998],[-67.71369332699993,63.85489906800012],[-67.89968805299992,63.93509943300006],[-68.14137268499991,63.9990586290001],[-68.12201729699996,64.10079858900014],[-68.33636119499994,64.09748391500017],[-68.4704295109999,64.19415811300007],[-68.69512766799988,64.27112764400005],[-68.88693056799997,64.27069150000005],[-69.45420244499991,64.30763674500008],[-69.53763395499988,64.51111033400002],[-69.67339542899992,64.56223657900011],[-70.01764888499997,64.60168968500005],[-70.13414063499994,64.662161874],[-70.26585574799998,64.88757115600015],[-70.20106066199997,64.9483849390001],[-70.4670614609999,65.21402755000014],[-70.64988209899997,65.29114242400016],[-70.70739789699991,65.36788313100004],[-70.6359918689999,65.47130176000013],[-70.72667530999996,65.57497655400005],[-70.87937976299997,65.61733084200006],[-70.7838020989999,65.679707839],[-70.52234058799996,65.6942904620002],[-70.42484663699997,65.74573954800007],[-70.16474761699993,65.80755877600018],[-70.12731511599992,65.84659938200008],[-69.88055970599993,65.86303334400003],[-69.71578806299993,65.92199111999997],[-69.51972705399999,65.83648000000017],[-69.38352226999984,65.91498688600007],[-69.21490048799996,65.93558302600019],[-69.23800794399989,65.99696291900005],[-69.01596171799997,66.03627588200004],[-68.86942419299999,66.14023349200005],[-68.62028775599998,66.17144289400005],[-68.47797854199996,66.15261275900019],[-68.4671276759999,66.03677757100007],[-68.28554706799991,65.84006270300006],[-68.37119518499998,65.73560138200003],[-68.12753107099996,65.58603877800016],[-68.14954881799997,65.46818720300013],[-68.07610848799999,65.3843546490001],[-68.34592277699988,65.30060684900013],[-68.26068687599991,65.1932536440001],[-68.09013921099995,65.14986600100013],[-68.22247519199993,65.054197654],[-67.98686463399997,64.91965139000007],[-67.86338050199998,65.02458255000016],[-67.3142829109999,65.01361994600012],[-67.22828924499998,64.8820910770001],[-66.97967872999988,64.78806963900013],[-66.89641098699997,64.69674498800009],[-66.56987189799992,64.73762401300013],[-66.4073958319999,64.67472828200005],[-66.43678227499987,64.7226714900001],[-66.19750444899995,64.78850937200019],[-66.11649741699995,64.86050929400011],[-66.46255082799996,64.92555539100016],[-66.44693981199998,64.97009376800014],[-66.66571881799996,65.03466564400009],[-66.74637191199992,65.00519988300005],[-66.91402944899994,65.21168123500007],[-67.11873463499995,65.21008596500008],[-67.16584974599988,65.32535947000014],[-67.0464755839999,65.46057734400011],[-67.40646019799993,65.48112771500018],[-67.25851205599997,65.55329167100018],[-67.24562012099994,65.62559518100005],[-67.40177998999991,65.67694419700013],[-67.84033611899997,65.639057342],[-68.00635881099998,65.77463802700004],[-68.13343970099999,65.80124171000011],[-68.13289809799994,65.93376726600019],[-67.79318450999995,65.87638493300011],[-67.67439877099997,65.91775292000017],[-67.46934955699999,65.89145454099997],[-67.18956722499985,65.93725836300013],[-67.13089172099995,66.01865115400017],[-67.26290091699991,66.10453150800015],[-67.37780382399995,66.12101512200013],[-67.69793522599997,66.23247254900014],[-67.68555962199997,66.28560887000009],[-67.85453198199991,66.4474850850001],[-67.67080847999989,66.44142775500006],[-67.4915226999999,66.38293761400013],[-67.40573297199995,66.2918888860001],[-67.26854224099992,66.2634170500001],[-67.10518903799988,66.30288869300011],[-67.13909404299989,66.48229245100009],[-66.87536274499996,66.55493464500006],[-66.8624654969999,66.5990970950001]]],[[[-89.65146432199992,72.11571172000015],[-89.21047942999985,72.13524806200007],[-89.3740389539999,72.25529536599998],[-89.41558024199998,72.4070748910001],[-89.2263328009999,72.472787794],[-89.43414283299995,72.5338969070001],[-89.33283274399986,72.64405519600007],[-89.31749831899992,72.76584877700009],[-89.53229443999999,72.78618007300014],[-89.52460552999997,72.63105264000012],[-89.73085395799995,72.61534795600016],[-89.79331086999997,72.46035772900018],[-89.95642494599997,72.32281566500012],[-89.87692534999996,72.20361119600005],[-89.56930256099997,72.16033553000017],[-89.65146432199992,72.11571172000015]]],[[[-98.341651631,73.03921669600004],[-99.02982198099994,72.98011780100006],[-99.26836705299996,73.01705952800012],[-99.59712044099996,72.95446896400017],[-99.8107574089999,72.9733752510001],[-100.12535887899998,73.04755251500006],[-100.07428173099993,72.88392496300014],[-100.32305138099997,72.8762329450002],[-100.30093898299992,72.79866311000012],[-100.42791219699996,72.73451447100007],[-100.79302062099998,72.73077836800013],[-100.84400541599996,72.68981386700011],[-101.26568468799991,72.71266062700005],[-101.43638554199998,72.79516169800013],[-101.52032204299996,72.91923660100014],[-101.73674762699983,72.93326627900007],[-101.75478117499995,73.00174947400012],[-102.11985694499998,73.08838408300005],[-102.49672821699983,73.02604288300012],[-102.73532300499988,72.76800816300005],[-102.66656035299991,72.69089904499998],[-102.36285022499999,72.58652722800008],[-101.92695344199996,72.47400479300006],[-101.80937480999995,72.31546958400008],[-101.45879427499989,72.26587851800008],[-101.17512410999996,72.33005381200007],[-100.90564205699997,72.18412548200018],[-100.61373863999995,72.18229916500013],[-100.42985465899989,72.05566988700008],[-100.05258467699991,71.88350653500004],[-99.82335529099998,71.84108307900016],[-99.59430830399998,71.71065955300003],[-99.52762416599995,71.62601818600018],[-99.34323830399995,71.5874505600001],[-99.35095065799993,71.52081194000004],[-99.21366072199993,71.3664471960002],[-98.942171939,71.39996112600011],[-98.7029847039999,71.29412266800006],[-98.43168009199997,71.33780339700013],[-98.11826241599994,71.47477551700013],[-98.03362082999996,71.55412400400013],[-98.16974530799996,71.6549498650001],[-97.95751680399997,71.67838506600015],[-97.45498568499988,71.62660043300014],[-97.14803662199995,71.68817756200019],[-96.91480255399995,71.81847629400005],[-96.7216276289999,71.80602068500002],[-96.51512576899984,71.84786793300003],[-96.45148786099998,72.031492657],[-96.72890494299992,72.02975814100006],[-97.34837538099998,72.00429287400004],[-97.90367491699999,72.07146828700007],[-98.13843022799989,72.2695887700001],[-98.02510037299999,72.38985458500008],[-98.28061805399994,72.5220826060002],[-98.30130569799996,72.6113209190001],[-98.43236864299996,72.64736316000017],[-98.80819379899992,72.63188455700015],[-98.8985502409999,72.72407594100008],[-98.43541527699995,72.84019747400015],[-98.407867636,72.87427556200015],[-98.42987026099996,73.02100570400017],[-98.341651631,73.03921669600004]]],[[[-113.93018846799998,73.14706740600013],[-114.12246703899996,73.29409485400004],[-114.49608324899992,73.37336453600017],[-114.67724241599996,73.36967869500012],[-115.41341487199986,73.21758721000015],[-116.52419308299994,73.0544797340001],[-116.80502951199992,72.97644136300016],[-117.32086875499994,72.91562272200014],[-117.606180124,72.77736721100013],[-118.10721627899994,72.64325892200009],[-118.52722796799998,72.47127399700008],[-118.44775720399991,72.35591738800008],[-118.09452868199998,72.32711871200007],[-118.0795544099999,72.24090584400011],[-118.42946793599992,72.18463070800004],[-118.64405329499994,72.12231534000011],[-118.73319820899997,72.04322887600006],[-119.0402703879999,71.91801682600004],[-119.12256593199993,71.78969874200004],[-119.06768974999989,71.66698696000014],[-118.47888100399985,71.65889860100015],[-118.31448522299996,71.58209698200017],[-118.03222042199991,71.67347252400009],[-117.96946913399995,71.55313195100018],[-118.30444925999984,71.47011361200009],[-118.24698863799995,71.39971222900004],[-118.00537207099995,71.37570834200017],[-117.50371344999996,71.38484201600005],[-116.88580755299989,71.43308481300011],[-116.29065412699987,71.50824119900011],[-115.78721566099995,71.49526143300011],[-116.11368161299987,71.42868033600013],[-116.14883597999994,71.37644838000011],[-116.75279300099999,71.29787225500007],[-116.84321121,71.25103975800016],[-117.81012045399996,71.16463769400019],[-118.40649313999995,70.99828253900006],[-118.19644434399999,70.84803028300018],[-117.76318254799992,70.72449405600014],[-117.67947938799995,70.6311182280001],[-117.39423046699994,70.57572114800007],[-117.23494395299991,70.61407820300019],[-116.70868316599996,70.6024257000002],[-116.12423391999988,70.63391176700003],[-116.024254843,70.57017787100017],[-115.71934440999996,70.60427273600004],[-115.08123865599998,70.59793600100005],[-114.4903289269999,70.64542111300005],[-114.331792899,70.68306207900014],[-113.95278972699992,70.71402454800005],[-113.50511120399989,70.66004168600011],[-113.19439433899998,70.64160719500012],[-112.9133427409999,70.56289242600019],[-112.66477064899988,70.56207461399998],[-112.08000051199991,70.48895597100017],[-111.99393686099995,70.38321164500007],[-111.5109859449999,70.35357632900013],[-111.65579084899997,70.27208001200006],[-112.17721973,70.27772152000017],[-112.53090706399996,70.20143114700011],[-113.31024236899992,70.2843094540001],[-113.63266168999996,70.26789171600007],[-113.97918844499998,70.28274434000014],[-114.19334226399997,70.32034016400007],[-114.46566318899988,70.32356353900019],[-116.11880234599988,70.21680652000009],[-116.94235354699998,70.12879393500003],[-117.31036598599985,70.05641020600001],[-117.40432878899998,69.98691867100007],[-117.22196234299997,69.75477623199998],[-116.83453662199992,69.64645365200016],[-116.85391266999994,69.57538153500013],[-116.56668728099999,69.55162004200008],[-116.57954903499996,69.44752294000006],[-116.49245522399991,69.40439003700004],[-115.94406673999998,69.29891451600008],[-115.47073691999992,69.257685359],[-115.1403097729999,69.25010877400007],[-115.01907368999997,69.2871528840002],[-114.65415508299998,69.26691853000005],[-114.38023579299988,69.29251911400013],[-113.62184939799982,69.19990330700017],[-113.5658883019999,68.9517868280002],[-113.66455553299988,68.89666387500017],[-113.5636694189999,68.7641526600001],[-113.42457875499997,68.69403184000004],[-113.36642836399994,68.60617665200004],[-113.07288850699996,68.54279230300006],[-113.19152760399987,68.458156717],[-112.33481773799991,68.50140039600018],[-112.09651095999999,68.53538426600005],[-111.67718997499992,68.5486657780001],[-111.18946734999997,68.52064385900013],[-111.09782427399995,68.58496707000006],[-110.915936021,68.55318480200009],[-110.59088632699996,68.62121562700014],[-110.40296906299994,68.60698969800018],[-110.1623176089999,68.64085290100013],[-110.02674810399998,68.62018209399997],[-109.70727411499996,68.63450495500012],[-109.39985588299999,68.69606717400006],[-108.92578422899999,68.74960750500003],[-108.52345478399997,68.8923400220001],[-108.53647185299997,68.94396743100009],[-108.09935307599994,68.93917956000013],[-107.51291318999995,68.97870626200012],[-107.29117236599996,69.03395641500003],[-107.106844019,69.16204124800015],[-106.90896557799988,69.24551340500011],[-106.97628931899999,69.34003671500005],[-106.75310145199995,69.37828271300015],[-106.62363998499995,69.49141157400004],[-106.46905942199987,69.47297326800015],[-106.32679398599998,69.38680062200012],[-106.25472140799997,69.28399711900016],[-106.39110016099988,69.17587269700016],[-106.14706237499996,69.14917786500013],[-105.84405983099992,69.18049750000011],[-105.57984289199999,69.15769859400018],[-105.07860575499996,69.0618095530001],[-105.02564795399985,69.00100947800007],[-105.24498996199998,68.96510442100015],[-105.12502318199995,68.89622242500008],[-104.64230865499997,68.85999278800011],[-104.43617892899994,68.94468998300016],[-104.10421918499986,68.85749619400013],[-103.94483921899985,68.8807339670002],[-103.60832234299988,68.82193307100005],[-103.13473950399998,68.8529389090001],[-102.99265164199994,68.80734334800002],[-102.7890883199999,68.84144820000012],[-102.71326635399993,68.91097062500018],[-102.47981908799989,68.88026990500015],[-102.37081685599992,68.93406271700019],[-101.80700786399996,69.00317477900006],[-101.72370653699994,69.16743239000016],[-101.89690196699996,69.25182504200018],[-102.03989550699998,69.26161892400012],[-102.07225632899991,69.34156483800012],[-101.91485760699999,69.41400676100011],[-101.97246697499997,69.46728972500017],[-102.28503751599993,69.51267406700009],[-102.57562432799995,69.4280344460002],[-102.9694604209999,69.41571525000018],[-102.99812060099998,69.50343810400017],[-103.18288107399991,69.57776929800008],[-103.48719159299998,69.64456020000017],[-103.31022405799996,69.70865971400008],[-102.92270125199985,69.56145965500019],[-102.58543972399985,69.54864394000003],[-102.48945723699995,69.57416383700013],[-102.51361966099995,69.70150203200012],[-102.21730459999992,69.8551807450001],[-101.98752205599999,69.81812169000011],[-101.64658887999997,69.69340776300015],[-101.4263117289999,69.79751570100018],[-101.25613363199994,69.67121776100004],[-101.05098956699999,69.66230440000015],[-100.89950461399997,69.70169533600011],[-100.84674439499986,69.88967930500013],[-101.00822679499993,70.21041642200004],[-101.41111337399997,70.14404085600006],[-101.60268072999997,70.17068703400014],[-101.67058636199988,70.32003653600015],[-101.87731514799998,70.27120667800011],[-102.26422138799995,70.39681496400004],[-102.83900898799999,70.54419170800008],[-102.8090854649999,70.60399286900008],[-103.01351776099995,70.68822411800016],[-103.28787481099994,70.6126749460002],[-103.53707663699993,70.61060168800003],[-103.8252005189999,70.75886267000004],[-103.98618260899997,70.76849040500002],[-104.08130408599993,70.91598631100015],[-104.39294923199998,70.99499616000003],[-104.63466394699998,71.13302478000003],[-104.43557638699991,71.26772382400003],[-104.50646847899992,71.34541304700002],[-104.35547383499988,71.3748831870002],[-104.38965604999999,71.54095584700008],[-104.33728144699984,71.59645423800009],[-104.51893351199993,71.74091135800012],[-104.84132028099987,71.90273070900008],[-104.88196932299991,72.0457331180001],[-105.09717759099993,72.33982190900014],[-105.21854718299994,72.3969876760001],[-105.21856384999995,72.53798902199998],[-105.41699315599993,72.69905881500011],[-105.29163546199993,72.72982964400018],[-105.4889712289999,72.87679033500012],[-105.76160964399998,72.97087714900005],[-105.8096530819999,73.03179439000019],[-106.06772519999993,73.06068790900014],[-106.70666069699996,73.27426713700004],[-106.99981540999988,73.28845138700018],[-107.19414741799994,73.20178042400005],[-107.59100694299997,73.31732074000007],[-108.02833023799985,73.342470956],[-108.03301463999992,73.23652229100003],[-108.24951399499992,73.11976868300013],[-108.000935455,72.76760425900005],[-107.987798608,72.62893723899998],[-107.84206178599987,72.58541916900015],[-107.81643198999996,72.36692582100011],[-107.72001576899999,72.29224870800005],[-107.74491242699997,72.13741298800016],[-107.59324918099992,72.08826657800006],[-107.57509472899983,72.00855738700005],[-107.27800278199999,71.90986339900013],[-107.48571190899992,71.86818781900018],[-107.64476229699994,71.73531667800012],[-108.0333235889999,71.71839755100012],[-108.30987110399997,71.80286518400015],[-108.19969826399995,71.96400899100018],[-108.38284755099994,71.99714943600003],[-108.36364487299988,72.07089025200008],[-108.63830262499988,72.3361063480001],[-108.5452251029999,72.49780500500003],[-108.65000578899998,72.6182411320001],[-108.99185193699998,72.57533583000014],[-109.05790920399994,72.73564870600006],[-109.33100024899994,72.76948203900014],[-109.59831850799992,72.84607679800007],[-109.63929672199993,72.9312389860001],[-110.25795272599993,72.99709004400006],[-110.6642297329999,72.99530557500009],[-110.70044805599991,72.93479128300015],[-110.53320354099998,72.85621387300006],[-110.16052566399998,72.8117074610002],[-110.19105012899996,72.709062179],[-109.90040852999994,72.59116029800009],[-109.77231158799998,72.49516459600017],[-110.00987817999993,72.43564762200015],[-110.29669609899997,72.55020482100008],[-110.47911717999995,72.51541257500014],[-110.72371665999998,72.55776269900014],[-111.04824897899994,72.40172705700007],[-111.41943303299996,72.50906034700017],[-111.17655871299996,72.624232458],[-111.1854550239999,72.72295325300007],[-112.014175121,72.88801566300003],[-112.35771106399989,72.91264596500014],[-112.47905703499998,72.95123199900013],[-113.035841012,73.00859979800003],[-113.3613312089999,72.90901853200012],[-113.56163743399992,72.75338241100019],[-113.80101027599994,72.64049619700018],[-114.02174405899996,72.65110901700007],[-114.34333498399991,72.5587382220001],[-114.54638878599997,72.61845287199998],[-114.31151138899992,72.69707551100015],[-114.20018461599989,72.79901965700003],[-113.97797991899989,72.80481160699998],[-114.01921595399995,72.96148429200008],[-113.93018846799998,73.14706740600013]]],[[[-92.76533945199998,72.74791676500018],[-92.84882394999994,72.82609897900005],[-93.20057701499996,72.911358479],[-93.36837784299996,73.04755185200014],[-93.61060340899985,73.06732296600012],[-93.73506150899993,72.98830474600004],[-94.03061638799994,72.99171021600006],[-94.21627049199998,73.05224295300002],[-94.22585236499992,73.23654690500013],[-94.29579943199991,73.3395692200001],[-94.45517709299997,73.3854547580001],[-94.76075042199983,73.55640727300005],[-95.48456539299991,73.69865310300008],[-95.58111110499988,73.74850385500008],[-95.69144390099996,73.64057815000012],[-95.60564629999999,73.61061808700003],[-95.66666625599987,73.47190338700011],[-95.57260997199984,73.18024826100009],[-95.65613552699995,73.07775154300015],[-95.65395582599996,72.80046275000012],[-95.60453297599997,72.71765712600018],[-95.31302849699989,72.62107936100017],[-95.30586207699997,72.54533569000017],[-95.11943807599994,72.46605021000016],[-95.188716232,72.41989948200006],[-95.196892672,72.00012326500013],[-95.12129818199998,71.9776278],[-94.47652848699994,72.02134066999997],[-94.07822630099997,71.98999790900007],[-94.00596342199992,72.15924877200013],[-93.81276434199992,72.3090605660002],[-93.6127915919999,72.3453031620001],[-93.4429371629999,72.47028393600016],[-93.50349655599996,72.54520283200003],[-93.85506727999996,72.70192421600018],[-94.29211400099996,72.770663345],[-93.63031495699994,72.78221195900005],[-93.33292260599984,72.80457861600019],[-92.76533945199998,72.74791676500018]]],[[[-105.07219257999992,73.74779813500015],[-105.53033824999994,73.76592615400017],[-105.66859147499997,73.73349507900008],[-106.26194784399996,73.72847008900015],[-106.62377107999998,73.68630764400012],[-107.0022864309999,73.4647949190001],[-106.74753519899991,73.4560638440002],[-106.41936048499986,73.39582401200005],[-106.16043413099993,73.28179417700005],[-105.72708085799997,73.04434758200006],[-105.50213422499996,72.97602759900019],[-105.23428243299998,72.93824469400016],[-104.99330230399988,73.0042795870001],[-104.51639097999998,73.34778353300004],[-104.44385702399984,73.53516506200009],[-104.51242751399997,73.5957026210001],[-105.07219257999992,73.74779813500015]]],[[[-121.02245732799992,74.47636125500014],[-121.11365218299989,74.52362928800005],[-121.46149089399995,74.55560464400014],[-121.76200264499994,74.54742450200013],[-122.29094713899991,74.47601857600011],[-123.18384838699995,74.45186860500007],[-124.029000651,74.40697024700006],[-124.70675534599997,74.35236225600005],[-124.50733869599992,74.25100892900014],[-124.36694990299998,74.02940694300008],[-124.10049187599992,73.85468768700008],[-123.81177861199996,73.81963633300018],[-123.86278723099991,73.70507346400012],[-124.04949958399993,73.66423334500007],[-124.07900312699991,73.52348113000005],[-124.28879584699996,73.49277507200014],[-124.51530941899995,73.3287996160002],[-124.5576760109999,73.23918104400019],[-124.81479528099999,73.10884622600014],[-124.79570565799992,73.03013076200006],[-124.54878845699989,72.99616072400005],[-124.455340278,72.93742907600017],[-124.72249150699997,72.88866629300009],[-125.0484798359999,72.88799193100004],[-124.95339936999994,72.67884775700014],[-125.0559028799999,72.56471386600003],[-125.31597430999989,72.48014502199999],[-125.5217314059999,72.28629963800006],[-125.63026131899994,72.26205776400013],[-125.72682836599989,72.11591036100015],[-125.74020721799991,71.953007264],[-125.24856136299996,71.98162494500008],[-125.06296861399994,71.90211306900017],[-124.59456059099989,71.7856976290002],[-124.05369621999989,71.697142401],[-123.88978648699998,71.62306857400017],[-123.80679727699993,71.52823260800011],[-123.61558668799995,71.4889869380001],[-123.42268480999991,71.21897048200009],[-123.08579716299994,71.08036387500016],[-122.78679003399992,71.08150388700017],[-122.49507227799995,71.20849530900011],[-122.02829363899997,71.30105894200005],[-121.90178011999996,71.3931042320001],[-121.5595878449999,71.46055765200009],[-121.32075902799994,71.3800897960001],[-120.72581211199991,71.47122060700013],[-120.49178980999994,71.54894973400008],[-120.37580769999994,71.70239591600011],[-120.44702936399995,71.74023729100003],[-120.44085348899995,71.93564965000002],[-120.15855589599994,72.09340524200013],[-120.1217953979999,72.1630366070001],[-120.25216604199983,72.24080663500013],[-119.77904432999992,72.21983362500015],[-119.31350341699994,72.38742319700015],[-119.15032404899989,72.6230687060002],[-118.35189786299992,72.82560100100005],[-117.93489841599995,72.90494120900019],[-117.46695469599985,73.03129654000003],[-117.22136941999986,73.05460179400006],[-116.64047319399998,73.215205605],[-115.89170476099997,73.32281569300011],[-115.45573218899983,73.42042364600007],[-115.3358682299999,73.54809548700013],[-115.89711884699994,73.73051092600019],[-116.60592846099996,73.99893220100012],[-117.38938279599995,74.226068156],[-118.06624420499998,74.28049407200018],[-118.81525003899998,74.18730097400015],[-118.76572101999989,74.12115704400014],[-118.92700455099992,74.00939606700013],[-119.067581411,74.20154905099997],[-120.07524344799998,74.27482152700003],[-120.91397093699999,74.43229283900007],[-121.02245732799992,74.47636125500014]]]]},"properties":{"objectid":439,"eco_name":"Canadian Middle Arctic Tundra","biome_num":11,"biome_name":"Tundra","realm":"Nearctic","eco_biome_":"NE11","nnh":2,"eco_id":414,"shape_leng":747.747576894,"shape_area":218.913626425,"nnh_name":"Nature Could Reach Half Protected","color":"#6DB5DE","color_bio":"#9ED7C2","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":981098.7454732696,"percentage":11.48134455306741}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-78.99626549899995,33.57852898800013],[-78.79597528299996,33.75521572200017],[-78.54033884799992,33.87651575700011],[-78.17164782999993,33.92948850800019],[-78.02294778499993,33.91581578300014],[-77.88062956599993,34.05692491000019],[-77.84267501499988,34.18144312000004],[-77.70063861699998,34.344070434000116],[-77.60649313599998,34.40581590500011],[-77.28182031799997,34.565015951000134],[-77.11816572899994,34.686706892000075],[-77.09104753799994,34.67286143600006],[-76.90287475599996,34.726679635000096],[-76.71894742699999,34.71812509400007],[-76.72644743199999,34.78377056300013],[-76.51560190999993,34.71807964600009],[-76.41417461299994,34.85017058800008],[-76.31449276699993,34.903234239000085],[-76.50862010199995,34.984297886000036],[-76.62959286699993,34.98940697500012],[-76.76144744899989,34.91616149900017],[-76.81972928799996,34.97111605500015],[-76.71183834699991,35.00467970300008],[-76.59704740699982,35.07337063100016],[-76.48222919799991,35.2474252180001],[-76.50086556999997,35.30546159300013],[-76.71878382199992,35.374861602000124],[-76.70991109499988,35.42888888599998],[-76.49382011699998,35.379534337000166],[-76.43049282599992,35.40668889099999],[-76.20214729899993,35.338134338000145],[-76.1125563629999,35.35433434400011],[-76.01308360799999,35.42371618100003],[-75.91880176799992,35.562643487000116],[-75.81792900999989,35.5718344010001],[-75.73045625899994,35.626543507000065],[-75.72589262899999,35.806043546000126],[-75.78421992699992,35.93441630000018],[-75.85758358599998,35.94557993600017],[-75.98601089499994,35.88888901100012],[-76.00488361799995,35.67705260000008],[-76.05969272699997,35.708461696000086],[-76.06534727999991,35.83739808800004],[-76.01256545099989,35.924807199000156],[-76.06234728799996,35.99089812099999],[-76.27224735099998,35.97205265500003],[-76.39876557299988,35.98274356200005],[-76.52344742699984,35.945416278000096],[-76.66357474199998,35.93244354300009],[-76.67433838799991,36.04397993100014],[-76.57997472099993,36.01082538100013],[-76.4603292299999,36.02510720600014],[-76.41188376299993,36.07987085600013],[-76.23957461999998,36.099834502000135],[-76.07185638799996,36.14069815300019],[-76.02150182999998,36.19010725600009],[-75.90591997699988,36.206407263000074],[-75.89911089099996,36.326552744000026],[-75.99572910699999,36.410625486000185],[-76.04557457999994,36.503807323000046],[-75.9838472919999,36.55056188000009],[-75.99292002599998,36.635252808000075],[-75.93649273899996,36.71537100800009],[-75.9901927659999,36.911707412000055],[-76.09498370899996,36.9085710440001],[-76.26593830999997,36.963934686000016],[-76.35191105899992,36.884689212000126],[-76.65659297999991,37.04073468900003],[-76.67193844399998,37.14143470900018],[-76.76505124199997,37.1699288260001],[-76.82944708299993,37.13788541800005],[-76.97901818999998,36.91672917200009],[-77.09699888299997,36.82103921000004],[-77.12638872399992,36.69573727700015],[-77.17948515199998,36.62525979600014],[-77.07392084499998,36.533228711000106],[-77.07141556399989,36.37186524900011],[-77.41570052599997,36.39294058300004],[-77.53821741299993,36.38626192700008],[-77.3132494269999,36.241118715000084],[-77.27051549499993,36.155807807000144],[-77.38859391599988,36.078482106000024],[-77.42608467399992,36.013421268000116],[-77.4026819909999,35.854318929000044],[-77.44977953699998,35.768182543000194],[-77.44070117599995,35.70364961900009],[-77.49698161899994,35.632397401],[-77.4073062359999,35.478439742000035],[-77.42244211899998,35.351973894000025],[-77.5077975449999,35.21173957100001],[-77.63029769199989,35.162904296000136],[-77.6120352179999,35.09219446500009],[-77.67529154699997,35.05075332300015],[-77.72047965799999,34.95084362200015],[-77.8539646829999,34.95944660100008],[-77.968886162,34.91757362300012],[-78.23541810299992,34.72642194600019],[-78.42913559199991,34.748625178],[-78.55364681099996,34.86688248300004],[-78.7711040879999,35.01634925300016],[-78.79512406299995,34.86055601800018],[-78.75611687099996,34.75984854200016],[-78.60849384499988,34.64701846100007],[-78.46994681299998,34.568460434000144],[-78.43527936899994,34.50183599900009],[-78.49738847999998,34.41328385800011],[-78.64534095499994,34.32295002],[-78.73507091799996,34.19438440000016],[-78.85038030399988,34.11528548600012],[-79.0651761229999,34.14949878900006],[-79.15808145699998,34.21852856400017],[-79.27539272399991,34.12067097500011],[-79.34035975699999,34.02195512700001],[-79.4511554049999,34.054864247000125],[-79.51751294899998,34.01426103500006],[-79.65964219499989,34.042750986000044],[-79.82393437199994,34.147232585000154],[-79.96607035599993,34.096479331000126],[-80.13142139799999,34.08975369300015],[-80.15468251899995,33.94828530800004],[-80.19216121699998,33.90213649100002],[-80.1158048499999,33.7989085480001],[-80.17837601399998,33.69992279000007],[-80.1255334999999,33.67780023900008],[-80.1815087839999,33.52063464700012],[-80.16809257499989,33.39093882600008],[-80.33180231799997,33.37991371100014],[-80.45339660499997,33.42855730500003],[-80.52813751199994,33.40540575900013],[-80.69626099699997,33.44991514200018],[-80.80796236299989,33.451058227000146],[-80.95671958499992,33.393809573000055],[-81.11072488899987,33.25044370400013],[-81.14803664499993,33.17586274700011],[-81.14139486999989,33.046009542000036],[-81.21507399399997,32.98501951500003],[-81.43150402999999,32.88669592100007],[-81.37303031799996,32.722711785000115],[-81.28755992599986,32.597098440000025],[-81.13849701799995,32.49503406600019],[-81.10905892399995,32.25258794700005],[-81.00633626199988,32.17709823300004],[-80.87292250299998,32.27555233100014],[-80.89462599499996,32.36456577000007],[-80.88784082299998,32.59794602700009],[-80.69331108599988,32.55122160800005],[-80.6429663369999,32.66061682500015],[-80.56451962299991,32.67827499400005],[-80.59251113899984,32.75152073200019],[-80.39332622699999,32.69005208100003],[-80.21332639499997,32.73660926100018],[-80.16168885599996,32.82936660000013],[-79.96598553499996,32.9445906200001],[-79.9778595439999,33.026410906000024],[-79.93576385099988,33.11083000900004],[-79.8543245649999,33.02411245000013],[-79.87479397499999,32.92222032700005],[-79.7584535279999,32.96815951100018],[-79.69651745099998,32.96072446200009],[-79.55163836799994,33.06507186800019],[-79.45281296099995,33.2306607750001],[-79.37072668499997,33.230458755000086],[-79.33089045999992,33.330227447000084],[-79.42786417099995,33.36789044600016],[-79.19123416299993,33.48495336800005],[-79.11302240299995,33.556732997000154],[-78.99626549899995,33.57852898800013]]],[[[-76.49419807299995,37.2256247950001],[-76.6291725079999,37.205683218000104],[-76.62544751999997,37.127061981000054],[-76.4653565559999,37.028389238000045],[-76.42987472299995,36.97028922800018],[-76.29460195799999,37.03024379000004],[-76.27020195299991,37.08751653000019],[-76.37444744299995,37.15002563100006],[-76.4224020069999,37.220689280000045],[-76.49419807299995,37.2256247950001]]],[[[-76.49646220399995,37.24915598400008],[-76.39479291099991,37.2655802000001],[-76.41362019399998,37.33926203300007],[-76.49861861999995,37.4021380640001],[-76.49646220399995,37.24915598400008]]],[[[-76.49123566399993,37.41571928700017],[-76.38579291499997,37.38481658899997],[-76.29674742799995,37.32328021500018],[-76.24872014399995,37.37474386400015],[-76.27933834099997,37.47334388400003],[-76.43221111999998,37.512646792],[-76.49123566399993,37.41571928700017]]],[[[-76.41790160899995,37.63955896300013],[-76.35842928199997,37.6190530020001],[-76.32641109699995,37.73188030000006],[-76.23674744199991,37.88865306300005],[-76.41887477499989,37.96811670900007],[-76.53568390899994,38.07336218100011],[-76.70060214699998,38.16016219300013],[-76.72725429499991,38.10214647700013],[-76.59775096199996,38.068696110000076],[-76.56335238099996,37.99353312100004],[-76.3498820129999,37.90760232200006],[-76.32572675199998,37.863272649000066],[-76.40526891199994,37.66097500500018],[-76.40981018099995,37.65401387999998],[-76.41037616999989,37.652984059000175],[-76.41084308199999,37.65219846100018],[-76.41790160899995,37.63955896300013]]],[[[-76.55774177199999,38.38485341700016],[-76.58331603399995,38.38844826800016],[-76.56271120699995,38.38545995200019],[-76.56148822699998,38.38536514400016],[-76.55774177199999,38.38485341700016]]],[[[-76.85988262099994,38.30804976600007],[-76.98610998799995,38.379197647000126],[-77.02189517699998,38.45718110900003],[-77.15134644499994,38.441420951000055],[-77.20384105499988,38.357548701000155],[-77.11768228199998,38.34319217100011],[-77.02700253899997,38.26970420200007],[-76.97723860799994,38.35475313200004],[-76.85988262099994,38.30804976600007]]],[[[-76.6017244059999,38.45769156900019],[-76.63256856199996,38.56415633000006],[-76.69275047199994,38.54435264300014],[-76.6017244059999,38.45769156900019]]],[[[-76.55396103899989,38.75307110100016],[-76.49006575799996,38.84272597600011],[-76.55016530699999,38.87584812800009],[-76.55396103899989,38.75307110100016]]],[[[-76.40931863999998,39.03041113800015],[-76.41083807099994,39.030551893000165],[-76.46227323799997,39.011083678000034],[-76.40298774399992,39.029752807000136],[-76.40931863999998,39.03041113800015]]],[[[-76.08568351399998,39.53960794900007],[-76.08572491499996,39.53991234500006],[-76.34739301899987,39.39960599500006],[-76.28859299499999,39.31693517000019],[-76.06046565899993,39.44944429599997],[-76.0856333989999,39.53923948400006],[-76.08568351399998,39.53960794900007]]],[[[-75.84299109599988,39.580578743000046],[-75.89408379199995,39.50424431300013],[-76.04984746999997,39.37064428000019],[-76.18558387299993,39.31934426600003],[-76.27852025499993,39.145807864000176],[-76.13660202599993,39.098653314000046],[-76.16444748299995,39.000116929000114],[-76.2351747749999,38.94199873300016],[-76.16116565699997,38.87941690500003],[-76.22602021899996,38.82018961700015],[-76.30171115199994,38.826198707000174],[-76.33842025099995,38.76050778300015],[-76.15561109599997,38.65808958700012],[-76.25992930899997,38.61436230200013],[-76.21260201499996,38.51459864700013],[-76.33223841399996,38.47473499800003],[-76.28392021299999,38.415671352000174],[-76.09974742199995,38.292062241],[-76.00439284599997,38.29619861000003],[-75.86140188899998,38.23273496500002],[-75.84426551199994,38.07228038700009],[-75.89895643299997,37.97452581900012],[-75.82432004299994,37.938471269],[-75.71315637399994,37.97663491700001],[-75.68067454099992,37.888743991000126],[-75.73255636999988,37.7850621500001],[-75.8121563919999,37.749507594000136],[-75.89313823099997,37.645543933000056],[-76.01531097899993,37.330025681],[-76.01327460799996,37.20578929100009],[-75.94070185399988,37.13485291500001],[-75.89485639799994,37.359871146000046],[-75.75312908899997,37.50715300000019],[-75.60889269099988,37.707062138000026],[-75.53344721699989,37.78295306500013],[-75.50013811999992,37.86993490200001],[-75.22407441899992,38.2433986260001],[-75.15185621399996,38.246862266000164],[-75.04938346599988,38.44419867300002],[-75.06250165999995,38.58196233800004],[-75.12751986399996,38.63379871000018],[-75.07768348799993,38.69414417799999],[-75.09660168199991,38.79053510700004],[-75.18294716399993,38.801871469000105],[-75.3016835709999,38.91148057900017],[-75.34171086299995,39.021116963000054],[-75.40238361099995,39.06746242500003],[-75.39473816299994,39.204189725],[-75.4370200009999,39.3114170180001],[-75.49462002099995,39.346726114000035],[-75.46571092699998,39.439098861000105],[-75.29049268099999,39.29191701900004],[-75.10208352599989,39.21360791899997],[-74.90161982399991,39.174717009000176],[-74.83565676599994,39.122802237000144],[-74.77893226699996,39.21323173900015],[-75.01537559199988,39.38525462400003],[-75.04929506799994,39.29528831800019],[-75.1515966099999,39.311613407000095],[-75.25409144299994,39.38688830600006],[-75.38276751899997,39.426832038999976],[-75.41531938299994,39.51000737800007],[-75.42505217399997,39.69115973700008],[-75.33266802299994,39.780807939000056],[-75.20584781399998,39.81174211100017],[-75.10613744999995,39.87212216400013],[-75.09463294499983,39.95672517200012],[-74.81465038999988,40.07277505900015],[-74.70134288099996,40.159054403000084],[-74.78287653599989,40.22460114900008],[-74.95669889199996,40.07910066800014],[-75.14438499999989,40.002912341000126],[-75.23870081399997,39.92022033000006],[-75.5364883719999,39.76378644100015],[-75.70958220699998,39.68764801400005],[-75.84299109599988,39.580578743000046]]]]},"properties":{"objectid":440,"eco_name":"Mid-Atlantic US coastal savannas","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Nearctic","eco_biome_":"NE08","nnh":4,"eco_id":393,"shape_leng":169.834436683,"shape_area":7.82104951821,"nnh_name":"Nature Imperiled","color":"#FBB04B","color_bio":"#FEFF73","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":78645.59422456461,"percentage":0.7422688457222121}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-83.52381156299998,13.711197065000079],[-83.60997065499993,13.66435530200016],[-83.5306625959999,13.541028505000043],[-83.52381156299998,13.711197065000079]]],[[[-83.55552650599998,13.936330123000118],[-83.66827349699997,13.919065414000045],[-83.70689361899991,13.850583756000105],[-83.78955862999999,13.782056333000128],[-83.75145751599996,13.736245544000042],[-83.62264258399983,13.732556836000015],[-83.58186361899993,13.800179349000075],[-83.55552650599998,13.936330123000118]]],[[[-83.96789552299998,13.8988258],[-83.96735354899988,13.991855538000038],[-84.03543052799995,14.000424860000123],[-84.05261963199996,13.873488480000049],[-84.11133553499997,13.868112663000147],[-84.25090763399993,13.936413271000049],[-84.32827762899984,13.90178159400017],[-84.18984965999994,13.686625851000088],[-84.20822865899999,13.451374495000096],[-84.28339354399992,13.263245863000122],[-84.22190859599988,13.195530479000126],[-84.14252459699998,13.221526784],[-84.0764155199999,13.18903383300011],[-84.01105461299994,13.225647494999976],[-83.94229165799999,13.203789168000185],[-83.89347863899997,13.133402806],[-83.85526252499989,12.99921390100019],[-83.72394559499992,12.97158647700013],[-83.59568755599997,12.8937318400001],[-83.5501865629999,13.046376523000163],[-83.57122765399993,13.224519626000188],[-83.60920756599995,13.344614697000054],[-83.54615050899992,13.493950538999968],[-83.67843655499985,13.548000069000068],[-83.63032560399995,13.594479901000057],[-83.67065462799997,13.69778618700019],[-83.77540561899991,13.677080371999978],[-83.80283355299991,13.730211915000098],[-83.8923034959999,13.760687844000017],[-83.96789552299998,13.8988258]]],[[[-84.45315558199991,15.491793759000188],[-84.64995562699988,15.432453573000032],[-84.67388964899993,15.365978878000135],[-84.51242049899997,15.39272419000008],[-84.45315558199991,15.491793759000188]]],[[[-84.2538754979999,15.179020192000166],[-84.18253359999989,15.230922781000174],[-84.14800250599995,15.364521936000187],[-84.24954959799993,15.44482308300013],[-84.32247953199999,15.585621789000186],[-84.39169359999988,15.439361435000137],[-84.44905850699996,15.419368416000168],[-84.56829057699997,15.24780644800012],[-84.58280954199995,15.120872750999979],[-84.44265758299997,15.117693998000163],[-84.38800053399996,15.166257739000116],[-84.2538754979999,15.179020192000166]]],[[[-84.48004958799999,15.74201502700015],[-84.53447764399988,15.740273100000024],[-84.58997355499991,15.494312689000083],[-84.49256159099997,15.511024695000117],[-84.4112626619999,15.602143862000048],[-84.40074152899996,15.723758068000109],[-84.48004958799999,15.74201502700015]]],[[[-84.11525759499995,15.655967415000191],[-84.19517552099995,15.615558930000134],[-84.22566251499995,15.547180369999978],[-84.13285858599988,15.51604227000007],[-84.0747225429999,15.565244042000131],[-84.06099650599992,15.43141187000009],[-84.11619552999991,15.435146511000085],[-84.1438216119999,15.228303771000185],[-84.22107660799998,15.106622845000118],[-84.16499362899992,15.088737875000163],[-84.1235196369999,15.014356698000142],[-84.17884053299997,14.959812302000103],[-84.43830854899994,14.857878971000162],[-84.5698546399999,14.910904232000178],[-84.6498795199999,14.868295162000038],[-84.70918265799992,14.79514092900007],[-84.59369662899996,14.772665526000026],[-84.54756162799993,14.706927600000029],[-84.4173355179999,14.63795208100015],[-84.19252063699997,14.705960832000187],[-84.18370857499997,14.597656752000034],[-84.13954164499995,14.509987409000132],[-84.02463564299995,14.419068570000036],[-83.89112852099987,14.390631455],[-83.82697259599996,14.32291774700019],[-83.66105651099997,14.011438178000049],[-83.54293051699995,14.00690742400019],[-83.50888054399996,13.917375622000066],[-83.45771053399989,13.915898563000155],[-83.41541259999991,13.997090371000183],[-83.32263163799996,14.098370584000065],[-83.35754360499999,14.156483827000045],[-83.33113859899998,14.250810413000067],[-83.26123855499998,14.20388751300004],[-83.29141256899999,14.495603393000124],[-83.35438563999998,14.49322175900005],[-83.39160162499996,14.746177203000116],[-83.45713754699989,14.757885381000051],[-83.50232656599997,14.866084184000044],[-83.64833060199993,14.864544261000106],[-83.82424965099989,14.788068279000186],[-83.82632450699998,14.8458777620001],[-83.71302062199999,14.96095106700011],[-83.61043551499995,15.102592993000087],[-83.65659365,15.184943516000146],[-83.74927553899983,15.127038311000149],[-83.86325852599998,15.02060222200015],[-83.87602952899988,15.0896977700001],[-83.75870551499997,15.20002859400006],[-83.63229350699999,15.276936579000107],[-83.60580451399994,15.323215749000099],[-83.89132650199991,15.462296669000125],[-84.11525759499995,15.655967415000191]]]]},"properties":{"objectid":445,"eco_name":"Miskito pine forests","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Neotropic","eco_biome_":"NO07","nnh":3,"eco_id":573,"shape_leng":19.9591953876,"shape_area":1.58025988017,"nnh_name":"Nature Could Recover","color":"#FBA769","color_bio":"#FEAA01","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":18965.070421638215,"percentage":0.08846054610649742}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[147.0357378880002,-25.650833866999903],[146.93316621500003,-25.59457021299994],[146.72220296600005,-25.632063052999968],[146.5781617240002,-25.80460605399992],[146.58013237600017,-25.848994626999968],[146.5239282990001,-25.987385825999922],[146.54634753100015,-26.029283429999964],[146.42136475100006,-26.133866544999876],[146.70299134100014,-26.123472696999897],[146.79500759200005,-26.053972407999936],[146.91800065600012,-25.915971697999964],[146.8937577900001,-25.837931770999944],[146.9907359990001,-25.78844387999993],[147.0357378880002,-25.650833866999903]]],[[[142.17051014800018,-20.066133682999975],[142.10299953400022,-20.0684780549999],[142.0859350720001,-20.242182106999905],[142.17051956400007,-20.247598376999974],[142.25921109100022,-20.33712799199992],[142.33225600700007,-20.485328119999963],[142.5096038470001,-20.544811249999952],[142.5892462610002,-20.61657995099995],[142.84909910300019,-20.63171206699991],[142.91440226700013,-20.58002179899995],[142.87107873300033,-20.452453385999945],[142.70378531000006,-20.40676737899986],[142.58864147200018,-20.245993590999888],[142.50974393800004,-20.27617800199988],[142.44340181500013,-20.160466741999926],[142.31618106900032,-20.131624082999906],[142.2313413530003,-20.070344451999972],[142.17051014800018,-20.066133682999975]]],[[[134.3132934040001,-17.645765352999945],[134.24029540900005,-17.455333708999945],[134.1318511840002,-17.35954280499982],[133.95249941100008,-17.304367082999875],[133.91044639700021,-17.34748644399997],[133.89750691700033,-17.4563465789999],[133.7552184110001,-17.519859443999962],[133.65498358900015,-17.525028227999883],[133.54681395600005,-17.46687508699989],[133.50198368100007,-17.3150214879999],[133.446685752,-17.22390366299993],[133.37315366200005,-16.94294545299988],[133.39166258100022,-16.775932343999955],[133.32862848900015,-16.77082642399995],[133.2838897460001,-16.834047263999935],[133.18658439900014,-16.88705827599989],[133.03669736300003,-16.91332816599993],[133.0233612520003,-16.984155750999946],[133.11529547500004,-17.034976905999883],[133.08091726600014,-17.10830112399998],[133.20452871400005,-17.161676412999896],[133.18855263800015,-17.257826062999925],[133.21475212000007,-17.346448930999827],[133.3938598130003,-17.48329925899992],[133.42544550600007,-17.637704810999935],[133.29330446800031,-17.77680970299997],[133.24821469000028,-17.91343120399989],[133.25869743300018,-17.979246075999924],[133.3796080630001,-18.068218300999945],[133.48309321900012,-18.055492392999952],[133.60339347900015,-17.987216929999875],[133.78062429500005,-17.975128214999927],[133.8687286590001,-18.06635483699995],[133.91796865300012,-18.201393164999956],[133.96942130000002,-18.27998742099993],[134.06852724700002,-18.353185743999973],[134.11462402700022,-18.442249331999903],[134.24888602200008,-18.55721668999996],[134.3923949340001,-18.649309161999952],[134.49038692500028,-18.78350443799991],[134.53320319600004,-18.884717930999898],[134.58677680100016,-18.93339348699982],[134.63162233000014,-19.04855915999991],[134.70930480200002,-19.112794880999957],[134.84553520400027,-19.125892610999927],[134.8722228490003,-19.010286383999926],[134.94007871300005,-18.988811445999886],[135.03880311600005,-19.09203726599992],[135.09506228200019,-18.992780779999975],[135.27185053500023,-19.01595305399985],[135.29646298700004,-19.136758742999973],[135.2585603570003,-19.245778971999982],[135.18373108300023,-19.30571360299996],[135.3435821920001,-19.37161262899997],[135.5801391130002,-19.381002372999944],[135.67622371900018,-19.41023258399997],[135.89428714500002,-19.41272351799995],[135.96824637600014,-19.376476311999852],[136.0322571270001,-19.390796626999872],[136.25245659600023,-19.529117642999893],[136.25637815400012,-19.698801057999958],[136.33242799900006,-19.76705740999995],[136.6408386190002,-19.849849825999968],[136.8264769870001,-19.886405988999968],[137.00714119800023,-20.14727026099996],[137.1286772860002,-20.429090465999934],[137.2357787300001,-20.47077182699985],[137.37347412100019,-20.582792274999974],[137.53405763900014,-20.672393813999918],[137.71267700300018,-20.941650383999956],[137.76545717700003,-21.117130220999968],[137.6384584350002,-21.04702750299998],[137.41967768600023,-21.001092996999944],[137.1058044130001,-20.982330441999977],[137.00846855700001,-21.089910492999877],[136.8944243830001,-21.248132660999943],[136.90599073800013,-21.326324417999956],[136.85638428800007,-21.407400220999875],[136.73582452500023,-21.458665784999937],[136.72026067200022,-21.499685309999904],[136.58563238700026,-21.53625672699991],[136.6678618740001,-21.65473559999998],[136.73899841700006,-21.70904161499982],[136.86941529800004,-21.75728030599987],[136.9053191810001,-21.799514703999932],[137.28866569000013,-22.049617786999875],[137.50895685800003,-22.224180307999973],[137.64463807700008,-22.42016412499993],[137.63932797400014,-22.560737692999965],[137.75665282600016,-22.611930837999978],[137.89785772000005,-22.58022880399983],[137.968098477,-22.479625305999946],[138.10893485600002,-22.473171],[138.24604842700012,-22.56521463999991],[138.40001696800005,-22.631205116999922],[138.48974655400002,-22.74180344499996],[138.4031355310001,-22.870460519999938],[138.44767067200019,-22.937416688999974],[138.57802268900014,-22.83020040399998],[138.63399333200016,-22.814237456999933],[138.71015953900007,-22.905653569999913],[138.71165503300017,-23.10458816299996],[138.83125544100005,-23.184153306999917],[138.89213049800014,-23.135678836999887],[138.93157990200007,-23.03404631999996],[139.03328030400007,-23.036806328999887],[139.0573420400002,-22.991390885999976],[139.23819898500005,-22.99718832799988],[139.2439127580002,-23.05448406299996],[139.36528194200002,-23.04815728799997],[139.44703556700006,-23.008820409999885],[139.62066630800018,-23.084545491999847],[139.62515674000008,-23.240275200999974],[139.65090267500022,-23.306103488999895],[139.7388965570001,-23.362343791999876],[139.94024265200005,-23.310817940999982],[140.02587128900007,-23.351041769999938],[139.92382087900012,-23.42356348499993],[139.89989322200006,-23.50397841599988],[139.95042630800015,-23.66308261899991],[139.91080876900003,-23.786231646999966],[139.97453071400003,-23.845562644999973],[139.9919560290001,-24.041320887999916],[139.93880591900017,-24.092989836999948],[139.94000320500004,-24.21136687099994],[139.99444801100003,-24.271217905999833],[139.8409404560001,-24.367780586999856],[139.88115939600004,-24.446401878999893],[140.03022227400015,-24.485727195999857],[140.06793629000003,-24.555746219999946],[140.14799921300005,-24.501385617999915],[140.22483132200023,-24.585276272999977],[140.40125455800012,-24.67138813799994],[140.49826214700022,-24.56535619899995],[140.5469301610002,-24.59837828399992],[140.64422062200003,-24.56838866299995],[140.69915422400004,-24.487946590999968],[140.8768167850002,-24.37787701999997],[140.89558178700008,-24.27972640699994],[140.85663155200007,-24.236564228999953],[140.84214161900013,-24.052032387999873],[140.79881907200001,-23.96905072699991],[140.82678749800004,-23.86749922599995],[140.9012844890001,-23.71318318999988],[141.04168112600019,-23.691719073999934],[141.09865943500006,-23.640633673999957],[141.12289612400002,-23.560766457999932],[141.29449127800012,-23.455921539999963],[141.43859090500018,-23.387404879999906],[141.49759957700007,-23.321144099999913],[141.57668028800015,-23.050166595999883],[141.6312508850001,-23.009606826999857],[141.74361028400006,-23.024075723999943],[141.82409966400007,-23.08922536599988],[141.99822887000005,-23.13442571199994],[142.03829264700005,-23.174964336999892],[142.1568172640001,-23.141255248999983],[142.244893487,-23.22192968899998],[142.37093441000013,-23.078501012999936],[142.37938248600017,-23.00663104499995],[142.45658923300005,-22.943555738999976],[142.45888191300003,-22.85400106499992],[142.53619275900007,-22.759430942999927],[142.55883034900012,-22.664232418999973],[142.62776357000007,-22.629934892999927],[142.59271441600004,-22.561475168999948],[142.72576316800007,-22.54854051199993],[142.8634343320001,-22.622656989999825],[142.94910383700017,-22.63016330399995],[142.9846586130002,-22.542414918999953],[143.07249305300002,-22.571270113999958],[143.15577919700013,-22.548680111999943],[143.2156304770001,-22.582259783999916],[143.29190737000033,-22.705775514999914],[143.2683627670001,-22.790214618999926],[143.3375941280002,-22.927112452999893],[143.20147572800022,-23.012669156999834],[143.17231689300013,-23.146051651999983],[143.09028974800003,-23.347444107999877],[143.1272830050001,-23.642871464999928],[143.23004725900012,-23.750040739999918],[143.18997380100018,-23.910548603999928],[143.13336963600023,-24.0496860209999],[143.16838600500012,-24.139616040999954],[143.22272221900016,-24.14235165499997],[143.3203318430002,-24.33192859099995],[143.42103557300015,-24.514402398999948],[143.49207803100023,-24.59092272099997],[143.60832252900025,-24.604794125999888],[143.6413197290002,-24.73812800199994],[143.58765775700022,-24.865621760999943],[143.57112059300005,-24.980416691999835],[143.65081576900002,-25.021355960999983],[143.61435619500014,-25.110972267999955],[143.4985049820001,-25.173738961999902],[143.55885784200018,-25.24832687399993],[143.5451566180002,-25.311110223999947],[143.68940053300025,-25.298984394999934],[143.78658237100012,-25.452099202999932],[143.842181653,-25.487812279999957],[143.8667172160001,-25.57130042499989],[143.74086644400006,-25.572435295999924],[143.79011793900008,-25.650870409999925],[143.7579689700001,-25.695654523999906],[143.82064679100006,-25.858268833999944],[143.88272559600023,-25.938449525999943],[143.8652995670002,-26.005790108999918],[143.92682710500014,-26.144571681999935],[144.00821171000018,-26.12836993299993],[143.98024801600002,-26.00304680399995],[144.00851829900023,-25.863192079999976],[143.94732263900005,-25.737759292999954],[143.86787356300033,-25.47767701299989],[143.85894317100008,-25.324105403999965],[143.90020480600015,-25.320409393999967],[143.97158197600004,-25.158532733999948],[143.98328272800006,-25.080521570999906],[144.04803559800007,-25.07518353599994],[144.11399838000023,-25.136894112999926],[144.23713558300005,-24.922807805999923],[144.21578398400004,-24.876668862999963],[144.37795404800022,-24.836739361999832],[144.44796990600014,-24.89182401599993],[144.5057806000002,-24.87169067799988],[144.59936045300014,-24.77899169799997],[144.61783593000018,-24.67594475699991],[144.72469718000013,-24.655424589999825],[144.8275186420001,-24.782033765999984],[144.809664042,-24.838549715999875],[144.91466949600022,-24.93595329199991],[144.95581298800005,-25.024446551999915],[145.20143372100017,-24.992473392999898],[145.13173562300005,-25.06837652799993],[145.0214944080002,-25.12390603199998],[145.08815454000023,-25.2533548159999],[145.01909349900018,-25.414953372999832],[145.08627371700015,-25.459847264999894],[145.1092832520003,-25.535958609999966],[145.17611491800005,-25.590066441999966],[145.33077441700016,-25.445676705999915],[145.41560076100018,-25.49375708899987],[145.53614121800013,-25.38304851299995],[145.4655282550001,-25.274201294999898],[145.5573864470001,-25.240614518999962],[145.60558588300012,-25.13070296799998],[145.7121432570001,-24.99723193699998],[145.75936490300012,-24.812924103999933],[145.86914257000024,-24.75453876599994],[145.8229028390001,-24.89490095699989],[145.82308541200007,-24.98297645299988],[145.71879000500007,-25.19214643999993],[145.7781885820002,-25.23822837299997],[145.78982832400015,-25.3535013959999],[145.82533817000012,-25.37398735499994],[145.73054663400023,-25.491966240999943],[145.76148250800009,-25.617443523999953],[145.9206132800001,-25.64846869199988],[146.12934420300007,-25.85821237599987],[146.14236950600014,-26.045009396999887],[146.27074745100003,-25.962434004999977],[146.4074551210001,-25.99568815999993],[146.4169129070002,-25.826907653999967],[146.4854222170003,-25.713190921999853],[146.47506779000003,-25.551912057999914],[146.54413617500018,-25.48609223299991],[146.54616627400003,-25.34658090099998],[146.48036658300032,-25.282008806999954],[146.50395617700008,-25.16308614499991],[146.47744433100013,-24.995560981999915],[146.43007953400001,-24.856161125999904],[146.2158159620002,-24.85371704599993],[146.18250954600012,-24.728094081999927],[146.25668208100012,-24.69983059699996],[146.23503820100007,-24.609136943999943],[146.1576844210001,-24.538872296999898],[145.9603192640002,-24.584915784999964],[145.96486270100002,-24.50281175399988],[146.05161584500024,-24.43979656099998],[146.09432273300013,-24.270980911999857],[146.02225201600015,-24.198766426999953],[146.00561153400008,-24.136976133999895],[146.04469074400004,-23.932015238999895],[146.1154494320001,-23.91354336099988],[146.16425843900015,-24.00097243099998],[146.2447500310003,-24.000918733999868],[146.29548048100003,-23.94689135599998],[146.33836897700007,-23.792600652999965],[146.28929911400007,-23.75822736599997],[146.2320173730002,-23.59894849699998],[146.29187115900004,-23.611435927999935],[146.4176936580002,-23.742489767999814],[146.52099456500014,-23.75016448699995],[146.58002883000017,-23.707687370999963],[146.65441304600017,-23.58032421599995],[146.59416266000005,-23.512126970999816],[146.57686950700008,-23.38439306899994],[146.6669871800001,-23.300606506999827],[146.6645558130001,-23.223051276999968],[146.6065559540001,-23.181672176999882],[146.61089257600008,-23.023701909999886],[146.55235290700023,-22.81203699499997],[146.4906275940001,-22.780381256999874],[146.5210059460003,-22.68824367699989],[146.45442693100006,-22.57998893599995],[146.50289042300005,-22.50121341499994],[146.5211532950001,-22.369163388999937],[146.48553852800023,-22.24158486899995],[146.42443325500017,-22.121676410999953],[146.35574428900009,-22.071806787999947],[146.38585415900002,-21.99946233299994],[146.4677185930001,-21.968715619999955],[146.42131878200007,-21.907797319999872],[146.53320780800004,-21.839974009999935],[146.4560066570001,-21.752128679999885],[146.45073235500013,-21.54559778299989],[146.34046631400008,-21.526590169999906],[146.3184560310002,-21.466083396999863],[146.363912077,-21.356889683999952],[146.31382283200026,-21.233932737999908],[146.32047197400027,-21.16989619599991],[146.25276387300005,-21.13249962599997],[146.15959028500004,-21.13187387399995],[146.18846756200014,-21.034205129999975],[146.3290288310003,-20.97948974999997],[146.3969571130001,-21.03031472399988],[146.49744397000018,-21.00268161599996],[146.5119542990002,-20.889839150999933],[146.4484736400002,-20.78527183999995],[146.53023723600006,-20.693076578999978],[146.39715399600004,-20.494644522999863],[146.38916333300006,-20.39017129599989],[146.31690045900007,-20.432205245999967],[146.17260080200003,-20.3637934759999],[146.08812771700002,-20.36354311899987],[146.0320313520001,-20.276990667999883],[146.10226263500022,-20.21926129899998],[146.13210801500009,-20.139915164999877],[146.25682492300018,-19.972037389999855],[146.26461247200018,-19.91463080699998],[146.1127403050001,-19.899687662999952],[145.91879711400009,-19.836449432999927],[145.7405858010003,-19.925130195999884],[145.6607740400002,-19.936678160999975],[145.59436596000012,-19.998669059999884],[145.62318264300018,-20.06034903399984],[145.80187312300006,-20.16779354499988],[145.69811302200003,-20.213942998999926],[145.6158945520001,-20.35669442899996],[145.54766197800018,-20.423676324999917],[145.50565021600005,-20.34280390699996],[145.41929069200023,-20.368719848999945],[145.46980782200023,-20.43467487399994],[145.2380406100002,-20.560140894999904],[145.1372535280002,-20.44977425299993],[144.85108937300015,-20.350013830999956],[144.76577355700033,-20.30217993499997],[144.67134701200018,-20.42723291699997],[144.65976892100002,-20.567347409999968],[144.58600108200017,-20.62960547699987],[144.45485619600004,-20.619275270999935],[144.29819678400008,-20.68060136899993],[144.19394910900007,-20.685173628999962],[144.0548044100001,-20.75083550499994],[144.0584003570001,-20.594832500999928],[143.89904808300014,-20.621138404999897],[143.71744538300004,-20.630232598999953],[143.6484168310002,-20.59816637399996],[143.66972252200003,-20.520054320999975],[143.55000653700006,-20.56445105699993],[143.45821883100018,-20.640943407999885],[143.39359242500018,-20.643453418999968],[143.31776646000014,-20.732997627999907],[143.22738848800032,-20.71942667899998],[143.27271389100008,-20.641756974999964],[143.50180339400015,-20.535959957999978],[143.45035678200009,-20.50446552799997],[143.61534358000006,-20.429534141999852],[143.5202169590002,-20.31745790399998],[143.54529520100004,-20.305429541999956],[143.36297153200007,-20.271256952999863],[143.10366158400006,-20.367267005999906],[142.94517399600022,-20.327997143999937],[142.91109733400015,-20.537758012999973],[142.98751871800016,-20.651716025999917],[142.8513741700001,-20.676716724999835],[142.76636597000015,-20.793821355999967],[142.61753959400005,-20.752761310999915],[142.44231036200017,-20.786933846999943],[142.4401301370001,-20.83640107399998],[142.35288759300022,-20.874279291999926],[142.1982562830002,-20.76098380399992],[142.15835755800003,-20.696412085999896],[142.11662862300034,-20.547738991999893],[142.00617571500004,-20.503375318999872],[141.96642398100028,-20.351885586999913],[141.84823711100012,-20.262044518999858],[141.7587726050001,-20.15673679699995],[141.6276484140002,-20.0773274849999],[141.5420974000001,-20.207338976999836],[141.40099439800008,-20.20159482899993],[141.3462191560002,-20.138025530999982],[141.2537679410001,-20.154548096999974],[141.38542766400008,-20.417560424999976],[141.49774075800008,-20.50627458199989],[141.43328076300008,-20.59479497799998],[141.47493790200008,-20.669306029999973],[141.48293123700023,-20.896607985999935],[141.38779166100005,-21.050578981999934],[141.37013823900008,-21.13178484799988],[141.30638092900006,-21.245123770999953],[141.1868086940001,-21.394531522999955],[141.14275140100017,-21.484353676999945],[141.0147065330002,-21.557206975999975],[140.94488158000001,-21.551993189999962],[140.95632480600023,-21.44870843899986],[140.93703730800007,-21.347415123999838],[140.92420288300013,-21.099468027999933],[140.8847742920002,-21.071888229999956],[140.98721955300005,-20.952058575999956],[140.86028287600004,-20.922703691999914],[140.7825392430001,-20.795047756999907],[140.8402163710001,-20.746089655999924],[140.53394376100005,-20.525790411999935],[140.3940225350001,-20.56643149899992],[140.29214085700005,-20.54106719899994],[140.3280892790001,-20.391102400999955],[140.29735811000023,-20.34476760099983],[140.32277777800005,-20.206032713999946],[140.2146692340001,-19.997402895999926],[140.2065205780002,-19.858405441999878],[140.24572007800032,-19.82207055799995],[140.2593147010001,-19.677583535999815],[140.24043893600003,-19.510422217999974],[140.20136153400006,-19.493498575999922],[140.1818928030001,-19.754110279999907],[140.1287024950002,-20.03096126999992],[140.1450754330001,-20.12643505999995],[140.0468113080001,-20.28456831999989],[140.0147666800001,-20.059991940999964],[140.11324481200006,-19.889844709999977],[140.1200802430002,-19.773876442999892],[140.03647838200015,-19.750243344999888],[139.96435008200024,-19.568386330999942],[139.87430902100016,-19.54887866099989],[139.85184796500016,-19.46005953899993],[139.7671779220002,-19.43168840499993],[139.747143477,-19.32937090699994],[139.6913124780002,-19.32959059799998],[139.65759094700013,-19.24622292399988],[139.64007358100002,-19.10019328599992],[139.54301345000022,-18.95609041399996],[139.5474227510001,-18.87617644699992],[139.39343390800002,-18.87414239599991],[139.3347498080003,-18.8997699169999],[139.26344740200022,-19.00632234899996],[139.20029235100014,-18.998372984999946],[139.19429523400015,-18.91033181699993],[139.02806883900007,-18.910357692999924],[139.1319178330001,-18.80863060999991],[138.993827817,-18.754085215999908],[138.92711660900022,-18.62326077599994],[138.86089526100022,-18.59076419299987],[138.84328657600008,-18.515632178999965],[138.9097515510001,-18.464976129999968],[138.7452333780003,-18.358715701999927],[138.64634292900007,-18.396815310999898],[138.5997896780002,-18.507519610999907],[138.60389485300016,-18.618195070999946],[138.46622978300002,-18.68713901599989],[138.32841154200014,-18.683342651999908],[138.1463881620001,-18.62823906199992],[137.98674025800028,-18.612030146999928],[137.9363403760002,-18.697231186999943],[137.80236822700022,-18.740106465999872],[137.7505492900002,-18.788774476999947],[137.61486807100016,-18.836465829999952],[137.47264092000012,-18.823913594999965],[137.37808215600012,-18.757131619999825],[137.22105407300012,-18.700372723999976],[137.11193845700018,-18.709077832999924],[136.99475073300005,-18.66247176899992],[136.95576482500007,-18.689760228999944],[137.08410651500003,-18.82703216599998],[137.09257508800022,-18.899999649999927],[137.03594963200032,-18.978588039999977],[136.71238704600012,-18.986412042999973],[136.62545782600023,-18.943517652999958],[136.720871041,-18.81344996199988],[136.66508478100002,-18.55732917599994],[136.61100759200008,-18.520534463999923],[136.49687188600012,-18.36499970199992],[136.53646850000018,-18.23807153699994],[136.5261383080001,-18.176183753999908],[136.38316349100023,-18.08085821399993],[136.35462948100007,-18.034744334999914],[136.45216365300007,-17.911394067999936],[136.45550535000007,-17.83377831599995],[136.23995968100007,-17.659669925999935],[136.26640324400023,-17.577297106999936],[136.2215728020003,-17.51588625599993],[136.05970769100009,-17.50258836599994],[135.94934082500004,-17.537260107999884],[135.83843986400007,-17.53420456999993],[135.76457216300003,-17.743003812999916],[135.55065912100008,-17.80260668699998],[135.1988067750001,-17.779705147999948],[135.1088257020001,-17.904411103999905],[135.05601501800004,-17.86913485899987],[134.9348908180002,-17.88515099899996],[134.83204654200017,-17.821048718999975],[134.72912599100005,-17.80498697999991],[134.70684806600002,-17.741378728999848],[134.5670318860001,-17.84023472699988],[134.4691771890001,-17.854093364999926],[134.3223418360002,-17.785614054999883],[134.3132934040001,-17.645765352999945]]]]},"properties":{"objectid":447,"eco_name":"Mitchell Grass Downs","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Australasia","eco_biome_":"AU07","nnh":2,"eco_id":187,"shape_leng":150.378334881,"shape_area":41.1760169523,"nnh_name":"Nature Could Reach Half Protected","color":"#D7FC61","color_bio":"#FEAA01","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":474197.2853604063,"percentage":2.2118426081529243}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-113.52364084699997,37.217866718000096],[-113.63149805199993,37.27742150300014],[-113.67013451699984,37.22031143800018],[-113.78955950999995,37.2223443150001],[-113.89265077099986,37.282321319000175],[-113.93392603199993,37.346343197000124],[-114.02605365799991,37.30802261400015],[-114.16177489999995,37.31689257100015],[-114.27330528699991,37.28768023200013],[-114.41164414199983,37.38670895400014],[-114.55925778499983,37.46522963200016],[-114.619097523,37.31924217600016],[-114.80338266299992,37.231251881000105],[-114.90100342199992,37.29210778700008],[-114.98880869999994,37.182239073000176],[-115.20514995399992,37.12468285700004],[-115.35450182399995,37.135282352000104],[-115.40495807999991,37.0338153080001],[-115.51890208999987,37.15876210100015],[-115.617552,37.19168126500017],[-115.88280138999994,37.17369421400008],[-116.03375341699996,37.23303139600017],[-116.14704951899995,37.22704876600005],[-116.19823361099998,37.07995232500019],[-116.25223712199994,37.138044388000026],[-116.32948529299995,37.09954663300016],[-116.38446191499992,37.01219761500016],[-116.51734924199997,37.04629652600005],[-116.54517371299994,37.13157283200013],[-116.68840915399994,37.06197135100018],[-116.77946427799992,37.05256486900009],[-116.85184719399984,36.978194976000054],[-117.04841896299996,36.95349578300005],[-117.13353238099995,37.15532865000017],[-117.22160245499987,37.03392738900004],[-117.27622029799983,37.029889572],[-117.4492907959999,37.14756907300006],[-117.49568460999996,37.24881572800018],[-117.59153976299996,37.272393363000106],[-117.70860173799991,37.34123609500011],[-117.836651309,37.32757653000016],[-117.88541548799992,37.37364726700008],[-117.96455511599999,37.29981202100015],[-117.88649121799995,37.18546729500014],[-117.87859478299993,37.12136995499998],[-117.6965185439999,37.00185840800009],[-117.72535330799997,36.898677726000074],[-117.85355500299988,36.96220548600013],[-117.9462843579999,36.922874745000115],[-117.90236123199998,36.76209806800006],[-117.83145949299995,36.647173358000146],[-117.68962258199997,36.508065642000076],[-117.74645889499999,36.46353613500008],[-117.82328882699989,36.48103491900008],[-117.99192159499995,36.60798876600006],[-118.07296825199995,36.785497706000115],[-118.17073580399995,36.80858372200015],[-118.09613977999987,36.67156479300013],[-118.05529904999986,36.547942440999975],[-118.075674957,36.501220403000104],[-118.0331327699999,36.34524565200019],[-117.99269143599997,36.04049711900012],[-117.91174013199998,35.92775728600009],[-117.87737119199994,35.65733671300006],[-117.96282371599989,35.58031396400014],[-118.06511796399997,35.55631290200006],[-118.05136491999997,35.36320288600007],[-118.02275709799994,35.288420513],[-118.117814034,35.186668784000176],[-118.25983908899997,35.10643160300003],[-118.36602567799991,34.97824377500018],[-118.52109078499996,34.962210750000054],[-118.74442004599996,34.81712873100014],[-118.68405316399992,34.77572967400016],[-118.5327745489999,34.749373569000056],[-118.19337414999995,34.60342644800005],[-118.20628002799992,34.568882094],[-117.87290051399998,34.41034755200013],[-117.71805214699998,34.42784066400014],[-117.52577084199999,34.32102090500018],[-117.28511564099989,34.30409666700018],[-117.1765178629999,34.41538384600011],[-117.03635744199994,34.39590978000018],[-116.88303454399994,34.34545419300014],[-116.76627838499996,34.33346320200019],[-116.57481402699995,34.269887437000136],[-116.5382402269999,34.15686470700007],[-116.65954063799995,34.006295542000146],[-116.64692662199997,33.96444397300007],[-116.60762978899999,34.01352819700003],[-116.49475897199994,33.98097305200014],[-116.2395776379999,33.848536731000024],[-116.08432865099991,33.73031686200005],[-115.93068426699989,33.680934296000146],[-115.79795419899995,33.701903912000034],[-115.7530138539999,33.680459831],[-115.48392912099996,33.742111378],[-115.49344327199998,33.85926176600003],[-115.2983756029999,34.00404465500014],[-115.41206329899995,34.09391586700008],[-115.38500826599994,34.18195997300006],[-115.29757955599985,34.332276386000046],[-115.17215792499996,34.28752625900012],[-115.04200534599983,34.38576967500006],[-114.98649117299993,34.39516855400012],[-114.96363980399997,34.269447144000026],[-114.87949155999996,34.23330921600012],[-114.80407170399985,34.12904364700012],[-114.7330151139999,34.32932768300003],[-114.76820887099996,34.496616282000105],[-114.67338455699996,34.562444287000176],[-114.61432099499996,34.6723377620001],[-114.45610644399989,34.74895428600007],[-114.27277936299993,34.75941291300006],[-114.21089127199991,34.803374112000085],[-114.09858972899997,34.80639009700013],[-114.08887893399987,34.67934508300016],[-113.99650223999998,34.47646256000007],[-113.88020397699995,34.44744599000012],[-113.75502153699995,34.53618978600008],[-113.72221301999991,34.62879997100009],[-113.76090154599996,34.68173578300008],[-113.863873088,34.72743827300019],[-113.94211947199994,34.85492615900006],[-114.00419341099996,34.895785989000046],[-114.00109842999996,35.08918540700017],[-113.93554837299996,35.18116625],[-113.78994901599992,35.187713234000114],[-113.80253162399998,35.35308103900002],[-113.650399054,35.37000846800004],[-113.737380638,35.47600904200016],[-113.74527701699998,35.557404345000066],[-113.81874380099998,35.58556220000008],[-113.88200469399999,35.67290334300003],[-113.86176631299992,35.73379288000007],[-114.041197464,35.780368913000075],[-113.94516250299989,36.054233500000066],[-113.81110972399989,36.015381159000185],[-113.74251350199995,35.86670939800018],[-113.60517969799997,35.69625448600004],[-113.56632779199998,35.76100264500013],[-113.4048617009999,35.70424171000013],[-113.41080417399996,35.616150491999974],[-113.23027521799997,35.718578535],[-113.28455153999994,35.77575312000016],[-113.26773892499989,35.8946033360001],[-113.20967564699998,36.072537432],[-113.13405933599995,36.13728891000005],[-113.25774423099995,36.22763033300015],[-113.44939840599994,36.188718285],[-113.39436041699992,36.11126751400019],[-113.44745798699995,35.975002642000106],[-113.5555936319999,36.073771678000185],[-113.70608863899992,36.01294179800004],[-113.81623788299993,36.07447146200013],[-113.83148833299992,36.189327972000115],[-113.784477531,36.237359174000176],[-113.81467099099996,36.307053511],[-113.74794112799998,36.550951521000115],[-114.01331111499996,36.63768606400015],[-114.08760667899992,36.53667634700008],[-114.1714515939999,36.58512675800006],[-114.13904030299994,36.63810059700006],[-114.0168413529999,36.66808302600009],[-113.917597393,36.74392929900017],[-113.8607535829999,36.87306311200007],[-113.69506990999992,36.95531532200005],[-113.57186748099991,36.886352971],[-113.43761438699994,36.93963968300005],[-113.35921721899996,36.912929597000016],[-113.30107858199995,37.00016822400005],[-113.30448456199991,37.12205804399997],[-113.26886087499992,37.213912515000175],[-113.28305529699992,37.313329433000035],[-113.4286493649999,37.22247807600007],[-113.52364084699997,37.217866718000096]],[[-115.7311906459999,36.36126896800005],[-115.62969697499994,36.32901973000003],[-115.58752294899989,36.250227267000184],[-115.71033474199993,36.21434354200011],[-115.77320331699997,36.300151493000044],[-115.7311906459999,36.36126896800005]]]},"properties":{"objectid":449,"eco_name":"Mojave desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Nearctic","eco_biome_":"NE13","nnh":2,"eco_id":433,"shape_leng":39.4664674301,"shape_area":12.6825277192,"nnh_name":"Nature Could Reach Half Protected","color":"#FA5D4E","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":127612.63890942812,"percentage":0.4837077346526381}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[125.25059461400019,46.284852153000145],[125.2794266850002,46.22579695100012],[125.46890262300008,46.1757898460001],[125.6326146040002,46.163804731000084],[125.83398463100002,46.211873939999975],[125.90071866200003,46.291730175000055],[125.91937258700011,46.459955810000054],[126.04697465800007,46.68560385200004],[125.96599558300022,46.74360997500003],[125.8460996660001,46.624350413000116],[125.70575760500014,46.60583428600012],[125.76997354500008,46.73294802700019],[126.00759865600014,46.871154714000056],[126.24320959600004,47.07401353500012],[126.45426156000008,47.48479133100011],[126.40998868200029,47.572994769000104],[126.28417966800009,47.4582520460001],[126.16342963600016,47.258333765000145],[126.01078059400015,47.139623049000136],[125.8302615570002,46.95874811700014],[125.75372354900026,46.92937876600007],[125.66025560600019,46.9794053170001],[125.50038169900006,47.13640791900002],[125.36930063600016,47.23082553200004],[125.26013959000022,47.17001113600014],[125.15273254200008,47.17199915600014],[125.15641756100001,47.28864205600007],[125.40247369400004,47.45585985100013],[125.69963060200007,47.582275715000094],[125.78495066500011,47.65943230700003],[125.63321659200005,47.71045479600002],[125.46232567900006,47.65380939100004],[125.3684926200001,47.591312915000174],[125.0423816010001,47.45291109800013],[124.85507154600009,47.424681686000156],[124.85302753500002,47.37105426900007],[124.98118566100004,47.289606813000034],[124.84934268300015,47.05279659100006],[124.71929963400032,46.9959191750001],[124.53350854700022,47.086121697000124],[124.49257669700012,47.2035204770001],[124.51415255400002,47.304128963000096],[124.5983655350002,47.42301469299997],[124.65570864900008,47.610557933],[124.71989458200017,47.68005849500008],[124.9535295720002,47.79403142300009],[125.42145568700005,47.888259102],[125.59875456500004,47.94169155600008],[125.70359054800008,48.01385102500012],[125.6682056730001,48.09801170300011],[125.47909568800003,48.118786921000094],[125.20227864200001,48.03129628000016],[124.99005153500002,47.99520095500014],[124.86347960100011,48.02734002200003],[124.88301865500011,48.080997613000136],[125.04412067800001,48.18457949700013],[125.17210362300011,48.18927554200013],[125.5155405390002,48.344816843000046],[125.77479565400006,48.39113524000004],[125.87905161000003,48.339399619000176],[125.98894456300002,48.21912567800007],[126.22257955300006,48.150788189000025],[126.36956762500006,48.03847118900006],[126.40595262800014,47.79759825800011],[126.60785658300006,47.71629480300015],[126.70293469,47.6250011250001],[126.99680354500015,47.451675102000195],[127.19647254900019,47.40029873000009],[127.22747754400007,47.62532902500004],[127.17419462300006,47.73864900400014],[127.002624609,47.80982846100011],[126.90872164500024,47.873335794000184],[126.72221357,47.95083939700015],[126.86550153400015,48.08037265900009],[126.87455767800031,48.1395271020001],[126.77958669200007,48.168077373000074],[126.57285258200011,48.311129638000125],[126.64361562600004,48.388919232000035],[126.91777762100014,48.49123813000017],[126.93357063500014,48.52832453100012],[126.79073361700023,48.63397355900014],[126.82308960700004,48.66852376400004],[126.74467455600018,48.884822799000176],[126.67077668000002,48.91459314000019],[126.51634966900008,48.8797608000001],[126.29073364600004,48.79697391600013],[126.20471956100005,48.82107524000014],[126.00228855300031,48.68975294600011],[125.88919069500002,48.66148967100008],[125.95447566300004,48.831252380000194],[125.85239363700009,48.880386928000064],[125.71929169700013,48.854663538000125],[125.61429561900013,48.89453189300008],[125.60530066300021,49.19631913200004],[125.61746967800013,49.33864384800006],[125.4752805810001,49.43723212800006],[125.29326654800002,49.41598786000003],[125.09561154800019,49.268635175000156],[125.03971867000018,49.13775561300014],[124.75289162000013,48.97850196700011],[124.55370357000004,48.8057631800001],[124.46989459600002,48.790717161000146],[124.24713864600005,48.80951207000015],[124.13145463600006,48.791492151000114],[123.96450757600007,48.69942298000012],[123.856925681,48.5337836650001],[123.79252668100014,48.474510031000136],[123.60712468200006,48.37254216700006],[123.32057959900021,48.28448742400019],[123.20596361000014,48.19977756300017],[123.11877455100012,48.065056575000085],[123.03757469600009,48.01495408400018],[122.670516571,47.8793020330001],[122.41555768400019,47.62418120800004],[122.29682953400004,47.474598266000044],[122.22339668600023,47.26192373400005],[122.06084459400006,46.913002874000085],[122.01545759400017,46.655409723000105],[121.86633264000022,46.51839695400008],[121.62489359500012,46.42586359300003],[121.34751864900022,46.37900741300018],[121.19773068600023,46.37999949500005],[120.6012266790002,46.50436581600013],[120.46612565500016,46.573485168000104],[120.13462054600006,46.60553622500004],[120.13752755700023,46.69370982300006],[120.06560563100015,46.83790236300007],[120.07811763300015,47.12151478600015],[120.21321061100002,47.30606719500008],[120.24311053600013,47.381175585000165],[120.45694763800009,47.61754709900009],[120.5794675940001,47.89017017600008],[120.93682869500003,48.12543192600003],[121.10844464200022,48.45288874400006],[121.26200865200019,48.64267866900008],[121.47150459900001,48.781702758999984],[121.72138254400011,48.829063529000166],[121.89002962100005,48.90064716200004],[122.01594558800002,48.88734491400004],[122.1624066060001,48.95066952200017],[122.23284962900027,49.07805902800004],[122.18452460400033,49.26801709400007],[122.08581562400013,49.45389820200006],[122.1742475530001,49.57991860700008],[122.24471253700005,49.79322731500014],[122.18960554600005,49.90544574300014],[122.10047959600001,49.90309981600012],[121.84108768800013,49.82180776000013],[121.7628855380002,49.81977062300007],[121.53104360400005,49.966409672000054],[121.53025067600015,50.162650980000194],[121.47961459300006,50.26403965500003],[121.38369762500008,50.278634560000114],[121.30203257500023,50.368246995000106],[121.31787856300002,50.55092755800001],[121.30341357700013,50.70680698500007],[121.16832764100002,50.84744509400019],[121.05993655700001,50.896880721],[120.83860754200009,50.90900380300019],[120.6465756250002,50.95132453500008],[120.52455154300014,51.002515332000144],[120.37477162700009,51.167312098000195],[120.35090667200018,51.25338452100016],[120.38463561800006,51.51222758200004],[120.30760961600026,51.635024811000164],[120.14021261600021,51.543154123000136],[120.05098759200007,51.549547168],[119.92082267100011,51.33429184700009],[119.75861356600024,51.21040379800013],[119.74664253100002,51.07151650000014],[119.51914963200022,50.89762486600006],[119.50221265600021,50.740120188000105],[119.29193166000005,50.59511426900008],[119.26470958500033,50.47622334300007],[119.20110368100006,50.407329631000096],[119.22747767400006,50.350115765000055],[119.35942056500005,50.33983167300016],[119.31387363800002,50.08649401400004],[119.17414865300032,49.99928081400009],[118.91137665900021,49.98288480600007],[118.58332858200004,49.92483207900011],[118.23719755500008,49.72870845300014],[118.17221064800015,49.666772894000076],[117.88581861800003,49.540382176000094],[117.7974545830001,49.44723006300018],[117.51277162300005,49.29580042000009],[117.43402867200007,49.23522977100015],[117.28865864300008,49.25945682300011],[117.08271762900029,49.33820078100007],[116.90100852900002,49.47145728300012],[116.79197656500003,49.628945197000064],[116.71323361300017,49.78642925600019],[116.67083761200001,50.06506282800012],[116.60420952800007,50.174091440000154],[116.37403861100006,50.264947582000104],[116.15598256200019,50.2770637910001],[115.9379276860002,50.21043470200004],[115.79861458700009,50.131690577000086],[115.30193368200003,50.09534731500008],[115.17452959200023,50.00895503900017],[114.82467666500031,49.857235048000064],[114.5356066170001,49.6943572350001],[114.11454757800004,49.58577772500013],[113.61885858700009,49.500895701000104],[113.37617466200004,49.426282848000085],[113.26976053400017,49.359815027000195],[113.2156675870001,49.26597593200012],[113.27495563800028,49.16093375400004],[113.45310963700001,49.17285902300006],[113.69084958000008,49.33442490100015],[113.78581268800019,49.37370819900008],[114.04629558400006,49.378805234000026],[114.2575606160002,49.42968590100003],[114.42111954200016,49.400041624000096],[114.44129964500019,49.342161062000116],[114.26454961400009,49.25342202100012],[114.31904556400002,49.18321603800018],[114.4653855470001,49.241642765000165],[114.86473059500008,49.47359047800012],[115.02204852400007,49.483901560000106],[115.05351268000004,49.41327162000016],[115.01708962300006,49.320103749],[114.85176060600008,49.14832569500004],[114.5170975310001,49.00214932700004],[114.09668758600014,48.8790897450001],[113.75972753500025,48.83591037100001],[113.53663664300029,48.87979885400006],[113.37999764800031,48.96984178400004],[113.27494859700016,48.98045092700005],[113.1881566720001,48.919152225],[113.00813267,48.848644661000094],[112.9846955270001,48.714117294000175],[112.87509158200021,48.62859858000013],[112.87098662900007,48.51117716900012],[112.80191756700003,48.43888861800019],[112.60115858100005,48.34638492900012],[112.22186254200028,48.21380367300003],[112.09370458300032,48.21443365599998],[111.7590336290001,48.097218775000044],[111.64504963700006,48.14594412000008],[111.45819052800005,48.05723625899998],[111.54472362000001,47.984885850000126],[111.49336267000018,47.911528271],[111.29129057500018,47.83601956100006],[111.20705462700016,47.840292823000084],[111.098579556,47.92124122100006],[110.89675154200006,47.855135665000034],[110.68493665800014,47.82723868000011],[110.5955356130001,47.83879380400015],[110.23753363200007,47.73631481100017],[110.10478959900007,47.73729884700009],[110.08770761600005,47.784914427],[110.15971352800011,47.89520518600011],[110.05099454400016,47.933432531000165],[109.90626556300009,47.78489112500006],[109.76854653500016,47.69617270400016],[109.54216759100007,47.69724458100012],[109.48968464000018,47.639024385000084],[109.50111353200009,47.536777571000016],[109.44039167300008,47.45152590400011],[109.34235358100011,47.422152865999976],[109.01900456600009,47.425746691000086],[108.80659456700005,47.46418693700008],[108.59133153500005,47.54119164900004],[108.53143361700012,47.632081319000065],[108.61054956300018,47.77501104100003],[108.70602463699998,47.88262109900012],[108.64154064400014,47.92560517500016],[108.55238368099998,47.858602923000035],[108.39321167400004,47.82345039500012],[108.31219454500018,47.71045060500012],[108.05001867200008,47.5182805550001],[107.90795865600012,47.466099184000086],[107.6504436240001,47.52087827399998],[107.39038854000006,47.40099677500007],[107.19546453200007,47.26808376200012],[107.04550960200004,47.21592552599998],[106.77008864500004,47.17808726800007],[106.49675763200014,47.22124652499997],[106.431686571,47.25838288300008],[106.45053059800017,47.384436648000076],[106.35265360500011,47.421416767000096],[106.30990556400013,47.34913123400008],[106.15043667100014,47.22976572400012],[105.96932251800007,47.19468829800019],[105.87823453200019,47.26051959800009],[105.97811161400006,47.39311158300006],[106.36645457700018,47.623608221000154],[106.43975063200014,47.77203228000002],[106.60842855500005,47.86236472100006],[106.72402958400005,47.881991115],[106.85109756000014,47.95496362900013],[106.58689159,48.07938057700011],[106.47216060200014,48.11144672100011],[106.19399256000014,48.03983727200006],[105.85774966400004,47.99848884100004],[105.63063864500009,47.99639504099997],[105.42986255900013,47.91407720800015],[105.26079554799998,47.88599716200008],[105.00984153500008,47.903407213000094],[104.83618157700016,47.96476676800006],[104.5708995380001,48.101601673000175],[104.44175754400015,48.135522061000074],[104.27608453300019,48.184552507000035],[104.08264965400019,48.16447919000018],[103.78076954300013,48.05122039900016],[103.5685955780001,48.03350826500014],[103.18435656400015,48.136849084],[103.05730451300002,48.139710163000075],[102.76708262400001,48.07233039000005],[102.64115157000003,47.960006517000124],[102.32022861299998,47.85377762900009],[102.151519678,47.87306505900011],[101.99762760000004,47.839666527000134],[101.94578552900003,47.66662750100011],[102.0081255990001,47.46577396600003],[101.99230157100016,47.37656738200013],[102.0595775760001,47.28858103599998],[102.17818452300014,47.25178766600004],[102.4721675400001,47.246969748000026],[102.76776859900002,47.18887528000005],[103.06491058699999,47.21315547400013],[103.26464865800017,47.165933173000155],[103.4399415790001,47.071034606000126],[103.51320662100011,47.115128781000124],[103.45793165700019,47.184805363],[103.57490564300019,47.23473954600007],[103.76494551600013,47.173307404000184],[103.88700061100013,47.18405333900017],[104.06606253799998,47.056382537000104],[104.20307966500008,47.05741669600013],[104.27664159500006,47.281298000000106],[104.7727355990001,46.98080123900013],[104.88539156300004,46.83416738700009],[104.76943162000003,46.70029766400006],[104.67530066800003,46.6617117400001],[104.38964054600007,46.603125255],[103.9141465780001,46.569571155],[103.34910555300007,46.41224065300014],[103.36865952700003,46.32750832900007],[103.46706357300013,46.19126284000009],[103.61087758600013,46.107998522],[103.85309564500005,45.92633518800011],[103.94393167100009,45.82793080600004],[104.102889603,45.71438971300017],[104.2391355950001,45.57057117400012],[104.25943757100003,45.49489935200012],[104.347076571,45.53836035900014],[104.6404346330001,45.58552532800019],[104.7786946290002,45.543086243000175],[104.9537585560002,45.387865969000075],[105.10201263000016,45.38182814900017],[105.1565325520001,45.41699911800015],[105.18582965000013,45.56010016600004],[105.2779615190002,45.658286618000034],[105.77677159400014,45.708408387000134],[105.84479560000011,45.733722573000136],[105.91256764600013,45.85467980600009],[105.95674161699998,46.00198421100009],[106.09592462800003,46.07795861900007],[106.35173763100016,46.091320379000194],[106.9377666060002,45.900246011000036],[107.44017754800007,45.818721777000064],[107.77336155200004,45.8347627280001],[108.06356852100004,45.802650651000135],[108.21128062200006,45.82108664700013],[108.59495553500005,45.94120418099999],[109.15283154100013,46.090588471000046],[109.42992368200004,46.11628068100009],[109.67687265400014,46.16055758099998],[109.85482766700005,46.22215803200004],[110.06481965500018,46.33205618200003],[110.27175861900008,46.35848834600017],[110.649749596,46.35383421000006],[110.81587254599998,46.40923171700018],[110.98316963400015,46.40650340800016],[111.02151466200007,46.138359619000084],[111.34525259700013,46.02491843900003],[111.38591756800008,45.94031905200006],[111.33629552700012,45.868041901000026],[111.197799665,45.78017776200011],[111.17668162700011,45.71945154400004],[111.241714635,45.658401450000156],[111.34117161600005,45.6615755090001],[111.7485426720001,45.76155468200005],[112.1202545970001,45.95759197500007],[112.23055256400005,45.90438885000009],[112.16196462300013,45.80579772000016],[111.9754255360001,45.668537518000164],[111.92581154200019,45.568595224000035],[112.07913968500009,45.50955930100008],[112.22732553100013,45.51570105700006],[112.49346956500005,45.655528301000174],[112.67774956200014,45.78536565800016],[112.76609063100011,45.790622620000136],[112.80730461600001,45.669368499000086],[112.71884955400014,45.534191200000066],[112.72431153700006,45.463138309000044],[112.80249055400009,45.40171421400004],[113.07052655100017,45.2565260720001],[113.26596856100002,45.19510180900005],[113.67361454300021,45.10575373900019],[113.82996352500004,45.061083727000096],[114.04215961800003,44.97173582400018],[114.11517353800002,44.868182943000136],[114.10105154000007,44.64579697000016],[114.00344863600003,44.46502194900012],[113.99842066800022,44.392814200000146],[114.05354257800002,44.23978730200014],[114.02391053800034,44.08521662600015],[113.96052558100007,44.03175399700001],[113.74052459400014,43.91635933000009],[113.68862954900021,43.70570098100018],[113.63694757300004,43.6246810020001],[113.51895166600013,43.52511455300004],[113.52883962900012,43.492254475000095],[113.28672768500007,43.27928439700014],[113.30438265600003,43.191451775000075],[113.39370759200017,42.980568958000106],[113.42525456100009,42.84155056700018],[113.3913195880001,42.78453200000018],[113.27466562400014,42.71919825000009],[113.16339166800014,42.70775846100008],[113.09298653100007,42.552211460000194],[113.21205867400022,42.37813542500004],[113.12969155600013,42.26011739000012],[112.8514785870002,42.04824668200018],[112.74767257200006,41.99150404700009],[112.46524853500023,41.90598684200006],[112.2823716690001,41.870613031000175],[112.07614868700011,41.87124620000009],[111.88455967000004,41.83464444000015],[111.81005058599999,41.79331294000002],[111.7402645360001,41.68041390100012],[111.57257852800012,41.597864393000066],[111.23927265100014,41.57774564600015],[111.05481764000007,41.58605848200017],[110.89433252500004,41.53247699800005],[110.5902405980001,41.39219344300011],[110.40567058700015,41.33636192100016],[109.82106066700004,41.23403363600005],[109.6120076200001,41.13780067000005],[109.4788815400002,41.12933695900006],[109.36205256200014,41.15144976100004],[109.17716253000003,41.006466138000064],[109.07307454699998,40.95950468100011],[108.91356659400014,40.96425755500013],[108.95719859100006,40.87326260900005],[108.83644068000012,40.768267704000095],[108.79934656700004,40.64478701500008],[108.92501057400005,40.607251344000076],[109.47370152400003,40.50205041300012],[109.68781254700014,40.48184080600015],[110.00051168300018,40.48606377600015],[110.27455163700006,40.42418555000012],[110.73638159400019,40.24445055600006],[110.95104967800012,40.23000065700006],[111.36915560500006,40.13376886500015],[111.72862961700014,40.152895698000066],[112.05133054200019,40.2214330110001],[112.15288568100016,40.159830549],[111.75686657200009,39.83817568500007],[111.68791167200004,39.508918267000126],[111.58204655800012,39.376325108000174],[111.46145662000009,39.29773940100006],[111.57998662200004,39.25353609400008],[111.68183864800011,39.15894430500009],[111.56931260400006,38.98057120200019],[111.34589364500005,38.70533749700007],[111.42055561500018,38.66748113500006],[111.73514554100012,38.78360234500019],[111.8530425410001,38.736800815000095],[112.04972859300005,38.75603074500009],[112.18618061200004,38.73378718600003],[112.37230664000026,38.888089474000026],[112.43985757100006,39.00828462400011],[112.567321676,39.17250521800008],[112.67705554100019,39.232917450000116],[113.04728655100018,39.70890159200013],[113.12493868100023,39.84102469400017],[113.33216061800033,39.93134473000015],[113.66081956800019,39.84722378200007],[113.95919755200009,39.89423921800011],[114.08052861800002,39.94635554500002],[114.14009059000023,40.02030958000012],[114.2021406450001,40.21694684900018],[114.4248355750002,40.1819405010001],[114.67400357300005,40.31761568500008],[114.74076861700007,40.21101212600007],[114.88329366100015,40.27892834100004],[114.98542061300009,40.28436316700015],[115.08769961300004,40.38863706000012],[114.99608658500006,40.48438488100004],[114.86627957100018,40.493780659000095],[114.82052661700016,40.57459360500002],[114.69893655000021,40.64351698900015],[114.65490758600004,40.71363831500008],[115.05007157300031,40.868696483000065],[115.12966160000008,40.94829673500004],[115.42661264800006,41.175993315000085],[115.73724363300005,41.36614248800015],[115.96718555700011,41.45777462700005],[116.0723876620001,41.535613003000094],[116.29919458600011,41.65248690900012],[116.40502164600002,41.74081523700016],[116.56043269200029,41.80920452600003],[116.82334868700002,41.96498454400012],[116.98821267600022,42.130087249000155],[117.04489864900006,42.22905858300004],[117.29496753400008,42.48363089600002],[117.32935362100011,42.53468624200019],[117.31970957100009,42.70194443800017],[117.27822166500016,42.765328893000174],[117.29048958600015,42.89612631300014],[117.2713925930002,43.05894042300008],[117.13809166600015,43.12215824599997],[117.09749559500005,43.17436878500007],[117.14981861900003,43.41037602199998],[117.17191365200006,43.65026592300018],[117.10235559000023,43.78318446800006],[117.24041760500006,43.91037414900018],[117.35998562200018,43.94385616400018],[117.47407556200005,43.82586746500016],[117.4587405340003,43.76741877800015],[117.59777853900005,43.709679870000116],[117.72245767200013,43.59996629000011],[117.92682657700027,43.56421043199998],[118.14713266400008,43.43889477700003],[118.17044860400017,43.35418206600008],[117.98465768500012,43.35504825200019],[117.62898268800006,43.29005749000004],[117.55998956600001,43.20188875300016],[117.80705253300005,43.13371605200007],[117.91901363700003,42.982708858000024],[118.11357169100017,42.862950572000045],[118.37186456400002,42.78951403600013],[118.51164269100002,42.78714883100008],[118.93766063100031,42.68590734200018],[119.12757058500006,42.51755061400013],[119.28649163700015,42.51362956000003],[119.36820262000003,42.558001176000175],[119.42382861800002,42.690363498000124],[119.530464531,42.72772415500003],[119.57369956100024,42.84653260300013],[119.66899056900013,42.8768553110001],[119.82814765500018,42.60975909300009],[119.71440154100026,42.52409654600012],[119.67736057000013,42.3994371930001],[119.58117655400008,42.33348184100004],[119.41220057100008,42.339809843000126],[119.32560763200001,42.27172213500006],[119.309913692,42.104616489000136],[119.31420153800002,41.80619072899998],[119.4594426540001,41.86123736899998],[119.63508560300022,41.98283330300012],[119.7236405770002,41.942973498000185],[119.91738156400004,41.962851517000104],[120.14003760200012,42.11529721300013],[120.17934453700002,42.304005035000046],[120.1773836750001,42.40214136300017],[120.25678259400001,42.50029361700018],[120.25822461600012,42.582040978000066],[120.18982661000018,42.65494777700019],[120.277175596,42.713400320000176],[120.54178658,42.786863008000125],[120.71500363900032,42.93030620500002],[120.75299059100007,43.05645351300018],[120.70429961300022,43.26536440299998],[120.77961755100023,43.43622380000011],[120.76894353300008,43.51387240900016],[120.84937258700006,43.55322829500005],[121.34934959200007,43.58519519700019],[121.41102564700009,43.660397968000154],[121.19493062800018,43.79276364200018],[121.29576056400003,43.943451150000044],[121.65814158700005,44.141311507000125],[121.95858755400025,44.248283535000155],[122.14961967700003,44.25564938400004],[122.36029864600005,44.22581047900019],[122.68589065800029,44.29489546600007],[122.92209654500016,44.41838805700007],[122.99139359500009,44.36917119800006],[122.98360462700009,44.25081654600001],[123.11429559700014,44.18591664300004],[123.22713462200022,44.26742528700015],[123.23652654400007,44.419750116000046],[123.28100561600024,44.454200241000194],[123.45477269500009,44.367732361000094],[123.54782053800022,44.27168631100011],[123.80208557100002,44.055572684000026],[123.76130660600006,43.99767284400019],[123.65157357900011,43.988914928000156],[123.57541661300013,43.93429207700012],[123.69842556800006,43.792817621000154],[123.68926968000005,43.658265947000075],[123.55069754200008,43.66568879300013],[123.70105765300013,43.55404033400015],[123.94067363400006,43.47260058900014],[123.97713457800023,43.52475161700005],[123.9994586040001,43.72266478000017],[124.0916746260001,43.828114486000175],[124.13912960900018,44.01447705100014],[123.9913326840001,44.11022185500008],[123.87236766100011,44.360122263000164],[123.93624866000005,44.394630055],[124.0494616850001,44.35387439200019],[124.1575545410002,44.26721557200011],[124.25445554400028,44.26530449800009],[124.23957867200022,44.37382131000004],[124.36309054200024,44.41296328900006],[124.40854660900015,44.644987781000054],[124.52151454700015,44.834582910000165],[124.46033453300015,45.03071173300009],[124.30476356000008,45.05297792400006],[124.02210265000008,44.999190748],[123.93135865800002,44.948778797000045],[123.82294460700018,44.77460368700014],[123.68247262700004,44.78563980400014],[123.6448516280002,44.8573069200001],[123.66732753400004,45.06680990800004],[123.88026458800005,45.24150804900012],[123.99550653600011,45.28466680399998],[124.30541265400018,45.16696895700005],[124.51564067700008,45.14571697700012],[124.57593556200015,45.164366712000174],[124.51263459100005,45.37747911500003],[124.41762555100013,45.47138928700008],[124.30363468500002,45.46948927799997],[124.20729057500023,45.51560215000012],[124.02375757300001,45.68382242100017],[123.83291655800008,46.03309716500013],[123.78578964200005,46.19773987100018],[123.69620553700008,46.24746484200011],[123.42765053300002,46.28132823300007],[123.35343163000005,46.19552788700014],[123.23348257200018,46.28337224400019],[123.15460165500008,46.444162628000186],[123.09185757700004,46.497690971000054],[122.8321376020001,46.6257203510001],[122.86415060500008,46.76777215200019],[122.92874859100004,46.82671738300007],[123.11758465600019,46.928932849000034],[123.05374858400023,46.991925198000104],[122.84132366500012,47.06091060800003],[122.87363456000003,47.17481011100011],[123.12920365000002,47.47644412900013],[123.16577154700008,47.56400366900016],[123.32836957200016,47.61951517000011],[123.32330355000022,47.725449686000104],[123.55921154400005,47.763494138000056],[123.71279868800002,47.891970944000036],[123.75549358800015,47.803022523000095],[123.94103958800008,47.64662241200017],[124.07837656900017,47.596017007],[123.82015963600008,47.29201409600017],[123.71200559200008,47.08809362300019],[123.72904164300007,46.93839283200015],[123.93493655700001,46.76071123700012],[124.167350639,46.772052120000126],[124.24998463700013,46.90572369400019],[124.3378755980001,46.958923969000125],[124.87007867300008,46.649352456000145],[124.90287069000033,46.57500732200015],[125.19525863000001,46.53398410900019],[125.29557056500016,46.462690825000095],[125.28781864600012,46.327806389000045],[125.25059461400019,46.284852153000145]]]},"properties":{"objectid":450,"eco_name":"Mongolian-Manchurian grassland","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Palearctic","eco_biome_":"PA08","nnh":3,"eco_id":734,"shape_leng":134.47724008,"shape_area":103.136131987,"nnh_name":"Nature Could Recover","color":"#F6FC38","color_bio":"#FEFF73","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":889316.8402352862,"percentage":8.393504950803557}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-106.82117076499992,44.29424911899997],[-106.61455276599992,44.34968342200017],[-106.54606109299993,44.40991670700009],[-106.48035026999997,44.54973687500012],[-106.37868732499993,44.65347207600013],[-106.338031076,44.78262077300019],[-106.20727068799994,44.90355444400018],[-105.9889646879999,44.98699386100009],[-105.93240741799997,45.11666809100018],[-105.90751289199994,45.27171373500005],[-105.80529823699999,45.34547699400014],[-105.89330617299998,45.38890823700012],[-105.98965990799996,45.291040282000154],[-105.9929161209999,45.1523647300001],[-106.26308653499996,45.205805782000084],[-106.32297327999987,45.24112336900009],[-106.46670728799995,45.201224228000115],[-106.54403691299996,45.1321145010001],[-106.69423121799997,45.07716456300011],[-106.77462896799994,45.08382022200004],[-106.81470325699985,45.22108171700006],[-107.08633717699996,45.25643060400017],[-107.14371106499993,45.096450379000146],[-107.29728134499993,44.88261199700014],[-107.48209125299996,45.011642375000065],[-107.37860953599994,45.065886127000056],[-107.38743299699985,45.204079094000065],[-107.45585706499992,45.26916279699998],[-107.5668196549999,45.197193524],[-107.65120180199995,45.36307297200011],[-107.89986830399994,45.28686181800009],[-108.01020938299996,45.38141239700008],[-108.04974613199988,45.468266971],[-108.19277308799991,45.42199247899998],[-108.20417157499998,45.488165771000126],[-108.08043487999998,45.578172044000155],[-108.1583000629999,45.643699016000085],[-108.13499814099993,45.76807105600005],[-108.3121988129999,45.82278507500018],[-108.71208370399984,45.64453267300007],[-108.81536942699995,45.53911204000008],[-108.88469242699989,45.31658363900016],[-108.86321537299995,45.247650021000084],[-108.76219907299992,45.20923674300002],[-108.65156370499994,45.231718902000125],[-108.69507673599998,45.346477964000144],[-108.56227040399989,45.334796294000114],[-108.40929732399985,45.36087180000004],[-108.36081367699984,45.23299467900006],[-108.26784007599997,45.13671865800012],[-108.27529166599999,45.03031439000017],[-108.1095108259999,44.99065996400009],[-108.02364109599989,44.91722111200011],[-108.01651414799989,44.998411451000095],[-108.1114257669999,45.2122118800001],[-107.96167037299989,45.24961281500015],[-107.73498260399992,45.00394877600007],[-107.59644476399984,44.94330242500007],[-107.47179828499998,44.933659462000094],[-107.31151099499994,44.82529392100014],[-107.18758146099998,44.69611292900015],[-106.89408628199993,44.57597244700003],[-106.9221006809999,44.457628964000094],[-106.82117076499992,44.29424911899997]]],[[[-113.41003345099989,46.30687023800016],[-113.54224691699994,46.33868152800005],[-113.50874854199992,46.24053206000008],[-113.55806560099995,46.183461925000074],[-113.42439815699998,46.14107671300019],[-113.31786089899992,46.245553278000045],[-113.28122563599999,46.346605898000064],[-113.38344489499997,46.39747530000011],[-113.41003345099989,46.30687023800016]]],[[[-109.55495353999987,46.743696961000126],[-109.63436751299997,46.81102404000006],[-109.58972825899997,46.892694185000096],[-109.71474108699994,46.801659043000086],[-109.55495353999987,46.743696961000126]]],[[[-108.89620824699989,46.935712040000055],[-108.86503167599994,47.01957732100004],[-109.13011592099991,47.04108581500009],[-109.15440783499997,47.13935360200014],[-109.00830971899995,47.25216194100017],[-109.1725549389999,47.28959929600006],[-109.42795091399995,47.25803669400017],[-109.42836759599993,47.32256364800014],[-109.53493974399993,47.32965389800006],[-109.5323975849999,47.23393376400003],[-109.62200115799993,47.20814798700013],[-109.54388269699984,47.12477723900014],[-109.51283435199997,47.13055085900004],[-109.42881862499996,47.16752145200019],[-109.40508269999998,47.03702463900015],[-109.30404252399995,46.92261417100019],[-109.04940855199999,46.9666550930001],[-108.89620824699989,46.935712040000055]],[[-109.2827854279999,47.23751962000006],[-109.14756637999994,47.21153552700014],[-109.2151925359999,47.13213994200015],[-109.17300633299988,47.0219337370001],[-109.37942925699997,47.14465940800005],[-109.2827854279999,47.23751962000006]]],[[[-110.43763050099994,47.60838608900008],[-110.56805789499998,47.61253729300017],[-110.79188578299994,47.57839835700008],[-110.91646842299991,47.43136705800015],[-110.727082151,47.297757607000165],[-110.41288239399995,47.38962681100003],[-110.36451028599993,47.445088633000125],[-110.21364557399988,47.443290589000014],[-110.22496843699997,47.52342430000016],[-110.41906217199994,47.55332537900017],[-110.43763050099994,47.60838608900008]],[[-110.52935431699996,47.570553818000064],[-110.44577264799995,47.49390475600018],[-110.505614101,47.380563123000115],[-110.6615009059999,47.41037835100019],[-110.673220932,47.50730511100005],[-110.52935431699996,47.570553818000064]]],[[[-108.45554951699995,48.04822668500009],[-108.5287625389999,48.0787592260001],[-108.69429057299993,48.033118871000056],[-108.80966741499998,48.04274393400004],[-108.94231585699993,47.94675234200008],[-108.8722413619999,47.85820601900008],[-108.671610849,47.823200139],[-108.51049786399983,47.86909564000018],[-108.33753442699998,47.96484512600017],[-108.45554951699995,48.04822668500009]],[[-108.64530864199992,48.03306332900013],[-108.39997229199992,47.96698871100017],[-108.56708149699989,47.87915596700009],[-108.71287665299997,47.92531414900009],[-108.64530864199992,48.03306332900013]]],[[[-109.75547743499993,48.27894751100001],[-109.87328212199992,48.244761661000155],[-109.91065509899988,48.08218556500003],[-109.82232578999998,48.034426573000076],[-109.59971900999989,48.0041034730001],[-109.40434486799995,48.007154302000174],[-109.28910651899997,47.943413129000135],[-109.25470898599997,48.032626614000094],[-109.31615529199996,48.07883441500019],[-109.25689617199993,48.150966339000036],[-109.31786642699996,48.19943408000006],[-109.47896780699995,48.19846042100005],[-109.78249746899996,48.063607246000174],[-109.84235450099999,48.257216663000065],[-109.75547743499993,48.27894751100001]]],[[[-109.28098574699993,48.31654032500006],[-109.45215464699999,48.30253371500004],[-109.41416876399984,48.247690222000074],[-109.10767800799994,48.12425036700006],[-109.01513154099996,48.241736379000145],[-109.28098574699993,48.31654032500006]],[[-109.1071461389999,48.252535277000106],[-109.11421373299999,48.14893888600005],[-109.24707389499997,48.204775178000034],[-109.1071461389999,48.252535277000106]]],[[[-109.55657538799994,48.378049154000166],[-109.70126699699995,48.339991889000146],[-109.66142172099995,48.265620232000174],[-109.54251568899997,48.24808048600005],[-109.42874311099985,48.36953172800014],[-109.55657538799994,48.378049154000166]]],[[[-114.16607698799993,44.0190836810001],[-114.2056731859999,43.94148514000011],[-113.9340384969999,43.881098558000076],[-113.9390750849999,43.759861611000076],[-113.76744101299994,43.76783457099998],[-113.78074248899998,43.6803408830001],[-113.70733504299994,43.586180567000156],[-113.55788485299996,43.51484613400015],[-113.276442681,43.57772952900012],[-113.09548720599997,43.631532766000134],[-112.83836000799988,43.809972875000085],[-112.69635791499996,44.01799191499998],[-112.41473723699983,44.21705723800011],[-112.38504853699999,44.29356125000004],[-112.21460526499993,44.32476773400009],[-112.18131328099986,44.36176809400018],[-111.9965189859999,44.34876405400013],[-111.94087803699995,44.39095194000009],[-112.15492184099998,44.39888620500011],[-112.12481049999997,44.55726234500003],[-111.89018709699997,44.607888886000126],[-111.77607314999995,44.578645353000184],[-111.45170641799996,44.62428500500005],[-111.42473686199997,44.80590399700003],[-111.50223857699984,44.85743886700004],[-111.52289966199987,44.95050702600014],[-111.5835845009999,45.018745882000076],[-111.55590517599995,45.17789540100017],[-111.61611145799992,45.257668027000136],[-111.58051641299988,45.32956152200006],[-111.63757202799985,45.46279924100003],[-111.58242792099998,45.55059079000017],[-111.45139037199993,45.46536096400018],[-111.30160855199995,45.479470167000045],[-111.06629133799993,45.585382417000176],[-110.86019018699989,45.65735222500007],[-110.64139257999994,45.617251675000034],[-110.75705175499996,45.52292302800009],[-110.74668901099983,45.48066789100005],[-110.88898557099998,45.308681233000186],[-110.98240971799993,45.23983358800007],[-110.9562569439999,45.151776698000106],[-110.69444543899994,45.31680366400019],[-110.61020890099996,45.3470023910001],[-110.58890455399984,45.43461186500019],[-110.46840664199993,45.640786559000105],[-110.24836938399994,45.540922473000194],[-110.08747706299994,45.59724260600012],[-110.00724787899992,45.67645969400019],[-109.89413408499985,45.649692211000115],[-109.7540397539999,45.69005563300004],[-109.77212975499992,45.570484611000154],[-109.71168280199993,45.519786600000145],[-109.77424795599995,45.35951846400019],[-109.58824946399994,45.276725520000184],[-109.3032252939999,45.18657033400018],[-109.21670122999996,45.11384163300005],[-109.04914017899983,45.087474849000046],[-109.00853735099997,45.17437574100006],[-109.07226439599998,45.21038277800011],[-108.92309641299983,45.26830070200015],[-108.99145472499998,45.42453350500011],[-109.14967132499993,45.29260097900004],[-109.19375932499997,45.19090950200018],[-109.28450994199994,45.16817338900006],[-109.29455944799992,45.26512865500018],[-109.06922281599998,45.47466712700003],[-108.8653595369999,45.53351540900019],[-108.99633327499998,45.602166100000034],[-109.06954040199986,45.52082029600007],[-109.3580676769999,45.54669091000005],[-109.41276137699998,45.65476167700018],[-109.52025872199988,45.694099304000076],[-109.575971026,45.663879544000054],[-109.80150312599989,45.76883118000006],[-110.23576692599994,45.76838297800015],[-110.08162362199994,45.82346815000011],[-110.11029419999994,45.927475536000145],[-109.97708090499992,46.001878020000106],[-110.06838124499996,46.13156307000003],[-110.03628563299998,46.170980858000064],[-110.1356853929999,46.309549818],[-110.26302392399992,46.334547586000156],[-110.31406285499997,46.44306226000009],[-110.54526854699998,46.38737715200017],[-110.39173440099995,46.27216041800011],[-110.24201551099986,46.266928582000105],[-110.24222122799983,46.158318370000075],[-110.1571607539999,46.11162245500009],[-110.136608202,45.96030743200009],[-110.27514929599982,45.92616656300015],[-110.48207455399984,45.98555945400011],[-110.45942830499996,46.158725937000156],[-110.57701237199996,46.17934812700008],[-110.5949877939999,46.30216984000009],[-110.54935993299995,46.38827050000003],[-110.55567301799994,46.4532527610001],[-110.40948241999985,46.44323355300014],[-110.42901803399991,46.53589448000008],[-110.28268228199994,46.49157755700014],[-110.13227860699993,46.53908039900017],[-110.11042309699997,46.63562067400011],[-109.8309190949999,46.715532593000034],[-110.03424402999991,46.853585087],[-110.0437097809999,46.897043479000104],[-110.22808215099997,46.988875090000136],[-110.28979701799994,47.058069347000014],[-110.44144109599983,47.1557267230001],[-110.60080929299994,47.176913981999974],[-110.71885567499993,47.23450192500019],[-111.0264293599999,47.251926280000134],[-111.09026934799994,47.28192975800016],[-111.26809478699982,47.181458126999985],[-111.35459716499992,47.20583195600011],[-111.48915886699996,47.115874438000105],[-111.6476612109999,47.19790497900016],[-111.7986572609999,47.18671472400018],[-111.70268008799991,47.297788437],[-111.83661364599993,47.40564779300013],[-111.72272725699997,47.43374222800003],[-111.85134162999987,47.50759586800007],[-112.04000684,47.53104107900003],[-112.05854853699998,47.58219496100003],[-111.73959412499994,47.58583585300016],[-111.82500214599992,47.67682325200019],[-111.94362824199993,47.67338101100006],[-112.05103710199995,47.62854897200009],[-112.20256022099994,47.81431365500015],[-112.18171637899997,47.86091554300009],[-112.24574296199995,47.950508937000166],[-112.08467595799988,47.94638122600014],[-112.00673240599997,48.05851735700014],[-112.14061226399986,48.09373590900003],[-112.14570832899989,48.15426383100004],[-112.04405249699988,48.18103159400016],[-112.4456416839999,48.34690595500007],[-112.49292143499986,48.42116767800019],[-112.38209014399996,48.55293377200019],[-112.46901335599995,48.60454363400004],[-112.69410344899995,48.60295418100003],[-112.66947097099995,48.66884063400016],[-112.56108374899998,48.69064084900009],[-112.57162361899992,48.77536309400011],[-112.46834330999991,48.8035186890001],[-112.38644428299989,48.75010754200014],[-112.23188915999998,48.761382676000096],[-112.43513083499994,48.97310440500007],[-112.57067109399998,48.9414025960001],[-112.7277065429999,49.000474120000035],[-112.58215362099997,49.169180876000155],[-112.43129763599995,49.228260553000155],[-112.46090654199992,49.315861500000096],[-112.65706654499996,49.383260383000106],[-112.81358366799998,49.37748525200004],[-113.00283061299996,49.451888221000104],[-113.20334652399998,49.57554677400009],[-113.2608485589999,49.44032890600016],[-113.36678357799997,49.37486842200008],[-113.44042966199993,49.38664047000009],[-113.37113965299994,49.554252382000186],[-113.3752365599999,49.66434968600015],[-113.44213068499988,49.68173777599998],[-113.71697966099998,49.552406351000116],[-113.78314958899989,49.58215758100005],[-113.66329155899996,49.69500498800011],[-113.62560266699995,49.811255447],[-113.72068764699992,49.98783281100009],[-113.72412016199996,50.15384882400019],[-113.55143825,50.240674434000084],[-113.50758438399998,50.570520128000055],[-113.40379354899989,50.69306151100017],[-113.28887140799986,50.74409810800012],[-113.37027761299993,50.80163225000001],[-113.39330202599996,50.92083286000002],[-113.23963803499998,51.083376226000155],[-113.258841997,51.184021373000064],[-113.1180492929999,51.26963684000009],[-113.11216652899998,51.4049951180001],[-113.23453444699987,51.49514020000004],[-113.34674060299989,51.532435010000086],[-113.54360166999993,51.68884383800014],[-113.6542816839999,51.727594549000116],[-113.86628767499985,51.69135790600012],[-114.05812865199994,51.541704053000046],[-114.09697759999989,51.29466807700004],[-114.14082367099996,51.23861409900019],[-114.08109255199997,51.09311884400012],[-114.09441357599997,50.99892134000015],[-114.01679262599998,50.83590874600014],[-113.92511757199998,50.80855725400011],[-113.89167059299996,50.65526515300013],[-114.16902961299996,50.57057775599998],[-114.25129665199995,50.50477294300009],[-114.22337368299992,50.42903171900002],[-113.90918759699997,50.22981818800014],[-113.95587141099992,50.1232667860001],[-113.91542131799997,50.061440724000136],[-113.95377188799995,49.96909124400008],[-113.8546821,49.805513810000036],[-113.97952321499997,49.74281103200019],[-114.15199994499994,49.9834454920001],[-114.19415485399998,49.63484747300009],[-114.11116027599991,49.51694459600009],[-113.92150112099995,49.36240787400004],[-113.87293396999996,49.25243912700017],[-113.66575705099984,49.11949243700019],[-113.45272211699995,49.07111486600013],[-113.44045780499994,48.97152243200003],[-113.32299420199996,48.90288763700005],[-113.3753181059999,48.83006315300014],[-113.32531546999996,48.77176528600012],[-113.31646959899984,48.663320264000106],[-113.23339403799991,48.55301017099998],[-113.26231642099998,48.502645139000094],[-113.09880610499988,48.32809650600012],[-112.96289262199991,48.31799897800005],[-112.83281662699989,48.18050954500018],[-112.70531131899992,48.10977814200015],[-112.6401901349999,47.943494433000126],[-112.61323640599994,47.79813727400011],[-112.7120685839999,47.61285144700008],[-112.59570043099995,47.522656807000146],[-112.68898161499999,47.450952443000176],[-112.66515347199993,47.40269650900018],[-112.51515306399989,47.34641368100006],[-112.37493214699998,47.236452733000135],[-112.43903021199998,47.160689793000074],[-112.3392444459999,47.032983942000044],[-112.48553230399989,46.924183393000135],[-112.53087535799995,46.77041503900011],[-112.30270116899999,46.680124484000146],[-112.30954590099998,46.460998760000166],[-112.218681732,46.47376876000004],[-112.02554546399995,46.382563884000035],[-111.96062213399995,46.40955670400018],[-111.94661536599989,46.512062690000164],[-111.80784674499989,46.52689527500007],[-111.75513191099998,46.49440818200014],[-111.687056983,46.34502241400014],[-111.93158078999994,46.21565666000015],[-112.04659422899988,46.277870206000046],[-112.1558312869999,46.27881781200011],[-112.13707576799999,46.201852102000146],[-112.04116666999994,46.17315317700013],[-111.9692644129999,46.024047729000074],[-112.19947616799993,45.959232727000085],[-112.27316504899983,45.917475250000166],[-112.30621932399998,45.813801861000115],[-112.36412460899999,45.78709291600012],[-112.37363038099988,45.66220333600012],[-112.70670835099997,45.75211933000003],[-112.62718270299996,45.915222310000104],[-112.557824096,45.87242717800018],[-112.457295236,45.945014892000074],[-112.4950722779999,46.058217552000144],[-112.693777706,46.04652907600007],[-112.7503799999999,46.08976973600005],[-112.65226675899993,46.21182810700003],[-112.65254124799998,46.27143187900015],[-112.56534084499992,46.41790425200003],[-112.5240349469999,46.56776077800009],[-112.39166441599991,46.54737126900011],[-112.48708335999999,46.66686918500005],[-112.5519134999999,46.68567720200008],[-112.65862151099992,46.803064210000116],[-112.75729094699983,46.7820406190001],[-112.86345487499995,46.82739189300014],[-113.12138860999988,46.836028541000076],[-113.07426399199989,46.74735685700006],[-112.91320210199996,46.816265522000094],[-112.80385333799995,46.79232848300012],[-112.67045204199991,46.61321812500006],[-112.76843707899997,46.572634260000086],[-112.89738515899984,46.6539806080001],[-112.9816702949999,46.64612714400005],[-113.10634457199995,46.70626919700004],[-113.27456089599991,46.735994261000144],[-113.47558263499997,46.703007617000026],[-113.68764654299997,46.73170236900012],[-113.71975294399994,46.78798828400011],[-114.00241272499989,46.93143812500017],[-114.05565294399992,47.00211896000013],[-114.15690513499999,47.00857506400018],[-114.50679996099996,47.16371461000017],[-114.47900713599995,47.07518357600003],[-114.3826188139999,47.022263697000085],[-114.25122486199996,47.00025803500006],[-114.10087991999995,46.821213051000086],[-114.10013104599994,46.66972565200007],[-114.15832738299997,46.50426435500003],[-114.22808704,46.40755894299997],[-114.23643707599996,46.105337986000166],[-114.20991298899997,45.99413854100004],[-114.12796993799998,45.974090185000136],[-114.15532094499991,46.12146960700005],[-114.01615330499993,46.19981173899998],[-113.96018177799988,46.41178177800009],[-113.89336160599998,46.558785939000074],[-113.91002465599996,46.62265716900015],[-114.04498465399996,46.760590945000104],[-113.98103406399991,46.85202447400013],[-113.89964905599999,46.87010136800012],[-113.72962921599998,46.77357492800019],[-113.6722833209999,46.713872526000046],[-113.32642755299997,46.690615044000026],[-113.32232556899993,46.61913223099998],[-113.40327218399995,46.59014455100015],[-113.2919600439999,46.483133883000164],[-113.1586471839999,46.48781796800017],[-113.07019133299997,46.56068369399998],[-112.87927748099997,46.46149401200012],[-112.86938385699989,46.38432006600004],[-112.9286985469999,46.255041861999985],[-112.91520965799998,46.11408803800009],[-113.16544150499993,45.93787541400019],[-113.32984223499989,45.878387554000085],[-113.41513387199996,45.82030624500004],[-113.63670190599993,45.74806037200011],[-113.680406254,45.60898418700003],[-113.65065462299992,45.49663710200019],[-113.6025507899999,45.47852986300006],[-113.50250992199994,45.28689664500001],[-113.326442521,45.204968437],[-113.18732250099993,45.309382779000146],[-113.16246704499997,45.1942121780001],[-113.30134454199992,45.09320119700004],[-113.43083787899997,44.93287394000009],[-113.3454333979999,44.89903094100009],[-113.32277551599998,44.820660654],[-113.40662487099996,44.75554894900006],[-113.51130880499994,44.85833029500009],[-113.54035746099993,45.011114412000154],[-113.66406446499997,45.12662542099997],[-113.69441429599988,45.19363115300007],[-113.87541624599993,45.389269148000096],[-113.97326376299986,45.10821791600006],[-113.95445115299992,44.98010110800004],[-114.05945345899994,44.93335116000014],[-114.04931544999994,44.83252313100019],[-114.13961105799984,44.755854296],[-114.27866968599994,44.75282405200011],[-114.25938902599995,44.67407724000009],[-114.343222304,44.54755203200011],[-114.27230509099996,44.43917011400015],[-114.33871714699984,44.28199201600006],[-114.25676563099995,44.09113104600016],[-114.16607698799993,44.0190836810001],[-114.18006497199991,44.11750501300014],[-114.09903262499995,44.13771559600002],[-114.08102304699992,44.03366708900006],[-114.16607698799993,44.0190836810001]],[[-113.58074673099998,43.96897243300009],[-113.81725660599994,44.09519086200015],[-114.01956627999988,44.3675189760001],[-113.92981610799995,44.440225532000056],[-113.85208450399989,44.424999026000194],[-113.79743786199998,44.250894078000044],[-113.69134116999999,44.14094012300012],[-113.55797312199996,44.12889112300007],[-113.47140435699993,44.06749183400018],[-113.4552303459999,43.96901988500008],[-113.32910128899994,44.06007395400013],[-113.26093705299996,43.984880424000096],[-113.20911279299986,43.76294784000004],[-113.29859154299993,43.774386679000145],[-113.30981620199992,43.83881987400008],[-113.39953530399998,43.94376737200014],[-113.48894805699996,43.92648558100012],[-113.58074673099998,43.96897243300009]],[[-113.6322767819999,44.46879464699998],[-113.779441809,44.60100051700016],[-113.85574057399998,44.639032832000055],[-113.93361583099994,44.82506120900007],[-113.92584408199997,44.99561353400014],[-113.85501590099989,45.07811877600011],[-113.73651420299996,45.014996675000134],[-113.84594905499995,44.87222912300007],[-113.74055634899992,44.771530996000195],[-113.64175607599998,44.76567863600019],[-113.537665947,44.640979703000085],[-113.26933159499998,44.47013585800005],[-113.16966593799998,44.28570437900015],[-113.05127896499994,44.24803055000007],[-113.02427533099996,44.14194552900017],[-112.95038834899998,44.111027542000045],[-112.91509326799996,44.009826381000096],[-112.92278240799988,43.881793654000035],[-113.08959515599997,44.024834621000025],[-113.17906423099998,44.18370064600009],[-113.24886613199988,44.2384675510001],[-113.35467492099991,44.37854286100014],[-113.42538644299992,44.317658059999985],[-113.60223973499984,44.39457165200008],[-113.6322767819999,44.46879464699998]],[[-113.18446741899993,44.64124653900012],[-113.26695277999988,44.70777912400007],[-113.17167259999991,44.79299616500015],[-113.16338014099983,44.92847866000005],[-113.09177275199994,44.90581583000005],[-113.01349783299997,44.656932156000096],[-113.04542333999996,44.60809832800004],[-112.96754953299995,44.454870762000155],[-112.821790347,44.46695227100014],[-112.67549631499992,44.335183285000085],[-112.83980096099992,44.273966684000015],[-112.98915763899998,44.375184291000096],[-113.18446741899993,44.64124653900012]],[[-112.46099946299995,44.92060753200019],[-112.47598134799995,44.94668794200015],[-112.71959288799997,44.99688296300013],[-112.63680751399988,45.063594710000075],[-112.46099946299995,44.92060753200019]],[[-112.2395432799999,45.233175414000186],[-112.34657299899999,45.24921821300018],[-112.24350771999991,45.38785786],[-112.16118998899998,45.313011981000045],[-112.2395432799999,45.233175414000186]],[[-113.07012346599998,45.243665081000074],[-113.10597632199995,45.32563081000012],[-113.30680441499993,45.32856736200006],[-113.39386815599988,45.42816057900018],[-113.36666482099997,45.707849625999984],[-113.21032114399992,45.871893730000124],[-112.96640021699989,45.98499686500003],[-112.92165386599993,46.076266996000186],[-112.78496474699995,46.013899724000055],[-112.71270136599998,45.890291006000155],[-112.77966455299998,45.78621217600005],[-112.71662178399998,45.65408278500013],[-112.79186304699994,45.60895234500009],[-112.76217127599995,45.51291791100016],[-112.776883296,45.348704325000085],[-113.01909552499995,45.30612773700011],[-113.07012346599998,45.243665081000074]],[[-112.17861923499999,45.652357118000054],[-112.1211835599999,45.713792360000184],[-111.97296522299996,45.716946545000155],[-111.92578788899988,45.647324863000165],[-111.81975544399995,45.584788087],[-111.84555610499996,45.40726837400007],[-112.01545885099989,45.39966982900006],[-112.05307888899995,45.45463689500008],[-112.2229391439999,45.564660165000134],[-112.17861923499999,45.652357118000054]],[[-110.97416648899991,45.71123153800005],[-110.99118998199998,45.825585483000054],[-111.06235021799989,45.91094558800006],[-111.11250477799996,46.040552352000134],[-110.99566255799994,46.05640311200011],[-111.04624085299997,46.16773793300007],[-111.25836521399992,46.132670413000085],[-111.32149307099996,46.24306174800017],[-111.22821494599998,46.29805349300011],[-111.47734043799989,46.533604536000155],[-111.5201168879999,46.610486574000106],[-111.64836402599997,46.6591398380001],[-111.66104488399998,46.56785322100018],[-111.73074418599998,46.54552091100015],[-111.80822034399989,46.68964678500015],[-111.81001787899993,46.805951411000194],[-111.89107225999993,46.85896083900019],[-111.78553107699992,46.935206808000146],[-111.66744720499992,46.87029213500017],[-111.67425307799994,46.82001778300014],[-111.46332706299995,46.74687974100004],[-111.32994032499988,46.6778349600001],[-111.19796050799988,46.51347172700014],[-111.02761634499996,46.41688870400003],[-111.11643078299988,46.251377091999984],[-111.10713094999994,46.199877007000055],[-110.89299849899999,46.19858097500014],[-110.84260800699997,46.08901841300019],[-110.9679061679999,45.98237437400019],[-110.78588575099997,45.849575910000056],[-110.69522446999991,45.74588391300006],[-110.80541891199994,45.69635558700014],[-110.89237017599999,45.760568567000064],[-110.97416648899991,45.71123153800005]],[[-112.03201664299996,45.26103949900005],[-111.90712067099997,45.25637977200006],[-111.8884311299999,45.19408055700012],[-111.72996173699994,45.04536002000003],[-111.67451524799998,44.94503409700019],[-111.61095830599999,44.92074381499998],[-111.54406459999984,44.76984724200014],[-111.79906480399995,44.75127188100004],[-111.98167479599994,44.816425803000186],[-111.97064937899995,44.942283638000106],[-111.90723797699991,45.05755717000005],[-112.00447940199996,45.06464531900008],[-112.06806963599996,45.156068189000166],[-112.03201664299996,45.26103949900005]],[[-112.78749138199998,44.73273271900018],[-112.65761035199995,44.56172254500012],[-112.35740101399983,44.47415775100018],[-112.27205414499991,44.480528233000086],[-112.204370569,44.4294842270001],[-112.27815261599994,44.37230934400014],[-112.51863633199997,44.40196010300008],[-112.68572396299999,44.47260704700011],[-112.67731773499992,44.56303508900015],[-112.7823936929999,44.63525363400015],[-112.78749138199998,44.73273271900018]],[[-112.14769685099992,44.87456132400007],[-112.06503474499993,44.96206534300018],[-112.02942967899997,44.832854512000154],[-112.10599487899998,44.753756721000116],[-112.221926882,44.736459373000116],[-112.34900545,44.795973879000144],[-112.14769685099992,44.87456132400007]],[[-113.56846060499993,43.779132260000154],[-113.70763695399995,43.787688961000185],[-113.81588613599996,43.82426683600016],[-113.79205902099989,43.8826083620001],[-113.69009720999998,43.933001309000076],[-113.66689509199995,43.80974957600017],[-113.56846060499993,43.779132260000154]]]]},"properties":{"objectid":451,"eco_name":"Montana Valley and Foothill grasslands","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Nearctic","eco_biome_":"NE08","nnh":3,"eco_id":394,"shape_leng":140.881939791,"shape_area":11.7751505856,"nnh_name":"Nature Could Recover","color":"#C66E02","color_bio":"#FEFF73","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":100042.43135704909,"percentage":0.9442153852204753}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-89.17785654199997,15.274538014000143],[-89.36193855899995,15.239322286000117],[-89.37261961799999,15.193557933000136],[-89.53915361699995,15.16894162400007],[-89.67340857199997,15.083761036000055],[-89.78227256299988,15.11349918999997],[-89.8455356479999,15.061330560000101],[-89.955657595,15.061831463000033],[-90.03144860699996,15.030894696000132],[-90.04753163599992,14.974866367],[-90.1434175899999,14.960876133000113],[-90.06665762999995,14.854522019000058],[-89.82314255499995,14.82589094600013],[-89.69187960499983,14.768171820000191],[-89.59780866699998,14.837347164000164],[-89.48953258299997,14.783101834000036],[-89.51672364399985,14.94616119900013],[-89.45088966199984,14.970609366000133],[-89.35458360599989,15.114346265],[-89.3562925089999,15.157123476000095],[-89.17785654199997,15.274538014000143]]]},"properties":{"objectid":453,"eco_name":"Motagua Valley thornscrub","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Neotropic","eco_biome_":"NO13","nnh":4,"eco_id":605,"shape_leng":4.73666644974,"shape_area":0.195641324489,"nnh_name":"Nature Imperiled","color":"#B69248","color_bio":"#CC6767","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":2342.0095501066326,"percentage":0.008877240872833541}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[35.72416666700019,-15.743333332999953],[35.641666667000095,-15.8225],[35.4925,-15.9025],[35.48500000000013,-15.984166665999965],[35.54833333300019,-16.0425],[35.67083333300019,-16.03083333299992],[35.78416666700002,-16.045],[35.77833333400014,-15.949999999999875],[35.72416666700019,-15.743333332999953]]]},"properties":{"objectid":455,"eco_name":"Mulanje Montane forest-grassland","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Afrotropic","eco_biome_":"AF10","nnh":1,"eco_id":84,"shape_leng":5.649999973,"shape_area":0.0792805555019,"nnh_name":"Half Protected","color":"#C98D68","color_bio":"#D6C39D","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":945.8359214512658,"percentage":0.019368768356042308}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[143.80605325200008,-35.71675154699989],[143.63933461800002,-35.749447080999914],[143.54655801,-35.878943222999965],[143.57188418500016,-35.96359417199983],[143.4114560600002,-36.073410913999965],[143.46206046800035,-36.158323646999975],[143.64500327700011,-36.122423513999934],[143.66857058400012,-36.061026863999984],[143.7569598770001,-36.01491322199996],[143.7922075260002,-35.94568658099996],[143.80605325200008,-35.71675154699989]]],[[[137.6281900030002,-35.56336999599989],[137.5113800030001,-35.59566999599997],[137.3289200040001,-35.57849999599995],[137.07054000400012,-35.66911999499996],[136.7836700040001,-35.699999994999985],[136.58696000400005,-35.748349994999955],[136.53864000400006,-35.898919994999915],[136.75663000400004,-36.049319994999905],[136.8563900040001,-36.01736999499991],[136.91393000400012,-36.04280999499997],[137.17702000400027,-36.00954999499993],[137.20860000400023,-35.973589994999884],[137.368450004,-35.9970899949999],[137.45668000400008,-36.066759994999984],[137.6165700040002,-35.98944999599996],[137.5980600040001,-35.938529995999886],[137.74352000400017,-35.85266999599992],[137.93752000300003,-35.86461999599993],[138.04293000300015,-35.90378999599983],[138.11952000300005,-35.82005999599994],[138.06404000300006,-35.755439995999836],[137.97344000300018,-35.71988999599995],[137.8220800030001,-35.79978999599996],[137.78069000300013,-35.72427999599995],[137.58994000300015,-35.733959995999896],[137.63942000300017,-35.657499995999956],[137.6281900030002,-35.56336999599989]]],[[[143.46134783900027,-34.95253309799983],[143.34640253200018,-34.89301264199986],[143.3326235740002,-34.97188528599992],[143.4031802500001,-35.18247861499992],[143.4917269550001,-35.120196328999896],[143.46134783900027,-34.95253309799983]]],[[[143.60630707200005,-34.715350456999886],[143.55250486700004,-34.66057887799991],[143.43911590400012,-34.719191955999975],[143.2740607200002,-34.74000173299993],[143.47686633600006,-34.88406692899997],[143.50456129400004,-34.95968903199986],[143.7667836930001,-34.99305230099998],[143.73411477200023,-34.838347558999885],[143.57556065400001,-34.76819922499993],[143.60630707200005,-34.715350456999886]]],[[[143.5836322570002,-34.398864067999966],[143.41723457100022,-34.43575232799998],[143.29266235500018,-34.4041438349999],[143.36889473300005,-34.51756623899996],[143.33991803800006,-34.62293223099988],[143.41723478300003,-34.68862877299989],[143.6057274030003,-34.61171632899993],[143.64106648200016,-34.438636001999896],[143.5836322570002,-34.398864067999966]]],[[[145.83786058700002,-33.35883427099992],[145.68684371800032,-33.36073462599995],[145.57063241000003,-33.498861684999895],[145.53242440400004,-33.617407319999984],[145.43841491600017,-33.65266281699991],[145.4048456720002,-33.70806371499992],[145.4476472050003,-33.83410513399991],[145.59286593000002,-33.985075655999935],[145.534119636,-34.02033113899995],[145.581116919,-34.08580674399997],[145.72046063300013,-34.152960468999936],[145.77922372600005,-34.15295949399996],[145.85141133200023,-33.89611259499998],[145.8878189210002,-33.83744239099997],[145.8979347940001,-33.68773018199988],[145.84332328100004,-33.523858351999934],[145.87365787900012,-33.434842021999884],[145.83786058700002,-33.35883427099992]]],[[[142.20171523500005,-32.95301990899992],[142.07419722800012,-32.997316742999885],[142.153955407,-33.10365120699993],[142.06254024800012,-33.161024548999876],[142.01116387900015,-33.235972222999976],[142.07039887800022,-33.29580926899996],[142.03231329800008,-33.355646741999976],[141.9507242210002,-33.32421778299994],[141.90841102700017,-33.24685208099993],[141.79303927700005,-33.27914767999994],[141.89148975500007,-33.34839580099998],[141.87482794900006,-33.47370455999993],[141.7927509990002,-33.51309925499993],[141.7330146590001,-33.683810782999956],[141.80129826900009,-33.80462125899987],[141.72643910700015,-33.87027980899995],[141.85382004000007,-34.004219906999936],[142.00623922400007,-33.77680772899993],[142.10076752400028,-33.79104373399991],[142.1611304940002,-33.73132080499988],[142.27993536500003,-33.718987485999946],[142.38444265600015,-33.6670578159999],[142.4285857750001,-33.554104620999965],[142.53374866100035,-33.421028726999964],[142.41625534700006,-33.324956141999905],[142.37600225500012,-33.25679520299991],[142.18834889000016,-33.1349240319999],[142.20171523500005,-32.95301990899992]]],[[[142.23349893300008,-32.753347093999935],[142.1228420010002,-32.795660032999876],[142.19770192100032,-32.846647157999826],[142.23349893300008,-32.753347093999935]]],[[[141.94136803800006,-32.468218100999934],[141.82859024200002,-32.47343310699995],[141.82611845300005,-32.63571394999991],[141.700309585,-32.65767919099994],[141.61371567800006,-32.72385271499991],[141.52501618300016,-32.66894398599993],[141.43614922600023,-32.68181088199998],[141.3781661690001,-32.80986676899994],[141.1860887370001,-32.78147369699991],[141.15648641100006,-32.672144510999885],[140.76559828600023,-32.583583198999975],[140.60221857800002,-32.593040601999974],[140.5254221470002,-32.590681847999974],[140.3861273800003,-32.71129737099989],[140.34781280400023,-32.7993884899999],[140.11117169500005,-32.88338009399996],[140.03867704000015,-32.83986767999994],[139.98570108900014,-32.91027878299997],[139.87757242600026,-32.93604353799992],[139.81215278000002,-32.992695309999874],[139.75054898300004,-32.945765811999934],[139.63514781600009,-33.02538484299993],[139.637103098,-33.11954478799993],[139.51031034400012,-33.1188049239999],[139.36320520200002,-33.14673629799995],[139.2302245730001,-33.2897338059999],[139.3209227540001,-33.30073520899998],[139.32432588100016,-33.39743448199994],[139.17503392400022,-33.39204045999992],[139.1537320220002,-33.48523693499993],[139.20112594600027,-33.62614045199996],[139.08102437900004,-33.66713697399996],[139.15241971200032,-33.8979377849999],[139.11332665100008,-33.98633928299995],[139.25863662100016,-34.261939910999956],[139.1656497810003,-34.39324192799984],[139.12763946400014,-34.52604283999989],[139.04113797200023,-34.54374324299994],[139.0429383070001,-34.60764301399996],[138.96473712600016,-34.65024551199997],[138.97784393400013,-34.71314617699994],[139.05804438600023,-34.80204407999997],[138.88446012400016,-34.95294600599988],[138.94155856200007,-35.02664592399998],[138.9194642570003,-35.119648269999914],[138.8305512600001,-35.222351241999945],[138.6762540860002,-35.164451772999826],[138.5968629460001,-35.26774970599996],[138.4139711260002,-35.41325389199994],[138.33288000300013,-35.40207999599994],[138.2890800030002,-35.47286999599993],[138.12311000300008,-35.56110999599986],[138.09522000300012,-35.62419999599996],[138.16254000300023,-35.66078999599995],[138.283620003,-35.638929995999945],[138.52300000300033,-35.642629995999926],[138.6312600030002,-35.54393999599995],[138.71080000300014,-35.51334999599993],[138.95140000300034,-35.591299995999975],[139.15315000300006,-35.71312999599991],[139.4134000030001,-35.92713999599994],[139.53271000300015,-36.054789995999954],[139.67837743600023,-36.26157055999994],[139.71524033600008,-36.24711971999983],[139.58575453600008,-36.02464310199997],[139.469756941,-35.89974582999997],[139.3270565900001,-35.788547810999944],[139.34895345100006,-35.705146520999904],[139.45635960000004,-35.63574237599988],[139.42056299400008,-35.53584312599986],[139.46246322200022,-35.480842544999916],[139.54235801900006,-35.507644386999914],[139.70135461100017,-35.47734068499983],[139.84248339300018,-35.53424835599998],[139.92694078600027,-35.542240025999945],[139.99964877200023,-35.6014401299999],[140.03303558800008,-35.694839529999854],[140.22184789900018,-35.79473492599993],[140.48664877400006,-35.86523411799993],[140.43304408500023,-35.94883349199995],[140.4601136020001,-36.044815308999944],[140.65031396100017,-36.163170098999956],[140.73245208400022,-36.28963064399994],[140.64616395900032,-36.37063579599993],[140.57995571200024,-36.3258360879999],[140.36675990900005,-36.370639552999876],[140.34205604400017,-36.40213757599997],[140.51675396300004,-36.52193448499992],[140.6891628950002,-36.738033507999944],[140.77265929400005,-36.89693471299995],[140.78955108100013,-36.998134293999954],[140.8939263300001,-37.1592685679999],[141.07728702800011,-37.20952114599993],[141.15911813600007,-37.28391215399995],[141.1349866610002,-37.2583846039999],[141.0966920610001,-37.084883436999974],[141.2560566110002,-37.10227446299996],[141.31940615300005,-37.171479612999974],[141.39437112000007,-37.119845378999855],[141.69037580300017,-37.09546213799996],[141.79144232000021,-37.159367045999886],[141.89557683600003,-37.11933119599996],[141.94914990300015,-36.9908343379999],[142.03472100300007,-37.022399045999975],[142.11285592800004,-36.97343926299993],[142.150670095,-37.053855145999876],[142.25977987800024,-37.034545971999876],[142.33878415300023,-36.969590037999865],[142.35057616900008,-36.887599929999965],[142.45990218500003,-36.88009182999991],[142.54880495300017,-37.05420796299995],[142.5365736860001,-37.093705437999915],[142.64630951100003,-37.247354578999875],[142.75223304400015,-37.261123962999875],[142.68769639400023,-37.15383221299987],[142.70989177700005,-37.05911419599988],[142.65051624400007,-37.00321562999994],[142.68002213500006,-36.94234092999989],[142.79633891100002,-36.97783942999996],[142.96599176100005,-36.969058696999866],[143.0620817360002,-36.94272471299996],[143.0336966860001,-36.882204137999906],[142.9222259520002,-36.86872327999998],[142.96856044400022,-36.77568568799995],[142.95763526000007,-36.673000471999956],[143.15902960200003,-36.665282329999854],[143.29561703500008,-36.46575860499985],[143.27596812700006,-36.38393085499996],[143.38297473600016,-36.376801238999974],[143.4029162270001,-36.27203265599985],[143.3495829100001,-36.1278386059999],[143.35283412700005,-35.99203992199995],[143.32386176800014,-35.9377058309999],[143.36572309300016,-35.83841631399997],[143.45979507700008,-35.84303071399995],[143.52026252700023,-35.73570017299983],[143.60013224400018,-35.66421171499991],[143.67256069300015,-35.44995701399995],[143.5703728100001,-35.4212088299999],[143.52167744400015,-35.31032458899995],[143.45364606800013,-35.27997222299996],[143.2883456180001,-35.03157597299986],[143.2539627010001,-34.89804994799994],[143.34311457700005,-34.86309348999987],[143.20985426000016,-34.801449564999984],[143.1611777840003,-34.715913247999936],[142.99900374300012,-34.71854219799985],[142.87425730200016,-34.69562941499993],[142.77462308500003,-34.591846964999945],[142.7055657840001,-34.629463088999955],[142.7122130350001,-34.739136664999876],[142.6029595440002,-34.7955031059999],[142.48835996900027,-34.76239955599988],[142.36096365900005,-34.77274215599988],[142.3263509850002,-34.71233189799989],[142.37046549300032,-34.65239648099998],[142.3752677020002,-34.508383789999925],[142.2933200010001,-34.35618177299989],[142.20921781000004,-34.27456591399988],[142.2152301020003,-34.20827489799996],[142.09015213400005,-34.20454694799997],[142.02542692600002,-34.13195673099989],[141.85774446000028,-34.23691858999996],[141.63471056900016,-34.24779703899998],[141.53260258500006,-34.22069693999998],[141.47879686800013,-34.26749024699984],[141.36313091800002,-34.244528913999886],[141.21699020200015,-34.24527197199984],[141.0990407600001,-34.189648597999906],[140.92965662000006,-33.97862595099997],[140.81951941900013,-34.07672491999995],[140.80668612500017,-34.13827512099988],[140.84170540700006,-34.25462330599987],[140.70541363400002,-34.283424267999976],[140.61572233800018,-34.373028156999965],[140.66943326600017,-34.45322407799989],[140.5580750590002,-34.495765879999965],[140.386322,-34.365726666999876],[140.31492615700006,-34.19682687199992],[140.1817323070003,-34.16553123799997],[139.94830299600017,-34.198990075999916],[139.83383174100004,-34.074432681999895],[139.92262238000023,-34.06653234599992],[139.95602413000006,-34.132732191999935],[140.10893250900006,-34.16593171299991],[140.1601260110001,-34.14723229299989],[140.3708343940001,-34.18202613799991],[140.48251363100007,-34.176628249999965],[140.5593107330003,-34.243026509999936],[140.65310655100006,-34.23172345399996],[140.64622587200006,-34.06432193099988],[140.72430663900013,-33.977034474999925],[140.86357556000019,-33.95175700999994],[140.9662400850002,-33.88974085499996],[141.05066879900016,-33.9558069119999],[141.0505316340001,-34.03255836099987],[141.16988745800018,-34.0650283789999],[141.25318562300026,-33.91054171099995],[141.38256556900035,-33.90015487899984],[141.36536908900007,-33.991176521999876],[141.53075979400012,-34.04891610699991],[141.60708460600006,-34.10196239099997],[141.77041530100007,-34.06189751799997],[141.7517382860001,-33.96741618199991],[141.67008828700023,-33.89878285799989],[141.7434521580003,-33.762702108999974],[141.68047860700017,-33.730632173999936],[141.7091338790001,-33.6017682719999],[141.74876075900033,-33.578101665999895],[141.7343246700001,-33.442188226999974],[141.69256065000002,-33.369838417999915],[141.681908313,-33.11542438699996],[141.76801434300035,-33.169616152999936],[141.97350438800004,-33.075007083999935],[142.04918792700016,-32.98940513799994],[142.12548190400003,-32.8330326329999],[142.06958877300008,-32.80613898699988],[142.06496493500015,-32.72429871299994],[141.94136803800006,-32.468218100999934]]],[[[144.95670128900008,-30.81089906699998],[144.7844293940002,-30.842282986999976],[144.617452629,-31.06092512099991],[144.52229871100008,-31.1110678149999],[144.4404507060001,-31.20948358399994],[144.33911682300015,-31.18207335099987],[144.32250017700017,-31.355675247999955],[144.2352810110001,-31.435416068999928],[144.14806180400024,-31.42794095399995],[144.11400476900008,-31.555857600999957],[144.16135281000004,-31.628953056999933],[144.07331011200017,-31.722813391999978],[143.90053456300018,-31.627291615999923],[143.80585384100016,-31.620646157999943],[143.72623345900013,-31.570080428999972],[143.59841112400022,-31.62139377199992],[143.57228797300002,-31.711891823999963],[143.40901881700006,-31.669907278999915],[143.36423452400015,-31.766935909999916],[143.2886674140001,-31.826646149999874],[143.31479631700017,-31.91527773499996],[143.23996779900028,-32.07882841499992],[143.26111657100012,-32.1495224169999],[143.37062903600008,-32.15839914199995],[143.40245914300021,-32.24131907499992],[143.3685393420002,-32.369805446999976],[143.16375102200004,-32.35355510699992],[143.0615629780001,-32.39459357299995],[142.9627316750001,-32.381192671999884],[142.60665244400002,-32.43304956099996],[142.5399106100001,-32.495766989999936],[142.549569721,-32.62361273699997],[142.43699040000013,-32.728143028999966],[142.416086016,-32.79246624599995],[142.43377129700002,-32.90905885899991],[142.39035992000015,-32.93317924999991],[142.38553836000006,-33.05620325199993],[142.32039852700007,-33.09319070499987],[142.32764685100005,-33.18002856199996],[142.39840204800032,-33.204953469999964],[142.52544745300008,-33.302246785999955],[142.62595760700015,-33.43170210699998],[142.5262418660002,-33.55150653599998],[142.2729622920001,-33.748505645999956],[142.1451248430002,-33.82649722699995],[142.03898481900012,-33.80559324799998],[142.06632874000024,-33.90931783199994],[141.9955585340001,-33.92138009099989],[141.94084141500014,-34.050484145999974],[142.11521891800032,-34.14148035299996],[142.16752566900004,-34.06519347899996],[142.29176294500007,-34.15782587299998],[142.25035047100016,-34.20686809099993],[142.26724095500003,-34.29023528699997],[142.40508811100028,-34.34363200599989],[142.41653211400012,-34.447708856999895],[142.47646876000022,-34.524536913999896],[142.5554767970001,-34.70544239499998],[142.66826980100006,-34.6945436019999],[142.6361216910002,-34.56867282899998],[142.69497582100007,-34.52780524899998],[142.79007471500006,-34.54676729799996],[142.9006637220001,-34.51945105099992],[142.94958173100008,-34.649899707999964],[143.19656135100013,-34.60674682199988],[143.29121184400003,-34.63064208399982],[143.33154148300025,-34.5443720909999],[143.25273027200012,-34.45686281099995],[143.23318368200023,-34.38890406799993],[143.2896562830001,-34.33739039599993],[143.27506879100008,-34.27470738899996],[143.3926833390001,-34.190612373999954],[143.39010423900004,-34.03886749399993],[143.47924552700022,-33.815009707999934],[143.61390453600018,-33.820819522999955],[143.805585134,-33.731048281999904],[143.8419619650001,-33.63689411899992],[143.92686216200013,-33.69443101799993],[144.05230480300008,-33.65513568599988],[144.00536854100005,-33.59638938499995],[144.01038867600005,-33.513240488999884],[144.14097327100023,-33.40863766299998],[144.22846712500007,-33.39546944999995],[144.2786836460001,-33.2907332499999],[144.4267702100002,-33.28696001899988],[144.50504811300004,-33.32091831699995],[144.54465991300003,-33.25112084699998],[144.50127915100018,-33.20490211999993],[144.3678865170001,-33.22159149699996],[144.28716742500012,-33.14265041899989],[144.16828615200006,-33.14987173799983],[144.11739811300004,-33.25733172899993],[144.00686340100026,-33.17973709199998],[144.0013700610001,-33.10114676199993],[143.8551752440003,-33.022861840999894],[143.98533269200004,-32.994564251999975],[143.9853328680001,-33.070022779999874],[144.1047939660001,-33.015747167999905],[144.28019409,-33.09669852399992],[144.36907647600003,-33.046699228999955],[144.437817321,-32.955421204999936],[144.5303925940002,-32.96966141299998],[144.6087162050003,-32.90700115299995],[144.63149751100002,-32.824401576999946],[144.75681819300007,-32.84576378899993],[144.81663272900005,-32.81158412499991],[144.87217498600012,-32.90842373199996],[145.00707813600002,-32.915888762999884],[145.1186816170001,-33.03996134799996],[145.2356709080001,-33.07978282499994],[145.32812407500012,-33.08136203899994],[145.38885410800003,-33.13298240499995],[145.49969445600004,-33.15423766999993],[145.79197747600017,-33.25264066499989],[145.88830675600013,-33.25821351999997],[145.93750101700005,-33.30667534799994],[146.06843689100003,-33.36392559799998],[146.07098573400003,-33.20189258399995],[146.1303272370002,-33.13921328299989],[146.22337543000003,-33.15782126099998],[146.24873546200013,-33.06647866299994],[146.1438616590001,-32.97006195499989],[146.12590170600004,-32.722713645999875],[146.04913500300017,-32.71294822799996],[146.04576291800015,-32.9260826819999],[146.00177197400023,-33.00220106199998],[145.82585306800013,-32.96160174299996],[145.7649706960001,-32.787377320999894],[145.5818641760003,-32.733293567999965],[145.58845606300008,-32.822694499999955],[145.67073205500014,-32.873463866999884],[145.6429911800002,-32.93316767899995],[145.439437665,-32.982530537999935],[145.40512036000018,-33.05539524999995],[145.28854299700004,-32.99728240299987],[145.32577443200012,-32.914465492999966],[145.2906029510001,-32.83794312899994],[145.13171235200002,-32.846480559999975],[145.10781681100002,-32.727856333999966],[145.18345517800003,-32.67292463399997],[145.32334855400006,-32.79926605399993],[145.49052454500008,-32.72193779899993],[145.56196645500006,-32.65492123699994],[145.53176900300014,-32.61146827099998],[145.53544515400006,-32.30436644399998],[145.4470805650003,-32.20126343399994],[145.53544461100012,-32.153392315999895],[145.52882185100032,-32.07680109199998],[145.38447281000003,-31.998736163999922],[145.31304557800013,-31.914044241999875],[145.15314936700008,-32.136118258999886],[145.0420197750003,-32.215259028999924],[144.98753030600017,-32.15118757699992],[144.8605919150002,-32.1318321629999],[144.77570654400006,-32.06763468199995],[144.6867632320001,-32.13728005699994],[144.58829753900034,-32.10868106299995],[144.49900331600008,-32.19246382499989],[144.41962691100002,-32.18033716899998],[144.37066072100026,-32.104726061999884],[144.47034641900018,-32.06458368099993],[144.43665460300008,-32.014305957999966],[144.30167532100018,-32.07119832399991],[144.23677859800011,-31.938116242999968],[144.33158176000006,-31.952276939999933],[144.535576901,-31.877536858999918],[144.62477897100007,-31.72605245799997],[144.58710418600015,-31.590716276999956],[144.64937489200008,-31.534582739999905],[144.60471176900012,-31.431707759999938],[144.84776993600008,-31.457305824999935],[145.06941885100002,-31.221363348999944],[145.07015104900017,-31.101852310999902],[145.12793598200017,-30.90924152899987],[144.95670128900008,-30.81089906699998]]]]},"properties":{"objectid":456,"eco_name":"Murray-Darling woodlands and mallee","biome_num":12,"biome_name":"Mediterranean Forests, Woodlands & Scrub","realm":"Australasia","eco_biome_":"AU12","nnh":3,"eco_id":203,"shape_leng":95.509732227,"shape_area":20.3606185419,"nnh_name":"Nature Could Recover","color":"#CD8966","color_bio":"#FE0000","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":208217.0885355191,"percentage":6.303126394931391}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[25.313667297000165,-28.818288802999916],[25.23795318600014,-28.726585387999876],[25.13643073999998,-28.811082839999926],[25.03898429900005,-28.843221663999884],[25.025676727000132,-28.905277251999905],[25.126773834000176,-28.925821303999953],[25.108505249000018,-29.057546615999968],[24.90668869000001,-29.008197783999947],[24.865386963000162,-29.05221939099988],[24.727426529000127,-29.01333427399993],[24.520572662000063,-29.03634262099996],[24.524362564000114,-29.125570296999967],[24.57332420300014,-29.178983687999903],[24.542505264000056,-29.27418136599988],[24.47261810300006,-29.303806304999966],[24.38981819200012,-29.24075698899992],[24.312334061,-29.259748458999923],[24.261438370000178,-29.214170455999977],[24.295623779000096,-29.123773574999973],[24.142555237000067,-29.065660476999938],[24.0491199490001,-29.10288238499993],[23.94422531100014,-29.10245895399987],[23.97059822099999,-29.29417228699998],[24.014854431000174,-29.368373870999903],[24.155513763000044,-29.366003035999938],[24.166194916000165,-29.44872283899997],[24.008563994999975,-29.464813231999926],[24.09360885600006,-29.55700492899996],[23.89790916400017,-29.503658294999923],[23.848812103000114,-29.355068206999874],[23.784172058000138,-29.279674529999966],[23.74102020300012,-29.05115127599987],[23.589281082000184,-29.04414558399992],[23.55859756500007,-29.10607719399991],[23.436258316000192,-29.198020934999874],[23.40213012700019,-29.120443343999852],[23.31522560100018,-29.099843978999957],[23.236064911000028,-28.94198226899988],[23.16017913800016,-29.091325759999904],[23.096473694000167,-29.166311263999944],[23.048458099000072,-29.284481048999965],[22.98367118800013,-29.2121620179999],[22.991308212000035,-29.12892150899995],[22.939052582000045,-29.07708167999988],[22.824632645000065,-29.075618743999883],[22.722980499000187,-29.111581801999932],[22.597534180000082,-29.09487914999994],[22.589517593000153,-29.191738128999873],[22.489883423000094,-29.233322143999942],[22.44397735600012,-29.148096084999963],[22.386854172000085,-29.12234878499993],[22.292608261000055,-29.19066047699988],[22.313524246000043,-29.27251052899993],[22.384601593000127,-29.25931739799995],[22.405351639000116,-29.341302871999915],[22.51594734200006,-29.400253295999903],[22.60161018400015,-29.360525130999918],[22.676879883000026,-29.398677825999926],[22.72131347700008,-29.502674102999947],[22.640623092999988,-29.559926986999983],[22.729879379000067,-29.690643310999974],[22.86866569500006,-29.759092330999977],[22.904159546000074,-29.88190841699992],[22.975139618000185,-29.87329292299995],[23.04348754900019,-30.21031951899994],[22.881961823000097,-30.20894241299993],[22.78609848000019,-30.110971450999955],[22.67593002300009,-30.146589278999897],[22.602743149,-30.115837096999826],[22.579051971000183,-30.31824684099996],[22.489440918000184,-30.379625319999946],[22.466627120999988,-30.45542716999995],[22.269552231000034,-30.441080092999982],[22.24980163600003,-30.416301726999905],[22.02384567300004,-30.306367873999932],[22.017532349000078,-30.404823302999887],[22.095241547000114,-30.43264198299994],[22.045824051000068,-30.501735686999893],[22.092836380000108,-30.562101363999943],[22.00491333000008,-30.62748718299997],[22.043642044000137,-30.806777953999926],[21.924524307000127,-30.817594527999972],[21.871980667000116,-30.92093276999998],[21.778959274000158,-30.93729019199992],[21.579814911000085,-30.828771590999906],[21.604721069000107,-30.777999877999946],[21.76333236700009,-30.772523879999937],[21.657617569000024,-30.63348007199994],[21.57525444000015,-30.60846328699995],[21.3834781650001,-30.855901717999984],[21.214536667000118,-30.973285674999943],[21.171316147000027,-30.951286315999937],[21.064182281000114,-31.058618545999934],[21.007970810000074,-31.072179793999965],[20.86222076400003,-30.982383727999945],[20.818735123000124,-31.02611160299989],[20.81247711200001,-31.185714721999886],[20.752386092999984,-31.22529220599995],[20.652979307000123,-31.126287582999907],[20.470706940000184,-31.09726524399997],[20.34263229400011,-31.209890365999854],[20.254667282000128,-31.20967674299993],[20.048122406000118,-31.294460296999944],[19.995412827000166,-31.35982131999998],[20.07572174100011,-31.46186065699993],[20.188970566000023,-31.447832107999943],[20.286626816000023,-31.514848708999978],[20.286012650000146,-31.59700393699984],[20.327661514000056,-31.811616897999897],[20.450635910000074,-31.853086471999973],[20.54780006400017,-31.95739173899989],[20.572423935000188,-32.05395126299993],[20.638376236000056,-32.12633514399994],[20.83114814800018,-32.14698409999994],[20.966943741000023,-32.140632628999924],[21.200809479000156,-32.18648529099994],[21.39667701700006,-32.14003372199994],[21.423618317000034,-32.10475921599988],[21.605815887000063,-32.109462737999934],[21.65358734100016,-32.08276367199994],[21.79346847500011,-32.13875198399995],[21.72465133700007,-32.2565307619999],[21.679359436000084,-32.19899368299991],[21.550024033000057,-32.21396636999992],[21.528648376000035,-32.289726256999984],[21.531976700000087,-32.29126739499998],[21.4155502320001,-32.384529113999974],[21.27985191300013,-32.41651153599997],[21.224342346000128,-32.467529296999885],[21.237623215000042,-32.473957061999954],[21.21544838000017,-32.48826217699991],[21.13637733500019,-32.559719085999916],[21.175184250000086,-32.71917724599996],[21.071832657000186,-32.74569320699993],[20.962263107000183,-32.85503387499989],[21.029846191000047,-32.95995712299998],[21.119991302000017,-33.16100311299988],[21.193122863999974,-33.20498657199994],[21.50475502,-33.168289184999935],[21.66783905000011,-33.20719909699989],[21.75218963599997,-33.25495529199992],[21.76122093200013,-33.254329680999945],[21.87367820700001,-33.249919890999934],[21.90445137000006,-33.25024032599998],[21.96972656200012,-33.24791717499994],[21.984117508000168,-33.24660873399995],[22.030044556000178,-33.23942184399988],[22.042398453000146,-33.237930297999924],[22.082466125000167,-33.235580443999936],[22.094491959000038,-33.23376846299993],[21.974916458000052,-33.117179870999905],[22.058000565000043,-33.0730018619999],[22.3299465180001,-33.091152190999935],[22.419692993000126,-33.140213012999936],[22.514999390000128,-33.17100143399989],[22.72800064100005,-33.16299819899996],[22.781999588000133,-33.05599975599995],[22.971000671000127,-33.077999114999955],[22.995000839000113,-33.11299896199995],[23.164449692,-33.10612106299993],[23.319200516000024,-33.13007354699994],[23.44812202500009,-33.08309555099993],[23.44884109500009,-33.07607650799986],[23.668531418000157,-33.03549575799997],[23.760618210000132,-33.038249968999935],[24.10127449000015,-33.1196327209999],[24.148872375000167,-33.12538528399995],[24.17358207700005,-33.12770843499993],[24.20794677700013,-33.12941360499997],[24.227460861000054,-33.13163757299998],[24.249271393000072,-33.13399505599989],[24.280012130999978,-33.1402664179999],[24.280303955000136,-33.14144515999993],[24.2354640960001,-33.20820999099993],[24.237325668000096,-33.20304870599995],[24.26026916500018,-33.15716552699996],[24.460987091000106,-33.19628524799998],[24.501014709000174,-33.24581909199992],[24.50149917600004,-33.24544525099998],[24.612560272000167,-33.27236556999992],[24.609500885000102,-33.274936675999925],[24.50060081500004,-33.26870346099997],[24.439147949000073,-33.287723540999934],[24.480827332000104,-33.29525375399993],[24.490610123000124,-33.296627044999866],[24.50666236900014,-33.29693603499993],[24.49816513100012,-33.301841735999915],[24.617908478,-33.27744674699994],[24.617046356000117,-33.27310180699993],[24.73090934800007,-33.294841765999934],[24.7473888400001,-33.29702758799988],[24.83194351200018,-33.314559936999956],[24.834619522000082,-33.315895080999894],[24.84134864800012,-33.25196838399995],[24.570779800000025,-33.20522308299991],[24.453468323000095,-33.163822173999904],[24.343069077,-33.044342040999936],[24.447792053000114,-33.008819579999965],[24.501258850000056,-32.86373138399995],[24.7246456150001,-32.84052276599988],[24.772306442000115,-32.77899932899993],[25.09358978300014,-32.85869216899988],[25.141975403,-32.76839065599995],[25.19252586400006,-32.76493072499994],[25.247371674000135,-32.86028671299994],[25.365430832000072,-32.88137817399996],[25.345390320000092,-32.76502990699987],[25.370929718000127,-32.67047119099993],[25.296495438000193,-32.577808379999965],[25.16677665700007,-32.35554885899995],[24.856891632000043,-32.335357665999936],[24.70979881300019,-32.28734207199983],[24.734994888000074,-32.21139144899996],[24.639039993000097,-32.113220214999956],[24.509071350000056,-32.04661560099987],[24.567455292000147,-31.93611907999997],[24.672927856000058,-31.893291472999977],[24.74662208600006,-31.829912185999945],[24.773849487000177,-31.719572066999945],[24.91647911100017,-31.606994628999928],[24.953153610000186,-31.710853576999966],[24.86871910100018,-31.759523391999892],[24.95812797500008,-31.87842559799992],[24.92877578700012,-31.95834350599995],[25.004936218000125,-32.03449630699998],[24.992900848000147,-32.083099364999896],[25.060819626000068,-32.17147064199992],[25.213876724000045,-32.12009048499988],[25.267490387000066,-32.18900680499996],[25.34222602800014,-32.21533966099997],[25.46768760700013,-32.20686340299994],[25.432321548000175,-32.134727477999945],[25.500017166000134,-32.03821182299998],[25.560218811000084,-32.003284453999925],[25.682846069000107,-32.06049728399995],[25.790735245000178,-31.990304946999913],[25.90359306300013,-32.05258941699998],[26.125005722000026,-31.882112502999973],[26.091320038000163,-31.82252693199996],[26.08742904700017,-31.80285263099995],[26.015752792000114,-31.763433455999973],[25.979175568000073,-31.634893416999887],[26.064872742000034,-31.597082137999905],[26.103754044000084,-31.485359191999976],[26.082683563000103,-31.395952224999974],[26.118614197000113,-31.32607078599989],[26.19085693400018,-31.32415008499987],[26.32900619500009,-31.237819671999944],[26.33058548000014,-31.167810439999982],[26.273824692000062,-31.10792922999991],[26.332511902000192,-31.068984984999872],[26.335884094000107,-30.986297606999926],[26.42241287200011,-30.941190719999895],[26.422283173000153,-30.750101088999884],[26.608350754000185,-30.72285461399997],[26.70408248900003,-30.758699416999946],[26.791406631000086,-30.717168807999883],[26.747512817000086,-30.658226012999933],[26.39990043600011,-30.556776046999914],[26.270053864000147,-30.662437438999973],[26.193569183000136,-30.55057144199992],[26.04552459700011,-30.60231018099995],[25.95167160000011,-30.548225402999947],[25.770832062000125,-30.68219375599989],[25.682365417000142,-30.678874968999935],[25.60327148400006,-30.595876693999912],[25.306772232000128,-30.667648314999894],[25.191373825000028,-30.608020781999926],[25.168582916,-30.498405456999876],[25.09562492400005,-30.433584212999904],[25.00975608800013,-30.448160171999973],[24.837583542000175,-30.385429381999984],[24.827348709000034,-30.507591247999983],[24.93141365100007,-30.584436416999893],[24.805030823000152,-30.66547203099998],[24.601474762000123,-30.644702910999968],[24.662231445000145,-30.59566116299993],[24.701265335000016,-30.415109633999975],[24.576560974000188,-30.46014785799997],[24.52031517000006,-30.438447951999876],[24.348680496000043,-30.564474105999977],[24.337579727000048,-30.641822814999955],[24.19510841400006,-30.583570479999935],[24.230070114,-30.489250182999967],[24.25162506100014,-30.31321906999989],[24.324001312000178,-30.375751494999975],[24.372367859000178,-30.50040435799997],[24.500061035000158,-30.461999892999927],[24.523841858000026,-30.383644103999984],[24.622146606000058,-30.376035689999924],[24.78142929100011,-30.415233611999895],[24.822824478000086,-30.329048156999875],[24.77401733400012,-30.194585799999913],[24.61810493500019,-30.092117309999935],[24.606683731000032,-29.99358749399994],[24.546430588000135,-29.96342849699994],[24.468561172000022,-29.995180129999937],[24.415569305000133,-29.835914611999954],[24.45064353900017,-29.781549453999958],[24.59302902200011,-29.89735031099997],[24.74610328700004,-29.894411086999924],[24.753921509000122,-29.752853393999885],[24.943798065000124,-29.775249480999946],[25.070579529000156,-29.761693953999952],[25.121675491000133,-29.72002220199994],[25.22484016400017,-29.757553100999928],[25.265806198000064,-29.611673354999937],[25.192947388000107,-29.58983230599989],[25.1458911900001,-29.50679206799998],[25.212678909000147,-29.458559035999826],[25.41880226100011,-29.50591278099995],[25.560516356999983,-29.498643874999914],[25.487461090000068,-29.23287582399996],[25.52524757400016,-29.18123245199996],[25.50257682800003,-29.013711928999896],[25.461093903000062,-28.91628456099994],[25.313667297000165,-28.818288802999916]],[[25.681053162000183,-30.880989074999945],[25.743625641000165,-31.034896850999928],[25.673809052000138,-31.02895164499995],[25.58878898600011,-31.087244033999923],[25.594022751000182,-31.1556892399999],[25.658512115,-31.21142196699992],[25.762809753000113,-31.22033119199989],[25.816274643000156,-31.33271598799996],[25.866767883000023,-31.328817367999875],[25.900615692000088,-31.438800811999954],[25.774583817000178,-31.40679550199991],[25.712165833000086,-31.35119438199996],[25.67922592200017,-31.25762748699998],[25.62290382400016,-31.257455825999898],[25.520816803000116,-31.321296691999976],[25.395500183000138,-31.282814025999983],[25.461879730000135,-31.228141784999877],[25.39164352400013,-31.024667739999984],[25.498062134,-31.07025527999997],[25.681348801000013,-30.964017867999928],[25.681053162000183,-30.880989074999945]]]},"properties":{"objectid":460,"eco_name":"Nama Karoo shrublands","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Afrotropic","eco_biome_":"AF13","nnh":3,"eco_id":101,"shape_leng":112.685077038,"shape_area":15.3261767424,"nnh_name":"Nature Could Recover","color":"#BA8D4A","color_bio":"#CC6767","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":162242.17311001048,"percentage":0.6149688204149057}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[18.487472534000062,-31.769893645999957],[18.488777161000144,-31.67695808399992],[18.383943558,-31.65703010599998],[18.2419528960001,-31.572242736999954],[18.199235916000134,-31.61915588399995],[18.23336792000015,-31.816137313999832],[18.280187607000073,-31.905643462999876],[18.316659927000103,-31.86650848399995],[18.313945769999975,-31.720170974999917],[18.393541336000112,-31.671115874999884],[18.487472534000062,-31.769893645999957]]],[[[18.884881973,-31.451032638999948],[18.708093643000097,-31.494398116999946],[18.60027885400001,-31.54274368299997],[18.52500343300005,-31.537420272999952],[18.443830490000096,-31.61163520799994],[18.558725357000128,-31.662958144999948],[18.74425315899998,-31.527378081999984],[18.884881973,-31.451032638999948]]],[[[16.733454528000152,-27.530636097999945],[16.557291873000054,-27.48347571499994],[16.444829777000166,-27.346131354999898],[16.19097565500016,-27.329082196999934],[16.082316496999965,-27.215794214999903],[16.083566850000125,-27.337551159999975],[16.262145324000073,-27.512008579999872],[16.33334959300015,-27.51825687099995],[16.410886092000112,-27.58544329399996],[16.540449102000082,-27.604733639999893],[16.683152318000168,-27.589266539999926],[16.678109951000124,-27.711050039999975],[16.404824015000088,-27.62497747699996],[16.324931450000065,-27.63718496599995],[16.160138178000125,-27.499393126999962],[15.87526126400013,-27.309859410999877],[15.863077511000029,-27.218085518999885],[15.759535275000133,-27.18567879099993],[15.807657144000132,-27.09670717599988],[15.797507902000063,-27.013195414999927],[15.671842834000188,-26.760458134999908],[15.704142752000166,-26.728404377999937],[15.633169985000052,-26.614310202999945],[15.540459963000046,-26.557673733999934],[15.361843631,-26.577805162999937],[15.258454166000035,-26.62604884999996],[15.1757502640001,-26.601305850999893],[15.084186198000054,-26.638056848999838],[15.133615816000031,-26.890890541999966],[15.228032651000092,-26.916889366999953],[15.24263132100009,-27.052306143999886],[15.278765135000015,-27.16142573999997],[15.289717368000026,-27.297195671999873],[15.419779392000066,-27.464833078999845],[15.524186733000079,-27.624331345999963],[15.553271042000176,-27.731901225999877],[15.639923011000121,-27.822381635999932],[15.685722329999976,-27.93272909799998],[15.751389865000078,-28.014361380999958],[15.923889755000118,-28.172273086999894],[16.069847865000042,-28.28351191199988],[16.345947713000157,-28.54459802499997],[16.573213577000047,-28.72876739499992],[16.60634231600011,-28.867406844999948],[16.690847397000084,-28.925083159999815],[16.749099731000115,-29.04042243999993],[16.817325591999975,-29.089256286999955],[16.88108062700013,-29.295202254999936],[16.937065125000117,-29.35871124299996],[17.000883102000103,-29.52173805199982],[17.073299408000025,-29.514003753999873],[17.08841514600016,-29.650758742999926],[17.23890304600002,-29.58210945099995],[17.464078903000143,-29.519397735999974],[17.413272858000084,-29.40485382099996],[17.437738419000084,-29.2984580989999],[17.62621879600016,-29.236423491999858],[17.549856186,-29.119201659999874],[17.633323669000106,-29.112230300999954],[17.69149971000013,-29.160551070999873],[17.668256760000077,-29.30595779399988],[17.629068375000088,-29.351549148999936],[17.629583359000094,-29.450088500999982],[17.562044144000026,-29.53559875499991],[17.5472068790001,-29.63725089999997],[17.438756942999987,-29.55329894999994],[17.240165710000042,-29.584863662999908],[17.056226730000162,-29.676937102999943],[17.118570328000146,-29.920249938999916],[17.158138275000113,-29.976778029999934],[17.277925491000133,-30.337814330999947],[17.432573747000163,-30.619911529999968],[17.576599121000186,-30.82793235799994],[17.590713501000096,-30.78314590499997],[17.579801559000146,-30.86410713199996],[17.683376312000178,-30.999006270999928],[17.74572372400013,-31.134984969999948],[17.84906959500006,-31.242959975999895],[17.887586594000084,-31.219169616999977],[17.907415390000097,-31.160497664999923],[17.822576523,-31.11182212799997],[17.79200935400013,-31.036989211999924],[18.002420425000025,-31.122730254999908],[17.88848304700008,-31.222419738999918],[17.88044548000005,-31.31709670999993],[18.11787,-31.58626],[18.213769912999965,-31.557022094999923],[18.29283142100013,-31.529056548999904],[18.39566421500018,-31.567062377999946],[18.438459396000155,-31.392108916999916],[18.416751862000126,-31.305709838999917],[18.524181366000164,-31.177289962999964],[18.36432647700002,-31.074171065999963],[18.288038254000128,-30.958648681999932],[18.346927643000186,-30.896350860999917],[18.443502426000123,-30.908777236999924],[18.509016037000094,-31.005340575999924],[18.578416824000044,-31.000310897999952],[18.66253280600006,-30.91874885599998],[18.715620041000022,-30.778144835999967],[18.783584595000036,-30.68672180199991],[18.923332214000027,-30.68299102799989],[18.931669235000186,-30.622093200999984],[19.172006607000185,-30.623937606999903],[19.30564308200013,-30.749650954999936],[19.306201935000104,-30.555912017999958],[19.053506851000066,-30.451684951999937],[18.98081970200019,-30.513401030999944],[18.91925430300006,-30.485927581999874],[18.848102570000037,-30.548818587999904],[18.747501372999977,-30.530008315999908],[18.74630737300015,-30.468082427999946],[18.680671692000033,-30.374532699999918],[18.618190765000122,-30.403772353999898],[18.51021003700015,-30.344402312999932],[18.540430068999967,-30.22169876099997],[18.517988205000165,-30.13985443099989],[18.56988525400004,-30.04878425599992],[18.381664276000095,-29.972570418999965],[18.297143936000168,-29.94771194499998],[18.33974838300003,-29.906921386999954],[18.46095085100012,-29.962093352999943],[18.474634171,-29.90462303199996],[18.36242866500004,-29.77983093299997],[18.463417053000057,-29.692045211999982],[18.33974838300003,-29.632534026999963],[18.22149276700003,-29.65262794499995],[18.203683852999973,-29.69586753799996],[18.13286972000003,-29.64540290799988],[18.055189133,-29.639932631999898],[18.053588867000144,-29.639217376999966],[18.057693481000115,-29.530395507999913],[18.01166343700004,-29.5935230259999],[17.947452545000147,-29.538179397999954],[18.02101707500003,-29.496221541999944],[18.08024978600008,-29.330240249999974],[18.119989395,-29.323404311999923],[18.08653068500007,-29.30192375199988],[18.020885468000074,-29.317434310999886],[17.888750076000065,-29.176557540999966],[17.961690903000147,-29.119529723999904],[17.937946320000094,-29.04242134099991],[17.833906174000163,-28.94904136699995],[17.655681610000045,-28.92299842799997],[17.639225006000174,-28.97584915199991],[17.54957199100005,-28.987670897999976],[17.417306900000085,-28.913064956999904],[17.415576935,-28.847602843999937],[17.320646286,-28.797243117999926],[17.249732971000014,-28.63282775899995],[17.23082542400016,-28.448263167999983],[17.18373489400011,-28.404680251999935],[17.175050735000013,-28.4325695039999],[17.16803169300016,-28.410615920999874],[17.10829925500002,-28.35819244399994],[17.054279327000074,-28.30198478699998],[17.064273834000062,-28.28768730199988],[17.078182220000087,-28.248836516999916],[17.047670364000112,-28.175823211999898],[16.986179352000136,-28.23352813699995],[16.91001892100013,-28.200849532999882],[16.91153144800012,-28.092170714999952],[17.080961227000103,-28.033761977999973],[17.191585541000165,-28.110885619999976],[17.18039703400018,-28.20472526599997],[17.214561462000063,-28.247920989999955],[17.41883141000011,-28.235083561999943],[17.57111400400015,-27.951015492999886],[17.51437933500017,-28.000026079999884],[17.274796021000043,-27.914739701999963],[17.072383737000052,-27.908691130999955],[16.974203842000122,-27.873422524999967],[16.783307470000125,-27.757538886999953],[16.754727456000126,-27.715562521999914],[16.804823686000134,-27.639782367999942],[16.733454528000152,-27.530636097999945]],[[18.117742538000186,-30.13272285499994],[18.1774368290001,-30.106416701999933],[18.158910751000064,-30.11898422199988],[18.170717239000112,-30.124620437999965],[18.117742538000186,-30.13272285499994]],[[18.136363983000024,-30.154138564999982],[18.183460236000087,-30.15506172199997],[18.146512985000072,-30.156377791999944],[18.160480499000073,-30.175245284999903],[18.136363983000024,-30.154138564999982]],[[18.25763511700012,-30.25716972399988],[18.414495468000155,-30.387556075999953],[18.304107666000107,-30.434200286999896],[18.26040267900015,-30.342044829999907],[18.260658264000085,-30.355945586999894],[18.27797317500017,-30.422880172999953],[18.292968750000057,-30.457950591999975],[18.255561828999987,-30.478101729999935],[18.252389908,-30.49215888999987],[18.17667007400013,-30.43904304499995],[18.196411133000083,-30.512430190999964],[18.105392456000118,-30.477073668999935],[18.026847839000027,-30.376268386999982],[18.036138535000077,-30.38955879199989],[18.069252014000142,-30.41371345499988],[18.08107566800004,-30.401329040999883],[18.038120270000036,-30.268815993999908],[18.057542801000068,-30.219058989999894],[18.03232383700015,-30.201755523999964],[18.030349731000058,-30.259105681999927],[17.990377426,-30.24660873399995],[18.004266739,-30.273433684999873],[17.96018600500014,-30.226766585999826],[17.982654572000172,-30.22839355499997],[17.95263481100011,-30.142498015999877],[17.996311188000163,-30.1526813509999],[18.022348404000127,-30.166467666999836],[18.024024963000045,-30.160673140999904],[18.057601929000157,-30.219058989999894],[18.133743286000026,-30.255420684999933],[18.105617522999978,-30.252569198999936],[18.168392181000115,-30.321830749999947],[18.146087646000183,-30.24794959999997],[18.286359787000038,-30.277397155999836],[18.25763511700012,-30.25716972399988]],[[18.075117111000054,-30.130308150999895],[18.06451225300009,-30.127332686999978],[18.025686264000115,-30.10253333999998],[18.115697861000058,-30.124933242999873],[18.075117111000054,-30.130308150999895]]],[[[16.11372029400013,-26.432704282999907],[16.10988017400001,-26.554494855999906],[16.20263346700017,-26.75153764099997],[16.27667378100017,-26.756978914999877],[16.29789976400002,-26.668293786999925],[16.177299670000025,-26.591250185999854],[16.11372029400013,-26.432704282999907]]]]},"properties":{"objectid":461,"eco_name":"Namaqualand-Richtersveld steppe","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Afrotropic","eco_biome_":"AF13","nnh":2,"eco_id":102,"shape_leng":73.8131802293,"shape_area":4.89946619404,"nnh_name":"Nature Could Reach Half Protected","color":"#DFB44C","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":53037.11550917112,"percentage":0.20103387262181355}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[13.770469533000153,-20.39568253199991],[13.616352391000191,-20.36069281099998],[13.59757284900013,-20.26303919399993],[13.522454682000046,-20.244259652999972],[13.488651507000156,-20.311866002999977],[13.578793308,-20.41327552799993],[13.706494192000093,-20.428299161999973],[13.717761917000075,-20.503417328999888],[13.544990133000113,-20.450834611999937],[13.56752558300002,-20.582291403999932],[13.390997890000108,-20.612338670999918],[13.347695676000171,-20.657515899999908],[13.413978815,-20.87771686399998],[13.55182886100016,-21.055349530999933],[13.573749617000033,-21.134528143999944],[13.689047863000155,-21.261459063999894],[13.806253111000046,-21.42023223399997],[13.876486127000021,-21.581953257999885],[13.974493871000107,-21.70995354699994],[13.95011460000012,-21.770934686999965],[14.05324311400011,-21.849056015999963],[14.29500752500013,-22.14099625399996],[14.394601540000167,-22.27819330799997],[14.512660324000024,-22.565533694999942],[14.536553445000152,-22.908060872999897],[14.433229934999986,-22.96709570899992],[14.406686238000134,-23.015896560999977],[14.497881,-23.309001412999976],[14.493180274999986,-23.39867970599994],[14.44354957100012,-23.443757948999917],[14.512363488000176,-23.61459944199987],[14.500734988999966,-23.759925409999937],[14.509752878000143,-23.91357203799987],[14.450178057000016,-24.027189937999935],[14.499861918000136,-24.215282805999948],[14.6147189940001,-24.470397143999946],[14.593924158000107,-24.55085019899991],[14.733247284000129,-24.707946488999823],[14.797892300000058,-24.836832677999894],[14.797777915000097,-24.92702229799994],[14.880653611000184,-25.07606065899995],[14.850310117000106,-25.130537346999972],[14.81658000300007,-25.373483881999903],[14.885278728000173,-25.52772180799991],[14.83081421999998,-25.74308872799992],[14.912235103000057,-25.84256404399997],[14.908049924000068,-25.889739689999942],[14.984184481000057,-26.06034370699996],[14.956644422000181,-26.302093584999966],[15.120959990000188,-26.428609044999916],[15.141952848000074,-26.575647090999894],[15.1757502640001,-26.601305850999893],[15.258454166000035,-26.62604884999996],[15.361843631,-26.577805162999937],[15.540459963000046,-26.557673733999934],[15.633169985000052,-26.614310202999945],[15.704142752000166,-26.728404377999937],[15.671842834000188,-26.760458134999908],[15.797507902000063,-27.013195414999927],[15.807657144000132,-27.09670717599988],[15.759535275000133,-27.18567879099993],[15.863077511000029,-27.218085518999885],[15.87526126400013,-27.309859410999877],[16.160138178000125,-27.499393126999962],[16.324931450000065,-27.63718496599995],[16.404824015000088,-27.62497747699996],[16.678109951000124,-27.711050039999975],[16.683152318000168,-27.589266539999926],[16.540449102000082,-27.604733639999893],[16.410886092000112,-27.58544329399996],[16.33334959300015,-27.51825687099995],[16.262145324000073,-27.512008579999872],[16.083566850000125,-27.337551159999975],[16.082316496999965,-27.215794214999903],[16.19097565500016,-27.329082196999934],[16.444829777000166,-27.346131354999898],[16.557291873000054,-27.48347571499994],[16.733454528000152,-27.530636097999945],[16.79603344800006,-27.492548736999936],[16.70722822,-27.363732690999882],[16.73121334500007,-27.298304387999963],[16.566821659000027,-27.3032567759999],[16.430778951000036,-27.28048476099991],[16.43693302100013,-27.144282973999907],[16.492899083000168,-27.028478208999957],[16.37660682400019,-26.883133983999983],[16.40454908800018,-26.825814826999874],[16.3657831700001,-26.74743837099993],[16.46831179700007,-26.5959504999999],[16.578350194000052,-26.519789739999965],[16.627997121000135,-26.375083469999936],[16.640671037,-26.23729155599989],[16.602300826000032,-26.132993673999977],[16.55685252799998,-26.106091882999976],[16.488019234999967,-26.17657307899998],[16.24390279300013,-25.99416703599985],[16.136779130000036,-25.95334695599996],[15.989407045000178,-25.733425830999977],[15.927677678000123,-25.533279268999934],[15.95219542700005,-25.402902886999925],[16.01042082200007,-25.255737197999963],[16.025332591000108,-25.14730270399997],[15.995537370000136,-25.08190975999986],[15.82035775900016,-24.89686209099989],[15.75605666600012,-24.733896409999943],[15.660653641000124,-24.61062106499992],[15.599247840000032,-24.48271279799991],[15.587732588000108,-24.400704662999942],[15.600631963000069,-24.22132877499996],[15.68609298400014,-23.98871842099993],[15.701350606000062,-23.86954491599994],[15.675940796000134,-23.73725169599993],[15.54735877100012,-23.771996569999942],[15.388906387000077,-23.748522141999956],[15.394774994000102,-23.701573287999906],[15.541490164000095,-23.683967467999935],[15.61191344600013,-23.60767557899993],[15.72341697500002,-23.584201151999935],[15.647125086000187,-23.431617374999917],[15.54735877100012,-23.425748768999938],[15.53562155700007,-23.161661462999973],[15.629519266000045,-23.10297539499993],[15.577030447000027,-23.011049537999952],[15.493367588000126,-22.97386604499991],[15.549706214000082,-22.82362971099991],[15.634214151000094,-22.80954505499983],[15.615434609999966,-22.527851928999837],[15.709332318000065,-22.424564448999945],[15.57787552600007,-22.396395136999956],[15.526231786000096,-22.32127696999993],[15.329046598000048,-22.377615594999895],[15.258623317000058,-22.33536162599995],[15.343131254000127,-22.269633229999954],[15.259607728000049,-22.2114204369999],[15.169420493000132,-22.203904833999957],[15.0142943460001,-22.035681145999888],[14.648921122000104,-21.732820154999956],[14.320208788000116,-21.30944849699995],[14.314951344000178,-21.186992647999887],[14.412604961,-21.145677655999975],[14.412604961,-21.04051222299995],[14.506502669999975,-21.02924449799997],[14.570404917000076,-20.98607313699995],[14.450164045000122,-20.803889996999942],[14.491479036000044,-20.676189112999964],[14.371289969000031,-20.664921387999982],[14.3074395270001,-20.58604731199989],[14.311195436000048,-20.49966141999994],[14.405093144000148,-20.469614153999885],[14.375045878000037,-20.390740077999965],[14.168828624000128,-20.349425085999883],[14.097108660000117,-20.259283285999913],[14.037014126000088,-20.402007802999947],[13.995699134000063,-20.443322794999972],[13.78536826700008,-20.537220503999833],[13.770469533000153,-20.39568253199991]],[[16.11372029400013,-26.432704282999907],[16.177299670000025,-26.591250185999854],[16.29789976400002,-26.668293786999925],[16.27667378100017,-26.756978914999877],[16.20263346700017,-26.75153764099997],[16.10988017400001,-26.554494855999906],[16.11372029400013,-26.432704282999907]]]},"properties":{"objectid":462,"eco_name":"Namib Desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Afrotropic","eco_biome_":"AF13","nnh":1,"eco_id":103,"shape_leng":36.3154610517,"shape_area":7.03411922953,"nnh_name":"Half Protected","color":"#E89B49","color_bio":"#CC6767","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":79587.21018230244,"percentage":0.3016703476520671}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[18.01410947500011,-27.742149854999923],[18.03694561200018,-27.635199294999893],[17.936861406,-27.646888222999905],[17.94558435600004,-27.70663015199989],[18.01410947500011,-27.742149854999923]]],[[[16.234280233000106,-23.45872693599989],[16.110745023000106,-23.45509180299996],[15.999241494000046,-23.331851059999963],[15.98750428,-23.16753006999994],[15.858394931000191,-23.061895146999973],[15.782103043000063,-22.950391617999912],[15.805577470000173,-22.791939234999973],[15.74689140200013,-22.791939234999973],[15.77036582900007,-22.674567098999944],[15.852526324,-22.69804152599994],[15.864263538000046,-22.59827520999994],[15.969898460000081,-22.586537996999937],[16.016911072000084,-22.539525384999877],[15.971306926000125,-22.32127696999993],[15.723830970000108,-22.323766966999983],[15.603227908,-22.22362335199989],[15.663322441000162,-21.964465675999918],[15.580692457000168,-21.926906592999842],[15.56191291600004,-22.020804301999874],[15.463917283000114,-22.077043690999915],[15.400408857000059,-22.020804301999874],[15.368803878999984,-21.854413386999965],[15.220125256000188,-21.806717525999943],[15.331263350000143,-21.656773544999965],[15.272707973000138,-21.34849670699998],[15.03232983900017,-21.160701289999963],[15.017306205000182,-20.886519979999946],[15.06237710500011,-20.84144907999996],[15.009794388000103,-20.751307279999878],[14.885849413000017,-20.751307279999878],[14.810731246000103,-20.781354545999932],[14.867069871000183,-20.863984529999982],[14.758148529000152,-20.94285860499997],[14.641715370000043,-20.961638146999974],[14.570353112000134,-20.909055429999967],[14.525282212000036,-20.815157721999924],[14.570353112000134,-20.751307279999878],[14.570353112000134,-20.616094578999935],[14.698053996,-20.578535495999915],[14.795707613000047,-20.510929144999977],[14.713077629000054,-20.420787344999894],[14.649227187000122,-20.390740077999965],[14.495234945,-20.37196053699995],[14.408849053000097,-20.150361943999883],[14.266124535000074,-20.041440601999966],[14.179738643000178,-20.056464234999908],[14.202274094000074,-19.943786984999917],[14.303683619000026,-19.88744835999995],[14.314951344000178,-19.80857428399986],[14.258612719000098,-19.733456116999946],[14.175982735000105,-19.72970020899993],[14.1083763850001,-19.6696056749999],[14.052037760000019,-19.49307798299992],[13.800391900000136,-19.515613432999885],[13.78536826700008,-19.45927480799992],[13.687714650000032,-19.45551889999996],[13.650155566000137,-19.38040073299993],[13.439824699000155,-19.36913300799995],[13.368462440000144,-19.33157392399994],[13.34633061900007,-19.19782725999994],[13.35473511500004,-19.096973317999982],[13.476600295000082,-19.02973735599994],[13.392555343000083,-18.983512632999975],[13.353702984000165,-18.865938168999946],[13.23286993400012,-18.996119375999967],[13.106802507000111,-18.97510813799994],[13.098398012000075,-18.886860937999927],[13.211858697000025,-18.84063621499996],[13.102600259000042,-18.78600699599997],[12.867274394000162,-18.57589461699996],[12.833656414000188,-18.500254159999884],[12.774824947000127,-18.470838426999876],[12.787431690000062,-18.344771],[12.636657072000048,-18.219361754999966],[12.623544034000076,-18.327962008999975],[12.539499082000077,-18.327962008999975],[12.652959767000084,-18.445624941999938],[12.627746282000146,-18.504456407999953],[12.732802471000014,-18.546478883999953],[12.749611462000189,-18.693557548999934],[12.926105860000177,-18.80281598699986],[12.854667651000057,-18.82382722499989],[12.741206967000153,-18.764995757999827],[12.720195729000011,-18.80701823399994],[12.831367546000024,-18.99354217299998],[12.92526525500017,-19.087439880999966],[12.955312522000156,-18.940959455999916],[13.019162964000088,-19.06490443099983],[13.08676931400015,-19.098707606999938],[13.01540705500014,-19.16255804799988],[13.124328398000046,-19.30152665699984],[13.199446564000084,-19.324062106999975],[13.210714290000112,-19.436739357999954],[13.278320640000175,-19.538148882999906],[13.37221834900015,-19.53063706699993],[13.556464985000048,-19.58131421199988],[13.6238642080001,-19.680873399999882],[13.650155566000137,-19.789794742999902],[13.807903717000045,-19.872424725999963],[13.871754158999977,-19.872424725999963],[13.864242342000068,-19.958810617999973],[13.807903717000045,-20.07524377699997],[13.856730525000046,-20.36069281099998],[13.770469533000153,-20.39568253199991],[13.78536826700008,-20.537220503999833],[13.995699134000063,-20.443322794999972],[14.037014126000088,-20.402007802999947],[14.097108660000117,-20.259283285999913],[14.168828624000128,-20.349425085999883],[14.375045878000037,-20.390740077999965],[14.405093144000148,-20.469614153999885],[14.311195436000048,-20.49966141999994],[14.3074395270001,-20.58604731199989],[14.371289969000031,-20.664921387999982],[14.491479036000044,-20.676189112999964],[14.450164045000122,-20.803889996999942],[14.570404917000076,-20.98607313699995],[14.506502669999975,-21.02924449799997],[14.412604961,-21.04051222299995],[14.412604961,-21.145677655999975],[14.314951344000178,-21.186992647999887],[14.320208788000116,-21.30944849699995],[14.648921122000104,-21.732820154999956],[15.0142943460001,-22.035681145999888],[15.169420493000132,-22.203904833999957],[15.259607728000049,-22.2114204369999],[15.343131254000127,-22.269633229999954],[15.258623317000058,-22.33536162599995],[15.329046598000048,-22.377615594999895],[15.526231786000096,-22.32127696999993],[15.57787552600007,-22.396395136999956],[15.709332318000065,-22.424564448999945],[15.615434609999966,-22.527851928999837],[15.634214151000094,-22.80954505499983],[15.549706214000082,-22.82362971099991],[15.493367588000126,-22.97386604499991],[15.577030447000027,-23.011049537999952],[15.629519266000045,-23.10297539499993],[15.53562155700007,-23.161661462999973],[15.54735877100012,-23.425748768999938],[15.647125086000187,-23.431617374999917],[15.72341697500002,-23.584201151999935],[15.61191344600013,-23.60767557899993],[15.541490164000095,-23.683967467999935],[15.394774994000102,-23.701573287999906],[15.388906387000077,-23.748522141999956],[15.54735877100012,-23.771996569999942],[15.675940796000134,-23.73725169599993],[15.701350606000062,-23.86954491599994],[15.68609298400014,-23.98871842099993],[15.600631963000069,-24.22132877499996],[15.587732588000108,-24.400704662999942],[15.599247840000032,-24.48271279799991],[15.660653641000124,-24.61062106499992],[15.75605666600012,-24.733896409999943],[15.82035775900016,-24.89686209099989],[15.995537370000136,-25.08190975999986],[16.025332591000108,-25.14730270399997],[16.01042082200007,-25.255737197999963],[15.95219542700005,-25.402902886999925],[15.927677678000123,-25.533279268999934],[15.989407045000178,-25.733425830999977],[16.136779130000036,-25.95334695599996],[16.24390279300013,-25.99416703599985],[16.488019234999967,-26.17657307899998],[16.55685252799998,-26.106091882999976],[16.602300826000032,-26.132993673999977],[16.640671037,-26.23729155599989],[16.627997121000135,-26.375083469999936],[16.578350194000052,-26.519789739999965],[16.46831179700007,-26.5959504999999],[16.3657831700001,-26.74743837099993],[16.40454908800018,-26.825814826999874],[16.37660682400019,-26.883133983999983],[16.492899083000168,-27.028478208999957],[16.43693302100013,-27.144282973999907],[16.430778951000036,-27.28048476099991],[16.566821659000027,-27.3032567759999],[16.73121334500007,-27.298304387999963],[16.70722822,-27.363732690999882],[16.79603344800006,-27.492548736999936],[16.733454528000152,-27.530636097999945],[16.804823686000134,-27.639782367999942],[16.754727456000126,-27.715562521999914],[16.783307470000125,-27.757538886999953],[16.974203842000122,-27.873422524999967],[17.072383737000052,-27.908691130999955],[17.274796021000043,-27.914739701999963],[17.51437933500017,-28.000026079999884],[17.57111400400015,-27.951015492999886],[17.64445950700008,-27.880987010999945],[17.682552332000057,-27.772405680999896],[17.600055989000168,-27.7303266429999],[17.602055530000143,-27.58735851299997],[17.726947865000113,-27.41311321099994],[17.660460361000105,-27.36758217599987],[17.56717229100002,-27.398709991999965],[17.55699080500017,-27.49210624299991],[17.50375011400007,-27.512638367999955],[17.377689572,-27.46241704199997],[17.305500233000146,-27.397171216999936],[17.21749863500014,-27.391260573999887],[17.158213701000136,-27.43720041499995],[17.167769684000064,-27.642219949999912],[17.148093617000143,-27.714530378999882],[17.055314606000024,-27.686796707999974],[17.093374693999976,-27.59344230699992],[17.07090501000016,-27.425309778999917],[16.99341959800006,-27.347972907999917],[17.05668561500005,-27.201976721999927],[17.02391233600008,-27.027453734999938],[16.87800353000017,-26.925493647999872],[16.739999221000176,-26.89457667499994],[16.67400364499997,-26.816756022999982],[16.79489821499999,-26.563844901999914],[16.754466080000157,-26.438135613999975],[16.794281551000154,-26.413121018999902],[16.802513176000105,-26.295920590999913],[16.75961848200012,-26.123865158999877],[16.792270685000062,-25.99649492899988],[16.713906324000106,-25.86976560399995],[16.742854836000106,-25.721541018999915],[16.667689176000067,-25.504386990999933],[16.519719653000095,-25.409086011999932],[16.46567959200013,-25.28416577099989],[16.447935969000127,-25.16446040199986],[16.397195062000094,-25.052559481999936],[16.342949547000046,-24.867883434999897],[16.233177722000107,-24.628764265999905],[16.212537515,-24.501232413999958],[16.254693256000053,-24.33823748899988],[16.269722832000127,-24.204725644999883],[16.172019778000163,-23.990433589999896],[16.15503194000007,-23.770793789999914],[16.167266167000037,-23.691784303999896],[16.249412819000042,-23.50255314599991],[16.234280233000106,-23.45872693599989]],[[17.54776914100006,-27.596926937999967],[17.515625995000107,-27.746229398999958],[17.447397700000067,-27.828319345999944],[17.431579738000096,-27.637891437999883],[17.509998742,-27.550130099999876],[17.54776914100006,-27.596926937999967]]],[[[13.96703628600011,-13.23282826299993],[13.900245896000115,-13.065957204999847],[13.881696170000055,-12.897714966999843],[13.88883068000007,-12.771111023999936],[13.92738029800006,-12.594773963999955],[14.045855816000142,-12.37664681299998],[14.093246023000177,-12.148409839999943],[14.07284130500011,-12.071456964999982],[14.002443139000036,-12.020189749999872],[13.759791925000059,-11.960567032999961],[13.654399486999978,-12.236122165999973],[13.583129505000045,-12.33684548499997],[13.485710500000039,-12.421119653999938],[13.466999578000184,-12.512792528999967],[13.344929563000164,-12.606806972999891],[13.299779436,-12.577558991999922],[13.19486047100014,-12.59365794599995],[13.138435007999988,-12.663947663999977],[13.01338958499997,-12.765985181999952],[12.93585044300005,-12.8594299909999],[12.97657056700001,-12.959373289999974],[12.872819537000055,-13.102322457999946],[12.654129480000165,-13.26484286699997],[12.650059563000127,-13.33178812199992],[12.52923945800012,-13.441281090999837],[12.55508053,-13.54795371699987],[12.514539444000093,-13.87573206399992],[12.425760504000095,-13.874722044999942],[12.424920470000075,-13.942547734999891],[12.364780482000128,-14.05781985799996],[12.372949988000187,-14.151257794999879],[12.339050554000039,-14.21556945499998],[12.371689517999982,-14.287254005999955],[12.3459394730001,-14.445434432999832],[12.303609521000112,-14.571886338999946],[12.289159455,-14.750223734999963],[12.211970507999979,-14.843807515999913],[12.168359466000084,-15.022346914999957],[12.13691945000005,-15.057043802999942],[12.146704565000107,-15.19113742099995],[12.294404925000038,-15.369838394999874],[12.387357035000036,-15.597230101999969],[12.409053817000029,-15.722568434999971],[12.400522998000042,-15.917768584999976],[12.419810067000071,-16.10493973399997],[12.479525798000111,-16.20896633199993],[12.439838945000133,-16.33571901499994],[12.455046057000175,-16.539916694999874],[12.406457481000189,-16.63802562199993],[12.403861145000121,-16.74425366299988],[12.366541978000043,-16.952885595999874],[12.333884449000095,-17.03022186599992],[12.148690057000067,-17.302613597999937],[12.186510285000054,-17.449692263999964],[12.19491478000009,-17.575759690999973],[12.152892304000034,-17.72704060399991],[12.29997097000006,-17.676613632999874],[12.358802436000076,-17.77326532799998],[12.236937256000033,-17.83209679399988],[12.236937256000033,-18.016995687999895],[12.298713363000047,-18.11389276899996],[12.26635298900004,-18.185085590999904],[12.308375465000097,-18.273332790999973],[12.442847388000075,-18.306950770999947],[12.428867633000038,-18.184627920999958],[12.560510320000049,-18.19349008699993],[12.594128301000126,-18.15554055799987],[12.51176424800019,-18.098519290999832],[12.484869864000188,-17.99430355099986],[12.50840245,-17.947238377999952],[12.434442893000039,-17.799319262999916],[12.622703585000124,-17.81612825299993],[12.683215949999976,-17.621143964999874],[12.54538222900004,-17.422797878999972],[12.548744027000055,-17.385818099999938],[12.473862374000134,-17.253677018999838],[12.612896082000134,-17.20937067899996],[12.808094205000032,-17.115066245999913],[12.984609022000143,-16.982998961999954],[13.16969231100012,-16.96379184499989],[13.221246306000069,-16.823558452999976],[13.235100172000045,-16.612549994999938],[13.167618439000137,-16.460034307999933],[13.184153698000046,-16.376871231999814],[13.266829994000148,-16.264072898999927],[13.257892016000085,-16.181255673999942],[13.13186652700017,-16.052025830999867],[13.106393290000085,-15.887899095999956],[13.074216569000043,-15.820404962999874],[13.096114615000033,-15.627256249999846],[13.039358455000183,-15.278354543999967],[12.918695753000122,-14.912461926999981],[12.932549619000156,-14.75261924799986],[12.983496092999985,-14.460712446999878],[13.067066187000137,-14.19138558799989],[13.130525830000181,-14.102549802999874],[13.39821826900004,-13.85839891899991],[13.403581056000121,-13.798948396999947],[13.321798558000069,-13.675225469999873],[13.328948940000146,-13.541444777999914],[13.427713597000093,-13.502338774999885],[13.45631512600005,-13.56924958199994],[13.55597358000017,-13.497558712999819],[13.599769672000093,-13.395851119999975],[13.599304387000075,-13.277195579999955],[13.678413051,-13.192948117999947],[13.87855120800009,-13.18504842599998],[13.96703628600011,-13.23282826299993]]]]},"properties":{"objectid":463,"eco_name":"Namibian savanna woodlands","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Afrotropic","eco_biome_":"AF13","nnh":3,"eco_id":104,"shape_leng":64.4175800141,"shape_area":8.86762041887,"nnh_name":"Nature Could Recover","color":"#FCD135","color_bio":"#CC6767","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":103328.41018899981,"percentage":0.3916598829466495}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[141.3925669030001,-37.249453320999976],[141.3407684110001,-37.25094792899989],[141.2270616950001,-37.34997762099994],[141.3825953700001,-37.37501500399998],[141.3925669030001,-37.249453320999976]]],[[[141.31940615300005,-37.171479612999974],[141.2560566110002,-37.10227446299996],[141.0966920610001,-37.084883436999974],[141.1349866610002,-37.2583846039999],[141.31940615300005,-37.171479612999974]]],[[[141.15911813600007,-37.28391215399995],[141.07728702800011,-37.20952114599993],[140.8939263300001,-37.1592685679999],[140.78955108100013,-36.998134293999954],[140.77265929400005,-36.89693471299995],[140.6891628950002,-36.738033507999944],[140.51675396300004,-36.52193448499992],[140.34205604400017,-36.40213757599997],[140.36675990900005,-36.370639552999876],[140.57995571200024,-36.3258360879999],[140.64616395900032,-36.37063579599993],[140.73245208400022,-36.28963064399994],[140.65031396100017,-36.163170098999956],[140.4601136020001,-36.044815308999944],[140.43304408500023,-35.94883349199995],[140.48664877400006,-35.86523411799993],[140.22184789900018,-35.79473492599993],[140.03303558800008,-35.694839529999854],[139.99964877200023,-35.6014401299999],[139.92694078600027,-35.542240025999945],[139.84248339300018,-35.53424835599998],[139.70135461100017,-35.47734068499983],[139.54235801900006,-35.507644386999914],[139.46246322200022,-35.480842544999916],[139.42056299400008,-35.53584312599986],[139.45635960000004,-35.63574237599988],[139.34895345100006,-35.705146520999904],[139.3270565900001,-35.788547810999944],[139.469756941,-35.89974582999997],[139.58575453600008,-36.02464310199997],[139.71524033600008,-36.24711971999983],[139.67837743600023,-36.26157055999994],[139.80584000300018,-36.51438999599998],[139.86222000300017,-36.69471999599989],[139.85056000300017,-36.82344999599991],[139.6763300030002,-36.96742999599991],[139.74228000300013,-37.02493999599989],[139.79558000300017,-37.1392399959999],[139.75723000400012,-37.19464999599995],[139.82794000400008,-37.30417999599996],[139.97342000400022,-37.45960999499994],[140.11559000400018,-37.5259299949999],[140.112640004,-37.57857999499987],[140.28020000400022,-37.72816999499997],[140.37578000400003,-37.89910999499989],[140.57128000400007,-38.02193999499991],[140.66202000400017,-38.06008999499994],[140.84584000400014,-38.04131999499998],[140.98787000400011,-38.05808999499993],[141.23958000400012,-38.17785999499989],[141.38489000400023,-38.30779999499998],[141.4069100040001,-38.369369994999886],[141.5794700040002,-38.388329994999935],[141.50755621200005,-38.26481157899997],[141.3833376870001,-38.20524229499995],[141.53568023700018,-38.14838850399991],[141.51723339500006,-38.06559239599994],[141.32397168700015,-38.08003822099988],[141.32221587800007,-37.971890336999934],[141.38565156100003,-37.9436446869999],[141.50228033700012,-37.996519737999904],[141.54696185300008,-37.94387766999995],[141.67530459500017,-37.943687286999875],[141.66185110400022,-37.87066713699994],[141.4349887200001,-37.85629665399989],[141.47742956100012,-37.75819550499995],[141.3176697780002,-37.68675176299996],[141.30163009500006,-37.58043004599989],[141.22744824400002,-37.37829059599994],[141.15911813600007,-37.28391215399995]],[[140.39517180400026,-37.54804214799992],[140.50798009300013,-37.52934261699994],[140.611175752,-37.62054062199991],[140.63157661700006,-37.70114128899996],[140.72846991200004,-37.71223827599994],[140.9293666870002,-37.78093746099995],[140.80906662900009,-37.95333836599997],[140.72407505900014,-37.95974336899985],[140.67617768000002,-37.884341923999955],[140.52174356600017,-37.76340125599984],[140.39517180400026,-37.54804214799992]]]]},"properties":{"objectid":466,"eco_name":"Naracoorte woodlands","biome_num":12,"biome_name":"Mediterranean Forests, Woodlands & Scrub","realm":"Australasia","eco_biome_":"AU12","nnh":3,"eco_id":204,"shape_leng":18.3443724356,"shape_area":2.48580005863,"nnh_name":"Nature Could Recover","color":"#B3493B","color_bio":"#FE0000","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":24628.47373146684,"percentage":0.7455506362879613}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-101.14276935699996,40.70710304600016],[-101.04017556399998,40.72693371800011],[-100.79796242599997,40.48629632400019],[-100.76706836699992,40.60718359500004],[-100.80129701499999,40.72667586800014],[-100.70138860599997,40.81589081300007],[-100.67473365299998,40.96323319200019],[-100.81787848499988,41.091338791000055],[-100.99208466599998,41.13596263599999],[-101.14677626699995,41.13755763400019],[-101.24626682199982,41.09969558800009],[-101.29968976299995,40.904266704],[-101.16713576999996,40.816155674000015],[-101.14276935699996,40.70710304600016]]],[[[-98.93359994399992,42.81966145900009],[-98.96785959099998,42.88111174900018],[-99.07155213899989,42.80796475000011],[-98.91382268399991,42.76455405300004],[-98.85412048799992,42.776847552000106],[-98.71397463099999,42.732610084999976],[-98.30046684399991,42.69392551600015],[-98.31857796199989,42.762553],[-98.57627678999995,42.7630500730001],[-98.84706142199991,42.82536439800003],[-98.93359994399992,42.81966145900009]]],[[[-98.03354590699996,42.11874322500017],[-98.25969937499991,42.21782492400007],[-98.53429194399996,42.41622625400004],[-98.68738690899994,42.460410771],[-98.83505075699992,42.474732686000095],[-99.131798458,42.59281494500004],[-99.11469670999992,42.700339801000155],[-99.15595826299995,42.77424558700005],[-99.24814953099997,42.79185677900006],[-99.34504370899992,42.73484702900015],[-99.51362281699994,42.67747108800006],[-99.71086797099997,42.711161096000126],[-99.83163322799993,42.70467842200003],[-100.01234105299994,42.77750066800019],[-100.12959810899997,42.76348480200011],[-100.14739472299988,42.817417614000135],[-100.35305825899997,42.89700624300008],[-100.50831073199993,42.86800958300006],[-100.67188043999988,42.89607205400017],[-100.82491117899991,42.96537179100005],[-100.93894900999999,43.064458134000176],[-101.09057597299994,43.12565399600004],[-101.1639499989999,43.110264624000195],[-101.33857128299996,43.15714335900003],[-101.37701713199993,43.06560964300013],[-101.69820290399997,43.077949638],[-101.89824521399999,43.121694081000044],[-102.04316372099993,43.08092557700013],[-102.16995747699991,43.082186444000115],[-102.14970050699992,43.015379904000156],[-102.29972257399999,42.99194748400009],[-102.15318931199994,42.943971239000064],[-101.98205467599996,42.75034203300004],[-102.34911976099988,42.66444010500004],[-102.44636790299995,42.623629490000155],[-102.5317088079999,42.491287047000185],[-102.69830105299991,42.407544236000035],[-102.72681296699989,42.30137879700004],[-102.77640728599988,42.27248828000012],[-102.74975368299988,42.06811374700004],[-103.01091011599993,42.0491120050001],[-103.1014189959999,42.08512632500009],[-103.18717478999997,42.06018961700005],[-103.37699903799995,42.13340920500019],[-103.42512737399994,42.09607024000013],[-103.38179765699994,42.00002267500008],[-103.24649254699989,41.90321051000018],[-102.79536043999991,41.688060742],[-102.70337763999993,41.59987291500016],[-102.55258952399998,41.55823978400002],[-102.37542389299983,41.46641313000009],[-102.26225429199991,41.37320480400007],[-102.18319223599991,41.37694735600013],[-101.95443561199994,41.29708385900011],[-101.73832268199993,41.25376577500015],[-101.59829546599997,41.248434047000046],[-101.36897667699992,41.18284513600008],[-101.07418238599996,41.21766000900004],[-100.83402407099993,41.22817174600016],[-100.63969464699994,41.1183922190001],[-100.47387234799999,41.0870087510001],[-100.35398008999994,41.01174440600016],[-100.16454417399996,40.948892625000155],[-100.24313452699994,41.07685176500007],[-100.20047219399993,41.253848539000046],[-100.2898006499999,41.36268052100013],[-100.49527387899997,41.408288196000115],[-100.32121186699999,41.48508599400003],[-100.06485339299991,41.50415211600017],[-99.80983543299993,41.59366191200007],[-99.48190665299995,41.805151956000145],[-99.29546229199997,41.76498030300013],[-99.14318431799995,41.80551039800014],[-98.86179820299998,41.75917469600017],[-98.71324928599995,41.63411809400009],[-98.66801415899994,41.55781192600017],[-98.53323904499996,41.536198132000095],[-98.51312160699996,41.638579113000105],[-98.42418699599995,41.642864455000165],[-98.4403192019999,41.77018006500015],[-98.28426363099987,41.78565319000006],[-98.14330184099992,41.75093018400014],[-98.0894753529999,41.77937409600014],[-98.1704771879999,41.90687707800015],[-98.1348942439999,41.979600557000026],[-98.04112529299994,42.02538264900011],[-98.03354590699996,42.11874322500017]]]]},"properties":{"objectid":468,"eco_name":"Nebraska Sand Hills mixed grasslands","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Nearctic","eco_biome_":"NE08","nnh":2,"eco_id":395,"shape_leng":22.4358853826,"shape_area":6.43184011604,"nnh_name":"Nature Could Reach Half Protected","color":"#FCDF6A","color_bio":"#FEFF73","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":59164.276778666055,"percentage":0.5584012666633653}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[124.30476356000008,45.05297792400006],[124.30541265400018,45.16696895700005],[123.99550653600011,45.28466680399998],[123.88026458800005,45.24150804900012],[123.66732753400004,45.06680990800004],[123.6448516280002,44.8573069200001],[123.68247262700004,44.78563980400014],[123.82294460700018,44.77460368700014],[123.93135865800002,44.948778797000045],[124.02210265000008,44.999190748],[124.30476356000008,45.05297792400006]]],[[[125.25059461400019,46.284852153000145],[125.28781864600012,46.327806389000045],[125.29557056500016,46.462690825000095],[125.19525863000001,46.53398410900019],[124.90287069000033,46.57500732200015],[124.87007867300008,46.649352456000145],[124.3378755980001,46.958923969000125],[124.24998463700013,46.90572369400019],[124.167350639,46.772052120000126],[123.93493655700001,46.76071123700012],[123.72904164300007,46.93839283200015],[123.71200559200008,47.08809362300019],[123.82015963600008,47.29201409600017],[124.07837656900017,47.596017007],[123.94103958800008,47.64662241200017],[123.75549358800015,47.803022523000095],[123.71279868800002,47.891970944000036],[123.55921154400005,47.763494138000056],[123.32330355000022,47.725449686000104],[123.32836957200016,47.61951517000011],[123.16577154700008,47.56400366900016],[123.12920365000002,47.47644412900013],[122.87363456000003,47.17481011100011],[122.84132366500012,47.06091060800003],[123.05374858400023,46.991925198000104],[123.11758465600019,46.928932849000034],[122.92874859100004,46.82671738300007],[122.86415060500008,46.76777215200019],[122.8321376020001,46.6257203510001],[123.09185757700004,46.497690971000054],[123.15460165500008,46.444162628000186],[123.23348257200018,46.28337224400019],[123.35343163000005,46.19552788700014],[123.42765053300002,46.28132823300007],[123.69620553700008,46.24746484200011],[123.78578964200005,46.19773987100018],[123.83291655800008,46.03309716500013],[124.02375757300001,45.68382242100017],[124.20729057500023,45.51560215000012],[124.30363468500002,45.46948927799997],[124.41762555100013,45.47138928700008],[124.50369260900004,45.66169352600019],[124.57570656800021,45.74928273800003],[124.95505558100024,45.91238099500009],[124.92752069400012,46.00710337400011],[125.0286946240002,46.17279180700007],[125.25059461400019,46.284852153000145]]]]},"properties":{"objectid":471,"eco_name":"Nenjiang River grassland","biome_num":9,"biome_name":"Flooded Grasslands & Savannas","realm":"Palearctic","eco_biome_":"PA09","nnh":4,"eco_id":743,"shape_leng":11.1612772501,"shape_area":2.72628876162,"nnh_name":"Nature Imperiled","color":"#5998A9","color_bio":"#BEE7FF","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":23252.1192783631,"percentage":2.0107977343439822}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[32.28268058800006,31.19583017400015],[32.26404158200012,31.110833987000035],[32.15367857200016,31.12072362700013],[32.05068945700009,31.091484531000106],[32.02902961300009,31.21876021100013],[31.868589593000138,31.233340699000053],[31.79549051200013,31.286057841],[31.871530467000127,31.45860317400019],[31.85244956800011,31.508791495000082],[31.585830448000138,31.44065349600004],[31.49836947900019,31.45592314400011],[31.269880474000104,31.560647648000156],[31.112760525999988,31.59954739000017],[31.093160451000188,31.510221280000167],[31.025089507000075,31.512731325000118],[30.979879532000155,31.44321249100011],[30.895759590000125,31.409604747000117],[30.817810573000145,31.425454255000034],[30.623247489000164,31.384167682000168],[30.587902512000028,31.330519311000103],[30.323244590000172,31.09107281200005],[30.110202595000032,30.97073483400004],[30.119594517000166,30.89717357500018],[30.082624457000122,30.815842460000113],[30.178745608000042,30.778875585000037],[30.28965361000013,30.823237143000085],[30.437530499000047,30.808450460000074],[30.51886144600013,30.741907033000132],[30.60758758000003,30.741907033000132],[30.76285948600014,30.601430024000024],[30.82813054000019,30.3625357250001],[31.036010456000156,30.018079402000183],[31.093261537000046,29.868819834000135],[31.121974584000156,29.707354875000192],[31.11068550200008,29.59879917000012],[31.05274056700017,29.40310453000012],[30.998243612000124,29.28316938600011],[30.798909960000117,28.958384936000186],[30.704698466000025,28.754096113000116],[30.667577531,28.63636406900008],[30.61238253099998,28.368609871000046],[30.60296244500006,28.22842874300011],[30.635776591000138,27.905840973000068],[30.687206122000077,27.653847106000114],[30.78033659300013,27.38248918800008],[31.005721789000063,27.08526900900017],[31.185312603000057,26.886898936000023],[31.364534457000104,26.72209814700011],[31.43159253300007,26.641951730000187],[31.694143580000116,26.261188858000082],[31.81978445300018,26.132942889000162],[32.09628650700017,25.93292687500019],[32.20586061300003,25.88913008900016],[32.487010601,25.860357195000176],[32.44490059000009,25.754111208000097],[32.35258851100019,25.644022453],[32.32702655600002,25.529256597000142],[32.338195609000024,25.3272681520001],[32.38985059700008,25.183664023],[32.680084555000064,24.846022355],[32.727084350000155,24.731205188000047],[32.75418057999997,24.41104935600015],[32.741825487000085,24.240925723000032],[32.68737748200016,23.87530006500009],[32.67174959100004,23.659639061000064],[32.705875504000176,23.56922749500012],[32.840381581000145,23.54298392300018],[32.91912050900004,23.621716816],[32.97653151600019,23.73161530200008],[33.04243054199998,24.09261632800019],[33.07578649300007,24.52103518100006],[33.056846577000044,24.741370270000175],[32.9918214490001,25.062235727000086],[32.90600953600017,25.200344345000133],[32.69894752600004,25.354062079000073],[32.670692465000116,25.46317568300003],[32.684635594000156,25.52489901300015],[32.78305456000004,25.615670666000142],[32.89614856200012,25.78237481800005],[32.905006557000036,25.96067768000006],[32.852384014000165,26.164703997000117],[32.76624093600009,26.243015886000137],[32.35992232400014,26.186309153000025],[32.21205551000003,26.235469994000027],[32.070106471000145,26.35288671100011],[31.883068492000064,26.564045292],[31.595989482000107,26.85890203800011],[31.52906451100006,26.946759303000135],[31.432350592000148,27.137121042000047],[31.25197455,27.293297021000114],[31.15810947199998,27.42154366000011],[31.008460481000157,27.745750645999976],[30.940879543000108,28.038226428000087],[30.91793056200015,28.210903189000078],[30.923658587000034,28.367064919000086],[31.004266512000186,28.62193143700017],[31.08692548900018,28.76371099400012],[31.30157446200019,29.065499910000142],[31.339918484000066,29.19340590800016],[31.407924552999987,29.55867785000015],[31.388719601000105,29.815129889000048],[31.32231749300007,29.984055748],[31.24060047500012,30.118325455000104],[31.341064458000176,30.146254627000133],[31.472469566000143,30.283910456000115],[31.735277602000053,30.455981205000057],[31.87919655600018,30.490396126000178],[32.06691749200013,30.496653887000036],[32.36101148500006,30.54983773300006],[32.45859946900009,30.64749126400011],[32.589138559,30.734514195000088],[32.70004656100008,30.838024496000116],[32.76594913900004,30.969370466000157],[32.695716470000036,31.043768368000087],[32.55334045600006,31.064226582000117],[32.40578057100004,31.204270918000077],[32.31726851200017,31.097065538000095],[32.28268058800006,31.19583017400015]]]},"properties":{"objectid":483,"eco_name":"Nile Delta flooded savanna","biome_num":9,"biome_name":"Flooded Grasslands & Savannas","realm":"Palearctic","eco_biome_":"PA09","nnh":4,"eco_id":744,"shape_leng":30.9934723364,"shape_area":4.68715792502,"nnh_name":"Nature Imperiled","color":"#97DBE8","color_bio":"#BEE7FF","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":50939.73871046689,"percentage":4.405168834756299}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-57.810085109999875,-63.99896868899992],[-57.76669415899988,-63.89911637899996],[-57.80334337499994,-63.79803075399997],[-57.94680708099986,-63.80430611999998],[-58.11257218799989,-63.85935077099998],[-57.959940019999976,-63.94978869199997],[-57.97591827999997,-63.99896852199993],[-57.92779876099996,-63.99896952799992],[-57.911364858999946,-63.998967850999975],[-57.900074933999974,-63.99896567299987],[-57.8708222489999,-63.99896835499999],[-57.810085109999875,-63.99896868899992]]]},"properties":{"objectid":485,"eco_name":"Northeast Antarctic Peninsula tundra","biome_num":11,"biome_name":"Tundra","realm":"Antarctica","eco_biome_":"AN11","nnh":1,"eco_id":126,"shape_leng":46.3499938021,"shape_area":0.210329290822,"nnh_name":"Half Protected","color":"#4CA68D","color_bio":"#9ED7C2","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":1137.3960700775021,"percentage":0.013310419806484607}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-62.51487412099988,-62.94601296399986],[-62.65588817099996,-63.04948049599983],[-62.670402357999876,-63.087868004999905],[-62.663300758999924,-63.085805],[-62.652477882999904,-63.081805214999974],[-62.64856060499994,-63.08074470299982],[-62.64294331499997,-63.03571594899995],[-62.642086294999956,-63.034829784999886],[-62.636693202999936,-63.030709259999924],[-62.631708592999985,-63.02655405099995],[-62.61965707199988,-63.01356502299984],[-62.616524408999965,-63.01119129699998],[-62.60890313699997,-63.00574017199989],[-62.58979330799997,-62.99535202399994],[-62.57689933199998,-62.98904816099997],[-62.516356535999876,-62.95452913999998],[-62.51487412099988,-62.94601296399986]]],[[[-62.49682257499995,-62.92383804499997],[-62.48178271499995,-62.916481431999955],[-62.48238087399989,-62.91670751399994],[-62.491431646999956,-62.92057805899998],[-62.49682257499995,-62.92383804499997]]],[[[-62.44543679899988,-62.906284924999966],[-62.47590370099982,-62.91437711899994],[-62.47393940699993,-62.91385539099991],[-62.454768893999926,-62.90876358599991],[-62.44543679899988,-62.906284924999966]]],[[[-60.62213238999993,-62.9086046569999],[-60.74748669499991,-62.945588528999906],[-60.74557310299997,-62.95706892599998],[-60.74473453899992,-62.962099803999934],[-60.743629107999936,-62.96873172099998],[-60.73142247499993,-62.98012800899994],[-60.56385907099997,-62.998772449999876],[-60.6463512279999,-62.92137110799996],[-60.62213238999993,-62.9086046569999]]],[[[-62.355025299999966,-62.889509449999935],[-62.396589087999985,-62.896308906999934],[-62.378227163999895,-62.893313366999905],[-62.36280862799998,-62.890798006999944],[-62.355025299999966,-62.889509449999935]]],[[[-61.210188677999895,-62.72107539299998],[-61.3190739989999,-62.709708095999986],[-61.32090656199989,-62.7110263429999],[-61.22304676699986,-62.73282563699996],[-61.210188677999895,-62.72107539299998]]],[[[-60.35283215199985,-62.65104249399997],[-60.34726412999993,-62.639577850999956],[-60.34777851799993,-62.63520892299994],[-60.36455389299988,-62.65667514099988],[-60.35283215199985,-62.65104249399997]]],[[[-61.217028438999876,-62.62268307299996],[-61.29372995299991,-62.611848462999944],[-61.29563157899997,-62.619301321999956],[-61.29066007799992,-62.62343790999989],[-61.217028438999876,-62.62268307299996]]],[[[-60.985675865999895,-62.64566511199985],[-61.17167964399994,-62.57561726999995],[-61.12622266999995,-62.621953403999896],[-61.13901784299992,-62.63365219699995],[-61.1449162209999,-62.63759045799992],[-61.15028355399983,-62.64907557199996],[-60.79871444999998,-62.667259576999925],[-60.81288052299993,-62.66628775399988],[-60.985675865999895,-62.64566511199985]]],[[[-59.626004439999974,-62.546252953999954],[-59.66985512999997,-62.55554060399999],[-59.648817632999965,-62.55199173699998],[-59.6396181639999,-62.5502308099999],[-59.626004439999974,-62.546252953999954]]],[[[-59.77317277799989,-62.531720433999965],[-59.79004181399995,-62.52874940099997],[-59.79159148499991,-62.528650675999984],[-59.75705786299994,-62.5366644849999],[-59.77317277799989,-62.531720433999965]]],[[[-60.808847771999865,-62.481600912999966],[-60.804677692999974,-62.457913901999916],[-60.805110792999926,-62.45884525699989],[-60.80877993599995,-62.48053621199995],[-60.808847771999865,-62.481600912999966]]],[[[-59.97925759999998,-62.45116869299994],[-59.97355810899995,-62.444214029999955],[-59.97401330099996,-62.44460880699995],[-59.976610585999936,-62.446861368999976],[-59.97925759999998,-62.45116869299994]]],[[[-55.50986302499996,-61.472268305999876],[-55.55337126399996,-61.47865811699984],[-55.46503516699988,-61.49394967699993],[-55.45573361099997,-61.495241144999966],[-55.50986302499996,-61.472268305999876]]],[[[-55.13697276499994,-61.21877254999998],[-55.17012641699995,-61.240640133999875],[-55.17220527799992,-61.24238243399998],[-55.17818606099996,-61.248454494999976],[-55.13697276499994,-61.21877254999998]]],[[[-55.37890008299996,-61.16431861499996],[-55.38149013199995,-61.16748122199982],[-55.385974071999954,-61.171458517999895],[-55.39310511399998,-61.17502692799985],[-55.36386324599988,-61.23287623199991],[-55.357455882999886,-61.235921523999934],[-55.37890008299996,-61.16431861499996]]],[[[-54.010013012999934,-61.19547347299988],[-54.00694407599997,-61.180060526999966],[-54.00671711299998,-61.178644562999864],[-54.01015190499999,-61.19616823599989],[-54.010013012999934,-61.19547347299988]]],[[[-54.65602591399983,-61.10109755399998],[-54.860466480999946,-61.09833193999992],[-54.8612086309999,-61.09836294999991],[-54.66239992599998,-61.10627755199994],[-54.65602591399983,-61.10109755399998]]],[[[-55.34994861699994,-61.06157660299982],[-55.37110621799991,-61.05787548399991],[-55.476494996999975,-61.10733962299997],[-55.477568137999924,-61.108054222999954],[-55.34994861699994,-61.06157660299982]]]]},"properties":{"objectid":486,"eco_name":"Northwest Antarctic Peninsula tundra","biome_num":11,"biome_name":"Tundra","realm":"Antarctica","eco_biome_":"AN11","nnh":1,"eco_id":127,"shape_leng":373.229207147,"shape_area":0.981716075905,"nnh_name":"Half Protected","color":"#6FC1DB","color_bio":"#9ED7C2","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":5059.015510211493,"percentage":0.05920331713810432}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[42.12740225800013,28.70897773700017],[42.28757151400009,28.732360110000116],[42.527150907000134,28.71725150000009],[42.686151044999974,28.741982856000163],[42.84757935200014,28.740364077000095],[42.84182369100006,28.8007085860001],[42.61168718000005,28.797471026000096],[42.42273961800015,28.758890111000085],[42.233881988000064,28.79837034900015],[42.24368459800007,28.826698993000036],[42.06651815500004,28.873014078000097],[42.0121991040001,28.81132058600008],[42.05302832500013,28.730741331000047],[42.12740225800013,28.70897773700017]]],[[[45.571479479,33.43649444700003],[45.037429535000115,33.58204435100009],[44.62940552900005,33.72472529800018],[44.40914956500018,33.77908277900008],[44.19256956900017,33.77545861100009],[43.96729251000005,33.74292056600018],[43.68156449500009,33.65524200300018],[43.53923458200012,33.5882471270001],[43.26181755900018,33.408045260999984],[43.15656248000016,33.36464745500018],[42.97459756400019,33.3855931600001],[42.77475757000002,33.26995055600014],[42.72841654200005,33.28758490700005],[42.49838258500017,33.160685743000045],[42.22441857100017,32.97630030100015],[42.213363511000125,32.91560207900011],[42.01005961100009,32.81242923300016],[41.79326654700003,32.75258596400005],[41.46731562200017,32.701394832000176],[41.024463467000146,32.67228146499997],[40.683444562000034,32.66183392500011],[40.03479355000019,32.516135493000036],[39.28833360700003,32.33022136000005],[39.03960340000009,32.25391926300006],[38.85232294900004,32.24221423500006],[38.62491097300011,32.26896858500004],[38.36405605900018,32.3141165510001],[38.22359572100004,32.30910011000003],[38.05303673900005,32.23719779400005],[37.88749419700008,32.0900488690001],[37.8155918810001,32.07165525300019],[37.60991781500019,32.078343841000105],[37.47112962300008,32.14021327500012],[37.24538979400006,32.300739376000024],[37.228668325,32.344215195000174],[37.16178245000003,32.240542088000154],[36.99958420200005,32.120147513],[36.80059872300018,32.09506530900006],[36.698597763000066,31.99139220300009],[36.683548441000084,31.772340961000054],[36.71531923200007,31.556634013000178],[36.75879505100005,31.40614079300002],[36.743745729000125,31.310828421000167],[36.67351556000011,31.183745258000158],[36.5464323970001,31.090105033000157],[36.42436567400017,31.075055711],[36.314003980000166,31.10181006100015],[36.24210166400013,31.238926105000132],[36.112406698000086,31.256793684000115],[36.04960400600015,31.12374736400011],[35.974240819000045,30.753856206000023],[35.86092624200006,30.629030306000175],[35.82450369800006,30.538648441000134],[35.74464390100019,30.097351113],[35.65597074600015,29.94716433100018],[35.671651363000024,29.716722977000074],[35.69599057800008,29.52430310400007],[35.76146122200015,29.490128866000077],[35.73843857800006,29.378612933000056],[35.75453644300018,29.283014998999988],[35.82971976600015,29.163495099000045],[35.82648220600015,29.061062318000154],[35.95148797100006,28.899364214000173],[35.929724377000184,28.820493671000122],[35.97945688600004,28.7434217710001],[35.94816047900008,28.656097601000056],[36.020376039999974,28.52479658200008],[36.165886347000026,28.43882139400006],[36.17694800800018,28.263093867],[36.226320788000066,28.161200679000103],[36.25905611100006,27.99473616800003],[36.31805163700017,28.042130440000165],[36.41355963800015,27.97746918500019],[36.43298499400015,27.876655183000025],[36.559969267000156,27.65623135000004],[36.81052038900003,27.670350706000136],[36.91520147500006,27.61612158700018],[36.93993283200007,27.555597213000112],[37.07393181700019,27.547683179000046],[37.12627235999997,27.505684839000025],[37.21962198799997,27.58365606100017],[37.29633415800009,27.581677552000144],[37.34525727800002,27.50397612800009],[37.41297622800016,27.520163924000144],[37.42664592300008,27.421868025000038],[37.532675992000065,27.32564056600006],[37.5744045350001,27.420788838000192],[37.72558057100008,27.317816464000146],[37.77720165700015,27.33463378600004],[37.88467064100007,27.464405958000043],[38.017140777000066,27.439314872000068],[38.03314871100008,27.50829287300013],[38.17856908600015,27.52879741600003],[38.25761949500003,27.486799077000057],[38.271738849000144,27.574213179000083],[38.509159871000065,27.52439073800008],[38.494590853000034,27.452714771000046],[38.567076210000096,27.35396921000006],[38.65296146500003,27.30216826000003],[38.77724777200012,27.294164293999984],[38.80359790800003,27.37267510900017],[38.986250215000155,27.36197317699998],[38.84676536600017,27.498310399],[38.91916079200013,27.69184450300014],[38.80512675500012,27.790410199000064],[38.98076435100006,27.886277929000073],[39.04596519900019,27.848596336000014],[39.16539516700004,27.85417213200003],[39.323136254000076,27.923599794000154],[39.311624932000086,27.992128134000097],[39.58357991800011,28.24061081600007],[39.676210089000165,28.366066241000055],[39.724143954000056,28.475243937000187],[39.74662700500005,28.601868481000167],[39.42457978100015,28.638021228000184],[39.23815032000016,28.72048905900016],[39.11053652200019,28.81392862000007],[39.014488928000105,28.91204465500016],[38.863312892000124,29.021042487000102],[38.67625390600017,29.100092895000046],[38.63299651700015,29.147127438000155],[38.47903258100007,29.234271744000125],[38.48352919200005,29.28715188100017],[38.63416563400017,29.303339677000167],[38.817357535000156,29.256484999000122],[38.98157374100009,29.264129236000144],[39.11503313200012,29.152703235000104],[39.30604913500014,29.175815811000177],[39.41990330600004,29.21466652400011],[39.53195883300009,29.177704388000052],[39.60120663000015,29.07805950600016],[39.866236836999974,29.148566353000092],[40.226235452000026,29.227436897000075],[40.20123430000018,29.29722428700012],[40.096912942000074,29.29137869400006],[40.01336592400003,29.32384422000007],[40.0638178910001,29.38239008500011],[39.767401344,29.47537998500019],[39.80580239600016,29.53014869700013],[39.72792110700004,29.626196292000145],[39.655885410999986,29.62826473300015],[39.63448154600013,29.702818530000116],[39.93350612600011,29.677997242],[40.08333317900008,29.71576876800009],[40.22317775700009,29.702009140000087],[40.31562806400018,29.72422239500014],[40.45457332000018,29.702728598000135],[40.49953942200011,29.626376156000106],[40.70971098400014,29.591752258000042],[40.87617549500004,29.546876087000044],[40.94902058100007,29.44408357800006],[40.954236649000165,29.34228032200008],[41.217558144,29.205493439000122],[41.51649279200018,29.13876374300014],[41.58996740300017,29.087682251000103],[41.71200540500013,29.104229776000125],[41.842676898000036,29.066008589000035],[41.88701347500006,28.983900487000085],[42.012289036000084,29.003595639000025],[42.06705774900007,28.963845605000188],[42.247012090000055,29.06070258900013],[42.51590938200019,29.07212397900014],[42.804052165000144,28.991634656000087],[42.68525172300019,28.917530520000128],[42.928248540000084,28.82346143400008],[43.083291661000146,28.83398350200008],[43.10577471200014,28.914292960000125],[43.269451324000045,28.88947167200007],[43.36262108800008,28.768063196000128],[43.295261867000136,28.749267365000094],[43.5241393280001,28.654478821000055],[43.569465159,28.70016438100015],[43.778017940000154,28.613739532000125],[43.96480713000011,28.607084549000092],[44.087744454000074,28.452850818000172],[44.221743439000136,28.40482702100013],[44.413299035000136,28.31138746100015],[44.44576456000004,28.213451290000137],[44.61097001999997,28.0798120340001],[44.78705727700009,27.85183389500014],[44.79119415800017,27.786273318000156],[44.89020951600003,27.63248924800007],[44.96674182200013,27.61216457000006],[45.17601406199998,27.704524944000127],[45.23204182500007,27.842121217000113],[45.38348765800009,27.935920506000116],[45.43816643800005,28.067401389000054],[45.506424982,28.121540577000076],[45.551750813000126,28.23404576500019],[45.485111049000125,28.29169230800011],[45.58871294900007,28.45024278400001],[45.67828542500018,28.444307259000027],[45.64896752600009,28.533520006000117],[45.66533518700015,28.60267787099997],[45.748792273,28.73101112700016],[45.82550444200018,29.00368557200011],[45.81968831900008,29.155858040999988],[45.910756119000155,29.231377681000026],[46.03514140800007,29.251368174000163],[46.05735306700012,29.315781984000182],[46.04846840300007,29.564552562000188],[46.021814413000016,29.684495519000052],[46.0462472370001,29.746688163000158],[46.3349988010001,29.857746457000076],[46.40163377700003,29.899948608000045],[46.44605709400008,30.013228068000046],[46.523797900000034,30.31308546000014],[46.617086866000136,30.350845280000158],[46.810328297000126,30.357508778000124],[46.810328297000126,30.43080725100009],[46.743693321000194,30.570740701000148],[46.5104709040001,30.659587336000186],[46.461605255000165,30.74177047300003],[46.38164328400006,30.759539800000084],[46.39075926400005,30.828694889000076],[46.26757457800011,30.959449440000128],[46.307136490000175,31.045126403999973],[46.53536247100004,31.108073994],[46.76453057700013,31.144758902000092],[46.901164484000105,31.22596395400012],[47.075523493,31.37570279800019],[47.028266490000135,31.436456676999967],[46.8532255290001,31.56375632800018],[46.71000646400012,31.69105732100013],[46.37583557500011,31.882006966000176],[46.18487955900014,31.97748170500006],[45.89844562000019,32.00930863000008],[45.840518622000104,31.996928223000054],[45.832530501000065,31.911272046000022],[45.75876656800011,31.851834797000095],[45.70089355000016,31.944166993000124],[45.6425365610001,32.234406483999976],[45.56426953400006,32.34346895800013],[45.53244361500015,32.45485841600009],[45.4261704700001,32.47747882600015],[45.25724746100019,32.58227239700017],[45.19063161500003,32.65791588800005],[45.132442599000115,32.80806544600017],[45.108119489000046,32.94789319300003],[45.13442257200006,33.077306258000135],[45.23384854000011,33.13302965300005],[45.28800150200004,32.952912948000176],[45.35369852400004,32.825211970000055],[45.51729550400006,32.61214449400006],[45.80296752900006,32.69354383800004],[46.057575549000035,32.74128330299999],[46.06120659000004,32.78486920000006],[45.97843948700012,32.86287655500013],[45.890258512000116,32.986820763000026],[45.70019148199998,33.178839101000165],[45.571479479,33.43649444700003]],[[44.40098156800019,32.51547550200007],[44.32052250600003,32.60586577800018],[44.213447549000136,32.66502977700003],[44.214717575000066,32.72220307400005],[44.307197459,32.74855007800005],[44.42048659200003,32.65512002100007],[44.471633468000164,32.57294669200013],[44.40098156800019,32.51547550200007]],[[45.37850560400017,31.59423158700008],[45.26357646800005,31.71486729100019],[45.31032552800008,31.861568534000185],[45.40609748900005,31.841435370000056],[45.514457559,31.706473820000156],[45.54404450400011,31.589774594000176],[45.46727750300005,31.533614502000034],[45.37850560400017,31.59423158700008]],[[45.54460156600004,31.089131731000123],[45.63563959499999,31.131456319000165],[45.760681498000054,31.07101625900009],[45.68472653500004,30.85746196200006],[45.61118656600013,30.850158139000143],[45.52980851200016,31.022320922000063],[45.54460156600004,31.089131731000123]]]]},"properties":{"objectid":487,"eco_name":"North Arabian desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Palearctic","eco_biome_":"PA13","nnh":2,"eco_id":831,"shape_leng":64.1537546196,"shape_area":43.9753958262,"nnh_name":"Nature Could Reach Half Protected","color":"#E3C35C","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":469108.17581242323,"percentage":1.7781252309209503}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[40.90000752900016,26.841175780000185],[40.80710756200011,26.74593757500014],[40.70125735700009,26.681995777000054],[40.77662054500013,26.57920326800007],[40.77131454500005,26.473353063000047],[40.8291409520001,26.43306343500018],[40.95018969800009,26.582260963000067],[40.90000752900016,26.841175780000185]]],[[[40.52490030400003,26.823099407000143],[40.67418776400007,26.818602796000107],[40.77698027300005,26.915639645000113],[40.916285258000016,26.958447375000162],[40.911159123000175,27.03650852800007],[40.7531482390001,27.104137546000175],[40.66879183100008,27.028324697000187],[40.60062321900011,27.03354076500011],[40.502866914000094,26.971757341000114],[40.53587203300003,26.89279686500015],[40.52490030400003,26.823099407000143]]],[[[42.27740917500006,27.280584531000045],[42.14946885400019,27.181683315000043],[41.97865439100008,26.972117070000138],[42.019753409000145,26.889829102000192],[42.122905647000096,26.995769239000026],[42.16139663100006,27.086330969000073],[42.25393687000013,27.07949612200008],[42.22650754700004,26.983538461000023],[42.32057663300003,26.969688900000108],[42.48443311000017,27.061060020000184],[42.44944948300008,27.14038022400007],[42.48524249999997,27.20198378499998],[42.27740917500006,27.280584531000045]]],[[[40.80719749400009,27.371236194000176],[40.87446678300006,27.384815956000068],[41.04515810800007,27.46764351700017],[41.01530061600005,27.53023633100014],[40.831029528000045,27.4608986020001],[40.80719749400009,27.371236194000176]]],[[[40.58227705000013,27.190382530000136],[40.78840166300006,27.162143818000118],[40.869880241000146,27.123113241000055],[40.9603520390001,27.01465500200004],[40.973662005,26.911862492000125],[41.05469092100003,26.932367035000027],[41.12726621000007,26.90799540800009],[41.2106333640001,27.049548698000024],[41.282129467,27.07104249500003],[41.245886788000064,27.15755727500016],[41.380785095000135,27.227704395000046],[41.44625574000008,27.212236056000165],[41.291482416,26.98470757800004],[41.44922350300004,26.958807103000083],[41.51937062200011,27.007550358000174],[41.60345723400019,27.119156224000108],[41.637271743000156,27.06897405400008],[41.51946055500014,26.875080221000132],[41.364147638000134,26.845312661000037],[41.33590892500018,26.793331847000047],[41.431596791000175,26.671743506000098],[41.68970221700005,26.66598784500019],[41.75706143900004,26.757358965000094],[41.88044842400012,26.773366897000187],[41.979823510000074,26.986955883000178],[41.873523644000045,27.137772190000135],[41.95572167900008,27.261428972000033],[42.05824439200012,27.22248832700012],[42.09709510500011,27.265925582000136],[42.05977323999997,27.37177578700016],[42.092688427000155,27.431940432000033],[42.02523927300018,27.479244771000083],[41.95698073000011,27.45550266900017],[41.87703100000016,27.52708870400005],[41.81911466100013,27.357296702000042],[41.7430320150001,27.259180668],[41.70912757400015,27.17284575000008],[41.5018338430001,27.263137684000014],[41.400210451000135,27.253964599000028],[41.376648214000056,27.299560227000143],[41.54985763999997,27.406129889000113],[41.634573777000185,27.496601687],[41.65939506500007,27.671609757000112],[41.5002150630001,27.664774909000187],[41.42026533300003,27.58383592500013],[41.38887899400004,27.46350663600009],[41.33276129800004,27.431670635000046],[41.280061026000055,27.421688159999974],[41.26495241600014,27.321143956000128],[41.20020122800008,27.235528497000132],[41.08787590500009,27.142268801000114],[40.878783529000145,27.145686224000144],[40.71213915400011,27.22653527600005],[40.58227705000013,27.190382530000136]]]]},"properties":{"objectid":488,"eco_name":"North Arabian highland shrublands","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Palearctic","eco_biome_":"PA13","nnh":2,"eco_id":832,"shape_leng":15.9236208658,"shape_area":0.73517055642,"nnh_name":"Nature Could Reach Half Protected","color":"#C8853E","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":8111.853238759129,"percentage":0.03074747287954526}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-16.811775981999972,20.968585711000173],[-16.844406886999877,21.01871909199997],[-16.83504027099991,21.00086341200017],[-16.832230300999868,20.995506736000152],[-16.811775981999972,20.968585711000173]]],[[[26.611740544000156,28.86731715500008],[26.631400032000045,28.9315600380001],[26.836629985000172,28.988699990999976],[26.606070055000032,29.04434007900005],[26.53692008300004,29.039899975000026],[26.44649358600003,28.966465330000176],[26.611740544000156,28.86731715500008]]],[[[32.57144955800004,29.990607211000054],[32.663929933000134,30.486820011000134],[32.743879962,30.726660064999976],[32.76594913900004,30.969370466000157],[32.70004656100008,30.838024496000116],[32.589138559,30.734514195000088],[32.45859946900009,30.64749126400011],[32.36101148500006,30.54983773300006],[32.06691749200013,30.496653887000036],[31.87919655600018,30.490396126000178],[31.735277602000053,30.455981205000057],[31.472469566000143,30.283910456000115],[31.341064458000176,30.146254627000133],[31.24060047500012,30.118325455000104],[31.32231749300007,29.984055748],[31.388719601000105,29.815129889000048],[31.407924552999987,29.55867785000015],[31.339918484000066,29.19340590800016],[31.30157446200019,29.065499910000142],[31.08692548900018,28.76371099400012],[31.004266512000186,28.62193143700017],[30.923658587000034,28.367064919000086],[30.91793056200015,28.210903189000078],[30.940879543000108,28.038226428000087],[31.008460481000157,27.745750645999976],[31.15810947199998,27.42154366000011],[31.25197455,27.293297021000114],[31.432350592000148,27.137121042000047],[31.52906451100006,26.946759303000135],[31.595989482000107,26.85890203800011],[31.883068492000064,26.564045292],[32.070106471000145,26.35288671100011],[32.21205551000003,26.235469994000027],[32.35992232400014,26.186309153000025],[32.76624093600009,26.243015886000137],[32.852384014000165,26.164703997000117],[32.905006557000036,25.96067768000006],[32.89614856200012,25.78237481800005],[32.78305456000004,25.615670666000142],[32.684635594000156,25.52489901300015],[32.670692465000116,25.46317568300003],[32.69894752600004,25.354062079000073],[32.90600953600017,25.200344345000133],[32.9758285580001,25.2952813820001],[33.0738817940001,25.52815781600009],[33.12823152100009,25.811900170000172],[33.169375233000096,25.933221741000068],[33.294625816000064,25.93862326900006],[33.466752862000135,25.829973915000153],[34.35093664200019,24.945790135000095],[34.11857002900001,25.375100018000182],[34.04370011200007,25.48974991900019],[33.880300072000125,25.788549798000076],[33.75143004600011,26.107989953000185],[33.50846000500019,26.63633007800007],[33.423409973000105,26.78159002700005],[33.21946003800019,27.05739993800006],[33.155390002,27.174870031000125],[32.971689932000174,27.579069962000062],[32.863880167,27.77485996300004],[32.66233994500004,28.04371004400008],[32.43351997300016,28.29408014100005],[32.36376994900007,28.419069983000156],[32.359939930000166,28.538880262000077],[32.41643001800003,28.970290063000164],[32.3854899320001,29.115510056000176],[32.242159866000065,29.44488002600019],[32.29200977600016,29.579039981000108],[32.36186470100017,29.553449580000063],[32.35300861200005,29.688116731000036],[32.48981853800012,29.86208933400013],[32.45051948200012,29.92320799300012],[32.57144955800004,29.990607211000054]]],[[[11.601120191000064,33.00439171900007],[11.654161557000066,32.973683471000186],[11.754377332,33.01433959600013],[11.65415993500011,32.97564007400018],[11.601120191000064,33.00439171900007]]],[[[9.65771592800013,34.04841548200011],[9.277276438000172,34.11638011800011],[9.101101573000108,34.128468834000046],[8.927145566000092,34.113481321000165],[8.404247577000035,34.16997953900017],[8.187101467000048,34.221156422000035],[7.788749506000102,34.37981310900011],[7.530343478000077,34.45693181500013],[7.378052510999964,34.552968477000036],[7.184670438000126,34.70233650600005],[6.995542516000057,34.77412348300004],[6.746160444000054,34.803171807000126],[6.4295095760001,34.758712852000144],[5.869099553000069,34.72861578400017],[5.654736570000068,34.69485649600006],[5.45306244700015,34.587399491000156],[5.287847424000063,34.51669931100008],[5.084853487000146,34.40502335900004],[4.452857484000162,33.97556498300003],[4.268428456000038,33.85729750200005],[3.779655542000057,33.60152557100014],[3.335470497000017,33.45425989000012],[3.076121504000071,33.389182794000135],[2.711448534000112,33.35585081500011],[2.452218564000077,33.32075293600019],[2.093610571000056,33.20362623300008],[1.461266551000108,33.03468260400018],[0.774853557000085,32.8245179490001],[0.465192525000077,32.7146422620001],[0.109842578000098,32.56634694899998],[-0.061193508999963,32.4759985820001],[-0.345391491999976,32.37212417000018],[-0.556839583999931,32.24859704600016],[-0.706504500999927,32.18014824500011],[-1.187412507999966,32.09811170900019],[-1.342844508999917,32.049014543000055],[-1.463042508999933,31.96011540800015],[-1.676035553999895,31.87381818200015],[-2.060321506999969,31.81903004000003],[-2.1802605069999,31.85187871800008],[-2.253921509999941,31.94410597200016],[-2.169634432999885,32.047324416000095],[-2.172728528999926,32.104649761000076],[-2.400829450999936,32.095892013000025],[-2.468173516999911,32.14062857699997],[-2.281065464999926,32.232968484000025],[-2.400814530999924,32.27057640800007],[-2.570516554999926,32.195989539000095],[-2.837061578999965,32.222397898999986],[-2.976933581999958,32.121750017000124],[-3.148602502999893,32.07160058700009],[-3.496732446999943,32.031413888000145],[-4.038622486999941,31.921416496000063],[-4.455575566999869,31.91152802900018],[-4.758570470999871,31.79524069000007],[-4.918560550999928,31.71233461500003],[-5.331000478999954,31.563728333000086],[-5.344182529999955,31.52194001900017],[-5.07018850899982,31.445562609000092],[-5.031901483999889,31.37828492800014],[-5.185692475999929,31.208870739000076],[-5.312104483999974,31.018737323000153],[-5.414214504999961,30.93434999800013],[-5.718324536999944,30.856053802000076],[-5.659211499999913,30.761876415000074],[-5.792745443999934,30.72412767500009],[-6.072030457999972,30.69214970900009],[-6.188567577999947,30.78738640199998],[-6.444241440999974,30.785215489000052],[-6.502750477999939,30.820645291000176],[-6.473543568999958,30.904331050000053],[-6.371013446999939,31.055185860999984],[-6.375764477999951,31.122354746000156],[-6.634693536999976,31.036847431000012],[-6.929509546999952,31.027497921000077],[-7.097743563999927,30.944019697000044],[-7.101632431999974,30.831074725000178],[-6.926692556999967,30.7855765810001],[-6.882206443999962,30.745646703000148],[-6.967198438999958,30.636678777000157],[-7.174567561999936,30.533214408],[-7.29799544499997,30.424447479000037],[-7.549685557999965,30.101940176000028],[-7.699066494999954,29.941517254000075],[-7.787343525999916,29.87713954400016],[-7.898579427999948,29.86659008100014],[-7.995098551999945,29.897708902000147],[-8.040434589999848,29.767512632000035],[-8.128565439999875,29.675677316000076],[-8.261489515999926,29.575640977999967],[-8.312313521999954,29.50706276],[-8.488694580999947,29.407377624],[-8.62833943499993,29.35121971100017],[-8.934388535999915,29.174096686000155],[-8.973471506999886,29.04899057800003],[-9.101002498999947,28.97666347100011],[-9.445997442999953,28.74426347000019],[-9.565264548999892,28.680645160000097],[-9.68228748499996,28.530602220000105],[-9.679520450999973,28.440734807000183],[-9.500227518999907,28.477564554000082],[-9.43693258299993,28.432165317000056],[-9.59437858699988,28.342270076000148],[-10.029820468999901,28.244874037000102],[-10.21296052799994,28.23562326600006],[-10.351289589999908,28.183255482000163],[-10.555870556999935,28.160637251000026],[-10.954790474999982,28.078660897000134],[-11.18459946199988,27.994403156000033],[-11.444410464999976,27.91657752100008],[-12.112959444999944,27.810120980000136],[-12.419930555999883,27.740704069000174],[-12.675539542999957,27.66640805300011],[-12.819749516999877,27.549113041000055],[-13.02814056099993,27.349130722000098],[-13.185708116999933,27.15617484700016],[-13.218430017999822,27.037730059000125],[-13.395440097999881,26.70152998600014],[-13.498929980999947,26.56990999900006],[-13.763329924999937,26.336100037000108],[-14.055040070999894,26.033289896000042],[-14.396330113999966,25.612899825000113],[-14.463219988999981,25.48320989700011],[-14.499840062999908,25.361130017000107],[-14.493400020999957,25.096899932000042],[-14.419620019999911,24.919320077000066],[-14.58462007999998,24.859039927000083],[-14.744760053999926,24.724869939000143],[-14.870409970999901,24.51351994900017],[-15.098200049999946,24.194320060000052],[-15.24615979399988,24.010050037000042],[-15.464679957999863,23.78044008800009],[-15.582560001999923,23.633909978000077],[-15.803580000999887,23.226840042000106],[-15.92251000399989,22.967489934000128],[-16.20345001599992,22.47423006100007],[-16.2760399469999,22.201310223000178],[-16.34139,22.03485993300012],[-16.441040007999902,21.64635992800015],[-16.464809919999936,21.471380063000026],[-16.454079918999867,21.313570066000125],[-16.378608961999873,21.09402448000003],[-16.312372324999956,21.121666908000122],[-15.882951035999895,21.157555319000096],[-15.658801686999936,21.345803151000155],[-15.41794574599993,21.686637029000167],[-14.868067088999965,22.595527372000106],[-14.599944437999966,23.090872609000087],[-14.490877596999951,23.38626197100018],[-14.341846576999956,23.752573696000127],[-14.174445183999978,24.21151424200019],[-14.078137873999935,24.427803769000093],[-13.896475160999898,24.75176682700004],[-13.762539457999935,24.93322720200007],[-13.63363092499992,25.07177586400013],[-13.440069879999896,25.227439384000093],[-13.03144119399991,25.45778152800017],[-12.62020159199983,25.643587165000042],[-12.214731240999868,25.79816443100009],[-11.974880196999948,25.84275660800006],[-10.157155140999976,25.90334744300003],[-8.101504912999872,25.90334744300003],[-8.19441306799996,25.999984808000193],[-8.231715794999957,26.121540625000137],[-8.240311572999929,26.247157534000166],[-8.224786521999874,26.433714206000104],[-8.153932379999958,26.715809898000032],[-8.053043233999915,27.05845228300018],[-7.969286205999936,27.25832700700016],[-7.894099523999955,27.379129830000124],[-7.529274415999964,27.75121859600017],[-7.317490579999969,27.98902374300019],[-7.179353896999942,28.071458608000114],[-6.721927248999862,28.271582766000108],[-6.180996106999942,28.46032528500018],[-6.072356097999887,28.589290418000132],[-5.868841378999889,28.892326876000027],[-5.210293094999884,29.776295016000176],[-5.118787892999876,29.859581973000047],[-4.996287434999942,29.90118135300014],[-4.801350268999954,29.92959731000019],[-4.148801439999886,29.99695521400008],[-3.954371445999925,29.992460290000167],[-3.151534626999933,29.820423828000116],[-3.044476067999938,29.791020795000065],[-2.718340155999954,29.629073081000058],[-2.212008572999935,29.301022283000123],[-1.944678066999927,29.16099501800005],[-1.832673346999968,29.121222073000183],[-1.658798194999918,29.088943226000083],[-1.461924866999937,29.090539354000157],[-1.309375307999915,29.114493897000045],[-1.098493472999905,29.175480534000087],[-0.82726435099994,29.293061802000068],[-0.585641308999925,29.42646843800003],[-0.16696157899986,29.698638597000183],[0.381748254000115,30.076328590000116],[0.897112847000017,30.41859865700019],[1.802991640000016,31.038410463000048],[2.546313063000184,31.335739032000106],[2.776605574000143,31.412493141000027],[3.138283647000037,31.440451808000034],[4.58885586700012,31.44715237100013],[5.069974705999982,31.457970589000126],[6.06399454100017,31.468678164000153],[6.643988161000038,31.468678164000153],[7.313285927000095,31.449642476000065],[7.547067971,31.41395056100015],[7.623210723000057,31.378853511000045],[7.858873235000146,31.135204001999966],[8.05159146300008,31.007943171000193],[8.243054116000167,30.97021134900018],[8.596571201000188,30.947384667000108],[8.743206238000027,30.91214160000004],[8.929918085999986,30.819394455000065],[9.285758358000123,30.57450276900005],[9.908107700000187,29.85264771700008],[10.250422217,29.541988479999986],[10.633654627000112,29.106792353000174],[10.829937396,28.783429227000113],[10.831201179000061,28.663782153000113],[10.734334328000102,28.437759501000187],[10.65314102100001,28.317593406000128],[10.390074705000075,28.048031625000192],[10.279311012999983,27.956181435000076],[9.377393285000096,27.520888436],[9.278093061000163,27.443718133000118],[9.116530707000038,27.275302662000115],[8.880369203000043,27.09267903000017],[8.721540180000034,27.01891573900008],[8.318816405000064,26.989172476000135],[7.907596568000031,26.973854684000173],[5.984768030000112,26.943700903000035],[5.20477728600008,26.837950694000142],[5.011206194000067,26.83587317700011],[4.208021156000086,26.878359408999984],[3.493012381000028,27.008361004000108],[3.539285110000151,26.927818835000096],[3.570480648000057,26.781559511000182],[3.571842551000032,26.657731736000187],[3.539440158000048,26.378869869000084],[3.459144956000102,25.879164174000095],[3.444219573,25.68354234600008],[3.459574945999975,25.450661421000177],[3.498667973000067,25.31280766700013],[3.558013179000113,25.18833866800003],[3.734308403000114,24.992455085000074],[3.734600059000115,25.028780029000018],[3.862970189000123,25.165190047000067],[3.917860079000093,25.379050082000163],[3.997239979000142,25.51126994400005],[4.022719926000093,25.630240080000192],[4.070259926000176,25.686630012000137],[4.237890077999964,25.80037992400014],[4.339459935000036,25.926790071000084],[4.543680061000089,26.089160042000174],[4.65066006800015,26.242400031999978],[4.773869997000133,26.37513000100006],[4.91007002200007,26.42434993600017],[4.972039964000032,26.376690066000094],[4.981940031000022,26.268509954000137],[4.945479959000068,26.124909873000036],[4.854129997000143,25.926979821000145],[4.887990077999973,25.700490001000162],[4.863039952000122,25.483019972000136],[4.704150072000118,25.324469987000157],[4.744290017000139,25.18066977100011],[4.688239979000116,25.055949943000087],[4.617469919000143,25.016260081000098],[4.431860033000021,25.0546100790001],[4.331480070000168,24.991669916000035],[4.269800033000138,24.90762988600011],[4.251829979000092,24.817480027999977],[4.324530098000139,24.586549929000057],[4.303680005000103,24.495999977000054],[4.221863515000109,24.441966832000162],[4.728027538000106,23.823321915000122],[5.01742002400016,23.24611000400006],[5.067909943000132,23.302829974000133],[5.110810057000037,23.485489942000072],[5.219260007000116,23.620170035000058],[5.235890022000035,23.684020046000057],[5.184409990000063,23.76342001300003],[5.092979939000031,23.80052995000017],[5.039699927000186,23.88339997500003],[5.024519965000081,23.970320043000072],[4.962469934000126,24.085339938000118],[4.705079985000054,24.29348002800009],[4.653769989000125,24.362529845000097],[4.704689925000139,24.4493999230001],[4.799629991000074,24.47393006600015],[4.853510055000186,24.43186974300005],[4.846479993000116,24.28142002000004],[4.965409996,24.318660037000143],[4.978220025000098,24.40132006900012],[4.926629981000076,24.549570070000186],[5.027310058000069,24.64738999800005],[5.047650045000182,24.720719916000064],[5.190860066000141,24.670870005999973],[5.208660261000091,24.80722],[5.271499917000085,24.96153001700003],[5.270079964000104,25.08907003600018],[5.404559922999965,25.15279982499999],[5.563890029000163,25.056630084000176],[5.629689989000099,24.95332995000018],[5.751390018000052,24.58723007000009],[5.834620003000055,24.572639951000042],[5.902319922000117,24.620329745000106],[5.884660015000065,24.825080041999968],[5.813779943000043,24.95496992900007],[5.711070004000135,25.051889867000114],[5.658430001000056,25.14524997700005],[5.691430048000143,25.40211996300019],[5.557219928000109,25.603880034000156],[5.545599970000183,25.69079006800007],[5.589650199000118,25.723459902000116],[5.675560264000126,25.677600012000084],[5.779889939000157,25.56970998200012],[5.857599938000078,25.59148998800009],[5.877170014000171,25.68085004500017],[5.812960218000171,25.87623995300015],[5.923920037000187,25.88115003000007],[5.989830009000173,25.749299985000164],[6.119670082000084,25.545510053000044],[6.208150038000042,25.486319994000155],[6.305910120000078,25.457060019000096],[6.401540008000097,25.478899873000046],[6.44627002500016,25.551849940000125],[6.425520088000042,25.685950047000063],[6.339060136000057,25.82373002800017],[6.193490039000039,25.90804992900013],[5.883670079000012,26.028539997000053],[5.47770994900003,26.17187006400019],[5.392740006000167,26.25946992100006],[5.365529960000117,26.435010057000113],[5.397480048000148,26.57866998500009],[5.449750057000188,26.643029926000054],[5.594170039000176,26.70252995500016],[5.782979969000166,26.73120994500016],[6.023499989000186,26.666850004000025],[6.043309980000174,26.60198999000005],[6.023059939,26.46758976899997],[6.083690192000063,26.34706977800016],[6.290719949000106,26.22455002400011],[6.367080051000016,26.079509923000103],[6.440920075000179,25.989570057000094],[6.55358007000018,25.967539750000128],[6.558340002000023,26.03536992400018],[6.504889955000067,26.126980044000163],[6.598610026000074,26.150169794000078],[6.73887012900019,26.08231004800001],[6.979930001000128,26.067409958000155],[7.062490054000079,25.952000003000023],[7.137679976000186,25.96986004500019],[7.134150071000079,26.092429788000175],[7.059479937000162,26.228259996000133],[7.111940048000122,26.29000005600011],[7.226439980000066,26.13736997400008],[7.377850067000111,26.08331001800019],[7.512949968000157,26.144670050000116],[7.566329960000076,26.300980005000042],[7.708799993000127,26.344189915000186],[7.874879936000184,26.263299939000092],[8.016079985000147,26.217399916000033],[8.149019945000077,26.206369977],[8.667659961000027,26.259579757000097],[8.810639924000156,26.258799989000067],[9.073920029000135,26.231450006000102],[9.165820054,26.197250031000067],[9.208430087000124,26.119879926000124],[9.274970035000024,25.795370043000162],[9.311300029000051,25.685999861000084],[9.40005,25.60980997000013],[9.663219741000148,25.461470023000118],[9.790620000000104,25.289139963000082],[9.906509962000143,25.097809956000162],[10.058092951000106,25.38334106100018],[10.084673283000086,25.861787038000102],[10.046450618000051,26.194895795000093],[10.046016873000099,26.36820761900003],[10.080713140000057,26.491351134000013],[10.13089860100007,26.550777852000067],[10.281180784000071,26.593313999000088],[10.451139566,26.5797924310001],[10.859645699000055,26.51908480500009],[10.979956601000083,26.522371650000025],[11.135924249000027,26.582405526],[11.239220282000133,26.683215698000026],[11.338245106000045,26.831860151000058],[11.50663562700015,27.125020091000067],[11.588202239000054,27.234217435000176],[11.878595365000137,27.503118353000104],[12.04640558300008,27.628829770000152],[12.296584800000062,27.770049244000177],[12.568557639,27.868883058000108],[12.738700035000022,27.911474098000156],[12.949784164000164,27.937102103000086],[13.152995199000088,27.92032184599998],[13.282760714000176,27.87240646500004],[13.631418649000125,27.63506754200006],[13.717646136000155,27.591539260000047],[15.778163151000058,27.398365790000128],[16.558172723999974,27.138362599],[16.752678872000047,26.957433063999986],[16.91760112999998,26.749878893000073],[17.041039305000083,26.618246923000186],[17.11118377600002,26.57216750400005],[17.220501033000062,26.56405215900014],[17.315348642000117,26.633076325000047],[17.44912919500007,26.79870478099997],[17.568768816000045,26.9207862720001],[17.64274526500003,26.959691858000042],[17.793152656000075,26.98863715400006],[18.258344506000128,26.983082744000058],[18.374796074000074,27.01017767800016],[18.52451397300007,27.09637079400005],[18.86923498400006,27.41827197800012],[19.02495002700016,27.523435592999988],[19.14349474,27.56460021400011],[19.301755815000092,27.58559242300015],[19.643331665000176,27.560325545000183],[20.09006739800003,27.492808713999977],[20.306965813000033,27.486689285000182],[20.517244339,27.530561447000025],[20.67982092200009,27.61349005800014],[20.821991400000115,27.712593491000064],[20.98127761900014,27.853159364000078],[21.11639193900004,27.996183557000165],[21.283293832000084,28.201098447999982],[21.569694638000044,28.612031020000188],[21.809622736999984,29.061157327000103],[21.897728324000184,29.186540521000097],[22.049360837000165,29.321580323000035],[22.15982024000016,29.36557620100018],[22.333025800000144,29.395434504000036],[22.520712990000163,29.404897724000193],[23.521770946000117,29.418250069000123],[25.268279619000168,29.348389722000036],[25.570297419000156,29.27823473100011],[25.608831985000165,29.25757575800003],[26.00422745800006,29.31723612700017],[26.081935221000037,29.302477097000065],[26.110722151000118,29.220468507000135],[26.04019431500012,29.142545803000075],[26.204409794000128,29.107217914000103],[26.32209282900004,29.041105785000184],[26.329789995000112,29.12275996600016],[26.482479924000188,29.193280078000043],[26.587939998000024,29.30287996600009],[26.579360081000175,29.389879947000054],[26.49158015600017,29.592020045000083],[26.54605992000012,29.671459968000192],[26.66982994400007,29.76731005700009],[26.740909975000136,29.85396996700007],[26.923390050000023,29.9179500570001],[27.03638994,30.07971997500016],[27.155550001000165,30.17361008200004],[27.278609961000086,30.185970028000042],[27.40340019600012,30.258919919000164],[27.826110034000067,30.375550045000125],[27.933890053000084,30.35805999700017],[27.983050141000092,30.398610069000085],[28.094720024000083,30.389720004000026],[28.18138996800019,30.344439924000085],[28.291659964000075,30.388610022000023],[28.40915998100013,30.389160085000185],[28.493709940000087,30.353510057000108],[28.634539995000182,30.34636998300016],[29.0786499890001,30.25264005400004],[29.125529738000182,30.180359919000125],[29.010809957000106,30.146380145000023],[28.75668025000016,30.205780019000144],[28.573800081000172,30.158420087000025],[28.289540155999987,30.17255008900014],[28.237570084000026,30.093980233000025],[28.310000189000107,29.95953002100015],[28.186680072,29.858059967000088],[28.100059942000087,29.83987006400008],[28.030760001000033,29.76712998900007],[27.94771026,29.858920001000172],[27.880469929000185,29.7035000030001],[27.905670003000125,29.625289931000054],[27.80486002400005,29.573889988000076],[27.573007962000133,29.567379358000153],[27.40019369800018,29.547599777000016],[27.497779990000083,29.44277007500017],[27.588900071000126,29.3830500200001],[27.75661999200014,29.461670043000026],[27.850390053000012,29.40537005600015],[27.873729948000175,29.318539935000047],[27.721000239000034,29.18142002800016],[27.64594004500003,29.092519912000057],[27.521789994000187,29.00311021800013],[27.349579979000055,28.943589946000145],[27.163730001000147,28.942259939000166],[26.958789954000167,28.911299963000033],[26.718071970000153,28.803518300000064],[26.937477564000176,28.72450913700004],[27.06406489000011,28.660739582000133],[27.479042889000084,28.362831063999977],[27.55211654600015,28.293695280000065],[27.691318148,28.061692611000183],[27.751582168000027,27.985456360000114],[27.831090933000155,27.95079243500004],[27.959230559000105,27.935967870000127],[28.09633372500008,27.95000056300006],[28.254317695000054,27.995660236000106],[28.429216566000093,28.09354508700011],[28.497866953000084,28.163152391000153],[28.593310060000192,28.427208636000046],[28.679606414000148,28.5214728090001],[28.789539426000033,28.555775407000056],[29.01249614500017,28.540724095000144],[29.544205622000106,28.40690119700014],[29.765999744000112,28.377458239000134],[29.891455395000094,28.38902211800007],[30.015146255000047,28.44468498200007],[30.075047359000052,28.51002483500008],[30.28892344899998,28.8655051450001],[30.37065961600001,28.937737673000072],[30.468908719000126,28.970700734000104],[30.626904886000148,28.98711636300004],[30.798909960000117,28.958384936000186],[30.998243612000124,29.28316938600011],[31.05274056700017,29.40310453000012],[31.11068550200008,29.59879917000012],[31.121974584000156,29.707354875000192],[31.093261537000046,29.868819834000135],[31.036010456000156,30.018079402000183],[30.82813054000019,30.3625357250001],[30.76285948600014,30.601430024000024],[30.60758758000003,30.741907033000132],[30.51886144600013,30.741907033000132],[30.437530499000047,30.808450460000074],[30.28965361000013,30.823237143000085],[30.178745608000042,30.778875585000037],[30.082624457000122,30.815842460000113],[30.119594517000166,30.89717357500018],[30.110202595000032,30.97073483400004],[29.934379603000025,30.880143225000097],[29.62202848300018,30.76880908700008],[29.229278484000133,30.779865655000094],[29.10902952200007,30.81632928100015],[28.99999956900001,30.83046385200015],[28.710399450000125,31.001296762000095],[28.424119570000073,31.087475970000128],[28.319919605000166,31.06529644800014],[28.157089569000163,31.091715537000027],[27.951160457000128,31.09037476700007],[27.90103952600009,31.11048312100013],[27.87018959599999,31.231570944000055],[27.73027953800016,31.183881435000103],[27.44342952100004,31.214399442],[27.392000510000173,31.25406009300019],[27.344499595000173,31.368106112000135],[27.25869958400017,31.35291659500018],[27.08426044400011,31.380205724000064],[26.97759050000019,31.438703697000108],[26.832359443000144,31.439083733000132],[26.739910571000053,31.478501309000137],[26.515720477000116,31.48922193100003],[26.337810559000104,31.52160977200009],[26.08893944800019,31.592148684000108],[25.915769496000166,31.62185649600002],[25.823640478000073,31.610496838000188],[25.506090567000058,31.513589129000025],[25.385139536000054,31.497739621000107],[25.190450556000144,31.522260040000106],[25.11146955900017,31.747363259000053],[25.036260586000026,31.83790021800013],[25.001579456000172,31.956625351000127],[24.667699586000026,32.02533332000007],[24.599090523000086,31.993634303000192],[24.289140484000086,31.992005196000093],[24.08577958700016,32.02033250900013],[24.00573945200017,32.097150807000105],[23.669330595000076,32.18641891400017],[23.426849512000103,32.178828263000185],[23.37138947600016,32.21040909500016],[23.260309477000135,32.20822728500008],[23.170919497000057,32.30583823600017],[22.99945258000014,32.29422259500018],[22.851409562000185,32.2341434600001],[22.648586448000117,32.17984314400019],[22.592840589000105,32.186506924000184],[22.14583251900018,32.17111858800007],[22.027221548000057,32.217512087000046],[21.98685044700005,32.17995730500013],[21.561239532000172,32.15894990900017],[21.39232054500019,32.11945019000018],[21.0585305300001,31.98376444400003],[20.880340488000172,31.885027637000064],[20.775770546000103,31.789210916000116],[20.596679450000067,31.580147978000184],[20.510520526000107,31.458832],[20.464603455000145,31.337246290999985],[20.129329505999976,30.982245367000075],[20.055870507000066,30.845964338000158],[19.90522054900009,30.65331903400005],[19.772710539000173,30.52336466600019],[19.608100522000086,30.409799768000028],[19.579160492000085,30.418388704000108],[19.376480541000035,30.312832548000188],[19.183700456000054,30.26421516200014],[18.95350053800007,30.282023522000088],[18.791009465000116,30.3800599380001],[18.673259484000084,30.40536004200004],[18.51576955800016,30.532874438000135],[18.408819491000088,30.592313363000187],[18.180049525000072,30.785656377000123],[17.90440946500013,30.855113856000116],[17.847019580000165,30.924590613000078],[17.731199448000098,30.938901036000118],[17.457550593000178,31.028778005000106],[17.390069567000182,31.079234045000078],[17.302219510000043,31.08475587500004],[17.017309568000144,31.163582310000038],[16.75168051900016,31.21882123100005],[16.363800573000105,31.221540990999983],[16.165670486000124,31.25152523800017],[15.909848431000114,31.23885666200016],[15.148359568000103,31.285859860000073],[14.907729544,31.357156497000176],[14.749609467000084,31.48240207900011],[14.647620480000114,31.640965894000033],[14.448120456000026,31.827419821999968],[14.144579555000064,31.893787396],[13.868229548000102,31.90914706600006],[13.646989549000068,31.894377482000152],[13.324819532999982,31.84895008100017],[12.68764954900007,31.78491200600007],[12.46067046100012,31.78228226699997],[12.079719499000134,31.8327483650001],[11.443240519000028,31.821589873000164],[11.169879499000047,31.80769150400016],[11.028490538000085,31.816198968000094],[10.93490055400008,31.846787886000072],[10.958760480000024,31.92300738100016],[11.110750536000012,31.97531481500016],[11.565580431000058,32.08551219999998],[11.795599468000148,32.11970215000002],[12.020850543000051,32.177657311000075],[12.174019430000158,32.24919601700003],[12.231789518000085,32.341092018000154],[12.169289522000156,32.415781648],[11.89570956700004,32.59666496300014],[11.802650492,32.75432906500009],[11.66444797600002,32.770841406000045],[11.434610055,32.71726001300004],[11.397418913000024,32.770762322999985],[11.40276849900016,32.720700199000134],[11.111120513000174,32.77896029300007],[10.989760446000105,32.84633704900011],[10.828499502000057,32.87710517100004],[10.706910441000048,32.86194683500008],[10.45761051200003,32.79657989200018],[10.256400579000115,32.81844894800008],[10.168290516000127,32.88969780700012],[10.127779436000026,32.966114613000116],[10.027039521000063,33.06982943300011],[9.987594453000042,33.14994014300004],[10.005359561000034,33.261424820000116],[9.908624519,33.45712784200009],[9.892167491000123,33.715631436000024],[9.81078055200004,33.9356952870001],[9.909702432000131,33.90996586099999],[9.97415558,33.85618740300015],[10.090029524000101,33.69035211900018],[10.313329460000148,33.65729523400017],[10.466380497000102,33.589784033000115],[10.661049528000035,33.62571389900006],[10.729156515000057,33.60198255199998],[10.716790525000022,33.71370141900013],[10.492670504000102,33.63607376400006],[10.386219496000024,33.683382399000095],[10.185379540000099,33.82862737000005],[10.04881956200012,34.00882403900016],[10.036227428000075,34.07958104800019],[9.975529541000128,34.14484942000007],[9.974712473000181,34.28451657000005],[10.04012954000018,34.49774095499998],[10.232279473000062,34.68808576200013],[10.202850444000035,34.75062230300017],[10.095620589000077,34.68824585600004],[10.031229467000173,34.7779345670001],[9.969043457000112,34.797603038000034],[9.990845458000024,34.61617657600004],[9.874452506000125,34.48162037600014],[9.704906554000104,34.444432217999974],[9.63502645900013,34.407762062000074],[9.768398464000029,34.31452562700014],[9.792697434000047,34.160389971000086],[9.662645545000089,34.04955901700015],[9.83708997600013,34.00325995400016],[9.825890001000062,33.95554006100019],[9.3911400450001,33.86900002100015],[9.359449938000068,33.823819920000176],[9.193189927,33.784810023000034],[8.999550009000018,33.79426986400017],[8.92538998100008,33.74907004800008],[9.000479923000057,33.66614000100003],[9.068920006000042,33.63775995000009],[9.100600080000106,33.56907977500015],[9.032369988000141,33.49056994100016],[8.934700029000169,33.472110023000084],[8.885000087000037,33.424489934000064],[8.750569942000027,33.38337994200015],[8.675309965000054,33.38877002600009],[8.6088300400001,33.34076005200018],[8.513349945000073,33.338100038000164],[8.266889780000042,33.392270007000036],[8.109879793000061,33.562310047000096],[7.82960003200003,33.65658000500002],[7.719760052000026,33.757389984000156],[7.699379932000113,33.84930004200004],[7.791549795000094,33.90470003800016],[8.100939915000083,33.91273992600014],[8.177160081000125,33.99433996700009],[8.337980020000032,34.056159939000054],[8.532539994000103,34.07353997500013],[8.722049955000045,34.04441007800017],[8.95061997900001,34.029419866000126],[9.159190085999967,33.9621497870001],[9.398150040000075,33.96728006500007],[9.523550009000076,33.99188008800019],[9.65771592800013,34.04841548200011]],[[5.958780087000093,33.85402001700004],[5.901940071000183,33.95097005500003],[5.830920063000178,34.162260023000044],[5.838919995000026,34.23301001600004],[5.957130076000055,34.38780003900018],[5.946369975000152,34.56958008300012],[5.980900164000047,34.63049989000018],[6.122929971000076,34.65930995800005],[6.302139948000104,34.585940083000025],[6.473699921000048,34.561450073000174],[6.564589943000101,34.520480017000125],[6.9123399180001,34.41189998900006],[7.015730174000055,34.20604991800013],[7.088250049000123,34.16560000200013],[7.19925000000012,34.15260990399997],[7.451389977000076,34.165519912000036],[7.697550029000126,34.21061992400007],[7.865290016000017,34.22608996700012],[8.090109935000157,34.19356992600012],[8.134509915000137,34.071870073000184],[8.117670084999986,34.00986985600008],[8.022470038000108,33.958269955000105],[7.884319887000117,33.94642997200003],[7.562750066000035,34.00570997600016],[7.197379964000106,34.00342998999997],[7.117310065000083,33.992099937000035],[7.015289948000088,33.84398001500011],[6.925020221000068,33.80720997200007],[6.733470012000055,33.81604001300013],[6.67606004400011,33.89686996600011],[6.465990070000146,33.84377002300016],[6.321569912000143,33.84713006800007],[6.229590150000149,33.810549950000166],[5.958780087000093,33.85402001700004]],[[5.85158005500017,33.40497002300009],[5.89106995800006,33.48498975600006],[5.941080047000185,33.702010054000084],[6.027410096000153,33.718659959000036],[6.003330037000012,33.585000077000075],[6.02306997200003,33.540239784000164],[5.938790027000039,33.42553003600011],[5.85158005500017,33.40497002300009]],[[5.892740212000092,33.07015998000003],[5.902300032000028,33.28350005200019],[6.00707010900004,33.35061998600008],[6.066929923000032,33.30909001100002],[6.087520035000125,33.182589918000076],[5.968060036000054,33.08001973900019],[5.892740212000092,33.07015998000003]],[[-7.838619998999832,27.664909971000156],[-7.881990086999963,27.73260003300004],[-7.791909931999953,27.802350057000126],[-7.639779922999878,27.797570059000066],[-7.555560001999879,27.732220182000106],[-7.689440084999887,27.665549980000094],[-7.838619998999832,27.664909971000156]],[[19.1666299850001,29.920999955000184],[19.086729946000162,29.950739936],[19.044910066000114,30.04552],[18.809559928999988,30.150249944000052],[18.811849949000134,30.23255001600012],[18.914889925000068,30.21118999300012],[19.15500017000005,30.120800043000088],[19.32995996900013,30.091289944000096],[19.21394996100014,30.021029990000045],[19.357850155999984,29.94340008000006],[19.337179956,29.90850007300014],[19.1666299850001,29.920999955000184]],[[19.18983997800018,29.185959935000028],[19.05840023600001,29.25148002400016],[19.132999962000156,29.307050231000062],[19.518010020000077,29.302569995000113],[19.633629967000047,29.212479984000026],[19.553490013000157,29.1182100260001],[19.42146007600013,29.153609930000073],[19.18983997800018,29.185959935000028]]],[[[10.60052849699997,35.5007579980001],[10.53943991900013,35.41944003900005],[10.47661980099997,35.42284004100003],[10.305930071000148,35.51256005800019],[10.268998347000093,35.62373731400015],[10.305919522000067,35.51053620700014],[10.476623518,35.42082017100006],[10.539443535999965,35.41741846000002],[10.60052849699997,35.5007579980001]]],[[[10.119127860000049,35.86655903500008],[10.146908448000033,35.79725311900012],[10.290348460000132,35.838470123000036],[10.331334918000096,35.90227971100012],[10.290350015000172,35.84050004200003],[10.146909936000156,35.79929007100009],[10.119127860000049,35.86655903500008]]]]},"properties":{"objectid":490,"eco_name":"North Saharan Xeric Steppe and Woodland","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Palearctic","eco_biome_":"PA13","nnh":2,"eco_id":833,"shape_leng":212.32000062,"shape_area":148.952263436,"nnh_name":"Nature Could Reach Half Protected","color":"#C95F51","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":1604169.349114605,"percentage":6.080503690626954}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[45.174910000000125,9.91304],[45.06637,9.99353],[44.97856,9.99366],[44.86745000000019,9.82339],[44.87171,9.73328],[44.92213,9.687610000000177],[45.06926,9.71888],[45.06065000000018,9.83613000000014],[45.18901,9.800120000000106],[45.174910000000125,9.91304]]],[[[51.01898950200007,10.40694756500011],[51.04701959200008,10.39506957000009],[51.24478959200019,10.420976692000124],[51.28926061700008,10.367610455000147],[51.36029858800009,10.368041453000103],[51.413028470000086,10.438915473000122],[51.19924,10.53119],[51.22835150600008,10.430046077999975],[51.01898950200007,10.40694756500011]]],[[[51.01898950200007,10.40694756500011],[51.10820061200013,10.493522734000123],[51.062219693000145,10.606355890000145],[51.065077429000155,10.68260366200019],[51.12953275400014,10.74837906300013],[51.116599614000165,10.939081573000067],[51.132308474000126,11.03804368700014],[51.17847851200003,11.130617449000056],[51.086368604000086,11.186104307000107],[51.083980600000075,11.33804289799997],[51.119819606000135,11.490912551],[51.225429575000135,11.641041993000101],[51.2846105050001,11.810751560000085],[51.14027061200011,11.873026083000127],[51.05435157800008,11.871696378000138],[50.80575958500003,11.978520046000142],[50.58153160500012,11.911253597000098],[50.539310617000126,11.859237182000072],[50.49285861300018,11.73069684100011],[50.43152956800003,11.669550186000151],[50.26052047100018,11.579767263000065],[50.064010606000124,11.50281150100011],[49.93952962100008,11.508571042000142],[49.86138161700006,11.46733492800007],[49.692150489000085,11.476494504000186],[49.54692060500008,11.438657085000045],[49.50939951900011,11.38006020500012],[49.42203158900014,11.332713349000187],[49.29597849400005,11.331984291000083],[49.20678264000003,11.264517340000111],[49.08928869500011,11.269273233000092],[48.95531850300017,11.237580927000124],[48.87960057999999,11.245709194000028],[48.66204861800003,11.321724171000085],[48.360099609000144,11.268987583000069],[48.241611516000034,11.203692389000139],[48.15349960900005,11.128367411000056],[47.97175949600012,11.11160846600012],[47.80221957900011,11.121228041000165],[47.674388513999986,11.08942005900002],[47.54197618200004,11.143217897000113],[47.490400000000136,11.09294],[47.38829,11.07462],[47.18618000000015,10.97071],[47.023135168000124,10.862037239000074],[46.88524000000018,10.83436],[46.82469,10.710700000000145],[46.76537000000019,10.67822],[46.721270000000175,10.54584],[46.669660000000135,10.52746000000019],[46.523800000000165,10.611270000000104],[46.45570000000015,10.57771],[46.337260000000185,10.65062],[46.24935000000016,10.57692],[46.15947000000017,10.66933],[46.07706,10.60866],[45.95525000000015,10.62078],[45.8743,10.803270000000111],[45.78208000000012,10.790380000000141],[45.72041,10.650440000000117],[45.717,10.5701],[45.49059,10.363090000000113],[45.42032000000012,10.349080000000185],[45.25140000000016,10.42423],[45.20201,10.42756],[45.04819,10.329000000000178],[45.00202000000013,10.27370000000019],[44.98430000000019,10.16517],[45.11921,10.09984],[45.22126,10.08124],[45.47703,10.09932],[45.60220000000015,10.134960000000149],[45.692310000000134,10.199960000000146],[45.83195,10.37128],[46.008690000000115,10.384050000000116],[46.14828000000011,10.51737],[46.228310000000135,10.45537],[46.42586000000017,10.44097],[46.52351000000016,10.41585],[46.67488,10.34725],[46.76166000000018,10.39380000000017],[46.869590525000035,10.389969014000087],[46.87018949600014,10.327317138000012],[46.96903735000012,10.342136881999977],[46.99194000000011,10.248],[47.15865000000014,10.152230000000145],[47.34857,10.187770000000171],[47.28938,10.23888],[47.266031076000104,10.39204982400014],[47.42791000000011,10.39826],[47.49692149600003,10.439589546000036],[48.074382490000175,10.737923441000135],[48.39198654800015,10.651310720000026],[48.738464586000134,10.77641800200007],[49.04644353600003,10.959268214000133],[49.1849,10.953680000000134],[49.28105387700003,10.997450966000144],[49.681652491000136,11.055505370000105],[49.71067,10.96702],[49.78635,10.93109],[49.7676,10.867070000000183],[49.835610000000145,10.83874],[49.95089000000013,10.85703],[49.93131000000011,10.99058],[49.96739680400003,11.023050706000106],[50.172492550000186,10.90152628800007],[50.386840613,10.919386950999979],[50.39413596000014,10.758818789000088],[50.309520000000134,10.66328],[50.1819,10.466970000000117],[50.12572,10.32376],[50.15959,10.21624],[50.26400028000006,10.128607960000181],[50.10902762900008,9.880677536000064],[49.97018056500008,9.533586278000143],[49.93547060100019,8.978235571000027],[49.779266626000094,8.474949391],[49.58976755300017,7.906489220000026],[49.49177153800002,7.69287876500016],[49.50043859400006,7.536927924000111],[49.569755592000035,7.469782677000126],[49.705898068000124,7.491642680000041],[49.780281507000154,7.669517395000071],[49.83626960300006,7.764547557000014],[49.809570559000065,7.817692511000075],[49.83533049400006,7.934154362000072],[49.984401469000034,8.09524481900013],[50.129219466,8.197920283000087],[50.156879579000076,8.309346286000164],[50.33201961400016,8.550229946000059],[50.338539561,8.64957980600019],[50.379520529000104,8.695576841000104],[50.44340152799998,8.892528766999988],[50.64088855500006,9.076329655],[50.655040560000145,9.202781561000108],[50.810081629000024,9.38393376700003],[50.84656151600012,9.465051982000091],[50.79864150500009,9.559913333],[50.85145151800003,9.853899534999982],[50.89825053400011,9.991268702000013],[50.88206859900015,10.094969608000156],[50.909768168000085,10.316464673000155],[50.89926528900014,10.395778656000118],[50.9573117760001,10.438003818000084],[51.01898950200007,10.40694756500011]]]]},"properties":{"objectid":491,"eco_name":"Somali montane xeric woodlands","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Afrotropic","eco_biome_":"AF13","nnh":4,"eco_id":106,"shape_leng":28.6774241622,"shape_area":5.25153858346,"nnh_name":"Nature Imperiled","color":"#E8914E","color_bio":"#CC6767","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":64009.95098957763,"percentage":0.24262571993648724}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[90.8711925950002,38.75543965300005],[90.85181464100003,38.739699780000024],[90.45931961900004,38.71053746300004],[90.31523151800008,38.711548320000134],[89.91732061400012,38.666169199000194],[89.7102356370001,38.676452956000105],[89.46538566100014,38.707092500000044],[89.15949263000005,38.768367398000066],[88.92399551700004,38.80105883200008],[88.6182255330001,38.78917614300002],[88.45819052600018,38.74657780200016],[88.32115160500013,38.590300402000025],[88.27085163700008,38.440731710000136],[88.19917261800015,38.440117987000065],[88.02319355500009,38.52602746600007],[87.93839249900009,38.489773052000146],[87.8864055890001,38.36839521500019],[87.8895726070001,38.29197623099998],[87.77450550499998,38.23745748200008],[87.68080856800015,38.11336441200007],[87.51966865900005,38.08607008500013],[87.43154166400006,38.194650097000135],[87.29177057800018,38.27234665200007],[87.2091976000001,38.28535452700015],[86.98464959900008,38.19013007200016],[86.85144053800019,38.061431313000014],[86.53864266300008,37.992833817000076],[86.4607845060001,37.90975004600011],[86.40857664800012,37.787407452000025],[86.19968453400008,37.64668200300008],[85.91211635500008,37.500826829000175],[85.47188555700012,37.40448858700017],[85.2034685180002,37.31024749700009],[85.01065054700013,37.201595736000115],[84.9355396420001,37.17791903800003],[84.72686763600012,37.18773391200017],[84.556396657,37.130007074000105],[84.27795452700008,36.96301056100003],[83.94152052300018,36.940932125000074],[83.90978965500017,36.92177830300017],[83.78628549700005,36.72066459400003],[83.61543263800019,36.65163895100005],[83.49214959400007,36.707949750000125],[83.22268649500006,36.614297740000154],[83.14855962500019,36.52510087900009],[83.0093005060001,36.46351316900018],[82.72764559300015,36.40390224700019],[82.7071305500001,36.28304811100014],[82.63478852200012,36.24835776100008],[82.15083352600016,36.28534391500017],[81.86233562700016,36.226473282000086],[81.58922556100015,36.26247171300008],[81.13422350200005,36.2537627480001],[80.82657664200008,36.34569562900003],[80.63704655600014,36.46387225000012],[80.47158057900009,36.52486769500018],[80.32084663400019,36.50991823500016],[80.19334464400004,36.52534060200014],[80.02619960300012,36.502716336000105],[79.85322562000005,36.578451525000105],[79.61236559700006,36.76831655200016],[79.24906155899998,36.903284639000105],[78.95929749000004,37.10703546200011],[78.84893749700007,37.10614245400012],[78.70064553600008,37.182538138000155],[78.4341816490001,37.211098467000056],[78.20854165300011,37.1925558530001],[77.83690650600005,37.372045257000025],[77.39866657800013,37.47434538000016],[77.0340495980002,37.55015701200017],[76.92781853100007,37.66556877800019],[76.7750855020002,37.78016045800007],[76.73793757800019,37.872744781999984],[76.58529658300006,37.92817883400011],[76.53543063000018,37.98403265100018],[76.34591663700002,37.98203775800005],[76.26811949900008,37.946130356000026],[76.20428460100015,37.86035498799998],[76.17835250100018,37.714731657000186],[76.23619853000008,37.54916174500016],[76.2401886510001,37.40353858200018],[76.13246962800014,37.26789038700002],[76.01078048700003,37.26988528000015],[76.00479849100014,37.08835890600005],[75.85198264900004,36.837670096000124],[76.03374455500011,36.670646593000185],[75.87163553000016,36.71240188200011],[75.79978954400013,36.763486564000175],[75.76995063900017,36.718402486000116],[75.90293154500011,36.622716691000164],[76.32550854700008,36.410097312000175],[76.5374065790001,36.37478200700019],[76.69633450500004,36.32180821100013],[76.8199385750001,36.251176763000046],[77.03183761400015,36.074598896000055],[77.24374352600012,35.986305772000094],[77.47330457600003,35.91567449200005],[77.68520361399999,35.82738539100018],[78.00305158600008,35.615487358],[78.1963116180001,35.37450730600011],[78.28331761800013,35.296739338000066],[78.60343959900013,35.40359368400016],[79.00695749400012,35.46730503300006],[79.283286546,35.399180779000176],[79.47753162100008,35.257914195000126],[79.6011355230001,35.03718985000012],[79.86618756300004,34.798204859],[79.96675849900015,34.786113125000156],[80.06847356500009,34.69678668000006],[80.24932854800016,34.67383401200004],[80.2062685320002,34.583328568000184],[80.07942150400004,34.59656225200001],[79.96560665800013,34.55912532000008],[79.92456852400016,34.46479370500009],[79.99076058200006,34.432865694999975],[80.12807459600003,34.451804940000045],[80.26259659800013,34.5107483270001],[80.34154557700015,34.46185668600003],[80.42099763700008,34.42068578400006],[80.54465451400011,34.429791716000125],[80.56653563900005,34.429280587],[80.6271134980002,34.51349138900008],[80.59639751100008,34.526915007000184],[80.75249453200018,34.604042095000125],[80.84005759200011,34.60487793800007],[81.05354349300018,34.43807638900017],[81.16645862500008,34.509318375000134],[81.1996995770001,34.493555871000126],[81.2552186210001,34.49684492900013],[81.33747057200003,34.59113346100003],[81.48409252300019,34.64208101600002],[81.62588465300018,34.47935038900016],[81.79151960900009,34.336959288000116],[81.80399355700013,34.251672417000066],[81.93992656900014,34.22965902500016],[82.09226263000005,34.07971817599997],[82.17768059400015,34.08347595100014],[82.246475567,33.98568881300014],[82.32875065300016,34.05462594300013],[82.24392663100014,34.108637419000104],[82.17251549800017,34.24210162500009],[82.05148349800015,34.33102724700018],[82.03880352300007,34.39384659400014],[82.12210052900014,34.46283368100012],[82.20027954600005,34.38122797400007],[82.42678053100013,34.242540837000035],[82.42376757199997,34.357386489000135],[82.52989956500005,34.45510087200006],[82.58648663200006,34.37783313600016],[82.71925363100019,34.30054109200006],[82.83724249700009,34.33330125800012],[82.77489454900012,34.43293459400007],[82.84337654200004,34.52955782100014],[83.05310064399998,34.46338671900003],[82.9878616100001,34.41906103600007],[83.12468762900016,34.330543444],[83.39371453500019,34.37882504999999],[83.47185549800008,34.44839518200018],[83.43166360200013,34.53957956000005],[83.48770165400009,34.57168694300003],[83.86080162200011,34.48039242700003],[83.88182058500007,34.43794345200013],[83.81420159300006,34.36215847400018],[83.90563960700018,34.34474506999999],[84.05283353900018,34.36429133300015],[84.18740851500007,34.59764117100002],[84.2623675390002,34.633052365000026],[84.41091162800012,34.55278927200004],[84.54634055200012,34.545274560000166],[84.75551564000011,34.78369427600012],[84.86811863000008,34.81487864400003],[85.08705863500006,34.83106812200015],[85.24549051900016,34.68825692000007],[85.11872060400015,34.623996557000055],[85.02973966100018,34.63373515500007],[84.9622805950001,34.54644148900019],[84.98153650900014,34.488711969000065],[85.12643463700005,34.41959479500008],[85.2792585250001,34.41935507300013],[85.4110106440001,34.30148724100013],[85.63376659400006,34.25610929400011],[85.7709426420002,34.18368931500015],[85.94738757100009,34.21853540100011],[86.123428661,34.29879028000016],[86.25668365500007,34.29626112500006],[86.3087465050001,34.22638924500018],[86.39503451000019,34.199473948000104],[86.48114750100012,34.229730942000174],[86.64195263800002,34.11408431500013],[86.72817258200007,34.20024089200018],[86.89963564300018,34.23014718700006],[86.83573151000013,34.369646363000015],[87.01605960800003,34.42417265500018],[87.31905350600016,34.41584489900015],[87.3853835290002,34.452668109000115],[87.36711165000014,34.53504796800013],[87.4589845180002,34.58317668800004],[87.51699851900008,34.65275084300009],[87.56615452600005,34.77245665800007],[87.6490096390001,34.77697634800012],[87.67877964400009,34.670427104000055],[87.60369857900008,34.554490295],[87.82089950700015,34.57440687100018],[87.92604863800005,34.50270773500006],[88.15836364600011,34.56552205300011],[88.1310956390002,34.647345857000175],[88.02154550500018,34.60973374300016],[87.89610261300004,34.65556951000019],[87.92263753900016,34.730354526000156],[88.1301116030001,34.797899758000085],[88.23625952200007,34.81237664600013],[88.55342051300005,34.770068486000184],[89.25335653500008,34.999680833000184],[89.89523362800014,35.100073067000096],[90.05115563500016,35.14511992900009],[90.07118955700003,35.0960532740001],[89.9853516600001,35.02637518300014],[89.53347051900016,34.83196012400009],[89.47269451300019,34.72454486100003],[89.63419350300006,34.690087696000035],[89.86041252000012,34.696355515],[90.06050866600015,34.724548717000175],[90.16534464900008,34.769122505000155],[90.2659605120001,34.93904430200013],[90.38249159800006,35.07143696500003],[90.53285254700018,35.12679859800005],[90.88862661900015,35.14622315600019],[91.01898952100004,35.123353636000104],[91.54676862700012,35.067157166000186],[91.6915205750002,35.08167177200016],[91.9324416180001,35.15216575700009],[91.98938759800006,35.200366562000056],[92.03558361900002,35.30377711900019],[92.18846852700017,35.373859217000074],[92.23274257800017,35.454804430000024],[92.20999861900009,35.58917824000014],[92.13885453400019,35.714476293000075],[92.16547361400012,35.80268895100011],[92.2446596330002,35.807342919000064],[92.48661064400005,35.74694225400003],[92.65643353500019,35.72609176700013],[92.783180651,35.79045237899999],[92.99122652900002,35.818012579000026],[93.52050063200011,35.82944130400017],[93.7891696310001,35.85275992600009],[93.86538661200018,35.92746112400005],[93.8534856500001,36.002056374000176],[93.68555455500018,36.160484906000136],[93.57221261600006,36.19121899800007],[93.45451359700002,36.187572199000044],[93.53353164200007,36.32836202100003],[93.30374863900016,36.29844784700009],[93.1706235650002,36.26144945600015],[93.07515754300005,36.32185012100018],[92.70270566400006,36.38924280100014],[92.60936764000013,36.388411820000044],[92.23078959500009,36.435887757000046],[91.88272050400019,36.585062332000064],[91.79920959100008,36.654835138000124],[91.72602065600006,36.828942187000166],[91.60625465900006,36.92145442600008],[91.41487150200004,37.0075464630001],[91.1129305390001,37.06416353600008],[91.05949355900003,37.03862404500018],[91.07998664200005,36.93605704300012],[90.90578454200005,36.979490053],[90.85804759200016,36.86748854800015],[90.79229759600008,36.88589001100007],[90.70196565800018,36.972875391],[90.55601459500008,37.04200379600013],[90.40077252800006,37.069064268000034],[90.03530864100009,37.10744366100005],[89.68309050800008,37.118704413000046],[89.29798866100009,37.14712677600011],[89.10250859700005,37.230160088000105],[89.0431826590002,37.35553156700007],[88.91711464500008,37.41208342900006],[88.65113858400014,37.741960102000064],[88.54985066000017,37.748651208000126],[88.4260405620002,37.71449880800003],[88.28140260900017,37.7470029910001],[88.3135525720001,37.80304422800009],[88.41566460500007,37.82097261600006],[88.64282960300017,37.896521559000064],[88.80892154100007,38.003304323000066],[89.0428926460001,38.009957375000056],[89.18606561000013,38.03586181400016],[89.34811361500016,38.10873642800016],[89.50697364700017,38.225933371],[89.87111654600005,38.37427713200003],[90.36550852100004,38.52806024500018],[90.68724066600004,38.60399023000008],[90.87126166200017,38.68309896700015],[90.8711925950002,38.75543965300005]],[[79.04029064700006,36.25731868600013],[79.08193965300018,36.20179695900015],[79.38011965600015,36.189578324000024],[79.4682764910001,36.24160613800018],[79.48561864800013,36.10864803100009],[79.6941835340001,36.15618482200017],[79.69914260300015,36.09174139700008],[79.6168445510001,35.99556744000006],[79.70112659900019,35.878573171000085],[79.76259662700016,35.855769868000095],[79.90239755200014,35.93509083500015],[79.99658952500016,35.87461054200003],[79.97527350700017,35.811153835000084],[79.81266760200015,35.75166512200019],[79.77400255400005,35.67532308300008],[79.83249650300007,35.634675043000186],[79.9177625870002,35.69118885200015],[80.08929454700012,35.684245954000176],[80.12399260900008,35.65152769800005],[80.0555805210002,35.49190156000009],[80.06847356500009,35.40663363200014],[79.89842955900019,35.50479108300016],[79.72591356300006,35.56229680600012],[79.68823255000012,35.62971630900006],[79.5191875000001,35.74472658200017],[79.51026161100009,35.800247973000126],[79.27825153700007,36.01936316000001],[79.16224650000004,36.05307232500019],[79.25148057600006,36.154205854],[79.1067195760001,36.167094539000175],[79.04029064700006,36.25731868600013]],[[80.5116725630001,35.788350365000156],[80.45565060400014,35.639629921000164],[80.55678564200002,35.599969941000154],[80.59991455700009,35.72291385300008],[80.7198865810002,35.731836891000114],[80.73574849500005,35.67532308300008],[80.90033755800005,35.68028198400009],[80.98907458700006,35.559320894999985],[81.03964260900005,35.59898205000019],[81.16654965300017,35.54742328700007],[81.33213063000017,35.548415033000026],[81.39459257200014,35.511730125000156],[81.43276962700008,35.41754033200016],[81.54976657800012,35.455216317000065],[81.57653854400013,35.57419458300018],[81.76491561600005,35.58410836200005],[81.80458062600013,35.503799169000104],[81.70146159100017,35.45819239500014],[81.77880057400012,35.38283824700011],[81.91017165100004,35.38085525700018],[81.9627224960002,35.444310622000046],[82.18183852100003,35.60691166500004],[82.2532275260001,35.59898205000019],[82.29982755500015,35.71993894700012],[82.41384859500005,35.74571832900011],[82.48325360400014,35.70804117100016],[82.41682450600018,35.5662597700001],[82.17639162500018,35.410601457999974],[82.1000445570001,35.37589920500011],[81.997917605,35.20635945500004],[81.80606858100009,35.131006481000156],[81.68212856400004,35.201400554000145],[81.6969985630002,35.37589920500011],[81.557197638,35.332276260000185],[81.56215654000016,35.26584498400007],[81.49473552799998,35.14389617200004],[81.34848757800012,35.096304228000065],[81.28007465200017,35.286668481],[81.15019253600008,35.182564238000055],[81.05500764400011,35.171658376000096],[80.90132863400015,35.05367236000018],[80.81952662300017,35.14290425700011],[80.69757864900004,35.16769138900003],[80.55579356000004,35.28964036900004],[80.45366660800016,35.328308603000096],[80.42689564700015,35.37589920500011],[80.2608186290002,35.44629461900013],[80.2231446560001,35.52164474299997],[80.12895151100003,35.54147632600012],[80.15373964800011,35.68028198400009],[80.27470358700009,35.79529309500015],[80.27767949800005,35.859736855000165],[80.469032648,35.88254032500009],[80.5116725630001,35.788350365000156]],[[77.85678050200005,36.80770563000016],[77.83314554600008,36.68542137400004],[77.75196849100013,36.64740122900008],[77.71572849400019,36.452023256000075],[77.56145453700015,36.441384609000124],[77.29812665500003,36.51452995800008],[77.21300457200016,36.62092380200005],[77.35265361700004,36.639542356000106],[77.49096658700006,36.598314289000086],[77.5772705170001,36.716250517000105],[77.69133749100013,36.77482459700013],[77.85678050200005,36.80770563000016]]]},"properties":{"objectid":492,"eco_name":"North Tibetan Plateau-Kunlun Mountains alpine desert","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Palearctic","eco_biome_":"PA10","nnh":1,"eco_id":759,"shape_leng":81.1161664822,"shape_area":37.4887489495,"nnh_name":"Half Protected","color":"#EC8751","color_bio":"#D6C39D","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":375267.0026433249,"percentage":7.684694016180252}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[162.43609483700016,-74.91594238599998],[162.43162007200021,-75.0337747239999],[162.7761414050002,-74.98893789399995],[162.43609483700016,-74.91594238599998]]],[[[162.4957604320001,-74.33741951299999],[162.44786034900017,-74.40618919999997],[162.63238047900018,-74.58876355099994],[162.39030934200002,-74.67858338999991],[162.5244817040001,-74.73157061799998],[162.7934284160001,-74.69266381999995],[162.66669801600005,-74.52050968599997],[162.70380220200002,-74.38834009699991],[162.4957604320001,-74.33741951299999]]],[[[161.4331108780001,-71.95501950399995],[161.62769851200017,-71.98083225599999],[161.65945923200013,-71.86347818899992],[161.35687592800002,-71.89016634699993],[161.4331108780001,-71.95501950399995]]],[[[161.7118734730002,-71.44213802199988],[161.66259674700007,-71.57508712899994],[161.87653803800004,-71.56391019199992],[161.7118734730002,-71.44213802199988]]]]},"properties":{"objectid":493,"eco_name":"North Victoria Land tundra","biome_num":11,"biome_name":"Tundra","realm":"Antarctica","eco_biome_":"AN11","nnh":1,"eco_id":125,"shape_leng":571.287180445,"shape_area":2.58311322183,"nnh_name":"Half Protected","color":"#65D6C4","color_bio":"#9ED7C2","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":9470.275158102333,"percentage":0.11082624720927263}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[161.49330158900023,69.40626067000017],[161.64300573300022,69.51968592500009],[161.45060769500014,69.60780336500011],[161.49330158900023,69.40626067000017]]],[[[137.9533077000002,71.52592127400004],[137.92340056700004,71.59632171700002],[137.4626005780001,71.60898761100015],[137.12780758300028,71.5783916530001],[137.08610560300008,71.52804290200004],[137.36920170100018,71.43765933100008],[137.43649262600013,71.50013200200016],[137.83369458900006,71.4491567870001],[137.9533077000002,71.52592127400004]]],[[[153.37120069200012,69.5976175080001],[154.23599265600024,69.25715113900003],[154.84550470700003,69.05066580400012],[155.65460160700002,68.92124838000012],[156.8791046230001,68.92832907700006],[158.81889360800005,68.89040113300018],[159.17990066900006,68.81536180900008],[159.71620165700006,68.73707215100006],[159.9821016100001,68.6739891100001],[160.60879572400006,68.58892435899998],[160.92709363600022,68.60511517900011],[161.11610370800008,68.68171856600014],[161.27059961800012,68.81211147500011],[161.80900563700015,68.94101760200016],[161.85249363300022,69.18121897500004],[161.79119861900006,69.43100522200012],[161.4436036090001,69.28137584500013],[161.35760461200016,69.39792905900015],[161.4060055760002,69.49800998800009],[161.1483006100001,69.46338585500013],[161.20899967100002,69.34314728600009],[161.03590364700005,69.33227444900012],[160.97219866800015,69.49151652800003],[161.03169257900015,69.58101429900006],[160.90409872200007,69.63749776500015],[160.53680473100007,69.68587140500011],[160.3020016390002,69.68482634900016],[159.90919464300032,69.78131311900017],[159.72959862100004,69.7342903070001],[159.70350659400026,69.97750631500003],[159.83549458000016,70.07487854900018],[159.74630760900004,70.14190661700013],[159.9897006430001,70.18680009100012],[160.0659027040001,70.34220476700017],[159.83419773100002,70.58278902500018],[159.6145016790001,70.70767401800003],[159.08999671100003,70.8699148070001],[158.21270766400016,71.00948774400001],[157.7324987080002,71.0521006690002],[157.45599363600013,71.05338930300007],[156.21719360800012,71.09262197400017],[155.75399756800005,71.07931603800006],[155.52110270000014,71.00875499800014],[155.37370257400028,71.0614007260001],[154.6257935670002,70.99550186800013],[153.69529770700024,70.86166751700017],[153.4445036200002,70.8701127870001],[153.1246035920003,70.82502116600017],[152.63119464600004,70.81734568900009],[152.27389557100014,70.83940283500004],[152.0791016500001,70.922476883],[152.00689658300018,71.05669395200005],[151.50770563400022,71.31030201200008],[151.01269557700004,71.35968969400011],[150.7068935750001,71.3058684880001],[150.580993701,71.37498733800004],[150.54739366800004,71.50726634300008],[149.98249865600008,71.50010199500008],[149.99940461900007,71.62226320500008],[149.81239363100008,71.66276254900009],[149.50720266800033,71.64532869400011],[149.22450269900025,71.68375200800011],[148.97329655800013,71.67408515900007],[148.89610258200014,71.82520953300019],[149.21119659600004,71.79793297600008],[149.33369459000005,71.87375131300007],[149.63439955800027,71.74392887600004],[149.8054046320001,71.76684902300013],[150.0776827100002,71.86721979900017],[149.89819364100015,72.05531859100017],[149.61369357500007,72.12736809],[149.08419768700003,72.21003008399998],[147.7433925790001,72.31432191400012],[147.34480257200005,72.3170911270002],[147.00819355500016,72.25976863300019],[146.6690065990001,72.09207943900014],[146.54190056900006,71.97108515800011],[146.19979855500003,71.78699945300008],[145.464004584,71.67283407600002],[145.3632966880001,71.62572744500017],[144.92010456300022,71.68841419000006],[145.05949360100033,71.78570243800016],[145.39559970400023,71.8746438180001],[145.76339761600013,71.89516104100011],[145.84120162600016,72.00492323700007],[145.65220664100013,72.05731734000005],[145.78010559900008,72.18161610300012],[145.9568936830002,72.11344289900006],[146.2622987190001,72.14612880100003],[146.26690658700022,72.07995619000008],[145.99670370000013,71.99730073400008],[145.99870261600006,71.86721175200012],[146.19889867400002,71.91201470100015],[146.82910162000007,72.23182822900014],[146.82330369000022,72.28008686900017],[146.44410655800016,72.29955836500011],[145.79820263100032,72.30211417500004],[145.04139656900009,72.27060224200011],[144.7079926240001,72.22485348000009],[144.5171967030002,72.25325220600007],[144.85079963400005,72.42207848800007],[145.33459470400032,72.40382085900012],[145.45899958200005,72.33658559000014],[145.7395936820002,72.35377553200016],[146.82220465500006,72.31823626300007],[146.5809015650001,72.40821515500011],[145.47540263100018,72.56698449500004],[144.2409975700001,72.66453224600019],[142.88119471100015,72.71392847800007],[142.10600260900026,72.74896483300006],[141.6607966480002,72.79338556700014],[141.1324006330001,72.90720074799998],[140.67840557600005,72.88494394600019],[140.74110355300024,72.80595221900006],[141.06669657100008,72.627825545],[140.93099959300014,72.5301022770002],[140.67880271100012,72.48764978100019],[140.00799564600015,72.45605403000013],[139.53750567400016,72.45838906000006],[139.2248995780002,72.35051061400003],[139.1309966130001,72.20696968300018],[139.25100669200003,72.13452405600003],[139.50570657800006,72.13778931000002],[139.69900466500007,72.235368074],[140.1965026370001,72.19080149500019],[139.89930767600003,72.14958499500017],[139.6302946840001,72.04224885700006],[139.65400658500016,71.96858215400016],[139.40640265000013,71.94756956100014],[139.74560569900007,71.85803356800011],[139.76499957900035,71.68577439400013],[139.98219262800023,71.52622654300012],[139.93530258500016,71.47154367700006],[139.56249967200017,71.49169327000004],[139.2158965760001,71.41165665500012],[139.04580663800016,71.60241821100016],[138.75860558600004,71.64524453900015],[138.54130558500003,71.57553057400008],[138.42170756100006,71.62168351200017],[138.15969865500017,71.56922118000011],[138.10879569200006,71.4772656670001],[137.9400936300001,71.39728990600008],[138.27459761600016,71.35391422700019],[138.02879361200007,71.29440891700006],[137.8482967030002,71.2082987760001],[138.04550159400003,71.16310673900006],[137.8065945550003,71.11130808600012],[137.6815945620001,71.20877872400007],[137.48260466000033,71.27949315300009],[137.4954987100001,71.34837513000008],[137.1873016620001,71.37684946100018],[137.0740966830001,71.44619697000013],[136.5484926800001,71.55370108100004],[136.43229670300013,71.60176190800013],[135.98680156700016,71.66225846200001],[135.70970154700024,71.6602905580001],[135.26170357400008,71.56163673100008],[134.85079954600008,71.50167410500012],[134.8065037020002,71.38187692700012],[134.52999863000014,71.39125443300009],[134.08830267500002,71.3688993940001],[133.67129561500008,71.41116866100009],[133.20829755600016,71.54936780400004],[133.0066066700001,71.69409896500008],[132.77659567900002,71.76173002700006],[132.73809860400002,71.93060861200001],[132.47250358500003,71.87772668200006],[132.28959654300002,71.74223556400011],[132.21650668300003,71.56438381600009],[131.98019367500012,71.32936095100007],[131.98730454600002,71.24745534000004],[131.80960065500005,71.18862846100018],[131.67869561100008,70.98504929900008],[131.33459468100023,70.78964886400018],[131.05380260100014,70.76869662000013],[130.941894638,70.89539143400009],[130.65789765300008,70.88992810900004],[130.30340567700011,70.94315403300004],[130.26585357800002,70.87340871900017],[130.39259365300006,70.82646335600015],[130.53550761700012,70.6875388430002],[130.85729960900005,70.62894162800012],[131.45329265600026,70.5473790050001],[131.64050263100012,70.49426674000017],[131.87629663200005,70.36219510300003],[132.1976926630001,70.26179348199997],[132.80160560200034,70.27747350800007],[132.950302576,70.38694569000006],[133.30650362200015,70.341579142],[133.8569026350002,70.32521314000019],[134.33889760800002,70.4002065310001],[135.1237025790001,70.28484354800008],[135.78089860600005,70.33350669800018],[136.28509556400002,70.34103666500016],[137.2048035780001,70.2238050200001],[138.00489764400004,70.30543687800008],[139.23500060900005,70.2256513860001],[139.6103975540002,70.18731088400017],[141.72970561600016,70.11732987100004],[142.1284946080001,69.9450113530001],[142.08819559100004,69.72861374700005],[142.50430260200017,69.71636828900012],[142.80859368300003,69.80997855700019],[143.09919761900017,69.98058096500006],[143.44590766800002,70.10085825800007],[144.1524965750001,70.09253335200015],[144.60710166700028,69.97825414900012],[144.16679358700003,69.84321330700004],[143.77699267600008,69.80043307900013],[143.87019357300005,69.66911648400014],[144.36379966000004,69.59386358900008],[145.09410063500002,69.65123956000019],[145.24760463100006,69.4947896610002],[145.56480367500012,69.47878274100009],[145.89549255400016,69.55762091000014],[146.28239466800028,69.5207854630001],[146.4398036240001,69.39341305700003],[146.8666996530003,69.38011315600016],[147.61059557200008,69.62513781100012],[147.96760563900023,69.65670271700003],[148.59849556600022,69.57665805600016],[148.50199857100006,69.67055062700007],[149.0458065580001,69.83814711700012],[149.6938016030001,69.96413148000016],[149.69909661900022,70.17105988300017],[148.88740568700007,70.39947412000015],[148.9183955950001,70.53198916000008],[149.19590766900023,70.62440148600018],[149.69810470400012,70.60294699900004],[150.36239668300027,70.41376509800006],[150.66259756300008,70.25095970400014],[151.97219868900004,70.12532671000008],[152.70230067800014,70.07068944200006],[153.1573025690002,69.99928115900013],[153.46609456500005,69.88390359100003],[153.2451936970001,69.784365138],[153.36129764100008,69.7216936480001],[153.37120069200012,69.5976175080001]]]]},"properties":{"objectid":498,"eco_name":"Northeast Siberian coastal tundra","biome_num":11,"biome_name":"Tundra","realm":"Palearctic","eco_biome_":"PA11","nnh":2,"eco_id":775,"shape_leng":101.254077222,"shape_area":54.5830794736,"nnh_name":"Nature Could Reach Half Protected","color":"#7BF5CC","color_bio":"#9ED7C2","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":223095.03250833682,"percentage":2.6107779141745695}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[1.544713427000033,39.11363408300008],[1.35663156600009,39.072126563000154],[1.232866563000186,38.97159519000019],[1.21540756100012,38.89373837300019],[1.347099498000091,38.87216268400016],[1.495900575000121,38.93008901100012],[1.614719584999989,39.043070025000134],[1.544713427000033,39.11363408300008]]],[[[3.182735457000035,39.95727615900017],[3.016078579000123,39.9259196270001],[2.773461541000131,39.848299683],[2.361061511000059,39.59118530600017],[2.402994496000133,39.51728726200008],[2.491853567000078,39.506229352000105],[2.64957449800005,39.55473978500015],[2.790923560000181,39.35797661900017],[2.96827055000017,39.35173947700014],[3.075545500000032,39.26233172800005],[3.230701568000143,39.349565547000054],[3.300415534000081,39.49823737500009],[3.455619547000026,39.655519262000155],[3.474406577000138,39.739460167000175],[3.340085573000181,39.76448065100004],[3.25263851800014,39.72581929000012],[3.178652464000152,39.75268882200004],[3.085909555000171,39.887693119000176],[3.182735457000035,39.95727615900017]]],[[[4.103564467000069,40.07162493200008],[4.045746435000069,40.050037173000135],[3.834038503000102,40.04814504200016],[3.841991420999989,39.913068828],[3.96752450200006,39.928838541000175],[4.202981551000107,39.81839690800007],[4.319059510000102,39.86342449200009],[4.180763472000024,40.04652817300007],[4.103564467000069,40.07162493200008]]],[[[7.801887469000121,44.05007583200012],[7.714006567000183,44.05419587300008],[7.560219431000178,44.14174267200019],[7.500000485000101,44.04590298500011],[7.295047530000147,44.055026687000066],[7.267436535000058,44.11828977199997],[7.173152529000049,44.11384987800017],[6.929491442000085,44.272899508000194],[6.891857535000099,44.24778330300012],[7.049659435000137,44.11759155900006],[6.928048581000155,44.05417692900011],[6.880774480000127,44.14883057700018],[6.733792443000027,44.16883063600005],[6.777178515000116,44.07233095800018],[6.678411532000155,44.04692088400003],[6.581944544000123,44.133411731000194],[6.497649587000126,44.114551778000134],[6.520177461000173,44.23371846900011],[6.439337525000155,44.31459427900006],[6.379632558000083,44.47995715900004],[6.405092589000162,44.55720109100008],[6.113140508000185,44.61313587800015],[6.044477466000103,44.59532886000011],[5.857574436000107,44.75624799000008],[5.805426425000064,44.553587988],[5.717387440000095,44.626093965000166],[5.578752437999981,44.60911105600019],[5.517454574000055,44.687309016000086],[5.260334497000088,44.86616072500016],[5.193428470000015,44.80100584400003],[5.045093426000108,44.780123674000095],[5.076648442000078,44.88673695600011],[5.154706424000153,44.92133979900012],[5.024713499000086,45.069235966],[4.853586552000024,45.10280180000012],[4.767988545000037,45.3842040830001],[4.880701506000037,45.51824932300002],[4.733163581000042,45.498149351000166],[4.684426502000122,45.43014093600016],[4.746318475000123,45.24481487700018],[4.742618536000123,45.120528687000046],[4.674927459000116,45.03756997400012],[4.682501514000023,44.943785698],[4.529886504,44.90267866500011],[4.515326467000136,44.732210703000135],[4.340212584000085,44.67973294900003],[4.229176507000147,44.54728312000009],[3.983983543000022,44.360008269000105],[3.969202559000053,44.282199397000056],[3.822397547999969,44.205406412000116],[3.714900478000061,44.18516545700004],[3.765136577000021,44.055847946000085],[3.651344530000131,44.084056906000114],[3.604943487000014,43.998062938000146],[3.403357542000094,43.991444084000136],[3.365823547000048,44.01646507100014],[3.447178467000072,44.16398673400016],[3.579808507000109,44.2800065240001],[3.551527462000024,44.395286359000124],[3.606755487000044,44.47117896000003],[3.800829570000133,44.55605997900017],[3.708476420000181,44.58985480700005],[3.578521549000016,44.55828403300018],[3.378966539000032,44.544856056000185],[3.251466560000154,44.56097713800017],[3.195507466000151,44.45068302700014],[3.018343537000135,44.44725717600011],[2.776809441000069,44.49815695300009],[2.508591557000159,44.49787817100014],[2.419214485000055,44.45855313100009],[2.403020480000123,44.39411523900003],[2.581949470000097,44.35408025200019],[2.628515469000149,44.30260027900016],[2.583497440000087,44.23992929200017],[2.607534559000044,44.128715518000035],[2.710126540000147,44.05221589900003],[2.558278473000087,44.023441832000174],[2.447745477000126,43.93733303100004],[2.606712462000132,43.93106102100012],[2.524131438000097,43.81200145100007],[2.626155460000177,43.75126366600017],[2.524878433000026,43.657944920000034],[2.507008550000023,43.54282551500012],[2.688631484000098,43.52914256100007],[2.689624572000014,43.46454474199999],[2.573518449000176,43.38725906800005],[2.317910468000093,43.39270998700016],[2.23833955200007,43.37390401400012],[1.972873446000165,43.39283990700005],[2.180246425000178,43.28188228400006],[2.336185531000069,43.25740746200006],[2.332680555000138,43.21477760500005],[2.169331511000166,43.15575392000005],[2.129896500000029,43.052108502000124],[2.19742044200018,42.97125297500014],[2.168332556000053,42.836098475000085],[2.435290472000133,42.7854519980001],[2.323986509000065,42.691484326000136],[2.33926956900018,42.619323012000166],[2.247714543000143,42.59426816300004],[2.263164570000129,42.53036034200005],[2.531929457000047,42.57739908000002],[2.629541581000126,42.52416158900007],[2.499998430000119,42.42227218000005],[2.605993463000061,42.390835181000114],[2.499997424000071,42.28744993800012],[2.381501453000169,42.293850862000056],[2.185362570999985,42.24920733700009],[1.870388419000051,42.255158153000025],[1.720857446000025,42.17630875100019],[1.445535563000078,42.078153480000026],[1.473405559000128,41.98471034700003],[1.600286451000045,42.02234911500011],[1.738944419000063,42.02022095000018],[1.98346750200011,41.95143838200016],[2.038009551000187,41.826954379000085],[1.966358528000058,41.70762742599999],[1.818881456000099,41.644774049000034],[1.697194495000133,41.52971214400009],[1.510623556000155,41.40850529700009],[1.44189144700016,41.39890315700012],[1.21045050400005,41.44879190900008],[1.078789580000091,41.41001521300012],[0.934653535000052,41.33109791900017],[0.811772487000155,41.29641125600017],[0.539423498000133,41.28091244700005],[0.211420516000032,41.082374329000174],[0.232938537999985,40.922245948000125],[0.296292482000069,40.86719645800008],[0.177868428000181,40.6654128670001],[0.056997528000181,40.62973797900014],[0.086059431000024,40.47818193700016],[0.013429569000039,40.454264177000084],[-0.10597751499995,40.29185189400005],[-0.17532150299985,40.291656931000034],[-0.236433455999872,40.226971773000116],[-0.216070459999969,40.166082611000036],[-0.404658420999965,40.127810170000146],[-0.580550479999886,40.06996095699998],[-0.48429052399996,39.94767150400014],[-0.584853580999948,39.921517618999985],[-0.534087578999959,39.80937512999998],[-0.58354550099989,39.73482111900006],[-0.580529524999861,39.652307317000066],[-0.696342448999872,39.64362433600007],[-0.781946490999928,39.67143398200017],[-0.832078485999887,39.60822085300009],[-0.926834559999918,39.681416996000166],[-1.023463486999901,39.6724250580001],[-0.982472459999883,39.52480599700016],[-0.883984426999916,39.577170428000045],[-0.818047514999819,39.536956068000165],[-0.881300541999963,39.41253778000009],[-0.999998516999881,39.393667098000094],[-1.000003545999959,39.32540387300003],[-1.075845520999962,39.30195533099999],[-1.146510495999962,39.35865940899998],[-1.287762496999903,39.417694494000045],[-1.434269446999906,39.40908158600007],[-1.447983581999893,39.34628051100003],[-1.185515514999963,39.27450862100011],[-1.243318460999944,39.184006195000165],[-1.140488433999963,39.17226130500006],[-1.049471526999866,39.10399808000011],[-0.874831556999936,39.19903578599997],[-0.875251489999869,39.11005920100007],[-0.812081443999944,39.01866041500017],[-0.787809463999906,38.91926613000015],[-0.85719552899991,38.81694270600019],[-0.634112516999892,38.88416054000004],[-0.649976442999957,38.80124206000016],[-0.55980342499987,38.775107454000135],[-0.341189475999954,38.82501464600017],[-0.239740451999921,38.80658183500009],[-0.178870567999866,38.73986792100004],[-0.276678493999896,38.64971652900016],[-0.381196467999928,38.665891088000194],[-0.42027457699993,38.60302228800015],[-0.631185556999924,38.59398123100016],[-0.500000557999954,38.497916910000185],[-0.34362441899998,38.49820675600017],[-0.287413531999846,38.54378402500015],[-0.071383555999944,38.576414606000014],[-0.002876417999971,38.63259263600003],[0.15447151900014,38.68110390700008],[0.195776532000082,38.76811158200019],[0.121916542000065,38.845064159],[-0.067169470999886,38.888127695000094],[-0.151797523999903,38.96084238200012],[-0.227397428999893,39.07777563100018],[-0.256078457999934,39.212051708000104],[-0.336967511999944,39.383195251000075],[-0.326708564999933,39.49476944700007],[-0.20516158099997,39.706917596000096],[-0.081159537999952,39.850782570000035],[-0.006018457999915,39.89514295499998],[0.057873437000069,40.047565014000156],[0.148244435000038,40.090773557000034],[0.200653458000033,40.18660134200019],[0.389042432000053,40.34091536500017],[0.510612550000189,40.53420423100005],[0.594664431000126,40.62183434700006],[0.78163753400014,40.66169364900003],[0.896928433000085,40.717441185000155],[0.701885569000183,40.8021381370001],[0.991142533000186,41.03821175800016],[1.218282554000041,41.105907193],[1.397282455000095,41.12633774700009],[1.538251482000135,41.18683530600015],[2.116150514000083,41.28528344200015],[2.268528485000104,41.43764079300007],[2.344073573000117,41.48703350400007],[2.748580532000176,41.63390205000013],[3.046913421,41.76748796100014],[3.207499455000175,41.897461105000104],[3.236852544000158,41.96180629400004],[3.223955477000175,42.07382053900011],[3.13455057800013,42.134466123000095],[3.134682509000129,42.2336092860001],[3.25952944800008,42.23684436500014],[3.312187581000046,42.318325852000044],[3.174879434000104,42.36211442299998],[3.180805440000142,42.44855883400004],[3.054264518000139,42.59173515100008],[3.050632472000188,42.94424497500012],[3.09291347400017,43.06082132199998],[3.243980515000089,43.21578879800012],[3.357418510000173,43.276515352000104],[3.539242441999988,43.28229450600003],[3.675101526000049,43.39750510600015],[3.802488517000029,43.43938679400014],[3.972998556000164,43.53750837100017],[4.134392437000088,43.53648527600018],[4.182733555000027,43.462198815000136],[4.428556502000163,43.43905487100011],[4.559523572000103,43.44262589700003],[4.608590563000178,43.34264203000009],[4.83842553300002,43.33942304400017],[4.849491489000059,43.403128021999976],[4.964725559000158,43.42161380700014],[5.034814531000052,43.332545357000186],[5.258016566000094,43.33159116100012],[5.342732461000082,43.34966505900019],[5.347624475000032,43.21667376000016],[5.698131526000054,43.176506003000156],[5.865710581000144,43.05527837000005],[5.945281497000167,43.10730333400011],[6.032539456,43.076648367000075],[6.191276442000117,43.11558113400008],[6.644976456000052,43.16490092300006],[6.704877559000124,43.20713766800003],[6.632557493000036,43.27913955800011],[6.749698445000149,43.41571278000015],[6.924738568000123,43.439222844000085],[6.993484423000041,43.54280238100017],[7.051126436000118,43.54108241400007],[6.987840552000137,43.70851294200003],[7.151919492000104,43.74989054200006],[7.145458554000015,43.91529114100007],[7.319744472000025,43.91074814900003],[7.397967578000078,43.96341013800003],[7.59823957600014,43.93339621900009],[7.801887469000121,44.05007583200012]]]]},"properties":{"objectid":503,"eco_name":"Northeast Spain and Southern France Mediterranean forests","biome_num":12,"biome_name":"Mediterranean Forests, Woodlands & Scrub","realm":"Palearctic","eco_biome_":"PA12","nnh":3,"eco_id":799,"shape_leng":60.0531729282,"shape_area":9.9848557944,"nnh_name":"Nature Could Recover","color":"#D49E54","color_bio":"#FE0000","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":90901.84329538507,"percentage":2.751771297221449}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[36.36083333300019,-3.82666666699987],[36.455,-4.02583333299998],[36.5750000000001,-4.025833333999913],[36.65916666600003,-3.976666666999961],[36.605833333000135,-3.891666665999878],[36.49000000000012,-3.874166665999951],[36.41583333300002,-3.91583333299991],[36.36083333300019,-3.82666666699987]]],[[[37.17083333400018,-3.648333332999925],[37.06416666700005,-3.71],[37.12416666700011,-3.819166666999877],[37.18833333400005,-3.776666666999972],[37.17083333400018,-3.648333332999925]]],[[[39.80666666700017,-3.615833332999898],[39.80666666700017,-3.61],[39.805,-3.611666666999952],[39.80666666700017,-3.615833332999898]]],[[[36.94333333300017,-3.608333332999905],[36.815,-3.735],[36.88000000000011,-3.793333332999907],[36.94333333300017,-3.608333332999905]]],[[[37.345,-3.426666666999836],[37.356666667000184,-3.615],[37.43833333400016,-3.704166666999811],[37.48416666700018,-3.583333332999871],[37.41250000000019,-3.534166665999919],[37.345,-3.426666666999836]]],[[[37.56083333300006,-3.306666666999945],[37.62000000000012,-3.391666666999924],[37.67083333300013,-3.325],[37.61500000000018,-3.285],[37.56083333300006,-3.306666666999945]]],[[[37.482500000000186,-2.9],[37.43250000000012,-2.8575],[37.316666666,-2.880833332999941],[37.47833333300014,-2.920833332999905],[37.538333333000026,-2.983333332999962],[37.482500000000186,-2.9]]],[[[37.28833333300008,-2.7175],[37.3250000000001,-2.8175],[37.40083333400014,-2.741666666999834],[37.28833333300008,-2.7175]]],[[[34.51916666600005,2.108333333000132],[34.476666666000085,2.000833333000116],[34.537500000000136,2.000833333000116],[34.51916666600005,2.108333333000132]]],[[[38.0925,2.590833332999978],[37.980833333000135,2.531666666000092],[38.00000000000017,2.443333333000055],[37.86750000000018,2.3525],[37.811666667,2.2525],[37.71333333300015,2.196666667000045],[37.8425,2.14],[37.779166666000094,2.063333334000163],[37.79583333300019,1.910833334000074],[37.88833333400015,1.998333333000062],[37.9875,1.963333333000151],[38.15583333300009,1.974166667000134],[38.15500000000014,2.024166666000099],[38.270833333000155,2.006666667000161],[38.275,2.056666667000059],[38.2275,2.194166666000058],[38.27250000000015,2.245000000000175],[38.34750000000014,2.260833334000154],[38.34416666700014,2.376666667000165],[38.316666667000106,2.464166667000086],[38.21916666600015,2.5775],[38.0925,2.590833332999978]],[[38.0025,2.312500000000114],[38.035833334000074,2.264166667000154],[37.96083333299998,2.220833333000144],[37.91666666700013,2.2725],[38.0025,2.312500000000114]]],[[[36.98666666700018,2.902500000000146],[36.910833334000074,2.884166667000159],[36.84833333400013,2.76083333400004],[36.89166666700004,2.539166666000142],[36.99250000000012,2.536666666999963],[37.0325,2.615833333000126],[36.98666666700018,2.902500000000146]]],[[[37.800833333000185,3.809166667000113],[37.75250000000011,3.71],[37.74833333300006,3.621666667000113],[37.610000000000184,3.55166666700012],[37.575,3.495833333],[37.61166666700012,3.296666667000181],[37.71,3.1675],[37.77000000000015,3.189166667000165],[37.871666666000124,3.344166666000035],[37.885833333000164,3.460833333000096],[37.85583333300008,3.536666667000134],[37.98333333300002,3.596666667000022],[37.92666666700012,3.726666667000075],[37.85666666700007,3.719166666000092],[37.800833333000185,3.809166667000113]],[[37.82333333300005,3.481666666000024],[37.83666666600004,3.42],[37.725,3.310000000000173],[37.68333333400011,3.35333333300008],[37.745,3.446666667000159],[37.82333333300005,3.481666666000024]]],[[[33.90666666700008,4.056666667000172],[33.87083333300012,4.101666667000075],[33.80120129500017,4.037500000000136],[33.615,3.8525],[33.77833333300009,3.894166667000093],[33.82000000000011,3.95666666600016],[33.93333333400017,3.975833333000139],[33.90666666700008,4.056666667000172]]],[[[36.05250000000018,-1.745833332999894],[36.0191666660001,-2.114999999999895],[36.00250000000011,-2.145],[36.108333334000065,-2.191666665999946],[36.12416666700011,-2.307499999999891],[36.084166667000034,-2.443333332999941],[36.011666667000156,-2.586666666999918],[35.92916666700006,-2.574999999999875],[35.92166666700018,-2.665833332999966],[36.00333333300006,-2.81166666699994],[36.047500000000184,-2.83083333299993],[36.03833333300014,-3.045833332999962],[35.88000000000011,-3.335],[35.89583333300004,-3.442499999999825],[35.90166666700003,-3.476666666999961],[35.9475,-3.610833333999892],[36.054166666000015,-3.749166666999884],[36.15666666700014,-3.706666665999876],[36.24000000000018,-3.71],[36.32083333300011,-3.813333332999946],[36.36416666700012,-3.791666666999959],[36.365,-3.604166666999959],[36.44416666600017,-3.65083333299998],[36.5750000000001,-3.64666666699992],[36.60166666700019,-3.59],[36.595,-3.434166666999886],[36.639166666999984,-3.305],[36.630000000000166,-3.251666665999949],[36.630833333000055,-3.249999999999829],[36.64583333300004,-3.18666666699994],[36.73750000000018,-3.13],[36.86083333300007,-3.263333332999935],[36.965,-3.26749999999987],[36.977500000000134,-3.340833332999978],[37.01083333300011,-3.259166666999931],[37.115,-3.214166666999972],[37.05416666700012,-3.145833332999928],[37.09500000000014,-2.991666666999947],[37.14416666700009,-2.888333332999878],[37.22583333300014,-2.8625],[37.30833333300018,-2.877499999999884],[37.215833334000024,-2.76749999999987],[37.150833334000026,-2.734166666999954],[37.182500000000175,-2.6675],[37.298333333000016,-2.7075],[37.350833333000026,-2.6675],[37.36666666600007,-2.589999999999861],[37.53083333300009,-2.644166666999979],[37.58250000000015,-2.614166666999949],[37.63666666600017,-2.724166666999963],[37.74083333400006,-2.79],[37.73083333300019,-2.84],[37.81083333400011,-2.874166665999951],[37.779166666000094,-2.960833332999925],[37.80666666700006,-3.05],[37.76666666600005,-3.1075],[37.745,-3.255833333999931],[37.698333333000164,-3.3875],[37.755000000000166,-3.501666666999938],[37.725,-3.546666666999897],[37.7675,-3.7],[37.7016666670001,-3.765833333999979],[37.67750000000012,-3.930833333999942],[37.70666666700009,-3.909166666999965],[37.80250000000018,-4.02583333299998],[37.80166666700006,-4.078333333999979],[37.95750000000015,-4.141666666999924],[37.9533333330001,-4.181666666999945],[38.05750000000012,-4.230833332999964],[38.03250000000014,-4.291666666999959],[38.05750000000012,-4.445833332999939],[38.086666665999985,-4.485],[38.105,-4.465833332999978],[38.11583333300018,-4.47],[38.15500000000014,-4.576666666999927],[38.099166667000134,-4.665],[38.211666667000145,-4.822499999999877],[38.31833333300017,-4.935833333999938],[38.303333334000115,-4.823333332999937],[38.20833333300004,-4.70166666699987],[38.24166666700006,-4.524166666999918],[38.27,-4.485],[38.30000000000018,-4.464166666999972],[38.374166667000054,-4.511666666999872],[38.35,-4.61],[38.44416666600017,-4.634999999999877],[38.49583333300018,-4.6975],[38.476666667000075,-4.752499999999884],[38.57083333300017,-4.820833332999939],[38.58,-4.886666665999883],[38.5816666660001,-4.91],[38.54416666600008,-4.961666666999974],[38.57583333300016,-5.051666666999949],[38.65,-4.961666666999974],[38.62000000000012,-4.8725],[38.7016666670001,-4.8625],[38.6875,-4.965],[38.76000000000016,-5.055833332999896],[38.83583333400003,-5.005833333999931],[38.87833333300006,-4.909166666999909],[38.7616666670001,-4.8475],[38.87083333400011,-4.765],[38.93333333300012,-4.6775],[39.01583333400009,-4.474166666999963],[39.028333334000024,-4.342499999999859],[39.08666666700009,-4.21],[39.165,-4.181666666999945],[39.28416666700008,-4.185833332999891],[39.361666666000076,-4.150833333999969],[39.38000000000011,-4.04],[39.433333333,-3.895833332999928],[39.42666666700018,-3.68666666699994],[39.47083333300003,-3.6],[39.47583333400013,-3.524166666999974],[39.561666667000054,-3.396666666999977],[39.6875,-3.278333333999967],[39.58666666600004,-3.255833332999941],[39.62000000000012,-3.184999999999889],[39.575,-3.128333332999944],[39.484166667000125,-3.100833332999855],[39.483333333000076,-3.04833333299996],[39.6625,-3.024166666999974],[39.705,-2.895833333999974],[39.788333334000185,-2.989166666999949],[39.910833333000085,-2.85],[39.8908333330001,-2.774166665999928],[40.15666666600015,-2.638333332999935],[40.14333333300016,-2.595],[40.05333333300018,-2.535833332999914],[40.1375,-2.45],[40.064166667,-2.326666666999927],[40.08083333400015,-2.26416666699987],[39.99833333400005,-2.069166666999877],[40.115833333000126,-1.904166666999913],[40.056666667000115,-1.770833332999928],[40.0575,-1.676666666999893],[40.01166666700004,-1.61083333299996],[39.978333333000194,-1.354166666999959],[39.880833334000044,-1.181666666999888],[39.99083333300007,-1.242499999999893],[40.030833333000146,-1.471666666999965],[40.09333333300009,-1.6725],[40.108333333000076,-1.859166666999954],[40.32,-1.755833332999941],[40.4516666670001,-1.797499999999843],[40.65333333400014,-1.741666665999958],[40.69833333400004,-1.656666666999968],[40.705,-1.5775],[40.81666666600006,-1.384166666999874],[40.915833334000126,-1.420833333999951],[40.93,-1.5775],[41.050000000000125,-1.53],[40.935,-1.409166666999909],[40.8175,-1.3475],[40.86416666700012,-1.2975],[40.97833333300014,-1.300833332999957],[41.01916666700009,-1.266666665999878],[41.12666666700011,-1.385],[41.17250000000013,-1.4625],[41.29802030600007,-1.352124554999932],[41.37701841100005,-1.21506760099993],[41.27137034200001,-1.013289307999912],[41.30277922800019,-0.940001908999932],[41.53786997500015,-0.902882316999978],[41.552146741000115,-0.826739564999912],[41.47410042000001,-0.683020119999981],[41.48457004900007,-0.608780936999949],[41.55500209400003,-0.51455428099996],[41.567375292000065,-0.383208032999903],[41.60163953000006,-0.315631340999914],[41.698721539000076,-0.222356468999976],[41.71395008900009,-0.112901262999912],[41.774864291000085,-0.02724066699983],[41.858621319000065,0.034625319000156],[41.98806399700004,0.041287810000142],[42.13654236399998,0.261150007000026],[42.187938722000126,0.282089264000149],[42.004742858999975,0.339886059000037],[41.598232834999976,0.429195080000113],[41.391898201000174,0.459991294000019],[41.14552849000012,0.453832051000177],[40.98833333300013,0.464166667000086],[40.780833332999975,0.359166667000181],[40.5825,0.315],[40.51083333300011,0.255833333000112],[40.384166666000056,0.198333334000097],[40.29583333400018,0.225],[40.1375,0.3475],[39.80583333300012,0.508333333000166],[39.66583333400018,0.637500000000102],[39.59,0.755833333],[39.5158333330001,0.930833333000123],[39.375000000000114,1.114166667000177],[39.369166666000126,1.173333333000187],[39.051666666000074,1.27916666700014],[38.9075,1.310833333000119],[38.5741666670001,1.679166667000118],[38.5125000000001,1.7125],[38.38083333300011,1.692500000000109],[38.330833333000044,1.71666666700014],[38.203333333000046,1.697500000000105],[38.080000000000155,1.77],[37.929166667000175,1.785833333000085],[37.87333333400005,1.82333333400004],[37.829166667000095,1.748333333000119],[37.773333334000085,1.758333334000156],[37.56583333300006,1.711666667000145],[37.30270210600008,1.828830274999973],[37.10916666600008,1.939166667000052],[37.04,1.954166666999981],[36.97083333299997,1.808333333000121],[36.98916666600019,1.723333333000141],[36.98666666700018,1.473333334000131],[36.92500000000018,1.363333333000128],[36.8725,1.474166667000077],[36.78000000000014,1.568333333000169],[36.73083333300019,1.692500000000109],[36.67750000000012,1.745833333000178],[36.688333334000106,1.930000000000177],[36.774166666000156,1.983333333000076],[36.773333334000085,2.225],[36.7775,2.292500000000132],[36.71083333400014,2.505000000000109],[36.641666667000095,2.394166667000036],[36.55333333300018,2.39333333400009],[36.517500000000155,2.550833334000174],[36.43833333400016,2.649166667000145],[36.44250000000011,2.701666666000051],[36.3925,2.8325],[36.33583333400014,2.866666667000118],[36.37916666700005,2.6425],[36.30333333300007,2.663333333000082],[36.23166666700013,2.839166667000086],[36.15916666600015,2.958333333000098],[36.14166666699998,2.975833332999969],[36.19083333300006,2.85],[36.11416666700018,2.836666666000099],[35.96333333300015,2.870000000000118],[35.93583333300012,2.956666667000093],[35.86333333400012,2.958333333000098],[35.868333334000056,2.834166666000158],[35.736666667000065,2.939166666000119],[35.71916666600009,2.98250000000013],[35.54000000000019,2.987500000000125],[35.5875,3.0875],[35.67083333300019,3.084166666000101],[35.756666666000115,3.133333333000053],[35.88416666700016,3.1425],[35.82333333399998,3.301666667000177],[35.765,3.523333334000142],[35.8025,3.648333333000096],[35.790000000000134,3.761666667000156],[35.73166666700007,3.8241666670001],[35.73750000000018,3.920833333000076],[35.835,4.189166667000109],[35.81666666700005,4.303333333000182],[35.8366666660001,4.385833333000107],[35.83083333400009,4.605000000000189],[35.784491373000094,4.659448388000044],[35.529307879000044,4.781292759000053],[35.50861732600009,4.923827683000013],[35.577585838000175,5.084754211000131],[35.62356484600008,5.119238467000173],[35.736213415000066,5.13303216900016],[35.83,5.11833333400017],[35.83250000000015,5.12],[35.864166667,5.175833333000185],[35.82916666600005,5.233333333000132],[35.86166666700012,5.315000000000111],[35.67916666700012,5.383333333000166],[35.545833334,5.417500000000132],[35.470833333000144,5.406666667000025],[35.35083333400013,5.335],[35.294166666000024,5.3675],[35.30333333400017,5.503333333000057],[35.138333333000105,5.6125],[35.13000000000011,5.691666667000106],[35.015251602000035,5.872454954000148],[34.809379487,5.866905631000066],[34.57337299600016,5.725652961000151],[34.51014569000006,5.706026234000092],[34.35622060800006,5.739460973000064],[34.21828046600007,5.81155539800011],[34.07645045000015,5.906632667000167],[33.78030112100015,5.759158278000143],[33.57157211900011,5.626520024000115],[33.412892130000046,5.456877680000048],[33.34178207500008,5.302473971000097],[33.15344305800005,5.036352568000041],[33.23827110200017,4.809928194000122],[33.34925202800008,4.788591724000071],[33.42916207500019,4.693478916000061],[33.65202011600013,4.707934680999983],[33.781312147000165,4.675091200000111],[33.86414010200008,4.520425472000056],[34.01822010200016,4.35698087500009],[34.05703995400012,4.274166666000042],[34.00250000000011,4.221666667000136],[34.065,4.146666667000147],[34.03166666700014,4.086666667000088],[34.03833333400007,3.995833333000121],[34.09333333300003,3.979166667000072],[34.08333333300004,3.898333333000039],[34.09,3.865833334000115],[34.0925,3.865833333000069],[34.175833334,3.863333333000128],[34.18000000000018,3.865000000000123],[34.19833333400004,3.866666667000061],[34.11666666700012,3.84],[34.11166666600019,3.785833333000085],[34.21416666600004,3.774166667000031],[34.24833333300006,3.7275],[34.25000000000017,3.725833333000026],[34.25083333400005,3.724166666000031],[34.361666667000065,3.690000000000168],[34.40583333300009,3.6325],[34.36583333300001,3.500833333000173],[34.365833334000115,3.5],[34.364166666000074,3.496666667000056],[34.36333333300013,3.491666666000128],[34.36333333300013,3.489166667000177],[34.36416666700018,3.486666667000065],[34.364166666000074,3.485000000000127],[34.3425,3.448333334000154],[34.20583333400015,3.408333333000144],[34.12166666600018,3.331666667000093],[34.10500000000019,3.224166667000077],[34.14083333400009,3.15166666600004],[34.0875,2.83083333400009],[34.25250000000011,2.755833333000169],[34.3375,2.65],[34.364166666000074,2.51],[34.27416666700003,2.421666665999965],[34.399166666000156,2.40166666600004],[34.425000000000125,2.469166667000025],[34.54750000000013,2.351666666000142],[34.705,2.290833332999966],[34.745833333,2.189166666000062],[34.870000000000175,2.023333333000153],[34.860000000000184,1.896666666000158],[34.8250000000001,1.879166667000163],[34.831666667000036,1.757500000000164],[34.8125,1.730000000000132],[34.74500000000012,1.684166666000181],[34.77166666699998,1.634166666000112],[34.719166667000025,1.574166666999986],[34.7225,1.5575],[34.7975,1.541666666000083],[34.86083333300013,1.469166666000149],[34.91166666700019,1.379166667000106],[34.98916666600019,1.4675],[35.049166666000076,1.476666666000028],[35.06,1.38666666600011],[35.040000000000134,1.25416666700005],[35.057500000000175,1.250000000000171],[35.100833334000185,1.308333333000064],[35.300833333000185,1.250833333000116],[35.375,1.308333333000064],[35.3908333330001,1.458333334000145],[35.44083333300017,1.41583333300008],[35.45250000000016,1.315833333000114],[35.530833333000146,1.358333334],[35.61416666700006,1.209166667000147],[35.598333333000085,1.001666667000165],[35.51583333400009,0.542500000000132],[35.604166666000026,0.374166666000065],[35.60333333300008,0.2175],[35.72000000000014,0.220833334000133],[35.77666666600004,0.170000000000186],[35.73916666700012,0.086666667000031],[35.84083333400008,-0.015],[35.85666666700013,-0.083333332999871],[35.7925,-0.1075],[35.800833334000174,-0.204166665999878],[35.88000000000011,-0.269166666999979],[35.985,-0.16],[36.10416666600008,-0.16083333399996],[36.1725,0.000833333000173],[36.26416666600005,0.069166666000058],[36.29083333300014,0.140833334000092],[36.191666666000174,0.326666667000154],[36.2675,0.401666666000096],[36.285,0.485000000000184],[36.42750000000018,0.234166666000021],[36.50416666700016,0.189166667000052],[36.53,0.095833334000019],[36.60750000000013,-0.006666666999877],[36.61083333300013,-0.096666666999965],[36.80916666700011,-0.066666666999936],[36.87833333400005,-0.295833333999894],[36.98833333300007,-0.341666665999981],[37.04,-0.320833332999939],[36.99666666700017,-0.11083333299996],[37.06416666700005,-0.024166665999928],[37.07416666700004,0.22],[37.16000000000014,0.195833333000053],[37.215,0.311666667],[37.1425,0.398333333000039],[37.131666667,0.475833333000139],[37.04,0.493333334000113],[37.00000000000017,0.545],[36.86666666700012,0.583333333000155],[36.90833333300003,0.665000000000134],[36.95833333400003,0.674166667000122],[37.009166667000045,0.5825],[37.11,0.533333334000019],[37.1675,0.438333334000049],[37.285,0.4025],[37.275,0.258333333],[37.330833333000044,0.194166666000115],[37.44083333300017,0.1400000000001],[37.58083333400009,0.164166667000075],[37.60916666700007,0.145833333000041],[37.75416666700005,0.176666667000177],[37.80083333400012,0.265833333000103],[37.85833333300013,0.29],[37.9325,0.41583333300008],[38.00833333400004,0.458333333000098],[38.03250000000014,0.358333333000132],[37.990833333000126,0.274166666000099],[38.00083333300006,0.208333334000031],[37.916666666000026,0.083333334000145],[37.78583333300003,0.038333333000026],[37.79666666700007,-0.03],[37.708333333000155,-0.130833332999941],[37.715833333000035,-0.366666665999958],[37.60833333300019,-0.470833332999916],[37.59416666700008,-0.51416666699987],[37.348333333000085,-0.550833333999947],[37.250000000000114,-0.639166666999927],[37.17416666700018,-0.65],[37.16166666600003,-0.839166666999915],[37.11083333400012,-0.890833332999932],[37.12333333300006,-0.9825],[37.06333333400016,-1.008333332999939],[36.974166667000134,-1.091666666999856],[36.870833333000064,-1.214166666999915],[36.882500000000164,-1.26416666599988],[36.965,-1.161666666999963],[37.228333333000194,-1.111666666999895],[37.24666666600018,-1.327499999999873],[37.153333333000035,-1.404166666999913],[37.135833333000164,-1.479166666999845],[37.22500000000019,-1.507499999999879],[37.298333333000016,-1.7575],[37.29083333400007,-1.901666666999915],[37.25083333300006,-1.975833333999901],[37.12833333300006,-1.965833332999921],[37.11666666700006,-1.834166666999977],[37.01833333400009,-1.807499999999891],[36.868333334000056,-1.8275],[36.79500000000013,-1.781666666999911],[36.74833333300006,-1.9],[36.666666667000186,-1.911666666999963],[36.62833333300017,-1.734166666999954],[36.64083333400015,-1.707499999999868],[36.64083333400015,-1.625833332999889],[36.48500000000013,-1.45833333399986],[36.4725,-1.399166665999928],[36.44583333300017,-1.373333333999881],[36.365,-1.44],[36.3125,-1.385833332999937],[36.196666667000045,-1.52583333299998],[36.05083333400012,-1.431666665999956],[36.075,-1.534166666999965],[36.075,-1.684166666999886],[36.05250000000018,-1.745833332999894]],[[36.9533333330001,-3.035],[37.05666666600007,-3.064999999999884],[37.020833334000145,-3.204166666999924],[36.924166667000065,-3.169166666999899],[36.94000000000011,-3.039166665999915],[36.9533333330001,-3.035]],[[36.268888398000115,-3.077162264999913],[36.15337174600012,-3.185356559999889],[36.12239373200009,-3.074140710999927],[36.268888398000115,-3.077162264999913]],[[36.23416666700007,-3.648333332999925],[36.101666667000075,-3.679166666999947],[36.100000000000136,-3.621666665999896],[36.23416666700007,-3.648333332999925]],[[37.818333333000055,-3.82],[37.885,-3.805],[37.9275,-3.869166666999945],[38.03250000000014,-3.843333333999965],[37.895,-4.001666666999824],[37.83166666700015,-3.928333332999955],[37.818333333000055,-3.82]],[[38.724166667000134,-4.401666666999972],[38.78,-4.525833333999969],[38.675833334,-4.554999999999893],[38.724166667000134,-4.401666666999972]],[[38.63750000000016,-4.685],[38.652500000000146,-4.689166666999824],[38.66916666600014,-4.706666666999979],[38.684166667000056,-4.724166666999906],[38.62333333300012,-4.778333332999921],[38.565,-4.724166666999906],[38.63750000000016,-4.685]],[[37.475000000000136,-1.724166665999974],[37.425,-1.699999999999875],[37.41666666600014,-1.605833333999954],[37.482500000000186,-1.584166666999863],[37.475000000000136,-1.724166665999974]],[[37.30083333300013,-1.52583333299998],[37.24916666700017,-1.431666666999945],[37.33166666700009,-1.430833333999942],[37.30083333300013,-1.52583333299998]],[[38.21083333300015,-0.784166666999965],[38.182500000000175,-0.791666666999845],[38.156666666000035,-0.9675],[38.17083333300002,-1.1675],[38.1408333330001,-1.191666666999879],[38.150833333000094,-1.307499999999891],[38.197500000000105,-1.441666666999936],[38.116666667,-1.4075],[38.10083333400013,-1.317499999999882],[38.06666666700016,-1.225833333999958],[38.090833333000035,-1.125833332999946],[38.0825,-1],[38.125,-0.9675],[38.04250000000013,-0.781666666999968],[38.06666666700016,-0.7],[38.13250000000011,-0.71],[38.23083333300008,-0.684166666999829],[38.21083333300015,-0.784166666999965]],[[38.2925,-0.89],[38.33250000000015,-1.06],[38.29083333400001,-1.155833332999919],[38.24083333400017,-1.1075],[38.25833333400004,-0.965833332999921],[38.2925,-0.89]],[[38.26666666700004,-1.441666665999946],[38.2125,-1.415833332999966],[38.22,-1.289166666999904],[38.30833333300018,-1.2575],[38.358333333000076,-1.284166666999852],[38.48166666700007,-1.290833333999899],[38.510833333000164,-1.239999999999895],[38.616666666000185,-1.244166666999945],[38.5225,-1.395833333999917],[38.40083333300004,-1.475833332999912],[38.32333333300011,-1.481666666999899],[38.26666666700004,-1.441666665999946]],[[35.846666667000136,0.700833334000038],[35.808333334000054,0.539166666000028],[35.8241666670001,0.430000000000121],[35.7641666670001,0.418333334000067],[35.70583333400003,0.543333333000078],[35.79083333300008,0.685833333000176],[35.846666667000136,0.700833334000038]],[[36.902500000000146,0.876666666],[36.889166667000154,0.959166666000101],[36.825833334000095,1.038333333000139],[36.68666666700017,1.074166666],[36.6175,1.116666667000118],[36.60416666700007,1.2675],[36.709166667000034,1.294166666000024],[36.75,1.23],[36.874166666000065,1.1775],[36.930833333000066,1.0825],[36.95083333300005,0.919166666000024],[36.902500000000146,0.876666666]],[[37.20916666700009,1.324166667000043],[37.3325,1.3475],[37.35,1.200000000000102],[37.235833334000176,1.217500000000143],[37.20916666700009,1.324166667000043]],[[37.25916666700016,1.585],[37.208333334000145,1.622500000000116],[37.196666667000045,1.698333333000051],[37.24333333300018,1.746666667000056],[37.3075,1.641666667000095],[37.25916666700016,1.585]],[[35.41333333299997,1.545000000000186],[35.36,1.62166666700017],[35.30250000000012,1.64666666700009],[35.357500000000186,1.734166667000181],[35.419166667000184,1.752500000000168],[35.4625,1.677500000000123],[35.41333333299997,1.545000000000186]],[[36.471666667000136,2.285],[36.58666666700003,2.210833332999982],[36.55500000000012,2.151666666999972],[36.49916666700017,1.815833333000057],[36.50833333300011,1.762500000000102],[36.46666666700014,1.650000000000148],[36.34,1.650000000000148],[36.28083333300003,1.69166666600006],[36.313333333,1.819166667000161],[36.47416666700019,1.91916666700007],[36.39666666700015,2.051666666000131],[36.386666667000156,2.141666666000106],[36.471666667000136,2.285]],[[35.229166666000026,1.86083333300013],[35.17833333300018,1.924166667000065],[35.106666666000024,1.951666666],[35.13750000000016,2.115833334000115],[35.10333333400007,2.230000000000189],[34.983333333000076,2.335833334000142],[34.98083333300019,2.445833333000166],[35.19000000000011,2.445833333000166],[35.2475,2.255833333000055],[35.287500000000136,2.175000000000125],[35.309166667000056,2.034166667000022],[35.229166666000026,1.86083333300013]],[[34.746666667000056,2.465],[34.6991666670001,2.570833334000156],[34.80083333300007,2.55166666700012],[34.746666667000056,2.465]],[[35.6475,3.27916666700014],[35.7625000000001,3.160833334000188],[35.665,3.141666666000106],[35.6475,3.27916666700014]],[[34.9320466960001,4.750948615000084],[35.051019746000065,4.736671849000061],[35.26279177600003,4.736671849000061],[35.40080051400014,4.636734487000183],[35.41833333400007,4.539166667000188],[35.36583333300018,4.4575],[35.36666666700006,4.36833333300001],[35.41666666700007,4.293333333000021],[35.420833333000076,4.181666667000059],[35.34083333400014,4.144166667000036],[35.32416666700004,4.021666666000158],[35.3425,3.9475],[35.31916666700005,3.8],[35.25583333400016,3.805833334000113],[35.23000000000019,3.940000000000111],[35.131666666000115,4.080000000000155],[35.110833334000176,4.255000000000109],[35.04500000000013,4.416666667000015],[34.995833334000054,4.386666666],[34.8925,4.427500000000123],[34.780833333000146,4.3275],[34.756666666000115,4.4],[34.83,4.535833334000188],[34.803555802000176,4.705738856000153],[34.86542178800005,4.755707536999978],[34.9320466960001,4.750948615000084]],[[34.675,4.158333332999973],[34.79000000000019,4.105833334000124],[34.629166666000174,4.060000000000173],[34.675,4.158333332999973]]]]},"properties":{"objectid":505,"eco_name":"Northern Acacia-Commiphora bushlands and thickets","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Afrotropic","eco_biome_":"AF07","nnh":3,"eco_id":51,"shape_leng":222.604467038,"shape_area":29.6675167432,"nnh_name":"Nature Could Recover","color":"#DBDB00","color_bio":"#FEAA01","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":367261.97512979596,"percentage":1.7130542709224637}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-79.59235363599998,-3.478661607999925],[-79.55561860399985,-3.533843531999935],[-79.44226861899995,-3.569260760999896],[-79.37933360099998,-3.684861455999965],[-79.29631051499996,-3.730730917999949],[-79.42426261399993,-3.496553282999969],[-79.48365057699988,-3.513878173999899],[-79.59235363599998,-3.478661607999925]]],[[[-78.78675852699996,-3.149317185999962],[-78.95208754399994,-3.214966095999955],[-78.97397654899999,-3.372805378999942],[-78.85810059299996,-3.36386021199985],[-78.83496855199996,-3.28667093099989],[-78.77609255599992,-3.258266001999971],[-78.78675852699996,-3.149317185999962]]],[[[-78.56164558599994,-2.64459987999993],[-78.63089754099997,-2.779790757999933],[-78.59901462499994,-2.849195430999828],[-78.70350661499998,-2.922887950999893],[-78.70657355299994,-3.013710229999958],[-78.76254253799993,-3.095255083999973],[-78.69752461799993,-3.156299478999927],[-78.64362361699995,-3.075562640999976],[-78.55571756899997,-2.826897053999971],[-78.60409556699994,-2.794089614999905],[-78.56164558599994,-2.64459987999993]]],[[[-78.99256157499991,-2.524355611999965],[-79.18286849599991,-2.588743714999907],[-79.34795359999998,-2.799944205999907],[-79.32417263199994,-2.917445412999882],[-79.3897786259999,-3.112874849999969],[-79.33013954099988,-3.162596299999905],[-79.26332856399995,-3.091640471999938],[-79.17093652199998,-3.079676310999901],[-79.14484365699991,-2.965335919999973],[-78.95882458299997,-2.707692141999928],[-78.94274155499994,-2.592008633999967],[-78.99256157499991,-2.524355611999965]]],[[[-78.66852557999988,-1.973420826999927],[-78.77607763599985,-2.17418567999988],[-78.70106463099995,-2.264094164999904],[-78.83043662499989,-2.313833551999892],[-78.92181361899992,-2.373719902999937],[-78.9577946149999,-2.436714096999935],[-78.88724564399996,-2.505510075999894],[-78.74987060999996,-2.510061616999906],[-78.67734552199994,-2.443118708999975],[-78.58100157999996,-2.44508962999987],[-78.52674853799988,-2.385619020999968],[-78.45101955099989,-2.527946250999889],[-78.39330260399993,-2.552620729999887],[-78.35329460699995,-2.408401368999876],[-78.51079559699997,-2.363664804999928],[-78.47171765499996,-2.249403202999929],[-78.60010561299993,-2.136079536999887],[-78.66395559899996,-2.027231638999922],[-78.66852557999988,-1.973420826999927]]],[[[-78.43663754699998,-1.542542890999812],[-78.46646153199998,-1.54600461699988],[-78.54700457999996,-1.740240135999954],[-78.5282364929999,-1.784275804999879],[-78.61581464099987,-1.990961467999966],[-78.56277462799989,-2.081817609999916],[-78.48535149099996,-2.127679193999938],[-78.35595653199994,-2.047892359999935],[-78.43072562299994,-2.016004582999926],[-78.36805765299988,-1.871891503999962],[-78.40075663099992,-1.799986676999879],[-78.3798146129999,-1.720466722999902],[-78.39830760599995,-1.603895404999946],[-78.43663754699998,-1.542542890999812]]],[[[-78.92272959299993,-0.697013210999955],[-78.98162050999997,-0.832391172999905],[-78.96199763599998,-1.091038599999933],[-78.89033554899999,-1.105462513999953],[-78.94645658199988,-1.269212380999932],[-79.00429556899991,-1.344279867999944],[-79.06694057299995,-1.360758521999912],[-78.9881205079999,-1.500737980999929],[-78.90444949999994,-1.59988784899997],[-78.95265952499994,-1.727816981999922],[-78.86017662299997,-1.978634369999952],[-78.89652256699998,-2.057928347999962],[-78.76378658099992,-2.049828243999968],[-78.72920251299996,-1.905347870999947],[-78.7442096399999,-1.798024808999912],[-78.80972259499998,-1.612904776999926],[-78.72206163399994,-1.518753875999948],[-78.63175165599989,-1.565304283999978],[-78.5467836329999,-1.50216491599997],[-78.71685764599994,-1.326192222999907],[-78.70221764599995,-1.211696598999936],[-78.63330063199999,-1.158307731999969],[-78.71583555599994,-1.089388035999946],[-78.76133755599989,-0.959151700999882],[-78.70858755699993,-0.84637788699996],[-78.80140657399994,-0.719015705999936],[-78.85646058999998,-0.835868824999977],[-78.94606749399986,-0.821532919999811],[-78.92272959299993,-0.697013210999955]]],[[[-78.65614349799989,-0.484923231999915],[-78.76338961399995,-0.629079225999931],[-78.71874256799987,-0.72663988599993],[-78.64224965499989,-0.661303787999941],[-78.68000761399998,-0.594765725999935],[-78.63916058799998,-0.556152812999869],[-78.65614349799989,-0.484923231999915]]],[[[-78.63092050699998,-0.277554779999832],[-78.66162861499998,-0.368303800999968],[-78.60310365299995,-0.406955774999972],[-78.58145856099992,-0.303268781999975],[-78.63092050699998,-0.277554779999832]]],[[[-78.58622752899998,-0.098791080999945],[-78.63812257299998,-0.154076940999857],[-78.61995664199992,-0.214995271999953],[-78.5394285129999,-0.218345182999826],[-78.51468664399994,-0.157306487999904],[-78.58622752899998,-0.098791080999945]]],[[[-78.0570905539999,0.312506058999986],[-78.0378954919999,0.15404617900009],[-78.07755262299997,0.016190358000131],[-78.06207258899991,-0.064525692999894],[-78.12300164899989,-0.099566909999851],[-78.20990756799995,-0.099213025999973],[-78.2780985419999,-0.315792853999881],[-78.32414251499995,-0.374272218999977],[-78.32570657799994,-0.448092981999935],[-78.44817355999993,-0.551039013999969],[-78.52474962199989,-0.546046584999829],[-78.56700849499998,-0.62022408099989],[-78.50334961699991,-0.643511186999945],[-78.47824849899996,-0.772911511999951],[-78.51418255599998,-0.86455069099992],[-78.52438349999989,-0.983787622999898],[-78.4557955599999,-1.018043119999959],[-78.46897157599994,-1.183225788999948],[-78.41387950599983,-1.235654928999907],[-78.25807149299993,-1.253334541999891],[-78.326354499,-1.09023980499984],[-78.28688059699994,-1.056959457999938],[-78.33934762299992,-0.920079458999908],[-78.20461255199996,-0.942754853999929],[-78.15646354799992,-0.910044308999886],[-78.25082349299993,-0.838352717999953],[-78.12870050499998,-0.795005034999917],[-78.17005161899993,-0.738046314999906],[-78.13108850899994,-0.664113737999912],[-78.07254762099996,-0.678145545999882],[-78.03816253999997,-0.589298210999914],[-77.9679106239999,-0.550134103999881],[-78.10890161199995,-0.449328641999898],[-77.9550246209999,-0.320345568999812],[-78.03498060199996,-0.204566172999876],[-77.96311952799988,-0.123700252999924],[-77.91474957699995,-0.18364862999988],[-77.86566163099997,-0.143018695999899],[-77.92111160899992,-0.035248877999948],[-77.91285660799991,0.015790542000047],[-77.97339657999999,0.113393278000103],[-77.9412845029999,0.174466674000087],[-78.0570905539999,0.312506058999986]]],[[[-78.24755052799992,0.591394273000105],[-78.39078551899996,0.550679514000137],[-78.3996735209999,0.492058830000133],[-78.32215851899991,0.39937476200015],[-78.25856753399995,0.474553057999969],[-78.28503456699997,0.537357317000158],[-78.24755052799992,0.591394273000105]]],[[[-77.95687853099997,0.857484328000055],[-78.04302253499986,0.751108253000041],[-78.04675264899993,0.673116321000123],[-77.95619959699997,0.70210312100005],[-77.87683856399997,0.636470975000123],[-77.78383665399997,0.677158074000147],[-77.87086461399997,0.823097905000168],[-77.95687853099997,0.857484328000055]]],[[[-77.10646052399989,1.011700953000172],[-77.19724257099989,1.009975957000051],[-77.25984164099998,0.892999793000058],[-77.14938357999989,0.909323382000025],[-77.10646052399989,1.011700953000172]]],[[[-77.30863152599983,1.017326551000053],[-77.40872150899992,0.990344367000034],[-77.3904115759999,0.849707933000104],[-77.30863152599983,1.017326551000053]]],[[[-77.36513561199996,1.244001376000142],[-77.43637860399997,1.236483983000142],[-77.46885663499995,1.180881119000162],[-77.3996655329999,1.140418320000038],[-77.3375856369999,1.197971987000074],[-77.36513561199996,1.244001376000142]]],[[[-76.27777058999999,2.740311743000177],[-76.31986249699997,2.712633860000096],[-76.28081556799998,2.600099266000086],[-76.28263863199999,2.486350638000147],[-76.37269564399998,2.43820146500002],[-76.44216955099989,2.328294430000085],[-76.42533164899999,2.256211739000094],[-76.36559265199998,2.254745912000089],[-76.32854463999996,2.39784427800015],[-76.23976150899989,2.427429211000117],[-76.20403264099997,2.560569205000093],[-76.27777058999999,2.740311743000177]]],[[[-76.06025651499988,3.422660018000101],[-76.11318152799993,3.375086514000088],[-76.09190356399995,3.253529640000124],[-76.16660358799999,3.088230965000037],[-76.15515156099997,3.003058256000088],[-76.08877560499991,2.988922344],[-76.06687151299991,2.872514808000176],[-76.01779949299998,2.883382113000096],[-75.97526552499994,3.030664054000169],[-76.00892657799989,3.160084663000134],[-75.98622151099994,3.348869598000135],[-76.06025651499988,3.422660018000101]]],[[[-75.76607551799992,4.093323081000165],[-76.00828552999997,3.736781562000033],[-75.99773355199989,3.63304126100013],[-75.91474164599998,3.733447074000026],[-75.81431554999995,3.730132199000082],[-75.76358055999992,3.759923829000172],[-75.80979954799994,3.848391296999978],[-75.8634415489999,3.847453530000109],[-75.76607551799992,4.093323081000165]]],[[[-74.17729951599995,4.481650620000096],[-74.23181960499988,4.477143671000135],[-74.26110060999991,4.36671595200005],[-74.23480959699992,4.280535402999988],[-74.33341950299996,4.158910300000059],[-74.31533856499988,4.007748543000105],[-74.38037157199989,3.92157386100007],[-74.49497263999996,3.819344650000176],[-74.55409959099995,3.661553143000049],[-74.55189548599992,3.541670302000171],[-74.4424816419999,3.697834714000066],[-74.40325953199988,3.683639626000058],[-74.29695151899989,3.768909230000133],[-74.23800662299993,3.686117316000093],[-74.16049161999996,3.834827534000112],[-74.06955752599998,3.924132855999972],[-74.06968660799998,4.061367577999988],[-74.15027659499987,4.07377380000014],[-74.20777158899995,4.144700292000039],[-74.12052150899996,4.222697757],[-74.11154164099997,4.338269952000076],[-74.2156825969999,4.346077360000038],[-74.17729951599995,4.481650620000096]]],[[[-73.80851756799996,4.746393032000185],[-73.81694758399988,4.599357687000065],[-73.77727553299997,4.50397179600003],[-73.70863361299996,4.592076328000019],[-73.73021651099987,4.680431813000098],[-73.80851756799996,4.746393032000185]]],[[[-75.32507358399994,5.003066857000135],[-75.41199459099988,4.968975645000114],[-75.4247665989999,4.838899069000092],[-75.53145565399996,4.785928961000138],[-75.44032257299995,4.646586191000154],[-75.39417265299994,4.618039272999965],[-75.27375051999985,4.643477678000067],[-75.25801064699994,4.688568126000177],[-75.29279353399994,4.817812547000131],[-75.25830853999997,4.952265650000129],[-75.32507358399994,5.003066857000135]]],[[[-73.93390664899988,5.241134533000093],[-73.98712150799997,5.304599957000164],[-74.03594257399999,5.208814920000179],[-73.94873054799996,5.191099264000059],[-73.93390664899988,5.241134533000093]]],[[[-73.07470658799997,5.617265900000177],[-73.18559262899993,5.542543245000161],[-73.23532849499998,5.453559787000074],[-73.10674255699996,5.463837174000162],[-72.97442650399995,5.348177471000156],[-72.90554050299988,5.453954910000164],[-72.99548352099987,5.456886565000161],[-73.07731654499992,5.548034900000061],[-73.07470658799997,5.617265900000177]]],[[[-72.71665951199992,6.290579489000038],[-72.79265554499995,6.224955390000162],[-72.85721564599999,6.23814029100015],[-72.99288161099997,6.069056852000074],[-72.93961360999998,6.022433186000114],[-72.81911453199996,6.029638605000059],[-72.75528751199994,6.11160557200003],[-72.71665951199992,6.290579489000038]]],[[[-72.9426036019999,7.454214968000144],[-72.95443750899994,7.349475544000086],[-72.91515353999995,7.317284845000188],[-72.92609359999989,7.193177860000048],[-72.97418258999994,7.100880533000122],[-72.82224248999995,7.015773538000133],[-72.78159361299993,6.920297626000036],[-72.6640095919999,6.883135285000151],[-72.63034853999994,6.697659860000101],[-72.55205552899997,6.717219367000098],[-72.42684162999996,6.366647943000146],[-72.47807349899989,6.395183797000072],[-72.51348150799998,6.298005855000042],[-72.56659662199996,6.299513760000025],[-72.63007361299992,6.235983460000114],[-72.57245657899989,6.132429907000017],[-72.64160962699998,6.051084040000148],[-72.66848753999994,5.949888317000159],[-72.72665358999996,5.981567049000034],[-72.76406051499998,5.884771323],[-72.81697848699997,5.840667425],[-72.77343751799992,5.759055348000118],[-72.87977553799993,5.757122481000181],[-72.99013553099996,5.541512271000101],[-72.95697756099986,5.485871521000149],[-72.78972657299988,5.43693813800013],[-72.82286057199997,5.563768906000178],[-72.76082660899993,5.580357363000189],[-72.69365655199994,5.716366650000168],[-72.66818260699995,5.845172195000089],[-72.61939255399983,5.850381547000154],[-72.57504256299995,5.934153641000137],[-72.43745462799995,6.070232665000105],[-72.41804448799996,6.187302204000105],[-72.36874364199991,6.283604907000097],[-72.20922060199996,6.294585200000085],[-72.23610656199997,6.406858111000076],[-72.15698960999998,6.44358727600013],[-72.0971376249999,6.410442884000076],[-72.0799485199999,6.516603878000183],[-72.14801057999989,6.601424715000178],[-72.22680650499984,6.552267368000116],[-72.34284255499995,6.763422932000026],[-72.4461285569999,6.667634877000125],[-72.48090356499995,6.709705996000082],[-72.44190256899998,6.781443688000138],[-72.5082396329999,6.919354829000099],[-72.62442756299987,6.907449677000045],[-72.62771561599988,7.03839595900007],[-72.57317356699997,7.120583034999981],[-72.62113950999986,7.149678129],[-72.66001159199999,7.056171797],[-72.76287061999994,7.078363221000075],[-72.81185949099995,7.323046565000141],[-72.9426036019999,7.454214968000144]]],[[[-72.37042957799997,7.438137137000069],[-72.45253752799994,7.46377821700014],[-72.4293214999999,7.353859279000176],[-72.36431162699995,7.350737522999964],[-72.23088061299995,7.411733136000066],[-72.31230158199992,7.483612817000107],[-72.37042957799997,7.438137137000069]]]]},"properties":{"objectid":507,"eco_name":"Northern Andean páramo","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Neotropic","eco_biome_":"NO10","nnh":1,"eco_id":593,"shape_leng":125.905244163,"shape_area":2.4272230418,"nnh_name":"Half Protected","color":"#BF9B77","color_bio":"#D6C39D","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":30009.57799202435,"percentage":0.6145342457476688}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[29.42610149700016,7.696167321000132],[29.175714602000085,7.555316646000108],[29.01021744500008,7.482915778000063],[28.9067805680001,7.41568755000003],[28.803291557000023,7.317518700000107],[28.495298524000077,7.150572814000043],[27.84957547800002,7.027586825000128],[27.111608581999974,6.996840160000147],[26.465887548000126,6.81236134400018],[25.72791847300016,6.781614678999972],[24.959203571000103,6.81236134400018],[24.467224578000128,6.72012202000019],[23.483268605000035,6.589450664000026],[23.091617473000042,6.625990899999977],[22.827573441000027,6.602695580000045],[22.633424591,6.618225570000163],[22.097570527000073,6.633756398000173],[21.71703547499999,6.618225570000163],[21.196712574000173,6.657052892000024],[20.948200544000088,6.688114381000162],[19.98521659500011,6.680349051000121],[19.38723351700014,6.625990899999977],[19.084360486000037,6.618225570000163],[18.657230434999974,6.532805930000109],[18.47861056900001,6.486213109000118],[18.191268535000177,6.439620624000042],[18.020416513999976,6.377497143000085],[17.872863502000143,6.416324298000177],[17.407802489000176,6.227065282000126],[17.001308515000062,6.19011399700014],[16.653938475000132,6.212285305000137],[16.39525953200001,6.345310467000047],[16.24005149500016,6.581799327000112],[16.09962444200005,6.847850824999966],[15.900073455999973,7.158242423000047],[15.744865587000106,7.232145831000082],[15.545312588000172,7.209974523000085],[15.419668530000138,7.143462445000182],[15.168380582000168,7.054778725000062],[14.857965514000114,6.980875149000155],[14.747102440000049,6.995656300000064],[14.754493434000153,7.069559708000099],[14.894919481000159,7.269097283000178],[14.998391562000052,7.468635865000067],[14.998391562000052,7.646003139000129],[14.739711445000182,7.675563932000045],[14.954045594000092,7.985956536],[14.924482454000099,8.11159154100011],[14.739711445000182,8.11159154100011],[14.554941442000029,8.037688972000069],[14.488423496000166,8.16332364200008],[14.118881478,8.458936436000158],[13.99323758800017,8.525448682000103],[13.904547497000124,8.518058525000129],[13.764121449000186,8.673255330000131],[13.59413242900007,8.887573889],[13.416751577000127,8.99103876100014],[13.246763563000115,9.020599386000015],[13.150682477000032,8.99103876100014],[12.921565499999986,8.954087308000112],[12.83421450200018,8.924971259000074],[12.855784492,8.792490753000095],[12.736438428000042,8.61680136800004],[12.617094544000054,8.537244031],[12.554106553000167,8.547188321000021],[12.502189548000047,8.622050786000102],[12.408993513000041,8.486562518000142],[12.269004498000129,8.444426523000175],[12.312101562000123,8.348294642999974],[12.237273462000132,8.317370617000165],[12.261374452000098,8.203396012000098],[12.195096564000039,8.094948602000045],[12.237273462000132,7.992525936],[12.134843588000024,7.847930395000162],[12.014337469000111,7.709358592000058],[12.014337469000111,7.629392218000021],[12.00934353100007,7.423506189000136],[12.095008593000045,7.342605904000152],[12.171155501000044,7.490130250000107],[12.175915584,7.580548857],[12.247303583000019,7.647172917000091],[12.318691582000042,7.54247758200006],[12.32820956800009,7.447301574000107],[12.418634546000078,7.404471558000182],[12.551892557000144,7.428264931000058],[12.589965508000034,7.471095786000149],[12.589965508000034,7.566271960999984],[12.537614488000145,7.675726038000164],[12.556651466000176,7.74710884000018],[12.632799548000094,7.832767532000105],[12.670872498999984,7.77566179300004],[12.751778484000056,7.77566179300004],[12.837444552000079,7.889874444000043],[12.927868524000132,7.904150502000164],[13.004015432000188,7.813732062000042],[12.970702564000078,7.599584494],[12.918350538000084,7.580548857],[12.827925560000153,7.342605904000152],[12.756538567,7.304534629000045],[12.708946456000149,7.347364644999971],[12.609003493000046,7.361641708999969],[12.628039464999972,7.271223102000135],[12.490022545000102,7.18080483000017],[12.417913534000093,7.037181085999975],[12.294719506000092,6.996120154000039],[12.137305521000087,7.078243192],[12.051753447000067,7.006385471000044],[11.993579518000047,7.119304124000166],[11.94224958100017,7.033759426000017],[11.791678580999985,6.941371072000152],[11.784834590000116,6.859248034000188],[11.719815496000138,6.766859680000152],[11.863541499000121,6.691580131000023],[11.843008518000033,6.629987895000056],[11.675329551,6.592347450000034],[11.644530583000062,6.537598367000044],[11.558979514000043,6.486271280000096],[11.381032548000178,6.434944863000112],[11.162021464000077,6.482850457000097],[11.062782581000135,6.424679546000164],[10.982436507000102,6.422325740000076],[10.905701524,6.326247840000121],[10.896250593000048,6.253794166000091],[10.962409458000138,6.231742720000057],[10.978160562000085,6.06163518000011],[10.877347557000121,6.036433982000176],[10.741882591000149,6.112037575000159],[10.622167556000136,6.008082194000053],[10.590663502000098,6.058485596000082],[10.442594500000155,6.039583901000128],[10.389889428000117,5.969788128000062],[10.445929492000062,5.901645938000115],[10.385889584000097,5.781271917000083],[10.470949473000132,5.771821489000104],[10.245300591999978,5.554680408000081],[10.111430534000021,5.52551054700001],[10.073956554,5.433858124000039],[10.272370452000132,5.471328416000063],[10.382109513000046,5.408438158000138],[10.402370585000085,5.508861907999972],[10.488630427000032,5.494039015],[10.473420458000021,5.38764768600015],[10.505450560000043,5.259389144000124],[10.62656956300009,5.016606983000088],[10.710000513000125,4.926168763000135],[10.789669497000034,4.880636923000111],[10.855669441000032,4.711798571000145],[10.829279522000093,4.601581573000033],[10.846128488000147,4.540132332000098],[11.1648404660001,4.212863270000128],[11.292160570000078,4.269700117000184],[11.473779480000076,4.394302975000073],[11.576270542000032,4.606263369000146],[11.519120547,4.685480401],[11.371470473000102,4.659060307000175],[11.30930055600004,4.693005003000167],[11.272939525000027,4.770177186000069],[11.268950577000055,4.874849554000036],[11.202850553000133,4.915956419000167],[11.146690461,4.81722983700007],[11.09148054100018,4.774539799000138],[11.046759567000095,4.886760407000111],[11.057169555000087,5.351049279000051],[11.05521958899999,5.599841935000143],[11.164449534000084,5.652606183000103],[11.231829475000097,5.80336426700012],[11.248029514000166,5.89060780900013],[11.221329464000064,6.066232989000127],[11.331080428000178,6.113106435000134],[11.506030529000157,6.122372965000125],[11.580369460999975,6.160995098000171],[11.66646049100018,6.122617884000078],[11.771129507000069,5.817535048000138],[11.863869566,5.649560534999978],[11.876970481000171,5.56426679100008],[11.678540490000046,5.61965356900015],[11.681050535000168,5.418130321000149],[11.539059586000178,5.341664230000106],[11.55329943400011,5.217578032000119],[11.63619947400008,5.051225585000054],[11.65589946100016,4.952954811000041],[11.709620587000074,4.916361265000091],[11.801469482000186,4.976843905000067],[11.825559575000057,5.045620941000152],[11.78913953500006,5.176503354000147],[11.803999476000058,5.221950033000098],[11.929320495000127,5.22833955700014],[11.975020476000111,5.169556600000021],[11.994250573000045,5.034581807000166],[11.96370054800019,4.821794287000046],[11.874230437000108,4.660164203000022],[11.692520499000068,4.566058230000067],[11.63395949400018,4.45504042500005],[11.591910503000122,4.321191489],[11.628609493000113,4.223146524000128],[11.854869582,4.235109679000061],[11.949729592000097,4.371306721000053],[12.045269542000142,4.375674363000087],[12.031800494000038,4.267965231000176],[12.13815058400013,4.336015220000036],[12.254619476000073,4.50559486800006],[12.410619435000115,4.841859892],[12.48075953600005,4.896909718000131],[12.612680466000086,4.942173504000152],[12.853110496999989,4.924742666000157],[12.938839429000097,4.948279888000059],[12.977149588000088,5.003901862000021],[12.962280595000038,5.070779056000106],[12.894459431000143,5.073184662000017],[12.67115949600003,5.029934879999985],[12.457839557,5.044072971000162],[12.406149533000075,5.155308706000085],[12.432749503000082,5.34759275000016],[12.479940456000179,5.388883513],[12.672069435000083,5.401279678000094],[12.902029463000133,5.503622045000157],[13.027070527000092,5.617410907000021],[12.991220457000168,5.885198129000173],[13.065010542000152,5.907451412000114],[13.161100512000075,5.721601316000033],[13.36217952000004,5.672517729000049],[13.478090512,5.615699993000021],[13.42691044300011,5.502136101000133],[13.485959443000127,5.443149631000097],[13.5938395660001,5.566189600000087],[13.674010458000168,5.576081922000185],[13.630209482,5.459026297000094],[13.61268946000007,5.324103304000118],[13.793180502000155,5.156992630000161],[13.733699499000181,5.097385061000182],[13.618740523999975,5.110208031000127],[13.683970506000037,4.8999025600001],[13.598850434999974,4.685974430000158],[13.630709546,4.475045010000088],[13.711299534000148,4.437186636000092],[13.854399576000162,4.493140533000144],[13.918979457000148,4.456207521000124],[13.805569458000093,4.312686037000049],[13.874380524000117,4.237889453000037],[14.04603955400006,4.190236992000109],[14.107330545000082,4.204552110000122],[14.167010533999985,4.330152582000096],[14.17463052200003,4.399956569000153],[14.253729537000027,4.37659838400009],[14.465720441000087,4.358631439000021],[14.546339430000046,4.217772886000091],[14.651599538000028,4.16648368500006],[14.749930494000068,4.175022329000058],[14.849599537000074,4.282652169000187],[14.940250489999983,4.3240832460001],[14.912449561000017,4.173270344000173],[15.005330436000065,4.122928131000094],[15.061920520000058,4.127230562000022],[15.10414050200012,4.207246724000129],[15.371259519000148,4.2224065690001],[15.58176950900014,4.371309571000097],[15.657259443000157,4.468624472000158],[15.725959533000093,4.501079201000096],[15.912159488999976,4.484443303000148],[15.940380518999973,4.363527141000077],[16.02345054400007,4.298149134000141],[16.230239472000164,4.292560584000114],[16.44621043899997,4.198796424000136],[16.544570564000026,4.18979409300016],[16.76481043500013,4.135120111999981],[17.086240496000187,3.970701369000096],[17.206729516000053,3.921242944000142],[17.281480502000022,3.921743846000027],[17.48648056400009,4.070319786000141],[17.603860569,4.122555974000136],[17.712930587000074,4.13545522000004],[17.80258945800017,4.104053593],[17.967630473000042,3.936811994000152],[18.00201957800016,3.848882477000132],[18.05201947400002,3.828566755000168],[18.132589513000028,3.88834145900006],[18.290309438000065,4.121480073000043],[18.415599445000055,4.252300459000082],[18.610439466000173,4.412065737000034],[18.856391495000082,4.522670481000091],[19.105785469000182,4.891700365000133],[19.437984600000107,5.138061096000115],[19.573326520000023,5.15649876800012],[19.84228553200012,5.097490002000029],[19.959716498999967,5.024512291000121],[20.01362253000019,4.950769816000161],[20.268388465000044,4.845098492000091],[20.47071050900007,4.595659926000053],[20.509023518000106,4.42092708500013],[20.638454520000153,4.379639171000065],[20.865612478000173,4.410232782000151],[20.989225601000157,4.467426531000115],[21.161083450000092,4.408486832000108],[21.252687594000065,4.418611165000186],[21.385934541000097,4.386120561000041],[21.444065554000133,4.506258715000172],[21.495367496000085,4.730813924000074],[21.549867468000173,4.906658039000149],[21.667264571999965,5.104387470000177],[21.7797054560001,5.250253876000102],[21.94778457600006,5.40738807300005],[22.07029950200007,5.469731496000065],[22.161958463000076,5.471294553000178],[22.388483587000167,5.432489359000044],[22.47649943800019,5.457954587000074],[22.68036257900002,5.565245797000046],[22.77047558100014,5.581108549000021],[22.90803149700008,5.567481586000042],[23.03304657800004,5.615639978000161],[23.149997596000105,5.758167369000091],[23.19060557000006,5.780348735000075],[23.322784496000054,5.745561322000071],[23.503351477000137,5.77883999200003],[23.677410582000107,5.730547657000159],[23.826185507000105,5.627168951000044],[23.958526539000047,5.644447909000121],[24.037652543000036,5.480297891000134],[24.04037448200006,5.38888569300002],[24.001718486000186,5.305591703000175],[23.88883051100015,5.160256375000074],[23.659177595000074,4.933941134000065],[23.583864519000088,4.88109289900018],[23.406515517000116,4.831577644000163],[23.30549849700003,4.740546487000017],[23.128822562000096,4.688328069000079],[23.050895505000085,4.640490871000111],[23.00972359700006,4.510440279000136],[23.024896518,4.328392885000085],[23.140945476000013,4.261303797000039],[23.27747947100005,4.239779405000093],[23.415620444000012,4.242043357000171],[23.5959644670001,4.208788659000049],[23.698547562000158,4.117417532000047],[23.82792458500012,4.070891934999963],[23.920009514000185,4.073260828000116],[24.053468524000095,4.037774365000189],[24.374511509000115,4.016878950000148],[24.601058594000108,3.975066162000189],[24.73870855500013,3.975969898000187],[24.964305467000145,4.022617369000045],[25.005208484000093,4.045047677000184],[25.04287960700009,4.222339682000154],[25.11817156100011,4.265819296000188],[25.24714658800019,4.220531873000027],[25.308811579000064,4.150756049000108],[25.392614517000084,4.146362423000028],[25.37965358100007,3.964955910000128],[25.40700758600019,3.736404544000095],[25.436204605000057,3.649147256000049],[25.54348156599997,3.499955246000127],[25.707834594000076,3.417753419000121],[25.841098473000102,3.449653937000051],[26.096708466000166,3.55481832300012],[26.24833156300008,3.657458416000111],[26.383157493000112,3.652150827000128],[26.44939648900015,3.482671427000071],[26.45375457600005,3.29848329500004],[26.505798483000035,3.223474817000181],[26.673086518000048,3.147367639000095],[26.893573487000083,3.081111544000123],[26.984634484000026,3.069849116000114],[27.064115545000163,3.110480057000132],[27.1604725630001,3.319012588000135],[27.217651560000093,3.681006702000161],[27.26297955100017,3.687231439000129],[27.39371846500012,3.55880173900016],[27.54827858100009,3.458604301000037],[27.776750486000083,3.436261835000096],[27.862142466000137,3.40248561500016],[27.904697556000087,3.323830505999979],[27.876865446000124,3.188610291000145],[27.809301607000123,2.969662575000143],[27.83567459500017,2.883495269000036],[27.970968571000185,2.871235059000071],[28.057596546000127,2.90034792300014],[28.236272570000096,3.043240262000154],[28.30692447000007,3.212188585000035],[28.283662510000056,3.394793207000021],[28.35111654600007,3.513624286999971],[28.470371582000155,3.581476127999963],[28.539775585000143,3.701339355000187],[28.62165655299998,3.664801969000109],[28.69969944800016,3.55080842100017],[28.750156493000077,3.326462088000142],[28.72325846300015,3.144440679000184],[28.734806546000073,3.053337605000081],[28.699663573000123,2.919994434000103],[28.783346483000173,2.823726432000171],[28.85936749500013,2.936474094000062],[28.945600515000137,2.967432821000045],[29.045808514000157,3.117060857000183],[29.180370582000023,3.147441400000048],[29.31805960300005,3.154080873000055],[29.369401610000068,3.088561883000068],[29.212200524000025,2.993959030000042],[29.150403602000154,2.87465487500009],[29.238922534000153,2.858015121000165],[29.294580551000024,2.92937965100009],[29.37486258700011,2.974367337000047],[29.46585049300006,2.983874762000028],[29.640960521000068,2.929101874000082],[29.737520548000077,2.774094333000107],[29.947729460000176,2.471471920999988],[30.010251584000173,2.348290131000113],[30.11326249200016,2.195533298000157],[30.14347657100012,2.108486898000137],[30.149055566000186,1.925022628000136],[30.099960580000186,1.796015247000014],[30.037778592999985,1.729593191000106],[29.880220606000023,1.634072352000146],[29.877553484000146,1.578748606000147],[30.05411559300012,1.543635975000029],[30.058002449000185,1.454935826000053],[29.960651505000044,1.299013316000128],[29.84826057700019,1.153203404000067],[29.91227755800014,0.733197700000062],[29.860112246000142,0.607951195999988],[29.979988412000125,0.646320715000115],[30.147189458000128,0.787881273000096],[30.159522476000063,0.820808974000045],[30.17333333300013,0.918333334000181],[30.15836149000006,1.118066969000154],[30.24023256800018,1.291034917000161],[30.355983465000122,1.466225746000021],[30.46650556400016,1.601756594999983],[30.39283953200004,1.723974634],[30.302564591000134,1.821186438000041],[30.316451560000132,1.890623297000047],[30.302564591000134,2.036440250000112],[30.32537661100008,2.09346686300006],[30.308885551,2.25336122200008],[30.416093446000104,2.297809616000166],[30.562522445000127,2.439000093000175],[30.609590519000108,2.577575919000139],[30.784784533000106,2.663858560000108],[30.87,2.800833333000071],[30.875833333000173,2.89416666700015],[30.768333333000157,3.033333334000019],[30.829166667000038,3.255833333000055],[30.935833333,3.401666665999983],[30.93333333300012,3.484166667000181],[30.874166666,3.54],[30.98000000000019,3.700833333000105],[31.07788460000006,3.745758078000051],[30.973926537000068,3.913904420000108],[31.25597556800011,4.138261817000171],[31.479839605000052,4.409233827000037],[31.669931447000067,4.789387670000053],[31.591329479000137,4.789467633000186],[31.561889553000185,4.859552581000116],[31.579980550000187,5.065863237000087],[31.64357958100004,5.414999512000179],[31.643459552000138,5.507591714000057],[31.603719608000063,5.720678301000135],[31.509849501000076,5.884256171],[31.309949491999987,6.056592627000043],[31.274139487000127,6.320156375000124],[31.203029600000036,6.490819971000121],[30.976350583999988,6.750458977],[30.81174056600014,6.906437478000043],[30.682449542000143,6.92671330200011],[30.45756358300008,6.861232030000053],[30.228450462000183,6.854664474],[30.07442460900006,6.92335450600018],[29.81780660800007,7.130359351000095],[29.592176503000076,7.357152026000051],[29.51561552900006,7.46206143500001],[29.439439451000112,7.624516465000113],[29.42610149700016,7.696167321000132]],[[14.681030579000037,7.320764676000067],[14.66425956400019,7.272329178000177],[14.55922057100014,7.30143902400016],[14.475299448000158,7.250629604000096],[14.502070576000108,7.125179838000122],[14.437439564000044,7.036491088000105],[14.334759574000032,7.161802217000059],[14.292670518000136,7.147497996000027],[14.268739513000071,7.008940275000043],[14.192879434000076,7.008853104000025],[14.164580452,7.067545872000096],[14.172470506000025,7.194720801000074],[14.294099464000055,7.293133732000058],[14.429140474000121,7.337470312000107],[14.518750563000083,7.424215969000045],[14.593009531000064,7.45884144300004],[14.644639540000071,7.423896115000048],[14.681030579000037,7.320764676000067]],[[14.273859515000083,7.465570099999979],[14.279840506000141,7.403959423000174],[14.146349478000047,7.343539815000042],[13.98954049800011,7.413466010000093],[14.028530597000042,7.462308366000116],[14.221269443000097,7.480664902000171],[14.273859515000083,7.465570099999979]],[[13.220449583000118,8.384757766000064],[13.326534471000116,8.427851980000014],[13.435933562000173,8.348294642999974],[13.402782464000097,8.2422173],[13.120996458000036,8.348294642999974],[13.13388447200009,8.470365664000099],[13.220449583000118,8.384757766000064]],[[10.83639357800007,6.014382703000081],[10.871047551,5.957679799000175],[10.937205578000032,5.963980308000032],[11.00966444800008,5.860024927000097],[10.842694590000065,5.756070720000082],[10.76393454000015,5.740319783000075],[10.694625588000122,5.626913974],[10.609565532000147,5.718268336000108],[10.707227444000068,5.856875175000084],[10.67572456400012,5.970280817000059],[10.726129474000118,6.055334671000026],[10.83639357800007,6.014382703000081]]]},"properties":{"objectid":511,"eco_name":"Northern Congolian Forest-Savanna","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Afrotropic","eco_biome_":"AF07","nnh":3,"eco_id":52,"shape_leng":90.492054891,"shape_area":57.3826633606,"nnh_name":"Nature Could Recover","color":"#ADFC62","color_bio":"#FEAA01","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":707658.064558108,"percentage":3.3007954864250824}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-108.64530864199992,48.03306332900013],[-108.71287665299997,47.92531414900009],[-108.56708149699989,47.87915596700009],[-108.39997229199992,47.96698871100017],[-108.64530864199992,48.03306332900013]]],[[[-109.1071461389999,48.252535277000106],[-109.24707389499997,48.204775178000034],[-109.11421373299999,48.14893888600005],[-109.1071461389999,48.252535277000106]]],[[[-108.56868839099997,52.43896906400005],[-108.528838684,52.51892406000019],[-108.56635155899988,52.57831474800008],[-108.82244877299996,52.53005338100007],[-108.88487889999988,52.587740515000064],[-109.03502695699996,52.60633774200005],[-109.074226566,52.657803612000066],[-109.26734031499996,52.621714115000145],[-109.29593669399992,52.53163375500014],[-109.44535724999997,52.492365708000136],[-109.75206642799998,52.53386140600014],[-109.83329616399993,52.43458739600004],[-109.78251698999998,52.2821964580001],[-109.89832478499994,52.3121887640001],[-109.97650015699992,52.16963020500003],[-109.97914817999992,52.17011449000006],[-109.979148222,52.17011449800003],[-109.97911074699994,52.169174357000145],[-110.05564021799984,52.094732773000146],[-110.16394196899995,52.11452188100009],[-110.30613801399994,52.077677971000185],[-110.49079119299995,52.10783742400008],[-110.5123673039999,52.121976523000114],[-110.61364091699988,52.17607644300011],[-110.79591395699998,52.198530514000026],[-110.72608266799989,52.34771092600005],[-110.79560808199989,52.36724009900007],[-111.07718729199996,52.337678648000065],[-111.19664083499993,52.25293894200013],[-111.30151309499996,52.24862103300018],[-111.63854127899992,52.3455698570001],[-111.81867259199998,52.43562117700003],[-111.98351154599993,52.4147096640001],[-112.2693328549999,52.29133639800017],[-112.54340199899997,52.124064194000084],[-112.58071218499998,51.934437164000144],[-112.90334410299994,51.78847666900015],[-113.05818696299997,51.808238111000094],[-113.21520854699992,51.77603173700004],[-113.22519917799991,51.72234261400018],[-113.16254969099987,51.57894137300019],[-113.23453444699987,51.49514020000004],[-113.11216652899998,51.4049951180001],[-113.1180492929999,51.26963684000009],[-113.258841997,51.184021373000064],[-113.23963803499998,51.083376226000155],[-113.39330202599996,50.92083286000002],[-113.37027761299993,50.80163225000001],[-113.28887140799986,50.74409810800012],[-113.40379354899989,50.69306151100017],[-113.50758438399998,50.570520128000055],[-113.55143825,50.240674434000084],[-113.72412016199996,50.15384882400019],[-113.72068764699992,49.98783281100009],[-113.62560266699995,49.811255447],[-113.66329155899996,49.69500498800011],[-113.78314958899989,49.58215758100005],[-113.71697966099998,49.552406351000116],[-113.44213068499988,49.68173777599998],[-113.3752365599999,49.66434968600015],[-113.37113965299994,49.554252382000186],[-113.44042966199993,49.38664047000009],[-113.36678357799997,49.37486842200008],[-113.2608485589999,49.44032890600016],[-113.20334652399998,49.57554677400009],[-113.00283061299996,49.451888221000104],[-112.81358366799998,49.37748525200004],[-112.65706654499996,49.383260383000106],[-112.46090654199992,49.315861500000096],[-112.43129763599995,49.228260553000155],[-112.58215362099997,49.169180876000155],[-112.7277065429999,49.000474120000035],[-112.57067109399998,48.9414025960001],[-112.43513083499994,48.97310440500007],[-112.23188915999998,48.761382676000096],[-112.38644428299989,48.75010754200014],[-112.46834330999991,48.8035186890001],[-112.57162361899992,48.77536309400011],[-112.56108374899998,48.69064084900009],[-112.66947097099995,48.66884063400016],[-112.69410344899995,48.60295418100003],[-112.46901335599995,48.60454363400004],[-112.38209014399996,48.55293377200019],[-112.49292143499986,48.42116767800019],[-112.4456416839999,48.34690595500007],[-112.04405249699988,48.18103159400016],[-112.14570832899989,48.15426383100004],[-112.14061226399986,48.09373590900003],[-112.00673240599997,48.05851735700014],[-112.08467595799988,47.94638122600014],[-112.24574296199995,47.950508937000166],[-112.18171637899997,47.86091554300009],[-112.20256022099994,47.81431365500015],[-112.05103710199995,47.62854897200009],[-111.94362824199993,47.67338101100006],[-111.82500214599992,47.67682325200019],[-111.73959412499994,47.58583585300016],[-112.05854853699998,47.58219496100003],[-112.04000684,47.53104107900003],[-111.85134162999987,47.50759586800007],[-111.72272725699997,47.43374222800003],[-111.83661364599993,47.40564779300013],[-111.70268008799991,47.297788437],[-111.7986572609999,47.18671472400018],[-111.6476612109999,47.19790497900016],[-111.48915886699996,47.115874438000105],[-111.35459716499992,47.20583195600011],[-111.26809478699982,47.181458126999985],[-111.09026934799994,47.28192975800016],[-111.0264293599999,47.251926280000134],[-110.71885567499993,47.23450192500019],[-110.60080929299994,47.176913981999974],[-110.44144109599983,47.1557267230001],[-110.28979701799994,47.058069347000014],[-110.22808215099997,46.988875090000136],[-110.0437097809999,46.897043479000104],[-110.03424402999991,46.853585087],[-109.8309190949999,46.715532593000034],[-110.11042309699997,46.63562067400011],[-110.13227860699993,46.53908039900017],[-110.28268228199994,46.49157755700014],[-110.42901803399991,46.53589448000008],[-110.40948241999985,46.44323355300014],[-110.55567301799994,46.4532527610001],[-110.54935993299995,46.38827050000003],[-110.54526854699998,46.38737715200017],[-110.31406285499997,46.44306226000009],[-110.26302392399992,46.334547586000156],[-110.1356853929999,46.309549818],[-110.03628563299998,46.170980858000064],[-110.06838124499996,46.13156307000003],[-109.97708090499992,46.001878020000106],[-110.11029419999994,45.927475536000145],[-110.08162362199994,45.82346815000011],[-110.23576692599994,45.76838297800015],[-109.80150312599989,45.76883118000006],[-109.575971026,45.663879544000054],[-109.52025872199988,45.694099304000076],[-109.41276137699998,45.65476167700018],[-109.3580676769999,45.54669091000005],[-109.06954040199986,45.52082029600007],[-108.99633327499998,45.602166100000034],[-108.8653595369999,45.53351540900019],[-109.06922281599998,45.47466712700003],[-109.29455944799992,45.26512865500018],[-109.28450994199994,45.16817338900006],[-109.19375932499997,45.19090950200018],[-109.14967132499993,45.29260097900004],[-108.99145472499998,45.42453350500011],[-108.92309641299983,45.26830070200015],[-109.07226439599998,45.21038277800011],[-108.9475754469999,45.19858096000007],[-108.86321537299995,45.247650021000084],[-108.88469242699989,45.31658363900016],[-108.81536942699995,45.53911204000008],[-108.71208370399984,45.64453267300007],[-108.3121988129999,45.82278507500018],[-108.13499814099993,45.76807105600005],[-108.1583000629999,45.643699016000085],[-108.08043487999998,45.578172044000155],[-108.20417157499998,45.488165771000126],[-108.19277308799991,45.42199247899998],[-108.04974613199988,45.468266971],[-108.01020938299996,45.38141239700008],[-107.89986830399994,45.28686181800009],[-107.65120180199995,45.36307297200011],[-107.5668196549999,45.197193524],[-107.45585706499992,45.26916279699998],[-107.38743299699985,45.204079094000065],[-107.37860953599994,45.065886127000056],[-107.48209125299996,45.011642375000065],[-107.29728134499993,44.88261199700014],[-107.14371106499993,45.096450379000146],[-107.08633717699996,45.25643060400017],[-106.81470325699985,45.22108171700006],[-106.77462896799994,45.08382022200004],[-106.69423121799997,45.07716456300011],[-106.54403691299996,45.1321145010001],[-106.46670728799995,45.201224228000115],[-106.32297327999987,45.24112336900009],[-106.26308653499996,45.205805782000084],[-105.9929161209999,45.1523647300001],[-105.98965990799996,45.291040282000154],[-105.89330617299998,45.38890823700012],[-105.80529823699999,45.34547699400014],[-105.90751289199994,45.27171373500005],[-105.93240741799997,45.11666809100018],[-105.9889646879999,44.98699386100009],[-106.20727068799994,44.90355444400018],[-106.338031076,44.78262077300019],[-106.37868732499993,44.65347207600013],[-106.48035026999997,44.54973687500012],[-106.54606109299993,44.40991670700009],[-106.61455276599992,44.34968342200017],[-106.82117076499992,44.29424911899997],[-106.82758326499999,44.17334547400003],[-106.79790103299996,44.08114100500018],[-106.82932075799994,44.00438265900016],[-106.81244869999989,43.905840969999986],[-106.817900652,43.850308814000186],[-106.667692521,43.726673793000145],[-106.69169972799995,43.66096161200011],[-106.80901871799989,43.62177000700018],[-106.75574362999998,43.51409353500014],[-106.82519777099998,43.37531588500019],[-106.9069736329999,43.32912618600017],[-106.72851422999997,43.20269602500014],[-106.67425564299998,43.062263393000194],[-106.57775192599996,42.9997314470001],[-106.536478188,42.85721220500017],[-106.40252673999993,42.76913401300004],[-106.20810754099995,42.773517324000125],[-106.14423362199994,42.68186209300006],[-105.91211458199996,42.777892352000094],[-105.75437706999992,42.77892180900005],[-105.47980028499995,42.73296073200015],[-105.40794342499998,42.64295704300014],[-105.41387815499996,42.57592360200016],[-105.50204230999998,42.567962195],[-105.4653037359999,42.47239645500014],[-105.35120091599998,42.598765264000065],[-105.23497204299991,42.61642483500009],[-105.14129963299996,42.52662466300012],[-105.15312495999996,42.47214978699998],[-105.03962558399996,42.35334130700011],[-104.94673086099993,42.37309129900018],[-104.96071113999989,42.58438780400007],[-105.0591382209999,42.60593799500015],[-105.13534343599997,42.66692023000019],[-105.06229974799993,42.77019575100019],[-104.99199823299983,42.807918956000094],[-104.68410001399991,42.879118936000054],[-104.53770816699995,42.85896101200018],[-104.41045787799993,42.90495757600013],[-104.33458945099994,42.87910651600009],[-104.2216628459999,42.89719626100003],[-104.04511292899997,42.869457575000126],[-103.9648393949999,42.81011645600017],[-103.80131209099994,42.765308133000076],[-103.63624442199995,42.826380824000125],[-103.49674077999987,42.77311135100018],[-103.37353772299997,42.63640083000007],[-103.30818578999998,42.69056813400016],[-103.19916092799997,42.70847205600006],[-103.04225932499997,42.780177538000146],[-102.99472684499995,42.842174194000165],[-102.81521419999984,42.86140018700013],[-102.86646738999985,42.95896749100007],[-102.80404010999996,43.045974140000055],[-102.78792489799991,43.24022403700019],[-102.67735641399997,43.27294497000008],[-102.55942608599997,43.34586206000006],[-102.4857155439999,43.338993095000035],[-102.39527595899989,43.4909593320001],[-102.30353118699998,43.5045728180001],[-102.23003791099995,43.43606052000007],[-102.08061065099997,43.52139176900005],[-101.96403632899995,43.425646125000185],[-101.94599498399992,43.37057062100013],[-101.68174287499994,43.36770461000003],[-101.57794822199997,43.31960397600011],[-101.63723298799988,43.24765857400007],[-101.77485013999996,43.23781421700011],[-101.96279819699998,43.318228500000146],[-102.00255661899996,43.277182484000036],[-102.17575707599997,43.259933713000066],[-102.29546224599989,43.2019783770001],[-102.31666205499994,43.143459353000026],[-102.41533637799995,43.09049324700004],[-102.47075117099996,43.00482521000015],[-102.29972257399999,42.99194748400009],[-102.14970050699992,43.015379904000156],[-102.16995747699991,43.082186444000115],[-102.04316372099993,43.08092557700013],[-101.89824521399999,43.121694081000044],[-101.69820290399997,43.077949638],[-101.37701713199993,43.06560964300013],[-101.33857128299996,43.15714335900003],[-101.1639499989999,43.110264624000195],[-101.09057597299994,43.12565399600004],[-100.93894900999999,43.064458134000176],[-100.82491117899991,42.96537179100005],[-100.67188043999988,42.89607205400017],[-100.50831073199993,42.86800958300006],[-100.35305825899997,42.89700624300008],[-100.14739472299988,42.817417614000135],[-100.12959810899997,42.76348480200011],[-100.01234105299994,42.77750066800019],[-99.83163322799993,42.70467842200003],[-99.71086797099997,42.711161096000126],[-99.51362281699994,42.67747108800006],[-99.34504370899992,42.73484702900015],[-99.24814953099997,42.79185677900006],[-99.15595826299995,42.77424558700005],[-99.11469670999992,42.700339801000155],[-99.131798458,42.59281494500004],[-98.83505075699992,42.474732686000095],[-98.68738690899994,42.460410771],[-98.53429194399996,42.41622625400004],[-98.25969937499991,42.21782492400007],[-98.03354590699996,42.11874322500017],[-98.05822855099984,42.17355796100014],[-98.05307107699997,42.346773824000024],[-97.98414705699997,42.58500288500011],[-97.97200494299994,42.69209618400009],[-97.84215763299994,42.86814251800013],[-97.97500902799999,42.908758020000164],[-97.8923111499999,43.02619739400012],[-97.86568520399999,43.12934943900018],[-98.14980950899997,43.41147343900013],[-98.2018616289999,43.523598079000124],[-98.28505624399997,43.58253107000007],[-98.48873375199997,43.666908350000085],[-98.57751544099995,43.76238114100016],[-98.54209398799998,43.98593062000015],[-98.60515160299997,44.13176019600007],[-98.82716049699991,44.49051856400001],[-99.00491411999997,44.34897130400009],[-99.10403459699995,44.455013829],[-99.40831249399997,44.49719724800019],[-99.58993008599992,44.55018201000013],[-99.62261981699999,44.6527160120001],[-99.37631332499996,44.74625202500016],[-99.19635974399995,44.79333243700006],[-99.13638221499997,44.934420876],[-99.21708605199996,45.03055551700015],[-99.08133479199984,45.06695658100017],[-99.04083952299999,45.11914245999998],[-99.01718169799989,45.29806713100004],[-99.02393905799988,45.42736216900005],[-98.96035073499996,45.55177176300009],[-98.96953294899993,45.64900843800012],[-98.9203696319999,45.82392838599998],[-98.80055200299995,46.001720214000045],[-98.84253209599996,46.05342944700004],[-98.80810195899994,46.183167093],[-98.8746694159999,46.65863613500005],[-98.95549022399996,46.78522341600012],[-99.00376325099995,46.98189276800014],[-98.9820359069999,47.05546147300009],[-99.02857026599992,47.140743576000034],[-99.19669015399984,47.31408643000003],[-99.57240807799991,47.417672267000114],[-99.70114259399998,47.477789861000076],[-99.90707516599991,47.49371251600007],[-99.95015990399997,47.58065217300009],[-100.04462113499994,47.553088516],[-100.09561100399992,47.62969441800004],[-100.18424370799994,47.59258431000012],[-100.37366425699992,47.583992750000164],[-100.40972510199998,47.682347924000055],[-101.03960201699994,47.94090001000012],[-101.18192012099996,47.9218656700001],[-101.22473639999998,47.99470091800009],[-101.37909683599997,48.067197262000036],[-101.61335271599995,48.21135084600019],[-101.74692049699996,48.2577734890001],[-101.88137477399988,48.36458954200009],[-101.97117485999996,48.47248648600009],[-102.09307335899996,48.50980587900017],[-102.28133535899997,48.65182352000011],[-102.41598957399998,48.726867544000186],[-102.6264001319999,48.78283686100002],[-103.07837613999999,48.847828102000165],[-103.35204860599998,48.78723846999998],[-103.36055889799991,48.909831581000105],[-103.45369163399994,48.94846187700006],[-103.57001448499994,48.90301158900019],[-103.66981047099995,48.999438956],[-103.53765676999996,48.99918889500003],[-103.32917303799996,49.07165344500004],[-103.27272458099998,49.127342197000075],[-103.29929293799995,49.19187453100011],[-103.68850797799996,49.38882245400015],[-103.7002798119999,49.47688063500016],[-103.87684665599994,49.66235815600004],[-103.88596388199994,49.728749801],[-103.88722324299988,49.73248103300017],[-103.89354701699989,49.87238395100019],[-103.89452308199992,49.873121714000035],[-103.88536075299999,50.006697932],[-104.06345373599993,50.08803943900011],[-104.12019360499988,50.28736785000012],[-104.18338029899996,50.32001158100019],[-104.20762593999996,50.421052895000116],[-104.58386187199989,50.59599535800004],[-104.69574742199995,50.722604092000154],[-104.52343034299997,50.829159829000105],[-104.38067592699991,50.859677067],[-104.2563923909999,51.016119490999984],[-104.44129191699994,51.049344565000126],[-104.52857262799989,51.0924657060001],[-104.70848060399987,51.377078799],[-104.60566796099982,51.49447751200006],[-104.55642741799988,51.630837767000116],[-104.44946975699997,51.74087392600012],[-104.65438022299992,51.81232328700003],[-104.73419930799986,51.737356553000154],[-104.85936709699996,51.71795109600009],[-105.18830949699998,51.74033060099998],[-105.26619670099984,51.71791775100007],[-105.38538349299995,51.85765781600003],[-105.45163801499996,52.02676594700017],[-105.39952110599995,52.14321103500009],[-105.30281056399997,52.2365953150001],[-105.31128659099988,52.28635249000007],[-105.47216021499986,52.284651829000154],[-105.64470631399996,52.352926275000186],[-105.78980179699983,52.38060668500003],[-106.06678722199996,52.30143937200012],[-106.17196598399994,52.365707062000126],[-106.24764235499993,52.35806878500006],[-106.35566757699996,52.27709585100007],[-106.44104803999988,52.35190882800009],[-106.55323099199995,52.298139375000176],[-106.6437307359999,52.309219371000154],[-106.64627189299989,52.31020513100003],[-106.73873213899998,52.34549816600014],[-106.91655751699983,52.34296355900011],[-107.14015129799992,52.38482468500018],[-107.24617776999997,52.34255842600004],[-107.44827355199999,52.34551775000011],[-107.58468564699996,52.41376306300003],[-107.7785044009999,52.24880756100015],[-107.96436408499994,52.30101189800007],[-108.0259403899999,52.377903002000096],[-108.16782333099997,52.381049611000094],[-108.33595178999997,52.43259864800018],[-108.55728091499998,52.409582544000045],[-108.55908990899991,52.41166297600006],[-108.56797714499993,52.437583311000026],[-108.56868839099997,52.43896906400005]],[[-108.77848096199983,49.51763497400003],[-108.90033658999994,49.44386992900013],[-109.19844731899997,49.39452755700012],[-109.4550177029999,49.429864149000196],[-109.63803839499991,49.41566463600009],[-109.75768198599991,49.3803619250001],[-109.9561223689999,49.39207298700006],[-110.00028071999998,49.42257909600005],[-110.1889810859999,49.338631550000116],[-110.4409473529999,49.33357087900015],[-110.56784782099993,49.36258020500003],[-110.6070928279999,49.47456670900016],[-110.72667821199997,49.51545066400013],[-110.7611622849999,49.634994525000195],[-110.85384392399999,49.61421541900006],[-110.88893152899993,49.72365462000005],[-110.72775348599993,49.83650220500016],[-110.47754557999991,49.90294911900014],[-110.21478211999994,49.93345107000016],[-109.96125772199997,49.91692469100008],[-109.95982375499989,49.91622768500014],[-109.52120270599994,49.83440547500004],[-109.22647906099996,49.910691150000105],[-109.09903050299988,49.855556819000185],[-108.93256330299994,49.86535855600005],[-108.83262779399996,49.92665608300007],[-108.56144644999995,49.89487534000011],[-108.53817694799994,49.80707508600011],[-108.64482048799994,49.62030703100015],[-108.77806055099995,49.520141995000074],[-108.77686150399995,49.51859920300012],[-108.77686149199997,49.51859918200006],[-108.77848096199983,49.51763497400003]],[[-109.55657538799994,48.378049154000166],[-109.42874311099985,48.36953172800014],[-109.54251568899997,48.24808048600005],[-109.66142172099995,48.265620232000174],[-109.70126699699995,48.339991889000146],[-109.55657538799994,48.378049154000166]],[[-109.28098574699993,48.31654032500006],[-109.01513154099996,48.241736379000145],[-109.10767800799994,48.12425036700006],[-109.41416876399984,48.247690222000074],[-109.45215464699999,48.30253371500004],[-109.28098574699993,48.31654032500006]],[[-109.75547743499993,48.27894751100001],[-109.84235450099999,48.257216663000065],[-109.78249746899996,48.063607246000174],[-109.47896780699995,48.19846042100005],[-109.31786642699996,48.19943408000006],[-109.25689617199993,48.150966339000036],[-109.31615529199996,48.07883441500019],[-109.25470898599997,48.032626614000094],[-109.28910651899997,47.943413129000135],[-109.40434486799995,48.007154302000174],[-109.59971900999989,48.0041034730001],[-109.82232578999998,48.034426573000076],[-109.91065509899988,48.08218556500003],[-109.87328212199992,48.244761661000155],[-109.75547743499993,48.27894751100001]],[[-108.45554951699995,48.04822668500009],[-108.33753442699998,47.96484512600017],[-108.51049786399983,47.86909564000018],[-108.671610849,47.823200139],[-108.8722413619999,47.85820601900008],[-108.94231585699993,47.94675234200008],[-108.80966741499998,48.04274393400004],[-108.69429057299993,48.033118871000056],[-108.5287625389999,48.0787592260001],[-108.45554951699995,48.04822668500009]],[[-110.43763050099994,47.60838608900008],[-110.41906217199994,47.55332537900017],[-110.22496843699997,47.52342430000016],[-110.21364557399988,47.443290589000014],[-110.36451028599993,47.445088633000125],[-110.41288239399995,47.38962681100003],[-110.727082151,47.297757607000165],[-110.91646842299991,47.43136705800015],[-110.79188578299994,47.57839835700008],[-110.56805789499998,47.61253729300017],[-110.43763050099994,47.60838608900008]],[[-109.54388269699984,47.12477723900014],[-109.62200115799993,47.20814798700013],[-109.5323975849999,47.23393376400003],[-109.53493974399993,47.32965389800006],[-109.42836759599993,47.32256364800014],[-109.42795091399995,47.25803669400017],[-109.1725549389999,47.28959929600006],[-109.00830971899995,47.25216194100017],[-109.15440783499997,47.13935360200014],[-109.13011592099991,47.04108581500009],[-108.86503167599994,47.01957732100004],[-108.89620824699989,46.935712040000055],[-108.98738161199987,46.84319527600019],[-108.87253784299998,46.78219728200003],[-109.04443736399992,46.71955741600004],[-109.08156880999996,46.665547384000035],[-109.26818340799991,46.65088441700016],[-109.36716197699997,46.68316644300006],[-109.52227251199997,46.680113760000154],[-109.55495353999987,46.743696961000126],[-109.71474108699994,46.801659043000086],[-109.58972825899997,46.892694185000096],[-109.40508269999998,47.03702463900015],[-109.42881862499996,47.16752145200019],[-109.51283435199997,47.13055085900004],[-109.54388269699984,47.12477723900014]],[[-104.57343370299992,44.93163108200014],[-104.4131409549999,44.970855872000186],[-104.21300050799994,44.84235415000012],[-104.02781160199993,44.640708525000036],[-103.7406286339999,44.64606463600012],[-103.66135453599992,44.61851007200016],[-103.60003251999996,44.50906294400016],[-103.45622722099984,44.39976157500007],[-103.24180880099993,44.1571610740001],[-103.21693524299991,43.98724235200012],[-103.23008146299998,43.81317438000019],[-103.34835771599995,43.5575639110001],[-103.34388424399992,43.50169562600007],[-103.42952842699992,43.35796235400005],[-103.60357175399997,43.31657017300017],[-103.74071280899994,43.2565795700001],[-103.81201948899997,43.41532692200019],[-103.9053282779999,43.40276063800013],[-104.03500823199994,43.557789316000026],[-104.12142479,43.705373510000186],[-104.16996599699996,43.8434692190001],[-104.30445212199993,43.89607960100017],[-104.30929785999996,43.96136845799998],[-104.42104737899996,44.03469241200008],[-104.50708909999997,44.168131055000174],[-104.68411721099994,44.17049123900006],[-104.71182849999985,44.24467797000017],[-104.89653858199995,44.45283630300014],[-104.91272194199996,44.57655540400003],[-104.88300970099993,44.66905002800013],[-104.90658123999998,44.74890948900014],[-104.85143403499984,44.80886513900009],[-104.57343370299992,44.93163108200014]],[[-98.93359994399992,42.81966145900009],[-98.84706142199991,42.82536439800003],[-98.57627678999995,42.7630500730001],[-98.31857796199989,42.762553],[-98.30046684399991,42.69392551600015],[-98.71397463099999,42.732610084999976],[-98.85412048799992,42.776847552000106],[-98.91382268399991,42.76455405300004],[-99.07155213899989,42.80796475000011],[-98.96785959099998,42.88111174900018],[-98.93359994399992,42.81966145900009]]]]},"properties":{"objectid":518,"eco_name":"Northern Shortgrass prairie","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Nearctic","eco_biome_":"NE08","nnh":3,"eco_id":396,"shape_leng":112.480036741,"shape_area":86.1689626613,"nnh_name":"Nature Could Recover","color":"#FCBA26","color_bio":"#FEFF73","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":718937.8845763287,"percentage":6.78544296081825}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-95.98812921899997,45.969841695000184],[-96.02354777099998,46.00105700800003],[-96.056285028,46.15471676900006],[-96.13933618399994,46.29087104700005],[-96.23976181599994,46.39387957200012],[-96.29368127399994,46.509130239000115],[-96.27659611899992,46.615173248000076],[-96.3115003179999,46.69958194400016],[-96.27240709899996,46.888117624000074],[-96.16185779699998,46.91078017600006],[-95.96284132999995,46.855050104000156],[-95.88809231999994,46.969847589000096],[-95.88079756399998,47.15600632600007],[-95.82324122399996,47.30127226400009],[-95.8222316049999,47.42028778200006],[-95.70858832099998,47.58233158900009],[-95.59733160499991,47.673038604000055],[-95.47259649299991,47.701618849],[-95.45356575699998,47.847863005000136],[-95.62666160999993,48.03885066500004],[-95.60840988699994,48.15404489100001],[-95.65966623399993,48.215717514000175],[-95.49736934599997,48.331993650000186],[-95.49720557599994,48.37902473900016],[-95.60084942099985,48.46043273300012],[-95.57230789299996,48.52001304200013],[-95.71020756399997,48.59410577700015],[-95.63748065599998,48.66683106500005],[-95.72873944399993,48.80477805900006],[-95.60901643699987,48.86154238300003],[-95.79023989399997,48.905214152999974],[-96.00424810499999,48.894296506000046],[-96.0815325669999,48.824368793000076],[-96.31326547999993,48.775551067000094],[-96.4621163729999,48.707528164000166],[-96.55729794599995,48.74718738200011],[-96.57268360699993,48.84151685],[-96.50972623899992,48.90556837000008],[-96.64096368699995,48.99999043600019],[-96.45466337099998,49.02413125700019],[-96.41543055299996,49.055876449000095],[-96.46096990799998,49.25230791600006],[-96.426805173,49.52291240400007],[-96.46826389899996,49.64131885500018],[-96.3176016779999,49.83284899300003],[-96.30054111199996,49.924339119000194],[-96.463599822,49.95603011000014],[-96.57222714199992,49.94098863300019],[-96.81703958999992,50.07717661100014],[-96.8849567289999,50.043828831000155],[-97.065856909,50.249583499000096],[-97.10871108799995,50.51669255800016],[-97.2552796679999,50.385448109000095],[-97.25804135799996,50.31419857700007],[-97.40904975399991,50.244571300000075],[-97.52404013299991,50.47386789300003],[-97.60829145699995,50.56461987100005],[-97.66412351399993,50.76612920300016],[-97.789344842,50.82367447700011],[-98.08302366299995,50.761807590000046],[-98.28422686099992,50.780796875000135],[-98.68081373599995,50.939665479000155],[-98.8877601129999,51.05698265300009],[-99.09241713699993,51.274989523000045],[-99.30807813199993,51.415043518000175],[-99.77810796499989,51.55972775800018],[-99.95745613499997,51.572381993000135],[-100.17872418999991,51.54773907000015],[-100.34883442199998,51.574115632000144],[-100.45523913999995,51.63899775300007],[-100.59161366099994,51.77606056100012],[-100.5959705539999,51.595582653000065],[-100.57237938299994,51.51674922400002],[-100.62802846599993,51.34513670000007],[-100.74485059499989,51.29639613400013],[-101.11707311399994,51.29081781000008],[-101.13626042899989,51.19978223000004],[-100.96698722399987,51.1829494160001],[-100.92051729299993,51.08477530200008],[-100.81133264599998,51.049351265000155],[-100.5285040259999,51.01312752100006],[-100.40630369799993,51.0314957760001],[-100.18757605599995,51.02508190200018],[-100.09224637799997,51.045278512000095],[-99.88146997799998,51.008722054000145],[-99.60497278099996,50.80033335600001],[-99.49908502899996,50.603062010000144],[-99.47739395799994,50.41860931400004],[-99.36486856399989,50.23187443700016],[-99.22316734399999,50.19924922900009],[-99.13142397799999,50.03440186100016],[-98.92548384799994,49.89361216000003],[-98.73004134299993,49.84046556700014],[-98.49501072699991,49.743921231000115],[-98.47096215999989,49.58198366400018],[-98.3794707269999,49.53239308000002],[-98.20265962199994,49.35526939100015],[-98.19236781899997,49.259835749],[-98.04496583499991,49.00265659100006],[-98.0137232049999,48.877039732000014],[-97.8896503869999,48.66768436500013],[-97.91058625699998,48.55178974199998],[-97.88984690999996,48.310007566000195],[-97.83647212799997,48.13374649200017],[-97.71827834199996,47.999636740000085],[-97.63789915999996,47.67520390400017],[-97.64067509899996,47.534258836000106],[-97.58903981399993,47.419579383000155],[-97.47214387799994,47.37992658700017],[-97.4236269889999,47.32260218200008],[-97.42304034099993,47.08930456300004],[-97.47237288999997,46.78288368800014],[-97.54385312099998,46.63798951900009],[-97.45156608299993,46.55427231300018],[-97.49366340899991,46.43024165300005],[-97.62122880199996,46.347815708000155],[-97.43595784299993,46.252216273000045],[-97.37190438799996,46.181378003000134],[-97.11681246599989,46.09812127900017],[-97.01214351799996,46.09788978600011],[-96.91705025599992,46.0242292640001],[-96.86562590799997,45.925190700000144],[-96.70421371899994,45.86494596400007],[-96.51867589699992,45.67989859400012],[-96.42104765199997,45.633403250000185],[-96.27641473399984,45.66593733200017],[-96.17572821199991,45.75278029700013],[-96.13960275699998,45.87840927400009],[-95.98812921899997,45.969841695000184]]]},"properties":{"objectid":520,"eco_name":"Northern Tallgrass prairie","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Nearctic","eco_biome_":"NE08","nnh":4,"eco_id":397,"shape_leng":25.1038522376,"shape_area":10.1612193165,"nnh_name":"Nature Imperiled","color":"#FCCA4D","color_bio":"#FEFF73","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":82847.29097464177,"percentage":0.7819250861957616}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-7.312727477999942,39.17880706800014],[-7.216334585999959,39.25420295800018],[-7.249400522999963,39.40334769300006],[-7.378195506999873,39.414822687000026],[-7.510737535999965,39.31629391800004],[-7.538668551999933,39.25636582400011],[-7.333863452999935,39.15857449500004],[-7.312727477999942,39.17880706800014]]],[[[-5.185223424999947,39.63795666100003],[-5.281009466999933,39.649606500000175],[-5.475978569999938,39.52529818200014],[-5.591705495999975,39.48525967500012],[-5.590913573999956,39.39125210400016],[-5.413815525999894,39.397023883000145],[-5.207396575999951,39.465949949000105],[-5.185223424999947,39.63795666100003]]],[[[-4.859638453999935,39.67795309100018],[-4.84832154299994,39.622655832000135],[-4.492098536999947,39.56241844600015],[-4.424637459999872,39.51276740500009],[-4.23483546499989,39.48665257900012],[-4.233397465999928,39.58117127800011],[-4.488792546999889,39.68346084000012],[-4.616053473999955,39.70031466800003],[-4.859638453999935,39.67795309100018]]],[[[-7.334523443999899,39.93126074300005],[-7.103527579999934,40.09326449100007],[-6.950130537999939,40.13023589300002],[-6.761552467999934,40.081321788000025],[-6.644723489999933,40.0834234670001],[-6.34613947899993,40.166529534000176],[-6.122427488999904,40.284722248000094],[-6.117342522999934,40.374477007999985],[-6.052010449999955,40.44316737500009],[-5.942012554999963,40.41490862699999],[-5.937808527999891,40.32565359500006],[-5.878108421999968,40.18947415500014],[-5.937907433999897,40.048095924000165],[-5.849833579999881,39.98672178500004],[-5.77491344799995,39.98625692400003],[-5.520971452999959,40.07441258500006],[-5.133361571999956,40.13857186299998],[-4.851578582999878,40.24685767000011],[-4.543902553999885,40.28138826200012],[-4.553478542999869,40.37800612400014],[-4.745330583999873,40.41464962599997],[-4.835840553999958,40.513239583000086],[-4.946640428999956,40.54491211300018],[-5.054935456999942,40.63041708100019],[-5.174048503999927,40.61970215800011],[-5.294540540999947,40.50135270300012],[-5.441204568999979,40.40691681700008],[-5.637128537999956,40.45087319400005],[-5.682353431999957,40.49039286200019],[-5.685950441999978,40.58363047000017],[-5.790125427999953,40.61877931100008],[-5.986355504999892,40.5809298210001],[-6.176994516999969,40.622082284000044],[-6.291074565999963,40.70419643600019],[-6.382090467999944,40.803263324],[-6.419220454999959,40.88826923300002],[-6.359828467999876,40.95409047500016],[-6.168136520999951,40.943993634000094],[-6.067053450999936,41.03305068500009],[-6.084473560999925,41.09214712600004],[-6.182295567999972,41.18676640700005],[-6.289607564999869,41.22993672900009],[-6.365088447999881,41.21378211900014],[-6.52969846499991,41.08161140900006],[-6.551110538999978,40.96672954600007],[-6.632122471999878,40.83565787100008],[-6.364645547999942,40.57537563700009],[-6.342266536999944,40.464799894000066],[-6.441799457999878,40.41637344800017],[-6.718347444999949,40.387217836000104],[-6.758352424999941,40.438529165000034],[-6.738120521999974,40.582589606000056],[-6.875191461999918,40.68260146900013],[-7.065282464999939,40.654304834000015],[-7.19911647999993,40.71593814200003],[-7.174482569999896,40.89222917900014],[-7.383052483999961,41.02748091000012],[-7.453380507999896,41.00043116700016],[-7.634626422999929,41.036052747000156],[-7.659528554999952,40.97878322600019],[-7.530233506999934,40.79577929000004],[-7.549707517999877,40.61952613800014],[-7.598129437999944,40.57458974999997],[-7.888308578999954,40.415225630000066],[-8.012021446999938,40.147196674000156],[-7.933645454999919,40.07956259400015],[-7.857878581999898,40.06891992400011],[-7.69038854299987,40.15275773100012],[-7.61575155099996,40.15915982900009],[-7.530216575999873,40.101024290000055],[-7.588746567999976,39.989475911],[-7.517438531999971,39.892290258000116],[-7.334523443999899,39.93126074300005]]],[[[-3.096789432999913,42.598441177000154],[-3.334729535999884,42.6736736200001],[-3.61314350299989,42.80355171200006],[-3.726609493999888,42.77138297400006],[-3.842535573999953,42.788602923000155],[-3.95593752699989,42.75192807299999],[-4.120966471999964,42.76590489700004],[-4.312926471999958,42.878285264],[-4.537799522999933,42.80401389000008],[-4.744014457999981,42.82808051400008],[-5.033184585999891,42.810917729000096],[-5.238415484999962,42.84276359600011],[-5.519038585999965,42.78931991100012],[-5.726840550999952,42.79137582400017],[-5.887896472999955,42.82296068000011],[-6.094121466999979,42.735529048000046],[-6.301317586999971,42.712259208000035],[-6.518130432999953,42.793633909],[-6.642783581999936,42.792333038000095],[-6.786952484999915,42.73314406100013],[-6.91041557199992,42.61466099800009],[-6.99864448999989,42.48015961500016],[-7.185896542999899,42.50292855200013],[-7.280427478999968,42.63612990200005],[-7.383672576999913,42.68208536200012],[-7.464998495999907,42.67058773800005],[-7.628357429999824,42.53553633500013],[-7.784537431999922,42.447688960000164],[-7.656288445999962,42.335228630000074],[-7.527683564999961,42.32872092000002],[-7.330931462999956,42.35298569200006],[-7.243357505999938,42.29169486900008],[-7.312588505999884,42.21314352800016],[-7.258820440999898,42.1001953710001],[-7.347953431999883,42.0176949800001],[-7.666434572999947,42.079328455000166],[-7.747902480999926,42.07935963600016],[-7.893754468999816,42.024626814000044],[-7.942842581999912,41.97745832400011],[-7.907491569999934,41.893665109000096],[-7.631234434999897,41.87442797000011],[-7.512499578999893,41.72836425500009],[-7.521252465999964,41.6682417020001],[-7.666335497999967,41.52820122200012],[-7.660426423999979,41.39587812800005],[-7.759592552999948,41.30054604900005],[-7.723266557999978,41.197806044000174],[-7.642137446999925,41.196547250000094],[-7.437991500999942,41.33659879400011],[-7.436553501999867,41.48661759400011],[-7.285185549999937,41.51626505600018],[-7.175805568999976,41.598051309000084],[-7.019799575999969,41.56671774300014],[-6.957279462999963,41.48996348200018],[-6.881994548999899,41.465781692000064],[-6.564459557999953,41.518844],[-6.48332457999993,41.50936406800008],[-6.445916480999927,41.44113587900006],[-6.709938551999926,41.30160619200012],[-6.784277483999915,41.201979226000105],[-6.716239563999977,41.17383832700011],[-6.52608351799995,41.32844689000012],[-6.431600525999954,41.31295512100007],[-6.360488458999953,41.37111748300009],[-6.268797478999943,41.53645203200011],[-6.132963540999924,41.64824901800006],[-6.197782474999883,41.722749218000104],[-6.158926485999871,41.76902084400007],[-5.999437476999901,41.74559912400014],[-5.896575430999917,41.78492097900016],[-5.927994491999868,41.83617447300003],[-6.191074437999873,41.91866664900016],[-6.212249471999883,41.97562319000019],[-6.081349457999977,42.090074390000154],[-6.050118485999974,42.17059883100012],[-6.135029512999893,42.23722943000013],[-6.121392490999824,42.35351542800004],[-6.068789510999864,42.40000129500004],[-5.918579435999959,42.39386725100019],[-5.879573578999896,42.59896689000004],[-5.762577464999936,42.56412834800017],[-5.804546492999975,42.41654901600009],[-5.699764488999961,42.383518283000114],[-5.652347559999896,42.514361468],[-5.639001557999848,42.69259828100019],[-5.576995422999971,42.69381935600006],[-5.556428579999931,42.57424413100006],[-5.375404448999916,42.53899621700003],[-5.331072562999964,42.48936361500017],[-5.397463438999978,42.41757227900007],[-5.145663523999929,42.18610585500011],[-5.00505458299989,42.12649325700011],[-4.655185562999918,42.20892458100019],[-4.537364501999832,42.18681479600002],[-4.46312045399992,42.11479044300012],[-4.455504488999964,42.02573305699997],[-4.603281464999952,41.813801496999986],[-4.628472436999971,41.66759277500017],[-4.508599486999856,41.60923645600013],[-4.107416454999964,41.666039776],[-3.860185514999898,41.77149283500006],[-3.917066450999869,41.820118434000165],[-4.062628425999947,41.76573312600016],[-4.181309468999871,41.77592585600007],[-4.154963470999917,41.87680407200003],[-3.980703535999851,41.95576864100008],[-3.863589572999899,41.982776139],[-3.834868478999908,42.06692759700013],[-3.770649521999871,42.10044733100017],[-3.605190585999935,42.10791242099998],[-3.514733421999892,42.04896065200012],[-3.413436445999935,42.03572395100008],[-3.336416477999933,41.930129573000045],[-3.223960506999958,41.84311334800009],[-2.98515857599989,41.8130575190001],[-2.947720469999922,41.870777316000044],[-2.742503484999872,41.876373075000174],[-2.587657546999935,41.91181880200014],[-2.527958446999833,41.965922311000156],[-2.434678425999891,41.937938657000075],[-2.291026518999956,41.99576808900014],[-2.068160430999853,41.948768411000174],[-1.990663532999918,41.99763809100011],[-2.089540485999862,42.094648563000135],[-2.055959564999853,42.17113678200013],[-2.188418444999968,42.30359281300008],[-2.269176573999971,42.30183093700015],[-2.568354525999894,42.38454825100007],[-2.707686567999929,42.389881488000185],[-2.807799515999875,42.33530876100002],[-2.90105657099997,42.503115468000146],[-3.096789432999913,42.598441177000154]]]]},"properties":{"objectid":526,"eco_name":"Northwest Iberian montane forests","biome_num":12,"biome_name":"Mediterranean Forests, Woodlands & Scrub","realm":"Palearctic","eco_biome_":"PA12","nnh":3,"eco_id":800,"shape_leng":36.741331133,"shape_area":6.20416235859,"nnh_name":"Nature Could Recover","color":"#D49E54","color_bio":"#FE0000","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":57451.93643947618,"percentage":1.7391791401876644}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[59.225799589000076,65.88171329700009],[59.521598629000096,65.96241375800008],[59.54643655500013,66.02088859700012],[59.405605493999985,66.08844975400007],[59.128726589000166,66.06964210400014],[58.9939304990001,65.96667075900012],[59.01381656400014,65.90655574900018],[59.225799589000076,65.88171329700009]]],[[[56.29811848900016,66.37763362800007],[56.178523483,66.40873300300007],[55.69891752100017,66.36588387600005],[55.5042194880001,66.3286201140001],[55.179359552,66.17198832700018],[55.24458651700007,66.08291853600014],[55.51843251400015,66.120250527],[55.75624856500019,66.18377579800017],[56.00370447500012,66.28688494200014],[56.43984557599998,65.99722832800006],[56.483482602000095,65.73143013200001],[56.692054528000085,65.39335444900007],[56.71977649900009,65.12815187000018],[56.97555547200011,65.0290177600001],[57.16776659300007,65.05193002800019],[57.20891553500002,65.13892513000019],[57.02008852300003,65.29792195500005],[57.00043463700007,65.6233620860001],[56.79471255800007,65.74412569700019],[56.7565874710001,65.80065442600016],[56.84257858900003,65.9992886],[56.76295453200015,66.11369621400013],[56.53292459900007,66.26317153200006],[56.29811848900016,66.37763362800007]]],[[[58.02002358900012,66.08304091200017],[58.28458059300016,66.13044409500003],[58.75571848700014,66.34159077400017],[58.70140861500016,66.42527385100016],[58.56240061800003,66.41669866100011],[58.32295663400009,66.34828908800017],[57.93006162800003,66.13615150000004],[58.02002358900012,66.08304091200017]]],[[[42.54294245900007,66.40649000600001],[42.56243859800014,66.46990832400013],[42.20544060100008,66.52491104300015],[41.999999483000124,66.39166560500013],[42.131038469000146,66.19610608000005],[42.264385497000035,66.12229554400005],[42.66130046400008,66.02815185100013],[42.83271457500007,65.93347406400011],[42.95409056800003,65.96567901200007],[43.19340547100006,65.95373815300013],[43.43383047300006,65.88436851600017],[43.70916358700015,65.86943716200017],[44.09801449300011,65.92839194800007],[43.893634524000106,66.13094801500017],[43.69428654700005,66.25053698600004],[43.157932586000186,66.41821662400008],[42.54294245900007,66.40649000600001]]],[[[55.211093604999974,66.41884157900017],[55.290489507000075,66.46832112700014],[55.22129052600019,66.54532902400013],[55.00374258700009,66.55152442400004],[54.591133512,66.49410956000003],[54.32557252400005,66.40387971400008],[54.116706561000115,66.41606448600015],[53.83941258400006,66.38267685200009],[53.76539652300005,66.33198427500014],[53.87399262800005,66.25910446500006],[54.175029519000134,66.1770084170002],[54.38794360600019,66.1804035900002],[54.4987144800001,66.28298584800012],[54.8465495480001,66.32273786200011],[55.211093604999974,66.41884157900017]]],[[[60.004257616000075,66.24342577900012],[60.301551484000186,66.37271227700006],[60.50076652400014,66.496246611],[60.394935608000196,66.5593598270001],[60.2551195960001,66.53882768500017],[59.95096547500003,66.41227335200017],[59.82590463000014,66.30527299300019],[60.004257616000075,66.24342577900012]]],[[[57.054840564000074,66.17796261300009],[57.17747149600007,66.20626075600018],[57.40554459000015,66.32350094999998],[57.589416556000174,66.36604413800018],[58.158275538,66.41852960400018],[58.4909665190001,66.52932931200019],[58.453727567000044,66.61118144600016],[58.1673355370001,66.60314688900019],[57.63440658900004,66.50638603099998],[57.13050450700007,66.47597363700004],[56.80957048700009,66.35851366900016],[56.803871631,66.24109058100015],[57.054840564000074,66.17796261300009]]],[[[42.628547506000075,66.68708226200005],[42.59599655300002,66.7349368940001],[42.328277559000014,66.86763365300004],[42.281421547000036,66.81533208600007],[42.51886762100008,66.66744362999998],[42.628547506000075,66.68708226200005]]],[[[51.54597853100006,68.52053087900003],[51.45315549100013,68.56606506500009],[50.873947541,68.4715319500001],[50.93000453600007,68.40315422800006],[51.274814575000164,68.45421292600014],[51.54597853100006,68.52053087900003]]],[[[58.72969049800014,69.38494331100003],[58.739250561,69.33026061300012],[59.093849490000196,69.16040486500003],[59.28709762100004,69.14392503800008],[59.2519496180002,69.2436614720001],[58.881126510000115,69.36721960900013],[58.72969049800014,69.38494331100003]]],[[[49.187702577000096,68.73425734100005],[49.31143958500007,68.7756104660001],[49.729545512000016,68.83719113500007],[49.974727579000046,68.94355078100006],[50.08120758900003,69.05665517700015],[50.36864853000003,69.11976152000011],[50.140853548,69.31457337800003],[49.28838750700004,69.51896893700012],[49.06806147100019,69.5238524020001],[48.665718551,69.4689933480002],[48.29937758200015,69.30700485500006],[48.183540518000086,69.19399986900004],[48.14006459200016,69.00086623500005],[48.16992562500002,68.80526815400009],[48.41611855000019,68.74979906500005],[48.9456824990001,68.7079648190001],[49.187702577000096,68.73425734100005]]],[[[67.16505463300001,68.73637846500003],[67.07386757300009,68.85319772000008],[66.52932751000003,68.94816719800019],[66.41328458600003,69.06422386700007],[66.06514760200008,69.09738368200004],[65.55695348300014,69.17478770800017],[64.9375605090001,69.30925556400007],[64.761283553,69.39561716200006],[64.74986254000015,69.48395638700003],[64.30644259500019,69.55322694900008],[64.14893355800018,69.63696367100016],[63.82945262400017,69.61769183100006],[63.07527160700016,69.73019306499998],[62.72150449800006,69.69397385600018],[62.76498461500006,69.76436692300013],[62.3497545190001,69.87279421600005],[61.955539531000056,69.88848916200016],[61.46075058900004,69.86085352500015],[61.230968593000114,69.82524518800011],[60.99618964000007,69.86910902900001],[60.76308455400016,69.85501703800014],[60.12747159200012,70.01490033200008],[60.02827059500015,70.09134362500004],[59.82843361800013,70.1226416510001],[59.54576851700011,70.21311591400013],[59.341098535000185,70.34095301300016],[59.06084054900009,70.46785234499998],[58.71136061700008,70.43717340600011],[58.64606458500003,70.37996406700012],[58.42375958100013,70.34575215600017],[58.55467954400018,70.27806862300002],[58.40165348500017,70.20730122000003],[58.60405348000012,70.02612370100013],[58.900825492000195,69.90015476000008],[59.366317502000015,69.89109107300004],[59.496990535000066,69.84665474800016],[59.538108631000114,69.71414004400003],[60.12294754400011,69.609596254],[60.21623661800004,69.45712943500007],[60.51037956100015,69.2132271160001],[60.92013560400005,69.0700375560001],[60.945854635000046,68.97967795700015],[60.86780151500005,68.88724266400004],[60.547595546000196,68.75812380400009],[60.19747557100004,68.69216275200012],[59.8117635210001,68.70902462700019],[59.71804060000005,68.65658609900015],[59.875122495000085,68.52652008400008],[59.867511559000036,68.46741962000004],[59.544555488000185,68.49282718100005],[59.36394156800009,68.53264708800003],[59.161193556,68.62765327800014],[59.186809490000144,68.68417563700012],[59.465141482000035,68.7670651150001],[58.94406555100005,68.93248733900003],[59.235988631000055,68.94882987100004],[59.26548354200003,69.01073860800017],[58.97491061900007,69.02953033199998],[58.44765454300011,68.97358146400012],[58.27674854300011,68.90251750900012],[58.07634360800006,68.8870976570002],[57.54194648600003,68.68512161800015],[57.226604536000195,68.71025374900012],[56.93463150000014,68.65843213000005],[56.62806355900017,68.68099353100013],[56.228969632000144,68.60371121000003],[56.050319592000164,68.6377170940001],[55.29591360400008,68.5564516930001],[54.97212956900012,68.4468576380001],[54.84130851200007,68.33086131800019],[54.88291963200004,68.26918978900017],[54.67869154400012,68.23585512800008],[54.41950951900009,68.29735834800016],[54.195583622000015,68.25074071799997],[53.4577555300001,68.25535679900008],[53.568786579000175,68.33519543300008],[54.162155587000086,68.36675212500018],[54.12247850700004,68.46145321400019],[53.97431160400009,68.60025518400005],[54.061820517000115,68.66413936800012],[54.13953048300016,68.84588132500005],[53.90680358800006,68.83438252700006],[53.622726472000124,68.9035166320001],[53.19303155900019,68.87930718100012],[52.9494135540001,68.81696375900015],[52.69234460700011,68.71643422900007],[52.272468590000074,68.64329441300015],[52.615463611999985,68.5222017280002],[52.67816946800008,68.45967507700004],[52.40166456300011,68.36798812000006],[52.316627473000096,68.41823796500012],[52.41986050100019,68.50590479400017],[52.22373151100015,68.58015772700008],[51.44820363000014,68.42733233000018],[50.97125255200018,68.38914538500012],[50.49412947700017,68.28709672000019],[50.046199565000165,68.13055629600012],[49.7264324730001,67.99338695300008],[49.386753500000054,67.90450022300001],[49.013183474000016,67.86578622300016],[48.764038610000114,67.89236171800013],[48.68029048900007,67.83730451600013],[48.72203857000011,67.75771868100003],[47.80363058800003,67.68634157900016],[47.73381050800003,67.61112657000018],[47.784164624000084,67.515563654],[47.57551558400007,67.30007498100014],[47.63332355900019,67.13995582000018],[47.35868849000019,66.98475063400008],[47.21769347900016,67.03940366000018],[46.83225652200019,66.96032811500004],[46.28067750400015,66.91592330600008],[46.18974257200006,66.9741069580001],[45.728572606000114,66.97898237500004],[45.53614858400016,67.10774316000015],[45.110149586000034,67.26724474300016],[44.9138105450001,67.29779409800017],[44.83880257000004,67.40622876800006],[44.99048651900006,67.53598850800012],[45.240650622000146,67.61391858200011],[45.250148492000164,67.72365026800003],[45.97204962600017,67.81612445300016],[46.42840553000008,67.81492634400007],[46.587062552000134,67.83204034600016],[46.45573455800019,68.11249648000012],[46.314407624000125,68.226561441],[45.86969351300007,68.39198349800017],[45.802772565000055,68.47878833100003],[45.59866752300019,68.52771769100013],[45.223514492,68.56515026500006],[44.567741544000114,68.54831906800018],[44.016361512000174,68.56649338100016],[43.76447258100018,68.63005653800008],[43.41548952800014,68.68267946700018],[43.37105957300008,68.61075351800002],[43.796703513000125,68.4772244350001],[44.141193532000045,68.31922556000006],[44.19559459800007,68.2297128690002],[44.177192465000076,68.10485905700011],[44.264976472000114,68.03869365400004],[44.15948854400011,67.9634323780001],[44.17453758100015,67.87866568800007],[44.053409524000074,67.78336981900003],[44.09505853100012,67.66216230300006],[43.93803748900007,67.53833896100019],[43.7565956040001,67.31276367400011],[43.79433059700011,67.20326098200013],[44.01235161000005,67.18109604500017],[44.18104545800014,67.11534269700019],[44.43985348300009,66.855067169],[44.34698853300006,66.74004817900015],[44.4802664930001,66.63396379400007],[44.29056558400015,66.482031909],[44.72083650300016,66.54482493600017],[44.99956847900006,66.53933194000007],[45.13834345900017,66.45943278900012],[45.44370256200017,66.40069073500007],[45.787406525,66.4527876160002],[46.18048056900017,66.48055183200006],[46.47534955300017,66.59246583000004],[46.712947507000194,66.56485299100018],[46.76668958800013,66.38811721000008],[46.90879855300017,66.32783405900017],[47.087432501000194,66.49512477700011],[47.40039047000005,66.55382844100018],[47.708473524000055,66.46818399900019],[47.83026559400008,66.54235294500018],[48.05875359300012,66.61472950600006],[48.979255541999976,66.85832521400005],[49.210418541000195,66.93264687900012],[49.57346357800003,67.14212304500018],[49.75205947100005,67.08875328800008],[49.96734949300014,67.09580263599997],[50.49135959300014,67.26100307500013],[51.012065547000134,67.13972783200012],[50.881790487000046,67.0994729040001],[50.95379656800003,66.98965706400014],[51.13037862500005,66.95132511200006],[51.71561450500013,66.98404169200006],[51.928047471000184,66.96607374200016],[52.06622649700017,66.86298773200014],[52.09261356700017,66.72790129200007],[52.14399362700016,66.07737156000019],[52.34900257400017,65.9825638530001],[52.59025151700018,66.04508212200005],[52.66079747000015,66.15998678300014],[52.594554619000064,66.35222623500005],[52.83464853600009,66.29576657400014],[53.205158496000195,66.12514857600019],[53.33897356900019,66.10364077999998],[53.513812525000105,66.16421344200018],[53.473781562000056,66.34150678700007],[53.65324749700011,66.5342124410002],[53.56023754000006,66.67102957600002],[53.09932758100018,66.76168639700012],[52.81526957600016,66.78974867300008],[52.41328858600008,66.78211929800005],[52.37698756999998,66.94393160300018],[52.751697534000186,66.85414381800007],[52.970127584000124,66.86033938600008],[53.442268623000075,66.9823096560001],[53.46923052400007,66.87257797000018],[53.556636507000064,66.8283478410001],[53.8316425590001,66.91800503600001],[54.04236947300012,67.17140656500015],[54.498401500000114,67.32137054800012],[54.79759956900017,67.33144073400018],[54.90994255300012,67.29430689100019],[54.960750632000156,67.15039330100018],[54.767032612000094,66.9156022790001],[54.81966761100017,66.80001114000004],[54.99509447500009,66.70488223900014],[55.178298571000084,66.65481545500006],[55.455512584000076,66.66218583000017],[55.461677474,66.748723616],[55.254119591000176,66.8710517930001],[55.747211532,66.88679250500007],[55.97986248700005,66.81330986800009],[56.30511855200018,66.65250473200012],[56.501277550000054,66.61366869200003],[56.86058861700019,66.5879942520001],[57.34915550400012,66.64344825300014],[57.666625619000115,66.71804383900007],[57.94430952200008,66.75560599700009],[58.38092453600018,66.78745957600017],[58.653140588000156,66.75990105200009],[58.80730859800002,66.69373598400011],[58.94704447900017,66.69020351500012],[59.275299589000156,66.75981019200003],[59.783851616,66.73865996800009],[59.9204905520001,66.75585678300001],[60.12477463100004,66.8400141090001],[60.24571258600014,66.94830410700013],[60.37472147500017,67.15201955800018],[60.64368853400015,67.17659479500009],[60.80064352699998,67.11366447200015],[60.862148592000096,66.93437908300007],[61.1492535860001,66.7812874780002],[61.12086458300013,66.66987756700001],[60.772792475000074,66.56182393900002],[60.79856163000011,66.46388810600007],[61.0153235140001,66.47670671800006],[61.66522259100009,66.66614627900003],[62.215896531000055,66.77994436100016],[62.41177356200012,66.7730779060002],[62.54663452900013,66.69744397100004],[61.96754861900018,66.56573141400014],[61.71244053400011,66.42453406400017],[61.77634449900012,66.19048316400017],[61.64694953900005,66.08415369300013],[60.803672579000136,65.8115802370001],[60.47578862000006,65.75578442200003],[60.356738605000146,65.68068374300015],[60.323036481000145,65.59399424400004],[60.393398535000074,65.38902117200007],[60.07432563200018,65.35122348300007],[59.881298616000095,65.38566405200015],[59.61761852700005,65.56098061000017],[59.280456639000136,65.46049667800014],[59.06774857900001,65.307664241],[58.93899550500015,65.10788677500005],[58.670188541000186,64.93460718800009],[58.67144750200015,64.84687330400004],[58.89350859300009,64.56467071700007],[58.88418154600009,64.47869166900011],[58.74269854100004,64.24897488300007],[58.77252152000017,64.1613546580001],[58.8721996160001,64.12146618700012],[59.069404508,64.1849758670001],[59.095878581000136,64.30277278800003],[59.351604580000185,64.43787163299999],[59.49917552900001,64.57063695600016],[59.38331549900005,64.70991065900006],[59.37891751400019,64.79875196000017],[59.53250851400014,64.89503119400007],[59.74271357000009,64.97434327600018],[59.93393361600005,65.00505289300014],[60.18823653500016,64.90755996000001],[60.43972062000006,64.95349111300015],[60.8563385920001,64.94563307800001],[61.186923535,64.98808507100006],[61.380054487000166,65.0719426600001],[61.368137600000125,65.36747431700013],[61.48084251400002,65.47477139500006],[61.68702660399998,65.55572364800008],[62.33591851200009,65.70375677500016],[62.38224059700019,65.62183574200009],[62.864795480000055,65.72837794499998],[63.06757349900005,65.82566468400006],[63.37593852100008,66.05240690000016],[63.77465459100006,66.3135972290001],[64.1818544890001,66.48874614800019],[64.98171956000016,66.68071201500015],[65.40500650900015,66.74330622400015],[66.31932060200018,66.84853682800014],[66.58583059000011,66.88640274600004],[66.9182126130001,66.97020903700013],[67.11669155500005,67.08520522900005],[67.26255762500011,67.26184227100009],[67.1399305490001,67.4538155140001],[66.93395248700017,67.57810488900009],[67.09899853000013,67.81575045200003],[67.13745151700016,67.99174695],[67.04427358700019,68.13668246100013],[67.29310664400009,68.22223520600011],[67.84828954500017,68.18565037800016],[68.15505261700002,68.32553612800012],[68.07746150700007,68.44586522100019],[67.86705059200006,68.46338339900012],[67.66199453900003,68.53216613400002],[67.16505463300001,68.73637846500003]],[[53.17669254700013,67.4687091510001],[53.32539756799997,67.48005439200006],[53.63603961700005,67.56238815000006],[53.78155549100012,67.55840473500007],[53.88640253900002,67.45305209100013],[53.74791757300011,67.38382729300008],[53.82922756600004,67.28186295000006],[53.567699613000116,67.17928756600003],[53.4550366090001,67.21537685600003],[53.173984522000126,67.15265272700009],[52.96685059500015,67.18314089400019],[52.65746650200009,67.39201389800007],[52.87624356300006,67.46455072100008],[53.17669254700013,67.4687091510001]]],[[[53.002933515000166,71.33441222100004],[52.68959450400001,71.42977782700007],[52.28879955500014,71.40478265700017],[52.17556356300014,71.32055659999997],[52.276359469000056,71.25950281700005],[52.55543862400003,71.24412772400007],[52.953704586000015,70.97953316900004],[53.16297153900007,70.97057593200009],[53.129913481000074,71.08361930700005],[53.2512546050001,71.12594959500018],[53.28144052100015,71.24222855300007],[53.078472567000176,71.2655830490001],[53.002933515000166,71.33441222100004]]],[[[55.73777753300004,73.31877113799999],[55.31450248600015,73.35239497500004],[54.95882061500009,73.433913007],[54.55120447300004,73.41169492800014],[54.39694258500003,73.31461304300012],[54.173168568999984,73.28847223400004],[53.89324954799997,73.32248650000014],[53.36404451200019,73.22031512400008],[53.13683659700001,73.12193555300018],[53.12119261300006,72.933142068],[52.58592662300009,72.87298012000008],[52.40117254500012,72.7635453210001],[52.659431555000026,72.68258451900005],[52.80694953100004,72.55850016500005],[52.67719649600008,72.48687076700003],[52.700084624000056,72.39271902800004],[52.53105147600019,72.32624014200019],[52.35907359800018,72.16064893900005],[52.06276359800012,72.14472567000018],[51.79676859400013,72.17768649900006],[51.639591481000195,72.1488527520001],[51.451702572000045,72.04134025899998],[51.39161656300013,71.90010535800019],[51.41282646600007,71.72419854700013],[51.503536596000174,71.59260669000008],[51.83489954800007,71.47609873900018],[52.19187156100014,71.52989664300003],[52.61009248800002,71.52988088500018],[52.61457848300006,71.49023666300002],[53.0043755370001,71.46431763900006],[53.440578496000114,71.31260602900005],[53.44648354700013,71.25388627100006],[53.73011759500014,71.19123070700005],[54.10834460600006,71.16326683400007],[53.49068048400011,71.07327268600005],[53.659439544000065,70.99985811100004],[53.63814163100011,70.93379144700003],[53.43366258800006,70.8914839580001],[53.54861854600006,70.81600927900018],[53.839542503000075,70.8199620170002],[54.042850594000015,70.76145616500014],[54.46430559400005,70.72864051100015],[54.62628151500019,70.66648769300014],[54.804790572000115,70.69555730700017],[55.19405755500014,70.59338660100002],[55.35963853200013,70.6376933410001],[55.437480596000114,70.73189051000003],[55.631862631000104,70.66889095200014],[55.818160487000114,70.67151599700014],[56.30324150900003,70.60783750500002],[56.237968611000156,70.72091189300016],[56.431320510000035,70.7276646900001],[56.775344494000194,70.61864110700009],[57.13179062700004,70.67221789700017],[57.29943455800003,70.62514965500003],[57.61674860199997,70.74750180500018],[57.44815047500009,70.83072739800019],[56.895194478000064,70.92934300300004],[56.278629559000194,71.19974504400011],[55.89217755400006,71.48283611300019],[55.52097357200006,71.87159951100017],[55.38797355500003,71.97538826000016],[55.371105478000175,72.09528367300004],[55.49534959100009,72.19198451700004],[55.476436497,72.41759266100007],[55.40342760600004,72.49967429200007],[55.813133524000136,72.77341819800017],[56.14590061300015,72.8291467900001],[56.20331547600006,72.97791400400007],[56.36035160600011,73.05862972000011],[56.04098852200008,73.12534581400018],[56.40222960600016,73.15416363500009],[56.42251951100002,73.23533113600013],[55.73777753300004,73.31877113799999]]],[[[55.082527616,73.68787344100008],[54.36684048899997,73.5887081510001],[54.27841157800009,73.51738335100009],[54.5813716130001,73.44420564800015],[54.880573536999975,73.46125879800019],[55.082527616,73.68787344100008]]],[[[55.06663552700002,73.74888196199998],[55.096725554000045,73.8413707310001],[54.77509348900014,73.99694438700016],[54.24040551400009,73.93157140900018],[54.05677461200014,73.80507574900014],[53.79993046700014,73.7998110760002],[53.70052361000012,73.7338429830001],[54.072830482000086,73.64367331900013],[54.337593514000105,73.62790243300014],[54.54984660400004,73.70546035100006],[55.06663552700002,73.74888196199998]]]]},"properties":{"objectid":527,"eco_name":"Northwest Russian-Novaya Zemlya tundra","biome_num":11,"biome_name":"Tundra","realm":"Palearctic","eco_biome_":"PA11","nnh":2,"eco_id":776,"shape_leng":165.358116615,"shape_area":62.3079373592,"nnh_name":"Nature Could Reach Half Protected","color":"#5DB3C8","color_bio":"#9ED7C2","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":284899.1154573242,"percentage":3.3340424931965145}}, + {"type":"Feature","geometry":null,"properties":{"objectid":530,"eco_name":"Northwest Hawai'i scrub","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Oceania","eco_biome_":"NO07","nnh":4,"eco_id":641,"shape_leng":0.431909700448,"shape_area":0.00133356825695,"nnh_name":"Nature Imperiled","color":"#4AFB48","color_bio":"#FEAA01","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":14.798105015571439,"percentage":0.00006902418087122884}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[76.56857250700006,33.48662208300004],[76.4505846470002,33.51992807800019],[76.22887459100008,33.535662587000104],[76.26412954600005,33.45682307600009],[76.36381552000012,33.37532030000011],[76.32765951100004,33.23851439600003],[76.37641150900004,33.1352003990001],[76.36071756900003,33.04664106500013],[76.39270760500017,32.936643338000124],[76.34619156300005,32.81756717200011],[76.37162762200012,32.75777000400018],[76.49063857700014,32.63127501500014],[76.5120085750001,32.53371703800019],[76.6902465610001,32.50521890200014],[76.88906848900007,32.37775798300015],[77.00755356400009,32.263004364000096],[77.15847056900003,32.194166643000074],[77.2179566010002,32.09332094800004],[77.2373806550001,31.97699488400019],[77.36477653100013,31.826389854000013],[77.41264356900012,31.692365233000146],[77.57106757400015,31.770109732000094],[77.62322949800006,31.838690464000138],[77.7027965580001,31.751044088000185],[77.61701951400016,31.731546775000027],[77.61977364000012,31.644738757000027],[77.83680760000004,31.717217409000114],[77.96080763200013,31.69172435300004],[78.04308355500007,31.613904752000053],[78.18704961500015,31.571750149000138],[78.23648054800009,31.639434018000088],[78.36296061800005,31.65258455300011],[78.42902359300018,31.717741278],[78.53648361500012,31.755326067],[78.74507850800018,31.908434101000125],[78.76956154400011,31.976250906000075],[78.70640558000008,32.19715646800006],[78.65856955600003,32.300814123000066],[78.65856955600003,32.42815618700013],[78.61824757200014,32.57387272400018],[78.4205325580001,32.56415692500019],[78.39409653799999,32.52216610500005],[78.2447665630001,32.533697927000105],[78.32832357600017,32.62373314600006],[78.24681057300012,32.77989135500002],[78.0413436400001,32.663263878],[77.96742263000016,32.809969312000135],[77.76175654200006,33.020022991000076],[77.70446757500008,33.03219150200016],[77.55850963900019,32.956135789000086],[77.40321359200016,32.91518600100011],[77.301315634,32.915182984000126],[77.06292760100007,32.999892509000176],[77.00984953500006,33.040102175000186],[76.84040852400011,33.007049313000095],[76.723129605,33.01246201100008],[76.6464465900001,33.05125295600004],[76.65366357700015,33.21273099100006],[76.56796264000013,33.29302073900004],[76.60494963200017,33.337224382000045],[76.60361456200019,33.45860791900009],[76.56857250700006,33.48662208300004]],[[77.65058149300017,32.38191574200016],[77.7030335990001,32.41688772400005],[77.83151258400017,32.362152388000084],[77.94783060200007,32.22455657400019],[77.86192363800018,32.17134339100011],[77.81098949400007,32.07860048200013],[77.85964158100006,32.01930237300013],[77.74180560100018,31.93492225600005],[77.71900162700001,32.01246257200006],[77.59660354500016,32.08239932800018],[77.52970154100012,32.07327864400014],[77.41567262100011,32.246602153000026],[77.52590152100015,32.23291836100009],[77.58064255700009,32.183505197000045],[77.64525563100005,32.310457838000104],[77.65058149300017,32.38191574200016]]],[[[74.55986064100011,35.461488327000154],[74.48034655500004,35.377727130000096],[74.35118863500003,35.35376796300005],[74.26687658000003,35.37393934800002],[74.05589250899999,35.25704029800005],[74.03624750800003,35.350448897000035],[73.90637964100017,35.41463751200018],[73.8391795760001,35.318958590000136],[73.72685955900016,35.36243770100009],[73.74771155500008,35.46162528700012],[73.55914253800017,35.48055363700007],[73.43855260000015,35.51200488400008],[73.25621753900015,35.39389699500015],[73.25797254200018,35.32357852700005],[73.3529586160002,35.26275122300012],[73.282020558,35.22476108500007],[73.22802752200016,35.14090517300008],[73.07095350700007,35.066546963000064],[72.98603862500005,34.959436802000084],[73.19022363000005,34.90250037700014],[73.21642261000011,34.82609011000005],[73.17063160200013,34.75857186800005],[73.22190051900009,34.70958433800007],[73.49593360000017,34.75142327800006],[73.57956655400005,34.79704195400018],[73.69747160100007,34.78011235300016],[73.72324360599998,34.737484508000136],[73.60540058500015,34.61271669400014],[73.69362648600014,34.57849975400018],[73.77837356200013,34.466911644000106],[73.83058963400009,34.49650093600019],[73.77281954600016,34.579197631000056],[74.00483649300014,34.70607517000013],[74.13987750300004,34.68851675900015],[74.31508660500003,34.800012835000075],[74.41407051100009,34.67897597400008],[74.53946663200003,34.709405133000075],[74.6099316160001,34.56995876200011],[74.71366152400014,34.588097368000035],[74.87671653000012,34.51195046000004],[75.03182264300011,34.476409347000185],[75.10556763300019,34.36191456100016],[75.19049860800004,34.40258238100006],[75.34980757400001,34.34936467200015],[75.14705654500017,34.23934783400006],[75.23338361000009,34.02171389800009],[75.28883358700017,34.05200207200005],[75.27240757200008,34.16621070000019],[75.3455965060001,34.19475510400014],[75.44994349000001,34.16640884800006],[75.36560058900017,34.05844088300012],[75.33969162300014,33.95375677900006],[75.45433057800011,33.99381372700003],[75.56743665000016,33.95556475600017],[75.52718356600013,33.87629793600007],[75.62375650100012,33.811689723000086],[75.86099252499997,33.74797150100005],[75.81783259600019,33.669691901000135],[75.97090961800006,33.686022196000124],[76.08784454300013,33.77015672200008],[76.12622863100006,33.84764255600004],[76.10952752100008,33.92824126000016],[75.89310460200016,33.87560005800009],[75.88696251000016,33.98073795800008],[75.97818762400004,34.01348605400017],[75.90454858200007,34.00663116599998],[75.7215575530002,34.153470207000055],[75.69029255200013,34.2253792250001],[75.54859161700011,34.25789816000014],[75.35994749800005,34.497648754000124],[75.36583762900005,34.549302400000045],[74.92999257700006,34.52931793100004],[74.75390656100012,34.63644703600016],[74.71420249200014,34.687730704000046],[74.92852758800007,34.67403618300017],[75.02897665100016,34.63617630000016],[75.11524152300018,34.653349814000194],[75.07877353800018,34.718244017000075],[74.85919164700005,34.911068024000144],[74.63279761600006,34.97318832000013],[74.39498156500002,35.0221751790001],[74.36685960900007,35.07600392900008],[74.54247255000018,35.32982757100018],[74.55986064100011,35.461488327000154]]],[[[73.6085355840001,35.82475665800018],[73.34765655900003,35.784497372000146],[73.45245365100004,35.71645995500006],[73.50804863500008,35.64643183600009],[73.60133351800016,35.72127016100018],[73.6085355840001,35.82475665800018]]],[[[74.54116849400015,35.55479299100017],[74.4544825160001,35.62574110800006],[74.23988349900009,35.68029003100014],[73.96704064800008,35.80755699300005],[73.65119963900008,35.82528354500016],[73.64631651000008,35.69882862100013],[73.69130654300011,35.61871053500016],[73.77002753400006,35.62075152800003],[73.96634662600002,35.71681903500013],[73.99458358200013,35.57793257600008],[74.08482348700011,35.6346710200001],[74.30713653700002,35.543654280000055],[74.40622756400018,35.46762622700015],[74.54116849400015,35.55479299100017]]],[[[73.338668644,35.781148633999976],[73.10648355600006,35.774888861000136],[73.04016862000014,35.79057827500014],[72.87993663900005,35.771046932000104],[72.67106648400011,35.79337816600008],[72.4420925030002,35.780446733000076],[72.2846525330001,35.749338305000094],[72.21708651500006,35.76241809700019],[72.22530363000004,35.88668702100017],[72.19081159500013,35.94082372200012],[72.09599248900008,35.955399684000156],[72.01139058700016,36.05116125100017],[71.85975659400003,35.9618272620001],[71.8192515500001,36.055594272],[71.59197959800002,36.04276141100007],[71.4008336490001,36.08867462600011],[71.2555466,36.20614180300015],[71.20923658499999,36.14352127500018],[71.18873562400006,36.0340336700001],[71.24901558900012,35.91827237900014],[71.26323649400018,35.584078355000145],[71.21171561700015,35.49891335700016],[71.2707595870001,35.52299875600005],[71.40605155100013,35.44476073100009],[71.47831763800019,35.44104570400009],[71.57648464400017,35.35669291200003],[71.5502625310001,35.29269523700003],[71.60415649200019,35.24721033700018],[71.67751356700006,35.19073106100012],[71.74359850400003,35.20175158800009],[71.82013651100004,35.27839084900006],[71.92307248500009,35.29466029100013],[71.92192852300013,35.41666626800014],[72.01969152100008,35.464234071000135],[72.07737762300013,35.382178089000035],[72.08934061100018,35.21204339100012],[72.16539749700007,35.146314183000186],[72.25154854200014,35.12075273100015],[72.4075015620001,35.224780196000154],[72.52021754000003,35.2564604370001],[72.57805652800016,35.34149920400017],[72.53662159600003,35.53923332900007],[72.62481665100012,35.51773475300013],[72.62563355200012,35.37121942100015],[72.67439259100007,35.35077679700015],[72.59430652400016,35.21062031200006],[72.66230756300007,35.12154549100018],[72.80626658300014,35.10262518900004],[72.87239862500019,35.125833673000045],[72.88308756400005,35.21841028500006],[73.08860059800014,35.193710828],[73.15541056900008,35.247500518000095],[73.12978357000003,35.312589014000025],[73.0203935310002,35.35918770200004],[73.01364157300003,35.41961518900018],[72.81862653700011,35.464425178000056],[72.88617663000002,35.64184978500015],[73.00060251700012,35.66741241],[72.89438653700012,35.516804027000035],[73.12304653200005,35.46427614800018],[73.23676263900018,35.48157572600013],[73.24675755600003,35.54929194800019],[73.31878660200005,35.64990261400004],[73.338668644,35.781148633999976]]]]},"properties":{"objectid":531,"eco_name":"Northwestern Himalayan alpine shrub and meadows","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Palearctic","eco_biome_":"PA10","nnh":3,"eco_id":760,"shape_leng":48.2394257672,"shape_area":4.82159558126,"nnh_name":"Nature Could Recover","color":"#F9D6AE","color_bio":"#D6C39D","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":49514.700675563894,"percentage":1.0139589180882924}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[70.25509655000013,22.967576328000177],[70.21690357000017,23.067674189000172],[70.31237059800003,23.214286584000092],[70.5831905600001,23.178338613000165],[70.78999356900005,23.27486444300007],[70.92571250800012,23.40238722100014],[71.03491948600015,23.431075625000062],[71.05902064300005,23.469333649000077],[70.99372058800003,23.633006234000106],[70.9356236050001,23.711112496000112],[70.76024653000013,23.709931486000073],[70.72000149300015,23.736440093000056],[70.74726849400014,23.82471578300016],[70.8331065590001,23.786837627000125],[70.84726761700011,23.87997280900015],[70.60234857300009,23.920383808000054],[70.56276654400006,23.847032600000034],[70.62454955300007,23.804817647000107],[70.61844652100012,23.720480949000148],[70.54415151100005,23.732298427000046],[70.52471957699998,23.664265704000172],[70.33464852300006,23.56717979600012],[70.28437051500009,23.51285148400018],[70.26859258800016,23.421027232000085],[70.18444062700007,23.45268534500019],[70.07330363200015,23.451334685000177],[70.0132065590002,23.553819376999968],[69.94206264100018,23.561299052000038],[69.85140263500017,23.474534452000114],[69.64010659100018,23.45184447300005],[69.42899360700005,23.522301913000092],[69.324226523,23.524710703999972],[69.18193064100012,23.57339950300019],[69.21761357600013,23.63096540800018],[69.45117949900003,23.599226997000017],[69.66953260300005,23.525210767999965],[69.84795348200015,23.55963993800009],[69.94450361899999,23.746350520000135],[69.93283064600007,23.884912600000064],[69.8234635730002,23.94434046100008],[69.7255406480001,23.943470755000078],[69.66562663600007,23.873644137000042],[69.69837154700019,23.792288379000126],[69.57362351400008,23.820115794000117],[69.51061255700006,23.778117933000033],[69.40614353299998,23.762268760000097],[69.34806851100006,23.803195749000054],[69.22207660400011,23.81747599800002],[69.04718048300015,23.706881647000046],[68.85624659600012,23.820616864000044],[68.68229662300013,23.79432702500003],[68.5512775860002,23.716092185000093],[68.45641355300006,23.615797349000104],[68.4470905300002,23.476863280000032],[68.49594864300019,23.472404611000172],[68.5113374820001,23.319622297000024],[68.58930963400019,23.208806999000103],[68.71558350800012,23.139941450000094],[68.74433863300015,23.086743186999968],[69.19609052499999,22.833036389000142],[69.36078654000016,22.82054819100017],[69.45098855900005,22.774468511000066],[69.544479637,22.78875982300002],[69.6905664860002,22.741201407],[69.73876159100018,22.801530994000075],[69.8423305660001,22.857148274000053],[70.19821159100013,22.944530788000122],[70.25509655000013,22.967576328000177]]],[[[74.8834225560002,32.02642430800012],[74.80323054100006,31.949255646000097],[74.73416164700018,31.93591417100015],[74.51088752800007,32.03073495400008],[74.40618850400017,32.11995008700006],[74.30034652500007,32.24571719100015],[74.19773861900018,32.33312317500008],[74.05024763300014,32.41144066100014],[73.86150360200014,32.56729695400003],[73.74114249000019,32.61421633300017],[73.36640955900015,32.69406284600018],[73.14376056200007,32.651534243000185],[73.01509851500015,32.606575726000074],[72.58827255900019,32.5620669810001],[72.15239750100017,32.39581226700005],[71.93894948600007,32.41879963700006],[71.89830060800011,32.449861461000125],[71.89054164800007,32.55184743000012],[72.02362850100019,32.80631044300014],[72.04772949000011,32.93055573000004],[72.03791059399998,33.09962156700004],[72.0110476000001,33.189195948000076],[72.00116751500019,33.36400255100011],[71.90714251100007,33.46193067300004],[71.78585855100016,33.47409935200011],[71.57270055000004,33.4668976210001],[71.31305651500003,33.40989213000012],[71.08155052800004,33.38989173500005],[70.91072851500019,33.35092208800006],[70.88667262000007,33.2584266130001],[71.08889056100008,33.25175512100003],[71.03856662000015,33.199018366000075],[70.85399660900015,33.197896532000186],[70.79077962400015,33.104981458000054],[70.64894860200013,33.07605936600015],[70.61148048900003,33.174856188000035],[70.73806751200004,33.25336478200006],[70.75917850800005,33.315461944000106],[70.62304651000017,33.37004154500005],[70.52134653200005,33.30987339400008],[70.46781953000004,33.20699827300018],[70.25393649500012,33.01303399200009],[70.22902648500019,32.84744714800007],[70.37362655200008,32.784300236000036],[70.41573354600007,32.73938061100017],[70.39256261300017,32.65687401800017],[70.44341260200014,32.59761496800013],[70.57613350100019,32.55242745700008],[70.57196853300019,32.452500587000145],[70.40335062499997,32.456239251000056],[70.33582249200015,32.40400188900014],[70.33524363800018,32.236226363000014],[70.16542862699998,32.148880058000145],[70.14821655600008,32.05500324500014],[70.19023855700004,31.97981556200017],[70.21427953200009,31.85001978000014],[70.23043062100004,31.576108069000156],[70.35439259900016,31.36122641300011],[70.37171950200019,31.183654621000187],[70.47193152400007,30.94644357600015],[70.53810162100001,30.514843119999966],[70.5217976460001,30.311512398000048],[70.35545358000013,30.03023500600017],[70.30886863900008,29.928894611000032],[70.14865157700007,29.808452362000082],[70.05496251900007,29.58696945500003],[70.0502475310002,29.43704620900013],[70.02192658800004,29.328268719000107],[69.89758256300013,29.078809199000148],[69.82289159200002,28.999462414999982],[69.44249752400015,28.830718275000038],[69.25659948400016,28.772901584000067],[69.13741250900011,28.780160144000092],[68.91091152400014,28.753792353],[68.70803862200006,28.758421008000084],[68.58457151100009,28.79954044500016],[68.49691055000011,28.95289423700001],[68.6112675380001,28.989222914000038],[68.73544358900011,28.95728518100009],[69.05061354300011,28.950394251000148],[69.10839855100005,29.023801450000065],[69.01415259900011,29.081109360000085],[68.82685059100015,29.078719345000138],[68.54666854500016,29.16202691300009],[68.46237157700006,29.107189149000135],[68.43409757400002,29.190914807000183],[68.26094052999997,29.31374103700017],[68.312728622,29.450204958000086],[68.20060759100005,29.52828272200003],[68.14727052300009,29.527644021000185],[68.04189256600006,29.619346233000158],[67.91847256200015,29.667016463000152],[67.75644651800002,29.597160173000134],[67.73078163300005,29.498933991000058],[67.79222148600013,29.43546554900007],[67.69936357800015,29.299751808000053],[67.58203855800008,29.214583960000027],[67.59290351700008,29.162587997000117],[67.44290952700004,29.015552819000106],[67.439437575,28.87348760700013],[67.35652948800004,28.786972787000025],[67.30966157400013,28.64431665100011],[67.31513260999998,28.510112155000172],[67.3850175660001,28.413336880000145],[67.36959050500008,28.22623369000013],[67.48947954900018,28.018991134000146],[67.51776863900011,27.9394855970001],[67.49545249300019,27.742782781000187],[67.37230657700007,27.59244127800008],[67.40167257500013,27.497254206000093],[67.3935625810002,27.358718278000083],[67.35366857700018,27.270805022000104],[67.38345350200018,27.206894853999984],[67.33120759100018,26.94192059800008],[67.3014525050001,26.86481278900004],[67.29469250000005,26.733038541999974],[67.33370958900008,26.50190890300007],[67.41219354000015,26.49340747399998],[67.67323249200007,26.164664202000097],[67.72222857100007,26.06648780800009],[67.81249948900006,26.096159578000027],[67.80925753700006,26.251330398000107],[67.87426757800012,26.273788199000137],[67.90994263400012,26.157943592000038],[67.91638161200018,26.02881048300003],[67.96196759900016,25.88925598500009],[67.9133076330001,25.720484688000113],[67.91237657100015,25.64409621400017],[67.96018258800012,25.481285959000104],[67.949096516,25.356672875000072],[67.91349756700004,25.24299817400015],[67.81519360100009,25.325283485000114],[67.74453751000004,25.34677233800005],[67.73739663100008,25.58457095500006],[67.6184616160001,25.745133519000035],[67.60025763099998,25.823819976000152],[67.54447958600014,25.870535843000027],[67.42505657600003,26.09229769900014],[67.37019349900004,26.035760086000153],[67.39124263700012,25.88243713999998],[67.35878757300009,25.832328614],[67.26097864200017,25.89694654900012],[67.23013256800004,25.761461801000166],[67.18093163400016,25.745582454000157],[67.1995315800001,25.641497489000187],[67.14116654400016,25.446117505000075],[67.07858256100013,25.427546560000167],[67.05120056000015,25.569661728000085],[66.95157661100018,25.698535669000137],[66.85353064000014,25.658677540000156],[66.73226947900008,26.061038900000085],[66.58912652200019,26.39132410700006],[66.48705254300012,26.497161225000184],[66.41668663300004,26.774845966000044],[66.35044864300005,26.785513447000085],[66.34500158000014,26.623933488000034],[66.37150549300009,26.485536867000064],[66.24912249800008,26.355445706000012],[66.21652963500014,26.287362691000112],[66.27339162800013,26.133530796],[66.30118551600015,25.88664317900009],[66.21984853300012,25.716766979000113],[66.33780655400005,25.70667433000017],[66.37081163900001,25.645487274000175],[66.53740649100018,25.645327180000038],[66.56297263700003,25.449018481000167],[66.5590596290001,25.350722059000134],[66.66368858000016,25.28517507300012],[66.73705252800016,25.19665932500004],[66.70426956400019,25.08434467300009],[66.6902085860001,24.891673887000024],[66.81519349100006,24.835623597999984],[66.95350662800007,24.94865121500004],[67.09002654099999,24.980338665000147],[67.30194854600018,24.843065387000138],[67.30864753100013,24.75451979999997],[67.4930266020001,24.768048862000114],[67.5203324960001,24.56330009000004],[67.4619905940001,24.44127600799999],[67.51381657200005,24.42433467300009],[67.54437263199998,24.301614725000036],[67.44153556500004,24.060175681000032],[67.67512562799999,24.08040791900015],[67.79825561800004,23.979130723000083],[67.9026875940001,23.96313067600005],[67.95162952700008,23.988846523000177],[67.91858655600015,24.128800334000175],[68.05721250600004,24.081233704],[68.19553352200006,24.13887990800015],[68.22994961600011,24.073953015000086],[68.40165759700011,24.1424398690001],[68.46877250100016,24.124240746000055],[68.5238494840001,24.165948426],[68.61981154700015,24.158276973000056],[68.68578349500012,24.19261712700012],[68.73454253500017,24.313993120000077],[68.82937656100006,24.30237177900017],[68.844512602,24.215777164000144],[68.93930857400017,24.286763669000152],[68.97487650900007,24.230295291000118],[69.1028515750001,24.26452463600009],[69.19496148200011,24.23216831100018],[69.24397248200006,24.253401348000068],[69.17680359800016,24.307140747],[69.194099488,24.454554284000153],[69.23636657500003,24.522669820000033],[69.31952662200007,24.572389425999972],[69.31086761300014,24.648204913000086],[69.368698554,24.743480163000072],[69.46909363800012,24.841845317000093],[69.64756061700018,25.050577505000035],[69.69052860000005,25.14425181100006],[69.73005648200018,25.318283590000135],[69.81971753300007,25.48924256400005],[69.74694048500015,25.532543644000043],[69.57821662900005,25.484365973000024],[69.50499752000007,25.660037588000023],[69.48570254700007,25.782152027000166],[69.32585948500014,25.886067174000175],[69.32261652700004,26.01482008000005],[69.11184653100003,26.235491116000162],[69.0558926330001,26.26713263300013],[68.9317935270002,26.268299729000034],[68.91251364100009,26.140514430000167],[68.78523259700012,26.168612246000123],[68.75592057900013,26.25082731700013],[68.52271256300008,26.371834841000123],[68.39775062400003,26.507948735000127],[68.36019148400015,26.588454065000178],[68.41240654900008,26.694019274000084],[68.35431660800003,26.7567566460001],[68.47132864700006,26.950197057000025],[68.62796764200004,27.097741687000052],[68.73428353400016,27.12007158000017],[68.83010059000003,27.090169811000123],[68.95770249300017,27.140691732999983],[69.01625058900015,27.108552163000127],[69.03775754700013,27.313932093000176],[69.31741354400003,27.716255064000052],[69.40321355500004,27.76900372199998],[69.59596262700006,27.788501872000154],[69.76162759100015,27.93395588800007],[69.83213750200014,27.965975597000067],[69.87640350600009,28.079018637000047],[70.00845351700019,28.04746110700006],[70.10031850600018,28.151327639000158],[70.158920582,28.12374899800011],[70.25295262700007,28.14487709400015],[70.36354060800011,28.21851697500017],[70.3827135410001,28.30143176700011],[70.45255256400003,28.33747898000007],[70.54826350500008,28.472754683000062],[70.68348657000018,28.495462600000167],[70.78948964900007,28.655936316000123],[70.77529154400014,28.707665231000135],[70.92323263800012,28.74472162500018],[70.89552357500014,28.864740923000113],[71.03845949900006,29.058851217000097],[71.15030660900004,29.069861685000035],[71.32187662400014,29.002462466000168],[71.44096351900009,29.023391575000176],[71.43055755400019,29.1754966310001],[71.5007176040001,29.22269361900004],[71.55711356300009,29.30973046400004],[71.78746754100007,29.42194688100011],[72.01606752200013,29.48108372200005],[72.31128653399998,29.6054897730001],[72.49471258300014,29.72731520400015],[72.66207857000006,29.7243744970001],[72.79399849400016,29.77597332500011],[72.85665154400016,29.84819968200003],[73.05123155900003,29.83182027000015],[73.15055057400019,29.777743416000078],[73.2567216270001,29.782742047000056],[73.33730356800004,29.744026707000046],[73.39813958900004,29.94048711800008],[73.56462061400009,30.004754690000084],[73.80752548600009,30.066875657000026],[74.061561526,29.932255419000114],[74.24504859500007,29.857042255000067],[74.30935656800011,29.786290107000184],[74.35362961300018,29.614579444000185],[74.52474264600016,29.416765020000128],[74.61406758200019,29.398366743000054],[74.70947258400008,29.470615228000042],[74.79968264900015,29.47216504200003],[74.87718960500007,29.43505751800018],[75.0245436300001,29.221894824000117],[75.15136752500018,29.134507280000093],[75.23444358500012,29.12157752400003],[75.49405660800011,29.01683173000015],[75.62991351200014,28.930997018000028],[75.83025357100018,28.674406510000154],[76.01587651700015,28.64927655800011],[76.08222950600015,28.621929593],[76.09573359100006,28.48811385],[76.00464661000012,28.379597373000024],[75.80726653700003,28.27133268800003],[75.70253750600006,28.178626827000073],[75.47161858800001,28.015802491000045],[75.37357362300008,27.97947498700006],[75.10346260200015,27.949138365000124],[74.91842655700003,27.80897098300011],[74.85320261000004,27.67623684000006],[74.88552859300012,27.407489052000017],[74.8190076300001,27.178818999000043],[74.75997153900016,27.110431218000087],[74.57726264500008,26.993406271000083],[74.43611961000005,26.812115261000088],[74.38339961800017,26.715129432000026],[74.2575076240002,26.585065261000068],[74.16826650600018,26.534606539000094],[74.07362358700016,26.520840269000075],[73.96015960800008,26.552536771],[73.94953152300008,26.593885035000085],[74.065887594,26.833953136000105],[74.17218052000015,26.955117737000023],[74.21688053900004,27.10230932200011],[74.19444251900012,27.23564645800019],[74.10735353900014,27.379910244000087],[73.92945854100014,27.519003401000134],[73.67421751900014,27.519774536000057],[73.61258655800009,27.503354052000134],[73.57615662800015,27.360040104000177],[73.58315249900016,27.181297024000173],[73.5633924980001,27.06328301299999],[73.43636358200018,26.79802494600017],[73.32879660700007,26.659440906000043],[73.12481662200008,26.517538302000162],[72.80732756400005,26.36366416200002],[72.60162359000003,26.24411877700004],[72.42539256700007,26.065778699000134],[72.24308751400014,25.932651948000057],[72.067413552,25.732454213999972],[72.122962604,25.693404939000118],[72.25285360400011,25.679115805000038],[72.2623295140001,25.644787218000147],[72.14644651700019,25.523924030000046],[72.0298916270001,25.286093227000038],[71.94072762300016,25.189156852000053],[71.91148349800017,25.067015758000082],[71.95948749600012,24.99911781600008],[72.04174062100009,24.958038779000162],[71.7030865860001,24.552010504000123],[71.60521663500009,24.556100370000138],[71.30792964000011,24.712761661000172],[71.13120257500015,24.75412065400019],[71.08521258100006,24.69305278900015],[71.14369949000002,24.708132838999973],[71.25254051500008,24.651935531000163],[71.3412785500002,24.655494487000112],[71.2866285410002,24.52490091500016],[71.36379955100006,24.47292439800009],[71.34472653000017,24.37655816000006],[71.36596660800006,24.294752294000034],[71.29493752200017,24.269843457000093],[71.34517663800011,24.093062245000056],[71.29680651899997,23.922271580000086],[71.12242152600004,23.904541676000065],[71.078773603,23.85096522100008],[71.07852164300016,23.69115233500014],[71.17590360000008,23.75625893500012],[71.29374662100014,23.725330718],[71.26364854800016,23.636226226000076],[71.43035152700008,23.63725602700009],[71.45809160300007,23.546369708999976],[71.51943255000015,23.506572768000126],[71.53607951200013,23.410557564000158],[71.65936255600008,23.301600367000106],[71.68441053200007,23.10491330900004],[71.58766962300001,23.143130429000053],[71.43279250400019,23.124502320000033],[71.33461761900014,23.15065100800018],[71.236007546,23.129131142000062],[71.06340052200017,23.162169419000065],[70.94609059100003,23.117844574000173],[70.84636656200007,23.140491470000143],[70.69326758000017,23.111571893000132],[70.60463750400004,23.07104606100006],[70.60028863700018,22.976210191],[70.38059258400017,22.691543828000135],[70.19077248400004,22.589048239000192],[70.1396334870002,22.55130218200003],[69.97399853100006,22.547931484000173],[69.93895748200003,22.45640613000012],[69.83661662300011,22.387289962000068],[69.71508757600009,22.374511583000128],[69.6194765480002,22.302625364000107],[69.53093749900006,22.331092822000073],[69.46057158900015,22.271524145000114],[69.33766154000006,22.278136796000013],[69.25438649400019,22.220029923000027],[69.15775253800001,22.197761050000054],[69.18972061400007,22.418488244000173],[69.04653960200011,22.407664860000125],[68.93640156200013,22.327213174000065],[68.99414063800015,22.18930035700015],[69.25892663600013,21.90940648100019],[69.62455749000014,21.606482824000125],[69.72290051600015,21.514077035000128],[70.02208752100012,21.17714447600008],[70.25444058300013,20.97243677500012],[70.44180260600018,20.848953739000024],[70.826927588,20.69027542700013],[70.91358154700015,20.740750913000113],[70.98790757000006,20.724140663000128],[71.140167524,20.7567088830001],[71.32478363500007,20.846274883000035],[71.47551758000014,20.88979154500015],[71.5008086310001,20.936818883000058],[71.75633949900009,21.02150410100012],[71.80843353100005,21.07024134800008],[71.99933657200012,21.139386684000044],[72.10504963800008,21.204803918000152],[72.0822905920001,21.253352404],[72.20987656900019,21.42648279400015],[72.26711256300013,21.58127425000015],[72.2040325390002,21.749045251000155],[72.13820660300019,21.783112323000125],[72.14858256100018,21.946584580000092],[72.24320251300014,22.02249042500017],[72.28463761400002,22.18239098600003],[72.27377349400018,22.253308090000075],[72.3237225960001,22.429706583000154],[72.37976064800006,22.509065605000046],[72.38421663500009,22.621688544],[72.5160906270001,23.03948668700008],[72.55605352900011,23.22037654000019],[72.54392256800014,23.376008365000132],[72.63601655000019,23.669164591000026],[72.64082357200016,23.749289383000075],[72.59181961300004,23.92643151900012],[72.58998162900019,24.022135587000093],[72.4707866080002,24.26005406400003],[72.59169757300003,24.406376613000134],[72.54303760700003,24.551959710000176],[72.55090352000008,24.62113522200019],[72.61296061700006,24.718352391],[72.69097149300012,24.77386875300016],[72.76278663300008,24.900363742000025],[72.83493051200008,24.921001664000187],[72.91867058700018,25.03736494300017],[73.36971253200016,25.186860042000035],[73.46101358600015,25.240625256999977],[73.55103254300013,25.34018265400016],[73.72630350300017,25.64373830700015],[73.7617185530001,25.67656569500008],[73.9019166130002,25.96097456700005],[74.17302658900007,26.11592662000004],[74.30409256500008,26.267149564000192],[74.39752161700005,26.32229812900016],[74.56979353200018,26.535396618000163],[74.64571362500016,26.608965252000075],[74.74552952000005,26.778194537000104],[74.84008761300015,27.001195909000103],[74.97471656900007,27.109350959000153],[75.10964157300009,27.119091736000087],[75.28494254000015,27.164438670000095],[75.52017260600019,27.289555339000117],[75.67331651600006,27.51433468099998],[75.685836564,27.69876488200009],[75.78874152500009,27.809260997000138],[75.93430350000011,27.880009121000057],[76.01846350700015,27.875489264000123],[76.21190660100018,27.809492002000184],[76.34932756800009,27.815121959000123],[76.48876958000011,27.876709333000065],[76.56918354800007,27.887647885000092],[76.72247363700012,27.76159194000013],[76.87600764000001,27.790550745000132],[76.93893461100004,27.91081881800011],[76.9711155870001,28.127261686000168],[77.05593860300019,28.255958434000036],[77.04984261200002,28.343702878000045],[77.13754263300007,28.40690729],[77.16952562900008,28.643220633000055],[77.09252963400007,28.86458988100003],[77.08290050300013,29.162958142000093],[77.06365163000004,29.403573581000103],[77.08315263100019,29.56400253700008],[77.14267755499998,29.791402733000098],[77.31188957200004,30.07401234500003],[77.47161059300015,30.26719308500003],[77.59942657000005,30.380927967000105],[77.63153864700018,30.488906159000067],[77.80381056200008,30.570133003000137],[77.58270249400005,30.703258245000143],[77.46504957400003,30.74428699100008],[77.47617353300018,30.832794692000107],[77.33145159300011,30.8834518970001],[77.28098264500011,30.830274756000165],[77.37201665200013,30.770306095000137],[77.1392515350002,30.720928806000188],[76.92169152700012,30.824445143000162],[76.60572864600016,31.16208329000017],[76.44840250200008,31.259569686000134],[76.30101763100015,31.382084612000142],[76.36080155600018,31.430612981000024],[76.42091354800004,31.55313696000013],[76.39288362500014,31.593398594000178],[76.24447649800004,31.62224960700013],[76.10807057900013,31.73345382600013],[75.99896954700017,31.913738002000173],[75.88426957300004,31.9895714270001],[75.66929655500007,32.027083964000155],[75.57604955800014,32.07595263900015],[75.49928255700002,32.174349477000135],[75.49421653500008,32.28645575600018],[75.53473649900019,32.36902303400012],[75.46920761800004,32.55275519000014],[75.403297528,32.621483108000064],[75.27731350000005,32.63746153000011],[75.12293963000019,32.77424932800011],[75.08822664900015,32.88855703000013],[74.9877475780001,33.03924017999998],[75.03265362500008,33.135078358000044],[74.7855836170001,33.163958709000156],[74.60238656200005,33.06398171400002],[74.37713649300002,33.055322705000094],[74.3164365940001,32.932863435000115],[74.40741762700014,32.905566426000064],[74.46891749400004,32.776351510000154],[74.61488364400003,32.75698093200003],[74.65477764800005,32.69484085400006],[74.64243361900003,32.60031595300006],[74.70591765100005,32.47866872100013],[74.82076263300007,32.49589906400013],[74.97537253700011,32.441861773000085],[75.03090650100012,32.4893072000001],[75.10069255000013,32.47176085900003],[75.3257215050001,32.334974067000076],[75.38169049000015,32.25851468100012],[75.24182854500009,32.08551924000005],[74.99459861100019,32.02919419200015],[74.8834225560002,32.02642430800012]],[[71.91483357700014,32.24247825600014],[71.99817651700016,32.273815175000095],[72.0659715290002,32.24301620700015],[72.18846851800015,32.239918088000024],[72.25763648600008,32.27299425100006],[72.29683663600008,32.15520789200008],[72.23020151100019,31.992354219000106],[72.2550815140001,31.90145717300004],[72.21056355000007,31.807849251000107],[72.23961656800003,31.767819796000026],[72.14660661100015,31.704464678000193],[72.1057666260001,31.56267958899997],[72.10085248400009,31.441162612000085],[72.03074658100013,31.17104203600013],[71.94657852700004,31.017578274000073],[71.98258953000004,31.001327775000107],[71.97973649800008,30.868483327000092],[71.7909165260001,30.826803978000044],[71.82710254400007,30.76512607899997],[71.72118361800011,30.72892832700012],[71.58146651200008,30.583093773000144],[71.51670859900008,30.45230121400016],[71.40993455199998,30.35278203900009],[71.33428150500004,30.18983683600004],[71.2395626460002,30.056571784000027],[71.070426569,29.967376264],[71.0428085330002,29.866842040999984],[70.98844954400016,29.84814084100003],[70.95831257900016,29.98593463600008],[70.99696354600007,30.02033329600016],[70.99427060800002,30.13672909700017],[71.04711163500008,30.162588107000147],[71.06300355500014,30.325469943000144],[70.9664225730001,30.538274227000045],[70.91606862500004,30.784607466000125],[70.91763252100014,30.983069308000097],[70.9434125730001,31.22055326800006],[70.99593357800012,31.48916107800011],[71.05941056900019,31.591946680000092],[71.04763064200012,31.737493568000104],[71.11653156300002,31.963686266000025],[71.19734149100009,32.04612261900007],[71.24740559300011,32.15094318000018],[71.32357764700009,32.14667913800014],[71.24684149100017,31.999383115000114],[71.41866262700017,32.068220669000084],[71.48091854299997,32.21351794300017],[71.53500361100004,32.095311818000084],[71.68814852600008,32.22526685600013],[71.74871850500011,32.152660129000026],[71.67907763000005,32.05576231100008],[71.709876598,32.012714700000174],[71.93092364600017,31.98258544600003],[72.00346348599999,32.04000466800005],[71.97180151700013,32.132259582000074],[71.84866364800007,32.13787864300019],[71.8290865400001,32.25976576400018],[71.91483357700014,32.24247825600014]],[[68.6488265110001,24.32576080900003],[68.68430358600017,24.254263343000105],[68.59925057100014,24.201777877000097],[68.57428758700007,24.297139963000177],[68.6488265110001,24.32576080900003]],[[67.87629650100007,24.170498458000054],[67.89472948000014,24.119851814000185],[67.78646060400007,24.07292304700013],[67.78943651500003,24.148840458000052],[67.87629650100007,24.170498458000054]],[[67.86034356000005,24.083867633000068],[67.91658763900006,23.98438550600008],[67.78844460099998,23.990820293000013],[67.7491606320001,24.045134523000172],[67.86034356000005,24.083867633000068]],[[70.47041356200009,21.669618504000084],[70.6195375100001,21.69320735900004],[70.85620155200007,21.522247547000063],[70.92696359000007,21.37061573300008],[70.84400152400013,21.254231163000156],[70.90450260400007,21.217414156000075],[71.03997762900008,21.266109661000144],[71.16076655400013,21.23443227000007],[71.2329716210001,21.16509699900007],[71.2641826430002,21.045422867000127],[71.21280660600007,20.964327283999978],[71.10616264600003,20.88355188800017],[70.78045664000007,20.830325630000118],[70.68180063400013,20.85332356000015],[70.59828955299997,20.969907955000167],[70.58766163500013,21.0695915820001],[70.64172356900019,21.237001323000072],[70.6080325100001,21.35240688600004],[70.41548963200012,21.47102037200017],[70.4143066100001,21.587763016000054],[70.47041356200009,21.669618504000084]]]]},"properties":{"objectid":532,"eco_name":"Aravalli west thorn scrub forests","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Indomalayan","eco_biome_":"IN13","nnh":4,"eco_id":314,"shape_leng":121.583472918,"shape_area":44.7386078271,"nnh_name":"Nature Imperiled","color":"#E67938","color_bio":"#CC6767","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":489383.0424600518,"percentage":1.854975846191662}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[142.0554045800002,73.88820394500016],[141.3627016380002,73.85460139800011],[141.15229759500005,73.89293418800014],[140.8759006500003,73.77808183000019],[140.81860363600003,73.62802430600004],[140.56039458200019,73.49282286600004],[140.3105925770002,73.44792905700012],[139.85060161,73.465790223],[139.89999365000017,73.37811568300009],[140.24070762100007,73.36648813900007],[140.51359556700004,73.42829009100018],[140.7740935510003,73.419157337],[141.33720355300022,73.33292398100014],[141.9049076760001,73.29704088600005],[142.4456026250001,73.23813069100004],[142.7333986240002,73.26421668300014],[143.13630665200003,73.19747158800004],[143.45829763000006,73.26001315800005],[143.45230071400022,73.37776481600008],[143.58369459000005,73.42934989800005],[143.47189358000003,73.52205358000009],[143.23039267700028,73.61968515000018],[142.8798976950003,73.69175761500014],[142.59609969700023,73.79221992200007],[142.0554045800002,73.88820394500016]]],[[[136.32130454700018,73.89858057300006],[136.35769659100004,73.93798105000019],[136.16110257300022,74.08067524100011],[135.58819563400004,74.23511080100008],[135.42840554700024,74.17847428099998],[135.67149364700015,74.1128800210002],[135.77810659400018,74.00793121800012],[136.13380455800007,73.88487632900018],[136.32130454700018,73.89858057300006]]],[[[140.69470267800023,73.94130028400019],[141.0498046890001,73.97523760400009],[141.07690455500006,74.17523216100017],[140.93060262600022,74.23482849900017],[140.6654055800003,74.2650279930001],[140.1867975670002,74.24475535400006],[139.97070254800008,74.14761932200014],[140.00100664800004,74.08981587400012],[140.25610366900014,73.95385117799998],[140.482406673,73.90933002900005],[140.69470267800023,73.94130028400019]]],[[[147.00900257600006,75.28163416100006],[146.66709871000012,75.38556104300005],[146.74600259400006,75.48944853100011],[146.4033966600001,75.5369529670001],[146.24909956900012,75.35190468500008],[146.2100985730001,75.17991926300016],[147.1336976350002,74.98138248700019],[147.56370569700005,74.94272917300015],[148.02760363700008,74.80986276400017],[148.4100036630001,74.76627301200006],[149.15669260000016,74.71281021600004],[149.43530270300005,74.70674507000018],[149.85240162800005,74.79618986800006],[150.3903045650003,74.83024989900008],[150.75309764200006,74.90481698600007],[150.70030171100007,75.02118043399997],[150.88989264900022,75.09643316000012],[150.28149472100006,75.14155713600013],[150.14419562700004,75.19087625500009],[149.7203977170002,75.18836570700006],[149.37809772200012,75.24226335600008],[148.89237967600025,75.17137391300014],[148.5275876830001,75.2058994750002],[148.54289270300012,75.33083945300012],[148.296905637,75.3696746550001],[147.94659455500016,75.3604731690001],[147.46760566800003,75.39896555100017],[147.18020663700008,75.27544546700017],[147.00900257600006,75.28163416100006]]],[[[135.6979975600001,75.36887351200016],[136.00819369200008,75.42435064700015],[135.92219570100008,75.50485379800011],[136.13659657000017,75.62152201200001],[135.58670063800014,75.78102560600018],[135.46929967900007,75.67042270500019],[135.58859260100007,75.53969200500006],[135.41259761300023,75.43810015400015],[135.6979975600001,75.36887351200016]]],[[[139.37368757900003,76.05129957100007],[139.1528016320001,76.11471185400012],[139.15220668400013,76.21327431800012],[138.80360366600019,76.21542628800017],[138.66909758900022,76.1691813160001],[138.26789863200008,76.12859060900013],[138.27270464700007,76.01707911000011],[137.67050161600014,76.00033894100011],[137.47470069300016,75.92610008900004],[137.87649560400007,75.741876251],[137.37089568400006,75.7608676320001],[137.1708986120001,75.71721669200008],[137.5554046750001,75.58711932800014],[137.2908936030002,75.52905620800016],[137.1920015620003,75.35577293300003],[136.93020656300007,75.31026908900003],[137.11149556200007,75.17069464300005],[137.72309856200013,74.953976178],[138.04119866100007,74.77595561900017],[138.3990936890002,74.71728129000013],[139.15899669600003,74.64024975600006],[139.42239364500028,74.65254148200012],[139.59269765700003,74.78902501700009],[139.56869456900017,74.97916932900006],[139.83149757600006,74.97012072900009],[139.9929965660001,74.83652123900009],[140.28030356400006,74.81300564200018],[140.4396976910001,74.85733585200006],[141.5379026930002,74.93184963000016],[141.9463045550002,75.01997444500012],[141.9974056660002,74.93481732700013],[142.23359663400015,74.8397868290001],[142.64460761500015,74.82408433900014],[142.925506648,74.87426662600006],[143.53590366000003,74.90615155300009],[143.73089556200011,74.94685742800004],[142.68339571,75.12357275700009],[142.48109462100012,75.20766218900002],[142.28529369800003,75.34836433599997],[142.1266175650003,75.54723856800018],[142.17260755900008,75.63147183400014],[142.65020756400008,75.73088154099997],[143.09820570500017,75.70227762500014],[143.0229036920001,75.5786963540001],[142.80020155400018,75.5596359060001],[142.51210062200005,75.40162177600013],[142.91690061300005,75.16142543200004],[143.3813936680001,75.05913872000008],[143.6723935660001,75.06252618300016],[144.03320264600006,74.99645164000009],[144.49670362000006,75.03065584000007],[144.9313966630002,75.26236114800014],[144.76570169200033,75.33371545200015],[144.84899869900005,75.40793133699998],[145.3856046200001,75.4781646450001],[145.28340156000013,75.55938528700005],[144.73501571200018,75.63188422300004],[144.5668946830001,75.70311648600017],[144.29190070000016,75.72222169400015],[143.68420366700002,75.85724778400004],[143.31739767000033,75.80290036200017],[142.49400359000015,75.89409982700016],[141.7803956780001,76.1112244790001],[141.65220670600002,75.99768388899997],[141.13200366700028,76.04403614900002],[141.00070165600005,76.0019573190001],[141.04989655500003,75.80054303500009],[141.1855926940002,75.714096444],[141.00399758800006,75.60759866500007],[140.5279997,75.65453749000005],[140.60389666000015,75.75880702500007],[140.4559015860001,75.81110993300007],[139.9976956290003,75.85300553500014],[140.05129957600002,75.93057988100014],[139.37368757900003,76.05129957100007]]],[[[149.2931975930003,76.66195072200003],[149.48269666600004,76.78893555000019],[148.78971862900016,76.75394445700005],[148.4870906850001,76.6424026150001],[149.2931975930003,76.66195072200003]]]]},"properties":{"objectid":533,"eco_name":"Novosibirsk Islands Arctic desert","biome_num":11,"biome_name":"Tundra","realm":"Palearctic","eco_biome_":"PA11","nnh":1,"eco_id":777,"shape_leng":59.2036863126,"shape_area":11.6083709112,"nnh_name":"Half Protected","color":"#77C2FB","color_bio":"#9ED7C2","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":37031.73490353282,"percentage":0.43336525480950877}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[133.01412961200015,-31.766668328999913],[132.85408007800015,-31.710697062999884],[132.85697927500019,-31.648197429999982],[132.9732664190003,-31.566495690999943],[132.84207144900017,-31.5206963629999],[132.86927811300006,-31.41749540799998],[132.7623752610001,-31.345996747999948],[132.7211762520002,-31.251796929999955],[132.74357634000012,-31.156396936999954],[132.6395724260002,-31.142497903999924],[132.57017495200012,-31.046998886999972],[132.36036698500004,-30.99760028299994],[132.32476811800007,-31.04119872699988],[132.2153622630002,-30.929937364999944],[132.1458739220003,-30.902799589999972],[132.10006699300004,-30.80279907299996],[132.0300752400001,-30.74260126699994],[132.07788067400008,-30.680801520999978],[132.01826512900016,-30.55850241099995],[131.82806377800034,-30.477600028999973],[131.7229614260001,-30.392102869999974],[131.65287746700017,-30.375203851999913],[131.47216799700016,-30.274603162999938],[131.30686984600015,-30.207708486999934],[130.91267422900034,-30.13071039199997],[130.60757433400022,-30.13261381999996],[130.5008695570001,-30.12021440599989],[130.44667090300015,-30.075616924999906],[130.41157514800022,-29.953914845999975],[130.42688007200002,-29.851913259999947],[130.32698040700006,-29.84631907699992],[130.271270694,-29.890214828999945],[130.1113736640002,-29.93731876499993],[129.97247286200002,-29.856218250999973],[129.98147579500016,-29.796319826999934],[129.88636742600022,-29.765819825999984],[129.83187852000003,-29.707721832999937],[129.92607122500021,-29.56371892699991],[129.77098112800002,-29.526218551999875],[129.6331790800001,-29.54532061699996],[129.51947040800007,-29.511421439999936],[129.40847791400006,-29.530023891999974],[129.06193625700007,-29.337005154999872],[128.99971329400012,-29.316466826999942],[128.90348820600002,-29.342410996999945],[128.76281740700017,-29.447694741999896],[128.62716686600004,-29.39232070399993],[128.51387002200022,-29.384727537999936],[128.41255192300014,-29.449720312999943],[128.33596798300005,-29.36356356799996],[128.22167972700004,-29.316850718999945],[128.21545415300022,-29.254085518999887],[128.0903473740001,-29.18279072699994],[128.01976018200003,-29.1149006629999],[127.91516878300001,-29.06559763799993],[127.73646543400002,-29.09032827599998],[127.53632352300019,-29.059808759999953],[127.50388337800007,-29.007947913999942],[127.41577918200016,-29.052326235999942],[127.2432100450003,-28.975738438999826],[127.12715907500012,-29.012592493999932],[127.06200402600018,-28.93452260999993],[126.82373032400005,-28.940662352999937],[126.74160762200006,-28.917684538999936],[126.49240106700017,-28.893392610999967],[125.86953731500034,-28.961219808999886],[125.65819550600008,-29.063527977999968],[125.45706939300032,-29.140886071999944],[125.46217346900005,-29.195301050999888],[125.36938479500009,-29.30632405299997],[125.25002297300023,-29.344015123999895],[125.19268807400022,-29.440656456999932],[125.1021118860001,-29.461236877999966],[125.04681395700004,-29.55525014799997],[125.19113926500006,-29.65954968999995],[125.08691398700023,-29.68453983199987],[125.07366940600014,-29.743097315999933],[124.90791324800011,-29.790348115999905],[124.91494750800018,-29.89438630999996],[124.85481238300008,-30.01170730499996],[124.97776031800004,-30.008802473999936],[124.96945955100011,-30.063087533999976],[124.87448118900033,-30.166192989999956],[124.87271126600001,-30.26655571899994],[124.93494421500031,-30.365713130999893],[124.8345717630001,-30.432323444999952],[124.72367097000017,-30.331075753999983],[124.63134765900008,-30.345764200999895],[124.63452155100015,-30.428951237999968],[124.5580826160002,-30.48454303699998],[124.52125555200007,-30.583103153999957],[124.52908324400028,-30.707769378999956],[124.4455185190003,-30.75307088299985],[124.37916569700008,-30.71764393199993],[124.2527999570002,-30.80699535499997],[124.14590454000017,-30.970808085999977],[124.27675627500025,-31.15129091299997],[124.23013311100021,-31.243341476999944],[124.13694763800004,-31.23760993199994],[123.9926833500001,-31.378759336999906],[124.04493714000012,-31.449434203999942],[124.06889345800005,-31.564859379999916],[123.93889617500008,-31.675264299999867],[123.93827826100016,-31.725570638999955],[123.8217010750003,-31.74355132999989],[123.74591827700021,-31.815975163999894],[123.78411109000001,-31.8701190729999],[123.89556877600012,-31.89827338399988],[123.94209286500029,-31.980886427999906],[123.83213050900008,-32.054054239999914],[123.92553709800029,-32.08057022299988],[123.92029572500019,-32.14929964999993],[123.81340785200007,-32.211418100999936],[123.80481724000003,-32.27743531199991],[123.71234892200005,-32.267807019999964],[123.68904874000009,-32.33172607199998],[123.71459963100006,-32.422981192999885],[123.79454806700005,-32.52151867999987],[123.98731993800004,-32.50738528199997],[124.23799902600024,-32.556064525999886],[124.42271421100031,-32.5677643219999],[124.56400292400008,-32.45378116799992],[124.64624029000015,-32.47121804099993],[124.8295059090002,-32.42313005699998],[124.95584868300011,-32.318046638999874],[125.07144166600017,-32.28804009599992],[125.2471008760001,-32.30225379199993],[125.2929230640002,-32.227157638999984],[125.35961920800003,-32.2499656359999],[125.51330559400003,-32.19358442999982],[125.64908605500011,-32.19348535499995],[125.68963619500005,-32.088234131999855],[125.87519074400018,-32.10292056799989],[125.96624000400004,-32.017471255999965],[126.04159549400003,-32.03070443699994],[126.2193604050002,-31.960933474999933],[126.5677719800002,-31.936378521999984],[126.5962067480001,-31.92329017999998],[126.90020748100028,-31.774185174999957],[127.05899056700014,-31.77646438299996],[127.12101748900022,-31.747667348999926],[127.29277039600015,-31.76690096599998],[127.43199162800022,-31.7595996579999],[127.67472098200005,-31.6944923879999],[127.8238219650002,-31.697681365999983],[127.89526360800005,-31.66168209799997],[128.00163264200012,-31.689863229999958],[128.29635628200003,-31.64830977699995],[128.34515387900012,-31.698743855999965],[128.47508243100015,-31.651792457999875],[128.70007316400017,-31.623699167999973],[128.99732042900007,-31.560631549999982],[129.31591788000003,-31.548740242999884],[129.43765078700005,-31.63658566999993],[129.84236000400006,-31.608099994999975],[129.93724000400005,-31.588589994999893],[130.27439000400022,-31.573609994999913],[130.56106000400007,-31.58568999499994],[130.79251000400006,-31.607279994999942],[131.0263700040001,-31.537689995999983],[131.13043000400023,-31.464679995999973],[131.20824000400023,-31.479429995999965],[131.4221500040003,-31.563929995999956],[131.7277400040001,-31.703699995999955],[132.09202759700008,-31.933260996999934],[132.12979161600015,-31.83550675999993],[132.1130829750001,-31.759505975999957],[132.19587731500008,-31.75330566899987],[132.279281566,-31.864204666999967],[132.35237141000027,-31.829402919999893],[132.48156752400007,-31.85290150999998],[132.6560672600002,-31.809299558999953],[132.85276778000014,-31.829498433999902],[132.90617409000015,-31.78209878799987],[133.01412961200015,-31.766668328999913]]]},"properties":{"objectid":535,"eco_name":"Nullarbor Plains xeric shrublands","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Australasia","eco_biome_":"AU13","nnh":2,"eco_id":212,"shape_leng":30.0050847229,"shape_area":18.5736107299,"nnh_name":"Nature Could Reach Half Protected","color":"#F05D6F","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":197864.16012380333,"percentage":0.7499917365580059}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[32.852985972000056,-19.530539510999972],[32.79181981400012,-19.449798615999953],[32.74306538900004,-19.03447634999992],[32.63914333700012,-19.081056648999834],[32.52479195700005,-19.348950412999898],[32.555144014000064,-19.69197169399996],[32.551171313000054,-19.782746399999894],[32.5054339190001,-19.94420834699997],[32.61334446400008,-20.07837554999992],[32.75406730300011,-20.108516669999972],[32.87290475200018,-20.026993705999928],[32.94698811200004,-19.91453763399994],[32.93902691700009,-19.82456483899989],[32.995707006000146,-19.718934932999957],[32.862435943000094,-19.569501653999964],[32.852985972000056,-19.530539510999972]]],[[[34.00106085400006,-18.32770315599987],[33.84840806500006,-18.36624449999988],[33.89067822700002,-18.436941661999867],[33.99012605400003,-18.407632217999947],[34.00106085400006,-18.32770315599987]]],[[[32.87277447000008,-17.786935494999966],[32.81062105900014,-17.830709103999936],[32.872296635000055,-18.120714953999823],[32.9115852970001,-18.225552869999945],[32.98318868000018,-18.220741402999977],[33.01699217600003,-18.060081366999952],[32.99460526300004,-17.87491343299996],[32.927472156000135,-17.794573493999906],[32.87277447000008,-17.786935494999966]]],[[[32.65000707400003,-17.779277651999905],[32.58934638700015,-17.839921160999893],[32.59432213399998,-17.896154157999888],[32.50135067500008,-18.13432760099994],[32.48793589700006,-18.321901268999966],[32.4536348260001,-18.47693800499991],[32.46259511900013,-18.646037950999983],[32.44569337000013,-18.726367968999966],[32.468084232000024,-18.979416454999978],[32.54317063800005,-19.01396808599992],[32.636647568000114,-18.917179045999887],[32.75348682200013,-18.677401780999958],[32.75248377700018,-18.530394076999926],[32.70523786700011,-18.403463917999943],[32.75346313400013,-18.270118468999954],[32.751464940000176,-18.111864166999965],[32.72608862900012,-17.825075882999954],[32.65000707400003,-17.779277651999905]]]]},"properties":{"objectid":536,"eco_name":"Nyanga-Chimanimani Montane forest-grassland","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Afrotropic","eco_biome_":"AF10","nnh":4,"eco_id":85,"shape_leng":7.44537930902,"shape_area":0.66102747368,"nnh_name":"Nature Imperiled","color":"#B54B01","color_bio":"#D6C39D","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":7746.3514264259875,"percentage":0.15862929603342785}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-139.98666590499994,64.43447251900017],[-139.72378860599997,64.34002024600011],[-139.59709781599997,64.32362592200008],[-139.2144736319999,64.37204616999998],[-139.00182081299994,64.35450300100018],[-138.8246740149999,64.28564184800018],[-138.60104633799995,64.24185865200008],[-137.86516771199985,64.15553928500009],[-137.21039615099994,64.23543375200012],[-136.90802541699998,64.08379963699997],[-136.55689598399988,64.1375917370001],[-136.29213889999988,64.22594337000004],[-136.05265037699996,64.2455414580001],[-135.54324226499995,64.21215213700015],[-135.030810982,64.14563400400004],[-134.767373164,64.16218714500013],[-134.49090240199985,64.12288614500017],[-134.27769994299996,64.05653690500009],[-133.97600076999993,64.01256104600009],[-133.471762448,63.9762041890001],[-133.14558600499998,63.96836048600005],[-132.94218871099991,63.93425089300001],[-132.50964046399997,63.787949065000134],[-132.34453777099992,63.70415372100018],[-132.31979050699994,63.59782946900009],[-132.41775116999997,63.497934743000144],[-132.01602087899994,63.37436057000019],[-132.2905257129999,63.18726881300012],[-132.57306904299998,63.19798296200014],[-132.63440757699993,63.086327654],[-132.2585442929999,62.88907576200012],[-131.86882042599996,62.72967479500005],[-131.604977309,62.642069729000184],[-131.3226742209999,62.618012423000096],[-131.0459747559999,62.63017553499998],[-130.85842312799997,62.55790102600014],[-130.7454188829999,62.46434610900013],[-130.6846120439999,62.335270780000144],[-130.74350767699997,62.22923633400006],[-130.53725528799993,62.23310686700012],[-130.46082188499997,62.11994162700012],[-130.56489335799995,62.00501796000003],[-130.43520933199989,61.930934524],[-130.24184107599984,61.87900611500004],[-129.957662595,61.88867557300017],[-129.49231113899998,61.849025633999986],[-129.338164749,61.779366806000155],[-129.43661569499994,61.710477247000085],[-129.25052742499986,61.67508666100019],[-129.35182779599984,61.50001155700005],[-129.06392840499996,61.34175075900009],[-129.01920281899993,61.12100307900005],[-128.90839207099992,60.931927996000184],[-128.9152167719999,60.80679507700006],[-128.74067390599993,60.84689201500015],[-128.62408054499997,60.915759027000036],[-128.45961594,60.95345118500012],[-128.3357105999999,60.844324738000125],[-128.2615585819999,60.70421679700013],[-128.06818000899995,60.70085236500012],[-127.89999230599994,60.79102123299998],[-127.86621416199995,61.012882975000025],[-127.66434264699996,61.05952287399998],[-127.53247225199993,61.12067813100015],[-127.49740093099996,61.33627954600013],[-127.26329364999998,61.289517767],[-126.87464526899998,61.165780852000125],[-126.7397519939999,60.88644134100008],[-126.60696266399998,60.81823401800017],[-126.43440758399998,60.87626916100004],[-126.43737609099986,61.09291546800017],[-126.34889804699998,61.20014144600003],[-126.1374305679999,61.221480424000106],[-125.9132077129999,61.064555504000054],[-125.77848143399996,60.88664544300008],[-125.70287006799998,60.89701331800006],[-125.35049978099988,61.11603827700014],[-125.16805536499987,61.31248212300011],[-125.116438658,61.20123887200009],[-125.01578652799998,61.15685443200016],[-124.87550375899991,61.16822154099998],[-124.59633188599997,61.271305578000124],[-124.177802623,61.309434524000096],[-124.07013897699994,61.37392808700008],[-124.0905825399999,61.48464258700011],[-124.35996585799995,61.58699040200008],[-124.3578237449999,61.90613210400011],[-124.12597913499997,62.07789697900017],[-123.92019092199996,62.139781975000176],[-123.73574900199998,62.23954176400008],[-123.55384308699996,62.29161261000007],[-123.54190931399995,62.42284435000005],[-123.62213973299998,62.57796533600009],[-123.72534270499995,62.66622753100006],[-123.81800930999998,62.86241113000011],[-124.2214800839999,63.2057770350001],[-124.2658933759999,63.43457454800017],[-124.36012414599998,63.51990874600011],[-124.53149958899996,63.60445670800016],[-124.51857827599997,63.72755914000004],[-124.7249616179999,63.75460923900005],[-124.84845324099996,63.86486970500005],[-124.7411825399999,63.982075572000156],[-124.78007723399992,64.05922251300007],[-125.13123413699998,64.14962073300012],[-125.32037657899991,64.11810037400005],[-125.4638125159999,64.1582179630002],[-125.93831404099996,64.23167934700007],[-126.31385244199998,64.52717834300017],[-126.1793209299999,64.64590467800014],[-125.92547324599991,64.65103014400017],[-125.75459101299998,64.5601935110002],[-125.51450214799985,64.56729682600019],[-125.755890938,64.72921008500015],[-126.04191773899998,64.74846854499998],[-126.22599941899995,64.82160409300013],[-126.58732442599995,64.82465939200006],[-126.79073778499998,64.92590615900019],[-127.00066207299989,64.98813483599997],[-126.92943089699997,65.05268983600013],[-127.19158984699993,65.12247470400013],[-127.56617362999998,65.2596410340002],[-127.6877586469999,65.32233195800012],[-128.12584555199993,65.45360825900013],[-128.94335689499997,65.5223448590001],[-129.08032135899998,65.60613178000017],[-128.9295687429999,65.67926080200004],[-128.92205495699983,65.78821233100018],[-129.23901551999995,65.77081472700007],[-129.50242084799999,65.85693030400012],[-129.65671981699995,65.9641853220001],[-130.1331058039999,66.13763749400005],[-130.36654105299993,66.20611088600003],[-131.019390913,66.24584799600007],[-131.08273320699993,66.28771976000013],[-131.4922611329999,66.33773803700018],[-131.62274747299995,66.30929825400011],[-132.0426474809999,66.3577344840001],[-132.4967252369999,66.28335897100015],[-132.1204188519999,66.18888666700019],[-131.6961476709999,66.16913394100004],[-131.34092870799992,66.11637316100018],[-131.11581203499998,66.05760848500006],[-130.87922290899996,65.95495400300001],[-131.05096838299988,65.86039354200011],[-131.287431616,65.8571718070001],[-131.61817558799993,65.90000633400012],[-132.09099123099998,65.98295618200012],[-132.41653422199994,66.07741501100014],[-132.96533371799995,66.16408791200007],[-133.14123493999995,66.05001664100018],[-133.31503549999996,66.01721239500006],[-133.5632964009999,65.92546974300012],[-133.86123673899993,65.98475020800004],[-134.07042168799995,65.98918254500006],[-133.97570571999995,66.1983867720001],[-133.87003682699992,66.3422136280002],[-133.94497605999987,66.48465701600009],[-134.1844585789999,66.55327239400009],[-134.36079331899998,66.6645036700001],[-134.61732711699995,66.71280874700017],[-135.04556725999993,66.93161998100004],[-135.0517423369999,66.96501877200012],[-134.81151087299997,67.06836029900006],[-134.939900293,67.1606245980002],[-134.84972645899995,67.25776331500009],[-134.84660068699986,67.4913761890001],[-135.24334187099998,67.62079227900011],[-135.34769235099992,67.73114315300012],[-135.32882889599995,67.97345145000003],[-135.37487790799997,68.15338885700004],[-135.31781633699995,68.22680989300017],[-135.45685008699996,68.318054017],[-135.55998314099998,68.4686894940001],[-135.74938456299992,68.55665366400007],[-135.72328568199993,68.62632935900012],[-136.0289606199999,68.65251917900014],[-135.89706428799997,68.53748372000018],[-135.84873888899983,68.42761258500019],[-135.6667596459999,68.35083593799999],[-135.60879820899999,68.15740409900008],[-135.60191071799994,67.96998517600014],[-135.69716969899991,67.84681568100007],[-135.949128154,67.70332441100004],[-136.037687582,67.47154035500006],[-136.00778166299995,67.33187869600005],[-135.78817002899996,67.21213214700003],[-135.87540491699997,67.00085942500004],[-135.844850905,66.73015778000007],[-135.674837014,66.56537035600013],[-135.46871387799996,66.3026399310001],[-135.32668418899988,66.19750711600011],[-135.1201899849999,66.09945547400008],[-134.99511308799998,65.94978850900003],[-135.32498700399998,65.84936097600013],[-135.60689774099984,65.92197164900006],[-135.68801880899997,65.88773262900008],[-136.096055456,65.96297443000009],[-136.32632256999995,66.34501593300018],[-136.21606288699996,66.56604617300013],[-136.340016005,66.7833260290002],[-136.60941143099996,66.92379968700016],[-136.652436729,66.97953884300006],[-136.51778429299992,67.09411216000012],[-136.62025020299996,67.17973829000005],[-136.8649227209999,67.10721149300008],[-136.98687293599988,66.96598620700013],[-137.19466114499988,66.9861539050001],[-137.27773708299992,67.07093600600007],[-137.4022032619999,67.08200550600009],[-137.49448968599995,66.96827672500012],[-137.65455611,66.97619682000004],[-137.72911240599996,67.06617071700003],[-137.77903418499994,67.26052036600004],[-137.86915785299993,67.31358405900005],[-137.79656972499993,67.42060823400004],[-138.14168475299994,67.42579159000007],[-138.5312003449999,67.49116320600012],[-138.70475764799994,67.45371889600011],[-138.942204141,67.13480440500018],[-139.0607882509999,67.17858769400004],[-138.9978529309999,67.29052114300015],[-139.37069421999985,67.2182300230001],[-139.5395854759999,67.12928892800011],[-139.661594423,67.27576522100014],[-140.29208425299998,67.26638753500015],[-140.45227261199994,67.23960938200003],[-141.0016386009999,67.22077215100012],[-141.1804228879999,67.1949182080001],[-141.51499524199988,67.09369835200016],[-141.7260373109999,66.96392718100009],[-141.6726254479999,66.84596299100008],[-141.49920989799995,66.64716779300005],[-141.28215356699997,66.2567369250001],[-141.35146173099992,66.0723263500002],[-141.61460071,65.90843934600014],[-141.95582105999995,65.78387285900016],[-142.38117795699998,65.73507397300017],[-143.07569747399998,65.74288819400005],[-143.24543039999998,65.63988258000012],[-143.28350890699988,65.5201421340002],[-143.20318519499995,65.43018542300013],[-142.468407663,65.37527402800004],[-142.27012777599987,65.29258176600007],[-142.1419753319999,65.17789821400004],[-142.16230060799995,65.07451357399998],[-141.8107111449999,64.99534150800014],[-141.15810088699993,64.77539115400015],[-140.99929686699988,64.70496860200012],[-140.6652333419999,64.65410418100004],[-139.98666590499994,64.43447251900017]]]},"properties":{"objectid":539,"eco_name":"Ogilvie-MacKenzie alpine tundra","biome_num":11,"biome_name":"Tundra","realm":"Nearctic","eco_biome_":"NE11","nnh":2,"eco_id":419,"shape_leng":68.6277276401,"shape_area":56.4517645489,"nnh_name":"Nature Could Reach Half Protected","color":"#74D0E7","color_bio":"#9ED7C2","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":301710.33475156256,"percentage":3.530776412146963}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[108.79934656700004,40.64478701500008],[108.65489955300012,40.550004957000056],[108.25919359200009,40.58053671000016],[108.01449566300016,40.629830180000056],[107.89991756100017,40.632397221000076],[107.55318454600013,40.55053888400005],[107.26467860000008,40.348945228000105],[107.10723863000015,40.325332736000064],[106.97341165500012,40.22299388900012],[106.8946836240001,40.20724999300006],[106.78447752300008,40.097037354000065],[106.72149657300014,40.097037354000065],[106.69788357800013,40.00257581900013],[106.74511761400015,39.7979003050001],[106.737243654,39.49088661400003],[106.737243654,39.40429367500013],[106.80021655799999,39.27834267200018],[106.79235064400007,39.018561676000104],[106.80809051700004,38.98707187100007],[106.67426253700017,38.83750334700005],[106.57192251600014,38.67218891400012],[106.48532857200007,38.475388198000076],[106.40660858700005,38.35730612500015],[106.20980066200019,38.184121253000114],[106.14682759100009,37.971574126000064],[106.02873965100014,37.884982696000066],[106.00512665600013,37.751157062000175],[105.94214654400008,37.67243556800008],[105.77683261500016,37.546484062],[105.61151164400019,37.51499459300004],[105.23365058700011,37.49925086400009],[105.09159057200009,37.44557600600007],[104.89514156000001,37.389043086000186],[104.77706166700011,37.373296172000096],[104.68259460000007,37.27096134900012],[104.43067951700004,37.2316019430001],[104.3362196600001,37.15287977900016],[104.29685254300006,36.98756501100007],[104.39919256300004,36.885231025999985],[104.50940654300007,36.83799799600007],[104.62748761000006,36.72779038600004],[104.796348593,36.47378586200006],[104.89868962000014,36.711127665000106],[105.0134735810002,36.811825671000065],[105.06521557200006,36.79763192299998],[105.1412965990001,36.69263031300011],[105.08272553600005,36.61868063700018],[105.0834046380001,36.53497660500011],[105.16590854900005,36.48416567600003],[105.23400866200018,36.33634192800014],[105.2182696270001,36.25504886699997],[105.14820060500006,36.14741198600012],[105.03928364000012,36.09456442200019],[104.74402657400015,36.04638541000014],[104.58239766500009,35.984241980000036],[104.51292459600006,35.840355045000024],[104.58776057400019,35.662731452000116],[104.7999035260001,35.5169937930001],[104.87123067200014,35.44910943000008],[104.91606865800014,35.19252797400003],[104.94320657800006,35.06457101299998],[105.05442051900013,34.914749020000045],[105.15808052200009,34.9406923520001],[105.21260061100014,35.08895061700014],[105.32180054900016,35.105234978000055],[105.38486464700003,35.17209725200013],[105.59241465100007,35.26238811900009],[105.64367652700008,35.372501349000174],[105.7982636320001,35.3769943850001],[105.97206859800013,35.46676708200005],[106.04452562400002,35.46543218000005],[106.12339765700006,35.30789313600013],[106.26493866500005,35.21905820600011],[106.33657057700009,35.14061901500003],[106.54273957900006,35.24203367300015],[106.578796683,35.367770603000054],[106.692321682,35.468906982000135],[106.77176653400005,35.50752626600007],[107.12344353200018,35.52915543200015],[107.29606664800008,35.6641654280001],[107.3226166620002,35.71540702000004],[107.48455067300006,35.834747216000096],[107.58112360900014,35.881381276000184],[107.84245257400016,35.93128696000008],[107.97346457100019,35.985542684000166],[108.13159956800013,36.199859063000076],[108.18248761100006,36.49777252200016],[107.98310862100004,36.42773199800018],[107.7736896200002,36.64610723000004],[107.77037860000013,36.69390117800003],[107.84642760800006,36.79582713200017],[108.05192555500003,36.854690891000075],[108.1653055480001,37.05993637500018],[108.21459952000004,37.099154629000054],[108.38450656500004,37.14999556600014],[108.63246153400013,37.10896162400013],[108.94338957399998,37.19733186100018],[109.04932358600013,37.19545096200005],[109.19885254800005,37.10500955600003],[109.23918961900006,36.98012322200009],[109.31700167600007,36.88789697400017],[109.45407865000004,36.79081123300017],[109.68757668000012,36.59801321100002],[109.79367062000011,36.60240314900017],[109.88121054600009,36.64185442000007],[110.063102539,36.811917536000124],[110.16339167500007,36.86912536600005],[110.21720165000016,36.98570389300011],[110.357971523,37.00219478500014],[110.36501366200014,37.118731402000094],[110.30719764100007,37.362039444],[110.24492663800015,37.417526302000056],[110.23683961000017,37.61054678000011],[110.12454960000014,37.69794304100003],[110.15653259600003,37.7883695270001],[110.36377766700008,37.8139769120001],[110.32972752600017,37.87285592600011],[110.40861565199998,37.92693579700017],[110.45365161800004,38.0560494610001],[110.47714961300011,38.22527053100009],[110.60965761200015,38.28647937900013],[110.67633866900007,38.357382400000176],[110.69955452900018,38.473919186000046],[110.75971262200005,38.51522051100005],[110.86641659600014,38.50616084700005],[111.03462261800013,38.65374118400018],[111.1090465420001,38.58134651800009],[111.15006254700012,38.34873847900019],[111.0041736780002,38.20282094400005],[110.8621825620001,38.11910534499998],[110.84212466700006,37.997918615000174],[110.92488858500013,37.82159069700009],[111.16268954900005,37.54834501200014],[111.21237965000012,37.527616398000134],[111.31905361700012,37.582524234000175],[111.308181618,37.7166656980001],[111.34780857400011,37.89468240200006],[111.43470762000004,38.09842970400018],[111.43564555500012,38.16996539200011],[111.52987658700005,38.43381982500017],[111.8530425410001,38.736800815000095],[111.73514554100012,38.78360234500019],[111.42055561500018,38.66748113500006],[111.34589364500005,38.70533749700007],[111.56931260400006,38.98057120200019],[111.68183864800011,39.15894430500009],[111.57998662200004,39.25353609400008],[111.46145662000009,39.29773940100006],[111.58204655800012,39.376325108000174],[111.68791167200004,39.508918267000126],[111.75686657200009,39.83817568500007],[112.15288568100016,40.159830549],[112.05133054200019,40.2214330110001],[111.72862961700014,40.152895698000066],[111.36915560500006,40.13376886500015],[110.95104967800012,40.23000065700006],[110.73638159400019,40.24445055600006],[110.27455163700006,40.42418555000012],[110.00051168300018,40.48606377600015],[109.68781254700014,40.48184080600015],[109.47370152400003,40.50205041300012],[108.92501057400005,40.607251344000076],[108.79934656700004,40.64478701500008]]]},"properties":{"objectid":542,"eco_name":"Ordos Plateau steppe","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Palearctic","eco_biome_":"PA10","nnh":4,"eco_id":761,"shape_leng":30.9031022471,"shape_area":22.1587103696,"nnh_name":"Nature Imperiled","color":"#F7A86D","color_bio":"#D6C39D","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":215952.1311265446,"percentage":4.422254123490943}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-61.34782053699996,9.568256512000119],[-61.457046625999965,9.66924754900009],[-61.49486158299999,9.589931107000154],[-61.58533048099986,9.56440502700002],[-61.616653485999905,9.51340667800008],[-61.58029949499996,9.45106996100003],[-61.592376476999846,9.364148117000013],[-61.79321659999988,9.180988948000106],[-61.788864547999935,9.124244301000033],[-61.72434954199997,9.087090845000091],[-61.67212257399996,9.121046270000022],[-61.53979461899996,9.286027606],[-61.3994445109999,9.436527024000156],[-61.34782053699996,9.568256512000119]]],[[[-61.62503857399986,9.750809669000034],[-61.682544631999974,9.7487198930001],[-61.73363451199987,9.63460313100012],[-61.58910753399982,9.638789724000048],[-61.62503857399986,9.750809669000034]]],[[[-62.16754954599992,8.663468954999985],[-62.016731614999856,8.818858041000055],[-61.99747050499991,8.869095145000188],[-62.09077852099995,9.073386768000148],[-62.322158611999896,9.160939435000046],[-62.35928356999989,9.199684615000024],[-62.38019557999996,9.39498379700018],[-62.26052848899991,9.405976999000075],[-62.15159258199992,9.3747463630001],[-62.107509637999954,9.414859468999964],[-62.17628851799992,9.473345540000082],[-62.19087554399994,9.549250881000091],[-62.25242251799989,9.568602517000045],[-62.43202960499991,9.550958778000108],[-62.51727255399999,9.665323812000054],[-62.57260551999997,9.695102535000046],[-62.72238158099992,9.855994340000052],[-62.84079758799987,9.898018353000168],[-62.89183851699988,9.867461454000079],[-62.9058684819999,9.700183477],[-62.87585053999999,9.615592304000188],[-62.74518555399982,9.542591459000107],[-62.6965785619999,9.439812730000028],[-62.620136610999964,9.351664110000115],[-62.59031648199982,9.172623641000087],[-62.46248256799993,9.133907462000082],[-62.36506255699993,9.074711612000158],[-62.33147861799995,8.993563558000062],[-62.13786352699998,8.87871254100014],[-62.122764533999884,8.776803015000098],[-62.16754954599992,8.663468954999985]]],[[[-62.59637860899994,9.873936139000136],[-62.49501759499998,9.980487563000167],[-62.567039600999976,10.078596734000087],[-62.61751558999998,9.993403740000133],[-62.725036631999956,9.890292082000087],[-62.59637860899994,9.873936139000136]]],[[[-62.91887652499997,10.33617748000006],[-62.84580963099995,10.197939445000031],[-62.68852958799988,10.188115016000097],[-62.731670572999974,10.303691067000159],[-62.82491656399992,10.338566322000133],[-62.91887652499997,10.33617748000006]]]]},"properties":{"objectid":544,"eco_name":"Orinoco wetlands","biome_num":9,"biome_name":"Flooded Grasslands & Savannas","realm":"Neotropic","eco_biome_":"NO09","nnh":1,"eco_id":583,"shape_leng":8.62064837338,"shape_area":0.493082045994,"nnh_name":"Half Protected","color":"#68ADE8","color_bio":"#BEE7FF","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":6026.614835084621,"percentage":0.5211698474051992}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-130.9759642589999,55.68850473600003],[-131.04871362799997,55.765299085000095],[-131.3550895049999,55.764114589000144],[-131.40596911499995,55.62970966000006],[-131.07262348599994,55.509978333000106],[-130.98858284299985,55.51625062800008],[-130.94850059099997,55.62382292300015],[-130.9759642589999,55.68850473600003]]],[[[-130.047117378,56.61881568000018],[-130.04267869999995,56.55466184900007],[-129.8740535839999,56.522250874000065],[-129.91130058199985,56.436852356000145],[-130.1010586559999,56.4065397060001],[-130.07777356099984,56.3242542270001],[-130.12826564299985,56.25499322000002],[-130.03857458499994,56.114799351000045],[-130.29087858799994,56.058259726000074],[-130.40844768799997,56.09474849800006],[-130.65449348199996,56.041638952000085],[-130.62545506499998,55.98960685600014],[-130.76319913199995,55.88398473600006],[-130.923792043,55.80950976100007],[-130.79718987499996,55.771032236999986],[-130.527308383,55.75008199800004],[-130.46818126899996,55.68602638600015],[-130.70955721399991,55.62304158000006],[-130.63134765799992,55.5165521990001],[-130.63158145699992,55.372891689000085],[-130.48615200799998,55.38106785500014],[-130.15508464799984,55.35718944200016],[-130.4185180689999,55.2117715330001],[-130.52126939299995,55.010513028000105],[-130.65705187199995,54.926960635000114],[-130.6213137179999,54.887757657000066],[-130.14187161499996,55.16051521300005],[-130.11602152199998,55.04679474500011],[-130.00961334699997,55.011564059000136],[-129.70076978599997,54.989543647000175],[-129.37821818599997,55.16511076200004],[-129.2274801439999,55.226752276000184],[-129.10735876799993,55.349221999000065],[-129.0401916849999,55.48027894700016],[-129.08508451499983,55.56245307500012],[-129.26399049699995,55.59549592500008],[-129.1809564589999,55.72530157200015],[-129.38787672899997,55.81512092000008],[-129.45783989199992,56.036421646000065],[-129.38182057999995,56.12909583400017],[-129.4228794249999,56.39551809800014],[-129.58880667799997,56.498370181999974],[-129.7634558929999,56.49837868500009],[-129.81239253899992,56.57817646900003],[-130.047117378,56.61881568000018]]],[[[-132.54461661799996,57.07350651800016],[-132.71912488199996,57.09652601200003],[-132.7471410569999,56.84961710900012],[-132.58078192199991,56.785050266000155],[-132.50338754499995,56.84090233400019],[-132.600204562,56.97929560200015],[-132.54461661799996,57.07350651800016]]],[[[-135.21095645499997,57.40494956000015],[-135.32482410199998,57.44252304500009],[-135.429845275,57.423046009000075],[-135.30249519299997,57.19075494800012],[-135.30813556899994,57.12692727900003],[-135.08179677599998,57.02646781300007],[-135.26633526299992,56.981675391000124],[-135.2282735949999,56.862555423],[-134.91521056599998,56.828840424000134],[-134.80315243899992,56.737524189000055],[-134.88143859099995,56.57644651000015],[-134.84751321399995,56.43176199800013],[-134.64426491899997,56.23804056900008],[-134.639046851,56.479504202999976],[-134.61048328399988,56.632458750000126],[-134.69271069199993,56.89249509900014],[-134.85803816999993,57.267722342000184],[-134.93789272199996,57.267676876000166],[-134.9670193299999,57.37773672300017],[-135.21095645499997,57.40494956000015]]],[[[-132.89842261899997,57.61113620500004],[-132.968674599,57.565725427000075],[-132.91525881799998,57.488032656000144],[-132.98402664199995,57.33160850500019],[-132.83290061099996,57.27449366000019],[-132.75314361699998,57.423676281000155],[-132.89985659499996,57.55836558600015],[-132.89842261899997,57.61113620500004]]],[[[-132.47193864399998,57.99132877200009],[-132.45371957199984,57.943269957000155],[-132.52896156999998,57.79254607100012],[-132.44190963799986,57.67069331500005],[-132.45870965399996,57.58866264600016],[-132.19924968499998,57.4834841780002],[-132.2018735559999,57.38234612200006],[-132.111892652,57.32175535599998],[-132.078460593,57.22622831400014],[-132.13555862099997,57.155722930000024],[-131.95404062799986,57.09535411600007],[-131.88623069599993,56.91567980700012],[-131.938720688,56.85538291000012],[-132.18243357599994,56.82734410300003],[-132.05027888599994,56.709550776000185],[-132.28286483199986,56.59256628300011],[-132.16395332399998,56.46439395200002],[-132.05094219699993,56.406865212000014],[-131.9119040889999,56.394195008999986],[-131.82679170299997,56.30445743100006],[-131.73852661199993,56.34524497300015],[-131.61230586399995,56.25802698300015],[-131.35258743799994,56.34549701800012],[-131.23584342499998,56.219361463000155],[-131.52920779899995,56.15701012800014],[-131.53150849899987,56.08564890700006],[-131.37376385199997,56.072985120000055],[-130.98121167099993,56.20880287300014],[-130.88246552599992,56.299256434000085],[-130.79295713699997,56.29697837400005],[-130.940907074,56.13137172400013],[-131.03414250799995,55.88232417100005],[-130.92266218899994,55.90702427700006],[-130.76203574,56.0448400520001],[-130.56663565899993,56.058064763000175],[-130.5352016779999,56.128581715000166],[-130.39353963499997,56.18136725300013],[-130.32534765599996,56.35947314000009],[-130.41838057899997,56.44340264600015],[-130.15660066699996,56.48108164700011],[-130.33363366999998,56.60996045000002],[-130.57382364899996,56.6147755450001],[-130.655276787,56.568492825000135],[-130.7858868389999,56.57756614500016],[-130.84578087999995,56.72312149300012],[-131.09841840799993,56.897258608000186],[-130.99909969099997,57.11609344800007],[-131.02386359999997,57.18906754100004],[-131.16491662399994,57.33487795700012],[-131.51507598599994,57.41015391400015],[-131.627751097,57.4823965130002],[-131.638871436,57.56008721500007],[-131.7244407249999,57.595356760000186],[-131.99359004599995,57.55201192099997],[-132.0982208179999,57.63768567000005],[-132.36843698899992,57.762649383],[-132.40711738,57.84445929000009],[-132.37026967899993,57.927438553000115],[-132.47193864399998,57.99132877200009]]],[[[-135.821462474,58.229312527000104],[-135.86548545899996,58.16455924600018],[-136.17057680599999,58.19542906300006],[-136.31517592299997,58.06949175000011],[-135.78656933299987,57.824736699000084],[-135.433006853,57.685204567000085],[-135.12466480799998,57.625276639000106],[-135.53312220099997,57.81578171200016],[-135.70302977599994,57.94116948400017],[-135.8229824249999,58.077999157000136],[-135.72280665099998,58.1390379180001],[-135.821462474,58.229312527000104]]],[[[-136.62415732299996,58.76249477400006],[-136.62042265299993,58.70550263000007],[-136.4969935869999,58.606494796000106],[-136.34942089399993,58.68978572600008],[-136.48673003099998,58.74856752200009],[-136.62415732299996,58.76249477400006]]],[[[-137.16755658,58.918034],[-137.0526735449999,58.8352752780001],[-136.90690654899993,58.88164782300015],[-136.837615702,58.78597929400007],[-136.66160562599993,58.75751334500012],[-136.48924820499997,58.79664180300006],[-136.74265740099992,58.87813111600008],[-137.03226651799986,58.87998561500012],[-137.16755658,58.918034]]],[[[-137.956848552,58.99915305300004],[-138.065441239,58.99833202300016],[-137.84961002199992,58.84261458000003],[-137.7634126659999,58.84978653200017],[-137.78236364699984,58.95824249200001],[-137.956848552,58.99915305300004]]],[[[-134.98785355399997,59.205260029000044],[-134.95245359199993,59.09743036500009],[-135.05863956399992,59.047181693000084],[-135.05777509299998,58.95953019600017],[-134.94167796199997,58.958428194000135],[-134.89140952399993,58.86181744500004],[-134.77565737199996,58.82929260500009],[-134.89653362699988,58.71921857500007],[-134.848378686,58.603044563000196],[-134.74567752299998,58.5327720360001],[-134.63590235099986,58.34097690400017],[-134.51712052899995,58.35684055900009],[-134.2704923529999,58.25473215700015],[-134.1425668739999,58.27032805500005],[-134.036387511,58.20203768000016],[-133.87426952999994,57.97844952200006],[-133.65361427399995,58.019690304000164],[-133.51500763099995,57.914347638000095],[-133.44145100099996,57.812270690000105],[-133.1406293299999,57.694717596000146],[-133.05828189299996,57.615817447000154],[-132.93531757699992,57.66898810100014],[-132.956237634,57.72308590900019],[-133.13046269999995,57.71854962300017],[-133.17150854499994,57.77418953500006],[-133.06677264099994,57.877639822000106],[-133.30444368599996,57.950395412000034],[-133.07839968199988,58.13544151600007],[-132.81433067199998,57.952501449000124],[-132.60519363799995,58.015030280000076],[-132.5662685829999,58.10575030000007],[-132.37480160699994,58.16113020500006],[-132.36111462899999,58.08169876400012],[-132.268079721,57.974047329000086],[-132.16846928999996,57.98042579300011],[-132.01101700499999,58.11098199800006],[-132.20890513999996,58.09842898000005],[-132.2156031629999,58.225165429000185],[-132.48524306199988,58.29958362899998],[-132.59324637999998,58.41759728900007],[-133.0604518419999,58.38728677800009],[-133.16191108199996,58.429577459000086],[-133.06062618899995,58.63842447800005],[-133.2561961309999,58.686323218000155],[-133.52549760699986,58.861078967000026],[-133.7525786189999,58.78143244700016],[-133.7332606789999,58.716096182000115],[-133.87304668399992,58.597451013000125],[-134.0394286359999,58.53483467600006],[-133.99699357499998,58.42481096500006],[-134.27056866899994,58.36105385100018],[-134.3625635759999,58.437579453000126],[-134.49388167999996,58.451640934000125],[-134.6684727,58.55849762700012],[-134.762252618,58.68344498100009],[-134.57528655599992,58.75003618500017],[-134.61611966799995,58.816773568000144],[-134.52365067999995,58.89729331500007],[-134.85374461199996,58.959909485000196],[-134.83297760799996,59.063406208],[-134.93342566599995,59.09814047900005],[-134.98785355399997,59.205260029000044]]],[[[-137.20581891299992,59.209432966000065],[-137.03750565299998,59.07241239500007],[-136.91655582199985,59.103174859000035],[-137.14866324399998,59.22713680200013],[-137.20581891299992,59.209432966000065]]],[[[-136.840419603,59.376465357000086],[-136.7530826989999,59.3642967510001],[-136.685653641,59.456719136],[-136.81751847599998,59.509749006000106],[-136.840419603,59.376465357000086]]],[[[-149.97254967199996,59.83571225300011],[-150.0402675709999,59.72410486500007],[-150.25108566699996,59.68805622600013],[-150.25352075499998,59.6284438130001],[-149.97182205399997,59.719592631000125],[-150.0321857319999,59.788438072000076],[-149.97254967199996,59.83571225300011]]],[[[-135.62866760899993,59.85822049100011],[-135.82562326399994,59.864298648000045],[-136.03232054699998,59.76311309600004],[-136.49865558899995,59.75101763900017],[-136.44186298099999,59.577439174000176],[-136.56678769299987,59.4995828480001],[-136.41165157299997,59.36960702200008],[-136.46774259899996,59.27355778700007],[-136.26756263399994,59.25433389300002],[-136.04952955099992,59.167119687000195],[-135.96827655499993,59.177469158],[-135.78999364199996,59.09355809300018],[-135.61379966699997,59.11927813099999],[-135.42486093199994,58.94549442500016],[-135.36597554099995,59.028531325000074],[-135.33412108,59.17927678199999],[-135.1857391719999,59.04804044400015],[-135.08584554599997,59.078405624000084],[-135.031509691,59.20773235500013],[-135.0349115699999,59.35796472600009],[-135.21658362199997,59.36127172200014],[-135.23248258299998,59.43390225400003],[-135.01470999699995,59.56758733900011],[-135.24635774999996,59.70507678400014],[-135.62866760899993,59.85822049100011]]],[[[-145.510207646,60.855854075000025],[-145.65080912199994,60.76138875600003],[-145.41502514199993,60.76922572899997],[-145.510207646,60.855854075000025]]],[[[-148.40858460699997,60.884366125000156],[-148.492629615,60.88881021000003],[-148.7112276379999,60.804674007000074],[-148.60845000999993,60.75875642300008],[-148.42654112399995,60.826501617000076],[-148.40858460699997,60.884366125000156]]],[[[-147.81971768699998,61.255650070000115],[-148.013748687,61.13779816400012],[-148.396118705,61.10307881300008],[-148.46469155799997,60.974816751000105],[-148.35055568499996,60.97742201400007],[-148.3367774879999,61.05701099300012],[-147.97498661599994,61.110374686],[-147.82825031299996,61.198247431000084],[-147.81971768699998,61.255650070000115]]],[[[-147.52076755399997,61.29062423200003],[-147.7086412619999,61.256920174000186],[-147.93452295699996,61.07884742100009],[-147.87930493599998,61.03042456100019],[-147.8637174859999,60.90601774100014],[-147.56932179399996,61.09719694500012],[-147.35745272,61.02048041500018],[-147.13672337799994,61.02707694500009],[-147.12693763099992,61.06769662000005],[-147.31462067999996,61.124014795],[-147.63430764099996,61.14868173000019],[-147.69613658199998,61.22889302400006],[-147.52076755399997,61.29062423200003]]],[[[-142.181179048,61.12135312100003],[-142.21042259499995,61.07664493800007],[-142.62529221299985,61.00583454900004],[-142.76229410599996,61.070857704000105],[-143.1539185719999,61.15456728400011],[-143.45751963599997,61.29725277699998],[-143.73153409099984,61.25545203700011],[-143.81104425099988,61.32295986800011],[-143.968551957,61.337587687999985],[-144.25034535199993,61.475218740000116],[-144.53703562399994,61.64367460400007],[-145.04530283999998,61.5963058480001],[-145.26355816599997,61.63662047700018],[-145.48432617599994,61.728834228000096],[-145.669207601,61.88024172500013],[-145.91951811299998,61.79464879700009],[-146.07953218399996,61.82253306700011],[-146.13763067399998,61.888383423000164],[-146.3374080849999,61.9163676710001],[-146.44622945199993,61.84681676800005],[-146.68457671999994,61.89027100800013],[-146.76064240199992,61.96379545600007],[-146.94076708799994,61.91513442000013],[-147.03587935799996,61.939028250000035],[-147.25981110999996,61.8614102140001],[-147.65567208999994,61.81216439800011],[-148.65722560899994,61.795003785000176],[-148.70684989699998,61.78156624600007],[-148.72718842199998,61.72660334200009],[-148.91741407499998,61.625754552000046],[-148.9155044219999,61.57880139500014],[-148.65890066999998,61.505343758000095],[-148.71784064499997,61.455296237000084],[-149.08364288899995,61.509241183000086],[-149.47027685599994,61.428821851],[-149.80342734399997,61.05672620300015],[-149.457286471,60.909138093000024],[-149.85371378099993,60.967392570000186],[-149.93841132299994,60.90222027200008],[-150.05013528999993,60.66007329300004],[-150.15982926399994,60.550992727000164],[-150.09786870799996,60.439894640000034],[-150.36260899199996,60.35114141200006],[-150.70879696999992,60.296536149000076],[-150.712618232,60.11100049700002],[-150.84217567699994,59.83954192600015],[-151.0458360519999,59.69129916100013],[-151.1688484329999,59.51457544900006],[-151.37873885699995,59.51651648700005],[-151.40711321399993,59.39667635300009],[-151.25383962399997,59.35140843900007],[-151.04002972299992,59.35156596000019],[-150.8774672479999,59.31811978700017],[-150.74185822099994,59.417147074000184],[-150.60118550099992,59.42565618800006],[-150.62643101599994,59.526647085000036],[-150.45616570899998,59.62744015400011],[-150.59532155899996,59.682381427],[-150.36099271499998,59.804662833],[-150.520431601,59.88620902800017],[-150.34057657799997,59.9177841610001],[-150.26164268699992,60.0401638030001],[-150.28492761399997,60.08882259500018],[-150.0969845569999,60.19036231100017],[-149.94741871499994,60.198220681000066],[-149.800735577,60.271751429000176],[-149.67204268499992,60.20440803400015],[-149.61270166099996,59.99814699800004],[-149.44835351299992,59.971366855000156],[-149.50825432599993,60.141744486000164],[-149.34916555399994,60.203972981000106],[-149.23046565099997,60.02476166900004],[-149.12558306599996,60.06077532000012],[-148.85432320599992,59.95484639800003],[-148.62076097799996,59.96722618900003],[-148.68809459099998,60.034480537000036],[-148.80514568999996,60.001085191000016],[-148.96006756799997,60.10480621400012],[-149.02981556399993,60.205362062],[-148.89303564399998,60.32337037400015],[-148.6925966789999,60.40630142700007],[-148.45597713899994,60.545220096000094],[-148.66584767899994,60.52619818200009],[-148.9119266099999,60.472779307],[-148.91075163499994,60.389782875000094],[-149.14797961199997,60.424681264000014],[-148.98025471099996,60.552280318000044],[-149.0458526589999,60.6170638800001],[-149.01672370199992,60.6923875170001],[-148.80824263499997,60.74794377699999],[-148.77847262999998,60.81178839900019],[-148.65232867499995,60.86124833300016],[-148.73391761799996,60.90960118600009],[-148.77850364299996,61.051765807000095],[-148.67063860699994,61.1290550010001],[-148.51316862999997,61.16425815600007],[-148.33195456599992,61.28559324600013],[-148.40724165799998,61.34128244300007],[-148.57925457199994,61.319072411000036],[-148.54913369999997,61.416453362000084],[-148.33883661099995,61.38221211400008],[-148.10494966099995,61.43323108300018],[-148.20079068899994,61.49777475500008],[-147.88569667599992,61.602916006999976],[-147.791992698,61.58736640300003],[-147.634231701,61.66713563500008],[-147.4930117199999,61.58962566100007],[-147.32693470199993,61.64346480500018],[-147.17007459199993,61.633324378000054],[-147.00096164899992,61.715038714000116],[-146.84474158099997,61.57641108800016],[-146.615280612,61.53566447700018],[-146.5384066569999,61.70847736100018],[-146.42741366299998,61.71151764400014],[-146.52522259399993,61.546838057000116],[-146.30654863099994,61.44732357600009],[-146.12965359299994,61.334404086],[-145.93720962199998,61.354374808000046],[-145.7782895759999,61.3014819820001],[-145.90023771799997,61.186723333000145],[-146.0602266239999,61.198068575000036],[-146.34562657199993,61.29422560000006],[-146.45381162899997,61.186777313000164],[-146.82022065899997,61.176625655000066],[-146.93933276399994,61.03297599400014],[-146.66100485899995,61.093125403000045],[-146.59124116299995,61.129947637999976],[-146.31985025399996,61.136311318000196],[-146.18342145399993,61.051867777000155],[-146.376402122,60.991166852000106],[-146.34343092499998,60.92255133499998],[-146.17206275699996,60.891174605],[-145.79029983999993,60.76373201299998],[-145.6720735959999,60.80385408900008],[-145.84300256199998,60.89096955600019],[-145.74761968899998,60.98662333200008],[-145.57325766299996,61.00265690700019],[-145.476196565,60.95637505500014],[-145.30342056199996,61.02947497400004],[-145.27394057099997,60.89277736500014],[-145.02630662899995,60.9361111340001],[-144.872543633,60.922175548999974],[-144.88580363599996,60.85603696900006],[-144.64739967799997,60.764595434000114],[-144.89543159299996,60.69791186200007],[-144.83010008299996,60.618635544000085],[-144.57306305199995,60.48367712100003],[-144.30647008899996,60.45995758700013],[-144.15535112799992,60.41065666100002],[-143.89773753999998,60.39151816200001],[-143.8858960209999,60.242024884000045],[-143.82907577399993,60.113057309000055],[-143.63807653499998,60.074325285999976],[-143.39624338099992,60.1164778750001],[-143.34436456699996,60.051463418000196],[-142.80949490499995,60.09351193600014],[-142.4570667399999,60.07161570600016],[-142.41734224099997,60.099775768000086],[-142.13540737899996,60.08945735400005],[-141.76214619299992,60.04085945300011],[-141.39121204299988,60.01359961200012],[-141.47108576099998,60.113157604000094],[-141.39684941199994,60.139784888],[-141.1099368369999,59.891681017],[-140.92852508699997,59.859825349],[-140.78982244399998,59.725512725000044],[-140.31561270199995,59.69514871500019],[-139.79516730499995,59.83836697200013],[-139.64777642399997,59.90086699400007],[-139.58666992799994,59.78889255900009],[-139.329416628,59.68883814300011],[-139.04183592699997,59.55132234700011],[-138.90219896199994,59.422892237999974],[-138.50481113799992,59.27244070400013],[-138.29711244399988,59.16813253400005],[-138.12301005299986,59.04052636500006],[-138.0344086489999,59.07598375700019],[-138.14564555599992,59.18196336699998],[-138.05209362599987,59.39097400200018],[-137.73009127999995,59.311486479],[-138.6164025089999,59.77392957300003],[-138.6894970279999,59.9068520830001],[-139.04723962699995,59.996310935000054],[-139.18936287099996,60.088441698000054],[-139.08054708599997,60.28989672600005],[-139.090358499,60.35899433999998],[-139.41591362499997,60.349700075000044],[-139.61171043099995,60.50112475200007],[-139.89151341999997,60.674880894000125],[-140.60029515899993,60.82292499800013],[-140.93948389899998,60.862904604000164],[-141.23453484399994,60.851699142000086],[-141.991795831,61.07843041800015],[-142.181179048,61.12135312100003]]]]},"properties":{"objectid":548,"eco_name":"Pacific Coastal Mountain icefields and tundra","biome_num":11,"biome_name":"Tundra","realm":"Nearctic","eco_biome_":"NE11","nnh":1,"eco_id":420,"shape_leng":224.746133432,"shape_area":16.8513407952,"nnh_name":"Half Protected","color":"#4C82B6","color_bio":"#9ED7C2","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":106319.66209578677,"percentage":1.2442097993903585}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-116.34900558399994,46.483375],[-116.31615200499988,46.35572195000009],[-116.51907373999984,46.29077802500018],[-116.52158398499995,46.18787352000015],[-116.62482584799983,46.138526374000094],[-116.53989016099985,46.01249631700017],[-116.26913966199993,45.861724277000064],[-116.07748498499996,45.91591391700001],[-115.9671932579999,45.99941609700005],[-116.06023022499994,46.081585354000026],[-116.00688293399998,46.132425720000185],[-116.1256466989999,46.20378426200017],[-116.12839268999988,46.271710531999986],[-116.244163314,46.438583729000186],[-116.34900558399994,46.483375]]],[[[-119.59967673299991,49.37327827200011],[-119.75508961699995,49.370077386000105],[-119.6595343699999,49.25762157400004],[-119.61919594299997,49.15778192200003],[-119.62605289299995,49.03836092500018],[-119.50000542599997,48.914399446000175],[-119.60907429199995,48.83716651300006],[-119.52033334299989,48.65086087500009],[-119.56332200599991,48.51975279400011],[-119.68485725,48.51234778700018],[-119.63683117799991,48.43420967200012],[-119.65196624099997,48.36239086800009],[-119.79205266299994,48.30792536500013],[-119.770968,48.22477792800004],[-119.89789062499995,48.15830990200004],[-120.05732608199992,48.21536459800012],[-119.98121358999998,48.32667695200007],[-119.99790137899998,48.41514703500019],[-120.08789933699995,48.46357243099999],[-120.16621059,48.565740135000055],[-120.30624555599991,48.530428186],[-120.25963030299994,48.46253016400004],[-120.249801973,48.28056909000003],[-120.16040432799991,48.25680565700014],[-120.02590337899989,48.09474976400014],[-119.88407299099993,47.956904317000124],[-119.97192037199994,47.8896460790001],[-120.18381666699997,47.94953329900005],[-120.14072049599991,47.804069637000055],[-120.23456519699994,47.759223144000146],[-120.27289477999994,47.599121739000054],[-120.37052819299998,47.53999749300016],[-120.50334751199983,47.518068327000094],[-120.41610282499994,47.44143879200004],[-120.36063416699983,47.334891264000134],[-120.25631119499997,47.28850647900015],[-120.21980510599997,47.19080707500012],[-120.23817865299998,47.10788127899997],[-120.51032137099997,47.171584721000045],[-120.64416739399991,47.18197602300006],[-120.79241257499996,47.15363091900008],[-120.74709011299996,46.928721785000164],[-120.79984095999998,46.880278824000015],[-120.74629809299995,46.80619288300005],[-120.9074056469999,46.76331061999997],[-120.95694112599989,46.65159857700007],[-120.87688181899989,46.60468697600004],[-120.934758193,46.55363796300014],[-120.905354209,46.48528955000006],[-120.97999295399995,46.433585105000134],[-120.88647485099995,46.29677226299998],[-120.74667719599995,46.14384481600018],[-120.6205725989999,46.03950116900006],[-120.48302669199995,46.01409597100019],[-120.38409687699993,46.02839091700008],[-120.41440717699999,45.83910909100007],[-120.50465328799987,45.85196776900017],[-120.57157233799995,45.793649332000086],[-120.67175793899997,45.842219756000134],[-120.82692542299998,45.84201096100003],[-120.89994334299996,45.88934818700005],[-121.0532533889999,45.812240724],[-121.09193686699996,45.718645383000194],[-121.2016216109999,45.697359479000056],[-121.28187006199994,45.61471613300006],[-121.19525145799997,45.560587751000185],[-121.14552520899991,45.45318435200005],[-121.32412497899998,45.21564466300015],[-121.37045691699996,45.10278686500004],[-121.27054909299989,45.07796015100007],[-120.97884080999995,44.91376094599997],[-121.06821176299997,44.80970050999997],[-120.9630542679999,44.80117086900009],[-120.92695535899992,44.865512659],[-120.64138478599989,44.965999298000156],[-120.54875472099991,44.96900802900012],[-120.4813662819999,45.06700821100003],[-120.28702279199996,45.033071001999986],[-120.07752557799995,45.02261444600009],[-119.85250005499995,45.05400027500019],[-119.52382125199983,45.131533996000144],[-119.39701566199994,45.229580722000094],[-119.30649675199993,45.258069626000065],[-119.10962062699997,45.223572669000134],[-118.94522257799997,45.292694220000044],[-118.92260259999995,45.329078573000174],[-118.61444419999992,45.37199327299999],[-118.56159412099998,45.480085891000044],[-118.59946707599983,45.59019640800011],[-118.42945074199991,45.646977743000036],[-118.35033973799995,45.810718241000075],[-118.18270126399989,45.83838162100011],[-118.15397496599985,45.892888524000114],[-118.15238609199992,46.080965452999976],[-118.04522865399991,46.11110557400008],[-117.96084687799993,46.21021443600017],[-117.82009644699997,46.23593898200005],[-117.79369778699987,46.309991761000106],[-117.61805242999998,46.310508399000184],[-117.49107076399991,46.27522586300017],[-117.25363435299994,46.17297704200007],[-117.10861051199993,46.08350572400013],[-116.98723883499997,46.121089117],[-116.95456317499998,46.174565143999985],[-116.74281400899997,46.23224236900012],[-116.72055771299995,46.30152979100018],[-116.62537860899982,46.37892005100008],[-116.83270438099993,46.62292627000011],[-116.88805945799999,46.64079681300018],[-116.93409793199999,46.746280463000176],[-117.0270495609999,46.80195180900017],[-117.00288493599999,46.87444722600014],[-116.86089321099985,46.91231004400015],[-116.88384052799995,47.033667444000116],[-116.96693146699988,47.011862513000096],[-117.0182578919999,47.12396083600004],[-116.94729330699994,47.14310011400016],[-116.853913004,47.05355240100005],[-116.77534508199989,47.110427770000115],[-116.8720258009999,47.18518012700014],[-116.87002636299997,47.245307056000115],[-116.94811956099983,47.31205879500004],[-117.0289076009999,47.48186026400015],[-117.1067180249999,47.53973945800004],[-117.28213251499989,47.50785243000013],[-117.36604297099996,47.53970865000019],[-117.55504583299995,47.76105538200005],[-117.69156180399995,47.866497355000035],[-118.05458629799995,47.817473323000115],[-118.22112280399995,47.951729248000106],[-118.34452216199992,47.91070179500019],[-118.39039971299997,47.849752157000125],[-118.66514243699993,47.95099791000018],[-118.78835084999992,47.932133011000076],[-118.86983694599996,48.01765896300009],[-118.83365701899993,48.219675706000146],[-119.28118280999996,48.127407162000054],[-119.29802981599988,48.22998681300015],[-119.42572058199994,48.34529056800005],[-119.36826364599989,48.39376242700007],[-119.49165565799996,48.506749461000084],[-119.337240926,48.49540891400011],[-119.28279240899991,48.634187515000065],[-119.2179697339999,48.66979851399998],[-119.34793688699989,48.786463646000186],[-119.40686915099997,48.88356413600002],[-119.32801259399997,48.94529809900013],[-119.35556709199989,49.155161023000176],[-119.457589236,49.209332744000164],[-119.44671722699991,49.28257393400014],[-119.59967673299991,49.37327827200011]]]]},"properties":{"objectid":551,"eco_name":"Palouse prairie","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Nearctic","eco_biome_":"NE08","nnh":3,"eco_id":398,"shape_leng":38.3848601494,"shape_area":9.86697157267,"nnh_name":"Nature Could Recover","color":"#FDA65F","color_bio":"#FEFF73","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":83891.5471519491,"percentage":0.7917809317140105}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[75.79978954400013,36.763486564000175],[75.66407764700011,36.86960229700014],[75.62232252500013,36.80696567500013],[75.69914250000016,36.74788197500004],[75.76995063900017,36.718402486000116],[75.79978954400013,36.763486564000175]]],[[[71.24623849700004,38.67427902600019],[71.21425650700007,38.61202009300007],[71.29292251300018,38.50327680100003],[71.38247661000008,38.60177405400003],[71.52238448800011,38.60873204000006],[71.53291350000018,38.68631074500013],[71.34974661900014,38.70501362100009],[71.33197748800012,38.7381739380001],[71.24623849700004,38.67427902600019]]],[[[71.34595464600017,38.79920794000009],[71.45023356900003,38.76003176300003],[71.74379749000019,38.68380371800009],[71.9316936080001,38.768405452000025],[71.87487754800009,38.8387314630001],[71.59678662000005,38.873944677000054],[71.58381663000017,38.959610577000035],[71.35829163400007,38.906571403000044],[71.34595464600017,38.79920794000009]]],[[[71.48688562000012,39.136277627000084],[71.19731148400018,39.059904910000114],[71.10151655700008,39.116163071000074],[70.86872864200006,39.140183594000064],[70.71695752100015,39.08743460100004],[70.60121148400009,39.12527604400009],[70.46334057600018,39.07069258700017],[70.19991261400014,39.03643323400013],[70.20319362700008,38.95354040300015],[70.36356357400001,38.95910632199997],[70.45909162200013,38.858877032000066],[70.68231159500004,38.84109717200016],[70.85439257000013,38.953529674000094],[70.97102356700009,38.98944395000012],[71.1268235340001,38.98833401800016],[71.21339451200004,38.94961951600004],[71.35450754000016,38.94910855500012],[71.35484348700015,39.05951599000008],[71.46368451199999,39.062948715000175],[71.48688562000012,39.136277627000084]]],[[[73.4641795980001,39.926549778000094],[73.35825363200007,39.96952094600016],[73.28943653000005,40.094088600000134],[73.13881658000008,40.12057826400007],[73.07009151200009,40.05938282700015],[73.03093762999998,39.941396476000136],[72.85256955699998,39.936131467000166],[72.75306664300012,40.01927257100016],[72.67608657400018,40.03310036400006],[72.48578652600014,39.98777086400008],[72.34322359600014,40.07326476800006],[72.23200948800013,40.056942017000154],[72.16246064600017,40.00671061200006],[72.17862648700003,39.92734253900005],[72.24643759300011,39.860563581000065],[72.23515353900012,39.802165352000145],[71.9692765530001,39.769023810000135],[71.91256761400018,39.839193751000096],[71.97458648900016,39.957311195000045],[71.83683058000008,39.99370290400009],[71.66929662000007,39.94845722300005],[71.62441253399999,39.910531794000065],[71.4526064850001,39.89107706100003],[71.3600235030001,39.83310178400012],[71.13957961700015,39.81349500300007],[70.95127060700014,39.69213963000004],[70.88343854700008,39.7786445590001],[70.73210160800005,39.735386059000064],[70.61287657900004,39.76590674800019],[70.44445061700014,39.70010478500012],[70.12859351500015,39.677526117000184],[70.0074465150002,39.65404622700004],[69.96697952500017,39.59065523400005],[70.05845659900012,39.542658948],[70.21025051900006,39.53896588100008],[70.39082353499998,39.504356500000085],[70.39389751400006,39.434998263000125],[70.23709859300016,39.41900743600013],[70.0500026110002,39.44702914400017],[69.86797349000017,39.40441990700015],[69.58336663800014,39.393460903],[69.28106659500014,39.268263936000096],[69.40249656700007,39.229682371000024],[69.27863349600017,39.14745858300006],[68.9084775870001,39.17507628300007],[68.79530362200006,39.153622467000105],[68.59529850299998,39.170033395000075],[68.33595252800012,39.027335517000154],[68.23406948900003,39.04815499100005],[68.24929052300018,39.11684200500014],[68.38155360200017,39.22683755300005],[68.33821061300017,39.31405527900017],[68.15778360900003,39.22735253700017],[68.03658263000017,39.13513668200011],[67.9127505720001,39.099252414000034],[67.83601357800012,38.986445911000146],[67.99275952600016,39.01475847100011],[68.16069062100007,38.970340419000024],[68.21172350300014,38.859646994],[68.35452263500014,38.858946099000036],[68.43814050100013,38.914918102000115],[68.58345051600014,38.910237144000064],[68.65573152200005,38.936126664000085],[68.68196855600007,39.025523517000124],[68.80058254400018,39.08167455700004],[68.88955661400018,39.063772823000136],[68.93328852300004,38.94607581500003],[68.99054748300011,38.88879556500012],[69.06822157400018,38.92713606700005],[69.09203355500011,39.0110355650001],[69.21233364700015,39.034148160000086],[69.29060352400006,39.096143230000166],[69.39909351400013,39.08078154900005],[69.45480349900004,38.943130582000094],[69.51828753000012,38.937824837000164],[69.72499850600019,39.05070409500007],[69.78595757400018,38.99350682600004],[69.90209152400007,39.0340453980001],[69.95113353700003,39.150254618000076],[70.0357976320002,39.177699987000096],[70.0607606160001,39.250846173000184],[70.16211660100004,39.29539028900018],[70.25919362500008,39.282339666000155],[70.31659658600012,39.19428274400019],[70.42430856800007,39.16634418400014],[70.51101650600015,39.218212407000124],[70.6134266000002,39.22191653800007],[70.79067954400006,39.32237096500006],[70.95684054900005,39.30774521500018],[71.06268353400003,39.32879083200004],[71.16678660400015,39.415360637000106],[71.33223749400014,39.46160896100008],[71.44856255200006,39.46893675600006],[71.55016362400016,39.414788656000155],[71.65173351500005,39.41809950800018],[71.79061863400011,39.5014984390001],[71.88745861700016,39.51835612200006],[71.989517508,39.47403697700008],[71.99954964000017,39.31891896200017],[71.91322358100018,39.28278256600004],[71.67458358900012,39.24310230100019],[71.61633254700018,39.13986675800015],[71.50000748900004,39.136162626999976],[71.51101661600012,39.047217223000075],[71.66414661100004,39.087060600000086],[71.91870149000016,39.028285354000104],[72.03211249600008,39.117669969000076],[72.08090958900016,39.069131709000146],[72.18137357200004,39.11624722500011],[72.21182251200014,39.01976364100017],[72.452354635,38.91685499200014],[72.46015952800019,39.00043497200005],[72.6221775250001,38.9126861690001],[72.580215539,38.83785035800008],[72.70333060900009,38.83868636900007],[72.69915055400014,38.76045152800003],[72.50691965100015,38.73034306200003],[72.53706348900005,38.58466156100019],[72.61476859300006,38.55026910300006],[72.50446358600004,38.39932058200003],[72.29840053100008,38.414720150000164],[72.27550452400004,38.34331756700004],[72.06757364600014,38.41911025600018],[72.03269151800004,38.469471412000075],[71.90007757200004,38.46466858200006],[71.90605152200015,38.527728322000144],[72.01416063900018,38.53068143400003],[72.21582755300017,38.57446564600008],[72.12729655000015,38.7318801350001],[71.95081356700018,38.71500032300003],[71.90303755700006,38.66766821900006],[71.62139152900005,38.61462183600008],[71.48358164100006,38.49471284300017],[71.53031158900012,38.453072722],[71.52996860200005,38.35061552200017],[71.44370255700005,38.31673687600011],[71.4085926090001,38.094328942000175],[71.49195851500002,38.028485069000055],[71.61476161100006,38.03543098500012],[71.75846062400018,38.08912193600014],[71.86196857900018,38.05046074300003],[71.80269662100017,37.985863762000065],[71.64095254400002,37.95537324800006],[71.58838661100003,37.90659224800015],[71.59200256400015,37.716631835000044],[71.70596359100017,37.68688144300012],[71.8448565880002,37.74292117100009],[71.9056926090002,37.6771465330001],[71.85545349300008,37.60319199500009],[71.69373355600015,37.49402508300017],[71.74507858000015,37.28184424400007],[71.64864361100018,37.25631648800015],[71.59224664500005,37.323168200000055],[71.51721151300012,37.29395575900003],[71.51654850400007,37.13654881400009],[71.58561656000006,36.966382601000134],[71.56139353000009,36.76538674200003],[71.69525151800019,36.66979281200014],[71.8694836250001,36.693760194000106],[72.07106051800014,36.87411846599997],[72.24081450900007,36.94838179300007],[72.68641659900004,37.02264813800019],[72.78491251100002,36.99638478500009],[72.97287752800008,36.94838179300007],[73.25933862500011,36.9908188660001],[73.45030956000016,36.958993450000094],[73.60945155900015,36.9908188660001],[73.75798760000004,37.043868937000184],[73.86408254600019,37.033257112000115],[74.11871353300006,37.224228383000025],[74.24602558999999,37.25605363100016],[74.41577958100015,37.340928950000034],[74.68426551900018,37.397674770000094],[74.83735662200007,37.31908235800006],[74.88600150000008,37.240615842000125],[75.02609260600019,37.14542172900019],[75.10752061600004,36.99359294100003],[75.38220262400006,36.920885295000176],[75.42454565200006,36.82864043900008],[75.53881060600008,36.80573772700012],[75.70460549000006,36.926093307000144],[75.73162857800008,36.87696814600008],[75.85198264900004,36.837670096000124],[76.00479849100014,37.08835890600005],[76.01078048700003,37.26988528000015],[76.13246962800014,37.26789038700002],[76.2401886510001,37.40353858200018],[76.23619853000008,37.54916174500016],[76.17835250100018,37.714731657000186],[76.20428460100015,37.86035498799998],[76.26811949900008,37.946130356000026],[76.34591663700002,37.98203775800005],[76.53543063000018,37.98403265100018],[76.58529658300006,37.92817883400011],[76.73793757800019,37.872744781999984],[76.62652548900019,37.947797348999984],[76.64453853400016,38.059600538000154],[76.73338352200011,38.32321474600019],[76.64879654100014,38.41621933700014],[76.35944352000007,38.62213285900009],[76.28955051700012,38.65320725600003],[76.01798255400007,38.69696062300005],[75.92567449800009,38.61192889800003],[75.70171356500015,38.561319972000035],[75.47344249000014,38.55537284400003],[75.14583563700006,38.59919226100004],[75.00730155300016,38.68791269400009],[75.01750953700014,38.743327971000156],[75.25795750600014,38.68072605000003],[75.40752452200019,38.70836655000011],[75.48235362700018,38.79413118900004],[75.39861254700008,38.895554564000065],[75.22850752100015,39.01626570500008],[74.80247449300003,39.237972073000094],[74.41422255900011,39.31253714900015],[74.25636248800015,39.385983910000164],[74.09812958999999,39.37912902200003],[73.86015361200015,39.49614659300016],[73.68130458600007,39.67149097900017],[73.5515515510001,39.85735163500004],[73.4641795980001,39.926549778000094]],[[73.09456650099997,39.49555147800004],[73.19121554500015,39.342668749000154],[73.19487759800018,39.21918152300003],[73.03598755900015,39.22957223300017],[73.01654858500007,39.173130173000175],[72.90885956900019,39.13248565400016],[72.87567863200007,39.013346791000174],[72.73116255100001,39.03008142800002],[72.67225654700007,39.286036588000115],[72.4843134910002,39.340909723000095],[72.62162750500005,39.408650756000156],[72.75763662500009,39.377778195000076],[72.90900457600003,39.43567334100004],[72.95424656900013,39.41927766800012],[73.09456650099997,39.49555147800004]],[[72.31046259300012,38.16084051700011],[72.4178775200001,38.149148936000074],[72.56694748899997,38.058643324],[72.5598755100001,37.98643591100006],[72.48854048400011,37.93201674],[72.520500514,37.81827967800018],[72.39647651000007,37.77744069900018],[72.09585552900012,37.77494557400007],[71.99304964200007,37.80539803400012],[72.07572152700004,37.92251803200014],[72.06882456100016,38.030582892000155],[72.15661661500002,38.00616137900005],[72.29656958800018,37.908522097],[72.38399451500015,38.00002767000012],[72.49319462000005,38.03048013000017],[72.31046259300012,38.16084051700011]]]]},"properties":{"objectid":552,"eco_name":"Pamir alpine desert and tundra","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Palearctic","eco_biome_":"PA10","nnh":3,"eco_id":762,"shape_leng":81.1587368903,"shape_area":12.171248359,"nnh_name":"Nature Could Recover","color":"#D69F45","color_bio":"#D6C39D","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":118222.46400085092,"percentage":2.4209521628228994}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-57.74835956899989,-18.675311917999977],[-57.86388063499993,-18.763212601999896],[-58.0133135399999,-18.78093144199994],[-58.07453948699998,-18.832037414999945],[-58.036037549999946,-18.91992133399998],[-57.914329633999955,-18.928051947999904],[-57.821762576999845,-18.896507828999916],[-57.74835956899989,-18.675311917999977]]],[[[-57.85715449299994,-18.191116695999938],[-57.994350489999874,-18.291334753999877],[-57.93222449399997,-18.358367683999916],[-57.93601663499993,-18.472730035999973],[-57.87039957599984,-18.516947088999927],[-57.83199352799994,-18.427270447999888],[-57.822425585999895,-18.319096120999973],[-57.85715449299994,-18.191116695999938]]],[[[-58.457916506999936,-18.227808644999982],[-58.570987542999944,-18.180735373999937],[-58.62873852099989,-18.20522276899993],[-58.65173360099993,-18.285489214999927],[-58.578903579999974,-18.335191050999924],[-58.51357653499991,-18.316536119999967],[-58.457916506999936,-18.227808644999982]]],[[[-58.316413552999904,-18.050933220999923],[-58.25006458699994,-18.096127437999883],[-58.25058359399998,-18.21842124899996],[-58.13863355399991,-18.099339382999915],[-58.21330256499988,-18.03962703999997],[-58.316413552999904,-18.050933220999923]]],[[[-58.47758447499996,-17.935664114999952],[-58.56967158399988,-17.918188349999866],[-58.66436747599988,-17.959452626999905],[-58.626605493999875,-18.042852730999982],[-58.47758447499996,-17.935664114999952]]],[[[-58.810409566999965,-17.776105032999965],[-58.89556148899993,-17.781736665999972],[-58.918289521999895,-17.99879744799989],[-58.84534450099994,-18.151790147999975],[-58.829288629999894,-18.283318301999884],[-58.74119549799997,-18.213418593999847],[-58.70036355999997,-18.10438512099995],[-58.80148350999997,-17.99852436599997],[-58.76780351499991,-17.89747549399982],[-58.810409566999965,-17.776105032999965]]],[[[-54.91512256899995,-17.834222299999908],[-54.86006553499993,-17.780342587999826],[-54.90798152299993,-17.71708536999995],[-55.12071657199988,-17.640336138999885],[-55.22476951899995,-17.636730243999978],[-55.24518163199991,-17.69369902199992],[-55.04272061599988,-17.73995924899998],[-54.91512256899995,-17.834222299999908]]],[[[-57.87012448199988,-17.71378273299996],[-57.97918360399996,-17.67946872999994],[-58.031799491999834,-17.72672891799988],[-58.21878852099991,-17.704919205999943],[-58.27903747299996,-17.734254525999972],[-58.246707633999904,-17.808353902999954],[-58.11140862999997,-17.843908761999955],[-58.086376578999875,-17.894904763999932],[-58.201587513999925,-17.92936947399994],[-58.1603924719999,-17.97854760799987],[-57.92967656299999,-17.973526009999944],[-57.871185630999946,-18.03194351699989],[-57.739826623999875,-18.06993717499995],[-57.66033148099996,-18.005608079999945],[-57.75564159899989,-17.813755535999974],[-57.87012448199988,-17.71378273299996]]],[[[-55.21975361999989,-17.31270615099993],[-55.554302532999884,-17.35732251899998],[-55.61444855599996,-17.405140437999933],[-55.587837521999916,-17.474674191999952],[-55.51110857499998,-17.477543149999974],[-55.28167358899998,-17.52853814599996],[-55.24961850899996,-17.406426556999975],[-55.20643661999992,-17.39769714099998],[-55.08501452599995,-17.520522531999973],[-54.99902759899993,-17.56919657899988],[-54.998294517999966,-17.330358103999913],[-55.04727148699993,-17.26707423199997],[-55.176864594999984,-17.28032736199998],[-55.21975361999989,-17.31270615099993]]],[[[-57.74624263599998,-21.645056593999925],[-57.679107613999975,-21.62502283899994],[-57.58130253899998,-21.461066777999918],[-57.61555853899989,-21.382130874999973],[-57.695312514999955,-21.45911882399986],[-57.74108860299987,-21.424752684999874],[-57.721916507999936,-21.3413812469999],[-57.748149518999924,-21.17401341599998],[-57.713519517999885,-21.080432651999956],[-57.589153531999955,-21.024738760999924],[-57.49642554299999,-21.050853250999978],[-57.43387961399998,-21.156510325999932],[-57.35979063099995,-21.13242576499988],[-57.25525253999996,-21.016873182999973],[-57.20551650599998,-20.912908078999976],[-57.20810651399995,-20.826553689999855],[-57.15650550599992,-20.715188035999915],[-57.1337275169999,-20.579266590999907],[-56.954910508999944,-20.41017024399997],[-56.95376252299991,-20.267135244999963],[-57.087066634999985,-20.303857200999914],[-57.1537165119999,-20.27548881799987],[-57.13480358499993,-20.134829752999963],[-57.163635487999954,-19.985891212999945],[-56.94039556699988,-19.783628847999978],[-56.85010151499995,-19.796498086999975],[-56.76966055799994,-19.885011989999896],[-56.69887555299994,-20.094100073999982],[-56.592132518999904,-20.079621006999957],[-56.46894452599997,-20.09811701699988],[-56.36974352799996,-20.084714688999952],[-56.32135362799994,-20.21810295599994],[-56.22837451699996,-20.204651844999887],[-56.15125262599997,-20.063543007999954],[-56.06566953899983,-20.087877348999882],[-55.95221360599993,-20.314186722999978],[-55.86917861699993,-20.312437754999962],[-55.87613257899994,-20.226169698999854],[-55.9357225469999,-20.160361365999904],[-55.94515654599985,-20.072924200999978],[-55.90145849999993,-20.03597341899996],[-55.79377350699997,-20.147525989999906],[-55.77035849299989,-20.241945781999902],[-55.68999062599994,-20.22712255399989],[-55.64564147399989,-20.126251210999897],[-55.51816161099998,-20.05418947399994],[-55.44383961099999,-19.95298721399996],[-55.382801585999914,-19.792762439999933],[-55.24634151999987,-19.556052967999904],[-55.11884656999996,-19.435230012999966],[-55.100040596999975,-19.33805374799988],[-55.13411755899995,-19.210734314999968],[-55.23466854599985,-19.053383528999973],[-55.27210648399995,-18.944989929999906],[-55.12707156399989,-18.867746501999818],[-55.1077765899999,-18.71263167199993],[-55.049484476999964,-18.59253861299993],[-55.05074662399994,-18.492047639999953],[-55.09733156499988,-18.447649369999965],[-55.234569471999976,-18.412497511999902],[-55.33602151399998,-18.347325364999847],[-55.29835860499992,-18.267721088999906],[-55.05899458399989,-18.229650484999866],[-54.913570575999984,-18.328428531999975],[-54.81706955699991,-18.295297382999934],[-54.79908752499995,-18.247773500999926],[-54.81280149199989,-18.064688426999908],[-54.88624154799999,-17.955652104999956],[-55.01704449999994,-17.91110664799993],[-55.1755595329999,-17.82302307099991],[-55.28690356099992,-17.72960089299994],[-55.46753659199993,-17.62967469299997],[-55.741050497999936,-17.498411741999973],[-56.03816951999988,-17.29124462299984],[-56.162025550999886,-17.248250153999948],[-56.07588556999991,-17.19333862999997],[-55.92950853899998,-17.27751053999998],[-55.73859761799997,-17.34822111299991],[-55.530349568999895,-17.27552168199992],[-55.437076587999854,-17.210816573999978],[-55.36134760199991,-17.246745433999877],[-55.281478625999966,-17.20574870799993],[-55.053596470999935,-17.15246310499998],[-54.99767660399988,-17.080884501999947],[-55.031326591999914,-16.850723977999962],[-54.952457576999905,-16.749324071999922],[-54.97610057899993,-16.63019258499986],[-55.17645254099989,-16.663145534999956],[-55.453540489999966,-16.79358756199997],[-55.61127047399998,-16.79853204699998],[-55.798896526999954,-16.765749249999942],[-56.18092355699997,-16.77183484699998],[-56.276107611999976,-16.720329895999896],[-56.23835753099996,-16.64090381899996],[-56.11782056699997,-16.614200584999878],[-55.99431959399993,-16.66544653499983],[-55.83472061299983,-16.595748829999934],[-55.77980456299997,-16.68756386299998],[-55.623138577999896,-16.71113545099996],[-55.494201604999944,-16.666260249999937],[-55.41883454899994,-16.440919320999967],[-55.409728617999974,-16.366347203999908],[-55.44696052899991,-16.204711421999946],[-55.521171551999885,-16.152172646999873],[-55.70145757299997,-16.33577421299998],[-55.76274856299989,-16.359904705999952],[-55.83198157499993,-16.313129662999927],[-55.75069857199992,-16.1777200169999],[-55.61383449799996,-16.0926693479999],[-55.624511533999964,-15.99462253899992],[-55.84543654099997,-16.160696203999976],[-55.927577515999985,-16.184929626999917],[-56.024791499999935,-16.16429287899996],[-56.18049255999995,-16.22081741599993],[-56.32484049999988,-16.113992071999974],[-56.39373354099996,-16.091862505999927],[-56.48692655799994,-16.12539145999989],[-56.6155015999999,-16.235869469999955],[-56.74941658499989,-16.25405736199997],[-56.91791546999991,-16.206029391999834],[-57.08987859599995,-16.26074192999988],[-57.23863558499994,-16.205340399999955],[-57.34062155299989,-16.21485385999989],[-57.390994611999986,-16.185308488999908],[-57.34431059699995,-16.100175845999956],[-57.44254247899988,-16.067083923999917],[-57.62430153499997,-16.09772497699987],[-57.663757499999974,-16.202895398999942],[-57.80528660599998,-16.30788996799987],[-57.833389617999956,-16.2404602389999],[-57.86850761299996,-16.039434707999817],[-57.94787250199988,-15.892684011999961],[-58.088878576999946,-15.879307834999906],[-58.21187562999995,-15.965187641999933],[-58.208423626999945,-16.01956691499987],[-58.07261651099992,-16.138209401999973],[-58.07659154499993,-16.218572574999826],[-58.18134655899985,-16.29859426899992],[-58.14241747999989,-16.396828330999938],[-58.04695548199999,-16.52005957399996],[-58.00434155099998,-16.650199349999923],[-57.951614518999975,-16.71653926399989],[-57.86920549099989,-16.75693366699994],[-57.86828247499989,-16.864498127999923],[-58.00747252699989,-16.838118601999895],[-58.05755657799989,-16.722135021999975],[-58.177570511999875,-16.566893625999967],[-58.30445056499997,-16.59356785899996],[-58.3368456149999,-16.67024098299993],[-58.33245048099997,-16.771890837999877],[-58.37091453099998,-16.822527758999968],[-58.47170658199991,-16.79349133799991],[-58.462051634999966,-16.67167914999993],[-58.338542615999984,-16.49343931999988],[-58.30578647299984,-16.26074595299997],[-58.5830536279999,-16.131146977999947],[-58.78649549399984,-16.138892358999897],[-58.93657263199998,-16.10886335299989],[-58.968490583999824,-16.141456215999938],[-59.14800647499993,-16.190405188999932],[-59.267223624999986,-16.279495767999947],[-59.248527622999916,-16.362787242999957],[-59.32466162299994,-16.454390715999978],[-59.58874555199992,-16.393606326999816],[-59.70984661899996,-16.397356054999932],[-59.861728548999906,-16.429941206999956],[-60.100761483999975,-16.42361152899997],[-60.09617960099996,-16.48265499599995],[-59.97108455699993,-16.566281578999963],[-59.74770348499993,-16.685312315999965],[-59.68478355499997,-16.768922805999978],[-59.62183747399996,-16.70157521999988],[-59.52775949499994,-16.761528290999934],[-59.37703359799997,-16.711675412999966],[-59.32067150199987,-16.61914624299982],[-59.24293555199995,-16.642223800999943],[-59.23108655899995,-16.718505154999832],[-59.31443050399997,-16.726200580999887],[-59.33733355199996,-16.82615527899992],[-59.44631153599994,-16.80945953399987],[-59.58020757799994,-16.845406163999883],[-59.61190055999998,-16.909825112999954],[-59.562126471999875,-16.94755977099993],[-59.45431558299998,-16.945953797999948],[-59.43718347599997,-17.076783906999935],[-59.51627360599991,-17.150439378999977],[-59.56225152999991,-17.23393620999991],[-59.539318474999845,-17.298410144999934],[-59.42644860499996,-17.30126904399998],[-59.431152528999974,-17.37280171499998],[-59.334361495999985,-17.397506200999885],[-59.29119855099992,-17.24735328999992],[-59.15094349399993,-17.266645245999825],[-59.078304579999894,-17.196830362999947],[-58.82234556399993,-17.131220512999903],[-58.78025047299997,-17.140670772999954],[-58.61186256399998,-17.02440002999998],[-58.54930858899991,-17.02821295799987],[-58.540264514999876,-17.11936330499998],[-58.62680850399988,-17.135368045999883],[-58.65957654799996,-17.200483028999827],[-58.744529483999884,-17.249642052999945],[-58.777797592999946,-17.36312430399994],[-58.90908451599989,-17.496815995999896],[-58.88892352399995,-17.583415807999927],[-58.898345621999965,-17.723372132999884],[-58.76161549099987,-17.678431720999868],[-58.736644627999965,-17.637535408999952],[-58.58808863699994,-17.663694825999983],[-58.530727585999955,-17.632644736999964],[-58.41897552599994,-17.62687295799998],[-58.16377658099998,-17.474907376999965],[-58.09371560499994,-17.469353695999814],[-57.97864548599995,-17.561325971999963],[-57.91242560099994,-17.501901630999953],[-57.782424628999934,-17.500599586999954],[-57.60902048699995,-17.368525770999952],[-57.58199354299995,-17.47021753499996],[-57.616805598999974,-17.567098588999954],[-57.548820484999965,-17.613286898999945],[-57.43357451299994,-17.463253848999955],[-57.38536063199996,-17.49755779399993],[-57.38665060699992,-17.579123769999967],[-57.43389553999987,-17.804887314999917],[-57.440299480999954,-17.995200773999954],[-57.40825647099996,-18.200903238999956],[-57.408527541999945,-18.449135312999886],[-57.49962659199997,-18.63107240099987],[-57.76041056599996,-18.818465268999887],[-57.78434358199996,-18.890488113999936],[-57.62758656999989,-19.009069076999936],[-57.515388592999955,-19.050646501999893],[-57.411819617999925,-19.0578732109999],[-57.478168584999935,-19.165349996999964],[-57.39349761599988,-19.335660043999894],[-57.389816619999976,-19.38057715499997],[-57.47743952699989,-19.42655776099997],[-57.52492552299998,-19.40756688299996],[-57.550853598999936,-19.27278470599998],[-57.59938850699996,-19.198229017999893],[-57.80059860699993,-19.233152049999944],[-57.94363058799985,-19.222503680999864],[-58.05924251399995,-19.241061549999927],[-58.1061176369999,-19.15657833599994],[-58.286998604999894,-19.134736604999887],[-58.37855161899995,-19.155947345999948],[-58.51228756599994,-18.99118729299994],[-58.715171532999875,-18.873772921999887],[-58.825687596999956,-18.75587005499989],[-58.98548153999985,-18.629935646999968],[-59.10432854499999,-18.623451071999966],[-59.04307158499995,-18.659478838999917],[-59.00073962099992,-18.75637497999992],[-59.065448584999956,-18.82789289899995],[-58.88558953799998,-18.885516471999892],[-58.81034854599989,-18.97367632299995],[-58.83924850999995,-19.018053638999902],[-58.774475508999956,-19.081713858999933],[-58.79761861499992,-19.1557485269999],[-58.76173350799996,-19.222574590999955],[-58.67721559299997,-19.156492336999975],[-58.616619629999946,-19.203498720999903],[-58.63241163799995,-19.295032455999944],[-58.56713857299991,-19.45204913999993],[-58.579067529999975,-19.63215981099995],[-58.54998752299997,-19.681648913999936],[-58.458717481999884,-19.696799874999954],[-58.24259161699996,-19.81837300999996],[-58.23229562199998,-20.101252686999885],[-58.14702953899996,-20.10127565399995],[-58.13239255699989,-20.1663309569999],[-58.0269205539999,-20.38072981499994],[-58.00138458299995,-20.733069987999954],[-58.043907486999956,-20.99159252499993],[-58.06821450299992,-21.248666500999946],[-58.039565492999884,-21.445667544999935],[-57.990444522999894,-21.502770266999903],[-57.89878053299992,-21.51715847399987],[-57.80849050399996,-21.623744933999888],[-57.74624263599998,-21.645056593999925]]],[[[-60.05122762199994,-15.468817034999972],[-60.18867457299996,-15.452573073999929],[-60.35352749799989,-15.270628777999946],[-60.375041496999984,-15.146559846999935],[-60.482006482999964,-15.120033637999825],[-60.55908948299992,-15.071199663999948],[-60.68803751899998,-15.167226434999975],[-60.64177360499997,-15.302049850999936],[-60.527141522999955,-15.376748198999962],[-60.44492360299995,-15.514836197999955],[-60.57308156099998,-15.704819241999814],[-60.65716948499988,-15.707683002999886],[-60.778877568999974,-15.657547989999955],[-60.885677599999894,-15.645677873999944],[-61.05463061599994,-15.717386396999927],[-60.974204578999945,-15.855829285999903],[-60.87751060799991,-15.85946434999994],[-60.82935355699993,-15.78010231099995],[-60.65703151799994,-15.894221922999975],[-60.650176629999976,-15.978476813999919],[-60.483821500999966,-16.12509943499998],[-60.47246150699988,-16.17236431599997],[-60.32995255699984,-16.213064658999826],[-60.233970545999966,-16.295807453999828],[-60.155124496999974,-16.2470286329999],[-60.057079530999886,-16.30903677999993],[-59.95521962599997,-16.34200263699995],[-59.82599247199994,-16.25332226899991],[-60.153758581999966,-16.23796930499998],[-60.12256650299997,-16.194440907999876],[-59.99188659699996,-16.23495047899985],[-59.895980525999846,-16.017583253999874],[-59.822227488999886,-15.998302529999933],[-59.798534530999916,-16.1709725849999],[-59.659122525999976,-16.20666406999993],[-59.612094516999946,-16.169335598999908],[-59.54871358299994,-15.976229792999902],[-59.58712063699994,-15.900267789999873],[-59.67832948999995,-15.840329302999976],[-59.806693474999975,-15.716204380999898],[-59.951827637999884,-15.676875820999953],[-59.97812250599998,-15.525431426999887],[-60.05122762199994,-15.468817034999972]]],[[[-61.012245510999946,-15.065963153999917],[-61.093402617999914,-15.00960172899994],[-61.069702618999884,-15.093939432999946],[-60.967441555999926,-15.213960574999874],[-60.945556574999955,-15.362384968999834],[-60.85781447699998,-15.450699215999919],[-60.76979057999989,-15.44470481399992],[-60.76838258799984,-15.359372177999944],[-60.82249447799995,-15.315443125999934],[-60.82692749899991,-15.211142746999883],[-60.91846458699996,-15.157045272999937],[-61.012245510999946,-15.065963153999917]]]]},"properties":{"objectid":555,"eco_name":"Pantanal","biome_num":9,"biome_name":"Flooded Grasslands & Savannas","realm":"Neotropic","eco_biome_":"NO09","nnh":2,"eco_id":584,"shape_leng":63.887652103,"shape_area":14.5552400441,"nnh_name":"Nature Could Reach Half Protected","color":"#29A26C","color_bio":"#BEE7FF","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":171428.94379544706,"percentage":14.824839304244858}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-69.25038949899994,10.095597413000121],[-69.4101715409999,10.105036777000066],[-69.45330850199991,10.155537240000058],[-69.48466453199995,10.30762972399998],[-69.47415161299983,10.403112844000134],[-69.60698650599994,10.42473647800017],[-69.62649555399997,10.490996931000097],[-69.61344962399994,10.602396113000168],[-69.73583949199997,10.739045442000133],[-69.87895160399984,10.726298244000077],[-69.89589662699996,10.82805019],[-69.80847957999993,10.893771855000125],[-69.78425554399996,11.011249424000141],[-69.81269852699995,11.051817668000183],[-70.11622651999994,11.136474890000045],[-70.14703353399995,11.227241682000056],[-70.03847464499995,11.268456841000045],[-69.93129759599992,11.26798896300005],[-69.66558858199988,11.318110229000183],[-69.56153161299983,11.424105933000078],[-69.66087359399995,11.502980648000118],[-69.75629452099992,11.672188977000076],[-69.79342651999991,11.799280087000113],[-69.81800058399989,11.987491364999983],[-69.92456055699995,12.161223407000023],[-70.01847056199995,12.200264803000039],[-70.20692457899992,12.067513729999973],[-70.28887964399996,11.906059834000132],[-70.27382658399995,11.831215138],[-70.20505558299993,11.738020277000146],[-70.23075852099993,11.621210577000056],[-70.17897763799994,11.611409283000171],[-69.96688849799989,11.659544709000158],[-69.92114258499993,11.649336556000094],[-69.8425065859999,11.719606744999965],[-69.80509161499992,11.69339435400019],[-69.72975154799985,11.48764377700013],[-69.8152925579999,11.41878325700003],[-69.93359356599984,11.481383166000171],[-69.99203454199994,11.411036870000089],[-70.08444955099998,11.360517295000136],[-70.1554105759999,11.394680927000138],[-70.51138262799992,11.243295541000066],[-70.7118075119999,11.225920861000077],[-70.83500656899997,11.19690673600013],[-71.16171253499988,11.02185772900009],[-71.29837762299991,10.97147628800019],[-71.31859561099998,10.86724648400002],[-71.43741663299994,10.797321295000074],[-71.58327448899996,10.80261899300018],[-71.52291154199992,10.724160691],[-71.42715450099996,10.72110582200014],[-71.25312054199998,10.75542535700015],[-71.14493548599995,10.815394187000095],[-70.85253161999998,10.913086274000136],[-70.50252563899994,11.055672505000189],[-70.48249054299993,11.10093830300002],[-70.33085654999991,11.00250223800009],[-70.17536151699989,10.96643557900012],[-70.14450856999991,10.894046613000171],[-70.10331755099998,10.602360909000083],[-70.03535456499992,10.501635914000076],[-70.04300657199997,10.453901478000091],[-70.21707958999986,10.421540794000066],[-70.1593856099999,10.236378685000147],[-70.16476461199983,10.12740237700018],[-70.11926261299988,10.020666886000072],[-69.89218864099996,9.970537405000073],[-69.84078963699994,9.874953031000075],[-69.84631364699993,9.743336364000129],[-69.89212057999998,9.67688212100012],[-69.76790664199996,9.65121891299998],[-69.68015264199994,9.784329571000058],[-69.5040966329999,9.930179212000098],[-69.42772659899998,9.956662171000062],[-69.29917955199988,9.936447702000066],[-69.29328958899998,9.976318907000064],[-69.25222060999982,9.97764492400006],[-69.25038949899994,10.095597413000121]]]},"properties":{"objectid":558,"eco_name":"Paraguaná xeric scrub","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Neotropic","eco_biome_":"NO13","nnh":3,"eco_id":606,"shape_leng":16.3706018937,"shape_area":1.31540395908,"nnh_name":"Nature Could Recover","color":"#CC9753","color_bio":"#CC6767","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":16008.800773055784,"percentage":0.060680359113458565}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-59.56915654199997,-30.538695920999942],[-59.60620455399987,-30.364607311999976],[-59.54363247299983,-30.31263012499994],[-59.57252154099996,-30.228206254999918],[-59.53862763899997,-30.11684043299988],[-59.54235054499998,-29.933407175999832],[-59.501136558999974,-29.914680159999932],[-59.49033362699993,-29.723386353999842],[-59.46008249999994,-29.663470498999914],[-59.4192654819999,-29.409898313999975],[-59.29792754299996,-29.184496866999893],[-59.207054635999896,-29.07978024199997],[-59.04803853299995,-28.720068519999984],[-58.966022616999965,-28.20705044799996],[-58.86828962599992,-28.09950861799996],[-58.80121260699991,-28.078122694999877],[-58.73073555399998,-27.968380280999952],[-58.73506547699992,-27.643444906999946],[-58.76805161899995,-27.46770556699994],[-58.65185547399989,-27.40799691199993],[-58.56514351199996,-27.328360449999877],[-58.662151636999965,-27.186988420999967],[-58.63216353399997,-27.114231656999834],[-58.557334595999976,-27.051055575999897],[-58.47703160499998,-27.06592088199983],[-58.47875961799997,-26.921001127999943],[-58.414199517999975,-26.90888475199995],[-58.24313761399992,-26.73354153999992],[-58.24864955399988,-26.640333770999916],[-58.18763751299997,-26.640352545999974],[-58.221626632999914,-26.398136498999975],[-58.11784760799992,-26.23910866199998],[-58.110691473999964,-26.1332914919999],[-57.95119458499988,-26.06505374799997],[-57.85644555199991,-25.993891892999898],[-57.86787461199998,-25.854437307999888],[-57.83348450099999,-25.777402923999944],[-57.744022604999884,-25.729178314999956],[-57.662879578999934,-25.597340197999984],[-57.57024747899993,-25.55405940199995],[-57.60498862399993,-25.43955656999998],[-57.682468589999985,-25.583806105999884],[-57.836898617999964,-25.685431317999928],[-57.97609353199988,-25.98266030999997],[-58.16802955899993,-26.093012256999884],[-58.339000602999874,-26.420937622999872],[-58.331706502999964,-26.58956475099984],[-58.37007851999982,-26.728531843999917],[-58.53169250999986,-26.85148313199994],[-58.74206553999994,-27.04829759499995],[-58.78921558899992,-27.142446316999838],[-58.82247548399994,-27.32878624999995],[-58.95747760199998,-27.45006719199995],[-58.95697049699993,-27.687123004999876],[-59.087486619999936,-27.9082178299999],[-59.08850451799998,-27.97619104099988],[-59.14728948699985,-28.064949024999976],[-59.35948155699998,-28.562952761999952],[-59.44158950699995,-28.696908315999906],[-59.44640759299989,-28.771051445999888],[-59.62610252099989,-29.106398148999915],[-59.69000648699995,-29.171441549999884],[-59.812171551999825,-29.443115795999972],[-59.894641599999886,-29.724839272999873],[-59.95432259499995,-30.071111283999983],[-59.99734858099998,-30.17567737099995],[-60.10849747799995,-30.45153921499991],[-60.28054861399988,-31.104708072999927],[-60.34019457199986,-31.220704895999972],[-60.44432060899993,-31.268219390999946],[-60.56169156099992,-31.37707952599993],[-60.84720650799994,-31.825777555999878],[-60.8395115859999,-32.08806406999997],[-60.72694363199997,-32.13629136199995],[-60.7176854839999,-32.24784191999987],[-60.7611086039999,-32.32110427999993],[-60.75737362799987,-32.43407272099995],[-60.80363050199992,-32.508640646999936],[-60.79544054499996,-32.57737141499996],[-60.723071527999934,-32.683892998999966],[-60.685729478999974,-32.89000667999994],[-60.50665263199994,-33.132961172999956],[-60.25412349099997,-33.27271616499996],[-59.97742060599995,-33.495994643999836],[-59.84858354499994,-33.53766527499994],[-59.80777356699991,-33.591553703999864],[-59.678047521999986,-33.63494463799992],[-59.58985162799996,-33.692256067999836],[-59.4724764849999,-33.66348183299988],[-59.45325460199996,-33.72908480999996],[-59.37713954499998,-33.755940091999946],[-59.254436528999975,-33.933428903999925],[-59.15761951199994,-33.979787701999896],[-58.9773904889999,-34.121816871999954],[-58.787425549999966,-34.23594184799987],[-58.55087248399997,-34.29864887699989],[-58.436965604999955,-34.2618008579999],[-58.38360959399995,-34.20366967699988],[-58.37765458699988,-34.05355079699996],[-58.41252548399996,-34.01555663499994],[-58.45798456799997,-33.838758827999925],[-58.554973581999946,-33.72344295099998],[-58.52318554899995,-33.45239768299996],[-58.41423455399996,-33.30173314099994],[-58.43390252199998,-33.25682072399991],[-58.41324649499984,-33.07431517599997],[-58.240055587999905,-33.08519069499988],[-58.28657950999997,-33.00764819999995],[-58.4052845249999,-32.994815338999956],[-58.55928456199996,-33.010855954999954],[-58.58815753599998,-33.069673277999925],[-58.63869856899993,-33.40161843699997],[-58.76474747299994,-33.54255225999998],[-58.99538459099989,-33.48913271499998],[-59.387767630999974,-33.45594574199998],[-59.41644647999982,-33.39667043199995],[-59.80855962199985,-33.140228115999946],[-59.95031755399992,-32.9134200179999],[-60.20200749899982,-32.61042042099996],[-60.433170497999924,-32.428792960999886],[-60.603919588999986,-32.08417721399991],[-60.65138647399988,-32.03298172299998],[-60.64209362599996,-31.841504855999972],[-60.61041656999993,-31.761055683999928],[-60.31719949099988,-31.633996928999977],[-60.17087560199985,-31.460763776999954],[-60.09293748099992,-31.392675062999956],[-60.06859961899988,-31.324219556999935],[-59.990058503999876,-31.25516792899998],[-59.87448463199985,-31.106502805999924],[-59.78662149999991,-30.928794220999976],[-59.673740564999946,-30.796935819999874],[-59.57757163699989,-30.62682392199997],[-59.56915654199997,-30.538695920999942]]]},"properties":{"objectid":559,"eco_name":"Paraná flooded savanna","biome_num":9,"biome_name":"Flooded Grasslands & Savannas","realm":"Neotropic","eco_biome_":"NO09","nnh":1,"eco_id":585,"shape_leng":26.8105072644,"shape_area":3.50975852853,"nnh_name":"Half Protected","color":"#3688D1","color_bio":"#BEE7FF","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":37206.6337063206,"percentage":3.2175568112130697}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[70.61353254700015,38.06829441499997],[70.59297961700014,38.17879623000016],[70.52063759000004,38.19776313600005],[70.46415764400012,38.109110596],[70.33331261500001,37.99918059400005],[70.15914957500007,37.91602909700015],[70.23414648600004,37.82298259600009],[70.28637664000007,37.70026700700009],[70.13499460700007,37.52697535000004],[69.95864053700012,37.563004458000194],[69.91804463300014,37.60986767800006],[69.65914960400005,37.56903557200002],[69.51220662700013,37.57487222700007],[69.38114953600012,37.444220820000055],[69.4119265430001,37.29459680700012],[69.40998864699998,37.17320723500018],[69.31153162800007,37.11488930600018],[69.22755451300009,37.03218104400008],[68.98829660700005,36.8992569670001],[68.89472154300006,36.81808946700016],[68.75248751900011,36.734007243000065],[68.65363353200001,36.705847737000056],[68.49202758900014,36.72071756800017],[68.4057925570001,36.76502849900015],[68.32373858700015,36.68787425400018],[68.32173950300012,36.58747648800016],[68.19728852500003,36.57764267200008],[68.09211760000005,36.67366843700006],[68.00228153500007,36.61604067300004],[67.8735655100001,36.61164989700018],[67.82488257800014,36.569689754000024],[67.70006564600016,36.63574351000017],[67.53927660300013,36.614861842000096],[67.30703753500018,36.561942026000054],[67.17546864500014,36.55162725600013],[67.04273249100004,36.57990461200018],[66.9757996410001,36.496612467000034],[66.78590360100009,36.595510207000075],[66.41751057400006,36.61238599600006],[66.192443566,36.429601833000106],[66.0063475450001,36.34984970000011],[65.43920148900008,36.19920309600002],[65.21766661500004,36.101728267000055],[65.0758744850001,36.02197613500016],[64.730270512,35.747270490000176],[64.36694350700014,35.614350436999985],[64.1631246230001,35.57890135600013],[64.06565063300008,35.49028854700009],[64.01248153900019,35.39281405300005],[63.782077605000154,35.295339225000134],[63.321269569000094,35.25102829400015],[63.02883955100009,35.20672239200013],[62.851604544000054,35.1535539680001],[62.76298854900011,35.07380200300014],[62.64035761700012,34.92297267300006],[62.48827753900014,34.69276169000011],[62.41812151300019,34.65183889200006],[62.364215482000134,34.52469112099999],[62.49457151000013,34.451012180000134],[62.664600596000014,34.451012180000134],[62.69293947500012,34.485019237000074],[63.03300049600017,34.541692805000025],[63.52608858200017,34.46801772000015],[63.860481592000156,34.50202058700006],[63.944045478000135,34.46859774799998],[64.12482452200004,34.48887910400015],[64.3216855880001,34.47925533800003],[64.4847794870002,34.49599399900006],[64.67703251800009,34.58202065600017],[64.90382351700003,34.664648452000165],[65.03034951900008,34.73048075800011],[65.18907158400009,34.78273320700009],[65.28029653100009,34.77954054000003],[65.42749750300015,34.81458544499998],[65.55744164500004,34.89640438700002],[65.59589362600019,34.97777322100012],[65.52069052000007,35.019963363000045],[65.40213755200017,35.020554287000095],[65.45322458100003,35.10134409900007],[65.58857756500015,35.212173311000015],[65.33870649300019,35.15663280900003],[65.08477053400009,35.19248572900017],[65.00550857500014,35.253020337000066],[65.05621355700009,35.32232761200004],[65.16390961400009,35.32243758300018],[65.28948963400018,35.2793517500001],[65.3207246290001,35.317269804000034],[65.432472497,35.29903128600017],[65.53229560000017,35.36306366100018],[65.86641653300012,35.36127060500013],[66.01122262800016,35.48276578800005],[66.10251664100014,35.47030709500012],[66.24215663400014,35.59002112400003],[66.45891550000005,35.5645507000001],[66.37556451300003,35.38132011700009],[66.27088963000006,35.29834128700003],[66.1302946030001,35.230129024000064],[66.12213850900008,35.16512350900018],[66.28348561900015,35.03565277700005],[66.3969425570001,34.90151617400011],[66.4779965670001,34.92847371600004],[66.45874048600012,34.997353849000035],[66.35112757800005,35.11326500900003],[66.44077253500018,35.24536045100007],[66.55165857600014,35.321594698000126],[66.60023455500004,35.39362273900019],[66.79404460800004,35.45253947200018],[66.86628756100009,35.52186988100016],[66.97097753200018,35.53180243700007],[67.00580551299998,35.42386816600009],[66.99166155500018,35.30546691100005],[67.07788049300012,35.33420242200003],[67.07660661100005,35.402868649000084],[67.12883760300014,35.51811193900005],[67.18823948000016,35.57511759800008],[67.17649056600004,35.655964574000166],[67.2371215660001,35.70302544000003],[67.33532763200009,35.678146108000135],[67.41711455500007,35.553328002],[67.51970653500007,35.58030549300008],[67.53027360100009,35.50134327100017],[67.81607051500015,35.491463354000075],[68.01441953700004,35.513446907000116],[68.12510659200007,35.57677637600017],[68.25032853700009,35.69694872800011],[68.38023362000018,35.67707389500015],[68.26918748400004,35.529212429000154],[68.32816356100017,35.473038925000026],[68.53234856700016,35.476795862000074],[68.75035063700005,35.394060778000096],[68.91873150400005,35.44415857500019],[69.09925858800011,35.53798627000003],[69.34095764000011,35.56446369600019],[69.45558150700009,35.676624122000135],[69.41014857400017,35.73944346800005],[69.37342863000003,35.87732929600014],[69.44420659400015,35.92937203000008],[69.54656254000014,35.9291212440001],[69.5484695900002,35.986541639000166],[69.46741457500002,36.11999964300014],[69.68933049100013,36.25672675599998],[69.69600650900009,36.377489864000154],[69.76716652000005,36.44101848800011],[69.87688462699998,36.46847592600017],[69.88098153400011,36.551825069000074],[70.03742958900011,36.622544527000116],[70.14743050100014,36.61851283200002],[70.18019049900016,36.70236589400014],[70.27659663500009,36.750410963000036],[70.31452156199998,36.83604098900008],[70.42124950900018,36.800278761000186],[70.38976255400007,36.64776315900019],[70.42424050700004,36.54267052200015],[70.34153760900006,36.41247726900019],[70.43394457100004,36.29005504700007],[70.50612650400018,36.460828110000136],[70.57829251100009,36.57455259900013],[70.57456960500008,36.663105898000026],[70.46270757500014,36.711409632000084],[70.49975558700004,36.80414684100009],[70.50423454100007,37.059398424000165],[70.62831855900004,36.984700915000076],[70.81069955200002,36.94688277400013],[70.88035551500008,36.89142893999997],[70.85282163300013,36.715506539000046],[70.91999051800008,36.54033247400014],[71.03628556900014,36.48516161300006],[71.05282557800007,36.39460973400003],[71.2555466,36.20614180300015],[71.35720064600002,36.342093925000086],[71.42952758600006,36.367026064000186],[71.43847660800009,36.469323002000124],[71.48538257700005,36.511161942000115],[71.66107950500009,36.51299707600009],[71.86911750400009,36.58117866099997],[71.87159754100003,36.58280340900012],[72.091674635,36.7295182310001],[72.1089175510001,36.743964106000135],[72.23345151000007,36.815094613000156],[72.24775656899999,36.82006541700002],[72.31745963800006,36.84428811100014],[72.32449356300003,36.8467339500001],[72.35530862400014,36.85744082600013],[72.36052652700016,36.859252658000116],[72.38416248800013,36.863006577000135],[72.44322154500003,36.868015603000174],[72.51930961300013,36.87587346900017],[72.59452059800014,36.8912619730001],[72.61612662900018,36.89948193800018],[72.64102155200004,36.91427566100003],[72.6718676270001,36.92846119400019],[72.68256360599997,36.93338221000005],[72.73641951300016,36.9581547570001],[72.74584161000018,36.96248853600008],[72.78491251100002,36.99638478500009],[72.68641659900004,37.02264813800019],[72.24081450900007,36.94838179300007],[72.07106051800014,36.87411846599997],[71.8694836250001,36.693760194000106],[71.69525151800019,36.66979281200014],[71.56139353000009,36.76538674200003],[71.47884351900007,36.745173112000145],[71.40795156100017,36.66605364500009],[71.32764454700015,36.73511013400014],[71.28885661900017,36.90436456400005],[71.24543752200009,36.99453473100016],[71.1434175230001,37.06499032700003],[71.06137059300016,37.23562291000019],[70.92689552900003,37.27810625100011],[70.8408665250002,37.174901218000116],[70.83386964700003,37.07130726500009],[70.71088449700005,37.07875827400011],[70.53295848500011,37.19708375700009],[70.57000750300011,37.28982079900004],[70.74038661700018,37.21825024200018],[70.78183764200014,37.28979800000019],[70.76851661900008,37.38343123400006],[70.70066863300013,37.45332658400008],[70.69654859200006,37.60343976400003],[70.45225550900005,37.735906356999976],[70.47150455000013,37.8274387510001],[70.57711753600012,37.77155056800018],[70.64381451900016,37.827613765000194],[70.60734552900004,37.919684110000105],[70.61353254700015,38.06829441499997]],[[64.94999657100004,34.85825851300007],[65.03833059900018,34.79690398800011],[64.91999857800016,34.737354421000134],[64.79114559200019,34.74870720600006],[64.76760853700006,34.80870671300016],[64.94999657100004,34.85825851300007]],[[64.13227854900015,34.719979071000125],[64.09406260200012,34.66583834700009],[63.963272558000085,34.605445896],[63.83704361100007,34.59549322400005],[63.78636159500002,34.700925329000086],[63.84136163200003,34.77911624800009],[64.03241756000006,34.80203874100016],[64.13227854900015,34.719979071000125]],[[63.65876757100011,34.71666017300015],[63.58374048500019,34.59701219300007],[63.531379574000084,34.58488156699997],[63.300472558000195,34.652365779000036],[63.30873862400006,34.68729970700019],[63.65876757100011,34.71666017300015]],[[62.99419060800017,34.60304297200014],[62.81349957400005,34.598007292000034],[62.82054154600007,34.642881990000035],[62.98492055800017,34.67832805300003],[62.99419060800017,34.60304297200014]]]},"properties":{"objectid":560,"eco_name":"Paropamisus xeric woodlands","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Palearctic","eco_biome_":"PA13","nnh":4,"eco_id":834,"shape_leng":39.3361008727,"shape_area":9.25652562138,"nnh_name":"Nature Imperiled","color":"#E6644C","color_bio":"#CC6767","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":92803.49172146046,"percentage":0.35176583708375925}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-69.37591553999982,-52.48621437099996],[-69.55979957599993,-52.509415813999965],[-69.61596654199991,-52.56097172699998],[-69.58637959699996,-52.62997004599998],[-69.69393148499995,-52.74709540799995],[-69.90105451499988,-52.838211221999984],[-70.03049456999997,-52.82458392399997],[-70.13375056499984,-52.73108815199987],[-70.34701551799992,-52.74324928799996],[-70.26989748299991,-52.866275677999965],[-70.09574852399993,-52.92813294999985],[-70.14414261599984,-53.01469386999992],[-70.02061448499995,-53.08180324199998],[-69.88745856499992,-53.20029368099989],[-69.75115155299989,-53.36764022199998],[-69.58958450199992,-53.34334074999998],[-69.3787915389999,-53.351474045999964],[-69.31545251399984,-53.48200391499989],[-69.45397955799996,-53.54572230499991],[-69.34700048899987,-53.685061219999966],[-69.14149449599995,-53.791398736999895],[-68.92816952699997,-53.86233444899989],[-68.76696055099995,-53.946393370999886],[-68.59477262299998,-54.00014735399998],[-68.14168549299995,-54.05389379299987],[-68.04579149199992,-54.080585293999945],[-67.83434256099991,-54.01846583599996],[-67.66938754499995,-53.94104102199998],[-67.53593457099998,-53.932758863999936],[-67.55749550799987,-53.838773756999956],[-67.79193163999992,-53.72330817899996],[-68.0219345839999,-53.54750027399996],[-68.0672075899999,-53.40203519499994],[-68.13198863699995,-53.32340422599998],[-68.44380951699986,-53.29594175799991],[-68.52021760599985,-53.257236810999984],[-68.52681751599994,-53.1453306919999],[-68.37446552899996,-53.028766246999965],[-68.25185354099995,-52.99937359499995],[-68.58948548599994,-52.68766117699994],[-68.77886955899999,-52.539048188999914],[-68.81185150999988,-52.60887061599988],[-69.12790659199993,-52.70261449199995],[-69.21479055099991,-52.67448096899989],[-69.37591553999982,-52.48621437099996]]],[[[-73.10851264699994,-52.26105080299993],[-73.20076756199995,-52.24491463399983],[-73.4055406409999,-52.26847817499993],[-73.47708152599995,-52.39475154699994],[-73.32053355899995,-52.41773874799986],[-73.27072158399983,-52.382441212999936],[-73.10660559699988,-52.379686248999974],[-72.93240349699988,-52.29586470299989],[-72.97522764599995,-52.245078583999884],[-73.10851264699994,-52.26105080299993]]],[[[-72.06769551899998,-52.34721542699998],[-72.04232752099995,-52.282219299999895],[-72.15007755699997,-52.18652964899991],[-72.24706254699993,-52.20136192899997],[-72.36286155699997,-52.278492201999825],[-72.34187360699997,-52.372702111999956],[-72.25017558599984,-52.39460234899991],[-72.06769551899998,-52.34721542699998]]],[[[-60.8804895369999,-51.769801035999876],[-61.02174354899995,-51.78298409299998],[-61.136630606999915,-51.83456012299996],[-61.098407619999875,-51.93035689499993],[-60.99588755699989,-51.98826880499996],[-60.880783573999906,-51.923688754999944],[-60.8804895369999,-51.769801035999876]]],[[[-73.24902351899988,-51.364740870999924],[-73.39566759799993,-51.38075634099988],[-73.32468461199994,-51.47054781399993],[-73.12992857699999,-51.43834320099995],[-73.14064064999991,-51.365049995999925],[-73.24902351899988,-51.364740870999924]]],[[[-59.38389954999991,-51.34019748499992],[-59.39259359499994,-51.424103017999926],[-59.52664956399991,-51.46746176499994],[-59.58679960999996,-51.43880940199995],[-59.73131552299998,-51.462834786999906],[-59.88934758999994,-51.38611137099997],[-60.069248545999926,-51.424851186999945],[-60.082538555999975,-51.48821418399996],[-60.242088585999966,-51.495961241999964],[-60.52927052699988,-51.370605017999935],[-60.5945476149999,-51.439194298999894],[-60.41361249999994,-51.45961060399992],[-60.50875850099993,-51.530015740999886],[-60.225524604999976,-51.61448219099998],[-60.28418350999982,-51.68468951499989],[-60.3854295239999,-51.67741117299988],[-60.63397558499992,-51.731405381999934],[-60.53453855299995,-51.77990625899997],[-60.373378526999886,-51.719213064999906],[-60.2807345249999,-51.75803569399994],[-60.56435348499991,-51.98818481799992],[-60.692314636999924,-51.96536458399987],[-60.734878611999875,-52.016452450999964],[-60.94139847999992,-52.04664205499995],[-60.833755564999876,-52.128506426999934],[-60.71351649299993,-52.11472003999984],[-60.68609660599998,-52.21287816099988],[-60.613037590999966,-52.25838099899988],[-60.462207589999934,-52.17483722899988],[-60.36188157299995,-52.17402116699998],[-60.25721758599991,-52.09058770299998],[-60.26738751699992,-51.99650083899991],[-59.987594559999934,-52.005377274999944],[-59.854206628999975,-51.96409858099992],[-59.744461531999946,-51.820446003999905],[-59.62722351699995,-51.75851681499995],[-59.53398557299994,-51.635002430999975],[-59.43489052299998,-51.63754667399991],[-59.27423860799996,-51.47902409799997],[-59.24287453199997,-51.39352365599996],[-59.38389954999991,-51.34019748499992]]],[[[-60.26418663599986,-51.26928457199995],[-60.136737618999916,-51.40949570799995],[-60.07928051099998,-51.38317016099995],[-60.26418663599986,-51.26928457199995]]],[[[-59.74098957999996,-51.26633648899991],[-59.47782162499993,-51.346819858999936],[-59.49288960499996,-51.279267586999936],[-59.74098957999996,-51.26633648899991]]],[[[-58.86741254299994,-51.29189073299989],[-58.86942654699993,-51.390617481999925],[-59.00095352799997,-51.3913805709999],[-59.02795448799998,-51.492101207999895],[-59.16030457099998,-51.59701078399996],[-59.011615475999974,-51.669625055999916],[-59.04010757699996,-51.705498930999966],[-59.20769451099983,-51.72048711499991],[-59.385425558999884,-51.845230285999946],[-59.5027995289999,-51.84483717499995],[-59.59081252999988,-51.904278278999925],[-59.58235954799994,-52.07857140599998],[-59.64233357399996,-52.160707183999875],[-59.58008553799988,-52.25993701599987],[-59.420413634999875,-52.23741836199997],[-59.30429862699998,-52.17367030099996],[-59.04085960099991,-52.24388868899996],[-59.13272056599993,-51.99359801899993],[-58.97895052899992,-52.08985981799998],[-58.634159599999975,-52.04394894899997],[-58.633178581999914,-51.90631943999995],[-58.38478054599989,-51.90124218599988],[-58.237533473999974,-51.84564921299989],[-58.225921519999986,-51.79332652399995],[-57.8190454999999,-51.72331818599997],[-57.77691654599988,-51.62365350199997],[-58.14336362999995,-51.559496234999926],[-57.991966508999894,-51.505456261999825],[-57.81890853899995,-51.55163820099989],[-57.850532621999946,-51.416244983999945],[-57.93923562099991,-51.36579112299995],[-58.267456532999915,-51.397460635999835],[-58.413536508999925,-51.32188621199998],[-58.526134637999974,-51.30238202599992],[-58.711982553999974,-51.33110647299992],[-58.86741254299994,-51.29189073299989]]],[[[-72.5423206189999,-46.003826971999956],[-72.56677264199988,-45.94226071999998],[-72.82234156399983,-45.89431371899997],[-72.96504262799988,-45.78202052399996],[-73.11077156999988,-45.796833693999986],[-73.06642157899995,-45.90989668299994],[-73.08593749999983,-46.04274012499991],[-73.16848751099997,-46.09384224199994],[-73.24351459699989,-46.21683258999991],[-73.40476950599998,-46.31473288399985],[-73.46653759499992,-46.436487402999944],[-73.2362055779999,-46.386907272999906],[-73.19580849199991,-46.413274392999824],[-73.24156161399986,-46.78842910099985],[-73.23768649199997,-46.971325916999945],[-73.28364564099996,-47.2558154219999],[-73.3785475599999,-47.40449831499984],[-73.53981051599993,-47.391093303999924],[-73.63288149299996,-47.44269179799994],[-73.57906363899997,-47.58460663899996],[-73.62141454599993,-47.70433156399997],[-73.5270006209999,-47.72259656999984],[-73.26503764799992,-47.58205870799998],[-73.32550050699996,-47.51844827699989],[-73.18083958699992,-47.383296289999976],[-72.97752361699997,-47.30031863399984],[-72.90600553099995,-47.242060383999956],[-72.90387753299996,-47.14770278499992],[-73.04780553999996,-47.11407274499993],[-73.11330458099997,-47.03656830399984],[-73.05575560699992,-46.759085734999985],[-73.12194062399988,-46.62878318199995],[-73.07948259599988,-46.51535692099992],[-72.95992262599998,-46.34732608199994],[-72.8283465269999,-46.314153190999946],[-72.56066156399999,-46.29115794299997],[-72.6343155269999,-46.21269779699992],[-72.79666863299997,-46.18930172599988],[-72.88278162399996,-46.1132553999999],[-72.79226662499991,-46.02506721799995],[-72.61136654699993,-46.06722332899989],[-72.5423206189999,-46.003826971999956]]],[[[-64.5607295879999,-42.493392376999964],[-64.34578657799989,-42.53589516399995],[-64.27709151699992,-42.57697202199995],[-64.26129950799998,-42.74757895499994],[-64.15083356799988,-42.87118235499997],[-64.08871461299992,-42.8734441279999],[-63.78187560099991,-42.81676653699998],[-63.63584859799994,-42.76583289599995],[-63.64360051699998,-42.70196329699991],[-63.58766958599989,-42.59919965499989],[-63.602233477999846,-42.341000324999925],[-63.748405487999946,-42.08099217899996],[-63.92899359199993,-42.09630809599997],[-64.07243360399985,-42.17773945799996],[-64.19017755099998,-42.207383567999955],[-64.05946361499997,-42.279449829999976],[-64.05645752899994,-42.37947828899996],[-64.12579363799995,-42.43092272299998],[-64.28409560299991,-42.41636687799996],[-64.47688256099997,-42.44127286499997],[-64.57154861399988,-42.427539786999944],[-64.5607295879999,-42.493392376999964]]],[[[-68.78371463499991,-37.85668480399988],[-68.71988660899996,-37.84146108799996],[-68.71592750099995,-37.69226404999995],[-68.82424163899998,-37.61566937999993],[-69.05559557799995,-37.619457497999974],[-69.18060261199997,-37.663916452999956],[-69.20373549099997,-37.88659948099996],[-69.15122957299997,-37.927427730999966],[-69.03273058499997,-37.905463121999844],[-68.94654852699989,-37.936319589999925],[-68.78371463499991,-37.85668480399988]]],[[[-65.34719048799997,-43.73327752599994],[-65.46305856499998,-43.72818451399996],[-65.83953861999998,-43.87021720499996],[-65.87904353499988,-43.91203401699994],[-66.14839163499994,-44.02059575599992],[-66.19814258899999,-44.06348075799997],[-66.60614748499995,-44.15035231199994],[-66.74108858199992,-44.205638338999904],[-67.06332364199983,-44.22815330499998],[-67.15509760299994,-44.16878931299988],[-67.37497755399988,-43.92768906499998],[-67.52924363199998,-43.56771599499996],[-67.49379756999991,-43.2614702539999],[-67.26213048299985,-43.11387985899995],[-67.09137753599992,-43.03924923699998],[-67.03314962799988,-42.963402903999906],[-67.01966063199995,-42.63767845799998],[-67.11916354499994,-42.41592783399989],[-67.25833163699986,-42.36673746099996],[-67.4455716189999,-42.38959507899989],[-67.60805548299999,-42.383846098999925],[-67.66043852199988,-42.416527139999914],[-67.76248953499999,-42.3791922989999],[-67.87808955799994,-42.260376976999964],[-67.79827858499988,-42.05276360599987],[-67.35880249299993,-41.72217312999993],[-67.04661549099984,-41.73021824799997],[-66.79872858399995,-41.78831958899997],[-66.65891257099992,-41.84292232399997],[-66.41564157799996,-41.74855902599995],[-66.35131851699998,-41.64610467599988],[-66.27667951299998,-41.685704641999905],[-66.15246557599994,-41.68832532799996],[-66.12349654499997,-41.534354795999946],[-66.20391051199994,-41.33605673599993],[-66.18399058399996,-41.01133778399998],[-66.22303751199996,-40.90380986799994],[-66.33125257599988,-40.829523741999935],[-66.51709764199995,-40.87540611299994],[-66.61067957999995,-40.95971732999993],[-66.86422762499996,-40.95809643799993],[-66.94080351899987,-40.91571183499991],[-67.19101757799996,-40.91339993899993],[-67.40097855299996,-41.16653324699996],[-67.49236258799993,-41.22508084099991],[-67.62097953999995,-41.18274904499998],[-67.59377255199996,-40.77600730199998],[-67.49008958299999,-40.63411391899996],[-67.5436625179999,-40.5784845689999],[-67.53512554899993,-40.41024753399995],[-67.57628656099996,-40.36670706799987],[-67.73007151799999,-40.337047199999915],[-68.46835357399993,-40.04425391099994],[-68.87551860299993,-40.08500253299991],[-68.94445053599998,-39.953138096999965],[-69.24982455899982,-40.046447957999874],[-69.73249058699997,-40.010399403999884],[-69.94358060399998,-40.036823185999936],[-70.15402957399988,-39.97335474499988],[-70.14233363299991,-39.85679549599985],[-69.98896056299998,-39.61508755999995],[-69.74546057599997,-39.50740809899992],[-69.6376416409999,-39.39025993799993],[-69.71028860199993,-39.280520373999934],[-69.85360757899986,-39.23287914499991],[-69.98522960999998,-39.22605912599988],[-70.0543824909999,-38.98730497199989],[-70.0839766439999,-38.703346375999956],[-69.94170356099994,-38.58169428299993],[-69.96905555499995,-38.498393755999984],[-70.04671455799996,-38.50170175799997],[-70.16489453199983,-38.57514851999997],[-70.17544550399992,-38.494788866999954],[-69.96952058299996,-38.34078849499997],[-69.87427550799998,-38.23175938099985],[-69.86010757699995,-38.13551602199993],[-69.93572961099983,-37.8261724969999],[-70.12829562199994,-37.60825340799994],[-70.12416049399985,-37.560643358999926],[-69.8408126039999,-37.65021086799982],[-69.76399262899986,-37.82343362599988],[-69.74877964199993,-37.99824223999997],[-69.64711754999996,-38.229493249999905],[-69.54875155799994,-38.292213354999944],[-69.49443062199987,-38.265190601999905],[-69.48165157299997,-38.09243672699989],[-69.65012363599993,-37.68135030899998],[-69.5855865019999,-37.55796165299989],[-69.28450753299995,-37.430592096999874],[-69.37940962099998,-37.34312961899991],[-69.54975855899994,-37.371572098999934],[-69.5890654939999,-37.25455435999987],[-69.65836354899994,-37.23571368599994],[-69.80326855099997,-37.325471966999885],[-69.84329951399997,-37.14268277499991],[-69.88319351799998,-37.07690394499991],[-69.87000258199987,-36.90539863899994],[-69.69222258299993,-36.9803209509999],[-69.40488457099997,-37.14535760799998],[-69.16305559999995,-37.24880554799995],[-69.0144045589999,-37.22999203099994],[-68.74253048899993,-37.10522337899988],[-68.58193959399989,-36.987000657999886],[-68.48117050999991,-36.818337319999955],[-68.45839654299994,-36.71010951499994],[-68.36462349899989,-36.603307807999954],[-68.30937954799998,-36.58885824499998],[-68.3345336399999,-36.440240563999964],[-68.28356948899983,-36.36596617199996],[-68.26196261899997,-35.82040435499994],[-68.30490159999994,-35.63082179799983],[-68.46259352999994,-35.42817872799992],[-68.76844750099997,-35.280584476999934],[-69.06649758399993,-35.30325500999993],[-69.12155964799996,-35.18119086299998],[-69.11192364399983,-35.08109953999991],[-69.15124549899991,-35.045440240999824],[-69.12245952899991,-34.74634593999997],[-69.08818860899999,-34.719738761999906],[-69.05621349199998,-34.40038120999998],[-69.08670853199993,-34.36735818799997],[-69.10378263699994,-34.087366913999915],[-69.13361349499996,-34.00059208799996],[-69.09255960399992,-33.377960179999945],[-69.25746164599997,-33.37015109599997],[-69.27615362599994,-33.63966750499998],[-69.32093059099986,-33.68984107399996],[-69.33209260399997,-33.793475092999984],[-69.26977549999998,-33.92297331799995],[-69.27467354899994,-34.0506707749999],[-69.23992150799995,-34.08026794499989],[-69.2584606019999,-34.26374998499989],[-69.3870084859999,-34.419133873999954],[-69.31623856899995,-34.452133761999846],[-69.34805258599994,-34.52652181199994],[-69.3156895539999,-34.65641650099997],[-69.27777854199991,-34.68492268299991],[-69.34439857899997,-35.009206279999944],[-69.39328753799992,-35.03293276499994],[-69.63047058699988,-34.912593780999885],[-69.74319461199997,-34.9043919209999],[-69.60816148099991,-35.06494476199998],[-69.41255954499997,-35.216335176999905],[-69.41706850599991,-35.323704506999945],[-69.58693649099996,-35.30922460199997],[-69.76126850999998,-35.266897834999895],[-69.84901463099999,-35.36683627199983],[-69.71090651499998,-35.439237642999956],[-69.46820062999996,-35.49662803099989],[-69.47871354799997,-35.638451844999906],[-69.52245350399988,-35.66823207599987],[-69.54782854199988,-35.84424198499988],[-69.66071349999993,-36.00207908899995],[-69.79551663099994,-36.02415383699997],[-70.02513149299995,-36.001129251999885],[-70.08616649999993,-36.07309560199997],[-69.9345014939999,-36.15818365399997],[-69.89565254599995,-36.23587584999996],[-70.13814553199995,-36.417565838999906],[-70.27447551099988,-36.60975080899988],[-70.29996454299999,-36.70462355999996],[-70.38996858099995,-36.729171303999976],[-70.38179052599997,-36.941904844999954],[-70.47179456399994,-36.941904844999954],[-70.46360762399996,-37.081001019999974],[-70.50452455499993,-37.25282634699988],[-70.60270664799992,-37.277370067999925],[-70.63053154899995,-37.002453533999926],[-70.56507156799995,-36.85190265099982],[-70.6043474899999,-36.72753415099987],[-70.5323405709999,-36.675171227999954],[-70.55197853199996,-36.583528359999946],[-70.63706960199983,-36.590075129999946],[-70.70907551399989,-36.675171227999954],[-70.78762853199999,-36.62935038099994],[-70.83999648299994,-36.70135076199989],[-70.96436364199997,-36.94354065699997],[-70.83999648299994,-37.07445508899991],[-70.90544858599998,-37.2970075259999],[-71.06255361499996,-37.36246616699998],[-70.87271859499992,-37.40173756199988],[-70.93817857699992,-37.55228961899991],[-70.91199451699998,-37.68975014899996],[-70.85308851299988,-37.715933538999934],[-70.91199451699998,-37.82720933799993],[-70.91199451699998,-38.0235788899999],[-70.83999648299994,-38.206856578999975],[-70.75489854099993,-38.5799624149999],[-70.63706960199983,-38.75015259999998],[-70.63706960199983,-39.005435698999975],[-70.57489063199995,-39.19853278799991],[-70.6468884979999,-39.30326315899998],[-70.82363148799993,-39.453815886999905],[-70.93490561099992,-39.48654135199985],[-70.96763660799996,-39.552000662999944],[-71.15091664399995,-39.64364034499994],[-71.22292356299994,-39.78764714199997],[-71.22946949399994,-40.02983904899992],[-71.07237251199996,-40.21966367499988],[-71.15091664399995,-40.625500004999935],[-71.14109757999995,-41.054245248999905],[-71.24583448899995,-41.17861425199982],[-71.15418960999995,-41.302984092999964],[-71.00363956399991,-41.610632126999974],[-70.94472450799992,-41.695726548999914],[-71.14764351099996,-41.78736975199996],[-71.22619652799995,-42.140836788999934],[-71.29820260899993,-42.232480326999905],[-71.38329350999999,-42.22593422799997],[-71.40293163899997,-42.369942197999876],[-71.4484866119999,-42.44152080099997],[-71.29165650999983,-42.46812747699988],[-71.23274262699994,-42.38303003699991],[-71.15418960999995,-42.38303003699991],[-71.17382857599995,-42.54667613499987],[-71.33093259899994,-42.62522362099992],[-71.1181864859999,-42.674318438999876],[-71.19019357199988,-42.76595895999998],[-71.19673950299989,-42.89687422999998],[-71.27529151499988,-42.89687422999998],[-71.32765963399987,-42.78559675399998],[-71.44548052699986,-42.92960388499989],[-71.32765963399987,-43.027790336999885],[-71.32111353499994,-43.12597578399988],[-71.20328560199982,-43.145613744999935],[-71.0789186099999,-43.32234801699991],[-71.1050946229999,-43.59072700199988],[-71.31456760399993,-43.695458713999926],[-71.30147557399994,-43.80019143299995],[-71.20328560199982,-43.89837704699994],[-71.28838354399988,-44.02929382499991],[-71.24910762199994,-44.17330129199996],[-71.38656664399997,-44.23221232499998],[-71.34074361699993,-44.31076400099994],[-71.22292356299994,-44.36967419599995],[-71.30147557399994,-44.487498776999985],[-71.42911553099992,-44.54968595999998],[-71.18692060599989,-44.595503622999956],[-71.0821915759999,-44.66096460999984],[-71.06255361499996,-44.751929549999886],[-71.31784056999993,-44.844245651999984],[-71.41602350099998,-45.047164486999975],[-71.46839162099997,-44.994799720999936],[-71.6123965729999,-45.07989464599996],[-71.67131062399989,-45.28281381599987],[-71.57312048399996,-45.335181935999856],[-71.56657455199996,-45.40718382499995],[-71.69766248899987,-45.422004035999976],[-71.70927460999991,-45.54333795199989],[-71.58359551599989,-45.569522178999875],[-71.45791658899998,-45.66378036799989],[-71.46466049999998,-45.72734453099997],[-71.62025460699994,-45.86277379099994],[-71.75777464899994,-45.877342879999844],[-71.77854148499995,-46.03951325999998],[-71.94698353999996,-46.159112456999935],[-72.26559459999993,-46.27308387699992],[-71.98269665099997,-46.412725545999876],[-71.85897053899998,-46.38799440499997],[-71.81842056799996,-46.518030747999944],[-71.87755556599984,-46.59744106699998],[-72.35589552499994,-46.740050767999946],[-72.40692857499994,-46.85707822899991],[-72.29451753099983,-46.96231201799998],[-72.18057259799997,-46.97188297799994],[-71.83382449499993,-47.0915846019999],[-71.81042456799997,-47.17101101399987],[-72.17773448499997,-47.78520418999989],[-72.22189353599993,-48.0662041409999],[-72.20583364199996,-48.234807799999885],[-72.15364858299995,-48.38333797399997],[-72.06533852799998,-48.45960960499991],[-72.09343751699993,-48.535881235999966],[-72.31021163799994,-48.491722016999915],[-72.40253461399988,-48.56799465399996],[-72.44567861699988,-48.83885937599996],[-72.44329849099995,-48.953061465999895],[-72.63243865099997,-49.23856367299993],[-72.65623453899991,-49.33611058499997],[-72.76805164199999,-49.44079468899997],[-72.79660761299982,-49.58354637899993],[-72.86560056699989,-49.68823064999992],[-72.91199456799995,-49.90473638299994],[-72.7882765039999,-50.35677962999989],[-72.55536654899998,-50.62180635599998],[-72.41831958199998,-50.8373815299999],[-72.25653057799985,-51.19901740199998],[-72.02813762999995,-51.32273730999998],[-71.99006652299994,-51.48452111699993],[-71.70456649499994,-51.60824102599997],[-71.30487057999989,-51.74147640599995],[-71.24777255299989,-51.817610740999896],[-71.41906764099997,-51.83664319399992],[-71.83779952799995,-51.69389049799986],[-72.09474961999996,-51.570174444999964],[-72.18911761299995,-51.638744614999894],[-72.08989750399996,-51.685624431999884],[-72.08007860799995,-51.756097797999985],[-71.99351450199987,-51.82907785499992],[-71.89286058599998,-51.810622580999905],[-71.67644453899993,-51.89450514799995],[-71.60940557499998,-52.11263328199993],[-71.55794555099999,-52.17052608099988],[-71.36669952099999,-52.24766171899984],[-70.77498660999998,-52.53734733299996],[-70.56011149299997,-52.666934908999906],[-70.55100254299992,-52.723915924999915],[-70.32417248499985,-52.63783629399995],[-69.92841354999996,-52.527265076999925],[-69.85199758299996,-52.48794925699997],[-69.70076759799997,-52.54693740399995],[-69.55024755999983,-52.46725869699998],[-69.44712852499993,-52.26159679999995],[-69.20446756699994,-52.194570575999876],[-68.99999958799998,-52.28052112599994],[-68.72460964399994,-52.30588577099991],[-68.59252157899988,-52.34354532699996],[-68.36820257099998,-52.307571706999965],[-68.62894463599997,-52.07041531199991],[-68.75740048799997,-51.92886491599995],[-68.84633650399991,-51.78677221099997],[-69.00440964199998,-51.61043926399992],[-69.09169760899982,-51.65650201299991],[-69.19781451499989,-51.62622037599988],[-68.9409334899999,-51.547499049999885],[-69.11328855299996,-51.172381892999965],[-69.16187257899992,-50.99059014699992],[-69.12796761299984,-50.898913583999956],[-69.14242555699997,-50.737809213999924],[-69.0772626299999,-50.56172755599994],[-68.87493857499999,-50.34024733199982],[-68.38013454599997,-50.17949315699997],[-68.36395261099989,-50.137325646999955],[-68.49449957999991,-50.07997783799988],[-68.50725549499998,-49.945115195999904],[-68.33169552699991,-50.124587332999965],[-68.13983158399998,-50.10695616699991],[-67.99597951799996,-50.05509833799988],[-67.77747352799992,-49.89636235899985],[-67.71281452099998,-49.75208164199995],[-67.69471748899991,-49.57195336899997],[-67.58488454999997,-49.25927367899993],[-67.62637362899994,-49.11308205599988],[-67.56449858799994,-49.03164113699995],[-67.40019953899997,-48.89110981299996],[-67.22180950499995,-48.81204885299985],[-67.11443363799998,-48.66634555899998],[-66.85630756499995,-48.571682523999925],[-66.68132058299989,-48.447212434999926],[-66.48875457199995,-48.41487823799997],[-66.07432561799993,-48.10736967899987],[-65.95225560399984,-48.09838159699996],[-65.95166048899989,-47.96078829699985],[-65.84757954699995,-47.88888799699998],[-65.88330858299997,-47.79484823999991],[-65.73921964399995,-47.5103071019999],[-65.71581250899999,-47.33503999699997],[-65.75169359199998,-47.198702139999966],[-65.8631826269999,-47.10959764699993],[-65.97236663899992,-47.07450949199995],[-66.19187963099995,-47.09455263399997],[-66.50030550499991,-47.049062368999955],[-66.73990656599995,-47.03458531299998],[-67.04499862199998,-46.79549420699982],[-67.12089558199995,-46.699824672999966],[-67.33976752599989,-46.61882313399997],[-67.42070754199995,-46.55407997299989],[-67.55683853399995,-46.360704101999886],[-67.60772657699994,-46.25333192199997],[-67.61574554399988,-46.064969099999985],[-67.5451275069999,-45.927097688999936],[-67.36695858699994,-45.774635396999884],[-67.34336051299994,-45.62965428799998],[-67.2065886399999,-45.5268819289999],[-67.05215458799995,-45.33566171599995],[-66.84672553999991,-45.231452865999984],[-66.5491485309999,-45.21590778899997],[-66.58834063399996,-45.139369612999985],[-66.35326362199999,-45.0402257799999],[-66.28469060099991,-45.05461767599991],[-66.19528955699991,-44.98504955599992],[-66.0052795229999,-45.005248768999934],[-65.9351885399999,-45.04733145499995],[-65.75264761999995,-45.02331847599987],[-65.64631664099994,-45.04863668499985],[-65.57592759699997,-44.899790512999914],[-65.72367054299986,-44.8498296759999],[-65.63782459899994,-44.668376726999895],[-65.45707656799993,-44.57521773999997],[-65.40155048299988,-44.58436189399998],[-65.33264151599991,-44.46054006199989],[-65.21665156599988,-44.36999505499995],[-65.30622862999996,-44.222812355999906],[-65.23773154999992,-44.14541654399994],[-65.23549659899993,-44.03656059999997],[-65.3014675419999,-43.93180910599989],[-65.34719048799997,-43.73327752599994]]]]},"properties":{"objectid":561,"eco_name":"Patagonian steppe","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Neotropic","eco_biome_":"NO08","nnh":2,"eco_id":578,"shape_leng":156.277392371,"shape_area":66.7723617552,"nnh_name":"Nature Could Reach Half Protected","color":"#E69800","color_bio":"#FEFF73","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":576570.7282692504,"percentage":5.441760510164178}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[119.54338637900003,-20.064235464999967],[119.46938000300008,-20.011519996999937],[119.17937000300014,-19.95311999699993],[119.10126000300022,-19.961489996999887],[119.06858000300008,-20.016429996999932],[118.99327000300002,-20.03752999699998],[118.97013000300012,-20.109689996999975],[118.89331000300001,-20.174999995999826],[118.81823000300005,-20.280699995999953],[118.67004000300028,-20.32922999599998],[118.53414000300006,-20.312669995999954],[118.48468000300011,-20.346189995999907],[118.329010003,-20.34041999599998],[118.20430000300018,-20.37586999599995],[118.1804700030001,-20.336339995999936],[117.9898200030002,-20.47313999599993],[117.7925500040003,-20.653489995999962],[117.70283000400002,-20.689199995999843],[117.63685000400017,-20.662869995999813],[117.5219700040002,-20.715029995999885],[117.33160000400005,-20.735649995999893],[117.21172000400031,-20.697129995999944],[117.0909100040002,-20.628039995999927],[116.98767000400005,-20.658919995999838],[116.898260004,-20.724219994999885],[116.82986000400024,-20.708829994999917],[116.7705200040001,-20.5886999949999],[116.69114000400009,-20.681649994999873],[116.52778000400008,-20.75281999499998],[116.46071000400002,-20.822699994999937],[116.34491000400021,-20.83861999499993],[116.30145000400034,-20.87760999499983],[116.19108000400001,-20.887679994999928],[116.1881200040001,-20.968549994999933],[115.9910300050002,-21.039619994999953],[115.88244000500003,-21.117809994999902],[115.81818000500016,-21.252519994999943],[115.70208000500031,-21.27829999499994],[115.5510000050001,-21.41036999499994],[115.46136000500007,-21.52939999499995],[115.41131000500002,-21.52487999499988],[115.3030300050001,-21.5928199949999],[115.23000714900024,-21.59291172299993],[115.22259528600011,-21.76353453799993],[115.26839450800003,-21.799133317999974],[115.33665471600034,-21.98015208499993],[115.35653692500023,-22.11950491399989],[115.28762812600019,-22.13696290999991],[115.23094181800002,-22.277030881999963],[115.2281570140002,-22.391586351999877],[115.33125308300009,-22.508344586999954],[115.51264953700013,-22.47904011299994],[115.48819734700021,-22.558053966999978],[115.39159406800002,-22.60160449199992],[115.26349645900007,-22.586549755999954],[115.2538071470002,-22.714168757999914],[115.32463070900019,-22.705160055999954],[115.39310448700019,-22.81151768999996],[115.57382200800009,-22.93145182899991],[115.71401973200011,-22.954387732999976],[116.0562665860001,-22.885643050999818],[116.15451053700019,-22.799619746999895],[116.13755042600008,-22.754602387999967],[116.30420680200018,-22.753889088999927],[116.50784296000006,-22.847999588999926],[116.65207673900011,-22.802831691999927],[116.8314742770001,-22.887111728999912],[117.0650710450002,-22.963516295999966],[117.16155245000004,-22.969745558999875],[117.1403122050001,-23.035268740999925],[117.32961279500023,-23.119981786999972],[117.35326384300026,-23.17128188299995],[117.49378209100018,-23.196249058999854],[117.57073215400021,-23.2664890719999],[117.68872068400003,-23.306066573999942],[117.77337656500026,-23.399692600999913],[117.95260613000016,-23.49325559499988],[118.23328404900008,-23.47098353799987],[118.36749273600014,-23.44821744999996],[118.41185764700015,-23.518108440999924],[118.52403265700002,-23.484930017999886],[118.57159425800023,-23.570989532999874],[118.75511167000002,-23.536365734999833],[118.9012603770002,-23.52921479799994],[118.94978338200019,-23.475217739999948],[119.23471830200015,-23.578851758999974],[119.32942961700007,-23.53930476599993],[119.31685642700006,-23.472604764999915],[119.50395207300016,-23.448358601999928],[119.62064358700002,-23.487295056999926],[119.71102145900022,-23.465957580999884],[119.82530217100009,-23.344554933999916],[119.90508263400011,-23.320230482999932],[120.08296204200008,-23.408803897999974],[120.29898832900005,-23.39267929499988],[120.41641996700025,-23.40092272999982],[120.45803829500016,-23.362104459999898],[120.64488986000003,-23.38300892599989],[120.71100614500017,-23.410898200999895],[120.75704961600013,-23.298526718999938],[120.81214135000016,-23.362972321999962],[120.89686579500017,-23.368804953999813],[120.838073785,-23.287691096999936],[120.90269473900003,-23.23893742199988],[120.95266731000004,-23.143068230999972],[121.09854125900029,-23.07314103099992],[121.20756534500015,-23.102706852999972],[121.26654812700019,-23.076482726999927],[121.30738073600014,-22.91119193199995],[121.24612427800002,-22.851278255999944],[121.15075682800011,-22.8275606549999],[121.23247535400014,-22.678447937999863],[121.23974615300017,-22.61402697699998],[121.19100186600019,-22.469606450999947],[121.20717625600003,-22.428249301999983],[121.40242028600017,-22.41602127999988],[121.40473939000003,-22.309953658999973],[121.35562127000014,-22.1995257719999],[121.39997109300009,-21.998794613999905],[121.38182075200018,-21.812002224999958],[121.31076048600005,-21.674232402999962],[121.3430710460002,-21.595108074999928],[121.32646180200027,-21.47880547999989],[121.25736994200008,-21.312080372999844],[121.20300290700004,-21.287605215999974],[121.11409002400012,-21.119302802999982],[121.13660431800008,-21.062393200999907],[121.09805292800013,-20.975177821999978],[121.17671960400014,-20.90254209299991],[121.09581764300003,-20.78218835699988],[120.75218961900009,-20.68536379699998],[120.61782067000013,-20.634298392999938],[120.63150781500008,-20.578762080999923],[120.46987907400012,-20.528896293999935],[120.38698573900024,-20.584010995999904],[120.30144506400006,-20.47828871099989],[120.18711104300007,-20.521682660999943],[120.03927606400009,-20.40504462299998],[119.98385626100003,-20.420789691999914],[119.80202478600017,-20.363697029999912],[119.62039950500014,-20.33016204099988],[119.41519157300024,-20.317861597999922],[119.39915464400019,-20.25716019099991],[119.37258149700006,-20.136926649999964],[119.47065730800023,-20.07426085999998],[119.54338637900003,-20.064235464999967]]]},"properties":{"objectid":570,"eco_name":"Pilbara shrublands","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Australasia","eco_biome_":"AU13","nnh":2,"eco_id":213,"shape_leng":36.1124827447,"shape_area":15.5796160536,"nnh_name":"Nature Could Reach Half Protected","color":"#E34661","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":179097.8123342628,"percentage":0.6788590677678494}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[22.38439556500009,37.073562164000066],[22.300910469000087,37.106230464000134],[22.253723539000077,37.0263752350001],[22.300910469000087,36.91385539300006],[22.417062524000187,36.866668631000096],[22.424322594000103,36.95378275600012],[22.38439556500009,37.073562164000066]]],[[[22.631219480000084,37.218750306000175],[22.725595519000024,37.05541249400005],[22.801820547000148,37.09533969000017],[22.736484448999988,37.27682432200004],[22.66751848500013,37.316752356000165],[22.631219480000084,37.218750306000175]]],[[[22.068603507000148,37.6797243040001],[22.144830547000083,37.567200606000085],[22.213794499000187,37.52001451400014],[22.3480965600001,37.59623803300008],[22.333578601000113,37.65431590500003],[22.24283444100007,37.73053959200013],[22.137569471000063,37.741426175000186],[22.068603507000148,37.6797243040001]]],[[[22.12668054100004,37.90839603300009],[22.231945510000173,37.814023012],[22.540475488000027,37.741426175000186],[22.58403355600018,37.759576013000185],[22.580402516000106,37.90476516100006],[22.38439556500009,37.962839344000145],[22.260982602000183,38.04995363800009],[22.144830547000083,38.028175945000044],[22.12668054100004,37.90839603300009]]],[[[21.836297552000076,38.07536304200016],[21.767332594000038,37.94832037900011],[21.86170745900006,37.90113747300006],[21.966970584000023,37.973729951],[21.927043556000115,38.08625012800019],[21.836297552000076,38.07536304200016]]],[[[22.47876556900019,40.43812431900011],[22.375253591000103,40.49100373500005],[22.208061445000112,40.463839160000134],[22.180206537000174,40.54900901900004],[22.089048478000052,40.62654916800017],[22.036685555000133,40.722781966000184],[22.077402494000125,40.86445859300011],[21.828659459,40.82632294500007],[21.632734484000025,40.72322402700007],[21.46727353500006,40.71770001800013],[21.357833540000172,40.801821133000146],[21.332822444000044,40.988015390000044],[21.140260456000078,41.080894253000054],[21.12446056800019,41.161375611000096],[20.974332468000057,41.35406567400008],[20.62845457400016,41.551096726000026],[20.518333466000172,41.63936822400012],[20.464818534000074,41.71886252900015],[20.407773480000117,41.89470681200004],[20.494113453000182,42.21961368700016],[20.466472451000016,42.319397897000044],[20.389574525000057,42.396297165000135],[20.224065464000148,42.45802300900016],[20.192884449000076,42.38858028200019],[20.095458571000165,42.367569533000164],[20.017137565000155,42.273965132000114],[19.88341553099997,42.23193843700011],[19.835657459000174,42.117319264],[19.719123523000178,42.096075498000175],[19.79839151700014,41.92700966100017],[19.95333250600015,41.79290088600004],[19.98070746700006,41.67310085800017],[19.945983589000036,41.6239453550001],[19.796239547000084,41.52487109200007],[19.875740558000075,41.3504037890001],[19.813703578000116,41.236737805000075],[19.882122539000136,41.13952181000013],[20.03458047300012,41.115065931],[20.103097502000082,41.01131506900009],[19.97271347800006,40.94562978200008],[19.97849648800019,40.88543531100004],[20.197690465,40.56696892300016],[20.14526551600011,40.494913557000075],[20.166650601000185,40.42681428200018],[20.256559588000187,40.32679051700012],[20.468669516000034,40.26281430000017],[20.509122592000097,40.181394336000096],[20.672840440000016,40.108119236],[20.719684550000125,39.977059127000075],[20.86733646800019,39.870424219000085],[21.021202562000155,39.706989512],[21.03350451400013,39.553805705000116],[21.082620455000153,39.429722525000045],[21.16743659800011,39.33232279900017],[21.160539465000113,39.26889392000015],[21.391386466000085,38.91913704900003],[21.38946550200012,38.72156938800009],[21.43545549600003,38.675022836000096],[21.72555953500006,38.59650619600012],[22.111850440000012,38.59534329100006],[22.29713660100009,38.541945035000026],[22.35055145200016,38.608011196000064],[22.45357560300016,38.66239616900015],[22.389511544000186,38.707691304000036],[22.35020259700019,38.80652902900016],[22.276494488000026,38.85261323600014],[22.126228589000164,38.846281379000175],[22.03383051100019,38.95514352600003],[22.09064858300019,38.99552485300012],[22.057083587000022,39.09841724100011],[21.880723483000168,39.19706000400009],[21.7566545520001,39.37211018400012],[21.60773244000012,39.41816455100013],[21.632207597000047,39.48990945200018],[21.607883481999977,39.58458237800011],[21.64661944100004,39.72732635600016],[21.83967059700018,39.657849096],[21.965471565000087,39.69043475100011],[22.026882584000077,39.756180052000104],[22.00606948000012,39.89774117700006],[22.027360520000173,39.98436395500016],[21.98841048700018,40.10402232900003],[22.076396498000065,40.16063571500018],[22.23975157700005,40.1926782220001],[22.46244449500017,40.35098622100014],[22.47876556900019,40.43812431900011]]]]},"properties":{"objectid":571,"eco_name":"Pindus Mountains mixed forests","biome_num":12,"biome_name":"Mediterranean Forests, Woodlands & Scrub","realm":"Palearctic","eco_biome_":"PA12","nnh":3,"eco_id":801,"shape_leng":18.2885946055,"shape_area":4.19474565374,"nnh_name":"Nature Could Recover","color":"#D49E54","color_bio":"#FE0000","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":39627.53613029486,"percentage":1.199600718201139}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[57.687030525000125,51.578272956000035],[57.567024637000145,51.51057567700002],[57.36771756400009,51.502908414000046],[57.215160556000114,51.53267506700013],[56.966060619000075,51.63003154300003],[56.711563575000014,51.78849242900003],[56.5708615960001,51.92590082300006],[56.46678149200005,52.06099329800003],[56.22683358800015,52.16786340200014],[56.101295477000065,52.392469741000184],[56.016662562000135,52.499508824000145],[55.81929757600017,52.587622408000186],[55.619293631,52.608820911000066],[55.51663962500004,52.708378643],[55.50890363100018,52.76828209300004],[55.603767497000035,52.904820782000115],[55.848926598000105,52.959280018000015],[55.860248538000064,53.166522239000074],[55.92060461100016,53.550967616000094],[55.71598458400018,53.63284037000011],[55.617507616000125,53.73706766000009],[55.61177858500014,53.88325090100005],[55.741336489,54.078640608000114],[55.710823511000115,54.193446195000035],[55.57669059700004,54.28390252100007],[54.993579530000034,54.538951597000164],[54.92702856000011,54.585468645],[54.868946497000024,54.72931735900016],[54.74764258800019,54.858291379000036],[54.54321651900011,54.84281503300008],[54.448337566000134,54.70867960400011],[54.50135763000014,54.59407484800005],[54.69005556000013,54.38161757500018],[54.7240674790001,54.26485883700002],[54.70126350600003,54.05732710500013],[54.72753557600009,53.939789185000166],[54.81188954099997,53.83203277900009],[55.08922559500007,53.58046001300005],[55.24328262800009,53.361739446000115],[55.258830556000134,53.1545428230001],[55.20605859600005,53.00921202100005],[55.04603549100017,52.94489868400012],[54.90230161000005,52.96926001500003],[54.73526754600016,53.03824257500008],[54.558704600000056,53.18229949500005],[54.54615052000014,53.270234377],[54.676731518999986,53.3985063290001],[54.651252545000034,53.456033510000054],[54.47470049500009,53.510328629000185],[54.27014148900014,53.48550193500017],[53.82934155900017,53.40391919500013],[53.62664450900007,53.42336386900013],[53.53998552100012,53.45611347400012],[53.26073856100004,53.63098612600004],[53.03179559300008,53.69812684700014],[52.72130156800017,53.707652041000074],[52.517070629000045,53.688959559000125],[52.016235486000085,53.60786481300016],[51.77920146600019,53.550059353000165],[51.2081375410001,53.2967848940001],[51.01916853900002,53.24920284100017],[50.57443246800011,53.20046995300015],[50.43313554100013,53.164450233000025],[50.38149262400009,53.114149091000115],[50.17588051500013,53.15732092100012],[49.992946484000186,53.225341574000026],[49.63526553000014,53.21587035900018],[49.46024351200015,53.24488901100011],[49.152282499000194,53.211147156000095],[49.02219050000008,53.163657305000186],[48.78861954700011,53.033908461000124],[48.64458056400014,52.91125188100017],[48.547573614000044,52.91306404800008],[48.422496508000165,52.73788931200005],[48.253379541000186,52.61197971500013],[48.18938454800008,52.51336394200007],[48.04681357200013,52.523866132000194],[48.041999510000096,52.456927750000034],[47.93664552399997,52.39671567800019],[47.688938492000034,52.36139115300017],[47.487255485000105,52.27555442900007],[47.40058157700014,52.180357467000135],[47.293281482000054,51.963888447000045],[47.07326155200019,51.93950414900007],[46.985038501000076,51.967969595000056],[46.937530544000026,52.05035733300008],[46.96537355000004,52.10760908500009],[47.11183959700014,52.227015498000185],[47.33797060400019,52.34166451100009],[47.46939448800009,52.467144116000156],[47.60409955100016,52.53672531200016],[47.30767052700003,52.52229402200015],[47.16698061700009,52.49644859100016],[47.07868548200008,52.52394626299997],[46.97281651200018,52.66117092600018],[46.81872947200003,52.64332551900003],[46.70947253700007,52.58273542300003],[46.690906622,52.526307277000114],[46.78417960200005,52.41902411300009],[46.745876484000064,52.368082258000186],[46.38760359899999,52.263187099000106],[46.38095859400005,52.145719084],[46.23690050000016,52.074756551000064],[46.039184480000074,52.08485473200005],[45.76106656200017,52.14723402900006],[45.78380146899997,52.20512314100006],[45.69289352600015,52.276748515000065],[45.548347606,52.29475066400005],[45.15833647700009,52.23314267000018],[44.81206849000017,52.23242149100008],[44.72750849800019,52.198095921],[44.63145456900014,52.09273204500016],[44.49948150400019,52.05440931300012],[43.74093250900006,51.90296659500012],[43.64072048600008,51.901272612000014],[43.369255620000104,51.624129678000145],[43.14628257900006,51.51070559600004],[42.90190550900013,51.508130675000075],[42.79177048600013,51.56671045600012],[42.65848548500014,51.591151080000145],[42.49222557400009,51.443871485000045],[42.19419460100005,51.114661006000176],[41.957832475000146,50.955726711000125],[41.664775491000114,50.869143327000074],[41.33841754100007,50.88246451800012],[40.80558347600015,51.02899275900006],[40.48588159600013,51.06229623900009],[40.2327885200001,51.05563530800009],[39.95970946700004,50.942405352000094],[39.77987657300008,50.9823690930001],[39.540103515000055,50.86248306700003],[39.44019659300017,50.78255592000011],[39.287006584000096,50.75591370600017],[39.16712156400013,50.76923472900006],[39.040573601000176,50.82917975400005],[38.880722493000064,50.749253613000064],[38.78081557200011,50.73593225399998],[38.67424755200011,50.636023824000176],[38.57434448599997,50.616042373000084],[38.228000558000076,50.60272118199998],[38.08147449699999,50.57607879900013],[37.61524152600009,50.39624724600003],[37.48869758700005,50.32298136500009],[36.902580601000125,50.2497151500001],[36.88259848000013,50.03657743300005],[36.915901457000075,49.836764931],[36.86261753100007,49.783480167000164],[36.582878553000114,49.71021411900006],[36.47631455700014,49.58366464800014],[36.54024551100014,49.39045943200006],[36.38428846800008,49.364774096000076],[36.265869610000095,49.442530162000025],[36.19485846200013,49.57623375500003],[36.10241646300017,49.679490756000064],[35.93865553300003,49.58800194700012],[36.007320587000095,49.51922608500013],[35.82781961500001,49.450926314000185],[35.70684058900014,49.35001088200016],[35.48048058800015,49.25876699300005],[35.350200499000096,49.25187002800004],[35.1593516050001,49.15637886000013],[34.77941150000015,49.17011210600009],[34.48295247000004,49.049737583000194],[34.415657522,48.87993279700004],[34.202892465000104,48.70805214900008],[33.81056558400002,48.87678874500017],[33.651428614000054,48.886299020000195],[33.53772759500009,48.84243752599997],[33.331893533000084,48.81725225399998],[33.045516590999966,48.73467542100008],[32.93286548900011,48.796581140000114],[32.618698514000016,48.69285408200017],[32.80634351000015,48.63427145200018],[32.72006958600008,48.59300315200011],[32.53404246500003,48.62873637900003],[32.45029451200014,48.55244865400016],[32.3500325330001,48.531464392000146],[32.21479756600007,48.564106708],[31.86505360300015,48.459182882000164],[31.440696453000157,48.4008892600001],[31.186548599,48.28197737900007],[31.09328249200007,48.38690103700009],[30.902088598000148,48.38457019800006],[30.706230510000125,48.477837143000045],[30.689908598000045,48.36591593700018],[30.612964570000088,48.198037648000195],[30.489387490000183,48.1793832190001],[30.30285846000004,48.26099211100012],[30.151300575,48.13974503200018],[30.316846515000066,48.11176389200011],[30.34715849500003,48.04181741300005],[30.232908461000193,48.02083197700006],[30.111663561000114,47.955542483000045],[30.165290474000187,47.86694174300004],[30.291198562000034,47.834299595000175],[30.237571480999975,47.76434909200009],[30.141975540000033,47.792330232000154],[30.072025540000084,47.74569499900019],[29.92300049900018,47.73876383600003],[29.750791448000143,47.65290146400014],[29.655258539000044,47.66244224900004],[29.656263529000057,47.772734013000104],[29.438354498000137,47.75283202200018],[29.48867056000006,47.92486538800017],[29.30956454400018,47.92762320200006],[29.19135255200007,48.01439702200008],[29.023813562000157,48.08772375500013],[28.795087517000127,48.11879077700007],[28.883840473000134,48.16956817800002],[28.707660579000105,48.31122435400016],[28.687305463000087,48.373614212000064],[28.50506947600013,48.37537692600006],[28.39307249799998,48.323816655000144],[28.34787358799997,48.38343730000014],[28.081094541000027,48.39512938400014],[28.179176554000037,48.325872568000136],[28.214742478000062,48.147550092000074],[28.29113045000014,48.07435244100009],[28.464853608000112,48.03143324100006],[28.776296464000154,48.037682116999974],[28.876886511000123,48.00390187400018],[29.036201512,47.875299842000175],[28.97251849400004,47.695309535000035],[29.03226050899997,47.52596642500009],[29.117303466000067,47.46678499199999],[29.070531608000124,47.337138239000126],[29.192169452000144,47.20687357300005],[29.364419574000124,47.101334851000104],[29.492204538000067,46.87737676800009],[29.506551506000164,46.79193835300015],[29.704727525000067,46.56481409000014],[29.35211745500004,46.547141013999976],[29.149919463000174,46.46920574300003],[29.072637478000104,46.46334293700005],[28.8913895500001,46.52004098000003],[28.650289469000143,46.540167103000044],[28.581594576000043,46.50349292400006],[28.551156532999983,46.35079023800006],[28.57366160800018,46.1509986910001],[28.565967523000154,46.025128154000015],[28.523399525,45.90996197800007],[28.411270448000096,45.716373710000084],[28.290403571000127,45.57723914600007],[28.164337568000064,45.55950521800003],[28.006826520000118,45.395937909000054],[27.74493445800016,45.39979090300017],[27.498138539000024,45.288306896999984],[27.376417547000187,45.16673174900018],[27.305990448999978,45.132304758000146],[27.09823257400012,45.091280707000124],[26.790918475000012,45.13022587900019],[26.79421457500007,44.993414779000034],[26.829172475000064,44.96629664000005],[27.070072563999986,44.926005669000176],[26.97039949800012,44.88334966100007],[26.92641646600015,44.81914495300009],[27.001964571000144,44.72649692800013],[26.91031449500008,44.62126096000003],[26.78272851800017,44.631831881000096],[26.807989562000046,44.51709318100012],[26.93628146400016,44.43814403500005],[27.110626558000092,44.39209335600003],[27.18628647800017,44.34603815100013],[27.171009454,44.2538984040001],[27.250968451000062,44.200092453000025],[27.487289506000025,44.11740464300004],[27.684961605000126,44.12223479800008],[27.75549548800018,44.066394894000155],[27.81133254200006,43.94590000700009],[27.93476646,43.81364950000011],[28.055261515000097,43.740178599000046],[28.357965567,43.719605888000046],[28.522542559000158,43.657892114000106],[28.583576561000143,43.601179151],[28.606037547000142,43.83906225700014],[28.677923598000177,43.98012616800003],[28.65681645700016,44.05459971300007],[28.644151569000144,44.30284838300008],[28.80310447300019,44.463038958000084],[28.760656503000064,44.498160977000055],[28.776885544000038,44.633796096000026],[28.825715495000168,44.76129875700008],[28.932447465000052,44.790316906000044],[28.95112452400008,44.84348583200011],[28.87994758200017,44.902773884000055],[28.878568591000032,44.978602950000095],[29.010087525000188,45.035380789000044],[29.05037849500019,44.86822082900011],[29.13336151600015,44.81360887400007],[28.985263513000064,44.76409898300017],[29.013345571000116,44.707210001000135],[29.17037750900016,44.79335283100016],[29.542242488000056,44.833624859],[29.581804568000166,44.859072820000165],[29.691818556000158,45.117499971000086],[29.636194570000157,45.24504387100012],[29.774299500999973,45.35136009800016],[29.760969593000027,45.40145102200012],[29.609685460000094,45.580261325000095],[29.612276474000055,45.69519465200011],[29.681922546000067,45.702800558000035],[29.735813490000055,45.61763723700017],[29.94495052400009,45.724525613000026],[29.99476853300007,45.806621661000065],[30.213470492000113,45.84603487900006],[30.319944467000028,45.92629294300008],[30.65165845300004,46.24702210900017],[30.68388351800013,46.32423938700015],[30.79361151500018,46.44618082300008],[30.74943553300011,46.50646782900009],[31.015270610000073,46.601462453000124],[31.196105477000117,46.622290309000164],[31.34527753800006,46.600081283000065],[31.42360659000019,46.62507544700003],[31.578880509000044,46.60507823800009],[31.653045600000155,46.65090864100017],[31.814714575000096,46.61368444100009],[31.989433503000043,46.65590542799998],[32.13248459500011,46.5617431280001],[32.2558284910001,46.59534316000014],[32.375259546999985,46.555350083],[32.35665859500017,46.45673984200005],[32.1099925960001,46.507024891000185],[31.870828567000103,46.51369303000007],[31.76666246500008,46.55063526200007],[31.59694250400014,46.538695073999975],[31.614997459000165,46.491735963999986],[31.778331583000124,46.491178903],[32.06137051600018,46.38673955100012],[31.788326500000153,46.28313201900011],[32.066375518000086,46.25340794600015],[32.230819574000066,46.184506858000134],[32.26054347900015,46.12785072500009],[32.52720652000005,46.072018532000186],[32.634437549000154,46.10701465400018],[32.81499044900016,46.126736770000036],[32.910537607000094,46.10924239700017],[33.230537549000076,46.15728461599997],[33.435264528000175,46.04257625900016],[33.58721150100007,46.15646067500012],[33.64833049500015,46.088688629000046],[33.627212458000145,45.99451124100011],[33.687202577000164,45.902568972000154],[33.55165848500002,45.83868797300005],[32.93720245300011,45.65784053300018],[32.71914657100018,45.52979623300013],[32.536384537000174,45.46173400500004],[32.48053759200013,45.39367999200016],[32.50888049500014,45.33700910700014],[32.65442654400016,45.30840603000007],[32.72748555900006,45.353678867999974],[32.93221253800016,45.34145704800005],[33.25804159000012,45.155352981000135],[33.40470846800008,45.18118583900008],[33.566375599000025,45.08729092100009],[33.62220745600007,44.91868877100012],[33.78321057200009,45.01433483600016],[34.03776159600005,45.077757680000104],[34.35287857600008,45.19510180900005],[34.55714756800006,45.24711889500003],[34.69754059100018,45.25636597800013],[34.90606658400003,45.16813571800009],[35.192047565000166,45.098296863000144],[35.34305559799998,45.02579792600005],[35.51526649200008,45.113955934000046],[35.641929455000025,45.10924094600017],[35.78887947200013,45.048403919000066],[35.83525050800017,44.98689969300011],[35.98688550700018,44.99100079100015],[36.02970848200016,45.03480092900003],[36.23332955300009,45.00396273300004],[36.456092545000104,45.08257576500006],[36.40554061600011,45.14256571700014],[36.43276956400007,45.27312794000005],[36.50638547200015,45.34090015400017],[36.625541602,45.33146196300004],[36.586372466000114,45.423122098000135],[36.39054857600007,45.43312405500018],[36.31166045000009,45.46368715700015],[36.13970956200018,45.45840018700005],[36.00860553200005,45.356456128000104],[35.863044563000074,45.402286195000045],[35.721099548000154,45.33589515200009],[35.50305154500006,45.2845109000001],[35.311660509000035,45.38090111000014],[35.05387859700011,45.651729455000066],[34.86997947300017,45.932010909000155],[34.843040539000185,45.90784102100014],[35.00943757800019,45.66146436500014],[35.38248457300017,45.304789909000135],[35.33859256900013,45.28396892600017],[35.04943048800004,45.37284392200013],[35.083320534000165,45.52784324900017],[34.95165257000008,45.66646132000017],[34.71776545199998,45.727840656000126],[34.7305374610001,45.81061966100009],[34.60166150900017,45.873401960000194],[34.370536564000076,45.90173011100012],[34.41193361000012,45.95368600800009],[34.27582558400002,46.00951820100016],[34.165267610000114,45.98757605400016],[34.006652498000165,46.09645563600009],[33.929153589000066,46.048680464000086],[33.69860045700017,46.17312389800014],[33.73998258300003,46.235624062000056],[33.973037546000114,46.20312977100008],[34.03942858900018,46.12923172700016],[34.13777161500019,46.12368475100004],[34.152488561000155,46.27840194300006],[34.46943648300004,46.13896663700001],[34.404159562000075,46.01952032600019],[34.57110544800014,45.98479125100005],[34.63027145899997,46.0686843790001],[34.621093610000116,46.15951286100005],[34.771282563,46.13547657999999],[34.88360559800003,46.22201285699998],[35.029708541000105,46.246464881000065],[35.119712579000065,46.29729223900006],[35.216659515000174,46.402845545000105],[35.307487494000156,46.32951931500003],[35.51110051900008,46.45257386800017],[35.653312582000126,46.50173808900007],[35.72554748800013,46.56840422600004],[35.907203615000014,46.64895548900006],[36.2130505450001,46.658675647000166],[36.254432503000146,46.61701842700006],[36.37554161700018,46.706740665000154],[36.61360158100018,46.77313221200012],[36.74694056200019,46.760916929000075],[36.80248257300008,46.715903762000096],[36.92027245200018,46.82563025100018],[37.23915860600016,46.93201487500011],[37.37998949900009,46.93119093300015],[37.56359860900005,47.08619076400004],[37.74137860800005,47.06646848100007],[37.835815499000034,47.090630825000176],[38.219985615000155,47.10090787700017],[38.44999660500014,47.13230296600011],[38.55165853,47.10897193800008],[38.75387546400003,47.15618317500008],[38.844993457000044,47.15618317500008],[38.97081755900007,47.25647180900006],[39.063880489000155,47.273691758000155],[39.25638548000012,47.25924186000003],[39.2447125060001,47.14063390700011],[39.29387655900018,47.06202054],[39.26970650300018,47.00563128600015],[39.06970960000007,47.0245143730001],[38.93915559000004,46.94451212500013],[38.69776147199997,46.85868864400015],[38.41442850200019,46.82813241600019],[38.3647156020001,46.74702392400013],[38.492492519000166,46.73535111800015],[38.59110259300019,46.6567375840001],[38.466384567000034,46.637572530000114],[38.3024824850001,46.675078697],[38.11749254100016,46.67729872700005],[38.01610554300004,46.6167362920001],[37.809432453000056,46.63230064800001],[37.766929499000184,46.59479448100012],[37.82720946400002,46.473951912000075],[37.99193548699998,46.34256524500012],[38.073043476000066,46.39340735500008],[38.272758580000016,46.26479090599997],[38.308593563000045,46.20840182000012],[38.557487473000094,46.10701465400018],[38.56304148900011,46.032292167000094],[38.44553357700016,46.02534926900012],[38.252212524000186,46.13423672900018],[37.91276556100013,45.98534831200004],[37.8480374880001,45.77506681300008],[37.59136953100011,45.62533936800014],[37.65664645100014,45.50702226700014],[37.72998056100016,45.44839806200014],[37.70109551600018,45.330622935000065],[37.60499548800016,45.31118312200016],[37.51415258900016,45.35979011400008],[37.426101534000054,45.31840111399998],[37.16498546800017,45.324511857000175],[37.24720758000018,45.2659030750001],[37.11582158300013,45.23228778800012],[37.089431495999975,45.34034292500013],[36.83665458600012,45.43396325100014],[36.75694251900006,45.34285313700019],[36.79387653700013,45.287578006],[36.75027454700012,45.20729379100004],[36.58415947600014,45.199793831000136],[36.629432482000084,45.123118696000176],[36.82193747300005,45.10423577600011],[37.19638055700017,44.98145564700013],[37.30470257400009,44.907572690999984],[37.33551746800009,44.80522495900016],[37.438053457000194,44.89426373700019],[37.44166957800013,44.953692772000124],[37.31270561600019,45.06080578299998],[37.39845650800015,45.13905688400013],[37.7790525800001,45.05831769900004],[37.88839752500007,44.95623265600011],[38.061027515000035,44.924265921000085],[38.34234949900002,44.95623265600011],[38.45743554400008,44.89868887900019],[38.566127539000036,44.95623265600011],[38.853843574000166,44.937052849999986],[38.94335559400008,44.95623265600011],[39.21189148800016,44.91787287600005],[39.339763456000185,44.91787287600005],[39.403701619,44.975413636000155],[39.672237513000084,44.975413636000155],[39.870441528000185,44.91787287600005],[40.05585861400016,44.89229482800005],[40.29242358200014,44.81557392700006],[40.407508454000094,44.758028977000095],[40.78473651000007,44.42555927799998],[41.129997495,44.23374948200012],[41.32180745900013,44.18259858300013],[41.53279857000018,44.18899162800017],[41.57115952300012,44.169811654],[41.59034352000015,43.997180825999976],[41.77575658300003,44.19538450500005],[41.86526860400005,44.10587365800012],[41.967571576000125,44.1250538000001],[41.99728760199997,44.064769811000076],[42.19310746800005,44.06978990100015],[42.31361358700019,44.02460104900007],[42.41403549300003,43.878991130000145],[42.51445756600015,43.828778333000116],[42.639987463000125,43.80869344900009],[42.92116946900006,43.81371337100012],[43.202350470000056,43.7132926380001],[43.46344759200019,43.547597500000165],[43.51365653400012,43.48734469200019],[43.94547257199997,43.331690067000125],[44.01576656500009,43.28650155100007],[44.146316551000155,43.110763048000194],[44.25677846800005,43.150931978000074],[44.33711649500003,43.27646154000007],[44.47770649300003,43.28650155100007],[44.55804452000018,43.2513537160001],[44.703655613000194,43.105743127000096],[44.854289477000066,43.11578732900017],[45.00994460400017,43.20616469700008],[45.20074454900009,43.090679170000044],[45.39656860600007,43.02038568000012],[45.61247654099998,43.00532172400017],[45.707874502000095,43.03042653000011],[45.84374951100017,43.18208281900007],[46.07846057000012,43.34771207500006],[46.4530144630001,43.315814240000066],[46.825321503000055,43.23916173500004],[46.90492259399997,43.02230463300015],[46.80028962000006,42.889432357000146],[46.645523477000154,42.81592289800011],[46.203548572000045,42.72485922000004],[46.176837626000065,42.642412809000064],[46.29074450500008,42.61485177000003],[46.533622555000136,42.654070527000044],[46.694599520000054,42.744233989000065],[46.78832646500007,42.687200335000114],[46.7124295050001,42.566825141000095],[46.755813565000096,42.45001980000012],[46.70930858700018,42.401619338000046],[46.74694450600015,42.32117184300006],[47.007675507000044,42.23375831600015],[47.15110747200009,42.28443195000017],[47.18652352800018,42.38133228300006],[47.26787962100019,42.39914332400019],[47.37475257500017,42.3548625680001],[47.44238246300006,42.4951355610001],[47.57769353800012,42.470832736000034],[47.74526555200009,42.23108448900018],[47.86801148400019,42.01067211900016],[47.99663547600011,41.89473296300014],[48.11217850300005,41.86790115000008],[48.250064498000086,41.924056716000166],[48.321964464000075,42.04327286000006],[48.14179662800012,42.29506405900014],[47.9857026250001,42.41646201200018],[47.877193523000074,42.56976216000004],[47.73361252800015,42.687174351000124],[47.623512541000025,43.02899557100011],[47.544258462000016,43.103164350000156],[47.552757543999974,43.20835086500017],[47.629039568,43.343234295000116],[47.564151568,43.530210583000155],[47.695583498000076,43.91416628900009],[47.57083546500019,43.90718919300008],[47.51801254300011,43.701317749000054],[47.210491580000166,44.21889155300005],[47.11828947099997,44.25909753100012],[46.96381351000008,44.44403819000007],[46.76745653199998,44.502127964000124],[46.67230952500006,44.49782100700003],[46.74495648600015,44.68973088300004],[46.594314575000055,44.788863987000184],[46.21156351600007,44.74300692999998],[45.99774954700018,44.766775996000035],[45.80065546400016,44.82628566400018],[45.75780147600017,44.878298726000025],[45.82545852200013,45.01970595900002],[45.81602452200008,45.13693173700011],[45.71919258600008,45.235496045000104],[45.367683562000025,45.45855709600016],[45.17390452100017,45.619304230000125],[44.959739519000095,45.94487394600014],[44.76982855900013,46.27773005000017],[44.65816451000006,46.503397035000035],[44.59326561299997,46.76683405],[44.58537254200019,46.91506985100017],[44.64353959700014,47.20924950700015],[44.619808585000044,47.47567316200019],[44.699172468000086,47.58178386500009],[44.83527747700015,47.661725261000015],[45.086212547,47.73437674800016],[45.48250155400018,47.67179242900005],[45.86803456700011,47.763849028000095],[46.19895160100009,47.89864226900016],[46.32468450800013,48.02437601300005],[46.32468450800013,48.11368686800006],[46.391742583000166,48.21108056000003],[46.486625559,48.27623929600003],[46.568492614000036,48.255186134000155],[46.695857476000185,48.13205782100016],[46.832153592,48.118614924000155],[46.95646660400007,48.157548362000114],[46.99382357300004,48.21324376100006],[46.91348252900008,48.41329146000004],[46.970794462000015,48.494686110000146],[46.83148957800012,48.61338911400003],[46.83745548200011,48.66968784300019],[46.94796349900008,48.765032830000166],[46.969619487000045,48.883502985000064],[47.04780956800016,48.916466160000084],[47.23230749400011,48.90559801700016],[47.38499861300011,48.84765241100007],[47.454360538000174,48.88676488600004],[47.43613861600005,48.97287486000016],[47.233093549000046,49.17250011000016],[47.25042749300019,49.257908015000055],[47.33967548300012,49.27405625500012],[47.743190528000184,49.12116145600015],[47.880050579000056,49.10611241900011],[48.165031599000145,49.207332450000024],[48.47992360800015,49.14839878600014],[49.228706511999974,49.20590232900008],[49.41565346400006,49.20965541000004],[49.84173561000017,49.084376133000035],[50.515712542000074,48.955189547000145],[50.703414535000036,48.948349746000076],[50.7940675000001,48.970913830000086],[50.84632447600006,49.110640323000155],[50.96239455600005,49.15595171900003],[51.05109755600017,49.14023481200019],[51.51826862900009,48.93994957100006],[51.68324661200012,48.98345701300008],[51.66884247900015,49.15824500700006],[51.69052562400003,49.29479727400002],[51.77531461000012,49.24645984400007],[51.88360561400003,49.11592042000012],[51.87452348700003,48.848525638000126],[52.010002535000126,48.87812800500012],[52.01906152800012,48.99650713300019],[52.09153347500012,49.07482378100019],[52.01510661100019,49.22779049600007],[51.89585157500011,49.306607376000045],[51.82182361200017,49.42454393900016],[51.67754758799998,49.52108385000008],[51.63697850699998,49.6354192120001],[51.50625250000019,49.69929300200016],[51.481838531000164,49.83778383600003],[51.37026953200018,49.970685616000026],[51.402584619000095,50.030954350000115],[51.35678858200015,50.10357230900007],[51.17990159100009,50.23282008300009],[51.15110355100012,50.366396774],[51.208122621000086,50.44888710700013],[51.18785048500018,50.64887914900004],[51.24875255600017,50.69616364400002],[51.24496862899997,50.811719579000055],[51.370952490000036,50.95101943400016],[51.427787493000096,51.12543745100015],[51.65495651500015,51.24437414300019],[51.82489356700006,51.268933790000176],[51.96694553600014,51.346651969000106],[52.24050152000012,51.40685985100015],[52.49069563000012,51.36915939100004],[52.68145349700012,51.44495040400005],[53.21020557500009,51.46931190200013],[53.364440473,51.50069156900008],[53.641342512000165,51.38630658600016],[54.20657749399999,51.41631312900017],[54.416061539000054,51.38630658600016],[54.70550558700012,51.284520777000125],[54.81846950200003,51.29393600100008],[55.02557358900003,51.26569150200015],[55.1761935400001,51.19038026900006],[55.26091362600016,51.11506903700007],[55.58098263400018,51.09624395300017],[55.910461502000146,51.00210327800016],[56.12697561700014,50.99269224500017],[56.43762956800015,50.870310423000035],[56.610130477000155,50.689792727000054],[56.764369565000095,50.59950119000001],[56.843028530000026,50.50493002000019],[57.0410156210001,50.39782622900003],[57.12815053400004,50.30802721200007],[57.21892151600008,50.26694666600014],[57.37388949500013,50.36121692600011],[57.38360948500008,50.45649737200017],[57.54169050300004,50.61731960700007],[57.66088854200012,50.64103972300012],[57.760108483000124,50.60679126600013],[57.870170583,50.48244958800018],[58.01147052700014,50.50317904100018],[58.09576062200006,50.43607000300011],[58.20198062600008,50.44551909000006],[58.4973716340001,50.668292140000176],[58.51566647900012,50.76755264900015],[58.589580616000035,50.83126668000011],[58.562229628000125,50.946594627000025],[58.60179154000019,51.0063985000001],[58.53787651100015,51.074938664000115],[58.356338569000116,51.086698809000154],[58.32419950300016,51.150649881000106],[58.19442752500015,51.089445894000164],[57.89241447800009,51.55408730900007],[57.687030525000125,51.578272956000035]],[[40.27555449900012,50.83159458000006],[40.392997535,50.80223629400007],[40.392997535,50.68479141300014],[40.246196548000114,50.58202995100015],[40.09939153700009,50.52330516400019],[39.93791149000009,50.61138857200001],[39.981952524000064,50.699470808000115],[40.27555449900012,50.83159458000006]],[[37.75056048000005,50.097575225000185],[37.633117611000046,50.20033752600017],[37.633117611000046,50.27374053400018],[37.70652045200018,50.34714052500004],[37.91204052700016,50.376501997000105],[38.16160549200009,50.33246129800011],[38.235004477000075,50.27374053400018],[38.17628455100004,50.14161693000011],[37.95608156100013,50.08289616600007],[37.75056048000005,50.097575225000185]]]},"properties":{"objectid":574,"eco_name":"Pontic steppe","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Palearctic","eco_biome_":"PA08","nnh":4,"eco_id":735,"shape_leng":166.417995651,"shape_area":121.548819634,"nnh_name":"Nature Imperiled","color":"#FFAA01","color_bio":"#FEFF73","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":996293.8839336192,"percentage":9.403170241372806}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[64.71396509500016,-73.53751439599995],[64.29638605900016,-73.57046132299996],[64.3328911050001,-73.66165814199985],[64.71396509500016,-73.53751439599995]]],[[[66.880354656,-73.54928158699994],[66.5825606050002,-73.6567478529999],[67.01581213300017,-73.65635608299993],[66.880354656,-73.54928158699994]]],[[[61.419712232999984,-73.42308762499994],[61.2473891210002,-73.44585087199988],[61.322612372000094,-73.54634540399991],[61.530063385,-73.51581531599999],[61.97360755500006,-73.5315372579999],[62.19048452300012,-73.4948219929999],[62.30307800500003,-73.38521733399995],[61.818566928000166,-73.37175632699996],[61.419712232999984,-73.42308762499994]]],[[[68.21276463700013,-73.22836738899991],[68.24457179300003,-73.32127512299996],[68.51811095400012,-73.26642074199998],[68.21276463700013,-73.22836738899991]]],[[[68.20211006000011,-72.65569156499993],[68.01667764700017,-72.69047597399987],[68.01084652100019,-72.77717187799993],[68.33741750200016,-72.7768206749999],[68.20211006000011,-72.65569156499993]]],[[[68.85307020900012,-72.19523672999998],[68.77680424699997,-72.11515582799996],[68.49018596200006,-72.23591747499995],[68.56246381000011,-72.28916739099998],[68.85307020900012,-72.19523672999998]]],[[[67.93772210000003,-71.38016187099993],[67.69889761200011,-71.41372687999996],[67.36088298300007,-71.52270641699982],[67.70734305300016,-71.56159695399992],[68.02822741000006,-71.41189895399998],[67.93772210000003,-71.38016187099993]]],[[[68.29188950100018,-70.45677702299992],[68.07176219400003,-70.50940013999997],[67.94488242800003,-70.58692791399994],[68.00850880900003,-70.66155387099997],[67.54719767600017,-70.72454104899992],[67.63558924000012,-70.80650620299997],[67.88240537300015,-70.80926217399991],[67.77098871300007,-70.94543496199992],[68.0740526350001,-70.88002440799994],[68.2696398970001,-70.86931702499999],[68.14476927000015,-70.76369058699999],[68.16152822200019,-70.62295116799999],[68.24385799000004,-70.59148029499994],[68.29188950100018,-70.45677702299992]]],[[[68.90752427000001,-70.30811217699988],[68.64410391600006,-70.37560596899993],[68.67070322600017,-70.4472048849999],[68.85792199200017,-70.45342040499992],[68.90752427000001,-70.30811217699988]]]]},"properties":{"objectid":575,"eco_name":"Prince Charles Mountains tundra","biome_num":11,"biome_name":"Tundra","realm":"Antarctica","eco_biome_":"AN11","nnh":1,"eco_id":128,"shape_leng":149.91494674,"shape_area":1.59079151537,"nnh_name":"Half Protected","color":"#55C7AE","color_bio":"#9ED7C2","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":5999.214350165622,"percentage":0.07020602902588721}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[94.70117953800008,39.48071266000005],[94.40399161700009,39.44006428500006],[94.03222655000013,39.43208739500017],[93.77932760000016,39.47298471300007],[93.59118656300012,39.521838133000074],[93.42417161000014,39.448910043000126],[93.35620862400009,39.38191717900003],[92.93479955700002,39.22896521500002],[92.77143861100018,39.156670462000136],[92.41506959200007,39.039713241000186],[92.04526555500019,38.84806605400013],[91.71990153200005,38.77233052900016],[91.63654350400003,38.727656997000054],[91.2015076420002,38.73452395500016],[90.8711925950002,38.75543965300005],[90.87126166200017,38.68309896700015],[90.68724066600004,38.60399023000008],[90.36550852100004,38.52806024500018],[89.87111654600005,38.37427713200003],[89.50697364700017,38.225933371],[89.34811361500016,38.10873642800016],[89.18606561000013,38.03586181400016],[89.0428926460001,38.009957375000056],[88.80892154100007,38.003304323000066],[88.64282960300017,37.896521559000064],[88.41566460500007,37.82097261600006],[88.3135525720001,37.80304422800009],[88.28140260900017,37.7470029910001],[88.4260405620002,37.71449880800003],[88.54985066000017,37.748651208000126],[88.65113858400014,37.741960102000064],[88.91711464500008,37.41208342900006],[89.0431826590002,37.35553156700007],[89.10250859700005,37.230160088000105],[89.29798866100009,37.14712677600011],[89.68309050800008,37.118704413000046],[90.03530864100009,37.10744366100005],[90.40077252800006,37.069064268000034],[90.55601459500008,37.04200379600013],[90.70196565800018,36.972875391],[90.79229759600008,36.88589001100007],[90.85804759200016,36.86748854800015],[90.90578454200005,36.979490053],[91.07998664200005,36.93605704300012],[91.05949355900003,37.03862404500018],[91.1129305390001,37.06416353600008],[91.41487150200004,37.0075464630001],[91.60625465900006,36.92145442600008],[91.72602065600006,36.828942187000166],[91.79920959100008,36.654835138000124],[91.88272050400019,36.585062332000064],[92.23078959500009,36.435887757000046],[92.60936764000013,36.388411820000044],[92.70270566400006,36.38924280100014],[93.07515754300005,36.32185012100018],[93.1706235650002,36.26144945600015],[93.30374863900016,36.29844784700009],[93.53353164200007,36.32836202100003],[93.45451359700002,36.187572199000044],[93.57221261600006,36.19121899800007],[93.68555455500018,36.160484906000136],[93.805419626,36.24178500800008],[93.89347856000018,36.24492084500008],[94.14411959400019,36.147446185000035],[94.33969152300011,36.128670721000105],[94.38007352100016,36.21044775400014],[94.33551767000017,36.50508925300011],[95.13373553100013,36.112812999000084],[95.87634264800016,36.26645060200002],[96.29341860700015,36.55070826400015],[96.69577762000017,36.85540368800014],[97.88407165300003,36.711112745000094],[97.89931464600011,36.804192774000114],[98.53949759000011,36.85540368800014],[99.10176051700012,36.96352956900017],[99.0434955610001,37.01283745500018],[98.73680859600006,37.181630042000165],[98.52856457000019,37.343888936000155],[98.26335159800004,37.455966716000034],[98.01416063400006,37.53143117000013],[97.88605464300014,37.63529619299999],[97.73811354900016,37.71919451800005],[97.48287956800016,37.89675843100014],[97.32762861600014,37.96009611500011],[97.16912867100001,38.078769280000074],[97.05928751800019,38.193765136000025],[96.8461226440001,38.32605285799997],[96.77664152800008,38.33742760400003],[96.65366358600016,38.28854350600011],[96.58145164600006,38.213303687000064],[96.48636666600004,38.198579030000076],[96.26768465600014,38.262874766000095],[96.01489265800012,38.295135202000154],[95.91799165499998,38.35356746100007],[95.86746956600018,38.47696315800016],[95.86301458400015,38.66314031500008],[95.888435555,38.73462302900003],[95.7766645530001,38.84295124900018],[95.77189659100014,38.9526366660001],[95.69081860900013,39.05755110400003],[95.6049805450001,39.11478223600011],[95.04700462600005,39.324613962000114],[94.94660954200009,39.377210237000156],[94.74015756700004,39.395424951000166],[94.70117953800008,39.48071266000005]]]},"properties":{"objectid":582,"eco_name":"Qaidam Basin semi-desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Palearctic","eco_biome_":"PA13","nnh":2,"eco_id":835,"shape_leng":25.6236934965,"shape_area":19.6333984162,"nnh_name":"Nature Could Reach Half Protected","color":"#CE6C47","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":192470.0733444967,"percentage":0.7295457876391847}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[101.4311755650001,38.26880663900016],[101.19532054500007,38.28826153900013],[101.10263060900013,38.31392206500004],[100.96056355300016,38.39945770999998],[100.76683765400008,38.437367047],[100.27960164500013,38.61550679700008],[99.97543361000015,38.7370831180001],[99.75611155800004,38.84867625600003],[99.38948862200004,39.0818696880001],[99.03603365499998,39.24387310100019],[98.77479554900015,39.332395721000125],[98.69230655800015,39.39532202100003],[98.48214760200011,39.41901045300011],[98.34158358900004,39.49132565800011],[98.09011861400012,39.477786873000184],[97.80030056500016,39.588267062000114],[97.62814365000014,39.6037009960001],[97.2229235580001,39.571425304],[96.98000359900004,39.56976954300006],[96.86002352800011,39.60904881800013],[96.68690453800019,39.73456614100007],[96.44329055600014,39.83097697100004],[96.07133455000013,39.91246197800007],[95.90388457600011,39.92849857100009],[95.7735136280001,39.8738314630001],[95.57197562700003,39.73775914400005],[95.19133764600008,39.54878880100017],[94.94660954200009,39.377210237000156],[95.04700462600005,39.324613962000114],[95.6049805450001,39.11478223600011],[95.69081860900013,39.05755110400003],[95.77189659100014,38.9526366660001],[95.7766645530001,38.84295124900018],[95.888435555,38.73462302900003],[95.86301458400015,38.66314031500008],[95.86746956600018,38.47696315800016],[95.91799165499998,38.35356746100007],[96.01489265800012,38.295135202000154],[96.26768465600014,38.262874766000095],[96.48636666600004,38.198579030000076],[96.58145164600006,38.213303687000064],[96.65366358600016,38.28854350600011],[96.77664152800008,38.33742760400003],[96.8461226440001,38.32605285799997],[97.05928751800019,38.193765136000025],[97.16912867100001,38.078769280000074],[97.32762861600014,37.96009611500011],[97.48287956800016,37.89675843100014],[97.73811354900016,37.71919451800005],[97.88605464300014,37.63529619299999],[98.01416063400006,37.53143117000013],[98.26335159800004,37.455966716000034],[98.52856457000019,37.343888936000155],[98.73680859600006,37.181630042000165],[99.0434955610001,37.01283745500018],[99.10176051700012,36.96352956900017],[99.1965256430002,36.88135121000016],[99.29108457500007,36.91745642600006],[99.10896258300005,37.11120160400003],[98.94094867500013,37.324556076000135],[98.65222966100004,37.48637307500013],[98.61988054400018,37.621105631000034],[98.38775664300005,37.86317415700012],[98.33312960100011,38.09639675700009],[98.36540261100015,38.26784473100014],[98.43994153400013,38.30805104500007],[98.56308761800011,38.189080155000056],[98.66979963900019,37.99294378800005],[98.84365858300004,37.94754958000004],[98.83169559600009,37.68953213599997],[98.89396659900018,37.63166833800011],[99.25647754100015,37.71543372600013],[99.5753705680001,37.58706018500004],[99.66964753299999,37.56797542900017],[99.7441105170002,37.616005578000056],[99.70568854300006,37.68242931100019],[99.79185467600018,37.73768449400012],[99.7388225420001,37.799111271000186],[99.48733560700009,37.913226021000185],[99.2288055260002,38.010407316000055],[99.155853632,38.09345571500012],[99.18865956300004,38.18888619800009],[99.50409656300013,38.07597307700013],[99.6704255410001,38.034393976],[99.91653464700016,37.944601497000065],[100.08427463500016,37.86386784300015],[100.5061876220002,37.72753367300004],[100.69499954700012,37.62603754300011],[100.82968164400006,37.90436819400014],[101.09229253799998,38.103945667000175],[101.4311755650001,38.26880663900016]],[[100.39069354600008,38.494704964000164],[100.53133366700001,38.36160134800019],[100.38335451900008,38.33781669100017],[100.22518951500007,38.40629734300006],[100.23506959900004,38.51962939200007],[100.39069354600008,38.494704964000164]],[[99.65890461500004,38.722347061],[99.78980261800007,38.650346513000045],[99.80546554500006,38.546496241],[99.69579353900008,38.50994862900012],[99.59623765100014,38.53861524100006],[99.43984257000005,38.657124287000045],[99.43795764700019,38.708023562000164],[99.65890461500004,38.722347061]]]},"properties":{"objectid":584,"eco_name":"Qilian Mountains subalpine meadows","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Palearctic","eco_biome_":"PA10","nnh":2,"eco_id":763,"shape_leng":21.9362819033,"shape_area":7.58476006515,"nnh_name":"Nature Could Reach Half Protected","color":"#A93800","color_bio":"#D6C39D","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":73393.11117203053,"percentage":1.502939502487023}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[67.86034356000005,24.083867633000068],[67.7491606320001,24.045134523000172],[67.78844460099998,23.990820293000013],[67.91658763900006,23.98438550600008],[67.86034356000005,24.083867633000068]]],[[[67.87629650100007,24.170498458000054],[67.78943651500003,24.148840458000052],[67.78646060400007,24.07292304700013],[67.89472948000014,24.119851814000185],[67.87629650100007,24.170498458000054]]],[[[68.6488265110001,24.32576080900003],[68.57428758700007,24.297139963000177],[68.59925057100014,24.201777877000097],[68.68430358600017,24.254263343000105],[68.6488265110001,24.32576080900003]]],[[[70.43192252100005,23.04330565000015],[70.45133249400016,22.974018994000176],[70.37622058400012,22.906662691000122],[70.25428048800012,22.73514145900009],[70.19077248400004,22.589048239000192],[70.38059258400017,22.691543828000135],[70.60028863700018,22.976210191],[70.60463750400004,23.07104606100006],[70.69326758000017,23.111571893000132],[70.84636656200007,23.140491470000143],[70.94609059100003,23.117844574000173],[71.06340052200017,23.162169419000065],[71.236007546,23.129131142000062],[71.33461761900014,23.15065100800018],[71.43279250400019,23.124502320000033],[71.58766962300001,23.143130429000053],[71.68441053200007,23.10491330900004],[71.65936255600008,23.301600367000106],[71.53607951200013,23.410557564000158],[71.51943255000015,23.506572768000126],[71.45809160300007,23.546369708999976],[71.43035152700008,23.63725602700009],[71.26364854800016,23.636226226000076],[71.29374662100014,23.725330718],[71.17590360000008,23.75625893500012],[71.07852164300016,23.69115233500014],[71.078773603,23.85096522100008],[71.12242152600004,23.904541676000065],[71.29680651899997,23.922271580000086],[71.34517663800011,24.093062245000056],[71.29493752200017,24.269843457000093],[71.36596660800006,24.294752294000034],[71.34472653000017,24.37655816000006],[71.36379955100006,24.47292439800009],[71.2866285410002,24.52490091500016],[71.3412785500002,24.655494487000112],[71.25254051500008,24.651935531000163],[71.14369949000002,24.708132838999973],[71.08521258100006,24.69305278900015],[70.98706049500004,24.591746593000153],[71.00018353800004,24.44264494000015],[71.09739651600017,24.433696421000036],[71.04255657300013,24.354720284999985],[70.97846250700007,24.35975009700013],[70.87212364800013,24.30171195600019],[70.80322256000011,24.219867868],[70.65617363500013,24.221805931000063],[70.57274654100007,24.257244115000162],[70.55481748300002,24.413807170000098],[70.38379648300014,24.35559015900003],[70.11321255500008,24.28596353300003],[70.03440053700012,24.172751178000112],[69.73342852200011,24.172169307000047],[69.58958450200015,24.285315612000147],[69.50523355400003,24.260854704000053],[69.29591362700006,24.27154330700006],[69.24397248200006,24.253401348000068],[69.19496148200011,24.23216831100018],[69.1028515750001,24.26452463600009],[68.97487650900007,24.230295291000118],[68.93930857400017,24.286763669000152],[68.844512602,24.215777164000144],[68.82937656100006,24.30237177900017],[68.73454253500017,24.313993120000077],[68.68578349500012,24.19261712700012],[68.61981154700015,24.158276973000056],[68.5238494840001,24.165948426],[68.46877250100016,24.124240746000055],[68.40165759700011,24.1424398690001],[68.22994961600011,24.073953015000086],[68.19553352200006,24.13887990800015],[68.05721250600004,24.081233704],[67.91858655600015,24.128800334000175],[67.95162952700008,23.988846523000177],[67.9026875940001,23.96313067600005],[67.79825561800004,23.979130723000083],[67.67512562799999,24.08040791900015],[67.44153556500004,24.060175681000032],[67.50897250300011,23.88530369900019],[67.63331552200009,23.836051971000188],[67.65757761100014,23.79557710199998],[67.93605058600008,23.83824585100018],[67.9934086200002,23.78874853300016],[68.13292657200014,23.866274600000168],[68.19410658700019,23.848285359000045],[68.18462363700019,23.71945081300015],[68.3152695120001,23.567810618000067],[68.36744652400017,23.59463824000005],[68.41696949000004,23.694273085000077],[68.66903662000016,23.84027477400008],[68.68229662300013,23.79432702500003],[68.85624659600012,23.820616864000044],[69.04718048300015,23.706881647000046],[69.22207660400011,23.81747599800002],[69.34806851100006,23.803195749000054],[69.40614353299998,23.762268760000097],[69.51061255700006,23.778117933000033],[69.57362351400008,23.820115794000117],[69.69837154700019,23.792288379000126],[69.66562663600007,23.873644137000042],[69.7255406480001,23.943470755000078],[69.8234635730002,23.94434046100008],[69.93283064600007,23.884912600000064],[69.94450361899999,23.746350520000135],[69.84795348200015,23.55963993800009],[69.66953260300005,23.525210767999965],[69.45117949900003,23.599226997000017],[69.21761357600013,23.63096540800018],[69.18193064100012,23.57339950300019],[69.324226523,23.524710703999972],[69.42899360700005,23.522301913000092],[69.64010659100018,23.45184447300005],[69.85140263500017,23.474534452000114],[69.94206264100018,23.561299052000038],[70.0132065590002,23.553819376999968],[70.07330363200015,23.451334685000177],[70.18444062700007,23.45268534500019],[70.26859258800016,23.421027232000085],[70.28437051500009,23.51285148400018],[70.33464852300006,23.56717979600012],[70.52471957699998,23.664265704000172],[70.54415151100005,23.732298427000046],[70.61844652100012,23.720480949000148],[70.62454955300007,23.804817647000107],[70.56276654400006,23.847032600000034],[70.60234857300009,23.920383808000054],[70.84726761700011,23.87997280900015],[70.8331065590001,23.786837627000125],[70.74726849400014,23.82471578300016],[70.72000149300015,23.736440093000056],[70.76024653000013,23.709931486000073],[70.9356236050001,23.711112496000112],[70.99372058800003,23.633006234000106],[71.05902064300005,23.469333649000077],[71.03491948600015,23.431075625000062],[70.92571250800012,23.40238722100014],[70.78999356900005,23.27486444300007],[70.5831905600001,23.178338613000165],[70.31237059800003,23.214286584000092],[70.21690357000017,23.067674189000172],[70.25509655000013,22.967576328000177],[70.28984054500006,22.94507075000007],[70.43192252100005,23.04330565000015]]]]},"properties":{"objectid":589,"eco_name":"Rann of Kutch seasonal salt marsh","biome_num":9,"biome_name":"Flooded Grasslands & Savannas","realm":"Indomalayan","eco_biome_":"IN09","nnh":1,"eco_id":312,"shape_leng":25.4589208037,"shape_area":2.46733001013,"nnh_name":"Half Protected","color":"#72C5F7","color_bio":"#BEE7FF","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":27965.058787302616,"percentage":2.4183635124661635}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[44.99920734800014,14.483321748000094],[45.0199816870001,14.390871442000105],[45.085114728000065,14.365076757],[45.09712640300012,14.47318182700019],[45.17987349300006,14.551925024000184],[45.2732976260001,14.533240198000158],[45.328017476000014,14.451827739000123],[45.2999902360001,14.156874402000142],[45.350706194000054,13.956679830000098],[45.38941047800006,14.09948529200011],[45.46948830700018,14.188905534000071],[45.50952722200003,14.270317993000106],[45.51219648300014,14.390434737000078],[45.57092022400019,14.433142912000164],[45.68302918400019,14.421131237999987],[45.70705253200015,14.334380257000191],[45.8057739730001,14.34127655900005],[45.822953553000104,14.219961004000083],[45.9001715550001,14.142021339000166],[46.136877206000065,14.137691357000165],[46.176568702000054,14.170166218000134],[46.34327298700009,14.142021339000166],[46.41190685700019,14.068284007000159],[46.46199244100006,14.089273237999976],[46.799727672000074,14.082857178000097],[47.05171259300005,14.020753246000027],[47.17573759400017,13.955566283999985],[47.269187277000185,13.953887658000042],[47.50226570100017,14.06376225400004],[47.60580749200017,14.07588400300017],[47.52783114400012,14.161364455000125],[47.41172866800008,14.20363259200019],[47.33510643000017,14.178361642000027],[47.197330293,14.179440829000043],[47.258484192000026,14.08788984400013],[47.1917544960001,14.053625674000159],[47.06063334200019,14.12907879400018],[47.0329342230001,14.26046974500008],[46.85199062700008,14.45148574700005],[46.72374730300004,14.39698683100005],[46.705491066000036,14.316497508],[46.54658086000018,14.376392357000157],[46.47868204600013,14.370906492000188],[46.479941096,14.595287343000052],[46.41608923100006,14.598704766000083],[46.36257956900005,14.65617144500004],[46.241261025000085,14.584585410000159],[46.159242855000116,14.576941173000137],[46.134511498999984,14.493304223000166],[45.97218386900016,14.524420765000059],[46.1247088880001,14.627033411000184],[46.332632145,14.706353615000069],[46.258348144000195,14.77874904000015],[46.31356651800019,14.833697617000098],[46.12740685400007,14.90861114300003],[45.98837166600009,14.852133719000165],[45.82658363000013,14.859867889000043],[45.78629400200009,14.97606029700006],[45.715967018000185,14.948630975000185],[45.67001166200009,15.000791653000135],[45.57621237200004,14.99557558500004],[45.49608277800013,15.112217655000109],[45.553279660000044,15.146391892000167],[45.51964501600014,15.280750606000083],[45.36115946600006,15.447327970000174],[45.44272085699998,15.493165020000049],[45.43627786200011,15.579505390000122],[45.25623060000015,15.61451753200015],[45.12773970600006,15.543133701000102],[44.98556691100015,15.557707900000082],[45.007558013000164,15.724960502000101],[45.081321304000085,15.81728358900017],[45.00327498300015,15.859400049000044],[44.943788458000085,15.810859045000086],[44.79935517500013,15.842505876000132],[44.71298074100014,15.79705817100006],[44.801496690000135,16.065699318000043],[44.402699026000164,16.249155762000157],[44.39032582800013,16.29960033500015],[44.44267397000016,16.37193595000008],[44.65837675000006,16.32335759],[44.747999061000144,16.279777829000125],[44.88402829600017,16.306253318000017],[44.93180590300011,16.225000955999974],[45.0045374180001,16.215567161000024],[45.09248473100013,16.14192269800003],[45.167650774000094,16.238390858000116],[45.3006368500001,16.23047864300014],[45.39497479800019,16.11088246999998],[45.48231348000007,16.113012681000157],[45.44640419600006,16.23686927800003],[45.369412257000135,16.2642577150001],[45.21147227300008,16.40150421400017],[45.30763611700007,16.546054297000126],[45.32855311700001,16.613386451000054],[45.31295689100011,16.71533956100012],[45.20528628100004,16.693924412000058],[45.22521426700007,16.835502342000098],[45.06519551400004,16.766200540000114],[45.04913415200019,16.81825125],[45.09077472000013,16.901532385000166],[45.02745707400004,16.979111943000078],[44.86419630600005,16.999277875000075],[44.82181215700018,17.0818451720001],[44.54200283100005,17.1270886960001],[44.52368098100004,17.184433706],[44.5757911770001,17.34671294600014],[44.56127646500016,17.37431469400002],[44.41755702000012,17.39406422100012],[44.363305309000054,17.457119937000073],[44.38116713000011,17.564386039000055],[44.35832430400018,17.631486840000093],[44.38017701400008,17.718521944000088],[44.31842055900012,17.922958778000066],[44.198181201000125,17.96792488000017],[44.28334699900017,18.152106035000145],[44.38550998300019,18.111456679000128],[44.42265198400014,18.06145437300006],[44.50970635800013,18.051471898000045],[44.442616933000124,18.195723154000063],[44.52823239200012,18.265600478000067],[44.56654351100019,18.359849428000075],[44.55826974800016,18.42127312300005],[44.63534164800018,18.492679295000016],[44.58821717200016,18.584050414000046],[44.519688833000146,18.49978393900011],[44.35691154200015,18.481257905000064],[44.289822118000075,18.401308174000064],[44.15996001400009,18.56399553200015],[44.12569584400012,18.755371263000143],[44.079021030000035,18.838378687999978],[44.14332255600016,18.947286588000168],[44.22552059200012,18.76868123000014],[44.33056140600007,18.678838956999982],[44.44783300200015,18.700152890000027],[44.54684835800015,18.962035470000103],[44.50116279800005,18.998637877000192],[44.49657625600014,19.138752252000188],[44.5194190360001,19.338221881000152],[44.45089069599999,19.418891069000097],[44.33820564400014,19.432650696],[44.28037923599999,19.403692526000157],[44.28946238900005,19.33210649200015],[44.41896476300013,19.19810750700009],[44.415907068000195,19.093066692000036],[44.34126333900008,19.047381132000112],[44.26940750700004,19.114470556000185],[44.23613259100017,19.44991768000017],[44.14089438700006,19.44515127300002],[44.131361573,19.499919985000133],[44.181363879000116,19.607029241000134],[44.150427200000195,19.702177513000095],[44.28127855800017,19.792559379000068],[44.35745113500013,19.897240465000095],[44.34791832200017,19.942476364000015],[44.195033574000036,19.95335816100004],[44.14404201399998,19.942116635000048],[44.07380496200011,19.733743717000152],[44.01004302900009,19.716476734000082],[43.94816967200006,19.530856664000055],[43.90536194300006,19.566559749000135],[43.87676350200019,19.70694392000007],[43.77496024600009,19.716117005000115],[43.85275160300006,19.562692664000167],[43.73817797500004,19.547494122000103],[43.64599746600004,19.84013351500016],[43.56272024400016,19.921072499],[43.50561329400006,19.89490222800015],[43.4315091580001,20.021167044000038],[43.35956339300009,19.952009178000083],[43.280153256000176,19.928087211000104],[43.247597798000186,19.866393719000087],[43.232758985000146,19.732124938000027],[43.29166457900004,19.721782733999987],[43.2654943070001,19.600823919000106],[43.18932173000013,19.408099204000052],[43.13104566100003,19.34056011900003],[43.05802071099998,19.39245100100004],[43.059549559,19.515478257000098],[43.182576814000186,19.65226514000011],[42.972944846000075,19.810186091000105],[42.83633782700019,19.728527649000057],[42.861878573000126,19.89346331300004],[42.89128640400014,19.948232025000095],[42.90207826800008,20.142395655000087],[42.79236097900019,20.163439791000087],[42.7649316560001,19.881322466000086],[42.69568385900004,19.868552092000073],[42.731117147000134,19.72448070000013],[42.658811655000136,19.721692802],[42.60233423000011,19.773493752000036],[42.57913172200006,19.57087649500005],[42.74100969000017,19.43561845900018],[42.773025555000174,19.301979203000087],[42.863947014000075,19.284802152000054],[42.88723945500004,19.15053337000012],[42.86214836900007,18.95223285900005],[42.873839556000064,18.82057211200015],[42.831661352000026,18.553203667000105],[42.92662976000008,18.43503275100005],[43.12915708500009,18.44510515700017],[43.16180247500006,18.333679156000073],[43.209106815000155,18.358230648000074],[43.35335807100006,18.169912611000143],[43.449315733,18.093380304999982],[43.44788022400019,18.044774076000067],[43.54908753200016,17.941756437000095],[43.7118372760001,17.854390295000087],[43.80106706400011,17.743745358000012],[43.848180392000074,17.63809728900003],[43.93241331100012,17.65023254],[44.07303945700005,17.570996489000095],[44.07303945700005,17.52888002900005],[43.9202780600001,17.461779229000115],[43.88815533700017,17.38754004500015],[44.04662744000012,17.303307126000163],[44.1208666230001,17.237634002],[44.22865620700014,17.192662189000032],[44.26220660700017,17.07916189900004],[44.21081024900002,17.01134726000015],[44.18145668200003,16.881658086000016],[43.996815776000176,16.74031228800004],[43.92267207600014,16.561963274999982],[44.02335299500004,16.37162824799998],[44.00466843200013,16.22584814400011],[44.06670031800002,16.164964042000065],[44.156632523000155,16.15165407600017],[44.21832601500017,16.02916641300004],[44.14997753900019,16.02835702300007],[44.14503126800014,15.929161801000078],[44.24413655800015,15.947507971000164],[44.30753876200009,16.019183938000026],[44.387488492000045,15.850021461000154],[44.53164981600008,15.850021461000154],[44.49333869700007,15.935007395000014],[44.68336544500005,15.829966580000189],[44.69082981800011,15.71413390000015],[44.75786546300009,15.545052685000087],[44.78750693800009,15.384172641000134],[44.74748710700004,15.342534031000184],[44.78247073400013,15.26582186000013],[44.80162629400019,15.199991486000158],[44.90163090600015,15.188300300000037],[44.991653042,15.128315519000125],[44.929959550000035,15.07912260300003],[44.85585541300014,15.032537721000097],[44.734177141000146,15.131643011000108],[44.74919581900019,15.06833073900009],[44.8183536840001,14.989999789000024],[44.83750924400016,14.98163609400018],[44.85081921000011,14.934961279000163],[44.74829649700007,14.969135517000154],[44.705039106000186,14.867512126000065],[44.72248595400009,14.830819787],[44.79829880200003,14.770835006000084],[44.80162629400019,14.674157886000103],[44.89245782100011,14.595017546000179],[44.93670446500005,14.59420815599998],[44.99920734800014,14.483321748000094]]],[[[42.82725467400013,20.82471129100003],[42.89704206500005,20.577307797000174],[42.96997708300006,20.62335308500019],[42.94488599800013,20.832355529000154],[42.892363065000154,20.868323534000126],[42.82725467400013,20.82471129100003]]],[[[41.389688383000134,23.97647533500009],[41.32116004400012,23.947966825000094],[41.331142518000036,23.763785670000175],[41.39679302900015,23.868017095000027],[41.389688383000134,23.97647533500009]]],[[[41.08553766700004,24.11497092900015],[40.976449903000116,24.079897369000037],[40.88589260000015,23.981336865000173],[40.84442942700002,23.87539153600011],[40.71465725600012,23.872243909000133],[40.87995264799997,23.778084891000162],[41.078433024000105,23.875121739000065],[41.03418637900012,23.981961199000125],[41.11125827800004,24.030794386000025],[41.08553766700004,24.11497092900015]]],[[[40.003563314000075,24.724891141000114],[39.93341619400013,24.617152359999977],[40.08279358600015,24.661848665000093],[40.09169687400015,24.74188832700014],[40.003563314000075,24.724891141000114]]],[[[38.04169227000011,26.574976454000137],[37.94969162500007,26.512473572000147],[37.820818776000124,26.54188140300016],[37.838895149000166,26.613737233999984],[37.74977233400017,26.643774591000067],[37.77585267300009,26.705378151000104],[37.70651494400005,26.885782153000093],[37.625396095000156,27.151351953000074],[37.65003751900008,27.360084600000164],[37.532675992000065,27.32564056600006],[37.42664592300008,27.421868025000038],[37.41297622800016,27.520163924000144],[37.34525727800002,27.50397612800009],[37.29633415800009,27.581677552000144],[37.21962198799997,27.58365606100017],[37.12627235999997,27.505684839000025],[37.07393181700019,27.547683179000046],[36.93993283200007,27.555597213000112],[36.91520147500006,27.61612158700018],[36.81052038900003,27.670350706000136],[36.559969267000156,27.65623135000004],[36.43298499400015,27.876655183000025],[36.41355963800015,27.97746918500019],[36.31805163700017,28.042130440000165],[36.25905611100006,27.99473616800003],[36.226320788000066,28.161200679000103],[36.17694800800018,28.263093867],[36.165886347000026,28.43882139400006],[36.020376039999974,28.52479658200008],[35.94816047900008,28.656097601000056],[35.97945688600004,28.7434217710001],[35.929724377000184,28.820493671000122],[35.95148797100006,28.899364214000173],[35.82648220600015,29.061062318000154],[35.82971976600015,29.163495099000045],[35.75453644300018,29.283014998999988],[35.73843857800006,29.378612933000056],[35.76146122200015,29.490128866000077],[35.69599057800008,29.52430310400007],[35.671651363000024,29.716722977000074],[35.601921491000155,29.77935083600005],[35.54445481300013,29.886729889000094],[35.3941780990001,29.805161379000026],[35.32564975899999,29.814963989000148],[35.20127352000014,29.729438463000065],[35.21988948600017,29.68851931],[35.15315979000019,29.576193986000078],[35.07896572200008,29.547685477000186],[35.09560318000018,29.717297615000064],[35.2147633510001,29.9353832110001],[35.21413382500009,30.008767890000115],[35.25847040200006,30.172174706000078],[35.325469895000026,30.33944860700018],[35.48896664200009,30.60780630500011],[35.432938879000176,30.728315458999987],[35.490675354000075,30.85449034200019],[35.48716799800013,30.87544454600004],[35.53420254100001,30.943972886000154],[35.64113193300011,30.915014716000087],[35.718833357000165,30.887405529000034],[35.72225078100013,30.923738140000182],[35.64717623200005,30.952896835000047],[35.537106154000014,30.984855304000064],[35.612353627000175,31.408202926000058],[35.77108396799997,31.384550756000067],[35.88709651200003,31.36692404400003],[35.8725274950001,31.405594892000067],[35.78943013800006,31.41296933300015],[35.645448679000026,31.42511018100015],[35.77836847700007,31.501372690000096],[35.788710680000065,31.532039572000144],[35.64706745800015,31.44777309699998],[35.60794694900005,31.47079574100013],[35.61289322000016,31.618104692000145],[35.617120034000095,31.638249506000136],[35.62701257700019,31.756960016000107],[35.59391752500011,31.8638894070001],[35.65147413600005,31.87576045800006],[35.69491139100006,31.895005950000098],[35.692483222000135,31.89878310199998],[35.64535874500007,31.905797814000096],[35.592748407000045,31.90687700100011],[35.60506911900018,32.09861246100007],[35.647876849000056,32.09186754600006],[35.67449678100007,32.08035622299997],[35.68079203500014,32.10805534200006],[35.686997357000166,32.15428049600007],[35.679532984000105,32.18665608900017],[35.638973560000125,32.20185463200016],[35.66163647500002,32.35069243099997],[35.558955081000136,32.4263314050001],[35.56991670200017,32.19547743500016],[35.54325023400003,32.086531003000175],[35.521620846000076,32.02270026000019],[35.54060921000013,31.817178675000036],[35.58015789800004,31.748686254000177],[35.52970593200007,31.596161234000135],[35.55497688100013,31.454967673],[35.51810467700017,31.351545638000175],[35.41917925200005,31.30433123],[35.40384307199997,31.229404824000085],[35.459216740000045,31.120147652000128],[35.414632852000125,30.973149056000125],[35.414862506000134,30.971941802000117],[35.35910982600012,30.913982338000153],[35.33437318300008,30.813031597000133],[35.20918755399998,30.591438645000096],[35.160714096000106,30.41948827000016],[35.186164340000175,30.343294090000143],[35.14137867300019,30.233688334000135],[35.17977972300014,30.150501045000112],[35.10201053500015,30.036106054000072],[35.075458366000134,29.85624287200011],[35.020639857000106,29.721794073000126],[34.9182164880001,29.649973371999977],[34.83175642499998,29.486577372000056],[34.72646527500012,29.406270563000135],[34.53729812500006,29.304548605000036],[34.414161018000186,29.152857966],[34.37311531600011,28.804861794000033],[34.326715826000054,28.685293878000152],[34.146471655000084,28.503265111000132],[34.06794944200004,28.47292698300015],[33.896628249000116,28.467573196000103],[33.469707442000185,28.69552715300017],[33.26848001400015,28.831899997000107],[33.17392486400007,28.82306977000019],[33.224998452000136,28.75624506600019],[33.196388501,28.669582725000055],[33.22027558400015,28.583752204],[33.347496614000136,28.465981938000027],[33.4313885680001,28.361539065000102],[33.56555149000013,28.29209902100007],[33.62749459300011,28.18765715400002],[33.805549518000134,27.98711157100007],[33.92166150800006,27.931004117000043],[34.049438593000104,27.81295205200007],[34.16165953600006,27.78267510900008],[34.25499756000016,27.78739613199997],[34.288604466000095,27.857115964000116],[34.43027455499998,27.97127513900017],[34.45304852100014,28.164327300000082],[34.406105505000085,28.308208201000127],[34.46083061600001,28.439036131000137],[34.62638845800012,28.729025170000057],[34.64332560300005,28.96290591800016],[34.680271523000044,28.979013421000047],[34.69888353900012,29.165675890000102],[34.73749561400018,29.205118445000153],[34.74777249800019,29.310667393000017],[34.869438505000176,29.478438896000057],[34.97867082100015,29.544308688000115],[34.97629302300004,29.40143258400019],[34.93004075800019,29.231026060000147],[34.929413564000185,29.230493734000163],[34.93004075800019,29.231026060000147],[34.85395268100012,29.043920337000145],[34.83055509999997,28.788857214000075],[34.77973859000008,28.669366427000114],[34.80713644900004,28.519897726000124],[34.77828504800004,28.477511756000126],[34.652619148000156,28.17178445000019],[34.76128843000009,28.095423567000125],[34.86261584200008,28.116632857000127],[34.93038725300016,28.078457280000066],[34.991167604000054,28.112390871000116],[35.2208787400001,28.05229277900014],[35.246329554000056,27.966587388000164],[35.429322237000065,27.773743246000095],[35.539644307000174,27.530643768000175],[35.65021508500007,27.384186431000103],[35.76757661300013,27.30369710800005],[35.8164318260001,27.195109400000092],[35.80389396900017,27.112210154000024],[36.019683838000105,26.928017171000192],[36.11316681000011,26.72850036600005],[36.21076251699998,26.662660353000035],[36.45151102900007,26.24312661900018],[36.497587585000076,26.11425476100004],[36.557898182000145,26.068925520000164],[36.68472239300007,26.045833333000076],[36.70972239200006,25.9625],[36.67097632200017,25.844406113000048],[36.77916666700003,25.73333333300019],[36.81250000000017,25.766666667000038],[36.92464435700015,25.655779391000067],[37.00972239200007,25.504166667],[37.081127421000076,25.44779459600005],[37.092129517000046,25.350462850000042],[37.25175120000006,25.176751709000087],[37.242548551000084,25.068157306000046],[37.28632812500007,24.987500000000182],[37.27032826700014,24.86300455700001],[37.2200002030001,24.803333537000015],[37.22544677100012,24.70967284900007],[37.29417578600004,24.67758680100019],[37.45767253400015,24.43971612000007],[37.42583313000006,24.38750000000016],[37.49677882300011,24.288965148000102],[37.576161803,24.248443451000128],[37.68412182500009,24.303648694000174],[37.74830560800018,24.26829657400009],[37.855091154000036,24.154102859000034],[37.93517367600009,24.16247617000016],[38.03761189800019,24.0707214360001],[38.07916666700004,24.075000000000102],[38.22164661200014,23.960107673000095],[38.4,23.92083333300002],[38.4328704830001,23.81712951700007],[38.56250000000017,23.593750000000114],[38.66807007500012,23.51251509000008],[38.698647025000184,23.37914563100003],[38.81955108600016,23.177884928000026],[38.8198130290001,22.988520304000076],[38.91934065500004,22.98605196500006],[39.02501099500017,22.862485116000187],[39.020874114000094,22.786132673999987],[39.11799612900006,22.407623382000054],[39.112068190000116,22.355836673000056],[39.08781946100004,22.248389317000147],[39.04381997899998,22.21194947600003],[39.05235038600017,22.070811918000175],[38.97378485700011,21.97508741100006],[39.10310767400017,21.71719594300015],[39.14821811600012,21.533916657000134],[39.177715879000175,21.511973199000124],[39.16818306500011,21.35684014600008],[39.10610712700009,21.321647300000166],[39.19790723100016,21.183693631000097],[39.19840028600015,21.10511990500015],[39.251943970000184,21.05416666700006],[39.28210875000002,20.963798812000164],[39.42297533700008,20.825316924000163],[39.53753463000004,20.63648318700018],[39.685745239000084,20.477412924000134],[39.687088013000164,20.43791097100012],[39.78071131100006,20.362819490000106],[39.99455323100017,20.269649725000136],[40.07166646300004,20.31166585300008],[40.177166748000104,20.218833415000063],[40.244167074000075,20.194167074000063],[40.27084182600004,20.12009246800011],[40.37795108200004,20.078004197000155],[40.55241955900016,19.95245884000019],[40.54449971500014,19.905499268000142],[40.628772,19.787703040000167],[40.73732017100019,19.79408822700009],[40.80360209100007,19.704166667000038],[40.80515909900009,19.614382127000113],[40.80543182600019,19.61465485500014],[40.80515909900009,19.614382127000113],[40.862505800000065,19.54578541000012],[40.96071472200015,19.49083667300016],[40.95888657300014,19.35317532400012],[41.04972229000009,19.24972127300009],[41.07916666700015,19.115832520000083],[41.15037878700008,19.09747337000016],[41.13250020300012,18.9625],[41.19084827900008,18.863739571000053],[41.24336868700016,18.84584306100004],[41.21791787300003,18.707077670000103],[41.296412171000156,18.586932374000128],[41.354165164000165,18.582521566000025],[41.42070455300012,18.480654853999965],[41.4356437400001,18.456436615000143],[41.436522735000096,18.457432810000057],[41.436558229000184,18.45747303600001],[41.436832281000136,18.459329223000054],[41.43720025900018,18.459930135000036],[41.43553132500011,18.472590687000036],[41.43488637100006,18.473663468999973],[41.43405542100004,18.474382128],[41.43212678000009,18.476139801000045],[41.43197824600003,18.477654855000026],[41.43185424400008,18.478919666000138],[41.43214243800014,18.48114289500012],[41.43272727700014,18.481803197000033],[41.48717489300009,18.55608149800014],[41.410552655000174,18.62757760100004],[41.40452719700005,18.70473943200011],[41.50093452100015,18.744849195000143],[41.575308454000094,18.828216349000172],[41.526834995000115,18.88559309600015],[41.40461712900003,18.876330079000127],[41.38357299300003,18.94234031700006],[41.423592825000185,19.00592238500019],[41.30245414500018,19.077598352000052],[41.27097787300016,19.166901032000055],[41.285726755000155,19.239386389000117],[41.34786990800012,19.28606120300003],[41.34427262000003,19.359445882000045],[41.13769834600009,19.49947032400013],[41.215219906000186,19.538950562000025],[41.13221248200006,19.643361852000112],[40.99371688700006,19.67232002200018],[41.05244261600012,19.749391921000097],[40.941106547,19.946343449000153],[40.77095481600003,20.001741687000106],[40.80207135900008,20.15930291],[40.69523189900019,20.254720979000012],[40.62751294900005,20.206966978000082],[40.7007177640001,20.14842111300004],[40.68102261100006,20.09967785800012],[40.56474027100012,20.131513858000062],[40.54135789700007,20.220097080000073],[40.488297897000166,20.285657657000172],[40.39216037000011,20.225762809000173],[40.31293009800004,20.217668910000043],[40.24449169000013,20.290244199000085],[40.104467247000116,20.316684268000074],[40.008329721000166,20.43890213400016],[40.03647850100003,20.469479083000124],[39.91309151600012,20.59889152600016],[39.83655921000019,20.620655119000105],[39.81272717600007,20.838740715000142],[39.687541547000194,20.890811462000045],[39.606422698000074,20.95933980200016],[39.668385987000136,21.010241429000132],[39.698153547000175,21.09306899],[39.65444649600005,21.150625601000115],[39.71721917399998,21.392183502000137],[39.68547310600019,21.44326499500005],[39.75094375100019,21.62834547200015],[39.839437040000064,21.604513438000026],[39.807870837000166,21.75128279500018],[39.98593660199998,21.780870491000087],[40.13729250200009,21.863248390000138],[40.56743823700009,21.882403950000025],[40.60233193200014,21.771337677000076],[40.579129423000154,21.59273231900005],[40.51482789700003,21.512692657000173],[40.512489660000085,21.43750933399997],[40.55907454200019,21.350724756000147],[40.61249427100017,21.33633560300018],[40.70206674700012,21.204135263000182],[40.78624329000007,21.169511364000186],[40.862505800000065,21.186868280000112],[41.02753139500015,21.095856888000128],[41.07582498900007,20.893689292000147],[41.130413838000095,20.855378173000076],[41.12744607500014,20.762478206000083],[41.207575669000164,20.69583844200008],[41.220795703000135,20.640710001000116],[41.339236417000166,20.55032813500003],[41.57099170800018,20.552666372000147],[41.62540069200014,20.5025741340001],[41.683586828000045,20.354905455000164],[41.78179279600005,20.44411820100015],[41.928112492000025,20.36938453900018],[41.97172961200005,20.478202507000162],[41.9801832390001,20.478472304000036],[41.98198188300006,20.476943456000186],[42.13531629200014,20.522089423000182],[42.20915063200016,20.43818267600011],[42.24170609000015,20.23133860500019],[42.43739856700006,20.214521283000124],[42.54441789100008,20.117304570000158],[42.61204690800014,20.18916040100015],[42.60782009500008,20.339796844000148],[42.57544450100005,20.389079692000053],[42.45088839800002,20.434855184000128],[42.618701892000104,20.518761930999972],[42.67868667200014,20.580545356000073],[42.588035010000056,20.764906375000123],[42.513481212000045,20.7818136300001],[42.500351110000054,20.883257157000173],[42.59540945100014,21.02840773500003],[42.66456731599999,21.000258955000163],[42.73557889600005,21.016885003000027],[42.795238809000125,20.928313191000086],[42.91628755700009,20.98308190400013],[42.900819217000105,21.078499973000135],[42.80108440300006,21.212049297000192],[42.73120708000016,21.369790384000055],[42.73624328300008,21.437059673000192],[42.60925901000002,21.456934690000026],[42.57868206100005,21.667106252000053],[42.615644197000165,21.711982422000176],[42.53326629700007,21.891487102000156],[42.34701670100014,22.04104435900001],[42.32938998900005,22.180169479000142],[42.24872080200004,22.17513327600011],[42.18118171600008,22.10849351200011],[42.28647341700008,21.945300246000045],[42.276869582000074,21.860190695000142],[42.216165344000046,21.77376584700005],[42.168411343000116,21.78698588100019],[42.110584936000066,21.67412096400011],[42.152043682000055,21.569619742000043],[42.125423749000106,21.520336893999968],[42.03225398500007,21.56863048800011],[41.9556317470001,21.541740759],[41.96651354400012,21.442905266000082],[41.901042899000174,21.22922634800011],[41.799779236,21.146758516000034],[41.68403648900005,21.290470179000124],[41.741053507000174,21.34200133200011],[41.732240151000155,21.525283165000076],[41.79222493100019,21.58976455600009],[41.84429567800004,21.853715577000173],[41.81156035500004,21.97197642600014],[41.765335202000074,22.03933564700003],[41.67099631900004,22.1092129700001],[41.63385431900019,22.263536633],[41.553454928000065,22.198155920000033],[41.594823742000074,21.99463934100004],[41.4639723840001,21.880785170000024],[41.384562248000066,21.861809475000143],[41.34670079,21.79984618600014],[41.36082014600015,21.627626014000157],[41.39571384100003,21.45162869000012],[41.35668326400014,21.380402384000035],[41.25308511000003,21.401028856000153],[41.11203466100005,21.479390217000173],[41.049345573000096,21.575662745000102],[40.92844518800001,21.620440665000103],[40.86799499500012,21.75253552999999],[40.77843915500017,21.87119701900008],[40.70759876900007,22.081696144000148],[40.792088884,22.167309174000025],[40.74676305300011,22.37829012600008],[40.83777444400016,22.47038070400015],[40.72050284900013,22.554647179000085],[40.76726759500002,22.641701553000075],[40.80440959600003,22.782265589000076],[40.78300573100017,22.832267895000143],[40.686058815000024,22.853401963000124],[40.77698027300005,23.016089321000038],[40.675536747000024,23.10386315300002],[40.58020861,23.12886430599997],[40.510870880000084,23.09603905100016],[40.45628203200016,23.1385769850001],[40.52202247300005,23.235074239000085],[40.29134636900005,23.318711190000045],[40.33946009800013,23.37446915600009],[40.30762409800013,23.45783631000012],[40.34908284400012,23.490032039000084],[40.442882133000126,23.45450881900007],[40.543606202000035,23.479330107000123],[40.63623637400019,23.46521075100003],[40.730305459000135,23.350457258000176],[40.88756183400005,23.384088040000165],[40.83705498600017,23.18911888300005],[40.95783393700009,23.196043662000022],[41.08337929500016,23.22904878200012],[41.158292821000146,23.211871730000098],[41.19588448200017,23.114744950000045],[41.13589970200013,23.035604609000075],[41.23464526300012,22.962040066000043],[41.16656658400018,22.89108355700006],[41.211802483000156,22.811313691000066],[41.077084040000045,22.80214060600008],[41.02735153100019,22.673357689000056],[41.047046684,22.526048738000043],[41.10478315900008,22.468402195000124],[41.29292133100017,22.436656127000163],[41.28698580600013,22.35301917600009],[41.39625343400019,22.259129955000105],[41.51559347,22.332334769000056],[41.42044519700016,22.419209279000086],[41.47881119800007,22.561571959],[41.55876092900007,22.653033011000105],[41.64698442100013,22.56822694200008],[41.70723899800004,22.62650301100018],[41.69689679400017,22.69395216400011],[41.77639686300006,22.810234505000153],[41.75580238800006,23.006916236],[41.87775045800004,23.09729810200014],[41.81542744000018,23.24118962900019],[41.66371181100004,23.309987766000177],[41.52782425000004,23.473844243000087],[41.469642232000126,23.517392500000028],[41.44823425000004,23.609551939000085],[41.466760283000156,23.70667872000007],[41.351107469000056,23.71234444900017],[41.34706051800015,23.58491051500016],[41.16269949900004,23.539404820000073],[40.96224061500004,23.602537227000028],[40.86133668100007,23.652539533000095],[40.86133668100007,23.71603167000012],[40.78129701900019,23.78995594200012],[40.51069101600012,23.89346790900015],[40.45790081100006,23.767832619000103],[40.36859813200016,23.80641353500016],[40.45178542200006,23.903630248000127],[40.38739396300019,24.022340758000098],[40.28496118200013,24.090419437000037],[40.171556672000065,24.038348691000067],[40.11247121400004,24.05165865700019],[40.052306569000166,24.138623099000142],[40.0820741280001,24.195550184000012],[39.98359836400016,24.41237673100011],[40.060400467000136,24.435129578000044],[40.134234807000155,24.352032221000172],[40.23037233399998,24.315789542],[40.274888775000136,24.38305883100014],[40.429032574000075,24.381619916000034],[40.59333871200016,24.449698595000143],[40.57355362700014,24.591881410000042],[40.45520284500009,24.609957783000084],[40.331546064000065,24.545296528000108],[40.27875586000005,24.606630292000148],[40.147814570000094,24.575154020000127],[40.06372795900012,24.495833817000175],[39.89582453300011,24.520834970000124],[39.83745853200014,24.678396192000093],[39.793841413,24.694404123000083],[40.037557687000174,24.93326405900001],[40.16400236700002,24.871210838000025],[40.13846162200019,24.76356198900004],[40.19556857100008,24.73217564900017],[40.26652508100017,24.77120622600006],[40.28909806300004,24.856551888000183],[40.46599471000013,24.798725481000133],[40.56572952500011,24.66031981800012],[40.60296145800004,24.741438666000136],[40.55295915200014,24.806459650000136],[40.35951497999997,24.932184872000164],[40.21346507900006,25.0559315860001],[40.2542043680001,25.07490728100015],[40.354478776,25.01150507700015],[40.52840765999997,24.944325720000165],[40.60053328800018,24.93901972000009],[40.546573965,25.209985452000126],[40.46185782800018,25.358373590000042],[40.415902472000084,25.50433355800004],[40.495582405000164,25.516204609000056],[40.500888404000136,25.59759325400006],[40.62076803400004,25.66675112000007],[40.65278389900004,25.740405595000027],[40.757914646000074,25.793465596000033],[40.88390966500009,25.957771734000175],[40.76870651100006,25.953095259],[40.621577424,25.983492344000013],[40.420848743000136,26.087364041000114],[40.31239050400018,26.175587533],[40.43613721800011,26.204455771000084],[40.515727218999984,26.322177027000123],[40.515637287,26.496195843000066],[40.463836336999975,26.617604319000122],[40.40007440400018,26.660052319999977],[40.38802348800016,26.773187033],[40.52490030400003,26.823099407000143],[40.53587203300003,26.89279686500015],[40.41446355700015,26.870133950000024],[40.275338436000084,26.924902662000136],[40.239815215000135,26.850528729000132],[40.12623084100011,26.819142390000025],[39.94474765200016,26.700611744000184],[39.88260449900014,26.704658693000113],[39.7637141240001,26.634511573000168],[39.740151887000025,26.486932826000043],[39.86416839700007,26.268217704000108],[39.91902704100016,26.26686872100015],[40.0004156870001,26.18709885600009],[40.089628434000076,26.156971567000028],[40.039356331000135,26.083496956000033],[39.90337883800015,26.070546718000173],[39.79186290400003,26.03619261600005],[39.68061676700012,26.172619771000143],[39.634121817000164,26.276041805999967],[39.45974327300013,26.29177994200012],[39.37871435600016,26.34852716300003],[39.1151230640001,26.35590160400011],[38.95099679100019,26.318399874000136],[38.879950349000126,26.246454111000162],[38.74721041500004,26.28935177200009],[38.64621655000019,26.274153230000024],[38.50556258200004,26.327303163000067],[38.50889007300009,26.42595879100014],[38.4585280390001,26.436750656000186],[38.36778644400016,26.365524349000054],[38.30420437600003,26.43962848600006],[38.315266037000185,26.51750977500018],[38.21157420500015,26.570839573000057],[38.09789989800004,26.539633098000024],[38.04169227000011,26.574976454000137]],[[39.494187307,23.63419336300018],[39.526652833000014,23.656676414000174],[39.602465681000126,23.66252200800011],[39.57413703700013,23.550016820000053],[39.47916862900013,23.57915485400008],[39.494187307,23.63419336300018]],[[37.27421083600012,26.52002787700019],[37.249209683000174,26.387467807],[37.18580747800013,26.449161300000128],[37.27421083600012,26.52002787700019]],[[35.354158268000106,28.757541128000128],[35.49580149000019,28.58001495600007],[35.350021386000094,28.511666480000088],[35.31413843800016,28.631636041000036],[35.23913497800004,28.64251783800006],[35.292464775000155,28.730021873],[35.354158268000106,28.757541128000128]],[[38.91916079100008,24.45581398500019],[38.98580055400015,24.42748534000009],[38.98499116400012,24.426675950000117],[38.97752679100006,24.375864255000124],[38.964126893000184,24.30751577900014],[38.91916079100008,24.45581398500019]],[[42.26113144600015,20.408774845000096],[42.245483242000034,20.456348981000133],[42.31742900600011,20.521280033000153],[42.332987278000076,20.406166811000105],[42.26113144600015,20.408774845000096]],[[42.685611452000046,21.052509566000026],[42.597927552000044,21.080298617000096],[42.576703552000026,21.142082041000037],[42.70602606199998,21.23165451699998],[42.634350095000116,21.31088479000016],[42.67769741800015,21.355850892000092],[42.75404986000018,21.102691736000054],[42.685611452000046,21.052509566000026]]],[[[35.69167383200016,32.598995247],[35.66829145800011,32.66410616400009],[35.57251366100019,32.60744887500016],[35.57722873200015,32.592607042],[35.69167383200016,32.598995247]]]]},"properties":{"objectid":592,"eco_name":"Red Sea-Arabian Desert shrublands","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Palearctic","eco_biome_":"PA13","nnh":2,"eco_id":837,"shape_leng":200.509957364,"shape_area":27.7602682447,"nnh_name":"Nature Could Reach Half Protected","color":"#CC8245","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":315393.20857172454,"percentage":1.195478251580806}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[36.18402475400006,22.651737095000158],[35.95196951500009,22.68181445000016],[35.843669459000125,22.760920338000062],[35.66979944999997,22.94609066000004],[35.660430494000025,23.063134383000033],[35.57592045800004,23.211976867000033],[35.53480957000011,23.422326092000105],[35.48738057100019,23.491333630000042],[35.5169904820001,23.75892907400015],[35.474838562000116,23.802535758000033],[35.51034145400007,23.977069111],[35.694381561000114,23.91004221600008],[35.72216052900012,23.991247267000176],[35.60792960500004,24.01915581999998],[35.584579467000026,24.086373487000117],[35.51169949000018,24.110292253000125],[35.31444950300005,24.360719045000053],[35.22851957300003,24.407417478000013],[35.13835946400002,24.51782122400016],[35.165821596000114,24.566278683],[35.10268055100016,24.63910535200006],[35.076778459000025,24.744811041000048],[34.997619598000085,24.82397644100007],[34.94787954000003,25.000728650000156],[34.81314849300014,25.198488424000118],[34.70117951000009,25.396720099000163],[34.63853048300018,25.577041324000106],[34.573390523000114,25.691444076000153],[34.41881146400004,25.867877941000188],[34.30651860400013,26.085846987000025],[34.223659468000164,26.20295240000013],[34.18103045000015,26.32819697700012],[34.113391509,26.403362532000017],[34.017700517000094,26.610964001000127],[33.9353595500001,26.674180147000186],[33.95148851100015,26.845482779000122],[33.90695948200005,27.049903819],[33.83275952300005,27.108792053000116],[33.838058562000185,27.25748466900012],[33.728050609000036,27.3090135920001],[33.62631945000015,27.492654385000094],[33.50212059900019,27.658218598000133],[33.546798490000185,27.700416619000066],[33.47257958700004,27.811041984000155],[33.58399955600015,27.805221422000102],[33.56515150500019,27.88123908200015],[33.48814059100005,27.982873681000058],[33.334308527000076,28.085389554000074],[33.12800960600009,28.29025097900012],[33.11272051200001,28.35041745300009],[32.92744860000016,28.550050583000143],[32.86613045200011,28.56938076],[32.813381459000084,28.761363056000164],[32.67819946500009,28.881646049000096],[32.62009845900013,28.9790241500001],[32.6667405660001,29.09501879300018],[32.59061846800017,29.345689834000098],[32.36186470100017,29.553449580000063],[32.29200977600016,29.579039981000108],[32.242159866000065,29.44488002600019],[32.3854899320001,29.115510056000176],[32.41643001800003,28.970290063000164],[32.359939930000166,28.538880262000077],[32.36376994900007,28.419069983000156],[32.43351997300016,28.29408014100005],[32.66233994500004,28.04371004400008],[32.863880167,27.77485996300004],[32.971689932000174,27.579069962000062],[33.155390002,27.174870031000125],[33.21946003800019,27.05739993800006],[33.423409973000105,26.78159002700005],[33.50846000500019,26.63633007800007],[33.75143004600011,26.107989953000185],[33.880300072000125,25.788549798000076],[34.04370011200007,25.48974991900019],[34.11857002900001,25.375100018000182],[34.35093664200019,24.945790135000095],[34.400869971000134,24.84453993],[34.61990992200003,24.463539959000173],[34.71286993900003,24.283369968999978],[34.96959998900013,23.948920063000116],[35.04350003600018,23.783159948000048],[35.16110020800011,23.447879932000035],[35.25369991200006,23.221200010000132],[35.37221996400007,22.967160073000116],[35.444640211000035,22.892769987000122],[35.56107002700014,22.72483004000003],[35.775410067999985,22.475650015000156],[35.98581007900003,22.19634997999998],[36.111189982000155,21.989829977000056],[36.16984001100013,21.79830001099998],[36.22881004400011,21.553120039000078],[36.30040000499997,21.395510001000105],[36.64473008800013,21.06784003100006],[36.717760068000075,20.979340008000122],[36.83993975100009,20.775920069000165],[36.847849913000175,20.663190018000023],[36.82337996900003,20.570890076000182],[36.69680999500008,20.38517000100012],[36.66608007800005,20.30446995],[36.654800100000045,20.09464894200005],[36.74468674700017,19.90629060000009],[36.814167008000084,19.865363871000113],[37.03299000200002,19.842719940000165],[37.259164537000174,19.741532639000127],[37.26335950700013,19.844221710000113],[37.17977952700005,20.036440711000182],[37.21078854600006,20.153792887],[37.186920574,20.37141156900003],[37.23279154500011,20.56224085000008],[37.17560953100019,20.687032804000125],[37.16740046200016,20.87374221200014],[37.087390503000165,21.05447213800005],[37.155940557000065,21.217353304000028],[37.24029150400008,21.021304276000023],[37.31312957200009,21.0686015120001],[37.02220947100005,21.400584222000134],[36.91374948700019,21.59012386300003],[36.86275851500005,21.97506209600016],[36.88058045300005,22.061227391000045],[36.64751861700006,22.21709910600009],[36.572151561000055,22.290806210000085],[36.434440580000114,22.359232380000094],[36.42444951900012,22.421889118000024],[36.29520057200011,22.504923771],[36.25345246900008,22.600215963000153],[36.253577056000154,22.607499285000074],[36.18348171700018,22.64870638100001],[36.18402475400006,22.651737095000158]],[[36.39863991700014,21.757260076000136],[36.226150030000156,21.979849997000088],[36.308139955,22.00974998100014],[36.35809002100001,21.960800060000167],[36.410219918,21.81755008300007],[36.39863991700014,21.757260076000136]],[[36.55223001100018,21.812310144000037],[36.46252002700004,21.82048996800006],[36.45080994600005,21.921870076000175],[36.51877002400005,21.944800021000162],[36.55223001100018,21.812310144000037]],[[36.38420980000018,21.534850047000077],[36.31800006500015,21.602969950000045],[36.390230035000116,21.641279992000136],[36.445599931,21.589930039000023],[36.38420980000018,21.534850047000077]]]},"properties":{"objectid":593,"eco_name":"Red Sea coastal desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Palearctic","eco_biome_":"PA13","nnh":2,"eco_id":836,"shape_leng":36.8328476402,"shape_area":5.25270199575,"nnh_name":"Nature Could Reach Half Protected","color":"#DE6C51","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":59085.301895140474,"percentage":0.2239591452320802}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[66.5662385620002,30.97583170200005],[66.42881759400018,30.952438648000054],[66.40816458500012,31.025794047000147],[66.43051157700012,31.13421631200015],[66.48286460900016,31.238078486000063],[66.62623555400012,31.420808334000128],[66.77649659100018,31.512592186000063],[66.95965559299998,31.585112746999982],[66.99384353200014,31.671924789000172],[66.8105465640001,31.61515063800016],[66.7560345220001,31.678787555999975],[67.04155751600007,31.83842542800005],[67.07854450700017,31.90251027500011],[66.93994856500012,31.934689240000125],[66.89914663400003,31.916179818000046],[66.6510315700001,31.68601929400006],[66.59961664100013,31.782808316000114],[66.36381560000018,31.729650956000114],[66.11141151700019,31.651022669000156],[66.03746049900013,31.69759084700013],[66.43499757100005,31.880547845000137],[66.52582555100014,31.90100119700014],[66.60107458900012,31.96050818400016],[66.32743059600006,31.93773690000006],[66.00907853700011,31.82601283600013],[65.80371855600004,31.77347841900007],[65.74813061300011,31.831312545000117],[65.94851660400002,31.968016189000082],[65.84441353500017,31.982470446000093],[65.66917459300015,31.947723770000152],[65.48228463900017,31.87638421800017],[65.44428259900019,31.83514827200014],[65.28727748200009,31.754367177000063],[65.22105458000016,31.752761037000084],[65.17411055800017,31.85701179600011],[65.0902256440001,31.83845728000017],[64.94803654700002,31.856071682000106],[64.90657848100011,31.944939804000057],[64.92166154800009,32.084886239000184],[64.97287749100013,32.222981614000105],[65.06885547900004,32.31826172500001],[65.18770550200009,32.37355093800011],[65.25047254600008,32.505260812000074],[65.35202064400005,32.54075884200017],[65.52911349400011,32.53123398300016],[65.67338549400012,32.569615891000126],[65.7773286370001,32.64395029700012],[65.8154605970002,32.74248945900018],[65.78472851700008,32.77335632000012],[65.6443405230001,32.71804514700017],[65.53985557400006,32.721017202000155],[65.49121052800018,32.78075318200018],[65.50079355800011,32.84871717400017],[65.6319195480001,32.97931326000014],[65.57931556200003,33.100369400000034],[65.51191751700009,33.04998594800003],[65.39961962800004,32.89774678100014],[65.138099555,32.64519853000007],[65.08124560800013,32.611282332000144],[64.67686454500017,32.55676827800016],[64.58782962200019,32.62380221300015],[64.50160951100008,32.59506703700009],[64.48017162000008,32.47760455499997],[64.44167353800009,32.45495346700005],[64.28180650500019,32.52866694100004],[64.08558648700006,32.34354489800006],[64.00162563300006,32.36938496500011],[63.90965251800003,32.314481822000175],[63.79318262000015,32.371071068000106],[63.65396457300005,32.364537207000126],[63.55914362300018,32.39107448000016],[63.509624512000016,32.45791328500019],[63.60069254900003,32.50559994400004],[63.78721654900011,32.65282321199999],[63.676132528000096,32.65105312100019],[63.22006663800016,32.40399099300015],[63.16743063300004,32.51072246000007],[63.06784456999998,32.47392389300012],[62.77596256200019,32.49718501600012],[62.72156551900002,32.53075302900015],[62.50310562900006,32.51170666300004],[62.37910056800018,32.54200556700005],[62.24184053300013,32.53417100200005],[62.0624694820001,32.562166056000024],[62.12832257400015,32.63965943300019],[62.23730458300014,32.65847311700003],[62.40673855300014,32.72577007700005],[62.49020755600003,32.71851419900008],[62.593883485000106,32.75129716300006],[62.65167955700002,32.80676038399997],[62.832286604000046,32.856193831000155],[63.05910459199998,32.9531449590001],[63.02344847900008,33.00946011600013],[62.80321162600006,32.99029573300015],[62.56839361400006,33.06038068100008],[62.490039583000055,33.12813562800005],[62.41410859300015,33.00126647100012],[62.29231249900016,32.984448014000066],[62.01126862600012,33.08005619300019],[61.94808148100009,33.08295599600007],[61.753154623,32.91654102000007],[61.73665652300008,32.861000685000135],[61.63492553200018,32.739551602000176],[61.55619062700015,32.79582485000003],[61.580047535,32.87907408000012],[61.66586648900005,32.96937249100017],[61.67691450799998,33.054620972],[61.497672538000074,32.97950000900005],[61.43556950800013,32.99303778900003],[61.254226530000096,32.88531407200003],[61.20190048800009,32.77190340100009],[60.984939618,32.62405417300005],[60.88005853900006,32.6200452760001],[60.61119860100018,32.49276406500019],[60.473827590000155,32.406412860000046],[60.478774589000125,32.31720962900005],[60.41204055800006,32.27779305900009],[60.35822253700019,32.114045371000145],[60.31623054300013,31.680545409000047],[60.25513451600011,31.62189454999998],[60.173385479000046,31.72305121300019],[60.158981513000015,31.84466022300012],[60.08366055800002,31.86013556300003],[60.06042055800003,31.600348197000073],[60.00913253100009,31.616300803000172],[60.033893511000144,31.43772586400013],[60.099170599,31.197209164000185],[60.04437256600005,31.089865651000082],[60.03164263400015,30.84891108000005],[60.00289958000013,30.617375421000133],[59.97487653000019,30.5174411750001],[59.9764675830001,30.33395360300011],[60.04074856600005,30.20880927400009],[60.024204534000035,30.194147816000054],[60.095996540000044,30.163953854000056],[60.12195261200003,30.07983508500007],[60.115199480000115,29.827485485000068],[60.151035637,29.76140792400014],[60.2431485620001,29.77603635700018],[60.40124852300016,29.688587626000185],[60.4690165450001,29.7094298990001],[60.433490519000145,29.80563336000006],[60.45380355900005,29.87245271900008],[60.54867563800019,29.885249371000157],[60.71351951100013,29.778729295000062],[60.758975578,29.63380266900009],[60.752433502000144,29.438942195000152],[60.78468656300009,29.314079163000088],[60.83277555300009,29.27349784300003],[60.96736964000007,29.4491897420001],[61.051471477000064,29.035197150000045],[61.12898647900016,28.94746444000009],[61.294013580000126,28.621763464000026],[61.315528585000095,28.500255372000083],[61.3019296170001,28.295711789000052],[61.33527752200018,28.11215045600005],[61.41833162100016,27.924383084000112],[61.45716062000008,27.965090468000085],[61.46631952600012,28.249473690000116],[61.53216960100002,28.339211016000036],[61.58034861300007,28.271891761],[61.60138350200009,27.97766701000012],[61.66661063400011,27.83479495600011],[61.72031063800006,27.81045491500015],[61.84205660900011,27.840516778000165],[62.068996637000055,27.745756848000156],[62.12162359000013,27.682446322000146],[62.276313625000114,27.428124460000163],[62.312087588000054,27.284314470000027],[62.479373611000085,27.201226005000024],[62.60277953400015,27.21704651200008],[62.854865607000136,27.365697051000097],[62.94614453300005,27.369665882000106],[63.10092157200012,27.43316298900004],[63.251731624,27.409351176000087],[63.331104559000096,27.44109880800005],[63.7240066060001,27.47284727700014],[63.79941154800002,27.38648098500005],[63.912696490000144,27.260234604000175],[64.02497057400012,27.181454940000094],[64.07422649300014,27.292937102000053],[64.21673561100016,27.45336807000018],[64.44943249800008,27.496808289000057],[64.58943961799997,27.557918901000164],[64.79412854400005,27.54952124000016],[64.92278254300004,27.603002811000067],[64.99992354500006,27.664787161000163],[65.00560748200007,27.771704706000037],[65.07312052700013,27.848070550000045],[65.37483953700007,28.02206209600007],[65.43285353900012,28.070620137000105],[65.46943652300007,28.18758540500005],[65.55782352400007,28.303091552000183],[65.58400758400012,28.400296649999973],[65.423019555,28.413485910000077],[65.18814856900002,28.35894922500006],[65.21737660100007,28.44763546000013],[65.32498950899998,28.585770063000098],[65.308776561,28.730104089000065],[65.01763148900011,28.66524592800016],[64.87944056000009,28.540021803000116],[64.68303664300015,28.536381040000038],[64.56649063800012,28.468304731000103],[64.35178349400013,28.37333776800017],[64.09587862500001,28.381987389000017],[63.911369635000085,28.42004676100015],[63.864730545999976,28.4805644380001],[63.90761957100011,28.57456060900006],[64.05189559399997,28.671922449000192],[64.26544150900008,28.75200147600009],[64.36925557100011,28.84791039700019],[64.50303661300018,28.804961356999968],[64.712531555,28.884187106000127],[64.91092650900015,28.975303423000184],[65.00164049400013,28.963513773000102],[65.34652748000008,29.08784991900012],[65.31810763100009,29.217209005000086],[65.4446795660001,29.29496373],[65.49632248300009,29.358850428000153],[65.6931225290001,29.428145632999986],[65.8062205540001,29.495604028000116],[65.89100652300004,29.65452809800007],[65.9131245210001,29.81858574800009],[66.0226436420001,30.086294850000115],[66.13825255000012,30.335753700000055],[66.25386062000007,30.536536324000053],[66.34255959600006,30.49403688900003],[66.4413684880002,30.59115347500017],[66.39659856400016,30.68418891300007],[66.52007254800009,30.820424344000116],[66.5662385620002,30.97583170200005]],[[66.14120448900002,31.277779370000133],[66.03004452700009,31.320404701000086],[66.06064551400004,31.39265016800016],[66.20539058900005,31.48549500100006],[66.32170055900013,31.5176959260001],[66.4085766390001,31.43905674299998],[66.38275953900006,31.357106540000018],[66.29222157400011,31.305161372000157],[66.14120448900002,31.277779370000133]]]},"properties":{"objectid":595,"eco_name":"Registan-North Pakistan sandy desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Palearctic","eco_biome_":"PA13","nnh":3,"eco_id":838,"shape_leng":40.0703296877,"shape_area":25.9865051733,"nnh_name":"Nature Could Recover","color":"#F6CE5C","color_bio":"#CC6767","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":277915.731641266,"percentage":1.0534222168380802}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[24.892896652,-33.981910705999894],[24.880788803000144,-33.97872924799998],[24.875875473000065,-33.97913742099985],[24.884754181000176,-33.985382079999965],[24.892896652,-33.981910705999894]]],[[[21.940231323000148,-34.050651549999884],[21.74969291700006,-33.96952056899994],[21.7973728180001,-34.071136474999946],[21.79596138000005,-34.14345169099994],[21.881441116000076,-34.17904663099995],[21.940231323000148,-34.050651549999884]]],[[[19.167972565000184,-34.07712554899996],[19.285615921000158,-34.087318419999974],[19.303066254000044,-33.96437072799989],[19.167972565000184,-34.07712554899996]]],[[[21.650623322000115,-33.91616821299988],[21.495594025000116,-33.88048553499988],[21.353994370000123,-33.92144775399993],[21.650623322000115,-33.91616821299988]]],[[[21.24684333800002,-33.92138671899994],[21.08564758300014,-33.87449645999993],[20.94327163700018,-33.87715530399993],[21.051443100000085,-33.91545867899998],[21.24684333800002,-33.92138671899994]]],[[[24.799270630000024,-33.86732482899998],[24.780401230000052,-33.86438369799998],[24.840824127000133,-33.92236328099989],[24.8412666320001,-33.905826568999885],[24.836753844999976,-33.90590667699996],[24.827974319000077,-33.89627838099989],[24.821527481000146,-33.89009475699993],[24.81456565899998,-33.88309097299998],[24.799270630000024,-33.86732482899998]]],[[[21.63329315200008,-33.985713958999895],[21.50247383100003,-33.99037933299991],[21.44201088000011,-34.112869262999936],[21.27546882600012,-34.08455657999991],[21.133962631000088,-34.03551864599996],[21.055694580000136,-34.07222366299982],[20.81480217,-34.04996871899988],[20.766597748000038,-34.00402069099988],[20.620729446000098,-34.00278091399997],[20.519330978000085,-34.033863067999846],[20.23266601600011,-33.956340789999956],[20.168504715000154,-33.87217712399996],[20.088138580000134,-33.826858520999906],[20.017101288000106,-33.877376555999945],[20.024538040000095,-33.8668174739999],[20.051275253000142,-33.89285278299997],[20.013376236000056,-33.898391723999964],[20.015420914000174,-33.896717071999944],[20.016036987000064,-33.89508056599993],[20.011089325000114,-33.89192199699988],[20.009622574,-33.88745880099998],[19.896327972000165,-33.88200759899996],[19.82582473800005,-33.92343902599998],[19.821779251000123,-33.92950820899989],[19.81643104600016,-33.94168472299992],[19.809682846000157,-33.9469604489999],[19.807373047000056,-33.956008910999856],[19.81804466200009,-33.97377777099996],[19.810480118000044,-33.957233428999984],[19.82552528400015,-33.94723129299996],[19.835510254000155,-33.9725570679999],[19.994974136000167,-34.04531097399996],[20.021062851000067,-34.12154388399995],[19.7076969150001,-34.11915969799992],[19.58399772600012,-34.04954528799993],[19.378688812000064,-34.06895828199998],[19.227891922000026,-34.14578628499993],[19.194906235000076,-34.28451156599988],[19.35713386500015,-34.291389464999895],[19.525606155,-34.3786010739999],[19.76139068600014,-34.398029326999904],[19.89287376400017,-34.452430724999886],[19.936048508000056,-34.50093078599991],[20.061759949000077,-34.54511642499995],[20.048618317000034,-34.64038085899995],[20.210697174000188,-34.634471892999954],[20.078653336000116,-34.509494780999944],[20.182771683,-34.48376846299993],[20.253051758000026,-34.41186141999998],[20.42304992700008,-34.38059997599993],[20.527843475000168,-34.337020873999904],[20.6871623990001,-34.350528716999975],[20.93350791900002,-34.27900695799997],[21.082666397000025,-34.21102142299992],[21.16002655,-34.212158202999944],[21.33474922200014,-34.166858672999865],[21.527759552000077,-34.202831267999954],[21.64499855000014,-34.20027542099996],[21.679683685000043,-34.13642120399987],[21.613548279000042,-34.06015777599998],[21.63329315200008,-33.985713958999895]],[[19.587980270000116,-34.151393889999895],[19.583246231000032,-34.22888183599997],[19.43087768600003,-34.22402572599998],[19.4801712040001,-34.16359710699993],[19.587980270000116,-34.151393889999895]]],[[[24.86187553400015,-34.03425979599996],[24.61787414600019,-33.98593521099997],[24.585319519000052,-34.018672942999956],[24.68908500700013,-34.09460449199992],[24.806438446000186,-34.131961822999926],[24.883157730000164,-34.08523559599996],[24.86187553400015,-34.03425979599996]]],[[[22.69707679700008,-33.74362564099988],[22.668048859000123,-33.7340164179999],[22.661705017000145,-33.73928451499995],[22.657447815000126,-33.75077056899988],[22.69707679700008,-33.74362564099988]]],[[[22.02967834499998,-33.73684692399996],[22.028450012000064,-33.725040435999915],[21.942792892000057,-33.76021194499998],[21.74225044300016,-33.74095916699997],[21.873550415000125,-33.766708373999904],[21.863002777000133,-33.81042480499991],[22.02967834499998,-33.73684692399996]]],[[[22.614183426000068,-33.72750854499992],[22.496156693000103,-33.703022002999944],[22.42610549900013,-33.77519607499988],[22.347290039000086,-33.79757308999996],[22.633857727000134,-33.76929092399996],[22.647777557000097,-33.75068664599996],[22.651163101000066,-33.738937377999946],[22.614183426000068,-33.72750854499992]]],[[[24.230182648000095,-33.67849731399997],[24.2268943790001,-33.67734527599998],[24.242624283000055,-33.68289565999993],[24.236047745000178,-33.68054962199989],[24.230182648000095,-33.67849731399997]]],[[[21.502559662000124,-33.728500365999935],[21.40810203600006,-33.71520233199993],[21.33304786700012,-33.655792235999854],[21.416349411000056,-33.734176635999916],[21.502559662000124,-33.728500365999935]]],[[[20.335912704000123,-33.65732574499998],[20.310825348000037,-33.608882903999984],[20.199056625000082,-33.73662185699993],[20.128797531000146,-33.72749328599991],[20.176692963000107,-33.81724548299991],[20.245164870999986,-33.88346862799989],[20.391204834000177,-33.93310546899994],[20.476699828999983,-33.89953613299997],[20.53278923000005,-33.93957138099995],[20.66874694800009,-33.93301773099995],[20.767572403000088,-33.89655303999996],[20.870609283000135,-33.80113983199993],[20.77602767899998,-33.81748199499992],[20.55946922300018,-33.7567863459999],[20.471195221000187,-33.72077941899988],[20.49154281600005,-33.706321715999934],[20.41114425699999,-33.67787933299991],[20.382501602000048,-33.67013549799992],[20.367595673000153,-33.665981292999845],[20.34824180600009,-33.660217284999874],[20.339183807000154,-33.657939910999914],[20.335912704000123,-33.65732574499998]],[[20.483644485000127,-33.74792480499997],[20.472345352000048,-33.848407744999975],[20.350103378000085,-33.78934478799994],[20.483644485000127,-33.74792480499997]]],[[[23.85732078600006,-33.58700942999991],[23.85606765700004,-33.58581542999997],[23.865892410000185,-33.58809280399993],[23.867456436000055,-33.586170196999944],[23.85732078600006,-33.58700942999991]]],[[[19.426073074000044,-33.803829192999956],[19.371351242000117,-33.82860183699995],[19.400917053000114,-33.92023467999991],[19.409496307000097,-33.86807632399996],[19.457935333000137,-33.86964797999997],[19.42473411600014,-33.91947555499996],[19.427497863999974,-33.91891860999982],[19.46070480300017,-33.922744750999925],[19.498630524000134,-33.92229461699998],[19.472663879000038,-33.86904907199988],[19.563508987000148,-33.869850158999895],[19.566497803000175,-33.868961333999835],[19.601074219,-33.86543273899997],[19.60234642,-33.86372756999987],[19.608978271000126,-33.86133956899988],[19.6120224,-33.85768890399993],[19.613922119000108,-33.85591506999998],[19.62467575100004,-33.84537506099997],[19.62446594200003,-33.829601287999935],[19.62431144700014,-33.82829284699994],[19.621912003000034,-33.82578659099988],[19.62249565100018,-33.82484817499994],[19.627784729000098,-33.827583312999934],[19.62766075100012,-33.82876205399987],[19.630865097000026,-33.84561157199994],[19.635656357000187,-33.84696960399992],[19.629724502999977,-33.92558669999988],[19.51104545600009,-33.92110824599996],[19.58866119400011,-33.98754882799983],[19.71590995800011,-33.93676376299993],[19.744827271000077,-33.85399627699991],[19.775678635000077,-33.846115111999836],[19.778207779000127,-33.84217452999991],[19.819160461000138,-33.83156204199997],[19.81801986700009,-33.82749557499989],[19.808595657000126,-33.82431411699997],[19.987979889000144,-33.865173339999956],[20.078893661,-33.82268142699991],[20.046831131000147,-33.772857665999936],[19.881071090999967,-33.76791000399993],[19.78285217300015,-33.70026779199998],[19.567094803000145,-33.58819580099993],[19.464542389000087,-33.583786010999916],[19.413770676000183,-33.654754638999975],[19.50519752499997,-33.723789214999954],[19.509693146000075,-33.72186660799997],[19.51361846900005,-33.7194862369999],[19.69178390500008,-33.67655944799998],[19.73718452500009,-33.77932739299996],[19.687379837000037,-33.797420501999966],[19.67958259600016,-33.78631591799996],[19.69171714800018,-33.78564071699998],[19.642284393000068,-33.76941680899989],[19.613218307000125,-33.76122283899997],[19.53810882600004,-33.75908660899995],[19.468332291000138,-33.775554656999816],[19.426073074000044,-33.803829192999956]],[[19.77286529500003,-33.786201476999906],[19.772586823000097,-33.78498840299994],[19.7149086,-33.838130950999926],[19.704856873000097,-33.823017119999975],[19.77286529500003,-33.786201476999906]]],[[[19.97028732300015,-33.635761260999914],[19.841762543000073,-33.625267028999815],[19.69198417700011,-33.58248519899996],[19.72158241300002,-33.59280395499991],[19.831340790000127,-33.68700027499989],[19.92591667199997,-33.67176055899989],[19.97028732300015,-33.635761260999914]]],[[[20.736322403000145,-33.55089569099994],[20.45893859900019,-33.52854537999997],[20.54500007600018,-33.562980651999965],[20.736322403000145,-33.55089569099994]]],[[[23.867923737000126,-33.57634353599991],[23.829004288000192,-33.5260620119999],[23.722484588999976,-33.5511054989999],[23.867923737000126,-33.57634353599991]]],[[[22.24868774400005,-33.45969390899995],[22.046663284000147,-33.48831939699983],[22.197435379000183,-33.479648589999954],[22.20895385700004,-33.47620773299991],[22.24868774400005,-33.45969390899995]]],[[[23.021074295000062,-33.6704521179999],[23.18855285600017,-33.57164001499996],[23.412158966000163,-33.51306915299995],[23.328634262000037,-33.4583969119999],[23.27847671500018,-33.50800704999995],[23.12818527200011,-33.48753356899982],[23.084615707000182,-33.50732803299991],[23.050306320000118,-33.54172515899995],[23.046264648000033,-33.58098220799985],[23.05743598900017,-33.62929153399989],[22.83603477500003,-33.69099426299988],[22.563642502000164,-33.69082260099998],[22.69296455400007,-33.733070373999965],[22.832805634000124,-33.72243118299997],[23.021074295000062,-33.6704521179999]]],[[[20.128400803000147,-33.48220825199991],[20.158109665000154,-33.45760345499997],[20.190027237000095,-33.44690704299995],[20.180768967000063,-33.44243240399982],[20.128400803000147,-33.48220825199991]]],[[[20.125602722,-33.48181533799993],[20.15860366800007,-33.440696715999934],[20.151306152000075,-33.44252777099996],[20.133132935,-33.444942473999845],[20.118236541999977,-33.45592880199996],[20.121360779000156,-33.48018646199995],[20.125602722,-33.48181533799993]]],[[[21.41609191900011,-33.50993728599997],[21.417427063000048,-33.45413207999991],[21.20531463600014,-33.47527313199987],[21.113910675000056,-33.45953750599995],[21.15715026900017,-33.490093230999946],[21.15791320800014,-33.49366378799988],[21.157131194999977,-33.4980888369999],[21.166147232000185,-33.50081253099995],[21.191490172999977,-33.507404326999904],[21.31836319000007,-33.52822112999996],[21.41609191900011,-33.50993728599997]]],[[[22.642753601000095,-33.47464370699993],[22.4065418240001,-33.43157195999987],[22.273843765000038,-33.43687820399998],[22.271440506000033,-33.438644408999835],[22.26362228400012,-33.456951140999934],[22.25762176500018,-33.46854400599989],[22.322053909000147,-33.5116958619999],[22.444400787000063,-33.54417800899995],[22.457508087000065,-33.53279113799988],[22.467771530000107,-33.52577590899995],[22.471321106000175,-33.52440643299997],[22.48220443700012,-33.52203750599989],[22.484514236,-33.520404815999825],[22.484535217000087,-33.517101287999935],[22.49748611500013,-33.494319915999824],[22.544012070000065,-33.486648559999935],[22.55028343200007,-33.48572540299995],[22.59069824200003,-33.48758315999993],[22.598936081000147,-33.48720550499996],[22.60693740800002,-33.486244201999966],[22.613920212000153,-33.484069823999846],[22.642753601000095,-33.47464370699993]]],[[[21.613756180000053,-33.42699050899995],[21.614963531000058,-33.42504882799989],[21.561912537000126,-33.453716277999945],[21.613756180000053,-33.42699050899995]]],[[[20.59092521700012,-33.44076919599996],[20.713603973000147,-33.45484161399992],[20.744588852000106,-33.41492080699987],[20.59092521700012,-33.44076919599996]]],[[[20.155744553000034,-33.38740920999987],[20.121870040999966,-33.382392882999966],[20.16276931800013,-33.42663192699996],[20.155744553000034,-33.38740920999987]]],[[[20.113155365000125,-33.38054656999998],[20.098608017000117,-33.37988281299994],[20.10128402700002,-33.381122588999915],[20.10698509200006,-33.38191604599996],[20.113155365000125,-33.38054656999998]]],[[[22.298444748000065,-33.412212371999885],[22.19179916400003,-33.35835647599998],[21.99405479400008,-33.38727188099989],[21.85333633400012,-33.432014464999895],[21.681882858000165,-33.438774108999894],[21.760358810000184,-33.44584655799997],[21.821697235000045,-33.49881744399988],[21.93160438500007,-33.481880187999934],[21.975532532000045,-33.41795730599995],[22.18795585600003,-33.40143203699989],[22.261775970000087,-33.41794204699994],[22.298444748000065,-33.412212371999885]]],[[[20.155744553000034,-33.38740920999987],[20.163961411000116,-33.370552062999934],[20.130292892000114,-33.37963104199997],[20.155744553000034,-33.38740920999987]]],[[[21.75631523100003,-33.36164855999988],[21.751682281,-33.34857559199992],[21.74386596700009,-33.353107451999904],[21.75631523100003,-33.36164855999988]]],[[[20.149749756000062,-33.358337401999904],[20.279531479000127,-33.35449600199996],[20.26901817300012,-33.35182189899996],[20.146749496000155,-33.356063842999845],[20.149749756000062,-33.358337401999904]]],[[[20.85010910000011,-33.32394027699996],[20.638706207000098,-33.33163070699993],[20.58289909400014,-33.42250060999993],[20.600009918000126,-33.438728332999915],[20.74259758000005,-33.406276702999946],[20.661436081000147,-33.33456420899995],[20.85010910000011,-33.32394027699996]]],[[[20.918243408000137,-33.313533782999855],[20.90144920300014,-33.34212112399996],[20.914567947000023,-33.3374938959999],[20.92271041900017,-33.32529449499992],[20.918243408000137,-33.313533782999855]]],[[[21.498758316000192,-33.32812118499987],[21.49805831900005,-33.30262756299993],[21.252571106,-33.34820175199991],[21.01371002200017,-33.36808395399987],[21.286426544000108,-33.38030624399988],[21.508626938000134,-33.34086227399996],[21.498758316000192,-33.32812118499987]]],[[[22.984071732000075,-33.28049850499997],[22.939804077000133,-33.28049850499997],[22.89963913000014,-33.281730651999965],[23.08695411700006,-33.28967285199991],[23.08231544500012,-33.28621673599997],[23.06766700700007,-33.2823829649999],[23.001083374000018,-33.280845641999974],[22.984071732000075,-33.28049850499997]]],[[[21.61737632800009,-33.274169921999885],[21.604835510000044,-33.274738311999954],[21.53863716100011,-33.28364944499998],[21.52472305300006,-33.28511810299989],[21.28166008000005,-33.335266112999875],[21.170175552000046,-33.32840347299998],[21.012434006000092,-33.35421371499996],[21.00111961400006,-33.36275863599997],[21.175699234000035,-33.3365707399999],[21.253408432000015,-33.34577941899994],[21.500654221000104,-33.29974365199996],[21.61737632800009,-33.274169921999885]],[[21.49814224199997,-33.28274536099997],[21.52314186100017,-33.274475097999925],[21.49616432200014,-33.28579330399998],[21.496047974000078,-33.28455734299996],[21.49814224199997,-33.28274536099997]]],[[[23.637580872000058,-33.31276321399997],[23.469444275,-33.31416320799997],[23.423564911000028,-33.2741088869999],[23.26101875300003,-33.29569625899995],[23.24918746900005,-33.36755752599993],[23.317108154000096,-33.40645599399994],[23.305482864000112,-33.41811752299998],[23.407236099000045,-33.39937210099998],[23.563837051000178,-33.42215347299998],[23.696794510000075,-33.47175598099989],[23.665708542000175,-33.454513549999945],[23.751535415999967,-33.390579223999964],[23.748241425,-33.3746032709999],[23.735307693000152,-33.36491393999995],[23.73521232600018,-33.36326217699991],[23.730663300000174,-33.34618377699991],[23.72361564600004,-33.330223082999964],[23.747198105000052,-33.31517791699997],[23.637580872000058,-33.31276321399997]]],[[[22.491939545000037,-33.26835632299992],[22.324373245000174,-33.23751449599996],[22.121559143000184,-33.25371169999988],[22.12146186800004,-33.254226684999935],[22.09833717300006,-33.26586914099994],[22.16839790300014,-33.27338409399988],[22.168607711999982,-33.276451110999915],[22.128234863000046,-33.28697967499994],[22.104618073000154,-33.28346252399996],[22.0241661070001,-33.28862762499995],[22.397397995000176,-33.29932022099996],[22.519594193000046,-33.39069747899998],[22.725576401000012,-33.383041381999874],[22.956052780000107,-33.41547775299995],[22.861640930000135,-33.40334320099993],[22.770185471000104,-33.370143889999895],[22.559194565000155,-33.36430358899992],[22.36598587000003,-33.28720092799995],[22.491939545000037,-33.26835632299992]]],[[[23.347698212000182,-33.25558853099983],[23.467905045,-33.237033843999825],[23.46594619800004,-33.23509597799989],[23.347698212000182,-33.25558853099983]]],[[[19.298065185999974,-33.35313796999998],[19.399330139000085,-33.41696166999998],[19.48541068999998,-33.41297149699989],[19.524707794,-33.3085708619999],[19.32185173000005,-33.241413115999876],[19.298065185999974,-33.35313796999998]]],[[[19.177251816000137,-33.215602874999945],[19.078386307000187,-33.29583740199996],[19.151977539000143,-33.43774032599998],[19.2340755460001,-33.39138793899991],[19.177251816000137,-33.215602874999945]]],[[[23.54040145900018,-33.173820495999905],[23.382722855000054,-33.20416259799998],[23.426118851000126,-33.21022415199997],[23.426177979000045,-33.209693908999895],[23.47731781000016,-33.204387664999956],[23.476837158000023,-33.20311355599989],[23.488348007000013,-33.20393753099995],[23.486246109000035,-33.19363021899994],[23.517559052000138,-33.18848800699993],[23.54040145900018,-33.173820495999905]]],[[[20.083356857000183,-33.15266036999998],[20.031904221,-33.15481948899992],[20.02206230200005,-33.172443389999955],[20.023082733000024,-33.17675399799998],[19.931913376000182,-33.22156524699989],[19.90770530700013,-33.231685637999874],[19.841878891000135,-33.28488922099996],[19.72104072600007,-33.22148132299998],[19.706693649000044,-33.221279143999936],[19.703447342000118,-33.22156143199993],[19.69677162200003,-33.221939086999896],[19.5039043430001,-33.230300902999886],[19.596448898,-33.3414916989999],[19.709499359000176,-33.28489303599986],[19.772968292000087,-33.393249511999954],[19.72417068500016,-33.417026519999865],[19.73802948000008,-33.48151016199989],[19.925344467000173,-33.60967636099991],[20.012832642000035,-33.58437728899992],[20.104412079000042,-33.600090026999965],[20.220380783000167,-33.57684707599992],[20.306655884000065,-33.520202636999954],[20.301954269000134,-33.51895523099995],[20.310039520000032,-33.51758956899994],[20.314769745000035,-33.51479339599996],[20.28275108300005,-33.49461364699988],[20.31930160500019,-33.47883605999988],[20.317752838,-33.47619628899997],[20.234567642000115,-33.47930908199993],[20.202384949000134,-33.479881286999955],[20.142436981000117,-33.487613677999946],[20.103713989000028,-33.50759506199989],[20.105136871000127,-33.51107788099995],[20.104120255000055,-33.51173019399988],[20.097528458000056,-33.50942993199993],[20.05707740800017,-33.52446365399993],[20.056116104000182,-33.5240707399999],[20.046979904000125,-33.52744293199987],[20.04699707000009,-33.52738571199984],[19.984951019000164,-33.49416732799989],[19.981624603000057,-33.48640060399998],[19.990564346000156,-33.474109649999946],[19.96754455600012,-33.45662689199992],[20.017316818000154,-33.37627792399991],[20.032913208000082,-33.37374114999989],[20.09727287300018,-33.37921523999995],[20.11631393400006,-33.37821960399998],[20.12806510900009,-33.36684036299994],[20.127796173000036,-33.3600730899999],[20.11807632400007,-33.35891342199989],[20.11168479900016,-33.353610991999915],[20.06112289400005,-33.31266403199993],[20.069574356000146,-33.31140899699989],[20.077606201000094,-33.30249023399995],[20.10174179100011,-33.28594970699987],[20.275075912000148,-33.26364135699998],[20.302440643000068,-33.31336975099998],[20.484617233000165,-33.315017699999885],[20.492452621000098,-33.371452331999876],[20.386703491000162,-33.439334868999936],[20.373550415000068,-33.446037291999914],[20.394849777000047,-33.44406890899995],[20.391248702999974,-33.446399688999975],[20.390686035000158,-33.4469604489999],[20.378231049000078,-33.449626922999926],[20.329183578000084,-33.476348876999964],[20.330846786,-33.47880172699996],[20.33397293100012,-33.48022842399996],[20.343255997000085,-33.48299789399988],[20.36082267800009,-33.487312316999976],[20.362716675,-33.489013671999885],[20.366044998000177,-33.49391555799991],[20.578697205000026,-33.44971084599996],[20.56946754500018,-33.41636657699996],[20.601264954000044,-33.40475082399996],[20.58207511900008,-33.42125320399998],[20.541706084999987,-33.33681106599988],[20.45251274100019,-33.2762794489999],[20.71726989700005,-33.256114959999934],[20.78550148000005,-33.26464462299987],[20.783031464000146,-33.25929260299995],[20.786066055000106,-33.256881713999974],[20.80148506200004,-33.25472640999982],[20.805315018000044,-33.25333785999993],[20.596204758000056,-33.25459670999993],[20.46529006999998,-33.20972824099988],[20.227626800999985,-33.188858031999985],[20.083356857000183,-33.15266036999998]]],[[[23.540307999000106,-33.169940947999976],[23.59218025200005,-33.12965011599994],[23.573228836,-33.124851226999965],[23.45914650000003,-33.13148498499993],[23.441492081000035,-33.13287353499993],[23.503786087000037,-33.16166686999992],[23.52957534800015,-33.1677780149999],[23.540307999000106,-33.169940947999976]]],[[[23.79335212700005,-33.12023925799991],[23.750398636000057,-33.10547637899998],[23.666730881000092,-33.114112853999984],[23.665847778000114,-33.116619109999874],[23.79335212700005,-33.12023925799991]]],[[[23.796806334999985,-33.09440994299996],[23.648973465000097,-33.09937667799994],[23.659788132000074,-33.100406646999886],[23.71754264800012,-33.09647369399988],[23.796806334999985,-33.09440994299996]]],[[[18.928173065000124,-32.6062431339999],[18.790937424000106,-32.49096298199993],[18.786609650000116,-32.69702148399995],[18.74518013000005,-32.93801879899996],[18.59097290000011,-32.899085998999965],[18.494426727000018,-32.94817733799988],[18.496433258000025,-33.02252578699989],[18.40693664600019,-33.09579086299988],[18.359163284000147,-33.198799132999966],[18.232305527000108,-33.29109954799992],[18.271869659000174,-33.37261199999989],[18.451038361000087,-33.50860214199997],[18.533849716000077,-33.50791549699994],[18.52707290600017,-33.3995590209999],[18.62483024600016,-33.43966674799998],[18.63870430000003,-33.566249846999824],[18.53644943200004,-33.67099761999992],[18.55032157900007,-33.791477202999886],[18.632543564000116,-33.88981628399989],[18.718528748000097,-33.78367614699988],[18.790176391999978,-33.82848739599996],[18.71030998200007,-33.913600921999944],[18.747413635000044,-34.03956222499994],[18.875911713000164,-33.95158004799987],[18.851707458000078,-33.76792144799998],[18.960868835000156,-33.79265594499998],[18.980243683000083,-33.67157363899997],[19.053377151000177,-33.65601730299983],[19.065870285000187,-33.525913238999976],[19.02619171100008,-33.44196319599996],[19.022327423000092,-33.26913833599997],[18.965219498000124,-33.21561813399995],[19.027490616000136,-33.05262374899996],[19.030469894000078,-32.80984115599995],[18.928173065000124,-32.6062431339999]],[[18.80272483800013,-33.53532409699994],[18.85865020800003,-33.63719558699995],[18.79368400600015,-33.6780700679999],[18.679250717000116,-33.67340850799991],[18.683815002000017,-33.60621643099989],[18.80272483800013,-33.53532409699994]]],[[[21.423618317000034,-32.10475921599988],[21.39667701700006,-32.14003372199994],[21.382780075000028,-32.21820449799992],[21.459085464000168,-32.27384185799997],[21.343133926,-32.35902023299997],[21.195178986000144,-32.27476501499996],[21.103956223000125,-32.2734031679999],[21.04902839700003,-32.33573913599997],[21.135583878000034,-32.371158599999944],[21.168451309000147,-32.45848083499993],[21.224342346000128,-32.467529296999885],[21.27985191300013,-32.41651153599997],[21.4155502320001,-32.384529113999974],[21.531976700000087,-32.29126739499998],[21.528648376000035,-32.289726256999984],[21.550024033000057,-32.21396636999992],[21.524324417000116,-32.13983535799997],[21.423618317000034,-32.10475921599988]]],[[[21.679359436000084,-32.19899368299991],[21.72465133700007,-32.2565307619999],[21.79346847500011,-32.13875198399995],[21.65358734100016,-32.08276367199994],[21.679359436000084,-32.19899368299991]]],[[[21.13637733500019,-32.559719085999916],[21.027032852000048,-32.48494720499997],[21.01212501499998,-32.56552886999998],[20.88950729400017,-32.58679580699993],[20.821418762000178,-32.511199950999924],[20.807518005000134,-32.42715835599995],[20.855806351000126,-32.35991668699995],[20.76759338400018,-32.25504302999991],[20.663455963000104,-32.337039947999926],[20.558116913000163,-32.330196380999894],[20.48040962200008,-32.261466979999966],[20.422035216999973,-32.26576614399994],[20.372470856000177,-32.18447494499998],[20.291774750000172,-32.17390441899994],[20.28309822100016,-32.077007293999884],[20.16970443700012,-32.08549880999993],[20.184812546000046,-32.208587645999955],[20.239837646000012,-32.22241592399996],[20.25284576400003,-32.31094741799984],[20.342506409000066,-32.335716247999926],[20.394300461000057,-32.51247405999993],[20.538885117000177,-32.53256988499987],[20.694234848000065,-32.686393737999936],[20.616758347000086,-32.75159454299995],[20.594808578000027,-32.85573959399994],[20.428194046000044,-32.9094924929999],[20.38249397300001,-33.00874710099998],[20.534288406000087,-33.05496215799997],[20.700927734000174,-32.96509551999992],[20.6536636350001,-32.88628387499995],[20.719886780000138,-32.83242416399992],[20.94455337500017,-32.808521270999904],[21.071832657000186,-32.74569320699993],[21.175184250000086,-32.71917724599996],[21.13637733500019,-32.559719085999916]]],[[[18.680019379000157,-31.84319305399987],[18.646537781000063,-31.802591323999934],[18.64900970499997,-31.81246566799996],[18.672180176000154,-31.837404250999896],[18.680019379000157,-31.84319305399987]]],[[[18.906234741000162,-31.778650283999923],[18.827421188000187,-31.683383941999978],[18.76262092600018,-31.749979018999966],[18.840303420999987,-31.7090129849999],[18.906234741000162,-31.778650283999923]]],[[[18.99998855600012,-31.7612590789999],[18.977378844999976,-31.673156737999932],[19.057659149000074,-31.672698974999946],[19.116348267000035,-31.49926185599992],[18.98137092600018,-31.353981017999956],[19.028488159000176,-31.475049972999898],[18.96740531900008,-31.54257583599997],[18.968736649000107,-31.676143645999957],[18.9439868930001,-31.752561568999965],[18.99393081700009,-31.766981124999973],[18.99998855600012,-31.7612590789999]]],[[[19.19138526900008,-31.57276534999994],[19.21949768100012,-31.435897826999906],[19.162212372000113,-31.33353805499985],[19.111104965000152,-31.32670974699994],[19.19138526900008,-31.57276534999994]]],[[[19.899904251,-31.214246749999973],[19.861879349000105,-31.266113280999946],[19.757253647000084,-31.26238059999997],[19.75813674900013,-31.351085662999935],[19.71991539000004,-31.417367934999902],[19.944129944000053,-31.44419288599994],[19.851665497000056,-31.34125900299989],[19.93358802800003,-31.269027709999932],[19.899904251,-31.214246749999973]]],[[[19.71710777300018,-31.20516776999989],[19.638288498000065,-31.185636519999832],[19.529943466000134,-31.251785277999943],[19.518875122000054,-31.307529448999958],[19.605848312000035,-31.363735198999905],[19.71710777300018,-31.20516776999989]]],[[[19.64632988,-31.118104934999963],[19.595285416000024,-31.15272140499991],[19.5012569430001,-31.141605376999962],[19.50201797500017,-31.222633361999954],[19.598888397000167,-31.20551490799994],[19.64632988,-31.118104934999963]]],[[[18.27797317500017,-30.422880172999953],[18.252389908,-30.49215888999987],[18.255561828999987,-30.478101729999935],[18.292968750000057,-30.457950591999975],[18.27797317500017,-30.422880172999953]]],[[[18.133743286000026,-30.255420684999933],[18.057601929000157,-30.219058989999894],[18.057542801000068,-30.219058989999894],[18.038120270000036,-30.268815993999908],[18.08107566800004,-30.401329040999883],[18.069252014000142,-30.41371345499988],[18.196411133000083,-30.512430190999964],[18.17667007400013,-30.43904304499995],[18.260658264000085,-30.355945586999894],[18.26040267900015,-30.342044829999907],[18.306255341000053,-30.425895690999937],[18.414495468000155,-30.387556075999953],[18.25763511700012,-30.25716972399988],[18.286359787000038,-30.277397155999836],[18.146087646000183,-30.24794959999997],[18.168392181000115,-30.321830749999947],[18.105617522999978,-30.252569198999936],[18.133743286000026,-30.255420684999933]]],[[[18.183460236000087,-30.15506172199997],[18.136363983000024,-30.154138564999982],[18.160480499000073,-30.175245284999903],[18.146512985000072,-30.156377791999944],[18.183460236000087,-30.15506172199997]]],[[[17.996311188000163,-30.1526813509999],[17.95263481100011,-30.142498015999877],[17.982654572000172,-30.22839355499997],[17.96018600500014,-30.226766585999826],[18.004266739,-30.273433684999873],[17.990377426,-30.24660873399995],[18.030349731000058,-30.259105681999927],[18.03232383700015,-30.201755523999964],[17.996311188000163,-30.1526813509999]]],[[[18.115697861000058,-30.124933242999873],[18.025686264000115,-30.10253333999998],[18.06451225300009,-30.127332686999978],[18.075117111000054,-30.130308150999895],[18.115697861000058,-30.124933242999873]]],[[[18.1774368290001,-30.106416701999933],[18.117742538000186,-30.13272285499994],[18.170717239000112,-30.124620437999965],[18.158910751000064,-30.11898422199988],[18.1774368290001,-30.106416701999933]]]]},"properties":{"objectid":596,"eco_name":"Renosterveld shrubland","biome_num":12,"biome_name":"Mediterranean Forests, Woodlands & Scrub","realm":"Afrotropic","eco_biome_":"AF12","nnh":3,"eco_id":90,"shape_leng":221.153033382,"shape_area":2.74752805379,"nnh_name":"Nature Could Recover","color":"#B54B01","color_bio":"#FE0000","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":28439.85532896998,"percentage":0.8609283899456767}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[30.002056041000174,0.441948668000066],[29.9273621910001,0.481227254000146],[29.86341455400003,0.467108225000118],[29.84472829900011,0.243956534000176],[29.923095019000186,0.224540132000016],[29.981666667000127,0.314166667000109],[29.941369279000128,0.354553881000072],[30.002056041000174,0.441948668000066]]]},"properties":{"objectid":600,"eco_name":"Rwenzori-Virunga montane moorlands","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Afrotropic","eco_biome_":"AF10","nnh":1,"eco_id":86,"shape_leng":2.33562550522,"shape_area":0.0419427631872,"nnh_name":"Half Protected","color":"#E600AA","color_bio":"#D6C39D","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":519.6923461075892,"percentage":0.010642227092328402}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-15.749609814999872,19.08590994700006],[-15.827089931999922,19.039420081000173],[-15.920059981999941,19.07815996400018],[-16.016900006999947,19.05879002300003],[-16.059520073999977,18.996810048000043],[-16.016900006999947,18.892220040000097],[-16.059520073999977,18.84186002299998],[-16.09277992699998,18.666109894999977],[-16.04789008299997,18.57068999900008],[-16.005279872999836,18.318899949000183],[-15.916179973999931,18.28404007500012],[-15.823209923999968,18.454480033000095],[-15.896810032999952,18.671399999000187],[-15.830960082999923,18.729520031999982],[-15.683760040999971,18.776000040000156],[-15.571420049999972,18.84961000600009],[-15.52106003299997,18.97743993100005],[-15.517340027999921,19.081139982000025],[-15.625650041999904,19.113020014000085],[-15.749609814999872,19.08590994700006]]],[[[-11.99760991799991,21.291830016000063],[-12.185559990999934,21.136940014000118],[-12.27784004199998,21.01245006800019],[-12.289289964999966,20.902939950000075],[-12.239049993999913,20.885230052999987],[-12.145110073999945,20.99802998500013],[-11.968860048999943,21.164240007000046],[-11.941739948999896,21.26501002900011],[-11.993290035999962,21.29327003500015],[-11.99760991799991,21.291830016000063]]],[[[-12.831110050999882,22.65499992700012],[-12.860229913999945,22.7555802],[-12.773079963999976,22.944919949999985],[-12.869520247999958,23.001749933000042],[-12.936190097999884,22.849910005000027],[-12.96629004099998,22.66980003800012],[-12.931479979999892,22.60220995500015],[-12.831110050999882,22.65499992700012]]],[[[-11.625730069999975,24.16440001000018],[-12.004909994999934,24.283970022000176],[-12.082840018999832,24.227790081000137],[-12.05789006799995,24.16463006800018],[-11.896479934999888,24.151269977000084],[-11.622060053999974,24.073480065000183],[-11.50209998199989,23.953939977000175],[-11.389489975999936,23.91276996200014],[-11.315530082999942,23.95252019999998],[-11.372310074999916,24.02778000100011],[-11.625730069999975,24.16440001000018]]],[[[-12.75527994499987,24.15082992700013],[-12.699719945999846,24.23361000500006],[-12.711399926999889,24.301109966000126],[-12.829169958999955,24.404720071000042],[-12.877499936999925,24.361940002000097],[-12.848330259999955,24.284999738000124],[-12.75527994499987,24.15082992700013]]],[[[-11.709719933999907,24.438889947],[-11.782169927999973,24.415949969000167],[-11.781950078999898,24.33749998200011],[-11.58834008499997,24.275279916000045],[-11.370830099999921,24.246669982000185],[-11.327219920999937,24.290550000000167],[-11.402780011999937,24.360279958000035],[-11.474720075999869,24.354999887000076],[-11.65470999799993,24.457219962000124],[-11.709719933999907,24.438889947]]],[[[-9.825010076999888,25.10416005200011],[-9.890450076999912,25.151609930000063],[-9.926390008999874,25.05417002900009],[-9.769170030999874,24.970279969000103],[-9.720830019999937,25.010560026000178],[-9.825010076999888,25.10416005200011]]],[[[0.95522999700006,26.104809977000173],[0.889970066000103,26.136550073000024],[0.822059978000027,26.247049952000168],[0.669630032000043,26.194970044000115],[0.551059990000169,26.087179993000177],[0.706650023,26.093360054000186],[0.74348977,25.973580051000113],[0.835759965000136,25.79447005300011],[0.924829940000166,25.667200048000097],[1.002670018000174,25.650140017000126],[1.076410063000083,25.712560042000064],[1.096389913000166,25.86249983400006],[1.056669951000174,25.90305008200005],[1.009779993,26.06215998700003],[0.95522999700006,26.104809977000173]]],[[[1.525539970000125,25.981980076000127],[1.558930077000184,26.101260006000132],[1.573869948000038,26.406609939000077],[1.517399926000053,26.462690077000104],[1.449059822000095,26.441760071000147],[0.9919099170001,26.394890002000125],[0.975359816000037,26.31630993600004],[1.05197989900006,26.29187977300012],[1.305849977000094,26.264979874000062],[1.411009938000063,26.221649919000072],[1.470640046000028,26.151370074000056],[1.525539970000125,25.981980076000127]]],[[[-7.838619998999832,27.664909971000156],[-7.689440084999887,27.665549980000094],[-7.555560001999879,27.732220182000106],[-7.639779922999878,27.797570059000066],[-7.791909931999953,27.802350057000126],[-7.881990086999963,27.73260003300004],[-7.838619998999832,27.664909971000156]]],[[[-7.232560017999958,27.781670000000133],[-7.113700071999972,27.853209971000126],[-7.070130200999927,27.916980069000147],[-7.162739937999902,27.94320000300013],[-7.453889988999947,27.81872994800017],[-7.45906004699998,27.76305007900004],[-7.232560017999958,27.781670000000133]]],[[[19.18983997800018,29.185959935000028],[19.42146007600013,29.153609930000073],[19.553490013000157,29.1182100260001],[19.633629967000047,29.212479984000026],[19.518010020000077,29.302569995000113],[19.132999962000156,29.307050231000062],[19.05840023600001,29.25148002400016],[19.18983997800018,29.185959935000028]]],[[[25.608831985000165,29.25757575800003],[25.30590510800016,29.23138687100004],[25.307336025000154,29.201408947000175],[25.574178617000143,29.097674395000126],[25.843243434000044,29.111436081000136],[26.013837658000114,29.09176828200009],[26.04019431500012,29.142545803000075],[26.110722151000118,29.220468507000135],[26.081935221000037,29.302477097000065],[26.00422745800006,29.31723612700017],[25.608831985000165,29.25757575800003]]],[[[0.185649931,29.082640087000186],[0.155229985000176,29.14314994300014],[0.289040011000168,29.33004002300015],[0.212739932000147,29.365850053000088],[0.106020082000043,29.191799926000158],[-0.022020009999949,29.030740072000015],[-0.136290059999965,29.006510220000052],[-0.139680028999976,28.839099917000055],[-0.00344004599998,28.845310254000083],[0.125639972000158,28.958330034000085],[0.185649931,29.082640087000186]]],[[[19.1666299850001,29.920999955000184],[19.337179956,29.90850007300014],[19.357850155999984,29.94340008000006],[19.21394996100014,30.021029990000045],[19.32995996900013,30.091289944000096],[19.15500017000005,30.120800043000088],[18.914889925000068,30.21118999300012],[18.811849949000134,30.23255001600012],[18.809559928999988,30.150249944000052],[19.044910066000114,30.04552],[19.086729946000162,29.950739936],[19.1666299850001,29.920999955000184]]],[[[26.718071970000153,28.803518300000064],[26.958789954000167,28.911299963000033],[27.163730001000147,28.942259939000166],[27.349579979000055,28.943589946000145],[27.521789994000187,29.00311021800013],[27.64594004500003,29.092519912000057],[27.721000239000034,29.18142002800016],[27.873729948000175,29.318539935000047],[27.850390053000012,29.40537005600015],[27.75661999200014,29.461670043000026],[27.588900071000126,29.3830500200001],[27.497779990000083,29.44277007500017],[27.40019369800018,29.547599777000016],[27.573007962000133,29.567379358000153],[27.80486002400005,29.573889988000076],[27.905670003000125,29.625289931000054],[27.880469929000185,29.7035000030001],[27.94771026,29.858920001000172],[28.030760001000033,29.76712998900007],[28.100059942000087,29.83987006400008],[28.186680072,29.858059967000088],[28.310000189000107,29.95953002100015],[28.237570084000026,30.093980233000025],[28.289540155999987,30.17255008900014],[28.573800081000172,30.158420087000025],[28.75668025000016,30.205780019000144],[29.010809957000106,30.146380145000023],[29.125529738000182,30.180359919000125],[29.0786499890001,30.25264005400004],[28.634539995000182,30.34636998300016],[28.493709940000087,30.353510057000108],[28.40915998100013,30.389160085000185],[28.291659964000075,30.388610022000023],[28.18138996800019,30.344439924000085],[28.094720024000083,30.389720004000026],[27.983050141000092,30.398610069000085],[27.933890053000084,30.35805999700017],[27.826110034000067,30.375550045000125],[27.40340019600012,30.258919919000164],[27.278609961000086,30.185970028000042],[27.155550001000165,30.17361008200004],[27.03638994,30.07971997500016],[26.923390050000023,29.9179500570001],[26.740909975000136,29.85396996700007],[26.66982994400007,29.76731005700009],[26.54605992000012,29.671459968000192],[26.49158015600017,29.592020045000083],[26.579360081000175,29.389879947000054],[26.587939998000024,29.30287996600009],[26.482479924000188,29.193280078000043],[26.329789995000112,29.12275996600016],[26.32209282900004,29.041105785000184],[26.366750140000136,28.938630232000094],[26.44649358600003,28.966465330000176],[26.53692008300004,29.039899975000026],[26.606070055000032,29.04434007900005],[26.836629985000172,28.988699990999976],[26.631400032000045,28.9315600380001],[26.611740544000156,28.86731715500008],[26.648269962000143,28.777530069000136],[26.718071970000153,28.803518300000064]]],[[[11.72977252600009,33.08821178500017],[11.53233947900003,33.16757047100003],[11.361008517000073,33.121650885000065],[11.32228378900004,33.06750706000008],[11.343898198000034,33.04933240100007],[11.336265079000043,33.01176877300014],[11.438834948000078,32.987960987000065],[11.397418913000024,32.770762322999985],[11.434610055,32.71726001300004],[11.66444797600002,32.770841406000045],[11.587155450000068,32.781047220000175],[11.570538099000146,32.88288919400014],[11.601115509000067,32.944924430000185],[11.601120191000064,33.00439171900007],[11.65415993500011,32.97564007400018],[11.754377332,33.01433959600013],[11.72977252600009,33.08821178500017]]],[[[5.892740212000092,33.07015998000003],[5.968060036000054,33.08001973900019],[6.087520035000125,33.182589918000076],[6.066929923000032,33.30909001100002],[6.00707010900004,33.35061998600008],[5.902300032000028,33.28350005200019],[5.892740212000092,33.07015998000003]]],[[[5.85158005500017,33.40497002300009],[5.938790027000039,33.42553003600011],[6.02306997200003,33.540239784000164],[6.003330037000012,33.585000077000075],[6.027410096000153,33.718659959000036],[5.941080047000185,33.702010054000084],[5.89106995800006,33.48498975600006],[5.85158005500017,33.40497002300009]]],[[[9.65771592800013,34.04841548200011],[9.523550009000076,33.99188008800019],[9.398150040000075,33.96728006500007],[9.159190085999967,33.9621497870001],[8.95061997900001,34.029419866000126],[8.722049955000045,34.04441007800017],[8.532539994000103,34.07353997500013],[8.337980020000032,34.056159939000054],[8.177160081000125,33.99433996700009],[8.100939915000083,33.91273992600014],[7.791549795000094,33.90470003800016],[7.699379932000113,33.84930004200004],[7.719760052000026,33.757389984000156],[7.82960003200003,33.65658000500002],[8.109879793000061,33.562310047000096],[8.266889780000042,33.392270007000036],[8.513349945000073,33.338100038000164],[8.6088300400001,33.34076005200018],[8.675309965000054,33.38877002600009],[8.750569942000027,33.38337994200015],[8.885000087000037,33.424489934000064],[8.934700029000169,33.472110023000084],[9.032369988000141,33.49056994100016],[9.100600080000106,33.56907977500015],[9.068920006000042,33.63775995000009],[9.000479923000057,33.66614000100003],[8.92538998100008,33.74907004800008],[8.999550009000018,33.79426986400017],[9.193189927,33.784810023000034],[9.359449938000068,33.823819920000176],[9.3911400450001,33.86900002100015],[9.825890001000062,33.95554006100019],[9.83708997600013,34.00325995400016],[9.662645545000089,34.04955901700015],[9.65771592800013,34.04841548200011]]],[[[5.958780087000093,33.85402001700004],[6.229590150000149,33.810549950000166],[6.321569912000143,33.84713006800007],[6.465990070000146,33.84377002300016],[6.67606004400011,33.89686996600011],[6.733470012000055,33.81604001300013],[6.925020221000068,33.80720997200007],[7.015289948000088,33.84398001500011],[7.117310065000083,33.992099937000035],[7.197379964000106,34.00342998999997],[7.562750066000035,34.00570997600016],[7.884319887000117,33.94642997200003],[8.022470038000108,33.958269955000105],[8.117670084999986,34.00986985600008],[8.134509915000137,34.071870073000184],[8.090109935000157,34.19356992600012],[7.865290016000017,34.22608996700012],[7.697550029000126,34.21061992400007],[7.451389977000076,34.165519912000036],[7.19925000000012,34.15260990399997],[7.088250049000123,34.16560000200013],[7.015730174000055,34.20604991800013],[6.9123399180001,34.41189998900006],[6.564589943000101,34.520480017000125],[6.473699921000048,34.561450073000174],[6.302139948000104,34.585940083000025],[6.122929971000076,34.65930995800005],[5.980900164000047,34.63049989000018],[5.946369975000152,34.56958008300012],[5.957130076000055,34.38780003900018],[5.838919995000026,34.23301001600004],[5.830920063000178,34.162260023000044],[5.901940071000183,33.95097005500003],[5.958780087000093,33.85402001700004]]],[[[10.60052849699997,35.5007579980001],[10.561943581000094,35.516581906000056],[10.409119526000097,35.687861907000126],[10.268998347000093,35.62373731400015],[10.305930071000148,35.51256005800019],[10.47661980099997,35.42284004100003],[10.53943991900013,35.41944003900005],[10.60052849699997,35.5007579980001]]],[[[10.331334918000096,35.90227971100012],[10.27386159200006,35.96212448500012],[10.170815480000158,35.928327142000114],[10.119127860000049,35.86655903500008],[10.146909936000156,35.79929007100009],[10.290350015000172,35.84050004200003],[10.331334918000096,35.90227971100012]]]]},"properties":{"objectid":601,"eco_name":"Saharan halophytics","biome_num":9,"biome_name":"Flooded Grasslands & Savannas","realm":"Palearctic","eco_biome_":"PA09","nnh":2,"eco_id":745,"shape_leng":46.960438725,"shape_area":5.06288817821,"nnh_name":"Nature Could Reach Half Protected","color":"#3881AC","color_bio":"#BEE7FF","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":54025.27507275583,"percentage":4.6719999761353135}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[16.35106058300005,10.694248528000173],[16.32169944700007,10.718585887000074],[16.197969479999983,10.66187996500014],[16.073799463000114,10.55710818700004],[16.038160449000088,10.369811375000154],[15.975150498000176,10.237590541000031],[15.825710552000146,10.087100007000117],[15.758469583000021,9.98429931700008],[15.755370458000016,9.818501919000028],[15.806759570999986,9.691428914000142],[15.902239507000047,9.622569736],[16.182460444000185,9.290825239000071],[16.348119541000074,9.180024191000143],[16.497789486000045,9.02060039200012],[16.838649470000064,8.805815967000058],[16.966360505000182,8.760394937000171],[17.195850476000146,8.767055700000128],[17.351320531000056,8.827928266000072],[17.379480541000135,8.894812333000118],[17.353160527000057,9.060588776000145],[17.256130442000085,9.284158944000126],[17.113729451000097,9.699414521000165],[17.11491951300013,9.97260706500009],[17.05837050000008,10.148165859000073],[16.937070447,10.367680360000122],[16.822299562000126,10.481412393000028],[16.689540441000133,10.533419755000125],[16.538059502000067,10.570387301000096],[16.402879520000056,10.681188685000052],[16.35106058300005,10.694248528000173]]],[[[39.04250000000013,13.768333333000157],[39.0875,13.701666667000097],[39.20833333300004,13.77166666700009],[39.28583333400019,13.863333333000128],[39.3075,14.00500000000011],[39.2,14.029166667000084],[39.126666667000165,14.073333333000164],[39.070000000000164,13.953333333000103],[38.9875,13.90583333300009],[38.9075,13.939166667000165],[38.97,14.035833333000141],[38.9075,14.061666667000111],[38.87666666700005,13.974166667000077],[38.79250000000019,13.852500000000191],[38.755000000000166,13.886666666999986],[38.58833333400014,13.759166667000045],[38.57166666600011,13.845833334000133],[38.60500000000013,13.961666666000099],[38.49583333300018,13.994166667],[38.518333333000044,13.875],[38.43333333400017,13.872500000000173],[38.362500000000125,13.981666666000024],[38.26583333400009,14.03],[38.197500000000105,14.122500000000116],[38.26583333300016,14.14666666700009],[38.246666667000056,14.230833334000124],[38.40583333300003,14.256666666000115],[38.48,14.175],[38.553333333000126,14.226666666000028],[38.68000000000018,14.2025000000001],[38.78916666700013,14.230833333000078],[38.81750000000011,14.286666667000134],[38.8975,14.310000000000116],[38.881666667,14.3875],[39.00916666700016,14.3825],[39.14500000000015,14.520000000000152],[39.17833333300007,14.585833333000096],[39.07833333300016,14.638333333000105],[38.89833333300004,14.506666666000058],[38.69916666600011,14.47083333300003],[38.52,14.418333333000078],[38.44000000000017,14.425833333000128],[38.39155948500013,14.497220262000042],[38.41875859300012,14.644500862000143],[38.27046948200018,14.748633939000172],[38.28237949600009,14.812849711000183],[38.36640958400011,14.942317426000159],[38.214420534,14.923162598000147],[38.157150510000065,14.961951028000158],[38.213409509000144,15.06856431000017],[38.401908452999976,15.08122333100016],[38.5028605980001,15.195625078000035],[38.4514505300001,15.316037320000078],[38.447910517000025,15.583801072000085],[38.39944853200012,15.75824892999998],[38.402828619000104,15.812956271000076],[38.34421145500011,16.01792347500009],[38.33686052600018,16.194282070999975],[38.35272948000011,16.22963911800008],[38.24029161300018,16.332493452000108],[38.17247061700016,16.539759310000022],[38.15703953400015,16.83143210600008],[38.014869547000046,17.06888656200016],[37.90219849600004,17.11524351600002],[37.86729859800005,17.234197139000116],[37.85807045800016,17.4778124610001],[37.75308946800004,17.596135094000033],[37.744628607000095,17.735335540000165],[37.97098156699997,17.895307012000103],[38.16141298200017,17.792106526],[38.276569496000036,18.017718338],[38.391590498000085,18.181384720000153],[38.3311615020001,18.167850293000015],[38.10504155900003,18.26754347600007],[38.07302855600011,18.344587751],[38.10737960700004,18.412865729000032],[38.01937850799999,18.462792703000105],[37.91875057600015,18.577235018000124],[37.79978957700018,18.615823624000143],[37.73852155200012,18.707577133000143],[37.673919542000135,18.736015421],[37.54032156100004,18.71731740700011],[37.42153959900003,18.8466387740001],[37.39010391700015,19.02169811500005],[36.803194779000194,19.049324908000187],[36.43796410800019,19.110112892000018],[36.21715180600012,19.08474149200009],[36.12845441900015,19.034318436000035],[35.83408213100006,18.758248498000057],[35.761585229,18.70754119200012],[35.59583892300009,18.641602242000033],[35.41237198400012,18.601350871000022],[35.16329891500004,18.58702590900009],[34.90135538200013,18.62878820600008],[34.774635352000075,18.683646446000125],[34.6771973970001,18.757486456000095],[34.55639016900017,18.900581548000048],[34.36502599700003,19.218361186000152],[34.257233324000026,19.541739205000113],[34.1746416310001,19.848353561000124],[34.13213588100018,19.94329459000005],[34.02543705700003,20.107558518000076],[33.86977928700014,20.301222874000132],[33.74797311200007,20.413529996000136],[33.57506128900019,20.506949187000146],[32.950132152000094,20.444456274000174],[32.762020199000176,20.318200177000165],[32.62684672300003,20.18243019900018],[32.51132928100009,19.990770789000123],[32.4913881920001,19.838223190000065],[32.60590672500007,19.55192685900016],[32.721855491000156,19.40614996300019],[33.07474133600016,19.135696826000185],[33.30911746000004,18.88133229100015],[33.408366160000185,18.746037620000152],[33.45041601100013,18.627760390000105],[33.406881667,18.495278897],[33.31606488800003,18.39756304100007],[33.10052399500012,18.2434683460001],[32.70884801700004,18.009818188000054],[32.45812548200007,17.893416646],[32.25385977500008,17.825095177000037],[31.97440455600008,17.776941669],[31.694886601000064,17.80120837100003],[31.519262417000164,17.843522421999978],[31.111294907000172,17.95943874700015],[30.96602584400017,17.989493336000066],[30.323129666000057,18.00118235700006],[29.574059723000175,18.01480181100004],[25.67917969300015,17.939659431000166],[25.59525769100003,17.931420187000185],[25.479872306000118,17.854573450999965],[25.27541456200015,17.669910557000037],[25.051452351000137,17.52346273800009],[24.94547319100019,17.49815869100013],[24.764099793000128,17.500318084000185],[24.546341622000057,17.529486013000053],[23.833374260000085,17.51992273100018],[23.80443998000004,17.49086998900009],[23.795490069000152,17.312269922000098],[23.67896995500007,17.124309817000096],[23.760349970000107,17.053740067000035],[23.657220048,16.992330045000017],[23.455790015000048,16.94310007700011],[23.488410035000186,16.848210000999984],[23.388010006000115,16.81136004500013],[23.396439954000186,16.711949952000055],[23.165179817000137,16.540560015000096],[23.15901999800019,16.442310070000133],[23.284770071000025,16.42459999700003],[23.352829951000103,16.388820066000108],[23.45167994800005,16.278199966000045],[23.340679997000052,16.226309984000125],[23.236759921000157,16.237920084999985],[23.13507001800008,16.329679998000188],[23.04052001200006,16.355570070000056],[22.988150024,16.313469967],[23.01906001000009,16.200590122000108],[23.104900019000013,16.13008004400018],[23.113310077000108,15.979989929999988],[22.757640084000116,16.066390035000097],[22.750429954000026,16.162440083000092],[22.689790019000043,16.159250073000067],[22.58384993800007,16.22670004400004],[22.545420027000148,16.332739929000127],[22.634290044000124,16.39144998100005],[22.56757002700016,16.44663998500016],[22.454480015000172,16.442630074000135],[22.36729996600002,16.383550028000172],[22.357179874000053,16.46913991300005],[22.404539806000173,16.532889945000022],[22.47780002000013,16.548950007000087],[22.47037004100008,16.644129987000042],[22.60045002900017,16.654570084000113],[22.56014990600005,16.71320004600011],[22.553629950000072,16.848530004999986],[22.422770018000108,16.79699998400008],[22.25662001900008,16.908219960000054],[22.253309963000106,17.002160056000093],[22.202889924000033,17.047199870000043],[22.023299920000113,17.014850040000056],[22.017789967000112,17.132250077000037],[21.86596992900013,17.21823002200017],[21.88738997500019,17.275849983],[21.963299994000067,17.311129841000024],[21.942233299000065,17.42278360800009],[21.303230958000142,17.388242941000044],[20.902986665000128,17.326666896000063],[20.754724825000096,17.292441867000093],[20.368814064000105,17.133307226],[20.18322329199998,17.067595913],[20.01665593900009,17.027057694000064],[19.825536312,17.02022168600007],[19.687954816000058,17.069467518000067],[19.561669031000122,17.224645855000176],[19.400113620000127,17.625288020000028],[19.28704417600011,17.80953089000002],[19.072697022000057,18.089579415000117],[18.961889419000045,18.19895534000017],[18.844213935000084,18.28453312500011],[18.70963093900008,18.335136410000075],[18.528660852000087,18.341809764000118],[18.235006502000033,18.26267819500015],[18.006332680000128,18.162160222000068],[17.571580271000073,17.951893242000097],[17.262423725000076,17.841213270000083],[15.357780102000163,17.480875288000107],[15.046805075000066,17.39266012900015],[14.72152487500017,17.237600797000027],[14.14512187500003,16.922013634000052],[13.999065006000023,16.81768729900017],[13.730424694000021,16.679454905],[13.534812816000112,16.640332529999966],[13.36205531700017,16.62733256300004],[11.1436998960001,16.732968535],[10.950896923000187,16.766355047],[10.48990496099998,16.922165825000093],[10.209723609000037,17.037153095000065],[9.938251551000178,17.17440222700003],[9.675913729000115,17.34485948700012],[9.527779786000053,17.471801009000103],[9.28628433200015,17.73617955000003],[9.240020039000171,17.725090078000107],[9.190759971000034,17.56022995300009],[9.097909966999964,17.591259984999965],[8.99766993999998,17.55032002900009],[8.923440032000087,17.390590006000025],[8.821399849000045,17.444090043000188],[8.685599916000172,17.396579966],[8.609190001000115,17.459020056000156],[8.62818994800017,17.305329983000092],[8.53455999900018,17.309010032],[8.526809840000112,17.414149927000096],[8.478079944000115,17.45785005200014],[8.392449751000129,17.619640036000078],[8.305330076000189,17.665790007],[8.311929945000145,17.84628000099997],[8.444230072000153,17.86108979300019],[8.490559936000125,17.99868002500017],[8.36940996900006,18.126729974000057],[8.38319004400006,18.29707998600003],[8.432179921000113,18.350910060000103],[8.641737678000084,18.437589981000087],[7.471696100999964,18.650324813000054],[7.130356503000087,18.757264011000075],[5.638038706000145,19.53326926600016],[4.655243265000024,20.17422281400013],[4.431843605999973,20.28816759700004],[3.834994502000086,20.48064247400015],[3.484791434000101,20.532064960000127],[2.473387475000038,20.56860993300012],[1.71635588100014,20.55713975700013],[1.023262277000185,20.51890980900015],[0.757011086000034,20.4758983750001],[0.612250456000083,20.43259997000007],[0.429524624000067,20.340720668000017],[0.296524603000023,20.24464512300017],[0.080441619000112,20.02355043900019],[-0.11100375999996,19.780949579000094],[-0.336269014999971,19.461552733000133],[-0.533364931999927,19.204208947999973],[-0.642117344999917,19.08144794800006],[-0.83111586099983,18.908484326000064],[-1.081015449999825,18.730832111000097],[-1.282597303999921,18.599304406000044],[-1.698551936999877,18.359252245000107],[-2.063668683999822,18.18414034100016],[-2.233278345999963,18.114773996000054],[-2.529948067999953,18.013166295000076],[-2.965631658999826,17.90816789600018],[-3.298919282999975,17.857814545999986],[-3.523834067999871,17.836658425000053],[-3.94004165799987,17.822315545000095],[-4.261157405999882,17.83191930099997],[-4.785843111999952,17.884864104000087],[-5.081222493999974,17.935129490000065],[-5.322840329999963,17.98767518699998],[-5.613202772999955,18.065319732000034],[-5.84450412599989,18.139489267000158],[-6.17029463099982,18.271939890000056],[-6.517301674999942,18.459077094000065],[-7.023777252999821,18.763711039000043],[-7.362120838999886,18.948262086000057],[-9.507147163999946,19.79327245600018],[-11.13216710699993,20.183277243000134],[-12.094278595999981,20.744508944000074],[-12.07300014999987,20.638939923000066],[-12.160390014999962,20.56615003400003],[-12.024360024999964,20.55484004700014],[-12.059779994999928,20.42843007600004],[-12.142739964999919,20.380550005000146],[-12.133840043999953,20.249940021000043],[-12.186399957999981,20.143600022000157],[-12.083860053999956,20.13177975300016],[-11.974960020999902,20.0881199370001],[-11.972480075999954,20.030969950000042],[-12.08929995099993,19.903699945000028],[-12.211479986999962,19.831330040000125],[-12.283709955999939,19.836380053000084],[-12.346730032999915,19.88914995900018],[-12.398100051999904,19.788460025000177],[-12.37170004899997,19.71683996500002],[-12.26318004299992,19.668619998999986],[-12.165470127999924,19.685950045000027],[-12.173190010999974,19.586209915000097],[-12.24384002599993,19.563880021999978],[-12.29611003499997,19.642990082999972],[-12.345180000999903,19.593040017000135],[-12.430020040999977,19.6584199940001],[-12.447380009999904,19.718489800000043],[-12.527290082999912,19.803440028000182],[-12.61252000699983,19.789900044000035],[-12.689849978999973,19.81653996200015],[-12.680050066999854,19.87808006300014],[-12.409159914999918,20.072900018000155],[-12.458879922999927,20.120159971000078],[-12.734669942999972,19.999999941000056],[-12.874550017999923,19.951929944000085],[-12.860660106999887,20.024950067000134],[-12.947240103999945,20.05348008700014],[-13.097180071999958,20.034359918000064],[-13.183259996999936,20.157769982000048],[-13.165480043999935,20.304849978],[-13.10277997199995,20.331440082000086],[-13.059310080999978,20.430689996000126],[-12.918989954999972,20.511419970000134],[-12.845030061999921,20.581269973000076],[-12.874870022999971,20.640709980000054],[-12.849060214999952,20.73007003600003],[-12.873369979999893,20.787740161999977],[-12.976120051999942,20.82390997699997],[-13.025140027999896,20.740459967000163],[-13.090960054999925,20.76108000200003],[-13.161980062999874,20.584879967000177],[-13.12528993299992,20.409489799000085],[-13.165590055999871,20.350120025000138],[-13.22757003099997,20.355419986000186],[-13.219359931999918,20.568779948000042],[-13.155960003999951,20.728569994000054],[-13.16612005299993,20.91105024600006],[-13.106031534999943,21.010519355000042],[-13.254815509999958,20.980762560000073],[-13.494200896999814,20.879722063000088],[-13.60780725099994,20.78714466300005],[-13.69109313399997,20.691950270000063],[-13.846641367999837,20.437292639000134],[-13.960154299999886,20.18395001900018],[-14.180348454999887,19.636633671000027],[-14.295088731999897,19.414893242000176],[-14.466302460999941,19.202763586000117],[-14.603906165999945,19.114996019000046],[-14.745787480999923,19.08555111900006],[-15.5843800479999,19.171319939000057],[-15.504469975999882,19.09253991500009],[-15.472279971999967,18.987500000000125],[-15.477379974999963,18.892569966999986],[-15.682839984999873,18.393340025000043],[-15.73562846499982,18.13765484700008],[-15.736649992999958,17.942089958000054],[-15.777196450999952,17.89526498900011],[-15.78607901199996,17.885006987000054],[-15.88117981199997,17.775180079999984],[-16.069328768999924,17.590229972000145],[-16.10017949199994,17.45648353500013],[-16.175550460999887,17.25416946400003],[-16.353279439999937,16.84428156400014],[-16.4361804859999,16.623834157000147],[-16.448190579999903,16.486513773000127],[-16.5102295719999,16.30696519200012],[-16.50613048599996,15.999634498000034],[-16.53722000099998,15.775830269000096],[-16.596147431999896,15.672180363000166],[-16.199720458999877,15.530043569000043],[-15.914239541999962,15.404302448000067],[-15.0692905599999,15.106191680000052],[-14.902819592999833,15.056124895000039],[-14.649040542999842,14.998247854000056],[-14.317890490999957,14.945462148000104],[-13.730389485999979,14.89293460500005],[-13.415289437999888,14.876535747],[-13.179479510999954,14.87482567100011],[-12.92527046899994,14.902124021000134],[-12.720950514999913,14.880235351000067],[-12.193539540999893,14.899725120000141],[-11.890720489999978,14.904314715],[-11.444549436999921,14.952260710000019],[-11.168180486999916,14.99936767600019],[-10.050439447999906,15.103122059000157],[-9.796695433999957,15.110630568000147],[-8.918510529999878,15.203435503000094],[-8.169492428999945,15.232962433000182],[-7.615109496999935,15.18756654800012],[-6.932553518999953,15.087253105000059],[-6.164248491999956,14.925993334000054],[-5.942504572999951,14.919022776000077],[-5.537127570999928,14.920613828000114],[-5.215247568999928,14.873846663999984],[-4.852262546999896,14.791732176000039],[-4.814211555999975,14.85227818300001],[-4.724433493999868,15.267500233000021],[-4.651059486999941,15.43535941100015],[-4.519555472999969,15.486557248999986],[-4.528307520999874,15.546093572000132],[-4.631530490999978,15.572670743000117],[-4.659661498999981,15.668044564000184],[-4.789558534999969,15.623957597000071],[-4.917558577999898,15.6144580510001],[-4.926146508999921,15.662106153000082],[-4.868333504999896,15.787227013000177],[-4.576787442999944,15.910269328000027],[-4.514319464999971,16.03284125099998],[-4.458703525999965,16.05343022300019],[-4.385224577999963,16.000893292000114],[-4.348847452999962,16.096866251000165],[-4.113107431999936,16.129514435000033],[-4.049637481999923,16.231249784000113],[-3.789771492999932,16.32197315800005],[-3.68010954499988,16.315284566000173],[-3.611710532999837,16.350701460000096],[-3.539902432999952,16.46345532500004],[-3.247840548999932,16.650972581000076],[-3.142115580999871,16.694359658],[-2.929841535999969,16.743657822000102],[-2.684607499999913,16.82956126500011],[-2.439606481999874,16.880248143000188],[-2.201596473999814,16.95459361200011],[-1.837839476999932,17.04127908700019],[-1.641101457999923,17.104503448000116],[-1.285361583999929,17.182360432000053],[-1.151847421999946,17.167070332000094],[-0.567629440999895,17.04534883700012],[-0.448174579999829,17.064386653000042],[-0.356382513999904,17.106134231000112],[-0.287210522999942,17.047088752000093],[-0.234954552999966,16.94258536300015],[-0.185972554999978,16.76971598500012],[-0.253659440999968,16.691710977000128],[-0.335631435999971,16.704590274000054],[-0.434930501999929,16.861440325000103],[-0.552444448999836,16.886428790000082],[-0.676550427999928,16.87661844300004],[-0.955042513999899,16.95064389200013],[-1.114696479999964,16.952623697000092],[-1.46343344099995,16.918485882000027],[-1.733755517999953,16.85198101200018],[-2.015875459999904,16.7978231890001],[-2.187364504999891,16.715209475],[-2.489353579999886,16.61971462000008],[-2.958801513999845,16.548658879000186],[-3.037802459999966,16.45903437400011],[-3.015161430999967,16.39413866199999],[-3.062077457999919,16.288965055000176],[-3.052839426999867,16.176932202000046],[-2.974945561999959,16.16635306699999],[-2.675715473999958,16.20049071400007],[-2.478275553999879,16.179771991000052],[-2.34292156399988,16.218370655],[-2.188184422999939,16.29742574800008],[-2.11589050799995,16.270077275000062],[-2.165170565999972,16.17094383500006],[-2.322371483999973,16.09171758300016],[-2.391753525999945,16.03741106500007],[-2.53290343499998,15.828794379000101],[-2.61110055599994,15.765219488000128],[-2.706180506999942,15.751409464000062],[-2.93343049899994,15.796401509000077],[-3.078525433999971,15.761369512000101],[-3.131350534999854,15.667074778000028],[-3.323374571999977,15.64136647500004],[-3.571110437999835,15.750349488999973],[-3.621715507999966,15.683893737000119],[-3.49599550999983,15.612969090000092],[-3.473192541999936,15.54746250500017],[-3.61792554699997,15.538843729000064],[-3.641549437999913,15.50767478400013],[-3.649341422999896,15.346175122999966],[-3.699598475999949,15.258741815000121],[-3.801945536999938,15.273839969],[-3.838179498999978,15.235503323000046],[-3.781003519999899,15.092101533000118],[-3.879904444999966,14.928543277000074],[-4.010570436999956,14.678758371000185],[-3.904085017999932,14.69453125800004],[-3.490576355999963,14.997588095000083],[-3.273836032999895,15.131490981000127],[-3.068035540999972,15.19522478700003],[-2.978529736999974,15.171219717000156],[-2.892715880999958,15.109954624000181],[-2.777680803999885,14.97342675900012],[-2.560323549999964,14.640971567000065],[-2.440082335999932,14.493202224000129],[-2.355937485999902,14.416596747000085],[-2.143431429999964,14.258155978000048],[-1.826374542999929,14.108155785000122],[-1.550992477999955,14.032581864000178],[-1.272511455999961,13.997553052000171],[-0.765680568999926,13.97271495900003],[-0.553004527999974,13.940817794000054],[-0.117419482999935,13.893470937000075],[0.031171544000131,13.906970160000128],[0.241644485000108,13.950906252000095],[0.444404567000106,13.974854523000147],[0.848398554000028,13.990524491000087],[1.135959524000043,13.987383960000045],[1.41098753700004,14.007252423000068],[1.720023446000141,14.08209745400012],[2.01728144000009,14.087068258000158],[2.360204545000045,14.159883360000038],[2.592624495000052,14.155892736000055],[3.125662575000092,14.168061918000149],[3.338589570000124,14.15687375400006],[3.538718573000097,14.12981445500003],[4.050700475000156,14.106706889000122],[4.272690486999977,14.081157507000057],[4.502114576000054,14.017862907000108],[4.673760531000028,13.98713401100008],[4.933565499000167,13.985914947000083],[5.148142555,14.023152391000053],[5.328052564000075,14.094916904000115],[5.502451469999983,14.139363958000104],[5.995334534999984,14.184220718000063],[6.227567568000097,14.182371000000103],[6.431363485000077,14.19849979300011],[6.79441958700005,14.211169040000073],[7.129064557000106,14.24907770600015],[7.306907588000172,14.278334739000172],[7.64656745000002,14.219088598000042],[8.037178556000129,14.159372566000059],[8.218784558000038,14.146343401000024],[8.372079509000116,14.112075497999967],[8.607858589999978,14.002793921000091],[8.778465524000069,13.97136580800003],[8.990699503000144,13.888620330000094],[9.488298562000068,13.58941136400017],[9.694548533000045,13.406392341000071],[9.85505845800003,13.279231829000139],[10.134380521000082,13.102943808000134],[10.294469507000144,13.038248089000149],[10.598139489,12.946314201],[10.718729427000085,12.926945635000095],[11.214899539000157,12.878527906000102],[11.832821488000036,12.847280003000037],[12.606348037999965,12.731577780000066],[13.033690455000169,12.553817308000134],[13.181973475,12.465501848000088],[13.24826242500012,12.389086951000024],[13.507836433000136,12.02095729299998],[13.77953002400011,11.453981525000017],[13.85493350300004,11.108053868000184],[13.873999483000148,10.973718112000029],[13.910880527000074,10.959670042000141],[14.0704495,11.085940396000183],[14.152700446000097,11.023545844000068],[14.147878505,10.912036524000143],[14.259460579000063,10.809044727000185],[14.247326433000126,10.493603536000023],[14.307991463000121,10.23882435700017],[14.489990577000071,10.081104431000028],[14.744788531000154,9.996177480000142],[15.00341953000003,10.009025596000015],[15.245400549000067,10.007115696000085],[15.432900538000183,9.957405310000183],[15.592439504000026,9.977040756000179],[15.73383952800009,10.084630363000088],[15.758609561000071,10.234770868000055],[15.683219539000106,10.416747016000102],[15.657640485000059,10.566356444000121],[15.639089489000071,10.81838887300006],[15.57283959700004,10.981222765000041],[15.703309452000155,11.221544167000161],[15.970239541000183,11.452059245000157],[16.151216565000084,11.522109324000098],[16.19507956700005,11.437976977000062],[16.27882953200009,11.405519398000138],[16.440650555000047,11.284776742000076],[16.589040584000145,11.216931438000131],[16.79487045400009,11.078971011000021],[16.92584054100007,10.88241538200009],[17.024200499000187,10.675898866000182],[17.267509546000156,10.516890977000116],[17.428800497000054,10.373391118000143],[17.54334054500015,10.340453424000145],[17.522880487000123,10.277636592000135],[17.586509526000157,10.20395295700007],[17.814559486000064,10.204311703000087],[17.950080444000037,10.28940696300009],[18.008735494000177,10.454650485000172],[17.95138953000003,10.610923358000036],[17.853010461000167,10.77109331400004],[17.705730532000075,10.925051608],[17.535588492000045,11.046217814000101],[17.44156043600009,11.188614351000126],[17.293750250000073,11.36263267400011],[17.303299593000133,11.498791067000127],[17.368085110000095,11.52251654100013],[17.935815451000053,11.48845564800007],[18.615272472000186,11.391398238000022],[19.464597478000087,11.245809441000063],[19.83810506800006,11.105753993000064],[19.937695401000155,11.008632011000032],[19.94408426500013,10.875340508000022],[19.763219542000115,10.680818708000118],[19.79444146100019,10.642553308000174],[19.737451560000068,10.511513483000158],[19.7409494960001,10.258388222000178],[19.675090536000084,10.084220152000114],[19.5628504820001,9.963914864],[19.55446053200012,9.849887620000118],[19.626640453000107,9.836007692000123],[19.86352946600016,9.940011352000056],[19.99773949400003,9.965196624000043],[20.104759466000075,9.943067058999986],[20.342390445000092,9.954554290000033],[20.44791944399998,9.924925435000148],[20.659389497000063,9.94404606500018],[20.901100451000048,10.079960637000056],[21.064039452000088,10.25212844900011],[21.05091054100012,10.374051109000106],[20.98188054000019,10.414128174000098],[20.769329556000116,10.421296713],[20.723459591000108,10.490111802000115],[20.739780498000187,10.542519317000028],[20.88665055200005,10.604813957000033],[21.085208451000085,10.647926779000102],[21.26904152500009,10.640423466000186],[21.59263244100015,10.38135761400008],[21.89975560000005,10.158011243000033],[22.159835494000163,10.08609216700006],[22.767774597000084,10.1057028030001],[23.100557685000126,10.132914535000111],[23.46230930200005,10.277604111000187],[23.760044732000097,10.258786288000067],[24.41509249300009,10.04687391200008],[25.02303159600001,9.948825929000066],[25.3445272780001,9.955682890000162],[25.580298110000115,10.022586673000035],[25.739726785000187,10.089374361000182],[25.85606662900011,10.106609894000087],[26.140452914000093,10.095837686000039],[26.393329211000037,10.030143126000098],[26.786785381000186,9.858849115000055],[26.89193474700005,9.825551814999983],[27.02808283500002,9.810277428000177],[27.324624593000067,9.810277428000177],[27.762649443000157,9.732065219000049],[28.176609513000187,9.670742377000124],[28.547920448000013,9.599248431000149],[28.860439540000073,9.490954074000058],[29.115533543000083,9.377667288000112],[29.256530566000094,9.337812009],[29.370910520000052,9.338374938000129],[29.55087048400003,9.416140559000098],[29.668840575000104,9.521721023000111],[29.838609486000053,9.57551524000013],[29.933404452000104,9.584565516000055],[30.008829511000158,9.532023388000141],[30.192174590000036,9.484018720000165],[30.711332575000142,9.46286698700004],[31.076854464000064,9.406415037000102],[31.286403553000014,9.394021052000028],[31.631074452000178,9.33375718000002],[31.720878498000047,9.329583663000108],[31.88156545000004,9.381981957000164],[32.04360959900015,9.48098095100005],[32.212978525000096,9.541336689000047],[32.585391513000104,9.615711326999985],[32.819339483000135,9.703369271000156],[32.95508960200016,9.76708749300019],[33.2274585400001,9.799292441000148],[33.35739849100008,9.852871578000133],[33.53252058900017,9.96042396900009],[33.60100945500005,9.957414195000126],[33.64075057300005,9.849797766000165],[33.545238450000056,9.69386167800019],[33.45952946700015,9.504437204000112],[33.396560587000124,9.439465719],[33.23423044700007,9.343522600000085],[33.19200158100011,9.291280377000078],[33.19638045500005,9.207730236000032],[33.32883045100016,9.05537288500011],[33.37041055800012,8.97870747200011],[33.51842155700018,8.815930241999979],[33.54925153800008,8.760740942000098],[33.542308472000116,8.661430979000158],[33.48537053900003,8.6342561780001],[33.518089466000106,8.485268855000129],[33.56750000000011,8.451762919000032],[33.627948557000025,8.506246244000067],[33.644599542000094,8.649314938000146],[33.64170057700011,8.907908554000073],[33.60440060500014,9.092401283000186],[33.60718155300003,9.230605624000077],[33.69248954600016,9.65225458100008],[33.71590053699998,9.92430048100016],[33.713409603000116,10.17416400899998],[33.65298060700013,10.53491978000011],[33.53102156900013,10.875424874000089],[33.476589490000094,11.147317050000083],[33.47237054300018,11.300406476000092],[33.54584161200006,11.637733153000056],[33.62245958300008,11.82197057000019],[33.81485745400005,12.08793238100003],[33.935913593,12.111079845000177],[34.12324158600012,12.204737555000065],[34.21690348700008,12.27498175900007],[34.45106553100004,12.368638463000082],[34.755474461000176,12.392052639000042],[35.481372590000035,13.188145016000021],[35.621868543000176,13.492533663000188],[35.66870158900019,13.77350712700013],[35.809196535000126,14.218382506000069],[35.97311051900016,14.569600510000043],[35.996524528000066,14.733502927000018],[36.09018760200007,15.014476560000105],[36.300933458000145,15.201791644000082],[36.441429578000054,15.272036184000058],[36.58192854800012,15.24862150500013],[36.816085563000115,15.037892077000095],[36.909751487000165,14.850574143000074],[36.97999954700009,14.546185160999983],[36.99852343600003,14.268333333000044],[37.1697794910001,13.846370667000087],[37.22801368900002,13.763333334000095],[37.30416666700006,13.80916666600018],[37.36083333300013,13.722500000000139],[37.42,13.7025],[37.42833333300007,13.60833333300019],[37.49250000000018,13.54916666700018],[37.47166666700008,13.35750000000013],[37.585,13.284166667000079],[37.64583333300004,13.293333334000124],[37.77500000000015,13.19],[37.86166666600019,13.238333333000128],[38.023333333000096,13.280833333000146],[38.09,13.417500000000132],[38.186666667000054,13.425],[38.21583333300009,13.504166666000174],[38.310000000000116,13.515833333000103],[38.33166666600016,13.600833333000082],[38.41083333300003,13.620833334000167],[38.50750000000011,13.56666666700005],[38.5175,13.482500000000186],[38.60583333300008,13.284166666000147],[38.6275,13.193333333000055],[38.52,13.141666667000152],[38.54333333400007,13.064166667000052],[38.42666666700018,13.042500000000132],[38.40083333400014,12.933333333000121],[38.41916666700013,12.885],[38.31583333400016,12.8308333330001],[38.24000000000012,12.87],[38.058333333000064,12.923333334000063],[37.913333333000026,12.7775],[37.959166666000044,12.670833334000065],[37.88666666700004,12.535],[37.81416666700011,12.468333332999975],[37.840000000000146,12.35750000000013],[37.8975,12.343333334000022],[37.96,12.422500000000127],[38.21833333300003,12.444166667000047],[38.15166666700014,12.36],[38.23666666700012,12.315000000000111],[38.365833333000126,12.3875],[38.351666666000085,12.293333334000124],[38.390833333000046,12.163333332999969],[38.370833334,12.072500000000105],[38.52333333300004,12.05],[38.5925,11.9425],[38.72166666700019,11.991666666000071],[38.73833333300007,12.043333334000181],[38.68083333400017,12.130833333000169],[38.58083333300016,12.119166667000115],[38.518333333000044,12.203333334000149],[38.63166666700005,12.249166666000065],[38.65333333300009,12.325000000000102],[38.554166667000175,12.325000000000102],[38.525833333000094,12.525],[38.71916666700014,12.5225],[38.65,12.610000000000184],[38.755000000000166,12.634166667000159],[38.871666666000124,12.700833334000151],[38.91666666700013,12.76833333400009],[38.76833333300016,12.89583333400003],[38.80333333300007,12.955833332999987],[38.9,12.9],[38.913333333000026,12.8],[38.991666666000185,12.786666665999974],[39.09666666700002,12.66166666700019],[39.16333333300014,12.614166667],[39.138333334000095,12.5375],[39.225000000000136,12.494166667000115],[39.2025000000001,12.649166667000145],[39.1475,12.680833333000123],[39.15000000000015,12.760000000000161],[39.21000000000015,12.916666666000026],[39.2975,12.945833333000053],[39.23333333300013,13.047500000000127],[39.33750000000015,13.135833333000107],[39.21916666600009,13.175833333000014],[39.091666667000084,13.171666665999965],[39.08916666700014,13.243333333000123],[39.14666666700009,13.275],[39.066666667000106,13.432500000000118],[39.09333333400019,13.511666667000156],[38.9616666660001,13.585],[38.9725,13.628333334000047],[38.881666667,13.716666667000027],[39.0025,13.804166667000118],[39.04250000000013,13.768333333000157]],[[22.527620008000042,15.826840062000144],[22.57891997100012,15.774620042000095],[22.55716003000009,15.623020030000191],[22.456949927000096,15.419640047000144],[22.375759837000032,15.401329922000116],[22.305529983000042,15.338599925999972],[22.34323997200005,15.270879940000157],[22.387990056999968,15.086380036000037],[22.323629940000046,15.07305004400007],[22.27964976700008,15.13267997600019],[22.209709993000047,15.092189927000163],[22.275999993000084,15.005490060000113],[22.211800054000093,14.894019959000161],[22.124349991000145,14.829250068000078],[22.00773993100006,14.80657007100018],[21.871699907000107,14.845440032999988],[21.803679983000166,14.958800060000044],[21.87197995500003,15.10576001000004],[21.854619986000102,15.199640083000133],[21.87180006300008,15.343050063000021],[21.990429951000124,15.424840029000165],[22.04728,15.403280047000123],[22.083499981000102,15.530130069000109],[22.133770051000113,15.56147007200019],[22.177480033,15.66267996800002],[22.279990014000077,15.589760001000116],[22.358080040000118,15.614029986000105],[22.362330042000053,15.674860022000075],[22.527620008000042,15.826840062000144]],[[37.1562885730001,18.568945316000054],[37.07123958100016,18.535798241000066],[37.020099577999986,18.683879481000133],[36.95468150600004,18.76217383300002],[36.94324859000017,18.870147330000066],[37.01152053200019,18.94883278100008],[37.120510587000126,18.918395576000137],[37.16971956700013,18.873577372],[37.21002948100005,18.752404389000162],[37.1562885730001,18.568945316000054]],[[11.331450033000124,15.944130087000076],[11.233760007000171,15.961459957000102],[11.24175993900019,16.099910046000048],[11.297680074000084,16.10790997700019],[11.304119940000021,16.33900993600014],[11.427590026000132,16.430190039000138],[11.524409985000148,16.392709931000184],[11.537529985000162,16.31133994900017],[11.44044001200001,16.243230079000057],[11.459929999000167,16.027770022000084],[11.40581002,15.965040026999986],[11.331450033000124,15.944130087000076]],[[2.200730032000081,18.58411997000013],[2.106489998000143,18.6378400320001],[2.091150034000123,18.713449937000064],[2.158020019000048,18.75503993500007],[2.12287006400004,18.920170074000055],[2.071729927000092,18.961850018000064],[1.966640022000092,18.95347006000003],[1.908139962000178,18.896869959000185],[1.837840052000047,18.989179758000034],[1.845529835999969,19.28880006600008],[1.873060063000139,19.391009932000088],[1.788270013000101,19.407849938000027],[1.751990009000167,19.3492500750001],[1.689150001000144,19.13724001000014],[1.652019997000025,19.308679937000136],[1.737280021000174,19.428309971000147],[1.620089975000099,19.481639797000184],[1.505380051000031,19.677109970000174],[1.51092978500003,19.74752992600014],[1.660050028000171,19.809020037000096],[1.640309917000138,19.882889984000144],[1.463329761000125,19.90142999200009],[1.354229945000043,19.96859991500014],[1.417260055000156,20.065229948000024],[1.522900022000044,20.04730002600013],[1.530479794000144,20.15450991600011],[1.467180022000093,20.24735006300017],[1.407810071000029,20.18528999900019],[1.293669924000142,20.16204005000003],[1.18510996100008,20.234409955000103],[1.062430029000154,20.190549828000087],[1.071560009000052,20.29346993500019],[1.192329948000179,20.266079820000073],[1.270309962000169,20.368039914],[1.351829913000074,20.402070030000175],[1.457030006000139,20.38232006100003],[1.589090043,20.446819938000147],[1.693310057000076,20.443200087000037],[1.851750030000062,20.523720069000092],[1.948850036000181,20.530649975000074],[2.066739937000023,20.495980026000154],[2.219320029000187,20.523720069000092],[2.344150045000049,20.4543699620001],[2.413499975999969,20.461300044000097],[2.489790022000136,20.385019856000042],[2.683969968000042,20.287920025000176],[2.67704006200006,20.24629992800004],[2.739450054000031,20.128420060000053],[2.829609945000186,20.066000036000162],[2.905899991000183,19.941170019000026],[2.885090031000175,19.830199992000075],[2.799320077000061,19.821870023000145],[2.739820048000126,19.749690043000044],[2.676319965000118,19.746519923000164],[2.577879742000164,19.486560083000143],[2.492190054000162,19.444719961000033],[2.517979971000159,19.28503992700007],[2.491479813000069,19.097329946],[2.42883008299998,18.900309917000016],[2.43039982900001,18.781430080000177],[2.319219985000188,18.64180998600017],[2.200730032000081,18.58411997000013]],[[1.387759989000017,19.11691991300006],[1.341240024000058,19.097439959000155],[1.265759846000094,19.172630056000173],[1.163310064000143,19.176250083000127],[1.146939855000085,19.2460300300001],[1.23703990000007,19.28774993100012],[1.199160051000149,19.37136997600004],[1.244900071000188,19.40166002000018],[1.317009995000149,19.32223998700016],[1.372380068000155,19.332109955000192],[1.453389913000137,19.266440073000183],[1.455259950000084,19.207019957000114],[1.387759989000017,19.11691991300006]],[[1.115729931000033,19.43769007500015],[1.117439965000131,19.51039001800018],[1.184650021000039,19.653629962000082],[1.331730017000041,19.60719008600006],[1.327480015000106,19.49936975999998],[1.115729931000033,19.43769007500015]],[[1.162770035000165,19.698220044000152],[1.128290011999979,19.734619917000146],[1.229819737000128,19.84235997900015],[1.381990054000028,19.793950088000088],[1.358689939000158,19.733579991000113],[1.272439803000111,19.69892993300016],[1.162770035000165,19.698220044000152]],[[13.700549940000144,14.334720035000089],[13.836099924000052,14.339689959000054],[13.882780067000112,14.305000120000102],[13.884440111000174,14.230279996000036],[14.042779929000062,14.258330010000066],[14.12443999200002,14.124719942000127],[14.22110998100004,14.084440061000066],[14.246670017000156,14.01861000100007],[14.17805004100012,13.972499987],[14.16027994500007,13.884999933000131],[14.187780073000113,13.796390074000158],[14.14278021600012,13.746109970000191],[14.09971992400017,13.629440064000107],[14.20111006500008,13.522500189000027],[14.256940078000184,13.537220035000075],[14.365550030000179,13.500000085000124],[14.483609966000131,13.54583005100011],[14.661110085000075,13.505279979000022],[14.742219910000188,13.54861011100013],[14.841939973000137,13.543049992000078],[14.975560075000033,13.447780065000075],[15.15416999900009,13.408890037000162],[15.281109967000077,13.427220053000156],[15.283609978000072,13.344169960000102],[15.334169954000117,13.296939930000065],[15.280550047000077,13.18972018400018],[15.32750002900002,13.086669998000104],[15.274719914000059,13.04556000700012],[15.212500024000065,13.066670082000144],[15.200280014000043,12.966389922000133],[15.141390070000057,12.931110064000109],[15.054999998000142,12.948890017000167],[14.936109952000095,12.891669974000024],[14.787499990000128,12.890000073000124],[14.832219975000044,12.708899994000035],[14.813049992000117,12.686109985000087],[14.87000002000002,12.4497199220001],[14.902219947000049,12.378890015000081],[14.888689997000029,12.157809817000043],[14.968889974000149,12.090000061000069],[14.916669954000099,12.030549845],[14.79582995900006,12.105280001999972],[14.615830005000134,12.176389781000069],[14.552780005000159,12.232219970000187],[14.493329965000157,12.384719973000188],[14.59333007600003,12.373609944000066],[14.607689961,12.579470048000076],[14.66244994900012,12.71303998400009],[14.522219946000178,12.778330014000119],[14.456130257000098,12.660869954000077],[14.341739985,12.550269920000062],[14.313799984000127,12.430359838000129],[14.186049972000035,12.358909988999983],[14.006449935999967,12.387749980000137],[13.734230128000092,12.409849991000044],[13.64768005400009,12.494010066000044],[13.623639951000087,12.609449945000051],[13.678330059000075,12.766099970000027],[13.642349993999972,12.87373001900005],[13.636879997000108,13.053060042000084],[13.585289953000142,13.102520068000047],[13.488050011000098,13.327499989000103],[13.383890019000034,13.419439970000099],[13.354719990000149,13.647500064000155],[13.171829964000153,13.763620084000024],[13.051559921000035,13.874360054000022],[12.98320996000001,14.033230044000163],[12.987000022000075,14.142160176000175],[13.210380097000098,14.364589919000082],[13.34817996900017,14.43114007600019],[13.443720086000155,14.450840055000072],[13.613250021,14.430249944000082],[13.700549940000144,14.334720035000089]],[[24.58826991800015,12.770310016000053],[24.510660074000043,12.707060057000149],[24.41898993100017,12.76933997000009],[24.26208995700017,12.813349890000097],[24.190930013000127,12.93652003800014],[24.213159927,13.006139983000025],[24.30816001500017,13.11580992800009],[24.354700047000108,13.289280069000029],[24.45409993000004,13.35013017200015],[24.560790032,13.20675997300009],[24.580720069000165,13.150210038000125],[24.527209999000092,13.068709977000083],[24.565200037000125,13.018719954000062],[24.55708991700004,12.932540051000046],[24.620639990000086,12.83683007400009],[24.58826991800015,12.770310016000053]]]]},"properties":{"objectid":602,"eco_name":"Sahelian Acacia savanna","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Afrotropic","eco_biome_":"AF07","nnh":3,"eco_id":53,"shape_leng":343.977839942,"shape_area":308.965866862,"nnh_name":"Nature Could Recover","color":"#FCC369","color_bio":"#FEAA01","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":3689917.7690503253,"percentage":17.211227466144297}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-110.03192856399988,24.170256221000045],[-110.01049067399998,24.112055303000147],[-110.09553564299995,24.03412405500012],[-110.02891560599994,23.939468899000076],[-110.01715864499988,23.81299218200013],[-109.90505253399988,23.802021612000146],[-109.87812064099995,23.956090883000115],[-109.8222426829999,23.960990776000074],[-109.83393057699993,24.058777914000075],[-109.97187055199987,24.035934211000097],[-110.03192856399988,24.170256221000045]]],[[[-110.29511261299996,23.521998823000047],[-110.2325816039999,23.403812144000028],[-110.14614054499998,23.294480443000054],[-110.10028868499995,23.0316579900001],[-110.06031756799996,22.95296616800016],[-109.96658358299993,22.87166858000012],[-109.89345566799994,22.867628838000144],[-109.7068785269999,22.98826035100018],[-109.63585664899989,23.080460615000106],[-109.52126362799999,23.120655529000146],[-109.43189259099995,23.226708229000167],[-109.40752455399996,23.471236509000164],[-109.47318268399982,23.57665302300012],[-109.67755158899996,23.665345628000182],[-109.7269595549999,23.61122736700014],[-109.68183859699985,23.49750422000011],[-109.67065462299996,23.39710628600011],[-109.76213857,23.270012997000094],[-109.77526865399994,23.196114618000024],[-109.73339065399989,23.007462453000187],[-109.9053266219999,22.98299668300001],[-110.0054325299999,23.029575254000065],[-110.06666568599991,23.154581953000047],[-110.01927960199987,23.21548268200013],[-110.02013354999991,23.34621287900012],[-110.12619764999994,23.481946066000148],[-110.17714654599985,23.622100875000115],[-110.14390559399999,23.696918246000166],[-110.21498865899997,23.742400632],[-110.24001366999994,23.84614965000003],[-110.20295761099999,23.878037092000113],[-110.22850062299995,24.02404263700015],[-110.21333356899999,24.114771039000175],[-110.28974953599993,24.14442856000005],[-110.27239262599988,24.20246670100005],[-110.17926766999994,24.23415130100011],[-110.24119568599997,24.349952491000067],[-110.33187865799988,24.316354135000097],[-110.30080459599998,24.19288233000009],[-110.29759265099995,23.8717791630001],[-110.27548253099997,23.682863806000114],[-110.29511261299996,23.521998823000047]],[[-109.67179053899997,23.078215774000114],[-109.66481059299997,23.185809068000026],[-109.56131755799998,23.162985481000135],[-109.56907668599996,23.114487957],[-109.67179053899997,23.078215774000114]],[[-109.55197860899995,23.193653859000108],[-109.63386561199991,23.26096423000007],[-109.58121451999995,23.318544216000078],[-109.64572164599997,23.35938219000019],[-109.60112757499991,23.470800650000058],[-109.50373052999987,23.497519307000175],[-109.49191254999994,23.388206717000116],[-109.44270356899995,23.31375144400016],[-109.46671252499993,23.240553457000146],[-109.55197860899995,23.193653859000108]]]]},"properties":{"objectid":606,"eco_name":"San Lucan xeric scrub","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Neotropic","eco_biome_":"NO13","nnh":3,"eco_id":607,"shape_leng":11.3540165811,"shape_area":0.342120365015,"nnh_name":"Nature Could Recover","color":"#A85E1F","color_bio":"#CC6767","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":3884.9185881988733,"percentage":0.014725541182024468}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-121.84082209399992,36.63113216000005],[-121.96946755999994,36.56915032800015],[-121.90163116699995,36.38776849800007],[-121.89910388599992,36.30769576400013],[-121.83350387099989,36.247404854000024],[-121.71665839399998,36.194968494000136],[-121.63326746299998,36.1209866750001],[-121.57354017199998,36.023550305000185],[-121.50463106799998,36.00157758000017],[-121.462467415,35.886013936000154],[-121.33203101999999,35.78255030000014],[-121.29848555199999,35.6984866570001],[-121.17440066499995,35.68795762800016],[-121.01244368699997,35.582262332000084],[-120.83663963799995,35.532538535000185],[-120.76777660399995,35.62169046900016],[-120.78131069499995,35.690718795000066],[-120.87149762699994,35.85055079200009],[-121.02036257399999,36.019428204000064],[-121.1493456469999,36.135056391000035],[-121.25795767799991,36.20330670800013],[-121.48783858099995,36.42085095800019],[-121.62010953999993,36.512592062000124],[-121.84082209399992,36.63113216000005]]]},"properties":{"objectid":607,"eco_name":"Santa Lucia Montane Chaparral & Woodlands","biome_num":12,"biome_name":"Mediterranean Forests, Woodlands & Scrub","realm":"Nearctic","eco_biome_":"NE12","nnh":3,"eco_id":425,"shape_leng":4.08900423943,"shape_area":0.470978296093,"nnh_name":"Nature Could Recover","color":"#B54B01","color_bio":"#FE0000","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":4717.601853041083,"percentage":0.14281076048956462}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-73.57250949399997,10.996806567000021],[-73.63573452499998,10.93479875600002],[-73.73855549899997,10.929349178000166],[-73.82891861799999,10.88731225700019],[-73.87834955099993,10.94524713400017],[-73.94641161099992,10.879724791000172],[-73.83267957799995,10.81696612900015],[-73.8023456379999,10.708681495],[-73.69018554699988,10.627943315000095],[-73.56718463899995,10.63818751000008],[-73.44345852699985,10.929062182],[-73.5302584989999,10.911245440000073],[-73.57250949399997,10.996806567000021]]]},"properties":{"objectid":609,"eco_name":"Santa Marta páramo","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Neotropic","eco_biome_":"NO10","nnh":1,"eco_id":594,"shape_leng":2.5636124634,"shape_area":0.102402476544,"nnh_name":"Half Protected","color":"#F1873D","color_bio":"#D6C39D","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":1246.4186344124612,"percentage":0.025524082197626113}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[96.73206355000008,50.75086360900008],[96.52677950900005,50.884654709000074],[96.37486254300006,51.057493409000074],[96.18943053700013,51.030888745000084],[95.96930667200007,51.05075603500006],[96.02864065600005,50.931156335000026],[95.86789654000017,50.9155841000001],[95.88983952400008,50.86480636300007],[96.03923052000016,50.8064133310001],[96.42283653300018,50.40435757500006],[96.56925966500017,50.31948728500015],[96.7848205890001,50.30561708000016],[96.93717961700008,50.36365773600005],[96.98284959000006,50.430667699000026],[96.99871854400016,50.58342989600004],[96.73206355000008,50.75086360900008]]],[[[100.28694955700007,50.096824207000054],[100.36492958700006,50.27021544100012],[100.34484051200013,50.38209809000011],[100.2504116670001,50.41950266900011],[100.13673361400004,50.533922185000165],[100.15968360000016,50.62339648700015],[100.36930862899999,50.898852648],[100.39771255200014,51.04528617300008],[100.32274665400013,51.09060879900005],[99.99681064900005,51.000138225],[99.6160885130002,50.78458501100005],[99.41026266600011,50.643637945000194],[99.23789251500006,50.56019358400005],[99.09107962500013,50.615755544000024],[98.95211052000002,50.89958489100013],[98.93772164200004,50.99459124900005],[99.01643358000018,51.0721345820001],[99.08856153400006,51.214584691000084],[98.97110760100009,51.36261312500005],[98.71072361100016,51.443489606000185],[98.58155865000003,51.384143384000026],[98.67659753000015,51.25773355500013],[98.48204752200019,51.220352782000134],[98.32829257200018,51.29649214600005],[98.20644367200009,51.22568199600016],[98.1380696380001,51.10731812300003],[98.11161752500004,50.97951187000001],[98.17501857600018,50.89346660400008],[98.33452552300014,50.81062540500011],[98.26576961000012,50.66704122400006],[98.12220755700014,50.598448423000036],[98.30247463400008,50.54205833100008],[98.32613356200005,50.482296702000156],[98.46593465400014,50.47948138900017],[98.62604560100016,50.39185630200018],[98.94231459000008,50.328497328000026],[99.27220953500012,50.23206822600014],[99.71115153200009,50.145328939000194],[99.88001251600014,50.12203546300009],[100.28694955700007,50.096824207000054]]],[[[87.5241165990002,51.10589906700005],[87.74259157600005,51.267751606000104],[87.73889163700011,51.4791651650001],[87.69905865300012,51.54919630100005],[87.57137259600017,51.52794482400003],[87.32913961700007,51.43758438700013],[87.19220765000011,51.48904541700011],[86.980087664,51.65831828700016],[86.82237964100005,51.6284976550001],[86.69275652599998,51.54602626600018],[86.63804650300006,51.457424855000056],[86.64571359799999,51.30914127600005],[87.01526651200015,51.29350818900019],[87.5241165990002,51.10589906700005]]],[[[100.85764367300004,51.91045079600008],[99.7846906630001,52.027968767],[99.4321516710001,52.07395155300003],[99.12559563200006,52.13526266000014],[99.00807967300005,52.21190527400017],[98.8292546180001,52.23234052200007],[98.70663458300004,52.18124963600013],[98.6146626420001,52.06373250400014],[98.26212364900016,51.74694970500019],[98.22125265100016,51.61921637400019],[98.34751160600018,51.56211750800003],[98.67961853600019,51.65202716600015],[98.80814362200005,51.667965355000035],[98.93144259100018,51.76350614300014],[98.93300665400017,51.84586353900016],[99.04000064200005,51.89590132100017],[99.27441364100008,51.7985527240001],[99.4722215270001,51.835552457],[99.58193158700004,51.778509247000045],[99.66207867400004,51.69207087000012],[99.86898763100004,51.54969234200013],[100.07376859000016,51.28788879300009],[100.2296376230002,51.23083586000013],[100.34435251800005,51.32686447500015],[100.44196363600003,51.34705983300012],[101.0664675590001,51.280934999000124],[101.18296059000016,51.223663969000086],[101.24950351400014,51.07229853200016],[101.35460654500014,51.085649730000114],[101.46249354100001,51.255372541000156],[101.55689254600009,51.30067622500013],[101.838828589,51.24781139400011],[101.96659058600011,51.25033736400019],[102.0673826370001,51.28967782700016],[102.04979656600011,51.389068591000125],[101.88349960600016,51.586238111000114],[101.9088895650001,51.679321493000145],[102.16437567300011,51.732129494000105],[102.61028252900007,51.69625193100012],[102.93129751900017,51.7623430700001],[103.139999532,51.759679972000015],[103.45279656800011,51.83834849200019],[103.5115966250001,51.90933365600017],[103.49389656000011,52.03144373700013],[103.4142986550001,52.079174820000105],[103.13710056700006,52.09456701100015],[102.78924555000009,52.062320489000115],[102.33174166000003,51.97818177099998],[101.65419755700009,51.95634238700006],[101.37300163700019,51.96361352000014],[100.85764367300004,51.91045079600008]]],[[[90.13629951100012,50.68738158900004],[90.08511357500015,50.796304085000145],[89.93623353999999,50.9165760140001],[89.81993061000014,50.954414775000146],[89.80416056200005,51.08986884500007],[89.64240257100016,51.20232062600007],[89.44336656900009,51.238660032000155],[89.35491150600018,51.30086314100015],[89.30686962200008,51.41126303200019],[89.32893364100005,51.50596361800007],[89.40399157300004,51.538846998],[90.01055855800013,51.629855691000046],[90.11506664100011,51.73140831500001],[90.26515165800015,51.973241813000186],[90.41206362200006,52.096015907000094],[90.58686854900014,52.15066692200014],[90.80320764900011,52.18603771500011],[91.26152760100018,52.22042346700016],[91.4021226270001,52.27109944800014],[91.440086614,52.43595052900014],[91.18379953000016,52.37344215000013],[90.9917905800001,52.3592509180001],[90.39070854500017,52.352986786000145],[90.29566161800017,52.37130107700017],[90.06730655700011,52.29694068800006],[90.00089254700015,52.24695872800004],[89.94783057400014,52.07599673700014],[89.86459358100012,51.97633171700005],[89.75566857000007,51.92983394800012],[89.45497852200015,51.90652152800004],[89.3624575660001,51.86844287700018],[89.24906952700007,51.72474034400017],[89.13854256600018,51.68842373700011],[88.97879757300007,51.684166736],[88.63627663200003,51.78427029700009],[88.47643256400016,51.78702056700013],[88.33154265100012,51.690437908000035],[88.35523963200012,51.48862632200019],[88.23454257300006,51.45015355400017],[88.1513365940001,51.62723550800007],[88.06271355799998,51.71473821900008],[87.95770256000003,51.688587854000104],[87.93666063100011,51.59361200600017],[88.01261157000005,51.44912358600004],[88.09764866000006,51.346632859000124],[88.2638936510001,51.27118064300004],[88.6957626630001,51.15578782000006],[89.16211650100018,51.13441731900008],[89.258186523,51.10291594800003],[89.36437266300004,50.89403456200017],[89.46846751900006,50.803731290000144],[89.64524856300011,50.742314403000194],[89.6662215930001,50.5960113000001],[89.34599265800011,50.59197122300003],[89.10729265200007,50.49857469300008],[88.92742958200006,50.484780595000075],[88.70359756300013,50.57000979900016],[88.59010357700015,50.64367197500013],[88.42991652200004,50.701641721000044],[88.09530658800008,50.77415188900011],[87.96793351100001,50.82364468000003],[87.59864060300009,50.90579588100013],[87.76466364200007,50.544320606000156],[87.81522361700019,50.554838554000185],[88.27675652000005,50.481198673000165],[88.53726154500015,50.45995021300013],[88.63519251600002,50.38458634200009],[88.80406154600001,50.3051850760001],[89.226020634,50.25779429900018],[89.38411757700004,50.169094317000145],[89.58647951900014,49.95452245700017],[89.73609950800005,49.74676759900012],[89.65328965800006,49.684206079000035],[89.85115051700018,49.60625907399998],[90.01620460800007,49.567016679000176],[90.14050253200014,49.44015808300014],[90.183257615,49.516136012000175],[90.16506150900011,49.89887667800008],[90.1154636080002,49.97963463900015],[89.96729251500005,50.09993741300008],[89.789649644,50.18242355500007],[89.69271863300008,50.25729138400004],[89.6280666670001,50.429427848000046],[89.73191861500004,50.457470176000186],[89.94873850100004,50.39531635200012],[90.05658761100017,50.43077867500017],[90.07962057800017,50.540349428000184],[89.97113058800011,50.604720433000125],[89.99096653000015,50.68070255300006],[90.13629951100012,50.68738158900004]]],[[[101.18460059300008,53.04820279100011],[101.27539856500016,53.07625215900015],[101.06539953600009,53.22683757599998],[100.90830255400016,53.222618461000025],[100.76660161900014,53.126314417],[100.76419852800018,53.038322371000106],[100.6855016770001,52.98475128100017],[100.59760267000019,53.125547473000154],[100.51270254000008,53.20394509000016],[100.40119959100008,53.168986351],[100.34429954400014,53.004801799],[100.61569953400004,52.897900515000174],[100.6216966180001,52.82812804400004],[100.51909659100005,52.778498124000066],[100.35739861500008,52.82860530900018],[100.14820056100012,52.85343971500009],[100.07080055800009,52.79939957400018],[100.10839859000004,52.73294616900006],[100.7455975760002,52.59489337300005],[101.02410156400009,52.29956874900017],[101.59329967800011,52.322778239000115],[102.16159858100002,52.36512512300004],[102.32199853600014,52.422381065000195],[102.3164976610002,52.50231257100006],[102.14320365600008,52.527303215000074],[101.86669959000011,52.53186515000016],[101.56860357400006,52.576715037000156],[101.24060059100009,52.59208560400015],[101.10079966600006,52.65021460500003],[101.0286026460002,52.77280999700008],[101.00980354600011,52.89788173900001],[101.04340357900008,52.97791131300016],[101.18460059300008,53.04820279100011]]],[[[96.09835059800008,54.48814620000019],[95.97181654900015,54.53261940400017],[95.70793160600005,54.43028391000007],[95.54546366800014,54.43666605900012],[95.45677156500011,54.48166112100017],[95.2835695940002,54.483625336000046],[95.17986265300004,54.44362421200003],[95.22048152300016,54.32414822900006],[95.29042850500008,54.2785501730001],[95.60109754400008,54.19998843800016],[95.82576758600015,54.12567666400008],[96.33589155500005,54.083408570000074],[96.76719663199998,54.029936386000145],[96.91108658500008,53.95562478000011],[96.90738664500003,53.85297228200005],[96.477363663,53.804349197000136],[96.24675755800007,53.72220922800011],[96.11196163500011,53.64926672100006],[95.78836066100013,53.66646806300008],[95.0963975050002,53.78802979900007],[94.947776638,53.72415852300003],[95.12999753700012,53.488375251000036],[95.11987253300009,53.36334139600012],[95.43067953800016,53.41754163200005],[95.8430175430002,53.42592286400003],[96.06123351900004,53.36936161400013],[96.27001164000012,53.33780894500006],[96.43242660400011,53.56148489300017],[96.63887053300016,53.64639860199998],[96.83039852900004,53.657407896000166],[96.96070057800011,53.601074466000114],[97.0487135790001,53.39728525400005],[97.19389350700004,53.3519312790001],[97.36425753300011,53.401981131000184],[97.47598260300015,53.49134211000012],[97.68791164900011,53.706205828000066],[97.90615059100008,53.70091869100003],[98.37867753400013,53.57924698400012],[98.92382863800015,53.396861968],[99.04067253600005,53.26476719700008],[99.0440365290001,53.12183512800004],[98.66658752600006,52.76646992600013],[98.58139755000019,52.63067521500017],[98.63001258900016,52.47677207300012],[98.96434759600004,52.388769466000156],[99.19529752700004,52.50551294900015],[99.1990506080001,52.622844171000054],[99.42186757800016,52.67310709100019],[99.46970360300014,52.71315884200004],[99.30589254800003,52.85702884600016],[99.29116051500012,52.99273169100019],[99.3861765960001,53.058223859000066],[99.55867767300015,53.07914425100017],[99.69532767300012,53.13676648300009],[99.68533359400016,53.235786599000164],[99.5857775390001,53.32818048500013],[99.24783362000005,53.396029980000094],[99.14907853900013,53.56125556400008],[99.0097426420001,53.60921580800016],[98.81957251400013,53.62039307599997],[98.42646762500004,53.714969107000115],[98.27352857000011,53.791241744],[97.85578155600012,53.90195444800008],[97.65940060500009,53.940342391000115],[97.52596255000003,54.01580718000014],[97.58586851500019,54.06409817399998],[98.00614166700018,54.02767444600005],[98.04064962700005,54.11945829700011],[97.82156361000006,54.27517008600012],[97.23001867100015,54.264641745000176],[96.92402656700017,54.32214227200012],[96.77388757000011,54.381713799000124],[96.34008066200016,54.37656362200005],[96.18715652700007,54.4170534110001],[96.09835059800008,54.48814620000019]]]]},"properties":{"objectid":612,"eco_name":"Sayan alpine meadows and tundra","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Palearctic","eco_biome_":"PA10","nnh":2,"eco_id":764,"shape_leng":68.939166447,"shape_area":10.6080339909,"nnh_name":"Nature Could Reach Half Protected","color":"#B36942","color_bio":"#D6C39D","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":81084.8099194351,"percentage":1.6604496244057914}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[96.73206355000008,50.75086360900008],[96.90000151800012,50.804052317000185],[97.05837254900007,50.906115734000196],[96.99812359700007,51.00422725200002],[96.85188252000012,51.05665806800016],[96.85520963300013,51.2036595510001],[96.98635859000012,51.253800431000116],[97.32669051400018,51.28493299900015],[97.90161866400018,51.27801290000019],[98.15790557999998,51.31345225700011],[98.23369558700011,51.39015572300019],[98.23675565200006,51.46674100500013],[97.98541254999998,51.56243769700018],[97.74379765300006,51.53603604300008],[97.58313752400011,51.44626250699997],[97.11411254100005,51.38427347100003],[96.91192661900016,51.3893845880001],[96.64341754700013,51.42366422499998],[96.10636855900009,51.24186024200009],[95.74949662500006,51.25759257200008],[95.55754852800015,51.170898212000054],[95.42598751700018,51.151889899000196],[95.06136366400005,51.18331918700005],[94.10738355600017,51.416202990000045],[93.753379575,51.469303856000124],[93.35933658300019,51.49712557200013],[92.789390636,51.46152176200019],[92.22717263600009,51.353221035000104],[91.69354262500019,51.206730680000135],[91.382606539,51.084787568000195],[91.10887956500011,51.03125872200019],[90.64691952100014,50.90999588500017],[90.81224853800006,50.860381053000026],[91.05956262600017,50.88707674400018],[91.48085753200013,50.962707662000184],[91.74420150700007,51.05523834200011],[91.94621258200016,51.15409065200009],[92.22387653600003,51.253445541000076],[92.50978861800002,51.308363268000164],[93.11785160500011,51.35146200800011],[94.2183225710001,51.156428700000106],[94.53433959900019,51.11119006000018],[95.06011157500012,50.981038047000084],[95.34275857100016,50.87709356200003],[95.68151855200006,50.656402075000074],[95.80738054000005,50.54982550500006],[96.67147060400004,50.18925547600003],[96.90220662900009,50.171829332000016],[97.19963058400003,50.199024584000085],[97.59120158500002,50.30002014800016],[97.64069353800005,50.4513292580001],[97.58825652000019,50.546258335000175],[97.45205662800015,50.62176067500013],[97.31289658300005,50.63450871100014],[96.99871854400016,50.58342989600004],[96.98284959000006,50.430667699000026],[96.93717961700008,50.36365773600005],[96.7848205890001,50.30561708000016],[96.56925966500017,50.31948728500015],[96.42283653300018,50.40435757500006],[96.03923052000016,50.8064133310001],[95.88983952400008,50.86480636300007],[95.86789654000017,50.9155841000001],[96.02864065600005,50.931156335000026],[95.96930667200007,51.05075603500006],[96.18943053700013,51.030888745000084],[96.37486254300006,51.057493409000074],[96.52677950900005,50.884654709000074],[96.73206355000008,50.75086360900008]]],[[[95.835037635,51.664246137000134],[95.75348657900014,51.79410059300005],[95.58954661100012,51.90669352500015],[95.09515363000008,52.018763761000116],[93.83088653000004,51.969713869000145],[92.78070061400007,51.880921016000116],[92.06539151100009,51.801504831000045],[91.68028262200005,51.733438412000055],[90.39098363900001,51.38076363300007],[90.20916758600004,51.26585159600006],[90.17594155400013,51.18532933500012],[90.27850352700005,51.068056451000075],[90.60449954699999,51.11719016100005],[91.24474351000015,51.24818522700019],[91.44167364300012,51.35123284700006],[91.64969655400012,51.39937179400005],[92.11071061700005,51.42678531100012],[92.29560064900016,51.53466191400014],[92.57584354700003,51.59344420100007],[92.72051955500007,51.52149394400004],[92.78649150300004,51.57649062799999],[92.9417265290001,51.620826537000084],[93.15220651200019,51.61849536200003],[94.3126675970002,51.49902139100004],[94.73995958700004,51.42852438800003],[95.21569059500007,51.38372361900019],[95.66549654400012,51.39474464800003],[95.80650362500006,51.52012484400012],[95.835037635,51.664246137000134]]]]},"properties":{"objectid":613,"eco_name":"Sayan Intermontane steppe","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Palearctic","eco_biome_":"PA08","nnh":2,"eco_id":736,"shape_leng":33.0018529914,"shape_area":4.39232356453,"nnh_name":"Nature Could Reach Half Protected","color":"#FCFA58","color_bio":"#FEFF73","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":34011.81656287174,"percentage":0.3210085964758718}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[11.448782466000182,62.49832069400003],[11.27005145600009,62.443951311000035],[11.276626556,62.31040747700001],[11.118624496000109,62.35606839700006],[11.0359745720001,62.26175354600008],[11.132640547000108,62.05285590000011],[11.230675454000107,61.95975793300005],[11.289435445000152,61.79968202300017],[11.464317485000095,61.5806722800001],[11.414645488000076,61.53941839700008],[11.497349559999975,61.45375501100011],[11.63160954400007,61.49372763700006],[11.688174482000136,61.60125287000011],[11.824949540000148,61.603664176000166],[11.613389465000068,61.73058027200011],[11.610255472000176,61.88731750300008],[11.499758519000068,61.94708131100009],[11.602988529000129,62.04263919800013],[11.581057447000092,62.11937853900008],[11.883135537999976,62.23982145900004],[11.924391433000153,62.334906606000175],[11.813046567000185,62.42094030500016],[11.539409447000082,62.49830560600003],[11.448782466000182,62.49832069400003]]],[[[12.142806564000068,63.303996604000076],[12.337270573000126,63.36411949300009],[12.244197585000052,63.41013765000008],[12.049660485000118,63.37486593100016],[11.99922255100006,63.30352386500016],[11.759524595000187,63.30971105000003],[11.575198497000088,63.38534163300005],[11.286647457000015,63.363745492000135],[11.182855523000057,63.3043779800002],[11.323919433000185,63.11731653300012],[11.477324522000117,63.062561247000076],[11.728974569000059,63.07023337100003],[11.787398446000168,62.921213023000064],[11.663116447000107,62.90226506000005],[11.49772255400012,62.96747190800011],[11.0657745850001,63.042819351],[11.122650492,62.97658924000007],[11.281925428000022,62.94034086100015],[11.298823512000183,62.847853768],[11.173013492000052,62.78459185700018],[11.09338843,62.88070311700005],[10.869495558000153,62.91528467000012],[10.543400464000172,62.88668461100008],[10.237391427999967,62.92941538600007],[10.05083457100011,62.83676015100008],[9.879366481000034,62.57416803300009],[9.801581581000164,62.643792982000036],[9.932456450000018,62.77931561600019],[9.675845489000153,62.785251009000035],[9.582109493000132,62.85270202800007],[9.598238454000182,62.97374743900002],[9.530825489000051,63.039581086000055],[9.365023565000172,62.99841839800001],[9.141118454999969,62.99842644400013],[8.968960534000075,62.95508529900013],[8.807229533000168,62.969982121000044],[8.737737521000042,63.057773672],[8.499999589000026,63.04682539700019],[8.39971145900006,62.93926160700005],[8.297114449000162,62.941832840000075],[7.946169527000052,63.07280058000009],[7.865093557000023,63.024466671000084],[7.974266505000116,62.96786116400017],[7.76291547500017,62.93409634300002],[7.688407564000102,62.95848868700017],[7.413796467000168,62.882256116000065],[7.28089351300008,63.011770937],[7.062584498000092,62.97877557500004],[6.895070486000122,62.90981866400011],[6.97084557300002,62.82701686000007],[6.976948437000146,62.71901000200006],[7.344960590000085,62.74850239900019],[7.503466570000114,62.65780853000007],[7.343588472000079,62.59677084100008],[7.076336519000108,62.58669545800018],[7.022584547000122,62.647440115999984],[6.706997510000122,62.642827722000106],[6.234914474000107,62.579477969000095],[6.397894546000146,62.38696895400017],[6.213774475999969,62.353821377000145],[5.96975246300002,62.265762611000014],[5.982859581000071,62.19976585200004],[5.67759854600007,62.16513853400005],[5.447085479000123,62.189450411000166],[5.391520502000162,62.12639905300006],[5.533352530000059,62.09764946100006],[5.500589514000126,62.02695280100011],[5.289268492000019,62.11655937000012],[5.290584451000143,62.1655423740001],[5.091402435000077,62.19439875200004],[5.082582494000121,62.09905359700008],[5.28479456700012,62.06997258400003],[5.271386539000105,61.90280541599998],[5.390510483000185,61.93227166100007],[5.641638505000174,61.90184451400006],[5.913614499000175,61.91083175900019],[5.90149946400004,61.850164214000074],[5.764507482000056,61.83101458300007],[5.680932532000043,61.876967361000084],[5.392817518000186,61.90340438700008],[5.268463435000172,61.81553672800004],[5.114633551000168,61.79850704800003],[4.968958588000021,61.734845655000186],[4.982562584000107,61.625653093000096],[5.174035428000025,61.63819258800015],[5.325861534000126,61.59647283800007],[5.2139205470001,61.50269610600003],[4.935580508000157,61.39921078200001],[5.05686245600009,61.31287332300013],[4.965671541000063,61.24729951600017],[5.083524452000063,61.15704418800004],[5.390698573000066,61.06596039300018],[5.587206425000034,61.14646572300006],[6.165252476000035,61.16879746000012],[6.359054483000023,61.10643207700002],[5.903221442000074,61.112578359],[5.616889427000046,61.01932063400005],[5.606545488000108,60.92323200400011],[5.851448438000034,60.82213082900006],[6.12769752700018,60.901872903000026],[6.293661557000121,60.869392693000066],[6.324198506000187,60.77132861700005],[5.999999567000145,60.74603974500002],[5.999999567000145,60.466239914000084],[5.930961518000061,60.39904940500014],[6.108518559000117,60.35416766600014],[6.547910496000043,60.427302453000095],[6.22920958300017,60.26895925000014],[6.089614517000086,60.17137562400012],[6.139495558000135,60.10440622900012],[6.017466447000118,60.04102278],[5.999999567000145,59.964294839000104],[5.822327527000084,59.93380667200006],[5.812720525000145,59.823668631000146],[5.949592478000056,59.73609433900015],[5.718565433000094,59.66080473200009],[5.527230555000074,59.727271045],[5.234876478000047,59.528864859],[5.346807575000128,59.30624268400004],[5.900555494000116,59.3299217280001],[6.130759436000119,59.30429372400005],[6.154055427,59.24004744200005],[5.915930587000105,59.075750572000175],[6.073097474000065,58.920350086999974],[6.195175535000033,58.92874657500016],[6.295291502000111,58.85844302700008],[6.257962528,58.67839387900017],[6.382191553000155,58.57221226500013],[6.613398474000121,58.53911883500007],[6.707981546000042,58.43453849900004],[6.828020457000036,58.40838042300004],[6.752150487000165,58.30105099100007],[6.773823574000062,58.242878069000085],[6.913276483000061,58.168775339000035],[7.112829481000063,58.24827199100014],[7.156557535000104,58.44480079800013],[7.209999542999981,58.499230531000194],[7.348187455000016,58.514498167000056],[7.340867539000101,58.72132213100008],[7.400127427000029,58.72971543400007],[7.472632566000073,58.56473476899998],[7.69393844700005,58.5838745100001],[7.720359546999987,58.755510238000056],[7.852445433000184,58.74477201400009],[7.858892457000138,58.6362362590001],[7.99164152000003,58.61733372600008],[8.09968156900004,58.653776900000196],[8.15151542600006,58.75237926200015],[8.327238506000128,58.849935563000145],[8.062455526000065,59.10498748900011],[7.955987586000163,59.22694384500005],[7.985543517000053,59.32215053000016],[7.86260145000017,59.385423673],[7.783907449000139,59.62193617100007],[7.906880529000034,59.61541991200016],[8.082485424000026,59.71181749800007],[8.08415543500007,59.54859166800003],[8.284443526000075,59.49821274200002],[8.457189521000146,59.5175804700001],[8.445208429000047,59.61126181700007],[8.501490562000185,59.67150590799997],[8.710129543000164,59.66161760900013],[8.825636528000189,59.68982874800008],[8.934542427999986,59.779533888000174],[8.755239437000114,59.94285493600012],[9.029362539999966,60.070239916],[8.86303155100012,60.28203971300019],[8.958074454000155,60.30581481300004],[9.112016488,60.26407209700017],[9.26079845400011,60.13468417800004],[9.527562581000097,60.157657298000174],[9.576462437000089,60.30276665000014],[9.528781478000155,60.36368582000006],[9.157134428000063,60.446593068000084],[9.02708450700004,60.58538145900013],[8.870404440000073,60.66657662000017],[8.10745243200006,60.49473285300013],[8.036746552000068,60.53811574000008],[8.206648568000105,60.59401498700004],[8.460664491000045,60.618062667],[8.615448571000115,60.66655382100015],[8.982768545999988,60.72601185700006],[9.116212468000072,60.7130145430001],[9.282960541000023,60.60870159000007],[9.38400656400006,60.61750963000003],[9.411740437,60.730193254000085],[9.133756462000065,60.85464104700003],[9.09602851,60.96464648500006],[9.156656492000138,61.0570988770001],[8.969088441999986,61.165745442],[8.961161509000078,61.24000541600009],[9.190976530000114,61.19478856799998],[9.342757542000015,61.05817394000013],[9.53548850900006,61.08283400200003],[9.841434512999967,61.0504148120001],[9.961254489999988,61.11787354300009],[10.205255546999979,61.038749382],[10.267333431,61.07581466099998],[9.936825433000138,61.2478106440002],[9.610209488000123,61.332596109000065],[9.715987430000155,61.369492577000074],[10.021207561000153,61.26586224600004],[10.134807495000018,61.27629570400018],[10.18396953600012,61.39471255000018],[10.067596533000028,61.5039399800001],[9.910678589000156,61.504733076000036],[9.679027427000165,61.545670794000046],[9.43640754,61.5148005800001],[9.418178577000162,61.55644003100019],[9.64250144,61.641465721000145],[9.30935951300006,61.70872127400003],[9.324921522000068,61.74533191800015],[9.141768556000045,61.82644024300009],[8.563397455000029,61.824071349],[8.208914532,61.8814805130001],[8.850413434000131,61.875743436000164],[9.139330428000108,61.896351183000036],[9.090532496000037,62.019735647000175],[8.88729347200018,62.090561388000026],[8.704363464000096,62.11606735200013],[8.144165503000067,62.25378805600019],[8.23198655800013,62.29560604200009],[8.48444244100017,62.24837083200015],[8.620367574000056,62.196469751999985],[9.166015558000026,62.08158889599997],[9.327244483000186,62.01622111500018],[9.616307490000054,61.778186297000104],[9.854345494000029,61.65258616],[10.207515476000026,61.60221393900014],[10.37013747300017,61.4855834440001],[10.409384561000081,61.37727902900002],[10.539995568000165,61.294161563000046],[10.677688444000069,61.10563093500019],[10.758363591999967,61.060326078],[11.011280479000163,61.071045526000034],[11.18371047700009,60.95103896800009],[11.300520512000105,60.99608348400017],[11.192831497000157,61.10610400900009],[11.258324503000097,61.172242758000095],[11.229366536000157,61.259441876000096],[10.952196444000151,61.44579354400014],[10.97435149000006,61.51781052100017],[10.747901468000123,61.7293293570001],[10.601588474000039,61.75136705600016],[10.564232511000114,61.81188674400005],[10.814105427000072,61.79804604300017],[10.874421435000102,61.889495959000044],[10.791569507000077,62.00564265100013],[10.53315459400011,62.13682412900005],[10.37924558400016,62.16894995300004],[10.176481479000074,62.07637384400016],[10.033603557000106,62.129072881000184],[10.377471471000149,62.21399849100004],[10.588256555000157,62.184998280000116],[10.706004525000026,62.288033830000074],[11.074071495,62.43854498400009],[11.087782445000073,62.524875904000055],[11.270161594000115,62.50151771900016],[11.46295743700017,62.589354533000176],[11.707567524000126,62.49843468800003],[11.90181544800015,62.54711661400012],[12.023120530000028,62.399725373000024],[12.10160347500016,62.375314420999985],[12.39910957300009,62.36853111400018],[12.621046443000125,62.283059506000086],[12.623826553000129,62.37225821100009],[12.411002488000065,62.449566516],[12.701683537000065,62.521964534],[12.930016471000158,62.47820094100001],[12.939073452000173,62.57918795500012],[13.083410496000056,62.65608437300017],[13.016957594000075,62.71860230600009],[12.815842544000134,62.81260434500018],[12.857416448000038,62.8587483980001],[13.177569443000152,62.92570706400005],[13.325267462,62.98175567700008],[13.522871500000065,62.98991495700017],[13.486515498000074,62.90133416600008],[13.771763566,62.86831650800008],[13.877929590000178,62.95571142800014],[13.804350561000035,63.015165943000056],[13.646774469000036,62.99744542600018],[13.548103543000138,63.122168816000055],[13.313461551000103,63.094743564],[12.999999495,62.99900647200019],[13.000000501000102,63.15956937100009],[12.834988487000032,63.0589491500001],[12.773432461000027,63.1517800690001],[12.473514554000133,63.16297275900018],[12.294670556000085,63.12289385100013],[12.065461546,63.18492362300003],[12.142806564000068,63.303996604000076]]],[[[16.407447490000038,68.42863739200016],[16.384538574999965,68.53559953000007],[16.133319525000047,68.51009289500007],[16.064722532000076,68.42517348700017],[16.407447490000038,68.42863739200016]]],[[[17.44781450900018,68.84970380800019],[17.351762593000046,68.90831560700002],[17.09886146300005,68.86032418200017],[17.24701143400017,68.78636930900007],[17.44781450900018,68.84970380800019]]],[[[15.863604465000094,68.94291794700013],[15.603464556000063,68.93851443000017],[15.554920596000045,68.84150211500008],[15.447238454000058,68.80397113800007],[15.434196548000102,68.66015628700018],[15.169560586000102,68.56093081400007],[15.220946514000104,68.36627921800005],[15.615935487000115,68.31431208900005],[15.664903571000082,68.3695441370001],[16.03894449200004,68.48833280400004],[16.19925157600005,68.55977880600017],[16.46245054400015,68.57303947899999],[16.534891478000134,68.65882138500018],[16.451400513000067,68.83218563000008],[16.165546434000134,68.85940133400004],[15.960355433000188,68.75476618100015],[15.853363456000181,68.78211884600017],[15.863604465000094,68.94291794700013]]],[[[17.756422438000186,69.52916937800006],[17.335580491000144,69.53188595300003],[17.27595347500005,69.39821924000006],[17.07721352200008,69.33192375000016],[17.13301453300005,69.23395707200007],[17.04845655300005,69.16156492100009],[16.7866035510001,69.10927039400013],[16.763494476,69.06521544700018],[17.15727058800013,69.06524679500012],[17.3671955210001,69.13066436400015],[17.84249352000012,69.13897284200016],[17.9140515040001,69.17100361400009],[17.88509152500012,69.28843391000015],[18.015319479000027,69.32957346500012],[18.038621505000037,69.47689798600015],[17.756422438000186,69.52916937800006]]],[[[18.773599582000145,69.8743430240001],[18.69248153500007,69.76476372200017],[18.357780573000014,69.79661746900013],[18.214002435000054,69.63887172700015],[17.971353547000092,69.55505822700007],[18.248235469000065,69.50248139800004],[18.74581944,69.55819406500018],[18.7387504780001,69.6606472410001],[18.918750508000187,69.69579809300006],[19.006935506000104,69.77214952000003],[18.773599582000145,69.8743430240001]]],[[[19.500001463000103,69.8389254600001],[19.703189525000028,69.85774115600015],[19.848669525000105,69.97080783400014],[19.746200591,70.01054308400018],[19.43153958700003,69.87048315800013],[19.500001463000103,69.8389254600001]]],[[[19.167295563000096,70.06980431300008],[19.053962509000087,70.07882290500004],[18.768159559000082,69.99957921900011],[18.6671945060001,69.916414814],[18.94161248400019,69.84963770000002],[19.06927456900013,69.77527747800002],[19.34919543500007,69.82279616400012],[19.45377157900009,69.93600784800003],[19.609790481000175,70.00652966100017],[19.438409562000118,70.05266063900001],[19.167295563000096,70.06980431300008]]],[[[20.649446548000128,70.22903163900008],[20.34993549900014,70.17088386299997],[20.280410462000077,70.08086775400005],[20.474206601000105,70.03023619800013],[20.666221586000063,70.04395469100018],[20.73327245300004,70.19840483600007],[20.649446548000128,70.22903163900008]]],[[[19.61158554900004,70.22286591200003],[19.546398483000132,70.19990117300017],[19.693147502000045,70.06260224600004],[19.840375463999976,70.04759394600012],[20.048957449000056,70.09621099600014],[19.783588573000145,70.20223469500013],[19.61158554900004,70.22286591200003]]],[[[22.737138573000152,70.34379883700007],[22.491338592000147,70.38851796700004],[22.40383152300012,70.29930970700019],[22.657218467000177,70.2584061870001],[22.737138573000152,70.34379883700007]]],[[[23.41166150300012,70.64484964200011],[23.31834057800006,70.5389625680001],[22.991966535000017,70.5151500840002],[22.78704844800012,70.41816727300005],[22.892265473000123,70.35413741200011],[23.147441451000077,70.28321058500006],[23.525861581000072,70.42366865200006],[23.586759461000156,70.50340737300019],[23.41166150300012,70.64484964200011]]],[[[23.432649453000124,70.81356058900008],[23.126407568000104,70.83043839000004],[22.993783564000182,70.70503405400012],[22.29877844800012,70.69912095700016],[21.925615447000155,70.67228595799997],[21.955059565000113,70.5942108770002],[22.18201652500005,70.61770987800003],[22.115205548000176,70.48074706500006],[22.87100058500016,70.53481989600004],[23.026510537000092,70.58685525400011],[23.2652145670001,70.74679252800001],[23.432649453000124,70.81356058900008]]],[[[28.539346599,70.77773130600019],[28.373525564000033,70.56436275200014],[28.01743348300016,70.46892137300017],[27.84827058400009,70.52465667100012],[28.13486260600007,70.60389314899999],[28.264036451000038,70.68397569600018],[28.25531759500018,70.75394111800017],[27.97902156800012,70.74502947800016],[27.669408481000062,70.81890958500014],[28.15054145800002,70.82080875600019],[28.416646600000092,70.92631495700016],[28.451385566000113,71.01186032500016],[28.217885524000053,71.03583357400015],[28.12350445600015,71.1241947600002],[27.819564577,71.06063814100014],[27.452465548000134,71.11986047700015],[27.42058548300014,71.02371686300006],[27.1498184940001,71.03348345600017],[27.045680555,70.94819725600013],[27.398261457000103,70.90150972000009],[27.231246504000126,70.78504099600013],[27.017652477000183,70.73381365400013],[27.046545568000056,70.62521050800018],[26.922000545000117,70.61202678000018],[26.957141506000028,70.48422605800005],[26.43562653100014,70.4516164310001],[26.521404581000013,70.55475642100015],[26.646055551000188,70.91668582600005],[26.436782563000065,70.95233976000009],[26.076328539000087,70.77689143900005],[25.92741045100007,70.61345270900011],[25.601900582000155,70.49354991900009],[25.319833446000132,70.34840737500019],[25.45130946500018,70.31282250800012],[25.253019452000103,70.21975270500008],[25.22810759800018,70.14333271400011],[25.093126602000098,70.08378197500019],[24.881271485000127,70.1086406880001],[24.89349950800016,70.22433157100005],[25.064025472000083,70.346897124],[25.166982569000027,70.52892976499999],[25.321252502000107,70.67647556900016],[25.59473958600006,70.7229725000002],[25.793081567000172,70.87009803500013],[25.280960526,70.94371796700017],[24.76599148200006,70.95340057400011],[24.491786572000024,70.9895128300002],[24.538343518000147,70.87641514000012],[24.20779746600016,70.78980912600014],[24.54447555100012,70.71756969300003],[23.99422456100018,70.69656430800012],[23.69557953000009,70.75804607100008],[23.56375549500018,70.71940113900018],[23.581684553,70.62984167700012],[23.709188556000072,70.51943021900007],[23.689832562000106,70.4542185090001],[23.45724246000003,70.36493430900003],[23.151723598000103,70.20338016600016],[23.306983602000116,70.12984388500018],[22.920171511000035,70.03665271200009],[22.86194745900019,70.21402350700015],[22.56080059700014,70.21778480200004],[22.405719462000093,70.25942157100013],[22.084465589000047,70.28456862100018],[21.90206950800018,70.33082868000014],[21.747432447000108,70.23532594600016],[21.433279554000137,70.30024881500009],[21.205423550999967,70.2428032740001],[21.19703443900005,70.17072410300011],[21.7462215970001,70.04648015800018],[21.82151455700017,69.99081309000013],[21.801321546000167,69.83910935900013],[21.355419552000114,70.00657559400014],[21.144767573000024,69.98786735300007],[21.13577245000016,69.89491338800019],[20.96370656200014,69.83027382700004],[20.822769554000047,69.91626125700003],[20.696992557999977,69.7999910170002],[20.39677457900018,69.74951888400005],[20.409851522000054,69.57397232700009],[20.227298532000134,69.36358756300018],[20.203763489000153,69.67008526400019],[20.328165517000116,69.88626896400012],[20.200666543000068,69.96234630200007],[19.904731549000132,69.83851307000009],[19.725864585000124,69.67368663200011],[19.607358556000122,69.80729249300015],[19.104629437000085,69.72606464300003],[18.914703558000042,69.58949896400003],[18.43175858000012,69.48683238500013],[18.437509572000067,69.42802897600006],[18.636955449000027,69.28799101100003],[18.507984446000137,69.25863909400016],[18.336439577000135,69.35986415400004],[18.342323506000184,69.43584208300001],[18.107746557000098,69.44432557500011],[18.128847496000105,69.35717926300003],[17.978214470000125,69.27415030900005],[17.9721714530001,69.1412160070002],[17.78382455600007,69.10701968600011],[17.49548943400015,69.00030112700017],[17.48335646099997,68.81786498100007],[17.2561435180001,68.76940031400017],[17.200553562000096,68.71927955000007],[16.98577349600015,68.70865213500014],[16.57818249900015,68.63104862000006],[16.42486944300009,68.51159577100009],[16.65200057900006,68.44324822300018],[16.86314357000009,68.46939573800012],[17.047239501000035,68.44552240100006],[17.449600525000164,68.48039028000011],[17.41949457300018,68.40767844400011],[16.952417544000184,68.35108048100005],[16.700584436999975,68.40887672000014],[16.46450243400011,68.40873841900014],[16.120195477000095,68.28561664300003],[16.221242505000134,68.21055468900005],[16.415166552000073,68.19886578900014],[16.201324588000148,67.99736232200013],[16.062093465000032,68.04977184800003],[16.101076523000188,68.1854751960002],[16.021402510000087,68.2466436430002],[15.834658568000123,68.18491042300013],[15.637593487000117,68.18266692300011],[15.494866439000077,68.06452802100017],[15.904240435000077,68.03621311400013],[15.87415057600009,67.96905579700007],[15.668855471000029,67.98279742400007],[15.181301453000174,67.91940894599998],[14.763738505999981,67.82902604600014],[14.763351597000053,67.74628895000018],[14.910635550000109,67.67244790400014],[15.330763527000045,67.74325168400003],[15.129591481000034,67.61674177500004],[15.206215487000065,67.56057916800012],[15.556058524000036,67.52388017800018],[15.686219589000189,67.45261002900014],[15.678812502000085,67.34361846600007],[15.562044544000116,67.26740450200015],[15.68323546400012,67.20646538400007],[15.381705550000163,67.18252985300018],[15.047109530000114,67.24283597000004],[14.754594520000182,67.24570543100003],[14.536172516000136,67.18074501100011],[14.318735554000114,67.16695828900015],[14.233779433999985,67.07119605100019],[13.54796557700007,66.93065567400015],[13.735564473000125,66.83491690600016],[13.510821508000106,66.80083508200016],[13.509233473000108,66.71696793800015],[13.258444583000085,66.73216667500009],[13.195012519000102,66.51270330400018],[12.985191522000036,66.52897023100007],[13.126639491000049,66.39590751800017],[12.990709496000079,66.34521494100011],[13.295470467000087,66.23710029200015],[13.672954506000053,66.24242665700001],[14.000000442000157,66.30528791300003],[13.999999437000156,66.4183234090001],[14.346398517000182,66.39611337800017],[14.465507541000079,66.42985204700005],[14.742016468000031,66.43704640200019],[14.776134502000161,66.39319044000007],[14.443533543000058,66.29786439700007],[14.195406578000075,66.2831306870001],[13.902541539000026,66.21521832800005],[13.76890047500018,66.0848638080002],[13.626030432000107,66.1049837290002],[13.446839592000117,65.95812557600016],[13.380393563000098,65.8394064790001],[13.277254580000033,65.8028746240002],[13.334077513000011,65.64332878500005],[13.531616507000024,65.54974232200004],[13.718358437000063,65.54487428000016],[14.00391244399998,65.59726067200012],[14.270977482000092,65.5141643280001],[13.959280486000182,65.42845148900005],[13.967782586000055,65.51681166800012],[13.80263059500004,65.50815215600005],[13.722677464000071,65.44223083500009],[13.551412551000169,65.4916793700001],[13.380167587000074,65.410392678],[13.247360522000179,65.59338437700012],[13.18604555900015,65.76885432300008],[13.10654052500007,65.87485438600004],[12.839683526000101,65.9592474100001],[12.359048434000158,65.62461300100011],[12.420678556999974,65.54605679900004],[12.67216247400006,65.43981181800001],[12.351341442000034,65.453530478],[12.144325532000153,65.36091296300009],[12.117238574,65.20991951500014],[12.361084566000045,65.26600618200013],[12.36959957400012,65.07366732000014],[12.140944440000169,65.176585021],[11.983086549000063,65.15552012500007],[11.543013498000107,64.94372468700016],[11.284056443000054,64.86464998000008],[11.242652523000174,64.80149904500018],[11.583631530000162,64.81000567100006],[11.66677850100001,64.86062180500011],[12.063297507000073,64.95662745300012],[12.406241567000052,64.91399139400016],[12.464467463000062,64.85628769000004],[12.298318528000152,64.67227373500009],[12.53777944400008,64.64630995100015],[12.767711477000034,64.74496210200004],[12.819351544000028,64.82327388800013],[13.047233531000188,64.92073681400012],[13.261857526000085,65.04578089600011],[13.313635560000023,64.98555189200016],[13.100298522000116,64.8689842620002],[12.978106467000089,64.74645022500016],[13.14948855900019,64.7027312240001],[13.345324518000098,64.77210857200015],[13.49153257000006,64.75975599300011],[13.68053157900016,64.66920662900014],[13.9808035370001,64.7517985500001],[14.122329458000024,64.87051027100006],[14.151018533000126,64.95455947000016],[14.913303510000105,64.7822332400001],[15.140861451999967,64.895939457],[14.902996451000035,65.03171924700007],[14.661944482000138,65.07404903200012],[14.625997517000087,65.12942558400005],[14.905971524000051,65.13688782500009],[15.22660245500009,64.97855434400009],[15.453640551000149,64.95297227300006],[15.499999517000049,65.05833916600005],[15.634641548000047,65.12677070000012],[15.618449555000154,65.24590906000014],[15.912106516000165,65.25336359],[15.999999488000014,65.4140614370001],[15.826719565000019,65.45263043000017],[15.426598520000084,65.45775780800005],[15.392195501000117,65.54504191799998],[15.572070473000167,65.59262128900008],[15.726412491000076,65.5325522120001],[15.901336441000126,65.55719634800005],[15.82231454000015,65.657459501],[15.887774521000154,65.68967199300005],[16.582101541000043,65.55979088300006],[16.60692957700013,65.6096662240002],[16.373517545000084,65.64480903000003],[16.365343513000028,65.7167193890001],[16.63132259200006,65.72434155600007],[16.52074249000009,65.8714132790002],[16.67441144100019,65.90653278300005],[17.283182532000183,65.76919714299999],[17.364841547000026,65.85916765400009],[17.188079446000017,65.950427134],[17.125232439000058,66.17830560000016],[16.904546484000036,66.25423726100007],[17.100536503000058,66.28292482800003],[17.312553558000104,66.37404734700004],[17.764732592000144,66.39306823200008],[17.921174445000133,66.44731591000004],[18.143600484000046,66.42702114300016],[18.412347434000026,66.46720717200009],[18.809005579000143,66.46536885300014],[18.86985953700014,66.5255452180001],[18.587207513000067,66.68408422300007],[18.36141345800013,66.71158960600013],[18.05459959200016,66.71125365900014],[17.828206566000176,66.78579643900014],[17.654891439000096,67.03487843800008],[17.910181579000096,67.05110027000006],[17.941995596000083,66.95842827200016],[18.21504950300016,66.95092093700009],[18.291561527000056,67.03590840600003],[18.256313444000114,67.14995124000012],[18.52773656900007,67.15547558500009],[18.708202465,67.04321759300018],[18.721755499000153,66.96975088300002],[18.948028496000063,66.94168055900008],[19.417020454000124,66.97324513000007],[19.401252586000055,67.03690836700008],[19.138698521000094,67.084693765],[18.982353563,67.23921213800003],[19.537008572000104,67.22128995300017],[19.752744510000127,67.25089349400002],[19.769371524000064,67.39841566100012],[19.900598600000023,67.39197618000014],[20.075424481000027,67.3127477490001],[20.530706496,67.32960979100017],[20.25880845300003,67.41907772200005],[20.236879550000083,67.49093393400017],[20.386793577000162,67.56756012000005],[20.33011850000014,67.68636488000004],[20.039590504000103,67.73825422500016],[20.069395546000067,67.78067537300007],[20.422422533000088,67.75645921600005],[20.344171599,67.93800285700007],[20.48163447600018,68.05393731900017],[20.627517478000073,68.07077605900008],[20.94617849300016,68.03167414600011],[20.970979538999984,68.13298252200013],[21.188726464000013,68.20208544600018],[21.182201488000146,68.25238927000015],[21.005817579,68.33064037100013],[21.037231443000053,68.41169153100003],[21.320764573000076,68.34631201600013],[21.42570650400006,68.3817748420002],[21.259325558000057,68.49870255900015],[21.58853955800015,68.49863332500013],[21.605220551,68.55974779300016],[21.35863853799998,68.64932133600013],[21.094106512000053,68.83535985700007],[21.18182145200018,68.90070115100008],[21.65768254800014,68.87859036100014],[21.76742546500003,68.92957295100013],[21.609268507000138,68.992419288],[21.328659488000028,68.9987137620002],[21.314374546000067,69.04957448000005],[21.697128455000097,69.02091742400006],[21.769552457000145,69.06569690300006],[21.282825565000167,69.148747147],[21.51791146200003,69.222100367],[21.62641754599997,69.1708046280001],[22.025459505000185,69.07978135000002],[22.25471645900012,69.10531095100004],[22.387413554000148,69.053137962],[22.48449359400007,68.94098658899998],[22.68441958700015,68.8988475770002],[22.839687471000104,69.04469151800015],[23.175909580000166,69.15701757100004],[23.298372538000137,69.24892715100009],[23.35937150300009,69.38652262900013],[23.609830481000188,69.5430484690001],[23.725360599999988,69.54307143500006],[23.766426561000117,69.42211554300007],[24.00841344700018,69.495606394],[23.914089544000092,69.63885596900008],[23.966163458000153,69.72463066700004],[24.19196656600019,69.76873138000019],[24.376598603000105,69.71402521200014],[24.399555462000023,69.65579495700007],[24.30282544900018,69.45346654300005],[24.480476535000093,69.44473092400017],[24.793893497000056,69.5231422870001],[24.994382586000143,69.64961447700011],[25.329357468000126,69.74274379200006],[25.667913601000066,69.70263437300008],[25.834203520000074,69.65256742200006],[26.01066554800019,69.67420480200013],[26.26980046700004,69.63066232300014],[26.524435477000168,69.62427598400012],[27.092372450000028,69.67137456800009],[27.29519656900004,69.7312151540001],[27.37077552000011,69.91346170200012],[27.685386568000013,69.93867781900008],[27.696281533000104,69.76197070400019],[27.895156603000146,69.76646474500018],[27.94772354100013,69.90814321700014],[28.261640568000132,69.98403732700007],[28.24698246300011,69.72026671200018],[28.364231542000027,69.61954439900006],[28.50822844800001,69.62263514200009],[28.674419460000138,69.72336466400014],[29.184293480000065,69.64274014300008],[29.25683550000008,69.59451134300002],[29.169614589000105,69.48883834200012],[29.387994515,69.41401326],[29.76471161000012,69.5041673340001],[30.06177346700008,69.51868713800013],[30.11575560600005,69.62677127600017],[30.093914545000075,69.69767446600014],[29.622869524000066,69.72813279300004],[29.696557517000144,69.89785040700008],[29.4168894500001,70.01451141200005],[29.12131655400009,70.01579250200018],[29.02942457600011,70.05884095100015],[28.559530557000073,70.13147617700008],[28.67775160200017,70.18786107200003],[28.98934751100012,70.13214807000014],[29.892797484000027,70.07443565000005],[30.253915522000057,70.14079266200008],[30.244106516000045,70.19388833100004],[30.474298555000075,70.26039739200013],[30.77978355500005,70.29065740300018],[30.317878495000173,70.29467803500012],[30.102754603000164,70.22481906300004],[29.962270553000053,70.2987836580001],[29.694463549999966,70.329829222],[29.57603647800005,70.42015059900001],[28.989156572000013,70.47656583700012],[28.797735528000146,70.55767835200004],[28.845893585000113,70.63484734900004],[28.726213587000075,70.73865101800016],[28.539346599,70.77773130600019]]],[[[25.595321458000058,71.1766881050001],[25.590818532000185,71.1282918340001],[25.28688653200004,71.11474131400018],[25.48143151100004,70.95314861400004],[25.8954044890001,71.03009599400002],[25.960245551000128,71.12639970300012],[25.595321458000058,71.1766881050001]]]]},"properties":{"objectid":617,"eco_name":"Scandinavian Montane Birch forest and grasslands","biome_num":11,"biome_name":"Tundra","realm":"Palearctic","eco_biome_":"PA11","nnh":2,"eco_id":780,"shape_leng":344.908355936,"shape_area":47.9862591901,"nnh_name":"Nature Could Reach Half Protected","color":"#62C8CA","color_bio":"#9ED7C2","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":243811.22439361355,"percentage":2.8532099200860492}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-62.239969431999896,-63.307211450999944],[-61.97111562199996,-63.304954738999925],[-62.02528350299991,-63.22689440999994],[-62.256721892999906,-63.27514444699989],[-62.24913161599983,-63.28212687899992],[-62.23910054299995,-63.30563457799997],[-62.239969431999896,-63.307211450999944]]],[[[-60.6463512279999,-62.92137110799996],[-60.56385907099997,-62.998772449999876],[-60.57795780599986,-62.981985705999875],[-60.57868701999996,-62.98182660999987],[-60.6463512279999,-62.92137110799996]]],[[[-60.50987712999995,-62.97050700199986],[-60.515556559999936,-62.878544022999904],[-60.70305654899994,-62.89604677799991],[-60.74748669499991,-62.945588528999906],[-60.62213238999993,-62.9086046569999],[-60.51389969299987,-62.96929646499996],[-60.50987712999995,-62.97050700199986]]],[[[-62.64856060499994,-63.08074470299982],[-62.35556049599995,-62.984108560999914],[-62.355025299999966,-62.889509449999935],[-62.36280862799998,-62.890798006999944],[-62.378227163999895,-62.893313366999905],[-62.396589087999985,-62.896308906999934],[-62.44543679899988,-62.906284924999966],[-62.454768893999926,-62.90876358599991],[-62.47393940699993,-62.91385539099991],[-62.47590370099982,-62.91437711899994],[-62.48178271499995,-62.916481431999955],[-62.49682257499995,-62.92383804499997],[-62.51487412099988,-62.94601296399986],[-62.516356535999876,-62.95452913999998],[-62.520886871999835,-62.96307280799982],[-62.523984104999954,-62.96762702799998],[-62.57689933199998,-62.98904816099997],[-62.58979330799997,-62.99535202399994],[-62.60890313699997,-63.00574017199989],[-62.616524408999965,-63.01119129699998],[-62.61965707199988,-63.01356502299984],[-62.631708592999985,-63.02655405099995],[-62.636693202999936,-63.030709259999924],[-62.642086294999956,-63.034829784999886],[-62.64294331499997,-63.03571594899995],[-62.64856060499994,-63.08074470299982]]],[[[-61.32090656199989,-62.7110263429999],[-61.43666854299988,-62.731870607999895],[-61.41389457699984,-62.812707022999916],[-61.25083483399993,-62.77095867199995],[-61.242406909999886,-62.76787408399997],[-61.22304676699986,-62.73282563699996],[-61.32090656199989,-62.7110263429999]]],[[[-60.14033729299996,-62.461375792999945],[-60.323615502999985,-62.5343671519999],[-60.56166859399997,-62.545475352999915],[-60.804677692999974,-62.457913901999916],[-60.808847771999865,-62.481600912999966],[-60.8147276389999,-62.54381255099992],[-60.946945623999966,-62.600203983999904],[-61.17167964399994,-62.57561726999995],[-60.985675865999895,-62.64566511199985],[-60.81288052299993,-62.66628775399988],[-60.79871444999998,-62.667259576999925],[-60.69306163199991,-62.62103267799995],[-60.34777851799993,-62.63520892299994],[-60.34726412999993,-62.639577850999956],[-60.35283215199985,-62.65104249399997],[-60.36455389299988,-62.65667514099988],[-60.37147672599991,-62.660001769999894],[-60.40222331799998,-62.68854541399986],[-60.39662772899993,-62.69278978199992],[-60.37771393699995,-62.69716474899991],[-60.36298970299998,-62.697203156999876],[-60.32943294699993,-62.68856297599996],[-60.29651840299988,-62.70169301399994],[-60.330794979999894,-62.730386246999956],[-60.326083533999906,-62.73682288799995],[-60.29012136899996,-62.756740063999985],[-60.158682884999905,-62.731963677999886],[-60.14804525499994,-62.72719289099996],[-60.11786608999989,-62.71403175099988],[-60.10553038799986,-62.712196682999945],[-60.060405826999954,-62.705555921999974],[-60.00995678299995,-62.690861599999835],[-59.83315126899993,-62.62395897399995],[-59.82678086999988,-62.62046749799998],[-59.820349361999945,-62.61537353499995],[-59.81805759799994,-62.609591051999985],[-59.9586184879999,-62.61436453899995],[-60.12735123099992,-62.45955319999996],[-60.14033729299996,-62.461375792999945]]],[[[-59.647698687999934,-62.48449526599995],[-59.74750550399989,-62.433807447999925],[-59.97355810899995,-62.444214029999955],[-59.97925759999998,-62.45116869299994],[-59.79159148499991,-62.528650675999984],[-59.79004181399995,-62.52874940099997],[-59.77317277799989,-62.531720433999965],[-59.75705786299994,-62.5366644849999],[-59.73200405099993,-62.54506715299988],[-59.71291411499993,-62.55051022699996],[-59.66985512999997,-62.55554060399999],[-59.626004439999974,-62.546252953999954],[-59.583528310999895,-62.52181631399998],[-59.58081259099998,-62.52249558799997],[-59.61680366599995,-62.47477934799997],[-59.619753984999875,-62.47502084399997],[-59.64160033299993,-62.48107018899998],[-59.647698687999934,-62.48449526599995]]],[[[-59.378985359999945,-62.43934011899995],[-59.335555581999984,-62.36380464299987],[-59.61818108599988,-62.328046559999905],[-59.62447999099993,-62.332147307999946],[-59.64301052399992,-62.34224569999998],[-59.648008929999946,-62.343690692999985],[-59.67537676799998,-62.36009250699993],[-59.677361067999925,-62.36448877299989],[-59.49166852899998,-62.45547550599997],[-59.38214282399997,-62.439444627999876],[-59.378985359999945,-62.43934011899995]]],[[[-59.01611926099997,-62.23629711999996],[-59.208892619999915,-62.28407131499989],[-59.208892619999915,-62.2860927399999],[-59.03472857399987,-62.34601991999995],[-58.82891032099997,-62.31217340899991],[-58.82823566199994,-62.3118910419999],[-58.97543930799992,-62.2440550959999],[-59.01611926099997,-62.23629711999996]]],[[[-57.63766982699991,-61.93494304199993],[-57.68694249099997,-61.89097849599989],[-57.6904942619999,-61.893910089999906],[-57.752311325999926,-61.912698923999926],[-57.76266029899983,-61.919365024999934],[-57.984375522999926,-61.90431404799983],[-58.00535437499997,-61.906499086999986],[-58.02318533899995,-61.91027361799996],[-58.029159947999915,-61.91217576299988],[-58.22611262799984,-61.950449410999965],[-58.355055937999964,-61.93206883099998],[-58.35770012399996,-61.931709792999925],[-58.391446214999974,-61.934917208999934],[-58.393025835999936,-61.93526048599989],[-58.475585758999955,-61.96546262399994],[-58.476398548999896,-61.96581089599988],[-58.49194572099992,-61.97043392599994],[-58.49336967299996,-61.9707068269999],[-58.53981525899985,-61.98446068699997],[-58.54104649599992,-61.9853359089999],[-58.65553336499994,-62.006505828999934],[-58.658296127999904,-62.00852207599996],[-58.76618026699998,-62.06681560699991],[-58.76713884499998,-62.06722802999997],[-58.78805737199991,-62.0779715569999],[-58.79527983399993,-62.082064741999886],[-58.90313105499996,-62.14263708899995],[-58.95329761099998,-62.21796254499998],[-58.93026815199988,-62.216460665999875],[-58.916258925999955,-62.21367395699997],[-58.75784121299995,-62.213770844999885],[-58.71478478799992,-62.235478891999946],[-58.509198312999956,-62.23190888299996],[-58.500191715999904,-62.230051866999986],[-58.473030585999936,-62.223295445999895],[-58.429261126999904,-62.20767737099993],[-58.544801041999904,-62.16425212699994],[-58.54712597399998,-62.16416107799989],[-58.52148424799998,-62.1234386779999],[-58.51909222199993,-62.12268326799983],[-58.415280759999916,-62.088378354999975],[-58.41379400299991,-62.06226026499996],[-58.30738526199997,-62.06834086999993],[-58.29445443599997,-62.07138827099993],[-58.285567845999935,-62.09351481999994],[-58.313095072999886,-62.09382933599994],[-58.36253833999996,-62.104048345999956],[-58.36961423699995,-62.11778699099989],[-58.18742501099996,-62.160037717999955],[-58.17436704799985,-62.15146211699988],[-58.141149037999924,-62.141788301999895],[-58.12506288399999,-62.140283469999986],[-58.08389251799997,-62.06212586499993],[-57.9263915279999,-62.06823711099997],[-57.735839519999956,-61.996563121999884],[-57.633946041999934,-62.013711239999964],[-57.630039889999864,-62.0139852559999],[-57.639095082999916,-61.93634233299997],[-57.63766982699991,-61.93494304199993]]],[[[-54.02129313199998,-61.13909271099982],[-54.12472552699995,-61.1529166869999],[-54.192517672999884,-61.252190561999896],[-54.1820730579999,-61.255104338999956],[-54.05944860599993,-61.26931517099996],[-54.01015190499999,-61.19616823599989],[-54.00671711299998,-61.178644562999864],[-54.02152225599991,-61.140238957999884],[-54.02129313199998,-61.13909271099982]]],[[[-55.34994861699994,-61.06157660299982],[-55.477568137999924,-61.108054222999954],[-55.37890008299996,-61.16431861499996],[-55.357455882999886,-61.235921523999934],[-55.26302677399991,-61.27437584199993],[-55.242512885999986,-61.277700303999836],[-55.22934140899997,-61.27718464599997],[-55.215869064999936,-61.27532536799998],[-55.20986539099994,-61.273129586999914],[-55.201097171999834,-61.2691103869999],[-55.17818606099996,-61.248454494999976],[-55.17220527799992,-61.24238243399998],[-55.17012641699995,-61.240640133999875],[-55.13697276499994,-61.21877254999998],[-55.01844095599995,-61.15724974699998],[-55.01082813499994,-61.15600290099991],[-54.977634878999936,-61.15150245099994],[-54.97447680199997,-61.151390481999954],[-54.824224579999964,-61.14556824699986],[-54.8203855189999,-61.145068042999924],[-54.66239992599998,-61.10627755199994],[-54.8612086309999,-61.09836294999991],[-54.88044691999988,-61.097377835999964],[-54.88639488999996,-61.096550176999926],[-55.09362968799991,-61.09586936099993],[-55.09615621699999,-61.095184093999876],[-55.11031205599994,-61.09134462299994],[-55.11376022999991,-61.09040937899988],[-55.27466409199991,-61.077066988999945],[-55.280346615999974,-61.07730428499997],[-55.34994861699994,-61.06157660299982]]],[[[-44.81072973299996,-60.71606769699997],[-44.76120920599993,-60.74912897999991],[-44.73740420199994,-60.7449767949999],[-44.69671023699988,-60.77322998799997],[-44.70812519699996,-60.74704060599987],[-44.70409068399994,-60.74368384799993],[-44.7419025989999,-60.73242168099989],[-44.771925633999956,-60.731855681999946],[-44.81072973299996,-60.71606769699997]]],[[[-44.532233076999944,-60.67792494199995],[-44.54996758999994,-60.69471596999995],[-44.56410019699996,-60.68991676599995],[-44.595341462999954,-60.71863972199998],[-44.61042332299991,-60.71225247999996],[-44.6152073319999,-60.70797286599998],[-44.64945918899991,-60.685005375999935],[-44.729195637999965,-60.730159796999885],[-44.69797098299995,-60.741914633999954],[-44.64847009699997,-60.7424618899999],[-44.63968491399987,-60.74294468299996],[-44.60229888299989,-60.74466877599991],[-44.6012012459999,-60.7439698689999],[-44.56956297299996,-60.745793438999954],[-44.56273906699988,-60.74425448199992],[-44.507861996999964,-60.72868925599988],[-44.50651443599986,-60.72754500899998],[-44.44896768899986,-60.72165336899997],[-44.44504621699991,-60.72110881899994],[-44.42618338799991,-60.721170573999984],[-44.42214470199997,-60.71864394499988],[-44.438051704999964,-60.71006350399995],[-44.44845632199991,-60.70711217299993],[-44.484295940999914,-60.692130249999934],[-44.49072519199996,-60.6893443269999],[-44.49516109399991,-60.68810843799997],[-44.500038708999966,-60.6860186319999],[-44.52243910399994,-60.68442551999982],[-44.528489993999926,-60.685265852999976],[-44.53205437999998,-60.681708931999935],[-44.532233076999944,-60.67792494199995]]],[[[-45.02305557699998,-60.647099179999884],[-45.03584098999994,-60.63057393899993],[-45.050975501999915,-60.695187887999964],[-45.04572219699992,-60.69870072099985],[-45.02348912799994,-60.723797779999984],[-45.02088954599998,-60.72399234699992],[-45.015934322999954,-60.72421556599994],[-45.007395330999884,-60.723606531999906],[-44.99472859999997,-60.70872362799986],[-44.999403148999875,-60.69952944599993],[-45.01989425199997,-60.67027334399984],[-45.02257223199996,-60.66460140399994],[-45.02305557699998,-60.647099179999884]]],[[[-45.6981735469999,-60.517414548999966],[-45.90637572899993,-60.52552619599993],[-45.91971446599996,-60.52280801699993],[-46.01697416899992,-60.60533283099994],[-46.02004860999995,-60.612575174999904],[-45.819570840999916,-60.585193010999944],[-45.809644023999965,-60.582330163999984],[-45.74113396199988,-60.62228792599984],[-45.7411386579999,-60.622394016999976],[-45.683237771999984,-60.63906750099994],[-45.65336276799991,-60.63903222499988],[-45.61347176399988,-60.64168599599998],[-45.60128198199993,-60.64598599799996],[-45.58593879799997,-60.64709050099998],[-45.57154160099998,-60.655802979999976],[-45.474016838999944,-60.660465742999975],[-45.376424672999974,-60.670107531999975],[-45.361620148999975,-60.67429320799988],[-45.343701721999935,-60.686626898999975],[-45.279851710999935,-60.70156745999998],[-45.26869684999997,-60.70196193499993],[-45.255608521999875,-60.70667588299989],[-45.22377753699982,-60.72369267599993],[-45.15897335299991,-60.752650438999865],[-45.15145286599994,-60.75304877999997],[-45.15298888399991,-60.75025216999995],[-45.16352325499997,-60.7360338229999],[-45.16445686099996,-60.73229906099988],[-45.16887197999995,-60.72647777099996],[-45.16793070899996,-60.70188158899998],[-45.167457190999926,-60.69698429299996],[-45.16724293899989,-60.682484840999905],[-45.18903145199994,-60.666209925999965],[-45.21614825699987,-60.65264227499995],[-45.22424271299991,-60.648906844999885],[-45.21958695699993,-60.63710755999989],[-45.22658174899993,-60.634695925999836],[-45.23179767899995,-60.63440316999993],[-45.25072191899994,-60.62867911599983],[-45.23864356099989,-60.627025255999854],[-45.22846430699991,-60.62536175799988],[-45.38211332399993,-60.606478866999964],[-45.386007021999944,-60.60270509599985],[-45.39185911499993,-60.58734849399997],[-45.393989482999984,-60.58264988999997],[-45.42361449299989,-60.54845389499985],[-45.68092755599997,-60.52264110599998],[-45.6981735469999,-60.517414548999966]]],[[[-26.354446456999938,-58.38615169999986],[-26.420001489999947,-58.454764953999984],[-26.243614562999937,-58.49282214699997],[-26.24694854899991,-58.399480937999954],[-26.354446456999938,-58.38615169999986]]],[[[-37.686950551999985,-54.00019244799989],[-37.65500661599998,-54.17964078099993],[-37.46472953499995,-54.12907963299995],[-37.282226500999855,-54.264084767999975],[-37.14611847499998,-54.25936156499989],[-37.08083350699991,-54.31991813399998],[-36.92000557199998,-54.33547427599996],[-36.8088915429999,-54.44769823599995],[-36.48694649799995,-54.55854069099996],[-36.34750347999989,-54.64742490699996],[-36.251113604999944,-54.78604733699996],[-36.076393503999896,-54.88826816699998],[-35.979728534999936,-54.807158165999965],[-35.822227544999976,-54.78715357999994],[-35.914451613999915,-54.714931581999906],[-35.90888955099996,-54.577706415999955],[-36.068611576999956,-54.56881690499995],[-36.06139358499996,-54.46464359499993],[-36.28222655899998,-54.267700720999926],[-36.391113515999905,-54.34491967499997],[-36.50111359099992,-54.28324998999989],[-36.67750554599991,-54.24825336399988],[-36.65639454999996,-54.105747934999954],[-37.16278052499996,-54.02936130399996],[-37.23194849299995,-54.07380332799988],[-37.49500245399997,-54.008524730999966],[-37.686950551999985,-54.00019244799989]]]]},"properties":{"objectid":618,"eco_name":"Scotia Sea Islands tundra","biome_num":11,"biome_name":"Tundra","realm":"Antarctica","eco_biome_":"AN11","nnh":1,"eco_id":129,"shape_leng":50.8532189203,"shape_area":1.26952119588,"nnh_name":"Half Protected","color":"#71E0D9","color_bio":"#9ED7C2","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":8130.0789981539365,"percentage":0.09514255180953714}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-78.37728160199993,-7.861028375999922],[-78.39284562299997,-7.761111395999933],[-78.50418864499989,-7.645648835999907],[-78.65105450899989,-7.599509307999881],[-78.69393163199993,-7.546305009999912],[-78.68842354799983,-7.465861035999978],[-78.84907563099995,-7.457454321999933],[-78.96028152499997,-7.565039736999893],[-79.01742565299998,-7.532635131999939],[-79.1063236149999,-7.395103020999954],[-79.26686857699991,-7.365605091999896],[-79.31137849499999,-7.327098795999916],[-79.33970664499992,-7.21774697799998],[-79.28132652199997,-7.128269323999916],[-79.3202596239999,-7.028551665999885],[-79.34066754699995,-6.880320389999952],[-79.3767855029999,-6.791902710999977],[-79.55123855699998,-6.648650117999921],[-79.655235512,-6.475522745999967],[-79.80490160099998,-6.32459283299994],[-80.11513562,-6.156944039999814],[-80.44163555899996,-6.059648081999967],[-80.5461345899999,-5.971090591999882],[-80.61563163199997,-5.865771307999978],[-80.71204363499993,-5.552901348999967],[-80.84532159499997,-5.262650626999971],[-80.91525265099995,-5.155383555999947],[-81.0613636409999,-5.041642973999956],[-81.16802956099991,-5.08743347799998],[-81.19141356299997,-5.215220285999976],[-81.1098785989999,-5.309583081999961],[-81.04186263999992,-5.33765508099998],[-80.92247751699995,-5.460987074999878],[-80.88745859599993,-5.464223998999898],[-80.81726049199989,-5.574631600999965],[-80.85331759499996,-5.765087719999883],[-80.92584955599995,-5.843011926999907],[-81.06128652699982,-5.787358268999867],[-81.14356261799992,-5.889826699999958],[-81.14456961999986,-5.980172886999981],[-81.09441365299995,-6.076448935999963],[-80.9324496349999,-6.177013501999909],[-80.77305550799997,-6.305112283999961],[-80.69141359199983,-6.337319914999853],[-80.29786664099998,-6.529672019999964],[-80.08250453499994,-6.663263127999926],[-79.98343664199996,-6.742305312999918],[-79.92534653299998,-6.871322081999949],[-79.73634350099996,-7.049513966999939],[-79.67762759799996,-7.119910051999966],[-79.67934454699991,-7.181458533999887],[-79.61325860499994,-7.250019484999939],[-79.56084455299998,-7.391106193999974],[-79.56648255599998,-7.464109049999934],[-79.43959864699991,-7.651881283999842],[-79.4578556059999,-7.710614284999963],[-79.38253062699994,-7.794508250999968],[-79.29575362099996,-7.930953229999943],[-79.15300763099992,-8.048978975999887],[-79.12782252599999,-8.09456244799992],[-78.99102064599998,-8.220614368999975],[-78.90911050899996,-8.377418152999951],[-78.92646054599999,-8.455100792999929],[-78.79739365399996,-8.556874531999938],[-78.74354562499997,-8.6646166889999],[-78.75230454699988,-8.798750105999943],[-78.65437357499991,-8.91552074699996],[-78.64958951999995,-9.040876969999943],[-78.50651562899986,-9.185261622999917],[-78.51139859099993,-9.312835697999958],[-78.44409157299998,-9.334948834999977],[-78.36951459499988,-9.63312196499993],[-78.23609162799994,-9.814363018999927],[-78.25533262199997,-9.860641685999951],[-78.17768049199992,-10.07145510099997],[-78.06101965399989,-10.34269097299989],[-77.86278563299993,-10.66800537599994],[-77.77527655199992,-10.767006213999878],[-77.67069252799996,-10.948512638999944],[-77.65859962099984,-11.036527483999976],[-77.60726951699996,-11.169954306999955],[-77.66385658299993,-11.255832436999981],[-77.63101963899993,-11.31639118499993],[-77.3645475379999,-11.467001747999916],[-77.29895763699994,-11.524978030999932],[-77.17622360799993,-11.737736214999927],[-77.18864458199994,-11.856204189999914],[-77.15090154299997,-11.907528594999974],[-77.14168563999988,-12.079983737999953],[-77.0334776169999,-12.158627447999947],[-77.04244256499993,-12.214281608999954],[-76.84752660399988,-12.32071132699997],[-76.78406553799994,-12.401336853999965],[-76.81057749799999,-12.511459638999895],[-76.74540752999997,-12.53868573699998],[-76.67862656099999,-12.628736545999914],[-76.64122064099996,-12.750869256999977],[-76.51986660899996,-12.869860095999854],[-76.49170659899994,-13.047619139999824],[-76.28603363799988,-13.282062480999912],[-76.1876445119999,-13.442460926999956],[-76.19352760199996,-13.623045678999915],[-76.26146661499996,-13.871074407999856],[-76.37017855799996,-13.80887632799994],[-76.39612557799995,-13.901492501999826],[-76.28559861699995,-13.916086401999962],[-76.26461049999995,-14.05897404599989],[-76.28367664699982,-14.13688567999992],[-76.13488763999999,-14.243508685999927],[-76.06737559999988,-14.392657946999975],[-75.97048951699992,-14.509867295999982],[-75.92098951699984,-14.661444291999942],[-75.85501052799998,-14.720154494999917],[-75.65073348899989,-14.848371294999936],[-75.52396357399994,-14.90702349399993],[-75.50815563999998,-14.97527884099992],[-75.44815059999996,-15.011355557999934],[-75.37297850799996,-15.143230051999922],[-75.22991953699994,-15.2191873619999],[-75.24499556299997,-15.28260919999991],[-75.18980458599987,-15.367782746999978],[-75.05079658899996,-15.466373374999932],[-75.01222256799997,-15.466083192999974],[-74.65360250499998,-15.657024288999935],[-74.47146559299995,-15.728533657999947],[-74.43728653899996,-15.807163620999916],[-74.35558360199991,-15.85276854999995],[-74.2849955719999,-15.845134144999975],[-74.05188763599989,-15.963886434999836],[-73.99999963199986,-16.034941001999982],[-73.85572863799996,-16.136981620999904],[-73.33990463999993,-16.32337285199992],[-73.30790756299996,-16.37270588399997],[-73.21104461299996,-16.399048025999946],[-73.04996454999997,-16.499593648999905],[-72.92754350199993,-16.517507787999932],[-72.77449749299996,-16.626543942999945],[-72.44997350399996,-16.703706904999933],[-72.37428257099998,-16.752505004999932],[-72.13259156599992,-16.969271581999976],[-72.10420256299994,-17.020845264999934],[-71.94582348499989,-17.063622642999974],[-71.80450459699989,-17.184216100999947],[-71.68853761399998,-17.21031449799989],[-71.47614253399996,-17.29155961499987],[-71.39250153399996,-17.393125147999967],[-71.34301762699988,-17.64290904799998],[-71.37048361499996,-17.678503972999977],[-71.18147253699993,-17.785187495999935],[-71.09345249499995,-17.866719273999934],[-71.00227364899996,-17.876362820999816],[-70.92483559299995,-17.922283077999907],[-70.88602453099998,-18.002772146999973],[-70.81260660299995,-18.03526308599993],[-70.68231964099988,-18.15553384099985],[-70.59595452199994,-18.197981307999953],[-70.38628356099991,-18.337382918999936],[-70.31594849699991,-18.422723936999944],[-70.12089557499996,-18.40865172699995],[-69.90974453699994,-18.479706460999978],[-69.62741856899999,-18.39400250699987],[-69.71045657499997,-18.312588410999922],[-69.7502895579999,-18.167543096999964],[-69.83461753899996,-17.847544663999884],[-69.8955685599999,-17.715023589999873],[-69.94609852799994,-17.4794538889999],[-69.93443259499998,-17.40644348899997],[-69.97397656999982,-17.340157553999916],[-70.05184964699993,-17.30833163599982],[-70.06039449499997,-17.216529343999923],[-70.22953761299988,-17.114505320999967],[-70.32166260799994,-17.122926116999906],[-70.4590684879999,-17.17183904799998],[-70.54760753699998,-17.12048396499989],[-70.67820764699991,-16.88756143699993],[-70.6547245719999,-16.70955479199995],[-70.69313849899993,-16.554775405999976],[-70.51375554499998,-16.607756073999838],[-70.50607252499998,-16.554117257999962],[-70.66734352699996,-16.4367848629999],[-70.62719756399997,-16.25407211399994],[-70.53963450299989,-16.187500356999976],[-70.53334053199995,-16.13489687399982],[-70.64908556299997,-15.98519809399994],[-70.68110661199995,-16.094784269999934],[-70.75668355099992,-16.225489991999837],[-70.76727257699997,-16.318042128999934],[-70.84696955599992,-16.374612598999875],[-70.90344950199994,-16.53290165599998],[-71.03391248399993,-16.578752677999944],[-71.11078660599992,-16.658278833999873],[-71.18581352499996,-16.563143729999865],[-71.3204724869999,-16.467153838999877],[-71.37053658899998,-16.375053486999946],[-71.37069651599995,-16.270505337999907],[-71.21338663299997,-16.134669891999977],[-71.34240759299996,-16.012868432999937],[-71.43295259899998,-16.04318460399992],[-71.49523952699997,-16.15470347899992],[-71.58719654899994,-16.111325285999953],[-71.58240562099991,-15.926856862999955],[-71.63715352999998,-15.880471745999841],[-71.69709050799997,-15.932403503999865],[-71.81899254899986,-15.84792280499994],[-72.00036654099995,-15.811890343999949],[-72.14141854799993,-15.869197750999945],[-72.21668250699997,-15.845361126999933],[-71.9850155879999,-15.675475874999961],[-71.71554561499988,-15.677499769999883],[-71.59224664499999,-15.65062369999987],[-71.49559056099997,-15.598822699999914],[-71.34280355399994,-15.463454628999898],[-71.42945063999986,-15.348321979999923],[-71.50072464499993,-15.3480328039999],[-71.63115661399996,-15.504381952999893],[-71.70444462199998,-15.515324359999966],[-71.94091755699998,-15.487188154999956],[-72.10111953099994,-15.488403027999937],[-72.2139666029999,-15.460862775999942],[-72.33149764899997,-15.201756355999976],[-72.42698663699997,-15.213283651999916],[-72.43473855699995,-15.28366615799996],[-72.3881226019999,-15.583344844999942],[-72.52568052999993,-15.571014562999892],[-72.62166555899995,-15.662248728999941],[-72.72148161999996,-15.69710973499997],[-72.78289062799996,-15.681111531999932],[-72.85959660899988,-15.590911524999967],[-72.81362153499998,-15.443615669999872],[-72.98294855199993,-15.375203078999903],[-72.95807659599984,-15.314276029999917],[-72.86024453099986,-15.240383853999901],[-72.64923849999997,-15.121943538999915],[-72.51391552299992,-15.019496229999902],[-72.45442161199986,-14.887520816999938],[-72.52160658899993,-14.870241858999975],[-72.66535958199995,-14.945899934999943],[-72.73238362699988,-14.927437954999903],[-72.8116455849999,-14.961794872999974],[-73.09944158399992,-15.162445732999913],[-73.16790060999989,-15.179091857999936],[-73.20928156399992,-15.060914565999951],[-73.28029656799998,-15.06597807399993],[-73.27081261199999,-14.959538967999947],[-73.30984461999992,-14.871229749999884],[-73.20614656399988,-14.79206585999998],[-73.06567357799997,-14.739348382999879],[-73.08930149299988,-14.678335167999933],[-73.40317560399996,-14.740291178999883],[-73.52675653999995,-14.66760817599993],[-73.58913449599993,-14.669938847999958],[-73.71226448599998,-14.745193921999942],[-73.71003758199993,-14.806776937999928],[-73.61525753599989,-14.88539969299984],[-73.63415554199997,-14.961376783999924],[-73.69862360899992,-14.960021094999945],[-73.80113964999998,-14.846696422999912],[-73.89851355999997,-14.847450458999958],[-73.9696045039999,-14.930764899999929],[-74.05309261899993,-14.742867105999949],[-73.95084362599988,-14.708388481999918],[-73.97820249299997,-14.593915824999954],[-74.19141363499995,-14.522683393999841],[-74.24045564699998,-14.477110315999937],[-74.28650649399998,-14.347823817999938],[-74.32296760499997,-14.336099714999875],[-74.40448764899998,-14.453740060999962],[-74.3360445479999,-14.637921821999953],[-74.33525849299997,-14.730948877999879],[-74.39111365199989,-14.727901217999886],[-74.49157763399995,-14.492648519999932],[-74.51406862799996,-14.377689879999934],[-74.49332459099998,-14.290824696999948],[-74.51851656799994,-14.179069954999818],[-74.5817716059999,-14.152963678999981],[-74.6630405279999,-14.239924080999913],[-74.71814751799991,-14.154390614999954],[-74.6860885829999,-14.009521319999976],[-74.75274650599988,-13.845098219999954],[-74.87142956099996,-13.754035211999962],[-74.91182765199994,-13.812256413999933],[-75.00106055499987,-13.748210459999939],[-75.03233360399997,-13.823985378999964],[-75.09626053499994,-13.855557325999825],[-75.14579054199999,-13.78984689299989],[-75.12076553199995,-13.735145251999938],[-75.29536459899992,-13.544242041999894],[-75.20095855299991,-13.489909539999928],[-75.20716048999998,-13.40134266299998],[-75.31034054499997,-13.371540638999875],[-75.30663255899992,-13.257727133999936],[-75.25513464899996,-13.089532511999948],[-75.32576760599983,-13.025966839999853],[-75.37426764399993,-13.07348854299994],[-75.39908562099993,-13.160995612999955],[-75.47226751499994,-13.229303261999917],[-75.52403264099996,-13.162524471999973],[-75.46740751999994,-13.098718742999893],[-75.47395361899993,-13.045218395999939],[-75.3991315539999,-12.98483549999986],[-75.48818961099994,-12.92120763499986],[-75.59854859799998,-12.930641298999944],[-75.6461566349999,-13.04694221799997],[-75.7279816119999,-13.093151314999943],[-75.78653758699994,-13.057545492999907],[-75.80641962899989,-12.981811812999979],[-75.72861461299988,-12.877811671999893],[-75.7034756089999,-12.78367300899987],[-75.74350757899998,-12.598304537999923],[-75.80029262599999,-12.520117809999874],[-75.73715258699997,-12.388925937999886],[-75.79609664499992,-12.11887425999987],[-75.84718350699995,-12.07388020399992],[-75.92425560899989,-12.091519918999893],[-75.92436256199994,-12.213264715999856],[-76.03226464599999,-12.32906573799994],[-76.10077664599999,-12.339215216999946],[-76.06705457399994,-12.215297494999902],[-76.22509753699995,-12.072244223999917],[-76.38693951499988,-12.15851848299991],[-76.38886249099994,-11.948127683999871],[-76.26423649899994,-11.814252093999869],[-76.25956761099997,-11.742496967999955],[-76.41826654299996,-11.750574272999927],[-76.43113762599995,-11.666534125999931],[-76.52658051299989,-11.584138676999828],[-76.60029549599989,-11.644757606999917],[-76.6214525929999,-11.564781006999908],[-76.53510256199996,-11.48466560299994],[-76.57286052099994,-11.41264057899997],[-76.53809355999994,-11.332655261999946],[-76.58198556399998,-11.303013331999978],[-76.60533855199998,-11.200402408999935],[-76.77085163599986,-11.142192269999953],[-76.75429553299995,-11.039787541999885],[-76.64067062099991,-10.974497041999882],[-76.64044162699997,-10.894641476999936],[-76.73724355699989,-10.832804823999936],[-76.74712364099992,-10.729903048999972],[-76.84069853799997,-10.613266183999883],[-76.91413155299995,-10.737207374999912],[-77.17961157299993,-10.889070025999956],[-77.07155660299992,-10.720316665999917],[-76.97141264099997,-10.645188829999825],[-77.02690151099989,-10.561174666999875],[-76.99309561899992,-10.488936910999882],[-77.0817875539999,-10.426702117999866],[-77.07837662299994,-10.205598743999929],[-77.1365205439999,-10.166496326999948],[-77.0874175109999,-10.039925230999927],[-77.17244755999997,-10.034262751999847],[-77.27020251199997,-10.197412138999823],[-77.36414352999998,-10.250618280999959],[-77.38970950799984,-10.159502802999953],[-77.45303361299995,-10.113459163999948],[-77.50208249899998,-9.961873785999956],[-77.60153160099992,-9.934133542999973],[-77.62773158599992,-9.752228473999935],[-77.731925516,-9.70867459599998],[-77.67097449499994,-9.567193602999964],[-77.68142656099991,-9.487028074999955],[-77.72837862999995,-9.431940027999929],[-77.81497156899991,-9.398430351999934],[-77.89985661099996,-9.311251685999935],[-77.95611560999993,-9.217706460999977],[-77.96700252899984,-8.96388835099998],[-78.08901252899994,-8.893101502999968],[-78.08870658899997,-8.818040720999875],[-78.03667458399997,-8.789543926999897],[-77.94700649299995,-8.811210140999947],[-77.81318655899992,-9.078924104999885],[-77.8204955779999,-9.133533377999925],[-77.74127955199998,-9.201344482999957],[-77.73973057699999,-9.281074654999884],[-77.65098549999993,-9.318014037999887],[-77.6562345829999,-9.374986168999953],[-77.59394849299997,-9.41963388499994],[-77.60018949099998,-9.515835334999963],[-77.47397663699991,-9.762508877999949],[-77.41619162799992,-9.744195089999891],[-77.45367449399993,-9.449151762999918],[-77.50968153199989,-9.283472717999928],[-77.6810755269999,-9.065097987999877],[-77.83553355099991,-8.729990001999909],[-77.82256356099998,-8.64862871199989],[-77.74143260599999,-8.586054283999943],[-77.85752062399996,-8.47859811799998],[-77.98151361499993,-8.516819092999981],[-77.99779562899994,-8.429681497999866],[-77.91980755199995,-8.283790114999874],[-77.82476062599994,-8.234463619999872],[-77.85808556399991,-8.199778969999954],[-77.86757656099996,-8.07668669799989],[-77.94107059699996,-8.090070920999949],[-78.01490761999992,-8.011182627999972],[-78.08851665599997,-8.052775642999961],[-78.11620358999988,-7.988161059999868],[-78.20502460699993,-8.020677982999871],[-78.27303352499996,-8.100921126999879],[-78.23486351199995,-8.199376134999909],[-78.24013556099999,-8.324858087999871],[-78.31439251799998,-8.373833379999894],[-78.40926359199989,-8.243652867999913],[-78.33964551599996,-8.173325850999959],[-78.35543065099995,-8.084669119999887],[-78.43148049699988,-8.042305136999971],[-78.36495953399998,-7.991434025999979],[-78.49755051299996,-7.892467050999869],[-78.37728160199993,-7.861028375999922]]]},"properties":{"objectid":619,"eco_name":"Sechura desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Neotropic","eco_biome_":"NO13","nnh":3,"eco_id":608,"shape_leng":64.1477540859,"shape_area":15.3932404431,"nnh_name":"Nature Could Recover","color":"#F15C56","color_bio":"#CC6767","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":185316.6612330403,"percentage":0.7024312259700608}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[93.11357163800005,49.70252824900007],[93.05187261600014,49.68357609500015],[92.77687058700019,49.691934194000055],[92.74378956200013,49.62823625600015],[92.8154065550001,49.58563674200008],[93.29500564400018,49.57521451600013],[93.72572365300005,49.42225467300011],[94.0582196700002,49.36196699599998],[94.11228965100014,49.278321302000165],[94.34502459300012,49.20703137200019],[94.55530558900011,49.19932924100016],[94.73681654000012,49.22533057499999],[94.88969457600001,49.20505123100003],[94.9676516400001,49.25379987700012],[95.16655755500017,49.22526167600006],[95.35176056700016,49.226253590000056],[95.55964651800019,49.29695645200019],[95.60685758800008,49.466109294000034],[95.70388063200005,49.54212527700014],[95.61895753600004,49.66472771000019],[95.43189256700009,49.73258843600013],[95.32151061400009,49.79642048400012],[95.17768855500009,49.77049911400013],[94.93331953200004,49.62729010700008],[94.77729761200004,49.60489701400013],[94.51695251400014,49.62239105200018],[94.25885058100016,49.67727793300003],[94.09244566300009,49.69268219500003],[93.89405858800018,49.75472487500019],[93.51659366000013,49.82439374500012],[93.37653356600009,49.828196615000195],[93.11357163800005,49.70252824900007]]],[[[107.38425466300015,51.58024471500005],[107.4639665630001,51.731427426000096],[107.65235168100014,51.82562224800006],[108.4597016240001,52.094741858000134],[108.66153751800016,52.121655646000136],[108.86338062000016,52.18893265700018],[109.10558359100003,52.24275872400017],[109.37470253000015,52.22930442900014],[109.536170675,52.18893265700018],[109.67073056300006,52.1081971590001],[109.80529062000005,52.08128387400018],[110.07440168000011,52.121655646000136],[110.45116454000015,52.28312747900014],[110.61264056300013,52.39077642900003],[110.82793460800008,52.49842454100002],[110.74719257300006,52.60607365900012],[110.63954965800019,52.64644258100003],[110.3300626350001,52.60607365900012],[110.07440168000011,52.619529128000124],[109.80529062000005,52.727178078],[109.3208766300001,52.727178078],[108.89028954600013,52.70026864900012],[108.68845365300012,52.673355196000045],[108.50006853500008,52.59261936300015],[108.19058251800004,52.53879329500006],[107.8676455580001,52.43114417800007],[107.55815853500019,52.24275872400017],[107.00646954600018,51.91981287900012],[106.57588162400015,51.556498448000184],[106.41441364700012,51.48921741400005],[106.18566161900014,51.421936045000166],[105.99728354200005,51.34120071500013],[105.51961564300007,51.068834459000186],[105.38233951500018,50.95441846300008],[105.25254859400013,50.72146291000007],[105.2435226250002,50.63598577000005],[105.12442064300012,50.28480364],[104.98693060800002,50.141585749000114],[104.84649651400014,50.045408439000084],[104.61501366200002,49.77707220200011],[104.41570256500006,49.66238161500013],[104.25069457500013,49.64511657100013],[104.151130641,49.7222423180001],[104.06570463100013,49.66870659900013],[103.81716158800003,49.669213872000114],[103.7479936200001,49.69137713300006],[103.78843663800006,49.81853848300011],[103.73038458200011,49.89007651800006],[103.5231016250001,50.013323016000186],[103.36483754700004,50.06961688400003],[102.93838458500016,50.09570220500012],[102.58744066900016,50.00240089400012],[102.33988954100016,49.99525582400008],[101.9545136050001,50.02737226000016],[101.76554862700004,50.076616947],[101.53133360900017,50.06586682100016],[101.25184659100012,50.091495160000136],[100.99201161600007,50.078700017000074],[100.79747753300006,50.094680283000116],[100.28694955700007,50.096824207000054],[99.88001251600014,50.12203546300009],[99.71115153200009,50.145328939000194],[99.27220953500012,50.23206822600014],[98.94231459000008,50.328497328000026],[98.62604560100016,50.39185630200018],[98.46593465400014,50.47948138900017],[98.32613356200005,50.482296702000156],[98.15591454200012,50.46593925000013],[98.00688162199998,50.391418432000194],[97.91921261400017,50.25552950800011],[97.68250263900018,50.08457103800009],[97.41511556900014,49.773345104999976],[97.2836155780002,49.79964332600014],[97.12142156000004,49.9837506560001],[97.007453661,50.01005424200008],[96.6085585530002,49.99251695300006],[96.31925163300014,50.01443713900011],[96.15706666800008,50.062654875000135],[96.09924360600007,50.12550355900015],[96.10526265000016,49.929566011000134],[96.03568262800007,49.67622499900011],[95.98220860000015,49.552536271],[95.75088466900013,49.295853394],[95.73443551900016,49.113215244000116],[95.61575363700007,48.90838734700003],[95.6045306040001,48.846301584000116],[95.75234965800013,48.48236488000015],[95.91919663700003,48.2404348230001],[96.06281266900015,48.1120198750001],[96.29782866200009,47.970641811000064],[96.35732257199999,47.70630776600012],[96.51557961000003,47.597085029000084],[96.753936629,47.50334517700014],[96.81598651700006,47.41111674900003],[96.93931566100008,47.140264097000056],[97.04972058100009,47.03529031500017],[97.14984157700007,46.975667156000156],[97.49111160300009,46.91113270400007],[97.69068857300016,46.80271127700013],[97.96461453400008,46.68364282200014],[98.08370159700007,46.686900868000066],[98.26786760000016,46.80935645000011],[98.4825896640001,46.7944101760001],[98.67315659100012,46.85469047700019],[99.05282562500008,47.05038159700007],[99.3438496620002,47.042855486000065],[99.65536460200013,47.011586293000164],[99.73019354000019,46.909202854000114],[99.93353264400014,46.82765548599997],[100.26726566300016,46.75627117500011],[100.46134159000007,46.670260611000174],[100.78847453100019,46.4341185940001],[100.928871577,46.35325435000004],[101.27572663300009,46.20778776200012],[101.49460561800004,45.99850136200013],[101.58770760700003,45.96318907500006],[101.70646660300014,45.98214810200011],[101.81732967700003,45.89011799000002],[102.06291960800007,45.848438976000125],[102.24060053300002,45.88834789900005],[102.50904053800008,46.02225534100012],[102.93005364400017,46.18929393100018],[102.98482552600018,46.264017089],[102.9486235830002,46.40914756300015],[103.22539553500013,46.38772760900014],[103.34910555300007,46.41224065300014],[103.9141465780001,46.569571155],[104.38964054600007,46.603125255],[104.67530066800003,46.6617117400001],[104.76943162000003,46.70029766400006],[104.88539156300004,46.83416738700009],[104.7727355990001,46.98080123900013],[104.27664159500006,47.281298000000106],[104.20307966500008,47.05741669600013],[104.06606253799998,47.056382537000104],[103.88700061100013,47.18405333900017],[103.76494551600013,47.173307404000184],[103.57490564300019,47.23473954600007],[103.45793165700019,47.184805363],[103.51320662100011,47.115128781000124],[103.4399415790001,47.071034606000126],[103.26464865800017,47.165933173000155],[103.06491058699999,47.21315547400013],[102.76776859900002,47.18887528000005],[102.4721675400001,47.246969748000026],[102.17818452300014,47.25178766600004],[102.0595775760001,47.28858103599998],[101.99230157100016,47.37656738200013],[102.0081255990001,47.46577396600003],[101.94578552900003,47.66662750100011],[101.99762760000004,47.839666527000134],[102.151519678,47.87306505900011],[102.32022861299998,47.85377762900009],[102.64115157000003,47.960006517000124],[102.76708262400001,48.07233039000005],[103.05730451300002,48.139710163000075],[103.18435656400015,48.136849084],[103.5685955780001,48.03350826500014],[103.78076954300013,48.05122039900016],[104.08264965400019,48.16447919000018],[104.27608453300019,48.184552507000035],[104.44175754400015,48.135522061000074],[104.45675662400004,48.26338413899998],[104.54001658300018,48.41477539200008],[104.71411156200014,48.558594769000024],[104.79737856200006,48.77810591700012],[104.88481857600016,48.82992535700009],[104.88766456700017,49.00306831900019],[104.97011567200019,49.07612079600011],[105.24860356700009,49.22117264800016],[105.57865156600019,49.4696343870001],[105.85608652700006,49.65070042700012],[106.11072556000005,49.903469793000056],[106.34946462700003,50.51484815800018],[106.39768957100011,50.82186754900016],[106.53878768000015,51.00106945400006],[106.61009957100009,51.01253656800009],[106.72859956500008,51.14060953400008],[106.92320254700013,51.266309583000066],[107.03359958800013,51.4466026450001],[107.38425466300015,51.58024471500005]],[[97.94947061400012,48.254544919000125],[97.9894715710002,48.36560396200019],[97.8697355810001,48.483811093000156],[97.9488295660002,48.52906850900007],[98.07991767000004,48.488185944000065],[98.31066861500011,48.5279354430001],[98.74329367500013,48.52438838900008],[98.85923752400004,48.500591160000056],[99.15989655900012,48.49664328400007],[99.42991655200018,48.45799282000013],[99.78497363600019,48.489468207000186],[99.92594953600013,48.54438057000016],[99.9981076640002,48.45690183099998],[99.9456636050001,48.34969192500017],[99.87685354400008,48.265177195000035],[99.64369162900005,48.23477385300015],[99.1587145430002,48.25558695700005],[98.94140666200008,48.214944785000114],[98.93630258600018,48.132606835000104],[99.34977751100013,48.107368925],[99.55165866700008,48.064068516000134],[99.60578162200011,47.99845883300003],[99.46097552700007,47.93920850100005],[99.36585953400004,47.869754040000146],[99.37248257800019,47.80271339900008],[99.47044355700007,47.768633083000054],[99.69581566700015,47.85466979900002],[99.81747463300019,47.85346079300018],[100.01200066900014,47.77160815600013],[100.131706651,47.78430741000017],[100.21932955900013,47.87951912400001],[100.34326957600018,47.933268246000125],[100.44429766100018,47.92884025400008],[100.48971567400008,47.778837212000155],[100.60283666600014,47.72767089000007],[100.62601464000016,47.657231220000085],[100.5448075760001,47.591447026000026],[100.32108251100016,47.5213744830001],[100.40745567600015,47.40768368900018],[100.57803360800017,47.42158859600005],[100.75959066000013,47.345195260000025],[100.97490666600004,47.30100083700006],[101.1397015880001,47.324473184],[101.27728265000019,47.280862980000165],[101.40639463600013,47.15514197500005],[101.59601558200012,47.12414284800013],[101.69840958200007,47.034649603000105],[101.68258656100011,46.913986910000176],[101.71631651200005,46.8474384540001],[101.63530759700012,46.685187775000145],[101.85889453000004,46.58991923100018],[102.06890864600018,46.55985904400018],[102.16546666200009,46.51209091300012],[102.15676155200009,46.427698559000135],[101.94936359600007,46.35194543200009],[101.70533756000003,46.11787558900005],[101.5757905530001,46.10813246499998],[101.45222453600007,46.22199777000009],[101.5649415200001,46.36376743600016],[101.3139725870002,46.35751554200016],[101.11602053200005,46.47174294500019],[100.97055059100012,46.50439699600008],[100.82682760500006,46.61960826700016],[100.70940351200005,46.66187552300005],[100.59413960300009,46.82341742800014],[100.36406658600015,46.92141377900015],[100.15402263100009,47.08237968000003],[100.05928063800008,47.18055121200018],[99.76645667100007,47.22760939600005],[99.55771660400012,47.335665204],[99.15179461100018,47.3029890250001],[98.98706858800006,47.247358668],[98.70041655200009,47.09191292100019],[98.58773058100007,47.048894479000126],[98.34116365500012,47.11813503500019],[98.12163557600019,46.99036834300017],[98.07170860200011,46.99828840400011],[97.79322858600005,47.18448031300011],[97.65259567300012,47.19843836100006],[97.53392753800006,47.397353496000164],[97.36578354199997,47.4413299900001],[97.14849862800008,47.4413299900001],[97.07607261400005,47.503410388000134],[97.08641856500014,47.606881127000065],[97.13815251000005,47.66896538100008],[97.31404859200006,47.79312735100012],[97.32440158400016,47.989722711000184],[97.28301258400006,48.10353873000008],[97.15884357300007,48.28978931300003],[97.11746262000008,48.40360616999999],[97.18988762800018,48.48638199100009],[97.56237756100006,48.310480544000086],[97.68069466300017,48.275888094000095],[97.79618857100007,48.197049422000134],[97.94947061400012,48.254544919000125]],[[96.66651153500015,48.04015729300016],[96.50524153800012,48.06275238900008],[96.2959135640001,48.12850288800013],[96.20318557500008,48.21935081600009],[96.25442465200013,48.317598456000155],[96.4055406440001,48.36452001500015],[96.56789358200007,48.30281328199999],[96.66944855400004,48.30243928100009],[96.79666153600004,48.223847875000104],[96.79643254300004,48.114738965000186],[96.66651153500015,48.04015729300016]]]]},"properties":{"objectid":620,"eco_name":"Selenge-Orkhon forest steppe","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Palearctic","eco_biome_":"PA08","nnh":2,"eco_id":737,"shape_leng":70.5305558147,"shape_area":28.0903325303,"nnh_name":"Nature Could Reach Half Protected","color":"#C4FC41","color_bio":"#FEFF73","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":228158.89997552813,"percentage":2.1533977204432833}}, + {"type":"Feature","geometry":null,"properties":{"objectid":622,"eco_name":"Serengeti volcanic grasslands","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Afrotropic","eco_biome_":"AF07","nnh":1,"eco_id":54,"shape_leng":0.934999975,"shape_area":0.0101604166754,"nnh_name":"Half Protected","color":"#D9FB4C","color_bio":"#FEAA01","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":125.7563299932223,"percentage":0.0005865769744180263}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[135.27955034200022,-29.089016727999933],[135.24361665600009,-29.137383907999947],[135.3719075250001,-29.21876931399993],[135.42230368000014,-29.16884753199986],[135.37288002800017,-29.098064684999883],[135.27955034200022,-29.089016727999933]]],[[[143.3203318430002,-24.33192859099995],[143.22272221900016,-24.14235165499997],[143.16838600500012,-24.139616040999954],[143.13336963600023,-24.0496860209999],[143.18997380100018,-23.910548603999928],[143.23004725900012,-23.750040739999918],[143.1272830050001,-23.642871464999928],[143.09028974800003,-23.347444107999877],[143.17231689300013,-23.146051651999983],[143.20147572800022,-23.012669156999834],[143.3375941280002,-22.927112452999893],[143.2683627670001,-22.790214618999926],[143.29190737000033,-22.705775514999914],[143.2156304770001,-22.582259783999916],[143.15577919700013,-22.548680111999943],[143.07249305300002,-22.571270113999958],[142.9846586130002,-22.542414918999953],[142.94910383700017,-22.63016330399995],[142.8634343320001,-22.622656989999825],[142.72576316800007,-22.54854051199993],[142.59271441600004,-22.561475168999948],[142.62776357000007,-22.629934892999927],[142.55883034900012,-22.664232418999973],[142.53619275900007,-22.759430942999927],[142.45888191300003,-22.85400106499992],[142.45658923300005,-22.943555738999976],[142.37938248600017,-23.00663104499995],[142.37093441000013,-23.078501012999936],[142.244893487,-23.22192968899998],[142.1568172640001,-23.141255248999983],[142.03829264700005,-23.174964336999892],[141.99822887000005,-23.13442571199994],[141.82409966400007,-23.08922536599988],[141.74361028400006,-23.024075723999943],[141.6312508850001,-23.009606826999857],[141.57668028800015,-23.050166595999883],[141.49759957700007,-23.321144099999913],[141.43859090500018,-23.387404879999906],[141.29449127800012,-23.455921539999963],[141.12289612400002,-23.560766457999932],[141.09865943500006,-23.640633673999957],[141.04168112600019,-23.691719073999934],[140.9012844890001,-23.71318318999988],[140.82678749800004,-23.86749922599995],[140.79881907200001,-23.96905072699991],[140.84214161900013,-24.052032387999873],[140.85663155200007,-24.236564228999953],[140.89558178700008,-24.27972640699994],[140.8768167850002,-24.37787701999997],[140.69915422400004,-24.487946590999968],[140.64422062200003,-24.56838866299995],[140.5469301610002,-24.59837828399992],[140.49826214700022,-24.56535619899995],[140.40125455800012,-24.67138813799994],[140.22483132200023,-24.585276272999977],[140.14799921300005,-24.501385617999915],[140.06793629000003,-24.555746219999946],[140.03022227400015,-24.485727195999857],[139.88115939600004,-24.446401878999893],[139.8409404560001,-24.367780586999856],[139.99444801100003,-24.271217905999833],[139.94000320500004,-24.21136687099994],[139.93880591900017,-24.092989836999948],[139.9919560290001,-24.041320887999916],[139.97453071400003,-23.845562644999973],[139.91080876900003,-23.786231646999966],[139.95042630800015,-23.66308261899991],[139.89989322200006,-23.50397841599988],[139.92382087900012,-23.42356348499993],[140.02587128900007,-23.351041769999938],[139.94024265200005,-23.310817940999982],[139.7388965570001,-23.362343791999876],[139.65090267500022,-23.306103488999895],[139.62515674000008,-23.240275200999974],[139.62066630800018,-23.084545491999847],[139.44703556700006,-23.008820409999885],[139.36528194200002,-23.04815728799997],[139.2439127580002,-23.05448406299996],[139.23819898500005,-22.99718832799988],[139.0573420400002,-22.991390885999976],[139.03328030400007,-23.036806328999887],[138.93157990200007,-23.03404631999996],[138.89213049800014,-23.135678836999887],[138.83125544100005,-23.184153306999917],[138.71165503300017,-23.10458816299996],[138.71015953900007,-22.905653569999913],[138.63399333200016,-22.814237456999933],[138.57802268900014,-22.83020040399998],[138.44767067200019,-22.937416688999974],[138.4031355310001,-22.870460519999938],[138.48974655400002,-22.74180344499996],[138.40001696800005,-22.631205116999922],[138.24604842700012,-22.56521463999991],[138.10893485600002,-22.473171],[137.968098477,-22.479625305999946],[137.89785772000005,-22.58022880399983],[137.75665282600016,-22.611930837999978],[137.63932797400014,-22.560737692999965],[137.64463807700008,-22.42016412499993],[137.50895685800003,-22.224180307999973],[137.28866569000013,-22.049617786999875],[136.9053191810001,-21.799514703999932],[136.86941529800004,-21.75728030599987],[136.73899841700006,-21.70904161499982],[136.6678618740001,-21.65473559999998],[136.58563238700026,-21.53625672699991],[136.48344424700008,-21.656778267999982],[136.15728763100003,-21.837118100999874],[135.9647521290001,-21.968420110999944],[135.78422538100028,-22.154865320999875],[135.72991936500011,-22.252164799999946],[135.7315826700002,-22.38088032299993],[135.80221546000007,-22.488317378999966],[136.02500912900007,-22.655254379999974],[136.1999054170002,-22.758237794999957],[136.00704956000015,-22.936164812999948],[135.9492948940001,-23.11601832599996],[135.98548895800002,-23.233633023999914],[135.95527655600006,-23.2874813869999],[135.87922671000013,-23.276710474999902],[135.6999359570001,-23.322370556999886],[135.61517329000014,-23.402357047999942],[135.58212277600023,-23.54579756199996],[135.57760627200014,-23.69474029299988],[135.5023956220001,-23.768478409999943],[135.42126466700006,-23.925169037999922],[135.32151800700012,-24.00530807799987],[135.17367548400034,-24.000347164999937],[135.03378319600017,-23.93434722199993],[134.82948285600014,-23.867116981999914],[134.67959598700008,-23.76094056499994],[134.45211784000003,-23.726932500999908],[134.37669378700002,-23.781656269999928],[134.23300164700004,-23.778303173999973],[134.19857784100031,-23.745365143999948],[134.0423737000001,-23.76100728399996],[134.05531317900022,-23.969444261999968],[134.10275273900015,-24.031055439999932],[134.22644046100015,-24.0640201249999],[134.2648010790001,-24.108932540999945],[134.34794620700006,-24.382150733999936],[134.31423955700006,-24.564016407999873],[134.34750364200022,-24.655549975999975],[134.48863226100002,-24.778221140999904],[134.608169599,-24.92086604499991],[134.63627630100018,-25.025630949999936],[134.6567078600002,-25.222360419999973],[134.57200621400023,-25.285024701999816],[134.44905090300017,-25.314653388999943],[134.42254631900005,-25.47090513899991],[134.49890143300013,-25.517511369999966],[134.6658785000002,-25.51259236699991],[134.77471918900017,-25.557413085999883],[134.9004363370001,-25.66292196799992],[135.07646372300007,-25.860402244999875],[135.26317740700006,-25.837828006999928],[135.25214208600016,-25.973010684999963],[135.37457722100032,-26.091575577999947],[135.52909629200008,-26.01831208899995],[135.65319870700023,-26.001782736999814],[135.72188146200006,-26.04201336899996],[135.79408341500005,-25.981809451999936],[135.87148090200014,-25.979495939999936],[135.97699993800018,-26.18658009399985],[135.8710857760001,-26.173868188999904],[135.91458163100015,-26.26699971599993],[135.8992033950002,-26.31940522399998],[135.94334184700017,-26.41544050599998],[135.91457120100017,-26.521572127999832],[135.94593114300005,-26.68167811799998],[136.04118297300022,-26.706284200999903],[136.08062087200005,-26.850139838999837],[136.21573275900005,-26.90899011599987],[136.27338869400035,-27.00661781399998],[136.45575450100023,-27.053479122999875],[136.54680028000007,-27.10716060699997],[136.62785615100017,-27.090354537999872],[136.73657831000014,-27.437467011999956],[136.84454268700006,-27.546400016999883],[136.9054286370001,-27.746970060999956],[136.87260590800008,-27.84205406299992],[136.8025801030002,-27.940205750999894],[136.80723848100013,-28.07425693899995],[136.7550886050002,-28.153971456999955],[136.6771402500002,-28.197927083999957],[136.41182280100008,-28.240624913999966],[136.53935888600006,-28.350311116999933],[136.64969783200002,-28.340114523999944],[136.7299271730002,-28.409027081999966],[136.75190047600006,-28.499740308999947],[136.70139633100018,-28.53925591999996],[136.6022758470001,-28.524647753999886],[136.5517865180002,-28.590066351999894],[136.44910373200014,-28.65720866399994],[136.4691674510001,-28.713708505999875],[136.3679026770002,-28.841160425999874],[136.2888119700002,-28.85592268099998],[136.2013075990002,-28.799715615999958],[136.03732824800022,-28.81158632599994],[135.96011128600026,-28.71960773299992],[135.9381607930003,-28.542848732999914],[135.85144252400016,-28.490931690999957],[135.76467144900016,-28.49059120399994],[135.762956765,-28.420001543999945],[135.85421012600023,-28.310452948999966],[135.78940185200008,-28.10788786899991],[135.72656728000015,-28.110100516999864],[135.61606142000005,-28.266353368999944],[135.68379030100004,-28.36013410799984],[135.6270840120003,-28.416772619999904],[135.62128550400018,-28.555888809999942],[135.67371800700016,-28.63274337099989],[135.67430873500018,-28.734911651999937],[135.7159517890001,-28.799669233999964],[135.63684418000003,-28.869012527999928],[135.59687976500004,-28.96820952899992],[135.4440556950002,-28.97144849299997],[135.33863010000016,-28.92390003099996],[135.28692236000018,-28.98775526199995],[135.46574220500008,-29.08474810399997],[135.52313050200007,-29.07140778099989],[135.53104006400008,-29.219576287999928],[135.60627589600006,-29.21541982799988],[135.70015757700003,-29.301174936999928],[135.92626874000018,-29.2186788759999],[135.97106885100015,-29.277523188999965],[136.04607896000005,-29.19856252799991],[136.15760338600012,-29.239648003999946],[136.33173885600013,-29.244822728999964],[136.38906950500018,-29.141578992999882],[136.51900389200023,-29.16132140299993],[136.56715018700015,-29.125011626999935],[136.75025313300011,-29.267221502999973],[136.85083727000017,-29.30114910799989],[137.01370778200032,-29.314076076999868],[137.16776989000005,-29.473558854999965],[137.2406308520001,-29.50671537799991],[137.29829006100022,-29.450343530999874],[137.4055358600002,-29.430575422999937],[137.4948582180001,-29.35484737799993],[137.65100395200022,-29.301336404999972],[137.76368033800009,-29.214181414999928],[137.86735806700005,-29.059543802999883],[137.9382611750002,-29.07277927699988],[137.9730209410002,-29.14124443499992],[138.10270744000013,-29.079777028999956],[138.18339119200004,-29.070388060999903],[138.19444396200004,-29.201960660999873],[138.29473022000002,-29.183496550999905],[138.40572685500013,-29.121384967999973],[138.43299768500003,-29.011041709999972],[138.41817833700009,-28.94467886299998],[138.44678466400023,-28.754246633999912],[138.5075145820001,-28.76602410499987],[138.7009228830002,-28.625984450999965],[138.8326361290001,-28.57637069999987],[138.90436731500017,-28.74668894799987],[138.88866194900004,-28.835828808999963],[138.9461296410002,-28.93007336499994],[139.00935590500023,-28.95336225799997],[138.95838094400006,-29.02976459899992],[139.01543882500005,-29.076100478999876],[139.15900909400023,-28.98514866599993],[139.20898059600006,-29.06099362499998],[139.3623293710001,-29.127225138999904],[139.4560058310003,-29.212724436999906],[139.63182468200011,-29.332607030999952],[139.80807870600006,-29.488074433999884],[139.86920043700025,-29.48613994799996],[139.9547826690001,-29.543053497999892],[139.9779143820001,-29.62376748299988],[139.96478517800017,-29.723388625999917],[140.03385714,-29.802841592999982],[140.10938106700007,-29.80617419099991],[140.1429216500003,-29.886847629999863],[140.1112900070001,-30.072679995999977],[140.04188343500016,-30.12514053699988],[139.9053855960001,-30.32368004499989],[139.8245187660001,-30.495130144999962],[139.63958500900014,-30.61212285199997],[139.5099327680001,-30.835317158999885],[139.59624299900008,-31.025450380999814],[139.80247092900015,-31.224117823999848],[139.93491398800006,-31.175192964999837],[140.00726669800008,-31.226383339999984],[140.10040508600002,-31.18938000199995],[140.24041771400005,-31.311695940999982],[140.3167532760002,-31.283345232999977],[140.380784682,-31.373352533999935],[140.49196521400006,-31.35748305999988],[140.60737889400014,-31.285007758999882],[140.77916728700018,-31.21795907699982],[140.9356112700002,-31.120554956999968],[140.96244191400012,-31.24433434599996],[141.02884002100006,-31.298271429999886],[141.1038158890002,-31.181560226999977],[141.12621678100004,-30.98069938799989],[141.35436108500016,-30.881796674999975],[141.43231781600025,-30.757749908999926],[141.4528100880001,-30.66896244999998],[141.4277546740002,-30.588143927999965],[141.52565551600003,-30.587005356999896],[141.5791527780001,-30.50618666099996],[141.6895656600002,-30.443581723999955],[141.83754640200016,-30.56310240199997],[141.89478229400004,-30.50361556599995],[141.97196066800018,-30.359623149999948],[142.02193334100002,-30.309793086999946],[142.15846934900014,-30.288979614999903],[142.27603855400014,-30.303317025999945],[142.43277650100026,-30.240116514999954],[142.54650019400003,-30.289593406999984],[142.60941998200008,-30.38617874499994],[142.70790735500032,-30.32070278599997],[142.85373578500014,-30.445193209999957],[142.82930695200014,-30.536174537999955],[142.8823928190002,-30.636841619999927],[142.96746056200016,-30.60988508699984],[142.98853235900003,-30.525222927999835],[142.87438075100022,-30.403494380999973],[142.82137137100017,-30.267552467999906],[142.68048691400008,-30.21623834199994],[142.66277121600012,-30.162126642999908],[142.74802149300012,-30.053706485999953],[142.7301228230001,-29.894440196999938],[142.81590747500002,-29.888651508999885],[142.85231472700002,-29.840284639999936],[143.05002263300014,-29.847095816999968],[143.06268688600017,-29.75535190399995],[143.22064470500004,-29.582078191999926],[143.3165146760001,-29.365530529999944],[143.33657914600008,-29.19560830899991],[143.51835725500018,-29.187990122999906],[143.6118940670002,-29.13971473999993],[143.68867363000004,-29.149682445999872],[143.70319833300005,-28.901154103999943],[143.79530212900022,-28.79459258099996],[143.7914142630002,-28.66726636599998],[143.72879525700023,-28.64218281199993],[143.6313063470002,-28.685327247999965],[143.50604711000005,-28.543138772999953],[143.51008267400005,-28.463250127999856],[143.39171890500006,-28.45133364499992],[143.33313005500008,-28.581948047999845],[143.23774024800014,-28.56853525899993],[143.30762220000008,-28.39810886099997],[143.35053179600004,-28.22344118799998],[143.4153674910001,-28.215976809999916],[143.52344057300013,-28.149667790999956],[143.55562148700017,-28.063049833999912],[143.73219803000006,-28.080738528999973],[143.80782653600022,-27.99856298799989],[143.70149123600015,-27.958566622999967],[143.53367333000006,-27.818761967999933],[143.419085794,-27.635455393999962],[143.46190833700007,-27.45966932099998],[143.541978706,-27.338385855999945],[143.46674318400005,-27.251996951999956],[143.3219046910001,-27.206662357999903],[143.25834470200016,-27.08274525099995],[143.0285272210001,-27.064100120999967],[143.12015126100016,-26.91929833499995],[143.0538716970001,-26.794145280999828],[143.06857585700004,-26.727638703999958],[142.92337673500015,-26.544551012999875],[142.8584255000003,-26.427369669999962],[142.83771964000005,-26.316448531999924],[142.75138762900008,-26.201276417999907],[142.60146784300014,-26.09263859399988],[142.51306718900014,-26.179772539999874],[142.39162714700012,-26.193832424999925],[142.28024040100001,-26.168153347999862],[142.32918205600004,-26.01988652499989],[142.3100965540001,-25.984845502999974],[142.40051477800012,-25.866406306999977],[142.46070100500003,-25.915376232999904],[142.58662624400006,-25.89903974899994],[142.59182355200005,-25.954406735999953],[142.67401040200014,-25.993943255999966],[142.6870941530001,-25.8864791499999],[142.7423955920001,-25.81413180699991],[142.7931388170001,-25.864133485999957],[142.87129991300003,-25.798565891999942],[142.86446070600016,-25.593464771999948],[143.0023020010002,-25.540171390999888],[143.1283614450001,-25.427552869999943],[143.1715353950001,-25.43503302199997],[143.31989897300014,-25.197918865999952],[143.4985049820001,-25.173738961999902],[143.61435619500014,-25.110972267999955],[143.65081576900002,-25.021355960999983],[143.4695070240001,-25.108208440999874],[143.35542656300015,-25.13265386799992],[143.3320751030002,-25.077506894999885],[143.24453230900008,-25.052240249999898],[143.30470357600007,-24.96753998199995],[143.39224089200002,-24.9242631489999],[143.30235474300014,-24.792652958999952],[143.13616047300013,-24.798636594999948],[143.11486811200007,-24.72593738099988],[143.21130332000007,-24.61530279699997],[143.2186006950002,-24.4979684569999],[143.27112258400007,-24.450379951999878],[143.3203318430002,-24.33192859099995]],[[136.75490256900002,-28.64409676999992],[136.78209384900015,-28.58453589899989],[136.87423070800003,-28.58692351199994],[136.86147548200006,-28.71333759999993],[136.8928684120001,-28.86470017099998],[136.84001217900004,-28.881036724999944],[136.69912007900007,-29.01741660899995],[136.55310592800015,-29.065705349999973],[136.4942597270001,-28.99212454799988],[136.39622726400012,-29.054032593999978],[136.3483864640002,-28.963608208999972],[136.42220095500022,-28.944606450999913],[136.60696275300018,-28.845818259999874],[136.75490256900002,-28.64409676999992]]]]},"properties":{"objectid":634,"eco_name":"Simpson desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Australasia","eco_biome_":"AU13","nnh":2,"eco_id":214,"shape_leng":107.610390958,"shape_area":52.815132262,"nnh_name":"Nature Could Reach Half Protected","color":"#E8805D","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":586326.4273871564,"percentage":2.2224336898142663}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-113.55788485299996,43.51484613400015],[-113.67267446999995,43.391867535000074],[-113.84131178499996,43.38595066900007],[-113.95056237499995,43.33867460100015],[-114.06113798499996,43.330413367000176],[-114.17738693899992,43.37055398000007],[-114.38179428799998,43.347111050000194],[-114.79283645899989,43.421634864000055],[-114.89303631799993,43.4151969720001],[-115.0519660409999,43.33783532000007],[-115.24230829499999,43.34743367200002],[-115.31451153999996,43.29723910800004],[-115.44832995299993,43.32863820700004],[-115.6498411469999,43.26125589000014],[-115.73579069299996,43.30709358900015],[-115.92562873299994,43.461975720000055],[-116.06099405499992,43.51210015500004],[-116.10224620199995,43.614808600000174],[-116.28043594799993,43.78631365400014],[-116.38018681899996,43.82114122799999],[-116.40422743699986,43.90761627799998],[-116.28345682999998,43.91187245800006],[-116.291549912,44.01079150200013],[-116.23557929999993,44.09462048500012],[-116.26012443499997,44.182799145],[-116.20428889099998,44.33105941400004],[-116.31973209999995,44.38815712400009],[-116.29749305899986,44.52116483700007],[-116.3426537759999,44.606307112000195],[-116.323425139,44.68547095800011],[-116.47300368999987,44.725551864000124],[-116.63445298099987,44.61663819500012],[-116.73490130399995,44.60786617700012],[-116.80010317099999,44.517066736000174],[-116.77246761699985,44.41837664700017],[-116.90348643399989,44.3955897080001],[-116.996835697,44.32172661000004],[-117.06564892699993,44.36064180700015],[-117.18364831199995,44.3287273950001],[-117.30919905099995,44.357988126000066],[-117.29374720399989,44.27581161500018],[-117.38677251199988,44.23763109700019],[-117.57087279899997,44.27478516400009],[-117.57905329999994,44.1902518230001],[-117.44995174799999,44.071471046000056],[-117.76542925699994,44.07214993500003],[-117.83013561999991,43.972581804000185],[-117.820167175,43.85448079100013],[-117.98361600099992,43.89182030899997],[-118.05492720399991,43.81034880100009],[-118.21295357199995,43.816080245000194],[-118.35510897899997,43.91963985400008],[-118.41888913699995,43.86774375600015],[-118.49677539499993,43.926272919999974],[-118.65826940199997,43.94513369800018],[-118.65731568499996,43.87523143300018],[-118.56816850899992,43.7396412600001],[-118.61104837099998,43.65795169500018],[-118.69335123899998,43.633016322000174],[-118.80092863099992,43.655063389000134],[-118.9565358719999,43.62207750700003],[-119.1116142379999,43.63703368200004],[-119.09334342699992,43.53911098700007],[-119.28976821099997,43.537484483000185],[-119.37701873299989,43.571222845000136],[-119.42344672399997,43.63981999100008],[-119.59637425499994,43.62065787900019],[-119.67091790699993,43.686630459000014],[-119.87277055399994,43.64387962700005],[-119.96753041799991,43.83539157500019],[-120.11272676599998,43.84394037400011],[-120.12951575899984,43.753554854000015],[-120.22766920899994,43.69933967600008],[-120.32044351699994,43.760570778000044],[-120.33568966199994,43.87603671200009],[-120.4420693749999,43.905098318],[-120.56528832299995,43.883694315000184],[-120.713533483,43.96085621600008],[-120.76042924799998,43.92329602900014],[-120.92241084099993,43.93999300600012],[-121.09045881399999,43.86926288899997],[-121.00790265799986,43.81968949100008],[-120.79935570399994,43.75606301300019],[-120.80359060499995,43.657386345000134],[-120.76243112199995,43.56885127400011],[-120.83884674799992,43.533039060000135],[-120.97647494199992,43.54608984400011],[-121.16032500199992,43.42718248600005],[-121.19579448599995,43.36849539600007],[-121.18234819299994,43.23611889300014],[-121.26383538199997,43.111590282000066],[-121.21160734999995,43.04615889900015],[-120.98080698499996,43.06642783700016],[-120.78314322099993,42.99211158700007],[-120.81997630799992,42.908422221000194],[-120.79817981999992,42.79227401100013],[-120.67198102999998,42.698938107000174],[-120.52969576899994,42.676658545000066],[-120.47373987699996,42.50166524200006],[-120.42767337099991,42.45463377500005],[-120.30020479099989,42.46143934800011],[-120.17117643999995,42.43182699200014],[-120.09093920599992,42.30419392100009],[-120.15739269099998,42.23337551200012],[-120.15940217699995,42.10107265400012],[-120.07351513899994,42.030890333],[-120.11556217099997,41.93672594000003],[-120.18224397099993,41.88632048700009],[-120.17652477699994,41.79170357600009],[-120.22600469599996,41.69640640100016],[-120.18904888799989,41.58494344400009],[-120.199195466,41.49702473500008],[-120.15829878799997,41.42477204300002],[-120.11425472499997,41.21445342200019],[-120.0586335289999,41.15990449900005],[-120.10756339599999,41.03663299500005],[-120.20020845899995,40.99603181700013],[-120.22138658899996,40.92427810100014],[-120.47164826999989,40.891197249000186],[-120.46716123399989,40.97987136300003],[-120.537862008,41.051822690000165],[-120.60429644999994,40.93132750000012],[-120.7619613729999,40.91054485500018],[-120.75329949399998,40.84161955400015],[-120.56119481099984,40.808760924000126],[-120.50654913299996,40.83154373600013],[-120.32087060299995,40.77923759300012],[-120.21150559299997,40.787427778],[-120.15430852299994,40.72812016600005],[-120.16110492099989,40.652980514000035],[-120.26348413799997,40.67070692600004],[-120.32559707899986,40.59280248600004],[-120.46079101999987,40.57273790600004],[-120.52683373299993,40.41508427000008],[-120.35904323999989,40.38408281000005],[-120.27653681699991,40.40516662600015],[-120.1898145589999,40.32166786500011],[-120.00448575599995,40.25981643600011],[-119.92936101699996,40.26360715200008],[-119.89566654099997,40.39182701600009],[-119.91952421899998,40.515743579000116],[-119.85396892499989,40.54458885400015],[-119.8372682129999,40.688988958000095],[-119.67095223699994,40.655879090999974],[-119.49221321399989,40.79645289200016],[-119.37176400599998,40.676499657000136],[-119.30383935299989,40.74657364900003],[-119.35810172599992,40.78648846100003],[-119.41088429299998,40.90815549500019],[-119.33494189699991,40.982016620000024],[-119.250270904,40.92585856500017],[-119.16177502899995,41.03291041400013],[-119.15713308999983,41.14852010000004],[-119.19015428599988,41.31411510800001],[-119.25861948799991,41.339252625000086],[-119.20434024499991,41.41834663700007],[-119.11751582899996,41.27157394000017],[-119.00648144099989,41.153978781000035],[-118.87756794599994,41.284574239000165],[-118.8874934829999,41.39537371400007],[-118.78942471299996,41.497932733000084],[-118.70774631799992,41.51952199200019],[-118.60971785999993,41.473544194],[-118.56023246799992,41.55369744700016],[-118.59654308199993,41.655477586000075],[-118.58530449199998,41.82870844700011],[-118.47321015299997,41.754017268000155],[-118.43103119399996,41.67586559200015],[-118.26599093499993,41.55471630400018],[-118.2690325559999,41.66695553000011],[-118.3271535159999,41.880879870000115],[-118.23803032899991,41.90603572400016],[-118.05983533199992,41.58816801800009],[-117.99481528199993,41.544569028000126],[-117.97170933799993,41.71287708800003],[-117.87437506799995,41.81073313100012],[-117.70266588899995,41.762259167000025],[-117.76922960599995,41.5648956980001],[-117.76393367599991,41.39071503700018],[-117.68470337699995,41.31732368200011],[-117.61989843799995,41.33864298400016],[-117.58489910299994,41.541899619000105],[-117.50092206899996,41.57827018200004],[-117.383549282,41.54463423600015],[-117.32782329899999,41.45452244100011],[-117.20885740499995,41.514886454000134],[-117.11172181399996,41.516720073000045],[-117.05872038399997,41.44062964400018],[-117.10336317699989,41.31797638100005],[-116.98699343399988,41.16544788300007],[-116.73314598099995,41.25784317100016],[-116.65053379699998,41.34339535400011],[-116.50596501999996,41.36187933400004],[-116.38247522199998,41.31233874600014],[-116.39413923899997,41.241896323],[-116.30002870299995,41.22255440000009],[-116.34579939399993,41.093206726000176],[-116.27118373899992,40.97061154400012],[-116.16987279699998,41.12741322400018],[-116.17635185299997,41.17284556300001],[-115.96339855099995,41.28439483300008],[-115.9291813609999,41.340302314000155],[-115.9454494499999,41.48998696000018],[-115.89503316799994,41.61741341100003],[-115.78165447499998,41.61148019300009],[-115.59776242699996,41.503540367000085],[-115.48112494399993,41.60779803500003],[-115.3923715219999,41.517475196000134],[-115.34068539599997,41.55347620000009],[-115.2726077339999,41.681561006000095],[-115.14438617999986,41.62367699800018],[-115.11997803399993,41.49746036700009],[-115.01909522399995,41.36705423700016],[-114.94896829599992,41.1754590810001],[-114.79349611199996,41.23879131100017],[-114.69960636199994,41.184819237000056],[-114.62396405099997,41.20464287800007],[-114.53088824899999,41.16721574600007],[-114.44190968699996,41.088388081000176],[-114.25326530299998,41.15435884300007],[-114.25708581299995,41.25052062100019],[-114.18293683599995,41.44740950900007],[-114.10342961099997,41.46660176000006],[-114.0379174869999,41.41734623600013],[-113.95180370499997,41.4693952020001],[-113.97879725599995,41.62962698300015],[-113.88235662099999,41.724520416000075],[-113.84443368199999,41.62318552600004],[-113.85160450099988,41.49467940000011],[-113.68269734299986,41.45496964400007],[-113.68790573499996,41.63995123300015],[-113.58093841499993,41.800363527000115],[-113.24407850399996,41.81349897900003],[-113.17247901799993,41.84601616900005],[-113.1358481339999,41.96316391700003],[-112.91927332099988,42.10695124300008],[-112.83273346499993,42.056213087],[-112.7109060649999,42.11573644800018],[-112.62006130099996,42.09334013900008],[-112.6324472789999,42.01948614000014],[-112.39764504599992,41.992855819000056],[-112.4404937079999,42.0761660500001],[-112.37592378999994,42.192168240000115],[-112.38379541499995,42.27800049000007],[-112.2332132009999,42.22220920600006],[-112.20727530199997,42.074561863000156],[-112.15191921899998,41.90953501600018],[-112.07814485399996,42.07518269400009],[-111.99899496599994,42.060809463],[-111.99152277299987,42.15656046600003],[-112.03518611599992,42.33968930900011],[-111.85854739699994,42.27945730000016],[-111.80077426499992,42.16566833600007],[-111.80449479099991,42.066114262999974],[-111.73424774699998,42.03614508000004],[-111.73861013299995,42.15799665600019],[-111.65300384199992,42.44197691900018],[-111.70379121199994,42.63325267500011],[-111.54136011899999,42.596349879000115],[-111.49101383699997,42.630076646000134],[-111.53944953599989,42.72042729200018],[-111.47732897999998,42.993158883000035],[-111.57064243199994,43.03152863300005],[-111.72039104399994,43.21268909800017],[-111.6986071369999,43.417530720000116],[-111.63636167499999,43.54905086100007],[-111.43280920199999,43.498572852000166],[-111.48954452499999,43.6002733900001],[-111.64333345399996,43.6048405410001],[-111.66072997899988,43.65906681000018],[-111.46549667599993,43.72358208600002],[-111.37277086799998,43.814733297000146],[-111.29144760999998,43.781619318000025],[-111.16404042399995,43.57659712800012],[-111.10193256399998,43.569012520000115],[-111.00960423299989,43.761782033000145],[-111.09646227399998,43.86656622900017],[-111.17656244799997,44.043234514],[-111.27913206499983,44.105819767000185],[-111.50780121399993,44.14015260200006],[-111.67928680099999,44.308807221000166],[-111.688053089,44.391321742000116],[-111.46548373699994,44.426050978000035],[-111.60468674699985,44.496710271000154],[-111.77855905099983,44.44617793400016],[-111.8903763749999,44.48032813000009],[-111.94087803699995,44.39095194000009],[-111.9965189859999,44.34876405400013],[-112.18131328099986,44.36176809400018],[-112.21460526499993,44.32476773400009],[-112.38504853699999,44.29356125000004],[-112.41473723699983,44.21705723800011],[-112.69635791499996,44.01799191499998],[-112.83836000799988,43.809972875000085],[-113.09548720599997,43.631532766000134],[-113.276442681,43.57772952900012],[-113.55788485299996,43.51484613400015]],[[-118.59213160299987,42.78055917699999],[-118.52174741799996,42.740972248000105],[-118.53397497299994,42.63875725600019],[-118.63469278599996,42.59938877400015],[-118.73708380899984,42.71878275200015],[-118.67071259999994,42.779064931],[-118.59213160299987,42.78055917699999]],[[-115.43097767199993,41.823702388000015],[-115.30977795299998,41.828125125000156],[-115.29009181999999,41.73757007200015],[-115.42963568199991,41.75287853000009],[-115.43097767199993,41.823702388000015]]]},"properties":{"objectid":637,"eco_name":"Snake-Columbia shrub steppe","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Nearctic","eco_biome_":"NE13","nnh":2,"eco_id":434,"shape_leng":53.6537018765,"shape_area":21.2168209749,"nnh_name":"Nature Could Reach Half Protected","color":"#C4694E","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":193296.23994005242,"percentage":0.7326773205014239}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[53.56176354900009,12.704379619],[53.516441593000025,12.711706072000027],[53.39641961199999,12.655039042999988],[53.39615256500019,12.570688598],[53.305702610000026,12.53034331300006],[53.4649616210001,12.441453564000028],[53.54557759200014,12.339836231000106],[53.751701499000035,12.299508213000081],[54.03221546800006,12.349309795000067],[54.13417847000011,12.34854184400001],[54.26068150599997,12.44018454500008],[54.40362950000002,12.465508621000026],[54.466365531000065,12.543698367000161],[54.085849590000066,12.70126389700016],[53.845870505000164,12.60307342200008],[53.76974455100009,12.615519710000171],[53.646049620999975,12.702671889000158],[53.56176354900009,12.704379619]]]},"properties":{"objectid":639,"eco_name":"Socotra Island xeric shrublands","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Afrotropic","eco_biome_":"AF07","nnh":4,"eco_id":105,"shape_leng":4.1504572991,"shape_area":0.316264484732,"nnh_name":"Nature Imperiled","color":"#A80000","color_bio":"#CC6767","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":3826.3642442074934,"percentage":0.014503594599552777}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[46.54083333400018,7.021666667000034],[46.63333333300011,7.125000000000171],[46.59166666699997,7.225],[46.66666666600008,7.225],[46.58333333300004,7.416666667000129],[46.5,7.516666667000095],[46.625000000000114,7.616666667000061],[46.616666666000185,7.766666666000162],[46.58333333300004,7.875000000000171],[46.49166666700006,7.975000000000136],[46.45000000000016,7.975000000000136],[46.316666667000106,8.1],[46.24166666700012,8.133333333000166],[46.09083333400014,8.307500000000175],[45.514166666,8.4975],[44.87333333300012,8.70916666700009],[44.27166666600016,8.911666666000144],[44.00666666700016,8.99583333400011],[43.6475,9.358333334000065],[43.48500000000013,9.40583333300009],[43.39833333300004,9.553333333000012],[43.29916666700012,9.610833333000187],[43.25666666600006,9.84333333300009],[43.201666666000165,9.87177626100015],[43.00843865100006,9.745173154000042],[42.8725,9.6991666670001],[42.92169189500015,9.640000000000157],[42.94916666600011,9.52250000000015],[42.90083333400014,9.476666667000131],[42.70916666700009,9.478333333000023],[42.71666666600004,9.355833334000124],[42.608333333000076,9.430833333000066],[42.55166666700018,9.431666666000183],[42.41416666700002,9.361666666000133],[42.305,9.35333333400007],[42.20333333300016,9.388333333000048],[42.1400000000001,9.31],[42.14416666700015,9.1725],[42.040000000000134,9.259166666000112],[41.958333332999985,9.275],[41.91416666700013,9.160833333000141],[41.9025,9.011666667000156],[41.75416666700016,8.965833333000091],[41.660833333000085,8.970833334000133],[41.516666667000095,8.945000000000164],[41.594166667000025,9.110000000000127],[41.65000000000015,9.289166666000028],[41.50583333300011,9.039166666000085],[41.459166666000044,9.158333333000087],[41.33583333300015,8.98916666700012],[41.31,9.071666667000045],[41.16666666600008,8.998333333000062],[41.099166665999974,8.93833333300006],[40.9625,8.96000000000015],[40.99000000000012,8.834166667000147],[40.78,8.7475],[40.735000000000184,8.908333333000087],[40.49833333300006,8.818333333000169],[40.36916666700017,8.69833333300005],[40.31333333400005,8.581666667000093],[40.22416666700019,8.5275],[40.14416666699998,8.355833333000078],[40.045000000000186,8.306666666000126],[40.0425,8.160833334000074],[40.1325,8.08083333400009],[39.98916666700018,8.081666667000036],[39.97416666700002,7.9725],[40.05416666700006,7.903333334000081],[40.00500000000011,7.855833332999964],[40.0775,7.808333333000178],[40.14416666699998,7.835833333000039],[40.18333333400017,7.716666666000094],[40.17083333300019,7.62083333400011],[40.1,7.498333333],[39.99166666700012,7.494166666000126],[39.92000000000013,7.540833333000023],[39.81750000000011,7.55],[39.6975,7.655],[39.62000000000012,7.661666667000134],[39.705,7.528333334000024],[39.585833333000096,7.519166666999979],[39.57833333400015,7.453333333000103],[39.69833333400004,7.420000000000186],[39.77166666700009,7.3575],[39.86083333300019,7.390833332999989],[39.93416666700011,7.458333333000098],[40.18,7.41],[40.278333333000035,7.485],[40.32250000000016,7.449166666000053],[40.42500000000018,7.436666666],[40.600000000000136,7.5325],[40.74166666700012,7.425000000000182],[40.73916666600013,7.358333334000065],[40.795000000000186,7.318333333999988],[40.80000000000018,7.243333333000066],[40.74666666700011,7.1225],[40.64166666699998,7.07666666700004],[40.59500000000014,7.102500000000134],[40.497500000000116,7.085833332999982],[40.47333333400019,6.966666666000037],[40.540833333000194,6.909166667000022],[40.41916666600014,6.88],[40.48,6.73583333300013],[40.40166666700003,6.72],[40.299166666000076,6.880833333000112],[40.20666666700015,6.89333333400009],[40.060833334000165,6.868333333000066],[39.98416666700018,6.695833333000053],[39.995833333000064,6.641666666999981],[39.910833333000085,6.515000000000157],[39.79,6.525833333000094],[39.59166666700014,6.454166666999981],[39.53666666700008,6.322500000000161],[39.3975,6.1625],[39.29500000000013,6.186666667000168],[39.28916666700002,6.075000000000102],[39.215000000000146,6.118333333000066],[39.108333333000076,6.232500000000186],[39.171666666000135,6.354166667000072],[39.185833333000176,6.450000000000102],[39.12583333400005,6.33],[39.06333333300017,6.310000000000116],[39.0725,6.19583333300011],[39.231666666000194,6.081666667000093],[39.20083333400004,6.0475],[39.12,6.151666666000153],[38.96916666700008,6.167500000000189],[38.929166667000175,6.294166667000184],[38.7691666660001,6.415],[38.776666667000086,6.4425],[38.75000000000017,6.440000000000168],[38.886666666999986,6.29500000000013],[38.932500000000175,6.187500000000114],[38.893333333000044,6.150833333000037],[38.91583333300008,6.028333333000091],[39.024166667000145,5.938333333000116],[39.0725,6.02250000000015],[39.14333333300016,5.983333333000189],[39.275,5.991666667000118],[39.370000000000175,5.943333333000112],[39.34083333300015,5.900833333000094],[39.3575,5.794166666000024],[39.265,5.688333333000173],[39.21333333400008,5.675833334000174],[39.15416666700003,5.5975],[39.16250000000019,5.53416666600009],[39.12416666600018,5.422500000000127],[39.023333333000096,5.531666666000035],[38.99666666700011,5.643333333000101],[38.93083333400011,5.661666666000087],[38.7675,5.56666666700005],[38.75083333300012,5.618333333000123],[38.606666666000194,5.671666666000021],[38.445000000000164,5.629166667000163],[38.330833333000044,5.437500000000114],[38.28416666600015,5.4425],[38.25500000000011,5.4575],[38.215,5.5275],[38.111666667,5.492500000000121],[38.116666667,5.680000000000121],[38.197500000000105,5.6975],[38.192500000000166,5.815833333000114],[38.190833334000104,5.819166666000172],[38.158333333000144,5.995833333000064],[38.0975,6.017500000000155],[38.06916666700005,6.172500000000127],[38.17000000000013,6.241666666000128],[38.22083333300009,6.322500000000161],[38.289166667000075,6.280833334000022],[38.345833334000076,6.386666667000043],[38.338333334000026,6.531666667000081],[38.29583333300013,6.547500000000184],[38.34583333299997,6.664166666000142],[38.46916666600009,6.7575],[38.40416666700014,6.834166666999977],[38.35083333300014,6.834166666999977],[38.2875,6.759166667000159],[38.24083333400017,6.792500000000132],[38.218333334000135,6.940833333000171],[38.23083333400018,7.030833333000146],[38.14166666600005,7.230833333000021],[38.11333333300007,7.33416666700009],[38.035,7.3241666670001],[37.999166667000054,7.115833333000126],[37.94583333300005,7.013333333000105],[37.935000000000116,6.9125],[37.91083333400019,6.875833333000116],[37.9275,6.710833334000085],[37.83583333400003,6.6675],[37.77166666700009,6.5925],[37.737500000000125,6.460833333000039],[37.77500000000015,6.310833333000062],[37.72666666700002,6.198333333000051],[37.62833333300017,6.16],[37.564166667000165,6.10333333300008],[37.560000000000116,6.018333333000101],[37.415,5.865],[37.40916666600009,5.759166666000112],[37.43833333300006,5.588333333000037],[37.41416666700013,5.406666666000149],[37.47833333400007,5.385833334000154],[37.44,5.247500000000173],[37.31000000000017,5.205833334000033],[37.135,5.3575],[37.108333334,5.455833333000101],[37.00416666600012,5.406666667000025],[36.987500000000125,5.49],[36.925833334000174,5.546666667000068],[36.96666666700003,5.624166666000065],[36.88666666700004,5.645],[36.828333333000046,5.605000000000132],[36.79250000000019,5.45333333300016],[36.875000000000114,5.419166667000127],[36.91500000000019,5.345],[36.826666666999984,5.085833333000039],[36.77000000000015,5.068333333000169],[36.71416666700003,4.984166667000068],[36.74333333400017,4.7725],[36.65583333300003,4.710833333000039],[36.68250000000012,4.631666667000047],[36.64416666700015,4.580833333000157],[36.670833334000065,4.5225],[36.63666666600017,4.447500000000105],[36.675,4.431666667000172],[36.853333333000194,4.445000000000164],[37.04,4.375000000000171],[37.195,4.260833334000097],[37.985000000000184,3.735833334000063],[38.03583333300003,3.64416666700015],[38.083333333000155,3.653333333000091],[38.12666666600006,3.568333333000112],[38.204166667000095,3.61500000000018],[38.229166667000186,3.524166667000088],[38.32916666700015,3.450833333000105],[38.34583333299997,3.405833333000032],[38.439166666000176,3.39333333400009],[38.57250000000016,3.185000000000116],[38.5741666670001,3.116666667000061],[38.639166667000154,3.101666667000075],[38.66583333300014,3.020833333000041],[38.72250000000014,2.980833332999964],[38.80916666700011,3.064166666000176],[38.7625,3.161666667000134],[38.684166666000124,3.041666667000072],[38.60500000000013,3.296666667000181],[38.73166666600008,3.378333333000057],[38.75083333300012,3.27],[38.903333333000035,3.143333333000044],[38.900833334000026,2.955833333000044],[38.9458333340001,2.8775],[38.9125,2.791666667000072],[38.968333334000135,2.741666667000061],[38.99166666700012,3.045],[39.06333333300017,3.0975],[39.12166666600007,2.977500000000134],[39.09333333300009,2.923333333000187],[39.11416666700012,2.839166666000153],[39.09,2.74583333400011],[39.0975,2.653333333000148],[39.066666666,2.564166667000165],[39.09333333300009,2.465833333000091],[39.1525,2.505000000000109],[39.17416666700012,2.609166667000068],[39.288333333000026,2.69583333300011],[39.27,2.81666666700005],[39.325833333,2.900833333000151],[39.406666667000025,2.885833334000097],[39.370000000000175,2.6475],[39.36833333300018,2.523333333000096],[39.412500000000136,2.444166667000104],[39.42083333300013,2.325833333000105],[39.47916666700013,2.13666666600011],[39.35333333300002,2.100833333000082],[39.30166666700012,2.155],[39.28916666700002,2.2525],[39.09416666700014,2.195833334000099],[39.06416666700005,2.150833333000151],[39.0841666660001,1.993333333000066],[39.03333333300009,1.949166667000043],[38.895,2.132500000000164],[38.8275000000001,2.29],[38.76083333399998,2.299166667000065],[38.71,2.256666667000104],[38.70833333400003,2.165833334000183],[38.73916666600019,2.056666667000059],[38.75583333300011,1.90416666700014],[38.68333333300018,1.915833333000137],[38.545833333000076,1.854166667000072],[38.48750000000018,1.820833333],[38.38916666600011,1.755],[38.38083333300011,1.692500000000109],[38.5125000000001,1.7125],[38.5741666670001,1.679166667000118],[38.9075,1.310833333000119],[39.051666666000074,1.27916666700014],[39.369166666000126,1.173333333000187],[39.375000000000114,1.114166667000177],[39.5158333330001,0.930833333000123],[39.59,0.755833333],[39.66583333400018,0.637500000000102],[39.80583333300012,0.508333333000166],[40.1375,0.3475],[40.29583333400018,0.225],[40.384166666000056,0.198333334000097],[40.51083333300011,0.255833333000112],[40.5825,0.315],[40.780833332999975,0.359166667000181],[40.98833333300013,0.464166667000086],[41.14552849000012,0.453832051000177],[41.391898201000174,0.459991294000019],[41.598232834999976,0.429195080000113],[42.004742858999975,0.339886059000037],[42.187938722000126,0.282089264000149],[42.33260995100005,0.287799970000151],[42.35259742300019,0.347762388000092],[42.4925097310001,0.536215699000024],[42.52106326300003,0.690404772000136],[42.64193988200009,0.803667116000156],[42.724745125000084,0.815088529000093],[42.76091293200011,0.875050947000034],[42.75520222600011,0.953097268000079],[42.68857731700018,1.113948832000176],[42.77138256000006,1.144405932000097],[42.87798241400003,1.084443515000089],[42.90939129900005,1.224355822000064],[42.905163669000046,1.427637936000053],[42.98796891200004,1.476178940000182],[43.10146920200003,1.477606617000106],[43.13430576400003,1.533999843000174],[43.16571464900005,1.709604065000178],[43.23781231800018,1.809541427000113],[43.40913351000006,1.773849512000027],[43.49550794400005,1.780987895000123],[43.63827560500005,1.890205155000103],[43.67539519700017,2.097932101000026],[43.76533882300009,2.130054825000059],[43.93309082300004,2.112208867000163],[44.0701477770001,2.000136254000097],[44.22590084800015,2.009130236000146],[44.406796382000095,2.151286430000084],[44.499595361000104,2.154855622000127],[44.733377405000056,2.131655877000014],[44.90826778900015,2.267285153999978],[45.090754861000164,2.263119767000035],[45.19184604900016,2.34986315600014],[45.23438028000004,2.353676708000023],[45.43846788900004,2.573778861000051],[45.39544481600018,2.815050285000041],[45.43256440700003,3.074887427000021],[45.47502787200011,3.207485231000078],[45.53596117700005,3.268418536000127],[45.61530701300006,3.224793470000122],[45.693829226000105,3.064893691000179],[45.71297054700017,2.760292083000138],[45.740096402,2.636084219000054],[45.81861861500005,2.67891451700018],[45.852882854000086,2.887355301000184],[46.02563172300006,3.031550638000169],[46.01706566300004,3.140054060000068],[46.17125473600004,3.284249397],[46.145556557000134,3.435583117000078],[46.16982705999999,3.501256240000089],[46.331154516000026,3.558363304000068],[46.481060559000184,3.535520479000184],[46.58528095100007,3.552652598000066],[46.678079931000184,3.709697024000093],[46.78658335200004,3.738250557000185],[46.86796091900004,3.902433366000082],[46.96932595800001,3.932414575000166],[47.02928837500008,4.035207290000187],[47.16348997600005,4.212239189000115],[47.34623258100015,4.376421998000069],[47.598622009999985,4.496870314000091],[47.68190314500015,4.60870498200012],[47.71402586900018,4.769318600000076],[47.80135208799999,4.923745619000158],[47.99072265600006,5.020690918000071],[48.10687255900018,5.144897461000085],[48.159912109000174,5.106079102000024],[48.22063981000014,5.306633560000137],[48.457713721,5.791557470000157],[48.570862633000104,5.963974860000121],[48.65865194700012,6.195503062000057],[48.69427490200013,6.24890136700003],[48.89007568400001,6.429687500000057],[49.05773776600017,6.537551169000096],[48.562423287000115,6.553770188999977],[47.5749469700001,6.553770188999977],[47.19423320900012,6.541872884000156],[46.718341008000095,6.541872884000156],[46.59916666700008,6.5775000000001],[46.52415078700017,6.638349481000148],[46.484166667000125,6.763333334000038],[46.54333333400007,6.877500000000111],[46.51583333300016,6.935833333000176],[46.54083333400018,7.021666667000034]],[[40.6525,8.820000000000107],[40.71666666700003,8.814166667],[40.73666666700012,8.730833334000181],[40.636666666999986,8.666666667000072],[40.5875,8.71],[40.6525,8.820000000000107]],[[43.069166667000104,9.457500000000152],[43.15750000000014,9.425000000000125],[43.16416666600014,9.351666667000075],[43.08,9.3275000000001],[43.025833334000026,9.435000000000116],[43.069166667000104,9.457500000000152]],[[38.049166667000065,5.619079590000183],[38.09583333400013,5.528333334000081],[38.02583333300004,5.370000000000175],[37.9533333330001,5.320833334000099],[37.911666667000134,5.42],[37.97833333300002,5.560833334000108],[38.049166667000065,5.619079590000183]],[[37.882500000000164,6.039166665999971],[37.905,5.755000000000166],[37.87333333300012,5.590833333000091],[37.89166666700004,5.4475],[37.77833333400008,5.48],[37.80250000000018,5.723333334000188],[37.751666667000165,5.849166666999963],[37.878333333000114,5.985833333000073],[37.882500000000164,6.039166665999971]],[[38.04250000000013,4.970092773000147],[38.12083333300018,4.914166667000018],[38.16000000000014,4.83166666700015],[38.1458333330001,4.745833333000121],[38.07500000000016,4.780833334000135],[38.058333333000064,4.855833334000124],[37.98416666700007,4.9025],[38.04250000000013,4.970092773000147]],[[43.98787665800006,3.762852860000123],[44.142533682909914,3.732682457863177],[44.25639933037883,3.674411392339437],[44.31560677641346,3.54657697449619],[44.314640216761404,3.415563673370286],[44.279745362988535,3.265700977072015],[44.364351202420664,3.124955703828334],[44.35166820565371,2.979456335358407],[44.28484554481844,2.921904824651619],[44.05988968949055,2.893185829174058],[43.932077402425534,2.958526607843737],[43.8081415398085,2.972364510584214],[43.73799938530891,3.050377843024478],[43.711536407278174,3.154861273625272],[43.72630471549809,3.255410284344919],[43.582024902275634,3.412820379467519],[43.59893986388056,3.513450013083968],[43.69694807350339,3.634392725170585],[43.90436875975439,3.739904366463236],[43.98787665800006,3.762852860000123]],[[43.423960739,3.005210511000087],[43.354613276416615,2.871550428293801],[43.24354911995084,2.768197267512278],[43.1670902628091,2.735446732977778],[43.06775225835372,2.800799268320077],[43.064720811068696,2.899263748106137],[43.155886092368405,3.041915725475576],[43.35075527936323,3.15525566403835],[43.44267238077771,3.097019910987569],[43.423960739,3.005210511000087]],[[39.49916666700011,2.736666667000065],[39.52166666700015,2.660833334000131],[39.52500000000015,2.500000000000114],[39.565,2.431666666000126],[39.55,2.275],[39.4625,2.2650000000001],[39.43666666700017,2.355833334000124],[39.446666666000056,2.434166667000113],[39.41666666600008,2.516666667000038],[39.41166666700019,2.667500000000132],[39.49916666700011,2.736666667000065]]]},"properties":{"objectid":642,"eco_name":"Somali Acacia-Commiphora bushlands and thickets","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Afrotropic","eco_biome_":"AF07","nnh":4,"eco_id":55,"shape_leng":184.190579607,"shape_area":61.3195214101,"nnh_name":"Nature Imperiled","color":"#FCD135","color_bio":"#FEAA01","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":756427.9051341016,"percentage":3.5282772007010763}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-112.28484365899988,29.225886454000147],[-112.47430467899994,29.16355694500004],[-112.50495159899992,29.012094949000186],[-112.48225357299987,28.95828799200018],[-112.53489661899994,28.84934856400008],[-112.35777258699994,28.759339161000128],[-112.27490255499998,28.767629702000136],[-112.19352768599998,29.020568550000064],[-112.2710116749999,29.13584000300017],[-112.28484365899988,29.225886454000147]]],[[[-109.50654567599992,29.72256333500019],[-109.42755864399999,29.804218495000157],[-109.42869556499988,29.855722273000083],[-109.57176157699996,29.859579121000024],[-109.50654567599992,29.72256333500019]]],[[[-110.41175598099994,33.485525098000096],[-110.48986243099984,33.532772240000156],[-110.59502166899989,33.50490945500019],[-110.59331653899994,33.40912897300012],[-110.70662568699998,33.41794814000019],[-110.70640031699992,33.33148386300013],[-110.56869572999994,33.32060813300018],[-110.58546130799994,33.20614300200003],[-110.7094295419999,33.137931700000024],[-110.80525832499995,33.181965232000096],[-110.89037662699997,33.166603619000114],[-110.74579907599991,33.05901383900016],[-110.78526553699999,33.03224306700008],[-110.96860629599996,33.17250428400013],[-111.16498362999994,33.17120565700003],[-111.15801598199994,33.24185699000003],[-111.08337663399993,33.29992238100016],[-111.34557168299995,33.41378289200003],[-111.37241430899985,33.502242553000144],[-111.23182103099992,33.53387907000007],[-111.1545020239999,33.59739097100015],[-111.00333455799995,33.566268811999976],[-110.78200392599996,33.65112515599998],[-110.80178585699997,33.75979174000008],[-110.90709138699998,33.68599745400019],[-111.02112732199998,33.764943260000166],[-111.15359259399997,33.78444463400007],[-111.2846710469999,33.981857219],[-111.34275803499992,33.88019859000008],[-111.32564494899992,33.79467237600005],[-111.21886935099997,33.681549842000095],[-111.25830728799991,33.62234888700016],[-111.35583969499999,33.628330415000164],[-111.45553320799996,33.72521190500004],[-111.47310015499994,33.82595122500004],[-111.543426706,33.85659080800019],[-111.60589166999995,33.938075311000034],[-111.61987336099997,34.05797607900007],[-111.734069923,34.108082768000145],[-111.79341217399997,34.001799517000165],[-111.71135924599997,33.915264471],[-111.90722787199996,33.876957495000056],[-112.04050678099998,33.94497912600008],[-112.10365335299997,34.174198587000035],[-112.1764522759999,34.20466863200005],[-112.22162552099991,34.073876433000066],[-112.3250619939999,34.0875976750001],[-112.47714106499996,34.058138618999976],[-112.51475644299995,33.953060473000164],[-112.60570463199991,34.01493635600008],[-112.59937995299993,34.125984012000174],[-112.95574823699997,34.20387634500014],[-113.02583772499992,34.29426505300012],[-112.93709178699999,34.56003502000004],[-113.07404447999994,34.583012868000026],[-113.16077559399997,34.568009018000055],[-113.21813369299991,34.61039389600012],[-113.43573947399989,34.64996096300018],[-113.44417397599995,34.725785267],[-113.61962521099991,35.00238024300006],[-113.58942916299992,35.09897696200005],[-113.66270522999991,35.141013800999986],[-113.71006287599994,35.033759996000185],[-113.79466499399996,34.95414743600014],[-113.74922290799998,34.90520814200005],[-113.76544753399992,34.726303499000096],[-113.72221301999991,34.62879997100009],[-113.75502153699995,34.53618978600008],[-113.88020397699995,34.44744599000012],[-113.99650223999998,34.47646256000007],[-114.08887893399987,34.67934508300016],[-114.09858972899997,34.80639009700013],[-114.21089127199991,34.803374112000085],[-114.27277936299993,34.75941291300006],[-114.45610644399989,34.74895428600007],[-114.61432099499996,34.6723377620001],[-114.67338455699996,34.562444287000176],[-114.76820887099996,34.496616282000105],[-114.7330151139999,34.32932768300003],[-114.80407170399985,34.12904364700012],[-114.87949155999996,34.23330921600012],[-114.96363980399997,34.269447144000026],[-114.98649117299993,34.39516855400012],[-115.04200534599983,34.38576967500006],[-115.17215792499996,34.28752625900012],[-115.29757955599985,34.332276386000046],[-115.38500826599994,34.18195997300006],[-115.41206329899995,34.09391586700008],[-115.2983756029999,34.00404465500014],[-115.49344327199998,33.85926176600003],[-115.48392912099996,33.742111378],[-115.7530138539999,33.680459831],[-115.79795419899995,33.701903912000034],[-115.93068426699989,33.680934296000146],[-116.08432865099991,33.73031686200005],[-116.2395776379999,33.848536731000024],[-116.49475897199994,33.98097305200014],[-116.60762978899999,34.01352819700003],[-116.64692662199997,33.96444397300007],[-116.76672166599997,33.93335123000003],[-116.76509846799996,33.89922425800006],[-116.58330515099993,33.819750326000076],[-116.58320415399993,33.75245637400013],[-116.52462321399997,33.651005876000056],[-116.4010570769999,33.57052506100018],[-116.44949901099994,33.484124422000036],[-116.5549988269999,33.51509517300008],[-116.57784325599994,33.416376952000064],[-116.47430612299996,33.2668264400001],[-116.5718529959999,33.15813678800009],[-116.49110058199994,33.003522788000055],[-116.3445579729999,32.840101526000126],[-116.25004726599991,32.73288871300019],[-116.20071825399998,32.61097607600004],[-116.07868163299997,32.60958566700003],[-116.01107068699997,32.52946406000018],[-115.90464767399999,32.48878534300013],[-115.85279068299997,32.42457024200013],[-115.87153664199997,32.25297172899997],[-115.77711466999995,32.09185998200013],[-115.78961963199998,32.007393868000065],[-115.74462859299996,31.859332745000188],[-115.68372367299997,31.82609967200017],[-115.67708554099994,31.745519240000135],[-115.64707162199988,31.65199145000014],[-115.56580353799995,31.595574536000072],[-115.50940657299998,31.500293587000044],[-115.51533459099994,31.430732843000158],[-115.55961568199984,31.34544580400012],[-115.69355765699999,31.37947465500008],[-115.73431365499994,31.328123428000026],[-115.58123763999998,31.25561409800008],[-115.47854658499995,31.274654429000122],[-115.39902461999998,31.097473401000173],[-115.29991967899991,31.047596216000045],[-115.26219960599991,30.98836616800014],[-115.29271660599983,30.847183234000113],[-115.19845556699988,30.732288296000036],[-115.24959556999988,30.635747882000146],[-115.13149254299998,30.548496964000094],[-115.10639159299996,30.461407146000056],[-115.01995857999998,30.470846845000096],[-114.95395662499999,30.387415896000164],[-114.81314065099997,30.28522641400008],[-114.82672855499999,30.175343352000084],[-114.76079566599986,30.165532837000057],[-114.53958852399995,29.94685015600004],[-114.5265045409999,29.970294172000024],[-114.66426866299997,30.19876875900019],[-114.63649757399997,30.257843407000053],[-114.627372531,30.47382963000007],[-114.69412265499994,30.620236332000104],[-114.69160456399999,30.809058483],[-114.71726257499995,30.934897001000024],[-114.83280157899992,31.01195753700017],[-114.8879315349999,31.162602130000096],[-114.878768606,31.34722695900018],[-114.8412245529999,31.579612039000153],[-114.77594763199988,31.643832840000073],[-114.8187786549999,31.719052375000047],[-114.81055466699996,31.82105695200005],[-114.68266258199998,31.757842146000087],[-114.59783956599989,31.75741517200015],[-114.48590863699991,31.6694549770001],[-114.16997559499998,31.495769706000146],[-114.02593258899992,31.489475902000038],[-113.95829767099997,31.57464006200007],[-113.8944545579999,31.59995525400018],[-113.686859627,31.51706996600018],[-113.62993661399997,31.458217103000095],[-113.61099267399993,31.331774250000137],[-113.54463163799988,31.296401445000186],[-113.25623365099989,31.240661621000015],[-113.12360361199995,31.22847785400012],[-113.03459165599992,31.16150108300002],[-113.06564358999992,31.0007557940001],[-113.12696056399994,30.809930536000138],[-113.07532468799991,30.659483924000142],[-112.98670953099986,30.53139855200004],[-112.85089855899997,30.380302007000182],[-112.84724455299994,30.291217296000184],[-112.75522667799999,30.184253147000163],[-112.74613952199996,29.91602118100019],[-112.68115965599992,29.903390491000152],[-112.65207663099994,29.834651340999983],[-112.47731763699994,29.586206702000027],[-112.38859552799994,29.49758014600002],[-112.41770168599999,29.373013833000073],[-112.35437758099994,29.31591396099998],[-112.30532852799996,29.36632708600007],[-112.23078155699989,29.303649393000057],[-112.14615652199996,28.993914601000142],[-112.02903752999993,28.860484090000057],[-111.90317554199987,28.784009114000014],[-111.91815953499992,28.716705784000055],[-111.76261856899993,28.591348722000077],[-111.68669864299994,28.44866358500019],[-111.46260862899999,28.36672109300008],[-111.45558962299992,28.315102987000046],[-111.32796458599984,28.186785436000036],[-111.27858763299997,28.09174437700017],[-111.17005154199995,27.99286222700016],[-111.05581659499984,27.936736836000136],[-110.98241459199988,27.957560836000084],[-110.94771552499992,27.870087630000114],[-110.87392460199993,27.85337830600008],[-110.80247457699994,27.920353400000124],[-110.5762785259999,27.883531867000045],[-110.44666261899994,27.830664018999983],[-110.41091162299995,27.73430113400019],[-110.27651953999987,27.618063080000127],[-110.16415358999996,27.57149322600003],[-109.96310458999994,27.61391839600003],[-109.94356553499995,27.702045726000165],[-109.97501359799998,27.74766758700008],[-109.94062063699988,27.939153674000124],[-109.977531522,27.984029713000155],[-110.08257252599998,27.99096037400011],[-110.18730155699996,28.258775256000035],[-110.14126562999996,28.29001712400003],[-110.07214359499994,28.47226953900008],[-110.18462353899997,28.45217442900008],[-110.342834644,28.50306230400014],[-110.35902361899991,28.45951814900019],[-110.56623063599989,28.525364537000087],[-110.63738259999991,28.734712124000055],[-110.57694958099995,28.90972508900012],[-110.64041852599985,28.991583761000015],[-110.61528052799986,29.084136066000042],[-110.51305366299994,29.05144748099997],[-110.50962060299992,28.967092846000014],[-110.35773464999994,28.932719164000048],[-110.32176957999991,29.112034057000074],[-110.20999857699985,29.171649840000043],[-110.25387566099994,29.27761352500005],[-110.33365662699998,29.342168932000106],[-110.3015445499999,29.453069893000077],[-110.41136156399989,29.69061168800016],[-110.53121959399994,29.732238231000053],[-110.55200168499994,29.838166209000065],[-110.59581758099995,29.874484660000064],[-110.6756436419999,30.04090533600015],[-110.64649959699994,30.100079393000158],[-110.55442053399997,30.141062709000096],[-110.505241561,30.241572121000047],[-110.54280053399998,30.34668806100018],[-110.50393666699995,30.42280529700008],[-110.55176564999994,30.51640299200011],[-110.63910658999998,30.535867448000147],[-110.63385767499994,30.620691302000125],[-110.70169057299995,30.558542675000183],[-110.73148354499989,30.46411684800006],[-110.80349767199993,30.391215580000164],[-110.84152267899998,30.472226674000126],[-110.927116663,30.51809311900007],[-110.95246856699998,30.623163125000076],[-110.8448486179999,30.83636454400005],[-110.89838366599997,30.938094027000034],[-110.89974958099992,30.794969007000077],[-110.97611961599995,30.745395749000124],[-111.05561056799985,30.74403385700009],[-111.08306867699997,30.815108205000172],[-111.09785452199998,31.0152182650001],[-111.14585868699999,31.05995969100013],[-111.21834555299989,31.08167988400004],[-111.19810459799999,31.154371604000175],[-111.17274464699994,31.182948530000147],[-111.1969376699999,31.258220032000054],[-111.29981262299987,31.26717441900007],[-111.26325260599992,31.3472630010001],[-111.3426515249999,31.371978048000187],[-111.44325263499996,31.27990921200012],[-111.54727155099988,31.339706212000067],[-111.53428664199993,31.466757927000174],[-111.66204736399999,31.52799827000007],[-111.68633110199988,31.70421678500003],[-111.65776835099996,31.761656665000146],[-111.72089470899994,31.91450954200002],[-111.70000270899999,32.009072029000095],[-111.61991971799989,32.04960917900007],[-111.47088589999998,32.007523420000155],[-111.45193879599992,31.81638039800015],[-111.40388973699999,31.751781411000024],[-111.31870489799991,31.942367744000023],[-111.23170361599989,32.00424027800011],[-111.09297468799997,31.99193726599998],[-111.0523190479999,31.917007377],[-111.07874907999997,31.73223285],[-111.000323257,31.711673390000158],[-110.94099558799991,31.797185109999987],[-110.79784860199999,31.93774888300004],[-110.66041444299998,32.01584985500011],[-110.62467319899991,32.149804838000136],[-110.70483679799997,32.173177886000076],[-110.64205917599998,32.25932952600016],[-110.70494175799996,32.310075962000155],[-110.89317394999995,32.33940267300005],[-110.95216470399998,32.371274816000096],[-110.86433655099995,32.447054728000126],[-110.89472214899996,32.48508259100004],[-111.04954215999999,32.46516534700015],[-111.08647267299995,32.562969361000114],[-111.00460769499995,32.68091786500014],[-111.03691795199995,32.81786607300006],[-110.97266687699994,32.97951880400012],[-110.8621022939999,32.952671156000065],[-110.81092470799996,32.85329422900003],[-110.73921471099993,32.79027949400006],[-110.71877667799998,32.69505306800005],[-110.60473262099993,32.54124631200017],[-110.53455378199993,32.38814984700019],[-110.36223245599996,32.25629582100004],[-110.34834230699988,32.31327070599997],[-110.41924049499994,32.39047313100008],[-110.45015605799989,32.58036207200013],[-110.51682274099988,32.65963770800005],[-110.57502631999995,32.8239865380001],[-110.56522979299996,32.877134791000174],[-110.6776765859999,32.95481494100005],[-110.62231535299998,33.137698052000076],[-110.51686685699997,33.09879690200012],[-110.2764418239999,33.15664517200014],[-110.1635306689999,33.126946113000145],[-110.1275497119999,33.00648124000003],[-110.01621279699998,32.9969550350001],[-110.10479162099995,33.1291398350001],[-110.00036148099997,33.10847696700017],[-109.97110323499999,33.15691338100004],[-110.23629702399995,33.325782654000136],[-110.36726414499998,33.3447613080001],[-110.3118171619999,33.43943247200008],[-110.41175598099994,33.485525098000096]],[[-110.76542656499993,30.08247890500013],[-110.71947462499998,30.09179555800017],[-110.64347054399997,29.954612637000082],[-110.63045462199995,29.840284986000086],[-110.59399468399982,29.80970210400011],[-110.58975964399997,29.69152263300009],[-110.55541965699996,29.61073064200002],[-110.60190552499995,29.565612366000153],[-110.72776063899988,29.630053108000084],[-110.70595562099999,29.761974038000062],[-110.76097057799996,29.819968929000026],[-110.81249966899998,30.042334450000112],[-110.76542656499993,30.08247890500013]],[[-110.58196262999985,29.566997391000086],[-110.52628365899994,29.40201572100017],[-110.4765085649999,29.362560091000034],[-110.51385463799988,29.131448221000028],[-110.58510567599996,29.143865843000015],[-110.54842361799984,29.26945592200019],[-110.6334226539999,29.314020154000048],[-110.65835563099989,29.539965418000122],[-110.58196262999985,29.566997391000086]],[[-110.39900965599992,28.375986617000024],[-110.3523326809999,28.330868508000037],[-110.38668054699997,28.203422676000116],[-110.2944336789999,28.070782076000057],[-110.48445159199997,28.065838262000113],[-110.48912852599994,28.22727874600008],[-110.44122360199987,28.236916258000065],[-110.39900965599992,28.375986617000024]]]]},"properties":{"objectid":644,"eco_name":"Sonoran desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Nearctic","eco_biome_":"NE13","nnh":2,"eco_id":435,"shape_leng":72.1436323485,"shape_area":21.4162241494,"nnh_name":"Nature Could Reach Half Protected","color":"#FA5870","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":225154.16409335873,"percentage":0.8534327915474258}}, + {"type":"Feature","geometry":null,"properties":{"objectid":646,"eco_name":"South Antarctic Peninsula tundra","biome_num":11,"biome_name":"Tundra","realm":"Antarctica","eco_biome_":"AN11","nnh":1,"eco_id":130,"shape_leng":219.081011465,"shape_area":0.878434307311,"nnh_name":"Half Protected","color":"#63EBDF","color_bio":"#9ED7C2","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":2973.186337540047,"percentage":0.034793823679086455}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[15.40178054300003,38.02691698300015],[15.406645567000055,38.10033658700013],[15.046588511000039,38.004441580000105],[14.895652563000056,38.02887801300005],[14.65574153900019,37.936883775000126],[14.433374509000032,37.904578244000106],[14.023583430000087,37.9225597730001],[13.967252514000052,37.85196637900003],[13.801396443000044,37.803380007000044],[13.824826545000121,37.710130998000125],[14.046361587000149,37.67179770500019],[14.19375852800016,37.70818991700003],[14.295196488000045,37.63827914500007],[14.303916517000062,37.488681116],[14.425366439000072,37.468612326000084],[14.410432569000022,37.61607045400007],[14.50607645499997,37.708734741000114],[14.700792592000141,37.79482728],[14.811066587000084,37.76879677700015],[15.008187492000047,37.67946144700011],[15.104784568000127,37.72359250300008],[15.108718530000033,37.82209780200003],[15.150510532000055,37.90206836700003],[15.318939512000043,37.92703084800013],[15.40178054300003,38.02691698300015]]],[[[15.960520556000063,38.03403103900007],[16.06629548000018,38.11800631000011],[16.207565585000054,38.35434530200001],[16.42643954100015,38.549547924000194],[16.47127350300019,38.693596798000044],[16.372814471000027,38.768401428],[16.076753581000105,38.360163348000015],[15.864647509000065,38.195366917000115],[15.8245404380001,38.11350958600019],[15.882848477000039,38.039932905000114],[15.960520556000063,38.03403103900007]]],[[[16.70399050700007,38.973194289000105],[16.83783944300012,39.11150524700014],[16.819992527000124,39.24089014900011],[16.73522147799997,39.40596888200014],[16.637065536000023,39.49519759400005],[16.543371449000063,39.52196805200009],[16.369367497999974,39.450585250000074],[16.338134515000093,39.272120785000084],[16.373828514000138,39.09811918000008],[16.463062591000096,39.01780965100011],[16.56567954899998,38.973194289000105],[16.70399050700007,38.973194289000105]]],[[[15.303997596000102,40.51981133000015],[15.364664470000093,40.40252268800009],[15.364664470000093,40.32567957900005],[15.445552518,40.26905932000017],[15.522397470999977,40.313545769000086],[15.457686496000179,40.47532102600013],[15.380842549000079,40.540033175000076],[15.303997596000102,40.51981133000015]]],[[[14.899552494999966,40.84336268400017],[14.915730574000179,40.77056451300018],[15.07750750800011,40.73820802000006],[15.15030852800004,40.81100702900011],[15.04515252300007,40.867628629000194],[14.899552494999966,40.84336268400017]]],[[[16.19739548700005,40.07772360500013],[16.10479758500003,40.281190281000136],[16.20186455000004,40.40656561600008],[16.20186455000004,40.55621091800003],[16.056264522000106,40.65731879900011],[15.886397542000168,40.84336268400017],[15.688220517000047,40.952561783000135],[15.615420503000166,40.952561783000135],[15.47386356900006,40.887849131999985],[15.348485552999989,40.87976243900016],[15.287819517000116,40.81505112900004],[15.332308480000108,40.71798701400007],[15.506219559999977,40.71394308100008],[15.587108446000173,40.64923093300007],[15.587108446000173,40.52385526299997],[15.684175578000122,40.349945357000024],[15.627034467999977,40.292804917000126],[15.712486462000072,40.13559209700003],[15.874264570000093,39.99808177800003],[15.906620560000079,39.86461857800015],[16.01986543700002,39.59364522700008],[16.116931563000037,39.553198688000066],[16.120975496000028,39.755420820000154],[16.16546445900019,39.82821882200005],[16.359598557000027,39.91315281500016],[16.355554456,40.03448136600008],[16.19739548700005,40.07772360500013]]]]},"properties":{"objectid":647,"eco_name":"South Apennine mixed montane forests","biome_num":12,"biome_name":"Mediterranean Forests, Woodlands & Scrub","realm":"Palearctic","eco_biome_":"PA12","nnh":3,"eco_id":802,"shape_leng":13.7688094105,"shape_area":1.36822309513,"nnh_name":"Nature Could Recover","color":"#720000","color_bio":"#FE0000","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":13112.272844594047,"percentage":0.39693338162397807}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[62.71958956900016,26.316187386000024],[62.751190517,26.23571005100007],[62.84656953500007,26.20594138700011],[62.937759612000036,26.213371944000187],[63.0110814840001,26.179783479000093],[63.11388049700008,26.197331663000057],[63.24686861100008,26.183412340000075],[63.31187848500002,26.229761247000113],[63.20653958700012,26.30502788800004],[63.10776858100007,26.31095758100014],[63.02450962800003,26.271599517000027],[62.787158605000116,26.281158071000107],[62.71958956900016,26.316187386000024]]],[[[64.93479951000018,26.31111767600015],[64.82290663500004,26.338366405000045],[64.597412485,26.27742913000003],[64.51364860600006,26.277837161000093],[64.33960760600007,26.117915310000114],[64.61560054400007,26.166444183000067],[64.84410849100016,26.259008892000054],[64.93479951000018,26.31111767600015]]],[[[64.33533451200003,26.63942592700016],[64.20340754700015,26.62736235600005],[63.73954061900014,26.54539622800013],[63.59175157300007,26.44071782400016],[63.52116354300006,26.296096299000112],[63.670619582000086,26.32919995500015],[63.86785163200011,26.268718489000037],[64.01897449600011,26.239854902000104],[64.09741251400004,26.176737830000093],[64.15518964300009,26.321273189000124],[64.2489925270001,26.349803847000146],[64.27680954900006,26.400146731000177],[64.61154152400013,26.48416894000013],[64.68350955000011,26.551733953000053],[64.65009358400016,26.592043866000097],[64.54859963300015,26.586572160000173],[64.46307354300012,26.62422165700019],[64.33533451200003,26.63942592700016]]],[[[56.23220856700016,26.99437203400015],[56.15554851900009,26.996870176000073],[55.99943557200015,26.95576498800017],[55.88333162800018,26.89993145400007],[55.781104596000034,26.946873130000085],[55.76998851600007,26.791050197000118],[55.67582655100006,26.770497100000114],[55.56276657900008,26.709384811000177],[55.27499354700012,26.64911138400015],[55.32749158600018,26.544395094000038],[55.50138858399998,26.590504949000035],[55.67499556900009,26.679665097000168],[55.77721354900001,26.686886609999988],[55.87832662600016,26.73465977],[55.951660568000136,26.687443838000092],[56.09027059200008,26.786884223000186],[56.23220856700016,26.99437203400015]]],[[[49.24338154900016,31.247119207000026],[49.11918655400018,31.41480169500005],[48.98718247500011,31.622524534000092],[48.731708604000175,31.91989065400014],[48.23246350700009,32.20972630500012],[47.95576062200007,32.205270318000146],[47.68506957400001,32.350594582000156],[47.531566584000075,32.48529428000006],[46.939208601000075,32.638923502000125],[46.44161256000001,32.87855926400016],[46.13566555,33.14147928200009],[46.02602757400001,33.174429382000085],[45.826705581,33.280929006000065],[45.71452353000012,33.36883136500012],[45.571479479,33.43649444700003],[45.70019148199998,33.178839101000165],[45.890258512000116,32.986820763000026],[45.97843948700012,32.86287655500013],[46.06120659000004,32.78486920000006],[46.207275502000186,32.75039610800002],[46.34677551600004,32.6766155790001],[46.53521360800005,32.506141750000154],[46.63402954100019,32.46337225100012],[46.94568261500018,32.245181923000075],[47.16080449600008,32.21385003400019],[47.344600522,32.24881011399998],[47.54820248200002,32.19633269400015],[47.67402256000008,32.141803553000045],[47.73856757400017,32.03187908300015],[47.903964484000085,31.8100753170001],[47.9945985060001,31.631168288000083],[48.139587494000125,31.46392601700012],[48.17673458000007,31.346576858000105],[48.23579447600008,31.22020709500015],[48.3615956110001,31.071493357000122],[48.46199756700008,30.667791731000136],[48.40525862100003,30.58042681900008],[48.21590053100016,30.563868201000105],[48.03317252700009,30.592160310000054],[47.947097590000055,30.593427318000067],[47.76513653000006,30.52987254300018],[47.703113464000126,30.540220170000055],[47.64207862500018,30.367485406000128],[47.861225495000156,30.113917748],[47.93683646400018,30.100353145999975],[47.96638451700011,30.004804814000124],[48.09387946700019,30.043694330000164],[48.189712616000065,30.02758515100004],[48.38388057700013,29.937863247000166],[48.52471147000006,29.920644136000135],[48.64693453800004,29.963420341000187],[48.689155526000036,30.0300837960001],[48.908332571000074,30.031193728000062],[48.94332852500003,30.160915079000063],[48.85999262600018,30.31284931200014],[48.918876502000046,30.408681958000102],[49.02999857800006,30.419790494000097],[48.97277046300013,30.508120330999986],[49.10026558100009,30.51423124100006],[49.26249647900005,30.417566607000083],[49.18444050800008,30.36396064800016],[49.05305451100003,30.40423804000011],[48.995544597000105,30.386458850000054],[49.00665246300014,30.293685096000104],[49.15470855700005,30.22313059300012],[49.20999156700003,30.22313059300012],[49.277770486000065,30.14730152700008],[49.35304249100011,30.169799561000104],[49.479713500000116,30.153690381000047],[49.496665564000125,30.06785935700003],[49.581657559000064,30.007306645000085],[49.839721606000126,30.165633755000044],[50.00638552500004,30.21702387400012],[50.077499603000035,30.182025405000047],[50.143051618000186,30.05480588400013],[50.13138551700007,29.956477778000135],[50.23638159500007,29.862590236000187],[50.38721461400013,29.659545840000135],[50.44749457900019,29.634544802000107],[50.66860952000019,29.406774462000044],[50.69082659300017,29.275115718000052],[50.63055450700017,29.191782837000062],[50.67472059800008,29.116509993000022],[50.80971550800007,29.137897927999973],[50.92527747700018,29.0606771300001],[50.89416452299997,28.965125781000097],[50.80499247300014,28.917905659000155],[50.876106551000134,28.830133219000118],[51.004165603,28.801798195000117],[51.07083157300019,28.697360519000142],[51.0874555690001,28.494388878000166],[51.14916247000019,28.382649223999977],[51.283332600000165,28.23376751300009],[51.26388557900003,28.11599322300009],[51.60638456000004,27.8401719470001],[51.792221579000056,27.849338564000163],[52.042770580000195,27.819893776000185],[52.224159491000194,27.684619247000057],[52.49971757500009,27.60684859600002],[52.59887649600017,27.477406362000124],[52.66304750799998,27.449075362000087],[52.60305051600005,27.349080598000057],[52.75638553200008,27.28741929500012],[53.03027360700008,27.098813733000156],[53.109992547000104,27.082426274000056],[53.44387861900009,26.969928225000103],[53.48193363300015,26.856881329000146],[53.71332562600014,26.699940250000054],[53.93138150800007,26.70827488000009],[54.02526854600012,26.743551293000053],[54.12582355700005,26.70438383200019],[54.3319395850001,26.696609450000153],[54.42110459500009,26.58522535600008],[54.543884557000126,26.58328025100019],[54.64332561200007,26.494394527000054],[54.852775626000096,26.51745230400013],[55.0963825660001,26.696052221000116],[55.21665952400019,26.733549670000173],[55.281379552000146,26.785495510000146],[55.48165859,26.75883250800007],[55.602775582000106,26.801882801000033],[55.59554250300005,26.92854408700009],[55.66526753200014,26.991038383000102],[55.946380472000044,27.022152846000097],[56.13276650600011,27.15853395500011],[56.32166258500007,27.197697223999967],[56.54222147100012,27.15436429300007],[56.701103631000194,27.150199493000116],[56.797775473000115,27.12408852400017],[57.02555050700005,26.84104690800018],[57.08776853600017,26.63799899200012],[57.074165545000085,26.45189626600012],[57.126098476000095,26.34607021200003],[57.126098476000095,26.26163175700009],[57.214713633000144,26.165242385000113],[57.165542539000114,26.081914198000163],[57.198043536000114,25.99330624900017],[57.27137747800009,25.917756636000092],[57.31054661400003,25.77609626900005],[57.53110449400003,25.736096989000032],[57.762214519999986,25.735262151000086],[57.77748852700017,25.654157850000104],[57.933326547000036,25.69859668900017],[57.97776756500008,25.681931454],[58.05804457200014,25.565549902000043],[58.18221257700003,25.538608118000184],[58.38999157500018,25.60165847000019],[58.54888161400004,25.591660872000034],[58.63526953200011,25.56582901900009],[58.81832862100009,25.558329395000044],[58.919990545000076,25.51305454500016],[59.00499762800001,25.40583659300006],[59.119987617000106,25.390002172000038],[59.34054549700005,25.454166143000066],[59.47804257200005,25.47555424600006],[59.626937527,25.389724228000148],[59.84443651500004,25.406946357000038],[59.88888558000008,25.345837421000056],[60.0711054730001,25.377501904000155],[60.18249560200002,25.31945269800002],[60.2019345760001,25.365558363000048],[60.38665747300013,25.31473083700007],[60.39527155500019,25.373893998000028],[60.5191575930001,25.441665876000116],[60.5980455510001,25.40777733800013],[60.634437595000065,25.26250923300006],[60.966102631000126,25.215564540000116],[61.19110157900002,25.166677761000017],[61.21110549400004,25.125846660000036],[61.389160587000106,25.08057281600003],[61.499435587,25.116406290000157],[61.52416253700011,25.20612014700015],[61.638755558000184,25.20121824300014],[61.79175949000006,25.141280091000056],[61.731891579000035,25.055395255000064],[61.83509460000005,25.03878483800014],[61.86988050399998,25.0993041910001],[62.10042961200014,25.095884374000036],[62.07782361900013,25.17468951899997],[62.21361950300013,25.213508627000067],[62.373210605,25.179250280000133],[62.492237486000136,25.24790611400016],[62.61951853000011,25.259620494000046],[62.84321560000012,25.241938199000117],[63.01044848200013,25.20676790100009],[63.15279063300005,25.25240686100011],[63.49148154699998,25.19410753900013],[63.50534052100005,25.314474686000096],[63.68193062500012,25.37642097400004],[63.877639515000055,25.341931454000076],[64.22200062000013,25.31155309000013],[64.40455662700009,25.232477712000104],[64.53044862200011,25.26649616900005],[64.59381849200008,25.23691643300009],[64.747970577,25.313064012000098],[65.23110951100017,25.31621275700013],[65.27230857700016,25.38395848400006],[65.49591059600004,25.372529927000073],[65.53942859900013,25.407940450000126],[65.56097461700011,25.595217481000077],[65.51465655500004,25.77850321600016],[65.43047358100017,25.74835552200011],[65.35475951400014,25.797349255000142],[65.2904666290001,25.791354350000177],[65.19864656800007,25.860101212000018],[65.26402256300008,25.997742958000174],[65.11976648800004,26.01109516200006],[64.94586949000006,25.929835126000057],[64.94626662500013,25.88582493700011],[64.79295356900008,25.883175250000136],[64.728446609,25.801457058000096],[64.5825805390001,25.78465570100002],[64.4916685730002,25.74404873300017],[64.308402619,25.772089217000143],[64.19280259500005,25.706901311000024],[63.978946550000046,25.748788364],[63.82763660100011,25.732283055000153],[63.652759591,25.684067331000108],[63.586536521000085,25.621688537000068],[63.50373857200009,25.65918866900006],[63.54058860400016,25.786403831000086],[63.69699055800015,25.898860641000056],[63.559940574000166,25.94481425700019],[63.42568260200005,25.888887852000096],[63.20063051300008,25.925887417000183],[63.07994049500007,25.970950037000136],[62.89102949600016,25.967488311000068],[62.88878247500014,26.02809852400003],[63.227729541000144,26.075626262000185],[63.19533164100005,26.13512654200008],[63.07693860000012,26.171816815000113],[62.96453459600008,26.16693821200016],[62.72209961300018,26.185640250000176],[62.48643150900017,26.228714347000164],[62.36297261300007,26.221689809000168],[62.39836151100019,26.321489107000048],[62.28788752400004,26.360153486000172],[62.273879520000094,26.428288300000077],[62.310272570000166,26.501065013000073],[62.44609862900006,26.567171239000118],[62.61415863800016,26.578836669000054],[62.74748957200012,26.61272403300012],[62.772766542000056,26.64800363100005],[62.991378479000105,26.64911138400015],[63.1763835110001,26.629390441999988],[63.19411056600018,26.704193060000023],[63.45513962700005,26.737358575000144],[63.628868484000066,26.688968507000027],[63.69171850900011,26.65080134300007],[63.94588061200011,26.746778158000154],[63.98999054500018,26.82994440699997],[63.980403492000164,26.908944850000125],[64.14582856600015,26.985167698000055],[64.34178958300004,27.018488949000073],[64.58576163900005,27.131676158],[64.74948149800008,27.22723689500009],[64.87424461900014,27.258934738000107],[65.05505350200013,27.367314925000187],[65.13407858800014,27.46473778600017],[65.06695563700004,27.539876687],[64.9824145880001,27.544478184000184],[64.62985262900003,27.343726071000106],[64.50646263200008,27.234971547000043],[64.24958060200004,27.136232057000143],[64.09208648500015,27.106316374000187],[64.02497057400012,27.181454940000094],[63.912696490000144,27.260234604000175],[63.79941154800002,27.38648098500005],[63.77559654900017,27.322043763000067],[63.60891352000016,27.22680103600004],[63.45413564300014,27.19902122900004],[63.37873053300018,27.20695771800007],[63.27360554100005,27.172748489000128],[62.99514748600012,26.979736896000134],[62.792636514000094,26.91962037700017],[62.697723530000076,26.938292575000048],[62.57051859400019,27.039585026000054],[62.42437759800009,27.054101644000184],[62.294811479000145,27.188422816000184],[62.13407859500006,27.300066749000166],[62.07266958700018,27.308425350000107],[61.946048534,27.387054978000037],[61.733928549000154,27.63141377500017],[61.73082355700012,27.519585273000132],[61.67965656400003,27.469553692000034],[61.53952053000012,27.590226276000124],[61.147823633000144,27.861088986000027],[61.05786854500019,27.96392571800004],[60.948512537000056,28.03042790600017],[60.792613496,28.23468331900017],[60.731716623000125,28.39472184700014],[60.67765049700006,28.459261998000045],[60.59489060300018,28.436424162000094],[60.50612658300014,28.3700837450001],[60.39372660300006,28.532061174000034],[60.33721162100005,28.54870562200017],[60.24105057200006,28.498891469000114],[60.26100553600003,28.396404598000174],[60.17648661500016,28.332938168000055],[60.131763630000194,28.398549694000053],[60.131114535,28.51905480800019],[59.978172630000074,28.81141877600004],[59.971870612000146,28.960303002000103],[60.03167348000005,28.96223083900003],[60.21909752900007,28.772386432000076],[60.29155757300009,28.74651250300002],[60.35978660000018,28.78460104400017],[60.38051253200018,28.880483311000035],[60.335449577000134,28.93238925200012],[60.219436493000046,29.226254419000156],[60.16372650900007,29.26208605000005],[60.014526621000186,29.23897999200011],[59.932109546000106,29.312212345000148],[59.862495493000154,29.33248230200013],[59.791938476000155,29.54545405600004],[59.75018352200016,29.75037046700004],[59.797401633,29.779048478000107],[59.91960559000012,29.75704514400013],[59.90025747600009,29.976042984000173],[59.922595583000145,30.096542565000107],[60.024204534000035,30.194147816000054],[60.04074856600005,30.20880927400009],[59.93667952700014,30.21960801500012],[59.805477597000106,30.166627849000065],[59.57914357900006,29.98945335900015],[59.52834656400006,29.868089100000077],[59.48670962800003,29.534559594000143],[59.424838609000176,29.1945766930001],[59.31520851200003,29.136946917000103],[59.19464858100008,29.127948441],[59.10268049600012,29.215279826000085],[58.87965347500017,29.584116758000164],[58.76134157000007,29.829073520000065],[58.73045358600001,29.92300397700012],[59.03247451300018,29.871237845999985],[58.99514051000017,30.206718324000065],[58.90320947200007,30.30049187200018],[58.555915540000115,30.243346067000118],[58.39463062400006,30.276244702000156],[58.11324359600013,30.252201548000187],[57.87847855800004,30.26184828100014],[57.62865056900006,30.309026493000147],[57.61601652600018,30.217385805000106],[57.655277528000056,30.143944742000087],[57.82731659400014,30.034710774000132],[57.984458503000155,29.843784766000113],[57.95944556300003,29.629590092000115],[58.211078511000096,29.282889430000182],[58.29456360800003,29.06689968800015],[58.080215545000044,29.130778339000017],[57.94958458900004,29.273783666000156],[57.7045134980001,29.4045375],[57.577938546000155,29.37433180300002],[57.60823057600004,29.299633791000133],[57.884891552000056,29.088552826000125],[58.19894755000013,28.80700318900017],[58.20146547400009,28.766107883000075],[58.352672493,28.65343415000018],[58.334266504000084,28.621151417000135],[58.580234626,28.43355403100003],[58.63796951100011,28.278082467000104],[58.509239571000194,28.287205330000063],[58.28861648000003,28.400092467000036],[58.13540652100011,28.499530505000052],[58.02265550700008,28.549684461000084],[57.89689259300013,28.658759173000135],[57.82831554900008,28.778766234000045],[57.64056360000012,28.85281632500005],[57.46860148000019,28.892300789000103],[57.26602563300003,28.985097006000046],[57.05245960100018,29.136613150000073],[56.87610251400014,29.1045092870001],[56.75713749100015,28.929614172000186],[56.903560623000146,28.831045002000167],[57.13890049200012,28.784295943000075],[57.471584600000085,28.668577567000057],[57.50809851700012,28.559660937000046],[57.467651475000196,28.49439172800004],[57.278469573999985,28.339734885000098],[57.25676748500018,28.198391858000036],[57.147571571000185,28.136010549000105],[56.89897555400012,28.04470329300011],[56.770397495000054,27.983771718000185],[56.62322653000007,27.975430048000135],[56.551094553000155,28.0282610160001],[56.330181616000175,27.96123781],[56.34291858800009,28.034022736000054],[56.516864537000174,28.089936401000102],[56.63793962000011,28.18926731800002],[56.656974587000036,28.351247597000167],[56.525577525000074,28.358716376000075],[56.39770857500008,28.420355718000053],[56.09906052600013,28.474466435000124],[56.03179960900019,28.43402911700008],[56.17282060400004,28.23075053000008],[55.84387951900004,28.141326352000192],[55.82814048400013,28.261932216000105],[55.711269596000136,28.322995554000045],[55.65734847800019,28.267164032000096],[55.45860651200013,28.1273126480001],[55.06527346800004,28.213108133000105],[54.793067474000054,28.169513016000167],[54.601070594000134,28.30259852800009],[54.42016548600009,28.483206078000023],[54.26488855100018,28.388149932000033],[54.12676652100009,28.266759019000062],[53.995239540000114,28.25007467300003],[53.80162059400004,28.402457337000158],[53.67046761400019,28.52966529100013],[53.558158493000064,28.606414020000102],[53.499507467000115,28.60972705100005],[53.41405161700004,28.421879548000163],[53.3369976190001,28.459323018000134],[53.23706454600011,28.463862993000134],[53.26429751700016,28.542405784000096],[53.079257616,28.608199030000037],[52.95085960000017,28.568899806],[52.898803623000106,28.489582024000185],[52.922904612000195,28.4467786620001],[52.76510958500012,28.386439018000033],[52.56260246900007,28.46001519600003],[52.523185563000084,28.533627249000176],[52.41608462200014,28.60275716300015],[52.230606515000034,28.490758843000094],[52.16103353400007,28.51578569800006],[52.024467520000144,28.652118191000113],[51.864578526000116,28.851056293000056],[51.5709954940001,28.90941814400003],[51.408203512,29.035543994000136],[51.23962047200007,29.217103896000026],[51.039447548000055,29.39860780600003],[50.94904754900011,29.784327233000113],[50.84638247900011,30.064443564000157],[50.792869559,30.071754259999977],[50.27269350900019,30.42777224499997],[49.60490761699998,30.89361244000014],[49.55411546300013,30.943117972000152],[49.40896956600005,30.82542314300008],[49.20521958200004,30.737116273000083],[48.766220587000134,30.56258644100012],[48.64350147800019,30.529643717000056],[48.530544604000056,30.533889318999968],[48.470813486000054,30.574886883000033],[48.52016059900018,30.701982352000186],[48.72268649100016,30.85132624100015],[48.7851755910001,30.92361345100005],[48.808559592,31.070148565000068],[48.92424762600018,31.273260351000033],[49.02650449800018,31.399660122],[49.24338154900016,31.247119207000026]],[[55.960174570000106,27.88081998600012],[55.9851075470001,27.947843193000097],[56.11038548300007,27.89331254300015],[56.24673055000011,27.869065541000168],[56.345802634000165,27.82714144000016],[56.51865357000014,27.80984806500004],[56.545627541000044,27.721446815000036],[56.45938848600014,27.663496348000024],[56.313610593000135,27.652076675000046],[56.19179957900013,27.696272774000136],[56.17464450600016,27.65632261200011],[56.04420063500004,27.578174776000083],[55.88644449999998,27.609367693000024],[55.80073954000011,27.661508328000025],[56.0622515660001,27.789375937000102],[55.960174570000106,27.88081998600012]],[[61.60704061600012,27.095061658000134],[61.401607545,27.077818406000176],[61.211322585000175,27.13685600600013],[61.063911562000044,27.28543948900011],[61.10253554000013,27.425053498000068],[61.080959515000075,27.481565966000062],[60.941459501000054,27.548366046000126],[60.91758348200011,27.646398941000143],[61.01060852500018,27.651529672000038],[61.23084655200006,27.520254484000134],[61.57712962699998,27.230744721000065],[61.656726527000046,27.129272394999987],[61.60704061600012,27.095061658000134]],[[58.47248459000008,26.717353319000097],[58.639747480000096,26.726828055000112],[58.87637363600015,26.586875082000176],[58.84206047100014,26.514374302000192],[58.582023492000076,26.5858853470001],[58.42726154000002,26.612919164000175],[58.24208853500011,26.612465200000088],[58.11069851500014,26.664191601000084],[58.01325252000004,26.661278051000068],[57.97450247900008,26.596344956000166],[57.885890507000056,26.535215401000187],[57.791137618,26.616095905],[57.73013647300019,26.80059383200006],[57.830501550000065,26.858191085000158],[58.17166160500011,26.941529499000126],[58.30012852100015,26.927644038000096],[58.47248459000008,26.717353319000097]],[[61.62244454300003,26.76310040500016],[61.74997352300005,26.672452302000124],[61.46157855400003,26.63224313900008],[61.21805560000007,26.74078526500017],[61.05295960000018,26.746780002000094],[60.964351484000076,26.811827258000108],[60.95918655500003,26.859429260000184],[61.115844493000054,26.89983439200006],[61.2789766140001,26.88773293500003],[61.62244454300003,26.76310040500016]],[[60.406814609000094,26.414360092000152],[60.269393474000196,26.387396180000053],[59.888637475999985,26.381703526000138],[59.83039850300008,26.44555870900001],[60.181976594000105,26.567539205000173],[60.31805763100016,26.558592529000123],[60.406814609000094,26.414360092000152]]]]},"properties":{"objectid":652,"eco_name":"South Iran Nubo-Sindian desert and semi-desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Palearctic","eco_biome_":"PA13","nnh":3,"eco_id":841,"shape_leng":105.36696993,"shape_area":32.1170659353,"nnh_name":"Nature Could Recover","color":"#B78139","color_bio":"#CC6767","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":352233.6682506024,"percentage":1.335119712231733}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[171.62023973400005,-43.46487238999998],[171.53192163200004,-43.38591569999983],[171.34747265600004,-43.30702925099996],[171.14413472500007,-43.335638865999954],[171.25904860600008,-43.493902273999936],[171.2673186950002,-43.546785041999954],[171.40595973200016,-43.664124812999944],[171.5754396350003,-43.573122154999965],[171.62023973400005,-43.46487238999998]]],[[[173.78132672100003,-42.10241129399998],[173.73789974500005,-42.06411236699989],[173.83474760800004,-41.94231744699988],[173.80964665700003,-41.90629973799997],[173.61517359500021,-41.89412669999996],[173.51809674000003,-41.9319074579999],[173.2534026070001,-41.90949558999989],[172.97535660600022,-42.0741022549999],[172.90538062300016,-42.04169379399991],[172.94618272200023,-41.82349038999996],[172.92643764000002,-41.78264671699998],[172.7371977350001,-41.897147872999824],[172.5368957300003,-41.98917697899998],[172.40727261500012,-42.072252535999894],[172.3407135980001,-42.20202032299994],[172.2387846260001,-42.338673507999886],[171.86624171900007,-42.54802629199992],[171.3735967010001,-42.75888597499994],[170.86282363700013,-43.02404848799989],[170.76887474000011,-43.086578155999916],[170.31768762100023,-43.311736024999846],[169.95657360600012,-43.47868526399998],[169.80705269100008,-43.56072800299995],[169.84719865500017,-43.65967268199989],[169.9815976110002,-43.70094450199997],[169.8016817350001,-43.7563985029999],[169.69033770700003,-43.81853221099993],[169.4643557300002,-43.852128051999955],[169.4144596010001,-43.96321877899993],[169.27021760900004,-43.935234789999924],[169.1787566280001,-43.95095488099997],[169.0878146550001,-43.901929129999985],[168.7915956820002,-44.035476651999886],[168.7110896810002,-44.04672265199997],[168.39884970600008,-44.37711699099992],[168.2169037330001,-44.41541591799995],[168.12145967200013,-44.54404393399989],[168.10266074000003,-44.61459290399995],[168.13107271,-44.770941717999904],[168.00164757500022,-44.96058143899995],[167.98614457400015,-45.064536484999905],[167.89039558000002,-45.15221672399997],[167.80563358400002,-45.17310677399996],[167.7814026750002,-45.30126875499997],[167.70939659500027,-45.45688582899993],[167.60491969200018,-45.56336215099998],[167.6840976640002,-45.62394319399988],[167.96012865600017,-45.53071916399995],[168.11979670300013,-45.56869806999998],[168.2205506990001,-45.652187357999935],[168.47581468800013,-45.58793621499996],[168.5510556800001,-45.509357045999934],[168.6478886220001,-45.506740047999926],[168.69441271100004,-45.44376697699994],[168.87622071700002,-45.33783296399997],[168.99743661600007,-45.17212256999994],[169.0385746620001,-45.05045974899997],[168.9467006210001,-44.988730551999936],[168.97567769800003,-44.913603553999906],[169.10385158300005,-44.76324360999996],[169.14660666500004,-44.61836576599984],[169.28724661800015,-44.6104918069999],[169.35476670400033,-44.55660974799997],[169.49035672900004,-44.53932492199988],[169.5681307320002,-44.46969192599994],[169.64456161900023,-44.46499990499996],[169.6813357100001,-44.55275675499996],[169.8021846490003,-44.51238598799995],[169.84992964600008,-44.37788007899991],[169.80824258600035,-44.337871243999984],[170.01820356100006,-44.21614438399996],[169.99290463000023,-44.177841265999916],[170.09217871800013,-44.103843477999874],[170.11868263100007,-43.90008209399991],[170.20532267700003,-43.8580520459999],[170.42298863200028,-43.888852019999945],[170.61500562900005,-43.69368476799997],[170.6256866880001,-43.84963326199994],[170.52755773600006,-44.03926879299996],[170.65351863000012,-44.087055530999976],[170.75152571000012,-43.95651694499992],[170.82762165600002,-43.91854206199997],[170.89540074200022,-43.744908589999966],[170.8518527320001,-43.69858650499998],[170.86561564900035,-43.61268004399989],[170.81826761900015,-43.53210631799993],[170.98185772700003,-43.530782311999985],[171.0566707390002,-43.58459999799993],[171.13012672100012,-43.542154207999886],[171.15184071200008,-43.41862373099991],[171.11489864700013,-43.32772316399996],[171.231628719,-43.281478359999824],[171.35580460300014,-43.27953208199989],[171.42498765800008,-43.2436972669999],[171.50332660200002,-43.35703182999998],[171.6419217060003,-43.45454957399994],[171.8883816780001,-43.264125305999926],[172.09089667400008,-43.21419866699989],[172.15858473300023,-43.11169000299998],[172.33377070000017,-43.04047433599982],[172.3824916860001,-42.96189164699996],[172.36817958600022,-42.89479115899985],[172.43756062200032,-42.858159391999834],[172.47702061100006,-42.758515829999965],[172.6528627140001,-42.708242012999904],[172.709808693,-42.578546813999935],[173.08874464600012,-42.542949205999946],[173.18284559000017,-42.41100312999998],[173.2390896700001,-42.37494334399997],[173.47177163700007,-42.30627460299996],[173.6477966330001,-42.218465449999826],[173.78132672100003,-42.10241129399998]]]]},"properties":{"objectid":653,"eco_name":"New Zealand South Island montane grasslands","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Australasia","eco_biome_":"AU10","nnh":3,"eco_id":194,"shape_leng":23.0746701953,"shape_area":4.46777876334,"nnh_name":"Nature Could Recover","color":"#B47228","color_bio":"#D6C39D","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":40019.12849634842,"percentage":0.8195091897832962}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-45.15897335299991,-60.752650438999865],[-45.15259408999992,-60.757448935999946],[-45.14835480799991,-60.75868937799993],[-45.15145286599994,-60.75304877999997],[-45.15897335299991,-60.752650438999865]]],[[[-44.729195637999965,-60.730159796999885],[-44.7419025989999,-60.73242168099989],[-44.70409068399994,-60.74368384799993],[-44.70812519699996,-60.74704060599987],[-44.69671023699988,-60.77322998799997],[-44.69797098299995,-60.741914633999954],[-44.729195637999965,-60.730159796999885]]],[[[-44.97158707599988,-60.743068397999934],[-44.96486310799992,-60.739284893999866],[-44.967530128999954,-60.722786471999825],[-44.97451507699998,-60.721596431999956],[-44.980265120999945,-60.729253709999966],[-44.97727402399988,-60.735640656999976],[-44.97158707599988,-60.743068397999934]]],[[[-45.597242757999936,-60.69114484199997],[-45.615437061999955,-60.67503283999997],[-45.62942329499998,-60.67524124199991],[-45.64107394799993,-60.68535132099993],[-45.642454278999935,-60.69159635499983],[-45.66938482799998,-60.71912600799993],[-45.63689103099995,-60.724902433999944],[-45.60420916599992,-60.732138628999905],[-45.60232230399993,-60.73230200299986],[-45.59325082899994,-60.72986307999986],[-45.59248741299996,-60.72724567299991],[-45.59230421799998,-60.72661757899982],[-45.59304795299994,-60.72351695699996],[-45.597600675999956,-60.71468797799997],[-45.59627839299998,-60.70959976199998],[-45.597525886999904,-60.69419177899988],[-45.597242757999936,-60.69114484199997]]],[[[-44.52243910399994,-60.68442551999982],[-44.532233076999944,-60.67792494199995],[-44.53205437999998,-60.681708931999935],[-44.528489993999926,-60.685265852999976],[-44.52243910399994,-60.68442551999982]]],[[[-45.376424672999974,-60.670107531999975],[-45.474016838999944,-60.660465742999975],[-45.45813299699995,-60.66348955099994],[-45.39590123199997,-60.66739409799982],[-45.376424672999974,-60.670107531999975]]],[[[-45.57154160099998,-60.655802979999976],[-45.58593879799997,-60.64709050099998],[-45.60128198199993,-60.64598599799996],[-45.61347176399988,-60.64168599599998],[-45.61279909399991,-60.64444542499996],[-45.60767528399998,-60.64645305199997],[-45.57154160099998,-60.655802979999976]]],[[[-45.21958695699993,-60.63710755999989],[-45.22846430699991,-60.62536175799988],[-45.23864356099989,-60.627025255999854],[-45.2424876959999,-60.634031286999914],[-45.24415244099998,-60.633973373999936],[-45.25072191899994,-60.62867911599983],[-45.23179767899995,-60.63440316999993],[-45.22658174899993,-60.634695925999836],[-45.21958695699993,-60.63710755999989]]],[[[-45.65336276799991,-60.63903222499988],[-45.683237771999984,-60.63906750099994],[-45.65771966799991,-60.64180405299999],[-45.656891733999885,-60.641508574999875],[-45.65336276799991,-60.63903222499988]]]]},"properties":{"objectid":655,"eco_name":"South Orkney Islands tundra","biome_num":11,"biome_name":"Tundra","realm":"Antarctica","eco_biome_":"AN11","nnh":1,"eco_id":131,"shape_leng":8.46090601895,"shape_area":0.0243705548262,"nnh_name":"Half Protected","color":"#60C4E8","color_bio":"#9ED7C2","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":147.9331772811234,"percentage":0.0017311935083305608}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[3.493012381000028,27.008361004000108],[3.364730056000099,27.1153238120001],[3.225086355000144,27.173248395000087],[3.099356165000074,27.201024185],[2.887070755000082,27.218701894000105],[2.634072711000044,27.211589993000075],[2.124898794000046,27.15097726600004],[1.351524079000171,27.02959426900003],[0.997523321000187,26.995470978000128],[0.372722211000166,26.95443368400015],[0.107764008000061,26.9241498990001],[-0.130285415999879,26.880490037000072],[-0.393620505999877,26.803897356],[-0.63017889799994,26.696513533000086],[-0.894955949999883,26.521153284000093],[-1.192919340999879,26.294285477000187],[-1.382047447999867,26.163350634000153],[-2.366686143999914,25.60949136800008],[-2.505316084999833,25.55473507900001],[-2.857487491999962,25.460094095000102],[-3.146219121999934,25.41744804500013],[-3.376446292999901,25.40070042800005],[-3.787034419999941,25.398454794000088],[-4.365344016999927,25.434841972000186],[-4.961023092999937,25.487728663999974],[-5.388162117999968,25.51565448800011],[-6.180731599999888,25.51842340600001],[-6.454192975999945,25.537208400000168],[-6.761389964999978,25.595222328000034],[-6.896987914999954,25.64313316300013],[-7.299359844999969,25.87508905700014],[-7.453369189999933,25.91785073700015],[-7.569661190999909,25.91952586100018],[-7.920789055999876,25.881297897000138],[-8.101504912999872,25.90334744300003],[-10.157155140999976,25.90334744300003],[-11.974880196999948,25.84275660800006],[-12.214731240999868,25.79816443100009],[-12.62020159199983,25.643587165000042],[-13.03144119399991,25.45778152800017],[-13.440069879999896,25.227439384000093],[-13.63363092499992,25.07177586400013],[-13.762539457999935,24.93322720200007],[-13.896475160999898,24.75176682700004],[-14.078137873999935,24.427803769000093],[-14.174445183999978,24.21151424200019],[-14.341846576999956,23.752573696000127],[-14.490877596999951,23.38626197100018],[-14.599944437999966,23.090872609000087],[-14.868067088999965,22.595527372000106],[-15.41794574599993,21.686637029000167],[-15.658801686999936,21.345803151000155],[-15.882951035999895,21.157555319000096],[-16.312372324999956,21.121666908000122],[-16.378608961999873,21.09402448000003],[-16.24058001999998,20.835369933000152],[-16.223999995999918,20.775870080000175],[-16.133959973999936,20.63855003900011],[-15.939859939999963,20.38940997000003],[-15.882640072999834,20.253569905000177],[-15.83892991499988,20.007079992000115],[-15.831320043999881,19.804980027000113],[-15.857009981999965,19.36495],[-15.829699955999956,19.28004008],[-15.5843800479999,19.171319939000057],[-14.745787480999923,19.08555111900006],[-14.603906165999945,19.114996019000046],[-14.466302460999941,19.202763586000117],[-14.295088731999897,19.414893242000176],[-14.180348454999887,19.636633671000027],[-13.960154299999886,20.18395001900018],[-13.846641367999837,20.437292639000134],[-13.69109313399997,20.691950270000063],[-13.60780725099994,20.78714466300005],[-13.494200896999814,20.879722063000088],[-13.254815509999958,20.980762560000073],[-13.106031534999943,21.010519355000042],[-13.05708008399995,21.188690060000056],[-13.004600082999957,21.234559983000054],[-12.886410067999975,21.20698011899998],[-12.847019966999937,21.23849015700017],[-12.697319913999934,21.218800036000175],[-12.65397992599992,21.270010053000078],[-12.551550034999934,21.250310074000026],[-12.516100140999981,21.285770000000127],[-12.401849980999941,21.28182996900017],[-12.291550061999885,21.329099955000117],[-12.208820148999905,21.289710031000084],[-12.130029915999899,21.305469979000065],[-11.99760991799991,21.291830016000063],[-11.993290035999962,21.29327003500015],[-11.875449948999972,21.28044997300003],[-11.911309968999944,21.19919000300007],[-11.910389912999904,21.017270023000094],[-11.999999917999958,20.943139918000043],[-12.021270169999923,20.808480067000175],[-12.094278595999981,20.744508944000074],[-11.13216710699993,20.183277243000134],[-9.507147163999946,19.79327245600018],[-7.362120838999886,18.948262086000057],[-7.023777252999821,18.763711039000043],[-6.517301674999942,18.459077094000065],[-6.17029463099982,18.271939890000056],[-5.84450412599989,18.139489267000158],[-5.613202772999955,18.065319732000034],[-5.322840329999963,17.98767518699998],[-5.081222493999974,17.935129490000065],[-4.785843111999952,17.884864104000087],[-4.261157405999882,17.83191930099997],[-3.94004165799987,17.822315545000095],[-3.523834067999871,17.836658425000053],[-3.298919282999975,17.857814545999986],[-2.965631658999826,17.90816789600018],[-2.529948067999953,18.013166295000076],[-2.233278345999963,18.114773996000054],[-2.063668683999822,18.18414034100016],[-1.698551936999877,18.359252245000107],[-1.282597303999921,18.599304406000044],[-1.081015449999825,18.730832111000097],[-0.83111586099983,18.908484326000064],[-0.642117344999917,19.08144794800006],[-0.533364931999927,19.204208947999973],[-0.336269014999971,19.461552733000133],[-0.11100375999996,19.780949579000094],[0.080441619000112,20.02355043900019],[0.296524603000023,20.24464512300017],[0.429524624000067,20.340720668000017],[0.612250456000083,20.43259997000007],[0.757011086000034,20.4758983750001],[1.023262277000185,20.51890980900015],[1.71635588100014,20.55713975700013],[2.473387475000038,20.56860993300012],[3.484791434000101,20.532064960000127],[3.834994502000086,20.48064247400015],[4.431843605999973,20.28816759700004],[4.655243265000024,20.17422281400013],[5.638038706000145,19.53326926600016],[7.130356503000087,18.757264011000075],[7.471696100999964,18.650324813000054],[8.641737678000084,18.437589981000087],[8.615100047000055,18.521780035000177],[8.683510030999969,18.540420021000045],[8.628309993000073,18.663450056999977],[8.569369884000082,18.690120074],[8.422139743000173,18.694599959000016],[8.335509932000093,18.645750017000125],[8.220640005,18.63066000200007],[8.173999995000145,18.732120023000107],[8.282729993000146,18.731010041000104],[8.315979988000151,18.7919400560001],[8.420279916000027,18.820169963000183],[8.549140085000033,18.80329],[8.572619916000065,18.92097008500008],[8.49666994100005,18.98570002000008],[8.40722997100005,19.119169800000122],[8.414189977000035,19.23524000600014],[8.461179739000045,19.298749946000157],[8.578170002000093,19.381149998000126],[8.747470054000189,19.403110073000164],[8.876850011000045,19.2950799300001],[8.981839936000085,19.27729997700004],[8.986969862000024,19.188390004000098],[8.929830084000173,19.104730002000167],[9.038010020000172,19.0684999880001],[9.082200009000076,19.110769951000123],[9.225329941000098,19.042909853000083],[9.234980059000065,18.915819917000135],[9.31938004900013,18.896780013000182],[9.37663001499999,18.939209802000164],[9.418610073000139,19.04249004600007],[9.502640069000165,18.988480079000112],[9.544110021,18.871369947000062],[9.601170062000051,18.79024005600013],[9.567949990000159,18.731149977000143],[9.647359989999984,18.69826997500013],[9.701880062000157,18.60384001500006],[9.680350004000047,18.430940002000057],[9.736400042000128,18.346579969],[9.691689914000051,18.30013006000013],[9.533729948000143,18.32779001299997],[9.501260073000026,18.251480077000167],[9.401440030000117,18.373179930000106],[9.355739966000044,18.247530013000187],[9.198700056,18.102060072000086],[9.157809913000108,18.098110008000106],[9.110099877000152,18.205590088000065],[9.066330048000168,18.20530000700012],[9.025640041000088,18.109299949000047],[9.126649979000092,18.043749937000143],[9.081282236999982,17.97534866000018],[9.10572019600005,17.946837708000146],[9.177849962999971,17.933269949000135],[9.312919940000029,17.796179966000068],[9.28628433200015,17.73617955000003],[9.527779786000053,17.471801009000103],[9.675913729000115,17.34485948700012],[9.938251551000178,17.17440222700003],[10.209723609000037,17.037153095000065],[10.48990496099998,16.922165825000093],[10.950896923000187,16.766355047],[11.1436998960001,16.732968535],[13.36205531700017,16.62733256300004],[13.534812816000112,16.640332529999966],[13.730424694000021,16.679454905],[13.999065006000023,16.81768729900017],[14.14512187500003,16.922013634000052],[14.72152487500017,17.237600797000027],[15.046805075000066,17.39266012900015],[15.357780102000163,17.480875288000107],[17.262423725000076,17.841213270000083],[17.571580271000073,17.951893242000097],[18.006332680000128,18.162160222000068],[18.235006502000033,18.26267819500015],[18.528660852000087,18.341809764000118],[18.70963093900008,18.335136410000075],[18.844213935000084,18.28453312500011],[18.961889419000045,18.19895534000017],[19.072697022000057,18.089579415000117],[19.28704417600011,17.80953089000002],[19.400113620000127,17.625288020000028],[19.561669031000122,17.224645855000176],[19.687954816000058,17.069467518000067],[19.825536312,17.02022168600007],[20.01665593900009,17.027057694000064],[20.18322329199998,17.067595913],[20.368814064000105,17.133307226],[20.754724825000096,17.292441867000093],[20.902986665000128,17.326666896000063],[21.303230958000142,17.388242941000044],[21.942233299000065,17.42278360800009],[22.04315990100008,17.408749986000146],[22.147050054000147,17.544339751],[22.346670073000098,17.46773005200015],[22.451379951000035,17.533800027000154],[22.61172005900005,17.572659955000063],[22.66454998800009,17.475999999000067],[22.603650072000164,17.395609920000027],[22.76502993000014,17.382640063999986],[22.830749977000096,17.42932003100009],[22.833110053000155,17.517880077000086],[22.96669987900009,17.572530052000047],[22.902829801999985,17.76833994400016],[22.98385003200019,17.798480019000067],[23.004470067000057,17.70351003000019],[23.187059979000026,17.487929928000142],[23.24235999600012,17.49548998500012],[23.323019913999985,17.649710055000014],[23.440149937000058,17.654669946000183],[23.464799949000167,17.60292007600009],[23.607729922000033,17.75372993500008],[23.730690078000066,17.856650042000126],[23.859829943000136,17.828049965000105],[24.007609970000033,17.851109989000122],[24.06734973900012,17.74347008300009],[23.96439002800014,17.582709815000044],[23.875580034000052,17.56477003600014],[23.833374260000085,17.51992273100018],[24.546341622000057,17.529486013000053],[24.764099793000128,17.500318084000185],[24.94547319100019,17.49815869100013],[25.051452351000137,17.52346273800009],[25.27541456200015,17.669910557000037],[25.479872306000118,17.854573450999965],[25.59525769100003,17.931420187000185],[25.67917969300015,17.939659431000166],[29.574059723000175,18.01480181100004],[30.323129666000057,18.00118235700006],[30.96602584400017,17.989493336000066],[31.111294907000172,17.95943874700015],[31.519262417000164,17.843522421999978],[31.694886601000064,17.80120837100003],[31.97440455600008,17.776941669],[32.25385977500008,17.825095177000037],[32.45812548200007,17.893416646],[32.70884801700004,18.009818188000054],[33.10052399500012,18.2434683460001],[33.31606488800003,18.39756304100007],[33.406881667,18.495278897],[33.45041601100013,18.627760390000105],[33.408366160000185,18.746037620000152],[33.30911746000004,18.88133229100015],[33.07474133600016,19.135696826000185],[32.721855491000156,19.40614996300019],[32.60590672500007,19.55192685900016],[32.4913881920001,19.838223190000065],[32.51132928100009,19.990770789000123],[32.62684672300003,20.18243019900018],[32.762020199000176,20.318200177000165],[32.950132152000094,20.444456274000174],[33.57506128900019,20.506949187000146],[33.74797311200007,20.413529996000136],[33.86977928700014,20.301222874000132],[34.02543705700003,20.107558518000076],[34.13213588100018,19.94329459000005],[34.1746416310001,19.848353561000124],[34.257233324000026,19.541739205000113],[34.36502599700003,19.218361186000152],[34.55639016900017,18.900581548000048],[34.6771973970001,18.757486456000095],[34.774635352000075,18.683646446000125],[34.90135538200013,18.62878820600008],[35.16329891500004,18.58702590900009],[35.41237198400012,18.601350871000022],[35.59583892300009,18.641602242000033],[35.761585229,18.70754119200012],[35.83408213100006,18.758248498000057],[36.12845441900015,19.034318436000035],[36.21715180600012,19.08474149200009],[36.43796410800019,19.110112892000018],[36.803194779000194,19.049324908000187],[37.39010391700015,19.02169811500005],[37.33684951999999,19.138272678000135],[37.29183953799998,19.477472710000086],[37.24457951800014,19.548067781000043],[37.233890580000036,19.671721640000044],[37.259164537000174,19.741532639000127],[37.03299000200002,19.842719940000165],[36.814167008000084,19.865363871000113],[36.74468674700017,19.90629060000009],[36.654800100000045,20.09464894200005],[36.66608007800005,20.30446995],[36.69680999500008,20.38517000100012],[36.82337996900003,20.570890076000182],[36.847849913000175,20.663190018000023],[36.83993975100009,20.775920069000165],[36.717760068000075,20.979340008000122],[36.64473008800013,21.06784003100006],[36.30040000499997,21.395510001000105],[36.22881004400011,21.553120039000078],[36.16984001100013,21.79830001099998],[36.111189982000155,21.989829977000056],[35.98581007900003,22.19634997999998],[35.775410067999985,22.475650015000156],[35.56107002700014,22.72483004000003],[35.444640211000035,22.892769987000122],[35.37221996400007,22.967160073000116],[35.25369991200006,23.221200010000132],[35.16110020800011,23.447879932000035],[35.04350003600018,23.783159948000048],[34.96959998900013,23.948920063000116],[34.71286993900003,24.283369968999978],[34.61990992200003,24.463539959000173],[34.400869971000134,24.84453993],[34.35093664200019,24.945790135000095],[33.466752862000135,25.829973915000153],[33.294625816000064,25.93862326900006],[33.169375233000096,25.933221741000068],[33.12823152100009,25.811900170000172],[33.0738817940001,25.52815781600009],[32.9758285580001,25.2952813820001],[32.90600953600017,25.200344345000133],[32.9918214490001,25.062235727000086],[33.056846577000044,24.741370270000175],[33.07578649300007,24.52103518100006],[33.04243054199998,24.09261632800019],[32.97653151600019,23.73161530200008],[32.91912050900004,23.621716816],[32.840381581000145,23.54298392300018],[32.705875504000176,23.56922749500012],[32.67174959100004,23.659639061000064],[32.68737748200016,23.87530006500009],[32.741825487000085,24.240925723000032],[32.75418057999997,24.41104935600015],[32.727084350000155,24.731205188000047],[32.67837056000013,24.603331488000094],[32.163979895000125,23.63884899100009],[32.04821790000017,23.551475735000054],[31.89491146400013,23.48609630400017],[31.58388942900001,23.418706480000083],[31.208263328000157,23.368171098000175],[31.051819442000067,23.336518617000024],[30.873553687000026,23.27558437800002],[30.705809436000095,23.156885572000135],[30.58633141000007,22.959558183000127],[30.524934411000174,22.80258496300013],[30.468540232000123,22.55608952000017],[30.479655954000066,22.380721998000183],[30.5157094220001,22.24606362500009],[30.618061792000162,22.00243957900011],[30.73814944300011,21.761111334000077],[30.75781308200004,21.549500564000027],[30.699996663000093,21.397952268000154],[30.547226800000146,21.348716245000162],[29.96808438900007,21.264595001000032],[29.73513325100015,21.248417839000183],[28.919804269000053,21.264595001000032],[28.266246910000064,21.290478461000077],[27.57386436200011,21.348716245000162],[27.253519551000124,21.367520165000087],[26.963446309000062,21.363434626000185],[26.65426360500004,21.376258481000093],[26.388813853000045,21.367590179],[25.952695843000186,21.30458231300014],[25.56260141100006,21.229529752000133],[24.788329518000182,21.09258485500004],[24.3013966150001,21.04471645300015],[24.007265135000182,21.02555252700006],[23.51037884700014,21.0079051190001],[23.06935123500017,21.00591837400009],[22.702152391000084,21.01277587100003],[22.255986637000092,21.03031091200006],[20.848225374000037,21.15828920900009],[19.548571412000058,21.02799262100018],[18.94618989800017,20.999179923000042],[18.9341198570001,20.852319952000073],[18.970659842000146,20.765099946000078],[19.15072985200004,20.637590202000183],[19.19763987800019,20.538069921000044],[19.150969944000167,20.260730045],[19.087659961999975,20.032499915000074],[18.975889923000068,19.67970996100013],[18.923620090000043,19.57590007300007],[18.858609932000093,19.514960024000118],[18.67122998800005,19.416369833000033],[18.545019800000034,19.378660019000108],[18.357549910000046,19.375310007],[18.210969811000098,19.463880086000074],[18.09711992000007,19.59523973900008],[17.93146981700005,19.66193000800007],[17.838109883000072,19.667620029000034],[17.57978984500005,19.76096007300015],[17.477789794000103,19.843999957000108],[17.297839830000044,20.078920077000078],[17.086769887,20.244599926999967],[16.962769629000093,20.359260038000116],[16.847909912000148,20.387749925000037],[16.552709818000096,20.424199964000138],[16.43689994500005,20.496880017000137],[16.375769794000178,20.592330012000104],[16.304639950000137,20.78390996800016],[16.237689875000115,20.894179964000045],[16.099209863000112,21.01102008200013],[16.01065985000014,21.129699961000142],[15.920809930000132,21.35348998600017],[15.93967979900009,21.61975996700005],[15.856719652000038,21.822979947000135],[15.638941773000113,22.1909368580001],[15.652333592000161,22.27264807800009],[15.822659612000109,22.20174006400009],[16.28313981500014,21.845779989000107],[16.432612799000026,21.75679103400006],[16.554827032000105,21.74516840900003],[16.627622696000174,21.778938228000186],[16.628581456000063,21.85881036899997],[16.523555338000108,21.99371387900004],[16.517059614000175,22.093769944000087],[16.211103827000045,22.521555462000094],[15.980830678000132,22.770408809000116],[15.771593620000147,22.9373222210001],[15.578104622000183,23.011653074000094],[15.32178599200006,23.012522049000154],[14.909081282000159,22.95472801699998],[14.537897454000017,22.88635088900014],[14.11781597200013,22.76957313200012],[13.74631063400011,22.633390790000135],[13.300103897000156,22.42494775400013],[12.967385694000086,22.231528136000065],[12.824238630000082,22.134798204000163],[12.546704838000153,21.91143721500015],[12.402315117000114,21.7803216100001],[12.179454267000153,21.635557435000123],[11.918194530000164,21.53126587700018],[11.701519873000052,21.475086368000177],[11.37547431900009,21.433906199000035],[11.17633317900004,21.435079125000073],[10.965510894999966,21.462441446000184],[10.673424566000108,21.559495535000167],[10.55622397500008,21.63561347600006],[10.454847224,21.742349054000044],[10.23129513400005,22.026487644000042],[10.044864459000166,22.146802508000064],[9.818893163999974,22.210033068000087],[9.334165256000176,22.29000638400015],[9.160646287000134,22.35114875500011],[9.072474235000072,22.405057545000147],[8.520610065000028,23.01656993400013],[8.512779992000105,22.976390032000097],[8.592900057000179,22.8635800670001],[8.607429977000152,22.790060048000043],[8.559149988,22.737499958000114],[8.449019927999984,22.805069974000162],[8.442160078000143,22.900070062999987],[8.355900085000087,22.911999992000062],[8.319219988000157,22.811790065000082],[8.248509951000074,22.79494002500013],[8.196399768000163,22.690150058000086],[8.247239966999985,22.560889972000155],[8.155399965000015,22.545340016000182],[8.102589926000064,22.664490044000104],[8.052850028000023,22.619379999000046],[8.037869849,22.536939991000168],[8.067639930000041,22.320369952000135],[8.007750016000045,22.220929936000175],[7.932500072000153,22.219179946000168],[7.93289999000018,22.316279952000116],[7.989370011000119,22.52905024800009],[7.965590066000118,22.596720068000025],[7.971640048000097,22.76013999800017],[7.879769771000042,22.74449992000018],[7.829069860000061,22.645110069000168],[7.718409979000171,22.535040031000165],[7.634180024000045,22.59402995500011],[7.685249929000065,22.701660004000132],[7.834669935000079,22.845400021000103],[7.768379935000041,22.910360014000105],[7.679419972000062,22.791240086000187],[7.588660029000039,22.747470080000085],[7.542699983000091,22.83943012800006],[7.570519939000121,22.906440049000025],[7.636840038000059,22.94146995900013],[7.676470053000173,23.04522],[7.574470003000101,23.038619955000115],[7.548439994000091,23.11343002500007],[7.440979805000097,23.059640260000037],[7.423189819000072,23.19526998100008],[7.357049964000112,23.2538200300001],[7.236330014000146,23.18436994400014],[7.267119955000169,23.118690030000153],[7.376030021000133,23.0247099770001],[7.38655003000008,22.881489923000117],[7.336069968000061,22.818279921000055],[7.187160068000026,22.79108994100011],[7.18205003300011,22.852069946000142],[7.232350027000109,22.994849950000116],[7.146930000999987,23.07793999900008],[7.007820013000071,23.02777994100012],[6.913130072000115,22.953240062000077],[6.891240053,22.75028006300016],[6.803399929000022,22.665629949000163],[6.744119924000188,22.656680038000104],[6.622589930000174,22.741969985000026],[6.533230050000043,22.691329920000044],[6.491669975000093,22.525530201000038],[6.306520029000183,22.471429936000106],[6.328269936000083,22.347030113000073],[6.476729929000101,22.254010249000146],[6.437049924000121,22.16344991200009],[6.272609958000146,22.25776000200017],[6.234340049000139,22.321670036000057],[6.136020047999978,22.302080070000102],[6.040140036000082,22.403680027000178],[5.972599943000091,22.266559944000164],[5.927410161000125,22.233560073000092],[5.707229952000034,22.26532006000008],[5.625579922000099,22.259220088000177],[5.573240033000161,22.31576016500003],[5.406809986000098,22.24902008300012],[5.342689961000133,22.32068010000006],[5.19117003700012,22.379620033000037],[5.093299943000034,22.49063001800016],[4.970389953000051,22.387729977000163],[4.906100068000057,22.41490006700002],[4.747490060000189,22.343469933000165],[4.820429918000059,22.48965011500013],[4.783030076000159,22.554509952000046],[4.670269925000071,22.559160048000024],[4.615120053000055,22.61388007900007],[4.604330029000039,22.748540106000178],[4.72259995700017,22.876229918000035],[4.780189993000135,23.04451996800009],[5.01742002400016,23.24611000400006],[4.728027538000106,23.823321915000122],[4.221863515000109,24.441966832000162],[4.07483996600007,24.431640037000022],[4.021900025000036,24.497689945000104],[3.933850085000131,24.504670017000137],[3.830940011000052,24.451830055000073],[3.69940997100008,24.353639957000155],[3.556529987000147,24.344349975000114],[3.52612975500017,24.41102000100011],[3.560499942000092,24.511540076000188],[3.734939953000151,24.63428988800007],[3.819349976000069,24.719550088000062],[3.832750025000109,24.78997004400003],[3.733830148000095,24.932889808000084],[3.734308403000114,24.992455085000074],[3.558013179000113,25.18833866800003],[3.498667973000067,25.31280766700013],[3.459574945999975,25.450661421000177],[3.444219573,25.68354234600008],[3.459144956000102,25.879164174000095],[3.539440158000048,26.378869869000084],[3.571842551000032,26.657731736000187],[3.570480648000057,26.781559511000182],[3.539285110000151,26.927818835000096],[3.493012381000028,27.008361004000108]],[[1.525539970000125,25.981980076000127],[1.470640046000028,26.151370074000056],[1.411009938000063,26.221649919000072],[1.305849977000094,26.264979874000062],[1.05197989900006,26.29187977300012],[0.975359816000037,26.31630993600004],[0.9919099170001,26.394890002000125],[1.449059822000095,26.441760071000147],[1.517399926000053,26.462690077000104],[1.573869948000038,26.406609939000077],[1.558930077000184,26.101260006000132],[1.525539970000125,25.981980076000127]],[[0.95522999700006,26.104809977000173],[1.009779993,26.06215998700003],[1.056669951000174,25.90305008200005],[1.096389913000166,25.86249983400006],[1.076410063000083,25.712560042000064],[1.002670018000174,25.650140017000126],[0.924829940000166,25.667200048000097],[0.835759965000136,25.79447005300011],[0.74348977,25.973580051000113],[0.706650023,26.093360054000186],[0.551059990000169,26.087179993000177],[0.669630032000043,26.194970044000115],[0.822059978000027,26.247049952000168],[0.889970066000103,26.136550073000024],[0.95522999700006,26.104809977000173]],[[-9.825010076999888,25.10416005200011],[-9.720830019999937,25.010560026000178],[-9.769170030999874,24.970279969000103],[-9.926390008999874,25.05417002900009],[-9.890450076999912,25.151609930000063],[-9.825010076999888,25.10416005200011]],[[-11.709719933999907,24.438889947],[-11.65470999799993,24.457219962000124],[-11.474720075999869,24.354999887000076],[-11.402780011999937,24.360279958000035],[-11.327219920999937,24.290550000000167],[-11.370830099999921,24.246669982000185],[-11.58834008499997,24.275279916000045],[-11.781950078999898,24.33749998200011],[-11.782169927999973,24.415949969000167],[-11.709719933999907,24.438889947]],[[-11.625730069999975,24.16440001000018],[-11.372310074999916,24.02778000100011],[-11.315530082999942,23.95252019999998],[-11.389489975999936,23.91276996200014],[-11.50209998199989,23.953939977000175],[-11.622060053999974,24.073480065000183],[-11.896479934999888,24.151269977000084],[-12.05789006799995,24.16463006800018],[-12.082840018999832,24.227790081000137],[-12.004909994999934,24.283970022000176],[-11.625730069999975,24.16440001000018]],[[-12.75527994499987,24.15082992700013],[-12.848330259999955,24.284999738000124],[-12.877499936999925,24.361940002000097],[-12.829169958999955,24.404720071000042],[-12.711399926999889,24.301109966000126],[-12.699719945999846,24.23361000500006],[-12.75527994499987,24.15082992700013]],[[-12.831110050999882,22.65499992700012],[-12.931479979999892,22.60220995500015],[-12.96629004099998,22.66980003800012],[-12.936190097999884,22.849910005000027],[-12.869520247999958,23.001749933000042],[-12.773079963999976,22.944919949999985],[-12.860229913999945,22.7555802],[-12.831110050999882,22.65499992700012]]]},"properties":{"objectid":656,"eco_name":"South Sahara desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Palearctic","eco_biome_":"PA13","nnh":2,"eco_id":842,"shape_leng":174.069849621,"shape_area":253.97401953,"nnh_name":"Nature Could Reach Half Protected","color":"#DF8245","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":2929593.5741784885,"percentage":11.104441404307547}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[103.54180165100013,54.06653630200009],[103.31849651900018,54.17378074100003],[103.23329967000018,54.34146373200002],[103.15010056300008,54.38683279500003],[102.92252367800012,54.27971039600004],[102.81510154200015,54.168817481000076],[102.81020366000007,54.06618526800003],[102.73339860500005,53.988065427000095],[102.23750258200016,53.967725063000046],[102.13359866600013,53.915813589000095],[102.04830156900016,53.804570144000024],[102.06249967500003,53.69763868399997],[102.22250366900016,53.61935489400008],[102.55319958900014,53.57558409300003],[102.77330065500018,53.50532346000017],[102.79900359400011,53.27658970400017],[102.65589852300013,53.08684638200015],[102.71269966300014,52.99289262300016],[102.98840359300004,52.91650096400002],[103.08979763100001,52.86104981300008],[103.11139662300013,52.742398441000034],[103.09130067400014,52.61810604800013],[103.42330165700014,52.541795526000044],[103.56839759800005,52.491383407000114],[103.86840066500002,52.34134046700012],[104.12709754500014,52.37301014700017],[104.49859657000013,52.51228401800006],[104.63320155300005,52.61574503400004],[104.85839864900004,52.72857802400006],[105.24610156900002,52.81325804500011],[105.41059859900014,52.89556967500005],[105.42939753100018,53.01235087600014],[105.1818006370001,53.07135411000013],[105.07530252200013,53.11807433600006],[105.08989759500008,53.227935606000074],[104.99939751600004,53.325128467000184],[104.84480253200013,53.34108995700012],[103.99539957400003,53.285157853000044],[103.84809852200004,53.31411950800015],[103.81569659900003,53.37446954600017],[103.89630167400009,53.43698194700016],[104.15440360700012,53.56101584200013],[104.38200362600003,53.6343972250001],[104.41100367000018,53.73234965400013],[104.14859763000015,53.84454913999997],[104.0059966460002,53.92497283000006],[103.80729659100012,53.99282651600009],[103.64050258500004,54.1178374050001],[103.54180165100013,54.06653630200009]]],[[[102.0257036230002,54.05112784900018],[102.17410253700007,54.098167928000066],[102.31079863700012,54.277512324999975],[102.27680163800011,54.35931333000008],[102.13719953200018,54.47739607300002],[101.99009662800006,54.52928826800007],[101.84729766400005,54.500177415999985],[101.65850065900014,54.38776368900011],[101.38809962400018,54.342913634000126],[101.40509762099998,54.269161938000195],[101.63349962100011,54.09845811000008],[101.78379854400009,54.039496617000054],[102.0257036230002,54.05112784900018]]],[[[99.84825851400007,54.98705970800006],[99.53542359100004,55.05173933500015],[99.38928963500018,55.11115210800017],[99.21550763700014,55.09358062200005],[99.11916352700013,55.03892206400002],[99.22411367200016,54.92135799200008],[99.67920659100008,54.83452600200002],[99.87587755500005,54.73394048100005],[100.09580260200016,54.53007817900016],[100.24349961500013,54.48064607300017],[100.56240052100014,54.472455947000014],[100.68070253500002,54.55857899700004],[100.60929861000011,54.64771131700013],[100.48269666800002,54.708312645000035],[100.42990157400016,54.79338292700015],[100.5941005430002,54.842266019000135],[100.81939654500019,54.86416675800007],[100.80339867700008,54.952467761000094],[100.50980357500015,55.00481023200007],[100.04799658400009,54.98142958400018],[99.84825851400007,54.98705970800006]]],[[[93.62882952200016,57.0154988860001],[93.47093156600016,57.01326678600003],[93.26098651600006,56.95960416500003],[93.15637952600014,56.86649228500016],[92.99199665800006,56.601621462000196],[92.90621156700007,56.51656274700008],[92.68222062800015,56.44993399200018],[92.40511356700006,56.4166678950001],[92.16426863200007,56.340665658000034],[91.96534762900006,56.04268715600011],[92.00385258300008,55.94976269500006],[91.83394654400013,55.79524013100013],[91.68910256400005,55.792646267000066],[91.22382362100018,55.857208044000174],[91.06888564899998,55.83825656100004],[90.64039655600016,55.72454431000017],[90.49159262900008,55.73606573800009],[90.2025225810001,55.81554696800015],[90.02227763200005,55.957266678],[89.99180555800012,56.134830759000124],[89.84888455300012,56.39140316200019],[89.62559551400017,56.516661653000085],[89.1800306400001,56.62253079000004],[89.02423050599998,56.618402870000125],[88.7423325170002,56.53018216600009],[88.44477059600001,56.464388417],[88.12801361300006,56.266147689000036],[87.8219375220001,56.214258009000105],[87.66555752700009,56.21055086100017],[87.35253853800015,56.244017789000054],[86.42217259800009,56.3654663690001],[86.14430261700016,56.4532180220001],[85.70530664000012,56.72828509500016],[85.57397462300008,56.73439214900009],[85.17354562700018,56.573060462000115],[84.86195357300011,56.539573418000145],[84.58020059100011,56.45359990200012],[84.52661860400008,56.2845121040001],[84.28534652700012,56.167233856000166],[84.21588854500015,56.085253478000084],[84.17351551000013,55.82047485600003],[83.9008174980001,55.59910175200008],[83.86640157199997,55.42266805500009],[84.07286863400009,55.18099264000011],[84.29724162100018,55.05901868200016],[84.72187755400006,54.946344613000065],[84.84661854500013,54.7863216770001],[85.11121360400017,54.69130324900004],[85.39194449600012,54.61973353000013],[85.67014355100014,54.403137273000084],[85.77667955200008,54.33907153700011],[86.20973158600003,54.26215399700004],[86.28820061600004,54.18556502700005],[86.45750449900004,53.93382730500019],[86.68288465600017,53.69877493500013],[86.90743265700013,53.563014926000164],[87.03388255100009,53.542617229000086],[87.0752105310001,53.612358855000025],[87.07553055200003,53.80922813500007],[86.95311755000012,53.97411894600015],[86.8875045150001,54.148702087000174],[86.73532050100005,54.402721363000126],[86.73180362200009,54.492899409000074],[86.59944951500006,54.65352835800013],[86.53544664400005,54.82985979600011],[86.4677126520001,54.91101589700014],[86.25842256400017,55.04181415500011],[86.08126064700014,55.18963287400004],[85.83403054500002,55.29917177600004],[85.72445660700004,55.37485684100011],[85.82769751400014,55.49387517200006],[85.65827963700013,55.72582221500011],[85.62461053800013,56.0021861350001],[85.70861061900007,56.08281937300006],[85.89930763400014,56.13793977500012],[86.19783062400018,56.1863953890001],[86.64562961100006,56.089647439000146],[86.86968257700005,56.00911729900014],[87.13539863100004,55.88773778500018],[87.34546655900004,55.816404939000165],[87.6626436430002,55.584396374000164],[88.15850060600008,55.40235065700017],[88.54577655200006,55.345739283],[88.994239553,55.37454771600005],[89.36975853900014,55.32903364700013],[89.59026361300005,54.95926917300005],[89.75930765700014,54.8494372400001],[89.94877655500017,54.755818757000156],[90.38115652800008,54.69344331600013],[90.69663962900012,54.67273968000006],[90.79218259700008,54.59858095900012],[90.70787054100015,54.38232366600005],[90.52541360800006,54.14346909700009],[90.36225852100006,54.04988799800003],[90.25916262100014,53.90520444700013],[90.20554358600003,53.76799822400011],[90.20233164100011,53.59030539700018],[90.25921660000006,53.39169301600009],[90.25218954800005,53.247059756000056],[90.20767963100008,53.16973720200008],[90.0771175750001,53.09626462400013],[89.88858057600015,53.03252427300015],[89.78527060200008,52.953512598000145],[89.76616656800019,52.885300502000064],[90.20482659800001,52.62542613200009],[90.34310151400013,52.70772284300011],[90.4585035570002,52.73911826700004],[90.80590863400005,52.75499878800014],[91.20485654700008,52.830871105000085],[91.4048236120002,52.91302180300005],[91.44870756900019,53.10480595100012],[91.5456995990001,53.06641415200016],[91.75826265300014,53.05859400400004],[92.23634361100011,53.11496498500014],[92.55684663400007,53.031185516000164],[92.6319575390001,52.981211435000034],[92.96007552100008,53.01020795900007],[93.00947560900005,53.18764748500007],[92.91117851600006,53.353576311000154],[92.951347613,53.441171223000026],[93.0644075850002,53.500921452000114],[93.12957755300005,53.58173423000005],[93.03329463100016,53.74518972400011],[93.06776453700013,54.01598604999998],[93.04279350600018,54.10234094200018],[92.93097657100009,54.26914685100007],[92.90603655300015,54.449601515000154],[92.84384165800014,54.528438176000066],[92.55652661300013,54.73886535200012],[92.44578557900019,54.80229406400019],[92.37420664000018,54.975714467000046],[92.25283852600006,55.02803481000018],[91.85122650800014,55.14080359400003],[91.83362551800008,55.200520295],[92.01365656000007,55.256086782000125],[91.96064756100003,55.32478754200008],[92.19177250600006,55.40547861500016],[92.22691363500007,55.483685795000156],[92.36818659000016,55.61919853900014],[92.38053866500013,55.685023301],[92.30107855800014,55.761845288000075],[92.64612563800006,55.92471103100007],[92.78336354500004,55.96792108300002],[93.10014366100006,55.97347225000004],[93.25099160000013,55.95116649700003],[93.51777651400016,55.85643690900008],[93.9645386590002,55.60510319500008],[94.34445965200018,55.45175610900009],[94.48497052500011,55.414190932999986],[94.9480056320001,55.3866292240001],[95.41149855900005,55.4182811340001],[95.69051350800004,55.344743010000116],[95.9406735880001,55.24716055800019],[96.15740160899998,55.366975840000066],[96.18259459199999,55.545443323000086],[96.17121867300017,55.72320940800006],[96.25690452200013,55.79473319300013],[96.28609466800003,55.96269882200005],[96.19274859700005,56.127238431000194],[96.31835963100019,56.28177692100002],[96.45460562300013,56.327623417000154],[96.52403259200008,56.40748652600007],[96.53172265300014,56.497008269],[96.1232076340001,56.6189297570001],[96.08319058500007,56.885214942],[95.80901367000018,56.97235639200011],[95.65881365300004,56.96554727000017],[95.59944966200015,56.88324972100003],[95.5751726530001,56.703496454],[95.50726364700006,56.62107401500003],[95.35739153000003,56.61208559800019],[95.22359456200007,56.65825613800013],[95.003776636,56.89926519100004],[94.87493856999998,56.94668647900005],[94.73015561000017,56.92816616100015],[94.72058850500008,56.748610539000026],[94.79450264200017,56.48232870700008],[94.74433862800004,56.30773684899998],[94.64102161300019,56.238943720000066],[94.3267595870002,56.227595293000036],[94.03814652100016,56.299542365000036],[93.88772555700012,56.45553695900003],[93.86328862100004,56.54444967400002],[93.89147159700008,56.81448056400018],[93.77875561900015,56.97751444800019],[93.62882952200016,57.0154988860001]]]]},"properties":{"objectid":657,"eco_name":"South Siberian forest steppe","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Palearctic","eco_biome_":"PA08","nnh":3,"eco_id":738,"shape_leng":61.3466178344,"shape_area":22.7852486452,"nnh_name":"Nature Could Recover","color":"#FCD538","color_bio":"#FEFF73","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":162232.33246935555,"percentage":1.5311729455181358}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[159.79556915900014,-79.70813346599994],[159.35017291700012,-79.78186205699996],[158.9601666650002,-79.79376754899994],[158.63391268800012,-79.7188219059999],[158.33098623000012,-79.74963111199992],[159.15875213400022,-79.90675464299994],[159.50710282500017,-79.87736935499998],[159.79556915900014,-79.70813346599994]]],[[[164.2284456740001,-78.34529649299998],[163.49044714100023,-78.4357240199999],[163.78014695100012,-78.50792224199989],[164.13932857600003,-78.4779946459999],[164.32923257000004,-78.41109462699995],[164.2284456740001,-78.34529649299998]]],[[[165.38853841300022,-78.24715459399994],[164.76084023400006,-78.29642947499997],[164.82552022400023,-78.37364678299991],[165.48182148800015,-78.39519079699994],[165.70919478200005,-78.29696574899992],[165.38853841300022,-78.24715459399994]]],[[[166.14625739600024,-78.12100723599997],[166.17960514600009,-78.24879962699998],[166.7176799560001,-78.24135448199985],[166.57123379900008,-78.16012006199986],[166.14625739600024,-78.12100723599997]]],[[[165.45787622700016,-78.03278331299998],[165.14083815900017,-78.16528348399987],[165.57955837400004,-78.13572368499996],[165.45787622700016,-78.03278331299998]]],[[[162.1739312640002,-77.93798344699997],[161.82577872100012,-77.95021281699997],[162.06149502900018,-78.05496602799997],[162.30955202300015,-78.00487625699992],[162.1739312640002,-77.93798344699997]]],[[[164.36507477400016,-77.85250845299987],[163.84712609400003,-77.86323846699992],[163.69306347100007,-77.91976336199997],[163.78222650400016,-78.01949379899997],[163.50166431200012,-78.14899291299997],[162.9663505010002,-78.11718173399993],[162.92867316000013,-78.04479039299991],[162.58803047000015,-78.05273409399996],[162.77478773000018,-78.15166355699995],[163.21648637200008,-78.22034590399994],[162.65911238800015,-78.23804916099994],[162.59467112100026,-78.30629061999991],[162.8213594460001,-78.3919114599999],[163.52548267400016,-78.34585204499996],[163.4471265970002,-78.24379546099993],[164.1922301410001,-78.14305936199992],[164.50757104000013,-78.01218242999994],[164.56139126200026,-77.90801511399991],[164.36507477400016,-77.85250845299987]]],[[[160.6479388040001,-77.7321687509999],[160.26824011700012,-77.74805313399997],[160.00789290700004,-77.84722801899994],[160.44276817500008,-77.94051612399994],[160.75829917500027,-77.92720431499993],[161.1482415600002,-77.83227737999988],[160.66265206900005,-77.77565709999999],[160.6479388040001,-77.7321687509999]]],[[[163.9213445250001,-77.70236554099995],[163.45188282900006,-77.72230559399998],[163.18246706600007,-77.77318980099994],[163.75774932600007,-77.82587511299994],[163.9213445250001,-77.70236554099995]]],[[[161.7165859490002,-77.16588295799994],[161.36982731800015,-77.19826377099992],[161.44506330800016,-77.25031189099991],[161.0081557640002,-77.31408830799995],[160.83244803700006,-77.26429190399995],[160.8390110710002,-77.17237072099994],[160.4233052210003,-77.22094554499989],[160.34988776700015,-77.41628637899993],[160.5111541370003,-77.44592832099994],[160.4017390790001,-77.60455623699988],[160.58173515600015,-77.65298186299998],[161.18841888600002,-77.71494795699988],[161.83239137300006,-77.8248268719999],[162.65418818800003,-77.80322971599998],[163.24071896500004,-77.68340751299996],[163.6073231030001,-77.65837360799998],[163.69552054300016,-77.60351838799988],[163.25615307300006,-77.53044006599998],[162.96245274900002,-77.57196101299996],[162.81995413300024,-77.49881446299997],[162.78280384800019,-77.37026770099999],[162.0121822640001,-77.27022947999995],[162.05283115400005,-77.22758569199988],[161.7165859490002,-77.16588295799994]]],[[[160.61899893200018,-76.56857254399995],[160.3224323300002,-76.63960853099996],[160.7016552580002,-76.83232767199996],[160.69837625800017,-76.94113051799997],[161.0361717840001,-77.00238096399994],[161.1210779810002,-76.91723102099996],[161.46351289100016,-76.83320760399994],[161.17242218700028,-76.71279514799994],[160.63853128900007,-76.63660076699989],[160.61899893200018,-76.56857254399995]],[[161.11976436800012,-76.77047138099994],[161.2527387880001,-76.86230388399997],[160.8704249440001,-76.8457244729999],[161.11976436800012,-76.77047138099994]]],[[[159.11547182800007,-75.61772454699997],[158.91688752800007,-75.67425631499998],[159.18054324900027,-75.75285127299998],[159.35941078500014,-75.63602442799993],[159.11547182800007,-75.61772454699997]]]]},"properties":{"objectid":659,"eco_name":"South Victoria Land tundra","biome_num":11,"biome_name":"Tundra","realm":"Antarctica","eco_biome_":"AN11","nnh":1,"eco_id":132,"shape_leng":335.992370735,"shape_area":3.92397958053,"nnh_name":"Half Protected","color":"#5DA9DB","color_bio":"#9ED7C2","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":10305.309022730355,"percentage":0.12059826206252673}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[148.34126281700003,-32.27128543999993],[148.27390999800002,-32.13302919599994],[148.2741843340002,-32.06149970599995],[148.22639326700005,-31.953438665999954],[148.39396519700017,-31.767478818999905],[148.43197476900002,-31.692657052999834],[148.5079486840001,-31.68123946099996],[148.55946261600002,-31.740407374999904],[148.66694593800003,-31.739720565999846],[148.67341580900006,-31.68795698499997],[148.56088169200018,-31.49282164499988],[148.59281843100007,-31.394510881999906],[148.70663434900007,-31.413122565999913],[148.74490353900012,-31.278388878999976],[148.7176510810001,-31.257549267999934],[148.79412828900013,-31.102461980999976],[148.81120285400004,-31.015017501999978],[148.8925780830001,-30.932615720999934],[148.8822326170001,-30.88845124799991],[148.73432875100002,-30.70885336799995],[148.51438803200017,-30.561673500999973],[148.45895259400015,-30.475270557999977],[148.54981865100012,-30.400685259999932],[148.89901623300022,-30.35189574499998],[149.08790480200025,-30.306447040999956],[149.25030410900013,-30.308168636999937],[149.49291840100022,-30.22017034399994],[149.70740413700014,-30.26166696699994],[149.67162940900005,-30.16529344199995],[149.60426147200008,-30.08727337099998],[149.54572823400008,-29.963316612999904],[149.4496887580001,-29.846110223999972],[149.48911718800002,-29.74409342799993],[149.6345638260002,-29.67053403099993],[149.64396293400023,-29.565564584999947],[149.73435589300004,-29.46232519299997],[149.90353035500016,-29.421778212999982],[149.78847843000005,-29.264731134999977],[149.7143657680001,-29.095513073999882],[149.65545113800022,-29.00863895699996],[149.66308034300005,-28.959740136999926],[149.79392448200008,-28.927108801999907],[149.88006033300007,-28.853753750999942],[149.87830527200015,-28.800393568999937],[150.1430608720001,-28.755671495999934],[150.26003486000002,-28.721332987999972],[150.43040963200008,-28.76371363399994],[150.54015622100007,-28.74922563499996],[150.73429540300003,-28.798122627999874],[150.67989692800006,-28.716411434999884],[150.74724909200006,-28.66137644299988],[150.68377845500004,-28.59784939499997],[150.56192399700012,-28.653923896999913],[150.4807509730001,-28.645268770999905],[150.39400862000014,-28.59131387099984],[150.28724864100013,-28.41615891799995],[150.1808164680001,-28.353372829999955],[150.16070120100005,-28.30110394499991],[150.0423360210001,-28.382137526999884],[149.90174328900002,-28.37009770399993],[149.94147498600023,-28.22549964399991],[149.6997972570001,-28.329283985999894],[149.55082951600014,-28.426224078999894],[149.4704780930001,-28.50272016499997],[149.37728323000022,-28.524222934999898],[149.3072349470002,-28.638009884999974],[149.2219653860002,-28.646321526999884],[149.16667427800007,-28.77539184199992],[149.01033352600018,-28.893712026999935],[148.94178097100007,-28.89146412799994],[148.89905070500004,-28.968019980999884],[148.77573089800012,-28.991685987999915],[148.82798049100006,-29.066599802999917],[148.77321666600017,-29.117827580999972],[148.63013489000002,-29.146091095999907],[148.60010555600002,-29.269741023999984],[148.66899954500002,-29.340398874999835],[148.6672296900001,-29.419887852999977],[148.49411893500007,-29.541772069999922],[148.47292341000002,-29.373961190999978],[148.57714093200002,-29.252077148999888],[148.55417647800016,-29.186719787999948],[148.74170630300023,-28.98008916299989],[148.84061624700007,-28.802682270999924],[148.90838280900005,-28.755326976999868],[148.87845494800013,-28.615771961999883],[148.8991813240001,-28.527734221999935],[148.77174699900002,-28.306885452999836],[148.8207494080002,-28.251278332999902],[148.84060566300002,-28.132775606999928],[148.66399770400005,-27.87701329899994],[148.6293458890001,-27.85663498799994],[148.67448807300002,-27.96026518799988],[148.5874001740002,-28.014348430999917],[148.47488442000008,-28.132109518999926],[148.36094863000017,-28.30469016199993],[148.1750699470001,-28.47620997699994],[147.84590816800016,-28.586115153999913],[147.6257313870001,-28.697313902999895],[147.48609914700012,-28.80224880999998],[147.24658171400006,-28.731458849999967],[147.212698756,-28.808471431999976],[147.11467145400002,-28.82030340599988],[147.06446268900004,-28.77374426199998],[146.94481219000022,-28.92637767399998],[146.97188300100015,-29.0989159639999],[146.7594187850001,-29.23600389799998],[146.73775097200007,-29.332214460999978],[146.58046340600004,-29.47102641799995],[146.56253436700013,-29.580483467999954],[146.42705201,-29.69128197499998],[146.36897752100003,-29.784425843999884],[146.26486673800002,-29.82387428599992],[146.22263456300016,-29.89272923799996],[146.09612005600002,-29.947129792999874],[146.02039036200006,-29.895734852999965],[146.01268534500002,-30.037159057999872],[145.89693211500014,-30.06209026499988],[145.76158635900003,-30.02647467199995],[145.73843905400008,-30.083460570999875],[145.63515250500006,-30.111954773999855],[145.5158291910002,-30.20633857099989],[145.48970650700005,-30.267887269999903],[145.35787018800022,-30.247244245999866],[145.2509060120001,-30.289469382999926],[145.16144387600025,-30.361270081999976],[145.08780078000007,-30.352920645999973],[145.04656031000002,-30.44740258199988],[144.8782403160002,-30.563560953999968],[144.6812339930001,-30.66043463999989],[144.61469037800032,-30.66043483699991],[144.60761022700012,-30.746812992999878],[144.47025089800002,-30.874252451999894],[144.32724539700007,-30.906820453999956],[144.22528600400005,-30.97195878699995],[144.1063435100001,-30.88841301499997],[144.11851990600007,-31.027300855999954],[144.00014246600006,-31.168785036999964],[143.9619041740001,-31.266489343999865],[143.7863215740001,-31.331625568999982],[143.6418979880002,-31.444906814999968],[143.53946591700003,-31.469288576999816],[143.47197650400017,-31.433579139999893],[143.33319781900002,-31.542610832999912],[143.28223376600022,-31.54827565499994],[143.2836374300001,-31.65589217099989],[143.1561964550002,-31.75359587999992],[143.11797320800008,-31.820148926999934],[143.00206752400004,-31.85247451299989],[142.92754386900015,-31.93866740999988],[142.93718754400004,-32.01834289499993],[142.82263976500008,-32.05747023599997],[142.76242870500005,-32.12709575899987],[142.65064280200022,-32.14211833799993],[142.59481100500022,-32.19164439399998],[142.4030079810001,-32.165528991999906],[142.37389423600007,-32.24207465599994],[142.18148092800016,-32.326719195999885],[141.98427585700017,-32.47800661899993],[141.94136803800006,-32.468218100999934],[142.06496493500015,-32.72429871299994],[142.06958877300008,-32.80613898699988],[142.12548190400003,-32.8330326329999],[142.04918792700016,-32.98940513799994],[141.97350438800004,-33.075007083999935],[141.76801434300035,-33.169616152999936],[141.681908313,-33.11542438699996],[141.69256065000002,-33.369838417999915],[141.7343246700001,-33.442188226999974],[141.74876075900033,-33.578101665999895],[141.7091338790001,-33.6017682719999],[141.68047860700017,-33.730632173999936],[141.7434521580003,-33.762702108999974],[141.67008828700023,-33.89878285799989],[141.7517382860001,-33.96741618199991],[141.77041530100007,-34.06189751799997],[141.60708460600006,-34.10196239099997],[141.53075979400012,-34.04891610699991],[141.36536908900007,-33.991176521999876],[141.38256556900035,-33.90015487899984],[141.25318562300026,-33.91054171099995],[141.16988745800018,-34.0650283789999],[141.0505316340001,-34.03255836099987],[141.05066879900016,-33.9558069119999],[140.9662400850002,-33.88974085499996],[140.86357556000019,-33.95175700999994],[140.72430663900013,-33.977034474999925],[140.64622587200006,-34.06432193099988],[140.65310655100006,-34.23172345399996],[140.5593107330003,-34.243026509999936],[140.48251363100007,-34.176628249999965],[140.3708343940001,-34.18202613799991],[140.1601260110001,-34.14723229299989],[140.10893250900006,-34.16593171299991],[139.95602413000006,-34.132732191999935],[139.92262238000023,-34.06653234599992],[139.83383174100004,-34.074432681999895],[139.94830299600017,-34.198990075999916],[140.1817323070003,-34.16553123799997],[140.31492615700006,-34.19682687199992],[140.386322,-34.365726666999876],[140.5580750590002,-34.495765879999965],[140.66943326600017,-34.45322407799989],[140.61572233800018,-34.373028156999965],[140.70541363400002,-34.283424267999976],[140.84170540700006,-34.25462330599987],[140.80668612500017,-34.13827512099988],[140.81951941900013,-34.07672491999995],[140.92965662000006,-33.97862595099997],[141.0990407600001,-34.189648597999906],[141.21699020200015,-34.24527197199984],[141.36313091800002,-34.244528913999886],[141.47879686800013,-34.26749024699984],[141.53260258500006,-34.22069693999998],[141.63471056900016,-34.24779703899998],[141.85774446000028,-34.23691858999996],[142.02542692600002,-34.13195673099989],[142.09015213400005,-34.20454694799997],[142.2152301020003,-34.20827489799996],[142.20921781000004,-34.27456591399988],[142.2933200010001,-34.35618177299989],[142.3752677020002,-34.508383789999925],[142.37046549300032,-34.65239648099998],[142.3263509850002,-34.71233189799989],[142.36096365900005,-34.77274215599988],[142.48835996900027,-34.76239955599988],[142.6029595440002,-34.7955031059999],[142.7122130350001,-34.739136664999876],[142.7055657840001,-34.629463088999955],[142.77462308500003,-34.591846964999945],[142.87425730200016,-34.69562941499993],[142.99900374300012,-34.71854219799985],[143.1611777840003,-34.715913247999936],[143.20985426000016,-34.801449564999984],[143.34311457700005,-34.86309348999987],[143.2539627010001,-34.89804994799994],[143.2883456180001,-35.03157597299986],[143.45364606800013,-35.27997222299996],[143.52167744400015,-35.31032458899995],[143.5703728100001,-35.4212088299999],[143.67256069300015,-35.44995701399995],[143.60013224400018,-35.66421171499991],[143.52026252700023,-35.73570017299983],[143.45979507700008,-35.84303071399995],[143.36572309300016,-35.83841631399997],[143.32386176800014,-35.9377058309999],[143.35283412700005,-35.99203992199995],[143.3495829100001,-36.1278386059999],[143.4029162270001,-36.27203265599985],[143.49315851000017,-36.42910044699994],[143.53239496900005,-36.310770247999926],[143.46582828500004,-36.30087372999998],[143.46537754300005,-36.21053485599998],[143.70962247700015,-36.27959754699998],[143.70003604300007,-36.347830330999955],[143.79321724300019,-36.412586263999856],[143.83467701000018,-36.504466738999895],[143.93316541000013,-36.46266524699996],[143.9549228100003,-36.56367377299995],[143.88886888500008,-36.57935363099995],[143.90523274400016,-36.80694555499991],[143.94826437700033,-36.87404365499998],[144.14349727700017,-36.73929810499993],[144.12475333400027,-36.640875688999984],[144.16564467600006,-36.57538708099992],[144.28839667700004,-36.543621438999935],[144.34932694400004,-36.49074757199992],[144.46816178500023,-36.49885277999982],[144.51870606900002,-36.67523409799992],[144.58032717700007,-36.74797369799995],[144.63473161800016,-36.60275581399992],[144.75719548500024,-36.607493530999875],[144.82357330900004,-36.675503979999974],[144.92832594300012,-36.579947422999965],[145.0892299420002,-36.52217746499997],[145.210478168,-36.646620905999896],[145.1338792260002,-36.69293613899998],[145.102721577,-36.774806388999934],[145.1002343680002,-36.968959346999895],[145.24052291800012,-36.929577105999954],[145.29096611800003,-36.86666683899989],[145.47866739300014,-36.79457216399993],[145.58540359300014,-36.78175886399998],[145.695714543,-36.66556463099994],[145.814146692,-36.62876598099996],[145.99025985100013,-36.65346379799996],[146.09216415900005,-36.599876488999826],[146.08081379300006,-36.51595217299996],[146.15570800100022,-36.47150766399989],[146.17263540900012,-36.38664598899993],[146.05731510900023,-36.20366608099988],[146.04526540900008,-36.12235728999997],[146.24878190900017,-36.223603538999896],[146.23439625100002,-36.317721322999944],[146.27131087600003,-36.40945583999991],[146.21860800900004,-36.55278779799994],[146.35313569300024,-36.622211888999914],[146.55709908500012,-36.46586511399994],[146.49183403400014,-36.316577347999896],[146.43064073400012,-36.267218355999944],[146.43317308500013,-36.194004280999934],[146.54266051700006,-36.15731649799989],[146.60182012600012,-36.08799508999988],[146.71918033400016,-36.15123976499996],[146.76819855000008,-36.07749507399984],[146.85424635900006,-36.10969456499993],[146.91439751000007,-36.184604739999884],[147.03077465800004,-36.15565803199996],[146.99017000100014,-36.086159997999914],[146.91404000100022,-36.112719997999875],[146.56476221000014,-35.90691540599988],[146.48152561500012,-35.90290655399991],[146.3224835870002,-35.748232273999974],[146.3444562530001,-35.677290591999906],[146.1706431150003,-35.633856557999934],[146.11738964300002,-35.55103218399984],[146.16865928800007,-35.464263507999874],[146.27064925000013,-35.493068035999954],[146.28500781000014,-35.57863892099988],[146.34614990500006,-35.61611059399996],[146.4546095940002,-35.50370313799988],[146.37572164000005,-35.42482344699994],[146.30275397800017,-35.426795696999875],[146.2593729780001,-35.332138097999916],[146.267262124,-35.23945653499993],[146.37868264300016,-35.19467971299997],[146.36398827100004,-35.09668842499997],[146.40314269400005,-35.04656765999994],[146.3547870240002,-34.84127289499992],[146.54063944300003,-34.74238505799997],[146.53381866300003,-34.68611832699992],[146.43150824400016,-34.645197845999974],[146.45367882500022,-34.55824192699998],[146.39740387200004,-34.464464789999965],[146.14506861300003,-34.40478788899992],[146.0241422890001,-34.295267726999896],[146.1403687080001,-34.24043889199987],[146.27978844300003,-34.23922553999995],[146.3488954070001,-34.2996163329999],[146.61506972600023,-34.32121873099993],[146.70349433800004,-34.31460779299988],[146.75943263500005,-34.25781433299994],[146.6636666620002,-34.00341962099998],[146.60565264200034,-33.92363879499993],[146.65287805000003,-33.78262416599995],[146.78875763300005,-33.71455057799983],[146.81147829200017,-33.64344831499983],[146.9170842970001,-33.58522079999989],[146.90542679900022,-33.51045996499988],[147.05040185000007,-33.378345888999945],[147.00584654300008,-33.1651266799999],[146.9211297080002,-33.181007260999934],[146.80026467200014,-33.07195248499994],[147.14764752500014,-33.078899358999934],[147.21538142200006,-33.049373656999876],[147.2179904290001,-32.9825020429999],[147.32915111300008,-33.014633395999965],[147.4863476590001,-33.02418579799996],[147.51500264000003,-32.86699677699994],[147.50545000600016,-32.75670612499994],[147.53059553800006,-32.63911818699995],[147.61735589600005,-32.474196847999906],[147.52391002600007,-32.30147857999992],[147.618789213,-32.28845865499994],[147.73413129500022,-32.44007376699989],[147.88740627200002,-32.49140754699994],[147.91700894700023,-32.59432816899994],[148.02252358600015,-32.57982038499995],[148.13780426300013,-32.64695453699994],[148.2404346190001,-32.59800766899991],[148.26008745500008,-32.51550306399997],[148.21632430600016,-32.41750726299995],[148.33525146700003,-32.39086473799989],[148.34126281700003,-32.27128543999993]],[[147.96242213400012,-28.949548535999952],[148.05474447600034,-28.96898480799996],[148.06064527500018,-29.076617273999943],[147.93733882400034,-29.108109937999984],[147.90528018800012,-29.302610503999972],[147.9152286210001,-29.392124398999954],[147.85549035800022,-29.450891904999935],[147.78519347500003,-29.6233093809999],[147.84349820400007,-29.73170417599988],[147.74199657400004,-29.799371702999906],[147.58757749300003,-29.85541006099993],[147.54781345300012,-29.92656565999988],[147.55071342200017,-30.016686395999898],[147.38935143600008,-30.033602988999974],[147.38466649200006,-29.976101980999942],[147.29447091900022,-29.893872448999957],[147.27855558100032,-29.8368425299999],[147.37271705100022,-29.728087020999908],[147.34900474800008,-29.69006580499996],[147.49872358400012,-29.531797126999948],[147.59023076800008,-29.543733141999894],[147.59964528500007,-29.44250977099989],[147.68343136900012,-29.3296074779999],[147.8218598090001,-29.274618201999942],[147.8816035440002,-29.107086003999882],[147.84870283400005,-29.040729016999933],[147.94144510500018,-29.006372259999978],[147.96242213400012,-28.949548535999952]],[[144.95670128900008,-30.81089906699998],[145.12793598200017,-30.90924152899987],[145.07015104900017,-31.101852310999902],[145.06941885100002,-31.221363348999944],[144.84776993600008,-31.457305824999935],[144.60471176900012,-31.431707759999938],[144.64937489200008,-31.534582739999905],[144.58710418600015,-31.590716276999956],[144.62477897100007,-31.72605245799997],[144.535576901,-31.877536858999918],[144.33158176000006,-31.952276939999933],[144.23677859800011,-31.938116242999968],[144.30167532100018,-32.07119832399991],[144.43665460300008,-32.014305957999966],[144.47034641900018,-32.06458368099993],[144.37066072100026,-32.104726061999884],[144.41962691100002,-32.18033716899998],[144.49900331600008,-32.19246382499989],[144.58829753900034,-32.10868106299995],[144.6867632320001,-32.13728005699994],[144.77570654400006,-32.06763468199995],[144.8605919150002,-32.1318321629999],[144.98753030600017,-32.15118757699992],[145.0420197750003,-32.215259028999924],[145.15314936700008,-32.136118258999886],[145.31304557800013,-31.914044241999875],[145.38447281000003,-31.998736163999922],[145.52882185100032,-32.07680109199998],[145.53544461100012,-32.153392315999895],[145.4470805650003,-32.20126343399994],[145.53544515400006,-32.30436644399998],[145.53176900300014,-32.61146827099998],[145.56196645500006,-32.65492123699994],[145.49052454500008,-32.72193779899993],[145.32334855400006,-32.79926605399993],[145.18345517800003,-32.67292463399997],[145.10781681100002,-32.727856333999966],[145.13171235200002,-32.846480559999975],[145.2906029510001,-32.83794312899994],[145.32577443200012,-32.914465492999966],[145.28854299700004,-32.99728240299987],[145.40512036000018,-33.05539524999995],[145.439437665,-32.982530537999935],[145.6429911800002,-32.93316767899995],[145.67073205500014,-32.873463866999884],[145.58845606300008,-32.822694499999955],[145.5818641760003,-32.733293567999965],[145.7649706960001,-32.787377320999894],[145.82585306800013,-32.96160174299996],[146.00177197400023,-33.00220106199998],[146.04576291800015,-32.9260826819999],[146.04913500300017,-32.71294822799996],[146.12590170600004,-32.722713645999875],[146.1438616590001,-32.97006195499989],[146.24873546200013,-33.06647866299994],[146.22337543000003,-33.15782126099998],[146.1303272370002,-33.13921328299989],[146.07098573400003,-33.20189258399995],[146.06843689100003,-33.36392559799998],[145.93750101700005,-33.30667534799994],[145.88830675600013,-33.25821351999997],[145.79197747600017,-33.25264066499989],[145.49969445600004,-33.15423766999993],[145.38885410800003,-33.13298240499995],[145.32812407500012,-33.08136203899994],[145.2356709080001,-33.07978282499994],[145.1186816170001,-33.03996134799996],[145.00707813600002,-32.915888762999884],[144.87217498600012,-32.90842373199996],[144.81663272900005,-32.81158412499991],[144.75681819300007,-32.84576378899993],[144.63149751100002,-32.824401576999946],[144.6087162050003,-32.90700115299995],[144.5303925940002,-32.96966141299998],[144.437817321,-32.955421204999936],[144.36907647600003,-33.046699228999955],[144.28019409,-33.09669852399992],[144.1047939660001,-33.015747167999905],[143.9853328680001,-33.070022779999874],[143.98533269200004,-32.994564251999975],[143.8551752440003,-33.022861840999894],[144.0013700610001,-33.10114676199993],[144.00686340100026,-33.17973709199998],[144.11739811300004,-33.25733172899993],[144.16828615200006,-33.14987173799983],[144.28716742500012,-33.14265041899989],[144.3678865170001,-33.22159149699996],[144.50127915100018,-33.20490211999993],[144.54465991300003,-33.25112084699998],[144.50504811300004,-33.32091831699995],[144.4267702100002,-33.28696001899988],[144.2786836460001,-33.2907332499999],[144.22846712500007,-33.39546944999995],[144.14097327100023,-33.40863766299998],[144.01038867600005,-33.513240488999884],[144.00536854100005,-33.59638938499995],[144.05230480300008,-33.65513568599988],[143.92686216200013,-33.69443101799993],[143.8419619650001,-33.63689411899992],[143.805585134,-33.731048281999904],[143.61390453600018,-33.820819522999955],[143.47924552700022,-33.815009707999934],[143.39010423900004,-34.03886749399993],[143.3926833390001,-34.190612373999954],[143.27506879100008,-34.27470738899996],[143.2896562830001,-34.33739039599993],[143.23318368200023,-34.38890406799993],[143.25273027200012,-34.45686281099995],[143.33154148300025,-34.5443720909999],[143.29121184400003,-34.63064208399982],[143.19656135100013,-34.60674682199988],[142.94958173100008,-34.649899707999964],[142.9006637220001,-34.51945105099992],[142.79007471500006,-34.54676729799996],[142.69497582100007,-34.52780524899998],[142.6361216910002,-34.56867282899998],[142.66826980100006,-34.6945436019999],[142.5554767970001,-34.70544239499998],[142.47646876000022,-34.524536913999896],[142.41653211400012,-34.447708856999895],[142.40508811100028,-34.34363200599989],[142.26724095500003,-34.29023528699997],[142.25035047100016,-34.20686809099993],[142.29176294500007,-34.15782587299998],[142.16752566900004,-34.06519347899996],[142.11521891800032,-34.14148035299996],[141.94084141500014,-34.050484145999974],[141.9955585340001,-33.92138009099989],[142.06632874000024,-33.90931783199994],[142.03898481900012,-33.80559324799998],[142.1451248430002,-33.82649722699995],[142.2729622920001,-33.748505645999956],[142.5262418660002,-33.55150653599998],[142.62595760700015,-33.43170210699998],[142.52544745300008,-33.302246785999955],[142.39840204800032,-33.204953469999964],[142.32764685100005,-33.18002856199996],[142.32039852700007,-33.09319070499987],[142.38553836000006,-33.05620325199993],[142.39035992000015,-32.93317924999991],[142.43377129700002,-32.90905885899991],[142.416086016,-32.79246624599995],[142.43699040000013,-32.728143028999966],[142.549569721,-32.62361273699997],[142.5399106100001,-32.495766989999936],[142.60665244400002,-32.43304956099996],[142.9627316750001,-32.381192671999884],[143.0615629780001,-32.39459357299995],[143.16375102200004,-32.35355510699992],[143.3685393420002,-32.369805446999976],[143.40245914300021,-32.24131907499992],[143.37062903600008,-32.15839914199995],[143.26111657100012,-32.1495224169999],[143.23996779900028,-32.07882841499992],[143.31479631700017,-31.91527773499996],[143.2886674140001,-31.826646149999874],[143.36423452400015,-31.766935909999916],[143.40901881700006,-31.669907278999915],[143.57228797300002,-31.711891823999963],[143.59841112400022,-31.62139377199992],[143.72623345900013,-31.570080428999972],[143.80585384100016,-31.620646157999943],[143.90053456300018,-31.627291615999923],[144.07331011200017,-31.722813391999978],[144.16135281000004,-31.628953056999933],[144.11400476900008,-31.555857600999957],[144.14806180400024,-31.42794095399995],[144.2352810110001,-31.435416068999928],[144.32250017700017,-31.355675247999955],[144.33911682300015,-31.18207335099987],[144.4404507060001,-31.20948358399994],[144.52229871100008,-31.1110678149999],[144.617452629,-31.06092512099991],[144.7844293940002,-30.842282986999976],[144.95670128900008,-30.81089906699998]],[[145.83786058700002,-33.35883427099992],[145.87365787900012,-33.434842021999884],[145.84332328100004,-33.523858351999934],[145.8979347940001,-33.68773018199988],[145.8878189210002,-33.83744239099997],[145.85141133200023,-33.89611259499998],[145.77922372600005,-34.15295949399996],[145.72046063300013,-34.152960468999936],[145.581116919,-34.08580674399997],[145.534119636,-34.02033113899995],[145.59286593000002,-33.985075655999935],[145.4476472050003,-33.83410513399991],[145.4048456720002,-33.70806371499992],[145.43841491600017,-33.65266281699991],[145.53242440400004,-33.617407319999984],[145.57063241000003,-33.498861684999895],[145.68684371800032,-33.36073462599995],[145.83786058700002,-33.35883427099992]],[[143.5836322570002,-34.398864067999966],[143.64106648200016,-34.438636001999896],[143.6057274030003,-34.61171632899993],[143.41723478300003,-34.68862877299989],[143.33991803800006,-34.62293223099988],[143.36889473300005,-34.51756623899996],[143.29266235500018,-34.4041438349999],[143.41723457100022,-34.43575232799998],[143.5836322570002,-34.398864067999966]],[[143.60630707200005,-34.715350456999886],[143.57556065400001,-34.76819922499993],[143.73411477200023,-34.838347558999885],[143.7667836930001,-34.99305230099998],[143.50456129400004,-34.95968903199986],[143.47686633600006,-34.88406692899997],[143.2740607200002,-34.74000173299993],[143.43911590400012,-34.719191955999975],[143.55250486700004,-34.66057887799991],[143.60630707200005,-34.715350456999886]],[[143.46134783900027,-34.95253309799983],[143.4917269550001,-35.120196328999896],[143.4031802500001,-35.18247861499992],[143.3326235740002,-34.97188528599992],[143.34640253200018,-34.89301264199986],[143.46134783900027,-34.95253309799983]],[[142.20171523500005,-32.95301990899992],[142.18834889000016,-33.1349240319999],[142.37600225500012,-33.25679520299991],[142.41625534700006,-33.324956141999905],[142.53374866100035,-33.421028726999964],[142.4285857750001,-33.554104620999965],[142.38444265600015,-33.6670578159999],[142.27993536500003,-33.718987485999946],[142.1611304940002,-33.73132080499988],[142.10076752400028,-33.79104373399991],[142.00623922400007,-33.77680772899993],[141.85382004000007,-34.004219906999936],[141.72643910700015,-33.87027980899995],[141.80129826900009,-33.80462125899987],[141.7330146590001,-33.683810782999956],[141.7927509990002,-33.51309925499993],[141.87482794900006,-33.47370455999993],[141.89148975500007,-33.34839580099998],[141.79303927700005,-33.27914767999994],[141.90841102700017,-33.24685208099993],[141.9507242210002,-33.32421778299994],[142.03231329800008,-33.355646741999976],[142.07039887800022,-33.29580926899996],[142.01116387900015,-33.235972222999976],[142.06254024800012,-33.161024548999876],[142.153955407,-33.10365120699993],[142.07419722800012,-32.997316742999885],[142.20171523500005,-32.95301990899992]],[[142.23349893300008,-32.753347093999935],[142.19770192100032,-32.846647157999826],[142.1228420010002,-32.795660032999876],[142.23349893300008,-32.753347093999935]],[[143.80605325200008,-35.71675154699989],[143.7922075260002,-35.94568658099996],[143.7569598770001,-36.01491322199996],[143.66857058400012,-36.061026863999984],[143.64500327700011,-36.122423513999934],[143.46206046800035,-36.158323646999975],[143.4114560600002,-36.073410913999965],[143.57188418500016,-35.96359417199983],[143.54655801,-35.878943222999965],[143.63933461800002,-35.749447080999914],[143.80605325200008,-35.71675154699989]],[[144.22614283400026,-36.01337043899986],[144.28912982700012,-36.17059016399992],[144.1875747260002,-36.169597447999934],[144.15724768500013,-36.054103822999934],[144.22614283400026,-36.01337043899986]],[[145.70110400900012,-36.295733055999904],[145.7909889250003,-36.3714834139999],[145.6433035670002,-36.40466490599982],[145.63610558500022,-36.308404663999966],[145.70110400900012,-36.295733055999904]],[[146.02112032600007,-36.31562330699984],[146.1431614090002,-36.39277598999996],[146.0463662090002,-36.45285948999998],[145.95521829300014,-36.463252614999874],[145.9157412930001,-36.37044809799994],[146.02112032600007,-36.31562330699984]],[[145.8252524510001,-36.46567542299988],[145.7053944510002,-36.56719341499985],[145.6269654680001,-36.48556747199996],[145.69583836800007,-36.43761691399993],[145.8252524510001,-36.46567542299988]]]},"properties":{"objectid":663,"eco_name":"Southeast Australia temperate savanna","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Australasia","eco_biome_":"AU08","nnh":2,"eco_id":192,"shape_leng":144.358386057,"shape_area":26.6722165114,"nnh_name":"Nature Could Reach Half Protected","color":"#FDC975","color_bio":"#FEFF73","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":278692.18380379153,"percentage":2.6303383886090552}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[96.96749863700012,30.011409586000013],[96.76834059400016,30.125577309999983],[96.64422556300002,30.23765827600016],[96.4077985610001,30.49698564300013],[96.19725755800016,30.61729646400005],[96.09606954700007,30.72556969800013],[95.970832514,30.806136552000112],[95.82573657300014,30.710488140000166],[95.72168765000009,30.76462132000006],[95.6370316010001,30.739408220000087],[95.557365635,30.834274600000185],[95.44608262700018,30.83492453300005],[95.42279065900016,31.027546871000027],[95.35377457100003,31.09964029100007],[95.26808151300008,31.101280462000148],[95.27976957400017,30.97692973100004],[95.19604458700007,30.920827642000063],[95.21640054200009,31.071382213],[95.10456851900005,31.125364352000133],[95.11477667200006,31.017190191],[95.04180851600017,30.905767206000064],[95.03436253600012,30.823140080000087],[95.24406451100009,30.770081124000058],[95.2541355350001,30.705701402000045],[94.9880676090001,30.779062501000055],[94.9661866510001,30.906749229000013],[95.06758152700019,31.0284946970001],[94.9625546040001,31.10912491700003],[94.76094066400003,31.022264093000103],[94.63647459800012,31.060581628000136],[94.5960086140002,31.16137116400006],[94.48406963800005,31.22350101500018],[94.49056963600003,31.30799227600005],[94.55329862600007,31.345253021000076],[94.50382963900017,31.418151438],[94.3464585690001,31.42377720400009],[93.96327265600019,31.502121680000073],[93.85787156500004,31.473872487000108],[93.77089657900007,31.393778372999975],[93.70701558000013,31.457777053000143],[93.61978964000019,31.40541983000014],[93.40815764900003,31.37643487400004],[93.45059958300004,31.494794891000026],[93.31703965500014,31.489663154000084],[93.24403361400016,31.437637687000176],[93.1697156370002,31.50395044300012],[93.0927426090002,31.507696484000178],[93.03907060000017,31.223251067000092],[92.91839567000017,31.142805751000026],[92.82186162600016,31.174983710000163],[92.78163955500008,31.142805751000026],[92.7574995060001,31.022138029000132],[92.62878465400019,30.98191545500009],[92.48397855900015,31.062360771000158],[92.42328653900006,30.86164788500008],[92.37128454100008,30.769798822000155],[92.20907560400019,30.842729259000066],[92.05526751300016,30.791023310000185],[91.95842753000011,30.803347892000147],[91.85391257300006,30.77470273800003],[91.62602254000012,30.638801577000095],[91.33654060500004,30.619032523999977],[91.29103055900003,30.57509089900003],[91.18071750400009,30.57164409300009],[91.01177957500016,30.49924356000014],[90.83479351000011,30.38662062100019],[90.60149362900017,30.185508086000027],[90.61732452900014,30.027236128000027],[90.72789759000011,30.077788225000177],[90.8540725580001,30.072459346000073],[90.97123765100014,30.02496798499999],[91.23027064500019,30.04365024200007],[91.41991455800002,30.00631389200015],[91.52025566200012,29.963233424000066],[91.72035951900017,29.97897782399997],[91.86345654300015,30.014507538000032],[91.92511751100011,29.943127250000032],[91.78512564600015,29.87169382100018],[91.862014521,29.75090640600007],[91.71120463600005,29.78354922500006],[91.51213058000002,29.766591629000118],[91.29767657000008,29.616206539000075],[91.09693954400012,29.530483810000078],[91.03385952000014,29.457336449000138],[91.08576160500013,29.392652967000174],[91.23015564600018,29.456649636000066],[91.3058395380001,29.418124062000118],[91.52914450300011,29.387204395000026],[91.7011565790001,29.442742047000138],[91.74448364200003,29.362399326000116],[91.82865152900018,29.45556652700003],[91.71543163000001,29.47366288800015],[91.786865562,29.546867245000158],[91.88212555600018,29.549799067000095],[91.92785655000017,29.499927917000036],[91.86837755900018,29.36256512000017],[91.89850664500011,29.323370670000145],[92.01594565800013,29.438301482000156],[92.05758661800007,29.352140547000147],[92.31762661500005,29.44030039900008],[92.3613895370001,29.403041832999975],[92.34307859900008,29.314641253000048],[92.45469654800019,29.328358573000116],[92.54550960700004,29.23695224200003],[92.61453256800013,29.223836743000106],[92.68907953900003,29.301620469000056],[92.65773759100006,29.487969456000144],[92.77248366700013,29.388357242000097],[92.74130265100018,29.219672949000028],[92.7570646530001,29.145525795000083],[92.8446505120001,29.171605584000076],[92.87267255500007,29.29076808400015],[92.8270416420001,29.42042707400003],[92.87258957400019,29.480942571000185],[92.82376063000004,29.56689228200014],[92.90728763600004,29.57397599600006],[92.94400758100005,29.479677742000092],[92.91843456200019,29.144970578000027],[92.96333356700018,29.115006783000183],[93.17504853899999,29.16410612800007],[93.21647659900015,29.041992862000086],[93.3126606140001,29.051399537000123],[93.44142156700019,29.181300261000104],[93.54187063000006,29.236462236000136],[93.45870957700009,29.310934105000058],[93.51958465800016,29.391451170000153],[93.5861896080001,29.252384500000062],[93.72602054000004,29.19679068800008],[93.85471359900004,29.180566174000035],[93.96900956600001,29.269450893],[93.80090362500005,29.300319598000158],[93.6888736210002,29.348796670000127],[93.76527366300002,29.400478647],[93.94554157800019,29.410091517000126],[93.98912864800008,29.36948890700006],[94.10135663200015,29.446777933000135],[94.07270862800016,29.29930672900008],[94.14282961900017,29.271563635],[94.1980816160002,29.34671376700004],[94.27638250500019,29.39167396099998],[94.21518656500012,29.495117207000078],[94.23995961600019,29.57247831800015],[94.1787266280001,29.629324888000042],[94.00880466300015,29.625485306000144],[93.90656254300012,29.67787622400016],[93.82126662000007,29.642153391000193],[93.77271260200013,29.533793488000185],[93.71029659200019,29.583580819000133],[93.77591666800004,29.693142520000094],[93.69194056000003,29.748249342000122],[93.60108961400016,29.685486992000108],[93.56729160100014,29.808034105],[93.50939964000014,29.825377436000167],[93.363937577,29.799816655000086],[93.32986463800017,29.66086565500018],[93.13831350700008,29.664582526000117],[93.2097015060001,29.72249745400012],[93.23525256500005,29.82487971900008],[93.06515458000007,29.91951509400019],[92.87695352900005,29.889264302000072],[92.86263254400006,29.774117572000137],[92.62208566900006,29.761514039000133],[92.56592557700009,29.665177473000085],[92.48345150500006,29.661513911000156],[92.47354862200018,29.786671147999982],[92.34309351900004,29.90254073400007],[92.33488461800005,29.9496480360001],[92.59769466600011,29.89405707400016],[92.76174158700019,29.947098093000022],[92.81182865500017,30.010074517000135],[92.75073262800015,30.05110795600001],[92.68952964700014,30.15465513800018],[92.75856752800001,30.240533101000096],[92.82729360200017,30.264696284000138],[92.91917451600017,30.107840030000034],[92.98445864500013,30.06287564500019],[93.04184752500015,30.12929820500011],[93.01620460100014,30.197990584000024],[92.94652550400008,30.23042435800005],[92.87033853100019,30.33617346600016],[92.88738262800013,30.444058786000085],[93.08145855500004,30.25840935300016],[93.15867650300004,30.298279049000143],[93.23322263500012,30.254081777000067],[93.17724660900018,30.093243448000067],[93.21145650900007,29.987429464000115],[93.56812258300016,29.962903513000015],[93.31740560900005,30.045399210000028],[93.27326952500005,30.08586988800016],[93.32702652600017,30.274932934000162],[93.2265246560001,30.393095473000187],[93.25608863500008,30.429201192],[93.38619957700007,30.33759956300014],[93.397331582,30.200460730000145],[93.52528351400008,30.131347076999987],[93.58415263700005,30.21549786500009],[93.67034961500013,30.176986540000144],[93.63327763100006,30.04307826100012],[93.7211835110001,30.052446042999975],[93.74181355400003,30.134867978999978],[93.83187861300019,30.158438226000044],[93.88555162700004,30.22356762600009],[93.98783163300016,30.22295675300012],[94.03223459700018,30.154503426000076],[94.17538459500008,30.11021596400019],[94.113563533,30.030533904000038],[94.10276060100006,29.953048909000188],[93.97745550700012,29.962007320000055],[93.71793351200006,29.927910742999984],[93.71785757200018,29.894447839000065],[94.14694261900013,29.811933199000066],[94.22468560900006,29.872593703000177],[94.27948766500003,29.86369698300018],[94.35537758400005,29.760019043000057],[94.40795860400016,29.828984504000175],[94.47012366000013,29.79725447499999],[94.4751355350001,29.67140137200016],[94.57460056200011,29.71949153500003],[94.54184760500004,29.839489041000093],[94.4698336460001,29.89814593400007],[94.36226667000005,29.931002660000104],[94.42929054799998,30.050139008000144],[94.30427563500007,30.107264025000063],[94.35942051100017,30.197473588000094],[94.45145464700005,30.138657941000076],[94.50678258400012,30.15095335500007],[94.67529253300017,30.10920108300013],[94.8324736690002,30.04351629900009],[94.96454664700013,30.063981554000122],[94.75026664500018,30.243927939000116],[94.6360935570001,30.25541751700007],[94.29626454700013,30.377417962000038],[94.20854156000019,30.367382477000035],[94.17524763500012,30.417608685000175],[93.96489757200015,30.43082811900007],[93.86586756500009,30.37595515200013],[93.80543555200012,30.414907868000057],[93.67200453800001,30.37312810400016],[93.63681764400008,30.416971828000158],[93.89096851500005,30.493367846000183],[93.76207764300011,30.573871835000034],[93.60152463500003,30.553717549000112],[93.21807066900004,30.59600609400013],[93.18777461500014,30.671364601],[93.43502751600005,30.631661034000047],[93.45165251800017,30.681358009000178],[93.78110456299999,30.614781390000132],[93.98435951300007,30.52360589699998],[94.05537451700008,30.626082207000024],[93.84371956000012,30.680752165000115],[93.61791963700011,30.911995965000187],[93.51013154700007,30.872349396000118],[93.33295454300008,31.051995039000133],[93.53468365100008,31.07758113300008],[93.7576365760001,31.05754084100016],[93.70958765100005,31.130138349000163],[93.64376054200011,31.149056807000136],[93.501296519,31.123088497000026],[93.504585577,31.18473739500007],[93.68691259100012,31.219761345],[93.74820760500018,31.27654840400004],[93.98743466600007,31.268206566000117],[94.09724463800006,31.22154400900007],[94.25385262000009,31.272223510000117],[94.26415263800016,31.343331888000193],[94.3357845500002,31.346930742000097],[94.36660765800019,31.22118828100014],[94.31360653700006,31.123475574000167],[94.35671265400003,31.04225644100012],[94.32638558700012,30.982298340000057],[94.17491956700013,30.94530883400006],[94.20053064000012,31.05969968400018],[94.0161586100001,31.074508160000107],[93.98181962900009,31.136882093000168],[93.84703057900009,31.060836773],[93.80872360500013,30.940490916000044],[93.91155966600013,30.87111055000014],[94.08625763900005,30.88969473900005],[94.228736583,30.8698725430001],[94.37493859900019,30.97270290500012],[94.47653162500012,30.91695168200016],[94.50511961400002,30.853142935],[94.5075376260001,30.67030144000006],[94.48464966500018,30.61181872200018],[94.34159052700016,30.665167860000054],[94.18430361100013,30.578756808000037],[94.23121662000017,30.481304443000113],[94.33034553300007,30.519138845000043],[94.44218459700005,30.467035761999966],[94.60836052100018,30.57178490900003],[94.65089465700015,30.424844446000122],[94.78411059100017,30.469011712000054],[94.96687363100011,30.48673222800005],[94.95053864300019,30.37162237900003],[94.97336558300009,30.283673415000123],[95.11353262900008,30.289759348000132],[95.22544059200004,30.184085174000018],[95.17678062700008,30.12805516800006],[95.38411756300007,30.00541484900009],[95.49252356700009,29.960773336000102],[95.51900451400007,30.00790176000004],[95.35487360600007,30.067184446000056],[95.26869154800016,30.16891979600007],[95.20244551200011,30.37859913900013],[95.25166354400011,30.40750698200003],[95.24483464000014,30.527023702000065],[95.30802161700018,30.52245187600016],[95.38412460400002,30.40383202099997],[95.42980161800017,30.449526637000133],[95.37479353400016,30.555691655000032],[95.45925864300006,30.574815805000185],[95.57288355500003,30.41465372800019],[95.41498559800016,30.33563551500015],[95.4142075900001,30.24586198000003],[95.5371245120001,30.14405873600009],[95.6304546570002,30.152933495000127],[95.68732452900002,30.220440002000146],[95.68327355500008,30.323650064000105],[95.56235454400007,30.510699275000036],[95.61920966300005,30.521813008000095],[95.80689958600004,30.298686075000035],[95.75379151300012,30.126334364000115],[95.81237062200012,30.106175048000125],[95.88725253400008,30.156092299000193],[96.00769059200019,30.157007268000143],[96.08316057700011,30.005975766000063],[96.1065975520001,29.83398531500012],[96.14695759000017,29.750297377000038],[96.26026952100011,29.829030270000032],[96.33238255500015,29.848859841000035],[96.36511958600016,29.762074789000167],[96.41905964800009,29.756365204000133],[96.5170435930001,29.678181158000143],[96.53873461700016,29.61381065600017],[96.62957751700009,29.604911925000067],[96.61356355500004,29.683918906000088],[96.5448225610001,29.785884926000165],[96.6269836530002,29.81821795000019],[96.67728462700012,29.641970498000035],[96.75492066400017,29.59463135300018],[96.71925365500005,29.96582527600009],[96.76940157600018,30.00229309300005],[96.96749863700012,30.011409586000013]]],[[[93.74460556600013,31.924874534000026],[94.01139064800014,31.93533196400017],[94.19931057000008,31.91732361200019],[94.33813466800012,31.86234050700017],[94.4857026000002,31.847804946],[94.60120355000015,31.71741136600008],[94.65796663600008,31.618797772000107],[94.7564925550002,31.527640719000033],[94.71729257300018,31.449180238000167],[94.73147559200015,31.261858616000154],[94.77685555100015,31.167744092000135],[94.85945166300019,31.168295119000163],[94.86506653200013,31.278112132000103],[94.94220753400003,31.286309801000073],[94.94554152000018,31.194553107000104],[95.0587386200001,31.194212968999977],[95.02082056600017,31.341641929000104],[94.92444661700011,31.43919370300017],[94.84213263900017,31.655381259000023],[94.9432445430001,31.70111577300014],[95.01072657500015,31.676240799000027],[95.0242915120001,31.601317313000152],[95.12489362900004,31.55025710600006],[95.24102053900015,31.52698659600003],[95.40601360900007,31.433407843000168],[95.54217561500013,31.422934152000153],[95.49494157800007,31.31121696200006],[95.6009066040001,31.260628823000104],[95.44335951400018,31.19160619700017],[95.49139351900004,31.105337135000127],[95.58752456100012,31.05923683500015],[95.6802595910001,31.096867557000166],[95.83676967200006,31.085465822000117],[96.0036235250002,31.127805330000115],[96.13317053200018,31.044491391000122],[96.26573955100008,31.087452836000182],[96.40929456300006,30.950220629000114],[96.47274054100012,30.846843097000146],[96.65804262699999,30.633206992000055],[96.87649564399999,30.43330111600011],[97.28277554400017,30.136362808000115],[97.35926057800009,30.068742475000136],[97.55217762300009,29.849134600000127],[97.6305006410002,29.673634311000058],[97.86318160300016,29.425146756000117],[98.04717259199998,29.251068541000166],[98.2097396040001,28.934368890000144],[98.36045058200017,28.730878241000028],[98.47281653200008,28.686322894000057],[98.42031061400013,29.06266783200016],[98.32913964800008,29.267071940999983],[98.23137664900008,29.550903132000087],[98.08842463200011,29.74102263300017],[98.04541758900018,29.863542253],[97.80805952500015,30.103365099000087],[97.49017366800007,30.317461202000175],[97.27278163300008,30.559248431000128],[97.02751960199998,30.755534499000078],[96.82281458300014,30.9733598790001],[96.65063453400018,31.31890165800013],[96.5405425940001,31.396540210000182],[96.28969553300016,31.502948470999968],[96.30057557900011,31.66076931400005],[96.34429156300018,31.71775116800012],[96.49626954900003,31.731431943000075],[96.6797026390002,31.906559237000124],[96.58840158500004,32.03349997600009],[96.30787655200015,32.309808911000175],[96.25321967000008,32.40545195900006],[96.27703852400015,32.468549082000095],[96.36644761500014,32.45680318600006],[96.62532051600016,32.23796527200011],[96.669029626,32.43831488600017],[96.71235652200005,32.48315454800013],[96.85660555499999,32.46468502400012],[96.8832165890002,32.193334655000115],[96.92803965500019,32.10333363400002],[97.05941056400007,31.98874933000019],[96.9990615320001,31.824942634000024],[96.98307053700012,31.719721418000063],[97.03530152800016,31.600695376000147],[97.22476958800007,31.41803258300007],[97.28244764400006,31.19745609500012],[97.5046465320001,30.635709661000078],[97.56622351400006,30.544544897000037],[97.86186262700011,30.32243502400013],[98.10591866900012,30.190389036000113],[98.23843354100006,30.080832867000026],[98.40717365700004,29.897409836000122],[98.4862896030001,29.719926389000136],[98.72483052100011,29.299816851],[98.7719646450002,29.132857051000087],[98.88561252300013,28.894676723000032],[98.9721526560001,28.958678924000026],[98.96759055400014,29.174243704000048],[98.93066357700019,29.3620083940001],[98.82899461200009,29.54851915100005],[98.71258556700019,29.716433817000166],[98.76401558300012,29.824843509000118],[98.68919351900007,30.049404251],[98.74435465600004,30.20030868300006],[98.69477067000014,30.48911000700008],[98.58116956200013,30.777910828000074],[98.47006257400011,30.920159604],[98.36984267200012,31.01691627100007],[98.3624726320001,31.179423772000177],[98.32948263500015,31.409327641000118],[98.29326661100015,31.512621187000093],[98.21150164800008,31.64465778700003],[98.0292666680001,31.83505640599998],[97.88018060600007,31.93813604600018],[97.86399062400005,32.043006730000116],[97.96037262000016,32.153800906000185],[97.90239751000013,32.33400914200013],[97.90595965200015,32.40967073800016],[98.11517363200016,32.50118603300018],[98.21408863900012,32.43826895400008],[98.39746858700016,32.24054036000018],[98.23250552400015,32.1847829350001],[98.40538060100005,31.983334620000164],[98.49224863400013,31.86076655300019],[98.54405952400009,31.88278480700012],[98.54432657200016,31.998704181000107],[98.62680064300014,31.95812621400006],[98.71508052400014,31.842829113000164],[98.74269051300013,31.634656165000138],[98.83261056500004,31.54619992900018],[98.91236152300002,31.54122409600012],[99.00187656100019,31.620000575000063],[99.06996963400007,31.585970719000102],[99.11188451400017,31.485776130000147],[99.10070054099998,31.398542143000157],[99.2662966050001,31.409358822000115],[99.38012653900017,31.38230757000008],[99.49232451500006,31.31837393300009],[99.44329859600003,31.22341702900013],[99.27130160800004,31.200071920000084],[99.11940760800019,31.20019278700005],[99.07394366200009,31.133825045000037],[99.2956696440001,31.080873042000064],[99.42562065900012,30.996865082000056],[99.3430785270001,30.91110781900005],[99.10924555600013,30.927418500000044],[99.05805962000017,30.85345088600019],[99.25473058500006,30.64177262700008],[99.30284857700019,30.501986622000118],[99.30023157900018,30.257961424000143],[99.35968056200016,30.151403295000193],[99.44786053100012,30.219016755000098],[99.494583606,30.30565864400012],[99.57453154000012,30.376203256000053],[99.69966162000014,30.41242984200005],[99.81404157300017,30.336739580000142],[99.88114155800014,30.21097515700012],[99.71623951499998,29.881939357000192],[99.60065457900004,29.688631882000095],[99.6481625360002,29.501924989000088],[99.69079557800018,29.45635157600009],[99.72665352700011,29.317786981000097],[99.55915058000011,28.980796252000175],[99.47821056400011,28.870548576000033],[99.57691954400019,28.876638197000034],[99.66825060500008,28.837790758000153],[99.59242254400004,28.616756786000053],[99.64687356700006,28.580398269000057],[99.72293866800015,28.64563646500011],[99.77542161900004,28.75399519500013],[99.79372367200011,28.86926866000016],[99.92855865500007,28.996315681000056],[99.95745057200008,29.152738423000187],[99.94808161600008,29.295532693000098],[100.01731865100015,29.316415031000076],[100.07665263500013,29.24662479100016],[100.08644856500007,29.092609835000133],[100.11862166200012,29.03635284699999],[100.1280826520001,28.884866041000066],[100.0808635360001,28.809741892000034],[100.03386654000019,28.56768677700012],[100.04711162300015,28.479843426000116],[100.2053755340001,28.164169218000154],[100.30636556500019,28.015207542999974],[100.3710936390001,28.09294215100016],[100.33099360800014,28.21134743000016],[100.40892753800011,28.28503140000015],[100.50746955,28.219934020000096],[100.54740864900015,28.23903319200008],[100.5238345460001,28.434326172000056],[100.4847566050002,28.48964304500015],[100.55622054300005,28.545707582999967],[100.65982857800014,28.483498104000034],[100.65705064800017,28.630024165000066],[100.52064556700014,28.813373938000154],[100.50520358700004,28.903384347000042],[100.57234967200009,28.95049550400006],[100.5292586430001,29.02620253000015],[100.63220953700016,29.036048081000047],[100.7422176570002,28.913100817000156],[100.86276266800019,28.725702249],[100.96765866600003,28.425673533000122],[100.99685652300013,28.19502283600019],[100.89616354700001,27.911749712000017],[100.91699961700004,27.849742236000168],[101.05757167700017,27.99096439700014],[101.14482159000005,28.026825029000065],[101.25141157000007,28.028093043000183],[101.1482615230002,28.441329922000136],[101.04367867300016,28.700001488999987],[100.810218529,29.13747698900005],[100.58662455600006,29.56766643499998],[100.41093466900014,29.626749968000127],[100.3359835230001,29.697984410000174],[100.31258359600014,29.82279178700003],[100.4377136760001,29.834517063000078],[100.59259062700016,29.69064773000008],[100.676933528,29.675113214000135],[100.74533052800012,29.61609958600019],[100.76641051200005,29.469188293],[100.84202567199998,29.36545318800006],[100.91875462000007,29.48219767700016],[100.84989963200007,29.70200923200008],[100.83743255700017,29.83578926900003],[100.68167852300013,29.959943527000064],[100.58345753800006,30.073226290000093],[100.60352364600016,30.17885922500011],[100.4872586030001,30.23282527000015],[100.34404758400007,30.247980757000107],[100.23626653500014,30.32394192200013],[100.10642264100005,30.487292978000085],[100.07458465200017,30.606316841000137],[100.16902959000004,30.867036443000075],[100.15328954900019,31.023497909000014],[99.99824563000004,31.164948057000117],[99.93103064600007,31.29351756700015],[99.78492753600011,31.425008170000183],[99.72830962400013,31.55733478500008],[99.31582661300018,31.841070086000173],[99.27828255900005,31.928977308000185],[99.15419753500004,32.01747930900012],[99.09262055400018,32.08907098800012],[98.83107751400013,32.25402868700007],[98.86412065300004,32.31899480700014],[98.93731662900018,32.30790621900013],[99.181442576,32.1920837400001],[99.27272753700015,32.129703940000184],[99.4766996420002,31.950535730000126],[99.75412756200006,31.66037217900015],[100.06837466700017,31.462992776000135],[100.21447761000007,31.398709949000192],[100.26707455600007,31.322737720000134],[100.40196955300019,30.845369390000144],[100.2995376670001,30.659666984000182],[100.34850357100004,30.59855402500017],[100.50061063900012,30.491787857000133],[100.781562646,30.417995593],[100.93723252500007,30.35564479500016],[101.00729366900003,30.367958313000088],[101.04389157300017,30.46802767600019],[101.03930667200012,30.65324125000018],[101.08820367800007,30.72206170400011],[100.9724506,30.916253805000053],[100.7712555870001,31.10613911600018],[100.58366356500011,31.307982217000017],[100.516410527,31.359465543000113],[100.37827257100008,31.59504949300009],[100.37064353100016,31.671415840000066],[100.61578352100014,31.525973726000075],[100.91403158500015,31.15978832500008],[100.99668855000016,31.101155236000068],[101.2251205570002,31.022804055000165],[101.29955252800016,30.903091199000073],[101.31253056400016,30.748010903000193],[101.25821667000002,30.525100893000058],[101.23325351800014,30.345383334000132],[101.29362451100002,30.28495132000006],[101.37312367800007,30.148354629000153],[101.419021638,29.891552226000044],[101.48268856300012,30.025609033000137],[101.45381156600013,30.144472635000113],[101.4975275490001,30.20899836899997],[101.68007651599999,30.010217512000168],[101.73024757100012,29.866095884000174],[101.72832459500017,29.79086377600015],[101.67704059000016,29.725518459000057],[101.64101466800008,29.606881840000085],[101.56366763900013,29.551265900000033],[101.51446553200009,29.44335225000009],[101.56549053500015,29.394738888000177],[101.71816254300006,29.36749820500006],[101.73030859099998,29.323056851],[101.67028762600006,29.227757462000056],[101.51068864600006,29.241198012000154],[101.39661362600015,29.20866935400005],[101.36525759699998,29.109249086000148],[101.4274826670001,28.925344430000052],[101.45636754300017,28.622076612],[101.482810604,28.542539894000186],[101.56262157700007,28.581837106000023],[101.56716959800008,28.77196666599997],[101.65355667700015,28.78043909400003],[101.73374165100017,28.69147776400007],[101.90039065000008,28.85401024300006],[102.06983166100008,28.752953157000036],[102.1436995300001,28.818372570000065],[102.08812751200014,29.207824291000065],[102.00195366800006,29.643009351000103],[101.96706366100005,29.87195684600016],[101.90598255300011,30.167348692000132],[101.889045576,30.325540016],[101.84185060000004,30.522498983000105],[101.68151853800015,30.621861416000115],[101.62515258600001,30.716023046000146],[101.65660852800016,30.82817291000015],[101.79096959800012,30.978091631000098],[101.88793966800017,31.214989360000175],[101.86606558300014,31.419657331000167],[101.74108151600007,31.51334018700004],[101.56805455900002,31.551658895000116],[101.407386551,31.702698779000173],[101.350364631,31.729369995000184],[101.1889345400001,31.667707853000138],[101.02313261600005,31.634645101000103],[101.0158695290001,31.76604769400012],[101.05757167700017,31.83256061100019],[101.19531266600006,31.949867692999987],[101.18025155900011,32.03243580900005],[101.11008463600007,32.09408688700006],[100.98466454200002,32.13302669400014],[100.95929755000009,32.201707338],[100.96158564200005,32.350460639000175],[101.06449160900002,32.38682938100004],[101.28074655500018,32.15309112600005],[101.46306652800013,31.918235564000156],[101.57809457000002,31.842476235000106],[101.75012156600019,31.84061830200011],[101.8757326,31.866223507000143],[101.97320558400014,31.931502272000046],[101.97012355800001,32.004875944000105],[101.8598936520001,32.10906735900005],[101.75949856900007,32.1616126720001],[101.74092863000004,32.22028482100012],[101.628074518,32.30272134200004],[101.47570761100002,32.365074152000034],[101.4204405270001,32.45461031200017],[101.52264358700006,32.553068170000074],[101.76913457200004,32.47858154900018],[101.91585559700007,32.470726868000156],[102.09162159200008,32.32790158500006],[102.16439864000017,32.29490940800008],[102.35295055799997,32.12784299000003],[102.4194255880002,31.89314148700015],[102.43434856100009,31.770760671000062],[102.48674752500006,31.69796082400012],[102.62338260600012,31.684133366000026],[102.81360654600007,31.71054742500013],[102.88011963000008,31.676315733000024],[102.86042064800017,31.55305699700017],[102.80175067900012,31.508033436000176],[102.58892057800011,31.467770796000025],[102.41622956800006,31.475737460000175],[102.34751154100019,31.425572105000185],[102.2942735470001,31.312859144000072],[102.21935257600012,30.953409440000087],[102.36458564500015,31.033636827000123],[102.41095751900008,30.974188849000143],[102.40206163700014,30.86133373100006],[102.50187652500006,30.901035454000066],[102.60947451400006,30.866366561000063],[102.57962052100004,30.753676399000142],[102.30319256300015,30.589011396000103],[102.23646557300003,30.505003436000152],[102.33666954900019,30.172614539000165],[102.39587361300005,30.10326216900006],[102.41797652400004,29.989300305000086],[102.50546263900009,30.061887754000054],[102.56287364600007,30.188523056000065],[102.54918666900011,30.435627932000102],[102.7313846020001,30.630287073000147],[102.85424067100013,30.593137137000156],[102.91418452200008,30.663435656000047],[102.93727867700017,30.754908539000155],[103.00611857700011,30.88097420600019],[103.02740458800014,31.038481399000034],[102.87678564400005,31.113736808000112],[102.85143256600003,31.175006676000066],[102.94696765400005,31.372489009000105],[103.018127665,31.437166624000042],[103.08946252300018,31.410472777000166],[103.19976065800017,31.486100007],[103.24095167700011,31.606894128000192],[103.16744959400017,31.797916528000144],[103.00526462900012,31.959255424000048],[102.98786161900011,32.01462560600015],[103.09555851400017,32.20187950300016],[103.20967058200017,32.270751254000174],[103.34634354800005,32.19326558800003],[103.38802356700018,32.21572992700004],[103.40108458399999,32.326642455000126],[103.37013256300008,32.503982907000136],[103.519882639,32.90433747200018],[103.61544052600004,32.92686283100011],[103.71340167300013,32.84672613700019],[103.84947164500005,32.607822617000124],[103.98638953100016,32.73731246000017],[104.11248755300011,32.76706972500017],[104.11939960500001,32.83351256900005],[104.20526164200004,33.03923246900018],[104.28257765800015,33.136989432000064],[104.33052851500003,33.393916725000054],[104.28935962400016,33.584753215000035],[104.2243656760001,33.72198626000005],[104.15115360800007,33.68812018600016],[103.96163156800009,33.793727304000015],[103.87586257000004,33.885342680000065],[103.84397864900012,33.99682350100005],[103.75006059700019,34.08760286500018],[103.43578365200005,34.233119075000104],[103.35957354400011,34.256380197000055],[103.26231362800007,34.3671552620001],[103.06969464300005,34.493117832],[102.83853952200013,34.70902308500007],[102.74822954500002,34.817407464000155],[102.57495867400007,34.948226174000126],[102.41351366400005,34.95141079399997],[102.23140759700004,34.770552793000036],[102.0616306390001,34.70257337900006],[101.98266556800019,34.754364153000154],[101.99380461400006,34.81561859800013],[102.0892946080001,34.965166671000134],[102.10445361500012,35.066242030000126],[102.03690352200005,35.233454963000156],[102.08346566500018,35.324146653000184],[101.8184736400001,35.473419799000055],[101.57594260000013,35.582712273000084],[101.5169755760001,35.52737377400018],[101.402610542,35.19676988700007],[101.31880961500019,35.14048507200005],[101.20312459900009,35.1141719310001],[100.99501753400011,35.09663229600005],[100.78430956300019,34.930461568],[100.6106185920001,34.889740606000146],[100.43762164300006,34.895580278000125],[100.50215156799999,34.78771121900007],[100.714858622,34.72148982500005],[100.86189262700003,34.65322760600003],[100.94338953600015,34.589520280000045],[101.03679662700006,34.39930556000013],[100.87950853799998,34.43795853900019],[100.62094861700012,34.554799252000066],[100.51963051899997,34.580929668000124],[100.41063660800012,34.66652918300008],[100.11745456600005,34.82930507300006],[99.98434457900015,34.795543102000124],[99.81637559800009,34.785273091000136],[99.70964061100005,34.81935323900012],[99.45761857500014,34.9371253490001],[99.3322065280002,34.927535613000146],[99.24253860400017,34.95894880700013],[99.03900956600012,35.07583964400004],[98.91115553500009,34.938697291000096],[98.90779154199998,34.82263743599998],[98.94573960300005,34.73301762400007],[98.99433167500013,34.521326122],[99.07286859900006,34.30218193300004],[99.29809553500019,34.01637378700008],[99.39008356900013,33.94685579100019],[99.59692362600015,33.90087116100017],[99.78712460000014,33.968759213000055],[99.92553764900003,33.94393788300016],[100.20365154400014,33.92610555100015],[100.56320954199998,33.92827931400012],[100.74535366300017,33.99607248200016],[100.867111535,33.914473649000115],[100.9240796430002,33.83762903100012],[101.13536864700012,33.746159669000065],[101.21430153200004,33.6547771430001],[101.16891453200009,33.585340116000054],[100.93604263000014,33.58845717800017],[100.812263546,33.637847710000074],[100.70182761299998,33.51139831800003],[100.62044553500004,33.459729752999976],[100.35591853800008,33.46422664400018],[99.71933763400011,33.43810041900008],[99.43667555100012,33.521822891000056],[99.27583353500012,33.615925345000164],[99.08206958200009,33.640060532000064],[98.89814766000018,33.73910965000016],[98.76364862400004,33.86427024000005],[98.61910253600007,34.039371215000074],[98.53988651000014,34.10085549200011],[98.37358854500013,34.15046412100003],[98.28151652300016,34.21033773200014],[98.22030667000013,34.12650478600011],[98.28727757300004,33.996899441000096],[98.17909251600008,33.982472844000085],[97.90094760900013,34.08318593700011],[97.81237067300015,34.159835927000074],[97.59645854700017,34.087115038000036],[97.42752061800007,34.04689397300007],[97.19421352800015,33.95840353900013],[96.71957350800017,33.82969103400012],[96.42191351800011,33.76533092500017],[95.91509252200018,33.59639484000007],[95.68983457400014,33.45963788700004],[95.45653553000005,33.298746585],[95.18301357800004,33.12980949399997],[94.86122158600017,32.96087374399997],[94.45897656700015,32.61496031100006],[94.28601850900003,32.441999906000035],[94.31819965300014,32.35753345600017],[94.25383753300014,32.277087973000164],[93.97226761200011,32.26904218400017],[93.93204453500016,32.35753345600017],[93.64243351900018,32.37362302200006],[93.52175858800013,32.35753345600017],[93.35282166500008,32.38166780500018],[93.2723696440001,32.35753345600017],[93.28041861800011,32.28513292400015],[93.37695366700012,32.20468727200006],[93.34477252300007,32.07597141399998],[93.54589059000017,31.995528110000123],[93.62634261200009,31.987483495000163],[93.74460556600013,31.924874534000026]],[[103.5304485310001,33.615296367000155],[103.54817156200005,33.664801731000125],[103.65036054100017,33.66903174200013],[103.85961961500004,33.451410211000166],[103.82006055300019,33.26829462800009],[103.73321565400005,33.176718312000105],[103.541786564,33.11180114200016],[103.50898767400014,33.259463622000055],[103.50260954800018,33.420999828000106],[103.5304485310001,33.615296367000155]]],[[[104.796348593,36.47378586200006],[104.74233259200014,36.38359373400016],[104.6624295850001,36.32010718800012],[104.57711756900005,36.32165918100003],[104.45349153800004,36.201704926000104],[104.21240252100012,36.13304238700016],[103.98807563400015,36.205042768000055],[103.58095553300018,36.44095746800002],[103.2717206370001,36.60230809800004],[103.13902253700007,36.80000081700007],[103.10003662900004,36.91329062000017],[103.10958864600019,36.98520416400004],[103.18982659400012,37.03276492700019],[103.352577672,37.02453641300019],[103.50186154700003,36.97919216100007],[103.51783762200017,36.86548259100016],[103.632308604,36.87816642300015],[103.7360836060002,37.0591194750001],[103.83317554900015,37.15019773800003],[103.85649853000012,37.31083540300011],[103.78275253400017,37.34885974000002],[103.6501845210002,37.361463607000076],[103.49555953000004,37.34778769400015],[103.22192358300009,37.374913209],[102.84967052200011,37.471850255],[102.70539064300004,37.560601534000114],[102.61456266400006,37.64934091000009],[102.5417785750002,37.7880942650001],[102.3705825620001,37.939599680000185],[102.25092351800004,38.08567395600011],[102.16795357200016,38.12799318000009],[101.93159463200016,38.18588011200006],[101.70043951100007,38.202604020000024],[101.51659352900003,38.26360684100018],[101.4311755650001,38.26880663900016],[101.09229253799998,38.103945667000175],[100.82968164400006,37.90436819400014],[100.69499954700012,37.62603754300011],[101.10710855700012,37.387463936000074],[101.26353465200003,37.18299998000015],[101.32442465200018,37.04491080800017],[101.38181252600009,36.82505851600007],[101.4916535120002,36.614289861000145],[101.56320965100008,36.55391216300012],[101.75290653700011,36.46094227200018],[102.07592765200008,36.31938232100009],[102.17755856300005,36.30588946800009],[102.4125596360002,36.23268008200006],[102.6537775660002,36.09525022900016],[102.81355256600006,36.03917546499997],[102.90103164000016,35.979629922000186],[102.84584066300005,35.87697541200015],[102.63879357300004,35.864874459000134],[102.66515365200019,35.72966296100003],[102.7471385560001,35.66518047699998],[102.77772563000008,35.563074647000064],[102.67295854500014,35.489090605000115],[102.51657067200017,35.451531632000126],[102.56994663200015,35.26512414000007],[102.54000060600009,35.09406927800006],[102.69303152700013,35.01427942700013],[102.9450146710002,34.982084201000134],[103.0531616740002,34.91220108900018],[103.3808746420001,34.74786432200011],[103.43942257100014,34.68161191500013],[103.651588657,34.54522846000009],[103.76406860100013,34.498972927000125],[103.8595886020002,34.42864674800006],[103.97298452100017,34.408880041000145],[104.11473859700004,34.451798067000084],[104.36141951600007,34.55945707600017],[104.51924153300007,34.579674729000146],[104.46739158300005,34.76282082200004],[104.47418260100011,34.908081216000085],[104.38937366600004,35.014126373000124],[104.16396366999999,35.065662002000124],[104.1521076360001,35.12542564200015],[104.3147505880001,35.21092926900013],[104.49612457900014,35.2214081570001],[104.60594159300018,35.187503861000096],[104.68177065900005,35.220180208000045],[104.87190256600013,35.22071832600017],[104.91606865800014,35.19252797400003],[104.87123067200014,35.44910943000008],[104.7999035260001,35.5169937930001],[104.58776057400019,35.662731452000116],[104.51292459600006,35.840355045000024],[104.58239766500009,35.984241980000036],[104.74402657400015,36.04638541000014],[105.03928364000012,36.09456442200019],[105.14820060500006,36.14741198600012],[105.2182696270001,36.25504886699997],[105.23400866200018,36.33634192800014],[105.16590854900005,36.48416567600003],[105.0834046380001,36.53497660500011],[105.08272553600005,36.61868063700018],[105.1412965990001,36.69263031300011],[105.06521557200006,36.79763192299998],[105.0134735810002,36.811825671000065],[104.89868962000014,36.711127665000106],[104.796348593,36.47378586200006]],[[101.3815915790002,37.90258636900006],[101.37549558800004,37.99400476900013],[101.4336626440001,38.046996670000055],[101.63423957500004,38.12430044800004],[101.72653153800002,38.114226573999986],[101.75505867500004,38.04188588800014],[101.65116867300009,37.943788452000035],[101.45385766600003,37.885134575999984],[101.3815915790002,37.90258636900006]],[[102.34295664700005,37.60868482400008],[102.07405865500004,37.730371618000106],[102.07473758900011,37.82775558700018],[102.2414395620001,37.79770327900019],[102.43962061000013,37.71269887800014],[102.49026457200017,37.61208770900015],[102.44000953000017,37.578576357000145],[102.34295664700005,37.60868482400008]],[[102.83945465900013,36.500900313000045],[102.66578665400016,36.70391403100007],[102.49224856800004,36.77416058300008],[102.2790456410001,36.90128287300007],[101.91808367400012,37.14159991700012],[101.77075160900011,37.32973709800001],[101.83357967300003,37.38917283800009],[102.21432460800014,37.215389331000154],[102.39125853700011,37.08879007100012],[102.49376653100012,36.98408316900009],[102.577964593,36.99834983800008],[102.74747467100008,36.88367400300007],[102.81116456199999,36.81447351400004],[102.8764875830002,36.678547543000036],[102.90300759000007,36.52261296300014],[102.83945465900013,36.500900313000045]],[[104.09342962000005,35.58477237699998],[103.85433951900012,35.65129853600007],[103.76967659700017,35.76245313400017],[103.785377579,35.81813059600012],[103.90399156700016,35.847773867000114],[104.07132754700018,35.79112745700007],[104.19499967800004,35.691741555000135],[104.22422066900009,35.57490738000007],[104.09342962000005,35.58477237699998]]]]},"properties":{"objectid":664,"eco_name":"Southeast Tibet shrublands and meadows","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Palearctic","eco_biome_":"PA10","nnh":3,"eco_id":765,"shape_leng":179.585203805,"shape_area":44.2751549229,"nnh_name":"Nature Could Recover","color":"#D5642C","color_bio":"#D6C39D","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":461850.6621498856,"percentage":9.457748735679424}}, + {"type":"Feature","geometry":null,"properties":{"objectid":665,"eco_name":"Southeast US mixed woodlands and savannas","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Nearctic","eco_biome_":"NE08","nnh":4,"eco_id":400,"shape_leng":0.884986509594,"shape_area":0.0025345796395,"nnh_name":"Nature Imperiled","color":"#E8FC5F","color_bio":"#FEFF73","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":27.808861338477378,"percentage":0.0002624641800991482}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-81.40442138699996,30.957833186000187],[-81.50530323099991,30.877487709000093],[-81.43083957099998,30.83116042800009],[-81.40442138699996,30.957833186000187]]],[[[-81.35313956899995,31.311142360000133],[-81.38391230499997,31.314087814000118],[-81.40894866799988,31.135715045000097],[-81.29077590999992,31.216487795000035],[-81.27469408999997,31.289460539000174],[-81.35313956899995,31.311142360000133]]],[[[-81.10762133799994,31.853178855000124],[-81.1757122649999,31.816769754000063],[-81.13063951999993,31.72269700600009],[-81.03687585999995,31.812724302000163],[-81.10762133799994,31.853178855000124]]],[[[-80.72611215299992,32.27098805300011],[-80.78433943999994,32.22139713000007],[-80.72145760099994,32.16044257300018],[-80.66895758899994,32.22379713400005],[-80.72611215299992,32.27098805300011]]],[[[-80.66745759999992,32.502324471],[-80.64639394699998,32.26450623500011],[-80.5594121069999,32.353915350000136],[-80.45820298899991,32.40828809300007],[-80.55827574899996,32.49071538100014],[-80.66745759999992,32.502324471]]],[[[-80.74248489699988,32.53833356700011],[-80.80941218599997,32.47766991500009],[-80.75943943999994,32.36665171000004],[-80.67707577899995,32.380642625000064],[-80.70339397599997,32.525406292000184],[-80.74248489699988,32.53833356700011]]],[[[-89.81962007299995,37.08286214200018],[-89.91193632499994,37.077299963000144],[-90.08759039899996,37.01512832600008],[-90.20700804699993,36.94496582100004],[-90.2059495439999,36.88875349800014],[-90.04205689899999,36.79344292600007],[-90.06270979299995,36.64718626900009],[-90.13013334999988,36.50405767900003],[-90.20659916599993,36.508614892000026],[-90.28144383099988,36.42904216300013],[-90.35619039199997,36.420948127000145],[-90.50682048799996,36.24512945900011],[-90.61495648799985,36.19893797700007],[-90.70506693199997,36.012925495],[-90.75867103399997,35.977201029000184],[-90.8057064059999,35.80202691800014],[-90.7131352969999,35.75903566400018],[-90.68014113799995,35.69648651299997],[-90.71351078299989,35.59210615000006],[-90.81523594399994,35.07455602500016],[-90.72760729499998,34.98872047200007],[-90.67926105799995,35.16808907500007],[-90.70545303799997,35.31425446000014],[-90.66227927699998,35.499524333000124],[-90.66566178699998,35.82143832200006],[-90.55771783399985,35.93729855400011],[-90.44440072499998,36.15345866000018],[-90.28011856699999,36.27562470700019],[-90.1713146319999,36.434575301000166],[-90.05494651499998,36.47985411700006],[-90.0426151339999,36.67534233700019],[-89.90754597199992,36.83005376900013],[-89.83065307399988,36.88318500800017],[-89.84759471799993,37.003252029],[-89.81962007299995,37.08286214200018]]],[[[-75.84299109599988,39.580578743000046],[-75.70958220699998,39.68764801400005],[-76.05758672699994,39.57801741500003],[-76.2266228979999,39.48787883500012],[-76.36689844999995,39.450610835000134],[-76.38177688099995,39.41453769400016],[-76.54399812699995,39.401589877000106],[-76.65593859199993,39.271339361000116],[-76.7878383399999,39.20319368500003],[-76.91641593999992,39.108059978000085],[-77.22748584599998,38.68152426100005],[-77.33402964299995,38.59672579200014],[-77.35992137899996,38.532775966000145],[-77.52201143799994,38.35526479400011],[-77.56433620799999,38.19130001800016],[-77.52451340599998,38.002751180000075],[-77.5149146249999,37.826961443000016],[-77.54006528999997,37.762807052000085],[-77.51594537999995,37.657597288000034],[-77.54396853299988,37.55499964600011],[-77.50865814399998,37.37478803900012],[-77.54165675199994,37.28749200400017],[-77.5221519349999,37.16995599200004],[-77.59034417499993,36.91978662600013],[-77.56750968699993,36.84559497700013],[-77.5958187629999,36.689155874000164],[-77.69508019699987,36.50894448500003],[-77.77034176399991,36.44834845000014],[-77.74633865899995,36.39987560000014],[-77.78725504199991,36.30260860000004],[-77.85847660699994,36.23855575700014],[-77.87532764999992,36.16028882500018],[-77.95628381099988,36.1649058750001],[-78.04646055699993,36.002043408000134],[-78.12130933999993,35.95255987000019],[-78.13959918999996,35.844882564000045],[-78.10513120299993,35.720964288000175],[-78.20031342499993,35.72490050600004],[-78.33693890999984,35.63112751900013],[-78.42620926599994,35.635754747000135],[-78.44469074999989,35.55036167700018],[-78.66195565799995,35.59223928600011],[-78.78244800199997,35.641278116000024],[-78.86704684799997,35.61752717400003],[-78.90410730399992,35.42140923500011],[-79.06477121299997,35.49932280400003],[-79.18199510799997,35.41615693900019],[-79.33933005899996,35.35186484500014],[-79.39980293199994,35.358371790000035],[-79.53253678199997,35.28938571900011],[-79.6028909549999,35.36377126500008],[-79.79212147399994,35.28540367699998],[-79.7593447129999,35.16203841900017],[-79.80650735399996,34.98134842600007],[-79.91324847899989,34.98395882900019],[-79.93669590899998,34.85625657900016],[-79.99959752899986,34.88046326099999],[-80.10089780999994,34.84577315000007],[-80.06738710299993,34.74195577800009],[-80.21769974899996,34.74062479100019],[-80.37266733599995,34.77894996100008],[-80.46107454099985,34.723807202000046],[-80.57574913899992,34.6093068560001],[-80.52215295899992,34.55338566800003],[-80.61735779499998,34.43421827100019],[-80.58463172799998,34.395095642000115],[-80.64764053299984,34.312624299],[-80.82103375099996,34.27875580900013],[-80.87272974899997,34.184404440000094],[-80.97125759499994,34.22126235600007],[-80.99890474199998,34.095482469000046],[-81.0801784539999,34.020419652999976],[-81.2224043519999,33.96597626800008],[-81.27593401099989,34.01277510800014],[-81.51844056499988,33.939322504000074],[-81.625703161,33.87670962500016],[-81.7262127489999,33.87496116600016],[-81.89435419499989,33.810535508000044],[-81.87609923499991,33.71862320200012],[-81.97351935199993,33.63565507200002],[-81.98993059099996,33.507410696000136],[-82.04547597499999,33.482463510000116],[-82.14026689699989,33.52300016800018],[-82.2649387919999,33.41905978400018],[-82.39725168099983,33.42941370000011],[-82.58291431199996,33.401679591000175],[-82.63545167299998,33.33267901700009],[-82.73257375799994,33.31173037800005],[-82.78297002199992,33.251863099000104],[-82.91069600899993,33.251801667000166],[-82.94676968299996,33.11164465700011],[-83.26571302499997,33.006513042],[-83.36200190799991,33.022796723000056],[-83.42162313399996,32.96913302100006],[-83.51752290199994,32.96068614000012],[-83.58211224299998,32.85581889000014],[-83.69120220699995,32.85932320600017],[-83.83929717299998,32.79851301300016],[-83.84898129599992,32.766427828000076],[-84.01852674399993,32.75678676900009],[-84.09920258199998,32.69752095700005],[-84.21915299199998,32.65537092500006],[-84.35801381999988,32.6744659470001],[-84.53731440699994,32.62982626500013],[-84.67909081899995,32.54341134400005],[-84.83814247399988,32.54935286000017],[-84.99922050599997,32.50352699500007],[-85.05627701599985,32.546922166000115],[-85.29233257099997,32.524510503000045],[-85.49421181499997,32.561746668000126],[-85.48743858799992,32.620802738000066],[-85.68788671599992,32.57229354200007],[-85.92381457899995,32.60611835000009],[-86.11990957199987,32.66319838700019],[-86.25675158099989,32.617256209000175],[-86.38596735099998,32.738291073000084],[-86.5004927899999,32.748677150000105],[-86.52431128199987,32.80976652100014],[-86.65637922899998,32.89876018500013],[-86.71095964799991,32.978794611000126],[-87.0448256649999,32.98712493700015],[-87.14878952999999,32.97261588300012],[-87.1465331519999,33.113301507000074],[-87.39742055499994,33.1628483290001],[-87.47175777199999,33.215453935000085],[-87.56567832499996,33.475701818000175],[-87.66260970999997,33.57881008100003],[-87.65090013399993,33.712500348000106],[-87.70143520199991,33.93358361300017],[-87.76744888399998,33.99657054200014],[-87.76806536799984,34.10080850500003],[-87.70525305199999,34.16940710100005],[-87.56684736799997,34.23145208700004],[-87.62045612399993,34.2670934410001],[-87.71794375799993,34.25190100600008],[-87.68005140199995,34.38824847900014],[-87.76703083499996,34.42521639100016],[-87.71234712299997,34.5585384150001],[-87.90609366099989,34.65856794900003],[-87.89547712299998,34.72548600800019],[-88.03362576899991,34.7538236740001],[-87.99447919899995,34.82934180700005],[-87.79802708499989,34.980280063000066],[-87.6781839219999,34.99156487800002],[-87.67322320899996,35.07854528900003],[-87.72443544199996,35.13960404799997],[-87.92169196499998,35.12042375400017],[-88.05065056199999,35.221401566],[-88.10007807999995,35.30178382700012],[-88.06124739899997,35.348751775000096],[-88.11318489099995,35.46465108600012],[-88.1005757659999,35.52223739800007],[-88.12855482999998,35.72390249100016],[-88.11461791899995,35.805490449000104],[-88.05399868799992,35.84657650000008],[-88.08151918999994,36.012738382000066],[-88.00957908599992,36.05543369300017],[-88.04445532799997,36.11363913200012],[-88.05488486499996,36.26789783800007],[-88.18565089299989,36.40474630700004],[-88.24228674999995,36.50064422500003],[-88.21433882399998,36.575416599],[-88.2686955129999,36.75969168000006],[-88.27484251899995,36.87429881700007],[-88.36323620899998,36.948993008000116],[-88.33399404899995,37.01837370000004],[-88.49418190399996,37.019153461000144],[-88.55674306799995,36.931837120000125],[-88.66284716099995,37.08654047300013],[-88.74180356999995,37.09370120000011],[-88.80186969499994,37.16036017900018],[-88.98000836099993,37.198110845000144],[-89.05969751299989,37.09429589700005],[-89.09682652899994,36.95347320500014],[-89.09265862399997,36.799205938000114],[-89.12703821499997,36.70535214000017],[-89.09817301099997,36.59965239900015],[-89.17081002199996,36.57945001600007],[-89.3090254519999,36.47066914100003],[-89.30557928699989,36.434793047000085],[-89.41988101099992,36.27397074300012],[-89.37933429899994,36.17148782900006],[-89.48920759899994,36.11493003700008],[-89.44653352899991,36.009793767000076],[-89.5055689589999,35.90834603900004],[-89.67513512099993,35.75992746100019],[-89.83528187099989,35.597785922000185],[-90.07577317899995,35.30216595900009],[-90.03635388699985,35.19869794300013],[-90.12749624999992,35.05667079200015],[-90.1428817129999,34.90350169100003],[-90.19366292199993,34.83523790400005],[-90.15029734899991,34.77809776700008],[-90.21438404299994,34.64606736200017],[-90.1705684879999,34.47631722400013],[-90.02623565599993,34.32098668900005],[-90.06568721699995,34.261148650000166],[-90.08015264699998,34.07912646100016],[-90.06315448399982,33.898661634000064],[-90.00776504099997,33.745012382000084],[-90.04256220899998,33.708006466000086],[-90.0500090139999,33.528829536000046],[-90.07266840299997,33.45068970200015],[-90.15130453499995,33.35840132200019],[-90.14281269899993,33.24968913900017],[-90.1950283239999,33.18330277300015],[-90.19782870099982,33.101293392000116],[-90.29224187899996,32.98056287300005],[-90.34728817299987,32.95678914000007],[-90.58356300999998,32.61029245700007],[-90.7814925859999,32.52017829000016],[-90.87434215299999,32.36631230400019],[-90.94323555599993,32.2148428320001],[-90.94076365799998,32.15057942400006],[-91.04788036899998,32.039828066000155],[-91.05810373799994,31.98703033900017],[-91.17696969899998,31.911111771000037],[-91.21968688799984,31.77400996300014],[-91.34855504799992,31.69995093700004],[-91.42401725199983,31.546218646],[-91.4501632169999,31.38871559500012],[-91.3542386819999,31.339103461000036],[-91.41400001099993,31.234779325000034],[-91.54222722299994,31.103980788000115],[-91.56765120599988,30.936753089000092],[-91.36193779799993,30.760924915000032],[-91.18896538299998,30.510629436000045],[-91.18243419399994,30.41793835599998],[-91.01012719399989,30.32227532900015],[-91.01458915199987,30.224279965000164],[-90.95232154299998,30.16311883600008],[-90.87620617199997,30.15942545400003],[-90.83523688699995,30.24501215900011],[-90.68999560099996,30.328062213000067],[-90.60299296699992,30.314473722000116],[-90.51445014899991,30.407025725000096],[-90.17496312599991,30.412330168000153],[-89.93222815099995,30.27240248300012],[-89.85736106999991,30.273170344000164],[-89.69563416799997,30.184168409999984],[-89.4984327379999,30.181241846000148],[-89.32992360699996,30.302996423000025],[-89.00133261099995,30.386905544000058],[-88.85665075399999,30.39059645800006],[-88.74559617599994,30.347023725000042],[-88.6104052309999,30.375996463000092],[-88.4785597369999,30.318514636000145],[-88.33748697499993,30.404851023000106],[-88.20536875399995,30.361714655000014],[-88.10917781899997,30.370787387],[-88.10125964199995,30.50937832699998],[-87.99497780099989,30.67900564100006],[-87.91753232299999,30.63757836100018],[-87.9044868609999,30.538723795000124],[-87.93710504899991,30.482678327000087],[-87.90745958399992,30.41193285700001],[-87.75559589999989,30.291960108000183],[-87.66005950799996,30.249214648000134],[-87.51506856099991,30.3015055730001],[-87.4414230889999,30.3657419540001],[-87.38672307099995,30.323323764000122],[-87.17459574399993,30.428760158000102],[-87.09908663599992,30.51810563500004],[-86.93200476699991,30.45853290000008],[-86.94986840699994,30.395432885000105],[-86.71928652499992,30.410905623000133],[-86.60215921799994,30.401205624],[-86.49164100799999,30.46226927800012],[-86.42125007899995,30.450796551000053],[-86.25452275999999,30.48697838200019],[-86.24790457399985,30.428860188000044],[-86.337750052,30.38573290200003],[-85.92258629399993,30.237932882000166],[-85.74794987599995,30.14436923],[-85.77461352399996,30.246132888000034],[-85.68487713499997,30.226151069000082],[-85.68367712999998,30.116414680000048],[-85.5445043599999,30.026932846000136],[-85.48776797799991,29.961232833000167],[-85.3637315759999,29.898923731000025],[-85.30134064499993,29.799232801000073],[-85.31084973399987,29.689150958000084],[-85.10094967599991,29.718823698000108],[-84.99327691799994,29.714950973000043],[-84.79849504599986,29.76895099100011],[-84.53726770499998,29.90938739500018],[-84.45563131899996,29.928814675000183],[-84.3607676609999,30.059305617000177],[-84.20572216299996,30.105023813000173],[-84.00254937799991,30.100660182000183],[-83.92541298899994,30.034469261000083],[-83.77650385299995,29.978178342000092],[-83.6392947199999,29.887360144000127],[-83.53764922899995,29.723069200000168],[-83.40027645999999,29.65833282500006],[-83.39249463499993,29.52476006700016],[-83.29675823999997,29.444905505000122],[-83.22038549099989,29.42606914000004],[-83.15572183199998,29.317405480000048],[-83.0782581709999,29.26223274100016],[-83.07114907599993,29.201469091000035],[-82.83651264299993,29.15611454100008],[-82.75313079699998,29.063459976000104],[-82.7530035229999,28.99759632400003],[-82.63787621299997,28.89021448400007],[-82.66634893299982,28.449596196000186],[-82.70663075999994,28.394832545000043],[-82.75092342899995,28.238713879000045],[-82.80346713799997,27.962132439000072],[-82.84802917299987,27.87101405200019],[-82.6906034619999,27.71061420000018],[-82.62227617199989,27.78919603900016],[-82.62542470699992,27.874941880000108],[-82.72435802399997,27.94906880200017],[-82.676722596,28.006791137000107],[-82.54977734699997,27.967713874000083],[-82.39771541599998,27.8842647190001],[-82.45679214699993,27.699010464000025],[-82.54714556699992,27.650601648000134],[-82.54405226799997,27.602536536000116],[-82.64413762799995,27.449212333000162],[-82.58011157499988,27.41538800700016],[-82.44299427899995,27.056195865000177],[-82.28716695399999,26.842859452000027],[-82.17684895899998,26.830675172000156],[-82.18708064199996,26.93322994099998],[-82.08381203399989,26.899679541000125],[-82.03669870599992,26.821157328000083],[-82.07147597999989,26.73067761200008],[-82.03360540699998,26.550136719000022],[-81.93224036799995,26.475183697000034],[-81.84729360999995,26.47256629000009],[-81.80209910199994,26.09577998300017],[-81.79859423399995,26.09565499900009],[-81.77567856199988,26.125959633000036],[-81.77219392099988,26.143295451000142],[-81.7848888979999,26.17243031999999],[-81.80010655099994,26.387072133000174],[-81.75154882799995,26.519373875000042],[-81.64667934399995,26.416030729000056],[-81.54910577399994,26.38356230800008],[-81.58842169999991,26.27372419800008],[-81.39747457999982,26.274492836000093],[-81.35310141199983,26.321418861999973],[-81.20823781699988,26.24883835800017],[-81.16775303399993,26.2943276150001],[-81.22217266199993,26.38670931200005],[-81.10625192699996,26.422618221000164],[-81.05789427899998,26.336870078000175],[-80.97603004199993,26.31213574200018],[-80.92202349999991,26.38922649800014],[-80.96387930999998,26.46080115100017],[-80.99825593999992,26.64341945400008],[-81.15838577599999,26.761479899],[-81.1773941919999,26.864380816000107],[-81.13633542499997,26.965818266000156],[-81.01368985899984,27.020307859000127],[-80.82612393699998,27.201170074000117],[-80.75278771799998,27.200179686000013],[-80.63410370799988,27.072446153000044],[-80.57145608199988,26.937697534000108],[-80.37098773099996,26.751394091000066],[-80.30862847699996,26.676759675000085],[-80.21119721199983,26.668396905000066],[-80.14448082799998,26.703074137999977],[-80.0975956289999,26.82162481500012],[-80.04599243099995,26.85559573800009],[-80.09572086799994,27.02350500299997],[-80.18133907899983,27.16464139900006],[-80.31463003499994,27.423932370000045],[-80.40092292999998,27.698103118000063],[-80.60706650399987,28.088668889000076],[-80.74483928299992,28.396223506000126],[-80.67813013699998,28.41455882600019],[-80.60662106499996,28.549887183000124],[-80.62149896499994,28.62609291000018],[-80.7206029219999,28.707114491000027],[-80.81988476699996,28.652078112000083],[-80.84913152099989,28.74209775900016],[-80.76713020999995,28.757423593000112],[-80.97395360899998,29.083597624000106],[-80.99993938499995,29.212096424000094],[-81.22111839899992,29.692544278000184],[-81.32334056399998,29.876460647000044],[-81.31064859399993,29.976451141000098],[-81.38300317099998,30.26273302500016],[-81.39298499799997,30.397160329000087],[-81.47004866899994,30.694251304000147],[-81.53077596399999,30.834087699000065],[-81.46237595099996,30.99811501200014],[-81.45652140699997,31.086769578000144],[-81.40212140099999,31.30495144700012],[-81.30722137599997,31.381942377000144],[-81.34313957099988,31.440906026000164],[-81.28154864799995,31.545869688000096],[-81.17155770799997,31.556924240000114],[-81.13335770199996,31.69776972800014],[-81.18282135799996,31.79374247500016],[-81.08947587899996,31.8844152260001],[-80.9958122139999,31.856560677000175],[-80.86028490599995,31.97401525400005],[-80.90749401499988,32.05111527000008],[-80.90021219799996,32.11967892200005],[-80.7892939859999,32.18956075900019],[-80.75880307199992,32.277869871],[-80.82904855599992,32.46478809300004],[-80.77587581599988,32.5364244750001],[-80.58674848599998,32.49986083600004],[-80.50651209899996,32.51439720600018],[-80.41349388799995,32.470679017],[-80.3325756829999,32.478033567000125],[-80.19637564499999,32.55907904400004],[-80.01571195799994,32.61067906100004],[-79.90167556299997,32.67975180800016],[-79.85513918999999,32.76862455700007],[-79.61560275999989,32.89414277499998],[-79.61479367299995,32.96331551800006],[-79.52856637799994,33.03735190100019],[-79.41562088899991,33.01701553600003],[-79.36432996699989,33.07713373300015],[-79.19051173699995,33.1699428500001],[-79.20340265599992,33.302506516000165],[-79.09808445099986,33.465024738000125],[-78.99626549899995,33.57852898800013],[-79.11302240299995,33.556732997000154],[-79.19123416299993,33.48495336800005],[-79.42786417099995,33.36789044600016],[-79.33089045999992,33.330227447000084],[-79.37072668499997,33.230458755000086],[-79.45281296099995,33.2306607750001],[-79.55163836799994,33.06507186800019],[-79.69651745099998,32.96072446200009],[-79.7584535279999,32.96815951100018],[-79.87479397499999,32.92222032700005],[-79.8543245649999,33.02411245000013],[-79.93576385099988,33.11083000900004],[-79.9778595439999,33.026410906000024],[-79.96598553499996,32.9445906200001],[-80.16168885599996,32.82936660000013],[-80.21332639499997,32.73660926100018],[-80.39332622699999,32.69005208100003],[-80.59251113899984,32.75152073200019],[-80.56451962299991,32.67827499400005],[-80.6429663369999,32.66061682500015],[-80.69331108599988,32.55122160800005],[-80.88784082299998,32.59794602700009],[-80.89462599499996,32.36456577000007],[-80.87292250299998,32.27555233100014],[-81.00633626199988,32.17709823300004],[-81.10905892399995,32.25258794700005],[-81.13849701799995,32.49503406600019],[-81.28755992599986,32.597098440000025],[-81.37303031799996,32.722711785000115],[-81.43150402999999,32.88669592100007],[-81.21507399399997,32.98501951500003],[-81.14139486999989,33.046009542000036],[-81.14803664499993,33.17586274700011],[-81.11072488899987,33.25044370400013],[-80.95671958499992,33.393809573000055],[-80.80796236299989,33.451058227000146],[-80.69626099699997,33.44991514200018],[-80.52813751199994,33.40540575900013],[-80.45339660499997,33.42855730500003],[-80.33180231799997,33.37991371100014],[-80.16809257499989,33.39093882600008],[-80.1815087839999,33.52063464700012],[-80.1255334999999,33.67780023900008],[-80.17837601399998,33.69992279000007],[-80.1158048499999,33.7989085480001],[-80.19216121699998,33.90213649100002],[-80.15468251899995,33.94828530800004],[-80.13142139799999,34.08975369300015],[-79.96607035599993,34.096479331000126],[-79.82393437199994,34.147232585000154],[-79.65964219499989,34.042750986000044],[-79.51751294899998,34.01426103500006],[-79.4511554049999,34.054864247000125],[-79.34035975699999,34.02195512700001],[-79.27539272399991,34.12067097500011],[-79.15808145699998,34.21852856400017],[-79.0651761229999,34.14949878900006],[-78.85038030399988,34.11528548600012],[-78.73507091799996,34.19438440000016],[-78.64534095499994,34.32295002],[-78.49738847999998,34.41328385800011],[-78.43527936899994,34.50183599900009],[-78.46994681299998,34.568460434000144],[-78.60849384499988,34.64701846100007],[-78.75611687099996,34.75984854200016],[-78.79512406299995,34.86055601800018],[-78.7711040879999,35.01634925300016],[-78.55364681099996,34.86688248300004],[-78.42913559199991,34.748625178],[-78.23541810299992,34.72642194600019],[-77.968886162,34.91757362300012],[-77.8539646829999,34.95944660100008],[-77.72047965799999,34.95084362200015],[-77.67529154699997,35.05075332300015],[-77.6120352179999,35.09219446500009],[-77.63029769199989,35.162904296000136],[-77.5077975449999,35.21173957100001],[-77.42244211899998,35.351973894000025],[-77.4073062359999,35.478439742000035],[-77.49698161899994,35.632397401],[-77.44070117599995,35.70364961900009],[-77.44977953699998,35.768182543000194],[-77.4026819909999,35.854318929000044],[-77.42608467399992,36.013421268000116],[-77.38859391599988,36.078482106000024],[-77.27051549499993,36.155807807000144],[-77.3132494269999,36.241118715000084],[-77.53821741299993,36.38626192700008],[-77.41570052599997,36.39294058300004],[-77.07141556399989,36.37186524900011],[-77.07392084499998,36.533228711000106],[-77.17948515199998,36.62525979600014],[-77.12638872399992,36.69573727700015],[-77.09699888299997,36.82103921000004],[-76.97901818999998,36.91672917200009],[-76.82944708299993,37.13788541800005],[-76.76505124199997,37.1699288260001],[-76.69308390999998,37.22380745300018],[-76.6291725079999,37.205683218000104],[-76.49419807299995,37.2256247950001],[-76.49646220399995,37.24915598400008],[-76.49861861999995,37.4021380640001],[-76.49837006599995,37.402888357999984],[-76.49347361799994,37.41202365800001],[-76.49123566399993,37.41571928700017],[-76.43221111999998,37.512646792],[-76.4272358959999,37.526618414000154],[-76.41368840199993,37.58061040600012],[-76.40872518899988,37.65609625700006],[-76.40725181299996,37.65830054500003],[-76.40630355899998,37.65966033300009],[-76.40572263399997,37.66039849200018],[-76.40526891199994,37.66097500500018],[-76.32572675199998,37.863272649000066],[-76.3498820129999,37.90760232200006],[-76.56335238099996,37.99353312100004],[-76.59775096199996,38.068696110000076],[-76.72725429499991,38.10214647700013],[-76.73043630699993,38.106618081000136],[-76.76975255799994,38.157590261000166],[-76.77180765499998,38.15981784600018],[-76.79092196899995,38.16899854800005],[-76.82826042199997,38.163402272999974],[-76.83882755199988,38.16348373500017],[-76.85831008899993,38.17049977500017],[-76.86033529699989,38.17096851500003],[-76.88086387599998,38.17492805600017],[-77.01112725199988,38.199587594000036],[-77.01168957599998,38.20021749100016],[-77.02587386599993,38.267661167000085],[-77.02700253899997,38.26970420200007],[-77.11768228199998,38.34319217100011],[-77.20384105499988,38.357548701000155],[-77.15134644499994,38.441420951000055],[-77.02189517699998,38.45718110900003],[-76.98610998799995,38.379197647000126],[-76.85988262099994,38.30804976600007],[-76.81964768599994,38.29656945400018],[-76.71785179099999,38.284910689000185],[-76.70890587999992,38.282442270000104],[-76.6540962069999,38.26414813500003],[-76.64733390299995,38.261459494000064],[-76.55896037799994,38.20977914700012],[-76.55809774999994,38.20919477500007],[-76.44412366999995,38.18579776200016],[-76.43651523099993,38.186855157000025],[-76.45151084799988,38.28716797900006],[-76.45396645799997,38.288799435000044],[-76.51108256599986,38.32409029600012],[-76.51217767599996,38.32482533900014],[-76.53224349699985,38.35358100900015],[-76.53100617699988,38.354676108000035],[-76.53485623099994,38.372597604000134],[-76.53541911699995,38.37303772200016],[-76.55117244799999,38.38307860500004],[-76.56271120699995,38.38545995200019],[-76.58331603399995,38.38844826800016],[-76.5853404529999,38.38927964000004],[-76.69394903299991,38.49509562200018],[-76.6936312389999,38.4971818680001],[-76.69367701299996,38.53766565600006],[-76.69275047199994,38.54435264300014],[-76.63256856199996,38.56415633000006],[-76.6017244059999,38.45769156900019],[-76.59659866899989,38.45214941400019],[-76.54080866699996,38.42577388000012],[-76.53878785599989,38.42547246600003],[-76.53815167699992,38.42537756900009],[-76.53673317399989,38.42516596299998],[-76.49325804399996,38.393789507000065],[-76.48987224099994,38.39124180800019],[-76.47022303699998,38.37380352900004],[-76.46960327099993,38.37287182200009],[-76.44968399499999,38.35001642200018],[-76.44931183899996,38.34992590200011],[-76.43466825099989,38.343044432000056],[-76.43438443299993,38.342901847000064],[-76.43131538299986,38.34135993600012],[-76.42990678599995,38.340652201000125],[-76.40988835199994,38.33507175200015],[-76.38193842399994,38.38646225100007],[-76.51788392999993,38.53693500400004],[-76.53275666999997,38.69445471100005],[-76.54791261699995,38.73013801500019],[-76.55396103899989,38.75307110100016],[-76.55016530699999,38.87584812800009],[-76.54958048399999,38.8795905500001],[-76.54780235099997,38.882734586000026],[-76.45049302299998,38.94077145200015],[-76.47488344299995,38.989374798000085],[-76.46557064999996,39.00296003700015],[-76.46527236999998,39.00330261200003],[-76.46348099099998,39.01031647000019],[-76.46227323799997,39.011083678000034],[-76.41083807099994,39.030551893000165],[-76.48787485999998,39.061162384000056],[-76.43078393799993,39.1313078550001],[-76.52399306099994,39.176171496],[-76.57096244299998,39.27594723200008],[-76.54004929299998,39.26619342100008],[-76.5395578479999,39.26590167200004],[-76.48400049699995,39.321931623000125],[-76.4839549219999,39.319961572000125],[-76.39594213099997,39.37746245100004],[-76.39441495499989,39.38143715000018],[-76.35493432799996,39.39961367400008],[-76.35486339499988,39.39962464600012],[-76.35253234599992,39.399656090000065],[-76.35091642499998,39.399640213000055],[-76.34809289199995,39.39961278000004],[-76.34739301899987,39.39960599500006],[-76.08572491499996,39.53991234500006],[-75.97022018299992,39.557607958],[-75.89861106699993,39.51474431500009],[-75.84324189699987,39.57971773500003],[-75.8431511359999,39.58002932100004],[-75.84299109599988,39.580578743000046]]]]},"properties":{"objectid":666,"eco_name":"Southeast US conifer savannas","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Nearctic","eco_biome_":"NE08","nnh":4,"eco_id":399,"shape_leng":184.970140818,"shape_area":49.8974918189,"nnh_name":"Nature Imperiled","color":"#FFAA01","color_bio":"#FEFF73","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":522828.9982184536,"percentage":4.9345380481148045}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-3.007673541999907,36.73829123400009],[-2.905181472999914,36.744437013000095],[-2.856027478999977,36.7013808530001],[-2.703961481999897,36.68872837000015],[-2.604064450999942,36.74415823100014],[-2.577885420999962,36.805062816000145],[-2.361646567999856,36.82973528300005],[-2.219105430999889,36.72363145300011],[-2.090451431999895,36.763238628000124],[-2.00705752999994,36.87866933700002],[-1.926999457999955,36.92470040200004],[-1.832311444999959,37.17639302900017],[-1.678785487999903,37.35562276200005],[-1.536136559999875,37.42003651400006],[-1.327347542999973,37.548188773000106],[-1.206180426999936,37.560727598000085],[-1.152918460999899,37.52874544000014],[-0.984824421999974,37.58775403900012],[-0.927897552999923,37.54854383100019],[-0.785070425999947,37.64548104400012],[-1.035995437999873,37.588334066000016],[-1.338120467999943,37.56966136500006],[-1.444330580999974,37.53682928300009],[-1.613010514999871,37.41648141400009],[-1.826781567999944,37.35429573900012],[-1.939823434999823,37.27678610100014],[-1.968816437999919,37.22077621200009],[-1.941939529999956,37.1037055000001],[-2.015970509999875,37.00365575100005],[-2.151278567999896,36.94994988000002],[-2.209620469999891,36.984452978000036],[-2.358350467999969,36.958654654000156],[-2.418059458999835,37.027230189000136],[-2.670354576999955,36.98268624100018],[-2.583266434999871,36.914229393000085],[-2.629178476999925,36.83957295500011],[-2.730674439999916,36.80870575900019],[-2.796200470999963,36.776815467000176],[-2.946758562999946,36.770799607000185],[-3.007673541999907,36.73829123400009]]],[[[-1.204253427999845,37.86243789100013],[-1.29624347399988,37.769890615000065],[-1.262546546999943,37.68664842600015],[-1.173354546999974,37.64783485000015],[-1.115811440999892,37.683306394],[-1.097328505999883,37.772408539000025],[-0.984084467999878,37.846458295000104],[-0.994218523999848,37.92009985200008],[-1.204253427999845,37.86243789100013]]]]},"properties":{"objectid":667,"eco_name":"Southeast Iberian shrubs and woodlands","biome_num":12,"biome_name":"Mediterranean Forests, Woodlands & Scrub","realm":"Palearctic","eco_biome_":"PA12","nnh":3,"eco_id":803,"shape_leng":7.26011691968,"shape_area":0.29093708073,"nnh_name":"Nature Could Recover","color":"#C63901","color_bio":"#FE0000","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":2873.087375696319,"percentage":0.08697380700146712}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[38.34,-5.754166666999936],[38.49250000000018,-5.67],[38.3975,-5.533333332999973],[38.295000000000186,-5.502499999999884],[38.16000000000014,-5.575833332999935],[38.11083333300019,-5.646666666999977],[38.34,-5.754166666999936]]],[[[34.80083333300007,-5.458333332999928],[34.72666666600003,-5.323333332999937],[34.672500000000184,-5.321666666999931],[34.68083333400011,-5.428333333999944],[34.80083333300007,-5.458333332999928]]],[[[34.87500000000017,-5.124999999999886],[34.7825,-5.234166666999954],[34.76250000000016,-5.314999999999884],[34.91416666700013,-5.300833332999957],[34.93583333400005,-5.2575],[34.87500000000017,-5.124999999999886]]],[[[38.724166667000134,-4.401666666999972],[38.675833334,-4.554999999999893],[38.78,-4.525833333999969],[38.724166667000134,-4.401666666999972]]],[[[37.818333333000055,-3.82],[37.83166666700015,-3.928333332999955],[37.895,-4.001666666999824],[38.03250000000014,-3.843333333999965],[37.9275,-3.869166666999945],[37.885,-3.805],[37.818333333000055,-3.82]]],[[[36.23416666700007,-3.648333332999925],[36.100000000000136,-3.621666665999896],[36.101666667000075,-3.679166666999947],[36.23416666700007,-3.648333332999925]]],[[[32.7475,-2.86083333299996],[32.639166666000165,-2.914166665999971],[32.562500000000114,-2.9175],[32.5275,-2.864999999999839],[32.36000000000013,-2.915833333999842],[32.4516666670001,-3.0025],[32.550833333000185,-2.965833332999978],[32.65333333400014,-3.069999999999879],[32.66666666700013,-3.126666666999824],[32.77,-3.082499999999868],[32.74000000000012,-2.989999999999895],[32.7475,-2.86083333299996]]],[[[32.90666666599998,-1.880833332999941],[32.84666666600015,-2.056666665999899],[32.975833334000185,-2.083333332999928],[33.14833333400003,-2.168333333999897],[33.09666666700019,-1.9625],[32.95333333400015,-1.96666666699997],[32.90666666599998,-1.880833332999941]]],[[[33.92666666700018,-1.328333333999979],[33.84333333300009,-1.319999999999879],[33.79416666700007,-1.39249999999987],[33.83166666600016,-1.427499999999895],[33.92916666700012,-1.479166666999845],[33.98750000000018,-1.4175],[33.945000000000164,-1.34583333299986],[33.937500000000114,-1.340833332999978],[33.92666666700018,-1.328333333999979]]],[[[34.24666666700017,-1.164166666999961],[34.16666666600008,-1.17583333399989],[34.103333333000194,-1.139166665999937],[33.98750000000018,-1.21],[34.07250000000016,-1.244166666999945],[34.25083333300012,-1.25],[34.25250000000011,-1.344166666999968],[34.27500000000015,-1.391666666999868],[34.375,-1.334166666999977],[34.340000000000146,-1.2125],[34.24666666700017,-1.164166666999961]]],[[[36.715833333000035,-1.369166665999899],[36.65583333300003,-1.43666666699994],[36.5783333330001,-1.084166666999977],[36.598333333000085,-0.9725],[36.52250000000015,-0.866666666999947],[36.44583333300017,-0.714166666999915],[36.43333333400017,-0.605],[36.36083333300019,-0.494166665999899],[36.30583333300012,-0.464166665999812],[36.16416666600014,-0.2875],[36.090000000000146,-0.27],[35.98666666700018,-0.30833333299995],[35.975,-0.3925],[36.04666666700007,-0.495],[36.12416666700011,-0.598333332999914],[36.2683333330001,-0.586666666999974],[36.274166667000145,-0.681666666999945],[36.22,-0.696666666999874],[36.196666667000045,-0.778333332999921],[36.250000000000114,-0.959166665999874],[36.15416666600015,-1.119999999999891],[36.16583333400018,-1.2325],[35.96,-1.201666665999937],[35.849166666000144,-1.159166666999965],[35.84833333400013,-1.098333332999971],[35.73000000000013,-1.029166665999981],[35.59750000000014,-0.97833333299991],[35.52250000000015,-0.975],[35.37833333300006,-0.924999999999898],[35.315833333000114,-0.975],[35.26000000000016,-0.955],[35.17916666600013,-0.99166666699989],[35.11083333300007,-0.914166666999904],[35.03833333400007,-0.93333333399994],[34.965833333000035,-0.998333333999938],[34.909166667000136,-1.117499999999893],[34.96916666699997,-1.129999999999882],[34.97916666700013,-1.2325],[34.94916666600011,-1.314166665999949],[34.770833333000155,-1.434166665999953],[34.66666666700007,-1.484166665999908],[34.625,-1.425833333999947],[34.50833333400004,-1.415833332999966],[34.4825,-1.4075],[34.4825,-1.4175],[34.49083333300007,-1.425833332999957],[34.55083333400006,-1.44],[34.4825,-1.475],[34.3841666670001,-1.430833332999839],[34.152500000000146,-1.494166665999899],[34.11083333300007,-1.54],[33.9591666660001,-1.520833333999974],[33.92333333300007,-1.529166665999981],[33.937500000000114,-1.586666666999861],[34.040000000000134,-1.674166666999895],[34.06333333400005,-1.755833333999874],[34.03083333400019,-1.803333332999955],[33.94416666700005,-1.738333333999833],[33.87583333300012,-1.780833333999908],[33.823333333000164,-1.700833332999935],[33.7075,-1.66916666599991],[33.54,-1.68333333299995],[33.568333333,-1.760833332999937],[33.503333334000104,-1.835833333999972],[33.37666666600012,-1.791666666999902],[33.32166666699999,-1.844166666999968],[33.318333333000055,-1.943333332999885],[33.4533333330001,-1.874166665999894],[33.575833333000105,-1.985],[33.490833333000126,-2.02],[33.420000000000186,-1.963333332999923],[33.35333333400007,-2.012499999999875],[33.235,-2.045833332999905],[33.354166667000186,-2.163333332999969],[33.46666666700003,-2.146666666999977],[33.60666666600014,-2.184166666999886],[33.753333333000114,-2.07],[33.81916666700016,-2.118333332999896],[33.84083333400008,-2.229166666999959],[33.53583333300003,-2.37],[33.42833333300018,-2.4775],[33.44583333300005,-2.535],[33.205833333000044,-2.520833333999974],[33.141666667000095,-2.4675],[33.13333333300017,-2.40083333299998],[33.0750000000001,-2.383333332999939],[33.15,-2.524166665999871],[33.141666667000095,-2.615833333999831],[33.025,-2.7325],[32.975000000000136,-2.850833332999969],[32.84666666700002,-2.845833332999916],[32.8125,-2.959166665999931],[32.763333333000105,-3.011666666999929],[32.77,-3.09166666699997],[32.7575,-3.168333332999964],[32.695,-3.206666666999979],[32.705,-3.331666666999979],[32.64833333400014,-3.489999999999895],[32.4425,-3.595833332999916],[32.43583333300006,-3.649166666999918],[32.477500000000134,-3.761666666999929],[32.45083333300005,-3.864999999999895],[32.55750000000012,-3.956666666999922],[32.7083333330001,-3.969166666999968],[32.77250000000015,-3.921666666999897],[32.86,-3.968333332999975],[32.92666666700006,-3.940833332999944],[33.10083333400007,-4.052499999999895],[33.183333333,-3.9825],[33.32416666600017,-4.01833333299993],[33.27333333299998,-4.13666666599994],[33.226666667000075,-4.181666665999956],[33.35083333300008,-4.278333332999864],[33.350000000000136,-4.353333332999966],[33.441666667000106,-4.351666666999961],[33.4583333330001,-4.458333332999871],[33.425000000000125,-4.6125],[33.47916666599997,-4.685833332999891],[33.55166666700018,-4.7725],[33.48583333300013,-4.841666665999981],[33.47833333300008,-4.944166665999944],[33.43166666600018,-4.961666666999974],[33.414166667000075,-5.052499999999895],[33.490833333000126,-5.16],[33.49166666700012,-5.24916666699994],[33.413333333000026,-5.34],[33.44333333300011,-5.380833332999941],[33.5225,-5.301666666999893],[33.57416666600011,-5.330833332999873],[33.6375000000001,-5.2575],[33.73916666700018,-5.211666665999928],[33.86583333400006,-5.202499999999873],[33.955000000000155,-5.254166666999936],[34.0091666670001,-5.384166665999885],[34.05500000000012,-5.365],[34.19500000000011,-5.388333332999935],[34.17083333300013,-5.285],[34.27333333300015,-5.291666666999902],[34.305,-5.223333332999971],[34.233333333000076,-5.121666665999953],[34.09583333400002,-5.1075],[34.01833333400015,-5.075833333999981],[33.93166666700017,-5.085],[33.955000000000155,-4.986666666999952],[33.89666666600016,-4.93333333399994],[33.852500000000134,-4.841666665999981],[33.891666667000095,-4.742499999999893],[33.8925,-4.64666666699992],[34.004166667000106,-4.4225],[33.98833333300013,-4.285],[33.954166666000106,-4.19416666699982],[34.02333333300004,-4.096666666999965],[34.176666666000074,-4.054166666999947],[34.21916666700014,-3.985833333999835],[34.3391666660001,-3.868333332999839],[34.449166667000156,-3.880833332999885],[34.53250000000014,-3.82666666699987],[34.756666666000115,-3.64249999999987],[34.93500000000017,-3.58833333299998],[35.04500000000013,-3.515833332999932],[35.079166667000095,-3.524166665999871],[35.185000000000116,-3.447499999999877],[35.288333334000185,-3.330833333999919],[35.340000000000146,-3.413333332999912],[35.333333333000155,-3.475833332999969],[35.368333333000066,-3.550833332999957],[35.29583333300019,-3.663333332999969],[35.1725,-3.7125],[35.02416666700003,-3.748333332999948],[34.78,-3.850833332999969],[34.753333333000114,-3.924166666999895],[34.6425,-3.931666665999899],[34.54166666600008,-4.071666666999931],[34.54583333300013,-4.30833333299995],[34.5025,-4.3475],[34.52,-4.448333332999823],[34.49583333400017,-4.555833332999839],[34.541666667000186,-4.589166666999972],[34.64166666700015,-4.535],[34.658333333000144,-4.391666666999868],[34.73333333300013,-4.324999999999875],[34.81833333300011,-4.4025],[34.81500000000011,-4.499166665999894],[34.87416666600012,-4.583333333999974],[35.08,-4.400833332999923],[35.125000000000114,-4.519166666999865],[35.08833333400014,-4.565],[35.11916666600007,-4.6825],[35.011666667000156,-4.730833333999954],[34.9,-4.730833332999964],[34.81916666700016,-4.703333333999922],[34.8025,-4.645833332999871],[34.605,-4.651666666999972],[34.54666666700018,-4.704166666999868],[34.604166666000026,-4.766666666999924],[34.623333334000165,-5.029166666999913],[34.66250000000019,-5.110833333999949],[34.65666666599998,-5.185833332999948],[34.6475,-5.290833333999899],[34.7325,-5.2775],[34.69833333300005,-5.199166666999872],[34.731666666000024,-5.161666666999963],[34.6991666670001,-4.999166666999884],[34.75,-4.958333332999871],[34.99666666700017,-4.975833332999912],[35.01666666700015,-5.095833333999906],[34.92,-5.140833333999979],[34.975833333000026,-5.303333332999955],[35.09416666600015,-5.346666666999965],[35.138333333000105,-5.3525],[35.13916666600005,-5.456666665999876],[35.19416666700016,-5.51749999999987],[35.11083333300007,-5.696666666999874],[35.02333333299998,-5.780833332999975],[34.99333333400017,-5.886666666999872],[35.04166666700007,-5.941666666999936],[34.975,-6.015833332999875],[34.860000000000184,-6.013333332999878],[34.89166666600016,-6.226666666999961],[35.040000000000134,-6.250833333999879],[35.09416666600015,-6.324166666999929],[35.10583333400018,-6.41083333399996],[35.0208333330001,-6.448333332999937],[34.9466666670001,-6.43],[34.9433333340001,-6.5125],[34.78166666700014,-6.471666666999909],[34.78416666700008,-6.405833332999975],[34.675,-6.286666666999906],[34.65333333400008,-6.206666666999922],[34.59583333300003,-6.214166665999926],[34.55250000000012,-6.2775],[34.579166666000106,-6.334166666999977],[34.54750000000013,-6.55833333299995],[34.63916666700004,-6.501666666999938],[34.73083333400018,-6.502499999999884],[34.77333333400014,-6.575833333999924],[34.915,-6.615833333999944],[34.9591666660001,-6.684166666999943],[34.98,-6.8325],[34.82666666700004,-6.79833333299996],[34.79916666600013,-6.900833333999969],[34.60666666700001,-7.054166665999901],[34.54833333400012,-7.18333333399994],[34.430833333000066,-7.31],[34.37750000000017,-7.438333332999946],[34.393333333000044,-7.5125],[34.466666666000094,-7.5],[34.48916666700006,-7.41],[34.56916666700005,-7.458333332999928],[34.59083333400014,-7.605833332999907],[34.499166667,-7.645833333999917],[34.455,-7.748333332999948],[34.411666667000134,-7.718333332999919],[34.34500000000014,-7.880833332999885],[34.3858333340001,-7.971666666999965],[34.28833333300014,-7.960833332999869],[34.21166666700009,-7.905833332999919],[34.135000000000105,-7.920833333999894],[34.31416666700011,-8.033333332999973],[34.289166666000085,-8.0875],[34.135000000000105,-8.193333332999885],[34.08333333300004,-8.18666666699994],[34.086666666999974,-8.0875],[34.025833333000094,-8.07333333299988],[34.00083333300017,-8.0075],[33.905,-8.0175],[33.92750000000012,-8.140833333999922],[34.0425,-8.19],[33.74166666700012,-8.32999999999987],[33.7425,-8.225833332999969],[33.68416666700011,-8.2275],[33.65333333299998,-8.32],[33.731666666000024,-8.39333333299993],[33.80416666700006,-8.396666666999977],[33.7875,-8.481666666999956],[33.68166666700006,-8.4875],[33.6625,-8.604166666999959],[33.607500000000186,-8.769166666999979],[33.70583333300016,-8.814166665999892],[33.7558333340001,-8.793333333999897],[33.998333334000165,-8.875],[34.12833333400005,-8.855],[34.199166666999986,-8.89],[34.22833333300008,-8.826666666999927],[34.301666667,-8.77916666699997],[34.428333333000126,-8.832499999999868],[34.48000000000019,-8.825833333999924],[34.5766666670001,-8.8725],[34.685,-8.83083333299993],[34.84250000000014,-8.6625],[34.780833333000146,-8.626666666999881],[34.7975,-8.534166666999909],[34.586666666000156,-8.493333332999896],[34.721666667000136,-8.44499999999988],[34.683333333000064,-8.363333332999957],[34.7558333340001,-8.316666666999879],[34.899166667000145,-8.270833333999974],[34.9558333330001,-8.321666666999874],[35.138333333000105,-8.268333332999873],[35.05583333300018,-8.2675],[34.97666666600014,-8.1675],[34.93000000000018,-8.0441666669999],[34.995,-7.931666666999888],[35.08166666700015,-7.921666665999908],[34.97833333300014,-7.824166666999872],[35.01500000000016,-7.771666665999931],[35.1725,-7.783333332999973],[35.13750000000016,-7.884166666999931],[35.33500000000015,-7.861666666999952],[35.25833333300017,-7.808333332999894],[35.21833333300009,-7.74166666699989],[35.237500000000125,-7.679166666999947],[35.36750000000018,-7.73],[35.42583333300007,-7.651666666999915],[35.47500000000019,-7.688333332999889],[35.559166666000124,-7.674166665999962],[35.49833333400005,-7.868333333999942],[35.5750000000001,-7.859166666999897],[35.599166667000134,-7.795],[35.595,-7.651666666999915],[35.64000000000016,-7.635],[35.80833333300012,-7.695833332999882],[35.88666666600017,-7.679166665999958],[36.021666666000044,-7.599166666999963],[36.1475,-7.715],[36.303333334000115,-7.668333333999954],[36.48583333300007,-7.686666665999951],[36.63833333400004,-7.564166666999938],[36.602500000000134,-7.524166665999871],[36.69000000000017,-7.345],[36.67333333300007,-7.23583333299996],[36.5625,-7.233333332999905],[36.60833333300002,-7.070833332999939],[36.5216666660001,-7.0875],[36.47083333300009,-7.211666665999871],[36.458333334000145,-7.338333333999913],[36.362500000000125,-7.33083333299993],[36.29333333400018,-7.23],[36.29083333300014,-7.14],[36.351666667000075,-7.125833332999889],[36.44833333300005,-7.121666666999943],[36.46666666700014,-6.989999999999895],[36.44833333300005,-6.959166665999931],[36.42333333300013,-6.874166666999884],[36.4825,-6.786666666999906],[36.57666666700004,-6.76416666699987],[36.60083333400007,-6.820833332999882],[36.69666666700016,-6.76],[36.795833333000076,-6.756666666999877],[36.77833333299998,-6.689999999999884],[36.708333333000155,-6.65333333399991],[36.67166666700018,-6.536666666999963],[36.61916666700006,-6.486666666999895],[36.6425,-6.41083333399996],[36.351666667000075,-6.338333333999969],[36.359166667000125,-6.255],[36.41916666600008,-6.21666666699997],[36.5833333330001,-6.243333332999896],[36.66833333400018,-6.045],[36.64666666700009,-5.958333332999928],[36.79250000000019,-5.94833333299988],[36.88666666700004,-5.974166666999849],[36.98416666700007,-5.8775],[36.92500000000018,-5.800833332999957],[36.84916666700002,-5.848333332999914],[36.736666667000065,-5.759166665999885],[36.726666667000075,-5.61],[36.82833333400015,-5.593333332999975],[36.8325,-5.743333332999896],[36.9275,-5.7675],[37.016666667000095,-5.825833332999878],[37.05666666700017,-5.765],[37.153333333000035,-5.8275],[37.15,-5.6325],[37.200833334000095,-5.56166666699994],[37.25083333300006,-5.3975],[37.30500000000018,-5.455],[37.422500000000184,-5.503333332999944],[37.509166666,-5.41499999999985],[37.52083333400003,-5.345],[37.581666667000036,-5.32416666599994],[37.6925,-5.381666666999877],[37.68000000000018,-5.459166666999977],[37.71,-5.545],[37.8525,-5.611666666999895],[37.91333333400013,-5.584166665999931],[37.9975,-5.608333332999962],[38.07500000000016,-5.575833332999935],[38.25250000000017,-5.46666666699997],[38.37583333300012,-5.489166665999903],[38.458333333000155,-5.55916666599984],[38.53166666700014,-5.340833333999967],[38.36500000000018,-5.255],[38.2975,-5.141666666999924],[38.11750000000012,-5.033333332999973],[38.18166666700006,-4.913333332999969],[38.107500000000186,-4.844166665999978],[38.15583333400019,-4.80833333399994],[38.21833333300003,-4.871666666999943],[38.24750000000017,-4.99583333299995],[38.31916666600006,-5.078333333999865],[38.38833333300016,-5.052499999999895],[38.389166666999984,-4.939166666999938],[38.31833333300017,-4.935833333999938],[38.211666667000145,-4.822499999999877],[38.099166667000134,-4.665],[38.0175,-4.568333332999885],[38.01916666700015,-4.5625],[38.086666665999985,-4.485],[38.05750000000012,-4.445833332999939],[38.03250000000014,-4.291666666999959],[38.05750000000012,-4.230833332999964],[37.9533333330001,-4.181666666999945],[37.95750000000015,-4.141666666999924],[37.80166666700006,-4.078333333999979],[37.80250000000018,-4.02583333299998],[37.70666666700009,-3.909166666999965],[37.7091666660001,-3.9125],[37.7125,-3.916666665999912],[37.73083333300019,-3.939166665999949],[37.713333334000026,-3.97],[37.67750000000012,-3.930833333999942],[37.7016666670001,-3.765833333999979],[37.7675,-3.7],[37.725,-3.546666666999897],[37.755000000000166,-3.501666666999938],[37.698333333000164,-3.3875],[37.745,-3.255833333999931],[37.76666666600005,-3.1075],[37.80666666700006,-3.05],[37.779166666000094,-2.960833332999925],[37.81083333400011,-2.874166665999951],[37.73083333300019,-2.84],[37.74083333400006,-2.79],[37.63666666600017,-2.724166666999963],[37.58250000000015,-2.614166666999949],[37.53083333300009,-2.644166666999979],[37.36666666600007,-2.589999999999861],[37.350833333000026,-2.6675],[37.298333333000016,-2.7075],[37.182500000000175,-2.6675],[37.150833334000026,-2.734166666999954],[37.215833334000024,-2.76749999999987],[37.30833333300018,-2.877499999999884],[37.316666666,-2.880833332999941],[37.43250000000012,-2.8575],[37.482500000000186,-2.9],[37.538333333000026,-2.983333332999962],[37.610833334000176,-3.088333333999969],[37.61500000000018,-3.285],[37.67083333300013,-3.325],[37.62000000000012,-3.391666666999924],[37.56083333300006,-3.306666666999945],[37.49916666700011,-3.3425],[37.41833333400018,-3.32],[37.362500000000125,-3.266666665999935],[37.16000000000014,-3.246666666999886],[37.115,-3.214166666999972],[37.01083333300011,-3.259166666999931],[36.977500000000134,-3.340833332999978],[36.90833333400013,-3.293333333999954],[36.82,-3.353333333999956],[36.66583333400007,-3.366666665999958],[36.595,-3.434166666999886],[36.60166666700019,-3.59],[36.5750000000001,-3.64666666699992],[36.44416666600017,-3.65083333299998],[36.365,-3.604166666999959],[36.36416666700012,-3.791666666999959],[36.32083333300011,-3.813333332999946],[36.24000000000018,-3.71],[36.15666666700014,-3.706666665999876],[36.054166666000015,-3.749166666999884],[35.9475,-3.610833333999892],[35.90166666700003,-3.476666666999961],[35.864191579000135,-3.57429865499995],[35.87825210699998,-3.66293486099994],[35.777414821000036,-3.775585088999946],[35.73066660200004,-3.74760478099995],[35.752879710000116,-3.670296489999942],[35.73196153300012,-3.597667834999925],[35.81437369600013,-3.419051789999912],[35.89583333300004,-3.442499999999825],[35.88000000000011,-3.335],[36.03833333300014,-3.045833332999962],[36.047500000000184,-2.83083333299993],[36.00333333300006,-2.81166666699994],[35.92166666700018,-2.665833332999966],[35.92916666700006,-2.574999999999875],[35.9500000000001,-2.498333332999835],[36.02500000000015,-2.508333333999815],[35.97666666700002,-2.341666665999981],[35.96833333400019,-2.190833332999944],[36.00250000000011,-2.145],[36.0191666660001,-2.114999999999895],[36.05250000000018,-1.745833332999894],[36.075,-1.684166666999886],[36.075,-1.534166666999965],[36.05083333400012,-1.431666665999956],[36.196666667000045,-1.52583333299998],[36.3125,-1.385833332999937],[36.365,-1.44],[36.44583333300017,-1.373333333999881],[36.4725,-1.399166665999928],[36.48500000000013,-1.45833333399986],[36.64083333400015,-1.625833332999889],[36.64083333400015,-1.707499999999868],[36.62833333300017,-1.734166666999954],[36.63083333400016,-1.731666665999967],[36.62833333300017,-1.734166666999954],[36.666666667000186,-1.911666666999963],[36.74833333300006,-1.9],[36.79500000000013,-1.781666666999911],[36.868333334000056,-1.8275],[37.01833333400009,-1.807499999999891],[37.11666666700006,-1.834166666999977],[37.12833333300006,-1.965833332999921],[37.25083333300006,-1.975833333999901],[37.29083333400007,-1.901666666999915],[37.298333333000016,-1.7575],[37.22500000000019,-1.507499999999879],[37.135833333000164,-1.479166666999845],[37.153333333000035,-1.404166666999913],[37.24666666600018,-1.327499999999873],[37.228333333000194,-1.111666666999895],[36.965,-1.161666666999963],[36.882500000000164,-1.26416666599988],[36.715833333000035,-1.369166665999899]],[[35.69250000000011,-1.387499999999818],[35.7591666670001,-1.541666666999959],[35.79083333300008,-1.5425],[35.85583333400018,-1.661666666999963],[35.94583333300005,-1.63],[35.9425,-1.719166666999968],[36.00416666700005,-1.789166666999904],[35.96083333300004,-1.9475],[35.833333334000145,-1.994166665999956],[35.80333333400006,-1.8975],[35.843333334000135,-1.833333333999974],[35.6275,-1.5525],[35.63083333300011,-1.44],[35.69250000000011,-1.387499999999818]],[[35.700833333000105,-2.034166666999965],[35.651666667000086,-2.136666666999929],[35.51666666700004,-2.0175],[35.63083333300011,-1.9075],[35.725000000000136,-1.941666666999936],[35.700833333000105,-2.034166666999965]],[[33.525,-2.848333332999971],[33.590833333000035,-2.9375],[33.56000000000017,-3.009166665999828],[33.4500000000001,-3.091666665999981],[33.38333333300011,-3.033333333999906],[33.39166666700004,-2.882499999999879],[33.525,-2.848333332999971]],[[33.27000000000015,-3.74],[33.32833333400015,-3.8375],[33.22,-3.893333332999873],[33.10416666700007,-3.869999999999891],[33.129166667,-3.79],[33.27000000000015,-3.74]],[[37.17083333400018,-3.648333332999925],[37.18833333400005,-3.776666666999972],[37.12416666700011,-3.819166666999877],[37.06416666700005,-3.71],[37.17083333400018,-3.648333332999925]],[[36.94333333300017,-3.608333332999905],[36.88000000000011,-3.793333332999907],[36.815,-3.735],[36.94333333300017,-3.608333332999905]],[[37.345,-3.426666666999836],[37.41250000000019,-3.534166665999919],[37.48416666700018,-3.583333332999871],[37.43833333400016,-3.704166666999811],[37.356666667000184,-3.615],[37.345,-3.426666666999836]],[[37.631666667000104,-3.664166666999904],[37.6366666670001,-3.589166665999812],[37.71083333300004,-3.6625],[37.7016666670001,-3.74],[37.638333333000105,-3.758333332999939],[37.631666667000104,-3.664166666999904]],[[36.36083333300019,-3.82666666699987],[36.41583333300002,-3.91583333299991],[36.49000000000012,-3.874166665999951],[36.605833333000135,-3.891666665999878],[36.65916666600003,-3.976666666999961],[36.5750000000001,-4.025833333999913],[36.455,-4.02583333299998],[36.36083333300019,-3.82666666699987]],[[36.91113960500007,-4.522654738999961],[36.840667357000086,-4.783963780999954],[36.84300560500009,-4.87593228999998],[36.8144120020001,-4.996061306999934],[36.74889117300006,-4.925147209999921],[36.79531582600015,-4.73365562399988],[36.80867342099998,-4.56597705299987],[36.91113960500007,-4.522654738999961]],[[37.10749837900016,-4.769561820999911],[37.145498420000024,-4.716639019999946],[37.214431836000074,-4.751662533999934],[37.350269836000166,-4.745950580999931],[37.372944279000194,-4.857153319999895],[37.45370745800017,-4.917517053999916],[37.590577263000114,-5.060328721999895],[37.31758709300004,-4.899474245999897],[37.19873929400018,-4.92556622099994],[37.12446863600013,-4.836449008999921],[37.10749837900016,-4.769561820999911]],[[37.910334127,-4.802836807999938],[37.88830890100019,-4.895972079999979],[37.90356831500014,-4.970488656999919],[37.79978290200006,-5.020385896999926],[37.719629669000085,-4.953636177999897],[37.861623129,-4.797297607999894],[37.910334127,-4.802836807999938]],[[37.75789783800013,-5.241276395999819],[37.730181619000064,-5.197185547999936],[37.74177359100014,-5.078696290999972],[37.8353148540001,-5.118580213999962],[37.821857424000086,-5.193103926999868],[37.75789783800013,-5.241276395999819]],[[36.08333333300004,-5.240833332999841],[36.03666666700008,-5.345],[35.955833333000044,-5.325833332999821],[35.9425,-5.128333332999944],[36.039166666000085,-5.113333332999957],[36.11416666700018,-5.045833332999962],[36.2066666660001,-5.1025],[36.09833333299997,-5.190833332999944],[36.08333333300004,-5.240833332999841]],[[35.50416666600006,-4.578333332999875],[35.411666667000134,-4.678333332999898],[35.21583333400008,-4.7225],[35.0775000000001,-4.798333333999892],[35.055,-4.918333333999954],[35.132500000000164,-5.034166666999909],[35.425000000000125,-5.25],[35.400833333000094,-5.405833332999975],[35.31416666700005,-5.409166665999919],[35.27166666600016,-5.508333332999939],[35.15833333300003,-5.434999999999889],[35.15666666600009,-5.310833333999938],[35.1925,-5.27916666699997],[35.18583333300006,-5.137499999999875],[35.10500000000013,-5.125833332999946],[34.938333334000106,-4.863333333999833],[34.95666666700009,-4.805],[35.053333334,-4.775833332999923],[35.121666667000056,-4.711666666999861],[35.28583333300003,-4.624166665999951],[35.21,-4.5825],[35.29250000000013,-4.434999999999889],[35.43416666600007,-4.269166666999979],[35.51250000000016,-4.231666666999899],[35.55000000000018,-4.269166666999979],[35.75250000000017,-4.209166666999977],[35.7975,-4.291666666999959],[35.85833333300019,-4.313333332999946],[35.82,-4.399166666999974],[35.87666666700011,-4.440833332999944],[35.97768227500006,-4.319710628999928],[36.07486268600019,-4.290203536999968],[36.17047994700016,-4.334631917999957],[36.13013012500011,-4.380771455999934],[36.12262007200013,-4.477584126999943],[36.232506646000104,-4.532044516999918],[36.252460036000116,-4.645936774999939],[36.41300206600016,-4.903731577999906],[36.32503143800005,-4.905299571999876],[36.278170633000116,-4.867283460999886],[36.29116843600008,-4.773773082999924],[36.194825528000024,-4.697264972999903],[36.17914022500014,-4.62166316399987],[36.12635894400006,-4.611142727999891],[36.04199815300012,-4.528537471999925],[35.9266131280001,-4.55048706499997],[35.84695941700005,-4.516666666999868],[35.810000000000116,-4.639166666999927],[35.86583333400017,-4.716666666999913],[36.01500000000016,-4.691666666999879],[36.10833333300013,-4.7875],[36.09166666700014,-4.8425],[36.00000000000017,-4.875],[35.96833333300009,-4.743333332999953],[35.82916666600005,-4.7675],[35.7875,-4.748333332999835],[35.73166666599997,-4.86],[35.68666666700017,-4.870833332999894],[35.65916666600009,-4.9825],[35.68250000000012,-5.101666665999915],[35.63333333300017,-5.208333332999928],[35.566666667000106,-5.185833333999881],[35.525,-5.104166666999902],[35.425000000000125,-5.033333332999973],[35.47916666600014,-4.943333332999885],[35.618333333000066,-4.961666665999871],[35.63916666600011,-4.905833332999975],[35.59333333300009,-4.846666666999965],[35.539166667000075,-4.7],[35.51141940800011,-4.5725],[35.50416666600006,-4.578333332999875]],[[35.61166666700018,-5.445833332999882],[35.681666666000126,-5.484166665999908],[35.65,-5.583333333999917],[35.59166666600015,-5.595],[35.57000000000011,-5.520833332999871],[35.61166666700018,-5.445833332999882]],[[36.025833333000094,-5.955],[35.949166666999986,-5.924166665999962],[35.94333333300017,-5.793333332999964],[35.7725,-5.686666665999894],[35.71333333299998,-5.5825],[35.83083333400009,-5.603333332999966],[35.91666666600008,-5.70583333299993],[36.016666667000095,-5.724166666999963],[36.05583333300018,-5.815833333999933],[36.170833333000076,-5.878333332999944],[36.2083333330001,-5.990833332999955],[36.165000000000134,-6.045833332999905],[36.13166666700005,-6.100833333999958],[36.008333333,-6.133333332999882],[35.9516666670001,-6.051666666999949],[35.955,-5.976666665999915],[36.025833333000094,-5.955]],[[35.3308333330001,-6.144166666999979],[35.31583333400005,-6.230833332999907],[35.199166667000156,-6.234166666999954],[35.07083333300017,-6.150833332999923],[35.019166667000036,-6.059166666999829],[35.09583333400019,-5.989166666999893],[35.14,-6.038333333999958],[35.31,-6.041666665999969],[35.3308333330001,-6.144166666999979]],[[36.06666666700016,-6.358333333999894],[36.12416666700011,-6.243333332999896],[36.220833333000144,-6.209166665999931],[36.23916666700006,-6.300833332999957],[36.22,-6.39333333299993],[36.10583333300008,-6.387499999999875],[36.03107254500014,-6.463751777999903],[35.949700362000044,-6.480493560999946],[35.90168512400004,-6.637344806999977],[35.80647690800009,-6.62467269699988],[35.757864753000035,-6.561828763999813],[35.61332671800011,-6.565759533999881],[35.56457535900006,-6.529771797999956],[35.56485353800008,-6.417887253999879],[35.50269358300011,-6.376738145999923],[35.57265268800006,-6.300895320999928],[35.612129129000095,-6.389360340999872],[35.70903087300019,-6.401406697999903],[35.75148923799998,-6.45953754899989],[35.84881944900013,-6.444105401999877],[35.88129493200012,-6.364544930999955],[35.95071999600003,-6.378060365999829],[36.06666666700016,-6.358333333999894]],[[36.295833334000065,-6.5325],[36.34583333300003,-6.644166666999979],[36.323333333000164,-6.849166666999963],[36.22833333300002,-6.840833332999921],[36.2375,-6.746666666999886],[36.20166666700004,-6.54083333299991],[36.295833334000065,-6.5325]],[[35.23916666600013,-4.984166666999954],[35.15916666700008,-4.980833332999907],[35.10583333400018,-4.93666666699994],[35.10416666600014,-4.836666665999928],[35.17666666700012,-4.7675],[35.38833333300005,-4.711666665999928],[35.46833333300003,-4.674166666999952],[35.47666666600003,-4.8],[35.42333333400006,-4.884166666999874],[35.341666667000084,-4.87416666699994],[35.31083333300012,-4.951666665999937],[35.23916666600013,-4.984166666999954]],[[35.48956205700006,-7.246610577999945],[35.49171669800006,-7.314008758999933],[35.374239901000124,-7.335471083999892],[35.36256244600003,-7.277531831999909],[35.48956205700006,-7.246610577999945]],[[34.3275000000001,-8.6925],[34.21416666700014,-8.724166666999906],[34.18333333300018,-8.614166665999903],[34.11333333400006,-8.7125],[34.0425,-8.610833333999892],[34.1325,-8.55833333399994],[34.060000000000116,-8.442499999999882],[34.054166667000175,-8.286666666999963],[34.227500000000134,-8.283333332999916],[34.310833333000176,-8.22166666599992],[34.39166666699998,-8.276666666999972],[34.464166667000086,-8.246666666999943],[34.494166666000126,-8.170833332999962],[34.63583333400004,-8.161666666999963],[34.80333333400006,-8.194166666999934],[34.65583333300009,-8.304166666999947],[34.49500000000012,-8.368333332999896],[34.365,-8.460833332999869],[34.375,-8.5475],[34.237500000000125,-8.564166666999938],[34.24833333400011,-8.643333332999816],[34.3275000000001,-8.6925]],[[37.28833333300008,-2.7175],[37.40083333400014,-2.741666666999834],[37.3250000000001,-2.8175],[37.28833333300008,-2.7175]]]]},"properties":{"objectid":670,"eco_name":"Southern Acacia-Commiphora bushlands and thickets","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Afrotropic","eco_biome_":"AF07","nnh":3,"eco_id":57,"shape_leng":200.39376741,"shape_area":19.0624901832,"nnh_name":"Nature Could Recover","color":"#D68A00","color_bio":"#FEAA01","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":235433.37234712252,"percentage":1.0981538284064962}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[35.425476528000104,33.110436066000034],[35.53835260100004,33.105923249000114],[35.60594560900006,33.29316976900009],[35.55857058900011,33.300722367000105],[35.45526849400005,33.211766067000156],[35.425476528000104,33.110436066000034]]],[[[37.047378482000056,34.29508631700003],[36.80503855000006,34.153313298000114],[36.878482462000136,34.404966195000156],[36.81098551000008,34.564572048000116],[36.71483250800014,34.54246662300011],[36.66050755000015,34.45396814200012],[36.41508056300012,34.12947198000012],[36.30287152200009,34.02694370200004],[36.20772954500006,33.904011022000134],[36.07981449400012,33.86881021400012],[36.039768610000124,33.784618355000134],[35.84356652900016,33.63739056100019],[35.90358749400008,33.55756198600011],[35.80908958200007,33.48870112999998],[35.782733526000015,33.339799470000116],[36.05770454200018,33.53645668900009],[36.0337825900001,33.64421460400018],[36.05998257600004,33.775672853],[36.13933958500019,33.830649253000104],[36.25498956500007,33.8316099860001],[36.265792497000064,33.69921296400014],[36.239189510000074,33.619904067],[36.354255606000095,33.59101198200017],[36.41495148200016,33.60601156500019],[36.61114451000003,33.70022382200011],[36.671634526000105,33.79787718500012],[36.791820456000096,33.87426884500013],[36.99585358200011,34.16431085800019],[37.072105599000054,34.24485273300019],[37.047378482000056,34.29508631700003]]],[[[36.08204257100016,34.45969398800014],[36.049335547000055,34.38693772700003],[35.86526157700001,34.197097007000025],[35.789943471000186,33.89503920100009],[35.70656247800014,33.817522522000104],[35.69994345600014,33.72918396800014],[35.62239056800007,33.66987160900004],[35.56386158200007,33.49721982600016],[35.58270661500012,33.41867301200017],[35.683727491000184,33.46659151400013],[35.73989848000019,33.65262936400012],[35.859989527000096,33.795756228000016],[35.953746479000074,33.84923377600006],[36.035747476000154,33.97041128600006],[36.06810346600014,34.073222201000135],[36.35457948300018,34.35382384500008],[36.43282656100007,34.46706369200007],[36.50985356900014,34.653025602000184],[36.441307538000046,34.664419291000115],[36.244934466000075,34.53131282400017],[36.08204257100016,34.45969398800014]]],[[[36.353046600000084,35.820201597000164],[36.23322260000003,35.696498452000185],[36.1861805100001,35.59877987800019],[36.23372249700009,35.44312056000018],[36.22987352700011,35.16491764900019],[36.297698547000095,35.11723887000011],[36.35466749300019,35.01399745900011],[36.408489537000094,35.03825384900017],[36.4095845490001,35.344223155000066],[36.34187654100003,35.68436380300005],[36.353046600000084,35.820201597000164]]],[[[35.89652657900018,35.89580787200015],[36.15483856200012,35.818145851000054],[36.224678591000156,35.85404889500006],[36.196617488000186,36.024436056000184],[36.14339458200004,36.03328265200014],[35.92172258000011,35.928457062000064],[35.89652657900018,35.89580787200015]]],[[[29.278087480000067,36.28476120500011],[29.308713445000024,36.37366805200014],[29.250890551000168,36.434266697000055],[29.28240751300018,36.50220939900004],[29.217395460000148,36.577215696999986],[29.129957458000092,36.571119875000136],[29.069360489000132,36.61440083700006],[29.128732526000135,36.54533328500014],[29.10962648100019,36.38371896000007],[29.278087480000067,36.28476120500011]]],[[[30.413646601000096,36.84021400300003],[30.328893489999984,36.95334086200012],[30.238143462000153,36.98902295900007],[30.09800759600006,36.97606437000019],[30.030260528000156,37.10791271200003],[30.07657657900012,37.21031643500004],[30.05032546400014,37.287527845],[30.078777499000125,37.38435810500005],[29.97818560800016,37.39564182300006],[29.78572453800018,37.35936846700008],[29.81747250500007,37.5863242530001],[29.86422961100004,37.63573439900006],[30.04029048100017,37.72521456900017],[30.163284517000193,37.856830230000014],[30.167095601000028,37.92007286300003],[30.098560467000084,38.049163727],[30.037422529000025,37.90141541700018],[29.94011148300018,37.80620219300016],[29.766574572000025,37.78278047400016],[29.60924155500004,37.72743845500014],[29.477930492000098,37.80838785900016],[29.381406507000122,37.81418998000015],[29.222743450000166,37.768818905000046],[29.109031534000053,37.774670480000054],[29.018329450000067,37.85087522300017],[28.883094483000036,37.81614396900011],[28.873704572,37.7382712270001],[29.07382754000014,37.65391089200017],[29.134469604000174,37.60511094800012],[29.26910358800012,37.657725663000065],[29.352590529000054,37.65494102800017],[29.470499600000096,37.57407829300013],[29.55204747100015,37.41515338500005],[29.63978051600003,37.37228917100015],[29.684192533000044,37.27648502300008],[29.782627592000097,37.186887004000084],[29.804000607000035,37.09055580300003],[29.67263455900013,37.074588277000146],[29.61598345500005,37.12015029100013],[29.488637535000066,37.11717823600003],[29.464229601000056,37.20925260400003],[29.326738561000184,37.317907215000105],[29.277025493000053,37.45360888700009],[29.186258534000103,37.572381293000035],[29.14025160800003,37.50133779000009],[29.067790558000127,37.52405040100007],[29.008407456000157,37.46343147100015],[28.912757536000072,37.43684005100016],[28.806758479000166,37.45803754900004],[28.690837597000098,37.501806674000136],[28.59236750100007,37.481288110000094],[28.60036048400019,37.38639205800007],[28.529365596000105,37.27200238100011],[28.542148501000042,37.07192517900006],[28.70602644300004,37.04198485300009],[28.91767855100005,36.92048933399997],[29.01517450199998,37.01063653500012],[29.110956521000105,36.99468677900012],[29.119348483000067,36.905848831000185],[29.225278472000127,36.906962786000065],[29.27741659200018,36.85600668200016],[29.437067541000147,36.90889246800003],[29.50736253900004,36.74069818100003],[29.475612560000172,36.54701922099997],[29.490951611000014,36.50294935300013],[29.44443355700014,36.33207302500017],[29.476505568000164,36.21301563400016],[29.537572595000142,36.20134701900008],[29.58080058400003,36.30695363500007],[29.717300548000026,36.30590874700016],[29.813283565000063,36.36517617800007],[29.994840450000083,36.37552212900016],[30.03492153700006,36.346843615000125],[30.180231552000066,36.34272776500012],[30.38714252000011,36.434369627000024],[30.51460444500003,36.43925275600003],[30.588458568000192,36.571485661],[30.558097470000064,36.6122027670001],[30.589961611000092,36.80990353200008],[30.46054653400006,36.76514668400006],[30.413646601000096,36.84021400300003]]],[[[37.2765045110001,37.56253959700018],[37.120136587000104,37.530306150000115],[36.962173586000176,37.567033639000044],[36.97982051000008,37.799016053000116],[37.08426254400007,37.966966258000184],[36.996639469,38.00679438000009],[36.93816748,37.94796951300003],[36.868553595000094,38.01147533800014],[36.92874555000009,38.10325583600019],[36.83755161700003,38.13136521900009],[36.711196606000044,38.10228286500006],[36.688049478000096,38.196687067000084],[36.56103548100009,38.20665482600015],[36.49569351700018,38.26011678400016],[36.51601460300009,38.37415090100018],[36.43490946400004,38.50875487800005],[36.379058496000084,38.446014824000144],[36.23342845999997,38.47404944000016],[36.17420159700009,38.453987690000076],[36.171646457000065,38.36092224600014],[36.126033481000036,38.278152461],[35.98820448300006,38.19284614399999],[35.89201359400005,38.076274155000135],[35.826259575999984,38.08722980500016],[35.686847571000044,37.992703563000134],[35.632808603000115,38.004612403000124],[35.54521553500018,38.12152352400017],[35.37312349600006,38.04696683000009],[35.293975531000115,38.05070147100008],[35.25467647500011,38.11283752500009],[35.04743157200005,37.91747514300005],[35.016765541000154,37.99543455400004],[34.92216453200007,37.99832262299998],[34.818984477000186,37.90594030300008],[34.85574348100016,37.854831314000194],[34.98971546300004,37.82772876500013],[34.90236245300008,37.66048381200011],[34.81566960200007,37.616733463000116],[34.69826847500019,37.601879725],[34.58500247600011,37.52578545500006],[34.40344659800007,37.5113437710001],[34.25560357200004,37.479403188000106],[34.26490061100003,37.43876587700015],[34.123924543000044,37.402576841999974],[34.01422152400011,37.418907472000114],[33.93279250800015,37.361524460000055],[34.16529057700018,37.27266237200007],[34.06226357500009,37.25180769400009],[33.96702956500013,37.166322340000136],[33.932033610000076,37.096037735000095],[33.744167500000174,36.98166800700011],[33.61794257600019,36.94711193500018],[33.64446258200013,36.872364469000104],[33.44134559900016,36.81996634300003],[33.32732355200005,36.89105913100002],[33.24501058100009,36.98170606100007],[33.32405846600011,37.03887600500008],[33.29545958000011,37.09727792100006],[33.20505958000007,37.149278746000164],[33.08980153800013,37.17447809900017],[33.0730895320001,37.219105364000086],[32.69125360900017,37.25354375400008],[32.788986600000044,37.19790384200019],[32.795867472000054,37.106302549000134],[32.68834358000015,37.133039982000014],[32.757236454000065,37.004307695000136],[32.67713546700014,36.96381941500016],[32.448436579000145,37.068618350000065],[32.40405255800016,37.13651092800018],[32.39976152600002,37.31547428400012],[32.312236520000056,37.37701120000014],[32.29990053800003,37.4633323970001],[32.16636257100009,37.45979271900018],[32.16470748,37.378335204999985],[32.25403560200016,37.26071866300015],[32.26461456900017,37.18372099200013],[32.383617478000076,37.04702371800016],[32.315151577999984,37.02586812900006],[32.26170755800007,37.114557550000086],[32.07480653900018,37.25313555500014],[31.843629459000113,37.36550636700008],[31.762994544000094,37.45455185100013],[31.655340565000017,37.50461058800016],[31.60493247000005,37.61394581000013],[31.520952505000025,37.58599216200008],[31.462478505000092,37.6482009720001],[31.398988606000046,37.82410878800016],[31.31433859200007,37.933538893000105],[31.29031354300008,38.047019636000186],[31.130313571999977,38.188005092000026],[31.113271487000077,38.296146227000065],[31.02080953899997,38.37410614100003],[31.03346654800015,38.44216266900014],[30.942399517000126,38.386697772000105],[30.933425516,38.281688450000104],[30.69207548700018,38.28643746900019],[30.581047457000125,38.126784342000064],[30.697334461000082,37.991761772000075],[30.72128658700018,37.91617108700018],[30.697011590000102,37.82813277300016],[30.604549475000113,37.823921704000156],[30.512695551000036,37.648307925000154],[30.563610583000127,37.583260333000055],[30.67182145600009,37.673541644000125],[30.75032652900012,37.62483641600011],[30.945779603000176,37.67110368400006],[30.969902553000054,37.587918156000114],[31.06593150300006,37.56265761499998],[31.0343976100001,37.457454671000164],[30.89537452600007,37.450320666000096],[30.911542546000078,37.26935537600019],[30.985038594000173,37.196930704000124],[31.04613160400004,37.059375458000034],[31.176076584000157,37.10720762700004],[31.282123585000136,36.970086229000174],[31.37623056500007,36.949407738000104],[31.436511536000182,36.89049502900008],[31.587272470000073,36.87169240800017],[31.76670051900004,36.78852615900013],[31.841314545000102,36.65201999200008],[32.07876950300016,36.58220846200004],[32.19464445300014,36.43116572800005],[32.35392760300016,36.34986076500019],[32.47804649100016,36.20659174300005],[32.603778559000034,36.20191497700017],[32.660045604,36.149098090000166],[32.780166491000045,36.11782588000017],[32.906944453000165,36.19117323199998],[33.10958450600009,36.16334179300003],[33.33755450300009,36.255265623000184],[33.66116352400013,36.28775086200011],[33.812515550000114,36.332264132000034],[33.79551353000005,36.40708334700014],[33.59743155600006,36.43107369500018],[33.543567602,36.52624081800019],[33.63598646600008,36.58088546200014],[33.71815845400005,36.52983766000011],[33.877117560000045,36.48869743500006],[34.00134658500019,36.50972025400017],[34.230583591000084,36.66270490700015],[34.40273245900005,36.823761333000164],[34.54642845500018,36.89238682400003],[34.705940599000144,37.07291340500012],[34.94009359000012,37.15404268400016],[35.157882592000135,37.28847785000005],[35.277568459000065,37.29954380600009],[35.52487148299997,37.48567100700012],[35.66221248700009,37.4903781160001],[35.815593604000185,37.5856371050001],[36.118148457000075,37.499037964000024],[36.20042052500014,37.42495032100015],[36.29637554700008,37.40270257100019],[36.345947464000176,37.33409719600019],[36.2783395350001,37.207127624000066],[36.26630345800015,37.061729599000046],[36.222663582000166,36.96680236599997],[36.266235564,36.818116456000155],[36.205055550000054,36.71948576400018],[36.20185450100013,36.60309415300014],[36.02449058000008,36.44359357600018],[35.90403760200019,36.41801301400017],[35.794319495000025,36.32527211600012],[35.8808445410001,36.182037293],[36.156394579,36.30448265000018],[36.241622608000114,36.43448077099998],[36.37963852300004,36.52242990200017],[36.51294347300018,36.761228647000166],[36.619022493000045,37.01966133000019],[36.664390550000064,37.06296961800007],[36.745292512000105,37.22341232100018],[36.76782256500002,37.33380718200016],[36.821315535999986,37.43278119800016],[36.701820609000094,37.5890242320001],[36.80268860000018,37.62562548900013],[36.8137475150001,37.542436105000036],[37.000617520000105,37.494365053000024],[37.00031258700017,37.398167794000074],[37.11125545700014,37.417614480000054],[37.2765045110001,37.56253959700018]]]]},"properties":{"objectid":672,"eco_name":"Southern Anatolian montane conifer and deciduous forests","biome_num":12,"biome_name":"Mediterranean Forests, Woodlands & Scrub","realm":"Palearctic","eco_biome_":"PA12","nnh":4,"eco_id":804,"shape_leng":55.0684171237,"shape_area":7.73045328778,"nnh_name":"Nature Imperiled","color":"#C63901","color_bio":"#FE0000","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":76619.38957586538,"percentage":2.3194143199096007}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-69.13629151299995,-31.412412432999872],[-69.21075449699993,-31.34843068399988],[-69.34032463799997,-31.50762733299996],[-69.37233764099989,-31.853305569999918],[-69.34947164199997,-31.994903071999943],[-69.38480354299998,-32.04056432799996],[-69.33049752699998,-32.35983336699991],[-69.24243155299996,-32.57362151899997],[-69.12930251399996,-32.56693477199991],[-69.10163854599989,-32.460077072999866],[-69.02379648199991,-32.408198791999894],[-69.01179460199995,-32.216092946999936],[-69.05316951999993,-32.19239261299998],[-69.04093948499991,-31.99312292299993],[-68.99583461999998,-31.942810548999944],[-68.97480056899997,-31.724605804999953],[-69.08026854799982,-31.446039119999853],[-69.13629151299995,-31.412412432999872]]],[[[-69.30966162499988,-29.310891943999934],[-69.23259756899995,-29.410575235999943],[-69.17871852799993,-29.782405010999923],[-69.12689254999998,-29.87806834299988],[-69.09947953499994,-30.011388547999957],[-69.03434762099994,-30.08223473999982],[-68.91375751499999,-30.094527136999943],[-68.87578548199997,-30.254345554999873],[-69.03379860699988,-30.33324943899987],[-69.07034253099994,-30.400523096999905],[-69.09144548099994,-30.54464489299994],[-69.1697235719999,-30.65868889999996],[-69.23372661099995,-30.91883467599996],[-69.2609325929999,-30.944441725999923],[-69.28704859099997,-31.21982798199997],[-69.14881860299994,-31.286628731999883],[-69.08119960999994,-31.346828566999932],[-68.89224251099989,-31.360789296999883],[-68.86793549499998,-31.202374679999878],[-68.89752947999983,-31.16943966799994],[-68.88611550799999,-30.97606949599998],[-68.85018161799991,-30.93384197099988],[-68.87091056799994,-30.79233884899992],[-68.8536455229999,-30.582349542999964],[-68.72026060999991,-30.555323437999903],[-68.7024006179999,-30.458870865999927],[-68.73991349099992,-30.418640412999878],[-68.73168950299998,-30.271779745999936],[-68.68306759099983,-30.20583914599996],[-68.72069563099996,-30.12257918699987],[-68.70363661399995,-30.000995657999965],[-68.66950248599994,-29.957460555999944],[-68.66092662599993,-29.84166791599995],[-68.69273360199998,-29.800377319999882],[-68.68671455699996,-29.625954775999958],[-68.71376061199999,-29.511829296999906],[-68.87046062699994,-29.64003436199988],[-69.04385353799995,-29.49033222999992],[-69.02266660099997,-29.23620298399993],[-68.96617156799994,-29.068122522999943],[-69.1223296089999,-29.111474899999962],[-69.24426249599986,-29.214644728999872],[-69.30966162499988,-29.310891943999934]]],[[[-69.40125252499985,-29.75893383799996],[-69.53566757399989,-29.568984153999907],[-69.52705349199994,-29.35785138899996],[-69.47480053999988,-29.186964834999912],[-69.5432666079999,-29.07880525899992],[-69.46339461399992,-29.009186008999905],[-69.35434756199999,-29.084860848999938],[-69.28176162199998,-29.02689730599991],[-69.27824356999992,-28.95885284799988],[-69.41264353099996,-28.830010926999933],[-69.40573851999994,-28.742934351999963],[-69.26339754299994,-28.613770732999967],[-69.07924662699997,-28.570267313999977],[-68.94651063999999,-28.52061543399992],[-68.93508962699991,-28.352289383999846],[-68.76996663699998,-28.395200704999922],[-68.71960464199998,-28.32926010499989],[-68.74066953799996,-28.202091377999977],[-68.7214736389999,-27.922678120999876],[-68.66109459899997,-27.87602997999994],[-68.58882851199996,-27.892950527999915],[-68.50949849299997,-28.012808390999965],[-68.46739149899997,-28.17500877899994],[-68.36550158699998,-28.021342844999936],[-68.34383352899994,-27.829167094999946],[-68.31082157099996,-27.79504252299995],[-68.30262758999999,-27.661230131999957],[-68.33556360799986,-27.630778342999974],[-68.36551650699988,-27.399448375999953],[-68.30220061599994,-27.25339153399989],[-68.22768348499994,-27.20795055499991],[-68.07256362599998,-27.211527447999856],[-68.02264352499992,-27.188332542999945],[-68.01544950499994,-27.085564038999905],[-67.94596050999996,-26.931033595999963],[-67.79814162399992,-26.867195511999967],[-67.58444248799998,-26.94393015999998],[-67.53713955299997,-26.901383115999977],[-67.82977257999988,-26.760316355999976],[-67.8850094899999,-26.635176888999922],[-67.84942663399988,-26.57462853499993],[-67.82598848599997,-26.438541630999907],[-67.60095249099999,-26.11699221099991],[-67.48390155999994,-25.87294840599992],[-67.39403548799987,-25.879819219999888],[-67.07549248899994,-26.19845760499993],[-67.03241755299996,-26.27775610799995],[-67.03684956799987,-26.477561066999954],[-67.2701264829999,-27.01052622499998],[-67.25904057799988,-27.094377442999928],[-67.10942863499992,-26.970003074999966],[-66.99591855599994,-26.81769081899995],[-66.84864851699996,-26.3794834119999],[-66.78733858299995,-26.35111066899998],[-66.5283815279999,-26.36546283499996],[-66.65038264399993,-26.087315579999938],[-66.7020114789999,-25.62989869499995],[-66.68167849099996,-25.300859205999927],[-66.63764952699995,-25.190943621999963],[-66.47415949899994,-25.09460621799991],[-66.50394459199993,-24.98438553199992],[-66.39637761699998,-25.023013532999926],[-66.32665258799994,-24.984881404999953],[-66.3045505149999,-24.53963806099995],[-66.20514650799998,-24.570930387999965],[-66.06639851699998,-24.57464424099993],[-66.06242348399996,-24.46691063399993],[-66.15381657099994,-24.338758709999922],[-66.30161248999997,-24.40557538699983],[-66.3669816119999,-24.40662664499996],[-66.57825452299994,-24.29823371699996],[-66.61772959899992,-24.35792896099997],[-66.62216161399994,-24.462054829999886],[-66.56795450499993,-24.622667014999877],[-66.57410464199995,-24.821344103999934],[-66.6257016269999,-24.91091295399991],[-66.7551654859999,-25.049156352999944],[-66.83622754199985,-25.182772774999876],[-66.8575826199999,-25.41364307799995],[-66.93898062299996,-25.54479387899994],[-66.99210361599995,-25.587529850999886],[-67.08596752099993,-25.752013132999934],[-67.2947235129999,-25.749110144999975],[-67.33000160299991,-25.712891940999896],[-67.31602461199998,-25.522743941999977],[-67.27806062499997,-25.42494758299995],[-67.35234054799997,-25.350088805999974],[-67.45088960199996,-25.441292629999907],[-67.53430948699992,-25.575668283999903],[-67.65773049699999,-25.912944668999955],[-67.92163052799992,-26.275782169999957],[-68.11939952199998,-26.49669795699998],[-68.17389664499996,-26.495069017999867],[-68.25897262699993,-26.72422874299997],[-68.32013654799982,-26.78029646599998],[-68.51128350299996,-26.89179539199995],[-69.14844560799997,-26.97143503999996],[-69.31699361099999,-26.91309162899995],[-69.33784460099992,-27.020230959999935],[-69.39601148899999,-27.127234167999973],[-69.51092553699988,-27.399175293999917],[-69.62277264699998,-27.495122268999978],[-69.70158349199988,-27.604067563999934],[-69.73245253299996,-27.731335196999964],[-69.69698350399995,-28.032153655999934],[-69.72669248899996,-28.14913971099992],[-69.83296948899994,-28.310203009999952],[-70.00309764899993,-28.35674101299992],[-70.02460460599997,-28.409699888999967],[-69.97734860999992,-28.49309345499995],[-70.00354758899994,-28.59992936099991],[-70.15331258599997,-28.69608236299996],[-70.24500255999999,-28.790007622999894],[-70.26942457599995,-28.971048349999876],[-70.36209053899995,-29.060699844999874],[-70.4107515099999,-29.153929239999968],[-70.4626924879999,-29.398222825999937],[-70.46504260599994,-29.497396832999925],[-70.53069252099988,-29.64732427099989],[-70.41849554999999,-29.613364486999956],[-70.37126151399991,-29.64032839899994],[-70.28437755599992,-29.78586791099997],[-70.1845546209999,-29.833493213999873],[-70.10432455199998,-29.934166408999943],[-70.1098175489999,-30.176808256999948],[-70.19087256399996,-30.1964425299999],[-70.26806653999995,-30.116891394999925],[-70.39907853599988,-30.032605658999955],[-70.46868152499991,-30.063979290999953],[-70.31298851199995,-30.29753196999991],[-70.29994157699986,-30.467250757999977],[-70.3609614959999,-30.500920359999952],[-70.46306648799992,-30.441058650999878],[-70.49159261899996,-30.352726969999935],[-70.57588154099989,-30.366981234999912],[-70.52639059299992,-30.465061739999953],[-70.59040050599992,-30.522510633999957],[-70.60134157199997,-30.590522066999938],[-70.44172649799987,-30.704559199999892],[-70.42568956999997,-30.809836239999925],[-70.50305956599988,-30.8945023469999],[-70.43164055399996,-31.021155753999835],[-70.51770761199987,-31.07796108499997],[-70.59688558399995,-31.22833963699992],[-70.67233260299992,-31.248181947999967],[-70.72331955299984,-31.310719998999957],[-70.8145595869999,-31.349130739999907],[-70.81157663499994,-31.41211252899984],[-70.73561060799994,-31.45506106499988],[-70.68942263399998,-31.591267326999912],[-70.62868451299988,-31.636736972999927],[-70.49064663799993,-31.85753742499992],[-70.45967852299992,-31.953466462999927],[-70.47879060299994,-32.14703293799988],[-70.61862153599992,-32.190389505999974],[-70.51792151799998,-32.371547914999894],[-70.50751454699997,-32.49494176699994],[-70.53882548199994,-32.56376875899997],[-70.4289476159999,-32.56506577499994],[-70.37624354999991,-32.61998802799985],[-70.37190256199995,-32.78912192599989],[-70.33162651199984,-32.844669971999906],[-70.1745146099999,-32.86858320599998],[-70.12875360899994,-32.95393880899991],[-70.19094062499988,-33.02453153299996],[-70.3171615259999,-33.074602004999974],[-70.49272149399991,-33.0931825049999],[-70.45636750399996,-33.244800906999956],[-70.33515948399997,-33.27800296699996],[-70.27153061299987,-33.328732423999895],[-70.14542353799993,-33.31704888999997],[-70.02498648599993,-33.34868286299985],[-69.97226749999999,-33.42107970699993],[-70.0191645839999,-33.52531772599997],[-70.16729762299997,-33.61789802599992],[-70.03795664299992,-33.88154659999992],[-70.06110360399992,-33.990224511999884],[-69.92137962499999,-34.078242038999974],[-69.95642050599992,-34.183025216999965],[-70.02881651299992,-34.24181940599988],[-70.09023256099982,-34.232134954999935],[-70.17836760299991,-34.14642010499995],[-70.32659150199999,-34.04640974999995],[-70.35593453399997,-33.91531745499992],[-70.43557753399995,-33.893604134999975],[-70.42716260599991,-33.99610642899984],[-70.33461750999987,-34.11984092199998],[-70.2964096099999,-34.35130265199996],[-70.33686855399998,-34.51227827599985],[-70.46381348299991,-34.55831286199998],[-70.58634953199987,-34.65610050299995],[-70.45290359799998,-34.781394029999944],[-70.43981961499992,-34.98016901999989],[-70.36508958399997,-34.99444775999996],[-70.37723563199995,-35.16694347199984],[-70.53916159599993,-35.19464448799988],[-70.56333953099983,-35.29461812999995],[-70.43160249999994,-35.312218617999974],[-70.4450836179999,-35.46314702199987],[-70.38849655099989,-35.58618698999993],[-70.42213463699994,-35.63430481399996],[-70.37717461199998,-35.76318177299993],[-70.32224263599994,-35.81419068299988],[-70.4206926149999,-35.87112744199993],[-70.37733453799996,-35.93160790299987],[-70.37882249399996,-36.0199276809999],[-70.28359954799998,-36.06642377499986],[-70.28359954799998,-36.262792487999945],[-70.39815552099998,-36.32825096099998],[-70.32450859899996,-36.40188815999994],[-70.27447551099988,-36.60975080899988],[-70.13814553199995,-36.417565838999906],[-69.89565254599995,-36.23587584999996],[-69.9345014939999,-36.15818365399997],[-70.08616649999993,-36.07309560199997],[-70.02513149299995,-36.001129251999885],[-69.79551663099994,-36.02415383699997],[-69.66071349999993,-36.00207908899995],[-69.54782854199988,-35.84424198499988],[-69.52245350399988,-35.66823207599987],[-69.47871354799997,-35.638451844999906],[-69.46820062999996,-35.49662803099989],[-69.71090651499998,-35.439237642999956],[-69.84901463099999,-35.36683627199983],[-69.76126850999998,-35.266897834999895],[-69.58693649099996,-35.30922460199997],[-69.41706850599991,-35.323704506999945],[-69.41255954499997,-35.216335176999905],[-69.60816148099991,-35.06494476199998],[-69.74319461199997,-34.9043919209999],[-69.63047058699988,-34.912593780999885],[-69.39328753799992,-35.03293276499994],[-69.34439857899997,-35.009206279999944],[-69.27777854199991,-34.68492268299991],[-69.3156895539999,-34.65641650099997],[-69.34805258599994,-34.52652181199994],[-69.31623856899995,-34.452133761999846],[-69.3870084859999,-34.419133873999954],[-69.2584606019999,-34.26374998499989],[-69.23992150799995,-34.08026794499989],[-69.27467354899994,-34.0506707749999],[-69.26977549999998,-33.92297331799995],[-69.33209260399997,-33.793475092999984],[-69.32093059099986,-33.68984107399996],[-69.27615362599994,-33.63966750499998],[-69.25746164599997,-33.37015109599997],[-69.09255960399992,-33.377960179999945],[-69.06906848199992,-32.99141664499996],[-69.17793263999994,-32.94328809199993],[-69.22682159899989,-32.884680818999925],[-69.50312751699994,-32.78166102599988],[-69.51350364299986,-32.68579686399994],[-69.46648451899995,-32.60228444299992],[-69.43341858099996,-32.21489483799991],[-69.47557854899986,-32.17789694999988],[-69.49937460399991,-31.955011414999944],[-69.54069554299997,-31.863059422999868],[-69.66198754899995,-31.77958002599985],[-69.64956657399983,-31.641347521999933],[-69.53839152499995,-31.434191802999976],[-69.49577357099997,-31.035082285999977],[-69.46280653999992,-31.006097496999928],[-69.41643550399994,-30.51978467099991],[-69.28117354799997,-30.231662280999956],[-69.28035748599996,-30.12412229599994],[-69.31479654599991,-30.085011496999982],[-69.32342554799999,-29.93181947599993],[-69.40125252499985,-29.75893383799996]]]]},"properties":{"objectid":673,"eco_name":"Southern Andean steppe","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Neotropic","eco_biome_":"NO10","nnh":2,"eco_id":595,"shape_leng":52.9876442596,"shape_area":11.7625287015,"nnh_name":"Nature Could Reach Half Protected","color":"#FBB84D","color_bio":"#D6C39D","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":125189.67890744083,"percentage":2.563626350334669}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-55.77689755099988,-27.439935482999942],[-55.835014482999895,-27.42477714699993],[-55.9008335449999,-27.338019083999882],[-55.96892963499988,-27.347972593999827],[-56.08073852399997,-27.307731411999953],[-56.169776631999866,-27.33407824899996],[-56.297988569999916,-27.424790221999956],[-56.303131537999946,-27.49347623099993],[-56.432479558999944,-27.66431785799989],[-56.43012256799989,-27.84221436499996],[-56.4607235549999,-27.964259401999982],[-56.69128456599998,-28.158352427999944],[-56.823493498999824,-28.365742673999932],[-56.95928150399993,-28.427176156999963],[-56.9970815399999,-28.472485372999984],[-57.30814754599999,-28.598702417999903],[-57.51696355299987,-28.615599663999944],[-57.550743628999896,-28.677761198999917],[-57.5897335599999,-28.733159711999917],[-57.59965153099995,-28.960967937999953],[-57.56345361099994,-29.018108544999905],[-57.65091357399996,-29.196154585999977],[-57.57129655799997,-29.319543576999877],[-57.51622058099986,-29.486008341999934],[-57.55700658699993,-29.592270254999903],[-57.69678856899998,-29.778436179999915],[-57.719085603999986,-29.936904105999872],[-57.6149025709999,-30.04502713699992],[-57.62751062999985,-30.184512063999875],[-57.53361554499992,-30.161471720999828],[-57.322814534999964,-29.973460938999835],[-57.31597154999997,-29.860930870999937],[-57.274169489999906,-29.79843322199997],[-57.10111252599995,-29.759263916999885],[-56.970283589999895,-29.63066188599987],[-56.96805551199992,-29.598441849999915],[-56.82972762299994,-29.486222247999933],[-56.7791674799999,-29.390671065999925],[-56.69889047299989,-29.3456728189999],[-56.62499946999992,-29.172622559999922],[-56.51500660399995,-29.09096069499998],[-56.43117550299996,-29.071765298999935],[-56.39278454199996,-28.950409253999908],[-56.325561510999876,-28.92207741599998],[-56.28139458099997,-28.776527175999888],[-56.18722557499996,-28.75346990099996],[-56.11083961499992,-28.66041987899996],[-56.02139246999997,-28.597644453999976],[-56.01833357899994,-28.505981133999967],[-55.89972663099991,-28.471262619999948],[-55.87333654399998,-28.354599100999906],[-55.73555750199995,-28.360157140999945],[-55.691390571999875,-28.29098984399991],[-55.768890486999965,-28.2282194469999],[-55.67861152199998,-28.19377183699993],[-55.61250261299995,-28.119607750999933],[-55.45480347499995,-28.098162651999928],[-55.36756848299996,-28.02366982899997],[-55.38261751899995,-27.984546456999965],[-55.30442056499993,-27.912041653999893],[-55.439098470999966,-27.83796758999995],[-55.5871845719999,-27.781781010999964],[-55.62936750599994,-27.703194297999914],[-55.642764468999985,-27.52046830599994],[-55.61114457799994,-27.475411049999934],[-55.65717363099998,-27.37160268799994],[-55.77689755099988,-27.439935482999942]]]},"properties":{"objectid":677,"eco_name":"Southern Cone Mesopotamian savanna","biome_num":9,"biome_name":"Flooded Grasslands & Savannas","realm":"Neotropic","eco_biome_":"NO09","nnh":3,"eco_id":586,"shape_leng":9.2276855053,"shape_area":2.47915803053,"nnh_name":"Nature Could Recover","color":"#A5CDD9","color_bio":"#BEE7FF","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":26963.489926214796,"percentage":2.3317497989996694}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[28.580413816000032,-4.537378493999938],[28.521501088000093,-4.25473808199996],[28.428702109000085,-4.291619727999887],[28.379923159000157,-4.229753740999911],[28.38111288900018,-4.155990449999933],[28.297831754000185,-4.158369910999966],[28.197894392000137,-4.107211499999892],[28.108664604000126,-3.982289796999908],[28.002778589000116,-3.951356803999886],[27.91949745400018,-3.787173993999943],[27.926635837000106,-3.731256660999918],[28.036516561999974,-3.603755477999925],[27.922250602000076,-3.533499706999976],[27.891790598000114,-3.466058578999878],[27.736309480000102,-3.541523869999935],[27.374370517999978,-3.803124409999953],[27.216819572000134,-3.86809773799996],[27.087680596000098,-3.856613524999943],[26.93284052500013,-3.819617312999981],[26.422090594999986,-3.648423142999945],[26.31806950000015,-3.552096299999903],[26.213890490000097,-3.407880961999979],[26.069129490000137,-3.100974894999922],[25.985370473000103,-2.841491120999819],[25.918930479000096,-2.704309205999891],[25.865680584000188,-2.663088178999942],[25.721790463000048,-2.693039233999912],[25.523120582,-2.646985704999963],[25.325309511000114,-2.668214047999868],[25.189439531000062,-2.769161331999953],[25.103090506000115,-2.964961751999908],[24.999309469000025,-3.347063380999884],[24.897790539000027,-3.47751479599998],[24.75645052900012,-3.512516282999854],[24.385049573000174,-3.51102933299984],[24.194780538000145,-3.684962205999966],[24.021110522000072,-3.759959787999946],[23.783479543000112,-3.789270632999944],[23.679510584000127,-3.642001599999958],[23.587680464000073,-3.543984629999954],[23.407279443999983,-3.297283090999883],[23.346019465999973,-3.346306327999969],[23.254909520000183,-3.499136082999883],[23.104810589000067,-3.590537384999891],[22.987199579000162,-3.625116757999933],[22.751399543000048,-3.660692237999911],[22.655500513000163,-3.693409822999911],[22.62299951500006,-3.752714134999962],[22.659900509000067,-3.96098079199993],[22.69920744400008,-4.005889352999873],[22.323665492000146,-3.954423293999923],[22.19203155800011,-3.986691777999965],[21.824516452000125,-3.974353950999841],[21.562364551000087,-4.058487471999968],[21.471088475000045,-4.058466516999943],[21.389949473000115,-4.014787916999865],[21.162483563000023,-3.986583818999918],[21.030590460999974,-4.026124105999884],[20.821649564000097,-4.122798964999959],[20.51205055900016,-4.211816117999888],[20.451942590000158,-4.25051637099989],[20.348178484000186,-4.370933474999958],[20.302505494000172,-4.377009012999906],[20.182674453000175,-4.308453091999922],[19.982776456000067,-4.226907231999917],[19.816944524,-4.124414660999889],[19.61916346000004,-4.072474521999879],[19.38582954800006,-3.918319084999951],[19.209287556999982,-3.825475927999946],[19.056493508000187,-3.775019720999978],[18.795829563000098,-3.643061406999891],[18.64916654100017,-3.605009410999969],[18.599163460000113,-3.56473419799994],[18.49124545000018,-3.584253638999826],[18.368432464000023,-3.3907411429999],[18.316835479000076,-3.262852746999954],[18.293901586000118,-3.080183415999954],[18.298381546000087,-2.450757304999968],[18.28562345100005,-2.340236378999919],[18.186239560000047,-2.216512614999942],[18.076000434000036,-1.999500950999902],[17.924619575000065,-2.102150262999942],[17.695669566,-2.036214021999967],[17.60304048300003,-2.092700002999891],[17.603200578000042,-2.174580635999973],[17.735120502000143,-2.349831813999913],[17.69647054100011,-2.437088096999958],[17.626819440000077,-2.403562663999935],[17.421140444000173,-2.232089375999919],[17.317409530000077,-2.214921897999943],[17.074430562000032,-2.218594511999868],[16.96890055700004,-2.249633034999931],[16.854497469000137,-2.252821845999904],[16.687610592000055,-2.46380625199987],[16.69081449000015,-2.594095560999961],[16.80682757400001,-2.650783209999929],[17.00316846000004,-2.668925000999877],[17.100803550000023,-2.756425364999814],[17.037805501000037,-2.86539714699984],[17.127199504000032,-2.950620817999948],[17.04425051400011,-2.976401875999954],[16.86173256,-2.919770217999883],[16.805704567000078,-2.876246514999934],[16.75530451800006,-2.77598503899992],[16.62223258500012,-2.723178880999853],[16.55118757400004,-2.72590350299987],[16.47751953000011,-2.855052872999977],[16.627920545,-2.936496808999891],[16.50971056400016,-3.025162423999916],[16.27447546899998,-3.169298636999883],[16.22552448400012,-3.225248343999908],[16.321111540000175,-3.266760389999945],[16.658569477000185,-3.161607234999963],[16.921417578000103,-3.169799539999929],[17.12802646300014,-3.23189888099995],[17.282976504000032,-3.339255973999968],[17.278615568000134,-3.479449674999955],[17.21588557200016,-3.64811820999995],[17.17438559600015,-3.822765220999941],[17.09362445000005,-3.879338875999963],[16.736991569000168,-3.922283724999886],[16.521680592000052,-4.013585951999971],[16.442626505000078,-4.067537915999822],[16.393871489,-4.167506527999933],[16.39001447200019,-4.442782142999874],[16.473968453000055,-4.976019879999967],[16.545577566000077,-5.504245071999947],[16.62266743800012,-5.94128990899992],[16.678281534000178,-6.080448779999927],[16.75584951000002,-6.207529328999897],[16.765361461000055,-6.554915964999907],[16.784898504000125,-6.72137201299995],[16.93215949,-6.951825232999965],[16.93007457599998,-7.161048096999878],[16.99578450600012,-7.203561947999958],[17.10879552700004,-7.190128774999948],[17.37691148700003,-7.25412007999995],[17.451984506000144,-7.29046149699991],[17.579244595000034,-7.433938054999885],[17.768241592000038,-7.692319607999934],[18.053142482000055,-8.0557394839999],[18.164203537000105,-8.268382164999935],[18.2595465120001,-8.28831148099988],[18.256891461000066,-8.091732884999942],[18.18812146500005,-7.893609838999907],[18.141742551000107,-7.847619341999973],[17.865140584000073,-7.470273604999932],[17.727153503000068,-7.211547387999872],[17.673805539000114,-7.039888859999905],[17.64805046500004,-6.855740123999908],[17.594907523000188,-6.723070856999868],[17.413831592000122,-6.469012186999919],[17.31276159700019,-6.28536854399988],[17.28842759100013,-6.153487343999871],[17.36823856500007,-6.135902613999917],[17.445508480000058,-6.175020619999941],[17.598697484000127,-6.251610092999954],[17.957693559000177,-6.374184362999927],[18.35171358400015,-6.365429800999891],[18.53558957400014,-6.339163765999899],[18.973388447000048,-6.050236880999933],[19.166019502000154,-6.06774768199989],[19.263759534000144,-6.304371323999931],[19.20561946800018,-6.488990955999896],[19.206460508000134,-6.674738120999848],[19.16031058800013,-6.93808310199995],[19.197450465000088,-7.035049148999974],[19.503740463000042,-7.035636887999942],[19.569313600000157,-7.065963787999976],[19.530899505000093,-7.240709201999891],[19.59676550600011,-7.36584716099992],[19.688722528000028,-7.641695259999949],[19.792173486000024,-7.814100613999926],[19.884130508000112,-8.009493673999941],[19.99907456300008,-8.170406098999933],[20.102525521000075,-8.239368039999931],[20.205976479000128,-8.457748468999966],[20.274944455000025,-8.676128729999846],[20.297931489000177,-8.883014216999925],[20.343910587000096,-9.112888749999968],[20.424371493000024,-9.285295613999835],[20.52782245100002,-9.42321966299994],[20.826681555000164,-9.61861305799988],[20.973171574000105,-9.659225893999974],[21.15719944400007,-9.64653502199991],[21.303152518000047,-9.690952737999964],[21.34122647500004,-9.824204378999923],[21.290460473000167,-10.027255145999902],[21.315843558000097,-10.116088902999934],[21.48083344300005,-10.179543429999967],[21.602697598000077,-10.166470259999926],[21.810813549000102,-10.116088902999934],[21.956766455000093,-10.065326587999948],[22.051952521000032,-9.995528300999922],[22.280401460000178,-9.64653502199991],[22.37558752600006,-9.3102327819999],[22.527885534000177,-9.170635704999881],[22.591342576000045,-9.056420873999969],[22.635765489000107,-8.910478193999893],[22.69352954300001,-8.79917624199993],[22.788063497000167,-8.764535512999885],[22.991126501000167,-8.789916753999933],[23.149772458000143,-8.777226552999934],[23.321107444000063,-8.81529799499998],[23.453868576000104,-8.874845716999971],[23.85087758800006,-8.445231269999908],[23.965478489000077,-8.258806845999914],[24.009826468000085,-8.038415430999919],[24.124204578000047,-7.868302693999965],[24.396751548000054,-7.580638626999928],[24.87884945000019,-7.040001680999922],[24.99977349100004,-6.923636221999914],[25.113290444000086,-6.847905558999969],[25.45699859800004,-6.687111486999981],[25.729276509000044,-6.584140979999916],[26.061477483000033,-6.395669527999928],[26.320474604000026,-6.279853250999963],[26.624170570000103,-6.219814516999918],[26.80432549699998,-6.12357551599996],[26.95967652900009,-5.957470502999968],[27.26100544500008,-5.568894020999892],[27.441219549000152,-5.317711515999974],[27.686927497000056,-4.954997395999897],[27.852479473000074,-4.759696872999939],[28.019901451000067,-4.629340508999974],[28.140451491000192,-4.587892332999957],[28.372592491000034,-4.548929390999945],[28.580413816000032,-4.537378493999938]]]},"properties":{"objectid":678,"eco_name":"Southern Congolian forest-savanna","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Afrotropic","eco_biome_":"AF07","nnh":4,"eco_id":58,"shape_leng":47.4096339051,"shape_area":46.2098071313,"nnh_name":"Nature Imperiled","color":"#ABE600","color_bio":"#FEAA01","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":569544.2227124507,"percentage":2.656578217366405}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[73.36351132900018,-53.01210054099994],[73.39665263900014,-53.1362824279999],[73.55055259600016,-53.193785635999916],[73.74665862000006,-53.12489125399992],[73.53166163000014,-53.010722858999884],[73.36351132900018,-53.01210054099994]]],[[[69.31388861900012,-48.94010220499996],[69.19943255700014,-48.97454964799988],[69.20416263300018,-49.084276974999966],[69.29832459800014,-49.08343794599995],[69.31388861900012,-48.94010220499996]]],[[[69.07638554800008,-48.66204648099989],[68.96916155999997,-48.660383510999964],[68.95082061500011,-48.75232544599987],[68.79054253300018,-48.84426838599984],[68.85333254300014,-48.925942320999866],[68.73916649500012,-49.06955164699991],[68.84111055500017,-49.15622270499995],[68.75888056400015,-49.217884175999984],[68.8608246230001,-49.317052316999934],[68.80915857200011,-49.36455289699995],[68.9058225350002,-49.42177447399996],[68.82666048900006,-49.47316626899982],[68.82611063600012,-49.55066702299996],[68.7577666090001,-49.66372850299996],[68.79777561200012,-49.719835118999924],[69.00665264000014,-49.718172316999926],[69.10610962100003,-49.672891766999896],[69.17637662400017,-49.58622741499988],[69.37332150900016,-49.56761221299996],[69.44583150900019,-49.62344390299995],[69.69749463199997,-49.66400242399982],[69.77915951500017,-49.593727541999954],[69.85083048700005,-49.68428176799995],[70.0841524970001,-49.72066710699994],[70.31666548500004,-49.59816760299998],[70.316375639,-49.53649909199993],[70.15361064600017,-49.50539368099993],[70.04582255600008,-49.52455873499997],[70.00248761400013,-49.582893595999906],[69.8122105330001,-49.53400379899995],[69.76304664700012,-49.46455302599992],[69.89416459100016,-49.33649967299982],[70.04026753400018,-49.36483586999992],[70.12777762000019,-49.33927659799997],[70.30693057500014,-49.380110212999966],[70.4511105420001,-49.36927609999998],[70.56860353400003,-49.22344623999993],[70.52638254700008,-49.09260808399989],[70.30610663400006,-49.05094348699993],[70.22499059800015,-49.15399462799991],[70.07888748800013,-49.11788404799995],[69.98359664800012,-49.14732665599996],[69.85638450300007,-49.24677676399995],[69.69415260000005,-49.30955218999992],[69.6088865160001,-49.30594344499997],[69.43527249100015,-49.216778267999985],[69.49581950400005,-49.02955035499991],[69.21720856200017,-49.123438399999884],[69.10388154300006,-48.99371503699996],[69.13388054200016,-48.83621941199982],[69.07943756700013,-48.785658597999884],[69.07638554800008,-48.66204648099989]]],[[[37.85083050500003,-46.954811890999906],[37.89221950500013,-46.89369960299996],[37.78194450500018,-46.830093362999946],[37.65415954100007,-46.82897923999997],[37.58138249300015,-46.89786557599996],[37.609161461000156,-46.95175970499997],[37.85083050500003,-46.954811890999906]]],[[[51.81805460500016,-46.37925509799993],[51.7341614770001,-46.32425522799991],[51.650833625000075,-46.38369515999989],[51.724441487000036,-46.45175755499997],[51.81805460500016,-46.37925509799993]]]]},"properties":{"objectid":681,"eco_name":"Southern Indian Ocean Islands tundra","biome_num":11,"biome_name":"Tundra","realm":"Antarctica","eco_biome_":"AN11","nnh":1,"eco_id":133,"shape_leng":24.72254891,"shape_area":1.0110094289,"nnh_name":"Half Protected","color":"#69E7F5","color_bio":"#9ED7C2","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":8171.174299481553,"percentage":0.09562347110153653}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[34.59416666700014,-15.044166666999956],[34.57617839200009,-14.923300324999957],[34.49015323900011,-14.9007972039999],[34.44142644900006,-14.960638801999892],[34.46282610900005,-15.27032123999993],[34.52250000000015,-15.351162409999972],[34.60333333300008,-15.26833333299993],[34.58,-15.199166666999929],[34.5775,-15.151666666999972],[34.5766666670001,-15.144166666999979],[34.576666666,-15.135],[34.58583333300004,-15.099166666999963],[34.5891666660001,-15.089999999999861],[34.59,-15.0875],[34.59416666700014,-15.044166666999956]]],[[[34.361666667000065,-14.38916666699987],[34.23404439000018,-14.448497730999975],[34.331509814000015,-14.532456191999927],[34.427991932000054,-14.80880970999982],[34.55031240300019,-14.766649843999971],[34.51583333400015,-14.685833332999948],[34.54416666700007,-14.643333333999976],[34.515833333000046,-14.56],[34.361666667000065,-14.38916666699987]]],[[[34.03166666700014,-11.49499999999989],[34.0125000000001,-11.449166666999872],[33.90166666600015,-11.5],[33.74500000000012,-11.655],[33.7975,-11.798333333999835],[33.705,-11.895],[33.8216666670001,-11.961666666999918],[33.68750000000017,-12.11416666699995],[33.729166667000015,-12.14249999999987],[33.911666666000144,-11.86416666599996],[33.923333334000176,-11.724166666999963],[33.9591666660001,-11.668333333999954],[33.96583333300009,-11.570833332999939],[34.03166666700014,-11.49499999999989]]],[[[34.1225,-11.299999999999898],[34.04500000000013,-11.44],[34.1400000000001,-11.434166665999896],[34.1225,-11.299999999999898]]],[[[34.173333333000016,-10.790833332999966],[34.1175,-10.8325],[34.0925,-10.9725],[34.0375,-11.095],[34.054166667000175,-11.168333332999964],[34.15333333300009,-11.163333333999958],[34.21416666700014,-11.064999999999827],[34.225833333000026,-10.990833332999955],[34.21,-10.834166665999874],[34.173333333000016,-10.790833332999966]]],[[[34.82000000000011,-10.684999999999889],[34.85500000000019,-10.741666666999947],[34.779166667000084,-10.878333332999944],[34.788333333000026,-10.998333333999938],[34.845,-11.053333333999888],[34.87583333300006,-11.2],[34.975,-11.220833332999916],[34.99583333300018,-11.110833333999949],[34.968333333000146,-10.970833333999963],[34.9025,-10.824166666999929],[34.87916666600012,-10.71333333299998],[34.82000000000011,-10.684999999999889]]],[[[34.10833333300019,-10.574999999999818],[34.05416666600007,-10.697499999999877],[34.1275,-10.715833333999967],[34.10833333300019,-10.574999999999818]]],[[[33.79000000000019,-10.345833332999916],[33.7116666660001,-10.570833332999939],[33.70083333300016,-10.665833333999899],[33.76166666700004,-10.687499999999886],[33.83,-10.650833332999923],[33.915,-10.740833332999898],[33.98,-10.76],[33.995,-10.681666666999888],[33.96000000000015,-10.6025],[33.959166667000034,-10.46],[33.84583333299997,-10.43583333399988],[33.79000000000019,-10.345833332999916]]],[[[33.481666667000184,-10.151666665999869],[33.44333333300011,-10.048333332999903],[33.38750000000016,-10.125833332999889],[33.481666667000184,-10.151666665999869]]],[[[33.57666666600005,-10.01333333299982],[33.61333333300007,-10.145],[33.694166666,-10.090833332999978],[33.636666667000156,-10.014166665999937],[33.57666666600005,-10.01333333299982]]],[[[35.335833333000096,-9.21333333299998],[35.278333334000024,-9.109166666999897],[35.13416666700016,-9.063333332999889],[35.10083333300008,-8.954166666999981],[34.995,-8.984166665999851],[34.934166667000056,-8.95916666599993],[34.810000000000116,-8.965833332999864],[34.8075,-9.034166666999909],[34.7325,-9.1775],[34.62583333300012,-9.3],[34.57500000000016,-9.301666666999893],[34.545000000000186,-9.18333333299995],[34.46083333300015,-9.194166666999877],[34.375,-9.095],[34.30333333300007,-9.054999999999893],[34.2075,-9.117499999999836],[34.125000000000114,-9.109166665999908],[33.982500000000186,-8.939166666999938],[33.86083333300013,-8.950833332999878],[33.7225,-8.9191666669999],[33.685833333000176,-9.06083333399988],[33.60583333300019,-9.133333332999939],[33.68,-9.195],[33.750000000000114,-9.195833332999939],[33.81166666700011,-9.115],[33.895833334000145,-9.235],[33.9575,-9.263333332999878],[34.006666667,-9.405833332999975],[34.14916666600004,-9.509166665999942],[34.21666666600015,-9.519166666999922],[34.237500000000125,-9.590833332999978],[34.25250000000011,-9.640833332999875],[34.36166666600013,-9.724166666999963],[34.49166666700012,-9.901666665999926],[34.565833333000114,-10.03916666699996],[34.615,-10.044166665999967],[34.70833333300004,-9.785833332999971],[34.82250000000016,-9.821666665999942],[34.950833333000105,-9.795],[34.97083333300003,-9.889999999999873],[35.11583333400017,-9.778333332999921],[35.24166666600007,-9.8575],[35.326666667000154,-9.82583333399998],[35.34583333300003,-9.68333333299995],[35.35,-9.650833332999866],[35.29750000000013,-9.644166666999979],[35.31333333300006,-9.566666666999936],[35.22,-9.5508333329999],[35.213333333000094,-9.461666666999974],[35.30666666600007,-9.455833333999976],[35.335833333000096,-9.21333333299998]]],[[[33.55750000000012,-9.395833333999917],[33.5083333340001,-9.315833333999933],[33.535,-9.274166666999974],[33.5150000000001,-9.160833332999914],[33.42833333300018,-9.068333332999885],[33.60333333300014,-8.9925],[33.56500000000017,-8.875],[33.44000000000011,-8.859166666999954],[33.5150000000001,-8.9525],[33.42666666700012,-8.986666666999952],[33.275833333000094,-8.953333333999979],[33.21916666700014,-9.0425],[33.123333333000176,-9.141666665999935],[33.156666667000025,-9.202499999999816],[33.25916666600017,-9.230833332999964],[33.26083333300011,-9.309166665999953],[33.31916666600017,-9.333333332999871],[33.34833333300003,-9.486666666999895],[33.455,-9.564166665999892],[33.56000000000017,-9.4925],[33.55750000000012,-9.395833333999917]]],[[[33.40083333400008,-8.853333333999956],[33.5025,-8.828333332999932],[33.50416666700005,-8.76083333299988],[33.265833334000035,-8.817499999999825],[33.40083333400008,-8.853333333999956]]],[[[31.69000000000011,-8.3575],[31.693333333000112,-8.244166665999956],[31.628333333000114,-8.131666666999877],[31.535833333000028,-8.085833332999869],[31.498333333000062,-8.124166666999884],[31.49666666700017,-8.28],[31.563333334000163,-8.316666666999879],[31.631666666000115,-8.26166666599994],[31.69000000000011,-8.3575]]],[[[31.955833333000157,-8.295],[31.91750000000019,-8.137499999999875],[31.819166667000047,-7.9883333329999],[31.689166667000165,-7.851666665999915],[31.66500000000019,-7.928333332999955],[31.716666667000027,-8.0775],[31.955833333000157,-8.295]]],[[[31.11916666700006,-7.978333332999966],[31.120833334000054,-7.880833332999885],[31.17416666600002,-7.786666666999963],[31.2675,-7.773333332999869],[31.30416666600007,-7.720833332999916],[31.159166667000136,-7.496666665999953],[31.16416666700013,-7.626666666999881],[31.070000000000107,-7.765833332999819],[30.98083333400018,-7.805],[30.995833333000064,-7.88583333299988],[31.11916666700006,-7.978333332999966]]]]},"properties":{"objectid":687,"eco_name":"Southern Rift Montane forest-grassland","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Afrotropic","eco_biome_":"AF10","nnh":4,"eco_id":87,"shape_leng":57.6070477356,"shape_area":1.83636741831,"nnh_name":"Nature Imperiled","color":"#A80000","color_bio":"#D6C39D","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":22411.55021297698,"percentage":0.45894231201212415}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[43.40827127700004,17.808295217000023],[43.41082475000019,17.885816777000116],[43.34337559599999,17.88526182600009],[43.40827127700004,17.808295217000023]]],[[[41.985669103000134,20.142575519000047],[41.97145981500006,20.34789074300005],[41.98198188300006,20.476943456000186],[41.9801832390001,20.478472304000036],[41.97172961200005,20.478202507000162],[41.928112492000025,20.36938453900018],[41.86992635600012,20.331433149000134],[41.86210225400009,20.336469353000098],[41.83431320300019,20.402209793999987],[41.78961689700003,20.39672393000012],[41.78179279600005,20.44411820100015],[41.683586828000045,20.354905455000164],[41.62540069200014,20.5025741340001],[41.57099170800018,20.552666372000147],[41.339236417000166,20.55032813500003],[41.220795703000135,20.640710001000116],[41.207575669000164,20.69583844200008],[41.12744607500014,20.762478206000083],[41.130413838000095,20.855378173000076],[41.07582498900007,20.893689292000147],[41.02753139500015,21.095856888000128],[40.862505800000065,21.186868280000112],[40.78624329000007,21.169511364000186],[40.70206674700012,21.204135263000182],[40.61249427100017,21.33633560300018],[40.55907454200019,21.350724756000147],[40.512489660000085,21.43750933399997],[40.51482789700003,21.512692657000173],[40.579129423000154,21.59273231900005],[40.60233193200014,21.771337677000076],[40.56743823700009,21.882403950000025],[40.13729250200009,21.863248390000138],[39.98593660199998,21.780870491000087],[39.807870837000166,21.75128279500018],[39.839437040000064,21.604513438000026],[39.75094375100019,21.62834547200015],[39.68547310600019,21.44326499500005],[39.71721917399998,21.392183502000137],[39.65444649600005,21.150625601000115],[39.698153547000175,21.09306899],[39.668385987000136,21.010241429000132],[39.606422698000074,20.95933980200016],[39.687541547000194,20.890811462000045],[39.81272717600007,20.838740715000142],[39.83655921000019,20.620655119000105],[39.91309151600012,20.59889152600016],[40.03647850100003,20.469479083000124],[40.008329721000166,20.43890213400016],[40.104467247000116,20.316684268000074],[40.24449169000013,20.290244199000085],[40.31293009800004,20.217668910000043],[40.39216037000011,20.225762809000173],[40.488297897000166,20.285657657000172],[40.54135789700007,20.220097080000073],[40.56474027100012,20.131513858000062],[40.68102261100006,20.09967785800012],[40.7007177640001,20.14842111300004],[40.62751294900005,20.206966978000082],[40.69523189900019,20.254720979000012],[40.80207135900008,20.15930291],[40.77095481600003,20.001741687000106],[40.941106547,19.946343449000153],[41.05244261600012,19.749391921000097],[40.99371688700006,19.67232002200018],[41.13221248200006,19.643361852000112],[41.215219906000186,19.538950562000025],[41.13769834600009,19.49947032400013],[41.34427262000003,19.359445882000045],[41.34786990800012,19.28606120300003],[41.285726755000155,19.239386389000117],[41.27097787300016,19.166901032000055],[41.30245414500018,19.077598352000052],[41.423592825000185,19.00592238500019],[41.38357299300003,18.94234031700006],[41.40461712900003,18.876330079000127],[41.526834995000115,18.88559309600015],[41.575308454000094,18.828216349000172],[41.50093452100015,18.744849195000143],[41.40452719700005,18.70473943200011],[41.410552655000174,18.62757760100004],[41.48717489300009,18.55608149800014],[41.43272727700014,18.481803197000033],[41.43197824600003,18.477654855000026],[41.43212678000009,18.476139801000045],[41.43405542100004,18.474382128],[41.43488637100006,18.473663468999973],[41.43553132500011,18.472590687000036],[41.43720025900018,18.459930135000036],[41.436522735000096,18.457432810000057],[41.4356437400001,18.456436615000143],[41.47783940600016,18.292226535000168],[41.5830426230001,18.148508747],[41.661250008000025,18.005563946000166],[41.78257429200005,17.848152016000085],[41.838243285000146,17.828720969000017],[41.930601552999974,17.787190189000114],[41.98440917000005,17.834047785000052],[42.04265708000008,17.749868324000033],[42.15030592900007,17.759221274000083],[42.21047057400011,17.69806737500005],[42.32453365000015,17.710448978000045],[42.35034419400017,17.664763418000064],[42.570048569000164,17.482201043000146],[42.597656617999974,17.32564330600013],[42.64757012900009,17.346493346000045],[42.709234580999976,17.216390487000126],[42.74988393700016,17.256770046999975],[42.864547498000036,17.10802218000009],[42.83319020000005,17.06932229100005],[42.95306982800014,16.913199984000187],[42.927798014000075,16.830746850000082],[42.99893525300013,16.81427455900007],[43.1059255350001,16.62571576700003],[43.08958650300019,16.536211180000123],[43.13140539,16.482064995000087],[43.14489522100018,16.345547909000118],[43.1135980360001,16.2337753970001],[43.13904962700002,16.194551737000097],[43.11206996600015,16.061362142],[43.14345630500014,15.853079156000092],[43.1148578640001,15.77825556200014],[43.162072272000046,15.710536612000055],[43.12690878000012,15.583192610000026],[43.16369105200005,15.535078881000118],[43.16908532700006,15.413960381000038],[43.29622208000012,15.214679477000175],[43.30215760600004,15.080230831000108],[43.378959709000014,15.089853577000099],[43.55882411800019,14.985262423000108],[43.740875942000116,14.84844649900009],[43.61658963400009,14.832978159000106],[43.52240157500012,14.974171721000118],[43.43078969900017,14.872458397000173],[43.46370488600013,14.63494744500008],[43.43312761500016,14.59664983100015],[43.485288615000115,14.524690562000103],[43.49479238800018,14.450705398000082],[43.64752631200008,14.405919160999986],[43.61074404100003,14.358315983000182],[43.50174620900009,14.299320457000135],[43.61317221000013,14.122154014000046],[43.63382757600016,13.993310206000103],[43.58223553200014,13.920166283000128],[43.571893068000065,13.819449456000086],[43.623154684999975,13.631483906000142],[43.698967533000086,13.530669904000149],[43.726666652000176,13.353233665000175],[43.60525817600012,13.264200781999989],[43.571083353000176,13.139022315000034],[43.66191546500005,12.914730969],[43.82061676500007,12.802068224000152],[44.04877476800016,12.79892059600013],[44.15775836500006,12.663495127000147],[44.24395669300009,12.729823622000026],[44.19458391300003,12.814180030000045],[44.18882825200012,12.95816149000018],[44.42984656000016,13.040989050000178],[44.45448798400014,13.077861254000084],[44.56483479900004,13.04908294900008],[44.66429981800002,13.147558713000024],[44.646673105000104,13.215547459999982],[44.77824392100007,13.300713257000098],[44.995430195000154,13.243156646000159],[44.9904839240001,13.31878963000014],[45.135904299000174,13.285964376000038],[45.235729046000074,13.30404074900008],[45.31837674200011,13.36420539400018],[45.39356006500009,13.28884220600014],[45.54770386300015,13.322027190000142],[45.601573254000186,13.403056106000179],[45.70175773000011,13.37715563100005],[45.71857505200012,13.509625769000024],[45.80225798100014,13.497025111000028],[45.97926553500008,13.552245417000165],[46.110886536000066,13.646044291000067],[46.26582411800007,13.634197351000182],[46.27427812399998,13.53787300800019],[46.46739594700006,13.568628846000138],[46.61146129800011,13.622181935000071],[46.661243042000194,13.72777957400018],[46.8596157500001,13.745882026000174],[46.92900848400012,13.724762498000132],[47.069302490000155,13.72702530500004],[47.20205380800013,13.76700155399999],[47.30991425400015,13.858268085000077],[47.570137007000085,13.919363862000068],[47.65008950600014,13.965374262000068],[47.74986984000003,14.060136581000165],[47.60580749200017,14.07588400300017],[47.50226570100017,14.06376225400004],[47.269187277000185,13.953887658000042],[47.17573759400017,13.955566283999985],[47.05171259300005,14.020753246000027],[46.799727672000074,14.082857178000097],[46.46199244100006,14.089273237999976],[46.41190685700019,14.068284007000159],[46.32809341700016,14.004064769000081],[46.11304346999998,13.987023075000138],[45.992128594000064,13.939144030000136],[45.43543325900009,13.797941423000168],[45.063762028999975,13.88477291099997],[44.93643466900011,13.90092079100009],[44.816914769000164,13.949484181000116],[44.74083212400018,13.883293666000043],[44.85666480300017,13.819981807000033],[44.85583333300008,13.6925],[44.78416666700019,13.700833333000048],[44.79083333300008,13.797500000000127],[44.71166666700009,13.873333333000062],[44.64833333300015,13.919166667000184],[44.47666666700013,13.913333332999969],[44.560000000000116,13.689166667],[44.48333333300019,13.653333333000091],[44.31916666700005,13.673333333000187],[44.231666667000184,13.74250000000012],[44.15666666700014,13.7125],[44.00833333300005,13.705],[43.825833333,13.895833333000098],[43.921999401000164,13.92196492700009],[44.03000000100002,14.167500000000189],[44.128333333000114,14.244166667000115],[44.125833333,14.36083333300013],[44.09500000000014,14.435000000000173],[44.01666666700015,14.4475],[43.920000000000186,14.405],[43.9425,14.28],[43.912500000000136,14.223333332999971],[43.81833333300011,14.253333333000114],[43.839166667000086,14.322500000000161],[43.77333333300004,14.37583333300006],[43.99583333300012,14.63333333300011],[43.93916666700005,14.66],[43.82750000000016,14.8175],[43.98666666700018,14.83583333300004],[44.06750000000011,14.90416666800013],[44.09583333300009,14.983333334000065],[44.075,15.041666668000062],[43.97666666700002,15.005833333],[43.92833333300001,14.993333333000123],[43.88000000000011,14.88916666700004],[43.7825,14.891666667000152],[43.81083333300006,15.019166667000093],[43.73083333300008,14.925833334000117],[43.70833333300004,15.024166667000088],[43.62916666700005,15.045833334],[43.665833333000194,15.18],[43.66,15.182500000000118],[43.62166666700017,15.195000000000164],[43.71583333300009,15.224166668000066],[43.73916666700018,15.141666667000095],[43.84166666700003,15.1175],[43.845833333000144,15.11083333300013],[43.875000000000114,15.101666667000188],[43.896666667000034,15.116666667000175],[43.78,15.19583333300011],[43.790000000000134,15.285000000000139],[43.79916666700018,15.361423816000183],[43.719166667000025,15.345],[43.659166667000136,15.391666667000038],[43.60333333300008,15.361666667000122],[43.50416666700016,15.487500000000125],[43.62333333300006,15.559166667000113],[43.5475,15.645],[43.655,15.693333333000112],[43.693333333000055,15.66583333300008],[43.651666667000086,15.7375],[43.80166666700012,15.874166667000054],[43.76666666699998,16.0375],[43.83250000000015,16.087500000000148],[43.89624390000017,16.200833333000105],[43.875000000000114,16.31750000000011],[43.785,16.42666666700012],[43.80666666700006,16.46416666800002],[43.74166666700006,16.58833333300015],[43.58416666700015,16.60250000000019],[43.489166667,16.56750000000011],[43.48000000000019,16.63285480800016],[43.40434963100006,16.53737330100006],[43.328806579000116,16.620650523000165],[43.339778308000064,16.82083961000012],[43.279164002000186,16.833160322000083],[43.141118068000026,17.03280981600011],[43.21378328900005,17.11959439400016],[43.18779288200011,17.17912951300019],[43.249126646000036,17.257460463000086],[43.23977369700003,17.310160735000125],[43.10604450800008,17.220858056],[43.06890250800018,17.251614870000026],[42.98418637100019,17.415831076000188],[42.79775691100008,17.60432897700008],[42.74181907999997,17.7069416220001],[42.92141369200016,17.754245962000027],[42.903157455000155,17.821874980000132],[42.80836891100006,17.83338630200012],[42.71250118100011,17.88069064100017],[42.64909897700011,17.812522030000082],[42.55745806000016,17.795794640000167],[42.563843247000136,17.95281626900004],[42.44603205900012,17.96234908300005],[42.37084873600014,18.078811288000054],[42.32921012500009,18.026470745000097],[42.24584297100006,18.141404103000127],[42.133157918999984,18.216497493000077],[42.021821850000094,18.27918024000013],[42.15896846200013,18.349777021000023],[42.19880842800012,18.445824615000163],[42.135046495000154,18.56246668400013],[42.123535173000164,18.681896652000148],[42.071734223000135,18.796740077000152],[42.116340597000146,18.887481672000092],[42.07407246000008,18.96572269],[42.007702493000124,18.98748628300018],[42.05824439200012,19.112492048000092],[41.990525442000035,19.145856896000055],[41.98423018799997,19.304137576000073],[41.83746083000011,19.476627544000166],[41.815247576,19.57087649500005],[41.76938215100017,19.6197996140001],[41.77037140600004,19.623396902000025],[41.77082106700004,19.62447608900004],[41.77199018500016,19.628253241000152],[41.70418130300004,19.71566734400011],[41.665600387000154,19.651096021000114],[41.47080723200003,19.902636398000027],[41.36252885800013,19.88599894000015],[41.30542190799997,19.81369344700005],[41.27457516200019,19.97539155100003],[41.229698991000134,20.01199395800012],[41.23320634700008,20.129085689000135],[41.23401573700005,20.131963519000067],[41.16099078700006,20.137539317000062],[41.17304170300008,20.287456302000066],[41.11323678600013,20.348430336000035],[41.11197773600003,20.350948438000046],[40.93750925900008,20.504912372000092],[40.83417715600007,20.475594473],[40.83399729100017,20.481799795000086],[40.85000522400014,20.508329796000055],[40.77491183300015,20.56246898300003],[40.587493118000054,20.484587694000084],[40.59100047400017,20.59835193200007],[40.537850541000125,20.762478206000083],[40.58020861,20.851780885000153],[40.37912020000016,20.754474240000036],[40.320844132000104,20.806275189000132],[40.42111854000018,20.879390072000035],[40.25168626600015,20.962487429000078],[40.22650524900007,21.02346146400015],[40.04834955200005,20.94000437800014],[40.132616027000154,21.170860347000144],[40.111661824,21.280038043000047],[40.22299789300013,21.337504722],[40.22578579100019,21.404144486000177],[40.13810189200012,21.488141165],[40.17549811400005,21.572223229000087],[40.35451015500007,21.587825195000107],[40.295842979000156,21.50666719900005],[40.24458162200011,21.372128621000172],[40.29674230100011,21.33309804400011],[40.266704944000026,21.149006821000114],[40.477955693000126,20.957721022000158],[40.626433763000136,20.969142412000167],[40.65503220400018,20.923456852000186],[40.800002918000075,20.825790478000044],[40.82635305399998,20.736487799000145],[40.900547123000194,20.716432917000077],[40.940566954000076,20.59655328800011],[41.011973124000065,20.562289118000137],[41.01476102200019,20.45374094700003],[41.10900997300007,20.39105820100002],[41.19471536400005,20.296719318000157],[41.22322387300011,20.18826107900003],[41.311717162000036,20.071169350000105],[41.443108113000164,20.0226059580001],[41.52872357200016,19.934112670000104],[41.57162123300009,19.82277660000011],[41.677201642,19.83419799000012],[41.72864286300006,19.777091040000187],[41.8485224910001,19.848407278000025],[41.88278666100007,19.6742985300001],[41.89420805100008,19.50864340900017],[41.96273639100019,19.47437923900003],[42.046643138000036,19.320685102000027],[42.0950266640001,19.32581123700004],[42.12749219000011,19.22670594800013],[42.09079985100004,19.191632388000187],[42.122725783000135,18.979212521000022],[42.17623544600008,18.86652746900012],[42.25420666600007,18.903309740000168],[42.30079154800018,18.824978790000102],[42.27668971700007,18.7716489930001],[42.33001951500012,18.616695804000187],[42.405292770000074,18.441687734000084],[42.36248504100013,18.414977869000154],[42.42750602500007,18.354183699000146],[42.45835277100008,18.205795561000116],[42.61438514600013,18.153544950000082],[42.78885362300008,17.980875117000096],[42.89065687800013,18.052820881000173],[42.970246879,17.98609118500019],[43.05856030400014,18.03798206700003],[43.160183696000104,17.921429930000045],[43.31261878300006,17.873406133000174],[43.22664359500004,17.92169972700009],[43.2025417640001,18.057497356000113],[43.221378790000074,18.065861051000184],[43.190765143000135,18.133310204000054],[43.18985093200007,18.169193154000027],[43.21661986800018,18.220937456000172],[43.293357485000115,18.226291244000095],[43.39388971300008,18.038908689000152],[43.44788022400019,18.044774076000067],[43.449315733,18.093380304999982],[43.35335807100006,18.169912611000143],[43.209106815000155,18.358230648000074],[43.16180247500006,18.333679156000073],[43.12915708500009,18.44510515700017],[42.92662976000008,18.43503275100005],[42.831661352000026,18.553203667000105],[42.873839556000064,18.82057211200015],[42.86214836900007,18.95223285900005],[42.88723945500004,19.15053337000012],[42.863947014000075,19.284802152000054],[42.773025555000174,19.301979203000087],[42.74100969000017,19.43561845900018],[42.57913172200006,19.57087649500005],[42.60233423000011,19.773493752000036],[42.550893009000106,19.989241111000183],[42.490368636000085,20.03007033100016],[42.45043873700007,19.924399990999973],[42.37048900700012,19.94445487300004],[42.316169955000134,20.03007033100016],[42.19494134300015,20.122700502000043],[42.012468900000044,20.18241548600014],[41.985669103000134,20.142575519000047]],[[43.73833333300013,16.23],[43.710833333000096,16.120000000000175],[43.665,16.134166666999988],[43.61083333300013,16.233333333000076],[43.73833333300013,16.23]],[[43.72083333300009,14.77166666700009],[43.84333333300003,14.730833333000135],[43.90666666800013,14.583333333000041],[43.78166666800007,14.525833333000094],[43.656666668000184,14.498333333000062],[43.585,14.554166667000118],[43.56166666700011,14.641666667000038],[43.595833334000076,14.7375],[43.72083333300009,14.77166666700009]],[[44.68583333300012,13.648333333000096],[44.5833333330001,13.665833333000137],[44.64892141100012,13.783559264000075],[44.716666667000084,13.780833333000032],[44.7225,13.678333333000182],[44.68583333300012,13.648333333000096]],[[44.132500000000164,13.6075],[44.10833333300013,13.4725],[44.1525,13.40416666700014],[44.38333333300005,13.325833334000095],[44.14666666699998,13.191666667],[44.1391666670001,13.127500000000111],[44.050833333000185,13.125],[44.05416666700012,13.245833333000064],[44.086666667000145,13.330833333000044],[43.975833333000026,13.419166667000127],[43.96333333300015,13.565],[44.03750000000019,13.564166667000109],[44.132500000000164,13.6075]],[[43.889166667000154,13.43833333300006],[43.83416666700009,13.4725],[43.8675,13.560833333],[43.96083333300004,13.480833334000124],[43.889166667000154,13.43833333300006]]]]},"properties":{"objectid":691,"eco_name":"Southwest Arabian Escarpment shrublands and woodlands","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Afrotropic","eco_biome_":"AF13","nnh":3,"eco_id":108,"shape_leng":132.855114489,"shape_area":8.54518244624,"nnh_name":"Nature Could Recover","color":"#B85E46","color_bio":"#CC6767","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":100864.35130304415,"percentage":0.3823200216918231}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[44.14503126800014,15.929161801000078],[44.14997753900019,16.02835702300007],[44.21832601500017,16.02916641300004],[44.156632523000155,16.15165407600017],[44.06670031800002,16.164964042000065],[44.00466843200013,16.22584814400011],[44.02335299500004,16.37162824799998],[43.92267207600014,16.561963274999982],[43.996815776000176,16.74031228800004],[44.18145668200003,16.881658086000016],[44.21081024900002,17.01134726000015],[44.26220660700017,17.07916189900004],[44.22865620700014,17.192662189000032],[44.1208666230001,17.237634002],[44.04662744000012,17.303307126000163],[43.88815533700017,17.38754004500015],[43.9202780600001,17.461779229000115],[44.07303945700005,17.52888002900005],[44.07303945700005,17.570996489000095],[43.93241331100012,17.65023254],[43.848180392000074,17.63809728900003],[43.80106706400011,17.743745358000012],[43.7118372760001,17.854390295000087],[43.54908753200016,17.941756437000095],[43.44788022400019,18.044774076000067],[43.39388971300008,18.038908689000152],[43.293357485000115,18.226291244000095],[43.21661986800018,18.220937456000172],[43.18985093200007,18.169193154000027],[43.19003167400007,18.158311357000173],[43.1899612740001,18.15165637400014],[43.190765143000135,18.133310204000054],[43.221378790000074,18.065861051000184],[43.23833478100016,18.054467149000118],[43.26252654400014,18.04670549100007],[43.273318409000126,18.045806169000116],[43.2838396410001,18.034204915000146],[43.283672503000105,18.02413250800015],[43.28420020600015,18.020805016000168],[43.285818985000105,17.98914888000013],[43.291779672000075,17.967475219],[43.32077379600008,17.89579925200013],[43.32251132500005,17.892471759999978],[43.322947397000064,17.891662370000176],[43.34337559599999,17.88526182600009],[43.41082475000019,17.885816777000116],[43.40827127700004,17.808295217000023],[43.40082535000005,17.72478229400008],[43.43060905700014,17.549230247000025],[43.37075526000001,17.46131103199997],[43.39939344099997,17.292059385000016],[43.45294683800017,17.141708936999976],[43.53342012600007,17.019137523000154],[43.63336737600008,16.944964636000122],[43.66057364800014,16.88253340200015],[43.620007058000056,16.774974186000065],[43.5241393280001,16.72497188000017],[43.48000000000019,16.63285480800016],[43.489166667,16.56750000000011],[43.58416666700015,16.60250000000019],[43.74166666700006,16.58833333300015],[43.80666666700006,16.46416666800002],[43.785,16.42666666700012],[43.875000000000114,16.31750000000011],[43.89624390000017,16.200833333000105],[43.94252294400019,16.085460686000147],[43.876849820000075,15.922705553000014],[43.80253978000013,15.661301335000076],[43.785407662000125,15.487124789000063],[43.91822449800003,15.395799043000181],[44.04662155700004,15.191956311000126],[44.097335773000054,15.155095598000173],[44.15481086199998,15.04653154100015],[44.18861330300001,14.82587767400014],[44.24693404300007,14.610090937000109],[44.28675921000013,14.55529424000008],[44.39217021800016,14.589116206000028],[44.50923970000002,14.687625891000039],[44.584906559000046,14.640512563000073],[44.52922717200005,14.546285908000073],[44.39077847800013,14.498565395000071],[44.32462233300009,14.439984381000045],[44.36199298000014,14.317267258000129],[44.47309490200007,14.232930798000154],[44.50015079900004,14.072495954000033],[44.47666666700013,13.913333332999969],[44.64833333300015,13.919166667000184],[44.71166666700009,13.873333333000062],[44.74083212400018,13.883293666000043],[44.816914769000164,13.949484181000116],[44.93643466900011,13.90092079100009],[45.063762028999975,13.88477291099997],[45.43543325900009,13.797941423000168],[45.992128594000064,13.939144030000136],[46.11304346999998,13.987023075000138],[46.32809341700016,14.004064769000081],[46.41190685700019,14.068284007000159],[46.34327298700009,14.142021339000166],[46.176568702000054,14.170166218000134],[46.136877206000065,14.137691357000165],[45.9001715550001,14.142021339000166],[45.822953553000104,14.219961004000083],[45.8057739730001,14.34127655900005],[45.70705253200015,14.334380257000191],[45.68302918400019,14.421131237999987],[45.57092022400019,14.433142912000164],[45.51219648300014,14.390434737000078],[45.50952722200003,14.270317993000106],[45.46948830700018,14.188905534000071],[45.38941047800006,14.09948529200011],[45.350706194000054,13.956679830000098],[45.2999902360001,14.156874402000142],[45.328017476000014,14.451827739000123],[45.2732976260001,14.533240198000158],[45.17987349300006,14.551925024000184],[45.09712640300012,14.47318182700019],[45.085114728000065,14.365076757],[45.0199816870001,14.390871442000105],[44.99920734800014,14.483321748000094],[44.93670446500005,14.59420815599998],[44.89245782100011,14.595017546000179],[44.80162629400019,14.674157886000103],[44.79829880200003,14.770835006000084],[44.72248595400009,14.830819787],[44.72329534400012,14.832528498000102],[44.72833154700015,14.839992871000163],[44.72329534400012,14.832528498000102],[44.72248595400009,14.830819787],[44.705039106000186,14.867512126000065],[44.74829649700007,14.969135517000154],[44.85081921000011,14.934961279000163],[44.83750924400016,14.98163609400018],[44.83912802300006,14.980826704000151],[44.83750924400016,14.98163609400018],[44.8183536840001,14.989999789000024],[44.74919581900019,15.06833073900009],[44.734177141000146,15.131643011000108],[44.85585541300014,15.032537721000097],[44.929959550000035,15.07912260300003],[44.991653042,15.128315519000125],[44.90163090600015,15.188300300000037],[44.90414900700006,15.186681520000036],[44.90163090600015,15.188300300000037],[44.80162629400019,15.199991486000158],[44.78247073400013,15.26582186000013],[44.74748710700004,15.342534031000184],[44.78750693800009,15.384172641000134],[44.75786546300009,15.545052685000087],[44.69082981800011,15.71413390000015],[44.68336544500005,15.829966580000189],[44.49333869700007,15.935007395000014],[44.53164981600008,15.850021461000154],[44.387488492000045,15.850021461000154],[44.30753876200009,16.019183938000026],[44.24413655800015,15.947507971000164],[44.14503126800014,15.929161801000078]],[[44.32912249100008,15.284977420000075],[44.30753876200009,15.437502439000184],[44.51833985000019,15.465021692999983],[44.573288427000136,15.353325895000125],[44.58417022300006,15.31915165800001],[44.40250717000009,15.227510741000117],[44.366624220000176,15.291632403000108],[44.32912249100008,15.284977420000075]],[[44.59667080000008,15.688323357000172],[44.60665327400005,15.642457933000117],[44.50080307000013,15.501624101000175],[44.42912710300004,15.540834542000027],[44.53164981600008,15.65082162800013],[44.59667080000008,15.688323357000172]]]},"properties":{"objectid":692,"eco_name":"Southwest Arabian highland xeric scrub","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Afrotropic","eco_biome_":"AF13","nnh":4,"eco_id":109,"shape_leng":36.6660618278,"shape_area":2.74053458963,"nnh_name":"Nature Imperiled","color":"#D55063","color_bio":"#CC6767","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":32710.180728617317,"percentage":0.123985896346423}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[113.81855455600032,-26.268409032999898],[113.8832200080002,-26.340309991999902],[113.88917000800006,-26.47974999199988],[113.8649800080002,-26.535129991999952],[113.69203000800007,-26.659989991999964],[113.59144000800018,-26.579019991999928],[113.5603600080002,-26.35304999199991],[113.47895000800008,-26.269419991999882],[113.4457600080002,-26.170199991999823],[113.38719000800018,-26.11085999199986],[113.35604000800015,-26.256599991999906],[113.27639000800013,-26.29215999199988],[113.32851000800008,-26.434229991999928],[113.5432000080001,-26.627699991999975],[113.75679000800017,-26.89390999199992],[113.96446000800029,-27.229439991999925],[114.10154000800014,-27.496989991999953],[114.16272000900005,-27.706909991999964],[114.10456000900001,-27.84980999199996],[114.17441000900021,-28.11024999199998],[114.2389000090003,-28.187559991999876],[114.32313000900001,-28.232429991999936],[114.43566000900034,-28.397419991999982],[114.53123000900007,-28.495519991999913],[114.60206000900018,-28.624559991999945],[114.6028600090001,-28.77576999199988],[114.63444000900006,-28.873279991999937],[114.8721800080001,-29.11700000099995],[114.9265700090001,-29.3123699919999],[114.99253000900012,-29.477239991999966],[114.96034000900022,-29.66352999099996],[114.98286000900009,-29.918779990999894],[114.95582000900015,-30.04383999099997],[114.99356936900017,-30.11018927399988],[115.05394720700019,-30.099390056999937],[115.22188567800004,-30.300115514999902],[115.22817227300015,-30.40695946699998],[115.3186264200001,-30.483755135999957],[115.48371118800003,-30.66854290799995],[115.54093175900005,-30.806779769999935],[115.61782851200019,-30.788047724999956],[115.61281579800004,-30.61303526399996],[115.64439394900023,-30.518735834999973],[115.59802241000011,-30.36663631099998],[115.69149772900016,-30.326675419999958],[115.78701018700019,-30.244747177999955],[115.92464455800018,-30.270496383999955],[115.98222353900019,-30.32394979299994],[116.01548762400012,-30.561963991999903],[115.9705275990002,-30.705821924999952],[115.99727643100005,-30.793155656999943],[116.07349391500009,-30.747604370999966],[116.16333769200003,-30.899108947999935],[116.19887545100028,-30.99859995999998],[116.29517362900003,-31.054731552999954],[116.52371208700004,-31.247262863999936],[116.4339600090002,-31.34741570999995],[116.39625552600023,-31.574832836999917],[116.50502010800005,-31.61257352899986],[116.56144707900012,-31.717515962999983],[116.56410984300021,-31.784772689999954],[116.67981715500002,-31.861803049999935],[116.698227,-31.974670405999916],[116.76577005200022,-32.02296072899992],[116.71780394000007,-32.09218602999988],[116.7239762060002,-32.19082644599996],[116.77658103100009,-32.24536128699998],[116.7555771550002,-32.39232639199997],[116.86177067100004,-32.54631804699994],[116.80040742800031,-32.601909510999974],[116.92565921400012,-32.66031645599992],[117.01081851100002,-32.7582321729999],[116.94540412700019,-32.78565591599994],[116.98107147200017,-32.93461993699992],[116.936767583,-32.97113033499994],[117.02757259600003,-33.066688556999964],[116.9983596510001,-33.14569855599996],[117.06864174200018,-33.234085053999934],[117.00376128500011,-33.30278397099994],[117.09172064200015,-33.419101652999984],[117.12384026200027,-33.602653430999965],[117.31523901000014,-33.68215946999993],[117.41687780000007,-33.7055548699999],[117.47726438300003,-33.79593659699992],[117.45220953400008,-33.852001135999956],[117.47112279600003,-34.008659408999904],[117.3975982500001,-34.09538645899988],[117.16574106100018,-34.14398959499994],[117.19399260100022,-34.23859412499985],[117.4712600920002,-34.345771843999955],[117.55818948000012,-34.356441670999914],[117.68238833000021,-34.31275552799991],[117.81105037600003,-34.32006840299988],[117.6928863280001,-34.16554634099998],[117.85638423500006,-34.02486045499995],[117.92203498900017,-33.91607290699989],[117.92329411800029,-33.84963995399988],[117.85061647900011,-33.80989078999994],[117.85377511500019,-33.72763816899993],[117.9745787930002,-33.73889539899983],[117.96903232000034,-33.6388892359999],[118.12525171600032,-33.48374171699987],[117.996505683,-33.42329025799995],[117.91975410400016,-33.42034150499995],[117.87724310300007,-33.30765536599995],[117.87815857400005,-33.2090759699999],[117.99720004000005,-33.01256560299993],[117.98918157600008,-32.85353089199998],[118.02938084900018,-32.68629448899998],[117.98062901700018,-32.512882300999934],[117.97124480600007,-32.37298967699991],[118.03479773600009,-32.314739137999936],[118.13145449100011,-32.30599597499997],[118.1905593140001,-32.21583167499989],[118.19461816600017,-32.147846225999956],[118.32438662400023,-32.21010582899987],[118.41854858900001,-32.1437033869999],[118.57127357000002,-32.072349584999984],[118.68181612100011,-32.13290028599994],[118.8674316910002,-32.150917019999895],[119.12060540000027,-32.156223267999906],[119.28466036700013,-31.976770408999982],[119.38887022300003,-32.02354042299993],[119.4703445020001,-31.95891376999998],[119.60707094400016,-31.93375012299998],[119.69258110900012,-31.84426877999988],[119.59372712100003,-31.723148267999818],[119.57691956200017,-31.61826132199991],[119.48178864900012,-31.568731315999912],[119.41914364500008,-31.45377921299996],[119.322929455,-31.477186179999933],[119.30303953400016,-31.423667895999984],[119.18314361700027,-31.27423281199998],[119.25889590600025,-31.226266867999925],[119.03490446300009,-30.99874882299997],[118.94836433000012,-30.938796924999963],[118.85911566900006,-30.922031441999934],[118.79491431300005,-30.86025228999995],[118.60629265800003,-30.750501660999873],[118.41850282300015,-30.536062235999964],[118.42758176500013,-30.416740478999884],[118.33728788100018,-30.34699047199996],[118.2169113460003,-30.290462413999933],[118.16527546900033,-30.296249446999923],[117.98262793200013,-30.249385891999964],[117.95123284300007,-30.17032057299997],[117.88108067200005,-30.16361421099998],[117.8321151020001,-30.081182552999962],[117.74617008400014,-30.008443892999935],[117.68519593000008,-30.000022930999876],[117.67452995800011,-29.862417225999877],[117.76216895800007,-29.837011342999915],[118.14265438900009,-29.881694764999907],[118.36967471700007,-29.868492094999965],[118.53728478400012,-29.837802929999953],[118.587081839,-29.758810029999893],[118.65184025500002,-29.732875750999938],[118.7579345290003,-29.7454702309999],[118.88595603100009,-29.69451513299998],[119.02079771900003,-29.669557512999972],[119.11207580600012,-29.69329640399991],[119.18055729600007,-29.653869607999923],[119.18103020400008,-29.50518218899998],[119.04685973800031,-29.518102557999953],[119.01840217100005,-29.445657767999933],[119.13504792100002,-29.44643024499993],[119.15276340900016,-29.37062649199993],[119.02716830100007,-29.34140583599992],[118.91584019800007,-29.35326002699992],[118.87185666400012,-29.18347166899997],[118.76628122900013,-29.279262572999926],[118.6375122300002,-29.26978297699992],[118.64430995300017,-29.34321967999989],[118.58007808800005,-29.429801889999965],[118.47242729400011,-29.397384711999962],[118.3534927820001,-29.424217194999983],[118.3163299370002,-29.353355411999928],[118.14575200400009,-29.36184125099993],[118.05692294200003,-29.409585912999887],[117.80599960600011,-29.320396427999924],[117.66521447800005,-29.384843875999877],[117.69107063800004,-29.211479127999894],[117.68672948200003,-29.11109544399983],[117.43293014800008,-29.009630158999983],[117.35202030700009,-28.796478192999814],[117.4148406600001,-28.71356960399993],[117.28690331300015,-28.53654095899992],[117.22636417800015,-28.396760988999972],[117.32261659000017,-28.34953114299998],[117.38877864000006,-28.247058856999956],[117.34691623100002,-28.142616151999903],[117.09548193400008,-28.13242543399997],[117.02073664700015,-28.08901974899993],[116.97604366900009,-28.142198564999944],[116.8328552810002,-28.00154872099995],[116.62958524500027,-28.110776822999867],[116.4625548690002,-28.04687688099989],[116.2720642170002,-27.818662634999953],[116.14886482500003,-27.726276459999895],[115.97065734900013,-27.671665175999976],[115.7890778340003,-27.52440267999998],[115.56908422400011,-27.500040007999928],[115.42361445000029,-27.344964907999838],[115.29364013300017,-27.253089861999968],[115.34996031900005,-27.141332605999878],[115.40568539100002,-26.87237744899994],[115.39295193800012,-26.760417853999968],[115.23945615700029,-26.712932527999953],[115.07688897800006,-26.53042027399988],[114.9550018560002,-26.485010139999815],[114.8976211910001,-26.52432629499998],[114.86862181700019,-26.63623811399998],[114.67826846100013,-26.775199841999893],[114.6649551490001,-26.913070750999907],[114.56906131500011,-26.90903285299993],[114.52565009700004,-26.863054257999977],[114.65457164700001,-26.710357606999878],[114.70713037100006,-26.703630459999886],[114.7290572620002,-26.612203509999972],[114.66642768100007,-26.553218883999932],[114.48455044100012,-26.745767627999953],[114.37615969200021,-26.646747511999934],[114.26884467700006,-26.74070546099989],[114.19926448800027,-26.597902305999924],[114.13543696500017,-26.590347360999942],[114.0836029410001,-26.506048214999964],[114.02602379200005,-26.491256668999824],[113.96569068500003,-26.372762709999904],[113.9157791340001,-26.334589008999956],[113.87840271900018,-26.218109051999875],[113.81855455600032,-26.268409032999898]]],[[[112.99220000800017,-25.49953999199988],[112.92150000800007,-25.586979991999954],[112.98056000800034,-25.75577999199993],[112.96693000800008,-25.77821999199989],[113.06075000800024,-25.941829991999953],[113.15607000800003,-26.05460999199994],[113.11543000800009,-25.837279991999935],[113.07676000800029,-25.76802999199998],[112.99220000800017,-25.49953999199988]]]]},"properties":{"objectid":693,"eco_name":"Southwest Australia savanna","biome_num":12,"biome_name":"Mediterranean Forests, Woodlands & Scrub","realm":"Australasia","eco_biome_":"AU12","nnh":3,"eco_id":205,"shape_leng":60.0169981922,"shape_area":16.5959929455,"nnh_name":"Nature Could Recover","color":"#C63901","color_bio":"#FE0000","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":178067.816829042,"percentage":5.390450727349781}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[117.68238833000021,-34.31275552799991],[117.55818948000012,-34.356441670999914],[117.4712600920002,-34.345771843999955],[117.19399260100022,-34.23859412499985],[117.16574106100018,-34.14398959499994],[117.3975982500001,-34.09538645899988],[117.47112279600003,-34.008659408999904],[117.45220953400008,-33.852001135999956],[117.47726438300003,-33.79593659699992],[117.41687780000007,-33.7055548699999],[117.31523901000014,-33.68215946999993],[117.12384026200027,-33.602653430999965],[117.09172064200015,-33.419101652999984],[117.00376128500011,-33.30278397099994],[117.06864174200018,-33.234085053999934],[116.9983596510001,-33.14569855599996],[117.02757259600003,-33.066688556999964],[116.936767583,-32.97113033499994],[116.98107147200017,-32.93461993699992],[116.94540412700019,-32.78565591599994],[117.01081851100002,-32.7582321729999],[116.92565921400012,-32.66031645599992],[116.80040742800031,-32.601909510999974],[116.86177067100004,-32.54631804699994],[116.7555771550002,-32.39232639199997],[116.77658103100009,-32.24536128699998],[116.7239762060002,-32.19082644599996],[116.71780394000007,-32.09218602999988],[116.76577005200022,-32.02296072899992],[116.698227,-31.974670405999916],[116.67981715500002,-31.861803049999935],[116.56410984300021,-31.784772689999954],[116.56144707900012,-31.717515962999983],[116.50502010800005,-31.61257352899986],[116.39625552600023,-31.574832836999917],[116.4339600090002,-31.34741570999995],[116.52371208700004,-31.247262863999936],[116.29517362900003,-31.054731552999954],[116.19887545100028,-30.99859995999998],[116.16333769200003,-30.899108947999935],[116.07349391500009,-30.747604370999966],[115.99727643100005,-30.793155656999943],[115.9705275990002,-30.705821924999952],[116.01548762400012,-30.561963991999903],[115.98222353900019,-30.32394979299994],[115.92464455800018,-30.270496383999955],[115.78701018700019,-30.244747177999955],[115.69149772900016,-30.326675419999958],[115.59802241000011,-30.36663631099998],[115.64439394900023,-30.518735834999973],[115.61281579800004,-30.61303526399996],[115.61782851200019,-30.788047724999956],[115.54093175900005,-30.806779769999935],[115.48371118800003,-30.66854290799995],[115.3186264200001,-30.483755135999957],[115.22817227300015,-30.40695946699998],[115.22188567800004,-30.300115514999902],[115.05394720700019,-30.099390056999937],[114.99356936900017,-30.11018927399988],[114.99791001000006,-30.224359990999915],[115.0424300100002,-30.274019990999932],[115.05853001000003,-30.504089990999944],[115.17831001000002,-30.76072999099995],[115.3113400100001,-30.97081999099987],[115.44074001000013,-31.277159990999905],[115.53954001000022,-31.40909999099989],[115.68590001000018,-31.653389990999983],[115.75014001000022,-31.8399099909999],[115.7470800100001,-32.06049999099997],[115.77457001000005,-32.18148999099998],[115.7299800100003,-32.30967999099994],[115.74622001000023,-32.47313999099998],[115.63442001100009,-32.59393999099996],[115.6068600110001,-32.685209990999965],[115.68859001100009,-33.11951999099995],[115.67863001100022,-33.28706999099995],[115.59328001100005,-33.42141999099994],[115.44054001100017,-33.597389989999954],[115.30803001100026,-33.65506998999996],[115.13462001100004,-33.628599989999884],[115.08491001100003,-33.565829989999884],[114.9966090600002,-33.67718957899996],[115.04579161800018,-33.71879190699991],[115.13764956500006,-34.06543724799997],[115.14591211000027,-34.19316487899988],[115.21682737000003,-34.22057722299991],[115.29070278200004,-34.157600463999984],[115.3352966860001,-34.2118454589999],[115.62409968600002,-34.31353001499997],[115.78722376000019,-34.32305152099997],[115.77423097200005,-34.19907378599993],[115.83366403000002,-34.09221273499992],[115.93872079200025,-33.98321530399994],[116.03790284700028,-34.14553840199983],[116.17923732500003,-34.33465190799984],[116.30161294400011,-34.35005181099996],[116.33655542200006,-34.40576162799994],[116.43312081400006,-34.38698197399998],[116.43717178800011,-34.47009273499992],[116.59326176800005,-34.59369663699994],[116.6664885890001,-34.60471716399991],[116.82123545200022,-34.79359429999988],[117.00552366400007,-34.868846858999916],[117.05811306600015,-34.83482337299989],[117.36428839900009,-34.88368232399995],[117.45520988400006,-34.96730953399987],[117.48128975600014,-34.99470550999996],[117.70046239600015,-35.029643948999876],[117.85094057000003,-35.03349304999995],[117.93268001100034,-35.00472999099992],[118.03151001100014,-35.02069999099996],[118.14927001100011,-34.99020999099997],[118.23199459600005,-34.91638016499991],[118.27655026700006,-34.767181413999936],[118.07573696500003,-34.65936281499995],[117.90076440100006,-34.61620322199991],[117.73428337500025,-34.47878258999998],[117.75186911100013,-34.391620686999886],[117.68238833000021,-34.31275552799991]]]},"properties":{"objectid":694,"eco_name":"Southwest Australia woodlands","biome_num":12,"biome_name":"Mediterranean Forests, Woodlands & Scrub","realm":"Australasia","eco_biome_":"AU12","nnh":3,"eco_id":206,"shape_leng":29.6636234604,"shape_area":5.82281983025,"nnh_name":"Nature Could Recover","color":"#A80000","color_bio":"#FE0000","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":60514.73342680701,"percentage":1.8318958171373956}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-7.888308578999954,40.415225630000066],[-8.1581984849999,40.364155197000116],[-8.353494482999963,40.24061365600005],[-8.368518540999958,40.32836564399997],[-8.453923428999872,40.43826228500018],[-8.441685514999904,40.58544263800019],[-8.473155537999958,40.64055683600009],[-8.591114564999941,40.717806971000186],[-8.73708356499992,40.61511742500011],[-8.830328548999887,40.33396559300013],[-8.899005505999924,40.186357261000126],[-8.85308457799988,40.132178148000094],[-8.933407517999967,39.994385862000115],[-9.057351558999926,39.72085636500009],[-9.082729446999963,39.57319858],[-9.25477052499997,39.400429953000014],[-9.370572551999885,39.33413496600008],[-9.358757588999936,39.16343750800013],[-9.426577578999968,39.073366582000176],[-9.421933501999945,38.93225204500004],[-9.493368439999927,38.777331173000164],[-9.46963055499998,38.69530553300007],[-9.319270442999937,38.660851217000186],[-9.149597588999939,38.68219070400005],[-9.070093560999965,38.84621231200009],[-8.98925848599987,38.837530336999976],[-8.937189432999958,38.75889568000008],[-9.046110588999966,38.710083331000135],[-8.997193465999885,38.64282358700018],[-9.281388431999915,38.654858156000046],[-9.219674489999932,38.59969517500008],[-9.18763952699993,38.48746098800012],[-9.219935502999931,38.40192953400003],[-9.039552587999935,38.43471585100002],[-8.879071495999938,38.51232858600014],[-8.793553451999912,38.329226749000156],[-8.785252517999936,38.19881892000018],[-8.867939489999912,37.980851887000085],[-8.793463430999907,37.90300244600013],[-8.8142475329999,37.59824097300003],[-8.782282474999931,37.54960380600005],[-8.807085531999917,37.403648553000096],[-8.88550443899993,37.316492350000146],[-8.866993508999883,37.265845538000065],[-8.906147557999873,37.15779643600007],[-8.989561575999915,37.028950323],[-8.77755558399997,37.05784542500004],[-8.630286550999813,37.12083324900016],[-8.535129485999903,37.12292738300005],[-8.302243502999943,37.08448294599998],[-8.207154499999945,37.102564723000114],[-8.082015534999925,37.0713721410001],[-7.998089549999975,37.017720249000035],[-7.889356483999961,37.01205559100015],[-7.780737579999936,37.04489488200005],[-7.520684507999874,37.182492037000145],[-7.400848437999969,37.178071086000045],[-7.258453481999936,37.21410857600017],[-7.074196450999921,37.22392311400006],[-6.66717542299989,37.081180141000175],[-6.511928494999893,36.984838210000134],[-6.405012457999817,36.834534090000034],[-6.446886434999954,36.75612893000016],[-6.398104428999943,36.62917863600006],[-6.232857554999896,36.58717138700007],[-6.281661520999933,36.48977350400003],[-6.152276451999967,36.31655527200007],[-6.083473431999948,36.278043109000066],[-6.035303472999885,36.189704220000124],[-5.907351540999912,36.18429521000007],[-5.793311556999925,36.089532598],[-5.645509434999894,36.065382156000055],[-5.592353584999955,36.02042313600015],[-5.43085358899998,36.0762689070001],[-5.433192474999885,36.17126872700004],[-5.326660496999978,36.1938740490001],[-5.211943422999923,36.37141298500018],[-5.165698451999958,36.40582539100012],[-4.912732445999893,36.49815423400014],[-4.733445548999896,36.47927869100005],[-4.645190477999904,36.495186370000056],[-4.537302475999923,36.571222804],[-4.430834535999963,36.693447214000116],[-3.9698045479999,36.725489386000106],[-3.827620479999837,36.75026210000004],[-3.848551432999898,36.7943400150001],[-3.97010445199993,36.814465634999976],[-4.219583585999885,36.93050218800016],[-4.31861744899993,36.88442921300003],[-4.569820571999912,36.920557395],[-4.639672503999975,36.98319401599997],[-4.865962431999947,36.960813497000174],[-4.775734428999954,36.90081667200013],[-4.834165514999938,36.764646787000174],[-4.978209526999876,36.65896691400002],[-5.052504536999891,36.576078775999974],[-5.102828477999935,36.61835961000014],[-5.237866469999915,36.62061886900011],[-5.302912553999874,36.58208357200016],[-5.428254527999968,36.680916268000146],[-5.342450493999934,36.89292879800013],[-5.215872523999963,36.906252671],[-5.195497458999967,36.963220444000115],[-5.354163532999962,37.061149404000105],[-5.21378358599992,37.12699310900001],[-5.24661449499996,37.196224780000136],[-5.094251443999951,37.23387209800006],[-4.966608469999869,37.20835959600004],[-4.875785519999909,37.27412736100007],[-4.981990435999819,37.39493690500018],[-4.914906543999962,37.46669354000011],[-4.810853429999952,37.46001769000003],[-4.83848755899993,37.564404738000064],[-4.910800584999947,37.59735198800013],[-4.831287503999931,37.73922944600008],[-4.673133563999897,37.758314034000136],[-4.726003423999941,37.82711453900009],[-4.656960513999877,37.90463121800008],[-4.76371947399997,37.930082867000124],[-4.877243467999961,37.87605161000005],[-5.050608550999868,37.82803369800001],[-5.181775444999971,37.88724865900002],[-5.254640502999962,37.891619487000185],[-5.376138535999928,37.97167705600009],[-5.402333492999958,37.870474795],[-5.497959440999921,37.99829546500007],[-5.697273554999981,37.954652404000115],[-5.787127556999963,37.88262067500011],[-5.850547550999977,37.77082570100015],[-5.954411568999888,37.85707397600015],[-6.060542556999962,37.874171717000024],[-6.24791949899992,37.75095103500013],[-6.341393477999929,37.75133291400016],[-6.372433508999904,37.64474109000014],[-6.687221582999939,37.50342086100005],[-6.768714468999917,37.5403568910001],[-6.803264505999891,37.61516554399998],[-6.90527746499987,37.61794666000009],[-6.921350434999965,37.712598631000105],[-7.001145482999959,37.70384507400013],[-7.009064536999972,37.63155719399998],[-7.215871569999933,37.494718768999974],[-7.304800544999978,37.495546901000125],[-7.347221523999906,37.58723117500017],[-7.266901433999919,37.660083660000055],[-7.304562498999928,37.74251314000014],[-7.397286464999922,37.74638524400007],[-7.550602537999964,37.69451819500017],[-7.645966467999926,37.62614030500009],[-7.60854646699994,37.52017041800008],[-7.528671455999927,37.48150503400012],[-7.607679442999881,37.42471328100004],[-7.578009516999941,37.37974621500007],[-7.672405504999915,37.2244652550001],[-7.843333465999933,37.352868636000096],[-7.926497535999943,37.463992388000065],[-8.049760462999927,37.46770858900015],[-8.205018454999959,37.52780717000013],[-8.144097441999975,37.727564519000055],[-8.068958540999972,37.81250387600011],[-7.964698561999967,37.879595645999984],[-7.901921459999926,38.09886070200014],[-7.891421449999939,38.207199985000045],[-7.647764553999934,38.16216452300006],[-7.561450564999916,38.23475733600014],[-7.680946496999979,38.27462770300008],[-7.763407492999931,38.42485102100005],[-7.968486511999913,38.39877056200015],[-8.040447497999935,38.475788182000144],[-8.011865542999942,38.51353055100003],[-8.098734581999906,38.60700402700013],[-7.936662436999882,38.61834088600017],[-7.897712570999943,38.74375075400019],[-7.769695428999967,38.64237750200016],[-7.706021462999956,38.62698480800003],[-7.457093522999912,38.703846357000145],[-7.478455473999929,38.759433462000175],[-7.404818442999897,38.83857539200005],[-7.465617582999869,38.89444446500016],[-7.601260580999849,38.87729777300018],[-7.639984470999934,38.77010245200006],[-7.784005516999969,38.91019925800015],[-7.852375527999925,39.00715960500003],[-7.838277501999926,39.17746797600017],[-7.7615545889999,39.26135993000014],[-7.677765564999959,39.29866325500012],[-7.510737535999965,39.31629391800004],[-7.378195506999873,39.414822687000026],[-7.249400522999963,39.40334769300006],[-7.216334585999959,39.25420295800018],[-7.312727477999942,39.17880706800014],[-7.230159528999934,39.135289736000175],[-7.012102473999903,39.235954214000174],[-7.158473469999933,39.44646504200006],[-7.503086534999966,39.537872043000164],[-7.365394495999965,39.66863006800014],[-7.50390058499994,39.77692777699997],[-7.405929547999904,39.81959417900009],[-7.334523443999899,39.93126074300005],[-7.517438531999971,39.892290258000116],[-7.588746567999976,39.989475911],[-7.530216575999873,40.101024290000055],[-7.61575155099996,40.15915982900009],[-7.69038854299987,40.15275773100012],[-7.857878581999898,40.06891992400011],[-7.933645454999919,40.07956259400015],[-8.012021446999938,40.147196674000156],[-7.888308578999954,40.415225630000066]]]},"properties":{"objectid":696,"eco_name":"Southwest Iberian Mediterranean sclerophyllous and mixed forests","biome_num":12,"biome_name":"Mediterranean Forests, Woodlands & Scrub","realm":"Palearctic","eco_biome_":"PA12","nnh":3,"eco_id":805,"shape_leng":39.0001781588,"shape_area":7.31300843383,"nnh_name":"Nature Could Recover","color":"#A80000","color_bio":"#FE0000","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":71237.29854519595,"percentage":2.1564882110395835}}, + {"type":"Feature","geometry":null,"properties":{"objectid":700,"eco_name":"St. Peter and St. Paul Rocks","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Neotropic","eco_biome_":"NO13","nnh":4,"eco_id":609,"shape_leng":0.128230595632,"shape_area":0.000490935831682,"nnh_name":"Nature Imperiled","color":"#BFA244","color_bio":"#CC6767","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":6.0829180745837315,"percentage":0.000023056920905951896}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[19.835510254000155,-33.9725570679999],[19.82552528400015,-33.94723129299996],[19.810480118000044,-33.957233428999984],[19.81804466200009,-33.97377777099996],[19.835510254000155,-33.9725570679999]]],[[[19.457935333000137,-33.86964797999997],[19.409496307000097,-33.86807632399996],[19.400917053000114,-33.92023467999991],[19.42473411600014,-33.91947555499996],[19.457935333000137,-33.86964797999997]]],[[[19.51104545600009,-33.92110824599996],[19.629724502999977,-33.92558669999988],[19.635656357000187,-33.84696960399992],[19.630865097000026,-33.84561157199994],[19.62766075100012,-33.82876205399987],[19.627784729000098,-33.827583312999934],[19.62249565100018,-33.82484817499994],[19.621912003000034,-33.82578659099988],[19.62431144700014,-33.82829284699994],[19.62446594200003,-33.829601287999935],[19.62467575100004,-33.84537506099997],[19.613922119000108,-33.85591506999998],[19.6120224,-33.85768890399993],[19.608978271000126,-33.86133956899988],[19.60234642,-33.86372756999987],[19.601074219,-33.86543273899997],[19.566497803000175,-33.868961333999835],[19.563508987000148,-33.869850158999895],[19.472663879000038,-33.86904907199988],[19.498630524000134,-33.92229461699998],[19.51104545600009,-33.92110824599996]]],[[[19.67958259600016,-33.78631591799996],[19.687379837000037,-33.797420501999966],[19.68829536400017,-33.795505523999964],[19.688570023000068,-33.79365158099995],[19.67958259600016,-33.78631591799996]]],[[[19.7149086,-33.838130950999926],[19.772586823000097,-33.78498840299994],[19.77286529500003,-33.786201476999906],[19.704856873000097,-33.823017119999975],[19.7149086,-33.838130950999926]]],[[[20.078893661,-33.82268142699991],[19.987979889000144,-33.865173339999956],[19.808595657000126,-33.82431411699997],[19.81801986700009,-33.82749557499989],[19.819160461000138,-33.83156204199997],[19.744827271000077,-33.85399627699991],[19.71590995800011,-33.93676376299993],[19.82546806300013,-33.87562560999993],[19.816728592000118,-33.91226196299988],[19.82582473800005,-33.92343902599998],[19.896327972000165,-33.88200759899996],[20.009622574,-33.88745880099998],[20.011089325000114,-33.89192199699988],[20.016036987000064,-33.89508056599993],[20.015420914000174,-33.896717071999944],[20.013376236000056,-33.898391723999964],[20.051275253000142,-33.89285278299997],[20.024538040000095,-33.8668174739999],[20.017101288000106,-33.877376555999945],[20.088138580000134,-33.826858520999906],[20.078893661,-33.82268142699991]]],[[[22.661705017000145,-33.73928451499995],[22.651163101000066,-33.738937377999946],[22.647777557000097,-33.75068664599996],[22.657447815000126,-33.75077056899988],[22.661705017000145,-33.73928451499995]]],[[[19.73718452500009,-33.77932739299996],[19.69178390500008,-33.67655944799998],[19.51361846900005,-33.7194862369999],[19.53810882600004,-33.75908660899995],[19.613218307000125,-33.76122283899997],[19.642284393000068,-33.76941680899989],[19.69171714800018,-33.78564071699998],[19.69519043000014,-33.78577804599996],[19.712127686000144,-33.77968597399996],[19.73718452500009,-33.77932739299996]]],[[[20.003446579000126,-33.63574600199996],[19.97028732300015,-33.635761260999914],[19.92591667199997,-33.67176055899989],[19.96367073100015,-33.671314239999845],[20.092411041000048,-33.74995040899995],[20.176692963000107,-33.81724548299991],[20.128797531000146,-33.72749328599991],[20.123245239000084,-33.69421005199996],[20.108695984,-33.679023742999846],[20.055135727000163,-33.64438247699985],[20.003446579000126,-33.63574600199996]]],[[[19.413770676000183,-33.654754638999975],[19.464542389000087,-33.583786010999916],[19.45651817300012,-33.58302307099996],[19.433568954000123,-33.59359359699988],[19.413770676000183,-33.654754638999975]]],[[[21.66947174100011,-33.44020080599989],[21.61582756000007,-33.4235610959999],[21.614963531000058,-33.42504882799989],[21.613756180000053,-33.42699050899995],[21.674648285000103,-33.43941116299993],[21.66947174100011,-33.44020080599989]]],[[[23.317108154000096,-33.40645599399994],[23.09293174700008,-33.40649795499996],[23.010395050000113,-33.43757247899998],[22.818931580000083,-33.480655669999976],[22.598936081000147,-33.48720550499996],[22.59069824200003,-33.48758315999993],[22.55028343200007,-33.48572540299995],[22.544012070000065,-33.486648559999935],[22.49748611500013,-33.494319915999824],[22.484535217000087,-33.517101287999935],[22.484514236,-33.520404815999825],[22.48220443700012,-33.52203750599989],[22.471321106000175,-33.52440643299997],[22.467771530000107,-33.52577590899995],[22.457508087000065,-33.53279113799988],[22.444400787000063,-33.54417800899995],[22.41471862800006,-33.56373596199984],[22.22358131400017,-33.540306090999934],[22.13336563100006,-33.62580490099998],[22.029062270999987,-33.51764678999996],[21.914485931000172,-33.53492355299994],[21.68531990100007,-33.50420761099991],[21.688396454000156,-33.625423430999945],[21.77438736000005,-33.66377258299997],[21.962570190000065,-33.64371490499997],[22.0071544650001,-33.69773483299991],[22.028450012000064,-33.725040435999915],[22.02967834499998,-33.73684692399996],[22.15717506400017,-33.783512114999894],[22.156343460000073,-33.7871780399999],[22.19321441699998,-33.80830764799998],[22.203666687000066,-33.81996917699985],[22.213630676000037,-33.81789398199993],[22.239313126000127,-33.814281463999976],[22.25352859500009,-33.80940246599988],[22.321577072000025,-33.799808501999905],[22.347290039000086,-33.79757308999996],[22.42610549900013,-33.77519607499988],[22.496156693000103,-33.703022002999944],[22.614183426000068,-33.72750854499992],[22.619935989000055,-33.72756957999991],[22.646211624000102,-33.72903823899986],[22.668048859000123,-33.7340164179999],[22.69707679700008,-33.74362564099988],[22.70920181300005,-33.741798400999926],[22.76142692600007,-33.73184585599989],[22.784690857000157,-33.73011398299997],[22.819417953000084,-33.72957992599993],[22.850475311000082,-33.72426986699992],[22.88418769800012,-33.71760940599995],[22.897859573000062,-33.71595382699985],[22.987110138000105,-33.7066993709999],[23.045572281000034,-33.696006774999944],[23.09353065500011,-33.671550750999984],[23.11783599900008,-33.66284942599998],[23.11763763400012,-33.65747451799996],[23.021074295000062,-33.6704521179999],[22.832805634000124,-33.72243118299997],[22.69296455400007,-33.733070373999965],[22.563642502000164,-33.69082260099998],[22.555242538000073,-33.677425384999935],[22.518188477000137,-33.63574218799994],[22.491315842000063,-33.55419540399993],[22.651762009000095,-33.58102798499982],[22.962385178000034,-33.5651893619999],[23.084615707000182,-33.50732803299991],[23.12818527200011,-33.48753356899982],[23.27847671500018,-33.50800704999995],[23.328634262000037,-33.4583969119999],[23.305482864000112,-33.41811752299998],[23.317108154000096,-33.40645599399994]]],[[[21.751682281,-33.34857559199992],[21.629728317000115,-33.3476219179999],[21.74386596700009,-33.353107451999904],[21.751682281,-33.34857559199992]]],[[[22.12146186800004,-33.254226684999935],[21.749530792000087,-33.26080703699995],[21.622434616000135,-33.27414703399995],[21.617406845000062,-33.274169921999885],[21.61737632800009,-33.274169921999885],[21.500654221000104,-33.29974365199996],[21.49805831900005,-33.30262756299993],[21.498758316000192,-33.32812118499987],[21.62708282500006,-33.295806884999934],[22.09833717300006,-33.26586914099994],[22.12146186800004,-33.254226684999935]]],[[[23.44812202500009,-33.08309555099993],[23.319200516000024,-33.13007354699994],[23.164449692,-33.10612106299993],[22.995000839000113,-33.11299896199995],[22.971000671000127,-33.077999114999955],[22.781999588000133,-33.05599975599995],[22.72800064100005,-33.16299819899996],[22.514999390000128,-33.17100143399989],[22.419692993000126,-33.140213012999936],[22.3299465180001,-33.091152190999935],[22.058000565000043,-33.0730018619999],[21.974916458000052,-33.117179870999905],[22.094491959000038,-33.23376846299993],[22.24511337300015,-33.206203460999916],[22.51502227800006,-33.24422454799998],[22.563146591000077,-33.27561950699993],[22.76608657800017,-33.29518127399996],[23.087944031000063,-33.292274474999886],[23.08695411700006,-33.28967285199991],[22.89963913000014,-33.281730651999965],[23.080059052000024,-33.27307891799995],[23.091894150000144,-33.271007537999935],[23.106410980000078,-33.267585753999924],[23.11517143200018,-33.26596450799991],[23.129583359000037,-33.26229858399989],[23.186830521000047,-33.2594604489999],[23.233463287000063,-33.252124785999854],[23.28031730700002,-33.21391296399992],[23.503786087000037,-33.16166686999992],[23.441492081000035,-33.13287353499993],[23.52727127100019,-33.10121917699996],[23.59218025200005,-33.12965011599994],[23.540307999000106,-33.169940947999976],[23.54040145900018,-33.173820495999905],[23.517559052000138,-33.18848800699993],[23.486246109000035,-33.19363021899994],[23.488348007000013,-33.20393753099995],[23.476837158000023,-33.20311355599989],[23.47731781000016,-33.204387664999956],[23.426177979000045,-33.209693908999895],[23.426118851000126,-33.21022415199997],[23.467905045,-33.237033843999825],[23.347698212000182,-33.25558853099983],[23.136953354000127,-33.26882934599996],[23.171007156000087,-33.28066635099998],[23.08748245200013,-33.29467391999998],[23.08405494700014,-33.294635772999925],[22.89558410600017,-33.303558349999946],[22.891050339000117,-33.30347824099988],[22.811277390000043,-33.30715560899995],[22.807653427000105,-33.303833007999856],[22.619468689000087,-33.29835891699997],[22.491939545000037,-33.26835632299992],[22.36598587000003,-33.28720092799995],[22.480758667000032,-33.311401366999974],[22.541143417000114,-33.354709624999884],[22.790967941000133,-33.36912155199997],[22.861640930000135,-33.40334320099993],[22.956052780000107,-33.41547775299995],[23.09763336200018,-33.37733459499998],[23.24918746900005,-33.36755752599993],[23.26101875300003,-33.29569625899995],[23.423564911000028,-33.2741088869999],[23.469444275,-33.31416320799997],[23.637580872000058,-33.31276321399997],[23.747198105000052,-33.31517791699997],[23.72361564600004,-33.330223082999964],[23.737440109000033,-33.33428573599991],[23.731290817000115,-33.344676970999956],[23.730663300000174,-33.34618377699991],[23.73521232600018,-33.36326217699991],[23.735307693000152,-33.36491393999995],[23.748241425,-33.3746032709999],[23.752655029000152,-33.38434600799991],[23.751932144000136,-33.389038085999914],[23.751535415999967,-33.390579223999964],[23.665708542000175,-33.454513549999945],[23.780355453000084,-33.42256164599996],[24.021545409999987,-33.49978256199989],[24.26692581200018,-33.52387237499994],[24.293264389000115,-33.54623413099989],[24.545629501000178,-33.504402160999916],[24.638523102000192,-33.44967651399992],[24.71630668600011,-33.49513626099997],[24.87133789100011,-33.498989104999964],[24.82632064800015,-33.34632873499993],[24.66020393400015,-33.36429595899989],[24.38503646900017,-33.33288574199992],[24.439147949000073,-33.287723540999934],[24.50060081500004,-33.26870346099997],[24.418346405000023,-33.27397918699995],[24.237325668000096,-33.20304870599995],[24.2354640960001,-33.20820999099993],[23.917873383000085,-33.18558502199994],[23.842914581000116,-33.14305877699985],[23.840955734000147,-33.13989639299996],[23.69979858400012,-33.173160552999946],[23.6006984710001,-33.15507888799988],[23.580530167000063,-33.10398864699994],[23.490203857000097,-33.076190947999976],[23.44812202500009,-33.08309555099993]],[[24.07289505000017,-33.22549056999998],[24.218574524000132,-33.26463317899987],[24.242116928000087,-33.33784103399995],[24.027587891,-33.28084182699996],[24.07289505000017,-33.22549056999998]]],[[[17.94927414200015,-33.01585126899994],[17.933557510000014,-33.031562804999965],[17.962514877000103,-33.02991485599995],[17.960308141000155,-33.02680986699988],[17.958426986000177,-33.026380391999965],[17.952130199000123,-33.02265428299995],[17.948942184000032,-33.0166435239999],[17.949267830000167,-33.01603539599995],[17.94927414200015,-33.01585126899994]]],[[[21.65358734100016,-32.08276367199994],[21.605815887000063,-32.109462737999934],[21.423618317000034,-32.10475921599988],[21.524324417000116,-32.13983535799997],[21.550024033000057,-32.21396636999992],[21.679359436000084,-32.19899368299991],[21.65358734100016,-32.08276367199994]]],[[[18.401597977000108,-32.32061767599998],[18.441696166999975,-32.220664977999945],[18.433988571000157,-32.11434173599997],[18.38426017800009,-32.00796127299992],[18.413858414000174,-31.94471359299996],[18.316659927000103,-31.86650848399995],[18.280187607000073,-31.905643462999876],[18.314287186000172,-32.06720733599985],[18.311504364000143,-32.17234420799991],[18.343235016000108,-32.30700302099996],[18.401597977000108,-32.32061767599998]]],[[[17.88848304700008,-31.222419738999918],[18.002420425000025,-31.122730254999908],[17.79200935400013,-31.036989211999924],[17.822576523,-31.11182212799997],[17.907415390000097,-31.160497664999923],[17.887586594000084,-31.219169616999977],[17.88848304700008,-31.222419738999918]]],[[[18.069252014000142,-30.41371345499988],[18.036138535000077,-30.38955879199989],[18.026847839000027,-30.376268386999982],[18.105392456000118,-30.477073668999935],[18.196411133000083,-30.512430190999964],[18.069252014000142,-30.41371345499988]]],[[[18.260658264000085,-30.355945586999894],[18.17667007400013,-30.43904304499995],[18.252389908,-30.49215888999987],[18.27797317500017,-30.422880172999953],[18.260658264000085,-30.355945586999894]]],[[[18.414495468000155,-30.387556075999953],[18.306255341000053,-30.425895690999937],[18.26040267900015,-30.342044829999907],[18.304107666000107,-30.434200286999896],[18.414495468000155,-30.387556075999953]]],[[[18.022348404000127,-30.166467666999836],[17.996311188000163,-30.1526813509999],[18.03232383700015,-30.201755523999964],[18.057542801000068,-30.219058989999894],[18.057601929000157,-30.219058989999894],[18.024024963000045,-30.160673140999904],[18.022348404000127,-30.166467666999836]]],[[[20.015651703000174,-31.28724479699997],[19.97953033400006,-31.04286003099992],[19.871726990000184,-30.94219398499996],[19.891395569000167,-30.834007262999933],[19.74902534500012,-30.822336196999913],[19.548032761000172,-30.583332061999897],[19.357444763000103,-30.504793166999946],[19.274887085000046,-30.42692565899989],[19.275800705000165,-30.270101546999967],[19.16349029500003,-30.335201262999817],[19.060403824000048,-30.263977050999927],[19.022422791000167,-30.090570449999916],[18.810626984000123,-30.00657272299992],[18.732622147000086,-30.100572585999885],[18.775190353000028,-30.250844954999877],[18.70189094500006,-30.307817458999978],[18.680671692000033,-30.374532699999918],[18.74630737300015,-30.468082427999946],[18.747501372999977,-30.530008315999908],[18.848102570000037,-30.548818587999904],[18.91925430300006,-30.485927581999874],[18.98081970200019,-30.513401030999944],[19.053506851000066,-30.451684951999937],[19.306201935000104,-30.555912017999958],[19.30564308200013,-30.749650954999936],[19.172006607000185,-30.623937606999903],[18.931669235000186,-30.622093200999984],[18.923332214000027,-30.68299102799989],[18.783584595000036,-30.68672180199991],[18.715620041000022,-30.778144835999967],[18.66253280600006,-30.91874885599998],[18.578416824000044,-31.000310897999952],[18.509016037000094,-31.005340575999924],[18.443502426000123,-30.908777236999924],[18.346927643000186,-30.896350860999917],[18.288038254000128,-30.958648681999932],[18.36432647700002,-31.074171065999963],[18.524181366000164,-31.177289962999964],[18.416751862000126,-31.305709838999917],[18.438459396000155,-31.392108916999916],[18.39566421500018,-31.567062377999946],[18.29283142100013,-31.529056548999904],[18.213769912999965,-31.557022094999923],[18.2419528960001,-31.572242736999954],[18.383943558,-31.65703010599998],[18.488777161000144,-31.67695808399992],[18.487472534000062,-31.769893645999957],[18.556119919000025,-31.858144759999902],[18.64864540100001,-31.89979171799996],[18.830379486000027,-31.88113784799998],[18.95558929400005,-31.97097015399993],[19.050392151000096,-31.887716292999926],[19.150661469000113,-31.9255542759999],[19.193439484000123,-32.00443649299996],[19.17012786900017,-32.20737838699989],[19.270242691000192,-32.404502868999884],[19.337282181000035,-32.492229461999955],[19.36886215200002,-32.61193084699994],[19.43155860900015,-32.73780822799995],[19.445707321000043,-32.734745025999985],[19.43854522700002,-32.62646102899993],[19.628751755000167,-32.68989944499998],[19.67565727200008,-32.83563613899997],[19.71660041800004,-32.88457870499991],[19.660753250000027,-33.000057219999974],[19.71862220800017,-33.072147368999936],[19.727827072000082,-33.20215988199993],[19.69677162200003,-33.221939086999896],[19.703447342000118,-33.22156143199993],[19.706693649000044,-33.221279143999936],[19.72104072600007,-33.22148132299998],[19.75063133200007,-33.22296142599987],[19.75798225400007,-33.22978210399987],[19.73875427200005,-33.24024200399998],[19.812635422000028,-33.23747253399995],[19.80847740200005,-33.229209899999944],[19.904930115000013,-33.22823333699995],[19.90770530700013,-33.231685637999874],[19.931913376000182,-33.22156524699989],[19.93020439100013,-33.21623992899998],[19.94943237300015,-33.20854568499993],[19.959943771000155,-33.209606170999905],[19.963724136000053,-33.21009826699998],[19.97594261200004,-33.20534896899994],[19.98279190100004,-33.20733261099991],[20.016878128000087,-33.18836975099998],[20.0169830320001,-33.183895110999856],[20.023082733000024,-33.17675399799998],[20.02206230200005,-33.172443389999955],[20.01811790500011,-33.167968749999886],[20.015367508000168,-33.163562774999946],[20.031904221,-33.15481948899992],[20.083356857000183,-33.15266036999998],[20.227626800999985,-33.188858031999985],[20.46529006999998,-33.20972824099988],[20.596204758000056,-33.25459670999993],[20.805315018000044,-33.25333785999993],[20.80148506200004,-33.25472640999982],[20.786066055000106,-33.256881713999974],[20.783031464000146,-33.25929260299995],[20.78550148000005,-33.26464462299987],[20.789224624999974,-33.265827178999984],[20.760581970000032,-33.287925719999976],[20.76046562200014,-33.28980255099998],[20.773200989000088,-33.29565048199987],[20.918243408000137,-33.313533782999855],[20.92271041900017,-33.32529449499992],[20.914567947000023,-33.3374938959999],[20.90144920300014,-33.34212112399996],[20.85010910000011,-33.32394027699996],[20.661436081000147,-33.33456420899995],[20.74259758000005,-33.406276702999946],[20.740804672000024,-33.40655517599998],[20.7440338130001,-33.41341781599988],[20.744588852000106,-33.41492080699987],[20.713603973000147,-33.45484161399992],[20.59092521700012,-33.44076919599996],[20.600009918000126,-33.438728332999915],[20.58289909400014,-33.42250060999993],[20.58207511900008,-33.42125320399998],[20.601264954000044,-33.40475082399996],[20.56946754500018,-33.41636657699996],[20.578697205000026,-33.44971084599996],[20.366044998000177,-33.49391555799991],[20.362716675,-33.489013671999885],[20.36082267800009,-33.487312316999976],[20.343255997000085,-33.48299789399988],[20.33397293100012,-33.48022842399996],[20.330846786,-33.47880172699996],[20.329183578000084,-33.476348876999964],[20.32709884600007,-33.47032546999992],[20.356002808000085,-33.45581436199984],[20.378231049000078,-33.449626922999926],[20.390686035000158,-33.4469604489999],[20.391248702999974,-33.446399688999975],[20.394849777000047,-33.44406890899995],[20.373550415000068,-33.446037291999914],[20.386703491000162,-33.439334868999936],[20.198017120000145,-33.44301223799994],[20.169487000000117,-33.42686080899989],[20.16276931800013,-33.42663192699996],[20.121870040999966,-33.382392882999966],[20.130292892000114,-33.37963104199997],[20.163961411000116,-33.370552062999934],[20.149749756000062,-33.358337401999904],[20.146749496000155,-33.356063842999845],[20.26901817300012,-33.35182189899996],[20.279531479000127,-33.35449600199996],[20.275075912000148,-33.26364135699998],[20.10174179100011,-33.28594970699987],[20.077606201000094,-33.30249023399995],[20.069574356000146,-33.31140899699989],[20.06112289400005,-33.31266403199993],[20.11168479900016,-33.353610991999915],[20.11807632400007,-33.35891342199989],[20.127796173000036,-33.3600730899999],[20.12806510900009,-33.36684036299994],[20.11631393400006,-33.37821960399998],[20.113155365000125,-33.38054656999998],[20.10698509200006,-33.38191604599996],[20.10128402700002,-33.381122588999915],[20.098608017000117,-33.37988281299994],[20.09727287300018,-33.37921523999995],[20.032913208000082,-33.37374114999989],[20.017316818000154,-33.37627792399991],[19.96754455600012,-33.45662689199992],[19.990564346000156,-33.474109649999946],[19.981624603000057,-33.48640060399998],[19.984951019000164,-33.49416732799989],[20.04699707000009,-33.52738571199984],[20.046979904000125,-33.52744293199987],[20.056116104000182,-33.5240707399999],[20.05707740800017,-33.52446365399993],[20.097528458000056,-33.50942993199993],[20.104120255000055,-33.51173019399988],[20.105136871000127,-33.51107788099995],[20.103713989000028,-33.50759506199989],[20.142436981000117,-33.487613677999946],[20.202384949000134,-33.479881286999955],[20.234567642000115,-33.47930908199993],[20.23974990800008,-33.475955962999876],[20.234178543000155,-33.47216415399993],[20.29547500600006,-33.45869827299998],[20.314420700000028,-33.47214126599988],[20.317752838,-33.47619628899997],[20.31930160500019,-33.47883605999988],[20.319849014000056,-33.48052978499993],[20.32238578800019,-33.48599243199993],[20.28275108300005,-33.49461364699988],[20.314769745000035,-33.51479339599996],[20.310039520000032,-33.51758956899994],[20.301954269000134,-33.51895523099995],[20.306655884000065,-33.520202636999954],[20.220380783000167,-33.57684707599992],[20.310825348000037,-33.608882903999984],[20.335912704000123,-33.65732574499998],[20.339183807000154,-33.657939910999914],[20.34824180600009,-33.660217284999874],[20.367595673000153,-33.665981292999845],[20.382501602000048,-33.67013549799992],[20.39190864600016,-33.6730079649999],[20.402013779000015,-33.67538833599997],[20.41114425699999,-33.67787933299991],[20.49154281600005,-33.706321715999934],[20.471195221000187,-33.72077941899988],[20.55946922300018,-33.7567863459999],[20.599855423000065,-33.74577331499995],[20.879774094000027,-33.76154327399985],[20.870609283000135,-33.80113983199993],[20.767572403000088,-33.89655303999996],[20.94327163700018,-33.87715530399993],[21.08564758300014,-33.87449645999993],[21.24684333800002,-33.92138671899994],[21.353994370000123,-33.92144775399993],[21.495594025000116,-33.88048553499988],[21.650623322000115,-33.91616821299988],[21.716995239000084,-33.835494994999976],[21.863002777000133,-33.81042480499991],[21.873550415000125,-33.766708373999904],[21.74225044300016,-33.74095916699997],[21.72102356000005,-33.73758697499994],[21.720790863000047,-33.73759841899988],[21.688760757000182,-33.730087279999964],[21.661785126000098,-33.7243423459999],[21.557064056000172,-33.72766113299997],[21.510078430000135,-33.729339599999946],[21.502559662000124,-33.728500365999935],[21.416349411000056,-33.734176635999916],[21.33304786700012,-33.655792235999854],[21.302585602000022,-33.60488510099998],[21.463525772000025,-33.5947036739999],[21.513328552000075,-33.56675720199996],[21.41609191900011,-33.50993728599997],[21.31836319000007,-33.52822112999996],[21.285301208000078,-33.53361511199995],[21.281480789000057,-33.532798766999974],[21.191490172999977,-33.507404326999904],[21.166147232000185,-33.50081253099995],[21.157131194999977,-33.4980888369999],[21.15791320800014,-33.49366378799988],[21.15715026900017,-33.490093230999946],[21.113910675000056,-33.45953750599995],[21.12646102900004,-33.39052963299997],[21.286426544000108,-33.38030624399988],[21.01371002200017,-33.36808395399987],[20.993143082000188,-33.367259978999925],[20.99678039600002,-33.36505889899996],[21.00111961400006,-33.36275863599997],[21.012434006000092,-33.35421371499996],[21.015203476000067,-33.34124374399994],[21.038331985000184,-33.33382034299996],[21.03425788900006,-33.32373809799992],[21.113082886000086,-33.30605697599992],[21.065553665000095,-33.29642486599994],[21.063508986999977,-33.29467391999998],[21.31609535200016,-33.290473937999934],[21.56135749800012,-33.255542754999965],[21.75218963599997,-33.25495529199992],[21.66783905000011,-33.20719909699989],[21.50475502,-33.168289184999935],[21.193122863999974,-33.20498657199994],[21.119991302000017,-33.16100311299988],[21.029846191000047,-32.95995712299998],[20.962263107000183,-32.85503387499989],[21.071832657000186,-32.74569320699993],[20.94455337500017,-32.808521270999904],[20.719886780000138,-32.83242416399992],[20.6536636350001,-32.88628387499995],[20.700927734000174,-32.96509551999992],[20.534288406000087,-33.05496215799997],[20.38249397300001,-33.00874710099998],[20.428194046000044,-32.9094924929999],[20.594808578000027,-32.85573959399994],[20.616758347000086,-32.75159454299995],[20.694234848000065,-32.686393737999936],[20.538885117000177,-32.53256988499987],[20.394300461000057,-32.51247405999993],[20.342506409000066,-32.335716247999926],[20.25284576400003,-32.31094741799984],[20.239837646000012,-32.22241592399996],[20.184812546000046,-32.208587645999955],[20.16970443700012,-32.08549880999993],[20.28309822100016,-32.077007293999884],[20.291774750000172,-32.17390441899994],[20.372470856000177,-32.18447494499998],[20.422035216999973,-32.26576614399994],[20.48040962200008,-32.261466979999966],[20.558116913000163,-32.330196380999894],[20.663455963000104,-32.337039947999926],[20.76759338400018,-32.25504302999991],[20.855806351000126,-32.35991668699995],[20.807518005000134,-32.42715835599995],[20.821418762000178,-32.511199950999924],[20.88950729400017,-32.58679580699993],[21.01212501499998,-32.56552886999998],[21.027032852000048,-32.48494720499997],[21.13637733500019,-32.559719085999916],[21.21544838000017,-32.48826217699991],[21.237623215000042,-32.473957061999954],[21.224342346000128,-32.467529296999885],[21.168451309000147,-32.45848083499993],[21.135583878000034,-32.371158599999944],[21.04902839700003,-32.33573913599997],[21.103956223000125,-32.2734031679999],[21.195178986000144,-32.27476501499996],[21.343133926,-32.35902023299997],[21.459085464000168,-32.27384185799997],[21.382780075000028,-32.21820449799992],[21.39667701700006,-32.14003372199994],[21.200809479000156,-32.18648529099994],[20.966943741000023,-32.140632628999924],[20.83114814800018,-32.14698409999994],[20.638376236000056,-32.12633514399994],[20.572423935000188,-32.05395126299993],[20.54780006400017,-31.95739173899989],[20.450635910000074,-31.853086471999973],[20.327661514000056,-31.811616897999897],[20.286012650000146,-31.59700393699984],[20.286626816000023,-31.514848708999978],[20.188970566000023,-31.447832107999943],[20.07572174100011,-31.46186065699993],[19.995412827000166,-31.35982131999998],[20.048122406000118,-31.294460296999944],[20.015651703000174,-31.2899513239999],[20.015651703000174,-31.28724479699997]],[[19.71710777300018,-31.20516776999989],[19.605848312000035,-31.363735198999905],[19.518875122000054,-31.307529448999958],[19.529943466000134,-31.251785277999943],[19.638288498000065,-31.185636519999832],[19.71710777300018,-31.20516776999989]],[[19.64632988,-31.118104934999963],[19.598888397000167,-31.20551490799994],[19.50201797500017,-31.222633361999954],[19.5012569430001,-31.141605376999962],[19.595285416000024,-31.15272140499991],[19.64632988,-31.118104934999963]],[[18.98137092600018,-31.353981017999956],[18.980333328000086,-31.263977050999983],[19.03238868700015,-31.1849861149999],[19.11707687400019,-31.21979713399992],[19.111104965000152,-31.32670974699994],[19.162212372000113,-31.33353805499985],[19.21949768100012,-31.435897826999906],[19.19138526900008,-31.57276534999994],[19.213045120000118,-31.638952254999936],[19.216552734000118,-31.848934173999965],[19.137817383000026,-31.90587043799991],[18.871526718000155,-31.82824325599995],[18.778833389,-31.86822128299991],[18.680019379000157,-31.84319305399987],[18.672180176000154,-31.837404250999896],[18.64900970499997,-31.81246566799996],[18.646537781000063,-31.802591323999934],[18.68226051300013,-31.72644042999997],[18.74971008300014,-31.74774169899996],[18.76262092600018,-31.749979018999966],[18.827421188000187,-31.683383941999978],[18.906234741000162,-31.778650283999923],[18.964246750000143,-31.78181266799993],[18.96374702500009,-31.77587509199998],[19.003292084000066,-31.766551970999956],[19.001581192000117,-31.760313033999978],[18.99998855600012,-31.7612590789999],[18.99393081700009,-31.766981124999973],[18.9439868930001,-31.752561568999965],[18.968736649000107,-31.676143645999957],[18.96740531900008,-31.54257583599997],[19.028488159000176,-31.475049972999898],[18.98137092600018,-31.353981017999956]],[[19.899904251,-31.214246749999973],[19.93358802800003,-31.269027709999932],[19.851665497000056,-31.34125900299989],[19.944129944000053,-31.44419288599994],[19.71991539000004,-31.417367934999902],[19.75813674900013,-31.351085662999935],[19.757253647000084,-31.26238059999997],[19.861879349000105,-31.266113280999946],[19.899904251,-31.214246749999973]],[[18.884881973,-31.451032638999948],[18.74425315899998,-31.527378081999984],[18.558725357000128,-31.662958144999948],[18.443830490000096,-31.61163520799994],[18.52500343300005,-31.537420272999952],[18.60027885400001,-31.54274368299997],[18.708093643000097,-31.494398116999946],[18.884881973,-31.451032638999948]],[[19.329925537000122,-32.26854705799991],[19.47342872600018,-32.5211257929999],[19.385868073000154,-32.5574913019999],[19.27190589900016,-32.38610839799992],[19.263145447000056,-32.330898284999876],[19.329925537000122,-32.26854705799991]],[[20.45893859900019,-33.52854537999997],[20.496994019000113,-33.49652099599996],[20.736703873000067,-33.47013091999992],[20.736322403000145,-33.55089569099994],[20.54500007600018,-33.562980651999965],[20.45893859900019,-33.52854537999997]],[[20.376798630000167,-33.511344909999934],[20.32267570500011,-33.52207183799982],[20.323362349999968,-33.520290374999945],[20.325082779000127,-33.51512908899991],[20.332162857000128,-33.51291274999994],[20.36749267600004,-33.51130294799998],[20.376798630000167,-33.511344909999934]],[[20.11509132400016,-33.45665740999988],[20.118236541999977,-33.45592880199996],[20.133132935,-33.444942473999845],[20.151306152000075,-33.44252777099996],[20.15860366800007,-33.440696715999934],[20.167444229000125,-33.441783904999966],[20.170351028000027,-33.44246292099996],[20.180768967000063,-33.44243240399982],[20.190027237000095,-33.44690704299995],[20.158109665000154,-33.45760345499997],[20.128400803000147,-33.48220825199991],[20.125602722,-33.48181533799993],[20.121360779000156,-33.48018646199995],[20.11509132400016,-33.45665740999988]]],[[[18.02101707500003,-29.496221541999944],[17.947452545000147,-29.538179397999954],[18.01166343700004,-29.5935230259999],[18.057693481000115,-29.530395507999913],[18.02101707500003,-29.496221541999944]]],[[[18.163505554000153,-29.282649993999883],[18.223806381000145,-29.27428054799998],[18.187776566000025,-29.11662864699997],[18.131055832000072,-29.15443229699997],[18.103525162000153,-29.24650382999988],[18.163505554000153,-29.282649993999883]]],[[[17.056226730000162,-29.676937102999943],[17.240165710000042,-29.584863662999908],[17.438756942999987,-29.55329894999994],[17.5472068790001,-29.63725089999997],[17.562044144000026,-29.53559875499991],[17.629583359000094,-29.450088500999982],[17.629068375000088,-29.351549148999936],[17.668256760000077,-29.30595779399988],[17.69149971000013,-29.160551070999873],[17.633323669000106,-29.112230300999954],[17.549856186,-29.119201659999874],[17.62621879600016,-29.236423491999858],[17.437738419000084,-29.2984580989999],[17.413272858000084,-29.40485382099996],[17.464078903000143,-29.519397735999974],[17.23890304600002,-29.58210945099995],[17.08841514600016,-29.650758742999926],[17.073299408000025,-29.514003753999873],[17.000883102000103,-29.52173805199982],[17.056226730000162,-29.676937102999943]]]]},"properties":{"objectid":701,"eco_name":"Succulent Karoo xeric shrublands","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Afrotropic","eco_biome_":"AF13","nnh":2,"eco_id":110,"shape_leng":185.022623349,"shape_area":5.45058026912,"nnh_name":"Nature Could Reach Half Protected","color":"#C73F49","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":57189.642504733965,"percentage":0.21677376675199622}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[34.40666666700014,8.229166667000129],[34.29,8.237500000000125],[34.23083333400007,8.269166667000036],[34.27500000000015,8.398333334000142],[34.191666667000106,8.465],[34.24666666700017,8.689166667000109],[34.15833333300009,8.681666667000059],[34.1400000000001,8.595],[34.024166666000156,8.49000000000018],[33.903333334000024,8.4825],[33.77,8.363333333000128],[33.69166666700005,8.379166667000106],[33.679166667000175,8.438333333000116],[33.56750000000011,8.451762919000032],[33.518089466000106,8.485268855000129],[33.48537053900003,8.6342561780001],[33.542308472000116,8.661430979000158],[33.54925153800008,8.760740942000098],[33.51842155700018,8.815930241999979],[33.37041055800012,8.97870747200011],[33.32883045100016,9.05537288500011],[33.19638045500005,9.207730236000032],[33.19200158100011,9.291280377000078],[33.23423044700007,9.343522600000085],[33.396560587000124,9.439465719],[33.45952946700015,9.504437204000112],[33.545238450000056,9.69386167800019],[33.64075057300005,9.849797766000165],[33.60100945500005,9.957414195000126],[33.53252058900017,9.96042396900009],[33.35739849100008,9.852871578000133],[33.2274585400001,9.799292441000148],[32.95508960200016,9.76708749300019],[32.819339483000135,9.703369271000156],[32.585391513000104,9.615711326999985],[32.212978525000096,9.541336689000047],[32.04360959900015,9.48098095100005],[31.88156545000004,9.381981957000164],[31.720878498000047,9.329583663000108],[31.631074452000178,9.33375718000002],[31.286403553000014,9.394021052000028],[31.076854464000064,9.406415037000102],[30.711332575000142,9.46286698700004],[30.192174590000036,9.484018720000165],[30.008829511000158,9.532023388000141],[29.933404452000104,9.584565516000055],[29.838609486000053,9.57551524000013],[29.668840575000104,9.521721023000111],[29.55087048400003,9.416140559000098],[29.370910520000052,9.338374938000129],[29.256530566000094,9.337812009],[29.115533543000083,9.377667288000112],[28.930053593000025,9.38560159800005],[28.406572559000097,9.38560159800005],[28.222961605000023,9.373882356000138],[27.977687504000187,9.336878098000113],[27.849866498000154,9.225473049000016],[27.820425566000097,9.173895678000122],[27.845031481000035,9.079752153000072],[28.27518253800008,8.892733453000062],[28.754873493000105,8.64484839000005],[29.086284557000113,8.439602067000123],[29.240915583000117,8.36905594700005],[29.40327858000012,8.238905442000089],[29.458162444000152,8.080222772000184],[29.425743589000035,7.842888010000138],[29.42610149700016,7.696167321000132],[29.439439451000112,7.624516465000113],[29.51561552900006,7.46206143500001],[29.592176503000076,7.357152026000051],[29.81780660800007,7.130359351000095],[30.07442460900006,6.92335450600018],[30.228450462000183,6.854664474],[30.45756358300008,6.861232030000053],[30.682449542000143,6.92671330200011],[30.81174056600014,6.906437478000043],[30.976350583999988,6.750458977],[31.203029600000036,6.490819971000121],[31.274139487000127,6.320156375000124],[31.309949491999987,6.056592627000043],[31.509849501000076,5.884256171],[31.603719608000063,5.720678301000135],[31.643459552000138,5.507591714000057],[31.64357958100004,5.414999512000179],[31.579980550000187,5.065863237000087],[31.561889553000185,4.859552581000116],[31.591329479000137,4.789467633000186],[31.669931447000067,4.789387670000053],[32.31560856000016,5.11631860600005],[32.451080567000076,5.201224436000075],[32.59310956900015,5.32711525700006],[32.79841657700018,5.545816043000059],[33.09556946099997,5.84252234000013],[33.235031590000176,5.999503652000101],[33.393497504000095,6.217614686000104],[33.45967849700003,6.363097368000126],[33.52650053800011,6.603735606000157],[33.62607553600003,7.124226648000104],[33.6376995600001,7.243523258999971],[33.62330246800008,7.492836263000129],[33.54197064100015,7.701666666000108],[33.67166666700007,7.693333333999988],[33.795833334,7.603333334000069],[33.87500000000017,7.51416666700004],[33.93916666700005,7.508333333000166],[33.95666666600005,7.446666666000169],[34.03500000000014,7.458333334000031],[33.959166667000034,7.565833333000114],[34.09083333300015,7.625833333000173],[33.899166666999974,7.783333333000087],[33.975000000000136,7.810000000000173],[34.10666666700013,7.77583333299998],[34.095,7.85],[34.006666667,7.905833333000032],[34.11083333300007,7.99],[34.09916666700008,8.091666666000094],[34.35083333400013,8.172500000000127],[34.40666666700014,8.229166667000129]],[[33.68750000000017,7.974166667000191],[33.775,7.93],[33.59166666599998,7.85],[33.46083333299998,7.958333333000041],[33.583333333000155,7.95],[33.68750000000017,7.974166667000191]]]},"properties":{"objectid":702,"eco_name":"Sudd flooded grasslands","biome_num":9,"biome_name":"Flooded Grasslands & Savannas","realm":"Afrotropic","eco_biome_":"AF09","nnh":3,"eco_id":74,"shape_leng":27.1553459913,"shape_area":15.4252313401,"nnh_name":"Nature Could Recover","color":"#A7DCFB","color_bio":"#BEE7FF","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":189332.35101801896,"percentage":16.373090895818475}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[134.2634886420002,46.06784954100016],[134.20297264200008,46.228230888000155],[134.11958360200015,46.34288928900014],[133.9111027040002,46.34288928900014],[133.72348067400003,46.32204215500008],[133.51499960800027,46.3637372610001],[133.43160956200006,46.35331520300019],[133.21272269800033,46.2178049740001],[132.92085259200007,46.16568881500018],[132.68110669100008,46.06144828200013],[132.52474966300008,45.94678904300008],[132.29942365400007,45.88629181900012],[132.1916355640002,45.838977819000036],[131.99348469100005,45.86773277600008],[131.70429964300013,45.813785841000026],[131.68969769700004,45.73072855700002],[131.60819961400023,45.62260854400017],[131.50016761100017,45.54744734700006],[131.26872264500014,45.459602152000116],[131.1545255840001,45.38219007900011],[131.04153468000004,45.34936503800009],[130.7539976820002,45.32440909500019],[130.70817566100004,45.26160785300016],[130.90338163700028,45.20690101500003],[130.94061254200017,45.092528940000136],[131.12326058300005,45.12609795900005],[131.30967763000012,45.23291274200011],[131.4656376910002,45.27186881100005],[131.6533205730001,45.27585490900003],[131.81970269200008,45.02553087900009],[131.79969760400002,44.920397841000124],[131.87840266900014,44.67116077600019],[131.75270060800017,44.300590299000135],[131.8533325640003,44.087711751000086],[131.84790058800013,43.876137427000174],[131.8173215610002,43.779316554000104],[131.8296506700002,43.657464134000065],[131.80853263300003,43.54456140700006],[131.72964467400016,43.40876585799998],[131.80740359000015,43.33329319000012],[131.99363657100002,43.31759539400019],[132.13723768300008,43.479139647000125],[132.4161076250001,43.97252713400013],[132.563003664,44.17634970600011],[132.8589016100001,44.44551809800009],[133.01629665300015,44.62145894000008],[133.33329754900012,44.933317706000025],[133.45179754300023,45.175539789000084],[133.5592035860002,45.45259002000006],[133.88830560300005,45.76922563200003],[134.2634886420002,46.06784954100016]]]},"properties":{"objectid":703,"eco_name":"Suiphun-Khanka meadows and forest meadows","biome_num":9,"biome_name":"Flooded Grasslands & Savannas","realm":"Palearctic","eco_biome_":"PA09","nnh":3,"eco_id":746,"shape_leng":11.3821137857,"shape_area":3.87306188621,"nnh_name":"Nature Could Recover","color":"#6BD3FA","color_bio":"#BEE7FF","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":33825.29037498259,"percentage":2.9251448625086565}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[66.93374662700018,28.970813573000157],[66.86237354800016,28.867818758000112],[66.8977966440001,28.81159982500003],[66.81388859700013,28.669195480999974],[66.8774334810002,28.597688459000153],[66.93145752900011,28.634906959000148],[66.92327863600008,28.739111785000034],[66.98811349500005,28.798110325000152],[66.93374662700018,28.970813573000157]]],[[[66.92326354800008,29.27261288200009],[66.71585050400006,29.153686416000028],[66.72255753500013,29.088339925000184],[66.61627148300005,29.02509259900006],[66.50334964500013,28.925796382000158],[66.4473804920001,28.707843933000163],[66.35462953700016,28.582039278000025],[66.32446256400016,28.469124648000047],[66.4177166020001,28.36196821900012],[66.71040360800004,28.583300084000086],[66.71180757700012,28.663925946000177],[66.76631157300017,28.832670085000075],[66.80874663399999,28.836349070000097],[66.93776658800016,29.02827219000011],[66.90895061000015,29.141136863000042],[67.11358656200008,29.183045373000084],[66.92326354800008,29.27261288200009]]],[[[66.76463351600012,29.26877195800006],[66.53079249900003,29.28712128600006],[66.52458955500015,29.160045095000044],[66.60881762400015,29.189825997000128],[66.71781958100019,29.177005374000146],[66.76463351600012,29.26877195800006]]],[[[66.36289258400018,29.138126922000083],[66.43750761600012,29.27350186600006],[66.37325261700005,29.369649001000028],[66.31807756600017,29.11326787300004],[66.27039358900015,29.103248314000098],[66.19270357200003,28.958414223000034],[66.18855251900004,28.839678865000167],[66.11675263300015,28.76732275600017],[66.21803251000006,28.726944279000122],[66.26257360900007,28.901716180000108],[66.36876662200001,29.08242934300017],[66.36289258400018,29.138126922000083]]],[[[66.90711950000014,29.54378136400004],[66.86480748499997,29.563621496000053],[66.76383958200017,29.425465939000162],[66.77938851500016,29.36713912400006],[66.88307148400008,29.326590494000072],[66.99932060300006,29.509172653000064],[66.90711950000014,29.54378136400004]]],[[[66.9595335520001,29.803142426000193],[66.87644156699997,29.744203565000134],[66.73426856300011,29.526741960000095],[66.68025256100015,29.419976966000092],[66.72293052999999,29.402736564000065],[66.81050851000015,29.575640977999967],[66.9254684920001,29.642237545000057],[66.9595335520001,29.803142426000193]]],[[[67.52730556900013,30.738953921000075],[67.68701954900013,30.858061939000038],[68.07803348800002,30.93051041600006],[68.13712355900003,31.020957186000032],[68.2022786070001,30.98438929000008],[68.35314163200019,30.95668022700005],[68.41584061500015,31.02805682600001],[68.23677064100008,31.05852487600015],[68.23693056800005,31.096165489000157],[68.64614849300006,31.179401476000066],[68.88305661600009,31.286898043000065],[68.97612759200013,31.46553165500012],[68.8230135230001,31.46381202400005],[68.71086852000008,31.35872558900013],[68.55049153100009,31.294127770000102],[68.49461357400014,31.338646237000034],[68.33357961100012,31.29558773000008],[68.11659963100004,31.29635769100014],[67.95623052100007,31.223866131000193],[67.90131363299997,31.17773280600005],[67.78707851800004,31.15356861800018],[67.77169755799997,31.22166806100006],[67.87274961500003,31.360062502000176],[67.88907655700018,31.496111688000155],[67.82321960800004,31.51369122100016],[67.61471557600015,31.46716679700006],[67.26364861300016,31.442112617000078],[67.06591063200011,31.45152817700017],[66.9129025100001,31.40915883000008],[66.73870057800008,31.336185142000033],[66.64218849499997,31.218487296000035],[66.58569362900005,31.107853047000106],[66.5662385620002,30.97583170200005],[66.52007254800009,30.820424344000116],[66.39659856400016,30.68418891300007],[66.4413684880002,30.59115347500017],[66.50901061500008,30.619686480000098],[66.51831855000006,30.684191092000162],[66.61123664100018,30.845264281000027],[66.82488263599998,30.86611258900001],[66.91197161600019,30.824713028000076],[66.98739650700008,30.86599272800015],[67.20761156700013,30.83505462000005],[67.33966057300006,30.881713155000114],[67.38996154700015,30.853973079000127],[67.32894162700012,30.763337213000113],[67.24741353700017,30.698148469000103],[67.26200056300007,30.648341189000178],[67.40350351799998,30.70555237200017],[67.52730556900013,30.738953921000075]]],[[[69.50367753800009,32.85091105300006],[69.45434551100016,32.909438195000064],[69.36915553600016,32.86684773300004],[69.30223056500012,32.635642657000176],[69.22312953900007,32.574799595],[69.17445364800005,32.465280140000175],[69.1927035650001,32.35576353400012],[69.24746656200017,32.33142215200013],[69.50327252400018,32.39765125700012],[69.58188656200002,32.40119093400017],[69.74217252300014,32.28332494700004],[69.80637354300018,32.32947352700006],[69.66362755200004,32.436528871000064],[69.89727763000008,32.45757046500006],[69.81582648600005,32.55687523100005],[69.78391255700012,32.69408195700004],[69.88588762900008,32.81730800300005],[69.87702158700012,32.85561782700012],[69.63021862700003,32.811365234000164],[69.50367753800009,32.85091105300006]]],[[[69.95982355900014,34.08714605100005],[69.92118063800018,33.982583988000044],[70.1714785170002,33.94833687300013],[70.35022763100017,33.868558086000064],[70.44452655700019,33.69041313900004],[70.42722362600006,33.596474803000035],[70.57903263300005,33.58821594700004],[70.72042058800008,33.67762269000019],[70.98729653000015,33.692282136000074],[71.0872195440001,33.786819443000184],[71.25447053200014,33.75941129000006],[71.27916764200012,33.799009915000056],[71.1458816350002,33.852376655000114],[71.16117056200017,33.899086319000105],[71.09509249800016,33.971025344000054],[71.04837059700014,34.07730720600017],[70.90804261700015,34.10899549400017],[70.67717751100014,34.12559300300006],[70.50063350800008,34.113523397999984],[70.17469750300006,34.12154202900007],[69.95982355900014,34.08714605100005]]]]},"properties":{"objectid":704,"eco_name":"Sulaiman Range alpine meadows","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Palearctic","eco_biome_":"PA10","nnh":4,"eco_id":766,"shape_leng":30.6535076159,"shape_area":2.26087405548,"nnh_name":"Nature Imperiled","color":"#720000","color_bio":"#D6C39D","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":23923.630125826254,"percentage":0.4899065891172534}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[35.77108396799997,31.384550756000067],[35.612353627000175,31.408202926000058],[35.602371153000036,31.1184413630001],[35.537106154000014,30.984855304000064],[35.64717623200005,30.952896835000047],[35.63690511900012,31.053600243000062],[35.67800413800012,31.283287094000173],[35.77108396799997,31.384550756000067]]],[[[35.77836847700007,31.501372690000096],[35.645448679000026,31.42511018100015],[35.78943013800006,31.41296933300015],[35.77836847700007,31.501372690000096]]],[[[35.788710680000065,31.532039572000144],[35.799052884000105,31.58590896300018],[35.748690849000184,31.782770558000152],[35.77432152799997,31.863439746000097],[35.69491139100006,31.895005950000098],[35.65147413600005,31.87576045800006],[35.681691358000194,31.750215100000162],[35.617120034000095,31.638249506000136],[35.61289322000016,31.618104692000145],[35.60794694900005,31.47079574100013],[35.64706745800015,31.44777309699998],[35.788710680000065,31.532039572000144]]],[[[35.692483222000135,31.89878310199998],[35.67449678100007,32.08035622299997],[35.647876849000056,32.09186754600006],[35.64535874500007,31.905797814000096],[35.692483222000135,31.89878310199998]]],[[[35.679532984000105,32.18665608900017],[35.698418747000176,32.45384466900015],[35.69167383200016,32.598995247],[35.57722873200015,32.592607042],[35.558955081000136,32.4263314050001],[35.66163647500002,32.35069243099997],[35.638973560000125,32.20185463200016],[35.679532984000105,32.18665608900017]]],[[[45.770076604999986,34.499781613000096],[45.771652571,34.519854259],[45.60493450500019,34.81687353700016],[45.10448861600008,35.28717558600016],[44.923812502000146,35.76854091000007],[44.94292860600018,35.9391907590001],[44.909633507000194,36.031081899000185],[44.614234620000104,36.094224452000105],[44.343749598000045,36.061709206000046],[44.24895446400012,36.09870726200012],[44.14614153700006,36.41808107500003],[44.07022060500009,36.53142452200012],[44.008388478000086,36.55960397800004],[43.860629607000135,36.564977784000064],[43.740478545000144,36.60443995100013],[43.177204593000056,36.65867287700013],[42.83009757700006,36.820656341000074],[42.786636571000145,36.90334985100003],[42.64019751400019,37.00794343000018],[42.59354752900009,36.90687075300019],[42.45463558800009,36.81426748700011],[42.22774551600003,36.79111197600014],[41.93947258700018,36.87249740600015],[41.624168523000094,36.79670505200016],[41.31141658100012,36.80167887400012],[41.070903569000166,36.6968720590001],[40.98463450700018,36.72105770600007],[40.83839762100013,36.81014359000005],[40.7519954550001,36.834652107000124],[40.614364604000116,36.83152817200016],[40.44060557200015,36.855323725],[40.261501568000085,36.95639573100004],[39.95695450300019,36.950647924000066],[39.73285258700008,36.87020428500006],[39.27315850600007,36.7322983410001],[39.12099846500013,36.6383903470001],[39.095519491000175,36.55297422800004],[39.013629471000115,36.481865681000045],[38.78363759100006,36.51402687600017],[38.63822950800011,36.40066733500004],[38.54808448600005,36.36599341400017],[38.49407150200017,36.42069002600016],[38.46456150299997,36.53612861400012],[38.486579589000144,36.66743883900017],[38.403221562,36.742537171000095],[38.337551530000155,36.66977772500002],[38.24330557800005,36.42202593400003],[38.0847474630001,36.33100098000017],[37.93885054700013,36.32685897800013],[37.81841651200011,36.120018753000124],[37.60887161500017,36.128708608000125],[37.553417614000125,36.02693101300014],[37.646728481000025,35.93713501400009],[37.65701659600012,35.87178332600007],[37.83251152100007,35.87378257800009],[37.761829613000145,35.94081986600014],[37.77489448600011,36.05463337100019],[37.87919251900013,36.04704154600006],[37.920967588999986,35.913152545],[37.84120154300018,35.75153537000011],[37.818016528000044,35.621487292000154],[37.85232147800019,35.52825856800018],[37.736606455000185,35.44346354700019],[37.55396646100013,35.41167635300019],[37.37701057100003,35.42358603200017],[37.344470514000136,35.247774606000064],[37.29367048100005,35.1684655410001],[37.31139753600013,35.03690788300014],[37.253921484000045,34.929026419000024],[37.1833725140001,34.88442279100008],[37.12018956000014,34.67966312300018],[36.9931225900001,34.5633942230001],[36.99584553500006,34.46260887800008],[37.047378482000056,34.29508631700003],[37.072105599000054,34.24485273300019],[36.99585358200011,34.16431085800019],[36.791820456000096,33.87426884500013],[36.671634526000105,33.79787718500012],[36.61114451000003,33.70022382200011],[36.41495148200016,33.60601156500019],[36.52024059100012,33.565824866000014],[36.639450532000126,33.44043545000011],[36.621993542999974,33.31270429799997],[36.466560536000145,33.348492007000175],[36.44348951500001,33.429140835],[36.21307753400015,33.45672785800002],[36.23324254900018,33.50774732900015],[36.354255606000095,33.59101198200017],[36.239189510000074,33.619904067],[36.06762351900011,33.43072384100009],[36.04865661300005,33.32342676400009],[35.92540357600018,33.253014083000096],[35.865867588000185,33.13985017600015],[35.93589352800018,32.97720705600011],[35.927612543000066,32.90337640300015],[35.83045555600006,32.77392444600008],[35.96369948600011,32.74632619099998],[36.04864152500005,32.69114091400019],[36.049244277000184,32.58559534900013],[36.01138281900012,32.35500917600001],[36.085756752000066,32.214085412000145],[36.023074006000115,31.981700595000063],[36.00481776800018,31.850219712000126],[35.91650434300004,31.50083309700011],[35.8725274950001,31.405594892000067],[35.88709651200003,31.36692404400003],[35.92864519200015,31.236522348000108],[35.800311936000185,31.136787534000064],[35.72225078100013,30.923738140000182],[35.718833357000165,30.887405529000034],[35.662715662000096,30.77211244400013],[35.70705223800013,30.601511051000045],[35.64823657700015,30.464814101000115],[35.645898341000134,30.37829932000011],[35.557674847000044,30.123701249000135],[35.491125016000126,30.064885586000116],[35.467832574000056,29.94509588900013],[35.404430370000114,29.923242364000032],[35.37322389500008,30.061737959000027],[35.42844226900007,30.407257489000074],[35.514687253000034,30.509870134000096],[35.51756508400001,30.78029627400008],[35.61783949300002,30.852601766000078],[35.64113193300011,30.915014716000087],[35.53420254100001,30.943972886000154],[35.48716799800013,30.87544454600004],[35.490675354000075,30.85449034200019],[35.432938879000176,30.728315458999987],[35.48896664200009,30.60780630500011],[35.325469895000026,30.33944860700018],[35.25847040200006,30.172174706000078],[35.21413382500009,30.008767890000115],[35.2147633510001,29.9353832110001],[35.09560318000018,29.717297615000064],[35.07896572200008,29.547685477000186],[35.15315979000019,29.576193986000078],[35.21988948600017,29.68851931],[35.20127352000014,29.729438463000065],[35.32564975899999,29.814963989000148],[35.3941780990001,29.805161379000026],[35.54445481300013,29.886729889000094],[35.601921491000155,29.77935083600005],[35.671651363000024,29.716722977000074],[35.65597074600015,29.94716433100018],[35.74464390100019,30.097351113],[35.82450369800006,30.538648441000134],[35.86092624200006,30.629030306000175],[35.974240819000045,30.753856206000023],[36.04960400600015,31.12374736400011],[36.112406698000086,31.256793684000115],[36.24210166400013,31.238926105000132],[36.314003980000166,31.10181006100015],[36.42436567400017,31.075055711],[36.5464323970001,31.090105033000157],[36.67351556000011,31.183745258000158],[36.743745729000125,31.310828421000167],[36.75879505100005,31.40614079300002],[36.71531923200007,31.556634013000178],[36.683548441000084,31.772340961000054],[36.698597763000066,31.99139220300009],[36.80059872300018,32.09506530900006],[36.99958420200005,32.120147513],[37.16178245000003,32.240542088000154],[37.228668325,32.344215195000174],[37.22771154200018,32.540355779000095],[37.18273548900004,32.626468999],[37.097164472000145,32.65188527700013],[37.16930751300009,32.77030866000001],[37.119106618000046,32.85468006000008],[37.14597346800008,32.90378845700013],[36.98505752300008,32.97076439000017],[36.93556959300008,33.08515993400016],[36.80929957400019,33.20605229100005],[36.80786861600012,33.34256432500018],[36.76150546000008,33.527941681000016],[36.84952952500004,33.62084619300015],[37.037799475000156,33.572523683000156],[37.14379853200006,33.77573772900007],[37.20812947100006,33.84291667100007],[37.39382550700003,33.944175091000034],[37.617954581000106,34.10738935300009],[37.808784532,34.06813740400014],[37.917007475000105,34.10148866100013],[37.85859248300011,34.1915129840001],[37.932273603000056,34.246652495000035],[38.026996485000154,34.23978671100008],[38.10207755000005,34.32512638800017],[38.252841502000024,34.35854252100006],[38.395774576000065,34.549981502000094],[38.497852579000096,34.56624306400016],[38.54060347000012,34.505724550000025],[38.64122754700014,34.49153801100016],[38.7567864990001,34.52961599200006],[38.83581946400011,34.493731891000095],[38.97783254100017,34.521204249000164],[39.20062654500009,34.59664221600008],[39.57950550100003,34.810697583000035],[39.615467553000144,34.89118246100014],[39.40836749000016,34.91456595900013],[39.38958750000006,35.02342710000005],[39.62892151400018,34.98207229900004],[39.854122465000046,35.02154620100009],[40.04719155800012,34.96520858000014],[40.168117611000184,35.027806142000145],[40.353885564000166,35.051799340000116],[40.56284356000015,34.98326320000007],[40.618720512000095,35.06888903500004],[40.59429950200007,35.145485883],[40.744098528000166,35.23673882500009],[40.75513850100015,35.354782006000164],[40.84244155400012,35.42707994400007],[40.88205359099999,35.50306307000005],[40.97394959200011,35.52532976300006],[40.947250548000056,35.35742163499998],[40.97043958600011,35.250857303000146],[41.050262462000035,35.27583470400009],[41.206069469000056,35.228530092000085],[41.239730522000116,35.34456714800018],[41.771621455,35.51140993700011],[42.31426251400012,35.629697031000035],[42.73101862000004,35.66888427200013],[43.44662846500006,35.689540634000025],[43.954311624000184,35.63276011400012],[44.31307552100003,35.49017337900017],[44.76898148400011,35.239374598000154],[44.78865850500006,35.24787753600003],[45.09349860000009,35.06185510900019],[45.17169153100019,34.98352219999998],[45.31828649200014,34.91580581000011],[45.49341160600011,34.80428576200018],[45.7143366140001,34.54478271000016],[45.770076604999986,34.499781613000096]],[[42.03441256000002,36.76172854400005],[41.960739487000126,36.690731309],[41.655109480000135,36.65671587000014],[41.47065346300019,36.65461000100004],[41.52659260900015,36.71673566100009],[41.64899857000006,36.733161341000084],[41.74679157600019,36.71565556900009],[41.90864947900019,36.763200741000105],[42.03441256000002,36.76172854400005]],[[40.220371569000065,36.548217330000114],[40.48549250800011,36.61894768500002],[40.60573157900018,36.61056293200005],[40.70754253400008,36.56920092200005],[40.879871614000024,36.54532138200011],[40.918949555000154,36.486221589000024],[40.864356542999985,36.40407424400007],[40.698932475000106,36.33811587399998],[40.55437046200018,36.363200396000025],[40.51839449500005,36.34158262900007],[40.21968458800012,36.34656080899998],[40.20771757700004,36.287419106000186],[40.09795353800018,36.31224848300013],[40.03175360199998,36.3709402450001],[40.042423597000095,36.437421813000185],[40.220371569000065,36.548217330000114]],[[39.47152345400019,35.29080746500017],[39.38747459000007,35.26115313000014],[39.27107945900008,35.27401868099997],[39.157710531000134,35.34839985700012],[39.23916251300017,35.41724244000005],[39.30766261100007,35.41871514000002],[39.39101058000006,35.51813490500018],[39.473918499000035,35.56696552600005],[39.753528563000145,35.59827981400019],[39.84781659200007,35.661823525000045],[39.90662754500005,35.61248948700006],[39.833286563,35.52006877800005],[39.61828253200008,35.4030937870001],[39.47152345400019,35.29080746500017]],[[40.71643858300013,35.466427950000025],[40.61527253200006,35.41524737900011],[40.54212550699998,35.43188294200013],[40.53898246099999,35.556762068000126],[40.609210572000165,35.59623513200012],[40.80437061500004,35.624200346000066],[40.71643858300013,35.466427950000025]],[[38.16513846400005,34.88539559500009],[38.080829593000146,34.853696578000154],[38.01034952200007,35.01010658000013],[38.09558157500015,35.08522653700004],[38.186508461000074,34.96235471000011],[38.16513846400005,34.88539559500009]],[[38.766086556000175,34.87118206700018],[38.67303452300018,34.81050362600007],[38.49819556600016,34.77952847000006],[38.44388552700008,34.93424549500003],[38.59563452000009,34.98761491600004],[38.840827484000044,34.97166231000017],[38.766086556000175,34.87118206700018]],[[37.80678947100006,34.88123364500018],[37.63739355500019,34.827261229000044],[37.62495849900017,34.86543711000007],[37.73219656800006,34.93034656800012],[37.85664754600003,35.042621659000076],[37.9454264850001,34.99404702100014],[37.91632854100004,34.94267115100013],[37.80678947100006,34.88123364500018]],[[37.273807550000186,33.92800455500003],[37.139083544000016,33.85419938300015],[37.11502848700002,33.899998102000154],[37.30651859700015,34.02404457000017],[37.50027048100014,34.19021999100016],[37.835025589000054,34.38503486700017],[37.86031747900017,34.339824055000065],[37.74623458000002,34.20882764900017],[37.63671160300004,34.199145880000174],[37.57567559000017,34.14300640700003],[37.34215560000007,33.994397610000135],[37.273807550000186,33.92800455500003]],[[36.90297635400009,32.27464053100016],[36.721569261000184,32.26239833400007],[36.62140583600012,32.29912492400018],[36.54491054300013,32.388515485000084],[36.52869457800017,32.46737008300016],[36.59167452200006,32.72501805200005],[36.56874850800011,32.835045619000084],[36.652194546000146,32.973255324000036],[36.766300579000074,32.94655024500014],[36.79959148700016,32.79349384300019],[36.98392848100008,32.593246991000115],[37.02280056200004,32.43393500700006],[36.90297635400009,32.27464053100016]]]]},"properties":{"objectid":718,"eco_name":"Syrian xeric grasslands and shrublands","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Palearctic","eco_biome_":"PA08","nnh":4,"eco_id":739,"shape_leng":60.2205936149,"shape_area":13.6315260271,"nnh_name":"Nature Imperiled","color":"#C9AB17","color_bio":"#FEFF73","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":138254.34832379984,"percentage":1.3048651556164355}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[93.93505062100019,66.65071134000004],[93.5936206680002,66.85277069500006],[93.05329854600018,66.9081856360001],[92.54907258700013,66.90838479000001],[92.04480756800001,66.88486969600001],[91.67706263000008,66.80344436800004],[92.14634661400015,66.60632949800015],[92.7359385690001,66.61083041200004],[93.22985864200007,66.58064701100011],[93.52385758400004,66.42552581100006],[93.47885866700017,66.22991297800019],[93.49997754200007,66.036391262],[93.84689361900013,65.7068089620002],[93.79605854900007,65.45976359700018],[93.65219156300003,65.30657342000006],[93.99265256800015,65.21682503000017],[94.48578658700012,65.19094439500009],[94.71508058900014,65.25933787500003],[94.88509358100009,65.37740888400015],[94.53494259300015,65.59499454100012],[94.46307364100005,65.76867813600012],[94.54470851600001,65.93557926300014],[94.54934655900018,66.06385205300006],[94.1442416340002,66.33818755300007],[93.93505062100019,66.65071134000004]]],[[[110.76360366900008,69.27357095200017],[110.91069752000004,69.36081818200012],[110.75309762400002,69.47484542500007],[110.42209660200007,69.5772603800001],[110.30509965100003,69.58054960600009],[109.44020056599999,69.4938135050001],[109.05159759700007,69.36731851600007],[108.99389657500018,69.20027892000007],[109.3861005770001,69.189566345],[109.75900256500006,69.23468914700015],[110.53250152200008,69.21002958800005],[110.76360366900008,69.27357095200017]]],[[[113.80090363400006,69.21912428800005],[113.92800161700006,69.35911598500019],[113.64040359900002,69.55083106600017],[113.26589966200004,69.6360404880001],[113.03189855000016,69.56741784600018],[113.02100358500013,69.47466270000012],[113.14099857600002,69.31217011900009],[113.48799863900012,69.2028501530001],[113.80090363400006,69.21912428800005]]],[[[111.9720005220002,69.33420480100017],[111.95639761000012,69.60389689500016],[111.86029858700005,69.70737182500005],[111.51210058200013,69.8611975180001],[111.0076975980001,69.83812398300012],[110.9956965560001,69.75321949400018],[111.15489957500012,69.60159941500012],[111.35320266400004,69.50681450700006],[111.45359758000018,69.39572428300016],[111.646400632,69.31573360100003],[111.9720005220002,69.33420480100017]]],[[[120.14579764600012,70.15085597500007],[120.3188016360001,70.23944581900003],[120.25189963200012,70.32693713000003],[119.88069967400008,70.34860669700015],[119.7282026800001,70.29388510700005],[119.78469855100002,70.16850424000017],[119.9887995700002,70.12431937300016],[120.14579764600012,70.15085597500007]]],[[[121.3470006470003,70.09328185600009],[122.01879862000021,70.31554562100007],[121.96459955800015,70.38738842200007],[121.61450154400029,70.43587639100019],[121.27539857500005,70.37864525900011],[120.9446025750002,70.23534857700014],[120.85350067500019,70.14166270400011],[121.10009760700007,70.08297312100007],[121.3470006470003,70.09328185600009]]],[[[83.17604053300005,70.49039195400019],[83.108688588,70.5625158840001],[83.268760643,70.72823616800014],[83.10431658700003,70.74358712100013],[83.02880050100015,70.56668219200003],[83.17604053300005,70.49039195400019]]],[[[116.3145976740002,70.65229579000015],[116.4634016010001,70.73382186800012],[116.37950160000003,70.81702499800008],[116.07579758800023,70.90781995200012],[115.61280053400003,70.90907120300017],[115.39929954600007,70.84736128500003],[115.29029859500008,70.7242232480001],[115.54129753600012,70.63538898800016],[116.05439758300008,70.63325998500011],[116.3145976740002,70.65229579000015]]],[[[127.95832853900026,72.62126402400008],[127.16470362700011,72.58904985500016],[126.90442659000007,72.50904308100013],[126.70110357900012,72.50182525600007],[126.65358757600018,72.43013517300011],[127.50444060300026,72.43819269700015],[127.8093266320002,72.351792542],[128.46429458100033,72.20997610400013],[128.49439969500008,72.15088234600012],[128.90190167700007,72.09633694300015],[129.33949267900016,72.11995915800003],[129.37680069700002,72.33226723400008],[129.28019758700032,72.42937242000016],[129.00129663200016,72.47323693100014],[128.698242552,72.47306862300007],[128.17053267900008,72.5665426010001],[127.95832853900026,72.62126402400008]]],[[[128.89358565500004,72.640154989],[128.68829356800006,72.67099486100017],[128.12329059700016,72.63460063700018],[128.33828758700008,72.55680702100011],[128.77996862200007,72.53986803200002],[128.97219868700017,72.58959987600014],[128.89358565500004,72.640154989]]],[[[128.30191063000018,72.78655733400018],[127.87859367400006,72.76072263200007],[127.6383205520001,72.69515117100008],[128.0061035440002,72.65237781600013],[128.63442961400006,72.69933273500004],[128.93780555900003,72.67175795000014],[129.03387457500014,72.72432689900006],[128.5346985450002,72.78350498000003],[128.30191063000018,72.78655733400018]]],[[[128.45773356300015,72.89879185600006],[128.32247965300007,72.82240254300012],[128.83914167400007,72.79404958200013],[129.16783163700006,72.8436662580001],[128.75833157700004,72.89046074700002],[128.45773356300015,72.89879185600006]]],[[[122.45054659800007,72.92517691300009],[122.68193054400001,72.83212286800011],[123.17330956,72.8037702420001],[123.1874766520001,72.86683786100019],[122.72331267000004,72.88212896700009],[122.45054659800007,72.92517691300009]]],[[[120.31659669300006,73.03654977500008],[120.22429668400025,73.13926999900008],[119.74800056700008,73.15267601500011],[119.75620259500033,73.04712421699998],[120.31659669300006,73.03654977500008]]],[[[128.11990363700022,73.42818313800012],[127.47979764000013,73.48758149400015],[127.2238005710002,73.53949514700014],[127.03849764600011,73.48468236200006],[126.73139963300002,73.48365960200016],[126.57026659700011,73.36657899900013],[126.60054069000023,73.25631187800008],[126.76277158800008,73.17241472600006],[126.77998365900021,73.08824181099999],[126.66526759000021,72.99433365000004],[126.36192366400007,72.91627985800017],[126.44999668000014,72.78432858600013],[126.3338776490001,72.71460741200008],[126.38442957700022,72.60514880900013],[126.30220059300018,72.50626615600015],[126.92414853800005,72.57070773599997],[127.31775667600004,72.70461216000018],[127.64637757200023,72.7157218700001],[128.17413354500013,72.80654733500006],[128.37606767400007,72.91905711800007],[128.64221154100005,72.93378294900003],[128.98718268000016,72.99544710200018],[129.13099669300004,73.11860860800016],[128.7924046840003,73.14566438500015],[128.95880155600003,73.22132229300001],[128.69419861900008,73.27309010100015],[128.5596925420001,73.24419667500013],[128.26609760700023,73.28712995600017],[128.42430167100008,73.36464881400008],[128.0648036880001,73.36473280100017],[128.11990363700022,73.42818313800012]]],[[[124.88469654400012,73.70558222300019],[124.50710253500017,73.7900143080002],[124.27120158100001,73.81205686900012],[123.98349761600002,73.64811388400011],[123.38729854200005,73.65962760100018],[123.35399657000028,73.55132184500013],[123.4897996630001,73.47194773600012],[123.21790363200023,73.43986432500003],[123.65039860400032,73.20602397900007],[123.37049869400005,73.15264550500007],[123.45999864400017,73.070265813],[123.28410356800009,72.9443496790002],[123.08509857800004,72.91276314700008],[122.73269654600006,73.01117272500005],[122.51361069600011,72.94821792700014],[122.97026063700002,72.88962138300002],[123.25166359100012,72.8868442910001],[123.67025768000019,72.79627782699998],[124.16693154400002,72.75127673000009],[124.47331256900031,72.66460164800009],[124.76499961400009,72.6696061470002],[124.90054353800019,72.59710754600013],[125.15609754000013,72.55903375700018],[125.29443364400015,72.4801409370001],[125.7241516920003,72.36403028800004],[126.16581764000034,72.3006875750001],[126.3830415340002,72.38847677900014],[126.24803153700009,72.53043721800009],[126.27332258900014,72.70461216000018],[126.38165265300006,72.79766570200019],[126.3299866020003,72.92572542500017],[126.56553668900006,72.98461315600014],[126.71499658400023,73.0832366410001],[126.55609162500002,73.23380462300003],[126.49665856700017,73.36833400200015],[126.30310064100001,73.38463227700015],[126.31990065700006,73.5652386540001],[125.96779668600004,73.52199960100012],[125.63899960200001,73.41422777200012],[125.62519863100022,73.57820093200019],[125.38289658500003,73.55605158500015],[125.19779968800003,73.59308015100004],[125.2573016450001,73.68650836500012],[124.88469654400012,73.70558222300019]]],[[[124.67620055800012,73.89810749900016],[124.57189967600016,73.97897677100013],[124.33029969800032,73.91707490700009],[124.47509757900002,73.8551817610001],[124.67620055800012,73.89810749900016]]],[[[84.40988165900006,73.99424357000004],[84.44756351100017,74.08900651700003],[84.22010061900016,74.08104907400019],[84.04187755300018,74.01707185100014],[84.40988165900006,73.99424357000004]]],[[[83.73648861000004,74.13241320900005],[83.60227154100005,74.18210666300018],[83.14031250300013,74.17476579200019],[82.9842686230001,74.13351140600008],[83.47901163200015,74.08806036800019],[83.73648861000004,74.13241320900005]]],[[[112.3860016640001,74.52516136400016],[112.01689952800007,74.54034417600013],[112.05709863300001,74.44339891600015],[111.9498976110001,74.35407649400014],[111.5942995600002,74.36442998800004],[111.5055006720001,74.30674053400003],[111.83280158600002,74.23225726600015],[112.10089860300013,74.10564744500005],[112.87039956000012,74.0901058880001],[112.93589759600013,74.17048599200012],[113.24490366500004,74.20810095600007],[113.56430061200012,74.43538766000006],[113.33599852400027,74.49957795100016],[112.3860016640001,74.52516136400016]]],[[[86.24796262000012,74.56586690300009],[85.99034851300019,74.62784370100007],[85.75227362900017,74.59175457900011],[85.81273665500015,74.49625922100017],[86.24796262000012,74.56586690300009]]],[[[85.47097762900017,74.51577648200009],[85.6641766410001,74.57166500100004],[85.4845965450001,74.64893994600004],[85.17941262400007,74.56756004800008],[85.47097762900017,74.51577648200009]]],[[[79.39824652800019,74.54498372700004],[79.38750461600011,74.64945945600005],[79.10962658800008,74.60959378300015],[79.39824652800019,74.54498372700004]]],[[[87.08669256500013,75.0188531140002],[86.63121055800013,75.0162275670001],[86.57839166000008,74.94015777200013],[86.33656352700007,74.88987674700019],[86.96322662800009,74.85496226400011],[86.85590356600011,74.92965943900003],[87.20403250400011,74.94827665100013],[87.08669256500013,75.0188531140002]]],[[[82.35782663700019,75.43206468100016],[82.32212056700013,75.52244908900013],[81.53752849700015,75.38676602599998],[81.89087651000006,75.33099150100009],[82.44342062000004,75.3488454580002],[82.35782663700019,75.43206468100016]]],[[[93.27847250700012,75.91178664800015],[93.28175351900018,76.0418000250001],[92.94132956200008,75.98578125100016],[93.08812753300009,75.89953347900013],[93.27847250700012,75.91178664800015]]],[[[96.09868654400015,76.29355635399997],[95.53154752900008,76.29528889400018],[95.53559867000013,76.21984355100017],[95.89050253300019,76.16447404000019],[96.287712543,76.14529943000014],[96.7027285650002,76.18324346800011],[96.70072964900004,76.2658742810001],[96.53556860500004,76.31046382700015],[96.09868654400015,76.29355635399997]]],[[[96.96067057100004,76.16123074600006],[96.94509163100014,76.24728053700017],[97.21588862700008,76.32216865100014],[97.03349254600005,76.38844184500016],[96.82337164400013,76.21708137900009],[96.96067057100004,76.16123074600006]]],[[[112.61430358400014,76.62462526900003],[112.17710167000007,76.6301650370001],[112.17569753400028,76.56818689800008],[112.49120360100017,76.45881932200007],[112.80149864000009,76.53659835400015],[112.61430358400014,76.62462526900003]]],[[[96.3119506600001,76.61661367900007],[96.58171064700008,76.7208226960002],[95.94716654500007,76.68685453],[95.90440358400008,76.63224022800011],[96.3119506600001,76.61661367900007]]],[[[96.37566351800018,77.05963648900013],[96.6722335250002,77.13525667900007],[96.49001363200017,77.20851166200003],[96.1998366700002,77.11118385300011],[95.62979852200016,77.06677803800011],[96.23104853000007,76.97859220300006],[96.37566351800018,77.05963648900013]]],[[[107.37889862700018,77.22159681900013],[107.87219961300002,77.26973341899998],[107.88860366900019,77.33788399100013],[107.44650253200012,77.33538165800007],[107.37889862700018,77.22159681900013]]],[[[89.729820625,77.2216345380001],[89.83215360400015,77.31987748400019],[89.32311257700013,77.3045261960001],[89.28603355200005,77.22667072000007],[89.729820625,77.2216345380001]]],[[[130.30340567700011,70.94315403300004],[130.33940159300005,71.02522795200014],[130.13729865200014,71.09324776699998],[130.0027005420003,71.06678039900015],[129.76620464100006,71.11978420200012],[129.76220664100003,71.25143037400017],[129.42050159400003,71.39481003600002],[129.22610463900003,71.59855767400006],[128.87440467600004,71.72174952200004],[129.53540055500002,71.7538932830002],[129.09140058200023,71.98591023000017],[129.09240758400006,71.80541047100019],[128.8097996480002,71.79008935800005],[128.66479456700006,71.82692631400005],[128.41709859900016,72.02780583200007],[127.81629953700008,72.30021433300004],[127.02915953500019,72.40124845300011],[126.72303767900007,72.39430605800004],[126.88581859700025,72.29763505400007],[126.91526757600002,72.17317770500006],[127.04721063400007,72.00568649300016],[127.31886258400004,71.90900023400008],[127.13303361200008,71.84371945700013],[126.79942363900011,72.01818391000012],[126.77361257400003,72.11456523600015],[126.40054361900013,72.34124794000013],[126.11775161600008,72.26569732000019],[125.88220253500003,72.33097843200005],[125.67165365300002,72.33596734100007],[125.52053866700021,72.40153863400002],[125.23081969300017,72.46153981800018],[125.16638163300001,72.52015245500007],[124.72971364600028,72.62515523800016],[124.34304756700021,72.63960630999998],[124.10887160900018,72.71016651200017],[123.7877736390003,72.75516828000002],[123.34387156600008,72.726265131],[122.65358764100017,72.81098756400019],[122.37415359700003,72.86905085100011],[122.05330658100013,72.89073567300005],[121.88723760900018,72.96426390700015],[120.89219656900002,72.95536769000012],[119.92469762400003,73.01673445300014],[119.65969855800006,72.9770055730001],[119.34570358000008,73.06136205300015],[118.33149765400026,73.23817578600017],[118.43009968100012,73.36803678000007],[118.31249956700003,73.41860698100015],[118.95939658300006,73.42048419200012],[118.97309864700003,73.46041205800009],[118.45010359600008,73.55110056300009],[118.15609761300004,73.57306701600015],[117.22350359500001,73.59431614700014],[116.6257015660002,73.6466874510001],[115.53040357600014,73.69851711700005],[115.19750254500002,73.6768101670001],[114.80999760500026,73.58454988800008],[114.23319962000005,73.58120752100018],[113.6043015680001,73.52438777200013],[113.64550063400009,73.43775862400014],[114.02690153700007,73.31158332100011],[113.56359854400011,73.32169290200017],[113.2785035300002,73.46331119100006],[113.5112996590002,73.62164618000003],[113.40339656900005,73.68294471500013],[113.25859868900022,73.85964478900007],[112.94750267600023,73.96141232500008],[112.79579961600018,73.96253348900012],[112.97499867100021,73.7953170350001],[112.86509666500001,73.72472548400003],[112.44889862700006,73.68198280700017],[111.90229762100017,73.7257028140001],[111.44129965200011,73.79280699000014],[111.22630266200014,73.87972632000009],[111.28990152600005,73.96409755200011],[111.20010368200013,74.03021081900016],[110.85800166800004,73.91907348799998],[110.35279854700013,74.01113545200008],[109.93080157300017,73.94967749300008],[109.51719656100005,73.75294115000014],[109.63050061300015,73.67934384900013],[110.38780254800008,73.70082113500007],[110.72339668500007,73.78171303800008],[110.76899759100013,73.6687378920002],[110.157699525,73.56366604100009],[110.14060262100008,73.51218791200017],[109.62329854700005,73.45851992700011],[109.26069657700015,73.44457193800008],[109.18499759800017,73.3642446390001],[108.88839758300014,73.32899488000004],[108.41940260700005,73.34330027500016],[108.22949952700014,73.32140305500008],[108.10659752400005,73.228211547],[107.83640268400018,73.18715597900018],[107.09860258800006,73.18271474400012],[106.82649952400004,73.162250998],[106.45279656100018,73.19849367700016],[106.20629853500009,73.14767017499997],[106.28649859600017,72.97962273900015],[106.00180054900017,72.94419796600016],[105.9634015420001,72.88761425200016],[105.52320058300006,72.79451461000002],[105.20010352900016,72.82392067300015],[105.63359863000011,72.91783621000013],[105.93070256400017,73.14433602100019],[106.16310155900015,73.28222369300005],[106.44309953800013,73.32492831600018],[107.00050364300012,73.35179315400006],[107.04329661100019,73.44424370200011],[107.22709666100013,73.54680416700006],[107.18890368100017,73.60582215300019],[107.6038965690002,73.63215976900017],[107.85959658400009,73.58749495400019],[108.34950256400003,73.69680771200012],[108.86319755900018,73.92745153600009],[109.09230062100005,73.98745288700013],[109.62590062500004,74.0747918150002],[109.94960067300008,74.20652197300006],[110.01599859000004,74.38155891100001],[110.38960264600018,74.43085506200003],[110.43759960300014,74.49416827100004],[110.71759758200011,74.50368273700013],[111.0595016150001,74.55718341900013],[111.05280263000014,74.61204984900013],[111.50189963800005,74.7003582280002],[111.84819763300015,74.6653979800002],[111.98269666900012,74.77179702100017],[112.22889663500007,74.88358260800015],[112.72650156100008,74.93106357500005],[113.6961975700001,75.29267363100007],[113.74520152900004,75.48056036100013],[113.39830054000004,75.49920054000006],[113.28559864300007,75.60409603500017],[113.65679960700004,75.58065671300005],[113.95050065700002,75.81032454800015],[113.8637995910002,75.89570362000006],[113.65460153700008,75.89956365400008],[113.42169962800017,76.07292270200014],[113.37539665400016,76.23273843800013],[113.1126025320001,76.19113301800007],[113.0025025450002,76.06851298300006],[112.58879862600008,76.24227587100012],[112.77940360800017,76.2659740260001],[112.79840068800013,76.36739019300006],[112.1602015740001,76.50687277300011],[111.98650356200011,76.58774238100011],[111.70680263800011,76.62493070600016],[111.68460065300013,76.70297645000011],[111.342201584,76.69575141700011],[111.1445995580001,76.75482891500002],[110.5831986250002,76.75184629900019],[109.92839864900014,76.6711753420002],[109.5506975190001,76.77903199600001],[109.23539764600008,76.73918845100019],[108.39710255400013,76.74085879700004],[108.01020060900004,76.75614906500005],[108.14050265800012,76.63653561800004],[107.68389865000012,76.52705421700011],[107.15630360900002,76.54514420800007],[106.67069955700003,76.525070052],[106.88790165900019,76.70721098800016],[107.59249852200008,76.937764287],[107.32450057800014,77.03525219200003],[106.83170368000009,77.06941045900004],[106.67819951700011,77.02260892900011],[106.20760359700006,77.07674278000019],[105.88600153900006,77.00807420600017],[105.71970357400005,77.04750452200005],[105.75299867300004,77.1369198160001],[105.0328976360002,77.0894851170001],[104.60320255400012,77.09327692200009],[104.50930059600006,77.13794324600008],[105.06240059400005,77.1789753440001],[105.63770257700014,77.27972950900016],[105.85939754600014,77.3544793210001],[106.26540352500012,77.37831510700016],[105.98459652500009,77.48163212200018],[105.91999853900012,77.55504686500007],[105.42469763000008,77.55032383000014],[105.09909857800011,77.58864907700013],[104.841697539,77.69745841800005],[104.56729867200005,77.66586350400013],[104.43849966600004,77.75779672100009],[104.18489864700013,77.73994209400007],[103.7125016240002,77.64563629500009],[103.29409763700005,77.6362680100001],[102.42459856300019,77.37898633000003],[102.0850986270001,77.33133772500008],[101.53340159200013,77.10497386800012],[101.42240155700017,77.00503006600019],[101.07659960300015,76.920367983],[101.21330257700004,76.79774006800005],[101.40190160100008,76.7573931070001],[101.29460167300005,76.68969264300011],[101.29599759500013,76.53889549900003],[101.97959862900018,76.45944578500013],[101.91459663500018,76.40603613100018],[100.99279767000007,76.52217092000012],[100.53279865600018,76.45879736100011],[100.36009959900008,76.51287823900014],[99.98657953000009,76.48792849799997],[98.86662265100011,76.49973122400007],[99.06202660700006,76.34973505500017],[99.34916663800016,76.33267503200017],[99.97569261100017,76.08947930800008],[99.58164962000006,76.08191849600013],[99.57998665000014,76.14293456000007],[99.32393660700006,76.21415274200012],[98.85915353700011,76.19812922500012],[98.77130850999998,76.2407951240001],[98.369499517,76.15597311300019],[97.81813055000003,76.08004849300005],[97.37950857400017,75.92507833500002],[97.14803360000013,75.96933126400006],[96.93215164900005,75.8626041550001],[96.57312053700008,75.98746752300008],[96.31060754400016,75.91911159400007],[95.75243364400012,75.86375616400011],[96.28780357000016,76.08059851400003],[95.7255015840002,76.140279341],[95.2568125470001,76.10338890800011],[95.06118060300014,76.15368518900004],[94.58785251900014,76.13350424800012],[93.9250565420001,76.13330610000008],[94.11486054900001,76.03315526500018],[93.69450357800014,76.02691359700015],[93.60336261800012,76.12562241000012],[93.37407666300015,76.09825331600007],[93.50630956700019,75.96816400000012],[93.44006353100008,75.92677935900008],[94.2194596600001,75.88421991000007],[93.12896751800014,75.79240940400007],[92.51438860700006,75.77154114700011],[92.05956256800016,75.7361157040001],[91.78205166700008,75.74171582100007],[91.50509665500005,75.65663581600012],[90.9818265090002,75.67847167900004],[90.63276650900008,75.60782732300015],[90.33007050400005,75.60730831500001],[90.15998056600006,75.52084563100016],[89.60031854400006,75.46922216000019],[89.37464150000017,75.49981040699998],[88.62088762500014,75.28460956900005],[88.49907661100013,75.22069403700004],[88.15197764200019,75.13134043400004],[87.47576156700018,75.17431210500001],[87.35072352100013,75.10214073400005],[87.35408751400007,74.94161538500003],[87.19795260700005,74.87858481500007],[87.01435053800003,74.65287022000018],[86.72502165700001,74.68820396500007],[86.67135652200005,74.74378721500005],[86.33244365399997,74.76878288900019],[85.88141662900017,74.74997574200006],[85.76992759400008,74.68828107900003],[86.37337449900008,74.64282886800015],[86.85484359100008,74.57836348300003],[86.93166356600011,74.49102539300003],[87.21176950300014,74.49911258800012],[87.33627362300007,74.3960708350001],[87.12223854000018,74.32959982800014],[86.77559655200014,74.36154560800014],[86.70291857800004,74.44532222700008],[86.47132860500005,74.49442827800016],[86.15618161800006,74.45794218800017],[85.88226353599998,74.35360358700018],[86.45172853000008,74.30645035300012],[86.68855249900008,74.26510359800005],[86.77857950300012,74.15317367400013],[86.94058258100011,74.10734042200005],[87.33280150299998,74.09264577200014],[87.43013752700017,74.00649724200014],[87.04305252100016,74.0326286630002],[87.17236366200012,73.87897094300007],[87.40415161600009,73.81509430300008],[87.38847360100004,73.70459835600008],[87.14312758400018,73.59952667300013],[86.43068660000006,73.54682713300019],[86.09224664000004,73.4968061140001],[86.02047759900012,73.54727036800017],[86.20845753600014,73.6139854560002],[86.72682963300008,73.71811836500007],[87.02268952600008,73.80104740700011],[86.8002626490001,73.88355618000008],[86.07704957900006,73.85158022500019],[85.57969661300012,73.78761859200017],[85.51336659000009,73.7246111550001],[85.0593336460002,73.69142921200006],[84.78543853100012,73.75051492400013],[83.14119763200006,73.6558889370001],[81.91783857800016,73.6573842680001],[81.14234958900016,73.60436386900017],[80.54680665100011,73.59821473800002],[80.55959358000001,73.48681840600005],[80.47003160300017,73.347940161],[80.59535949600007,73.23546004900004],[80.56372049300018,73.15398878900004],[80.38948050800013,73.07837614300013],[80.62127650800005,73.05801968499998],[80.82272364900001,72.92986105600016],[80.64222757800019,72.77160217400018],[80.75773657400009,72.62843541200016],[80.69320664800006,72.52914808100007],[80.8385396290002,72.45259766800012],[81.52454358700015,72.34948835700004],[82.0813825850002,72.31222425900006],[82.1911315370001,72.32512585200004],[82.3742216390001,72.19560080500008],[82.2303776190002,72.10157798000006],[82.74401058800015,71.9074064990001],[83.05760155899998,71.91098456500004],[83.43556252800016,71.84535292200002],[83.74826853700011,71.63376921100013],[83.67214157800004,71.53892244400015],[83.44116264500013,71.48320894000005],[83.36984254000004,71.35519531700015],[83.18456258100014,71.273098431],[83.26275651800017,71.18702634400006],[83.11839265300011,71.12670480400004],[83.33740960300014,71.04869728100016],[83.52433057100006,70.93476860900006],[83.80812856900013,70.5036672120001],[83.50734766100015,70.35232977100003],[82.95700849400009,70.36013516600002],[83.12021655500007,70.22996957400017],[83.15218362500019,70.14385172200002],[83.41226150800009,70.07020161500009],[83.68866750600012,69.93877018799998],[83.72396051500004,69.87171077200009],[83.97663851800013,69.75292260700019],[84.4544064970001,69.7190764820001],[84.50229650100016,69.65130058100016],[84.78610958600018,69.73715926500012],[84.9969025490002,69.77029510699998],[85.25923952300019,69.77029510699998],[85.6677096140001,69.70403029500011],[85.86462365400013,69.60472100400006],[85.981170497,69.47244954200016],[85.84355959600003,69.3073562240001],[85.930618568,69.10957482500004],[85.92333251500014,68.94504611200006],[86.08886755900016,68.78076868900013],[86.19541160700015,68.4857236850001],[86.34880864900003,68.33260140100003],[86.43505055400016,68.36447090600018],[87.02424654800012,68.29774056300005],[87.3270416270002,68.21773412400017],[87.65178656300003,68.16489008000013],[87.93018359900015,68.21587267100006],[88.11752366100006,68.3420699350001],[88.26318353600004,68.53595056400019],[88.48314663600001,68.66712969500003],[88.77610052300014,68.72458294800009],[89.21167752100013,68.68226053900014],[89.4589465150001,68.78461430600004],[90.3308865670001,68.64321025800001],[91.15029857200011,68.62891240800008],[91.25453156100008,68.6431872920001],[92.07147258200007,68.64542341600003],[92.38712365600009,68.62891240800008],[92.77825963600009,68.56143389600015],[92.80641159900017,68.4632466060001],[92.32829258600015,68.39418860900014],[91.67601053400006,68.37730376800005],[91.42626954900015,68.40147533200002],[91.10518666600018,68.39795795000015],[90.49285863100005,68.236290316],[92.18753863900014,68.22729452300013],[93.01508360500009,68.23735817100004],[93.24915361600011,68.20452759699998],[93.20175160600007,68.13736977700012],[92.68393657100012,68.00982168600018],[92.58470154300005,67.96414249300017],[92.4399336690002,67.80799115700012],[92.26096360800017,67.73582833500018],[92.13423962500019,67.581331922],[91.99517865500019,67.5273668820002],[91.54524965900004,67.42871389400011],[90.70218660500007,67.36182362400018],[90.64096853700016,67.26899840500016],[90.39787255700014,67.04646088700014],[91.46034952900015,67.29370372900001],[92.3443295140001,67.45822523400011],[92.69915760400016,67.38706287600002],[92.52378052900019,67.28520447900007],[92.23039966900018,67.22273214300009],[92.12931861000004,67.06815191100003],[92.57235751399998,67.05223618600007],[92.9563906690002,67.0735082830002],[93.84942662999998,67.00334488000004],[94.4241866390002,66.9133210600001],[94.7783205400001,66.72462128600012],[94.90334366700006,66.39110049700008],[95.12889867000007,66.11464303400015],[95.19069659800016,65.8709710500001],[95.27738961700015,65.63514955700009],[95.5285186440002,65.4466869900001],[95.66948666600018,65.37641646600008],[96.23085055000018,65.14165629000001],[96.6404035830002,64.90664381800008],[97.15969852700016,64.75587282500015],[97.43802666300007,64.74764028800013],[97.24867259700011,64.84450809900017],[97.11624858500005,65.01851238500018],[97.05889155700004,65.21149883300006],[96.61535661200014,65.41428372600006],[95.94479362800007,65.63759154000007],[95.55740352100014,65.84955428100005],[95.4232325530001,66.05521433400008],[95.50464664900005,66.7041201560001],[95.38359855600004,66.90276841200006],[95.10337862400007,67.0577685770001],[94.62959255300012,67.22589061200006],[94.3903425260001,67.22344125200004],[94.17175254900013,67.26516821000007],[94.0850065570001,67.35802310100007],[94.17252351600007,67.41529195200019],[94.49176053700006,67.45667625800002],[94.76019266300005,67.42296072300007],[95.60019665700003,67.27635402800007],[95.96851357600019,67.14769986100009],[95.92014362500004,66.66804662400017],[96.02278153800006,66.33715054400017],[96.37116260300019,66.27694333400018],[96.48023966200003,66.11768734100002],[96.47000854300006,65.93117725500002],[96.75727866100016,65.74142471300019],[97.18331152200017,65.59649741600003],[97.97794360400019,65.54047964799997],[98.42958066400013,65.43259449600009],[98.832527584,65.44396991200017],[98.8229526,65.54627020200019],[98.6597975140001,65.65943561800003],[97.55568662300016,65.88479582600019],[97.1978606620001,65.92911011000018],[96.7737425630001,66.12161694500008],[96.66858655900006,66.27742445500013],[96.96822367200014,66.32127957800003],[97.28903950700004,66.2222606360001],[97.71705653200007,66.33162620000013],[97.93811766100004,66.16856197300018],[97.96241763700016,66.01161804399999],[98.13864866000006,65.9321001020001],[98.32171663399998,65.90350373100006],[98.6316525920002,65.89318829000018],[98.69174161700005,66.06854390700016],[98.44246666700008,66.25079598700006],[97.92637662700008,66.46799305899998],[97.54358650800003,66.6663982390001],[97.3115006610002,66.9275196690001],[97.26426662500006,67.06952587300003],[97.57541661700014,67.09038524500005],[97.9225385530001,67.0304529610001],[98.09156063700016,66.81211963800001],[98.23493158200012,66.74329147200018],[98.47432661600016,66.51751066100013],[99.0037536050001,66.53598940400008],[99.47128258600014,66.49456738000009],[99.6001126050001,66.42825026500009],[99.91565655900013,66.2035986630001],[99.97292356600008,66.00591868500015],[100.15239754700013,65.88030178500003],[100.5343015310001,65.86936071900016],[100.8265996180001,65.90978311700019],[101.1284026150002,66.01175517200016],[101.11640157300019,66.20931311000015],[100.92739854100017,66.40191197800016],[100.67250067500015,66.48539690700011],[100.40039861600013,66.8024454130001],[99.89375263400012,66.86858768100012],[98.38667252800013,67.09433764700003],[98.2189865200001,67.22533321600014],[98.26419062700012,67.32043143900012],[98.42694053200017,67.34643344400007],[98.92925256700016,67.25554813200006],[99.18657666000007,67.30264638200003],[98.88807663500012,67.48197669700005],[98.61711853900016,67.61334693700013],[98.19323764900014,68.05058019900008],[97.88510162100016,68.0857157960001],[97.48420759700014,68.32782505800014],[97.31326253700013,68.51271039599999],[96.64629354600015,68.74328263900003],[96.55697665600007,68.80432217200018],[96.6222225640002,68.98773514500016],[97.25997961700006,69.08928810500015],[97.81993064700004,69.02750979000012],[98.26097851399999,68.80304678200014],[98.35777256400007,68.6207480990002],[98.66504659700018,68.36933140399998],[99.11276260300008,68.08434200200014],[99.63292658300014,67.892757512],[100.0478975100001,67.90129598900012],[100.18740054200003,67.94047501600005],[100.13289654600015,68.08699705400005],[99.9989396520001,68.21210366400004],[100.14430264000015,68.30607971900014],[100.595901647,68.367881335],[100.36479966800005,68.54173357400009],[100.25070151300008,68.68512849100011],[99.62528966300016,68.82773752200012],[99.05586959700008,69.10687518200001],[98.56302659800019,69.40622261600004],[98.56015059900017,69.62526823300004],[99.00251760900011,69.73857832100015],[99.89555357000012,69.57871849600014],[100.50559954800019,69.5451238280001],[100.82949858300009,69.68811440200017],[101.12370254600006,69.66651440600015],[101.28399655400005,69.7814960120001],[101.30480161100007,70.00413461600016],[100.9248965430001,70.23879018600007],[100.26599865400004,70.26293878500019],[99.66081267200008,70.24084207600004],[99.37905851700009,70.35499957400003],[99.64314261400017,70.48920189100005],[100.21730063500013,70.60294699900004],[100.35520155000012,70.67865754600012],[100.50779761800015,70.83087257200009],[100.51699860100018,71.01066204900013],[100.75789651000014,71.06610146500009],[100.64610254100018,71.26434018100008],[101.05269659500004,71.23485013100009],[101.64009852600014,70.94628232700006],[101.83090266100004,70.67668914000018],[101.7835006520001,70.44344457900002],[101.77639765900011,70.11451506100019],[102.1292035310002,69.91506348400014],[102.04489851700015,69.66783455500001],[102.15309866100017,69.5233863680001],[102.49109656000007,69.46223367900018],[102.73529861500003,69.48294770800015],[103.06340067100012,69.56372561800003],[102.99729964200003,69.67496772300012],[102.80400054900008,69.80350806400014],[102.89099866900006,69.87126099900013],[102.86710354000013,69.9998005010001],[103.06469752000004,70.09075571800014],[103.63539867600008,70.19469768800013],[103.49690264600014,70.32985252400016],[103.21219655200008,70.44255978500019],[103.22460160100019,70.5118466080001],[103.38050064200007,70.5851998280001],[103.05969955800003,70.69116301000014],[102.76889764200013,70.88728797700008],[102.31939662600018,71.08208541900012],[102.35289758400006,71.10336539500014],[102.95379655800019,70.98245543600018],[103.21019763600009,70.98805572000009],[103.3274995210001,71.05924875600004],[103.73719756100007,70.994334772],[104.06960255100006,70.97870922800018],[104.8227006260002,70.89555136100012],[105.36379958300006,70.88240434500017],[105.77510057800009,70.91644141000006],[106.57440154800008,70.83222373500007],[107.276702608,70.77079611900007],[108.10399662000015,70.78221746800011],[108.66799963000017,70.69253663600011],[108.66609962000018,70.60762359800003],[107.96790368100017,70.4822730750002],[107.40750153700014,70.48153328800015],[106.4184036010002,70.44819812400016],[105.89250153800003,70.55957048300019],[105.47389957000019,70.71724900100014],[105.13020365300008,70.75768011700018],[104.902801614,70.6400201570001],[105.03639959500015,70.55886154100017],[104.84110259200008,70.48773673400007],[104.40599866800017,70.39787233900006],[104.3672025260002,70.27431403300005],[104.58860060800009,70.15422114200004],[104.6050036580001,70.04735690500013],[104.23889956100015,69.99558926600008],[103.62370256800011,70.07777785000019],[103.32080053600015,70.01906563500017],[103.52890056100011,69.8603651950001],[103.97499852400011,69.75726342700017],[104.24089864500013,69.56298566400011],[104.5236965150001,69.40806998800014],[105.29799661400011,69.44540181100018],[105.54440260700017,69.62770116500013],[105.317100648,69.892601324],[105.14510365900014,70.14060155500016],[105.45909863700007,70.34314286900019],[105.99710064800001,70.20304388400001],[106.125999567,70.01811965400015],[106.35700264000013,69.86574486800015],[106.21340152700014,69.55880443500007],[106.18189965300013,69.4166455130001],[106.3243026560001,69.33738707500004],[106.51049758300007,69.29671254800019],[106.40869853100008,69.20155296900009],[106.5986026170001,69.10907191100017],[106.86440265800019,69.06462066700004],[107.191497545,69.04653034000006],[107.49949661200009,69.06921378200019],[107.85919961700017,69.14793024700009],[108.04350258000005,69.286473215],[107.9560015460001,69.35727816900004],[107.5995026080002,69.42211554300007],[107.24279764200008,69.4495371070002],[107.81639860200005,69.90264250900015],[107.99469760800014,69.98269421000003],[108.33020055000009,69.84469355100015],[108.78500362200015,69.72551596300008],[109.07550060500017,69.76184866400007],[109.33879864800008,69.97350077100009],[109.68019859400016,69.96576444200008],[110.15509761400011,69.89763733900008],[110.32039662400013,69.90999712600018],[110.77960153700013,70.00853679100015],[110.84329964200003,70.07512967100018],[110.7509996330001,70.19604750900015],[110.10259957500006,70.48681338400007],[109.93599667700016,70.62603444900003],[110.22589854500006,70.69515363400006],[110.82949867100007,70.50723773500005],[111.05760160500012,70.47842008100008],[111.29759963300012,70.51556197100007],[111.65489954600014,70.68293768100017],[111.74259956700013,70.86726763400014],[111.54209857600011,70.887577824],[111.15450260900013,70.83346677100008],[110.70909866700009,70.86021727999997],[110.54370158900014,70.91076535299999],[110.52320062700011,71.00842692999998],[111.57209757500004,71.32343259800012],[111.80149853000012,71.25870871500007],[112.21330260700017,71.21747746300008],[112.41230055600022,71.2454711760002],[112.57969655000022,71.20067593800019],[113.27239966000002,71.26910847800019],[113.56189768800004,71.34605485200012],[114.06459763700002,71.41091703600011],[114.29869866100023,71.41745525600004],[114.26699863900012,71.24930103500009],[114.15930157600008,71.19334378400015],[114.19689960900007,71.04392931900003],[114.5419996620002,71.04776621900004],[114.95369762400014,71.16629655600013],[115.40650161300005,71.0167052330001],[115.72840156400014,71.008891791],[116.37180366000018,71.09079907800015],[116.52760362700019,71.13041983100004],[116.8184965710002,71.06317098400018],[117.25579856500008,70.82589003400011],[117.73100268700023,70.81217925200008],[118.02249862500003,70.83433698000005],[118.3851016010002,70.80181905200016],[118.56510163100029,70.83509939800007],[119.03720059300008,70.81512465300017],[119.5594025490002,70.67697144200008],[119.69300053000029,70.60936351400011],[120.00050355700023,70.60683033500004],[120.97619665000013,70.76199830600012],[121.16390266600013,70.84871965600007],[121.72889658500014,71.19778384600016],[122.1137005400002,71.30488462000005],[122.76180253700034,71.28812148400004],[123.07299762500008,71.25540574299998],[123.22229759300012,71.2839939000001],[123.23410065400014,71.06900059800006],[123.01460258200007,70.92438376600018],[122.99240160200009,70.76404332300018],[123.35269955500019,70.68875220700005],[123.81529964100002,70.73631582000007],[124.33920262100003,70.7355606100001],[124.62860056800025,70.69030822400009],[124.86579853800004,70.58420791400005],[125.25260157700006,70.58361296600003],[125.55030062600008,70.72417731500013],[125.64520254600006,70.82160989900012],[125.9129025960001,70.85595206500011],[126.28469867600006,70.72521516200015],[126.59320065700001,70.68917934900003],[127.3112026980001,70.88401450900017],[127.69529754400014,70.8834656620001],[127.96260062800002,70.85943893600006],[127.99939768600007,71.18199100000015],[127.69509855800004,71.39857904200016],[127.37270357200009,71.57202107100005],[127.3973996760003,71.71632425200005],[127.69539661800013,71.72561743500006],[128.22309861200006,71.63756956600008],[128.47250365000002,71.5046570560001],[128.48390169700008,71.28248314600017],[128.65950055700023,71.23195803900006],[129.2162015880001,71.18271536400005],[129.36199959700002,70.88139767899997],[129.51080369200008,70.93404374200009],[129.87130767200028,70.94329920700017],[130.26585357800002,70.87340871900017],[130.30340567700011,70.94315403300004]]]]},"properties":{"objectid":721,"eco_name":"Taimyr-Central Siberian tundra","biome_num":11,"biome_name":"Tundra","realm":"Palearctic","eco_biome_":"PA11","nnh":2,"eco_id":781,"shape_leng":379.041589517,"shape_area":254.262363196,"nnh_name":"Nature Could Reach Half Protected","color":"#519AAB","color_bio":"#9ED7C2","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":956948.6397570895,"percentage":11.198727042852665}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[95.97097064700017,43.191840863000095],[95.86565354300012,43.22435678000011],[95.54828652500004,43.00563068100007],[95.378646527,42.92797905300006],[94.98049958800016,42.77979102800015],[94.70777157000015,42.759199207000165],[94.5490416250002,42.77083412700006],[94.19093352900018,42.84198458200012],[93.88187364800007,42.948125125],[93.77326966300012,43.005836708000174],[93.57792656000015,43.03656342400018],[93.13449856800014,43.04317154900008],[92.21173065600016,43.208148861000154],[91.84767157600015,43.29742752900012],[91.66465758100014,43.37782104500013],[91.41931156400005,43.41469085800014],[91.35507165200005,43.34699106400018],[91.48023961800016,43.165001002999986],[91.42168464800011,43.14874597800019],[91.06172951600007,43.21189758400004],[90.62602259800013,43.200945956000055],[90.36392953800004,43.20470792200007],[90.04394552200017,43.19209181700012],[89.74685650700002,43.23542374200008],[88.93438756800003,43.38342501800008],[88.22862964300003,43.40396688300001],[87.94252762700006,43.384103952000146],[87.77752651100019,43.196524670000144],[87.72564655300005,43.08548725200018],[87.75016764300011,43.030147748000104],[87.70919757100006,42.77444203300013],[87.64594253299998,42.70802148500019],[87.51231353800017,42.69065334400011],[87.2825466290002,42.73990423300012],[87.1815104980002,42.68925641600015],[86.98476459900019,42.71939623100019],[86.89411951300013,42.764477962],[86.61640962600012,42.64432757100019],[86.51864662700007,42.62903881200009],[86.33483165800004,42.643572696000035],[86.1071166390002,42.586837103000164],[85.86558556100005,42.4562488950001],[85.2259365450002,42.37133837200014],[84.85893256700007,42.295357928000044],[84.58765461800004,42.352237691000084],[84.06775651100014,42.34978849900011],[83.95552852700013,42.40364138800004],[83.69401549500003,42.383316447000084],[83.43952163600017,42.29435008800016],[83.32900959500006,42.27114914800018],[83.1201245210001,42.27278998900016],[82.81886266000004,42.156519078000144],[82.68108361800006,42.1620918700001],[82.48322259100013,42.077749472000164],[82.12638854300002,42.07224155600011],[81.96351659800018,42.03564281400003],[81.76140561000005,41.94714651200013],[81.59974652600016,41.973025471000085],[81.53350065700016,41.91625182299998],[81.36636349600019,41.86794708300005],[80.94985951800015,41.86889323200012],[80.917846515,41.83739152500016],[80.72234365300011,41.78255175000015],[80.31821454900006,41.73690524700015],[80.04701254000014,41.68583062200008],[79.68712664200007,41.65726694000011],[79.40489153300013,41.59202036200014],[79.26673849000002,41.5385498550001],[78.91287951600009,41.22117395200007],[78.81550560500006,41.16741443700005],[78.68939953700016,41.144572745000175],[78.51751754800017,41.04898451500003],[78.40388458900014,40.94730063000014],[78.32781965600003,40.84255785300007],[77.95380354600007,40.65678487200006],[77.67061658800009,40.62294411100004],[77.44164260700018,40.61010823200019],[76.95099650500009,40.616837392000036],[76.82504265100016,40.66598166300008],[76.72171054900019,40.57083666900007],[76.60466749699998,40.41347062700004],[76.46410365100002,40.30230781600011],[76.31933561000011,40.25603250200004],[76.05007149700009,40.06761486200014],[75.8490214900001,40.03027717100014],[75.61696648900016,40.07916579500011],[75.53392764500006,40.07088078700008],[75.36318157200009,39.97414105100006],[75.09951053400005,40.0290604540001],[74.95004259300009,40.00053482600015],[74.87572461600013,39.91117669700009],[74.65184062900016,39.91034102100019],[74.69107849700003,39.74851597500003],[74.76907361500008,39.66233207300013],[74.94715854800012,39.51230539400012],[75.26941657300011,39.276335709000136],[75.54982761200017,39.131485693000116],[75.69802854500006,39.11903085500006],[75.73348248700006,39.012187741],[75.72876749900007,38.88786450300017],[75.87084159600016,38.76597151500016],[76.01798255400007,38.69696062300005],[76.28955051700012,38.65320725600003],[76.35944352000007,38.62213285900009],[76.64879654100014,38.41621933700014],[76.73338352200011,38.32321474600019],[76.64453853400016,38.059600538000154],[76.62652548900019,37.947797348999984],[76.73793757800019,37.872744781999984],[76.7750855020002,37.78016045800007],[76.92781853100007,37.66556877800019],[77.0340495980002,37.55015701200017],[77.39866657800013,37.47434538000016],[77.83690650600005,37.372045257000025],[78.20854165300011,37.1925558530001],[78.4341816490001,37.211098467000056],[78.70064553600008,37.182538138000155],[78.84893749700007,37.10614245400012],[78.95929749000004,37.10703546200011],[79.24906155899998,36.903284639000105],[79.61236559700006,36.76831655200016],[79.85322562000005,36.578451525000105],[80.02619960300012,36.502716336000105],[80.19334464400004,36.52534060200014],[80.32084663400019,36.50991823500016],[80.47158057900009,36.52486769500018],[80.63704655600014,36.46387225000012],[80.82657664200008,36.34569562900003],[81.13422350200005,36.2537627480001],[81.58922556100015,36.26247171300008],[81.86233562700016,36.226473282000086],[82.15083352600016,36.28534391500017],[82.63478852200012,36.24835776100008],[82.7071305500001,36.28304811100014],[82.72764559300015,36.40390224700019],[83.0093005060001,36.46351316900018],[83.14855962500019,36.52510087900009],[83.22268649500006,36.614297740000154],[83.49214959400007,36.707949750000125],[83.61543263800019,36.65163895100005],[83.78628549700005,36.72066459400003],[83.90978965500017,36.92177830300017],[83.94152052300018,36.940932125000074],[84.27795452700008,36.96301056100003],[84.556396657,37.130007074000105],[84.72686763600012,37.18773391200017],[84.9355396420001,37.17791903800003],[85.01065054700013,37.201595736000115],[85.2034685180002,37.31024749700009],[85.47188555700012,37.40448858700017],[85.91211635500008,37.500826829000175],[86.19968453400008,37.64668200300008],[86.40857664800012,37.787407452000025],[86.4607845060001,37.90975004600011],[86.53864266300008,37.992833817000076],[86.85144053800019,38.061431313000014],[86.98464959900008,38.19013007200016],[87.2091976000001,38.28535452700015],[87.29177057800018,38.27234665200007],[87.43154166400006,38.194650097000135],[87.51966865900005,38.08607008500013],[87.68080856800015,38.11336441200007],[87.77450550499998,38.23745748200008],[87.8895726070001,38.29197623099998],[87.8864055890001,38.36839521500019],[87.93839249900009,38.489773052000146],[88.02319355500009,38.52602746600007],[88.19917261800015,38.440117987000065],[88.27085163700008,38.440731710000136],[88.32115160500013,38.590300402000025],[88.45819052600018,38.74657780200016],[88.6182255330001,38.78917614300002],[88.92399551700004,38.80105883200008],[89.15949263000005,38.768367398000066],[89.46538566100014,38.707092500000044],[89.7102356370001,38.676452956000105],[89.91732061400012,38.666169199000194],[90.31523151800008,38.711548320000134],[90.45931961900004,38.71053746300004],[90.85181464100003,38.739699780000024],[90.8711925950002,38.75543965300005],[91.2015076420002,38.73452395500016],[91.63654350400003,38.727656997000054],[91.71990153200005,38.77233052900016],[92.04526555500019,38.84806605400013],[92.41506959200007,39.039713241000186],[92.77143861100018,39.156670462000136],[92.93479955700002,39.22896521500002],[93.35620862400009,39.38191717900003],[93.42417161000014,39.448910043000126],[93.59118656300012,39.521838133000074],[93.77932760000016,39.47298471300007],[94.03222655000013,39.43208739500017],[94.40399161700009,39.44006428500006],[94.70117953800008,39.48071266000005],[94.60877257600009,39.6978728520001],[94.49118050900017,39.85019550200013],[94.21280660800011,40.04601302100008],[94.01792853199998,40.07677376700008],[94.14476751500007,40.13508499200009],[94.18143465300011,40.20286005500009],[94.08589151800004,40.24290258600007],[93.63021857100006,40.230286648000174],[93.513488667,40.27611638000019],[93.5537645500001,40.46536483400007],[93.71640062900013,40.63119911200016],[93.78370664099998,40.74967094300018],[93.71150157500017,40.84246665800009],[93.48699162700018,40.981213307000075],[93.51705164700013,41.066711570000166],[93.77672552200016,41.12179475500005],[93.85075365300014,41.12179475500005],[94.16770962200019,41.206198006000136],[94.20382657200014,41.275914485000044],[94.15153456000019,41.474868513000104],[94.09944958200009,41.585482478000074],[94.1478495400001,41.67703079800009],[94.18585158100018,41.918673690000105],[94.31635261700012,42.01571198900007],[94.58827966100012,42.09641429400017],[94.68766053400009,42.142628923000075],[94.78446967200017,42.25171017300005],[94.92403456200003,42.30609196100011],[95.22130563200005,42.33902378800019],[95.52565756600006,42.623632819000136],[95.75594365000012,42.782147852000094],[95.80458064900012,42.83233768200006],[95.86782060000007,43.00461278300003],[95.97097064700017,43.191840863000095]],[[84.33346552400002,41.248357638000016],[84.67023463600015,41.38109245100014],[84.79180156900009,41.37146834900017],[84.82304360500012,41.3287858540001],[84.7751995340002,41.21659290700018],[84.8896715210002,41.20794496200011],[85.01783752600011,41.24020187800005],[85.22198464500002,41.24697680300011],[85.48788459800011,41.210753067000155],[85.62681564900004,41.20783096800005],[85.95150761200017,41.138750843000025],[86.1230776270001,41.11596581200013],[86.48012558000005,40.99592203900011],[86.61588257200003,40.927231839000115],[86.80622050599999,40.866292386000055],[87.06294261000016,40.69538454200011],[87.48019458800007,40.469371048000085],[87.67624663300006,40.322826715000076],[87.7123186570002,40.17488746500004],[87.66197158200009,40.07176172500016],[87.43371559399998,40.09260165100011],[86.76622759600014,40.51422328300009],[86.48008752600009,40.67162369],[85.97721859700005,40.88418741400011],[85.72046665300013,40.92872381800015],[85.59540564000008,40.929449020000106],[85.388999598,40.867841361000046],[85.30384851400015,40.648365753000064],[85.15019263900007,40.46317916900017],[84.82369957200012,40.33493437400011],[84.60640761700012,40.30453187000012],[84.27436858100003,40.33063160800009],[84.03460658700004,40.37727287600006],[83.61365550700009,40.344280531000095],[83.33763155600013,40.39390190100005],[82.91639750299998,40.366077167000185],[82.64767452500007,40.29856898400004],[82.3149185010002,40.40533381100005],[82.13816863800014,40.50308457200015],[81.94387863700007,40.685295412000016],[81.72182458700013,40.70666541000003],[81.3078075200001,40.52360715900005],[81.12026964500006,40.37776908400008],[80.92057063400011,40.33274854100017],[80.92941253599997,40.23870979000009],[81.03353857200011,40.282552173000056],[81.09488656000013,40.179567584000154],[81.04003153000014,40.00796152700008],[81.07557649900014,39.57185244600004],[81.06545250100004,39.10889227300015],[80.95407863300011,38.816717736000044],[80.8536686290002,38.42684725500004],[80.74008965000013,38.12306445300004],[80.60787954500012,37.99771946100003],[80.48329965300019,37.98921669100008],[80.46073154600009,38.093584797000176],[80.52344561600017,38.24445721000012],[80.58648658100003,38.32593785800009],[80.61987253900014,38.50216687000011],[80.59838050100018,38.62342585200008],[80.65797449200011,38.834093421000034],[80.69434357000017,39.08970861100005],[80.68086949300005,39.19672388900011],[80.69899753800013,39.39270502300019],[80.64002950800005,39.640020621000076],[80.63746665700018,39.85657748300014],[80.61039763600019,40.069987946000026],[80.50434862300006,40.193765187000054],[80.3115306520001,40.12236327400012],[79.93108361000009,39.85254562000006],[79.87821157100018,39.83341074100019],[79.72852352000012,39.90001887500006],[79.59829757900013,39.993576673],[79.54409751000009,40.111495298000136],[79.56236251600018,40.25414355600003],[79.83092456100002,40.365493116000096],[80.07364654000008,40.40880559500005],[80.42303460700003,40.56352781700019],[80.63323262200004,40.68639360900005],[80.79675265700007,40.74621173200006],[81.25102264100002,40.839445653000155],[81.30879960200008,40.86807840200004],[81.52552058200007,40.878831545000025],[81.92878752300004,40.95713863700013],[82.28849756900007,41.04783653000004],[82.58460958800003,41.05218874900015],[82.89731559700016,41.02170997000013],[83.27245354200011,41.007316901000024],[83.42547557800009,41.0155298250001],[83.57008352400015,41.077319371000044],[83.76939361500007,41.18984809800003],[84.03796353900015,41.23113467100006],[84.22867564100017,41.19342633200017],[84.33346552400002,41.248357638000016]],[[82.80908952900006,38.013924195000186],[82.91149861600013,38.25942611500011],[83.03359260300016,38.345263510000166],[83.09769454800005,38.31776701100017],[83.11260964200011,38.23503930300012],[83.00696564300006,37.97466386299999],[82.9596405800001,37.75695197400006],[83.0412365630001,37.696707045000096],[83.19303853000002,37.69245423500007],[83.28235659299997,37.760998757000095],[83.36751555600006,37.90226215700005],[83.52098065900014,38.07835303400009],[83.56547565700004,38.175538352000046],[83.70574161000013,38.27647775600008],[83.93284558900001,38.25408600500003],[84.07602660000009,38.33916366300008],[84.26786757700017,38.237374334000094],[84.30876958800019,38.117625436000026],[84.19373349900007,37.95929530800004],[83.97396854700014,37.916731166000034],[83.80289457300012,37.81575773100013],[83.51550258300006,37.594754101000035],[83.35366865200012,37.495832891000134],[83.13199664900003,37.41125160900003],[82.86725658400007,37.40964563699998],[82.7511365470001,37.46206639400009],[82.63981665900008,37.583573313000045],[82.65328956200005,37.68711043700006],[82.80908952900006,38.013924195000186]]]},"properties":{"objectid":723,"eco_name":"Taklimakan desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Palearctic","eco_biome_":"PA13","nnh":3,"eco_id":843,"shape_leng":81.7647530703,"shape_area":78.3785379111,"nnh_name":"Nature Could Recover","color":"#FFAA01","color_bio":"#CC6767","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":743533.6084719492,"percentage":2.8183176875397775}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-98.17523952299996,24.009452426000053],[-98.20089753499997,24.05253306100002],[-98.27906766699994,24.12782753000016],[-98.36323555299998,24.09034432900006],[-98.39522558999988,24.013822247000064],[-98.49299663499988,23.999830001000134],[-98.53742256599998,24.03205540099998],[-98.71684256799989,23.975555171000167],[-98.65137453899996,23.836008218000075],[-98.55133065799993,23.913410065000107],[-98.36683658699997,23.83160235400004],[-98.25122851599997,23.910584190000122],[-98.17523952299996,24.009452426000053]]],[[[-98.54792760499998,24.731282817000192],[-98.62519852599996,24.78836190200019],[-98.58441956099989,24.898705634000123],[-98.62483257199995,24.971817119000093],[-98.69818160099999,24.944300505000115],[-98.8078306409999,24.969623408000075],[-98.82887257099998,24.81711769700013],[-98.898551667,24.843056502000024],[-98.98589361299997,24.823834283000053],[-99.08912664199988,24.958740680000062],[-99.12379452799996,24.906751423000173],[-99.3029476509999,24.80892220700008],[-99.19121553999992,24.761727398],[-99.16638951599998,24.639763163000055],[-99.05500760199993,24.676871525000138],[-98.98024756299998,24.62997561500009],[-99.00797255199996,24.51367335600014],[-99.14713259699988,24.525093699000138],[-99.00035859899998,24.475129174000074],[-99.027145653,24.358913080000093],[-98.88788552799997,24.300976024000192],[-98.89749152399997,24.391139486000043],[-98.77168250999995,24.41663623000005],[-98.77919755699997,24.28989229900003],[-98.70137057999995,24.246882406],[-98.68031356299991,24.321705812000175],[-98.58877563699997,24.337181152000028],[-98.59854155999994,24.40784562500005],[-98.48210166899992,24.40144403100004],[-98.38643666099995,24.399037083000053],[-98.33608958599996,24.508801793000032],[-98.43012263799989,24.512233512000023],[-98.43405157099994,24.61745623700017],[-98.39338659999999,24.671275767000054],[-98.39898654999996,24.74976692500013],[-98.46782661799989,24.76973396000011],[-98.45783957999993,24.61675232500005],[-98.52345261499988,24.64688275200018],[-98.53253155699997,24.70979195300015],[-98.54792760499998,24.731282817000192]],[[-98.78430163299998,24.648031911000146],[-98.75764466599998,24.70915476099998],[-98.59043156499996,24.597052505000022],[-98.728675636,24.549729621000154],[-98.78430163299998,24.648031911000146]]],[[[-100.599922613,25.854446444000075],[-100.51057454299996,25.7965933750001],[-100.59587063399982,25.740956984000093],[-100.5899045619999,25.689894262],[-100.53889464699995,25.604935124000065],[-100.3976746649999,25.522264916000097],[-100.42816165899995,25.635121710000135],[-100.22650161799993,25.656993784000065],[-100.05813566999984,25.40800432000009],[-100.12004859799998,25.33688487800015],[-99.9457095379999,25.128070715000092],[-99.8875575699999,25.02540463800011],[-99.74260764199994,24.842808398000102],[-99.68959059499991,24.62887490300011],[-99.64880358399995,24.54484481500009],[-99.56477366299998,24.47258543400011],[-99.55649552799997,24.421790933000125],[-99.62078858099994,24.25652193000019],[-99.6288296759999,24.17408809200009],[-99.41500061999994,24.115980045000185],[-99.39775854299995,24.01470804700017],[-99.31603951299996,23.96895324900015],[-99.13035554699997,23.959838767000065],[-99.05163556199994,24.055644089000054],[-99.04978953199992,24.115431198000124],[-98.94832659399992,24.157754948000104],[-98.9594495469999,24.25291737700013],[-99.03105161899998,24.30854337400018],[-99.15165765099994,24.30418377900014],[-99.2319336519999,24.198830967000163],[-99.33266451499992,24.31516021599998],[-99.27309466399998,24.463363832000027],[-99.35140963599997,24.526218718000052],[-99.43033564799993,24.74710399500003],[-99.47252662799991,24.789189028000067],[-99.52332263699992,24.947528208000108],[-99.3611836049999,24.999517968000134],[-99.34912858399997,25.08383170000019],[-99.39163958599988,25.11336449800018],[-99.31584153199987,25.289574063000146],[-99.40824866199995,25.265525042000093],[-99.45894660399995,25.154778476000047],[-99.56967154499989,25.111702534000187],[-99.61038965699998,25.328951071000176],[-99.72676064799998,25.336598887000036],[-99.80708358799995,25.281492568000147],[-99.85623154799998,25.34855231900019],[-99.83441965599991,25.479224178000152],[-100.0365826119999,25.632563889000153],[-100.15948461399995,25.70814619200013],[-100.19172660999999,25.778072051000095],[-100.27098052199989,25.7778152300001],[-100.29862252999993,25.989766236000094],[-100.40700556799993,26.10409908400004],[-100.40641061999997,26.218342915000164],[-100.44345863199999,26.19399583400019],[-100.47842357399992,26.170247052000036],[-100.54525751699992,26.155370683000058],[-100.51927160499991,26.077878311000063],[-100.54290756699999,25.979905765000183],[-100.50998663599995,25.896232746000123],[-100.51453365099997,25.863557070000184],[-100.599922613,25.854446444000075]]],[[[-100.00556956999998,26.58049762700017],[-99.98652655599989,26.6279345050001],[-100.02857956999998,26.779436567000175],[-100.11245761099991,26.818305799000143],[-100.0905226729999,26.667987429999982],[-100.00556956999998,26.58049762700017]]],[[[-100.13840462999997,26.811045227000193],[-100.19390054099995,26.979092830000127],[-100.27856463599983,26.883108975000084],[-100.13840462999997,26.811045227000193]]],[[[-100.24437753499996,26.578097721000177],[-100.26996664699993,26.714627524000093],[-100.25080058799989,26.780243577000192],[-100.31338457099986,26.89029360700016],[-100.40806554299996,26.984980447000112],[-100.43873559699983,26.91338776200007],[-100.43575264599991,26.909005870000044],[-100.44171167599995,26.84535654800004],[-100.43088560999985,26.75475873500011],[-100.38590261799993,26.700445176000073],[-100.36766862499991,26.573361778000105],[-100.39947560099995,26.43931586700006],[-100.36593658899994,26.32968878800017],[-100.29489861799993,26.201236792000145],[-100.1679615679999,26.206536502000063],[-100.06600962999994,26.15100086100017],[-99.98570261499987,25.971732069000154],[-99.92699459199997,25.942769408000174],[-99.93313550899995,25.85698130000003],[-99.86574551099994,25.81887029500018],[-99.72947655199982,25.671536888000105],[-99.65797455899997,25.717613887000027],[-99.67776456799993,25.87415665700013],[-99.72032954899998,25.940713495000182],[-99.71258567599989,26.03737025000015],[-99.74323259599998,26.182955358000072],[-99.86346462699998,26.33780548800013],[-99.97436558799984,26.3396924220001],[-100.03256265099998,26.30691968300016],[-99.92803160099999,26.239980799000136],[-99.91918953099997,26.120084379000104],[-99.80793753599994,26.105626937000068],[-99.78805566199998,26.056517199000155],[-99.8329005199999,25.915867690000084],[-99.90573154699996,25.973954111000182],[-99.95941160199993,26.12245126100015],[-100.05302455299989,26.19429992900018],[-100.05428351499995,26.28530996300009],[-100.13038666899996,26.242585726000073],[-100.17229467699997,26.34748910000019],[-100.22168755599989,26.34048920500004],[-100.22542554899991,26.468712375000166],[-100.24600261899991,26.566746277000107],[-100.24437753499996,26.578097721000177]]]]},"properties":{"objectid":725,"eco_name":"Tamaulipan matorral","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Nearctic","eco_biome_":"NE13","nnh":4,"eco_id":436,"shape_leng":31.5524586989,"shape_area":1.45313569223,"nnh_name":"Nature Imperiled","color":"#BA4A58","color_bio":"#CC6767","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":16306.845147989363,"percentage":0.061810077695074954}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-100.47842357399992,26.170247052000036],[-100.44345863199999,26.19399583400019],[-100.49797067499998,26.262504816000103],[-100.47842357399992,26.170247052000036]]],[[[-98.87656908499997,29.51696175600017],[-99.01395691,29.466585420000058],[-99.08901392499996,29.50463797600014],[-99.20562730799998,29.483350249000125],[-99.28390468999999,29.514396365000096],[-99.554385589,29.46721642600005],[-99.8555063419999,29.323408135000136],[-99.93191120899996,29.329013496000186],[-100.06107942099993,29.433513126000094],[-100.4400816729999,29.567977896000116],[-100.56403262299995,29.567995113],[-100.68623697599998,29.616672242000107],[-100.77137729399993,29.683577194],[-100.75075867099997,29.740349663000075],[-100.65311167099992,29.729744658000072],[-100.60009531599997,29.776118264000104],[-100.67009363699992,29.829558865000024],[-100.94271609999998,29.779914007],[-100.93292075599999,29.656665527000087],[-100.97235195399992,29.568584495000096],[-100.9191600659999,29.475549427000033],[-100.92918065099997,29.38813404400014],[-101.00664474099995,29.365995835999968],[-101.06016293999994,29.45866857800013],[-101.15189023499994,29.477014033000046],[-101.2611811729999,29.536786768000184],[-101.30003573199997,29.640704968000136],[-101.36322665699998,29.65264133100004],[-101.39701757799997,29.733968618000176],[-101.60182960599991,29.726977413000157],[-101.72045851399997,29.646088192000036],[-101.8048626019999,29.716376653000054],[-101.89080057899997,29.673978136000187],[-101.91683963199989,29.468045169000106],[-101.78743763099993,29.518243381000048],[-101.71927666499994,29.393500042000028],[-101.80221559699993,29.378460561000054],[-101.85665857299989,29.234557197000186],[-101.72017654599989,29.228236404000086],[-101.71212757199999,29.259101421000082],[-101.52478767799988,29.23705198700003],[-101.43727155599998,29.172301617000016],[-101.40397662499993,29.104994432000183],[-101.46566055899996,29.055685204000042],[-101.4419476519999,29.001518496000017],[-101.29166465399993,29.041584664000084],[-101.27339160199989,28.968053580000117],[-101.30751751499997,28.833404005000034],[-101.28787251399996,28.606122330000176],[-101.21877260699983,28.518381741000155],[-101.32773567199985,28.45377151600013],[-101.33814264299991,28.36908479000016],[-101.45071461999993,28.34423697300008],[-101.66771656099996,28.355487499000162],[-101.72885852199988,28.32765254000003],[-101.67706255099989,28.24763168300018],[-101.7920076129999,28.181523613000138],[-101.801895576,28.06541832800019],[-101.85179153699988,28.06407035100011],[-101.90944662599998,28.146680041000025],[-101.87556462599991,28.103033963000087],[-101.89801756599996,28.012377477000143],[-101.80559551599998,27.90684194000005],[-101.63655851299995,27.85320010700019],[-101.48412354499999,27.7601390210001],[-101.4488295299999,27.638747270000067],[-101.53789563299989,27.61626616700005],[-101.44195553099996,27.506341027000133],[-101.35093661199994,27.514557639000145],[-101.24082153799992,27.35137170700017],[-101.19824264399989,27.35059956600014],[-101.08167266599986,27.233857759999978],[-100.98063653499997,27.20743381],[-100.91232251499991,27.09813848700003],[-100.84306351999993,26.99428218000014],[-100.73873866499991,27.04512982199998],[-100.69554856099995,27.17260147000013],[-100.63117956799988,27.18448382400004],[-100.51620466699995,27.069767756000033],[-100.50212860199986,26.895851647000143],[-100.44171167599995,26.84535654800004],[-100.43575264599991,26.909005870000044],[-100.43873559699983,26.91338776200007],[-100.40806554299996,26.984980447000112],[-100.31338457099986,26.89029360700016],[-100.25080058799989,26.780243577000192],[-100.26996664699993,26.714627524000093],[-100.24437753499996,26.578097721000177],[-100.24600261899991,26.566746277000107],[-100.22542554899991,26.468712375000166],[-100.17229467699997,26.34748910000019],[-100.13038666899996,26.242585726000073],[-100.05428351499995,26.28530996300009],[-100.03256265099998,26.30691968300016],[-99.97436558799984,26.3396924220001],[-99.86346462699998,26.33780548800013],[-99.74323259599998,26.182955358000072],[-99.71258567599989,26.03737025000015],[-99.72032954899998,25.940713495000182],[-99.67776456799993,25.87415665700013],[-99.65797455899997,25.717613887000027],[-99.72947655199982,25.671536888000105],[-99.86574551099994,25.81887029500018],[-99.93313550899995,25.85698130000003],[-99.92699459199997,25.942769408000174],[-99.98570261499987,25.971732069000154],[-100.06600962999994,26.15100086100017],[-100.1679615679999,26.206536502000063],[-100.29489861799993,26.201236792000145],[-100.36593658899994,26.32968878800017],[-100.39947560099995,26.43931586700006],[-100.36766862499991,26.573361778000105],[-100.38590261799993,26.700445176000073],[-100.43088560999985,26.75475873500011],[-100.49946567099988,26.753968657000087],[-100.561424532,26.69376060800016],[-100.58586867599996,26.605497491000108],[-100.47909563499996,26.45096721600015],[-100.40641061999997,26.218342915000164],[-100.40700556799993,26.10409908400004],[-100.29862252999993,25.989766236000094],[-100.27098052199989,25.7778152300001],[-100.19172660999999,25.778072051000095],[-100.15948461399995,25.70814619200013],[-100.0365826119999,25.632563889000153],[-99.83441965599991,25.479224178000152],[-99.85623154799998,25.34855231900019],[-99.80708358799995,25.281492568000147],[-99.72676064799998,25.336598887000036],[-99.61038965699998,25.328951071000176],[-99.56967154499989,25.111702534000187],[-99.45894660399995,25.154778476000047],[-99.40824866199995,25.265525042000093],[-99.31584153199987,25.289574063000146],[-99.39163958599988,25.11336449800018],[-99.34912858399997,25.08383170000019],[-99.3611836049999,24.999517968000134],[-99.52332263699992,24.947528208000108],[-99.47252662799991,24.789189028000067],[-99.43033564799993,24.74710399500003],[-99.35140963599997,24.526218718000052],[-99.27309466399998,24.463363832000027],[-99.33266451499992,24.31516021599998],[-99.2319336519999,24.198830967000163],[-99.15165765099994,24.30418377900014],[-99.03105161899998,24.30854337400018],[-99.027145653,24.358913080000093],[-99.00035859899998,24.475129174000074],[-99.14713259699988,24.525093699000138],[-99.16638951599998,24.639763163000055],[-99.19121553999992,24.761727398],[-99.3029476509999,24.80892220700008],[-99.12379452799996,24.906751423000173],[-99.08912664199988,24.958740680000062],[-98.98589361299997,24.823834283000053],[-98.898551667,24.843056502000024],[-98.82887257099998,24.81711769700013],[-98.8078306409999,24.969623408000075],[-98.69818160099999,24.944300505000115],[-98.62483257199995,24.971817119000093],[-98.58441956099989,24.898705634000123],[-98.62519852599996,24.78836190200019],[-98.54792760499998,24.731282817000192],[-98.53253155699997,24.70979195300015],[-98.52345261499988,24.64688275200018],[-98.45783957999993,24.61675232500005],[-98.46782661799989,24.76973396000011],[-98.39898654999996,24.74976692500013],[-98.39338659999999,24.671275767000054],[-98.43405157099994,24.61745623700017],[-98.43012263799989,24.512233512000023],[-98.33608958599996,24.508801793000032],[-98.38643666099995,24.399037083000053],[-98.48210166899992,24.40144403100004],[-98.30131558499988,24.21055523800004],[-98.20089753499997,24.05253306100002],[-98.17523952299996,24.009452426000053],[-98.08735660899993,23.9255326440001],[-97.9230495139999,23.89955293500003],[-97.8056795679999,23.921672610000087],[-97.76688359399998,23.998406922000072],[-97.7767552759999,24.110902161000126],[-97.91027059399994,24.090039845000092],[-98.01007078799995,24.028019861000075],[-98.11029811799989,24.0186387870001],[-98.13890836099995,24.09471813199997],[-98.13968657799995,24.356349397000145],[-98.1087569359999,24.434636004000026],[-98.19015495499997,24.47198086500009],[-98.09676353999993,24.550644933000058],[-98.09522244999988,24.672281008000027],[-98.15908821399995,24.883572361000063],[-98.23604584499992,24.94892568400013],[-98.36303711299996,25.01080509000002],[-98.35563657699998,25.104163896000102],[-98.31147003199993,25.152212859000088],[-98.34774779099996,25.254703173000053],[-98.41855626799992,25.29892637500018],[-98.36897281799986,25.36138831700015],[-98.2173614319999,25.384307739000064],[-98.21305845899997,25.469541957000047],[-98.30185699799989,25.479726890000165],[-98.24040988699994,25.569109852000054],[-98.4215392459999,25.69293539800009],[-98.40827184699992,25.819702354000185],[-98.47795870199997,25.921922633000065],[-98.54045102099991,25.953180577000182],[-98.55228419299993,26.08498628200016],[-98.51071166699995,26.139459509],[-98.43037405799993,26.147373521000077],[-98.420993722,26.296188444000165],[-98.47650971299998,26.461676799000145],[-98.33933928799996,26.5821722820001],[-98.34569079499994,26.682787636000114],[-98.45418530199998,26.722434686000156],[-98.60885369599993,26.721614781000085],[-98.74726604299997,26.90665961800005],[-98.8200820159999,26.865682056000082],[-98.87339729699983,26.962569750000114],[-98.80670211299997,27.02521607100016],[-98.67222829899993,27.051144092000072],[-98.65103003799993,27.188306838000187],[-98.68101929799997,27.284379256000022],[-98.62455322399995,27.3239078470001],[-98.42085479799994,27.35072793300003],[-98.4652556819999,27.40752331100009],[-98.39311037499994,27.469497301000047],[-98.29241952499996,27.46314034100004],[-98.30738235099994,27.680849609000063],[-98.23765351499998,27.771639268000115],[-98.09372199699999,27.859395764000055],[-98.12482700499999,27.949362856000164],[-98.09590638899988,27.992663725000057],[-97.92165204799994,28.015064464000147],[-97.83224373699989,28.11694014900013],[-97.88234340099984,28.240893912000047],[-98.0642278489999,28.32076430000012],[-98.10026805699994,28.430712975000176],[-98.15986704499988,28.45864961000018],[-98.19448423799997,28.611672535000082],[-98.24661621299992,28.72143006500005],[-98.32374465099991,28.81444722300006],[-98.32828236599994,28.884707491000142],[-98.40214236799994,28.941536335000137],[-98.62532409099998,28.916128129000185],[-98.67456064399983,28.938050212000064],[-98.71539403099996,29.046726657000193],[-98.7965625899999,29.084860692000177],[-98.84787905899998,29.181857783000055],[-98.7938865139999,29.24920963000011],[-98.90773324599996,29.38714349600002],[-98.87656908499997,29.51696175600017]],[[-100.13840462999997,26.811045227000193],[-100.27856463599983,26.883108975000084],[-100.19390054099995,26.979092830000127],[-100.13840462999997,26.811045227000193]],[[-100.00556956999998,26.58049762700017],[-100.0905226729999,26.667987429999982],[-100.11245761099991,26.818305799000143],[-100.02857956999998,26.779436567000175],[-99.98652655599989,26.6279345050001],[-100.00556956999998,26.58049762700017]]]]},"properties":{"objectid":726,"eco_name":"Tamaulipan mezquital","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Nearctic","eco_biome_":"NE13","nnh":3,"eco_id":437,"shape_leng":45.0134846927,"shape_area":11.4278301032,"nnh_name":"Nature Could Recover","color":"#F9A461","color_bio":"#CC6767","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":125574.14371954117,"percentage":0.47598094599888763}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-97.84403264199989,18.11916032099998],[-97.9440535579999,18.116959568000084],[-97.91512258099993,17.991067071000145],[-97.83139055299989,17.974636025999985],[-97.84403264199989,18.11916032099998]]],[[[-97.4290845129999,19.627191102999973],[-97.51193962599996,19.62656413600007],[-97.56502557199991,19.54724383900009],[-97.68557762399996,19.52730899100004],[-97.7369075609999,19.47768879500012],[-97.63090565499994,19.399982518000115],[-97.67131765999994,19.35988768400017],[-97.77397166599991,19.45012540900018],[-97.886444569,19.474384984000096],[-98.01069656099997,19.433009396000045],[-97.97389262999991,19.386633163000056],[-97.96306656399997,19.27369489700004],[-97.89749158299998,19.24435756500003],[-97.82254764499999,19.156223529999977],[-97.71135750799994,19.12957008300009],[-97.69649454999995,19.05234978900006],[-97.836646509,19.08762553100007],[-97.94121561299983,19.012494174000153],[-97.94400762499998,18.969262497000102],[-98.03433252199994,18.909914096000023],[-98.01586953599997,18.809812044000182],[-97.91871657299987,18.748979543000075],[-97.85768156599988,18.647371598000063],[-97.85958057,18.576080997000133],[-98.0685655559999,18.468726252000124],[-98.07111365499998,18.40205944400003],[-97.99146260799989,18.338000246000036],[-97.96735357199987,18.43395342399998],[-97.9214705309999,18.436061305000067],[-97.79224354499996,18.296853483],[-97.79915660299997,18.20874895200012],[-97.6576685689999,18.117646381000156],[-97.58625760299986,18.116708614000117],[-97.38331563399998,18.197019484000066],[-97.35704054699988,18.158943851000117],[-97.23577150699998,18.197031554000148],[-97.15803555699989,18.15344716600015],[-97.15254960199997,18.303947255000082],[-97.20856451999987,18.329940543000134],[-97.34667162999995,18.478758887000026],[-97.27125562299989,18.52332110800006],[-97.33676153799996,18.57345193000009],[-97.36970560299994,18.686160364000102],[-97.30644955899999,18.839044267000077],[-97.32758352199994,18.929255003000094],[-97.39454654599996,18.94110215200004],[-97.438194636,19.012922992000085],[-97.30584756999997,19.288301872000034],[-97.29627258699998,19.382336265000163],[-97.23634365599997,19.437200179000115],[-97.27903754999994,19.59088120100006],[-97.4290845129999,19.627191102999973]]]]},"properties":{"objectid":732,"eco_name":"Tehuacán Valley matorral","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Neotropic","eco_biome_":"NO13","nnh":4,"eco_id":610,"shape_leng":8.05196980476,"shape_area":0.845285658723,"nnh_name":"Nature Imperiled","color":"#F57558","color_bio":"#CC6767","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":9914.40443708719,"percentage":0.03757993057487976}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[84.83607461400015,27.30316185000015],[84.77931957400006,27.35045673900015],[84.69106266000006,27.204847993000044],[84.62695350600018,27.177768243000116],[84.45153854500012,27.177839154000026],[84.7296526070001,27.02099497000006],[85.12919664200007,26.873342381000043],[85.5721735190001,26.690948479999975],[85.91960860300009,26.586722196000153],[86.40601363000019,26.508553739999968],[86.66658755400016,26.456440934000057],[87.44831854600017,26.3609004810001],[87.96946756700015,26.343531333000044],[88.21266966200011,26.369586144000095],[88.44718961300009,26.491184593000185],[88.64696456400009,26.63015118300018],[88.93359363400009,26.67357732100004],[89.27233852800009,26.67357732100004],[89.61109163700013,26.63015118300018],[89.83259566600015,26.63015118300018],[89.97248862400005,26.659956058000034],[90.09951066700017,26.75814552700018],[89.93374662900004,26.744035096000175],[89.79129752600011,26.704140087000155],[89.66995254600016,26.734367744],[89.63919062600007,26.77787669500009],[89.52353662300015,26.81515403600008],[89.10874154800018,26.842741729000124],[89.0223006560002,26.90051114700003],[88.97360951000007,26.882100129000094],[88.82855262900006,26.90196523900005],[88.75835452500019,26.851828550000164],[88.59791551100011,26.8718835950001],[88.34722150400017,26.81172030500005],[88.246940581,26.751553831000138],[88.15429657900012,26.781366416000083],[87.97945359900018,26.737636351],[87.89031960200003,26.67821620100017],[87.7922746370001,26.69603948000008],[87.67482757700003,26.777425748000155],[87.36865962000013,26.78000653600003],[87.2606505830002,26.816124157000104],[86.94587659100011,26.856972189000032],[86.8414535,26.778192693000108],[86.82253252700008,26.669413359000146],[86.59077458100012,26.683603753000057],[86.58605154600002,26.792379063999988],[86.51510661400016,26.825487581000175],[86.21240256300018,26.868049712000072],[85.88605450400013,27.024124773000096],[85.68741563600008,27.099795589],[85.46984858600007,27.132902095000134],[85.27593258600018,27.20384300300003],[85.2002565730001,27.21330248400011],[85.06309561200004,27.284245403000057],[84.89282965400014,27.279515831000083],[84.83607461400015,27.30316185000015]]],[[[84.67053252900018,27.601119062000066],[84.50499765300003,27.719354021000072],[84.39148757300012,27.719356033000054],[84.15499854500018,27.686248353],[84.02729756800005,27.648412945000132],[83.88068349600007,27.634225568000033],[83.8617625230001,27.57274397300006],[83.94231462500011,27.50917696],[84.15972862000012,27.53963662900003],[84.44824261300005,27.506529788000023],[84.65161859700004,27.525450257999978],[85.02526053900016,27.383562071000142],[85.03472152900008,27.43558703600013],[84.79350259300014,27.525448079000057],[84.67053252900018,27.601119062000066]]],[[[83.4219055580001,27.69097792600013],[83.18068662200017,27.743002890000184],[83.01988265900019,27.747732631000133],[82.76036854300014,27.710481274000188],[82.85293559900003,27.573947950000104],[83.09138465200004,27.52698112900009],[83.86196855100013,27.503540969000085],[83.76716654300003,27.61057636400011],[83.54960653500007,27.6815194510001],[83.4219055580001,27.69097792600013]]],[[[78.85878757400019,29.29149295100018],[78.78305858800007,29.26257706100006],[78.99159950100011,29.140329853000026],[79.21453063299998,29.05403933400015],[79.51656362900019,28.96055613500016],[79.73229956800009,28.867072601000075],[80.04871356300009,28.773592588000042],[80.11343359000011,28.723255403000053],[80.27883150700006,28.500337347000027],[80.4154665870002,28.44280765200017],[80.52333849600018,28.421234645000027],[80.64558453000012,28.435617990000026],[80.839752659,28.363708134000092],[81.29289259400002,28.153866853000125],[81.42584265400012,28.18449851800017],[81.50532556000013,28.101406868000026],[81.67915365900018,28.022545229000116],[81.82800251300017,28.017311233000157],[82.12597665700008,27.96528660399997],[82.45705462400014,27.809215232000156],[82.54691365500003,27.79029677300008],[82.84488662500002,27.79975658900014],[82.83542664200007,27.884886048000055],[82.71718564800005,27.847051645000192],[82.62731957600016,27.85177937400016],[82.27259860700019,27.951099227000043],[81.93206065600003,28.10717076700007],[81.75706462200009,28.26797607100002],[81.54895755700005,28.32945733100007],[81.41652650400005,28.405128482000123],[81.36464654700012,28.575619411000105],[81.20462763300003,28.67181666900018],[80.9807505190002,28.778791212000158],[80.7076416270001,28.85248825700006],[80.37832654100015,29.00389342400007],[80.22441049100013,29.040230986000154],[80.11576057400009,29.101690286000178],[79.75504252100006,29.132369392000157],[79.45823664700004,29.258463223000035],[79.40142863300014,29.238375154000153],[79.11534153700018,29.315369976],[78.85878757400019,29.29149295100018]]]]},"properties":{"objectid":734,"eco_name":"Terai-Duar savanna and grasslands","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Indomalayan","eco_biome_":"IN07","nnh":4,"eco_id":311,"shape_leng":27.3418057436,"shape_area":3.15365750478,"nnh_name":"Nature Imperiled","color":"#FCD844","color_bio":"#FEAA01","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":34656.85855983466,"percentage":0.16165321648585745}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-95.81270993499999,30.54779963800013],[-95.9330329799999,30.562316494000072],[-96.04166831799995,30.44955291900004],[-96.151255199,30.366068437000024],[-96.36285541199999,30.32879200700006],[-96.6197776539999,30.20008124200018],[-96.8001163539999,30.032136770000136],[-96.904808345,29.88172971500012],[-96.99131218199989,29.8112778040001],[-97.18673959299997,29.582086574000016],[-97.27582499699997,29.49623099300004],[-97.30360926699996,29.41512779900006],[-97.50446059699993,29.238348805000044],[-97.55912746699988,29.135259385000097],[-97.65963311799999,29.07112479800014],[-97.70032044599992,28.996229090999975],[-97.622867209,28.938797137000165],[-97.49645825499988,28.967726464000066],[-97.45509462399997,29.027668246000076],[-97.28611530599989,29.05442088600006],[-97.22954971099989,29.211339649000138],[-97.17142731699994,29.253023007000024],[-97.07057515499991,29.25501374000015],[-96.9697531349999,29.300946736000185],[-96.95758712199995,29.369048482000153],[-96.86844943799991,29.36820108100011],[-96.77821777999998,29.50696386700008],[-96.72707131199991,29.660043369000164],[-96.60620744199997,29.707856766000077],[-96.67013198399997,29.80983050800006],[-96.5885764169999,29.889003682],[-96.51436702599995,29.846617636000076],[-96.4351683839999,29.935004790000164],[-96.31946932199997,29.955219954000142],[-96.31536071799991,30.03745641500018],[-96.18684780299998,30.063561064000112],[-96.19642865499992,30.20049040800012],[-96.10135333499994,30.24600554300008],[-95.98737358499983,30.24204694700012],[-95.93760038499988,30.342692070000055],[-95.71368955299994,30.316528253000172],[-95.65467791699996,30.383139181000104],[-95.75030218799998,30.446042296000087],[-95.85590325099997,30.3989192950001],[-95.883936539,30.4610033510001],[-95.81270993499999,30.54779963800013]]],[[[-98.7938865139999,29.24920963000011],[-98.70217212999984,29.212633025000173],[-98.41460483299988,29.213680663],[-98.31308703399998,29.25906211400013],[-98.26156513899991,29.337616017000073],[-98.10576443699995,29.40284047700004],[-98.04769610499994,29.500253896000117],[-97.98691590699991,29.5414884490001],[-97.86961495299988,29.555514067000104],[-97.89583062499997,29.661307079000096],[-97.86335582499999,29.69219814000013],[-97.70723392499997,29.71985394700016],[-97.68163370099995,29.811666590000073],[-97.60311085299998,29.765966279000054],[-97.56842579,29.839540869000075],[-97.61740169299998,29.943528845000117],[-97.62130926899988,30.067313208000087],[-97.51135867099998,30.182454627000027],[-97.53676986199997,30.302387540000154],[-97.41844836499996,30.28667329400008],[-97.33694806799991,30.407824426],[-97.19246099799989,30.533776095],[-96.97824026099994,30.79621368100004],[-96.89505017299996,30.852789185000063],[-96.92918789099997,30.924334450000117],[-96.79424242099998,31.11626516300015],[-96.72734847099991,31.175236401000177],[-96.47312101899996,31.546346378000123],[-96.40907081699999,31.719787558000064],[-96.27979264499999,31.895361639000157],[-96.23035750999998,31.989234374000034],[-96.18997624399992,32.15118430900014],[-96.35923443699988,32.24205715900018],[-96.53548965599998,32.43660095900003],[-96.50442034099984,32.50802787900011],[-96.38562407499995,32.49770408300003],[-96.29364805499995,32.405237256000134],[-96.19874958899993,32.423566222000034],[-96.13929048499989,32.55972779900014],[-96.19974290799996,32.62008185200011],[-96.14669957099989,32.74652870200015],[-96.19609655499988,32.8336132660001],[-96.27225252099998,32.84348292800013],[-96.22165767399997,32.97033425500018],[-96.16208418999997,32.99433544300007],[-96.02588505799991,33.162511070000164],[-95.91973994299985,33.03565619000011],[-95.77235151199994,33.10785116300008],[-95.68342269299995,33.188959131000104],[-95.60165823499989,33.21946125200009],[-95.53399090299996,33.321783569000104],[-95.53307484599992,33.37934320000011],[-95.46538777499995,33.47527713000005],[-95.36399812399998,33.44975687200002],[-95.20657699099996,33.46488228800007],[-95.17498115799998,33.501081944000134],[-95.34393492899994,33.63882779400018],[-95.63219460599998,33.65327848200019],[-95.60449239299999,33.76326295400003],[-95.6882570969999,33.759126871000035],[-95.76059141599995,33.701411282000095],[-95.8400904689999,33.710714226000164],[-96.0563977029999,33.6444326080001],[-96.33975245399989,33.621494852000126],[-96.45990912999997,33.69647502700013],[-96.5380266599999,33.69151451700003],[-96.6813799649999,33.790475336999975],[-96.75135777999998,33.73577571000004],[-96.91857307899983,33.65623219200012],[-96.91348449399999,33.50686053800007],[-96.9926635519999,33.13648889500013],[-97.05635978599997,33.06218863300012],[-97.02820914699993,32.98624429800003],[-97.09177077499993,32.91601638700007],[-97.03927876299991,32.77044042700004],[-97.13059157099997,32.66886109400002],[-97.12265802499991,32.57066382300013],[-97.2581488589999,32.43068239300004],[-97.14945484699996,32.354085017000045],[-97.27336457199993,32.22546666900007],[-97.22790412199998,31.998015061000103],[-97.12581066799993,31.844893192000143],[-97.16175427699994,31.770562768000104],[-97.12238442099994,31.622295712000152],[-97.20992771799996,31.54924542900011],[-97.3952652289999,31.349054547000037],[-97.39308324399991,31.188877795000167],[-97.44458788499998,31.007346423000172],[-97.56153862199989,30.982964501000026],[-97.65853727099994,30.801349958000174],[-97.67449953299996,30.667959846000144],[-97.71016691099999,30.419069721000085],[-97.83518997099992,30.176405092000152],[-97.84023542699998,30.0956547240001],[-97.90184447799999,30.006785339000146],[-97.92741574199994,29.895560918000058],[-98.16962281199994,29.69770587200003],[-98.25935415299995,29.63807967600019],[-98.47915334399988,29.56127279300017],[-98.65738853599998,29.577653294000015],[-98.87656908499997,29.51696175600017],[-98.90773324599996,29.38714349600002],[-98.7938865139999,29.24920963000011]]]]},"properties":{"objectid":735,"eco_name":"Texas blackland prairies","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Nearctic","eco_biome_":"NE08","nnh":4,"eco_id":401,"shape_leng":23.2805313488,"shape_area":4.12360417389,"nnh_name":"Nature Imperiled","color":"#F3FC49","color_bio":"#FEFF73","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":43514.05349896234,"percentage":0.4106921256280732}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[71.08521258100006,24.69305278900015],[71.13120257500015,24.75412065400019],[71.30792964000011,24.712761661000172],[71.60521663500009,24.556100370000138],[71.7030865860001,24.552010504000123],[72.04174062100009,24.958038779000162],[71.95948749600012,24.99911781600008],[71.91148349800017,25.067015758000082],[71.94072762300016,25.189156852000053],[72.0298916270001,25.286093227000038],[72.14644651700019,25.523924030000046],[72.2623295140001,25.644787218000147],[72.25285360400011,25.679115805000038],[72.122962604,25.693404939000118],[72.067413552,25.732454213999972],[72.24308751400014,25.932651948000057],[72.42539256700007,26.065778699000134],[72.60162359000003,26.24411877700004],[72.80732756400005,26.36366416200002],[73.12481662200008,26.517538302000162],[73.32879660700007,26.659440906000043],[73.43636358200018,26.79802494600017],[73.5633924980001,27.06328301299999],[73.58315249900016,27.181297024000173],[73.57615662800015,27.360040104000177],[73.61258655800009,27.503354052000134],[73.67421751900014,27.519774536000057],[73.92945854100014,27.519003401000134],[74.10735353900014,27.379910244000087],[74.19444251900012,27.23564645800019],[74.21688053900004,27.10230932200011],[74.17218052000015,26.955117737000023],[74.065887594,26.833953136000105],[73.94953152300008,26.593885035000085],[73.96015960800008,26.552536771],[74.07362358700016,26.520840269000075],[74.16826650600018,26.534606539000094],[74.2575076240002,26.585065261000068],[74.38339961800017,26.715129432000026],[74.43611961000005,26.812115261000088],[74.57726264500008,26.993406271000083],[74.75997153900016,27.110431218000087],[74.8190076300001,27.178818999000043],[74.88552859300012,27.407489052000017],[74.85320261000004,27.67623684000006],[74.91842655700003,27.80897098300011],[75.10346260200015,27.949138365000124],[75.37357362300008,27.97947498700006],[75.47161858800001,28.015802491000045],[75.70253750600006,28.178626827000073],[75.80726653700003,28.27133268800003],[76.00464661000012,28.379597373000024],[76.09573359100006,28.48811385],[76.08222950600015,28.621929593],[76.01587651700015,28.64927655800011],[75.83025357100018,28.674406510000154],[75.62991351200014,28.930997018000028],[75.49405660800011,29.01683173000015],[75.23444358500012,29.12157752400003],[75.15136752500018,29.134507280000093],[75.0245436300001,29.221894824000117],[74.87718960500007,29.43505751800018],[74.79968264900015,29.47216504200003],[74.70947258400008,29.470615228000042],[74.61406758200019,29.398366743000054],[74.52474264600016,29.416765020000128],[74.35362961300018,29.614579444000185],[74.30935656800011,29.786290107000184],[74.24504859500007,29.857042255000067],[74.061561526,29.932255419000114],[73.80752548600009,30.066875657000026],[73.56462061400009,30.004754690000084],[73.39813958900004,29.94048711800008],[73.33730356800004,29.744026707000046],[73.2567216270001,29.782742047000056],[73.15055057400019,29.777743416000078],[73.05123155900003,29.83182027000015],[72.85665154400016,29.84819968200003],[72.79399849400016,29.77597332500011],[72.66207857000006,29.7243744970001],[72.49471258300014,29.72731520400015],[72.31128653399998,29.6054897730001],[72.01606752200013,29.48108372200005],[71.78746754100007,29.42194688100011],[71.55711356300009,29.30973046400004],[71.5007176040001,29.22269361900004],[71.43055755400019,29.1754966310001],[71.44096351900009,29.023391575000176],[71.32187662400014,29.002462466000168],[71.15030660900004,29.069861685000035],[71.03845949900006,29.058851217000097],[70.89552357500014,28.864740923000113],[70.92323263800012,28.74472162500018],[70.77529154400014,28.707665231000135],[70.78948964900007,28.655936316000123],[70.68348657000018,28.495462600000167],[70.54826350500008,28.472754683000062],[70.45255256400003,28.33747898000007],[70.3827135410001,28.30143176700011],[70.36354060800011,28.21851697500017],[70.25295262700007,28.14487709400015],[70.158920582,28.12374899800011],[70.10031850600018,28.151327639000158],[70.00845351700019,28.04746110700006],[69.87640350600009,28.079018637000047],[69.83213750200014,27.965975597000067],[69.76162759100015,27.93395588800007],[69.59596262700006,27.788501872000154],[69.40321355500004,27.76900372199998],[69.31741354400003,27.716255064000052],[69.03775754700013,27.313932093000176],[69.01625058900015,27.108552163000127],[68.95770249300017,27.140691732999983],[68.83010059000003,27.090169811000123],[68.73428353400016,27.12007158000017],[68.62796764200004,27.097741687000052],[68.47132864700006,26.950197057000025],[68.35431660800003,26.7567566460001],[68.41240654900008,26.694019274000084],[68.36019148400015,26.588454065000178],[68.39775062400003,26.507948735000127],[68.52271256300008,26.371834841000123],[68.75592057900013,26.25082731700013],[68.78523259700012,26.168612246000123],[68.91251364100009,26.140514430000167],[68.9317935270002,26.268299729000034],[69.0558926330001,26.26713263300013],[69.11184653100003,26.235491116000162],[69.32261652700004,26.01482008000005],[69.32585948500014,25.886067174000175],[69.48570254700007,25.782152027000166],[69.50499752000007,25.660037588000023],[69.57821662900005,25.484365973000024],[69.74694048500015,25.532543644000043],[69.81971753300007,25.48924256400005],[69.73005648200018,25.318283590000135],[69.69052860000005,25.14425181100006],[69.64756061700018,25.050577505000035],[69.46909363800012,24.841845317000093],[69.368698554,24.743480163000072],[69.31086761300014,24.648204913000086],[69.31952662200007,24.572389425999972],[69.23636657500003,24.522669820000033],[69.194099488,24.454554284000153],[69.17680359800016,24.307140747],[69.24397248200006,24.253401348000068],[69.29591362700006,24.27154330700006],[69.50523355400003,24.260854704000053],[69.58958450200015,24.285315612000147],[69.73342852200011,24.172169307000047],[70.03440053700012,24.172751178000112],[70.11321255500008,24.28596353300003],[70.38379648300014,24.35559015900003],[70.55481748300002,24.413807170000098],[70.57274654100007,24.257244115000162],[70.65617363500013,24.221805931000063],[70.80322256000011,24.219867868],[70.87212364800013,24.30171195600019],[70.97846250700007,24.35975009700013],[71.04255657300013,24.354720284999985],[71.09739651600017,24.433696421000036],[71.00018353800004,24.44264494000015],[70.98706049500004,24.591746593000153],[71.08521258100006,24.69305278900015]]]},"properties":{"objectid":736,"eco_name":"Thar desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Indomalayan","eco_biome_":"IN13","nnh":4,"eco_id":318,"shape_leng":28.8467886878,"shape_area":21.7315314529,"nnh_name":"Nature Imperiled","color":"#CFA149","color_bio":"#CC6767","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":239183.05553604383,"percentage":0.9066084280472336}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[81.067397605,46.12975073400003],[80.78955863700008,46.09095056899997],[80.67400354100005,46.043110522],[80.40714251900016,45.88372092100019],[80.20120955100003,45.799930891000145],[79.99191259000014,45.753639651000185],[79.91117860200018,45.678638549000084],[79.66442861500008,45.56103826800006],[79.51003261800008,45.53324840300013],[79.41401657600005,45.487079037000115],[79.27767150900002,45.46765129400012],[78.926582586,45.47961025800004],[78.67014362300011,45.40536805300013],[78.41129251500001,45.443260123000016],[78.31437659200009,45.421298196],[78.26965360700012,45.341017836000105],[78.33598363000016,45.18504989600012],[78.361518595,45.04493967900015],[78.33009349900016,44.947909929000105],[78.19352765300005,44.83462096400012],[77.93646256200003,44.76805792400006],[77.88964862600017,44.68931899600017],[77.99247764700016,44.43415810500011],[77.98728958400011,44.26488842000009],[77.95683259800006,44.22092064399999],[77.71971861500003,44.02719893600016],[77.6883625860001,43.955119933],[77.70610858400005,43.85160544000013],[77.82447849100015,43.83666335700008],[77.92443855400012,43.86291950100008],[78.08724964700008,43.854008532000194],[78.06964865600008,43.76677454500003],[78.09404753800004,43.64596298900017],[78.19564861000009,43.574983357000065],[78.16404749400004,43.489431450000154],[77.92817654700019,43.47289060300017],[77.80738862900012,43.50951147300009],[77.62593853000004,43.485242678000134],[77.48014856700013,43.51655059500001],[77.26323664700016,43.50589149700005],[77.143623536,43.46852363100015],[76.79406749600008,43.42200289500005],[76.58598356400012,43.231181661],[76.43414253800006,43.19269481100008],[76.1345366060001,43.22369276500018],[75.83318354900018,43.30033437300011],[75.69518255400004,43.299914440000066],[75.39488260000007,43.26444155500019],[75.25662260400014,43.311072262000096],[75.04438057800007,43.43860074000014],[74.93010757700017,43.576181131000055],[74.77992264800002,43.68634197000006],[74.4915315340001,43.79983260400013],[74.32631651100019,43.77822254800003],[74.2830885210002,43.715729761000034],[74.29897356900017,43.63659017800012],[74.2704776130002,43.52353054100007],[74.40808063500009,43.41708188000007],[74.59834262900006,43.39452198700013],[74.78491960300005,43.28537250900007],[74.85697949500013,43.2157926540001],[74.94566355100011,43.056964473000164],[75.06797764700019,42.93872498900009],[75.362129643,42.85852543000004],[75.36695057800006,42.76175518400015],[75.14585156200019,42.7338771420001],[74.8252865130001,42.83635462600006],[74.38079050000016,42.88793618700015],[74.13318656500013,42.87590547400009],[73.85061651500001,42.83548475200001],[73.45704659799998,42.857186505000186],[73.21292148900005,42.91986520299997],[73.03019750800007,42.933082962000185],[72.82684348500004,42.99125286700007],[72.57821662200007,43.03326464200006],[72.2031785900001,43.03806344900005],[71.91198758600012,43.08969547000004],[71.60777261200008,43.04525344600012],[71.52284951600006,42.94384398400007],[71.50798756400013,42.85269665500016],[71.36583752700011,42.77154709100006],[71.32582064400015,42.72314612700012],[71.12140664499998,42.581805278000104],[71.07407353500014,42.39784630800017],[71.17185262700019,42.35787653200009],[71.39103654500019,42.32806880800007],[71.63842757900011,42.27594812300015],[71.83318361400018,42.314846859000056],[71.93052651199997,42.20626952900011],[72.06359056600007,42.209328588000176],[72.12590750100009,42.27501806700013],[72.23757959700015,42.27562826900015],[72.3671876250001,42.22919956600009],[72.51473963100005,42.25277031600007],[72.71990951100014,42.314968899000064],[72.93763749200019,42.345276520000084],[73.08101648400003,42.37870841200015],[73.14182249800012,42.43731719300007],[73.09398664100019,42.48769679000003],[72.86042759100019,42.50892546800003],[72.74140959500005,42.551017207000086],[72.660957574,42.52823552900003],[72.50102264700018,42.56157622600006],[72.32630154000014,42.63272668100012],[71.98798362000014,42.70375643800014],[71.90879056000011,42.7854359050001],[71.99033357000008,42.82573475400011],[72.41171263000018,42.75664691700018],[72.65675354700011,42.68741860000017],[72.85916862900012,42.69111434800004],[72.94992854800017,42.638685879000036],[73.18894153400004,42.64822565900016],[73.333930522,42.67905664500012],[73.63912165200003,42.639375710000024],[73.78067758000003,42.56960608900016],[74.04107649000008,42.5430362940001],[74.2476575460002,42.62693696600007],[74.4907376000001,42.61805600400015],[74.68946850100008,42.58050809500014],[74.89028951400013,42.596895889],[75.0518416450002,42.56726016200014],[75.19380962700018,42.576716290000036],[75.44629652300017,42.529746451000165],[75.4961626450002,42.42677695000009],[75.30680053200018,42.44633813300004],[75.22454053400008,42.41162934200014],[74.91584761300015,42.40889717700014],[74.90142051300018,42.3062480320001],[74.7919086010001,42.2556391060001],[74.79535658100014,42.15421086900005],[74.52570354700015,42.204739664000044],[74.34967050500018,42.14634093300009],[74.24971061000008,42.186169893000056],[74.2836836370002,42.24303926200014],[74.49273651600015,42.346966647000045],[74.39669063500008,42.42345000500006],[74.10636849800011,42.39211627200018],[73.67420159300008,42.3783074210001],[73.58403762800015,42.34097660400016],[73.19612164000011,42.283059162000086],[73.12426760800014,42.24244850500003],[73.13803052499998,42.17199877700011],[73.30724354800014,42.131918024000186],[73.44161953800005,42.06207866600016],[73.53256251700014,42.159177818000046],[73.65897351900009,42.09274955900008],[73.88098163600006,42.03953084400007],[74.06815355700019,41.92135187600019],[74.05101759500008,41.85721221200009],[73.73362761000016,41.882553220000034],[73.72917162300013,41.765431042000046],[73.5158764950001,41.69229273500014],[73.72248051700018,41.51834410400005],[73.7721176450001,41.404267239000035],[73.92720749700004,41.25282854500006],[73.96704852700014,41.129870719000166],[74.13520861500007,40.90712097100004],[74.34368163500005,40.831792807000056],[74.41860964700015,40.87135153500003],[74.41829649900018,40.975460304000194],[74.46891749400004,41.021378046],[74.66776255700017,41.030307958000094],[74.84536754200013,41.067268296],[74.96164650000014,41.05953967800002],[75.1655424970001,41.207667018000166],[75.2531506520001,41.20557623600001],[75.32023655500018,41.156039691000046],[75.38575755700015,41.02436887700014],[75.54399162800013,41.00460099700018],[75.79192363100009,41.10996889600011],[75.94390849000013,41.14133783300002],[76.10269962300015,41.20586591500012],[76.49359152200014,41.29437814199997],[76.71650656000014,41.303765203000125],[76.71347851400003,41.40083736500014],[76.50868950900013,41.408146217000194],[76.55069759600019,41.549067802000025],[76.33441951499998,41.65193403800015],[76.22824863000011,41.584875628000134],[76.07350159800006,41.60462439800011],[75.93788156600004,41.704461414000036],[75.79557059700005,41.730451349000134],[75.7292705810001,41.77132100600011],[75.53366059700016,41.76522199800013],[75.43202951800004,41.84255243100017],[75.321922491,41.88781018200012],[75.18199952600008,41.98781919500004],[75.14807159300011,42.07984042200019],[75.34971654700007,42.06017983000004],[75.42639956200014,42.02022095000018],[75.46527851700012,41.931441676000134],[75.54490659700002,41.89755984400017],[75.7354815710001,41.919749927000055],[76.00583650500005,41.90425078200013],[76.07689660400013,41.87391717700018],[76.29016155800014,41.90363286800016],[76.29399158500001,41.96810026500009],[76.12185663000008,42.01546002900017],[75.94513660700005,42.02635097100011],[75.93927748900018,42.08581034900004],[76.12420658000019,42.09332539500008],[76.60247764100018,42.01305995500019],[76.99624654400014,42.00846013400019],[77.1388475280001,42.043802932],[77.27966350100007,42.08820941700009],[77.46909350700003,42.11086117500008],[77.61849255000016,42.15584014400014],[77.74192864700007,42.21986849600006],[78.05750260800016,42.32475695100004],[78.19335163300002,42.40767610100016],[78.85439260700008,42.675077588000136],[78.794731561,42.762216189000185],[78.665702555,42.74474528500008],[78.49427050700007,42.75256526600009],[78.34147662600009,42.84464349000001],[78.22305257200003,42.85436348000013],[77.81323249100012,42.83170451300015],[77.61972854500004,42.83415370600005],[77.3281325270001,42.8664944410001],[77.17401162300018,42.84089359400008],[77.10732251900004,42.77890606700004],[76.93923954400015,42.777554904000056],[76.58663165300004,42.73278615400011],[76.43604254800005,42.69721838600009],[76.24710053600006,42.678465386000084],[76.10772658500008,42.68929430200012],[76.15316756500005,42.77969480399997],[76.1404116490001,42.89071327900007],[76.01689961200015,42.956254063000074],[75.52973954300012,43.04729460699997],[75.5065686100001,43.105709096],[75.63893160200007,43.12477507600016],[75.89293662800009,43.06411356600006],[76.17633849800006,43.08303420400006],[76.40881360000003,43.0681834830001],[76.48947852200018,43.14551509000006],[76.74257662600013,43.169674081000096],[76.93187755100018,43.207881646000146],[77.07479855600008,43.26422446400011],[77.40795858800016,43.36192225100007],[77.64453160200009,43.395484062000094],[77.83634156600004,43.40168197600008],[77.9224396370002,43.351992210000105],[77.97712753200005,43.17799278500007],[77.925750489,43.075973289],[78.02660356000013,43.03393569700012],[78.10472055100018,43.05581263200003],[78.25801851900002,43.034313554000164],[78.3672335440001,43.06645245300007],[78.5733566130001,43.055748595000125],[78.70099657000003,43.02566577599998],[78.8650585790001,42.94350502000009],[78.99893165400005,42.809353666000106],[79.10353059800019,42.7832277760001],[79.22810361600011,42.8389444660001],[79.47872151500013,42.79997398100005],[79.65493761900012,42.837189631000115],[79.84893056500005,42.83154458700005],[80.23529053700008,42.74563426999998],[80.26065065600011,42.81726987000019],[80.37359663300015,42.823662580000075],[80.57499650000011,42.912545120000175],[80.40077260800007,42.983528776000185],[80.41280365600005,43.05538532300011],[80.54118356700008,43.09485235200003],[80.45295749899998,43.188113933000125],[80.38205749400004,43.20031295500013],[80.37789152100004,43.28499146700017],[80.20590257900017,43.30633447500003],[79.97161061500015,43.27158243400015],[79.58635755800009,43.17179403200009],[79.4966965070002,43.17801189600016],[79.47157259000005,43.24663470500019],[79.52337660800015,43.29535250499998],[79.69135263000015,43.35406421700003],[79.92642260100018,43.38466084600003],[80.08733351700005,43.379317047000086],[80.17140149200009,43.406270901000084],[80.46412655200015,43.42062172500016],[80.73969251600016,43.46337680700009],[80.63731360300011,43.63361493700006],[80.89582055000005,43.6629350020001],[81.05161263800005,43.70380465900013],[81.58440362000005,43.75191259300016],[81.88407157800009,43.83079652700013],[81.95796157500018,43.88436543800003],[81.97245053300014,44.07982287100003],[81.78477452400006,44.261764485000185],[81.10435459000013,44.438396163000164],[80.78126558200017,44.47127518400015],[80.627509627,44.42039418200005],[80.34983058500012,44.442886181],[80.4050066420001,44.6113010790001],[80.32349363900005,44.6616168060001],[80.17049457000019,44.62516005300017],[79.98172757200012,44.666216794000036],[79.78713951000003,44.73877976800003],[79.61034354700007,44.77223496200003],[79.63127164999997,44.911200714000074],[79.51853957900005,44.966132857000105],[79.27619160100016,44.97736678700005],[79.28404963500003,45.058787924000114],[79.5421215610001,45.08922077000017],[79.84143060600007,45.1467357140001],[79.89520252699998,45.22217887700009],[80.12091863,45.33485009600014],[80.34819762300003,45.36686997200002],[80.51808153400009,45.455860135000194],[80.72557051799998,45.49266809000005],[80.90177958000015,45.57878141600014],[81.07018257600015,45.76203161300015],[81.19568665700007,45.77170952600005],[81.49710861200009,45.74052867800009],[81.57913961700012,45.71416859800007],[81.69354253700004,45.594089453000095],[81.79531862300001,45.53314513800018],[82.09690050500018,45.48368403100005],[81.9609755400001,45.55971543600003],[81.82303657100016,45.70818341699999],[81.53838361800013,45.82322671400004],[81.4397425320002,45.92150888800012],[81.23280356800012,46.064663412000016],[81.067397605,46.12975073400003]],[[77.3053585610001,42.669565649000106],[77.5193326230002,42.65139569400014],[77.80507656400005,42.730924198000025],[78.00038949300017,42.70977632100005],[78.11564652900006,42.57184925400003],[78.0006785010001,42.45926604500016],[77.90149661400011,42.46111676900017],[77.80126950400017,42.29759690200018],[77.68776663300008,42.208737497000186],[77.4940875040001,42.15289105500011],[77.29306063200016,42.1748977420001],[77.05435962000001,42.15785800300017],[76.8086696090001,42.21753044800005],[76.7468036200001,42.25348730400009],[76.59120951300008,42.26529824400012],[76.3876875160002,42.34747760800013],[76.2319566160001,42.334308799999974],[76.18546253500017,42.446220115000074],[76.30442051600005,42.477946625000186],[76.45107264100011,42.468257815000015],[76.61589053000017,42.508475528000076],[76.63169863200005,42.54739639200005],[76.77831253500011,42.5890071770001],[76.96701851200015,42.60087511400019],[77.09819060300009,42.642557648000036],[77.3053585610001,42.669565649000106]]]},"properties":{"objectid":737,"eco_name":"Tian Shan foothill arid steppe","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Palearctic","eco_biome_":"PA08","nnh":3,"eco_id":740,"shape_leng":68.8411194203,"shape_area":14.3346873362,"nnh_name":"Nature Could Recover","color":"#FCC73D","color_bio":"#FEFF73","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":129284.91194761694,"percentage":1.220210277598506}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[71.07407353500014,42.39784630800017],[70.85266858000017,42.393707324],[70.80416854100014,42.3648304940001],[70.81249260900017,42.272858050000025],[70.89668262400016,42.24133823800008],[71.02159158900008,42.24281043600007],[71.04438751600003,42.17831990500014],[70.88353762100013,42.06944870600012],[70.86692049800001,42.00039221700007],[70.98632858700006,41.975531325000134],[71.16761054500006,42.047830939000164],[71.37212361900015,42.08875843100009],[71.44669355600018,42.06861353300019],[71.63725260400014,42.07641859400019],[71.69978361300008,42.02900987900006],[71.67127257000016,41.964110311000184],[71.30690755000006,41.84682133400014],[70.9719775960001,41.62026419100016],[70.72295359900016,41.544443841000145],[70.5181575530001,41.434463884000024],[70.53436262100013,41.338257740000074],[70.7096325760001,41.31040719100008],[70.79963661400006,41.39346732500013],[70.88948055800006,41.39377611400005],[70.9668425070002,41.52674411200019],[71.21602659700011,41.53220307800012],[71.42598757300016,41.60479237100003],[71.5781405730001,41.74011333600009],[71.85294361600018,41.831421599000066],[72.17340858500012,41.82881248000007],[72.17194359600018,41.98530127100008],[72.23338361700007,42.04331074700008],[72.41204857700018,42.09626945500014],[72.57644653199998,42.05957281200011],[72.7018966330001,42.08038943600013],[72.79604351100016,42.16151988900015],[72.90104662900018,42.12113018000019],[72.96935260200007,42.25263721200008],[72.93763749200019,42.345276520000084],[72.71990951100014,42.314968899000064],[72.51473963100005,42.25277031600007],[72.3671876250001,42.22919956600009],[72.23757959700015,42.27562826900015],[72.12590750100009,42.27501806700013],[72.06359056600007,42.209328588000176],[71.93052651199997,42.20626952900011],[71.83318361400018,42.314846859000056],[71.63842757900011,42.27594812300015],[71.39103654500019,42.32806880800007],[71.17185262700019,42.35787653200009],[71.07407353500014,42.39784630800017]]],[[[78.34147662600009,42.84464349000001],[78.61298356900005,42.80494495200003],[78.70809151600014,42.859364626],[78.501830648,42.96279580300006],[78.20172163400008,42.960144942000056],[77.84454359400007,42.998058805000085],[77.61126751699999,43.066265536000174],[77.64076259600017,43.15365190600005],[77.77030155699998,43.17353394800017],[77.84426162600005,43.26970254100013],[77.75498161700006,43.31916331300016],[77.59266656500017,43.255991591000054],[77.30703762400003,43.20797284100013],[77.13120256100018,43.1961439640001],[76.83447262800013,43.10344313200011],[76.5279236290001,43.04451349200019],[76.40881360000003,43.0681834830001],[76.17633849800006,43.08303420400006],[75.89293662800009,43.06411356600006],[75.63893160200007,43.12477507600016],[75.5065686100001,43.105709096],[75.52973954300012,43.04729460699997],[76.01689961200015,42.956254063000074],[76.1404116490001,42.89071327900007],[76.15316756500005,42.77969480399997],[76.10772658500008,42.68929430200012],[76.24710053600006,42.678465386000084],[76.43604254800005,42.69721838600009],[76.58663165300004,42.73278615400011],[76.93923954400015,42.777554904000056],[77.10732251900004,42.77890606700004],[77.17401162300018,42.84089359400008],[77.3281325270001,42.8664944410001],[77.61972854500004,42.83415370600005],[77.81323249100012,42.83170451300015],[78.22305257200003,42.85436348000013],[78.34147662600009,42.84464349000001]]],[[[92.23861661600017,43.71759875700013],[92.13777159200009,43.6210881830001],[92.02517664800007,43.56952824700011],[91.87620558600008,43.56126234900006],[91.85829161500016,43.52221860600014],[91.9382705610002,43.4233379640001],[92.17656656000014,43.284277329000076],[92.34088857500006,43.252631621000035],[92.77340651400016,43.20038587800008],[92.94613658400004,43.154604928000026],[93.31204957300008,43.16714107000007],[93.59410866200005,43.1627920360001],[93.88253766200012,43.11642033000004],[93.97388464900007,43.04143548900015],[94.10662851400008,43.01116961000014],[94.25839963500016,42.9373820400001],[94.44954659000018,42.89482644700007],[94.63641357800003,42.91378513899997],[94.93301359200012,43.00587476200013],[95.09619164500003,43.029239485000176],[95.1386416260001,43.132262965],[94.88026459900004,43.21975964100017],[94.52103466900013,43.31927713900012],[94.35967263900005,43.453908777000095],[94.16431461600013,43.520116592000136],[94.15906553300005,43.61960726800004],[94.08066556900013,43.72401191900019],[93.82301357600005,43.902047398000036],[93.67828358900005,43.949849057000165],[93.288192665,44.042060721000155],[93.13623865100016,44.03780372000011],[93.03915358100016,44.063285879000034],[92.90904951200014,44.026897858000154],[92.65975964200015,43.8337223150001],[92.4528126310002,43.792706477000195],[92.23861661600017,43.71759875700013]],[[93.55672453600005,43.56958926699997],[93.41134662800005,43.62115624400013],[93.46691160500018,43.67781204200003],[93.6625826080001,43.6466840010001],[93.64308160800005,43.56688845000008],[93.55672453600005,43.56958926699997]],[[92.2102276130002,43.408185998000135],[92.27133151900011,43.477735678000045],[92.44885251700009,43.559412463000115],[92.64057966800016,43.53442148300002],[92.73598466900017,43.54284848100008],[92.84503155300007,43.50612853700011],[92.87875362600005,43.41419079400015],[92.45481154800012,43.4049670120001],[92.25545451800014,43.37926306800017],[92.2102276130002,43.408185998000135]],[[93.33288564300011,43.43900893800014],[93.42746754199999,43.45984065000016],[93.62247453100002,43.41633488400009],[93.67436253500017,43.36912800600004],[93.59130055700012,43.28151951500013],[93.50460854400006,43.285815408000076],[93.44460266700014,43.35400604600011],[93.21411860200016,43.374445150000156],[93.33288564300011,43.43900893800014]],[[94.24192852500016,43.29343724100016],[94.29364755000006,43.274642499000095],[94.22821053400008,43.107956284000124],[94.09704565200013,43.163009127000066],[94.09667953000002,43.25702541500016],[94.24192852500016,43.29343724100016]]],[[[91.41931156400005,43.41469085800014],[91.05020859000018,43.66227886700011],[90.94246660000005,43.65477086100009],[90.78324162000007,43.697831883000106],[90.57593552900005,43.804417672000056],[90.37422150900011,43.812840479000045],[90.07185357200018,43.943631194000034],[89.98289458900013,44.04803886200017],[89.84411659200003,44.10920378900005],[89.45359752000007,44.2428352980001],[89.37187161700001,44.24279741100008],[89.25775954900007,44.15370163600005],[89.19975258800014,44.15466270500008],[88.82892663000018,44.25026334000006],[88.49073762300009,44.35644914500017],[88.02730554900018,44.30734242400001],[87.95226253700014,44.26990431900009],[87.83969156600006,44.15011552300007],[87.78247853900012,43.86126441000016],[87.67736058800011,43.65864313300017],[87.55072059200006,43.54768953300004],[87.50024460400005,43.61178024700018],[87.48783854900006,43.727070643000104],[87.38116458200005,43.84217948700018],[87.19168864300008,43.911587178000104],[86.80696062800013,44.024814787000025],[86.45372057300011,44.078269704000036],[86.31434662200013,44.075649689000045],[86.01038360900003,44.10375957500008],[85.64953664200016,44.162181608000026],[85.39394358000015,44.30493547700007],[85.04706555800016,44.187583636],[84.9395066290001,44.17320666000006],[84.5488816100002,44.22247364300017],[84.21345561400005,44.16644246400017],[84.02530653000014,44.15353768600016],[83.87602952900016,44.27572253300008],[83.61190754500007,44.297183223000104],[83.27513860100015,44.26140557200006],[83.05033159900012,44.29426933800016],[82.84333060900008,44.43708707700017],[82.78858152600009,44.50869702900019],[82.88264458500004,44.67051989600009],[82.78215059500008,44.75872668599999],[82.44409955400005,44.81230498500008],[82.36315953899998,44.898295936000125],[82.6037825210002,44.9736777440001],[82.6910555680002,44.96971075700003],[82.75286858400017,45.058016956000074],[82.73910549900012,45.236971930000095],[82.73520657200004,45.28761606000012],[82.31133255500015,45.44656711900012],[82.09690050500018,45.48368403100005],[81.79531862300001,45.53314513800018],[81.69354253700004,45.594089453000095],[81.57913961700012,45.71416859800007],[81.49710861200009,45.74052867800009],[81.19568665700007,45.77170952600005],[81.07018257600015,45.76203161300015],[80.90177958000015,45.57878141600014],[80.72557051799998,45.49266809000005],[80.51808153400009,45.455860135000194],[80.34819762300003,45.36686997200002],[80.12091863,45.33485009600014],[79.89520252699998,45.22217887700009],[79.84143060600007,45.1467357140001],[79.5421215610001,45.08922077000017],[79.28404963500003,45.058787924000114],[79.27619160100016,44.97736678700005],[79.51853957900005,44.966132857000105],[79.63127164999997,44.911200714000074],[79.61034354700007,44.77223496200003],[79.78713951000003,44.73877976800003],[79.98172757200012,44.666216794000036],[80.17049457000019,44.62516005300017],[80.32349363900005,44.6616168060001],[80.4050066420001,44.6113010790001],[80.34983058500012,44.442886181],[80.627509627,44.42039418200005],[80.78126558200017,44.47127518400015],[81.10435459000013,44.438396163000164],[81.78477452400006,44.261764485000185],[81.97245053300014,44.07982287100003],[81.95796157500018,43.88436543800003],[81.88407157800009,43.83079652700013],[81.58440362000005,43.75191259300016],[81.05161263800005,43.70380465900013],[80.89582055000005,43.6629350020001],[80.63731360300011,43.63361493700006],[80.73969251600016,43.46337680700009],[80.46412655200015,43.42062172500016],[80.17140149200009,43.406270901000084],[80.08733351700005,43.379317047000086],[79.92642260100018,43.38466084600003],[79.69135263000015,43.35406421700003],[79.52337660800015,43.29535250499998],[79.47157259000005,43.24663470500019],[79.4966965070002,43.17801189600016],[79.58635755800009,43.17179403200009],[79.97161061500015,43.27158243400015],[80.20590257900017,43.30633447500003],[80.37789152100004,43.28499146700017],[80.38205749400004,43.20031295500013],[80.45295749899998,43.188113933000125],[80.54118356700008,43.09485235200003],[80.41280365600005,43.05538532300011],[80.40077260800007,42.983528776000185],[80.57499650000011,42.912545120000175],[80.37359663300015,42.823662580000075],[80.26065065600011,42.81726987000019],[80.23529053700008,42.74563426999998],[80.31404857600012,42.673242622000146],[80.17491954400003,42.656500609000034],[79.84998350000018,42.670763423000096],[79.70458949900018,42.73134429900006],[79.65493761900012,42.837189631000115],[79.47872151500013,42.79997398100005],[79.22810361600011,42.8389444660001],[79.10353059800019,42.7832277760001],[79.15850850600003,42.69868236900015],[78.81647455300015,42.60127107500017],[78.59294864200012,42.4485008310001],[78.21269254000009,42.32579865400004],[78.1255495800001,42.21841138600007],[78.03032663400012,42.202237665999974],[77.92871064200006,42.126108192000174],[77.72239663300007,42.13117807000009],[77.58004761000012,42.03731383000013],[77.18176253700005,42.02106383400013],[77.1388475280001,42.043802932],[76.99624654400014,42.00846013400019],[76.60247764100018,42.01305995500019],[76.12420658000019,42.09332539500008],[75.93927748900018,42.08581034900004],[75.94513660700005,42.02635097100011],[76.12185663000008,42.01546002900017],[76.29399158500001,41.96810026500009],[76.29016155800014,41.90363286800016],[76.07689660400013,41.87391717700018],[76.00583650500005,41.90425078200013],[75.7354815710001,41.919749927000055],[75.54490659700002,41.89755984400017],[75.46527851700012,41.931441676000134],[75.42639956200014,42.02022095000018],[75.34971654700007,42.06017983000004],[75.14807159300011,42.07984042200019],[75.18199952600008,41.98781919500004],[75.321922491,41.88781018200012],[75.43202951800004,41.84255243100017],[75.53366059700016,41.76522199800013],[75.7292705810001,41.77132100600011],[75.79557059700005,41.730451349000134],[75.93788156600004,41.704461414000036],[76.07350159800006,41.60462439800011],[76.22824863000011,41.584875628000134],[76.33441951499998,41.65193403800015],[76.55069759600019,41.549067802000025],[76.50868950900013,41.408146217000194],[76.71347851400003,41.40083736500014],[76.71650656000014,41.303765203000125],[76.49359152200014,41.29437814199997],[76.10269962300015,41.20586591500012],[75.94390849000013,41.14133783300002],[75.79192363100009,41.10996889600011],[75.54399162800013,41.00460099700018],[75.38575755700015,41.02436887700014],[75.32023655500018,41.156039691000046],[75.2531506520001,41.20557623600001],[75.1655424970001,41.207667018000166],[74.96164650000014,41.05953967800002],[74.84536754200013,41.067268296],[74.66776255700017,41.030307958000094],[74.46891749400004,41.021378046],[74.41829649900018,40.975460304000194],[74.41860964700015,40.87135153500003],[74.34368163500005,40.831792807000056],[74.13520861500007,40.90712097100004],[73.96704852700014,41.129870719000166],[73.92720749700004,41.25282854500006],[73.7721176450001,41.404267239000035],[73.72248051700018,41.51834410400005],[73.5158764950001,41.69229273500014],[73.22384662899998,41.58777459300012],[72.86270160200013,41.55835277200015],[72.772247623,41.517085309000095],[72.76448061600013,41.45672571600005],[72.82808652100005,41.36854658600009],[72.9618526430001,41.38499523200005],[73.06195855100009,41.45964781500015],[73.17955061800018,41.38774533500009],[73.32700355000009,41.36258755500006],[73.48230764300013,41.26487535100006],[73.66589361800004,41.10214925100013],[73.71221955900012,41.035049769000125],[73.81701665100013,40.988243210000064],[73.83827952700011,40.92281893500018],[73.80239056500005,40.84491987400003],[73.87465665200006,40.781882597000106],[74.00626359600017,40.84077669900017],[74.15045160900007,40.69319133300007],[74.13757348500019,40.642254004],[74.22509748599998,40.54291302900015],[74.42948164600006,40.402247594000016],[74.44217654100004,40.319786766],[74.33390850300003,40.25461663100003],[74.08759353800008,40.25853852299997],[73.9902196270001,40.35982527400006],[73.8966526100001,40.385283796000124],[73.8651586150001,40.48485376500008],[73.76431258500014,40.49531370900013],[73.44111662400019,40.60503449800012],[73.33747053500008,40.65282492500006],[73.2522964850001,40.635574968000185],[73.26702851800019,40.55602383400003],[73.38085157800003,40.499715550000076],[73.57673648800017,40.28643902900012],[73.6126095250001,40.222996739000166],[73.57740050200005,40.003479724000044],[73.4641795980001,39.926549778000094],[73.5515515510001,39.85735163500004],[73.68130458600007,39.67149097900017],[73.86015361200015,39.49614659300016],[74.09812958999999,39.37912902200003],[74.25636248800015,39.385983910000164],[74.41422255900011,39.31253714900015],[74.80247449300003,39.237972073000094],[75.22850752100015,39.01626570500008],[75.39861254700008,38.895554564000065],[75.48235362700018,38.79413118900004],[75.40752452200019,38.70836655000011],[75.25795750600014,38.68072605000003],[75.01750953700014,38.743327971000156],[75.00730155300016,38.68791269400009],[75.14583563700006,38.59919226100004],[75.47344249000014,38.55537284400003],[75.70171356500015,38.561319972000035],[75.92567449800009,38.61192889800003],[76.01798255400007,38.69696062300005],[75.87084159600016,38.76597151500016],[75.72876749900007,38.88786450300017],[75.73348248700006,39.012187741],[75.69802854500006,39.11903085500006],[75.54982761200017,39.131485693000116],[75.26941657300011,39.276335709000136],[74.94715854800012,39.51230539400012],[74.76907361500008,39.66233207300013],[74.69107849700003,39.74851597500003],[74.65184062900016,39.91034102100019],[74.87572461600013,39.91117669700009],[74.95004259300009,40.00053482600015],[75.09951053400005,40.0290604540001],[75.36318157200009,39.97414105100006],[75.53392764500006,40.07088078700008],[75.61696648900016,40.07916579500011],[75.8490214900001,40.03027717100014],[76.05007149700009,40.06761486200014],[76.31933561000011,40.25603250200004],[76.46410365100002,40.30230781600011],[76.60466749699998,40.41347062700004],[76.72171054900019,40.57083666900007],[76.82504265100016,40.66598166300008],[76.95099650500009,40.616837392000036],[77.44164260700018,40.61010823200019],[77.67061658800009,40.62294411100004],[77.95380354600007,40.65678487200006],[78.32781965600003,40.84255785300007],[78.40388458900014,40.94730063000014],[78.51751754800017,41.04898451500003],[78.68939953700016,41.144572745000175],[78.81550560500006,41.16741443700005],[78.91287951600009,41.22117395200007],[79.26673849000002,41.5385498550001],[79.40489153300013,41.59202036200014],[79.68712664200007,41.65726694000011],[80.04701254000014,41.68583062200008],[80.31821454900006,41.73690524700015],[80.72234365300011,41.78255175000015],[80.917846515,41.83739152500016],[80.94985951800015,41.86889323200012],[81.36636349600019,41.86794708300005],[81.53350065700016,41.91625182299998],[81.59974652600016,41.973025471000085],[81.76140561000005,41.94714651200013],[81.96351659800018,42.03564281400003],[82.12638854300002,42.07224155600011],[82.48322259100013,42.077749472000164],[82.68108361800006,42.1620918700001],[82.81886266000004,42.156519078000144],[83.1201245210001,42.27278998900016],[83.32900959500006,42.27114914800018],[83.43952163600017,42.29435008800016],[83.69401549500003,42.383316447000084],[83.95552852700013,42.40364138800004],[84.06775651100014,42.34978849900011],[84.58765461800004,42.352237691000084],[84.85893256700007,42.295357928000044],[85.2259365450002,42.37133837200014],[85.86558556100005,42.4562488950001],[86.1071166390002,42.586837103000164],[86.33483165800004,42.643572696000035],[86.51864662700007,42.62903881200009],[86.61640962600012,42.64432757100019],[86.89411951300013,42.764477962],[86.98476459900019,42.71939623100019],[87.1815104980002,42.68925641600015],[87.2825466290002,42.73990423300012],[87.51231353800017,42.69065334400011],[87.64594253299998,42.70802148500019],[87.70919757100006,42.77444203300013],[87.75016764300011,43.030147748000104],[87.72564655300005,43.08548725200018],[87.77752651100019,43.196524670000144],[87.94252762700006,43.384103952000146],[88.22862964300003,43.40396688300001],[88.93438756800003,43.38342501800008],[89.74685650700002,43.23542374200008],[90.04394552200017,43.19209181700012],[90.36392953800004,43.20470792200007],[90.62602259800013,43.200945956000055],[91.06172951600007,43.21189758400004],[91.42168464800011,43.14874597800019],[91.48023961800016,43.165001002999986],[91.35507165200005,43.34699106400018],[91.41931156400005,43.41469085800014]],[[84.910629631,43.883446279000054],[85.04708064500005,44.07417682100004],[85.12142158800015,44.097213811000074],[85.40026856399999,44.02510899200007],[85.7299655290002,44.06368284600012],[85.69290963800006,43.98694702500012],[85.37531262100009,43.95676815000007],[85.00519560400005,43.87308943200014],[84.910629631,43.883446279000054]],[[86.16698455000005,43.875527392000095],[86.34267460500018,43.85894446700013],[86.44961562000003,43.74026962600004],[86.42443856199998,43.67275004300018],[86.05389356500007,43.74181474600016],[85.98531350400003,43.79388564300007],[86.03403465700006,43.843663419],[86.16698455000005,43.875527392000095]],[[86.756690499,43.67540878300002],[86.94520553600006,43.69849874700003],[87.18949157800012,43.61623908400003],[87.2910385030001,43.542482360000065],[87.33169559500016,43.44566986900014],[87.1536785560001,43.464944726000056],[87.04267164700008,43.41746375900016],[86.73315461700008,43.63035001800017],[86.756690499,43.67540878300002]],[[90.02424654100014,43.47536661700002],[89.88285858600011,43.50743259300003],[89.62010151200013,43.60460399700008],[89.63590257300007,43.656090843000015],[89.84391760500017,43.70053571700004],[89.97329764500012,43.653572919000055],[90.24773356100019,43.64052011700011],[90.40419754200008,43.56180046700018],[90.37403861600018,43.467123686000036],[90.02424654100014,43.47536661700002]],[[84.57673651800013,43.66854584800018],[84.53291358100017,43.59159628900011],[84.66663360299998,43.41498003400011],[84.61905658000012,43.33526914000004],[84.39389753800009,43.25845268500012],[84.31440759100013,43.32365735400009],[84.38397252600015,43.44665373700019],[84.34601558000014,43.60202924400011],[84.49111956800004,43.677533762999985],[84.57673651800013,43.66854584800018]],[[83.63195756000016,43.35418625699998],[83.63330855500016,43.31684420800019],[83.29649351100011,43.16541607500005],[83.08229062200007,43.082637405000185],[82.91468055400014,43.03808272800012],[82.42644458400014,42.94326110700007],[82.26350357100011,42.94656408000009],[82.36887365000018,43.02413172000007],[82.78329455700009,43.11581834200018],[83.05518354700013,43.19751675200018],[83.48230756400017,43.34854406300019],[83.63195756000016,43.35418625699998]],[[81.84761851400003,43.11756110700003],[81.90435058700012,43.06200434400017],[81.78539260500014,42.980590919000065],[81.47888149300019,42.92024708300016],[81.23133053200007,42.92273399400011],[81.1213074920002,42.97375497400009],[81.1810376050002,43.01706359700012],[81.60570555600009,43.101585367000155],[81.84761851400003,43.11756110700003]],[[81.93129756800016,43.288020519000156],[81.50721752300007,43.196337921000065],[81.28939063500007,43.181105824000156],[81.14305853100018,43.21388174800012],[81.11180157600006,43.26603663100019],[81.2211225480001,43.32410310400002],[81.67407959000019,43.37605514600011],[81.87779956800006,43.34643417000012],[81.93129756800016,43.288020519000156]],[[82.9848095910001,43.319090391000145],[82.97982051500009,43.378202925000096],[83.06193550500012,43.443670618000056],[83.39317356700019,43.47162057700007],[83.4879306470001,43.38804495500017],[83.204269609,43.31550813300004],[82.9848095910001,43.319090391000145]],[[81.5072855840001,42.84167545800011],[81.79644062400007,42.90666337100015],[81.90039064100006,42.911301245000175],[81.92881753000012,42.845975709000015],[81.73571759100014,42.78464280900005],[81.6609426330001,42.79249682000017],[81.48422965100019,42.751550050000105],[81.27535262300017,42.730619096],[81.32902563700003,42.81102082600006],[81.5072855840001,42.84167545800011]],[[80.81557455600012,42.66702844700018],[80.98874652000018,42.67995635900013],[81.067733552,42.603427068000144],[80.88030263000002,42.427768194],[80.81436957300019,42.431820006000066],[80.71567551300012,42.52218144800008],[80.59594757000008,42.56458231100015],[80.63819856500015,42.618742817],[80.81557455600012,42.66702844700018]],[[88.11756154699998,43.75139358500019],[88.044586519,43.804074350000064],[88.05022452200012,43.94073122300017],[88.23369566600002,44.14964278300005],[88.33987459800016,44.233070380000015],[88.48751059100005,44.184261720000165],[88.71046452100006,44.20660737100013],[88.90966061800015,44.15039866300003],[89.03627060700012,44.080360654000174],[89.2612915150001,43.895962137000026],[89.29050462700008,43.760399605000146],[89.01898159000018,43.835137515000156],[88.80268054400017,43.96289917700011],[88.4322966470001,44.08213476800006],[88.30763260100008,44.045616995000046],[88.18936159999998,43.90722724700004],[88.11756154699998,43.75139358500019]]]]},"properties":{"objectid":739,"eco_name":"Tian Shan montane steppe and meadows","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Palearctic","eco_biome_":"PA10","nnh":2,"eco_id":767,"shape_leng":115.640020128,"shape_area":30.8482508761,"nnh_name":"Nature Could Reach Half Protected","color":"#DBA859","color_bio":"#D6C39D","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":280766.20784881647,"percentage":5.749512699500863}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[24.99369980200015,22.035069925000073],[24.817809914000122,22.018380064000155],[24.78195992800005,21.930690085000094],[24.83609979700003,21.80248999100013],[24.98916992900007,21.779340197000124],[25.021169831000066,21.80597993800012],[25.18773981300012,21.824660057000017],[25.269359920000113,21.9441600130001],[25.198909863999972,22.05064998100005],[25.027309935000062,22.083579972000052],[24.99369980200015,22.035069925000073]]],[[[18.94618989800017,20.999179923000042],[18.959069807000162,21.079900215000123],[19.062720045000162,21.385199983000064],[19.10878992700009,21.55897992000007],[19.499649832000102,21.792799915000046],[19.571859911000104,21.859379996000143],[19.6001598740001,22.055319966000184],[19.56613979000008,22.13376995300007],[19.555829949000156,22.369950024000104],[19.576499798000043,22.499090065000132],[19.637829907000082,22.72114999100006],[19.690270127000076,22.967850071000043],[19.687569805000123,23.060920101000136],[19.574999932000082,23.079139927000085],[19.399199814000042,22.816909957],[19.330579838000176,22.741340009000112],[19.189019828000028,22.78889004300015],[19.068399857000088,22.76161997400004],[18.863099849000037,22.594829966000134],[18.980309961000046,22.435810007000157],[19.014599882000084,22.353789983000183],[18.918329810000046,22.280410075000077],[18.766269857,22.270300017000068],[18.70558979000009,22.245369957000037],[18.66841982900013,22.1237600500001],[18.60349979299997,22.055579948],[18.45264980200011,21.97153006200017],[18.30756992000005,21.928619914000137],[18.03939980500013,21.907639918000086],[17.974119807000022,21.85383008600013],[17.395679824000126,22.04242016700016],[16.91847983700012,22.11364999100016],[16.559339962000138,22.109090018000074],[16.517059614000175,22.093769944000087],[16.523555338000108,21.99371387900004],[16.628581456000063,21.85881036899997],[16.627622696000174,21.778938228000186],[16.554827032000105,21.74516840900003],[16.432612799000026,21.75679103400006],[16.28313981500014,21.845779989000107],[15.822659612000109,22.20174006400009],[15.652333592000161,22.27264807800009],[15.638941773000113,22.1909368580001],[15.856719652000038,21.822979947000135],[15.93967979900009,21.61975996700005],[15.920809930000132,21.35348998600017],[16.01065985000014,21.129699961000142],[16.099209863000112,21.01102008200013],[16.237689875000115,20.894179964000045],[16.304639950000137,20.78390996800016],[16.375769794000178,20.592330012000104],[16.43689994500005,20.496880017000137],[16.552709818000096,20.424199964000138],[16.847909912000148,20.387749925000037],[16.962769629000093,20.359260038000116],[17.086769887,20.244599926999967],[17.297839830000044,20.078920077000078],[17.477789794000103,19.843999957000108],[17.57978984500005,19.76096007300015],[17.838109883000072,19.667620029000034],[17.93146981700005,19.66193000800007],[18.09711992000007,19.59523973900008],[18.210969811000098,19.463880086000074],[18.357549910000046,19.375310007],[18.545019800000034,19.378660019000108],[18.67122998800005,19.416369833000033],[18.858609932000093,19.514960024000118],[18.923620090000043,19.57590007300007],[18.975889923000068,19.67970996100013],[19.087659961999975,20.032499915000074],[19.150969944000167,20.260730045],[19.19763987800019,20.538069921000044],[19.15072985200004,20.637590202000183],[18.970659842000146,20.765099946000078],[18.9341198570001,20.852319952000073],[18.94618989800017,20.999179923000042]]]]},"properties":{"objectid":740,"eco_name":"Tibesti-Jebel Uweinat montane xeric woodlands","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Palearctic","eco_biome_":"PA13","nnh":2,"eco_id":844,"shape_leng":15.9562382746,"shape_area":7.13003816119,"nnh_name":"Nature Could Reach Half Protected","color":"#BB7B3D","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":82421.7053153964,"percentage":0.3124143243571167}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[102.51657067200017,35.451531632000126],[102.67295854500014,35.489090605000115],[102.77772563000008,35.563074647000064],[102.7471385560001,35.66518047699998],[102.66515365200019,35.72966296100003],[102.63879357300004,35.864874459000134],[102.84584066300005,35.87697541200015],[102.90103164000016,35.979629922000186],[102.81355256600006,36.03917546499997],[102.6537775660002,36.09525022900016],[102.4125596360002,36.23268008200006],[102.17755856300005,36.30588946800009],[102.07592765200008,36.31938232100009],[101.75290653700011,36.46094227200018],[101.45872453400005,36.343272589000094],[101.12583154999999,36.24084707300017],[100.741722622,36.13841736600017],[99.84546666900007,36.061598229000026],[99.41014062500005,36.010383292000085],[98.94921155500009,35.933565161],[98.49732152899998,35.89590677900003],[98.13912961400007,35.79731816300017],[97.85825354700012,35.79731816300017],[97.48375665000003,35.734903662000136],[97.1716766020001,35.61007449300007],[96.98442857300006,35.54766015900009],[96.85959655400012,35.53205456400002],[96.53190655100008,35.45403849200005],[96.39147161900013,35.391623823000145],[96.11059555200018,35.32920546600013],[95.84532960700017,35.251189394000164],[95.4708325430002,35.063945053000054],[94.92469053000013,34.814287384000124],[94.78424855700007,34.72066202900015],[94.55019363400004,34.68945469400006],[94.23810553900017,34.611438788999976],[94.08206953799998,34.54902428800011],[93.98844166800006,34.47100469500009],[93.86360964800008,34.314968862000114],[93.6763606130001,34.19013919000014],[93.45790860300008,34.19013919000014],[93.17703253600013,34.25255352300019],[92.92736866500019,34.12772502399997],[92.67679552500005,34.059390720000124],[92.21849853900011,33.797511063],[91.73580954600016,33.37919206800018],[91.47837866800018,33.05740979900014],[91.4183575350001,32.967388662000076],[91.6197505290001,32.915362021000135],[91.71096055500004,32.850124998000126],[91.70740562300006,32.7616038860001],[91.64348556400012,32.715317173000074],[91.28904756800017,32.674448354000106],[91.07804857800011,32.62615199600015],[90.9129636420002,32.54489346800011],[90.83834861100019,32.455659223],[90.87804463300012,32.222363868000116],[90.82329555100006,32.160082807000094],[90.61975058700017,31.99719108000005],[90.4914705880002,31.937228118000064],[90.25801061200008,31.784359135000045],[89.98095652600006,31.3215548660001],[89.84095762000015,31.18623524100019],[89.71583558700019,31.128751311000144],[89.48054450000018,31.102558367000086],[89.3100586010001,31.115443699000082],[89.2009275630001,31.06053770700015],[89.01194766500004,31.011810351000065],[88.90689861300012,31.009853679000173],[88.6690295890001,31.060544580000112],[88.52597061800003,31.049725219000095],[88.26523559400005,31.118278794000048],[88.16682450700017,31.122972659000027],[88.00566062500019,31.026028908000114],[87.89627058600018,31.05245788700006],[87.94754050900008,30.867903634000186],[87.83613562700009,30.821486163000145],[87.75258666100007,30.691520899000125],[87.76187163000014,30.580121717000054],[87.74330152300013,30.440871651000066],[87.77114855300005,30.27377304700019],[87.91040750400015,30.199507540000127],[88.04037461200016,30.27377304700019],[88.10536152000014,30.26449008900005],[88.16106463100004,30.19022290600003],[88.18891853300005,30.088106850000145],[88.40243561400018,30.03240675700016],[88.53240959600004,29.930291539000166],[88.55097953500007,29.8467407280001],[88.54745460900011,29.62467511100016],[88.6276855160001,29.61488655700009],[88.59478755200018,29.523890940000058],[88.65406051600013,29.428307572000165],[88.81192058600016,29.474302930000192],[88.90508259000006,29.43718031900005],[89.00463864500017,29.47169213500007],[89.00688952200017,29.56765319200008],[88.95734358900006,29.64203855900007],[88.99017366000015,29.712685765000174],[89.14746057600019,29.73860193900009],[89.13457457300007,29.63857348],[89.17547557900008,29.486078331000044],[89.23962362500015,29.444603165000103],[89.55569463300009,29.45871141700019],[89.65200756200005,29.529137844000047],[89.67148559600014,29.434922401999984],[89.78405757300015,29.369426043000033],[89.92125658800018,29.388714143000072],[90.10577362500004,29.3816535630001],[90.1175996520002,29.427231838000182],[90.01310766199998,29.46985616300003],[89.924407513,29.626670172000104],[89.97277863800002,29.667018642000073],[90.08866163400018,29.60125205100013],[90.07223561900008,29.5343135010001],[90.22341162500004,29.48388964800006],[90.25774356500011,29.590559424000105],[90.32927657100015,29.513879259000134],[90.2883075040001,29.390520108000032],[90.45214051900007,29.30165667900019],[90.66649662900011,29.525763792000134],[90.78256251900007,29.486571522000077],[90.85436257200007,29.514148318000082],[90.92205851000006,29.59830329700003],[90.80763262300013,29.690721826000186],[90.70182752400012,29.717725468000026],[90.68144960900008,29.833399253000152],[90.61732452900014,30.027236128000027],[90.60149362900017,30.185508086000027],[90.83479351000011,30.38662062100019],[91.01177957500016,30.49924356000014],[91.18071750400009,30.57164409300009],[91.29103055900003,30.57509089900003],[91.33654060500004,30.619032523999977],[91.62602254000012,30.638801577000095],[91.85391257300006,30.77470273800003],[91.95842753000011,30.803347892000147],[92.05526751300016,30.791023310000185],[92.20907560400019,30.842729259000066],[92.37128454100008,30.769798822000155],[92.42328653900006,30.86164788500008],[92.48397855900015,31.062360771000158],[92.62878465400019,30.98191545500009],[92.7574995060001,31.022138029000132],[92.78163955500008,31.142805751000026],[92.82186162600016,31.174983710000163],[92.91839567000017,31.142805751000026],[93.03907060000017,31.223251067000092],[93.0927426090002,31.507696484000178],[93.10562861100004,31.642599863000157],[93.18161760400005,31.672073819000047],[93.39760567100006,31.703591954000103],[93.50119761200011,31.740669638000156],[93.54896557500012,31.79255294899997],[93.67571252400006,31.82894063400005],[93.6755906520001,31.680053559000044],[93.73341354600012,31.640004825000176],[93.78070860200017,31.734153715000048],[93.72250366100008,31.82445061600015],[93.74460556600013,31.924874534000026],[93.62634261200009,31.987483495000163],[93.54589059000017,31.995528110000123],[93.34477252300007,32.07597141399998],[93.37695366700012,32.20468727200006],[93.28041861800011,32.28513292400015],[93.2723696440001,32.35753345600017],[93.35282166500008,32.38166780500018],[93.52175858800013,32.35753345600017],[93.64243351900018,32.37362302200006],[93.93204453500016,32.35753345600017],[93.97226761200011,32.26904218400017],[94.25383753300014,32.277087973000164],[94.31819965300014,32.35753345600017],[94.28601850900003,32.441999906000035],[94.45897656700015,32.61496031100006],[94.86122158600017,32.96087374399997],[95.18301357800004,33.12980949399997],[95.45653553000005,33.298746585],[95.68983457400014,33.45963788700004],[95.91509252200018,33.59639484000007],[96.42191351800011,33.76533092500017],[96.71957350800017,33.82969103400012],[97.19421352800015,33.95840353900013],[97.42752061800007,34.04689397300007],[97.59645854700017,34.087115038000036],[97.81237067300015,34.159835927000074],[97.90094760900013,34.08318593700011],[98.17909251600008,33.982472844000085],[98.28727757300004,33.996899441000096],[98.22030667000013,34.12650478600011],[98.28151652300016,34.21033773200014],[98.37358854500013,34.15046412100003],[98.53988651000014,34.10085549200011],[98.61910253600007,34.039371215000074],[98.76364862400004,33.86427024000005],[98.89814766000018,33.73910965000016],[99.08206958200009,33.640060532000064],[99.27583353500012,33.615925345000164],[99.43667555100012,33.521822891000056],[99.71933763400011,33.43810041900008],[100.35591853800008,33.46422664400018],[100.62044553500004,33.459729752999976],[100.70182761299998,33.51139831800003],[100.812263546,33.637847710000074],[100.93604263000014,33.58845717800017],[101.16891453200009,33.585340116000054],[101.21430153200004,33.6547771430001],[101.13536864700012,33.746159669000065],[100.9240796430002,33.83762903100012],[100.867111535,33.914473649000115],[100.74535366300017,33.99607248200016],[100.56320954199998,33.92827931400012],[100.20365154400014,33.92610555100015],[99.92553764900003,33.94393788300016],[99.78712460000014,33.968759213000055],[99.59692362600015,33.90087116100017],[99.39008356900013,33.94685579100019],[99.29809553500019,34.01637378700008],[99.07286859900006,34.30218193300004],[98.99433167500013,34.521326122],[98.94573960300005,34.73301762400007],[98.90779154199998,34.82263743599998],[98.91115553500009,34.938697291000096],[99.03900956600012,35.07583964400004],[99.24253860400017,34.95894880700013],[99.3322065280002,34.927535613000146],[99.45761857500014,34.9371253490001],[99.70964061100005,34.81935323900012],[99.81637559800009,34.785273091000136],[99.98434457900015,34.795543102000124],[100.11745456600005,34.82930507300006],[100.04845457200014,34.98061938000018],[100.08115354900019,35.11123893600012],[100.18486753100012,35.1069210820001],[100.31933555400013,35.02280130800011],[100.43762164300006,34.895580278000125],[100.6106185920001,34.889740606000146],[100.78430956300019,34.930461568],[100.99501753400011,35.09663229600005],[101.20312459900009,35.1141719310001],[101.31880961500019,35.14048507200005],[101.402610542,35.19676988700007],[101.5169755760001,35.52737377400018],[101.57594260000013,35.582712273000084],[101.8184736400001,35.473419799000055],[102.08346566500018,35.324146653000184],[102.24213358300005,35.350730864000184],[102.51657067200017,35.451531632000126]],[[90.50223563400004,30.446824646000152],[90.6074065580001,30.51309432000005],[90.83360260900002,30.577927000000102],[90.8869095020001,30.55055371600008],[90.76589158400014,30.442500758000165],[90.68952959600006,30.337330671000075],[90.61749250200012,30.325805052000078],[90.56130257000018,30.262415233000127],[90.46621658400005,30.214871904000063],[90.42443061800014,30.10393909200002],[90.29908763800012,30.11114300200012],[90.20256063500005,29.965633331000106],[90.08730359900017,29.919530181000084],[90.04264062700008,29.869108004000168],[89.94178755700011,29.962751465000053],[90.09738954300013,30.119786589000057],[90.14205150800007,30.23648128900004],[90.3639226640002,30.39207740700016],[90.39849851800017,30.442500758000165],[90.50223563400004,30.446824646000152]],[[90.49479652700018,30.119790444000103],[90.55034658500006,30.053523956000106],[90.5215225610001,29.93595032900015],[90.58721958300004,29.823229657000184],[90.53450763800004,29.728606185000103],[90.47309158899998,29.689638717000037],[90.34320058800017,29.68577801200007],[90.27869463500008,29.765965668000092],[90.25154866800011,29.874564623000026],[90.36082454500007,30.034453617000054],[90.49479652700018,30.119790444000103]]]},"properties":{"objectid":741,"eco_name":"Tibetan Plateau alpine shrublands and meadows","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Palearctic","eco_biome_":"PA10","nnh":1,"eco_id":768,"shape_leng":55.4192887836,"shape_area":26.3423922972,"nnh_name":"Half Protected","color":"#B38160","color_bio":"#D6C39D","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":272731.6106999171,"percentage":5.584980725739102}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[45.54460156600004,31.089131731000123],[45.52980851200016,31.022320922000063],[45.61118656600013,30.850158139000143],[45.68472653500004,30.85746196200006],[45.760681498000054,31.07101625900009],[45.63563959499999,31.131456319000165],[45.54460156600004,31.089131731000123]]],[[[49.24338154900016,31.247119207000026],[49.02650449800018,31.399660122],[48.92424762600018,31.273260351000033],[48.808559592,31.070148565000068],[48.7851755910001,30.92361345100005],[48.72268649100016,30.85132624100015],[48.52016059900018,30.701982352000186],[48.470813486000054,30.574886883000033],[48.530544604000056,30.533889318999968],[48.64350147800019,30.529643717000056],[48.766220587000134,30.56258644100012],[49.20521958200004,30.737116273000083],[49.40896956600005,30.82542314300008],[49.55411546300013,30.943117972000152],[49.24338154900016,31.247119207000026]]],[[[45.37850560400017,31.59423158700008],[45.46727750300005,31.533614502000034],[45.54404450400011,31.589774594000176],[45.514457559,31.706473820000156],[45.40609748900005,31.841435370000056],[45.31032552800008,31.861568534000185],[45.26357646800005,31.71486729100019],[45.37850560400017,31.59423158700008]]],[[[44.40098156800019,32.51547550200007],[44.471633468000164,32.57294669200013],[44.42048659200003,32.65512002100007],[44.307197459,32.74855007800005],[44.214717575000066,32.72220307400005],[44.213447549000136,32.66502977700003],[44.32052250600003,32.60586577800018],[44.40098156800019,32.51547550200007]]],[[[46.06120659000004,32.78486920000006],[46.057575549000035,32.74128330299999],[45.80296752900006,32.69354383800004],[45.51729550400006,32.61214449400006],[45.35369852400004,32.825211970000055],[45.28800150200004,32.952912948000176],[45.23384854000011,33.13302965300005],[45.13442257200006,33.077306258000135],[45.108119489000046,32.94789319300003],[45.132442599000115,32.80806544600017],[45.19063161500003,32.65791588800005],[45.25724746100019,32.58227239700017],[45.4261704700001,32.47747882600015],[45.53244361500015,32.45485841600009],[45.56426953400006,32.34346895800013],[45.6425365610001,32.234406483999976],[45.70089355000016,31.944166993000124],[45.75876656800011,31.851834797000095],[45.832530501000065,31.911272046000022],[45.840518622000104,31.996928223000054],[45.89844562000019,32.00930863000008],[46.18487955900014,31.97748170500006],[46.37583557500011,31.882006966000176],[46.71000646400012,31.69105732100013],[46.8532255290001,31.56375632800018],[47.028266490000135,31.436456676999967],[47.075523493,31.37570279800019],[46.901164484000105,31.22596395400012],[46.76453057700013,31.144758902000092],[46.53536247100004,31.108073994],[46.307136490000175,31.045126403999973],[46.26757457800011,30.959449440000128],[46.39075926400005,30.828694889000076],[46.5199474800001,30.794982921000155],[46.720779557000185,30.807355783000162],[46.91518757500012,30.845695278999983],[47.24415548200005,30.847402170000123],[47.50582458600002,30.74071311500012],[47.596954481000125,30.69006697400016],[47.703113464000126,30.540220170000055],[47.76513653000006,30.52987254300018],[47.947097590000055,30.593427318000067],[48.03317252700009,30.592160310000054],[48.035015540000074,30.826343811000072],[47.91579051100007,30.98899112200013],[47.93653153100007,31.151224535000097],[48.06164954100012,31.323759809000023],[48.17673458000007,31.346576858000105],[48.139587494000125,31.46392601700012],[47.9945985060001,31.631168288000083],[47.903964484000085,31.8100753170001],[47.73856757400017,32.03187908300015],[47.67402256000008,32.141803553000045],[47.54820248200002,32.19633269400015],[47.344600522,32.24881011399998],[47.16080449600008,32.21385003400019],[46.94568261500018,32.245181923000075],[46.63402954100019,32.46337225100012],[46.53521360800005,32.506141750000154],[46.34677551600004,32.6766155790001],[46.207275502000186,32.75039610800002],[46.06120659000004,32.78486920000006]]]]},"properties":{"objectid":742,"eco_name":"Tigris-Euphrates alluvial salt marsh","biome_num":9,"biome_name":"Flooded Grasslands & Savannas","realm":"Palearctic","eco_biome_":"PA09","nnh":4,"eco_id":747,"shape_leng":16.7127083989,"shape_area":3.38210909977,"nnh_name":"Nature Imperiled","color":"#6CA8C4","color_bio":"#BEE7FF","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":35680.6977306173,"percentage":3.085596856683102}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[136.75490256900002,-28.64409676999992],[136.60696275300018,-28.845818259999874],[136.42220095500022,-28.944606450999913],[136.3483864640002,-28.963608208999972],[136.39622726400012,-29.054032593999978],[136.4942597270001,-28.99212454799988],[136.55310592800015,-29.065705349999973],[136.69912007900007,-29.01741660899995],[136.84001217900004,-28.881036724999944],[136.8928684120001,-28.86470017099998],[136.86147548200006,-28.71333759999993],[136.87423070800003,-28.58692351199994],[136.78209384900015,-28.58453589899989],[136.75490256900002,-28.64409676999992]]],[[[135.07646372300007,-25.860402244999875],[135.03005625900005,-25.91507525199995],[134.84245580800007,-25.843345667999984],[134.72520552600008,-25.85713981899994],[134.6493376960001,-25.928869401999975],[134.45208134000018,-25.828172100999893],[134.38449000100002,-25.76471900699994],[134.22585726700004,-25.87231338399988],[134.06057874300006,-25.947583009999903],[133.96692559400014,-25.921184135999965],[133.71927901100014,-25.960153901999945],[133.66828928600012,-25.99855999899995],[133.65609562100008,-26.170098944999893],[133.6834537640001,-26.261104476999947],[133.7428846910002,-26.259492904999888],[133.9208650270001,-26.317449118999946],[133.933455986,-26.363364625999907],[133.65460628800008,-26.380138945999875],[133.48474977800026,-26.45153799399992],[133.50135971800023,-26.584880716999976],[133.4645954030001,-26.65963125399992],[133.59721232100014,-26.65229670399998],[133.62992075500017,-26.56835960599983],[133.76216234900005,-26.503219729999955],[133.8423480990001,-26.50604271599991],[133.91260176100002,-26.42554069599987],[134.01912773700008,-26.426012732999936],[133.95947032300012,-26.29264354599991],[134.05826769200007,-26.16036063199988],[134.15968090400008,-26.167134380999926],[134.3337398880002,-26.35080600699996],[134.33323707300008,-26.39920493099993],[134.1863217460001,-26.496158307999906],[134.24898657100005,-26.596612076999918],[134.41262252800004,-26.648065639999913],[134.45752457800006,-26.748288034999973],[134.61123407500008,-26.786058675999982],[134.70110295400002,-26.748603686999957],[134.7769743900002,-26.758353464999857],[134.91860584100004,-26.72847554899988],[135.05185644800008,-26.73436011499996],[135.20979521200002,-26.671660750999877],[135.2971158460001,-26.669692682999937],[135.32286006200002,-26.718568708999896],[135.2027251830001,-26.82703906699993],[135.1663036210001,-26.913734017999957],[135.0623084800003,-26.970217208999827],[135.0919751350001,-27.016095839999934],[135.25700935700002,-27.068929379999872],[135.26638882400016,-27.157145927999977],[135.001299033,-27.1024298669999],[134.87561451400006,-27.146451499999955],[134.7208067050002,-27.12685927299998],[134.57139548700002,-27.160786253999902],[134.41064731000006,-27.129680730999894],[134.34023287200023,-27.067771276999963],[134.31302567500006,-26.98337132699993],[134.2395196540001,-26.91132608099997],[134.19346688400015,-26.92954546099992],[134.05601617000002,-26.909809672999984],[133.90342209400012,-26.945891719999906],[133.7653074200001,-26.924134450999873],[133.81080190600005,-27.067642012999954],[133.74681201900023,-27.142213684999945],[133.61258997700008,-27.172633703999907],[133.60250123600008,-27.11489792899988],[133.4909184810001,-27.148698509999974],[133.5227886360001,-27.274073272999942],[133.49270955300028,-27.3142318269999],[133.524382155,-27.37321950299986],[133.61557175200016,-27.36814058199991],[133.74236043000008,-27.48330449599996],[133.73015114700013,-27.54319441599995],[133.80437003800012,-27.60157799299992],[133.801365464,-27.654562083999963],[133.88262735500007,-27.70711815599998],[133.89729893900005,-27.792766059999906],[133.98161079300007,-27.832601383999872],[134.09553058100016,-27.814288500999965],[134.05188492700006,-28.012716791999935],[134.07407258500018,-28.0992991089999],[134.03101285800017,-28.16282308199993],[134.18408766900006,-28.199362347999966],[134.23477461400023,-28.33954327999993],[134.13301185100022,-28.400676329999953],[134.0432419880002,-28.494669272999943],[134.16206853900007,-28.91468309499993],[134.2615107050002,-29.055443008999873],[134.4108771450002,-29.118390751999925],[134.36508011900003,-29.256454108999947],[134.3898508840001,-29.30575637899983],[134.2043604500003,-29.362924696999983],[134.07308384500004,-29.38484807799989],[134.11077173700016,-29.443464416999916],[134.21134780500017,-29.47240374299986],[134.1904446850001,-29.525518164999937],[133.99563044900015,-29.54520769399994],[133.89667252700008,-29.485882230999948],[133.70586471800004,-29.519867027999908],[133.6218873900001,-29.50153512099996],[133.4692866700002,-29.523302541999954],[133.40314764200002,-29.564275444999964],[133.3612711200003,-29.48370490399992],[133.1335632590002,-29.494524290999948],[133.0552440780001,-29.47877603099988],[132.9502902700001,-29.525919451999926],[132.81220394900004,-29.515682348999974],[132.74477579000006,-29.483913927999822],[132.61179749000019,-29.52617585699994],[132.6874763410001,-29.644549559999973],[132.5555434360001,-29.681272565999905],[132.3834701410001,-29.662955324999928],[132.30504683800007,-29.710707916999922],[132.308477583,-29.770527340999934],[132.39828591700007,-29.788635110999905],[132.55584242600014,-29.77704781799997],[132.55929887300022,-30.020658099999878],[132.64112565400012,-30.135969445999876],[132.8164027790001,-30.09567303299997],[133.04253367700028,-30.158497651999937],[133.0960923550001,-30.19673395899997],[133.11738857500018,-30.27936535799995],[133.23454675000005,-30.218868676999932],[133.27442817700035,-30.316887055999814],[133.45650461000002,-30.318025407999926],[133.48745507100023,-30.35925009999994],[133.73153045200013,-30.436061643999892],[133.79162478900002,-30.42584747799998],[133.8718047010002,-30.506519143999924],[134.02764745500008,-30.575548658999935],[134.0028397110001,-30.680264171999966],[134.0875753480003,-30.95365024299997],[134.27554302400029,-30.917276479999884],[134.37243682400026,-30.920774420999976],[134.385147468,-31.012279178999904],[134.29206843100008,-31.10146710999993],[134.30543542500016,-31.140478345999895],[134.521332324,-31.133714882999925],[134.57695261900017,-31.175074872999915],[134.66538532000004,-31.160961245999943],[134.89326850400005,-31.214536572999975],[134.97330343600004,-31.273227352999925],[135.09901292500012,-31.292054062999966],[135.06351911800027,-31.386152798999888],[134.9842413330001,-31.423724088999904],[134.88397715100018,-31.40541100899992],[134.811833846,-31.355055531999938],[134.75192408500004,-31.54866778899998],[134.77578693800012,-31.624112322999963],[134.54502246500022,-31.5912801099999],[134.6453887030001,-31.691018106999934],[134.9254575340001,-31.776434062999954],[135.16109166100023,-31.829683719999935],[135.301886093,-31.82474893799997],[135.36245480900004,-31.797890262999942],[135.45719487300005,-31.881836474999886],[135.57897630900004,-31.918245700999876],[135.6327082150002,-32.03898750399998],[135.52369262600007,-32.077788859999885],[135.5496084350002,-31.980638216999978],[135.48889475700025,-31.913724292999973],[135.1043554260001,-31.950749526999914],[134.98975044300028,-31.904319621999946],[134.87933314500015,-31.894623342999978],[134.76644394300024,-31.84722639399996],[134.6495668140002,-31.853927962999876],[134.70934854700022,-31.94952111299989],[134.87381557100014,-32.063524507999944],[134.95654936000005,-32.16914741799991],[135.11756747800007,-32.28824360099998],[135.19425352200017,-32.44559666499998],[135.16645056900006,-32.518941502999894],[135.24290643900008,-32.573006549999945],[135.58661731800032,-32.78852223699994],[135.72956410200015,-32.81551756199997],[135.90952880300006,-32.80936870399995],[135.97763793800004,-32.85172884899998],[136.16477945600002,-32.84626124999994],[136.26122297600023,-32.82119353699994],[136.3951831290001,-32.82916139899987],[136.55234057000018,-33.023103123999874],[136.80714718700006,-33.10669654399993],[136.90873001100022,-33.111525790999906],[136.97026480700004,-33.150260748999926],[137.06465786800015,-33.12916317799994],[137.11154189400008,-33.289859608999905],[137.37924687400005,-33.356802850999884],[137.44526000200005,-33.15067999699983],[137.53973000200006,-33.09107999699995],[137.61909000200035,-32.96163999699996],[137.7824200020002,-32.992669996999894],[137.80977000200005,-32.749219996999955],[137.75271000200007,-32.71070999699998],[137.76480000200013,-32.5966399969999],[137.84912000200018,-32.642029996999895],[137.8466300020002,-32.70083999699989],[137.92091134400005,-32.74509669099996],[137.96452366100016,-32.765647723999905],[137.98123174200032,-32.59534809999997],[137.83906122000008,-32.49917460099988],[137.85766944900013,-32.24656881799996],[137.83252966200007,-32.187093638999954],[137.90456520400028,-32.049948342999926],[138.01018100700014,-31.97243900999996],[138.06198186200004,-31.982431068999972],[138.09258090000014,-31.863295214999937],[138.29363712600002,-31.626464720999934],[138.2048996860001,-31.485865829999966],[138.3238676630001,-31.43044277599995],[138.2960968110001,-31.389656463999984],[138.35409056100002,-31.24086587699992],[138.30451075800022,-31.076729977999946],[138.17302118000032,-30.98960191799995],[138.12092132800012,-30.735569101999943],[138.17341944700001,-30.712491238999917],[138.19863995100002,-30.490450818999932],[138.1591107700001,-30.36069736299993],[138.25668334700003,-30.363898126999914],[138.38082322900016,-30.472703725999963],[138.39859880400002,-30.38801577399994],[138.5110480290001,-30.401437738999903],[138.53290010100022,-30.32607557599988],[138.47300385100004,-30.17086582299993],[138.57651300200018,-30.113320717999898],[138.6730123250003,-30.10288153199997],[138.73163992000002,-30.150557380999942],[138.88233767700012,-29.962138896999875],[138.96604288100025,-30.056702035999933],[139.085059354,-30.07381780599991],[139.17016776000014,-30.01045069099996],[139.15602384600015,-29.935385836999956],[139.19729519800023,-29.856414204999965],[139.30463777400018,-29.85556804999993],[139.3499301410002,-29.81159917799988],[139.5389091730002,-29.75780739499993],[139.5367430760001,-29.83005656699993],[139.6829307060002,-29.858829836999973],[139.73488997200002,-29.916618315999983],[139.67766585200013,-30.02375270999994],[139.51764189500022,-30.124922519999984],[139.49929233700004,-30.194844079999882],[139.5366353400001,-30.260884791999956],[139.48761877400023,-30.35129842399988],[139.49724298500007,-30.416975299999933],[139.42739002000008,-30.45364127099998],[139.3076060110002,-30.648107491999838],[139.4058480010002,-30.78992500299995],[139.420952155,-30.865857063999897],[139.24753210400002,-31.019757779999964],[139.2133095160001,-31.121878917999936],[139.24444970500008,-31.199184705999926],[139.33426766500008,-31.241759497999965],[139.31509434400027,-31.304917831999944],[139.37097845200014,-31.35660091999989],[139.35558975900005,-31.417939558999933],[139.25553182500028,-31.491140775999895],[139.24723749300006,-31.58865394999998],[139.27793488600003,-31.672982283999943],[139.13782726500006,-31.782343784999966],[139.3508777420002,-31.800318874999903],[139.29626749800002,-31.891862037999942],[139.3166448100003,-31.962897941999927],[139.4621861620002,-31.928753850999954],[139.61614470200016,-31.967596008999976],[139.73925440000016,-32.06912256299995],[139.84713376700017,-32.04798536699997],[140.0119593490001,-32.11922749099989],[139.972436506,-32.179218749999905],[140.11465972100007,-32.23904833499989],[140.1373522470002,-32.15038330599998],[140.23309026700008,-32.22175257799995],[140.30831029800026,-32.17264251699993],[140.34811092400003,-32.22841531399996],[140.48756771900014,-32.17373900999996],[140.5618106820001,-32.22070371099994],[140.65597908900008,-32.19478795899994],[140.66486960100008,-32.30754326999988],[140.61137003700003,-32.31615892899998],[140.59802165800022,-32.432499065999934],[140.55985300200018,-32.50296108799989],[140.60221857800002,-32.593040601999974],[140.76559828600023,-32.583583198999975],[141.15648641100006,-32.672144510999885],[141.1860887370001,-32.78147369699991],[141.3781661690001,-32.80986676899994],[141.43614922600023,-32.68181088199998],[141.52501618300016,-32.66894398599993],[141.61371567800006,-32.72385271499991],[141.700309585,-32.65767919099994],[141.82611845300005,-32.63571394999991],[141.82859024200002,-32.47343310699995],[141.94136803800006,-32.468218100999934],[141.98427585700017,-32.47800661899993],[142.18148092800016,-32.326719195999885],[142.37389423600007,-32.24207465599994],[142.4030079810001,-32.165528991999906],[142.59481100500022,-32.19164439399998],[142.65064280200022,-32.14211833799993],[142.76242870500005,-32.12709575899987],[142.82263976500008,-32.05747023599997],[142.93718754400004,-32.01834289499993],[142.92754386900015,-31.93866740999988],[143.00206752400004,-31.85247451299989],[143.03528589600035,-31.772993628999984],[142.94290946200022,-31.62957993099991],[142.98490160400013,-31.567574186999934],[143.13477338000018,-31.45645193199988],[143.13477374600006,-31.348570610999843],[143.27060744400012,-31.279193608999947],[143.22715057300013,-31.218079882999973],[143.33385466500033,-31.18661640499988],[143.29886667400012,-31.105029811999884],[143.10108337600013,-31.04085532299996],[143.01682435200019,-31.067017756999974],[142.90186440100013,-31.152268207999896],[142.82285415,-31.106614143999877],[142.8485348500003,-31.035998094999968],[142.78101448500001,-30.94741510399996],[142.71845314400025,-30.922810103999893],[142.67147084400017,-30.79396017099998],[142.70452179100016,-30.745133746999954],[142.66098761100022,-30.58130799099996],[142.4861226080002,-30.539227205999907],[142.33913496700006,-30.567295884999908],[142.19260362600028,-30.364674922999882],[142.15846934900014,-30.288979614999903],[142.02193334100002,-30.309793086999946],[141.97196066800018,-30.359623149999948],[141.89478229400004,-30.50361556599995],[141.83754640200016,-30.56310240199997],[141.6895656600002,-30.443581723999955],[141.5791527780001,-30.50618666099996],[141.52565551600003,-30.587005356999896],[141.4277546740002,-30.588143927999965],[141.4528100880001,-30.66896244999998],[141.43231781600025,-30.757749908999926],[141.35436108500016,-30.881796674999975],[141.12621678100004,-30.98069938799989],[141.1038158890002,-31.181560226999977],[141.02884002100006,-31.298271429999886],[140.96244191400012,-31.24433434599996],[140.9356112700002,-31.120554956999968],[140.77916728700018,-31.21795907699982],[140.60737889400014,-31.285007758999882],[140.49196521400006,-31.35748305999988],[140.380784682,-31.373352533999935],[140.3167532760002,-31.283345232999977],[140.24041771400005,-31.311695940999982],[140.10040508600002,-31.18938000199995],[140.00726669800008,-31.226383339999984],[139.93491398800006,-31.175192964999837],[139.80247092900015,-31.224117823999848],[139.59624299900008,-31.025450380999814],[139.5099327680001,-30.835317158999885],[139.63958500900014,-30.61212285199997],[139.8245187660001,-30.495130144999962],[139.9053855960001,-30.32368004499989],[140.04188343500016,-30.12514053699988],[140.1112900070001,-30.072679995999977],[140.1429216500003,-29.886847629999863],[140.10938106700007,-29.80617419099991],[140.03385714,-29.802841592999982],[139.96478517800017,-29.723388625999917],[139.9779143820001,-29.62376748299988],[139.9547826690001,-29.543053497999892],[139.86920043700025,-29.48613994799996],[139.80807870600006,-29.488074433999884],[139.63182468200011,-29.332607030999952],[139.4560058310003,-29.212724436999906],[139.3623293710001,-29.127225138999904],[139.20898059600006,-29.06099362499998],[139.15900909400023,-28.98514866599993],[139.01543882500005,-29.076100478999876],[138.95838094400006,-29.02976459899992],[139.00935590500023,-28.95336225799997],[138.9461296410002,-28.93007336499994],[138.88866194900004,-28.835828808999963],[138.90436731500017,-28.74668894799987],[138.8326361290001,-28.57637069999987],[138.7009228830002,-28.625984450999965],[138.5075145820001,-28.76602410499987],[138.44678466400023,-28.754246633999912],[138.41817833700009,-28.94467886299998],[138.43299768500003,-29.011041709999972],[138.40572685500013,-29.121384967999973],[138.29473022000002,-29.183496550999905],[138.19444396200004,-29.201960660999873],[138.18339119200004,-29.070388060999903],[138.10270744000013,-29.079777028999956],[137.9730209410002,-29.14124443499992],[137.9382611750002,-29.07277927699988],[137.86735806700005,-29.059543802999883],[137.76368033800009,-29.214181414999928],[137.65100395200022,-29.301336404999972],[137.4948582180001,-29.35484737799993],[137.4055358600002,-29.430575422999937],[137.29829006100022,-29.450343530999874],[137.2406308520001,-29.50671537799991],[137.16776989000005,-29.473558854999965],[137.01370778200032,-29.314076076999868],[136.85083727000017,-29.30114910799989],[136.75025313300011,-29.267221502999973],[136.56715018700015,-29.125011626999935],[136.51900389200023,-29.16132140299993],[136.38906950500018,-29.141578992999882],[136.33173885600013,-29.244822728999964],[136.15760338600012,-29.239648003999946],[136.04607896000005,-29.19856252799991],[135.97106885100015,-29.277523188999965],[135.92626874000018,-29.2186788759999],[135.70015757700003,-29.301174936999928],[135.60627589600006,-29.21541982799988],[135.53104006400008,-29.219576287999928],[135.52313050200007,-29.07140778099989],[135.46574220500008,-29.08474810399997],[135.28692236000018,-28.98775526199995],[135.33863010000016,-28.92390003099996],[135.4440556950002,-28.97144849299997],[135.59687976500004,-28.96820952899992],[135.63684418000003,-28.869012527999928],[135.7159517890001,-28.799669233999964],[135.67430873500018,-28.734911651999937],[135.67371800700016,-28.63274337099989],[135.62128550400018,-28.555888809999942],[135.6270840120003,-28.416772619999904],[135.68379030100004,-28.36013410799984],[135.61606142000005,-28.266353368999944],[135.72656728000015,-28.110100516999864],[135.78940185200008,-28.10788786899991],[135.85421012600023,-28.310452948999966],[135.762956765,-28.420001543999945],[135.76467144900016,-28.49059120399994],[135.85144252400016,-28.490931690999957],[135.9381607930003,-28.542848732999914],[135.96011128600026,-28.71960773299992],[136.03732824800022,-28.81158632599994],[136.2013075990002,-28.799715615999958],[136.2888119700002,-28.85592268099998],[136.3679026770002,-28.841160425999874],[136.4691674510001,-28.713708505999875],[136.44910373200014,-28.65720866399994],[136.5517865180002,-28.590066351999894],[136.6022758470001,-28.524647753999886],[136.70139633100018,-28.53925591999996],[136.75190047600006,-28.499740308999947],[136.7299271730002,-28.409027081999966],[136.64969783200002,-28.340114523999944],[136.53935888600006,-28.350311116999933],[136.41182280100008,-28.240624913999966],[136.6771402500002,-28.197927083999957],[136.7550886050002,-28.153971456999955],[136.80723848100013,-28.07425693899995],[136.8025801030002,-27.940205750999894],[136.87260590800008,-27.84205406299992],[136.9054286370001,-27.746970060999956],[136.84454268700006,-27.546400016999883],[136.73657831000014,-27.437467011999956],[136.62785615100017,-27.090354537999872],[136.54680028000007,-27.10716060699997],[136.45575450100023,-27.053479122999875],[136.27338869400035,-27.00661781399998],[136.21573275900005,-26.90899011599987],[136.08062087200005,-26.850139838999837],[136.04118297300022,-26.706284200999903],[135.94593114300005,-26.68167811799998],[135.91457120100017,-26.521572127999832],[135.94334184700017,-26.41544050599998],[135.8992033950002,-26.31940522399998],[135.91458163100015,-26.26699971599993],[135.8710857760001,-26.173868188999904],[135.97699993800018,-26.18658009399985],[135.87148090200014,-25.979495939999936],[135.79408341500005,-25.981809451999936],[135.72188146200006,-26.04201336899996],[135.65319870700023,-26.001782736999814],[135.52909629200008,-26.01831208899995],[135.37457722100032,-26.091575577999947],[135.25214208600016,-25.973010684999963],[135.26317740700006,-25.837828006999928],[135.07646372300007,-25.860402244999875]],[[135.27955034200022,-29.089016727999933],[135.37288002800017,-29.098064684999883],[135.42230368000014,-29.16884753199986],[135.3719075250001,-29.21876931399993],[135.24361665600009,-29.137383907999947],[135.27955034200022,-29.089016727999933]],[[137.989298544,-29.676351480999983],[138.0912210910002,-29.763946907999923],[138.12880295000014,-29.954705280999974],[138.19897511500005,-29.98890253299993],[138.25555257400015,-30.069339970999977],[138.18650344300022,-30.127574404999905],[138.1243914580001,-30.291520956999932],[138.0637683650001,-30.30761096799995],[137.85666210500005,-30.185370430999967],[137.82371368200018,-30.13285554099997],[137.7295475520001,-30.1141569589999],[137.58633332800002,-30.03693136399994],[137.63875984100025,-29.948446041999887],[137.59137194800007,-29.87529062199991],[137.8141100370001,-29.7287180969999],[137.989298544,-29.676351480999983]]]]},"properties":{"objectid":744,"eco_name":"Tirari-Sturt stony desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Australasia","eco_biome_":"AU13","nnh":2,"eco_id":215,"shape_leng":120.711891563,"shape_area":28.8408268898,"nnh_name":"Nature Could Reach Half Protected","color":"#D86B42","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":309079.79908582557,"percentage":1.171547667381179}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-64.02983717699988,59.84966604700003],[-64.19721367099993,59.76774934600013],[-64.15822601099995,59.70033991000008],[-63.99293888099993,59.71835554800015],[-64.02983717699988,59.84966604700003]]],[[[-64.45590584099989,60.230151010999975],[-64.41598367899996,60.27085061100007],[-64.64324491099984,60.34306583700004],[-64.81538313599998,60.32016913600012],[-64.95752858199995,60.25693754700012],[-64.89820077999997,60.21166460500007],[-65.1221997799999,60.06067009600008],[-65.11161162999986,59.963601969000194],[-65.52763803699997,59.745267394],[-65.51301418499986,59.666156398000055],[-65.38584314899992,59.502022172000125],[-65.28638517099989,59.45311143500004],[-65.17228735799995,59.33864464600009],[-65.25859841899995,59.23757063300019],[-65.23188089199994,59.070239148000155],[-65.35654418999991,59.001194601000066],[-65.25795091599991,58.77389352700004],[-65.31281227999995,58.68469188100005],[-65.08098527999988,58.655137836],[-64.94222349199998,58.58908512800008],[-64.87574847699995,58.48782787800002],[-64.92094207899999,58.409128319000104],[-65.09215631899991,58.34813507500013],[-64.93308291699998,58.25073901900015],[-64.75755525399995,58.102362080000034],[-64.57087613599992,57.88921025600018],[-64.52884933899992,57.79468399400014],[-64.57475897399996,57.68481630200017],[-64.54315022799994,57.57941914700018],[-64.62784663899998,57.32043623800007],[-64.59454559199992,57.23395819100011],[-64.49909051199995,57.182457214000124],[-64.37724142499985,57.19253230300018],[-64.19912712499996,57.274770121000074],[-64.1325839729999,57.41628996200018],[-63.70590564299994,57.46930362100011],[-63.516087599999935,57.56790807300001],[-63.34049750299988,57.780986190000135],[-63.21709532099999,57.69805174400017],[-62.975079740999945,57.67944494900013],[-62.80180218899994,57.74462343200008],[-62.7755084879999,57.80443234500018],[-62.58383886499996,57.715662342000144],[-62.594592929999976,57.676925656000094],[-62.392353265999986,57.61223036100017],[-62.08956385099998,57.67369697700002],[-61.99146648899989,57.7340051700001],[-62.18903774799992,57.79520323800011],[-62.19848701799998,57.88298407700006],[-61.965517471999874,57.78422525400009],[-61.88945632299993,57.87375798099998],[-62.21424015199983,57.920879049000064],[-62.38994866599995,57.9225903090001],[-62.33718565299989,58.06151820300005],[-62.50395462699987,58.096578990000125],[-62.53184601599986,58.1760226630002],[-62.69904838399998,58.270711373000154],[-62.62487249299994,58.32002237400013],[-62.63399229399994,58.5013232710001],[-62.81613945799995,58.48553596400012],[-63.09694437999991,58.400671833000104],[-63.169591459999936,58.49915099600008],[-62.90725034199994,58.59331309300006],[-62.846226552999894,58.66794983300002],[-62.90291515499996,58.81511652600017],[-63.09879995199998,58.87916388000008],[-63.18653429099999,58.98438569500013],[-63.13519061499994,59.0513803340001],[-63.389135770999985,59.09309265200011],[-63.36290498799991,59.18511667400003],[-63.53077180599996,59.264558726000075],[-63.53264625999998,59.33427939900014],[-63.82008038599997,59.398431866000124],[-63.72146630199995,59.493544698000164],[-63.94395930099989,59.62997832800016],[-63.947730063999984,59.68403499100003],[-64.18240443199994,59.692057531000046],[-64.26049813599985,59.75490509700012],[-64.17083089999988,59.805297681000184],[-64.1266254599999,59.899592096000106],[-64.16887583499994,60.03746530799998],[-64.31907983999997,60.05803245300007],[-64.36979088899994,60.20058515200003],[-64.45590584099989,60.230151010999975]]],[[[-64.51568564399992,60.405780481000136],[-64.60975145499998,60.474385576000145],[-64.74398132599998,60.50247856700008],[-64.8544273249999,60.42693686600012],[-64.7634164399999,60.37656663100006],[-64.51392704699998,60.306762882000044],[-64.51568564399992,60.405780481000136]]]]},"properties":{"objectid":748,"eco_name":"Torngat Mountain tundra","biome_num":11,"biome_name":"Tundra","realm":"Nearctic","eco_biome_":"NE11","nnh":2,"eco_id":421,"shape_leng":28.7541950831,"shape_area":5.07474944158,"nnh_name":"Nature Could Reach Half Protected","color":"#5ABF9D","color_bio":"#9ED7C2","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":32666.577348017574,"percentage":0.38228183618876654}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[134.968994607,50.59821238800015],[134.82949861500003,50.64461091600015],[134.5296936960001,50.554586594000114],[134.3807985740001,50.54147126200013],[133.98699966400034,50.53872048900013],[133.90910362000022,50.45679928800007],[133.941406636,50.33546738400014],[134.0287016430001,50.23228917300003],[134.18049656900018,50.1864855930001],[134.32910167800014,50.22139806300004],[134.4920956640002,50.21264366800017],[134.77969368200024,50.1314738210001],[135.00100660400005,50.33442149000007],[135.09550468300006,50.36382604400012],[135.03759763400012,50.534459465],[134.968994607,50.59821238800015]]],[[[133.86669957200013,51.096407903000056],[134.84840366300023,51.26789946300016],[135.048797701,51.29667118400016],[135.05000268300023,51.5525344780001],[134.8334956100001,51.60014603500014],[134.62739567500012,51.610736235000104],[134.40559358500002,51.58346487400007],[134.2089995660001,51.52525507100012],[133.99259961300015,51.419464054],[133.7664945900001,51.27066180300011],[133.55830370500007,51.17046000600004],[133.27969360200018,51.06988739400015],[133.31689466700004,51.03604696800011],[133.86669957200013,51.096407903000056]]],[[[115.2969965740001,52.89421147100012],[115.4992976630001,53.03442327700009],[115.54370163300007,53.114744038000026],[115.35990158400023,53.149564811000175],[115.11489855400032,52.99296470799999],[115.11039763900033,52.90279085200007],[115.2969965740001,52.89421147100012]]],[[[114.71029654300003,53.18324564500017],[115.05539659700003,53.30702020300009],[115.2279965790002,53.51974385400018],[115.32129654900018,53.59299548500019],[115.57240261100014,53.70344784600013],[115.71980256900008,53.83445598700001],[115.81079868900008,53.96322381300007],[115.70860267000012,54.00457593200008],[115.55039961200009,54.016486113999974],[115.41500052700019,53.98361044600017],[115.06659666300004,53.860213576000035],[114.9204025250001,53.839251106],[114.79830166500017,53.724559513000145],[114.36450163000018,53.26923827200011],[114.38600154700009,53.20599698000012],[114.51989758900015,53.17222528600007],[114.71029654300003,53.18324564500017]]],[[[117.57800261200009,53.53448426800014],[117.9196015440001,53.66472798000012],[117.99490355600005,53.755020020000075],[117.98500067300006,53.84431310500008],[117.60209656000018,53.952885741000046],[117.3764035910001,54.08482779400009],[117.22660054100004,54.06299226600015],[117.11789664400021,53.99322348300018],[117.0451965420001,53.87568187500011],[117.02729765800007,53.63169640800015],[117.20909862400015,53.54552424100012],[117.38680268300004,53.509062459],[117.57800261200009,53.53448426800014]]],[[[135.58450357400022,54.27126797500006],[135.41639662600005,54.307672089],[134.9579926880001,54.21578564300012],[134.55589267600033,54.25732082400009],[134.51370270200005,54.169599513000094],[134.6520996580001,54.02995549700006],[134.5455016310001,53.88335701600005],[134.44270362300006,53.79918007700019],[134.48319961500033,53.70561909400004],[134.61839267200014,53.625356001],[134.6235966610002,53.53446499000012],[134.44279465000022,53.375361548000114],[134.39050263900015,53.253308129],[134.56289659400022,53.04665364800013],[134.56179755900018,52.96579191900014],[134.35780366100005,52.79917762100018],[134.1876066020002,52.78122928400006],[134.0522006440001,52.89070934500006],[133.94389354700002,52.88872953900005],[133.9402006480001,52.74706850200016],[133.86929360300007,52.69451564600007],[133.74510162600018,52.67801704300018],[133.60029569900018,52.70143557700004],[133.3764956990001,52.83853836800006],[133.21440159300005,52.766217966000056],[133.19740259100013,52.67595727400004],[133.23210165800003,52.5763033180001],[133.34919768400005,52.486351415000115],[133.53390465500013,52.4243803170001],[133.69659454600003,52.412126980000096],[133.75900267700013,52.36928020000016],[133.51229862300033,52.217108256000074],[133.41580162800005,52.04792406700017],[133.50019867600008,52.003104354000186],[133.63099659800002,51.991602036000074],[134.1269985690002,52.192506700000024],[134.27720663300022,52.20451595600019],[134.36700464400008,52.14722581500007],[134.32659867400014,51.99679412200015],[134.43200663800008,51.9719218300001],[134.6333005580001,52.02473385500008],[135.06790156700004,52.08659381000007],[135.09970066400012,52.169626284000174],[134.9900965510002,52.33218541700006],[135.06779461400004,52.406881753000164],[135.30830360300013,52.5509846060001],[135.3538056030003,52.765416991000166],[135.1782986080001,52.90432876400013],[135.26539563500012,53.00162069900006],[135.42300458400007,53.096150630000125],[135.45080568000014,53.16261526599999],[135.3471986510001,53.25100796800007],[135.12030070000014,53.38506276300012],[134.9826046380001,53.556815670000105],[135.13049359700017,53.74443082700009],[135.13859554400005,53.81838050300007],[135.0690006020002,53.888511216000154],[135.11259454600008,53.98924442600003],[135.5796965520001,54.208770492999975],[135.58450357400022,54.27126797500006]]],[[[116.31220262900001,53.64142746200008],[116.40599864000023,53.683516351000094],[116.57180056400011,53.91208263700014],[116.78289762200018,54.04986486400003],[116.91210164300003,54.181123959000104],[116.99310267900023,54.31644224200011],[116.88379662600005,54.337374704000126],[116.67389667100008,54.237201406000054],[116.40689868900006,54.07392528500014],[116.27189657100018,53.94300548900003],[116.13880167200011,53.675554381000154],[116.31220262900001,53.64142746200008]]],[[[114.66300165500013,54.31257013800018],[114.73110160100009,54.38601287700004],[114.82029762300022,54.562039214000094],[114.56220256300014,54.582169696000165],[114.22689860800006,54.49951742500019],[114.119796661,54.420032675000186],[114.05419955100012,54.319509348000054],[114.09300256600022,54.24314149300011],[114.38330056300015,54.21536956600005],[114.66300165500013,54.31257013800018]]],[[[113.22940066400008,54.59853100300006],[113.3142015520001,54.670389730000124],[113.44219958400015,54.714271843000176],[113.5615005530002,54.86043563800007],[113.48339865000014,54.91910694900008],[113.30069763600011,54.92350912400008],[113.12000257900002,54.844726107000156],[112.94239759400011,54.70149262500007],[112.96109762000015,54.617021481000165],[113.0615996570001,54.58941786300011],[113.22940066400008,54.59853100300006]]],[[[114.58029959500004,54.843475192000085],[114.65820368600009,54.92675610600014],[114.68579858700002,55.02492160300005],[114.53170065000018,55.04548023200016],[114.25219753900012,54.99272889200017],[114.16609963500002,54.92514627700007],[114.15119962900019,54.7993228470001],[114.2554016050002,54.781499568000015],[114.3908006900001,54.83511675800008],[114.58029959500004,54.843475192000085]]],[[[117.81169862200034,54.55839895300005],[118.0115966190001,54.64003198500018],[118.09179668000002,54.74879187300013],[117.84329957000023,54.79284497600014],[117.96199754500014,55.01760839299999],[117.84909867400006,55.062550649000116],[117.70770267300009,55.03575990700011],[117.51370268500011,54.86099253200018],[117.42099766300021,54.64797015000016],[117.48000357900003,54.54724884300015],[117.81169862200034,54.55839895300005]]],[[[112.9262005720002,54.90195556300006],[113.09909861500023,55.07186294300004],[113.09140067500027,55.143981676000124],[112.98570252900015,55.1608432160001],[112.87010166700009,55.122161403000064],[112.73370362700018,54.9927977910001],[112.7139965990001,54.88265706900006],[112.8164975520001,54.84809429100011],[112.9262005720002,54.90195556300006]]],[[[113.89350153600003,55.03213205100019],[113.98480259000019,55.16679453500018],[113.95520055800012,55.23423633300007],[113.60669661400004,55.27121611700005],[113.45749655800012,55.20763552500006],[113.48020162500018,55.051018323000164],[113.59919766000007,55.016990479000015],[113.78269964900028,55.00862919500014],[113.89350153600003,55.03213205100019]]],[[[112.45130155100014,54.65210226100004],[112.40769956100007,54.77336325400006],[112.27259853700002,54.94970994800008],[112.50450165800021,55.21820577600005],[112.4245986520001,55.28344648700016],[112.06909967400009,55.36157068600011],[112.07299759400007,55.42858031400016],[112.16960154300011,55.52200198900016],[112.18229660600002,55.61414441900013],[111.92970258900016,55.60520595700007],[111.62779968000018,55.46310118200006],[111.60739863100014,55.34204990400019],[111.76940154100015,55.20105522900002],[111.778701598,55.0994816490001],[111.65319852300019,54.960207946000196],[111.62719752400011,54.813845332000085],[111.67060052700009,54.67841305500008],[111.63899957900003,54.55507703800009],[111.47930152499998,54.54672966800007],[111.29479957500007,54.60796919400019],[111.18959763700013,54.57857134500006],[111.05969959600009,54.38013464800014],[111.01609760600002,54.23556106800004],[110.66660258500008,53.88534905900008],[110.43250256700014,53.753440870000134],[110.24620052000006,53.66858918700012],[110.00150259100013,53.68563764300012],[109.50969660100014,53.366271541000174],[109.2464986390001,53.12431114200007],[109.255897602,53.026954163000084],[109.37940259800018,52.992854570000134],[109.7632977880001,52.99622275400009],[109.91249868200003,53.07040511100007],[110.26349657700018,53.19432769400004],[110.49030266300002,53.22619652800006],[110.63169866400006,53.40112316000017],[110.84210153300012,53.53901636300003],[111.24469758700008,53.75209104800001],[112.03869666700018,54.225700094],[112.31310257500013,54.451535555000135],[112.45130155100014,54.65210226100004]]],[[[115.1179966730001,55.39500626600011],[115.21829955500004,55.468140215000176],[115.17479664000007,55.542014454000196],[115.0458985590002,55.574806303000116],[114.99449955500006,55.63080680400003],[115.01869961900002,55.725269512000125],[114.87750260400003,55.72580729500015],[114.75689657200007,55.58023442400008],[114.74269863400002,55.502691426000126],[114.91799960100025,55.38124318100006],[115.1179966730001,55.39500626600011]]],[[[117.34580260300004,55.507364504000066],[117.49749761700014,55.55564376400008],[117.64659859800008,55.56295295100006],[118.11489854700017,55.62512655600011],[118.2097015600001,55.713027910000164],[118.21399661500027,55.81527975299997],[118.0798036860001,55.86350218300004],[117.73000356400007,55.83110311000013],[116.94960060100004,55.63658696500005],[116.89209756000014,55.57673615300007],[116.94319967700005,55.493383154000014],[117.14070162300015,55.47832171300007],[117.34580260300004,55.507364504000066]]],[[[109.90609759000012,54.22596714100018],[110.04900367500017,54.344690765000166],[109.982299651,54.460984642000085],[110.049102581,54.64748215600008],[110.3656005630001,54.96559818000014],[110.43489861800003,55.11855215500003],[110.48030053800017,55.348279167000044],[110.73829652400019,55.567794003000074],[110.799003631,55.65838846200006],[110.79329656100015,55.75196922600003],[110.73079656400012,55.836432323999986],[110.62329865600009,55.88442291000007],[110.4486995900001,55.91283152700004],[110.21849866500008,55.91294250300018],[110.13099662500002,55.884384689],[110.01979860900013,55.63854682099998],[110.03130361000018,55.50389238500014],[110.11920161100005,55.36894072600012],[110.1719965370001,55.22263477400003],[110.06939667800003,55.01710950200004],[109.786102599,54.83658610600014],[109.65149661000015,54.60043101300005],[109.67629966700008,54.3900950310001],[109.7313005430002,54.21026968100006],[109.90609759000012,54.22596714100018]]],[[[111.5054015980001,55.769890573000055],[111.55780056200007,55.827643060000185],[111.52760358300009,56.01341620900007],[111.4121016270002,56.077887126000064],[111.20439957500002,56.02514685000011],[111.10500361500016,55.875503392000155],[111.14199865300014,55.78205992300008],[111.41899859300014,55.73794965500008],[111.5054015980001,55.769890573000055]]],[[[114.41509966000012,55.678248041000074],[114.5752025600001,55.803861589000064],[115.07450063000022,55.97019526100007],[115.15229760000011,56.03527503900017],[115.03230260900023,56.092989639999985],[114.56749757900002,55.98546558000015],[114.10749856500013,55.898572233000095],[113.77480356100011,55.767861482000114],[113.22200061700005,55.652586509000116],[112.77719866400003,55.58242042400008],[112.58059659900016,55.59449371700009],[112.5090025730002,55.52431288000014],[112.60230254300006,55.46832344300003],[112.95189663700012,55.3297016840001],[113.183196597,55.398764375999974],[113.55909762900012,55.44976490400006],[114.04080158200009,55.45609307300009],[114.22460163100016,55.51116368600003],[114.41509966000012,55.678248041000074]]],[[[133.19839467300028,55.94618446100009],[133.15580756400027,56.06387878700019],[133.24409465300005,56.19223154100018],[133.51170367600002,56.40063851100007],[133.39520259800008,56.48213072700008],[133.27859456600004,56.50100643700006],[133.0366056690001,56.41014878600009],[132.8912966600002,56.302365558000076],[132.58760069400023,55.95496584600005],[132.32200668100006,55.920674809000104],[132.13189656700013,55.95576380300008],[132.03660555900012,56.01272621100014],[131.99530054600007,56.10361789299998],[132.14329562000012,56.26833369000019],[132.11439565600006,56.32295419400009],[131.86390667000023,56.369765615],[131.25630167000008,56.018066489000034],[131.03759770000022,55.98081546700007],[130.9344025570001,55.997416832000056],[130.85910054500005,56.10442305800012],[130.9293056900002,56.19653145700016],[131.06759669900032,56.29338535400012],[131.1029056340003,56.38707692700007],[130.9790036700001,56.40871849800004],[130.7731935810001,56.395679274000145],[130.5487976280001,56.32630729100015],[130.41259756800002,56.25683120400004],[130.34860257600008,56.143070002000115],[130.4483036380003,56.04139818699997],[130.45249961800005,55.91303353100005],[130.19880656600003,55.75732107100009],[130.02259867700013,55.7201112890001],[129.76879867200023,55.723129444000165],[129.61520364900002,55.764531520000105],[129.49110454300012,55.87518337100005],[129.5265046730001,55.95949777300012],[129.71290562700005,56.14234899100006],[129.53320365800005,56.19822443400017],[129.3751065470002,56.06480984900014],[129.31579569700034,55.96694509400004],[129.03169259800018,55.82160104900004],[128.68640160500024,55.77816166800005],[128.54969762500014,55.727989272000116],[128.5068055830002,55.61353321000007],[128.59500164400004,55.53445313900011],[128.71429456700014,55.506952450000085],[128.9261936060002,55.500531242000136],[129.42439264100017,55.607716170000174],[129.69920356300008,55.59904492300012],[129.9008025830001,55.47067339400007],[130.26280256500002,55.379038069000046],[130.61650060700003,55.45258005000011],[130.93879668600005,55.59256386800007],[131.15870664500017,55.59542494700008],[131.25750765800024,55.558894936000115],[131.32319663400006,55.46153326400014],[131.35969563100014,55.249044642000115],[131.15750166300006,54.97320827800007],[130.69180261900033,54.53891756600012],[130.23100263000015,54.211428562000094],[130.12449663600012,54.02470624600011],[130.10870362200012,53.91092258100008],[130.19830365200005,53.78627865200008],[130.37130764300014,53.66682597000016],[130.8155976290002,53.57713692400017],[131.21539261800012,53.568255962000194],[131.31010460400023,53.60574771200004],[131.1994016230002,53.726428343000066],[130.92449967400012,53.853823213000055],[130.80439756300007,53.942803485000184],[130.79420466600016,54.04820591800012],[130.88890055800005,54.20632046300011],[131.0003056070001,54.33794249500011],[131.31430058500007,54.592274750000115],[131.46530157600023,54.67228169300006],[131.52310167200028,54.65874760100007],[132.13800060400013,54.67822613800013],[132.36180161000004,54.71836086999997],[132.44119265000006,54.814433406000035],[132.3486026270001,54.88482731100004],[132.17610155100033,54.919827960000134],[131.71960466300015,54.94064961300012],[131.85020460500004,55.10094261500018],[131.95579563100023,55.35186913600012],[132.05670167500034,55.42167228500011],[132.4353026870001,55.483002838],[132.83110068100018,55.480343763],[133.08920261400033,55.53174394000001],[133.25250270800018,55.531874027000015],[133.63020367000001,55.40647086500019],[133.9313045990001,55.475060649000056],[134.41999855600022,55.5603440000001],[134.7171016520001,55.59239572700005],[135.12690765100012,55.66246676100013],[135.4815065800001,55.69559757500008],[135.885803656,55.74855896500003],[136.24079854600018,55.86520438000014],[136.2613065490001,56.05245743800009],[136.14540058600016,56.10367874500008],[135.70860267900014,56.018127509000124],[135.08779869700004,55.85837195500011],[134.4001005880002,55.77840994000019],[133.77569557200002,55.71780023000014],[133.46820059300012,55.762787413000126],[133.31530763800015,55.84342165700019],[133.19839467300028,55.94618446100009]]],[[[119.62819668400016,56.805779478000034],[119.491302603,56.825180901000124],[119.20449868700007,56.9109956640001],[119.05549661100008,56.91595875700011],[118.88880167900015,56.88569170500011],[118.63169853400007,56.793407956000124],[118.4988026210001,56.665775208000184],[118.05760153300014,56.522441981000156],[117.76139865300024,56.50768966400017],[117.59880062800016,56.464319350000096],[117.38860361800016,56.370757529],[117.20059954200019,56.315767047000065],[116.67530064000016,56.238657729000124],[116.50350163200017,56.18432019800008],[116.21499652400018,55.94641362200014],[116.30480157600005,55.86117201400009],[116.45010354400017,55.85908089700018],[116.7558976680001,56.01088738900006],[116.90769963500009,56.06786890800004],[117.29329668500009,56.06613670400003],[117.41760265700009,56.04735721700007],[117.66609959900006,56.10012666200004],[117.75589761000015,56.18125309200019],[117.92310367000016,56.208356981],[118.14340154400031,56.13536887700002],[118.57019766000019,56.06254757300019],[118.64459962400008,55.9930649480001],[118.7935026250002,55.97243809000014],[118.98899861500001,56.00915518500011],[119.04620359500029,56.0761281],[119.0904005320001,56.37485762100016],[119.27660367400006,56.48524276000006],[119.4004975900001,56.47633950200009],[119.4393006050002,56.38522704100018],[119.41120161600008,55.95348560200017],[119.57289858700005,55.906762526000136],[119.83010063900008,55.881653697],[120.27020269100024,55.95410368300003],[120.61250268600008,56.05489858300001],[120.7307966530002,56.12976071300017],[120.75229657000011,56.23799488800012],[120.28269960600016,56.344984853000085],[120.0917965640001,56.43655831900003],[120.09909854300008,56.53546142400012],[120.31860365600005,56.73597917900008],[120.33840154300026,56.79422016300009],[120.1386036260003,56.825317862000134],[120.00080061100005,56.80413142800012],[119.62819668400016,56.805779478000034]]],[[[137.59970068600012,57.09876421000013],[137.61030563800023,57.20892454600016],[137.47320569700025,57.229471273000115],[137.18789660900006,57.074246640000126],[137.05729666700006,57.05266189800011],[136.95359760500014,57.08751083400017],[136.9210966070001,57.155201073000114],[136.72810362200005,57.18918315200011],[136.55029261000004,57.08353965600003],[136.6038965570001,56.932694232000074],[136.74690255400026,56.871451354000044],[136.89779659300007,56.85601289400006],[137.19410659400023,56.885771668000075],[137.35119670300003,56.93210213500004],[137.59970068600012,57.09876421000013]]],[[[123.27629867500025,57.34383597100003],[123.09490154900004,57.390937406000035],[122.72530354000014,57.38101893200002],[122.49739858700002,57.3115468690001],[122.27429964900011,57.30326454200002],[122.15609754700006,57.325196463000054],[122.02729753500023,57.29128613200015],[121.92240153700016,57.209401644000195],[121.89679767300004,57.121229890000166],[121.947303669,57.053474775000154],[122.12010163200011,56.997591285],[122.49349966100021,56.921973778000165],[122.77700060400025,56.839513285000066],[123.02020253100022,56.74064857000019],[123.19899757800022,56.61918473400016],[123.43840065900008,56.53115111400018],[123.9507976320001,56.46467021600017],[124.21549964400003,56.361678252000104],[124.31839756300008,56.22984248200004],[124.33229861500024,56.116534238000156],[124.43129760800002,56.118510188000016],[124.65280163800003,56.29994654000012],[124.71829967300027,56.43542927700008],[124.71289854200006,56.559064193000154],[124.64689658700001,56.74736666500013],[124.43969761600033,56.93693229000007],[124.05519859500032,56.90346519500008],[123.90920260500013,57.016215707000185],[123.47869867000009,57.17387058800006],[123.27629867500025,57.34383597100003]]],[[[114.73179662800021,57.52942287500002],[114.55919664500016,57.62301570900013],[114.33480052400012,57.67342816200011],[114.0127025930002,57.694195836000176],[113.88079859400023,57.567544106000014],[113.8908005510001,57.4537292600001],[114.18659959100012,57.342336952000096],[114.2499996360001,57.25200518100013],[114.17189756500011,57.10372327900018],[114.04190061700001,57.007445386000086],[113.87400053500005,56.99786604400009],[113.5734026880001,57.05688889200013],[113.08599853900023,57.035835395000106],[112.9539036000001,57.077317602],[112.38420056000007,57.175220578000165],[112.24439963500015,57.13474922900008],[112.26119965200007,57.06924951700012],[112.60769663300027,56.941014612000174],[112.65529662300003,56.84216062600018],[112.61239653400003,56.70141723900019],[112.51979863200006,56.59976419999998],[112.29699658100014,56.58347464200011],[112.14080065300027,56.627120049999974],[112.01940152600002,56.85687103300006],[111.83830262900017,56.89874215999998],[111.68080163900004,56.866980112000135],[111.4399035620001,56.709638378000136],[111.28639956700016,56.64357339000014],[111.14769767700005,56.713456670000085],[111.26219967100013,56.888133018000076],[111.44789855700014,57.08882696100011],[111.37770062000004,57.17782969700016],[111.26860059500007,57.140730723000104],[111.02310152400008,56.99048812500007],[110.75939964100019,56.797169084000075],[110.510696672,56.761767110000164],[110.51540361300016,56.83954044300003],[110.71810166900019,57.0206058120001],[110.96060152800015,57.208840559000066],[111.1015016550001,57.34350790399998],[111.076896579,57.413139223000144],[110.88800066700014,57.398257657000045],[110.6653976030002,57.25978425800014],[110.40360260300008,57.021170920000145],[110.08439659600003,56.909984639000186],[109.764198674,56.90954157200002],[109.57260161100004,56.87104231700005],[109.41780060000008,56.762339929],[109.38159966300015,56.483648857000105],[109.2519986760002,56.40249661100012],[109.04489861200011,56.316667096000174],[109.06369754400015,56.20392077500014],[109.31479656500017,56.18188206999997],[109.64119759800013,56.22329235900014],[110.00740060100014,56.38977824700015],[110.27580255200007,56.479753619],[110.57240256700004,56.488112053000066],[110.81079864500003,56.412468729000125],[111.11029863000016,56.266933409000046],[111.40249663700007,56.25894528800018],[111.69750258100004,56.320798201000116],[111.92440053300004,56.34099774900005],[112.08860067500007,56.27818276099998],[112.15039860300021,56.20389361800011],[112.63310268400016,56.242853710000134],[112.90959954200014,56.30780474200003],[113.21859756500021,56.41352887199997],[113.52130161600007,56.49344914600016],[113.66870157500011,56.42667823400012],[113.56559762800032,56.326597137000135],[113.40859955200006,56.259513413000036],[113.18039653800008,56.216032123],[112.91359754200016,56.24370480800002],[112.76609767100013,56.178612960000066],[112.64530153800001,55.975707200000045],[112.41999866300023,55.975486252999985],[112.29429660200026,56.04582735300016],[112.04779857600033,56.058709500000134],[111.94480158200003,55.9205946780001],[112.04309867500001,55.808855527000105],[112.59500157000002,55.69379747700003],[113.25119763600003,55.750210032000155],[113.34089657300012,55.82193297200007],[113.6057965650001,55.86031320400008],[113.77719860600018,55.932733015],[114.06340053400015,56.136909974000105],[114.54180168200014,56.52310214000016],[114.83209967800019,56.684475904000124],[114.8531035540002,56.79843911],[114.65789757900006,56.92947424100004],[114.65450257200007,57.020224939000116],[115.02339968700005,57.11910876500008],[115.3935016160001,57.15645215500007],[115.8192976040001,57.27618378700015],[115.94850162400007,57.41340995899998],[115.7966996580002,57.49864083799997],[115.538497645,57.499552789],[115.24780268100005,57.41724015300019],[115.06800063200012,57.39937965900015],[114.73179662800021,57.52942287500002]]],[[[124.96430165800007,57.77795083000012],[124.79009955900005,57.75165881200007],[124.61589863200004,57.598153810000156],[124.65149657500012,57.535491876000094],[124.78199761100007,57.46901097800014],[125.21589655200023,57.43597873600015],[125.42189758100005,57.44662207700014],[125.61370067200005,57.56009376700007],[125.53980262800007,57.65114571100003],[125.23509966000017,57.76847844200012],[124.96430165800007,57.77795083000012]]],[[[117.6803966110001,57.478819146000035],[117.84549764100007,57.69373784900017],[117.85530061200006,57.77983491500015],[117.55660260700006,57.79049015800007],[117.00270062800007,57.59057472600011],[116.85179854300009,57.57817219100019],[116.7554016270002,57.501032866],[116.7710035340001,57.373667668],[117.02089656700002,57.356405306000056],[117.37210065700026,57.357614479],[117.50430254800017,57.30745365000007],[117.51979867600016,57.2369826310001],[117.40110053300009,57.12142787],[116.99690253100005,57.16635923000007],[116.85870355500015,57.11826185800004],[116.66629763800006,57.10796971900015],[116.46479769100029,57.12951925600015],[116.25849960800008,57.01112655000003],[115.79799667300006,56.848390727000094],[115.91780055700008,56.76776821700008],[116.08769955500009,56.69826631400019],[116.15809664500023,56.533233179000035],[116.27660368000011,56.54305257800007],[116.43430365700021,56.70187539400018],[116.5868985510001,56.736948295],[116.65380055500009,56.704205228000035],[116.512100626,56.599752298000055],[116.45210262800003,56.51399989600003],[116.4739986740002,56.446179906000054],[116.60330160000012,56.43873744600012],[116.91040061900014,56.53759026],[117.16509966700005,56.697053285000095],[117.39459952900006,56.746138549000136],[117.61679858600019,56.7620800900001],[117.72290057200019,56.806439469],[117.81320166500007,57.01740576900005],[117.9694976720001,57.168304502000126],[118.1281966040001,57.22030415300014],[118.33519759400019,57.340367707000155],[118.46060159400008,57.450540281000144],[118.52059959200017,57.555916730000035],[118.43620254400014,57.629917032000094],[118.26750165500005,57.63725622700014],[118.14119760600022,57.59540370800016],[117.8713985600001,57.45750933100015],[117.6803966110001,57.478819146000035]]],[[[132.51960770100027,57.37905790200011],[132.62179567400017,57.45821944500011],[132.64729258500006,57.59269568300016],[132.5966036960001,57.711847622000164],[132.42210370400016,57.78979915400009],[132.245101545,57.81496196200004],[131.9591066500002,57.757037982000156],[131.65429656200013,57.754520058000196],[131.5444946360002,57.63517718000014],[131.61579864800012,57.57063401100015],[132.02259856100022,57.48681129100004],[132.16949459900025,57.39156638399999],[132.41940255100008,57.33267764700014],[132.51960770100027,57.37905790200011]]],[[[138.16949458500017,57.46154152899999],[138.46150165200004,57.754969999000195],[138.38909860500007,57.823770169000056],[138.2539065530001,57.84007079100019],[138.03680469900007,57.764911439000116],[137.78500361100032,57.61050320400017],[137.5937956350001,57.518493544000194],[137.6291966030002,57.445588085],[137.76179462400012,57.41359721000015],[137.995803614,57.412048067000114],[138.16949458500017,57.46154152899999]]],[[[126.63230156500015,57.83970483700011],[126.75509661400008,57.95224647200007],[126.80529767700011,58.07242016500004],[126.60939767900004,58.12879215200019],[126.38619966800002,58.11814076500008],[126.21839866000005,58.047997646],[126.0419996630003,57.90323279000012],[126.15619655600028,57.806809555000086],[126.45079765400021,57.77268951000002],[126.63230156500015,57.83970483700011]]],[[[126.30789961600033,56.297303391000014],[126.4438016150001,56.33351740400013],[126.52149967800017,56.45156980500008],[126.48650355600023,56.607084619000034],[126.55490156200005,56.63909829200003],[126.8908995390002,56.64845584900007],[127.08159655400016,56.68393761900006],[127.26580061100003,56.89686109300004],[127.35140264100005,56.92064290000019],[127.781501563,56.958103972000174],[128.02389564200007,56.99992631600003],[128.24630759900003,57.13471536600002],[128.16540563700005,57.24333460500003],[128.31919864100018,57.29905364200016],[128.7639006820002,57.33495467400019],[129.2223056260002,57.50567208200016],[129.8708035840001,57.80254048500018],[130.0957946530002,57.962637685000175],[130.22720361600022,58.01424036900016],[130.58439657600002,58.05310960100013],[130.74490365200006,58.117362924000076],[130.79820266600007,58.18968416400014],[130.73089564800011,58.27349598700016],[130.55909764600005,58.325896629000056],[130.21130364900012,58.33797813600006],[129.9488986140001,58.310248286],[129.56990063600006,58.16918353799997],[129.3045956310002,58.036489125],[128.99749761800024,57.93390468900009],[128.15359469700002,57.78287201300009],[127.89330257300003,57.724527932],[127.73599956300006,57.64515633800016],[127.74259964200007,57.54660141800008],[127.62809764700023,57.39722752100005],[127.49710057000004,57.321515298],[127.06040157100017,57.30599670800012],[126.74359865500003,57.20728068700009],[126.69180268400021,56.99138498900004],[126.5926975760002,56.90239315000008],[126.14040354200006,56.82210994000013],[126.04440258700004,56.67666648500011],[125.80220062200021,56.47738053400002],[125.79519653600005,56.38310591700014],[125.91490168000007,56.32843545600008],[126.12010156700012,56.29688328999998],[126.30789961600033,56.297303391000014]]],[[[120.6914975970002,57.508632067],[120.8470006760001,57.5707141420001],[120.91829664200009,57.639427307000176],[120.866996545,57.721826780000185],[120.67710167800021,57.816571958],[120.8280025900001,58.026218947000075],[120.76450363800018,58.13759248000002],[120.93869769100013,58.26584783600015],[120.98919664600032,58.33446796300012],[120.89250167000012,58.37844965300013],[120.57689652900024,58.43204035700012],[120.44200153200006,58.481331982000086],[120.27580264100015,58.42805006800012],[120.24659757500012,58.28260644600016],[120.26869964800017,58.19443335000017],[120.20469660900005,58.11265162400019],[120.00070153700005,58.03107911000012],[119.87840252900003,57.93457574400014],[119.9542005830001,57.776378721000185],[119.94960059400012,57.573552254000106],[119.71849861500016,57.46615761100003],[119.60320268700013,57.5079489420001],[119.64160169400031,57.79343907900011],[119.60510252900008,57.88351805100001],[119.49330168700021,57.94035506600011],[119.30529761000014,57.974234216000184],[119.10230266700012,57.97636724300003],[119.01940162200003,57.94745437000006],[119.06909960200016,57.81709800600004],[119.393997592,57.55790474900016],[119.42299663000006,57.407497029000126],[119.40419753000003,57.21489078400015],[119.49790167600008,57.06174905500018],[119.68489858300006,57.003405309000016],[119.88200356200014,56.99707613400011],[120.11640164100015,57.06003596099998],[120.5169986100002,57.42305836700018],[120.6914975970002,57.508632067]]],[[[126.15799766000009,58.18428286600016],[126.2596966320001,58.32134944600011],[126.23130058800018,58.40760660600006],[126.1242975470002,58.47468278600007],[125.87719770000012,58.55132623800017],[125.69950068200012,58.549506360000066],[125.53610268800003,58.46550359600013],[125.46759756100016,58.320998746999976],[125.64880357900006,58.18322188400015],[126.04940054900021,58.14074072300019],[126.15799766000009,58.18428286600016]]],[[[138.97309865700004,58.11032044900014],[139.32319667100035,58.25306426000009],[139.7872005590002,58.46149419700015],[139.85800165700005,58.560904742000105],[139.7254026300003,58.62152668900018],[139.6076047040002,58.6310902730001],[139.33529661900002,58.55323731200019],[139.02890067400006,58.439181738000116],[138.82739268100022,58.407159348000164],[138.60949655800005,58.32793795700019],[138.51359568300006,58.21954335300006],[138.5229036190002,58.12491200100004],[138.83360266500006,58.07942039500017],[138.97309865700004,58.11032044900014]]],[[[112.09390256400013,58.110290442000064],[112.30010257900005,58.297326912000074],[112.35420256700024,58.396329258000094],[112.35849762200007,58.50773799500013],[112.18399863500008,58.642019437000044],[111.906501649,58.666949228000135],[111.83789862100014,58.56562794500019],[111.88140053100005,58.445590709000044],[111.76650257600016,58.286016372],[111.64420356700003,58.168012418000046],[111.47650163400004,58.103000365000014],[111.19229862200007,58.03798814500004],[111.01519755700008,58.02554789200008],[110.9219966610001,58.06447797700014],[110.71269953300015,57.90973396200013],[110.70069865900018,57.80682179299998],[110.82230364600008,57.67615948900004],[110.98359660800008,57.667939022000155],[111.25550068600018,57.73409922800005],[111.51149758800017,57.85355308300018],[111.74259956700013,57.93802389100006],[112.09390256400013,58.110290442000064]]],[[[115.79489855400016,58.95342038300009],[115.75070161700023,59.01942049500013],[115.2279965790002,59.16193581500005],[115.14489755300008,59.334441921000064],[115.07929960500019,59.4028652400001],[114.94480157500004,59.426738242000056],[114.78549964900014,59.378404332],[114.6768036320002,59.27137162000014],[114.72219867800004,59.13016555200011],[114.56870256200034,59.02111062200004],[114.59580259600011,58.90477768500011],[114.74240158000009,58.8830477680001],[115.06749755000021,58.88808797400003],[115.32689666700003,58.934269745999984],[115.68589760300006,58.903167521000114],[115.79489855400016,58.95342038300009]]],[[[115.80899859200008,59.52590872900004],[115.49109664100013,59.426509248000116],[115.45680258700031,59.295023506000064],[115.56030266300013,59.240540465000095],[115.70600159800017,59.229420194000056],[115.94210053200015,59.26653425600006],[116.22270167300007,59.26389026800018],[116.33499855600007,59.294127313000104],[116.40599864000023,59.38335569000009],[116.33070366900006,59.47289771800013],[116.16860168500011,59.51322037200009],[115.80899859200008,59.52590872900004]]],[[[140.1983035730001,58.752104336000116],[140.30329864500015,58.81739567300019],[140.37840267700005,59.174814106999975],[140.61909455900002,59.32303230600007],[140.66020159100003,59.38463376300001],[140.4485017070001,59.520998610000106],[140.49890158800008,59.659809633000066],[140.41329955700007,59.752148031000104],[140.22779865200005,59.79842870900006],[140.00149564800006,59.72981528800011],[139.93189970000003,59.62856240100018],[139.92669655000032,59.501478834000125],[140.00280758400004,59.40849553200002],[140.01960760000009,59.29144141600017],[139.83219863800002,58.814373327000055],[140.05740361300002,58.73579164300003],[140.1983035730001,58.752104336000116]]]]},"properties":{"objectid":749,"eco_name":"Trans-Baikal Bald Mountain tundra","biome_num":11,"biome_name":"Tundra","realm":"Palearctic","eco_biome_":"PA11","nnh":2,"eco_id":782,"shape_leng":187.934712707,"shape_area":31.4249636469,"nnh_name":"Nature Could Reach Half Protected","color":"#5AD5B6","color_bio":"#9ED7C2","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":218079.90363885506,"percentage":2.5520881820816195}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[140.86766056800013,-7.949746797999978],[140.83059663100005,-7.967846678999933],[140.58354171100007,-7.99851857799996],[140.46171560900007,-8.041906325999946],[140.29994169300005,-8.0067149059999],[140.21228056400003,-7.942625364999969],[140.12802165000005,-7.931928379999874],[140.06083667300004,-7.878265256999953],[140.059661698,-8.095261497999957],[139.93730166900002,-8.152658424999913],[139.98977657400008,-8.218119746999832],[140.16127064800003,-8.332502550999834],[140.49310265200006,-8.603985856999884],[140.51832564200015,-8.670552249999957],[140.61706563500002,-8.79174551799997],[140.80120867200003,-8.936035454999967],[140.88240064800004,-9.043094821999944],[140.98321566500022,-9.096448820999967],[141.10539263300006,-9.230203375999963],[141.17199657600008,-9.240229808999914],[141.3092036380001,-9.149277273999928],[141.39540061500009,-9.141877561999877],[141.51310768200005,-9.20502313299994],[141.62359658900004,-9.218132429999969],[141.7561946090001,-9.18820434099996],[141.9073945870001,-9.203453369999977],[142.06440758200006,-9.180983834999893],[142.1858067100003,-9.13831810299996],[142.27630662100012,-9.196045778999917],[142.4150997060001,-9.230275459999973],[142.55160570500027,-9.326549664999959],[142.6253966280002,-9.338743824999938],[142.85259968100013,-9.213372681999942],[142.99147055000003,-9.110129092999955],[143.13059958100007,-9.076382208999973],[143.260772717,-9.018883526999957],[143.18603564500017,-8.962448507999909],[143.02328456600003,-9.01921528299988],[142.97030657900018,-9.064629271999934],[142.7886357010002,-9.128965575999928],[142.5729066360003,-9.102473564999968],[142.51612862900015,-9.045706622999944],[142.4858547040002,-8.935957334999955],[142.5653386150002,-8.82242227699993],[142.60696364900014,-8.625628433999964],[142.51234470300005,-8.515879313999903],[142.37988263700004,-8.485603376999961],[142.239852551,-8.36828388999993],[142.19821159100002,-8.36828388999993],[142.16415357100004,-8.478034014999935],[142.11872868500006,-8.515879313999903],[141.91813666600012,-8.409912946999953],[141.83488458700003,-8.30773235099997],[141.88407864700002,-8.182844339999974],[141.8651576740001,-8.137431523999908],[141.72860758600007,-8.079512572999931],[141.66619861700008,-8.089331804999972],[141.626907608,-8.201617791999922],[141.50489760800008,-8.200290097999925],[141.43589761300007,-8.15311825599997],[141.46279866100008,-8.099618243999942],[141.3802035540001,-7.992427951999957],[141.33590670500018,-8.08549222299996],[141.25489762200004,-8.080233583999927],[141.12480160000007,-8.167236230999947],[141.05020165600013,-8.19400450899991],[141.01567056200008,-8.058198230999949],[140.86766056800013,-7.949746797999978]]]},"properties":{"objectid":752,"eco_name":"Trans Fly savanna and grasslands","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Australasia","eco_biome_":"AU07","nnh":2,"eco_id":188,"shape_leng":9.73498733488,"shape_area":2.18662473487,"nnh_name":"Nature Could Reach Half Protected","color":"#8FFC7D","color_bio":"#FEAA01","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":26789.37520718158,"percentage":0.12495618038809476}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-148.07840452799996,-86.53928968299982],[-147.55907885799996,-86.64699148199992],[-148.56355748699994,-86.67371752599996],[-147.5712115039999,-86.78724692899993],[-146.36160835199993,-86.72662059999988],[-148.07840452799996,-86.53928968299982]]],[[[-160.43991329099998,-86.27947555999998],[-159.67674976099997,-86.39138926699997],[-159.06166149699996,-86.35975259899999],[-160.43991329099998,-86.27947555999998]]],[[[-147.23491047099998,-86.1481279009999],[-148.72504882499996,-86.31792604699996],[-146.617596136,-86.35149860099989],[-146.4000717479999,-86.24496155199995],[-147.23491047099998,-86.1481279009999]]],[[[-156.51460278299996,-85.97914028399987],[-156.74977108999994,-86.05829934399998],[-158.72836387399994,-86.13327667199991],[-156.98625501899994,-86.23770399399996],[-156.45254147999998,-86.20646194699992],[-156.73936176399994,-86.10082327099991],[-155.61935198099994,-86.0329335159999],[-156.51460278299996,-85.97914028399987]]],[[[-156.134373364,-85.92521411499996],[-155.05063777699993,-86.013920838],[-154.50341428099992,-86.10217929499993],[-152.6042043559999,-86.05461247899996],[-153.50810194899995,-86.00517767099996],[-153.76762102799995,-85.92884448599995],[-155.62235220099996,-85.96641571199996],[-156.134373364,-85.92521411499996]]],[[[-128.57936826999992,-85.90847896899993],[-129.17333229699994,-86.02317446299998],[-127.92434809899987,-86.01358891399991],[-128.57936826999992,-85.90847896899993]]],[[[-153.75182901999992,-85.71263991499995],[-154.81599435499996,-85.77440853099989],[-154.028024907,-85.8340208169999],[-153.45322292599994,-85.78828343599992],[-153.75182901999992,-85.71263991499995]]],[[[-156.07595365599997,-85.60434551499998],[-156.29084712999997,-85.7433807239999],[-155.06816232799997,-85.73194210399993],[-156.07595365599997,-85.60434551499998]]],[[[-177.05135862699996,-85.47760320999998],[-178.50642071299993,-85.52451942299996],[-177.41731333199994,-85.61716212099992],[-176.41641864399992,-85.61770711299988],[-176.38075815499997,-85.50147823299983],[-177.05135862699996,-85.47760320999998]]],[[[171.31180909800014,-85.39433969799995],[171.12020626000003,-85.50603413399995],[172.20710853200023,-85.49158825399996],[171.31180909800014,-85.39433969799995]]],[[[-127.38914275299993,-85.38129577499996],[-125.89569589299992,-85.52298318699997],[-124.598941363,-85.49533630599996],[-126.17902797099998,-85.38390807999997],[-127.38914275299993,-85.38129577499996]]],[[[167.59116580900002,-85.31870170999991],[166.71089732200005,-85.38890285799988],[168.22342357000002,-85.4186730429999],[167.59116580900002,-85.31870170999991]]],[[[-176.65888959699996,-85.16433364699998],[-178.3251820959999,-85.19041914499996],[-177.43472087299997,-85.27257222199995],[-176.65888959699996,-85.16433364699998]]],[[[167.27573203200018,-85.10449890399997],[165.41327190900017,-85.18167832599988],[167.4949577860002,-85.27035202299999],[167.27573203200018,-85.10449890399997]]],[[[170.5707898950002,-84.92275050499995],[170.20517163400007,-84.8994880329999],[169.1780189540002,-84.96399971099993],[169.2790133860002,-85.05947448799998],[169.8189563510001,-85.18631553099988],[170.87663074400007,-85.1811941869999],[170.56462852200013,-85.05955797099989],[169.78168586800007,-85.01145722699994],[170.5707898950002,-84.92275050499995]]],[[[-170.06657463699992,-84.69472593599988],[-169.94947504199993,-84.73139141299993],[-170.97380319099994,-84.81428193099998],[-169.96467126599995,-84.90240158299991],[-170.06657463699992,-84.69472593599988]]],[[[164.4138497590002,-84.30260844899993],[163.7499098930001,-84.35942855399998],[164.29847416000007,-84.41053555299993],[165.12441297500004,-84.37824492899995],[164.4138497590002,-84.30260844899993]]],[[[162.07880634800017,-84.16740242999998],[160.93427579100023,-84.17160209999986],[161.07138450900015,-84.26261418199988],[161.90766542100005,-84.27430912099987],[162.46325170600028,-84.23605527299992],[162.07880634800017,-84.16740242999998]]],[[[-56.23116878999997,-83.88035750499995],[-56.81665853199996,-84.03292513399998],[-55.94601901499988,-84.033996845],[-56.23116878999997,-83.88035750499995]]],[[[158.14208655800007,-83.17463769099993],[156.84174927300035,-83.19588448299993],[156.36542162000023,-83.30535989399988],[157.84544887500022,-83.26137298899988],[158.14208655800007,-83.17463769099993]]],[[[157.36196056400001,-82.92776171199995],[156.51436725500014,-83.00210855199998],[156.8320792300001,-83.10408148499994],[157.2458201920001,-83.09501259699988],[157.36196056400001,-82.92776171199995]]],[[[158.82093196500023,-82.2593794359999],[158.85150279000004,-82.35533214999998],[159.166798265,-82.41709405999995],[159.57432957200012,-82.3989177279999],[158.82093196500023,-82.2593794359999]]],[[[155.13646699600008,-79.83322520599995],[155.01490772500006,-79.9094336679999],[155.34161800700008,-80.04999455199999],[156.05979920200002,-80.107750749],[155.6941278060001,-79.97454381499989],[155.13646699600008,-79.83322520599995]]],[[[156.29734243000019,-79.72697699799994],[156.0346288390001,-79.77380570399998],[156.3893843180001,-79.91184648299998],[155.9101333880002,-79.94407709299998],[156.38963040800013,-80.00812055799992],[157.0114149840001,-79.92154200199997],[157.13631712200004,-79.8388788019999],[156.45296627100004,-79.83001543899991],[156.29734243000019,-79.72697699799994]]],[[[157.34333663400002,-79.4767455729999],[157.05199011800016,-79.56295716999995],[157.40820924000002,-79.64045493599997],[157.74988156300003,-79.57994595299982],[157.34333663400002,-79.4767455729999]]]]},"properties":{"objectid":753,"eco_name":"Transantarctic Mountains tundra","biome_num":11,"biome_name":"Tundra","realm":"Antarctica","eco_biome_":"AN11","nnh":1,"eco_id":134,"shape_leng":2088.1001053,"shape_area":16.3430541018,"nnh_name":"Half Protected","color":"#7AD4F7","color_bio":"#9ED7C2","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":19220.88882821425,"percentage":0.22493316628029925}}, + {"type":"Feature","geometry":null,"properties":{"objectid":755,"eco_name":"Tristan Da Cunha-Gough Islands shrub and grasslands","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Afrotropic","eco_biome_":"AF08","nnh":4,"eco_id":68,"shape_leng":0.967730458872,"shape_area":0.0173041645508,"nnh_name":"Nature Imperiled","color":"#E8FC77","color_bio":"#FEFF73","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":167.686682516802,"percentage":0.001582651914604727}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[14.32322657800006,35.97853105400003],[14.304857470000059,35.865576695000186],[14.420397479000144,35.80056799500011],[14.51492254800013,35.78205672900009],[14.550291497000103,35.86427967900016],[14.32322657800006,35.97853105400003]]],[[[15.570979485000123,38.21793854500004],[15.498567553000044,38.29208754200005],[15.340070457000081,38.21041981000013],[15.211462558,38.19294505],[15.091927566000038,38.11077742100019],[14.92316750100008,38.17694651200003],[14.734541487000172,38.15392477600017],[14.638265438000076,38.06760726700014],[14.285980585,38.00333131300016],[13.932785458000183,38.027584182000055],[13.869667548000109,37.99818549500003],[13.637097562000065,37.99819639100002],[13.546868554000184,38.03038105600018],[13.512099581000086,38.100848721000034],[13.376860591000025,38.10352975700005],[13.296482498000103,38.21398681200003],[13.15988949500013,38.160806654000055],[13.096879543000114,38.18043321600004],[13.047906430000182,38.06795142800013],[12.872026441000173,38.02692787899997],[12.794495513000186,38.085571027000015],[12.761590508000154,38.16364057600009],[12.610758495000141,38.058833594000134],[12.499999524000032,38.01212728200011],[12.418642592000026,37.79452637000014],[12.503702481000062,37.65532290700003],[12.592093506000026,37.62648429900008],[12.643151534000083,37.56035376500017],[12.857541506000075,37.574948334000055],[12.961029512000152,37.55070669700007],[13.004105454000182,37.48578198400014],[13.141506472000117,37.48479006900004],[13.25304445800009,37.38521691500006],[13.410823559000107,37.29530977200005],[13.542716494,37.272388116000116],[13.64810853300014,37.18636414100007],[13.863999537000154,37.08803486100015],[14.07370452900011,37.096029688000044],[14.21438957700019,37.06225933600007],[14.38082450200011,36.91790653400017],[14.476814560000093,36.78089326300005],[14.69075258100014,36.71329472200006],[14.836121435999985,36.72388760400008],[15.126563434000047,36.67274458300005],[15.088618558000178,36.7855200730001],[15.139525545000026,36.90650479900012],[15.283307538000088,37.0070965220001],[15.288089582000168,37.10284669000009],[15.216150557000049,37.12138243100014],[15.187223435000021,37.27283034600015],[15.072240487000101,37.3379079450001],[15.071813513000166,37.47927712400019],[15.16191545200013,37.5620355100001],[15.200476565000088,37.72532453900004],[15.293056530000058,37.861530131000166],[15.455650532000107,38.02372800400019],[15.565581539000107,38.17378033200009],[15.570979485000123,38.21793854500004]],[[15.40178054300003,38.02691698300015],[15.318939512000043,37.92703084800013],[15.150510532000055,37.90206836700003],[15.108718530000033,37.82209780200003],[15.104784568000127,37.72359250300008],[15.008187492000047,37.67946144700011],[14.811066587000084,37.76879677700015],[14.700792592000141,37.79482728],[14.50607645499997,37.708734741000114],[14.410432569000022,37.61607045400007],[14.425366439000072,37.468612326000084],[14.303916517000062,37.488681116],[14.295196488000045,37.63827914500007],[14.19375852800016,37.70818991700003],[14.046361587000149,37.67179770500019],[13.824826545000121,37.710130998000125],[13.801396443000044,37.803380007000044],[13.967252514000052,37.85196637900003],[14.023583430000087,37.9225597730001],[14.433374509000032,37.904578244000106],[14.65574153900019,37.936883775000126],[14.895652563000056,38.02887801300005],[15.046588511000039,38.004441580000105],[15.406645567000055,38.10033658700013],[15.40178054300003,38.02691698300015]]],[[[15.627034467999977,40.292804917000126],[15.576765512000065,40.295201135000184],[15.478516531000139,40.211343882000165],[15.307286487,40.22670891600012],[15.193998528000066,40.33022760000006],[15.126889490000167,40.436782209000114],[15.228634563000185,40.45270028100015],[15.141367552000133,40.568314889000135],[15.070076448000066,40.52775033400013],[15.074001524999971,40.45952918500012],[14.9637744690001,40.42467455000008],[14.984642558000019,40.335842469],[14.90451659300004,40.22499280500011],[15.0639274830001,40.142882006000036],[15.122312468000189,40.148489666000046],[15.314732467000056,39.99819661000009],[15.451265455000112,39.99800567000011],[15.593619508000131,40.05583208500019],[15.769921442000168,39.87797413499999],[15.827772500000037,39.63786446000012],[15.869084554000153,39.53738706600012],[15.98352955100006,39.435955309000065],[16.043983525000158,39.250285927],[16.06031951900019,39.09916138600016],[16.152706532000025,38.93373899500011],[16.216417546000173,38.876931652],[16.181489485000043,38.73922301700014],[16.133954538000125,38.70204961200005],[15.988643518000117,38.710754554000175],[15.86873553100014,38.6582273460001],[15.826545557000031,38.60209122600003],[15.923806479000177,38.527762520000124],[15.903461588000027,38.442944868000154],[15.756624559000159,38.25359398699999],[15.626453435000144,38.204109913000025],[15.622621564000099,38.00152266600003],[15.65825957200002,37.951505335000036],[15.790040524000176,37.899813467000115],[16.05752147200002,37.91352307600016],[16.141878454000107,38.01891712700012],[16.161056584000107,38.12465517100003],[16.31711152800017,38.28030761600007],[16.48212655900005,38.33867851900004],[16.58214546300013,38.43273990100016],[16.524557597000182,38.69799059200011],[16.60006345700009,38.79595106800008],[16.738008461000106,38.87678262200012],[16.92335547400006,38.92020121500019],[17.108322452000095,38.89936933600006],[17.163078576000032,38.931412011000134],[17.156381435000014,39.01898865000004],[17.099491447000105,39.106103111000095],[17.140342496000187,39.19596080100001],[17.096492570000066,39.244327064000174],[17.07936448600003,39.387886938000065],[17.002534452000134,39.46008295200005],[16.833538520000104,39.52658798900018],[16.774398494000025,39.59274115400012],[16.613111566000157,39.59974507300012],[16.523626535000062,39.635877446],[16.491235508000102,39.79604220500005],[16.624254468000174,39.934964371000035],[16.607883437,40.06322090100008],[16.668441514000108,40.11750713500004],[16.547466512000028,40.18320331800004],[16.342771551000055,40.13640480600003],[16.19739548700005,40.07772360500013],[16.355554456,40.03448136600008],[16.359598557000027,39.91315281500016],[16.16546445900019,39.82821882200005],[16.120975496000028,39.755420820000154],[16.116931563000037,39.553198688000066],[16.01986543700002,39.59364522700008],[15.906620560000079,39.86461857800015],[15.874264570000093,39.99808177800003],[15.712486462000072,40.13559209700003],[15.627034467999977,40.292804917000126]],[[16.70399050700007,38.973194289000105],[16.56567954899998,38.973194289000105],[16.463062591000096,39.01780965100011],[16.373828514000138,39.09811918000008],[16.338134515000093,39.272120785000084],[16.369367497999974,39.450585250000074],[16.543371449000063,39.52196805200009],[16.637065536000023,39.49519759400005],[16.73522147799997,39.40596888200014],[16.819992527000124,39.24089014900011],[16.83783944300012,39.11150524700014],[16.70399050700007,38.973194289000105]],[[15.960520556000063,38.03403103900007],[15.882848477000039,38.039932905000114],[15.8245404380001,38.11350958600019],[15.864647509000065,38.195366917000115],[16.076753581000105,38.360163348000015],[16.372814471000027,38.768401428],[16.47127350300019,38.693596798000044],[16.42643954100015,38.549547924000194],[16.207565585000054,38.35434530200001],[16.06629548000018,38.11800631000011],[15.960520556000063,38.03403103900007]]],[[[9.234985544999972,41.255132730000184],[9.171100523,41.236619788000155],[9.153758533000087,41.154486692000035],[9.021227568000143,41.12484694200009],[8.797181475000116,40.917631040000174],[8.702985480000166,40.90467613800013],[8.528020459000174,40.80577722400017],[8.315561509000077,40.829580823000185],[8.248568477000163,40.882669283000155],[8.120919468000181,40.71614802400018],[8.19747843100015,40.67369854600008],[8.14481744699998,40.61956536600019],[8.196364476000042,40.55887401600012],[8.272668461000023,40.57998350400004],[8.396955489000106,40.41557264100004],[8.38247742700014,40.33301542100003],[8.478295489000118,40.26176538800007],[8.445162496000023,40.17521536500004],[8.482091485000126,40.06756993500005],[8.405076547000021,40.00789665200011],[8.402484527000183,39.891966213000046],[8.513745575000144,39.894758058000036],[8.548933475000183,39.846636713000066],[8.506854477,39.72151250100006],[8.449195533000022,39.715065308000135],[8.454294580000123,39.52098804000019],[8.388760501999968,39.45866406400006],[8.377446442000178,39.3484624890001],[8.43538148600004,39.30008935200004],[8.365450428999964,39.222759589000134],[8.55033845000014,39.043231126000194],[8.580344490000016,38.94060176200014],[8.64782752700006,38.87879277000019],[8.72015145000006,38.92345892600014],[8.845418490000043,38.86888686900005],[8.994315456000095,38.957332376000124],[9.048111517000109,39.042063191000125],[9.025228586000082,39.131070789000034],[9.090742547000104,39.19488976100007],[9.217883444999984,39.22088237800017],[9.298135474000162,39.20425067100007],[9.457018472000073,39.11112420600017],[9.572969529999966,39.135544713],[9.596144487000174,39.355195671000104],[9.65852445400003,39.463478126000155],[9.660410550000165,39.64061154500013],[9.706030567000084,39.83843083000016],[9.684044499000152,39.95545728600001],[9.742584549000185,40.060280026000044],[9.643833492000056,40.16683044400003],[9.627257440999983,40.2449695630001],[9.69385752900007,40.34196444400004],[9.774804585000084,40.38837386800003],[9.836651464000113,40.514562582],[9.753636592000078,40.580464626000094],[9.763481471999967,40.65640265700017],[9.669564426000079,40.78851637100013],[9.687601444000165,40.84028468100013],[9.54449452900002,40.9030780440001],[9.591219448000118,41.00481406500006],[9.57271455300014,41.09850614000004],[9.447839450000174,41.12638770300015],[9.362249490000067,41.19690230700007],[9.234985544999972,41.255132730000184]]],[[[16.848131581000075,40.355377333000035],[16.951473575000136,40.447676168000044],[17.08244852300004,40.49909076300003],[17.228502516000162,40.45535114200004],[17.214902542,40.39110888300007],[17.525321465000104,40.27110718700004],[17.85309746600018,40.26975719800015],[18.01563447100017,40.08133670800004],[17.97415343800003,40.02716446800008],[18.09473449100011,39.88643516299999],[18.33296058500008,39.780875654000056],[18.390718435000053,39.80277237000007],[18.407381491000137,39.98414703200007],[18.478643594,40.03477523600009],[18.524442481,40.14029585300017],[18.441606478000097,40.2763601260001],[18.23527755000009,40.45419611600005],[18.046972563000168,40.555738011000074],[18.02414344300007,40.621087184000146],[17.658119478000117,40.75659858600005],[17.50644659300019,40.800806252000086],[17.176055439000038,41.00513123600007],[17.063415568000096,41.05165046299999],[16.62125257300005,41.17681340000013],[16.232158592000133,41.321827869],[16.030004522000013,41.19890407400004],[16.227415441000176,41.1809983170001],[16.33232451500004,41.13765666900014],[16.59451648099997,40.971878382000114],[16.434808536000105,40.93095491300011],[16.388103565999984,40.85902544300018],[16.40192649800008,40.77925051200003],[16.274764477000133,40.80121528900014],[16.25332859800011,40.69042949600009],[16.468242439,40.62038125999999],[16.660205456000085,40.48138667400019],[16.750080581000134,40.45669794600008],[16.848131581000075,40.355377333000035]]],[[[14.918853503000037,40.498060459000044],[14.935900450000133,40.64463882300009],[15.070981525000036,40.577447643000085],[15.14276146200018,40.61327038900009],[14.873475556000187,40.715343194000184],[14.7302554850001,40.71722023800004],[14.770675536000056,40.82649108600003],[14.62217553700009,40.83199179400009],[14.593935564,40.93980871700012],[14.482937541000013,40.9742134120001],[14.42301648800003,41.09503921700019],[14.500000581000165,41.15952153400008],[14.387485433000165,41.2571586360001],[14.274674572000094,41.30696625200005],[14.085610519000056,41.437939021000034],[13.906012486000066,41.33086473400016],[13.767183526000167,41.182364399000164],[13.970501508000098,40.96288761700009],[14.027626525000016,40.78835946200019],[14.267979443000058,40.818881156000145],[14.458052508000094,40.700996393000025],[14.370285432000117,40.567360861000054],[14.580636501000185,40.592740593000144],[14.773950514000092,40.636901991000116],[14.918853503000037,40.498060459000044]]],[[[10.450214488000029,42.79640681],[10.277106562000142,42.81467567100003],[10.108312466000143,42.78627191600009],[10.151315485000055,42.72194416200006],[10.245689513000116,42.715650358000175],[10.450214488000029,42.79640681]]],[[[16.699987478000082,42.98333783600003],[16.76258856000004,42.89487120600012],[17.01790652799997,42.91781716899999],[17.02795743500019,42.97649082700008],[16.826387583999974,42.9524351],[16.699987478000082,42.98333783600003]]],[[[9.459997568,42.67515051100003],[9.508728445000145,42.80429585800016],[9.47571950400004,42.98049570000006],[9.362332471000059,43.00442167500006],[9.36565455400006,42.917725136000115],[9.316007536000086,42.83392856800003],[9.345151581000152,42.729658195000184],[9.094448521000118,42.71171723400016],[9.06015949700003,42.65740468100006],[8.715910542000188,42.55812740800013],[8.635933439000041,42.32596679400007],[8.684455439000033,42.2505883390001],[8.570554427000104,42.22660151200006],[8.602639513999975,42.113333166000075],[8.744626439,42.04103673600014],[8.663229442000159,42.004393235],[8.625309545000164,41.89852091300003],[8.778593431000104,41.87836126200011],[8.733807582000054,41.79729166200008],[8.804901543000085,41.64117603300008],[8.781553584000164,41.56368164999998],[8.886352520000116,41.50489014300001],[9.120182473000057,41.43909086200006],[9.104061559000058,41.38922122000008],[9.222011532000067,41.363655576999975],[9.356115446000047,41.565870668000116],[9.422695585000156,41.72105942600007],[9.407787532000043,41.89096798000014],[9.436992429000043,41.96210435400019],[9.580432441000085,42.155344103000175],[9.530044463000081,42.569438283000125],[9.459997568,42.67515051100003]],[[9.090312555000025,42.550791398000115],[9.130857497000079,42.43737804600005],[9.140127547000077,42.29819905800008],[9.23281848800002,42.205243584000186],[9.326550461000124,42.176915769000175],[9.262516577000099,42.08899144800006],[9.333338461999972,41.98387433600004],[9.338912427000139,41.874484967000114],[9.30623054900019,41.72358036700001],[9.130385428000181,41.55496078300007],[9.054971434000038,41.55521274300014],[9.07678651000009,41.66395385500016],[8.86433443400017,41.786037951000026],[8.83494848700019,41.83833733900008],[8.892194539000059,41.92307284800012],[8.783430459999977,41.97839340900015],[8.750346585000102,42.15485895800009],[8.674654479000026,42.20295063100008],[8.719647530000145,42.2598433010001],[8.651267461000145,42.34973150200011],[8.75956349400019,42.40233632600007],[8.754098493000185,42.45843489500015],[8.904342431000146,42.55593419900015],[9.090312555000025,42.550791398000115]]],[[[17.712684494000086,42.84288848700004],[17.268199544000026,43.01304665300012],[17.208509497000136,42.97576193600008],[17.438383527000042,42.86702048900008],[17.656290547000083,42.80402881000009],[17.71509546500016,42.818493795999984],[17.712684494000086,42.84288848700004]]],[[[16.55715146600005,43.226035843000034],[16.384277561999966,43.179488787000025],[16.60644543800015,43.118648072000155],[16.67848957200016,43.16459196600016],[16.55715146600005,43.226035843000034]]],[[[16.43366055100006,43.378892923000194],[16.41020345900006,43.303797441000086],[16.50451244300001,43.26159942000015],[16.639938517000132,43.249754617],[16.854015510000124,43.269148329000075],[16.804872579000175,43.34610224700009],[16.43366055100006,43.378892923000194]]],[[[14.868398469000113,44.15199675700012],[15.135762573000079,43.87933428500003],[15.196358536000162,43.901818069000115],[15.01529953700009,44.02028688300015],[14.868398469000113,44.15199675700012]]],[[[14.804683432000104,44.612945106000154],[14.885586568000065,44.50628220300001],[15.016849518000129,44.38845024600005],[15.03325843500005,44.50477899200007],[14.924128570000107,44.587706860000026],[14.804683432000104,44.612945106000154]]],[[[14.406365502000085,44.98115490400005],[14.306514572000026,44.880556811000076],[14.320468597000058,44.80146282599998],[14.453619487000026,44.608538907000025],[14.406365502000085,44.98115490400005]]],[[[14.591862552000066,45.160071824000056],[14.529921461000129,45.15851195200014],[14.425179522000121,45.08174780100012],[14.518852487000174,45.01709667300014],[14.710270513000125,44.93825481500005],[14.773391441000115,45.0062518310001],[14.664894577000041,45.12755490200004],[14.591862552000066,45.160071824000056]]]]},"properties":{"objectid":760,"eco_name":"Tyrrhenian-Adriatic sclerophyllous and mixed forests","biome_num":12,"biome_name":"Mediterranean Forests, Woodlands & Scrub","realm":"Palearctic","eco_biome_":"PA12","nnh":3,"eco_id":806,"shape_leng":91.8570707371,"shape_area":8.94010589849,"nnh_name":"Nature Could Recover","color":"#B02745","color_bio":"#FE0000","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":85190.5307448539,"percentage":2.5788790281951486}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-54.082252579999874,-28.16319800699995],[-54.302082574999986,-28.18698618299993],[-54.37134157099996,-28.249849450999875],[-54.18556959499995,-28.277140256999928],[-54.02005349399997,-28.206989259999943],[-54.082252579999874,-28.16319800699995]]],[[[-58.07823557099988,-32.98143094799991],[-58.105483629999924,-33.07216002099989],[-58.17392354599991,-33.11705768499996],[-58.3103675189999,-33.11025711199994],[-58.360389542999826,-33.15166388099988],[-58.34675553999989,-33.32213368699996],[-58.429626577999954,-33.51248905599988],[-58.41500049199993,-33.90909187999995],[-58.23121653599998,-34.06903720099996],[-58.207744524999896,-34.164909744999875],[-58.10976460299986,-34.17209236499991],[-57.99289656499991,-34.27004764499998],[-57.85629652099993,-34.48298989499989],[-57.766529522999974,-34.481650969999976],[-57.61392959999995,-34.43845432899997],[-57.126472476999936,-34.45938863499998],[-57.044189511999946,-34.54556029899982],[-56.81542558199993,-34.69518850299988],[-56.63907955899998,-34.7279324079999],[-56.553260604999934,-34.76802053599994],[-56.449043540999924,-34.760600539999984],[-56.38454462799996,-34.853665313999954],[-56.25726660199996,-34.910525965999966],[-56.14673260099994,-34.918521630999976],[-56.018897512999956,-34.88164142499994],[-55.89719060199997,-34.81355120199993],[-55.782443520999834,-34.778625319999946],[-55.60317958999997,-34.777984103999984],[-55.53380961799985,-34.80096661199997],[-55.329006530999834,-34.81587432999993],[-55.23268555599998,-34.90693985199988],[-55.05412654299994,-34.88647141199988],[-54.92100549199989,-34.959825637999984],[-54.44131051299996,-34.76410668999989],[-54.190006471999936,-34.674733808999974],[-53.98323061999997,-34.50857448099998],[-53.78885663199998,-34.4092650209999],[-53.75247162799997,-34.26376507299989],[-53.627952588999904,-34.13466046199994],[-53.53871147199993,-34.0703881959999],[-53.47393059199993,-33.846647539999935],[-53.3955235869999,-33.76636868899993],[-53.41602354299994,-33.71600116199994],[-53.2333066029999,-33.55409900199987],[-53.116817594999986,-33.490833737999935],[-52.95348347099991,-33.35415389899998],[-52.70835454499996,-33.10400018899992],[-52.64759848699998,-33.00614096599992],[-52.48155952299993,-32.66696457199993],[-52.46632759299996,-32.534689757999956],[-52.358207579999885,-32.277155781999966],[-52.246402546999946,-32.15472366999995],[-52.161674581999875,-32.125717757999894],[-52.22611247399993,-32.039348615999984],[-52.23055655899992,-31.978011692999928],[-52.14841860199988,-31.944639480999854],[-52.219974573999934,-31.8695542239999],[-52.22195052399991,-31.754131058999974],[-52.137100517999954,-31.69328296799995],[-52.054244566999955,-31.67450750499995],[-52.00614551799998,-31.603527871999972],[-52.002475585999946,-31.44685937299994],[-51.91519147499997,-31.31117681199993],[-51.84402861399991,-31.32338337799996],[-51.780326484999875,-31.273203269999897],[-51.65366754599995,-31.273350288999893],[-51.61091648699988,-31.136416812999926],[-51.46839848499991,-31.097931136999932],[-51.500621537999905,-30.93309296399991],[-51.400871525999946,-30.788780060999898],[-51.374542626999926,-30.633582752999928],[-51.300598482999874,-30.639333576999945],[-51.25700353399998,-30.46436570599991],[-51.173255579999875,-30.38129786099995],[-51.28751349299995,-30.300621706999948],[-51.32398650699997,-30.232041142999947],[-51.25885761099994,-30.11803049599996],[-51.13119150199998,-30.260385218999943],[-51.020957572999976,-30.294845905999978],[-51.05249750099995,-30.353618636999897],[-50.93436061099993,-30.418268423999905],[-50.898517580999965,-30.324139818999925],[-50.78850962799993,-30.288232080999876],[-50.66142254099992,-30.291388202999883],[-50.65924458799992,-30.199514329999943],[-50.60135262599988,-30.192240848999973],[-50.534465541999964,-30.27653446499994],[-50.569248595999966,-30.46960255199997],[-50.695423563999896,-30.434193704999984],[-50.68663446799991,-30.700608306999982],[-50.733520486999964,-30.802138467999953],[-50.87942159399995,-30.886318591999952],[-50.965167624999935,-30.903738197999928],[-50.95524948699989,-31.000671722999982],[-51.09732861299989,-31.09032942099998],[-51.17534250699998,-31.077357922999965],[-51.154045598999915,-31.229501703999972],[-51.17994350099997,-31.375710760999937],[-51.23350956199994,-31.455922891999876],[-51.34463146999997,-31.52556946699997],[-51.43494446499983,-31.490003710999872],[-51.587253535999935,-31.697838867999963],[-51.702342598999905,-31.778533963999962],[-51.80364259299995,-31.78279482099998],[-51.87052950999998,-31.867948251999962],[-52.047424546999935,-31.813547855999957],[-52.08718863099995,-31.864171365999937],[-52.01814655999988,-31.927726308999866],[-52.03554956999989,-32.03457964899991],[-51.9346505659999,-31.998072939999872],[-51.82406660899983,-31.910714900999892],[-51.45979362299988,-31.724288800999943],[-51.21203646699996,-31.53998114399991],[-51.05422551399994,-31.37669462899987],[-50.90100046799989,-31.253082008999968],[-50.68299454299995,-30.82736481099994],[-50.47414349899992,-30.59740779999987],[-50.387988598999925,-30.42750092299997],[-50.31501356999996,-30.331487730999868],[-50.288383592999935,-30.19735045799996],[-50.18460859099997,-29.927828683999962],[-50.29033657699995,-29.874781630999905],[-50.43817155599987,-29.886239021999927],[-50.51908860499998,-29.81627058199996],[-50.669242521999934,-29.809840823999878],[-50.81517061799991,-29.906271267999898],[-50.92452662699992,-29.845194685999957],[-50.975105544999906,-29.714122506999956],[-51.056278577999876,-29.73211577099994],[-51.08536562599994,-29.628855752999982],[-51.17085248899997,-29.63890548699993],[-51.35508755899997,-29.604270792999955],[-51.76776452699994,-29.602176993999876],[-51.845790489999956,-29.663165396999887],[-51.81594856799995,-29.771174266999935],[-51.875850509999964,-29.794868565999934],[-51.93550149699996,-29.70039412299991],[-52.06649756799993,-29.70095302899989],[-52.11895755299997,-29.647461063999913],[-52.21031560399996,-29.778605158999937],[-52.350151564999976,-29.792904517999943],[-52.353919565999945,-29.901977385999885],[-52.20206060299995,-29.886181018999935],[-51.89264247899996,-29.89747462799994],[-51.73652651499998,-29.948677662999955],[-51.891021586999955,-30.088957361999974],[-51.897048509999934,-29.949222653999925],[-51.99755859399994,-29.95692847299989],[-52.213249604999874,-30.037907547999964],[-52.17431247999997,-30.081503670999894],[-52.19831456299994,-30.17854616099993],[-52.27868259699994,-30.163659732999918],[-52.2697865479999,-30.052146892999815],[-52.38502162399993,-30.059978439999952],[-52.40963759699997,-30.18108922999994],[-52.55503847199992,-30.095543190999877],[-52.61448259399998,-30.141831580999963],[-52.83988957199989,-30.07866572599994],[-52.86234653499986,-30.161788891999947],[-52.97032154099992,-30.23430727499988],[-52.96039552399992,-30.089560523999864],[-53.11463947399989,-30.25593442899998],[-53.152748466999924,-30.184512063999875],[-53.05528252299996,-30.07108613899993],[-53.102287565999916,-30.0113503259999],[-53.254898553999965,-30.10182592999996],[-53.27448655799992,-29.9772115049999],[-53.5257225389999,-30.10725187199995],[-53.61833955199995,-30.069980229999885],[-53.613334549999934,-30.006809681999982],[-53.732055490999926,-29.98140262399994],[-53.82766350199995,-30.03350570799995],[-53.91268148199998,-30.03030868299993],[-54.07989156499997,-30.093678217999923],[-54.098594608999974,-30.02513604199993],[-53.8185045969999,-29.916359893999925],[-53.87533155299997,-29.86683776599989],[-53.761020498999926,-29.827063455999905],[-53.75033558399997,-29.776410105999958],[-53.908294560999934,-29.69991098999992],[-53.968769489999886,-29.597644897999885],[-54.09434163099996,-29.596117212999957],[-54.280158533999895,-29.484032223999918],[-54.40163460699989,-29.55556673899997],[-54.46849453399989,-29.508212505999893],[-54.60890147099991,-29.47885053199991],[-54.658428627999854,-29.519525057999942],[-54.73887662599998,-29.43547921199996],[-54.827678531999936,-29.405368397999894],[-54.93002358099983,-29.4464149129999],[-55.04739352699988,-29.45080166599996],[-55.111385502999894,-29.390502086999902],[-55.151996493999945,-29.291017948999922],[-55.09443259999995,-29.25506008699989],[-55.03160453599992,-29.334862007999902],[-54.96273747899994,-29.361831116999895],[-54.892837602999975,-29.263751952999883],[-54.83243559699997,-29.250591358999884],[-54.64764061599993,-29.27856528999996],[-54.424930597999946,-29.20947393299997],[-54.40363352299988,-29.296383539999965],[-54.3514176189999,-29.34159669899998],[-54.259773577999965,-29.309419243999912],[-54.16584747999997,-29.327611493999882],[-54.06013156399996,-29.402908644999968],[-54.00661462099987,-29.498441888999878],[-53.77555857499988,-29.499265662999846],[-53.690040530999966,-29.540207068999905],[-53.648723615999984,-29.502759742999956],[-53.5589256049999,-29.301510414999882],[-53.495826469999884,-29.295715669999936],[-53.372604613999954,-29.22560239099988],[-53.224506610999924,-29.02177026399994],[-53.188548580999964,-29.12654220899998],[-53.03248961399993,-29.11045783999998],[-52.94256553899993,-29.042996594999977],[-52.92083361099992,-28.982828946999916],[-53.1144066249999,-28.838124608999976],[-53.12303160299996,-28.769479503999946],[-53.19218448299989,-28.602346198999953],[-53.18101157399997,-28.358884097999976],[-53.09079748499994,-28.275441580999882],[-53.00788856099996,-28.34010896999996],[-52.87618254199998,-28.374882300999843],[-52.62174249499998,-28.366271906999884],[-52.48811350099999,-28.267537948999916],[-52.384181588999866,-28.21883188299995],[-52.30838051899991,-28.222462587999928],[-52.23534363199997,-28.290373940999928],[-52.148754547999886,-28.200685397999905],[-52.13766461999995,-28.083346296999878],[-52.21656062499994,-27.996142987999974],[-52.22130159699998,-27.83680971399997],[-52.280712526999935,-27.707704097999965],[-52.33560946599988,-27.697767686999896],[-52.477107558999876,-27.77161543899996],[-52.541267507999976,-27.757255226999916],[-52.63573055099988,-27.461390807999976],[-52.802371502999904,-27.435718882999936],[-52.85433561499997,-27.47139829799994],[-52.824680608999984,-27.749500289999958],[-52.771839582999974,-27.85606193999996],[-52.813182481999945,-27.904112875999886],[-52.804889593999974,-27.999140859999955],[-52.71835348499991,-27.978645932999882],[-52.74193546699996,-28.091670197999917],[-52.86609257499998,-28.079787675999967],[-52.90851556599995,-28.015398398999935],[-53.04481855599994,-28.071330838999984],[-53.14665247699992,-27.974932078999927],[-53.23226959399989,-27.938918393999984],[-53.20343752399998,-27.81094668099996],[-53.24245058899993,-27.627049736999822],[-53.356231571999956,-27.545658942999864],[-53.527065487999835,-27.555926605999957],[-53.6352275779999,-27.68990395299994],[-53.70910651099996,-27.855316117999905],[-53.874999629999934,-27.876532055999917],[-53.903404558999966,-27.769156523999982],[-53.9785045669999,-27.779547065999964],[-53.985885503999896,-27.85882863799992],[-54.07008758799992,-27.934711516999982],[-54.17832947499994,-27.789465706999977],[-54.23119346699991,-27.675494622999906],[-54.31377046899996,-27.700724486999945],[-54.30027359299993,-27.86689052099996],[-54.4046705319999,-27.989869300999942],[-54.300743481999916,-28.119288065999854],[-54.21412657099995,-28.084819499999924],[-54.05706060199998,-28.059563316999913],[-53.93758746899988,-28.103577528999892],[-53.65693653999995,-28.02074102399996],[-53.62911951799998,-28.144136887999878],[-53.47804258599996,-28.14012799199992],[-53.43741952499994,-28.294212684999934],[-53.49513261599992,-28.382540174999917],[-53.65072655499995,-28.376286269999923],[-53.73946760799993,-28.325099495999893],[-53.810291504999896,-28.422694520999983],[-53.806430632999934,-28.531612993999943],[-53.913284475999944,-28.549455215999956],[-54.003238557999964,-28.62430812599996],[-54.11268659999996,-28.585818761999917],[-54.185749470999895,-28.465281796999932],[-54.301010529999985,-28.383138977999977],[-54.40912249599995,-28.39946340499995],[-54.45383458599997,-28.457377997999913],[-54.568805630999975,-28.459887874999936],[-54.6676525769999,-28.321045503999926],[-54.73064760899996,-28.2976224439999],[-54.72336960199988,-28.17251985599995],[-54.84427252099988,-28.19551661399987],[-54.824191491999954,-28.327229504999934],[-54.898769475999984,-28.314162787999976],[-54.94223048199996,-28.181498215999966],[-55.031913492999934,-28.202904422999836],[-55.1831855559999,-28.199465662999955],[-55.2411915109999,-28.135636129999966],[-55.360301539999966,-28.07444370999997],[-55.45480347499995,-28.098162651999928],[-55.61250261299995,-28.119607750999933],[-55.67861152199998,-28.19377183699993],[-55.768890486999965,-28.2282194469999],[-55.691390571999875,-28.29098984399991],[-55.73555750199995,-28.360157140999945],[-55.87333654399998,-28.354599100999906],[-55.89972663099991,-28.471262619999948],[-56.01833357899994,-28.505981133999967],[-56.02139246999997,-28.597644453999976],[-56.11083961499992,-28.66041987899996],[-56.18722557499996,-28.75346990099996],[-56.28139458099997,-28.776527175999888],[-56.325561510999876,-28.92207741599998],[-56.39278454199996,-28.950409253999908],[-56.43117550299996,-29.071765298999935],[-56.51500660399995,-29.09096069499998],[-56.62499946999992,-29.172622559999922],[-56.69889047299989,-29.3456728189999],[-56.7791674799999,-29.390671065999925],[-56.82972762299994,-29.486222247999933],[-56.96805551199992,-29.598441849999915],[-56.970283589999895,-29.63066188599987],[-57.10111252599995,-29.759263916999885],[-57.274169489999906,-29.79843322199997],[-57.31597154999997,-29.860930870999937],[-57.322814534999964,-29.973460938999835],[-57.53361554499992,-30.161471720999828],[-57.62751062999985,-30.184512063999875],[-57.62583961399997,-30.283969212999978],[-57.66889158299995,-30.352857895999932],[-57.87833355099991,-30.506463311999937],[-57.889724556999965,-30.602566860999957],[-57.81222547999988,-30.716454629999873],[-57.81361352299996,-30.910334923999926],[-57.89972651499994,-30.926720370999874],[-57.852226604999885,-31.038943157999938],[-57.91278049099992,-31.154772342999877],[-57.90778353499991,-31.23310240199993],[-57.975006565999934,-31.323656292999885],[-57.991393521999896,-31.404483822999964],[-58.07917048899998,-31.45948385999992],[-58.00666853499996,-31.52670655599991],[-57.97917153399993,-31.60836691299994],[-58.03722358999994,-31.784473883999908],[-58.18138863599995,-31.85492444999994],[-58.20361358799988,-31.88974857599993],[-58.14049953299991,-32.01030347799991],[-58.17970655599993,-32.13869143599993],[-58.09603152499989,-32.249893641999904],[-58.10416750299993,-32.316938473999926],[-58.19216156099992,-32.399683951999975],[-58.198413622999965,-32.48918926699997],[-58.13498658799995,-32.652758921999975],[-58.13957953599993,-32.759986597999955],[-58.07823557099988,-32.98143094799991]]]]},"properties":{"objectid":766,"eco_name":"Uruguayan savanna","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Neotropic","eco_biome_":"NO07","nnh":3,"eco_id":574,"shape_leng":59.1795082605,"shape_area":33.4990414479,"nnh_name":"Nature Could Recover","color":"#E69800","color_bio":"#FEAA01","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":353572.5628310826,"percentage":1.6492014688553789}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[132.8559722980002,-14.773215383999911],[132.69686885500005,-14.755592263999972],[132.62319947000015,-14.787815987999977],[132.49072265200016,-14.910765599999934],[132.29180902600024,-14.936798114999874],[132.00186156100006,-14.933716759999982],[131.75225820700007,-15.002136223999969],[131.72625737600015,-14.962959374999969],[131.6069183530003,-14.917827519999832],[131.43148796900016,-14.978055014999939],[131.32025139600012,-15.138951346999932],[131.28120413300007,-15.32123946799993],[131.30401615300002,-15.413610387999938],[131.397689957,-15.647292148999838],[131.35652156800018,-15.785573936999981],[131.29411293400028,-15.860549893999973],[131.20742796200034,-15.908518854999897],[130.77520758100002,-16.040565513999923],[130.67718507900008,-15.975950259999934],[130.6897735250003,-15.888841666999951],[130.743514935,-15.76762694099989],[130.70912163900016,-15.685499209999875],[130.5836182290002,-15.669624388999921],[130.42616267000017,-15.70417878399985],[130.30343618400025,-15.849446385999954],[130.2885589760001,-16.07054908999993],[130.24575812900002,-16.302232771999968],[130.34431455900005,-16.52388381999998],[130.56375127500007,-16.712326102999896],[130.63571159000003,-16.870374766999873],[130.61090082200008,-16.941473086999906],[130.4851226530002,-17.000080191999928],[130.1525421460002,-16.96599602099991],[129.97250372700012,-17.006278944999963],[129.81973264600015,-17.01952553599989],[129.58805851800003,-16.912750315999972],[129.51679993500022,-16.76658065299989],[129.5212706750001,-16.666648920999933],[129.59710711700006,-16.43561366199998],[129.59065238100027,-16.30961035599995],[129.4912872650001,-16.143463096999824],[129.4029693320001,-16.083801213999948],[129.17193960500015,-16.02203278999997],[129.06840516300008,-16.057695440999908],[128.96769709900002,-16.12276080299995],[128.83409123900003,-16.299737982999943],[128.70933532700008,-16.429237380999894],[128.61703498300005,-16.552207946999886],[128.50183108800024,-16.61505126599991],[128.472946212,-16.484281506999935],[128.52629082300018,-16.317806179999934],[128.44389336200015,-16.301921802999914],[128.38525390300015,-16.487846329999968],[128.32749940500025,-16.451736420999964],[128.25762936800004,-16.628410342999928],[128.27847281400022,-16.670902400999978],[128.17755118000002,-16.75992005699993],[128.17172223700027,-16.883315920999962],[128.23980709600005,-16.86257741599991],[128.3453826980001,-16.996988273999875],[128.31983951900008,-17.09735485899995],[128.26324457300007,-17.13900755499992],[128.16250616700017,-17.379690382999968],[128.07336445900012,-17.481636118999972],[127.92910771400011,-17.762697257999832],[127.82019812600015,-18.019088778999958],[127.82748418000006,-18.13950152399991],[127.60559843800002,-18.305803176999916],[127.44613641900003,-18.47537226299994],[127.38137062600015,-18.56580931099984],[127.28503422800009,-18.593772848999947],[127.20030207200023,-18.661012643999925],[127.2159653340002,-18.749473572999932],[127.09021750800002,-18.847389289999967],[126.94692233500018,-18.805658139999935],[126.96272272600015,-18.737564061999933],[126.79982764600027,-18.708980598999972],[126.67616272300006,-18.77087206899995],[126.62348179100024,-18.756759625999962],[126.55910491800023,-18.652606934999937],[126.4201964990001,-18.688346867999883],[126.3595656660001,-18.627120919999868],[126.20323948500004,-18.58250421699995],[126.1464386790002,-18.53857985899998],[126.14369964000014,-18.425647795999964],[126.05712111900004,-18.393808298999943],[125.95967110000015,-18.442949216999978],[125.82509612500019,-18.38082690999994],[125.76602164500014,-18.326004065999882],[125.71056362100023,-18.409439038999892],[125.6166762470001,-18.45046426399989],[125.56927490700014,-18.420423522999954],[125.39311965700017,-18.55034251899997],[125.27157585800012,-18.58248711799996],[125.12667085700014,-18.53657725499994],[124.96047967800007,-18.548442844999897],[124.94226831700007,-18.612916947999963],[124.81996914100012,-18.72792822499997],[124.84188077700003,-18.803192183999897],[124.74182130500014,-18.91599466399998],[124.79085543900021,-18.97334297499998],[124.73211673700007,-19.068615038999894],[124.76696014200013,-19.11663814699989],[124.8756256490002,-19.162555721999865],[125.04530336500011,-19.265338976999885],[125.36598207200018,-19.346918028999937],[125.5028533540002,-19.302120277999904],[125.77574917900017,-19.31149677699983],[125.89017489800005,-19.27872085399997],[126.07909394300009,-19.27749256999988],[126.17906959600009,-19.19998930099996],[126.29249568900025,-19.191493906999938],[126.3672485190001,-19.25200655499998],[126.54590610400021,-19.253751834999946],[126.56618494500003,-19.321661007999978],[126.68591305600012,-19.327385009999944],[126.78652958900034,-19.360157077999872],[127.0804061550001,-19.34486194899995],[127.33006281700011,-19.295536124999956],[127.48733514900005,-19.293201429999954],[127.51929467600019,-19.401838270999974],[127.64909364300001,-19.474748591999912],[127.7169875620001,-19.478202773999897],[127.72709664100012,-19.38523489399995],[127.92285917400011,-19.267270838999934],[128.02607728300018,-19.16164025199987],[128.20216363400004,-19.14706797799994],[128.23628233800002,-18.915147757999875],[128.34881592600016,-18.774360617999832],[128.46626281800002,-18.747364015999892],[128.53800956300006,-18.675026180999964],[128.66839593400005,-18.619905443999983],[128.76890568200008,-18.677419716999964],[128.95236224100006,-18.692552572999887],[129.00051999800007,-18.652488136999978],[129.10540774600008,-18.6414489469999],[129.2673187910002,-18.671842565999896],[129.41215506000003,-18.661548582999956],[129.57490530100017,-18.567283687999975],[129.87199398000007,-18.2706280189999],[129.98761009600014,-18.200017859999946],[130.14070120000008,-18.152967387999865],[130.25271611500023,-18.158706644999825],[130.44197077200022,-18.213468635999902],[130.72145074900016,-18.271274598999923],[131.34124756200004,-18.372955299999944],[131.64193727500003,-18.37128260699984],[132.2151489790001,-18.37593070799994],[132.36535637200018,-18.39409060299994],[132.68576048800014,-18.466512761999923],[132.86830140900008,-18.451881478999894],[133.1094055120002,-18.23625584699988],[133.3796080630001,-18.068218300999945],[133.25869743300018,-17.979246075999924],[133.24821469000028,-17.91343120399989],[133.29330446800031,-17.77680970299997],[133.42544550600007,-17.637704810999935],[133.3938598130003,-17.48329925899992],[133.21475212000007,-17.346448930999827],[133.18855263800015,-17.257826062999925],[133.20452871400005,-17.161676412999896],[133.08091726600014,-17.10830112399998],[133.11529547500004,-17.034976905999883],[133.0233612520003,-16.984155750999946],[133.03669736300003,-16.91332816599993],[133.18658439900014,-16.88705827599989],[133.2838897460001,-16.834047263999935],[133.32862848900015,-16.77082642399995],[133.39166258100022,-16.775932343999955],[133.37315366200005,-16.94294545299988],[133.446685752,-17.22390366299993],[133.50198368100007,-17.3150214879999],[133.54681395600005,-17.46687508699989],[133.65498358900015,-17.525028227999883],[133.7552184110001,-17.519859443999962],[133.89750691700033,-17.4563465789999],[133.91044639700021,-17.34748644399997],[133.95249941100008,-17.304367082999875],[134.1318511840002,-17.35954280499982],[134.24029540900005,-17.455333708999945],[134.3132934040001,-17.645765352999945],[134.50303655800008,-17.466980028999956],[134.5168609990002,-17.328445441999975],[134.7081908470002,-17.389186914999982],[134.80773919000012,-17.318592011999954],[134.96688839700016,-17.365236296999967],[135.0212554340003,-17.291843346999883],[135.0904693340001,-17.31630894999995],[135.17176826300022,-17.40458497399993],[135.2758941310001,-17.329895008999813],[135.31616213600012,-17.435123432999887],[135.3968047620001,-17.491195681999955],[135.54045096800007,-17.41730115899992],[135.61640928400027,-17.353645465999932],[135.43493655400016,-17.168602044999943],[135.43403616900002,-17.08536153299997],[135.48762519700006,-16.988422475999982],[135.48608393300003,-16.851154393999877],[135.42419430600023,-16.736412006999956],[135.302581776,-16.69962115199985],[135.02670283200018,-16.73036362499994],[134.87416074400016,-16.716890386999978],[134.7462005980003,-16.66922183199989],[134.71801762200005,-16.56680302199993],[134.64775078600007,-16.447551674999886],[134.49453730800008,-16.309087661999968],[134.37886050600014,-16.229255734999924],[134.1272582360001,-16.080911638999964],[133.98170464300006,-15.93110372699988],[133.89682010400008,-15.59365366999998],[133.7363433700001,-15.371580172999927],[133.669494675,-15.314256672999932],[133.59432979100018,-15.19536205899982],[133.48818975000017,-15.111233566999829],[133.4583436370001,-15.002037149999978],[133.327819803,-14.99532408399989],[133.19445802300004,-14.933683399999893],[133.1214600290001,-14.93444078799996],[132.97256473800007,-14.861936655999955],[132.8559722980002,-14.773215383999911]]]},"properties":{"objectid":774,"eco_name":"Victoria Plains tropical savanna","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Australasia","eco_biome_":"AU07","nnh":2,"eco_id":189,"shape_leng":41.4238177507,"shape_area":19.0305931005,"nnh_name":"Nature Could Reach Half Protected","color":"#FBCA49","color_bio":"#FEAA01","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":225227.00181663147,"percentage":1.0505473027875678}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[3.493012381000028,27.008361004000108],[4.208021156000086,26.878359408999984],[5.011206194000067,26.83587317700011],[5.20477728600008,26.837950694000142],[5.984768030000112,26.943700903000035],[7.907596568000031,26.973854684000173],[8.318816405000064,26.989172476000135],[8.721540180000034,27.01891573900008],[8.880369203000043,27.09267903000017],[9.116530707000038,27.275302662000115],[9.278093061000163,27.443718133000118],[9.377393285000096,27.520888436],[10.279311012999983,27.956181435000076],[10.390074705000075,28.048031625000192],[10.65314102100001,28.317593406000128],[10.734334328000102,28.437759501000187],[10.831201179000061,28.663782153000113],[10.829937396,28.783429227000113],[10.633654627000112,29.106792353000174],[10.250422217,29.541988479999986],[9.908107700000187,29.85264771700008],[9.285758358000123,30.57450276900005],[8.929918085999986,30.819394455000065],[8.743206238000027,30.91214160000004],[8.596571201000188,30.947384667000108],[8.243054116000167,30.97021134900018],[8.05159146300008,31.007943171000193],[7.858873235000146,31.135204001999966],[7.623210723000057,31.378853511000045],[7.547067971,31.41395056100015],[7.313285927000095,31.449642476000065],[6.643988161000038,31.468678164000153],[6.06399454100017,31.468678164000153],[5.069974705999982,31.457970589000126],[4.58885586700012,31.44715237100013],[3.138283647000037,31.440451808000034],[2.776605574000143,31.412493141000027],[2.546313063000184,31.335739032000106],[1.802991640000016,31.038410463000048],[0.897112847000017,30.41859865700019],[0.381748254000115,30.076328590000116],[-0.16696157899986,29.698638597000183],[-0.585641308999925,29.42646843800003],[-0.82726435099994,29.293061802000068],[-1.098493472999905,29.175480534000087],[-1.309375307999915,29.114493897000045],[-1.461924866999937,29.090539354000157],[-1.658798194999918,29.088943226000083],[-1.832673346999968,29.121222073000183],[-1.944678066999927,29.16099501800005],[-2.212008572999935,29.301022283000123],[-2.718340155999954,29.629073081000058],[-3.044476067999938,29.791020795000065],[-3.151534626999933,29.820423828000116],[-3.954371445999925,29.992460290000167],[-4.148801439999886,29.99695521400008],[-4.801350268999954,29.92959731000019],[-4.996287434999942,29.90118135300014],[-5.118787892999876,29.859581973000047],[-5.210293094999884,29.776295016000176],[-5.868841378999889,28.892326876000027],[-6.072356097999887,28.589290418000132],[-6.180996106999942,28.46032528500018],[-6.721927248999862,28.271582766000108],[-7.179353896999942,28.071458608000114],[-7.317490579999969,27.98902374300019],[-7.529274415999964,27.75121859600017],[-7.894099523999955,27.379129830000124],[-7.969286205999936,27.25832700700016],[-8.053043233999915,27.05845228300018],[-8.153932379999958,26.715809898000032],[-8.224786521999874,26.433714206000104],[-8.240311572999929,26.247157534000166],[-8.231715794999957,26.121540625000137],[-8.19441306799996,25.999984808000193],[-8.101504912999872,25.90334744300003],[-7.920789055999876,25.881297897000138],[-7.569661190999909,25.91952586100018],[-7.453369189999933,25.91785073700015],[-7.299359844999969,25.87508905700014],[-6.896987914999954,25.64313316300013],[-6.761389964999978,25.595222328000034],[-6.454192975999945,25.537208400000168],[-6.180731599999888,25.51842340600001],[-5.388162117999968,25.51565448800011],[-4.961023092999937,25.487728663999974],[-4.365344016999927,25.434841972000186],[-3.787034419999941,25.398454794000088],[-3.376446292999901,25.40070042800005],[-3.146219121999934,25.41744804500013],[-2.857487491999962,25.460094095000102],[-2.505316084999833,25.55473507900001],[-2.366686143999914,25.60949136800008],[-1.382047447999867,26.163350634000153],[-1.192919340999879,26.294285477000187],[-0.894955949999883,26.521153284000093],[-0.63017889799994,26.696513533000086],[-0.393620505999877,26.803897356],[-0.130285415999879,26.880490037000072],[0.107764008000061,26.9241498990001],[0.372722211000166,26.95443368400015],[0.997523321000187,26.995470978000128],[1.351524079000171,27.02959426900003],[2.124898794000046,27.15097726600004],[2.634072711000044,27.211589993000075],[2.887070755000082,27.218701894000105],[3.099356165000074,27.201024185],[3.225086355000144,27.173248395000087],[3.364730056000099,27.1153238120001],[3.493012381000028,27.008361004000108]],[[0.185649931,29.082640087000186],[0.125639972000158,28.958330034000085],[-0.00344004599998,28.845310254000083],[-0.139680028999976,28.839099917000055],[-0.136290059999965,29.006510220000052],[-0.022020009999949,29.030740072000015],[0.106020082000043,29.191799926000158],[0.212739932000147,29.365850053000088],[0.289040011000168,29.33004002300015],[0.155229985000176,29.14314994300014],[0.185649931,29.082640087000186]],[[-7.232560017999958,27.781670000000133],[-7.45906004699998,27.76305007900004],[-7.453889988999947,27.81872994800017],[-7.162739937999902,27.94320000300013],[-7.070130200999927,27.916980069000147],[-7.113700071999972,27.853209971000126],[-7.232560017999958,27.781670000000133]]]},"properties":{"objectid":779,"eco_name":"West Sahara desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Palearctic","eco_biome_":"PA13","nnh":2,"eco_id":845,"shape_leng":46.0992053073,"shape_area":68.5239422863,"nnh_name":"Nature Could Reach Half Protected","color":"#F7B152","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":746350.8224279038,"percentage":2.828996161022594}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[11.331450033000124,15.944130087000076],[11.40581002,15.965040026999986],[11.459929999000167,16.027770022000084],[11.44044001200001,16.243230079000057],[11.537529985000162,16.31133994900017],[11.524409985000148,16.392709931000184],[11.427590026000132,16.430190039000138],[11.304119940000021,16.33900993600014],[11.297680074000084,16.10790997700019],[11.24175993900019,16.099910046000048],[11.233760007000171,15.961459957000102],[11.331450033000124,15.944130087000076]]],[[[9.081282236999982,17.97534866000018],[9.126649979000092,18.043749937000143],[9.025640041000088,18.109299949000047],[9.066330048000168,18.20530000700012],[9.110099877000152,18.205590088000065],[9.157809913000108,18.098110008000106],[9.198700056,18.102060072000086],[9.355739966000044,18.247530013000187],[9.401440030000117,18.373179930000106],[9.501260073000026,18.251480077000167],[9.533729948000143,18.32779001299997],[9.691689914000051,18.30013006000013],[9.736400042000128,18.346579969],[9.680350004000047,18.430940002000057],[9.701880062000157,18.60384001500006],[9.647359989999984,18.69826997500013],[9.567949990000159,18.731149977000143],[9.601170062000051,18.79024005600013],[9.544110021,18.871369947000062],[9.502640069000165,18.988480079000112],[9.418610073000139,19.04249004600007],[9.37663001499999,18.939209802000164],[9.31938004900013,18.896780013000182],[9.234980059000065,18.915819917000135],[9.225329941000098,19.042909853000083],[9.082200009000076,19.110769951000123],[9.038010020000172,19.0684999880001],[8.929830084000173,19.104730002000167],[8.986969862000024,19.188390004000098],[8.981839936000085,19.27729997700004],[8.876850011000045,19.2950799300001],[8.747470054000189,19.403110073000164],[8.578170002000093,19.381149998000126],[8.461179739000045,19.298749946000157],[8.414189977000035,19.23524000600014],[8.40722997100005,19.119169800000122],[8.49666994100005,18.98570002000008],[8.572619916000065,18.92097008500008],[8.549140085000033,18.80329],[8.420279916000027,18.820169963000183],[8.315979988000151,18.7919400560001],[8.282729993000146,18.731010041000104],[8.173999995000145,18.732120023000107],[8.220640005,18.63066000200007],[8.335509932000093,18.645750017000125],[8.422139743000173,18.694599959000016],[8.569369884000082,18.690120074],[8.628309993000073,18.663450056999977],[8.683510030999969,18.540420021000045],[8.615100047000055,18.521780035000177],[8.641737678000084,18.437589981000087],[8.432179921000113,18.350910060000103],[8.38319004400006,18.29707998600003],[8.36940996900006,18.126729974000057],[8.490559936000125,17.99868002500017],[8.444230072000153,17.86108979300019],[8.311929945000145,17.84628000099997],[8.305330076000189,17.665790007],[8.392449751000129,17.619640036000078],[8.478079944000115,17.45785005200014],[8.526809840000112,17.414149927000096],[8.53455999900018,17.309010032],[8.62818994800017,17.305329983000092],[8.609190001000115,17.459020056000156],[8.685599916000172,17.396579966],[8.821399849000045,17.444090043000188],[8.923440032000087,17.390590006000025],[8.99766993999998,17.55032002900009],[9.097909966999964,17.591259984999965],[9.190759971000034,17.56022995300009],[9.240020039000171,17.725090078000107],[9.28628433200015,17.73617955000003],[9.312919940000029,17.796179966000068],[9.177849962999971,17.933269949000135],[9.10572019600005,17.946837708000146],[9.081282236999982,17.97534866000018]]],[[[1.387759989000017,19.11691991300006],[1.455259950000084,19.207019957000114],[1.453389913000137,19.266440073000183],[1.372380068000155,19.332109955000192],[1.317009995000149,19.32223998700016],[1.244900071000188,19.40166002000018],[1.199160051000149,19.37136997600004],[1.23703990000007,19.28774993100012],[1.146939855000085,19.2460300300001],[1.163310064000143,19.176250083000127],[1.265759846000094,19.172630056000173],[1.341240024000058,19.097439959000155],[1.387759989000017,19.11691991300006]]],[[[1.115729931000033,19.43769007500015],[1.327480015000106,19.49936975999998],[1.331730017000041,19.60719008600006],[1.184650021000039,19.653629962000082],[1.117439965000131,19.51039001800018],[1.115729931000033,19.43769007500015]]],[[[1.162770035000165,19.698220044000152],[1.272439803000111,19.69892993300016],[1.358689939000158,19.733579991000113],[1.381990054000028,19.793950088000088],[1.229819737000128,19.84235997900015],[1.128290011999979,19.734619917000146],[1.162770035000165,19.698220044000152]]],[[[2.200730032000081,18.58411997000013],[2.319219985000188,18.64180998600017],[2.43039982900001,18.781430080000177],[2.42883008299998,18.900309917000016],[2.491479813000069,19.097329946],[2.517979971000159,19.28503992700007],[2.492190054000162,19.444719961000033],[2.577879742000164,19.486560083000143],[2.676319965000118,19.746519923000164],[2.739820048000126,19.749690043000044],[2.799320077000061,19.821870023000145],[2.885090031000175,19.830199992000075],[2.905899991000183,19.941170019000026],[2.829609945000186,20.066000036000162],[2.739450054000031,20.128420060000053],[2.67704006200006,20.24629992800004],[2.683969968000042,20.287920025000176],[2.489790022000136,20.385019856000042],[2.413499975999969,20.461300044000097],[2.344150045000049,20.4543699620001],[2.219320029000187,20.523720069000092],[2.066739937000023,20.495980026000154],[1.948850036000181,20.530649975000074],[1.851750030000062,20.523720069000092],[1.693310057000076,20.443200087000037],[1.589090043,20.446819938000147],[1.457030006000139,20.38232006100003],[1.351829913000074,20.402070030000175],[1.270309962000169,20.368039914],[1.192329948000179,20.266079820000073],[1.071560009000052,20.29346993500019],[1.062430029000154,20.190549828000087],[1.18510996100008,20.234409955000103],[1.293669924000142,20.16204005000003],[1.407810071000029,20.18528999900019],[1.467180022000093,20.24735006300017],[1.530479794000144,20.15450991600011],[1.522900022000044,20.04730002600013],[1.417260055000156,20.065229948000024],[1.354229945000043,19.96859991500014],[1.463329761000125,19.90142999200009],[1.640309917000138,19.882889984000144],[1.660050028000171,19.809020037000096],[1.51092978500003,19.74752992600014],[1.505380051000031,19.677109970000174],[1.620089975000099,19.481639797000184],[1.737280021000174,19.428309971000147],[1.652019997000025,19.308679937000136],[1.689150001000144,19.13724001000014],[1.751990009000167,19.3492500750001],[1.788270013000101,19.407849938000027],[1.873060063000139,19.391009932000088],[1.845529835999969,19.28880006600008],[1.837840052000047,18.989179758000034],[1.908139962000178,18.896869959000185],[1.966640022000092,18.95347006000003],[2.071729927000092,18.961850018000064],[2.12287006400004,18.920170074000055],[2.158020019000048,18.75503993500007],[2.091150034000123,18.713449937000064],[2.106489998000143,18.6378400320001],[2.200730032000081,18.58411997000013]]],[[[-11.99760991799991,21.291830016000063],[-12.130029915999899,21.305469979000065],[-12.208820148999905,21.289710031000084],[-12.291550061999885,21.329099955000117],[-12.401849980999941,21.28182996900017],[-12.516100140999981,21.285770000000127],[-12.551550034999934,21.250310074000026],[-12.65397992599992,21.270010053000078],[-12.697319913999934,21.218800036000175],[-12.847019966999937,21.23849015700017],[-12.886410067999975,21.20698011899998],[-13.004600082999957,21.234559983000054],[-13.05708008399995,21.188690060000056],[-13.106031534999943,21.010519355000042],[-13.16612005299993,20.91105024600006],[-13.155960003999951,20.728569994000054],[-13.219359931999918,20.568779948000042],[-13.22757003099997,20.355419986000186],[-13.165590055999871,20.350120025000138],[-13.12528993299992,20.409489799000085],[-13.161980062999874,20.584879967000177],[-13.090960054999925,20.76108000200003],[-13.025140027999896,20.740459967000163],[-12.976120051999942,20.82390997699997],[-12.873369979999893,20.787740161999977],[-12.849060214999952,20.73007003600003],[-12.874870022999971,20.640709980000054],[-12.845030061999921,20.581269973000076],[-12.918989954999972,20.511419970000134],[-13.059310080999978,20.430689996000126],[-13.10277997199995,20.331440082000086],[-13.165480043999935,20.304849978],[-13.183259996999936,20.157769982000048],[-13.097180071999958,20.034359918000064],[-12.947240103999945,20.05348008700014],[-12.860660106999887,20.024950067000134],[-12.874550017999923,19.951929944000085],[-12.734669942999972,19.999999941000056],[-12.458879922999927,20.120159971000078],[-12.409159914999918,20.072900018000155],[-12.680050066999854,19.87808006300014],[-12.689849978999973,19.81653996200015],[-12.61252000699983,19.789900044000035],[-12.527290082999912,19.803440028000182],[-12.447380009999904,19.718489800000043],[-12.430020040999977,19.6584199940001],[-12.345180000999903,19.593040017000135],[-12.29611003499997,19.642990082999972],[-12.24384002599993,19.563880021999978],[-12.173190010999974,19.586209915000097],[-12.165470127999924,19.685950045000027],[-12.26318004299992,19.668619998999986],[-12.37170004899997,19.71683996500002],[-12.398100051999904,19.788460025000177],[-12.346730032999915,19.88914995900018],[-12.283709955999939,19.836380053000084],[-12.211479986999962,19.831330040000125],[-12.08929995099993,19.903699945000028],[-11.972480075999954,20.030969950000042],[-11.974960020999902,20.0881199370001],[-12.083860053999956,20.13177975300016],[-12.186399957999981,20.143600022000157],[-12.133840043999953,20.249940021000043],[-12.142739964999919,20.380550005000146],[-12.059779994999928,20.42843007600004],[-12.024360024999964,20.55484004700014],[-12.160390014999962,20.56615003400003],[-12.07300014999987,20.638939923000066],[-12.094278595999981,20.744508944000074],[-12.021270169999923,20.808480067000175],[-11.999999917999958,20.943139918000043],[-11.910389912999904,21.017270023000094],[-11.911309968999944,21.19919000300007],[-11.875449948999972,21.28044997300003],[-11.993290035999962,21.29327003500015],[-11.941739948999896,21.26501002900011],[-11.968860048999943,21.164240007000046],[-12.145110073999945,20.99802998500013],[-12.239049993999913,20.885230052999987],[-12.289289964999966,20.902939950000075],[-12.27784004199998,21.01245006800019],[-12.185559990999934,21.136940014000118],[-11.99760991799991,21.291830016000063]]],[[[4.221863515000109,24.441966832000162],[4.303680005000103,24.495999977000054],[4.324530098000139,24.586549929000057],[4.251829979000092,24.817480027999977],[4.269800033000138,24.90762988600011],[4.331480070000168,24.991669916000035],[4.431860033000021,25.0546100790001],[4.617469919000143,25.016260081000098],[4.688239979000116,25.055949943000087],[4.744290017000139,25.18066977100011],[4.704150072000118,25.324469987000157],[4.863039952000122,25.483019972000136],[4.887990077999973,25.700490001000162],[4.854129997000143,25.926979821000145],[4.945479959000068,26.124909873000036],[4.981940031000022,26.268509954000137],[4.972039964000032,26.376690066000094],[4.91007002200007,26.42434993600017],[4.773869997000133,26.37513000100006],[4.65066006800015,26.242400031999978],[4.543680061000089,26.089160042000174],[4.339459935000036,25.926790071000084],[4.237890077999964,25.80037992400014],[4.070259926000176,25.686630012000137],[4.022719926000093,25.630240080000192],[3.997239979000142,25.51126994400005],[3.917860079000093,25.379050082000163],[3.862970189000123,25.165190047000067],[3.734600059000115,25.028780029000018],[3.734308403000114,24.992455085000074],[3.733830148000095,24.932889808000084],[3.832750025000109,24.78997004400003],[3.819349976000069,24.719550088000062],[3.734939953000151,24.63428988800007],[3.560499942000092,24.511540076000188],[3.52612975500017,24.41102000100011],[3.556529987000147,24.344349975000114],[3.69940997100008,24.353639957000155],[3.830940011000052,24.451830055000073],[3.933850085000131,24.504670017000137],[4.021900025000036,24.497689945000104],[4.07483996600007,24.431640037000022],[4.221863515000109,24.441966832000162]]],[[[9.906509962000143,25.097809956000162],[9.790620000000104,25.289139963000082],[9.663219741000148,25.461470023000118],[9.40005,25.60980997000013],[9.311300029000051,25.685999861000084],[9.274970035000024,25.795370043000162],[9.208430087000124,26.119879926000124],[9.165820054,26.197250031000067],[9.073920029000135,26.231450006000102],[8.810639924000156,26.258799989000067],[8.667659961000027,26.259579757000097],[8.149019945000077,26.206369977],[8.016079985000147,26.217399916000033],[7.874879936000184,26.263299939000092],[7.708799993000127,26.344189915000186],[7.566329960000076,26.300980005000042],[7.512949968000157,26.144670050000116],[7.377850067000111,26.08331001800019],[7.226439980000066,26.13736997400008],[7.111940048000122,26.29000005600011],[7.059479937000162,26.228259996000133],[7.134150071000079,26.092429788000175],[7.137679976000186,25.96986004500019],[7.062490054000079,25.952000003000023],[6.979930001000128,26.067409958000155],[6.73887012900019,26.08231004800001],[6.598610026000074,26.150169794000078],[6.504889955000067,26.126980044000163],[6.558340002000023,26.03536992400018],[6.55358007000018,25.967539750000128],[6.440920075000179,25.989570057000094],[6.367080051000016,26.079509923000103],[6.290719949000106,26.22455002400011],[6.083690192000063,26.34706977800016],[6.023059939,26.46758976899997],[6.043309980000174,26.60198999000005],[6.023499989000186,26.666850004000025],[5.782979969000166,26.73120994500016],[5.594170039000176,26.70252995500016],[5.449750057000188,26.643029926000054],[5.397480048000148,26.57866998500009],[5.365529960000117,26.435010057000113],[5.392740006000167,26.25946992100006],[5.47770994900003,26.17187006400019],[5.883670079000012,26.028539997000053],[6.193490039000039,25.90804992900013],[6.339060136000057,25.82373002800017],[6.425520088000042,25.685950047000063],[6.44627002500016,25.551849940000125],[6.401540008000097,25.478899873000046],[6.305910120000078,25.457060019000096],[6.208150038000042,25.486319994000155],[6.119670082000084,25.545510053000044],[5.989830009000173,25.749299985000164],[5.923920037000187,25.88115003000007],[5.812960218000171,25.87623995300015],[5.877170014000171,25.68085004500017],[5.857599938000078,25.59148998800009],[5.779889939000157,25.56970998200012],[5.675560264000126,25.677600012000084],[5.589650199000118,25.723459902000116],[5.545599970000183,25.69079006800007],[5.557219928000109,25.603880034000156],[5.691430048000143,25.40211996300019],[5.658430001000056,25.14524997700005],[5.711070004000135,25.051889867000114],[5.813779943000043,24.95496992900007],[5.884660015000065,24.825080041999968],[5.902319922000117,24.620329745000106],[5.834620003000055,24.572639951000042],[5.751390018000052,24.58723007000009],[5.629689989000099,24.95332995000018],[5.563890029000163,25.056630084000176],[5.404559922999965,25.15279982499999],[5.270079964000104,25.08907003600018],[5.271499917000085,24.96153001700003],[5.208660261000091,24.80722],[5.190860066000141,24.670870005999973],[5.047650045000182,24.720719916000064],[5.027310058000069,24.64738999800005],[4.926629981000076,24.549570070000186],[4.978220025000098,24.40132006900012],[4.965409996,24.318660037000143],[4.846479993000116,24.28142002000004],[4.853510055000186,24.43186974300005],[4.799629991000074,24.47393006600015],[4.704689925000139,24.4493999230001],[4.653769989000125,24.362529845000097],[4.705079985000054,24.29348002800009],[4.962469934000126,24.085339938000118],[5.024519965000081,23.970320043000072],[5.039699927000186,23.88339997500003],[5.092979939000031,23.80052995000017],[5.184409990000063,23.76342001300003],[5.235890022000035,23.684020046000057],[5.219260007000116,23.620170035000058],[5.110810057000037,23.485489942000072],[5.067909943000132,23.302829974000133],[5.01742002400016,23.24611000400006],[4.780189993000135,23.04451996800009],[4.72259995700017,22.876229918000035],[4.604330029000039,22.748540106000178],[4.615120053000055,22.61388007900007],[4.670269925000071,22.559160048000024],[4.783030076000159,22.554509952000046],[4.820429918000059,22.48965011500013],[4.747490060000189,22.343469933000165],[4.906100068000057,22.41490006700002],[4.970389953000051,22.387729977000163],[5.093299943000034,22.49063001800016],[5.19117003700012,22.379620033000037],[5.342689961000133,22.32068010000006],[5.406809986000098,22.24902008300012],[5.573240033000161,22.31576016500003],[5.625579922000099,22.259220088000177],[5.707229952000034,22.26532006000008],[5.927410161000125,22.233560073000092],[5.972599943000091,22.266559944000164],[6.040140036000082,22.403680027000178],[6.136020047999978,22.302080070000102],[6.234340049000139,22.321670036000057],[6.272609958000146,22.25776000200017],[6.437049924000121,22.16344991200009],[6.476729929000101,22.254010249000146],[6.328269936000083,22.347030113000073],[6.306520029000183,22.471429936000106],[6.491669975000093,22.525530201000038],[6.533230050000043,22.691329920000044],[6.622589930000174,22.741969985000026],[6.744119924000188,22.656680038000104],[6.803399929000022,22.665629949000163],[6.891240053,22.75028006300016],[6.913130072000115,22.953240062000077],[7.007820013000071,23.02777994100012],[7.146930000999987,23.07793999900008],[7.232350027000109,22.994849950000116],[7.18205003300011,22.852069946000142],[7.187160068000026,22.79108994100011],[7.336069968000061,22.818279921000055],[7.38655003000008,22.881489923000117],[7.376030021000133,23.0247099770001],[7.267119955000169,23.118690030000153],[7.236330014000146,23.18436994400014],[7.357049964000112,23.2538200300001],[7.423189819000072,23.19526998100008],[7.440979805000097,23.059640260000037],[7.548439994000091,23.11343002500007],[7.574470003000101,23.038619955000115],[7.676470053000173,23.04522],[7.636840038000059,22.94146995900013],[7.570519939000121,22.906440049000025],[7.542699983000091,22.83943012800006],[7.588660029000039,22.747470080000085],[7.679419972000062,22.791240086000187],[7.768379935000041,22.910360014000105],[7.834669935000079,22.845400021000103],[7.685249929000065,22.701660004000132],[7.634180024000045,22.59402995500011],[7.718409979000171,22.535040031000165],[7.829069860000061,22.645110069000168],[7.879769771000042,22.74449992000018],[7.971640048000097,22.76013999800017],[7.965590066000118,22.596720068000025],[7.989370011000119,22.52905024800009],[7.93289999000018,22.316279952000116],[7.932500072000153,22.219179946000168],[8.007750016000045,22.220929936000175],[8.067639930000041,22.320369952000135],[8.037869849,22.536939991000168],[8.052850028000023,22.619379999000046],[8.102589926000064,22.664490044000104],[8.155399965000015,22.545340016000182],[8.247239966999985,22.560889972000155],[8.196399768000163,22.690150058000086],[8.248509951000074,22.79494002500013],[8.319219988000157,22.811790065000082],[8.355900085000087,22.911999992000062],[8.442160078000143,22.900070062999987],[8.449019927999984,22.805069974000162],[8.559149988,22.737499958000114],[8.607429977000152,22.790060048000043],[8.592900057000179,22.8635800670001],[8.512779992000105,22.976390032000097],[8.520610065000028,23.01656993400013],[8.626749752000023,23.10372991700001],[8.777690042000017,23.14636001700012],[8.827649965999967,23.218739955000046],[8.814219994000041,23.277389984000024],[8.731100021000145,23.37393007100013],[8.899539864000019,23.4235499240001],[8.920370067000022,23.492800051000188],[8.801939961000187,23.553830046000087],[8.583679955000036,23.52330994400012],[8.377830060000122,23.381680054000014],[8.316439927999966,23.396330020000164],[8.406059967000033,23.546820227000126],[8.289760054000169,23.63086993700017],[8.424570050000113,23.66171004299997],[8.552380084000163,23.773429916],[8.570499932000132,23.878189960000157],[8.422639990999983,23.98366006800012],[8.532789941999965,24.10253004800012],[8.518559960000118,24.14964003200015],[8.29980991400015,24.11258008400017],[8.203619931000048,24.117489985000077],[8.117290058000094,24.241029951000087],[8.123599846000104,24.370429973000057],[8.322929785000042,24.32795001800008],[8.367260061000138,24.3687899950001],[8.403380062999986,24.520629923000115],[8.514689985000132,24.518879933000107],[8.603530079000052,24.453169919000118],[8.647749991000069,24.384669988000155],[8.78344994400004,24.40121005700007],[8.856159920000096,24.291289988000074],[9.082549935999964,24.268350010000063],[9.233509940000033,24.362339919000192],[9.439559970000118,24.343530074000057],[9.60298975600017,24.203169992000085],[9.660579969000025,24.06099004000015],[9.66233999299999,23.988530012000183],[9.734999979,23.88370994600018],[9.893190002999972,23.81479003200019],[10.103829753000014,23.747960003000173],[10.272610019000126,23.679180201000065],[10.36086995100004,23.598030068000014],[10.42571993100006,23.473770004000073],[10.42771001300008,23.336659955000187],[10.287850004000177,23.035730059000116],[10.282980059000181,22.90534995800016],[10.380259958000067,22.79446001900004],[10.520209913000087,22.736319920000142],[10.670680054,22.734450235999986],[10.982029980000164,22.908329976000175],[11.151629971000148,22.93799004400006],[11.345790027000021,22.935020059000067],[11.469820033000076,22.87448996100005],[11.643219942000087,22.61018999600003],[11.762700007000035,22.521970021000186],[12.024260046000165,22.372080042000107],[12.208929986000157,22.285870039000145],[12.345479939000086,22.25593995600002],[12.46800004500011,22.272320022000144],[12.545589999000185,22.337729922000165],[12.485179946000073,22.471659994000163],[12.050729928000067,22.726829979],[11.922180258000083,22.87055996300012],[11.813760055000046,23.127030032000107],[11.72650009300014,23.238570188000097],[11.456640009000068,23.443159956000102],[11.35155996200018,23.632419969000182],[11.276989983000135,23.692350015000102],[11.118059971000037,23.653000046999978],[11.039140186000168,23.689220028000022],[10.885939976000088,23.799839952000127],[10.796570062000171,23.928930004000165],[10.76091000100007,24.0896100060001],[10.626270040000065,24.270490060000043],[10.564750006000054,24.40025004400013],[10.532959920000167,24.627939968000135],[10.482819928000083,25.194930028000044],[10.473419934000162,25.473420019000116],[10.452539917000138,25.572879925000166],[10.34639002,25.566669941000043],[10.348219924000091,25.466840041000125],[10.230829920000133,25.080279951000023],[10.248030063000158,24.936119950000148],[10.30199989700003,24.690149825000105],[10.288309944000048,24.574489745000164],[10.233279941000092,24.514469928000153],[10.170599935000155,24.51654995600012],[10.128229993000105,24.657920041000068],[10.027459970000109,24.794060044000048],[9.906509962000143,25.097809956000162]]]]},"properties":{"objectid":780,"eco_name":"West Saharan montane xeric woodlands","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Palearctic","eco_biome_":"PA13","nnh":2,"eco_id":846,"shape_leng":101.039827262,"shape_area":22.7455278684,"nnh_name":"Nature Could Reach Half Protected","color":"#B43D41","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":258650.20821868043,"percentage":0.9803974539989531}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-4.852262546999896,14.791732176000039],[-5.215247568999928,14.873846663999984],[-5.537127570999928,14.920613828000114],[-5.942504572999951,14.919022776000077],[-6.164248491999956,14.925993334000054],[-6.932553518999953,15.087253105000059],[-7.615109496999935,15.18756654800012],[-8.169492428999945,15.232962433000182],[-8.918510529999878,15.203435503000094],[-9.796695433999957,15.110630568000147],[-10.050439447999906,15.103122059000157],[-11.168180486999916,14.99936767600019],[-11.444549436999921,14.952260710000019],[-11.890720489999978,14.904314715],[-12.193539540999893,14.899725120000141],[-12.720950514999913,14.880235351000067],[-12.92527046899994,14.902124021000134],[-13.179479510999954,14.87482567100011],[-13.415289437999888,14.876535747],[-13.730389485999979,14.89293460500005],[-14.317890490999957,14.945462148000104],[-14.649040542999842,14.998247854000056],[-14.902819592999833,15.056124895000039],[-15.0692905599999,15.106191680000052],[-15.914239541999962,15.404302448000067],[-16.199720458999877,15.530043569000043],[-16.596147431999896,15.672180363000166],[-16.865219431999947,15.24653156100004],[-17.128900527999974,14.919962890000079],[-17.29674947999996,14.827449645000058],[-17.45837051099994,14.76619285300012],[-17.423120583999946,14.71799707700012],[-17.346059545999935,14.735595720999981],[-17.214363585999877,14.674904874999982],[-17.17090056799998,14.711066417000097],[-17.04527059199995,14.741394489000186],[-16.966279535999945,14.679248544000131],[-16.723880595999958,14.372559401000103],[-16.56344945999996,14.15034006000019],[-16.45551854199988,14.195324057999983],[-16.414207493999925,14.164343202999987],[-16.487180544999944,14.069933469000034],[-16.088939526999923,13.658485623000047],[-15.902823501999933,13.452694086000122],[-15.882809584999904,13.428489887000069],[-15.828769442999885,13.36416632400011],[-15.639510595999923,13.241314445000057],[-15.40423057299995,13.13189188500013],[-15.167920582999841,13.069634963000055],[-14.932339481999918,13.03149864500017],[-14.381540483999913,12.97056271200006],[-13.78925944699995,12.966862772000184],[-13.02770051099992,12.8556205000001],[-12.778949428999965,12.782315225000104],[-12.575639494999905,12.667723040999988],[-12.395669471999895,12.520952899000065],[-12.2082095479999,12.346144788000117],[-12.051850508999905,12.227722074000155],[-11.65007051799995,11.99028924400011],[-11.428310504999956,11.87275635300017],[-11.192069581999874,11.760283953000169],[-10.801420589999964,11.595536137000067],[-10.37397956999996,11.450235343000031],[-10.294630438999889,11.392770188000043],[-10.167559445999927,11.256348679000041],[-10.076910503999954,11.080680752000035],[-9.965262547999941,10.690427889000148],[-9.887540512999976,10.473442879],[-9.80028858799983,10.347481985000059],[-9.59800845399991,10.134226754000053],[-9.37988149399996,9.962685909000015],[-9.114145490999931,9.805047959000092],[-8.65459457299994,9.511331822000159],[-8.40878453299996,9.363597089999985],[-8.124713452999913,9.223929102000113],[-7.444966585999964,8.937717284000144],[-7.113874536999845,8.829912095],[-6.924159545999885,8.790475911000044],[-6.721748485999967,8.767327609000176],[-6.197337562999962,8.776442928000051],[-6.056972535999932,8.789867049000122],[-5.990478562999897,8.766766524000047],[-5.776548421999962,8.793855662000169],[-5.407927574999974,8.81805304300002],[-5.086883583999963,8.81581725400008],[-4.685211550999952,8.795296678],[-4.490312520999964,8.763806874000124],[-4.105311423999979,8.747092856000052],[-3.614789540999936,8.770473169000013],[-3.342664516999889,8.772229346000131],[-3.115622563999978,8.79070876000003],[-2.838741479999953,8.842027130000076],[-2.499290493999979,8.893909602000122],[-1.99523451999994,8.916087112000127],[-1.582028485999956,8.910896199000092],[-1.373587484999859,8.868578485000057],[-0.710205445999918,8.625031559000092],[-0.340554462999819,8.448170384000036],[0.010523563000106,8.23149885700019],[0.437696530000096,8.103323129000103],[0.54703946300009,8.084777498000108],[0.535254507000047,8.168137537],[0.583583555000075,8.311551229999964],[0.812199461000148,8.363616427000125],[0.845077477000132,8.32706110300012],[0.859042566000028,8.04705122200005],[0.831214479000096,7.923646138000151],[0.870520576000047,7.833955415000105],[1.034198526000068,7.765802328],[1.121605515000169,7.595463783000014],[1.166097495000145,7.513605614000028],[1.70581947300002,7.520635180000113],[2.075459560000013,7.547220063000168],[2.232928531000141,7.577759023999988],[2.560236486000179,7.689216879000014],[2.695408421000138,7.772770037000043],[3.027317537000101,8.045122379000077],[3.123512448999975,8.145474044000025],[3.335885569000084,8.324442094000062],[3.485274553000181,8.423142188999975],[3.696098528000107,8.611578772000144],[3.97765855900019,8.937220404000072],[4.09241251300017,9.03702322300012],[4.227045492000116,9.111089072000027],[4.600642507000146,9.34435240800019],[4.810040553000135,9.526054803000022],[4.936282576000167,9.617311265000069],[5.301445553000121,9.836916625000072],[5.775576456000181,10.031524133],[6.063783503000138,10.127067268000076],[6.330444533000161,10.267737564000129],[6.505735442000116,10.293336566999983],[7.082135454000024,10.023925435000137],[7.438776550000171,9.90514179700017],[7.624342499000079,9.88783601700004],[7.93674256800017,9.95752031000012],[8.282309493000184,9.961099885000067],[8.603759504000095,9.934031870000183],[8.640332430000171,10.069706217000146],[8.840023562000056,10.202825088000054],[8.816249467000034,10.321679637000159],[8.86379547700011,10.431025923000163],[8.935113571000102,10.469059479000066],[9.034958466000091,10.611685441000134],[9.068241495000109,10.587915202000033],[9.115786500000183,10.454797336000127],[9.106277566000188,10.383484439000142],[8.96839542600003,10.312171206000073],[8.944622505000098,10.240858309000032],[8.925604470000167,10.031672996000168],[9.006431497000108,10.045935139000107],[9.096768465000025,10.107740611000168],[9.111031446000027,10.198070370000153],[9.163331505000087,10.21233335200003],[9.253667466000024,10.345449877000135],[9.320231511999964,10.307416488000115],[9.496223483000051,10.313616246000095],[9.567467481000108,10.359712858000137],[9.66731254400014,10.321679637000159],[9.681576532000122,10.264628549],[9.567467481000108,10.107740611000168],[9.557958547000112,9.917572159000144],[9.529431578000072,9.86527578900018],[9.557958547000112,9.541990645000169],[9.600749504000078,9.342313594000075],[9.568890561000103,9.321076031000132],[9.59116245100006,9.224429167000153],[9.650639430000126,9.12723882000006],[9.872233481000137,8.929812814000172],[10.001649563000171,8.841918165000038],[10.137669579000033,8.776242769000078],[10.476180451000062,8.6995574070001],[10.661910516999967,8.712543322000101],[10.862890451000112,8.793280663000132],[10.983440491000067,8.866567331000113],[11.237409475000106,8.997030313000096],[11.48945045400012,9.042710846999967],[11.88726949300019,9.052516332000096],[12.048990436000167,9.015840812000135],[12.328359437000188,8.917895927000131],[12.804456567000102,8.945433999000102],[12.820608494000112,8.945997766000119],[12.869500471000038,9.108958224000105],[12.877729488000114,9.413415603000033],[13.099916474999986,9.610901791000117],[13.173978468000143,9.775473084000055],[13.223353578000172,9.981188457000087],[13.28582943400005,10.143252220000022],[13.331959574000052,10.460424778000174],[13.383110473000045,10.618883819000132],[13.475569571000051,10.741445181000188],[13.641409548000183,10.90494308700005],[13.778860523000048,11.101089513000147],[13.85493350300004,11.108053868000184],[13.77953002400011,11.453981525000017],[13.507836433000136,12.02095729299998],[13.24826242500012,12.389086951000024],[13.181973475,12.465501848000088],[13.033690455000169,12.553817308000134],[12.606348037999965,12.731577780000066],[11.832821488000036,12.847280003000037],[11.214899539000157,12.878527906000102],[10.718729427000085,12.926945635000095],[10.598139489,12.946314201],[10.294469507000144,13.038248089000149],[10.134380521000082,13.102943808000134],[9.85505845800003,13.279231829000139],[9.694548533000045,13.406392341000071],[9.488298562000068,13.58941136400017],[8.990699503000144,13.888620330000094],[8.778465524000069,13.97136580800003],[8.607858589999978,14.002793921000091],[8.372079509000116,14.112075497999967],[8.218784558000038,14.146343401000024],[8.037178556000129,14.159372566000059],[7.64656745000002,14.219088598000042],[7.306907588000172,14.278334739000172],[7.129064557000106,14.24907770600015],[6.79441958700005,14.211169040000073],[6.431363485000077,14.19849979300011],[6.227567568000097,14.182371000000103],[5.995334534999984,14.184220718000063],[5.502451469999983,14.139363958000104],[5.328052564000075,14.094916904000115],[5.148142555,14.023152391000053],[4.933565499000167,13.985914947000083],[4.673760531000028,13.98713401100008],[4.502114576000054,14.017862907000108],[4.272690486999977,14.081157507000057],[4.050700475000156,14.106706889000122],[3.538718573000097,14.12981445500003],[3.338589570000124,14.15687375400006],[3.125662575000092,14.168061918000149],[2.592624495000052,14.155892736000055],[2.360204545000045,14.159883360000038],[2.01728144000009,14.087068258000158],[1.720023446000141,14.08209745400012],[1.41098753700004,14.007252423000068],[1.135959524000043,13.987383960000045],[0.848398554000028,13.990524491000087],[0.444404567000106,13.974854523000147],[0.241644485000108,13.950906252000095],[0.031171544000131,13.906970160000128],[-0.117419482999935,13.893470937000075],[-0.553004527999974,13.940817794000054],[-0.765680568999926,13.97271495900003],[-1.272511455999961,13.997553052000171],[-1.550992477999955,14.032581864000178],[-1.826374542999929,14.108155785000122],[-2.143431429999964,14.258155978000048],[-2.355937485999902,14.416596747000085],[-2.440082335999932,14.493202224000129],[-2.560323549999964,14.640971567000065],[-2.777680803999885,14.97342675900012],[-2.892715880999958,15.109954624000181],[-2.978529736999974,15.171219717000156],[-3.068035540999972,15.19522478700003],[-3.273836032999895,15.131490981000127],[-3.490576355999963,14.997588095000083],[-3.904085017999932,14.69453125800004],[-4.010570436999956,14.678758371000185],[-4.070543456999872,14.228397874000052],[-4.092889442999876,14.117005231000121],[-4.255138445999876,13.828404234000118],[-4.451346561999912,13.628068702000178],[-4.713101495999979,13.447919642000159],[-4.719943475999969,13.30169046800006],[-4.757257529999947,13.242873479000082],[-4.833024569999907,13.234944031],[-4.914549474999887,13.333757450000121],[-5.041845438999928,13.277551089000156],[-5.225863584999956,13.24023351500017],[-5.280385517999889,13.260623333000012],[-5.24117748999987,13.36486638100007],[-5.127549559999977,13.423412466000116],[-4.785821546999898,13.552273666000133],[-4.659810528999969,13.698953115999984],[-4.548388548999981,13.771448029000112],[-4.649722572999906,13.88680145700016],[-4.674348436999878,14.013692072000026],[-4.766938459999949,14.021672648999981],[-4.919569563999914,13.991184650000093],[-5.148297452999941,14.008333521000168],[-5.194684581999923,14.029421048000131],[-5.032285542999944,14.309892605000186],[-4.977437552999959,14.568975723000108],[-4.865797475999955,14.733534779000024],[-4.852262546999896,14.791732176000039]],[[8.76699706800008,11.260079380000093],[8.762951459000135,11.16567291500013],[8.695835046000013,11.111927146000028],[8.550169471000117,11.1429353260001],[8.514442445999975,11.237227881000024],[8.412207535000107,11.25651405400015],[8.222751545000108,11.242638400000146],[8.18130454300001,11.3416756150001],[8.295747528000106,11.452486051000108],[8.291165477000163,11.540608017000125],[8.482474538000133,11.548590439000122],[8.515725967000037,11.509434713000076],[8.72508252300014,11.35533761400012],[8.76699706800008,11.260079380000093]],[[1.495224491000158,10.12168055400008],[1.445730526000091,10.240769461000184],[1.452608548000057,10.341910366000093],[1.511363510000137,10.455472414000042],[1.558298480000076,10.473994073000142],[1.660031483000125,10.41801503],[1.654420469000058,10.319983811000156],[1.543532584000104,10.122385472000133],[1.495224491000158,10.12168055400008]],[[1.176702447000082,9.350284113999976],[1.327337485000044,9.377006291000043],[1.428892456000142,9.313153624],[1.292508498000132,9.203927534000172],[1.117701560000171,9.205678514000113],[1.056458514000155,9.24859436100013],[1.056729585000085,9.324419069000157],[1.176702447000082,9.350284113999976]],[[1.192742560000056,9.011171254000146],[1.158843461000174,9.049246552000113],[1.208247572000062,9.128020013000139],[1.260822557000097,9.112657997000042],[1.265596554000126,9.021918363],[1.192742560000056,9.011171254000146]],[[0.704679425000052,8.536156228000152],[0.608289550000109,8.61726237300013],[0.607690579,8.744789006000076],[0.64731049400018,8.890125843000135],[0.721367459000078,8.892667571000118],[0.735668494000038,8.798209390000125],[0.816974464000054,8.74732587300008],[0.756175491000079,8.529553635000184],[0.704679425000052,8.536156228000152]]]},"properties":{"objectid":782,"eco_name":"West Sudanian savanna","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Afrotropic","eco_biome_":"AF07","nnh":4,"eco_id":62,"shape_leng":84.5066995993,"shape_area":135.539688637,"nnh_name":"Nature Imperiled","color":"#E69800","color_bio":"#FEAA01","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":1643026.9054050918,"percentage":7.663723576474234}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[120.89686579500017,-23.368804953999813],[120.81214135000016,-23.362972321999962],[120.75704961600013,-23.298526718999938],[120.71100614500017,-23.410898200999895],[120.64488986000003,-23.38300892599989],[120.45803829500016,-23.362104459999898],[120.41641996700025,-23.40092272999982],[120.29898832900005,-23.39267929499988],[120.08296204200008,-23.408803897999974],[119.90508263400011,-23.320230482999932],[119.82530217100009,-23.344554933999916],[119.71102145900022,-23.465957580999884],[119.62064358700002,-23.487295056999926],[119.50395207300016,-23.448358601999928],[119.31685642700006,-23.472604764999915],[119.32942961700007,-23.53930476599993],[119.23471830200015,-23.578851758999974],[118.94978338200019,-23.475217739999948],[118.9012603770002,-23.52921479799994],[118.75511167000002,-23.536365734999833],[118.57159425800023,-23.570989532999874],[118.52403265700002,-23.484930017999886],[118.41185764700015,-23.518108440999924],[118.36749273600014,-23.44821744999996],[118.23328404900008,-23.47098353799987],[117.95260613000016,-23.49325559499988],[117.77337656500026,-23.399692600999913],[117.68872068400003,-23.306066573999942],[117.57073215400021,-23.2664890719999],[117.49378209100018,-23.196249058999854],[117.35326384300026,-23.17128188299995],[117.32961279500023,-23.119981786999972],[117.1403122050001,-23.035268740999925],[117.16155245000004,-22.969745558999875],[117.0650710450002,-22.963516295999966],[116.8314742770001,-22.887111728999912],[116.65207673900011,-22.802831691999927],[116.50784296000006,-22.847999588999926],[116.30420680200018,-22.753889088999927],[116.13755042600008,-22.754602387999967],[116.15451053700019,-22.799619746999895],[116.0562665860001,-22.885643050999818],[115.71401973200011,-22.954387732999976],[115.57382200800009,-22.93145182899991],[115.39310448700019,-22.81151768999996],[115.32463070900019,-22.705160055999954],[115.2538071470002,-22.714168757999914],[115.2288971370001,-22.785099104999972],[115.08979040100007,-22.86835286099989],[115.09197254500009,-22.940156937999973],[114.98101810800006,-22.94564239099998],[115.06877143800011,-23.07481405599998],[115.14505765300021,-23.12041479499993],[115.10849746800022,-23.19517516799982],[115.0446318920001,-23.139673222999875],[115.030570914,-23.390699320999943],[115.09481049000021,-23.41693685699994],[115.13836671600018,-23.547851623999918],[114.99435421900012,-23.580203925999967],[115.02555853600006,-23.637611412999888],[115.18392940000012,-23.756175947999964],[115.16252134900003,-23.89476971099998],[115.26923370500015,-24.129728370999942],[115.38492593,-24.246284434999893],[115.46839141200007,-24.38556283199989],[115.46907805900014,-24.462173593999864],[115.51154329500002,-24.553737672999944],[115.6321488230003,-24.645702405999828],[115.66262810500007,-24.714544317999923],[115.67123414100001,-24.839229652999904],[115.62462623300019,-25.002155411999922],[115.50378416700005,-25.05219269099996],[115.55816645800007,-25.111465486999975],[115.50140387400018,-25.166547833999914],[115.53540037100015,-25.52905827299992],[115.59282680100023,-25.592378690999965],[115.43965908800021,-25.845899577999944],[115.48475640900006,-25.900337189999902],[115.58339699300018,-25.945196129999943],[115.51758581000001,-26.200786508999954],[115.45439145600005,-26.359313946999976],[115.4452820030001,-26.522087152999973],[115.39797202800014,-26.630378660999952],[115.39295193800012,-26.760417853999968],[115.40568539100002,-26.87237744899994],[115.34996031900005,-27.141332605999878],[115.29364013300017,-27.253089861999968],[115.42361445000029,-27.344964907999838],[115.56908422400011,-27.500040007999928],[115.7890778340003,-27.52440267999998],[115.97065734900013,-27.671665175999976],[116.14886482500003,-27.726276459999895],[116.2720642170002,-27.818662634999953],[116.4625548690002,-28.04687688099989],[116.62958524500027,-28.110776822999867],[116.8328552810002,-28.00154872099995],[116.97604366900009,-28.142198564999944],[117.02073664700015,-28.08901974899993],[117.09548193400008,-28.13242543399997],[117.34691623100002,-28.142616151999903],[117.38877864000006,-28.247058856999956],[117.32261659000017,-28.34953114299998],[117.22636417800015,-28.396760988999972],[117.28690331300015,-28.53654095899992],[117.4148406600001,-28.71356960399993],[117.35202030700009,-28.796478192999814],[117.43293014800008,-29.009630158999983],[117.68672948200003,-29.11109544399983],[117.69107063800004,-29.211479127999894],[117.66521447800005,-29.384843875999877],[117.80599960600011,-29.320396427999924],[118.05692294200003,-29.409585912999887],[118.14575200400009,-29.36184125099993],[118.3163299370002,-29.353355411999928],[118.3534927820001,-29.424217194999983],[118.47242729400011,-29.397384711999962],[118.58007808800005,-29.429801889999965],[118.64430995300017,-29.34321967999989],[118.6375122300002,-29.26978297699992],[118.76628122900013,-29.279262572999926],[118.87185666400012,-29.18347166899997],[118.91584019800007,-29.35326002699992],[119.02716830100007,-29.34140583599992],[119.15276340900016,-29.37062649199993],[119.13504792100002,-29.44643024499993],[119.01840217100005,-29.445657767999933],[119.04685973800031,-29.518102557999953],[119.18103020400008,-29.50518218899998],[119.18055729600007,-29.653869607999923],[119.11207580600012,-29.69329640399991],[119.36528002500006,-29.77544777199995],[119.6444626120001,-29.847734478999882],[119.81278229300017,-29.8596535449999],[119.83940120600005,-29.810274077999964],[119.9544981480002,-29.94171137199993],[120.10745245800001,-29.926609025999937],[120.14043424100021,-29.87693786899996],[120.28588104800008,-29.896942117999913],[120.34700758600013,-29.951198512999895],[120.45130913900005,-29.934412074999955],[120.4917374050001,-29.87996474199997],[120.56882476300007,-29.96321682099989],[120.66439052900012,-30.014467297999943],[120.67732246400021,-30.102073608999945],[120.86598971800015,-30.12488562799996],[120.86219020100009,-30.16885189599992],[120.99051663500006,-30.207084606999956],[121.21632393400012,-30.433593804999873],[121.5075149390002,-30.62094694299992],[121.50923926400014,-30.67924492399993],[121.61434179200023,-30.683193134999897],[121.77333073700015,-30.744830969999953],[121.86804959600022,-30.72859002599995],[121.98367308800016,-30.622102807999966],[122.08435064200023,-30.566566496999883],[122.14329537000015,-30.60843460599989],[122.34918207000021,-30.627424309999924],[122.43206031700004,-30.69142332699994],[122.529449483,-30.65307997499997],[122.63020331100017,-30.658515974999943],[122.73309318500026,-30.70335764799995],[122.8175432060001,-30.70359619699991],[122.85438535900016,-30.651065803999984],[123.05911250500003,-30.66147981599994],[123.38029479800002,-30.59767525999996],[123.4640655500001,-30.652181602999974],[123.53197472300019,-30.61579509099988],[123.67565160800007,-30.61360355899984],[123.74999992700009,-30.6428012479999],[123.76470949700001,-30.592880308999895],[123.63502502600022,-30.56256480899998],[123.66048438700022,-30.49434852299993],[123.43360135500018,-30.32040793799996],[123.31124870300016,-30.27824595899989],[123.09519961600006,-30.120685624999965],[123.0147553060001,-30.08692935399995],[122.96426389500016,-29.938583413999936],[122.81975552500012,-29.918130899999937],[122.90151210600004,-29.793954847999885],[122.77989203200002,-29.707252441999913],[122.71398931800013,-29.617166595999947],[122.59935757200014,-29.547161107999955],[122.56178300900012,-29.44819061399994],[122.63296514800015,-29.42119216799989],[122.7659988600002,-29.4292698079999],[122.77497101600022,-29.372068515999956],[122.86314394400017,-29.25755143399988],[122.72752374400011,-29.1853180359999],[122.62786861600011,-29.016189501999918],[122.6520232490002,-28.886917085999926],[122.71337123500007,-28.809242324999957],[122.54206843700013,-28.642747887999974],[122.56764983800008,-28.578924221999955],[122.50543968800002,-28.403190579999944],[122.49961845600012,-28.243104946999892],[122.44311520700012,-28.204194978999965],[122.42768093900008,-28.01782604399989],[122.50131227000008,-28.00049394399997],[122.56756585100004,-27.765062376999822],[122.48992159900001,-27.718255985999917],[122.42978664000009,-27.60059351099983],[122.68865199700008,-27.42078777399996],[122.77161406300002,-27.335212733999924],[122.89974218200018,-27.30394555299995],[122.89593512200008,-27.21385199599996],[122.961776815,-27.130712568999854],[122.90537264200009,-27.006338033999953],[122.73598477200017,-26.875984184999936],[122.74613944700002,-26.774030737999965],[122.89159396600007,-26.66631892299995],[123.02690889600012,-26.642644907999852],[123.14312750400006,-26.658088731999953],[123.20864113000016,-26.617053951999935],[123.36878208400026,-26.56723208699998],[123.39983368300011,-26.41148760899995],[123.4452895820001,-26.38479040899989],[123.51857759000006,-26.184984277999945],[123.50452415600012,-25.9863757519999],[123.55622105200007,-25.913722923999956],[123.58650973000022,-25.829721501999927],[123.50549310400015,-25.79366104599984],[123.4733352620002,-25.736043842999948],[123.39341733600008,-25.78391272499988],[123.30319972600023,-25.792076027999883],[123.20639042100004,-25.725915821999934],[123.14210507900032,-25.791030636999892],[123.0992430440001,-25.689394024999956],[123.17633828100008,-25.556915195999977],[123.12165072100004,-25.46050268999994],[123.15514380000013,-25.341516544999934],[123.11262508700008,-25.308559404999926],[123.13071424000009,-25.223562212999923],[123.03126530600014,-25.168218685999932],[122.99259941900004,-25.105781553999975],[123.0013734270002,-25.023597663999965],[122.83163452300016,-25.015710794999904],[122.67138678400033,-25.165126767999936],[122.56124120000027,-25.10590560499992],[122.48031610400017,-25.12744927599988],[122.44906619000017,-25.07067680199998],[122.19842532400014,-24.927228909999883],[122.09091182600002,-24.98392292999995],[122.01813511300008,-24.881284680999954],[121.83128354800033,-24.843332261999876],[121.79719552100028,-24.79185111599992],[121.67761224900005,-24.75737953299995],[121.57022095900015,-24.76280597699997],[121.44383996500005,-24.80472756299997],[121.39005278900015,-24.952230618999977],[121.32941441300022,-24.994863491999922],[121.37270359000001,-25.08702285299995],[121.31232455000008,-25.106597949999923],[121.22381584400011,-25.240409836999902],[121.16052241700015,-25.212207750999937],[121.05014046300005,-25.294847448999974],[120.95067593800024,-25.273193136999907],[120.83846287400002,-25.28959082199998],[120.72145083600003,-25.385766957999977],[120.64719387900016,-25.407764424999982],[120.58763894800006,-25.137092654999947],[120.50262449000002,-25.134185810999952],[120.47534944100005,-25.181837096999914],[120.35348511900008,-25.134273484999937],[120.15128327100001,-25.181152295999937],[120.03587334900033,-25.175670698999966],[120.01097876100005,-25.046630796999864],[120.10395049600015,-25.044069287999946],[120.25252526200018,-24.966257062999944],[120.31740571900002,-24.905288775999907],[120.27624504200003,-24.81792252199989],[120.27799216600022,-24.66427804599988],[120.10349267600009,-24.63341319599988],[120.05647271400005,-24.581047087999877],[119.95443712400004,-24.54814727999991],[119.90869909000003,-24.428039468999884],[119.83625798900016,-24.38791077199994],[119.94197088800001,-24.325420331999965],[119.99111180700027,-24.127656868999964],[120.06952669000009,-24.124013926999964],[120.0290221480002,-24.0278532129999],[120.13142402700021,-23.939868878999903],[120.20851138500007,-23.926788247999866],[120.28433994900001,-23.87004661999987],[120.4223099310002,-23.9177493709999],[120.49910744200008,-23.848236068999938],[120.73987576700017,-23.79645367699993],[120.79603569100004,-23.723161477999838],[120.77785484100002,-23.597511216999976],[120.87232978600014,-23.491067918999875],[120.89686579500017,-23.368804953999813]]]},"properties":{"objectid":783,"eco_name":"Western Australian Mulga shrublands","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Australasia","eco_biome_":"AU13","nnh":2,"eco_id":216,"shape_leng":63.8430085835,"shape_area":41.8890683599,"nnh_name":"Nature Could Reach Half Protected","color":"#F2AF5E","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":463820.91394299717,"percentage":1.7580841951486978}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-96.40218902599992,28.368723060000093],[-96.65169817499992,28.251341208999975],[-96.69032545599998,28.206686653000077],[-96.78864366199991,28.189295738000112],[-96.77658001999998,28.12325936100018],[-96.56038906199984,28.26438666900009],[-96.39860720599995,28.342304872],[-96.40218902599992,28.368723060000093]]],[[[-97.7767552759999,24.110902161000126],[-97.74846806099993,24.311614899],[-97.74737913699994,24.438111963000154],[-97.826413157,24.411446534000163],[-97.8606725219999,24.516982144000167],[-97.77364553799993,24.54482863800007],[-97.70998587499997,24.65401547600004],[-97.73602091299989,24.84636805300005],[-97.66457640899995,24.92819886400008],[-97.75220653199995,24.97627747100006],[-97.69073749199993,25.18425945900009],[-97.72607154599996,25.246720239000183],[-97.70022609699987,25.401643040000067],[-97.58203055399997,25.31052655900004],[-97.51621698699995,25.41139075700005],[-97.4348005469999,25.41928424800011],[-97.41869778799992,25.303477013000077],[-97.24600425199992,25.540030535000028],[-97.17834394499988,25.703396281000096],[-97.14478004199998,25.97221344400009],[-97.21079823999992,25.990304356000024],[-97.23650733899996,26.06574073500019],[-97.29598008299996,26.10764074200017],[-97.29652553999995,26.20159530800015],[-97.35424373999996,26.330122607000078],[-97.40106193499992,26.364313522000145],[-97.43580740199991,26.46968627000018],[-97.425661946,26.55776810700013],[-97.47004378199995,26.749259055000152],[-97.56065289799989,26.839631799000017],[-97.55639835699992,26.994140921999985],[-97.48013470199999,27.00541365500004],[-97.496452891,27.091059127000165],[-97.45101651699986,27.121586407000166],[-97.42320742399994,27.26240461900005],[-97.54618017999996,27.229431880999982],[-97.60866201599998,27.285413709000125],[-97.53361654499997,27.34000463200016],[-97.41203469499999,27.322331903000133],[-97.32013468099996,27.57106832200003],[-97.25426194199991,27.696804713],[-97.37483470099994,27.748877447000154],[-97.3877437989999,27.84030473900009],[-97.33768924299989,27.88316838600008],[-97.25080740199996,27.876722932],[-97.18830738499997,27.824086560000126],[-97.03455280999998,28.044841154999972],[-97.09921646299995,28.07785025100003],[-97.15178011099988,28.03475024000005],[-97.22053467499995,28.07861388400005],[-97.1690801179999,28.13075935100011],[-97.02877099499995,28.190704821000054],[-96.95834370199992,28.122486628000104],[-96.8004254839999,28.224632109000027],[-96.78073457699992,28.400013963000163],[-96.70131637399993,28.360232139000175],[-96.59560725699998,28.35605941400013],[-96.41250721399996,28.461413987000185],[-96.60995272299994,28.596332191000045],[-96.66495274199991,28.69542311900011],[-96.58567999599995,28.725068582000063],[-96.55816180299996,28.645314021000047],[-96.45671632299997,28.635923113000047],[-96.19936171499995,28.712650410000037],[-96.2256980809999,28.579414016999976],[-96.03900712699993,28.65247767500017],[-95.95942528799992,28.625295853000182],[-95.92354346299987,28.7015504150001],[-95.777488883,28.749532248000037],[-95.65350703299998,28.750004978999982],[-95.43999789199995,28.859832282000127],[-95.38410696899996,28.864868648000083],[-95.21067965799995,29.00941413800018],[-95.14777964899986,29.17981417599998],[-95.0372341669999,29.21162327600007],[-94.93751596399994,29.313705120000122],[-94.89177050299998,29.43337787300004],[-95.01831599399986,29.5548960750001],[-95.01582508899997,29.63806882000017],[-94.96583416999988,29.700514289000125],[-94.87277050799992,29.671496105000074],[-94.81406140599995,29.758950670000047],[-94.68907046399988,29.751305218000027],[-94.70611591699998,29.62853246500009],[-94.76046138099997,29.524386987000184],[-94.54573405599996,29.571705186000145],[-94.49908858599997,29.50604153800009],[-94.13258849699997,29.646223397000142],[-94.00140664599996,29.681459773000086],[-93.85852479099992,29.674196139],[-93.74557930899994,29.73586888300008],[-93.48566106099992,29.76875071600017],[-93.23905190499988,29.778414364000184],[-92.94626091599991,29.703677994000145],[-92.74016994899995,29.615823436000085],[-92.61627900499997,29.5787325230001],[-92.25953345499983,29.536823435000144],[-92.13374347899992,29.584384195000155],[-92.11179705599994,29.621778003000088],[-92.20163344899998,29.753705301000082],[-92.13293343099997,29.766596215000163],[-92.0614620739999,29.858555992000163],[-91.91767625899996,29.94760551400003],[-91.68369962299994,29.843151949000116],[-91.64285196099996,29.879936911000073],[-91.79588228899996,29.97755973500017],[-91.86088814399994,30.041689966999968],[-91.91383310599997,30.154461672000025],[-91.97371409999994,30.16981502700014],[-91.99893059599992,30.31311548700006],[-91.98062128899988,30.412057388000107],[-92.05923839799993,30.43806470100003],[-92.03646118699999,30.576611902000025],[-92.09932244599997,30.6949743080001],[-92.29367513799997,30.798573957000087],[-92.33478167299995,30.765309560000162],[-92.49547163499989,30.727954443000158],[-92.54187073799989,30.60701016400003],[-92.62697071899998,30.58774267900003],[-92.7190193059999,30.663694744],[-92.7757460389999,30.644159564000176],[-92.89866984699995,30.499891621000017],[-93.03141398899999,30.418744305000132],[-93.11271484299994,30.29156797700017],[-93.22298616699993,30.22106639000009],[-93.3167070049999,30.269450550000045],[-93.48104644799997,30.285534511000094],[-93.61979185099989,30.226814026000113],[-93.65809784399988,30.13308920300011],[-93.72833885599994,30.111211360000084],[-93.81374864999992,30.222477563000098],[-93.89858818699986,30.16021396500014],[-94.03840522899992,30.172760698000104],[-94.10066902899996,30.120832769000117],[-94.1629030329999,30.167657670000096],[-94.45853442499998,30.042451531000097],[-94.58726959799998,30.00713072000019],[-94.69563005799995,30.19130861400015],[-94.73419180699989,30.185532523000177],[-94.74009602899991,30.03190578600004],[-94.72234930999997,29.908523497000147],[-94.8175122699999,29.91126301100013],[-94.85521128099992,30.037415302000056],[-94.9503679799999,30.174918749000028],[-95.08304233599989,30.06530472500009],[-95.11074874499985,29.90861992400005],[-95.17601457899991,29.899786410000104],[-95.26766901299999,29.955120051000165],[-95.36095427299995,30.06511205000004],[-95.58184191099986,30.12138384600013],[-95.81025590199988,30.086127088000126],[-95.8921530099999,30.14007728900009],[-95.9897867439999,30.13088781400012],[-96.10817427199999,30.068317488000048],[-96.14134458699994,29.86433652800008],[-96.3436310589999,29.85567562900013],[-96.39927042799985,29.77758701700003],[-96.40070483899996,29.69986015000012],[-96.51214559499988,29.654729532000033],[-96.59457072099991,29.56223313400011],[-96.58878749099995,29.460043606000056],[-96.65402918899997,29.422422905000076],[-96.67712407599987,29.29207992200014],[-96.7472780839999,29.082115655000166],[-96.84958948699989,29.07997163700003],[-96.92147033799989,29.1278804210001],[-96.9803267659999,29.086998335000033],[-97.11718075299996,29.053066480000098],[-97.16074579799988,28.940698935000114],[-97.14771561099991,28.78320523400015],[-97.10647682899992,28.736223308000035],[-97.2151905579999,28.696955539000044],[-97.29317488699985,28.699773296000046],[-97.304017177,28.633233771000107],[-97.47993992399995,28.611610525000117],[-97.37186670999995,28.474968160000174],[-97.46405896799996,28.41882291400003],[-97.55803707599989,28.42832125300015],[-97.70863466399999,28.39095901000013],[-97.711218407,28.306597759000113],[-97.77380912999996,28.280962687000056],[-97.85091383599985,28.321782068000175],[-97.88234340099984,28.240893912000047],[-97.83224373699989,28.11694014900013],[-97.92165204799994,28.015064464000147],[-98.09590638899988,27.992663725000057],[-98.12482700499999,27.949362856000164],[-98.09372199699999,27.859395764000055],[-98.23765351499998,27.771639268000115],[-98.30738235099994,27.680849609000063],[-98.29241952499996,27.46314034100004],[-98.39311037499994,27.469497301000047],[-98.4652556819999,27.40752331100009],[-98.42085479799994,27.35072793300003],[-98.62455322399995,27.3239078470001],[-98.68101929799997,27.284379256000022],[-98.65103003799993,27.188306838000187],[-98.67222829899993,27.051144092000072],[-98.80670211299997,27.02521607100016],[-98.87339729699983,26.962569750000114],[-98.8200820159999,26.865682056000082],[-98.74726604299997,26.90665961800005],[-98.60885369599993,26.721614781000085],[-98.45418530199998,26.722434686000156],[-98.34569079499994,26.682787636000114],[-98.33933928799996,26.5821722820001],[-98.47650971299998,26.461676799000145],[-98.420993722,26.296188444000165],[-98.43037405799993,26.147373521000077],[-98.51071166699995,26.139459509],[-98.55228419299993,26.08498628200016],[-98.54045102099991,25.953180577000182],[-98.47795870199997,25.921922633000065],[-98.40827184699992,25.819702354000185],[-98.4215392459999,25.69293539800009],[-98.24040988699994,25.569109852000054],[-98.30185699799989,25.479726890000165],[-98.21305845899997,25.469541957000047],[-98.2173614319999,25.384307739000064],[-98.36897281799986,25.36138831700015],[-98.41855626799992,25.29892637500018],[-98.34774779099996,25.254703173000053],[-98.31147003199993,25.152212859000088],[-98.35563657699998,25.104163896000102],[-98.36303711299996,25.01080509000002],[-98.23604584499992,24.94892568400013],[-98.15908821399995,24.883572361000063],[-98.09522244999988,24.672281008000027],[-98.09676353999993,24.550644933000058],[-98.19015495499997,24.47198086500009],[-98.1087569359999,24.434636004000026],[-98.13968657799995,24.356349397000145],[-98.13890836099995,24.09471813199997],[-98.11029811799989,24.0186387870001],[-98.01007078799995,24.028019861000075],[-97.91027059399994,24.090039845000092],[-97.7767552759999,24.110902161000126]]]]},"properties":{"objectid":789,"eco_name":"Western Gulf coastal grasslands","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Nearctic","eco_biome_":"NE07","nnh":4,"eco_id":384,"shape_leng":71.7002755516,"shape_area":8.34039991995,"nnh_name":"Nature Imperiled","color":"#FBFC58","color_bio":"#FEAA01","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":91074.06061208098,"percentage":0.42480523186926344}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[80.8715365,30.121379486000137],[80.74919155900017,29.96908701000018],[80.74793963800005,29.889336219000086],[80.81807756000012,29.84317976000017],[80.87840262000003,29.901185548000058],[80.94358851300007,29.889065148000157],[80.97199260400004,29.69252242700003],[81.1287536390002,29.661626732000173],[81.2525935770002,29.789850739000087],[81.33067352000018,29.748954596000033],[81.432243578,29.767789738000033],[81.4323346060001,29.65746679300014],[81.58859255900018,29.533899770000062],[81.64101465800019,29.570237331999977],[81.59187357200011,29.720938420000095],[81.8617094990002,29.835398337000186],[81.89427956300017,29.89832480400014],[81.98089563600018,29.858690304000106],[82.04299162400008,29.78201030700012],[82.11633260700006,29.847076675000096],[82.11112258300011,29.619878483000093],[82.30517554400006,29.62419633700017],[82.45453653300007,29.60053606800011],[82.43811051700004,29.551720032000162],[82.2696686290002,29.54690027000015],[82.27627558,29.48111456700002],[82.2182315710001,29.442110219000085],[82.1912455310001,29.344901935000053],[82.37741849700012,29.338892111000177],[82.37272664300002,29.21097706000006],[82.10065459200001,29.218804751000164],[82.11808056900009,29.105078418000176],[82.04763754600009,29.088426930000026],[81.97548662600008,29.12515156800015],[81.90695165900007,29.078380380000056],[81.81534550400016,29.06966370400005],[81.87549554999998,28.981317271000023],[82.05163554600011,28.93364318500005],[82.1717296110001,29.044813708000106],[82.32065557800013,29.057091352000043],[82.35780350300007,28.95175429800014],[82.4766845380002,28.964650695000046],[82.43488365200011,29.120816615000024],[82.58457153500012,29.132727300000113],[82.77628359800008,29.060813923000126],[82.86577550200008,28.998009664000165],[82.93213653800012,28.998024416000135],[82.9553455250001,28.920816694000052],[82.80975354300011,28.876252461999968],[82.75953655500007,28.944811568000148],[82.59735058400014,28.9153597400001],[82.53153252800007,28.817893628000036],[82.704429565,28.769405659000086],[82.76976750600005,28.718208827000126],[82.82982652500004,28.78113311499999],[83.07031254700013,28.61772573400009],[82.94918851400018,28.57365854800014],[83.05905162800019,28.501765456000157],[83.21588860300017,28.539679989000092],[83.19428257200013,28.623380501000156],[83.29948450900014,28.59788861900006],[83.37077360100005,28.64873441700007],[83.45848854200005,28.54659254500001],[83.49224062200011,28.585088950000113],[83.61490659000015,28.595527604000154],[83.57538558099998,28.66321096900009],[83.76618150200011,28.842234675000043],[83.76982863600011,28.754448153000112],[83.70416262700013,28.744147632000022],[83.68692054900009,28.652674247000107],[83.68040462500011,28.68830471100017],[83.82757559000004,28.770839635000073],[83.85614061299998,28.8791153840001],[83.91751860800008,28.97077149600011],[83.99822963000014,29.00536511900009],[84.05111659000016,29.38974813500016],[84.006767605,29.415149157000087],[83.93362460300017,29.686582842],[83.85407263000008,29.78803287200003],[83.58364862900015,29.926237715000127],[83.52379664300008,29.928730660999975],[83.54374657900019,29.781615352000188],[83.76478558000008,29.696834581000132],[83.7182995450001,29.60457597800007],[83.65097056700012,29.607068756000103],[83.6609495580002,29.442499307000162],[83.71115849900002,29.35810242700012],[83.89154057600007,29.478077636000023],[83.89949064300015,29.388371156000176],[83.8611375690001,29.26131022100003],[83.85746763600014,29.162404935999973],[83.75413553400017,28.938708872000063],[83.65420564600015,28.979587246000165],[83.58380151500018,28.9284891530001],[83.50772065600017,29.02160053],[83.57812461900016,29.132880185000033],[83.42141756300015,29.190793101000054],[83.45889255000009,29.25438140400007],[83.41005656400006,29.349763774000053],[83.43163258900012,29.38610150400018],[83.56244660500005,29.371035871000174],[83.40429652000006,29.56986031400004],[83.30705252899998,29.644665447000193],[83.2372285940001,29.736924050000084],[83.08013161100001,29.821702810000033],[83.03275256800003,29.88403935900004],[82.68595165900007,30.06088662000019],[82.60865056300008,30.050910981000186],[82.61125951400004,30.170361651000064],[82.51650964300006,30.27625375500014],[82.64297462400015,30.367540392000024],[82.67075359300003,30.42222241900015],[82.58412159400012,30.580897882000045],[82.47850056200014,30.581123858000126],[82.32102153200003,30.646314277000158],[82.18211361500005,30.69104581200014],[82.08757765000018,30.745395749000124],[82.0359875380002,30.762954327000045],[82.01161950200014,30.7953812290001],[81.94797554300015,30.76806510900019],[81.8318254990001,30.78909128100014],[81.82682753800003,30.85163100700015],[81.93077051400007,30.862746752000135],[81.91319265700008,30.886961735000057],[81.76985959800004,30.935037985000122],[81.67209659900016,30.86758361300008],[81.58255758900015,30.945682667000142],[81.4537735020001,30.993878107000114],[81.34804551700006,31.00638558300011],[81.239875547,31.062427658000104],[81.02714552700002,31.204949852000084],[80.85807063700008,31.260469735000072],[80.70654259200018,31.38850028800016],[80.67939763100014,31.28476887200003],[80.58152063800009,31.328239601000178],[80.52277355500007,31.420724347000032],[80.38014256400004,31.57138838700007],[80.42435458900019,31.470053524000093],[80.30912756000009,31.407937922000144],[80.16667962999998,31.499887735000073],[79.97805764000009,31.711085711000123],[79.916595658,31.855342791000112],[79.83034553900006,31.995633052000073],[79.73242965500009,32.19411283100004],[79.67006661900012,32.26509430800019],[79.56161451500003,32.3232015160001],[79.4669186220001,32.299979286000166],[79.34944960200016,32.32614641400005],[79.36008456100018,32.42529930000006],[79.21755951700015,32.30747404800019],[79.14595761200019,32.300513213000045],[79.12274158400004,32.17721424400008],[79.05948654600019,32.06221989600016],[79.16906752500017,31.927175366000142],[79.01035350600006,31.829861638000068],[78.97535654600006,31.90097823100018],[78.74507850800018,31.908434101000125],[78.53648361500012,31.755326067],[78.42902359300018,31.717741278],[78.36296061800005,31.65258455300011],[78.1716235610001,31.443332520000183],[78.11766857900017,31.518580888000145],[78.03517154100018,31.47241168900007],[77.9845424990001,31.34457609800012],[78.04461660500004,31.31219999100017],[78.22978257000011,31.316814732000125],[78.33441152000012,31.168957121],[78.34899150500001,31.084147852000115],[78.42796361800015,31.06913536000019],[78.51750162200011,30.965725138000153],[78.69288657600009,30.96623006400017],[78.79576153000005,30.99061620600014],[78.96347855100004,30.925818394000146],[79.024467625,31.008403442000144],[79.00922362600005,31.065574728000115],[79.10959658100018,31.08971880000007],[79.24681856200016,31.056682869000042],[79.34210956900012,31.061765823000144],[79.25189950400005,31.16340813400018],[79.43994850800004,31.223123997000073],[79.52507059000015,31.168490082],[79.60003665600004,31.05414181200001],[79.66102556300007,31.12656145500017],[79.71184554500013,31.047789335000118],[79.81984754100012,31.031273800000122],[79.76647962800018,30.95249966900019],[79.75885762800016,30.769544850000102],[79.79189255200004,30.721264753000185],[79.72074159400017,30.605646959000126],[79.66864756300015,30.596753090000107],[79.60765865600007,30.75302864500003],[79.53778057300008,30.722534779000114],[79.51998864200016,30.84704828600013],[79.44121551600006,30.897867597000015],[79.41834264400006,30.779709584000045],[79.32559152000005,30.763190194000117],[79.39547765000003,30.618351410000116],[79.30780763600012,30.63359792400007],[79.29383064500018,30.690770718000124],[79.08799758999999,30.773355934000165],[78.979995594,30.777166682000143],[78.71365357899998,30.83606346600004],[78.60001358000011,30.71741997400011],[78.64602654100003,30.662489674000142],[78.84126252300013,30.587812616],[78.9423826420001,30.671919315000082],[79.09964759700017,30.683469913000124],[79.19584653200013,30.633710912000026],[79.2761225340002,30.4783265210001],[79.46234864100006,30.508086300000116],[79.59581754100009,30.476499433000072],[79.62805953800017,30.316074333000074],[79.60343149400006,30.20603754600006],[79.67915360800015,30.119849621000128],[79.80378764700004,30.13385913400009],[79.84123949900015,30.194172961999982],[79.73863963900004,30.255928478000158],[79.74660462700018,30.315691280000124],[79.69680053100018,30.410316764000186],[79.87111662500018,30.392388711000137],[79.84920465400006,30.55773466000005],[79.97072565400003,30.662319857000057],[80.04045856200014,30.639411780000046],[80.15799765500009,30.551756854000132],[80.15002462100017,30.501953597000124],[80.03547652600008,30.36150961200002],[80.16895263500004,30.235011438000186],[80.33236655500008,30.184657323000067],[80.43051964700015,30.05550409700004],[80.57008353100014,30.137371989000087],[80.76020856500008,30.024638074000165],[80.8715365,30.121379486000137]],[[82.13063850400005,30.101172393000184],[82.06984757700019,30.247413973000107],[81.95883949600011,30.327582853000024],[81.9059825440001,30.236840202000167],[81.78352360900004,30.272959834000176],[81.75797255000009,30.37251220100012],[81.79849955500015,30.43065411100008],[81.97998854600007,30.406868114000133],[82.03725454700015,30.44034493200013],[82.20993063700018,30.367225567000048],[82.21961961400007,30.27207906400014],[82.3253405590001,30.1786972860001],[82.28393563399999,30.090599628000177],[82.40621150800013,30.035280744000033],[82.47356462600015,29.96146132200016],[82.40463252500012,29.93554950700019],[82.33238957200007,30.016601337000168],[82.26543459400011,30.002502808000088],[82.1817396150002,29.890620159000093],[82.03549149700012,30.002502808000088],[82.13063850400005,30.101172393000184]]]},"properties":{"objectid":790,"eco_name":"Western Himalayan alpine shrub and meadows","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Palearctic","eco_biome_":"PA10","nnh":2,"eco_id":769,"shape_leng":63.3718427095,"shape_area":6.58596761239,"nnh_name":"Nature Could Reach Half Protected","color":"#DF72FF","color_bio":"#D6C39D","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":70319.86950424583,"percentage":1.440005853409574}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-102.29972257399999,42.99194748400009],[-102.47075117099996,43.00482521000015],[-102.41533637799995,43.09049324700004],[-102.31666205499994,43.143459353000026],[-102.29546224599989,43.2019783770001],[-102.17575707599997,43.259933713000066],[-102.00255661899996,43.277182484000036],[-101.96279819699998,43.318228500000146],[-101.77485013999996,43.23781421700011],[-101.63723298799988,43.24765857400007],[-101.57794822199997,43.31960397600011],[-101.68174287499994,43.36770461000003],[-101.94599498399992,43.37057062100013],[-101.96403632899995,43.425646125000185],[-102.08061065099997,43.52139176900005],[-102.23003791099995,43.43606052000007],[-102.30353118699998,43.5045728180001],[-102.39527595899989,43.4909593320001],[-102.4857155439999,43.338993095000035],[-102.55942608599997,43.34586206000006],[-102.67735641399997,43.27294497000008],[-102.78792489799991,43.24022403700019],[-102.80404010999996,43.045974140000055],[-102.86646738999985,42.95896749100007],[-102.81521419999984,42.86140018700013],[-102.99472684499995,42.842174194000165],[-103.04225932499997,42.780177538000146],[-103.19916092799997,42.70847205600006],[-103.30818578999998,42.69056813400016],[-103.37353772299997,42.63640083000007],[-103.49674077999987,42.77311135100018],[-103.63624442199995,42.826380824000125],[-103.80131209099994,42.765308133000076],[-103.9648393949999,42.81011645600017],[-104.04511292899997,42.869457575000126],[-104.2216628459999,42.89719626100003],[-104.33458945099994,42.87910651600009],[-104.41045787799993,42.90495757600013],[-104.53770816699995,42.85896101200018],[-104.68410001399991,42.879118936000054],[-104.99199823299983,42.807918956000094],[-105.06229974799993,42.77019575100019],[-105.13534343599997,42.66692023000019],[-105.0591382209999,42.60593799500015],[-104.96071113999989,42.58438780400007],[-104.94673086099993,42.37309129900018],[-105.03962558399996,42.35334130700011],[-105.22977929999996,42.170923203000086],[-105.15970908999992,42.072340752000116],[-105.2524027149999,41.98535802600003],[-105.18591235699995,41.94319726800006],[-105.25295477199995,41.81020138500003],[-105.16087359699998,41.796983795000074],[-105.00382745899998,41.840132238000194],[-104.898861233,41.78788805900018],[-104.95450096899998,41.729010755000104],[-105.03014057099995,41.42542453300018],[-105.14413837799998,41.389847491000126],[-105.10859148499992,41.31896341099997],[-105.10566566499989,41.203375258000165],[-105.15236086299996,41.09932915200011],[-105.0901545879999,41.06825317200014],[-105.13334545599997,40.96788676900019],[-105.11999175099987,40.88132844600017],[-105.1615970179999,40.8086403800001],[-105.14310365599982,40.440216195000176],[-105.20484013899983,40.40373451700003],[-105.19603948099996,40.222862527000075],[-105.27910959299987,40.14669117600005],[-105.29041094799987,40.03861385000005],[-105.26930269999997,39.88342644200003],[-105.07217855399989,39.44708165499998],[-105.02270403799997,39.39347878800015],[-104.82312069999995,38.98948537500013],[-104.88531569699995,38.866022408000106],[-104.8287250059999,38.74334684799999],[-104.8392523519999,38.48016701100016],[-105.05244071199996,38.49535228800005],[-105.12652961599991,38.47601372100007],[-105.26407660299992,38.4952063720001],[-105.26326595299992,38.39888780900003],[-105.20381628999985,38.3056146350001],[-105.1151885669999,38.256273170999975],[-105.09461991999996,38.19662740600006],[-104.99140144999984,38.16492660400007],[-104.94367729099997,38.02825477700003],[-104.86829275399992,37.95302554000011],[-104.92141537099991,37.91208481700011],[-104.93948885799989,37.82111528900003],[-105.05264836599991,37.66130578899998],[-105.08328562399998,37.54131274200006],[-104.99084801799995,37.48393518900019],[-104.86301428999991,37.53150965900011],[-104.7979384649999,37.58559571000012],[-104.68402828699993,37.50449049200017],[-104.66108095999994,37.41247170000014],[-104.49701663199994,37.24750546000013],[-104.53119952399999,37.16254607400015],[-104.37149433999991,37.100466404000144],[-104.22580515599998,37.06849219200012],[-104.13549840899992,36.987681560000055],[-104.02015159499996,36.96477882000005],[-103.90113369399995,36.99449985300009],[-103.91622644599994,36.860907651],[-104.06321374399988,36.882457701000135],[-104.28445976299997,36.812185707000026],[-104.36212900499993,36.91420703500006],[-104.42292857899997,36.91466020400014],[-104.54145163599998,36.80317976500004],[-104.54780168799994,36.756790832000036],[-104.71246716699994,36.62775963500013],[-104.90793877799996,36.54729732100009],[-105.019063056,36.47051506400015],[-104.94759776799998,36.403457058000185],[-104.88650306799997,36.25418745100012],[-105.18032039299999,36.085976254000116],[-105.24456444199984,35.95208558100012],[-105.23260008499994,35.85882526200015],[-105.26937866999987,35.7352116350001],[-105.23588294199999,35.5325814360001],[-105.30881011499997,35.54114738499999],[-105.35435465199998,35.41737346800005],[-105.52357337999996,35.42894894199998],[-105.51253596899994,35.35572485300014],[-105.56455087099994,35.3021930000001],[-105.65681648199995,35.436325044000114],[-105.77957476899996,35.540470349000145],[-105.85287161999992,35.50354233400009],[-105.85840254299995,35.38976944700005],[-105.89590368799998,35.25576638300004],[-106.01861049899992,35.29095754500014],[-106.08698363499997,35.278164760000095],[-106.23405821399996,35.13466654000018],[-106.13292419899989,35.00629922600007],[-106.13508526099992,34.92602835500014],[-106.24329470499998,34.74763696100007],[-106.30783710399999,34.72535572900017],[-106.3438791939999,34.63743496200004],[-106.34251092999995,34.49232598700013],[-106.55682094399998,34.2877885800001],[-106.66218747499994,34.2738941500001],[-106.6694614889999,34.27010943200014],[-106.73168361599994,34.11003064600004],[-106.67951264699991,34.066954723000094],[-106.5682510709999,34.062981416000014],[-106.42096107799995,34.164716625000096],[-106.36012616599993,34.150924729999986],[-106.3366807829999,34.039015923000136],[-106.29235757199996,33.97936014100003],[-106.27161186699988,33.810540599000035],[-106.183035051,33.728315630000054],[-106.05670302399994,33.846752978000154],[-105.97363106499995,33.84827593900013],[-105.81198210499997,33.80195793900009],[-105.78087436399994,33.894296281000095],[-105.65081250799994,33.968604624000136],[-105.56782988499998,33.95093923500019],[-105.57311273,33.83668635000015],[-105.51125977099997,33.695555081000066],[-105.33503239399988,33.704034449000176],[-105.21919278299998,33.68418081600015],[-105.15167502799989,33.56604476900003],[-105.17384233699994,33.48184697500017],[-105.26628524399996,33.369882167000014],[-105.22227534099994,33.32531508400018],[-105.15522867499993,33.08391935100008],[-105.18474187599992,33.04132677700005],[-105.18189372999996,32.89885183700005],[-105.25326777399982,32.80886916400004],[-105.24621212199992,32.756313577000185],[-105.14329510699991,32.71345197],[-105.09178015499992,32.646939622000104],[-104.97756644899988,32.7025458490001],[-104.87224194699985,32.70951248200004],[-104.77536980499997,32.74873284500018],[-104.8140926179999,32.86472207500003],[-104.74332353499994,32.95565280500011],[-104.58641434299989,33.002659535000134],[-104.58268706099994,33.04947969299997],[-104.69614187399992,33.079456139000115],[-104.712458444,33.24404357200012],[-104.76604324499993,33.329034185000125],[-104.62147114599998,33.46115643500008],[-104.59105445699993,33.592381745000125],[-104.63989338799996,33.70910515600008],[-104.61368115099998,33.76071239400005],[-104.48293346999998,33.79657551100007],[-104.39473899899991,33.76926052100009],[-104.30674033199989,33.828507186000024],[-104.18687229699998,33.774348175],[-104.22952774799995,33.66098047200006],[-104.00883736399993,33.51294398000016],[-104.03549579299994,33.42276399500014],[-103.96742810599994,33.383321765],[-104.05335294199989,33.243714239000155],[-104.03847798599998,33.127739741000084],[-103.95454387799998,33.07151414700007],[-104.03653027699994,32.93019182600011],[-104.04280670199995,32.792151524000076],[-103.75584393899993,32.61840769600013],[-103.65637230899989,32.60686568400013],[-103.69495113799991,32.50182045300005],[-103.6675876,32.46415513700009],[-103.54518375499998,32.46186483600019],[-103.33916954899985,32.40183774900015],[-103.30924215099998,32.30878498300018],[-103.3490395799999,32.22060610199998],[-103.23397550699991,32.177010784000174],[-103.16021605299989,32.19382303100002],[-103.0897440789999,32.08363707900003],[-103.10726602999989,31.966981794],[-103.04544712899991,31.74149448500009],[-102.95436748499998,31.719291863000137],[-102.9111827029999,31.615245727000115],[-102.80610997499997,31.4977105480001],[-102.85383858699998,31.40068741200008],[-102.78913393199997,31.362100641000154],[-102.63318110299997,31.368112653000026],[-102.48324430399998,31.340655718000107],[-102.39437362399991,31.367429386000083],[-102.34208850199997,31.426159851000136],[-102.24878245799994,31.408362451000187],[-101.99233794399993,31.24696265900019],[-101.81189820999992,31.308527671000036],[-101.70106906199999,31.413089608000064],[-101.47944764499994,31.46162499600007],[-101.35099531199995,31.61107271300017],[-101.26663560499998,31.61715582300002],[-101.25751179199995,31.68624610100011],[-101.35057477099997,31.781444734000047],[-101.49370659799996,31.76608161000007],[-101.54515379299994,31.858487142000115],[-101.44345770199999,31.931134364000172],[-101.41471984699996,32.150735576000045],[-101.18928129899996,32.068077359000085],[-101.15263452899995,32.02767457300007],[-101.02714542099994,32.01231171400019],[-100.94792850799996,32.035683094000035],[-100.83741147199999,31.97596536000009],[-100.76873176599997,31.986410274000093],[-100.72297573599997,31.886052120000045],[-100.53076776899997,31.817827261000048],[-100.45809386499997,31.745616858000062],[-100.30364969299995,31.708839055],[-100.18220077399991,31.694174469000075],[-100.07982198199994,31.723284215999968],[-100.08181216599996,31.783776383000145],[-100.15791359299999,31.831489891000047],[-100.15404008599995,31.895505446000072],[-100.21311850799992,32.006085540000186],[-100.49571926499988,32.01133983400007],[-100.55470318299996,32.080015064000065],[-100.67595454199983,32.07841721200003],[-100.64239893099995,32.152762973000165],[-100.66265546499989,32.254243003],[-100.51032789599998,32.36114257800017],[-100.47201915099993,32.41928181100019],[-100.50124631599994,32.53617550900009],[-100.56459389999992,32.50182359700017],[-100.67538496099996,32.627288078],[-100.63467544599996,32.74556607700015],[-100.65799152599999,32.802341359000025],[-100.58867202399989,32.9103250070001],[-100.5289226729999,32.879710434],[-100.37698966199991,32.966727602000105],[-100.34540611199998,32.942515637999975],[-100.07086096899997,32.98705982400003],[-99.98265656099989,32.978210322],[-99.98921500499995,33.060450544000105],[-100.05307109799992,33.09188346299999],[-100.02485230399992,33.16528360600006],[-99.94497772299991,33.24321482200014],[-100.01713693999989,33.323606199000096],[-99.98959017999994,33.416230603000145],[-99.79895496899991,33.510567387000094],[-99.66571943599996,33.54080411000018],[-99.62308321999996,33.61994818700009],[-99.5156182579999,33.68359036900006],[-99.47366747799998,33.63871684900016],[-99.32831155399992,33.67758735400014],[-99.22686064599992,33.63167715300017],[-99.14532345399994,33.69715446000015],[-99.165673874,33.81361400600019],[-99.26851021099998,33.862908195000045],[-99.36726675699998,33.950922899000034],[-99.53871735299998,33.920061718],[-99.6283831099999,33.88103981000006],[-99.76684814699996,33.86181193800019],[-99.78824910599991,33.93720042000018],[-99.758205079,34.01765084300007],[-99.65834368299994,34.13396478700014],[-99.9488912939999,34.26052102200009],[-100.05410910799992,34.25391432700013],[-100.18520627599997,34.4346765790001],[-100.10872162399988,34.48638159899997],[-100.11659055599995,34.55137994600017],[-100.0003902599999,34.57785484500016],[-100.03313957199987,34.64187346000011],[-100.14997287599994,34.65785732600011],[-100.19330864899996,34.71670290100013],[-100.30110886699998,34.77294207900019],[-100.3784977499999,34.88504220500016],[-100.51904888699988,34.91236682000016],[-100.62487207599997,34.83625465200015],[-100.81831312199995,34.818377512000154],[-100.9857827219999,34.91801126600018],[-101.00682491299995,35.02060856700018],[-100.90138212999994,34.989592600000094],[-100.55157927699992,34.980867934000116],[-100.36734979,35.027085062000026],[-100.29026122299996,34.97001614200019],[-100.08194838699995,34.91450083200016],[-100.04299464599995,34.862058504000174],[-99.79222596399995,34.80956363700017],[-99.75593815299999,34.89120088200019],[-99.81023262899993,35.006212404000166],[-99.65740975199986,35.04390235200003],[-99.66129568799994,35.14891268300005],[-99.76230581999988,35.16374592600016],[-99.920051818,35.12751478000018],[-100.05027694899991,35.21299605100006],[-100.325269516,35.172847294],[-100.40047300599997,35.20116034500012],[-100.54777833399993,35.16681098200007],[-100.63417225199998,35.21865756000017],[-100.54754544199994,35.30496737599998],[-100.55101723799999,35.35589466000005],[-100.39504135299995,35.37098922600018],[-100.32378151299997,35.411909586000036],[-100.38109762699992,35.47081504400012],[-100.3714257769999,35.57237836500019],[-100.18080995999992,35.665858031000084],[-100.09388565899991,35.642421568000145],[-99.99147486599998,35.70709749600019],[-99.95147313599995,35.91838487100006],[-99.80347266899997,36.083960360000106],[-99.78579198499989,36.15090471400009],[-99.6639906669999,36.212219584000024],[-99.59337756799988,36.334572660000106],[-99.57085161799995,36.43418614300015],[-99.5956203799999,36.53929356599997],[-99.65210864599999,36.56561592500003],[-99.77183689299989,36.534823077],[-99.82129787599996,36.56628477800018],[-99.87862206299991,36.70204193100011],[-100.08600690899993,36.80769221600008],[-99.98259856399989,36.846805332000145],[-99.97225400499991,36.92453152200011],[-99.86836013599992,36.92063577800019],[-99.75693372699993,36.95936141200019],[-99.53758690399997,36.95888045200019],[-99.4607519349999,36.99451250200019],[-99.28787280399996,36.991406809000125],[-99.22794060599995,36.941749469],[-99.04274407799983,36.89586596200013],[-99.02934475899997,36.99960637600009],[-98.78927494399989,37.00221095300003],[-98.62725399199996,37.05311726800005],[-98.4677107149999,37.00346533300012],[-98.39019193899998,37.08309692000006],[-98.39246440499994,37.20330977200018],[-98.29471612899988,37.35229970600011],[-98.37285796699996,37.37922950400019],[-98.52065960399989,37.382532390999984],[-98.60611920099996,37.48439956500005],[-98.73974452399995,37.53437197800008],[-99.20265109899992,37.57889092700003],[-99.35958000799991,37.50532416700014],[-99.4957162529999,37.50533758800009],[-99.74237682399996,37.43429691500006],[-99.83523788199994,37.4959520970001],[-99.95687639899995,37.43494762900008],[-99.84525510299994,37.35796408900006],[-99.97829173999997,37.3320073160001],[-100.06460797699998,37.36328543299999],[-100.24209665899997,37.25208183300015],[-100.26520404199988,37.340553685000145],[-100.32494586899998,37.35542466200019],[-100.38865775499988,37.543062293000105],[-100.22610263299998,37.641444949000174],[-100.1205663739999,37.73194385400012],[-100.00013007799998,37.73494300900006],[-99.98914072899993,37.850454890000094],[-100.03892473299999,37.98372868300004],[-100.19021089699999,38.05974956700015],[-100.48906904499995,38.06820303300009],[-100.59707524099991,38.034160713000176],[-100.64187203699998,38.13462275200004],[-100.61816028099997,38.20154549000017],[-100.51708116299989,38.25814795300005],[-100.39204282799994,38.36717141000008],[-100.42657691699992,38.63110961400008],[-100.55262950999997,38.61603227000012],[-100.784372309,38.66638792700019],[-100.9611372739999,38.662037855000165],[-101.04123768499994,38.68952845500013],[-101.26959984099994,38.855131460000166],[-101.2887519279999,38.92833502500008],[-100.96518759899999,38.95276296800006],[-100.8286176229999,38.991895397],[-100.67942305699995,39.061264631000086],[-100.60598025099989,39.045236821000174],[-100.37269096099999,39.06205787100015],[-100.34292907799994,39.14020857500009],[-100.53122025299996,39.208988971999986],[-100.60648069099989,39.294970813000134],[-100.56813976099994,39.34487088200018],[-100.42002351999997,39.39090088200004],[-100.43250058399997,39.477193125999975],[-100.56677270499983,39.49706712400018],[-100.6166848439999,39.59093414900008],[-100.70166236899996,39.62568778100007],[-100.95477056699997,39.50187484600008],[-101.03556706299997,39.53239102800006],[-101.04287295599994,39.67959519700014],[-101.1215178199999,39.69593319700016],[-101.29604356599998,39.619475074000036],[-101.35919728599998,39.66978614400006],[-101.31641457199999,39.830692456000065],[-101.2121814649999,39.87265590000004],[-101.16676972399995,39.939296406000096],[-101.29100856199994,40.04709282200014],[-101.26070422499987,40.09392061200009],[-101.13739009999995,40.133729684],[-101.04977568699991,40.25498163600014],[-101.11260486499998,40.37677602400015],[-101.10909503599993,40.470945835000066],[-101.20103124499997,40.66713718600005],[-101.14276935699996,40.70710304600016],[-101.16713576999996,40.816155674000015],[-101.29968976299995,40.904266704],[-101.24626682199982,41.09969558800009],[-101.14677626699995,41.13755763400019],[-101.07418238599996,41.21766000900004],[-101.36897667699992,41.18284513600008],[-101.59829546599997,41.248434047000046],[-101.73832268199993,41.25376577500015],[-101.95443561199994,41.29708385900011],[-102.18319223599991,41.37694735600013],[-102.26225429199991,41.37320480400007],[-102.37542389299983,41.46641313000009],[-102.55258952399998,41.55823978400002],[-102.70337763999993,41.59987291500016],[-102.79536043999991,41.688060742],[-103.24649254699989,41.90321051000018],[-103.38179765699994,42.00002267500008],[-103.42512737399994,42.09607024000013],[-103.37699903799995,42.13340920500019],[-103.18717478999997,42.06018961700005],[-103.1014189959999,42.08512632500009],[-103.01091011599993,42.0491120050001],[-102.74975368299988,42.06811374700004],[-102.77640728599988,42.27248828000012],[-102.72681296699989,42.30137879700004],[-102.69830105299991,42.407544236000035],[-102.5317088079999,42.491287047000185],[-102.44636790299995,42.623629490000155],[-102.34911976099988,42.66444010500004],[-101.98205467599996,42.75034203300004],[-102.15318931199994,42.943971239000064],[-102.29972257399999,42.99194748400009]],[[-105.80383480899997,34.17328498],[-105.86938204599988,34.23927059900018],[-105.79200198499996,34.31019514400003],[-105.66105693699996,34.255793641000025],[-105.692500839,34.16645734200017],[-105.80383480899997,34.17328498]]]},"properties":{"objectid":796,"eco_name":"Western shortgrass prairie","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Nearctic","eco_biome_":"NE08","nnh":2,"eco_id":402,"shape_leng":74.17527384,"shape_area":49.3113559732,"nnh_name":"Nature Could Reach Half Protected","color":"#E7BD33","color_bio":"#FEFF73","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":488076.59959354583,"percentage":4.6065397277037246}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-122.8454431859999,45.995031925000035],[-122.90451351499996,45.77204279200009],[-122.87720298199997,45.66366407800018],[-123.16420977999996,45.733865241000046],[-123.28277757499995,45.63404763800003],[-123.32198173399996,45.40876547800008],[-123.39804872399998,45.367709215000104],[-123.35060990499983,45.22188610000012],[-123.5187395019999,45.18484799200013],[-123.66010511099995,45.03860395300012],[-123.52231825799998,45.02811519900001],[-123.41491115799994,44.95621168100007],[-123.49403610199994,44.54016466000013],[-123.42477769399989,44.41745081200003],[-123.41222578599996,44.23359564100008],[-123.50508860599996,44.10396360400017],[-123.46526635899988,44.025586359000044],[-123.3290893329999,43.93701800700006],[-123.39120184899997,43.886117151000064],[-123.40485868499997,43.785479661000124],[-123.29296719899997,43.667588162000186],[-123.12416885599987,43.605579323000086],[-122.95635990099998,43.77378943700012],[-123.00171184399989,43.868563359],[-122.889612237,43.92016426600014],[-122.76516473299995,43.85488757000013],[-122.65769747399997,43.911872582000115],[-122.76274924499995,44.01087818800016],[-122.77179456799996,44.08819040500009],[-122.91992966599997,44.187081623000154],[-122.91799083599994,44.30009253900016],[-122.72400442299988,44.32768009900013],[-122.65124496599998,44.38139139200001],[-122.72690104799995,44.551557210000055],[-122.70187641099989,44.6721078330001],[-122.61103807699993,44.712616193000144],[-122.5818107849999,44.80238846900011],[-122.7202956299999,44.87102092300012],[-122.70265312399994,45.006656988000145],[-122.50603847699995,45.08234241100007],[-122.37519456099989,45.17798915200018],[-122.34757873599995,45.283334872000125],[-122.2601798579999,45.45277888099997],[-122.3102737719999,45.539158388000146],[-122.2003178029999,45.564230090000194],[-122.19218684099997,45.62173827200007],[-122.35437695899998,45.63520069700013],[-122.45481130799988,45.69771913400007],[-122.46387055399998,45.81655309700005],[-122.59983295799998,45.9538841640001],[-122.74687676199994,45.93941276800018],[-122.8454431859999,45.995031925000035]]]},"properties":{"objectid":799,"eco_name":"Willamette Valley oak savanna","biome_num":8,"biome_name":"Temperate Grasslands, Savannas & Shrublands","realm":"Nearctic","eco_biome_":"NE08","nnh":4,"eco_id":403,"shape_leng":12.1425449311,"shape_area":1.69530922012,"nnh_name":"Nature Imperiled","color":"#A87001","color_bio":"#FEFF73","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":14885.263261190528,"percentage":0.14048933431167435}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[179.58358772000008,70.88449529500014],[179.99998474500023,70.9958829090001],[179.99998860100004,71.53457257200012],[179.47302270600017,71.41924127200019],[179.2241207500001,71.3111866380001],[178.84912060400006,71.20618469300007],[178.61773665800013,71.03422324300004],[178.79101574300023,70.79507312800013],[179.09551972400016,70.86615367900009],[179.58358772000008,70.88449529500014]]],[[[-179.71673559399997,71.57659859600017],[-179.99998860099998,71.53455782000015],[-179.99998474499992,70.9958911240002],[-179.27444469099993,70.90643878200007],[-178.88504074699998,70.97060560400007],[-177.93890358599992,71.03617639400005],[-177.620025646,71.11532922100002],[-177.43945262999998,71.22562551100015],[-177.71502663999993,71.30146614500006],[-178.082214684,71.46202854100005],[-178.58917264099998,71.56423880900007],[-178.9686275999999,71.582855016],[-179.21722361699995,71.565932121],[-179.71673559399997,71.57659859600017]]]]},"properties":{"objectid":801,"eco_name":"Wrangel Island Arctic desert","biome_num":11,"biome_name":"Tundra","realm":"Palearctic","eco_biome_":"PA11","nnh":1,"eco_id":783,"shape_leng":9.53132523407,"shape_area":1.89435031987,"nnh_name":"Half Protected","color":"#59B4AF","color_bio":"#9ED7C2","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":7548.005772698904,"percentage":0.08833081824306446}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-108.65156370499994,45.231718902000125],[-108.76219907299992,45.20923674300002],[-108.86321537299995,45.247650021000084],[-108.9475754469999,45.19858096000007],[-109.07226439599998,45.21038277800011],[-109.00853735099997,45.17437574100006],[-109.04914017899983,45.087474849000046],[-109.21670122999996,45.11384163300005],[-109.21468872399998,45.04128208200012],[-109.30782541499997,44.99919078],[-109.28319082899998,44.82663147400001],[-109.33420148699997,44.76039954400005],[-109.26298849399996,44.66838397700019],[-109.27090819099993,44.609139777000166],[-109.17158660099989,44.55117506100015],[-109.20086434499996,44.50808976400009],[-109.52461926099988,44.48798678800017],[-109.32721521299993,44.39738105300006],[-109.49126409099983,44.326251868000156],[-109.55308220899991,44.26407057900002],[-109.473027963,44.22936174400013],[-109.19469955499994,44.34516688500014],[-109.13211645299998,44.31407703200017],[-109.16493799199992,44.23243845800016],[-109.3169654109999,44.127546216999974],[-109.23946713599997,44.05882301600019],[-109.14075472299999,44.038481583000134],[-109.10704536599991,43.946429823000074],[-108.93421785999993,43.865000458],[-108.96920702499995,43.751633497000114],[-109.03214254499994,43.67282623800014],[-109.11961578099994,43.66873935600006],[-109.19630796799999,43.59878183200016],[-109.47008165199992,43.68912594700009],[-109.52911185799991,43.658095694999986],[-109.73034354099991,43.65641002900014],[-109.80540211099998,43.60322645500014],[-109.63431785299991,43.490699230000075],[-109.51585641099996,43.45013987800007],[-109.387557373,43.301621364000084],[-109.27974170299996,43.22844235500003],[-109.23932445099996,43.15281467700015],[-109.14170110199996,43.119005955000034],[-109.08071634599997,42.98035161500013],[-108.93662552399996,42.886794407000025],[-108.88700234199996,42.78037330200016],[-108.79839192199995,42.74055787300017],[-108.7574701819999,42.66635017800007],[-108.56675919599996,42.54367371600006],[-108.89656836199993,42.48185815400012],[-109.03444369199991,42.50995449300018],[-109.06964000199991,42.55151916900002],[-109.32044193599995,42.587248398000156],[-109.40066479099994,42.67112362400019],[-109.55332334699989,42.76607318400005],[-109.61059861099983,42.82993638900007],[-109.75775936399992,42.89820796000015],[-109.88309639699997,43.04939868800011],[-109.98690924399995,43.071512518000134],[-109.97410644499996,43.188566544000025],[-110.12159989799994,43.189182025000036],[-110.19639352799993,43.08641388900003],[-110.38603597799994,43.02216699000007],[-110.36169059599996,42.93981968700007],[-110.44148709599989,42.88527740000018],[-110.46537117999998,42.817023216000166],[-110.37239787999994,42.610201276],[-110.43595899099984,42.589294902],[-110.35835834499994,42.34503116600007],[-110.42284190099997,42.223622983999974],[-110.51488552199999,42.16381482300011],[-110.76757095499994,42.13609528600011],[-110.78091084399995,42.002940049000074],[-110.85678579799992,42.01500500600008],[-110.83931062599999,42.21119152900019],[-111.02157826499996,42.23987056500005],[-111.04809314299985,42.4199638070001],[-111.11870629299995,42.44386893000012],[-111.17973421699998,42.344823542000086],[-111.27327547699991,42.3697969430001],[-111.31980221699985,42.45945018500015],[-111.41600216199998,42.27301091000004],[-111.39234256299989,42.04882280100014],[-111.41040763199999,41.989224273000104],[-111.36309200599999,41.89451885300019],[-111.38570502099998,41.80703583900009],[-111.34004357599997,41.76739244300006],[-111.32033750499988,41.437750769000104],[-111.27434567699993,41.39556339800015],[-111.26114173099995,41.24232675500008],[-111.21180345299996,41.14262771200009],[-111.08249229199998,41.18280118100006],[-111.07660307199995,40.962225418000116],[-110.9836268869999,40.95347983400018],[-110.84102813399988,41.00646521600015],[-110.77559718999993,41.06743761200016],[-110.64661790399992,41.08373501300014],[-110.52805726699995,41.128139358],[-110.48831772799991,41.05853607700004],[-110.31112374499997,41.10234279800005],[-110.19840202699993,41.06892729900005],[-110.29699645599993,40.990946895000036],[-110.207065721,40.93193987200016],[-110.001632,40.9437032350001],[-109.87881687499993,40.992240810000055],[-109.71097445899994,40.93696493700003],[-109.61428258099988,40.97490658600003],[-109.53761986599989,40.948421335000035],[-109.38252668899992,40.972278691000156],[-109.321700508,40.90700213500014],[-109.2473347369999,40.89676178900015],[-108.94720232099996,40.78413840600018],[-108.80600049799995,40.614199311],[-108.64635622299994,40.56449763400019],[-108.45958585699998,40.57318146799997],[-108.3766255029999,40.55529325900005],[-108.31102993299999,40.44266102200004],[-108.22194042799987,40.40232508700012],[-108.00264196199998,40.479107305000184],[-107.96330322799997,40.28904719700006],[-107.8400720489999,40.259181438000155],[-107.78052860399998,40.287733446000175],[-107.68956984499994,40.203195789000176],[-107.63499252799994,40.28612028800012],[-107.6375343329999,40.42178773600011],[-107.42532631299997,40.45969451800005],[-107.32760090399995,40.38909071300009],[-107.24333668499997,40.43178467600006],[-107.13959551299996,40.40214666800006],[-107.16979261599994,40.53672935000003],[-107.2884398,40.57666362200018],[-107.33046593499995,40.675300714000116],[-107.43864002399994,40.68576625900016],[-107.51278674299994,40.73127611400008],[-107.5455394569999,40.84872986000016],[-107.5048671649999,40.96033464100009],[-107.38495640799994,40.98469942700001],[-107.47889434099994,41.1229479050001],[-107.49847109999996,41.30307720200017],[-107.460497106,41.35581952600012],[-107.4812985349999,41.45420367600008],[-107.40002880599991,41.54316580300008],[-107.31767290899995,41.530780363000076],[-107.28771938299997,41.46678814700016],[-107.14660555899997,41.351523402000055],[-107.02264134799998,41.32409975600018],[-106.83632550399989,41.188300136],[-106.77060031699995,41.18899563800005],[-106.58990779399988,41.113167400000066],[-106.50583760599994,41.11682315200005],[-106.6099214759999,41.25835249100004],[-106.57028405499989,41.3729304420001],[-106.64420630799998,41.481579199000066],[-106.61553706899991,41.60304410800006],[-106.65721490599992,41.669475493000164],[-106.55790911199995,41.72770894000013],[-106.48011106699983,41.59961704400001],[-106.2499888609999,41.618328548000136],[-106.16277108799994,41.577361745000076],[-106.02035935999993,41.41813825100007],[-106.07162108499995,41.31030524700003],[-105.98660117999992,41.2099985750001],[-105.98551585299998,41.04789023900008],[-106.08142731099997,40.97018706799997],[-106.04462051799993,40.914152174000094],[-105.87868526599993,40.816448347000176],[-105.80246672599992,40.92431189000018],[-105.7095181439999,40.967922774000044],[-105.66413531499995,41.045421138000165],[-105.49401716199998,41.063657401000114],[-105.53890663699997,41.21007689400011],[-105.49540406099999,41.41342648400018],[-105.54010966299995,41.65499888300013],[-105.50411163399997,41.76540772200008],[-105.43248925599983,41.83678256500008],[-105.49274206899997,41.871805764000044],[-105.48299812,41.97613023100013],[-105.63935527299998,42.05635376100014],[-105.69796305399996,42.13830099500012],[-105.66470220199994,42.19048441400008],[-105.78406584599998,42.21863189000004],[-105.88816284299998,42.310613734000185],[-105.94975930499993,42.40323033600015],[-106.10756383799998,42.44953733600016],[-106.27284827899996,42.39430620600018],[-106.41261075699987,42.459053291000146],[-106.39708966499995,42.57091795499997],[-106.422382659,42.650004343000035],[-106.57099171099998,42.74843581300007],[-106.40252673999993,42.76913401300004],[-106.536478188,42.85721220500017],[-106.57775192599996,42.9997314470001],[-106.67425564299998,43.062263393000194],[-106.72851422999997,43.20269602500014],[-106.9069736329999,43.32912618600017],[-106.82519777099998,43.37531588500019],[-106.75574362999998,43.51409353500014],[-106.80901871799989,43.62177000700018],[-106.69169972799995,43.66096161200011],[-106.667692521,43.726673793000145],[-106.817900652,43.850308814000186],[-106.81244869999989,43.905840969999986],[-106.91250873199994,43.935401125000055],[-106.96513482199992,43.81507881600004],[-107.0638501649999,43.714895378],[-107.12875340499994,43.725945454],[-107.11049530899993,43.87308975999997],[-107.18878564199997,44.003287508000085],[-107.31190606999996,44.06411660100002],[-107.39584354199985,44.24093249700013],[-107.4799793389999,44.30518698500015],[-107.51930744799989,44.436252753000076],[-107.62110673999996,44.49400842200015],[-107.62932392599987,44.56160332200011],[-107.79053642799988,44.644495126000095],[-107.8321026459999,44.73029205600011],[-108.01260210399994,44.82281129300003],[-108.02364109599989,44.91722111200011],[-108.1095108259999,44.99065996400009],[-108.27529166599999,45.03031439000017],[-108.43855842699992,45.041654569000116],[-108.61907148099993,45.10935701200003],[-108.65156370499994,45.231718902000125]]]},"properties":{"objectid":802,"eco_name":"Wyoming Basin shrub steppe","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Nearctic","eco_biome_":"NE13","nnh":2,"eco_id":438,"shape_leng":39.080209563,"shape_area":14.5201229934,"nnh_name":"Nature Could Reach Half Protected","color":"#B57C47","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":132764.01729507963,"percentage":0.503233712569532}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[67.16505463300001,68.73637846500003],[67.66199453900003,68.53216613400002],[67.69912754300003,68.55146211400017],[67.40099364100007,68.69708410300007],[67.16505463300001,68.73637846500003]]],[[[66.88352963900007,70.42513313800009],[66.82543148300005,70.58194882300012],[66.69309950400003,70.57415180900017],[66.59992258099999,70.45907867200015],[66.88352963900007,70.42513313800009]]],[[[77.69270357400006,72.33245012700002],[78.36020649200009,72.51295742900004],[78.1312864900001,72.62176693800012],[77.65985858300019,72.64792937200014],[77.33146651300007,72.56711424700012],[77.20884664500011,72.45864789300009],[76.9278336180002,72.39333694200019],[77.1081234940001,72.3104610420001],[77.69270357400006,72.33245012700002]]],[[[84.50229650100016,69.65130058100016],[84.46040358100015,69.59801380500011],[84.24297366000008,69.59454252300014],[83.8983996550001,69.71651212300009],[83.48384061400003,69.75074783900004],[83.33696754200008,69.84901995400008],[83.39337154800012,69.89084699199998],[83.29210659000017,70.00043450900017],[83.13076752700016,70.07154339000016],[82.71777355500012,70.13463498100015],[82.61466256700015,70.22904639200016],[82.67252351500014,70.30856500400012],[82.94819660000019,70.50027220600003],[82.93509652300014,70.60296208700004],[83.08130658700009,70.88632674100018],[82.80333753100001,70.99953037800003],[82.50126664900012,70.93199855800015],[82.40524256000003,70.66329854600014],[82.29525757300001,70.70182881400012],[82.30108651700004,70.862071357],[82.11139650400008,71.01231797700018],[82.29955262800007,71.13721839300018],[82.19286357400017,71.26887948400008],[82.728469534,71.39015539700011],[83.00845359900012,71.41026039800016],[82.96634660500013,71.55116840500006],[83.28415652300004,71.59624561000004],[83.41323062300006,71.65121899200005],[83.346610586,71.73822214100011],[83.13577252900018,71.73964153300011],[82.79759961600018,71.78570981400003],[81.98680152500009,71.67497045600004],[81.78132654400008,71.6715905370001],[81.3695836550001,71.74605771200015],[81.13596358500007,71.9151047740001],[80.70802250000008,72.08491492400003],[80.64395156799998,72.17645100600004],[80.00517259400004,72.25831085200008],[79.51924852000019,72.39535899200013],[78.70581063300017,72.43099029500019],[78.12481649900008,72.40494168700013],[77.5310215230001,72.19338848600012],[77.60999262900003,72.11081869300006],[77.86460852900018,72.15359942400005],[78.09024852400012,72.14382461600007],[78.26378661000007,72.07134948400005],[78.21611051200011,71.97142026700004],[77.78061649500012,71.87526944400014],[77.54107662100017,71.89828095300015],[77.28373760900018,72.01400318500015],[76.79743148900019,72.09266684300007],[76.32084653200008,72.03406225200007],[76.0473936460001,71.92559556400005],[76.03724651400006,71.79032623100017],[76.2547305830002,71.6018613170001],[76.499076639,71.52357115600006],[76.92375163100002,71.43618629500003],[77.1729436010001,71.41169487700006],[77.37355054,71.33558719600018],[77.52736651000009,71.35331140100004],[77.92569751600018,71.26151698800004],[78.33936354800005,71.28812936300005],[78.43987262600018,71.23479715700017],[78.34838851100005,71.10766061700008],[78.49548353600017,70.94985217900006],[78.85118854100017,70.98114215900011],[78.96260063000017,70.92524626400012],[78.49031056100011,70.91126810000014],[78.06139365500019,70.98480471500011],[77.97016854100008,71.10723364300009],[77.44082654500016,71.18377634500018],[77.05841059400018,71.17370498500014],[76.66078953500016,71.229768686],[76.08399155000006,71.2058946790001],[75.414039607,71.33017014000012],[75.19715853300016,71.42240745200013],[75.41275751100017,71.48016463200003],[75.50708057700007,71.56102669600011],[75.37812063799998,71.6296414590002],[75.44165764300004,71.70668020200003],[75.20034751200012,71.80769956900002],[75.25289953000015,71.98348400500004],[75.35954265200013,71.97705961100019],[75.46401251400005,72.22055809000017],[75.59813654400011,72.30188551700013],[75.47503656100014,72.49451606900004],[75.64514158600014,72.56829643000015],[75.29382350200012,72.68861211300015],[75.52635157800017,72.73491793700009],[75.41206349000004,72.80611248100018],[74.95497148700002,72.8869735400001],[74.69096349700015,72.80545651400013],[74.94776154200008,72.68568280500006],[75.023780542,72.59484929400014],[75.02218663900004,72.32087555700014],[74.878967574,72.11058198800009],[74.35540758200011,71.97171011300003],[74.22914862800019,71.99427251999998],[73.78427861300014,71.89405395900019],[73.54044351800019,71.81116364200005],[73.51513654000007,71.67173520900013],[73.15386964000004,71.5026500940001],[73.07232663000008,71.43663740900007],[73.51019255800014,71.30974461500006],[73.75137360800011,71.14803021000006],[73.82331062200018,71.04160887300003],[73.99588059700005,70.96806555200004],[74.12890659800007,70.76499668100018],[74.30444359900014,70.70388891800002],[74.42149352400014,70.59592665300005],[74.27852658699999,70.43723476200006],[73.94085658800003,70.28202856900015],[73.72276265200003,70.15403690800008],[73.86195354200004,70.08449929800014],[73.82253261400012,69.974393109],[73.55293255300018,69.78802719100008],[73.62741062500015,69.6703675660001],[73.79486864500012,69.58234266300002],[73.9061965800002,69.42004018400007],[73.87962360000012,69.27265514500016],[73.81226360900018,69.20845043700018],[73.89842253300009,69.09672620599997],[74.26640350500003,69.16209197500018],[74.76170357500013,69.13254928700007],[74.98702254400013,69.09136296100007],[75.25002252600012,69.09707740800008],[75.20448264000015,69.17925895100018],[75.52001150600017,69.2536801930001],[76.20984649700011,69.2311337110001],[76.55245963900006,69.12352264700013],[76.78350864500015,69.115442325],[76.91506160900008,69.00638203000017],[77.63884749900006,68.90855298200006],[77.80077363100008,68.68211553200013],[77.74815355100014,68.62970567100007],[77.87339762500017,68.471196841],[78.12912764700008,68.29465820200005],[77.76537350100011,68.24495770700014],[77.51579261000012,68.15196585600017],[77.5164334910001,68.01119514500004],[77.61736250100017,67.96738478100019],[77.48535155000008,67.90093674000013],[77.49310263100006,67.81809269100012],[77.59642065200018,67.77091012000005],[77.80332960800013,67.79442504700012],[77.99825261100011,67.76658371700012],[78.06678757700007,67.69181194400005],[78.32421862300004,67.69094994900007],[78.41359753900014,67.64555255600004],[78.91929653300014,67.64477438000017],[78.93596663000017,67.59023652100007],[78.566398628,67.53990989800008],[78.24627664600007,67.5671792460002],[77.99550653200004,67.55771775400018],[77.73087358700019,67.58757325500017],[77.53655961400011,67.68322049300019],[77.37557963100011,67.71529602500004],[77.14791859100006,67.8330393010001],[77.31951157200007,67.88637938600004],[77.24623161000011,68.0062737940001],[77.27429958600004,68.19268581200015],[77.37625856500017,68.27042595200004],[77.20990762700018,68.30574394000013],[77.29029058100002,68.38119464700003],[77.26978257800005,68.5649821240001],[76.67806949900012,68.75794744900014],[76.69896659000011,68.90575258800015],[76.57218963400015,68.96927836200007],[76.11369349500012,68.97330620200012],[75.77088958000013,68.90406682000014],[75.36786655200012,68.8865327170002],[74.73697662500018,68.78196579200011],[74.56852752900011,68.72284269700009],[74.47720350900005,68.63223180900019],[74.49510155400009,68.51891334000004],[74.34741258800011,68.35759657200003],[74.65325951800003,68.19817897600007],[74.765502589,67.906056407],[74.76839451300003,67.72541382000009],[74.59087351500006,67.62499727900007],[74.14540050700015,67.49884678600012],[73.92360663099998,67.30102113100008],[73.9925536520002,67.19590603000017],[73.84559659400009,67.01346921300012],[73.65194663400013,66.93537116600004],[73.4724195120001,66.82446450500015],[73.15373251200003,66.76036624700009],[72.94303158200012,66.66265219900015],[72.6036525130001,66.63197275700009],[72.38156862400007,66.54672528100008],[72.46202064600016,66.36497578100017],[72.235946635,66.2783774770001],[72.49474359600015,66.17297236300004],[73.29567752800006,65.92863703500018],[73.97786755200008,65.6987666930001],[74.41739661800005,65.56186573900015],[75.0343625270001,65.53151436500008],[75.31877156600018,65.60711007900017],[76.39325762600009,65.81218306300008],[76.686561541,65.78122148600005],[77.59718357200006,66.03342390100005],[78.319633554,66.21856019300009],[78.99358349700015,66.12542367000003],[79.89704855700018,65.9319711890002],[80.3800426520001,65.94404062600006],[81.4333265200001,66.26541486400004],[82.06247753800017,66.3446500010001],[82.97139754000017,66.34719793200014],[83.57875058000013,66.3310002390001],[84.08228251700018,66.20956507000005],[84.64459255100013,66.2792934520001],[84.91783857100017,66.39686858700003],[84.97109953100005,66.61443982700018],[84.92671165400009,66.7488986300001],[85.28320355100004,66.79753093500005],[85.45250659600015,66.91577813200018],[85.410789529,67.00949401200012],[85.11588265900008,67.10844506100005],[84.66589364900005,67.29092680500014],[84.75183062000019,67.5374767990001],[85.4052276330001,67.72895366600005],[85.83374053100005,68.14198485300005],[86.34880864900003,68.33260140100003],[86.19541160700015,68.4857236850001],[86.08886755900016,68.78076868900013],[85.92333251500014,68.94504611200006],[85.930618568,69.10957482500004],[85.84355959600003,69.3073562240001],[85.981170497,69.47244954200016],[85.86462365400013,69.60472100400006],[85.6677096140001,69.70403029500011],[85.25923952300019,69.77029510699998],[84.9969025490002,69.77029510699998],[84.78610958600018,69.73715926500012],[84.50229650100016,69.65130058100016]]],[[[65.40500650900015,66.74330622400015],[65.26673863399998,66.55610949300006],[66.75454757200015,66.61733862500006],[67.86102249500016,66.59953780900014],[68.57563053500019,66.50938541099998],[69.41986856400007,66.44668274100019],[69.91491650700016,66.44388301700013],[69.71633949700004,66.51727362000014],[69.4547724860002,66.53447144200004],[69.17176858900001,66.62354911200009],[69.08421357500004,66.78262221200009],[68.8662495590001,66.79563880500018],[68.49118051400012,66.68932542700014],[68.28444657100005,66.68396235000006],[68.4610975280001,66.80805290600017],[68.6404575160002,66.79552481100018],[69.08892856300008,66.85164198800004],[69.24298861400018,66.78552939100007],[69.43016053600007,66.78178318300007],[69.5216366040001,66.62732616500006],[69.78180652000009,66.54581701800015],[70.06672652000009,66.6001951180001],[70.03806259000004,66.72240829600014],[69.676666609,66.79681411500007],[69.88339954500009,66.87594313700015],[70.05133851900007,66.79617289900017],[70.26609059000009,66.80896066600013],[70.68459348400012,66.79054260700008],[70.27903761300013,66.59689868300012],[70.5944824930001,66.50884310200018],[70.96695750600003,66.53026758200019],[70.98597755300017,66.61675071800016],[71.3806605870002,66.72375124400008],[71.58315261600012,66.67723302300004],[71.586852556,66.831414779],[71.30338262499998,67.00596975700012],[71.52749661100006,66.97051413900016],[71.67246263200019,67.00029252600012],[71.84393357300013,66.97492452800009],[72.03910048900013,67.09515438000017],[71.94103959800015,67.17247458700007],[72.23697660300013,67.28585357400004],[72.05461857700016,67.33749900599997],[72.22234364400009,67.39705008100009],[72.41188865000004,67.36269232400014],[72.42620862900014,67.51354965000019],[72.5591736090002,67.62170117900018],[72.75602763400008,67.62705755100018],[73.19483954400005,67.86934920300007],[73.20119453600006,67.95605496200005],[73.07714857100018,68.15849586100018],[73.13699351600008,68.24228673000005],[73.44418356200009,68.43422963100005],[73.61608164400008,68.46842695700013],[73.56282755800004,68.54549587500009],[73.33117656400009,68.66555859100004],[72.60324062700016,68.91180314900015],[72.47483054100019,69.09121812200004],[72.46746050100006,69.25049071100017],[72.54206061300016,69.34394122000009],[72.48396262400001,69.4367112860001],[72.57598854500003,69.48632813000006],[72.48885363200009,69.67615108000007],[72.63490259500009,69.82763369500009],[72.4669575870002,69.96269733600019],[72.4455414890001,70.03382901700013],[72.54779064899998,70.15086385400008],[72.46102152300017,70.28271471200014],[72.66187254200008,70.37863687700013],[72.84532155800008,70.38622870200004],[72.87090262300006,70.46775360700019],[72.74709353100013,70.60208433399998],[72.87695351900015,70.7264964200001],[72.83368663800019,70.88818802600008],[72.66909053500018,70.9975162070001],[72.6233295340001,71.08844175200016],[72.73164350500002,71.12337869700008],[72.17949652900006,71.28742763000014],[71.8974765000001,71.43486731900015],[71.971237583,71.58319129800014],[72.16570259800017,71.61875403700014],[72.28922251500006,71.72609067800005],[72.315727601,71.83974442300007],[72.71935261700003,72.09479601400011],[72.85283660400017,72.28851738700018],[72.81098961800018,72.38420335000012],[72.87934152300016,72.50674694200018],[72.77449749300018,72.5199464280002],[72.75729363700015,72.7325148450002],[71.89909353700006,72.87305606000012],[71.5035936020002,72.92153631700012],[70.91744962700011,72.92300164200014],[69.75077855800015,72.8906964460001],[69.6373065320002,73.00992885100015],[69.33357251200016,72.98511623800016],[69.18373861700013,72.81042329400003],[68.98802956000009,72.68864279100018],[68.74845850600008,72.41896544900015],[68.81910655000007,72.29376680500019],[68.73399352000013,72.21991050400004],[68.74492653900012,72.06901428600014],[68.37449654200014,71.72817341299998],[67.99304954000013,71.55199989000005],[67.10196656200003,71.31522319500004],[66.84295653400011,71.13940053800013],[67.04405951400014,71.0850531160001],[66.7069095280001,70.8826645200001],[66.73238364100013,70.78494058100011],[67.19554850000003,70.85190897000018],[67.48876155500011,70.77381746000003],[67.31025652100004,70.57985083300008],[67.38117949200011,70.51134268800013],[67.184768534,70.34600411600002],[67.17059356200014,70.21741868000015],[67.39803348800001,70.12447930000013],[67.33721154800003,70.05658152500007],[67.0599894880001,69.97716332800019],[66.79656253200017,69.86695772900003],[66.83928660100014,69.52853654400008],[67.0499265110002,69.68640583500007],[67.28981758600008,69.62588614700002],[67.55941060499998,69.61504331700013],[67.7824636100001,69.51848127800014],[67.97415958000005,69.48894546300016],[68.19644161700012,69.54922056700008],[68.08582262300013,69.25503035000014],[68.36950662800012,69.07294490200019],[68.53531659800012,68.99463261300008],[69.08122257700018,68.96904920100019],[68.98776251200019,68.91616743800017],[69.10906960600005,68.84218792300015],[68.97181661200011,68.75725342700008],[68.74417853800014,68.49882443200005],[68.58007864400003,68.37987516800018],[68.58690654200012,68.31245013300014],[68.30436750500019,68.19464684200005],[68.13015752700005,68.27430912100004],[68.15505261700002,68.32553612800012],[67.84828954500017,68.18565037800016],[67.29310664400009,68.22223520600011],[67.04427358700019,68.13668246100013],[67.13745151700016,67.99174695],[67.09899853000013,67.81575045200003],[66.93395248700017,67.57810488900009],[67.1399305490001,67.4538155140001],[67.26255762500011,67.26184227100009],[67.11669155500005,67.08520522900005],[66.9182126130001,66.97020903700013],[66.58583059000011,66.88640274600004],[66.31932060200018,66.84853682800014],[65.40500650900015,66.74330622400015]]],[[[79.45361352400005,72.9008898460001],[79.53806254000006,72.9390705880001],[79.3452526150001,73.063712506],[79.12943252200017,73.08835697800004],[78.63789358000008,72.87376667800015],[78.81474251700018,72.75547321300013],[79.36711161300002,72.73440664100002],[79.49313352700011,72.76558966800008],[79.45361352400005,72.9008898460001]]],[[[74.62992061100016,72.86351980100011],[74.64272363300006,73.00814350600012],[74.76071149300009,73.09531529900016],[74.36402853700014,73.14087312200007],[74.09587050000016,73.07330978500016],[74.15541051100001,72.96073864600004],[74.62992061100016,72.86351980100011]]],[[[76.2935565640002,73.23988535900008],[76.27223954000016,73.15337087500006],[76.66616049100008,73.15447661500008],[76.5956495750001,73.22319129000005],[76.2935565640002,73.23988535900008]]],[[[71.0872346320001,73.49574513300013],[70.84418458500011,73.52592920400008],[70.53307348500005,73.48346128600008],[70.35077664600004,73.49759904200016],[69.94779955100006,73.40517967500011],[70.01825749400018,73.22018520400019],[69.82692764600006,73.08141357700009],[70.45816056000001,73.07614923900007],[70.76914962000012,73.14756439500013],[71.12420653600014,73.12975637100016],[71.61155653900005,73.23513986100005],[71.4400866040001,73.36569370200016],[71.22335858300016,73.28934194000004],[70.92693358300016,73.29227258900016],[71.04843161700006,73.38197672300015],[71.0872346320001,73.49574513300013]]],[[[75.90122951600006,73.53349068700004],[75.60184453000011,73.56185840000018],[75.64756060300004,73.45561978900014],[75.87664053200018,73.46962075200014],[75.90122951600006,73.53349068700004]]]]},"properties":{"objectid":804,"eco_name":"Yamal-Gydan tundra","biome_num":11,"biome_name":"Tundra","realm":"Palearctic","eco_biome_":"PA11","nnh":2,"eco_id":784,"shape_leng":140.963637175,"shape_area":93.6971051597,"nnh_name":"Nature Could Reach Half Protected","color":"#5ADEC9","color_bio":"#9ED7C2","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":413060.0072204229,"percentage":4.8338500949794545}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[88.57033552900003,28.101603004000083],[88.679420634,28.145886108000127],[88.63283552500013,28.26157028500012],[88.73604558700015,28.308130417000086],[88.56457565200014,28.36837685400019],[88.4934925870001,28.458039079],[88.40414451700008,28.501826308000034],[88.20598559700011,28.519516650000185],[88.21125060500003,28.744088624000142],[88.10852065900013,28.785251144000142],[88.00942963200004,28.77374446800019],[87.78591159900014,28.659953090999977],[87.74752063800003,28.59813035300016],[87.60962659600017,28.660419963000095],[87.42213465400016,28.689404752000144],[87.28968063500014,28.803526376000036],[87.16308556600018,28.8401076830001],[87.08872266200012,28.789023671000052],[86.85949655300016,28.73952082200003],[86.7929075290001,28.757851206000055],[86.71687360900017,28.68510986500013],[86.60433163900007,28.670366600000193],[86.52500161900008,28.562474071999986],[86.5279235500002,28.507562212000153],[86.61737857400016,28.402374357000042],[86.69019350800005,28.406829171000027],[86.71357750900012,28.52767241000015],[86.75714865300012,28.551724281000077],[86.94693757300013,28.531801335000125],[87.34349060900018,28.55450321700016],[87.41088865400008,28.497167479000098],[87.41841158000011,28.434225086000083],[87.36468458600007,28.37374378700008],[87.47245758899999,28.30895938700013],[87.5307845710002,28.318531017],[87.63294957700003,28.399284452000074],[87.79309053100013,28.41698803700018],[87.8471905200002,28.29469489600018],[87.93464662700012,28.262847185000055],[88.04826366000009,28.05632279000008],[88.07427957900012,28.053957920000187],[88.28101352100015,28.07098810300016],[88.43695866200011,28.061428375],[88.5553136490002,28.09511507600007],[88.57033552900003,28.101603004000083]]],[[[85.01522857499998,29.730851026000153],[84.81092052300016,29.915166227000157],[84.8129196070002,29.835780216000046],[84.90725759200018,29.698923351000133],[84.92184461800008,29.63339698400017],[84.85942860800014,29.590115519000108],[84.70768766200018,29.653072161000125],[84.62777761500007,29.617734392999978],[84.444770661,29.669967396000175],[84.35165358400019,29.72893827600012],[84.24700954600019,29.745680457000105],[84.19556460900003,29.71062985200018],[84.12458061800004,29.772055624000075],[83.995498639,29.711171826000054],[84.01672362900007,29.56727935900011],[84.07803356300013,29.51189140700012],[84.26831064400017,29.525889856000106],[84.384941642,29.479460650000078],[84.48916658500002,29.512385604000087],[84.56025652300019,29.41977613500012],[84.58254266200004,29.26116303400005],[84.53985564100009,29.234049254000183],[84.29510457100014,29.289823946000183],[84.38041658800006,29.138750870000024],[84.57191457700003,29.178988364000077],[84.63477365400013,29.158127316000105],[84.72193153300003,29.036759034000113],[84.83118461200002,29.029628382000055],[84.78455357000018,29.14440362600004],[84.83174150600013,29.171548587000075],[85.10584264800008,28.938761845999977],[85.20297951800006,29.009337135000067],[85.19552649700006,29.151418608000142],[85.08904263200003,29.231421360000184],[85.14838466200013,29.269566731000168],[85.27951065300005,29.276747507000152],[85.38333158800003,29.233718169000042],[85.5555726570002,29.214636096000106],[85.67273758200008,29.162511890000133],[85.85440058100005,29.16528898200005],[86.06659650700004,29.126384378000182],[86.26734962600017,29.160918993000053],[86.28192860600012,29.210148257000128],[86.23444361600014,29.319216934000167],[86.08876764700005,29.24671162700008],[86.00463865200015,29.280978356000162],[86.02346759199997,29.385035326000036],[85.82487465700007,29.33746819300012],[85.6074145610001,29.349986901000136],[85.542549527,29.446540893000076],[85.49811554900009,29.424361874],[85.35869549800015,29.4629553420001],[85.30145263100007,29.531250586000056],[85.07000749700006,29.559653503000106],[85.07161766100006,29.619941348000054],[85.23077357400007,29.616458332000036],[85.24182863300007,29.66082894200008],[85.13144651200002,29.74470346200019],[85.1562115160001,29.84002414100013],[85.07926162100011,29.81994562800014],[85.01522857499998,29.730851026000153]]],[[[92.91843456200019,29.144970578000027],[92.94400758100005,29.479677742000092],[92.90728763600004,29.57397599600006],[92.82376063000004,29.56689228200014],[92.87258957400019,29.480942571000185],[92.8270416420001,29.42042707400003],[92.87267255500007,29.29076808400015],[92.8446505120001,29.171605584000076],[92.7570646530001,29.145525795000083],[92.74130265100018,29.219672949000028],[92.77248366700013,29.388357242000097],[92.65773759100006,29.487969456000144],[92.68907953900003,29.301620469000056],[92.61453256800013,29.223836743000106],[92.54550960700004,29.23695224200003],[92.45469654800019,29.328358573000116],[92.34307859900008,29.314641253000048],[92.3613895370001,29.403041832999975],[92.31762661500005,29.44030039900008],[92.05758661800007,29.352140547000147],[92.01594565800013,29.438301482000156],[91.89850664500011,29.323370670000145],[91.86837755900018,29.36256512000017],[91.92785655000017,29.499927917000036],[91.88212555600018,29.549799067000095],[91.786865562,29.546867245000158],[91.71543163000001,29.47366288800015],[91.82865152900018,29.45556652700003],[91.74448364200003,29.362399326000116],[91.7011565790001,29.442742047000138],[91.52914450300011,29.387204395000026],[91.3058395380001,29.418124062000118],[91.23015564600018,29.456649636000066],[91.08576160500013,29.392652967000174],[91.03385952000014,29.457336449000138],[91.09693954400012,29.530483810000078],[91.29767657000008,29.616206539000075],[91.51213058000002,29.766591629000118],[91.71120463600005,29.78354922500006],[91.862014521,29.75090640600007],[91.78512564600015,29.87169382100018],[91.92511751100011,29.943127250000032],[91.86345654300015,30.014507538000032],[91.72035951900017,29.97897782399997],[91.52025566200012,29.963233424000066],[91.41991455800002,30.00631389200015],[91.23027064500019,30.04365024200007],[90.97123765100014,30.02496798499999],[90.8540725580001,30.072459346000073],[90.72789759000011,30.077788225000177],[90.61732452900014,30.027236128000027],[90.68144960900008,29.833399253000152],[90.70182752400012,29.717725468000026],[90.80763262300013,29.690721826000186],[90.92205851000006,29.59830329700003],[90.85436257200007,29.514148318000082],[90.78256251900007,29.486571522000077],[90.66649662900011,29.525763792000134],[90.45214051900007,29.30165667900019],[90.2883075040001,29.390520108000032],[90.32927657100015,29.513879259000134],[90.25774356500011,29.590559424000105],[90.22341162500004,29.48388964800006],[90.07223561900008,29.5343135010001],[90.08866163400018,29.60125205100013],[89.97277863800002,29.667018642000073],[89.924407513,29.626670172000104],[90.01310766199998,29.46985616300003],[90.1175996520002,29.427231838000182],[90.10577362500004,29.3816535630001],[89.92125658800018,29.388714143000072],[89.78405757300015,29.369426043000033],[89.67148559600014,29.434922401999984],[89.65200756200005,29.529137844000047],[89.55569463300009,29.45871141700019],[89.23962362500015,29.444603165000103],[89.17547557900008,29.486078331000044],[89.13457457300007,29.63857348],[89.14746057600019,29.73860193900009],[88.99017366000015,29.712685765000174],[88.95734358900006,29.64203855900007],[89.00688952200017,29.56765319200008],[89.00463864500017,29.47169213500007],[88.90508259000006,29.43718031900005],[88.81192058600016,29.474302930000192],[88.65406051600013,29.428307572000165],[88.59478755200018,29.523890940000058],[88.6276855160001,29.61488655700009],[88.54745460900011,29.62467511100016],[88.46948262600012,29.54033355200005],[88.47953755700013,29.446739041000114],[88.34629865600004,29.431196646000103],[88.35411059000018,29.550963146000072],[88.31060063300004,29.59106351200012],[88.23620554300015,29.482243610000125],[88.1971356480002,29.56571931899998],[88.03587353000006,29.465163303000054],[87.93582160200009,29.653141228000095],[87.8685605170001,29.62457402600006],[87.96048753100018,29.51520527600013],[87.93061861900009,29.46512038700007],[87.71191364300012,29.532923782000125],[87.690574659,29.627488078000113],[87.71203652200006,29.75154342999997],[87.6548385820002,29.879742460000045],[87.58506057900019,29.89611684300013],[87.63719165800006,29.654524074000108],[87.61173263300009,29.483538614000167],[87.55030853800008,29.439852134000034],[87.2875745980001,29.425343898000108],[86.88748959500009,29.533789632000037],[86.3965685660001,29.559707650000064],[86.30034649700019,29.61354947600006],[86.21781157300006,29.54847724100017],[86.05853261300007,29.51206541600004],[85.89994063500006,29.50960163900004],[85.80496260800004,29.637754736000147],[85.75930051400007,29.53407562300015],[85.85905454900018,29.416507025000158],[86.03728465600017,29.450767719],[86.2026676530001,29.462484447000122],[86.29527259600002,29.414989063000178],[86.4888836630002,29.464639434000162],[86.85426356300007,29.43999714100005],[87.09074353900013,29.404525765000017],[87.10031852200018,29.284422145000065],[87.16612266400011,29.211952043000167],[87.18773657500014,29.19110608200009],[87.47817253800008,29.151308638000103],[87.55283350200011,29.103834376000123],[87.57917061600017,28.993738581000173],[87.78425550200018,29.04746859200003],[87.95517759600006,28.95935299700011],[87.96002166500017,28.854147204000128],[88.04776761900018,28.91298279900019],[87.98405459300005,28.955643334],[88.0573196360001,29.055361327000185],[88.0348286420001,29.097912729000143],[88.23670158400006,29.169974633000038],[88.19786051500006,29.247673701999986],[88.28699451200004,29.254877444999977],[88.357833664,29.220235878000153],[88.37738059700007,29.15216845300006],[88.26288564400011,29.100832482000044],[88.27191161200011,29.037298997000164],[88.4207916470001,29.026475445000074],[88.44880665,29.074695528000177],[88.38759662800004,29.129708306000055],[88.54830956300015,29.20844639500018],[88.64826962600006,29.191793901000096],[88.75869751300013,29.076829561000125],[88.8615726340002,29.075639330000115],[88.93546263100012,29.03147826800017],[89.03366065000006,29.033032105000075],[89.06517761200013,28.96261204800004],[88.92440053000007,28.970718690000183],[88.7667696210001,29.012118921000024],[88.83106250600014,28.899729502000014],[89.04878260900011,28.90475126800004],[89.13573462900013,28.776126437000187],[89.19022353700018,28.885534078000035],[89.25360061600009,28.889731903000154],[89.2858806660002,28.783439145000045],[89.35486557300015,28.814771872],[89.31033352800017,28.988100913000153],[89.40714266500015,28.9934296240001],[89.43184664900014,28.830457263000085],[89.52215561999998,28.806813088000183],[89.50620251200002,28.748429444000124],[89.28083761000005,28.686898898000095],[89.44489257800018,28.648402326000053],[89.5636296130001,28.64210282300013],[89.52854950400001,28.518408729999976],[89.47750052800006,28.457111370000064],[89.30127755200016,28.355708278000066],[89.14683562100004,28.318299843999966],[89.02101856100006,28.344432942000083],[89.02653452300012,28.120249050999973],[89.08686863600019,28.023272107000082],[89.14956661300005,27.98588177800019],[89.18475350699998,27.902747213000055],[89.27112566699998,27.879874171999973],[89.33666259400013,27.940149612000084],[89.33390763000011,28.11183227900011],[89.40354163200004,28.17033595100014],[89.46263153500018,28.08022864800006],[89.56210360300014,28.147925089000182],[89.70793162000018,28.194127145000095],[89.76741765100007,28.249546613000177],[89.9413755020002,28.317532900000117],[89.97360962000005,28.358936317000087],[89.9913105230001,28.39624567700008],[90.02462758200016,28.45004441900005],[90.11597456900012,28.531769316],[89.9632945140001,28.625982244000056],[90.0386196610001,28.693322621],[89.99183657100014,28.758327969000106],[89.98052955100019,28.85580732300008],[89.8283235770001,28.85333332099998],[89.70272059000013,28.887052041000118],[89.68341053000006,28.96451574600013],[89.5686725010001,29.010250092000035],[89.74709354800018,29.07306860100016],[89.66114065100015,29.250587587000155],[89.48595451600016,29.257028242000047],[89.39509552400017,29.302635518000102],[89.76780657200015,29.320350000000133],[89.8100205180001,29.253231575000086],[89.80766252100017,29.17060763500001],[89.91835762300019,29.195741609000038],[90.05596165100008,29.256500517000177],[90.146446643,29.22085680900011],[90.20812253000008,29.306051311000033],[90.34447463700013,29.258478311000033],[90.45789352200006,29.157938220000062],[90.3046875870001,29.18028940300013],[90.31750452300008,29.038374898000086],[90.37796050800011,28.978393328000152],[90.34056062400003,28.92347660700017],[90.32403553400019,28.792450696],[90.46408054000005,28.691649593000136],[90.69565559400013,28.716453824000155],[90.80692250900017,28.67794032000012],[90.90618855000008,28.612314880000042],[91.01093266800012,28.597957518000158],[90.94561752500005,28.70531025200006],[91.1971515670001,28.690427680000028],[91.24288155400012,28.74420647300019],[91.38478851600019,28.72618839900008],[91.30180365100006,28.82772241600003],[91.53474462000008,28.784195863000093],[91.56387357700015,28.752278414000102],[91.5375976520001,28.631805152000084],[91.62640358100009,28.668453515000067],[91.71844458900017,28.816446576000033],[91.25341056600013,28.941483617000017],[91.0947185070001,28.946304553000118],[91.02810651700014,29.02615156800016],[90.857398665,29.115138882],[90.74399553799998,29.195915785000068],[90.80004851000012,29.238520161000167],[90.88045459800014,29.135118992000116],[91.13531457900012,29.024331354000026],[91.2104266570002,29.018216756000186],[91.25371566700005,29.09328390700017],[91.37178064000017,29.066310775000034],[91.50082356000007,29.084088121000093],[91.50290663100003,28.94325756300009],[91.65460164400008,28.867091880000032],[91.72362561100005,28.901762281000117],[91.96994761700017,28.84503657800019],[91.98299354700009,28.957283002000167],[92.06111154300015,29.087332924000066],[92.18697353100015,29.007038147000117],[92.2925415900001,29.029119432000073],[92.26333652500011,29.13293936200006],[92.42768854700012,29.02798821100015],[92.52309455400018,29.031652108000173],[92.51881458700018,28.901465394000127],[92.58002460800003,28.84186067500019],[92.65661659600016,28.88392005900016],[92.66849559600013,28.997774635000155],[92.81095157300007,28.929237154000077],[92.75645461800019,28.861971040000128],[92.82244852700012,28.767013632000157],[92.9342656300002,28.835119110000107],[92.9165345520002,29.001526542000192],[92.91843456200019,29.144970578000027]]],[[[90.49479652700018,30.119790444000103],[90.36082454500007,30.034453617000054],[90.25154866800011,29.874564623000026],[90.27869463500008,29.765965668000092],[90.34320058800017,29.68577801200007],[90.47309158899998,29.689638717000037],[90.53450763800004,29.728606185000103],[90.58721958300004,29.823229657000184],[90.5215225610001,29.93595032900015],[90.55034658500006,30.053523956000106],[90.49479652700018,30.119790444000103]]],[[[83.85407263000008,29.78803287200003],[83.85189853200012,29.865531111000053],[83.66590862700008,29.930422632000102],[83.57122765400015,30.02290503100005],[83.3970716550001,30.131354286000146],[83.35319557700012,30.201691529000072],[83.25686655499999,30.16533686800011],[83.22209154700005,30.08322103900008],[83.32680565800007,29.928730660999975],[83.43402864000007,29.819016745000113],[83.51631965000007,29.691849695000144],[83.76478558000008,29.696834581000132],[83.54374657900019,29.781615352000188],[83.52379664300008,29.928730660999975],[83.58364862900015,29.926237715000127],[83.85407263000008,29.78803287200003]]]]},"properties":{"objectid":807,"eco_name":"Yarlung Zanbo arid steppe","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Palearctic","eco_biome_":"PA10","nnh":3,"eco_id":770,"shape_leng":63.7375337409,"shape_area":5.50592877808,"nnh_name":"Nature Could Recover","color":"#E0B070","color_bio":"#D6C39D","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":59591.21719728311,"percentage":1.22030518800533}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[120.83821057500018,32.714341352000076],[120.84803768600011,32.789430799000115],[120.90693664900016,32.833596723000085],[120.88581861100022,32.97303437700015],[120.81498767400012,33.046923200000094],[120.74942057100031,33.267474542000116],[120.66304053300018,33.32358669000013],[120.64749159900009,33.423856716000046],[120.4885866410001,33.636070746000144],[120.50749168800019,33.72106726800018],[120.45192754900006,33.77301377800018],[120.33637966100014,34.14300640700003],[120.25388362900003,34.30799478300014],[120.10247762300003,34.36327645200015],[119.9274676760001,34.45326992900016],[119.78613269500033,34.47299942100011],[119.6480406720002,34.527716149000184],[119.50424962600005,34.63515823400013],[119.51546461300006,34.53681772300007],[119.69984469000008,34.38612987900018],[119.89775869000005,34.14869436600003],[119.9760815410001,33.94323313199999],[120.23847953400013,33.73104592400017],[120.46428666500003,33.29997436600007],[120.53613265100023,33.12549566400014],[120.79273254700001,32.81759013800007],[120.83821057500018,32.714341352000076]]]},"properties":{"objectid":808,"eco_name":"Yellow Sea saline meadow","biome_num":9,"biome_name":"Flooded Grasslands & Savannas","realm":"Palearctic","eco_biome_":"PA09","nnh":3,"eco_id":748,"shape_leng":5.39744193872,"shape_area":0.517809703046,"nnh_name":"Nature Could Recover","color":"#4DA6B8","color_bio":"#BEE7FF","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":5334.083975737195,"percentage":0.46128113505737894}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[31.859100030000036,-21.458390492999968],[31.758159479000142,-21.470830036999928],[31.559267774000034,-21.59732947699996],[31.27336761000015,-21.893720851999944],[31.208236646000103,-22.039515766999898],[31.19282762200004,-22.136715683999967],[31.235105680000117,-22.343173949999823],[31.30074606200003,-22.406643989999907],[31.380804267000144,-22.42954806599988],[31.52948040600012,-22.413900876999946],[31.62197008300012,-22.44162634099996],[31.790537367000184,-22.447269483999946],[31.852694726000095,-22.471376426999825],[31.995403917000033,-22.45613019299998],[32.11473894000005,-22.380230529999892],[32.269867759000135,-22.1661640289999],[32.34195687200008,-21.963334205999843],[32.37028704700015,-21.74081787299997],[32.33995078200019,-21.669318799999928],[32.21563211600005,-21.55322436199998],[32.09628919600016,-21.49336292199996],[31.859100030000036,-21.458390492999968]]],[[[29.932206105000148,-20.43955306399988],[29.925733686000115,-20.298569615999952],[29.88495230000018,-20.17686180099986],[29.808369222000124,-20.057559718999983],[29.841173621000166,-19.817772531999935],[29.853589301,-19.551071712999885],[29.80485066700004,-19.407271653999942],[29.807820323999977,-19.169489244999966],[29.773985244000187,-18.787104865999936],[29.72425540800009,-18.699938759999952],[29.655135951000034,-18.664986172999875],[29.538782428000104,-18.70674508299993],[29.073869859000183,-18.94728457399998],[28.87597330300008,-19.0850306129999],[28.66365497700008,-19.195462063999912],[28.55376992500004,-19.310323869999934],[28.51350585300014,-19.533642113999974],[28.42599587100017,-19.63003019799993],[28.336503487000073,-19.839686186999927],[28.252472580000074,-19.90755681799982],[27.980970499000136,-19.823979468999937],[27.687097295000115,-19.826756392999926],[27.687912663000077,-19.847350196999912],[27.53027137200013,-20.08625879599998],[27.524358812000116,-20.15509931199989],[27.363762399000052,-20.35999223399989],[27.27804299600018,-20.605384424999897],[27.274100518000125,-20.69690205799992],[27.19724880000018,-20.907469410999852],[27.209066982000138,-21.18040398799991],[27.411035129000084,-21.451730543999872],[27.620066835000102,-21.5113108029999],[27.777695371000164,-21.529002455999944],[27.93880298300013,-21.518176654999934],[28.167035804000193,-21.45192968999993],[28.256540031999975,-21.445915355999944],[28.420131569000034,-21.395325501999935],[28.50913427500012,-21.315807316999837],[28.666261288000157,-21.259995118999825],[28.80598897900012,-21.278889638999942],[29.026268501000175,-21.25843098199988],[29.243562575000112,-21.204232527999977],[29.311185359999968,-21.15443466399995],[29.47775050100006,-20.93394295199994],[29.530457888000058,-20.919087751999882],[29.59459765000014,-20.829926789999945],[29.565252586000042,-20.701793763999945],[29.773602159,-20.750017570999944],[29.939180047000036,-20.654040362999865],[29.915801931000146,-20.525506381999946],[29.932206105000148,-20.43955306399988]]],[[[28.2683333330001,-15.872499999999889],[28.174166666000076,-15.784166666999965],[28.033333333000144,-15.753333332999944],[27.848333333000028,-15.774999999999864],[27.62833333300017,-15.8175],[27.60083333299997,-15.7725],[27.43916666700011,-15.88249999999988],[27.3325,-15.90083333399997],[27.200833334000095,-15.855],[27.11583333300007,-15.89],[27.098333334000074,-15.8175],[27.034166667000193,-15.8175],[26.936666667000168,-15.877499999999884],[26.871666667000113,-15.81666666599989],[26.866666667000118,-15.73833333399989],[26.746666667000056,-15.68249999999989],[26.630833333000112,-15.772647857999914],[26.438333333000116,-15.745],[26.201666666000165,-15.859999999999843],[26.15750000000014,-15.992696758999898],[26.1400000000001,-16.04833333299996],[25.944166667000047,-16.17666666599996],[25.950833333000105,-16.293333332999907],[25.84333333300009,-16.43749999999983],[25.988333333000128,-16.552499999999895],[25.983333333000132,-16.67666666699995],[26.000833333000173,-16.689166666999938],[26.03500000000014,-16.711666666999974],[26.184166667000056,-16.64916666599993],[26.194166666000115,-16.540833332999966],[26.344166667000025,-16.505],[26.374166666,-16.524166666999974],[26.50916666700016,-16.493333332999896],[26.589166667000143,-16.378333332999887],[26.481666666000024,-16.3175],[26.341666666000037,-16.3425],[26.329166667000038,-16.2075],[26.276666667000086,-16.1325],[26.46583333300015,-16.139999999999816],[26.460833334000085,-16.26749999999987],[26.7025000000001,-16.3175],[26.75250000000017,-16.362499999999898],[26.695833334000042,-16.484166666999954],[26.810000000000116,-16.43333333399994],[26.90416666700014,-16.33833333299998],[26.95000000000016,-16.430833333999942],[27.04166666599997,-16.469166666999968],[27.068333333000055,-16.6075],[27.341666667000084,-16.549166666999895],[27.465833334000024,-16.651666666999915],[27.555833333000066,-16.58583333399997],[27.455833334000033,-16.48916666599996],[27.478333333000023,-16.364999999999895],[27.61833333300001,-16.3575],[27.742500000000177,-16.2175],[27.60333333300008,-16.13],[27.53583333300014,-16.13333333299994],[27.4925,-16.025833333999913],[27.586666666000156,-16.025],[27.73166666700007,-16.17333333399995],[27.811666667000054,-16.18666666699994],[27.8675,-16.140833332999932],[27.940833333000057,-16.165],[28.118333333000123,-16.26749999999987],[28.24000000000018,-16.234166666999897],[28.184166666000067,-16.06749999999988],[28.16583333300008,-15.934166666999886],[28.2683333330001,-15.872499999999889]]],[[[35.32437148100013,-17.409380661999876],[35.3206924160001,-17.232130292999898],[35.35349286700017,-16.924462553999945],[35.34403894800016,-16.81761985999998],[35.30375513600006,-16.701535343999865],[35.1769485960001,-16.557324408999932],[35.21083333300004,-16.4825],[35.09583333300009,-16.32666666699987],[35.0816666660001,-16.268333333999976],[34.788333333000026,-15.956666665999933],[34.74250000000018,-15.825],[34.779166667000084,-15.761666666999929],[34.67083333300019,-15.684999999999889],[34.62166666600007,-15.777499999999861],[34.591666667000084,-15.94916666599994],[34.53083333400008,-15.988333333999947],[34.610215808000135,-16.05416666699989],[34.5921639500001,-16.189334744999883],[34.5737852690001,-16.52431707099987],[34.53252604800019,-16.736388715999908],[34.49225408000012,-16.823945855999966],[34.39628927600012,-16.892618396999865],[34.276452730000074,-16.895014208999953],[34.10290969900012,-16.833138068999915],[34.012907896000115,-16.833529103999922],[33.9149527940001,-16.87970844599988],[33.68970147300013,-16.911814656999923],[33.53455686200016,-16.85435895099988],[33.402288844000054,-16.85193337399994],[33.34758720999997,-16.776414822999925],[33.251618458000166,-16.777206812999907],[33.171070575000044,-16.884440540999947],[33.074604248000185,-16.87960923099996],[33.17056510400005,-16.74305613799993],[33.171556306000184,-16.68642218499997],[33.06415123100015,-16.693639385999973],[32.99304147600003,-16.6361935999999],[32.80110002400005,-16.569897027999957],[32.650927213000045,-16.5007937659999],[32.53456579400006,-16.406791571999975],[32.50969100700007,-16.193507138999962],[32.541010578000055,-16.072611156999926],[32.72001113900012,-15.924821385999905],[32.70310149400018,-15.869390299999907],[32.55840200500006,-15.862143334999814],[32.45348480400014,-15.897477033999962],[32.30431109000011,-15.907500922999873],[32.15363675600008,-15.764893809999876],[32.03876806200003,-15.68776151499992],[31.9751219260001,-15.71466522499992],[31.99402581700008,-15.860470061999933],[31.90850218600019,-15.911470792999921],[31.791149566000115,-15.874102551999897],[31.64893795000006,-15.89497208499995],[31.62308380500008,-15.941963259999909],[31.74044826900007,-16.18297315799998],[31.791169305999972,-16.21350531099995],[31.81802649600013,-16.313521838999918],[31.772285155000077,-16.40710323399992],[31.807103540000185,-16.59709255699994],[31.781249395000145,-16.6440837319999],[31.79568301000006,-16.87503997499988],[31.776790963000053,-16.932876793999924],[31.559508732999973,-17.19071690399994],[31.619182166000087,-17.254587899999876],[31.709677596,-17.19193961399992],[31.823539296999968,-17.054183653999928],[31.93790252200006,-16.989931544999877],[31.896145725,-17.196379889999946],[31.968744258000186,-17.20281502299997],[32.04780336500005,-17.146591946999933],[32.19597403400013,-16.989560353999934],[32.28099614200016,-16.86505577199989],[32.370002796000165,-16.853418137999938],[32.508739284000114,-16.9289466109999],[32.63703460000016,-17.02214689399989],[32.60024565600003,-17.149067130999924],[32.521684123000114,-17.210913505999883],[32.50527994900017,-17.29686682399995],[32.31534458800019,-17.524585657999978],[32.26910567200008,-17.612543752999898],[32.350656601000026,-17.652317727999957],[32.53214503500004,-17.5326444559999],[32.67734604800006,-17.613395271999934],[32.786733525000045,-17.492910166999934],[32.86926775900008,-17.34028908499988],[32.99307700700007,-17.247118566999973],[33.04428377500011,-17.079632364999952],[33.104446887000165,-17.01336555699993],[33.250141526,-17.031859120999968],[33.328213380000136,-17.10015054999991],[33.32921247700011,-17.17927770199998],[33.40032223300011,-17.23672348699995],[33.58430248900004,-17.213047263999954],[33.65342194600015,-17.247999850999975],[33.64149594500003,-17.384562865999897],[33.71857265,-17.44160769499996],[33.89559475500005,-17.474966380999945],[34.02289492200009,-17.55692006399994],[34.04776576100011,-17.702323944999875],[33.958767004000094,-17.84972268199988],[33.95131917500015,-18.036895393999885],[34.163151771000116,-18.124482298999965],[34.22382035400017,-18.199599893999903],[34.180069311000125,-18.3156744879999],[34.172119958999986,-18.429343348999907],[34.20196259800014,-18.56309967499982],[34.08213789600018,-18.76913714199992],[34.007063334000065,-18.93822716699998],[33.97524618800003,-19.05349984999998],[33.99016948100018,-19.15431828899989],[33.957862657000135,-19.39972877599996],[33.900187418000144,-19.49411208199996],[33.84400885100001,-19.673245839999822],[33.835064350000096,-19.775668100999894],[33.61380547100009,-20.05640236499994],[33.49099532000008,-20.228700034999974],[33.396025666000185,-20.308619175999922],[33.2647567460001,-20.38532074999995],[33.11409425599999,-20.446355292999954],[33.040407379000044,-20.515465406999965],[32.97690341700013,-20.616601344999935],[32.761695548000034,-20.638945331999935],[32.63774536400018,-20.69331999399992],[32.48907712100015,-20.844728286999953],[32.500023764,-20.96844088099988],[32.67356284700014,-20.962436467999908],[32.719316032999984,-21.072496728999965],[32.83368320500011,-21.076125171999877],[33.048986980000166,-20.99943351899998],[33.174790474000076,-20.996636750999926],[33.73071578700012,-21.038475032999884],[33.95596316100017,-20.93848826999988],[34.00568115200008,-20.822012720999908],[33.881852165,-20.575780478999945],[33.85542340100017,-20.34493391399991],[33.85228191600004,-20.32737482099992],[33.85080350400011,-20.208449702999815],[33.877039792000176,-20.045784714999968],[33.93738325600003,-19.898861499999953],[33.99418561100009,-19.810229652999965],[34.20700546000012,-19.773302053999885],[34.26617342300017,-19.695788645999926],[34.26218887699997,-19.58292169699996],[34.310911719000046,-19.455199547999882],[34.36660060700012,-19.406203593999862],[34.409356501000104,-19.27888240099992],[34.4991375890001,-19.10433544199998],[34.58314152600019,-19.112637884999856],[34.66342155100017,-19.15747134399993],[34.72661556900016,-19.014786875999903],[35.064991072000055,-18.43459572899991],[35.226528535000114,-18.306790983999974],[35.35456059800015,-18.14314069399984],[35.397861510000155,-17.9602618159999],[35.51409151700011,-17.933026329999905],[35.44305236700012,-17.868775946999904],[35.39680950300004,-17.888853489999974],[35.33067154600013,-17.819760149999922],[35.284420785,-17.704076589999943],[35.29763058600008,-17.57844223799998],[35.24507148500015,-17.466772739999954],[35.32437148100013,-17.409380661999876]],[[35.075,-16.595833332999916],[35.25083333300012,-16.73166666599991],[35.28083333300003,-16.849166666999906],[35.21250000000015,-16.928333332999955],[35.16416666600014,-17.123333332999948],[35.06416666700011,-17.052499999999895],[35.061666667000054,-16.996666665999896],[35.16666666700013,-16.936666666999884],[35.15666666600009,-16.8325],[35.11916666600007,-16.81666666699988],[35.075,-16.595833332999916]]],[[[28.591666667000027,-15.09416666699991],[28.599166667000077,-15.025833332999866],[28.526666666999972,-15.011666666999929],[28.595833333000144,-15.026666666999972],[28.591666667000027,-15.09416666699991]]],[[[28.25083333300006,-14.599166666999906],[28.41750000000019,-14.619166666999945],[28.370833334000054,-14.5175],[28.2525,-14.368333332999953],[28.1625,-14.38083333399993],[28.144166667000093,-14.418333332999964],[28.179166667000175,-14.4625],[28.078333333000046,-14.533333333999963],[28.0375,-14.435833332999891],[28.046666666000135,-14.53],[27.993333333000066,-14.630833332999885],[27.975,-14.636666666999929],[27.825833334000095,-14.698333332999937],[27.80083333300007,-14.758333332999939],[27.766666667000152,-14.863333332999957],[27.71833333400008,-14.91083333399996],[27.61833333300001,-14.941666666999822],[27.59750000000014,-15.134166665999885],[27.45916666700009,-15.0525],[27.385,-15.05416666699989],[27.390833333000103,-15.148333332999925],[27.30333333300007,-15.138333332999935],[27.161666667000134,-15.158333333999906],[27.1925,-15.221666666999965],[27.078333333000046,-15.23],[26.983333333000076,-15.128333333999876],[26.91166666700019,-15.11],[26.83416666700009,-15.234166666999954],[26.78416666700008,-15.188333332999946],[26.713333334000083,-15.215833333999967],[26.626666667000165,-15.065],[26.560000000000173,-15.013333332999878],[26.556666667000115,-15.204166666999924],[26.594166667000138,-15.285833332999971],[26.705,-15.3566666669999],[26.5925,-15.440833332999944],[26.49333333300018,-15.465833332999978],[26.45416666600005,-15.36],[26.36666666700006,-15.377499999999884],[26.30333333300007,-15.4275],[26.406666666000035,-15.4725],[26.2875,-15.54833333299996],[26.18916666600012,-15.56999999999988],[26.15750000000014,-15.618333332999896],[26.173333333000187,-15.763333333999924],[26.273333333000153,-15.759166666999874],[26.31748548800016,-15.720000009999978],[26.5925,-15.634166666999874],[26.66083333400013,-15.550833333999947],[26.74833333300012,-15.559999999999832],[26.76666666699998,-15.448740818999909],[26.910833334000074,-15.4125],[27.0875,-15.41],[27.383333333000053,-15.365],[27.435,-15.41583333299991],[27.510000000000105,-15.395833333999974],[27.6333333340001,-15.444166666999877],[27.694166667000047,-15.51],[27.87583333300006,-15.493333332999839],[27.97666666700019,-15.56833333399993],[28.062500000000114,-15.574999999999875],[28.02583333400014,-15.667499999999848],[28.08833333299998,-15.7475],[28.231666667000127,-15.736666665999905],[28.38916666700004,-15.57999999999987],[28.5,-15.76749999999987],[28.505,-15.66],[28.365833333000182,-15.56249999999983],[28.27083333300004,-15.468333332999975],[28.171666667000125,-15.461666665999928],[28.214166667000086,-15.365833333999944],[28.3225,-15.409166666999965],[28.38916666700004,-15.4816666669999],[28.56166666600018,-15.48583333299996],[28.638333333000162,-15.453333332999932],[28.688333333,-15.569166665999944],[28.74916666700011,-15.6],[28.86166666600019,-15.594166665999978],[29.072500000000105,-15.39249999999987],[28.9175,-15.294166666999956],[28.839166667000086,-15.4425],[28.780833334000192,-15.354166665999912],[28.865833334000172,-15.24583333299995],[28.860000000000127,-15.17],[28.70333333300016,-15.187499999999886],[28.74333333400017,-15.2875],[28.669166667000127,-15.300833332999844],[28.57583333300005,-15.243333333999885],[28.499166666000065,-15.2725],[28.38500000000016,-15.27166666599993],[28.285833334000074,-15.17],[28.165000000000134,-15.19499999999988],[28.054166666000185,-15.136666666999815],[28.058333334000167,-15.08833333299998],[28.526666666999972,-15.011666666999929],[28.605833333000135,-14.9375],[28.46,-14.9425],[28.382500000000107,-14.9225],[28.235000000000184,-14.969166665999921],[28.15083333300015,-14.9675],[28.07166666700016,-14.874166665999894],[28.121666666000124,-14.795],[28.084166667000034,-14.73],[28.118333333000123,-14.680833332999953],[28.25083333300006,-14.599166666999906]],[[27.97083333300003,-15.265833332999932],[28.192500000000166,-15.256666666999877],[28.212500000000148,-15.34166666699997],[28.095833333000087,-15.334166666999977],[27.97083333300003,-15.265833332999932]]],[[[34.99916666700011,-14.165],[34.97416666600009,-14.215833333999967],[35.069166666,-14.2575],[35.1125,-14.390833332999932],[35.181666667000115,-14.45],[35.183333334000054,-14.589166666999915],[35.26000000000016,-14.516666666999924],[35.233333333000076,-14.421666665999965],[35.079166667000095,-14.21333333299998],[34.99916666700011,-14.165]]],[[[31.533333333000144,-13.894166666999865],[31.476666666000142,-13.923333333999949],[31.2875,-13.923333333999949],[31.033333333000087,-14.043333332999907],[30.863333333000128,-14.184166665999896],[30.780833333000032,-14.201666666999927],[30.735000000000184,-14.2725],[30.636038136000025,-14.34166666699997],[30.635833333,-14.34193820299987],[30.635434310000107,-14.3425],[30.565,-14.441666666999936],[30.553333333000126,-14.564166666999881],[30.756666667000104,-14.646666666999977],[30.831666666000046,-14.73916666699995],[30.854275475000122,-14.85096374799997],[30.911954662000028,-14.824460993999935],[30.863333333000128,-14.72666666699996],[31.030833333000146,-14.492499999999836],[31.017500000000155,-14.4],[31.048333333000016,-14.3475],[31.135833333999983,-14.365],[31.112500000000125,-14.431666665999956],[31.19083333300017,-14.485],[31.308333334000054,-14.47706629499993],[31.308549515000095,-14.4775],[31.44583333300011,-14.360833332999903],[31.418333334000124,-14.275833332999923],[31.311666667000054,-14.236666666999952],[31.295833333000076,-14.155833332999919],[31.337500000000148,-14.096666666999909],[31.534166667000193,-14.010833332999937],[31.553333334000172,-13.903333332999978],[31.533333333000144,-13.894166666999865]]],[[[33.91333333300008,-14.474166665999917],[34.075,-14.485],[34.123333333000176,-14.416666666999959],[34.08583333300015,-14.375833332999946],[34.09083333300015,-14.212499999999864],[34.13166666700005,-14.173333333999892],[34.135000000000105,-14.081666666999979],[34.02666666600004,-14.006666666999934],[33.901666667000086,-14.030833332999975],[33.77583333300015,-13.97],[33.81583333300006,-13.753333333999876],[33.83,-13.535],[33.8975,-13.49],[33.89583333300004,-13.34],[33.750000000000114,-13.3525],[33.57833333300016,-13.510833333999926],[33.5825,-13.588333332999923],[33.5225,-13.643333332999873],[33.281666666000035,-13.7775],[33.28083333300009,-13.878333332999944],[33.375000000000114,-13.995],[33.382500000000164,-14.064166665999892],[33.62583333300017,-14.163333332999912],[33.64500000000015,-14.2725],[33.85666666600008,-14.28416666599992],[33.86833333400011,-14.376666666999881],[33.91333333300008,-14.474166665999917]]],[[[34.33500000000015,-13.285833333999904],[34.25166666600006,-13.33833333299998],[34.27666666599998,-13.459166665999817],[34.25583333300011,-13.513333332999935],[34.3325,-13.728333332999966],[34.385833333000164,-13.826666665999937],[34.50500000000011,-13.92],[34.5125,-13.965833332999921],[34.429166667000175,-14.058333333999883],[34.50833333400004,-14.153333332999921],[34.50666666600017,-14.26833333299993],[34.576666666,-14.4325],[34.66916666600008,-14.579166666999868],[34.77416666700009,-14.6725],[34.851666666000085,-14.829166666999981],[34.936666666000065,-14.89249999999987],[34.91833333300008,-15.020833333999974],[34.93583333400005,-15.114999999999895],[34.905,-15.176666666999893],[34.91916666700013,-15.3175],[35.021666666000044,-15.438333333999879],[35.11583333300007,-15.41583333299991],[35.11583333300007,-15.415],[35.14750000000015,-15.299166666999952],[35.125833334000106,-15.259166666999874],[35.1925,-15.136666666999815],[35.379166667000106,-15.056666666999888],[35.41666666700007,-14.992499999999893],[35.445,-14.855833332999907],[35.436666667000054,-14.773333332999982],[35.37583333300017,-14.666666665999912],[35.355833334000124,-14.53],[35.29750000000013,-14.451666666999813],[35.298333334000176,-14.2325],[35.22083333299997,-14.174166666999838],[35.205,-14.066666666999822],[35.152500000000146,-13.989166665999903],[35.11500000000012,-13.856666665999967],[35.05083333400012,-13.731666666999956],[35.18083333400017,-14.0425],[35.18000000000012,-14.121666666999943],[35.29250000000013,-14.368333333999885],[35.2425,-14.414166665999971],[35.259166667000045,-14.535833332999914],[35.34583333300003,-14.619166666999945],[35.23000000000019,-14.755833333999874],[35.17833333300018,-14.706666666999922],[35.181666667000115,-14.59833333399996],[35.19000000000011,-14.6775],[35.16500000000019,-14.79833333299996],[35.19416666700016,-14.945],[35.155,-15.025],[35.02833333400008,-15.109166666999954],[35.03083333300009,-14.9725],[35.00250000000011,-14.889999999999873],[34.91,-14.813333332999889],[34.76250000000016,-14.564166666999881],[34.906666667000025,-14.5425],[34.92083333300013,-14.4675],[34.82333333300011,-14.361666665999905],[34.84166666700003,-14.233333333999951],[34.93166666700017,-14.275833332999923],[34.97,-14.166666666999959],[34.930833334000056,-14.068333333999874],[34.86416666700006,-13.995],[34.82250000000016,-14.0375],[34.85916666700007,-14.116666666999947],[34.81166666700011,-14.148333332999869],[34.7975,-14.2575],[34.62583333400005,-14.20916666699992],[34.566666667000106,-14.1325],[34.5175,-13.96583333399991],[34.57416666700004,-13.911666665999917],[34.62833333300006,-13.7175],[34.48666666700012,-13.578333332999932],[34.40583333400019,-13.55333333399983],[34.30250000000012,-13.380833332999941],[34.33500000000015,-13.285833333999904]]]]},"properties":{"objectid":813,"eco_name":"Zambezian-Limpopo mixed woodlands","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Afrotropic","eco_biome_":"AF07","nnh":3,"eco_id":66,"shape_leng":160.755472745,"shape_area":15.5946926361,"nnh_name":"Nature Could Recover","color":"#B3FC53","color_bio":"#FEAA01","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":183421.53672001368,"percentage":0.8555501743580558}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[24.246666667,-11.7325],[24.34,-11.64916666699986],[24.439166667,-11.610833332999903],[24.50166666700011,-11.667499999999848],[24.77,-11.435833332999948],[24.959166667000034,-11.389999999999873],[24.985833333000016,-11.25],[24.741666667000118,-11.304166665999958],[24.66583333300008,-11.3575],[24.58500000000015,-11.45583333399992],[24.475,-11.46],[24.35,-11.36666666699989],[24.39833333399997,-11.26833333299993],[24.38000000000011,-11.08833333299998],[24.320833333000166,-11.0525],[24.193333333,-11.02916666699997],[24.285833333000085,-11.135],[24.285833333000085,-11.265833332999932],[24.33,-11.335833333999915],[24.23,-11.373333332999948],[24.1325,-11.3175],[24.035,-11.456666666999865],[24.038333333000026,-11.538333333999901],[24.11666666600007,-11.6225],[24.039166667000075,-11.77583333299998],[24.070000000000107,-11.806666666999945],[24.11083333300013,-11.750833332999946],[24.177500000000123,-11.8125],[24.145833334000145,-11.94333333399993],[23.988333333000128,-11.996666666999943],[24.0183333330001,-12.080833332999873],[24.070000000000107,-12.09166666699997],[24.177500000000123,-12.085833333999972],[24.21000000000015,-11.81666666599989],[24.25666666700016,-11.749166665999894],[24.246666667,-11.7325]]],[[[22.703333334000035,-13.09166666599998],[22.685000000000116,-13.001666666999881],[22.62166666600018,-13.130833332999941],[22.65,-13.240833332999955],[22.78666666700002,-13.175],[22.76000000000016,-13.098333332999914],[22.703333334000035,-13.09166666599998]]],[[[22.013333333000105,-13.00583333399993],[22.00083333300006,-13.086666665999871],[22.238333333000128,-13.040833332999966],[22.013333333000105,-13.00583333399993]]],[[[22.96916666700008,-13.2775],[22.92416666700018,-13.23916666599996],[22.850833333000026,-13.33416666699992],[22.875,-13.53583333399996],[22.941666666000117,-13.626666666999938],[23.010000000000105,-13.66416666699996],[23.11,-13.623333332999948],[23.0525,-13.481666666999956],[23.02666666700003,-13.31],[22.975833333000082,-13.293333333999897],[22.96916666700008,-13.2775]]],[[[23.18250000000012,-13.702499999999873],[23.118333333000066,-13.631666666999934],[23.0625,-13.668333333999897],[23.10083333299997,-13.729166666999959],[23.06166666700011,-13.828333333999979],[22.999166666000065,-13.771666666999977],[22.91000000000014,-13.8025],[23.00416666600006,-13.904166666999913],[23.04000000000019,-14.075833332999935],[23.096666667000022,-14.20583333299993],[23.16666666600014,-14.201666665999937],[23.209166667000034,-14.119166666999945],[23.2075,-13.979166666999845],[23.092500000000143,-14.020833332999871],[23.07166666600017,-13.920833332999962],[23.204166667000038,-13.9725],[23.195833334000042,-13.865],[23.225000000000136,-13.763333332999878],[23.193333334000158,-13.725],[23.18250000000012,-13.702499999999873]]],[[[21.975566711000113,-13.983513176999963],[21.97281059200003,-14.036001428999896],[21.794990527000095,-14.006142407999903],[21.572509503000163,-13.898970554999948],[21.404319575000045,-13.794656428999929],[21.163099466000062,-13.763858466999977],[21.12207055200014,-13.856443292999927],[21.35445948900019,-14.097567345999948],[21.329610499000125,-14.156532358999868],[21.251180528000077,-14.173041354999896],[21.114910563000024,-14.107516832999977],[21.049940588000084,-14.11022670199992],[21.07512049500008,-14.203489288999947],[21.261020547000044,-14.336891803999947],[21.161619557000108,-14.391438044999973],[21.015459450000094,-14.34328032299993],[21.07298059500016,-14.815909188999967],[21.135509593000165,-15.001868248999926],[21.331809574999966,-15.273389608999935],[21.482011844000112,-15.516232531999947],[21.47846424200003,-15.474562620999905],[21.57171251300008,-15.33232272299989],[21.596215880000045,-15.184675143999925],[21.683258429000034,-15.1181797939999],[21.723808515000144,-15.04444489499997],[21.889677837000136,-14.9816754659999],[21.910304250000138,-14.840163466999911],[21.968992837000087,-14.774619735999863],[21.82001120800004,-14.693307795999942],[21.790573061000146,-14.612161584999967],[21.847331006000104,-14.476342125999963],[21.780746838000084,-14.316486444999953],[21.652247125000088,-14.30948172099994],[21.65622679300003,-14.231919245999904],[21.937702427000147,-14.199186525999892],[21.990439884000125,-14.163897429999963],[21.975566711000113,-13.983513176999963]]],[[[22.878333333000057,-13.799166666999895],[22.932500000000175,-13.940833332999887],[22.994166667000172,-13.911666666999906],[22.878333333000057,-13.799166666999895]]],[[[22.649166665999985,-13.870833332999894],[22.68083333400017,-13.929999999999893],[22.9125,-14.061666665999894],[23.030833333000146,-14.250833333999879],[23.085,-14.180833332999953],[23.025,-14.07],[22.8958333330001,-13.9625],[22.723333334000188,-13.934166666999943],[22.649166665999985,-13.870833332999894]]],[[[22.00333333300017,-14.269166666999979],[22.000833334000163,-14.423333333999949],[22.08,-14.374166666999884],[22.00333333300017,-14.269166666999979]]],[[[23.539166666000085,-14.39333333299993],[23.428333334000115,-14.399166665999928],[23.368333334000056,-14.3725],[23.27333333300004,-14.382499999999823],[23.239166666000074,-14.40083333299998],[23.225833333000082,-14.538333332999912],[23.236666667000065,-14.646666666999977],[23.37333333400005,-14.707499999999868],[23.41166666700019,-14.606666666999956],[23.48250000000013,-14.503333333999933],[23.543333333000135,-14.46],[23.539166666000085,-14.39333333299993]]],[[[23.612500000000182,-14.455],[23.600833333000082,-14.450833332999935],[23.555,-14.460833333999915],[23.418333334000124,-14.61416666599996],[23.395,-14.702499999999873],[23.509166667000045,-14.655],[23.612500000000182,-14.455]]],[[[23.753333334000047,-14.730833332999907],[23.698333333000107,-14.646666666999977],[23.614166666000074,-14.7275],[23.79416666700007,-14.890833332999932],[23.862500000000125,-14.895],[23.840384723000057,-14.809999999999889],[23.816666667000106,-14.802499999999895],[23.815833334,-14.80166666599996],[23.75500000000011,-14.733333332999905],[23.754166666000117,-14.7325],[23.754166667,-14.731666666999956],[23.753333334000047,-14.730833332999907]]],[[[22.045833333000132,-14.675],[22.000000000000114,-14.775],[22.10416666700013,-14.795833332999962],[22.110833333000187,-14.689166666999881],[22.045833333000132,-14.675]]],[[[22.345,-14.693333332999941],[22.42833333300007,-14.77416666699986],[22.37500000000017,-14.815833332999887],[22.465833333000035,-14.9375],[22.575,-14.930833332999896],[22.41166666700019,-14.735833332999903],[22.345,-14.693333332999941]]],[[[23.86638888900012,-14.905],[23.773333333000096,-14.891666665999935],[23.594166666000092,-14.7275],[23.375000000000114,-14.804999999999893],[23.371666667000113,-14.87083333299995],[23.485833333000187,-14.844166666999968],[23.622500000000173,-14.850833332999912],[23.617500000000177,-14.911666666999963],[23.518333333000157,-14.949166666999872],[23.500833333000116,-14.887499999999875],[23.412500000000136,-14.87499999999983],[23.1625,-15.00749999999988],[23.119166666000183,-15.2375],[23.19583333300011,-15.377499999999884],[23.210833333000096,-15.658333332999973],[23.2775,-15.766666666999924],[23.276666667000143,-15.893333332999873],[23.30666666700006,-15.94916666599994],[23.247500000000173,-16.095],[23.303333333000126,-16.18833333399982],[23.245,-16.3275],[23.07166666600017,-16.37416666699994],[23.12166666700017,-16.45916666599993],[23.19,-16.4125],[23.317500000000166,-16.485],[23.321666667000045,-16.56583333299983],[23.257500000000107,-16.605833332999907],[23.247500000000173,-16.696666666999818],[23.34416666700008,-16.73583333399995],[23.3366666660001,-16.836666666999918],[23.363333333000185,-17.06166666699994],[23.38416666700016,-17.1025],[23.316666666000117,-17.256666665999944],[23.363333334000117,-17.3775],[23.318333333000112,-17.455],[23.154166666000094,-17.36],[23.1491666660001,-17.225],[23.06500000000011,-17.21333333299998],[23.017500000000155,-17.173333332999903],[23.03666666700019,-17.00583333299994],[22.979166667000015,-16.947499999999877],[22.865833334000115,-17.04916666699995],[22.798333333000073,-17.023333333999915],[22.7475,-16.931666666999888],[22.698333333000107,-16.910833333999904],[22.6675,-16.82],[22.5775000000001,-16.753333332999944],[22.60583333400018,-16.66083333299997],[22.448333333000164,-16.634166666999874],[22.34416666700008,-16.596666666999965],[22.2325,-16.398333332999925],[22.172500000000184,-16.368333332999953],[22.193333333000055,-16.27583333299998],[22.056666667000172,-16.180833333999942],[22.034166667000136,-16.1125],[21.79726221100009,-15.92605584699993],[21.698381128000108,-15.785100396999951],[21.578286501000093,-15.684223843999973],[21.626140440000142,-15.814835911999978],[21.51849953700014,-15.846144164999941],[21.39328044100006,-15.741340702999935],[21.30835952400014,-15.598729995999975],[21.19116056900009,-15.439439972999935],[21.119680537000022,-15.471046955999896],[21.205999555000062,-15.690003892999925],[21.41122056400019,-16.13862564699997],[21.483329574000095,-16.25413732499993],[21.618070511999974,-16.375779694999892],[21.850509572000192,-16.500241904999882],[21.789640526000028,-16.54913974899989],[21.504089536000038,-16.628483849999952],[21.345230510000135,-16.70065924499994],[21.139350516000093,-16.773545760999866],[20.88783055700003,-16.835601851999854],[20.454870556000117,-16.861229352999942],[20.22957958300009,-16.861080322999953],[19.7485505410001,-16.885057762999907],[19.57184057600017,-16.937735509999925],[19.378530587000057,-16.96256404799982],[19.25823954800012,-16.937905326999953],[19.022989532000054,-16.76589626799995],[18.877630567000097,-16.63751518299989],[18.7331195160001,-16.532029601999966],[18.491329437000104,-16.314693557999874],[18.28013045500012,-16.07345953499987],[18.138629512000023,-15.934348607999937],[18.06006055600011,-15.83009803099992],[17.956481992000022,-15.74992129899988],[17.844150547000027,-15.613849064999954],[17.638767661000088,-15.47120945599994],[17.492272259000117,-15.387826607999898],[17.40074675799997,-15.364186116999917],[17.202770529000134,-15.399566524999955],[17.08472667300009,-15.404133930999933],[16.82495123000018,-15.279636335999953],[16.654004776000022,-15.219835952999915],[16.491743824000025,-15.120385017999922],[16.363830080000128,-15.194310869999981],[16.30895350500009,-15.259450848999961],[16.288029343000062,-15.374824667999974],[16.37448955900004,-15.46654507799991],[16.368567626000072,-15.566591958999823],[16.15735202999997,-15.719801262999965],[16.086683634999986,-15.751721229999873],[15.749528273000067,-15.735381872999938],[15.563622372000054,-15.57781648699995],[15.492975836000028,-15.418320008999956],[15.463035161000107,-15.256753663999973],[15.287428057000056,-15.103832486999863],[15.291128590000085,-14.944950568999843],[15.138397508000025,-14.862051276999921],[15.056649373000084,-14.84774385899982],[14.764980103000141,-14.980701177999947],[14.627723976000027,-14.95015102799988],[14.402664297000172,-15.11097776399987],[14.261707637000029,-15.037239947999979],[14.204853996000168,-15.08499378599987],[14.200926542000104,-15.239253327999904],[14.253162162000024,-15.56412976699994],[14.116878250000184,-15.634112075999894],[14.107059524000078,-15.68289640699993],[14.206817777000026,-15.841648163999935],[14.172648612000046,-16.067464956999913],[14.174612357000058,-16.158399181999982],[14.236273954000183,-16.227043812999966],[14.307754277000186,-16.236848237999936],[14.404370538000023,-16.14029112799983],[14.482920343000046,-16.221010077999892],[14.402014043000179,-16.326950604999922],[14.179947722000179,-16.511949499999957],[14.374924150000084,-16.674491263999982],[14.617517387000134,-16.80254531999998],[14.69476774800006,-16.815086520999955],[14.823970105000114,-16.95946662699987],[14.87772912700018,-16.91495400699995],[15.01777364000003,-16.70608015399995],[15.119870608000099,-16.650687967999943],[15.133423303000143,-16.523398457999974],[15.216546497000081,-16.503907947999892],[15.342134802999965,-16.61605971299997],[15.525999695000166,-16.738529050999887],[15.55174981600004,-16.786543273999882],[15.500249575000112,-16.923598057999925],[15.599636004000047,-17.02038427799988],[15.693512100000078,-17.036820098999897],[15.867444932000183,-17.173777507999887],[16.02006245500013,-17.25818371399987],[16.16747349100018,-17.362889320999955],[16.18979859800004,-17.46716311499995],[16.12077619700017,-17.480607434999968],[16.138318237000135,-17.616472875999932],[16.21447539000002,-17.686680330999877],[16.25089780600007,-17.76762120299992],[16.23700847300006,-17.826536650999913],[16.27375810400008,-17.92912351899986],[16.272782260000156,-18.083137336999982],[16.30218017100009,-18.150762929999814],[16.261502206000102,-18.2664982579999],[16.312970585000073,-18.315101357999936],[16.3764000540001,-18.435557584999913],[16.365744277000147,-18.484163312999897],[16.47597836300008,-18.502294270999926],[16.522309299000142,-18.44519993299997],[16.623506609,-18.417808230999924],[16.74396906300018,-18.439460227999973],[16.80493608400019,-18.495627893999824],[16.829581344000076,-18.62060818699996],[16.89338743100018,-18.679661582999927],[16.865797512000086,-18.762616698999977],[16.913754864000055,-18.797851640999966],[17.058735286000058,-18.659816916999944],[17.163581739,-18.626357738999957],[17.18403766700004,-18.696407087999944],[17.371863291000125,-18.655248680999875],[17.50772448800012,-18.649733935999905],[17.60421467000009,-18.7094520629999],[17.69696828200017,-18.710893231999876],[17.994500439000035,-18.823088906999942],[18.160273320000044,-18.845924470999933],[18.246335688000045,-18.910396812999977],[18.341990845999987,-18.93614437499997],[18.624752130000104,-19.130251915999906],[18.681481484000074,-19.343449608999947],[18.815736870000137,-19.33522199299989],[18.913384895999968,-19.305769049999924],[19.006681186000037,-19.313991018999957],[19.13102517400017,-19.24259058699988],[19.156859941000164,-19.167935610999848],[19.39326124900009,-19.16400027599991],[19.51557671600017,-19.34230900499989],[19.777006768000092,-19.340915172999928],[19.84994402500007,-19.25735866499997],[19.92508961600015,-19.262089755999966],[20.005324423000104,-19.220901249999883],[20.008526739000047,-19.165696417999925],[20.533870966,-19.166623889999926],[20.60516085900008,-19.245636265999906],[20.81416561600014,-19.247149435999972],[20.99580403200008,-19.305142262999937],[21.100210653000033,-19.284201467999935],[21.46724403600018,-19.136264542999925],[21.705458904000068,-18.93606721699996],[22.06827286400005,-18.7329584229999],[22.156238140000085,-18.697255688999917],[21.977546524000047,-18.459792211999968],[21.894386003000136,-18.404320499999926],[21.854171525000027,-18.28599707999996],[22.007498710000107,-18.384610109999983],[22.158064675000105,-18.530922054999905],[22.2468627,-18.658270767999966],[22.29890742600014,-18.675284972999975],[22.115249465000147,-18.45598385699998],[22.170363436000116,-18.39702060699983],[22.32370757100017,-18.431265288999953],[22.32684288300004,-18.35301894599985],[22.424628126000187,-18.39231494699993],[22.553754991000176,-18.382590771999958],[22.647801565000123,-18.349523120999947],[22.75910767500011,-18.3461518659999],[22.916019276999975,-18.230199219999975],[23.00539761500005,-18.18354990699993],[23.04701759600016,-18.111639160999914],[23.123963501000105,-18.106252738999956],[23.17814494800001,-18.017947186999947],[23.24670107700007,-18.001271278999923],[23.36906659000016,-17.70347796599998],[23.427842319999968,-17.70348295599996],[23.30775411900015,-17.984917349999932],[23.320099922000168,-18.02169889299995],[23.317776028000083,-18.02372985599993],[23.324697396999966,-18.031882386999882],[23.364469771000074,-18.090646850999917],[23.366704343000038,-18.02424836499995],[23.477429533000077,-17.905076008999856],[23.589567684000087,-17.899601746999963],[23.63700785300017,-17.840615000999946],[23.82351305200001,-17.70736944999993],[23.91263434400014,-17.701300043999936],[24.031423550000056,-17.733335540999974],[24.114149205000047,-17.71297015499988],[24.287312036000117,-17.546714916999974],[24.35201089100019,-17.53834257199992],[24.389153703000147,-17.468679660999896],[24.544166667000127,-17.4783333339999],[24.581666666000046,-17.420833332999962],[24.650833334000026,-17.435833332999948],[24.78718344600003,-17.515833332999932],[24.850833333000026,-17.52873036699998],[24.915930487000082,-17.39333333299993],[24.994166667000115,-17.314999999999827],[24.84333333300009,-17.26166666699993],[24.78,-17.18833333399988],[24.93916666700011,-17.185],[24.97416666700019,-17.08916666599987],[25.05416666600007,-17.183333333999883],[25.10976407300012,-17.1975],[25.116430740000055,-17.190833332999944],[25.1275,-17.119166666999888],[25.26666666600005,-16.9825],[25.280000000000143,-16.921666666999897],[25.22916666700013,-16.7925],[25.01666666699998,-16.89333333299993],[24.96583333300009,-16.986666665999962],[24.890000000000157,-17.046666666999954],[24.763333333000105,-17.035],[24.7650000000001,-17.088333333999856],[24.661666667000134,-17.12249999999983],[24.4583333330001,-17.075833332999878],[24.414166666000142,-17.15416666599998],[24.210833333000096,-17.165],[24.09833333400013,-17.1166666659999],[24.0425,-17.01833333299993],[23.811666666000065,-16.788333332999912],[23.534166666999965,-16.59083333299992],[23.46,-16.48916666599996],[23.405833332999975,-16.351666666999904],[23.494000096000093,-16.334166666999863],[23.473333333000085,-16.26333333399998],[23.37833333300017,-16.19583333399987],[23.4725,-16.149166666999918],[23.51208344900016,-16.048291192999955],[23.484166667000125,-15.884999999999877],[23.605000000000132,-15.665],[23.641666666000106,-15.525],[23.709166666000044,-15.44],[23.79666666700018,-15.221666666999965],[23.797500000000127,-15.140833332999932],[23.88916666700004,-15.083333332999928],[23.925833333000185,-15.021666666999977],[24.02333333300004,-14.98166666599991],[23.86638888900012,-14.905]],[[23.60916666600008,-16.71666666699997],[23.655,-16.740833333999944],[23.65916666700008,-16.827499999999873],[23.76083333300005,-16.8925],[23.8325,-17.07333333299988],[23.93083333300018,-17.18416666599984],[23.944166667000104,-17.31999999999988],[23.815833333000114,-17.28],[23.78583333299997,-17.169166666999956],[23.665000000000134,-17.101666665999915],[23.59500000000014,-16.90416666699997],[23.5208333330001,-16.79166666699996],[23.529166666000094,-16.72166666699985],[23.60916666600008,-16.71666666699997]]],[[[22.0025,-14.809166666999943],[22.000000000000114,-14.936206951999964],[22.055000000000177,-14.935],[22.0025,-14.809166666999943]]],[[[22.56250000000017,-14.95],[22.35,-14.970833332999973],[22.14916666700003,-15.005833332999885],[22.195833333000166,-15.0975],[22.23666666600019,-15.255],[22.12916666700005,-15.280833332999975],[22.19250000000011,-15.41833333399984],[22.031666666000092,-15.5875],[22.095,-15.665833332999966],[22.303333333000182,-15.7075],[22.413333333000082,-15.7],[22.489166666000187,-15.725],[22.49,-15.638333333999924],[22.560833333000176,-15.524166666999974],[22.6075,-15.5075],[22.586666667000145,-15.415],[22.664166667000075,-15.38833333299982],[22.67583333300007,-15.320833332999882],[22.7425,-15.3225],[22.779166666000037,-15.2325],[22.720833334000076,-15.114999999999895],[22.76916666699998,-15.036666666999963],[22.66,-14.963333332999923],[22.56250000000017,-14.95]]],[[[22.171666666000135,-15.14333333399992],[22.035,-15.234166665999851],[22.134166667000045,-15.2525],[22.204166666000162,-15.205833332999873],[22.171666666000135,-15.14333333399992]]],[[[22.78666666700002,-15.249166665999894],[22.751666666000062,-15.338333333999913],[22.69000000000011,-15.390833332999875],[22.6625,-15.470833332999973],[22.830000000000155,-15.611666666999952],[22.942500000000166,-15.785833332999971],[22.900833333000094,-15.805833332999896],[22.886666667000156,-15.900833332999866],[22.7775,-15.8325],[22.683333334000054,-15.811666665999837],[22.600000000000136,-15.86249999999984],[22.72250000000014,-16.004166666999936],[22.86416666700012,-16.046666665999908],[23.0725,-16.070833332999825],[23.126666667000165,-16.0325],[23.125833333000116,-15.921666665999851],[23.03666666700019,-15.8225],[23.030833333000146,-15.758333333999929],[22.94750000000016,-15.628333332999944],[22.94,-15.5275],[22.78666666700002,-15.249166665999894]]],[[[22.055833333000123,-15.31],[22.000000000000114,-15.333333332999928],[22.00083333300006,-15.574999999999875],[22.1525,-15.403333332999978],[22.055833333000123,-15.31]]],[[[22.439166667000052,-15.728333333999899],[22.35083333300014,-15.751666666999881],[22.43250000000012,-15.82666666699987],[22.56250000000017,-16.02833333299992],[22.715,-16.07416666699993],[22.715,-16.01916666699998],[22.55833333300012,-15.820833332999939],[22.48916666700012,-15.7975],[22.439166667000052,-15.728333333999899]]],[[[22.57333333300005,-15.734166665999908],[22.51666666600005,-15.759166666999874],[22.595,-15.8566666669999],[22.7475,-15.785],[22.66666666700013,-15.736666665999905],[22.57333333300005,-15.734166665999908]]],[[[22.78,-16.039166666999904],[22.628333333000114,-16.12],[22.713333333000094,-16.15083333299998],[22.679166667,-16.21666666699997],[22.798333334000176,-16.24583333299995],[23.0183333330001,-16.266666666999924],[23.24166666600013,-16.268333333999976],[23.19250000000011,-16.1875],[23.084166667000147,-16.14249999999987],[23.040833333000137,-16.07583333399998],[22.867500000000177,-16.06749999999988],[22.78,-16.039166666999904]]],[[[22.731666667000184,-16.73916666599996],[22.661666666000087,-16.786666666999963],[22.70083333400015,-16.90416666699997],[22.799166667000122,-17.017499999999814],[22.896666667000147,-17.014999999999816],[22.938333333000116,-16.944166666999934],[22.792500000000132,-16.856666666999956],[22.731666667000184,-16.73916666599996]]],[[[23.098333334000188,-17.08],[23.02,-17.124166666999884],[23.04000000000019,-17.175],[23.098333334000188,-17.08]]],[[[26.159807494000063,-17.914166666999904],[26.099166667000077,-17.931666666999945],[26.026666667000143,-17.868333332999896],[25.90666666700008,-17.823333333999926],[25.87500000000017,-17.733333332999962],[26.000833333000173,-17.595833333999906],[26.025000000000148,-17.491666666999834],[25.915833333000023,-17.44083333299983],[25.541666667000186,-17.44666666699993],[25.5150000000001,-17.48],[25.392500000000155,-17.55166666699995],[25.386666667000043,-17.595],[25.188333334000106,-17.7275],[25.246539598000027,-17.811742787999947],[25.135527890000105,-17.81104947599988],[25.0795143470001,-17.85907412699993],[24.907602335000036,-17.823024338999915],[24.725241584000116,-17.9050069729999],[24.661975368000185,-17.96100697199995],[24.554903269000135,-18.109175552999943],[24.405772881000132,-18.180535260999932],[24.311745670999983,-18.24110894099988],[24.191035978000116,-18.357490216999963],[24.131196269999975,-18.37922948499994],[24.018055661000176,-18.470959377999975],[24.07596473500007,-18.53594189699993],[24.063983066000162,-18.612728805999836],[24.052567352000096,-18.63950796299997],[23.976251431000037,-18.99461474599991],[23.960188390000155,-19.185502976999942],[23.95952013200008,-19.243388714999924],[24.07161925300005,-19.188830140999983],[24.165586678000125,-19.108726460999947],[24.279442781000114,-19.063574484999947],[24.54479521500008,-18.871799845999817],[24.557211535000135,-18.817542853999953],[24.506937873000027,-18.698219929999937],[24.569041537000032,-18.64592617699998],[24.71808095500012,-18.69304982299991],[24.750309786000173,-18.744274308999934],[24.904069541000126,-18.794219351999914],[24.90711695800013,-18.855892527999913],[25.05375651700018,-18.92775233599997],[25.204392126000073,-18.81793042399994],[25.302876677000143,-18.80457200099994],[25.391769252000074,-18.859267652999847],[25.53621582000011,-18.880784468999877],[25.6012583160001,-18.85388932199993],[25.709668610000108,-18.873071241999924],[25.830801979000114,-18.83850334799996],[26.372417746999986,-19.360344708999946],[26.619334950000052,-19.521720753999944],[26.738822413000094,-19.420967767999855],[26.915346944000134,-19.448703153999816],[27.09734874500009,-19.606175387999883],[27.227132837,-19.64836501799988],[27.34150000900013,-19.65199346099996],[27.502615516000162,-19.776928763999933],[27.687097295000115,-19.826756392999926],[27.980970499000136,-19.823979468999937],[28.252472580000074,-19.90755681799982],[28.336503487000073,-19.839686186999927],[28.42599587100017,-19.63003019799993],[28.51350585300014,-19.533642113999974],[28.55376992500004,-19.310323869999934],[28.534376355000177,-19.294656836999934],[28.547289610000064,-19.033579317999965],[28.511476075000076,-18.832343395999942],[28.44781809500006,-18.655605450999815],[28.48411341400015,-18.590942464999955],[28.662620348000132,-18.505409945999872],[28.77300297400012,-18.396171439999932],[28.80780556800005,-18.31463855499993],[28.821224294000103,-18.194945438999923],[28.77000568200009,-18.158789985999874],[28.63077556600018,-18.145518765999952],[28.40105002100006,-18.194895830999883],[28.244420582000146,-18.256331328999977],[27.805354262000094,-18.31411854099997],[27.670104744000184,-18.34583371799988],[27.38965816200016,-18.364678630999833],[27.30711603100002,-18.38153860799997],[27.06495506600004,-18.358213733999946],[26.826277124000057,-18.374251956999956],[26.57467803100002,-18.515606595999884],[26.34545795600019,-18.706368064999936],[26.22512778300006,-18.771021128999905],[26.15948740100015,-18.707551088999935],[26.215172341000027,-18.590674583999828],[26.17141340200004,-18.570988073999956],[25.893956216000106,-18.69145333599988],[25.810418936000133,-18.697066713999902],[25.76860079800008,-18.611829091999823],[25.696460662000106,-18.575769356999956],[25.578598982000017,-18.442563684999982],[25.476358380000136,-18.492722864999962],[25.47672443600004,-18.561558999999875],[25.388096873000052,-18.616953624999894],[25.290708248999977,-18.542436443999975],[25.281572867000136,-18.462603730999945],[25.376050195,-18.441763486999946],[25.421144565000077,-18.37868354699998],[25.518465519000074,-18.36280878799994],[25.450902028000087,-18.212118714999917],[25.513532649000126,-18.19093997799996],[25.826795474000164,-18.135949533999906],[25.952101394000124,-18.12752946599994],[26.085858188000145,-18.078944389999947],[26.14602130000003,-18.012677581999924],[26.159807494000063,-17.914166666999904]],[[24.949706747000164,-18.061392453999872],[24.99947823000008,-18.025808607999977],[25.070136024000135,-18.077634006999972],[25.08011880700019,-18.192165244999842],[25.055838201000086,-18.264064605999977],[24.960590031000038,-18.280455030999974],[24.875093587000038,-18.33088054899997],[24.85214570100004,-18.386835520999966],[24.74762212100012,-18.43769739499993],[24.724426941000104,-18.383414710999944],[24.78309309399998,-18.331120471999952],[24.799791001000187,-18.260333594999906],[24.865084249000176,-18.223798906999946],[24.949706747000164,-18.061392453999872]]],[[[24.31020094600018,-17.586376526999913],[24.20622435900009,-17.63934138899998],[24.125458450000053,-17.713030715999935],[24.17255198000015,-17.75546275199997],[24.237309645000153,-17.648594735999836],[24.31020094600018,-17.586376526999913]]],[[[24.611136868000187,-17.704053183999974],[24.546832130000155,-17.718689318999964],[24.51657644700009,-17.76378279599993],[24.508191734000093,-17.767754107999906],[24.490388519000078,-17.793720648999965],[24.583601470000076,-17.860387041999957],[24.624669806999975,-17.925751813999966],[24.628402718000018,-17.923641613999962],[24.621467695000092,-17.89950934999996],[24.613610999000173,-17.875132476999966],[24.59155681100009,-17.85225831199989],[24.6226786630001,-17.859181667999962],[24.68687274600012,-17.883579857999905],[24.65569945900006,-17.857768303999876],[24.66720908900004,-17.850109993999865],[24.658110001000182,-17.81994969699997],[24.616791795000097,-17.72580327299994],[24.612535175000176,-17.705994468999847],[24.611136868000187,-17.704053183999974]]]]},"properties":{"objectid":814,"eco_name":"Zambezian Baikiaea woodlands","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Afrotropic","eco_biome_":"AF07","nnh":2,"eco_id":64,"shape_leng":250.402325017,"shape_area":30.4756779546,"nnh_name":"Nature Could Reach Half Protected","color":"#CF7B01","color_bio":"#FEAA01","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":360537.2825045337,"percentage":1.681687660158376}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[34.591152614000066,-21.32888081199991],[34.672809450000045,-21.305252226999926],[34.945098592000136,-21.14773480799994],[34.958015608000096,-21.079367647999902],[35.083480461000136,-21.078791642999875],[35.06520730300008,-21.007828273999905],[34.81048153900008,-21.002711789999978],[34.69569003200013,-21.02246672399997],[34.60438604700016,-21.14381311999989],[34.420903365000186,-21.173112642999968],[34.25780545500004,-21.161445244999868],[34.25781335100015,-21.297206347999975],[34.28566174300005,-21.340588923999917],[34.390787992000014,-21.368080124999835],[34.591152614000066,-21.32888081199991]]],[[[34.3506365,-19.85423021599985],[34.4499125160001,-19.922244906999822],[34.594242519000034,-19.946401719999983],[34.712318556000184,-19.894891403999907],[34.65531558000015,-19.772307746999957],[34.47935847700012,-19.651418574999923],[34.51017756200008,-19.57745397899987],[34.596477469000035,-19.595944791999955],[34.73825048900005,-19.70072880799995],[34.89235647200002,-19.706892356999845],[34.93966259300004,-19.668713625999885],[34.75288747100018,-19.383509143999902],[34.71110955100005,-19.219978715999844],[34.66342155100017,-19.15747134399993],[34.58314152600019,-19.112637884999856],[34.4991375890001,-19.10433544199998],[34.409356501000104,-19.27888240099992],[34.36660060700012,-19.406203593999862],[34.310911719000046,-19.455199547999882],[34.26218887699997,-19.58292169699996],[34.26617342300017,-19.695788645999926],[34.3506365,-19.85423021599985]]],[[[35.397861510000155,-17.9602618159999],[35.38956459900015,-18.075532598999928],[35.4522325690001,-18.386132067999938],[35.56939648800011,-18.792091945999914],[35.648410510000076,-18.961013781999952],[35.7183496130001,-18.954913264999846],[35.773826580000105,-18.880948501999967],[35.903270490000125,-18.88711221799997],[36.051212590000034,-18.770001272999934],[36.032718591000105,-18.56043156499993],[36.100830607000034,-18.390386721999903],[36.207496528000036,-18.40677367799998],[36.38570752400011,-18.530156297999895],[36.45804251000004,-18.437157908999893],[36.59365449600011,-18.375519571999916],[36.68726761400006,-18.367009090999943],[36.76517857700014,-18.28917389999998],[36.64296757900007,-18.18444302499995],[36.67995054700009,-18.1166411399999],[36.79090448199997,-18.141295836999973],[36.84638245500008,-18.104314880999937],[36.821727590000194,-17.99336765099997],[36.84638245500008,-17.894745842999896],[36.95733655800018,-17.974874825999905],[37.123767459000135,-17.752979193999977],[37.03130752400011,-17.72832483199994],[37.03130752400011,-17.64819668699994],[36.83654059200012,-17.566589806999957],[36.57606859200007,-17.53444654999987],[36.28683057100011,-17.671729382999956],[36.20096954000019,-17.72605685699989],[36.06365954900008,-17.87430791399987],[35.97060047400004,-17.920925208999904],[35.87471049700008,-17.934214213999894],[35.51409151700011,-17.933026329999905],[35.397861510000155,-17.9602618159999]]]]},"properties":{"objectid":815,"eco_name":"Zambezian coastal flooded savanna","biome_num":9,"biome_name":"Flooded Grasslands & Savannas","realm":"Afrotropic","eco_biome_":"AF09","nnh":3,"eco_id":75,"shape_leng":11.4087614435,"shape_area":1.65912877377,"nnh_name":"Nature Could Recover","color":"#439CD4","color_bio":"#BEE7FF","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":19472.752195284247,"percentage":1.6839654711454697}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[33.42861288700004,-24.747057044999963],[33.493408449000185,-24.72667168099997],[33.529571500000145,-24.63165559999993],[33.587841485000126,-24.56939951699985],[33.67724957000007,-24.623295992999886],[33.74861158500005,-24.60726761399991],[34.14754156100014,-24.334110944999964],[34.27344847600017,-24.17556791699991],[34.264659548000054,-24.07466287799997],[34.20970946700015,-23.89157193799997],[34.2748485890001,-23.809337085999914],[34.34238845600004,-23.820855664999954],[34.43896055400006,-23.95544991899982],[34.500110561000156,-23.98348855899991],[34.57770955000012,-23.96183961199995],[34.73638953800014,-23.737569889999975],[34.78253945900008,-23.61904676099988],[34.79594061400019,-23.443865654999968],[34.78876855400006,-23.238646322999955],[34.735828454000114,-22.83649601899998],[34.66431053499997,-22.57570064499987],[34.58810059500007,-22.54987130799998],[34.39363859700006,-22.61401767699988],[34.26126051800003,-22.591280088999838],[34.24694053999997,-22.519193876999964],[34.30184954900005,-22.42260903899995],[34.521461615000135,-22.211320034999915],[34.57841849100009,-22.135583001999976],[34.50014861500006,-21.860717932999876],[34.51646046900004,-21.643059856999912],[34.591152614000066,-21.32888081199991],[34.390787992000014,-21.368080124999835],[34.28566174300005,-21.340588923999917],[34.1986453880001,-21.374719755999934],[33.9152173060001,-21.427705421999974],[33.704387755000084,-21.487126219999936],[33.594498756,-21.53410747399988],[33.53682351700007,-21.628490780999982],[33.62335808900019,-21.860258855999973],[33.63729018100008,-22.017711247999955],[33.54978809500017,-22.24986043599995],[33.43692549100018,-22.466743546999908],[33.35737670400016,-22.653104426999903],[33.29076486100007,-22.985671097999955],[33.300143990000095,-23.040240017999963],[33.37529729000016,-22.991304318999937],[33.55430574700006,-22.979275651999956],[33.66420659000005,-23.135936053999956],[33.77859745000018,-23.54684780799988],[33.79601256500018,-23.743663296999898],[33.783095362000154,-23.93686026499995],[33.68863512600012,-24.22604436099988],[33.6259880880001,-24.332075221999844],[33.50715458700017,-24.481478736999975],[33.44102847500005,-24.616027052999925],[33.42861288700004,-24.747057044999963]]],[[[34.26617342300017,-19.695788645999926],[34.20700546000012,-19.773302053999885],[33.99418561100009,-19.810229652999965],[33.93738325600003,-19.898861499999953],[33.877039792000176,-20.045784714999968],[33.85080350400011,-20.208449702999815],[33.85228191600004,-20.32737482099992],[33.85542340100017,-20.34493391399991],[33.881852165,-20.575780478999945],[34.00568115200008,-20.822012720999908],[33.95596316100017,-20.93848826999988],[33.73071578700012,-21.038475032999884],[33.174790474000076,-20.996636750999926],[33.048986980000166,-20.99943351899998],[32.83368320500011,-21.076125171999877],[32.719316032999984,-21.072496728999965],[32.67356284700014,-20.962436467999908],[32.500023764,-20.96844088099988],[32.15990769600006,-20.991295348999927],[31.919740978000164,-21.058344224999928],[31.825268898,-21.143886665999958],[31.80439050000001,-21.247110837999855],[31.823788018000073,-21.33065842199983],[31.922244643000113,-21.35798293099998],[32.05997413900002,-21.218623148999882],[32.208148755000025,-21.129472107999902],[32.3438958480001,-21.10338022999997],[32.44085974900014,-21.11383483999998],[32.716342428000075,-21.24239858599998],[32.80684575400011,-21.31551140399995],[32.89336848200014,-21.343637823999927],[33.04005432200006,-21.305497435999882],[33.21956035400012,-21.29909206799988],[33.44481562300001,-21.334866408999915],[33.64719429900009,-21.315610618999983],[33.87492954600003,-21.243740353999954],[34.13299711000013,-21.17548861199998],[34.25780545500004,-21.161445244999868],[34.420903365000186,-21.173112642999968],[34.60438604700016,-21.14381311999989],[34.69569003200013,-21.02246672399997],[34.471099192,-20.722857632999876],[34.374621022000156,-20.514384667999877],[34.375106753000125,-20.3163663119999],[34.40176556000006,-19.948710447999872],[34.3506365,-19.85423021599985],[34.26617342300017,-19.695788645999926]]],[[[35.075,-16.595833332999916],[35.11916666600007,-16.81666666699988],[35.15666666600009,-16.8325],[35.16666666700013,-16.936666666999884],[35.061666667000054,-16.996666665999896],[35.06416666700011,-17.052499999999895],[35.16416666600014,-17.123333332999948],[35.21250000000015,-16.928333332999955],[35.28083333300003,-16.849166666999906],[35.25083333300012,-16.73166666599991],[35.075,-16.595833332999916]]],[[[31.74044826900007,-16.18297315799998],[31.591772130000038,-16.198620346999917],[31.280002028000183,-16.270480689999943],[30.995085170000095,-16.374477008999975],[30.745468480000056,-16.40256374299986],[30.575408472000106,-16.38005070099996],[30.436174408,-16.298898928999904],[30.26313290000013,-16.31052664099991],[30.10550831200004,-16.360715538999955],[29.994620215000054,-16.328569641999934],[29.792727269000068,-16.1498070749999],[29.616198790000055,-16.054191137999965],[29.440171833000136,-16.032079050999982],[29.32083286200009,-16.040098162999982],[29.13834533000005,-16.08064428399996],[28.94889964900011,-16.178225313999974],[28.87232841500014,-16.26256488799993],[28.84945971800005,-16.34329586199982],[28.849965188000112,-16.484680264999895],[28.90665317400004,-16.514811462999944],[28.894723225000178,-16.583493925999903],[28.794284196000035,-16.669437321999965],[28.69085972000005,-16.721640919999913],[28.606327291000127,-16.716007698999874],[28.517316689000154,-16.659764779999932],[28.414397683000118,-16.853352781999945],[28.294565084999988,-16.92362914599994],[28.223952904000043,-16.87180665999989],[28.113068755000086,-16.907541314999946],[28.12600964500001,-17.121627658999955],[28.000711621000164,-17.26580882999997],[27.809777163000035,-17.41440051199993],[27.564145019000023,-17.55535419499995],[27.407018005000054,-17.611166393999895],[27.327461323000136,-17.661766168999918],[27.342384617000164,-17.76258460799994],[27.536312419000183,-17.783493827999962],[27.56316566100014,-17.81562980299998],[27.56217840800008,-17.9401443079999],[27.509474968000177,-18.022880058999874],[27.566166901000145,-18.120891808999886],[27.527881284000046,-18.163061595999977],[27.362295501,-18.123277698999857],[27.28224124400009,-18.168254174999845],[27.245440455000107,-18.09153275799997],[27.287702722000063,-18.026468815999976],[27.25537221000019,-17.86459599199992],[27.14249776200012,-17.87783744799998],[27.079353149000042,-17.978245009999966],[26.92471400900007,-18.062173705999953],[26.71587081000007,-18.07620715199988],[26.671124617000146,-18.181035145999886],[26.812348980000138,-18.28468011699988],[26.826277124000057,-18.374251956999956],[27.06495506600004,-18.358213733999946],[27.30711603100002,-18.38153860799997],[27.38965816200016,-18.364678630999833],[27.670104744000184,-18.34583371799988],[27.805354262000094,-18.31411854099997],[28.244420582000146,-18.256331328999977],[28.40105002100006,-18.194895830999883],[28.63077556600018,-18.145518765999952],[28.77000568200009,-18.158789985999874],[28.821224294000103,-18.194945438999923],[28.80780556800005,-18.31463855499993],[28.77300297400012,-18.396171439999932],[28.662620348000132,-18.505409945999872],[28.48411341400015,-18.590942464999955],[28.44781809500006,-18.655605450999815],[28.511476075000076,-18.832343395999942],[28.547289610000064,-19.033579317999965],[28.534376355000177,-19.294656836999934],[28.55376992500004,-19.310323869999934],[28.66365497700008,-19.195462063999912],[28.87597330300008,-19.0850306129999],[29.073869859000183,-18.94728457399998],[29.538782428000104,-18.70674508299993],[29.655135951000034,-18.664986172999875],[29.72425540800009,-18.699938759999952],[29.773985244000187,-18.787104865999936],[29.807820323999977,-19.169489244999966],[29.80485066700004,-19.407271653999942],[29.853589301,-19.551071712999885],[29.841173621000166,-19.817772531999935],[29.808369222000124,-20.057559718999983],[29.88495230000018,-20.17686180099986],[29.925733686000115,-20.298569615999952],[29.932206105000148,-20.43955306399988],[29.98143441800005,-20.453215317999934],[30.105753084000014,-20.56930975499995],[30.178363460000185,-20.779386542999873],[30.342460467000137,-20.87018109299993],[30.65771753900009,-20.905564398999957],[30.844679296000038,-20.847747422999873],[30.98191911300006,-20.838525444999902],[31.10921138300006,-20.784718023999915],[31.257887522000033,-20.76907083499998],[31.50402119,-20.701621002999957],[31.632300714000166,-20.523299078999912],[31.73024397300003,-20.27347807999996],[31.801839459000064,-20.132905509999887],[31.79487341300012,-20.054179313999953],[31.682986219000043,-19.942906264999976],[31.55817392600011,-19.889069079999956],[31.333420180000076,-19.92679859099991],[31.28966124100009,-19.90711208199997],[31.362251877000062,-19.77778610999991],[31.660097782000094,-19.684234478999883],[31.845570763000183,-19.677428155999905],[31.986783281000157,-19.577431470999898],[31.944011596000166,-19.43323045699998],[31.797811486000114,-19.273352488999876],[31.786868791000074,-19.217520447999902],[31.84802705300018,-19.162500239999872],[32.00118136400016,-19.197462746999975],[32.25031627100003,-19.435274920999973],[32.326891453000144,-19.41881589899998],[32.403462687000115,-19.334476325999844],[32.47556759300005,-19.40316870999993],[32.45121406700014,-19.6027908879999],[32.421880847000125,-19.678299517999903],[32.37714255100019,-19.918888615999947],[32.26826054400016,-20.180758124999898],[32.27822783000005,-20.564746326999966],[32.25585670800007,-20.651100599999893],[32.31603166400015,-20.788475446999882],[32.48907712100015,-20.844728286999953],[32.63774536400018,-20.69331999399992],[32.616851174000146,-20.525021958999957],[32.68795303400003,-20.446706640999878],[32.801313213000014,-20.235446828999955],[32.75406730300011,-20.108516669999972],[32.61334446400008,-20.07837554999992],[32.5054339190001,-19.94420834699997],[32.551171313000054,-19.782746399999894],[32.555144014000064,-19.69197169399996],[32.52479195700005,-19.348950412999898],[32.63914333700012,-19.081056648999834],[32.74306538900004,-19.03447634999992],[32.79181981400012,-19.449798615999953],[32.852985972000056,-19.530539510999972],[32.91862240600017,-19.526129],[33.14985252000014,-19.69726348899991],[33.25725759400012,-19.690046287999962],[33.40294038900004,-19.504898196999875],[33.41636306200013,-19.453085632999944],[33.53171354000011,-19.26431901999996],[33.57645973200016,-19.159491024999966],[33.671425438000085,-19.01169133299993],[33.72065375100016,-19.02535358699987],[33.72314557200019,-19.121350636999978],[33.792770500000074,-19.29768762699996],[33.69530902400004,-19.281609717999913],[33.68686604600009,-19.457535830999916],[33.46361292000006,-19.647896343999832],[33.30947530200018,-19.80532889299991],[33.28362115699997,-19.852320067999813],[33.09169549799998,-20.05754570299996],[33.061367128000086,-20.12180773299997],[33.12402206200005,-20.15153797499994],[33.31993226700001,-20.059179289999975],[33.325903164000124,-20.126658885999973],[33.1633107240001,-20.25637589199988],[33.09220886400004,-20.334691209999903],[33.11409425599999,-20.446355292999954],[33.2647567460001,-20.38532074999995],[33.396025666000185,-20.308619175999922],[33.49099532000008,-20.228700034999974],[33.61380547100009,-20.05640236499994],[33.835064350000096,-19.775668100999894],[33.84400885100001,-19.673245839999822],[33.900187418000144,-19.49411208199996],[33.957862657000135,-19.39972877599996],[33.99016948100018,-19.15431828899989],[33.97524618800003,-19.05349984999998],[34.007063334000065,-18.93822716699998],[34.08213789600018,-18.76913714199992],[34.20196259800014,-18.56309967499982],[34.172119958999986,-18.429343348999907],[34.180069311000125,-18.3156744879999],[34.22382035400017,-18.199599893999903],[34.163151771000116,-18.124482298999965],[33.95131917500015,-18.036895393999885],[33.958767004000094,-17.84972268199988],[34.04776576100011,-17.702323944999875],[34.02289492200009,-17.55692006399994],[33.89559475500005,-17.474966380999945],[33.71857265,-17.44160769499996],[33.64149594500003,-17.384562865999897],[33.65342194600015,-17.247999850999975],[33.58430248900004,-17.213047263999954],[33.40032223300011,-17.23672348699995],[33.32921247700011,-17.17927770199998],[33.328213380000136,-17.10015054999991],[33.250141526,-17.031859120999968],[33.104446887000165,-17.01336555699993],[33.04428377500011,-17.079632364999952],[32.99307700700007,-17.247118566999973],[32.86926775900008,-17.34028908499988],[32.786733525000045,-17.492910166999934],[32.67734604800006,-17.613395271999934],[32.53214503500004,-17.5326444559999],[32.350656601000026,-17.652317727999957],[32.26910567200008,-17.612543752999898],[32.31534458800019,-17.524585657999978],[32.50527994900017,-17.29686682399995],[32.521684123000114,-17.210913505999883],[32.60024565600003,-17.149067130999924],[32.63703460000016,-17.02214689399989],[32.508739284000114,-16.9289466109999],[32.370002796000165,-16.853418137999938],[32.28099614200016,-16.86505577199989],[32.19597403400013,-16.989560353999934],[32.04780336500005,-17.146591946999933],[31.968744258000186,-17.20281502299997],[31.896145725,-17.196379889999946],[31.93790252200006,-16.989931544999877],[31.823539296999968,-17.054183653999928],[31.709677596,-17.19193961399992],[31.619182166000087,-17.254587899999876],[31.559508732999973,-17.19071690399994],[31.776790963000053,-16.932876793999924],[31.79568301000006,-16.87503997499988],[31.781249395000145,-16.6440837319999],[31.807103540000185,-16.59709255699994],[31.772285155000077,-16.40710323399992],[31.81802649600013,-16.313521838999918],[31.791169305999972,-16.21350531099995],[31.74044826900007,-16.18297315799998]],[[28.54867179200005,-17.149793764999913],[28.710273029000064,-17.076710711999908],[28.837573196000108,-17.158664394999903],[28.93453709700009,-17.169119004999914],[29.02006862400009,-17.253879376999976],[29.149852716000055,-17.29606900699997],[29.20455829800011,-17.43946810999995],[29.15981210600006,-17.544296104999944],[29.069818199000167,-17.68044824299983],[28.955956497000102,-17.81820420299988],[28.79485678200018,-17.96479110699994],[28.6526491140001,-18.053541192999944],[28.595961129000045,-18.023409994999952],[28.532303149000086,-17.846672048999892],[28.48206784400014,-17.618121539999834],[28.359241901000132,-17.518897001999903],[28.312501462,-17.53335124599994],[28.261788322000086,-17.638580195999964],[28.20660490400013,-17.828960552999945],[28.195674052000072,-17.97677016699987],[28.134519738999984,-18.099670927999966],[28.076342977000024,-18.120550382999966],[27.894846647000065,-18.104462551999973],[27.805338470000038,-18.04259633399988],[27.800358775000063,-17.91848278499998],[27.97985296300004,-17.708435760999976],[28.08376711800014,-17.5260943589999],[28.148905978000073,-17.51606054799987],[28.350779183000157,-17.35542035499998],[28.29408725000019,-17.257408604999966],[28.330880143,-17.19836891899996],[28.45320061500007,-17.156209053999874],[28.54867179200005,-17.149793764999913]],[[32.65000707400003,-17.779277651999905],[32.72608862900012,-17.825075882999954],[32.751464940000176,-18.111864166999965],[32.75346313400013,-18.270118468999954],[32.70523786700011,-18.403463917999943],[32.75248377700018,-18.530394076999926],[32.75348682200013,-18.677401780999958],[32.636647568000114,-18.917179045999887],[32.54317063800005,-19.01396808599992],[32.468084232000024,-18.979416454999978],[32.44569337000013,-18.726367968999966],[32.46259511900013,-18.646037950999983],[32.4536348260001,-18.47693800499991],[32.48793589700006,-18.321901268999966],[32.50135067500008,-18.13432760099994],[32.59432213399998,-17.896154157999888],[32.58934638700015,-17.839921160999893],[32.65000707400003,-17.779277651999905]],[[32.87277447000008,-17.786935494999966],[32.927472156000135,-17.794573493999906],[32.99460526300004,-17.87491343299996],[33.01699217600003,-18.060081366999952],[32.98318868000018,-18.220741402999977],[32.9115852970001,-18.225552869999945],[32.872296635000055,-18.120714953999823],[32.81062105900014,-17.830709103999936],[32.87277447000008,-17.786935494999966]],[[34.00106085400006,-18.32770315599987],[33.99012605400003,-18.407632217999947],[33.89067822700002,-18.436941661999867],[33.84840806500006,-18.36624449999988],[34.00106085400006,-18.32770315599987]]],[[[30.17,-15.454166666999981],[30.165000000000134,-15.531666666999968],[30.01083333300005,-15.54833333299996],[29.956666666000103,-15.6175],[30.25833333300011,-15.6275],[30.17,-15.454166666999981]]],[[[28.095833333000087,-15.334166666999977],[28.212500000000148,-15.34166666699997],[28.192500000000166,-15.256666666999877],[27.97083333300003,-15.265833332999932],[28.095833333000087,-15.334166666999977]]],[[[25.682500000000175,-15.770833333999974],[25.35583333400018,-15.541666665999912],[25.214166666000096,-15.389166666999927],[25.253333333000057,-15.3525],[25.185833334,-15.2525],[25.106666667000127,-15.241666666999834],[24.935833333000176,-15.235833332999903],[24.94583333300011,-15.145],[24.76250000000016,-15.004166665999946],[24.84583333300003,-14.974166666999906],[24.868333333000066,-15.076666666999927],[25.08,-15.2075],[25.2125,-14.970833332999973],[25.201666666,-14.887499999999875],[25.04583333400018,-14.651666666999972],[24.875833333000116,-14.590833332999978],[24.8225,-14.581666665999933],[24.69166666700005,-14.656666665999865],[24.612500000000182,-14.5725],[24.445000000000107,-14.645833332999928],[24.285833333000085,-14.5875],[24.110833334000063,-14.58416666699992],[24.040833334000183,-14.6575],[23.980833333000078,-14.635],[24.020833333000155,-14.535833332999914],[23.978333332999966,-14.484166666999897],[24.009166667000102,-14.385833333999926],[23.898333334000085,-14.321666666999931],[23.77833333300009,-14.312499999999886],[23.728333333000023,-14.4025],[23.787389785000187,-14.440833333999876],[23.749166667,-14.514166666999927],[23.8125,-14.5875],[23.741666667000118,-14.695833332999939],[23.840384723000057,-14.809999999999889],[23.862500000000125,-14.895],[23.86638888900012,-14.905],[24.02333333300004,-14.98166666599991],[23.925833333000185,-15.021666666999977],[23.88916666700004,-15.083333332999928],[23.797500000000127,-15.140833332999932],[23.79666666700018,-15.221666666999965],[23.709166666000044,-15.44],[23.641666666000106,-15.525],[23.605000000000132,-15.665],[23.484166667000125,-15.884999999999877],[23.51208344900016,-16.048291192999955],[23.4725,-16.149166666999918],[23.37833333300017,-16.19583333399987],[23.473333333000085,-16.26333333399998],[23.494000096000093,-16.334166666999863],[23.405833332999975,-16.351666666999904],[23.46,-16.48916666599996],[23.534166666999965,-16.59083333299992],[23.811666666000065,-16.788333332999912],[24.0425,-17.01833333299993],[24.09833333400013,-17.1166666659999],[24.210833333000096,-17.165],[24.414166666000142,-17.15416666599998],[24.4583333330001,-17.075833332999878],[24.661666667000134,-17.12249999999983],[24.7650000000001,-17.088333333999856],[24.763333333000105,-17.035],[24.890000000000157,-17.046666666999954],[24.96583333300009,-16.986666665999962],[25.01666666699998,-16.89333333299993],[25.22916666700013,-16.7925],[25.280000000000143,-16.921666666999897],[25.378333333000114,-16.89166666699998],[25.431666667000115,-16.811666666999884],[25.573333334000097,-16.7925],[25.628333333000057,-16.71],[25.86166666700018,-16.6725],[25.873333333000176,-16.728333332999966],[25.983333333000132,-16.67666666699995],[25.988333333000128,-16.552499999999895],[25.84333333300009,-16.43749999999983],[25.950833333000105,-16.293333332999907],[25.944166667000047,-16.17666666599996],[26.1400000000001,-16.04833333299996],[26.15750000000014,-15.992696758999898],[26.13416666700016,-15.916666666999959],[26.0316771090001,-15.878333333999933],[25.92083333300019,-15.874999999999886],[25.80500000000012,-15.859166666999897],[25.682500000000175,-15.770833333999974]],[[25.38666666600011,-15.778333332999978],[25.32166666700016,-15.99833333399988],[25.320833333000166,-16.13333333299994],[25.245,-16.11916666699983],[25.1425,-16.040833332999966],[25.239166666000187,-15.835833332999925],[25.38666666600011,-15.778333332999978]],[[25.04166666700013,-16.13916666699987],[24.955833334000033,-16.08416666599993],[24.965833334000024,-16.005],[25.11500000000018,-16.0416666669999],[25.04166666700013,-16.13916666699987]],[[24.993333334,-15.951666665999937],[24.987500000000182,-15.874999999999886],[24.898333333000153,-15.835833333999915],[24.89166666600005,-15.779166666999913],[24.9625,-15.74583333299995],[25.050833334000174,-15.803333332999898],[24.993333334,-15.951666665999937]],[[24.435833333000062,-15.52833333399991],[24.37000000000012,-15.485],[24.44416666700016,-15.419166665999967],[24.42916666600013,-15.335833333999915],[24.445833334000156,-15.18333333299995],[24.479166666000026,-15.144166666999979],[24.5825,-15.241666666999834],[24.596666665999976,-15.303333332999841],[24.680833334000113,-15.351666665999915],[24.659166667000022,-15.429166666999947],[24.58583333399997,-15.524166665999871],[24.509166667000045,-15.501666666999938],[24.435833333000062,-15.52833333399991]],[[24.35,-15.092499999999859],[24.25,-15.089999999999861],[24.160833333000028,-14.980833333999954],[24.206666667000093,-14.921666665999965],[24.311666667000054,-15.004999999999882],[24.35,-15.092499999999859]],[[24.428333333000182,-14.884166665999942],[24.413333333000026,-14.741666665999844],[24.477500000000134,-14.773333332999982],[24.428333333000182,-14.884166665999942]]],[[[23.6625,-14.297499999999843],[23.590833334000024,-14.289166665999915],[23.569166667000104,-14.3675],[23.5925,-14.406666665999978],[23.600833333000082,-14.450833332999935],[23.612500000000182,-14.455],[23.607500000000186,-14.355],[23.6625,-14.297499999999843]]],[[[34.99916666700011,-14.165],[34.97,-14.166666666999959],[34.93166666700017,-14.275833332999923],[34.84166666700003,-14.233333333999951],[34.82333333300011,-14.361666665999905],[34.92083333300013,-14.4675],[34.906666667000025,-14.5425],[34.76250000000016,-14.564166666999881],[34.91,-14.813333332999889],[35.00250000000011,-14.889999999999873],[35.03083333300009,-14.9725],[35.02833333400008,-15.109166666999954],[35.155,-15.025],[35.19416666700016,-14.945],[35.16500000000019,-14.79833333299996],[35.19000000000011,-14.6775],[35.181666667000115,-14.59833333399996],[35.183333334000054,-14.589166666999915],[35.181666667000115,-14.45],[35.1125,-14.390833332999932],[35.069166666,-14.2575],[34.97416666600009,-14.215833333999967],[34.99916666700011,-14.165]]],[[[31.951666666000108,-14.002499999999884],[31.896666667000147,-13.988333333999947],[31.86,-14.084166666999977],[31.951666666000108,-14.002499999999884]]],[[[31.533333333000144,-13.894166666999865],[31.56416666700011,-13.846666666999965],[31.519166667000036,-13.725833333999958],[31.465833334000138,-13.715],[31.316666666000174,-13.85],[31.25,-13.783333332999916],[31.159166667000136,-13.8875],[31.06416666600012,-13.894166666999865],[30.875833333000173,-13.97],[30.75000000000017,-14.155833333999851],[30.709166667000147,-14.2625],[30.635434310000107,-14.3425],[30.635833333,-14.34193820299987],[30.636038136000025,-14.34166666699997],[30.735000000000184,-14.2725],[30.780833333000032,-14.201666666999927],[30.863333333000128,-14.184166665999896],[31.033333333000087,-14.043333332999907],[31.2875,-13.923333333999949],[31.476666666000142,-13.923333333999949],[31.533333333000144,-13.894166666999865]]],[[[31.86750000000012,-13.623333332999948],[31.829166667000038,-13.655833332999862],[31.7650000000001,-13.83416666699992],[31.81083333300012,-13.849166666999963],[31.87166666700017,-13.7575],[31.86750000000012,-13.623333332999948]]],[[[21.975566711000113,-13.983513176999963],[21.918849861000126,-13.913083293999875],[21.750703985000087,-13.803546124999968],[21.63009396800004,-13.704347740999935],[21.59048174100019,-13.573427],[21.68699885200016,-13.467760591999877],[21.57024614200003,-13.380054270999892],[21.426394508000158,-13.37076916299992],[21.42464807100015,-13.229293649999931],[21.32562342199998,-13.137089573999958],[21.24273657200007,-12.928032453999947],[20.992062675000057,-12.762135452999814],[20.941687641000044,-12.694340195999871],[20.83958362700008,-12.718171390999942],[20.662071842000046,-12.814950508999914],[20.525835071000074,-12.971180190999974],[20.596952723000015,-13.164387079999926],[20.596960619000185,-13.300148182999862],[20.51044578600016,-13.407782866999923],[20.422931857000094,-13.436290399999905],[20.33840337500004,-13.498537729999896],[20.30907015500003,-13.574046359999898],[20.34487974300015,-13.707401729999901],[20.326986793000117,-13.844365700999845],[20.166372808000062,-13.792934248999927],[20.06145955599999,-13.896148499999981],[19.934653016000027,-13.751937563999945],[19.869016582000086,-13.756348075999938],[19.746202484000094,-13.860765192999963],[19.608457196000074,-13.728602767999973],[19.53138838700005,-13.80731904199996],[19.450832607999985,-13.778791666999837],[19.425961768000093,-13.633387785999957],[19.311590648000163,-13.56187879099997],[19.2489396630001,-13.600029099999972],[19.255905708000114,-13.678755295999906],[19.363322626000183,-13.875179750999962],[19.307637686000135,-13.992056256999888],[19.16692274200011,-14.097676240999874],[19.01178602800013,-14.175981637999882],[18.95161896700006,-14.174367893999943],[18.76911169600004,-13.875511255999982],[18.67413414600003,-13.819669292999947],[18.593582314000173,-13.8590224699999],[18.594581412000082,-13.93814962099998],[18.75271936600018,-14.165106228999946],[18.771125682000047,-14.305287765999935],[18.721407690999968,-14.421763315999954],[18.65626488400011,-14.363916574999905],[18.6224455950001,-14.253054403999897],[18.565263983000023,-14.285180457999957],[18.523503239000092,-14.423748250999893],[18.39571339400004,-14.47193237099998],[18.293773746,-14.405244764999964],[18.209241316000032,-14.399611542999878],[18.20676133900008,-14.507256148999943],[18.1605224220001,-14.595214243999976],[18.070524567,-14.6634858299999],[17.917374203000122,-14.696403873999941],[17.76471351800012,-14.599184113999911],[17.62746580600009,-14.472644988999889],[17.51459135800002,-14.485886443999902],[17.44797161800011,-14.682692011999904],[17.410183576000065,-14.730485098999964],[17.32664629600015,-14.736098476999928],[17.286374328000136,-14.823655616999929],[17.328158760000065,-15.09237113499995],[17.404248211000038,-15.273930468999936],[17.40074675799997,-15.364186116999917],[17.492272259000117,-15.387826607999898],[17.638767661000088,-15.47120945599994],[17.844150547000027,-15.613849064999954],[17.956481992000022,-15.74992129899988],[18.06006055600011,-15.83009803099992],[18.138629512000023,-15.934348607999937],[18.28013045500012,-16.07345953499987],[18.491329437000104,-16.314693557999874],[18.7331195160001,-16.532029601999966],[18.877630567000097,-16.63751518299989],[19.022989532000054,-16.76589626799995],[19.25823954800012,-16.937905326999953],[19.378530587000057,-16.96256404799982],[19.57184057600017,-16.937735509999925],[19.7485505410001,-16.885057762999907],[20.22957958300009,-16.861080322999953],[20.454870556000117,-16.861229352999942],[20.88783055700003,-16.835601851999854],[21.139350516000093,-16.773545760999866],[21.345230510000135,-16.70065924499994],[21.504089536000038,-16.628483849999952],[21.789640526000028,-16.54913974899989],[21.850509572000192,-16.500241904999882],[21.618070511999974,-16.375779694999892],[21.483329574000095,-16.25413732499993],[21.41122056400019,-16.13862564699997],[21.205999555000062,-15.690003892999925],[21.119680537000022,-15.471046955999896],[21.19116056900009,-15.439439972999935],[21.30835952400014,-15.598729995999975],[21.39328044100006,-15.741340702999935],[21.51849953700014,-15.846144164999941],[21.626140440000142,-15.814835911999978],[21.578286501000093,-15.684223843999973],[21.482011844000112,-15.516232531999947],[21.331809574999966,-15.273389608999935],[21.135509593000165,-15.001868248999926],[21.07298059500016,-14.815909188999967],[21.015459450000094,-14.34328032299993],[21.161619557000108,-14.391438044999973],[21.261020547000044,-14.336891803999947],[21.07512049500008,-14.203489288999947],[21.049940588000084,-14.11022670199992],[21.114910563000024,-14.107516832999977],[21.251180528000077,-14.173041354999896],[21.329610499000125,-14.156532358999868],[21.35445948900019,-14.097567345999948],[21.12207055200014,-13.856443292999927],[21.163099466000062,-13.763858466999977],[21.404319575000045,-13.794656428999929],[21.572509503000163,-13.898970554999948],[21.794990527000095,-14.006142407999903],[21.97281059200003,-14.036001428999896],[21.975566711000113,-13.983513176999963]]],[[[32.90416666700003,-10.748333332999948],[32.900833333000094,-10.901666665999926],[32.98583333400012,-10.9325],[33.110000000000184,-10.887499999999875],[32.98750000000018,-10.75416666599989],[32.90416666700003,-10.748333332999948]]],[[[32.799166667000065,-13.386666666999872],[32.8025,-13.181666665999842],[32.650833333000094,-12.95916666599993],[32.646666666000044,-12.915],[32.720833333000144,-12.739999999999895],[32.8375,-12.552499999999895],[32.95916666600016,-12.39],[32.9775,-12.305833332999896],[32.95833333300004,-12.157499999999857],[32.96666666700014,-11.952499999999873],[33.075833333,-11.640833332999932],[33.1075,-11.501666666999938],[33.23916666700012,-11.31],[33.285833333000085,-11.181666666999945],[33.294166667000184,-11.0375],[33.2583333340001,-10.90083333299998],[33.25083333300012,-10.7525],[33.215833333000035,-10.682499999999834],[33.15,-10.694166665999944],[33.13416666600011,-10.608333332999962],[33.18083333300012,-10.449166666999815],[33.130833333000055,-10.36333333399989],[32.9625,-10.675833332999957],[33.04500000000013,-10.798333333999949],[33.165833332999966,-10.889166666999927],[33.1400000000001,-10.944166666999877],[33.188333334000106,-11.1175],[33.135000000000105,-11.372499999999889],[32.961666667000145,-11.61],[32.87750000000011,-11.774999999999864],[32.67000000000013,-12.110833332999903],[32.593333333000146,-12.169166666999956],[32.61,-12.25583333399993],[32.544166666000024,-12.491666665999958],[32.50583333399999,-12.549166666999895],[32.297500000000184,-12.709166666999977],[32.2625000000001,-12.80833333299995],[32.265,-12.958333332999871],[32.32250000000016,-12.948333332999823],[32.310833333,-13.100833332999912],[32.256666666000115,-13.059999999999889],[32.18916666700005,-13.131666666999934],[32.2625000000001,-13.170833332999905],[32.291666666000026,-13.28],[32.170833334000065,-13.358333332999905],[31.939166666,-13.61416666599996],[31.997500000000173,-13.805833332999953],[31.98833333400006,-13.964166666999972],[32.15583333300003,-13.788333332999969],[32.269166667000036,-13.622499999999889],[32.26,-13.47],[32.31583333300017,-13.45083333399998],[32.2925,-13.345833332999973],[32.339166667000086,-13.305833332999953],[32.52833333300015,-13.43666666699994],[32.679166667000175,-13.413333332999969],[32.7325,-13.49166666699989],[32.787500000000136,-13.405833332999975],[32.799166667000065,-13.386666666999872]]],[[[33.018333333000044,-10.311666665999951],[32.948333334000154,-10.405833332999975],[33.01916666700009,-10.455],[33.0425,-10.338333332999866],[33.018333333000044,-10.311666665999951]]],[[[36.5216666660001,-7.0875],[36.46666666700014,-6.989999999999895],[36.44833333300005,-7.121666666999943],[36.41250000000019,-7.248333333999938],[36.351666667000075,-7.125833332999889],[36.29083333300014,-7.14],[36.29333333400018,-7.23],[36.362500000000125,-7.33083333299993],[36.458333334000145,-7.338333333999913],[36.47083333300009,-7.211666665999871],[36.5216666660001,-7.0875]]],[[[36.295833334000065,-6.5325],[36.20166666700004,-6.54083333299991],[36.2375,-6.746666666999886],[36.22833333300002,-6.840833332999921],[36.323333333000164,-6.849166666999963],[36.34583333300003,-6.644166666999979],[36.295833334000065,-6.5325]]],[[[36.165000000000134,-6.045833332999905],[36.2083333330001,-5.990833332999955],[36.170833333000076,-5.878333332999944],[36.05583333300018,-5.815833333999933],[36.016666667000095,-5.724166666999963],[35.91666666600008,-5.70583333299993],[35.83083333400009,-5.603333332999966],[35.71333333299998,-5.5825],[35.7725,-5.686666665999894],[35.94333333300017,-5.793333332999964],[35.949166666999986,-5.924166665999962],[36.025833333000094,-5.955],[36.165000000000134,-6.045833332999905]]],[[[35.61166666700018,-5.445833332999882],[35.57000000000011,-5.520833332999871],[35.59166666600015,-5.595],[35.65,-5.583333333999917],[35.681666666000126,-5.484166665999908],[35.61166666700018,-5.445833332999882]]],[[[28.74916666700011,-15.6],[28.688333333,-15.569166665999944],[28.638333333000162,-15.453333332999932],[28.56166666600018,-15.48583333299996],[28.38916666700004,-15.4816666669999],[28.3225,-15.409166666999965],[28.27083333300004,-15.468333332999975],[28.365833333000182,-15.56249999999983],[28.505,-15.66],[28.5,-15.76749999999987],[28.38916666700004,-15.57999999999987],[28.231666667000127,-15.736666665999905],[28.190833334000104,-15.752499999999827],[28.194166666000058,-15.795],[28.19750000000016,-15.800833333999833],[28.2575,-15.8225],[28.284166667000136,-15.834166666999977],[28.293333333000078,-15.87833333299983],[28.2683333330001,-15.872499999999889],[28.16583333300008,-15.934166666999886],[28.184166666000067,-16.06749999999988],[28.24000000000018,-16.234166666999897],[28.118333333000123,-16.26749999999987],[27.940833333000057,-16.165],[27.8675,-16.140833332999932],[27.811666667000054,-16.18666666699994],[27.73166666700007,-16.17333333399995],[27.586666666000156,-16.025],[27.4925,-16.025833333999913],[27.53583333300014,-16.13333333299994],[27.60333333300008,-16.13],[27.742500000000177,-16.2175],[27.61833333300001,-16.3575],[27.478333333000023,-16.364999999999895],[27.455833334000033,-16.48916666599996],[27.555833333000066,-16.58583333399997],[27.465833334000024,-16.651666666999915],[27.341666667000084,-16.549166666999895],[27.068333333000055,-16.6075],[27.04166666599997,-16.469166666999968],[26.95000000000016,-16.430833333999942],[26.90416666700014,-16.33833333299998],[26.810000000000116,-16.43333333399994],[26.695833334000042,-16.484166666999954],[26.75250000000017,-16.362499999999898],[26.7025000000001,-16.3175],[26.460833334000085,-16.26749999999987],[26.46583333300015,-16.139999999999816],[26.276666667000086,-16.1325],[26.329166667000038,-16.2075],[26.341666666000037,-16.3425],[26.481666666000024,-16.3175],[26.589166667000143,-16.378333332999887],[26.50916666700016,-16.493333332999896],[26.374166666,-16.524166666999974],[26.344166667000025,-16.505],[26.194166666000115,-16.540833332999966],[26.184166667000056,-16.64916666599993],[26.03500000000014,-16.711666666999974],[26.000833333000173,-16.689166666999938],[25.958333333000155,-16.755833332999828],[25.858333333000076,-16.796666666999954],[25.778333333000035,-16.905],[25.744166667000172,-16.819166666999877],[25.661666667000077,-16.9133333339999],[25.6458333330001,-16.97],[25.54916666600019,-16.97916666699996],[25.581666666,-17.0725],[25.474166667000077,-17.16666666699996],[25.4,-17.29166666699996],[25.425000000000125,-17.33416666699992],[25.42583333300007,-17.335],[25.47583333400007,-17.33833333299998],[25.47666666700019,-17.337499999999864],[25.52916666700014,-17.415],[25.5150000000001,-17.48],[25.541666667000186,-17.44666666699993],[25.915833333000023,-17.44083333299983],[26.025000000000148,-17.491666666999834],[26.000833333000173,-17.595833333999906],[25.87500000000017,-17.733333332999962],[25.90666666700008,-17.823333333999926],[26.026666667000143,-17.868333332999896],[26.099166667000077,-17.931666666999945],[26.159807494000063,-17.914166666999904],[26.206666667000093,-17.89416666699998],[26.30583333300018,-17.937499999999886],[26.406666667000138,-17.939999999999884],[26.49083333300007,-17.9783333339999],[26.616666667000175,-17.885833332999937],[26.846666667000193,-17.814999999999884],[26.94583333300011,-17.6475],[27.126666667000052,-17.40333333299992],[27.217500000000143,-17.29833333299996],[27.30083333400006,-17.285],[27.366666667,-17.2291666669999],[27.333333333000155,-17.1825],[27.362500000000182,-17.11],[27.444166667000104,-17.0425],[27.614166666000187,-16.994166666999945],[27.556666667000115,-16.947499999999877],[27.56500000000011,-16.876666666999938],[27.65333333300015,-16.83083333399992],[27.775,-16.67833333399983],[27.74,-16.61333333399989],[27.875833334000163,-16.5375],[27.90750000000014,-16.494166666999945],[28.03416666600009,-16.441666665999946],[28.19750000000016,-16.43333333399994],[28.331666667000093,-16.3225],[28.35333333300008,-16.2775],[28.46,-16.238333332999957],[28.64416666700015,-16.115833333999888],[28.608333334000122,-16.060833332999948],[28.6275,-15.93],[28.8,-15.800833333999833],[29.15916666600009,-15.759166666999874],[29.263333333000105,-15.692499999999882],[29.372500000000116,-15.665833332999966],[29.497500000000173,-15.605833332999907],[29.653333334000024,-15.59],[29.795,-15.4125],[29.92416666700018,-15.276666665999926],[30.119166667000115,-15.18333333299995],[30.111666666000133,-15.11583333399983],[30.223333333000028,-15.02916666599998],[30.410754671000063,-15.265424573999951],[30.54700723400009,-15.38071709999997],[30.673312251000027,-15.451424183999961],[30.797129395000127,-15.494014768999932],[30.97613785100009,-15.48198610199995],[31.09348652400007,-15.451473790999898],[31.266528032000167,-15.439846078999892],[31.33564354100008,-15.406918113999893],[31.472883358000104,-15.397696135999922],[31.660342689,-15.345502458999874],[31.97460066400015,-15.301758613999937],[32.11780742900004,-15.292135679999888],[32.21576648000013,-15.313836889999891],[32.460908945000085,-15.303021009999952],[32.54394470300008,-15.223903780999876],[32.380341322000106,-15.070851978999883],[32.431058411000095,-15.033503580999877],[32.528022312000076,-15.043958190999831],[32.54392891100002,-14.952381572999968],[32.659788806999984,-14.972879915999954],[32.67916658500019,-14.717024739999943],[32.762703865000105,-14.711411361999922],[32.83730059200019,-14.876100796999935],[32.99642185200014,-14.91066234899995],[32.98548705200011,-14.990591411999901],[32.93427633700014,-15.090197061999902],[33.06604678000019,-15.08699933899993],[33.08992247000003,-15.221156620999977],[33.163022525000144,-15.301095604999944],[33.22468230900017,-15.319579247999968],[33.315189583000176,-15.460572616999912],[33.27393430899997,-15.740524812999922],[33.34305376600008,-15.775477399999943],[33.477805709999984,-15.738138922999951],[33.6279627290001,-15.535719976999928],[33.71348636000016,-15.48471924599994],[34.0013926150001,-15.482343276999927],[34.126197012000034,-15.400419357999908],[34.159514778000016,-15.437777677999975],[34.12471613200006,-15.587191114999882],[34.15107969600007,-15.74946489399997],[34.25881355200005,-15.820833333999872],[34.33666666600004,-15.829166665999878],[34.52250000000015,-16.0025],[34.610215808000135,-16.05416666699989],[34.53083333400008,-15.988333333999947],[34.591666667000084,-15.94916666599994],[34.62166666600007,-15.777499999999861],[34.67083333300019,-15.684999999999889],[34.779166667000084,-15.761666666999929],[34.74250000000018,-15.825],[34.788333333000026,-15.956666665999933],[35.0816666660001,-16.268333333999976],[35.09583333300009,-16.32666666699987],[35.21083333300004,-16.4825],[35.1769485960001,-16.557324408999932],[35.30375513600006,-16.701535343999865],[35.34403894800016,-16.81761985999998],[35.35349286700017,-16.924462553999945],[35.3206924160001,-17.232130292999898],[35.32437148100013,-17.409380661999876],[35.39601849700017,-17.442154251999966],[35.377918615000056,-17.592845112999953],[35.29763058600008,-17.57844223799998],[35.284420785,-17.704076589999943],[35.33067154600013,-17.819760149999922],[35.39680950300004,-17.888853489999974],[35.44305236700012,-17.868775946999904],[35.51409151700011,-17.933026329999905],[35.87471049700008,-17.934214213999894],[35.97060047400004,-17.920925208999904],[36.06365954900008,-17.87430791399987],[36.20096954000019,-17.72605685699989],[36.28683057100011,-17.671729382999956],[36.57606859200007,-17.53444654999987],[36.76623955800005,-17.423835434999944],[37.018001588000175,-17.314131074999977],[37.18632847600003,-17.26317631099994],[37.46495048200012,-17.214028183999858],[37.610710605000065,-17.158892695999953],[38.116939503000026,-16.89313707899987],[38.61436053000017,-16.64368292299997],[39.00350161700004,-16.376620399999922],[39.16807156900012,-16.204100380999932],[39.19786856400003,-16.094671449999908],[39.33074553400013,-15.964000428999952],[39.48728545500006,-15.769095866999919],[39.70795447900019,-15.472198797999965],[39.87366856000017,-15.216997337999885],[39.96737656200003,-15.04043992399994],[40.08780255000016,-14.701444745999936],[40.15159252100017,-14.37822598699995],[40.142402602000175,-14.169158521999975],[40.09159854600017,-13.986331611999901],[40.03998161300018,-13.86710172099987],[39.98717160000007,-13.84386809199998],[39.73916650700005,-13.814959912999939],[39.45035948300011,-13.832254796999905],[39.311359533000086,-13.825155324999855],[39.27939648600017,-13.707307274999948],[39.32368461900006,-13.668187926999963],[39.751373576000105,-13.499722904999828],[39.88650159000008,-13.415761715999906],[39.94925354600008,-13.325740745999894],[40.01705559900006,-13.181286188999877],[40.03698759700006,-13.063153320999845],[40.02680962000005,-12.743967765999855],[39.96370646200012,-12.52396158299996],[39.9010654810001,-12.447682743999906],[39.66242247200006,-12.323931151999943],[39.620769610000025,-12.120393228999887],[39.58026154800018,-12.030119125999875],[39.498607562000075,-11.942454141999917],[39.301650607,-11.773752916999968],[39.13877145200013,-11.735175374999812],[39.046180591999985,-11.679300099999978],[38.89764052700008,-11.478003162999926],[38.70495247499997,-11.420129138999926],[38.626708582000106,-11.42534570099997],[38.52919050300005,-11.473322540999959],[38.381362564000085,-11.450735993999956],[38.27011459300019,-11.406676016999938],[38.213809493000156,-11.316506351999976],[38.26250000000016,-11.288333332999969],[38.378333334000104,-11.383333333999929],[38.486666667000065,-11.415],[38.652500000000146,-11.278333332999978],[38.745000000000175,-11.278333332999978],[38.885,-11.17499999999984],[38.91416666600014,-11.09833333399996],[38.93583333300006,-10.939166666999824],[39.010000000000105,-10.660833332999914],[39.074166666999986,-10.546666666999954],[39.20416666600016,-10.433333333999883],[39.069166666000115,-10.384999999999877],[39.118333333000066,-10.312499999999886],[39.205,-10.313333332999832],[39.27,-10.241666666999947],[39.42500000000018,-10.12833333399982],[39.41416666700013,-10.069166666999877],[39.2925,-10.020833332999871],[39.2825,-9.949166665999883],[39.197500000000105,-9.9075],[39.236666667000065,-9.79],[39.186666667,-9.735],[39.26916666700009,-9.578333332999932],[39.321666667000045,-9.568333332999941],[39.391666667000095,-9.655],[39.450833333000105,-9.57],[39.43166666700017,-9.4675],[39.34,-9.3375],[39.41166666600009,-9.312499999999886],[39.406666667000025,-9.226666666999904],[39.230833334000124,-9.12083333399994],[39.23583333400012,-8.941666666999936],[39.197500000000105,-8.8975],[39.13083333300011,-8.93249999999989],[39.07416666600011,-8.861666666999952],[38.916666666000026,-8.886666666999872],[38.8475,-8.93666666699994],[38.78666666700008,-8.875],[38.723333333000085,-8.752499999999884],[38.63333333400004,-8.850833333999958],[38.63000000000011,-8.92499999999984],[38.54500000000013,-8.96333333299998],[38.42250000000013,-8.88583333399987],[38.44166666700016,-8.736666665999962],[38.485,-8.6825],[38.3225,-8.569166666999934],[38.31083333300006,-8.485833332999903],[38.18833333300012,-8.519166666999979],[38.11,-8.589166666999972],[38.065833333000114,-8.734166666999897],[38.00666666600017,-8.720833332999973],[38.06916666700005,-8.595],[38.03833333300008,-8.515833332999932],[37.97583333300014,-8.474166666999963],[37.966666666000094,-8.3575],[37.92583333300007,-8.3025],[37.94416666700016,-8.238333333999947],[38.00833333400004,-8.194166666999934],[37.97166666600009,-8.105],[38.109166667000125,-8.01416666699987],[38.134166667000045,-7.900833333999969],[38.18,-7.845833333999963],[38.075833333000105,-7.66],[38.037500000000136,-7.530833332999919],[37.98833333400012,-7.530833332999919],[37.825,-7.45166666699987],[37.78500000000014,-7.406666665999978],[37.892500000000155,-7.049166666999895],[37.95416666700015,-6.997499999999889],[38.03,-7.036666666999963],[38.049166667000065,-7.1075],[38.18333333300012,-6.940833333999876],[38.13166666600006,-6.818333332999885],[38.185,-6.715],[38.2875,-6.658333333999906],[38.265,-6.61416666599996],[38.16000000000014,-6.606666666999956],[38.16000000000014,-6.539166665999971],[38.34250000000014,-6.5875],[38.399166667000145,-6.509166666999931],[38.358333333000076,-6.32333333299988],[38.42666666700018,-6.301666666999949],[38.5,-6.188333332999946],[38.545833333000076,-5.9575],[38.583333334000145,-5.90083333299998],[38.4575,-5.784166666999909],[38.34666666700019,-5.806666666999945],[38.34,-5.754166666999936],[38.11083333300019,-5.646666666999977],[38.16000000000014,-5.575833332999935],[38.07500000000016,-5.575833332999935],[37.9975,-5.608333332999962],[37.91333333400013,-5.584166665999931],[37.8525,-5.611666666999895],[37.71,-5.545],[37.68000000000018,-5.459166666999977],[37.6925,-5.381666666999877],[37.581666667000036,-5.32416666599994],[37.52083333400003,-5.345],[37.509166666,-5.41499999999985],[37.422500000000184,-5.503333332999944],[37.30500000000018,-5.455],[37.25083333300006,-5.3975],[37.200833334000095,-5.56166666699994],[37.15,-5.6325],[37.153333333000035,-5.8275],[37.05666666700017,-5.765],[37.016666667000095,-5.825833332999878],[36.9275,-5.7675],[36.8325,-5.743333332999896],[36.82833333400015,-5.593333332999975],[36.726666667000075,-5.61],[36.736666667000065,-5.759166665999885],[36.84916666700002,-5.848333332999914],[36.92500000000018,-5.800833332999957],[36.98416666700007,-5.8775],[36.88666666700004,-5.974166666999849],[36.79250000000019,-5.94833333299988],[36.64666666700009,-5.958333332999928],[36.66833333400018,-6.045],[36.5833333330001,-6.243333332999896],[36.41916666600008,-6.21666666699997],[36.359166667000125,-6.255],[36.351666667000075,-6.338333333999969],[36.6425,-6.41083333399996],[36.61916666700006,-6.486666666999895],[36.67166666700018,-6.536666666999963],[36.708333333000155,-6.65333333399991],[36.77833333299998,-6.689999999999884],[36.795833333000076,-6.756666666999877],[36.69666666700016,-6.76],[36.60083333400007,-6.820833332999882],[36.57666666700004,-6.76416666699987],[36.4825,-6.786666666999906],[36.42333333300013,-6.874166666999884],[36.44833333300005,-6.959166665999931],[36.49500000000012,-6.8525],[36.55916666700017,-6.838333333999913],[36.606666667000184,-6.9025],[36.715833333000035,-6.945833332999939],[36.688333334000106,-7.067499999999882],[36.72583333400013,-7.120833332999894],[36.72083333300003,-7.22],[36.67333333300007,-7.23583333299996],[36.69000000000017,-7.345],[36.602500000000134,-7.524166665999871],[36.63833333400004,-7.564166666999938],[36.48583333300007,-7.686666665999951],[36.303333334000115,-7.668333333999954],[36.1475,-7.715],[36.021666666000044,-7.599166666999963],[35.88666666600017,-7.679166665999958],[35.80833333300012,-7.695833332999882],[35.64000000000016,-7.635],[35.595,-7.651666666999915],[35.599166667000134,-7.795],[35.5750000000001,-7.859166666999897],[35.49833333400005,-7.868333333999942],[35.559166666000124,-7.674166665999962],[35.47500000000019,-7.688333332999889],[35.42583333300007,-7.651666666999915],[35.36750000000018,-7.73],[35.237500000000125,-7.679166666999947],[35.21833333300009,-7.74166666699989],[35.25833333300017,-7.808333332999894],[35.33500000000015,-7.861666666999952],[35.13750000000016,-7.884166666999931],[35.1725,-7.783333332999973],[35.01500000000016,-7.771666665999931],[34.97833333300014,-7.824166666999872],[35.08166666700015,-7.921666665999908],[34.995,-7.931666666999888],[34.93000000000018,-8.0441666669999],[34.97666666600014,-8.1675],[35.05583333300018,-8.2675],[35.138333333000105,-8.268333332999873],[35.235450038000124,-8.306417318999877],[35.18976438700008,-8.39017434699997],[35.07745382700011,-8.401595758999974],[35.033671745000106,-8.452992116999894],[35.08887524,-8.519617024999889],[34.96895040600015,-8.62621687799998],[34.944204011000124,-8.797538070999906],[34.99179323100003,-8.826091602999952],[35.11742877200015,-8.767080969999881],[35.2049929370001,-8.757563125999923],[35.32780069500018,-8.694166666999877],[35.25083333300012,-8.64249999999987],[35.12333333400005,-8.68583333399988],[35.098333334000074,-8.634999999999877],[35.174166667000065,-8.5825],[35.32500000000016,-8.575],[35.305833334000056,-8.44499999999988],[35.49500000000012,-8.341666665999924],[35.60416666700013,-8.35],[35.715000000000146,-8.295],[35.77916666600015,-8.21],[35.85166666700013,-8.180833333999828],[35.90166666700003,-8.085],[35.88333333300011,-7.996666665999953],[35.90916666700008,-7.905833332999919],[35.8875,-7.81],[35.9325,-7.759166666999931],[36.021666666000044,-7.818333332999941],[35.96166666700009,-7.905833332999919],[35.999166667000054,-7.941666666999879],[36.090000000000146,-7.854999999999848],[36.1825,-7.88],[36.2625,-7.775],[36.37416666600018,-7.770833333999974],[36.4525000000001,-7.725],[36.56500000000011,-7.73583333299996],[36.656666667000025,-7.82666666699987],[36.4491666670001,-7.80166666599996],[36.100000000000136,-8.0225],[36.01416666700004,-8.18],[35.977500000000134,-8.315],[35.90166666700003,-8.3775],[35.8625,-8.454166665999935],[35.87544519700009,-8.451231365999888],[35.95683098400008,-8.376975061999872],[36.064670528000136,-8.356755107999902],[36.08867540200015,-8.245807338999896],[36.16808292000013,-8.286236606999978],[36.2284233580001,-8.269842743999902],[36.30149176400016,-8.303301118999968],[36.34908349700004,-8.261668209999868],[36.519469628000024,-8.20956090899989],[36.64454479500017,-8.14016185099996],[36.736623383,-8.136533568999937],[36.88535810100012,-8.086946599999976],[36.9259845740001,-8.177522947999933],[36.829043103000174,-8.162933722999924],[36.594157575000054,-8.208686267999894],[36.49002962300017,-8.310522067999955],[36.39051714700008,-8.337725063999926],[36.31462449800017,-8.418065233999926],[36.31276160100015,-8.520484167999882],[36.24453145400008,-8.558271438999952],[36.07508085600011,-8.816874868999946],[36.01944468500011,-8.860906797999974],[36.02049353700005,-8.935433847999832],[35.90553630300013,-9.15981226799994],[35.66137355800004,-9.303649426999925],[35.632820026000104,-9.447606817999883],[35.579282154000055,-9.604651243999967],[35.503139401000055,-9.927068209999959],[35.51027778400015,-10.210224069999924],[35.45436045100013,-10.45411882299993],[35.43889395400004,-10.582609716999968],[35.363940932,-10.859816924999905],[35.109338605,-11.165577663999954],[34.8975,-11.368333332999953],[34.96511639900007,-11.582821972999966],[34.953231278000146,-11.78381970299995],[34.90152348300012,-11.904539281999973],[34.88813795900012,-12.032069435999972],[34.81408026100013,-12.073134015999926],[34.70185948200003,-12.184289568999873],[34.722974862000115,-12.249216908999927],[34.68875930400009,-12.440648303999978],[34.755493043000115,-12.546362835999957],[34.820895697000026,-12.69801699899989],[34.755560106000075,-12.911916012999939],[34.80262007700014,-13.055330337999976],[34.815172165000035,-13.236151168999868],[34.79440112900005,-13.338655813999935],[34.868640783000046,-13.399015849999898],[34.852500000000134,-13.7125],[35.05083333400012,-13.731666666999956],[35.11500000000012,-13.856666665999967],[35.152500000000146,-13.989166665999903],[35.205,-14.066666666999822],[35.22083333299997,-14.174166666999838],[35.298333334000176,-14.2325],[35.29750000000013,-14.451666666999813],[35.355833334000124,-14.53],[35.37583333300017,-14.666666665999912],[35.436666667000054,-14.773333332999982],[35.445,-14.855833332999907],[35.41666666700007,-14.992499999999893],[35.379166667000106,-15.056666666999888],[35.1925,-15.136666666999815],[35.125833334000106,-15.259166666999874],[35.14750000000015,-15.299166666999952],[35.11583333300007,-15.415],[35.11583333300007,-15.41583333299991],[35.021666666000044,-15.438333333999879],[34.91916666700013,-15.3175],[34.905,-15.176666666999893],[34.93583333400005,-15.114999999999895],[34.91833333300008,-15.020833333999974],[34.936666666000065,-14.89249999999987],[34.851666666000085,-14.829166666999981],[34.77416666700009,-14.6725],[34.66916666600008,-14.579166666999868],[34.576666666,-14.4325],[34.50666666600017,-14.26833333299993],[34.50833333400004,-14.153333332999921],[34.429166667000175,-14.058333333999883],[34.5125,-13.965833332999921],[34.50500000000011,-13.92],[34.385833333000164,-13.826666665999937],[34.3325,-13.728333332999966],[34.25583333300011,-13.513333332999935],[34.27666666599998,-13.459166665999817],[34.25166666600006,-13.33833333299998],[34.33500000000015,-13.285833333999904],[34.33500000000015,-13.02166666699992],[34.305833334000056,-12.88916666599988],[34.2575,-12.825833333999924],[34.27666666599998,-12.754166665999946],[34.1925,-12.6875],[34.16833333300002,-12.575833332999878],[34.198333333000164,-12.528333332999978],[34.16583333400007,-12.406666665999978],[34.033333334000076,-12.349166666999906],[34.005,-12.208333332999928],[33.91390033300013,-12.257616297999903],[33.89753494300015,-12.381720510999855],[33.82661825000008,-12.403541031999964],[33.73797238300011,-12.377629162999881],[33.70933294900016,-12.41990642299993],[33.70251403700013,-12.717211020999969],[33.759792904000165,-12.87131844999982],[33.878441987000144,-12.902685448999875],[33.82661825000008,-12.968147011999974],[33.83166666600016,-13.133333332999939],[33.765,-13.246666665999953],[33.750000000000114,-13.3525],[33.89583333300004,-13.34],[33.8975,-13.49],[33.83,-13.535],[33.81583333300006,-13.753333333999876],[33.77583333300015,-13.97],[33.901666667000086,-14.030833332999975],[34.02666666600004,-14.006666666999934],[34.135000000000105,-14.081666666999979],[34.13166666700005,-14.173333333999892],[34.09083333300015,-14.212499999999864],[34.08583333300015,-14.375833332999946],[34.123333333000176,-14.416666666999959],[34.075,-14.485],[33.91333333300008,-14.474166665999917],[33.814166667,-14.541666666999959],[33.77906752300004,-14.529981007999936],[33.66768974700017,-14.62797291499993],[33.52299420600002,-14.68860650199997],[33.38426166500017,-14.680958580999913],[33.233093704000055,-14.600608719999855],[33.115737136000064,-14.495359926999924],[33.11175259000004,-14.38249297699997],[32.959095853000065,-14.35315376899996],[32.94268378300012,-14.303345982999929],[33.03267769100012,-14.167193844999929],[32.99190025200011,-14.113366581999855],[32.87333333400011,-14.122499999999889],[32.9025,-13.98],[32.88500000000016,-13.826666666999927],[32.764166667000154,-13.67],[32.69416666600006,-13.685],[32.591666667000084,-13.776666666999972],[32.47083333300003,-13.98],[32.448333333000164,-14.1425],[32.454886726000154,-14.353094239999962],[32.38676636600002,-14.397268804999953],[32.184885264000116,-14.422147893999977],[31.97704116200009,-14.515308489999882],[31.871132760000137,-14.607276141999876],[31.882075456000166,-14.663108182999906],[31.9830199540001,-14.718549189999976],[31.98899085100004,-14.786028786999964],[31.915902640000184,-14.909731457999897],[32.025799536000136,-14.99851130799982],[31.92784443300019,-15.04469065099994],[31.787627064000162,-15.155933934999894],[31.730935131000024,-15.057922184999939],[31.725453913000024,-14.860304784999926],[31.54941906000016,-14.702431594999894],[31.2725,-14.6575],[31.474166667000134,-14.61999999999989],[31.645833333000155,-14.524166666999974],[31.611666667000065,-14.386666666999872],[31.63750000000016,-14.302499999999895],[31.766666666000162,-14.163333333999901],[31.783333333000087,-14.08083333399992],[31.68666666700011,-14.1066666669999],[31.68000000000012,-13.915833332999966],[31.553333334000172,-13.903333332999978],[31.534166667000193,-14.010833332999937],[31.337500000000148,-14.096666666999909],[31.295833333000076,-14.155833332999919],[31.311666667000054,-14.236666666999952],[31.418333334000124,-14.275833332999923],[31.44583333300011,-14.360833332999903],[31.308549515000095,-14.4775],[31.308333334000054,-14.47706629499993],[31.19083333300017,-14.485],[31.112500000000125,-14.431666665999956],[31.135833333999983,-14.365],[31.048333333000016,-14.3475],[31.017500000000155,-14.4],[31.030833333000146,-14.492499999999836],[30.863333333000128,-14.72666666699996],[30.911954662000028,-14.824460993999935],[30.854275475000122,-14.85096374799997],[30.831666666000046,-14.73916666699995],[30.756666667000104,-14.646666666999977],[30.553333333000126,-14.564166666999881],[30.565,-14.441666666999936],[30.483333333000132,-14.44416666599983],[30.4625,-14.512499999999875],[30.33333333400003,-14.55833333299995],[30.385000000000105,-14.418333332999964],[30.395833334000145,-14.295],[30.53666666600003,-14.143333333999976],[30.63166666600017,-14.0675],[30.641666666000106,-13.997499999999832],[30.740833333000126,-13.895833332999928],[30.808333334000167,-13.9025],[30.925000000000125,-13.805833332999953],[30.939166667000165,-13.735],[31.071666667000102,-13.569166665999887],[31.07583333300005,-13.431666665999956],[31.10416666700013,-13.336666666999918],[31.189166666000176,-13.185],[31.235000000000127,-13.059999999999889],[31.329166667000095,-12.9675],[31.3525,-12.899166666999974],[31.422500000000127,-12.8575],[31.477500000000134,-12.743333332999953],[31.473333334000188,-12.63249999999988],[31.547500000000184,-12.60666666599991],[31.55583333300018,-12.44499999999988],[31.66,-12.4],[31.55916666600001,-12.320833332999939],[31.5975,-12.253333332999944],[31.638333333000105,-12.080833333999976],[31.70166666700004,-11.9625],[31.75166666700011,-12.010833332999937],[31.890000000000157,-11.949999999999875],[31.954166667000095,-11.885],[31.99166666700006,-11.799166665999962],[32.18583333300012,-11.628333333999876],[32.27916666700003,-11.6575],[32.25250000000011,-11.5475],[32.295833333000076,-11.480833333999954],[32.37000000000012,-11.4625],[32.519166667000036,-11.505833332999885],[32.57333333300005,-11.389999999999873],[32.631666667,-11.430833332999896],[32.73166666700013,-11.428333333999888],[32.685000000000116,-11.258333332999939],[32.75166666700011,-11.208333332999871],[32.76166666600017,-11.089999999999861],[32.80666666600007,-11.053333332999955],[32.7475,-10.935],[32.74333333300018,-10.835833332999925],[32.78083333400008,-10.714166666999972],[32.829166666000106,-10.64333333299993],[32.78666666600009,-10.544166665999967],[32.82916666699998,-10.470833332999973],[32.91,-10.475833332999969],[32.92750000000018,-10.375],[33,-10.25],[33.11833333300018,-10.117499999999893],[33.04416666700001,-10.000833332999946],[32.955,-9.996666665999953],[32.8375,-10.078333332999932],[32.77666666700003,-10.176666666999893],[32.755833333000055,-10.359166666999954],[32.62,-10.30833333399994],[32.62333333300012,-10.184166665999896],[32.51833333300016,-10.215],[32.28416666700019,-10.5575],[32.23750000000018,-10.648333332999925],[32.245,-10.731666666999956],[32.4525,-10.72916666599997],[32.487500000000125,-10.760833332999937],[32.40916666700008,-10.89666666699992],[32.33583333400003,-10.893333333999976],[32.27416666700003,-10.9375],[32.28083333300009,-11.064166666999881],[32.17916666700012,-11.049166666999838],[32.0716666670001,-11.120833332999894],[32.155833334000135,-11.251666665999892],[32.140833333000046,-11.372499999999889],[32.00833333400004,-11.493333332999839],[31.669166667000013,-11.752499999999827],[31.535833333000028,-11.9175],[31.423333333000073,-12.134166666999874],[31.080833333000044,-12.9775],[30.905000000000143,-13.21166666699986],[30.712500000000148,-13.31999999999988],[30.355833333000135,-13.395],[30.265,-13.429999999999893],[30.15083333399997,-13.536666666999963],[30.006666667000104,-13.730833333999954],[29.66500000000019,-14.08],[29.5475,-14.224166665999974],[29.264166667000154,-14.463333332999923],[29.235000000000127,-14.54],[29.159166667000193,-14.6275],[28.829166667000095,-14.740833332999898],[28.694166667000047,-14.8325],[28.616666667000118,-14.82333333299988],[28.59083333300015,-14.725833332999855],[28.51250000000016,-14.724166665999974],[28.521666666999977,-14.585],[28.463333334000083,-14.534166666999965],[28.370833334000054,-14.5175],[28.41750000000019,-14.619166666999945],[28.25083333300006,-14.599166666999906],[28.118333333000123,-14.680833332999953],[28.084166667000034,-14.73],[28.121666666000124,-14.795],[28.07166666700016,-14.874166665999894],[28.15083333300015,-14.9675],[28.235000000000184,-14.969166665999921],[28.382500000000107,-14.9225],[28.46,-14.9425],[28.605833333000135,-14.9375],[28.526666666999972,-15.011666666999929],[28.599166667000077,-15.025833332999866],[28.591666667000027,-15.09416666699991],[28.595833333000144,-15.026666666999972],[28.526666666999972,-15.011666666999929],[28.058333334000167,-15.08833333299998],[28.054166666000185,-15.136666666999815],[28.165000000000134,-15.19499999999988],[28.285833334000074,-15.17],[28.38500000000016,-15.27166666599993],[28.499166666000065,-15.2725],[28.57583333300005,-15.243333333999885],[28.669166667000127,-15.300833332999844],[28.74333333400017,-15.2875],[28.70333333300016,-15.187499999999886],[28.860000000000127,-15.17],[28.865833334000172,-15.24583333299995],[28.780833334000192,-15.354166665999912],[28.839166667000086,-15.4425],[28.9175,-15.294166666999956],[29.072500000000105,-15.39249999999987],[28.86166666600019,-15.594166665999978],[28.74916666700011,-15.6]],[[29.079166667000038,-15.051666665999903],[29.079166667000038,-14.9575],[28.9525,-14.992499999999893],[28.796666667000068,-15.001666666999938],[28.839166667000086,-14.9025],[28.7775,-14.858333332999962],[28.90166666700003,-14.78583333399996],[28.95166666700004,-14.783333333999963],[29.03,-14.701666666999927],[29.31500000000011,-14.648333332999925],[29.429166667000118,-14.685833332999948],[29.610833333000073,-14.6075],[29.71333333300015,-14.604166666999902],[29.77416666700003,-14.564166665999892],[29.872500000000173,-14.5725],[29.92000000000013,-14.461666665999871],[30.038333334000185,-14.289166665999915],[30.112500000000125,-14.21666666599998],[30.11,-14.086666665999928],[30.20916666700009,-14.02583333299998],[30.3625,-13.8575],[30.529166666000094,-13.729166666999959],[30.50666666700016,-13.669166666999956],[30.610000000000127,-13.52583333399997],[30.774166666999974,-13.541666666999959],[30.68666666600018,-13.714166665999926],[30.5875,-13.69],[30.56250000000017,-13.78416666599992],[30.670000000000186,-13.7625],[30.695833334000156,-13.895],[30.55166666600013,-14.06166666699994],[30.43,-14.1525],[30.3333333330001,-14.2625],[30.304166667,-14.399166666999918],[30.128333333000057,-14.395],[30.05333333300007,-14.4675],[30.03666666700019,-14.597499999999854],[30.094166667000138,-14.715833333999967],[29.90083333300015,-14.73],[29.760833333000107,-14.809166666999943],[29.785,-14.914166665999971],[29.711666667000088,-14.94416666699982],[29.672500000000127,-14.85916666699984],[29.469166667000025,-14.965833332999978],[29.340833333000035,-14.976666666999904],[29.305000000000177,-15.0375],[29.185833333,-15.0975],[29.079166667000038,-15.051666665999903]],[[34.361666667000065,-14.38916666699987],[34.515833333000046,-14.56],[34.54416666700007,-14.643333333999976],[34.51583333400015,-14.685833332999948],[34.55031240300019,-14.766649843999971],[34.427991932000054,-14.80880970999982],[34.331509814000015,-14.532456191999927],[34.23404439000018,-14.448497730999975],[34.361666667000065,-14.38916666699987]],[[34.58,-15.199166666999929],[34.60333333300008,-15.26833333299993],[34.52250000000015,-15.351162409999972],[34.46282610900005,-15.27032123999993],[34.44142644900006,-14.960638801999892],[34.49015323900011,-14.9007972039999],[34.57617839200009,-14.923300324999957],[34.59416666700014,-15.044166666999956],[34.59,-15.0875],[34.5891666660001,-15.089999999999861],[34.58583333300004,-15.099166666999963],[34.576666666,-15.135],[34.5766666670001,-15.144166666999979],[34.5775,-15.151666666999972],[34.58,-15.199166666999929]],[[35.96253628799997,-15.463696794999976],[35.858618185000125,-15.57815764499992],[35.78916666700019,-15.525833332999923],[35.771666666000044,-15.628333333999876],[35.70083333400004,-15.714166666999972],[35.64583333300004,-15.6325],[35.60083333400007,-15.719166666999968],[35.52583333300015,-15.753333332999944],[35.42666666600019,-15.8475],[35.37416666700011,-15.740833333999888],[35.40583333300009,-15.661666666999906],[35.40500000000014,-15.533333332999916],[35.445,-15.503333332999887],[35.527500000000146,-15.564999999999884],[35.556666667000115,-15.645],[35.644166667000036,-15.595833332999973],[35.559166666000124,-15.5275],[35.5725,-15.43],[35.4566666660001,-15.313333332999889],[35.45916666600016,-15.190833333999933],[35.54833333300019,-15.11],[35.559166667000056,-15.015],[35.735833333000016,-14.96],[35.73750000000018,-14.91416666699996],[35.87000000000012,-14.749166665999894],[35.83916934400003,-14.612162886999897],[35.73225000100018,-14.421361730999877],[35.5875,-14.334923872999923],[35.484166666000135,-14.1675],[35.35250000000019,-14.019999999999868],[35.46867753100008,-13.884712762999868],[35.544755139000074,-13.862630440999908],[35.67951497800004,-13.961053067999899],[35.799849098000095,-13.96428055499996],[35.966418188000034,-13.811669395999843],[36.07232264200019,-13.651821191999886],[36.15535839900008,-13.572703962999924],[36.22099483300019,-13.568293450999874],[36.26127864500012,-13.684377966999875],[36.21802517600008,-13.806075860999954],[36.18721502400007,-14.13623679899996],[36.212089811000055,-14.349521230999812],[36.257349369999986,-14.521838743999922],[36.363273564,-14.70139329999995],[36.464222011000174,-14.824714858999982],[36.69146363100003,-14.815101845999948],[36.7973799290001,-14.858895298999926],[36.83418071699998,-14.935616716999903],[36.50253526300014,-15.257708934999982],[36.40557531000013,-15.315134876999934],[36.267845814,-15.45449465999991],[36.05901051100017,-15.604289208999887],[36.00779189900015,-15.568133755999952],[35.96253628799997,-15.463696794999976]],[[36.322662912000055,-16.134676455999966],[36.40313086400005,-16.03370444899997],[36.52594496200004,-15.929287331999944],[36.645279985000116,-15.853387667999925],[36.715884271,-15.769449049999935],[36.785987033000026,-15.6120065799999],[36.77453491900013,-15.346909583999945],[36.79341907100013,-15.153311660999975],[36.91126137000009,-15.060542097999928],[37.20413152800012,-14.910757469999965],[37.31452205000005,-14.93728006799995],[37.35480981000012,-15.121245134999981],[37.3786894480001,-15.323282968999877],[37.45278860000019,-15.48234910399998],[37.523400781000134,-15.534171588999982],[37.74368425100016,-15.581593484999928],[37.875956217000066,-15.651899613999944],[38.059940421000135,-15.696103942999912],[38.11762750400004,-15.805362291999927],[38.040558695000186,-15.884078565999914],[37.83121792100013,-15.892488711999874],[37.59154088100007,-15.829399783999975],[37.52590444700013,-15.833810294999978],[37.439887189000046,-15.947068278999893],[37.42000394100012,-16.061539050999954],[37.30862616500008,-16.15953095699996],[37.31211313600005,-16.26677460699989],[37.253940322000176,-16.35553461399985],[37.04310682400012,-16.347074859999964],[36.897416133000036,-16.396461847999888],[36.81572134100014,-16.511130146999903],[36.85521346100012,-16.598797495999975],[36.803844464000065,-16.62334188799997],[36.72374677200014,-16.589147263999962],[36.60256357100013,-16.659514380999894],[36.49963272200006,-16.649460725999916],[36.283321954000144,-16.51126412499997],[36.192818628000055,-16.438151306999885],[36.174416259000054,-16.365850321999915],[36.196787382000025,-16.279496048999874],[36.30851208600018,-16.15026371999994],[36.322662912000055,-16.134676455999966]],[[35.74000166000002,-16.558647091999944],[35.59688166900008,-16.522264099999916],[35.629402615,-16.42911299299982],[35.74745568600002,-16.37411647599987],[35.78231065700015,-16.48277175699991],[35.74000166000002,-16.558647091999944]],[[35.71000000000015,-16.093535445999976],[35.7135814830001,-16.19053225899995],[35.66833848400006,-16.253328136999926],[35.461299608000104,-16.264407670999958],[35.452629535000085,-16.18059199199996],[35.71000000000015,-16.093535445999976]],[[35.72416666700019,-15.743333332999953],[35.77833333400014,-15.949999999999875],[35.78416666700002,-16.045],[35.67083333300019,-16.03083333299992],[35.54833333300019,-16.0425],[35.48500000000013,-15.984166665999965],[35.4925,-15.9025],[35.641666667000095,-15.8225],[35.72416666700019,-15.743333332999953]],[[39.0675,-10.284166666999909],[39.03416666600003,-10.259166665999885],[39.08083333400015,-10.090833332999978],[39.17750000000018,-10.002499999999884],[39.41083333299997,-10.118333332999953],[39.29083333300008,-10.19916666599994],[39.18416666600018,-10.211666666999918],[39.155833334000135,-10.258333332999939],[39.0675,-10.284166666999909]],[[36.4525000000001,-8.965833332999864],[36.486666667000065,-8.8475],[36.571666667000045,-8.683333333999883],[36.62916666700005,-8.644166666999922],[36.694166666000115,-8.670833332999905],[36.62166666600007,-8.77],[36.62583333300012,-8.96],[36.549166667,-9.0025],[36.4525000000001,-8.965833332999864]],[[36.83083333300016,-7.872499999999889],[36.76,-7.8575],[36.85916666700018,-7.691666666999936],[36.920000000000186,-7.749999999999886],[36.9175,-7.819166666999877],[36.83083333300016,-7.872499999999889]],[[37.056335850000096,-7.392630038999869],[37.02037525100019,-7.205809157999909],[37.06150407700005,-7.104079157999934],[37.05402799600006,-7.006635236999898],[37.20868480300004,-6.921744388999969],[37.20624059800019,-6.850698934999969],[37.310737490000065,-6.853953568999884],[37.34900081800015,-6.773432491999927],[37.351544629000045,-6.624633606999907],[37.490823166000155,-6.461157799999967],[37.52154116300011,-6.394722761999958],[37.668611892000115,-6.253522571999895],[37.69729813200007,-6.284309744999973],[37.60688993600007,-6.457710138999971],[37.494793566000055,-6.507303882999906],[37.44271020400009,-6.599985599999968],[37.452287987000034,-6.749011570999926],[37.418528974000026,-6.893796564999946],[37.43639674800016,-6.966874278999967],[37.35808220100006,-7.002880260999973],[37.25010511400012,-7.228669943999876],[37.15218593100013,-7.138642780999874],[37.10624080600007,-7.230306849999977],[37.10267843500014,-7.35592372799988],[37.056335850000096,-7.392630038999869]],[[36.85166666700013,-6.66],[36.86500000000012,-6.54],[36.77666666700014,-6.4225],[36.91083333300014,-6.331666666999979],[36.9525,-6.256666666999877],[37.03916666700013,-6.39333333299993],[37.03333333400019,-6.508333332999882],[36.9275,-6.528333332999921],[36.85166666700013,-6.66]],[[37.7225,-6.818333333999874],[37.79583333400012,-6.835833332999925],[37.814166666000176,-6.929166666999947],[37.75,-7.008333333999872],[37.73833333300007,-7.191666666999936],[37.7025,-7.2525],[37.624166667,-7.278333332999978],[37.55083333300007,-7.203333332999875],[37.485833333000016,-7.258333332999939],[37.46333333299998,-7.153333332999978],[37.500833334000106,-6.984166665999965],[37.59,-6.953333332999932],[37.619166667,-6.89249999999987],[37.7225,-6.818333333999874]]],[[[36.08333333300004,-5.240833332999841],[36.09833333299997,-5.190833332999944],[36.2066666660001,-5.1025],[36.11416666700018,-5.045833332999962],[36.039166666000085,-5.113333332999957],[35.9425,-5.128333332999944],[35.955833333000044,-5.325833332999821],[36.03666666700008,-5.345],[36.08333333300004,-5.240833332999841]]],[[[35.09416666600015,-5.346666666999965],[34.975833333000026,-5.303333332999955],[34.92,-5.140833333999979],[35.01666666700015,-5.095833333999906],[34.99666666700017,-4.975833332999912],[34.75,-4.958333332999871],[34.6991666670001,-4.999166666999884],[34.731666666000024,-5.161666666999963],[34.69833333300005,-5.199166666999872],[34.7325,-5.2775],[34.6475,-5.290833333999899],[34.672500000000184,-5.321666666999931],[34.72666666600003,-5.323333332999937],[34.80083333300007,-5.458333332999928],[34.78583333400019,-5.621666666999943],[34.82583333300005,-5.740833332999898],[34.9591666660001,-5.699166666999929],[34.97333333300014,-5.744166665999956],[34.86500000000018,-5.830833332999873],[34.911666666000144,-5.92333333299996],[35.03500000000014,-5.689166666999881],[35.11166666700012,-5.591666665999924],[35.11666666700006,-5.4525],[35.09416666600015,-5.346666666999965]],[[34.87500000000017,-5.124999999999886],[34.93583333400005,-5.2575],[34.91416666700013,-5.300833332999957],[34.76250000000016,-5.314999999999884],[34.7825,-5.234166666999954],[34.87500000000017,-5.124999999999886]]],[[[35.23916666600013,-4.984166666999954],[35.31083333300012,-4.951666665999937],[35.341666667000084,-4.87416666699994],[35.42333333400006,-4.884166666999874],[35.47666666600003,-4.8],[35.46833333300003,-4.674166666999952],[35.38833333300005,-4.711666665999928],[35.17666666700012,-4.7675],[35.10416666600014,-4.836666665999928],[35.10583333400018,-4.93666666699994],[35.15916666700008,-4.980833332999907],[35.23916666600013,-4.984166666999954]]],[[[35.87666666700011,-4.440833332999944],[35.82,-4.399166666999974],[35.85833333300019,-4.313333332999946],[35.7975,-4.291666666999959],[35.75250000000017,-4.209166666999977],[35.55000000000018,-4.269166666999979],[35.51250000000016,-4.231666666999899],[35.43416666600007,-4.269166666999979],[35.29250000000013,-4.434999999999889],[35.21,-4.5825],[35.28583333300003,-4.624166665999951],[35.121666667000056,-4.711666666999861],[35.053333334,-4.775833332999923],[34.95666666700009,-4.805],[34.938333334000106,-4.863333333999833],[35.10500000000013,-5.125833332999946],[35.18583333300006,-5.137499999999875],[35.1925,-5.27916666699997],[35.15666666600009,-5.310833333999938],[35.27916666600004,-5.346666666999965],[35.31416666700005,-5.409166665999919],[35.400833333000094,-5.405833332999975],[35.425000000000125,-5.25],[35.132500000000164,-5.034166666999909],[35.055,-4.918333333999954],[35.0775000000001,-4.798333333999892],[35.21583333400008,-4.7225],[35.411666667000134,-4.678333332999898],[35.50416666600006,-4.578333332999875],[35.41675654799997,-4.53618662599996],[35.479284495,-4.463862221999932],[35.55419292800019,-4.509365116999959],[35.51141940800011,-4.5725],[35.539166667000075,-4.7],[35.59333333300009,-4.846666666999965],[35.63916666600011,-4.905833332999975],[35.618333333000066,-4.961666665999871],[35.47916666600014,-4.943333332999885],[35.425000000000125,-5.033333332999973],[35.525,-5.104166666999902],[35.566666667000106,-5.185833333999881],[35.63333333300017,-5.208333332999928],[35.68250000000012,-5.101666665999915],[35.65916666600009,-4.9825],[35.68666666700017,-4.870833332999894],[35.73166666599997,-4.86],[35.7875,-4.748333332999835],[35.82916666600005,-4.7675],[35.96833333300009,-4.743333332999953],[36.00000000000017,-4.875],[36.09166666700014,-4.8425],[36.10833333300013,-4.7875],[36.01500000000016,-4.691666666999879],[35.86583333400017,-4.716666666999913],[35.810000000000116,-4.639166666999927],[35.84695941700005,-4.516666666999868],[35.87666666700011,-4.440833332999944]]],[[[34.54166666600008,-4.071666666999931],[34.501666666000176,-3.986666666999952],[34.3841666670001,-4.085833332999869],[34.3325,-4.158333332999973],[34.33166666700015,-4.159166666999965],[34.328333333000046,-4.160833332999971],[34.3275000000001,-4.161666665999974],[34.270833334000145,-4.1825],[34.24833333400011,-4.32416666599994],[34.16333333300008,-4.364999999999895],[34.20583333400015,-4.428333333999944],[34.191666667000106,-4.515833332999932],[34.09833333300003,-4.609166665999908],[34.09,-4.873333332999891],[34.0325,-4.930833332999953],[34.02666666700014,-5.033333332999973],[34.09583333400002,-5.1075],[34.233333333000076,-5.121666665999953],[34.305,-5.223333332999971],[34.446666667000045,-5.301666666999893],[34.5825,-5.35],[34.585,-5.2475],[34.65666666599998,-5.185833332999948],[34.66250000000019,-5.110833333999949],[34.623333334000165,-5.029166666999913],[34.604166666000026,-4.766666666999924],[34.54666666700018,-4.704166666999868],[34.605,-4.651666666999972],[34.8025,-4.645833332999871],[34.81916666700016,-4.703333333999922],[34.9,-4.730833332999964],[35.011666667000156,-4.730833333999954],[35.11916666600007,-4.6825],[35.08833333400014,-4.565],[35.125000000000114,-4.519166666999865],[35.08,-4.400833332999923],[34.87416666600012,-4.583333333999974],[34.81500000000011,-4.499166665999894],[34.81833333300011,-4.4025],[34.73333333300013,-4.324999999999875],[34.658333333000144,-4.391666666999868],[34.64166666700015,-4.535],[34.541666667000186,-4.589166666999972],[34.49583333400017,-4.555833332999839],[34.52,-4.448333332999823],[34.5025,-4.3475],[34.54583333300013,-4.30833333299995],[34.54166666600008,-4.071666666999931]]],[[[33.27000000000015,-3.74],[33.129166667,-3.79],[33.10416666700007,-3.869999999999891],[33.22,-3.893333332999873],[33.32833333400015,-3.8375],[33.27000000000015,-3.74]]],[[[33.525,-2.848333332999971],[33.39166666700004,-2.882499999999879],[33.38333333300011,-3.033333333999906],[33.4500000000001,-3.091666665999981],[33.56000000000017,-3.009166665999828],[33.590833333000035,-2.9375],[33.525,-2.848333332999971]]],[[[32.82583333400015,-2.496666666999943],[32.71333333300004,-2.506666666999934],[32.661666667000134,-2.429166666999947],[32.61583333300018,-2.51],[32.50416666700005,-2.549166666999838],[32.54666666700001,-2.465833332999978],[32.43333333300018,-2.466666666999913],[32.43083333400017,-2.46333333299998],[32.43000000000018,-2.4625],[32.37833333400005,-2.435],[32.36166666700012,-2.429166665999958],[32.197500000000105,-2.515],[32.246666667,-2.55833333399994],[32.24,-2.695833332999882],[32.145,-2.7275],[32.07916666700015,-2.868333332999953],[32.0475,-2.874999999999886],[31.91750000000019,-2.786666666999906],[31.898333332999982,-2.872499999999889],[32.05833333300018,-2.925],[32.046666667000125,-2.95499999999987],[32.08479592400005,-3.132569764999914],[32.08479592400005,-3.26033536999995],[32.062249052000084,-3.367057228999954],[32.062249052000084,-3.663172807999899],[32.0772803000001,-3.742838420999931],[32.10133029600013,-4.135153985999921],[32.16596466100003,-4.61314766299995],[32.17348028500015,-5.041538221999929],[32.11335529399997,-5.454897533999883],[32.000620937000065,-5.854728722999937],[31.87886783000016,-6.185416171999975],[31.859327208000025,-6.302659903999881],[31.866842832000145,-6.421406760999957],[31.910433450000085,-6.652887975999931],[31.954024069000184,-6.768628582999838],[32.03669593100011,-6.8723441919999],[32.114858419000086,-6.923450433999903],[32.13439904100005,-6.997103547999927],[32.14943028900012,-7.213553514999944],[32.27418964499998,-7.366872240999953],[32.45757086700007,-7.404450360999931],[32.70408332900013,-7.535222215999966],[32.80028331400018,-7.611881578999942],[33.13548013800005,-7.841859668999916],[33.263245743000084,-7.954594025999938],[33.353433229000075,-8.154509620999875],[33.383495725000046,-8.34841271599987],[33.54916666600019,-8.442499999999882],[33.68166666700006,-8.4875],[33.7875,-8.481666666999956],[33.80416666700006,-8.396666666999977],[33.731666666000024,-8.39333333299993],[33.65333333299998,-8.32],[33.68416666700011,-8.2275],[33.7425,-8.225833332999969],[33.74166666700012,-8.32999999999987],[34.0425,-8.19],[33.92750000000012,-8.140833333999922],[33.905,-8.0175],[34.00083333300017,-8.0075],[34.025833333000094,-8.07333333299988],[34.086666666999974,-8.0875],[34.08333333300004,-8.18666666699994],[34.135000000000105,-8.193333332999885],[34.289166666000085,-8.0875],[34.31416666700011,-8.033333332999973],[34.135000000000105,-7.920833333999894],[34.21166666700009,-7.905833332999919],[34.28833333300014,-7.960833332999869],[34.3858333340001,-7.971666666999965],[34.34500000000014,-7.880833332999885],[34.411666667000134,-7.718333332999919],[34.455,-7.748333332999948],[34.499166667,-7.645833333999917],[34.59083333400014,-7.605833332999907],[34.56916666700005,-7.458333332999928],[34.48916666700006,-7.41],[34.466666666000094,-7.5],[34.393333333000044,-7.5125],[34.37750000000017,-7.438333332999946],[34.430833333000066,-7.31],[34.54833333400012,-7.18333333399994],[34.60666666700001,-7.054166665999901],[34.79916666600013,-6.900833333999969],[34.82666666700004,-6.79833333299996],[34.98,-6.8325],[34.9591666660001,-6.684166666999943],[34.915,-6.615833333999944],[34.77333333400014,-6.575833333999924],[34.73083333400018,-6.502499999999884],[34.63916666700004,-6.501666666999938],[34.54750000000013,-6.55833333299995],[34.579166666000106,-6.334166666999977],[34.55250000000012,-6.2775],[34.59583333300003,-6.214166665999926],[34.65333333400008,-6.206666666999922],[34.675,-6.286666666999906],[34.78416666700008,-6.405833332999975],[34.78166666700014,-6.471666666999909],[34.9433333340001,-6.5125],[34.9466666670001,-6.43],[35.0208333330001,-6.448333332999937],[35.10583333400018,-6.41083333399996],[35.09416666600015,-6.324166666999929],[35.040000000000134,-6.250833333999879],[34.89166666600016,-6.226666666999961],[34.860000000000184,-6.013333332999878],[34.71416666700003,-5.945],[34.58166666700009,-5.91],[34.53250000000014,-5.958333332999928],[34.35916666700018,-5.83833333299998],[34.30583333300018,-5.9175],[34.27833333300015,-5.7125],[34.35666666700007,-5.789166666999904],[34.4025,-5.755833333999874],[34.31666666700016,-5.6875],[34.19083333300006,-5.545],[34.123333333000176,-5.53583333399996],[34.09333333300003,-5.618333332999953],[34.004166667000106,-5.563333333999879],[34.065,-5.431666666999945],[34.14583333400009,-5.4475],[34.19500000000011,-5.388333332999935],[34.05500000000012,-5.365],[34.0091666670001,-5.384166665999885],[33.955000000000155,-5.254166666999936],[33.86583333400006,-5.202499999999873],[33.73916666700018,-5.211666665999928],[33.6375000000001,-5.2575],[33.57416666600011,-5.330833332999873],[33.5225,-5.301666666999893],[33.44333333300011,-5.380833332999941],[33.413333333000026,-5.34],[33.49166666700012,-5.24916666699994],[33.490833333000126,-5.16],[33.414166667000075,-5.052499999999895],[33.43166666600018,-4.961666666999974],[33.391666666000106,-4.915],[33.4125,-4.764166666999927],[33.47916666599997,-4.685833332999891],[33.425000000000125,-4.6125],[33.4583333330001,-4.458333332999871],[33.441666667000106,-4.351666666999961],[33.350000000000136,-4.353333332999966],[33.35083333300008,-4.278333332999864],[33.226666667000075,-4.181666665999956],[33.27333333299998,-4.13666666599994],[33.32416666600017,-4.01833333299993],[33.183333333,-3.9825],[33.10083333400007,-4.052499999999895],[32.92666666700006,-3.940833332999944],[32.86,-3.968333332999975],[32.77250000000015,-3.921666666999897],[32.7083333330001,-3.969166666999968],[32.55750000000012,-3.956666666999922],[32.45083333300005,-3.864999999999895],[32.477500000000134,-3.761666666999929],[32.43583333300006,-3.649166666999918],[32.4425,-3.595833332999916],[32.64833333400014,-3.489999999999895],[32.705,-3.331666666999979],[32.695,-3.206666666999979],[32.7575,-3.168333332999964],[32.77,-3.09166666699997],[32.77,-3.082499999999868],[32.66666666700013,-3.126666666999824],[32.65333333400014,-3.069999999999879],[32.550833333000185,-2.965833332999978],[32.4516666670001,-3.0025],[32.36000000000013,-2.915833333999842],[32.5275,-2.864999999999839],[32.562500000000114,-2.9175],[32.639166666000165,-2.914166665999971],[32.7475,-2.86083333299996],[32.823333333000164,-2.843333332999919],[32.86333333300007,-2.779999999999859],[32.820000000000164,-2.7175],[32.8175,-2.503333332999887],[32.81833333300017,-2.502499999999884],[32.82583333400015,-2.496666666999943]]],[[[33.0750000000001,-2.383333332999939],[32.98750000000018,-2.385833332999937],[32.87333333300006,-2.465],[32.89500000000015,-2.5325],[32.85833333400018,-2.636666666999872],[32.975000000000136,-2.850833332999969],[33.025,-2.7325],[33.141666667000095,-2.615833333999831],[33.15,-2.524166665999871],[33.0750000000001,-2.383333332999939]]]]},"properties":{"objectid":816,"eco_name":"Dry miombo woodlands","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Afrotropic","eco_biome_":"AF07","nnh":3,"eco_id":42,"shape_leng":535.936183797,"shape_area":99.4126203265,"nnh_name":"Nature Could Recover","color":"#FD965B","color_bio":"#FEAA01","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":1192635.150660493,"percentage":5.5629193241940404}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[23.671616738000182,-18.258142142999873],[23.46267564100009,-18.204075446999923],[23.38793800000019,-18.163447759999883],[23.364469771000074,-18.090646850999917],[23.324697396999966,-18.031882386999882],[23.317776028000083,-18.02372985599993],[23.320099922000168,-18.02169889299995],[23.30775411900015,-17.984917349999932],[23.427842319999968,-17.70348295599996],[23.36906659000016,-17.70347796599998],[23.24670107700007,-18.001271278999923],[23.4795419350001,-18.425360820999913],[23.457523102000152,-18.509535679999942],[23.37530185600008,-18.522571260999882],[23.16558555300014,-18.70510073099996],[23.061965969000028,-18.69930486499993],[22.939320810000027,-18.60213639999995],[22.78337987900005,-18.70888257699994],[22.688054427000168,-18.81370490699993],[22.509445957000082,-18.88568567699997],[22.39983627600003,-18.752986052999916],[22.29890742600014,-18.675284972999975],[22.2468627,-18.658270767999966],[22.158064675000105,-18.530922054999905],[22.007498710000107,-18.384610109999983],[21.854171525000027,-18.28599707999996],[21.894386003000136,-18.404320499999926],[21.977546524000047,-18.459792211999968],[22.156238140000085,-18.697255688999917],[22.06827286400005,-18.7329584229999],[22.209730044000025,-18.942016993999857],[22.23552593100004,-19.033769277999966],[22.21313368200009,-19.209792968999864],[22.110876428000097,-19.348671940999964],[22.066696678000028,-19.494787773999917],[22.09401253200008,-19.663337555999874],[22.160650224000108,-19.86295444299998],[22.28553227599997,-19.89902733799994],[22.33539995900003,-20.003510050999864],[22.38618953800011,-19.94302051699998],[22.64970774400018,-19.95837660299992],[22.78390798000015,-20.013302782999915],[22.888567020000096,-20.128458965999982],[22.935055128000045,-20.245711855999957],[22.90851126800004,-20.296524612999917],[22.976662198000042,-20.34813747599992],[22.993241524000098,-20.34633710299994],[23.011769677000075,-20.3286914009999],[23.235816964000037,-20.051965209999935],[23.135602438999967,-19.864301839999882],[23.267560424000123,-19.89802660099997],[23.295080468000037,-19.98246017499997],[23.38497918300004,-19.905329219999885],[23.478437082000085,-19.929255282999975],[23.417513213000063,-20.014406745999963],[23.432603265000182,-20.03414030399989],[23.546325803000116,-19.892647835999924],[23.676031694000073,-19.76143488799994],[23.559275777000096,-19.720942942999955],[23.654656191000072,-19.6136057949999],[23.695370730000036,-19.499265441999967],[23.68849303400009,-19.42964074199989],[23.59461360400013,-19.40800548399983],[23.462632405000022,-19.32615857899998],[23.428192487000103,-19.280792110999926],[23.485817161000057,-19.218974095999954],[23.70034459400017,-19.210140279999905],[23.7516764880001,-19.16754071099996],[23.446429823000074,-19.056296088999886],[23.337626417000024,-19.053721958999972],[23.212892802000056,-19.099827523999977],[23.192872636,-19.04100622099992],[22.970755393000047,-18.976833840999973],[22.804035165000073,-18.96929231899992],[22.87586359300019,-18.869825076999916],[22.94453343900011,-18.817116973999873],[23.166073108000035,-18.749813908999897],[23.316605030000176,-18.618840755999884],[23.449451241000133,-18.608462619999898],[23.50357496300012,-18.64615278699989],[23.730342689000054,-18.616912880999905],[23.819886975000145,-18.564157331999922],[23.892421219000028,-18.572767942999974],[24.052567352000096,-18.63950796299997],[24.063983066000162,-18.612728805999836],[23.911929843,-18.54913880599986],[23.818925621000176,-18.532480271999873],[23.715049840000063,-18.587536500999875],[23.562784866000072,-18.570380734999958],[23.725054,-18.42955748299994],[23.86413592300005,-18.33104708899998],[23.94548136500015,-18.22890397499998],[24.211572298000192,-18.03725939599991],[24.293776024000067,-18.098576027999968],[24.26871438400019,-18.155811503999928],[24.33913970800006,-18.203155703999983],[24.405772881000132,-18.180535260999932],[24.554903269000135,-18.109175552999943],[24.661975368000185,-17.96100697199995],[24.725241584000116,-17.9050069729999],[24.907602335000036,-17.823024338999915],[25.0795143470001,-17.85907412699993],[25.135527890000105,-17.81104947599988],[25.246539598000027,-17.811742787999947],[25.188333334000106,-17.7275],[25.23666666700018,-17.6],[25.183333333,-17.540833333999956],[25.08,-17.4975],[25.130833333000055,-17.329166666999924],[25.19000000000017,-17.230833333999954],[25.116430740000055,-17.190833332999944],[25.10976407300012,-17.1975],[25.060833334000108,-17.28083333399985],[24.994166667000115,-17.314999999999827],[24.915930487000082,-17.39333333299993],[24.850833333000026,-17.52873036699998],[24.78718344600003,-17.515833332999932],[24.650833334000026,-17.435833332999948],[24.581666666000046,-17.420833332999962],[24.544166667000127,-17.4783333339999],[24.389153703000147,-17.468679660999896],[24.35201089100019,-17.53834257199992],[24.38889989900008,-17.61833465799998],[24.459143246000053,-17.641630957999894],[24.508398963000104,-17.71470883199993],[24.452237437000065,-17.818012155999895],[24.351653171000066,-17.79297489999982],[24.222644920000107,-17.82898410699994],[24.15085326700006,-17.979351557999962],[24.01284096800009,-18.095525994999946],[23.93008397400007,-18.19635110199988],[23.805548488000113,-18.298451674999967],[23.671616738000182,-18.258142142999873]],[[22.973207066000157,-19.28957527699987],[23.02794242800013,-19.244443822999926],[23.15116622100004,-19.336065853999912],[23.241314095000178,-19.431028946999902],[23.221160276000035,-19.52919340899996],[22.949335877000067,-19.314334692999978],[22.973207066000157,-19.28957527699987]],[[23.043509329000017,-19.860143689999916],[23.140775171000087,-19.94019395299989],[23.200836464000133,-20.052404291999892],[23.105119316000128,-20.044403444999887],[23.100763875000098,-19.951148457999977],[23.043509329000017,-19.860143689999916]],[[24.613610999000173,-17.875132476999966],[24.621467695000092,-17.89950934999996],[24.628402718000018,-17.923641613999962],[24.624669806999975,-17.925751813999966],[24.544613286000015,-17.962628836999897],[24.407625503000133,-17.866911397999843],[24.490388519000078,-17.793720648999965],[24.508191734000093,-17.767754107999906],[24.51657644700009,-17.76378279599993],[24.546832130000155,-17.718689318999964],[24.611136868000187,-17.704053183999974],[24.612535175000176,-17.705994468999847],[24.616791795000097,-17.72580327299994],[24.658110001000182,-17.81994969699997],[24.66720908900004,-17.850109993999865],[24.65569945900006,-17.857768303999876],[24.68687274600012,-17.883579857999905],[24.6226786630001,-17.859181667999962],[24.59155681100009,-17.85225831199989],[24.613610999000173,-17.875132476999966]]],[[[23.60916666600008,-16.71666666699997],[23.529166666000094,-16.72166666699985],[23.5208333330001,-16.79166666699996],[23.59500000000014,-16.90416666699997],[23.665000000000134,-17.101666665999915],[23.78583333299997,-17.169166666999956],[23.815833333000114,-17.28],[23.944166667000104,-17.31999999999988],[23.93083333300018,-17.18416666599984],[23.8325,-17.07333333299988],[23.76083333300005,-16.8925],[23.65916666700008,-16.827499999999873],[23.655,-16.740833333999944],[23.60916666600008,-16.71666666699997]]],[[[28.3225,-15.409166666999965],[28.214166667000086,-15.365833333999944],[28.171666667000125,-15.461666665999928],[28.27083333300004,-15.468333332999975],[28.3225,-15.409166666999965]]],[[[28.231666667000127,-15.736666665999905],[28.08833333299998,-15.7475],[28.02583333400014,-15.667499999999848],[28.062500000000114,-15.574999999999875],[27.97666666700019,-15.56833333399993],[27.87583333300006,-15.493333332999839],[27.694166667000047,-15.51],[27.6333333340001,-15.444166666999877],[27.510000000000105,-15.395833333999974],[27.435,-15.41583333299991],[27.383333333000053,-15.365],[27.0875,-15.41],[26.910833334000074,-15.4125],[26.76666666699998,-15.448740818999909],[26.74833333300012,-15.559999999999832],[26.66083333400013,-15.550833333999947],[26.5925,-15.634166666999874],[26.31748548800016,-15.720000009999978],[26.273333333000153,-15.759166666999874],[26.173333333000187,-15.763333333999924],[26.156666667000025,-15.76166666599994],[26.090833334000024,-15.766666666999924],[26.077500000000157,-15.759999999999877],[26.0375,-15.748333332999948],[26.015833334000035,-15.689166666999938],[26.05833333300012,-15.58416666699992],[26.024166666000156,-15.538333332999912],[25.924166667000122,-15.74583333299995],[25.852500000000134,-15.78166666699991],[25.80500000000012,-15.859166666999897],[25.92083333300019,-15.874999999999886],[26.0316771090001,-15.878333333999933],[26.13416666700016,-15.916666666999959],[26.15750000000014,-15.992696758999898],[26.201666666000165,-15.859999999999843],[26.438333333000116,-15.745],[26.630833333000112,-15.772647857999914],[26.746666667000056,-15.68249999999989],[26.866666667000118,-15.73833333399989],[26.871666667000113,-15.81666666599989],[26.936666667000168,-15.877499999999884],[27.034166667000193,-15.8175],[27.098333334000074,-15.8175],[27.11583333300007,-15.89],[27.200833334000095,-15.855],[27.3325,-15.90083333399997],[27.43916666700011,-15.88249999999988],[27.60083333299997,-15.7725],[27.62833333300017,-15.8175],[27.848333333000028,-15.774999999999864],[28.033333333000144,-15.753333332999944],[28.174166666000076,-15.784166666999965],[28.2683333330001,-15.872499999999889],[28.293333333000078,-15.87833333299983],[28.284166667000136,-15.834166666999977],[28.2575,-15.8225],[28.19750000000016,-15.800833333999833],[28.194166666000058,-15.795],[28.190833334000104,-15.752499999999827],[28.231666667000127,-15.736666665999905]]],[[[35.96253628799997,-15.463696794999976],[35.92672275299998,-15.262460872999952],[35.94959145000007,-15.181729898999947],[35.916265788000146,-15.00861047599983],[35.90133459900011,-14.772030932999883],[35.87049681100012,-14.627028007999968],[35.83916934400003,-14.612162886999897],[35.87000000000012,-14.749166665999894],[35.73750000000018,-14.91416666699996],[35.735833333000016,-14.96],[35.559166667000056,-15.015],[35.54833333300019,-15.11],[35.45916666600016,-15.190833333999933],[35.4566666660001,-15.313333332999889],[35.5725,-15.43],[35.559166666000124,-15.5275],[35.644166667000036,-15.595833332999973],[35.556666667000115,-15.645],[35.527500000000146,-15.564999999999884],[35.445,-15.503333332999887],[35.40500000000014,-15.533333332999916],[35.40583333300009,-15.661666666999906],[35.37416666700011,-15.740833333999888],[35.42666666600019,-15.8475],[35.52583333300015,-15.753333332999944],[35.60083333400007,-15.719166666999968],[35.64583333300004,-15.6325],[35.70083333400004,-15.714166666999972],[35.771666666000044,-15.628333333999876],[35.78916666700019,-15.525833332999923],[35.858618185000125,-15.57815764499992],[35.96253628799997,-15.463696794999976]]],[[[28.03833333300014,-14.319166666999934],[28.03166666600015,-14.254166666999936],[27.90583333400008,-14.228333332999966],[27.875833334000163,-14.08666666699986],[27.95083333400015,-13.975833332999912],[27.917500000000132,-13.903333332999978],[27.790000000000134,-13.861666666999952],[27.804166667000175,-13.930833332999839],[27.52333333399997,-14.019166666999922],[27.435833333000176,-14.07666666699987],[27.34020633400013,-14.086012621999942],[27.276666667000086,-14.208333332999814],[27.079166667000095,-14.385833332999937],[27.18416666700017,-14.3975],[27.3275,-14.46],[27.375,-14.545833333999894],[27.481666667000127,-14.486666666999895],[27.560833333000062,-14.569166666999877],[27.803333333000126,-14.655833332999919],[27.80083333300007,-14.758333332999939],[27.825833334000095,-14.698333332999937],[27.975,-14.636666666999929],[27.993333333000066,-14.630833332999885],[28.046666666000135,-14.53],[28.0375,-14.435833332999891],[28.086666667000145,-14.385833332999937],[28.144166667000093,-14.418333332999964],[28.1625,-14.38083333399993],[28.078333334000092,-14.37],[28.03833333300014,-14.319166666999934]]],[[[23.236531707999973,-12.726116702999889],[23.01971046699998,-12.757644852999874],[22.929841545000045,-12.800643009999874],[22.76030146000005,-12.955233467999903],[22.73245716600013,-13.001666666999881],[23.016231093000044,-12.999166666999884],[23.075944643000184,-12.84312588299997],[23.236531707999973,-12.726116702999889]]],[[[22.70782269800003,-13.000529884999878],[22.705429498000115,-12.860009850999916],[22.67078055400009,-12.755706956999916],[22.52876280700019,-12.510996740999872],[22.59791861500014,-12.39524643899989],[22.58090659800007,-12.278159753999887],[22.751642908,-12.12864968699995],[22.746990246000166,-11.994550267999955],[23.04527087200006,-11.774914407999972],[23.08322882200008,-11.708169173999977],[23.061641583000153,-11.636626343999922],[23.132965653000156,-11.583439191999958],[23.055440973000145,-11.51426654599993],[22.809095077,-11.563330161999943],[22.686387508000166,-11.571171534999905],[22.598827126000117,-11.611616365999964],[22.544748773000038,-11.565483473999961],[22.561058556999967,-11.505916903999946],[22.761429096000086,-11.424284384999908],[22.84983921500003,-11.423562912999898],[22.82922512199997,-11.294917325999904],[22.937611610000147,-11.15769342699997],[22.901609781000047,-11.079907],[22.73654472400011,-11.081358971999975],[22.650900245000173,-11.042412144999957],[22.537418538000054,-10.902720096999929],[22.45347952300017,-10.952601952999885],[22.50024361100003,-11.065281302999836],[22.288088086000073,-11.210284153999908],[22.120359129000178,-11.173602060999883],[22.084418001000188,-11.07437994299994],[22.00146783000008,-11.05207495299993],[21.94181670300003,-11.133726975999934],[21.76428625400007,-11.027999955999974],[21.685723940000173,-11.085022153999944],[21.61035977000006,-11.06116281099986],[21.468549780000046,-10.964964387999942],[21.33869510300019,-10.951307045999954],[21.218976670000075,-11.188393945999962],[21.103993727000045,-11.182847264999964],[21.0319475660001,-11.114942471999939],[20.75299613900006,-11.134959340999956],[20.66228911200011,-11.221990782999967],[20.674322171000142,-11.317822949999936],[20.77922310600013,-11.47091616199998],[20.76800889200007,-11.570013754999877],[20.910851958000137,-11.728666956999973],[20.6743180900001,-11.905136371999902],[20.655697053000097,-12.03132737199985],[20.66881627000015,-12.195403400999908],[20.720024959000114,-12.290504419999877],[20.730660494000176,-12.475242721999905],[20.860213568,-12.575956737999888],[20.941687641000044,-12.694340195999871],[20.992062675000057,-12.762135452999814],[21.24273657200007,-12.928032453999947],[21.32562342199998,-13.137089573999958],[21.42464807100015,-13.229293649999931],[21.426394508000158,-13.37076916299992],[21.57024614200003,-13.380054270999892],[21.68699885200016,-13.467760591999877],[21.59048174100019,-13.573427],[21.63009396800004,-13.704347740999935],[21.750703985000087,-13.803546124999968],[21.918849861000126,-13.913083293999875],[21.975566711000113,-13.983513176999963],[21.990439884000125,-14.163897429999963],[21.937702427000147,-14.199186525999892],[21.65622679300003,-14.231919245999904],[21.652247125000088,-14.30948172099994],[21.780746838000084,-14.316486444999953],[21.847331006000104,-14.476342125999963],[21.790573061000146,-14.612161584999967],[21.82001120800004,-14.693307795999942],[21.968992837000087,-14.774619735999863],[21.910304250000138,-14.840163466999911],[21.889677837000136,-14.9816754659999],[21.723808515000144,-15.04444489499997],[21.683258429000034,-15.1181797939999],[21.596215880000045,-15.184675143999925],[21.57171251300008,-15.33232272299989],[21.47846424200003,-15.474562620999905],[21.482011844000112,-15.516232531999947],[21.578286501000093,-15.684223843999973],[21.698381128000108,-15.785100396999951],[21.79726221100009,-15.92605584699993],[22.034166667000136,-16.1125],[22.056666667000172,-16.180833333999942],[22.193333333000055,-16.27583333299998],[22.172500000000184,-16.368333332999953],[22.2325,-16.398333332999925],[22.34416666700008,-16.596666666999965],[22.448333333000164,-16.634166666999874],[22.60583333400018,-16.66083333299997],[22.5775000000001,-16.753333332999944],[22.6675,-16.82],[22.698333333000107,-16.910833333999904],[22.7475,-16.931666666999888],[22.798333333000073,-17.023333333999915],[22.865833334000115,-17.04916666699995],[22.979166667000015,-16.947499999999877],[23.03666666700019,-17.00583333299994],[23.017500000000155,-17.173333332999903],[23.06500000000011,-17.21333333299998],[23.060833333000062,-17.21166666599993],[23.04416666700007,-17.179166665999958],[23.04000000000019,-17.175],[23.02,-17.124166666999884],[23.098333334000188,-17.08],[23.285833334000188,-17.037499999999852],[23.363333333000185,-17.06166666699994],[23.3366666660001,-16.836666666999918],[23.34416666700008,-16.73583333399995],[23.247500000000173,-16.696666666999818],[23.257500000000107,-16.605833332999907],[23.321666667000045,-16.56583333299983],[23.317500000000166,-16.485],[23.19,-16.4125],[23.12166666700017,-16.45916666599993],[23.07166666600017,-16.37416666699994],[23.245,-16.3275],[23.303333333000126,-16.18833333399982],[23.247500000000173,-16.095],[23.30666666700006,-15.94916666599994],[23.276666667000143,-15.893333332999873],[23.2775,-15.766666666999924],[23.210833333000096,-15.658333332999973],[23.19583333300011,-15.377499999999884],[23.119166666000183,-15.2375],[23.1625,-15.00749999999988],[23.412500000000136,-14.87499999999983],[23.500833333000116,-14.887499999999875],[23.518333333000157,-14.949166666999872],[23.617500000000177,-14.911666666999963],[23.622500000000173,-14.850833332999912],[23.485833333000187,-14.844166666999968],[23.371666667000113,-14.87083333299995],[23.375000000000114,-14.804999999999893],[23.594166666000092,-14.7275],[23.773333333000096,-14.891666665999935],[23.86638888900012,-14.905],[23.862500000000125,-14.895],[23.79416666700007,-14.890833332999932],[23.614166666000074,-14.7275],[23.698333333000107,-14.646666666999977],[23.753333334000047,-14.730833332999907],[23.754166667,-14.731666666999956],[23.754166666000117,-14.7325],[23.75500000000011,-14.733333332999905],[23.815833334,-14.80166666599996],[23.816666667000106,-14.802499999999895],[23.840384723000057,-14.809999999999889],[23.741666667000118,-14.695833332999939],[23.8125,-14.5875],[23.749166667,-14.514166666999927],[23.787389785000187,-14.440833333999876],[23.728333333000023,-14.4025],[23.77833333300009,-14.312499999999886],[23.7650000000001,-14.32583333399998],[23.75166666700011,-14.295],[23.690833334000104,-14.202499999999873],[23.72916666600014,-14.164166665999858],[23.71916666700008,-14.1675],[23.6575,-14.23],[23.660833334000188,-14.27],[23.6625,-14.297499999999843],[23.607500000000186,-14.355],[23.612500000000182,-14.455],[23.509166667000045,-14.655],[23.395,-14.702499999999873],[23.418333334000124,-14.61416666599996],[23.555,-14.460833333999915],[23.600833333000082,-14.450833332999935],[23.5925,-14.406666665999978],[23.569166667000104,-14.3675],[23.590833334000024,-14.289166665999915],[23.605000000000132,-14.26833333299993],[23.55333333300007,-14.280833332999975],[23.539166666000085,-14.39333333299993],[23.543333333000135,-14.46],[23.48250000000013,-14.503333333999933],[23.41166666700019,-14.606666666999956],[23.37333333400005,-14.707499999999868],[23.236666667000065,-14.646666666999977],[23.225833333000082,-14.538333332999912],[23.239166666000074,-14.40083333299998],[23.23916666700012,-14.2575],[23.2975,-14.200833332999935],[23.228333333000137,-14.093333332999975],[23.240833333000182,-13.998333332999948],[23.216666667000084,-13.843333332999975],[23.239166666000074,-13.79],[23.193333334000158,-13.725],[23.225000000000136,-13.763333332999878],[23.195833334000042,-13.865],[23.204166667000038,-13.9725],[23.07166666600017,-13.920833332999962],[23.092500000000143,-14.020833332999871],[23.2075,-13.979166666999845],[23.209166667000034,-14.119166666999945],[23.16666666600014,-14.201666665999937],[23.096666667000022,-14.20583333299993],[23.04000000000019,-14.075833332999935],[23.00416666600006,-13.904166666999913],[22.91000000000014,-13.8025],[22.999166666000065,-13.771666666999977],[23.06166666700011,-13.828333333999979],[23.10083333299997,-13.729166666999959],[23.0625,-13.668333333999897],[23.118333333000066,-13.631666666999934],[23.18250000000012,-13.702499999999873],[23.06833333300017,-13.46],[23.05416666700006,-13.314999999999827],[22.975833333000082,-13.293333333999897],[23.02666666700003,-13.31],[23.0525,-13.481666666999956],[23.11,-13.623333332999948],[23.010000000000105,-13.66416666699996],[22.941666666000117,-13.626666666999938],[22.875,-13.53583333399996],[22.850833333000026,-13.33416666699992],[22.92416666700018,-13.23916666599996],[22.96916666700008,-13.2775],[23.066952398000012,-13.179166665999844],[23.06500000000011,-13.170833332999905],[22.975833333000082,-13.228333333999956],[22.97586264600011,-13.145833332999871],[22.97666666700013,-13.06346631599996],[22.972473829000137,-13.059999999999889],[22.88416666600017,-13.126666665999949],[22.7725,-13.075],[22.703333334000035,-13.09166666599998],[22.76000000000016,-13.098333332999914],[22.78666666700002,-13.175],[22.65,-13.240833332999955],[22.62166666600018,-13.130833332999941],[22.685000000000116,-13.001666666999881],[22.707521146000147,-13.00166671999989],[22.70782269800003,-13.000529884999878]],[[22.013333333000105,-13.00583333399993],[22.238333333000128,-13.040833332999966],[22.00083333300006,-13.086666665999871],[22.013333333000105,-13.00583333399993]],[[22.878333333000057,-13.799166666999895],[22.994166667000172,-13.911666666999906],[22.932500000000175,-13.940833332999887],[22.878333333000057,-13.799166666999895]],[[22.649166665999985,-13.870833332999894],[22.723333334000188,-13.934166666999943],[22.8958333330001,-13.9625],[23.025,-14.07],[23.085,-14.180833332999953],[23.030833333000146,-14.250833333999879],[22.9125,-14.061666665999894],[22.68083333400017,-13.929999999999893],[22.649166665999985,-13.870833332999894]],[[22.00333333300017,-14.269166666999979],[22.08,-14.374166666999884],[22.000833334000163,-14.423333333999949],[22.00333333300017,-14.269166666999979]],[[22.345,-14.693333332999941],[22.41166666700019,-14.735833332999903],[22.575,-14.930833332999896],[22.465833333000035,-14.9375],[22.37500000000017,-14.815833332999887],[22.42833333300007,-14.77416666699986],[22.345,-14.693333332999941]],[[22.56250000000017,-14.95],[22.66,-14.963333332999923],[22.76916666699998,-15.036666666999963],[22.720833334000076,-15.114999999999895],[22.779166666000037,-15.2325],[22.7425,-15.3225],[22.67583333300007,-15.320833332999882],[22.664166667000075,-15.38833333299982],[22.586666667000145,-15.415],[22.6075,-15.5075],[22.560833333000176,-15.524166666999974],[22.49,-15.638333333999924],[22.489166666000187,-15.725],[22.413333333000082,-15.7],[22.303333333000182,-15.7075],[22.095,-15.665833332999966],[22.031666666000092,-15.5875],[22.19250000000011,-15.41833333399984],[22.12916666700005,-15.280833332999975],[22.23666666600019,-15.255],[22.195833333000166,-15.0975],[22.14916666700003,-15.005833332999885],[22.35,-14.970833332999973],[22.56250000000017,-14.95]],[[22.78666666700002,-15.249166665999894],[22.94,-15.5275],[22.94750000000016,-15.628333332999944],[23.030833333000146,-15.758333333999929],[23.03666666700019,-15.8225],[23.125833333000116,-15.921666665999851],[23.126666667000165,-16.0325],[23.0725,-16.070833332999825],[22.86416666700012,-16.046666665999908],[22.72250000000014,-16.004166666999936],[22.600000000000136,-15.86249999999984],[22.683333334000054,-15.811666665999837],[22.7775,-15.8325],[22.886666667000156,-15.900833332999866],[22.900833333000094,-15.805833332999896],[22.942500000000166,-15.785833332999971],[22.830000000000155,-15.611666666999952],[22.6625,-15.470833332999973],[22.69000000000011,-15.390833332999875],[22.751666666000062,-15.338333333999913],[22.78666666700002,-15.249166665999894]],[[22.78,-16.039166666999904],[22.867500000000177,-16.06749999999988],[23.040833333000137,-16.07583333399998],[23.084166667000147,-16.14249999999987],[23.19250000000011,-16.1875],[23.24166666600013,-16.268333333999976],[23.0183333330001,-16.266666666999924],[22.798333334000176,-16.24583333299995],[22.679166667,-16.21666666699997],[22.713333333000094,-16.15083333299998],[22.628333333000114,-16.12],[22.78,-16.039166666999904]],[[22.439166667000052,-15.728333333999899],[22.48916666700012,-15.7975],[22.55833333300012,-15.820833332999939],[22.715,-16.01916666699998],[22.715,-16.07416666699993],[22.56250000000017,-16.02833333299992],[22.43250000000012,-15.82666666699987],[22.35083333300014,-15.751666666999881],[22.439166667000052,-15.728333333999899]],[[22.57333333300005,-15.734166665999908],[22.66666666700013,-15.736666665999905],[22.7475,-15.785],[22.595,-15.8566666669999],[22.51666666600005,-15.759166666999874],[22.57333333300005,-15.734166665999908]],[[22.055833333000123,-15.31],[22.1525,-15.403333332999978],[22.00083333300006,-15.574999999999875],[22.000000000000114,-15.333333332999928],[22.055833333000123,-15.31]],[[22.171666666000135,-15.14333333399992],[22.204166666000162,-15.205833332999873],[22.134166667000045,-15.2525],[22.035,-15.234166665999851],[22.171666666000135,-15.14333333399992]],[[22.0025,-14.809166666999943],[22.055000000000177,-14.935],[22.000000000000114,-14.936206951999964],[22.0025,-14.809166666999943]],[[22.045833333000132,-14.675],[22.110833333000187,-14.689166666999881],[22.10416666700013,-14.795833332999962],[22.000000000000114,-14.775],[22.045833333000132,-14.675]],[[22.731666667000184,-16.73916666599996],[22.792500000000132,-16.856666666999956],[22.938333333000116,-16.944166666999934],[22.896666667000147,-17.014999999999816],[22.799166667000122,-17.017499999999814],[22.70083333400015,-16.90416666699997],[22.661666666000087,-16.786666666999963],[22.731666667000184,-16.73916666599996]]],[[[29.575,-11.241666666999834],[29.54166666700013,-11.3625],[29.605833333000135,-11.468333333999965],[29.705833333000044,-11.44166666599989],[29.737500000000125,-11.501666666999938],[29.66500000000019,-11.625],[29.596666667000136,-11.669166665999967],[29.595,-11.889166665999937],[29.62833333300017,-11.944166666999877],[29.562414257000114,-12.11333333399989],[29.57916666600005,-12.155833332999975],[29.46149056200005,-12.306056574999957],[29.529729480000185,-12.378451407999819],[29.67826049300004,-12.361833781999962],[29.787050555000064,-12.403590747999829],[29.816666667000163,-12.2775],[29.878333333000114,-12.305833332999896],[29.96,-12.253333332999944],[30.105,-12.350833333999958],[30.19,-12.305],[30.16000000000014,-12.229166666999902],[30.19833333300005,-12.189166666999938],[30.36833333300018,-12.24166666699989],[30.481666666000137,-12.188333332999889],[30.495,-12.099166666999963],[30.5775000000001,-12.071666666999931],[30.543333334000067,-11.928333332999955],[30.568333334000158,-11.794166666999956],[30.655,-11.808333333999883],[30.664166667000075,-11.7],[30.7525,-11.695833332999882],[30.6875,-11.51833333299993],[30.791666667000015,-11.42583333399989],[30.808333333000064,-11.351666666999904],[30.729166667000072,-11.345833333999906],[30.736666666000076,-11.21666666699997],[30.688333333000173,-11.177499999999895],[30.570833333000166,-11.197499999999877],[30.48166666700007,-11.1075],[30.3825,-11.095],[30.26333333399998,-11.039379372999974],[30.150000000000148,-11.041666666999959],[30.11416666700012,-10.9525],[30.16000000000014,-10.877499999999884],[30.11416666700012,-10.809515246999922],[30.0075,-10.839166666999972],[29.906666667000138,-10.833333333999974],[29.875,-10.87499999999983],[29.804166667000118,-10.91666666599997],[29.716666667000084,-11.05],[29.65,-11.054166665999901],[29.616666667000118,-11.1375],[29.525,-11.208333332999871],[29.575,-11.241666666999834],[29.583333334000145,-11.225],[29.575,-11.241666666999834]]],[[[28.45636587200005,-9.525917618999927],[28.37172404200004,-9.52015989399996],[28.33793248300003,-9.568268497999952],[28.371671487000015,-9.66205679799998],[28.417398457000047,-9.961799689999964],[28.463125595000065,-10.02276328399995],[28.58450595500011,-10.04272575099992],[28.597916011000166,-9.975693815999932],[28.502095462000113,-9.981453169999952],[28.487269572000116,-9.935338815999955],[28.49898120900008,-9.727058022999927],[28.59454777100018,-9.719132069999887],[28.45636587200005,-9.525917618999927]]],[[[31.872500000000116,-10.583333333999917],[31.9675,-10.555],[32.020833333000155,-10.504166665999946],[32.12166666600007,-10.273333332999925],[32.141666667000095,-10.16583333299991],[32.17916666700012,-10.1325],[32.12500000000017,-10.045],[32.18583333300012,-9.985],[32.19166666700016,-9.88666666599994],[32.30500000000012,-9.876666666999881],[32.406666667000025,-9.81166666699994],[32.483333333000076,-9.793333332999964],[32.55250000000012,-9.875833332999946],[32.523333334000085,-9.9725],[32.5775000000001,-10.0725],[32.67583333300007,-9.928333332999841],[32.738333333000185,-9.758333332999882],[32.65833333300003,-9.758333332999882],[32.70750000000015,-9.631666666999934],[32.629166667000106,-9.601666666999904],[32.52333333300015,-9.359166666999954],[32.413333333000026,-9.276666666999972],[32.254166666000174,-9.258333332999882],[32.208333333000155,-9.349166666999963],[32.234166667000125,-9.415833332999966],[32.039166667000075,-9.54333333299985],[32.085,-9.624999999999886],[31.99083333300007,-9.66666666599997],[31.940833334000104,-9.7325],[31.918333333000135,-9.82583333399998],[31.947500000000105,-9.938333332999889],[31.87416666600018,-10.000833333999935],[31.961666667000145,-10.061666666999827],[31.9825,-10.125833332999889],[31.84583333300003,-10.185833332999948],[31.844166666999968,-10.2275],[31.744166666000126,-10.25666666699982],[31.653333334000138,-10.384166665999942],[31.5775000000001,-10.3975],[31.55670444200007,-10.480833332999964],[31.607020897000098,-10.56916666799998],[31.80750000000012,-10.518333333999976],[31.872500000000116,-10.583333333999917]]],[[[34.3275000000001,-8.6925],[34.24833333400011,-8.643333332999816],[34.237500000000125,-8.564166666999938],[34.375,-8.5475],[34.365,-8.460833332999869],[34.49500000000012,-8.368333332999896],[34.65583333300009,-8.304166666999947],[34.80333333400006,-8.194166666999934],[34.63583333400004,-8.161666666999963],[34.494166666000126,-8.170833332999962],[34.464166667000086,-8.246666666999943],[34.39166666699998,-8.276666666999972],[34.310833333000176,-8.22166666599992],[34.227500000000134,-8.283333332999916],[34.054166667000175,-8.286666666999963],[34.060000000000116,-8.442499999999882],[34.1325,-8.55833333399994],[34.0425,-8.610833333999892],[34.11333333400006,-8.7125],[34.18333333300018,-8.614166665999903],[34.21416666700014,-8.724166666999906],[34.3275000000001,-8.6925]]],[[[35.90553630300013,-9.15981226799994],[36.02049353700005,-8.935433847999832],[36.01944468500011,-8.860906797999974],[36.07508085600011,-8.816874868999946],[36.24453145400008,-8.558271438999952],[36.31276160100015,-8.520484167999882],[36.31462449800017,-8.418065233999926],[36.39051714700008,-8.337725063999926],[36.49002962300017,-8.310522067999955],[36.594157575000054,-8.208686267999894],[36.829043103000174,-8.162933722999924],[36.9259845740001,-8.177522947999933],[36.88535810100012,-8.086946599999976],[36.736623383,-8.136533568999937],[36.64454479500017,-8.14016185099996],[36.519469628000024,-8.20956090899989],[36.34908349700004,-8.261668209999868],[36.30149176400016,-8.303301118999968],[36.2284233580001,-8.269842743999902],[36.16808292000013,-8.286236606999978],[36.08867540200015,-8.245807338999896],[36.064670528000136,-8.356755107999902],[35.95683098400008,-8.376975061999872],[35.87544519700009,-8.451231365999888],[35.94160669500013,-8.573860283999977],[35.86086581400019,-8.660743657999888],[35.848863836000135,-8.80540072499997],[35.76924735600011,-8.87454065299994],[35.82984047700006,-8.98555178499987],[35.89205646300013,-8.94363974099997],[35.90553630300013,-9.15981226799994]]],[[[31.51000000000016,-7.356666666999899],[31.38416666700016,-7.40416666699997],[31.446666666,-7.516666665999878],[31.549166666000076,-7.553333332999955],[31.54583333300019,-7.604166665999969],[31.68416666700017,-7.690833333999876],[31.700000000000102,-7.749166666999884],[31.77666666700003,-7.757499999999879],[31.79083333400007,-7.8175],[31.87166666700017,-7.893333332999873],[31.983333334000065,-8.045],[32.0783333330001,-8.090833333999967],[32.09333333300009,-8.1475],[32.2025,-8.0775],[32.366666666000185,-8.139166666999927],[32.43333333300018,-8.238333332999957],[32.4175,-8.289166665999971],[32.53750000000019,-8.360833333999949],[32.51083333300011,-8.411666666999963],[32.586666667000145,-8.47916666599997],[32.8275,-8.508333332999939],[32.93,-8.416666666999902],[32.79916666600013,-8.335],[32.66583333300008,-8.18],[32.61833333300012,-8.165],[32.50083333300012,-8.005],[32.43000000000018,-7.989166666999949],[32.31,-7.846666665999919],[32.18166666700017,-7.764999999999873],[32.05833333300018,-7.62916666599989],[31.823333333000164,-7.469999999999857],[31.61166666600019,-7.381666666999934],[31.51000000000016,-7.356666666999899]]],[[[35.48956205700006,-7.246610577999945],[35.36256244600003,-7.277531831999909],[35.374239901000124,-7.335471083999892],[35.49171669800006,-7.314008758999933],[35.48956205700006,-7.246610577999945]]],[[[31.55166666600013,-7.244166666999888],[31.545,-7.1375],[31.5,-7.074999999999875],[31.383333334000042,-7.056666665999899],[31.36583333300007,-7.1225],[31.463333334000026,-7.144166665999876],[31.55166666600013,-7.244166666999888]]],[[[31.245833333000178,-7.11],[31.319166666000058,-7.048333333999892],[31.332500000000152,-6.93],[31.405,-6.886666666999929],[31.430000000000177,-6.776666666999915],[31.33,-6.671666666999897],[31.321666666000112,-6.845],[31.258333334000156,-6.85],[31.13166666700016,-6.6525],[31.044166665999967,-6.7075],[31.0683333340001,-6.762499999999818],[31.02833333300009,-6.8475],[30.9075,-6.86083333299996],[30.96583333300015,-6.9375],[31.064166667000052,-6.889166666999927],[31.1425,-6.96],[31.07416666600011,-6.989999999999895],[31.035,-7.070833333999929],[31.245833333000178,-7.11]]],[[[30.884166667000102,-6.726666665999971],[31.048333333000016,-6.635833332999937],[30.991666666000185,-6.55],[30.916666666000026,-6.55833333299995],[30.884166667000102,-6.726666665999971]]],[[[36.06666666700016,-6.358333333999894],[35.95071999600003,-6.378060365999829],[35.88129493200012,-6.364544930999955],[35.84881944900013,-6.444105401999877],[35.75148923799998,-6.45953754899989],[35.70903087300019,-6.401406697999903],[35.612129129000095,-6.389360340999872],[35.57265268800006,-6.300895320999928],[35.50269358300011,-6.376738145999923],[35.56485353800008,-6.417887253999879],[35.56457535900006,-6.529771797999956],[35.61332671800011,-6.565759533999881],[35.757864753000035,-6.561828763999813],[35.80647690800009,-6.62467269699988],[35.90168512400004,-6.637344806999977],[35.949700362000044,-6.480493560999946],[36.03107254500014,-6.463751777999903],[36.10583333300008,-6.387499999999875],[36.06666666700016,-6.358333333999894]]],[[[37.056335850000096,-7.392630038999869],[37.10267843500014,-7.35592372799988],[37.10624080600007,-7.230306849999977],[37.15218593100013,-7.138642780999874],[37.25010511400012,-7.228669943999876],[37.35808220100006,-7.002880260999973],[37.43639674800016,-6.966874278999967],[37.418528974000026,-6.893796564999946],[37.452287987000034,-6.749011570999926],[37.44271020400009,-6.599985599999968],[37.494793566000055,-6.507303882999906],[37.60688993600007,-6.457710138999971],[37.69729813200007,-6.284309744999973],[37.668611892000115,-6.253522571999895],[37.52154116300011,-6.394722761999958],[37.490823166000155,-6.461157799999967],[37.351544629000045,-6.624633606999907],[37.34900081800015,-6.773432491999927],[37.310737490000065,-6.853953568999884],[37.20624059800019,-6.850698934999969],[37.20868480300004,-6.921744388999969],[37.05402799600006,-7.006635236999898],[37.06150407700005,-7.104079157999934],[37.02037525100019,-7.205809157999909],[37.056335850000096,-7.392630038999869]]],[[[35.3308333330001,-6.144166666999979],[35.31,-6.041666665999969],[35.14,-6.038333333999958],[35.09583333400019,-5.989166666999893],[35.019166667000036,-6.059166666999829],[35.07083333300017,-6.150833332999923],[35.199166667000156,-6.234166666999954],[35.31583333400005,-6.230833332999907],[35.3308333330001,-6.144166666999979]]],[[[33.43166666600018,-4.961666666999974],[33.47833333300008,-4.944166665999944],[33.48583333300013,-4.841666665999981],[33.55166666700018,-4.7725],[33.47916666599997,-4.685833332999891],[33.4125,-4.764166666999927],[33.391666666000106,-4.915],[33.43166666600018,-4.961666666999974]]],[[[37.10749837900016,-4.769561820999911],[37.12446863600013,-4.836449008999921],[37.19873929400018,-4.92556622099994],[37.31758709300004,-4.899474245999897],[37.590577263000114,-5.060328721999895],[37.45370745800017,-4.917517053999916],[37.372944279000194,-4.857153319999895],[37.350269836000166,-4.745950580999931],[37.214431836000074,-4.751662533999934],[37.145498420000024,-4.716639019999946],[37.10749837900016,-4.769561820999911]]],[[[36.91113960500007,-4.522654738999961],[36.80867342099998,-4.56597705299987],[36.79531582600015,-4.73365562399988],[36.74889117300006,-4.925147209999921],[36.8144120020001,-4.996061306999934],[36.84300560500009,-4.87593228999998],[36.840667357000086,-4.783963780999954],[36.91113960500007,-4.522654738999961]]],[[[35.84695941700005,-4.516666666999868],[35.9266131280001,-4.55048706499997],[36.04199815300012,-4.528537471999925],[36.12635894400006,-4.611142727999891],[36.17914022500014,-4.62166316399987],[36.194825528000024,-4.697264972999903],[36.29116843600008,-4.773773082999924],[36.278170633000116,-4.867283460999886],[36.32503143800005,-4.905299571999876],[36.41300206600016,-4.903731577999906],[36.252460036000116,-4.645936774999939],[36.232506646000104,-4.532044516999918],[36.12262007200013,-4.477584126999943],[36.13013012500011,-4.380771455999934],[36.17047994700016,-4.334631917999957],[36.07486268600019,-4.290203536999968],[35.97768227500006,-4.319710628999928],[35.87666666700011,-4.440833332999944],[35.84695941700005,-4.516666666999868]]],[[[34.54166666600008,-4.071666666999931],[34.6425,-3.931666665999899],[34.753333333000114,-3.924166666999895],[34.78,-3.850833332999969],[35.02416666700003,-3.748333332999948],[35.1725,-3.7125],[35.29583333300019,-3.663333332999969],[35.368333333000066,-3.550833332999957],[35.333333333000155,-3.475833332999969],[35.22490143400006,-3.54634217399996],[35.17608877900011,-3.652081679999981],[35.079640250000125,-3.700662612999963],[34.87083357600005,-3.757257656999911],[34.73968059900005,-3.690183325999953],[34.81565946500007,-3.63256728399989],[34.967315592000034,-3.611594615999934],[35.079166667000095,-3.524166665999871],[35.04500000000013,-3.515833332999932],[34.93500000000017,-3.58833333299998],[34.756666666000115,-3.64249999999987],[34.53250000000014,-3.82666666699987],[34.449166667000156,-3.880833332999885],[34.3391666660001,-3.868333332999839],[34.21916666700014,-3.985833333999835],[34.176666666000074,-4.054166666999947],[34.02333333300004,-4.096666666999965],[33.954166666000106,-4.19416666699982],[33.98833333300013,-4.285],[34.004166667000106,-4.4225],[33.8925,-4.64666666699992],[33.891666667000095,-4.742499999999893],[33.852500000000134,-4.841666665999981],[33.89666666600016,-4.93333333399994],[33.955000000000155,-4.986666666999952],[33.93166666700017,-5.085],[34.01833333400015,-5.075833333999981],[34.09583333400002,-5.1075],[34.02666666700014,-5.033333332999973],[34.0325,-4.930833332999953],[34.09,-4.873333332999891],[34.09833333300003,-4.609166665999908],[34.191666667000106,-4.515833332999932],[34.20583333400015,-4.428333333999944],[34.16333333300008,-4.364999999999895],[34.24833333400011,-4.32416666599994],[34.270833334000145,-4.1825],[34.3275000000001,-4.161666665999974],[34.328333333000046,-4.160833332999971],[34.33166666700015,-4.159166666999965],[34.3325,-4.158333332999973],[34.3841666670001,-4.085833332999869],[34.501666666000176,-3.986666666999952],[34.54166666600008,-4.071666666999931]]],[[[30.419166666000024,-3.831666666999865],[30.348333333000085,-3.960833332999869],[30.34916666600003,-4.035],[30.476666666000142,-4.015],[30.500833333000173,-4.091666665999981],[30.47916666700013,-4.155833332999975],[30.519166667000036,-4.214166666999972],[30.64,-4.145833333999974],[30.70416666600005,-4.169166666999956],[30.73583333300013,-4.327499999999873],[30.652500000000146,-4.416666666999902],[30.669166666000137,-4.609166665999908],[30.73,-4.656666665999978],[30.739166666000187,-4.748333332999835],[30.85916666600008,-4.781666665999978],[30.87750000000011,-4.814999999999827],[30.84916666700019,-4.983333332999905],[30.875833333000173,-5.139166665999937],[30.946666667000045,-5.0375],[31.031666667000025,-4.993333332999953],[31.12416666600018,-4.993333332999953],[31.196666666000056,-5.054166666999947],[31.18833333300006,-5.148333333999972],[31.1325,-5.18333333299995],[31.050000000000182,-5.1725],[30.92750000000018,-5.309999999999889],[30.985000000000127,-5.374166666999827],[31.030833333000146,-5.4925],[31.03,-5.5775],[31.06500000000017,-5.66],[31.15416666699997,-5.692499999999825],[31.162500000000193,-5.606666665999967],[31.079166666000106,-5.57],[31.071666667000102,-5.451666665999824],[30.996666667000113,-5.288333332999969],[31.024166667000145,-5.270833332999928],[31.238333333000128,-5.27083333399986],[31.305833333000066,-5.333333332999871],[31.354166667000072,-5.515833332999932],[31.43333333400011,-5.556666666999945],[31.484166667000125,-5.486666666999895],[31.3675,-5.448333333999869],[31.391666667000038,-5.345833332999973],[31.278333333000035,-5.226666666999904],[31.268333333000044,-5.028333332999978],[31.402500000000146,-4.9775],[31.4575,-4.99166666699989],[31.490833333000182,-4.910833332999971],[31.565,-4.8575],[31.53833333300014,-4.7325],[31.663333333000026,-4.705833333999919],[31.725000000000193,-4.77916666699997],[31.820000000000164,-4.73916666599996],[31.65083333300015,-4.624166665999951],[31.645,-4.550833333999947],[31.77583333400014,-4.520833332999928],[31.73916666600013,-4.406666666999968],[31.769166666000046,-4.2],[31.70583333400009,-4.074166666999929],[31.62916666600006,-4.094166666999968],[31.610833333000073,-4.193333333999874],[31.624166667000168,-4.3525],[31.55250000000018,-4.414166666999904],[31.51416666700004,-4.37],[31.545,-4.259166665999942],[31.565,-4.093333332999919],[31.617500000000177,-3.951666666999927],[31.453333334000092,-4.003333332999944],[31.3925,-3.920833332999962],[31.359166667000068,-3.785833332999857],[31.2775,-3.7225],[31.21416666700003,-3.606666666999956],[31.1325,-3.58],[31.0525,-3.693333333999874],[30.950833333000162,-3.744166666999888],[30.806666667000172,-3.759166666999931],[31.058333333000178,-3.978333333999956],[31.11083333300013,-3.9625],[31.118333334000113,-3.840833333999967],[31.161666666000144,-3.789166666999961],[31.2558333340001,-3.793333332999907],[31.243333334,-3.8875],[31.288333333000026,-3.9725],[31.271666667000147,-4.094166665999978],[31.31333333400005,-4.195],[31.30500000000012,-4.439999999999884],[31.19583333300011,-4.420833332999962],[31.209166667000034,-4.580833333999976],[31.308333334000054,-4.619166666999888],[31.405,-4.706666666999979],[31.36583333300007,-4.77916666699997],[31.256666666000115,-4.764166666999927],[31.098333333000085,-4.908333333999906],[31.021666667000034,-4.927499999999895],[31.005833334000158,-4.840833332999978],[31.12500000000017,-4.7775],[31.138333333000162,-4.731666665999967],[31.0216666660001,-4.67],[30.9625,-4.601666666999961],[30.850833333000026,-4.603333333999899],[30.92333333300013,-4.6825],[30.84916666700019,-4.726666666999904],[30.785,-4.7025],[30.786666667000077,-4.511666666999872],[30.8325,-4.375],[30.769166666000103,-4.359166666999954],[30.76833333400009,-4.1775],[30.824166667000043,-4.130833332999941],[30.780833333000032,-4.078333333999979],[30.68666666600018,-4.124166666999884],[30.567500000000166,-3.9775],[30.490833333000182,-3.944999999999879],[30.474166667000134,-3.866666666999947],[30.419166666000024,-3.831666666999865]],[[31.215000000000146,-4.839166666999915],[31.259166666,-4.969166665999978],[31.161666666000144,-4.959166666999977],[31.215000000000146,-4.839166666999915]]]]},"properties":{"objectid":818,"eco_name":"Zambezian flooded grasslands","biome_num":9,"biome_name":"Flooded Grasslands & Savannas","realm":"Afrotropic","eco_biome_":"AF09","nnh":1,"eco_id":76,"shape_leng":385.23709389,"shape_area":16.8543767323,"nnh_name":"Half Protected","color":"#6A89A6","color_bio":"#BEE7FF","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":203151.73567098487,"percentage":17.568164214407094}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[32.78083333400008,-10.714166666999972],[32.74333333300018,-10.835833332999925],[32.7475,-10.935],[32.80666666600007,-11.053333332999955],[32.76166666600017,-11.089999999999861],[32.75166666700011,-11.208333332999871],[32.685000000000116,-11.258333332999939],[32.73166666700013,-11.428333333999888],[32.631666667,-11.430833332999896],[32.57333333300005,-11.389999999999873],[32.519166667000036,-11.505833332999885],[32.37000000000012,-11.4625],[32.295833333000076,-11.480833333999954],[32.25250000000011,-11.5475],[32.27916666700003,-11.6575],[32.18583333300012,-11.628333333999876],[31.99166666700006,-11.799166665999962],[31.954166667000095,-11.885],[31.890000000000157,-11.949999999999875],[31.75166666700011,-12.010833332999937],[31.70166666700004,-11.9625],[31.638333333000105,-12.080833333999976],[31.5975,-12.253333332999944],[31.55916666600001,-12.320833332999939],[31.66,-12.4],[31.55583333300018,-12.44499999999988],[31.547500000000184,-12.60666666599991],[31.473333334000188,-12.63249999999988],[31.477500000000134,-12.743333332999953],[31.422500000000127,-12.8575],[31.3525,-12.899166666999974],[31.329166667000095,-12.9675],[31.235000000000127,-13.059999999999889],[31.189166666000176,-13.185],[31.10416666700013,-13.336666666999918],[31.07583333300005,-13.431666665999956],[31.071666667000102,-13.569166665999887],[30.939166667000165,-13.735],[30.925000000000125,-13.805833332999953],[30.808333334000167,-13.9025],[30.740833333000126,-13.895833332999928],[30.641666666000106,-13.997499999999832],[30.63166666600017,-14.0675],[30.53666666600003,-14.143333333999976],[30.395833334000145,-14.295],[30.385000000000105,-14.418333332999964],[30.33333333400003,-14.55833333299995],[30.4625,-14.512499999999875],[30.483333333000132,-14.44416666599983],[30.565,-14.441666666999936],[30.635434310000107,-14.3425],[30.709166667000147,-14.2625],[30.75000000000017,-14.155833333999851],[30.875833333000173,-13.97],[31.06416666600012,-13.894166666999865],[31.159166667000136,-13.8875],[31.25,-13.783333332999916],[31.316666666000174,-13.85],[31.465833334000138,-13.715],[31.519166667000036,-13.725833333999958],[31.56416666700011,-13.846666666999965],[31.533333333000144,-13.894166666999865],[31.553333334000172,-13.903333332999978],[31.68000000000012,-13.915833332999966],[31.68666666700011,-14.1066666669999],[31.783333333000087,-14.08083333399992],[31.766666666000162,-14.163333333999901],[31.859166667000125,-14.088333333999913],[31.86,-14.085],[31.86,-14.084166666999977],[31.896666667000147,-13.988333333999947],[31.951666666000108,-14.002499999999884],[31.98833333400006,-13.964166666999972],[31.997500000000173,-13.805833332999953],[31.939166666,-13.61416666599996],[32.170833334000065,-13.358333332999905],[32.291666666000026,-13.28],[32.2625000000001,-13.170833332999905],[32.18916666700005,-13.131666666999934],[32.256666666000115,-13.059999999999889],[32.310833333,-13.100833332999912],[32.32250000000016,-12.948333332999823],[32.265,-12.958333332999871],[32.2625000000001,-12.80833333299995],[32.297500000000184,-12.709166666999977],[32.50583333399999,-12.549166666999895],[32.544166666000024,-12.491666665999958],[32.61,-12.25583333399993],[32.593333333000146,-12.169166666999956],[32.67000000000013,-12.110833332999903],[32.87750000000011,-11.774999999999864],[32.961666667000145,-11.61],[33.135000000000105,-11.372499999999889],[33.188333334000106,-11.1175],[33.1400000000001,-10.944166666999877],[33.165833332999966,-10.889166666999927],[33.04500000000013,-10.798333333999949],[32.9625,-10.675833332999957],[33.130833333000055,-10.36333333399989],[33.07916666700015,-10.283333332999973],[33.0833333330001,-10.266666666999981],[33.0833333330001,-10.250833332999889],[33.095,-10.216666666999913],[33.1025,-10.191666666999879],[33.11416666600013,-10.1575],[33.11833333300018,-10.117499999999893],[33,-10.25],[32.92750000000018,-10.375],[32.91,-10.475833332999969],[32.82916666699998,-10.470833332999973],[32.78666666600009,-10.544166665999967],[32.829166666000106,-10.64333333299993],[32.78083333400008,-10.714166666999972]],[[32.90416666700003,-10.748333332999948],[32.98750000000018,-10.75416666599989],[33.110000000000184,-10.887499999999875],[32.98583333400012,-10.9325],[32.900833333000094,-10.901666665999926],[32.90416666700003,-10.748333332999948]],[[31.86750000000012,-13.623333332999948],[31.87166666700017,-13.7575],[31.81083333300012,-13.849166666999963],[31.7650000000001,-13.83416666699992],[31.829166667000038,-13.655833332999862],[31.86750000000012,-13.623333332999948]],[[33.018333333000044,-10.311666665999951],[33.0425,-10.338333332999866],[33.01916666700009,-10.455],[32.948333334000154,-10.405833332999975],[33.018333333000044,-10.311666665999951]]],[[[32.7325,-13.49166666699989],[32.679166667000175,-13.413333332999969],[32.52833333300015,-13.43666666699994],[32.339166667000086,-13.305833332999953],[32.2925,-13.345833332999973],[32.31583333300017,-13.45083333399998],[32.26,-13.47],[32.269166667000036,-13.622499999999889],[32.38666666600017,-13.608333332999962],[32.52166666700009,-13.619166666999888],[32.56916666600017,-13.530833332999975],[32.66416666600014,-13.549166666999952],[32.7325,-13.49166666699989]]],[[[29.079166667000038,-15.051666665999903],[29.185833333,-15.0975],[29.305000000000177,-15.0375],[29.340833333000035,-14.976666666999904],[29.469166667000025,-14.965833332999978],[29.672500000000127,-14.85916666699984],[29.711666667000088,-14.94416666699982],[29.785,-14.914166665999971],[29.760833333000107,-14.809166666999943],[29.90083333300015,-14.73],[30.094166667000138,-14.715833333999967],[30.03666666700019,-14.597499999999854],[30.05333333300007,-14.4675],[30.128333333000057,-14.395],[30.304166667,-14.399166666999918],[30.3333333330001,-14.2625],[30.43,-14.1525],[30.55166666600013,-14.06166666699994],[30.695833334000156,-13.895],[30.670000000000186,-13.7625],[30.56250000000017,-13.78416666599992],[30.5875,-13.69],[30.68666666600018,-13.714166665999926],[30.774166666999974,-13.541666666999959],[30.610000000000127,-13.52583333399997],[30.50666666700016,-13.669166666999956],[30.529166666000094,-13.729166666999959],[30.3625,-13.8575],[30.20916666700009,-14.02583333299998],[30.11,-14.086666665999928],[30.112500000000125,-14.21666666599998],[30.038333334000185,-14.289166665999915],[29.92000000000013,-14.461666665999871],[29.872500000000173,-14.5725],[29.77416666700003,-14.564166665999892],[29.71333333300015,-14.604166666999902],[29.610833333000073,-14.6075],[29.429166667000118,-14.685833332999948],[29.31500000000011,-14.648333332999925],[29.03,-14.701666666999927],[28.95166666700004,-14.783333333999963],[28.90166666700003,-14.78583333399996],[28.7775,-14.858333332999962],[28.839166667000086,-14.9025],[28.796666667000068,-15.001666666999938],[28.9525,-14.992499999999893],[29.079166667000038,-14.9575],[29.079166667000038,-15.051666665999903]]],[[[34.610215808000135,-16.05416666699989],[34.52250000000015,-16.0025],[34.33666666600004,-15.829166665999878],[34.25881355200005,-15.820833333999872],[34.15107969600007,-15.74946489399997],[34.12471613200006,-15.587191114999882],[34.159514778000016,-15.437777677999975],[34.126197012000034,-15.400419357999908],[34.0013926150001,-15.482343276999927],[33.71348636000016,-15.48471924599994],[33.6279627290001,-15.535719976999928],[33.477805709999984,-15.738138922999951],[33.34305376600008,-15.775477399999943],[33.27393430899997,-15.740524812999922],[33.315189583000176,-15.460572616999912],[33.22468230900017,-15.319579247999968],[33.163022525000144,-15.301095604999944],[33.08992247000003,-15.221156620999977],[33.06604678000019,-15.08699933899993],[32.93427633700014,-15.090197061999902],[32.98548705200011,-14.990591411999901],[32.99642185200014,-14.91066234899995],[32.83730059200019,-14.876100796999935],[32.762703865000105,-14.711411361999922],[32.67916658500019,-14.717024739999943],[32.659788806999984,-14.972879915999954],[32.54392891100002,-14.952381572999968],[32.528022312000076,-15.043958190999831],[32.431058411000095,-15.033503580999877],[32.380341322000106,-15.070851978999883],[32.54394470300008,-15.223903780999876],[32.460908945000085,-15.303021009999952],[32.21576648000013,-15.313836889999891],[32.11780742900004,-15.292135679999888],[31.97460066400015,-15.301758613999937],[31.660342689,-15.345502458999874],[31.472883358000104,-15.397696135999922],[31.33564354100008,-15.406918113999893],[31.266528032000167,-15.439846078999892],[31.09348652400007,-15.451473790999898],[30.97613785100009,-15.48198610199995],[30.797129395000127,-15.494014768999932],[30.673312251000027,-15.451424183999961],[30.54700723400009,-15.38071709999997],[30.410754671000063,-15.265424573999951],[30.223333333000028,-15.02916666599998],[30.111666666000133,-15.11583333399983],[30.119166667000115,-15.18333333299995],[29.92416666700018,-15.276666665999926],[29.795,-15.4125],[29.653333334000024,-15.59],[29.497500000000173,-15.605833332999907],[29.372500000000116,-15.665833332999966],[29.263333333000105,-15.692499999999882],[29.15916666600009,-15.759166666999874],[28.8,-15.800833333999833],[28.6275,-15.93],[28.608333334000122,-16.060833332999948],[28.64416666700015,-16.115833333999888],[28.46,-16.238333332999957],[28.35333333300008,-16.2775],[28.331666667000093,-16.3225],[28.19750000000016,-16.43333333399994],[28.03416666600009,-16.441666665999946],[27.90750000000014,-16.494166666999945],[27.875833334000163,-16.5375],[27.74,-16.61333333399989],[27.775,-16.67833333399983],[27.65333333300015,-16.83083333399992],[27.56500000000011,-16.876666666999938],[27.556666667000115,-16.947499999999877],[27.614166666000187,-16.994166666999945],[27.444166667000104,-17.0425],[27.362500000000182,-17.11],[27.333333333000155,-17.1825],[27.366666667,-17.2291666669999],[27.30083333400006,-17.285],[27.217500000000143,-17.29833333299996],[27.126666667000052,-17.40333333299992],[26.94583333300011,-17.6475],[26.846666667000193,-17.814999999999884],[26.616666667000175,-17.885833332999937],[26.49083333300007,-17.9783333339999],[26.406666667000138,-17.939999999999884],[26.30583333300018,-17.937499999999886],[26.206666667000093,-17.89416666699998],[26.159807494000063,-17.914166666999904],[26.14602130000003,-18.012677581999924],[26.085858188000145,-18.078944389999947],[25.952101394000124,-18.12752946599994],[25.826795474000164,-18.135949533999906],[25.513532649000126,-18.19093997799996],[25.450902028000087,-18.212118714999917],[25.518465519000074,-18.36280878799994],[25.421144565000077,-18.37868354699998],[25.376050195,-18.441763486999946],[25.281572867000136,-18.462603730999945],[25.290708248999977,-18.542436443999975],[25.388096873000052,-18.616953624999894],[25.47672443600004,-18.561558999999875],[25.476358380000136,-18.492722864999962],[25.578598982000017,-18.442563684999982],[25.696460662000106,-18.575769356999956],[25.76860079800008,-18.611829091999823],[25.810418936000133,-18.697066713999902],[25.893956216000106,-18.69145333599988],[26.17141340200004,-18.570988073999956],[26.215172341000027,-18.590674583999828],[26.15948740100015,-18.707551088999935],[26.22512778300006,-18.771021128999905],[26.34545795600019,-18.706368064999936],[26.57467803100002,-18.515606595999884],[26.826277124000057,-18.374251956999956],[26.812348980000138,-18.28468011699988],[26.671124617000146,-18.181035145999886],[26.71587081000007,-18.07620715199988],[26.92471400900007,-18.062173705999953],[27.079353149000042,-17.978245009999966],[27.14249776200012,-17.87783744799998],[27.25537221000019,-17.86459599199992],[27.287702722000063,-18.026468815999976],[27.245440455000107,-18.09153275799997],[27.28224124400009,-18.168254174999845],[27.362295501,-18.123277698999857],[27.527881284000046,-18.163061595999977],[27.566166901000145,-18.120891808999886],[27.509474968000177,-18.022880058999874],[27.56217840800008,-17.9401443079999],[27.56316566100014,-17.81562980299998],[27.536312419000183,-17.783493827999962],[27.342384617000164,-17.76258460799994],[27.327461323000136,-17.661766168999918],[27.407018005000054,-17.611166393999895],[27.564145019000023,-17.55535419499995],[27.809777163000035,-17.41440051199993],[28.000711621000164,-17.26580882999997],[28.12600964500001,-17.121627658999955],[28.113068755000086,-16.907541314999946],[28.223952904000043,-16.87180665999989],[28.294565084999988,-16.92362914599994],[28.414397683000118,-16.853352781999945],[28.517316689000154,-16.659764779999932],[28.606327291000127,-16.716007698999874],[28.69085972000005,-16.721640919999913],[28.794284196000035,-16.669437321999965],[28.894723225000178,-16.583493925999903],[28.90665317400004,-16.514811462999944],[28.849965188000112,-16.484680264999895],[28.84945971800005,-16.34329586199982],[28.87232841500014,-16.26256488799993],[28.94889964900011,-16.178225313999974],[29.13834533000005,-16.08064428399996],[29.32083286200009,-16.040098162999982],[29.440171833000136,-16.032079050999982],[29.616198790000055,-16.054191137999965],[29.792727269000068,-16.1498070749999],[29.994620215000054,-16.328569641999934],[30.10550831200004,-16.360715538999955],[30.26313290000013,-16.31052664099991],[30.436174408,-16.298898928999904],[30.575408472000106,-16.38005070099996],[30.745468480000056,-16.40256374299986],[30.995085170000095,-16.374477008999975],[31.280002028000183,-16.270480689999943],[31.591772130000038,-16.198620346999917],[31.74044826900007,-16.18297315799998],[31.62308380500008,-15.941963259999909],[31.64893795000006,-15.89497208499995],[31.791149566000115,-15.874102551999897],[31.90850218600019,-15.911470792999921],[31.99402581700008,-15.860470061999933],[31.9751219260001,-15.71466522499992],[32.03876806200003,-15.68776151499992],[32.15363675600008,-15.764893809999876],[32.30431109000011,-15.907500922999873],[32.45348480400014,-15.897477033999962],[32.55840200500006,-15.862143334999814],[32.70310149400018,-15.869390299999907],[32.72001113900012,-15.924821385999905],[32.541010578000055,-16.072611156999926],[32.50969100700007,-16.193507138999962],[32.53456579400006,-16.406791571999975],[32.650927213000045,-16.5007937659999],[32.80110002400005,-16.569897027999957],[32.99304147600003,-16.6361935999999],[33.06415123100015,-16.693639385999973],[33.171556306000184,-16.68642218499997],[33.17056510400005,-16.74305613799993],[33.074604248000185,-16.87960923099996],[33.171070575000044,-16.884440540999947],[33.251618458000166,-16.777206812999907],[33.34758720999997,-16.776414822999925],[33.402288844000054,-16.85193337399994],[33.53455686200016,-16.85435895099988],[33.68970147300013,-16.911814656999923],[33.9149527940001,-16.87970844599988],[34.012907896000115,-16.833529103999922],[34.10290969900012,-16.833138068999915],[34.276452730000074,-16.895014208999953],[34.39628927600012,-16.892618396999865],[34.49225408000012,-16.823945855999966],[34.53252604800019,-16.736388715999908],[34.5737852690001,-16.52431707099987],[34.5921639500001,-16.189334744999883],[34.610215808000135,-16.05416666699989]],[[30.17,-15.454166666999981],[30.25833333300011,-15.6275],[29.956666666000103,-15.6175],[30.01083333300005,-15.54833333299996],[30.165000000000134,-15.531666666999968],[30.17,-15.454166666999981]]],[[[25.983333333000132,-16.67666666699995],[25.873333333000176,-16.728333332999966],[25.86166666700018,-16.6725],[25.628333333000057,-16.71],[25.573333334000097,-16.7925],[25.431666667000115,-16.811666666999884],[25.378333333000114,-16.89166666699998],[25.280000000000143,-16.921666666999897],[25.26666666600005,-16.9825],[25.1275,-17.119166666999888],[25.116430740000055,-17.190833332999944],[25.19000000000017,-17.230833333999954],[25.130833333000055,-17.329166666999924],[25.08,-17.4975],[25.183333333,-17.540833333999956],[25.23666666700018,-17.6],[25.188333334000106,-17.7275],[25.386666667000043,-17.595],[25.392500000000155,-17.55166666699995],[25.5150000000001,-17.48],[25.52916666700014,-17.415],[25.47666666700019,-17.337499999999864],[25.47583333400007,-17.33833333299998],[25.42583333300007,-17.335],[25.425000000000125,-17.33416666699992],[25.4,-17.29166666699996],[25.474166667000077,-17.16666666699996],[25.581666666,-17.0725],[25.54916666600019,-16.97916666699996],[25.6458333330001,-16.97],[25.661666667000077,-16.9133333339999],[25.744166667000172,-16.819166666999877],[25.778333333000035,-16.905],[25.858333333000076,-16.796666666999954],[25.958333333000155,-16.755833332999828],[26.000833333000173,-16.689166666999938],[25.983333333000132,-16.67666666699995]]],[[[23.363333333000185,-17.06166666699994],[23.285833334000188,-17.037499999999852],[23.098333334000188,-17.08],[23.04000000000019,-17.175],[23.04416666700007,-17.179166665999958],[23.060833333000062,-17.21166666599993],[23.06500000000011,-17.21333333299998],[23.1491666660001,-17.225],[23.154166666000094,-17.36],[23.318333333000112,-17.455],[23.363333334000117,-17.3775],[23.316666666000117,-17.256666665999944],[23.38416666700016,-17.1025],[23.363333333000185,-17.06166666699994]]],[[[28.54867179200005,-17.149793764999913],[28.45320061500007,-17.156209053999874],[28.330880143,-17.19836891899996],[28.29408725000019,-17.257408604999966],[28.350779183000157,-17.35542035499998],[28.148905978000073,-17.51606054799987],[28.08376711800014,-17.5260943589999],[27.97985296300004,-17.708435760999976],[27.800358775000063,-17.91848278499998],[27.805338470000038,-18.04259633399988],[27.894846647000065,-18.104462551999973],[28.076342977000024,-18.120550382999966],[28.134519738999984,-18.099670927999966],[28.195674052000072,-17.97677016699987],[28.20660490400013,-17.828960552999945],[28.261788322000086,-17.638580195999964],[28.312501462,-17.53335124599994],[28.359241901000132,-17.518897001999903],[28.48206784400014,-17.618121539999834],[28.532303149000086,-17.846672048999892],[28.595961129000045,-18.023409994999952],[28.6526491140001,-18.053541192999944],[28.79485678200018,-17.96479110699994],[28.955956497000102,-17.81820420299988],[29.069818199000167,-17.68044824299983],[29.15981210600006,-17.544296104999944],[29.20455829800011,-17.43946810999995],[29.149852716000055,-17.29606900699997],[29.02006862400009,-17.253879376999976],[28.93453709700009,-17.169119004999914],[28.837573196000108,-17.158664394999903],[28.710273029000064,-17.076710711999908],[28.54867179200005,-17.149793764999913]]],[[[25.10976407300012,-17.1975],[25.05416666600007,-17.183333333999883],[24.97416666700019,-17.08916666599987],[24.93916666700011,-17.185],[24.78,-17.18833333399988],[24.84333333300009,-17.26166666699993],[24.994166667000115,-17.314999999999827],[25.060833334000108,-17.28083333399985],[25.10976407300012,-17.1975]]],[[[23.671616738000182,-18.258142142999873],[23.805548488000113,-18.298451674999967],[23.93008397400007,-18.19635110199988],[24.01284096800009,-18.095525994999946],[24.15085326700006,-17.979351557999962],[24.222644920000107,-17.82898410699994],[24.351653171000066,-17.79297489999982],[24.452237437000065,-17.818012155999895],[24.508398963000104,-17.71470883199993],[24.459143246000053,-17.641630957999894],[24.38889989900008,-17.61833465799998],[24.35201089100019,-17.53834257199992],[24.287312036000117,-17.546714916999974],[24.114149205000047,-17.71297015499988],[24.031423550000056,-17.733335540999974],[23.91263434400014,-17.701300043999936],[23.82351305200001,-17.70736944999993],[23.63700785300017,-17.840615000999946],[23.589567684000087,-17.899601746999963],[23.477429533000077,-17.905076008999856],[23.366704343000038,-18.02424836499995],[23.364469771000074,-18.090646850999917],[23.38793800000019,-18.163447759999883],[23.46267564100009,-18.204075446999923],[23.671616738000182,-18.258142142999873]],[[24.31020094600018,-17.586376526999913],[24.237309645000153,-17.648594735999836],[24.17255198000015,-17.75546275199997],[24.125458450000053,-17.713030715999935],[24.20622435900009,-17.63934138899998],[24.31020094600018,-17.586376526999913]]],[[[24.624669806999975,-17.925751813999966],[24.583601470000076,-17.860387041999957],[24.490388519000078,-17.793720648999965],[24.407625503000133,-17.866911397999843],[24.544613286000015,-17.962628836999897],[24.624669806999975,-17.925751813999966]]],[[[22.29890742600014,-18.675284972999975],[22.39983627600003,-18.752986052999916],[22.509445957000082,-18.88568567699997],[22.688054427000168,-18.81370490699993],[22.78337987900005,-18.70888257699994],[22.939320810000027,-18.60213639999995],[23.061965969000028,-18.69930486499993],[23.16558555300014,-18.70510073099996],[23.37530185600008,-18.522571260999882],[23.457523102000152,-18.509535679999942],[23.4795419350001,-18.425360820999913],[23.24670107700007,-18.001271278999923],[23.17814494800001,-18.017947186999947],[23.123963501000105,-18.106252738999956],[23.04701759600016,-18.111639160999914],[23.00539761500005,-18.18354990699993],[22.916019276999975,-18.230199219999975],[22.75910767500011,-18.3461518659999],[22.647801565000123,-18.349523120999947],[22.553754991000176,-18.382590771999958],[22.424628126000187,-18.39231494699993],[22.32684288300004,-18.35301894599985],[22.32370757100017,-18.431265288999953],[22.170363436000116,-18.39702060699983],[22.115249465000147,-18.45598385699998],[22.29890742600014,-18.675284972999975]]],[[[24.949706747000164,-18.061392453999872],[24.865084249000176,-18.223798906999946],[24.799791001000187,-18.260333594999906],[24.78309309399998,-18.331120471999952],[24.724426941000104,-18.383414710999944],[24.74762212100012,-18.43769739499993],[24.85214570100004,-18.386835520999966],[24.875093587000038,-18.33088054899997],[24.960590031000038,-18.280455030999974],[25.055838201000086,-18.264064605999977],[25.08011880700019,-18.192165244999842],[25.070136024000135,-18.077634006999972],[24.99947823000008,-18.025808607999977],[24.949706747000164,-18.061392453999872]]],[[[24.405772881000132,-18.180535260999932],[24.33913970800006,-18.203155703999983],[24.26871438400019,-18.155811503999928],[24.293776024000067,-18.098576027999968],[24.211572298000192,-18.03725939599991],[23.94548136500015,-18.22890397499998],[23.86413592300005,-18.33104708899998],[23.725054,-18.42955748299994],[23.562784866000072,-18.570380734999958],[23.715049840000063,-18.587536500999875],[23.818925621000176,-18.532480271999873],[23.911929843,-18.54913880599986],[24.018055661000176,-18.470959377999975],[24.131196269999975,-18.37922948499994],[24.191035978000116,-18.357490216999963],[24.311745670999983,-18.24110894099988],[24.405772881000132,-18.180535260999932]]],[[[23.960188390000155,-19.185502976999942],[23.905643032000057,-19.114609076999955],[23.92786404300017,-19.05551351399987],[23.890844439000148,-18.992885439999895],[23.79453982200016,-18.94834971399996],[23.849177154000017,-18.889663888999962],[23.802880669000047,-18.81486528899984],[23.85644767600013,-18.680920437999873],[23.823154529000135,-18.612644969999906],[23.892421219000028,-18.572767942999974],[23.819886975000145,-18.564157331999922],[23.730342689000054,-18.616912880999905],[23.50357496300012,-18.64615278699989],[23.449451241000133,-18.608462619999898],[23.316605030000176,-18.618840755999884],[23.166073108000035,-18.749813908999897],[22.94453343900011,-18.817116973999873],[22.87586359300019,-18.869825076999916],[22.804035165000073,-18.96929231899992],[22.970755393000047,-18.976833840999973],[23.192872636,-19.04100622099992],[23.212892802000056,-19.099827523999977],[23.337626417000024,-19.053721958999972],[23.446429823000074,-19.056296088999886],[23.7516764880001,-19.16754071099996],[23.70034459400017,-19.210140279999905],[23.485817161000057,-19.218974095999954],[23.428192487000103,-19.280792110999926],[23.462632405000022,-19.32615857899998],[23.59461360400013,-19.40800548399983],[23.68849303400009,-19.42964074199989],[23.695370730000036,-19.499265441999967],[23.654656191000072,-19.6136057949999],[23.559275777000096,-19.720942942999955],[23.676031694000073,-19.76143488799994],[23.546325803000116,-19.892647835999924],[23.432603265000182,-20.03414030399989],[23.45746281200013,-20.08133990799996],[23.684301499000128,-19.825299115999883],[23.85495249100012,-19.60336569599997],[23.895661105000045,-19.42893999699993],[23.88116700100005,-19.33742126999988],[23.95952013200008,-19.243388714999924],[23.960188390000155,-19.185502976999942]]],[[[26.372417746999986,-19.360344708999946],[26.102394511000114,-19.48374602199982],[25.95589309800016,-19.519766035999908],[25.728863592000096,-19.522666122999965],[25.71258702000017,-19.45519847099996],[25.557209415000102,-19.59951635899995],[25.421678369,-19.544573053999898],[25.347451491000015,-19.458215091999932],[25.221682204,-19.53498260799995],[25.083122931000105,-19.589059300999907],[24.923761849000186,-19.601663799999983],[24.91623826800003,-19.49977096999993],[24.853507578,-19.484864140999946],[24.839836850000097,-19.40547525799991],[24.888952902000028,-19.32155501699998],[24.89270767900007,-19.231139088999896],[24.965328507000038,-19.13631736899987],[24.90213319000003,-19.071585119999952],[24.76888800500018,-19.263315895999824],[24.653197430000034,-19.120138499999882],[24.707421784000076,-19.31254824599995],[24.653194670000175,-19.38587415599983],[24.588305985000034,-19.398096155999895],[24.51614044900009,-19.268091595999977],[24.448934356000052,-19.262175771999978],[24.38669223100004,-19.347317724999982],[24.25090836300012,-19.383121917999915],[24.310100047000105,-19.55881392999993],[24.261947080000027,-19.59755076899995],[24.30809330700015,-19.748939451999945],[24.268515203000163,-19.892569392999917],[24.302775485000154,-19.940990652999915],[24.398707672000057,-19.866136163999954],[24.44107731500003,-19.87118660899995],[24.5993298840001,-19.742783193999912],[24.7058871320001,-19.688903548999917],[24.72926846700011,-19.726529536999976],[24.59112616900012,-19.841301231999978],[24.502141601000176,-19.95742602399997],[24.627798261,-20.00420699199998],[24.60197997400013,-20.169717662999915],[24.70809902700006,-20.22933975099994],[24.798436903000095,-20.36810828399996],[24.841913932000182,-20.52570486299993],[24.886663247,-20.57806635599991],[25.03156608800009,-20.547519263999902],[25.09901738500014,-20.492925200999878],[25.137232494000102,-20.54790934899995],[25.284381598000095,-20.540181238999935],[25.361081455000146,-20.471569901999885],[25.370442202000106,-20.410407904999886],[25.495535349000136,-20.287544315999924],[25.668832165000026,-20.234741047999933],[25.9282285270001,-20.29978747399997],[26.05854245300003,-20.21228222099984],[26.07285576600009,-20.295834194999884],[26.14619581500017,-20.31338099499993],[26.249808392000148,-20.268152233999842],[26.350672483000096,-20.315141586999914],[26.343286123000155,-20.411969641999974],[26.208639988000186,-20.64699595299993],[26.19702727300006,-20.778172063999932],[26.255455940000047,-20.96494227599993],[26.316745210000192,-20.98153909599995],[26.405765520999978,-21.058773458999838],[26.415243556000064,-21.14247803099994],[26.305417004000105,-21.28964677299996],[26.27253722500018,-21.231961906999913],[26.025986788000125,-21.230631080999842],[25.835755978000122,-21.172920593999947],[25.819814069000074,-21.140884101999916],[25.642132627000137,-21.131878656999902],[25.469069032000107,-21.163001195999982],[25.276481157000035,-21.128484913999955],[25.27424050000019,-21.078451807999897],[25.123720175000187,-21.038891311999976],[24.990312069000083,-21.205239769999935],[24.82909626200012,-21.216110375999904],[24.662784210000098,-21.347725643999865],[24.54024296700004,-21.39342442399993],[24.617015296000034,-21.484245390999945],[24.70801379200003,-21.41869743799998],[24.81652837600012,-21.37794300799993],[24.877658407000126,-21.411113804999843],[25.028329785000096,-21.41166536999998],[25.316294907000156,-21.522549576999893],[25.41498374200006,-21.51846871899994],[25.669237270000053,-21.443187213999977],[25.8815557260001,-21.45298620899996],[26.157793097000138,-21.410149580999928],[26.320787189000043,-21.432857085999956],[26.32711268600019,-21.530421032999982],[26.384489628000097,-21.550245617999963],[26.420541644000025,-21.66614365399994],[26.35819843700017,-21.80574672599988],[26.37692126100012,-21.934932375999892],[26.499121867000042,-21.974686169999927],[26.509280442999966,-22.067377369999917],[26.720634315000154,-22.09873491299993],[26.773132660000044,-22.075814260999948],[26.885137336000128,-22.109470395999892],[26.822696740000083,-22.198217770999975],[26.7048850220001,-22.31030633399996],[26.651393407000057,-22.41275320299991],[26.521763174000114,-22.434172815999943],[26.470322667000175,-22.497240958999953],[26.380028270000082,-22.508274703999973],[26.35495383300008,-22.588637303999917],[26.26881007100019,-22.647390805999862],[26.283129124000027,-22.74241905799994],[26.342278944000043,-22.81997189699996],[26.442683256000066,-22.780797860999883],[26.355405626000106,-22.724856718999945],[26.364606945000162,-22.66640501199987],[26.472780609000154,-22.689824029999897],[26.49629516300007,-22.728278622999937],[26.610995681000077,-22.73341077699996],[26.634625513000174,-22.789483157999882],[26.729732895000154,-22.748962353999957],[26.80662068400011,-22.782990482999935],[26.96404757800019,-22.789634933999935],[26.95430074000018,-22.889471045999983],[27.064469705000135,-22.871908723999923],[27.067102632000115,-22.81310748999988],[27.150182619000134,-22.80778244699991],[27.22320126700015,-22.85541568699989],[27.249831132000054,-22.94224554899995],[27.373482803000172,-23.03763571399992],[27.465603111000064,-23.1366291249999],[27.611397872000055,-23.114144493999902],[27.637775385000168,-22.989338973999963],[27.59903709600013,-22.901609359999952],[27.697198286000173,-22.863448915999868],[27.812739764000128,-22.957571427999937],[27.938846657,-22.976381427999968],[28.039596558000085,-22.90995979299987],[28.04064750700013,-22.83434104899993],[28.16217994700014,-22.756053924999833],[28.209922791000167,-22.66420936599991],[28.341682434000063,-22.57463836699992],[28.572336197000027,-22.55874443099998],[28.614826202000188,-22.581228255999918],[28.813028336000173,-22.54409027099996],[28.84646606400014,-22.602561950999927],[28.96959114100008,-22.63638114899993],[28.960601807000046,-22.72833061199998],[29.102016449000075,-22.717882155999916],[29.200239182000132,-22.833164214999897],[29.284372330000167,-22.827419280999948],[29.378461838000078,-22.891838073999907],[29.422885895000036,-22.95668411299988],[29.511220932000185,-22.92473792999988],[29.867633820000037,-22.87200164799998],[30.01895904500003,-22.771396636999896],[30.03070831300016,-22.718935012999907],[30.182443619000026,-22.69098281899994],[30.413526535000074,-22.606178283999895],[30.537820816000135,-22.58949470499988],[30.57971000700013,-22.553615569999977],[30.748659134000093,-22.538610457999937],[30.77409362800006,-22.471794127999942],[30.868530273000033,-22.420249938999973],[31.03008461000013,-22.38961601299991],[31.092664719000027,-22.499300002999973],[31.08078765900018,-22.68422889699997],[31.043956757000103,-22.781976699999916],[31.04857444800018,-22.85994148299983],[30.866020203,-22.922225951999962],[30.75661087000003,-23.008764266999947],[30.753229141000077,-23.069124221999914],[30.68495750400018,-23.11978530899995],[30.724159241000052,-23.18211746199995],[30.684850693000158,-23.240930556999956],[30.759050369000192,-23.30293655399987],[30.711593628000116,-23.392452239999898],[30.615741730000025,-23.414897918999884],[30.55476188700004,-23.51738929699991],[30.488920212000096,-23.524906157999965],[30.398166656000114,-23.667673110999942],[30.497091293000153,-23.733871459999932],[30.538423538000075,-23.830636977999973],[30.78609275800011,-23.823871612999937],[30.831218719,-23.750854491999917],[30.998624802,-23.793224334999877],[30.859680176000097,-23.882732390999934],[30.77984809900005,-23.889797210999973],[30.68540573100006,-23.98742675799997],[30.77251243600017,-24.057773589999897],[30.945598602000018,-24.074914931999956],[31.051404953000144,-24.132392882999966],[31.113086700000167,-24.092172622999954],[31.360012054000094,-24.248003005999976],[31.411262512000064,-24.356513976999963],[31.518823624000163,-24.365356444999918],[31.628343582000127,-24.235801696999943],[31.681535721000103,-24.02133941699998],[31.749570847000086,-23.943658828999958],[31.67826843300014,-23.905118941999888],[31.652004242000146,-23.816776275999928],[31.697298049999972,-23.722524642999815],[31.76865768400006,-23.885206222999955],[31.880807877000166,-23.95299529999994],[31.896519991000048,-24.078402534999952],[32.104404361000036,-24.230677239999977],[32.343583827000145,-24.2881428689999],[32.593373159000066,-24.26200723999989],[32.80504331700013,-24.213006554999822],[32.96446044400011,-24.074187603999974],[33.093890778000116,-23.80951264099997],[33.089156606000074,-23.755018794999955],[33.12861915200011,-23.55131914699996],[33.210696654,-23.3995207559999],[33.231218808,-23.197117400999957],[33.300143990000095,-23.040240017999963],[33.29076486100007,-22.985671097999955],[33.35737670400016,-22.653104426999903],[33.43692549100018,-22.466743546999908],[33.54978809500017,-22.24986043599995],[33.63729018100008,-22.017711247999955],[33.62335808900019,-21.860258855999973],[33.53682351700007,-21.628490780999982],[33.594498756,-21.53410747399988],[33.704387755000084,-21.487126219999936],[33.9152173060001,-21.427705421999974],[34.1986453880001,-21.374719755999934],[34.28566174300005,-21.340588923999917],[34.25781335100015,-21.297206347999975],[34.25780545500004,-21.161445244999868],[34.13299711000013,-21.17548861199998],[33.87492954600003,-21.243740353999954],[33.64719429900009,-21.315610618999983],[33.44481562300001,-21.334866408999915],[33.21956035400012,-21.29909206799988],[33.04005432200006,-21.305497435999882],[32.89336848200014,-21.343637823999927],[32.80684575400011,-21.31551140399995],[32.716342428000075,-21.24239858599998],[32.44085974900014,-21.11383483999998],[32.3438958480001,-21.10338022999997],[32.208148755000025,-21.129472107999902],[32.05997413900002,-21.218623148999882],[31.922244643000113,-21.35798293099998],[31.823788018000073,-21.33065842199983],[31.80439050000001,-21.247110837999855],[31.825268898,-21.143886665999958],[31.919740978000164,-21.058344224999928],[32.15990769600006,-20.991295348999927],[32.500023764,-20.96844088099988],[32.48907712100015,-20.844728286999953],[32.31603166400015,-20.788475446999882],[32.25585670800007,-20.651100599999893],[32.27822783000005,-20.564746326999966],[32.26826054400016,-20.180758124999898],[32.37714255100019,-19.918888615999947],[32.421880847000125,-19.678299517999903],[32.45121406700014,-19.6027908879999],[32.47556759300005,-19.40316870999993],[32.403462687000115,-19.334476325999844],[32.326891453000144,-19.41881589899998],[32.25031627100003,-19.435274920999973],[32.00118136400016,-19.197462746999975],[31.84802705300018,-19.162500239999872],[31.786868791000074,-19.217520447999902],[31.797811486000114,-19.273352488999876],[31.944011596000166,-19.43323045699998],[31.986783281000157,-19.577431470999898],[31.845570763000183,-19.677428155999905],[31.660097782000094,-19.684234478999883],[31.362251877000062,-19.77778610999991],[31.28966124100009,-19.90711208199997],[31.333420180000076,-19.92679859099991],[31.55817392600011,-19.889069079999956],[31.682986219000043,-19.942906264999976],[31.79487341300012,-20.054179313999953],[31.801839459000064,-20.132905509999887],[31.73024397300003,-20.27347807999996],[31.632300714000166,-20.523299078999912],[31.50402119,-20.701621002999957],[31.257887522000033,-20.76907083499998],[31.10921138300006,-20.784718023999915],[30.98191911300006,-20.838525444999902],[30.844679296000038,-20.847747422999873],[30.65771753900009,-20.905564398999957],[30.342460467000137,-20.87018109299993],[30.178363460000185,-20.779386542999873],[30.105753084000014,-20.56930975499995],[29.98143441800005,-20.453215317999934],[29.932206105000148,-20.43955306399988],[29.915801931000146,-20.525506381999946],[29.939180047000036,-20.654040362999865],[29.773602159,-20.750017570999944],[29.565252586000042,-20.701793763999945],[29.59459765000014,-20.829926789999945],[29.530457888000058,-20.919087751999882],[29.47775050100006,-20.93394295199994],[29.311185359999968,-21.15443466399995],[29.243562575000112,-21.204232527999977],[29.026268501000175,-21.25843098199988],[28.80598897900012,-21.278889638999942],[28.666261288000157,-21.259995118999825],[28.50913427500012,-21.315807316999837],[28.420131569000034,-21.395325501999935],[28.256540031999975,-21.445915355999944],[28.167035804000193,-21.45192968999993],[27.93880298300013,-21.518176654999934],[27.777695371000164,-21.529002455999944],[27.620066835000102,-21.5113108029999],[27.411035129000084,-21.451730543999872],[27.209066982000138,-21.18040398799991],[27.19724880000018,-20.907469410999852],[27.274100518000125,-20.69690205799992],[27.27804299600018,-20.605384424999897],[27.363762399000052,-20.35999223399989],[27.524358812000116,-20.15509931199989],[27.53027137200013,-20.08625879599998],[27.687912663000077,-19.847350196999912],[27.687097295000115,-19.826756392999926],[27.502615516000162,-19.776928763999933],[27.34150000900013,-19.65199346099996],[27.227132837,-19.64836501799988],[27.09734874500009,-19.606175387999883],[26.915346944000134,-19.448703153999816],[26.738822413000094,-19.420967767999855],[26.619334950000052,-19.521720753999944],[26.372417746999986,-19.360344708999946]],[[31.859100030000036,-21.458390492999968],[32.09628919600016,-21.49336292199996],[32.21563211600005,-21.55322436199998],[32.33995078200019,-21.669318799999928],[32.37028704700015,-21.74081787299997],[32.34195687200008,-21.963334205999843],[32.269867759000135,-22.1661640289999],[32.11473894000005,-22.380230529999892],[31.995403917000033,-22.45613019299998],[31.852694726000095,-22.471376426999825],[31.790537367000184,-22.447269483999946],[31.62197008300012,-22.44162634099996],[31.52948040600012,-22.413900876999946],[31.380804267000144,-22.42954806599988],[31.30074606200003,-22.406643989999907],[31.235105680000117,-22.343173949999823],[31.19282762200004,-22.136715683999967],[31.208236646000103,-22.039515766999898],[31.27336761000015,-21.893720851999944],[31.559267774000034,-21.59732947699996],[31.758159479000142,-21.470830036999928],[31.859100030000036,-21.458390492999968]]],[[[22.973207066000157,-19.28957527699987],[22.949335877000067,-19.314334692999978],[23.221160276000035,-19.52919340899996],[23.241314095000178,-19.431028946999902],[23.15116622100004,-19.336065853999912],[23.02794242800013,-19.244443822999926],[22.973207066000157,-19.28957527699987]]],[[[23.417513213000063,-20.014406745999963],[23.478437082000085,-19.929255282999975],[23.38497918300004,-19.905329219999885],[23.295080468000037,-19.98246017499997],[23.267560424000123,-19.89802660099997],[23.135602438999967,-19.864301839999882],[23.235816964000037,-20.051965209999935],[23.011769677000075,-20.3286914009999],[23.176241001000164,-20.277287742999874],[23.21146914800005,-20.217265789999885],[23.30413333100006,-20.15191292199995],[23.417513213000063,-20.014406745999963]]],[[[23.043509329000017,-19.860143689999916],[23.100763875000098,-19.951148457999977],[23.105119316000128,-20.044403444999887],[23.200836464000133,-20.052404291999892],[23.140775171000087,-19.94019395299989],[23.043509329000017,-19.860143689999916]]]]},"properties":{"objectid":819,"eco_name":"Zambezian mopane woodlands","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Afrotropic","eco_biome_":"AF07","nnh":2,"eco_id":65,"shape_leng":231.911369867,"shape_area":33.3660248773,"nnh_name":"Nature Could Reach Half Protected","color":"#EDFD79","color_bio":"#FEAA01","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":389627.57860411896,"percentage":1.8173762403828377}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-5.689167583999961,-15.90803798199994],[-5.767500491999954,-15.944145711999909],[-5.766388548999942,-16.02219698899995],[-5.66222244699992,-15.986366196999882],[-5.689167583999961,-15.90803798199994]]]},"properties":{"objectid":822,"eco_name":"St. Helena scrub and woodlands","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Afrotropic","eco_biome_":"AF07","nnh":4,"eco_id":60,"shape_leng":0.43564021468,"shape_area":0.0109763130177,"nnh_name":"Nature Imperiled","color":"#FCEA3E","color_bio":"#FEAA01","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":130.7755245639841,"percentage":0.0006099884716006455}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[32.661666667000134,-2.429166666999947],[32.50416666700005,-2.549166666999838],[32.61583333300018,-2.51],[32.661666667000134,-2.429166666999947]]],[[[32.43666666700011,-2.26416666699987],[32.41083333300014,-2.348333333999904],[32.44000000000011,-2.421666665999965],[32.50000000000017,-2.39249999999987],[32.43666666700011,-2.26416666699987]]],[[[32.035,-2.214166666999972],[31.978333333000023,-2.266666666999868],[31.983333334000065,-2.365833332999955],[32.0725,-2.281666666999911],[32.035,-2.214166666999972]]],[[[31.81083333300012,-2.1775],[31.791666666000083,-2.315833332999887],[31.91750000000019,-2.413333333999958],[31.853333333000137,-2.2375],[31.81083333300012,-2.1775]]],[[[33.92333333300007,-1.529166665999981],[33.7375,-1.490833333999944],[33.695,-1.598333332999971],[33.7075,-1.66916666599991],[33.823333333000164,-1.700833332999935],[33.87583333300012,-1.780833333999908],[33.94416666700005,-1.738333333999833],[34.03083333400019,-1.803333332999955],[34.06333333400005,-1.755833333999874],[34.040000000000134,-1.674166666999895],[33.937500000000114,-1.586666666999861],[33.92333333300007,-1.529166665999981]]],[[[32.07333333300011,-0.215],[32.10083333400007,-0.311666666999884],[32.23,-0.329166666999924],[32.175,-0.424166665999905],[32.27333333300004,-0.460833333999972],[32.283333334000076,-0.340833333999967],[32.25666666700016,-0.30083333399989],[32.15583333300003,-0.303333332999955],[32.14416666699998,-0.220833332999973],[32.07333333300011,-0.215]]],[[[33.306666666000126,0.315833333000171],[33.23583333300019,0.304166667000118],[33.28416666700019,0.120000000000118],[33.32083333300017,0.113333334000117],[33.306666666000126,0.315833333000171]]],[[[33.455833333000044,1.735000000000127],[33.433333334000054,1.74583333400011],[33.4325,1.741666667000061],[33.455833333000044,1.735000000000127]]],[[[34.74333333300012,0.291666667000072],[34.855833333000135,0.345833333000087],[34.9466666670001,0.317500000000109],[34.9575,0.416666667000129],[34.90416666700014,0.535],[35.05666666700006,0.514166667000154],[35.13833333399998,0.566666667000106],[35.19833333300011,0.455],[35.12333333400005,0.350833334000185],[35.206666667000036,0.306666666000126],[35.25083333300012,0.24],[35.43833333300012,0.336666666000042],[35.43750000000017,0.573333334000097],[35.47916666600014,0.810833333000062],[35.399166666000156,0.943333333],[35.31,0.940000000000168],[35.225,1.063333333000116],[35.1575,1.0225],[35.07166666699999,1.120000000000118],[35.057500000000175,1.250000000000171],[35.040000000000134,1.25416666700005],[34.91166666700019,1.379166667000106],[34.86083333300013,1.469166666000149],[34.82916666600005,1.468333334000135],[34.6991666670001,1.291666667000015],[34.76916666700009,1.213333333000094],[34.834166666000044,0.8900000000001],[34.79083333300008,0.85],[34.58833333300015,0.810833333000062],[34.46083333300015,0.829166666000049],[34.449166667000156,0.868333334000113],[34.33166666700015,0.916666667000186],[34.1775,1.01416666700004],[34.155,1.072500000000161],[34.1966666670001,1.130000000000109],[33.99416666600001,1.046666667000068],[33.94666666700016,0.991666667],[33.83166666600016,1.030833333000089],[33.852500000000134,1.075],[33.958333332999985,1.076666666999984],[33.95166666600005,1.08416666700009],[33.8975,1.110000000000127],[33.88833333300016,1.113333333000185],[33.85833333400012,1.116666667000118],[33.806666667000115,1.15],[33.721666667000136,1.265833333000046],[33.763333333000105,1.350833334000129],[33.70953047500018,1.37],[33.7125,1.4675],[33.62083333300018,1.410833334000188],[33.53,1.54],[33.47333333400013,1.67],[33.24666666600007,1.615833333000126],[33.09833333400013,1.524166667000145],[33.152500000000146,1.411666666000031],[33.300833333000185,1.388333334000151],[33.25250000000011,1.2875],[33.1433333330001,1.296666667000011],[32.94083333300017,1.435833334000108],[32.78416666700008,1.425000000000125],[32.71583333300015,1.358333333000132],[32.590000000000146,1.388333333000048],[32.555,1.485833333000073],[32.695,1.491666666000185],[32.774166667000145,1.588333333000094],[32.81000000000017,1.549166666000133],[32.92,1.5625],[32.98416666600008,1.537500000000136],[33.1475,1.63916666700004],[33.26000000000016,1.6425],[33.388333333000105,1.703333333000046],[33.420000000000186,1.785833334000188],[33.42833333400006,1.899166667000145],[33.3933333330001,1.980833333000021],[33.33416666700009,2.016666667000152],[33.17333333300007,1.993333333000066],[33.071666667000045,2.04166666600014],[33.074166667000156,2.1475],[33.0175,2.22],[32.94166666700016,2.260833333000051],[32.965000000000146,2.311666667000168],[32.9491666670001,2.419166666000081],[32.86166666700018,2.509166666000056],[32.849166667000134,2.62916666700005],[32.68083333400011,2.755],[32.525,2.808333333000121],[32.47583333400007,2.920000000000186],[32.4625,3.008333333000166],[32.328333333000046,3.04916666600019],[32.22333333300014,3.035],[32.0625,3.043333333000078],[32.01,3.13583333400004],[31.858333333000076,3.180000000000121],[31.746666667000113,3.150833333000094],[31.605833333000078,3.003333334000104],[31.685833334000165,2.8425],[31.748333333000176,2.803333334000058],[31.693333333000112,2.71000000000015],[31.715,2.701666667000154],[31.716666667000027,2.704166667000038],[31.715,2.701666667000154],[31.703333333000103,2.611666667000179],[31.6825,2.582500000000152],[31.75500000000011,2.395000000000152],[31.857500000000186,2.4491666670001],[31.908333333000144,2.241666666000071],[31.800833333000128,2.025833333000094],[31.643333333000044,1.959166666999977],[31.553333333000126,1.871666666000181],[31.664788013000134,1.875338902000124],[31.831826175000174,2.001688281000156],[31.86180738400003,1.973134749],[32.08238341900005,1.963854851000121],[32.06168210800007,1.852496076000136],[31.920342125000104,1.83179476600003],[31.868231929000046,1.793961336000166],[31.774243219000084,1.784919384000091],[31.71237723300004,1.706397171000049],[31.786140524000132,1.659283843000082],[31.679263067000193,1.579552069999977],[31.634648173000187,1.588772481000035],[31.63197128000013,1.448086849000106],[31.55017730700007,1.519768112000065],[31.48295753400015,1.376108154000065],[31.468502308000154,1.228676750000147],[31.316910814000096,1.257622893000189],[31.277352274000123,1.222228411000117],[31.202616549000027,1.270157686],[31.186852620000025,1.16040504700004],[31.256823645000054,1.166591646000086],[31.276454198000067,1.07593418100015],[31.327850556000044,0.990987423000149],[31.38807947300006,0.998142463000079],[31.58684378200013,0.932770737000055],[31.52243970400002,0.881017460000123],[31.52600889600012,0.761449545000175],[31.490316981000092,0.693634906000057],[31.515301321000152,0.542539132000172],[31.17069588100003,0.390134655000054],[31.00080236500014,0.481149038000069],[30.801819939000097,0.548963677000188],[30.72478488900009,0.598040060000073],[30.871716606000177,0.672398217000023],[30.615418912000166,0.69967873700017],[30.625412648000122,0.605452081000067],[30.68180587400019,0.543110203000083],[30.526141535000193,0.442244851000112],[30.52227491100018,0.362830340000187],[30.318533562000084,0.364614936],[30.217703902000096,0.379784000000143],[30.033941698000092,0.229466309000031],[30.031657415000154,0.16493532700008],[29.948281102000124,0.035492648000059],[29.910971153000162,0.066520820000164],[29.800944876000074,0.002751265000086],[29.696794801000067,0.073326789000077],[29.539750374999983,0.050483964000023],[29.528328962000103,-0.08371763699995],[29.454634624000107,-0.248603194999873],[29.42915058200009,-0.254543940999895],[29.30752355000004,-0.471784095999908],[29.274660455000117,-0.61115754399998],[29.143529603000104,-0.920407525999963],[29.096578540000166,-1.073721922999937],[29.157552527000064,-1.117647202999933],[29.18311146400015,-1.021364867999921],[29.24310602700018,-0.927955010999881],[29.32025951700018,-0.936802193999881],[29.362235585000178,-1.074576038999908],[29.328140518000055,-1.167746927999872],[29.34015304200011,-1.281372510999859],[29.388776546000145,-1.30489464599998],[29.536603479000064,-1.284262422999973],[29.573333333000107,-1.180833332999953],[29.593910675000018,-0.961285007999948],[29.63174410500011,-0.897753398999896],[29.6274610750001,-0.788536138999973],[29.667703709000193,-0.662766752999971],[29.73462605000003,-0.61220320699988],[29.815527724000162,-0.459322836999945],[29.930039285000078,-0.371580212999959],[29.928849555000056,-0.246658509999975],[30.043063683000128,-0.307037332999926],[30.103145073000178,-0.211561459999928],[30.191185131000168,-0.190443743999879],[30.308680536,-0.118603056999973],[30.31248767300019,-0.029706393999902],[30.435458218000065,0.004938558000106],[30.50798419,-0.033132817999899],[30.53330165500006,-0.268794635999939],[30.49503992200016,-0.409278013999824],[30.450877125000147,-0.441067612999859],[30.44478570500013,-0.549380677999977],[30.484189579000088,-0.620193436999955],[30.673547086000042,-0.742521526999894],[30.800883941999984,-0.793834603999812],[30.745680447000098,-0.895865891999961],[30.745870804000106,-0.982478272999856],[30.576643537000052,-0.999229677999949],[30.45540206700008,-0.892249110999842],[30.38401823700019,-0.866550931999939],[30.176291291000098,-0.867740662999893],[30.09538961700008,-0.925323618999869],[30.066666667000106,-1.049166666999952],[30.141666667000152,-1.091666666999856],[30.165833333000023,-1.148333333999972],[30.172500000000184,-1.301666666999893],[30.15166666600004,-1.406666665999921],[30.165833333000023,-1.502499999999884],[30.241666666000185,-1.5675],[30.257500000000164,-1.6425],[30.335833332999982,-1.6725],[30.34333333300009,-1.7875],[30.26,-1.785],[30.211666666000042,-1.830833332999873],[30.130833334000044,-1.758333333999872],[30.035,-1.825833332999878],[30.041666666000083,-1.855833332999907],[29.99416666700006,-1.875],[29.893333333000044,-1.7825],[29.878333333000114,-1.7625],[29.86916666600007,-1.802499999999895],[29.855000000000132,-1.807499999999891],[29.811666667,-1.807499999999891],[29.796666667000068,-1.759166666999874],[29.757500000000107,-1.7325],[29.738333334000174,-1.770833332999928],[29.79,-1.920833332999848],[29.8241666670001,-1.945],[29.820833333000166,-1.905833332999975],[29.9275,-1.910833332999971],[29.921666666000192,-1.944166666999934],[29.923333333000187,-2.0175],[29.856666666000024,-2.048333333999892],[29.811666667,-2.148333332999925],[29.82166666700016,-2.376666666999881],[29.785,-2.438333332999889],[29.8275000000001,-2.626666665999835],[29.74583333300012,-2.760833332999937],[29.81416666700011,-2.804166666999947],[29.822500000000105,-2.804999999999893],[29.906666667000138,-2.860833333999949],[30.055833333000123,-2.84083333399991],[30.140833334000035,-2.795],[30.18916666700011,-2.724166666999963],[30.18,-2.696666666999931],[30.18916666700011,-2.724166666999963],[30.31916666700016,-2.668333333999954],[30.276666666999972,-2.789166666999961],[30.33916666600004,-2.855],[30.30916666700017,-2.939166666999881],[30.29333333300019,-3.1175],[30.18833333300006,-3.256666666999877],[30.133333333000053,-3.260833332999937],[30.140833334000035,-3.1625],[30.229166666000083,-3.04833333299996],[30.2125,-2.983333332999962],[30.12416666700011,-3.021666666999977],[30.018333334000033,-3.182499999999891],[29.946666667000045,-3.144166666999979],[29.985000000000184,-3.021666665999874],[29.916666666000026,-2.944166666999877],[29.853333333000137,-2.94],[29.822500000000105,-2.997499999999889],[29.77416666700003,-3.01416666599988],[29.906666666000035,-3.0875],[29.843333332999975,-3.22],[29.882500000000164,-3.298333332999903],[29.823333334000154,-3.325833332999935],[29.853333333000137,-3.405833333999851],[29.846666667000136,-3.516666666999868],[29.915833334000183,-3.510833332999937],[29.86166666600019,-3.423333333999892],[29.9375,-3.379166666999936],[29.989166667000063,-3.394166666999979],[30.130833334000044,-3.33083333299993],[30.24166666700006,-3.260833332999937],[30.415,-3.04833333299996],[30.42416666600019,-2.994999999999891],[30.57333333300005,-2.888333333999981],[30.641666666000106,-2.939166666999881],[30.644166666000046,-2.9475],[30.745000000000175,-2.997499999999889],[30.840000000000146,-2.9775],[30.8975,-3],[31.000000000000114,-2.92],[31.060833334000165,-2.83],[31.134166666000112,-2.905],[31.05666666600007,-3.0325],[31.10166666700019,-3.059999999999832],[31.210833333000096,-2.9258333329999],[31.2975,-2.65],[31.34416666700008,-2.6075],[31.365833334000172,-2.503333332999887],[31.325,-2.398333332999869],[31.405833332999975,-2.360833333999892],[31.338333333000094,-2.284166666999909],[31.39583333300004,-2.1775],[31.3825,-2.088333333999969],[31.508333333000053,-2.065833332999944],[31.600000000000136,-2.2325],[31.605833333000078,-2.389166666999927],[31.656666666000092,-2.418333333999954],[31.63750000000016,-2.489166666999949],[31.4375,-2.663333332999969],[31.710833332999982,-2.6625],[31.724166667000077,-2.749166666999884],[31.707500000000152,-2.889166666999927],[31.726666666000085,-3.045833332999962],[31.794166666000024,-3.035833332999914],[31.836666665999985,-2.9325],[31.9075,-2.926666666999949],[31.964166667000086,-2.973333332999971],[32.046666667000125,-2.95499999999987],[32.05833333300018,-2.925],[31.898333332999982,-2.872499999999889],[31.91750000000019,-2.786666666999906],[32.0475,-2.874999999999886],[32.07916666700015,-2.868333332999953],[32.145,-2.7275],[32.24,-2.695833332999882],[32.246666667,-2.55833333399994],[32.197500000000105,-2.515],[32.36166666700012,-2.429166665999958],[32.315,-2.271666665999931],[32.22916666600008,-2.275],[32.159166667000136,-2.389999999999873],[32.066666667000106,-2.4275],[32.17166666700018,-2.508333332999882],[32.1325,-2.551666666999893],[32.038333333000026,-2.489999999999895],[31.940833334000104,-2.584166665999931],[32.00666666700005,-2.679999999999893],[31.9725,-2.709166665999817],[31.839166666999972,-2.675833332999957],[31.794166666000024,-2.725],[31.718333334000135,-2.509166666999931],[31.7525,-2.504999999999882],[31.754166667,-2.401666666999915],[31.629166667000106,-2.335833333999858],[31.694166666000058,-2.13583333299988],[31.698333333000107,-2.035833333999847],[31.62750000000017,-2.036666666999963],[31.625833334000106,-1.953333332999932],[31.68666666600018,-1.889999999999873],[31.72583333300014,-1.6475],[31.763333333000162,-1.615833332999955],[31.74666666600001,-1.465],[31.8,-1.47],[31.820000000000164,-1.327499999999873],[31.865,-1.255833332999885],[31.87583333400005,-1.036666666999963],[31.764166667000154,-1.0225],[31.773333333000096,-0.868333333999885],[31.698333333000107,-0.828333332999819],[31.73000000000019,-0.73],[31.801666666000074,-0.648333332999869],[31.79,-0.574166666999929],[31.843333333000146,-0.4875],[31.92083333300002,-0.424999999999841],[31.989166666000074,-0.317499999999825],[31.98666666600019,-0.185833333999881],[31.92916666600007,-0.155833332999975],[31.990833334000172,-0.080833332999873],[32.08583333300004,-0.021666666999863],[32.1575,-0.069166666999934],[32.29416666600008,-0.013333333999924],[32.299166666000076,0.014166666000165],[32.45333333300016,0.0275],[32.57083333300011,0.101666666000085],[32.572500000000105,0.200000000000102],[32.683333334000054,0.21],[32.74500000000012,0.180833334],[32.6675,0.098333333000028],[32.86083333300019,0.15083333299998],[32.943333333000055,0.079166667000095],[33.03333333300003,0.125000000000114],[33.131666667000104,0.215833333000035],[33.1475,0.30583333300018],[33.2725,0.375833333000173],[33.25333333400016,0.465833333000148],[33.35833333300013,0.42000000000013],[33.434166666000124,0.223333333000085],[33.52083333300004,0.174166667000065],[33.626666667000165,0.23250000000013],[33.615,0.323333333000051],[33.7116666660001,0.3275000000001],[33.71833333300003,0.185833333000119],[33.9,0.1775],[33.93166666700017,0.233333334000179],[34.01,0.235],[33.98750000000018,0.1125],[34.00916666600017,-0.017499999999814],[34.079166667000095,-0.062499999999886],[34.095,-0.143333332999816],[34.14583333400009,-0.204166666999868],[34.2675,-0.265],[34.315,-0.365833332999898],[34.3875000000001,-0.304166665999901],[34.385833333000164,-0.234166665999965],[34.4583333330001,-0.159166665999976],[34.51083333300005,-0.1875],[34.67750000000018,-0.0925],[34.73833333400006,-0.115],[34.81916666600006,-0.26],[34.755,-0.285833333999904],[34.74000000000012,-0.35],[34.46250000000015,-0.345833333999963],[34.44916666600005,-0.408333332999973],[34.50500000000011,-0.485833332999903],[34.42333333400006,-0.533333332999973],[34.36833333300012,-0.478333333999899],[34.227500000000134,-0.424166666999895],[34.0925,-0.564166665999949],[34.05250000000018,-0.703333332999932],[34.08416666700009,-0.776666666999972],[34.18833333300017,-0.850833332999855],[34.12666666700011,-0.9725],[33.98333333300013,-1.16583333299991],[33.873333333,-1.236666666999952],[33.945000000000164,-1.34583333299986],[33.98750000000018,-1.4175],[33.92916666700012,-1.479166666999845],[33.9591666660001,-1.520833333999974],[34.11083333300007,-1.54],[34.152500000000146,-1.494166665999899],[34.3841666670001,-1.430833332999839],[34.4825,-1.475],[34.55083333400006,-1.44],[34.49083333300007,-1.425833332999957],[34.4825,-1.4175],[34.47500000000019,-1.424166666999952],[34.4825,-1.4175],[34.4825,-1.4075],[34.47500000000019,-1.4075],[34.466666666000094,-1.415833332999966],[34.47500000000019,-1.4075],[34.44083333300006,-1.325833332999878],[34.44083333300006,-1.284166665999919],[34.42083333400018,-1.214166666999915],[34.50333333300017,-1.229166665999969],[34.5775,-1.19],[34.624166667000054,-1.225],[34.65083333399997,-1.176666666999836],[34.545000000000186,-1.046666666999954],[34.61333333300007,-0.88916666699987],[34.638333334000095,-0.7725],[34.68916666700011,-0.655],[34.77,-0.563333332999889],[34.891666667000095,-0.4875],[35.050833333000014,-0.424999999999841],[35.05,-0.365833333999831],[35.14083333300016,-0.359166666999954],[35.18583333300006,-0.276666666999972],[35.372500000000116,-0.266666666999924],[35.43916666700011,-0.20583333299993],[35.38583333400004,-0.144999999999868],[35.248333333000176,-0.118333332999953],[35.24583333300012,-0.0675],[35.36083333300019,0.031666667000138],[35.205,0.060833333000062],[35.08,0.005833334000101],[34.9475,-0.0225],[34.84750000000014,-0.019999999999811],[34.7608333340001,0.039166667000188],[34.66833333400001,-0.01],[34.59083333400014,-0.005833332999941],[34.66250000000019,0.086666666000099],[34.67416666700012,0.135833333000051],[34.785,0.15],[34.7925,0.159166667000079],[34.72666666700013,0.190000000000168],[34.78416666700008,0.285],[34.74333333300012,0.291666667000072]],[[32.54,1.588333334000026],[32.526766581000174,1.661666667000077],[32.75416666700016,1.814166667000165],[32.78916666600003,1.77666666600004],[32.60500000000013,1.619166667000059],[32.54,1.588333334000026]],[[30.263333333000105,-1.856666666999956],[30.28,-1.86],[30.26,-1.91083333399996],[30.175,-1.8775],[30.263333333000105,-1.856666666999956]],[[34.25250000000011,-1.344166666999968],[34.25083333300012,-1.25],[34.07250000000016,-1.244166666999945],[33.98750000000018,-1.21],[34.103333333000194,-1.139166665999937],[34.16666666600008,-1.17583333399989],[34.24666666700017,-1.164166666999961],[34.340000000000146,-1.2125],[34.375,-1.334166666999977],[34.27500000000015,-1.391666666999868],[34.25250000000011,-1.344166666999968]]]]},"properties":{"objectid":823,"eco_name":"Victoria Basin forest-savanna","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Afrotropic","eco_biome_":"AF07","nnh":4,"eco_id":61,"shape_leng":220.920664226,"shape_area":13.4841198812,"nnh_name":"Nature Imperiled","color":"#66FC43","color_bio":"#FEAA01","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":167040.18187632004,"percentage":0.7791410937050202}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[16.854497469000137,-2.252821845999904],[16.61119043400015,-2.254751695999971],[16.354799582000055,-2.27833619199987],[16.291910498000107,-2.386073989999943],[16.327560576000167,-2.632120566999959],[16.286220527000125,-2.753290700999969],[16.187538536999966,-2.709964978999949],[16.221385500000167,-2.632303795999974],[16.17694045800016,-2.553420530999972],[16.124443593000024,-2.346490954999979],[16.11770253100002,-2.213842978999935],[16.05876953699999,-2.183693105999964],[15.888099572000101,-1.997631953999814],[15.532400434000124,-1.690555901999971],[15.442749442000093,-1.586066593999931],[15.25697059300012,-1.412024755999937],[15.058050596000157,-1.198140882999894],[14.947529503000169,-1.10435191199997],[14.735540442000115,-0.991572063999968],[14.554200481000066,-0.785214636999967],[14.45310048000016,-0.694090440999958],[14.294340528000134,-0.499133072999882],[14.194109562000051,-0.449016834999952],[14.065739541000141,-0.470937020999884],[14.049440594999965,-0.605645939999931],[14.178910489000032,-0.854431554999962],[14.212010457000133,-0.996636912999918],[14.166660505999971,-1.104578726999819],[14.099929492000115,-1.144952677999925],[13.85072059100014,-1.170819901999948],[13.611390433000167,-1.150032445999955],[13.49435056600015,-1.090296801999955],[13.25852052300013,-1.069396358999882],[13.062509549000083,-1.064403761999927],[12.839730465000173,-1.086947057999964],[12.777919461000181,-1.108195349999903],[12.393760576999966,-1.365100179999899],[12.5298404400001,-1.611925938999946],[12.698370506000117,-1.830274515999918],[12.853736458000014,-1.988356539999927],[13.049114430000088,-2.28325066899987],[13.238035487,-2.698193600999957],[13.355376432000071,-2.934628146999898],[13.450980587,-3.079869429999974],[13.549466441000106,-3.271947111999964],[13.695253553000043,-3.525922298999831],[13.771368443000085,-3.815764486999967],[13.77086049899998,-3.953204565999897],[13.744254495000064,-4.017415810999978],[13.59771552500007,-4.108950719999825],[13.47642653600019,-4.141898472999912],[13.424283554999988,-4.129952248999871],[13.146351548000098,-3.964174464999928],[13.002195552999979,-3.866984788999901],[12.924007484000072,-3.792621214999883],[12.718955453999968,-3.55751670899997],[12.626534578000076,-3.397714551999911],[12.562095512000099,-3.320066444999838],[12.336760450999975,-2.994511815999886],[12.192237497,-2.826170342999944],[12.01156758500008,-2.642030993999924],[11.47941446599998,-2.136090768999964],[11.38819957800007,-2.087813185999948],[11.217390473000023,-1.885303386999965],[11.12240942800014,-1.728835047999951],[11.035659580000129,-1.622941938999929],[10.854660427000056,-1.483423315999971],[10.759220557000106,-1.466571666999926],[10.702409526000054,-1.502578981999932],[10.687769527000114,-1.614160721999838],[10.732199481000123,-1.762978394999891],[10.795929438000087,-1.88667332599988],[10.947540463999985,-2.064661865999938],[11.102800469000101,-2.195997068999873],[11.25687057800019,-2.305876107999893],[11.513939525000126,-2.564021794999974],[11.703410434999967,-2.778487874999882],[11.724470470000142,-2.885254881999913],[11.67597043100011,-2.92457992199985],[11.592829495000103,-2.908613066999976],[11.47381049300003,-2.838528117999886],[10.97167045499998,-2.403258567999899],[10.819959516000097,-2.326012624999976],[10.765669593999974,-2.327093554999976],[10.731060548000073,-2.560943121999969],[10.742329514000062,-2.752836568999953],[10.794710541000086,-2.895635868999875],[10.917269556000065,-2.970366402999957],[11.252779539000187,-3.108333031999962],[11.48573945000004,-3.252948521999883],[11.625439457000027,-3.454257361999964],[11.795160591000183,-3.654871676999903],[11.96253043400003,-3.832091428999945],[12.122799464000025,-3.984399997999901],[12.349089560000039,-4.157851413999879],[12.509779528000081,-4.245700632999956],[12.798190591000036,-4.453359265999893],[12.959910528000137,-4.54355172999982],[13.084810441000172,-4.578361270999949],[13.209380442000054,-4.644192235999981],[13.519289577999984,-4.934945871999957],[13.575453526000103,-5.057235827999875],[13.452650430000062,-5.092724302999954],[13.477629507000131,-5.338264110999944],[13.436140595000154,-5.392566269999975],[13.190910583000175,-5.491016919999879],[12.958388542000137,-5.659948646999908],[12.919783508000023,-5.658121558999881],[12.810908452999968,-5.743660389999945],[12.690795445000163,-5.689067377999947],[12.559765511000137,-5.514373092999961],[12.527008530000103,-5.427025447999881],[12.548177530000146,-5.207375830999979],[12.525819474000116,-5.12308707699998],[12.492429492000042,-4.834476189999975],[12.396180432999984,-4.697464426999886],[12.29598048000014,-4.591362272999902],[12.020890441000176,-4.372368455999833],[11.783829432000061,-4.199261200999899],[11.670160431000056,-4.102689270999917],[11.282649456000058,-3.726525381999977],[11.165080524000075,-3.661689180999815],[11.056879541000058,-3.631451129999903],[10.926353528000107,-3.647657204999916],[10.994859493000035,-3.724580444999958],[11.017990528000155,-3.830488473999878],[11.374239517999968,-4.147523902999978],[11.38903944499998,-4.202319924999927],[11.787280429000077,-4.564356115999885],[11.773139488000027,-4.666718767999896],[11.846670572,-4.757264779999957],[11.88416047800007,-4.861319402999925],[12.13097953099998,-5.197562633999951],[12.221679434000066,-5.446340034999878],[12.140899513000079,-5.628633855999908],[12.159440451000137,-5.702023453999971],[12.23719953400007,-5.824698305999959],[12.345135201000176,-5.932180847999859],[12.595689510000057,-5.938259012999879],[12.708849561000022,-5.92413215299996],[12.95270343300001,-5.807745571999874],[13.14999046700018,-5.823486617999947],[13.151479596000172,-5.90551058199992],[13.157222236000166,-5.924797647999924],[13.462234867000063,-6.206643291999967],[13.570134925000104,-6.337298408999914],[13.582886750000114,-6.400664016999826],[13.691767717000118,-6.456224314999872],[13.891873278000105,-6.717372621999971],[13.956613313000048,-6.83425960299985],[13.970346047000135,-6.935538558999895],[14.042933359000187,-7.052371818999973],[14.157699784000044,-7.062106599999936],[14.239115282000057,-7.118564283999831],[14.330339876000096,-7.260651026999938],[14.39017536300014,-7.299571106999849],[14.493170872,-7.312219403999904],[14.584395466000046,-7.286922451999942],[14.757035559000087,-7.021219143999815],[14.874744712000052,-6.915089744999932],[15.000301143000058,-6.867372406999948],[15.15822759100007,-6.873215603999881],[15.265146739000159,-7.020245588999899],[15.335772231000078,-7.149710379999931],[15.50448868500007,-7.577749956999924],[15.598259266000127,-7.785767800999963],[15.688154092000104,-8.205436948999932],[15.698142406000045,-8.535774602999936],[15.475545695000164,-8.669805136999855],[15.425604125000177,-8.760072491999892],[15.425604125000177,-8.90107129099988],[15.45984977300003,-8.972959813999921],[15.40420059600018,-9.125147193999908],[15.291571405000013,-9.257856087999926],[15.388290540000014,-9.277146224999967],[15.677570471000081,-9.209844906999933],[15.797380557000054,-9.147521432999952],[16.03042043200014,-9.06532010899997],[16.134830447000013,-9.078446336999889],[16.1015395390001,-9.231702227999904],[15.843009459000143,-9.331219390999934],[15.833930516000066,-9.380716875999894],[15.92802945000011,-9.444479354999942],[16.10177054500008,-9.48446254199996],[16.440175469000167,-9.729459033999944],[16.732040546000064,-9.722773627999914],[16.90142053700015,-9.647146900999928],[16.917039543000158,-9.560008969999899],[16.816600538000046,-9.342550550999931],[16.73884950100006,-9.222161945999972],[16.835269551000067,-9.204498090999948],[16.775850575000163,-9.061793338999848],[16.809949498000037,-9.029119674999947],[17.064519465000046,-9.057319581999877],[16.97632055300005,-9.267837785999973],[17.01395948900017,-9.330970280999964],[17.18601045700018,-9.501032055999872],[17.32098944100011,-9.6563373219999],[17.280370571000105,-9.723032628999931],[17.28544044900002,-9.791514621999966],[17.34337951599997,-9.86187885499993],[17.472450599000183,-9.920222600999864],[17.54578957000018,-10.00726665399992],[17.775539548000097,-9.919713651999928],[17.853269462000185,-9.781686336999883],[17.93852951100007,-9.877226789999952],[18.028619547000062,-9.88559109099998],[18.13080047900013,-9.976631802999975],[18.2350405090001,-10.005236723999928],[18.23246056000005,-10.101799936999896],[18.34333050800018,-10.171724790999917],[18.398000465,-10.134846428999936],[18.482809568000107,-10.010066208999945],[18.527450578000128,-10.16738514399998],[18.581050502000153,-10.20469165399993],[18.633789437000075,-10.134817426999916],[18.641199542000095,-9.953540330999942],[18.75587051600013,-9.928184905999899],[18.91572950300008,-10.022534457999939],[18.974189589000105,-9.972793897999964],[18.91444958600016,-9.861094643999934],[19.063119570000083,-9.89641346999997],[19.135259594000047,-9.816248108999957],[19.063089563000176,-9.732576933999951],[18.86968955200001,-9.624558341999943],[18.797159435000026,-9.563255951999963],[18.739889579000078,-9.443131209999876],[18.70786048300016,-9.325705606999975],[18.639690464000125,-9.210041880999881],[18.554220533000034,-9.124783005999973],[18.448020478000046,-9.060480397999925],[18.422359449000055,-9.000942565999935],[18.465469589000065,-8.92944694299996],[18.55455044500019,-8.928482018999887],[18.603530599000067,-8.868928260999951],[18.573030529000164,-8.811646334999978],[18.420429600000148,-8.705078817999947],[18.406639525000173,-8.65868615699992],[18.550739528000065,-8.59944822999995],[18.551540503000183,-8.54264038399998],[18.4786705840001,-8.501191537999944],[18.407320471000048,-8.350798233999967],[18.4603594780001,-8.261630709999963],[18.582130593999977,-8.166481355999906],[18.666650521000122,-8.067147421999948],[18.62418947499998,-7.834005454999954],[18.41348049900006,-7.569393297999966],[18.42440044300014,-7.479335950999939],[18.155349565000108,-7.506949962999897],[18.023036529000137,-7.457955559999903],[17.909730465000052,-7.323638243999937],[17.85246044100012,-7.195591428999933],[17.77069044900003,-6.83407374199993],[17.718349487000125,-6.69645462699998],[17.537649568000063,-6.517577603999882],[17.515029494000032,-6.31962404099994],[17.445508480000058,-6.175020619999941],[17.36823856500007,-6.135902613999917],[17.28842759100013,-6.153487343999871],[17.31276159700019,-6.28536854399988],[17.413831592000122,-6.469012186999919],[17.594907523000188,-6.723070856999868],[17.64805046500004,-6.855740123999908],[17.673805539000114,-7.039888859999905],[17.727153503000068,-7.211547387999872],[17.865140584000073,-7.470273604999932],[18.141742551000107,-7.847619341999973],[18.18812146500005,-7.893609838999907],[18.256891461000066,-8.091732884999942],[18.2595465120001,-8.28831148099988],[18.164203537000105,-8.268382164999935],[18.053142482000055,-8.0557394839999],[17.768241592000038,-7.692319607999934],[17.579244595000034,-7.433938054999885],[17.451984506000144,-7.29046149699991],[17.37691148700003,-7.25412007999995],[17.10879552700004,-7.190128774999948],[16.99578450600012,-7.203561947999958],[16.93007457599998,-7.161048096999878],[16.93215949,-6.951825232999965],[16.784898504000125,-6.72137201299995],[16.765361461000055,-6.554915964999907],[16.75584951000002,-6.207529328999897],[16.678281534000178,-6.080448779999927],[16.62266743800012,-5.94128990899992],[16.545577566000077,-5.504245071999947],[16.473968453000055,-4.976019879999967],[16.39001447200019,-4.442782142999874],[16.393871489,-4.167506527999933],[16.442626505000078,-4.067537915999822],[16.521680592000052,-4.013585951999971],[16.736991569000168,-3.922283724999886],[17.09362445000005,-3.879338875999963],[17.17438559600015,-3.822765220999941],[17.21588557200016,-3.64811820999995],[17.278615568000134,-3.479449674999955],[17.282976504000032,-3.339255973999968],[17.12802646300014,-3.23189888099995],[16.921417578000103,-3.169799539999929],[16.658569477000185,-3.161607234999963],[16.321111540000175,-3.266760389999945],[16.22552448400012,-3.225248343999908],[16.27447546899998,-3.169298636999883],[16.50971056400016,-3.025162423999916],[16.627920545,-2.936496808999891],[16.47751953000011,-2.855052872999977],[16.55118757400004,-2.72590350299987],[16.62223258500012,-2.723178880999853],[16.75530451800006,-2.77598503899992],[16.805704567000078,-2.876246514999934],[16.86173256,-2.919770217999883],[17.04425051400011,-2.976401875999954],[17.127199504000032,-2.950620817999948],[17.037805501000037,-2.86539714699984],[17.100803550000023,-2.756425364999814],[17.00316846000004,-2.668925000999877],[16.80682757400001,-2.650783209999929],[16.69081449000015,-2.594095560999961],[16.687610592000055,-2.46380625199987],[16.854497469000137,-2.252821845999904]]],[[[12.12040056300009,0.050999899000146],[12.024539586,0.06930949600013],[11.769860487000074,0.031501246000062],[11.493370502000118,0.019839001000094],[11.372110515000145,0.028272369000149],[11.225460569,0.001828470000021],[11.172249566000119,-0.055772303999959],[11.18585054500005,-0.185278574999927],[11.25745949000003,-0.242819166999936],[11.54833047400001,-0.25497929699992],[11.727780483,-0.356161775999851],[11.939889572000027,-0.369966770999952],[12.164130461000013,-0.369600816999878],[12.238050465000015,-0.395166962999951],[12.268409551,-0.266697532999956],[12.251449440000158,-0.109232081999835],[12.20897951000012,-0.01896904299997],[12.12040056300009,0.050999899000146]]]]},"properties":{"objectid":824,"eco_name":"Western Congolian forest-savanna","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Afrotropic","eco_biome_":"AF07","nnh":4,"eco_id":63,"shape_leng":64.5390766791,"shape_area":30.5211941841,"nnh_name":"Nature Imperiled","color":"#DBDB00","color_bio":"#FEAA01","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":376390.1730796771,"percentage":1.755631775654183}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[36.7775,-3.194166666999934],[36.71916666699997,-3.223333333999904],[36.71333333300015,-3.286666666999963],[36.80333333400006,-3.289166666999961],[36.7775,-3.194166666999934]]],[[[37.2066666660001,-2.93],[37.19750000000016,-3.068333333999931],[37.43416666700011,-3.184166665999953],[37.52166666700015,-3.179166666999947],[37.535,-3.123333332999891],[37.444166667000104,-2.964166666999915],[37.32083333300005,-2.95916666699992],[37.2066666660001,-2.93]]],[[[36.67,-0.534999999999854],[36.735,-0.429999999999893],[36.6525,-0.26083333299988],[36.59250000000014,-0.233333332999962],[36.53333333300003,-0.27916666699997],[36.56833333300011,-0.355],[36.66916666700013,-0.480833332999907],[36.67,-0.534999999999854]]],[[[37.496666666000124,-0.096666666999965],[37.5,0.06666666700005],[37.250000000000114,-0.021666665999931],[37.20916666599999,-0.154166665999981],[37.25500000000011,-0.273333333999972],[37.39833333300015,-0.185],[37.496666666000124,-0.096666666999965]]],[[[34.615,0.999166666000178],[34.68833333400016,1.049166667000179],[34.668333333000135,1.171666666000078],[34.59833333400019,1.265000000000157],[34.52250000000015,1.268333333000157],[34.41833333400007,1.170833333000132],[34.46166666700003,1.126666666000176],[34.46250000000015,1.021666667000147],[34.5841666660001,0.98583333400012],[34.615,0.999166666000178]]],[[[35.49500000000012,1.185833333000062],[35.574166667000156,1.130833334000101],[35.550833334,1.2825],[35.43000000000012,1.226666667000188],[35.49500000000012,1.185833333000062]]]]},"properties":{"objectid":825,"eco_name":"East African montane moorlands","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Afrotropic","eco_biome_":"AF10","nnh":1,"eco_id":78,"shape_leng":19.265000004,"shape_area":0.251041666667,"nnh_name":"Half Protected","color":"#882AC8","color_bio":"#D6C39D","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":3109.5720456977424,"percentage":0.06367762026539553}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[42.75414085100016,14.071344373000102],[42.68561193100015,14.01432589400008],[42.71196158800012,13.953980792000095],[42.77833366700008,13.92915916700008],[42.78777504100003,14.045791298000097],[42.75414085100016,14.071344373000102]]],[[[51.27422692400012,15.228769792000094],[51.12772736400018,15.194325758000161],[50.96566953000013,15.20646660500006],[50.776182375000076,15.15556497700004],[50.653424916,15.244148199],[50.64047467800003,15.114555892000055],[50.427695082000184,15.11977196000015],[50.44783989600006,15.040631620000056],[50.38677592900018,15.001601043000164],[50.30331884300017,15.015900264000095],[50.22076107900011,14.963829517000079],[50.13568521400015,14.987391755000033],[50.08541311100004,14.929385483000146],[49.87038521000011,14.832618431000185],[49.69870463200016,14.82974059999998],[49.520009341000105,14.882980465000173],[49.58790815500015,14.792868396000074],[49.47153588300006,14.702216734],[49.42270269600016,14.746823107000125],[49.46434130600011,14.842241176000073],[49.308039135000115,14.842421041000136],[49.13330086100012,14.812923278000142],[49.24949326900014,14.757794836000073],[49.30992771100006,14.682341716999986],[49.16792476000012,14.576221715000145],[49.020795673000066,14.515697343000056],[48.99273682500018,14.446359612000037],[49.00486135000017,14.409835433000012],[49.07514445000015,14.508188883000173],[49.17992350300017,14.545833333000019],[49.34583333300009,14.64398193400018],[49.62083333300018,14.758929443000113],[49.84625040700007,14.812500000000114],[49.92916666700012,14.851080322000143],[50.18092651400008,14.84583333300003],[50.22541707400012,14.891249593000111],[50.342323812000075,14.942323812000154],[50.4723205570001,15.027679443000125],[50.67093185500005,15.062395213000173],[50.920607503000156,15.120607503000087],[51.282537362000085,15.220665074000067],[51.27422692400012,15.228769792000094]]],[[[42.63282124900013,15.45665799800014],[42.55413245600016,15.388399122000123],[42.545137348000026,15.287495522000029],[42.621166992000155,15.31250000000017],[42.63282124900013,15.45665799800014]]],[[[41.77306937999998,16.889730449000126],[41.83734944800017,16.75431722100018],[41.94779459700004,16.67279459700012],[42.05416666800011,16.69166666700005],[42.07919859700007,16.62496727100006],[42.18828636100005,16.588005135000174],[42.188020834000156,16.7125],[42.07749328800014,16.812494072000106],[42.03333317300019,16.754199848000155],[41.90416666699997,16.753055828000186],[41.848073963000104,16.84808921800004],[41.77306937999998,16.889730449000126]]],[[[41.92083333300019,16.98083292600012],[41.8374614710001,16.904565815000126],[41.88472188300017,16.81805623400004],[41.947916667000186,16.88127103700009],[41.92083333300019,16.98083292600012]]],[[[55.187626808000175,17.160513547000164],[55.08553432400009,17.1339901770001],[54.96299208199997,17.048924446000115],[54.74884059200019,17.018586318000075],[54.64295457700001,17.051898772000186],[54.481151229000034,17.052493638000044],[54.28425083000002,17.07331392100008],[54.19442617700008,17.111385298000187],[53.77921023200014,16.951366544999985],[53.78563516600008,16.875462908000088],[53.980198160999976,16.911468506000062],[54.026691978000144,16.985055816000113],[54.24027710000013,17.026389567000138],[54.40416666699997,17.03514200799998],[54.628326416,17.028326416000084],[54.729961818000106,16.95420906900017],[54.89567871100013,16.962345379000112],[55.07155761700017,17.0375],[55.187626808000175,17.160513547000164]]],[[[55.2410465370001,17.5691654850001],[55.24743172400002,17.441641618],[55.26192156700017,17.44699929000012],[55.2410465370001,17.5691654850001]]],[[[55.317488911000055,17.64587765500005],[55.374595861000046,17.678343181],[55.34329945400003,17.662229263000086],[55.317488911000055,17.64587765500005]]],[[[55.69088742600019,17.948409591000086],[55.49168759200006,17.88833487900007],[55.42261965900019,17.812522030000082],[55.50573120100006,17.86093546500007],[55.654166667000084,17.895363363000058],[55.824166952000155,17.90749043800008],[55.7100429840001,17.897507964000113],[55.69088742600019,17.948409591000086]]],[[[56.353417976,17.920710472000053],[56.24837716100018,17.96495711700004],[56.14081824400017,17.933300981],[56.244317627000044,17.94431762700009],[56.353417976,17.920710472000053]]],[[[43.740875942000116,14.84844649900009],[43.55882411800019,14.985262423000108],[43.378959709000014,15.089853577000099],[43.30215760600004,15.080230831000108],[43.29622208000012,15.214679477000175],[43.16908532700006,15.413960381000038],[43.16369105200005,15.535078881000118],[43.12690878000012,15.583192610000026],[43.162072272000046,15.710536612000055],[43.1148578640001,15.77825556200014],[43.14345630500014,15.853079156000092],[43.11206996600015,16.061362142],[43.13904962700002,16.194551737000097],[43.1135980360001,16.2337753970001],[43.14489522100018,16.345547909000118],[43.13140539,16.482064995000087],[43.08958650300019,16.536211180000123],[43.1059255350001,16.62571576700003],[42.99893525300013,16.81427455900007],[42.927798014000075,16.830746850000082],[42.95306982800014,16.913199984000187],[42.83319020000005,17.06932229100005],[42.864547498000036,17.10802218000009],[42.74988393700016,17.256770046999975],[42.709234580999976,17.216390487000126],[42.64757012900009,17.346493346000045],[42.597656617999974,17.32564330600013],[42.570048569000164,17.482201043000146],[42.35034419400017,17.664763418000064],[42.32453365000015,17.710448978000045],[42.21047057400011,17.69806737500005],[42.15030592900007,17.759221274000083],[42.04265708000008,17.749868324000033],[41.98440917000005,17.834047785000052],[41.930601552999974,17.787190189000114],[41.838243285000146,17.828720969000017],[42.13595682800002,17.610955811000167],[42.279913330000056,17.453420003000133],[42.32315909900018,17.339018491000047],[42.36257497300011,17.182367073000023],[42.42777811700006,17.154166667000084],[42.44392524000017,17.06076555700008],[42.54573783300009,17.008467230000065],[42.54054997100019,16.88344370300007],[42.662379902000055,16.793169532000093],[42.740560029000164,16.64277384500008],[42.71933552000007,16.565984721],[42.77761209700009,16.45571485900018],[42.75869503900003,16.423201923000136],[42.82065120300007,16.196095798000044],[42.84025000800011,16.056382127000177],[42.812704553000174,15.870654854],[42.6982115190001,15.730310020000047],[42.69303808400008,15.637900442000046],[42.773056030000134,15.464721680000139],[42.799825352000084,15.258987013000137],[42.70566633300018,15.307100741999989],[42.66537670600019,15.234615385000154],[42.795833333000076,15.183333333000064],[42.87087665100012,15.111463981999975],[42.867129387000034,15.033808911000165],[42.92087409900017,14.966707348000057],[42.94842755400009,14.87098559500015],[42.92638855100006,14.804166667000061],[43.019985927000164,14.545987076000074],[42.99308965900019,14.404234597000084],[43.07666626000008,14.2125],[43.103733317000035,14.062933350000037],[43.15862347600017,13.953779810000185],[43.230147298000134,13.879166667000106],[43.28455993400007,13.70118136400015],[43.291666667000015,13.595833333000087],[43.25833333300017,13.504166667000106],[43.253186035000056,13.261519368],[43.28785324700016,13.161282776],[43.350207726000065,13.081926528],[43.44565184400017,12.88588871900015],[43.496051439000155,12.837051851000012],[43.458398886000055,12.700370826000096],[43.531089274000124,12.6875],[43.57916666700015,12.743750000000148],[43.795705545000146,12.689023442000178],[44.04583333300019,12.6],[44.14083353700016,12.659167480000065],[44.287500000000136,12.626389567000103],[44.424722290000034,12.679166667000061],[44.52944030800006,12.812227376000124],[44.650270394000074,12.81202165700006],[44.74361063600003,12.776944987000036],[44.829166667000095,12.78125000000017],[44.995454915000096,12.85378824900016],[45.21488138800015,13.043452962000117],[45.3875,13.068750000000136],[45.515024821000054,13.22664184600012],[45.63898111999998,13.344352214000082],[45.838896688000034,13.39443766300002],[46.245833333000064,13.43267618800013],[46.43428775100017,13.407464543000174],[46.61250116600013,13.435251835000145],[46.70416666700015,13.428240967000079],[46.90681254200007,13.53485514300013],[47.20305582800006,13.596944173],[47.39570922900009,13.65404256200003],[47.61706950000013,13.849597168000173],[47.720833334000076,13.91369018600011],[47.795833334000065,13.928887939],[47.96527710000004,14.051389567000115],[48.07012233800015,14.053445810000028],[48.19440864600011,13.973496080000075],[48.51907959,14.030920410000022],[48.74012985700017,14.098021030000098],[48.663495024000156,14.15506920100006],[48.630489905,14.08051540300005],[48.49667078500016,14.099311234000083],[48.36617915599999,14.17134693000014],[48.17885037400015,14.128719065000155],[48.10053861900013,14.257164229000182],[47.97190135200009,14.328527869000027],[47.93131057199997,14.347741738000025],[47.53380838500004,14.44604189200004],[47.60252614500018,14.274837704999982],[47.70510519800007,14.211647676000041],[47.74986984000003,14.060136581000165],[47.65008950600014,13.965374262000068],[47.570137007000085,13.919363862000068],[47.30991425400015,13.858268085000077],[47.20205380800013,13.76700155399999],[47.069302490000155,13.72702530500004],[46.92900848400012,13.724762498000132],[46.8596157500001,13.745882026000174],[46.661243042000194,13.72777957400018],[46.61146129800011,13.622181935000071],[46.46739594700006,13.568628846000138],[46.27427812399998,13.53787300800019],[46.125258944000166,13.540142335999974],[45.97850909200014,13.469793180000067],[45.83510957400017,13.446785810000108],[45.80225798100014,13.497025111000028],[45.71857505200012,13.509625769000024],[45.70175773000011,13.37715563100005],[45.601573254000186,13.403056106000179],[45.54770386300015,13.322027190000142],[45.39356006500009,13.28884220600014],[45.31837674200011,13.36420539400018],[45.235729046000074,13.30404074900008],[45.135904299000174,13.285964376000038],[44.9904839240001,13.31878963000014],[44.995430195000154,13.243156646000159],[44.77824392100007,13.300713257000098],[44.646673105000104,13.215547459999982],[44.66429981800002,13.147558713000024],[44.56483479900004,13.04908294900008],[44.45448798400014,13.077861254000084],[44.42984656000016,13.040989050000178],[44.18882825200012,12.95816149000018],[44.19458391300003,12.814180030000045],[44.24395669300009,12.729823622000026],[44.15775836500006,12.663495127000147],[44.04877476800016,12.79892059600013],[43.82061676500007,12.802068224000152],[43.66191546500005,12.914730969],[43.571083353000176,13.139022315000034],[43.60525817600012,13.264200781999989],[43.726666652000176,13.353233665000175],[43.698967533000086,13.530669904000149],[43.623154684999975,13.631483906000142],[43.571893068000065,13.819449456000086],[43.58223553200014,13.920166283000128],[43.63382757600016,13.993310206000103],[43.61317221000013,14.122154014000046],[43.50174620900009,14.299320457000135],[43.61074404100003,14.358315983000182],[43.64752631200008,14.405919160999986],[43.49479238800018,14.450705398000082],[43.485288615000115,14.524690562000103],[43.43312761500016,14.59664983100015],[43.46370488600013,14.63494744500008],[43.43078969900017,14.872458397000173],[43.52240157500012,14.974171721000118],[43.61658963400009,14.832978159000106],[43.740875942000116,14.84844649900009]]]]},"properties":{"objectid":829,"eco_name":"Southwest Arabian coastal xeric shrublands","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Afrotropic","eco_biome_":"AF13","nnh":4,"eco_id":107,"shape_leng":65.0688420748,"shape_area":3.46731291067,"nnh_name":"Nature Imperiled","color":"#F2B654","color_bio":"#CC6767","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":41545.296292869534,"percentage":0.15747484988190988}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[58.74650298200015,20.872866042000112],[58.69201502400017,20.878041089000078],[58.39209112200007,20.670027899000104],[58.296852917000194,20.583603051000182],[58.21609379800003,20.62569132300007],[58.08928938900016,20.61552898300016],[58.079781433,20.56183945700019],[58.171466064000185,20.611867269000015],[58.267535019000036,20.58747013600015],[58.20000000000016,20.404166667000027],[58.287500001000126,20.368056234000107],[58.44583333300005,20.35297648100004],[58.525820310000086,20.420825761000117],[58.538889568,20.51250000000016],[58.59166666800019,20.6375],[58.68825683600005,20.720076497000093],[58.629166667000106,20.768056234000085],[58.74650298200015,20.872866042000112]]],[[[59.41426056000006,22.609955485000114],[59.43503489900007,22.490795314000138],[59.605816155000184,22.535041959000125],[59.54412266300017,22.42586426200012],[59.54583137500015,22.281702939000127],[59.439981170000124,22.10912303800012],[59.373341407000055,22.038346393000097],[59.314975406000144,22.038346393000097],[59.283319270000106,21.9600154420001],[59.33700879500003,21.82520706800011],[59.2524725240001,21.583649166000157],[59.32181025300014,21.54201055500016],[59.29951377600014,21.408217229000115],[59.44433797300013,21.613995361000036],[59.52519938200004,21.791467285000067],[59.64903767900017,21.93750000000017],[59.673105877000125,22.068560791000152],[59.81265055400007,22.229317220000098],[59.840972900000054,22.42916666700006],[59.77805582700017,22.530277507000108],[59.52638956800013,22.579166667000095],[59.385032593000176,22.674167079000085],[59.41426056000006,22.609955485000114]]],[[[59.05678004600014,23.057548067000027],[59.16415909900019,22.951697863000106],[59.23475587899998,22.8441389460001],[59.19671455700018,22.93595972700018],[59.05678004600014,23.057548067000027]]],[[[58.90245638300007,23.28579600300003],[58.861627162,23.206655663000106],[58.97817930000008,23.177517627999976],[58.90245638300007,23.28579600300003]]],[[[51.53296187700005,23.31997024000009],[51.56542740300006,23.39695220800013],[51.47900255400009,23.415208445000133],[51.46955967200017,23.347489495000048],[51.53296187700005,23.31997024000009]]],[[[58.63176044700009,23.523396887000104],[58.76333126300011,23.491650819000085],[58.64084359999998,23.554693295000163],[58.63176044700009,23.523396887000104]]],[[[53.419919393999976,23.70083312700018],[53.466953937000085,23.743011331],[53.46497542800006,23.818374518000155],[53.39123102000008,23.81216919600007],[53.344376341999975,23.866847977000077],[53.231421493000084,23.867477502000042],[53.237087222000184,23.80740278900015],[53.388533054000106,23.759918585000037],[53.419919393999976,23.70083312700018]]],[[[53.143917458000146,23.77376814500019],[53.18582586500014,23.812978586000042],[53.106775457000026,23.88681292600006],[52.98770521800003,23.83986831500016],[53.143917458000146,23.77376814500019]]],[[[49.86355036300006,23.733928178000156],[49.770920192000176,23.85803462100006],[49.77163964900012,23.931059571000105],[49.710036089000084,23.990864487000124],[49.701042869000105,23.796071332000054],[49.86355036300006,23.733928178000156]]],[[[53.86877102700009,24.26695635500016],[53.834326993,24.255085304000147],[53.826233092999985,24.229904287000068],[53.80437956800006,24.202564896000126],[53.7515893640001,24.237998185000095],[53.721911737000084,24.227835846000062],[53.71049034700013,24.220821134000175],[53.69250390600007,24.20751116800011],[53.68674824500016,24.20490313400012],[53.66750275300012,24.190873710000176],[53.6236158370001,24.170818828000108],[53.62415543000009,24.171628218000137],[53.6236158370001,24.170818828000108],[53.63800499000007,24.150853879000124],[53.65581156600007,24.152562591000105],[53.732613669000045,24.129809743000123],[53.83126929800005,24.150763947000144],[53.90519357000005,24.14563781100003],[53.951148926000144,24.203644083000142],[53.919133062000014,24.210209134000024],[53.86877102700009,24.26695635500016]]],[[[53.81508150100012,24.264078524000126],[53.857889230000126,24.28800049100016],[53.85375234900005,24.287640762000137],[53.82074723000005,24.27963679600009],[53.813642586000185,24.2805361180001],[53.81508150100012,24.264078524000126],[53.814721772000155,24.265607372000147],[53.81508150100012,24.264078524000126]]],[[[53.33511332500018,24.30238964400013],[53.24832874800006,24.29528499900016],[53.23465905200004,24.293036694000023],[53.23205101800005,24.282604559000106],[53.22890339200006,24.283234084000014],[53.30624508700009,24.291597779000085],[53.30588535800007,24.29204744000009],[53.30624508700009,24.291597779000085],[53.3050759680001,24.29438567699998],[53.31128129100006,24.29402594900006],[53.31568796900012,24.28062605000008],[53.33187576500018,24.296454118000156],[53.33133617200019,24.297173576000034],[53.33511332500018,24.30238964400013]]],[[[54.404856899000094,24.356528831000105],[54.4050367640001,24.357338221000077],[54.40440723800009,24.357068424000033],[54.404856899000094,24.356528831000105]]],[[[54.40440723800009,24.357068424000033],[54.40368778000004,24.357787882000082],[54.40368778000004,24.356888560000073],[54.40440723800009,24.357068424000033]]],[[[52.64542324800016,24.327390796000145],[52.60738192500003,24.265157710999972],[52.64047697600017,24.30167018600008],[52.64542324800016,24.327390796000145]]],[[[55.246802201000094,24.349963780000166],[55.41407610100009,24.393670831000122],[55.415874743000074,24.459681069000055],[55.22512853800015,24.376044119000085],[55.246802201000094,24.349963780000166]]],[[[51.557873098000016,24.41966123800006],[51.53386120000016,24.40976869600007],[51.558322758000145,24.417412933000094],[51.557873098000016,24.41966123800006]]],[[[54.499195781000026,24.477487646000156],[54.50630042500006,24.463098493000018],[54.55144639200006,24.448979137000094],[54.55540340900018,24.44933886600012],[54.55990001900011,24.460220663000143],[54.53274049400005,24.469573612000147],[54.53301029,24.4688541540001],[54.53274049400005,24.469573612000147],[54.499195781000026,24.477487646000156]]],[[[54.45557866200011,24.530187918000024],[54.45234110299998,24.531626833000132],[54.45234110299998,24.527579884000033],[54.45557866200011,24.530187918000024]]],[[[54.44172910300017,24.54106971500005],[54.44091971500018,24.54106971500005],[54.44262842500018,24.539990527999976],[54.44172910300017,24.54106971500005]]],[[[54.50405212000015,24.546645511000065],[54.50099442499999,24.547185105000096],[54.502523273,24.545026732000167],[54.50405212000015,24.546645511000065]]],[[[54.53480893400018,24.53297581600009],[54.529772731000094,24.547994494000022],[54.5306720530001,24.5476347660001],[54.529772731000094,24.547994494000022],[54.53058212100012,24.54448713800008],[54.531571375000055,24.545746189000056],[54.53058212100012,24.54448713800008],[54.51439432400019,24.53261608700012],[54.51511378100014,24.529018799000028],[54.52006005300012,24.5249718500001],[54.53480893400018,24.53297581600009]]],[[[54.51016751000003,24.530367782000155],[54.463402764000136,24.537652291000086],[54.48561601800009,24.527310087000046],[54.4862455440001,24.52569130800009],[54.48678513700008,24.52488191800012],[54.499195781000026,24.503298189000134],[54.50261320499999,24.502578731000085],[54.50378232400004,24.521104765000132],[54.51421445900013,24.51858666300018],[54.51016751000003,24.530367782000155]]],[[[54.49047235699999,24.546375715000124],[54.48885357800009,24.54295829100016],[54.491011951000075,24.546555579000085],[54.49047235699999,24.546375715000124]]],[[[51.72361815,24.601773953000077],[51.71327594700006,24.592510936000053],[51.70761021800013,24.578211715000066],[51.72074032000012,24.56562120600006],[51.72361815,24.601773953000077]]],[[[54.54667998500014,24.616612766000117],[54.532290833000104,24.610857105000036],[54.539755206000166,24.61265574900017],[54.54694978200018,24.61733222400011],[54.54667998500014,24.616612766000117]]],[[[54.60891307100019,24.647999106000157],[54.59353466400012,24.633699885],[54.605495647000055,24.630911987000104],[54.608193613000026,24.64781924100015],[54.60891307100019,24.647999106000157]]],[[[55.36425366000009,24.556268257000056],[55.386017253000034,24.54124957900018],[55.56003606900015,24.638196496000035],[55.47487027200003,24.67461903800006],[55.3543611180001,24.592870664000145],[55.36425366000009,24.556268257000056]]],[[[54.793378891000145,24.851501714000165],[54.708354195000084,24.81420938800011],[54.65612747800009,24.734244090000118],[54.6826212150001,24.659241926000107],[54.7144035500001,24.664276835000067],[54.80991155000004,24.800524125000095],[54.793378891000145,24.851501714000165]]],[[[55.0000282310001,24.976071788000183],[55.11001531699998,24.970495992000167],[55.1116340960001,25.056201383000143],[55.0000282310001,24.976071788000183]]],[[[56.357914586000106,25.54714128800009],[56.353015258000084,25.565890175],[56.307462619000034,25.38166603100018],[56.33830936500004,25.365028573000075],[56.32562892500016,25.21915853700017],[56.26168712700013,25.144964469000058],[56.32311082299998,24.944955246000063],[56.32248129700014,24.94585456900012],[56.32311082299998,24.944955246000063],[56.31070018000014,24.83245005800012],[56.484269333999976,24.486930528000073],[56.51835363900011,24.368309951000185],[56.583374623000054,24.28080591400004],[56.74831028600016,24.15004448900015],[56.7707933370001,24.060831742],[56.877542865,23.992483267000125],[56.9791662560001,23.894187367000143],[57.198331038000106,23.769990992000032],[57.41416832900006,23.654158313000096],[57.51417294100003,23.641657737000173],[57.65662555300008,23.570791159],[57.799977487000035,23.572499871],[57.908345795000116,23.54084373500018],[58.067525795999984,23.581672957000137],[58.19415034000019,23.54830810800007],[58.28830935800005,23.559189905000096],[58.355039053999974,23.508378210000103],[58.458371157000045,23.587518549000094],[58.59830566700015,23.585809838000046],[58.468083835000016,23.620793465000077],[58.31416625999998,23.60583292600012],[58.19583333300011,23.68194478400011],[58.095833333000144,23.71583353699998],[57.862500000000125,23.714166260000184],[57.77083333300004,23.768055216000107],[57.55416666700012,23.791666667000186],[57.4860241610001,23.827187874000174],[57.14578654000019,23.95421346000012],[56.94802653000016,24.098026531000073],[56.730603027000086,24.372269694000124],[56.720916748000036,24.404083253000124],[56.57151692700006,24.52984924300017],[56.52091878300007,24.64574788400006],[56.45452270500016,24.712856038000098],[56.46257120700011,24.779136149000067],[56.404789225000115,24.863121541000112],[56.359266343000115,25.012752885000168],[56.357857717000115,25.189837333000128],[56.38073967200006,25.326025873000106],[56.356900113999984,25.373834037000165],[56.357914586000106,25.54714128800009]]],[[[49.70158246200009,25.702274340000088],[49.763545751000095,25.729343934000042],[49.6690270040001,25.82988813900016],[49.557421138000166,25.80317827400006],[49.58961686700013,25.724667459000102],[49.70158246200009,25.702274340000088]]],[[[50.1301154300001,25.730465073000175],[50.195052389000125,25.74707308400002],[50.10156250000017,25.9125],[50.11583252000014,25.97416687000009],[50.009373529000186,25.982990604000065],[50.01065125700018,26.0750393780001],[49.98235080500018,25.983762141000057],[50.05312745000009,25.802638681000076],[50.1301154300001,25.730465073000175]]],[[[51.884596797000086,23.97773438500019],[51.78367403200008,24.03320470700004],[51.764294767000024,24.159899204000055],[51.78172323100006,24.263440446000118],[51.63693563600009,24.21255855400011],[51.537500000000136,24.24880981400014],[51.49120279900012,24.307870482999988],[51.387541501999976,24.32208479900015],[51.26721221200006,24.289709203000143],[51.294821399000114,24.415974018000156],[51.454166667000095,24.556548056000054],[51.4125,24.618055217000176],[51.50787079300005,24.851245888000108],[51.597916667000106,24.954166667000038],[51.62361043300007,25.1875],[51.5923151990001,25.274180953000155],[51.52901192100012,25.29056660000009],[51.52427313200013,25.452179542000124],[51.476389567000126,25.51250000100009],[51.48958333300004,25.59583333300003],[51.55833333300018,25.654166667000027],[51.52541707400013,25.699582926000176],[51.6,25.79626799700003],[51.58262950000005,25.90842781400005],[51.52083333300004,25.948611450000044],[51.4,25.97083333300003],[51.35833333300013,26.104166667000015],[51.24861043300007,26.15694478400019],[51.16034384800008,26.08720404000013],[51.06347765000004,26.049484089000146],[51.04014945900013,25.977765543000032],[50.89892892100005,25.707879002000027],[50.93095569900015,25.605147560000034],[50.80535685199999,25.52083333300004],[50.75235034000008,25.437693798000055],[50.77798101900004,25.129136401000153],[50.80019505700005,24.986455504000105],[50.86026898600005,24.89585226200012],[50.86863268100012,24.781368565000037],[50.76518511300003,24.723557938000056],[50.71808617099998,24.868243075000066],[50.556018066000036,25.08101806600007],[50.55441487600012,25.18725077300013],[50.487858073000154,25.403808594],[50.40450543100002,25.41059198400012],[50.19035313200004,25.45586948900018],[50.24126562200013,25.347221997000076],[50.23658914700019,25.28274060600006],[50.33146762300004,25.259807894000062],[50.3284099280001,25.192268808000108],[50.40143487800009,24.944325720000165],[50.37382569200008,24.831460803000084],[50.47454976100016,24.60546117300015],[50.554769287,24.559415884000032],[50.54370762600007,24.45509452700003],[50.62986267800005,24.108765607000123],[50.69056691600008,24.018473674000063],[50.715208340000174,23.88492435000012],[50.8544245650001,23.876829279000106],[50.845070444000044,23.818284586000175],[50.776002511000115,23.768462145000115],[50.82141827400005,23.66728841500003],[50.859009935000074,23.490571633000172],[50.90109820700013,23.421683564000034],[51.21694011,23.37195105500018],[51.23447689000011,23.424381530000176],[51.32782651800011,23.46215305600009],[51.38448380700004,23.52717404000009],[51.541055775000075,23.43841095400012],[51.57397096200009,23.35387468200014],[51.72352821800001,23.430047259000105],[51.75734272700004,23.321139359000085],[51.700055913000085,23.232915866000155],[51.773890253000104,23.209083832000033],[51.77056276100012,23.136778340000035],[51.71696316700013,23.09361088100013],[51.746730727,23.024992609000037],[51.833335440000155,23.064292982999973],[51.882258559000036,23.195234273000096],[51.8267703890001,23.247125155000163],[51.877492153,23.299105969000152],[51.940534628000194,23.10782017000014],[52.03901039200014,22.969684303000065],[52.09629720600003,23.00808535500005],[52.07606246000017,23.108449695000104],[52.01733673100017,23.172481425000115],[52.12417619000013,23.205936205000114],[52.17157046200009,23.437241835000123],[52.234523005000085,23.41754668200008],[52.2732837850001,23.558290583000087],[52.35692073500013,23.459814819000144],[52.37283873600012,23.57330926100019],[52.550904501000105,23.745169704000148],[52.59569073900008,23.844274993000056],[52.65675470500008,23.903090655000142],[52.85811291200014,23.865409061000037],[52.97565430300011,23.92314553700004],[53.08051525399998,23.945718520000185],[53.17242596700004,23.916310689000113],[53.272340646000146,23.948146690000158],[53.36874796900008,23.886363265000114],[53.49878993700008,23.970000215000084],[53.57622156499997,23.98843631700015],[53.81076475500004,23.92026770600006],[54.01922760500008,23.93699509600009],[54.201879913000084,23.968021708000094],[54.31510455800009,24.053007640000146],[54.609542597000086,24.03286282700003],[54.71575253000003,24.087451675000125],[54.73481816000009,24.19752869400014],[54.62132371500013,24.288090423000142],[54.65432883700004,24.3726266970001],[54.6269264770001,24.537279088],[54.56259798600013,24.43647856299998],[54.48258576600017,24.425624634000144],[54.41574850900008,24.27140580100007],[54.321489745,24.241955201999986],[54.21258518300016,24.24164591100009],[54.16518757300008,24.29384608400005],[54.12570733600012,24.248340389000134],[54.00370288200014,24.110192784000162],[53.80857937700006,24.04997566300017],[53.707379730000014,24.066509899000096],[53.57766384300015,24.046808642000087],[53.53866922900011,24.0866129960001],[53.410969984000076,24.10915083000009],[53.23921194000013,24.09555742100008],[52.978714872000126,24.155391926000163],[52.86998396300015,24.13196811600011],[52.76442417400017,24.126471690000074],[52.640746772000114,24.16785106500015],[52.45674587300016,24.0919132680001],[52.28286689000015,23.984507952000115],[52.20774109400003,23.96368939000007],[52.0334098030001,23.974022075000164],[51.884596797000086,23.97773438500019]],[[54.255569439000055,24.41390557700015],[54.26177476100014,24.361654966000117],[54.26159489700018,24.36255428800007],[54.255569439000055,24.41390557700015]],[[54.53588812100003,24.542328765000093],[54.537147172000175,24.542148901000132],[54.53696730700011,24.542148901000132],[54.53588812100003,24.542328765000093]],[[52.320767989000046,24.474969544000032],[52.31762036200007,24.46471727300002],[52.318969345000085,24.473800426000082],[52.320767989000046,24.474969544000032]],[[50.970971525000095,25.632724879000136],[50.97097147000005,25.632950637000192],[50.971220453000115,25.633176444000128],[50.97570267300006,25.635434837],[50.97545363100005,25.635434795000037],[50.97570267300006,25.635434837],[50.975951535000036,25.636337910000066],[50.980434772000194,25.633629484000096],[50.97993699600005,25.631823353000186],[50.980434772000194,25.633629484000096],[50.97420943800006,25.630693665000138],[50.97296402100011,25.63182222900008],[50.971967513000095,25.63340234700007],[50.971220453000115,25.633176444000128],[50.97097147000005,25.632950637000192],[50.970971525000095,25.632724879000136]],[[50.98018636700016,25.629791566000165],[50.97993733500016,25.62979153100008],[50.97943935200004,25.629339947],[50.97919032300018,25.62933991200009],[50.97943935200004,25.629339947],[50.97968830500014,25.6297914970001],[50.97993733500016,25.62979153100008],[50.98018636700016,25.629791566000165]]],[[[50.62500391200018,26.12505283100012],[50.46064032500004,26.23100151700004],[50.493739380000136,26.04248974899997],[50.46304552000015,25.95707214300012],[50.536870865000026,25.87721234700018],[50.60893615500004,25.918004176000125],[50.60893689900013,25.917778433000024],[50.60893838800018,25.917326945000127],[50.60893689900013,25.917778433000024],[50.60893615500004,25.918004176000125],[50.60893392100007,25.918681408],[50.611650988000065,25.92749279500015],[50.61548991100017,25.975360946000137],[50.617444794,25.988685020000162],[50.620965975000104,26.058900274000052],[50.62046539700009,26.05912470100003],[50.620965975000104,26.058900274000052],[50.62268508000017,26.06838591899998],[50.62500391200018,26.12505283100012]]],[[[48.849294959000076,27.60730823100016],[48.85435384100015,27.69564615900009],[48.78095296200007,27.70595194500015],[48.805517578000035,27.827815755000074],[48.7625,28.009166463000042],[48.623610433000124,28.07638855000016],[48.61666666700006,28.2083333330001],[48.514583333000076,28.345833334000133],[48.54583333300019,28.408333333000144],[48.4969405810001,28.496917599000028],[48.42416585299998,28.54083353700014],[48.390277100000105,28.61250000100017],[48.3875,28.742499798000097],[48.28125,28.812500001000046],[48.2875,28.883333334000042],[48.21694539400016,28.916944378000096],[48.16845296200012,28.995833334],[48.13499959300003,29.137500001000035],[48.05595614900011,29.33815425100005],[47.98721377900006,29.388686998000026],[47.892432424,29.325374885000144],[47.73296380100004,29.411294342000076],[47.79699707000009,29.46791443900014],[47.79882295800019,29.46975973200017],[47.95653796400012,29.6322217500001],[47.89547399700007,29.677547581000056],[47.71722836700013,29.65038805500012],[47.76237433400013,29.604342766000173],[47.400577075000115,29.60578168100011],[47.27952832800008,29.666845648000162],[47.11962886800006,29.522414528000127],[46.96170791600014,29.43095347600007],[47.018095409000125,29.379242458000192],[46.846055101000104,29.214036998000097],[47.05991388400014,29.165113879000046],[47.115761783000096,29.174017167000045],[47.211719445000085,29.264129236000144],[47.25821439500004,29.260082287000046],[47.59168301000017,28.92355597700015],[47.69024870600009,28.853318926000156],[47.72766050300015,28.74962709400006],[47.79852708000004,28.659245228000145],[47.812286708000045,28.561398989000168],[47.886300912000195,28.48054993700009],[47.93936091300003,28.35491464800009],[48.01796165999997,28.291512443000045],[47.848169657000085,28.055890067000064],[47.86381786100003,27.86955053900016],[47.78386813100013,27.836455488000183],[47.86804467500019,27.747782334000078],[47.95401986200011,27.750480300000163],[47.83207179300007,27.62214704400003],[47.71767802800014,27.626373858000136],[47.633771282,27.544175823000103],[47.671812604000024,27.48949704299997],[47.567940908000026,27.397406465000074],[47.55067392400008,27.336972024000033],[47.60391379000015,27.205131412000128],[47.728919554000186,27.25333507300013],[47.77046823300003,27.355318193000016],[47.99556854100018,27.359455075000028],[48.05393454100005,27.221319209000058],[48.150251933000106,27.115558936000184],[48.22678423900004,27.108274427000083],[48.28631935800007,27.034260223000103],[48.27912478200005,26.82777588100015],[48.321302986000035,26.704478829000152],[48.438124920000064,26.61742445500016],[48.52895644600011,26.51526147000004],[48.56771722600013,26.42577892700018],[48.64847634600005,26.387467807],[48.743804483000076,26.299604043000045],[48.798213467000096,26.184041161000152],[48.91161797700016,26.102832380000052],[48.863863976,26.01406929400008],[48.68939549900011,25.92962295400008],[48.59073987099998,25.950307361000114],[48.52985576800006,25.85021281700017],[48.68750692300017,25.870177766000154],[48.83265750100003,25.92737464900017],[48.90181536600005,25.81684796900015],[48.97457052000016,25.76891410400009],[49.10128499600012,25.76153966300018],[49.129433775999985,25.628080272000147],[49.07178723300012,25.59993149200011],[49.067830216000175,25.514226101000133],[49.15992079400007,25.178509181000038],[49.09966621700005,24.946663957000112],[49.14409272600017,24.730556870000044],[49.066661098000054,24.587654597000153],[48.945162689000085,24.44205435700019],[48.92591719700005,24.35374093200005],[48.84869641100016,24.284521474000144],[48.83745060200005,24.173663820000172],[48.87748358100009,23.964732942000126],[48.91396574800018,23.874738016000038],[49.08212943700016,23.77547685700017],[49.122059336,23.612969363000047],[49.429987204000156,23.30225359600007],[49.527473714000166,23.181294781000133],[49.49177062900003,23.027061050000043],[49.25138184600013,23.085247186000117],[49.184742082000184,23.05871718600008],[49.243287947000056,22.924268540000185],[49.24814428600013,22.849444946000176],[49.33178123700009,22.858977760000073],[49.34239323700007,22.708521181000037],[49.30669015200016,22.614002433999985],[49.355433406000145,22.453203652000184],[49.27422462600015,22.30679402300018],[49.2840272360001,22.173874225000077],[49.33438927100019,22.051476494000156],[49.46919764500018,22.023597511000105],[49.55526276500018,22.095183546000158],[49.62028374900018,22.03447930800013],[49.693308699,22.073509885000192],[49.693308699,22.133224868000184],[49.75823975100019,22.23484825999998],[49.75985853100019,22.37109555],[49.84106731100019,22.307873210000025],[49.915711041,22.6914340620001],[49.829645921,22.560133044000054],[49.782521446000146,22.598444163000124],[49.7971803960001,22.66778189300004],[49.899433312000156,22.824084064000033],[50.07641989100006,22.999631728],[50.16410379000013,22.970313829000133],[50.21608460500005,23.01483027000006],[50.39639867500006,23.02049599900016],[50.47104240500005,23.139206509000132],[50.35089297900004,23.14460244100019],[50.10888541700007,23.10017593200007],[50.052048263000074,23.049454169000057],[49.936755177000066,23.038122711000028],[49.918858668000155,23.089563932000033],[50.058523382000146,23.13075288200008],[50.21770338400012,23.15107756000009],[50.30538728400012,23.276353121000113],[50.246661554000184,23.41233061500003],[50.113471959000094,23.518270752000035],[50.074621247000096,23.646064413999966],[50.016075382,23.651370414000098],[50.055195891000096,23.45217058100002],[50.045483212000136,23.344701597000096],[49.94314036400016,23.329233258000045],[50.004833856000175,23.4490229540001],[49.944759143000056,23.514493599000104],[49.928481413999975,23.595072854000136],[49.855366532000176,23.652539533000095],[49.93010019399998,23.694627805000096],[49.748976734000166,23.742831466000155],[49.67676117399998,23.659104584000147],[49.51047652700004,23.802546450000023],[49.50112357800003,23.976385402],[49.44473608600015,24.10417906500004],[49.53233005300007,24.141950591000125],[49.631345410000165,24.118658150000158],[49.62936690200007,24.239527033000115],[49.582422291000114,24.494934494000063],[49.59357388400008,24.59332032500015],[49.54851785000017,24.8465694140001],[49.598879884000155,24.94495524500013],[49.54635947700018,25.141457113000115],[49.562996935000115,25.262685724000164],[49.62253455000018,25.284177156000055],[49.68557453,25.1948768420001],[49.631435342000145,25.097929926000177],[49.633054122000146,24.978679822000117],[49.67487259700016,24.945944500000166],[49.714083039000116,24.713739547000102],[49.73215941200016,24.450418052000032],[49.72586415700016,24.318307644000186],[49.74861700499997,24.259042321000095],[49.83684049800013,24.254365846000155],[49.81804466600016,24.48180439200013],[49.82658822600007,24.80574019300002],[49.7429512760001,24.868243075000066],[49.76696317500006,25.006828601999985],[49.85095985400005,24.845580159],[49.903300397000066,24.83101114200008],[49.90923592200011,24.988122704000034],[49.89412731200002,25.116455960000167],[49.76903161600006,25.367456743000048],[49.68143764800004,25.41817850600006],[49.60022886700011,25.69579922200012],[49.54393130700004,25.674395357000094],[49.45121120400012,25.70542196800011],[49.323057813,25.70883939099997],[49.28366750600003,25.791487087],[49.269817948000195,25.947159733999968],[49.23015784600017,26.069647396],[49.36874337300014,25.990686921000133],[49.43916028900003,25.899046004000013],[49.532240121000086,25.90785936000009],[49.62478035900011,26.127743600000088],[49.554273511000076,26.239439399000105],[49.62334144400012,26.266329128000166],[49.68539466500016,26.177566042000024],[49.730990293000104,26.225679771000102],[49.82396540200011,26.235136528000112],[49.92713243200012,26.108767905000093],[49.98868284600019,26.12545074400009],[50.04377450100009,26.202117533999967],[50.15520691100005,26.133918077000033],[50.22361043300015,26.22083333300003],[50.22986043300017,26.34652811700016],[50.20365187300007,26.396567327000128],[50.06583252000007,26.46583353700015],[49.99166666700006,26.616666667000175],[50.05711687000013,26.73194478400012],[49.96364490600013,26.832272491000083],[49.775010208000026,26.90378844300011],[49.66666666700013,26.987500000000125],[49.51290469700007,27.17950073300011],[49.48750376000004,27.07638855000016],[49.28004353800003,27.17171020500018],[49.24830322300005,27.214968872000156],[49.233795462000046,27.356563946000165],[49.23352273500012,27.357109400000184],[49.233795462000046,27.356563946000165],[49.12279459600012,27.435538737000172],[49.27194417300018,27.43750000000017],[49.218826388000195,27.530775925],[49.03988637100008,27.560836672999983],[48.9726530800001,27.621015748000048],[48.8481590990001,27.60720031],[48.849294959000076,27.60730823100016]],[[47.31756965000011,29.399747001000037],[47.309745548000194,29.444443306000153],[47.44212575500012,29.505147545000113],[47.62315928100014,29.540221104000125],[47.62333914600015,29.501370392000126],[47.49275758500005,29.476459171000158],[47.31756965000011,29.399747001000037]]]]},"properties":{"objectid":830,"eco_name":"Arabian-Persian Gulf coastal plain desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Palearctic","eco_biome_":"PA13","nnh":2,"eco_id":811,"shape_leng":164.399321276,"shape_area":10.8965957262,"nnh_name":"Nature Could Reach Half Protected","color":"#F6CE5C","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":122019.38270433713,"percentage":0.46250684646932433}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[48.966307768000036,14.307936273000166],[49.00486135000017,14.409835433000012],[48.99273682500018,14.446359612000037],[48.73333336200011,14.462559233000036],[48.588406507,14.432779743000026],[48.49708273600004,14.389103156000147],[48.33428818700003,14.271970493000083],[48.10053861900013,14.257164229000182],[48.17885037400015,14.128719065000155],[48.36617915599999,14.17134693000014],[48.49667078500016,14.099311234000083],[48.630489905,14.08051540300005],[48.663495024000156,14.15506920100006],[48.74012985700017,14.098021030000098],[48.82123611100019,14.154439676000095],[48.86208503500018,14.233375033000016],[48.966307768000036,14.307936273000166]]],[[[58.667103804000135,20.174591384000053],[58.781587500000114,20.276754369000173],[58.825294552000116,20.420825761000117],[58.94580370600005,20.493311117000076],[58.93975769200006,20.571400535000066],[58.85973858600005,20.629198679000183],[58.78968140000012,20.535309457000096],[58.772504348000155,20.445826913000133],[58.68751841400007,20.415249964000168],[58.6305913290002,20.33745860700003],[58.624206142000105,20.224144029000172],[58.667103804000135,20.174591384000053]]],[[[55.99332943000013,25.385802913000134],[55.881723563000094,25.350189760000035],[55.80168390200009,25.356754811000087],[55.88631010800009,25.195506369000043],[55.83208098800003,25.088666909000153],[55.76076474900009,25.068432162000192],[55.77479417300003,24.98668378900004],[55.71894627300003,24.88146310900015],[55.782258546000094,24.600874631000067],[55.74196892000003,24.522183952000148],[55.867154547999974,24.47469974800009],[55.50688613700004,24.110834048000072],[55.58485735700003,24.082595336000054],[55.68342305200002,24.16281486200012],[55.70491684800015,24.054176759000143],[55.77254586600009,24.143839167000067],[55.82623539200006,24.082685268000034],[55.83082193500002,23.985018894000063],[55.76346271400013,23.949675537000076],[55.694182185000045,24.048402360000125],[55.74214878100008,23.931239435000066],[55.68243379800009,23.859473536],[55.80914827600009,23.781412382000042],[55.819310613000084,23.725294687000144],[55.664267492000135,23.759648789000096],[55.49582447300014,23.740493229000037],[55.486831254000094,23.64651407500014],[55.569928610000034,23.624390753],[55.69403505500014,23.552714785999967],[55.65059779800015,23.447853835000103],[55.76427210500003,23.39974010600008],[55.841254071000094,23.30369251100018],[55.765800954000156,23.25737742600012],[55.614714850000155,23.273025630000063],[55.402654710000036,23.2029684420001],[55.275580508000075,23.28102959600011],[55.24230558800008,23.26079485000008],[55.28430392900003,23.14460244100019],[55.419202237000036,23.11258657700006],[55.441505422000034,23.062134610000044],[55.41794318400002,22.951787795000087],[55.32342443700003,22.98047616800011],[55.27827847000003,22.932902032000072],[55.31011447000003,22.871208539000122],[55.266497353000034,22.82048677600011],[55.32747138900004,22.655551113000058],[55.430533692000154,22.62641307900003],[55.38772596299998,22.51678572100002],[55.404453353000065,22.443311110000025],[55.38295955600006,22.318665074000137],[55.444742981000104,22.2076887340001],[55.433861184000136,22.087269512000148],[55.47118304900005,22.014514358000042],[55.6570014400001,22.00583299500005],[55.762508009999976,21.92221041100015],[56.03255444000018,21.85663799500003],[56.06694310700004,21.775162081000133],[56.16500044000014,21.81436199500007],[56.17705544000012,21.743998995000084],[56.12265193900015,21.65046879400012],[56.24846709300016,21.546237369000096],[56.36618834899997,21.493447165000077],[56.23587658400015,21.404144486000177],[56.11221980300013,21.40135658700018],[56.07647343999997,21.323443994000172],[56.131637440000134,21.291194994000136],[56.128137803000186,21.138844482000138],[56.155746990000125,21.050980718000176],[56.342895908,21.075981871000124],[56.3048545850001,20.914823360000128],[56.412413502000106,20.8856853260001],[56.31339814500018,20.807714105],[56.29019563600019,20.742243460000054],[56.20952644800008,20.69323040800009],[56.07885495500011,20.674254713000096],[56.04692902300019,20.73432942600016],[55.96284241100011,20.64988308600016],[55.89557312199997,20.73630793400008],[55.746915188,20.691791493000153],[55.60365318600009,20.493490982000083],[55.683153255000036,20.4073359300001],[55.84970769800009,20.415339896000148],[55.993239496000115,20.358053082000083],[56.13146529500017,20.42775054000009],[56.129576719000056,20.322799657000076],[56.06329668400008,20.260746436000034],[56.1146479730001,20.22297491000012],[55.99629719100005,20.118383756000128],[55.95969478400019,20.116944841000134],[55.86958271500009,19.987352533999967],[55.75644800200007,19.984114975000068],[55.67451976300015,19.85056565100018],[55.496364066000126,19.73563229399997],[55.33232772500003,19.65640202100019],[55.50454789700018,19.835906702000102],[55.58296877999999,19.963520500000072],[55.71462952800016,20.03726490800011],[55.79269068100001,20.152737859000126],[55.60248406700009,20.06451436599997],[55.64969847500004,20.223244707000163],[55.60859945700014,20.250404233000097],[55.46578711600006,20.130074943000125],[55.46245962500018,20.078363925000076],[55.36928986100014,20.041761518000158],[55.13924328100018,20.067661993000115],[55.05416741600004,20.033577687000104],[54.933298533000084,19.84463012600014],[55.016305958000146,19.81621154900006],[55.15021501000018,19.813513583000088],[55.34590748800019,19.872329245],[55.47271189700007,19.996795416000055],[55.47388101500013,19.88518955000012],[55.393121895000036,19.882941244999984],[55.28205562200009,19.795617074000177],[55.152823044000115,19.79498754900004],[55.08987050100012,19.744175853000172],[54.93635622800008,19.691745378000178],[54.852989074,19.61800097000014],[54.794982802000106,19.624116360000073],[54.45719744200011,19.483822121000117],[54.36726523700014,19.407289815000127],[54.35512438900014,19.28372296499998],[54.232906523000054,19.16591177700019],[54.18874981100009,19.167170828],[54.003939130000106,18.94611746900017],[53.97983730000004,18.82371973900007],[53.78018780500014,18.689181161000022],[53.66399539700018,18.549246649999986],[53.48539003900015,18.493308819000106],[53.420908648000136,18.419294615000126],[53.23492884900003,18.406164513000135],[53.0093788800001,18.57874441400014],[52.98024084499997,18.676051059000088],[52.802984470000126,18.748086755000145],[52.73931246900014,18.708426653000117],[52.626537485000085,18.686573127000088],[52.583639823000055,18.77272817900007],[52.706307350000145,18.81337753500003],[52.61088928100014,18.93289743500003],[52.405124397000066,18.853757095000105],[52.42490948200009,18.813737264000054],[52.361327413000026,18.724434585000154],[52.19216493599998,18.66912627900018],[52.1341586640001,18.68837177100005],[52.04746401900013,18.65087004200018],[51.925066289000085,18.72596343200007],[51.884776661000046,18.640797635000126],[51.82164425300016,18.68819190700009],[51.68881438700009,18.67677051700008],[51.64151004800004,18.708426653000117],[51.51605462200013,18.65033044800009],[51.36874567100011,18.654377398000122],[51.21361261800001,18.612289126000064],[51.11585631200012,18.496456446000025],[51.13411254900012,18.36947217300019],[51.089416244,18.18484135700004],[51.01387319200006,18.22477125600011],[50.972864106000145,18.30418139300008],[50.98176739500002,18.47406332700001],[50.95406827600016,18.539444040000035],[50.87321922400008,18.532968921000133],[50.769977053,18.562826413000153],[50.69290515300003,18.505269802000043],[50.565651084000024,18.496546379000108],[50.41231667500011,18.384221055000125],[50.375894132000155,18.21146128999999],[50.22750599500006,18.268298443000106],[49.961936194000145,18.270007155000087],[49.79583141200004,18.15741203500005],[49.794482429000084,18.10039501700004],[49.64510503800017,18.078721356000074],[49.59807049500006,17.839951353],[49.44869310300004,17.922778913],[49.09013340300015,17.760091555000088],[49.00559713100017,17.81566965700017],[48.96503770600009,17.736259521000136],[48.84812584000008,17.66215538400013],[48.73607031300003,17.635625384000036],[48.51843437800011,17.53687982300005],[48.47625617400007,17.48804663599998],[48.4047600720001,17.465923314000065],[48.377150885,17.52321012800013],[48.28380125600012,17.464394466000044],[48.28622942600009,17.279943515000127],[48.18883284800006,17.211055446000046],[48.19126101800009,17.11392866500006],[48.09467383000009,16.94170849300008],[47.99889603200006,16.849887712000168],[47.96319294700015,16.767599745000155],[48.06544586400008,16.769308457000136],[48.05897074500018,16.714000151000164],[47.847899861000144,16.67973598100002],[47.73251684200011,16.71283103200011],[47.63512026500018,16.584227980000037],[47.65301677300016,16.53422567400014],[47.55723897500013,16.35211296000017],[47.42332992300015,16.29545567100007],[47.36721222700015,16.238888314000064],[47.293594921000135,16.291961411000102],[47.22218210800003,16.287903865000146],[47.1621304250001,16.214056525000103],[47.179983628000116,16.140209184000184],[47.12885854600006,16.098010704000103],[47.10938232500018,16.00549865100004],[47.17430306400013,15.982776393000051],[47.28142228299998,16.12154447200004],[47.597888332000025,16.07781973600015],[47.59141321300012,16.00560417500003],[47.63530012900014,15.90137275],[47.690518503000135,15.870975665],[47.77172728300013,15.930240988000094],[47.88126470900016,15.806764071000032],[48.000694676000194,15.825739766000027],[48.06985254199998,15.787338715000033],[48.275167765000106,15.838959800000168],[48.35619668100014,15.820793495000146],[48.409976139000094,15.863151563000145],[48.60809678600003,15.913873327000033],[48.562681023000096,15.834283326000161],[48.487947361000124,15.842647021000175],[48.45224427599999,15.795612478000066],[48.32427074800012,15.734908239000106],[48.249267290000034,15.764675798999974],[48.12740915300009,15.678161018000026],[48.080374610000035,15.693539425000097],[48.02191867700009,15.599830068000074],[47.961754032000044,15.666739628000187],[47.859501115000114,15.55333511800012],[47.833510708000176,15.61835610200012],[47.73764297800005,15.615298407000182],[47.573606637000125,15.564126983000165],[47.50274005900019,15.628878170000121],[47.422610465000105,15.583822136000038],[47.265049243000135,15.389028981000138],[47.15946883400005,15.423922676000018],[47.14004347800005,15.54272311800014],[47.03113557800003,15.504052270000102],[46.989227171000095,15.392446404000168],[47.05784544300013,15.276523793000024],[47.05532734100018,15.166806503000032],[46.989047307000135,14.997374229000172],[46.896057407,14.955555753999988],[46.97708632300004,14.89718975400018],[46.92618469600012,14.795836159000032],[46.834723644,14.796016023000163],[46.89938489899998,14.510841003000053],[46.85199062700008,14.45148574700005],[47.0329342230001,14.26046974500008],[47.06063334200019,14.12907879400018],[47.1917544960001,14.053625674000159],[47.258484192000026,14.08788984400013],[47.197330293,14.179440829000043],[47.33510643000017,14.178361642000027],[47.41172866800008,14.20363259200019],[47.52783114400012,14.161364455000125],[47.60580749200017,14.07588400300017],[47.74986984000003,14.060136581000165],[47.70510519800007,14.211647676000041],[47.60252614500018,14.274837704999982],[47.53380838500004,14.44604189200004],[47.93131057199997,14.347741738000025],[47.97190135200009,14.328527869000027],[47.94856014300018,14.471651672000121],[47.966123521000156,14.552443213000174],[48.092579846000035,14.707000942999969],[48.20849814400003,14.773741781000183],[48.57732909100008,14.910736133],[49.03397693000011,15.040705134000063],[49.30094028200011,15.093395269000041],[49.51521349900014,15.156623431000014],[49.7154360130001,15.188237513000104],[49.85945571700006,15.226876945000072],[50.18964723100004,15.247952999000063],[50.512813394000034,15.283079756000063],[50.83597955800013,15.290105107000045],[50.972973909000075,15.318206513000064],[51.21534853200012,15.297130459000073],[51.27422692400012,15.228769792000094],[51.282537362000085,15.220665074000067],[51.36904093400011,15.230959066000025],[51.48842570000011,15.311574300000132],[51.662166341000045,15.329500327000176],[51.65416666800007,15.398610433000101],[51.822813372000155,15.455309017],[51.88999272900014,15.508818677000022],[52.17384079700008,15.609697899000082],[52.119181435000144,15.701966348000042],[52.06052090999998,15.740628966000145],[51.964530961000094,15.736629385000072],[52.00852635400008,15.833952528000111],[52.12918038800012,15.805955460000177],[52.197096761000125,15.745833333000064],[52.15083414700001,15.987500000000182],[52.2083333330001,16.14583333300004],[52.28462727900006,16.265372721000176],[52.420833333000076,16.3986104330001],[52.6375,16.494775391000132],[52.57868148900013,16.554763969000135],[52.754819944000076,16.590275754],[52.84288917100008,16.644253668000033],[53.09573308300014,16.706754410000087],[53.27755342300003,16.80760788000009],[53.385509251000144,16.83459683700005],[53.58437524800007,16.82465353700013],[53.644035048000035,16.853062965000106],[53.70653579000003,16.98800774900019],[53.81875303099997,17.051928963000137],[53.918186030000186,17.15278243300014],[54.07159694300003,17.24795401800003],[54.24915586900016,17.25647684600017],[54.33154321100017,17.218124118000105],[54.51904543800009,17.218124118000105],[54.69092247800012,17.159884790000092],[54.783253120000154,17.16272573300006],[55.12251589100009,17.296670905000042],[55.244463961000065,17.381566906000046],[55.24743172400002,17.441641618],[55.2410465370001,17.5691654850001],[55.317488911000055,17.64587765500005],[55.34329945400003,17.662229263000086],[55.22381282400016,17.690878864000126],[55.215960603000156,17.730139970000153],[55.349448365000114,17.925731665000058],[55.54361238300015,17.989263274000052],[55.64354974600013,17.992832466000095],[55.71065054600007,18.04922569100006],[55.84984901500013,18.02424135100017],[55.984764454000015,18.027096704000087],[56.3059916900001,18.06421629600004],[56.4225484210001,18.00245157900008],[56.556221517000154,18.13122151699997],[56.547184245000096,18.22781575500005],[56.57941760600016,18.27090647700004],[56.62127278600008,18.478727214000173],[56.59684244800019,18.586490885000103],[56.79583333300013,18.75297648100002],[56.889593780000155,18.814096993000078],[57.06001530700007,18.882715265000172],[57.36479554900018,18.95807845300004],[57.68750000000017,18.932576497000127],[57.84050020500018,18.999668222000082],[57.76388956700015,19.180556234000164],[57.745833333000064,19.305832926],[57.76833292599997,19.37333374000019],[57.702315267000074,19.520833333000155],[57.7029406370001,19.58544551200015],[57.616335925000044,19.516017850000082],[57.54115260200007,19.573034868000036],[57.411920024000096,19.548573308000073],[57.346089650000124,19.65802080100019],[57.31173554800017,19.769446803000164],[57.330531379000035,19.903535720000036],[57.27648212400004,20.026562976000093],[57.30436110700009,20.234576165000192],[57.490610703000186,20.53072291500007],[57.63306331500013,20.653120645000115],[57.74008263900015,20.63468454300005],[57.76805155400018,20.502034541000114],[57.84908047100009,20.521729694000157],[57.9355952520001,20.729922748000092],[58.02067111700006,20.99855024300018],[58.05340644000006,20.99198519200013],[58.00322426900016,20.776957290999974],[58.13965142400002,20.859964716000036],[58.28839929000003,20.83127634200008],[58.31340044300015,20.760319833000096],[58.21609379800003,20.62569132300007],[58.296852917000194,20.583603051000182],[58.39209112200007,20.670027899000104],[58.69201502400017,20.878041089000078],[58.601453294000066,20.91176566500019],[58.51700695400007,21.015187701000116],[58.534813531,21.106109160000187],[58.59974458300019,21.235071941000115],[58.62456587100007,21.470694317000095],[58.537151768000115,21.532567674000177],[58.501628547000166,21.618273065000153],[58.48867831000007,21.794450254000083],[58.4338196650001,21.879166390000023],[58.40441183400003,22.01838144300018],[58.50324732700017,22.18394663200013],[58.55783617500015,22.327388498000175],[58.36798929100007,22.353199041000153],[58.17904172900006,22.45554189],[57.90025189500011,22.53836945],[57.59367301000009,22.496910704000015],[57.35526273500011,22.437285652000128],[57.30148327600011,22.442681584000184],[57.09140164700011,22.54430497600015],[56.935818933000064,22.570924908],[56.78356371000007,22.680282469000133],[56.68382889600002,22.7912588100001],[56.65217276000004,22.883799048000128],[56.710179032000156,22.949449557000094],[56.584453809000195,23.134170306000044],[56.581216250000125,23.22086495100018],[56.45153401100015,23.226350815000046],[56.37832919699997,23.274284680000164],[56.507871580000085,23.320560461000184],[56.57680957200017,23.36961281700019],[56.55990231800013,23.45450881900007],[56.404139739000016,23.569981769000037],[56.25835963600002,23.60496539700017],[56.11581709100005,23.79580153500018],[56.08307359300011,23.8976129670001],[56.08065359900007,24.04104665699998],[55.956367293000085,24.153911574000063],[55.975342988000136,24.271902626000042],[55.92210312300017,24.36156503500007],[56.03271973400018,24.511392087000104],[55.97588258100012,24.53261608700012],[55.973724208000135,24.618591276000018],[55.917426648,24.738021243000105],[55.89179597000009,24.854573381000023],[55.94953244499999,24.905115280000075],[55.92417156300007,24.968607416],[56.01131587000009,25.28615803100007],[55.99332943000013,25.385802913000134]],[[56.51952275800011,20.895308073000024],[56.75595452400006,20.847104410000043],[56.807575609000025,20.75978024000011],[56.76422828600005,20.708788680000055],[56.61152340300015,20.6622937300001],[56.569704928000135,20.676413087000128],[56.433367706000126,20.54286376300007],[56.341546925000046,20.638012036000134],[56.44272065500013,20.698536408],[56.447936723000055,20.766525155000124],[56.57941760600016,20.781363969000097],[56.5820256400001,20.86023451300008],[56.51952275800011,20.895308073000024]],[[57.55904911100015,20.881998106000026],[57.64088741699999,20.754833968000128],[57.55653100900014,20.756812477000153],[57.55904911100015,20.881998106000026]]],[[[56.05917276800011,25.900218368000026],[56.012675725000065,25.881675176000044],[55.89442740500016,25.74428564800013],[55.93972983500004,25.695529425000075],[55.887749022000094,25.597952983000084],[55.99076140300019,25.401591665000183],[56.03253986900012,25.73914654400005],[56.026694277,25.839960546000157],[56.05917276800011,25.900218368000026]]],[[[56.05914637300015,25.9017862500001],[56.09618173100006,26.080159081000147],[56.04423105600017,25.941583937000075],[56.05914637300015,25.9017862500001]]]]},"properties":{"objectid":831,"eco_name":"South Arabian plains and plateau desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Palearctic","eco_biome_":"PA13","nnh":2,"eco_id":840,"shape_leng":120.594027474,"shape_area":31.7647828746,"nnh_name":"Nature Could Reach Half Protected","color":"#FFD380","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":373278.1159255288,"percentage":1.4148873763036227}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[48.28380125600012,17.464394466000044],[47.91112220100018,17.231290192000017],[47.82991342000008,17.218070158000103],[47.65454562100018,17.065545139000164],[47.58466829800011,17.09702141000008],[47.39464154900003,17.0786752410001],[47.4011166680001,17.143606292000015],[47.25335805600008,17.20134276800019],[47.24031788600013,17.312678837000078],[47.27763975100004,17.364389855000127],[47.2532681240001,17.43399738100004],[47.15578161400015,17.516645077000078],[47.10874707100004,17.38354541400014],[47.05676625700005,17.34055782000013],[47.06980642600013,17.209256802000084],[46.94965700100005,17.199364259],[46.811611067,17.15511761500011],[46.90577008500003,17.041803037000022],[46.87492333900019,16.997916121],[46.75315513400011,16.94359706900019],[46.35043872200009,16.834329441000136],[46.20582773700005,16.82821405100003],[45.97038522500003,16.748803914000064],[45.82910173200014,16.562194590000047],[45.74465539200014,16.478377775000183],[45.69600206900003,16.351303570000027],[45.63592735600008,16.263619670000026],[45.59042166100005,16.378553028000056],[45.71057108600013,16.46192018100004],[45.7869235280001,16.539441742000065],[45.76902701900019,16.604642590000026],[45.67163044100005,16.49591455500007],[45.61794091500002,16.58305886100004],[45.53349457500002,16.59564937],[45.37593335300005,16.697812354000064],[45.32855311700001,16.613386451000054],[45.30763611700007,16.546054297000126],[45.21147227300008,16.40150421400017],[45.369412257000135,16.2642577150001],[45.44640419600006,16.23686927800003],[45.48231348000007,16.113012681000157],[45.39497479800019,16.11088246999998],[45.3006368500001,16.23047864300014],[45.167650774000094,16.238390858000116],[45.09248473100013,16.14192269800003],[45.0045374180001,16.215567161000024],[44.93180590300011,16.225000955999974],[44.88402829600017,16.306253318000017],[44.747999061000144,16.279777829000125],[44.65837675000006,16.32335759],[44.44267397000016,16.37193595000008],[44.39032582800013,16.29960033500015],[44.402699026000164,16.249155762000157],[44.801496690000135,16.065699318000043],[44.71298074100014,15.79705817100006],[44.79935517500013,15.842505876000132],[44.943788458000085,15.810859045000086],[45.00327498300015,15.859400049000044],[45.081321304000085,15.81728358900017],[45.007558013000164,15.724960502000101],[44.98556691100015,15.557707900000082],[45.12773970600006,15.543133701000102],[45.25623060000015,15.61451753200015],[45.43627786200011,15.579505390000122],[45.44272085699998,15.493165020000049],[45.36115946600006,15.447327970000174],[45.51964501600014,15.280750606000083],[45.553279660000044,15.146391892000167],[45.49608277800013,15.112217655000109],[45.57621237200004,14.99557558500004],[45.67001166200009,15.000791653000135],[45.715967018000185,14.948630975000185],[45.78629400200009,14.97606029700006],[45.82658363000013,14.859867889000043],[45.98837166600009,14.852133719000165],[46.12740685400007,14.90861114300003],[46.31356651800019,14.833697617000098],[46.258348144000195,14.77874904000015],[46.332632145,14.706353615000069],[46.1247088880001,14.627033411000184],[45.97218386900016,14.524420765000059],[46.134511498999984,14.493304223000166],[46.159242855000116,14.576941173000137],[46.241261025000085,14.584585410000159],[46.36257956900005,14.65617144500004],[46.41608923100006,14.598704766000083],[46.479941096,14.595287343000052],[46.47868204600013,14.370906492000188],[46.54658086000018,14.376392357000157],[46.705491066000036,14.316497508],[46.72374730300004,14.39698683100005],[46.85199062700008,14.45148574700005],[46.89938489899998,14.510841003000053],[46.834723644,14.796016023000163],[46.92618469600012,14.795836159000032],[46.97708632300004,14.89718975400018],[46.896057407,14.955555753999988],[46.989047307000135,14.997374229000172],[47.05532734100018,15.166806503000032],[47.05784544300013,15.276523793000024],[46.989227171000095,15.392446404000168],[47.03113557800003,15.504052270000102],[47.14004347800005,15.54272311800014],[47.15946883400005,15.423922676000018],[47.265049243000135,15.389028981000138],[47.422610465000105,15.583822136000038],[47.50274005900019,15.628878170000121],[47.573606637000125,15.564126983000165],[47.73764297800005,15.615298407000182],[47.833510708000176,15.61835610200012],[47.859501115000114,15.55333511800012],[47.961754032000044,15.666739628000187],[48.02191867700009,15.599830068000074],[48.080374610000035,15.693539425000097],[48.12740915300009,15.678161018000026],[48.249267290000034,15.764675798999974],[48.32427074800012,15.734908239000106],[48.45224427599999,15.795612478000066],[48.487947361000124,15.842647021000175],[48.562681023000096,15.834283326000161],[48.60809678600003,15.913873327000033],[48.409976139000094,15.863151563000145],[48.35619668100014,15.820793495000146],[48.275167765000106,15.838959800000168],[48.06985254199998,15.787338715000033],[48.000694676000194,15.825739766000027],[47.88126470900016,15.806764071000032],[47.77172728300013,15.930240988000094],[47.690518503000135,15.870975665],[47.63530012900014,15.90137275],[47.59141321300012,16.00560417500003],[47.597888332000025,16.07781973600015],[47.28142228299998,16.12154447200004],[47.17430306400013,15.982776393000051],[47.10938232500018,16.00549865100004],[47.12885854600006,16.098010704000103],[47.179983628000116,16.140209184000184],[47.1621304250001,16.214056525000103],[47.22218210800003,16.287903865000146],[47.293594921000135,16.291961411000102],[47.36721222700015,16.238888314000064],[47.42332992300015,16.29545567100007],[47.55723897500013,16.35211296000017],[47.65301677300016,16.53422567400014],[47.63512026500018,16.584227980000037],[47.73251684200011,16.71283103200011],[47.847899861000144,16.67973598100002],[48.05897074500018,16.714000151000164],[48.06544586400008,16.769308457000136],[47.96319294700015,16.767599745000155],[47.99889603200006,16.849887712000168],[48.09467383000009,16.94170849300008],[48.19126101800009,17.11392866500006],[48.18883284800006,17.211055446000046],[48.28622942600009,17.279943515000127],[48.28380125600012,17.464394466000044]],[[47.42646250500013,15.834926485000153],[47.526399867000066,15.836711081000033],[47.57636854800012,15.776034825000181],[47.369355440000106,15.676097463000076],[47.14985016300011,15.679666655000176],[46.9874519490001,15.577944697000191],[46.91071433200011,15.624344186000144],[46.98031356600018,15.711789378000105],[47.187326673000086,15.888464358000078],[47.28904863100007,15.929510060000041],[47.36757084500016,15.925940869000044],[47.42646250500013,15.834926485000153]],[[46.54487220200019,15.436961632000077],[46.36462803100005,15.435177036000027],[46.22542956200016,15.397700525000118],[46.0362624120001,15.317393716000083],[45.87988573700011,15.175010560000032],[45.81900574700012,15.094506988000091],[45.73347610200011,15.124289809000118],[45.82160890400013,15.230776244000026],[45.8074946700001,15.274512598000172],[45.68959689100012,15.224716852000142],[45.59676792200014,15.224083836000148],[45.54244730500005,15.306112172000098],[45.65942930699998,15.313797121000107],[45.85244904900003,15.483361122000133],[46.04518539100019,15.574375505000091],[46.33607449900006,15.61363661200005],[46.682432531000075,15.538200826999969],[46.60197926600017,15.44945380200005],[46.54487220200019,15.436961632000077]]],[[[45.583496881000144,18.158850950000158],[45.458491116,18.295727766000027],[45.40489152300012,18.248063697000077],[45.32368274200019,18.01585874500006],[45.396797624000044,17.953895456000055],[45.469912506000185,17.965406778000045],[45.520274541000106,17.913425964],[45.70049867900008,17.91603399800016],[45.760573392000026,17.96082023600013],[45.840163393000125,17.889863726000044],[46.056180547999986,17.830868200000168],[45.85805990199998,18.014419830000122],[45.869391359000076,18.04544644000009],[45.74924193400017,18.11658281399997],[45.58025932200019,18.10363257700004],[45.583496881000144,18.158850950000158]]],[[[46.218508178000036,18.327473834000045],[46.36797550199998,18.342942173000097],[46.27210777200003,18.407243699000105],[46.218508178000036,18.327473834000045]]],[[[46.317523535000134,18.53422797200011],[46.374450620000175,18.385929767000107],[46.436144113000125,18.28079902000013],[46.658636387000115,18.289342579000106],[46.476703537000105,18.396901496000112],[46.317523535000134,18.53422797200011]]],[[[42.26113144600015,20.408774845000096],[42.332987278000076,20.406166811000105],[42.31742900600011,20.521280033000153],[42.245483242000034,20.456348981000133],[42.26113144600015,20.408774845000096]]],[[[41.928112492000025,20.36938453900018],[41.78179279600005,20.44411820100015],[41.78961689700003,20.39672393000012],[41.83431320300019,20.402209793999987],[41.86210225400009,20.336469353000098],[41.86992635600012,20.331433149000134],[41.928112492000025,20.36938453900018]]],[[[47.39230331200008,20.598262],[47.58880517900019,20.63054766200014],[47.59851785700016,20.68900359500003],[47.46209070300017,20.64952335700019],[47.39230331200008,20.598262]]],[[[47.90392762400006,20.152198265000095],[48.22876274700013,20.30175552200012],[48.45287380100012,20.483418575000087],[48.49505200500016,20.480181016000188],[48.65585078700013,20.63063759400012],[48.540557701000125,20.614809526000045],[48.36680868100012,20.500595626000177],[48.24171298500016,20.438452473000154],[48.118326,20.342674675000126],[47.959145998000054,20.279452335000144],[47.90392762400006,20.152198265000095]]],[[[49.07961133500015,21.003856243000087],[49.16099998000004,21.01797559900001],[49.254439541000124,21.089291837000076],[49.29724727000007,21.17913411],[49.20632581100017,21.194692381000095],[49.06018597900015,21.050710922000064],[49.07961133500015,21.003856243000087]]],[[[42.685611452000046,21.052509566000026],[42.75404986000018,21.102691736000054],[42.67769741800015,21.355850892000092],[42.634350095000116,21.31088479000016],[42.70602606199998,21.23165451699998],[42.576703552000026,21.142082041000037],[42.597927552000044,21.080298617000096],[42.685611452000046,21.052509566000026]]],[[[43.40713752900018,22.460578093000095],[43.391219529000125,22.39582690600014],[43.483669835000114,22.34006893900016],[43.54752170100005,22.384045787000105],[43.40713752900018,22.460578093000095]]],[[[45.249848402,22.81086403000012],[45.21288626600011,22.722100944000147],[45.323053216000176,22.699078300000053],[45.32260355500017,22.797014471000182],[45.249848402,22.81086403000012]]],[[[45.63520789900019,25.01618155200009],[45.52243291400009,24.96653897500005],[45.517666507000115,24.87678663400004],[45.65751108500007,24.761943209000037],[45.895291834000034,24.60681015600011],[45.91444739400009,24.715718056000128],[45.87397790200009,24.837486261000038],[45.735392374000185,24.920943347000048],[45.72235220500011,24.989921348000166],[45.63520789900019,25.01618155200009]]],[[[45.75526739200012,25.215381385000114],[45.69582220400014,25.184174910000138],[45.78035847600012,25.099548705000075],[45.82487491800015,25.166638130000024],[45.75526739200012,25.215381385000114]]],[[[47.82631613200016,25.268531318000157],[47.51829833100015,25.620525967000106],[47.20758256400018,25.86855898700003],[46.92357666200013,26.039969769000038],[46.96017906900005,25.848953765999966],[47.11441280000014,25.75326590100002],[47.42306012600011,25.49767857500018],[47.50759639800009,25.440751489000036],[47.546806840000045,25.473037151000085],[47.82631613200016,25.268531318000157]]],[[[46.35691384000012,26.374427638000157],[46.73265059000016,26.164705737000077],[46.75468398000015,26.202836991000083],[46.56798472500003,26.310845569000094],[46.35691384000012,26.374427638000157]]],[[[45.982885802000055,26.61679492900015],[45.679364611000096,26.7472865580001],[45.70157786600015,26.690809134000176],[45.982885802000055,26.61679492900015]]],[[[45.731165561000125,26.884523102000117],[46.00518898800016,26.75798849000006],[46.00428966600015,26.799087508000127],[45.85113512200007,26.859971610000116],[45.674418340000045,26.956648730000097],[45.477466811000056,27.102248970000062],[45.41415454000014,27.232380870000043],[45.30434731800017,27.253964599000028],[45.229613656000026,27.30198839600007],[45.157398095000076,27.281303989000037],[45.270892538000055,27.175723581000057],[45.54572535500006,26.98857466300018],[45.731165561000125,26.884523102000117]]],[[[40.71213915400011,27.22653527600005],[40.878783529000145,27.145686224000144],[41.08787590500009,27.142268801000114],[41.20020122800008,27.235528497000132],[41.26495241600014,27.321143956000128],[41.280061026000055,27.421688159999974],[41.33276129800004,27.431670635000046],[41.262164517000144,27.440573923000045],[40.916105394000056,27.317726532000165],[40.71213915400011,27.22653527600005]]],[[[40.80719749400009,27.371236194000176],[40.818798749000166,27.311161481000113],[40.911249055000155,27.322762735000026],[41.12142061700018,27.416831821000073],[41.04515810800007,27.46764351700017],[40.87446678300006,27.384815956000068],[40.80719749400009,27.371236194000176]]],[[[46.28613719500004,24.522903409000094],[46.354125942,24.534234867000123],[46.46842977400007,24.485851341000057],[46.56897397900019,24.390343340000072],[46.52580652100005,24.314170762],[46.380655943000136,24.261740287],[46.349449469000035,24.31237211800004],[46.267970890000015,24.306976186000156],[46.193327160000194,24.158138387000122],[46.23496577100008,24.08907045400008],[46.29504048400014,24.082865132000165],[46.465372079000076,24.129809743000123],[46.587859742000035,24.08799126800011],[46.504762385,24.01226835200015],[46.47481496100016,24.0800772340001],[46.411592621000125,24.081426217000057],[46.276874178000014,23.937174961000153],[46.17525078700015,23.732938924000166],[46.141256414000054,23.970899537000093],[46.07821393800015,23.89256858700014],[46.04116187000011,23.699574076000033],[46.12767665100006,23.579334719000087],[46.1263276680001,23.35090691900018],[46.06949051500004,23.430856649000077],[46.029380751000076,23.564945566000176],[46.02533380199998,23.666299160000165],[45.944664615000136,23.69840495699998],[45.91426752900003,23.85677557000008],[46.04412963300007,23.819093976000147],[46.07398712500009,23.926832757000113],[46.049615497000104,24.041676182000117],[46.00312054800008,24.10912533600009],[46.06895092100012,24.20769103200007],[46.04484909100006,24.311652661000153],[45.929286208000065,24.409948560000032],[45.85050559600006,24.506805545000077],[45.79654627400015,24.50401764600008],[45.61686172900011,24.68397198800011],[45.46685481200012,24.798635549000153],[45.371886403000076,24.84998683700013],[45.29940104700012,24.926968805000172],[45.43834630300006,24.95835514400011],[45.54158847400015,25.032998874000157],[45.610746339,25.036056569000095],[45.49887067600008,25.16726765500016],[45.40012511600003,25.14622351900016],[45.29724267400013,25.265023961999987],[45.31657809800015,25.32995501300013],[45.26459728300006,25.40109138700018],[45.20092528200007,25.390299523000067],[45.09255697600014,25.521060948000127],[45.076908772000195,25.572322305],[44.95226273700018,25.716663493000055],[44.91916768500016,25.807405088],[44.76628293800013,26.124326177000057],[44.58497961300009,26.312464349000095],[44.47418313700018,26.49808441900018],[44.37327920300004,26.462021605000075],[44.34027408400004,26.376136350000138],[44.393783746000054,26.221452958000043],[44.51123520500005,26.062542752000127],[44.59586141000011,25.862713393999968],[44.69622575000017,25.67394569600009],[44.88085656600009,25.409365150000042],[45.024028636000025,25.41790871000012],[44.96107609300003,25.545162779000123],[45.019172297000125,25.580146407000086],[45.10092067099998,25.35819372600008],[45.018093110999985,25.23687518200012],[45.02447829700003,25.123740468],[45.114320569000085,24.99369850000005],[45.1137809760001,24.92445070300016],[45.17520467200018,24.86770348200008],[45.23905653700018,24.754298972000186],[45.38888359000015,24.561034664000033],[45.54680454100014,24.416693476000148],[45.73323400200013,24.18583750600004],[45.68997661100008,24.186197235000066],[45.46622528600011,24.364622729000075],[45.37719240400003,24.477487646000156],[45.20200446900009,24.629203275000123],[45.154520264999974,24.716257649000056],[45.03203260200007,24.81887029500018],[44.872672736000084,24.915997076000167],[44.88463371900008,24.99333877200013],[44.827436837000164,25.111599621000096],[44.752613243000155,25.204229791000103],[44.66852663100008,25.381036506000044],[44.592713783000136,25.492552439000065],[44.51024595100006,25.565487457000074],[44.4890219510001,25.673496035000085],[44.42948683100019,25.72574664600012],[44.36563496600019,25.876473021000095],[44.39180523800013,26.018835701000057],[44.32768357600014,26.32649377300004],[44.18900811600008,26.279279365000093],[44.136757505000105,26.164795669000057],[43.996912927000096,26.10831824400009],[43.89573919700007,26.021803463000083],[43.81048346700004,26.01415922600006],[43.82361356900003,26.151755499000103],[43.881889637000086,26.157241364000015],[43.963997741000014,26.296276552000165],[44.13154143700018,26.302212077000036],[44.206454964000045,26.417864893000115],[44.17174113300007,26.55060482700003],[44.32372655900019,26.499163606000025],[44.386499238000056,26.557619539000086],[44.39935954300017,26.685233337000057],[44.38622944100001,26.80844045700013],[44.41788557700005,26.862129983000102],[44.20843347200014,27.01915161300002],[44.09071221700003,27.150542563000045],[43.97649831800004,27.228513785000075],[43.88467753600008,27.241913683000178],[43.780805840000085,27.30675480300016],[43.73862763600005,27.28301270100002],[43.59302739600008,27.426634432000128],[43.583674447000135,27.464405958000043],[43.42782193599999,27.521782704000145],[43.33537163000017,27.489317178000135],[43.22889190000018,27.59103050200008],[43.10649416900003,27.666033960000163],[42.84218342100013,27.74211660500015],[42.65908145100008,27.857679487999974],[42.39755859999997,27.92297026900019],[42.28163598900005,27.967216914000176],[42.21328751400017,27.92198101500003],[42.05887391800019,27.97989735400006],[41.91795015200012,27.970004812000127],[41.79231486200007,27.93367220100015],[41.68304723500006,27.836365556000032],[41.78835784600005,27.805249013000036],[41.600579403000154,27.734562300000107],[41.46954818100005,27.73905891000004],[41.5002150630001,27.664774909000187],[41.65939506500007,27.671609757000112],[41.634573777000185,27.496601687],[41.54985763999997,27.406129889000113],[41.376648214000056,27.299560227000143],[41.400210451000135,27.253964599000028],[41.5018338430001,27.263137684000014],[41.70912757400015,27.17284575000008],[41.7430320150001,27.259180668],[41.81911466100013,27.357296702000042],[41.87703100000016,27.52708870400005],[41.95698073000011,27.45550266900017],[42.02523927300018,27.479244771000083],[42.092688427000155,27.431940432000033],[42.05977323999997,27.37177578700016],[42.09709510500011,27.265925582000136],[42.05824439200012,27.22248832700012],[41.95572167900008,27.261428972000033],[41.873523644000045,27.137772190000135],[41.979823510000074,26.986955883000178],[41.88044842400012,26.773366897000187],[41.75706143900004,26.757358965000094],[41.68970221700005,26.66598784500019],[41.431596791000175,26.671743506000098],[41.33590892500018,26.793331847000047],[41.364147638000134,26.845312661000037],[41.51946055500014,26.875080221000132],[41.637271743000156,27.06897405400008],[41.60345723400019,27.119156224000108],[41.51937062200011,27.007550358000174],[41.44922350300004,26.958807103000083],[41.291482416,26.98470757800004],[41.44625574000008,27.212236056000165],[41.380785095000135,27.227704395000046],[41.245886788000064,27.15755727500016],[41.282129467,27.07104249500003],[41.2106333640001,27.049548698000024],[41.12726621000007,26.90799540800009],[41.05469092100003,26.932367035000027],[40.973662005,26.911862492000125],[40.9603520390001,27.01465500200004],[40.869880241000146,27.123113241000055],[40.78840166300006,27.162143818000118],[40.58227705000013,27.190382530000136],[40.45691155700007,27.100360393000017],[40.36356192900007,27.0794061900001],[40.3580760640001,27.197577106000153],[40.42876277700003,27.177162496],[40.43460837000009,27.30666487100018],[40.50655413400017,27.349472600000183],[40.64774769500008,27.38706426200008],[40.762860917000125,27.49858019500016],[40.930224750000036,27.520793450000156],[41.03598502200015,27.599394197000095],[41.02222539500002,27.634018095000158],[40.887686816999974,27.619808807000084],[40.70368552700012,27.56728840000011],[40.783815121000146,27.675207045000036],[40.612584203000154,27.69571158800011],[40.47246982900003,27.6842901980001],[40.411136065000164,27.640673079000123],[40.05590385700009,27.6087471460001],[40.036208704000046,27.55370863700017],[40.05410521300013,27.396327279000104],[39.984767483000155,27.15072242800011],[39.95248182200004,27.176443038000173],[39.964622669000164,27.352530295000122],[39.75454103900012,27.333914329000095],[39.61082937600003,27.285350938000136],[39.60138649500004,27.214034700000127],[39.390315611000176,27.342997481000054],[39.23770066000009,27.35235043100016],[39.09542791200016,27.286969718000137],[38.986250215000155,27.36197317699998],[38.80359790800003,27.37267510900017],[38.77724777200012,27.294164293999984],[38.65296146500003,27.30216826000003],[38.567076210000096,27.35396921000006],[38.494590853000034,27.452714771000046],[38.509159871000065,27.52439073800008],[38.271738849000144,27.574213179000083],[38.25761949500003,27.486799077000057],[38.17856908600015,27.52879741600003],[38.03314871100008,27.50829287300013],[38.017140777000066,27.439314872000068],[37.88467064100007,27.464405958000043],[37.77720165700015,27.33463378600004],[37.72558057100008,27.317816464000146],[37.5744045350001,27.420788838000192],[37.532675992000065,27.32564056600006],[37.65003751900008,27.360084600000164],[37.625396095000156,27.151351953000074],[37.70651494400005,26.885782153000093],[37.77585267300009,26.705378151000104],[37.74977233400017,26.643774591000067],[37.838895149000166,26.613737233999984],[37.820818776000124,26.54188140300016],[37.94969162500007,26.512473572000147],[38.04169227000011,26.574976454000137],[38.09789989800004,26.539633098000024],[38.21157420500015,26.570839573000057],[38.315266037000185,26.51750977500018],[38.30420437600003,26.43962848600006],[38.36778644400016,26.365524349000054],[38.4585280390001,26.436750656000186],[38.50889007300009,26.42595879100014],[38.50556258200004,26.327303163000067],[38.64621655000019,26.274153230000024],[38.74721041500004,26.28935177200009],[38.879950349000126,26.246454111000162],[38.95099679100019,26.318399874000136],[39.1151230640001,26.35590160400011],[39.37871435600016,26.34852716300003],[39.45974327300013,26.29177994200012],[39.634121817000164,26.276041805999967],[39.68061676700012,26.172619771000143],[39.79186290400003,26.03619261600005],[39.90337883800015,26.070546718000173],[40.039356331000135,26.083496956000033],[40.089628434000076,26.156971567000028],[40.0004156870001,26.18709885600009],[39.91902704100016,26.26686872100015],[39.86416839700007,26.268217704000108],[39.740151887000025,26.486932826000043],[39.7637141240001,26.634511573000168],[39.88260449900014,26.704658693000113],[39.94474765200016,26.700611744000184],[40.12623084100011,26.819142390000025],[40.239815215000135,26.850528729000132],[40.275338436000084,26.924902662000136],[40.41446355700015,26.870133950000024],[40.53587203300003,26.89279686500015],[40.502866914000094,26.971757341000114],[40.60062321900011,27.03354076500011],[40.66879183100008,27.028324697000187],[40.7531482390001,27.104137546000175],[40.911159123000175,27.03650852800007],[40.916285258000016,26.958447375000162],[40.77698027300005,26.915639645000113],[40.67418776400007,26.818602796000107],[40.52490030400003,26.823099407000143],[40.38802348800016,26.773187033],[40.40007440400018,26.660052319999977],[40.463836336999975,26.617604319000122],[40.515637287,26.496195843000066],[40.515727218999984,26.322177027000123],[40.43613721800011,26.204455771000084],[40.31239050400018,26.175587533],[40.420848743000136,26.087364041000114],[40.621577424,25.983492344000013],[40.76870651100006,25.953095259],[40.88390966500009,25.957771734000175],[40.757914646000074,25.793465596000033],[40.65278389900004,25.740405595000027],[40.62076803400004,25.66675112000007],[40.500888404000136,25.59759325400006],[40.495582405000164,25.516204609000056],[40.415902472000084,25.50433355800004],[40.46185782800018,25.358373590000042],[40.546573965,25.209985452000126],[40.60053328800018,24.93901972000009],[40.52840765999997,24.944325720000165],[40.354478776,25.01150507700015],[40.2542043680001,25.07490728100015],[40.21346507900006,25.0559315860001],[40.35951497999997,24.932184872000164],[40.55295915200014,24.806459650000136],[40.60296145800004,24.741438666000136],[40.56572952500011,24.66031981800012],[40.46599471000013,24.798725481000133],[40.28909806300004,24.856551888000183],[40.26652508100017,24.77120622600006],[40.19556857100008,24.73217564900017],[40.13846162200019,24.76356198900004],[40.16400236700002,24.871210838000025],[40.037557687000174,24.93326405900001],[39.793841413,24.694404123000083],[39.83745853200014,24.678396192000093],[39.89582453300011,24.520834970000124],[40.06372795900012,24.495833817000175],[40.147814570000094,24.575154020000127],[40.27875586000005,24.606630292000148],[40.331546064000065,24.545296528000108],[40.45520284500009,24.609957783000084],[40.57355362700014,24.591881410000042],[40.59333871200016,24.449698595000143],[40.429032574000075,24.381619916000034],[40.274888775000136,24.38305883100014],[40.23037233399998,24.315789542],[40.134234807000155,24.352032221000172],[40.060400467000136,24.435129578000044],[39.98359836400016,24.41237673100011],[40.0820741280001,24.195550184000012],[40.052306569000166,24.138623099000142],[40.11247121400004,24.05165865700019],[40.171556672000065,24.038348691000067],[40.28496118200013,24.090419437000037],[40.38739396300019,24.022340758000098],[40.45178542200006,23.903630248000127],[40.36859813200016,23.80641353500016],[40.45790081100006,23.767832619000103],[40.51069101600012,23.89346790900015],[40.78129701900019,23.78995594200012],[40.86133668100007,23.71603167000012],[40.86133668100007,23.652539533000095],[40.96224061500004,23.602537227000028],[41.16269949900004,23.539404820000073],[41.34706051800015,23.58491051500016],[41.351107469000056,23.71234444900017],[41.466760283000156,23.70667872000007],[41.44823425000004,23.609551939000085],[41.469642232000126,23.517392500000028],[41.52782425000004,23.473844243000087],[41.66371181100004,23.309987766000177],[41.81542744000018,23.24118962900019],[41.87775045800004,23.09729810200014],[41.75580238800006,23.006916236],[41.77639686300006,22.810234505000153],[41.69689679400017,22.69395216400011],[41.70723899800004,22.62650301100018],[41.64698442100013,22.56822694200008],[41.55876092900007,22.653033011000105],[41.47881119800007,22.561571959],[41.42044519700016,22.419209279000086],[41.51559347,22.332334769000056],[41.39625343400019,22.259129955000105],[41.28698580600013,22.35301917600009],[41.29292133100017,22.436656127000163],[41.10478315900008,22.468402195000124],[41.047046684,22.526048738000043],[41.02735153100019,22.673357689000056],[41.077084040000045,22.80214060600008],[41.211802483000156,22.811313691000066],[41.16656658400018,22.89108355700006],[41.23464526300012,22.962040066000043],[41.13589970200013,23.035604609000075],[41.19588448200017,23.114744950000045],[41.158292821000146,23.211871730000098],[41.08337929500016,23.22904878200012],[40.95783393700009,23.196043662000022],[40.83705498600017,23.18911888300005],[40.88756183400005,23.384088040000165],[40.730305459000135,23.350457258000176],[40.63623637400019,23.46521075100003],[40.543606202000035,23.479330107000123],[40.442882133000126,23.45450881900007],[40.34908284400012,23.490032039000084],[40.30762409800013,23.45783631000012],[40.33946009800013,23.37446915600009],[40.29134636900005,23.318711190000045],[40.52202247300005,23.235074239000085],[40.45628203200016,23.1385769850001],[40.510870880000084,23.09603905100016],[40.58020861,23.12886430599997],[40.675536747000024,23.10386315300002],[40.77698027300005,23.016089321000038],[40.686058815000024,22.853401963000124],[40.78300573100017,22.832267895000143],[40.80440959600003,22.782265589000076],[40.76726759500002,22.641701553000075],[40.72050284900013,22.554647179000085],[40.83777444400016,22.47038070400015],[40.74676305300011,22.37829012600008],[40.792088884,22.167309174000025],[40.70759876900007,22.081696144000148],[40.77843915500017,21.87119701900008],[40.86799499500012,21.75253552999999],[40.92844518800001,21.620440665000103],[41.049345573000096,21.575662745000102],[41.11203466100005,21.479390217000173],[41.25308511000003,21.401028856000153],[41.35668326400014,21.380402384000035],[41.39571384100003,21.45162869000012],[41.36082014600015,21.627626014000157],[41.34670079,21.79984618600014],[41.384562248000066,21.861809475000143],[41.4639723840001,21.880785170000024],[41.594823742000074,21.99463934100004],[41.553454928000065,22.198155920000033],[41.63385431900019,22.263536633],[41.67099631900004,22.1092129700001],[41.765335202000074,22.03933564700003],[41.81156035500004,21.97197642600014],[41.84429567800004,21.853715577000173],[41.79222493100019,21.58976455600009],[41.732240151000155,21.525283165000076],[41.741053507000174,21.34200133200011],[41.68403648900005,21.290470179000124],[41.799779236,21.146758516000034],[41.901042899000174,21.22922634800011],[41.96651354400012,21.442905266000082],[41.9556317470001,21.541740759],[42.03225398500007,21.56863048800011],[42.125423749000106,21.520336893999968],[42.152043682000055,21.569619742000043],[42.110584936000066,21.67412096400011],[42.168411343000116,21.78698588100019],[42.216165344000046,21.77376584700005],[42.276869582000074,21.860190695000142],[42.28647341700008,21.945300246000045],[42.18118171600008,22.10849351200011],[42.24872080200004,22.17513327600011],[42.32938998900005,22.180169479000142],[42.34701670100014,22.04104435900001],[42.53326629700007,21.891487102000156],[42.615644197000165,21.711982422000176],[42.57868206100005,21.667106252000053],[42.60925901000002,21.456934690000026],[42.73624328300008,21.437059673000192],[42.73120708000016,21.369790384000055],[42.80108440300006,21.212049297000192],[42.900819217000105,21.078499973000135],[42.91628755700009,20.98308190400013],[42.795238809000125,20.928313191000086],[42.73557889600005,21.016885003000027],[42.66456731599999,21.000258955000163],[42.59540945100014,21.02840773500003],[42.500351110000054,20.883257157000173],[42.513481212000045,20.7818136300001],[42.588035010000056,20.764906375000123],[42.67868667200014,20.580545356000073],[42.618701892000104,20.518761930999972],[42.45088839800002,20.434855184000128],[42.57544450100005,20.389079692000053],[42.60782009500008,20.339796844000148],[42.61204690800014,20.18916040100015],[42.54441789100008,20.117304570000158],[42.43739856700006,20.214521283000124],[42.24170609000015,20.23133860500019],[42.20915063200016,20.43818267600011],[42.13531629200014,20.522089423000182],[41.98198188300006,20.476943456000186],[41.97145981500006,20.34789074300005],[41.985669103000134,20.142575519000047],[42.012468900000044,20.18241548600014],[42.19494134300015,20.122700502000043],[42.316169955000134,20.03007033100016],[42.37048900700012,19.94445487300004],[42.45043873700007,19.924399990999973],[42.490368636000085,20.03007033100016],[42.550893009000106,19.989241111000183],[42.60233423000011,19.773493752000036],[42.658811655000136,19.721692802],[42.731117147000134,19.72448070000013],[42.69568385900004,19.868552092000073],[42.7649316560001,19.881322466000086],[42.79236097900019,20.163439791000087],[42.90207826800008,20.142395655000087],[42.89128640400014,19.948232025000095],[42.861878573000126,19.89346331300004],[42.83633782700019,19.728527649000057],[42.972944846000075,19.810186091000105],[43.182576814000186,19.65226514000011],[43.059549559,19.515478257000098],[43.05802071099998,19.39245100100004],[43.13104566100003,19.34056011900003],[43.18932173000013,19.408099204000052],[43.2654943070001,19.600823919000106],[43.29166457900004,19.721782733999987],[43.232758985000146,19.732124938000027],[43.247597798000186,19.866393719000087],[43.280153256000176,19.928087211000104],[43.35956339300009,19.952009178000083],[43.4315091580001,20.021167044000038],[43.50561329400006,19.89490222800015],[43.56272024400016,19.921072499],[43.64599746600004,19.84013351500016],[43.73817797500004,19.547494122000103],[43.85275160300006,19.562692664000167],[43.77496024600009,19.716117005000115],[43.87676350200019,19.70694392000007],[43.90536194300006,19.566559749000135],[43.94816967200006,19.530856664000055],[44.01004302900009,19.716476734000082],[44.07380496200011,19.733743717000152],[44.14404201399998,19.942116635000048],[44.160859336000044,20.09077457000012],[44.13477899700018,20.188530876000016],[44.055368860000044,20.221895724000035],[43.908509570000035,20.152468062000082],[43.85014356900007,19.97710026300018],[43.74465309300007,19.99580616200012],[43.75922211000017,20.06235599300004],[43.68988438100013,20.15165867200011],[43.68556763500004,20.224323893000133],[43.59221800600011,20.20247036799998],[43.53744929400017,20.2368244700001],[43.59230793900019,20.365607387000125],[43.779276992000064,20.340246505000152],[43.84420804400003,20.392856844999983],[44.005096758000036,20.40670640400009],[44.03558377500019,20.45949660800011],[43.95707296100011,20.650422679000144],[43.99124719800005,20.702133697000022],[44.14575072600013,20.682168747000105],[44.141344048000065,20.782353223000086],[44.4155473400001,20.55761264400013],[44.811338972000044,20.575868881000133],[44.9432695160001,20.66148434000013],[45.1064964680001,20.508329796000055],[44.911163719000115,20.494750033000116],[44.82365968400018,20.518671999],[44.42418083100006,20.522988745000134],[44.33991435600012,20.4407907100001],[44.1662552680001,20.40077087900005],[44.131631370000036,20.29465087699998],[44.156632523000155,20.15444657],[44.25636733700003,20.07782433200009],[44.19269533700009,20.046527925000078],[44.195033574000036,19.95335816100004],[44.34791832200017,19.942476364000015],[44.35745113500013,19.897240465000095],[44.28127855800017,19.792559379000068],[44.150427200000195,19.702177513000095],[44.181363879000116,19.607029241000134],[44.131361573,19.499919985000133],[44.14089438700006,19.44515127300002],[44.23613259100017,19.44991768000017],[44.26940750700004,19.114470556000185],[44.34126333900008,19.047381132000112],[44.415907068000195,19.093066692000036],[44.41896476300013,19.19810750700009],[44.28946238900005,19.33210649200015],[44.28037923599999,19.403692526000157],[44.33820564400014,19.432650696],[44.45089069599999,19.418891069000097],[44.5194190360001,19.338221881000152],[44.49657625600014,19.138752252000188],[44.50116279800005,18.998637877000192],[44.54684835800015,18.962035470000103],[44.44783300200015,18.700152890000027],[44.33056140600007,18.678838956999982],[44.22552059200012,18.76868123000014],[44.14332255600016,18.947286588000168],[44.079021030000035,18.838378687999978],[44.12569584400012,18.755371263000143],[44.15996001400009,18.56399553200015],[44.289822118000075,18.401308174000064],[44.35691154200015,18.481257905000064],[44.519688833000146,18.49978393900011],[44.58821717200016,18.584050414000046],[44.63534164800018,18.492679295000016],[44.55826974800016,18.42127312300005],[44.56654351100019,18.359849428000075],[44.52823239200012,18.265600478000067],[44.442616933000124,18.195723154000063],[44.50970635800013,18.051471898000045],[44.42265198400014,18.06145437300006],[44.38550998300019,18.111456679000128],[44.28334699900017,18.152106035000145],[44.198181201000125,17.96792488000017],[44.31842055900012,17.922958778000066],[44.38017701400008,17.718521944000088],[44.35832430400018,17.631486840000093],[44.529581375000134,17.615660434000176],[44.62706788500009,17.632477757000117],[44.774826497000106,17.784103454000046],[44.974565923000114,17.945082100000036],[45.12394331500013,17.948319659000106],[45.263608029000125,18.093560170000046],[45.143368672000065,18.14032491600011],[45.008650229000125,18.086995119000164],[44.94201046500012,18.00380782900004],[44.890029651000134,18.009743355000182],[44.709805513000106,17.929074167000067],[44.789395514000034,18.081599186000176],[44.84083673500004,18.28232786700005],[44.92132605800015,18.454278241999987],[45.04264460200005,18.599428821000117],[45.06854507700018,18.70285085600017],[45.008650229000125,18.749885399000107],[44.917548906000036,18.748536416000093],[44.98247995700018,18.882265604000168],[45.049029789000144,18.942610113],[44.95478083800009,18.990094317000114],[45.027895721000164,19.046032149000155],[45.04084595800009,19.242534016000036],[45.07133297600018,19.24631116800009],[45.11072328100016,18.671734313000115],[45.114050773000145,18.52667366700007],[45.149843790000034,18.48035858200018],[45.27646833400007,18.50886709100007],[45.453544845000124,18.493039023000165],[45.524951016000045,18.720387636000055],[45.45183613300014,18.826777434000064],[45.34949328400006,18.806632620000187],[45.37224613200004,18.960506622000082],[45.35596840300013,19.08398353900003],[45.27799718200009,19.11060347200015],[45.26657579200008,19.203593371000125],[45.31693782600007,19.287859847000163],[45.29580375800009,19.44029493400012],[45.31846667400009,19.561973206000175],[45.43214098100003,19.617641241000115],[45.341219522000074,19.738779921000116],[45.43052220100003,19.81810012500017],[45.56533057600012,19.894362635000164],[45.62216772900018,19.90227666900006],[45.85113512200007,20.088616197000135],[45.95824437700003,20.122700502000043],[46.10123658300017,20.122610570000063],[46.33344153500019,20.181965825000134],[46.53156218200007,20.29851796200012],[46.59487445400009,20.36938453900018],[46.64523648800008,20.341955217000134],[46.801088999,20.530543050000176],[46.86772876300017,20.541874507999978],[46.95055632300017,20.443488676000015],[47.025200053,20.52847460900017],[47.12268656300017,20.595833831],[47.19894907200012,20.748358850000102],[47.32071727700003,20.882267902000137],[47.37917321000009,20.998999904000186],[47.52207548300004,21.133628414000043],[47.61137816300004,21.312503569000057],[47.59833799300003,21.382560757000192],[47.69744328200011,21.541830690999973],[47.78179969000013,21.633291743000086],[47.82244904700002,21.769359169000154],[47.95069237100006,22.02143913800012],[47.96040504900003,22.13502351300008],[48.05942040600013,22.271360735000087],[48.12111389800015,22.27324931100003],[48.22345674700006,22.47703568700001],[48.137211763000096,22.597275044000128],[48.19917505200016,22.745393385000114],[48.19045162800006,22.89692915000012],[48.2447706800001,23.12095027200013],[48.21500312000006,23.225271629000133],[48.237935832000176,23.281569189000038],[48.23856535800002,23.523306955000123],[48.263926239000114,23.88519414600006],[48.24225257800015,24.060382081000057],[48.18262752600003,24.102920014000063],[48.167249119000076,24.23907737200011],[48.11239047400011,24.40239425500016],[48.08900810100016,24.5743446300001],[48.03855613400009,24.662388259000124],[47.917237590000184,24.807358972000145],[47.88908881000009,24.873728939000102],[47.790613046000146,24.95214982200008],[47.797717691000116,25.00233199200011],[47.64618192600017,25.146403384000052],[47.56254497500004,25.162771045000113],[47.49734412700013,25.24523887700019],[47.38151144800014,25.28570836900019],[47.32512395500015,25.34659247100018],[47.287802090000014,25.445517896000126],[47.14678839400017,25.493092033000096],[47.067018528000176,25.593366441000057],[46.94902747600008,25.628529933000152],[46.77590798200009,25.770982545000095],[46.56483709800011,26.098065973000132],[46.4053872990001,26.19896990700005],[46.27858289,26.245914517000074],[46.03279817500004,26.404105265000112],[45.84448013900004,26.486033504000034],[45.89034556300015,26.545478691000085],[45.6692922040001,26.636669946000154],[45.4882586760001,26.76113611800008],[45.47737687800014,26.83524025400004],[45.379530641000144,26.916538967000122],[45.275658945000146,26.91689869600009],[45.24795982500018,26.957278256000166],[45.07735843300003,27.08273368100015],[44.90360941400007,27.339580058000024],[44.8740217190001,27.19874622499998],[44.93526555000011,27.061329817000058],[44.91080399000009,27.004942324000012],[45.00972941500004,26.907725611000103],[44.964673381000125,26.84567239000006],[45.06719609400017,26.802235135000046],[44.99686911000009,26.691168862000097],[45.01449582100008,26.56301547099997],[45.14606663800015,26.388367129000187],[45.01683406000018,26.410220655000046],[44.91467107500006,26.492148894000138],[44.87725927800017,26.436300994000078],[44.91646971900019,26.167763432000072],[44.98301955100004,25.948598649000132],[45.071153111000115,25.733031154000116],[45.28519175800011,25.43454616700012],[45.44733952300004,25.31079945400012],[45.50507599800011,25.34506362400009],[45.75985393399998,25.308281352000165],[45.874967156000025,25.260527351000178],[45.949880682000185,25.164659621000055],[45.938189496000064,25.07949382400011],[45.85814983400019,25.01483256800003],[46.029920345000164,24.8220179220001],[46.071469023000134,24.67515863200009],[46.16104149900008,24.60222361400008],[46.23460604200005,24.59017269800006],[46.28613719500004,24.522903409000094]],[[46.2559199750001,23.389038174000063],[46.3403663150001,23.293530172000033],[46.362669502000074,23.187320239000087],[46.25025424600017,23.167535154000063],[46.21787865200014,23.374199360000148],[46.2559199750001,23.389038174000063]],[[44.40484540700004,23.14487223800006],[44.42022381400017,23.1185221020001],[44.94965470300008,22.933711422000044],[44.660972326000035,22.80852579300017],[44.592713783000136,22.875345421000134],[44.57994341,22.9952250500001],[44.40484540700004,23.14487223800006]],[[46.183614482,23.114205356000184],[46.242699941000126,23.082639152000127],[46.368425163000154,23.072926474000155],[46.179657465000105,22.823904200000072],[45.9558162080001,22.63144928200012],[45.92604864800006,22.7192231140001],[45.96912617400005,22.75393694500019],[45.953657835000115,22.84225037000016],[46.01589092100005,23.01779803300002],[46.183614482,23.114205356000184]],[[45.16459267300013,23.04585688200001],[45.19777765500015,22.942344913],[45.25029806300017,22.929934269000057],[45.36990789500015,22.832807489000174],[45.426834980000194,22.75483626700003],[45.36001535200006,22.704654097000173],[45.353000640000175,22.57587117999998],[45.536822067,22.453113720000033],[45.59231023700016,22.560942434000083],[45.73512257800007,22.579918129000077],[45.640334034000034,22.445919144000186],[45.52360203300009,22.17531314000007],[45.59986454199998,22.17333463200015],[45.73620176400004,22.253014565],[45.75445800200009,22.158675682000137],[45.577921084000195,21.959565781000094],[45.55696688100005,21.83312110200012],[45.30066009700016,21.746246592000148],[45.3493134200001,21.838337170000045],[45.312171420000084,21.870712762999972],[45.42503633600006,22.116767275000143],[45.48349226900012,22.16622998800011],[45.44077447200016,22.242942158000176],[45.354349624000065,22.313538939000125],[45.336543047000134,22.432699110000044],[45.29076755500006,22.535221823000086],[45.31064257200006,22.610944739000047],[45.12178494200015,22.77597033500018],[45.21045809600008,22.873276980000128],[45.13644389200016,22.919232337000096],[45.16459267300013,23.04585688200001]],[[45.57000705000013,21.8105481180001],[45.51793630400016,21.735184931000163],[45.42170884500018,21.669084760000146],[45.349763081000106,21.714140795000162],[45.57000705000013,21.8105481180001]],[[44.39099584800016,21.68743093],[44.55862947700018,21.61656435300017],[44.70917598799997,21.514491301000135],[44.7004525640001,21.452887741000097],[44.60620361300005,21.442005944000073],[44.59559161300007,21.38489899400014],[44.65566632600013,21.26510929700015],[44.576615918000016,21.211060042000156],[44.48308642500018,21.266098552000187],[44.47328381500017,21.49722431700019],[44.41617686500007,21.45387699500003],[44.35061628800008,21.480676792000168],[44.30978706700006,21.586616929000172],[44.39099584800016,21.68743093]],[[44.72347520800008,21.288131942000177],[44.80846114200011,21.22976594100004],[44.90657717700009,21.04720356600012],[44.885982702000035,20.990186548000167],[44.773117785000125,21.14154244800011],[44.66807697000013,21.214207670000178],[44.72347520800008,21.288131942000177]],[[43.439153394000186,21.973505273000058],[43.540596921000144,21.813156152000033],[43.557594108000046,21.740221134000024],[43.629899600000044,21.645522523000068],[43.578098650000186,21.605502692000186],[43.471618920000026,21.728979609000078],[43.33429244400003,21.629604523000182],[43.42134681800019,21.49299750400013],[43.536549972000046,21.388406350000082],[43.80400834800014,21.180033432000187],[43.83566448400012,21.122836550000102],[43.78215482300004,21.058984684000052],[43.639342482000075,21.057905498000082],[43.53825868400003,20.99846031100003],[43.49590061500015,21.049901532000035],[43.40398990200009,21.040458650000176],[43.262076883000134,20.981013463000124],[43.26018830700019,20.845845359],[43.334382376,20.762388274000102],[43.25272393400013,20.670747357000153],[43.10172776300004,20.578207119000126],[43.03167057500008,20.642508645000078],[43.06485555900008,20.740894477000097],[43.044171152000104,20.815268410000044],[42.97771125200006,20.894228886000178],[43.038055762,20.972919565000097],[43.1253799320001,20.985150344000033],[43.19903440800016,21.101072956000053],[43.257040680000046,21.05862495600013],[43.320173088000104,21.080658346000064],[43.27565664600007,21.19253400800011],[43.17286413599999,21.185968957000057],[43.06764345700003,21.274012586000083],[42.976092473000165,21.26313078900006],[42.981038744000045,21.3338175020001],[43.11638671200012,21.3338175020001],[43.173583594000036,21.407292113000096],[43.170885628000065,21.50918530100006],[43.249936036,21.68203499800012],[43.30389535800015,21.655954659000088],[43.39328797000013,21.802004559000125],[43.38762224100003,21.900210526000023],[43.439153394000186,21.973505273000058]],[[42.892363065000154,20.868323534000126],[42.94488599800013,20.832355529000154],[42.96997708300006,20.62335308500019],[42.89704206500005,20.577307797000174],[42.82725467400013,20.82471129100003],[42.74370765600008,20.803487291000067],[42.67796721400009,20.867069360000073],[42.784626809000144,20.898365767000087],[42.892363065000154,20.868323534000126]],[[43.60354946400014,22.733792130999973],[43.70094604200011,22.580367790000082],[43.77001397500004,22.54637341600005],[43.85652875599999,22.61589101100003],[43.97478960500018,22.613013180000053],[43.95563404500007,22.509411280000165],[43.858057603000134,22.483241009000096],[43.72199017800011,22.398255075000066],[43.763179127000114,22.274508362],[43.751398009000184,22.211735682999972],[43.851402620000044,21.989603138000177],[43.82352363700005,21.863068526000177],[43.74654167000011,21.88204422100017],[43.70939966900016,21.935823679000123],[43.59869312500018,21.921434527000088],[43.47899336100011,21.97773208700005],[43.48951542900011,22.093564766000156],[43.44436946200011,22.171895716000108],[43.40767712300004,22.314528193000058],[43.2582097990001,22.385035041000094],[43.19813508600015,22.695031351000125],[43.272688883000114,22.72965524900019],[43.35191915600012,22.692063588000167],[43.44113190300004,22.70033735100003],[43.55786390400016,22.6542021300001],[43.60354946400014,22.733792130999973]],[[43.98818950300006,21.319608213000095],[44.149168150000094,21.150175940000167],[44.03126702900005,21.169421432000036],[43.98818950300006,21.319608213000095]],[[43.85526970500018,23.302253597000174],[44.120209980000084,23.265651189000152],[44.0845968270001,23.187859832000072],[43.85526970500018,23.302253597000174]],[[43.472877972000106,23.738154993000023],[43.616769499000156,23.677540686000043],[43.60570783800017,23.619084753000095],[43.738267908000125,23.434903598000176],[43.591768345000105,23.42537078400011],[43.49868851300005,23.55226512500019],[43.50453410700004,23.65622675300017],[43.472877972000106,23.738154993000023]],[[42.43038385500017,23.816665806000174],[42.58353840000018,23.734018110000136],[42.72158433400017,23.579604515000028],[42.71726758800003,23.46512081900005],[42.65089762100007,23.459095361000152],[42.64936877300005,23.61962434600008],[42.528769687000135,23.734647636000147],[42.46239972000018,23.727003398000022],[42.43038385500017,23.816665806000174]],[[41.389688383000134,23.97647533500009],[41.39679302900015,23.868017095000027],[41.331142518000036,23.763785670000175],[41.32116004400012,23.947966825000094],[41.389688383000134,23.97647533500009]],[[41.08553766700004,24.11497092900015],[41.11125827800004,24.030794386000025],[41.03418637900012,23.981961199000125],[41.078433024000105,23.875121739000065],[40.87995264799997,23.778084891000162],[40.71465725600012,23.872243909000133],[40.84442942700002,23.87539153600011],[40.88589260000015,23.981336865000173],[40.976449903000116,24.079897369000037],[41.08553766700004,24.11497092900015]],[[45.072771891000116,24.379191746000174],[45.04075602600011,24.322174729000153],[45.09165765400019,24.276129439999977],[45.03976677200012,24.223159371000122],[44.92492334700012,24.30553727200015],[44.94668694000006,24.350053712000147],[45.072771891000116,24.379191746000174]],[[42.488929720000044,25.395605523000143],[42.53335622900005,25.346952200000032],[42.51536978800016,25.24757711400008],[42.54531721300009,25.127067959999977],[42.49423572000018,25.10080775600005],[42.540191077000145,24.983536161000018],[42.51123290700008,24.951700161000076],[42.50709602600017,24.785145718000024],[42.61249656900014,24.675698225000076],[42.66816460400014,24.568499037000095],[42.810347420000085,24.58594588500017],[42.87240064100013,24.62551605500005],[42.95612752300008,24.599255851000066],[42.929057930000056,24.526140969000096],[42.84991759000013,24.46076025600013],[42.903247387000135,24.35041344100017],[42.817182267000135,24.354999983000084],[42.72176419800013,24.462199171000066],[42.61249656900014,24.473710493],[42.49423572000018,24.59880619000012],[42.44036633000002,24.821568261000152],[42.43757843100019,25.032279416000108],[42.4040337190001,25.196045961000095],[42.36032666800014,25.292723081000076],[42.38838551600003,25.464763388],[42.449089754000056,25.50990935500016],[42.51626911100004,25.48230016800011],[42.58299880600009,25.534280982000098],[42.67913633300009,25.559102271000086],[42.65251639999997,25.35108908100011],[42.589024264000045,25.429779761000134],[42.488929720000044,25.395605523000143]],[[44.371390627000096,25.00871717900003],[44.37750601699997,24.92561982100011],[44.51528215500002,24.695843039000124],[44.667717241000105,24.603302800000165],[44.819253006000054,24.614544326000043],[44.81376714200019,24.50275859600015],[44.683815106000054,24.49988076500017],[44.60539422400012,24.55950581700006],[44.44450551000017,24.61094703800012],[44.30016432100001,24.63136164800011],[44.22435147300013,24.74593527700017],[44.25447876100009,24.856821685000057],[44.230646727000135,24.92067355],[44.371390627000096,25.00871717900003]],[[40.003563314000075,24.724891141000114],[40.09169687400015,24.74188832700014],[40.08279358600015,24.661848665000093],[39.93341619400013,24.617152359999977],[40.003563314000075,24.724891141000114]],[[44.104741641000146,26.04914285400008],[44.22471120100005,25.811721833000036],[44.290901304000045,25.602809321999985],[44.37894493200014,25.45954732000007],[44.34818811800011,25.425822744000186],[44.18226320100007,25.55883247400004],[44.10240340300015,25.57223237300002],[44.01768726600011,25.632307085000036],[43.96723530000014,25.71882186600004],[44.008154453000145,25.876383089000115],[43.908419638000055,25.98726949700017],[43.93117248600004,26.014518955000085],[44.104741641000146,26.04914285400008]],[[43.98944855400009,23.772239298000102],[43.84438790799999,23.666029364000053],[43.75364631400015,23.677450755000166],[43.75103828000016,23.7811425860001],[43.85499990799997,23.758299807000014],[43.98944855400009,23.772239298000102]],[[40.90000752900016,26.841175780000185],[40.95018969800009,26.582260963000067],[40.8291409520001,26.43306343500018],[40.77131454500005,26.473353063000047],[40.77662054500013,26.57920326800007],[40.70125735700009,26.681995777000054],[40.80710756200011,26.74593757500014],[40.90000752900016,26.841175780000185]],[[42.27740917500006,27.280584531000045],[42.48524249999997,27.20198378499998],[42.44944948300008,27.14038022400007],[42.48443311000017,27.061060020000184],[42.32057663300003,26.969688900000108],[42.22650754700004,26.983538461000023],[42.25393687000013,27.07949612200008],[42.16139663100006,27.086330969000073],[42.122905647000096,26.995769239000026],[42.019753409000145,26.889829102000192],[41.97865439100008,26.972117070000138],[42.14946885400019,27.181683315000043],[42.27740917500006,27.280584531000045]],[[45.2543450120001,20.517053219],[45.13941165500012,20.392676980000147],[44.87600022700019,20.41893718400007],[44.816105379000135,20.474335422000024],[45.10910450200009,20.44465779500007],[45.2543450120001,20.517053219]],[[44.91251270200007,19.637696123000183],[44.93841317700003,19.623217038000064],[44.94398897400015,19.615303004000054],[44.94704666900009,19.612515105],[44.954151313000125,19.605590326000026],[44.95621975400013,19.604151410000156],[45.04840026300013,19.555318223000086],[45.05217741600012,19.549022969000077],[45.048939857000164,19.529147952000073],[45.04165534800006,19.518805747999977],[45.0445331790001,19.488588528000037],[45.04732107700016,19.483912053000097],[45.04732107700016,19.465835680000055],[45.04732107700016,19.483912053000097],[45.0445331790001,19.488588528000037],[45.04165534800006,19.518805747999977],[45.048939857000164,19.529147952000073],[45.05217741600012,19.549022969000077],[45.04840026300013,19.555318223000086],[44.95621975400013,19.604151410000156],[44.954151313000125,19.605590326000026],[44.94704666900009,19.612515105],[44.94398897400015,19.615303004000054],[44.93841317700003,19.623217038000064],[44.91251270200007,19.637696123000183]]],[[[44.009233639000115,27.374024092000127],[43.880001061000144,27.452804703000027],[43.74663160200009,27.569536705000075],[43.7273861110001,27.652634062000118],[43.822804179,27.665404435000028],[43.52422925900015,27.950309659000084],[43.34418498600019,28.053641762000098],[43.15352871200014,28.137818306000156],[43.125559797000165,28.11470572900015],[43.237615324000046,28.00031196500015],[43.430070242000056,27.841581624000128],[43.503904582000075,27.75497691099997],[43.524858785,27.64714819700015],[43.83728326400012,27.43670683900018],[44.009233639000115,27.374024092000127]]],[[[43.42980044500018,27.603800875000047],[43.4586686830001,27.671969486000137],[43.258839324,27.889425557000095],[43.16396084799999,27.93619030300016],[43.14840257700013,28.024054067000122],[43.017731083000115,28.148430305999966],[43.01125596500009,28.235124951000103],[42.87114159000009,28.180266306000135],[42.96745898100011,27.895720811000103],[43.23788512100009,27.719004029000075],[43.322871054000075,27.646878401000038],[43.42980044500018,27.603800875000047]]],[[[43.295261867000136,28.749267365000094],[43.27709556200011,28.71734143200007],[43.06773338900018,28.73685672100015],[43.04561006700004,28.690721500000166],[42.90468630200007,28.718240754000192],[42.805760877000125,28.696387228],[42.79586833500014,28.65079160100015],[42.62751524800012,28.613289871000177],[42.50880473800015,28.520569768000087],[42.67059277400011,28.42254366500015],[42.70872402800012,28.43216641099997],[42.97267504900003,28.267500545000132],[43.10811294900003,28.22271430700016],[43.60615749800007,27.92773667600011],[43.908509570000035,27.720442944000183],[44.15744191200008,27.51971426300014],[44.21661730300019,27.441832974000192],[44.529491443000154,27.224556768000127],[44.624639715000114,27.21439442900015],[44.77761439500006,27.34038944700012],[44.83175358300008,27.440573923000045],[44.81565571800013,27.56728840000011],[44.70054249600008,27.753897724000126],[44.651349580000044,27.75740508000007],[44.5828212400001,27.845448708],[44.42193252600015,27.980616812000108],[44.409971543000154,28.03133857500012],[44.0818089280001,28.329733630000135],[43.926855740000065,28.42964831000012],[43.62953987100019,28.516522818999988],[43.61335207500019,28.574798888000146],[43.5241393280001,28.654478821000055],[43.295261867000136,28.749267365000094]],[[44.34477069500002,27.93052457400006],[44.614117647000114,27.766038572000127],[44.45187995000015,27.731324741000037],[44.444145781000145,27.825753556000052],[44.34477069500002,27.93052457400006]]],[[[47.31756965000011,29.399747001000037],[47.49275758500005,29.476459171000158],[47.62333914600015,29.501370392000126],[47.62315928100014,29.540221104000125],[47.44212575500012,29.505147545000113],[47.309745548000194,29.444443306000153],[47.31756965000011,29.399747001000037]]],[[[47.703113464000126,30.540220170000055],[47.596954481000125,30.69006697400016],[47.50582458600002,30.74071311500012],[47.24415548200005,30.847402170000123],[46.91518757500012,30.845695278999983],[46.720779557000185,30.807355783000162],[46.5199474800001,30.794982921000155],[46.39075926400005,30.828694889000076],[46.38164328400006,30.759539800000084],[46.461605255000165,30.74177047300003],[46.5104709040001,30.659587336000186],[46.743693321000194,30.570740701000148],[46.810328297000126,30.43080725100009],[46.810328297000126,30.357508778000124],[46.617086866000136,30.350845280000158],[46.523797900000034,30.31308546000014],[46.44605709400008,30.013228068000046],[46.40163377700003,29.899948608000045],[46.3349988010001,29.857746457000076],[46.0462472370001,29.746688163000158],[46.021814413000016,29.684495519000052],[46.04846840300007,29.564552562000188],[46.05735306700012,29.315781984000182],[46.03514140800007,29.251368174000163],[45.910756119000155,29.231377681000026],[45.81968831900008,29.155858040999988],[45.82550444200018,29.00368557200011],[45.748792273,28.73101112700016],[45.66533518700015,28.60267787099997],[45.64896752600009,28.533520006000117],[45.67828542500018,28.444307259000027],[45.58871294900007,28.45024278400001],[45.485111049000125,28.29169230800011],[45.551750813000126,28.23404576500019],[45.506424982,28.121540577000076],[45.43816643800005,28.067401389000054],[45.38348765800009,27.935920506000116],[45.23204182500007,27.842121217000113],[45.17601406199998,27.704524944000127],[45.39436945500012,27.54489528100015],[45.222149283000135,27.55703612800005],[45.40830894600015,27.408018465000055],[45.602112847000114,27.197397242000193],[45.71452810300008,27.141459411000085],[45.68197264500009,27.095144325000092],[46.06139661600008,26.88236472900013],[46.148810719000096,26.800166694000097],[46.36986407800015,26.67615018400005],[46.40898458700019,26.73379672700014],[46.48290885900019,26.735145710000097],[46.693530082,26.626777404000165],[46.88139845800015,26.449880757000074],[47.02250208700008,26.342321841000114],[46.98482049300014,26.272444518000043],[47.180602903000135,26.113264516000072],[47.51587016100012,25.887894411000104],[47.681435351000175,25.760910138000042],[47.93864145500004,25.58392355900014],[47.98243843900019,25.49453094800009],[48.09026715200014,25.43823338800013],[48.064816338000014,25.389130404000014],[47.92326304800008,25.321141657000055],[47.83072281000011,25.363859455000124],[47.76120521500013,25.485267931000067],[47.78108023300001,25.559192203000066],[47.748254978000034,25.680061085999967],[47.51173328100015,25.864242241000113],[47.28114710700015,26.01011227700019],[47.00307673100008,26.19896990700005],[46.89686679700003,26.154183669000076],[46.88040920400016,26.101933058000043],[47.10910680000006,25.963887124000053],[47.35192375200006,25.7679248500001],[47.58385890800008,25.59273691500016],[47.628735078000034,25.52528776200012],[47.92704020100007,25.23543626600008],[48.01607308300015,25.130125655000143],[48.124891051000134,25.03641629800012],[48.21491318800008,25.027962670000193],[48.35313898600003,24.829212498000118],[48.383176343000116,24.702318157000093],[48.435337021000066,24.61112690200008],[48.42076800400014,24.480275544000108],[48.471040106000146,24.456263646000025],[48.520592751000095,24.244113575000142],[48.472479022000186,24.192762286000118],[48.32184257900019,24.159487370000136],[48.34477529100019,24.108226014000138],[48.518074649000084,24.120097065000095],[48.55746495400007,24.089610047],[48.57113465000009,23.859563467999976],[48.59910356600005,23.762436687000047],[48.59433715900008,23.656496550000043],[48.504584819,23.387779123000087],[48.55602604000006,23.388678445000096],[48.52589875100017,23.11627379700019],[48.49361309,22.958712575000163],[48.42985115700003,22.819587454000157],[48.44747786800019,22.701596402],[48.392259495000076,22.65087463800012],[48.37930925800015,22.521821924999983],[48.29000657900008,22.44394063500016],[48.31608691800011,22.228912734000062],[48.24791830700002,22.00785937500018],[48.12282261000013,21.852366593000113],[48.04008498200011,21.618542861000094],[48.01733213400013,21.473931876],[47.9021289800001,21.355401231000087],[47.83881670800008,21.203415805000134],[47.60004670500018,20.98146312400013],[47.64393362100003,20.935417835000123],[47.790073453,21.057905498000082],[47.84043548800008,20.987578514000177],[47.71704850300017,20.946929157000113],[47.60013663700016,20.823811969000076],[47.82262891099998,20.766525155000124],[48.01751199900019,20.83703200300016],[48.12471118600007,20.840449427000124],[47.89088745400005,20.66616081500007],[47.90707525099998,20.611571966000042],[47.74960396100016,20.575958813000113],[47.57585494200009,20.510757965000153],[47.52873046700017,20.546011389000057],[47.39230331200008,20.509498914000176],[47.33060982000006,20.541244982000137],[47.20713290300017,20.49906677900003],[47.19256388600007,20.44960406600012],[47.10649876600007,20.394835353000133],[47.044805274000055,20.264253792000147],[47.09840486700017,20.23529562200008],[47.30623819200008,20.272527555000067],[47.34203121000007,20.239972097000077],[47.44914046499997,20.318392979000123],[47.570998603000135,20.28394894500019],[47.70095063800005,20.2880858260001],[47.83081274200009,20.380985794000026],[47.97047745600008,20.527845084000035],[48.098810712000045,20.60689549200015],[48.150701594000054,20.582523864000166],[48.27903485000007,20.71823156100004],[48.40889695300018,20.78819881600009],[48.54532410700017,20.911945530000025],[48.42400556300004,20.94072383500003],[48.31635671400005,20.849532580000186],[48.25951956100016,20.872285428],[48.45107515700016,21.002327395000066],[48.52742759900019,20.969502141000135],[48.7336421440001,21.133718346000023],[48.80837580600007,21.07796038000015],[48.96269946900014,21.18848705900001],[49.102364183000134,21.255666416000167],[49.22575116700017,21.38975533300004],[49.37027222000006,21.457024622000176],[49.56677408700017,21.686801405000097],[49.46605001800009,21.729519202000063],[49.31010757500019,21.57915255600011],[49.28096954100016,21.463409809000098],[49.18833937000011,21.439038181000114],[49.06009604700017,21.27266360300007],[49.01953662200009,21.265289161999988],[49.30848879600012,21.63419106500004],[49.16720530200007,21.548575606000043],[49.06171482600007,21.419702757000096],[48.9902187240001,21.472582893000038],[49.05838733500019,21.635450116000015],[49.011262859,21.672232388000168],[48.92034140100003,21.614226116000054],[48.82294482300017,21.595879945999968],[49.00316896100003,21.794450254000083],[48.96413838400014,21.88051537300015],[48.91215757000009,21.886540831000104],[48.80828587400009,21.763783372000034],[48.69452163500006,21.786266422999972],[48.61664034600011,21.771517542000083],[48.947590859000115,22.096352664999984],[49.09561926700002,22.31947446400011],[49.11342584400012,22.39654636400013],[49.24661543900004,22.488097348],[49.33178123700009,22.858977760000073],[49.24814428600013,22.849444946000176],[49.243287947000056,22.924268540000185],[49.184742082000184,23.05871718600008],[49.25138184600013,23.085247186000117],[49.49177062900003,23.027061050000043],[49.527473714000166,23.181294781000133],[49.429987204000156,23.30225359600007],[49.122059336,23.612969363000047],[49.08212943700016,23.77547685700017],[48.91396574800018,23.874738016000038],[48.87748358100009,23.964732942000126],[48.83745060200005,24.173663820000172],[48.84869641100016,24.284521474000144],[48.92591719700005,24.35374093200005],[48.945162689000085,24.44205435700019],[49.066661098000054,24.587654597000153],[49.14409272600017,24.730556870000044],[49.09966621700005,24.946663957000112],[49.15992079400007,25.178509181000038],[49.067830216000175,25.514226101000133],[49.07178723300012,25.59993149200011],[49.129433775999985,25.628080272000147],[49.10128499600012,25.76153966300018],[48.97457052000016,25.76891410400009],[48.90181536600005,25.81684796900015],[48.83265750100003,25.92737464900017],[48.68750692300017,25.870177766000154],[48.52985576800006,25.85021281700017],[48.59073987099998,25.950307361000114],[48.68939549900011,25.92962295400008],[48.863863976,26.01406929400008],[48.91161797700016,26.102832380000052],[48.798213467000096,26.184041161000152],[48.743804483000076,26.299604043000045],[48.64847634600005,26.387467807],[48.56771722600013,26.42577892700018],[48.52895644600011,26.51526147000004],[48.438124920000064,26.61742445500016],[48.321302986000035,26.704478829000152],[48.27912478200005,26.82777588100015],[48.28631935800007,27.034260223000103],[48.22678423900004,27.108274427000083],[48.150251933000106,27.115558936000184],[48.05393454100005,27.221319209000058],[47.99556854100018,27.359455075000028],[47.77046823300003,27.355318193000016],[47.728919554000186,27.25333507300013],[47.60391379000015,27.205131412000128],[47.55067392400008,27.336972024000033],[47.567940908000026,27.397406465000074],[47.671812604000024,27.48949704299997],[47.633771282,27.544175823000103],[47.71767802800014,27.626373858000136],[47.83207179300007,27.62214704400003],[47.95401986200011,27.750480300000163],[47.86804467500019,27.747782334000078],[47.78386813100013,27.836455488000183],[47.86381786100003,27.86955053900016],[47.848169657000085,28.055890067000064],[48.01796165999997,28.291512443000045],[47.93936091300003,28.35491464800009],[47.886300912000195,28.48054993700009],[47.812286708000045,28.561398989000168],[47.79852708000004,28.659245228000145],[47.72766050300015,28.74962709400006],[47.69024870600009,28.853318926000156],[47.59168301000017,28.92355597700015],[47.25821439500004,29.260082287000046],[47.211719445000085,29.264129236000144],[47.115761783000096,29.174017167000045],[47.05991388400014,29.165113879000046],[46.846055101000104,29.214036998000097],[47.018095409000125,29.379242458000192],[46.96170791600014,29.43095347600007],[47.11962886800006,29.522414528000127],[47.27952832800008,29.666845648000162],[47.400577075000115,29.60578168100011],[47.76237433400013,29.604342766000173],[47.71722836700013,29.65038805500012],[47.89547399700007,29.677547581000056],[47.95653796400012,29.6322217500001],[47.79882295800019,29.46975973200017],[47.99988528600005,29.62349832600006],[48.22470857000019,29.592878529000075],[48.356376535000095,29.711484806000044],[48.34777050000008,29.780371310000135],[48.18853747300005,29.98007467900004],[48.13276646900016,29.96647235900008],[48.13999150200016,29.870364787000142],[48.05081961900004,29.78092837100013],[48.01348063200015,29.838480632000028],[47.99790677800013,29.98700429700017],[47.94420572500013,30.0122585740001],[47.93683646400018,30.100353145999975],[47.861225495000156,30.113917748],[47.64207862500018,30.367485406000128],[47.703113464000126,30.540220170000055]],[[46.728333846000055,26.647911472000146],[46.946329509000066,26.590264929000057],[47.05586693500004,26.477579876000107],[47.02987652800016,26.451949198000023],[46.728333846000055,26.647911472000146]],[[47.584308569000086,25.988528547999977],[47.66479789200014,25.96037976800011],[47.85671321700016,25.809563461000153],[47.79528952100014,25.800030647000142],[47.584308569000086,25.988528547999977]],[[48.64299048200019,24.89441334600008],[48.69838871999997,24.84989690500015],[48.705493364,24.708343615000047],[48.763949297000124,24.652855445000114],[48.8403017390001,24.41300625500014],[48.748840686000165,24.44852947600009],[48.68777672000016,24.586755275000144],[48.69874844800006,24.637207241000112],[48.60476929500015,24.794318803000067],[48.64299048200019,24.89441334600008]]],[[[48.03317252700009,30.592160310000054],[48.21590053100016,30.563868201000105],[48.40525862100003,30.58042681900008],[48.46199756700008,30.667791731000136],[48.3615956110001,31.071493357000122],[48.23579447600008,31.22020709500015],[48.17673458000007,31.346576858000105],[48.06164954100012,31.323759809000023],[47.93653153100007,31.151224535000097],[47.91579051100007,30.98899112200013],[48.035015540000074,30.826343811000072],[48.03317252700009,30.592160310000054]]],[[[35.414632852000125,30.973149056000125],[35.459216740000045,31.120147652000128],[35.40384307199997,31.229404824000085],[35.41917925200005,31.30433123],[35.51810467700017,31.351545638000175],[35.55497688100013,31.454967673],[35.52970593200007,31.596161234000135],[35.58015789800004,31.748686254000177],[35.54060921000013,31.817178675000036],[35.521620846000076,32.02270026000019],[35.54325023400003,32.086531003000175],[35.45782061600016,32.027126040999974],[35.38146248400005,31.89906916800004],[35.36573753000016,31.703886830000158],[35.27962856300019,31.47961945500009],[35.28652955100006,31.27421018800004],[35.24240855400018,31.1473437140001],[35.08473255000007,31.032540809000068],[35.05105255400014,30.95700225900009],[34.90539552900003,30.823259942000107],[34.81758855500016,30.85862084400003],[34.74280957300016,30.78302445900016],[34.90712354200008,30.65808196600011],[34.89327948800019,30.599977105000107],[34.811016472,30.532665561000158],[34.70148846700016,30.521922978000134],[34.68354046500019,30.419424708000065],[34.591413833000104,30.378964854000117],[34.545269383,30.406949772000132],[34.537035632000084,30.50958589200002],[34.52178357700012,30.525976732000174],[34.52247247300011,30.57986489600006],[34.64738445500018,30.636510636000025],[34.68594758000012,30.806971557000168],[34.90129057500019,30.950573507000172],[34.91816351400013,31.021018207000054],[34.594287613,31.176044859000115],[34.549541494000096,31.250463083000113],[34.333129471,31.305226248000167],[34.319904504000135,31.333006222000108],[34.23045752700017,31.328554593000092],[34.38136648500006,31.469527643000163],[34.206108601000096,31.311986085000058],[34.10805558900012,31.25087614299997],[33.816383463000136,31.148100767000074],[33.604164571000126,31.111712075000014],[33.484443501000044,31.125602565],[33.24304955100001,31.090046700000016],[33.161941562000095,31.109768144000043],[33.09971649200003,31.17976558600003],[32.98166258200018,31.095602393000092],[32.86888860100015,31.091156799000146],[32.78694158300004,31.04616039600012],[32.695716470000036,31.043768368000087],[32.76594913900004,30.969370466000157],[32.743879962,30.726660064999976],[32.663929933000134,30.486820011000134],[32.57144955800004,29.990607211000054],[32.60943952800011,29.81953776400013],[32.692214510000156,29.73481784500018],[32.689716536000105,29.614543402000038],[32.74055445500011,29.449828946000082],[32.82499659700011,29.382054553000046],[32.88527656300005,29.236783263000177],[32.946102525000015,29.20622820900013],[33.10055552000017,29.040401809000173],[33.17027250300009,29.00290134200003],[33.17392486400007,28.82306977000019],[33.26848001400015,28.831899997000107],[33.469707442000185,28.69552715300017],[33.896628249000116,28.467573196000103],[34.06794944200004,28.47292698300015],[34.146471655000084,28.503265111000132],[34.326715826000054,28.685293878000152],[34.37311531600011,28.804861794000033],[34.414161018000186,29.152857966],[34.53729812500006,29.304548605000036],[34.72646527500012,29.406270563000135],[34.83175642499998,29.486577372000056],[34.9182164880001,29.649973371999977],[35.020639857000106,29.721794073000126],[35.075458366000134,29.85624287200011],[35.10201053500015,30.036106054000072],[35.17977972300014,30.150501045000112],[35.14137867300019,30.233688334000135],[35.186164340000175,30.343294090000143],[35.160714096000106,30.41948827000016],[35.20918755399998,30.591438645000096],[35.33437318300008,30.813031597000133],[35.35910982600012,30.913982338000153],[35.414862506000134,30.971941802000117],[35.414632852000125,30.973149056000125]]]]},"properties":{"objectid":832,"eco_name":"Arabian desert","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Palearctic","eco_biome_":"PA13","nnh":2,"eco_id":809,"shape_leng":442.45207258,"shape_area":72.6922211602,"nnh_name":"Nature Could Reach Half Protected","color":"#FFEBBE","color_bio":"#CC6767","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":819214.7399360101,"percentage":3.105182287858961}}, + {"type":"Feature","geometry":null,"properties":{"objectid":834,"eco_name":"Ile Europa and Bassas da India xeric scrub","biome_num":13,"biome_name":"Deserts & Xeric Shrublands","realm":"Afrotropic","eco_biome_":"AF13","nnh":4,"eco_id":96,"shape_leng":0.296205472586,"shape_area":0.00188918142937,"nnh_name":"Nature Imperiled","color":"#E3A653","color_bio":"#CC6767","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":21.65373318780379,"percentage":0.00008207712274078979}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[158.4712985970001,52.73512831300013],[158.47050466400003,52.82624731200008],[158.28269957300017,52.89231162900012],[158.1793976460001,53.083806601000106],[158.1847996150001,53.27760844000005],[158.10600268400003,53.43416680100012],[157.97099268700015,53.47171186000003],[157.88040158,53.45014321200017],[157.78590366900016,53.27847043500009],[157.47720370600018,53.12937750000009],[157.48350572400022,53.017784194000114],[157.39779657300005,52.866440047000026],[157.16889970500006,52.71302875500004],[157.05650358000003,52.56748404700005],[157.0800015760001,52.49162363199997],[157.2261967190001,52.38482159000017],[157.36909459000003,52.34513981600014],[157.42239360300005,52.27565031800009],[157.312499644,52.22337641100006],[157.04660069700003,52.143864840000106],[156.97149666500013,52.03565597800002],[157.1405026560002,51.81675989400003],[157.03089871000032,51.75657095600019],[156.5411075620001,51.640586874000064],[156.45329270900004,51.629485714000054],[156.46209756300004,51.40042472800013],[156.54600561100006,51.26030042900004],[156.68119766300003,51.20483871699997],[156.6721956660001,51.080549677000135],[156.75270066100006,50.9861340760001],[156.73300168000003,50.88269351200006],[157.2492067200002,51.236760189999984],[157.51510667300022,51.37824956500009],[157.63259865900022,51.536097231000156],[157.77999861800015,51.549814215000026],[158.0092926200001,51.69964693700018],[158.08110072000022,51.79267064000015],[157.91740466500005,51.91931683800016],[157.82429462900018,52.01945459800015],[157.71040367600006,52.22916746800007],[157.70950362700012,52.37402938600019],[157.85760464800012,52.382696442],[157.97090166000032,52.28405753500016],[158.15420566800003,52.33462656200015],[158.33859261800012,52.283638607000114],[158.38670356900025,52.386305354],[158.26469457500002,52.40657279600009],[158.1251067180001,52.511932816000126],[158.10490465500004,52.61645397500013],[158.17170758500004,52.68308641800013],[158.29919465600005,52.7335862110001],[158.4712985970001,52.73512831300013]]],[[[162.02470369000014,54.95471394400005],[161.96200571300005,55.03133090900013],[161.80020162200015,55.12814239400012],[161.72430466200012,55.221059814000114],[161.6878966920001,55.364419527],[161.74029565700016,55.626778629000114],[161.9105986630001,55.852381912],[162.03619360300002,56.109138047000044],[162.43829361500002,56.245341794000126],[162.3014986080002,56.29703634400005],[162.0102997250002,56.31002594700004],[161.8722077020002,56.277606924000054],[161.70172163500024,56.11749245700008],[161.28990163300023,55.95458463700004],[161.02250668400006,55.75330010500011],[160.7548976610002,55.398359362000065],[160.68440267000005,55.15843207700016],[160.45919769500017,55.07421306100014],[160.10620172200015,54.831885870000065],[159.77549758700013,54.694892379],[159.39950569400003,54.60883822900007],[158.79870562600001,54.54214845500019],[158.62219263600014,54.46900796800014],[158.5325926060002,54.34433285800009],[158.4709926580001,54.17673385400002],[158.50889562400005,53.882221101000084],[158.61450156900014,53.819700652000165],[158.72639461200015,53.82665075900013],[158.84860259300012,53.970285064],[158.93530265300012,53.913574783000115],[159.2151036570001,53.877043934000085],[159.38749660700012,53.897922248999976],[159.45860263800012,53.97396622800011],[159.4134976050001,54.05686509400016],[159.2828976630002,54.17859899500007],[159.18780564200017,54.406864370000164],[159.24029563400018,54.45045646900019],[159.38209564300018,54.426735851000046],[159.59269666100022,54.32338145200015],[159.72810362400025,54.31233410400017],[159.94180259300003,54.43372401100004],[160.18139661300017,54.68777027600004],[160.34139960100003,54.760102916000164],[160.58470160800027,54.81354425400019],[161.07800259400017,54.87954805400017],[161.57229566200022,54.901936620000015],[161.87879973400027,54.88284398600018],[162.0411986050001,54.83424688400004],[162.12100270500002,54.88825718600009],[162.02470369000014,54.95471394400005]]],[[[161.02049268000007,55.92737379400006],[161.13729869200006,56.033115861],[160.99380470000006,56.422528186000136],[160.80529770900011,56.471983595000154],[160.53799462600023,56.391307106000056],[160.49609365900017,56.2436669220001],[160.6103056400001,56.03362799500013],[160.71659873300018,55.94078215700006],[160.8224026590002,55.90242539400015],[161.02049268000007,55.92737379400006]]],[[[162.76820364800005,56.66947531500017],[162.76170365000007,56.798180108999986],[162.71339471800002,56.90791246500015],[162.7608946280003,57.088677930000074],[162.68919364900012,57.25611399000019],[162.67469765100032,57.36741862400004],[162.47720358300012,57.404345936000084],[161.85659758100007,57.40370874400014],[161.74470571100017,57.33159755400004],[161.85060167000006,57.15980106100005],[161.7021026770002,56.98132553200003],[161.75729365300003,56.821190948000094],[161.3903045950001,56.66149507300014],[161.32229567700017,56.60659243300017],[161.47689870800002,56.47834981800014],[161.74499471900003,56.45561809600008],[162.0014957090002,56.524089863000086],[162.19569367700024,56.649024645000054],[162.3247986230001,56.664585145000046],[162.58030669200002,56.59935616900009],[162.76820364800005,56.66947531500017]]],[[[164.62600672300005,60.371113192000166],[164.4714967320001,60.576020215000085],[164.05099458600012,60.86121027900003],[163.69290157700016,61.07935785900008],[163.53410357200005,61.13957227800017],[163.55000270100004,61.06908835200011],[163.4694056730001,60.992871371000035],[163.67950461400005,60.928012035999984],[163.63279763200012,60.84152554700006],[163.41529864400013,60.82238966200009],[163.26210058700008,60.75946839200009],[163.17840560800016,60.79653668800012],[163.01669271200024,60.744170748000045],[162.8202056460002,60.771385782000095],[162.74180568200006,60.67680421800014],[162.60040264000008,60.61636985800004],[162.47430461800002,60.62399185800007],[162.37829561700016,60.566547826000146],[162.16149869700007,60.532515622000176],[161.89280673200017,60.40963189300015],[161.91769360800015,60.23384712200004],[161.73719770500009,60.143283676000124],[161.49330158900023,60.06423964600003],[161.07989472500014,59.75986927200006],[160.83920267500002,59.67461525900012],[160.72459372800006,59.592031049000184],[160.39610258400012,59.498357749000036],[160.29499872600013,59.3764664360001],[160.3536987030002,59.27433160500016],[160.3059996390001,59.18125744300005],[159.97250366000014,58.93147739900013],[159.94309960900023,58.86840726600019],[160.05999765400009,58.72426334100004],[160.20910668200008,58.608918463],[160.17399572800002,58.54364724200002],[160.03370664100032,58.44848196300018],[160.01690662500016,58.39503995400014],[160.24429357600002,58.14525286900016],[160.16569563200005,58.07498754200009],[159.98680067200007,58.015697479000096],[159.77630660800014,57.99711580600018],[159.53109771900006,57.94624519700011],[159.47099260000027,57.86930368400016],[159.55760163200011,57.703939296000044],[159.36959872900002,57.58228435300009],[159.07910157800018,57.51267214400008],[158.85009758900003,57.41836936300018],[158.7052006350002,57.2498419800001],[158.6163026730003,57.083416945000124],[158.53540071100008,57.061512014000186],[158.31109662300014,57.07496765100018],[158.24890172800008,57.256372991000035],[158.1470946290001,57.30512666600009],[158.03790257000003,57.289383105000184],[157.8403017170001,57.137759338000194],[157.85719259300004,57.069718233000174],[157.99180562300023,56.83881943100005],[157.73469560500007,56.6199937560001],[157.662002711,56.524746166000114],[157.5933986780002,56.26137956000014],[157.63360566100005,56.11230825000007],[157.40609767500018,55.89933515400003],[157.23629758300012,55.79762042400017],[157.1900936830002,55.72707732100008],[157.20379658600007,55.57916623400013],[157.312606597,55.468762487000106],[157.18460068600007,55.28003622600016],[157.19520563800017,55.217565734000175],[157.4622036200002,55.087778333000074],[157.46530157200004,54.95050673100019],[157.3312077170001,54.883717045000026],[157.32780466400015,54.713222931000075],[157.29049664500008,54.63199089000017],[157.18119763400023,54.563938217999976],[157.19259668700022,54.47298601900019],[157.46560667300014,54.309201954],[157.4831996170002,54.251529599000094],[157.39520270900005,54.04835494800017],[157.46940568700006,53.931393200000116],[157.62890659900006,53.813329233000104],[157.80540466900004,53.725139540999976],[157.92399569100007,53.740409692000185],[158.0095977220002,53.81657135300014],[158.03010572400024,54.08982860500009],[158.28309670800002,54.65719141700009],[158.37910470300017,54.79469503000007],[158.59759560600014,55.02682865400004],[158.76890561400012,55.168072607000056],[158.8630975860002,55.30277582600013],[158.95869470100024,55.794790358000114],[159.0601956920001,55.97311719200019],[159.35420268100017,56.10161880900017],[159.69000267800027,56.222021160000054],[160.09139961600022,56.63034725],[160.1163025850002,56.71161768000013],[160.2843015740002,57.01487661400017],[160.55369560700012,57.30875468900018],[160.89340157000004,57.41313218200003],[160.993697579,57.476500041000065],[161.06449867700007,57.59348492300012],[161.20680260600022,57.66421192500002],[161.29299958400009,57.759300090000124],[161.14089972500017,57.95443549000004],[161.09269657300013,58.08745076100007],[161.39689662700016,58.33133581300012],[161.43640171000004,58.42466193500013],[161.40080259400008,58.53888598499998],[161.47500557100022,58.60899842599997],[162.0326996900002,58.70100037500015],[162.1739956120001,58.76837495100017],[162.40199259800033,58.99539075200005],[162.4355926310002,59.102256665000084],[162.65190172400003,59.25462088900014],[162.9028015900002,59.476967802000104],[163.1354066120001,59.543949267000016],[163.2908017330002,59.627082324000185],[163.30340560100012,59.78280031600008],[163.49240058600014,59.896344426000155],[163.60479771700022,59.91842520900002],[163.56739766500016,60.01134262900018],[163.79930061800007,60.05495015100013],[163.78320267000004,60.20490407500006],[164.02850359300032,60.29860034200004],[164.42039461500008,60.32425935900005],[164.62600672300005,60.371113192000166]]]]},"properties":{"objectid":835,"eco_name":"Kamchatka tundra","biome_num":11,"biome_name":"Tundra","realm":"Palearctic","eco_biome_":"PA11","nnh":2,"eco_id":773,"shape_leng":54.3545401618,"shape_area":17.6021744949,"nnh_name":"Nature Could Reach Half Protected","color":"#5E9CC0","color_bio":"#9ED7C2","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":119568.02078220295,"percentage":1.3992492095854985}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-43.70055352899993,59.894246268000074],[-43.94778061299996,59.97702125000018],[-44.1119385099999,59.862858052000036],[-44.11027956399994,59.810633263],[-43.82722856099997,59.85230573900009],[-43.70055352899993,59.894246268000074]]],[[[-44.176113545999954,60.01563869000006],[-44.39416858999982,59.89758025400005],[-44.31388454199987,59.87007554100012],[-44.126106608999976,59.911749023000084],[-44.00472659199983,59.98647385700008],[-44.176113545999954,60.01563869000006]]],[[[-44.2369495669999,60.08064739000014],[-44.434436593999976,60.1395334450001],[-44.48527551899997,59.99758323200007],[-44.20055349899991,60.03898178700018],[-44.2369495669999,60.08064739000014]]],[[[-44.05638861999989,60.16536747600003],[-44.11666456299997,60.10092690100004],[-43.868053457999906,60.053699236000114],[-43.91194948499992,59.9920250240001],[-43.57278448999983,59.91285191400016],[-43.47804652099995,60.04147691200012],[-43.24722650899997,60.00953062900015],[-43.16166655599994,60.06759291100008],[-43.57917451799989,60.104536317000054],[-43.729164484999956,60.1375873340001],[-44.05638861999989,60.16536747600003]]],[[[-45.25667162399992,60.360095851000096],[-45.35389348699994,60.3806534740001],[-45.40277456699988,60.17620192400011],[-45.184436549999816,60.263988278000056],[-45.13500259999995,60.34648816600014],[-45.25667162399992,60.360095851000096]]],[[[-43.42333549199992,60.394822243000135],[-43.31277450099998,60.43509980300007],[-43.493617581999956,60.48954479000014],[-43.77167548599988,60.52010202400015],[-43.74474359299995,60.44189786099997],[-43.42333549199992,60.394822243000135]]],[[[-47.8966675339999,60.79956188400013],[-47.953887601999895,60.835673135000036],[-48.139160519999905,60.79900499100012],[-48.07639347599991,60.69704986700009],[-47.88500260699993,60.679555159000074],[-47.75860954199982,60.807611194000174],[-47.8966675339999,60.79956188400013]]],[[[-46.21277654499994,60.92595578800007],[-46.4561115759999,60.88872639100015],[-46.83778354899994,60.76955467100004],[-46.75361247699993,60.74845088300003],[-46.34110649999991,60.84400558500005],[-46.21277654499994,60.92595578800007]]],[[[-45.081859489999886,61.53830058600005],[-45.267936566999936,61.58170208100012],[-45.62905158699988,61.51064617300017],[-45.95511650599991,61.520866563000084],[-46.0665545789999,61.39535778900017],[-46.232219542999985,61.30020390900012],[-46.24063447099991,61.20758304100019],[-46.527763604999905,61.113379334000115],[-46.71897560399992,61.02633578400014],[-47.23723957399994,61.10939323600019],[-47.410404496999945,61.07079758900005],[-47.56881760599998,61.07793880300005],[-47.55754059299994,61.15374792100005],[-47.82778153399988,61.15179477000004],[-47.87916947299993,61.030394972000124],[-47.72999556899998,60.97094766500004],[-48.01805459199994,60.91011617000004],[-48.19249758699988,60.80900024300007],[-47.9305575809999,60.83455934799997],[-47.67193546699997,60.80817227800003],[-47.44778459999998,60.81844949700013],[-47.29083647999988,60.944568474000164],[-47.23277252199989,60.896230709],[-47.04250348799985,60.97206178700003],[-46.91471852399991,60.92761875700006],[-47.05500056999995,60.86900762900018],[-46.86721459099988,60.79539959900006],[-46.71666353899985,60.85150487400017],[-46.54611561399986,60.980675869000095],[-46.26333651999988,61.04373560900018],[-46.22943155399997,60.97289360700012],[-45.71000249899993,61.16901840700001],[-45.69639246799994,61.06624353400008],[-45.953052545999924,61.02374158500004],[-46.105838547999895,60.96623234100019],[-46.006664539999974,60.91039109600007],[-45.65416360099994,60.99457340000009],[-45.48278050299996,61.10096590300003],[-45.37388650499997,61.08846027100003],[-45.48971552199998,60.98734819900011],[-45.72972159699992,60.93095291100008],[-46.17666646799995,60.72872005000005],[-45.895549504999906,60.765671671000064],[-45.806949602999964,60.744273678000184],[-45.806388518999825,60.627886258000046],[-45.58750148699994,60.490101851000134],[-45.463611593999985,60.615106538000134],[-45.394172554999955,60.511220559000094],[-45.222770513999876,60.43232254300017],[-44.94222251499997,60.47926757100004],[-44.89111352499998,60.43426781500017],[-44.92277146999987,60.3259374160001],[-45.10333660799995,60.2675973580001],[-45.077777502999936,60.12314481200008],[-44.76111255299992,59.990639831000124],[-44.551944505999984,60.00453333800016],[-44.463890601999935,60.141203455000095],[-44.31695550399985,60.146197728],[-44.223609600999964,60.233149077000064],[-44.09638555399994,60.18231317000004],[-43.73167050599994,60.16091920000002],[-43.38444161699988,60.10175888900011],[-43.13750454699988,60.077588162000154],[-43.08861156399996,60.11176134900012],[-43.11583749499994,60.28454305200012],[-43.36583747999998,60.38481995100011],[-43.432887508999954,60.23755527600008],[-43.519725533999974,60.22436752500005],[-43.8869055319999,60.35183665900013],[-43.98778961599993,60.43549978700014],[-44.136753469999974,60.49085018800014],[-44.41785048399993,60.529299319000074],[-44.57030858599995,60.64151271800006],[-44.43947545899988,60.84340644700006],[-44.69122659099986,60.88367914400004],[-44.86402555999996,60.877457928000126],[-44.894794520999824,60.95777500100013],[-44.69071948599998,61.07799295],[-44.75693853299998,61.22581066300006],[-44.83290858299995,61.274327633000155],[-44.962306559999945,61.46995354200004],[-45.081859489999886,61.53830058600005]]],[[[-42.32611050199995,62.797981444000015],[-42.41833457099989,62.708530779000114],[-42.16305147199989,62.70630253400009],[-41.98611854899997,62.76908466499998],[-42.32611050199995,62.797981444000015]]],[[[-41.53805955499996,63.411053792000075],[-41.673610519999954,63.48801106200017],[-41.84582560599995,63.42328835300009],[-41.70638661099997,63.38105730700016],[-41.43083959099994,63.229652643000065],[-41.17749757299998,63.224102314000106],[-41.23694253299993,63.3330013420001],[-41.53805955499996,63.411053792000075]]],[[[-41.12513347699996,63.86125419400014],[-41.398216552999884,63.93321031800019],[-41.696319609999875,63.96992406000015],[-42.22571558599992,63.80133330900014],[-42.23295956199996,63.690168150000034],[-42.53079959499996,63.66552015800005],[-42.61746545699998,63.5776831770001],[-42.451957569999934,63.51499727000015],[-42.66360850399997,63.48042694900016],[-42.76675050499989,63.43101663500005],[-42.67433147299988,63.37024180200012],[-42.91526760399995,63.269251436000104],[-42.87821556799997,63.154496141000095],[-43.21673146899997,63.056102991000046],[-43.44294746899993,63.02780853500002],[-43.50463157099995,62.93998295400013],[-43.31564748199992,62.86074429700017],[-43.35052860399992,62.780635933999974],[-43.56487247699994,62.79139326800009],[-43.47108048899992,62.70023722100012],[-43.29415846099994,62.64241885300015],[-43.30675562399995,62.56639264400002],[-43.42333549199992,62.425342480000154],[-43.244995581999945,62.265491540000085],[-43.06207261499992,62.214479612000105],[-42.61701149299989,62.16295622100006],[-42.63166456899995,62.09153838300017],[-42.557258581999974,61.947058177000144],[-42.42943958699993,61.898762153],[-42.478549492999946,61.84302300000019],[-42.68165960399995,61.86907093800016],[-42.853427598999986,61.93346172400004],[-43.076446572999885,61.80471837300013],[-42.96685050699989,61.75555230800006],[-42.54917557699997,61.65662539900018],[-42.66133851699982,61.594550868],[-43.07762959499996,61.6674026820001],[-43.14462245899995,61.60205015700012],[-43.36536758999989,61.55879014900012],[-43.28756357999998,61.462472190000085],[-43.274764581999875,61.360734326000056],[-43.37817346199995,61.20724005300002],[-43.64782750199993,61.22843486900007],[-43.65799357699996,61.12223364100009],[-43.56907248099992,61.08666034100014],[-42.98042248399992,61.027388718000054],[-42.94738051899992,60.95352604700008],[-43.09424252699989,60.930904128],[-43.556449501999964,60.97737172300009],[-43.581111575999955,60.91145911800015],[-43.51884459599984,60.817934513000125],[-43.3579445769999,60.792989467000154],[-43.47812246099994,60.70468712200005],[-43.59314346299993,60.80541798500013],[-43.81784049399988,60.817285586000196],[-43.89966547099988,60.70871546500018],[-44.08577356099994,60.71915277800019],[-44.26309557299987,60.779080033000184],[-44.33780649399995,60.69571479799998],[-44.15416352099987,60.610109415000124],[-43.441379549999965,60.51427274500003],[-43.24888646099993,60.46676294500014],[-43.037506597999936,60.50899264900016],[-42.82583956999997,60.60482931900003],[-42.849723467999866,60.67316881900018],[-42.771385529999975,60.730109099000174],[-42.91722159299991,60.78872844200009],[-42.88417057499993,60.837062352000146],[-43.08777655899996,60.889287476000106],[-42.73444346499997,60.92317869600015],[-42.65694857899996,60.991792283999985],[-42.79139749199993,61.06234041699997],[-42.76778047399995,61.14012950699998],[-42.650268537999864,61.195680571000196],[-42.66788059299995,61.255856098000095],[-42.45750454599994,61.409862337],[-42.61944559799997,61.54292354100005],[-42.430553541999984,61.57681509600019],[-42.31721847599988,61.63015015200011],[-42.351394512999946,61.75210013800006],[-42.227779545999965,61.821545211000114],[-42.21888751999995,61.91098883500001],[-42.13666557599993,62.01711010000008],[-42.428054561999886,62.000721635000104],[-42.39861245599991,62.09072131500005],[-42.27333049599997,62.180447242000184],[-42.243892581999944,62.357124517000045],[-42.3630596079999,62.55602003900003],[-42.60221860699994,62.62490922500018],[-42.71472554099989,62.683245762000126],[-42.680553527999905,62.75992894500007],[-42.31249946499997,62.80547386],[-42.028339535999976,62.783256116000075],[-41.74777946699993,62.84019757000016],[-41.61111052399991,62.976593263000154],[-41.74362153999988,63.01298715100012],[-42.00389052999998,63.02020547900014],[-42.13805361899995,63.11576755700008],[-41.88222452299988,63.09020845200013],[-41.831947520999904,63.042713236],[-41.543331604999935,63.04188560700004],[-41.61805358899994,63.13882868700017],[-41.48276849899992,63.15049009400019],[-41.49750153699989,63.230770789000076],[-41.90750149299993,63.463004157000114],[-41.74749347599982,63.51578734800012],[-41.51111559199995,63.422727436000116],[-41.20721846099997,63.44050394400011],[-41.05943645499991,63.50718399500016],[-40.74833658599994,63.507454898000105],[-40.87777345599994,63.64968154600018],[-40.51139459999996,63.70718693400005],[-40.609508464999976,63.787504845000115],[-40.74772252799994,63.76804189800009],[-40.96366851699992,63.79103798500006],[-41.12513347699996,63.86125419400014]]],[[[-40.75250658299984,64.3038704820001],[-40.960288598999966,64.28720759400005],[-40.98305552399995,64.20636296400016],[-40.72499851799995,64.20581311100005],[-40.75250658299984,64.3038704820001]]],[[[-50.933605568999894,64.55138020400005],[-50.99638753199997,64.55748357000004],[-51.202503560999844,64.31943534099997],[-51.13472749199997,64.26137339500008],[-50.97111156799997,64.4160889100001],[-50.81750447499991,64.47888143500018],[-50.933605568999894,64.55138020400005]]],[[[-40.444156481999926,64.72388932700005],[-40.49638361699988,64.8255629860002],[-40.74833256299996,64.93222723000014],[-40.86471947999996,64.90695730099998],[-40.78528250699986,64.80360424399998],[-40.57389459699982,64.68526752900016],[-40.50111352499994,64.50332792600005],[-40.38027950599991,64.45860192300017],[-40.273326588999964,64.5380432550001],[-40.426666466999905,64.55804851100015],[-40.386115489999895,64.64749951099998],[-40.444156481999926,64.72388932700005]]],[[[-52.85194358699994,65.64727314100008],[-53.16583261799991,65.63004514500017],[-53.16777755499999,65.55420535000002],[-52.90417055499995,65.57170844000018],[-52.85194358699994,65.64727314100008]]],[[[-52.58358354599994,65.66100672200014],[-52.783889573999886,65.60143368600012],[-52.68804552899991,65.49920967200018],[-52.53277261599993,65.62281273600013],[-52.58358354599994,65.66100672200014]]],[[[-36.90943951299988,65.64477097600007],[-37.0675046049999,65.72532575900004],[-37.2125054949999,65.68281291400018],[-37.10527446599997,65.60532490100007],[-36.90943951299988,65.64477097600007]]],[[[-39.12041458199991,65.7744465620001],[-39.244106494999926,65.83408832900011],[-39.46200949099989,65.78058848500018],[-39.48175054899991,65.73262036200009],[-40.12350861899995,65.58957731700008],[-39.88694348399986,65.5069921010001],[-39.78750259599997,65.61531931500014],[-39.646110617999966,65.67477131600003],[-39.45249955099996,65.54282188700006],[-39.319446560999836,65.59421653200013],[-39.29111857799995,65.6819889730001],[-39.004005536999955,65.6553221150001],[-39.12041458199991,65.7744465620001]]],[[[-36.809722524999984,65.74672006399999],[-36.79944245599995,65.86922325500018],[-36.98722860399994,65.80310395300006],[-36.809722524999984,65.74672006399999]]],[[[-37.56583456499993,65.88422401200012],[-37.68693948799995,65.90256579600015],[-37.958332604999896,65.7928342780001],[-37.98722049899993,65.70394670900004],[-37.935001576999866,65.59337633000007],[-37.73138452899991,65.56754213100015],[-37.393894573999944,65.62447587300016],[-37.32083857599986,65.6958752720002],[-37.343330574999925,65.77533135500005],[-37.56583456499993,65.88422401200012]]],[[[-50.54312857399998,65.82844982300003],[-50.738048558999935,65.89717925000019],[-51.04253762099984,65.90602165400009],[-51.67644151299993,65.87673126100003],[-51.91421548599993,65.81360195200011],[-52.08253449599988,65.71754333000018],[-52.46973450199994,65.6425128910002],[-52.60416748799997,65.52504420600008],[-52.45167552399994,65.29335867900011],[-52.19083756999993,65.27364360400003],[-52.21720854599988,65.10917658200009],[-52.28527462899996,65.08251861000014],[-52.015838518999885,64.960563595],[-52.21138748199991,64.911398368],[-51.87748749499997,64.83307065700012],[-51.80778157699996,64.93445547500005],[-51.64555755199996,64.86139193400015],[-51.859996474999946,64.82390018400008],[-52.15278255599992,64.67554703500019],[-52.025562531999924,64.583882877],[-52.11555852399994,64.44665435899998],[-52.02527251799995,64.36052913000009],[-52.07361950399991,64.32054946300019],[-51.984996467999906,64.19832052800012],[-51.82388656599994,64.21942465100005],[-51.546947478999925,64.453886432],[-51.44277148599997,64.51582534400006],[-51.41860562099993,64.6088778800002],[-51.2952764769999,64.72889365800012],[-51.14695350299991,64.719447924],[-51.210548511999946,64.61748408300002],[-51.03332859099993,64.61998624900014],[-50.733882585999936,64.762510454],[-50.37360357599988,64.756392],[-50.10388952199992,64.65722017200005],[-50.06806157999989,64.531099854],[-49.77472346699989,64.42414609900015],[-49.796394542999906,64.37998520400015],[-50.130824600999915,64.4733275860001],[-50.25500148999993,64.6341632320001],[-50.48500460199989,64.71027761900001],[-50.79555562299993,64.65055169700014],[-50.573890493999954,64.44665435899998],[-50.90222154399993,64.39887684000007],[-51.03332859099993,64.24052860700004],[-51.23110948799996,64.17524850100011],[-51.41014459299993,64.21321416400019],[-51.617504495999924,64.21498425400011],[-51.6422195429999,64.11302058100011],[-51.44583155099991,64.07636685400007],[-51.64999761399997,64.01081182200011],[-51.488609599999904,63.967745771000125],[-51.37972247499988,63.894695640000066],[-51.55943249099988,63.707465213000035],[-51.37665955999995,63.618010022000135],[-51.38805056699988,63.55939822300013],[-51.14056062599997,63.484398127000134],[-51.17082952199996,63.398830965000116],[-51.05416851699994,63.367441911000185],[-51.09583646699997,63.29411249600008],[-50.97416660399995,63.2557808790001],[-51.05943654299989,63.18243654400004],[-50.90499846899985,63.13577231000016],[-50.78276852699992,63.20244548800002],[-50.551391621999926,63.22243901000019],[-50.46721250299993,63.179388381000194],[-50.51278356999984,62.97297714200016],[-50.323337470999945,62.930479217000084],[-50.3172305839999,62.74130402100019],[-50.03750652499997,62.79853045900006],[-50.113616552999986,62.697689123000146],[-50.22360254599988,62.667970917000105],[-50.30611047999997,62.484899926000196],[-50.20610448499991,62.40489868300017],[-49.9999995199999,62.30628441900012],[-49.79944656099991,62.25406633500006],[-49.536113481999905,62.24907273300005],[-49.638336490999905,62.1490588580001],[-49.36277052799994,62.157119232000184],[-49.300552498999934,62.129336239999986],[-49.696105573999944,62.01766716100008],[-49.60221853499996,61.98127763200006],[-49.40472061199989,61.98182664600017],[-49.15417060599998,62.02071918000013],[-49.15416758899994,61.96515990200015],[-49.39083850399987,61.94237705100005],[-49.381946477999975,61.867376955000054],[-49.214717618999885,61.88183171500003],[-49.00083961299998,61.952387391],[-48.95139359299992,61.87682235400007],[-49.12388947199997,61.80515741700003],[-49.14444759799994,61.72459106700012],[-49.038059621999935,61.61792380500009],[-49.1605566099999,61.595698853000044],[-49.09833556399997,61.487089505000085],[-48.99638748099994,61.45237082400007],[-48.53111256199986,61.541260572],[-48.34416561099994,61.60320199800009],[-48.24472455499989,61.52736287300007],[-48.83167654599998,61.46014135100006],[-48.67666246699997,61.398199589000114],[-48.484451512999954,61.370686662000196],[-48.57778148999989,61.28319300400011],[-48.54084059899998,61.18956949300008],[-48.21999760599988,61.191515435000156],[-48.07556148799989,61.08401216300007],[-47.87277257199992,61.130400968],[-47.69367259099994,61.21071921400005],[-47.70911758899996,61.27670792599997],[-48.04138561899998,61.43940737200006],[-48.08301149099992,61.50823537000008],[-47.92448455599998,61.62292897500015],[-47.926025485999844,61.68059814500003],[-48.09761058699996,61.72108106100012],[-48.28701058599995,61.66994273400013],[-48.30276454099993,61.806450410000195],[-48.4550935609999,61.86057872900017],[-48.45485350399997,61.94155311000003],[-48.819400577999886,62.104119787],[-48.91611852099982,62.210504243000116],[-49.096126596999966,62.29216895900015],[-49.08849755599988,62.35294748000007],[-49.31483861399994,62.52944186200017],[-49.2560196149999,62.65547349999997],[-49.480071574999954,62.59566778200002],[-49.776660524999954,62.566450647000124],[-49.84483758399995,62.46186897000007],[-49.98197960199991,62.41932226200015],[-50.149307534999934,62.46414314800012],[-50.159732610999924,62.572496849000174],[-49.97780960499995,62.64750113600007],[-49.95217556599994,62.72338233800019],[-49.71943257799984,62.86698143900003],[-49.555419519999816,63.04996475500002],[-49.597801606999894,63.175371103000145],[-49.49486948899994,63.25845101800019],[-49.45151862099988,63.45858672700018],[-49.53096749699989,63.60558552700019],[-49.63491851899994,63.680073992000075],[-49.81968349299996,63.699716647],[-49.8717724949999,63.79543194600012],[-49.737384602999896,63.8554559280002],[-49.77914860899983,63.94502075500009],[-49.63920552699989,63.9925501690002],[-49.5754546149999,64.12350315700007],[-49.30124651999989,64.18266464099997],[-49.26447259599996,64.22230886400007],[-49.327556475999984,64.57889246000002],[-49.483898583999974,64.7541786750001],[-49.520580474999974,64.8719593350001],[-49.705932516999894,64.9571152800001],[-49.832366485999955,65.10781066700014],[-49.67491947499991,65.17588295299998],[-49.64218562899998,65.28472230099999],[-50.14471056399998,65.41171919800018],[-49.89693060999997,65.60820894600005],[-50.339107518999924,65.73585544100018],[-50.54312857399998,65.82844982300003]]],[[[-52.15220655099995,65.88407079100011],[-51.8291395039999,65.96848711700011],[-51.974719583999956,66.0028514120001],[-52.19582748399995,65.94700077900012],[-52.32000353599989,65.86726960100015],[-52.68722158799994,65.93532830800007],[-53.05471456599986,65.8464407400001],[-53.11583355999994,65.7406007720001],[-53.059169546999954,65.65533033000014],[-52.87916549399995,65.68504082400011],[-52.744163543999946,65.63366227200004],[-52.58794347699995,65.67518337000001],[-52.5355916179999,65.74639166100008],[-52.19790250799997,65.84861517300016],[-52.15220655099995,65.88407079100011]]],[[[-53.05339055999991,66.09892562400012],[-53.30805557799994,66.09367620600011],[-53.46221554099998,66.03256240900004],[-53.38527654299992,65.93172610200008],[-53.129997466999896,65.94449878100005],[-53.16277355899996,65.854223337],[-52.60972251099997,65.98200696000009],[-52.505565628999875,65.90033755100012],[-52.31750857899988,65.8975604580001],[-52.17499962799991,65.99728130200003],[-51.9219355539999,66.03340143700018],[-51.78968454499994,65.97650507800017],[-51.57269651799993,66.14023365499997],[-51.71124250399998,66.16609065300014],[-52.10931350299995,66.05683925000011],[-52.287399608999976,66.02861687900008],[-52.50570258899995,66.06079148500015],[-52.756847542999935,66.03832932600017],[-52.86029447699997,66.09439336100002],[-53.05339055999991,66.09892562400012]]],[[[-37.69943656999993,66.25036096600007],[-37.77722146999997,66.29256921300015],[-38.05720855199985,66.32813916000009],[-38.064575573999946,66.23302618399998],[-38.25540954899992,66.15246335400019],[-38.19876447999991,66.08231537400019],[-38.31753554499994,66.04788218100015],[-38.617526541999894,66.03849729900008],[-38.57240658999996,65.94343059100015],[-38.42260756299993,65.85448217000004],[-38.5108265909999,65.7682739600001],[-38.77345257299993,65.76405484600008],[-38.77500557199994,65.70694608900004],[-38.597782465999956,65.64643411300011],[-38.311275604999935,65.64953944000013],[-38.17916457299992,65.68281291400018],[-38.09888857199985,65.7928342780001],[-38.26778056799998,65.89978853600007],[-37.97471956099997,65.9603383990002],[-37.97887748799991,66.10812694200013],[-37.69943656999993,66.25036096600007]]],[[[-51.45417757999991,68.25629490200004],[-52.2555654759999,68.18405597200018],[-52.1100085299999,68.11212231100018],[-51.591949581999984,68.19072461400003],[-51.45417757999991,68.25629490200004]]],[[[-51.09942257999995,68.3750834010001],[-51.23082349699996,68.15239266200012],[-50.943061528999976,68.05016831199998],[-50.69083346599996,68.03017780800013],[-50.440273569999874,67.94626540200005],[-50.579730500999915,67.899326912],[-50.71194848599998,67.95545213600008],[-50.976943528999925,67.9943331020001],[-51.188606532999984,68.06211654800006],[-51.84388763099997,68.0398835490002],[-52.192493498999966,68.08544891600002],[-52.57973055199989,68.18767276300002],[-52.78944057299992,68.16183806100014],[-53.14805560699995,68.19766818300019],[-53.321105529999954,68.18294218500017],[-53.03917351099989,68.08378510800003],[-53.25555753899994,68.01490329900008],[-53.27388758799992,67.85432648500017],[-53.676666533999935,67.81098953100019],[-53.54750861399992,67.72765665000003],[-53.7294316199999,67.53514176800007],[-53.58943958799995,67.50736900300012],[-53.33167259599992,67.58430816800006],[-53.005283632999976,67.75071375700009],[-52.82222353799989,67.78959505900013],[-52.456672478999906,67.81933690100004],[-52.26722755299994,67.77015507800007],[-52.00582851499996,67.7626614890001],[-51.7130545039999,67.69347491400015],[-51.59916656799993,67.74737189200005],[-51.38138946799995,67.74877569300014],[-51.32110547899998,67.80960098500009],[-51.566112532999966,67.91765394300018],[-51.348606503999974,67.9179437900001],[-51.16166357599997,67.7571071370001],[-51.33028450099994,67.67430902100006],[-51.79750854899993,67.62430342500005],[-52.416381508999905,67.76737698000011],[-53.03334054499982,67.6923609590001],[-53.11112259499998,67.58986235300017],[-53.60194354399994,67.48235874500006],[-53.82111354799997,67.40403086500004],[-53.88027553499995,67.25541771000013],[-53.80666348199992,67.17928756600003],[-53.91555060699994,67.14400830300019],[-53.628337485999964,66.90621773300006],[-53.20305262699992,66.92344522600001],[-52.970832501999894,66.85288502400005],[-53.00444762199999,66.66592550000013],[-53.27527646899989,66.6923085460001],[-53.441940555999906,66.639266857],[-53.224166472999855,66.54564938000016],[-53.50333749299989,66.52730709400004],[-53.62471348599996,66.49118729400004],[-53.69666659299992,66.32536223600016],[-53.58306447999996,66.20702401200009],[-53.63999956299995,66.11867154400005],[-53.30749851599995,66.1172824950001],[-52.99665848699988,66.19506035400019],[-52.72443757299993,66.34452779300011],[-52.45999154499998,66.4356275130001],[-52.130001548999985,66.5114830660001],[-51.977497513999936,66.65647993300013],[-51.87943259999997,66.63537564200004],[-52.09778553599995,66.47481458700008],[-52.373882576999904,66.43091219000013],[-52.36845060099989,66.39142001500005],[-51.726287516999946,66.3965556070001],[-51.596614613999975,66.37337645900016],[-51.39021259499998,66.22831086100001],[-51.17774962099992,66.18823999900013],[-50.58848958999988,66.12556884500003],[-49.94503753699996,65.938387368],[-49.82453560899995,65.95384510600019],[-49.523738607999974,66.1238979960001],[-49.310581612999954,66.30352570200012],[-49.232612478999954,66.43117219600015],[-49.26529653699998,66.56430414400018],[-49.50870549699994,66.70333393400006],[-49.58607448699985,66.87405771100009],[-49.92494946799985,67.04694871400011],[-49.94854754299996,67.15535354399998],[-49.69644956699989,67.35735908700019],[-49.631595596999944,67.51083341100008],[-49.76051362699991,67.59385264100013],[-49.82292946899992,67.81661261500005],[-49.95732155199994,67.96062511100007],[-50.294338599999946,67.99608810500013],[-50.4537885499999,68.18926767200014],[-50.68709949599992,68.23700713700009],[-50.773803578999946,68.35861078200008],[-51.09942257999995,68.3750834010001]]],[[[-52.93083154499993,68.4451785760001],[-53.18417356299989,68.43129277900005],[-53.111942512999974,68.35629151],[-52.95639450599998,68.3626848900002],[-52.93083154499993,68.4451785760001]]],[[[-51.804443567999954,68.622969136],[-52.21721256899997,68.64048681000008],[-52.13220950999988,68.56214417900003],[-51.804443567999954,68.622969136]]],[[[-52.18249858199988,68.70410344400005],[-52.74944648999997,68.67964354200006],[-52.80889547399988,68.61686459500004],[-52.26776852099994,68.64964253100015],[-52.18249858199988,68.70410344400005]]],[[[-50.9361156139999,69.11800651700008],[-51.078887587999986,69.12772701000011],[-51.13277853199992,69.03911386500005],[-51.081676581999886,68.87047986300013],[-51.29083658299999,68.75021933400012],[-50.98722057999993,68.73103734900008],[-51.044723620999946,68.59797413300004],[-51.618328603999885,68.51853112500015],[-51.95278162899996,68.52964117000005],[-51.98416162999996,68.5799206870002],[-52.3963925139999,68.54992135200007],[-52.47972153899991,68.48990491400008],[-53.079723482999896,68.32157601400019],[-52.89723251899994,68.22379273100006],[-52.44445049099994,68.22295336700012],[-52.44639257799997,68.17738816800005],[-52.0494496149999,68.23683933100006],[-51.78417562299995,68.2401811960001],[-51.66750355399989,68.27407325399997],[-51.24083350099994,68.28850789700016],[-51.21278748599997,68.41324050700013],[-50.83393853699988,68.50180755200012],[-50.403060601999925,68.82905767100016],[-50.37017051599997,68.89909132200006],[-50.51833356299994,68.94326814300013],[-50.532504511999946,69.02689120600013],[-50.78138350199998,69.12633829600014],[-50.9361156139999,69.11800651700008]]],[[[-50.338108562999935,69.46487330800016],[-50.42444652499995,69.5080275360001],[-50.86584056399988,69.45608354100005],[-50.878051487999926,69.364678551],[-51.12277255099997,69.19996610700002],[-50.87167352999995,69.17272777200009],[-50.559997489999944,69.2241215790001],[-50.074592590999885,68.98585005500013],[-49.991832528999964,69.08600675700006],[-50.11689354199996,69.26572750200012],[-50.356979579999916,69.37095793800006],[-50.338108562999935,69.46487330800016]]],[[[-23.289434578999874,69.73692239200017],[-23.593904529999975,69.70693747500013],[-23.49056052499992,69.6535898460001],[-23.286672573999965,69.63970254100013],[-23.289434578999874,69.73692239200017]]],[[[-51.008895510999935,69.91971761899998],[-51.38805760699995,69.70387070400017],[-51.24917550699996,69.53192451000012],[-50.94916958999988,69.55469210600006],[-50.965278601999955,69.7230364290001],[-50.653884527999935,69.83527078300017],[-51.008895510999935,69.91971761899998]]],[[[-50.26726153299995,69.98373943400003],[-50.55332147099995,69.97250081000004],[-50.58916450099997,69.92054156000006],[-50.3136065839999,69.87192518100017],[-50.33000158699991,69.75665356000007],[-50.55777762599996,69.78082462200018],[-50.79750055999989,69.71137820700005],[-50.84610352899995,69.61942269400004],[-50.7997246139999,69.50108514100009],[-50.51138647399995,69.50914115600006],[-50.22365551899992,69.56362671200003],[-50.14872750799992,69.78834738000018],[-50.26726153299995,69.98373943400003]]],[[[-53.99388854499995,70.28251639600006],[-54.360279469999966,70.32252724300008],[-54.7511135339999,70.24416969200018],[-54.843322515999944,70.17444751200009],[-54.817783526999904,70.05916080400004],[-54.706664468999975,69.96583216800019],[-54.867214627999886,69.93194061300005],[-54.92639153499994,69.74053884800009],[-54.994445547999874,69.69331017700006],[-54.65889348799993,69.56914284200008],[-54.07138862799991,69.5444215920001],[-53.91305950599991,69.43635371400018],[-54.15333162199994,69.42774700900009],[-54.153613588999974,69.33412869400019],[-53.93443251999997,69.31607658899998],[-53.83833349799994,69.258578409],[-53.582225618999985,69.22856298200014],[-53.183063631999914,69.31300931500004],[-52.75305959299993,69.35718580100018],[-52.078338514999984,69.49662881800003],[-51.833328611999946,69.62468787000012],[-52.01389358199998,69.66581267300006],[-51.91305559899996,69.72025933600008],[-51.99694855899992,69.79721409200016],[-52.4916615599999,69.86971202300003],[-52.693046506999906,69.91610149800005],[-53.06750149399994,70.12833296300005],[-53.51972947899992,70.23945436800011],[-53.99388854499995,70.28251639600006]]],[[[-27.549447520999877,70.88977472000005],[-27.748882501999844,70.87614842800008],[-27.75333748399993,70.75060662900006],[-27.57528155199992,70.75283521000011],[-27.24945652399998,70.88672354000005],[-27.549447520999877,70.88977472000005]]],[[[-51.67167254499998,70.89004981500017],[-51.96277654499994,70.9722848340001],[-52.162216555999976,70.88533465900014],[-51.65083362499996,70.83366575800011],[-51.67167254499998,70.89004981500017]]],[[[-25.71666358799996,70.98089137300013],[-25.726942483999892,71.07701202100009],[-26.298343528999908,70.93254841100008],[-26.640272540999945,70.88895111500005],[-27.12360358899997,70.87476021700007],[-27.2980635159999,70.78643708600003],[-27.520284532999938,70.72948741800013],[-27.69555046399995,70.6439267950002],[-27.88111356299993,70.6386461960002],[-28.068616568999914,70.5641949460001],[-27.98998844999994,70.52030830700005],[-28.066659561999984,70.42696525400015],[-27.854448548999983,70.42473684100008],[-26.818616473999896,70.52087257700003],[-26.580007494999904,70.5161419980002],[-26.24305347899997,70.58171295600005],[-26.040008578999903,70.519758287],[-25.812213596999925,70.60170312499997],[-25.314727525999956,70.65114411600007],[-25.28277755499994,70.68836345400013],[-25.51722558999984,70.96755375300006],[-25.71666358799996,70.98089137300013]]],[[[-53.64916249199996,71.02283994800007],[-53.45278154099992,71.0481103800002],[-53.41138851799997,71.16840225800007],[-53.59805249599998,71.31201057900017],[-53.88499856999994,71.19644894400005],[-53.956390591999934,71.09478886400007],[-53.64916249199996,71.02283994800007]]],[[[-52.57138854699997,71.34480360200018],[-52.961376541999925,71.38397542000013],[-53.18332263199994,71.32202142100016],[-53.11582953599998,71.20479631400008],[-52.958885607999946,71.1470233760001],[-52.64222350799997,71.16783698300014],[-52.592224616999886,71.23368320200007],[-52.360832624999944,71.26952807600009],[-52.57138854699997,71.34480360200018]]],[[[-53.13360956499997,71.6606499740002],[-53.4688875359999,71.65843681700011],[-53.44832957699998,71.56063760800009],[-53.17610547899989,71.5264855440002],[-52.83361052099997,71.61842613700003],[-53.13360956499997,71.6606499740002]]],[[[-55.55916554599992,71.81788525800005],[-55.40998862399988,71.88901040000007],[-55.566394601999946,71.92900666300011],[-55.79500950299985,71.89039928200003],[-55.55916554599992,71.81788525800005]]],[[[-55.04360557799998,72.30956887200017],[-55.437210530999835,72.28818965500005],[-55.650268618999974,72.22430463300009],[-55.64999050799992,72.17345162600003],[-55.374164537999945,72.15846645900018],[-55.04360557799998,72.30956887200017]]],[[[-55.6741716279999,72.76433875200013],[-55.89332956199996,72.76240035300009],[-56.141109516999904,72.70932714800017],[-56.06167556199995,72.64960038800018],[-55.6741716279999,72.76433875200013]]],[[[-54.47473150799988,72.80383109500002],[-54.80250147399988,72.80711143700006],[-54.73501256899988,72.6998815820001],[-54.99639551399997,72.56932002900004],[-54.98249848599994,72.50599206800007],[-55.469989471999895,72.52070147000012],[-55.62638053099988,72.45625972200008],[-55.507224567999856,72.38847677900014],[-55.28028152199994,72.36819642900008],[-54.970836575999954,72.4026378370001],[-54.88361750899992,72.24512712400013],[-55.39027354999996,72.0965116220001],[-55.5800094949999,71.99761421699998],[-55.034172583999975,71.88678316100004],[-55.34694648599998,71.87372030000006],[-55.40693258199991,71.79954313900004],[-55.77527649099994,71.73981654700003],[-55.905834523999886,71.67731269500013],[-55.68139246999988,71.62314129300006],[-55.54360957199998,71.46703421300015],[-55.342220601999884,71.38814156100011],[-55.16526756099995,71.37617740000007],[-55.013889551999966,71.42980096100018],[-54.82556562099995,71.35147241100009],[-54.39611462099987,71.36258212100006],[-53.91554256099994,71.44063457100003],[-53.88528053699997,71.57064744500008],[-53.72194255799997,71.65732235900009],[-53.76472060599997,71.7139967650001],[-53.39805559299998,71.84317044200009],[-53.58110847899991,72.04317958400003],[-53.43251057899994,72.0584545970001],[-53.373317578999945,71.90039419800013],[-53.11555863299992,71.77122135900004],[-53.21361952399991,71.69565464600015],[-52.564456545999974,71.68065489500009],[-52.56750856399998,71.62730659600004],[-52.174442566999915,71.6089795650002],[-51.863887521999914,71.65398116500006],[-51.83999658399989,71.58953908100017],[-52.48583261699997,71.55535768000004],[-52.66694257899991,71.5264855440002],[-52.943057556999975,71.40369116500005],[-52.268890522999925,71.35534820300018],[-52.23389054499995,71.18561550200019],[-51.74695259699996,71.34897024600014],[-51.5247195099999,71.30035185400016],[-51.626953582999874,71.24840819500014],[-52.02722952499994,71.21479106300006],[-52.218326523999906,71.10783563200005],[-51.865554514999985,71.13089324100014],[-51.95639054099996,71.02061170299999],[-51.608253556999955,70.92748926200005],[-50.91305548899993,70.84227196100011],[-50.747787491999986,70.78115648699998],[-51.27138553799989,70.76977319200006],[-51.17583854799989,70.68892722100014],[-51.32972358399991,70.55113191800018],[-50.958057591999875,70.47808413500013],[-51.00556554899998,70.42334745700003],[-50.67499954799996,70.40280860900009],[-50.59693955399996,70.32307709600019],[-51.05722053599993,70.3569678130001],[-51.19722346499992,70.39919232099999],[-51.51611749799997,70.42195974900017],[-51.812782555999945,70.49224586300005],[-52.466110501999935,70.70087595900009],[-53.043331605999924,70.77448851500003],[-53.41221949999988,70.75172058400011],[-54.12860852799997,70.82783597600019],[-54.57250959399994,70.71587571000009],[-54.54054654699996,70.65253299800008],[-54.35333254899996,70.58392494100019],[-54.16444049299997,70.46531229300018],[-53.89306648699983,70.3791862270001],[-53.224166472999855,70.34474498600014],[-52.876926519999984,70.278365678],[-52.575000476999946,70.18972235800004],[-52.392230562999885,70.0786168780001],[-51.930553491999945,70.00222639200018],[-51.536388627999884,70.00834551600002],[-51.27055355099998,70.06138905000006],[-51.03417248099993,70.02833585300016],[-50.91221662799995,69.96278015000007],[-50.50000753799992,70.02999932500012],[-50.12899047199994,70.05591063800006],[-50.04460951799996,70.12006237200006],[-50.28612550899993,70.20964446500005],[-50.35332456699996,70.2831576120002],[-50.379714486999944,70.5851542310001],[-50.51143257499996,70.70115809400005],[-50.50268153299993,70.80718212900007],[-50.703269527999964,70.95729162100008],[-50.82443647699989,71.11574814800014],[-51.10228349099998,71.21340302000004],[-51.1870154799999,71.37651368200017],[-50.99818058899996,71.49275441900016],[-51.006950573999916,71.5804598040001],[-51.385879485999965,71.68825443100008],[-51.69359256299998,71.93979568100013],[-52.03784554099997,72.06317763100009],[-52.10309949499998,72.17429048700006],[-52.247405525999966,72.25812041500006],[-52.71088453899995,72.37429962800013],[-53.03192852999996,72.4037668790001],[-53.24003961899996,72.46414893700012],[-53.09198352499993,72.57036491700012],[-53.1913484719999,72.62668124800012],[-53.90896947199997,72.69764629600007],[-54.47473150799988,72.80383109500002]]],[[[-55.12556047399994,72.82823131800018],[-55.355556544999956,72.80071772100018],[-55.8155475129999,72.65376686500008],[-55.47055055699997,72.57516439400013],[-55.28556061199998,72.67987632600006],[-55.072227597999984,72.74488234300014],[-55.12556047399994,72.82823131800018]]],[[[-23.986942531999944,72.87266714000015],[-24.26277956599995,72.86932594500018],[-24.48444754499991,72.82461452700016],[-24.369157483999913,72.59321616400018],[-24.101940566999872,72.54820065000007],[-24.0233285409999,72.47570104300013],[-23.270832453999958,72.35292124900008],[-22.97332954099994,72.24041146500014],[-22.57805658899997,72.14041469],[-22.277221533999864,72.11262700400016],[-22.061393561999978,72.26874833300013],[-22.727502569999956,72.37513999800018],[-22.65027456399997,72.46543120000007],[-22.093606556999873,72.39320685500013],[-21.92860258999991,72.46930732700008],[-22.395288518999962,72.58570899600005],[-22.61027545099995,72.60598884300015],[-23.055555507999884,72.76017244400003],[-23.12388746499994,72.82684277200008],[-23.567489464999937,72.83073398700003],[-23.986942531999944,72.87266714000015]]],[[[-24.798059469999885,72.88154894000013],[-25.13332755099998,72.88212896700009],[-25.280586525999865,72.82721660500016],[-24.87443553999998,72.78432858600013],[-24.798059469999885,72.88154894000013]]],[[[-55.50500151999995,73.04351597500005],[-55.68029058499991,72.98433856500003],[-55.30583962099996,72.91711939000015],[-55.075561583999956,72.96434806100018],[-55.50500151999995,73.04351597500005]]],[[[-22.94248547799998,73.03185708300015],[-23.327499483999873,73.05795112100003],[-23.792503499999953,73.00991409900018],[-24.564722540999924,72.97739466100018],[-24.541391512999894,72.89656377800009],[-23.87611147599995,72.9057355920001],[-23.575544473999912,72.85905576700003],[-23.114707604999865,72.8671127880001],[-22.789442486999917,72.80543338000018],[-22.74415254999991,72.7471105890001],[-22.49500047799995,72.70711482900003],[-21.865837557999896,72.71266934800013],[-22.07444954999994,72.82600357600006],[-21.906660443999954,72.91905711800007],[-22.119443437999962,72.92877794700013],[-22.46833747599993,73.00046819700003],[-22.94248547799998,73.03185708300015]]],[[[-55.376384567999935,73.19240489500015],[-55.50139260799995,73.10267779500003],[-55.38806558899989,73.046017806],[-55.03306147899997,72.99462282500008],[-54.76792947599995,73.01234770100012],[-54.985706575999984,73.10767475],[-55.376384567999935,73.19240489500015]]],[[[-24.65666950399998,73.42270455800013],[-25.243057559999954,73.40465245300015],[-25.285013511999978,73.33131381800007],[-25.70750954399989,73.17908353600006],[-25.493045475999963,73.12573523700019],[-25.02862752199991,73.11157401200006],[-24.899450491999914,73.0760186490001],[-24.386934494999878,73.02241134900004],[-23.009164523999914,73.09379582700018],[-23.268320564999954,73.25658747400013],[-23.850009558999943,73.36075089400015],[-24.65666950399998,73.42270455800013]]],[[[-56.36945351499992,73.87801037700018],[-56.68637847099984,73.90939926300007],[-56.60556753599997,73.8091114680002],[-56.36945351499992,73.87801037700018]]],[[[-20.92695459899994,74.41887648500006],[-21.34639358299995,74.44526120700016],[-21.84139659899995,74.34942889600018],[-21.968059560999848,74.20969620000005],[-21.396110506999946,74.12773627400009],[-21.283054557999947,74.0802467580001],[-20.780839585999956,74.10829445000013],[-20.142505522999897,74.17719335900006],[-20.46277854699997,74.30442847000006],[-20.537494495999965,74.40166307300007],[-20.92695459899994,74.41887648500006]]],[[[-20.166934579999975,74.8964164750002],[-19.993049483999982,75.00781263900018],[-20.295297559999938,75.04864675699997],[-20.613626484999884,74.97808622000002],[-20.540817585999832,74.92696583000003],[-20.68444853699998,74.80528423300018],[-20.450822599999924,74.73000870700008],[-20.084432512999967,74.70168558600011],[-19.88110950199996,74.77418519300005],[-19.74528646099992,74.87584577600018],[-20.166934579999975,74.8964164750002]]],[[[-17.808345478999968,75.30504247000005],[-18.134166483999934,75.33089209200011],[-18.38223058499983,75.30476771100012],[-18.552509450999935,75.37255216200003],[-18.797220455999877,75.32866434900006],[-18.903322441999876,74.99835047600004],[-18.453035538999927,74.97808622000002],[-18.05860345899987,75.03087008100016],[-17.495819512999958,74.97669717100013],[-17.4005605239999,75.01004021400018],[-17.41444045299994,75.16031835000013],[-17.875007592999964,75.09920337900007],[-18.18778752999998,75.24003561400013],[-17.808345478999968,75.30504247000005]]],[[[-20.794708450999906,76.52651190700004],[-21.122222599999873,76.43567102000003],[-20.94637647399992,76.394286211],[-20.696670525999878,76.48761535],[-20.794708450999906,76.52651190700004]]],[[[-18.650562462999915,76.6187428500001],[-18.765554463999933,76.69903963800016],[-19.08333353599994,76.72763651200017],[-18.984661435999897,76.61003656700012],[-19.128892531999952,76.49455858400006],[-18.88611255099994,76.27733536000011],[-18.65222358899996,76.17816168700006],[-18.723049496999977,76.502905618],[-18.650562462999915,76.6187428500001]]],[[[-17.66638755499997,77.90299358000016],[-18.24081446699995,77.68464064400013],[-17.732768539999938,77.70771317300006],[-17.584167454999942,77.83688785700019],[-17.66638755499997,77.90299358000016]]],[[[-20.239168479999876,77.96688681700016],[-20.490837469999974,77.95383904300007],[-19.775829444999943,77.8296698650002],[-19.281118454999955,77.80104298300017],[-19.334726592999857,77.88883252200014],[-19.69888843599989,77.88384260800007],[-20.239168479999876,77.96688681700016]]],[[[-19.28499759999994,78.89028890400016],[-19.745828601999904,78.80639141700004],[-19.529741461999834,78.7294514130001],[-19.266675597999892,78.73083945700017],[-19.28499759999994,78.89028890400016]]],[[[-17.672477509999965,79.07975545500011],[-17.571386560999827,79.17529791900017],[-17.786094542999933,79.23169790200012],[-18.113605507999978,79.0611228190001],[-17.672477509999965,79.07975545500011]]],[[[-20.473520457999882,79.46180880500015],[-20.972812493999925,79.51446375300014],[-21.529977546999874,79.49392306100003],[-22.381534486999954,79.39685525800019],[-22.36933747599994,79.31990838000019],[-21.99400155199993,79.25483966600018],[-21.554952600999968,79.11834808400016],[-21.140258443999926,79.09723557900008],[-20.50948150499994,78.98379456600014],[-20.020692497999903,78.95462487200012],[-20.174491535999948,78.87639556400012],[-20.69813350299995,78.90422197400017],[-21.88980845999987,78.69471982400006],[-22.22461855299997,78.74193357600018],[-22.595766543999957,78.70144144000005],[-22.735128592999956,78.50962544100008],[-22.50268550899989,78.48659867700013],[-22.02878158799996,78.52281721600008],[-21.855506526999875,78.4932289300001],[-22.025400495999975,78.38660877400008],[-21.622943581999948,78.33549559300019],[-21.956224481999982,78.1914576160001],[-22.22037144299992,77.90864046800016],[-22.61052858399995,77.57838627500007],[-22.28945156899988,77.54260258900013],[-21.996219570999926,77.64646811500018],[-21.54434748199992,77.63355830800003],[-21.96454653799998,77.41544928500008],[-22.215400471999942,77.08174007100018],[-22.222301459999926,76.92385451900003],[-22.330699584999934,76.86210671500015],[-22.751142553999898,76.79970964800009],[-22.89019044899993,76.66879421100009],[-22.692661512999962,76.55596390400018],[-22.874464489999923,76.509955972],[-22.713983565999968,76.31517864700015],[-22.419389507999938,76.2485326260001],[-22.833002567999927,76.08834305700015],[-22.32159650299991,76.06685655100011],[-22.85799756999984,75.9251769060001],[-22.986818537999966,75.8451778430001],[-22.945684514999982,75.75815122400007],[-23.074180599999977,75.69361710800001],[-22.995887588999892,75.61349600400013],[-23.048248499999886,75.41930725600002],[-22.79919449599987,75.36473872000016],[-22.874549481999964,75.29428412900012],[-23.28008054299994,75.2841279450002],[-23.45433259899994,75.19818577700005],[-23.157552540999973,75.08247108900014],[-23.377267536999966,74.99171335000011],[-22.46098352899992,74.77225517600016],[-22.424390486999926,74.74331397300017],[-22.874141450999957,74.66361297000014],[-23.614875548999976,74.64348483500015],[-23.76943046799994,74.57660143900006],[-23.10776554499995,74.42768234400006],[-22.739219463999973,74.27275728100017],[-22.59992748899998,74.14917550600012],[-22.874334569999917,74.16588533300006],[-23.51971244899994,74.36721546300004],[-24.30313658599988,74.49735741800004],[-24.684995474999937,74.4446054070001],[-25.23523556799995,74.54551731900017],[-25.859275467999964,74.58948844800011],[-26.00426060099994,74.51530374300012],[-25.881383575999905,74.35914938900004],[-24.978446575999897,74.24343537200008],[-24.677709589999836,74.1454901510001],[-24.203136456999914,73.80473259400009],[-24.582447583999965,73.71673702800007],[-24.65249648999992,73.96034430300017],[-25.01936350699998,74.09707124900012],[-25.28836459699994,74.12321172300005],[-25.935358506999876,74.10045904700007],[-26.183877576999976,74.03645902500006],[-26.61600860799996,74.03124766100012],[-26.61517745799995,73.90751484400005],[-26.90028353599996,73.89886254100009],[-27.359224586999915,73.94867786800006],[-27.791257548999965,73.86574111500016],[-27.9147146009999,73.70286581600004],[-28.650281589999906,73.45317026200007],[-28.88963555299989,73.31605489800017],[-28.97422052299993,73.17910650300013],[-28.936424509999938,72.995386081],[-28.516981501999908,72.79119654900006],[-27.992078560999914,72.7513987700001],[-27.708709548999934,72.68613274600006],[-27.66000348299997,72.58678372400016],[-27.493165555999894,72.50001744700018],[-27.48010654999996,72.25617480800014],[-27.74351355799996,72.25128413500005],[-28.552898459999938,72.17536689100018],[-29.1173835969999,72.2663832950002],[-29.19266649899987,72.18822338900003],[-28.896081571999957,72.10865180300016],[-28.89930960999982,71.93052479300013],[-28.97881145899987,71.83070353500005],[-28.838907603999928,71.7581204440001],[-29.016073544999927,71.69733370900008],[-28.751184449999926,71.66169452700018],[-28.56515648999988,71.60123619500007],[-28.769947507999973,71.54346258600009],[-29.25084847399995,71.50076634500016],[-29.631387548999953,71.54647588000006],[-29.455772595999917,71.30256534700004],[-29.26855859699998,71.25422255300015],[-29.426073500999962,71.19113850600013],[-30.051645445999952,71.07510379700011],[-30.281524504999936,71.00249857800014],[-30.182058471999937,70.93865194500006],[-29.656814554999983,70.98861999000002],[-29.590215472999887,70.95615486700018],[-30.068708485999935,70.84515634100006],[-29.80280350399994,70.8323836620001],[-29.368053463999956,70.92552135800014],[-28.957097467999972,70.96597443500013],[-28.729640443999983,70.94580120500007],[-28.62128255199991,71.03671836800015],[-28.463243443999943,71.02729610300008],[-28.496932491999928,70.92268307800015],[-28.2111645789999,70.80432926399999],[-28.731250606999936,70.77215415500012],[-28.90437647099992,70.82979734200012],[-29.111057606999964,70.77805954100006],[-29.56387752099988,70.72361254200007],[-30.281623578999927,70.71875204400004],[-30.128791476999822,70.5978419170001],[-30.591436489999978,70.53479743300005],[-30.708166561999974,70.48521814000003],[-30.74637647399993,70.38914409500012],[-30.557023580999953,70.2322286650001],[-30.555808539999873,70.13995346600007],[-30.21081946399994,70.1694500540001],[-30.11360749199997,70.0870021340001],[-29.7021254469999,70.16854983800005],[-29.423795466999934,70.14942904000003],[-29.26101454899998,70.06603530600006],[-29.23399146099996,69.86436386600008],[-28.88663650799998,69.86782760300008],[-28.61211744399992,69.89489025400007],[-28.448930505999954,69.84055104600014],[-28.033027510999943,69.85533722700006],[-27.73593547899992,69.88888612900018],[-27.419349486999977,69.82992949900017],[-27.032665470999916,69.84440353700012],[-26.812953492999952,69.89951471800003],[-26.633331486999907,69.9935440810001],[-26.3925225939999,70.01174873700018],[-26.000959471999977,69.982976345],[-25.75320650699996,70.02553579400006],[-25.245758544999944,70.05729851300009],[-24.635051569999916,70.14001431900004],[-24.053941597999938,70.13417012100001],[-23.70248454199998,70.10426818400015],[-22.907857488999923,70.07207044400008],[-23.108369544999903,70.0001131460001],[-23.949665525999933,69.96231512200018],[-23.797533479999913,69.87781531200017],[-24.100286481999888,69.85573436100009],[-24.449186554999983,69.74553664200005],[-24.75669645399995,69.68773235500004],[-24.964424489999942,69.59290252000005],[-25.088817465999966,69.48738927900001],[-25.187149594999937,69.32341611800018],[-25.329822495999963,69.34252115800018],[-25.28753244099994,69.48072801300009],[-25.43630552299993,69.47205324600009],[-25.9188275489999,69.2985968000001],[-26.123226460999888,69.24136550100008],[-25.96979555599995,69.1764816910001],[-26.697755464999886,69.10534883700012],[-27.169271549999962,69.21056385000003],[-27.425874462999957,69.17567267000004],[-27.5785005379999,69.20050824900011],[-27.84303256499993,69.17953303900015],[-28.15131544299993,69.23772607800015],[-28.32803345499991,69.33299948400014],[-28.634347591999926,69.44673688100016],[-28.650066510999977,69.33071860000007],[-28.750843473999964,69.26995416100016],[-28.947347470999887,69.317037658],[-29.001031548999947,69.43842857100014],[-29.25991048499992,69.37433785700006],[-29.545906552999952,69.39129159700019],[-29.82514948999983,69.34268209100009],[-30.035152541999935,69.16171831000008],[-30.24147057499988,69.10392978100015],[-30.406417544999897,69.00104074600017],[-30.49774759999997,68.788039319],[-30.23778153199993,68.65837111000013],[-30.276159583999913,68.57398529300008],[-30.48534959199992,68.57288659400007],[-30.610816455999895,68.68460244300013],[-30.826410572999976,68.80088810600006],[-30.983386520999943,68.8055353690001],[-31.064687460999835,68.73712646600018],[-31.01802456799993,68.64836864900008],[-30.85753660299997,68.58130219200001],[-30.82569660299987,68.47362289900019],[-30.86582747899996,68.32826024600013],[-31.156070489999934,68.26390935800015],[-31.275089491999836,68.29299405900008],[-31.37729255199997,68.39594361100018],[-31.48122245199994,68.63003357100018],[-31.58061053399996,68.74754835699997],[-31.77552247199992,68.83605387800003],[-31.951232475999916,68.79580682900018],[-32.085113597999964,68.83973923300005],[-32.29684449599995,68.76629498600005],[-32.51622756799998,68.90882003000013],[-32.61557357299989,69.09888655800006],[-32.794807496999965,69.06936599700009],[-32.87012057299995,68.98283709600014],[-32.78811253499998,68.91073479200008],[-32.85254254899991,68.84788778400002],[-33.03976844999988,68.80474897900007],[-33.001842516999886,68.72526205000014],[-33.102481513999976,68.666077767],[-33.26705548899986,68.69641321500018],[-33.41116353899997,68.6272261370001],[-33.20578360899992,68.59547833700015],[-33.34229648099989,68.4710359090002],[-33.502014483999915,68.408143472],[-33.433952591999855,68.31966058100011],[-32.694930581999984,68.22629472900013],[-32.50529857199996,68.16772852800017],[-32.56386946799995,68.09904453100006],[-33.01423650199996,67.92264402600017],[-33.11290357199994,67.80153575000003],[-33.345169461999944,67.70512542400007],[-33.51424049599996,67.57281775200005],[-33.554222509999875,67.46310869800004],[-33.68046151499988,67.40705270900014],[-33.94965354399989,67.16350192700014],[-34.27756851699996,66.80021733500013],[-34.52151157099996,66.83463477100014],[-34.70813749599995,66.72719251800004],[-34.59347155099988,66.62393820000011],[-34.61884357199989,66.56978205299998],[-34.811561463999965,66.50940720400013],[-35.07373448699991,66.55960407600014],[-35.135486481999976,66.80515327000006],[-35.20914446799998,66.83925806100007],[-35.819045606999964,66.9659126410001],[-36.18193054999995,66.93749949800008],[-36.626857560999895,66.85721897100007],[-36.59985358399996,66.68643417300018],[-36.75934259299993,66.67563744400007],[-37.05416145299989,66.7457252420001],[-37.233089604999975,66.81242490700015],[-37.52076758699991,66.86090415800004],[-37.86322348499988,66.768950657],[-37.92366052699987,66.60397904500007],[-38.212989575999984,66.54042276100017],[-38.298511474999884,66.3949384020001],[-37.86221346499991,66.37368927200004],[-37.61694355499998,66.3211964300001],[-37.22054256699994,66.343413838],[-37.56055849299992,66.15923140600006],[-37.793624518999934,65.99088808900012],[-37.40583057199996,65.82867898400008],[-37.116394569999954,65.80533186300005],[-36.82694247499995,65.9106070580001],[-36.39471857299992,66.0222915600001],[-36.33195856999998,65.95728654800018],[-36.06361361599994,65.93254987500012],[-35.89611854799995,66.00979397400005],[-35.81806559499995,66.12561494500017],[-35.56999948199996,66.14062978300007],[-35.59222057799991,66.28480170300014],[-35.39332958199998,66.28535205900005],[-35.23277254999988,66.24035062700005],[-35.129440615999954,66.33619651600009],[-34.9708255029999,66.28147542900012],[-34.63999547199995,66.37063725300015],[-34.529781491999984,66.5061188160002],[-34.30749844899998,66.58149408600013],[-33.989437576999876,66.7656612630002],[-34.02138855399994,66.84232550200011],[-33.952224608999984,66.99150309500004],[-33.77167556499995,67.02316690800006],[-33.55194045299987,67.11095527300006],[-33.42471355599997,67.22984267900011],[-33.44972247299984,67.3868030370001],[-33.02361249899991,67.67514805000008],[-32.77972744699986,67.72098834300016],[-32.547492569999974,67.8148804110001],[-32.54638649399993,67.85960674900008],[-32.09444047699998,67.90654523900014],[-32.144718484999885,68.03516839400004],[-31.999168579999946,68.09378019300004],[-32.0555534749999,68.1512932920001],[-32.32417654099993,68.20268844000014],[-32.13751256299997,68.24350730300006],[-32.20056559699992,68.34046781800015],[-32.43111755599995,68.3779597350001],[-32.52527952099996,68.44656728899997],[-32.42666659799994,68.52852671200003],[-32.06944245699998,68.35351458500003],[-32.0072256009999,68.26046137800012],[-31.704444603999832,68.0968474660001],[-31.571676597999897,68.0654587480002],[-31.438058499999954,68.12016374200016],[-31.11805151799996,68.0493291160002],[-30.736661512999888,68.08073342500006],[-30.453609503999928,68.0562723490001],[-30.015285587999983,68.13379154300003],[-30.118331531999956,68.25934742300007],[-29.996940451999933,68.37351984100007],[-29.842216553999947,68.4085253510001],[-29.765281578999975,68.30434785000011],[-29.46471759499991,68.20990576200012],[-29.303607524999848,68.31322948200005],[-29.120275520999883,68.27907741800016],[-28.988893547999908,68.34019305900006],[-28.648620464999965,68.35685544400013],[-28.441951565999943,68.44543841500018],[-28.10250057999997,68.43741173600017],[-28.02305656699997,68.48741783500009],[-27.636949560999938,68.47380612800015],[-27.648338555999942,68.53435615800004],[-27.339164512999957,68.52909098200018],[-27.070552511999892,68.57548062500018],[-26.914165476999983,68.64797972900004],[-26.456378446999963,68.6529848990001],[-26.290288519999933,68.68658576900009],[-26.22388658099993,68.78575810100011],[-25.9577755709999,68.78354611600014],[-25.779172469999935,68.85659423500005],[-25.547779470999956,69.03883927400017],[-25.30556157999996,69.01717088000004],[-25.068057502999977,69.11077310200017],[-24.990829496999936,69.20690950800014],[-25.05055458099997,69.29272946800012],[-24.693880459999946,69.24162433400011],[-24.61362055199993,69.31357459100008],[-24.41638950899994,69.362191306],[-24.301387449999936,69.44190756300009],[-24.12611749599995,69.41302117800018],[-24.051950560999956,69.55107497900019],[-23.81944645699997,69.50608930500005],[-23.58861152599991,69.61803465100019],[-23.688610480999955,69.70860078000004],[-23.476957534999826,69.74971032700017],[-22.995834447999925,69.75582928400007],[-23.093618568999943,69.91500279900015],[-22.84638947299993,69.95722563000004],[-22.575561463999918,69.93610658700015],[-22.361116505999973,69.97277590400006],[-22.079154478999953,70.12833296300005],[-22.785842459999856,70.07779293700008],[-23.59083960299995,70.10834262700018],[-24.478607537999892,70.23917893900017],[-25.03110655399996,70.3616834720001],[-25.2394406009999,70.27029373700015],[-25.353889453999955,70.29612843900003],[-25.35666453499988,70.39336304200009],[-25.63748947199997,70.35390070700015],[-26.30749857899997,70.19639066400003],[-26.867502582999975,70.25057765700006],[-27.182491487999926,70.1594474260001],[-27.295282567999948,69.97416411500006],[-27.528339541999912,69.974713968],[-27.568620453999984,70.05166805400006],[-27.97722247599995,70.00695764100004],[-28.098607521999895,70.06471498900015],[-28.542781502999958,70.04333694500008],[-28.274999476999824,70.13668050100011],[-28.121393557999966,70.14195975900009],[-27.853330570999958,70.08667456900008],[-27.412214475999917,70.17778954500011],[-27.329444522999893,70.22890943100009],[-26.953613562999976,70.32225282000019],[-26.598886558999936,70.30111768300003],[-26.330282603999876,70.3808491960001],[-26.505832513999962,70.46779953900005],[-26.724435565999954,70.47724510600011],[-27.02139046999997,70.43641031800001],[-27.155279470999915,70.44919791700016],[-28.241937562999965,70.36974066000005],[-28.368061568999906,70.4975247860001],[-28.033893528999897,70.70476700700016],[-27.936103540999966,70.88115376500008],[-28.18388751899994,70.94588552700009],[-27.778331480999896,71.01478208900011],[-27.49666449699987,70.93560042900015],[-27.12110846399986,70.94838735800005],[-26.784173557999964,70.92922113000003],[-26.4788895559999,70.95894687900005],[-26.259448480999936,71.03588654800006],[-26.03971253099985,71.0511612250001],[-25.597782552999888,71.16783698300014],[-25.411392494999973,71.27119171600009],[-25.411388471999942,71.34785578800012],[-25.69473049499993,71.4614798610001],[-25.87777851999988,71.49898787200016],[-26.103895444999864,71.4831333350001],[-26.43584244899995,71.5053663330001],[-26.67499759199984,71.47452679700012],[-27.353050476999954,71.59759576700014],[-27.32500060599989,71.70844258000005],[-27.96916947899996,71.86566277700013],[-27.975282567999955,71.91428083300008],[-28.442508459999885,71.93178392300018],[-28.35473249899991,72.01124067699999],[-27.88249557099988,71.97205444100013],[-27.610008447999974,71.89873072600017],[-27.608898515999897,71.85844528700017],[-27.217224585999872,71.73954245900012],[-27.00637848199989,71.59509360100003],[-26.78582546299998,71.54565193900015],[-26.09361051499991,71.58509784600017],[-25.623893521999946,71.53591619100018],[-25.066942541999936,71.2936840500002],[-24.871948460999818,71.30090221000006],[-24.572504466999874,71.25841853400016],[-24.57333746099988,71.20868769600014],[-24.270551601999955,71.08422951000017],[-24.19249143999997,71.01173107700009],[-24.231941537999944,70.92949622400005],[-24.168327586999908,70.77671609000004],[-24.021955584999887,70.65086969300017],[-23.345830537999973,70.43779852900008],[-23.10890145999997,70.42334745700003],[-22.622779573999935,70.4452907770002],[-22.565828564999947,70.58087376000009],[-22.64306646199998,70.64865703800018],[-22.585006526999962,70.81561348500009],[-22.428338530999895,70.83671811200009],[-22.468320544999926,70.65282301100018],[-22.355838588999916,70.43723476200006],[-22.121950464999884,70.49030746400013],[-21.744432563999908,70.41724425800015],[-21.476936528999886,70.54197636499998],[-21.621940603999974,70.6386461960002],[-21.593347584999947,70.73226451000005],[-21.74971953299996,70.8692058650002],[-21.673334578999913,70.93254841100008],[-21.79139754099998,71.0784000640001],[-21.666105521999896,71.18895636100012],[-21.817787459999977,71.27618096000009],[-21.670833585999958,71.39925093600016],[-22.049711535999904,71.4820337970001],[-22.293346471999826,71.42563465300009],[-22.43721949299993,71.24563093500018],[-22.541391461999922,71.4811947680002],[-22.303338537999934,71.68176901800018],[-22.599710564999953,71.60481442899999],[-22.839439533999894,71.70038505700012],[-22.7672294379999,71.79482798300018],[-22.571659519999912,71.9220485100002],[-23.028623446999973,72.01012672200011],[-23.095827534999955,72.05816458300012],[-23.64667850099994,72.14679298300007],[-23.80471945299996,72.24846781500008],[-24.093896453999832,72.27708111800007],[-24.424171602999877,72.3531951700001],[-24.52055745499996,72.41069519300015],[-24.940273544999968,72.39152896600012],[-25.119726571999934,72.42986125300018],[-24.697488533999945,72.49653007300009],[-24.714723570999922,72.68182930900008],[-25.191373571999975,72.75516828000002],[-25.228338602999884,72.79488827500012],[-25.622230552999895,72.82156250800017],[-26.075838532999853,72.71266934800013],[-26.30472550999997,72.72655548000012],[-26.697223549999933,72.82711769800005],[-26.63278951299992,72.86210745],[-26.260826465999912,72.77656174700007],[-26.027233552999917,72.78599222600013],[-25.755001574999937,72.88379227200011],[-25.319723475999922,72.89017056500018],[-24.985549568999886,73.01795536100008],[-25.061376455999834,73.08213827600008],[-25.386667556999953,73.08769279600017],[-26.054452442999946,73.19852368400007],[-26.4808365049999,73.18630052200018],[-26.71000645499987,73.09907642600001],[-27.147781523999925,73.14603000400007],[-27.07444154699988,73.1860106760002],[-26.695827459999975,73.13185452900007],[-26.45277456399998,73.27798161200013],[-26.13499448599987,73.24047343300009],[-25.72139148499997,73.26243183999998],[-25.44000847999996,73.3504798780001],[-25.493606559999932,73.40103599700006],[-25.314998596999885,73.46048816600018],[-24.7116584769999,73.48964998100013],[-24.379165476999844,73.5493755670002],[-24.450559510999938,73.69994371700011],[-24.251111453999954,73.77633403600015],[-23.929985487999886,73.7577325810002],[-24.03472859999988,73.66493787200017],[-23.983621453999888,73.59160041000007],[-23.36082458999988,73.40770447200003],[-22.895544472999973,73.31658916100002],[-22.22667547299983,73.24407463400007],[-21.933889558999965,73.33909608000005],[-21.57443851499994,73.3896525340001],[-21.618057602999954,73.45465855200013],[-20.515832472999875,73.44965304700014],[-20.481388550999952,73.75689338500001],[-20.294998492999866,73.78523025300018],[-20.283054448999962,73.87883415100009],[-20.634439587999964,73.87716984000014],[-21.105546468999876,73.94356524199998],[-21.685825457999954,74.05996774900007],[-22.24832559299989,74.0244125540001],[-22.199453565999875,74.18386133000013],[-22.05806544299992,74.28665129100006],[-21.765008458999944,74.41832713500008],[-21.25916445799993,74.47054655900007],[-20.806940496999914,74.44442083700005],[-20.381937436999976,74.44442083700005],[-20.200834516999976,74.2755410790001],[-19.596677495999927,74.23359283800016],[-19.377769509999894,74.25970246700018],[-18.978624453999885,74.48415793200019],[-19.249986557999875,74.51194628800005],[-19.271663500999864,74.64528577100015],[-19.450553598999875,74.67972751400015],[-19.71472754999985,74.58416996200003],[-20.13611247799986,74.67000635100004],[-20.549167469999873,74.67194475000008],[-20.760833491999904,74.8344611350002],[-20.683324523999886,74.88751925300016],[-20.67026551899994,75.1150272390002],[-20.56195054299991,75.19059395200009],[-21.034450494999874,75.3181041570001],[-21.300825533999955,75.35616269200005],[-21.40638956999993,75.45451141700005],[-20.705564562999825,75.29477195600003],[-20.180833451999945,75.33505840000004],[-19.965841490999935,75.28892725500009],[-20.048343557999942,75.21726785000016],[-19.882776494999916,75.14476924900009],[-19.609996507999938,75.13198165000011],[-19.386104474999968,75.25866757900013],[-19.34221649499989,75.40728308100017],[-19.414443521999942,75.57034864900015],[-19.60248950799985,75.66701948500014],[-19.59443248799994,75.788960083],[-19.946386590999964,75.93286042900019],[-20.333332456999926,75.92230090800018],[-20.360288489999903,75.98008977200004],[-19.671115501999964,76.11399436300013],[-19.90417247599993,76.25511711400009],[-20.434457436999878,76.21954683200005],[-21.01500347399991,76.31038771900006],[-21.536109579999902,76.21760893600015],[-21.707231497999885,76.24901290900016],[-21.565002502999903,76.37289190600006],[-21.757219491999933,76.43817318600009],[-21.67778251899989,76.52291104200009],[-21.90721851099994,76.61735380100004],[-22.460557560999973,76.63958746900005],[-22.69195357699988,76.72708766500011],[-21.938056538999945,76.76598472500007],[-21.804988460999937,76.68484857300007],[-21.51557156999985,76.68623644900015],[-21.221376491999877,76.80721698300016],[-21.021127459999946,76.79458160000019],[-20.580566581999904,76.91820092500012],[-19.871103520999895,76.95877671300008],[-19.35916554099998,76.86125109000011],[-18.910839499999952,76.85514822600004],[-18.68750352199993,76.79375799400009],[-18.329994563999946,76.80208960600004],[-18.13111345999988,76.93376628700014],[-18.14471644999992,77.08656234700004],[-18.25888652099991,77.29961959700012],[-18.386123475999966,77.33712911700019],[-18.968885520999947,77.37184444500019],[-19.036397559999898,77.22434340100017],[-19.456100574999937,77.2612874780001],[-19.523050523999927,77.35267838600004],[-20.008316449999825,77.44213173300017],[-20.4480605949999,77.48018976400004],[-20.248046591999923,77.56047180000013],[-20.868894495999882,77.68047483800007],[-20.597780496999917,77.7213257190001],[-19.967491551999956,77.71160472300016],[-19.303335527999934,77.57937869200003],[-18.958335554999962,77.6254788240002],[-19.23999549699994,77.76216134600014],[-19.92946051099989,77.82049888900008],[-20.36221146599985,77.87966104400016],[-20.8544405749999,78.01413074300007],[-21.089151465999976,77.95133687700019],[-21.366939471999956,77.8063230790001],[-21.50695245899982,77.6827024120002],[-22.03945543899988,77.68741823900018],[-21.897205489999862,77.80575813900003],[-21.58970246299998,77.95828078100004],[-21.70693058799992,78.01162757200018],[-21.466669534999937,78.06828756099998],[-21.488899515999947,78.12883876500018],[-21.278888584999947,78.21690406900012],[-21.361961459999918,78.31609266100008],[-21.07639353899998,78.54970468500017],[-20.903882571999816,78.62914853100011],[-21.120281518999946,78.76889849400015],[-20.664461553999956,78.89085451500017],[-20.158340446999944,78.86250105100004],[-19.92388352699993,78.9738978850001],[-20.091110542999957,79.0628027200001],[-19.568616560999942,79.1930754330001],[-19.191392528999927,79.31643592600011],[-19.59806654499988,79.32643184800008],[-19.651111586999946,79.4347612410001],[-20.473520457999882,79.46180880500015]]]]},"properties":{"objectid":837,"eco_name":"Kalaallit Nunaat Arctic steppe","biome_num":11,"biome_name":"Tundra","realm":"Nearctic","eco_biome_":"NE11","nnh":2,"eco_id":417,"shape_leng":902.266734074,"shape_area":78.0358234483,"nnh_name":"Nature Could Reach Half Protected","color":"#64DEE3","color_bio":"#9ED7C2","color_nnh":"#7BC141","license":"CC-BY 4.0","area_km2":327399.80825591896,"percentage":3.8314084311473873}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[43.889166667000154,13.43833333300006],[43.96083333300004,13.480833334000124],[43.8675,13.560833333],[43.83416666700009,13.4725],[43.889166667000154,13.43833333300006]]],[[[44.132500000000164,13.6075],[44.03750000000019,13.564166667000109],[43.96333333300015,13.565],[43.975833333000026,13.419166667000127],[44.086666667000145,13.330833333000044],[44.05416666700012,13.245833333000064],[44.050833333000185,13.125],[44.1391666670001,13.127500000000111],[44.14666666699998,13.191666667],[44.38333333300005,13.325833334000095],[44.1525,13.40416666700014],[44.10833333300013,13.4725],[44.132500000000164,13.6075]]],[[[44.68583333300012,13.648333333000096],[44.7225,13.678333333000182],[44.716666667000084,13.780833333000032],[44.64892141100012,13.783559264000075],[44.5833333330001,13.665833333000137],[44.68583333300012,13.648333333000096]]],[[[44.74083212400018,13.883293666000043],[44.71166666700009,13.873333333000062],[44.79083333300008,13.797500000000127],[44.78416666700019,13.700833333000048],[44.85583333300008,13.6925],[44.85666480300017,13.819981807000033],[44.74083212400018,13.883293666000043]]],[[[43.72083333300009,14.77166666700009],[43.595833334000076,14.7375],[43.56166666700011,14.641666667000038],[43.585,14.554166667000118],[43.656666668000184,14.498333333000062],[43.78166666800007,14.525833333000094],[43.90666666800013,14.583333333000041],[43.84333333300003,14.730833333000135],[43.72083333300009,14.77166666700009]]],[[[44.573288427000136,15.353325895000125],[44.51833985000019,15.465021692999983],[44.30753876200009,15.437502439000184],[44.32912249100008,15.284977420000075],[44.366624220000176,15.291632403000108],[44.40250717000009,15.227510741000117],[44.58417022300006,15.31915165800001],[44.573288427000136,15.353325895000125]]],[[[44.59667080000008,15.688323357000172],[44.53164981600008,15.65082162800013],[44.42912710300004,15.540834542000027],[44.50080307000013,15.501624101000175],[44.60665327400005,15.642457933000117],[44.59667080000008,15.688323357000172]]],[[[43.98666666700018,14.83583333300004],[43.82750000000016,14.8175],[43.93916666700005,14.66],[43.99583333300012,14.63333333300011],[43.77333333300004,14.37583333300006],[43.839166667000086,14.322500000000161],[43.81833333300011,14.253333333000114],[43.912500000000136,14.223333332999971],[43.9425,14.28],[43.920000000000186,14.405],[44.01666666700015,14.4475],[44.09500000000014,14.435000000000173],[44.125833333,14.36083333300013],[44.128333333000114,14.244166667000115],[44.03000000100002,14.167500000000189],[43.921999401000164,13.92196492700009],[43.825833333,13.895833333000098],[44.00833333300005,13.705],[44.15666666700014,13.7125],[44.231666667000184,13.74250000000012],[44.31916666700005,13.673333333000187],[44.48333333300019,13.653333333000091],[44.560000000000116,13.689166667],[44.47666666700013,13.913333332999969],[44.50015079900004,14.072495954000033],[44.47309490200007,14.232930798000154],[44.36199298000014,14.317267258000129],[44.32462233300009,14.439984381000045],[44.39077847800013,14.498565395000071],[44.52922717200005,14.546285908000073],[44.584906559000046,14.640512563000073],[44.50923970000002,14.687625891000039],[44.39217021800016,14.589116206000028],[44.28675921000013,14.55529424000008],[44.24693404300007,14.610090937000109],[44.18861330300001,14.82587767400014],[44.15481086199998,15.04653154100015],[44.097335773000054,15.155095598000173],[44.04662155700004,15.191956311000126],[43.91822449800003,15.395799043000181],[43.785407662000125,15.487124789000063],[43.80253978000013,15.661301335000076],[43.876849820000075,15.922705553000014],[43.94252294400019,16.085460686000147],[43.89624390000017,16.200833333000105],[43.83250000000015,16.087500000000148],[43.76666666699998,16.0375],[43.80166666700012,15.874166667000054],[43.651666667000086,15.7375],[43.693333333000055,15.66583333300008],[43.655,15.693333333000112],[43.65583333300003,15.69166666700005],[43.655,15.693333333000112],[43.5475,15.645],[43.62333333300006,15.559166667000113],[43.50416666700016,15.487500000000125],[43.60333333300008,15.361666667000122],[43.659166667000136,15.391666667000038],[43.719166667000025,15.345],[43.79916666700018,15.361423816000183],[43.790000000000134,15.285000000000139],[43.79083333300008,15.284166667000022],[43.790000000000134,15.285000000000139],[43.78,15.19583333300011],[43.896666667000034,15.116666667000175],[43.875000000000114,15.101666667000188],[43.845833333000144,15.11083333300013],[43.84166666700003,15.1175],[43.73916666700018,15.141666667000095],[43.71583333300009,15.224166668000066],[43.62166666700017,15.195000000000164],[43.66,15.182500000000118],[43.665833333000194,15.18],[43.62916666700005,15.045833334],[43.70833333300004,15.024166667000088],[43.73083333300008,14.925833334000117],[43.81083333300006,15.019166667000093],[43.7825,14.891666667000152],[43.88000000000011,14.88916666700004],[43.92833333300001,14.993333333000123],[43.97666666700002,15.005833333],[44.075,15.041666668000062],[44.09583333300009,14.983333334000065],[44.06750000000011,14.90416666800013],[43.98666666700018,14.83583333300004]]],[[[43.73833333300013,16.23],[43.61083333300013,16.233333333000076],[43.665,16.134166666999988],[43.710833333000096,16.120000000000175],[43.73833333300013,16.23]]],[[[42.33001951500012,18.616695804000187],[42.27668971700007,18.7716489930001],[42.30079154800018,18.824978790000102],[42.25420666600007,18.903309740000168],[42.17623544600008,18.86652746900012],[42.122725783000135,18.979212521000022],[42.09079985100004,19.191632388000187],[42.12749219000011,19.22670594800013],[42.0950266640001,19.32581123700004],[42.046643138000036,19.320685102000027],[41.96273639100019,19.47437923900003],[41.89420805100008,19.50864340900017],[41.88278666100007,19.6742985300001],[41.8485224910001,19.848407278000025],[41.72864286300006,19.777091040000187],[41.677201642,19.83419799000012],[41.57162123300009,19.82277660000011],[41.52872357200016,19.934112670000104],[41.443108113000164,20.0226059580001],[41.311717162000036,20.071169350000105],[41.22322387300011,20.18826107900003],[41.19471536400005,20.296719318000157],[41.10900997300007,20.39105820100002],[41.01476102200019,20.45374094700003],[41.011973124000065,20.562289118000137],[40.940566954000076,20.59655328800011],[40.900547123000194,20.716432917000077],[40.82635305399998,20.736487799000145],[40.800002918000075,20.825790478000044],[40.65503220400018,20.923456852000186],[40.626433763000136,20.969142412000167],[40.477955693000126,20.957721022000158],[40.266704944000026,21.149006821000114],[40.29674230100011,21.33309804400011],[40.24458162200011,21.372128621000172],[40.295842979000156,21.50666719900005],[40.35451015500007,21.587825195000107],[40.17549811400005,21.572223229000087],[40.13810189200012,21.488141165],[40.22578579100019,21.404144486000177],[40.22299789300013,21.337504722],[40.111661824,21.280038043000047],[40.132616027000154,21.170860347000144],[40.04834955200005,20.94000437800014],[40.22650524900007,21.02346146400015],[40.25168626600015,20.962487429000078],[40.42111854000018,20.879390072000035],[40.320844132000104,20.806275189000132],[40.37912020000016,20.754474240000036],[40.58020861,20.851780885000153],[40.537850541000125,20.762478206000083],[40.59100047400017,20.59835193200007],[40.587493118000054,20.484587694000084],[40.77491183300015,20.56246898300003],[40.85000522400014,20.508329796000055],[40.83399729100017,20.481799795000086],[40.83417715600007,20.475594473],[40.93750925900008,20.504912372000092],[41.11197773600003,20.350948438000046],[41.11323678600013,20.348430336000035],[41.17304170300008,20.287456302000066],[41.16099078700006,20.137539317000062],[41.23401573700005,20.131963519000067],[41.23320634700008,20.129085689000135],[41.229698991000134,20.01199395800012],[41.27457516200019,19.97539155100003],[41.30542190799997,19.81369344700005],[41.36252885800013,19.88599894000015],[41.47080723200003,19.902636398000027],[41.665600387000154,19.651096021000114],[41.70418130300004,19.71566734400011],[41.77199018500016,19.628253241000152],[41.77082106700004,19.62447608900004],[41.77037140600004,19.623396902000025],[41.76938215100017,19.6197996140001],[41.815247576,19.57087649500005],[41.83746083000011,19.476627544000166],[41.98423018799997,19.304137576000073],[41.990525442000035,19.145856896000055],[42.05824439200012,19.112492048000092],[42.007702493000124,18.98748628300018],[42.07407246000008,18.96572269],[42.116340597000146,18.887481672000092],[42.071734223000135,18.796740077000152],[42.123535173000164,18.681896652000148],[42.135046495000154,18.56246668400013],[42.19880842800012,18.445824615000163],[42.15896846200013,18.349777021000023],[42.021821850000094,18.27918024000013],[42.133157918999984,18.216497493000077],[42.24584297100006,18.141404103000127],[42.32921012500009,18.026470745000097],[42.37084873600014,18.078811288000054],[42.44603205900012,17.96234908300005],[42.563843247000136,17.95281626900004],[42.55745806000016,17.795794640000167],[42.64909897700011,17.812522030000082],[42.71250118100011,17.88069064100017],[42.80836891100006,17.83338630200012],[42.903157455000155,17.821874980000132],[42.92141369200016,17.754245962000027],[42.74181907999997,17.7069416220001],[42.79775691100008,17.60432897700008],[42.98418637100019,17.415831076000188],[43.06890250800018,17.251614870000026],[43.10604450800008,17.220858056],[43.23977369700003,17.310160735000125],[43.249126646000036,17.257460463000086],[43.18779288200011,17.17912951300019],[43.21378328900005,17.11959439400016],[43.141118068000026,17.03280981600011],[43.279164002000186,16.833160322000083],[43.339778308000064,16.82083961000012],[43.328806579000116,16.620650523000165],[43.40434963100006,16.53737330100006],[43.48000000000019,16.63285480800016],[43.5241393280001,16.72497188000017],[43.620007058000056,16.774974186000065],[43.66057364800014,16.88253340200015],[43.63336737600008,16.944964636000122],[43.53342012600007,17.019137523000154],[43.45294683800017,17.141708936999976],[43.39939344099997,17.292059385000016],[43.37075526000001,17.46131103199997],[43.43060905700014,17.549230247000025],[43.40082535000005,17.72478229400008],[43.40827127700004,17.808295217000023],[43.34337559599999,17.88526182600009],[43.322947397000064,17.891662370000176],[43.32251132500005,17.892471759999978],[43.32077379600008,17.89579925200013],[43.291779672000075,17.967475219],[43.285818985000105,17.98914888000013],[43.28420020600015,18.020805016000168],[43.283672503000105,18.02413250800015],[43.2838396410001,18.034204915000146],[43.273318409000126,18.045806169000116],[43.26252654400014,18.04670549100007],[43.23833478100016,18.054467149000118],[43.221378790000074,18.065861051000184],[43.2025417640001,18.057497356000113],[43.22664359500004,17.92169972700009],[43.31261878300006,17.873406133000174],[43.160183696000104,17.921429930000045],[43.05856030400014,18.03798206700003],[42.970246879,17.98609118500019],[42.89065687800013,18.052820881000173],[42.78885362300008,17.980875117000096],[42.61438514600013,18.153544950000082],[42.45835277100008,18.205795561000116],[42.42750602500007,18.354183699000146],[42.36248504100013,18.414977869000154],[42.35996693900012,18.41245976700003],[42.355110600000046,18.424150954000027],[42.35996693900012,18.41245976700003],[42.36248504100013,18.414977869000154],[42.405292770000074,18.441687734000084],[42.33001951500012,18.616695804000187]],[[43.18985093200007,18.169193154000027],[43.190765143000135,18.133310204000054],[43.1899612740001,18.15165637400014],[43.19003167400007,18.158311357000173],[43.18985093200007,18.169193154000027]]]]},"properties":{"objectid":841,"eco_name":"Southwest Arabian montane woodlands and grasslands","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Afrotropic","eco_biome_":"AF07","nnh":3,"eco_id":59,"shape_leng":94.0336234068,"shape_area":2.4000027261,"nnh_name":"Nature Could Recover","color":"#A93800","color_bio":"#FEAA01","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":28448.291563573264,"percentage":0.1326940186122005}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[46.27427812399998,13.53787300800019],[46.26582411800007,13.634197351000182],[46.110886536000066,13.646044291000067],[45.97926553500008,13.552245417000165],[45.80225798100014,13.497025111000028],[45.83510957400017,13.446785810000108],[45.97850909200014,13.469793180000067],[46.125258944000166,13.540142335999974],[46.27427812399998,13.53787300800019]]],[[[51.27422692400012,15.228769792000094],[51.21534853200012,15.297130459000073],[50.972973909000075,15.318206513000064],[50.83597955800013,15.290105107000045],[50.512813394000034,15.283079756000063],[50.18964723100004,15.247952999000063],[49.85945571700006,15.226876945000072],[49.7154360130001,15.188237513000104],[49.51521349900014,15.156623431000014],[49.30094028200011,15.093395269000041],[49.03397693000011,15.040705134000063],[48.57732909100008,14.910736133],[48.20849814400003,14.773741781000183],[48.092579846000035,14.707000942999969],[47.966123521000156,14.552443213000174],[47.94856014300018,14.471651672000121],[47.97190135200009,14.328527869000027],[48.10053861900013,14.257164229000182],[48.33428818700003,14.271970493000083],[48.49708273600004,14.389103156000147],[48.588406507,14.432779743000026],[48.73333336200011,14.462559233000036],[48.99273682500018,14.446359612000037],[49.020795673000066,14.515697343000056],[49.16792476000012,14.576221715000145],[49.30992771100006,14.682341716999986],[49.24949326900014,14.757794836000073],[49.13330086100012,14.812923278000142],[49.308039135000115,14.842421041000136],[49.46434130600011,14.842241176000073],[49.42270269600016,14.746823107000125],[49.47153588300006,14.702216734],[49.58790815500015,14.792868396000074],[49.520009341000105,14.882980465000173],[49.69870463200016,14.82974059999998],[49.87038521000011,14.832618431000185],[50.08541311100004,14.929385483000146],[50.13568521400015,14.987391755000033],[50.22076107900011,14.963829517000079],[50.30331884300017,15.015900264000095],[50.38677592900018,15.001601043000164],[50.44783989600006,15.040631620000056],[50.427695082000184,15.11977196000015],[50.64047467800003,15.114555892000055],[50.653424916,15.244148199],[50.776182375000076,15.15556497700004],[50.96566953000013,15.20646660500006],[51.12772736400018,15.194325758000161],[51.27422692400012,15.228769792000094]]],[[[52.197096761000125,15.745833333000064],[52.12918038800012,15.805955460000177],[52.00852635400008,15.833952528000111],[51.964530961000094,15.736629385000072],[52.06052090999998,15.740628966000145],[52.119181435000144,15.701966348000042],[52.17384079700008,15.609697899000082],[52.22634887700019,15.631984456000112],[52.197096761000125,15.745833333000064]]],[[[55.187626808000175,17.160513547000164],[55.25865478500003,17.22916666700013],[55.2875,17.346048991000146],[55.26192156700017,17.44699929000012],[55.24743172400002,17.441641618],[55.244463961000065,17.381566906000046],[55.12251589100009,17.296670905000042],[54.783253120000154,17.16272573300006],[54.69092247800012,17.159884790000092],[54.51904543800009,17.218124118000105],[54.33154321100017,17.218124118000105],[54.24915586900016,17.25647684600017],[54.07159694300003,17.24795401800003],[53.918186030000186,17.15278243300014],[53.81875303099997,17.051928963000137],[53.70653579000003,16.98800774900019],[53.644035048000035,16.853062965000106],[53.58437524800007,16.82465353700013],[53.385509251000144,16.83459683700005],[53.27755342300003,16.80760788000009],[53.09573308300014,16.706754410000087],[52.84288917100008,16.644253668000033],[52.754819944000076,16.590275754],[52.57868148900013,16.554763969000135],[52.6375,16.494775391000132],[52.841115725000066,16.57874211500007],[53.10342610700019,16.6382405600001],[53.19591878300014,16.68758544900004],[53.479353841000034,16.75397949200004],[53.59027710000004,16.745833333000064],[53.78563516600008,16.875462908000088],[53.77921023200014,16.951366544999985],[54.19442617700008,17.111385298000187],[54.28425083000002,17.07331392100008],[54.481151229000034,17.052493638000044],[54.64295457700001,17.051898772000186],[54.74884059200019,17.018586318000075],[54.96299208199997,17.048924446000115],[55.08553432400009,17.1339901770001],[55.187626808000175,17.160513547000164]]],[[[56.4225484210001,18.00245157900008],[56.3059916900001,18.06421629600004],[55.984764454000015,18.027096704000087],[55.84984901500013,18.02424135100017],[55.71065054600007,18.04922569100006],[55.64354974600013,17.992832466000095],[55.54361238300015,17.989263274000052],[55.349448365000114,17.925731665000058],[55.215960603000156,17.730139970000153],[55.22381282400016,17.690878864000126],[55.34329945400003,17.662229263000086],[55.374595861000046,17.678343181],[55.379177668000125,17.69668935100009],[55.38561412800016,17.70163562199997],[55.385061,17.703344334000178],[55.394920539,17.750828538000064],[55.42261965900019,17.812522030000082],[55.49168759200006,17.88833487900007],[55.69088742600019,17.948409591000086],[55.7100429840001,17.897507964000113],[55.824166952000155,17.90749043800008],[55.91832597000018,17.89831735300004],[55.97669197100009,17.930872812000132],[56.14081824400017,17.933300981],[56.24837716100018,17.96495711700004],[56.353417976,17.920710472000053],[56.354587095000056,17.92169972700009],[56.355036756,17.924127896000186],[56.355936078000184,17.924037964000036],[56.37120050400017,17.963571556000034],[56.4225484210001,18.00245157900008]]]]},"properties":{"objectid":842,"eco_name":"South Arabian fog woodlands, shrublands, and dune","biome_num":7,"biome_name":"Tropical & Subtropical Grasslands, Savannas & Shrublands","realm":"Afrotropic","eco_biome_":"AF07","nnh":4,"eco_id":56,"shape_leng":24.0526318857,"shape_area":1.64069025625,"nnh_name":"Nature Imperiled","color":"#A87001","color_bio":"#FEAA01","color_nnh":"#EE1E23","license":"CC-BY 4.0","area_km2":19586.469166148643,"percentage":0.09135899420435248}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[27.29984744900014,-71.94761928699995],[27.258304039000052,-72.01468644099998],[27.594573721000074,-72.06697897599992],[27.540939913000045,-71.97692679099998],[27.29984744900014,-71.94761928699995]]],[[[24.79056180600014,-72.06553175699997],[24.74713431000015,-72.11479272399998],[25.142628197000022,-72.15396086999993],[25.288422240000102,-72.04341777299999],[25.016650322000146,-72.03513141999997],[24.79056180600014,-72.06553175699997]]],[[[24.118299546000173,-71.97888195399992],[24.120187151000096,-72.05536685099997],[24.356746177000105,-72.11483966299988],[24.41395905900015,-72.03182593099996],[24.118299546000173,-71.97888195399992]]],[[[22.819469325000057,-72.02915042699982],[23.103838913000175,-72.08146592799989],[23.04130586800005,-72.20737658099989],[23.47465831200003,-72.10709142799988],[23.25125468800013,-72.05991219099997],[22.819469325000057,-72.02915042699982]]],[[[13.41790559600014,-71.26590592499997],[13.181930621000049,-71.39719507899997],[13.442400880000037,-71.40795375899995],[13.523896145000037,-71.33364966599999],[13.41790559600014,-71.26590592499997]]]]},"properties":{"objectid":846,"eco_name":"Dronning Maud Land tundra","biome_num":11,"biome_name":"Tundra","realm":"Antarctica","eco_biome_":"AN11","nnh":1,"eco_id":119,"shape_leng":219.563498929,"shape_area":1.43543219103,"nnh_name":"Half Protected","color":"#57A7B4","color_bio":"#9ED7C2","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":5470.420705883126,"percentage":0.0640178017393965}}, + {"type":"Feature","geometry":null,"properties":{"objectid":847,"eco_name":"Marie Byrd Land tundra","biome_num":11,"biome_name":"Tundra","realm":"Antarctica","eco_biome_":"AN11","nnh":1,"eco_id":124,"shape_leng":85.8836425197,"shape_area":0.392649607774,"nnh_name":"Half Protected","color":"#5EE6C0","color_bio":"#9ED7C2","color_nnh":"#257339","license":"CC-BY 4.0","area_km2":1151.0409671449852,"percentage":0.013470099721830272}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[116.52615746989142,6.110112711932246],[116.50222420708155,5.979355221366447],[116.6713111712487,5.993662721282647],[116.69772936657432,6.126017054222416],[116.74895487506751,6.166792257656752],[116.66213107688782,6.255571854457685],[116.61110274034303,6.197002377301743],[116.53529310471669,6.182704707362376],[116.52615746989142,6.110112711932246]]]},"properties":{"objectid":376,"eco_name":"Kinabalu montane alpine meadows","biome_num":10,"biome_name":"Montane Grasslands & Shrublands","realm":"Indomalayan","eco_biome_":"IN10","nnh":3,"eco_id":313,"shape_leng":5.7225394731,"shape_area":0.352693619502,"nnh_name":"Nature Could Recover","color":"#C48832","color_bio":"#D6C39D","color_nnh":"#F9A91B","license":"CC-BY 4.0","area_km2":600.8949698286283,"percentage":0.012305089300334223}} + ]} \ No newline at end of file From 421a387fc14b8ca45d721d9bd1c232132c773e3e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Barrenechea=20S=C3=A1nchez?= Date: Thu, 13 Jun 2024 10:24:45 +0200 Subject: [PATCH 17/19] Rangelands layers always at the bottom --- .../containers/map/layer-manager/index.tsx | 28 +++++++++++-------- 1 file changed, 16 insertions(+), 12 deletions(-) diff --git a/client/src/containers/map/layer-manager/index.tsx b/client/src/containers/map/layer-manager/index.tsx index 761e3e0..757d07e 100644 --- a/client/src/containers/map/layer-manager/index.tsx +++ b/client/src/containers/map/layer-manager/index.tsx @@ -60,18 +60,22 @@ const LayerManager = () => { Generate all transparent backgrounds to be able to sort by layers without an error - https://github.com/visgl/react-map-gl/issues/939#issuecomment-625290200 */} - {layers.map((l, i) => { - const beforeId = i === 0 ? baseLayer : `${layers[i - 1]}-layer`; - return ( - - ); - })} + {layers + .toSorted((a) => { + return a.includes("rangeland") ? 1 : -1; + }) + .map((l, i) => { + const beforeId = i === 0 ? baseLayer : `${layers[i - 1]}-layer`; + return ( + + ); + })} {/* Loop through active layers. The id is gonna be used to fetch the current layer and know how to order the layers. From dabc3d7de3c782d118f32aa2ccbc002ab7d28cca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Barrenechea=20S=C3=A1nchez?= Date: Thu, 13 Jun 2024 10:36:45 +0200 Subject: [PATCH 18/19] LayerSettings fix and map minXoom --- client/src/containers/map/index.tsx | 2 +- client/src/containers/map/layer-manager/index.tsx | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/client/src/containers/map/index.tsx b/client/src/containers/map/index.tsx index 13f2f4e..91d1715 100644 --- a/client/src/containers/map/index.tsx +++ b/client/src/containers/map/index.tsx @@ -19,7 +19,7 @@ const Map = () => { projection={{ name: "mercator", }} - minZoom={0} + minZoom={2} maxZoom={14} logoPosition="top-left" > diff --git a/client/src/containers/map/layer-manager/index.tsx b/client/src/containers/map/layer-manager/index.tsx index 757d07e..a495e30 100644 --- a/client/src/containers/map/layer-manager/index.tsx +++ b/client/src/containers/map/layer-manager/index.tsx @@ -88,7 +88,10 @@ const LayerManager = () => { key={l} id={l} beforeId={beforeId} - settings={(layersSettings && layersSettings[l]) ?? { opacity: 1, visibility: true }} + settings={{ + ...{ opacity: 1, visibility: true }, + ...(!!layersSettings && layersSettings[l]), + }} /> ); })} From cdb645d2dec8db2bbe81745f452f8d4850cf2578 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Barrenechea=20S=C3=A1nchez?= Date: Thu, 13 Jun 2024 10:46:35 +0200 Subject: [PATCH 19/19] Documentation --- .../documentation/1.0.0/full_documentation.json | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/cms/src/extensions/documentation/documentation/1.0.0/full_documentation.json b/cms/src/extensions/documentation/documentation/1.0.0/full_documentation.json index 2f9aaed..e9b75ec 100644 --- a/cms/src/extensions/documentation/documentation/1.0.0/full_documentation.json +++ b/cms/src/extensions/documentation/documentation/1.0.0/full_documentation.json @@ -21,15 +21,7 @@ "name": "Apache 2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-generation-date": "2024-06-13T08:40:32.783Z" -======= - "x-generation-date": "2024-06-10T15:12:02.509Z" ->>>>>>> b45498b (Masks: first steps) -======= - "x-generation-date": "2024-06-11T07:40:26.624Z" ->>>>>>> f9c9c30 (Masks: geojson) + "x-generation-date": "2024-06-13T08:46:14.873Z" }, "servers": [ {